From cf59b87c5f4131b335f415b2c381ff40f1cd3d6c Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 11:37:04 +0100 Subject: [PATCH 01/56] new .gitignore, apis_core not linted --- .flake8 | 4 +- .github/workflows/lint.yml | 8 +- .gitignore | 184 ++++++++++++++++++++++++++++++------- pmb/settings.py | 56 ++++++++--- requirements.txt | 1 + 5 files changed, 203 insertions(+), 50 deletions(-) diff --git a/.flake8 b/.flake8 index a563d67..f830282 100644 --- a/.flake8 +++ b/.flake8 @@ -6,4 +6,6 @@ exclude = manage.py .git, .tox, - env \ No newline at end of file + env + venv + apis_core \ No newline at end of file diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 803e5e1..f4a2181 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,10 +8,10 @@ jobs: name: Lint steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python environment - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: - python-version: "3.8" + python-version: "3.10" - name: flake8 Lint - uses: py-actions/flake8@v1 \ No newline at end of file + uses: py-actions/flake8@v2 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 633d265..ad0846d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,46 +1,168 @@ - -# Byte-compiled +# Byte-compiled / optimized / DLL files __pycache__/ -*.pyc +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec -# sqlite -/*.sqlite3 +# Installer logs +pip-log.txt +pip-delete-this-directory.txt -# test coverage +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ .coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ cover/ -htmlcov/ -# IDE -.idea +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal -# migrations -vocabs/migrations/* -webpage/migrations/* +# Flask stuff: +instance/ +.webassets-cache +# Scrapy stuff: +.scrapy -# Ipython Notebook checkpoints +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook .ipynb_checkpoints -# Ipython Notebook -.ipynb +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ -# envs +# Celery stuff +celerybeat-schedule +celerybeat.pid +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv env/ -server.py -s_wsgy.py -.env_dev -.secret -vocabseditor/settings/pg_local.py -.env_secret -media/uploads/*.rdf -media/uploads/*.ttl -requirements_dev.txt - -*.ipynb -media/pmb-log.csv -media/professions.csv -hansi.csv +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + + +json_dumps/ +html/*.html +tei/ +tmp/ pmb_dump.sql -apis_core/.DS_Store +.secret diff --git a/pmb/settings.py b/pmb/settings.py index 24fc009..859859e 100644 --- a/pmb/settings.py +++ b/pmb/settings.py @@ -81,15 +81,15 @@ # https://docs.djangoproject.com/en/3.2/ref/settings/#databases DATABASES = { - "default": { - "ENGINE": "django.db.backends.postgresql", - "NAME": os.environ.get("POSTGRES_DB", "pmb"), - "USER": os.environ.get("POSTGRES_USER", "postgres"), - "PASSWORD": os.environ.get("POSTGRES_PASSWORD", "postgres"), - "HOST": os.environ.get("POSTGRES_HOST", "localhost"), - "PORT": os.environ.get("POSTEGRES_PORT", "5432"), - } + "default": { + "ENGINE": "django.db.backends.postgresql", + "NAME": os.environ.get("POSTGRES_DB", "pmb"), + "USER": os.environ.get("POSTGRES_USER", "postgres"), + "PASSWORD": os.environ.get("POSTGRES_PASSWORD", "postgres"), + "HOST": os.environ.get("POSTGRES_HOST", "localhost"), + "PORT": os.environ.get("POSTEGRES_PORT", "5432"), } +} # Password validation @@ -188,8 +188,21 @@ "Person": { "merge": True, "search": ["name", "first_name"], - "form_order": ["first_name", "name", "start_date_written", "end_date_written", "profession", "status", "collection"], - "table_fields": ["name", "first_name", "start_date_written", "end_date_written"], + "form_order": [ + "first_name", + "name", + "start_date_written", + "end_date_written", + "profession", + "status", + "collection", + ], + "table_fields": [ + "name", + "first_name", + "start_date_written", + "end_date_written", + ], "additional_cols": ["id", "profession", "gender"], "list_filters": [ "name", @@ -206,8 +219,18 @@ "Institution": { "merge": True, "search": ["name"], - "form_order": ["name", "start_date_written", "end_date_written", "kind", "status", "collection"], - "additional_cols": ["id", "kind", ], + "form_order": [ + "name", + "start_date_written", + "end_date_written", + "kind", + "status", + "collection", + ], + "additional_cols": [ + "id", + "kind", + ], "list_filters": [ {"name": {"label": "Name or label of institution"}}, {"kind": {"label": "Kind of Institution"}}, @@ -221,7 +244,10 @@ "Work": { "merge": True, "search": ["name"], - "additional_cols": ["id", "kind", ], + "additional_cols": [ + "id", + "kind", + ], "list_filters": [ {"name": {"label": "Name of work"}}, {"kind": {"label": "Kind of Work"}}, @@ -234,7 +260,9 @@ "Event": { "merge": True, "search": ["name"], - "additional_cols": ["id", ], + "additional_cols": [ + "id", + ], "list_filters": [ {"name": {"label": "Name of event"}}, {"kind": {"label": "Kind of Event"}}, diff --git a/requirements.txt b/requirements.txt index 7610bf0..f0daca5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +acdh-django-browsing acdh-id-reconciler>=0.2,<1 acdh-tei-pyutils>=0.34,<1 Django>4.1,<5 From 1a45038c337e504649d8c459c6de5feddd525fb4 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 11:40:20 +0100 Subject: [PATCH 02/56] no more warning --- apis_core/apis_entities/urls.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apis_core/apis_entities/urls.py b/apis_core/apis_entities/urls.py index dc6685e..30b2455 100644 --- a/apis_core/apis_entities/urls.py +++ b/apis_core/apis_entities/urls.py @@ -42,12 +42,12 @@ name="generic_entities_stanbol_create", ), path( - "autocomplete/createstanbol//(?P[0-9]+)/", + "autocomplete/createstanbol///", GenericEntitiesCreateStanbolView.as_view(), name="generic_entities_stanbol_create", ), path( - "autocomplete//(?P[0-9]+)/", + "autocomplete///", GenericEntitiesAutocomplete.as_view(), name="generic_entities_autocomplete", ), @@ -57,7 +57,7 @@ name="generic_entities_autocomplete", ), path( - "autocomplete//(?P[a-z]+)/", + "autocomplete///", GenericEntitiesAutocomplete.as_view(), name="generic_entities_autocomplete", ), @@ -73,7 +73,7 @@ path("place/geojson/list/", views.getGeoJsonList, name="getGeoJsonList"), path("place/network/list/", views.getNetJsonList, name="getNetJsonList"), path( - "resolve/place//(?P.+)", + "resolve/place//", views.resolve_ambigue_place, name="resolve_ambigue_place", ), From 2bfa9c108e1f2cdf097e3f8eb1b83c59e17b9b8a Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 11:42:02 +0100 Subject: [PATCH 03/56] removed some print stmt --- apis_core/apis_relations/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/apis_core/apis_relations/models.py b/apis_core/apis_relations/models.py index 5c3f941..4ca2f7a 100644 --- a/apis_core/apis_relations/models.py +++ b/apis_core/apis_relations/models.py @@ -138,7 +138,6 @@ def get_all_relation_classes(cls): # using python's reflective logic, the following loop iterates over all classes of this current module. for relation_name, relation_class in inspect.getmembers( sys.modules[__name__], inspect.isclass): - print('inspecting classes') # check for python classes not to be used. if \ relation_class.__module__ == "apis_core.apis_relations.models" and \ From b12a87ca12e3c98f80ded21bf1fae5441635c87c Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 12:00:36 +0100 Subject: [PATCH 04/56] backup --- .../templates/apis_entities/generic_list.html | 2 +- .../templates/apis_entities/person_list.html | 6 +++--- apis_core/apis_entities/views.py | 8 -------- pmb/settings.py | 8 +++++++- pmb/urls.py | 2 +- 5 files changed, 12 insertions(+), 14 deletions(-) diff --git a/apis_core/apis_entities/templates/apis_entities/generic_list.html b/apis_core/apis_entities/templates/apis_entities/generic_list.html index 4f6f20d..1e99797 100644 --- a/apis_core/apis_entities/templates/apis_entities/generic_list.html +++ b/apis_core/apis_entities/templates/apis_entities/generic_list.html @@ -1,4 +1,4 @@ -{% extends "webpage/base.html" %} +{% extends "base.html" %} {% load i18n %} {% block title %} See all {{entity|title}}s {% endblock %} {% block content %} diff --git a/apis_core/apis_entities/templates/apis_entities/person_list.html b/apis_core/apis_entities/templates/apis_entities/person_list.html index 4afd880..f2dd202 100644 --- a/apis_core/apis_entities/templates/apis_entities/person_list.html +++ b/apis_core/apis_entities/templates/apis_entities/person_list.html @@ -1,4 +1,4 @@ -{% extends "webpage/base.html" %} +{% extends "base.html" %} {% block Titel %} See all Persons {% endblock %} {% block content %} @@ -6,7 +6,7 @@
@@ -20,7 +20,7 @@

All Persons

{% for object in object_list %} - {{ object }} + {{ object }} {{ object.start_date_written }} {% if object.end_date_written %} - {{ object.end_date_written }} {% endif %} {{ object.isoCode }} diff --git a/apis_core/apis_entities/views.py b/apis_core/apis_entities/views.py index b748025..4b0c921 100644 --- a/apis_core/apis_entities/views.py +++ b/apis_core/apis_entities/views.py @@ -175,14 +175,6 @@ def get_context_data(self, **kwargs): context["app_name"] = "apis_entities" entity = self.entity.title() context["entity_create_stanbol"] = GenericEntitiesStanbolForm(self.entity) - if "browsing" in settings.INSTALLED_APPS: - from browsing.models import BrowsConf - - context["conf_items"] = list( - BrowsConf.objects.filter(model_name=self.entity).values_list( - "field_path", "label" - ) - ) context["docstring"] = "{}".format(model.__doc__) if model._meta.verbose_name_plural: context["class_name"] = "{}".format(model._meta.verbose_name.title()) diff --git a/pmb/settings.py b/pmb/settings.py index 859859e..0cb0e87 100644 --- a/pmb/settings.py +++ b/pmb/settings.py @@ -30,6 +30,10 @@ "django.contrib.messages", "django.contrib.staticfiles", "browsing", + "crispy_forms", + "crispy_bootstrap5", + "django_tables2", + "django_filters", "apis_core.apis_entities", "apis_core.apis_metainfo", "apis_core.apis_relations", @@ -40,8 +44,10 @@ "archemd", ] +CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5" +CRISPY_TEMPLATE_PACK = "bootstrap5" + if os.environ.get("DEV"): - print("HALLLLLLOOOOO") INSTALLED_APPS = INSTALLED_APPS + [ "django_extensions", ] diff --git a/pmb/urls.py b/pmb/urls.py index e44c80c..0fbe546 100644 --- a/pmb/urls.py +++ b/pmb/urls.py @@ -2,7 +2,7 @@ from django.urls import path, include urlpatterns = [ - path("apis/", include("apis_core.urls", namespace="apis")), + path("apis/entities/", include("apis_core.apis_entities.urls")), path("admin/", admin.site.urls), path("arche/", include("archemd.urls")), path("", include("dumper.urls")), From c51e8084c4308faf230cf9ac87759d9f4fbf0cc6 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 12:41:02 +0100 Subject: [PATCH 05/56] list views dont throw error any more --- apis_core/apis_entities/views.py | 22 ++-------------------- pmb/settings.py | 3 +++ pmb/urls.py | 6 +++++- 3 files changed, 10 insertions(+), 21 deletions(-) diff --git a/apis_core/apis_entities/views.py b/apis_core/apis_entities/views.py index 4b0c921..297f584 100644 --- a/apis_core/apis_entities/views.py +++ b/apis_core/apis_entities/views.py @@ -113,10 +113,7 @@ class GenericListViewNew(UserPassesTestMixin, ExportMixin, SingleTableView): formhelper_class = GenericFilterFormHelper context_filter_name = "filter" paginate_by = 25 - template_name = getattr( - settings, "APIS_LIST_VIEW_TEMPLATE", "apis:apis_entities/generic_list.html" - ) - #login_url = "/accounts/login/" + template_name = "apis_entities/generic_list.html" def get_model(self): model = ContentType.objects.get( @@ -172,6 +169,7 @@ def get_context_data(self, **kwargs): context = super(GenericListViewNew, self).get_context_data() context[self.context_filter_name] = self.filter context["entity"] = self.entity + print(f"#############{self.entity}") context["app_name"] = "apis_entities" entity = self.entity.title() context["entity_create_stanbol"] = GenericEntitiesStanbolForm(self.entity) @@ -587,19 +585,3 @@ def generic_network_viz(request): "apis:apis_entities/generic_network_visualization.html", {"form": form}, ) - - -############################################################################ -############################################################################ -# -# Reversion Views -# -############################################################################ -############################################################################ -# TODO: add again as soon as the module has been bumped to new django version -# class ReversionCompareView(HistoryCompareDetailView): -# template_name = 'apis_entities/compare_base.html' - -# def dispatch(self, request, app, kind, pk, *args, **kwargs): -# self.model = ContentType.objects.get(app_label=app, model=kind).model_class() -# return super(ReversionCompareView, self).dispatch(request, *args, **kwargs) diff --git a/pmb/settings.py b/pmb/settings.py index 0cb0e87..9138850 100644 --- a/pmb/settings.py +++ b/pmb/settings.py @@ -17,6 +17,9 @@ ALLOWED_HOSTS = ["*"] +APIS_LIST_VIEWS_ALLOWED = True +APIS_DETAIL_VIEWS_ALLOWED = True + # Application definition diff --git a/pmb/urls.py b/pmb/urls.py index 0fbe546..dc0f23e 100644 --- a/pmb/urls.py +++ b/pmb/urls.py @@ -1,8 +1,12 @@ from django.contrib import admin from django.urls import path, include +from apis_core.apis_entities.api_views import GetEntityGeneric + + urlpatterns = [ - path("apis/entities/", include("apis_core.apis_entities.urls")), + path("apis/", include("apis_core.urls", namespace="apis")), + path(r"entity//", GetEntityGeneric.as_view(), name="GetEntityGenericRoot"), path("admin/", admin.site.urls), path("arche/", include("archemd.urls")), path("", include("dumper.urls")), From c35d1549d608445223ab496f987766494b90fde4 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 13:01:12 +0100 Subject: [PATCH 06/56] lowercase fixes for postgres --- apis_core/apis_entities/api_views.py | 4 +- apis_core/apis_entities/fixtures/db_v2.json | 2 +- apis_core/apis_entities/fixtures/db_v5.json | 28 +- .../fixtures/fixtures_3_5_17.json | 2 +- apis_core/apis_entities/managers.py | 415 ++++++++++++++++++ apis_core/apis_entities/serializers.py | 4 +- .../apis_entities/serializers_generic.py | 4 +- .../apis_entities/institution_create.html | 4 +- .../apis_entities/person_create.html | 8 +- .../apis_entities/person_create_new.html | 2 +- apis_core/apis_entities/views2.py | 4 +- apis_core/apis_metainfo/models.py | 4 +- .../migrations/0002_auto_20200121_1227.py | 8 +- apis_core/apis_relations/models.py | 60 +-- .../EntityRelationFieldGenerator.py | 26 +- pmb/urls.py | 2 +- requirements.txt | 1 + 17 files changed, 497 insertions(+), 81 deletions(-) create mode 100644 apis_core/apis_entities/managers.py diff --git a/apis_core/apis_entities/api_views.py b/apis_core/apis_entities/api_views.py index dd565ad..390c8d0 100644 --- a/apis_core/apis_entities/api_views.py +++ b/apis_core/apis_entities/api_views.py @@ -281,8 +281,8 @@ def create(self, request): q_dict = {} q_list = None if rel_a == rel_b: - rel_a += "A" - rel_b += "B" + rel_a += "a" + rel_b += "b" if "search_source" in request.data.keys(): source = request.data["search_source"] if source.startswith("cl:"): diff --git a/apis_core/apis_entities/fixtures/db_v2.json b/apis_core/apis_entities/fixtures/db_v2.json index 28a6b1e..ce18903 100644 --- a/apis_core/apis_entities/fixtures/db_v2.json +++ b/apis_core/apis_entities/fixtures/db_v2.json @@ -1 +1 @@ -[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "labels", "model": "label"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "entities", "model": "person"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "entities", "model": "place"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "entities", "model": "event"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "entities", "model": "work"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "highlighter", "model": "project"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "highlighter", "model": "annotation"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "highlighter", "model": "vocabularyapi"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "highlighter", "model": "menuentry"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "pk": 67, "fields": {"app_label": "reversion", "model": "version"}}, {"model": "contenttypes.contenttype", "pk": 68, "fields": {"app_label": "metainfo", "model": "uricandidate"}}, {"model": "contenttypes.contenttype", "pk": 69, "fields": {"app_label": "vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "pk": 70, "fields": {"app_label": "highlighter", "model": "texthigh"}}, {"model": "contenttypes.contenttype", "pk": 71, "fields": {"app_label": "highlighter", "model": "annotationproject"}}, {"model": "contenttypes.contenttype", "pk": 72, "fields": {"app_label": "authtoken", "model": "token"}}, {"model": "contenttypes.contenttype", "pk": 73, "fields": {"app_label": "guardian", "model": "userobjectpermission"}}, {"model": "contenttypes.contenttype", "pk": 74, "fields": {"app_label": "guardian", "model": "groupobjectpermission"}}, {"model": "sessions.session", "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-12T09:16:06Z"}}, {"model": "sessions.session", "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-26T10:05:04Z"}}, {"model": "sessions.session", "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-28T09:36:22Z"}}, {"model": "sessions.session", "pk": "17188fqkhwwemz91phd0gdgifcpuw531", "fields": {"session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==", "expire_date": "2016-12-23T14:35:05Z"}}, {"model": "sessions.session", "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn", "fields": {"session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9", "expire_date": "2016-11-10T13:45:57Z"}}, {"model": "sessions.session", "pk": "1iccsxivof263x10kvzx24cpvfuisbsi", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T10:09:36Z"}}, {"model": "sessions.session", "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T08:25:02Z"}}, {"model": "sessions.session", "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-03T06:28:05Z"}}, {"model": "sessions.session", "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-29T09:34:16Z"}}, {"model": "sessions.session", "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-17T10:44:53Z"}}, {"model": "sessions.session", "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T13:49:39Z"}}, {"model": "sessions.session", "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:08:50Z"}}, {"model": "sessions.session", "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-10T08:17:25Z"}}, {"model": "sessions.session", "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-26T14:15:06Z"}}, {"model": "sessions.session", "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:51:31Z"}}, {"model": "sessions.session", "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T13:15:39Z"}}, {"model": "sessions.session", "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-13T08:50:52Z"}}, {"model": "sessions.session", "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T15:43:29Z"}}, {"model": "sessions.session", "pk": "3f0z4r7zm0tht811km9py85tymlqp00t", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T16:42:42Z"}}, {"model": "sessions.session", "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T12:37:18Z"}}, {"model": "sessions.session", "pk": "3jko01lpmo2mga91cswnbozalltzmk3y", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-04T09:48:21Z"}}, {"model": "sessions.session", "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T07:40:34Z"}}, {"model": "sessions.session", "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-05-12T13:36:05Z"}}, {"model": "sessions.session", "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T09:34:31Z"}}, {"model": "sessions.session", "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:28:30Z"}}, {"model": "sessions.session", "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-08T08:03:34Z"}}, {"model": "sessions.session", "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-16T15:23:26Z"}}, {"model": "sessions.session", "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-26T16:58:24Z"}}, {"model": "sessions.session", "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a", "fields": {"session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=", "expire_date": "2016-03-28T08:35:56Z"}}, {"model": "sessions.session", "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:15:48Z"}}, {"model": "sessions.session", "pk": "530ad4x705b6e19mkq2p46a9hvib918m", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T10:26:56Z"}}, {"model": "sessions.session", "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-20T13:12:52Z"}}, {"model": "sessions.session", "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-25T10:51:39Z"}}, {"model": "sessions.session", "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw", "fields": {"session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2016-12-29T15:38:59Z"}}, {"model": "sessions.session", "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-21T14:12:41Z"}}, {"model": "sessions.session", "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:22:04Z"}}, {"model": "sessions.session", "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-09T08:10:25Z"}}, {"model": "sessions.session", "pk": "6k16reryrvgvlux4peggv2dwnpdw018v", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-08-26T11:22:37Z"}}, {"model": "sessions.session", "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429", "fields": {"session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T12:26:52Z"}}, {"model": "sessions.session", "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T10:37:41Z"}}, {"model": "sessions.session", "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-08T10:43:50Z"}}, {"model": "sessions.session", "pk": "7c01s688teucprvj9wuoiuebtl8bff2d", "fields": {"session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-21T11:56:57Z"}}, {"model": "sessions.session", "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T11:41:48Z"}}, {"model": "sessions.session", "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-17T10:07:28Z"}}, {"model": "sessions.session", "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-06-21T12:35:35Z"}}, {"model": "sessions.session", "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T11:46:41Z"}}, {"model": "sessions.session", "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-12-14T16:16:28Z"}}, {"model": "sessions.session", "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-31T10:09:32Z"}}, {"model": "sessions.session", "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-12T08:26:15Z"}}, {"model": "sessions.session", "pk": "9mf1xzu1346ss0edpll2dwougyoippqv", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-01-02T13:44:56Z"}}, {"model": "sessions.session", "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-07T09:00:09Z"}}, {"model": "sessions.session", "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-11T11:10:15Z"}}, {"model": "sessions.session", "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg", "fields": {"session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2017-01-03T09:23:20Z"}}, {"model": "sessions.session", "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T14:19:29Z"}}, {"model": "sessions.session", "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-04T08:02:47Z"}}, {"model": "sessions.session", "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-20T19:21:08Z"}}, {"model": "sessions.session", "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T11:54:57Z"}}, {"model": "sessions.session", "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T07:44:25Z"}}, {"model": "sessions.session", "pk": "be63mi87uoc2xmvbgcrh8w10gxmddy59", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2017-01-04T09:48:12Z"}}, {"model": "sessions.session", "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T12:01:50Z"}}, {"model": "sessions.session", "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T09:47:15Z"}}, {"model": "sessions.session", "pk": "c0mebo725euvitftiukwfw6dxip0koqs", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-21T08:38:04Z"}}, {"model": "sessions.session", "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:30:05Z"}}, {"model": "sessions.session", "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-10-19T15:55:59Z"}}, {"model": "sessions.session", "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T07:52:18Z"}}, {"model": "sessions.session", "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-11-07T12:37:20Z"}}, {"model": "sessions.session", "pk": "da9ald43zlct5w8wjy2jer4uuw1me508", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T07:57:42Z"}}, {"model": "sessions.session", "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-12T19:05:43Z"}}, {"model": "sessions.session", "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T14:05:09Z"}}, {"model": "sessions.session", "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T08:00:35Z"}}, {"model": "sessions.session", "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-16T13:41:51Z"}}, {"model": "sessions.session", "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T10:15:28Z"}}, {"model": "sessions.session", "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T08:42:22Z"}}, {"model": "sessions.session", "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y", "fields": {"session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-14T11:11:40Z"}}, {"model": "sessions.session", "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-14T14:53:54Z"}}, {"model": "sessions.session", "pk": "erwufifibov75oo9c5uklkwh5itqskcj", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-27T09:07:15Z"}}, {"model": "sessions.session", "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-21T15:40:51Z"}}, {"model": "sessions.session", "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-10-26T12:38:51Z"}}, {"model": "sessions.session", "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:23Z"}}, {"model": "sessions.session", "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-06-08T11:35:30Z"}}, {"model": "sessions.session", "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-06-07T13:29:28Z"}}, {"model": "sessions.session", "pk": "gi62wdj66c5j78be7q372m29mv6gdora", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-28T08:16:12Z"}}, {"model": "sessions.session", "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-21T07:03:28Z"}}, {"model": "sessions.session", "pk": "gjuve267k4260hvyils2ls2496ak9z37", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T17:18:28Z"}}, {"model": "sessions.session", "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T07:59:21Z"}}, {"model": "sessions.session", "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-05T14:43:01Z"}}, {"model": "sessions.session", "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-24T08:40:28Z"}}, {"model": "sessions.session", "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-16T08:59:39Z"}}, {"model": "sessions.session", "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-30T09:46:34Z"}}, {"model": "sessions.session", "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it", "fields": {"session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9", "expire_date": "2016-09-19T08:08:24Z"}}, {"model": "sessions.session", "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-20T06:13:45Z"}}, {"model": "sessions.session", "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-31T14:52:42Z"}}, {"model": "sessions.session", "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T08:07:45Z"}}, {"model": "sessions.session", "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-15T11:14:21Z"}}, {"model": "sessions.session", "pk": "imakeqah5lviaceijxe33lnovxbek8nu", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T16:03:56Z"}}, {"model": "sessions.session", "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-06T07:28:47Z"}}, {"model": "sessions.session", "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T13:05:08Z"}}, {"model": "sessions.session", "pk": "jghkwi5l48e732l6senbb027s7ww69fb", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T09:49:32Z"}}, {"model": "sessions.session", "pk": "ka3msywv1o7njsbgs3q2631094nuqclo", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-19T15:12:15Z"}}, {"model": "sessions.session", "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-05-31T10:05:18Z"}}, {"model": "sessions.session", "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-23T05:35:47Z"}}, {"model": "sessions.session", "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec", "fields": {"session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-30T19:29:46Z"}}, {"model": "sessions.session", "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-25T15:37:43Z"}}, {"model": "sessions.session", "pk": "knqvpsn88en5yygqemcw6edtg2jt8249", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T09:44:34Z"}}, {"model": "sessions.session", "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T06:27:59Z"}}, {"model": "sessions.session", "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:21:45Z"}}, {"model": "sessions.session", "pk": "le4a8wynksh1utfu4n5kz3o0tky32990", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-14T11:45:48Z"}}, {"model": "sessions.session", "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-01T14:58:57Z"}}, {"model": "sessions.session", "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-04T13:24:20Z"}}, {"model": "sessions.session", "pk": "m787xp45lpgoa269n6728z0b37p8iy1q", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:28:33Z"}}, {"model": "sessions.session", "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-19T19:17:17Z"}}, {"model": "sessions.session", "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-23T16:20:25Z"}}, {"model": "sessions.session", "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-23T13:26:40Z"}}, {"model": "sessions.session", "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-16T10:14:08Z"}}, {"model": "sessions.session", "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-09-14T14:54:12Z"}}, {"model": "sessions.session", "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-22T15:22:58Z"}}, {"model": "sessions.session", "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg", "fields": {"session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=", "expire_date": "2016-04-11T20:27:35Z"}}, {"model": "sessions.session", "pk": "nswul70gr80dq4qwgs4di508w00uud6b", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-08T10:15:12Z"}}, {"model": "sessions.session", "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-08-24T09:07:00Z"}}, {"model": "sessions.session", "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T10:17:31Z"}}, {"model": "sessions.session", "pk": "odorbcaogkfzuupexk2zyze0ewnene46", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-08T10:29:46Z"}}, {"model": "sessions.session", "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T07:40:16Z"}}, {"model": "sessions.session", "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:49:30Z"}}, {"model": "sessions.session", "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-16T07:07:44Z"}}, {"model": "sessions.session", "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T11:53:13Z"}}, {"model": "sessions.session", "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf", "fields": {"session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==", "expire_date": "2016-11-24T11:13:28Z"}}, {"model": "sessions.session", "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-18T11:48:29Z"}}, {"model": "sessions.session", "pk": "qi66ci58ybleptvfa4qenkhecsabekut", "fields": {"session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-03-28T14:27:50Z"}}, {"model": "sessions.session", "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf", "fields": {"session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==", "expire_date": "2016-12-09T16:53:29Z"}}, {"model": "sessions.session", "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-17T11:19:13Z"}}, {"model": "sessions.session", "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-20T08:48:24Z"}}, {"model": "sessions.session", "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T08:12:45Z"}}, {"model": "sessions.session", "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o", "fields": {"session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-10T07:54:55Z"}}, {"model": "sessions.session", "pk": "ryh7badf8sk52fnosn0im30u153w96bx", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-06-01T09:22:04Z"}}, {"model": "sessions.session", "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-17T11:25:00Z"}}, {"model": "sessions.session", "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T07:10:33Z"}}, {"model": "sessions.session", "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-11-02T13:21:25Z"}}, {"model": "sessions.session", "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-22T23:47:44Z"}}, {"model": "sessions.session", "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T09:13:02Z"}}, {"model": "sessions.session", "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T13:16:42Z"}}, {"model": "sessions.session", "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-09-07T09:17:51Z"}}, {"model": "sessions.session", "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:45:55Z"}}, {"model": "sessions.session", "pk": "txw6kfzk32bxeqm21knvrf570by4v27p", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:48:36Z"}}, {"model": "sessions.session", "pk": "uesi563p5dol5hv4gjor3noj55kz8chz", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-13T08:36:52Z"}}, {"model": "sessions.session", "pk": "uou3pothn76iu9zi34fij69m8inc1v2s", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-05-13T08:32:22Z"}}, {"model": "sessions.session", "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-07-05T09:34:00Z"}}, {"model": "sessions.session", "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-06T09:17:34Z"}}, {"model": "sessions.session", "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20", "fields": {"session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9", "expire_date": "2016-11-25T22:11:01Z"}}, {"model": "sessions.session", "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2016-10-19T09:11:45Z"}}, {"model": "sessions.session", "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-25T11:21:04Z"}}, {"model": "sessions.session", "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd", "fields": {"session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2016-12-19T13:49:09Z"}}, {"model": "sessions.session", "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:40:30Z"}}, {"model": "sessions.session", "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-31T09:28:51Z"}}, {"model": "sessions.session", "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-24T18:27:59Z"}}, {"model": "sessions.session", "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-08-15T11:56:07Z"}}, {"model": "sessions.session", "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:23:30Z"}}, {"model": "sessions.session", "pk": "xeta229mvebwff8lxrg15tg92yby9l7h", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-01-03T10:42:04Z"}}, {"model": "sessions.session", "pk": "xjameie76erma5u2xcefnxiqkaydbqem", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T15:38:48Z"}}, {"model": "sessions.session", "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:41:43Z"}}, {"model": "sessions.session", "pk": "xqn4o938970paagobhs75vdj78qklbpt", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-13T06:21:47Z"}}, {"model": "sessions.session", "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g", "fields": {"session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=", "expire_date": "2016-03-28T11:24:43Z"}}, {"model": "sessions.session", "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:59Z"}}, {"model": "sessions.session", "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T15:37:48Z"}}, {"model": "sessions.session", "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-23T09:12:20Z"}}, {"model": "sessions.session", "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-29T08:20:29Z"}}, {"model": "sessions.session", "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-21T14:11:46Z"}}, {"model": "sessions.session", "pk": "ykzz4og15rbp734i6zas54al3618ih6t", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-28T12:47:33Z"}}, {"model": "sessions.session", "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T07:23:58Z"}}, {"model": "sessions.session", "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-06-10T09:57:45Z"}}, {"model": "sessions.session", "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-29T12:27:51Z"}}, {"model": "sessions.session", "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T11:53:02Z"}}, {"model": "sessions.session", "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T13:24:18Z"}}, {"model": "sessions.session", "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:07:32Z"}}, {"model": "sessions.session", "pk": "zd89eekj8db021j20g95g8h3l2qoajg2", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-03T11:30:35Z"}}, {"model": "sessions.session", "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-07T12:20:16Z"}}, {"model": "sessions.session", "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T14:32:15Z"}}, {"model": "labels.label", "pk": 17, "fields": {"label": "Opatija", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 26}}, {"model": "labels.label", "pk": 19, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 20, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 50, "fields": {"label": "Zagreb", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 133}}, {"model": "labels.label", "pk": 51, "fields": {"label": "Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 67, "fields": {"label": "Vienna", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 183}}, {"model": "labels.label", "pk": 68, "fields": {"label": "Wien", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 108, "fields": {"label": "Brno", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 327}}, {"model": "labels.label", "pk": 109, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 118, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 121, "fields": {"label": "Budapest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 400}}, {"model": "labels.label", "pk": 122, "fields": {"label": "Budapest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 252, "fields": {"label": "Bucharest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 831}}, {"model": "labels.label", "pk": 253, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 287, "fields": {"label": "Baden bei Wien", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 926}}, {"model": "labels.label", "pk": 288, "fields": {"label": "Baden", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 926}}, {"model": "labels.label", "pk": 445, "fields": {"label": "Berlin", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1390}}, {"model": "labels.label", "pk": 446, "fields": {"label": "Berlin", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 456, "fields": {"label": "Liberec", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1424}}, {"model": "labels.label", "pk": 457, "fields": {"label": "Liberec - Osta\u0161ov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 466, "fields": {"label": "Bezau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1454}}, {"model": "labels.label", "pk": 531, "fields": {"label": "Bodensdorf, Bez. Feldkirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1701}}, {"model": "labels.label", "pk": 536, "fields": {"label": "Heilbronn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1718}}, {"model": "labels.label", "pk": 537, "fields": {"label": "Heilbronn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1718}}, {"model": "labels.label", "pk": 613, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2006}}, {"model": "labels.label", "pk": 614, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2006}}, {"model": "labels.label", "pk": 639, "fields": {"label": "Bratislava", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2072}}, {"model": "labels.label", "pk": 640, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 641, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 645, "fields": {"label": "Broumov", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2085}}, {"model": "labels.label", "pk": 646, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 647, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 669, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2161}}, {"model": "labels.label", "pk": 670, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 671, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 672, "fields": {"label": "Brixen", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2170}}, {"model": "labels.label", "pk": 673, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 680, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2197}}, {"model": "labels.label", "pk": 681, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - B\u0159ezhrad, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 693, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 694, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 697, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 704, "fields": {"label": "Brody", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2281}}, {"model": "labels.label", "pk": 705, "fields": {"label": "Brody, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2281}}, {"model": "labels.label", "pk": 713, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 714, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 715, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 716, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 757, "fields": {"label": "Buenos Aires", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2489}}, {"model": "labels.label", "pk": 759, "fields": {"label": "Buenos Aires", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2489}}, {"model": "labels.label", "pk": 760, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 761, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 789, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 870, "fields": {"label": "Chernivtsi", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2854}}, {"model": "labels.label", "pk": 871, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 876, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 944, "fields": {"label": "Cieszyn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3105}}, {"model": "labels.label", "pk": 945, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 962, "fields": {"label": "Cluj-Napoca", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3162}}, {"model": "labels.label", "pk": 963, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 1050, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 1214, "fields": {"label": "D\u00fcren", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1215, "fields": {"label": "D\u00fcren", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1268, "fields": {"label": "\u00dadlice, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4269}}, {"model": "labels.label", "pk": 1412, "fields": {"label": "Graz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1413, "fields": {"label": "Graz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1446, "fields": {"label": "Freistadt", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1447, "fields": {"label": "Freistadt", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1560, "fields": {"label": "Ghidfal\u0103u, jud. Covasna", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5294}}, {"model": "labels.label", "pk": 1565, "fields": {"label": "Marienheide", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5308}}, {"model": "labels.label", "pk": 1619, "fields": {"label": "Gorizia", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1620, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1635, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1636, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1670, "fields": {"label": "Merano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1671, "fields": {"label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1691, "fields": {"label": "Grieskirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5749}}, {"model": "labels.label", "pk": 1755, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1756, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1841, "fields": {"label": "Hanover", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1842, "fields": {"label": "Hannover", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1926, "fields": {"label": "Innsbruck", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1927, "fields": {"label": "Innsbruck", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1982, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 1983, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 2002, "fields": {"label": "Brno - Brno-sever, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2108, "fields": {"label": "Jaworzno, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7454}}, {"model": "labels.label", "pk": 2153, "fields": {"label": "Leoben", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2154, "fields": {"label": "Leoben", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2190, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2191, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2249, "fields": {"label": "Kassel", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2250, "fields": {"label": "Kassel", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2340, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2341, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2373, "fields": {"label": "Klosterneuburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8482}}, {"model": "labels.label", "pk": 2394, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2458, "fields": {"label": "Konstanz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2459, "fields": {"label": "Konstanz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2581, "fields": {"label": "Kufstein", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2582, "fields": {"label": "Kufstein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2585, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Kukleny, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2595, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2625, "fields": {"label": "Lachovice, kr. Karlovarsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9455}}, {"model": "labels.label", "pk": 2632, "fields": {"label": "Ljubljana", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2633, "fields": {"label": "Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2711, "fields": {"label": "Lviv", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2712, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2713, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2789, "fields": {"label": "Linz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2790, "fields": {"label": "Linz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2858, "fields": {"label": "City of London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2859, "fields": {"label": "London City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2860, "fields": {"label": "The City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2861, "fields": {"label": "London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2862, "fields": {"label": "London", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2927, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2928, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2929, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2951, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2952, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2963, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3022, "fields": {"label": "Maribor", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3023, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3039, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3040, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3041, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3116, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3117, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3118, "fields": {"label": "Merano (Castello di Trautmannsdorf) / Meran (Schlo\u00df Trautmannsdorf), reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3119, "fields": {"label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3120, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3121, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3158, "fields": {"label": "St\u0159\u00edbro, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 3239, "fields": {"label": "Moldava, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11556}}, {"model": "labels.label", "pk": 3324, "fields": {"label": "Munich", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3325, "fields": {"label": "M\u00fcnchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3441, "fields": {"label": "Nysa", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3442, "fields": {"label": "Nysa, woj. Opole", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3491, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Nov\u00fd Hradec Kr\u00e1lov\u00e9, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 3549, "fields": {"label": "Liberec - Doln\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3580, "fields": {"label": "Nice", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3581, "fields": {"label": "Nice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3657, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3663, "fields": {"label": "Liberec - Horn\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3671, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3672, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3681, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3697, "fields": {"label": "Brno - Malom\u011b\u0159ice-Ob\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3710, "fields": {"label": "Sopron", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3711, "fields": {"label": "Sopron, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3737, "fields": {"label": "Olomouc", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3738, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3739, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3740, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3741, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3828, "fields": {"label": "Paris", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3829, "fields": {"label": "Paris", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3901, "fields": {"label": "Petting", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13987}}, {"model": "labels.label", "pk": 4050, "fields": {"label": "Prague", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4051, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4052, "fields": {"label": "Praha, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4053, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4054, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4055, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4077, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4078, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4333, "fields": {"label": "Liberec - R\u016f\u017eodol I, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4334, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4389, "fields": {"label": "Liberec - Ruprechtice, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4415, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 4478, "fields": {"label": "Sv\u00e4t\u00fd Jur", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4479, "fields": {"label": "Sv\u00e4t\u00fd Jur, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4500, "fields": {"label": "St. Pankraz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4501, "fields": {"label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4581, "fields": {"label": "\u0160t\u00edty, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16594}}, {"model": "labels.label", "pk": 4624, "fields": {"label": "Liberec - Kr\u00e1sn\u00e1 Stud\u00e1nka, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4652, "fields": {"label": "Schwanberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16864}}, {"model": "labels.label", "pk": 4676, "fields": {"label": "Wien - Sechshaus", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 4878, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 5025, "fields": {"label": "Szczakowa, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18374}}, {"model": "labels.label", "pk": 5031, "fields": {"label": "Szeged, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 5150, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5152, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5273, "fields": {"label": "Trento", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5274, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5275, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5290, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5291, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5386, "fields": {"label": "Mojm\u00edrovce, kr. Nitra", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19599}}, {"model": "labels.label", "pk": 5411, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 5422, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 5650, "fields": {"label": "Warsaw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5651, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5652, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5653, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5654, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5655, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5656, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5677, "fields": {"label": "Bela Crkva, sr. Pan\u010devo", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20659}}, {"model": "labels.label", "pk": 5726, "fields": {"label": "Bad Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 5758, "fields": {"label": "Wisborough Green", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20988}}, {"model": "labels.label", "pk": 5809, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 5903, "fields": {"label": "L'viv - Znesinnja, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 5941, "fields": {"label": "Svitavy", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5942, "fields": {"label": "Svitavy, kr. Pardubick\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5959, "fields": {"label": "Jamnitz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22216}}, {"model": "labels.label", "pk": 5960, "fields": {"label": "Stronach (Lienz)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22259}}, {"model": "labels.label", "pk": 5961, "fields": {"label": "Nizza", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 5962, "fields": {"label": "Gr\u00fcnburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22322}}, {"model": "labels.label", "pk": 5963, "fields": {"label": "Olten", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5964, "fields": {"label": "Olten, Kt. Solothurn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5965, "fields": {"label": "Bad Kreuznach", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "labels.label", "pk": 5966, "fields": {"label": "Lasberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22494}}, {"model": "labels.label", "pk": 5967, "fields": {"label": "Fribourg", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5968, "fields": {"label": "Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5969, "fields": {"label": "Boc\u0219a", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22545}}, {"model": "labels.label", "pk": 5970, "fields": {"label": "Lud\u017amierz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22558}}, {"model": "labels.label", "pk": 5971, "fields": {"label": "Warszawa, woj. mazowieckie", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5972, "fields": {"label": "Vezzano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22570}}, {"model": "labels.label", "pk": 5973, "fields": {"label": "Vezzano", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22570}}, {"model": "labels.label", "pk": 6951, "fields": {"label": "Thalberg, Sigismund (Fortun\u00e9 Fran\u00e7ois)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 27245}}, {"model": "labels.label", "pk": 6952, "fields": {"label": "Fortun\u00e9 Fran\u00e7ois", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 27245}}, {"model": "labels.label", "pk": 7018, "fields": {"label": "Bratislava, kr. Bratislavsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 7161, "fields": {"label": "Bressanone/Brixen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 8216, "fields": {"label": "Wien (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 8588, "fields": {"label": "Bressanone", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 9187, "fields": {"label": "Merano/Meran, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 9289, "fields": {"label": "Teschen/T\u011b\u0161\u00edn/Cieszyn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 10492, "fields": {"label": "?, kr. ?", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 12551, "fields": {"label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 12706, "fields": {"label": "\u013dviv (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 13574, "fields": {"label": "Bratislava (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 13859, "fields": {"label": "Linz (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 14306, "fields": {"label": "Gorizia, reg. Friuli-Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 15282, "fields": {"label": "Reicha (Rejcha), Anton (Anton\u00edn) Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15283, "fields": {"label": "Rejcha", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15284, "fields": {"label": "Anton\u00edn Josef", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 18793, "fields": {"label": "Moscheles, Ignaz (Isaak)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 56248}}, {"model": "labels.label", "pk": 18794, "fields": {"label": "Isaak", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 56248}}, {"model": "labels.label", "pk": 20331, "fields": {"label": "Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 21059, "fields": {"label": "Liszt, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 62757}}, {"model": "labels.label", "pk": 21545, "fields": {"label": "Bressanone/Brixen, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 21609, "fields": {"label": "Praha - Mal\u00e1 Chuchle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 25058, "fields": {"label": "Praha - Horn\u00ed Po\u010dernice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 26197, "fields": {"label": "Szeged", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 27645, "fields": {"label": "Prag", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 29838, "fields": {"label": "Blahetka, Marie Leopoldine", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88219}}, {"model": "labels.label", "pk": 30089, "fields": {"label": "Beethoven, Ludwig van", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88902}}, {"model": "labels.label", "pk": 30728, "fields": {"label": "Freiburg/Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 30935, "fields": {"label": "Merano/Meran", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 31498, "fields": {"label": "St\u0159\u00edbro", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 31596, "fields": {"label": "B\u00e4uerle, Friederike; Ps. Friedrich Horn", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31597, "fields": {"label": "Friedrich Horn", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31632, "fields": {"label": "L\u2019viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 31701, "fields": {"label": "Czerny (\u010cern\u00fd), Carl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31702, "fields": {"label": "\u010cern\u00fd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31766, "fields": {"label": "Bahr, Hermann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93003}}, {"model": "labels.label", "pk": 31769, "fields": {"label": "Czerny, Adalbert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93009}}, {"model": "labels.label", "pk": 31770, "fields": {"label": "Czetz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93012}}, {"model": "labels.label", "pk": 31771, "fields": {"label": "Czikann, Johann Jakob Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93015}}, {"model": "labels.label", "pk": 31772, "fields": {"label": "Clam-Gallas, Eduard Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93018}}, {"model": "labels.label", "pk": 31773, "fields": {"label": "Clam-Martinic, Heinrich Jaroslav Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93021}}, {"model": "labels.label", "pk": 31774, "fields": {"label": "Clam-Martinic, Heinrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93024}}, {"model": "labels.label", "pk": 31775, "fields": {"label": "Claus, Karl Friedrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93028}}, {"model": "labels.label", "pk": 31776, "fields": {"label": "Conze, Alexander", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93031}}, {"model": "labels.label", "pk": 31777, "fields": {"label": "Costenoble, Karl Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93034}}, {"model": "labels.label", "pk": 31780, "fields": {"label": "\u010celakovsk\u00fd, Jarom\u00edr", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93044}}, {"model": "labels.label", "pk": 31781, "fields": {"label": "\u010celakovsk\u00fd, Ladislav", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93047}}, {"model": "labels.label", "pk": 31782, "fields": {"label": "\u010cerven\u00fd, V\u00e1clav Franti\u0161ek", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93050}}, {"model": "labels.label", "pk": 31783, "fields": {"label": "Charlemont, Hugo de", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93056}}, {"model": "labels.label", "pk": 31784, "fields": {"label": "Chlumczansk\u00fd, Wenzel Leopold von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93059}}, {"model": "labels.label", "pk": 31785, "fields": {"label": "Dumba, Konstantin Theodor", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93065}}, {"model": "labels.label", "pk": 31786, "fields": {"label": "Doderer, Wilhelm von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93068}}, {"model": "labels.label", "pk": 31787, "fields": {"label": "Defregger, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93071}}, {"model": "labels.label", "pk": 31788, "fields": {"label": "Dengel, Ignaz Philipp", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93074}}, {"model": "labels.label", "pk": 31811, "fields": {"label": "Holovsky, Hilde", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93136}}, {"model": "labels.label", "pk": 31872, "fields": {"label": "Lorenz, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93328}}, {"model": "labels.label", "pk": 31874, "fields": {"label": "L\u00f6wy, Julius; Ps. Von der Als", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31875, "fields": {"label": "Von der Als", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31879, "fields": {"label": "Lobmeyr, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93352}}, {"model": "labels.label", "pk": 31883, "fields": {"label": "Lichtblau, Adolf; Ps. A. L. Blau", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31884, "fields": {"label": "A. L. Blau", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31885, "fields": {"label": "Lichtblau, Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93369}}, {"model": "labels.label", "pk": 31888, "fields": {"label": "Leitgeb, Hubert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93378}}, {"model": "labels.label", "pk": 31890, "fields": {"label": "Lenhoss\u00e9k, Mih\u00e1ly Ign\u00e1c von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93387}}, {"model": "labels.label", "pk": 31892, "fields": {"label": "Lefler, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93393}}, {"model": "labels.label", "pk": 31893, "fields": {"label": "Leichter, K\u00e4the; geb. Pick", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31894, "fields": {"label": "Pick", "isoCode_639_3": "deu", "label_type": 612, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31895, "fields": {"label": "Leidesdorf, Franz; Ps. Wallner", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31896, "fields": {"label": "Wallner", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31899, "fields": {"label": "Lapaine, Valentin", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93409}}, {"model": "labels.label", "pk": 31900, "fields": {"label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31901, "fields": {"label": "Suida und Langer", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31902, "fields": {"label": "M\u00fcller, Wolf Johannes", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93418}}, {"model": "labels.label", "pk": 31910, "fields": {"label": "M\u00f6rl, Maria Theresia von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93442}}, {"model": "labels.label", "pk": 31911, "fields": {"label": "Millosicz, Georg Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93445}}, {"model": "labels.label", "pk": 31912, "fields": {"label": "Miklosich, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93448}}, {"model": "labels.label", "pk": 31917, "fields": {"label": "Meithner, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93469}}, {"model": "labels.label", "pk": 31920, "fields": {"label": "Margulies, Berl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93481}}, {"model": "labels.label", "pk": 31921, "fields": {"label": "M\u00e1nesov\u00e1, Amalie", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93484}}, {"model": "labels.label", "pk": 31922, "fields": {"label": "M\u00e1nes, Quido", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93487}}, {"model": "labels.label", "pk": 31928, "fields": {"label": "Mayer, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93510}}, {"model": "labels.label", "pk": 31929, "fields": {"label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31930, "fields": {"label": "Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31931, "fields": {"label": "Nov\u00e1\u010dek, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93516}}, {"model": "labels.label", "pk": 31940, "fields": {"label": "Ortmann, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93540}}, {"model": "labels.label", "pk": 31942, "fields": {"label": "Oellacher, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93546}}, {"model": "labels.label", "pk": 31947, "fields": {"label": "Poljanec, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93561}}, {"model": "labels.label", "pk": 31950, "fields": {"label": "Petzold, Emil", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93573}}, {"model": "labels.label", "pk": 31955, "fields": {"label": "Peithner von Lichtenfels, Eduard", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93588}}, {"model": "labels.label", "pk": 31958, "fields": {"label": "Patera, Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93600}}, {"model": "labels.label", "pk": 31960, "fields": {"label": "Rumpler, Matthias", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93609}}, {"model": "labels.label", "pk": 31961, "fields": {"label": "Rotter, Johann (Hans)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31962, "fields": {"label": "Hans", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31969, "fields": {"label": "Revertera von Salandra, Friedrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93639}}, {"model": "labels.label", "pk": 31970, "fields": {"label": "Reichenberger, Andreas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93642}}, {"model": "labels.label", "pk": 31971, "fields": {"label": "Reiser, Othmar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93645}}, {"model": "labels.label", "pk": 31973, "fields": {"label": "Randa, Maximilian von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93651}}, {"model": "labels.label", "pk": 31974, "fields": {"label": "Radakovi\u010d, Michael", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93654}}, {"model": "labels.label", "pk": 31975, "fields": {"label": "Szigligeti, Ede (Edv\u00e1rd); bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31976, "fields": {"label": "Edv\u00e1rd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31977, "fields": {"label": " bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 653, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31978, "fields": {"label": "Szurmay von Uzsok, S\u00e1ndor (Alexander) Frh.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31979, "fields": {"label": "Alexander Frh.", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31988, "fields": {"label": "St\u00fclz, Jodok", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93678}}, {"model": "labels.label", "pk": 31990, "fields": {"label": "Stowasser, Otto Hellmuth", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93684}}, {"model": "labels.label", "pk": 32001, "fields": {"label": "Steindler, Olga; verehel. Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32002, "fields": {"label": "Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32003, "fields": {"label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32004, "fields": {"label": "Ernest Edward Aurel", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32005, "fields": {"label": "Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32009, "fields": {"label": "Stariha, Janez Nep.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93714}}, {"model": "labels.label", "pk": 32018, "fields": {"label": "\u0160njari\u0107, Lukas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93748}}, {"model": "labels.label", "pk": 32030, "fields": {"label": "Sichulski, Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93779}}, {"model": "labels.label", "pk": 32032, "fields": {"label": "Settari, Wilhelm Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93785}}, {"model": "labels.label", "pk": 32034, "fields": {"label": "Sehnal, Eugen", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93791}}, {"model": "labels.label", "pk": 32037, "fields": {"label": "Schwartz, P. Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93800}}, {"model": "labels.label", "pk": 32038, "fields": {"label": "Schwarz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93803}}, {"model": "labels.label", "pk": 32039, "fields": {"label": "Schwarz, Kaspar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93809}}, {"model": "labels.label", "pk": 32041, "fields": {"label": "Schweitzer, Leopold Albrecht", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93815}}, {"model": "labels.label", "pk": 32042, "fields": {"label": "Schwabl, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93818}}, {"model": "labels.label", "pk": 32052, "fields": {"label": "Schu\u00ebcker, Edmund; eigentl. Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32053, "fields": {"label": "Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32054, "fields": {"label": "Schr\u00f6dl, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93839}}, {"model": "labels.label", "pk": 32059, "fields": {"label": "Schreyer, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93854}}, {"model": "labels.label", "pk": 32062, "fields": {"label": "Scholz, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93863}}, {"model": "labels.label", "pk": 32063, "fields": {"label": "Schrammel, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93866}}, {"model": "labels.label", "pk": 32067, "fields": {"label": "Scholl, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93878}}, {"model": "labels.label", "pk": 32069, "fields": {"label": "Sch\u00f6nberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32070, "fields": {"label": "Schoenberger", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32071, "fields": {"label": "Carl Friedrich Frh. von", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32072, "fields": {"label": "Sch\u00f6nberger, Benno", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93894}}, {"model": "labels.label", "pk": 32075, "fields": {"label": "Schnitzler, Julius", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93900}}, {"model": "labels.label", "pk": 32076, "fields": {"label": "Schober, Alfred", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93903}}, {"model": "labels.label", "pk": 32079, "fields": {"label": "Schoeller, Gustav Adolph von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93909}}, {"model": "labels.label", "pk": 32084, "fields": {"label": "Schmutzler, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93921}}, {"model": "labels.label", "pk": 32087, "fields": {"label": "Schmidt, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93933}}, {"model": "labels.label", "pk": 32088, "fields": {"label": "Schmidt, Anton", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93940}}, {"model": "labels.label", "pk": 32090, "fields": {"label": "Schmal, Johannes Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93946}}, {"model": "labels.label", "pk": 32094, "fields": {"label": "Schmidt-Beauchez, Louis", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93955}}, {"model": "labels.label", "pk": 32095, "fields": {"label": "Schindler, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93958}}, {"model": "labels.label", "pk": 32096, "fields": {"label": "Scheu, Josef Franz Georg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93961}}, {"model": "labels.label", "pk": 32097, "fields": {"label": "Schikaneder, Jakub", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93964}}, {"model": "labels.label", "pk": 32098, "fields": {"label": "Schell, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93967}}, {"model": "labels.label", "pk": 32099, "fields": {"label": "Schenk, Samuel Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93970}}, {"model": "labels.label", "pk": 32107, "fields": {"label": "T\u00f6lgyessy, Art\u00far", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93988}}, {"model": "labels.label", "pk": 32108, "fields": {"label": "Thun und Hohenstein, Emanuel Maria Gf. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93991}}, {"model": "labels.label", "pk": 32111, "fields": {"label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32112, "fields": {"label": "Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32113, "fields": {"label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32114, "fields": {"label": "Przerwa-Tetmajer", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32115, "fields": {"label": "Teuber, Emmerich (genannt Imre)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32116, "fields": {"label": "genannt Imre", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32119, "fields": {"label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32120, "fields": {"label": "Richard Denemy", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32121, "fields": {"label": " ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32390, "fields": {"label": "Laibach", "isoCode_639_3": "deu", "label_type": 6, "temp_entity": 9475}}, {"model": "entities.person", "pk": 27245, "fields": {"first_name": "Sigismund", "gender": "male", "text": [12155, 12156], "collection": [], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 46414, "fields": {"first_name": "Anton Josef", "gender": "male", "text": [21722, 21723], "collection": [], "profession": [151, 188, 2054], "title": []}}, {"model": "entities.person", "pk": 56248, "fields": {"first_name": "Ignaz", "gender": "male", "text": [27186, 27187], "collection": [], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 62757, "fields": {"first_name": "Franz von", "gender": "male", "text": [30762, 30763], "collection": [], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 88219, "fields": {"first_name": "Marie Leopoldine", "gender": "female", "text": [44908, 44909], "collection": [], "profession": [151, 1750], "title": []}}, {"model": "entities.person", "pk": 88902, "fields": {"first_name": "Ludwig van", "gender": "male", "text": [45290, 45291], "collection": [], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 92412, "fields": {"first_name": "Friederike", "gender": "female", "text": [47030, 47031], "collection": [], "profession": [128, 5578], "title": []}}, {"model": "entities.person", "pk": 92603, "fields": {"first_name": "Carl", "gender": "male", "text": [47126, 47127], "collection": [], "profession": [151, 5599], "title": []}}, {"model": "entities.person", "pk": 93003, "fields": {"first_name": "Hermann", "gender": "male", "text": [47200, 47201], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93009, "fields": {"first_name": "Adalbert", "gender": "male", "text": [47204, 47205], "collection": [], "profession": [154, 155], "title": []}}, {"model": "entities.person", "pk": 93012, "fields": {"first_name": "Johann", "gender": "male", "text": [47206, 47207], "collection": [], "profession": [134, 143, 157, 158], "title": []}}, {"model": "entities.person", "pk": 93015, "fields": {"first_name": "Johann Jakob Heinrich", "gender": "male", "text": [47208, 47209], "collection": [], "profession": [128, 146, 159], "title": []}}, {"model": "entities.person", "pk": 93018, "fields": {"first_name": "Eduard Gf.", "gender": "male", "text": [47210, 47211], "collection": [], "profession": [143, 144], "title": []}}, {"model": "entities.person", "pk": 93021, "fields": {"first_name": "Heinrich Jaroslav Gf.", "gender": "male", "text": [47212, 47213], "collection": [], "profession": [132, 134, 145, 146], "title": []}}, {"model": "entities.person", "pk": 93024, "fields": {"first_name": "Heinrich Gf.", "gender": "male", "text": [47214, 47215], "collection": [], "profession": [134, 147], "title": []}}, {"model": "entities.person", "pk": 93028, "fields": {"first_name": "Karl Friedrich", "gender": "male", "text": [47216, 47217], "collection": [], "profession": [135, 148], "title": []}}, {"model": "entities.person", "pk": 93031, "fields": {"first_name": "Alexander", "gender": "male", "text": [47218, 47219], "collection": [], "profession": [149, 150], "title": []}}, {"model": "entities.person", "pk": 93034, "fields": {"first_name": "Karl Ludwig", "gender": "male", "text": [47220, 47221], "collection": [], "profession": [128, 151, 152], "title": []}}, {"model": "entities.person", "pk": 93044, "fields": {"first_name": "Jarom\u00edr", "gender": "male", "text": [47226, 47227], "collection": [], "profession": [132, 133, 134], "title": []}}, {"model": "entities.person", "pk": 93047, "fields": {"first_name": "Ladislav", "gender": "male", "text": [47228, 47229], "collection": [], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93050, "fields": {"first_name": "V\u00e1clav Franti\u0161ek", "gender": "male", "text": [47230, 47231], "collection": [], "profession": [137, 138], "title": []}}, {"model": "entities.person", "pk": 93056, "fields": {"first_name": "Hugo de", "gender": "male", "text": [47232, 47233], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93059, "fields": {"first_name": "Wenzel Leopold von", "gender": "male", "text": [47234, 47235], "collection": [], "profession": [141, 142], "title": []}}, {"model": "entities.person", "pk": 93065, "fields": {"first_name": "Konstantin Theodor", "gender": "male", "text": [47236, 47237], "collection": [], "profession": [146, 162], "title": []}}, {"model": "entities.person", "pk": 93068, "fields": {"first_name": "Wilhelm von", "gender": "male", "text": [47238, 47239], "collection": [], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93071, "fields": {"first_name": "Franz von", "gender": "male", "text": [47240, 47241], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93074, "fields": {"first_name": "Ignaz Philipp", "gender": "male", "text": [47242, 47243], "collection": [], "profession": [149, 160], "title": []}}, {"model": "entities.person", "pk": 93136, "fields": {"first_name": "Hilde", "gender": "female", "text": [47276, 47277], "collection": [], "profession": [163, 164], "title": []}}, {"model": "entities.person", "pk": 93328, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47384, 47385], "collection": [], "profession": [154, 175], "title": []}}, {"model": "entities.person", "pk": 93337, "fields": {"first_name": "Julius", "gender": "male", "text": [47388, 47389], "collection": [], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93352, "fields": {"first_name": "Josef", "gender": "male", "text": [47394, 47395], "collection": [], "profession": [137, 173], "title": []}}, {"model": "entities.person", "pk": 93366, "fields": {"first_name": "Adolf", "gender": "male", "text": [47402, 47403], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93369, "fields": {"first_name": "Ludwig", "gender": "male", "text": [47404, 47405], "collection": [], "profession": [132, 172], "title": []}}, {"model": "entities.person", "pk": 93378, "fields": {"first_name": "Hubert", "gender": "male", "text": [47410, 47411], "collection": [], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93387, "fields": {"first_name": "Mih\u00e1ly Ign\u00e1c von", "gender": "male", "text": [47414, 47415], "collection": [], "profession": [154, 171], "title": []}}, {"model": "entities.person", "pk": 93393, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47418, 47419], "collection": [], "profession": [139, 168], "title": []}}, {"model": "entities.person", "pk": 93396, "fields": {"first_name": "K\u00e4the", "gender": "female", "text": [47420, 47421], "collection": [], "profession": [128, 134, 169], "title": []}}, {"model": "entities.person", "pk": 93400, "fields": {"first_name": "Franz", "gender": "male", "text": [47422, 47423], "collection": [], "profession": [128, 151, 170], "title": []}}, {"model": "entities.person", "pk": 93409, "fields": {"first_name": "Valentin", "gender": "male", "text": [47428, 47429], "collection": [], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93415, "fields": {"first_name": "Johanna", "gender": "female", "text": [47430, 47431], "collection": [], "profession": [137, 165, 166], "title": []}}, {"model": "entities.person", "pk": 93418, "fields": {"first_name": "Wolf Johannes", "gender": "male", "text": [47432, 47433], "collection": [], "profession": [135, 185], "title": []}}, {"model": "entities.person", "pk": 93442, "fields": {"first_name": "Maria Theresia von", "gender": "female", "text": [47446, 47447], "collection": [], "profession": [141, 184], "title": []}}, {"model": "entities.person", "pk": 93445, "fields": {"first_name": "Georg Frh. von", "gender": "male", "text": [47448, 47449], "collection": [], "profession": [143, 183], "title": []}}, {"model": "entities.person", "pk": 93448, "fields": {"first_name": "Franz von", "gender": "male", "text": [47450, 47451], "collection": [], "profession": [134, 149, 182], "title": []}}, {"model": "entities.person", "pk": 93469, "fields": {"first_name": "Karl", "gender": "male", "text": [47460, 47461], "collection": [], "profession": [134, 180, 181], "title": []}}, {"model": "entities.person", "pk": 93481, "fields": {"first_name": "Berl", "gender": "male", "text": [47466, 47467], "collection": [], "profession": [151, 179], "title": []}}, {"model": "entities.person", "pk": 93484, "fields": {"first_name": "Amalie", "gender": "female", "text": [47468, 47469], "collection": [], "profession": [139, 178], "title": []}}, {"model": "entities.person", "pk": 93487, "fields": {"first_name": "Quido", "gender": "male", "text": [47470, 47471], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93510, "fields": {"first_name": "Karl", "gender": "male", "text": [47482, 47483], "collection": [], "profession": [128, 177], "title": []}}, {"model": "entities.person", "pk": 93513, "fields": {"first_name": "Johann Nep.", "gender": "male", "text": [47484, 47485], "collection": [], "profession": [128, 134, 176], "title": []}}, {"model": "entities.person", "pk": 93516, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47486, 47487], "collection": [], "profession": [151, 186], "title": []}}, {"model": "entities.person", "pk": 93540, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47502, 47503], "collection": [], "profession": [188, 189], "title": []}}, {"model": "entities.person", "pk": 93546, "fields": {"first_name": "Josef", "gender": "male", "text": [47506, 47507], "collection": [], "profession": [135, 187], "title": []}}, {"model": "entities.person", "pk": 93561, "fields": {"first_name": "Leopold", "gender": "male", "text": [47516, 47517], "collection": [], "profession": [135, 188, 193], "title": []}}, {"model": "entities.person", "pk": 93573, "fields": {"first_name": "Emil", "gender": "male", "text": [47522, 47523], "collection": [], "profession": [149, 192], "title": []}}, {"model": "entities.person", "pk": 93588, "fields": {"first_name": "Eduard", "gender": "male", "text": [47530, 47531], "collection": [], "profession": [139, 191], "title": []}}, {"model": "entities.person", "pk": 93600, "fields": {"first_name": "Adolf", "gender": "male", "text": [47536, 47537], "collection": [], "profession": [135, 190], "title": []}}, {"model": "entities.person", "pk": 93609, "fields": {"first_name": "Matthias", "gender": "male", "text": [47540, 47541], "collection": [], "profession": [128, 141, 200], "title": []}}, {"model": "entities.person", "pk": 93615, "fields": {"first_name": "Johann", "gender": "male", "text": [47542, 47543], "collection": [], "profession": [134, 137, 149, 199], "title": []}}, {"model": "entities.person", "pk": 93639, "fields": {"first_name": "Friedrich Gf.", "gender": "male", "text": [47556, 47557], "collection": [], "profession": [134, 146, 198], "title": []}}, {"model": "entities.person", "pk": 93642, "fields": {"first_name": "Andreas", "gender": "male", "text": [47558, 47559], "collection": [], "profession": [141, 196], "title": []}}, {"model": "entities.person", "pk": 93645, "fields": {"first_name": "Othmar", "gender": "male", "text": [47560, 47561], "collection": [], "profession": [135, 197], "title": []}}, {"model": "entities.person", "pk": 93651, "fields": {"first_name": "Maximilian von", "gender": "male", "text": [47564, 47565], "collection": [], "profession": [143, 146, 195], "title": []}}, {"model": "entities.person", "pk": 93654, "fields": {"first_name": "Michael", "gender": "male", "text": [47566, 47567], "collection": [], "profession": [135, 194], "title": []}}, {"model": "entities.person", "pk": 93657, "fields": {"first_name": "Ede", "gender": "male", "text": [47568, 47569], "collection": [], "profession": [128, 151, 230], "title": []}}, {"model": "entities.person", "pk": 93663, "fields": {"first_name": "S\u00e1ndor Frh.", "gender": "male", "text": [47570, 47571], "collection": [], "profession": [134, 143, 231], "title": []}}, {"model": "entities.person", "pk": 93678, "fields": {"first_name": "Jodok", "gender": "male", "text": [47580, 47581], "collection": [], "profession": [141, 149, 229], "title": []}}, {"model": "entities.person", "pk": 93684, "fields": {"first_name": "Otto Hellmuth", "gender": "male", "text": [47584, 47585], "collection": [], "profession": [146, 149, 228], "title": []}}, {"model": "entities.person", "pk": 93702, "fields": {"first_name": "Olga", "gender": "female", "text": [47594, 47595], "collection": [], "profession": [135, 188, 226], "title": []}}, {"model": "entities.person", "pk": 93705, "fields": {"first_name": "Ernst Edward Aurel", "gender": "male", "text": [47596, 47597], "collection": [], "profession": [149, 227], "title": []}}, {"model": "entities.person", "pk": 93714, "fields": {"first_name": "Janez Nep.", "gender": "male", "text": [47602, 47603], "collection": [], "profession": [141, 225], "title": []}}, {"model": "entities.person", "pk": 93748, "fields": {"first_name": "Lukas", "gender": "male", "text": [47614, 47615], "collection": [], "profession": [143, 224], "title": []}}, {"model": "entities.person", "pk": 93779, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47626, 47627], "collection": [], "profession": [139, 223], "title": []}}, {"model": "entities.person", "pk": 93785, "fields": {"first_name": "Wilhelm Anton Maria", "gender": "male", "text": [47630, 47631], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93791, "fields": {"first_name": "Eugen", "gender": "male", "text": [47634, 47635], "collection": [], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93800, "fields": {"first_name": "P. Anton Maria", "gender": "male", "text": [47640, 47641], "collection": [], "profession": [141, 219], "title": []}}, {"model": "entities.person", "pk": 93803, "fields": {"first_name": "Johann", "gender": "male", "text": [47642, 47643], "collection": [], "profession": [149, 188, 220], "title": []}}, {"model": "entities.person", "pk": 93809, "fields": {"first_name": "Kaspar", "gender": "male", "text": [47644, 47645], "collection": [], "profession": [134, 137, 221], "title": []}}, {"model": "entities.person", "pk": 93815, "fields": {"first_name": "Leopold Albrecht", "gender": "male", "text": [47648, 47649], "collection": [], "profession": [128, 222], "title": []}}, {"model": "entities.person", "pk": 93818, "fields": {"first_name": "Franz", "gender": "male", "text": [47650, 47651], "collection": [], "profession": [217, 218], "title": []}}, {"model": "entities.person", "pk": 93836, "fields": {"first_name": "Edmund", "gender": "male", "text": [47660, 47661], "collection": [], "profession": [151, 216], "title": []}}, {"model": "entities.person", "pk": 93839, "fields": {"first_name": "Leopold", "gender": "male", "text": [47662, 47663], "collection": [], "profession": [139, 215], "title": []}}, {"model": "entities.person", "pk": 93854, "fields": {"first_name": "Johann", "gender": "male", "text": [47672, 47673], "collection": [], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93863, "fields": {"first_name": "Franz", "gender": "male", "text": [47676, 47677], "collection": [], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93866, "fields": {"first_name": "Johann", "gender": "male", "text": [47678, 47679], "collection": [], "profession": [151, 214], "title": []}}, {"model": "entities.person", "pk": 93878, "fields": {"first_name": "Joseph", "gender": "male", "text": [47684, 47685], "collection": [], "profession": [132, 134, 213], "title": []}}, {"model": "entities.person", "pk": 93891, "fields": {"first_name": "Adolf Frh. von", "gender": "male", "text": [47688, 47689], "collection": [], "profession": [143, 146, 211], "title": []}}, {"model": "entities.person", "pk": 93894, "fields": {"first_name": "Benno", "gender": "male", "text": [47690, 47691], "collection": [], "profession": [151, 212], "title": []}}, {"model": "entities.person", "pk": 93900, "fields": {"first_name": "Julius", "gender": "male", "text": [47694, 47695], "collection": [], "profession": [154, 208], "title": []}}, {"model": "entities.person", "pk": 93903, "fields": {"first_name": "Alfred", "gender": "male", "text": [47696, 47697], "collection": [], "profession": [132, 146, 209], "title": []}}, {"model": "entities.person", "pk": 93909, "fields": {"first_name": "Gustav Adolph von", "gender": "male", "text": [47700, 47701], "collection": [], "profession": [137, 210], "title": []}}, {"model": "entities.person", "pk": 93921, "fields": {"first_name": "Leopold", "gender": "male", "text": [47706, 47707], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93933, "fields": {"first_name": "Joseph", "gender": "male", "text": [47712, 47713], "collection": [], "profession": [151, 207], "title": []}}, {"model": "entities.person", "pk": 93940, "fields": {"first_name": "Anton", "gender": "male", "text": [47714, 47715], "collection": [], "profession": [134, 137, 206], "title": []}}, {"model": "entities.person", "pk": 93946, "fields": {"first_name": "Johannes Adolf", "gender": "male", "text": [47718, 47719], "collection": [], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93955, "fields": {"first_name": "Louis", "gender": "male", "text": [47724, 47725], "collection": [], "profession": [128, 188, 205], "title": []}}, {"model": "entities.person", "pk": 93958, "fields": {"first_name": "Josef", "gender": "male", "text": [47726, 47727], "collection": [], "profession": [149, 204], "title": []}}, {"model": "entities.person", "pk": 93961, "fields": {"first_name": "Josef Franz Georg", "gender": "male", "text": [47728, 47729], "collection": [], "profession": [128, 151, 203], "title": []}}, {"model": "entities.person", "pk": 93964, "fields": {"first_name": "Jakub", "gender": "male", "text": [47730, 47731], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93967, "fields": {"first_name": "Karl", "gender": "male", "text": [47732, 47733], "collection": [], "profession": [137, 201], "title": []}}, {"model": "entities.person", "pk": 93970, "fields": {"first_name": "Samuel Leopold", "gender": "male", "text": [47734, 47735], "collection": [], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93988, "fields": {"first_name": "Art\u00far", "gender": "male", "text": [47746, 47747], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93991, "fields": {"first_name": "Emanuel Maria Gf. von", "gender": "male", "text": [47748, 47749], "collection": [], "profession": [141, 235], "title": []}}, {"model": "entities.person", "pk": 94003, "fields": {"first_name": "Ernst Maximilian Frh. von", "gender": "male", "text": [47754, 47755], "collection": [], "profession": [128, 146, 233], "title": []}}, {"model": "entities.person", "pk": 94006, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47756, 47757], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 94009, "fields": {"first_name": "Emmerich", "gender": "male", "text": [47758, 47759], "collection": [], "profession": [166, 234], "title": []}}, {"model": "entities.person", "pk": 94018, "fields": {"first_name": "Richard", "gender": "male", "text": [47764, 47765], "collection": [], "profession": [151, 232], "title": []}}, {"model": "entities.place", "pk": 26, "fields": {"kind": 9, "lat": 45.33917, "lng": 14.30833, "text": [12, 14, 11225], "collection": []}}, {"model": "entities.place", "pk": 133, "fields": {"kind": 12, "lat": 45.81444, "lng": 15.97798, "text": [59, 11275], "collection": []}}, {"model": "entities.place", "pk": 183, "fields": {"kind": 12, "lat": 48.20849, "lng": 16.37208, "text": [8304, 11203], "collection": []}}, {"model": "entities.place", "pk": 327, "fields": {"kind": 13, "lat": 49.19522, "lng": 16.60796, "text": [1064, 1090, 1092, 1094, 1096, 3300, 4453, 6308, 6417, 11259], "collection": []}}, {"model": "entities.place", "pk": 384, "fields": {"kind": 9, "lat": 49.19627, "lng": 13.50926, "text": [173, 8727, 11284], "collection": []}}, {"model": "entities.place", "pk": 400, "fields": {"kind": 12, "lat": 47.49801, "lng": 19.03991, "text": [181, 11223], "collection": []}}, {"model": "entities.place", "pk": 831, "fields": {"kind": 12, "lat": 44.43225, "lng": 26.10626, "text": [11242, 11243], "collection": []}}, {"model": "entities.place", "pk": 926, "fields": {"kind": 5, "lat": 48.00543, "lng": 16.23264, "text": [11313, 11314], "collection": []}}, {"model": "entities.place", "pk": 1390, "fields": {"kind": 12, "lat": 52.52437, "lng": 13.41053, "text": [11226, 11227], "collection": []}}, {"model": "entities.place", "pk": 1424, "fields": {"kind": 13, "lat": 50.76711, "lng": 15.05619, "text": [654, 5083, 5085, 6119, 6324, 6372, 7681, 7683, 7776, 8211, 11258], "collection": []}}, {"model": "entities.place", "pk": 1454, "fields": {"kind": 5, "lat": 47.38478, "lng": 9.90139, "text": [11337, 11338], "collection": []}}, {"model": "entities.place", "pk": 1701, "fields": {"kind": 9, "lat": 46.69111, "lng": 13.97111, "text": [784, 11271], "collection": []}}, {"model": "entities.place", "pk": 1718, "fields": {"kind": 5, "lat": 49.13995, "lng": 9.22054, "text": [11269, 11270], "collection": []}}, {"model": "entities.place", "pk": 2006, "fields": {"kind": 13, "lat": 47.75, "lng": 26.66667, "text": [928, 11251], "collection": []}}, {"model": "entities.place", "pk": 2072, "fields": {"kind": 12, "lat": 48.14816, "lng": 17.10674, "text": [962, 964, 7171, 7173, 11220], "collection": []}}, {"model": "entities.place", "pk": 2085, "fields": {"kind": 9, "lat": 50.58566, "lng": 16.33181, "text": [969, 971, 11272], "collection": []}}, {"model": "entities.place", "pk": 2161, "fields": {"kind": 13, "lat": 51.1, "lng": 17.03333, "text": [1011, 1013, 10485, 11199], "collection": []}}, {"model": "entities.place", "pk": 2170, "fields": {"kind": 5, "lat": 46.71503, "lng": 11.65598, "text": [1017, 1054, 1056, 11279], "collection": []}}, {"model": "entities.place", "pk": 2197, "fields": {"kind": 13, "lat": 50.20923, "lng": 15.83277, "text": [1029, 4052, 4438, 6016, 11204], "collection": []}}, {"model": "entities.place", "pk": 2281, "fields": {"kind": 11, "lat": 50.08791, "lng": 25.15027, "text": [11244, 11245], "collection": []}}, {"model": "entities.place", "pk": 2489, "fields": {"kind": 12, "lat": -34.61315, "lng": -58.37723, "text": [11256, 11257], "collection": []}}, {"model": "entities.place", "pk": 2602, "fields": {"kind": 5, "lat": 46.41326, "lng": 11.24616, "text": [1236, 3663, 3665, 9705, 11252], "collection": []}}, {"model": "entities.place", "pk": 2854, "fields": {"kind": 13, "lat": 48.29149, "lng": 25.94034, "text": [7828, 11224], "collection": []}}, {"model": "entities.place", "pk": 3105, "fields": {"kind": 5, "lat": 49.75133, "lng": 18.63213, "text": [1467, 9235, 9239, 11260], "collection": []}}, {"model": "entities.place", "pk": 3162, "fields": {"kind": 13, "lat": 46.76667, "lng": 23.6, "text": [3930, 3932, 11330], "collection": []}}, {"model": "entities.place", "pk": 4096, "fields": {"kind": 5, "lat": 50.80434, "lng": 6.49299, "text": [11299, 11300], "collection": []}}, {"model": "entities.place", "pk": 4269, "fields": {"kind": 9, "lat": 50.4406, "lng": 13.45738, "text": [2030, 11231], "collection": []}}, {"model": "entities.place", "pk": 4767, "fields": {"kind": 13, "lat": 47.06667, "lng": 15.45, "text": [11210, 11211], "collection": []}}, {"model": "entities.place", "pk": 4877, "fields": {"kind": 9, "lat": 48.51103, "lng": 14.50453, "text": [11319, 11320], "collection": []}}, {"model": "entities.place", "pk": 5294, "fields": {"kind": 11, "lat": 45.9, "lng": 25.85, "text": [2492, 11246], "collection": []}}, {"model": "entities.place", "pk": 5308, "fields": {"kind": 10, "lat": 51.08317, "lng": 7.53087, "text": [11289, 11290], "collection": []}}, {"model": "entities.place", "pk": 5478, "fields": {"kind": 11, "lat": 45.94088, "lng": 13.62167, "text": [2571, 2603, 2605, 11303], "collection": []}}, {"model": "entities.place", "pk": 5691, "fields": {"kind": 5, "lat": 46.66817, "lng": 11.15953, "text": [2675, 5101, 5344, 5346, 5348, 5350, 5352, 5353, 6350, 6352, 9735, 11326], "collection": []}}, {"model": "entities.place", "pk": 5749, "fields": {"kind": 11, "lat": 48.23333, "lng": 13.83333, "text": [11229, 11230], "collection": []}}, {"model": "entities.place", "pk": 6004, "fields": {"kind": 9, "lat": 50.03197, "lng": 17.04058, "text": [2825, 2827, 11294], "collection": []}}, {"model": "entities.place", "pk": 6324, "fields": {"kind": 13, "lat": 52.37052, "lng": 9.73322, "text": [11221, 11222], "collection": []}}, {"model": "entities.place", "pk": 6700, "fields": {"kind": 13, "lat": 47.26266, "lng": 11.39454, "text": [11235, 11236], "collection": []}}, {"model": "entities.place", "pk": 6947, "fields": {"kind": 9, "lat": 46.61472, "lng": 16.08583, "text": [3253, 3255, 11278], "collection": []}}, {"model": "entities.place", "pk": 7454, "fields": {"kind": 11, "lat": 50.20528, "lng": 19.27498, "text": [3504, 11336], "collection": []}}, {"model": "entities.place", "pk": 7622, "fields": {"kind": 5, "lat": 47.3765, "lng": 15.09144, "text": [11249, 11250], "collection": []}}, {"model": "entities.place", "pk": 7986, "fields": {"kind": 11, "lat": 51.31667, "lng": 9.5, "text": [11218, 11219], "collection": []}}, {"model": "entities.place", "pk": 8482, "fields": {"kind": 5, "lat": 48.30521, "lng": 16.32522, "text": [11322, 11323], "collection": []}}, {"model": "entities.place", "pk": 8798, "fields": {"kind": 5, "lat": 47.66033, "lng": 9.17582, "text": [11301, 11302], "collection": []}}, {"model": "entities.place", "pk": 9287, "fields": {"kind": 5, "lat": 47.58333, "lng": 12.16667, "text": [11324, 11325], "collection": []}}, {"model": "entities.place", "pk": 9455, "fields": {"kind": 9, "lat": 50.08364, "lng": 13.03925, "text": [4512, 11288], "collection": []}}, {"model": "entities.place", "pk": 9475, "fields": {"kind": 12, "lat": 46.05108, "lng": 14.50513, "text": [4522, 11331], "collection": []}}, {"model": "entities.place", "pk": 9735, "fields": {"kind": 13, "lat": 49.83826, "lng": 24.02324, "text": [4642, 4644, 5041, 5043, 5045, 10711, 11263], "collection": []}}, {"model": "entities.place", "pk": 10015, "fields": {"kind": 13, "lat": 48.30639, "lng": 14.28611, "text": [11195, 11196], "collection": []}}, {"model": "entities.place", "pk": 10265, "fields": {"kind": 12, "lat": 51.50853, "lng": -0.12574, "text": [11239, 11240], "collection": []}}, {"model": "entities.place", "pk": 10793, "fields": {"kind": 13, "lat": 46.55472, "lng": 15.64667, "text": [5193, 5219, 5221, 5223, 11266], "collection": []}}, {"model": "entities.place", "pk": 11238, "fields": {"kind": 9, "lat": 49.75565, "lng": 12.997, "text": [5409, 11234], "collection": []}}, {"model": "entities.place", "pk": 11556, "fields": {"kind": 9, "lat": 50.72063, "lng": 13.65723, "text": [5576, 11308], "collection": []}}, {"model": "entities.place", "pk": 11799, "fields": {"kind": 13, "lat": 48.13743, "lng": 11.57549, "text": [11197, 11198], "collection": []}}, {"model": "entities.place", "pk": 12211, "fields": {"kind": 11, "lat": 50.47379, "lng": 17.33437, "text": [5900, 11321], "collection": []}}, {"model": "entities.place", "pk": 12758, "fields": {"kind": 11, "lat": 43.70313, "lng": 7.26608, "text": [6173, 11205], "collection": []}}, {"model": "entities.place", "pk": 13253, "fields": {"kind": 9, "lat": 47.68501, "lng": 16.59049, "text": [6431, 11344], "collection": []}}, {"model": "entities.place", "pk": 13382, "fields": {"kind": 13, "lat": 49.59552, "lng": 17.25175, "text": [6491, 6493, 6495, 6497, 11228], "collection": []}}, {"model": "entities.place", "pk": 13714, "fields": {"kind": 12, "lat": 48.85341, "lng": 2.3488, "text": [11291, 11292], "collection": []}}, {"model": "entities.place", "pk": 13987, "fields": {"kind": 10, "lat": 47.91232, "lng": 12.81512, "text": [11280, 11281], "collection": []}}, {"model": "entities.place", "pk": 14608, "fields": {"kind": 12, "lat": 50.08804, "lng": 14.42076, "text": [7122, 7124, 7126, 7128, 7130, 11200], "collection": []}}, {"model": "entities.place", "pk": 16242, "fields": {"kind": 9, "lat": 48.25216, "lng": 17.21539, "text": [7951, 11214], "collection": []}}, {"model": "entities.place", "pk": 16310, "fields": {"kind": 5, "lat": 46.586, "lng": 11.08571, "text": [7994, 11327], "collection": []}}, {"model": "entities.place", "pk": 16594, "fields": {"kind": 9, "lat": 49.96122, "lng": 16.76576, "text": [8138, 11293], "collection": []}}, {"model": "entities.place", "pk": 16864, "fields": {"kind": 5, "lat": 46.75833, "lng": 15.20833, "text": [11286, 11287], "collection": []}}, {"model": "entities.place", "pk": 18374, "fields": {"kind": 9, "lat": 50.2421, "lng": 19.30725, "text": [9008, 11241], "collection": []}}, {"model": "entities.place", "pk": 18400, "fields": {"kind": 13, "lat": 46.253, "lng": 20.14824, "text": [9021, 11351], "collection": []}}, {"model": "entities.place", "pk": 19215, "fields": {"kind": 13, "lat": 46.06787, "lng": 11.12108, "text": [9433, 9434, 9461, 9463, 11348], "collection": []}}, {"model": "entities.place", "pk": 19599, "fields": {"kind": 9, "lat": 48.20735, "lng": 18.06581, "text": [9646, 11285], "collection": []}}, {"model": "entities.place", "pk": 20549, "fields": {"kind": 12, "lat": 52.22977, "lng": 21.01178, "text": [10129, 10131, 10133, 10135, 10138, 11345], "collection": []}}, {"model": "entities.place", "pk": 20659, "fields": {"kind": 5, "lat": 44.8975, "lng": 21.41722, "text": [10186, 11255], "collection": []}}, {"model": "entities.place", "pk": 20872, "fields": {"kind": 5, "lat": 47.11547, "lng": 13.13467, "text": [10300, 11339], "collection": []}}, {"model": "entities.place", "pk": 20988, "fields": {"kind": 9, "lat": 51.02308, "lng": -0.50604, "text": [11304, 11305], "collection": []}}, {"model": "entities.place", "pk": 21818, "fields": {"kind": 9, "lat": 49.75594, "lng": 16.46829, "text": [10788, 11215], "collection": []}}, {"model": "entities.place", "pk": 22216, "fields": {"kind": 9, "lat": 49.01898, "lng": 15.56994, "text": [11206, 11207], "collection": []}}, {"model": "entities.place", "pk": 22259, "fields": {"kind": 9, "lat": 46.83333, "lng": 12.85, "text": [11261, 11262], "collection": []}}, {"model": "entities.place", "pk": 22322, "fields": {"kind": 9, "lat": 47.97234, "lng": 14.26472, "text": [11237, 11238], "collection": []}}, {"model": "entities.place", "pk": 22354, "fields": {"kind": 11, "lat": 47.34999, "lng": 7.90329, "text": [11253, 11254], "collection": []}}, {"model": "entities.place", "pk": 22475, "fields": {"kind": 5, "lat": 49.8414, "lng": 7.86713, "text": [11311, 11312], "collection": []}}, {"model": "entities.place", "pk": 22494, "fields": {"kind": 9, "lat": 48.47121, "lng": 14.54023, "text": [11317, 11318], "collection": []}}, {"model": "entities.place", "pk": 22526, "fields": {"kind": 13, "lat": 46.80237, "lng": 7.15128, "text": [11334, 11335], "collection": []}}, {"model": "entities.place", "pk": 22545, "fields": {"kind": 11, "lat": 45.37333, "lng": 21.70917, "text": [11342, 11343], "collection": []}}, {"model": "entities.place", "pk": 22558, "fields": {"kind": 9, "lat": 49.46656, "lng": 19.9825, "text": [11346, 11347], "collection": []}}, {"model": "entities.place", "pk": 22570, "fields": {"kind": 5, "lat": 46.07867, "lng": 10.99735, "text": [11349, 11350], "collection": []}}, {"model": "entities.place", "pk": 93025, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93035, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93051, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93060, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93075, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93379, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93397, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93410, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93449, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93562, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93610, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93658, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93715, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93749, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93804, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93855, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93879, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93934, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93937, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24869, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24898, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24899, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24900, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24908, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24909, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24910, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24911, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25012, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25035, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25059, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25060, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25143, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25186, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25187, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25188, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25189, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25199, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25200, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25212, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25213, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25395, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25396, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25397, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25398, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25401, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25402, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25405, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25412, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25413, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25414, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25415, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25416, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25417, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25418, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25419, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25420, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25421, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25589, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25626, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25627, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25628, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25629, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25630, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25631, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25632, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25633, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25634, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25635, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25767, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25768, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25769, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25770, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25771, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25772, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25773, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94102, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94103, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94104, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94105, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94120, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94121, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94122, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94123, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94124, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94125, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94126, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94127, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94128, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94129, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94131, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94132, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94133, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94134, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94135, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94136, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94137, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94138, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94139, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94140, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94141, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94247, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94248, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94249, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94250, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94251, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94307, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94308, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94309, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94310, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94311, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94312, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94313, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94314, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94315, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94323, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94324, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94351, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94352, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94353, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94354, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94355, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94356, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94357, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94358, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94359, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94360, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94361, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94362, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94433, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94434, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94435, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94436, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94437, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94438, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94439, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94440, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94441, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94442, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94822, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94823, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94824, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94825, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94826, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94827, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94828, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94829, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94830, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94831, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94885, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94886, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94887, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94888, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94889, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94890, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94891, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94892, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94894, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94895, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94896, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94897, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94898, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94899, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94900, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94901, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94902, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94903, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94904, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95024, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95025, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95026, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95027, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95028, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95029, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95030, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95043, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95044, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95045, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95046, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95047, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95048, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95049, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95050, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95051, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95052, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95053, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95054, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95123, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95124, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95125, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95126, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95127, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95128, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95129, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95130, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95131, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95156, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95157, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95158, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95159, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95160, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95161, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95162, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95163, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95164, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95397, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95398, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95399, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95400, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95401, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95402, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95403, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95404, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95405, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95406, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95407, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95582, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95583, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95584, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95596, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95597, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95598, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95599, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95600, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95601, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95602, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95603, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95604, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95847, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95848, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95867, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95868, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95869, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95870, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95871, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95872, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95873, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95874, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95875, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95876, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95929, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95930, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95931, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95932, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95949, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95950, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95951, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95952, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95953, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95954, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95955, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95956, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95957, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96143, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96144, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96145, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96146, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96208, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96209, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96210, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96211, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96221, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96222, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96223, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96224, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96225, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96226, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96458, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96459, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96460, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96461, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96462, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96463, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96464, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96465, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96466, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96467, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96620, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96621, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96622, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96623, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96728, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96729, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96730, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96731, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96732, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96733, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96734, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96735, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96736, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96737, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96738, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96740, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96741, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96742, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96743, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96744, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96745, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96746, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96747, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96748, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96749, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96750, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96758, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96759, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96813, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96814, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96815, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96816, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96817, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96858, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96859, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96860, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96861, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96862, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96863, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96864, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96865, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96947, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96948, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96949, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96950, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96951, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96952, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96953, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96954, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96955, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96956, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97430, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97529, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97530, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97531, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97532, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97533, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97534, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97578, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97592, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97593, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97617, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97623, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97657, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97707, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97723, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97753, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97790, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97834, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97849, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97884, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97888, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97896, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97933, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97943, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97944, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97945, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97976, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97977, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97986, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98006, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98024, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98183, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98184, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98185, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98237, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98296, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98297, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98298, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98299, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98300, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98301, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98348, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98551, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98569, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98570, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98579, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98580, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98581, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98582, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98583, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98584, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98585, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98586, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98587, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98588, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98604, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98605, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98606, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98696, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98697, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98714, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98722, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98723, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98724, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98725, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98726, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98727, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98728, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98729, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98730, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98731, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98732, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98733, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98734, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98735, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98736, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98737, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98886, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98891, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98892, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98922, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98923, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98924, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98925, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98980, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98990, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98991, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98992, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98993, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98994, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98995, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98996, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98997, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98998, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98999, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99000, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99001, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99002, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99003, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99004, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99005, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99006, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99007, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99008, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99009, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99075, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99092, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99093, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99094, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99095, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99096, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99097, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99098, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99099, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99100, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99101, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99102, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99103, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99104, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99105, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99106, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99107, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99108, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99109, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99110, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99156, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99336, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99337, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99352, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99353, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99354, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99355, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99356, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99357, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99358, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99369, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99370, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99371, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99372, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99373, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99374, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99375, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99376, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99377, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99378, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99416, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99417, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99418, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99419, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99420, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99421, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99422, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99423, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99744, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99841, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99842, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99843, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99844, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99845, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99846, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99847, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99848, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99849, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99850, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "vocabularies.vocabnames", "pk": 1, "fields": {"name": "ProfessionType"}}, {"model": "vocabularies.vocabnames", "pk": 2, "fields": {"name": "PersonPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 5, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 6, "fields": {"name": "PersonPersonRelation"}}, {"model": "vocabularies.vocabnames", "pk": 7, "fields": {"name": "TextType"}}, {"model": "vocabularies.vocabnames", "pk": 8, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 9, "fields": {"name": "InstitutionType"}}, {"model": "vocabularies.vocabnames", "pk": 10, "fields": {"name": "PlaceType"}}, {"model": "vocabularies.vocabnames", "pk": 11, "fields": {"name": "CollectionType"}}, {"model": "relations.personperson", "pk": 92840, "fields": {"relation_type": 5608, "related_personA": 92412, "related_personB": 92603, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92930, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 88902, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92931, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 27245, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92932, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 88219, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92933, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 62757, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92934, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 56248, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92935, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 46414, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46415, "fields": {"relation_type": 595, "related_person": 46414, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46416, "fields": {"relation_type": 596, "related_person": 46414, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 56249, "fields": {"relation_type": 595, "related_person": 56248, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 88904, "fields": {"relation_type": 596, "related_person": 88902, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92415, "fields": {"relation_type": 595, "related_person": 92412, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92604, "fields": {"relation_type": 595, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92605, "fields": {"relation_type": 596, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93004, "fields": {"relation_type": 595, "related_person": 93003, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93005, "fields": {"relation_type": 596, "related_person": 93003, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93010, "fields": {"relation_type": 595, "related_person": 93009, "related_place": 18374, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93011, "fields": {"relation_type": 596, "related_person": 93009, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93013, "fields": {"relation_type": 595, "related_person": 93012, "related_place": 5294, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93014, "fields": {"relation_type": 596, "related_person": 93012, "related_place": 2489, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93016, "fields": {"relation_type": 595, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93017, "fields": {"relation_type": 596, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93019, "fields": {"relation_type": 595, "related_person": 93018, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93020, "fields": {"relation_type": 596, "related_person": 93018, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93022, "fields": {"relation_type": 595, "related_person": 93021, "related_place": 16242, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93023, "fields": {"relation_type": 596, "related_person": 93021, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93026, "fields": {"relation_type": 595, "related_person": 93024, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93027, "fields": {"relation_type": 596, "related_person": 93024, "related_place": 93025, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93029, "fields": {"relation_type": 595, "related_person": 93028, "related_place": 7986, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93030, "fields": {"relation_type": 596, "related_person": 93028, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93032, "fields": {"relation_type": 595, "related_person": 93031, "related_place": 6324, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93033, "fields": {"relation_type": 596, "related_person": 93031, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93036, "fields": {"relation_type": 595, "related_person": 93034, "related_place": 93035, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93037, "fields": {"relation_type": 596, "related_person": 93034, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93045, "fields": {"relation_type": 595, "related_person": 93044, "related_place": 2161, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93046, "fields": {"relation_type": 596, "related_person": 93044, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93048, "fields": {"relation_type": 595, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93049, "fields": {"relation_type": 596, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93054, "fields": {"relation_type": 595, "related_person": 93050, "related_place": 93051, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93055, "fields": {"relation_type": 596, "related_person": 93050, "related_place": 2197, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93057, "fields": {"relation_type": 595, "related_person": 93056, "related_place": 22216, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93058, "fields": {"relation_type": 596, "related_person": 93056, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93063, "fields": {"relation_type": 595, "related_person": 93059, "related_place": 93060, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93064, "fields": {"relation_type": 596, "related_person": 93059, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93066, "fields": {"relation_type": 595, "related_person": 93065, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93067, "fields": {"relation_type": 596, "related_person": 93065, "related_place": 1701, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93069, "fields": {"relation_type": 595, "related_person": 93068, "related_place": 1718, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93070, "fields": {"relation_type": 596, "related_person": 93068, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93072, "fields": {"relation_type": 595, "related_person": 93071, "related_place": 22259, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93073, "fields": {"relation_type": 596, "related_person": 93071, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93078, "fields": {"relation_type": 595, "related_person": 93074, "related_place": 93075, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93079, "fields": {"relation_type": 596, "related_person": 93074, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93137, "fields": {"relation_type": 595, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93138, "fields": {"relation_type": 596, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93329, "fields": {"relation_type": 595, "related_person": 93328, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93330, "fields": {"relation_type": 596, "related_person": 93328, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93338, "fields": {"relation_type": 595, "related_person": 93337, "related_place": 4269, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93339, "fields": {"relation_type": 596, "related_person": 93337, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93353, "fields": {"relation_type": 595, "related_person": 93352, "related_place": 5749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93354, "fields": {"relation_type": 596, "related_person": 93352, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93367, "fields": {"relation_type": 595, "related_person": 93366, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93368, "fields": {"relation_type": 596, "related_person": 93366, "related_place": 26, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93370, "fields": {"relation_type": 595, "related_person": 93369, "related_place": 13382, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93371, "fields": {"relation_type": 596, "related_person": 93369, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93382, "fields": {"relation_type": 595, "related_person": 93378, "related_place": 93379, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93383, "fields": {"relation_type": 596, "related_person": 93378, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93388, "fields": {"relation_type": 595, "related_person": 93387, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93389, "fields": {"relation_type": 596, "related_person": 93387, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93394, "fields": {"relation_type": 595, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93395, "fields": {"relation_type": 596, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93398, "fields": {"relation_type": 595, "related_person": 93396, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93399, "fields": {"relation_type": 596, "related_person": 93396, "related_place": 93397, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93401, "fields": {"relation_type": 595, "related_person": 93400, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93402, "fields": {"relation_type": 596, "related_person": 93400, "related_place": 12758, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93413, "fields": {"relation_type": 595, "related_person": 93409, "related_place": 93410, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93414, "fields": {"relation_type": 596, "related_person": 93409, "related_place": 133, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93416, "fields": {"relation_type": 595, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93417, "fields": {"relation_type": 596, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93419, "fields": {"relation_type": 595, "related_person": 93418, "related_place": 22354, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93420, "fields": {"relation_type": 596, "related_person": 93418, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93443, "fields": {"relation_type": 595, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93444, "fields": {"relation_type": 596, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93446, "fields": {"relation_type": 595, "related_person": 93445, "related_place": 2006, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93447, "fields": {"relation_type": 596, "related_person": 93445, "related_place": 7622, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93452, "fields": {"relation_type": 595, "related_person": 93448, "related_place": 93449, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93453, "fields": {"relation_type": 596, "related_person": 93448, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93470, "fields": {"relation_type": 595, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93471, "fields": {"relation_type": 596, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93482, "fields": {"relation_type": 595, "related_person": 93481, "related_place": 2281, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93483, "fields": {"relation_type": 596, "related_person": 93481, "related_place": 831, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93485, "fields": {"relation_type": 595, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93486, "fields": {"relation_type": 596, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93488, "fields": {"relation_type": 595, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93489, "fields": {"relation_type": 596, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93511, "fields": {"relation_type": 595, "related_person": 93510, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93512, "fields": {"relation_type": 596, "related_person": 93510, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93514, "fields": {"relation_type": 595, "related_person": 93513, "related_place": 22322, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93515, "fields": {"relation_type": 596, "related_person": 93513, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93517, "fields": {"relation_type": 595, "related_person": 93516, "related_place": 20659, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93518, "fields": {"relation_type": 596, "related_person": 93516, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93541, "fields": {"relation_type": 595, "related_person": 93540, "related_place": 1424, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93542, "fields": {"relation_type": 596, "related_person": 93540, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93547, "fields": {"relation_type": 595, "related_person": 93546, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93548, "fields": {"relation_type": 596, "related_person": 93546, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93565, "fields": {"relation_type": 595, "related_person": 93561, "related_place": 93562, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93566, "fields": {"relation_type": 596, "related_person": 93561, "related_place": 10793, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93574, "fields": {"relation_type": 595, "related_person": 93573, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93575, "fields": {"relation_type": 596, "related_person": 93573, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93589, "fields": {"relation_type": 595, "related_person": 93588, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93590, "fields": {"relation_type": 596, "related_person": 93588, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93601, "fields": {"relation_type": 595, "related_person": 93600, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93602, "fields": {"relation_type": 596, "related_person": 93600, "related_place": 3105, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93613, "fields": {"relation_type": 595, "related_person": 93609, "related_place": 13987, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93614, "fields": {"relation_type": 596, "related_person": 93609, "related_place": 93610, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93616, "fields": {"relation_type": 595, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93617, "fields": {"relation_type": 596, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93640, "fields": {"relation_type": 595, "related_person": 93639, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93641, "fields": {"relation_type": 596, "related_person": 93639, "related_place": 2170, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93643, "fields": {"relation_type": 595, "related_person": 93642, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93644, "fields": {"relation_type": 596, "related_person": 93642, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93646, "fields": {"relation_type": 595, "related_person": 93645, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93647, "fields": {"relation_type": 596, "related_person": 93645, "related_place": 6947, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93652, "fields": {"relation_type": 595, "related_person": 93651, "related_place": 21818, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93653, "fields": {"relation_type": 596, "related_person": 93651, "related_place": 2854, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93655, "fields": {"relation_type": 595, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93656, "fields": {"relation_type": 596, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93661, "fields": {"relation_type": 595, "related_person": 93657, "related_place": 93658, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93662, "fields": {"relation_type": 596, "related_person": 93657, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93664, "fields": {"relation_type": 595, "related_person": 93663, "related_place": 22545, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93665, "fields": {"relation_type": 596, "related_person": 93663, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93679, "fields": {"relation_type": 595, "related_person": 93678, "related_place": 1454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93680, "fields": {"relation_type": 596, "related_person": 93678, "related_place": 20872, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93685, "fields": {"relation_type": 595, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93686, "fields": {"relation_type": 596, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93703, "fields": {"relation_type": 595, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93704, "fields": {"relation_type": 596, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93706, "fields": {"relation_type": 595, "related_person": 93705, "related_place": 7454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93707, "fields": {"relation_type": 596, "related_person": 93705, "related_place": 22526, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93718, "fields": {"relation_type": 595, "related_person": 93714, "related_place": 93715, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93719, "fields": {"relation_type": 596, "related_person": 93714, "related_place": 9475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93752, "fields": {"relation_type": 595, "related_person": 93748, "related_place": 93749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93753, "fields": {"relation_type": 596, "related_person": 93748, "related_place": 3162, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93780, "fields": {"relation_type": 595, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93781, "fields": {"relation_type": 596, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93786, "fields": {"relation_type": 595, "related_person": 93785, "related_place": 16310, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93787, "fields": {"relation_type": 596, "related_person": 93785, "related_place": 5691, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93792, "fields": {"relation_type": 595, "related_person": 93791, "related_place": 9287, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93793, "fields": {"relation_type": 596, "related_person": 93791, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93801, "fields": {"relation_type": 595, "related_person": 93800, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93802, "fields": {"relation_type": 596, "related_person": 93800, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93807, "fields": {"relation_type": 595, "related_person": 93803, "related_place": 93804, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93808, "fields": {"relation_type": 596, "related_person": 93803, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93810, "fields": {"relation_type": 595, "related_person": 93809, "related_place": 22494, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93811, "fields": {"relation_type": 596, "related_person": 93809, "related_place": 4877, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93816, "fields": {"relation_type": 595, "related_person": 93815, "related_place": 12211, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93817, "fields": {"relation_type": 596, "related_person": 93815, "related_place": 8482, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93819, "fields": {"relation_type": 595, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93820, "fields": {"relation_type": 596, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93837, "fields": {"relation_type": 595, "related_person": 93836, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93838, "fields": {"relation_type": 596, "related_person": 93836, "related_place": 22475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93840, "fields": {"relation_type": 595, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93841, "fields": {"relation_type": 596, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93858, "fields": {"relation_type": 595, "related_person": 93854, "related_place": 93855, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93859, "fields": {"relation_type": 596, "related_person": 93854, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93864, "fields": {"relation_type": 595, "related_person": 93863, "related_place": 11556, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93865, "fields": {"relation_type": 596, "related_person": 93863, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93867, "fields": {"relation_type": 595, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93868, "fields": {"relation_type": 596, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93880, "fields": {"relation_type": 595, "related_person": 93878, "related_place": 93879, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93881, "fields": {"relation_type": 596, "related_person": 93878, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93892, "fields": {"relation_type": 595, "related_person": 93891, "related_place": 8798, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93893, "fields": {"relation_type": 596, "related_person": 93891, "related_place": 5478, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93895, "fields": {"relation_type": 595, "related_person": 93894, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93896, "fields": {"relation_type": 596, "related_person": 93894, "related_place": 20988, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93901, "fields": {"relation_type": 595, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93902, "fields": {"relation_type": 596, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93904, "fields": {"relation_type": 595, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93905, "fields": {"relation_type": 596, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93910, "fields": {"relation_type": 595, "related_person": 93909, "related_place": 4096, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93911, "fields": {"relation_type": 596, "related_person": 93909, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93922, "fields": {"relation_type": 595, "related_person": 93921, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93923, "fields": {"relation_type": 596, "related_person": 93921, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93938, "fields": {"relation_type": 595, "related_person": 93933, "related_place": 93934, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93939, "fields": {"relation_type": 596, "related_person": 93933, "related_place": 93937, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93941, "fields": {"relation_type": 595, "related_person": 93940, "related_place": 16594, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93942, "fields": {"relation_type": 596, "related_person": 93940, "related_place": 6004, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93947, "fields": {"relation_type": 595, "related_person": 93946, "related_place": 5308, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93948, "fields": {"relation_type": 596, "related_person": 93946, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93956, "fields": {"relation_type": 595, "related_person": 93955, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93957, "fields": {"relation_type": 596, "related_person": 93955, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93959, "fields": {"relation_type": 595, "related_person": 93958, "related_place": 9455, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93960, "fields": {"relation_type": 596, "related_person": 93958, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93962, "fields": {"relation_type": 595, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93963, "fields": {"relation_type": 596, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93965, "fields": {"relation_type": 595, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93966, "fields": {"relation_type": 596, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93968, "fields": {"relation_type": 595, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93969, "fields": {"relation_type": 596, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93971, "fields": {"relation_type": 595, "related_person": 93970, "related_place": 19599, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93972, "fields": {"relation_type": 596, "related_person": 93970, "related_place": 16864, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93989, "fields": {"relation_type": 595, "related_person": 93988, "related_place": 18400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93990, "fields": {"relation_type": 596, "related_person": 93988, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93992, "fields": {"relation_type": 595, "related_person": 93991, "related_place": 19215, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93993, "fields": {"relation_type": 596, "related_person": 93991, "related_place": 22570, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94004, "fields": {"relation_type": 595, "related_person": 94003, "related_place": 13253, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94005, "fields": {"relation_type": 596, "related_person": 94003, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94007, "fields": {"relation_type": 595, "related_person": 94006, "related_place": 22558, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94008, "fields": {"relation_type": 596, "related_person": 94006, "related_place": 20549, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94010, "fields": {"relation_type": 595, "related_person": 94009, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94011, "fields": {"relation_type": 596, "related_person": 94009, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94019, "fields": {"relation_type": 595, "related_person": 94018, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94020, "fields": {"relation_type": 596, "related_person": 94018, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 98116, "fields": {"relation_type": 595, "related_person": null, "related_place": null, "text": [], "collection": []}}, {"model": "relations.personinstitution", "pk": 99591, "fields": {"relation_type": null, "related_person": null, "related_institution": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 26, "fields": {"name": "Opatija", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [12, 14, 11225], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 133, "fields": {"name": "Zagreb", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [59, 11275], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 183, "fields": {"name": "Wien", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [8304, 11203], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 327, "fields": {"name": "Br\u00fcnn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1064, 1090, 1092, 1094, 1096, 3300, 4453, 6308, 6417, 11259], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 384, "fields": {"name": "Dlouh\u00e1 Ves", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [173, 8727, 11284], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 400, "fields": {"name": "Budapest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [181, 11223], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 831, "fields": {"name": "Bukarest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11242, 11243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 926, "fields": {"name": "Baden", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11313, 11314], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1390, "fields": {"name": "Berlin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11226, 11227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1424, "fields": {"name": "Liberec", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [654, 5083, 5085, 6119, 6324, 6372, 7681, 7683, 7776, 8211, 11258], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1454, "fields": {"name": "Bezau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11337, 11338], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1701, "fields": {"name": "Bodensdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [784, 11271], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1718, "fields": {"name": "Heilbronn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11269, 11270], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2006, "fields": {"name": "Boto\u015fani", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [928, 11251], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2072, "fields": {"name": "Pressburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [962, 964, 7171, 7173, 11220], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2085, "fields": {"name": "Braunau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [969, 971, 11272], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2161, "fields": {"name": "Breslau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1011, 1013, 10485, 11199], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2170, "fields": {"name": "Brixen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1017, 1054, 1056, 11279], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2197, "fields": {"name": "K\u00f6niggr\u00e4tz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1029, 4052, 4438, 6016, 11204], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2281, "fields": {"name": "Brody", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11244, 11245], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2489, "fields": {"name": "Buenos Aires", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11256, 11257], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2602, "fields": {"name": "Kaltern an der Weinstrasse", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1236, 3663, 3665, 9705, 11252], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2854, "fields": {"name": "Tschernowitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7828, 11224], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3105, "fields": {"name": "Teschen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1467, 9235, 9239, 11260], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3162, "fields": {"name": "Klausenburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3930, 3932, 11330], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4096, "fields": {"name": "D\u00fcren", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11299, 11300], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4269, "fields": {"name": "\u00dadlice", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2030, 11231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4767, "fields": {"name": "Graz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11210, 11211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4877, "fields": {"name": "Freistadt", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11319, 11320], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5294, "fields": {"name": "Ghidfal\u0103u", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2492, 11246], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5308, "fields": {"name": "Marienheide", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11289, 11290], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5478, "fields": {"name": "G\u00f6rz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2571, 2603, 2605, 11303], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5691, "fields": {"name": "Meran", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2675, 5101, 5344, 5346, 5348, 5350, 5352, 5353, 6350, 6352, 9735, 11326], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5749, "fields": {"name": "Grieskirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11229, 11230], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6004, "fields": {"name": "Grossullersdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2825, 2827, 11294], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6324, "fields": {"name": "Hannover", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11221, 11222], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6700, "fields": {"name": "Innsbruck", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11235, 11236], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6947, "fields": {"name": "Hrastje-Mota", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3253, 3255, 11278], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7454, "fields": {"name": "Jaworzno", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3504, 11336], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7622, "fields": {"name": "Leoben", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11249, 11250], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7986, "fields": {"name": "Cassel", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11218, 11219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8482, "fields": {"name": "Klosterneuburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11322, 11323], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8798, "fields": {"name": "Konstanz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11301, 11302], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9287, "fields": {"name": "Kufstein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11324, 11325], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9455, "fields": {"name": "Lachovice", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4512, 11288], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9475, "fields": {"name": "Ljubljana", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4522, 11331], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9735, "fields": {"name": "Lemberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4642, 4644, 5041, 5043, 5045, 10711, 11263], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10015, "fields": {"name": "Linz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11195, 11196], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10265, "fields": {"name": "London", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11239, 11240], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10793, "fields": {"name": "Marburg an der Drau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5193, 5219, 5221, 5223, 11266], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11238, "fields": {"name": "Mies", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5409, 11234], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11556, "fields": {"name": "Moldava", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5576, 11308], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11799, "fields": {"name": "M\u00fcnchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11197, 11198], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12211, "fields": {"name": "Nysa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5900, 11321], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12758, "fields": {"name": "Nizza", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6173, 11205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13253, "fields": {"name": "Sopron", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6431, 11344], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13382, "fields": {"name": "Olm\u00fctz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6491, 6493, 6495, 6497, 11228], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13714, "fields": {"name": "Paris", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11291, 11292], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13987, "fields": {"name": "Petting", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11280, 11281], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 14608, "fields": {"name": "Prag", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7122, 7124, 7126, 7128, 7130, 11200], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16242, "fields": {"name": "Sv\u00e4t\u00fd Jur", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7951, 11214], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16310, "fields": {"name": "Sankt Pankraz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7994, 11327], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16594, "fields": {"name": "\u0160t\u00edty", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [8138, 11293], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16864, "fields": {"name": "Schwanberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11286, 11287], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18374, "fields": {"name": "Szczakowa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9008, 11241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18400, "fields": {"name": "Szegedin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9021, 11351], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19215, "fields": {"name": "Trient", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9433, 9434, 9461, 9463, 11348], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19599, "fields": {"name": "Mojm\u00edrovce", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9646, 11285], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20549, "fields": {"name": "Warschau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10129, 10131, 10133, 10135, 10138, 11345], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20659, "fields": {"name": "Wei\u00dfkirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10186, 11255], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20872, "fields": {"name": "Bad Gastein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10300, 11339], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20988, "fields": {"name": "Wisborough Green", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11304, 11305], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 21818, "fields": {"name": "Zwittau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10788, 11215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22216, "fields": {"name": "Jamnitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11206, 11207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22259, "fields": {"name": "Stronach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11261, 11262], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22322, "fields": {"name": "Gr\u00fcnburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11237, 11238], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22354, "fields": {"name": "Olten", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11253, 11254], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22475, "fields": {"name": "Bad Kreuznach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11311, 11312], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22494, "fields": {"name": "Lasberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11317, 11318], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22526, "fields": {"name": "Freiburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11334, 11335], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22545, "fields": {"name": "Boc\u015fa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11342, 11343], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22558, "fields": {"name": "Lud\u017amierz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11346, 11347], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22570, "fields": {"name": "Vezzano", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11349, 11350], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24156, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24696, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24697, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24698, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24699, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24835, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24860, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24869, "fields": {"name": "Kainz, Joseph: Der junge Kainz. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24898, "fields": {"name": "Neubauer, Carl T.: Anleitung zur qualitativen und quantitativen Analyse des Harns zum Geb*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24899, "fields": {"name": "Huppert, Hugo: Anleitung zur qualitativen und quantitativen Analyse des Harns zum Gebrauc*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24900, "fields": {"name": "Zoochemie. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24908, "fields": {"name": "Otto Heubners Lebenschronik. - 1927.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24909, "fields": {"name": "Die Luntische Erkrankung der Hirnarterien. - 1874.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24910, "fields": {"name": "Gaffky, Georg T.: U\u0308ber die Gefahren der Serumkrankheit bei der Schutzimpfung ... - 1913.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24911, "fields": {"name": "Die experimentelle Diphterie. - 1883.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25012, "fields": {"name": "Nachlass Eduard von Charlemont. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25035, "fields": {"name": "In memoriam. - 1873", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25059, "fields": {"name": "Lehrbuch der allgemeinen Metaphysik und der Metaphysik ... - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25060, "fields": {"name": "Auszug des Wissenswu\u0308rdigsten aus der Geschichte der Philosophie. - 1836", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25143, "fields": {"name": "Antoni\u0301n Ma\u0301nes", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25186, "fields": {"name": "Rowntree, Benjamin S.: Poverty. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25187, "fields": {"name": "Rowntree, Benjamin S.: Comment diminuer la mise\u0300re. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25188, "fields": {"name": "Rowntree, Benjamin S.: How the labourer lives. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25189, "fields": {"name": "Rowntree, Benjamin S.: The human Needs of labour. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25199, "fields": {"name": "Swerts, Jan: In lauwe MV C XXX werdt ghepubliceert de ordonnantie op het onderhoudt van d*. - [ca. 1870]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25200, "fields": {"name": "Swerts, Jan: De schepene bezoeken een der drie groote schoolen ingerigt VI Decembri MII*. - [ca. 1870]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25212, "fields": {"name": "Kapp, Wolfgang: Die nationalen Kreise und der Reichskanzler. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25213, "fields": {"name": "Kapp, Wolfgang: Die nationalen Kreise und der Reichskanzler. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25395, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef von: Die ku\u0308nstlichen Scha\u0308delverbildungen im Allgemeinen und zwei *. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25396, "fields": {"name": "Lenhosse\u0300k, Jo\u0301zsef von: Das veno\u0308se Convolut der Beckenho\u0308hle beim Manne. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25397, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef: Die Ausgrabungen zu Szeged-O\u0308thalom in Ungarn, namentlich die in de*. - 1884", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25398, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef: A Szeged-o\u0308thalmi a\u0301sata\u0301sokro\u0301l, ku\u0308lo\u0308no\u0308sen az felfedezett o\u030bs-magyar*. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25401, "fields": {"name": "Der feinere Bau des Nervensystems im Lichte neuester Forschungen. - 1895", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25402, "fields": {"name": "Das Problem der geschlechtsbestimmenden Ursachen. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25405, "fields": {"name": "Ein @Anfa\u0308ngerstreich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25412, "fields": {"name": "Stein, Lorenz von: Verwaltungslehre und Verwaltungsrecht (Handbuch der Verwaltungslehre)*. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25413, "fields": {"name": "Stein, Lorenz von: Verwaltungslehre und Verwaltungsrecht. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25414, "fields": {"name": "Stein, Lorenz von: Handbuch der Verwaltungslehre und des Verwaltungsrechts mit Vergleic*. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25415, "fields": {"name": "Stein, Lorenz von: Lehrbuch der Volkswirthschaft. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25416, "fields": {"name": "Stein, Lorenz von: System der Statistik, der Populationistik und der Volkswirtschaftsle*. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25417, "fields": {"name": "Stein, Lorenz von: Die staatswissenschaftliche und die landwirthschaftliche Bildung. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25418, "fields": {"name": "Stein, Lorenz von: System der Staatswissenschaft", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25419, "fields": {"name": "Stein, Lorenz von: System der Statistik, der Populationistik und der Volkswirthschaftsl*. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25420, "fields": {"name": "Stein, Lorenz von: La question de Schleswig-Holstein. - 1848", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25421, "fields": {"name": "Stein, Lorenz von: Handbuch der Verwaltungslehre und des Verwaltungsrechts mit Vergleic*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25589, "fields": {"name": "Bilder aus der Ostmark. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25626, "fields": {"name": "Geschichte der Philosophie", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25627, "fields": {"name": "Vorlesungen u\u0308ber Metaphysik mit besonderer Beziehung auf Kant. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25628, "fields": {"name": "Grundzu\u0308ge der Lehre vom Urtheil. - 1876", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25629, "fields": {"name": "Das erste Problem der Ontologie. - 1863", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25630, "fields": {"name": "Die Grundprobleme der Logik. - 1895", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25631, "fields": {"name": "Grundlinien einer Theorie des Bewu\u00dftseins. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25632, "fields": {"name": "U\u0308ber das Scho\u0308ne. - 1887", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25633, "fields": {"name": "Ueber den Utilitarianismus. - 1883", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25634, "fields": {"name": "Allgemeine Logik", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25635, "fields": {"name": "Sinn und Erkenntnis. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25767, "fields": {"name": "La Reine Hortense en Italie, en France et en Angleterre ... - 1831", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25768, "fields": {"name": "Me\u0301moires", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25769, "fields": {"name": "[Romanzen]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25770, "fields": {"name": "Re\u0301cit de mon passage en France en 1831 et des causes qui ... - 1834", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25771, "fields": {"name": "Die Ko\u0308nigin Hortensia in Italien, Frankreich und England ... - 1834", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25772, "fields": {"name": "Napole\u0301on : Lettres de Napoleon a\u0300 Jose\u0301phine pendant la premie\u0300re ... - 1833", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25773, "fields": {"name": "Campan, Jeanne L.: Correspondance ine\u0301dite de Mme. Campan avec la reine Hortense. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 27245, "fields": {"name": "Thalberg", "review": false, "start_date": "1812-01-08", "end_date": "1871-04-27", "start_date_written": "8.1.1812", "end_date_written": "27.4.1871", "status": "", "source": 531, "references": null, "notes": null, "text": [12155, 12156], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46414, "fields": {"name": "Reicha", "review": false, "start_date": "1770-02-26", "end_date": "1836-05-28", "start_date_written": "26.2.1770", "end_date_written": "28.5.1836", "status": "", "source": 5804, "references": null, "notes": null, "text": [21722, 21723], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56248, "fields": {"name": "Moscheles", "review": false, "start_date": "1794-05-23", "end_date": "1870-03-10", "start_date_written": "23.5.1794", "end_date_written": "10.3.1870", "status": "", "source": 8543, "references": null, "notes": null, "text": [27186, 27187], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56249, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 62757, "fields": {"name": "Liszt", "review": false, "start_date": "1811-10-22", "end_date": "1886-07-31", "start_date_written": "22.10.1811", "end_date_written": "31.7.1886", "status": "", "source": 10332, "references": null, "notes": null, "text": [30762, 30763], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88219, "fields": {"name": "Blahetka", "review": false, "start_date": "1810-11-15", "end_date": "1885-01-01", "start_date_written": "15.11.1810", "end_date_written": "1.1.1885", "status": "", "source": 17415, "references": null, "notes": null, "text": [44908, 44909], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88902, "fields": {"name": "Beethoven", "review": false, "start_date": "1770-12-16", "end_date": "1827-03-26", "start_date_written": "16.12.1770", "end_date_written": "26.3.1827", "status": "", "source": 17608, "references": null, "notes": null, "text": [45290, 45291], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 91062, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92412, "fields": {"name": "B\u00e4uerle", "review": false, "start_date": "1817-12-11", "end_date": "1896-07-17", "start_date_written": "11.12.1817", "end_date_written": "17.7.1896", "status": "", "source": 17852, "references": null, "notes": null, "text": [47030, 47031], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92603, "fields": {"name": "Czerny", "review": false, "start_date": "1791-02-21", "end_date": "1857-07-15", "start_date_written": "21.2.1791", "end_date_written": "15.7.1857", "status": "", "source": 18525, "references": null, "notes": null, "text": [47126, 47127], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92604, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92605, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92930, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92931, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92932, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92933, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92934, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92935, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93003, "fields": {"name": "Bahr", "review": false, "start_date": "1863-07-19", "end_date": "1934-01-14", "start_date_written": "19.7.1863", "end_date_written": "14.1.1934", "status": "", "source": 102, "references": null, "notes": null, "text": [47200, 47201], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93009, "fields": {"name": "Czerny", "review": false, "start_date": "1863-03-25", "end_date": "1941-10-03", "start_date_written": "25.3.1863", "end_date_written": "3.10.1941", "status": "", "source": 114, "references": null, "notes": null, "text": [47204, 47205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93012, "fields": {"name": "Czetz", "review": false, "start_date": "1822-06-08", "end_date": "1904-09-06", "start_date_written": "8.6.1822", "end_date_written": "6.9.1904", "status": "", "source": 116, "references": null, "notes": null, "text": [47206, 47207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93013, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93014, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93015, "fields": {"name": "Czikann", "review": false, "start_date": "1789-07-10", "end_date": "1855-06-10", "start_date_written": "10.7.1789", "end_date_written": "10.6.1855", "status": "", "source": 117, "references": null, "notes": null, "text": [47208, 47209], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93016, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93017, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93018, "fields": {"name": "Clam-Gallas", "review": false, "start_date": "1805-03-11", "end_date": "1891-03-17", "start_date_written": "11.3.1805", "end_date_written": "17.3.1891", "status": "", "source": 108, "references": null, "notes": null, "text": [47210, 47211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93021, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1826-06-15", "end_date": "1887-06-05", "start_date_written": "15.6.1826", "end_date_written": "5.6.1887", "status": "", "source": 109, "references": null, "notes": null, "text": [47212, 47213], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93022, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93023, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93024, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1863-01-01", "end_date": "1932-03-07", "start_date_written": "1.1.1863", "end_date_written": "7.3.1932", "status": "", "source": 110, "references": null, "notes": null, "text": [47214, 47215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93025, "fields": {"name": "Clam (Grein)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93026, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93027, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93028, "fields": {"name": "Claus", "review": false, "start_date": "1835-01-02", "end_date": "1899-01-18", "start_date_written": "2.1.1835", "end_date_written": "18.1.1899", "status": "", "source": 111, "references": null, "notes": null, "text": [47216, 47217], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93029, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93030, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93031, "fields": {"name": "Conze", "review": false, "start_date": "1831-12-10", "end_date": "1914-07-19", "start_date_written": "10.12.1831", "end_date_written": "19.7.1914", "status": "", "source": 112, "references": null, "notes": null, "text": [47218, 47219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93032, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93033, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93034, "fields": {"name": "Costenoble", "review": false, "start_date": "1769-12-25", "end_date": "1837-08-28", "start_date_written": "25.12.1769", "end_date_written": "28.8.1837", "status": "", "source": 113, "references": null, "notes": null, "text": [47220, 47221], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93035, "fields": {"name": "Herford, Westfalen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93036, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93037, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93044, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1846-03-21", "end_date": "1914-10-16", "start_date_written": "21.3.1846", "end_date_written": "16.10.1914", "status": "", "source": 103, "references": null, "notes": null, "text": [47226, 47227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93045, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93046, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93047, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1834-11-29", "end_date": "1902-11-24", "start_date_written": "29.11.1834", "end_date_written": "24.11.1902", "status": "", "source": 104, "references": null, "notes": null, "text": [47228, 47229], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93048, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93049, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93050, "fields": {"name": "\u010cerven\u00fd", "review": false, "start_date": "1819-09-27", "end_date": "1896-01-19", "start_date_written": "27.9.1819", "end_date_written": "19.1.1896", "status": "", "source": 105, "references": null, "notes": null, "text": [47230, 47231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93051, "fields": {"name": "Praha-Dube\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93054, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93055, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93056, "fields": {"name": "Charlemont", "review": false, "start_date": "1850-03-18", "end_date": "1939-03-18", "start_date_written": "18.3.1850", "end_date_written": "18.3.1939", "status": "", "source": 106, "references": null, "notes": null, "text": [47232, 47233], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93057, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93058, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93059, "fields": {"name": "Chlumczansk\u00fd", "review": false, "start_date": "1749-11-15", "end_date": "1830-06-14", "start_date_written": "15.11.1749", "end_date_written": "14.6.1830", "status": "", "source": 107, "references": null, "notes": null, "text": [47234, 47235], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93060, "fields": {"name": "Ho\u0161tice, kr. Jiho\u010desk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93063, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93064, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93065, "fields": {"name": "Dumba", "review": false, "start_date": "1856-06-17", "end_date": "1947-01-06", "start_date_written": "17.6.1856", "end_date_written": "6.1.1947", "status": "", "source": 121, "references": null, "notes": null, "text": [47236, 47237], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93066, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93067, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93068, "fields": {"name": "Doderer", "review": false, "start_date": "1825-01-02", "end_date": "1900-05-13", "start_date_written": "2.1.1825", "end_date_written": "13.5.1900", "status": "", "source": 120, "references": null, "notes": null, "text": [47238, 47239], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93069, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93070, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93071, "fields": {"name": "Defregger", "review": false, "start_date": "1835-04-30", "end_date": "1921-01-02", "start_date_written": "30.4.1835", "end_date_written": "2.1.1921", "status": "", "source": 118, "references": null, "notes": null, "text": [47240, 47241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93072, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93073, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93074, "fields": {"name": "Dengel", "review": false, "start_date": "1872-06-22", "end_date": "1947-09-09", "start_date_written": "22.6.1872", "end_date_written": "9.9.1947", "status": "", "source": 119, "references": null, "notes": null, "text": [47242, 47243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93075, "fields": {"name": "Elbigenalp-Untergiblen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93078, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93079, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93136, "fields": {"name": "Holovsky", "review": false, "start_date": "1917-04-29", "end_date": "1933-07-03", "start_date_written": "29.4.1917", "end_date_written": "3.7.1933", "status": "", "source": 122, "references": null, "notes": null, "text": [47276, 47277], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93137, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93138, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93328, "fields": {"name": "Lorenz", "review": false, "start_date": "1859-04-13", "end_date": "1945-03-25", "start_date_written": "13.4.1859", "end_date_written": "25.3.1945", "status": "", "source": 134, "references": null, "notes": null, "text": [47384, 47385], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93329, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93330, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93337, "fields": {"name": "L\u00f6wy", "review": false, "start_date": "1851-09-14", "end_date": "1905-12-27", "start_date_written": "14.9.1851", "end_date_written": "27.12.1905", "status": "", "source": 133, "references": null, "notes": null, "text": [47388, 47389], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93338, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93339, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93352, "fields": {"name": "Lobmeyr", "review": false, "start_date": "1792-03-17", "end_date": "1855-05-08", "start_date_written": "17.3.1792", "end_date_written": "8.5.1855", "status": "", "source": 132, "references": null, "notes": null, "text": [47394, 47395], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93353, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93354, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93366, "fields": {"name": "Lichtblau", "review": false, "start_date": "1844-05-17", "end_date": "1908-05-10", "start_date_written": "17.5.1844", "end_date_written": "10.5.1908", "status": "", "source": 130, "references": null, "notes": null, "text": [47402, 47403], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93367, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93368, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93369, "fields": {"name": "Lichtblau", "review": false, "start_date": "1875-02-25", "end_date": "1935-12-19", "start_date_written": "25.2.1875", "end_date_written": "19.12.1935", "status": "", "source": 131, "references": null, "notes": null, "text": [47404, 47405], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93370, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93371, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93378, "fields": {"name": "Leitgeb", "review": false, "start_date": "1835-10-20", "end_date": "1888-04-05", "start_date_written": "20.10.1835", "end_date_written": "5.4.1888", "status": "", "source": 128, "references": null, "notes": null, "text": [47410, 47411], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93379, "fields": {"name": "Portendorf, Bez. Klagenfurt Land", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93382, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93383, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93387, "fields": {"name": "Lenhoss\u00e9k", "review": false, "start_date": "1773-05-11", "end_date": "1840-02-11", "start_date_written": "11.5.1773", "end_date_written": "11.2.1840", "status": "", "source": 129, "references": null, "notes": null, "text": [47414, 47415], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93388, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93389, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93393, "fields": {"name": "Lefler", "review": false, "start_date": "1863-11-07", "end_date": "1919-03-14", "start_date_written": "7.11.1863", "end_date_written": "14.3.1919", "status": "", "source": 125, "references": null, "notes": null, "text": [47418, 47419], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93394, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93395, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93396, "fields": {"name": "Leichter", "review": false, "start_date": "1895-08-20", "end_date": "1942-03-17", "start_date_written": "20.8.1895", "end_date_written": "17.3.1942", "status": "", "source": 126, "references": null, "notes": null, "text": [47420, 47421], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93397, "fields": {"name": "KZ Ravensbr\u00fcck, Brandenburg", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93398, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93399, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93400, "fields": {"name": "Leidesdorf", "review": false, "start_date": "1810-09-25", "end_date": "1876-01-19", "start_date_written": "25.9.1810", "end_date_written": "19.1.1876", "status": "", "source": 127, "references": null, "notes": null, "text": [47422, 47423], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93401, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93402, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93409, "fields": {"name": "Lapaine", "review": false, "start_date": "1843-02-05", "end_date": "1923-02-21", "start_date_written": "5.2.1843", "end_date_written": "21.2.1923", "status": "", "source": 124, "references": null, "notes": null, "text": [47428, 47429], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93410, "fields": {"name": "Vojsko, sr. Gorica", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93413, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93414, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93415, "fields": {"name": "Langer-Schroll", "review": false, "start_date": "1850-10-02", "end_date": "1926-11-09", "start_date_written": "2.10.1850", "end_date_written": "9.11.1926", "status": "", "source": 123, "references": null, "notes": null, "text": [47430, 47431], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93417, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93418, "fields": {"name": "M\u00fcller", "review": false, "start_date": "1874-07-08", "end_date": "1941-12-09", "start_date_written": "8.7.1874", "end_date_written": "9.12.1941", "status": "", "source": 144, "references": null, "notes": null, "text": [47432, 47433], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93419, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93420, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93442, "fields": {"name": "M\u00f6rl", "review": false, "start_date": "1812-10-16", "end_date": "1868-01-11", "start_date_written": "16.10.1812", "end_date_written": "11.1.1868", "status": "", "source": 143, "references": null, "notes": null, "text": [47446, 47447], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93443, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93444, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93445, "fields": {"name": "Millosicz", "review": false, "start_date": "1819-10-18", "end_date": "1890-07-24", "start_date_written": "18.10.1819", "end_date_written": "24.7.1890", "status": "", "source": 142, "references": null, "notes": null, "text": [47448, 47449], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93446, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93447, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93448, "fields": {"name": "Miklosich", "review": false, "start_date": "1813-11-20", "end_date": "1891-03-07", "start_date_written": "20.11.1813", "end_date_written": "7.3.1891", "status": "", "source": 141, "references": null, "notes": null, "text": [47450, 47451], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93449, "fields": {"name": "Radomer\u0161\u010dak, sr. Murska Sobota", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93452, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93453, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93469, "fields": {"name": "Meithner", "review": false, "start_date": "1892-05-27", "end_date": "1942-12-13", "start_date_written": "27.5.1892", "end_date_written": "13.12.1942", "status": "", "source": 140, "references": null, "notes": null, "text": [47460, 47461], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93470, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93471, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93481, "fields": {"name": "Margulies", "review": false, "start_date": "1817-01-01", "end_date": "1880-01-01", "start_date_written": "1817", "end_date_written": "1880", "status": "", "source": 139, "references": null, "notes": null, "text": [47466, 47467], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93482, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93483, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93484, "fields": {"name": "M\u00e1nesov\u00e1", "review": false, "start_date": "1817-01-21", "end_date": null, "start_date_written": "21.1.1817", "end_date_written": "1883.6", "status": "", "source": 137, "references": null, "notes": null, "text": [47468, 47469], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93485, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93486, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93487, "fields": {"name": "M\u00e1nes", "review": false, "start_date": "1828-07-17", "end_date": "1880-08-05", "start_date_written": "17.7.1828", "end_date_written": "5.8.1880", "status": "", "source": 138, "references": null, "notes": null, "text": [47470, 47471], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93488, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93489, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93510, "fields": {"name": "Mayer", "review": false, "start_date": "1894-02-20", "end_date": "1944-07-01", "start_date_written": "20.2.1894", "end_date_written": "1.7.1944", "status": "", "source": 136, "references": null, "notes": null, "text": [47482, 47483], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93511, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93512, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93513, "fields": {"name": "Mahl-Schedl von Alpenburg", "review": false, "start_date": "1806-10-27", "end_date": "1873-04-01", "start_date_written": "27.10.1806", "end_date_written": "1.4.1873", "status": "", "source": 135, "references": null, "notes": null, "text": [47484, 47485], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93514, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93515, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93516, "fields": {"name": "Nov\u00e1\u010dek", "review": false, "start_date": "1860-04-07", "end_date": "1929-08-12", "start_date_written": "7.4.1860", "end_date_written": "12.8.1929", "status": "", "source": 145, "references": null, "notes": null, "text": [47486, 47487], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93517, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93518, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93540, "fields": {"name": "Ortmann", "review": false, "start_date": "1874-03-10", "end_date": "1939-11-22", "start_date_written": "10.3.1874", "end_date_written": "22.11.1939", "status": "", "source": 147, "references": null, "notes": null, "text": [47502, 47503], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93541, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93542, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93546, "fields": {"name": "Oellacher", "review": false, "start_date": "1804-02-16", "end_date": "1880-08-16", "start_date_written": "16.2.1804", "end_date_written": "16.8.1880", "status": "", "source": 146, "references": null, "notes": null, "text": [47506, 47507], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93547, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93548, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93561, "fields": {"name": "Poljanec", "review": false, "start_date": "1872-09-23", "end_date": "1944-08-08", "start_date_written": "23.9.1872", "end_date_written": "8.8.1944", "status": "", "source": 151, "references": null, "notes": null, "text": [47516, 47517], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93562, "fields": {"name": "Bre\u017eice, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93565, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93566, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93573, "fields": {"name": "Petzold", "review": false, "start_date": "1859-11-26", "end_date": "1932-07-15", "start_date_written": "26.11.1859", "end_date_written": "15.7.1932", "status": "", "source": 150, "references": null, "notes": null, "text": [47522, 47523], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93574, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93575, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93588, "fields": {"name": "Peithner von Lichtenfels", "review": false, "start_date": "1833-11-18", "end_date": "1913-01-22", "start_date_written": "18.11.1833", "end_date_written": "22.1.1913", "status": "", "source": 149, "references": null, "notes": null, "text": [47530, 47531], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93589, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93590, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93600, "fields": {"name": "Patera", "review": false, "start_date": "1819-07-11", "end_date": "1894-06-26", "start_date_written": "11.7.1819", "end_date_written": "26.6.1894", "status": "", "source": 148, "references": null, "notes": null, "text": [47536, 47537], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93601, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93602, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93609, "fields": {"name": "Rumpler", "review": false, "start_date": "1771-02-03", "end_date": "1846-03-17", "start_date_written": "3.2.1771", "end_date_written": "17.3.1846", "status": "", "source": 158, "references": null, "notes": null, "text": [47540, 47541], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93610, "fields": {"name": "Seekirchen a. Wallersee", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93613, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93614, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93615, "fields": {"name": "Rotter", "review": false, "start_date": "1868-11-30", "end_date": "1945-09-18", "start_date_written": "30.11.1868", "end_date_written": "18.9.1945", "status": "", "source": 157, "references": null, "notes": null, "text": [47542, 47543], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93616, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93617, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93639, "fields": {"name": "Revertera von Salandra", "review": false, "start_date": "1827-01-21", "end_date": "1904-04-28", "start_date_written": "21.1.1827", "end_date_written": "28.4.1904", "status": "", "source": 156, "references": null, "notes": null, "text": [47556, 47557], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93640, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93641, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93642, "fields": {"name": "Reichenberger", "review": false, "start_date": "1770-11-24", "end_date": "1854-10-26", "start_date_written": "24.11.1770", "end_date_written": "26.10.1854", "status": "", "source": 154, "references": null, "notes": null, "text": [47558, 47559], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93643, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93644, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93645, "fields": {"name": "Reiser", "review": false, "start_date": "1861-12-21", "end_date": "1936-03-31", "start_date_written": "21.12.1861", "end_date_written": "31.3.1936", "status": "", "source": 155, "references": null, "notes": null, "text": [47560, 47561], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93646, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93647, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93651, "fields": {"name": "Randa", "review": false, "start_date": "1874-05-24", "end_date": "1941-08-13", "start_date_written": "24.5.1874", "end_date_written": "13.8.1941", "status": "", "source": 153, "references": null, "notes": null, "text": [47564, 47565], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93652, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93653, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93654, "fields": {"name": "Radakovi\u010d", "review": false, "start_date": "1866-04-25", "end_date": "1934-08-15", "start_date_written": "25.4.1866", "end_date_written": "15.8.1934", "status": "", "source": 152, "references": null, "notes": null, "text": [47566, 47567], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93655, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93656, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93657, "fields": {"name": "Szigligeti", "review": false, "start_date": "1814-03-08", "end_date": "1878-01-19", "start_date_written": "8.3.1814", "end_date_written": "19.1.1878", "status": "", "source": 194, "references": null, "notes": null, "text": [47568, 47569], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93658, "fields": {"name": "Oradea-Olosig, jud. Bihor", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93661, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93662, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93663, "fields": {"name": "Szurmay von Uzsok", "review": false, "start_date": "1860-12-19", "end_date": "1945-03-26", "start_date_written": "19.12.1860", "end_date_written": "26.3.1945", "status": "", "source": 195, "references": null, "notes": null, "text": [47570, 47571], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93664, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93665, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93678, "fields": {"name": "St\u00fclz", "review": false, "start_date": "1799-02-23", "end_date": "1872-06-28", "start_date_written": "23.2.1799", "end_date_written": "28.6.1872", "status": "", "source": 193, "references": null, "notes": null, "text": [47580, 47581], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93679, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93680, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93684, "fields": {"name": "Stowasser", "review": false, "start_date": "1887-10-21", "end_date": "1934-02-19", "start_date_written": "21.10.1887", "end_date_written": "19.2.1934", "status": "", "source": 192, "references": null, "notes": null, "text": [47584, 47585], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93685, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93686, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93702, "fields": {"name": "Steindler", "review": false, "start_date": "1879-10-28", "end_date": "1933-12-21", "start_date_written": "28.10.1879", "end_date_written": "21.12.1933", "status": "", "source": 190, "references": null, "notes": null, "text": [47594, 47595], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93703, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93704, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93705, "fields": {"name": "Stein", "review": false, "start_date": "1891-09-19", "end_date": "1945-02-25", "start_date_written": "19.9.1891", "end_date_written": "25.2.1945", "status": "", "source": 191, "references": null, "notes": null, "text": [47596, 47597], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93706, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93707, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93714, "fields": {"name": "Stariha", "review": false, "start_date": "1845-05-12", "end_date": "1915-12-15", "start_date_written": "12.5.1845", "end_date_written": "15.12.1915", "status": "", "source": 189, "references": null, "notes": null, "text": [47602, 47603], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93715, "fields": {"name": "Sadinja vas, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93718, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93719, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93748, "fields": {"name": "\u0160njari\u0107", "review": false, "start_date": "1851-06-22", "end_date": "1930-01-28", "start_date_written": "22.6.1851", "end_date_written": "28.1.1930", "status": "", "source": 188, "references": null, "notes": null, "text": [47614, 47615], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93749, "fields": {"name": "\u010canak, sr. Gospi\u0107", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93752, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93753, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93779, "fields": {"name": "Sichulski", "review": false, "start_date": "1879-01-17", "end_date": "1942-11-06", "start_date_written": "17.1.1879", "end_date_written": "6.11.1942", "status": "", "source": 187, "references": null, "notes": null, "text": [47626, 47627], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93780, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93781, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93785, "fields": {"name": "Settari", "review": false, "start_date": "1841-10-04", "end_date": "1905-01-29", "start_date_written": "4.10.1841", "end_date_written": "29.1.1905", "status": "", "source": 186, "references": null, "notes": null, "text": [47630, 47631], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93786, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93787, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93791, "fields": {"name": "Sehnal", "review": false, "start_date": "1851-12-22", "end_date": "1910-09-12", "start_date_written": "22.12.1851", "end_date_written": "12.9.1910", "status": "", "source": 185, "references": null, "notes": null, "text": [47634, 47635], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93792, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93793, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93800, "fields": {"name": "Schwartz", "review": false, "start_date": "1852-02-28", "end_date": "1929-09-15", "start_date_written": "28.2.1852", "end_date_written": "15.9.1929", "status": "", "source": 181, "references": null, "notes": null, "text": [47640, 47641], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93801, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93802, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93803, "fields": {"name": "Schwarz", "review": false, "start_date": "1840-11-16", "end_date": "1903-12-28", "start_date_written": "16.11.1840", "end_date_written": "28.12.1903", "status": "", "source": 182, "references": null, "notes": null, "text": [47642, 47643], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93804, "fields": {"name": "\u0160umperk-Temenice, kr. Olomouck\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93807, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93808, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93809, "fields": {"name": "Schwarz", "review": false, "start_date": "1811-11-06", "end_date": "1879-05-07", "start_date_written": "6.11.1811", "end_date_written": "7.5.1879", "status": "", "source": 183, "references": null, "notes": null, "text": [47644, 47645], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93810, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93811, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93815, "fields": {"name": "Schweitzer", "review": false, "start_date": "1815-02-01", "end_date": "1896-07-09", "start_date_written": "1.2.1815", "end_date_written": "9.7.1896", "status": "", "source": 184, "references": null, "notes": null, "text": [47648, 47649], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93816, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93817, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93818, "fields": {"name": "Schwabl", "review": false, "start_date": "1854-06-29", "end_date": "1923-04-16", "start_date_written": "29.6.1854", "end_date_written": "16.4.1923", "status": "", "source": 180, "references": null, "notes": null, "text": [47650, 47651], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93819, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93820, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93836, "fields": {"name": "Schu\u00ebcker", "review": false, "start_date": "1860-11-16", "end_date": "1911-11-09", "start_date_written": "16.11.1860", "end_date_written": "9.11.1911", "status": "", "source": 179, "references": null, "notes": null, "text": [47660, 47661], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93837, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93838, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93839, "fields": {"name": "Schr\u00f6dl", "review": false, "start_date": "1841-07-07", "end_date": "1908-12-05", "start_date_written": "7.7.1841", "end_date_written": "5.12.1908", "status": "", "source": 178, "references": null, "notes": null, "text": [47662, 47663], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93841, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93854, "fields": {"name": "Schreyer", "review": false, "start_date": "1876-12-09", "end_date": "1950-04-14", "start_date_written": "9.12.1876", "end_date_written": "14.4.1950", "status": "", "source": 177, "references": null, "notes": null, "text": [47672, 47673], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93855, "fields": {"name": "B\u0159idli\u010dn\u00e1, kr. Moravskoslezsk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93858, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93859, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93863, "fields": {"name": "Scholz", "review": false, "start_date": "1819-08-20", "end_date": "1902-05-19", "start_date_written": "20.8.1819", "end_date_written": "19.5.1902", "status": "", "source": 175, "references": null, "notes": null, "text": [47676, 47677], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93864, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93865, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93866, "fields": {"name": "Schrammel", "review": false, "start_date": "1850-05-22", "end_date": "1893-06-17", "start_date_written": "22.5.1850", "end_date_written": "17.6.1893", "status": "", "source": 176, "references": null, "notes": null, "text": [47678, 47679], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93867, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93868, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93878, "fields": {"name": "Scholl", "review": false, "start_date": "1805-01-01", "end_date": "1884-12-12", "start_date_written": "1805", "end_date_written": "12.12.1884", "status": "", "source": 174, "references": null, "notes": null, "text": [47684, 47685], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93879, "fields": {"name": "Regio oder Rea (?)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93880, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93881, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93891, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1804-06-30", "end_date": "1880-12-19", "start_date_written": "30.6.1804", "end_date_written": "19.12.1880", "status": "", "source": 172, "references": null, "notes": null, "text": [47688, 47689], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93892, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93893, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93894, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1863-09-12", "end_date": "1930-03-09", "start_date_written": "12.9.1863", "end_date_written": "9.3.1930", "status": "", "source": 173, "references": null, "notes": null, "text": [47690, 47691], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93895, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93896, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93900, "fields": {"name": "Schnitzler", "review": false, "start_date": "1865-07-13", "end_date": "1939-06-29", "start_date_written": "13.7.1865", "end_date_written": "29.6.1939", "status": "", "source": 169, "references": null, "notes": null, "text": [47694, 47695], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93901, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93902, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93903, "fields": {"name": "Schober", "review": false, "start_date": "1856-12-15", "end_date": "1917-03-07", "start_date_written": "15.12.1856", "end_date_written": "7.3.1917", "status": "", "source": 170, "references": null, "notes": null, "text": [47696, 47697], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93905, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93909, "fields": {"name": "Schoeller", "review": false, "start_date": "1826-10-05", "end_date": "1889-06-25", "start_date_written": "5.10.1826", "end_date_written": "25.6.1889", "status": "", "source": 171, "references": null, "notes": null, "text": [47700, 47701], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93910, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93911, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93921, "fields": {"name": "Schmutzler", "review": false, "start_date": "1864-03-29", "end_date": "1940-06-20", "start_date_written": "29.3.1864", "end_date_written": "20.6.1940", "status": "", "source": 168, "references": null, "notes": null, "text": [47706, 47707], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93922, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93923, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93933, "fields": {"name": "Schmidt", "review": false, "start_date": "1904-03-04", "end_date": "1942-11-16", "start_date_written": "4.3.1904", "end_date_written": "16.11.1942", "status": "", "source": 167, "references": null, "notes": null, "text": [47712, 47713], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93934, "fields": {"name": "Davydivka, obl. \u010cernivci", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93937, "fields": {"name": "Girenbad b. Hinwil, Kanton Z\u00fcrich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93938, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93939, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93940, "fields": {"name": "Schmidt", "review": false, "start_date": "1826-12-09", "end_date": "1892-03-28", "start_date_written": "9.12.1826", "end_date_written": "28.3.1892", "status": "", "source": 166, "references": null, "notes": null, "text": [47714, 47715], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93941, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93942, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93946, "fields": {"name": "Schmal", "review": false, "start_date": "1844-09-23", "end_date": "1900-12-24", "start_date_written": "23.9.1844", "end_date_written": "24.12.1900", "status": "", "source": 164, "references": null, "notes": null, "text": [47718, 47719], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93947, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93948, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93955, "fields": {"name": "Schmidt-Beauchez", "review": false, "start_date": "1848-06-06", "end_date": "1912-12-14", "start_date_written": "6.6.1848", "end_date_written": "14.12.1912", "status": "", "source": 165, "references": null, "notes": null, "text": [47724, 47725], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93956, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93957, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93958, "fields": {"name": "Schindler", "review": false, "start_date": "1835-06-23", "end_date": "1911-02-22", "start_date_written": "23.6.1835", "end_date_written": "22.2.1911", "status": "", "source": 163, "references": null, "notes": null, "text": [47726, 47727], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93959, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93960, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93961, "fields": {"name": "Scheu", "review": false, "start_date": "1841-09-15", "end_date": "1904-10-12", "start_date_written": "15.9.1841", "end_date_written": "12.10.1904", "status": "", "source": 161, "references": null, "notes": null, "text": [47728, 47729], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93962, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93963, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93964, "fields": {"name": "Schikaneder", "review": false, "start_date": "1855-02-27", "end_date": "1924-11-15", "start_date_written": "27.2.1855", "end_date_written": "15.11.1924", "status": "", "source": 162, "references": null, "notes": null, "text": [47730, 47731], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93965, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93966, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93967, "fields": {"name": "Schell", "review": false, "start_date": "1892-12-19", "end_date": "1945-06-02", "start_date_written": "19.12.1892", "end_date_written": "2.6.1945", "status": "", "source": 159, "references": null, "notes": null, "text": [47732, 47733], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93968, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93969, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93970, "fields": {"name": "Schenk", "review": false, "start_date": "1840-08-23", "end_date": "1902-08-17", "start_date_written": "23.8.1840", "end_date_written": "17.8.1902", "status": "", "source": 160, "references": null, "notes": null, "text": [47734, 47735], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93971, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93972, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93988, "fields": {"name": "T\u00f6lgyessy", "review": false, "start_date": "1853-05-01", "end_date": "1920-02-02", "start_date_written": "1.5.1853", "end_date_written": "2.2.1920", "status": "", "source": 201, "references": null, "notes": null, "text": [47746, 47747], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93989, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93990, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93991, "fields": {"name": "Thun und Hohenstein", "review": false, "start_date": "1763-03-28", "end_date": "1818-10-09", "start_date_written": "28.3.1763", "end_date_written": "9.10.1818", "status": "", "source": 200, "references": null, "notes": null, "text": [47748, 47749], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93992, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93993, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94003, "fields": {"name": "Teschenberg", "review": false, "start_date": "1836-05-21", "end_date": "1886-02-25", "start_date_written": "21.5.1836", "end_date_written": "25.2.1886", "status": "", "source": 197, "references": null, "notes": null, "text": [47754, 47755], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94006, "fields": {"name": "Tetmajer", "review": false, "start_date": "1865-02-12", "end_date": "1940-01-18", "start_date_written": "12.2.1865", "end_date_written": "18.1.1940", "status": "", "source": 198, "references": null, "notes": null, "text": [47756, 47757], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94007, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94008, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94009, "fields": {"name": "Teuber", "review": false, "start_date": "1877-05-11", "end_date": "1943-02-03", "start_date_written": "11.5.1877", "end_date_written": "3.2.1943", "status": "", "source": 199, "references": null, "notes": null, "text": [47758, 47759], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94018, "fields": {"name": "Tauber", "review": false, "start_date": "1891-05-16", "end_date": "1948-01-08", "start_date_written": "16.5.1891", "end_date_written": "8.1.1948", "status": "", "source": 196, "references": null, "notes": null, "text": [47764, 47765], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94102, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpunkt des Realismus u*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94103, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpuncte des Realismus *. - 1884-85", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94104, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Die Grundzu\u0308ge der Aristotelischen Psychologie. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94105, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpuncte des Realismus *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94120, "fields": {"name": "Hegel, Carl: Die Ordnungen der Gerechtigkeit in der florentinischen Republik. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94121, "fields": {"name": "Hegel, Georg W.: Vorlesungen u\u0308ber die Philosophie der Geschichte. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94122, "fields": {"name": "Hegel, Carl: U\u0308ber den historischen Werth der a\u0308lteren Dante-Commentare. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94123, "fields": {"name": "Hegel, Carl: Sta\u0308dte und Gilden der germanischen Vo\u0308lker im Mittelalter. - 1891", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94124, "fields": {"name": "Vorlesungen u\u0308ber die Philosophie der Geschichte. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94125, "fields": {"name": "Hegel, Carl: Die deutsche Sache und die deutschen Hochschulen: Rede am 4. November 1870. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94126, "fields": {"name": "Hegel, Carl: Die Chronik des Dino Compagni. - 1875", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94127, "fields": {"name": "Hegel, Carl: Die Entstehung des deutschen Sta\u0308dtewesens. - 1898", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94128, "fields": {"name": "Hegel, Carl: Geschichte der meklenburgischen Landsta\u0308nde bis z. J. 1555. - 1856", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94129, "fields": {"name": "Hegel, Carl: Geschichte der Sta\u0308dteverfassung von Italien seit der Zeit der ro\u0308mischen Herr*. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94131, "fields": {"name": "Herbart, Johann M.: Aufrichtige Gedanken von dem Unterrichte kleiner Kinder, vornemlich i*. - 1738", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94132, "fields": {"name": "Herbart, Johann M.: De notitia linguae Hebraicae necessario et facile comparanda. - 1737", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94133, "fields": {"name": "Herbart, Johann M.: Unvorgreifliche Gedanken von Verbesserung der bey Erlernung der Latei*. - 1741", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94134, "fields": {"name": "Herbart, Johann M.: An Christus tentatorem suum statim noverit, nec ne, paucis disquirit *. - 1738", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94135, "fields": {"name": "Herbart, Johann M.: Kurtzer Entwurff von den vornehmsten Quellen des Verderbens der Jugend. - 1736", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94136, "fields": {"name": "Herbart, Johann M.: Thomam incredulum resurrectionis Christi certissimum testem producit *. - 1740", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94137, "fields": {"name": "Herbart, Johann M.: Sendschreiben von den gewo\u0308hnlichen Trostgru\u0308nden bey dem fru\u0308hzeitigen *. - [ca. 1740]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94138, "fields": {"name": "Herbart, Johann Michael: De magis aegyptiacis. - 1741.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94139, "fields": {"name": "Herbart, Johann M.: Tritissimum illud: conjugia sunt fatalia, denuo tritum dissertatione *. - 1736", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94140, "fields": {"name": "Herbart, Johann M.: Trauer-Rede ... u\u0308ber den Verlust Friderichs V, Erbko\u0308niges zu Da\u0308nnemar*. - 1766", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94141, "fields": {"name": "Herbart, Johann M.: Kurzer Erweis, da\u00df alle Studierende eine Historische Erkenntni\u00df von g*. - 1740", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94160, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94161, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94162, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94163, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94164, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94165, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94166, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94167, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94168, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94169, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94170, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94171, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94174, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94175, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94247, "fields": {"name": "Grundlinien der Psychologie. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94248, "fields": {"name": "Psychologie der Raumwahrnehmung des Auges. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94249, "fields": {"name": "Hundert psychologische Schulversuche mit Angabe der Apparate. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94250, "fields": {"name": "Ho\u0308fler, Alois: Hundert psychologische Schulversuche mit Angabe der Apparate", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94251, "fields": {"name": "Grundzu\u0308ge der allgemeinen A\u0308sthetik. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94307, "fields": {"name": "Westermarck, Edward A.: The history of human marriage. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94308, "fields": {"name": "Westermarck, Edward A.: Ritual and belief in Morocco. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94309, "fields": {"name": "Westermarck, Edward A.: The Origin and development of the moral ideas", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94310, "fields": {"name": "Numelin, Ragnar: The Wandering Spirit. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94311, "fields": {"name": "Westermarck, Edward A.: Marriage Ceremonies in Marocco. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94312, "fields": {"name": "Westermarck, Edward A.: The Future of mariage in western civilisation. - 1937", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94313, "fields": {"name": "Balfour, Henry: Anthropological essays. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94314, "fields": {"name": "Westermarck, Edward A.: Geschichte der menschlichen Ehe. - 1893", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94315, "fields": {"name": "Westermarck, Edward A.: Ursprung und Entwicklung der Moralbegriffe", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94323, "fields": {"name": "Bartos\u030c, Frantis\u030cek M.: Litera\u0301rni C\u030cinnost M. Jakoubka ze Str\u030cibra. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94324, "fields": {"name": "Soupis rukopis\u00b0u Na\u0301rodni\u0301ho Musea v Praze. - 1926 -", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94351, "fields": {"name": "Psychologische Untersuchungen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94352, "fields": {"name": "Hauptpuncte der Logik. - 1806", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94353, "fields": {"name": "Pedagogia generale dedotta dal fine dell'educazione", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94354, "fields": {"name": "Hauptpuncte der Logik. - 1808", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94355, "fields": {"name": "Analytische Beleuchtung des Naturrechts und der Moral ... - 1896", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94356, "fields": {"name": "Gespra\u0308che u\u0308ber das Bo\u0308se.... - 1817", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94357, "fields": {"name": "U\u0308ber die Unangreifbarkeit der Schellingischen Lehre. - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94358, "fields": {"name": "Pedagogia generale", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94359, "fields": {"name": "Pisma pedagogiczne", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94360, "fields": {"name": "Allgemeine practische Philosophie. - 1808", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94361, "fields": {"name": "Erinnerung an die Go\u0308ttingische Katastrophe im Jahre 1837. - 1842", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94362, "fields": {"name": "De attentionis mensura causisque primariis. - 1822", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94433, "fields": {"name": "Schleicher, August: Sprachvergleichende Untersuchungen [Bd. II: \"Linguistische...\"]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94434, "fields": {"name": "Schleicher, August: Die Deutsche Sprache. - 1879", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94435, "fields": {"name": "Indogermanische Chrestomathie. - 1869", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94436, "fields": {"name": "Schleicher, August: La the\u0301orie de Darwin et la science du langage. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94437, "fields": {"name": "Schleicher, August: U\u0308ber die Bedeutung der Sprache fu\u0308r die Naturgeschichte des Menschen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94438, "fields": {"name": "Schleicher, August: Die Deutsche Sprache. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94439, "fields": {"name": "Schleicher, August: Die Darwinsche Theorie und die Sprachwissenschaft. - 1863", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94440, "fields": {"name": "Litauische Ma\u0308rchen, Sprichworte, Ra\u0308tsel und Lieder. - 1857", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94441, "fields": {"name": "Schleicher, August: Compendium der vergleichenden Grammatik der Indogermanischen Sprachen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94442, "fields": {"name": "Schleicher, August: Compendium der vergleichenden Grammatik der Indogermanischen Sprachen. - 1876", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94822, "fields": {"name": "Der Aufstieg der Begabten. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94823, "fields": {"name": "Der deutsche Klassizismus und das Bildungswesen der Gegenwart. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94824, "fields": {"name": "Der jugendliche Mensch . - 1932", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94825, "fields": {"name": "Lebensformen. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94826, "fields": {"name": "Lebenserfahrung. - 1945", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94827, "fields": {"name": "Psychologie des Jugendalters. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94828, "fields": {"name": "Der Bildungswert der Heimatkunde. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94829, "fields": {"name": "Psychologie des Jugendalters. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94830, "fields": {"name": "Psychologie des Jugendalters. - 1924", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94831, "fields": {"name": "Weltfro\u0308mmigkeit. - 1941", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94885, "fields": {"name": "Kleinere Schriften zur Pa\u0308dagogik. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94886, "fields": {"name": "Fro\u0308bel, Friedrich W.: Briefwechsel mit Kindern. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94887, "fields": {"name": "Das Verma\u0308chtnis Friedrich Fro\u0308bels an unsere Zeit. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94888, "fields": {"name": "Fro\u0308bel, Friedrich W.: Menschenerziehung. - [1927]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94889, "fields": {"name": "Fro\u0308bel, Friedrich W.: An unser deutsches Volk!. - 1820", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94890, "fields": {"name": "Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkunst. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94891, "fields": {"name": "Fro\u0308bel, Friedrich W.: Friedrich Fro\u0308bel, der Mensch, Denker und Erzieher. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94892, "fields": {"name": "Menschenerziehung. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94893, "fields": {"name": "Fro\u0308bel, Friedrich W.: Kleinere Schriften zur Pa\u0308dagogik. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94894, "fields": {"name": "Fro\u0308bel, Friedrich W.: Friedrich Fro\u0308bel und die Muhme Schmidt. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94895, "fields": {"name": "An unser deutsches Volk!. - 1820", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94896, "fields": {"name": "Fro\u0308bel, Friedrich W.: Das Verma\u0308chtnis Friedrich Fro\u0308bels an unsere Zeit. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94897, "fields": {"name": "Friedrich Fro\u0308bel, der Mensch, Denker und Erzieher. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94898, "fields": {"name": "Menschenerziehung. - [1927]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94899, "fields": {"name": "Fro\u0308bel, Friedrich W.: Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkunst. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94900, "fields": {"name": "Briefwechsel mit Kindern. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94901, "fields": {"name": "Friedrich Fro\u0308bel und die Muhme Schmidt. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94902, "fields": {"name": "Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkuns*. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94903, "fields": {"name": "Fro\u0308bel, Friedrich W.: Menschenerziehung. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94904, "fields": {"name": "Fro\u0308bel, Friedrich W.: Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkuns*. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95024, "fields": {"name": "Aesthetik. - 1858-1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95025, "fields": {"name": "Philosophische Propaedeutik. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95026, "fields": {"name": "Leibnitz und Herbart. - 1849", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95027, "fields": {"name": "Herbart, Johann F.: Ungedruckte Briefe von und an Herbart. - 1877", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95028, "fields": {"name": "Das Rechtsprinzip bei Leibnitz. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95029, "fields": {"name": "Studien und Kritiken zur Philosophie und Aesthetik. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95030, "fields": {"name": "Guerillaskrieg. - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95043, "fields": {"name": "Ennius, Quintus: Ennianae poesis reliquiae. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95044, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1885", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95045, "fields": {"name": "Ennius, Quintus: Poesis reliquiae. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95046, "fields": {"name": "M. Tullii Ciceronis de legibus libri", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95047, "fields": {"name": "De arte poetica liber", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95048, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95049, "fields": {"name": "Plautus, Titus M.: Menaechmi. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95050, "fields": {"name": "Vahlen, Johannes: In M. Terentii Varronis saturarum Menippearum reliquias coniectanea. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95051, "fields": {"name": "Vahlen, Johannes: Lorenzo Valla. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95052, "fields": {"name": "Lachmann, Karl: Briefe an Moritz Haupt. - 1892", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95053, "fields": {"name": "Naevius, Cnaeus: De bello Punico. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95054, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1879", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95123, "fields": {"name": "Die wichtigsten philosophischen Fachausdru\u0308cke in historischer Anordnung. - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95124, "fields": {"name": "Pa\u0308dagogische Vortra\u0308ge u\u0308ber die Hebung der geistigen Tha\u0308tigkeit durch den *. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95125, "fields": {"name": "Seidenberger, Johann B.: Grundlinien idealer Weltanschauung. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95126, "fields": {"name": "Aristoteles als Pa\u0308dagog und Didaktiker. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95127, "fields": {"name": "Die Wissenschaft vom Gesichtspunkte der katholischen Wahrheit. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95128, "fields": {"name": "Die soziale Aufgabe der ho\u0308heren Schulen. - 1891", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95129, "fields": {"name": "Aus Ho\u0308rsaal und Schulstube. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95130, "fields": {"name": "Pythagoreische Erziehungsweisheit. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95131, "fields": {"name": "Geschichte des Idealismus. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95156, "fields": {"name": "Kru\u0301dy, Gyula: Ady Endre e\u0301jszaka\u0301i. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95157, "fields": {"name": "Kru\u0301dy, Gyula: Munkai", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95158, "fields": {"name": "Kru\u0301dy, Gyula: Magyar Ko\u0308zta\u0300rsasa\u0300g almanachja. - 1988", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95159, "fields": {"name": "Kru\u0301dy, Gyula: Festeu\u0301 kira\u0301ly. - o. J.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95160, "fields": {"name": "Kru\u0301dy, Gyula: A has ezeregye\u0301jszaka\u0301ja. - [1990]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95161, "fields": {"name": "Kru\u0301dy, Gyula: Va\u0301logatott novella\u0301k. - 1990", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95162, "fields": {"name": "Kru\u0301dy, Gyula: Aranyke\u0301zutcai sze\u0301p napok. - 1978", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95163, "fields": {"name": "Kru\u0301dy, Gyula: A magyar jakobinnsok. - [um 1930]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95164, "fields": {"name": "Kru\u0301dy, Gyula: Az elso\u0308 Habsburg. - [um 1930]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95397, "fields": {"name": "Notes sur Paris. - 1883", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95398, "fields": {"name": "Notes sur l'Angleterre. - 1872", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95399, "fields": {"name": "Du suffrage universel et de la manie\u0301re de voter. - 1872", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95400, "fields": {"name": "Philosophie der Kunst", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95401, "fields": {"name": "E\u0301tienne Mayran. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95402, "fields": {"name": "De l'ide\u0301al dans l'art. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95403, "fields": {"name": "Graindorge, Fre\u0301de\u0301ric T. [Pseud.]: La politique ale\u0301atoire. - [1915]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95404, "fields": {"name": "Philosophie de l'art", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95405, "fields": {"name": "Nouveaux essais de critique et d'histoire. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95406, "fields": {"name": "Derniers essais de critique et d'histoire. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95407, "fields": {"name": "Essais de critique et d'histoire. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95582, "fields": {"name": "Volkssagen aus Vorarlberg. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95583, "fields": {"name": "Volkssagen aus Voralberg. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95584, "fields": {"name": "Beitra\u0308ge zur deutschen Mythologie. - 1862", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95596, "fields": {"name": "Beobachtungen u\u0308ber das Gefu\u0308hl des Scho\u0308nen und Erhabenen. - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95597, "fields": {"name": "Die Religion innerhalb der Grenzen der blossen Vernunft. - 1869", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95598, "fields": {"name": "Beobachtungen u\u0308ber das Gefu\u0308hl des Scho\u0308nen und Erhabenen. - 1766", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95599, "fields": {"name": "Kritik der Urteilskraft. - 1790 [u. o\u0308.]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95600, "fields": {"name": "Gesammelte Schriften", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95601, "fields": {"name": "Metaphysische Anfangsgru\u0308nde der Naturwissenschaft. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95602, "fields": {"name": "Die Religion innerhalb der Grenzen der blo\u00dfen Vernunft. - 1794", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95603, "fields": {"name": "Die Religion innerhalb der Grenzen der blossen Vernunft. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95604, "fields": {"name": "Die Religion innerhalb der Grenzen der blo\u00dfen Vernunft. - 1793", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95847, "fields": {"name": "Das Pestalozzische Institut an das Publikum. - 1811", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95848, "fields": {"name": "Pestalozzi's Erziehungsunternehmung im Verha\u0308ltni\u00df zur Zeitkultur. - 1812", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95867, "fields": {"name": "Bernheim, Ernst: Lehrbuch der historischen Methode. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95868, "fields": {"name": "Bernheim, Ernst: Die ungenu\u0308gende Ausdrucksfa\u0308higkeit der Studierenden. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95869, "fields": {"name": "Bernheim, Ernst: Die gefa\u0308hrdete Stellung unserer deutschen Universita\u0308ten. - 1899", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95870, "fields": {"name": "Bernheim, Ernst: Lehrbuch der historischen Methode. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95871, "fields": {"name": "Bernheim, Ernst: Einleitung in die Geschichtswissenschaft. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95872, "fields": {"name": "Bernheim, Ernst: Der Universita\u0308tsunterricht und die Erfordernisse der Gegenwart. - 1898", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95873, "fields": {"name": "Bernheim, Ernst: Julius von Pflugk - Harttung. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95874, "fields": {"name": "Bernheim, Ernst: Geschichtswissenschaft und Erkenntnisstheorie. - 1900 ca.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95875, "fields": {"name": "Bernheim, Ernst: Mittelalterliche Zeitanschauungen in ihrem Einfluss auf Politik und Gesc*. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95876, "fields": {"name": "Bernheim, Ernst: Geschichtsforschung und Geschichtsphilosophie. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95893, "fields": {"name": "Lucubratio theologico-moralis circa praecipuum moralitatis systema de conscientia et actibus humanis. - 1747", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95929, "fields": {"name": "Einige Bemerkungen u\u0308ber die Composition des Sophokleischen Philoktet. - 1893", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95930, "fields": {"name": "Das Ko\u0308nigreich Polen vor dem Kriege <1815-1914>. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95931, "fields": {"name": "Janicki, Klemens: Clementis Janicii Carmina ed., praefatione instr., annot. ill. Ludovicu*. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95932, "fields": {"name": "Balkan und naher Orient. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95949, "fields": {"name": "Meyer, Kuno: The instructions of King Cormac mac Airt. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95950, "fields": {"name": "Meyer, Kuno: The death-tales of the Ulster heroes. - 1906", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95951, "fields": {"name": "Selections from ancient Irish poetry. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95952, "fields": {"name": "Meyer, Kuno: The Triads of Ireland. - 1906", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95953, "fields": {"name": "Meyer, Kuno: Learning in Ireland in the fifth century and the transmission of letters. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95954, "fields": {"name": "Meyer, Kuno: Fianaigecht. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95955, "fields": {"name": "Meyer, Kuno: Betha Colma\u0301in maic Lu\u0301acha\u0301in. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95956, "fields": {"name": "Peredur ab Efrawe. - 1887", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95957, "fields": {"name": "The Voyage of Bran Son of Febal to the Land of the Living", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96143, "fields": {"name": "Chronicon Fuchsio-Lupino-Oltardinum sive Annales Hungarici et Transsilvanici", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96144, "fields": {"name": "Aktenma\u0308ssige Darstellung der ungarischen u. siebenbu\u0308rgischen Landtags-*. - 1866", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96145, "fields": {"name": "Bearb. von: Statuten der allgemeinen Kronsta\u0308dter Sparcasse. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96146, "fields": {"name": "Schriftsteller-Lexikon oder biographisch-litera\u0308rische Denk-Bla\u0308tter der Siebenbu\u0308rger Deutschen. - 1868-", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96208, "fields": {"name": "Schuster, Mauriz: Tibull Studien. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96209, "fields": {"name": "Kappelmacher, Alfred: Die Literatur der R\u00f6mer bis zur Karolingerzeit. - 1926-34", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96210, "fields": {"name": "Plinius Caecilius Secundus, Gaius: Epistularum libri novem. - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96211, "fields": {"name": "Schuster, Mauriz: De C. Sollii Apollinaris Sidonii imitationibus studiisque Horatianis. - 1905/06", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96221, "fields": {"name": "Quintilianus, Marcus F.: Institutionis oratoriae libri XII.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96222, "fields": {"name": "Radermacher, Ludwig: Mythos und Sage bei den Griechen. - [1943]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96223, "fields": {"name": "\"Fr\u00f6sche\"", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96224, "fields": {"name": "Radermacher, Ludwig: Das Jenseits im Mythos der Hellenen. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96225, "fields": {"name": "Qui dicitur de elocutione libellus", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96226, "fields": {"name": "Radermacher, Ludwig: Mythos und Sage bei den Griechen. - 1938", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96458, "fields": {"name": "Harmonia sanctorum quatuor Evangeliorum. - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96459, "fields": {"name": "R\u00f6mischer Katechismus. - 1765", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96460, "fields": {"name": "Ars metrica ad stylum elegiacum P. Ovidii Nasonis. - 1755", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96461, "fields": {"name": "Gloria Filiorum Patres Eorum. - 1748", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96462, "fields": {"name": "Monumenta veteris Ecclesiae Brixinensis. - 1765", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96463, "fields": {"name": "Catechismus Romanus abbreviatus. - 1770 - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96464, "fields": {"name": "Aetas millenaria Ecclesiae Aguntinae in Norico.. - 1772", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96465, "fields": {"name": "Ars metrica ad stylum elegiacum P. Ovidii Nasonis plurimis exemplis ... - 1748", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96466, "fields": {"name": "Annales Ecclesiae Sabionensis. - 1760 - 1767", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96467, "fields": {"name": "Praktischer Unterricht f\u00fcr seine Dorfschullehrer und Pfarrkinder. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96620, "fields": {"name": "Manin, Daniele: Venezia 1848-1849. - 1877", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96621, "fields": {"name": "Manin, Daniele: Epistolario politico. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96622, "fields": {"name": "Manin, Daniele: Della Veneta Giurisprudenza civile, mercantile e criminale. - 1848", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96623, "fields": {"name": "Manin, Daniele: Venise 1848-1849. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96728, "fields": {"name": "Intelligenz und Wille. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96729, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96730, "fields": {"name": "\u00dcber Institute f\u00fcr Jugendkunde und die Gr\u00fcndung eines Instituts f\u00fcr Jugen*. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96731, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96732, "fields": {"name": "Die Entstehung der ersten Wortbedeutungen beim Kinde. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96733, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96734, "fields": {"name": "P\u00e4dagogisch-psychologische Forschungen. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96735, "fields": {"name": "Pedagogia experimental. - 1960", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96736, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96737, "fields": {"name": "System der \u00c4sthetik. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96738, "fields": {"name": "Die Sprache des Kindes. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96740, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96741, "fields": {"name": "Die Entstehung der ersten Wortbedeutungen beim Kinde. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96742, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96743, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96744, "fields": {"name": "Pedagogia experimental. - 1960", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96745, "fields": {"name": "P\u00e4dagogisch-psychologische Forschungen. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96746, "fields": {"name": "Intelligenz und Wille. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96747, "fields": {"name": "Die Sprache des Kindes. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96748, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96749, "fields": {"name": "System der \u00c4sthetik. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96750, "fields": {"name": "\u00dcber Institute f\u00fcr Jugendkunde und die Gr\u00fcndung eines Instituts f\u00fcr Jugen*. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96758, "fields": {"name": "Laudivius : Laudini Eovitis hierosolymitani ad Franciscum Beltrandum ... - 1511", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96759, "fields": {"name": "Magni Turci, i.e. Mahometi Secundi, Turcarum Imperatoris, Epistolae. - 1680", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96813, "fields": {"name": "Geschichte des Mittelalters. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96814, "fields": {"name": "Bedeutende M\u00e4nner d\u00fcrens. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96815, "fields": {"name": "Forschungen zur geschichte Ludwigs des Bayern. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96816, "fields": {"name": "Festschrift zum goldenen Jubil\u00e4um des katholischen Gesellen-Vereins in Neuss. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96817, "fields": {"name": "Die Bulle Ne praetereat und die Reconciliationsverhandlungen Ludwigs des Bayers mit dem Papste Johann XXII. - 1885", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96858, "fields": {"name": "Salzburg Und Theile Von Baiern Und \u00d6sterreich. - 1807", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96859, "fields": {"name": "Schlacht bey Biberach. - s.a. [1813]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96860, "fields": {"name": "Plan zur \u00dcbersicht der Kriegsbegebenheiten zwischen der Lahn ... - [1813]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96861, "fields": {"name": "M\u00fcnchen mit Seinen Umgebungen. - [ca. 1840]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96862, "fields": {"name": "Schlacht bey Biberach am zweiten October 1796. - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96863, "fields": {"name": "Neueste General-Post- [und] Strassen-Karte der Oesterreichischen Monarchie. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96864, "fields": {"name": "Plan zur \u00dcbersicht der Kriegsbegebenheiten zwischen der Lahn ... - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96865, "fields": {"name": "Charte von Oesterreich Ob Der Enns. - 1802", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96947, "fields": {"name": "Obermaier, Hugo: Las Pinturas rupestres del Barranco de Valltorta . - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96948, "fields": {"name": "Obermaier, Hugo: Yacimiento prehist\u00f3rico de las Carolinas . - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96949, "fields": {"name": "Obermaier, Hugo: Los Glaciares cuaternarios de la Sierra del Guadarrama. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96950, "fields": {"name": "Obermaier, Hugo: Fossil Man in Spain. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96951, "fields": {"name": "Obermaier, Hugo: Estudio de los Glaciares de los Picos de Europa. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96952, "fields": {"name": "Obermaier, Hugo: Los Glaciares cuaternarios de Sierra Nevada. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96953, "fields": {"name": "Obermaier, Hugo: El hombre f\u00f3sil. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96954, "fields": {"name": "Obermaier, Hugo: El dolmen de Matarrubilla . - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96955, "fields": {"name": "Obermaier, Hugo: Contribuci\u00f3n al estudio del Glaciarismo cuaternario de la Sierra de Gredos. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96956, "fields": {"name": "Obermaier, Hugo: La Cueva del Buxu . - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97430, "fields": {"name": "\u00d6MV - OMV. - 1998", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97529, "fields": {"name": "R\u00fcbezahl. - 1970", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97530, "fields": {"name": "Wie die Welt entdeckt wurde. - 1968", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97531, "fields": {"name": "Das @goldene Spyri-Buch. - 1966", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97532, "fields": {"name": "Heidi. - 1965", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97533, "fields": {"name": "Die @sch\u00f6nsten M\u00e4rchen. - 1967", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97534, "fields": {"name": "Kinder- und Hausm\u00e4rchen. - 2002", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97578, "fields": {"name": "Europ\u00e4ische Integration und die Vereinigten Staaten von Amerika", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97592, "fields": {"name": "Jaroszewicz, Piotr: Przerywam milczenie .... - 1991", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97593, "fields": {"name": "Gierek & Jaroszewicz zeznaj\u0105. - 1990", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97617, "fields": {"name": "Zastosowanie metody Kowalowa w wielkim przemy\u015ble chemicznym", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97623, "fields": {"name": "Neue Wege zur wirtschaftlichen Gestaltung des Bahnbetriebes", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97657, "fields": {"name": "Der @neue Weg der Selbst\u00e4ndigen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97707, "fields": {"name": "Die @Sozialversicherung der Heimatvertriebenen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97723, "fields": {"name": "Kultur- und Sittengeschichte des nieder\u00f6sterreichischen Dorfes. - 1953", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97753, "fields": {"name": "Die @Werksteinindustrie in Niederdonau", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97790, "fields": {"name": "Die @\u00f6ffentlich-gemeinn\u00fctzige Sph\u00e4re des Bankwesens im nationalsozialistischen Staat", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97834, "fields": {"name": "Als die Nacht verging. - 1955", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97849, "fields": {"name": "M\u00fctterliche Schmertzen der unter dem Cre\u00fctz h\u00f6chst betr\u00fcbt stehender Mutter Jesu Mariae. - 1717", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97884, "fields": {"name": "Grundz\u00fcge der Volkswirtschaftslehre. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97888, "fields": {"name": "Die @Wirtschaft und Industrie Irans", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97896, "fields": {"name": "Die @Altesunterst\u00fctzung und die Jugendeinstellung", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97933, "fields": {"name": "Sonderpostmarke 50 Jahre \u00f6sterreichischer St\u00e4dtebund", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97943, "fields": {"name": "Zagoskin, Michail N.: Izbrannoe. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97944, "fields": {"name": "Semenov, Vladimir S.: Aleksandr Gercen. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97945, "fields": {"name": "Leskov, Nikolaj S.: Zachudalyj rod. - 1985", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97976, "fields": {"name": "Wolf, Hugo: [Manuel Venegas ]. - 1986", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97977, "fields": {"name": "Wolf, Hugo: [Spanisches Liederbuch / Ausw.]. - \u00a91978", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97986, "fields": {"name": "Die @Qualit\u00e4t des Lebens verbessern", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98006, "fields": {"name": "Aus Wilhelm von Tegetthoff's Nachlass. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98024, "fields": {"name": "\u00dcber das Verh\u00e4ltnis von Wace's Roman de Brut zu seiner Quelle, der Historia regum Britanniae des Gottfried von Monmouth", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98116, "fields": {"name": "wien", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98183, "fields": {"name": "Lange, Ludwig: Reiseberichte aus Griechenland. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98184, "fields": {"name": "Lange, Ludwig: Original-Ansichten der vornehmsten St\u00e4dte in Deutschland. - 1832 - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98185, "fields": {"name": "Lange, Ludwig: Die geschichtliche Entwicklung des Bewegungsbegriffes und ihr voraussich*. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98237, "fields": {"name": "Anselm Feuerbachs Briefe an seine Mutter. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98296, "fields": {"name": "Laurent, Paul M.: Histoire de l'empereur Napol\u00e9on. - 1843", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98297, "fields": {"name": "LaFontaine, Jean de: Fables choisies de LaFontaine. - 1818", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98298, "fields": {"name": "Laurent, Paul M.: Histoire de l'empereur Napol\u00e9on. - 1839", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98299, "fields": {"name": "Zw\u00f6lf Stahlstiche zu der Geschichte Napoleons. - 1839", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98300, "fields": {"name": "Laurent, Paul M.: Geschichte des Kaisers Napoleon. - 1840", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98301, "fields": {"name": "Vernet, Horace: Ru\u00dfland. - 1856", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98348, "fields": {"name": "Bryant, William C.: Poems. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98551, "fields": {"name": "Hess, Heinrich: Die Fresco-Gem\u00e4lde der K\u00f6niglichen Allerheiligen Hofkapelle zu M\u00fcnchen. - 1837", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98569, "fields": {"name": "Spahn, Martin: Philipp Veit. - 1901", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98570, "fields": {"name": "Schlegel, Dorothea von: Dorothea v. Schlegel geb. Mendelssohn und deren S\u00f6hne Johannes *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98579, "fields": {"name": "Raffaello : Le Logge di Rafaele nel Vaticano", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98580, "fields": {"name": "Raffaello : VII tabulae actorum apostolicorum p.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98581, "fields": {"name": "Apuleius : Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98582, "fields": {"name": "Raffaello : Le Loggie di Raffaello nel Vaticano. - [1772 - 1776]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98583, "fields": {"name": "Buonarroti, Michel A.: Gedichte. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98584, "fields": {"name": "Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98585, "fields": {"name": "Dorigny, Nicolas: Psyches et Amoris nuptiae ac fabula. - 1693", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98586, "fields": {"name": "Ill. zu: Apuleius : Amor und Psyche. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98587, "fields": {"name": "Apuleius Madaurensis, Lucius: Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98588, "fields": {"name": "Palaestra amoris dicata Veneri", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98604, "fields": {"name": "Waldm\u00fcller, Ferdinand G.: Bilder und Erlebnisse. - 1920 ca.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98605, "fields": {"name": "Waldm\u00fcller, Ferdinand G.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98606, "fields": {"name": "Ferdinand Georg Waldm\u00fcller zum 200. Geburtstag. - 1993", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98696, "fields": {"name": "Overbeck, Friedrich: Friedrich Overbeck's Triumph der Religion in den K\u00fcnsten. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98697, "fields": {"name": "Overbeck, Friedrich: Jesus amator parvulorum. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98714, "fields": {"name": "(Graf) Hans Wilczek erz\u00e4hlt seinen Enkeln Erinnerungen ... - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98722, "fields": {"name": "Briefe. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98723, "fields": {"name": "Studien zur Gorgo. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98724, "fields": {"name": "Aus meinem Leben 1859-1888. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98725, "fields": {"name": "Wilhelm : Meine Vorfahren. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98726, "fields": {"name": "Trauer und Treue. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98727, "fields": {"name": "Kaiserreden. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98728, "fields": {"name": "Wilhelm : Studien zur Gorgo. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98729, "fields": {"name": "Oncken, Wilhelm: Unser Heldenkaiser. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98730, "fields": {"name": "Meine Vorfahren. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98731, "fields": {"name": "Vergleichende Geschichtstabellen von 1878 bis zum*. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98732, "fields": {"name": "Mack, Eugen: Das Rottweiler Steuerbuch von 1441. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98733, "fields": {"name": "Wilhelm : Briefe. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98734, "fields": {"name": "Klages, Ernst: Heil, Kaiser, Dir!", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98735, "fields": {"name": "Wilhelm : Vergleichende Geschichtstabellen von 1878 bis zum*. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98736, "fields": {"name": "Wilhelm : Aus meinem Leben 1859-1888. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98737, "fields": {"name": "Wilhelm : Kaiserreden. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98886, "fields": {"name": "An die Gantze Christenheit Ein Hochwichtige Frag ... - 1620", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98891, "fields": {"name": "Feldz\u00fcge in Ungarn und den angr\u00e4nzenden Provinzen. - 1788", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98892, "fields": {"name": "L'operazioni militari fatte in Ungaria (1683-1694). - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98893, "fields": {"name": "Des Grafen Veterani Feldz\u00fcge in Ungarn .\u0324 von 1683 - 1694. - 1788", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98922, "fields": {"name": "Zim\u0101m al-\u0121an\u0101 al-mu\u1e6drib fi n-na\u1e93m as-s\u0101\u02bfir f\u012b aq\u0101\u1e63\u012b al-ma\u0121rib. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98923, "fields": {"name": "Tar\u0101\u01f5im ri\u01f5\u0101l. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98924, "fields": {"name": "Arabische und persische Handschriften. - [1921]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98925, "fields": {"name": "Biographien von Gew\u00e4hrm\u00e4nnern des Ibn Is\u1e25\u00e2g, haupts\u00e4chlich aus a\u1e0f-\u1e0eahab\u00ee. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98980, "fields": {"name": "Der @\u00e4gyptische Joseph", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98990, "fields": {"name": "HJerinn sind begriffen vier Buecher von menschlicher Proportion durch Albrechten Duerer ... 1528. (VD16 ZV 23128)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98991, "fields": {"name": "Albrecht D\u00fcrer und Wilibald Pirkheimer. - 1828", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98992, "fields": {"name": "Diurnale seu liber precum. - 1514", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98993, "fields": {"name": "Alberti Dureri clarissimi pictoris et Geometrae de Sym\u0303etria partium in rectis formis ... 1532. (VD16 D 2860)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98994, "fields": {"name": "Holzschnitte. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98995, "fields": {"name": "Unterweisung der Messung mit dem Zirkel und Richtscheit. - 1538", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98996, "fields": {"name": "Institutiones geometricae. - 1535", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98997, "fields": {"name": "Elementorum geometricorum libri. - 1606", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98998, "fields": {"name": "Birgitta : Regula sancti salvatoris. 1517. (VD16 B 5594)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98999, "fields": {"name": "M\u0101 Sh\u0101 All\u0101h al-Mi\u1e63r\u012b: MESSAHALAH DE SCIENTIA MOTVS ORBIS ... [Ed. stud. (Ioann.Stabii ... )][\u00dcbers. v. Gerardus ... 1504. (VD16 M 1326)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99000, "fields": {"name": "Hjeri\u00f1 sind begriffen vier biicher von menschlicher Proportion durch Albrechten Duerer von ... 1528. (VD16 D 2859)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99001, "fields": {"name": "Brant, Sebastian: Nauis stultifera a domino sebastiano Brant prim\u0169 edificata: \\[et] lepidissimis teutonice lingue ... 1506. (VD16 B 7078)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99002, "fields": {"name": "Elementorum geometricorum libri. - 1532", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99003, "fields": {"name": "Maximilian I. : Oratio ad su\u0169 \\[pro...]ri\u0169 angel\u0169. DEus \\[pro...]itius esto mihi peccatori. Et sis mihi custos ... 1514. (VD16 M 1657)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99004, "fields": {"name": "Icones Sacrae. - 1604", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99005, "fields": {"name": "Schwalbe, Benedikt: EPITOME IN DIVAE PARTHENICES MARIAE HISTORIAM AB ALBERTO DVRERO NORICO PER FIGVRAS DIGES TAM ... 1511. (VD16 S 4585)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99006, "fields": {"name": "Apocalipsis c\u0169 figuris [von Albrecht D\u00fcrer]. 1511. (VD16 B 5248)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99007, "fields": {"name": "Vier b\u00fccher von menschlicher Proportion. - 1528", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99008, "fields": {"name": "Schwalbe, Benedikt: Passio domini nostri Jesu. ex hieronymo Paduano. Dominico Mancino. Sedulio. et Baptista ... 1511. (VD16 S 4587)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99009, "fields": {"name": "Opera. - 1604", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99075, "fields": {"name": "In memoriam. - 1873", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99092, "fields": {"name": "F\u00fcnf Dichtungen. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99093, "fields": {"name": "Scheffel, Joseph V. von: Gaudeamus!. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99094, "fields": {"name": "Scheffel, Joseph V. von: Frau Aventiure. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99095, "fields": {"name": "Gaudeamus!. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99096, "fields": {"name": "Der Trompeter von S\u00e4kkingen. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99097, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99098, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99099, "fields": {"name": "Scheffel, Joseph V. von: Juniperus. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99100, "fields": {"name": "Frau Aventiure. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99101, "fields": {"name": "Das Gabelbachlied. - [1900]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99102, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99103, "fields": {"name": "Ekkehard. - 1855", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99104, "fields": {"name": "Juniperus. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99105, "fields": {"name": "Scheffel, Joseph V. von: Ekkehard. - 1855", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99106, "fields": {"name": "Scheffel, Joseph V. von: Das Gabelbachlied. - [1900]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99107, "fields": {"name": "Das Grosse Fass zu Heidelberg. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99108, "fields": {"name": "Scheffel, Joseph V. von: F\u00fcnf Dichtungen. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99109, "fields": {"name": "Scheffel, Joseph V. von: Das Grosse Fass zu Heidelberg. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99110, "fields": {"name": "Der Trompeter von S\u00e4kkingen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99156, "fields": {"name": "Faust", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99336, "fields": {"name": "Souscription \u00e0 la gravure repr\u00e9sentant le portrait en pied de M. David. - [ca. 1810]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99337, "fields": {"name": "Le Tableau des Sabines, expos\u00e9 publiquement au Palais National des Sciences et des Arts. - Ca. 1790", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99352, "fields": {"name": "Hamilton, William: Collection of Engravings from ancient Vases. - 1791 - 1795", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99353, "fields": {"name": "Soltau, Dietrich W.: Reineke der Fuchs. - 1830", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99354, "fields": {"name": "Hamilton, William: Collection of engravings from ancient Vases of pure Greek workmanship *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99355, "fields": {"name": "Tischbein, Johann H.: Homer nach Antiken gezeichnet. - 1801 - 1821", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99356, "fields": {"name": "Tischbein, Johann H.: Figures d'Hom\u00e8re dessin\u00e9es d'apr\u00e8s l'antique. - 1801", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99357, "fields": {"name": "B\u00f6ttiger, Carl A.: Umrisse griechischer Gem\u00e4lde auf antiken i. J. 1789 u. 1790 in Campani*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99358, "fields": {"name": "Tischbein, Johann H.: Homer nach Antiken gezeichnet", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99369, "fields": {"name": "Museum \u00e9trusque de Lucien Bonaparte, prince de Carpino. Fouilles de 1828 \u00e0 1829. Vases *. - 1829", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99370, "fields": {"name": "Bonaparte, Lucien: R\u00e9volution de brumaire, ou relation des principaux \u00e9v\u00e9venments des *. - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99371, "fields": {"name": "Bonaparte, Lucien: M\u00e9moires de Lucien Bonaparte prince de Canino. - 1836", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99372, "fields": {"name": "Bonaparte, Lucien: Charlemagne ou l'\u00e9glise d\u00e9livr\u00e9e", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99373, "fields": {"name": "Museum Etrusque de Lucien Bonaparte Prince de Canino. - 1829", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99374, "fields": {"name": "Bonaparte, Lucien: Charle Magne ou l'Eglise delivr\u00e9e. - 1815", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99375, "fields": {"name": "Bonaparte, Lucien: La verit\u00e9 sur les Cent-Jours. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99376, "fields": {"name": "Bonaparte, Lucien: M\u00e9moires de Lucien Bonaparte prince de Canino", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99377, "fields": {"name": "Bonaparte, Lucien: La v\u00e9rit\u00e9 sur les cent-jours. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99378, "fields": {"name": "Bonaparte, Lucien: Discours prononc\u00e9 dans le temple de Mars. - [1800]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99416, "fields": {"name": "Erinnerungen an Ernst von Lasaulx. - 1861", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99417, "fields": {"name": "Adam, Albrecht: Aus dem Leben eines Schlachtenmalers. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99418, "fields": {"name": "Geschichte der altdeutschen Dichtkunst in Bayern. - 1862", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99419, "fields": {"name": "Geschichte der deutschen Literatur. - 1853", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99420, "fields": {"name": "Die Entwicklung des deutschen Theaters im Mittelalter und das Ammerg*. - 1861", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99421, "fields": {"name": "Lebenserinnerungen eines 90j\u00e4hr. Altm\u00fcncheners. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99422, "fields": {"name": "Kaiser Ludwig der Bayer und sein Stift zu Ettal. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99423, "fields": {"name": "Franz Graf Pocci. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99591, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99744, "fields": {"name": "\u00dcber die Geschwindigkeit der Hydrolyse der Hexafluoride von Schwefel, Selen und Tellur", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99841, "fields": {"name": "Kolloidchemie. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99842, "fields": {"name": "\u00dcber Kolloidchemie unter bes. Ber\u00fccksichtigung d. anorg. Kolloide .... - 1935", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99843, "fields": {"name": "Kolloidchemie. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99844, "fields": {"name": "Das kolloide Gold. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99845, "fields": {"name": "Kurzer Leitfaden der technischen Gasanalyse. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99846, "fields": {"name": "Zur Erkenntnis der Kolloide. - 1905", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99847, "fields": {"name": "Zur Erkenntnis der Kolloide. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99848, "fields": {"name": "Kolloidchemie. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99849, "fields": {"name": "Kolloidchemie. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99850, "fields": {"name": "Kolloidchemie. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.source", "pk": 1, "fields": {"orig_filename": "Geographiedaten.xlsx", "indexed": false, "pubinfo": "Export of \u00d6BL geo db (3.2016)", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 102, "fields": {"orig_filename": "Bahr_Hermann_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f.", "author": "", "orig_id": 1405476}}, {"model": "metainfo.source", "pk": 103, "fields": {"orig_filename": "Celakovsky_Jaromir_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416946}}, {"model": "metainfo.source", "pk": 104, "fields": {"orig_filename": "Celakovsky_Ladislav_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416947}}, {"model": "metainfo.source", "pk": 105, "fields": {"orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416953}}, {"model": "metainfo.source", "pk": 106, "fields": {"orig_filename": "Charlemont_Hugo_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417029}}, {"model": "metainfo.source", "pk": 107, "fields": {"orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417140}}, {"model": "metainfo.source", "pk": 108, "fields": {"orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417315}}, {"model": "metainfo.source", "pk": 109, "fields": {"orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417317}}, {"model": "metainfo.source", "pk": 110, "fields": {"orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417316}}, {"model": "metainfo.source", "pk": 111, "fields": {"orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417320}}, {"model": "metainfo.source", "pk": 112, "fields": {"orig_filename": "Conze_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f.", "author": "", "orig_id": 1417417}}, {"model": "metainfo.source", "pk": 113, "fields": {"orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417431}}, {"model": "metainfo.source", "pk": 114, "fields": {"orig_filename": "Czerny_Adalbert_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417613}}, {"model": "metainfo.source", "pk": 116, "fields": {"orig_filename": "Czetz_Johann_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f.", "author": "", "orig_id": 1417689}}, {"model": "metainfo.source", "pk": 117, "fields": {"orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417691}}, {"model": "metainfo.source", "pk": 118, "fields": {"orig_filename": "Defregger_Franz_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417167}}, {"model": "metainfo.source", "pk": 119, "fields": {"orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417262}}, {"model": "metainfo.source", "pk": 120, "fields": {"orig_filename": "Doderer_Wilhelm_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421589}}, {"model": "metainfo.source", "pk": 121, "fields": {"orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422065}}, {"model": "metainfo.source", "pk": 122, "fields": {"orig_filename": "Holovsky_Hilde_1917_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417020}}, {"model": "metainfo.source", "pk": 123, "fields": {"orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412571}}, {"model": "metainfo.source", "pk": 124, "fields": {"orig_filename": "Lapaine_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f.", "author": "", "orig_id": 1412681}}, {"model": "metainfo.source", "pk": 125, "fields": {"orig_filename": "Lefler_Heinrich_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413578}}, {"model": "metainfo.source", "pk": 126, "fields": {"orig_filename": "Leichter_Kaethe_1895_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413749}}, {"model": "metainfo.source", "pk": 127, "fields": {"orig_filename": "Leidesdorf_Franz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f.", "author": "", "orig_id": 1413751}}, {"model": "metainfo.source", "pk": 128, "fields": {"orig_filename": "Leitgeb_Hubert_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f.", "author": "", "orig_id": 1413852}}, {"model": "metainfo.source", "pk": 129, "fields": {"orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412686}}, {"model": "metainfo.source", "pk": 130, "fields": {"orig_filename": "Lichtblau_Adolf_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411908}}, {"model": "metainfo.source", "pk": 131, "fields": {"orig_filename": "Lichtblau_Ludwig_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f.", "author": "", "orig_id": 1411907}}, {"model": "metainfo.source", "pk": 132, "fields": {"orig_filename": "Lobmeyr_Josef_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263", "author": "", "orig_id": 1411542}}, {"model": "metainfo.source", "pk": 133, "fields": {"orig_filename": "Loewy_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297", "author": "", "orig_id": 1411913}}, {"model": "metainfo.source", "pk": 134, "fields": {"orig_filename": "Lorenz_Heinrich_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316", "author": "", "orig_id": 1412111}}, {"model": "metainfo.source", "pk": 135, "fields": {"orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f.", "author": "", "orig_id": 1411846}}, {"model": "metainfo.source", "pk": 136, "fields": {"orig_filename": "Maier_Karl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412133}}, {"model": "metainfo.source", "pk": 137, "fields": {"orig_filename": "Manesova_Amalie_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f.", "author": "", "orig_id": 1409111}}, {"model": "metainfo.source", "pk": 138, "fields": {"orig_filename": "Manes_Quido_1828_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409109}}, {"model": "metainfo.source", "pk": 139, "fields": {"orig_filename": "Margulies_Berl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1409490}}, {"model": "metainfo.source", "pk": 140, "fields": {"orig_filename": "Meithner_Karl_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f.", "author": "", "orig_id": 1413879}}, {"model": "metainfo.source", "pk": 141, "fields": {"orig_filename": "Miklosich_Franz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f.", "author": "", "orig_id": 1413368}}, {"model": "metainfo.source", "pk": 142, "fields": {"orig_filename": "Millosicz_Georg_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f.", "author": "", "orig_id": 1413706}}, {"model": "metainfo.source", "pk": 143, "fields": {"orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412553}}, {"model": "metainfo.source", "pk": 144, "fields": {"orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413568}}, {"model": "metainfo.source", "pk": 145, "fields": {"orig_filename": "Novacek_Rudolf_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f.", "author": "", "orig_id": 1408134}}, {"model": "metainfo.source", "pk": 146, "fields": {"orig_filename": "Oellacher_Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408688}}, {"model": "metainfo.source", "pk": 147, "fields": {"orig_filename": "Ortmann_Rudolf_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409161}}, {"model": "metainfo.source", "pk": 148, "fields": {"orig_filename": "Patera_Adolf_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f.", "author": "", "orig_id": 1408720}}, {"model": "metainfo.source", "pk": 149, "fields": {"orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f.", "author": "", "orig_id": 1409360}}, {"model": "metainfo.source", "pk": 150, "fields": {"orig_filename": "Petzold_Emil_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407914}}, {"model": "metainfo.source", "pk": 151, "fields": {"orig_filename": "Poljanec_Leopold_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410619}}, {"model": "metainfo.source", "pk": 152, "fields": {"orig_filename": "Radakovic_Michael_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f.", "author": "", "orig_id": 1409702}}, {"model": "metainfo.source", "pk": 153, "fields": {"orig_filename": "Randa_Maximilian_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411", "author": "", "orig_id": 1410086}}, {"model": "metainfo.source", "pk": 154, "fields": {"orig_filename": "Reichenberger_Andreas_1770_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f.", "author": "", "orig_id": 1406805}}, {"model": "metainfo.source", "pk": 155, "fields": {"orig_filename": "Reiser_Othmar_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406978}}, {"model": "metainfo.source", "pk": 156, "fields": {"orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f.", "author": "", "orig_id": 1407193}}, {"model": "metainfo.source", "pk": 157, "fields": {"orig_filename": "Rotter_Johann_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f.", "author": "", "orig_id": 1407684}}, {"model": "metainfo.source", "pk": 158, "fields": {"orig_filename": "Rumpler_Matthias_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327", "author": "", "orig_id": 1407832}}, {"model": "metainfo.source", "pk": 159, "fields": {"orig_filename": "Schell_Karl_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f.", "author": "", "orig_id": 1406179}}, {"model": "metainfo.source", "pk": 160, "fields": {"orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f.", "author": "", "orig_id": 1406202}}, {"model": "metainfo.source", "pk": 161, "fields": {"orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f.", "author": "", "orig_id": 1406044}}, {"model": "metainfo.source", "pk": 162, "fields": {"orig_filename": "Schikaneder_Jakub_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f.", "author": "", "orig_id": 1406374}}, {"model": "metainfo.source", "pk": 163, "fields": {"orig_filename": "Schindler_Josef_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153", "author": "", "orig_id": 1406252}}, {"model": "metainfo.source", "pk": 164, "fields": {"orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406496}}, {"model": "metainfo.source", "pk": 165, "fields": {"orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f.", "author": "", "orig_id": 1406721}}, {"model": "metainfo.source", "pk": 166, "fields": {"orig_filename": "Schmid_Anton_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f.", "author": "", "orig_id": 1406531}}, {"model": "metainfo.source", "pk": 167, "fields": {"orig_filename": "Schmid_Joseph_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f.", "author": "", "orig_id": 1406597}}, {"model": "metainfo.source", "pk": 168, "fields": {"orig_filename": "Schmutzler_Leopold_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f.", "author": "", "orig_id": 1406623}}, {"model": "metainfo.source", "pk": 169, "fields": {"orig_filename": "Schnitzler_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f.", "author": "", "orig_id": 1406896}}, {"model": "metainfo.source", "pk": 170, "fields": {"orig_filename": "Schober_Alfred_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f.", "author": "", "orig_id": 1406912}}, {"model": "metainfo.source", "pk": 171, "fields": {"orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405414}}, {"model": "metainfo.source", "pk": 172, "fields": {"orig_filename": "Schoenberger_Adolf_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405629}}, {"model": "metainfo.source", "pk": 173, "fields": {"orig_filename": "Schoenberger_Benno_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405634}}, {"model": "metainfo.source", "pk": 174, "fields": {"orig_filename": "Scholl_Joseph_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f.", "author": "", "orig_id": 1412321}}, {"model": "metainfo.source", "pk": 175, "fields": {"orig_filename": "Scholz_Franz_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412411}}, {"model": "metainfo.source", "pk": 176, "fields": {"orig_filename": "Schrammel_Johann_1850_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff.", "author": "", "orig_id": 1411222}}, {"model": "metainfo.source", "pk": 177, "fields": {"orig_filename": "Schreyer_Johann_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411681}}, {"model": "metainfo.source", "pk": 178, "fields": {"orig_filename": "Schroedl_Leopold_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236", "author": "", "orig_id": 1411777}}, {"model": "metainfo.source", "pk": 179, "fields": {"orig_filename": "Schuecker_Edmund_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f.", "author": "", "orig_id": 1412171}}, {"model": "metainfo.source", "pk": 180, "fields": {"orig_filename": "Schwabl_Franz_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f.", "author": "", "orig_id": 1420210}}, {"model": "metainfo.source", "pk": 181, "fields": {"orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f.", "author": "", "orig_id": 1420456}}, {"model": "metainfo.source", "pk": 182, "fields": {"orig_filename": "Schwarz_Johann_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439", "author": "", "orig_id": 1420439}}, {"model": "metainfo.source", "pk": 183, "fields": {"orig_filename": "Schwarz_Kaspar_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445", "author": "", "orig_id": 1420450}}, {"model": "metainfo.source", "pk": 184, "fields": {"orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f.", "author": "", "orig_id": 1439729}}, {"model": "metainfo.source", "pk": 185, "fields": {"orig_filename": "Sehnal_Eugen_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f.", "author": "", "orig_id": 1439478}}, {"model": "metainfo.source", "pk": 186, "fields": {"orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197", "author": "", "orig_id": 1450886}}, {"model": "metainfo.source", "pk": 187, "fields": {"orig_filename": "Sichulski_Kazimierz_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223", "author": "", "orig_id": 1450008}}, {"model": "metainfo.source", "pk": 188, "fields": {"orig_filename": "Snjaric_Lukas_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384", "author": "", "orig_id": 1457373}}, {"model": "metainfo.source", "pk": 189, "fields": {"orig_filename": "Stariha_Janez-Nep_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105", "author": "", "orig_id": 1428070}}, {"model": "metainfo.source", "pk": 190, "fields": {"orig_filename": "Steindler_Olga_1879_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f.", "author": "", "orig_id": 1430730}}, {"model": "metainfo.source", "pk": 191, "fields": {"orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149", "author": "", "orig_id": 1428363}}, {"model": "metainfo.source", "pk": 192, "fields": {"orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f.", "author": "", "orig_id": 1434284}}, {"model": "metainfo.source", "pk": 193, "fields": {"orig_filename": "Stuelz_Jodok_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443", "author": "", "orig_id": 1433097}}, {"model": "metainfo.source", "pk": 194, "fields": {"orig_filename": "Szigligeti_Ede_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154", "author": "", "orig_id": 1434706}}, {"model": "metainfo.source", "pk": 195, "fields": {"orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178", "author": "", "orig_id": 1435139}}, {"model": "metainfo.source", "pk": 196, "fields": {"orig_filename": "Tauber_Richard_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff.", "author": "", "orig_id": 1422288}}, {"model": "metainfo.source", "pk": 197, "fields": {"orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257", "author": "", "orig_id": 1424387}}, {"model": "metainfo.source", "pk": 198, "fields": {"orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 2047416}}, {"model": "metainfo.source", "pk": 199, "fields": {"orig_filename": "Teuber_Emmerich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f.", "author": "", "orig_id": 1448255}}, {"model": "metainfo.source", "pk": 200, "fields": {"orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f.", "author": "", "orig_id": 1424667}}, {"model": "metainfo.source", "pk": 201, "fields": {"orig_filename": "Toelgyessy_Artur_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1458532}}, {"model": "metainfo.source", "pk": 202, "fields": {"orig_filename": "Novotny_Johann_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408236}}, {"model": "metainfo.source", "pk": 203, "fields": {"orig_filename": "Konrath_Matthias_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415528}}, {"model": "metainfo.source", "pk": 204, "fields": {"orig_filename": "Schreyer_Albert_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222", "author": "", "orig_id": 1411613}}, {"model": "metainfo.source", "pk": 205, "fields": {"orig_filename": "Tafatscher_Franz_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 185f.", "author": "", "orig_id": 1458119}}, {"model": "metainfo.source", "pk": 206, "fields": {"orig_filename": "Schoen_Karl_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38", "author": "", "orig_id": 1405460}}, {"model": "metainfo.source", "pk": 207, "fields": {"orig_filename": "Leonardi_Demetrio_1796_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142f.", "author": "", "orig_id": 1412785}}, {"model": "metainfo.source", "pk": 208, "fields": {"orig_filename": "Seyler_Joseph-Anton_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 211", "author": "", "orig_id": 1450963}}, {"model": "metainfo.source", "pk": 209, "fields": {"orig_filename": "Lobisser_Switbert_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257f.", "author": "", "orig_id": 1411455}}, {"model": "metainfo.source", "pk": 210, "fields": {"orig_filename": "Oesterreicher_Tobias_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408703}}, {"model": "metainfo.source", "pk": 211, "fields": {"orig_filename": "Schoefft_August_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 14", "author": "", "orig_id": 1405401}}, {"model": "metainfo.source", "pk": 212, "fields": {"orig_filename": "Slanc_Karel_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348", "author": "", "orig_id": 1459134}}, {"model": "metainfo.source", "pk": 213, "fields": {"orig_filename": "Bruckner_Anton_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117ff.", "author": "", "orig_id": 1420614}}, {"model": "metainfo.source", "pk": 214, "fields": {"orig_filename": "Bettelheim_Anton_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78f.", "author": "", "orig_id": 1418603}}, {"model": "metainfo.source", "pk": 215, "fields": {"orig_filename": "Resch_Franz_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84", "author": "", "orig_id": 1407002}}, {"model": "metainfo.source", "pk": 216, "fields": {"orig_filename": "Schmid_Josef_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275", "author": "", "orig_id": 1406594}}, {"model": "metainfo.source", "pk": 217, "fields": {"orig_filename": "Schrey-Redlwerth_Robert_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220", "author": "", "orig_id": 1411607}}, {"model": "metainfo.source", "pk": 218, "fields": {"orig_filename": "Szalay_Imre_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109f.", "author": "", "orig_id": 1434929}}, {"model": "metainfo.source", "pk": 219, "fields": {"orig_filename": "Nicoladoni_Karl_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 113", "author": "", "orig_id": 1408941}}, {"model": "metainfo.source", "pk": 220, "fields": {"orig_filename": "Schmelkes_Gottfried_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 232", "author": "", "orig_id": 1406508}}, {"model": "metainfo.source", "pk": 221, "fields": {"orig_filename": "Melzer_Raimund_1808_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412625}}, {"model": "metainfo.source", "pk": 222, "fields": {"orig_filename": "Schumann_Richard_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 367f.", "author": "", "orig_id": 1419960}}, {"model": "metainfo.source", "pk": 223, "fields": {"orig_filename": "Kovachich_Jozsef-Miklos_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416438}}, {"model": "metainfo.source", "pk": 224, "fields": {"orig_filename": "Kanya_Kalman_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414424}}, {"model": "metainfo.source", "pk": 225, "fields": {"orig_filename": "Mueller-Reichenstein_Franz-Josef_1742_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431", "author": "", "orig_id": 1413644}}, {"model": "metainfo.source", "pk": 226, "fields": {"orig_filename": "Todesco_Moritz_1816_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 364", "author": "", "orig_id": 1423650}}, {"model": "metainfo.source", "pk": 227, "fields": {"orig_filename": "Schmutzer_Philipp-Maximilian_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 350f.", "author": "", "orig_id": 1406711}}, {"model": "metainfo.source", "pk": 228, "fields": {"orig_filename": "Luger_Engelbert_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356", "author": "", "orig_id": 1411114}}, {"model": "metainfo.source", "pk": 229, "fields": {"orig_filename": "Levec_Vladimir_1877_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411633}}, {"model": "metainfo.source", "pk": 230, "fields": {"orig_filename": "Marchesi_Pompeo_1789_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409376}}, {"model": "metainfo.source", "pk": 231, "fields": {"orig_filename": "Schubert-Soldern_Zdenko_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278f.", "author": "", "orig_id": 1412151}}, {"model": "metainfo.source", "pk": 232, "fields": {"orig_filename": "Komaromy_Ferenc_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415419}}, {"model": "metainfo.source", "pk": 233, "fields": {"orig_filename": "Schmid_Josef-Alois_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 277f.", "author": "", "orig_id": 1406404}}, {"model": "metainfo.source", "pk": 234, "fields": {"orig_filename": "Foglar_Ludwig_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421447}}, {"model": "metainfo.source", "pk": 235, "fields": {"orig_filename": "Schwarzenberg_Johann-Ii_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13", "author": "", "orig_id": 1439586}}, {"model": "metainfo.source", "pk": 236, "fields": {"orig_filename": "Rienoessl_Heinrich_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156", "author": "", "orig_id": 1407336}}, {"model": "metainfo.source", "pk": 237, "fields": {"orig_filename": "Koszta_Jozsef_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157", "author": "", "orig_id": 1416337}}, {"model": "metainfo.source", "pk": 238, "fields": {"orig_filename": "Schulz_Ferdinand_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 345", "author": "", "orig_id": 1419820}}, {"model": "metainfo.source", "pk": 239, "fields": {"orig_filename": "Grosz_Wilhelm_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419394}}, {"model": "metainfo.source", "pk": 240, "fields": {"orig_filename": "Schoen_Anton_1782_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 30", "author": "", "orig_id": 1405445}}, {"model": "metainfo.source", "pk": 241, "fields": {"orig_filename": "Lelli_Giovanni-Batt_1827_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412507}}, {"model": "metainfo.source", "pk": 242, "fields": {"orig_filename": "Hermann_Heinrich_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286f.", "author": "", "orig_id": 1420735}}, {"model": "metainfo.source", "pk": 243, "fields": {"orig_filename": "Perathoner_Anton_1864_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408094}}, {"model": "metainfo.source", "pk": 244, "fields": {"orig_filename": "Steiger-Amstein_Anton-David_1755_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 145", "author": "", "orig_id": 1428303}}, {"model": "metainfo.source", "pk": 245, "fields": {"orig_filename": "Lorinser_Karl-Ignaz_1796_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412207}}, {"model": "metainfo.source", "pk": 246, "fields": {"orig_filename": "Kofler_Ephraim_1811_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416314}}, {"model": "metainfo.source", "pk": 247, "fields": {"orig_filename": "Kunesch_Adalbert_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415762}}, {"model": "metainfo.source", "pk": 248, "fields": {"orig_filename": "Leybold_Heinrich-Gustav-Adolf_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411807}}, {"model": "metainfo.source", "pk": 249, "fields": {"orig_filename": "Kautsky_Hans_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415121}}, {"model": "metainfo.source", "pk": 250, "fields": {"orig_filename": "Rodler_Walther_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197", "author": "", "orig_id": 1407341}}, {"model": "metainfo.source", "pk": 251, "fields": {"orig_filename": "Tadra_Ferdinand_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 184f.", "author": "", "orig_id": 1422350}}, {"model": "metainfo.source", "pk": 252, "fields": {"orig_filename": "Jelinek_Hugo_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414241}}, {"model": "metainfo.source", "pk": 253, "fields": {"orig_filename": "Lunacek_Vladimir_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369f.", "author": "", "orig_id": 1411298}}, {"model": "metainfo.source", "pk": 254, "fields": {"orig_filename": "Krzisch_Josef-Friedrich_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308f.", "author": "", "orig_id": 1416645}}, {"model": "metainfo.source", "pk": 255, "fields": {"orig_filename": "Roller_Julius_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226", "author": "", "orig_id": 1407462}}, {"model": "metainfo.source", "pk": 256, "fields": {"orig_filename": "Marco_Josef_1781_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409382}}, {"model": "metainfo.source", "pk": 257, "fields": {"orig_filename": "Innerkofler_Veit_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37f.", "author": "", "orig_id": 1414586}}, {"model": "metainfo.source", "pk": 258, "fields": {"orig_filename": "Jaklic_Fran_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63f.", "author": "", "orig_id": 1414992}}, {"model": "metainfo.source", "pk": 259, "fields": {"orig_filename": "Gerl_Thaddaeus_1774_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421767}}, {"model": "metainfo.source", "pk": 260, "fields": {"orig_filename": "Schroeer_Rudolf_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411782}}, {"model": "metainfo.source", "pk": 261, "fields": {"orig_filename": "Schuster_Gustav_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 386f.", "author": "", "orig_id": 1420053}}, {"model": "metainfo.source", "pk": 262, "fields": {"orig_filename": "Tisza-Borosjenoe_Kalman_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 356f.", "author": "", "orig_id": 1423923}}, {"model": "metainfo.source", "pk": 263, "fields": {"orig_filename": "Stadler_Toni_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 76", "author": "", "orig_id": 1428975}}, {"model": "metainfo.source", "pk": 264, "fields": {"orig_filename": "Karvasy_Agoston_1809_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414782}}, {"model": "metainfo.source", "pk": 265, "fields": {"orig_filename": "Nagy-Somlyo_Franz_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410851}}, {"model": "metainfo.source", "pk": 266, "fields": {"orig_filename": "Soxhlet_Eugen__1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438506}}, {"model": "metainfo.source", "pk": 267, "fields": {"orig_filename": "Steller_Johann_1768_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 203f.", "author": "", "orig_id": 1429692}}, {"model": "metainfo.source", "pk": 268, "fields": {"orig_filename": "Perkonig_Josef-Friedrich_1890_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1470836}}, {"model": "metainfo.source", "pk": 269, "fields": {"orig_filename": "Malonyay_Dezsoe_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409008}}, {"model": "metainfo.source", "pk": 270, "fields": {"orig_filename": "Klemm_Joseph-Ferdinand_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396f.", "author": "", "orig_id": 1419193}}, {"model": "metainfo.source", "pk": 271, "fields": {"orig_filename": "Csorich-Monte-Creto_Anton_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417520}}, {"model": "metainfo.source", "pk": 272, "fields": {"orig_filename": "Gebauer_Franz-Xaver_1784_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421573}}, {"model": "metainfo.source", "pk": 273, "fields": {"orig_filename": "Rosmini-Serbati_Antonio_1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 259f.", "author": "", "orig_id": 1407594}}, {"model": "metainfo.source", "pk": 274, "fields": {"orig_filename": "Hetz_Anton_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417179}}, {"model": "metainfo.source", "pk": 275, "fields": {"orig_filename": "Strickner_Andreas_1863_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402", "author": "", "orig_id": 1432936}}, {"model": "metainfo.source", "pk": 276, "fields": {"orig_filename": "Schoeller_Gustav_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405411}}, {"model": "metainfo.source", "pk": 277, "fields": {"orig_filename": "Kurowski_Marie_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415936}}, {"model": "metainfo.source", "pk": 278, "fields": {"orig_filename": "Sorgato_Antonio_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431", "author": "", "orig_id": 1468243}}, {"model": "metainfo.source", "pk": 279, "fields": {"orig_filename": "Seuffert_Bernhard-Joseph-Luther_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198f.", "author": "", "orig_id": 1450890}}, {"model": "metainfo.source", "pk": 280, "fields": {"orig_filename": "Froehlich_Friedrich-Wilhelm_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420792}}, {"model": "metainfo.source", "pk": 281, "fields": {"orig_filename": "Meder_Eduard_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182f.", "author": "", "orig_id": 1413614}}, {"model": "metainfo.source", "pk": 282, "fields": {"orig_filename": "Kapaun_Franz_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218f.", "author": "", "orig_id": 1414426}}, {"model": "metainfo.source", "pk": 283, "fields": {"orig_filename": "Schlier_Johann-Ev_1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 204f.", "author": "", "orig_id": 1406456}}, {"model": "metainfo.source", "pk": 284, "fields": {"orig_filename": "Hauser_Franz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418597}}, {"model": "metainfo.source", "pk": 285, "fields": {"orig_filename": "Szabo_Endre_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 99", "author": "", "orig_id": 1455287}}, {"model": "metainfo.source", "pk": 286, "fields": {"orig_filename": "Beyschlag_Otto_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420077}}, {"model": "metainfo.source", "pk": 287, "fields": {"orig_filename": "Stubenberg_Joseph_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 436f.", "author": "", "orig_id": 1432740}}, {"model": "metainfo.source", "pk": 288, "fields": {"orig_filename": "Scholz-Benneburg_Franz_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 135f.", "author": "", "orig_id": 1412425}}, {"model": "metainfo.source", "pk": 289, "fields": {"orig_filename": "Haswell_John_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 206f.", "author": "", "orig_id": 1418485}}, {"model": "metainfo.source", "pk": 290, "fields": {"orig_filename": "Kaessmayer_Moriz_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169f.", "author": "", "orig_id": 1415115}}, {"model": "metainfo.source", "pk": 291, "fields": {"orig_filename": "Skoff_Primus_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327", "author": "", "orig_id": 1458861}}, {"model": "metainfo.source", "pk": 292, "fields": {"orig_filename": "Schrecker_Maximilian_1857_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 184", "author": "", "orig_id": 1411315}}, {"model": "metainfo.source", "pk": 293, "fields": {"orig_filename": "Motloch_Theodor_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413202}}, {"model": "metainfo.source", "pk": 294, "fields": {"orig_filename": "Kubitschek_Wilhelm_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 314f.", "author": "", "orig_id": 1415287}}, {"model": "metainfo.source", "pk": 295, "fields": {"orig_filename": "Neuhauser_Albert_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85f.", "author": "", "orig_id": 1408658}}, {"model": "metainfo.source", "pk": 296, "fields": {"orig_filename": "Spielmann_Alois_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1426788}}, {"model": "metainfo.source", "pk": 297, "fields": {"orig_filename": "Kolarsky_Antonin_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416518}}, {"model": "metainfo.source", "pk": 298, "fields": {"orig_filename": "Hessen-Homburg_Friedrich-Joseph-Ludwig-Karl-August_1769_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417099}}, {"model": "metainfo.source", "pk": 299, "fields": {"orig_filename": "Skene_Alfred_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 320f.", "author": "", "orig_id": 1458777}}, {"model": "metainfo.source", "pk": 300, "fields": {"orig_filename": "Linder_Josef_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412383}}, {"model": "metainfo.source", "pk": 301, "fields": {"orig_filename": "Schmedes_Erik_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 229", "author": "", "orig_id": 1406502}}, {"model": "metainfo.source", "pk": 302, "fields": {"orig_filename": "Brunner_Eduard_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420629}}, {"model": "metainfo.source", "pk": 303, "fields": {"orig_filename": "Salvagnini_Enrico_1836_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 397", "author": "", "orig_id": 1407933}}, {"model": "metainfo.source", "pk": 304, "fields": {"orig_filename": "Fernkorn_Anton-Dominik_1813_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420952}}, {"model": "metainfo.source", "pk": 305, "fields": {"orig_filename": "Marburg_Otto_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409302}}, {"model": "metainfo.source", "pk": 306, "fields": {"orig_filename": "Polic_Ladislav_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410605}}, {"model": "metainfo.source", "pk": 307, "fields": {"orig_filename": "Kudelka_Josef_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415369}}, {"model": "metainfo.source", "pk": 308, "fields": {"orig_filename": "Oss_Domenico_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 258f.", "author": "", "orig_id": 1409240}}, {"model": "metainfo.source", "pk": 309, "fields": {"orig_filename": "Perko_Ivan-Andrej_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408195}}, {"model": "metainfo.source", "pk": 310, "fields": {"orig_filename": "Groebner_Josef-Mathias_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419070}}, {"model": "metainfo.source", "pk": 311, "fields": {"orig_filename": "Hofmann_Paul_1798_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416823}}, {"model": "metainfo.source", "pk": 312, "fields": {"orig_filename": "Kaan-Albest_Jindrich_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161f.", "author": "", "orig_id": 1415021}}, {"model": "metainfo.source", "pk": 313, "fields": {"orig_filename": "Schweiger-Lerchenfeld_Amand_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 40f.", "author": "", "orig_id": 1439716}}, {"model": "metainfo.source", "pk": 314, "fields": {"orig_filename": "Kudernatsch_Vinzenz_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415370}}, {"model": "metainfo.source", "pk": 315, "fields": {"orig_filename": "Berlepsch_Franz_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74f.", "author": "", "orig_id": 1421210}}, {"model": "metainfo.source", "pk": 316, "fields": {"orig_filename": "Reichel_Karl-Anton_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29f.", "author": "", "orig_id": 1406800}}, {"model": "metainfo.source", "pk": 317, "fields": {"orig_filename": "Lavos_Josef_1807_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413046}}, {"model": "metainfo.source", "pk": 318, "fields": {"orig_filename": "Hecke_Ludwig_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234", "author": "", "orig_id": 1417361}}, {"model": "metainfo.source", "pk": 319, "fields": {"orig_filename": "Stolba_Josef_1846_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 310", "author": "", "orig_id": 1431030}}, {"model": "metainfo.source", "pk": 320, "fields": {"orig_filename": "Putzker_Albrecht_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349", "author": "", "orig_id": 1409516}}, {"model": "metainfo.source", "pk": 321, "fields": {"orig_filename": "Babukic_Vjekoslav_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420828}}, {"model": "metainfo.source", "pk": 322, "fields": {"orig_filename": "Sonndorfer_Rudolf_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 420", "author": "", "orig_id": 1438691}}, {"model": "metainfo.source", "pk": 323, "fields": {"orig_filename": "Ivekovic_Franjo_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48f.", "author": "", "orig_id": 1414757}}, {"model": "metainfo.source", "pk": 324, "fields": {"orig_filename": "Phillips_George_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 45", "author": "", "orig_id": 1410402}}, {"model": "metainfo.source", "pk": 325, "fields": {"orig_filename": "Pokorny_Alois_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160", "author": "", "orig_id": 1410349}}, {"model": "metainfo.source", "pk": 326, "fields": {"orig_filename": "Sauter_Anton-Eleutherius_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 445f.", "author": "", "orig_id": 1408043}}, {"model": "metainfo.source", "pk": 327, "fields": {"orig_filename": "Schwoiser_Eduard_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66", "author": "", "orig_id": 1440116}}, {"model": "metainfo.source", "pk": 328, "fields": {"orig_filename": "Kralik-Meyrswalden_Wilhelm_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 200", "author": "", "orig_id": 1415353}}, {"model": "metainfo.source", "pk": 329, "fields": {"orig_filename": "Moses_Leopold_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390f.", "author": "", "orig_id": 1413190}}, {"model": "metainfo.source", "pk": 330, "fields": {"orig_filename": "Meindl_Konrad_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195", "author": "", "orig_id": 1413790}}, {"model": "metainfo.source", "pk": 331, "fields": {"orig_filename": "Moser_Alois_1905_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385", "author": "", "orig_id": 1413107}}, {"model": "metainfo.source", "pk": 332, "fields": {"orig_filename": "Fuegner_Heinrich_1822_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420975}}, {"model": "metainfo.source", "pk": 333, "fields": {"orig_filename": "Kober_Leo_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411344}}, {"model": "metainfo.source", "pk": 334, "fields": {"orig_filename": "Martinez_August_1794_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 116f.", "author": "", "orig_id": 1408480}}, {"model": "metainfo.source", "pk": 335, "fields": {"orig_filename": "Mniszek-Tchorznicki_Aleksander_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332", "author": "", "orig_id": 1412459}}, {"model": "metainfo.source", "pk": 336, "fields": {"orig_filename": "Goldhammer_Leo_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23", "author": "", "orig_id": 1418348}}, {"model": "metainfo.source", "pk": 337, "fields": {"orig_filename": "Bruck_Karl-Ludwig_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420612}}, {"model": "metainfo.source", "pk": 338, "fields": {"orig_filename": "Rieger_Roman_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151f.", "author": "", "orig_id": 1407324}}, {"model": "metainfo.source", "pk": 339, "fields": {"orig_filename": "Lauer_Joseph_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48", "author": "", "orig_id": 1412961}}, {"model": "metainfo.source", "pk": 340, "fields": {"orig_filename": "Litta-Visconti-Arese_Giulio-Renato_1763_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250", "author": "", "orig_id": 1411369}}, {"model": "metainfo.source", "pk": 341, "fields": {"orig_filename": "Maier_Franz_1814_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422", "author": "", "orig_id": 1411953}}, {"model": "metainfo.source", "pk": 342, "fields": {"orig_filename": "Egg_Josef_1820_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420938}}, {"model": "metainfo.source", "pk": 343, "fields": {"orig_filename": "Schoenfeld_Adolf_1828_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 70", "author": "", "orig_id": 1405787}}, {"model": "metainfo.source", "pk": 344, "fields": {"orig_filename": "Schroeder_Artur_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 228f.", "author": "", "orig_id": 1411696}}, {"model": "metainfo.source", "pk": 345, "fields": {"orig_filename": "Merk_Josef_1795_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230", "author": "", "orig_id": 1412730}}, {"model": "metainfo.source", "pk": 346, "fields": {"orig_filename": "Kun_Bertalan_1817_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346f.", "author": "", "orig_id": 1415748}}, {"model": "metainfo.source", "pk": 347, "fields": {"orig_filename": "Hauser_Anton_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418595}}, {"model": "metainfo.source", "pk": 348, "fields": {"orig_filename": "Hron_Karl_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417591}}, {"model": "metainfo.source", "pk": 349, "fields": {"orig_filename": "Tepina_Lovro_1882_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 251", "author": "", "orig_id": 2168097}}, {"model": "metainfo.source", "pk": 350, "fields": {"orig_filename": "Herrmann_Leopold-Franz_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416984}}, {"model": "metainfo.source", "pk": 351, "fields": {"orig_filename": "Pakies_Jozef-Henryk_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 293f.", "author": "", "orig_id": 1408168}}, {"model": "metainfo.source", "pk": 352, "fields": {"orig_filename": "Korn_Maximilian_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129f.", "author": "", "orig_id": 1411921}}, {"model": "metainfo.source", "pk": 353, "fields": {"orig_filename": "Caffi_Francesco_1778_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416761}}, {"model": "metainfo.source", "pk": 354, "fields": {"orig_filename": "Nizalowski_Franciszek_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409217}}, {"model": "metainfo.source", "pk": 355, "fields": {"orig_filename": "Hoenig_Franz_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417932}}, {"model": "metainfo.source", "pk": 356, "fields": {"orig_filename": "Presl_Jan-Svatopluk_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 267", "author": "", "orig_id": 1410065}}, {"model": "metainfo.source", "pk": 357, "fields": {"orig_filename": "Spagnoli_Antonio_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 445", "author": "", "orig_id": 1426809}}, {"model": "metainfo.source", "pk": 358, "fields": {"orig_filename": "Eberhart_Ernest_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422159}}, {"model": "metainfo.source", "pk": 359, "fields": {"orig_filename": "Meixner_Paul-Hermann_1891_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206", "author": "", "orig_id": 1413886}}, {"model": "metainfo.source", "pk": 360, "fields": {"orig_filename": "Kalic_Dimitrije-Mita_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414094}}, {"model": "metainfo.source", "pk": 361, "fields": {"orig_filename": "Gappmayr_Peter_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421371}}, {"model": "metainfo.source", "pk": 362, "fields": {"orig_filename": "Kirchl_Adolf_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414721}}, {"model": "metainfo.source", "pk": 363, "fields": {"orig_filename": "Szarnovszky_Ferenc_1863_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 118f.", "author": "", "orig_id": 1435900}}, {"model": "metainfo.source", "pk": 364, "fields": {"orig_filename": "Silberer_Franz_1871_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 260f.", "author": "", "orig_id": 1458072}}, {"model": "metainfo.source", "pk": 365, "fields": {"orig_filename": "Schwarzenberg-Czerny_Franciszek_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 26", "author": "", "orig_id": 1439602}}, {"model": "metainfo.source", "pk": 366, "fields": {"orig_filename": "Sestak_Adalbert_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 196", "author": "", "orig_id": 1450884}}, {"model": "metainfo.source", "pk": 367, "fields": {"orig_filename": "Okunevskyj_Jaroslaw_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408868}}, {"model": "metainfo.source", "pk": 368, "fields": {"orig_filename": "Perathoner_Johann_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411f.", "author": "", "orig_id": 1408095}}, {"model": "metainfo.source", "pk": 369, "fields": {"orig_filename": "Hebbel_Christian-Friedrich_1813_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229ff.", "author": "", "orig_id": 1417352}}, {"model": "metainfo.source", "pk": 370, "fields": {"orig_filename": "Frank_Gustav_1807_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421643}}, {"model": "metainfo.source", "pk": 371, "fields": {"orig_filename": "Gams_Eduard_1874_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421281}}, {"model": "metainfo.source", "pk": 372, "fields": {"orig_filename": "Perini_Carlo_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 420f.", "author": "", "orig_id": 1408191}}, {"model": "metainfo.source", "pk": 373, "fields": {"orig_filename": "Morandell_Josef-Valentin_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 366", "author": "", "orig_id": 1412840}}, {"model": "metainfo.source", "pk": 374, "fields": {"orig_filename": "Barak_Josef_1833_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405703}}, {"model": "metainfo.source", "pk": 375, "fields": {"orig_filename": "Leitenberger_Franz_1761_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 112", "author": "", "orig_id": 1413844}}, {"model": "metainfo.source", "pk": 376, "fields": {"orig_filename": "Kovacs_Edgar_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416446}}, {"model": "metainfo.source", "pk": 377, "fields": {"orig_filename": "Jakab_Elek_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414926}}, {"model": "metainfo.source", "pk": 378, "fields": {"orig_filename": "Steyskal_Karl-Franz_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245", "author": "", "orig_id": 1429359}}, {"model": "metainfo.source", "pk": 379, "fields": {"orig_filename": "Seefehlner_Egon-Ewald_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 97f.", "author": "", "orig_id": 1439335}}, {"model": "metainfo.source", "pk": 380, "fields": {"orig_filename": "Klein_Franz_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378", "author": "", "orig_id": 1418778}}, {"model": "metainfo.source", "pk": 381, "fields": {"orig_filename": "Soxhlet_Franz_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 438", "author": "", "orig_id": 1438508}}, {"model": "metainfo.source", "pk": 382, "fields": {"orig_filename": "Krenner_Jozsef-Sandor_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416013}}, {"model": "metainfo.source", "pk": 383, "fields": {"orig_filename": "Sava_Karl_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447", "author": "", "orig_id": 1408046}}, {"model": "metainfo.source", "pk": 384, "fields": {"orig_filename": "Halban_Hans_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157f.", "author": "", "orig_id": 1419254}}, {"model": "metainfo.source", "pk": 385, "fields": {"orig_filename": "Kowarz_Wilhelm-Maria_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416610}}, {"model": "metainfo.source", "pk": 386, "fields": {"orig_filename": "Herzfelder_Henriette_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417077}}, {"model": "metainfo.source", "pk": 387, "fields": {"orig_filename": "Stoessl_Otto_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298", "author": "", "orig_id": 1431896}}, {"model": "metainfo.source", "pk": 388, "fields": {"orig_filename": "Issleib_Ludwig_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414744}}, {"model": "metainfo.source", "pk": 389, "fields": {"orig_filename": "Lindenthaler_Michael_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412382}}, {"model": "metainfo.source", "pk": 390, "fields": {"orig_filename": "Spitzer_Josef-Anton_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 40f.", "author": "", "orig_id": 1429173}}, {"model": "metainfo.source", "pk": 391, "fields": {"orig_filename": "Krauss_Hans-Nikolaus_1861_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415723}}, {"model": "metainfo.source", "pk": 392, "fields": {"orig_filename": "Luksch_Richard-Joseph_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 367", "author": "", "orig_id": 1411289}}, {"model": "metainfo.source", "pk": 393, "fields": {"orig_filename": "Hatvany-Deutsch_Josef_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418493}}, {"model": "metainfo.source", "pk": 394, "fields": {"orig_filename": "Oberziner_Lodovico_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408585}}, {"model": "metainfo.source", "pk": 395, "fields": {"orig_filename": "Hausotter_Johann_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418680}}, {"model": "metainfo.source", "pk": 396, "fields": {"orig_filename": "Thornton_Jonathan_1776_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311", "author": "", "orig_id": 2264957}}, {"model": "metainfo.source", "pk": 397, "fields": {"orig_filename": "Thoroczkai-Wigand_Ede_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311f.", "author": "", "orig_id": 2175396}}, {"model": "metainfo.source", "pk": 398, "fields": {"orig_filename": "Thorsch_Alexander_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 312f.", "author": "", "orig_id": 1424538}}, {"model": "metainfo.source", "pk": 399, "fields": {"orig_filename": "Thorsch_Alphons_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313", "author": "", "orig_id": 1414481}}, {"model": "metainfo.source", "pk": 400, "fields": {"orig_filename": "Thorsch_David_1832_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313", "author": "", "orig_id": 2247326}}, {"model": "metainfo.source", "pk": 401, "fields": {"orig_filename": "Thorsch_Ernestine_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 2281795}}, {"model": "metainfo.source", "pk": 402, "fields": {"orig_filename": "Thorsch_Koppelmann_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313f.", "author": "", "orig_id": 2262624}}, {"model": "metainfo.source", "pk": 403, "fields": {"orig_filename": "Thorsch_Otto_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 1424541}}, {"model": "metainfo.source", "pk": 404, "fields": {"orig_filename": "Thorsch_Philipp_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 1424542}}, {"model": "metainfo.source", "pk": 405, "fields": {"orig_filename": "Thuemen_Felix_1839_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314f.", "author": "", "orig_id": 1424543}}, {"model": "metainfo.source", "pk": 406, "fields": {"orig_filename": "Thuerheim_Andreas-Joseph_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 315f.", "author": "", "orig_id": 1424545}}, {"model": "metainfo.source", "pk": 407, "fields": {"orig_filename": "Thuerheim_Louise_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 316", "author": "", "orig_id": 1424546}}, {"model": "metainfo.source", "pk": 408, "fields": {"orig_filename": "Thugut_Franz-Maria_1736_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 316f.", "author": "", "orig_id": 1424578}}, {"model": "metainfo.source", "pk": 409, "fields": {"orig_filename": "Thuille_Ludwig_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 317f.", "author": "", "orig_id": 1424581}}, {"model": "metainfo.source", "pk": 410, "fields": {"orig_filename": "Thullie_Maksymilian-Marceli_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 318f.", "author": "", "orig_id": 1424583}}, {"model": "metainfo.source", "pk": 411, "fields": {"orig_filename": "Thumser_Viktor_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320", "author": "", "orig_id": 1424631}}, {"model": "metainfo.source", "pk": 412, "fields": {"orig_filename": "Thum_Anton_1788_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 319", "author": "", "orig_id": 1424586}}, {"model": "metainfo.source", "pk": 413, "fields": {"orig_filename": "Thum_Theodor_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 319f.", "author": "", "orig_id": 1449321}}, {"model": "metainfo.source", "pk": 414, "fields": {"orig_filename": "Thun-Hohenstein-Salm-Reifferscheid_Christiane_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 329f.", "author": "", "orig_id": 1423753}}, {"model": "metainfo.source", "pk": 415, "fields": {"orig_filename": "Thun-Hohenstein-Salm-Reifferscheid_Oswald_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 330f.", "author": "", "orig_id": 1423714}}, {"model": "metainfo.source", "pk": 416, "fields": {"orig_filename": "Thun-Hohenstein_Franz-Anton_1809_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 323f.", "author": "", "orig_id": 1424114}}, {"model": "metainfo.source", "pk": 417, "fields": {"orig_filename": "Thun-Hohenstein_Franz_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 321f.", "author": "", "orig_id": 1424013}}, {"model": "metainfo.source", "pk": 418, "fields": {"orig_filename": "Thun-Hohenstein_Franz_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 322f.", "author": "", "orig_id": 1424117}}, {"model": "metainfo.source", "pk": 419, "fields": {"orig_filename": "Thun-Hohenstein_Friedrich_1810_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 324", "author": "", "orig_id": 1424118}}, {"model": "metainfo.source", "pk": 420, "fields": {"orig_filename": "Thun-Hohenstein_Galeazzo-Maria-Fra_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 324f.", "author": "", "orig_id": 1424153}}, {"model": "metainfo.source", "pk": 421, "fields": {"orig_filename": "Thun-Hohenstein_Guido_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 325", "author": "", "orig_id": 1424154}}, {"model": "metainfo.source", "pk": 422, "fields": {"orig_filename": "Thun-Hohenstein_Jaroslav_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 325f.", "author": "", "orig_id": 1443096}}, {"model": "metainfo.source", "pk": 423, "fields": {"orig_filename": "Thun-Hohenstein_Karl_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 326", "author": "", "orig_id": 1456388}}, {"model": "metainfo.source", "pk": 424, "fields": {"orig_filename": "Thun-Hohenstein_Leopold-Leonhard_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 327f.", "author": "", "orig_id": 1424149}}, {"model": "metainfo.source", "pk": 425, "fields": {"orig_filename": "Thun-Hohenstein_Leo_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 326f.", "author": "", "orig_id": 1424159}}, {"model": "metainfo.source", "pk": 426, "fields": {"orig_filename": "Thun-Hohenstein_Maximilian_1887_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 328f.", "author": "", "orig_id": 1424560}}, {"model": "metainfo.source", "pk": 427, "fields": {"orig_filename": "Thun-Hohenstein_Sigmund_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 329", "author": "", "orig_id": 1423752}}, {"model": "metainfo.source", "pk": 428, "fields": {"orig_filename": "Thurn-Taxis_Alexander_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331", "author": "", "orig_id": 1448599}}, {"model": "metainfo.source", "pk": 429, "fields": {"orig_filename": "Thurn-Taxis_Emerich_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331", "author": "", "orig_id": 1423762}}, {"model": "metainfo.source", "pk": 430, "fields": {"orig_filename": "Thurn-Taxis_Friedrich-Hannibal_1799_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331f.", "author": "", "orig_id": 1423763}}, {"model": "metainfo.source", "pk": 431, "fields": {"orig_filename": "Thurn-Taxis_Wilhelm_1801_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 332", "author": "", "orig_id": 1423811}}, {"model": "metainfo.source", "pk": 432, "fields": {"orig_filename": "Thurn-Valsassina-Como-Vercelli_Georg_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 333", "author": "", "orig_id": 1423860}}, {"model": "metainfo.source", "pk": 433, "fields": {"orig_filename": "Thurn-Valsassina_Gustav_1836_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 332f.", "author": "", "orig_id": 1423816}}, {"model": "metainfo.source", "pk": 434, "fields": {"orig_filename": "Thurnes_Heinrich_1833_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 333f.", "author": "", "orig_id": 1447456}}, {"model": "metainfo.source", "pk": 435, "fields": {"orig_filename": "Thurneyssen_Friedrich_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 334", "author": "", "orig_id": 1423866}}, {"model": "metainfo.source", "pk": 436, "fields": {"orig_filename": "Thurnher_Johann_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 334f.", "author": "", "orig_id": 1423869}}, {"model": "metainfo.source", "pk": 437, "fields": {"orig_filename": "Thurnher_Martin_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 335", "author": "", "orig_id": 1423870}}, {"model": "metainfo.source", "pk": 438, "fields": {"orig_filename": "Thurwieser_Peter-Karl_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 335f.", "author": "", "orig_id": 1423912}}, {"model": "metainfo.source", "pk": 439, "fields": {"orig_filename": "Thury_Zoltan_1870_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 336", "author": "", "orig_id": 2195847}}, {"model": "metainfo.source", "pk": 440, "fields": {"orig_filename": "Tichatschek_Joseph-Alois_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 336f.", "author": "", "orig_id": 1423956}}, {"model": "metainfo.source", "pk": 441, "fields": {"orig_filename": "Tichy_Hans_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 337f.", "author": "", "orig_id": 1423411}}, {"model": "metainfo.source", "pk": 442, "fields": {"orig_filename": "Tichy_Karol-Maria-Jozef_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 338", "author": "", "orig_id": 2166155}}, {"model": "metainfo.source", "pk": 443, "fields": {"orig_filename": "Tieber_Ben_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 338f.", "author": "", "orig_id": 1415068}}, {"model": "metainfo.source", "pk": 444, "fields": {"orig_filename": "Tiefenbacher_Ludwig-E_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 339", "author": "", "orig_id": 1423439}}, {"model": "metainfo.source", "pk": 445, "fields": {"orig_filename": "Tiefenthaler_Paula_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 339f.", "author": "", "orig_id": 1423504}}, {"model": "metainfo.source", "pk": 446, "fields": {"orig_filename": "Tieftrunk_Karel_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 340", "author": "", "orig_id": 1423505}}, {"model": "metainfo.source", "pk": 447, "fields": {"orig_filename": "Tietze_Emil_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 341f.", "author": "", "orig_id": 1423546}}, {"model": "metainfo.source", "pk": 448, "fields": {"orig_filename": "Tietz_Karl_1831_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 341", "author": "", "orig_id": 1423542}}, {"model": "metainfo.source", "pk": 449, "fields": {"orig_filename": "Tihanyi_Kalman_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 342f.", "author": "", "orig_id": 2195874}}, {"model": "metainfo.source", "pk": 450, "fields": {"orig_filename": "Tihanyi_Lajos_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 343", "author": "", "orig_id": 1423577}}, {"model": "metainfo.source", "pk": 451, "fields": {"orig_filename": "Tilgner_Friedrich-Rudolf_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 343f.", "author": "", "orig_id": 1423608}}, {"model": "metainfo.source", "pk": 452, "fields": {"orig_filename": "Tilgner_Victor-Oskar_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 344f.", "author": "", "orig_id": 1423685}}, {"model": "metainfo.source", "pk": 453, "fields": {"orig_filename": "Till-Kostryn_Ernst_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 346f.", "author": "", "orig_id": 2245535}}, {"model": "metainfo.source", "pk": 454, "fields": {"orig_filename": "Tiller-Turnfort_Karl_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348", "author": "", "orig_id": 1423728}}, {"model": "metainfo.source", "pk": 455, "fields": {"orig_filename": "Tiller_Karel_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348", "author": "", "orig_id": 1423725}}, {"model": "metainfo.source", "pk": 456, "fields": {"orig_filename": "Tille_Vaclav_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 347f.", "author": "", "orig_id": 1472596}}, {"model": "metainfo.source", "pk": 457, "fields": {"orig_filename": "Till_Johann_1827_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 345f.", "author": "", "orig_id": 1447460}}, {"model": "metainfo.source", "pk": 458, "fields": {"orig_filename": "Till_Leopold_1830_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 345f.", "author": "", "orig_id": 1423718}}, {"model": "metainfo.source", "pk": 459, "fields": {"orig_filename": "Till_Vinzenz_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 346", "author": "", "orig_id": 1423720}}, {"model": "metainfo.source", "pk": 460, "fields": {"orig_filename": "Tilser_Frantisek_1825_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348f.", "author": "", "orig_id": 1455775}}, {"model": "metainfo.source", "pk": 461, "fields": {"orig_filename": "Timar_Szaniszlo_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 349", "author": "", "orig_id": 1454709}}, {"model": "metainfo.source", "pk": 462, "fields": {"orig_filename": "Timeus_Ruggero_1892_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 349f.", "author": "", "orig_id": 2168227}}, {"model": "metainfo.source", "pk": 463, "fields": {"orig_filename": "Timon-Schmerrhoff-Szedlicsna_Akos_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 350", "author": "", "orig_id": 1458903}}, {"model": "metainfo.source", "pk": 464, "fields": {"orig_filename": "Tinkhauser_Johann-Nepomuk_1787_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 351", "author": "", "orig_id": 1423820}}, {"model": "metainfo.source", "pk": 465, "fields": {"orig_filename": "Tinter-Marienwil_Wilhelm_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 351f.", "author": "", "orig_id": 1423823}}, {"model": "metainfo.source", "pk": 466, "fields": {"orig_filename": "Tinti_Karl-Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 352", "author": "", "orig_id": 1423825}}, {"model": "metainfo.source", "pk": 467, "fields": {"orig_filename": "Tiring_Victor_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353", "author": "", "orig_id": 2246184}}, {"model": "metainfo.source", "pk": 468, "fields": {"orig_filename": "Tirka_Demeter-Theodor_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353", "author": "", "orig_id": 1423831}}, {"model": "metainfo.source", "pk": 469, "fields": {"orig_filename": "Tischer_Frantisek_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354", "author": "", "orig_id": 1423873}}, {"model": "metainfo.source", "pk": 470, "fields": {"orig_filename": "Tischer_Frantisek_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353f.", "author": "", "orig_id": 1423874}}, {"model": "metainfo.source", "pk": 471, "fields": {"orig_filename": "Tischler_Ludwig_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354", "author": "", "orig_id": 1423880}}, {"model": "metainfo.source", "pk": 472, "fields": {"orig_filename": "Tiso_Jozef_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354ff.", "author": "", "orig_id": 1423884}}, {"model": "metainfo.source", "pk": 473, "fields": {"orig_filename": "Tisza-Borosjenoe-Szeged_Istvan_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 357f.", "author": "", "orig_id": 1423886}}, {"model": "metainfo.source", "pk": 474, "fields": {"orig_filename": "Titl_Anton-Emil_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 358", "author": "", "orig_id": 1423926}}, {"model": "metainfo.source", "pk": 475, "fields": {"orig_filename": "Titta_Wenzel_1863_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 359", "author": "", "orig_id": 1423928}}, {"model": "metainfo.source", "pk": 476, "fields": {"orig_filename": "Tkac_Jaroslav_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 359f.", "author": "", "orig_id": 2172718}}, {"model": "metainfo.source", "pk": 477, "fields": {"orig_filename": "Tkany_Wilhelm_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 360", "author": "", "orig_id": 1423414}}, {"model": "metainfo.source", "pk": 478, "fields": {"orig_filename": "Tluchor_Alois_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 360f.", "author": "", "orig_id": 1423416}}, {"model": "metainfo.source", "pk": 479, "fields": {"orig_filename": "Tobiasek_Stanislav_1874_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 361", "author": "", "orig_id": 1423420}}, {"model": "metainfo.source", "pk": 480, "fields": {"orig_filename": "Tobner_Adolf_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 361f.", "author": "", "orig_id": 1423449}}, {"model": "metainfo.source", "pk": 481, "fields": {"orig_filename": "Todesco_Eduard_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 362f.", "author": "", "orig_id": 1444900}}, {"model": "metainfo.source", "pk": 482, "fields": {"orig_filename": "Todesco_Hermann_1791_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 363", "author": "", "orig_id": 1423647}}, {"model": "metainfo.source", "pk": 483, "fields": {"orig_filename": "Todesco_Max_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 363f.", "author": "", "orig_id": 1423648}}, {"model": "metainfo.source", "pk": 484, "fields": {"orig_filename": "Todesco_Sophie_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 364f.", "author": "", "orig_id": 1423651}}, {"model": "metainfo.source", "pk": 485, "fields": {"orig_filename": "Toegl_Martin-Albert_1753_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 365", "author": "", "orig_id": 1423660}}, {"model": "metainfo.source", "pk": 486, "fields": {"orig_filename": "Toelg_Franz_1877_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 365f.", "author": "", "orig_id": 1430741}}, {"model": "metainfo.source", "pk": 487, "fields": {"orig_filename": "Toelk_Josef_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1423658}}, {"model": "metainfo.source", "pk": 488, "fields": {"orig_filename": "Toeltenyi_Szaniszlo_1795_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366f.", "author": "", "orig_id": 1455930}}, {"model": "metainfo.source", "pk": 489, "fields": {"orig_filename": "Toemoerkeny_Istvan_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 367f.", "author": "", "orig_id": 1458604}}, {"model": "metainfo.source", "pk": 490, "fields": {"orig_filename": "Toepler_August-Joseph_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 368", "author": "", "orig_id": 1423694}}, {"model": "metainfo.source", "pk": 491, "fields": {"orig_filename": "Toeply_Robert_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 368f.", "author": "", "orig_id": 1423697}}, {"model": "metainfo.source", "pk": 492, "fields": {"orig_filename": "Tersztyanszky-Nadas_Karl_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 255f.", "author": "", "orig_id": 1424314}}, {"model": "metainfo.source", "pk": 493, "fields": {"orig_filename": "Terzky_Karl-August_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 256", "author": "", "orig_id": 1424313}}, {"model": "metainfo.source", "pk": 494, "fields": {"orig_filename": "Tesar_Frantisek_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 256f.", "author": "", "orig_id": 1452815}}, {"model": "metainfo.source", "pk": 495, "fields": {"orig_filename": "Teschner_Richard-Heinrich_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257ff.", "author": "", "orig_id": 1424389}}, {"model": "metainfo.source", "pk": 496, "fields": {"orig_filename": "Tesla_Nikola_1856_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 259f.", "author": "", "orig_id": 1424431}}, {"model": "metainfo.source", "pk": 497, "fields": {"orig_filename": "Tesnohlidek_Rudolf_1882_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 260", "author": "", "orig_id": 2173405}}, {"model": "metainfo.source", "pk": 498, "fields": {"orig_filename": "Tessedik_Ferenc_1800_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261", "author": "", "orig_id": 1451717}}, {"model": "metainfo.source", "pk": 499, "fields": {"orig_filename": "Tessedik_Samuel-Iii_1777_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261", "author": "", "orig_id": 1451723}}, {"model": "metainfo.source", "pk": 500, "fields": {"orig_filename": "Tessedik_Samuel-Ii_1742_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 260f.", "author": "", "orig_id": 1451722}}, {"model": "metainfo.source", "pk": 501, "fields": {"orig_filename": "Tessenow_Heinrich_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261f.", "author": "", "orig_id": 1424438}}, {"model": "metainfo.source", "pk": 502, "fields": {"orig_filename": "Testa_Bartholomaeus-Iii_1804_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262", "author": "", "orig_id": 1451728}}, {"model": "metainfo.source", "pk": 503, "fields": {"orig_filename": "Testa_Heinrich_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262f.", "author": "", "orig_id": 1424467}}, {"model": "metainfo.source", "pk": 504, "fields": {"orig_filename": "Testa_Heinrich_1821_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 1451726}}, {"model": "metainfo.source", "pk": 505, "fields": {"orig_filename": "Testa_Karl_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262", "author": "", "orig_id": 1451731}}, {"model": "metainfo.source", "pk": 506, "fields": {"orig_filename": "Tetmajer_Ludwig_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263f.", "author": "", "orig_id": 1424470}}, {"model": "metainfo.source", "pk": 507, "fields": {"orig_filename": "Tetmajer_Wlodzimierz_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 264f.", "author": "", "orig_id": 2167036}}, {"model": "metainfo.source", "pk": 508, "fields": {"orig_filename": "Tettenborn_Friedrich-Karl_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 265f.", "author": "", "orig_id": 1424472}}, {"model": "metainfo.source", "pk": 509, "fields": {"orig_filename": "Teuber_Emma_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266", "author": "", "orig_id": 2171732}}, {"model": "metainfo.source", "pk": 510, "fields": {"orig_filename": "Teuber_Josef_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 267f.", "author": "", "orig_id": 1424476}}, {"model": "metainfo.source", "pk": 511, "fields": {"orig_filename": "Teuber_Maurus_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 267", "author": "", "orig_id": 2202195}}, {"model": "metainfo.source", "pk": 512, "fields": {"orig_filename": "Teuber_Moritz_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269", "author": "", "orig_id": 1424477}}, {"model": "metainfo.source", "pk": 513, "fields": {"orig_filename": "Teuber_Oskar-Karl_1852_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 268", "author": "", "orig_id": 1424478}}, {"model": "metainfo.source", "pk": 514, "fields": {"orig_filename": "Teuber_Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269", "author": "", "orig_id": 1424516}}, {"model": "metainfo.source", "pk": 515, "fields": {"orig_filename": "Teuchert-Kauffmann-Traunsteinburg_Friedrich_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 270", "author": "", "orig_id": 1424517}}, {"model": "metainfo.source", "pk": 516, "fields": {"orig_filename": "Teuchert_Friedrich_1797_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269f.", "author": "", "orig_id": 1451793}}, {"model": "metainfo.source", "pk": 517, "fields": {"orig_filename": "Teuffenbach-Tiefenbach-Masswegg_Albin_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 270f.", "author": "", "orig_id": 1424523}}, {"model": "metainfo.source", "pk": 518, "fields": {"orig_filename": "Teutsch_Friedrich_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 271", "author": "", "orig_id": 1424524}}, {"model": "metainfo.source", "pk": 519, "fields": {"orig_filename": "Teutsch_Georg-Daniel_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 271f.", "author": "", "orig_id": 1422743}}, {"model": "metainfo.source", "pk": 520, "fields": {"orig_filename": "Teweles_Heinrich_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 273f.", "author": "", "orig_id": 1424605}}, {"model": "metainfo.source", "pk": 521, "fields": {"orig_filename": "Tewele_Franz_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 272f.", "author": "", "orig_id": 1424604}}, {"model": "metainfo.source", "pk": 522, "fields": {"orig_filename": "Tewes_August_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274", "author": "", "orig_id": 1424606}}, {"model": "metainfo.source", "pk": 523, "fields": {"orig_filename": "Teyber_Anton_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274f.", "author": "", "orig_id": 1424608}}, {"model": "metainfo.source", "pk": 524, "fields": {"orig_filename": "Teyber_Eleonora_1789_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274f.", "author": "", "orig_id": 1431988}}, {"model": "metainfo.source", "pk": 525, "fields": {"orig_filename": "Teyber_Elisabeth_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 1448326}}, {"model": "metainfo.source", "pk": 526, "fields": {"orig_filename": "Teyber_Elisabeth_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275", "author": "", "orig_id": 2182812}}, {"model": "metainfo.source", "pk": 527, "fields": {"orig_filename": "Teyber_Maria-Barbara-Francisca_1750_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 2281460}}, {"model": "metainfo.source", "pk": 528, "fields": {"orig_filename": "Teyber_Therese_1760_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 1448256}}, {"model": "metainfo.source", "pk": 529, "fields": {"orig_filename": "Tezner_Friedrich_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 276", "author": "", "orig_id": 1424609}}, {"model": "metainfo.source", "pk": 530, "fields": {"orig_filename": "Thaisz_Lajos_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 276f.", "author": "", "orig_id": 2195763}}, {"model": "metainfo.source", "pk": 531, "fields": {"orig_filename": "Thalberg_Sigismund_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277", "author": "", "orig_id": 1424641}}, {"model": "metainfo.source", "pk": 532, "fields": {"orig_filename": "Thaler_Andreas_1883_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277f.", "author": "", "orig_id": 1424643}}, {"model": "metainfo.source", "pk": 533, "fields": {"orig_filename": "Thaler_Franz-Christian_1759_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 278f.", "author": "", "orig_id": 1447652}}, {"model": "metainfo.source", "pk": 534, "fields": {"orig_filename": "Thaler_Josef_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 279", "author": "", "orig_id": 1424648}}, {"model": "metainfo.source", "pk": 535, "fields": {"orig_filename": "Thaler_Karl_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 279f.", "author": "", "orig_id": 1424680}}, {"model": "metainfo.source", "pk": 536, "fields": {"orig_filename": "Thaler_Rafael_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 280", "author": "", "orig_id": 1424682}}, {"model": "metainfo.source", "pk": 537, "fields": {"orig_filename": "Thalhammer_Janos_1847_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 280f.", "author": "", "orig_id": 2200131}}, {"model": "metainfo.source", "pk": 538, "fields": {"orig_filename": "Thaller_Kathi_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281", "author": "", "orig_id": 1424048}}, {"model": "metainfo.source", "pk": 539, "fields": {"orig_filename": "Thaller_Willi_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281f.", "author": "", "orig_id": 1423997}}, {"model": "metainfo.source", "pk": 540, "fields": {"orig_filename": "Thalloczy_Lajos_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 282f.", "author": "", "orig_id": 1424091}}, {"model": "metainfo.source", "pk": 541, "fields": {"orig_filename": "Thalmayr_Franz_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 283f.", "author": "", "orig_id": 1424050}}, {"model": "metainfo.source", "pk": 542, "fields": {"orig_filename": "Thaly_Kalman_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 284", "author": "", "orig_id": 1424093}}, {"model": "metainfo.source", "pk": 543, "fields": {"orig_filename": "Thaly_Zsigmond_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 284f.", "author": "", "orig_id": 1452118}}, {"model": "metainfo.source", "pk": 544, "fields": {"orig_filename": "Tham_Karel-Ignac_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 285f.", "author": "", "orig_id": 1452120}}, {"model": "metainfo.source", "pk": 545, "fields": {"orig_filename": "Tham_Vaclav_1765_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 285f.", "author": "", "orig_id": 1424094}}, {"model": "metainfo.source", "pk": 546, "fields": {"orig_filename": "Than-Nemesapat_Karoly_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 286f.", "author": "", "orig_id": 1424131}}, {"model": "metainfo.source", "pk": 547, "fields": {"orig_filename": "Than_Mor_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 286", "author": "", "orig_id": 1424095}}, {"model": "metainfo.source", "pk": 548, "fields": {"orig_filename": "Thausing_Moriz_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 287f.", "author": "", "orig_id": 1424137}}, {"model": "metainfo.source", "pk": 549, "fields": {"orig_filename": "Theer_Adolf_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288", "author": "", "orig_id": 1424141}}, {"model": "metainfo.source", "pk": 550, "fields": {"orig_filename": "Theer_Albert_1815_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288", "author": "", "orig_id": 1424181}}, {"model": "metainfo.source", "pk": 551, "fields": {"orig_filename": "Theer_Otakar_1880_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288f.", "author": "", "orig_id": 1424182}}, {"model": "metainfo.source", "pk": 552, "fields": {"orig_filename": "Theer_Robert_1808_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 289", "author": "", "orig_id": 1424183}}, {"model": "metainfo.source", "pk": 553, "fields": {"orig_filename": "Thek-Kisnarda_Endre_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 289f.", "author": "", "orig_id": 2195823}}, {"model": "metainfo.source", "pk": 554, "fields": {"orig_filename": "Thenen_Josef_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 290", "author": "", "orig_id": 1424360}}, {"model": "metainfo.source", "pk": 555, "fields": {"orig_filename": "Thenen_Julie_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 291", "author": "", "orig_id": 1424361}}, {"model": "metainfo.source", "pk": 556, "fields": {"orig_filename": "Thern_Karl_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 291f.", "author": "", "orig_id": 1424363}}, {"model": "metainfo.source", "pk": 557, "fields": {"orig_filename": "Thern_Louis_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424392}}, {"model": "metainfo.source", "pk": 558, "fields": {"orig_filename": "Thern_Wilhelm_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424393}}, {"model": "metainfo.source", "pk": 559, "fields": {"orig_filename": "Theuer_Max_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424398}}, {"model": "metainfo.source", "pk": 560, "fields": {"orig_filename": "Thewrewk-Ponor_Emil_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292f.", "author": "", "orig_id": 1455990}}, {"model": "metainfo.source", "pk": 561, "fields": {"orig_filename": "Thewrewk-Ponor_Jozsef_1793_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 293", "author": "", "orig_id": 1456041}}, {"model": "metainfo.source", "pk": 562, "fields": {"orig_filename": "Theyer_Franz-Seraphin_1809_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 294", "author": "", "orig_id": 1424403}}, {"model": "metainfo.source", "pk": 563, "fields": {"orig_filename": "Theyer_Leopold_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 294f.", "author": "", "orig_id": 1440559}}, {"model": "metainfo.source", "pk": 564, "fields": {"orig_filename": "Theyer_Theodor_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 295", "author": "", "orig_id": 1424404}}, {"model": "metainfo.source", "pk": 565, "fields": {"orig_filename": "Theyer_Theodor_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 295", "author": "", "orig_id": 1424405}}, {"model": "metainfo.source", "pk": 566, "fields": {"orig_filename": "Thiele_Franz_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 296f.", "author": "", "orig_id": 1424448}}, {"model": "metainfo.source", "pk": 567, "fields": {"orig_filename": "Thiele_Friedrich_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 297", "author": "", "orig_id": 1424450}}, {"model": "metainfo.source", "pk": 568, "fields": {"orig_filename": "Thielisch_Johann-Christian_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 297", "author": "", "orig_id": 1424483}}, {"model": "metainfo.source", "pk": 569, "fields": {"orig_filename": "Thiel_Viktor_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 296", "author": "", "orig_id": 1424444}}, {"model": "metainfo.source", "pk": 570, "fields": {"orig_filename": "Thienemann_Otto_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 298", "author": "", "orig_id": 1424528}}, {"model": "metainfo.source", "pk": 571, "fields": {"orig_filename": "Thimig_Hugo_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 298f.", "author": "", "orig_id": 1424652}}, {"model": "metainfo.source", "pk": 572, "fields": {"orig_filename": "Thinnfeld_Ferdinand_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 299f.", "author": "", "orig_id": 1456121}}, {"model": "metainfo.source", "pk": 573, "fields": {"orig_filename": "Thirring_Gusztav-Adolf_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 300", "author": "", "orig_id": 1458897}}, {"model": "metainfo.source", "pk": 574, "fields": {"orig_filename": "Thoeni_Christian_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 301", "author": "", "orig_id": 1424103}}, {"model": "metainfo.source", "pk": 575, "fields": {"orig_filename": "Thoeny_Eduard_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 300f.", "author": "", "orig_id": 1424106}}, {"model": "metainfo.source", "pk": 576, "fields": {"orig_filename": "Thoeny_Wilhelm_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 301f.", "author": "", "orig_id": 1424107}}, {"model": "metainfo.source", "pk": 577, "fields": {"orig_filename": "Thomas_Edward_1794_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 302f.", "author": "", "orig_id": 1424197}}, {"model": "metainfo.source", "pk": 578, "fields": {"orig_filename": "Thomas_Rudolf_1895_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 303f.", "author": "", "orig_id": 2256695}}, {"model": "metainfo.source", "pk": 579, "fields": {"orig_filename": "Thomayer_Frantisek_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 304", "author": "", "orig_id": 1424209}}, {"model": "metainfo.source", "pk": 580, "fields": {"orig_filename": "Thomayer_Josef_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 304f.", "author": "", "orig_id": 1424239}}, {"model": "metainfo.source", "pk": 581, "fields": {"orig_filename": "Thome_Franz_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 305f.", "author": "", "orig_id": 1424242}}, {"model": "metainfo.source", "pk": 582, "fields": {"orig_filename": "Thommen_Achilles_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 306f.", "author": "", "orig_id": 1424246}}, {"model": "metainfo.source", "pk": 583, "fields": {"orig_filename": "Thonet_August_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308f.", "author": "", "orig_id": 1424283}}, {"model": "metainfo.source", "pk": 584, "fields": {"orig_filename": "Thonet_Jakob_1841_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309", "author": "", "orig_id": 1424288}}, {"model": "metainfo.source", "pk": 585, "fields": {"orig_filename": "Thonet_Josef_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308", "author": "", "orig_id": 1424289}}, {"model": "metainfo.source", "pk": 586, "fields": {"orig_filename": "Thonet_Michael_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 307f.", "author": "", "orig_id": 1424487}}, {"model": "metainfo.source", "pk": 587, "fields": {"orig_filename": "Thonet_Michael_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308f.", "author": "", "orig_id": 2187975}}, {"model": "metainfo.source", "pk": 588, "fields": {"orig_filename": "Thonner_Franz_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309", "author": "", "orig_id": 1424492}}, {"model": "metainfo.source", "pk": 589, "fields": {"orig_filename": "Thon_Osias_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 307", "author": "", "orig_id": 1424247}}, {"model": "metainfo.source", "pk": 590, "fields": {"orig_filename": "Thoren_Otto_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309f.", "author": "", "orig_id": 1424498}}, {"model": "metainfo.source", "pk": 591, "fields": {"orig_filename": "Thorma_Janos_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 310f.", "author": "", "orig_id": 2167112}}, {"model": "metainfo.source", "pk": 592, "fields": {"orig_filename": "Thornton_Johann_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311", "author": "", "orig_id": 1424537}}, {"model": "metainfo.source", "pk": 593, "fields": {"orig_filename": "Tangl_Eduard-Joseph_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 195f.", "author": "", "orig_id": 1422659}}, {"model": "metainfo.source", "pk": 594, "fields": {"orig_filename": "Tangl_Karlmann_1799_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 196f.", "author": "", "orig_id": 1422691}}, {"model": "metainfo.source", "pk": 595, "fields": {"orig_filename": "Tangl_Michael_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 197f.", "author": "", "orig_id": 1422692}}, {"model": "metainfo.source", "pk": 596, "fields": {"orig_filename": "Tantardini_Antonio_1829_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198", "author": "", "orig_id": 1422737}}, {"model": "metainfo.source", "pk": 597, "fields": {"orig_filename": "Tanzer_Valentin-Leopold_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198", "author": "", "orig_id": 2141313}}, {"model": "metainfo.source", "pk": 598, "fields": {"orig_filename": "Tappeiner-Tappein_Franz_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198ff.", "author": "", "orig_id": 1422782}}, {"model": "metainfo.source", "pk": 599, "fields": {"orig_filename": "Tappeiner-Tappein_Hermann_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 199f.", "author": "", "orig_id": 1422200}}, {"model": "metainfo.source", "pk": 600, "fields": {"orig_filename": "Tapper_Josef_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200", "author": "", "orig_id": 1422201}}, {"model": "metainfo.source", "pk": 601, "fields": {"orig_filename": "Tarnai_Janos_1843_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200f.", "author": "", "orig_id": 1422237}}, {"model": "metainfo.source", "pk": 602, "fields": {"orig_filename": "Tarnavschi_Teodor_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200f.", "author": "", "orig_id": 1422238}}, {"model": "metainfo.source", "pk": 603, "fields": {"orig_filename": "Tarnavschi_Vasile_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 201", "author": "", "orig_id": 1422239}}, {"model": "metainfo.source", "pk": 604, "fields": {"orig_filename": "Tarnoczy-Sprinzenberg_Bertha_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 202f.", "author": "", "orig_id": 1422241}}, {"model": "metainfo.source", "pk": 605, "fields": {"orig_filename": "Tarnoczy_Maximilian-Joseph_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 201f.", "author": "", "orig_id": 1422245}}, {"model": "metainfo.source", "pk": 606, "fields": {"orig_filename": "Tarnowski_Adam_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 203", "author": "", "orig_id": 1422272}}, {"model": "metainfo.source", "pk": 607, "fields": {"orig_filename": "Tarnowski_Jan-Dzierzyslaw_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 204", "author": "", "orig_id": 1422274}}, {"model": "metainfo.source", "pk": 608, "fields": {"orig_filename": "Tarnowski_Jan-Felix-Amor_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 203f.", "author": "", "orig_id": 1422283}}, {"model": "metainfo.source", "pk": 609, "fields": {"orig_filename": "Tarnowski_Stanislaw_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 204f.", "author": "", "orig_id": 1422311}}, {"model": "metainfo.source", "pk": 610, "fields": {"orig_filename": "Tarnowski_Wladyslaw_1836_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 205", "author": "", "orig_id": 1422312}}, {"model": "metainfo.source", "pk": 611, "fields": {"orig_filename": "Tartaruga_Ubald_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 205f.", "author": "", "orig_id": 1424428}}, {"model": "metainfo.source", "pk": 612, "fields": {"orig_filename": "Tauber_Alfred_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 207f.", "author": "", "orig_id": 1422397}}, {"model": "metainfo.source", "pk": 613, "fields": {"orig_filename": "Tauber_Anton-Richard_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 209f.", "author": "", "orig_id": 1422400}}, {"model": "metainfo.source", "pk": 614, "fields": {"orig_filename": "Tauber_Josef-Samuel_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208", "author": "", "orig_id": 1422406}}, {"model": "metainfo.source", "pk": 615, "fields": {"orig_filename": "Taubes-Lebenswarth_Johann_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 210", "author": "", "orig_id": 1422329}}, {"model": "metainfo.source", "pk": 616, "fields": {"orig_filename": "Taubes_Loebl_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 210", "author": "", "orig_id": 1422327}}, {"model": "metainfo.source", "pk": 617, "fields": {"orig_filename": "Taube_Erika_1913_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 207", "author": "", "orig_id": 1824004}}, {"model": "metainfo.source", "pk": 618, "fields": {"orig_filename": "Taub_Siegfried_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 206f.", "author": "", "orig_id": 1443032}}, {"model": "metainfo.source", "pk": 619, "fields": {"orig_filename": "Taufer_Josef_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 211", "author": "", "orig_id": 1422367}}, {"model": "metainfo.source", "pk": 620, "fields": {"orig_filename": "Tauffer_Vilmos_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 211f.", "author": "", "orig_id": 1422370}}, {"model": "metainfo.source", "pk": 621, "fields": {"orig_filename": "Taurer-Gallenstein_Anton_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 213", "author": "", "orig_id": 1422374}}, {"model": "metainfo.source", "pk": 622, "fields": {"orig_filename": "Taurer-Gallenstein_Hans_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 212f.", "author": "", "orig_id": 1422375}}, {"model": "metainfo.source", "pk": 623, "fields": {"orig_filename": "Taurer-Gallenstein_Johann-Nepomuk_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 213", "author": "", "orig_id": 1422376}}, {"model": "metainfo.source", "pk": 624, "fields": {"orig_filename": "Tausch-Gloeckelsthurn_Leopold_1858_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 214f.", "author": "", "orig_id": 1422410}}, {"model": "metainfo.source", "pk": 625, "fields": {"orig_filename": "Tauschek_Gustav_1899_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 215", "author": "", "orig_id": 1422416}}, {"model": "metainfo.source", "pk": 626, "fields": {"orig_filename": "Tauscher_Gyula-Agoston_1833_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 215f.", "author": "", "orig_id": 2210139}}, {"model": "metainfo.source", "pk": 627, "fields": {"orig_filename": "Tauschinski_Hippolyt_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 216", "author": "", "orig_id": 1424291}}, {"model": "metainfo.source", "pk": 628, "fields": {"orig_filename": "Tausch_Ignaz-Friedrich_1793_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 214", "author": "", "orig_id": 1422407}}, {"model": "metainfo.source", "pk": 629, "fields": {"orig_filename": "Tausenau_Karl_1813_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 216f.", "author": "", "orig_id": 1424295}}, {"model": "metainfo.source", "pk": 630, "fields": {"orig_filename": "Tausk_Viktor_1879_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 217f.", "author": "", "orig_id": 1424329}}, {"model": "metainfo.source", "pk": 631, "fields": {"orig_filename": "Taussig_Ervin_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 218f.", "author": "", "orig_id": 2173303}}, {"model": "metainfo.source", "pk": 632, "fields": {"orig_filename": "Taussig_Helene_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 219", "author": "", "orig_id": 1424337}}, {"model": "metainfo.source", "pk": 633, "fields": {"orig_filename": "Taussig_Otto_1879_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 219f.", "author": "", "orig_id": 1424340}}, {"model": "metainfo.source", "pk": 634, "fields": {"orig_filename": "Taussig_Sigmund_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 220f.", "author": "", "orig_id": 1424341}}, {"model": "metainfo.source", "pk": 635, "fields": {"orig_filename": "Taussig_Theodor_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 221f.", "author": "", "orig_id": 1424138}}, {"model": "metainfo.source", "pk": 636, "fields": {"orig_filename": "Tautenhayn_Ernst_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424372}}, {"model": "metainfo.source", "pk": 637, "fields": {"orig_filename": "Tautenhayn_Josef_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 222f.", "author": "", "orig_id": 1424459}}, {"model": "metainfo.source", "pk": 638, "fields": {"orig_filename": "Tautenhayn_Karl_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424460}}, {"model": "metainfo.source", "pk": 639, "fields": {"orig_filename": "Tautenhayn_Richard_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424461}}, {"model": "metainfo.source", "pk": 640, "fields": {"orig_filename": "Taux_Alois_1817_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223f.", "author": "", "orig_id": 1424463}}, {"model": "metainfo.source", "pk": 641, "fields": {"orig_filename": "Taux_Anna_1820_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224", "author": "", "orig_id": 1452531}}, {"model": "metainfo.source", "pk": 642, "fields": {"orig_filename": "Tavcar_Franja_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224f.", "author": "", "orig_id": 2167958}}, {"model": "metainfo.source", "pk": 643, "fields": {"orig_filename": "Tavcar_Ivan_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224f.", "author": "", "orig_id": 1424465}}, {"model": "metainfo.source", "pk": 644, "fields": {"orig_filename": "Tavella_Franz_1844_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 225", "author": "", "orig_id": 1424466}}, {"model": "metainfo.source", "pk": 645, "fields": {"orig_filename": "Tayerle_Rudolf_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 225f.", "author": "", "orig_id": 2202879}}, {"model": "metainfo.source", "pk": 646, "fields": {"orig_filename": "Techet_Carl_1877_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 226", "author": "", "orig_id": 1424504}}, {"model": "metainfo.source", "pk": 647, "fields": {"orig_filename": "Teclu_Nicolae_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 227", "author": "", "orig_id": 1424509}}, {"model": "metainfo.source", "pk": 648, "fields": {"orig_filename": "Tegetthoff_Karl_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 227f.", "author": "", "orig_id": 1424548}}, {"model": "metainfo.source", "pk": 649, "fields": {"orig_filename": "Tegetthoff_Wilhelm_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 228", "author": "", "orig_id": 1424549}}, {"model": "metainfo.source", "pk": 650, "fields": {"orig_filename": "Teglas_Gabor_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 228f.", "author": "", "orig_id": 1452545}}, {"model": "metainfo.source", "pk": 651, "fields": {"orig_filename": "Teichgraeber_Franz_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 229", "author": "", "orig_id": 1424354}}, {"model": "metainfo.source", "pk": 652, "fields": {"orig_filename": "Teige_Josef_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 229f.", "author": "", "orig_id": 1424559}}, {"model": "metainfo.source", "pk": 653, "fields": {"orig_filename": "Teimer-Wildau_Martin-Rochus_1778_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 230", "author": "", "orig_id": 1424588}}, {"model": "metainfo.source", "pk": 654, "fields": {"orig_filename": "Teirich_Ferdinand_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 230f.", "author": "", "orig_id": 1424592}}, {"model": "metainfo.source", "pk": 655, "fields": {"orig_filename": "Teirich_Valentin_1844_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 231f.", "author": "", "orig_id": 1424594}}, {"model": "metainfo.source", "pk": 656, "fields": {"orig_filename": "Teisseyre_Karol-Wawrzyniec_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 232", "author": "", "orig_id": 2208573}}, {"model": "metainfo.source", "pk": 657, "fields": {"orig_filename": "Telcs_Ede_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 232f.", "author": "", "orig_id": 1424599}}, {"model": "metainfo.source", "pk": 658, "fields": {"orig_filename": "Teleki-Szek_Blanka_1806_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 233f.", "author": "", "orig_id": 1424675}}, {"model": "metainfo.source", "pk": 659, "fields": {"orig_filename": "Teleki-Szek_Jozsef_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 234", "author": "", "orig_id": 1424633}}, {"model": "metainfo.source", "pk": 660, "fields": {"orig_filename": "Teleki-Szek_Juliska_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 234", "author": "", "orig_id": 1424634}}, {"model": "metainfo.source", "pk": 661, "fields": {"orig_filename": "Teleki-Szek_Laszlo_1764_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 235", "author": "", "orig_id": 1424635}}, {"model": "metainfo.source", "pk": 662, "fields": {"orig_filename": "Teleki-Szek_Laszlo_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135f.", "author": "", "orig_id": 1424679}}, {"model": "metainfo.source", "pk": 663, "fields": {"orig_filename": "Teleki-Szek_Pal_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 236f.", "author": "", "orig_id": 1424029}}, {"model": "metainfo.source", "pk": 664, "fields": {"orig_filename": "Teleki-Szek_Samuel_1739_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 237", "author": "", "orig_id": 1452681}}, {"model": "metainfo.source", "pk": 665, "fields": {"orig_filename": "Teleki-Szek_Samuel_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 238", "author": "", "orig_id": 1424024}}, {"model": "metainfo.source", "pk": 666, "fields": {"orig_filename": "Teleki-Szek_Sandor_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 238f.", "author": "", "orig_id": 1452612}}, {"model": "metainfo.source", "pk": 667, "fields": {"orig_filename": "Telepy_Gyoergy_1800_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 239f.", "author": "", "orig_id": 1452737}}, {"model": "metainfo.source", "pk": 668, "fields": {"orig_filename": "Telepy_Karoly_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 240", "author": "", "orig_id": 1424030}}, {"model": "metainfo.source", "pk": 669, "fields": {"orig_filename": "Telfner_Josef_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 240", "author": "", "orig_id": 1424032}}, {"model": "metainfo.source", "pk": 670, "fields": {"orig_filename": "Telfy_Ivan_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241", "author": "", "orig_id": 1452739}}, {"model": "metainfo.source", "pk": 671, "fields": {"orig_filename": "Teller_Alfred_1881_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241f.", "author": "", "orig_id": 2162627}}, {"model": "metainfo.source", "pk": 672, "fields": {"orig_filename": "Teller_Friedrich_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 242f.", "author": "", "orig_id": 1424038}}, {"model": "metainfo.source", "pk": 673, "fields": {"orig_filename": "Telle_Carl_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241", "author": "", "orig_id": 1424035}}, {"model": "metainfo.source", "pk": 674, "fields": {"orig_filename": "Telmann_Fritz_1873_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 243", "author": "", "orig_id": 1424075}}, {"model": "metainfo.source", "pk": 675, "fields": {"orig_filename": "Teltscher_Josef-Eduard_1801_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 243f.", "author": "", "orig_id": 1424077}}, {"model": "metainfo.source", "pk": 676, "fields": {"orig_filename": "Temesvary_Rezsoe_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 244", "author": "", "orig_id": 1454705}}, {"model": "metainfo.source", "pk": 677, "fields": {"orig_filename": "Temple_Hans_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 244f.", "author": "", "orig_id": 1424087}}, {"model": "metainfo.source", "pk": 678, "fields": {"orig_filename": "Tempsky_Karl-Friedrich-Rudolph_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 245f.", "author": "", "orig_id": 1424121}}, {"model": "metainfo.source", "pk": 679, "fields": {"orig_filename": "Tencer_Pal_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 246", "author": "", "orig_id": 1454707}}, {"model": "metainfo.source", "pk": 680, "fields": {"orig_filename": "Tendler_Franz_1790_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 246f.", "author": "", "orig_id": 1828342}}, {"model": "metainfo.source", "pk": 681, "fields": {"orig_filename": "Tendler_Franz_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 247", "author": "", "orig_id": 1424124}}, {"model": "metainfo.source", "pk": 682, "fields": {"orig_filename": "Tendler_Johann-Max_1811_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 248", "author": "", "orig_id": 1424125}}, {"model": "metainfo.source", "pk": 683, "fields": {"orig_filename": "Tendler_Johann-Patriz_1777_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 247f.", "author": "", "orig_id": 1447379}}, {"model": "metainfo.source", "pk": 684, "fields": {"orig_filename": "Tendler_Mathias_1753_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 248f.", "author": "", "orig_id": 1424130}}, {"model": "metainfo.source", "pk": 685, "fields": {"orig_filename": "Tengler_Theodor_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 249", "author": "", "orig_id": 2189010}}, {"model": "metainfo.source", "pk": 686, "fields": {"orig_filename": "Tennenbaum_Ludwig_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 249f.", "author": "", "orig_id": 1424164}}, {"model": "metainfo.source", "pk": 687, "fields": {"orig_filename": "Teodorowicz_Jozef-Teofil_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 250", "author": "", "orig_id": 1424180}}, {"model": "metainfo.source", "pk": 688, "fields": {"orig_filename": "Teply_Frantisek_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 251f.", "author": "", "orig_id": 2173349}}, {"model": "metainfo.source", "pk": 689, "fields": {"orig_filename": "Terc_Filip_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 252f.", "author": "", "orig_id": 2141244}}, {"model": "metainfo.source", "pk": 690, "fields": {"orig_filename": "Terey_Gabor_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 253", "author": "", "orig_id": 1424223}}, {"model": "metainfo.source", "pk": 691, "fields": {"orig_filename": "Terpinc_Fidelis_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 253f.", "author": "", "orig_id": 1424265}}, {"model": "metainfo.source", "pk": 692, "fields": {"orig_filename": "Terschak_Emil_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 254f.", "author": "", "orig_id": 1424268}}, {"model": "metainfo.source", "pk": 693, "fields": {"orig_filename": "Szentgyoergyi_Istvan_1842_1931.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1456743}}, {"model": "metainfo.source", "pk": 694, "fields": {"orig_filename": "Szentirmay_Elemer_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145", "author": "", "orig_id": 1459184}}, {"model": "metainfo.source", "pk": 695, "fields": {"orig_filename": "Szentkereszti-Zagon_Sigmund_1745_1823.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435288}}, {"model": "metainfo.source", "pk": 696, "fields": {"orig_filename": "Szentkiralyi-Komjatszegi_Akos_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145f.", "author": "", "orig_id": 1459185}}, {"model": "metainfo.source", "pk": 697, "fields": {"orig_filename": "Szentkiralyi-Komjatszegi_Zsigmond_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145f.", "author": "", "orig_id": 2134411}}, {"model": "metainfo.source", "pk": 698, "fields": {"orig_filename": "Szentpeteri_Jozsef_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 146", "author": "", "orig_id": 1435349}}, {"model": "metainfo.source", "pk": 699, "fields": {"orig_filename": "Szentpetery-Sajoszentpeter_Zsigmond_1798_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 146f.", "author": "", "orig_id": 1459188}}, {"model": "metainfo.source", "pk": 700, "fields": {"orig_filename": "Szeparowicz_Johann_1843_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 147", "author": "", "orig_id": 2170466}}, {"model": "metainfo.source", "pk": 701, "fields": {"orig_filename": "Szepesy_Ignac_1780_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 147f.", "author": "", "orig_id": 1434553}}, {"model": "metainfo.source", "pk": 702, "fields": {"orig_filename": "Szeps_Julius_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 148", "author": "", "orig_id": 1434560}}, {"model": "metainfo.source", "pk": 703, "fields": {"orig_filename": "Szeps_Moritz_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 148f.", "author": "", "orig_id": 1434563}}, {"model": "metainfo.source", "pk": 704, "fields": {"orig_filename": "Szeptycki-Szeptyce_Andrej_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 149f.", "author": "", "orig_id": 1434601}}, {"model": "metainfo.source", "pk": 705, "fields": {"orig_filename": "Szeptycki-Szeptyce_Jan-Kanty_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2199910}}, {"model": "metainfo.source", "pk": 706, "fields": {"orig_filename": "Szeptycki-Szeptyce_Klemens_1869_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2159182}}, {"model": "metainfo.source", "pk": 707, "fields": {"orig_filename": "Szeptycki-Szeptyce_Stanislaw_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 151", "author": "", "orig_id": 1434602}}, {"model": "metainfo.source", "pk": 708, "fields": {"orig_filename": "Szerb_Antal_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2081817}}, {"model": "metainfo.source", "pk": 709, "fields": {"orig_filename": "Szerdahelyi_Jozsef_1804_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 151f.", "author": "", "orig_id": 1434606}}, {"model": "metainfo.source", "pk": 710, "fields": {"orig_filename": "Szerdahelyi_Kalman_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 152", "author": "", "orig_id": 1434603}}, {"model": "metainfo.source", "pk": 711, "fields": {"orig_filename": "Szerelmey_Miklos_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 152f.", "author": "", "orig_id": 1434612}}, {"model": "metainfo.source", "pk": 712, "fields": {"orig_filename": "Szigeti_Imre_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1459250}}, {"model": "metainfo.source", "pk": 713, "fields": {"orig_filename": "Szigeti_Jolan_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1456899}}, {"model": "metainfo.source", "pk": 714, "fields": {"orig_filename": "Szigeti_Jozsef_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1434666}}, {"model": "metainfo.source", "pk": 715, "fields": {"orig_filename": "Szika_Jani_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154f.", "author": "", "orig_id": 1434718}}, {"model": "metainfo.source", "pk": 716, "fields": {"orig_filename": "Szilagyi-Szilagysomlo-Horogszegh_Lilla_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 157f.", "author": "", "orig_id": 1459252}}, {"model": "metainfo.source", "pk": 717, "fields": {"orig_filename": "Szilagyi-Szilagysomlo-Horogszegh_Pal_1793_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 157f.", "author": "", "orig_id": 1434827}}, {"model": "metainfo.source", "pk": 718, "fields": {"orig_filename": "Szilagyi_Dezsoe_1840_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 155f.", "author": "", "orig_id": 1434668}}, {"model": "metainfo.source", "pk": 719, "fields": {"orig_filename": "Szilagyi_Ete_1844_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 155f.", "author": "", "orig_id": 1459261}}, {"model": "metainfo.source", "pk": 720, "fields": {"orig_filename": "Szilagyi_Ferenc_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156", "author": "", "orig_id": 1434768}}, {"model": "metainfo.source", "pk": 721, "fields": {"orig_filename": "Szilagyi_Ferenc_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156", "author": "", "orig_id": 1434770}}, {"model": "metainfo.source", "pk": 722, "fields": {"orig_filename": "Szilagyi_Sandor_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156f.", "author": "", "orig_id": 1434763}}, {"model": "metainfo.source", "pk": 723, "fields": {"orig_filename": "Szilasy_Janos_1795_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158", "author": "", "orig_id": 1434836}}, {"model": "metainfo.source", "pk": 724, "fields": {"orig_filename": "Szily-Nagyszigeth_Kalman_1838_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 159f.", "author": "", "orig_id": 1434960}}, {"model": "metainfo.source", "pk": 725, "fields": {"orig_filename": "Szily-Szilsarkany_Adolf_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 160", "author": "", "orig_id": 1434894}}, {"model": "metainfo.source", "pk": 726, "fields": {"orig_filename": "Szily_Aurel_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158f.", "author": "", "orig_id": 1434898}}, {"model": "metainfo.source", "pk": 727, "fields": {"orig_filename": "Szily_Pal_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158f.", "author": "", "orig_id": 2154427}}, {"model": "metainfo.source", "pk": 728, "fields": {"orig_filename": "Szinnyei_Ferenc_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161", "author": "", "orig_id": 2163355}}, {"model": "metainfo.source", "pk": 729, "fields": {"orig_filename": "Szinnyei_Jozsef_1830_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 160f.", "author": "", "orig_id": 1434968}}, {"model": "metainfo.source", "pk": 730, "fields": {"orig_filename": "Szinnyei_Jozsef_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161", "author": "", "orig_id": 1434969}}, {"model": "metainfo.source", "pk": 731, "fields": {"orig_filename": "Szinyei-Merse_Pal_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161f.", "author": "", "orig_id": 1434971}}, {"model": "metainfo.source", "pk": 732, "fields": {"orig_filename": "Szkalnitzky_Antal_1836_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 162f.", "author": "", "orig_id": 1435037}}, {"model": "metainfo.source", "pk": 733, "fields": {"orig_filename": "Szlavy-Erkenez-Okany_Jozsef_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 163f.", "author": "", "orig_id": 1435047}}, {"model": "metainfo.source", "pk": 734, "fields": {"orig_filename": "Szmrecsanyi_Lajos_1851_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164", "author": "", "orig_id": 1457146}}, {"model": "metainfo.source", "pk": 735, "fields": {"orig_filename": "Szmrecsanyi_Pal_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164", "author": "", "orig_id": 1435108}}, {"model": "metainfo.source", "pk": 736, "fields": {"orig_filename": "Szoboszlai-Pap_Istvan_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164f.", "author": "", "orig_id": 1435113}}, {"model": "metainfo.source", "pk": 737, "fields": {"orig_filename": "Szoedy_Szilard_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 165", "author": "", "orig_id": 1432895}}, {"model": "metainfo.source", "pk": 738, "fields": {"orig_filename": "Szoegyeny-Magyarszoegyen_Zsigmond_1775_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 166f.", "author": "", "orig_id": 1435123}}, {"model": "metainfo.source", "pk": 739, "fields": {"orig_filename": "Szoegyeny-Marich-Magyarszoegyen-Szolgaegyhaza_Laszlo_1806_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 165ff.", "author": "", "orig_id": 1435121}}, {"model": "metainfo.source", "pk": 740, "fields": {"orig_filename": "Szoegyeny-Marich-Magyarszoegyen-Szolgaegyhaza_Laszlo_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 167", "author": "", "orig_id": 1435167}}, {"model": "metainfo.source", "pk": 741, "fields": {"orig_filename": "Szoelloesy-Szabo_Lajos_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 167f.", "author": "", "orig_id": 1435174}}, {"model": "metainfo.source", "pk": 742, "fields": {"orig_filename": "Szoelloesy-Szabo_Roza_1841_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 168", "author": "", "orig_id": 2252336}}, {"model": "metainfo.source", "pk": 743, "fields": {"orig_filename": "Szoenyi_Otto_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 168f.", "author": "", "orig_id": 1435177}}, {"model": "metainfo.source", "pk": 744, "fields": {"orig_filename": "Szoldatits_Ferenc_1820_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 169", "author": "", "orig_id": 1435181}}, {"model": "metainfo.source", "pk": 745, "fields": {"orig_filename": "Szold_Benjamin_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1437733}}, {"model": "metainfo.source", "pk": 746, "fields": {"orig_filename": "Szombathy_Josef_1853_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 169f.", "author": "", "orig_id": 1435419}}, {"model": "metainfo.source", "pk": 747, "fields": {"orig_filename": "Szomory_Dezsoe_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 170", "author": "", "orig_id": 2194367}}, {"model": "metainfo.source", "pk": 748, "fields": {"orig_filename": "Szontagh-Iglo-Zabar_Abraham_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 172f.", "author": "", "orig_id": 1435425}}, {"model": "metainfo.source", "pk": 749, "fields": {"orig_filename": "Szontagh-Iglo-Zabar_Pal_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 173", "author": "", "orig_id": 1457151}}, {"model": "metainfo.source", "pk": 750, "fields": {"orig_filename": "Szontagh-Iglo_Gusztav-Adolf_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 170f.", "author": "", "orig_id": 1435429}}, {"model": "metainfo.source", "pk": 751, "fields": {"orig_filename": "Szontagh-Iglo_Miklos_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 171f.", "author": "", "orig_id": 1435430}}, {"model": "metainfo.source", "pk": 752, "fields": {"orig_filename": "Szontagh-Iglo_Tamas_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 172", "author": "", "orig_id": 1457152}}, {"model": "metainfo.source", "pk": 753, "fields": {"orig_filename": "Sztavjanik_Gustav_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 173f.", "author": "", "orig_id": 1427136}}, {"model": "metainfo.source", "pk": 754, "fields": {"orig_filename": "Szterenyi-Brasso_Jozsef_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 174f.", "author": "", "orig_id": 1434791}}, {"model": "metainfo.source", "pk": 755, "fields": {"orig_filename": "Szterenyi_Hugo_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 174", "author": "", "orig_id": 1437734}}, {"model": "metainfo.source", "pk": 756, "fields": {"orig_filename": "Sztoczek_Jozsef_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 175", "author": "", "orig_id": 1434793}}, {"model": "metainfo.source", "pk": 757, "fields": {"orig_filename": "Sztupa_Andor_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 175f.", "author": "", "orig_id": 2180773}}, {"model": "metainfo.source", "pk": 758, "fields": {"orig_filename": "Szujski_Jozef_1835_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 176", "author": "", "orig_id": 1435133}}, {"model": "metainfo.source", "pk": 759, "fields": {"orig_filename": "Szulislawski_Adam_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 176f.", "author": "", "orig_id": 2194357}}, {"model": "metainfo.source", "pk": 760, "fields": {"orig_filename": "Szuper_Karoly_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 177", "author": "", "orig_id": 1457963}}, {"model": "metainfo.source", "pk": 761, "fields": {"orig_filename": "Szuppan_Zsigmond_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 177f.", "author": "", "orig_id": 1435138}}, {"model": "metainfo.source", "pk": 762, "fields": {"orig_filename": "Szvorenyi_Jozsef_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178f.", "author": "", "orig_id": 1435185}}, {"model": "metainfo.source", "pk": 763, "fields": {"orig_filename": "Szymonowicz_Grzegorz-Michal_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 179f.", "author": "", "orig_id": 1435189}}, {"model": "metainfo.source", "pk": 764, "fields": {"orig_filename": "Szymonowicz_Jan-Jakub_1740_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 179f.", "author": "", "orig_id": 1435192}}, {"model": "metainfo.source", "pk": 765, "fields": {"orig_filename": "Szymonowicz_Wladyslaw_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 180", "author": "", "orig_id": 2189328}}, {"model": "metainfo.source", "pk": 766, "fields": {"orig_filename": "Szyszylowicz_Ignaz_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 180f.", "author": "", "orig_id": 2141207}}, {"model": "metainfo.source", "pk": 767, "fields": {"orig_filename": "Taaffe_Eduard-Franz-Joseph_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 181f.", "author": "", "orig_id": 1422721}}, {"model": "metainfo.source", "pk": 768, "fields": {"orig_filename": "Taaffe_Ludwig-Patrick-Johannes_1791_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 182f.", "author": "", "orig_id": 1422724}}, {"model": "metainfo.source", "pk": 769, "fields": {"orig_filename": "Tabacchi_Odoardo_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 183", "author": "", "orig_id": 2133986}}, {"model": "metainfo.source", "pk": 770, "fields": {"orig_filename": "Taborsky_Frantisek_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 183f.", "author": "", "orig_id": 1422772}}, {"model": "metainfo.source", "pk": 771, "fields": {"orig_filename": "Taenzer_Aron-Arnold_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 185", "author": "", "orig_id": 1422391}}, {"model": "metainfo.source", "pk": 772, "fields": {"orig_filename": "Taganyi_Karoly_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 186f.", "author": "", "orig_id": 1457972}}, {"model": "metainfo.source", "pk": 773, "fields": {"orig_filename": "Taglang_Hugo_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 187f.", "author": "", "orig_id": 1422511}}, {"model": "metainfo.source", "pk": 774, "fields": {"orig_filename": "Taglicht_Israel_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188", "author": "", "orig_id": 1422513}}, {"model": "metainfo.source", "pk": 775, "fields": {"orig_filename": "Taglioni_Filippo_1777_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188f.", "author": "", "orig_id": 1452382}}, {"model": "metainfo.source", "pk": 776, "fields": {"orig_filename": "Taglioni_Marie_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188f.", "author": "", "orig_id": 1422516}}, {"model": "metainfo.source", "pk": 777, "fields": {"orig_filename": "Taglioni_Marie_1833_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 1422536}}, {"model": "metainfo.source", "pk": 778, "fields": {"orig_filename": "Taglioni_Paul_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 1422535}}, {"model": "metainfo.source", "pk": 779, "fields": {"orig_filename": "Taglioni_Salvatore_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 2252495}}, {"model": "metainfo.source", "pk": 780, "fields": {"orig_filename": "Takacs_Menyhert-Ferenc_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189f.", "author": "", "orig_id": 1457974}}, {"model": "metainfo.source", "pk": 781, "fields": {"orig_filename": "Talatzko-Gestieticz_Johann-Adam_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 191", "author": "", "orig_id": 1422576}}, {"model": "metainfo.source", "pk": 782, "fields": {"orig_filename": "Tallyai_Daniel_1760_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 191f.", "author": "", "orig_id": 1458043}}, {"model": "metainfo.source", "pk": 783, "fields": {"orig_filename": "Talowski_Teodor-Marian_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 192", "author": "", "orig_id": 1422580}}, {"model": "metainfo.source", "pk": 784, "fields": {"orig_filename": "Tal_Ernst-Peter_1888_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 190f.", "author": "", "orig_id": 1422570}}, {"model": "metainfo.source", "pk": 785, "fields": {"orig_filename": "Tamasy-Fogaras_Arpad_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 192f.", "author": "", "orig_id": 1422607}}, {"model": "metainfo.source", "pk": 786, "fields": {"orig_filename": "Tancsics_Mihaly_1799_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 193", "author": "", "orig_id": 1422734}}, {"model": "metainfo.source", "pk": 787, "fields": {"orig_filename": "Tandler-Tanningen_Joseph-Franz_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 194", "author": "", "orig_id": 1422657}}, {"model": "metainfo.source", "pk": 788, "fields": {"orig_filename": "Tandler_Josef-Jakub_1765_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 193f.", "author": "", "orig_id": 1422654}}, {"model": "metainfo.source", "pk": 789, "fields": {"orig_filename": "Tandler_Julius_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 194f.", "author": "", "orig_id": 1422655}}, {"model": "metainfo.source", "pk": 790, "fields": {"orig_filename": "Tandor_Otto_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 195", "author": "", "orig_id": 1458049}}, {"model": "metainfo.source", "pk": 791, "fields": {"orig_filename": "Syniewski_Wiktor_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 94f.", "author": "", "orig_id": 1435820}}, {"model": "metainfo.source", "pk": 792, "fields": {"orig_filename": "Syroczynski_Leon_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 95f.", "author": "", "orig_id": 2137621}}, {"model": "metainfo.source", "pk": 793, "fields": {"orig_filename": "Syrski_Szymon-Adam_1829_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 96", "author": "", "orig_id": 2027088}}, {"model": "metainfo.source", "pk": 794, "fields": {"orig_filename": "Sytko_Josef_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436012}}, {"model": "metainfo.source", "pk": 795, "fields": {"orig_filename": "Szablik_Istvan_1746_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 96f.", "author": "", "orig_id": 1455284}}, {"model": "metainfo.source", "pk": 796, "fields": {"orig_filename": "Szablya-Frischauf_Ernesztin_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 97", "author": "", "orig_id": 1433211}}, {"model": "metainfo.source", "pk": 797, "fields": {"orig_filename": "Szabo-Kisgeresd_Imre_1820_1865.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436131}}, {"model": "metainfo.source", "pk": 798, "fields": {"orig_filename": "Szaboky_Adolph_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 102f.", "author": "", "orig_id": 1435720}}, {"model": "metainfo.source", "pk": 799, "fields": {"orig_filename": "Szabolcsi_Max_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 103", "author": "", "orig_id": 1455354}}, {"model": "metainfo.source", "pk": 800, "fields": {"orig_filename": "Szabolcska_Mihaly_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 103f.", "author": "", "orig_id": 1455356}}, {"model": "metainfo.source", "pk": 801, "fields": {"orig_filename": "Szabo_Alajos_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 97f.", "author": "", "orig_id": 1436116}}, {"model": "metainfo.source", "pk": 802, "fields": {"orig_filename": "Szabo_Basilius_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 98", "author": "", "orig_id": 1436120}}, {"model": "metainfo.source", "pk": 803, "fields": {"orig_filename": "Szabo_Denes_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 101", "author": "", "orig_id": 1455289}}, {"model": "metainfo.source", "pk": 804, "fields": {"orig_filename": "Szabo_Dezsoe_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 98f.", "author": "", "orig_id": 1436126}}, {"model": "metainfo.source", "pk": 805, "fields": {"orig_filename": "Szabo_Ignacz_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436181}}, {"model": "metainfo.source", "pk": 806, "fields": {"orig_filename": "Szabo_Istvan_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100", "author": "", "orig_id": 1436364}}, {"model": "metainfo.source", "pk": 807, "fields": {"orig_filename": "Szabo_Jozsef_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100", "author": "", "orig_id": 1457039}}, {"model": "metainfo.source", "pk": 808, "fields": {"orig_filename": "Szabo_Jozsef_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100f.", "author": "", "orig_id": 1435679}}, {"model": "metainfo.source", "pk": 809, "fields": {"orig_filename": "Szabo_Karoly_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 101f.", "author": "", "orig_id": 1436421}}, {"model": "metainfo.source", "pk": 810, "fields": {"orig_filename": "Szabo_Xaver-Ferenc_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1457450}}, {"model": "metainfo.source", "pk": 811, "fields": {"orig_filename": "Szacsvay-Esztelnek_Imre_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 104f.", "author": "", "orig_id": 1455359}}, {"model": "metainfo.source", "pk": 812, "fields": {"orig_filename": "Szacsvay_Sandor_1752_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 104", "author": "", "orig_id": 1455358}}, {"model": "metainfo.source", "pk": 813, "fields": {"orig_filename": "Szadeczky-Kardoss_Gyula_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 105f.", "author": "", "orig_id": 1457456}}, {"model": "metainfo.source", "pk": 814, "fields": {"orig_filename": "Szadeczky-Kardoss_Lajos_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106", "author": "", "orig_id": 1458906}}, {"model": "metainfo.source", "pk": 815, "fields": {"orig_filename": "Szajbely_Henrik_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106", "author": "", "orig_id": 1435338}}, {"model": "metainfo.source", "pk": 816, "fields": {"orig_filename": "Szajnocha_Karol_1818_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106f.", "author": "", "orig_id": 1435784}}, {"model": "metainfo.source", "pk": 817, "fields": {"orig_filename": "Szajnocha_Wladyslaw_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 107f.", "author": "", "orig_id": 1435786}}, {"model": "metainfo.source", "pk": 818, "fields": {"orig_filename": "Szalai_Istvan_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 108", "author": "", "orig_id": 1434932}}, {"model": "metainfo.source", "pk": 819, "fields": {"orig_filename": "Szalardi_Mor_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 108f.", "author": "", "orig_id": 1435840}}, {"model": "metainfo.source", "pk": 820, "fields": {"orig_filename": "Szalay-Kemend_Imre_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 110f.", "author": "", "orig_id": 1434928}}, {"model": "metainfo.source", "pk": 821, "fields": {"orig_filename": "Szalay-Kemend_Laszlo_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 111", "author": "", "orig_id": 1434936}}, {"model": "metainfo.source", "pk": 822, "fields": {"orig_filename": "Szalay_Fruzina_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109", "author": "", "orig_id": 1457477}}, {"model": "metainfo.source", "pk": 823, "fields": {"orig_filename": "Szalay_Imre_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109f.", "author": "", "orig_id": 1434931}}, {"model": "metainfo.source", "pk": 824, "fields": {"orig_filename": "Szalay_Peter_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 110", "author": "", "orig_id": 1426792}}, {"model": "metainfo.source", "pk": 825, "fields": {"orig_filename": "Szale_Istvan_1818_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 111f.", "author": "", "orig_id": 1434939}}, {"model": "metainfo.source", "pk": 826, "fields": {"orig_filename": "Szale_Janos_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 112", "author": "", "orig_id": 1433274}}, {"model": "metainfo.source", "pk": 827, "fields": {"orig_filename": "Szamossy_Elek_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113", "author": "", "orig_id": 1435902}}, {"model": "metainfo.source", "pk": 828, "fields": {"orig_filename": "Szamossy_Laszlo_1866_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113", "author": "", "orig_id": 1433208}}, {"model": "metainfo.source", "pk": 829, "fields": {"orig_filename": "Szam_Geza_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 112f.", "author": "", "orig_id": 1457562}}, {"model": "metainfo.source", "pk": 830, "fields": {"orig_filename": "Szana_Tamas_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113f.", "author": "", "orig_id": 1435007}}, {"model": "metainfo.source", "pk": 831, "fields": {"orig_filename": "Szanto_Emil_1857_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 114", "author": "", "orig_id": 1435016}}, {"model": "metainfo.source", "pk": 832, "fields": {"orig_filename": "Szanto_Menyhert_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 114f.", "author": "", "orig_id": 1457630}}, {"model": "metainfo.source", "pk": 833, "fields": {"orig_filename": "Szanto_Simon_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 115", "author": "", "orig_id": 1435074}}, {"model": "metainfo.source", "pk": 834, "fields": {"orig_filename": "Szanto_Theodor_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 115f.", "author": "", "orig_id": 1435075}}, {"model": "metainfo.source", "pk": 835, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Franz_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 116", "author": "", "orig_id": 1435079}}, {"model": "metainfo.source", "pk": 836, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Gyula_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 116f.", "author": "", "orig_id": 1435329}}, {"model": "metainfo.source", "pk": 837, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Ladislaus_1831_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 117f.", "author": "", "orig_id": 1435269}}, {"model": "metainfo.source", "pk": 838, "fields": {"orig_filename": "Szaraniewicz_Izydor_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 118", "author": "", "orig_id": 1435332}}, {"model": "metainfo.source", "pk": 839, "fields": {"orig_filename": "Szarvady_Frigyes_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435335}}, {"model": "metainfo.source", "pk": 840, "fields": {"orig_filename": "Szarvassy_Arthur_1873_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 120", "author": "", "orig_id": 1435336}}, {"model": "metainfo.source", "pk": 841, "fields": {"orig_filename": "Szarvas_Gabor_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 119f.", "author": "", "orig_id": 1458986}}, {"model": "metainfo.source", "pk": 842, "fields": {"orig_filename": "Szaster_Antoni_1759_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 120f.", "author": "", "orig_id": 1435339}}, {"model": "metainfo.source", "pk": 843, "fields": {"orig_filename": "Szaster_Wincenty_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121", "author": "", "orig_id": 2162661}}, {"model": "metainfo.source", "pk": 844, "fields": {"orig_filename": "Szasz-Szemerja_Bela_1840_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121f.", "author": "", "orig_id": 1458987}}, {"model": "metainfo.source", "pk": 845, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1798_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122", "author": "", "orig_id": 1435390}}, {"model": "metainfo.source", "pk": 846, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122f.", "author": "", "orig_id": 1435391}}, {"model": "metainfo.source", "pk": 847, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 123", "author": "", "orig_id": 1435392}}, {"model": "metainfo.source", "pk": 848, "fields": {"orig_filename": "Szasz-Szemerja_Polixenia_1831_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122f.", "author": "", "orig_id": 1458990}}, {"model": "metainfo.source", "pk": 849, "fields": {"orig_filename": "Szaszy-Szasz_Bela_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 123f.", "author": "", "orig_id": 1457717}}, {"model": "metainfo.source", "pk": 850, "fields": {"orig_filename": "Szasz_Gyula_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121", "author": "", "orig_id": 1435389}}, {"model": "metainfo.source", "pk": 851, "fields": {"orig_filename": "Szathmary-Laczkoczy_Lujza_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 125", "author": "", "orig_id": 1435447}}, {"model": "metainfo.source", "pk": 852, "fields": {"orig_filename": "Szathmary_Pap-Karoly_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 124f.", "author": "", "orig_id": 1435405}}, {"model": "metainfo.source", "pk": 853, "fields": {"orig_filename": "Szatmari_Mor_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 125f.", "author": "", "orig_id": 1454510}}, {"model": "metainfo.source", "pk": 854, "fields": {"orig_filename": "Szczepanik_Jan_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 126f.", "author": "", "orig_id": 1434636}}, {"model": "metainfo.source", "pk": 855, "fields": {"orig_filename": "Szczepanowski_Stanislaw-Ignacy_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 127f.", "author": "", "orig_id": 1434641}}, {"model": "metainfo.source", "pk": 856, "fields": {"orig_filename": "Szczepanski_Wladislaw_1877_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128", "author": "", "orig_id": 1434644}}, {"model": "metainfo.source", "pk": 857, "fields": {"orig_filename": "Szczucki_Wincenty_1786_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128", "author": "", "orig_id": 1434646}}, {"model": "metainfo.source", "pk": 858, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Bela_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128f.", "author": "", "orig_id": 1426683}}, {"model": "metainfo.source", "pk": 859, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Ferenc_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 129f.", "author": "", "orig_id": 1434813}}, {"model": "metainfo.source", "pk": 860, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Gyula_1829_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434819}}, {"model": "metainfo.source", "pk": 861, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Imre_1825_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 130", "author": "", "orig_id": 1434876}}, {"model": "metainfo.source", "pk": 862, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Istvan_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 131f.", "author": "", "orig_id": 1434816}}, {"model": "metainfo.source", "pk": 863, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Lajos_1781_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 130", "author": "", "orig_id": 1434822}}, {"model": "metainfo.source", "pk": 864, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Lajos_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434873}}, {"model": "metainfo.source", "pk": 865, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Pal_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 132", "author": "", "orig_id": 1457730}}, {"model": "metainfo.source", "pk": 866, "fields": {"orig_filename": "Szecsen-Temerin_Antal_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 132f.", "author": "", "orig_id": 1434884}}, {"model": "metainfo.source", "pk": 867, "fields": {"orig_filename": "Szecsen-Temerin_Miklos_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 133f.", "author": "", "orig_id": 1434886}}, {"model": "metainfo.source", "pk": 868, "fields": {"orig_filename": "Szecsi_Antal_1856_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 134", "author": "", "orig_id": 1434887}}, {"model": "metainfo.source", "pk": 869, "fields": {"orig_filename": "Szekely-Adamos_Agoston_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 136", "author": "", "orig_id": 1434954}}, {"model": "metainfo.source", "pk": 870, "fields": {"orig_filename": "Szekely-Adamos_Bertalan_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135f.", "author": "", "orig_id": 1435027}}, {"model": "metainfo.source", "pk": 871, "fields": {"orig_filename": "Szekely_Ferenc_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 134f.", "author": "", "orig_id": 1434959}}, {"model": "metainfo.source", "pk": 872, "fields": {"orig_filename": "Szekely_Josef_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135", "author": "", "orig_id": 1435021}}, {"model": "metainfo.source", "pk": 873, "fields": {"orig_filename": "Szekrenyessy-Szekelyhid-Kemer_Kalman_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 136f.", "author": "", "orig_id": 1459099}}, {"model": "metainfo.source", "pk": 874, "fields": {"orig_filename": "Szekula_Mor_1839_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137", "author": "", "orig_id": 1435896}}, {"model": "metainfo.source", "pk": 875, "fields": {"orig_filename": "Szelestey_Laszlo_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137", "author": "", "orig_id": 1435094}}, {"model": "metainfo.source", "pk": 876, "fields": {"orig_filename": "Szell-Duka-Szentgyoergyvoelgy_Kalman_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137f.", "author": "", "orig_id": 1435098}}, {"model": "metainfo.source", "pk": 877, "fields": {"orig_filename": "Szemere_Bertalan_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 138f.", "author": "", "orig_id": 1435104}}, {"model": "metainfo.source", "pk": 878, "fields": {"orig_filename": "Szemere_Krisztina_1792_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140", "author": "", "orig_id": 1459175}}, {"model": "metainfo.source", "pk": 879, "fields": {"orig_filename": "Szemere_Miklos_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 139", "author": "", "orig_id": 1435153}}, {"model": "metainfo.source", "pk": 880, "fields": {"orig_filename": "Szemere_Pal_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 139f.", "author": "", "orig_id": 1435155}}, {"model": "metainfo.source", "pk": 881, "fields": {"orig_filename": "Szemler_Mihaly_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140", "author": "", "orig_id": 1435162}}, {"model": "metainfo.source", "pk": 882, "fields": {"orig_filename": "Szenczy_Ferenc_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140f.", "author": "", "orig_id": 1435224}}, {"model": "metainfo.source", "pk": 883, "fields": {"orig_filename": "Szenczy_Imre-Jozsef_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 141", "author": "", "orig_id": 1435223}}, {"model": "metainfo.source", "pk": 884, "fields": {"orig_filename": "Szende-Keresztes_Bela_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 142", "author": "", "orig_id": 1435226}}, {"model": "metainfo.source", "pk": 885, "fields": {"orig_filename": "Szende_Pal_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 141f.", "author": "", "orig_id": 1435227}}, {"model": "metainfo.source", "pk": 886, "fields": {"orig_filename": "Szendrei-Mindszent_Janos_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 142f.", "author": "", "orig_id": 1459179}}, {"model": "metainfo.source", "pk": 887, "fields": {"orig_filename": "Szendy_Arpad_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 143f.", "author": "", "orig_id": 1459180}}, {"model": "metainfo.source", "pk": 888, "fields": {"orig_filename": "Szenes_Fueloep_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 144", "author": "", "orig_id": 1433018}}, {"model": "metainfo.source", "pk": 889, "fields": {"orig_filename": "Szent-Istvanyi_Gyula_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 144f.", "author": "", "orig_id": 1435298}}, {"model": "metainfo.source", "pk": 890, "fields": {"orig_filename": "Suman_Josip_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46f.", "author": "", "orig_id": 1435792}}, {"model": "metainfo.source", "pk": 891, "fields": {"orig_filename": "Sumec_Josef_1867_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 48", "author": "", "orig_id": 1435849}}, {"model": "metainfo.source", "pk": 892, "fields": {"orig_filename": "Sumin_Jiri_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 48f.", "author": "", "orig_id": 1472593}}, {"model": "metainfo.source", "pk": 893, "fields": {"orig_filename": "Sundecic_Jovan_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 49", "author": "", "orig_id": 1435917}}, {"model": "metainfo.source", "pk": 894, "fields": {"orig_filename": "Sunstenau-Schuetzenthal_Heinrich_1780_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 49f.", "author": "", "orig_id": 1435974}}, {"model": "metainfo.source", "pk": 895, "fields": {"orig_filename": "Supan_Alexander-Georg_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 51", "author": "", "orig_id": 1432211}}, {"model": "metainfo.source", "pk": 896, "fields": {"orig_filename": "Supilo_Frano_1870_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 51f.", "author": "", "orig_id": 1436271}}, {"model": "metainfo.source", "pk": 897, "fields": {"orig_filename": "Supljikac-Vitez_Stevan_1786_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 52", "author": "", "orig_id": 1436281}}, {"model": "metainfo.source", "pk": 898, "fields": {"orig_filename": "Suppantschitsch_Johann-Anton_1785_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 54f.", "author": "", "orig_id": 1435491}}, {"model": "metainfo.source", "pk": 899, "fields": {"orig_filename": "Suppantschitsch_Richard_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 55", "author": "", "orig_id": 1937201}}, {"model": "metainfo.source", "pk": 900, "fields": {"orig_filename": "Suppantschitsch_Viktor_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 55f.", "author": "", "orig_id": 1435495}}, {"model": "metainfo.source", "pk": 901, "fields": {"orig_filename": "Suppan_Anna_1891_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436326}}, {"model": "metainfo.source", "pk": 902, "fields": {"orig_filename": "Suppan_Carl-Viktor_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 52f.", "author": "", "orig_id": 1436330}}, {"model": "metainfo.source", "pk": 903, "fields": {"orig_filename": "Suppan_Joachim_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 53", "author": "", "orig_id": 1436332}}, {"model": "metainfo.source", "pk": 904, "fields": {"orig_filename": "Suppan_Josef_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 53f.", "author": "", "orig_id": 1436213}}, {"model": "metainfo.source", "pk": 905, "fields": {"orig_filename": "Suppe_Franz_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 56f.", "author": "", "orig_id": 1432376}}, {"model": "metainfo.source", "pk": 906, "fields": {"orig_filename": "Sup_Prokop-Bartolomej_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 50f.", "author": "", "orig_id": 1435976}}, {"model": "metainfo.source", "pk": 907, "fields": {"orig_filename": "Suranyi_Janos_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435568}}, {"model": "metainfo.source", "pk": 908, "fields": {"orig_filename": "Surmin_Duro_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 57", "author": "", "orig_id": 1435569}}, {"model": "metainfo.source", "pk": 909, "fields": {"orig_filename": "Susan_Johann_1796_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 57f.", "author": "", "orig_id": 1435630}}, {"model": "metainfo.source", "pk": 910, "fields": {"orig_filename": "Suschitzky_Philipp_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 58", "author": "", "orig_id": 1454373}}, {"model": "metainfo.source", "pk": 911, "fields": {"orig_filename": "Suschitzky_Wilhelm_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 58f.", "author": "", "orig_id": 1432377}}, {"model": "metainfo.source", "pk": 912, "fields": {"orig_filename": "Susil_Frantisek_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 59", "author": "", "orig_id": 1435643}}, {"model": "metainfo.source", "pk": 913, "fields": {"orig_filename": "Suske_Ferdinand_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 59f.", "author": "", "orig_id": 1435695}}, {"model": "metainfo.source", "pk": 914, "fields": {"orig_filename": "Sussin_Mathilde_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 60", "author": "", "orig_id": 1449942}}, {"model": "metainfo.source", "pk": 915, "fields": {"orig_filename": "Susta_Josef_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 60f.", "author": "", "orig_id": 1435752}}, {"model": "metainfo.source", "pk": 916, "fields": {"orig_filename": "Susta_Josef_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 61f.", "author": "", "orig_id": 1435754}}, {"model": "metainfo.source", "pk": 917, "fields": {"orig_filename": "Susta_Vaclav_1871_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2145126}}, {"model": "metainfo.source", "pk": 918, "fields": {"orig_filename": "Sustek_Daniel_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435756}}, {"model": "metainfo.source", "pk": 919, "fields": {"orig_filename": "Sustersic_Ivan_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 62", "author": "", "orig_id": 1435765}}, {"model": "metainfo.source", "pk": 920, "fields": {"orig_filename": "Sust_Janez_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2152139}}, {"model": "metainfo.source", "pk": 921, "fields": {"orig_filename": "Sutnar_Jaroslav_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 62f.", "author": "", "orig_id": 1435809}}, {"model": "metainfo.source", "pk": 922, "fields": {"orig_filename": "Sutter_Joseph_1781_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 63", "author": "", "orig_id": 1435864}}, {"model": "metainfo.source", "pk": 923, "fields": {"orig_filename": "Suttner_Arthur-Gundaccar_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 63f.", "author": "", "orig_id": 1435868}}, {"model": "metainfo.source", "pk": 924, "fields": {"orig_filename": "Suttner_Bertha_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64f.", "author": "", "orig_id": 1431923}}, {"model": "metainfo.source", "pk": 925, "fields": {"orig_filename": "Suttner_Johann_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 65f.", "author": "", "orig_id": 1868058}}, {"model": "metainfo.source", "pk": 926, "fields": {"orig_filename": "Suttner_Karl-Gundaccar_1819_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64", "author": "", "orig_id": 1469416}}, {"model": "metainfo.source", "pk": 927, "fields": {"orig_filename": "Suttner_Marie-Louise_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64", "author": "", "orig_id": 1435928}}, {"model": "metainfo.source", "pk": 928, "fields": {"orig_filename": "Svab-Malostransky_Josef_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1437357}}, {"model": "metainfo.source", "pk": 929, "fields": {"orig_filename": "Svab_Karel_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2292637}}, {"model": "metainfo.source", "pk": 930, "fields": {"orig_filename": "Svaiczer_Gabor_1784_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 66", "author": "", "orig_id": 1436056}}, {"model": "metainfo.source", "pk": 931, "fields": {"orig_filename": "Svambera_Vaclav_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 66f.", "author": "", "orig_id": 1436058}}, {"model": "metainfo.source", "pk": 932, "fields": {"orig_filename": "Svanda-Semcic_Karel_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 67", "author": "", "orig_id": 1825501}}, {"model": "metainfo.source", "pk": 933, "fields": {"orig_filename": "Svanda-Semcic_Pavel_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 67f.", "author": "", "orig_id": 1436097}}, {"model": "metainfo.source", "pk": 934, "fields": {"orig_filename": "Svanda-Semcic_Pavel_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 2007184}}, {"model": "metainfo.source", "pk": 935, "fields": {"orig_filename": "Svatek_Josef-Jan_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 1436110}}, {"model": "metainfo.source", "pk": 936, "fields": {"orig_filename": "Svatek_Josef_1835_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 1436111}}, {"model": "metainfo.source", "pk": 937, "fields": {"orig_filename": "Svatova_Tereza_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68f.", "author": "", "orig_id": 1825456}}, {"model": "metainfo.source", "pk": 938, "fields": {"orig_filename": "Sveceny_Antonin_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 69", "author": "", "orig_id": 1436161}}, {"model": "metainfo.source", "pk": 939, "fields": {"orig_filename": "Svehla_Antonin_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 69f.", "author": "", "orig_id": 1436164}}, {"model": "metainfo.source", "pk": 940, "fields": {"orig_filename": "Svenda_Frantisek-De-Paula_1741_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 70", "author": "", "orig_id": 1436165}}, {"model": "metainfo.source", "pk": 941, "fields": {"orig_filename": "Svenk_Karel_1917_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436166}}, {"model": "metainfo.source", "pk": 942, "fields": {"orig_filename": "Svetec_Luka_1826_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71", "author": "", "orig_id": 1436171}}, {"model": "metainfo.source", "pk": 943, "fields": {"orig_filename": "Svetlin_Wilhelm_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71", "author": "", "orig_id": 1436179}}, {"model": "metainfo.source", "pk": 944, "fields": {"orig_filename": "Sviha_Karel_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71f.", "author": "", "orig_id": 1436220}}, {"model": "metainfo.source", "pk": 945, "fields": {"orig_filename": "Svitil_Johann_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 72", "author": "", "orig_id": 1436225}}, {"model": "metainfo.source", "pk": 946, "fields": {"orig_filename": "Svoboda_Adalbert_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 72f.", "author": "", "orig_id": 1436231}}, {"model": "metainfo.source", "pk": 947, "fields": {"orig_filename": "Svoboda_Anton-Dobroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 73f.", "author": "", "orig_id": 1436237}}, {"model": "metainfo.source", "pk": 948, "fields": {"orig_filename": "Svoboda_Frantisek-Jan_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 74", "author": "", "orig_id": 1436295}}, {"model": "metainfo.source", "pk": 949, "fields": {"orig_filename": "Svoboda_Frantisek-Xav_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 75", "author": "", "orig_id": 1436290}}, {"model": "metainfo.source", "pk": 950, "fields": {"orig_filename": "Svoboda_Jindrich_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 75f.", "author": "", "orig_id": 1436343}}, {"model": "metainfo.source", "pk": 951, "fields": {"orig_filename": "Svoboda_Johann_1803_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 73", "author": "", "orig_id": 1436344}}, {"model": "metainfo.source", "pk": 952, "fields": {"orig_filename": "Svoboda_Josef_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436349}}, {"model": "metainfo.source", "pk": 953, "fields": {"orig_filename": "Svoboda_Karl_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 76", "author": "", "orig_id": 1436397}}, {"model": "metainfo.source", "pk": 954, "fields": {"orig_filename": "Svoboda_Vaclav-Alois_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 76f.", "author": "", "orig_id": 1435513}}, {"model": "metainfo.source", "pk": 955, "fields": {"orig_filename": "Svoboda_Vaclav_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435511}}, {"model": "metainfo.source", "pk": 956, "fields": {"orig_filename": "Svobodova-Goldmannova_Frantiska_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 74", "author": "", "orig_id": 2169822}}, {"model": "metainfo.source", "pk": 957, "fields": {"orig_filename": "Svobodova_Ruzena_1868_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 77", "author": "", "orig_id": 1435509}}, {"model": "metainfo.source", "pk": 958, "fields": {"orig_filename": "Svozil_Josef_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 77f.", "author": "", "orig_id": 1435522}}, {"model": "metainfo.source", "pk": 959, "fields": {"orig_filename": "Swensson_Carl-Gustav_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 78f.", "author": "", "orig_id": 1435577}}, {"model": "metainfo.source", "pk": 960, "fields": {"orig_filename": "Swerts_Jan_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 79", "author": "", "orig_id": 1435578}}, {"model": "metainfo.source", "pk": 961, "fields": {"orig_filename": "Sweth_Kajetan_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 79f.", "author": "", "orig_id": 1435579}}, {"model": "metainfo.source", "pk": 962, "fields": {"orig_filename": "Swida_Franz_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 80", "author": "", "orig_id": 1440818}}, {"model": "metainfo.source", "pk": 963, "fields": {"orig_filename": "Swierkiewicz_Edward_1808_1875.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1447981}}, {"model": "metainfo.source", "pk": 964, "fields": {"orig_filename": "Swiezy_Ignaz_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 80f.", "author": "", "orig_id": 1435586}}, {"model": "metainfo.source", "pk": 965, "fields": {"orig_filename": "Swoboda_Adalbert-Constantin_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 81", "author": "", "orig_id": 1433206}}, {"model": "metainfo.source", "pk": 966, "fields": {"orig_filename": "Swoboda_Albin_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 81f.", "author": "", "orig_id": 1432917}}, {"model": "metainfo.source", "pk": 967, "fields": {"orig_filename": "Swoboda_August_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82f.", "author": "", "orig_id": 1436238}}, {"model": "metainfo.source", "pk": 968, "fields": {"orig_filename": "Swoboda_Eduard_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 83", "author": "", "orig_id": 1432379}}, {"model": "metainfo.source", "pk": 969, "fields": {"orig_filename": "Swoboda_Emerich-Alexius_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 83f.", "author": "", "orig_id": 1405674}}, {"model": "metainfo.source", "pk": 970, "fields": {"orig_filename": "Swoboda_Ernst_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 84f.", "author": "", "orig_id": 1436288}}, {"model": "metainfo.source", "pk": 971, "fields": {"orig_filename": "Swoboda_Franz_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 85", "author": "", "orig_id": 1436294}}, {"model": "metainfo.source", "pk": 972, "fields": {"orig_filename": "Swoboda_Friederike_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82", "author": "", "orig_id": 1450020}}, {"model": "metainfo.source", "pk": 973, "fields": {"orig_filename": "Swoboda_Heinrich_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 85f.", "author": "", "orig_id": 1436339}}, {"model": "metainfo.source", "pk": 974, "fields": {"orig_filename": "Swoboda_Heinrich_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 86", "author": "", "orig_id": 1436340}}, {"model": "metainfo.source", "pk": 975, "fields": {"orig_filename": "Swoboda_Josefine_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 87f.", "author": "", "orig_id": 1436396}}, {"model": "metainfo.source", "pk": 976, "fields": {"orig_filename": "Swoboda_Josef_1806_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 87", "author": "", "orig_id": 1436395}}, {"model": "metainfo.source", "pk": 977, "fields": {"orig_filename": "Swoboda_Karl_1882_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 88", "author": "", "orig_id": 1436398}}, {"model": "metainfo.source", "pk": 978, "fields": {"orig_filename": "Swoboda_Margarete_1872_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82", "author": "", "orig_id": 1436403}}, {"model": "metainfo.source", "pk": 979, "fields": {"orig_filename": "Swoboda_Rudolf_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 88f.", "author": "", "orig_id": 1435508}}, {"model": "metainfo.source", "pk": 980, "fields": {"orig_filename": "Swoboda_Rudolph_1819_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 89", "author": "", "orig_id": 1435507}}, {"model": "metainfo.source", "pk": 981, "fields": {"orig_filename": "Swoboda_Wenzel_1772_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 89f.", "author": "", "orig_id": 1435512}}, {"model": "metainfo.source", "pk": 982, "fields": {"orig_filename": "Sychra_Josef-Cyril_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90f.", "author": "", "orig_id": 2163157}}, {"model": "metainfo.source", "pk": 983, "fields": {"orig_filename": "Sychra_Matej-Josef_1776_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90", "author": "", "orig_id": 1435656}}, {"model": "metainfo.source", "pk": 984, "fields": {"orig_filename": "Sychra_Method-Lumir_1884_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91", "author": "", "orig_id": 2163168}}, {"model": "metainfo.source", "pk": 985, "fields": {"orig_filename": "Sychra_Vaclav_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90f.", "author": "", "orig_id": 1435653}}, {"model": "metainfo.source", "pk": 986, "fields": {"orig_filename": "Sykora_Karl_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91", "author": "", "orig_id": 1435767}}, {"model": "metainfo.source", "pk": 987, "fields": {"orig_filename": "Syllaba_Ladislav_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91f.", "author": "", "orig_id": 1435770}}, {"model": "metainfo.source", "pk": 988, "fields": {"orig_filename": "Sylvester_Hans_1897_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 92f.", "author": "", "orig_id": 1435774}}, {"model": "metainfo.source", "pk": 989, "fields": {"orig_filename": "Sylvester_Julius_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 93", "author": "", "orig_id": 1435948}}, {"model": "metainfo.source", "pk": 990, "fields": {"orig_filename": "Symersky_Josef_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 94", "author": "", "orig_id": 1435817}}, {"model": "metainfo.source", "pk": 991, "fields": {"orig_filename": "Sym_Igo_1896_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 93f.", "author": "", "orig_id": 1450023}}, {"model": "metainfo.source", "pk": 992, "fields": {"orig_filename": "Synek_Adolf_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2171789}}, {"model": "metainfo.source", "pk": 993, "fields": {"orig_filename": "Synek_Karel_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2292750}}, {"model": "metainfo.source", "pk": 994, "fields": {"orig_filename": "Stuermer_Karl_1792_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445f.", "author": "", "orig_id": 1433166}}, {"model": "metainfo.source", "pk": 995, "fields": {"orig_filename": "Stuerzer_Rudolf_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 446", "author": "", "orig_id": 1433167}}, {"model": "metainfo.source", "pk": 996, "fields": {"orig_filename": "Stuflesser_Ferdinand_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 446f.", "author": "", "orig_id": 1433095}}, {"model": "metainfo.source", "pk": 997, "fields": {"orig_filename": "Stukart_Moriz_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 447", "author": "", "orig_id": 1432965}}, {"model": "metainfo.source", "pk": 998, "fields": {"orig_filename": "Stulc_Vaclav_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 447f.", "author": "", "orig_id": 1433235}}, {"model": "metainfo.source", "pk": 999, "fields": {"orig_filename": "Stulli_Gioachino_1729_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 448", "author": "", "orig_id": 1433237}}, {"model": "metainfo.source", "pk": 1000, "fields": {"orig_filename": "Stulli_Luca_1772_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1", "author": "", "orig_id": 1433238}}, {"model": "metainfo.source", "pk": 1001, "fields": {"orig_filename": "Stummer-Tavarnok_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1f.", "author": "", "orig_id": 1433311}}, {"model": "metainfo.source", "pk": 1002, "fields": {"orig_filename": "Stummer-Tavarnok_August-Wilhelm_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 2", "author": "", "orig_id": 1433417}}, {"model": "metainfo.source", "pk": 1003, "fields": {"orig_filename": "Stummer-Traunfels_Josef-Mauritius_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 2f.", "author": "", "orig_id": 1433465}}, {"model": "metainfo.source", "pk": 1004, "fields": {"orig_filename": "Stummer-Traunfels_Robert_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3", "author": "", "orig_id": 1935819}}, {"model": "metainfo.source", "pk": 1005, "fields": {"orig_filename": "Stummer-Traunfels_Rudolf_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3", "author": "", "orig_id": 1433466}}, {"model": "metainfo.source", "pk": 1006, "fields": {"orig_filename": "Stummer_Karl_1825_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1f.", "author": "", "orig_id": 1433243}}, {"model": "metainfo.source", "pk": 1007, "fields": {"orig_filename": "Stumpf-Brentano_Karl-Friedrich_1829_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 4f.", "author": "", "orig_id": 1433476}}, {"model": "metainfo.source", "pk": 1008, "fields": {"orig_filename": "Stumpf_Franz_1876_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3f.", "author": "", "orig_id": 1433471}}, {"model": "metainfo.source", "pk": 1009, "fields": {"orig_filename": "Stundl_Theodor_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 5", "author": "", "orig_id": 1433524}}, {"model": "metainfo.source", "pk": 1010, "fields": {"orig_filename": "Stuparich_Carlo_1894_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 5", "author": "", "orig_id": 1433531}}, {"model": "metainfo.source", "pk": 1011, "fields": {"orig_filename": "Stuparich_Giani_1891_1961.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1978680}}, {"model": "metainfo.source", "pk": 1012, "fields": {"orig_filename": "Stupecky_Josef_1848_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6", "author": "", "orig_id": 1433533}}, {"model": "metainfo.source", "pk": 1013, "fields": {"orig_filename": "Stupka_Walter_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6", "author": "", "orig_id": 1433583}}, {"model": "metainfo.source", "pk": 1014, "fields": {"orig_filename": "Stupper_Carl_1808_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6f.", "author": "", "orig_id": 1433592}}, {"model": "metainfo.source", "pk": 1015, "fields": {"orig_filename": "Sturany_Johann_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1840197}}, {"model": "metainfo.source", "pk": 1016, "fields": {"orig_filename": "Sturany_Josef_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1840203}}, {"model": "metainfo.source", "pk": 1017, "fields": {"orig_filename": "Sturany_Moritz_1862_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1432753}}, {"model": "metainfo.source", "pk": 1018, "fields": {"orig_filename": "Sturany_Rudolf_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 11", "author": "", "orig_id": 1430742}}, {"model": "metainfo.source", "pk": 1019, "fields": {"orig_filename": "Sturm-Skrla_Egge_1894_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 15", "author": "", "orig_id": 1432929}}, {"model": "metainfo.source", "pk": 1020, "fields": {"orig_filename": "Sturm_Albert_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 11f.", "author": "", "orig_id": 1432754}}, {"model": "metainfo.source", "pk": 1021, "fields": {"orig_filename": "Sturm_Ambros_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 12", "author": "", "orig_id": 1432756}}, {"model": "metainfo.source", "pk": 1022, "fields": {"orig_filename": "Sturm_Anton_1787_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 12", "author": "", "orig_id": 1432757}}, {"model": "metainfo.source", "pk": 1023, "fields": {"orig_filename": "Sturm_Eduard_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 13", "author": "", "orig_id": 1432797}}, {"model": "metainfo.source", "pk": 1024, "fields": {"orig_filename": "Sturm_Friedrich_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 13f.", "author": "", "orig_id": 1432803}}, {"model": "metainfo.source", "pk": 1025, "fields": {"orig_filename": "Sturm_Georg_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 14", "author": "", "orig_id": 1432808}}, {"model": "metainfo.source", "pk": 1026, "fields": {"orig_filename": "Sturm_Josef_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 14f.", "author": "", "orig_id": 1432920}}, {"model": "metainfo.source", "pk": 1027, "fields": {"orig_filename": "Stursa_Jan_1880_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 15f.", "author": "", "orig_id": 1433054}}, {"model": "metainfo.source", "pk": 1028, "fields": {"orig_filename": "Stur_Dionys_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 7", "author": "", "orig_id": 1432686}}, {"model": "metainfo.source", "pk": 1029, "fields": {"orig_filename": "Stur_Jan_1895_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 7f.", "author": "", "orig_id": 1432690}}, {"model": "metainfo.source", "pk": 1030, "fields": {"orig_filename": "Stur_Karl_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 8f.", "author": "", "orig_id": 1432745}}, {"model": "metainfo.source", "pk": 1031, "fields": {"orig_filename": "Stur_Karol_1811_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9", "author": "", "orig_id": 1432696}}, {"model": "metainfo.source", "pk": 1032, "fields": {"orig_filename": "Stur_Ludovit_1815_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9f.", "author": "", "orig_id": 1432751}}, {"model": "metainfo.source", "pk": 1033, "fields": {"orig_filename": "Stur_Samuel_1789_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9", "author": "", "orig_id": 1995250}}, {"model": "metainfo.source", "pk": 1034, "fields": {"orig_filename": "Stutterheim_Alfred_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 16", "author": "", "orig_id": 1840215}}, {"model": "metainfo.source", "pk": 1035, "fields": {"orig_filename": "Stutterheim_Johann_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17", "author": "", "orig_id": 1433106}}, {"model": "metainfo.source", "pk": 1036, "fields": {"orig_filename": "Stutterheim_Joseph_1764_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 16f.", "author": "", "orig_id": 1433107}}, {"model": "metainfo.source", "pk": 1037, "fields": {"orig_filename": "Stuwer_Anton_1804_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17f.", "author": "", "orig_id": 1433111}}, {"model": "metainfo.source", "pk": 1038, "fields": {"orig_filename": "Stuwer_Anton_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17f.", "author": "", "orig_id": 1433110}}, {"model": "metainfo.source", "pk": 1039, "fields": {"orig_filename": "Stwertka_Julius_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 18", "author": "", "orig_id": 1433117}}, {"model": "metainfo.source", "pk": 1040, "fields": {"orig_filename": "Stwrtnik_Augustin-Wenzeslaus_1755_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 19", "author": "", "orig_id": 1433185}}, {"model": "metainfo.source", "pk": 1041, "fields": {"orig_filename": "Stwrtnik_Augustin_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 18f.", "author": "", "orig_id": 1433186}}, {"model": "metainfo.source", "pk": 1042, "fields": {"orig_filename": "Styblo_Bedrich_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 19f.", "author": "", "orig_id": 1825264}}, {"model": "metainfo.source", "pk": 1043, "fields": {"orig_filename": "Styka_Jan_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 20", "author": "", "orig_id": 1433194}}, {"model": "metainfo.source", "pk": 1044, "fields": {"orig_filename": "Styrsky_Jindrich_1899_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 20f.", "author": "", "orig_id": 1433196}}, {"model": "metainfo.source", "pk": 1045, "fields": {"orig_filename": "Subak_Julius_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 21f.", "author": "", "orig_id": 1433380}}, {"model": "metainfo.source", "pk": 1046, "fields": {"orig_filename": "Subert_Frantisek-Adolf_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 22f.", "author": "", "orig_id": 1433419}}, {"model": "metainfo.source", "pk": 1047, "fields": {"orig_filename": "Subic_Ivan_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 25", "author": "", "orig_id": 2162055}}, {"model": "metainfo.source", "pk": 1048, "fields": {"orig_filename": "Subic_Janez_1850_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 23", "author": "", "orig_id": 1965644}}, {"model": "metainfo.source", "pk": 1049, "fields": {"orig_filename": "Subic_Jurij_1855_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 23f.", "author": "", "orig_id": 1433429}}, {"model": "metainfo.source", "pk": 1050, "fields": {"orig_filename": "Subic_Simon_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 24", "author": "", "orig_id": 1433431}}, {"model": "metainfo.source", "pk": 1051, "fields": {"orig_filename": "Subic_Vladimir_1894_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 24f.", "author": "", "orig_id": 1980230}}, {"model": "metainfo.source", "pk": 1052, "fields": {"orig_filename": "Succovaty-Vezza_Eduard_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 25f.", "author": "", "orig_id": 1433480}}, {"model": "metainfo.source", "pk": 1053, "fields": {"orig_filename": "Sucharda_Edward_1891_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 26", "author": "", "orig_id": 2133057}}, {"model": "metainfo.source", "pk": 1054, "fields": {"orig_filename": "Sucharda_Stanislav_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 26f.", "author": "", "orig_id": 1433542}}, {"model": "metainfo.source", "pk": 1055, "fields": {"orig_filename": "Suchecki_Henryk-Ignacy_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 27", "author": "", "orig_id": 1433544}}, {"model": "metainfo.source", "pk": 1056, "fields": {"orig_filename": "Sucher_Joseph_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 27f.", "author": "", "orig_id": 1433549}}, {"model": "metainfo.source", "pk": 1057, "fields": {"orig_filename": "Sucher_Rosa_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 28", "author": "", "orig_id": 2193480}}, {"model": "metainfo.source", "pk": 1058, "fields": {"orig_filename": "Suchsland_Leopold_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 28f.", "author": "", "orig_id": 1433595}}, {"model": "metainfo.source", "pk": 1059, "fields": {"orig_filename": "Suchy_Adalbert_1783_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 29", "author": "", "orig_id": 1433283}}, {"model": "metainfo.source", "pk": 1060, "fields": {"orig_filename": "Suchy_Carl_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 29f.", "author": "", "orig_id": 1433284}}, {"model": "metainfo.source", "pk": 1061, "fields": {"orig_filename": "Suchy_Franz_1860_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 30", "author": "", "orig_id": 1433285}}, {"model": "metainfo.source", "pk": 1062, "fields": {"orig_filename": "Suck_Rosa_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 30f.", "author": "", "orig_id": 1433339}}, {"model": "metainfo.source", "pk": 1063, "fields": {"orig_filename": "Suda_Stanislav_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 31", "author": "", "orig_id": 1472590}}, {"model": "metainfo.source", "pk": 1064, "fields": {"orig_filename": "Suess-Hellrat_Friedrich_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 37", "author": "", "orig_id": 1453182}}, {"model": "metainfo.source", "pk": 1065, "fields": {"orig_filename": "Suessemilch_Gustav_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432835}}, {"model": "metainfo.source", "pk": 1066, "fields": {"orig_filename": "Suessmann_Hermann_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36f.", "author": "", "orig_id": 1435904}}, {"model": "metainfo.source", "pk": 1067, "fields": {"orig_filename": "Suess_Adolph-Heinrich_1797_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 31f.", "author": "", "orig_id": 1432723}}, {"model": "metainfo.source", "pk": 1068, "fields": {"orig_filename": "Suess_Eduard_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 32f.", "author": "", "orig_id": 1427985}}, {"model": "metainfo.source", "pk": 1069, "fields": {"orig_filename": "Suess_Franz-Eduard_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 33f.", "author": "", "orig_id": 1432724}}, {"model": "metainfo.source", "pk": 1070, "fields": {"orig_filename": "Suess_Friedrich_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 34f.", "author": "", "orig_id": 1432725}}, {"model": "metainfo.source", "pk": 1071, "fields": {"orig_filename": "Suess_Maria-Vincenz_1802_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 35", "author": "", "orig_id": 1432831}}, {"model": "metainfo.source", "pk": 1072, "fields": {"orig_filename": "Suess_Martin_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432783}}, {"model": "metainfo.source", "pk": 1073, "fields": {"orig_filename": "Suess_Nandor_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 35", "author": "", "orig_id": 1458216}}, {"model": "metainfo.source", "pk": 1074, "fields": {"orig_filename": "Suess_Walter_1905_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36", "author": "", "orig_id": 1424426}}, {"model": "metainfo.source", "pk": 1075, "fields": {"orig_filename": "Suess_Walter_1912_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36", "author": "", "orig_id": 1437731}}, {"model": "metainfo.source", "pk": 1076, "fields": {"orig_filename": "Sufflay_Milan_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 37f.", "author": "", "orig_id": 1435959}}, {"model": "metainfo.source", "pk": 1077, "fields": {"orig_filename": "Sugar_Nikolaus_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 38f.", "author": "", "orig_id": 1436138}}, {"model": "metainfo.source", "pk": 1078, "fields": {"orig_filename": "Suhajda_Ludovit-Matej_1806_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 39", "author": "", "orig_id": 1436144}}, {"model": "metainfo.source", "pk": 1079, "fields": {"orig_filename": "Suhayda_Janos_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 39f.", "author": "", "orig_id": 1436147}}, {"model": "metainfo.source", "pk": 1080, "fields": {"orig_filename": "Suida_Wilhelm_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 40", "author": "", "orig_id": 1436194}}, {"model": "metainfo.source", "pk": 1081, "fields": {"orig_filename": "Sujanszky_Anton_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 40f.", "author": "", "orig_id": 1436256}}, {"model": "metainfo.source", "pk": 1082, "fields": {"orig_filename": "Suklje_Fran_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 42", "author": "", "orig_id": 1436318}}, {"model": "metainfo.source", "pk": 1083, "fields": {"orig_filename": "Sukup_Max_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436366}}, {"model": "metainfo.source", "pk": 1084, "fields": {"orig_filename": "Suk_Josef_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 41", "author": "", "orig_id": 1436260}}, {"model": "metainfo.source", "pk": 1085, "fields": {"orig_filename": "Suk_Vaclav-Frantisek_1883_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 41f.", "author": "", "orig_id": 1825410}}, {"model": "metainfo.source", "pk": 1086, "fields": {"orig_filename": "Sulc_Otakar_1869_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 42f.", "author": "", "orig_id": 1436375}}, {"model": "metainfo.source", "pk": 1087, "fields": {"orig_filename": "Sulek_Bohuslav-Karol_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 43f.", "author": "", "orig_id": 1436379}}, {"model": "metainfo.source", "pk": 1088, "fields": {"orig_filename": "Sulek_Jan_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 43", "author": "", "orig_id": 1436381}}, {"model": "metainfo.source", "pk": 1089, "fields": {"orig_filename": "Sulke_Rudolf_1885_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2052674}}, {"model": "metainfo.source", "pk": 1090, "fields": {"orig_filename": "Sulzboeck_Amandus_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 44", "author": "", "orig_id": 1435547}}, {"model": "metainfo.source", "pk": 1091, "fields": {"orig_filename": "Sulzer_Henriette_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435551}}, {"model": "metainfo.source", "pk": 1092, "fields": {"orig_filename": "Sulzer_Joseph_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435687}}, {"model": "metainfo.source", "pk": 1093, "fields": {"orig_filename": "Sulzer_Julius_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435688}}, {"model": "metainfo.source", "pk": 1094, "fields": {"orig_filename": "Sulzer_Marie_1828_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435691}}, {"model": "metainfo.source", "pk": 1095, "fields": {"orig_filename": "Sulzer_Rudolf_1883_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435737}}, {"model": "metainfo.source", "pk": 1096, "fields": {"orig_filename": "Sulzer_Salomon_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45f.", "author": "", "orig_id": 1435738}}, {"model": "metainfo.source", "pk": 1097, "fields": {"orig_filename": "Sulzer_Sophie_1840_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435746}}, {"model": "metainfo.source", "pk": 1098, "fields": {"orig_filename": "Sumanovic_Sava_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 47f.", "author": "", "orig_id": 1999359}}, {"model": "metainfo.source", "pk": 1099, "fields": {"orig_filename": "Strele_Anton_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 396f.", "author": "", "orig_id": 1419706}}, {"model": "metainfo.source", "pk": 1100, "fields": {"orig_filename": "Strele_Georg_1861_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 397f.", "author": "", "orig_id": 1433978}}, {"model": "metainfo.source", "pk": 1101, "fields": {"orig_filename": "Strelli_Richard_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 398", "author": "", "orig_id": 1434206}}, {"model": "metainfo.source", "pk": 1102, "fields": {"orig_filename": "Stremayr_Karl_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 398f.", "author": "", "orig_id": 1434209}}, {"model": "metainfo.source", "pk": 1103, "fields": {"orig_filename": "Strepponi_Feliciano_1797_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 399", "author": "", "orig_id": 1434215}}, {"model": "metainfo.source", "pk": 1104, "fields": {"orig_filename": "Strepponi_Giuseppina_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 399", "author": "", "orig_id": 1434216}}, {"model": "metainfo.source", "pk": 1105, "fields": {"orig_filename": "Streussenberger_Franz_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400", "author": "", "orig_id": 1432934}}, {"model": "metainfo.source", "pk": 1106, "fields": {"orig_filename": "Strezek_Franz-K_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400", "author": "", "orig_id": 1434256}}, {"model": "metainfo.source", "pk": 1107, "fields": {"orig_filename": "Stricker_Robert_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400f.", "author": "", "orig_id": 1434317}}, {"model": "metainfo.source", "pk": 1108, "fields": {"orig_filename": "Stricker_Salomon_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 401f.", "author": "", "orig_id": 1434320}}, {"model": "metainfo.source", "pk": 1109, "fields": {"orig_filename": "Strickner_Anton_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402f.", "author": "", "orig_id": 1434324}}, {"model": "metainfo.source", "pk": 1110, "fields": {"orig_filename": "Strickner_Anton_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402f.", "author": "", "orig_id": 1447295}}, {"model": "metainfo.source", "pk": 1111, "fields": {"orig_filename": "Strickner_Franz_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402", "author": "", "orig_id": 2106134}}, {"model": "metainfo.source", "pk": 1112, "fields": {"orig_filename": "Strickner_Joseph-Leopold_1744_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403", "author": "", "orig_id": 1434327}}, {"model": "metainfo.source", "pk": 1113, "fields": {"orig_filename": "Strictius_Ludwig_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403", "author": "", "orig_id": 1434328}}, {"model": "metainfo.source", "pk": 1114, "fields": {"orig_filename": "Strigl_Richard_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403f.", "author": "", "orig_id": 1434392}}, {"model": "metainfo.source", "pk": 1115, "fields": {"orig_filename": "Strigl_Theres_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 404", "author": "", "orig_id": 1447651}}, {"model": "metainfo.source", "pk": 1116, "fields": {"orig_filename": "Strindberg_Frida_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 404f.", "author": "", "orig_id": 1427845}}, {"model": "metainfo.source", "pk": 1117, "fields": {"orig_filename": "Stringari_Remo_1879_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 405", "author": "", "orig_id": 1434395}}, {"model": "metainfo.source", "pk": 1118, "fields": {"orig_filename": "Strisower_Leo_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 405f.", "author": "", "orig_id": 1434396}}, {"model": "metainfo.source", "pk": 1119, "fields": {"orig_filename": "Stritar_Josip_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 406f.", "author": "", "orig_id": 1434397}}, {"model": "metainfo.source", "pk": 1120, "fields": {"orig_filename": "Stritof_Anton_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407", "author": "", "orig_id": 1825120}}, {"model": "metainfo.source", "pk": 1121, "fields": {"orig_filename": "Stritof_Niko_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407f.", "author": "", "orig_id": 1434399}}, {"model": "metainfo.source", "pk": 1122, "fields": {"orig_filename": "Stritt_Marie_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407f.", "author": "", "orig_id": 1434445}}, {"model": "metainfo.source", "pk": 1123, "fields": {"orig_filename": "Strnadt_Julius_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 409f.", "author": "", "orig_id": 1434514}}, {"model": "metainfo.source", "pk": 1124, "fields": {"orig_filename": "Strnad_Josef_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 408", "author": "", "orig_id": 1825261}}, {"model": "metainfo.source", "pk": 1125, "fields": {"orig_filename": "Strnad_Oskar_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 408f.", "author": "", "orig_id": 1434510}}, {"model": "metainfo.source", "pk": 1126, "fields": {"orig_filename": "Strobach-Kleisberg_Josef_1803_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 412", "author": "", "orig_id": 1433654}}, {"model": "metainfo.source", "pk": 1127, "fields": {"orig_filename": "Strobach_Antonin_1814_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410", "author": "", "orig_id": 1433645}}, {"model": "metainfo.source", "pk": 1128, "fields": {"orig_filename": "Strobach_Franz_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410f.", "author": "", "orig_id": 1433646}}, {"model": "metainfo.source", "pk": 1129, "fields": {"orig_filename": "Strobach_Josef-Karl_1852_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 411", "author": "", "orig_id": 1433647}}, {"model": "metainfo.source", "pk": 1130, "fields": {"orig_filename": "Strobach_Josef_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410f.", "author": "", "orig_id": 2003924}}, {"model": "metainfo.source", "pk": 1131, "fields": {"orig_filename": "Strobach_Paul_1776_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 411f.", "author": "", "orig_id": 1433650}}, {"model": "metainfo.source", "pk": 1132, "fields": {"orig_filename": "Strobach_Zdenek_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410", "author": "", "orig_id": 1433653}}, {"model": "metainfo.source", "pk": 1133, "fields": {"orig_filename": "Strobel_Peregrin_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 412f.", "author": "", "orig_id": 1433659}}, {"model": "metainfo.source", "pk": 1134, "fields": {"orig_filename": "Strobentz_Frigyes_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 413", "author": "", "orig_id": 1433703}}, {"model": "metainfo.source", "pk": 1135, "fields": {"orig_filename": "Strobl-Ravelsberg_Ferdinand_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417", "author": "", "orig_id": 1433831}}, {"model": "metainfo.source", "pk": 1136, "fields": {"orig_filename": "Strobl_Alajos_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 413f.", "author": "", "orig_id": 1433706}}, {"model": "metainfo.source", "pk": 1137, "fields": {"orig_filename": "Strobl_Gabriel_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 414f.", "author": "", "orig_id": 1430743}}, {"model": "metainfo.source", "pk": 1138, "fields": {"orig_filename": "Strobl_Johann_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 415", "author": "", "orig_id": 1433714}}, {"model": "metainfo.source", "pk": 1139, "fields": {"orig_filename": "Strobl_Joseph_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 415f.", "author": "", "orig_id": 1433715}}, {"model": "metainfo.source", "pk": 1140, "fields": {"orig_filename": "Strobl_Karl-Hans_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 416f.", "author": "", "orig_id": 1433768}}, {"model": "metainfo.source", "pk": 1141, "fields": {"orig_filename": "Strobl_Richard_1874_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417", "author": "", "orig_id": 1465412}}, {"model": "metainfo.source", "pk": 1142, "fields": {"orig_filename": "Strobl_Zsofia_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 414", "author": "", "orig_id": 1455270}}, {"model": "metainfo.source", "pk": 1143, "fields": {"orig_filename": "Stroehl_Hugo-Gerard_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417f.", "author": "", "orig_id": 1433880}}, {"model": "metainfo.source", "pk": 1144, "fields": {"orig_filename": "Stroehmer_Ludwig_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 418f.", "author": "", "orig_id": 1433881}}, {"model": "metainfo.source", "pk": 1145, "fields": {"orig_filename": "Strohal_Emil-August_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 420", "author": "", "orig_id": 1433930}}, {"model": "metainfo.source", "pk": 1146, "fields": {"orig_filename": "Strohal_Jakob_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 420f.", "author": "", "orig_id": 1433933}}, {"model": "metainfo.source", "pk": 1147, "fields": {"orig_filename": "Strohmayer_Alois_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 421", "author": "", "orig_id": 1433941}}, {"model": "metainfo.source", "pk": 1148, "fields": {"orig_filename": "Strohmayer_Anton_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 421f.", "author": "", "orig_id": 1433942}}, {"model": "metainfo.source", "pk": 1149, "fields": {"orig_filename": "Strohmayr_Otto_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 422", "author": "", "orig_id": 1433079}}, {"model": "metainfo.source", "pk": 1150, "fields": {"orig_filename": "Strohmer_Friedrich_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 422f.", "author": "", "orig_id": 1433082}}, {"model": "metainfo.source", "pk": 1151, "fields": {"orig_filename": "Stroh_Rudolf_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 419", "author": "", "orig_id": 1433886}}, {"model": "metainfo.source", "pk": 1152, "fields": {"orig_filename": "Stroh_Sebastian_1792_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 419f.", "author": "", "orig_id": 1433928}}, {"model": "metainfo.source", "pk": 1153, "fields": {"orig_filename": "Stroj_Mihael_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423", "author": "", "orig_id": 1433295}}, {"model": "metainfo.source", "pk": 1154, "fields": {"orig_filename": "Stromszky_Franz-Samuel_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423", "author": "", "orig_id": 1433159}}, {"model": "metainfo.source", "pk": 1155, "fields": {"orig_filename": "Stronski_Franciszek-Dionizij-Kaspar_1803_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423f.", "author": "", "orig_id": 1433161}}, {"model": "metainfo.source", "pk": 1156, "fields": {"orig_filename": "Strossmayer_Josip-Juraj_1815_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 425", "author": "", "orig_id": 1433228}}, {"model": "metainfo.source", "pk": 1157, "fields": {"orig_filename": "Stross_Emanuel_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433221}}, {"model": "metainfo.source", "pk": 1158, "fields": {"orig_filename": "Stross_Rudolf_1872_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433225}}, {"model": "metainfo.source", "pk": 1159, "fields": {"orig_filename": "Stross_Walter_1882_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433226}}, {"model": "metainfo.source", "pk": 1160, "fields": {"orig_filename": "Strouhal_Vincenc_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 425f.", "author": "", "orig_id": 1433232}}, {"model": "metainfo.source", "pk": 1161, "fields": {"orig_filename": "Stroupeznicka_Marie_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 426f.", "author": "", "orig_id": 1433234}}, {"model": "metainfo.source", "pk": 1162, "fields": {"orig_filename": "Stroupeznicky_Ladislav_1850_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 426f.", "author": "", "orig_id": 1433233}}, {"model": "metainfo.source", "pk": 1163, "fields": {"orig_filename": "Struber_Joseph_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 427", "author": "", "orig_id": 1433302}}, {"model": "metainfo.source", "pk": 1164, "fields": {"orig_filename": "Strucker_Jakob_1761_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 427f.", "author": "", "orig_id": 1433305}}, {"model": "metainfo.source", "pk": 1165, "fields": {"orig_filename": "Strukelj_Mihael_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 428", "author": "", "orig_id": 1433452}}, {"model": "metainfo.source", "pk": 1166, "fields": {"orig_filename": "Strupi_Simon_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 428f.", "author": "", "orig_id": 1433462}}, {"model": "metainfo.source", "pk": 1167, "fields": {"orig_filename": "Struschka_Hermann_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429", "author": "", "orig_id": 1433464}}, {"model": "metainfo.source", "pk": 1168, "fields": {"orig_filename": "Struska_Johann_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429", "author": "", "orig_id": 1433508}}, {"model": "metainfo.source", "pk": 1169, "fields": {"orig_filename": "Struszkiewicz_Jerzy_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429f.", "author": "", "orig_id": 1897706}}, {"model": "metainfo.source", "pk": 1170, "fields": {"orig_filename": "Struszkiewicz_Wladyslaw_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 430", "author": "", "orig_id": 1433509}}, {"model": "metainfo.source", "pk": 1171, "fields": {"orig_filename": "Stryjenski_Karol_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 430f.", "author": "", "orig_id": 1473826}}, {"model": "metainfo.source", "pk": 1172, "fields": {"orig_filename": "Stryjenski_Tadeusz_1849_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 431", "author": "", "orig_id": 1473825}}, {"model": "metainfo.source", "pk": 1173, "fields": {"orig_filename": "Strzelecka_Maria_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 431f.", "author": "", "orig_id": 1880578}}, {"model": "metainfo.source", "pk": 1174, "fields": {"orig_filename": "Strzelecki_Feliks-Jozef_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 432f.", "author": "", "orig_id": 1433518}}, {"model": "metainfo.source", "pk": 1175, "fields": {"orig_filename": "Strzemcha_Paul_1844_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 433", "author": "", "orig_id": 1433568}}, {"model": "metainfo.source", "pk": 1176, "fields": {"orig_filename": "Strzygowski_Franz_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 433f.", "author": "", "orig_id": 1437150}}, {"model": "metainfo.source", "pk": 1177, "fields": {"orig_filename": "Strzygowski_Josef_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 434f.", "author": "", "orig_id": 1431924}}, {"model": "metainfo.source", "pk": 1178, "fields": {"orig_filename": "Stubel_Eleonora_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1432727}}, {"model": "metainfo.source", "pk": 1179, "fields": {"orig_filename": "Stubel_Eugenie_1860_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1433574}}, {"model": "metainfo.source", "pk": 1180, "fields": {"orig_filename": "Stubel_Ludmilla-Hildegard_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 2106143}}, {"model": "metainfo.source", "pk": 1181, "fields": {"orig_filename": "Stubel_Marie_1845_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1469438}}, {"model": "metainfo.source", "pk": 1182, "fields": {"orig_filename": "Stubenberg_Anna_1821_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 436", "author": "", "orig_id": 1432733}}, {"model": "metainfo.source", "pk": 1183, "fields": {"orig_filename": "Stubenberg_Felix_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432734}}, {"model": "metainfo.source", "pk": 1184, "fields": {"orig_filename": "Stubenrauch_Leopold_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438", "author": "", "orig_id": 1432788}}, {"model": "metainfo.source", "pk": 1185, "fields": {"orig_filename": "Stubenrauch_Moriz_1811_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 437", "author": "", "orig_id": 1432789}}, {"model": "metainfo.source", "pk": 1186, "fields": {"orig_filename": "Stubenrauch_Philipp_1784_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 437f.", "author": "", "orig_id": 1432791}}, {"model": "metainfo.source", "pk": 1187, "fields": {"orig_filename": "Stuchlik_Kamil_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438", "author": "", "orig_id": 1911405}}, {"model": "metainfo.source", "pk": 1188, "fields": {"orig_filename": "Stuchlik_Konstantin_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438f.", "author": "", "orig_id": 1911393}}, {"model": "metainfo.source", "pk": 1189, "fields": {"orig_filename": "Studnicka_Alois_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 439", "author": "", "orig_id": 1433025}}, {"model": "metainfo.source", "pk": 1190, "fields": {"orig_filename": "Studnicka_Franz-Josef_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 439f.", "author": "", "orig_id": 1433027}}, {"model": "metainfo.source", "pk": 1191, "fields": {"orig_filename": "Studniczka_Franz_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 440f.", "author": "", "orig_id": 1433029}}, {"model": "metainfo.source", "pk": 1192, "fields": {"orig_filename": "Studynskyj_Kyrylo_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 441", "author": "", "orig_id": 1963747}}, {"model": "metainfo.source", "pk": 1193, "fields": {"orig_filename": "Stueber_Friedrich_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 441f.", "author": "", "orig_id": 1433093}}, {"model": "metainfo.source", "pk": 1194, "fields": {"orig_filename": "Stuedl_Johann_1839_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 442", "author": "", "orig_id": 1433094}}, {"model": "metainfo.source", "pk": 1195, "fields": {"orig_filename": "Stuelpnagel_Ernst_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 442f.", "author": "", "orig_id": 1433096}}, {"model": "metainfo.source", "pk": 1196, "fields": {"orig_filename": "Stuergkh_Josef_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443f.", "author": "", "orig_id": 1433101}}, {"model": "metainfo.source", "pk": 1197, "fields": {"orig_filename": "Stuergkh_Karl_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 444f.", "author": "", "orig_id": 1433102}}, {"model": "metainfo.source", "pk": 1198, "fields": {"orig_filename": "Stuermer_Bartholomaeus_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445", "author": "", "orig_id": 1433164}}, {"model": "metainfo.source", "pk": 1199, "fields": {"orig_filename": "Stuermer_Ignaz_1750_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445f.", "author": "", "orig_id": 1433165}}, {"model": "metainfo.source", "pk": 1200, "fields": {"orig_filename": "Strakosch-Feldringen_Georg_1898_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 351", "author": "", "orig_id": 1434485}}, {"model": "metainfo.source", "pk": 1201, "fields": {"orig_filename": "Strakosch-Feldringen_Siegfried_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 351f.", "author": "", "orig_id": 1433737}}, {"model": "metainfo.source", "pk": 1202, "fields": {"orig_filename": "Strakosch-Grassmann_Gustav_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 352f.", "author": "", "orig_id": 1433745}}, {"model": "metainfo.source", "pk": 1203, "fields": {"orig_filename": "Strakosch_Alexander_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 345f.", "author": "", "orig_id": 1434536}}, {"model": "metainfo.source", "pk": 1204, "fields": {"orig_filename": "Strakosch_Alexander_1879_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2088731}}, {"model": "metainfo.source", "pk": 1205, "fields": {"orig_filename": "Strakosch_Felix_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 346", "author": "", "orig_id": 1434546}}, {"model": "metainfo.source", "pk": 1206, "fields": {"orig_filename": "Strakosch_Ferdinand_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1981757}}, {"model": "metainfo.source", "pk": 1207, "fields": {"orig_filename": "Strakosch_Henry_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 346f.", "author": "", "orig_id": 1823700}}, {"model": "metainfo.source", "pk": 1208, "fields": {"orig_filename": "Strakosch_Irma_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 347", "author": "", "orig_id": 1449787}}, {"model": "metainfo.source", "pk": 1209, "fields": {"orig_filename": "Strakosch_Jonas_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 347f.", "author": "", "orig_id": 1433622}}, {"model": "metainfo.source", "pk": 1210, "fields": {"orig_filename": "Strakosch_Julius_1852_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 348f.", "author": "", "orig_id": 1473429}}, {"model": "metainfo.source", "pk": 1211, "fields": {"orig_filename": "Strakosch_Ludwig_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 349", "author": "", "orig_id": 1433623}}, {"model": "metainfo.source", "pk": 1212, "fields": {"orig_filename": "Strakosch_Max_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1981760}}, {"model": "metainfo.source", "pk": 1213, "fields": {"orig_filename": "Strakosch_Moriz_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 349f.", "author": "", "orig_id": 1433627}}, {"model": "metainfo.source", "pk": 1214, "fields": {"orig_filename": "Strakosch_Salomon_1795_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1433677}}, {"model": "metainfo.source", "pk": 1215, "fields": {"orig_filename": "Strakosch_Simon_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350f.", "author": "", "orig_id": 1433736}}, {"model": "metainfo.source", "pk": 1216, "fields": {"orig_filename": "Strambio_Gaetano_1752_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433907}}, {"model": "metainfo.source", "pk": 1217, "fields": {"orig_filename": "Strambio_Gaetano_1820_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433911}}, {"model": "metainfo.source", "pk": 1218, "fields": {"orig_filename": "Strambio_Giovanni_1780_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433912}}, {"model": "metainfo.source", "pk": 1219, "fields": {"orig_filename": "Strampfer_Friedrich_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 354", "author": "", "orig_id": 1433795}}, {"model": "metainfo.source", "pk": 1220, "fields": {"orig_filename": "Stranecka_Frantiska_1839_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 354f.", "author": "", "orig_id": 1825244}}, {"model": "metainfo.source", "pk": 1221, "fields": {"orig_filename": "Stranig_Albin_1908_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 355", "author": "", "orig_id": 1433802}}, {"model": "metainfo.source", "pk": 1222, "fields": {"orig_filename": "Stranik_Erwin_1898_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 355f.", "author": "", "orig_id": 1433853}}, {"model": "metainfo.source", "pk": 1223, "fields": {"orig_filename": "Stransky-Dresdenberg_Franz_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358f.", "author": "", "orig_id": 1434016}}, {"model": "metainfo.source", "pk": 1224, "fields": {"orig_filename": "Stransky_Adolf_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 356f.", "author": "", "orig_id": 1433854}}, {"model": "metainfo.source", "pk": 1225, "fields": {"orig_filename": "Stransky_Emil_1889_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 357", "author": "", "orig_id": 1427604}}, {"model": "metainfo.source", "pk": 1226, "fields": {"orig_filename": "Stransky_Felix_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 357f.", "author": "", "orig_id": 1433859}}, {"model": "metainfo.source", "pk": 1227, "fields": {"orig_filename": "Stransky_Josef_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358", "author": "", "orig_id": 1433957}}, {"model": "metainfo.source", "pk": 1228, "fields": {"orig_filename": "Stransky_Sigmund_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358", "author": "", "orig_id": 1434015}}, {"model": "metainfo.source", "pk": 1229, "fields": {"orig_filename": "Straschiripka_Johann-Bapt_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 359f.", "author": "", "orig_id": 1434024}}, {"model": "metainfo.source", "pk": 1230, "fields": {"orig_filename": "Strasoldo_Joseph-Philipp-Adam_1738_1824.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434301}}, {"model": "metainfo.source", "pk": 1231, "fields": {"orig_filename": "Strass-Hohenstraeten_Karl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 360", "author": "", "orig_id": 1434027}}, {"model": "metainfo.source", "pk": 1232, "fields": {"orig_filename": "Strasser_Alois_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 360f.", "author": "", "orig_id": 1434074}}, {"model": "metainfo.source", "pk": 1233, "fields": {"orig_filename": "Strasser_Artur_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 361", "author": "", "orig_id": 1434075}}, {"model": "metainfo.source", "pk": 1234, "fields": {"orig_filename": "Strasser_Ferdinand_1901_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 362", "author": "", "orig_id": 1434081}}, {"model": "metainfo.source", "pk": 1235, "fields": {"orig_filename": "Strasser_Gabriel_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 362", "author": "", "orig_id": 1434135}}, {"model": "metainfo.source", "pk": 1236, "fields": {"orig_filename": "Strasser_Josef_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 363f.", "author": "", "orig_id": 1434247}}, {"model": "metainfo.source", "pk": 1237, "fields": {"orig_filename": "Strasser_Josef_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 363", "author": "", "orig_id": 1445066}}, {"model": "metainfo.source", "pk": 1238, "fields": {"orig_filename": "Strasser_Pius_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 364", "author": "", "orig_id": 1434195}}, {"model": "metainfo.source", "pk": 1239, "fields": {"orig_filename": "Strassgschwandtner_Anton_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 364f.", "author": "", "orig_id": 1434246}}, {"model": "metainfo.source", "pk": 1240, "fields": {"orig_filename": "Strassmann_Marie_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 365", "author": "", "orig_id": 1434250}}, {"model": "metainfo.source", "pk": 1241, "fields": {"orig_filename": "Strassni_Fritz_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434254}}, {"model": "metainfo.source", "pk": 1242, "fields": {"orig_filename": "Strassoldo-Graffemberg_Julius-Caesar_1791_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 365f.", "author": "", "orig_id": 1434305}}, {"model": "metainfo.source", "pk": 1243, "fields": {"orig_filename": "Strassoldo-Graffemberg_Michael_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 366", "author": "", "orig_id": 1434309}}, {"model": "metainfo.source", "pk": 1244, "fields": {"orig_filename": "Strassoldo-Sotto_Giulio-Giuseppe_1771_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 366f.", "author": "", "orig_id": 1434303}}, {"model": "metainfo.source", "pk": 1245, "fields": {"orig_filename": "Straszewski_Florian_1767_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 367", "author": "", "orig_id": 1434311}}, {"model": "metainfo.source", "pk": 1246, "fields": {"orig_filename": "Straszewski_Maurycy_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 367f.", "author": "", "orig_id": 1870456}}, {"model": "metainfo.source", "pk": 1247, "fields": {"orig_filename": "Stratico_Simone-Filippo_1733_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 368", "author": "", "orig_id": 1434367}}, {"model": "metainfo.source", "pk": 1248, "fields": {"orig_filename": "Stratil_Frantisek_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 368f.", "author": "", "orig_id": 1434369}}, {"model": "metainfo.source", "pk": 1249, "fields": {"orig_filename": "Stratimirovic_Djordje_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 369", "author": "", "orig_id": 1434377}}, {"model": "metainfo.source", "pk": 1250, "fields": {"orig_filename": "Stratimirovic_Stephan_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 369f.", "author": "", "orig_id": 1434376}}, {"model": "metainfo.source", "pk": 1251, "fields": {"orig_filename": "Strattmann_Benedikt_1760_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 370", "author": "", "orig_id": 2106677}}, {"model": "metainfo.source", "pk": 1252, "fields": {"orig_filename": "Strattmann_Paul_1755_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 370", "author": "", "orig_id": 1434441}}, {"model": "metainfo.source", "pk": 1253, "fields": {"orig_filename": "Straub_Adolf_1808_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371", "author": "", "orig_id": 1434443}}, {"model": "metainfo.source", "pk": 1254, "fields": {"orig_filename": "Straub_Anton_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371", "author": "", "orig_id": 1434487}}, {"model": "metainfo.source", "pk": 1255, "fields": {"orig_filename": "Straub_Josef-Ignaz_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371f.", "author": "", "orig_id": 1434490}}, {"model": "metainfo.source", "pk": 1256, "fields": {"orig_filename": "Straucher_Benno_1854_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 372f.", "author": "", "orig_id": 1433639}}, {"model": "metainfo.source", "pk": 1257, "fields": {"orig_filename": "Strauch_Antonin_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 372", "author": "", "orig_id": 1434500}}, {"model": "metainfo.source", "pk": 1258, "fields": {"orig_filename": "Strauss_Anton_1775_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373f.", "author": "", "orig_id": 1433643}}, {"model": "metainfo.source", "pk": 1259, "fields": {"orig_filename": "Strauss_Eduard_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 374f.", "author": "", "orig_id": 1432287}}, {"model": "metainfo.source", "pk": 1260, "fields": {"orig_filename": "Strauss_Emil_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 375", "author": "", "orig_id": 1433695}}, {"model": "metainfo.source", "pk": 1261, "fields": {"orig_filename": "Strauss_Ferdinand_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 375f.", "author": "", "orig_id": 1433696}}, {"model": "metainfo.source", "pk": 1262, "fields": {"orig_filename": "Strauss_Georg_1800_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 376", "author": "", "orig_id": 1433699}}, {"model": "metainfo.source", "pk": 1263, "fields": {"orig_filename": "Strauss_Henriette_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 376f.", "author": "", "orig_id": 1425833}}, {"model": "metainfo.source", "pk": 1264, "fields": {"orig_filename": "Strauss_Johanna_1890_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 380", "author": "", "orig_id": 1981308}}, {"model": "metainfo.source", "pk": 1265, "fields": {"orig_filename": "Strauss_Johann_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 377f.", "author": "", "orig_id": 1432041}}, {"model": "metainfo.source", "pk": 1266, "fields": {"orig_filename": "Strauss_Johann_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 378f.", "author": "", "orig_id": 1432329}}, {"model": "metainfo.source", "pk": 1267, "fields": {"orig_filename": "Strauss_Johann_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 379f.", "author": "", "orig_id": 1432288}}, {"model": "metainfo.source", "pk": 1268, "fields": {"orig_filename": "Strauss_Josef_1827_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 380f.", "author": "", "orig_id": 1432330}}, {"model": "metainfo.source", "pk": 1269, "fields": {"orig_filename": "Strauss_Joseph_1793_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 381f.", "author": "", "orig_id": 1433753}}, {"model": "metainfo.source", "pk": 1270, "fields": {"orig_filename": "Strauss_Magdalena_1764_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 374", "author": "", "orig_id": 1433758}}, {"model": "metainfo.source", "pk": 1271, "fields": {"orig_filename": "Strauss_Richard_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 382f.", "author": "", "orig_id": 1433760}}, {"model": "metainfo.source", "pk": 1272, "fields": {"orig_filename": "Strauss_Siegmund_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 383", "author": "", "orig_id": 1433805}}, {"model": "metainfo.source", "pk": 1273, "fields": {"orig_filename": "Strausz_Adolf_1853_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 384", "author": "", "orig_id": 1433690}}, {"model": "metainfo.source", "pk": 1274, "fields": {"orig_filename": "Straus_Leo_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373", "author": "", "orig_id": 1433755}}, {"model": "metainfo.source", "pk": 1275, "fields": {"orig_filename": "Strazza_Giovanni_1817_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 384f.", "author": "", "orig_id": 1433814}}, {"model": "metainfo.source", "pk": 1276, "fields": {"orig_filename": "Strecker_Emil_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 385", "author": "", "orig_id": 1433872}}, {"model": "metainfo.source", "pk": 1277, "fields": {"orig_filename": "Streffleur_Valentin_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 385f.", "author": "", "orig_id": 1433921}}, {"model": "metainfo.source", "pk": 1278, "fields": {"orig_filename": "Strehl_Johann_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 386", "author": "", "orig_id": 1433975}}, {"model": "metainfo.source", "pk": 1279, "fields": {"orig_filename": "Streicher_Andreas_1761_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 386f.", "author": "", "orig_id": 1433987}}, {"model": "metainfo.source", "pk": 1280, "fields": {"orig_filename": "Streicher_Emil_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 2004805}}, {"model": "metainfo.source", "pk": 1281, "fields": {"orig_filename": "Streicher_Gustav_1873_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 387", "author": "", "orig_id": 1433984}}, {"model": "metainfo.source", "pk": 1282, "fields": {"orig_filename": "Streicher_Heinrich_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1433985}}, {"model": "metainfo.source", "pk": 1283, "fields": {"orig_filename": "Streicher_Johann-Bapt_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1432331}}, {"model": "metainfo.source", "pk": 1284, "fields": {"orig_filename": "Streicher_Joseph_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389", "author": "", "orig_id": 1434031}}, {"model": "metainfo.source", "pk": 1285, "fields": {"orig_filename": "Streicher_Karl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1434032}}, {"model": "metainfo.source", "pk": 1286, "fields": {"orig_filename": "Streicher_Nanette_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389", "author": "", "orig_id": 1434036}}, {"model": "metainfo.source", "pk": 1287, "fields": {"orig_filename": "Streicher_Theodor_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389f.", "author": "", "orig_id": 1434037}}, {"model": "metainfo.source", "pk": 1288, "fields": {"orig_filename": "Streintz_Franz_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 390", "author": "", "orig_id": 1434043}}, {"model": "metainfo.source", "pk": 1289, "fields": {"orig_filename": "Streintz_Heinrich_1848_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 390f.", "author": "", "orig_id": 1434044}}, {"model": "metainfo.source", "pk": 1290, "fields": {"orig_filename": "Streinz_Wenzel-Matern_1792_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 391", "author": "", "orig_id": 1434045}}, {"model": "metainfo.source", "pk": 1291, "fields": {"orig_filename": "Streissler_Eduard_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434086}}, {"model": "metainfo.source", "pk": 1292, "fields": {"orig_filename": "Streiter_Joseph_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393f.", "author": "", "orig_id": 1427584}}, {"model": "metainfo.source", "pk": 1293, "fields": {"orig_filename": "Streiter_Oswald_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 394", "author": "", "orig_id": 1434097}}, {"model": "metainfo.source", "pk": 1294, "fields": {"orig_filename": "Streitmann_Karl_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 394f.", "author": "", "orig_id": 1434098}}, {"model": "metainfo.source", "pk": 1295, "fields": {"orig_filename": "Streitmann_Luise_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395", "author": "", "orig_id": 1434144}}, {"model": "metainfo.source", "pk": 1296, "fields": {"orig_filename": "Streitmann_Rosa_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395", "author": "", "orig_id": 1434146}}, {"model": "metainfo.source", "pk": 1297, "fields": {"orig_filename": "Streitt_Franciszek_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395f.", "author": "", "orig_id": 1434147}}, {"model": "metainfo.source", "pk": 1298, "fields": {"orig_filename": "Streit_Andreas_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 391f.", "author": "", "orig_id": 1432333}}, {"model": "metainfo.source", "pk": 1299, "fields": {"orig_filename": "Streit_Ignaz_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393", "author": "", "orig_id": 1434090}}, {"model": "metainfo.source", "pk": 1300, "fields": {"orig_filename": "Streit_Karl_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 392f.", "author": "", "orig_id": 1434093}}, {"model": "metainfo.source", "pk": 1301, "fields": {"orig_filename": "Streit_Moriz_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393", "author": "", "orig_id": 1434094}}, {"model": "metainfo.source", "pk": 1302, "fields": {"orig_filename": "Strekelj_Karl_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 396", "author": "", "orig_id": 1434150}}, {"model": "metainfo.source", "pk": 1303, "fields": {"orig_filename": "Stohl_Lukas_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300f.", "author": "", "orig_id": 1432057}}, {"model": "metainfo.source", "pk": 1304, "fields": {"orig_filename": "Stohl_Marie_1828_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300", "author": "", "orig_id": 1896533}}, {"model": "metainfo.source", "pk": 1305, "fields": {"orig_filename": "Stohl_Michael_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 301", "author": "", "orig_id": 1431402}}, {"model": "metainfo.source", "pk": 1306, "fields": {"orig_filename": "Stohr_Franz-Heinrich-Anton_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 301f.", "author": "", "orig_id": 1431403}}, {"model": "metainfo.source", "pk": 1307, "fields": {"orig_filename": "Stoiber_Ernst_1833_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302", "author": "", "orig_id": 1431407}}, {"model": "metainfo.source", "pk": 1308, "fields": {"orig_filename": "Stoitzner_Karl_1834_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302", "author": "", "orig_id": 1431505}}, {"model": "metainfo.source", "pk": 1309, "fields": {"orig_filename": "Stoitzner_Konstantin_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302f.", "author": "", "orig_id": 1431510}}, {"model": "metainfo.source", "pk": 1310, "fields": {"orig_filename": "Stoitzner_Walter-Gottfried_1889_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 303", "author": "", "orig_id": 1431639}}, {"model": "metainfo.source", "pk": 1311, "fields": {"orig_filename": "Stojakovic_Georg_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 303f.", "author": "", "orig_id": 1431646}}, {"model": "metainfo.source", "pk": 1312, "fields": {"orig_filename": "Stojalowski_Stanislaw_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 304", "author": "", "orig_id": 1431649}}, {"model": "metainfo.source", "pk": 1313, "fields": {"orig_filename": "Stojanovic_Mijat_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 306", "author": "", "orig_id": 1431802}}, {"model": "metainfo.source", "pk": 1314, "fields": {"orig_filename": "Stojan_Antonin-Cyril_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 304f.", "author": "", "orig_id": 1431696}}, {"model": "metainfo.source", "pk": 1315, "fields": {"orig_filename": "Stojan_Betty_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 305f.", "author": "", "orig_id": 1431688}}, {"model": "metainfo.source", "pk": 1316, "fields": {"orig_filename": "Stojan_Mihael_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 306", "author": "", "orig_id": 1431743}}, {"model": "metainfo.source", "pk": 1317, "fields": {"orig_filename": "Stojowski_Michal_1763_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307", "author": "", "orig_id": 1887941}}, {"model": "metainfo.source", "pk": 1318, "fields": {"orig_filename": "Stokes_Marianne_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307", "author": "", "orig_id": 1431810}}, {"model": "metainfo.source", "pk": 1319, "fields": {"orig_filename": "Stoklasa_Julius_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307f.", "author": "", "orig_id": 1431022}}, {"model": "metainfo.source", "pk": 1320, "fields": {"orig_filename": "Stokowski_Apolinary_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 308f.", "author": "", "orig_id": 1888028}}, {"model": "metainfo.source", "pk": 1321, "fields": {"orig_filename": "Stolarczyk_Jozef_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 309", "author": "", "orig_id": 1887952}}, {"model": "metainfo.source", "pk": 1322, "fields": {"orig_filename": "Stolba_Frantisek_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 309f.", "author": "", "orig_id": 1431027}}, {"model": "metainfo.source", "pk": 1323, "fields": {"orig_filename": "Stolba_Leopold_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 310f.", "author": "", "orig_id": 1431031}}, {"model": "metainfo.source", "pk": 1324, "fields": {"orig_filename": "Stoliczka_Ferdinand_1838_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 311", "author": "", "orig_id": 1426682}}, {"model": "metainfo.source", "pk": 1325, "fields": {"orig_filename": "Stollberg_Ignaz-Georg_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 313f.", "author": "", "orig_id": 1431201}}, {"model": "metainfo.source", "pk": 1326, "fields": {"orig_filename": "Stollewerk_Nina_1825_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314", "author": "", "orig_id": 1843791}}, {"model": "metainfo.source", "pk": 1327, "fields": {"orig_filename": "Stoll_August_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 311f.", "author": "", "orig_id": 1431141}}, {"model": "metainfo.source", "pk": 1328, "fields": {"orig_filename": "Stoll_Gisela_1867_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312", "author": "", "orig_id": 1981171}}, {"model": "metainfo.source", "pk": 1329, "fields": {"orig_filename": "Stoll_Joseph-Ludwig_1777_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312f.", "author": "", "orig_id": 1449018}}, {"model": "metainfo.source", "pk": 1330, "fields": {"orig_filename": "Stoll_Karl_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312", "author": "", "orig_id": 1981167}}, {"model": "metainfo.source", "pk": 1331, "fields": {"orig_filename": "Stoll_Peter_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 313", "author": "", "orig_id": 1431199}}, {"model": "metainfo.source", "pk": 1332, "fields": {"orig_filename": "Stolovsky_Eduard_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314f.", "author": "", "orig_id": 1431433}}, {"model": "metainfo.source", "pk": 1333, "fields": {"orig_filename": "Stolovsky_Josef_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314f.", "author": "", "orig_id": 1825085}}, {"model": "metainfo.source", "pk": 1334, "fields": {"orig_filename": "Stolper_Gustav_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 315", "author": "", "orig_id": 1431470}}, {"model": "metainfo.source", "pk": 1335, "fields": {"orig_filename": "Stolzissi_Peter-Regalat_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 320", "author": "", "orig_id": 1431149}}, {"model": "metainfo.source", "pk": 1336, "fields": {"orig_filename": "Stolz_Albert_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 315f.", "author": "", "orig_id": 1431533}}, {"model": "metainfo.source", "pk": 1337, "fields": {"orig_filename": "Stolz_Eduard_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 316", "author": "", "orig_id": 1431592}}, {"model": "metainfo.source", "pk": 1338, "fields": {"orig_filename": "Stolz_Friedrich_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 316f.", "author": "", "orig_id": 1431599}}, {"model": "metainfo.source", "pk": 1339, "fields": {"orig_filename": "Stolz_Friedrich_1878_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 319", "author": "", "orig_id": 1469679}}, {"model": "metainfo.source", "pk": 1340, "fields": {"orig_filename": "Stolz_Ignaz_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 317", "author": "", "orig_id": 1431650}}, {"model": "metainfo.source", "pk": 1341, "fields": {"orig_filename": "Stolz_Josef_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 317f.", "author": "", "orig_id": 1431753}}, {"model": "metainfo.source", "pk": 1342, "fields": {"orig_filename": "Stolz_Michael_1820_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 318", "author": "", "orig_id": 1431765}}, {"model": "metainfo.source", "pk": 1343, "fields": {"orig_filename": "Stolz_Otto_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 318f.", "author": "", "orig_id": 1431812}}, {"model": "metainfo.source", "pk": 1344, "fields": {"orig_filename": "Stolz_Teresa_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 319f.", "author": "", "orig_id": 1431269}}, {"model": "metainfo.source", "pk": 1345, "fields": {"orig_filename": "Stonner_Rudolf_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 320f.", "author": "", "orig_id": 1431212}}, {"model": "metainfo.source", "pk": 1346, "fields": {"orig_filename": "Stooss_Carl_1849_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 321f.", "author": "", "orig_id": 1431214}}, {"model": "metainfo.source", "pk": 1347, "fields": {"orig_filename": "Stoos_Pavao_1806_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 321", "author": "", "orig_id": 1431218}}, {"model": "metainfo.source", "pk": 1348, "fields": {"orig_filename": "Stopczanski_Aleksander_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 322", "author": "", "orig_id": 1880446}}, {"model": "metainfo.source", "pk": 1349, "fields": {"orig_filename": "Stoppani_Antonio_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 322f.", "author": "", "orig_id": 1431271}}, {"model": "metainfo.source", "pk": 1350, "fields": {"orig_filename": "Stoppani_Johann-Bapt_1778_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 323f.", "author": "", "orig_id": 1431272}}, {"model": "metainfo.source", "pk": 1351, "fields": {"orig_filename": "Stoppel_Marzellinus_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1431273}}, {"model": "metainfo.source", "pk": 1352, "fields": {"orig_filename": "Storch_Anton-M_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1432233}}, {"model": "metainfo.source", "pk": 1353, "fields": {"orig_filename": "Storch_Anton_1843_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1431277}}, {"model": "metainfo.source", "pk": 1354, "fields": {"orig_filename": "Storch_Frantisek_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1431279}}, {"model": "metainfo.source", "pk": 1355, "fields": {"orig_filename": "Storch_Franz-De-Paula_1763_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324f.", "author": "", "orig_id": 1431281}}, {"model": "metainfo.source", "pk": 1356, "fields": {"orig_filename": "Storch_Franz-De-Paula_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 325", "author": "", "orig_id": 1433989}}, {"model": "metainfo.source", "pk": 1357, "fields": {"orig_filename": "Storch_Karel-Boleslav_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 325f.", "author": "", "orig_id": 1433991}}, {"model": "metainfo.source", "pk": 1358, "fields": {"orig_filename": "Storch_Karl_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 326", "author": "", "orig_id": 1433990}}, {"model": "metainfo.source", "pk": 1359, "fields": {"orig_filename": "Storch_Ludwig_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 326f.", "author": "", "orig_id": 1433994}}, {"model": "metainfo.source", "pk": 1360, "fields": {"orig_filename": "Storck_Josef_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 327", "author": "", "orig_id": 1433997}}, {"model": "metainfo.source", "pk": 1361, "fields": {"orig_filename": "Storek_Edwin_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 327f.", "author": "", "orig_id": 1433999}}, {"model": "metainfo.source", "pk": 1362, "fields": {"orig_filename": "Storek_Heinrich_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328", "author": "", "orig_id": 1434000}}, {"model": "metainfo.source", "pk": 1363, "fields": {"orig_filename": "Storek_Ignaz_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328", "author": "", "orig_id": 1876615}}, {"model": "metainfo.source", "pk": 1364, "fields": {"orig_filename": "Storfer_Adolf-Joseph_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328f.", "author": "", "orig_id": 1434046}}, {"model": "metainfo.source", "pk": 1365, "fields": {"orig_filename": "Storfer_Berthold_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 329f.", "author": "", "orig_id": 1415091}}, {"model": "metainfo.source", "pk": 1366, "fields": {"orig_filename": "Storno_Ferenc_1821_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 330f.", "author": "", "orig_id": 1434049}}, {"model": "metainfo.source", "pk": 1367, "fields": {"orig_filename": "Storno_Ferenc_1851_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 330f.", "author": "", "orig_id": 1455113}}, {"model": "metainfo.source", "pk": 1368, "fields": {"orig_filename": "Storno_Kalman_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331", "author": "", "orig_id": 1894422}}, {"model": "metainfo.source", "pk": 1369, "fields": {"orig_filename": "Stossich_Adolf_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331f.", "author": "", "orig_id": 1434054}}, {"model": "metainfo.source", "pk": 1370, "fields": {"orig_filename": "Stossich_Michele_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331f.", "author": "", "orig_id": 1430744}}, {"model": "metainfo.source", "pk": 1371, "fields": {"orig_filename": "Stotter_Michael_1813_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 332", "author": "", "orig_id": 1434099}}, {"model": "metainfo.source", "pk": 1372, "fields": {"orig_filename": "Stourzh_Alois_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 332f.", "author": "", "orig_id": 1434162}}, {"model": "metainfo.source", "pk": 1373, "fields": {"orig_filename": "Stourzh_Helene_1890_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1950511}}, {"model": "metainfo.source", "pk": 1374, "fields": {"orig_filename": "Stourzh_Herbert_1889_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333", "author": "", "orig_id": 1434222}}, {"model": "metainfo.source", "pk": 1375, "fields": {"orig_filename": "Stowasser_Adolf_1842_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1876595}}, {"model": "metainfo.source", "pk": 1376, "fields": {"orig_filename": "Stowasser_Anton-Rudolf_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1876587}}, {"model": "metainfo.source", "pk": 1377, "fields": {"orig_filename": "Stowasser_Ignaz_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333f.", "author": "", "orig_id": 1434281}}, {"model": "metainfo.source", "pk": 1378, "fields": {"orig_filename": "Stowasser_Ignaz_1852_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333f.", "author": "", "orig_id": 1876578}}, {"model": "metainfo.source", "pk": 1379, "fields": {"orig_filename": "Stowasser_Josef-Maria_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334", "author": "", "orig_id": 1433669}}, {"model": "metainfo.source", "pk": 1380, "fields": {"orig_filename": "Stowasser_Josef_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1449308}}, {"model": "metainfo.source", "pk": 1381, "fields": {"orig_filename": "Stowasser_Julius_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1449310}}, {"model": "metainfo.source", "pk": 1382, "fields": {"orig_filename": "Stowasser_Wenzel_1803_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1433664}}, {"model": "metainfo.source", "pk": 1383, "fields": {"orig_filename": "Stozek_Wlodzimierz-Antoni_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 336", "author": "", "orig_id": 1880463}}, {"model": "metainfo.source", "pk": 1384, "fields": {"orig_filename": "Straberger_Josef_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 336f.", "author": "", "orig_id": 1433721}}, {"model": "metainfo.source", "pk": 1385, "fields": {"orig_filename": "Strache_Eduard_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 337f.", "author": "", "orig_id": 1433774}}, {"model": "metainfo.source", "pk": 1386, "fields": {"orig_filename": "Strache_Franz-Eduard_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 338", "author": "", "orig_id": 1468682}}, {"model": "metainfo.source", "pk": 1387, "fields": {"orig_filename": "Strache_Hugo_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 338f.", "author": "", "orig_id": 1433775}}, {"model": "metainfo.source", "pk": 1388, "fields": {"orig_filename": "Strachovsky_Josef_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 339", "author": "", "orig_id": 1433783}}, {"model": "metainfo.source", "pk": 1389, "fields": {"orig_filename": "Strach_Hermann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 337", "author": "", "orig_id": 1433734}}, {"model": "metainfo.source", "pk": 1390, "fields": {"orig_filename": "Stradal_August_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 339f.", "author": "", "orig_id": 1433897}}, {"model": "metainfo.source", "pk": 1391, "fields": {"orig_filename": "Stradal_Emmy_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 340", "author": "", "orig_id": 1433902}}, {"model": "metainfo.source", "pk": 1392, "fields": {"orig_filename": "Stradal_Hildegard_1864_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 340f.", "author": "", "orig_id": 1433945}}, {"model": "metainfo.source", "pk": 1393, "fields": {"orig_filename": "Stradner_Alois_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 341", "author": "", "orig_id": 1433956}}, {"model": "metainfo.source", "pk": 1394, "fields": {"orig_filename": "Stradner_Josef_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 341", "author": "", "orig_id": 1434414}}, {"model": "metainfo.source", "pk": 1395, "fields": {"orig_filename": "Straessle_Friedrich_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342", "author": "", "orig_id": 1434418}}, {"model": "metainfo.source", "pk": 1396, "fields": {"orig_filename": "Straessle_Josef_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342", "author": "", "orig_id": 1434419}}, {"model": "metainfo.source", "pk": 1397, "fields": {"orig_filename": "Straganz_Max_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342f.", "author": "", "orig_id": 1434424}}, {"model": "metainfo.source", "pk": 1398, "fields": {"orig_filename": "Strahl_Eduard-Josef_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343", "author": "", "orig_id": 1434468}}, {"model": "metainfo.source", "pk": 1399, "fields": {"orig_filename": "Strahl_Karl-Friedrich-Josef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343", "author": "", "orig_id": 1434469}}, {"model": "metainfo.source", "pk": 1400, "fields": {"orig_filename": "Strakaty_Jan_1835_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344f.", "author": "", "orig_id": 1434482}}, {"model": "metainfo.source", "pk": 1401, "fields": {"orig_filename": "Strakaty_Karel_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 345", "author": "", "orig_id": 1434483}}, {"model": "metainfo.source", "pk": 1402, "fields": {"orig_filename": "Straka_Adolf-Vilem_1825_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343f.", "author": "", "orig_id": 1434472}}, {"model": "metainfo.source", "pk": 1403, "fields": {"orig_filename": "Straka_Gustav-Arnost_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344", "author": "", "orig_id": 1434475}}, {"model": "metainfo.source", "pk": 1404, "fields": {"orig_filename": "Straka_Josef_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344", "author": "", "orig_id": 1434477}}, {"model": "metainfo.source", "pk": 1405, "fields": {"orig_filename": "Stifft_Andreas_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256", "author": "", "orig_id": 1432243}}, {"model": "metainfo.source", "pk": 1406, "fields": {"orig_filename": "Stifft_Andreas_1819_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256f.", "author": "", "orig_id": 1432244}}, {"model": "metainfo.source", "pk": 1407, "fields": {"orig_filename": "Stifter_Adalbert_1805_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 259f.", "author": "", "orig_id": 1432253}}, {"model": "metainfo.source", "pk": 1408, "fields": {"orig_filename": "Stifter_Magnus_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 260f.", "author": "", "orig_id": 1980265}}, {"model": "metainfo.source", "pk": 1409, "fields": {"orig_filename": "Stift_Anton_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 258f.", "author": "", "orig_id": 1432247}}, {"model": "metainfo.source", "pk": 1410, "fields": {"orig_filename": "Stift_Wilhelm_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 259", "author": "", "orig_id": 1432252}}, {"model": "metainfo.source", "pk": 1411, "fields": {"orig_filename": "Stiger_Johann-Ev_1776_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 261", "author": "", "orig_id": 1432295}}, {"model": "metainfo.source", "pk": 1412, "fields": {"orig_filename": "Stiger_Joseph-Leopold_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 261f.", "author": "", "orig_id": 1432297}}, {"model": "metainfo.source", "pk": 1413, "fields": {"orig_filename": "Stigleitner_Hans_1899_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 262", "author": "", "orig_id": 1432300}}, {"model": "metainfo.source", "pk": 1414, "fields": {"orig_filename": "Stigler_Josef_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 262f.", "author": "", "orig_id": 1432301}}, {"model": "metainfo.source", "pk": 1415, "fields": {"orig_filename": "Stigler_Karl_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263", "author": "", "orig_id": 1432302}}, {"model": "metainfo.source", "pk": 1416, "fields": {"orig_filename": "Stigler_Wilhelm_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263", "author": "", "orig_id": 1473922}}, {"model": "metainfo.source", "pk": 1417, "fields": {"orig_filename": "Stiglmayr_Joseph_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263f.", "author": "", "orig_id": 1432341}}, {"model": "metainfo.source", "pk": 1418, "fields": {"orig_filename": "Stiller_Bertalan_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 264", "author": "", "orig_id": 1432346}}, {"model": "metainfo.source", "pk": 1419, "fields": {"orig_filename": "Stillfried-Rathenitz_August_1806_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265", "author": "", "orig_id": 1432347}}, {"model": "metainfo.source", "pk": 1420, "fields": {"orig_filename": "Stillfried-Rathenitz_Franz-De-Paula_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 264f.", "author": "", "orig_id": 1472854}}, {"model": "metainfo.source", "pk": 1421, "fields": {"orig_filename": "Stillfried-Rathenitz_Raimund_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265", "author": "", "orig_id": 1432390}}, {"model": "metainfo.source", "pk": 1422, "fields": {"orig_filename": "Stingeder_Franz_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265f.", "author": "", "orig_id": 1432396}}, {"model": "metainfo.source", "pk": 1423, "fields": {"orig_filename": "Stingel_Vincenz_1761_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 266", "author": "", "orig_id": 1432397}}, {"model": "metainfo.source", "pk": 1424, "fields": {"orig_filename": "Stingl_Anton_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 266f.", "author": "", "orig_id": 1449013}}, {"model": "metainfo.source", "pk": 1425, "fields": {"orig_filename": "Stingl_Hans_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267", "author": "", "orig_id": 1432402}}, {"model": "metainfo.source", "pk": 1426, "fields": {"orig_filename": "Stipcak_Leopold_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1432451}}, {"model": "metainfo.source", "pk": 1427, "fields": {"orig_filename": "Stipperger_Adolf_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267", "author": "", "orig_id": 1432456}}, {"model": "metainfo.source", "pk": 1428, "fields": {"orig_filename": "Stipperger_Bernhard_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268", "author": "", "orig_id": 1474715}}, {"model": "metainfo.source", "pk": 1429, "fields": {"orig_filename": "Stipperger_Johann-Bernhard_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268", "author": "", "orig_id": 1474716}}, {"model": "metainfo.source", "pk": 1430, "fields": {"orig_filename": "Stipperger_Johann-Ev_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267f.", "author": "", "orig_id": 1432457}}, {"model": "metainfo.source", "pk": 1431, "fields": {"orig_filename": "Stippler_Johann_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432494}}, {"model": "metainfo.source", "pk": 1432, "fields": {"orig_filename": "Stipsicz-Ternowa_Joseph_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268f.", "author": "", "orig_id": 1432500}}, {"model": "metainfo.source", "pk": 1433, "fields": {"orig_filename": "Stirba-Stirbitz_Franciszek_1780_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269", "author": "", "orig_id": 1880562}}, {"model": "metainfo.source", "pk": 1434, "fields": {"orig_filename": "Stivin_Josef_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269", "author": "", "orig_id": 1432508}}, {"model": "metainfo.source", "pk": 1435, "fields": {"orig_filename": "Stix_Edmund_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269f.", "author": "", "orig_id": 1432549}}, {"model": "metainfo.source", "pk": 1436, "fields": {"orig_filename": "Stix_Karl_1860_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 270", "author": "", "orig_id": 1432551}}, {"model": "metainfo.source", "pk": 1437, "fields": {"orig_filename": "Stobiecki_Stefan-Antoni_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 270f.", "author": "", "orig_id": 1880548}}, {"model": "metainfo.source", "pk": 1438, "fields": {"orig_filename": "Stobinski_Feliks-Leon_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271", "author": "", "orig_id": 1860838}}, {"model": "metainfo.source", "pk": 1439, "fields": {"orig_filename": "Stobinski_Feliks_1803_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271", "author": "", "orig_id": 1860851}}, {"model": "metainfo.source", "pk": 1440, "fields": {"orig_filename": "Stobnicki_Feliks_1800_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271f.", "author": "", "orig_id": 1887993}}, {"model": "metainfo.source", "pk": 1441, "fields": {"orig_filename": "Stockert_Dora_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 274f.", "author": "", "orig_id": 1432669}}, {"model": "metainfo.source", "pk": 1442, "fields": {"orig_filename": "Stockert_Franz_1822_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275", "author": "", "orig_id": 1432616}}, {"model": "metainfo.source", "pk": 1443, "fields": {"orig_filename": "Stockert_Leopold_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275", "author": "", "orig_id": 1980636}}, {"model": "metainfo.source", "pk": 1444, "fields": {"orig_filename": "Stockert_Ludwig_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275f.", "author": "", "orig_id": 1432666}}, {"model": "metainfo.source", "pk": 1445, "fields": {"orig_filename": "Stockert_Robert_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 276", "author": "", "orig_id": 1432667}}, {"model": "metainfo.source", "pk": 1446, "fields": {"orig_filename": "Stocker_Eduard_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 273f.", "author": "", "orig_id": 1432604}}, {"model": "metainfo.source", "pk": 1447, "fields": {"orig_filename": "Stocker_Leopold_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 274", "author": "", "orig_id": 1432609}}, {"model": "metainfo.source", "pk": 1448, "fields": {"orig_filename": "Stocker_Stefan_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 273f.", "author": "", "orig_id": 1432613}}, {"model": "metainfo.source", "pk": 1449, "fields": {"orig_filename": "Stockhammer_Emerich_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 276f.", "author": "", "orig_id": 1432671}}, {"model": "metainfo.source", "pk": 1450, "fields": {"orig_filename": "Stockhammer_Wolfgang_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277", "author": "", "orig_id": 1432673}}, {"model": "metainfo.source", "pk": 1451, "fields": {"orig_filename": "Stockinger_Tamas_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277", "author": "", "orig_id": 1432680}}, {"model": "metainfo.source", "pk": 1452, "fields": {"orig_filename": "Stockmann_Leopold_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278", "author": "", "orig_id": 1431824}}, {"model": "metainfo.source", "pk": 1453, "fields": {"orig_filename": "Stockmann_Nikolaus_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277f.", "author": "", "orig_id": 1431827}}, {"model": "metainfo.source", "pk": 1454, "fields": {"orig_filename": "Stockmar_Ernest-Leopold_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278", "author": "", "orig_id": 1868185}}, {"model": "metainfo.source", "pk": 1455, "fields": {"orig_filename": "Stockmayer_Siegfried_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278f.", "author": "", "orig_id": 1431825}}, {"model": "metainfo.source", "pk": 1456, "fields": {"orig_filename": "Stocky_Albin_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 279", "author": "", "orig_id": 1431828}}, {"model": "metainfo.source", "pk": 1457, "fields": {"orig_filename": "Stock_Jan_1881_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 272", "author": "", "orig_id": 1880539}}, {"model": "metainfo.source", "pk": 1458, "fields": {"orig_filename": "Stock_Norbert_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 272f.", "author": "", "orig_id": 1475250}}, {"model": "metainfo.source", "pk": 1459, "fields": {"orig_filename": "Stodola_Aurel_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 279f.", "author": "", "orig_id": 1431829}}, {"model": "metainfo.source", "pk": 1460, "fields": {"orig_filename": "Stodola_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 280", "author": "", "orig_id": 1431830}}, {"model": "metainfo.source", "pk": 1461, "fields": {"orig_filename": "Stodola_Kornel-Milan_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 280f.", "author": "", "orig_id": 1431881}}, {"model": "metainfo.source", "pk": 1462, "fields": {"orig_filename": "Stodor_Adam_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 281", "author": "", "orig_id": 1832905}}, {"model": "metainfo.source", "pk": 1463, "fields": {"orig_filename": "Stoeber_Franz-Xav_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 282", "author": "", "orig_id": 1431884}}, {"model": "metainfo.source", "pk": 1464, "fields": {"orig_filename": "Stoeber_Franz_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 281f.", "author": "", "orig_id": 1431885}}, {"model": "metainfo.source", "pk": 1465, "fields": {"orig_filename": "Stoeber_Joseph_1768_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 282f.", "author": "", "orig_id": 1431891}}, {"model": "metainfo.source", "pk": 1466, "fields": {"orig_filename": "Stoeckholzer-Hirschfeld_Josef_1805_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 283", "author": "", "orig_id": 1431936}}, {"model": "metainfo.source", "pk": 1467, "fields": {"orig_filename": "Stoeckler_Emanuel_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 285", "author": "", "orig_id": 1432096}}, {"model": "metainfo.source", "pk": 1468, "fields": {"orig_filename": "Stoeckler_Josef_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 285f.", "author": "", "orig_id": 1432097}}, {"model": "metainfo.source", "pk": 1469, "fields": {"orig_filename": "Stoeckli_Augustin_1857_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286", "author": "", "orig_id": 1432148}}, {"model": "metainfo.source", "pk": 1470, "fields": {"orig_filename": "Stoeckl_Adolf_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 283f.", "author": "", "orig_id": 1431937}}, {"model": "metainfo.source", "pk": 1471, "fields": {"orig_filename": "Stoeckl_Andreas-Franz_1834_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 284", "author": "", "orig_id": 1431938}}, {"model": "metainfo.source", "pk": 1472, "fields": {"orig_filename": "Stoeckl_Sebastian_1752_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 284f.", "author": "", "orig_id": 1432093}}, {"model": "metainfo.source", "pk": 1473, "fields": {"orig_filename": "Stoegbauer_Adam_1881_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286", "author": "", "orig_id": 1880426}}, {"model": "metainfo.source", "pk": 1474, "fields": {"orig_filename": "Stoeger-Steiner-Steinstaetten_Rudolf_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291", "author": "", "orig_id": 1432361}}, {"model": "metainfo.source", "pk": 1475, "fields": {"orig_filename": "Stoegermayer_Karl_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291", "author": "", "orig_id": 1432404}}, {"model": "metainfo.source", "pk": 1476, "fields": {"orig_filename": "Stoeger_Adolf_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287f.", "author": "", "orig_id": 1825021}}, {"model": "metainfo.source", "pk": 1477, "fields": {"orig_filename": "Stoeger_Arthur_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286f.", "author": "", "orig_id": 1432212}}, {"model": "metainfo.source", "pk": 1478, "fields": {"orig_filename": "Stoeger_Auguste_1836_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287", "author": "", "orig_id": 1432215}}, {"model": "metainfo.source", "pk": 1479, "fields": {"orig_filename": "Stoeger_Carl_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287f.", "author": "", "orig_id": 1825028}}, {"model": "metainfo.source", "pk": 1480, "fields": {"orig_filename": "Stoeger_Emilie_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288", "author": "", "orig_id": 1432255}}, {"model": "metainfo.source", "pk": 1481, "fields": {"orig_filename": "Stoeger_Johann-August_1791_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288f.", "author": "", "orig_id": 1432309}}, {"model": "metainfo.source", "pk": 1482, "fields": {"orig_filename": "Stoeger_Johann-Nep_1792_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 289", "author": "", "orig_id": 1432258}}, {"model": "metainfo.source", "pk": 1483, "fields": {"orig_filename": "Stoeger_Johanna_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288f.", "author": "", "orig_id": 1436463}}, {"model": "metainfo.source", "pk": 1484, "fields": {"orig_filename": "Stoeger_Josef_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 289f.", "author": "", "orig_id": 1432313}}, {"model": "metainfo.source", "pk": 1485, "fields": {"orig_filename": "Stoeger_Leopold_1814_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 290", "author": "", "orig_id": 1432351}}, {"model": "metainfo.source", "pk": 1486, "fields": {"orig_filename": "Stoeger_Michael-Franz_1796_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 290f.", "author": "", "orig_id": 1432356}}, {"model": "metainfo.source", "pk": 1487, "fields": {"orig_filename": "Stoehr_Adolf_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291f.", "author": "", "orig_id": 1432408}}, {"model": "metainfo.source", "pk": 1488, "fields": {"orig_filename": "Stoehr_August_1764_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 292", "author": "", "orig_id": 1432412}}, {"model": "metainfo.source", "pk": 1489, "fields": {"orig_filename": "Stoehr_Ernst_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 292f.", "author": "", "orig_id": 1432415}}, {"model": "metainfo.source", "pk": 1490, "fields": {"orig_filename": "Stoehr_Hugo_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 293f.", "author": "", "orig_id": 1432418}}, {"model": "metainfo.source", "pk": 1491, "fields": {"orig_filename": "Stoekl_Erich-Karl-Hans_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294", "author": "", "orig_id": 1432088}}, {"model": "metainfo.source", "pk": 1492, "fields": {"orig_filename": "Stoekl_Helene_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294f.", "author": "", "orig_id": 1432514}}, {"model": "metainfo.source", "pk": 1493, "fields": {"orig_filename": "Stoekl_Rudolf_1827_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294f.", "author": "", "orig_id": 1432516}}, {"model": "metainfo.source", "pk": 1494, "fields": {"orig_filename": "Stoelzle_Carl-Anton_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 295", "author": "", "orig_id": 1432567}}, {"model": "metainfo.source", "pk": 1495, "fields": {"orig_filename": "Stoelzle_Rudolf_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 295f.", "author": "", "orig_id": 1432571}}, {"model": "metainfo.source", "pk": 1496, "fields": {"orig_filename": "Stoerck_Paul_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 296", "author": "", "orig_id": 1432574}}, {"model": "metainfo.source", "pk": 1497, "fields": {"orig_filename": "Stoerk_Carl_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 296f.", "author": "", "orig_id": 1449017}}, {"model": "metainfo.source", "pk": 1498, "fields": {"orig_filename": "Stoerk_Felix-Otto_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 297", "author": "", "orig_id": 1432580}}, {"model": "metainfo.source", "pk": 1499, "fields": {"orig_filename": "Stoerk_Oskar_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 297f.", "author": "", "orig_id": 1432620}}, {"model": "metainfo.source", "pk": 1500, "fields": {"orig_filename": "Stoessl_Adolf_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298", "author": "", "orig_id": 1431849}}, {"model": "metainfo.source", "pk": 1501, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_August_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432006}}, {"model": "metainfo.source", "pk": 1502, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Emil-Richard_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298f.", "author": "", "orig_id": 1432008}}, {"model": "metainfo.source", "pk": 1503, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Maria-Josefa_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432012}}, {"model": "metainfo.source", "pk": 1504, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Peter_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432014}}, {"model": "metainfo.source", "pk": 1505, "fields": {"orig_filename": "Stohl_Franz_1799_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300", "author": "", "orig_id": 1432021}}, {"model": "metainfo.source", "pk": 1506, "fields": {"orig_filename": "Stohl_Heinrich_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300f.", "author": "", "orig_id": 1432052}}, {"model": "metainfo.source", "pk": 1507, "fields": {"orig_filename": "Stephan-Victor___1817_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 213", "author": "", "orig_id": 1428410}}, {"model": "metainfo.source", "pk": 1508, "fields": {"orig_filename": "Stephani_Albert_1810_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 213f.", "author": "", "orig_id": 1429654}}, {"model": "metainfo.source", "pk": 1509, "fields": {"orig_filename": "Stephani_Rudolf_1817_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 214", "author": "", "orig_id": 1429590}}, {"model": "metainfo.source", "pk": 1510, "fields": {"orig_filename": "Stephann_Carl_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 214f.", "author": "", "orig_id": 1429646}}, {"model": "metainfo.source", "pk": 1511, "fields": {"orig_filename": "Stephan_Martin_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212f.", "author": "", "orig_id": 1429587}}, {"model": "metainfo.source", "pk": 1512, "fields": {"orig_filename": "Stepischnegg_Jakob-Maximilian_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 215", "author": "", "orig_id": 1429752}}, {"model": "metainfo.source", "pk": 1513, "fields": {"orig_filename": "Stepnicka_Frantisek_1785_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 215f.", "author": "", "orig_id": 1429753}}, {"model": "metainfo.source", "pk": 1514, "fields": {"orig_filename": "Stepski-Doliwa_Friedrich_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 216", "author": "", "orig_id": 1430024}}, {"model": "metainfo.source", "pk": 1515, "fields": {"orig_filename": "Sterba-Boehm_Jan-Stanislav_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 216f.", "author": "", "orig_id": 1472595}}, {"model": "metainfo.source", "pk": 1516, "fields": {"orig_filename": "Sterger_Jozef_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 217", "author": "", "orig_id": 1430089}}, {"model": "metainfo.source", "pk": 1517, "fields": {"orig_filename": "Sterio_Karoly_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 217f.", "author": "", "orig_id": 1430127}}, {"model": "metainfo.source", "pk": 1518, "fields": {"orig_filename": "Sterka-Sulucz-Kerpenyes_Alexander_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219f.", "author": "", "orig_id": 1429323}}, {"model": "metainfo.source", "pk": 1519, "fields": {"orig_filename": "Sterk_Andreas-Maria_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 218", "author": "", "orig_id": 1430129}}, {"model": "metainfo.source", "pk": 1520, "fields": {"orig_filename": "Sterk_Izidor_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 218f.", "author": "", "orig_id": 1430133}}, {"model": "metainfo.source", "pk": 1521, "fields": {"orig_filename": "Sterk_Julius_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219", "author": "", "orig_id": 1429313}}, {"model": "metainfo.source", "pk": 1522, "fields": {"orig_filename": "Sterk_Wilhelm_1880_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219", "author": "", "orig_id": 1429317}}, {"model": "metainfo.source", "pk": 1523, "fields": {"orig_filename": "Stermich-Valcrociata_Anton_1798_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 220f.", "author": "", "orig_id": 1429328}}, {"model": "metainfo.source", "pk": 1524, "fields": {"orig_filename": "Stermich-Valcrociata_Nicolo_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 220f.", "author": "", "orig_id": 1429388}}, {"model": "metainfo.source", "pk": 1525, "fields": {"orig_filename": "Stermich-Valcrociata_Pietro_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221", "author": "", "orig_id": 1429389}}, {"model": "metainfo.source", "pk": 1526, "fields": {"orig_filename": "Stermich-Valcrociata_Simeone_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221", "author": "", "orig_id": 1429381}}, {"model": "metainfo.source", "pk": 1527, "fields": {"orig_filename": "Sternad_Rudolf_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230f.", "author": "", "orig_id": 1429989}}, {"model": "metainfo.source", "pk": 1528, "fields": {"orig_filename": "Sternbach_Hermann_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 231", "author": "", "orig_id": 1430034}}, {"model": "metainfo.source", "pk": 1529, "fields": {"orig_filename": "Sternbach_Ludwik_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 231f.", "author": "", "orig_id": 1845100}}, {"model": "metainfo.source", "pk": 1530, "fields": {"orig_filename": "Sternbach_Maria-Theresia_1775_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 232", "author": "", "orig_id": 1430035}}, {"model": "metainfo.source", "pk": 1531, "fields": {"orig_filename": "Sternbach_Paul-Anton-Maria_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 232f.", "author": "", "orig_id": 1430037}}, {"model": "metainfo.source", "pk": 1532, "fields": {"orig_filename": "Sternbach_Samuel-Leo_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 233", "author": "", "orig_id": 1454363}}, {"model": "metainfo.source", "pk": 1533, "fields": {"orig_filename": "Sternberg-Manderscheid_Franz-Josef_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 237", "author": "", "orig_id": 1430139}}, {"model": "metainfo.source", "pk": 1534, "fields": {"orig_filename": "Sternberg_Adalbert-Wenzel_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 233f.", "author": "", "orig_id": 1430090}}, {"model": "metainfo.source", "pk": 1535, "fields": {"orig_filename": "Sternberg_Adolf_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234", "author": "", "orig_id": 1458639}}, {"model": "metainfo.source", "pk": 1536, "fields": {"orig_filename": "Sternberg_Carl_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234f.", "author": "", "orig_id": 1430096}}, {"model": "metainfo.source", "pk": 1537, "fields": {"orig_filename": "Sternberg_Julian_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 235", "author": "", "orig_id": 1430095}}, {"model": "metainfo.source", "pk": 1538, "fields": {"orig_filename": "Sternberg_Kaspar_1761_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 235f.", "author": "", "orig_id": 1430097}}, {"model": "metainfo.source", "pk": 1539, "fields": {"orig_filename": "Sternberg_Leopold_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 236", "author": "", "orig_id": 1430098}}, {"model": "metainfo.source", "pk": 1540, "fields": {"orig_filename": "Sternberg_Maximilian_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 236f.", "author": "", "orig_id": 1430136}}, {"model": "metainfo.source", "pk": 1541, "fields": {"orig_filename": "Sternberg_Otto_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234", "author": "", "orig_id": 1822979}}, {"model": "metainfo.source", "pk": 1542, "fields": {"orig_filename": "Sterneck_Berthold_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238", "author": "", "orig_id": 1449779}}, {"model": "metainfo.source", "pk": 1543, "fields": {"orig_filename": "Sterneck_Margarethe_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238", "author": "", "orig_id": 1474852}}, {"model": "metainfo.source", "pk": 1544, "fields": {"orig_filename": "Sternen_Matej_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238f.", "author": "", "orig_id": 1429335}}, {"model": "metainfo.source", "pk": 1545, "fields": {"orig_filename": "Sterne_Felix_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 237f.", "author": "", "orig_id": 1430146}}, {"model": "metainfo.source", "pk": 1546, "fields": {"orig_filename": "Sternfeld_Jacques_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 239", "author": "", "orig_id": 1429336}}, {"model": "metainfo.source", "pk": 1547, "fields": {"orig_filename": "Sternglas_Oskar_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 239f.", "author": "", "orig_id": 1472341}}, {"model": "metainfo.source", "pk": 1548, "fields": {"orig_filename": "Stern_Alexander_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221f.", "author": "", "orig_id": 1429537}}, {"model": "metainfo.source", "pk": 1549, "fields": {"orig_filename": "Stern_Alexander_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 222", "author": "", "orig_id": 1430275}}, {"model": "metainfo.source", "pk": 1550, "fields": {"orig_filename": "Stern_Alfred_1831_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 222f.", "author": "", "orig_id": 1429539}}, {"model": "metainfo.source", "pk": 1551, "fields": {"orig_filename": "Stern_Anton_1827_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223", "author": "", "orig_id": 1429710}}, {"model": "metainfo.source", "pk": 1552, "fields": {"orig_filename": "Stern_Arthur_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223f.", "author": "", "orig_id": 1457863}}, {"model": "metainfo.source", "pk": 1553, "fields": {"orig_filename": "Stern_Bernhard_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 224", "author": "", "orig_id": 1435006}}, {"model": "metainfo.source", "pk": 1554, "fields": {"orig_filename": "Stern_Evzen_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 224f.", "author": "", "orig_id": 1429717}}, {"model": "metainfo.source", "pk": 1555, "fields": {"orig_filename": "Stern_Friedrich_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 225", "author": "", "orig_id": 1429719}}, {"model": "metainfo.source", "pk": 1556, "fields": {"orig_filename": "Stern_Hugo_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 225f.", "author": "", "orig_id": 1429766}}, {"model": "metainfo.source", "pk": 1557, "fields": {"orig_filename": "Stern_Josef_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 226", "author": "", "orig_id": 1429771}}, {"model": "metainfo.source", "pk": 1558, "fields": {"orig_filename": "Stern_Josef_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 226f.", "author": "", "orig_id": 1429882}}, {"model": "metainfo.source", "pk": 1559, "fields": {"orig_filename": "Stern_Julius-Bernhard_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228", "author": "", "orig_id": 1429818}}, {"model": "metainfo.source", "pk": 1560, "fields": {"orig_filename": "Stern_Julius_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 227", "author": "", "orig_id": 1429817}}, {"model": "metainfo.source", "pk": 1561, "fields": {"orig_filename": "Stern_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 227f.", "author": "", "orig_id": 1429819}}, {"model": "metainfo.source", "pk": 1562, "fields": {"orig_filename": "Stern_Leopold_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228", "author": "", "orig_id": 1437615}}, {"model": "metainfo.source", "pk": 1563, "fields": {"orig_filename": "Stern_Maurice-Reinhold_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228f.", "author": "", "orig_id": 1429829}}, {"model": "metainfo.source", "pk": 1564, "fields": {"orig_filename": "Stern_Max-Emanuel_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 229", "author": "", "orig_id": 1429932}}, {"model": "metainfo.source", "pk": 1565, "fields": {"orig_filename": "Stern_Richard_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 229f.", "author": "", "orig_id": 1429937}}, {"model": "metainfo.source", "pk": 1566, "fields": {"orig_filename": "Stern_Robert_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230", "author": "", "orig_id": 1429979}}, {"model": "metainfo.source", "pk": 1567, "fields": {"orig_filename": "Stern_Samuel_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230", "author": "", "orig_id": 1429985}}, {"model": "metainfo.source", "pk": 1568, "fields": {"orig_filename": "Stern_Victor_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223", "author": "", "orig_id": 1429987}}, {"model": "metainfo.source", "pk": 1569, "fields": {"orig_filename": "Sterrer_Franz_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1429624}}, {"model": "metainfo.source", "pk": 1570, "fields": {"orig_filename": "Sterrer_Josef_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1432169}}, {"model": "metainfo.source", "pk": 1571, "fields": {"orig_filename": "Sterrer_Karl_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1432171}}, {"model": "metainfo.source", "pk": 1572, "fields": {"orig_filename": "Sterzinger_Joseph-Elias_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 241", "author": "", "orig_id": 1432230}}, {"model": "metainfo.source", "pk": 1573, "fields": {"orig_filename": "Sterzinger_Othmar-Hugo_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 241f.", "author": "", "orig_id": 1432235}}, {"model": "metainfo.source", "pk": 1574, "fields": {"orig_filename": "Sterz_Vinzenz__1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240f.", "author": "", "orig_id": 1432181}}, {"model": "metainfo.source", "pk": 1575, "fields": {"orig_filename": "Steska_Viktor_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 242", "author": "", "orig_id": 1432239}}, {"model": "metainfo.source", "pk": 1576, "fields": {"orig_filename": "Stetka_Gyula_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 242f.", "author": "", "orig_id": 1455112}}, {"model": "metainfo.source", "pk": 1577, "fields": {"orig_filename": "Steub_Ludwig_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 243", "author": "", "orig_id": 1432282}}, {"model": "metainfo.source", "pk": 1578, "fields": {"orig_filename": "Steudel_Johann-Heinrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 243f.", "author": "", "orig_id": 1432283}}, {"model": "metainfo.source", "pk": 1579, "fields": {"orig_filename": "Steurer_Isidor_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 244", "author": "", "orig_id": 1432388}}, {"model": "metainfo.source", "pk": 1580, "fields": {"orig_filename": "Steurer_Leopold_1921_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 244", "author": "", "orig_id": 1432389}}, {"model": "metainfo.source", "pk": 1581, "fields": {"orig_filename": "Steyrer_Franz-Karl_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245", "author": "", "orig_id": 1432436}}, {"model": "metainfo.source", "pk": 1582, "fields": {"orig_filename": "Stiassny-Elzhaim_Felix_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1431865}}, {"model": "metainfo.source", "pk": 1583, "fields": {"orig_filename": "Stiassny_Eduard_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1432656}}, {"model": "metainfo.source", "pk": 1584, "fields": {"orig_filename": "Stiassny_Ignaz_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245f.", "author": "", "orig_id": 1433449}}, {"model": "metainfo.source", "pk": 1585, "fields": {"orig_filename": "Stiassny_Wilhelm_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 246f.", "author": "", "orig_id": 1431991}}, {"model": "metainfo.source", "pk": 1586, "fields": {"orig_filename": "Stibic_Zdenko_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1468947}}, {"model": "metainfo.source", "pk": 1587, "fields": {"orig_filename": "Stibral_Franz_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247f.", "author": "", "orig_id": 1431874}}, {"model": "metainfo.source", "pk": 1588, "fields": {"orig_filename": "Stibral_Jiri_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 248", "author": "", "orig_id": 1431877}}, {"model": "metainfo.source", "pk": 1589, "fields": {"orig_filename": "Stichlberger_Max_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 249", "author": "", "orig_id": 1431920}}, {"model": "metainfo.source", "pk": 1590, "fields": {"orig_filename": "Stich_Ignaz_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 248f.", "author": "", "orig_id": 1431879}}, {"model": "metainfo.source", "pk": 1591, "fields": {"orig_filename": "Stieber_Georg_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 249", "author": "", "orig_id": 1432037}}, {"model": "metainfo.source", "pk": 1592, "fields": {"orig_filename": "Stieber_Miloslav_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432043}}, {"model": "metainfo.source", "pk": 1593, "fields": {"orig_filename": "Stiebitz_Alois-Josef_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432077}}, {"model": "metainfo.source", "pk": 1594, "fields": {"orig_filename": "Stiebitz_Josef_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432078}}, {"model": "metainfo.source", "pk": 1595, "fields": {"orig_filename": "Stiefler_Georg_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 251f.", "author": "", "orig_id": 1432124}}, {"model": "metainfo.source", "pk": 1596, "fields": {"orig_filename": "Stiefsohn_Ignaz_1911_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 252", "author": "", "orig_id": 1432125}}, {"model": "metainfo.source", "pk": 1597, "fields": {"orig_filename": "Stief_Sebastian_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250f.", "author": "", "orig_id": 1432084}}, {"model": "metainfo.source", "pk": 1598, "fields": {"orig_filename": "Stieger_Franz_1843_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 252", "author": "", "orig_id": 1432127}}, {"model": "metainfo.source", "pk": 1599, "fields": {"orig_filename": "Stieger_Johann_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253", "author": "", "orig_id": 1432129}}, {"model": "metainfo.source", "pk": 1600, "fields": {"orig_filename": "Stiegler_Karl_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253", "author": "", "orig_id": 1432137}}, {"model": "metainfo.source", "pk": 1601, "fields": {"orig_filename": "Stieglitz_Franz-De-Paula_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253f.", "author": "", "orig_id": 1432139}}, {"model": "metainfo.source", "pk": 1602, "fields": {"orig_filename": "Stiepan_Oskar_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 254", "author": "", "orig_id": 1427648}}, {"model": "metainfo.source", "pk": 1603, "fields": {"orig_filename": "Stiepel_Heinrich-Tugendhold_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 254f.", "author": "", "orig_id": 1432187}}, {"model": "metainfo.source", "pk": 1604, "fields": {"orig_filename": "Stiepel_Wilhelm-Friedrich-Johann_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 255", "author": "", "orig_id": 1432189}}, {"model": "metainfo.source", "pk": 1605, "fields": {"orig_filename": "Stierle-Holzmeister_Josef_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256", "author": "", "orig_id": 1432195}}, {"model": "metainfo.source", "pk": 1606, "fields": {"orig_filename": "Stierle_Maria-Henrietta_1755_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 255f.", "author": "", "orig_id": 1470581}}, {"model": "metainfo.source", "pk": 1607, "fields": {"orig_filename": "Stifft-Gottlieb_Angela_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 258", "author": "", "orig_id": 1432246}}, {"model": "metainfo.source", "pk": 1608, "fields": {"orig_filename": "Stifft_Andreas-Joseph_1760_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 257f.", "author": "", "orig_id": 1432245}}, {"model": "metainfo.source", "pk": 1609, "fields": {"orig_filename": "Steiner_Julius_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172", "author": "", "orig_id": 1430397}}, {"model": "metainfo.source", "pk": 1610, "fields": {"orig_filename": "Steiner_Leopold_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 174", "author": "", "orig_id": 1430442}}, {"model": "metainfo.source", "pk": 1611, "fields": {"orig_filename": "Steiner_Ludwig_1888_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 174f.", "author": "", "orig_id": 1471203}}, {"model": "metainfo.source", "pk": 1612, "fields": {"orig_filename": "Steiner_Maximilian_1830_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 175", "author": "", "orig_id": 1430482}}, {"model": "metainfo.source", "pk": 1613, "fields": {"orig_filename": "Steiner_Maximilian_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 175f.", "author": "", "orig_id": 1430584}}, {"model": "metainfo.source", "pk": 1614, "fields": {"orig_filename": "Steiner_Melchior_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 176", "author": "", "orig_id": 1430586}}, {"model": "metainfo.source", "pk": 1615, "fields": {"orig_filename": "Steiner_Rudolf-Joseph-Lorenz_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 176f.", "author": "", "orig_id": 1430633}}, {"model": "metainfo.source", "pk": 1616, "fields": {"orig_filename": "Steiner_Sebastian_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 177f.", "author": "", "orig_id": 1430637}}, {"model": "metainfo.source", "pk": 1617, "fields": {"orig_filename": "Steiner_Siegfried_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178", "author": "", "orig_id": 1823320}}, {"model": "metainfo.source", "pk": 1618, "fields": {"orig_filename": "Steiner_Sigmund-Anton_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178f.", "author": "", "orig_id": 1430640}}, {"model": "metainfo.source", "pk": 1619, "fields": {"orig_filename": "Steiner_Sigmund_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178", "author": "", "orig_id": 1430639}}, {"model": "metainfo.source", "pk": 1620, "fields": {"orig_filename": "Steiner_Viktor_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 179", "author": "", "orig_id": 1430642}}, {"model": "metainfo.source", "pk": 1621, "fields": {"orig_filename": "Steinfeld_Franz_1750_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430312}}, {"model": "metainfo.source", "pk": 1622, "fields": {"orig_filename": "Steinfeld_Franz_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430311}}, {"model": "metainfo.source", "pk": 1623, "fields": {"orig_filename": "Steinfeld_Wilhelm_1816_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430313}}, {"model": "metainfo.source", "pk": 1624, "fields": {"orig_filename": "Steingraber_Sigmund_1837_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183f.", "author": "", "orig_id": 1430318}}, {"model": "metainfo.source", "pk": 1625, "fields": {"orig_filename": "Steinhaeusl_Otto_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 184", "author": "", "orig_id": 1430360}}, {"model": "metainfo.source", "pk": 1626, "fields": {"orig_filename": "Steinhardt_Antal_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 185", "author": "", "orig_id": 1458631}}, {"model": "metainfo.source", "pk": 1627, "fields": {"orig_filename": "Steinhard_Erich_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 184f.", "author": "", "orig_id": 1430461}}, {"model": "metainfo.source", "pk": 1628, "fields": {"orig_filename": "Steinhauser_Adolf-Maximilian_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 185f.", "author": "", "orig_id": 1430555}}, {"model": "metainfo.source", "pk": 1629, "fields": {"orig_filename": "Steinhauser_Anton_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 186", "author": "", "orig_id": 1430556}}, {"model": "metainfo.source", "pk": 1630, "fields": {"orig_filename": "Steinhauser_Anton_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 186f.", "author": "", "orig_id": 1430564}}, {"model": "metainfo.source", "pk": 1631, "fields": {"orig_filename": "Steinhauser_Josef_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187", "author": "", "orig_id": 1430664}}, {"model": "metainfo.source", "pk": 1632, "fields": {"orig_filename": "Steinhauser_Robert_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187", "author": "", "orig_id": 1430668}}, {"model": "metainfo.source", "pk": 1633, "fields": {"orig_filename": "Steinhausz_Gyula_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1430552}}, {"model": "metainfo.source", "pk": 1634, "fields": {"orig_filename": "Steinheil_Carl-August_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187f.", "author": "", "orig_id": 1430769}}, {"model": "metainfo.source", "pk": 1635, "fields": {"orig_filename": "Steinherz_Samuel_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 188", "author": "", "orig_id": 1430773}}, {"model": "metainfo.source", "pk": 1636, "fields": {"orig_filename": "Steininger_Augustin_1794_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 188f.", "author": "", "orig_id": 1430818}}, {"model": "metainfo.source", "pk": 1637, "fields": {"orig_filename": "Steininger_Johann-Nep_1856_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 189", "author": "", "orig_id": 1472588}}, {"model": "metainfo.source", "pk": 1638, "fields": {"orig_filename": "Steininger_Josef_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 189f.", "author": "", "orig_id": 1430826}}, {"model": "metainfo.source", "pk": 1639, "fields": {"orig_filename": "Steininger_Karl_1772_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190", "author": "", "orig_id": 1430829}}, {"model": "metainfo.source", "pk": 1640, "fields": {"orig_filename": "Steininger_Karl_1804_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190", "author": "", "orig_id": 1430866}}, {"model": "metainfo.source", "pk": 1641, "fields": {"orig_filename": "Steininger_Karl_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190f.", "author": "", "orig_id": 1843702}}, {"model": "metainfo.source", "pk": 1642, "fields": {"orig_filename": "Steinitz-Moser_Marie_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 192f.", "author": "", "orig_id": 1430332}}, {"model": "metainfo.source", "pk": 1643, "fields": {"orig_filename": "Steinitz_Eduard_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193", "author": "", "orig_id": 1430876}}, {"model": "metainfo.source", "pk": 1644, "fields": {"orig_filename": "Steinitz_Heinrich_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 191", "author": "", "orig_id": 1430915}}, {"model": "metainfo.source", "pk": 1645, "fields": {"orig_filename": "Steinitz_Leo_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 191f.", "author": "", "orig_id": 1430294}}, {"model": "metainfo.source", "pk": 1646, "fields": {"orig_filename": "Steinitz_Wilhelm_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 192", "author": "", "orig_id": 1414679}}, {"model": "metainfo.source", "pk": 1647, "fields": {"orig_filename": "Steinkeller_Piotr-Antoni_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193", "author": "", "orig_id": 1430337}}, {"model": "metainfo.source", "pk": 1648, "fields": {"orig_filename": "Steinkeller_Rudolf_1805_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193f.", "author": "", "orig_id": 1430339}}, {"model": "metainfo.source", "pk": 1649, "fields": {"orig_filename": "Steinko_Franz_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 194", "author": "", "orig_id": 1430343}}, {"model": "metainfo.source", "pk": 1650, "fields": {"orig_filename": "Steinlechner_Paul_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 195", "author": "", "orig_id": 1430432}}, {"model": "metainfo.source", "pk": 1651, "fields": {"orig_filename": "Steinle_Eduard-Jakob_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 194f.", "author": "", "orig_id": 1430380}}, {"model": "metainfo.source", "pk": 1652, "fields": {"orig_filename": "Steinmann_Josef-Johann_1779_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 196", "author": "", "orig_id": 1429670}}, {"model": "metainfo.source", "pk": 1653, "fields": {"orig_filename": "Steinmayr_Johann_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 196f.", "author": "", "orig_id": 1429728}}, {"model": "metainfo.source", "pk": 1654, "fields": {"orig_filename": "Steinmetzer_Franz-Xav_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197", "author": "", "orig_id": 1429836}}, {"model": "metainfo.source", "pk": 1655, "fields": {"orig_filename": "Steinringer_Ferdinand_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197", "author": "", "orig_id": 1429838}}, {"model": "metainfo.source", "pk": 1656, "fields": {"orig_filename": "Steinsberg_Moritz_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197f.", "author": "", "orig_id": 1429842}}, {"model": "metainfo.source", "pk": 1657, "fields": {"orig_filename": "Steinschneider_Hermann_1889_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 198", "author": "", "orig_id": 1429845}}, {"model": "metainfo.source", "pk": 1658, "fields": {"orig_filename": "Steinschneider_Moritz_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 198f.", "author": "", "orig_id": 1429884}}, {"model": "metainfo.source", "pk": 1659, "fields": {"orig_filename": "Steinschneider_Otto_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 199f.", "author": "", "orig_id": 1449930}}, {"model": "metainfo.source", "pk": 1660, "fields": {"orig_filename": "Steinsky_Wilhelm_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200", "author": "", "orig_id": 1429889}}, {"model": "metainfo.source", "pk": 1661, "fields": {"orig_filename": "Steinwender_Angelus_1895_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200", "author": "", "orig_id": 1429891}}, {"model": "metainfo.source", "pk": 1662, "fields": {"orig_filename": "Steinwender_Otto_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200f.", "author": "", "orig_id": 1429894}}, {"model": "metainfo.source", "pk": 1663, "fields": {"orig_filename": "Steinwenter_Arthur_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 201", "author": "", "orig_id": 1430102}}, {"model": "metainfo.source", "pk": 1664, "fields": {"orig_filename": "Stein_Alwin_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 145f.", "author": "", "orig_id": 1428310}}, {"model": "metainfo.source", "pk": 1665, "fields": {"orig_filename": "Stein_Anton-Joseph_1759_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 146", "author": "", "orig_id": 1428311}}, {"model": "metainfo.source", "pk": 1666, "fields": {"orig_filename": "Stein_Arthur_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 146f.", "author": "", "orig_id": 1428313}}, {"model": "metainfo.source", "pk": 1667, "fields": {"orig_filename": "Stein_Carl-Andreas_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 147", "author": "", "orig_id": 1428432}}, {"model": "metainfo.source", "pk": 1668, "fields": {"orig_filename": "Stein_Carl-Robert_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 147f.", "author": "", "orig_id": 1428433}}, {"model": "metainfo.source", "pk": 1669, "fields": {"orig_filename": "Stein_Conrad_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428434}}, {"model": "metainfo.source", "pk": 1670, "fields": {"orig_filename": "Stein_Emerich_1762_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428360}}, {"model": "metainfo.source", "pk": 1671, "fields": {"orig_filename": "Stein_Franz_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149f.", "author": "", "orig_id": 1428367}}, {"model": "metainfo.source", "pk": 1672, "fields": {"orig_filename": "Stein_Friedrich-Johann-Philipp-Emil_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150", "author": "", "orig_id": 1428368}}, {"model": "metainfo.source", "pk": 1673, "fields": {"orig_filename": "Stein_Helene_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156", "author": "", "orig_id": 1464855}}, {"model": "metainfo.source", "pk": 1674, "fields": {"orig_filename": "Stein_Isidor_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150f.", "author": "", "orig_id": 1470349}}, {"model": "metainfo.source", "pk": 1675, "fields": {"orig_filename": "Stein_Karl_1801_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428430}}, {"model": "metainfo.source", "pk": 1676, "fields": {"orig_filename": "Stein_Leo_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 151", "author": "", "orig_id": 1428474}}, {"model": "metainfo.source", "pk": 1677, "fields": {"orig_filename": "Stein_Lorenz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 151f.", "author": "", "orig_id": 1428476}}, {"model": "metainfo.source", "pk": 1678, "fields": {"orig_filename": "Stein_Ludwig_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 152f.", "author": "", "orig_id": 1428530}}, {"model": "metainfo.source", "pk": 1679, "fields": {"orig_filename": "Stein_Marc-Aurel_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 153", "author": "", "orig_id": 1428532}}, {"model": "metainfo.source", "pk": 1680, "fields": {"orig_filename": "Stein_Markus_1845_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 153f.", "author": "", "orig_id": 1428534}}, {"model": "metainfo.source", "pk": 1681, "fields": {"orig_filename": "Stein_Matthaeus-Andreas_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 154", "author": "", "orig_id": 1428536}}, {"model": "metainfo.source", "pk": 1682, "fields": {"orig_filename": "Stein_Maximilian_1814_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 154f.", "author": "", "orig_id": 1428537}}, {"model": "metainfo.source", "pk": 1683, "fields": {"orig_filename": "Stein_Otto_1893_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 155", "author": "", "orig_id": 1438161}}, {"model": "metainfo.source", "pk": 1684, "fields": {"orig_filename": "Stein_Richard_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 155f.", "author": "", "orig_id": 1427751}}, {"model": "metainfo.source", "pk": 1685, "fields": {"orig_filename": "Stein_Salomon_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150", "author": "", "orig_id": 1470348}}, {"model": "metainfo.source", "pk": 1686, "fields": {"orig_filename": "Stein_Viktor_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156", "author": "", "orig_id": 1427755}}, {"model": "metainfo.source", "pk": 1687, "fields": {"orig_filename": "Steiskal_Theodor_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 201f.", "author": "", "orig_id": 1429407}}, {"model": "metainfo.source", "pk": 1688, "fields": {"orig_filename": "Stejskal_Franz_1829_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 202", "author": "", "orig_id": 1429354}}, {"model": "metainfo.source", "pk": 1689, "fields": {"orig_filename": "Stejskal_Karl-Borr-Franz-Josef_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 202f.", "author": "", "orig_id": 1429356}}, {"model": "metainfo.source", "pk": 1690, "fields": {"orig_filename": "Stekel_Wilhelm_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 203", "author": "", "orig_id": 1429515}}, {"model": "metainfo.source", "pk": 1691, "fields": {"orig_filename": "Stellwag-Carion_Alois-Peter-Franz_1753_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 204", "author": "", "orig_id": 1429739}}, {"model": "metainfo.source", "pk": 1692, "fields": {"orig_filename": "Stellwag-Carion_Carl_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 204f.", "author": "", "orig_id": 1429897}}, {"model": "metainfo.source", "pk": 1693, "fields": {"orig_filename": "Stelzel_Franz_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 205", "author": "", "orig_id": 1429898}}, {"model": "metainfo.source", "pk": 1694, "fields": {"orig_filename": "Stelzhamer_Franz-Xav_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 205f.", "author": "", "orig_id": 1427194}}, {"model": "metainfo.source", "pk": 1695, "fields": {"orig_filename": "Stelzhamer_Johann-Christoph_1750_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 206f.", "author": "", "orig_id": 1429956}}, {"model": "metainfo.source", "pk": 1696, "fields": {"orig_filename": "Stelzhammer_Anton_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207", "author": "", "orig_id": 1429911}}, {"model": "metainfo.source", "pk": 1697, "fields": {"orig_filename": "Stelzhammer_Ferdinand_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207", "author": "", "orig_id": 1429951}}, {"model": "metainfo.source", "pk": 1698, "fields": {"orig_filename": "Stembera_Matej-Dobromir_1806_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207f.", "author": "", "orig_id": 1430067}}, {"model": "metainfo.source", "pk": 1699, "fields": {"orig_filename": "Stempfer_Georg_1887_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208", "author": "", "orig_id": 1429298}}, {"model": "metainfo.source", "pk": 1700, "fields": {"orig_filename": "Stenc_Jan_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208", "author": "", "orig_id": 1429310}}, {"model": "metainfo.source", "pk": 1701, "fields": {"orig_filename": "Stenner_Peter-Joseph_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208f.", "author": "", "orig_id": 1429371}}, {"model": "metainfo.source", "pk": 1702, "fields": {"orig_filename": "Stenta_Mario_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 209", "author": "", "orig_id": 1429430}}, {"model": "metainfo.source", "pk": 1703, "fields": {"orig_filename": "Stenta_Michele_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 209f.", "author": "", "orig_id": 1429431}}, {"model": "metainfo.source", "pk": 1704, "fields": {"orig_filename": "Stentrup_Ferdinand-Alois_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 210", "author": "", "orig_id": 1429434}}, {"model": "metainfo.source", "pk": 1705, "fields": {"orig_filename": "Stenzinger-Hillardt_Gabriele-Wilhelmine_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 210", "author": "", "orig_id": 1429480}}, {"model": "metainfo.source", "pk": 1706, "fields": {"orig_filename": "Stepanek_Jan-Nep_1783_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 211f.", "author": "", "orig_id": 1429526}}, {"model": "metainfo.source", "pk": 1707, "fields": {"orig_filename": "Stepanek_Karel_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212", "author": "", "orig_id": 1464125}}, {"model": "metainfo.source", "pk": 1708, "fields": {"orig_filename": "Stepankova_Antonie_1820_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212", "author": "", "orig_id": 1429521}}, {"model": "metainfo.source", "pk": 1709, "fields": {"orig_filename": "Stepan_Vaclav_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 211", "author": "", "orig_id": 1429520}}, {"model": "metainfo.source", "pk": 1710, "fields": {"orig_filename": "Staude_Franz_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119", "author": "", "orig_id": 1427785}}, {"model": "metainfo.source", "pk": 1711, "fields": {"orig_filename": "Staudigl_Gisela_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427793}}, {"model": "metainfo.source", "pk": 1712, "fields": {"orig_filename": "Staudigl_Joseph_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427792}}, {"model": "metainfo.source", "pk": 1713, "fields": {"orig_filename": "Staudigl_Joseph_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427791}}, {"model": "metainfo.source", "pk": 1714, "fields": {"orig_filename": "Staudigl_Oskar-Wilhelm_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120f.", "author": "", "orig_id": 1427837}}, {"model": "metainfo.source", "pk": 1715, "fields": {"orig_filename": "Staudigl_Rudolf_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 121f.", "author": "", "orig_id": 1427900}}, {"model": "metainfo.source", "pk": 1716, "fields": {"orig_filename": "Staud_Johann_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 117f.", "author": "", "orig_id": 1427732}}, {"model": "metainfo.source", "pk": 1717, "fields": {"orig_filename": "Staufer_Johann-Anton_1806_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123", "author": "", "orig_id": 1427960}}, {"model": "metainfo.source", "pk": 1718, "fields": {"orig_filename": "Staufer_Johann-Georg_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 122f.", "author": "", "orig_id": 1427961}}, {"model": "metainfo.source", "pk": 1719, "fields": {"orig_filename": "Stauffer_Josef_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123", "author": "", "orig_id": 1427962}}, {"model": "metainfo.source", "pk": 1720, "fields": {"orig_filename": "Stauffer_Viktor_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123f.", "author": "", "orig_id": 1427996}}, {"model": "metainfo.source", "pk": 1721, "fields": {"orig_filename": "Stauf_Ottokar_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 122", "author": "", "orig_id": 1428136}}, {"model": "metainfo.source", "pk": 1722, "fields": {"orig_filename": "Stauracz_Franz-Xav_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 124", "author": "", "orig_id": 1427998}}, {"model": "metainfo.source", "pk": 1723, "fields": {"orig_filename": "Stava_Julius_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 124f.", "author": "", "orig_id": 1453784}}, {"model": "metainfo.source", "pk": 1724, "fields": {"orig_filename": "Stawa_Franz-Anton_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 125", "author": "", "orig_id": 1428001}}, {"model": "metainfo.source", "pk": 1725, "fields": {"orig_filename": "Stecher-Sebenitz_Ferdinand-Jozef_1779_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 126f.", "author": "", "orig_id": 1428191}}, {"model": "metainfo.source", "pk": 1726, "fields": {"orig_filename": "Stecher_Franz-Anton_1814_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 126", "author": "", "orig_id": 1428014}}, {"model": "metainfo.source", "pk": 1727, "fields": {"orig_filename": "Stech_Vaclav_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 125f.", "author": "", "orig_id": 1428149}}, {"model": "metainfo.source", "pk": 1728, "fields": {"orig_filename": "Steckelmacher_Moritz_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 127", "author": "", "orig_id": 1428295}}, {"model": "metainfo.source", "pk": 1729, "fields": {"orig_filename": "Stecker_Anton_1855_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 127f.", "author": "", "orig_id": 1426641}}, {"model": "metainfo.source", "pk": 1730, "fields": {"orig_filename": "Stecker_Karel_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 128", "author": "", "orig_id": 1428297}}, {"model": "metainfo.source", "pk": 1731, "fields": {"orig_filename": "Stecker_Michael_1786_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 128f.", "author": "", "orig_id": 1428299}}, {"model": "metainfo.source", "pk": 1732, "fields": {"orig_filename": "Steczkowski_Jan-Kanty_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 129", "author": "", "orig_id": 1428346}}, {"model": "metainfo.source", "pk": 1733, "fields": {"orig_filename": "Steczkowski_Jan-Kanty_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 129f.", "author": "", "orig_id": 1428347}}, {"model": "metainfo.source", "pk": 1734, "fields": {"orig_filename": "Steczynski_Maciej-Bogusz-Zygmunt_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 130", "author": "", "orig_id": 1428349}}, {"model": "metainfo.source", "pk": 1735, "fields": {"orig_filename": "Steeb_Christian_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 130f.", "author": "", "orig_id": 1428355}}, {"model": "metainfo.source", "pk": 1736, "fields": {"orig_filename": "Steeb_Gustav_1845_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131", "author": "", "orig_id": 1463259}}, {"model": "metainfo.source", "pk": 1737, "fields": {"orig_filename": "Steeb_Johann-Bapt_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131", "author": "", "orig_id": 1428405}}, {"model": "metainfo.source", "pk": 1738, "fields": {"orig_filename": "Stefanelli_Ioan_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132", "author": "", "orig_id": 1428519}}, {"model": "metainfo.source", "pk": 1739, "fields": {"orig_filename": "Stefanik_Milan-Rastislav_1880_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 133f.", "author": "", "orig_id": 1428527}}, {"model": "metainfo.source", "pk": 1740, "fields": {"orig_filename": "Stefani_Jan_1746_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132f.", "author": "", "orig_id": 1428523}}, {"model": "metainfo.source", "pk": 1741, "fields": {"orig_filename": "Stefanovic-Vilovo_Johann_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134", "author": "", "orig_id": 1427747}}, {"model": "metainfo.source", "pk": 1742, "fields": {"orig_filename": "Stefanovic_Franjo_1879_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134", "author": "", "orig_id": 1427736}}, {"model": "metainfo.source", "pk": 1743, "fields": {"orig_filename": "Stefanowicz_Samuel-Cyrill_1755_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134f.", "author": "", "orig_id": 1427797}}, {"model": "metainfo.source", "pk": 1744, "fields": {"orig_filename": "Stefanyk_Vasyl_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 135", "author": "", "orig_id": 1427800}}, {"model": "metainfo.source", "pk": 1745, "fields": {"orig_filename": "Stefan_Christian_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131f.", "author": "", "orig_id": 1428462}}, {"model": "metainfo.source", "pk": 1746, "fields": {"orig_filename": "Stefan_Josef_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132", "author": "", "orig_id": 1428465}}, {"model": "metainfo.source", "pk": 1747, "fields": {"orig_filename": "Steffal_Vaclav_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 135f.", "author": "", "orig_id": 1427850}}, {"model": "metainfo.source", "pk": 1748, "fields": {"orig_filename": "Steffen_Karl-Emanuel_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 136", "author": "", "orig_id": 1427863}}, {"model": "metainfo.source", "pk": 1749, "fields": {"orig_filename": "Stegensek_Avgustin_1875_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 136f.", "author": "", "orig_id": 1427918}}, {"model": "metainfo.source", "pk": 1750, "fields": {"orig_filename": "Steger_Anton_1768_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 137", "author": "", "orig_id": 1427920}}, {"model": "metainfo.source", "pk": 1751, "fields": {"orig_filename": "Steger_Emil_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 137", "author": "", "orig_id": 1437608}}, {"model": "metainfo.source", "pk": 1752, "fields": {"orig_filename": "Steger_Franz_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 138", "author": "", "orig_id": 1427921}}, {"model": "metainfo.source", "pk": 1753, "fields": {"orig_filename": "Steger_Heinrich_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 138f.", "author": "", "orig_id": 1428012}}, {"model": "metainfo.source", "pk": 1754, "fields": {"orig_filename": "Steger_Joseph_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 139", "author": "", "orig_id": 1428047}}, {"model": "metainfo.source", "pk": 1755, "fields": {"orig_filename": "Stegmayer_Ferdinand_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 139f.", "author": "", "orig_id": 1428058}}, {"model": "metainfo.source", "pk": 1756, "fields": {"orig_filename": "Stegmayer_Karl_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 140", "author": "", "orig_id": 1428059}}, {"model": "metainfo.source", "pk": 1757, "fields": {"orig_filename": "Stegmayer_Matthaeus_1771_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 140", "author": "", "orig_id": 1428060}}, {"model": "metainfo.source", "pk": 1758, "fields": {"orig_filename": "Stegnar_Felix_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1428097}}, {"model": "metainfo.source", "pk": 1759, "fields": {"orig_filename": "Stehle_Adele_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1467852}}, {"model": "metainfo.source", "pk": 1760, "fields": {"orig_filename": "Stehle_Franz_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1841950}}, {"model": "metainfo.source", "pk": 1761, "fields": {"orig_filename": "Stehlik-Cenkow-Treustaett_Emanuel_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141f.", "author": "", "orig_id": 1428101}}, {"model": "metainfo.source", "pk": 1762, "fields": {"orig_filename": "Stehlin_Sebastian_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142", "author": "", "orig_id": 1428153}}, {"model": "metainfo.source", "pk": 1763, "fields": {"orig_filename": "Stehlin_Stanislaus_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142", "author": "", "orig_id": 1428154}}, {"model": "metainfo.source", "pk": 1764, "fields": {"orig_filename": "Steidele_Raphael-Johann_1737_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142f.", "author": "", "orig_id": 1428158}}, {"model": "metainfo.source", "pk": 1765, "fields": {"orig_filename": "Steidler_Josef_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 143f.", "author": "", "orig_id": 1428198}}, {"model": "metainfo.source", "pk": 1766, "fields": {"orig_filename": "Steidle_Richard_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 143", "author": "", "orig_id": 1428196}}, {"model": "metainfo.source", "pk": 1767, "fields": {"orig_filename": "Steigentesch_Ernst-August_1774_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 144", "author": "", "orig_id": 1427641}}, {"model": "metainfo.source", "pk": 1768, "fields": {"orig_filename": "Steiger_Benedikt_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 144f.", "author": "", "orig_id": 1428202}}, {"model": "metainfo.source", "pk": 1769, "fields": {"orig_filename": "Steinach_Eugen_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156f.", "author": "", "orig_id": 1427603}}, {"model": "metainfo.source", "pk": 1770, "fields": {"orig_filename": "Steinach_Simon_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 157f.", "author": "", "orig_id": 1427762}}, {"model": "metainfo.source", "pk": 1771, "fields": {"orig_filename": "Steinach_Wilhelm_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 158", "author": "", "orig_id": 1427807}}, {"model": "metainfo.source", "pk": 1772, "fields": {"orig_filename": "Steinacker_Edmund_1839_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 158f.", "author": "", "orig_id": 1428180}}, {"model": "metainfo.source", "pk": 1773, "fields": {"orig_filename": "Steinacker_Gustav-Wilhelm_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 159", "author": "", "orig_id": 1427810}}, {"model": "metainfo.source", "pk": 1774, "fields": {"orig_filename": "Steinbach_Emil_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 159f.", "author": "", "orig_id": 1427877}}, {"model": "metainfo.source", "pk": 1775, "fields": {"orig_filename": "Steinbach_Gustav_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 160", "author": "", "orig_id": 1427880}}, {"model": "metainfo.source", "pk": 1776, "fields": {"orig_filename": "Steinbach_Josef_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427884}}, {"model": "metainfo.source", "pk": 1777, "fields": {"orig_filename": "Steinbach_Josef_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 160f.", "author": "", "orig_id": 1427924}}, {"model": "metainfo.source", "pk": 1778, "fields": {"orig_filename": "Steinbach_Leopold_1904_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161", "author": "", "orig_id": 1427925}}, {"model": "metainfo.source", "pk": 1779, "fields": {"orig_filename": "Steinberger_Marianne_1887_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161", "author": "", "orig_id": 1448192}}, {"model": "metainfo.source", "pk": 1780, "fields": {"orig_filename": "Steinberger_Philipp_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161f.", "author": "", "orig_id": 1428018}}, {"model": "metainfo.source", "pk": 1781, "fields": {"orig_filename": "Steinberg_Julius_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427976}}, {"model": "metainfo.source", "pk": 1782, "fields": {"orig_filename": "Steinbrener_Johann_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 162", "author": "", "orig_id": 1430566}}, {"model": "metainfo.source", "pk": 1783, "fields": {"orig_filename": "Steinbrener_Rupert_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 162f.", "author": "", "orig_id": 1842549}}, {"model": "metainfo.source", "pk": 1784, "fields": {"orig_filename": "Steinbuechel-Rheinwall_Anton_1790_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 163", "author": "", "orig_id": 1430572}}, {"model": "metainfo.source", "pk": 1785, "fields": {"orig_filename": "Steindachner_Franz_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 164", "author": "", "orig_id": 1430623}}, {"model": "metainfo.source", "pk": 1786, "fields": {"orig_filename": "Steindl_Imre_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 164f.", "author": "", "orig_id": 1430626}}, {"model": "metainfo.source", "pk": 1787, "fields": {"orig_filename": "Steindl_Mathias-Paulus_1761_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165", "author": "", "orig_id": 1430684}}, {"model": "metainfo.source", "pk": 1788, "fields": {"orig_filename": "Steinebach_Friedrich_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166", "author": "", "orig_id": 1430733}}, {"model": "metainfo.source", "pk": 1789, "fields": {"orig_filename": "Steinegger_Ambros_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166", "author": "", "orig_id": 1430737}}, {"model": "metainfo.source", "pk": 1790, "fields": {"orig_filename": "Steinegger_Otto_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166f.", "author": "", "orig_id": 1430833}}, {"model": "metainfo.source", "pk": 1791, "fields": {"orig_filename": "Steiner-Felsburg_Albrecht_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 180", "author": "", "orig_id": 1430691}}, {"model": "metainfo.source", "pk": 1792, "fields": {"orig_filename": "Steiner-Pfungen_Eduard_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181", "author": "", "orig_id": 1430270}}, {"model": "metainfo.source", "pk": 1793, "fields": {"orig_filename": "Steiner-Pfungen_Joseph_1767_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 180f.", "author": "", "orig_id": 1430305}}, {"model": "metainfo.source", "pk": 1794, "fields": {"orig_filename": "Steiner-Pfungen_Robert-Wilhelm-Joseph_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181", "author": "", "orig_id": 1430306}}, {"model": "metainfo.source", "pk": 1795, "fields": {"orig_filename": "Steiner-Prag_Hugo_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181f.", "author": "", "orig_id": 1430307}}, {"model": "metainfo.source", "pk": 1796, "fields": {"orig_filename": "Steiner-Wischenbart_Josef_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 182f.", "author": "", "orig_id": 1430308}}, {"model": "metainfo.source", "pk": 1797, "fields": {"orig_filename": "Steiner_Agnes-Klara_1813_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 167", "author": "", "orig_id": 1430480}}, {"model": "metainfo.source", "pk": 1798, "fields": {"orig_filename": "Steiner_Bernd_1884_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 167f.", "author": "", "orig_id": 1430935}}, {"model": "metainfo.source", "pk": 1799, "fields": {"orig_filename": "Steiner_Franz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 168", "author": "", "orig_id": 1430201}}, {"model": "metainfo.source", "pk": 1800, "fields": {"orig_filename": "Steiner_Friedrich_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 168f.", "author": "", "orig_id": 1430247}}, {"model": "metainfo.source", "pk": 1801, "fields": {"orig_filename": "Steiner_Fueloep_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 169", "author": "", "orig_id": 1430630}}, {"model": "metainfo.source", "pk": 1802, "fields": {"orig_filename": "Steiner_Gabor_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 169f.", "author": "", "orig_id": 1430250}}, {"model": "metainfo.source", "pk": 1803, "fields": {"orig_filename": "Steiner_Hanna_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 170f.", "author": "", "orig_id": 1430253}}, {"model": "metainfo.source", "pk": 1804, "fields": {"orig_filename": "Steiner_Heinrich-Elchanan_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 171", "author": "", "orig_id": 1430295}}, {"model": "metainfo.source", "pk": 1805, "fields": {"orig_filename": "Steiner_Hermann_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 171f.", "author": "", "orig_id": 1842752}}, {"model": "metainfo.source", "pk": 1806, "fields": {"orig_filename": "Steiner_Johann_1833_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172f.", "author": "", "orig_id": 1430303}}, {"model": "metainfo.source", "pk": 1807, "fields": {"orig_filename": "Steiner_Josef_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 173", "author": "", "orig_id": 1430357}}, {"model": "metainfo.source", "pk": 1808, "fields": {"orig_filename": "Steiner_Jo_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172", "author": "", "orig_id": 1430388}}, {"model": "metainfo.source", "pk": 1809, "fields": {"orig_filename": "Steiner_Julius_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 173f.", "author": "", "orig_id": 1430393}}, {"model": "metainfo.source", "pk": 1810, "fields": {"orig_filename": "Steiner_Julius_1863_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 177f.", "author": "", "orig_id": 1430395}}, {"model": "metainfo.source", "pk": 1811, "fields": {"orig_filename": "Stadler_Joseph_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 74", "author": "", "orig_id": 1429027}}, {"model": "metainfo.source", "pk": 1812, "fields": {"orig_filename": "Stadler_Josip_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 74f.", "author": "", "orig_id": 1429062}}, {"model": "metainfo.source", "pk": 1813, "fields": {"orig_filename": "Stadler_Maximilian_1748_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 75f.", "author": "", "orig_id": 1429066}}, {"model": "metainfo.source", "pk": 1814, "fields": {"orig_filename": "Stadlmayr_Franz_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 76", "author": "", "orig_id": 1429149}}, {"model": "metainfo.source", "pk": 1815, "fields": {"orig_filename": "Stadl_Josef_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 70f.", "author": "", "orig_id": 1428923}}, {"model": "metainfo.source", "pk": 1816, "fields": {"orig_filename": "Stadl_Peter_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 71", "author": "", "orig_id": 1428926}}, {"model": "metainfo.source", "pk": 1817, "fields": {"orig_filename": "Stadnicki_Jan_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77", "author": "", "orig_id": 1429204}}, {"model": "metainfo.source", "pk": 1818, "fields": {"orig_filename": "Stadnicki_Kazimierz_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77", "author": "", "orig_id": 1429205}}, {"model": "metainfo.source", "pk": 1819, "fields": {"orig_filename": "Stadnicki_Stanislaw-Jan-Kanty_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77f.", "author": "", "orig_id": 1429207}}, {"model": "metainfo.source", "pk": 1820, "fields": {"orig_filename": "Staehlin_Gustav-Adolf_1816_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1429261}}, {"model": "metainfo.source", "pk": 1821, "fields": {"orig_filename": "Staehlin_Heinrich-August_1812_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1429262}}, {"model": "metainfo.source", "pk": 1822, "fields": {"orig_filename": "Staehlin_Karl_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1428570}}, {"model": "metainfo.source", "pk": 1823, "fields": {"orig_filename": "Staetter_Philipp_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78f.", "author": "", "orig_id": 1464534}}, {"model": "metainfo.source", "pk": 1824, "fields": {"orig_filename": "Staffler_Johann-Jakob_1783_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 79f.", "author": "", "orig_id": 1428662}}, {"model": "metainfo.source", "pk": 1825, "fields": {"orig_filename": "Staffler_Josef_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 80", "author": "", "orig_id": 1428664}}, {"model": "metainfo.source", "pk": 1826, "fields": {"orig_filename": "Staff_Alois_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 79", "author": "", "orig_id": 1428610}}, {"model": "metainfo.source", "pk": 1827, "fields": {"orig_filename": "Stafl_Otakar_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 80f.", "author": "", "orig_id": 1464916}}, {"model": "metainfo.source", "pk": 1828, "fields": {"orig_filename": "Stahly_Gyoergy_1809_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82", "author": "", "orig_id": 1428217}}, {"model": "metainfo.source", "pk": 1829, "fields": {"orig_filename": "Stahly_Ignacz_1787_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82", "author": "", "orig_id": 1428219}}, {"model": "metainfo.source", "pk": 1830, "fields": {"orig_filename": "Stahl_Ludwig_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 81", "author": "", "orig_id": 1428170}}, {"model": "metainfo.source", "pk": 1831, "fields": {"orig_filename": "Stahl_Philipp_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 81f.", "author": "", "orig_id": 1428174}}, {"model": "metainfo.source", "pk": 1832, "fields": {"orig_filename": "Stainer_Karl_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82f.", "author": "", "orig_id": 1448660}}, {"model": "metainfo.source", "pk": 1833, "fields": {"orig_filename": "Staininger_Michael_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 83", "author": "", "orig_id": 1428253}}, {"model": "metainfo.source", "pk": 1834, "fields": {"orig_filename": "Stalmach_Paul_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 83f.", "author": "", "orig_id": 1428316}}, {"model": "metainfo.source", "pk": 1835, "fields": {"orig_filename": "Stalzer_Hans_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 84", "author": "", "orig_id": 1428317}}, {"model": "metainfo.source", "pk": 1836, "fields": {"orig_filename": "Stalzer_Josef_1880_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 84f.", "author": "", "orig_id": 1428318}}, {"model": "metainfo.source", "pk": 1837, "fields": {"orig_filename": "Stammhammer_Josef_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 85f.", "author": "", "orig_id": 1428327}}, {"model": "metainfo.source", "pk": 1838, "fields": {"orig_filename": "Stamm_Ferdinand_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 85", "author": "", "orig_id": 1428323}}, {"model": "metainfo.source", "pk": 1839, "fields": {"orig_filename": "Stampfer_Coelestin_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 86", "author": "", "orig_id": 1428381}}, {"model": "metainfo.source", "pk": 1840, "fields": {"orig_filename": "Stampfer_Simon_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 86f.", "author": "", "orig_id": 1428387}}, {"model": "metainfo.source", "pk": 1841, "fields": {"orig_filename": "Stampfl_Josef_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 87", "author": "", "orig_id": 1428437}}, {"model": "metainfo.source", "pk": 1842, "fields": {"orig_filename": "Standfest_Franz_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88", "author": "", "orig_id": 1428446}}, {"model": "metainfo.source", "pk": 1843, "fields": {"orig_filename": "Standl_Ivan_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88", "author": "", "orig_id": 1428448}}, {"model": "metainfo.source", "pk": 1844, "fields": {"orig_filename": "Standthartner_Josef_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88f.", "author": "", "orig_id": 1428502}}, {"model": "metainfo.source", "pk": 1845, "fields": {"orig_filename": "Stand_Adolf_1870_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 87f.", "author": "", "orig_id": 1428442}}, {"model": "metainfo.source", "pk": 1846, "fields": {"orig_filename": "Stanecki_Tomasz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 89", "author": "", "orig_id": 1429203}}, {"model": "metainfo.source", "pk": 1847, "fields": {"orig_filename": "Stanek_Frantisek_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 89f.", "author": "", "orig_id": 1428451}}, {"model": "metainfo.source", "pk": 1848, "fields": {"orig_filename": "Stanek_Jan_1828_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 90", "author": "", "orig_id": 1428482}}, {"model": "metainfo.source", "pk": 1849, "fields": {"orig_filename": "Stanek_Josef_1883_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 90f.", "author": "", "orig_id": 1464803}}, {"model": "metainfo.source", "pk": 1850, "fields": {"orig_filename": "Stanek_Vaclav_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 91", "author": "", "orig_id": 1428484}}, {"model": "metainfo.source", "pk": 1851, "fields": {"orig_filename": "Stanic_Konstantin_1756_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 91f.", "author": "", "orig_id": 1427765}}, {"model": "metainfo.source", "pk": 1852, "fields": {"orig_filename": "Stanic_Valentin_1774_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 92f.", "author": "", "orig_id": 1427764}}, {"model": "metainfo.source", "pk": 1853, "fields": {"orig_filename": "Stanislawski_Jan-Grzegorz_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427773}}, {"model": "metainfo.source", "pk": 1854, "fields": {"orig_filename": "Stanke_Franz_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427777}}, {"model": "metainfo.source", "pk": 1855, "fields": {"orig_filename": "Stanke_Leopold-Franz_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427778}}, {"model": "metainfo.source", "pk": 1856, "fields": {"orig_filename": "Stankovich_Pietro-Mattia_1771_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 94f.", "author": "", "orig_id": 1428440}}, {"model": "metainfo.source", "pk": 1857, "fields": {"orig_filename": "Stankovic_Kornelije_1831_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 94", "author": "", "orig_id": 1427779}}, {"model": "metainfo.source", "pk": 1858, "fields": {"orig_filename": "Stankovsky_Josef-Jiri_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 95", "author": "", "orig_id": 1427824}}, {"model": "metainfo.source", "pk": 1859, "fields": {"orig_filename": "Stanojevic_Stanoje_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 95f.", "author": "", "orig_id": 1427825}}, {"model": "metainfo.source", "pk": 1860, "fields": {"orig_filename": "Stanonik_Franz_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 96", "author": "", "orig_id": 1427827}}, {"model": "metainfo.source", "pk": 1861, "fields": {"orig_filename": "Stapf_Johann-Josef-Anton_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 96f.", "author": "", "orig_id": 1427885}}, {"model": "metainfo.source", "pk": 1862, "fields": {"orig_filename": "Stapf_Josef_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98", "author": "", "orig_id": 1470903}}, {"model": "metainfo.source", "pk": 1863, "fields": {"orig_filename": "Stapf_Josef_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98", "author": "", "orig_id": 1470388}}, {"model": "metainfo.source", "pk": 1864, "fields": {"orig_filename": "Stapf_Joseph-Ambros_1785_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97", "author": "", "orig_id": 1427836}}, {"model": "metainfo.source", "pk": 1865, "fields": {"orig_filename": "Stapf_Joseph_1779_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97", "author": "", "orig_id": 1470387}}, {"model": "metainfo.source", "pk": 1866, "fields": {"orig_filename": "Stapf_Martin_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97f.", "author": "", "orig_id": 1427886}}, {"model": "metainfo.source", "pk": 1867, "fields": {"orig_filename": "Stapf_Otto_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98f.", "author": "", "orig_id": 1427887}}, {"model": "metainfo.source", "pk": 1868, "fields": {"orig_filename": "Stapf_Thomas_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 99", "author": "", "orig_id": 1427888}}, {"model": "metainfo.source", "pk": 1869, "fields": {"orig_filename": "Starcevic_Ante_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 99f.", "author": "", "orig_id": 1427893}}, {"model": "metainfo.source", "pk": 1870, "fields": {"orig_filename": "Starcevic_David_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100", "author": "", "orig_id": 1427894}}, {"model": "metainfo.source", "pk": 1871, "fields": {"orig_filename": "Starcevic_Mile_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100", "author": "", "orig_id": 1427895}}, {"model": "metainfo.source", "pk": 1872, "fields": {"orig_filename": "Starck_Johann-Anton_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100f.", "author": "", "orig_id": 1427938}}, {"model": "metainfo.source", "pk": 1873, "fields": {"orig_filename": "Starck_Johann-David_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 101", "author": "", "orig_id": 1427939}}, {"model": "metainfo.source", "pk": 1874, "fields": {"orig_filename": "Starek_Ludovit_1803_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102", "author": "", "orig_id": 1427982}}, {"model": "metainfo.source", "pk": 1875, "fields": {"orig_filename": "Stare_Josip_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 101", "author": "", "orig_id": 1427947}}, {"model": "metainfo.source", "pk": 1876, "fields": {"orig_filename": "Starhemberg_Anton-Gundakar_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102", "author": "", "orig_id": 1427984}}, {"model": "metainfo.source", "pk": 1877, "fields": {"orig_filename": "Starhemberg_Camillo-Heinrich_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102f.", "author": "", "orig_id": 1427986}}, {"model": "metainfo.source", "pk": 1878, "fields": {"orig_filename": "Starhemberg_Camillo-Ruediger_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103", "author": "", "orig_id": 1427987}}, {"model": "metainfo.source", "pk": 1879, "fields": {"orig_filename": "Starhemberg_Ernst-Ruediger_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103", "author": "", "orig_id": 1427989}}, {"model": "metainfo.source", "pk": 1880, "fields": {"orig_filename": "Starhemberg_Franziska_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103f.", "author": "", "orig_id": 1428027}}, {"model": "metainfo.source", "pk": 1881, "fields": {"orig_filename": "Starhemberg_Ludwig_1762_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 104f.", "author": "", "orig_id": 1428034}}, {"model": "metainfo.source", "pk": 1882, "fields": {"orig_filename": "Stark-Rungberg_Franz-Xav_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 108", "author": "", "orig_id": 1428126}}, {"model": "metainfo.source", "pk": 1883, "fields": {"orig_filename": "Starkenstein_Emil_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 109f.", "author": "", "orig_id": 1427600}}, {"model": "metainfo.source", "pk": 1884, "fields": {"orig_filename": "Starke_Friedrich_1774_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 108f.", "author": "", "orig_id": 1428129}}, {"model": "metainfo.source", "pk": 1885, "fields": {"orig_filename": "Starkl_Gottfried_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 110", "author": "", "orig_id": 1428275}}, {"model": "metainfo.source", "pk": 1886, "fields": {"orig_filename": "Stark_Adele_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105f.", "author": "", "orig_id": 1428072}}, {"model": "metainfo.source", "pk": 1887, "fields": {"orig_filename": "Stark_Franz-Anton_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 106", "author": "", "orig_id": 1428081}}, {"model": "metainfo.source", "pk": 1888, "fields": {"orig_filename": "Stark_Johannes_1794_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 106", "author": "", "orig_id": 1428083}}, {"model": "metainfo.source", "pk": 1889, "fields": {"orig_filename": "Stark_Josef-August_1782_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107", "author": "", "orig_id": 1428118}}, {"model": "metainfo.source", "pk": 1890, "fields": {"orig_filename": "Stark_Lipot_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107", "author": "", "orig_id": 1428122}}, {"model": "metainfo.source", "pk": 1891, "fields": {"orig_filename": "Stark_Simon_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107f.", "author": "", "orig_id": 1427943}}, {"model": "metainfo.source", "pk": 1892, "fields": {"orig_filename": "Starlinger_Josef_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 110f.", "author": "", "orig_id": 1428277}}, {"model": "metainfo.source", "pk": 1893, "fields": {"orig_filename": "Stary_Emanuel_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111", "author": "", "orig_id": 1428285}}, {"model": "metainfo.source", "pk": 1894, "fields": {"orig_filename": "Stary_Emanuel_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111", "author": "", "orig_id": 1428330}}, {"model": "metainfo.source", "pk": 1895, "fields": {"orig_filename": "Stary_Sigismund-Anton_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111f.", "author": "", "orig_id": 1428332}}, {"model": "metainfo.source", "pk": 1896, "fields": {"orig_filename": "Starzengruber_Josef_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112", "author": "", "orig_id": 1428334}}, {"model": "metainfo.source", "pk": 1897, "fields": {"orig_filename": "Starzer_Albert_1863_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112", "author": "", "orig_id": 1428339}}, {"model": "metainfo.source", "pk": 1898, "fields": {"orig_filename": "Starzynski_Stanislaw_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112f.", "author": "", "orig_id": 1428344}}, {"model": "metainfo.source", "pk": 1899, "fields": {"orig_filename": "Stastny_Alfons-Bohumil_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 113f.", "author": "", "orig_id": 1464123}}, {"model": "metainfo.source", "pk": 1900, "fields": {"orig_filename": "Stastny_Alfons_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 113", "author": "", "orig_id": 1428394}}, {"model": "metainfo.source", "pk": 1901, "fields": {"orig_filename": "Stastny_Bernard-Vaclav_1760_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114", "author": "", "orig_id": 1428395}}, {"model": "metainfo.source", "pk": 1902, "fields": {"orig_filename": "Stastny_Jan_1764_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114", "author": "", "orig_id": 1468140}}, {"model": "metainfo.source", "pk": 1903, "fields": {"orig_filename": "Stastny_Vladimir_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114f.", "author": "", "orig_id": 1428508}}, {"model": "metainfo.source", "pk": 1904, "fields": {"orig_filename": "Stattler_Henryk-Antoni_1834_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115", "author": "", "orig_id": 1428510}}, {"model": "metainfo.source", "pk": 1905, "fields": {"orig_filename": "Stattler_Stanislaw_1836_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115", "author": "", "orig_id": 1428512}}, {"model": "metainfo.source", "pk": 1906, "fields": {"orig_filename": "Stattler_Wojciech-Korneli_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115f.", "author": "", "orig_id": 1428509}}, {"model": "metainfo.source", "pk": 1907, "fields": {"orig_filename": "Staub_Franz_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 116", "author": "", "orig_id": 1427722}}, {"model": "metainfo.source", "pk": 1908, "fields": {"orig_filename": "Staub_Moritz_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 116f.", "author": "", "orig_id": 1427725}}, {"model": "metainfo.source", "pk": 1909, "fields": {"orig_filename": "Staudach_Emma-Antonia_1834_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 118f.", "author": "", "orig_id": 1427783}}, {"model": "metainfo.source", "pk": 1910, "fields": {"orig_filename": "Stauda_August_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 118", "author": "", "orig_id": 1427734}}, {"model": "metainfo.source", "pk": 1911, "fields": {"orig_filename": "Staudenheim_Jakob_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119", "author": "", "orig_id": 1427787}}, {"model": "metainfo.source", "pk": 1912, "fields": {"orig_filename": "Stauder_Hermann_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119f.", "author": "", "orig_id": 1430582}}, {"model": "metainfo.source", "pk": 1913, "fields": {"orig_filename": "Spies_Hermann_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 26", "author": "", "orig_id": 1426893}}, {"model": "metainfo.source", "pk": 1914, "fields": {"orig_filename": "Spillar_Jaroslav_1869_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 27", "author": "", "orig_id": 1426177}}, {"model": "metainfo.source", "pk": 1915, "fields": {"orig_filename": "Spillar_Karel_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 27f.", "author": "", "orig_id": 1429006}}, {"model": "metainfo.source", "pk": 1916, "fields": {"orig_filename": "Spiller_Philipp_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28", "author": "", "orig_id": 1426180}}, {"model": "metainfo.source", "pk": 1917, "fields": {"orig_filename": "Spina_Anton_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28", "author": "", "orig_id": 1426186}}, {"model": "metainfo.source", "pk": 1918, "fields": {"orig_filename": "Spina_Arnold_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28f.", "author": "", "orig_id": 1426187}}, {"model": "metainfo.source", "pk": 1919, "fields": {"orig_filename": "Spina_Carl-Anton_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 29", "author": "", "orig_id": 1426189}}, {"model": "metainfo.source", "pk": 1920, "fields": {"orig_filename": "Spina_Franz_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 29f.", "author": "", "orig_id": 1426188}}, {"model": "metainfo.source", "pk": 1921, "fields": {"orig_filename": "Spindler_Ervin_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30", "author": "", "orig_id": 1426235}}, {"model": "metainfo.source", "pk": 1922, "fields": {"orig_filename": "Spinka_Anna__1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30f.", "author": "", "orig_id": 1470622}}, {"model": "metainfo.source", "pk": 1923, "fields": {"orig_filename": "Spinka_Vaclav_1796_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30f.", "author": "", "orig_id": 1426244}}, {"model": "metainfo.source", "pk": 1924, "fields": {"orig_filename": "Spira_Jacob-Fritz_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 31f.", "author": "", "orig_id": 1426249}}, {"model": "metainfo.source", "pk": 1925, "fields": {"orig_filename": "Spirk_Antonin-Ferdinand_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426451}}, {"model": "metainfo.source", "pk": 1926, "fields": {"orig_filename": "Spirk_Antonin_1838_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426450}}, {"model": "metainfo.source", "pk": 1927, "fields": {"orig_filename": "Spiro_Ede_1805_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426455}}, {"model": "metainfo.source", "pk": 1928, "fields": {"orig_filename": "Spiro_Ignaz_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32f.", "author": "", "orig_id": 1426457}}, {"model": "metainfo.source", "pk": 1929, "fields": {"orig_filename": "Spiss_Cassian_1866_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 33f.", "author": "", "orig_id": 1428834}}, {"model": "metainfo.source", "pk": 1930, "fields": {"orig_filename": "Spis_Stanislaw_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 33", "author": "", "orig_id": 1428831}}, {"model": "metainfo.source", "pk": 1931, "fields": {"orig_filename": "Spitaler_Rudolf_1859_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 34f.", "author": "", "orig_id": 1428881}}, {"model": "metainfo.source", "pk": 1932, "fields": {"orig_filename": "Spitzeder_Josef_1794_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 36f.", "author": "", "orig_id": 1429037}}, {"model": "metainfo.source", "pk": 1933, "fields": {"orig_filename": "Spitzer_Alexander_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37", "author": "", "orig_id": 1429031}}, {"model": "metainfo.source", "pk": 1934, "fields": {"orig_filename": "Spitzer_Berthold_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37", "author": "", "orig_id": 1429072}}, {"model": "metainfo.source", "pk": 1935, "fields": {"orig_filename": "Spitzer_Daniel_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37f.", "author": "", "orig_id": 1429122}}, {"model": "metainfo.source", "pk": 1936, "fields": {"orig_filename": "Spitzer_Emanuel_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 38f.", "author": "", "orig_id": 1429157}}, {"model": "metainfo.source", "pk": 1937, "fields": {"orig_filename": "Spitzer_Frederic_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 39", "author": "", "orig_id": 1454350}}, {"model": "metainfo.source", "pk": 1938, "fields": {"orig_filename": "Spitzer_Friedrich-Viktor_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 39f.", "author": "", "orig_id": 1429160}}, {"model": "metainfo.source", "pk": 1939, "fields": {"orig_filename": "Spitzer_Hugo_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 40", "author": "", "orig_id": 1429168}}, {"model": "metainfo.source", "pk": 1940, "fields": {"orig_filename": "Spitzer_Leonie-Adele_1891_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 41", "author": "", "orig_id": 1437605}}, {"model": "metainfo.source", "pk": 1941, "fields": {"orig_filename": "Spitzer_Rudolf-Lothar_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 41f.", "author": "", "orig_id": 1429224}}, {"model": "metainfo.source", "pk": 1942, "fields": {"orig_filename": "Spitzer_Salomon_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 42", "author": "", "orig_id": 1454378}}, {"model": "metainfo.source", "pk": 1943, "fields": {"orig_filename": "Spitzer_Sigmund_1813_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 42f.", "author": "", "orig_id": 1429268}}, {"model": "metainfo.source", "pk": 1944, "fields": {"orig_filename": "Spitzer_Simon_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 43", "author": "", "orig_id": 1429270}}, {"model": "metainfo.source", "pk": 1945, "fields": {"orig_filename": "Spitz_Albrecht_1883_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 35", "author": "", "orig_id": 1428887}}, {"model": "metainfo.source", "pk": 1946, "fields": {"orig_filename": "Spitz_Ernst_1902_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 35f.", "author": "", "orig_id": 1428889}}, {"model": "metainfo.source", "pk": 1947, "fields": {"orig_filename": "Spitz_Heinrich-Otto_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 36", "author": "", "orig_id": 1428934}}, {"model": "metainfo.source", "pk": 1948, "fields": {"orig_filename": "Spleny-Mihaldy_Franz_1768_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1470624}}, {"model": "metainfo.source", "pk": 1949, "fields": {"orig_filename": "Spleny-Mihaldy_Gabriel_1734_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 43f.", "author": "", "orig_id": 1428583}}, {"model": "metainfo.source", "pk": 1950, "fields": {"orig_filename": "Spleny-Mihaldy_Ignaz-Pankraz-Galeaz_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1428582}}, {"model": "metainfo.source", "pk": 1951, "fields": {"orig_filename": "Spleny-Mihaldy_Ludwig_1817_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1428622}}, {"model": "metainfo.source", "pk": 1952, "fields": {"orig_filename": "Spoerlin_Michael_1784_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44f.", "author": "", "orig_id": 1428624}}, {"model": "metainfo.source", "pk": 1953, "fields": {"orig_filename": "Spoerr_Franz-Xav_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 45", "author": "", "orig_id": 1428677}}, {"model": "metainfo.source", "pk": 1954, "fields": {"orig_filename": "Spoerr_Martin_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 45f.", "author": "", "orig_id": 1428679}}, {"model": "metainfo.source", "pk": 1955, "fields": {"orig_filename": "Sponer_Andor_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 46", "author": "", "orig_id": 1428722}}, {"model": "metainfo.source", "pk": 1956, "fields": {"orig_filename": "Sporschil_Johann-Chrysostomus_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 46f.", "author": "", "orig_id": 1428851}}, {"model": "metainfo.source", "pk": 1957, "fields": {"orig_filename": "Spott_Jan_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 47", "author": "", "orig_id": 1428895}}, {"model": "metainfo.source", "pk": 1958, "fields": {"orig_filename": "Spott_Karel_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 47f.", "author": "", "orig_id": 1428896}}, {"model": "metainfo.source", "pk": 1959, "fields": {"orig_filename": "Sprecher-Bernegg_Arthur-Heinrich_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 48", "author": "", "orig_id": 1428953}}, {"model": "metainfo.source", "pk": 1960, "fields": {"orig_filename": "Sprenger_Aloys_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 49", "author": "", "orig_id": 1428997}}, {"model": "metainfo.source", "pk": 1961, "fields": {"orig_filename": "Sprenger_Paul-Eduard_1798_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 49f.", "author": "", "orig_id": 1429000}}, {"model": "metainfo.source", "pk": 1962, "fields": {"orig_filename": "Spreng_Anton_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 48f.", "author": "", "orig_id": 1428994}}, {"model": "metainfo.source", "pk": 1963, "fields": {"orig_filename": "Springer_Adalbert_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 50", "author": "", "orig_id": 1429052}}, {"model": "metainfo.source", "pk": 1964, "fields": {"orig_filename": "Springer_Adolf_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55", "author": "", "orig_id": 1469855}}, {"model": "metainfo.source", "pk": 1965, "fields": {"orig_filename": "Springer_Alfred_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429053}}, {"model": "metainfo.source", "pk": 1966, "fields": {"orig_filename": "Springer_Anton-Heinrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 50f.", "author": "", "orig_id": 1429079}}, {"model": "metainfo.source", "pk": 1967, "fields": {"orig_filename": "Springer_Franz_1791_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 51f.", "author": "", "orig_id": 1429085}}, {"model": "metainfo.source", "pk": 1968, "fields": {"orig_filename": "Springer_Gustav_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429088}}, {"model": "metainfo.source", "pk": 1969, "fields": {"orig_filename": "Springer_Gustav_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53", "author": "", "orig_id": 1429089}}, {"model": "metainfo.source", "pk": 1970, "fields": {"orig_filename": "Springer_Hermann_1845_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429090}}, {"model": "metainfo.source", "pk": 1971, "fields": {"orig_filename": "Springer_Hugo_1873_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52f.", "author": "", "orig_id": 1429133}}, {"model": "metainfo.source", "pk": 1972, "fields": {"orig_filename": "Springer_Johann_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53f.", "author": "", "orig_id": 1429136}}, {"model": "metainfo.source", "pk": 1973, "fields": {"orig_filename": "Springer_Johann_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53", "author": "", "orig_id": 1429176}}, {"model": "metainfo.source", "pk": 1974, "fields": {"orig_filename": "Springer_Max_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 54", "author": "", "orig_id": 1429184}}, {"model": "metainfo.source", "pk": 1975, "fields": {"orig_filename": "Springer_Sidonie_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 54f.", "author": "", "orig_id": 1429188}}, {"model": "metainfo.source", "pk": 1976, "fields": {"orig_filename": "Springer_Sigmund_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55", "author": "", "orig_id": 1429189}}, {"model": "metainfo.source", "pk": 1977, "fields": {"orig_filename": "Sprinzl_Josef_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55f.", "author": "", "orig_id": 1429291}}, {"model": "metainfo.source", "pk": 1978, "fields": {"orig_filename": "Sprung_Franz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 56", "author": "", "orig_id": 1428547}}, {"model": "metainfo.source", "pk": 1979, "fields": {"orig_filename": "Spurny_Athanasius-A-S-Sophia_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 56f.", "author": "", "orig_id": 1470902}}, {"model": "metainfo.source", "pk": 1980, "fields": {"orig_filename": "Spurzheim_Johann-Christoph_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57", "author": "", "orig_id": 1470900}}, {"model": "metainfo.source", "pk": 1981, "fields": {"orig_filename": "Spurzheim_Karl_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57", "author": "", "orig_id": 1428589}}, {"model": "metainfo.source", "pk": 1982, "fields": {"orig_filename": "Squarcina_Giovanni_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57f.", "author": "", "orig_id": 1428594}}, {"model": "metainfo.source", "pk": 1983, "fields": {"orig_filename": "Sramko_Paul_1743_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 58", "author": "", "orig_id": 1465729}}, {"model": "metainfo.source", "pk": 1984, "fields": {"orig_filename": "Srbik_Robert_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59f.", "author": "", "orig_id": 1428603}}, {"model": "metainfo.source", "pk": 1985, "fields": {"orig_filename": "Srbova_Anna_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 60f.", "author": "", "orig_id": 1428604}}, {"model": "metainfo.source", "pk": 1986, "fields": {"orig_filename": "Srb_Adolf_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 58f.", "author": "", "orig_id": 1429248}}, {"model": "metainfo.source", "pk": 1987, "fields": {"orig_filename": "Srb_Josef_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59", "author": "", "orig_id": 1429253}}, {"model": "metainfo.source", "pk": 1988, "fields": {"orig_filename": "Srb_Vladimir_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59", "author": "", "orig_id": 1429251}}, {"model": "metainfo.source", "pk": 1989, "fields": {"orig_filename": "Srdinko_Frantisek_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 61", "author": "", "orig_id": 1428645}}, {"model": "metainfo.source", "pk": 1990, "fields": {"orig_filename": "Srdinko_Hynek_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62", "author": "", "orig_id": 1428646}}, {"model": "metainfo.source", "pk": 1991, "fields": {"orig_filename": "Srdinko_Otakar_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 61f.", "author": "", "orig_id": 1428647}}, {"model": "metainfo.source", "pk": 1992, "fields": {"orig_filename": "Srna_Carl_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62", "author": "", "orig_id": 1428656}}, {"model": "metainfo.source", "pk": 1993, "fields": {"orig_filename": "Srobar_Vavro_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62f.", "author": "", "orig_id": 1428660}}, {"model": "metainfo.source", "pk": 1994, "fields": {"orig_filename": "Srom_Frantisek_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 63", "author": "", "orig_id": 1428747}}, {"model": "metainfo.source", "pk": 1995, "fields": {"orig_filename": "Srutek_Josef-Anton_1822_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 63f.", "author": "", "orig_id": 1428779}}, {"model": "metainfo.source", "pk": 1996, "fields": {"orig_filename": "Stabinger_Ferdinand_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64", "author": "", "orig_id": 1428788}}, {"model": "metainfo.source", "pk": 1997, "fields": {"orig_filename": "Stacherski_Antoni-Wladyslaw_1831_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 66f.", "author": "", "orig_id": 1428823}}, {"model": "metainfo.source", "pk": 1998, "fields": {"orig_filename": "Stache_Friedrich-August_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 65f.", "author": "", "orig_id": 1428792}}, {"model": "metainfo.source", "pk": 1999, "fields": {"orig_filename": "Stache_Karl-Heinrich-Hector-Guido_1833_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 66", "author": "", "orig_id": 1428822}}, {"model": "metainfo.source", "pk": 2000, "fields": {"orig_filename": "Stachiewicz_Piotr_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 67", "author": "", "orig_id": 1467159}}, {"model": "metainfo.source", "pk": 2001, "fields": {"orig_filename": "Stachowicz_Michal-Franciszek_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 67f.", "author": "", "orig_id": 1428867}}, {"model": "metainfo.source", "pk": 2002, "fields": {"orig_filename": "Stachowicz_Teodor-Baltazar_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68", "author": "", "orig_id": 1470901}}, {"model": "metainfo.source", "pk": 2003, "fields": {"orig_filename": "Stach_Friedrich_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64", "author": "", "orig_id": 1426845}}, {"model": "metainfo.source", "pk": 2004, "fields": {"orig_filename": "Stach_Vaclav_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64f.", "author": "", "orig_id": 1428789}}, {"model": "metainfo.source", "pk": 2005, "fields": {"orig_filename": "Stadion-Thannhausen_Emerich_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68", "author": "", "orig_id": 1428874}}, {"model": "metainfo.source", "pk": 2006, "fields": {"orig_filename": "Stadion-Thannhausen_Philipp-Franz_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68f.", "author": "", "orig_id": 1428877}}, {"model": "metainfo.source", "pk": 2007, "fields": {"orig_filename": "Stadion-Warthausen_Franz_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 69", "author": "", "orig_id": 1428878}}, {"model": "metainfo.source", "pk": 2008, "fields": {"orig_filename": "Stadion-Warthausen_Johann-Philipp-Karl_1763_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 69f.", "author": "", "orig_id": 1428879}}, {"model": "metainfo.source", "pk": 2009, "fields": {"orig_filename": "Stadler_Albert_1794_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 71f.", "author": "", "orig_id": 1428969}}, {"model": "metainfo.source", "pk": 2010, "fields": {"orig_filename": "Stadler_Alfred_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72", "author": "", "orig_id": 1428970}}, {"model": "metainfo.source", "pk": 2011, "fields": {"orig_filename": "Stadler_Alois-Martin_1792_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72", "author": "", "orig_id": 1428971}}, {"model": "metainfo.source", "pk": 2012, "fields": {"orig_filename": "Stadler_Arthur_1892_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72f.", "author": "", "orig_id": 1428976}}, {"model": "metainfo.source", "pk": 2013, "fields": {"orig_filename": "Stadler_Dominik_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 73", "author": "", "orig_id": 1429014}}, {"model": "metainfo.source", "pk": 2014, "fields": {"orig_filename": "Stadler_Josef_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 73f.", "author": "", "orig_id": 1429026}}, {"model": "metainfo.source", "pk": 2015, "fields": {"orig_filename": "Soretic_Theodor_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430f.", "author": "", "orig_id": 1457376}}, {"model": "metainfo.source", "pk": 2016, "fields": {"orig_filename": "Sorgato_Antonio-Maria_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431", "author": "", "orig_id": 1439094}}, {"model": "metainfo.source", "pk": 2017, "fields": {"orig_filename": "Sorgo_Josef_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431f.", "author": "", "orig_id": 1439198}}, {"model": "metainfo.source", "pk": 2018, "fields": {"orig_filename": "Sorsich-Severin_Adalbert_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432", "author": "", "orig_id": 1439214}}, {"model": "metainfo.source", "pk": 2019, "fields": {"orig_filename": "Soster_Bartolomeo_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432", "author": "", "orig_id": 1438313}}, {"model": "metainfo.source", "pk": 2020, "fields": {"orig_filename": "Soterius-Sachsenheim_Arthur_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432f.", "author": "", "orig_id": 1439215}}, {"model": "metainfo.source", "pk": 2021, "fields": {"orig_filename": "Sothen_Johann-Carl_1823_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433", "author": "", "orig_id": 1438319}}, {"model": "metainfo.source", "pk": 2022, "fields": {"orig_filename": "Sotriffer_Christian_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434", "author": "", "orig_id": 1463764}}, {"model": "metainfo.source", "pk": 2023, "fields": {"orig_filename": "Sotriffer_Johann-Jakob_1796_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433f.", "author": "", "orig_id": 1438322}}, {"model": "metainfo.source", "pk": 2024, "fields": {"orig_filename": "Sotriffer_Joseph_1802_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433f.", "author": "", "orig_id": 1463763}}, {"model": "metainfo.source", "pk": 2025, "fields": {"orig_filename": "Soucek_Stanislav_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434", "author": "", "orig_id": 1438333}}, {"model": "metainfo.source", "pk": 2026, "fields": {"orig_filename": "Soukup_Frantisek_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434f.", "author": "", "orig_id": 1438372}}, {"model": "metainfo.source", "pk": 2027, "fields": {"orig_filename": "Soulavy_Ottokar_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 435", "author": "", "orig_id": 1454266}}, {"model": "metainfo.source", "pk": 2028, "fields": {"orig_filename": "Sourek_Antonin-Vaclav_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 435f.", "author": "", "orig_id": 1438389}}, {"model": "metainfo.source", "pk": 2029, "fields": {"orig_filename": "Souvan_Ferdinand_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1456643}}, {"model": "metainfo.source", "pk": 2030, "fields": {"orig_filename": "Souvan_Ferdinand_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1464310}}, {"model": "metainfo.source", "pk": 2031, "fields": {"orig_filename": "Souvan_Franc-Ks_1799_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1438439}}, {"model": "metainfo.source", "pk": 2032, "fields": {"orig_filename": "Souvan_Franc-Ks_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1438440}}, {"model": "metainfo.source", "pk": 2033, "fields": {"orig_filename": "Sova_Antonin_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436f.", "author": "", "orig_id": 1438442}}, {"model": "metainfo.source", "pk": 2034, "fields": {"orig_filename": "Sowinski_Ignaz_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438449}}, {"model": "metainfo.source", "pk": 2035, "fields": {"orig_filename": "Soxhlet_Felix_1804_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437f.", "author": "", "orig_id": 1438507}}, {"model": "metainfo.source", "pk": 2036, "fields": {"orig_filename": "Soxhlet_Hubert__1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438509}}, {"model": "metainfo.source", "pk": 2037, "fields": {"orig_filename": "Soyfer_Jura_1912_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 438f.", "author": "", "orig_id": 1438512}}, {"model": "metainfo.source", "pk": 2038, "fields": {"orig_filename": "Soyka_Isidor_1850_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 439f.", "author": "", "orig_id": 1438514}}, {"model": "metainfo.source", "pk": 2039, "fields": {"orig_filename": "Soyka_Viktor_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440", "author": "", "orig_id": 1438519}}, {"model": "metainfo.source", "pk": 2040, "fields": {"orig_filename": "Spacek_Richard_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440", "author": "", "orig_id": 1426611}}, {"model": "metainfo.source", "pk": 2041, "fields": {"orig_filename": "Spacil_Jan_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440f.", "author": "", "orig_id": 1426615}}, {"model": "metainfo.source", "pk": 2042, "fields": {"orig_filename": "Spaengler_Alois_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 441", "author": "", "orig_id": 1426617}}, {"model": "metainfo.source", "pk": 2043, "fields": {"orig_filename": "Spaengler_Alois_1824_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 441f.", "author": "", "orig_id": 1426618}}, {"model": "metainfo.source", "pk": 2044, "fields": {"orig_filename": "Spaengler_Carl_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 442", "author": "", "orig_id": 1426702}}, {"model": "metainfo.source", "pk": 2045, "fields": {"orig_filename": "Spaengler_Ludwig_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 442f.", "author": "", "orig_id": 1426706}}, {"model": "metainfo.source", "pk": 2046, "fields": {"orig_filename": "Spaengler_Rudolf_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 443", "author": "", "orig_id": 1426707}}, {"model": "metainfo.source", "pk": 2047, "fields": {"orig_filename": "Spaeter_Carl_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 443f.", "author": "", "orig_id": 1426709}}, {"model": "metainfo.source", "pk": 2048, "fields": {"orig_filename": "Spaeth_Ernst_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 444", "author": "", "orig_id": 1426754}}, {"model": "metainfo.source", "pk": 2049, "fields": {"orig_filename": "Spaeth_Franz-Xav_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 444f.", "author": "", "orig_id": 1426755}}, {"model": "metainfo.source", "pk": 2050, "fields": {"orig_filename": "Spaeth_Josef_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 445", "author": "", "orig_id": 1426758}}, {"model": "metainfo.source", "pk": 2051, "fields": {"orig_filename": "Spala_Vaclav_1885_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 446", "author": "", "orig_id": 1426817}}, {"model": "metainfo.source", "pk": 2052, "fields": {"orig_filename": "Spalowsky_Franz_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 446f.", "author": "", "orig_id": 1448627}}, {"model": "metainfo.source", "pk": 2053, "fields": {"orig_filename": "Spandl_Hermann_1899_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 447", "author": "", "orig_id": 1458549}}, {"model": "metainfo.source", "pk": 2054, "fields": {"orig_filename": "Spannagel_Rudolf_1866_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 448", "author": "", "orig_id": 1426154}}, {"model": "metainfo.source", "pk": 2055, "fields": {"orig_filename": "Spanner_Anton-Carl_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1", "author": "", "orig_id": 1426326}}, {"model": "metainfo.source", "pk": 2056, "fields": {"orig_filename": "Spannocchi_Lelio_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1", "author": "", "orig_id": 1426334}}, {"model": "metainfo.source", "pk": 2057, "fields": {"orig_filename": "Spannocchi_Peter-Leopold_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1f.", "author": "", "orig_id": 1426336}}, {"model": "metainfo.source", "pk": 2058, "fields": {"orig_filename": "Spannring_Hubert_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 2", "author": "", "orig_id": 1426381}}, {"model": "metainfo.source", "pk": 2059, "fields": {"orig_filename": "Spann_Othmar_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 447f.", "author": "", "orig_id": 1426924}}, {"model": "metainfo.source", "pk": 2060, "fields": {"orig_filename": "Spanyik_Glycer_1781_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3", "author": "", "orig_id": 1426389}}, {"model": "metainfo.source", "pk": 2061, "fields": {"orig_filename": "Spanyik_Kornel_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3", "author": "", "orig_id": 1426391}}, {"model": "metainfo.source", "pk": 2062, "fields": {"orig_filename": "Spanyi_Bela_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 2f.", "author": "", "orig_id": 1426386}}, {"model": "metainfo.source", "pk": 2063, "fields": {"orig_filename": "Sparber_Josaphat_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3f.", "author": "", "orig_id": 1426434}}, {"model": "metainfo.source", "pk": 2064, "fields": {"orig_filename": "Spatny_Frantisek_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 4", "author": "", "orig_id": 1426487}}, {"model": "metainfo.source", "pk": 2065, "fields": {"orig_filename": "Spatzenegger_Leopold_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 4f.", "author": "", "orig_id": 1426576}}, {"model": "metainfo.source", "pk": 2066, "fields": {"orig_filename": "Spatzier_Johann-Nep-Florian_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 5", "author": "", "orig_id": 1426578}}, {"model": "metainfo.source", "pk": 2067, "fields": {"orig_filename": "Spaun_Anton_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 5f.", "author": "", "orig_id": 1426581}}, {"model": "metainfo.source", "pk": 2068, "fields": {"orig_filename": "Spaun_Franz-Anton_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 6", "author": "", "orig_id": 1426584}}, {"model": "metainfo.source", "pk": 2069, "fields": {"orig_filename": "Spaun_Hermann_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 6f.", "author": "", "orig_id": 1426586}}, {"model": "metainfo.source", "pk": 2070, "fields": {"orig_filename": "Spaun_Josef_1788_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7", "author": "", "orig_id": 1426621}}, {"model": "metainfo.source", "pk": 2071, "fields": {"orig_filename": "Spaun_Marie_1795_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7", "author": "", "orig_id": 1426627}}, {"model": "metainfo.source", "pk": 2072, "fields": {"orig_filename": "Spaun_Max_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7f.", "author": "", "orig_id": 1426629}}, {"model": "metainfo.source", "pk": 2073, "fields": {"orig_filename": "Spaur_Friedrich-Franz-Joseph_1756_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 8", "author": "", "orig_id": 1426669}}, {"model": "metainfo.source", "pk": 2074, "fields": {"orig_filename": "Spaur_Marie_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 8f.", "author": "", "orig_id": 1426625}}, {"model": "metainfo.source", "pk": 2075, "fields": {"orig_filename": "Spaur_Philipp_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9", "author": "", "orig_id": 1426714}}, {"model": "metainfo.source", "pk": 2076, "fields": {"orig_filename": "Spechtenhauser_Johann-Bapt_1760_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 10f.", "author": "", "orig_id": 1426766}}, {"model": "metainfo.source", "pk": 2077, "fields": {"orig_filename": "Specht_Josef-Anton_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9f.", "author": "", "orig_id": 1451940}}, {"model": "metainfo.source", "pk": 2078, "fields": {"orig_filename": "Specht_Richard_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 10", "author": "", "orig_id": 1426762}}, {"model": "metainfo.source", "pk": 2079, "fields": {"orig_filename": "Spech_Johann_1767_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9", "author": "", "orig_id": 1426725}}, {"model": "metainfo.source", "pk": 2080, "fields": {"orig_filename": "Speckbacher_Andreas_1798_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 11", "author": "", "orig_id": 1426771}}, {"model": "metainfo.source", "pk": 2081, "fields": {"orig_filename": "Speckbacher_Caspar_1819_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 11f.", "author": "", "orig_id": 1426772}}, {"model": "metainfo.source", "pk": 2082, "fields": {"orig_filename": "Speckbacher_Josef_1767_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 12", "author": "", "orig_id": 1426820}}, {"model": "metainfo.source", "pk": 2083, "fields": {"orig_filename": "Speckmoser_Ulrich_1781_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 12f.", "author": "", "orig_id": 1426824}}, {"model": "metainfo.source", "pk": 2084, "fields": {"orig_filename": "Specz-Ladhaza_Rudolf_1798_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 13", "author": "", "orig_id": 1426826}}, {"model": "metainfo.source", "pk": 2085, "fields": {"orig_filename": "Speidel-Haeberle_Else_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 14", "author": "", "orig_id": 1426829}}, {"model": "metainfo.source", "pk": 2086, "fields": {"orig_filename": "Speidel_Ludwig_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 13f.", "author": "", "orig_id": 1426828}}, {"model": "metainfo.source", "pk": 2087, "fields": {"orig_filename": "Speiser_Paul_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 14f.", "author": "", "orig_id": 1426873}}, {"model": "metainfo.source", "pk": 2088, "fields": {"orig_filename": "Spendou_Joseph_1757_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 15", "author": "", "orig_id": 1426878}}, {"model": "metainfo.source", "pk": 2089, "fields": {"orig_filename": "Spens-Booden_Alois_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 15f.", "author": "", "orig_id": 1426925}}, {"model": "metainfo.source", "pk": 2090, "fields": {"orig_filename": "Spens-Booden_Emanuel_1831_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 16", "author": "", "orig_id": 1437146}}, {"model": "metainfo.source", "pk": 2091, "fields": {"orig_filename": "Sperber_Hugo_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 16f.", "author": "", "orig_id": 1426935}}, {"model": "metainfo.source", "pk": 2092, "fields": {"orig_filename": "Sperk_Bernhard_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 17", "author": "", "orig_id": 1426167}}, {"model": "metainfo.source", "pk": 2093, "fields": {"orig_filename": "Speyer_Agnes_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 17f.", "author": "", "orig_id": 1426287}}, {"model": "metainfo.source", "pk": 2094, "fields": {"orig_filename": "Spezger_Carl_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18", "author": "", "orig_id": 1426284}}, {"model": "metainfo.source", "pk": 2095, "fields": {"orig_filename": "Spidlen_Frantisek_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18", "author": "", "orig_id": 1426292}}, {"model": "metainfo.source", "pk": 2096, "fields": {"orig_filename": "Spiegelfeld_Markus_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20f.", "author": "", "orig_id": 1426493}}, {"model": "metainfo.source", "pk": 2097, "fields": {"orig_filename": "Spiegel_Emil_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20", "author": "", "orig_id": 1426343}}, {"model": "metainfo.source", "pk": 2098, "fields": {"orig_filename": "Spiegel_Frigyes_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18f.", "author": "", "orig_id": 1454339}}, {"model": "metainfo.source", "pk": 2099, "fields": {"orig_filename": "Spiegel_Kaethe_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 19", "author": "", "orig_id": 1438181}}, {"model": "metainfo.source", "pk": 2100, "fields": {"orig_filename": "Spiegel_Ludwig_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 19f.", "author": "", "orig_id": 1426442}}, {"model": "metainfo.source", "pk": 2101, "fields": {"orig_filename": "Spiegel_Magda_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20", "author": "", "orig_id": 1426400}}, {"model": "metainfo.source", "pk": 2102, "fields": {"orig_filename": "Spiegl-Thurnsee_Edgar_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 21", "author": "", "orig_id": 1426342}}, {"model": "metainfo.source", "pk": 2103, "fields": {"orig_filename": "Spiegl-Thurnsee_Edgar_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 21f.", "author": "", "orig_id": 1426500}}, {"model": "metainfo.source", "pk": 2104, "fields": {"orig_filename": "Spiegler_Eduard_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 22", "author": "", "orig_id": 1426502}}, {"model": "metainfo.source", "pk": 2105, "fields": {"orig_filename": "Spielmann_Emmerich_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1469652}}, {"model": "metainfo.source", "pk": 2106, "fields": {"orig_filename": "Spielmann_Ferdinand_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1470620}}, {"model": "metainfo.source", "pk": 2107, "fields": {"orig_filename": "Spielmann_Johann_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23f.", "author": "", "orig_id": 1426840}}, {"model": "metainfo.source", "pk": 2108, "fields": {"orig_filename": "Spielmann_Julius_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 24", "author": "", "orig_id": 1426842}}, {"model": "metainfo.source", "pk": 2109, "fields": {"orig_filename": "Spielmann_Julius_1872_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 24f.", "author": "", "orig_id": 1426844}}, {"model": "metainfo.source", "pk": 2110, "fields": {"orig_filename": "Spielmann_Leopold_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25", "author": "", "orig_id": 1426884}}, {"model": "metainfo.source", "pk": 2111, "fields": {"orig_filename": "Spielmann_Melanie_1885_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25", "author": "", "orig_id": 1426886}}, {"model": "metainfo.source", "pk": 2112, "fields": {"orig_filename": "Spielmann_Rudolf_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25f.", "author": "", "orig_id": 1426889}}, {"model": "metainfo.source", "pk": 2113, "fields": {"orig_filename": "Spiess_Friedrich-Wilhelm_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 26f.", "author": "", "orig_id": 1426940}}, {"model": "metainfo.source", "pk": 2114, "fields": {"orig_filename": "Sobitschka_Coelestin_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387", "author": "", "orig_id": 1439351}}, {"model": "metainfo.source", "pk": 2115, "fields": {"orig_filename": "Sobota_Emil_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387f.", "author": "", "orig_id": 1461518}}, {"model": "metainfo.source", "pk": 2116, "fields": {"orig_filename": "Sobotka_Benedikt_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 388", "author": "", "orig_id": 1439420}}, {"model": "metainfo.source", "pk": 2117, "fields": {"orig_filename": "Sobotka_Jan_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 388f.", "author": "", "orig_id": 1439494}}, {"model": "metainfo.source", "pk": 2118, "fields": {"orig_filename": "Sobotka_Primus_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 389", "author": "", "orig_id": 1457815}}, {"model": "metainfo.source", "pk": 2119, "fields": {"orig_filename": "Sobo_Jenoe_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387", "author": "", "orig_id": 1439416}}, {"model": "metainfo.source", "pk": 2120, "fields": {"orig_filename": "Sochaniewicz_Kazimierz-Roman_1892_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 390", "author": "", "orig_id": 1438414}}, {"model": "metainfo.source", "pk": 2121, "fields": {"orig_filename": "Sochan_Pavol_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 389f.", "author": "", "orig_id": 1438413}}, {"model": "metainfo.source", "pk": 2122, "fields": {"orig_filename": "Sochor-Friedrichsthal_Eduard_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 391f.", "author": "", "orig_id": 1438472}}, {"model": "metainfo.source", "pk": 2123, "fields": {"orig_filename": "Sochor-Friedrichsthal_Eduard_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1468177}}, {"model": "metainfo.source", "pk": 2124, "fields": {"orig_filename": "Sochor-Friedrichsthal_Friedrich_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1438473}}, {"model": "metainfo.source", "pk": 2125, "fields": {"orig_filename": "Sochor_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 390f.", "author": "", "orig_id": 1457811}}, {"model": "metainfo.source", "pk": 2126, "fields": {"orig_filename": "Sochor_Vaclav_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 391", "author": "", "orig_id": 1438470}}, {"model": "metainfo.source", "pk": 2127, "fields": {"orig_filename": "Socin_Constantino_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1438475}}, {"model": "metainfo.source", "pk": 2128, "fields": {"orig_filename": "Sockl_Clara-Adelheid_1822_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 393", "author": "", "orig_id": 1438316}}, {"model": "metainfo.source", "pk": 2129, "fields": {"orig_filename": "Sockl_Theodor-Benedikt_1815_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392f.", "author": "", "orig_id": 1438477}}, {"model": "metainfo.source", "pk": 2130, "fields": {"orig_filename": "Soczynski_Karol-Teodor_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 393f.", "author": "", "orig_id": 1438478}}, {"model": "metainfo.source", "pk": 2131, "fields": {"orig_filename": "Soelder-Prakenstein_Friedrich_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394", "author": "", "orig_id": 1438485}}, {"model": "metainfo.source", "pk": 2132, "fields": {"orig_filename": "Soellner_Elisabeth_1776_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394f.", "author": "", "orig_id": 1438538}}, {"model": "metainfo.source", "pk": 2133, "fields": {"orig_filename": "Soellner_Johann_1769_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394", "author": "", "orig_id": 1461776}}, {"model": "metainfo.source", "pk": 2134, "fields": {"orig_filename": "Soeser_Ferdinand-Leopold_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395", "author": "", "orig_id": 1438546}}, {"model": "metainfo.source", "pk": 2135, "fields": {"orig_filename": "Soeser_Maximilian_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395", "author": "", "orig_id": 1438547}}, {"model": "metainfo.source", "pk": 2136, "fields": {"orig_filename": "Soffe_Emil-Ludwig_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395f.", "author": "", "orig_id": 1438551}}, {"model": "metainfo.source", "pk": 2137, "fields": {"orig_filename": "Sogni_Giuseppe_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 396", "author": "", "orig_id": 1438611}}, {"model": "metainfo.source", "pk": 2138, "fields": {"orig_filename": "Sohm_Bonifaz_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 396f.", "author": "", "orig_id": 1438619}}, {"model": "metainfo.source", "pk": 2139, "fields": {"orig_filename": "Sojer_Johannes-Kapistran_1798_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397", "author": "", "orig_id": 1438676}}, {"model": "metainfo.source", "pk": 2140, "fields": {"orig_filename": "Sojka_Jan-Erazim_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397", "author": "", "orig_id": 1438681}}, {"model": "metainfo.source", "pk": 2141, "fields": {"orig_filename": "Sojka_Mathias_1740_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397f.", "author": "", "orig_id": 1438682}}, {"model": "metainfo.source", "pk": 2142, "fields": {"orig_filename": "Sokcevic_Josip_1811_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 398", "author": "", "orig_id": 1438686}}, {"model": "metainfo.source", "pk": 2143, "fields": {"orig_filename": "Sokolar_Franz_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401", "author": "", "orig_id": 1438778}}, {"model": "metainfo.source", "pk": 2144, "fields": {"orig_filename": "Sokoltuma_Frantisek_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401", "author": "", "orig_id": 1463423}}, {"model": "metainfo.source", "pk": 2145, "fields": {"orig_filename": "Sokol_Antonin-H_1847_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 398f.", "author": "", "orig_id": 1438732}}, {"model": "metainfo.source", "pk": 2146, "fields": {"orig_filename": "Sokol_Bernardin_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399", "author": "", "orig_id": 1438733}}, {"model": "metainfo.source", "pk": 2147, "fields": {"orig_filename": "Sokol_Frantisek_1779_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399", "author": "", "orig_id": 1438734}}, {"model": "metainfo.source", "pk": 2148, "fields": {"orig_filename": "Sokol_Josef-Vendelin_1821_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399f.", "author": "", "orig_id": 1438736}}, {"model": "metainfo.source", "pk": 2149, "fields": {"orig_filename": "Sokol_Karel-Stanislav_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 400", "author": "", "orig_id": 1438738}}, {"model": "metainfo.source", "pk": 2150, "fields": {"orig_filename": "Sokol_Rudolf_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 400f.", "author": "", "orig_id": 1438739}}, {"model": "metainfo.source", "pk": 2151, "fields": {"orig_filename": "Sokopp_Johann_1913_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401f.", "author": "", "orig_id": 1438785}}, {"model": "metainfo.source", "pk": 2152, "fields": {"orig_filename": "Solc_Jindrich_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402", "author": "", "orig_id": 1438846}}, {"model": "metainfo.source", "pk": 2153, "fields": {"orig_filename": "Solc_Vaclav_1838_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402", "author": "", "orig_id": 1438847}}, {"model": "metainfo.source", "pk": 2154, "fields": {"orig_filename": "Solecki-Ostoja_Lukasz_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402f.", "author": "", "orig_id": 1438893}}, {"model": "metainfo.source", "pk": 2155, "fields": {"orig_filename": "Solerti_Luigi_1846_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 403", "author": "", "orig_id": 1438896}}, {"model": "metainfo.source", "pk": 2156, "fields": {"orig_filename": "Solin_Josef-Marcell_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 403f.", "author": "", "orig_id": 1438897}}, {"model": "metainfo.source", "pk": 2157, "fields": {"orig_filename": "Solitro_Giulio_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404", "author": "", "orig_id": 1438818}}, {"model": "metainfo.source", "pk": 2158, "fields": {"orig_filename": "Solitro_Vincenzo_1820_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404", "author": "", "orig_id": 1438820}}, {"model": "metainfo.source", "pk": 2159, "fields": {"orig_filename": "Sollinger_Johann-Paul_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404f.", "author": "", "orig_id": 1438901}}, {"model": "metainfo.source", "pk": 2160, "fields": {"orig_filename": "Solomonica_Alexander_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 405", "author": "", "orig_id": 1440865}}, {"model": "metainfo.source", "pk": 2161, "fields": {"orig_filename": "Soltesz_Andreas_1802_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 405f.", "author": "", "orig_id": 1438948}}, {"model": "metainfo.source", "pk": 2162, "fields": {"orig_filename": "Soltesz_Janos_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406", "author": "", "orig_id": 1438952}}, {"model": "metainfo.source", "pk": 2163, "fields": {"orig_filename": "Soltesz_Miksa_1830_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406", "author": "", "orig_id": 1438953}}, {"model": "metainfo.source", "pk": 2164, "fields": {"orig_filename": "Soltys_Mieczyslaw-Tadeusz_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406f.", "author": "", "orig_id": 1438960}}, {"model": "metainfo.source", "pk": 2165, "fields": {"orig_filename": "Somaini_Francesco_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 407", "author": "", "orig_id": 1438964}}, {"model": "metainfo.source", "pk": 2166, "fields": {"orig_filename": "Somerau-Beeckh_Maximilian-Joseph-Gottfried_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 408", "author": "", "orig_id": 1438430}}, {"model": "metainfo.source", "pk": 2167, "fields": {"orig_filename": "Somer_Karl_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 407f.", "author": "", "orig_id": 1438361}}, {"model": "metainfo.source", "pk": 2168, "fields": {"orig_filename": "Sommariva_Giovanni-Battista_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 409f.", "author": "", "orig_id": 1439026}}, {"model": "metainfo.source", "pk": 2169, "fields": {"orig_filename": "Sommariva_Hannibal_1755_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410", "author": "", "orig_id": 1438765}}, {"model": "metainfo.source", "pk": 2170, "fields": {"orig_filename": "Sommaruga_Erwin-Franz_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410", "author": "", "orig_id": 1439028}}, {"model": "metainfo.source", "pk": 2171, "fields": {"orig_filename": "Sommaruga_Franz-Philipp_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410f.", "author": "", "orig_id": 1439072}}, {"model": "metainfo.source", "pk": 2172, "fields": {"orig_filename": "Sommaruga_Franz-Vincenz-Emanuel_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 411f.", "author": "", "orig_id": 1439029}}, {"model": "metainfo.source", "pk": 2173, "fields": {"orig_filename": "Sommaruga_Guido_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 411", "author": "", "orig_id": 1439073}}, {"model": "metainfo.source", "pk": 2174, "fields": {"orig_filename": "Somma_Antonio_1809_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 408f.", "author": "", "orig_id": 1438813}}, {"model": "metainfo.source", "pk": 2175, "fields": {"orig_filename": "Sommerfeld_Wilhelm_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416", "author": "", "orig_id": 1438495}}, {"model": "metainfo.source", "pk": 2176, "fields": {"orig_filename": "Sommer_Emil_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 412", "author": "", "orig_id": 1439131}}, {"model": "metainfo.source", "pk": 2177, "fields": {"orig_filename": "Sommer_Franz_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 412f.", "author": "", "orig_id": 1439135}}, {"model": "metainfo.source", "pk": 2178, "fields": {"orig_filename": "Sommer_Johann-Gottfried_1783_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 413", "author": "", "orig_id": 1427491}}, {"model": "metainfo.source", "pk": 2179, "fields": {"orig_filename": "Sommer_Josef-Heinrich_1888_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 413f.", "author": "", "orig_id": 1438307}}, {"model": "metainfo.source", "pk": 2180, "fields": {"orig_filename": "Sommer_Leopold_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 414", "author": "", "orig_id": 1438363}}, {"model": "metainfo.source", "pk": 2181, "fields": {"orig_filename": "Sommer_Otakar_1885_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 414f.", "author": "", "orig_id": 1438365}}, {"model": "metainfo.source", "pk": 2182, "fields": {"orig_filename": "Sommer_Rudolf_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 415", "author": "", "orig_id": 1438425}}, {"model": "metainfo.source", "pk": 2183, "fields": {"orig_filename": "Sommer_Rudolf_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 415f.", "author": "", "orig_id": 1438426}}, {"model": "metainfo.source", "pk": 2184, "fields": {"orig_filename": "Somogyi-Csizmazia_Alexander_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1438505}}, {"model": "metainfo.source", "pk": 2185, "fields": {"orig_filename": "Somogyi-Csizmazia_Barbara_1780_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1462380}}, {"model": "metainfo.source", "pk": 2186, "fields": {"orig_filename": "Somogyi-Csizmazia_Karl_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416f.", "author": "", "orig_id": 1438556}}, {"model": "metainfo.source", "pk": 2187, "fields": {"orig_filename": "Somogyi_Ede_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416", "author": "", "orig_id": 1454261}}, {"model": "metainfo.source", "pk": 2188, "fields": {"orig_filename": "Somos_Istvan-Balint_1893_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1438560}}, {"model": "metainfo.source", "pk": 2189, "fields": {"orig_filename": "Somssich-Saard_Jozsef_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418", "author": "", "orig_id": 1438629}}, {"model": "metainfo.source", "pk": 2190, "fields": {"orig_filename": "Somssich_Miklos_1784_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418", "author": "", "orig_id": 1438568}}, {"model": "metainfo.source", "pk": 2191, "fields": {"orig_filename": "Somssich_Pal_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417f.", "author": "", "orig_id": 1438569}}, {"model": "metainfo.source", "pk": 2192, "fields": {"orig_filename": "Sondermann_Franz-Wilhelm_1787_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418f.", "author": "", "orig_id": 1438634}}, {"model": "metainfo.source", "pk": 2193, "fields": {"orig_filename": "Sonklar-Innstaedten_Karl-Albrecht_1816_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 419f.", "author": "", "orig_id": 1438638}}, {"model": "metainfo.source", "pk": 2194, "fields": {"orig_filename": "Sonnenfeld_Kurt_1893_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421", "author": "", "orig_id": 1438752}}, {"model": "metainfo.source", "pk": 2195, "fields": {"orig_filename": "Sonnenfeld_Michael_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421", "author": "", "orig_id": 1438753}}, {"model": "metainfo.source", "pk": 2196, "fields": {"orig_filename": "Sonnenfeld_Zsigmond_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421f.", "author": "", "orig_id": 1438792}}, {"model": "metainfo.source", "pk": 2197, "fields": {"orig_filename": "Sonnenfels_Joseph_1733_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 422f.", "author": "", "orig_id": 1438868}}, {"model": "metainfo.source", "pk": 2198, "fields": {"orig_filename": "Sonnenleiter_Johannes_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 423", "author": "", "orig_id": 1438796}}, {"model": "metainfo.source", "pk": 2199, "fields": {"orig_filename": "Sonnenschein_Adolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 423f.", "author": "", "orig_id": 1438797}}, {"model": "metainfo.source", "pk": 2200, "fields": {"orig_filename": "Sonnenthal_Adolf_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424", "author": "", "orig_id": 1438804}}, {"model": "metainfo.source", "pk": 2201, "fields": {"orig_filename": "Sonnenthal_Hans-Friedrich_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 425", "author": "", "orig_id": 1438850}}, {"model": "metainfo.source", "pk": 2202, "fields": {"orig_filename": "Sonnenthal_Hermine_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424", "author": "", "orig_id": 1438342}}, {"model": "metainfo.source", "pk": 2203, "fields": {"orig_filename": "Sonnenthal_Samuel_1840_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424f.", "author": "", "orig_id": 1438853}}, {"model": "metainfo.source", "pk": 2204, "fields": {"orig_filename": "Sonne_Abraham_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 420f.", "author": "", "orig_id": 1438697}}, {"model": "metainfo.source", "pk": 2205, "fields": {"orig_filename": "Sonnleithner_Ignaz_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 425f.", "author": "", "orig_id": 1438864}}, {"model": "metainfo.source", "pk": 2206, "fields": {"orig_filename": "Sonnleithner_Joseph-Ferdinand_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 426", "author": "", "orig_id": 1440796}}, {"model": "metainfo.source", "pk": 2207, "fields": {"orig_filename": "Sonnleithner_Leopold_1797_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 426f.", "author": "", "orig_id": 1438912}}, {"model": "metainfo.source", "pk": 2208, "fields": {"orig_filename": "Sonnleithner_Maximilian_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 427", "author": "", "orig_id": 1438913}}, {"model": "metainfo.source", "pk": 2209, "fields": {"orig_filename": "Sonntag_Kunes_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 427f.", "author": "", "orig_id": 1438969}}, {"model": "metainfo.source", "pk": 2210, "fields": {"orig_filename": "Sontag_Henriette_1806_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 428f.", "author": "", "orig_id": 1438976}}, {"model": "metainfo.source", "pk": 2211, "fields": {"orig_filename": "Sonzogno_Edoardo_1836_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 429", "author": "", "orig_id": 1454639}}, {"model": "metainfo.source", "pk": 2212, "fields": {"orig_filename": "Sophie_Friederike_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 429f.", "author": "", "orig_id": 1439038}}, {"model": "metainfo.source", "pk": 2213, "fields": {"orig_filename": "Sopron_Ignaz_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430", "author": "", "orig_id": 1439040}}, {"model": "metainfo.source", "pk": 2214, "fields": {"orig_filename": "Soretic_Franz-De-Paula_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430f.", "author": "", "orig_id": 1439092}}, {"model": "metainfo.source", "pk": 2215, "fields": {"orig_filename": "Skutetzky_Gustav_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459036}}, {"model": "metainfo.source", "pk": 2216, "fields": {"orig_filename": "Skutetzky_Hubert_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459039}}, {"model": "metainfo.source", "pk": 2217, "fields": {"orig_filename": "Skutetzky_Karl_1886_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342f.", "author": "", "orig_id": 1459040}}, {"model": "metainfo.source", "pk": 2218, "fields": {"orig_filename": "Skutetzky_Wilhelm_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459037}}, {"model": "metainfo.source", "pk": 2219, "fields": {"orig_filename": "Slabe_Eduard_1816_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343", "author": "", "orig_id": 1459041}}, {"model": "metainfo.source", "pk": 2220, "fields": {"orig_filename": "Sladecek_Rudolf_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343", "author": "", "orig_id": 1459042}}, {"model": "metainfo.source", "pk": 2221, "fields": {"orig_filename": "Sladek_Josef-Vaclav_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343f.", "author": "", "orig_id": 1459043}}, {"model": "metainfo.source", "pk": 2222, "fields": {"orig_filename": "Sladek_Vaclav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 344", "author": "", "orig_id": 1459044}}, {"model": "metainfo.source", "pk": 2223, "fields": {"orig_filename": "Sladkovic_Andrej_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 344f.", "author": "", "orig_id": 1459045}}, {"model": "metainfo.source", "pk": 2224, "fields": {"orig_filename": "Sladkovsky_Karel_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 345", "author": "", "orig_id": 1459049}}, {"model": "metainfo.source", "pk": 2225, "fields": {"orig_filename": "Slajmer_Eduard_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 345f.", "author": "", "orig_id": 1459122}}, {"model": "metainfo.source", "pk": 2226, "fields": {"orig_filename": "Slama_Anton_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 346", "author": "", "orig_id": 1459123}}, {"model": "metainfo.source", "pk": 2227, "fields": {"orig_filename": "Slama_Frantisek-Josef_1792_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 347", "author": "", "orig_id": 1459130}}, {"model": "metainfo.source", "pk": 2228, "fields": {"orig_filename": "Slama_Frantisek_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 346f.", "author": "", "orig_id": 1459125}}, {"model": "metainfo.source", "pk": 2229, "fields": {"orig_filename": "Slama_Franz_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 347f.", "author": "", "orig_id": 1459132}}, {"model": "metainfo.source", "pk": 2230, "fields": {"orig_filename": "Slamenik_Frantisek_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348", "author": "", "orig_id": 1459133}}, {"model": "metainfo.source", "pk": 2231, "fields": {"orig_filename": "Slansky_Ludwig_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348f.", "author": "", "orig_id": 1459135}}, {"model": "metainfo.source", "pk": 2232, "fields": {"orig_filename": "Slataper_Scipio_1888_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 349", "author": "", "orig_id": 1459136}}, {"model": "metainfo.source", "pk": 2233, "fields": {"orig_filename": "Slatin_Rudolf_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 350", "author": "", "orig_id": 1456019}}, {"model": "metainfo.source", "pk": 2234, "fields": {"orig_filename": "Slavicek_Antonin_1870_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 350f.", "author": "", "orig_id": 1459139}}, {"model": "metainfo.source", "pk": 2235, "fields": {"orig_filename": "Slavicek_Josef_1818_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 351", "author": "", "orig_id": 1459141}}, {"model": "metainfo.source", "pk": 2236, "fields": {"orig_filename": "Slavici_Ioan_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 351f.", "author": "", "orig_id": 1459142}}, {"model": "metainfo.source", "pk": 2237, "fields": {"orig_filename": "Slavik_Alfred_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 352", "author": "", "orig_id": 1459143}}, {"model": "metainfo.source", "pk": 2238, "fields": {"orig_filename": "Slavik_Antonin_1782_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1459257}}, {"model": "metainfo.source", "pk": 2239, "fields": {"orig_filename": "Slavik_Antonin_1810_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1459258}}, {"model": "metainfo.source", "pk": 2240, "fields": {"orig_filename": "Slavik_Ernst_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 352f.", "author": "", "orig_id": 1459144}}, {"model": "metainfo.source", "pk": 2241, "fields": {"orig_filename": "Slavik_Frantisek-Augustin_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353", "author": "", "orig_id": 1459260}}, {"model": "metainfo.source", "pk": 2242, "fields": {"orig_filename": "Slavik_Jan_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353", "author": "", "orig_id": 1458128}}, {"model": "metainfo.source", "pk": 2243, "fields": {"orig_filename": "Slavik_Josef_1806_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353f.", "author": "", "orig_id": 1458130}}, {"model": "metainfo.source", "pk": 2244, "fields": {"orig_filename": "Slavik_Rudolf_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1458138}}, {"model": "metainfo.source", "pk": 2245, "fields": {"orig_filename": "Slavik_Vincenz_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354f.", "author": "", "orig_id": 1458140}}, {"model": "metainfo.source", "pk": 2246, "fields": {"orig_filename": "Slavik_Vladimir_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355", "author": "", "orig_id": 1458141}}, {"model": "metainfo.source", "pk": 2247, "fields": {"orig_filename": "Slavkovsky_Karel_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355", "author": "", "orig_id": 1458144}}, {"model": "metainfo.source", "pk": 2248, "fields": {"orig_filename": "Slawikowski_Anton_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355f.", "author": "", "orig_id": 1458148}}, {"model": "metainfo.source", "pk": 2249, "fields": {"orig_filename": "Slejhar_Josef-Karel_1864_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 356", "author": "", "orig_id": 1459011}}, {"model": "metainfo.source", "pk": 2250, "fields": {"orig_filename": "Slekovec_Matej_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 356f.", "author": "", "orig_id": 1459012}}, {"model": "metainfo.source", "pk": 2251, "fields": {"orig_filename": "Slezak_Elisabeth_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 357", "author": "", "orig_id": 1456815}}, {"model": "metainfo.source", "pk": 2252, "fields": {"orig_filename": "Slezak_Leo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 357f.", "author": "", "orig_id": 1456021}}, {"model": "metainfo.source", "pk": 2253, "fields": {"orig_filename": "Slezak_Otto_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 358", "author": "", "orig_id": 1459101}}, {"model": "metainfo.source", "pk": 2254, "fields": {"orig_filename": "Sliwinski_Jan_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 358f.", "author": "", "orig_id": 1459110}}, {"model": "metainfo.source", "pk": 2255, "fields": {"orig_filename": "Sloboda_Daniel_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359", "author": "", "orig_id": 1459119}}, {"model": "metainfo.source", "pk": 2256, "fields": {"orig_filename": "Slomkowski_Franciszek_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359", "author": "", "orig_id": 1459190}}, {"model": "metainfo.source", "pk": 2257, "fields": {"orig_filename": "Slomsek_Anton-Martin_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359f.", "author": "", "orig_id": 1459191}}, {"model": "metainfo.source", "pk": 2258, "fields": {"orig_filename": "Slota_Juraj_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 360f.", "author": "", "orig_id": 1459195}}, {"model": "metainfo.source", "pk": 2259, "fields": {"orig_filename": "Slotwinski-Leliwa_Feliks_1788_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 361", "author": "", "orig_id": 1459198}}, {"model": "metainfo.source", "pk": 2260, "fields": {"orig_filename": "Slotwinski-Leliwa_Konstanty_1793_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 361f.", "author": "", "orig_id": 1459199}}, {"model": "metainfo.source", "pk": 2261, "fields": {"orig_filename": "Slovensky_Janko_1856_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362", "author": "", "orig_id": 1459205}}, {"model": "metainfo.source", "pk": 2262, "fields": {"orig_filename": "Sluka_Wilhelm-Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362", "author": "", "orig_id": 1459209}}, {"model": "metainfo.source", "pk": 2263, "fields": {"orig_filename": "Smaha_Josef_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362f.", "author": "", "orig_id": 1459268}}, {"model": "metainfo.source", "pk": 2264, "fields": {"orig_filename": "Smal-Stockyj_Stephan_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 363f.", "author": "", "orig_id": 1459272}}, {"model": "metainfo.source", "pk": 2265, "fields": {"orig_filename": "Smareglia_Antonio_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364", "author": "", "orig_id": 1459273}}, {"model": "metainfo.source", "pk": 2266, "fields": {"orig_filename": "Smarzewski_Marcin_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364", "author": "", "orig_id": 1459274}}, {"model": "metainfo.source", "pk": 2267, "fields": {"orig_filename": "Smarzewski_Seweryn_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364f.", "author": "", "orig_id": 1459275}}, {"model": "metainfo.source", "pk": 2268, "fields": {"orig_filename": "Smekal_Gustav_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 365", "author": "", "orig_id": 1457372}}, {"model": "metainfo.source", "pk": 2269, "fields": {"orig_filename": "Smeral_Bohumir_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 365f.", "author": "", "orig_id": 1459282}}, {"model": "metainfo.source", "pk": 2270, "fields": {"orig_filename": "Smetana_Augustin_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 366", "author": "", "orig_id": 1462221}}, {"model": "metainfo.source", "pk": 2271, "fields": {"orig_filename": "Smetana_Friedrich_1824_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 366ff.", "author": "", "orig_id": 1462222}}, {"model": "metainfo.source", "pk": 2272, "fields": {"orig_filename": "Smetana_Josef-Frantisek_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 368", "author": "", "orig_id": 1462224}}, {"model": "metainfo.source", "pk": 2273, "fields": {"orig_filename": "Smetana_Rudolf_1802_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 368f.", "author": "", "orig_id": 1462590}}, {"model": "metainfo.source", "pk": 2274, "fields": {"orig_filename": "Smetanka_Emil_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 369", "author": "", "orig_id": 1462225}}, {"model": "metainfo.source", "pk": 2275, "fields": {"orig_filename": "Smetazko_Moritz_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 369f.", "author": "", "orig_id": 1457481}}, {"model": "metainfo.source", "pk": 2276, "fields": {"orig_filename": "Smets_Wilhelm_1796_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411772}}, {"model": "metainfo.source", "pk": 2277, "fields": {"orig_filename": "Smiciklas_Tadija_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370", "author": "", "orig_id": 1462230}}, {"model": "metainfo.source", "pk": 2278, "fields": {"orig_filename": "Smicka_Frantisek_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370", "author": "", "orig_id": 1462231}}, {"model": "metainfo.source", "pk": 2279, "fields": {"orig_filename": "Smidek_Vladimir_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317", "author": "", "orig_id": 1406748}}, {"model": "metainfo.source", "pk": 2280, "fields": {"orig_filename": "Smid_Anton-Adam_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370f.", "author": "", "orig_id": 1462232}}, {"model": "metainfo.source", "pk": 2281, "fields": {"orig_filename": "Smigelschi_Octavian_1866_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 371f.", "author": "", "orig_id": 1462233}}, {"model": "metainfo.source", "pk": 2282, "fields": {"orig_filename": "Smital_Ottokar_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 372", "author": "", "orig_id": 1462235}}, {"model": "metainfo.source", "pk": 2283, "fields": {"orig_filename": "Smola_Josef_1764_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 372f.", "author": "", "orig_id": 1458546}}, {"model": "metainfo.source", "pk": 2284, "fields": {"orig_filename": "Smola_Josef_1805_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373", "author": "", "orig_id": 1458547}}, {"model": "metainfo.source", "pk": 2285, "fields": {"orig_filename": "Smola_Karl_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373", "author": "", "orig_id": 1458548}}, {"model": "metainfo.source", "pk": 2286, "fields": {"orig_filename": "Smolenitz-Smolk_Leonidas_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 375", "author": "", "orig_id": 1457673}}, {"model": "metainfo.source", "pk": 2287, "fields": {"orig_filename": "Smolenitz-Smolk_Maria_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 374", "author": "", "orig_id": 1457919}}, {"model": "metainfo.source", "pk": 2288, "fields": {"orig_filename": "Smolenitz-Smolk_Nikolaus_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 374f.", "author": "", "orig_id": 1457920}}, {"model": "metainfo.source", "pk": 2289, "fields": {"orig_filename": "Smolenskin_Perez_1842_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 375f.", "author": "", "orig_id": 1462239}}, {"model": "metainfo.source", "pk": 2290, "fields": {"orig_filename": "Smolensky_Max_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376", "author": "", "orig_id": 1457471}}, {"model": "metainfo.source", "pk": 2291, "fields": {"orig_filename": "Smoler_Felix_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376", "author": "", "orig_id": 1462284}}, {"model": "metainfo.source", "pk": 2292, "fields": {"orig_filename": "Smoler_Franz-Xav_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376f.", "author": "", "orig_id": 1462116}}, {"model": "metainfo.source", "pk": 2293, "fields": {"orig_filename": "Smoler_Moritz_1833_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 377", "author": "", "orig_id": 1462328}}, {"model": "metainfo.source", "pk": 2294, "fields": {"orig_filename": "Smole_Andreas_1800_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373f.", "author": "", "orig_id": 1462237}}, {"model": "metainfo.source", "pk": 2295, "fields": {"orig_filename": "Smolik_Josef_1832_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 377", "author": "", "orig_id": 1462329}}, {"model": "metainfo.source", "pk": 2296, "fields": {"orig_filename": "Smolik_Julius_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378", "author": "", "orig_id": 1462330}}, {"model": "metainfo.source", "pk": 2297, "fields": {"orig_filename": "Smolik_Rupert_1832_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378", "author": "", "orig_id": 1462331}}, {"model": "metainfo.source", "pk": 2298, "fields": {"orig_filename": "Smolka_Alois_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378f.", "author": "", "orig_id": 1462333}}, {"model": "metainfo.source", "pk": 2299, "fields": {"orig_filename": "Smolka_Franciszek-Ks_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 379f.", "author": "", "orig_id": 1458218}}, {"model": "metainfo.source", "pk": 2300, "fields": {"orig_filename": "Smolka_Franciszek_1810_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 379", "author": "", "orig_id": 1462334}}, {"model": "metainfo.source", "pk": 2301, "fields": {"orig_filename": "Smolka_Stanislaw_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380", "author": "", "orig_id": 1462335}}, {"model": "metainfo.source", "pk": 2302, "fields": {"orig_filename": "Smolle_Leo_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380", "author": "", "orig_id": 1462336}}, {"model": "metainfo.source", "pk": 2303, "fields": {"orig_filename": "Smoluchowski-Smolan_Marian-Wilhelm-Teofil_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380f.", "author": "", "orig_id": 1462337}}, {"model": "metainfo.source", "pk": 2304, "fields": {"orig_filename": "Smreczynski_Franciszek_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 381f.", "author": "", "orig_id": 1462537}}, {"model": "metainfo.source", "pk": 2305, "fields": {"orig_filename": "Smrekar_Hinko_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 382", "author": "", "orig_id": 1462338}}, {"model": "metainfo.source", "pk": 2306, "fields": {"orig_filename": "Smutny_Franz_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 382f.", "author": "", "orig_id": 1462339}}, {"model": "metainfo.source", "pk": 2307, "fields": {"orig_filename": "Smycka_Jan_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383", "author": "", "orig_id": 1462340}}, {"model": "metainfo.source", "pk": 2308, "fields": {"orig_filename": "Snajdr_Karel-Sudimir_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383", "author": "", "orig_id": 1462341}}, {"model": "metainfo.source", "pk": 2309, "fields": {"orig_filename": "Snihurskyj_Johannes_1784_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383f.", "author": "", "orig_id": 1462343}}, {"model": "metainfo.source", "pk": 2310, "fields": {"orig_filename": "Snoer_Johannes_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384f.", "author": "", "orig_id": 1462344}}, {"model": "metainfo.source", "pk": 2311, "fields": {"orig_filename": "Snopek_Frantisek_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1462345}}, {"model": "metainfo.source", "pk": 2312, "fields": {"orig_filename": "Sobek_Franz-Josef_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1439288}}, {"model": "metainfo.source", "pk": 2313, "fields": {"orig_filename": "Sobek_Johann_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1439289}}, {"model": "metainfo.source", "pk": 2314, "fields": {"orig_filename": "Sobek_Sobeslav_1897_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385f.", "author": "", "orig_id": 1439342}}, {"model": "metainfo.source", "pk": 2315, "fields": {"orig_filename": "Sobieczky_Adolf_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 386", "author": "", "orig_id": 1439349}}, {"model": "metainfo.source", "pk": 2316, "fields": {"orig_filename": "Sobitschka-Wiesenhag_Josef-Richard_1854_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 386f.", "author": "", "orig_id": 1439415}}, {"model": "metainfo.source", "pk": 2317, "fields": {"orig_filename": "Singer_Samuel_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 300", "author": "", "orig_id": 1458570}}, {"model": "metainfo.source", "pk": 2318, "fields": {"orig_filename": "Singer_Siegfried_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301", "author": "", "orig_id": 1458572}}, {"model": "metainfo.source", "pk": 2319, "fields": {"orig_filename": "Singer_Sigmund_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 300f.", "author": "", "orig_id": 1458571}}, {"model": "metainfo.source", "pk": 2320, "fields": {"orig_filename": "Singer_Simon_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458562}}, {"model": "metainfo.source", "pk": 2321, "fields": {"orig_filename": "Singer_Stephan_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301", "author": "", "orig_id": 1458573}}, {"model": "metainfo.source", "pk": 2322, "fields": {"orig_filename": "Singer_Therese_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 302", "author": "", "orig_id": 1458575}}, {"model": "metainfo.source", "pk": 2323, "fields": {"orig_filename": "Singer_Wilhelm_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301f.", "author": "", "orig_id": 1458574}}, {"model": "metainfo.source", "pk": 2324, "fields": {"orig_filename": "Singule_Rudolf_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 302f.", "author": "", "orig_id": 1458577}}, {"model": "metainfo.source", "pk": 2325, "fields": {"orig_filename": "Sinnacher_Franz-Anton_1772_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 303", "author": "", "orig_id": 1458579}}, {"model": "metainfo.source", "pk": 2326, "fields": {"orig_filename": "Sinwel_Rudolf_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 303f.", "author": "", "orig_id": 1458580}}, {"model": "metainfo.source", "pk": 2327, "fields": {"orig_filename": "Sioly_Johann_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 304", "author": "", "orig_id": 1458582}}, {"model": "metainfo.source", "pk": 2328, "fields": {"orig_filename": "Sipek-Siebeck_Karl_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305", "author": "", "orig_id": 1458586}}, {"model": "metainfo.source", "pk": 2329, "fields": {"orig_filename": "Sipek_Karel_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 304f.", "author": "", "orig_id": 1458583}}, {"model": "metainfo.source", "pk": 2330, "fields": {"orig_filename": "Sipos_Paul_1759_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305", "author": "", "orig_id": 1458587}}, {"model": "metainfo.source", "pk": 2331, "fields": {"orig_filename": "Sirk_Albert_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306f.", "author": "", "orig_id": 1458659}}, {"model": "metainfo.source", "pk": 2332, "fields": {"orig_filename": "Sir_Frantisek-Vaclav_1804_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306", "author": "", "orig_id": 1458656}}, {"model": "metainfo.source", "pk": 2333, "fields": {"orig_filename": "Sir_Frantisek_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305f.", "author": "", "orig_id": 1458588}}, {"model": "metainfo.source", "pk": 2334, "fields": {"orig_filename": "Sir_Josef_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306", "author": "", "orig_id": 1458657}}, {"model": "metainfo.source", "pk": 2335, "fields": {"orig_filename": "Sisic_Ferdo_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 307f.", "author": "", "orig_id": 1458663}}, {"model": "metainfo.source", "pk": 2336, "fields": {"orig_filename": "Sis_Frantisek_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 307", "author": "", "orig_id": 1458660}}, {"model": "metainfo.source", "pk": 2337, "fields": {"orig_filename": "Sitensky_Frantisek_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308", "author": "", "orig_id": 1458664}}, {"model": "metainfo.source", "pk": 2338, "fields": {"orig_filename": "Sittenberger_Hans_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 311f.", "author": "", "orig_id": 1458675}}, {"model": "metainfo.source", "pk": 2339, "fields": {"orig_filename": "Sitter_Karl_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 312", "author": "", "orig_id": 1458676}}, {"model": "metainfo.source", "pk": 2340, "fields": {"orig_filename": "Sitte_Camillo_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 309f.", "author": "", "orig_id": 1458669}}, {"model": "metainfo.source", "pk": 2341, "fields": {"orig_filename": "Sitte_Franz_1818_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310", "author": "", "orig_id": 1458670}}, {"model": "metainfo.source", "pk": 2342, "fields": {"orig_filename": "Sitte_Olga_1884_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310", "author": "", "orig_id": 1458671}}, {"model": "metainfo.source", "pk": 2343, "fields": {"orig_filename": "Sitte_Siegfried_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310f.", "author": "", "orig_id": 1458673}}, {"model": "metainfo.source", "pk": 2344, "fields": {"orig_filename": "Sittig_Otto_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 312f.", "author": "", "orig_id": 1458677}}, {"model": "metainfo.source", "pk": 2345, "fields": {"orig_filename": "Sitt_Anton_1819_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308f.", "author": "", "orig_id": 1458666}}, {"model": "metainfo.source", "pk": 2346, "fields": {"orig_filename": "Sitt_Anton_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 309", "author": "", "orig_id": 1458667}}, {"model": "metainfo.source", "pk": 2347, "fields": {"orig_filename": "Sitt_Hans_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308f.", "author": "", "orig_id": 1458665}}, {"model": "metainfo.source", "pk": 2348, "fields": {"orig_filename": "Siuschegg_Anton_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313", "author": "", "orig_id": 1458678}}, {"model": "metainfo.source", "pk": 2349, "fields": {"orig_filename": "Six_Michael_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313", "author": "", "orig_id": 1458679}}, {"model": "metainfo.source", "pk": 2350, "fields": {"orig_filename": "Skaba_Josef_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313f.", "author": "", "orig_id": 1458680}}, {"model": "metainfo.source", "pk": 2351, "fields": {"orig_filename": "Skakoc_Giovanni_1752_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314", "author": "", "orig_id": 1458756}}, {"model": "metainfo.source", "pk": 2352, "fields": {"orig_filename": "Skakoc_Luidj_1758_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314", "author": "", "orig_id": 1458757}}, {"model": "metainfo.source", "pk": 2353, "fields": {"orig_filename": "Skalnik_Vaclav_1776_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314f.", "author": "", "orig_id": 1455508}}, {"model": "metainfo.source", "pk": 2354, "fields": {"orig_filename": "Skalsky_Gustav-Adolf_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 315", "author": "", "orig_id": 1458760}}, {"model": "metainfo.source", "pk": 2355, "fields": {"orig_filename": "Skarbek_Aleksander-Wincenty-Jan_1874_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 315f.", "author": "", "orig_id": 1458761}}, {"model": "metainfo.source", "pk": 2356, "fields": {"orig_filename": "Skarbek_Stanislaw_1780_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 316", "author": "", "orig_id": 1458764}}, {"model": "metainfo.source", "pk": 2357, "fields": {"orig_filename": "Skarda_Jakub_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 316f.", "author": "", "orig_id": 1458765}}, {"model": "metainfo.source", "pk": 2358, "fields": {"orig_filename": "Skarda_Vaclav_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 317", "author": "", "orig_id": 1458766}}, {"model": "metainfo.source", "pk": 2359, "fields": {"orig_filename": "Skarda_Vladimir_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 317f.", "author": "", "orig_id": 1458767}}, {"model": "metainfo.source", "pk": 2360, "fields": {"orig_filename": "Skaret_Ferdinand_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 318", "author": "", "orig_id": 1458768}}, {"model": "metainfo.source", "pk": 2361, "fields": {"orig_filename": "Skarlandt_Julius_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 318", "author": "", "orig_id": 1458769}}, {"model": "metainfo.source", "pk": 2362, "fields": {"orig_filename": "Skarvan_Albert_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319", "author": "", "orig_id": 1458772}}, {"model": "metainfo.source", "pk": 2363, "fields": {"orig_filename": "Skedl_Arthur_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319f.", "author": "", "orig_id": 1458773}}, {"model": "metainfo.source", "pk": 2364, "fields": {"orig_filename": "Skedl_Josef-Michael_1818_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319f.", "author": "", "orig_id": 1458774}}, {"model": "metainfo.source", "pk": 2365, "fields": {"orig_filename": "Skene_Alfred_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 320", "author": "", "orig_id": 1458775}}, {"model": "metainfo.source", "pk": 2366, "fields": {"orig_filename": "Skene_Alfred_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321", "author": "", "orig_id": 1458779}}, {"model": "metainfo.source", "pk": 2367, "fields": {"orig_filename": "Skene_August_1829_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321", "author": "", "orig_id": 1443236}}, {"model": "metainfo.source", "pk": 2368, "fields": {"orig_filename": "Skene_Richard_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321f.", "author": "", "orig_id": 1458780}}, {"model": "metainfo.source", "pk": 2369, "fields": {"orig_filename": "Skene_Richard_1909_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321f.", "author": "", "orig_id": 1458781}}, {"model": "metainfo.source", "pk": 2370, "fields": {"orig_filename": "Skerle_August-Anton_1850_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458845}}, {"model": "metainfo.source", "pk": 2371, "fields": {"orig_filename": "Skerle_August_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458844}}, {"model": "metainfo.source", "pk": 2372, "fields": {"orig_filename": "Skerle_Mathilde-Franziska_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458846}}, {"model": "metainfo.source", "pk": 2373, "fields": {"orig_filename": "Sket_Jakob_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458847}}, {"model": "metainfo.source", "pk": 2374, "fields": {"orig_filename": "Skiba_Eduard-Wladyslaw_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322f.", "author": "", "orig_id": 1458850}}, {"model": "metainfo.source", "pk": 2375, "fields": {"orig_filename": "Skibinski_Karol_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 323", "author": "", "orig_id": 1458852}}, {"model": "metainfo.source", "pk": 2376, "fields": {"orig_filename": "Sklenarova-Mala_Otylie_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 323f.", "author": "", "orig_id": 1458853}}, {"model": "metainfo.source", "pk": 2377, "fields": {"orig_filename": "Skobel_Fryderyk-Kazimierz_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 324", "author": "", "orig_id": 1458856}}, {"model": "metainfo.source", "pk": 2378, "fields": {"orig_filename": "Skoczek_Erich_1908_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 324", "author": "", "orig_id": 1458857}}, {"model": "metainfo.source", "pk": 2379, "fields": {"orig_filename": "Skoda_Emil_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 325", "author": "", "orig_id": 1455509}}, {"model": "metainfo.source", "pk": 2380, "fields": {"orig_filename": "Skoda_Franz_1801_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 325f.", "author": "", "orig_id": 1455510}}, {"model": "metainfo.source", "pk": 2381, "fields": {"orig_filename": "Skoda_Josef_1805_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 326", "author": "", "orig_id": 1455511}}, {"model": "metainfo.source", "pk": 2382, "fields": {"orig_filename": "Skoda_Karl_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 326f.", "author": "", "orig_id": 1458860}}, {"model": "metainfo.source", "pk": 2383, "fields": {"orig_filename": "Skoda_Karl_1878_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327", "author": "", "orig_id": 1455560}}, {"model": "metainfo.source", "pk": 2384, "fields": {"orig_filename": "Skofitz_Alexander_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327f.", "author": "", "orig_id": 1458862}}, {"model": "metainfo.source", "pk": 2385, "fields": {"orig_filename": "Skomal_Emil_1853_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328", "author": "", "orig_id": 1458863}}, {"model": "metainfo.source", "pk": 2386, "fields": {"orig_filename": "Skomal_Karl_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328", "author": "", "orig_id": 1458864}}, {"model": "metainfo.source", "pk": 2387, "fields": {"orig_filename": "Skopalik_Frantisek_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328f.", "author": "", "orig_id": 1458865}}, {"model": "metainfo.source", "pk": 2388, "fields": {"orig_filename": "Skopalik_Frantisek_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 329", "author": "", "orig_id": 1458866}}, {"model": "metainfo.source", "pk": 2389, "fields": {"orig_filename": "Skopec_Jindrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 329f.", "author": "", "orig_id": 1442486}}, {"model": "metainfo.source", "pk": 2390, "fields": {"orig_filename": "Skorpil_Ferdinand_1903_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 330", "author": "", "orig_id": 1458867}}, {"model": "metainfo.source", "pk": 2391, "fields": {"orig_filename": "Skorpil_Hermenegild_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 330", "author": "", "orig_id": 1458937}}, {"model": "metainfo.source", "pk": 2392, "fields": {"orig_filename": "Skorpil_Josef_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458941}}, {"model": "metainfo.source", "pk": 2393, "fields": {"orig_filename": "Skorpil_Karel_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458938}}, {"model": "metainfo.source", "pk": 2394, "fields": {"orig_filename": "Skorpil_Vaclav_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458939}}, {"model": "metainfo.source", "pk": 2395, "fields": {"orig_filename": "Skorpil_Vladislav_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458940}}, {"model": "metainfo.source", "pk": 2396, "fields": {"orig_filename": "Skrabec_Stanislav_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331f.", "author": "", "orig_id": 1458942}}, {"model": "metainfo.source", "pk": 2397, "fields": {"orig_filename": "Skrach_Vasil_1891_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332", "author": "", "orig_id": 1458943}}, {"model": "metainfo.source", "pk": 2398, "fields": {"orig_filename": "Skramlik_Emilian_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332f.", "author": "", "orig_id": 1458945}}, {"model": "metainfo.source", "pk": 2399, "fields": {"orig_filename": "Skramlik_Jan_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332f.", "author": "", "orig_id": 1458947}}, {"model": "metainfo.source", "pk": 2400, "fields": {"orig_filename": "Skraup_Karl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 333", "author": "", "orig_id": 1458948}}, {"model": "metainfo.source", "pk": 2401, "fields": {"orig_filename": "Skraup_Zdenko-Hans_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 333f.", "author": "", "orig_id": 1456018}}, {"model": "metainfo.source", "pk": 2402, "fields": {"orig_filename": "Skrbensky-Hriste_Leo_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 334", "author": "", "orig_id": 1458950}}, {"model": "metainfo.source", "pk": 2403, "fields": {"orig_filename": "Skrejsovsky_Frantisek_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 334f.", "author": "", "orig_id": 1458951}}, {"model": "metainfo.source", "pk": 2404, "fields": {"orig_filename": "Skrejsovsky_Jan-Stanislav_1831_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335", "author": "", "orig_id": 1458952}}, {"model": "metainfo.source", "pk": 2405, "fields": {"orig_filename": "Skribanek_Joseph_1788_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335", "author": "", "orig_id": 1458953}}, {"model": "metainfo.source", "pk": 2406, "fields": {"orig_filename": "Skrivan_Antonin_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335f.", "author": "", "orig_id": 1458954}}, {"model": "metainfo.source", "pk": 2407, "fields": {"orig_filename": "Skrivan_Frantisek_1807_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 336", "author": "", "orig_id": 1458955}}, {"model": "metainfo.source", "pk": 2408, "fields": {"orig_filename": "Skrivan_Gustav_1831_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 336f.", "author": "", "orig_id": 1458956}}, {"model": "metainfo.source", "pk": 2409, "fields": {"orig_filename": "Skroup_Frantisek-Seraf_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 337", "author": "", "orig_id": 1458957}}, {"model": "metainfo.source", "pk": 2410, "fields": {"orig_filename": "Skroup_Jan-Nepomuk_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 337f.", "author": "", "orig_id": 1458958}}, {"model": "metainfo.source", "pk": 2411, "fields": {"orig_filename": "Skuhersky_Franz-Alois_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338", "author": "", "orig_id": 1458959}}, {"model": "metainfo.source", "pk": 2412, "fields": {"orig_filename": "Skuhersky_Franz-Xaver_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338", "author": "", "orig_id": 1459025}}, {"model": "metainfo.source", "pk": 2413, "fields": {"orig_filename": "Skuhersky_Rudolf_1828_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338f.", "author": "", "orig_id": 1459026}}, {"model": "metainfo.source", "pk": 2414, "fields": {"orig_filename": "Skultety_August-Horislav_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 339", "author": "", "orig_id": 1459027}}, {"model": "metainfo.source", "pk": 2415, "fields": {"orig_filename": "Skultety_Jozef_1853_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 339f.", "author": "", "orig_id": 1459030}}, {"model": "metainfo.source", "pk": 2416, "fields": {"orig_filename": "Skuppa_Josef_1823_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 340", "author": "", "orig_id": 1459031}}, {"model": "metainfo.source", "pk": 2417, "fields": {"orig_filename": "Skurawy_Edmund_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 340f.", "author": "", "orig_id": 1459032}}, {"model": "metainfo.source", "pk": 2418, "fields": {"orig_filename": "Skutecky_Dominik_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 341", "author": "", "orig_id": 1459033}}, {"model": "metainfo.source", "pk": 2419, "fields": {"orig_filename": "Skutetzky_Alexander_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 341f.", "author": "", "orig_id": 1459035}}, {"model": "metainfo.source", "pk": 2420, "fields": {"orig_filename": "Sigora-Eulenstein_Anton-Heinrich_1772_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256", "author": "", "orig_id": 1457996}}, {"model": "metainfo.source", "pk": 2421, "fields": {"orig_filename": "Siklossy-Perness_Julius_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256f.", "author": "", "orig_id": 1457997}}, {"model": "metainfo.source", "pk": 2422, "fields": {"orig_filename": "Sikora_Franz_1863_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257", "author": "", "orig_id": 1458000}}, {"model": "metainfo.source", "pk": 2423, "fields": {"orig_filename": "Sikorski_Wladyslaw-Eugeniusz_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257f.", "author": "", "orig_id": 1458001}}, {"model": "metainfo.source", "pk": 2424, "fields": {"orig_filename": "Siko_Miklos_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257", "author": "", "orig_id": 1457999}}, {"model": "metainfo.source", "pk": 2425, "fields": {"orig_filename": "Silberberg_Maximilian_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 259f.", "author": "", "orig_id": 1458068}}, {"model": "metainfo.source", "pk": 2426, "fields": {"orig_filename": "Silberbusch_David-Jeschajahu_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 260", "author": "", "orig_id": 1458071}}, {"model": "metainfo.source", "pk": 2427, "fields": {"orig_filename": "Silberer_Geza_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 261", "author": "", "orig_id": 1458073}}, {"model": "metainfo.source", "pk": 2428, "fields": {"orig_filename": "Silberer_Herbert_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 261f.", "author": "", "orig_id": 1458075}}, {"model": "metainfo.source", "pk": 2429, "fields": {"orig_filename": "Silberer_Rosa_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 262", "author": "", "orig_id": 1458076}}, {"model": "metainfo.source", "pk": 2430, "fields": {"orig_filename": "Silberer_Viktor_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 262f.", "author": "", "orig_id": 1458077}}, {"model": "metainfo.source", "pk": 2431, "fields": {"orig_filename": "Silberhuber_Anton_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 263", "author": "", "orig_id": 1458078}}, {"model": "metainfo.source", "pk": 2432, "fields": {"orig_filename": "Silbermark_Moriz-Viktor_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 263f.", "author": "", "orig_id": 1458079}}, {"model": "metainfo.source", "pk": 2433, "fields": {"orig_filename": "Silbernagl_Johann_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 264", "author": "", "orig_id": 1458080}}, {"model": "metainfo.source", "pk": 2434, "fields": {"orig_filename": "Silberstein_Adolf_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 264f.", "author": "", "orig_id": 1458081}}, {"model": "metainfo.source", "pk": 2435, "fields": {"orig_filename": "Silberstein_August_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265", "author": "", "orig_id": 1458083}}, {"model": "metainfo.source", "pk": 2436, "fields": {"orig_filename": "Silberstern_Philipp_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265", "author": "", "orig_id": 1458084}}, {"model": "metainfo.source", "pk": 2437, "fields": {"orig_filename": "Silbert_Johann-Peter_1778_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265f.", "author": "", "orig_id": 1458085}}, {"model": "metainfo.source", "pk": 2438, "fields": {"orig_filename": "Silbert_Maria_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 266", "author": "", "orig_id": 1458087}}, {"model": "metainfo.source", "pk": 2439, "fields": {"orig_filename": "Silber_Max_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 258f.", "author": "", "orig_id": 1458004}}, {"model": "metainfo.source", "pk": 2440, "fields": {"orig_filename": "Silber_Philipp_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 259", "author": "", "orig_id": 1458067}}, {"model": "metainfo.source", "pk": 2441, "fields": {"orig_filename": "Sileny_Vaclav_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 266f.", "author": "", "orig_id": 1458088}}, {"model": "metainfo.source", "pk": 2442, "fields": {"orig_filename": "Silinger_Tomas-Eduard_1866_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 267f.", "author": "", "orig_id": 1458089}}, {"model": "metainfo.source", "pk": 2443, "fields": {"orig_filename": "Siller_Franz_1893_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268", "author": "", "orig_id": 1458090}}, {"model": "metainfo.source", "pk": 2444, "fields": {"orig_filename": "Siller_Heinrich_1884_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268", "author": "", "orig_id": 1458091}}, {"model": "metainfo.source", "pk": 2445, "fields": {"orig_filename": "Siller_Josef_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268f.", "author": "", "orig_id": 1458152}}, {"model": "metainfo.source", "pk": 2446, "fields": {"orig_filename": "Silli_Giuseppe_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 269", "author": "", "orig_id": 1458154}}, {"model": "metainfo.source", "pk": 2447, "fields": {"orig_filename": "Silovic_Josip_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 269f.", "author": "", "orig_id": 1458155}}, {"model": "metainfo.source", "pk": 2448, "fields": {"orig_filename": "Silva-Tarouca_Ernst-Emanuel_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 270f.", "author": "", "orig_id": 1458157}}, {"model": "metainfo.source", "pk": 2449, "fields": {"orig_filename": "Silva-Tarouca_Franz-Josef_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 270", "author": "", "orig_id": 1458161}}, {"model": "metainfo.source", "pk": 2450, "fields": {"orig_filename": "Silvestri_Pietro_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271", "author": "", "orig_id": 1458162}}, {"model": "metainfo.source", "pk": 2451, "fields": {"orig_filename": "Silving_Bert_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271", "author": "", "orig_id": 1458163}}, {"model": "metainfo.source", "pk": 2452, "fields": {"orig_filename": "Sil_Josef_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 258", "author": "", "orig_id": 1458002}}, {"model": "metainfo.source", "pk": 2453, "fields": {"orig_filename": "Simacek_Frantisek_1834_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271f.", "author": "", "orig_id": 1458164}}, {"model": "metainfo.source", "pk": 2454, "fields": {"orig_filename": "Simacek_Josef_1837_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 272", "author": "", "orig_id": 1458165}}, {"model": "metainfo.source", "pk": 2455, "fields": {"orig_filename": "Simacek_Matej-Anastasia_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 272f.", "author": "", "orig_id": 1458166}}, {"model": "metainfo.source", "pk": 2456, "fields": {"orig_filename": "Simai_Kristof_1742_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 273", "author": "", "orig_id": 1458167}}, {"model": "metainfo.source", "pk": 2457, "fields": {"orig_filename": "Simak_Josef-Vitezslav_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 273", "author": "", "orig_id": 1458168}}, {"model": "metainfo.source", "pk": 2458, "fields": {"orig_filename": "Simandl_Franz_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274", "author": "", "orig_id": 1458173}}, {"model": "metainfo.source", "pk": 2459, "fields": {"orig_filename": "Simbschen_Joseph-Anton_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274f.", "author": "", "orig_id": 1458174}}, {"model": "metainfo.source", "pk": 2460, "fields": {"orig_filename": "Simbschen_Joseph-Karl_1781_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274f.", "author": "", "orig_id": 1458175}}, {"model": "metainfo.source", "pk": 2461, "fields": {"orig_filename": "Simbschen_Julius_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458177}}, {"model": "metainfo.source", "pk": 2462, "fields": {"orig_filename": "Simbschen_Karl_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458176}}, {"model": "metainfo.source", "pk": 2463, "fields": {"orig_filename": "Simecek_Frantisek_1842_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458251}}, {"model": "metainfo.source", "pk": 2464, "fields": {"orig_filename": "Simeoner_Archangelus_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275f.", "author": "", "orig_id": 1458252}}, {"model": "metainfo.source", "pk": 2465, "fields": {"orig_filename": "Simerka_Vaclav_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276", "author": "", "orig_id": 1458253}}, {"model": "metainfo.source", "pk": 2466, "fields": {"orig_filename": "Simic_Antun-Branko_1898_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276", "author": "", "orig_id": 1458254}}, {"model": "metainfo.source", "pk": 2467, "fields": {"orig_filename": "Simic_Pavle_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276f.", "author": "", "orig_id": 1458256}}, {"model": "metainfo.source", "pk": 2468, "fields": {"orig_filename": "Simiginowicz-Staufe_Ludwig-Adolf_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 277f.", "author": "", "orig_id": 1458258}}, {"model": "metainfo.source", "pk": 2469, "fields": {"orig_filename": "Simitsch-Hohenblum_Alfred_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278", "author": "", "orig_id": 1458260}}, {"model": "metainfo.source", "pk": 2470, "fields": {"orig_filename": "Simitsch-Hohenblum_Josef_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278", "author": "", "orig_id": 1458261}}, {"model": "metainfo.source", "pk": 2471, "fields": {"orig_filename": "Simm-Mayer_Marie_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458266}}, {"model": "metainfo.source", "pk": 2472, "fields": {"orig_filename": "Simm_Anton_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278f.", "author": "", "orig_id": 1458263}}, {"model": "metainfo.source", "pk": 2473, "fields": {"orig_filename": "Simm_Franz-Xaver_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458264}}, {"model": "metainfo.source", "pk": 2474, "fields": {"orig_filename": "Simonek-Mladatov_Josef_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 281f.", "author": "", "orig_id": 1458365}}, {"model": "metainfo.source", "pk": 2475, "fields": {"orig_filename": "Simonetti_Giovanni_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 282", "author": "", "orig_id": 1458366}}, {"model": "metainfo.source", "pk": 2476, "fields": {"orig_filename": "Simonic_Franz_1847_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 282f.", "author": "", "orig_id": 1458368}}, {"model": "metainfo.source", "pk": 2477, "fields": {"orig_filename": "Simonides_Alois_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283", "author": "", "orig_id": 1458370}}, {"model": "metainfo.source", "pk": 2478, "fields": {"orig_filename": "Simonkai_Lajos_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283", "author": "", "orig_id": 1458371}}, {"model": "metainfo.source", "pk": 2479, "fields": {"orig_filename": "Simons_Rainer_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283f.", "author": "", "orig_id": 1458372}}, {"model": "metainfo.source", "pk": 2480, "fields": {"orig_filename": "Simonyi-Semadam_Sandor_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287f.", "author": "", "orig_id": 1458383}}, {"model": "metainfo.source", "pk": 2481, "fields": {"orig_filename": "Simonyi-Vitezvar_Jozsef_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 288", "author": "", "orig_id": 1458384}}, {"model": "metainfo.source", "pk": 2482, "fields": {"orig_filename": "Simonyi-Vitezvar_Lajos_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 288f.", "author": "", "orig_id": 1458385}}, {"model": "metainfo.source", "pk": 2483, "fields": {"orig_filename": "Simonyi_Antal_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 286", "author": "", "orig_id": 1458378}}, {"model": "metainfo.source", "pk": 2484, "fields": {"orig_filename": "Simonyi_Ernoe_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 286f.", "author": "", "orig_id": 1458379}}, {"model": "metainfo.source", "pk": 2485, "fields": {"orig_filename": "Simonyi_Karoline-Johanna_1803_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287", "author": "", "orig_id": 1458380}}, {"model": "metainfo.source", "pk": 2486, "fields": {"orig_filename": "Simonyi_Zsigmond_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287", "author": "", "orig_id": 1458382}}, {"model": "metainfo.source", "pk": 2487, "fields": {"orig_filename": "Simony_Friedrich_1813_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 284", "author": "", "orig_id": 1458374}}, {"model": "metainfo.source", "pk": 2488, "fields": {"orig_filename": "Simony_Leopold_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 284f.", "author": "", "orig_id": 1458375}}, {"model": "metainfo.source", "pk": 2489, "fields": {"orig_filename": "Simony_Oskar_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 285f.", "author": "", "orig_id": 1458377}}, {"model": "metainfo.source", "pk": 2490, "fields": {"orig_filename": "Simony_Stefan_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 285", "author": "", "orig_id": 1458376}}, {"model": "metainfo.source", "pk": 2491, "fields": {"orig_filename": "Simon_Josef_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279f.", "author": "", "orig_id": 1458268}}, {"model": "metainfo.source", "pk": 2492, "fields": {"orig_filename": "Simon_Oscar_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 280", "author": "", "orig_id": 1458273}}, {"model": "metainfo.source", "pk": 2493, "fields": {"orig_filename": "Simon_Sigismund_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 280f.", "author": "", "orig_id": 1458274}}, {"model": "metainfo.source", "pk": 2494, "fields": {"orig_filename": "Simon_T-Frantisek_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 281", "author": "", "orig_id": 1458276}}, {"model": "metainfo.source", "pk": 2495, "fields": {"orig_filename": "Simor_Janos_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289", "author": "", "orig_id": 1458386}}, {"model": "metainfo.source", "pk": 2496, "fields": {"orig_filename": "Simo_Ferenc_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458267}}, {"model": "metainfo.source", "pk": 2497, "fields": {"orig_filename": "Simunich_Balthasar_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289", "author": "", "orig_id": 1458388}}, {"model": "metainfo.source", "pk": 2498, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Georg-Simon_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289f.", "author": "", "orig_id": 1458464}}, {"model": "metainfo.source", "pk": 2499, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Johann-Simon_1804_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 290", "author": "", "orig_id": 1458465}}, {"model": "metainfo.source", "pk": 2500, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Simon-Georg_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 290f.", "author": "", "orig_id": 1458466}}, {"model": "metainfo.source", "pk": 2501, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Simon-Georg_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 291", "author": "", "orig_id": 1458468}}, {"model": "metainfo.source", "pk": 2502, "fields": {"orig_filename": "Sincai_Gheorghe_1754_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 291f.", "author": "", "orig_id": 1458470}}, {"model": "metainfo.source", "pk": 2503, "fields": {"orig_filename": "Sindelar_Matthias_1903_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 292", "author": "", "orig_id": 1458471}}, {"model": "metainfo.source", "pk": 2504, "fields": {"orig_filename": "Singer_Clara__1967.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458487}}, {"model": "metainfo.source", "pk": 2505, "fields": {"orig_filename": "Singer_Edmund_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293", "author": "", "orig_id": 1458472}}, {"model": "metainfo.source", "pk": 2506, "fields": {"orig_filename": "Singer_Edmund_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293f.", "author": "", "orig_id": 1458473}}, {"model": "metainfo.source", "pk": 2507, "fields": {"orig_filename": "Singer_Emanuel_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294", "author": "", "orig_id": 1458475}}, {"model": "metainfo.source", "pk": 2508, "fields": {"orig_filename": "Singer_Emil_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294", "author": "", "orig_id": 1458476}}, {"model": "metainfo.source", "pk": 2509, "fields": {"orig_filename": "Singer_Franz-Ignaz_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294f.", "author": "", "orig_id": 1458478}}, {"model": "metainfo.source", "pk": 2510, "fields": {"orig_filename": "Singer_Friedrich_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293", "author": "", "orig_id": 1458474}}, {"model": "metainfo.source", "pk": 2511, "fields": {"orig_filename": "Singer_Gustav_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 295", "author": "", "orig_id": 1458479}}, {"model": "metainfo.source", "pk": 2512, "fields": {"orig_filename": "Singer_Heinrich-Joseph_1855_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 295f.", "author": "", "orig_id": 1458480}}, {"model": "metainfo.source", "pk": 2513, "fields": {"orig_filename": "Singer_Isidor_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 296", "author": "", "orig_id": 1458482}}, {"model": "metainfo.source", "pk": 2514, "fields": {"orig_filename": "Singer_Isidor_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 296f.", "author": "", "orig_id": 1458483}}, {"model": "metainfo.source", "pk": 2515, "fields": {"orig_filename": "Singer_Jakob_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458484}}, {"model": "metainfo.source", "pk": 2516, "fields": {"orig_filename": "Singer_Joseph_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458485}}, {"model": "metainfo.source", "pk": 2517, "fields": {"orig_filename": "Singer_Julius_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297f.", "author": "", "orig_id": 1458563}}, {"model": "metainfo.source", "pk": 2518, "fields": {"orig_filename": "Singer_Karl-Max-Friedrich_1888_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 298", "author": "", "orig_id": 1458565}}, {"model": "metainfo.source", "pk": 2519, "fields": {"orig_filename": "Singer_Ludvik_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 298f.", "author": "", "orig_id": 1458566}}, {"model": "metainfo.source", "pk": 2520, "fields": {"orig_filename": "Singer_Max_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 299", "author": "", "orig_id": 1458567}}, {"model": "metainfo.source", "pk": 2521, "fields": {"orig_filename": "Singer_Petrus-Von-Alcantara_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 299f.", "author": "", "orig_id": 1458568}}, {"model": "metainfo.source", "pk": 2522, "fields": {"orig_filename": "Seykora_Oldrich-V_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210f.", "author": "", "orig_id": 1450962}}, {"model": "metainfo.source", "pk": 2523, "fields": {"orig_filename": "Seyler_Karoly_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 211f.", "author": "", "orig_id": 1450964}}, {"model": "metainfo.source", "pk": 2524, "fields": {"orig_filename": "Seyller_Otto_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212", "author": "", "orig_id": 1450965}}, {"model": "metainfo.source", "pk": 2525, "fields": {"orig_filename": "Seyrer_Ignaz_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212", "author": "", "orig_id": 1450966}}, {"model": "metainfo.source", "pk": 2526, "fields": {"orig_filename": "Seyrl_Franz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212f.", "author": "", "orig_id": 1450967}}, {"model": "metainfo.source", "pk": 2527, "fields": {"orig_filename": "Seyrl_Rudolf_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213", "author": "", "orig_id": 1450968}}, {"model": "metainfo.source", "pk": 2528, "fields": {"orig_filename": "Seyss-Inquart_Arthur_1892_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213f.", "author": "", "orig_id": 1449992}}, {"model": "metainfo.source", "pk": 2529, "fields": {"orig_filename": "Seyss-Inquart_Richard_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 214f.", "author": "", "orig_id": 1449993}}, {"model": "metainfo.source", "pk": 2530, "fields": {"orig_filename": "Seyss_Ludwig_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213", "author": "", "orig_id": 1450969}}, {"model": "metainfo.source", "pk": 2531, "fields": {"orig_filename": "Sfetez_Giovanni_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 215", "author": "", "orig_id": 1449994}}, {"model": "metainfo.source", "pk": 2532, "fields": {"orig_filename": "Sfondrini_Achille_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 215f.", "author": "", "orig_id": 1449995}}, {"model": "metainfo.source", "pk": 2533, "fields": {"orig_filename": "Sforzi_Giuseppe_1801_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 216", "author": "", "orig_id": 1449996}}, {"model": "metainfo.source", "pk": 2534, "fields": {"orig_filename": "Shivitz_Valentin-Matthias_1828_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 216f.", "author": "", "orig_id": 1449997}}, {"model": "metainfo.source", "pk": 2535, "fields": {"orig_filename": "Siber_Alfons_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 217", "author": "", "orig_id": 1449999}}, {"model": "metainfo.source", "pk": 2536, "fields": {"orig_filename": "Siber_Franz_1751_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 217f.", "author": "", "orig_id": 1450000}}, {"model": "metainfo.source", "pk": 2537, "fields": {"orig_filename": "Siboni_Giuseppe-Vincenzo-Antonio_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 218", "author": "", "orig_id": 1450001}}, {"model": "metainfo.source", "pk": 2538, "fields": {"orig_filename": "Sicard-Sicardsburg_August_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 219f.", "author": "", "orig_id": 1450003}}, {"model": "metainfo.source", "pk": 2539, "fields": {"orig_filename": "Sicharter_Barbara_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 220f.", "author": "", "orig_id": 1450005}}, {"model": "metainfo.source", "pk": 2540, "fields": {"orig_filename": "Sicha_Anton-Jaroslav_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 220", "author": "", "orig_id": 1450004}}, {"model": "metainfo.source", "pk": 2541, "fields": {"orig_filename": "Sichrovsky_Heinrich-Joachim_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 221f.", "author": "", "orig_id": 1450006}}, {"model": "metainfo.source", "pk": 2542, "fields": {"orig_filename": "Sichrovsky_Joseph_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 222f.", "author": "", "orig_id": 1450007}}, {"model": "metainfo.source", "pk": 2543, "fields": {"orig_filename": "Sickel_Theodor_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223f.", "author": "", "orig_id": 1450009}}, {"model": "metainfo.source", "pk": 2544, "fields": {"orig_filename": "Sic_Albert-Franc_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 218f.", "author": "", "orig_id": 1450002}}, {"model": "metainfo.source", "pk": 2545, "fields": {"orig_filename": "Sidoli_Alessandro_1812_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 224f.", "author": "", "orig_id": 1450010}}, {"model": "metainfo.source", "pk": 2546, "fields": {"orig_filename": "Sidorowicz_Zygmunt_1846_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225", "author": "", "orig_id": 1450012}}, {"model": "metainfo.source", "pk": 2547, "fields": {"orig_filename": "Sidor_Andrzej_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225", "author": "", "orig_id": 1450011}}, {"model": "metainfo.source", "pk": 2548, "fields": {"orig_filename": "Siebeck_Rudolph_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225f.", "author": "", "orig_id": 1450013}}, {"model": "metainfo.source", "pk": 2549, "fields": {"orig_filename": "Siebenrock_Friedrich_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 226", "author": "", "orig_id": 1450014}}, {"model": "metainfo.source", "pk": 2550, "fields": {"orig_filename": "Sieberer_Anton_1901_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 228", "author": "", "orig_id": 1450075}}, {"model": "metainfo.source", "pk": 2551, "fields": {"orig_filename": "Sieberer_Johann_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 228f.", "author": "", "orig_id": 1450076}}, {"model": "metainfo.source", "pk": 2552, "fields": {"orig_filename": "Sieber_Ferdinand_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 226f.", "author": "", "orig_id": 1450015}}, {"model": "metainfo.source", "pk": 2553, "fields": {"orig_filename": "Sieber_Franz-Wilhelm_1789_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 227", "author": "", "orig_id": 1450016}}, {"model": "metainfo.source", "pk": 2554, "fields": {"orig_filename": "Sieber_Karl-Laurenz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 227f.", "author": "", "orig_id": 1450017}}, {"model": "metainfo.source", "pk": 2555, "fields": {"orig_filename": "Siebinger_Josef_1800_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 229", "author": "", "orig_id": 1450077}}, {"model": "metainfo.source", "pk": 2556, "fields": {"orig_filename": "Siebold_Alexander_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 229", "author": "", "orig_id": 1450078}}, {"model": "metainfo.source", "pk": 2557, "fields": {"orig_filename": "Siebold_Heinrich_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230", "author": "", "orig_id": 1450079}}, {"model": "metainfo.source", "pk": 2558, "fields": {"orig_filename": "Siedek_Oskar_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230f.", "author": "", "orig_id": 1450080}}, {"model": "metainfo.source", "pk": 2559, "fields": {"orig_filename": "Siedek_Peter-Karl_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230f.", "author": "", "orig_id": 1450081}}, {"model": "metainfo.source", "pk": 2560, "fields": {"orig_filename": "Siedek_Richard_1859_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 231", "author": "", "orig_id": 1445586}}, {"model": "metainfo.source", "pk": 2561, "fields": {"orig_filename": "Siedek_Viktor_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 231f.", "author": "", "orig_id": 1450082}}, {"model": "metainfo.source", "pk": 2562, "fields": {"orig_filename": "Sieder_Adolf_1913_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232", "author": "", "orig_id": 1450084}}, {"model": "metainfo.source", "pk": 2563, "fields": {"orig_filename": "Sieder_Josef_1918_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232", "author": "", "orig_id": 1450083}}, {"model": "metainfo.source", "pk": 2564, "fields": {"orig_filename": "Siedlecki_Michal-Marian_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232f.", "author": "", "orig_id": 1450085}}, {"model": "metainfo.source", "pk": 2565, "fields": {"orig_filename": "Siegelbaum_Leo_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236", "author": "", "orig_id": 1450092}}, {"model": "metainfo.source", "pk": 2566, "fields": {"orig_filename": "Siegele_Josef_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236f.", "author": "", "orig_id": 1450093}}, {"model": "metainfo.source", "pk": 2567, "fields": {"orig_filename": "Siegel_Carl_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234f.", "author": "", "orig_id": 1420065}}, {"model": "metainfo.source", "pk": 2568, "fields": {"orig_filename": "Siegel_Ernst_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 235", "author": "", "orig_id": 1426316}}, {"model": "metainfo.source", "pk": 2569, "fields": {"orig_filename": "Siegel_Franz_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 235f.", "author": "", "orig_id": 1450090}}, {"model": "metainfo.source", "pk": 2570, "fields": {"orig_filename": "Siegel_Heinrich_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236", "author": "", "orig_id": 1450091}}, {"model": "metainfo.source", "pk": 2571, "fields": {"orig_filename": "Sieger_Eduard_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 237", "author": "", "orig_id": 1450094}}, {"model": "metainfo.source", "pk": 2572, "fields": {"orig_filename": "Sieger_Robert_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450095}}, {"model": "metainfo.source", "pk": 2573, "fields": {"orig_filename": "Sieger_Robert_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450097}}, {"model": "metainfo.source", "pk": 2574, "fields": {"orig_filename": "Sieger_Viktor_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450096}}, {"model": "metainfo.source", "pk": 2575, "fields": {"orig_filename": "Siege_Adolf_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 233f.", "author": "", "orig_id": 1450086}}, {"model": "metainfo.source", "pk": 2576, "fields": {"orig_filename": "Siege_Gustav_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450089}}, {"model": "metainfo.source", "pk": 2577, "fields": {"orig_filename": "Siege_Ignaz_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450087}}, {"model": "metainfo.source", "pk": 2578, "fields": {"orig_filename": "Siege_Josef_1790_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450088}}, {"model": "metainfo.source", "pk": 2579, "fields": {"orig_filename": "Sieghart_Rudolf_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 239", "author": "", "orig_id": 1450098}}, {"model": "metainfo.source", "pk": 2580, "fields": {"orig_filename": "Siegler-Eberswald_Heinrich_1774_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244", "author": "", "orig_id": 1457895}}, {"model": "metainfo.source", "pk": 2581, "fields": {"orig_filename": "Siegler-Eberswald_Ida_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244f.", "author": "", "orig_id": 1427965}}, {"model": "metainfo.source", "pk": 2582, "fields": {"orig_filename": "Siegl_Carl-Ignaz_1802_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 239f.", "author": "", "orig_id": 1450099}}, {"model": "metainfo.source", "pk": 2583, "fields": {"orig_filename": "Siegl_Eduard_1831_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 240", "author": "", "orig_id": 1450100}}, {"model": "metainfo.source", "pk": 2584, "fields": {"orig_filename": "Siegl_Emil_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 240f.", "author": "", "orig_id": 1450150}}, {"model": "metainfo.source", "pk": 2585, "fields": {"orig_filename": "Siegl_Johann_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242", "author": "", "orig_id": 1457821}}, {"model": "metainfo.source", "pk": 2586, "fields": {"orig_filename": "Siegl_Johann_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241", "author": "", "orig_id": 1457819}}, {"model": "metainfo.source", "pk": 2587, "fields": {"orig_filename": "Siegl_Karl_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241f.", "author": "", "orig_id": 1457820}}, {"model": "metainfo.source", "pk": 2588, "fields": {"orig_filename": "Siegl_Karl_1851_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242", "author": "", "orig_id": 1457822}}, {"model": "metainfo.source", "pk": 2589, "fields": {"orig_filename": "Siegl_Max_1856_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242f.", "author": "", "orig_id": 1457823}}, {"model": "metainfo.source", "pk": 2590, "fields": {"orig_filename": "Siegl_Meinrad_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243", "author": "", "orig_id": 1457824}}, {"model": "metainfo.source", "pk": 2591, "fields": {"orig_filename": "Siegl_Richard_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243f.", "author": "", "orig_id": 1457893}}, {"model": "metainfo.source", "pk": 2592, "fields": {"orig_filename": "Siegl_Robert_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243f.", "author": "", "orig_id": 1457892}}, {"model": "metainfo.source", "pk": 2593, "fields": {"orig_filename": "Siegl_Robert_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241", "author": "", "orig_id": 1457818}}, {"model": "metainfo.source", "pk": 2594, "fields": {"orig_filename": "Siegl_Rudolf_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244", "author": "", "orig_id": 1457894}}, {"model": "metainfo.source", "pk": 2595, "fields": {"orig_filename": "Siegmund_Adolf_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245", "author": "", "orig_id": 1457899}}, {"model": "metainfo.source", "pk": 2596, "fields": {"orig_filename": "Siegmund_Anton_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245f.", "author": "", "orig_id": 1457900}}, {"model": "metainfo.source", "pk": 2597, "fields": {"orig_filename": "Siegmund_Ferdinand_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 246", "author": "", "orig_id": 1457902}}, {"model": "metainfo.source", "pk": 2598, "fields": {"orig_filename": "Siegmund_Franz-Florian_1785_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 247", "author": "", "orig_id": 1457906}}, {"model": "metainfo.source", "pk": 2599, "fields": {"orig_filename": "Siegmund_Franz_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 246f.", "author": "", "orig_id": 1457903}}, {"model": "metainfo.source", "pk": 2600, "fields": {"orig_filename": "Siegmund_Gustav_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248f.", "author": "", "orig_id": 1457911}}, {"model": "metainfo.source", "pk": 2601, "fields": {"orig_filename": "Siegmund_Hans_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 247f.", "author": "", "orig_id": 1457908}}, {"model": "metainfo.source", "pk": 2602, "fields": {"orig_filename": "Siegmund_Heinrich_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245f.", "author": "", "orig_id": 1457901}}, {"model": "metainfo.source", "pk": 2603, "fields": {"orig_filename": "Siegmund_Wilhelm_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248", "author": "", "orig_id": 1457909}}, {"model": "metainfo.source", "pk": 2604, "fields": {"orig_filename": "Siegmund_Wilhelm_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248f.", "author": "", "orig_id": 1457910}}, {"model": "metainfo.source", "pk": 2605, "fields": {"orig_filename": "Siegris_Emmerich_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457912}}, {"model": "metainfo.source", "pk": 2606, "fields": {"orig_filename": "Siemianowski_Franciszek-Ksawery_1811_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457914}}, {"model": "metainfo.source", "pk": 2607, "fields": {"orig_filename": "Siemianowski_Maksymilian_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457913}}, {"model": "metainfo.source", "pk": 2608, "fields": {"orig_filename": "Sierakowski_Sebastian_1743_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 250", "author": "", "orig_id": 1457915}}, {"model": "metainfo.source", "pk": 2609, "fields": {"orig_filename": "Sies_Josef-Nikolaus_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 250f.", "author": "", "orig_id": 1457916}}, {"model": "metainfo.source", "pk": 2610, "fields": {"orig_filename": "Sigerus_Emil_1854_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 251", "author": "", "orig_id": 1457981}}, {"model": "metainfo.source", "pk": 2611, "fields": {"orig_filename": "Sigerus_Peter_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 251f.", "author": "", "orig_id": 1457982}}, {"model": "metainfo.source", "pk": 2612, "fields": {"orig_filename": "Sighartner_Anton-Franz_1790_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457983}}, {"model": "metainfo.source", "pk": 2613, "fields": {"orig_filename": "Sighartner_Friedrich_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457984}}, {"model": "metainfo.source", "pk": 2614, "fields": {"orig_filename": "Sighele-Siegenfels_Lorenzo_1761_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457985}}, {"model": "metainfo.source", "pk": 2615, "fields": {"orig_filename": "Sigl_Alfred-Ludwig_1854_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 253", "author": "", "orig_id": 1457986}}, {"model": "metainfo.source", "pk": 2616, "fields": {"orig_filename": "Sigl_Georg_1811_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252f.", "author": "", "orig_id": 1416630}}, {"model": "metainfo.source", "pk": 2617, "fields": {"orig_filename": "Sigl_Josef_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 253f.", "author": "", "orig_id": 1457987}}, {"model": "metainfo.source", "pk": 2618, "fields": {"orig_filename": "Sigmund-Ilanor_Karl-Ludwig_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254f.", "author": "", "orig_id": 1457992}}, {"model": "metainfo.source", "pk": 2619, "fields": {"orig_filename": "Sigmundt_Friedrich_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 255", "author": "", "orig_id": 1457993}}, {"model": "metainfo.source", "pk": 2620, "fields": {"orig_filename": "Sigmundt_Ludwig_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 255", "author": "", "orig_id": 1457994}}, {"model": "metainfo.source", "pk": 2621, "fields": {"orig_filename": "Sigmund_Adolf_1892_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254", "author": "", "orig_id": 1457990}}, {"model": "metainfo.source", "pk": 2622, "fields": {"orig_filename": "Sigmund_Alois_1853_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254", "author": "", "orig_id": 1457991}}, {"model": "metainfo.source", "pk": 2623, "fields": {"orig_filename": "Signoroni_Bartolomeo_1797_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256", "author": "", "orig_id": 1457995}}, {"model": "metainfo.source", "pk": 2624, "fields": {"orig_filename": "Sembratowicz_Joseph_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164", "author": "", "orig_id": 1450647}}, {"model": "metainfo.source", "pk": 2625, "fields": {"orig_filename": "Sembratowicz_Sylvester_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164f.", "author": "", "orig_id": 1450648}}, {"model": "metainfo.source", "pk": 2626, "fields": {"orig_filename": "Sembrich_Marcella_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 165f.", "author": "", "orig_id": 1450649}}, {"model": "metainfo.source", "pk": 2627, "fields": {"orig_filename": "Semeleder_Friedrich-Anton_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 166", "author": "", "orig_id": 1450651}}, {"model": "metainfo.source", "pk": 2628, "fields": {"orig_filename": "Semelrock_Johann-Bapt_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 166f.", "author": "", "orig_id": 1450652}}, {"model": "metainfo.source", "pk": 2629, "fields": {"orig_filename": "Semkowicz_Aleksander_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 167", "author": "", "orig_id": 1450653}}, {"model": "metainfo.source", "pk": 2630, "fields": {"orig_filename": "Semkowicz_Wladyslaw-Jan-Aleksander_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 167f.", "author": "", "orig_id": 1450654}}, {"model": "metainfo.source", "pk": 2631, "fields": {"orig_filename": "Semmelweis_Ignaz-Philipp_1818_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 168f.", "author": "", "orig_id": 1450655}}, {"model": "metainfo.source", "pk": 2632, "fields": {"orig_filename": "Semper_Gottfried_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 169f.", "author": "", "orig_id": 1450656}}, {"model": "metainfo.source", "pk": 2633, "fields": {"orig_filename": "Semper_Hans_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 170", "author": "", "orig_id": 1450657}}, {"model": "metainfo.source", "pk": 2634, "fields": {"orig_filename": "Semsey-Semse_Gustav_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171", "author": "", "orig_id": 1450694}}, {"model": "metainfo.source", "pk": 2635, "fields": {"orig_filename": "Semsey_Andor_1833_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171", "author": "", "orig_id": 1450658}}, {"model": "metainfo.source", "pk": 2636, "fields": {"orig_filename": "Senders_Ernestine_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 172", "author": "", "orig_id": 1450697}}, {"model": "metainfo.source", "pk": 2637, "fields": {"orig_filename": "Senfelder_Leopold_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 172f.", "author": "", "orig_id": 1450698}}, {"model": "metainfo.source", "pk": 2638, "fields": {"orig_filename": "Senfft-Pilsach_Friedrich-Christian-Ludwig_1774_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 173", "author": "", "orig_id": 1450699}}, {"model": "metainfo.source", "pk": 2639, "fields": {"orig_filename": "Senft_Emanuel_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 173f.", "author": "", "orig_id": 1450701}}, {"model": "metainfo.source", "pk": 2640, "fields": {"orig_filename": "Senger_Anton_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 174", "author": "", "orig_id": 1450702}}, {"model": "metainfo.source", "pk": 2641, "fields": {"orig_filename": "Senger_Joseph_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 175", "author": "", "orig_id": 1450703}}, {"model": "metainfo.source", "pk": 2642, "fields": {"orig_filename": "Sengschmitt_Berthold_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 175", "author": "", "orig_id": 1450704}}, {"model": "metainfo.source", "pk": 2643, "fields": {"orig_filename": "Senhofer_Karl_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176", "author": "", "orig_id": 1450705}}, {"model": "metainfo.source", "pk": 2644, "fields": {"orig_filename": "Senitzer_Paul-Maria_1761_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176", "author": "", "orig_id": 1450706}}, {"model": "metainfo.source", "pk": 2645, "fields": {"orig_filename": "Senkowski_Michal-Piotr_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177", "author": "", "orig_id": 1450709}}, {"model": "metainfo.source", "pk": 2646, "fields": {"orig_filename": "Senko_Michal_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176f.", "author": "", "orig_id": 1450707}}, {"model": "metainfo.source", "pk": 2647, "fields": {"orig_filename": "Senner_Joseph-Henry_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 178", "author": "", "orig_id": 1450717}}, {"model": "metainfo.source", "pk": 2648, "fields": {"orig_filename": "Sennholz_Gustav_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 178f.", "author": "", "orig_id": 1450719}}, {"model": "metainfo.source", "pk": 2649, "fields": {"orig_filename": "Sennovitz_Adolf_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 179", "author": "", "orig_id": 1450720}}, {"model": "metainfo.source", "pk": 2650, "fields": {"orig_filename": "Sennyey-Kis-Sennye_Paul_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 179f.", "author": "", "orig_id": 1450722}}, {"model": "metainfo.source", "pk": 2651, "fields": {"orig_filename": "Senn_Franz_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177", "author": "", "orig_id": 1450711}}, {"model": "metainfo.source", "pk": 2652, "fields": {"orig_filename": "Senn_Johann-Chrysostomos_1795_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177f.", "author": "", "orig_id": 1450715}}, {"model": "metainfo.source", "pk": 2653, "fields": {"orig_filename": "Senoa_August_1838_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 180", "author": "", "orig_id": 1450759}}, {"model": "metainfo.source", "pk": 2654, "fields": {"orig_filename": "Senoa_Branko_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 180f.", "author": "", "orig_id": 1450761}}, {"model": "metainfo.source", "pk": 2655, "fields": {"orig_filename": "Senoner_Adolf_1806_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 181", "author": "", "orig_id": 1450762}}, {"model": "metainfo.source", "pk": 2656, "fields": {"orig_filename": "Senyei_Karoly_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 181f.", "author": "", "orig_id": 1450764}}, {"model": "metainfo.source", "pk": 2657, "fields": {"orig_filename": "Sen_Edo_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171f.", "author": "", "orig_id": 1450695}}, {"model": "metainfo.source", "pk": 2658, "fields": {"orig_filename": "Seovaud-Bastide_Friedrich_1759_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182", "author": "", "orig_id": 1450765}}, {"model": "metainfo.source", "pk": 2659, "fields": {"orig_filename": "Sepp_Peter-Damian_1818_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182", "author": "", "orig_id": 1450766}}, {"model": "metainfo.source", "pk": 2660, "fields": {"orig_filename": "Sequens_Franz_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182f.", "author": "", "orig_id": 1450768}}, {"model": "metainfo.source", "pk": 2661, "fields": {"orig_filename": "Seracky_Frantisek_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 183", "author": "", "orig_id": 1450769}}, {"model": "metainfo.source", "pk": 2662, "fields": {"orig_filename": "Serafini_Filippo_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 183f.", "author": "", "orig_id": 1450771}}, {"model": "metainfo.source", "pk": 2663, "fields": {"orig_filename": "Seraphin_Friedrich-Wilhelm_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 184f.", "author": "", "orig_id": 1450772}}, {"model": "metainfo.source", "pk": 2664, "fields": {"orig_filename": "Serassi_Carlo_1777_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185", "author": "", "orig_id": 1450775}}, {"model": "metainfo.source", "pk": 2665, "fields": {"orig_filename": "Serassi_Giuseppe-Il-Giovane_1750_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185", "author": "", "orig_id": 1450773}}, {"model": "metainfo.source", "pk": 2666, "fields": {"orig_filename": "Seredynski_Hipolit-August_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185f.", "author": "", "orig_id": 1450777}}, {"model": "metainfo.source", "pk": 2667, "fields": {"orig_filename": "Seredynski_Wladyslaw_1841_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186", "author": "", "orig_id": 1450779}}, {"model": "metainfo.source", "pk": 2668, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Alois_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186f.", "author": "", "orig_id": 1450813}}, {"model": "metainfo.source", "pk": 2669, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Gabriel_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186f.", "author": "", "orig_id": 1450780}}, {"model": "metainfo.source", "pk": 2670, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Otto-Johann_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 187", "author": "", "orig_id": 1450815}}, {"model": "metainfo.source", "pk": 2671, "fields": {"orig_filename": "Serko_Alfred_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 187f.", "author": "", "orig_id": 1450817}}, {"model": "metainfo.source", "pk": 2672, "fields": {"orig_filename": "Serko_Alfred_1910_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188", "author": "", "orig_id": 1450818}}, {"model": "metainfo.source", "pk": 2673, "fields": {"orig_filename": "Serly_Lajos_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188", "author": "", "orig_id": 1450819}}, {"model": "metainfo.source", "pk": 2674, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Alexandrine_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 189f.", "author": "", "orig_id": 1450824}}, {"model": "metainfo.source", "pk": 2675, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Karl-Johann-Peter_1793_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188f.", "author": "", "orig_id": 1450821}}, {"model": "metainfo.source", "pk": 2676, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Richard_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 189f.", "author": "", "orig_id": 1450822}}, {"model": "metainfo.source", "pk": 2677, "fields": {"orig_filename": "Sernec_Janko_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 190", "author": "", "orig_id": 1450826}}, {"model": "metainfo.source", "pk": 2678, "fields": {"orig_filename": "Sernec_Josip_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 190", "author": "", "orig_id": 1450827}}, {"model": "metainfo.source", "pk": 2679, "fields": {"orig_filename": "Serner_Walter_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 191", "author": "", "orig_id": 1450829}}, {"model": "metainfo.source", "pk": 2680, "fields": {"orig_filename": "Serravallo_Vittorio_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 191f.", "author": "", "orig_id": 1450831}}, {"model": "metainfo.source", "pk": 2681, "fields": {"orig_filename": "Serres-Wieczffinski_August_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 192", "author": "", "orig_id": 1450832}}, {"model": "metainfo.source", "pk": 2682, "fields": {"orig_filename": "Sersawy_Viktor_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 192f.", "author": "", "orig_id": 1450875}}, {"model": "metainfo.source", "pk": 2683, "fields": {"orig_filename": "Servaes_Franz_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 193", "author": "", "orig_id": 1450876}}, {"model": "metainfo.source", "pk": 2684, "fields": {"orig_filename": "Serwaczynski_Stanislaw_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 193f.", "author": "", "orig_id": 1450877}}, {"model": "metainfo.source", "pk": 2685, "fields": {"orig_filename": "Serwatowski_Ladislaus_1873_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194", "author": "", "orig_id": 1450879}}, {"model": "metainfo.source", "pk": 2686, "fields": {"orig_filename": "Serwatowski_Theodor-Alfred_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194", "author": "", "orig_id": 1450878}}, {"model": "metainfo.source", "pk": 2687, "fields": {"orig_filename": "Serwatowski_Walerian_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194f.", "author": "", "orig_id": 1450880}}, {"model": "metainfo.source", "pk": 2688, "fields": {"orig_filename": "Sessler-Herzinger_Viktor-Felix_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195f.", "author": "", "orig_id": 1450883}}, {"model": "metainfo.source", "pk": 2689, "fields": {"orig_filename": "Sessler_Josef_1763_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195", "author": "", "orig_id": 1450881}}, {"model": "metainfo.source", "pk": 2690, "fields": {"orig_filename": "Sessler_Max_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195", "author": "", "orig_id": 1450882}}, {"model": "metainfo.source", "pk": 2691, "fields": {"orig_filename": "Sestan_Ada_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 196f.", "author": "", "orig_id": 1450885}}, {"model": "metainfo.source", "pk": 2692, "fields": {"orig_filename": "Setzer_Franz-Xaver_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198", "author": "", "orig_id": 1450888}}, {"model": "metainfo.source", "pk": 2693, "fields": {"orig_filename": "Setznagel_Alexander_1801_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198", "author": "", "orig_id": 1450889}}, {"model": "metainfo.source", "pk": 2694, "fields": {"orig_filename": "Setz_Friedrich_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197f.", "author": "", "orig_id": 1450887}}, {"model": "metainfo.source", "pk": 2695, "fields": {"orig_filename": "Seuffert_Eduard_1819_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 199f.", "author": "", "orig_id": 1450891}}, {"model": "metainfo.source", "pk": 2696, "fields": {"orig_filename": "Seuffert_Franz-Martin_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200", "author": "", "orig_id": 1450892}}, {"model": "metainfo.source", "pk": 2697, "fields": {"orig_filename": "Seutter-Loetzen_Carl-Friedrich_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200f.", "author": "", "orig_id": 1450893}}, {"model": "metainfo.source", "pk": 2698, "fields": {"orig_filename": "Seutter-Loetzen_Eduard_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201", "author": "", "orig_id": 1450895}}, {"model": "metainfo.source", "pk": 2699, "fields": {"orig_filename": "Seutter-Loetzen_Hermann_1863_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200f.", "author": "", "orig_id": 1450894}}, {"model": "metainfo.source", "pk": 2700, "fields": {"orig_filename": "Seutter-Loetzen_Johann-Konrad_1864_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201f.", "author": "", "orig_id": 1450897}}, {"model": "metainfo.source", "pk": 2701, "fields": {"orig_filename": "Seutter-Loetzen_Ruediger_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201f.", "author": "", "orig_id": 1450896}}, {"model": "metainfo.source", "pk": 2702, "fields": {"orig_filename": "Sevcik_Frantisek_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 202", "author": "", "orig_id": 1450898}}, {"model": "metainfo.source", "pk": 2703, "fields": {"orig_filename": "Sevcik_Franz-Friedrich_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 202f.", "author": "", "orig_id": 1450899}}, {"model": "metainfo.source", "pk": 2704, "fields": {"orig_filename": "Sevcik_Otakar_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 203", "author": "", "orig_id": 1450943}}, {"model": "metainfo.source", "pk": 2705, "fields": {"orig_filename": "Sever_Albert_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 203f.", "author": "", "orig_id": 1450944}}, {"model": "metainfo.source", "pk": 2706, "fields": {"orig_filename": "Seybel_Emil_1816_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 204f.", "author": "", "orig_id": 1450946}}, {"model": "metainfo.source", "pk": 2707, "fields": {"orig_filename": "Seybel_Otto_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450947}}, {"model": "metainfo.source", "pk": 2708, "fields": {"orig_filename": "Seybel_Paul_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450948}}, {"model": "metainfo.source", "pk": 2709, "fields": {"orig_filename": "Seyczek_Lorenz_1798_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450949}}, {"model": "metainfo.source", "pk": 2710, "fields": {"orig_filename": "Seydelmann_Armin_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205f.", "author": "", "orig_id": 1450950}}, {"model": "metainfo.source", "pk": 2711, "fields": {"orig_filename": "Seydelmann_Susanne_1884_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205f.", "author": "", "orig_id": 1450951}}, {"model": "metainfo.source", "pk": 2712, "fields": {"orig_filename": "Seydler_Anton_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 207f.", "author": "", "orig_id": 1450955}}, {"model": "metainfo.source", "pk": 2713, "fields": {"orig_filename": "Seydler_August-Johann-Friedrich_1849_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 206f.", "author": "", "orig_id": 1450953}}, {"model": "metainfo.source", "pk": 2714, "fields": {"orig_filename": "Seydler_Ludwig-Carl_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 207f.", "author": "", "orig_id": 1450954}}, {"model": "metainfo.source", "pk": 2715, "fields": {"orig_filename": "Seydl_Jenoe_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 206", "author": "", "orig_id": 1450952}}, {"model": "metainfo.source", "pk": 2716, "fields": {"orig_filename": "Seyfarth_Gustaw_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208", "author": "", "orig_id": 1450956}}, {"model": "metainfo.source", "pk": 2717, "fields": {"orig_filename": "Seyfert_Bernhard_1817_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208", "author": "", "orig_id": 1450957}}, {"model": "metainfo.source", "pk": 2718, "fields": {"orig_filename": "Seyffertitz_Carl-Maria-Josef-Leopold_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208f.", "author": "", "orig_id": 1450958}}, {"model": "metainfo.source", "pk": 2719, "fields": {"orig_filename": "Seyfried_Ferdinand_1811_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210", "author": "", "orig_id": 1450961}}, {"model": "metainfo.source", "pk": 2720, "fields": {"orig_filename": "Seyfried_Ignaz_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 209f.", "author": "", "orig_id": 1450959}}, {"model": "metainfo.source", "pk": 2721, "fields": {"orig_filename": "Seyfried_Josef_1780_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210", "author": "", "orig_id": 1450960}}, {"model": "metainfo.source", "pk": 2722, "fields": {"orig_filename": "Seykora_Hugo_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435769}}, {"model": "metainfo.source", "pk": 2723, "fields": {"orig_filename": "Segvic_Matej-Marin_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114", "author": "", "orig_id": 1439477}}, {"model": "metainfo.source", "pk": 2724, "fields": {"orig_filename": "Seibt-Ringenhart_Gottfried_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 115f.", "author": "", "orig_id": 1439480}}, {"model": "metainfo.source", "pk": 2725, "fields": {"orig_filename": "Seib_Wilhelm_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 115", "author": "", "orig_id": 1439479}}, {"model": "metainfo.source", "pk": 2726, "fields": {"orig_filename": "Seidan_Thomas_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116", "author": "", "orig_id": 1439481}}, {"model": "metainfo.source", "pk": 2727, "fields": {"orig_filename": "Seidan_Wenzel_1817_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116", "author": "", "orig_id": 1439482}}, {"model": "metainfo.source", "pk": 2728, "fields": {"orig_filename": "Seidel_Gustav_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116f.", "author": "", "orig_id": 1439483}}, {"model": "metainfo.source", "pk": 2729, "fields": {"orig_filename": "Seidel_Ludwig-Wilhelm_1802_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117", "author": "", "orig_id": 1439484}}, {"model": "metainfo.source", "pk": 2730, "fields": {"orig_filename": "Seidel_Ludwig_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117", "author": "", "orig_id": 1439485}}, {"model": "metainfo.source", "pk": 2731, "fields": {"orig_filename": "Seidel_Moriz_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117f.", "author": "", "orig_id": 1439486}}, {"model": "metainfo.source", "pk": 2732, "fields": {"orig_filename": "Seidensacher_Karl_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 118", "author": "", "orig_id": 1439487}}, {"model": "metainfo.source", "pk": 2733, "fields": {"orig_filename": "Seidl-Hohenveldern_Eduard_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129", "author": "", "orig_id": 1451511}}, {"model": "metainfo.source", "pk": 2734, "fields": {"orig_filename": "Seidl-Kraus_Auguste_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 119f.", "author": "", "orig_id": 1439542}}, {"model": "metainfo.source", "pk": 2735, "fields": {"orig_filename": "Seidler-Feuchtenegg_Ernst_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 131f.", "author": "", "orig_id": 1451515}}, {"model": "metainfo.source", "pk": 2736, "fields": {"orig_filename": "Seidler-Wranitzky_Karoline_1790_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 132", "author": "", "orig_id": 1451517}}, {"model": "metainfo.source", "pk": 2737, "fields": {"orig_filename": "Seidler_Adolf_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129f.", "author": "", "orig_id": 1451512}}, {"model": "metainfo.source", "pk": 2738, "fields": {"orig_filename": "Seidler_Friedrich-Johann_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 130", "author": "", "orig_id": 1451513}}, {"model": "metainfo.source", "pk": 2739, "fields": {"orig_filename": "Seidler_Gustav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 130f.", "author": "", "orig_id": 1451514}}, {"model": "metainfo.source", "pk": 2740, "fields": {"orig_filename": "Seidlitz_Julius_1814_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 132f.", "author": "", "orig_id": 1451518}}, {"model": "metainfo.source", "pk": 2741, "fields": {"orig_filename": "Seidl_Adolf-L_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 118f.", "author": "", "orig_id": 1439540}}, {"model": "metainfo.source", "pk": 2742, "fields": {"orig_filename": "Seidl_Anton_1850_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 119f.", "author": "", "orig_id": 1439541}}, {"model": "metainfo.source", "pk": 2743, "fields": {"orig_filename": "Seidl_Carl_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 120", "author": "", "orig_id": 1439544}}, {"model": "metainfo.source", "pk": 2744, "fields": {"orig_filename": "Seidl_Emanuel_1815_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121", "author": "", "orig_id": 1451440}}, {"model": "metainfo.source", "pk": 2745, "fields": {"orig_filename": "Seidl_Ferdinand_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121", "author": "", "orig_id": 1451441}}, {"model": "metainfo.source", "pk": 2746, "fields": {"orig_filename": "Seidl_Ferdo_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121f.", "author": "", "orig_id": 1451442}}, {"model": "metainfo.source", "pk": 2747, "fields": {"orig_filename": "Seidl_Franz_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 122", "author": "", "orig_id": 1451443}}, {"model": "metainfo.source", "pk": 2748, "fields": {"orig_filename": "Seidl_Ignaz_1788_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123", "author": "", "orig_id": 1451445}}, {"model": "metainfo.source", "pk": 2749, "fields": {"orig_filename": "Seidl_Ignaz_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 122f.", "author": "", "orig_id": 1451444}}, {"model": "metainfo.source", "pk": 2750, "fields": {"orig_filename": "Seidl_Ignaz_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123f.", "author": "", "orig_id": 1451446}}, {"model": "metainfo.source", "pk": 2751, "fields": {"orig_filename": "Seidl_Ignaz_1883_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123f.", "author": "", "orig_id": 1451447}}, {"model": "metainfo.source", "pk": 2752, "fields": {"orig_filename": "Seidl_Johann-Gabriel_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 124f.", "author": "", "orig_id": 1451448}}, {"model": "metainfo.source", "pk": 2753, "fields": {"orig_filename": "Seidl_Karl_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 125", "author": "", "orig_id": 1451502}}, {"model": "metainfo.source", "pk": 2754, "fields": {"orig_filename": "Seidl_Kurt_1902_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 125f.", "author": "", "orig_id": 1451503}}, {"model": "metainfo.source", "pk": 2755, "fields": {"orig_filename": "Seidl_Max_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126", "author": "", "orig_id": 1451504}}, {"model": "metainfo.source", "pk": 2756, "fields": {"orig_filename": "Seidl_Michael_1767_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126", "author": "", "orig_id": 1451505}}, {"model": "metainfo.source", "pk": 2757, "fields": {"orig_filename": "Seidl_Siegfried_1911_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126f.", "author": "", "orig_id": 1451506}}, {"model": "metainfo.source", "pk": 2758, "fields": {"orig_filename": "Seidl_Walter_1905_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 127f.", "author": "", "orig_id": 1451507}}, {"model": "metainfo.source", "pk": 2759, "fields": {"orig_filename": "Seidl_Wenzel-Benno_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 128f.", "author": "", "orig_id": 1451509}}, {"model": "metainfo.source", "pk": 2760, "fields": {"orig_filename": "Seidl_Wenzel_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 128", "author": "", "orig_id": 1451508}}, {"model": "metainfo.source", "pk": 2761, "fields": {"orig_filename": "Seidl_Werner_1914_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129", "author": "", "orig_id": 1451510}}, {"model": "metainfo.source", "pk": 2762, "fields": {"orig_filename": "Seidmann_Karl_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 133", "author": "", "orig_id": 1451520}}, {"model": "metainfo.source", "pk": 2763, "fields": {"orig_filename": "Seidner_Wilhelm_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134", "author": "", "orig_id": 1451521}}, {"model": "metainfo.source", "pk": 2764, "fields": {"orig_filename": "Seifert_Adolf_1826_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134f.", "author": "", "orig_id": 1451523}}, {"model": "metainfo.source", "pk": 2765, "fields": {"orig_filename": "Seifert_Adolf_1902_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 135", "author": "", "orig_id": 1451524}}, {"model": "metainfo.source", "pk": 2766, "fields": {"orig_filename": "Seifert_Alfred_1850_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 135f.", "author": "", "orig_id": 1451525}}, {"model": "metainfo.source", "pk": 2767, "fields": {"orig_filename": "Seifert_Anton_1826_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136", "author": "", "orig_id": 1451526}}, {"model": "metainfo.source", "pk": 2768, "fields": {"orig_filename": "Seifert_Jakub_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136f.", "author": "", "orig_id": 1451527}}, {"model": "metainfo.source", "pk": 2769, "fields": {"orig_filename": "Seifert_Johann_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 137", "author": "", "orig_id": 1451575}}, {"model": "metainfo.source", "pk": 2770, "fields": {"orig_filename": "Seifert_Josef_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 137f.", "author": "", "orig_id": 1451576}}, {"model": "metainfo.source", "pk": 2771, "fields": {"orig_filename": "Seifert_Joseph_1808_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 138", "author": "", "orig_id": 1451577}}, {"model": "metainfo.source", "pk": 2772, "fields": {"orig_filename": "Seifert_Wenzel_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 138f.", "author": "", "orig_id": 1451578}}, {"model": "metainfo.source", "pk": 2773, "fields": {"orig_filename": "Seifman_Piotr-Stefan_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 139", "author": "", "orig_id": 1451579}}, {"model": "metainfo.source", "pk": 2774, "fields": {"orig_filename": "Seif_Theodor_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134", "author": "", "orig_id": 1451522}}, {"model": "metainfo.source", "pk": 2775, "fields": {"orig_filename": "Seigerschmied_Jozef_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 139f.", "author": "", "orig_id": 1451580}}, {"model": "metainfo.source", "pk": 2776, "fields": {"orig_filename": "Seilern-Aspang_Karl-Maximilian_1825_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451581}}, {"model": "metainfo.source", "pk": 2777, "fields": {"orig_filename": "Seiller_Alois_1833_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451582}}, {"model": "metainfo.source", "pk": 2778, "fields": {"orig_filename": "Seiller_Ernst-Kaspar_1870_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451583}}, {"model": "metainfo.source", "pk": 2779, "fields": {"orig_filename": "Seiller_Johann-Kaspar_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140f.", "author": "", "orig_id": 1451584}}, {"model": "metainfo.source", "pk": 2780, "fields": {"orig_filename": "Seiner_Franz-Josef_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 141f.", "author": "", "orig_id": 1451585}}, {"model": "metainfo.source", "pk": 2781, "fields": {"orig_filename": "Seipelt_Josepha_1815_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144", "author": "", "orig_id": 1451588}}, {"model": "metainfo.source", "pk": 2782, "fields": {"orig_filename": "Seipelt_Joseph_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 143f.", "author": "", "orig_id": 1451587}}, {"model": "metainfo.source", "pk": 2783, "fields": {"orig_filename": "Seipel_Ignaz_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 142f.", "author": "", "orig_id": 1451586}}, {"model": "metainfo.source", "pk": 2784, "fields": {"orig_filename": "Seipka_Adolf_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144", "author": "", "orig_id": 1451589}}, {"model": "metainfo.source", "pk": 2785, "fields": {"orig_filename": "Seisl_Johann_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144f.", "author": "", "orig_id": 1451590}}, {"model": "metainfo.source", "pk": 2786, "fields": {"orig_filename": "Seismit-Doda_Federico_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145", "author": "", "orig_id": 1451591}}, {"model": "metainfo.source", "pk": 2787, "fields": {"orig_filename": "Seismit-Doda_Luigi_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145", "author": "", "orig_id": 1451592}}, {"model": "metainfo.source", "pk": 2788, "fields": {"orig_filename": "Seitner_Moritz_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145f.", "author": "", "orig_id": 1451593}}, {"model": "metainfo.source", "pk": 2789, "fields": {"orig_filename": "Seitz-Treffen_Heinrich_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147", "author": "", "orig_id": 1451595}}, {"model": "metainfo.source", "pk": 2790, "fields": {"orig_filename": "Seitz_Karl_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 146f.", "author": "", "orig_id": 1451594}}, {"model": "metainfo.source", "pk": 2791, "fields": {"orig_filename": "Seivert_Gustav_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147", "author": "", "orig_id": 1451596}}, {"model": "metainfo.source", "pk": 2792, "fields": {"orig_filename": "Sejnost_Josef_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147f.", "author": "", "orig_id": 1451597}}, {"model": "metainfo.source", "pk": 2793, "fields": {"orig_filename": "Seka_Reinhard_1898_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 148", "author": "", "orig_id": 1451637}}, {"model": "metainfo.source", "pk": 2794, "fields": {"orig_filename": "Sekera_Wenzel-Johann_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 148f.", "author": "", "orig_id": 1451638}}, {"model": "metainfo.source", "pk": 2795, "fields": {"orig_filename": "Sekker_Franz_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 149", "author": "", "orig_id": 1451639}}, {"model": "metainfo.source", "pk": 2796, "fields": {"orig_filename": "Sekyra_Josef_1812_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 149f.", "author": "", "orig_id": 1451640}}, {"model": "metainfo.source", "pk": 2797, "fields": {"orig_filename": "Selb_Josef-Anton_1784_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 150", "author": "", "orig_id": 1451641}}, {"model": "metainfo.source", "pk": 2798, "fields": {"orig_filename": "Selb_Karl_1760_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 150f.", "author": "", "orig_id": 1451642}}, {"model": "metainfo.source", "pk": 2799, "fields": {"orig_filename": "Selch_Emerich_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 151", "author": "", "orig_id": 1451643}}, {"model": "metainfo.source", "pk": 2800, "fields": {"orig_filename": "Seleskowitz_Louise_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 151f.", "author": "", "orig_id": 1451644}}, {"model": "metainfo.source", "pk": 2801, "fields": {"orig_filename": "Seliger_Josef_1870_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 152", "author": "", "orig_id": 1451645}}, {"model": "metainfo.source", "pk": 2802, "fields": {"orig_filename": "Seligmann_Adalbert-Franz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 152f.", "author": "", "orig_id": 1451646}}, {"model": "metainfo.source", "pk": 2803, "fields": {"orig_filename": "Seligmann_Berthold_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153", "author": "", "orig_id": 1451647}}, {"model": "metainfo.source", "pk": 2804, "fields": {"orig_filename": "Seligmann_Franz-Romeo_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 154f.", "author": "", "orig_id": 1451650}}, {"model": "metainfo.source", "pk": 2805, "fields": {"orig_filename": "Seligmann_Franz_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153f.", "author": "", "orig_id": 1451649}}, {"model": "metainfo.source", "pk": 2806, "fields": {"orig_filename": "Seligmann_Julius_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153", "author": "", "orig_id": 1451648}}, {"model": "metainfo.source", "pk": 2807, "fields": {"orig_filename": "Seligmann_Leopold_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 155", "author": "", "orig_id": 1451651}}, {"model": "metainfo.source", "pk": 2808, "fields": {"orig_filename": "Selim_Josma_1884_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 155f.", "author": "", "orig_id": 1451653}}, {"model": "metainfo.source", "pk": 2809, "fields": {"orig_filename": "Selinger_Engelbert-Maximilian_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 156f.", "author": "", "orig_id": 1451656}}, {"model": "metainfo.source", "pk": 2810, "fields": {"orig_filename": "Seling_Emil_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 156", "author": "", "orig_id": 1451655}}, {"model": "metainfo.source", "pk": 2811, "fields": {"orig_filename": "Seljan_Mirko_1871_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157", "author": "", "orig_id": 1451658}}, {"model": "metainfo.source", "pk": 2812, "fields": {"orig_filename": "Seljan_Stjepan_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157", "author": "", "orig_id": 1451659}}, {"model": "metainfo.source", "pk": 2813, "fields": {"orig_filename": "Sellemond_Peter_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 158", "author": "", "orig_id": 1451661}}, {"model": "metainfo.source", "pk": 2814, "fields": {"orig_filename": "Sellenati_Hans_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 158f.", "author": "", "orig_id": 1450633}}, {"model": "metainfo.source", "pk": 2815, "fields": {"orig_filename": "Sellenati_Mathilde_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 159", "author": "", "orig_id": 1450634}}, {"model": "metainfo.source", "pk": 2816, "fields": {"orig_filename": "Selleny_Joseph_1824_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 159f.", "author": "", "orig_id": 1450637}}, {"model": "metainfo.source", "pk": 2817, "fields": {"orig_filename": "Selle_Friedrich_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157f.", "author": "", "orig_id": 1451660}}, {"model": "metainfo.source", "pk": 2818, "fields": {"orig_filename": "Sellmann_Franz-Seraph_1747_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 160", "author": "", "orig_id": 1450638}}, {"model": "metainfo.source", "pk": 2819, "fields": {"orig_filename": "Sellner_Joseph_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 160f.", "author": "", "orig_id": 1450639}}, {"model": "metainfo.source", "pk": 2820, "fields": {"orig_filename": "Seltsam_Ferdinand_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 161", "author": "", "orig_id": 1450640}}, {"model": "metainfo.source", "pk": 2821, "fields": {"orig_filename": "Selvatico_Pietro-Estense_1803_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 162f.", "author": "", "orig_id": 1450642}}, {"model": "metainfo.source", "pk": 2822, "fields": {"orig_filename": "Selva_Giovanni-Antonio_1751_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 161f.", "author": "", "orig_id": 1450641}}, {"model": "metainfo.source", "pk": 2823, "fields": {"orig_filename": "Sembera_Alois-Vojtech_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 163f.", "author": "", "orig_id": 1450643}}, {"model": "metainfo.source", "pk": 2824, "fields": {"orig_filename": "Sembera_Joseph_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164", "author": "", "orig_id": 1450645}}, {"model": "metainfo.source", "pk": 2825, "fields": {"orig_filename": "Semberova_Zdenka_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 163", "author": "", "orig_id": 1450644}}, {"model": "metainfo.source", "pk": 2826, "fields": {"orig_filename": "Schwing_Karel_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 63f.", "author": "", "orig_id": 1440108}}, {"model": "metainfo.source", "pk": 2827, "fields": {"orig_filename": "Schwinner_Josef_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 64f.", "author": "", "orig_id": 1440111}}, {"model": "metainfo.source", "pk": 2828, "fields": {"orig_filename": "Schwippel_Karl_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 65", "author": "", "orig_id": 1440112}}, {"model": "metainfo.source", "pk": 2829, "fields": {"orig_filename": "Schwitzer_Basilius_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 65f.", "author": "", "orig_id": 1440113}}, {"model": "metainfo.source", "pk": 2830, "fields": {"orig_filename": "Schwitzer_Berthold_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66", "author": "", "orig_id": 1440115}}, {"model": "metainfo.source", "pk": 2831, "fields": {"orig_filename": "Schwoy_Franz-Xaver_1783_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66f.", "author": "", "orig_id": 1440117}}, {"model": "metainfo.source", "pk": 2832, "fields": {"orig_filename": "Scitovsky-Nagy-Ker_Johann-Baptist_1795_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 67", "author": "", "orig_id": 1440118}}, {"model": "metainfo.source", "pk": 2833, "fields": {"orig_filename": "Scolik_Charles_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 67f.", "author": "", "orig_id": 1440120}}, {"model": "metainfo.source", "pk": 2834, "fields": {"orig_filename": "Scomparini_Eugenio_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 68f.", "author": "", "orig_id": 1440122}}, {"model": "metainfo.source", "pk": 2835, "fields": {"orig_filename": "Scopinich-Kuestenhort_Johann-Anton_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69", "author": "", "orig_id": 1440123}}, {"model": "metainfo.source", "pk": 2836, "fields": {"orig_filename": "Scrinzi-Montecroce_Giovanni-Battista_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69", "author": "", "orig_id": 1440125}}, {"model": "metainfo.source", "pk": 2837, "fields": {"orig_filename": "Scudier_Anton_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69f.", "author": "", "orig_id": 1440127}}, {"model": "metainfo.source", "pk": 2838, "fields": {"orig_filename": "Scurat_Vasyl_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 70", "author": "", "orig_id": 1440128}}, {"model": "metainfo.source", "pk": 2839, "fields": {"orig_filename": "Scutta_Andreas_1806_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 70f.", "author": "", "orig_id": 1440167}}, {"model": "metainfo.source", "pk": 2840, "fields": {"orig_filename": "Scutta_Josefine_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 71f.", "author": "", "orig_id": 1440168}}, {"model": "metainfo.source", "pk": 2841, "fields": {"orig_filename": "Seback_Vinzenz_1805_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 72", "author": "", "orig_id": 1440169}}, {"model": "metainfo.source", "pk": 2842, "fields": {"orig_filename": "Seberini_Andreas_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75", "author": "", "orig_id": 1440183}}, {"model": "metainfo.source", "pk": 2843, "fields": {"orig_filename": "Seberini_Gustav-Adolf_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 72f.", "author": "", "orig_id": 1440175}}, {"model": "metainfo.source", "pk": 2844, "fields": {"orig_filename": "Seberini_Johann-Michael_1825_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 74", "author": "", "orig_id": 1440181}}, {"model": "metainfo.source", "pk": 2845, "fields": {"orig_filename": "Seberini_Johann_1780_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 73f.", "author": "", "orig_id": 1440179}}, {"model": "metainfo.source", "pk": 2846, "fields": {"orig_filename": "Seberini_Ludwig-Sigmund_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 73", "author": "", "orig_id": 1440176}}, {"model": "metainfo.source", "pk": 2847, "fields": {"orig_filename": "Seberini_Ludwig_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 74f.", "author": "", "orig_id": 1440182}}, {"model": "metainfo.source", "pk": 2848, "fields": {"orig_filename": "Sebesta_Milos_1883_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75", "author": "", "orig_id": 1440233}}, {"model": "metainfo.source", "pk": 2849, "fields": {"orig_filename": "Sebesta_Vojtech_1844_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75f.", "author": "", "orig_id": 1440235}}, {"model": "metainfo.source", "pk": 2850, "fields": {"orig_filename": "Sebestyen_Gyula_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76", "author": "", "orig_id": 1440236}}, {"model": "metainfo.source", "pk": 2851, "fields": {"orig_filename": "Sebor_Josef_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76", "author": "", "orig_id": 1440238}}, {"model": "metainfo.source", "pk": 2852, "fields": {"orig_filename": "Sebor_Karel-Richard_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76f.", "author": "", "orig_id": 1440239}}, {"model": "metainfo.source", "pk": 2853, "fields": {"orig_filename": "Sebottendorf-Rose_Franz-Ludwig_1741_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 77f.", "author": "", "orig_id": 1440242}}, {"model": "metainfo.source", "pk": 2854, "fields": {"orig_filename": "Sebottendorf-Rose_Karl-Philipp_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 77f.", "author": "", "orig_id": 1440241}}, {"model": "metainfo.source", "pk": 2855, "fields": {"orig_filename": "Sebottendorf-Rose_Moritz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78", "author": "", "orig_id": 1440246}}, {"model": "metainfo.source", "pk": 2856, "fields": {"orig_filename": "Secco-Suardo_Gerolamo_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78f.", "author": "", "orig_id": 1439252}}, {"model": "metainfo.source", "pk": 2857, "fields": {"orig_filename": "Secco_Andrea_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78", "author": "", "orig_id": 1439251}}, {"model": "metainfo.source", "pk": 2858, "fields": {"orig_filename": "Sechter_Eduard-Engelbert_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 80", "author": "", "orig_id": 1439255}}, {"model": "metainfo.source", "pk": 2859, "fields": {"orig_filename": "Sechter_Simon_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 79f.", "author": "", "orig_id": 1439254}}, {"model": "metainfo.source", "pk": 2860, "fields": {"orig_filename": "Seckendorff-Gudent_Arthur_1845_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 80f.", "author": "", "orig_id": 1439257}}, {"model": "metainfo.source", "pk": 2861, "fields": {"orig_filename": "Secky_Franz_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 81", "author": "", "orig_id": 1439258}}, {"model": "metainfo.source", "pk": 2862, "fields": {"orig_filename": "Sedej_Francisek-Borgia_1854_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 81f.", "author": "", "orig_id": 1439259}}, {"model": "metainfo.source", "pk": 2863, "fields": {"orig_filename": "Sedelmaier_Maria-Johanna_1811_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 82f.", "author": "", "orig_id": 1439260}}, {"model": "metainfo.source", "pk": 2864, "fields": {"orig_filename": "Sederl_Josef_1813_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 83", "author": "", "orig_id": 1439261}}, {"model": "metainfo.source", "pk": 2865, "fields": {"orig_filename": "Sedlacek_August_1843_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 83f.", "author": "", "orig_id": 1439262}}, {"model": "metainfo.source", "pk": 2866, "fields": {"orig_filename": "Sedlacek_Ernestus_1796_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86", "author": "", "orig_id": 1439268}}, {"model": "metainfo.source", "pk": 2867, "fields": {"orig_filename": "Sedlacek_Franz-August_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 84", "author": "", "orig_id": 1439264}}, {"model": "metainfo.source", "pk": 2868, "fields": {"orig_filename": "Sedlacek_Jaroslav_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 84f.", "author": "", "orig_id": 1439265}}, {"model": "metainfo.source", "pk": 2869, "fields": {"orig_filename": "Sedlacek_Josef-Vojtech_1785_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 85", "author": "", "orig_id": 1439266}}, {"model": "metainfo.source", "pk": 2870, "fields": {"orig_filename": "Sedlacek_Wilhelm-Ludwig_1793_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 85f.", "author": "", "orig_id": 1439267}}, {"model": "metainfo.source", "pk": 2871, "fields": {"orig_filename": "Sedlaczek-Harkenfeld_Johann-Nepomuk_1759_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 87f.", "author": "", "orig_id": 1439272}}, {"model": "metainfo.source", "pk": 2872, "fields": {"orig_filename": "Sedlaczek_Emil-Maria_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86", "author": "", "orig_id": 1439269}}, {"model": "metainfo.source", "pk": 2873, "fields": {"orig_filename": "Sedlaczek_Stephan_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86f.", "author": "", "orig_id": 1439270}}, {"model": "metainfo.source", "pk": 2874, "fields": {"orig_filename": "Sedlaczek_Walter_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 87", "author": "", "orig_id": 1439271}}, {"model": "metainfo.source", "pk": 2875, "fields": {"orig_filename": "Sedlak_Hanns_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 88", "author": "", "orig_id": 1439273}}, {"model": "metainfo.source", "pk": 2876, "fields": {"orig_filename": "Sedlak_Jan_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 88f.", "author": "", "orig_id": 1439274}}, {"model": "metainfo.source", "pk": 2877, "fields": {"orig_filename": "Sedlak_Johann-Nepomuk_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 89f.", "author": "", "orig_id": 1439318}}, {"model": "metainfo.source", "pk": 2878, "fields": {"orig_filename": "Sedlak_Johann_1820_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 89", "author": "", "orig_id": 1439317}}, {"model": "metainfo.source", "pk": 2879, "fields": {"orig_filename": "Sedlak_Karl_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90", "author": "", "orig_id": 1439319}}, {"model": "metainfo.source", "pk": 2880, "fields": {"orig_filename": "Sedlak_Rudolf_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90", "author": "", "orig_id": 1439320}}, {"model": "metainfo.source", "pk": 2881, "fields": {"orig_filename": "Sedlak_Wenzel_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90f.", "author": "", "orig_id": 1439321}}, {"model": "metainfo.source", "pk": 2882, "fields": {"orig_filename": "Sedlitzky_Wenzel-Adalbert_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 91f.", "author": "", "orig_id": 1439323}}, {"model": "metainfo.source", "pk": 2883, "fields": {"orig_filename": "Sedlmayer_Heinrich-Stephan_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92", "author": "", "orig_id": 1439324}}, {"model": "metainfo.source", "pk": 2884, "fields": {"orig_filename": "Sedlmayer_Wilhelm_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92", "author": "", "orig_id": 1439325}}, {"model": "metainfo.source", "pk": 2885, "fields": {"orig_filename": "Sedlmayr_Ernst-Conrad_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92f.", "author": "", "orig_id": 1439326}}, {"model": "metainfo.source", "pk": 2886, "fields": {"orig_filename": "Sedlnitzky-Choltitz_Josef_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 93f.", "author": "", "orig_id": 1439327}}, {"model": "metainfo.source", "pk": 2887, "fields": {"orig_filename": "Sedlnitzky-Odrowas-Choltic_Stanislaus_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 94", "author": "", "orig_id": 1439328}}, {"model": "metainfo.source", "pk": 2888, "fields": {"orig_filename": "Sedlnitzky-Odrowaz-Choltitz_Leopold_1787_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 94f.", "author": "", "orig_id": 1439329}}, {"model": "metainfo.source", "pk": 2889, "fields": {"orig_filename": "Seeauer_Wilhelm-Desiderius_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 95", "author": "", "orig_id": 1439330}}, {"model": "metainfo.source", "pk": 2890, "fields": {"orig_filename": "Seebacher_Johann_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 95f.", "author": "", "orig_id": 1439332}}, {"model": "metainfo.source", "pk": 2891, "fields": {"orig_filename": "Seeber_Joseph_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 96", "author": "", "orig_id": 1439333}}, {"model": "metainfo.source", "pk": 2892, "fields": {"orig_filename": "Seeboeck_Philibert_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 96f.", "author": "", "orig_id": 1439334}}, {"model": "metainfo.source", "pk": 2893, "fields": {"orig_filename": "Seefelder_Richard_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 98", "author": "", "orig_id": 1439336}}, {"model": "metainfo.source", "pk": 2894, "fields": {"orig_filename": "Seefeldner_Oskar_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 98f.", "author": "", "orig_id": 1439337}}, {"model": "metainfo.source", "pk": 2895, "fields": {"orig_filename": "Seegen_Joseph_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 99", "author": "", "orig_id": 1439338}}, {"model": "metainfo.source", "pk": 2896, "fields": {"orig_filename": "Seeger_Ludwig-Eduard_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 100", "author": "", "orig_id": 1439340}}, {"model": "metainfo.source", "pk": 2897, "fields": {"orig_filename": "Seeger_Ludwig_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 99f.", "author": "", "orig_id": 1439339}}, {"model": "metainfo.source", "pk": 2898, "fields": {"orig_filename": "Seeger_Rudolf_1888_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 100f.", "author": "", "orig_id": 1439341}}, {"model": "metainfo.source", "pk": 2899, "fields": {"orig_filename": "Seeger_Theodor_1858_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101", "author": "", "orig_id": 1439391}}, {"model": "metainfo.source", "pk": 2900, "fields": {"orig_filename": "Seehofer_Therese_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101", "author": "", "orig_id": 1439393}}, {"model": "metainfo.source", "pk": 2901, "fields": {"orig_filename": "Seeland_Ferdinand-Maximilian_1821_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101f.", "author": "", "orig_id": 1439394}}, {"model": "metainfo.source", "pk": 2902, "fields": {"orig_filename": "Seeliger_Karl_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 102", "author": "", "orig_id": 1439396}}, {"model": "metainfo.source", "pk": 2903, "fields": {"orig_filename": "Seelos_Franz_1873_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 102f.", "author": "", "orig_id": 1439397}}, {"model": "metainfo.source", "pk": 2904, "fields": {"orig_filename": "Seelos_Franz_1905_1962.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103", "author": "", "orig_id": 1439400}}, {"model": "metainfo.source", "pk": 2905, "fields": {"orig_filename": "Seelos_Gottfried_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103", "author": "", "orig_id": 1439401}}, {"model": "metainfo.source", "pk": 2906, "fields": {"orig_filename": "Seelos_Gustav_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103f.", "author": "", "orig_id": 1439402}}, {"model": "metainfo.source", "pk": 2907, "fields": {"orig_filename": "Seelos_Ignaz_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 104", "author": "", "orig_id": 1439403}}, {"model": "metainfo.source", "pk": 2908, "fields": {"orig_filename": "Seemann-Treuenwart_Albin_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106", "author": "", "orig_id": 1439407}}, {"model": "metainfo.source", "pk": 2909, "fields": {"orig_filename": "Seemann-Treuenwart_Johanna_1849_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106f.", "author": "", "orig_id": 1439409}}, {"model": "metainfo.source", "pk": 2910, "fields": {"orig_filename": "Seemann-Treuenwart_Karl-Ottokar_1837_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106", "author": "", "orig_id": 1439408}}, {"model": "metainfo.source", "pk": 2911, "fields": {"orig_filename": "Seemann_Friedrich_1884_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 104f.", "author": "", "orig_id": 1439404}}, {"model": "metainfo.source", "pk": 2912, "fields": {"orig_filename": "Seemann_Herbert_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 105", "author": "", "orig_id": 1439405}}, {"model": "metainfo.source", "pk": 2913, "fields": {"orig_filename": "Seemann_Margarete_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 105f.", "author": "", "orig_id": 1439406}}, {"model": "metainfo.source", "pk": 2914, "fields": {"orig_filename": "Seemueller_Joseph_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 107", "author": "", "orig_id": 1439411}}, {"model": "metainfo.source", "pk": 2915, "fields": {"orig_filename": "Seethaler_Johann-Andreas_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 107f.", "author": "", "orig_id": 1439412}}, {"model": "metainfo.source", "pk": 2916, "fields": {"orig_filename": "Segantini_Giovanni_1858_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 108f.", "author": "", "orig_id": 1439413}}, {"model": "metainfo.source", "pk": 2917, "fields": {"orig_filename": "Segato_Girolamo_1792_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 109f.", "author": "", "orig_id": 1439414}}, {"model": "metainfo.source", "pk": 2918, "fields": {"orig_filename": "Segel_Benjamin_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 110f.", "author": "", "orig_id": 1439468}}, {"model": "metainfo.source", "pk": 2919, "fields": {"orig_filename": "Segel_Isaak_1879_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 110", "author": "", "orig_id": 1439469}}, {"model": "metainfo.source", "pk": 2920, "fields": {"orig_filename": "Segenschmid_Franz-Xaver_1839_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 111f.", "author": "", "orig_id": 1439471}}, {"model": "metainfo.source", "pk": 2921, "fields": {"orig_filename": "Segen_David_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 111", "author": "", "orig_id": 1439470}}, {"model": "metainfo.source", "pk": 2922, "fields": {"orig_filename": "Segur-Cabanac_August-Franz-Marzellus_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112", "author": "", "orig_id": 1439474}}, {"model": "metainfo.source", "pk": 2923, "fields": {"orig_filename": "Segur-Cabanac_August_1881_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112", "author": "", "orig_id": 1439473}}, {"model": "metainfo.source", "pk": 2924, "fields": {"orig_filename": "Segur-Cabanac_Viktor-Julius-Ignaz-August_1869_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112f.", "author": "", "orig_id": 1439475}}, {"model": "metainfo.source", "pk": 2925, "fields": {"orig_filename": "Segusini_Giuseppe_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 113f.", "author": "", "orig_id": 1439476}}, {"model": "metainfo.source", "pk": 2926, "fields": {"orig_filename": "Schwarz_Franz_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 433f.", "author": "", "orig_id": 1420373}}, {"model": "metainfo.source", "pk": 2927, "fields": {"orig_filename": "Schwarz_Friederike_1910_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 434f.", "author": "", "orig_id": 1420376}}, {"model": "metainfo.source", "pk": 2928, "fields": {"orig_filename": "Schwarz_Gavro_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435", "author": "", "orig_id": 1420377}}, {"model": "metainfo.source", "pk": 2929, "fields": {"orig_filename": "Schwarz_Gottfried_1877_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435", "author": "", "orig_id": 1420378}}, {"model": "metainfo.source", "pk": 2930, "fields": {"orig_filename": "Schwarz_Gyula_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435f.", "author": "", "orig_id": 1420379}}, {"model": "metainfo.source", "pk": 2931, "fields": {"orig_filename": "Schwarz_Heinrich_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 436f.", "author": "", "orig_id": 1420380}}, {"model": "metainfo.source", "pk": 2932, "fields": {"orig_filename": "Schwarz_Heinrich_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 437f.", "author": "", "orig_id": 1420381}}, {"model": "metainfo.source", "pk": 2933, "fields": {"orig_filename": "Schwarz_Ignaz_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 438", "author": "", "orig_id": 1420437}}, {"model": "metainfo.source", "pk": 2934, "fields": {"orig_filename": "Schwarz_Jakub_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 438f.", "author": "", "orig_id": 1420438}}, {"model": "metainfo.source", "pk": 2935, "fields": {"orig_filename": "Schwarz_Johann-Michael_1774_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439f.", "author": "", "orig_id": 1420440}}, {"model": "metainfo.source", "pk": 2936, "fields": {"orig_filename": "Schwarz_Josef_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 440", "author": "", "orig_id": 1420441}}, {"model": "metainfo.source", "pk": 2937, "fields": {"orig_filename": "Schwarz_Josef_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 440f.", "author": "", "orig_id": 1420442}}, {"model": "metainfo.source", "pk": 2938, "fields": {"orig_filename": "Schwarz_Julie_1798_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 444f.", "author": "", "orig_id": 1420449}}, {"model": "metainfo.source", "pk": 2939, "fields": {"orig_filename": "Schwarz_Julius-Anton_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 441", "author": "", "orig_id": 1420443}}, {"model": "metainfo.source", "pk": 2940, "fields": {"orig_filename": "Schwarz_Karel-Martin_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 441f.", "author": "", "orig_id": 1420444}}, {"model": "metainfo.source", "pk": 2941, "fields": {"orig_filename": "Schwarz_Karl-Wilhelm-Emanuel_1768_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 444f.", "author": "", "orig_id": 1420448}}, {"model": "metainfo.source", "pk": 2942, "fields": {"orig_filename": "Schwarz_Karl_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 442f.", "author": "", "orig_id": 1420445}}, {"model": "metainfo.source", "pk": 2943, "fields": {"orig_filename": "Schwarz_Karl_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 443", "author": "", "orig_id": 1420446}}, {"model": "metainfo.source", "pk": 2944, "fields": {"orig_filename": "Schwarz_Karl_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 443f.", "author": "", "orig_id": 1420447}}, {"model": "metainfo.source", "pk": 2945, "fields": {"orig_filename": "Schwarz_Kaspar_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445f.", "author": "", "orig_id": 1420451}}, {"model": "metainfo.source", "pk": 2946, "fields": {"orig_filename": "Schwarz_Lambert_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 446", "author": "", "orig_id": 1420452}}, {"model": "metainfo.source", "pk": 2947, "fields": {"orig_filename": "Schwarz_Leopold_1812_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 446f.", "author": "", "orig_id": 1420453}}, {"model": "metainfo.source", "pk": 2948, "fields": {"orig_filename": "Schwarz_Leopold_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 447", "author": "", "orig_id": 1420454}}, {"model": "metainfo.source", "pk": 2949, "fields": {"orig_filename": "Schwarz_Ljudevit_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6f.", "author": "", "orig_id": 1439460}}, {"model": "metainfo.source", "pk": 2950, "fields": {"orig_filename": "Schwarz_Ludwig-Franz_1833_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 447f.", "author": "", "orig_id": 1420455}}, {"model": "metainfo.source", "pk": 2951, "fields": {"orig_filename": "Schwarz_Marie_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 1", "author": "", "orig_id": 1439382}}, {"model": "metainfo.source", "pk": 2952, "fields": {"orig_filename": "Schwarz_Oswald_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 1f.", "author": "", "orig_id": 1439383}}, {"model": "metainfo.source", "pk": 2953, "fields": {"orig_filename": "Schwarz_Otto_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 2", "author": "", "orig_id": 1439384}}, {"model": "metainfo.source", "pk": 2954, "fields": {"orig_filename": "Schwarz_Paul_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 2f.", "author": "", "orig_id": 1439387}}, {"model": "metainfo.source", "pk": 2955, "fields": {"orig_filename": "Schwarz_Philipp_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3", "author": "", "orig_id": 1439389}}, {"model": "metainfo.source", "pk": 2956, "fields": {"orig_filename": "Schwarz_Rudolf_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3", "author": "", "orig_id": 1439390}}, {"model": "metainfo.source", "pk": 2957, "fields": {"orig_filename": "Schwarz_Rudolf_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3f.", "author": "", "orig_id": 1439445}}, {"model": "metainfo.source", "pk": 2958, "fields": {"orig_filename": "Schwarz_Sebastian_1809_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4", "author": "", "orig_id": 1439446}}, {"model": "metainfo.source", "pk": 2959, "fields": {"orig_filename": "Schwarz_Sigismund_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4f.", "author": "", "orig_id": 1439449}}, {"model": "metainfo.source", "pk": 2960, "fields": {"orig_filename": "Schwarz_Stefan_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 5f.", "author": "", "orig_id": 1439454}}, {"model": "metainfo.source", "pk": 2961, "fields": {"orig_filename": "Schwarz_Thiemo_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6", "author": "", "orig_id": 1439455}}, {"model": "metainfo.source", "pk": 2962, "fields": {"orig_filename": "Schwarz_Vilim_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6f.", "author": "", "orig_id": 1439456}}, {"model": "metainfo.source", "pk": 2963, "fields": {"orig_filename": "Schwarz_Vinzenz_1902_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 7", "author": "", "orig_id": 1439458}}, {"model": "metainfo.source", "pk": 2964, "fields": {"orig_filename": "Schwarz_Wenzel_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 7f.", "author": "", "orig_id": 1439459}}, {"model": "metainfo.source", "pk": 2965, "fields": {"orig_filename": "Schwarz_Wenzel_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 8", "author": "", "orig_id": 1439463}}, {"model": "metainfo.source", "pk": 2966, "fields": {"orig_filename": "Schwathe_Hans_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 35f.", "author": "", "orig_id": 1439666}}, {"model": "metainfo.source", "pk": 2967, "fields": {"orig_filename": "Schwayer_Adolf_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 36", "author": "", "orig_id": 1439667}}, {"model": "metainfo.source", "pk": 2968, "fields": {"orig_filename": "Schwechler_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 36f.", "author": "", "orig_id": 1439668}}, {"model": "metainfo.source", "pk": 2969, "fields": {"orig_filename": "Schwediauer_Franz-Xaver_1748_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 37", "author": "", "orig_id": 1439669}}, {"model": "metainfo.source", "pk": 2970, "fields": {"orig_filename": "Schwegel_Joseph_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 37f.", "author": "", "orig_id": 1439670}}, {"model": "metainfo.source", "pk": 2971, "fields": {"orig_filename": "Schweickhardt_Franz-Xaver-Joseph_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 38f.", "author": "", "orig_id": 1439711}}, {"model": "metainfo.source", "pk": 2972, "fields": {"orig_filename": "Schweidel_Jozsef_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 39", "author": "", "orig_id": 1439712}}, {"model": "metainfo.source", "pk": 2973, "fields": {"orig_filename": "Schweidler_Egon_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 39f.", "author": "", "orig_id": 1439713}}, {"model": "metainfo.source", "pk": 2974, "fields": {"orig_filename": "Schweiger_Alois_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 40", "author": "", "orig_id": 1439714}}, {"model": "metainfo.source", "pk": 2975, "fields": {"orig_filename": "Schweiggl_Josef_1761_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 41", "author": "", "orig_id": 1439717}}, {"model": "metainfo.source", "pk": 2976, "fields": {"orig_filename": "Schweighofer_Carl_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439723}}, {"model": "metainfo.source", "pk": 2977, "fields": {"orig_filename": "Schweighofer_Felix_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 41f.", "author": "", "orig_id": 1439718}}, {"model": "metainfo.source", "pk": 2978, "fields": {"orig_filename": "Schweighofer_Franz-Johann_1797_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 42f.", "author": "", "orig_id": 1439720}}, {"model": "metainfo.source", "pk": 2979, "fields": {"orig_filename": "Schweighofer_Gustav_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 42", "author": "", "orig_id": 1439719}}, {"model": "metainfo.source", "pk": 2980, "fields": {"orig_filename": "Schweighofer_Johann-Michael_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439721}}, {"model": "metainfo.source", "pk": 2981, "fields": {"orig_filename": "Schweighofer_Johann-Michael_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439722}}, {"model": "metainfo.source", "pk": 2982, "fields": {"orig_filename": "Schweighofer_Johann_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439724}}, {"model": "metainfo.source", "pk": 2983, "fields": {"orig_filename": "Schweighofer_Josef_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43f.", "author": "", "orig_id": 1439725}}, {"model": "metainfo.source", "pk": 2984, "fields": {"orig_filename": "Schweikart_Karl-Gottlieb_1772_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44", "author": "", "orig_id": 1439726}}, {"model": "metainfo.source", "pk": 2985, "fields": {"orig_filename": "Schweitzer_Eduard_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44", "author": "", "orig_id": 1439727}}, {"model": "metainfo.source", "pk": 2986, "fields": {"orig_filename": "Schweitzer_Josef_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45", "author": "", "orig_id": 1439731}}, {"model": "metainfo.source", "pk": 2987, "fields": {"orig_filename": "Schweizer_Albert_1884_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45f.", "author": "", "orig_id": 1439735}}, {"model": "metainfo.source", "pk": 2988, "fields": {"orig_filename": "Schweizer_Carl_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45f.", "author": "", "orig_id": 1439733}}, {"model": "metainfo.source", "pk": 2989, "fields": {"orig_filename": "Schwemminger_Heinrich_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46", "author": "", "orig_id": 1439785}}, {"model": "metainfo.source", "pk": 2990, "fields": {"orig_filename": "Schwemminger_Joseph_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46", "author": "", "orig_id": 1439787}}, {"model": "metainfo.source", "pk": 2991, "fields": {"orig_filename": "Schwendenwein-Lanauberg_August_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46f.", "author": "", "orig_id": 1439789}}, {"model": "metainfo.source", "pk": 2992, "fields": {"orig_filename": "Schwender_Carl_1839_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439793}}, {"model": "metainfo.source", "pk": 2993, "fields": {"orig_filename": "Schwender_Karl-Ludwig_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 47f.", "author": "", "orig_id": 1439790}}, {"model": "metainfo.source", "pk": 2994, "fields": {"orig_filename": "Schweninger_Carl_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439798}}, {"model": "metainfo.source", "pk": 2995, "fields": {"orig_filename": "Schweninger_Carl_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439796}}, {"model": "metainfo.source", "pk": 2996, "fields": {"orig_filename": "Schweninger_Rosa_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439797}}, {"model": "metainfo.source", "pk": 2997, "fields": {"orig_filename": "Schwenninger_Florian_1809_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48f.", "author": "", "orig_id": 1439800}}, {"model": "metainfo.source", "pk": 2998, "fields": {"orig_filename": "Schwerdfeger_Engelbert_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 50", "author": "", "orig_id": 1439805}}, {"model": "metainfo.source", "pk": 2999, "fields": {"orig_filename": "Schwerdfeger_Josef-Adolf_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 50f.", "author": "", "orig_id": 1439807}}, {"model": "metainfo.source", "pk": 3000, "fields": {"orig_filename": "Schwerdling_Johann-Nepomuk_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 51", "author": "", "orig_id": 1439808}}, {"model": "metainfo.source", "pk": 3001, "fields": {"orig_filename": "Schwerdtner_Carl-Maria_1874_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 51f.", "author": "", "orig_id": 1439809}}, {"model": "metainfo.source", "pk": 3002, "fields": {"orig_filename": "Schwerdtner_Hugo_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 52", "author": "", "orig_id": 1439810}}, {"model": "metainfo.source", "pk": 3003, "fields": {"orig_filename": "Schwerdtner_Johann_1834_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 52f.", "author": "", "orig_id": 1439857}}, {"model": "metainfo.source", "pk": 3004, "fields": {"orig_filename": "Schwert_Leopold_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53", "author": "", "orig_id": 1439859}}, {"model": "metainfo.source", "pk": 3005, "fields": {"orig_filename": "Schwerzek_Carl_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53", "author": "", "orig_id": 1439861}}, {"model": "metainfo.source", "pk": 3006, "fields": {"orig_filename": "Schwerzenbach_Carl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53f.", "author": "", "orig_id": 1439862}}, {"model": "metainfo.source", "pk": 3007, "fields": {"orig_filename": "Schwer_Hans-Arnold_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 49", "author": "", "orig_id": 1439802}}, {"model": "metainfo.source", "pk": 3008, "fields": {"orig_filename": "Schwer_Josef-Alexander_1846_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 49f.", "author": "", "orig_id": 1439803}}, {"model": "metainfo.source", "pk": 3009, "fields": {"orig_filename": "Schwetz_Johann-Baptist_1803_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 54f.", "author": "", "orig_id": 1439865}}, {"model": "metainfo.source", "pk": 3010, "fields": {"orig_filename": "Schwickert_Friedrich_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 56", "author": "", "orig_id": 1439870}}, {"model": "metainfo.source", "pk": 3011, "fields": {"orig_filename": "Schwicker_Johann-Heinrich_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 55f.", "author": "", "orig_id": 1439867}}, {"model": "metainfo.source", "pk": 3012, "fields": {"orig_filename": "Schwiedland_Eugen-Peter_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 56f.", "author": "", "orig_id": 1439871}}, {"model": "metainfo.source", "pk": 3013, "fields": {"orig_filename": "Schwienbacher_Johann_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 57", "author": "", "orig_id": 1439872}}, {"model": "metainfo.source", "pk": 3014, "fields": {"orig_filename": "Schwimmer_Ernoe-Lajos_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 57f.", "author": "", "orig_id": 1439873}}, {"model": "metainfo.source", "pk": 3015, "fields": {"orig_filename": "Schwindel_Bernhard_1787_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 63", "author": "", "orig_id": 1439928}}, {"model": "metainfo.source", "pk": 3016, "fields": {"orig_filename": "Schwind_August_1800_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 58", "author": "", "orig_id": 1439874}}, {"model": "metainfo.source", "pk": 3017, "fields": {"orig_filename": "Schwind_Ernst_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 58f.", "author": "", "orig_id": 1439875}}, {"model": "metainfo.source", "pk": 3018, "fields": {"orig_filename": "Schwind_Franz-Karl-Augustin_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 59f.", "author": "", "orig_id": 1439877}}, {"model": "metainfo.source", "pk": 3019, "fields": {"orig_filename": "Schwind_Gertrud_1878_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62", "author": "", "orig_id": 1439927}}, {"model": "metainfo.source", "pk": 3020, "fields": {"orig_filename": "Schwind_Johann-Franz_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 60", "author": "", "orig_id": 1439878}}, {"model": "metainfo.source", "pk": 3021, "fields": {"orig_filename": "Schwind_Moritz_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 60ff.", "author": "", "orig_id": 1439880}}, {"model": "metainfo.source", "pk": 3022, "fields": {"orig_filename": "Schwind_Wilhelm-August-Moritz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62", "author": "", "orig_id": 1439923}}, {"model": "metainfo.source", "pk": 3023, "fields": {"orig_filename": "Schwind_Wolfgang_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62f.", "author": "", "orig_id": 1439925}}, {"model": "metainfo.source", "pk": 3024, "fields": {"orig_filename": "Schwingshackl_Johann_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 64", "author": "", "orig_id": 1440109}}, {"model": "metainfo.source", "pk": 3025, "fields": {"orig_filename": "Schwab_Adolf_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 402", "author": "", "orig_id": 1420143}}, {"model": "metainfo.source", "pk": 3026, "fields": {"orig_filename": "Schwab_Adolph_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 402f.", "author": "", "orig_id": 1420196}}, {"model": "metainfo.source", "pk": 3027, "fields": {"orig_filename": "Schwab_Anton_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 403", "author": "", "orig_id": 1420197}}, {"model": "metainfo.source", "pk": 3028, "fields": {"orig_filename": "Schwab_Arnost_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420204}}, {"model": "metainfo.source", "pk": 3029, "fields": {"orig_filename": "Schwab_Erasmus_1831_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 403f.", "author": "", "orig_id": 1420198}}, {"model": "metainfo.source", "pk": 3030, "fields": {"orig_filename": "Schwab_Franz_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 404", "author": "", "orig_id": 1420199}}, {"model": "metainfo.source", "pk": 3031, "fields": {"orig_filename": "Schwab_Johann_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 404f.", "author": "", "orig_id": 1420200}}, {"model": "metainfo.source", "pk": 3032, "fields": {"orig_filename": "Schwab_Josef_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 405f.", "author": "", "orig_id": 1420201}}, {"model": "metainfo.source", "pk": 3033, "fields": {"orig_filename": "Schwab_Loew_1794_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420202}}, {"model": "metainfo.source", "pk": 3034, "fields": {"orig_filename": "Schwab_Vaclav_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420203}}, {"model": "metainfo.source", "pk": 3035, "fields": {"orig_filename": "Schwach_Caroline_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410", "author": "", "orig_id": 1420213}}, {"model": "metainfo.source", "pk": 3036, "fields": {"orig_filename": "Schwach_Heinrich-August_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410", "author": "", "orig_id": 1420214}}, {"model": "metainfo.source", "pk": 3037, "fields": {"orig_filename": "Schwackhoefer_Franz_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410f.", "author": "", "orig_id": 1420215}}, {"model": "metainfo.source", "pk": 3038, "fields": {"orig_filename": "Schwaerzler_Franz-Xav_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 411f.", "author": "", "orig_id": 1420216}}, {"model": "metainfo.source", "pk": 3039, "fields": {"orig_filename": "Schwager_Benedikt_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 412", "author": "", "orig_id": 1420217}}, {"model": "metainfo.source", "pk": 3040, "fields": {"orig_filename": "Schwager_Ernst-Otto_1882_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 412f.", "author": "", "orig_id": 1420218}}, {"model": "metainfo.source", "pk": 3041, "fields": {"orig_filename": "Schwager_Richard_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 413", "author": "", "orig_id": 1420219}}, {"model": "metainfo.source", "pk": 3042, "fields": {"orig_filename": "Schwagula_Ignaz_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 413f.", "author": "", "orig_id": 1420279}}, {"model": "metainfo.source", "pk": 3043, "fields": {"orig_filename": "Schwaiger_Franz_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 414", "author": "", "orig_id": 1420280}}, {"model": "metainfo.source", "pk": 3044, "fields": {"orig_filename": "Schwaiger_Hanus_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 414f.", "author": "", "orig_id": 1420281}}, {"model": "metainfo.source", "pk": 3045, "fields": {"orig_filename": "Schwaiger_Michael-Joseph_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 415", "author": "", "orig_id": 1420282}}, {"model": "metainfo.source", "pk": 3046, "fields": {"orig_filename": "Schwaighofer_Franz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 415f.", "author": "", "orig_id": 1420283}}, {"model": "metainfo.source", "pk": 3047, "fields": {"orig_filename": "Schwaighofer_Johann-Bapt_1818_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416", "author": "", "orig_id": 1420285}}, {"model": "metainfo.source", "pk": 3048, "fields": {"orig_filename": "Schwaighofer_Roman_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416", "author": "", "orig_id": 1420284}}, {"model": "metainfo.source", "pk": 3049, "fields": {"orig_filename": "Schwalm_Georg_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416f.", "author": "", "orig_id": 1420286}}, {"model": "metainfo.source", "pk": 3050, "fields": {"orig_filename": "Schwanda_Mathias_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 417", "author": "", "orig_id": 1420287}}, {"model": "metainfo.source", "pk": 3051, "fields": {"orig_filename": "Schwanenberg_Josef-Franz-Ignaz_1762_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 417f.", "author": "", "orig_id": 1420288}}, {"model": "metainfo.source", "pk": 3052, "fields": {"orig_filename": "Schwanenfeld_Sebastian_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 418", "author": "", "orig_id": 1420289}}, {"model": "metainfo.source", "pk": 3053, "fields": {"orig_filename": "Schwara_Johann_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 418f.", "author": "", "orig_id": 1420290}}, {"model": "metainfo.source", "pk": 3054, "fields": {"orig_filename": "Schwartner_Martin_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 419f.", "author": "", "orig_id": 1420291}}, {"model": "metainfo.source", "pk": 3055, "fields": {"orig_filename": "Schwarz-Hiller-Jiskor_Rudolf_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 8f.", "author": "", "orig_id": 1439465}}, {"model": "metainfo.source", "pk": 3056, "fields": {"orig_filename": "Schwarz-Karsten_Theodor_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 9", "author": "", "orig_id": 1439466}}, {"model": "metainfo.source", "pk": 3057, "fields": {"orig_filename": "Schwarz-Mohrenstern_Gustav-Franziskus-Maria_1809_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 9f.", "author": "", "orig_id": 1439525}}, {"model": "metainfo.source", "pk": 3058, "fields": {"orig_filename": "Schwarz-Mohrenstern_Johann-Jakob_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 10", "author": "", "orig_id": 1439527}}, {"model": "metainfo.source", "pk": 3059, "fields": {"orig_filename": "Schwarz-Senborn_Wilhelm_1816_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 10f.", "author": "", "orig_id": 1439532}}, {"model": "metainfo.source", "pk": 3060, "fields": {"orig_filename": "Schwarz-Waldegg_Fritz_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 11", "author": "", "orig_id": 1439533}}, {"model": "metainfo.source", "pk": 3061, "fields": {"orig_filename": "Schwarzbach_Josef_1853_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 11f.", "author": "", "orig_id": 1439537}}, {"model": "metainfo.source", "pk": 3062, "fields": {"orig_filename": "Schwarzenau_Erwin_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 12", "author": "", "orig_id": 1439538}}, {"model": "metainfo.source", "pk": 3063, "fields": {"orig_filename": "Schwarzenberger_Rupert_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 26f.", "author": "", "orig_id": 1439603}}, {"model": "metainfo.source", "pk": 3064, "fields": {"orig_filename": "Schwarzenberg_Adolf-Josef_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 12f.", "author": "", "orig_id": 1439539}}, {"model": "metainfo.source", "pk": 3065, "fields": {"orig_filename": "Schwarzenberg_Adolph_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13", "author": "", "orig_id": 1439585}}, {"model": "metainfo.source", "pk": 3066, "fields": {"orig_filename": "Schwarzenberg_Edmund_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13f.", "author": "", "orig_id": 1439587}}, {"model": "metainfo.source", "pk": 3067, "fields": {"orig_filename": "Schwarzenberg_Ernst_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 14f.", "author": "", "orig_id": 1439588}}, {"model": "metainfo.source", "pk": 3068, "fields": {"orig_filename": "Schwarzenberg_Felix_1800_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 15ff.", "author": "", "orig_id": 1439589}}, {"model": "metainfo.source", "pk": 3069, "fields": {"orig_filename": "Schwarzenberg_Felix_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 17", "author": "", "orig_id": 1439590}}, {"model": "metainfo.source", "pk": 3070, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1799_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 18f.", "author": "", "orig_id": 1439591}}, {"model": "metainfo.source", "pk": 3071, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 19f.", "author": "", "orig_id": 1439592}}, {"model": "metainfo.source", "pk": 3072, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 20f.", "author": "", "orig_id": 1439593}}, {"model": "metainfo.source", "pk": 3073, "fields": {"orig_filename": "Schwarzenberg_Johann-Adolf-Ii_1799_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 21f.", "author": "", "orig_id": 1439594}}, {"model": "metainfo.source", "pk": 3074, "fields": {"orig_filename": "Schwarzenberg_Josef-Ii_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 22", "author": "", "orig_id": 1439595}}, {"model": "metainfo.source", "pk": 3075, "fields": {"orig_filename": "Schwarzenberg_Karl-I-Philipp_1771_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 22f.", "author": "", "orig_id": 1439596}}, {"model": "metainfo.source", "pk": 3076, "fields": {"orig_filename": "Schwarzenberg_Karl-Iii_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 24", "author": "", "orig_id": 1439598}}, {"model": "metainfo.source", "pk": 3077, "fields": {"orig_filename": "Schwarzenberg_Karl-Ii_1802_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 23f.", "author": "", "orig_id": 1439597}}, {"model": "metainfo.source", "pk": 3078, "fields": {"orig_filename": "Schwarzenberg_Karl-Iv_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 24f.", "author": "", "orig_id": 1439599}}, {"model": "metainfo.source", "pk": 3079, "fields": {"orig_filename": "Schwarzenberg_Maria-Anna_1768_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 25", "author": "", "orig_id": 1439600}}, {"model": "metainfo.source", "pk": 3080, "fields": {"orig_filename": "Schwarzenberg_Maria-Karoline_1775_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 25f.", "author": "", "orig_id": 1439601}}, {"model": "metainfo.source", "pk": 3081, "fields": {"orig_filename": "Schwarzenbrunner_Bonifaz_1790_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 27", "author": "", "orig_id": 1439604}}, {"model": "metainfo.source", "pk": 3082, "fields": {"orig_filename": "Schwarzer-Babarcz_Ferenc_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29", "author": "", "orig_id": 1439652}}, {"model": "metainfo.source", "pk": 3083, "fields": {"orig_filename": "Schwarzer-Babarcz_Otto_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29f.", "author": "", "orig_id": 1439653}}, {"model": "metainfo.source", "pk": 3084, "fields": {"orig_filename": "Schwarzer-Heldenstamm_Ernst_1808_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 30f.", "author": "", "orig_id": 1439654}}, {"model": "metainfo.source", "pk": 3085, "fields": {"orig_filename": "Schwarzer-Heldenstamm_Guido_1834_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31", "author": "", "orig_id": 1439656}}, {"model": "metainfo.source", "pk": 3086, "fields": {"orig_filename": "Schwarzer_Alois_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 28", "author": "", "orig_id": 1439606}}, {"model": "metainfo.source", "pk": 3087, "fields": {"orig_filename": "Schwarzer_Franz_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 28", "author": "", "orig_id": 1439649}}, {"model": "metainfo.source", "pk": 3088, "fields": {"orig_filename": "Schwarzer_Johann_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29", "author": "", "orig_id": 1439651}}, {"model": "metainfo.source", "pk": 3089, "fields": {"orig_filename": "Schwarzgruber_Rudolf_1900_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31", "author": "", "orig_id": 1439657}}, {"model": "metainfo.source", "pk": 3090, "fields": {"orig_filename": "Schwarzinger_Johann_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31f.", "author": "", "orig_id": 1439658}}, {"model": "metainfo.source", "pk": 3091, "fields": {"orig_filename": "Schwarzinger_Josef_1848_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 32", "author": "", "orig_id": 1439659}}, {"model": "metainfo.source", "pk": 3092, "fields": {"orig_filename": "Schwarzkopf_Gustav_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 32f.", "author": "", "orig_id": 1439660}}, {"model": "metainfo.source", "pk": 3093, "fields": {"orig_filename": "Schwarzmann_David_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 33", "author": "", "orig_id": 1439661}}, {"model": "metainfo.source", "pk": 3094, "fields": {"orig_filename": "Schwarzmann_Joseph-Anton_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 33f.", "author": "", "orig_id": 1439662}}, {"model": "metainfo.source", "pk": 3095, "fields": {"orig_filename": "Schwarzwald_Eugenie_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 34f.", "author": "", "orig_id": 1439663}}, {"model": "metainfo.source", "pk": 3096, "fields": {"orig_filename": "Schwarzwald_Hermann_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 35", "author": "", "orig_id": 1439664}}, {"model": "metainfo.source", "pk": 3097, "fields": {"orig_filename": "Schwarz_Adam_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 420", "author": "", "orig_id": 1420292}}, {"model": "metainfo.source", "pk": 3098, "fields": {"orig_filename": "Schwarz_Adolf_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 420f.", "author": "", "orig_id": 1420293}}, {"model": "metainfo.source", "pk": 3099, "fields": {"orig_filename": "Schwarz_Adolf_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 421", "author": "", "orig_id": 1420294}}, {"model": "metainfo.source", "pk": 3100, "fields": {"orig_filename": "Schwarz_Adolf_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 421f.", "author": "", "orig_id": 1420295}}, {"model": "metainfo.source", "pk": 3101, "fields": {"orig_filename": "Schwarz_Adolf_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 422", "author": "", "orig_id": 1420296}}, {"model": "metainfo.source", "pk": 3102, "fields": {"orig_filename": "Schwarz_Alois_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 422f.", "author": "", "orig_id": 1420297}}, {"model": "metainfo.source", "pk": 3103, "fields": {"orig_filename": "Schwarz_Anton_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 423f.", "author": "", "orig_id": 1420298}}, {"model": "metainfo.source", "pk": 3104, "fields": {"orig_filename": "Schwarz_Anton_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424", "author": "", "orig_id": 1420299}}, {"model": "metainfo.source", "pk": 3105, "fields": {"orig_filename": "Schwarz_Anton_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424", "author": "", "orig_id": 1420300}}, {"model": "metainfo.source", "pk": 3106, "fields": {"orig_filename": "Schwarz_Anton_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424f.", "author": "", "orig_id": 1420301}}, {"model": "metainfo.source", "pk": 3107, "fields": {"orig_filename": "Schwarz_Antun_1832_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426", "author": "", "orig_id": 1420302}}, {"model": "metainfo.source", "pk": 3108, "fields": {"orig_filename": "Schwarz_Arthur-Zacharias_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426", "author": "", "orig_id": 1420303}}, {"model": "metainfo.source", "pk": 3109, "fields": {"orig_filename": "Schwarz_Arthur_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 431", "author": "", "orig_id": 1420369}}, {"model": "metainfo.source", "pk": 3110, "fields": {"orig_filename": "Schwarz_Bertha_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426f.", "author": "", "orig_id": 1420359}}, {"model": "metainfo.source", "pk": 3111, "fields": {"orig_filename": "Schwarz_Caspar-Friedrich_1881_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428", "author": "", "orig_id": 1420361}}, {"model": "metainfo.source", "pk": 3112, "fields": {"orig_filename": "Schwarz_Caspar_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 427f.", "author": "", "orig_id": 1420360}}, {"model": "metainfo.source", "pk": 3113, "fields": {"orig_filename": "Schwarz_Cornel_1774_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428", "author": "", "orig_id": 1420362}}, {"model": "metainfo.source", "pk": 3114, "fields": {"orig_filename": "Schwarz_Cornel_1813_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428f.", "author": "", "orig_id": 1420364}}, {"model": "metainfo.source", "pk": 3115, "fields": {"orig_filename": "Schwarz_David_1850_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 429f.", "author": "", "orig_id": 1420365}}, {"model": "metainfo.source", "pk": 3116, "fields": {"orig_filename": "Schwarz_Eduard_1831_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 430", "author": "", "orig_id": 1420366}}, {"model": "metainfo.source", "pk": 3117, "fields": {"orig_filename": "Schwarz_Eduard_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 430f.", "author": "", "orig_id": 1420367}}, {"model": "metainfo.source", "pk": 3118, "fields": {"orig_filename": "Schwarz_Emil_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 431", "author": "", "orig_id": 1420368}}, {"model": "metainfo.source", "pk": 3119, "fields": {"orig_filename": "Schwarz_Ernst-Matthias_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 432", "author": "", "orig_id": 1420370}}, {"model": "metainfo.source", "pk": 3120, "fields": {"orig_filename": "Schwarz_Ernst_1805_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4f.", "author": "", "orig_id": 1439450}}, {"model": "metainfo.source", "pk": 3121, "fields": {"orig_filename": "Schwarz_Ferdinand_1852_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 432f.", "author": "", "orig_id": 1420371}}, {"model": "metainfo.source", "pk": 3122, "fields": {"orig_filename": "Schwarz_Frantisek_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 433", "author": "", "orig_id": 1420372}}, {"model": "metainfo.source", "pk": 3123, "fields": {"orig_filename": "Schwarz_Franz-Sales_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 434", "author": "", "orig_id": 1420374}}, {"model": "metainfo.source", "pk": 3124, "fields": {"orig_filename": "Schulz_Benedict_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342", "author": "", "orig_id": 1419772}}, {"model": "metainfo.source", "pk": 3125, "fields": {"orig_filename": "Schulz_Bruno_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342ff.", "author": "", "orig_id": 1419817}}, {"model": "metainfo.source", "pk": 3126, "fields": {"orig_filename": "Schulz_Emil-Emanuel-Eugen_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 344", "author": "", "orig_id": 1419818}}, {"model": "metainfo.source", "pk": 3127, "fields": {"orig_filename": "Schulz_Ferdinand_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 344f.", "author": "", "orig_id": 1419819}}, {"model": "metainfo.source", "pk": 3128, "fields": {"orig_filename": "Schulz_Ferenc_1838_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 345f.", "author": "", "orig_id": 1419821}}, {"model": "metainfo.source", "pk": 3129, "fields": {"orig_filename": "Schulz_Hugo_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 346", "author": "", "orig_id": 1419822}}, {"model": "metainfo.source", "pk": 3130, "fields": {"orig_filename": "Schulz_Izydor_1881_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 346f.", "author": "", "orig_id": 1419823}}, {"model": "metainfo.source", "pk": 3131, "fields": {"orig_filename": "Schulz_Josefine_1791_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 348", "author": "", "orig_id": 1419826}}, {"model": "metainfo.source", "pk": 3132, "fields": {"orig_filename": "Schulz_Josef_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 347f.", "author": "", "orig_id": 1419825}}, {"model": "metainfo.source", "pk": 3133, "fields": {"orig_filename": "Schulz_Karel_1899_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 348f.", "author": "", "orig_id": 1419827}}, {"model": "metainfo.source", "pk": 3134, "fields": {"orig_filename": "Schulz_Katharina_1750_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 349", "author": "", "orig_id": 1419828}}, {"model": "metainfo.source", "pk": 3135, "fields": {"orig_filename": "Schulz_Leopold_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 350", "author": "", "orig_id": 1419829}}, {"model": "metainfo.source", "pk": 3136, "fields": {"orig_filename": "Schulz_Otakar-Eugen_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 350f.", "author": "", "orig_id": 1419830}}, {"model": "metainfo.source", "pk": 3137, "fields": {"orig_filename": "Schulz_Paul_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 351", "author": "", "orig_id": 1419831}}, {"model": "metainfo.source", "pk": 3138, "fields": {"orig_filename": "Schulz_Richard_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 351f.", "author": "", "orig_id": 1419832}}, {"model": "metainfo.source", "pk": 3139, "fields": {"orig_filename": "Schulz_Theodor_1815_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352", "author": "", "orig_id": 1419833}}, {"model": "metainfo.source", "pk": 3140, "fields": {"orig_filename": "Schulz_Theodor_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352", "author": "", "orig_id": 1419834}}, {"model": "metainfo.source", "pk": 3141, "fields": {"orig_filename": "Schulz_Wolfgang_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352f.", "author": "", "orig_id": 1419835}}, {"model": "metainfo.source", "pk": 3142, "fields": {"orig_filename": "Schumacher-Marienfrid_Anton_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 363f.", "author": "", "orig_id": 1419955}}, {"model": "metainfo.source", "pk": 3143, "fields": {"orig_filename": "Schumacher-Marienfrid_Eckart_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 364f.", "author": "", "orig_id": 1419956}}, {"model": "metainfo.source", "pk": 3144, "fields": {"orig_filename": "Schumacher-Marienfrid_Siegmund_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 365f.", "author": "", "orig_id": 1419957}}, {"model": "metainfo.source", "pk": 3145, "fields": {"orig_filename": "Schumacher-Taennengau_Albert_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 366", "author": "", "orig_id": 1419958}}, {"model": "metainfo.source", "pk": 3146, "fields": {"orig_filename": "Schumacher_Alois_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 358", "author": "", "orig_id": 1419889}}, {"model": "metainfo.source", "pk": 3147, "fields": {"orig_filename": "Schumacher_Andreas_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 358f.", "author": "", "orig_id": 1419895}}, {"model": "metainfo.source", "pk": 3148, "fields": {"orig_filename": "Schumacher_Casimir-Carl_1766_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 359f.", "author": "", "orig_id": 1419896}}, {"model": "metainfo.source", "pk": 3149, "fields": {"orig_filename": "Schumacher_Franz_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360", "author": "", "orig_id": 1419897}}, {"model": "metainfo.source", "pk": 3150, "fields": {"orig_filename": "Schumacher_Ignaz_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360f.", "author": "", "orig_id": 1419899}}, {"model": "metainfo.source", "pk": 3151, "fields": {"orig_filename": "Schumacher_Johann-Nep_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 361f.", "author": "", "orig_id": 1419900}}, {"model": "metainfo.source", "pk": 3152, "fields": {"orig_filename": "Schumacher_Josef_1894_1971.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360", "author": "", "orig_id": 1419898}}, {"model": "metainfo.source", "pk": 3153, "fields": {"orig_filename": "Schumacher_Oskar_1894_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 362", "author": "", "orig_id": 1419901}}, {"model": "metainfo.source", "pk": 3154, "fields": {"orig_filename": "Schumacher_Philipp_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 362f.", "author": "", "orig_id": 1419954}}, {"model": "metainfo.source", "pk": 3155, "fields": {"orig_filename": "Schumann-Heink_Ernestine_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 368f.", "author": "", "orig_id": 1419961}}, {"model": "metainfo.source", "pk": 3156, "fields": {"orig_filename": "Schumann_Carl_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 366f.", "author": "", "orig_id": 1419959}}, {"model": "metainfo.source", "pk": 3157, "fields": {"orig_filename": "Schumi_Franz_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 369", "author": "", "orig_id": 1419962}}, {"model": "metainfo.source", "pk": 3158, "fields": {"orig_filename": "Schumpeter_Joseph-Alois_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 369ff.", "author": "", "orig_id": 1419963}}, {"model": "metainfo.source", "pk": 3159, "fields": {"orig_filename": "Schunda_Jozsef_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419965}}, {"model": "metainfo.source", "pk": 3160, "fields": {"orig_filename": "Schunda_Karoly_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419966}}, {"model": "metainfo.source", "pk": 3161, "fields": {"orig_filename": "Schunda_Vencel-Jozsef_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419964}}, {"model": "metainfo.source", "pk": 3162, "fields": {"orig_filename": "Schupfer_Francesco_1833_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371f.", "author": "", "orig_id": 1419968}}, {"model": "metainfo.source", "pk": 3163, "fields": {"orig_filename": "Schuppanzigh-Frankenbach_Emanuel_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 374", "author": "", "orig_id": 1419973}}, {"model": "metainfo.source", "pk": 3164, "fields": {"orig_filename": "Schuppanzigh_Ignaz_1776_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 373f.", "author": "", "orig_id": 1419972}}, {"model": "metainfo.source", "pk": 3165, "fields": {"orig_filename": "Schuppli_Paul_1861_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 374f.", "author": "", "orig_id": 1419974}}, {"model": "metainfo.source", "pk": 3166, "fields": {"orig_filename": "Schupp_Ferdinand_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 372f.", "author": "", "orig_id": 1419970}}, {"model": "metainfo.source", "pk": 3167, "fields": {"orig_filename": "Schupp_Helena-Eleonora-Joanna_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 373", "author": "", "orig_id": 1419971}}, {"model": "metainfo.source", "pk": 3168, "fields": {"orig_filename": "Schurda_Ignaz_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 378", "author": "", "orig_id": 1420039}}, {"model": "metainfo.source", "pk": 3169, "fields": {"orig_filename": "Schurz_Anton-Xaver_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 378f.", "author": "", "orig_id": 1420040}}, {"model": "metainfo.source", "pk": 3170, "fields": {"orig_filename": "Schur_Ferdinand-August-Eduard_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 376f.", "author": "", "orig_id": 1419976}}, {"model": "metainfo.source", "pk": 3171, "fields": {"orig_filename": "Schur_Ferdinand_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 375f.", "author": "", "orig_id": 1419975}}, {"model": "metainfo.source", "pk": 3172, "fields": {"orig_filename": "Schur_Moritz_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 377f.", "author": "", "orig_id": 1420038}}, {"model": "metainfo.source", "pk": 3173, "fields": {"orig_filename": "Schuschny_Grete_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 379", "author": "", "orig_id": 1420042}}, {"model": "metainfo.source", "pk": 3174, "fields": {"orig_filename": "Schuschny_Hans_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 379f.", "author": "", "orig_id": 1420041}}, {"model": "metainfo.source", "pk": 3175, "fields": {"orig_filename": "Schuselka-Bruening_Ida_1817_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 380ff.", "author": "", "orig_id": 1420044}}, {"model": "metainfo.source", "pk": 3176, "fields": {"orig_filename": "Schuselka_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 380", "author": "", "orig_id": 1420043}}, {"model": "metainfo.source", "pk": 3177, "fields": {"orig_filename": "Schustala_Adolf_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 382", "author": "", "orig_id": 1420046}}, {"model": "metainfo.source", "pk": 3178, "fields": {"orig_filename": "Schustala_Ignaz_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 382f.", "author": "", "orig_id": 1420045}}, {"model": "metainfo.source", "pk": 3179, "fields": {"orig_filename": "Schustala_Ignaz_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 383", "author": "", "orig_id": 1420047}}, {"model": "metainfo.source", "pk": 3180, "fields": {"orig_filename": "Schusteckh-Herve_Emanuel_1750_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 383f.", "author": "", "orig_id": 1420048}}, {"model": "metainfo.source", "pk": 3181, "fields": {"orig_filename": "Schuster-Baernrode_Robert_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 398", "author": "", "orig_id": 1420133}}, {"model": "metainfo.source", "pk": 3182, "fields": {"orig_filename": "Schuster-Bonnott_Ferdinand_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 399", "author": "", "orig_id": 1420135}}, {"model": "metainfo.source", "pk": 3183, "fields": {"orig_filename": "Schuster-Bonnott_Maximilian_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 398f.", "author": "", "orig_id": 1420134}}, {"model": "metainfo.source", "pk": 3184, "fields": {"orig_filename": "Schuster-Bonnott_Rudolf_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 399f.", "author": "", "orig_id": 1420136}}, {"model": "metainfo.source", "pk": 3185, "fields": {"orig_filename": "Schuster-Herineanu_Johann_1883_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400", "author": "", "orig_id": 1420138}}, {"model": "metainfo.source", "pk": 3186, "fields": {"orig_filename": "Schustermann_Adolf_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400f.", "author": "", "orig_id": 1420137}}, {"model": "metainfo.source", "pk": 3187, "fields": {"orig_filename": "Schustermann_Josef_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400f.", "author": "", "orig_id": 1420139}}, {"model": "metainfo.source", "pk": 3188, "fields": {"orig_filename": "Schuster_Andreas_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 384", "author": "", "orig_id": 1420049}}, {"model": "metainfo.source", "pk": 3189, "fields": {"orig_filename": "Schuster_Franz_1904_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 384f.", "author": "", "orig_id": 1420050}}, {"model": "metainfo.source", "pk": 3190, "fields": {"orig_filename": "Schuster_Friedrich-Wilhelm_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 385f.", "author": "", "orig_id": 1420052}}, {"model": "metainfo.source", "pk": 3191, "fields": {"orig_filename": "Schuster_Friedrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 385", "author": "", "orig_id": 1420051}}, {"model": "metainfo.source", "pk": 3192, "fields": {"orig_filename": "Schuster_Heinrich-Maria_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 387f.", "author": "", "orig_id": 1420055}}, {"model": "metainfo.source", "pk": 3193, "fields": {"orig_filename": "Schuster_Heinrich_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 387", "author": "", "orig_id": 1420054}}, {"model": "metainfo.source", "pk": 3194, "fields": {"orig_filename": "Schuster_Ignaz_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 388f.", "author": "", "orig_id": 1420056}}, {"model": "metainfo.source", "pk": 3195, "fields": {"orig_filename": "Schuster_Janos-Konstanz_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390", "author": "", "orig_id": 1420057}}, {"model": "metainfo.source", "pk": 3196, "fields": {"orig_filename": "Schuster_Johann-Leopold_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390", "author": "", "orig_id": 1420058}}, {"model": "metainfo.source", "pk": 3197, "fields": {"orig_filename": "Schuster_Johann-Traugott_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390f.", "author": "", "orig_id": 1420059}}, {"model": "metainfo.source", "pk": 3198, "fields": {"orig_filename": "Schuster_Josef-Anton_1770_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391f.", "author": "", "orig_id": 1420120}}, {"model": "metainfo.source", "pk": 3199, "fields": {"orig_filename": "Schuster_Josef_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391", "author": "", "orig_id": 1420060}}, {"model": "metainfo.source", "pk": 3200, "fields": {"orig_filename": "Schuster_Joseph_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 392", "author": "", "orig_id": 1420121}}, {"model": "metainfo.source", "pk": 3201, "fields": {"orig_filename": "Schuster_Joseph_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 392f.", "author": "", "orig_id": 1420122}}, {"model": "metainfo.source", "pk": 3202, "fields": {"orig_filename": "Schuster_Karl-Maria_1871_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391", "author": "", "orig_id": 1420119}}, {"model": "metainfo.source", "pk": 3203, "fields": {"orig_filename": "Schuster_Konstantin_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 393", "author": "", "orig_id": 1420123}}, {"model": "metainfo.source", "pk": 3204, "fields": {"orig_filename": "Schuster_Leopoldine_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 394f.", "author": "", "orig_id": 1420125}}, {"model": "metainfo.source", "pk": 3205, "fields": {"orig_filename": "Schuster_Leopold_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 393f.", "author": "", "orig_id": 1420124}}, {"model": "metainfo.source", "pk": 3206, "fields": {"orig_filename": "Schuster_Mathias_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 395", "author": "", "orig_id": 1420126}}, {"model": "metainfo.source", "pk": 3207, "fields": {"orig_filename": "Schuster_Max_1856_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 395", "author": "", "orig_id": 1420127}}, {"model": "metainfo.source", "pk": 3208, "fields": {"orig_filename": "Schuster_Michael_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 396", "author": "", "orig_id": 1420129}}, {"model": "metainfo.source", "pk": 3209, "fields": {"orig_filename": "Schuster_Richard_1867_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 396f.", "author": "", "orig_id": 1420130}}, {"model": "metainfo.source", "pk": 3210, "fields": {"orig_filename": "Schuster_Vaclav_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 397", "author": "", "orig_id": 1420131}}, {"model": "metainfo.source", "pk": 3211, "fields": {"orig_filename": "Schuster_Valentin-J_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 397f.", "author": "", "orig_id": 1420132}}, {"model": "metainfo.source", "pk": 3212, "fields": {"orig_filename": "Schustler_Karl_1811_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401", "author": "", "orig_id": 1420142}}, {"model": "metainfo.source", "pk": 3213, "fields": {"orig_filename": "Schustler_Moritz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401", "author": "", "orig_id": 1420140}}, {"model": "metainfo.source", "pk": 3214, "fields": {"orig_filename": "Schwaab_Josef_1856_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401f.", "author": "", "orig_id": 1420141}}, {"model": "metainfo.source", "pk": 3215, "fields": {"orig_filename": "Schwabach_Erik-Ernst_1891_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407", "author": "", "orig_id": 1420205}}, {"model": "metainfo.source", "pk": 3216, "fields": {"orig_filename": "Schwabe-Waisenfreund_Carl_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 408f.", "author": "", "orig_id": 1420209}}, {"model": "metainfo.source", "pk": 3217, "fields": {"orig_filename": "Schwabe-Waisenfreund_Rudolf_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409", "author": "", "orig_id": 1420212}}, {"model": "metainfo.source", "pk": 3218, "fields": {"orig_filename": "Schwabe-Waisenfreund_Vinzenz_1783_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409", "author": "", "orig_id": 1420211}}, {"model": "metainfo.source", "pk": 3219, "fields": {"orig_filename": "Schwabe_Georg-Friedrich_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407f.", "author": "", "orig_id": 1420206}}, {"model": "metainfo.source", "pk": 3220, "fields": {"orig_filename": "Schwabe_Gustav-Adolf_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 408", "author": "", "orig_id": 1420208}}, {"model": "metainfo.source", "pk": 3221, "fields": {"orig_filename": "Schwabe_Karl-Traugott-Friedrich_1819_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407f.", "author": "", "orig_id": 1420207}}, {"model": "metainfo.source", "pk": 3222, "fields": {"orig_filename": "Schuette-Warensberg_Adolph_1777_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412267}}, {"model": "metainfo.source", "pk": 3223, "fields": {"orig_filename": "Schuettelkopf_Balthasar_1863_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298f.", "author": "", "orig_id": 1412338}}, {"model": "metainfo.source", "pk": 3224, "fields": {"orig_filename": "Schuetzenberger_Alois_1792_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 306f.", "author": "", "orig_id": 1412440}}, {"model": "metainfo.source", "pk": 3225, "fields": {"orig_filename": "Schuetzenhofer_Viktor_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307", "author": "", "orig_id": 1412441}}, {"model": "metainfo.source", "pk": 3226, "fields": {"orig_filename": "Schuetzenhofer_Viktor_1878_1961.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307", "author": "", "orig_id": 1412442}}, {"model": "metainfo.source", "pk": 3227, "fields": {"orig_filename": "Schuetze_Theodor-Reinhold_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 306", "author": "", "orig_id": 1412439}}, {"model": "metainfo.source", "pk": 3228, "fields": {"orig_filename": "Schuetz_Amalie_1803_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 299f.", "author": "", "orig_id": 1412339}}, {"model": "metainfo.source", "pk": 3229, "fields": {"orig_filename": "Schuetz_Anna-Maria_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300", "author": "", "orig_id": 1412341}}, {"model": "metainfo.source", "pk": 3230, "fields": {"orig_filename": "Schuetz_Arnold_1832_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412434}}, {"model": "metainfo.source", "pk": 3231, "fields": {"orig_filename": "Schuetz_Arthur_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 304", "author": "", "orig_id": 1412359}}, {"model": "metainfo.source", "pk": 3232, "fields": {"orig_filename": "Schuetz_Berta_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300f.", "author": "", "orig_id": 1412343}}, {"model": "metainfo.source", "pk": 3233, "fields": {"orig_filename": "Schuetz_Bertha_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412347}}, {"model": "metainfo.source", "pk": 3234, "fields": {"orig_filename": "Schuetz_Christian_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300", "author": "", "orig_id": 1412342}}, {"model": "metainfo.source", "pk": 3235, "fields": {"orig_filename": "Schuetz_Emil_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301f.", "author": "", "orig_id": 1412348}}, {"model": "metainfo.source", "pk": 3236, "fields": {"orig_filename": "Schuetz_Friedrich_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 302", "author": "", "orig_id": 1412349}}, {"model": "metainfo.source", "pk": 3237, "fields": {"orig_filename": "Schuetz_Friedrich_1894_1985.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412351}}, {"model": "metainfo.source", "pk": 3238, "fields": {"orig_filename": "Schuetz_Gustav_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 302f.", "author": "", "orig_id": 1412350}}, {"model": "metainfo.source", "pk": 3239, "fields": {"orig_filename": "Schuetz_Ignatz-Zacharias_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412354}}, {"model": "metainfo.source", "pk": 3240, "fields": {"orig_filename": "Schuetz_Jakob-Abraham_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303f.", "author": "", "orig_id": 1412358}}, {"model": "metainfo.source", "pk": 3241, "fields": {"orig_filename": "Schuetz_Julius_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412356}}, {"model": "metainfo.source", "pk": 3242, "fields": {"orig_filename": "Schuetz_Julius_1876_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 304f.", "author": "", "orig_id": 1412360}}, {"model": "metainfo.source", "pk": 3243, "fields": {"orig_filename": "Schuetz_Karl-August_1790_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 299f.", "author": "", "orig_id": 1412340}}, {"model": "metainfo.source", "pk": 3244, "fields": {"orig_filename": "Schuetz_Karl_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412361}}, {"model": "metainfo.source", "pk": 3245, "fields": {"orig_filename": "Schuetz_Karl_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412355}}, {"model": "metainfo.source", "pk": 3246, "fields": {"orig_filename": "Schuetz_Ludwig-Richard_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412362}}, {"model": "metainfo.source", "pk": 3247, "fields": {"orig_filename": "Schuetz_Ludwig_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412357}}, {"model": "metainfo.source", "pk": 3248, "fields": {"orig_filename": "Schuetz_Maria-Anna_1759_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305f.", "author": "", "orig_id": 1412435}}, {"model": "metainfo.source", "pk": 3249, "fields": {"orig_filename": "Schuetz_Otto-Heinrich_1901_1981.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412352}}, {"model": "metainfo.source", "pk": 3250, "fields": {"orig_filename": "Schuetz_Paul-J_1891_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412353}}, {"model": "metainfo.source", "pk": 3251, "fields": {"orig_filename": "Schufinsky_Victor_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307f.", "author": "", "orig_id": 1412444}}, {"model": "metainfo.source", "pk": 3252, "fields": {"orig_filename": "Schufried_Dominik_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308", "author": "", "orig_id": 1412446}}, {"model": "metainfo.source", "pk": 3253, "fields": {"orig_filename": "Schufried_Jakob_1785_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308", "author": "", "orig_id": 1412445}}, {"model": "metainfo.source", "pk": 3254, "fields": {"orig_filename": "Schuhmeier_Franz_1864_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 311f.", "author": "", "orig_id": 1412454}}, {"model": "metainfo.source", "pk": 3255, "fields": {"orig_filename": "Schuh_Adam_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308f.", "author": "", "orig_id": 1412447}}, {"model": "metainfo.source", "pk": 3256, "fields": {"orig_filename": "Schuh_Carl_1806_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 309", "author": "", "orig_id": 1412448}}, {"model": "metainfo.source", "pk": 3257, "fields": {"orig_filename": "Schuh_Franz_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 309f.", "author": "", "orig_id": 1412449}}, {"model": "metainfo.source", "pk": 3258, "fields": {"orig_filename": "Schuh_Hermine_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 310", "author": "", "orig_id": 1412450}}, {"model": "metainfo.source", "pk": 3259, "fields": {"orig_filename": "Schuh_Rudolf_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 310f.", "author": "", "orig_id": 1412451}}, {"model": "metainfo.source", "pk": 3260, "fields": {"orig_filename": "Schukic_Lazar_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 312", "author": "", "orig_id": 1412455}}, {"model": "metainfo.source", "pk": 3261, "fields": {"orig_filename": "Schukowitz_Hans_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 312f.", "author": "", "orig_id": 1412456}}, {"model": "metainfo.source", "pk": 3262, "fields": {"orig_filename": "Schulbaum_Moses_1833_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 313", "author": "", "orig_id": 1411047}}, {"model": "metainfo.source", "pk": 3263, "fields": {"orig_filename": "Schuldes_Julius_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 313f.", "author": "", "orig_id": 1411048}}, {"model": "metainfo.source", "pk": 3264, "fields": {"orig_filename": "Schulek_Frigyes_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 314f.", "author": "", "orig_id": 1411049}}, {"model": "metainfo.source", "pk": 3265, "fields": {"orig_filename": "Schulek_Vilmos_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 315f.", "author": "", "orig_id": 1411050}}, {"model": "metainfo.source", "pk": 3266, "fields": {"orig_filename": "Schulenburg_Hans-Daniel-Matthias_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316", "author": "", "orig_id": 1411051}}, {"model": "metainfo.source", "pk": 3267, "fields": {"orig_filename": "Schuler-Libloy_Friedrich_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 319f.", "author": "", "orig_id": 1411059}}, {"model": "metainfo.source", "pk": 3268, "fields": {"orig_filename": "Schuler_Carl-Franz_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316f.", "author": "", "orig_id": 1411052}}, {"model": "metainfo.source", "pk": 3269, "fields": {"orig_filename": "Schuler_Franz_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 317", "author": "", "orig_id": 1411054}}, {"model": "metainfo.source", "pk": 3270, "fields": {"orig_filename": "Schuler_Hans_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 317f.", "author": "", "orig_id": 1411055}}, {"model": "metainfo.source", "pk": 3271, "fields": {"orig_filename": "Schuler_Johann_1770_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 318", "author": "", "orig_id": 1411057}}, {"model": "metainfo.source", "pk": 3272, "fields": {"orig_filename": "Schuler_Johann_1800_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 318f.", "author": "", "orig_id": 1411056}}, {"model": "metainfo.source", "pk": 3273, "fields": {"orig_filename": "Schuler_Josef_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 319", "author": "", "orig_id": 1411058}}, {"model": "metainfo.source", "pk": 3274, "fields": {"orig_filename": "Schuler_Walter_1891_1976.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316", "author": "", "orig_id": 1411053}}, {"model": "metainfo.source", "pk": 3275, "fields": {"orig_filename": "Schulheim_Hyacinth_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 320", "author": "", "orig_id": 1411060}}, {"model": "metainfo.source", "pk": 3276, "fields": {"orig_filename": "Schulhoff_Erwin_1894_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 322f.", "author": "", "orig_id": 1411065}}, {"model": "metainfo.source", "pk": 3277, "fields": {"orig_filename": "Schulhoff_Julius_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 323", "author": "", "orig_id": 1411066}}, {"model": "metainfo.source", "pk": 3278, "fields": {"orig_filename": "Schulhof_Josef_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 320f.", "author": "", "orig_id": 1411061}}, {"model": "metainfo.source", "pk": 3279, "fields": {"orig_filename": "Schulhof_Leopold_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 321", "author": "", "orig_id": 1411063}}, {"model": "metainfo.source", "pk": 3280, "fields": {"orig_filename": "Schulhof_Stanislav_1864_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 321f.", "author": "", "orig_id": 1411064}}, {"model": "metainfo.source", "pk": 3281, "fields": {"orig_filename": "Schuller-Goetzburg_Eduard_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 330", "author": "", "orig_id": 1411158}}, {"model": "metainfo.source", "pk": 3282, "fields": {"orig_filename": "Schullern-Schrattenhofen_Anton_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 330f.", "author": "", "orig_id": 1411159}}, {"model": "metainfo.source", "pk": 3283, "fields": {"orig_filename": "Schullern-Schrattenhofen_Heinrich_1865_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 331", "author": "", "orig_id": 1411160}}, {"model": "metainfo.source", "pk": 3284, "fields": {"orig_filename": "Schullern-Schrattenhofen_Hermann_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 331f.", "author": "", "orig_id": 1411161}}, {"model": "metainfo.source", "pk": 3285, "fields": {"orig_filename": "Schullerus_Adolf_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 332f.", "author": "", "orig_id": 1411162}}, {"model": "metainfo.source", "pk": 3286, "fields": {"orig_filename": "Schullerus_Eduard_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333", "author": "", "orig_id": 1411163}}, {"model": "metainfo.source", "pk": 3287, "fields": {"orig_filename": "Schullerus_Fritz_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333f.", "author": "", "orig_id": 1411164}}, {"model": "metainfo.source", "pk": 3288, "fields": {"orig_filename": "Schullerus_Gustav-Adolf_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 334", "author": "", "orig_id": 1411166}}, {"model": "metainfo.source", "pk": 3289, "fields": {"orig_filename": "Schullerus_Pauline_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 334f.", "author": "", "orig_id": 1411236}}, {"model": "metainfo.source", "pk": 3290, "fields": {"orig_filename": "Schullerus_Trude_1889_1981.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333f.", "author": "", "orig_id": 1411165}}, {"model": "metainfo.source", "pk": 3291, "fields": {"orig_filename": "Schuller_Albert_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 323f.", "author": "", "orig_id": 1411069}}, {"model": "metainfo.source", "pk": 3292, "fields": {"orig_filename": "Schuller_Alois_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411071}}, {"model": "metainfo.source", "pk": 3293, "fields": {"orig_filename": "Schuller_Betty_1860_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 327f.", "author": "", "orig_id": 1411152}}, {"model": "metainfo.source", "pk": 3294, "fields": {"orig_filename": "Schuller_Friedrich_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411145}}, {"model": "metainfo.source", "pk": 3295, "fields": {"orig_filename": "Schuller_Georg-Adolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 325f.", "author": "", "orig_id": 1411147}}, {"model": "metainfo.source", "pk": 3296, "fields": {"orig_filename": "Schuller_Georg_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 325", "author": "", "orig_id": 1411146}}, {"model": "metainfo.source", "pk": 3297, "fields": {"orig_filename": "Schuller_Guenther_1904_1995.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411070}}, {"model": "metainfo.source", "pk": 3298, "fields": {"orig_filename": "Schuller_Gustav_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326", "author": "", "orig_id": 1411148}}, {"model": "metainfo.source", "pk": 3299, "fields": {"orig_filename": "Schuller_Hermann_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326", "author": "", "orig_id": 1411149}}, {"model": "metainfo.source", "pk": 3300, "fields": {"orig_filename": "Schuller_Johann-Karl_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326f.", "author": "", "orig_id": 1411150}}, {"model": "metainfo.source", "pk": 3301, "fields": {"orig_filename": "Schuller_Ludwig-Friedrich_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 327f.", "author": "", "orig_id": 1411151}}, {"model": "metainfo.source", "pk": 3302, "fields": {"orig_filename": "Schuller_Marie_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 328", "author": "", "orig_id": 1411153}}, {"model": "metainfo.source", "pk": 3303, "fields": {"orig_filename": "Schuller_Michael-Gottlieb_1802_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 328f.", "author": "", "orig_id": 1411154}}, {"model": "metainfo.source", "pk": 3304, "fields": {"orig_filename": "Schuller_Moriz_1825_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329", "author": "", "orig_id": 1411155}}, {"model": "metainfo.source", "pk": 3305, "fields": {"orig_filename": "Schuller_Richard_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329", "author": "", "orig_id": 1411156}}, {"model": "metainfo.source", "pk": 3306, "fields": {"orig_filename": "Schuller_Wenzel_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329f.", "author": "", "orig_id": 1411157}}, {"model": "metainfo.source", "pk": 3307, "fields": {"orig_filename": "Schuloff_Robert_1883_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 335f.", "author": "", "orig_id": 1411237}}, {"model": "metainfo.source", "pk": 3308, "fields": {"orig_filename": "Schuloff_Theodor_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 336", "author": "", "orig_id": 1411238}}, {"model": "metainfo.source", "pk": 3309, "fields": {"orig_filename": "Schulpe-Toeroekkanizsa_Georg_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 336f.", "author": "", "orig_id": 1411239}}, {"model": "metainfo.source", "pk": 3310, "fields": {"orig_filename": "Schultes_Joseph-August_1773_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 338f.", "author": "", "orig_id": 1419764}}, {"model": "metainfo.source", "pk": 3311, "fields": {"orig_filename": "Schultes_Julius-Hermann_1804_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 339f.", "author": "", "orig_id": 1419765}}, {"model": "metainfo.source", "pk": 3312, "fields": {"orig_filename": "Schultes_Sigismund_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 340", "author": "", "orig_id": 1419767}}, {"model": "metainfo.source", "pk": 3313, "fields": {"orig_filename": "Schulte_Albert_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 337", "author": "", "orig_id": 1419761}}, {"model": "metainfo.source", "pk": 3314, "fields": {"orig_filename": "Schulte_Julius_1881_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 337f.", "author": "", "orig_id": 1419763}}, {"model": "metainfo.source", "pk": 3315, "fields": {"orig_filename": "Schultheiss_Ernst_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 340f.", "author": "", "orig_id": 1419768}}, {"model": "metainfo.source", "pk": 3316, "fields": {"orig_filename": "Schultzen_Anna_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 341", "author": "", "orig_id": 1419769}}, {"model": "metainfo.source", "pk": 3317, "fields": {"orig_filename": "Schulz-Strassnitzki_Leopold-Karl_1803_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 353f.", "author": "", "orig_id": 1419838}}, {"model": "metainfo.source", "pk": 3318, "fields": {"orig_filename": "Schulzer-Mueggenburg_Stephan_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 356f.", "author": "", "orig_id": 1419886}}, {"model": "metainfo.source", "pk": 3319, "fields": {"orig_filename": "Schulze_Franz-Eilhard_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 354f.", "author": "", "orig_id": 1419884}}, {"model": "metainfo.source", "pk": 3320, "fields": {"orig_filename": "Schulze_Karoline_1745_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 355f.", "author": "", "orig_id": 1419885}}, {"model": "metainfo.source", "pk": 3321, "fields": {"orig_filename": "Schulzig_Franz-Joseph-Florian_1787_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 357", "author": "", "orig_id": 1419887}}, {"model": "metainfo.source", "pk": 3322, "fields": {"orig_filename": "Schulzova_Anezka_1868_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 357f.", "author": "", "orig_id": 1419888}}, {"model": "metainfo.source", "pk": 3323, "fields": {"orig_filename": "Schulz_Alwin_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 341f.", "author": "", "orig_id": 1419770}}, {"model": "metainfo.source", "pk": 3324, "fields": {"orig_filename": "Schulz_Antonin_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342", "author": "", "orig_id": 1419771}}, {"model": "metainfo.source", "pk": 3325, "fields": {"orig_filename": "Schroff_Emanuel-Stephan_1799_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 249f.", "author": "", "orig_id": 1411875}}, {"model": "metainfo.source", "pk": 3326, "fields": {"orig_filename": "Schroff_Karl-Damian_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 250f.", "author": "", "orig_id": 1411877}}, {"model": "metainfo.source", "pk": 3327, "fields": {"orig_filename": "Schroff_Karl_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 250", "author": "", "orig_id": 1411876}}, {"model": "metainfo.source", "pk": 3328, "fields": {"orig_filename": "Schroll_Anton_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 251f.", "author": "", "orig_id": 1411878}}, {"model": "metainfo.source", "pk": 3329, "fields": {"orig_filename": "Schroll_Beda_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 252f.", "author": "", "orig_id": 1411879}}, {"model": "metainfo.source", "pk": 3330, "fields": {"orig_filename": "Schroll_Benedict_1790_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253", "author": "", "orig_id": 1411880}}, {"model": "metainfo.source", "pk": 3331, "fields": {"orig_filename": "Schroll_Benedikt_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253", "author": "", "orig_id": 1411881}}, {"model": "metainfo.source", "pk": 3332, "fields": {"orig_filename": "Schroll_Caspar-Melchior-Balthasar_1756_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253f.", "author": "", "orig_id": 1411882}}, {"model": "metainfo.source", "pk": 3333, "fields": {"orig_filename": "Schroll_Josef_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 254", "author": "", "orig_id": 1411883}}, {"model": "metainfo.source", "pk": 3334, "fields": {"orig_filename": "Schroth_Albine_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 254f.", "author": "", "orig_id": 1411884}}, {"model": "metainfo.source", "pk": 3335, "fields": {"orig_filename": "Schroth_Alexander_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256", "author": "", "orig_id": 1411888}}, {"model": "metainfo.source", "pk": 3336, "fields": {"orig_filename": "Schroth_Andreas_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255", "author": "", "orig_id": 1411885}}, {"model": "metainfo.source", "pk": 3337, "fields": {"orig_filename": "Schroth_Emanuel_1832_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255", "author": "", "orig_id": 1411886}}, {"model": "metainfo.source", "pk": 3338, "fields": {"orig_filename": "Schroth_Eugen_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255f.", "author": "", "orig_id": 1411887}}, {"model": "metainfo.source", "pk": 3339, "fields": {"orig_filename": "Schroth_Jakob_1773_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256", "author": "", "orig_id": 1411889}}, {"model": "metainfo.source", "pk": 3340, "fields": {"orig_filename": "Schroth_Johann_1798_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256f.", "author": "", "orig_id": 1411961}}, {"model": "metainfo.source", "pk": 3341, "fields": {"orig_filename": "Schroth_Karl_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411962}}, {"model": "metainfo.source", "pk": 3342, "fields": {"orig_filename": "Schroth_Karl_1898_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411963}}, {"model": "metainfo.source", "pk": 3343, "fields": {"orig_filename": "Schrottenbach_Heinrich_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 262", "author": "", "orig_id": 1411977}}, {"model": "metainfo.source", "pk": 3344, "fields": {"orig_filename": "Schrottenbach_Heinz_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 262f.", "author": "", "orig_id": 1411978}}, {"model": "metainfo.source", "pk": 3345, "fields": {"orig_filename": "Schrotter_Ignaz_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 263", "author": "", "orig_id": 1411979}}, {"model": "metainfo.source", "pk": 3346, "fields": {"orig_filename": "Schrott_Alois_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257f.", "author": "", "orig_id": 1411965}}, {"model": "metainfo.source", "pk": 3347, "fields": {"orig_filename": "Schrott_Anton_1801_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411966}}, {"model": "metainfo.source", "pk": 3348, "fields": {"orig_filename": "Schrott_Christian_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258f.", "author": "", "orig_id": 1411969}}, {"model": "metainfo.source", "pk": 3349, "fields": {"orig_filename": "Schrott_Ferdinand_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 259", "author": "", "orig_id": 1411970}}, {"model": "metainfo.source", "pk": 3350, "fields": {"orig_filename": "Schrott_Hans_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 259f.", "author": "", "orig_id": 1411971}}, {"model": "metainfo.source", "pk": 3351, "fields": {"orig_filename": "Schrott_Jakob_1804_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 260", "author": "", "orig_id": 1411972}}, {"model": "metainfo.source", "pk": 3352, "fields": {"orig_filename": "Schrott_Josip_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 260f.", "author": "", "orig_id": 1411973}}, {"model": "metainfo.source", "pk": 3353, "fields": {"orig_filename": "Schrott_Maria_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 261", "author": "", "orig_id": 1411974}}, {"model": "metainfo.source", "pk": 3354, "fields": {"orig_filename": "Schrott_Othmar_1883_1963.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258", "author": "", "orig_id": 1411968}}, {"model": "metainfo.source", "pk": 3355, "fields": {"orig_filename": "Schrott_Vincenz_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 261f.", "author": "", "orig_id": 1411975}}, {"model": "metainfo.source", "pk": 3356, "fields": {"orig_filename": "Schrotzberg_Franz_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 263f.", "author": "", "orig_id": 1411980}}, {"model": "metainfo.source", "pk": 3357, "fields": {"orig_filename": "Schruf_Toni_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 264f.", "author": "", "orig_id": 1411981}}, {"model": "metainfo.source", "pk": 3358, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Emil_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 265f.", "author": "", "orig_id": 1411983}}, {"model": "metainfo.source", "pk": 3359, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Lothar_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 266f.", "author": "", "orig_id": 1412052}}, {"model": "metainfo.source", "pk": 3360, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Marianne_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 267", "author": "", "orig_id": 1412053}}, {"model": "metainfo.source", "pk": 3361, "fields": {"orig_filename": "Schrutka_Ignaz_1802_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 266", "author": "", "orig_id": 1411984}}, {"model": "metainfo.source", "pk": 3362, "fields": {"orig_filename": "Schrutka_Mauritius-Kanicensis_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 265", "author": "", "orig_id": 1411982}}, {"model": "metainfo.source", "pk": 3363, "fields": {"orig_filename": "Schrutz_Andreas_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 267f.", "author": "", "orig_id": 1412054}}, {"model": "metainfo.source", "pk": 3364, "fields": {"orig_filename": "Schrutz_Demetrius_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 268", "author": "", "orig_id": 1412055}}, {"model": "metainfo.source", "pk": 3365, "fields": {"orig_filename": "Schubauer_Josef_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 268f.", "author": "", "orig_id": 1412056}}, {"model": "metainfo.source", "pk": 3366, "fields": {"orig_filename": "Schubert-Soldern_Eduard-Viktor_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 277f.", "author": "", "orig_id": 1412150}}, {"model": "metainfo.source", "pk": 3367, "fields": {"orig_filename": "Schubert-Soldern_Fortunat_1867_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278f.", "author": "", "orig_id": 1412154}}, {"model": "metainfo.source", "pk": 3368, "fields": {"orig_filename": "Schubert-Soldern_Rainer_1900_1974.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 279", "author": "", "orig_id": 1412155}}, {"model": "metainfo.source", "pk": 3369, "fields": {"orig_filename": "Schubert-Soldern_Victor_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278", "author": "", "orig_id": 1412153}}, {"model": "metainfo.source", "pk": 3370, "fields": {"orig_filename": "Schubert_Andreas-Theodor_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412065}}, {"model": "metainfo.source", "pk": 3371, "fields": {"orig_filename": "Schubert_Andreas_1767_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 269f.", "author": "", "orig_id": 1412057}}, {"model": "metainfo.source", "pk": 3372, "fields": {"orig_filename": "Schubert_Andreas_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 269f.", "author": "", "orig_id": 1412058}}, {"model": "metainfo.source", "pk": 3373, "fields": {"orig_filename": "Schubert_Ferdinand-Lukas_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 270f.", "author": "", "orig_id": 1412060}}, {"model": "metainfo.source", "pk": 3374, "fields": {"orig_filename": "Schubert_Ferdinand_1824_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 270", "author": "", "orig_id": 1412059}}, {"model": "metainfo.source", "pk": 3375, "fields": {"orig_filename": "Schubert_Franz-Peter_1797_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 271ff.", "author": "", "orig_id": 1412061}}, {"model": "metainfo.source", "pk": 3376, "fields": {"orig_filename": "Schubert_Franz-Theodor_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412062}}, {"model": "metainfo.source", "pk": 3377, "fields": {"orig_filename": "Schubert_Heinrich-Karl_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274f.", "author": "", "orig_id": 1412066}}, {"model": "metainfo.source", "pk": 3378, "fields": {"orig_filename": "Schubert_Hermann_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275", "author": "", "orig_id": 1412067}}, {"model": "metainfo.source", "pk": 3379, "fields": {"orig_filename": "Schubert_Ignaz_1785_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412063}}, {"model": "metainfo.source", "pk": 3380, "fields": {"orig_filename": "Schubert_Joseph_1754_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275", "author": "", "orig_id": 1412068}}, {"model": "metainfo.source", "pk": 3381, "fields": {"orig_filename": "Schubert_Karl_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275f.", "author": "", "orig_id": 1412069}}, {"model": "metainfo.source", "pk": 3382, "fields": {"orig_filename": "Schubert_Karl_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 276", "author": "", "orig_id": 1412071}}, {"model": "metainfo.source", "pk": 3383, "fields": {"orig_filename": "Schubert_Maria-Theresia_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412064}}, {"model": "metainfo.source", "pk": 3384, "fields": {"orig_filename": "Schubert_Ottokar_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 276f.", "author": "", "orig_id": 1412072}}, {"model": "metainfo.source", "pk": 3385, "fields": {"orig_filename": "Schubert_Otto_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278", "author": "", "orig_id": 1412152}}, {"model": "metainfo.source", "pk": 3386, "fields": {"orig_filename": "Schubert_Richard_1876_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 277", "author": "", "orig_id": 1412149}}, {"model": "metainfo.source", "pk": 3387, "fields": {"orig_filename": "Schuchardt_Hugo_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 282f.", "author": "", "orig_id": 1412164}}, {"model": "metainfo.source", "pk": 3388, "fields": {"orig_filename": "Schuchart_August_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 283f.", "author": "", "orig_id": 1412165}}, {"model": "metainfo.source", "pk": 3389, "fields": {"orig_filename": "Schuchter_Joseph_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 284", "author": "", "orig_id": 1412166}}, {"model": "metainfo.source", "pk": 3390, "fields": {"orig_filename": "Schuch_Carl-Eduard_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 279f.", "author": "", "orig_id": 1412157}}, {"model": "metainfo.source", "pk": 3391, "fields": {"orig_filename": "Schuch_Clementine_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 280f.", "author": "", "orig_id": 1412158}}, {"model": "metainfo.source", "pk": 3392, "fields": {"orig_filename": "Schuch_Ernst-Gottfried_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 281", "author": "", "orig_id": 1412159}}, {"model": "metainfo.source", "pk": 3393, "fields": {"orig_filename": "Schuch_Julius-Maria-Franz_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 281f.", "author": "", "orig_id": 1412160}}, {"model": "metainfo.source", "pk": 3394, "fields": {"orig_filename": "Schuch_Leopold_1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 282", "author": "", "orig_id": 1412161}}, {"model": "metainfo.source", "pk": 3395, "fields": {"orig_filename": "Schudrich_Jakub_1906_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285", "author": "", "orig_id": 1412167}}, {"model": "metainfo.source", "pk": 3396, "fields": {"orig_filename": "Schuech-Capanema_Wilhelm_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285f.", "author": "", "orig_id": 1412169}}, {"model": "metainfo.source", "pk": 3397, "fields": {"orig_filename": "Schuecht_Franz_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286", "author": "", "orig_id": 1412170}}, {"model": "metainfo.source", "pk": 3398, "fields": {"orig_filename": "Schuech_Rochus_1788_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285f.", "author": "", "orig_id": 1412168}}, {"model": "metainfo.source", "pk": 3399, "fields": {"orig_filename": "Schuecker_Heinrich_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287", "author": "", "orig_id": 1412172}}, {"model": "metainfo.source", "pk": 3400, "fields": {"orig_filename": "Schuecker_Joseph-E_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287", "author": "", "orig_id": 1412173}}, {"model": "metainfo.source", "pk": 3401, "fields": {"orig_filename": "Schuecker_Karl_1836_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287f.", "author": "", "orig_id": 1412174}}, {"model": "metainfo.source", "pk": 3402, "fields": {"orig_filename": "Schuecker_Zdenko_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 288", "author": "", "orig_id": 1412175}}, {"model": "metainfo.source", "pk": 3403, "fields": {"orig_filename": "Schuecking_Alfred_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 288f.", "author": "", "orig_id": 1412244}}, {"model": "metainfo.source", "pk": 3404, "fields": {"orig_filename": "Schuecktanz_Anton_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289", "author": "", "orig_id": 1412246}}, {"model": "metainfo.source", "pk": 3405, "fields": {"orig_filename": "Schuecktanz_Karl_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289", "author": "", "orig_id": 1412245}}, {"model": "metainfo.source", "pk": 3406, "fields": {"orig_filename": "Schueler_Friedrich-Julius_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289f.", "author": "", "orig_id": 1412247}}, {"model": "metainfo.source", "pk": 3407, "fields": {"orig_filename": "Schueler_Max-Joseph_1818_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 290", "author": "", "orig_id": 1412248}}, {"model": "metainfo.source", "pk": 3408, "fields": {"orig_filename": "Schueller_Franz_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 290f.", "author": "", "orig_id": 1412249}}, {"model": "metainfo.source", "pk": 3409, "fields": {"orig_filename": "Schueller_Maximilian_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291", "author": "", "orig_id": 1412251}}, {"model": "metainfo.source", "pk": 3410, "fields": {"orig_filename": "Schueller_Otto-Alois_1892_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291", "author": "", "orig_id": 1412250}}, {"model": "metainfo.source", "pk": 3411, "fields": {"orig_filename": "Schuenke_Robert_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291f.", "author": "", "orig_id": 1412252}}, {"model": "metainfo.source", "pk": 3412, "fields": {"orig_filename": "Schuerer-Waldheim_Anton_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 292f.", "author": "", "orig_id": 1412254}}, {"model": "metainfo.source", "pk": 3413, "fields": {"orig_filename": "Schuerer-Waldheim_Anton_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294", "author": "", "orig_id": 1412259}}, {"model": "metainfo.source", "pk": 3414, "fields": {"orig_filename": "Schuerer-Waldheim_Fritz_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 293f.", "author": "", "orig_id": 1412256}}, {"model": "metainfo.source", "pk": 3415, "fields": {"orig_filename": "Schuerer-Waldheim_Helena_1859_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 293", "author": "", "orig_id": 1412255}}, {"model": "metainfo.source", "pk": 3416, "fields": {"orig_filename": "Schuerer-Waldheim_Ludwig_1861_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 295", "author": "", "orig_id": 1412260}}, {"model": "metainfo.source", "pk": 3417, "fields": {"orig_filename": "Schuerer-Waldheim_Max_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294", "author": "", "orig_id": 1412257}}, {"model": "metainfo.source", "pk": 3418, "fields": {"orig_filename": "Schuerer-Waldheim_Rudolf_1832_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294f.", "author": "", "orig_id": 1412258}}, {"model": "metainfo.source", "pk": 3419, "fields": {"orig_filename": "Schuerer_Franz-De-Paula_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 292", "author": "", "orig_id": 1412253}}, {"model": "metainfo.source", "pk": 3420, "fields": {"orig_filename": "Schuerff_Hans_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 295f.", "author": "", "orig_id": 1412261}}, {"model": "metainfo.source", "pk": 3421, "fields": {"orig_filename": "Schuermayer_Ignaz-Heinrich_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 296", "author": "", "orig_id": 1412262}}, {"model": "metainfo.source", "pk": 3422, "fields": {"orig_filename": "Schuessler_Rudolf_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 296f.", "author": "", "orig_id": 1412263}}, {"model": "metainfo.source", "pk": 3423, "fields": {"orig_filename": "Schuetky_Fernande_1845_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412265}}, {"model": "metainfo.source", "pk": 3424, "fields": {"orig_filename": "Schuetky_Franz-Josef_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 297f.", "author": "", "orig_id": 1412264}}, {"model": "metainfo.source", "pk": 3425, "fields": {"orig_filename": "Schuetky_Richard_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412266}}, {"model": "metainfo.source", "pk": 3426, "fields": {"orig_filename": "Schreiber_Josef_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 195", "author": "", "orig_id": 1411414}}, {"model": "metainfo.source", "pk": 3427, "fields": {"orig_filename": "Schreiber_Josef_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 195f.", "author": "", "orig_id": 1411415}}, {"model": "metainfo.source", "pk": 3428, "fields": {"orig_filename": "Schreiber_Karl_1733_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 196", "author": "", "orig_id": 1411417}}, {"model": "metainfo.source", "pk": 3429, "fields": {"orig_filename": "Schreiber_Karl_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 197", "author": "", "orig_id": 1411418}}, {"model": "metainfo.source", "pk": 3430, "fields": {"orig_filename": "Schreiber_Moses_1762_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 197f.", "author": "", "orig_id": 1411419}}, {"model": "metainfo.source", "pk": 3431, "fields": {"orig_filename": "Schreiber_Simon_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 198", "author": "", "orig_id": 1411420}}, {"model": "metainfo.source", "pk": 3432, "fields": {"orig_filename": "Schreiblmayr_Petrus_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 200f.", "author": "", "orig_id": 1411491}}, {"model": "metainfo.source", "pk": 3433, "fields": {"orig_filename": "Schreier_Maximilian_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 201f.", "author": "", "orig_id": 1411492}}, {"model": "metainfo.source", "pk": 3434, "fields": {"orig_filename": "Schreier_Maximilian_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203", "author": "", "orig_id": 1411497}}, {"model": "metainfo.source", "pk": 3435, "fields": {"orig_filename": "Schreier_Otto_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 202", "author": "", "orig_id": 1411493}}, {"model": "metainfo.source", "pk": 3436, "fields": {"orig_filename": "Schreier_Schulim_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 202f.", "author": "", "orig_id": 1411496}}, {"model": "metainfo.source", "pk": 3437, "fields": {"orig_filename": "Schreier_Theodor_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203", "author": "", "orig_id": 1411498}}, {"model": "metainfo.source", "pk": 3438, "fields": {"orig_filename": "Schreier_Uri-Schrage-Feiwel-Halevi_1819_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203f.", "author": "", "orig_id": 1411499}}, {"model": "metainfo.source", "pk": 3439, "fields": {"orig_filename": "Schreiner_Abraham_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204", "author": "", "orig_id": 1411500}}, {"model": "metainfo.source", "pk": 3440, "fields": {"orig_filename": "Schreiner_Adolf_1823_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204", "author": "", "orig_id": 1411501}}, {"model": "metainfo.source", "pk": 3441, "fields": {"orig_filename": "Schreiner_Anton_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204f.", "author": "", "orig_id": 1411503}}, {"model": "metainfo.source", "pk": 3442, "fields": {"orig_filename": "Schreiner_Emerich_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 205f.", "author": "", "orig_id": 1411504}}, {"model": "metainfo.source", "pk": 3443, "fields": {"orig_filename": "Schreiner_Franz_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 206", "author": "", "orig_id": 1411506}}, {"model": "metainfo.source", "pk": 3444, "fields": {"orig_filename": "Schreiner_Franz_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 206f.", "author": "", "orig_id": 1411507}}, {"model": "metainfo.source", "pk": 3445, "fields": {"orig_filename": "Schreiner_Friedrich-Karl-Gustav_1863_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 205f.", "author": "", "orig_id": 1411505}}, {"model": "metainfo.source", "pk": 3446, "fields": {"orig_filename": "Schreiner_Gustav-Franz-Xav_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 208f.", "author": "", "orig_id": 1411510}}, {"model": "metainfo.source", "pk": 3447, "fields": {"orig_filename": "Schreiner_Gustav_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 207", "author": "", "orig_id": 1411508}}, {"model": "metainfo.source", "pk": 3448, "fields": {"orig_filename": "Schreiner_Gustav_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 207f.", "author": "", "orig_id": 1411509}}, {"model": "metainfo.source", "pk": 3449, "fields": {"orig_filename": "Schreiner_Jakob_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 209", "author": "", "orig_id": 1411511}}, {"model": "metainfo.source", "pk": 3450, "fields": {"orig_filename": "Schreiner_Johann-Nep_1766_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 209f.", "author": "", "orig_id": 1411512}}, {"model": "metainfo.source", "pk": 3451, "fields": {"orig_filename": "Schreiner_Josef-Johann-Nep_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 210", "author": "", "orig_id": 1411513}}, {"model": "metainfo.source", "pk": 3452, "fields": {"orig_filename": "Schreiner_Karl_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 210f.", "author": "", "orig_id": 1411514}}, {"model": "metainfo.source", "pk": 3453, "fields": {"orig_filename": "Schreiner_Martin-Mordekhai_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 211", "author": "", "orig_id": 1411588}}, {"model": "metainfo.source", "pk": 3454, "fields": {"orig_filename": "Schreiner_Moriz_1824_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 211f.", "author": "", "orig_id": 1411589}}, {"model": "metainfo.source", "pk": 3455, "fields": {"orig_filename": "Schreiner_Rupert_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 212f.", "author": "", "orig_id": 1411590}}, {"model": "metainfo.source", "pk": 3456, "fields": {"orig_filename": "Schreiter_Franz-Xav_1801_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213", "author": "", "orig_id": 1411592}}, {"model": "metainfo.source", "pk": 3457, "fields": {"orig_filename": "Schreiter_Franz_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213", "author": "", "orig_id": 1411591}}, {"model": "metainfo.source", "pk": 3458, "fields": {"orig_filename": "Schreitter-Schwarzenfeld_Adolf_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213f.", "author": "", "orig_id": 1411593}}, {"model": "metainfo.source", "pk": 3459, "fields": {"orig_filename": "Schreker_Franz_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 214f.", "author": "", "orig_id": 1411594}}, {"model": "metainfo.source", "pk": 3460, "fields": {"orig_filename": "Schrems_Johann_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 215", "author": "", "orig_id": 1411595}}, {"model": "metainfo.source", "pk": 3461, "fields": {"orig_filename": "Schrenck-Notzing-Egmating_Aloys-Josef_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 216", "author": "", "orig_id": 1411596}}, {"model": "metainfo.source", "pk": 3462, "fields": {"orig_filename": "Schrenk_Anton_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217", "author": "", "orig_id": 1411598}}, {"model": "metainfo.source", "pk": 3463, "fields": {"orig_filename": "Schrenk_Franz_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 216f.", "author": "", "orig_id": 1411597}}, {"model": "metainfo.source", "pk": 3464, "fields": {"orig_filename": "Schrenk_Wenzl_1849_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217", "author": "", "orig_id": 1411599}}, {"model": "metainfo.source", "pk": 3465, "fields": {"orig_filename": "Schrenzel_Moses_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217f.", "author": "", "orig_id": 1411600}}, {"model": "metainfo.source", "pk": 3466, "fields": {"orig_filename": "Schreter_Gustav-Adolph_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 218", "author": "", "orig_id": 1411601}}, {"model": "metainfo.source", "pk": 3467, "fields": {"orig_filename": "Schretter_Georg_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 218f.", "author": "", "orig_id": 1411602}}, {"model": "metainfo.source", "pk": 3468, "fields": {"orig_filename": "Schretter_Josef_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 219", "author": "", "orig_id": 1411603}}, {"model": "metainfo.source", "pk": 3469, "fields": {"orig_filename": "Schreuer_Hans_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 219f.", "author": "", "orig_id": 1411605}}, {"model": "metainfo.source", "pk": 3470, "fields": {"orig_filename": "Schreuer_Zdenko_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220", "author": "", "orig_id": 1411606}}, {"model": "metainfo.source", "pk": 3471, "fields": {"orig_filename": "Schreyber_Franz-Sal_1796_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220f.", "author": "", "orig_id": 1411608}}, {"model": "metainfo.source", "pk": 3472, "fields": {"orig_filename": "Schreyer_Adalbert_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411610}}, {"model": "metainfo.source", "pk": 3473, "fields": {"orig_filename": "Schreyer_Adalbert_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221f.", "author": "", "orig_id": 1411609}}, {"model": "metainfo.source", "pk": 3474, "fields": {"orig_filename": "Schreyer_Alois_1859_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411611}}, {"model": "metainfo.source", "pk": 3475, "fields": {"orig_filename": "Schreyer_Friedrich_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222", "author": "", "orig_id": 1411614}}, {"model": "metainfo.source", "pk": 3476, "fields": {"orig_filename": "Schreyer_Isaac_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222f.", "author": "", "orig_id": 1411680}}, {"model": "metainfo.source", "pk": 3477, "fields": {"orig_filename": "Schreyer_Marcell_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411682}}, {"model": "metainfo.source", "pk": 3478, "fields": {"orig_filename": "Schreyer_Renata_1897_1983.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411612}}, {"model": "metainfo.source", "pk": 3479, "fields": {"orig_filename": "Schreyer_Richard_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223f.", "author": "", "orig_id": 1411683}}, {"model": "metainfo.source", "pk": 3480, "fields": {"orig_filename": "Schreyvogel_Joseph_1768_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 224f.", "author": "", "orig_id": 1411684}}, {"model": "metainfo.source", "pk": 3481, "fields": {"orig_filename": "Schriefer_Wilhelm_1865_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 225", "author": "", "orig_id": 1411685}}, {"model": "metainfo.source", "pk": 3482, "fields": {"orig_filename": "Schroeckenfux_Carl_1847_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411690}}, {"model": "metainfo.source", "pk": 3483, "fields": {"orig_filename": "Schroeckenfux_Franz-Paul_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411689}}, {"model": "metainfo.source", "pk": 3484, "fields": {"orig_filename": "Schroeckenfux_Franz_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 225f.", "author": "", "orig_id": 1411688}}, {"model": "metainfo.source", "pk": 3485, "fields": {"orig_filename": "Schroeckenfux_Gottlieb_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226f.", "author": "", "orig_id": 1411692}}, {"model": "metainfo.source", "pk": 3486, "fields": {"orig_filename": "Schroeckenfux_Michael_1848_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411691}}, {"model": "metainfo.source", "pk": 3487, "fields": {"orig_filename": "Schroeckenstein_Franz-Xav_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 227", "author": "", "orig_id": 1411693}}, {"model": "metainfo.source", "pk": 3488, "fields": {"orig_filename": "Schroeckinger-Neudenberg_Julius_1813_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 228", "author": "", "orig_id": 1411695}}, {"model": "metainfo.source", "pk": 3489, "fields": {"orig_filename": "Schroeckinger_Carl-Johann-Franz_1798_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 227", "author": "", "orig_id": 1411694}}, {"model": "metainfo.source", "pk": 3490, "fields": {"orig_filename": "Schroeder_Auguste_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411771}}, {"model": "metainfo.source", "pk": 3491, "fields": {"orig_filename": "Schroeder_Eduard-August_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 229f.", "author": "", "orig_id": 1411697}}, {"model": "metainfo.source", "pk": 3492, "fields": {"orig_filename": "Schroeder_Elisabeth_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411770}}, {"model": "metainfo.source", "pk": 3493, "fields": {"orig_filename": "Schroeder_Heinrich_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230", "author": "", "orig_id": 1411698}}, {"model": "metainfo.source", "pk": 3494, "fields": {"orig_filename": "Schroeder_Johann_1869_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230", "author": "", "orig_id": 1411699}}, {"model": "metainfo.source", "pk": 3495, "fields": {"orig_filename": "Schroeder_Julius_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230f.", "author": "", "orig_id": 1411700}}, {"model": "metainfo.source", "pk": 3496, "fields": {"orig_filename": "Schroeder_Leopold_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 231f.", "author": "", "orig_id": 1411701}}, {"model": "metainfo.source", "pk": 3497, "fields": {"orig_filename": "Schroeder_Sophie_1781_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 232ff.", "author": "", "orig_id": 1411769}}, {"model": "metainfo.source", "pk": 3498, "fields": {"orig_filename": "Schroeder_Wilhelmine_1804_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 234f.", "author": "", "orig_id": 1411773}}, {"model": "metainfo.source", "pk": 3499, "fields": {"orig_filename": "Schroedinger_Rudolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 235", "author": "", "orig_id": 1411775}}, {"model": "metainfo.source", "pk": 3500, "fields": {"orig_filename": "Schroedl_Anton_1820_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 235f.", "author": "", "orig_id": 1411776}}, {"model": "metainfo.source", "pk": 3501, "fields": {"orig_filename": "Schroedl_Norbert-Michael_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 237f.", "author": "", "orig_id": 1411779}}, {"model": "metainfo.source", "pk": 3502, "fields": {"orig_filename": "Schroedl_Norbert_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236f.", "author": "", "orig_id": 1411778}}, {"model": "metainfo.source", "pk": 3503, "fields": {"orig_filename": "Schroeer_Arnold_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 238", "author": "", "orig_id": 1411780}}, {"model": "metainfo.source", "pk": 3504, "fields": {"orig_filename": "Schroeer_Karl-Julius_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 238f.", "author": "", "orig_id": 1411781}}, {"model": "metainfo.source", "pk": 3505, "fields": {"orig_filename": "Schroeer_Robert_1856_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411783}}, {"model": "metainfo.source", "pk": 3506, "fields": {"orig_filename": "Schroeer_Therese_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411784}}, {"model": "metainfo.source", "pk": 3507, "fields": {"orig_filename": "Schroeer_Tobias-Gottfried_1791_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240f.", "author": "", "orig_id": 1411785}}, {"model": "metainfo.source", "pk": 3508, "fields": {"orig_filename": "Schroell_Josef-Anton_1820_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 242", "author": "", "orig_id": 1411787}}, {"model": "metainfo.source", "pk": 3509, "fields": {"orig_filename": "Schroeter_Carl-Josef_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411863}}, {"model": "metainfo.source", "pk": 3510, "fields": {"orig_filename": "Schroeter_Ernst-Manfred_1880_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411864}}, {"model": "metainfo.source", "pk": 3511, "fields": {"orig_filename": "Schroeter_Johann-Heinrich-Friedrich_1738_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 242f.", "author": "", "orig_id": 1411788}}, {"model": "metainfo.source", "pk": 3512, "fields": {"orig_filename": "Schroeter_Moritz_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411792}}, {"model": "metainfo.source", "pk": 3513, "fields": {"orig_filename": "Schroeter_Moriz_1813_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243f.", "author": "", "orig_id": 1411791}}, {"model": "metainfo.source", "pk": 3514, "fields": {"orig_filename": "Schroetter-Kristelli_Alfred_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 245f.", "author": "", "orig_id": 1411869}}, {"model": "metainfo.source", "pk": 3515, "fields": {"orig_filename": "Schroetter-Kristelli_Antonie_1828_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 247", "author": "", "orig_id": 1411872}}, {"model": "metainfo.source", "pk": 3516, "fields": {"orig_filename": "Schroetter-Kristelli_Anton_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 246f.", "author": "", "orig_id": 1411871}}, {"model": "metainfo.source", "pk": 3517, "fields": {"orig_filename": "Schroetter-Kristelli_Hermann_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 247f.", "author": "", "orig_id": 1411873}}, {"model": "metainfo.source", "pk": 3518, "fields": {"orig_filename": "Schroetter-Kristelli_Leopold_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 248f.", "author": "", "orig_id": 1411874}}, {"model": "metainfo.source", "pk": 3519, "fields": {"orig_filename": "Schroetter_Bernhard_1772_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411865}}, {"model": "metainfo.source", "pk": 3520, "fields": {"orig_filename": "Schroetter_Hans_1891_1965.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 246", "author": "", "orig_id": 1411870}}, {"model": "metainfo.source", "pk": 3521, "fields": {"orig_filename": "Schroetter_Hugo_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244f.", "author": "", "orig_id": 1411866}}, {"model": "metainfo.source", "pk": 3522, "fields": {"orig_filename": "Schorisch_Robert_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 142f.", "author": "", "orig_id": 1411029}}, {"model": "metainfo.source", "pk": 3523, "fields": {"orig_filename": "Schornboeck_Alois_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 144", "author": "", "orig_id": 1411032}}, {"model": "metainfo.source", "pk": 3524, "fields": {"orig_filename": "Schornstein_Max_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 144f.", "author": "", "orig_id": 1411033}}, {"model": "metainfo.source", "pk": 3525, "fields": {"orig_filename": "Schorn_Johann_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 143", "author": "", "orig_id": 1411030}}, {"model": "metainfo.source", "pk": 3526, "fields": {"orig_filename": "Schorn_Josef_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 143f.", "author": "", "orig_id": 1411031}}, {"model": "metainfo.source", "pk": 3527, "fields": {"orig_filename": "Schorr_Anshel_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 145", "author": "", "orig_id": 1411034}}, {"model": "metainfo.source", "pk": 3528, "fields": {"orig_filename": "Schorr_Mayer_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 145f.", "author": "", "orig_id": 1411035}}, {"model": "metainfo.source", "pk": 3529, "fields": {"orig_filename": "Schorr_Moses_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 146f.", "author": "", "orig_id": 1411036}}, {"model": "metainfo.source", "pk": 3530, "fields": {"orig_filename": "Schorr_Naphtali-Mendel_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147", "author": "", "orig_id": 1411038}}, {"model": "metainfo.source", "pk": 3531, "fields": {"orig_filename": "Schorr_Osias-Heschel_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147", "author": "", "orig_id": 1411037}}, {"model": "metainfo.source", "pk": 3532, "fields": {"orig_filename": "Schor_Baruch_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 141", "author": "", "orig_id": 1411026}}, {"model": "metainfo.source", "pk": 3533, "fields": {"orig_filename": "Schosberger-Tornya_Heinrich_1833_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 148", "author": "", "orig_id": 1411040}}, {"model": "metainfo.source", "pk": 3534, "fields": {"orig_filename": "Schosberger-Tornya_Sigmund_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147f.", "author": "", "orig_id": 1411039}}, {"model": "metainfo.source", "pk": 3535, "fields": {"orig_filename": "Schosberger-Tornya_Simon-Wolf_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 148f.", "author": "", "orig_id": 1411041}}, {"model": "metainfo.source", "pk": 3536, "fields": {"orig_filename": "Schossel_Andras_1824_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 149", "author": "", "orig_id": 1411042}}, {"model": "metainfo.source", "pk": 3537, "fields": {"orig_filename": "Schosser_Anton_1801_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 149f.", "author": "", "orig_id": 1411043}}, {"model": "metainfo.source", "pk": 3538, "fields": {"orig_filename": "Schottky_Julius-Max_1797_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 153f.", "author": "", "orig_id": 1411122}}, {"model": "metainfo.source", "pk": 3539, "fields": {"orig_filename": "Schottlaender_Julius_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 154f.", "author": "", "orig_id": 1411123}}, {"model": "metainfo.source", "pk": 3540, "fields": {"orig_filename": "Schott_Anselm_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 150", "author": "", "orig_id": 1411044}}, {"model": "metainfo.source", "pk": 3541, "fields": {"orig_filename": "Schott_Anton_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 150f.", "author": "", "orig_id": 1411045}}, {"model": "metainfo.source", "pk": 3542, "fields": {"orig_filename": "Schott_Ferdinand_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 151", "author": "", "orig_id": 1411046}}, {"model": "metainfo.source", "pk": 3543, "fields": {"orig_filename": "Schott_Heinrich-Wilhelm_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 152f.", "author": "", "orig_id": 1411120}}, {"model": "metainfo.source", "pk": 3544, "fields": {"orig_filename": "Schott_Heinrich_1759_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 151f.", "author": "", "orig_id": 1411119}}, {"model": "metainfo.source", "pk": 3545, "fields": {"orig_filename": "Schouppe_Alfred_1812_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 155", "author": "", "orig_id": 1411124}}, {"model": "metainfo.source", "pk": 3546, "fields": {"orig_filename": "Schowanek_Johann-Karl-Andreas_1905_1964.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 156", "author": "", "orig_id": 1411126}}, {"model": "metainfo.source", "pk": 3547, "fields": {"orig_filename": "Schowanek_Johann_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 155f.", "author": "", "orig_id": 1411125}}, {"model": "metainfo.source", "pk": 3548, "fields": {"orig_filename": "Schrader_Clemens_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 156f.", "author": "", "orig_id": 1411127}}, {"model": "metainfo.source", "pk": 3549, "fields": {"orig_filename": "Schrader_Hans_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 157f.", "author": "", "orig_id": 1411128}}, {"model": "metainfo.source", "pk": 3550, "fields": {"orig_filename": "Schraffl_Joseph_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 158f.", "author": "", "orig_id": 1411130}}, {"model": "metainfo.source", "pk": 3551, "fields": {"orig_filename": "Schramek_Emilie_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164", "author": "", "orig_id": 1411140}}, {"model": "metainfo.source", "pk": 3552, "fields": {"orig_filename": "Schramek_Johann-Josef_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164f.", "author": "", "orig_id": 1411142}}, {"model": "metainfo.source", "pk": 3553, "fields": {"orig_filename": "Schramek_Josef_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 165", "author": "", "orig_id": 1411143}}, {"model": "metainfo.source", "pk": 3554, "fields": {"orig_filename": "Schramek_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164", "author": "", "orig_id": 1411141}}, {"model": "metainfo.source", "pk": 3555, "fields": {"orig_filename": "Schramek_Max_1879_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 165f.", "author": "", "orig_id": 1411144}}, {"model": "metainfo.source", "pk": 3556, "fields": {"orig_filename": "Schraml_Carl_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 166", "author": "", "orig_id": 1411213}}, {"model": "metainfo.source", "pk": 3557, "fields": {"orig_filename": "Schraml_Franz_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 166f.", "author": "", "orig_id": 1411214}}, {"model": "metainfo.source", "pk": 3558, "fields": {"orig_filename": "Schramm-Zittau_Rudolf_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 170f.", "author": "", "orig_id": 1411220}}, {"model": "metainfo.source", "pk": 3559, "fields": {"orig_filename": "Schrammel_Anton_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171", "author": "", "orig_id": 1411221}}, {"model": "metainfo.source", "pk": 3560, "fields": {"orig_filename": "Schrammel_Joseph_1852_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171f.", "author": "", "orig_id": 1411223}}, {"model": "metainfo.source", "pk": 3561, "fields": {"orig_filename": "Schramm_Anna_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 167f.", "author": "", "orig_id": 1411215}}, {"model": "metainfo.source", "pk": 3562, "fields": {"orig_filename": "Schramm_August_1907_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 168", "author": "", "orig_id": 1411216}}, {"model": "metainfo.source", "pk": 3563, "fields": {"orig_filename": "Schramm_Hilary-Paulin_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 168f.", "author": "", "orig_id": 1411217}}, {"model": "metainfo.source", "pk": 3564, "fields": {"orig_filename": "Schramm_Johann-Heinrich_1810_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 169", "author": "", "orig_id": 1411218}}, {"model": "metainfo.source", "pk": 3565, "fields": {"orig_filename": "Schramm_Julian_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 169f.", "author": "", "orig_id": 1411219}}, {"model": "metainfo.source", "pk": 3566, "fields": {"orig_filename": "Schram_Adolf_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 159", "author": "", "orig_id": 1411131}}, {"model": "metainfo.source", "pk": 3567, "fields": {"orig_filename": "Schram_Alois-Hans_1864_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 159f.", "author": "", "orig_id": 1411132}}, {"model": "metainfo.source", "pk": 3568, "fields": {"orig_filename": "Schram_August_1843_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 160", "author": "", "orig_id": 1411133}}, {"model": "metainfo.source", "pk": 3569, "fields": {"orig_filename": "Schram_Franz-Leopold-Matthias_1758_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 160f.", "author": "", "orig_id": 1411134}}, {"model": "metainfo.source", "pk": 3570, "fields": {"orig_filename": "Schram_Josef_1831_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 161", "author": "", "orig_id": 1411135}}, {"model": "metainfo.source", "pk": 3571, "fields": {"orig_filename": "Schram_Karl_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 161f.", "author": "", "orig_id": 1411136}}, {"model": "metainfo.source", "pk": 3572, "fields": {"orig_filename": "Schram_Robert-Gustav_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 162f.", "author": "", "orig_id": 1411137}}, {"model": "metainfo.source", "pk": 3573, "fields": {"orig_filename": "Schram_Stephan_1821_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 163", "author": "", "orig_id": 1411138}}, {"model": "metainfo.source", "pk": 3574, "fields": {"orig_filename": "Schram_Wilhelm-Karl_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 163f.", "author": "", "orig_id": 1411139}}, {"model": "metainfo.source", "pk": 3575, "fields": {"orig_filename": "Schrangl_Franz_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 173", "author": "", "orig_id": 1411224}}, {"model": "metainfo.source", "pk": 3576, "fields": {"orig_filename": "Schranil_Josef_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 173f.", "author": "", "orig_id": 1411225}}, {"model": "metainfo.source", "pk": 3577, "fields": {"orig_filename": "Schranil_Wenzel_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 174", "author": "", "orig_id": 1411226}}, {"model": "metainfo.source", "pk": 3578, "fields": {"orig_filename": "Schranka_Eduard-Maria_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 177", "author": "", "orig_id": 1411231}}, {"model": "metainfo.source", "pk": 3579, "fields": {"orig_filename": "Schrank_Franz-De-Paula_1747_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 174f.", "author": "", "orig_id": 1411227}}, {"model": "metainfo.source", "pk": 3580, "fields": {"orig_filename": "Schrank_Johann-Ferdinand_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 175f.", "author": "", "orig_id": 1411228}}, {"model": "metainfo.source", "pk": 3581, "fields": {"orig_filename": "Schrank_Josef_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 176", "author": "", "orig_id": 1411229}}, {"model": "metainfo.source", "pk": 3582, "fields": {"orig_filename": "Schrank_Ludwig_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 176f.", "author": "", "orig_id": 1411230}}, {"model": "metainfo.source", "pk": 3583, "fields": {"orig_filename": "Schrantz_Alfred_1867_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 177f.", "author": "", "orig_id": 1411232}}, {"model": "metainfo.source", "pk": 3584, "fields": {"orig_filename": "Schrantz_Johann_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411304}}, {"model": "metainfo.source", "pk": 3585, "fields": {"orig_filename": "Schrantz_Otto_1871_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411233}}, {"model": "metainfo.source", "pk": 3586, "fields": {"orig_filename": "Schrantz_Wilhelm_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411235}}, {"model": "metainfo.source", "pk": 3587, "fields": {"orig_filename": "Schrattenbach_Vinzenz-Joseph_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 180f.", "author": "", "orig_id": 1411308}}, {"model": "metainfo.source", "pk": 3588, "fields": {"orig_filename": "Schratt_Johann-Chrysostomus_1773_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 179", "author": "", "orig_id": 1411306}}, {"model": "metainfo.source", "pk": 3589, "fields": {"orig_filename": "Schratt_Johann_1803_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178f.", "author": "", "orig_id": 1411305}}, {"model": "metainfo.source", "pk": 3590, "fields": {"orig_filename": "Schratt_Katharina_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 179f.", "author": "", "orig_id": 1411307}}, {"model": "metainfo.source", "pk": 3591, "fields": {"orig_filename": "Schrauf_Albrecht_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 181f.", "author": "", "orig_id": 1411309}}, {"model": "metainfo.source", "pk": 3592, "fields": {"orig_filename": "Schrauf_Karl_1835_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 182f.", "author": "", "orig_id": 1411310}}, {"model": "metainfo.source", "pk": 3593, "fields": {"orig_filename": "Schreckenthal_Hannes_1873_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183", "author": "", "orig_id": 1411312}}, {"model": "metainfo.source", "pk": 3594, "fields": {"orig_filename": "Schrecker_Ignaz-Franz_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183f.", "author": "", "orig_id": 1411314}}, {"model": "metainfo.source", "pk": 3595, "fields": {"orig_filename": "Schreck_Adam_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183", "author": "", "orig_id": 1411311}}, {"model": "metainfo.source", "pk": 3596, "fields": {"orig_filename": "Schreder_Julius-Aloysius_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 184f.", "author": "", "orig_id": 1411316}}, {"model": "metainfo.source", "pk": 3597, "fields": {"orig_filename": "Schreder_Karl_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185", "author": "", "orig_id": 1411317}}, {"model": "metainfo.source", "pk": 3598, "fields": {"orig_filename": "Schreder_Rudolf_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185", "author": "", "orig_id": 1411318}}, {"model": "metainfo.source", "pk": 3599, "fields": {"orig_filename": "Schreiber-Krieger_Adele_1871_1957.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 196", "author": "", "orig_id": 1411416}}, {"model": "metainfo.source", "pk": 3600, "fields": {"orig_filename": "Schreibers_Joseph-Ludwig_1793_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 198f.", "author": "", "orig_id": 1411421}}, {"model": "metainfo.source", "pk": 3601, "fields": {"orig_filename": "Schreibers_Karl-Franz_1775_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 199f.", "author": "", "orig_id": 1411422}}, {"model": "metainfo.source", "pk": 3602, "fields": {"orig_filename": "Schreiber_Abraham-Samuel-Benjamin-Wolf_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185f.", "author": "", "orig_id": 1411319}}, {"model": "metainfo.source", "pk": 3603, "fields": {"orig_filename": "Schreiber_Adalbert_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191", "author": "", "orig_id": 1411405}}, {"model": "metainfo.source", "pk": 3604, "fields": {"orig_filename": "Schreiber_Adolf_1881_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 186", "author": "", "orig_id": 1411320}}, {"model": "metainfo.source", "pk": 3605, "fields": {"orig_filename": "Schreiber_Alex_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411403}}, {"model": "metainfo.source", "pk": 3606, "fields": {"orig_filename": "Schreiber_Alfred_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 186f.", "author": "", "orig_id": 1411321}}, {"model": "metainfo.source", "pk": 3607, "fields": {"orig_filename": "Schreiber_August_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 187", "author": "", "orig_id": 1411322}}, {"model": "metainfo.source", "pk": 3608, "fields": {"orig_filename": "Schreiber_Bernhard_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 187f.", "author": "", "orig_id": 1411323}}, {"model": "metainfo.source", "pk": 3609, "fields": {"orig_filename": "Schreiber_Clara_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 188", "author": "", "orig_id": 1411324}}, {"model": "metainfo.source", "pk": 3610, "fields": {"orig_filename": "Schreiber_David_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 188f.", "author": "", "orig_id": 1411325}}, {"model": "metainfo.source", "pk": 3611, "fields": {"orig_filename": "Schreiber_Egid_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 189", "author": "", "orig_id": 1411326}}, {"model": "metainfo.source", "pk": 3612, "fields": {"orig_filename": "Schreiber_Emanuel_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 189f.", "author": "", "orig_id": 1411327}}, {"model": "metainfo.source", "pk": 3613, "fields": {"orig_filename": "Schreiber_Franz_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411328}}, {"model": "metainfo.source", "pk": 3614, "fields": {"orig_filename": "Schreiber_Franz_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411402}}, {"model": "metainfo.source", "pk": 3615, "fields": {"orig_filename": "Schreiber_Franz_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190f.", "author": "", "orig_id": 1411404}}, {"model": "metainfo.source", "pk": 3616, "fields": {"orig_filename": "Schreiber_Friedrich_1879_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191", "author": "", "orig_id": 1411407}}, {"model": "metainfo.source", "pk": 3617, "fields": {"orig_filename": "Schreiber_Hans_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191f.", "author": "", "orig_id": 1411408}}, {"model": "metainfo.source", "pk": 3618, "fields": {"orig_filename": "Schreiber_Heinrich_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 192f.", "author": "", "orig_id": 1411409}}, {"model": "metainfo.source", "pk": 3619, "fields": {"orig_filename": "Schreiber_Johann-Max_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194", "author": "", "orig_id": 1411412}}, {"model": "metainfo.source", "pk": 3620, "fields": {"orig_filename": "Schreiber_Johann_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 193f.", "author": "", "orig_id": 1411410}}, {"model": "metainfo.source", "pk": 3621, "fields": {"orig_filename": "Schreiber_Johann_1845_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194", "author": "", "orig_id": 1411411}}, {"model": "metainfo.source", "pk": 3622, "fields": {"orig_filename": "Schreiber_Josef_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194f.", "author": "", "orig_id": 1411413}}, {"model": "metainfo.source", "pk": 3623, "fields": {"orig_filename": "Schoenthaler_Franz_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 95", "author": "", "orig_id": 1405890}}, {"model": "metainfo.source", "pk": 3624, "fields": {"orig_filename": "Schoenthaler_Jakob_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 95f.", "author": "", "orig_id": 1405891}}, {"model": "metainfo.source", "pk": 3625, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Franz-Simon_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 97", "author": "", "orig_id": 1405893}}, {"model": "metainfo.source", "pk": 3626, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Franz_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 96f.", "author": "", "orig_id": 1405892}}, {"model": "metainfo.source", "pk": 3627, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Paul_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 97f.", "author": "", "orig_id": 1405894}}, {"model": "metainfo.source", "pk": 3628, "fields": {"orig_filename": "Schoenwisner_Stephan_1738_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 98", "author": "", "orig_id": 1405896}}, {"model": "metainfo.source", "pk": 3629, "fields": {"orig_filename": "Schoen_Bruno_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 30f.", "author": "", "orig_id": 1405446}}, {"model": "metainfo.source", "pk": 3630, "fields": {"orig_filename": "Schoen_Eduard_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 31f.", "author": "", "orig_id": 1405447}}, {"model": "metainfo.source", "pk": 3631, "fields": {"orig_filename": "Schoen_Friedrich_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 32f.", "author": "", "orig_id": 1405448}}, {"model": "metainfo.source", "pk": 3632, "fields": {"orig_filename": "Schoen_Jacob_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 33", "author": "", "orig_id": 1405452}}, {"model": "metainfo.source", "pk": 3633, "fields": {"orig_filename": "Schoen_Johann-Bapt_1841_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 34f.", "author": "", "orig_id": 1405454}}, {"model": "metainfo.source", "pk": 3634, "fields": {"orig_filename": "Schoen_Johann-Carl_1805_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 35", "author": "", "orig_id": 1405455}}, {"model": "metainfo.source", "pk": 3635, "fields": {"orig_filename": "Schoen_Johann-Georg_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 35f.", "author": "", "orig_id": 1405456}}, {"model": "metainfo.source", "pk": 3636, "fields": {"orig_filename": "Schoen_Johann_1802_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 33f.", "author": "", "orig_id": 1405453}}, {"model": "metainfo.source", "pk": 3637, "fields": {"orig_filename": "Schoen_Josef_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 36f.", "author": "", "orig_id": 1405457}}, {"model": "metainfo.source", "pk": 3638, "fields": {"orig_filename": "Schoen_Josef_1809_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 37", "author": "", "orig_id": 1405458}}, {"model": "metainfo.source", "pk": 3639, "fields": {"orig_filename": "Schoen_Josef_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 37f.", "author": "", "orig_id": 1405459}}, {"model": "metainfo.source", "pk": 3640, "fields": {"orig_filename": "Schoen_Karl_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38", "author": "", "orig_id": 1405461}}, {"model": "metainfo.source", "pk": 3641, "fields": {"orig_filename": "Schoen_Lorenz_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38f.", "author": "", "orig_id": 1405462}}, {"model": "metainfo.source", "pk": 3642, "fields": {"orig_filename": "Schoen_Luise_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405463}}, {"model": "metainfo.source", "pk": 3643, "fields": {"orig_filename": "Schoen_Moritz_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405464}}, {"model": "metainfo.source", "pk": 3644, "fields": {"orig_filename": "Schoepf-Merei_Agoston_1805_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 105", "author": "", "orig_id": 1405959}}, {"model": "metainfo.source", "pk": 3645, "fields": {"orig_filename": "Schoepfer_Aemilian_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 105ff.", "author": "", "orig_id": 1405962}}, {"model": "metainfo.source", "pk": 3646, "fields": {"orig_filename": "Schoepfer_Franz-Xav_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 107", "author": "", "orig_id": 1405963}}, {"model": "metainfo.source", "pk": 3647, "fields": {"orig_filename": "Schoepfer_Friedrich-Anton_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 107f.", "author": "", "orig_id": 1405964}}, {"model": "metainfo.source", "pk": 3648, "fields": {"orig_filename": "Schoepfer_Heinrich_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 108", "author": "", "orig_id": 1405965}}, {"model": "metainfo.source", "pk": 3649, "fields": {"orig_filename": "Schoepfer_Jakob_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 108f.", "author": "", "orig_id": 1405966}}, {"model": "metainfo.source", "pk": 3650, "fields": {"orig_filename": "Schoepfer_Mathaeus-Michael_1739_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 109", "author": "", "orig_id": 1405967}}, {"model": "metainfo.source", "pk": 3651, "fields": {"orig_filename": "Schoepfleuthner_Anton_1845_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 109f.", "author": "", "orig_id": 1405968}}, {"model": "metainfo.source", "pk": 3652, "fields": {"orig_filename": "Schoepf_Albin-Franz_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 99", "author": "", "orig_id": 1405897}}, {"model": "metainfo.source", "pk": 3653, "fields": {"orig_filename": "Schoepf_Alois_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 102", "author": "", "orig_id": 1405954}}, {"model": "metainfo.source", "pk": 3654, "fields": {"orig_filename": "Schoepf_Bertrand_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 99f.", "author": "", "orig_id": 1405898}}, {"model": "metainfo.source", "pk": 3655, "fields": {"orig_filename": "Schoepf_Franz_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100", "author": "", "orig_id": 1405899}}, {"model": "metainfo.source", "pk": 3656, "fields": {"orig_filename": "Schoepf_Heinrich_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100", "author": "", "orig_id": 1442214}}, {"model": "metainfo.source", "pk": 3657, "fields": {"orig_filename": "Schoepf_Ignaz_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100f.", "author": "", "orig_id": 1405900}}, {"model": "metainfo.source", "pk": 3658, "fields": {"orig_filename": "Schoepf_Johann-Bapt_1824_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 101f.", "author": "", "orig_id": 1405902}}, {"model": "metainfo.source", "pk": 3659, "fields": {"orig_filename": "Schoepf_Johann_1811_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 101", "author": "", "orig_id": 1405901}}, {"model": "metainfo.source", "pk": 3660, "fields": {"orig_filename": "Schoepf_Josef_1745_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 102f.", "author": "", "orig_id": 1405955}}, {"model": "metainfo.source", "pk": 3661, "fields": {"orig_filename": "Schoepf_Josef_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 103", "author": "", "orig_id": 1405956}}, {"model": "metainfo.source", "pk": 3662, "fields": {"orig_filename": "Schoepf_Joseph-Anton_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 103f.", "author": "", "orig_id": 1405957}}, {"model": "metainfo.source", "pk": 3663, "fields": {"orig_filename": "Schoepf_Lorenz_1793_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104", "author": "", "orig_id": 1405960}}, {"model": "metainfo.source", "pk": 3664, "fields": {"orig_filename": "Schoepf_Peter-Paul_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104f.", "author": "", "orig_id": 1405958}}, {"model": "metainfo.source", "pk": 3665, "fields": {"orig_filename": "Schoepf_Peter_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104", "author": "", "orig_id": 1405961}}, {"model": "metainfo.source", "pk": 3666, "fields": {"orig_filename": "Schoepl_Gustav_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 110f.", "author": "", "orig_id": 1405969}}, {"model": "metainfo.source", "pk": 3667, "fields": {"orig_filename": "Schoeppe_Karl_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 111", "author": "", "orig_id": 1405970}}, {"model": "metainfo.source", "pk": 3668, "fields": {"orig_filename": "Schoeppe_Karl_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 111f.", "author": "", "orig_id": 1405971}}, {"model": "metainfo.source", "pk": 3669, "fields": {"orig_filename": "Schoeppl_Hugo_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 112", "author": "", "orig_id": 1405972}}, {"model": "metainfo.source", "pk": 3670, "fields": {"orig_filename": "Schoesler_Joseph-Johann_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 112f.", "author": "", "orig_id": 1405973}}, {"model": "metainfo.source", "pk": 3671, "fields": {"orig_filename": "Schofka_Octavius_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 113f.", "author": "", "orig_id": 1412239}}, {"model": "metainfo.source", "pk": 3672, "fields": {"orig_filename": "Schoibl_Leopold_1786_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 114", "author": "", "orig_id": 1412240}}, {"model": "metainfo.source", "pk": 3673, "fields": {"orig_filename": "Schoiswohl_Michael_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 114f.", "author": "", "orig_id": 1412241}}, {"model": "metainfo.source", "pk": 3674, "fields": {"orig_filename": "Scholcz_Szepesi-Rudolf_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 115", "author": "", "orig_id": 1412242}}, {"model": "metainfo.source", "pk": 3675, "fields": {"orig_filename": "Scholley_Otto_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 120", "author": "", "orig_id": 1412323}}, {"model": "metainfo.source", "pk": 3676, "fields": {"orig_filename": "Schollich_Ernst_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 120f.", "author": "", "orig_id": 1412324}}, {"model": "metainfo.source", "pk": 3677, "fields": {"orig_filename": "Scholl_Emil_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 115f.", "author": "", "orig_id": 1412243}}, {"model": "metainfo.source", "pk": 3678, "fields": {"orig_filename": "Scholl_Franz_1772_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 116f.", "author": "", "orig_id": 1412318}}, {"model": "metainfo.source", "pk": 3679, "fields": {"orig_filename": "Scholl_Georg_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 117", "author": "", "orig_id": 1412319}}, {"model": "metainfo.source", "pk": 3680, "fields": {"orig_filename": "Scholl_Heinrich_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118", "author": "", "orig_id": 1412320}}, {"model": "metainfo.source", "pk": 3681, "fields": {"orig_filename": "Scholl_Roland_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 119f.", "author": "", "orig_id": 1412322}}, {"model": "metainfo.source", "pk": 3682, "fields": {"orig_filename": "Scholtys_Hans-Heinz_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 121f.", "author": "", "orig_id": 1412325}}, {"model": "metainfo.source", "pk": 3683, "fields": {"orig_filename": "Scholtz-Matheocz_Johann-Emil_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123f.", "author": "", "orig_id": 1412331}}, {"model": "metainfo.source", "pk": 3684, "fields": {"orig_filename": "Scholtz_August_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122", "author": "", "orig_id": 1412326}}, {"model": "metainfo.source", "pk": 3685, "fields": {"orig_filename": "Scholtz_Friedrich_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122", "author": "", "orig_id": 1412327}}, {"model": "metainfo.source", "pk": 3686, "fields": {"orig_filename": "Scholtz_Gustav_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122f.", "author": "", "orig_id": 1412328}}, {"model": "metainfo.source", "pk": 3687, "fields": {"orig_filename": "Scholtz_Johan_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124", "author": "", "orig_id": 1412332}}, {"model": "metainfo.source", "pk": 3688, "fields": {"orig_filename": "Scholtz_Julius_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123", "author": "", "orig_id": 1412329}}, {"model": "metainfo.source", "pk": 3689, "fields": {"orig_filename": "Scholtz_Karl-August_1799_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123f.", "author": "", "orig_id": 1412330}}, {"model": "metainfo.source", "pk": 3690, "fields": {"orig_filename": "Scholz-Zelezny_Helene_1882_1974.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130", "author": "", "orig_id": 1412417}}, {"model": "metainfo.source", "pk": 3691, "fields": {"orig_filename": "Scholz_Adolf_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124", "author": "", "orig_id": 1412333}}, {"model": "metainfo.source", "pk": 3692, "fields": {"orig_filename": "Scholz_Alois_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124f.", "author": "", "orig_id": 1412334}}, {"model": "metainfo.source", "pk": 3693, "fields": {"orig_filename": "Scholz_Auguste_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 125", "author": "", "orig_id": 1412335}}, {"model": "metainfo.source", "pk": 3694, "fields": {"orig_filename": "Scholz_Benjamin_1786_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 125f.", "author": "", "orig_id": 1412336}}, {"model": "metainfo.source", "pk": 3695, "fields": {"orig_filename": "Scholz_Eduard_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 126f.", "author": "", "orig_id": 1412337}}, {"model": "metainfo.source", "pk": 3696, "fields": {"orig_filename": "Scholz_Erhard-Hugo_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412410}}, {"model": "metainfo.source", "pk": 3697, "fields": {"orig_filename": "Scholz_Heinrich-Karl_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127f.", "author": "", "orig_id": 1412412}}, {"model": "metainfo.source", "pk": 3698, "fields": {"orig_filename": "Scholz_Josefa_1765_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 129f.", "author": "", "orig_id": 1412414}}, {"model": "metainfo.source", "pk": 3699, "fields": {"orig_filename": "Scholz_Josef_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 128f.", "author": "", "orig_id": 1412413}}, {"model": "metainfo.source", "pk": 3700, "fields": {"orig_filename": "Scholz_Leopold_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 129", "author": "", "orig_id": 1412415}}, {"model": "metainfo.source", "pk": 3701, "fields": {"orig_filename": "Scholz_Marie_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130", "author": "", "orig_id": 1412416}}, {"model": "metainfo.source", "pk": 3702, "fields": {"orig_filename": "Scholz_Maximilian_1743_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130f.", "author": "", "orig_id": 1412418}}, {"model": "metainfo.source", "pk": 3703, "fields": {"orig_filename": "Scholz_Paul_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 131", "author": "", "orig_id": 1412419}}, {"model": "metainfo.source", "pk": 3704, "fields": {"orig_filename": "Scholz_Roman_1912_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 131f.", "author": "", "orig_id": 1412420}}, {"model": "metainfo.source", "pk": 3705, "fields": {"orig_filename": "Scholz_Wenzel_1787_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 132ff.", "author": "", "orig_id": 1412421}}, {"model": "metainfo.source", "pk": 3706, "fields": {"orig_filename": "Scholz_Wilhelm_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 134", "author": "", "orig_id": 1412422}}, {"model": "metainfo.source", "pk": 3707, "fields": {"orig_filename": "Scholz_Wilhelm_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 134f.", "author": "", "orig_id": 1412423}}, {"model": "metainfo.source", "pk": 3708, "fields": {"orig_filename": "Scholz_Wilhelm_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 135", "author": "", "orig_id": 1412424}}, {"model": "metainfo.source", "pk": 3709, "fields": {"orig_filename": "Schonka_Franz-Xav_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136", "author": "", "orig_id": 1412427}}, {"model": "metainfo.source", "pk": 3710, "fields": {"orig_filename": "Schonta-Seedank_Carl_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136", "author": "", "orig_id": 1412429}}, {"model": "metainfo.source", "pk": 3711, "fields": {"orig_filename": "Schonta-Seedank_Emmerich-Zeno_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136f.", "author": "", "orig_id": 1412428}}, {"model": "metainfo.source", "pk": 3712, "fields": {"orig_filename": "Schoof_Heinrich_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 137f.", "author": "", "orig_id": 1412430}}, {"model": "metainfo.source", "pk": 3713, "fields": {"orig_filename": "Schoosleitner_Franz_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 138f.", "author": "", "orig_id": 1412431}}, {"model": "metainfo.source", "pk": 3714, "fields": {"orig_filename": "Schopf_Franz_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139", "author": "", "orig_id": 1412432}}, {"model": "metainfo.source", "pk": 3715, "fields": {"orig_filename": "Schopf_Johann-Ev_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139", "author": "", "orig_id": 1412433}}, {"model": "metainfo.source", "pk": 3716, "fields": {"orig_filename": "Schopf_Wenzel-Gustav_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139f.", "author": "", "orig_id": 1411022}}, {"model": "metainfo.source", "pk": 3717, "fields": {"orig_filename": "Schopper_Klemens-Isidor_1878_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140", "author": "", "orig_id": 1411024}}, {"model": "metainfo.source", "pk": 3718, "fields": {"orig_filename": "Schopper_Valentin_1771_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140f.", "author": "", "orig_id": 1411025}}, {"model": "metainfo.source", "pk": 3719, "fields": {"orig_filename": "Schopp_Norbert_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140", "author": "", "orig_id": 1411023}}, {"model": "metainfo.source", "pk": 3720, "fields": {"orig_filename": "Schordan_Zsigmond_1794_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 141f.", "author": "", "orig_id": 1411027}}, {"model": "metainfo.source", "pk": 3721, "fields": {"orig_filename": "Schoreys_Frantisek-Josef_1872_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 142", "author": "", "orig_id": 1411028}}, {"model": "metainfo.source", "pk": 3722, "fields": {"orig_filename": "Schoenauer_Franz_1913_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 44", "author": "", "orig_id": 1405607}}, {"model": "metainfo.source", "pk": 3723, "fields": {"orig_filename": "Schoenauer_Johann-Michael_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45", "author": "", "orig_id": 1405620}}, {"model": "metainfo.source", "pk": 3724, "fields": {"orig_filename": "Schoenauer_Johann-Nep_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45", "author": "", "orig_id": 1405621}}, {"model": "metainfo.source", "pk": 3725, "fields": {"orig_filename": "Schoenauer_Johann_1778_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 44f.", "author": "", "orig_id": 1405608}}, {"model": "metainfo.source", "pk": 3726, "fields": {"orig_filename": "Schoenauer_Magdalena_1778_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45f.", "author": "", "orig_id": 1405622}}, {"model": "metainfo.source", "pk": 3727, "fields": {"orig_filename": "Schoenauer_Otto_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 46f.", "author": "", "orig_id": 1405623}}, {"model": "metainfo.source", "pk": 3728, "fields": {"orig_filename": "Schoenau_Johann-Nep_1753_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 43f.", "author": "", "orig_id": 1405605}}, {"model": "metainfo.source", "pk": 3729, "fields": {"orig_filename": "Schoenau_Johann_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 43", "author": "", "orig_id": 1405604}}, {"model": "metainfo.source", "pk": 3730, "fields": {"orig_filename": "Schoenbach_Anton-Emanuel_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 47f.", "author": "", "orig_id": 1405624}}, {"model": "metainfo.source", "pk": 3731, "fields": {"orig_filename": "Schoenbach_Josef_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48", "author": "", "orig_id": 1405625}}, {"model": "metainfo.source", "pk": 3732, "fields": {"orig_filename": "Schoenbauer_Vinzenz_1780_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48", "author": "", "orig_id": 1405626}}, {"model": "metainfo.source", "pk": 3733, "fields": {"orig_filename": "Schoenberger_Andreas-Corsinus_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49f.", "author": "", "orig_id": 1405630}}, {"model": "metainfo.source", "pk": 3734, "fields": {"orig_filename": "Schoenberger_Anton_1830_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 50", "author": "", "orig_id": 1405631}}, {"model": "metainfo.source", "pk": 3735, "fields": {"orig_filename": "Schoenberger_Bela_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 50f.", "author": "", "orig_id": 1405632}}, {"model": "metainfo.source", "pk": 3736, "fields": {"orig_filename": "Schoenberger_Bruno_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405633}}, {"model": "metainfo.source", "pk": 3737, "fields": {"orig_filename": "Schoenberger_Franz-Anton_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51f.", "author": "", "orig_id": 1405635}}, {"model": "metainfo.source", "pk": 3738, "fields": {"orig_filename": "Schoenberger_Hugo_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52", "author": "", "orig_id": 1405638}}, {"model": "metainfo.source", "pk": 3739, "fields": {"orig_filename": "Schoenberger_Hyazinth-Maria_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52f.", "author": "", "orig_id": 1405639}}, {"model": "metainfo.source", "pk": 3740, "fields": {"orig_filename": "Schoenberger_Lorenz-Adolf_1768_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 53", "author": "", "orig_id": 1405640}}, {"model": "metainfo.source", "pk": 3741, "fields": {"orig_filename": "Schoenberger_Richard_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52", "author": "", "orig_id": 1405636}}, {"model": "metainfo.source", "pk": 3742, "fields": {"orig_filename": "Schoenberger_Victor_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 53f.", "author": "", "orig_id": 1405641}}, {"model": "metainfo.source", "pk": 3743, "fields": {"orig_filename": "Schoenberg_Adolf_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405628}}, {"model": "metainfo.source", "pk": 3744, "fields": {"orig_filename": "Schoenberg_Johann-Nep_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48f.", "author": "", "orig_id": 1405627}}, {"model": "metainfo.source", "pk": 3745, "fields": {"orig_filename": "Schoenbichler_Carl-Hans_1920_1992.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55", "author": "", "orig_id": 1405755}}, {"model": "metainfo.source", "pk": 3746, "fields": {"orig_filename": "Schoenbichler_Johann-Bapt_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 54f.", "author": "", "orig_id": 1405642}}, {"model": "metainfo.source", "pk": 3747, "fields": {"orig_filename": "Schoenbichler_Johann-Emanuel_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55", "author": "", "orig_id": 1405644}}, {"model": "metainfo.source", "pk": 3748, "fields": {"orig_filename": "Schoenbichler_Karl_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55f.", "author": "", "orig_id": 1405756}}, {"model": "metainfo.source", "pk": 3749, "fields": {"orig_filename": "Schoenbichler_Philippine_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 54", "author": "", "orig_id": 1405643}}, {"model": "metainfo.source", "pk": 3750, "fields": {"orig_filename": "Schoenborn-Buchheim_Carl-Theodor_1790_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58f.", "author": "", "orig_id": 1405762}}, {"model": "metainfo.source", "pk": 3751, "fields": {"orig_filename": "Schoenborn_Adalbert-Josef_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 56", "author": "", "orig_id": 1405757}}, {"model": "metainfo.source", "pk": 3752, "fields": {"orig_filename": "Schoenborn_Franz-De-Paula_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 56f.", "author": "", "orig_id": 1405758}}, {"model": "metainfo.source", "pk": 3753, "fields": {"orig_filename": "Schoenborn_Friedrich_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 57f.", "author": "", "orig_id": 1405759}}, {"model": "metainfo.source", "pk": 3754, "fields": {"orig_filename": "Schoenborn_Johann_1864_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58", "author": "", "orig_id": 1405761}}, {"model": "metainfo.source", "pk": 3755, "fields": {"orig_filename": "Schoenborn_Karl_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58", "author": "", "orig_id": 1405760}}, {"model": "metainfo.source", "pk": 3756, "fields": {"orig_filename": "Schoenbrunner_Franz-Xav_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60", "author": "", "orig_id": 1405767}}, {"model": "metainfo.source", "pk": 3757, "fields": {"orig_filename": "Schoenbrunner_Ignaz-Johann_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59", "author": "", "orig_id": 1405764}}, {"model": "metainfo.source", "pk": 3758, "fields": {"orig_filename": "Schoenbrunner_Josef_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59f.", "author": "", "orig_id": 1405765}}, {"model": "metainfo.source", "pk": 3759, "fields": {"orig_filename": "Schoenbrunner_Karl_1832_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60", "author": "", "orig_id": 1405766}}, {"model": "metainfo.source", "pk": 3760, "fields": {"orig_filename": "Schoenbrunn_Hugo_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59", "author": "", "orig_id": 1405763}}, {"model": "metainfo.source", "pk": 3761, "fields": {"orig_filename": "Schoenburg-Hartenstein_Alexander_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60f.", "author": "", "orig_id": 1405768}}, {"model": "metainfo.source", "pk": 3762, "fields": {"orig_filename": "Schoenburg-Hartenstein_Alois_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 61f.", "author": "", "orig_id": 1405770}}, {"model": "metainfo.source", "pk": 3763, "fields": {"orig_filename": "Schoenburg-Hartenstein_Eduard_1787_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60f.", "author": "", "orig_id": 1405769}}, {"model": "metainfo.source", "pk": 3764, "fields": {"orig_filename": "Schoenburg-Hartenstein_Johannes_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 62f.", "author": "", "orig_id": 1405771}}, {"model": "metainfo.source", "pk": 3765, "fields": {"orig_filename": "Schoendorfer_Josef_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 63", "author": "", "orig_id": 1405772}}, {"model": "metainfo.source", "pk": 3766, "fields": {"orig_filename": "Schoenecker_Dionys_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64f.", "author": "", "orig_id": 1405776}}, {"model": "metainfo.source", "pk": 3767, "fields": {"orig_filename": "Schoenecker_Eduard_1885_1963.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 65", "author": "", "orig_id": 1405777}}, {"model": "metainfo.source", "pk": 3768, "fields": {"orig_filename": "Schoenefeldt_August_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 65f.", "author": "", "orig_id": 1405778}}, {"model": "metainfo.source", "pk": 3769, "fields": {"orig_filename": "Schoenerer_Alexandrine_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 66", "author": "", "orig_id": 1405780}}, {"model": "metainfo.source", "pk": 3770, "fields": {"orig_filename": "Schoenerer_Georg_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 66ff.", "author": "", "orig_id": 1405781}}, {"model": "metainfo.source", "pk": 3771, "fields": {"orig_filename": "Schoenerer_Mathias_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 68f.", "author": "", "orig_id": 1405782}}, {"model": "metainfo.source", "pk": 3772, "fields": {"orig_filename": "Schoenermark_Ludwig_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 69", "author": "", "orig_id": 1405783}}, {"model": "metainfo.source", "pk": 3773, "fields": {"orig_filename": "Schoeney_Lazarus_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 69f.", "author": "", "orig_id": 1405786}}, {"model": "metainfo.source", "pk": 3774, "fields": {"orig_filename": "Schoene_Hermann_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 63f.", "author": "", "orig_id": 1405773}}, {"model": "metainfo.source", "pk": 3775, "fields": {"orig_filename": "Schoene_Ludwig_1845_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64", "author": "", "orig_id": 1405774}}, {"model": "metainfo.source", "pk": 3776, "fields": {"orig_filename": "Schoene_Moric_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64", "author": "", "orig_id": 1405775}}, {"model": "metainfo.source", "pk": 3777, "fields": {"orig_filename": "Schoenfeldt_Karl_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405814}}, {"model": "metainfo.source", "pk": 3778, "fields": {"orig_filename": "Schoenfeldt_Luise_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 80", "author": "", "orig_id": 1405818}}, {"model": "metainfo.source", "pk": 3779, "fields": {"orig_filename": "Schoenfeldt_Maximilian_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405817}}, {"model": "metainfo.source", "pk": 3780, "fields": {"orig_filename": "Schoenfeldt_Rudolf_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405816}}, {"model": "metainfo.source", "pk": 3781, "fields": {"orig_filename": "Schoenfeld_Anton_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 70f.", "author": "", "orig_id": 1405788}}, {"model": "metainfo.source", "pk": 3782, "fields": {"orig_filename": "Schoenfeld_August_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71", "author": "", "orig_id": 1405790}}, {"model": "metainfo.source", "pk": 3783, "fields": {"orig_filename": "Schoenfeld_Baruch_1787_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71f.", "author": "", "orig_id": 1405791}}, {"model": "metainfo.source", "pk": 3784, "fields": {"orig_filename": "Schoenfeld_Constantin_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78f.", "author": "", "orig_id": 1405813}}, {"model": "metainfo.source", "pk": 3785, "fields": {"orig_filename": "Schoenfeld_Eduard_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 72f.", "author": "", "orig_id": 1405792}}, {"model": "metainfo.source", "pk": 3786, "fields": {"orig_filename": "Schoenfeld_Franz-Julius_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405804}}, {"model": "metainfo.source", "pk": 3787, "fields": {"orig_filename": "Schoenfeld_Heinrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 73", "author": "", "orig_id": 1405793}}, {"model": "metainfo.source", "pk": 3788, "fields": {"orig_filename": "Schoenfeld_Ignaz_1778_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 73f.", "author": "", "orig_id": 1405795}}, {"model": "metainfo.source", "pk": 3789, "fields": {"orig_filename": "Schoenfeld_Johann-Ferdinand_1750_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 74f.", "author": "", "orig_id": 1405798}}, {"model": "metainfo.source", "pk": 3790, "fields": {"orig_filename": "Schoenfeld_Josef_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 75f.", "author": "", "orig_id": 1405800}}, {"model": "metainfo.source", "pk": 3791, "fields": {"orig_filename": "Schoenfeld_Karl-Emil_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 76", "author": "", "orig_id": 1405801}}, {"model": "metainfo.source", "pk": 3792, "fields": {"orig_filename": "Schoenfeld_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405806}}, {"model": "metainfo.source", "pk": 3793, "fields": {"orig_filename": "Schoenfeld_Louise_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 76f.", "author": "", "orig_id": 1405802}}, {"model": "metainfo.source", "pk": 3794, "fields": {"orig_filename": "Schoenfeld_Peter_1784_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405807}}, {"model": "metainfo.source", "pk": 3795, "fields": {"orig_filename": "Schoenfeld_Rudolf_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78", "author": "", "orig_id": 1405809}}, {"model": "metainfo.source", "pk": 3796, "fields": {"orig_filename": "Schoenfeld_Theodor_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78f.", "author": "", "orig_id": 1405811}}, {"model": "metainfo.source", "pk": 3797, "fields": {"orig_filename": "Schoenfeld_Wenzel_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71", "author": "", "orig_id": 1419669}}, {"model": "metainfo.source", "pk": 3798, "fields": {"orig_filename": "Schoenhaber-Wengerot_Heinrich_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 80f.", "author": "", "orig_id": 1405819}}, {"model": "metainfo.source", "pk": 3799, "fields": {"orig_filename": "Schoenhals_Georg_1784_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 82", "author": "", "orig_id": 1405821}}, {"model": "metainfo.source", "pk": 3800, "fields": {"orig_filename": "Schoenhals_Karl_1788_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 81f.", "author": "", "orig_id": 1405820}}, {"model": "metainfo.source", "pk": 3801, "fields": {"orig_filename": "Schoenherr_David_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 82f.", "author": "", "orig_id": 1405822}}, {"model": "metainfo.source", "pk": 3802, "fields": {"orig_filename": "Schoenherr_Gyula_1864_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 83f.", "author": "", "orig_id": 1405824}}, {"model": "metainfo.source", "pk": 3803, "fields": {"orig_filename": "Schoenherr_Joseph_1809_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 84f.", "author": "", "orig_id": 1405826}}, {"model": "metainfo.source", "pk": 3804, "fields": {"orig_filename": "Schoenherr_Karl_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 85f.", "author": "", "orig_id": 1405827}}, {"model": "metainfo.source", "pk": 3805, "fields": {"orig_filename": "Schoenhoff_Leopold_1853_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 87", "author": "", "orig_id": 1405829}}, {"model": "metainfo.source", "pk": 3806, "fields": {"orig_filename": "Schoenhof_Egon_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 86f.", "author": "", "orig_id": 1405828}}, {"model": "metainfo.source", "pk": 3807, "fields": {"orig_filename": "Schoenholz_Friedrich-Anton_1801_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 87f.", "author": "", "orig_id": 1405719}}, {"model": "metainfo.source", "pk": 3808, "fields": {"orig_filename": "Schoeninger_Franz-Xav-Leopold_1790_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 89", "author": "", "orig_id": 1405721}}, {"model": "metainfo.source", "pk": 3809, "fields": {"orig_filename": "Schoeninger_Franz-Xav_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 88f.", "author": "", "orig_id": 1405720}}, {"model": "metainfo.source", "pk": 3810, "fields": {"orig_filename": "Schoenlaub_Fidelis_1805_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 89f.", "author": "", "orig_id": 1405722}}, {"model": "metainfo.source", "pk": 3811, "fields": {"orig_filename": "Schoenmann_Josef_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 90", "author": "", "orig_id": 1405723}}, {"model": "metainfo.source", "pk": 3812, "fields": {"orig_filename": "Schoenn_Alois_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 90f.", "author": "", "orig_id": 1405724}}, {"model": "metainfo.source", "pk": 3813, "fields": {"orig_filename": "Schoenn_Ricka_1867_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 91", "author": "", "orig_id": 1405725}}, {"model": "metainfo.source", "pk": 3814, "fields": {"orig_filename": "Schoenowsky-Schoenwies_Adalbert_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 91f.", "author": "", "orig_id": 1405726}}, {"model": "metainfo.source", "pk": 3815, "fields": {"orig_filename": "Schoenowsky-Schoenwies_Maximilian_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 92f.", "author": "", "orig_id": 1405727}}, {"model": "metainfo.source", "pk": 3816, "fields": {"orig_filename": "Schoenpflug_Fritz_1900_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 93", "author": "", "orig_id": 1405886}}, {"model": "metainfo.source", "pk": 3817, "fields": {"orig_filename": "Schoenschuetz_Josef_1788_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94", "author": "", "orig_id": 1405887}}, {"model": "metainfo.source", "pk": 3818, "fields": {"orig_filename": "Schoensteiner_Friedrich_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94f.", "author": "", "orig_id": 1405889}}, {"model": "metainfo.source", "pk": 3819, "fields": {"orig_filename": "Schoenstein_Karl_1796_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94", "author": "", "orig_id": 1405888}}, {"model": "metainfo.source", "pk": 3820, "fields": {"orig_filename": "Schnitzer_Casimir_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406", "author": "", "orig_id": 1406891}}, {"model": "metainfo.source", "pk": 3821, "fields": {"orig_filename": "Schnitzer_Ignaz_1839_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406f.", "author": "", "orig_id": 1406892}}, {"model": "metainfo.source", "pk": 3822, "fields": {"orig_filename": "Schnitzer_Manuel_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 407", "author": "", "orig_id": 1407292}}, {"model": "metainfo.source", "pk": 3823, "fields": {"orig_filename": "Schnitzler_Arthur_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 407ff.", "author": "", "orig_id": 1406893}}, {"model": "metainfo.source", "pk": 3824, "fields": {"orig_filename": "Schnitzler_Ferdinand_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 409f.", "author": "", "orig_id": 1406894}}, {"model": "metainfo.source", "pk": 3825, "fields": {"orig_filename": "Schnitzler_Johann_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 410f.", "author": "", "orig_id": 1406895}}, {"model": "metainfo.source", "pk": 3826, "fields": {"orig_filename": "Schnopfhagen_Emil_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 412", "author": "", "orig_id": 1406897}}, {"model": "metainfo.source", "pk": 3827, "fields": {"orig_filename": "Schnopfhagen_Franz_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 412f.", "author": "", "orig_id": 1406898}}, {"model": "metainfo.source", "pk": 3828, "fields": {"orig_filename": "Schnopfhagen_Hans_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 413f.", "author": "", "orig_id": 1406899}}, {"model": "metainfo.source", "pk": 3829, "fields": {"orig_filename": "Schnopfhagen_Hans_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 414", "author": "", "orig_id": 1406900}}, {"model": "metainfo.source", "pk": 3830, "fields": {"orig_filename": "Schnorr-Carolsfeld_Eduard_1790_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 415", "author": "", "orig_id": 1406902}}, {"model": "metainfo.source", "pk": 3831, "fields": {"orig_filename": "Schnorr-Carolsfeld_Julius-Veit-Hans_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 414f.", "author": "", "orig_id": 1406901}}, {"model": "metainfo.source", "pk": 3832, "fields": {"orig_filename": "Schnorr-Carolsfeld_Karl_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416", "author": "", "orig_id": 1406905}}, {"model": "metainfo.source", "pk": 3833, "fields": {"orig_filename": "Schnorr-Carolsfeld_Ludwig-Ferdinand_1788_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416", "author": "", "orig_id": 1406904}}, {"model": "metainfo.source", "pk": 3834, "fields": {"orig_filename": "Schnorr-Carolsfeld_Ludwig_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 415", "author": "", "orig_id": 1406903}}, {"model": "metainfo.source", "pk": 3835, "fields": {"orig_filename": "Schnuer-Peplowski_Stanislaw_1859_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416f.", "author": "", "orig_id": 1406906}}, {"model": "metainfo.source", "pk": 3836, "fields": {"orig_filename": "Schnuerer_Franz_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 417f.", "author": "", "orig_id": 1406907}}, {"model": "metainfo.source", "pk": 3837, "fields": {"orig_filename": "Schnuerer_Josef_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 418", "author": "", "orig_id": 1406908}}, {"model": "metainfo.source", "pk": 3838, "fields": {"orig_filename": "Schnuerer_Maria-Josefa_1889_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 418f.", "author": "", "orig_id": 1406909}}, {"model": "metainfo.source", "pk": 3839, "fields": {"orig_filename": "Schnur_David_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419", "author": "", "orig_id": 1406910}}, {"model": "metainfo.source", "pk": 3840, "fields": {"orig_filename": "Schnur_Harry-C_1907_1979.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419", "author": "", "orig_id": 1406911}}, {"model": "metainfo.source", "pk": 3841, "fields": {"orig_filename": "Schoberlechner_Caecilia_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427", "author": "", "orig_id": 1406924}}, {"model": "metainfo.source", "pk": 3842, "fields": {"orig_filename": "Schoberlechner_Franz-De-Paula-Jakob_1797_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 426f.", "author": "", "orig_id": 1406921}}, {"model": "metainfo.source", "pk": 3843, "fields": {"orig_filename": "Schoberlechner_Johann-Karl_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427", "author": "", "orig_id": 1406923}}, {"model": "metainfo.source", "pk": 3844, "fields": {"orig_filename": "Schoberlechner_Sophie_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427f.", "author": "", "orig_id": 1406925}}, {"model": "metainfo.source", "pk": 3845, "fields": {"orig_filename": "Schobert_Ernst_1893_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 428", "author": "", "orig_id": 1406926}}, {"model": "metainfo.source", "pk": 3846, "fields": {"orig_filename": "Schober_Franz_1796_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 420f.", "author": "", "orig_id": 1406913}}, {"model": "metainfo.source", "pk": 3847, "fields": {"orig_filename": "Schober_Franz_1911_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 421", "author": "", "orig_id": 1406914}}, {"model": "metainfo.source", "pk": 3848, "fields": {"orig_filename": "Schober_Ildefons_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 421f.", "author": "", "orig_id": 1406915}}, {"model": "metainfo.source", "pk": 3849, "fields": {"orig_filename": "Schober_Johann-Bapt_1783_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 422f.", "author": "", "orig_id": 1406916}}, {"model": "metainfo.source", "pk": 3850, "fields": {"orig_filename": "Schober_Johannes_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 423ff.", "author": "", "orig_id": 1406918}}, {"model": "metainfo.source", "pk": 3851, "fields": {"orig_filename": "Schober_Johann_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 423", "author": "", "orig_id": 1406917}}, {"model": "metainfo.source", "pk": 3852, "fields": {"orig_filename": "Schober_Karl-Johann_1844_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 425f.", "author": "", "orig_id": 1406920}}, {"model": "metainfo.source", "pk": 3853, "fields": {"orig_filename": "Schober_Karl_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 425", "author": "", "orig_id": 1406919}}, {"model": "metainfo.source", "pk": 3854, "fields": {"orig_filename": "Schoblik_Friedrich_1901_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1", "author": "", "orig_id": 1405373}}, {"model": "metainfo.source", "pk": 3855, "fields": {"orig_filename": "Schobloch_Anton_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1", "author": "", "orig_id": 1405374}}, {"model": "metainfo.source", "pk": 3856, "fields": {"orig_filename": "Schock_Joseph_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1f.", "author": "", "orig_id": 1405375}}, {"model": "metainfo.source", "pk": 3857, "fields": {"orig_filename": "Schodel_Rozalia_1811_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 2", "author": "", "orig_id": 1405376}}, {"model": "metainfo.source", "pk": 3858, "fields": {"orig_filename": "Schoderboeck_Margaretha_1887_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 3", "author": "", "orig_id": 1405378}}, {"model": "metainfo.source", "pk": 3859, "fields": {"orig_filename": "Schoder_Joseph_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 2f.", "author": "", "orig_id": 1405377}}, {"model": "metainfo.source", "pk": 3860, "fields": {"orig_filename": "Schodterer_Engelbert_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 3f.", "author": "", "orig_id": 1405379}}, {"model": "metainfo.source", "pk": 3861, "fields": {"orig_filename": "Schodterer_Robert-Franz_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 4", "author": "", "orig_id": 1405380}}, {"model": "metainfo.source", "pk": 3862, "fields": {"orig_filename": "Schoebel_Emmanuel-Johann_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 4f.", "author": "", "orig_id": 1405381}}, {"model": "metainfo.source", "pk": 3863, "fields": {"orig_filename": "Schoebel_Johann-Paul_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5", "author": "", "orig_id": 1405382}}, {"model": "metainfo.source", "pk": 3864, "fields": {"orig_filename": "Schoeberl_Franz_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5", "author": "", "orig_id": 1405383}}, {"model": "metainfo.source", "pk": 3865, "fields": {"orig_filename": "Schoeberl_Mathias_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5f.", "author": "", "orig_id": 1405384}}, {"model": "metainfo.source", "pk": 3866, "fields": {"orig_filename": "Schoebl_Franz_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 6", "author": "", "orig_id": 1405385}}, {"model": "metainfo.source", "pk": 3867, "fields": {"orig_filename": "Schoebl_Joseph_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 6f.", "author": "", "orig_id": 1405386}}, {"model": "metainfo.source", "pk": 3868, "fields": {"orig_filename": "Schoebl_Otto_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 7f.", "author": "", "orig_id": 1405387}}, {"model": "metainfo.source", "pk": 3869, "fields": {"orig_filename": "Schoedlberger_Johann-Nepomuk_1779_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 8f.", "author": "", "orig_id": 1405391}}, {"model": "metainfo.source", "pk": 3870, "fields": {"orig_filename": "Schoedler_Franz_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 9", "author": "", "orig_id": 1405392}}, {"model": "metainfo.source", "pk": 3871, "fields": {"orig_filename": "Schoedl_Max_1834_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 8", "author": "", "orig_id": 1405390}}, {"model": "metainfo.source", "pk": 3872, "fields": {"orig_filename": "Schoefer_Eugen_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 9f.", "author": "", "orig_id": 1405393}}, {"model": "metainfo.source", "pk": 3873, "fields": {"orig_filename": "Schoefer_Johann_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 10", "author": "", "orig_id": 1405394}}, {"model": "metainfo.source", "pk": 3874, "fields": {"orig_filename": "Schoefer_Robert_1926_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1419707}}, {"model": "metainfo.source", "pk": 3875, "fields": {"orig_filename": "Schoeffel_Johann_1754_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 10f.", "author": "", "orig_id": 1405395}}, {"model": "metainfo.source", "pk": 3876, "fields": {"orig_filename": "Schoeffel_Joseph_1832_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 11f.", "author": "", "orig_id": 1405396}}, {"model": "metainfo.source", "pk": 3877, "fields": {"orig_filename": "Schoeffel_Rudolf_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 12f.", "author": "", "orig_id": 1405397}}, {"model": "metainfo.source", "pk": 3878, "fields": {"orig_filename": "Schoeffl_Josef_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 13", "author": "", "orig_id": 1405399}}, {"model": "metainfo.source", "pk": 3879, "fields": {"orig_filename": "Schoeffmann_Maria_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 13f.", "author": "", "orig_id": 1405400}}, {"model": "metainfo.source", "pk": 3880, "fields": {"orig_filename": "Schoefmann_Karl_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 14f.", "author": "", "orig_id": 1405402}}, {"model": "metainfo.source", "pk": 3881, "fields": {"orig_filename": "Schoelhammer-Schoelhaim_Johann_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 15", "author": "", "orig_id": 1405403}}, {"model": "metainfo.source", "pk": 3882, "fields": {"orig_filename": "Schoeller_Adolf-Philipp_1832_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405439}}, {"model": "metainfo.source", "pk": 3883, "fields": {"orig_filename": "Schoeller_Alexander_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 18f.", "author": "", "orig_id": 1405409}}, {"model": "metainfo.source", "pk": 3884, "fields": {"orig_filename": "Schoeller_Eduard_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405415}}, {"model": "metainfo.source", "pk": 3885, "fields": {"orig_filename": "Schoeller_Ferdinand_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 19f.", "author": "", "orig_id": 1405410}}, {"model": "metainfo.source", "pk": 3886, "fields": {"orig_filename": "Schoeller_Friedrich_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405441}}, {"model": "metainfo.source", "pk": 3887, "fields": {"orig_filename": "Schoeller_Friedrich_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405413}}, {"model": "metainfo.source", "pk": 3888, "fields": {"orig_filename": "Schoeller_Gustav_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405412}}, {"model": "metainfo.source", "pk": 3889, "fields": {"orig_filename": "Schoeller_Hans_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21f.", "author": "", "orig_id": 1405416}}, {"model": "metainfo.source", "pk": 3890, "fields": {"orig_filename": "Schoeller_Johann-Christian_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 22", "author": "", "orig_id": 1405417}}, {"model": "metainfo.source", "pk": 3891, "fields": {"orig_filename": "Schoeller_Joseph_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 22f.", "author": "", "orig_id": 1405418}}, {"model": "metainfo.source", "pk": 3892, "fields": {"orig_filename": "Schoeller_Paul-Eduard_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 23f.", "author": "", "orig_id": 1405419}}, {"model": "metainfo.source", "pk": 3893, "fields": {"orig_filename": "Schoeller_Pauline_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 24", "author": "", "orig_id": 1405430}}, {"model": "metainfo.source", "pk": 3894, "fields": {"orig_filename": "Schoeller_Philipp-Alois_1892_1977.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25f.", "author": "", "orig_id": 1405433}}, {"model": "metainfo.source", "pk": 3895, "fields": {"orig_filename": "Schoeller_Philipp-Johann_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25", "author": "", "orig_id": 1405431}}, {"model": "metainfo.source", "pk": 3896, "fields": {"orig_filename": "Schoeller_Philipp-Joseph_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25f.", "author": "", "orig_id": 1405432}}, {"model": "metainfo.source", "pk": 3897, "fields": {"orig_filename": "Schoeller_Philipp-Wilhelm_1797_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 26", "author": "", "orig_id": 1405434}}, {"model": "metainfo.source", "pk": 3898, "fields": {"orig_filename": "Schoeller_Philipp-Wilhelm_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 26f.", "author": "", "orig_id": 1405436}}, {"model": "metainfo.source", "pk": 3899, "fields": {"orig_filename": "Schoeller_Richard_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 27f.", "author": "", "orig_id": 1405437}}, {"model": "metainfo.source", "pk": 3900, "fields": {"orig_filename": "Schoeller_Robert_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405438}}, {"model": "metainfo.source", "pk": 3901, "fields": {"orig_filename": "Schoellnast_Franz_1775_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28f.", "author": "", "orig_id": 1405442}}, {"model": "metainfo.source", "pk": 3902, "fields": {"orig_filename": "Schoellnast_Johann-Bapt_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 29", "author": "", "orig_id": 1405443}}, {"model": "metainfo.source", "pk": 3903, "fields": {"orig_filename": "Schoell_Adolf_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 15f.", "author": "", "orig_id": 1405404}}, {"model": "metainfo.source", "pk": 3904, "fields": {"orig_filename": "Schoell_August_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16f.", "author": "", "orig_id": 1405407}}, {"model": "metainfo.source", "pk": 3905, "fields": {"orig_filename": "Schoell_Fritz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16", "author": "", "orig_id": 1405406}}, {"model": "metainfo.source", "pk": 3906, "fields": {"orig_filename": "Schoell_Jakob-Friedrich_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 17f.", "author": "", "orig_id": 1405408}}, {"model": "metainfo.source", "pk": 3907, "fields": {"orig_filename": "Schoell_Rudolf_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16", "author": "", "orig_id": 1405405}}, {"model": "metainfo.source", "pk": 3908, "fields": {"orig_filename": "Schoelzig_Amandus_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 29f.", "author": "", "orig_id": 1405444}}, {"model": "metainfo.source", "pk": 3909, "fields": {"orig_filename": "Schoen-Liebingen_Josef_1797_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405466}}, {"model": "metainfo.source", "pk": 3910, "fields": {"orig_filename": "Schoen-Liebingen_Ludwig_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40", "author": "", "orig_id": 1405363}}, {"model": "metainfo.source", "pk": 3911, "fields": {"orig_filename": "Schoen-Liebingen_Robert_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39f.", "author": "", "orig_id": 1405465}}, {"model": "metainfo.source", "pk": 3912, "fields": {"orig_filename": "Schoenach_Alois_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40", "author": "", "orig_id": 1405364}}, {"model": "metainfo.source", "pk": 3913, "fields": {"orig_filename": "Schoenach_Hugo_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40f.", "author": "", "orig_id": 1405365}}, {"model": "metainfo.source", "pk": 3914, "fields": {"orig_filename": "Schoenach_Ludwig_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 41", "author": "", "orig_id": 1405366}}, {"model": "metainfo.source", "pk": 3915, "fields": {"orig_filename": "Schoenaich_Franz-Xaver_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 41f.", "author": "", "orig_id": 1405367}}, {"model": "metainfo.source", "pk": 3916, "fields": {"orig_filename": "Schoenaich_Gustav_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 42f.", "author": "", "orig_id": 1405679}}, {"model": "metainfo.source", "pk": 3917, "fields": {"orig_filename": "Schnack-Herbosegg_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 356f.", "author": "", "orig_id": 1406642}}, {"model": "metainfo.source", "pk": 3918, "fields": {"orig_filename": "Schnaitmann_Thomas_1796_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 1406643}}, {"model": "metainfo.source", "pk": 3919, "fields": {"orig_filename": "Schnapper-Wimsbach_Moritz_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358f.", "author": "", "orig_id": 1406648}}, {"model": "metainfo.source", "pk": 3920, "fields": {"orig_filename": "Schnapper_Anton_1790_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 1406644}}, {"model": "metainfo.source", "pk": 3921, "fields": {"orig_filename": "Schnapper_Ber_1906_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357f.", "author": "", "orig_id": 1406645}}, {"model": "metainfo.source", "pk": 3922, "fields": {"orig_filename": "Schnapper_Maria_1800_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 2096507}}, {"model": "metainfo.source", "pk": 3923, "fields": {"orig_filename": "Schnapper_Max_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358", "author": "", "orig_id": 1406646}}, {"model": "metainfo.source", "pk": 3924, "fields": {"orig_filename": "Schnapper_Mayer-Arthur_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358", "author": "", "orig_id": 1406647}}, {"model": "metainfo.source", "pk": 3925, "fields": {"orig_filename": "Schnarf_Karl_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 359", "author": "", "orig_id": 1406649}}, {"model": "metainfo.source", "pk": 3926, "fields": {"orig_filename": "Schnattinger_Friedrich-Alexander_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406650}}, {"model": "metainfo.source", "pk": 3927, "fields": {"orig_filename": "Schnaubelt_Heinrich_1814_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406651}}, {"model": "metainfo.source", "pk": 3928, "fields": {"orig_filename": "Schnayder_Jozef_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406652}}, {"model": "metainfo.source", "pk": 3929, "fields": {"orig_filename": "Schneck_Karl_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361", "author": "", "orig_id": 1406653}}, {"model": "metainfo.source", "pk": 3930, "fields": {"orig_filename": "Schneeberger_Franz-Julius_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361f.", "author": "", "orig_id": 1406655}}, {"model": "metainfo.source", "pk": 3931, "fields": {"orig_filename": "Schneeberger_Konrad_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 362f.", "author": "", "orig_id": 1406657}}, {"model": "metainfo.source", "pk": 3932, "fields": {"orig_filename": "Schneedorfer_Leo_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 363", "author": "", "orig_id": 1406658}}, {"model": "metainfo.source", "pk": 3933, "fields": {"orig_filename": "Schneefuss_Friedrich_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 363f.", "author": "", "orig_id": 1406659}}, {"model": "metainfo.source", "pk": 3934, "fields": {"orig_filename": "Schneefuss_Wilhelm_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 364", "author": "", "orig_id": 1406660}}, {"model": "metainfo.source", "pk": 3935, "fields": {"orig_filename": "Schneegans_Ludwig_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 364f.", "author": "", "orig_id": 1406661}}, {"model": "metainfo.source", "pk": 3936, "fields": {"orig_filename": "Schneeweiss_Franz_1877_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 365f.", "author": "", "orig_id": 1406664}}, {"model": "metainfo.source", "pk": 3937, "fields": {"orig_filename": "Schneeweiss_Josef_1847_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406667}}, {"model": "metainfo.source", "pk": 3938, "fields": {"orig_filename": "Schneeweiss_Martin-Franz_1883_1965.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406665}}, {"model": "metainfo.source", "pk": 3939, "fields": {"orig_filename": "Schneeweiss_Martin_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406666}}, {"model": "metainfo.source", "pk": 3940, "fields": {"orig_filename": "Schneeweiss_Martin_1907_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366f.", "author": "", "orig_id": 1406668}}, {"model": "metainfo.source", "pk": 3941, "fields": {"orig_filename": "Schneeweiss_Robert_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367", "author": "", "orig_id": 1406669}}, {"model": "metainfo.source", "pk": 3942, "fields": {"orig_filename": "Schneeweis_Karl_1745_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 365", "author": "", "orig_id": 1406662}}, {"model": "metainfo.source", "pk": 3943, "fields": {"orig_filename": "Schnee_Emil_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361", "author": "", "orig_id": 1406654}}, {"model": "metainfo.source", "pk": 3944, "fields": {"orig_filename": "Schnegg_Alphons_1895_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367", "author": "", "orig_id": 1406670}}, {"model": "metainfo.source", "pk": 3945, "fields": {"orig_filename": "Schnehen_Max-Karl-Hugo_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367f.", "author": "", "orig_id": 1406671}}, {"model": "metainfo.source", "pk": 3946, "fields": {"orig_filename": "Schnehen_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 368", "author": "", "orig_id": 1406816}}, {"model": "metainfo.source", "pk": 3947, "fields": {"orig_filename": "Schneid-Treuenfeld_Josef_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 368f.", "author": "", "orig_id": 1406817}}, {"model": "metainfo.source", "pk": 3948, "fields": {"orig_filename": "Schneider-Arno_Josepha_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 387", "author": "", "orig_id": 1406853}}, {"model": "metainfo.source", "pk": 3949, "fields": {"orig_filename": "Schneider-Arno_Joseph_1810_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386f.", "author": "", "orig_id": 1406852}}, {"model": "metainfo.source", "pk": 3950, "fields": {"orig_filename": "Schneider-Arno_Karl_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 387f.", "author": "", "orig_id": 1406854}}, {"model": "metainfo.source", "pk": 3951, "fields": {"orig_filename": "Schneider-Arno_Karl_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 388", "author": "", "orig_id": 1406855}}, {"model": "metainfo.source", "pk": 3952, "fields": {"orig_filename": "Schneider-Arno_Ludwig_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 388f.", "author": "", "orig_id": 1406856}}, {"model": "metainfo.source", "pk": 3953, "fields": {"orig_filename": "Schneider-Manns-Au_Josef_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 389f.", "author": "", "orig_id": 1406857}}, {"model": "metainfo.source", "pk": 3954, "fields": {"orig_filename": "Schneiderhan_Franz_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 390", "author": "", "orig_id": 1406858}}, {"model": "metainfo.source", "pk": 3955, "fields": {"orig_filename": "Schneider_Alois_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 369", "author": "", "orig_id": 1406818}}, {"model": "metainfo.source", "pk": 3956, "fields": {"orig_filename": "Schneider_Anton-Andreas_1774_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 369", "author": "", "orig_id": 1406819}}, {"model": "metainfo.source", "pk": 3957, "fields": {"orig_filename": "Schneider_Antoni-Julian_1825_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 370", "author": "", "orig_id": 1406820}}, {"model": "metainfo.source", "pk": 3958, "fields": {"orig_filename": "Schneider_Artur_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 370f.", "author": "", "orig_id": 1406821}}, {"model": "metainfo.source", "pk": 3959, "fields": {"orig_filename": "Schneider_August_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 371", "author": "", "orig_id": 1406822}}, {"model": "metainfo.source", "pk": 3960, "fields": {"orig_filename": "Schneider_Carl-Samuel_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 371f.", "author": "", "orig_id": 1406823}}, {"model": "metainfo.source", "pk": 3961, "fields": {"orig_filename": "Schneider_Christian_1742_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 372f.", "author": "", "orig_id": 1406824}}, {"model": "metainfo.source", "pk": 3962, "fields": {"orig_filename": "Schneider_Constantin_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 373", "author": "", "orig_id": 1406825}}, {"model": "metainfo.source", "pk": 3963, "fields": {"orig_filename": "Schneider_Ernst_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 373f.", "author": "", "orig_id": 1406826}}, {"model": "metainfo.source", "pk": 3964, "fields": {"orig_filename": "Schneider_Ferdinand_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 374", "author": "", "orig_id": 1406827}}, {"model": "metainfo.source", "pk": 3965, "fields": {"orig_filename": "Schneider_Franz-Anton_1777_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 376", "author": "", "orig_id": 1406830}}, {"model": "metainfo.source", "pk": 3966, "fields": {"orig_filename": "Schneider_Franz-Coelestin_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 376f.", "author": "", "orig_id": 1406831}}, {"model": "metainfo.source", "pk": 3967, "fields": {"orig_filename": "Schneider_Franz-Xav_1789_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 377f.", "author": "", "orig_id": 1406832}}, {"model": "metainfo.source", "pk": 3968, "fields": {"orig_filename": "Schneider_Franz-Xav_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 378", "author": "", "orig_id": 1406833}}, {"model": "metainfo.source", "pk": 3969, "fields": {"orig_filename": "Schneider_Franz_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 374f.", "author": "", "orig_id": 1406828}}, {"model": "metainfo.source", "pk": 3970, "fields": {"orig_filename": "Schneider_Franz_1801_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 375f.", "author": "", "orig_id": 1406829}}, {"model": "metainfo.source", "pk": 3971, "fields": {"orig_filename": "Schneider_Hans_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 378f.", "author": "", "orig_id": 1406834}}, {"model": "metainfo.source", "pk": 3972, "fields": {"orig_filename": "Schneider_Hans_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379", "author": "", "orig_id": 1406835}}, {"model": "metainfo.source", "pk": 3973, "fields": {"orig_filename": "Schneider_Hermann-Josef_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379", "author": "", "orig_id": 1406836}}, {"model": "metainfo.source", "pk": 3974, "fields": {"orig_filename": "Schneider_Johann-Aloys_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 380f.", "author": "", "orig_id": 1406838}}, {"model": "metainfo.source", "pk": 3975, "fields": {"orig_filename": "Schneider_Johann-Bapt_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379f.", "author": "", "orig_id": 1406837}}, {"model": "metainfo.source", "pk": 3976, "fields": {"orig_filename": "Schneider_Josef_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 381", "author": "", "orig_id": 1406839}}, {"model": "metainfo.source", "pk": 3977, "fields": {"orig_filename": "Schneider_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 381f.", "author": "", "orig_id": 1406840}}, {"model": "metainfo.source", "pk": 3978, "fields": {"orig_filename": "Schneider_Josef_1897_1984.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406850}}, {"model": "metainfo.source", "pk": 3979, "fields": {"orig_filename": "Schneider_Julia_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382", "author": "", "orig_id": 1406841}}, {"model": "metainfo.source", "pk": 3980, "fields": {"orig_filename": "Schneider_Karl-Camillo_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382f.", "author": "", "orig_id": 1406843}}, {"model": "metainfo.source", "pk": 3981, "fields": {"orig_filename": "Schneider_Karl_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382", "author": "", "orig_id": 1406842}}, {"model": "metainfo.source", "pk": 3982, "fields": {"orig_filename": "Schneider_Ludwig_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 383f.", "author": "", "orig_id": 1406844}}, {"model": "metainfo.source", "pk": 3983, "fields": {"orig_filename": "Schneider_Max_1902_1988.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406851}}, {"model": "metainfo.source", "pk": 3984, "fields": {"orig_filename": "Schneider_Oswald_1900_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 384", "author": "", "orig_id": 1406845}}, {"model": "metainfo.source", "pk": 3985, "fields": {"orig_filename": "Schneider_Robert_1854_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 384f.", "author": "", "orig_id": 1406846}}, {"model": "metainfo.source", "pk": 3986, "fields": {"orig_filename": "Schneider_Stanislaw-Jan_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 385f.", "author": "", "orig_id": 1406848}}, {"model": "metainfo.source", "pk": 3987, "fields": {"orig_filename": "Schneider_Wilhelm_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406849}}, {"model": "metainfo.source", "pk": 3988, "fields": {"orig_filename": "Schnek_Friedrich_1900_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 390f.", "author": "", "orig_id": 1406859}}, {"model": "metainfo.source", "pk": 3989, "fields": {"orig_filename": "Schnek_Isidor_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 391f.", "author": "", "orig_id": 1406860}}, {"model": "metainfo.source", "pk": 3990, "fields": {"orig_filename": "Schnellar_Hans_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 394f.", "author": "", "orig_id": 1406866}}, {"model": "metainfo.source", "pk": 3991, "fields": {"orig_filename": "Schneller-Mohrthal_Otto_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 399f.", "author": "", "orig_id": 1406874}}, {"model": "metainfo.source", "pk": 3992, "fields": {"orig_filename": "Schneller_August_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 395", "author": "", "orig_id": 1406867}}, {"model": "metainfo.source", "pk": 3993, "fields": {"orig_filename": "Schneller_Christian_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 395f.", "author": "", "orig_id": 1406868}}, {"model": "metainfo.source", "pk": 3994, "fields": {"orig_filename": "Schneller_Istvan_1847_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 396", "author": "", "orig_id": 1406869}}, {"model": "metainfo.source", "pk": 3995, "fields": {"orig_filename": "Schneller_Josef-Anton_1796_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 396f.", "author": "", "orig_id": 1406870}}, {"model": "metainfo.source", "pk": 3996, "fields": {"orig_filename": "Schneller_Joseph_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 397", "author": "", "orig_id": 1406871}}, {"model": "metainfo.source", "pk": 3997, "fields": {"orig_filename": "Schneller_Julius-Franz-Borgias_1777_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 397f.", "author": "", "orig_id": 1406872}}, {"model": "metainfo.source", "pk": 3998, "fields": {"orig_filename": "Schneller_Karl_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 398f.", "author": "", "orig_id": 1406873}}, {"model": "metainfo.source", "pk": 3999, "fields": {"orig_filename": "Schnellinger_Josef_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 400", "author": "", "orig_id": 1406875}}, {"model": "metainfo.source", "pk": 4000, "fields": {"orig_filename": "Schnell_Friedrich_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 392", "author": "", "orig_id": 1406861}}, {"model": "metainfo.source", "pk": 4001, "fields": {"orig_filename": "Schnell_Josef_1822_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 392f.", "author": "", "orig_id": 1406862}}, {"model": "metainfo.source", "pk": 4002, "fields": {"orig_filename": "Schnell_Joseph_1822_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 393", "author": "", "orig_id": 1406863}}, {"model": "metainfo.source", "pk": 4003, "fields": {"orig_filename": "Schnell_Karl-Ernst_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 393f.", "author": "", "orig_id": 1406864}}, {"model": "metainfo.source", "pk": 4004, "fields": {"orig_filename": "Schnell_Ludwig-Franz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 394", "author": "", "orig_id": 1406865}}, {"model": "metainfo.source", "pk": 4005, "fields": {"orig_filename": "Schnepfleitner_Josef_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 400", "author": "", "orig_id": 1406876}}, {"model": "metainfo.source", "pk": 4006, "fields": {"orig_filename": "Schnerich_Alfred_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406877}}, {"model": "metainfo.source", "pk": 4007, "fields": {"orig_filename": "Schnerich_Franz-Xav_1771_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406878}}, {"model": "metainfo.source", "pk": 4008, "fields": {"orig_filename": "Schnerich_Franz-Xav_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406880}}, {"model": "metainfo.source", "pk": 4009, "fields": {"orig_filename": "Schnerich_Gotthard_1821_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401f.", "author": "", "orig_id": 1406881}}, {"model": "metainfo.source", "pk": 4010, "fields": {"orig_filename": "Schnerich_Wilhelm_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406879}}, {"model": "metainfo.source", "pk": 4011, "fields": {"orig_filename": "Schnider_August_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 402", "author": "", "orig_id": 1406882}}, {"model": "metainfo.source", "pk": 4012, "fields": {"orig_filename": "Schnierer_Alfred_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 402f.", "author": "", "orig_id": 1406883}}, {"model": "metainfo.source", "pk": 4013, "fields": {"orig_filename": "Schnierer_Julius_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 403", "author": "", "orig_id": 1406884}}, {"model": "metainfo.source", "pk": 4014, "fields": {"orig_filename": "Schnirch_Bohuslav_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 403f.", "author": "", "orig_id": 1406885}}, {"model": "metainfo.source", "pk": 4015, "fields": {"orig_filename": "Schnirch_Friedrich_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 404f.", "author": "", "orig_id": 1406886}}, {"model": "metainfo.source", "pk": 4016, "fields": {"orig_filename": "Schnirer_Friedrich_1889_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405", "author": "", "orig_id": 1406889}}, {"model": "metainfo.source", "pk": 4017, "fields": {"orig_filename": "Schnirer_Josef_1888_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405", "author": "", "orig_id": 1406888}}, {"model": "metainfo.source", "pk": 4018, "fields": {"orig_filename": "Schnirer_Moritz-Tobias_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405f.", "author": "", "orig_id": 1406887}}, {"model": "metainfo.source", "pk": 4019, "fields": {"orig_filename": "Schnitzer_Alois_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406", "author": "", "orig_id": 1406890}}, {"model": "metainfo.source", "pk": 4020, "fields": {"orig_filename": "Schmid_Leopold_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 284f.", "author": "", "orig_id": 1406419}}, {"model": "metainfo.source", "pk": 4021, "fields": {"orig_filename": "Schmid_Ludwig_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285", "author": "", "orig_id": 1406420}}, {"model": "metainfo.source", "pk": 4022, "fields": {"orig_filename": "Schmid_Ludwig_1880_1957.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285", "author": "", "orig_id": 1406421}}, {"model": "metainfo.source", "pk": 4023, "fields": {"orig_filename": "Schmid_Maria_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285f.", "author": "", "orig_id": 1406422}}, {"model": "metainfo.source", "pk": 4024, "fields": {"orig_filename": "Schmid_Martin_1775_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 286", "author": "", "orig_id": 1406423}}, {"model": "metainfo.source", "pk": 4025, "fields": {"orig_filename": "Schmid_Mathias-Andreas_1742_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 287", "author": "", "orig_id": 1406425}}, {"model": "metainfo.source", "pk": 4026, "fields": {"orig_filename": "Schmid_Mathias_1835_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 286f.", "author": "", "orig_id": 1406424}}, {"model": "metainfo.source", "pk": 4027, "fields": {"orig_filename": "Schmid_Maximilian-Florian_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 288", "author": "", "orig_id": 1406427}}, {"model": "metainfo.source", "pk": 4028, "fields": {"orig_filename": "Schmid_Maximilian_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406534}}, {"model": "metainfo.source", "pk": 4029, "fields": {"orig_filename": "Schmid_Max_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 287f.", "author": "", "orig_id": 1406426}}, {"model": "metainfo.source", "pk": 4030, "fields": {"orig_filename": "Schmid_Mieczyslaw-Henryk_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289", "author": "", "orig_id": 1406428}}, {"model": "metainfo.source", "pk": 4031, "fields": {"orig_filename": "Schmid_Moriz_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289", "author": "", "orig_id": 1406429}}, {"model": "metainfo.source", "pk": 4032, "fields": {"orig_filename": "Schmid_Nikolaus_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289f.", "author": "", "orig_id": 1406430}}, {"model": "metainfo.source", "pk": 4033, "fields": {"orig_filename": "Schmid_Oskar_1838_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 290", "author": "", "orig_id": 1406431}}, {"model": "metainfo.source", "pk": 4034, "fields": {"orig_filename": "Schmid_Oskar_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 290f.", "author": "", "orig_id": 1406432}}, {"model": "metainfo.source", "pk": 4035, "fields": {"orig_filename": "Schmid_Oskar_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 291", "author": "", "orig_id": 1406433}}, {"model": "metainfo.source", "pk": 4036, "fields": {"orig_filename": "Schmid_Otto_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 291f.", "author": "", "orig_id": 1406434}}, {"model": "metainfo.source", "pk": 4037, "fields": {"orig_filename": "Schmid_Peter_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292", "author": "", "orig_id": 1406435}}, {"model": "metainfo.source", "pk": 4038, "fields": {"orig_filename": "Schmid_Richard_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406533}}, {"model": "metainfo.source", "pk": 4039, "fields": {"orig_filename": "Schmid_Richard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292", "author": "", "orig_id": 1406436}}, {"model": "metainfo.source", "pk": 4040, "fields": {"orig_filename": "Schmid_Robert-Hans_1870_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292f.", "author": "", "orig_id": 1406437}}, {"model": "metainfo.source", "pk": 4041, "fields": {"orig_filename": "Schmid_Rudolf-Viktor_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283", "author": "", "orig_id": 1406416}}, {"model": "metainfo.source", "pk": 4042, "fields": {"orig_filename": "Schmid_Rudolf_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 293f.", "author": "", "orig_id": 1406438}}, {"model": "metainfo.source", "pk": 4043, "fields": {"orig_filename": "Schmid_Rudolf_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 294", "author": "", "orig_id": 1406439}}, {"model": "metainfo.source", "pk": 4044, "fields": {"orig_filename": "Schmid_Sandor_1855_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 294f.", "author": "", "orig_id": 1406440}}, {"model": "metainfo.source", "pk": 4045, "fields": {"orig_filename": "Schmid_Siegfried_1774_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 295f.", "author": "", "orig_id": 1406441}}, {"model": "metainfo.source", "pk": 4046, "fields": {"orig_filename": "Schmid_Sigismund_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 296", "author": "", "orig_id": 1406442}}, {"model": "metainfo.source", "pk": 4047, "fields": {"orig_filename": "Schmid_Theodor-Edmund_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406449}}, {"model": "metainfo.source", "pk": 4048, "fields": {"orig_filename": "Schmid_Theodor_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 296f.", "author": "", "orig_id": 1406443}}, {"model": "metainfo.source", "pk": 4049, "fields": {"orig_filename": "Schmid_Theodor_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 297", "author": "", "orig_id": 1406444}}, {"model": "metainfo.source", "pk": 4050, "fields": {"orig_filename": "Schmid_Valentin_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406445}}, {"model": "metainfo.source", "pk": 4051, "fields": {"orig_filename": "Schmid_Victor-Anton_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298f.", "author": "", "orig_id": 1406446}}, {"model": "metainfo.source", "pk": 4052, "fields": {"orig_filename": "Schmid_Victor-Ladislaus_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406447}}, {"model": "metainfo.source", "pk": 4053, "fields": {"orig_filename": "Schmid_Walter_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 299", "author": "", "orig_id": 1406450}}, {"model": "metainfo.source", "pk": 4054, "fields": {"orig_filename": "Schmid_Wilhelm-Joseph_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 301f.", "author": "", "orig_id": 1406715}}, {"model": "metainfo.source", "pk": 4055, "fields": {"orig_filename": "Schmid_Wilhelm-Matthaeus_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 302f.", "author": "", "orig_id": 1406716}}, {"model": "metainfo.source", "pk": 4056, "fields": {"orig_filename": "Schmid_Wilhelm_1817_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 299f.", "author": "", "orig_id": 1406451}}, {"model": "metainfo.source", "pk": 4057, "fields": {"orig_filename": "Schmid_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 300f.", "author": "", "orig_id": 1406452}}, {"model": "metainfo.source", "pk": 4058, "fields": {"orig_filename": "Schmid_Wilhelm_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 301", "author": "", "orig_id": 1406453}}, {"model": "metainfo.source", "pk": 4059, "fields": {"orig_filename": "Schmid_Wladyslaw_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 303", "author": "", "orig_id": 1406717}}, {"model": "metainfo.source", "pk": 4060, "fields": {"orig_filename": "Schmiedel_Johann-Bapt_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 328", "author": "", "orig_id": 1406607}}, {"model": "metainfo.source", "pk": 4061, "fields": {"orig_filename": "Schmieder_Pius_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 329", "author": "", "orig_id": 1406608}}, {"model": "metainfo.source", "pk": 4062, "fields": {"orig_filename": "Schmiedl_Adolph-Abraham_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 329f.", "author": "", "orig_id": 1406609}}, {"model": "metainfo.source", "pk": 4063, "fields": {"orig_filename": "Schmiedl_Georg_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 330", "author": "", "orig_id": 1406610}}, {"model": "metainfo.source", "pk": 4064, "fields": {"orig_filename": "Schmieger_Adolf-Josef_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 330f.", "author": "", "orig_id": 1406611}}, {"model": "metainfo.source", "pk": 4065, "fields": {"orig_filename": "Schmieger_Ignaz-Anton_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 331", "author": "", "orig_id": 1406612}}, {"model": "metainfo.source", "pk": 4066, "fields": {"orig_filename": "Schmieger_Wilhelm_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 331f.", "author": "", "orig_id": 1406613}}, {"model": "metainfo.source", "pk": 4067, "fields": {"orig_filename": "Schmigoz_Julius_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 332", "author": "", "orig_id": 1406614}}, {"model": "metainfo.source", "pk": 4068, "fields": {"orig_filename": "Schmilauer_Alois_1837_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 332f.", "author": "", "orig_id": 1406615}}, {"model": "metainfo.source", "pk": 4069, "fields": {"orig_filename": "Schmirger_Johann_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 333", "author": "", "orig_id": 1406616}}, {"model": "metainfo.source", "pk": 4070, "fields": {"orig_filename": "Schmirl_Hans_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 333f.", "author": "", "orig_id": 1406617}}, {"model": "metainfo.source", "pk": 4071, "fields": {"orig_filename": "Schmitson_Teutwart_1830_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 334", "author": "", "orig_id": 1406618}}, {"model": "metainfo.source", "pk": 4072, "fields": {"orig_filename": "Schmitten_Eduard_1814_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 334f.", "author": "", "orig_id": 1406619}}, {"model": "metainfo.source", "pk": 4073, "fields": {"orig_filename": "Schmitzhausen-Bruckherr-Donau_Franz_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406676}}, {"model": "metainfo.source", "pk": 4074, "fields": {"orig_filename": "Schmitzhausen_Marie_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 338f.", "author": "", "orig_id": 1406675}}, {"model": "metainfo.source", "pk": 4075, "fields": {"orig_filename": "Schmitz_Ettore_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 335f.", "author": "", "orig_id": 1406621}}, {"model": "metainfo.source", "pk": 4076, "fields": {"orig_filename": "Schmitz_Franz_1874_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 336f.", "author": "", "orig_id": 1406622}}, {"model": "metainfo.source", "pk": 4077, "fields": {"orig_filename": "Schmitz_Johann-Georg_1765_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 337", "author": "", "orig_id": 1406672}}, {"model": "metainfo.source", "pk": 4078, "fields": {"orig_filename": "Schmitz_Oskar-A-H_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 337f.", "author": "", "orig_id": 1406673}}, {"model": "metainfo.source", "pk": 4079, "fields": {"orig_filename": "Schmitz_Siegfried_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 338", "author": "", "orig_id": 1406674}}, {"model": "metainfo.source", "pk": 4080, "fields": {"orig_filename": "Schmoeger_Alois_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406677}}, {"model": "metainfo.source", "pk": 4081, "fields": {"orig_filename": "Schmoelzer_Caroline_1840_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406679}}, {"model": "metainfo.source", "pk": 4082, "fields": {"orig_filename": "Schmoelzer_Conrad_1862_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406678}}, {"model": "metainfo.source", "pk": 4083, "fields": {"orig_filename": "Schmoelzer_Hans_1856_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339f.", "author": "", "orig_id": 1406680}}, {"model": "metainfo.source", "pk": 4084, "fields": {"orig_filename": "Schmoelzer_Jakob-Eduard_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 340", "author": "", "orig_id": 1406681}}, {"model": "metainfo.source", "pk": 4085, "fields": {"orig_filename": "Schmoelzer_Josef_1821_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 340f.", "author": "", "orig_id": 1406682}}, {"model": "metainfo.source", "pk": 4086, "fields": {"orig_filename": "Schmolka_Marie_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 341f.", "author": "", "orig_id": 1406684}}, {"model": "metainfo.source", "pk": 4087, "fields": {"orig_filename": "Schmolk_Frigdian_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 341", "author": "", "orig_id": 1406683}}, {"model": "metainfo.source", "pk": 4088, "fields": {"orig_filename": "Schmoll-Eisenwerth_Karl_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 342f.", "author": "", "orig_id": 1406695}}, {"model": "metainfo.source", "pk": 4089, "fields": {"orig_filename": "Schmoll_Karl_1852_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 342", "author": "", "orig_id": 1406694}}, {"model": "metainfo.source", "pk": 4090, "fields": {"orig_filename": "Schmonn_Joseph_1785_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 343f.", "author": "", "orig_id": 1406696}}, {"model": "metainfo.source", "pk": 4091, "fields": {"orig_filename": "Schmoranzer_Josef_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 345f.", "author": "", "orig_id": 1406700}}, {"model": "metainfo.source", "pk": 4092, "fields": {"orig_filename": "Schmoranz_Frantisek_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344", "author": "", "orig_id": 1406697}}, {"model": "metainfo.source", "pk": 4093, "fields": {"orig_filename": "Schmoranz_Frantisek_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344", "author": "", "orig_id": 1406698}}, {"model": "metainfo.source", "pk": 4094, "fields": {"orig_filename": "Schmoranz_Gustav_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344f.", "author": "", "orig_id": 1406699}}, {"model": "metainfo.source", "pk": 4095, "fields": {"orig_filename": "Schmuckenschlaeger_Adolf_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406701}}, {"model": "metainfo.source", "pk": 4096, "fields": {"orig_filename": "Schmuckenschlaeger_Antonin_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406703}}, {"model": "metainfo.source", "pk": 4097, "fields": {"orig_filename": "Schmuckenschlaeger_Michael_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406702}}, {"model": "metainfo.source", "pk": 4098, "fields": {"orig_filename": "Schmueck_Franz_1797_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346f.", "author": "", "orig_id": 1406704}}, {"model": "metainfo.source", "pk": 4099, "fields": {"orig_filename": "Schmued_Ludwig_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 347", "author": "", "orig_id": 1406705}}, {"model": "metainfo.source", "pk": 4100, "fields": {"orig_filename": "Schmutzer_Alice_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 348f.", "author": "", "orig_id": 1406707}}, {"model": "metainfo.source", "pk": 4101, "fields": {"orig_filename": "Schmutzer_Anton_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 349", "author": "", "orig_id": 1406708}}, {"model": "metainfo.source", "pk": 4102, "fields": {"orig_filename": "Schmutzer_Ferdinand_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 349f.", "author": "", "orig_id": 1406709}}, {"model": "metainfo.source", "pk": 4103, "fields": {"orig_filename": "Schmutzer_Hermine_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406714}}, {"model": "metainfo.source", "pk": 4104, "fields": {"orig_filename": "Schmutzer_Philippine_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406713}}, {"model": "metainfo.source", "pk": 4105, "fields": {"orig_filename": "Schmutzer_Philipp_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 350", "author": "", "orig_id": 1406710}}, {"model": "metainfo.source", "pk": 4106, "fields": {"orig_filename": "Schmutzer_Wilhelm_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406712}}, {"model": "metainfo.source", "pk": 4107, "fields": {"orig_filename": "Schmutz_Karl_1787_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 347f.", "author": "", "orig_id": 1406706}}, {"model": "metainfo.source", "pk": 4108, "fields": {"orig_filename": "Schnabel_August_1821_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352", "author": "", "orig_id": 1406626}}, {"model": "metainfo.source", "pk": 4109, "fields": {"orig_filename": "Schnabel_Franz_1900_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1407290}}, {"model": "metainfo.source", "pk": 4110, "fields": {"orig_filename": "Schnabel_Georg-Norbert_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352", "author": "", "orig_id": 1406624}}, {"model": "metainfo.source", "pk": 4111, "fields": {"orig_filename": "Schnabel_Gottlieb_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1406625}}, {"model": "metainfo.source", "pk": 4112, "fields": {"orig_filename": "Schnabel_Hans_1902_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1407291}}, {"model": "metainfo.source", "pk": 4113, "fields": {"orig_filename": "Schnabel_Isidor_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 353f.", "author": "", "orig_id": 1406627}}, {"model": "metainfo.source", "pk": 4114, "fields": {"orig_filename": "Schnabel_Louis_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 354", "author": "", "orig_id": 1406628}}, {"model": "metainfo.source", "pk": 4115, "fields": {"orig_filename": "Schnabl_Friedrich_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 354f.", "author": "", "orig_id": 1406630}}, {"model": "metainfo.source", "pk": 4116, "fields": {"orig_filename": "Schnabl_Jacob_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406637}}, {"model": "metainfo.source", "pk": 4117, "fields": {"orig_filename": "Schnabl_Josef_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406639}}, {"model": "metainfo.source", "pk": 4118, "fields": {"orig_filename": "Schnabl_Leopold_1846_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355f.", "author": "", "orig_id": 1406640}}, {"model": "metainfo.source", "pk": 4119, "fields": {"orig_filename": "Schnabl_Leo_1870_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406638}}, {"model": "metainfo.source", "pk": 4120, "fields": {"orig_filename": "Schnabl_Moriz_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 356", "author": "", "orig_id": 1406641}}, {"model": "metainfo.source", "pk": 4121, "fields": {"orig_filename": "Schmidl_Edmund_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322", "author": "", "orig_id": 1406755}}, {"model": "metainfo.source", "pk": 4122, "fields": {"orig_filename": "Schmidl_Eduard-Adam-Gorgonius_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322f.", "author": "", "orig_id": 1406757}}, {"model": "metainfo.source", "pk": 4123, "fields": {"orig_filename": "Schmidl_Emil-C_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406758}}, {"model": "metainfo.source", "pk": 4124, "fields": {"orig_filename": "Schmidl_Julius_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322", "author": "", "orig_id": 1406756}}, {"model": "metainfo.source", "pk": 4125, "fields": {"orig_filename": "Schmidl_Ludwig_1811_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323f.", "author": "", "orig_id": 1406761}}, {"model": "metainfo.source", "pk": 4126, "fields": {"orig_filename": "Schmidl_Ludwig_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406759}}, {"model": "metainfo.source", "pk": 4127, "fields": {"orig_filename": "Schmidl_Ludwig_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 324f.", "author": "", "orig_id": 1406762}}, {"model": "metainfo.source", "pk": 4128, "fields": {"orig_filename": "Schmidl_Marianne_1890_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325", "author": "", "orig_id": 1406763}}, {"model": "metainfo.source", "pk": 4129, "fields": {"orig_filename": "Schmidl_Michael_1779_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325f.", "author": "", "orig_id": 1406598}}, {"model": "metainfo.source", "pk": 4130, "fields": {"orig_filename": "Schmidl_Rudolf-E_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406760}}, {"model": "metainfo.source", "pk": 4131, "fields": {"orig_filename": "Schmidl_Rudolf_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406603}}, {"model": "metainfo.source", "pk": 4132, "fields": {"orig_filename": "Schmidl_Rupert_1735_1788.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326", "author": "", "orig_id": 1406602}}, {"model": "metainfo.source", "pk": 4133, "fields": {"orig_filename": "Schmidl_Rupert_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326", "author": "", "orig_id": 1406601}}, {"model": "metainfo.source", "pk": 4134, "fields": {"orig_filename": "Schmidl_Wenzl-Ludwig_1811_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406604}}, {"model": "metainfo.source", "pk": 4135, "fields": {"orig_filename": "Schmidl_Wenzl_1783_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326f.", "author": "", "orig_id": 1406600}}, {"model": "metainfo.source", "pk": 4136, "fields": {"orig_filename": "Schmidl_Wilhelm_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406605}}, {"model": "metainfo.source", "pk": 4137, "fields": {"orig_filename": "Schmidtmayer_Rudolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327f.", "author": "", "orig_id": 1406606}}, {"model": "metainfo.source", "pk": 4138, "fields": {"orig_filename": "Schmid_Adalbert_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 237f.", "author": "", "orig_id": 1406522}}, {"model": "metainfo.source", "pk": 4139, "fields": {"orig_filename": "Schmid_Adalbert_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 238", "author": "", "orig_id": 1406523}}, {"model": "metainfo.source", "pk": 4140, "fields": {"orig_filename": "Schmid_Adam-August_1777_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 238f.", "author": "", "orig_id": 1406524}}, {"model": "metainfo.source", "pk": 4141, "fields": {"orig_filename": "Schmid_Agnes_1831_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 239", "author": "", "orig_id": 1406525}}, {"model": "metainfo.source", "pk": 4142, "fields": {"orig_filename": "Schmid_Albert-Eugen-Edmund_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 240", "author": "", "orig_id": 1406527}}, {"model": "metainfo.source", "pk": 4143, "fields": {"orig_filename": "Schmid_Albert_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 239f.", "author": "", "orig_id": 1406526}}, {"model": "metainfo.source", "pk": 4144, "fields": {"orig_filename": "Schmid_Alfred_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406448}}, {"model": "metainfo.source", "pk": 4145, "fields": {"orig_filename": "Schmid_Alois_1798_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 240f.", "author": "", "orig_id": 1406528}}, {"model": "metainfo.source", "pk": 4146, "fields": {"orig_filename": "Schmid_Anton_1765_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 241", "author": "", "orig_id": 1406529}}, {"model": "metainfo.source", "pk": 4147, "fields": {"orig_filename": "Schmid_Anton_1787_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 241f.", "author": "", "orig_id": 1406530}}, {"model": "metainfo.source", "pk": 4148, "fields": {"orig_filename": "Schmid_Anton_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406532}}, {"model": "metainfo.source", "pk": 4149, "fields": {"orig_filename": "Schmid_Anton_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 243", "author": "", "orig_id": 1406535}}, {"model": "metainfo.source", "pk": 4150, "fields": {"orig_filename": "Schmid_Anton_1900_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 243f.", "author": "", "orig_id": 1406536}}, {"model": "metainfo.source", "pk": 4151, "fields": {"orig_filename": "Schmid_Arnold_1903_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 244f.", "author": "", "orig_id": 1406537}}, {"model": "metainfo.source", "pk": 4152, "fields": {"orig_filename": "Schmid_Arthur_1866_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245", "author": "", "orig_id": 1406539}}, {"model": "metainfo.source", "pk": 4153, "fields": {"orig_filename": "Schmid_August_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245f.", "author": "", "orig_id": 1406540}}, {"model": "metainfo.source", "pk": 4154, "fields": {"orig_filename": "Schmid_August_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 246f.", "author": "", "orig_id": 1406541}}, {"model": "metainfo.source", "pk": 4155, "fields": {"orig_filename": "Schmid_Carl-Eugen_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 247f.", "author": "", "orig_id": 1406543}}, {"model": "metainfo.source", "pk": 4156, "fields": {"orig_filename": "Schmid_Carl-Friedrich-Heinrich_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 248f.", "author": "", "orig_id": 1406544}}, {"model": "metainfo.source", "pk": 4157, "fields": {"orig_filename": "Schmid_Carl-Jakob-Ludwig_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249", "author": "", "orig_id": 1406545}}, {"model": "metainfo.source", "pk": 4158, "fields": {"orig_filename": "Schmid_Carl-Wilhelm_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249", "author": "", "orig_id": 1406546}}, {"model": "metainfo.source", "pk": 4159, "fields": {"orig_filename": "Schmid_Carl_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 247", "author": "", "orig_id": 1406542}}, {"model": "metainfo.source", "pk": 4160, "fields": {"orig_filename": "Schmid_Cordula_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249f.", "author": "", "orig_id": 1406547}}, {"model": "metainfo.source", "pk": 4161, "fields": {"orig_filename": "Schmid_Eduard-Johann_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250f.", "author": "", "orig_id": 1406549}}, {"model": "metainfo.source", "pk": 4162, "fields": {"orig_filename": "Schmid_Eduard-Oskar_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 251f.", "author": "", "orig_id": 1406551}}, {"model": "metainfo.source", "pk": 4163, "fields": {"orig_filename": "Schmid_Eduard_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250", "author": "", "orig_id": 1406548}}, {"model": "metainfo.source", "pk": 4164, "fields": {"orig_filename": "Schmid_Erich-August_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 252", "author": "", "orig_id": 1406552}}, {"model": "metainfo.source", "pk": 4165, "fields": {"orig_filename": "Schmid_Ernst_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 252f.", "author": "", "orig_id": 1406553}}, {"model": "metainfo.source", "pk": 4166, "fields": {"orig_filename": "Schmid_Eugen-Heinrich_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 253f.", "author": "", "orig_id": 1406555}}, {"model": "metainfo.source", "pk": 4167, "fields": {"orig_filename": "Schmid_Ferdinand-Jozef_1791_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 254f.", "author": "", "orig_id": 1406557}}, {"model": "metainfo.source", "pk": 4168, "fields": {"orig_filename": "Schmid_Ferdinand_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 254", "author": "", "orig_id": 1406556}}, {"model": "metainfo.source", "pk": 4169, "fields": {"orig_filename": "Schmid_Florian_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 255f.", "author": "", "orig_id": 1406558}}, {"model": "metainfo.source", "pk": 4170, "fields": {"orig_filename": "Schmid_Franz-X-Robert_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261f.", "author": "", "orig_id": 1406568}}, {"model": "metainfo.source", "pk": 4171, "fields": {"orig_filename": "Schmid_Franz-X_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 260f.", "author": "", "orig_id": 1406565}}, {"model": "metainfo.source", "pk": 4172, "fields": {"orig_filename": "Schmid_Franz-X_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261", "author": "", "orig_id": 1406566}}, {"model": "metainfo.source", "pk": 4173, "fields": {"orig_filename": "Schmid_Franz_1764_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 256", "author": "", "orig_id": 1406559}}, {"model": "metainfo.source", "pk": 4174, "fields": {"orig_filename": "Schmid_Franz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 256f.", "author": "", "orig_id": 1406560}}, {"model": "metainfo.source", "pk": 4175, "fields": {"orig_filename": "Schmid_Franz_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 257", "author": "", "orig_id": 1406561}}, {"model": "metainfo.source", "pk": 4176, "fields": {"orig_filename": "Schmid_Franz_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 257f.", "author": "", "orig_id": 1406562}}, {"model": "metainfo.source", "pk": 4177, "fields": {"orig_filename": "Schmid_Franz_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 258", "author": "", "orig_id": 1406563}}, {"model": "metainfo.source", "pk": 4178, "fields": {"orig_filename": "Schmid_Franz_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 258ff.", "author": "", "orig_id": 1406564}}, {"model": "metainfo.source", "pk": 4179, "fields": {"orig_filename": "Schmid_Friedrich_1821_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 262", "author": "", "orig_id": 1406569}}, {"model": "metainfo.source", "pk": 4180, "fields": {"orig_filename": "Schmid_Friedrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 262ff.", "author": "", "orig_id": 1406570}}, {"model": "metainfo.source", "pk": 4181, "fields": {"orig_filename": "Schmid_Friedrich_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 264", "author": "", "orig_id": 1406571}}, {"model": "metainfo.source", "pk": 4182, "fields": {"orig_filename": "Schmid_Georg-Fidelis_1741_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 265f.", "author": "", "orig_id": 1406575}}, {"model": "metainfo.source", "pk": 4183, "fields": {"orig_filename": "Schmid_Georg_1844_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 264f.", "author": "", "orig_id": 1406573}}, {"model": "metainfo.source", "pk": 4184, "fields": {"orig_filename": "Schmid_Georg_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 265", "author": "", "orig_id": 1406574}}, {"model": "metainfo.source", "pk": 4185, "fields": {"orig_filename": "Schmid_Gustav-Johann-Leopold_1826_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 267", "author": "", "orig_id": 1406577}}, {"model": "metainfo.source", "pk": 4186, "fields": {"orig_filename": "Schmid_Gustav_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 266f.", "author": "", "orig_id": 1406576}}, {"model": "metainfo.source", "pk": 4187, "fields": {"orig_filename": "Schmid_Hans_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 267f.", "author": "", "orig_id": 1406578}}, {"model": "metainfo.source", "pk": 4188, "fields": {"orig_filename": "Schmid_Heinrich-Daniel_1805_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270f.", "author": "", "orig_id": 1406585}}, {"model": "metainfo.source", "pk": 4189, "fields": {"orig_filename": "Schmid_Heinrich_1779_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 268", "author": "", "orig_id": 1406579}}, {"model": "metainfo.source", "pk": 4190, "fields": {"orig_filename": "Schmid_Heinrich_1809_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 268f.", "author": "", "orig_id": 1406580}}, {"model": "metainfo.source", "pk": 4191, "fields": {"orig_filename": "Schmid_Heinrich_1815_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 269f.", "author": "", "orig_id": 1406581}}, {"model": "metainfo.source", "pk": 4192, "fields": {"orig_filename": "Schmid_Heinrich_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270", "author": "", "orig_id": 1406583}}, {"model": "metainfo.source", "pk": 4193, "fields": {"orig_filename": "Schmid_Heinrich_1849_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270", "author": "", "orig_id": 1406584}}, {"model": "metainfo.source", "pk": 4194, "fields": {"orig_filename": "Schmid_Henryk-Leopold_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 271f.", "author": "", "orig_id": 1406586}}, {"model": "metainfo.source", "pk": 4195, "fields": {"orig_filename": "Schmid_Hermann_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 272", "author": "", "orig_id": 1406587}}, {"model": "metainfo.source", "pk": 4196, "fields": {"orig_filename": "Schmid_Hugo_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273", "author": "", "orig_id": 1406588}}, {"model": "metainfo.source", "pk": 4197, "fields": {"orig_filename": "Schmid_Hugo_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273", "author": "", "orig_id": 1406589}}, {"model": "metainfo.source", "pk": 4198, "fields": {"orig_filename": "Schmid_Janos-Gyoergy_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273f.", "author": "", "orig_id": 1406590}}, {"model": "metainfo.source", "pk": 4199, "fields": {"orig_filename": "Schmid_Johann-Joseph_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 274f.", "author": "", "orig_id": 1406592}}, {"model": "metainfo.source", "pk": 4200, "fields": {"orig_filename": "Schmid_Johanna-Carolina_1794_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275", "author": "", "orig_id": 1406593}}, {"model": "metainfo.source", "pk": 4201, "fields": {"orig_filename": "Schmid_Johann_1776_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 269", "author": "", "orig_id": 1406582}}, {"model": "metainfo.source", "pk": 4202, "fields": {"orig_filename": "Schmid_Johann_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 274", "author": "", "orig_id": 1406591}}, {"model": "metainfo.source", "pk": 4203, "fields": {"orig_filename": "Schmid_Josef-Eduard_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 278", "author": "", "orig_id": 1406405}}, {"model": "metainfo.source", "pk": 4204, "fields": {"orig_filename": "Schmid_Josefine_1837_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 278f.", "author": "", "orig_id": 1406407}}, {"model": "metainfo.source", "pk": 4205, "fields": {"orig_filename": "Schmid_Josef_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275f.", "author": "", "orig_id": 1406595}}, {"model": "metainfo.source", "pk": 4206, "fields": {"orig_filename": "Schmid_Josef_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276", "author": "", "orig_id": 2036249}}, {"model": "metainfo.source", "pk": 4207, "fields": {"orig_filename": "Schmid_Josef_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276", "author": "", "orig_id": 1406596}}, {"model": "metainfo.source", "pk": 4208, "fields": {"orig_filename": "Schmid_Joseph_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261", "author": "", "orig_id": 1406567}}, {"model": "metainfo.source", "pk": 4209, "fields": {"orig_filename": "Schmid_Julius_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 279f.", "author": "", "orig_id": 1406408}}, {"model": "metainfo.source", "pk": 4210, "fields": {"orig_filename": "Schmid_Karl-Florian_1823_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283", "author": "", "orig_id": 1406415}}, {"model": "metainfo.source", "pk": 4211, "fields": {"orig_filename": "Schmid_Karl_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 280", "author": "", "orig_id": 1406409}}, {"model": "metainfo.source", "pk": 4212, "fields": {"orig_filename": "Schmid_Karl_1825_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 280f.", "author": "", "orig_id": 1406410}}, {"model": "metainfo.source", "pk": 4213, "fields": {"orig_filename": "Schmid_Karl_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 281", "author": "", "orig_id": 1406411}}, {"model": "metainfo.source", "pk": 4214, "fields": {"orig_filename": "Schmid_Karl_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 253", "author": "", "orig_id": 1406554}}, {"model": "metainfo.source", "pk": 4215, "fields": {"orig_filename": "Schmid_Karl_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 281f.", "author": "", "orig_id": 1406412}}, {"model": "metainfo.source", "pk": 4216, "fields": {"orig_filename": "Schmid_Karl_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 282", "author": "", "orig_id": 1406413}}, {"model": "metainfo.source", "pk": 4217, "fields": {"orig_filename": "Schmid_Karl_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 282f.", "author": "", "orig_id": 1406414}}, {"model": "metainfo.source", "pk": 4218, "fields": {"orig_filename": "Schmid_Karl_1905_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245", "author": "", "orig_id": 1406538}}, {"model": "metainfo.source", "pk": 4219, "fields": {"orig_filename": "Schmid_Koloman_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283f.", "author": "", "orig_id": 1406417}}, {"model": "metainfo.source", "pk": 4220, "fields": {"orig_filename": "Schmid_Leopold_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 284", "author": "", "orig_id": 1406418}}, {"model": "metainfo.source", "pk": 4221, "fields": {"orig_filename": "Schlinger_Katharina_1869_1954.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207", "author": "", "orig_id": 1406461}}, {"model": "metainfo.source", "pk": 4222, "fields": {"orig_filename": "Schlitter-Niedernberg_Karl_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 208f.", "author": "", "orig_id": 1406464}}, {"model": "metainfo.source", "pk": 4223, "fields": {"orig_filename": "Schlitter_Hanns_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207f.", "author": "", "orig_id": 1406462}}, {"model": "metainfo.source", "pk": 4224, "fields": {"orig_filename": "Schlitter_Johann_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 208", "author": "", "orig_id": 1406463}}, {"model": "metainfo.source", "pk": 4225, "fields": {"orig_filename": "Schloegelhofer_Edmund_1836_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 209f.", "author": "", "orig_id": 1406465}}, {"model": "metainfo.source", "pk": 4226, "fields": {"orig_filename": "Schloegelhofer_Franz_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210", "author": "", "orig_id": 1406466}}, {"model": "metainfo.source", "pk": 4227, "fields": {"orig_filename": "Schloegl_Alfons_1886_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210", "author": "", "orig_id": 1406467}}, {"model": "metainfo.source", "pk": 4228, "fields": {"orig_filename": "Schloegl_Friedrich_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210f.", "author": "", "orig_id": 1406468}}, {"model": "metainfo.source", "pk": 4229, "fields": {"orig_filename": "Schloegl_Josefine_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 211", "author": "", "orig_id": 1406469}}, {"model": "metainfo.source", "pk": 4230, "fields": {"orig_filename": "Schloegl_Nivard_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 211f.", "author": "", "orig_id": 1406470}}, {"model": "metainfo.source", "pk": 4231, "fields": {"orig_filename": "Schloenbach_Urban_1841_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 212", "author": "", "orig_id": 1406471}}, {"model": "metainfo.source", "pk": 4232, "fields": {"orig_filename": "Schloer_Alois_1805_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 213", "author": "", "orig_id": 1406472}}, {"model": "metainfo.source", "pk": 4233, "fields": {"orig_filename": "Schloessinger_Wilhelm_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 214f.", "author": "", "orig_id": 1406475}}, {"model": "metainfo.source", "pk": 4234, "fields": {"orig_filename": "Schloess_Heinrich-Edmund_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 213f.", "author": "", "orig_id": 1406473}}, {"model": "metainfo.source", "pk": 4235, "fields": {"orig_filename": "Schloess_Karl-Johann_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 214", "author": "", "orig_id": 1406474}}, {"model": "metainfo.source", "pk": 4236, "fields": {"orig_filename": "Schloffer_Alois_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 215", "author": "", "orig_id": 1406476}}, {"model": "metainfo.source", "pk": 4237, "fields": {"orig_filename": "Schloffer_Hermann-Alexander_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 215f.", "author": "", "orig_id": 1406477}}, {"model": "metainfo.source", "pk": 4238, "fields": {"orig_filename": "Schloissnigg_Johann-Nep_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 216f.", "author": "", "orig_id": 1406478}}, {"model": "metainfo.source", "pk": 4239, "fields": {"orig_filename": "Schloissnigg_Theodor-Wilhelm_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 217", "author": "", "orig_id": 1406479}}, {"model": "metainfo.source", "pk": 4240, "fields": {"orig_filename": "Schlossar_Anton_1849_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 217f.", "author": "", "orig_id": 1406480}}, {"model": "metainfo.source", "pk": 4241, "fields": {"orig_filename": "Schlossar_Viktor_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 218", "author": "", "orig_id": 1406481}}, {"model": "metainfo.source", "pk": 4242, "fields": {"orig_filename": "Schlosser-Klekovski_Josip_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 219f.", "author": "", "orig_id": 1406484}}, {"model": "metainfo.source", "pk": 4243, "fields": {"orig_filename": "Schlosser_Julius-Alwin_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 218f.", "author": "", "orig_id": 1406482}}, {"model": "metainfo.source", "pk": 4244, "fields": {"orig_filename": "Schlosser_Theodor_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 219", "author": "", "orig_id": 1406483}}, {"model": "metainfo.source", "pk": 4245, "fields": {"orig_filename": "Schlossnikel_Hieronymus_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 220", "author": "", "orig_id": 1406485}}, {"model": "metainfo.source", "pk": 4246, "fields": {"orig_filename": "Schlotterbeck_Wilhelm-Friedrich_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 220f.", "author": "", "orig_id": 1406486}}, {"model": "metainfo.source", "pk": 4247, "fields": {"orig_filename": "Schlucker_Philipp_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 221", "author": "", "orig_id": 2036478}}, {"model": "metainfo.source", "pk": 4248, "fields": {"orig_filename": "Schluga-Rastenfeld_August_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 221f.", "author": "", "orig_id": 1406487}}, {"model": "metainfo.source", "pk": 4249, "fields": {"orig_filename": "Schluga-Rastenfeld_Franz-Sales_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 222", "author": "", "orig_id": 1406488}}, {"model": "metainfo.source", "pk": 4250, "fields": {"orig_filename": "Schlumberger-Goldeck_Gustav_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 2036503}}, {"model": "metainfo.source", "pk": 4251, "fields": {"orig_filename": "Schlumberger-Goldeck_Otto_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 1422951}}, {"model": "metainfo.source", "pk": 4252, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert-Alwin_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 1406490}}, {"model": "metainfo.source", "pk": 4253, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 2036512}}, {"model": "metainfo.source", "pk": 4254, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 222f.", "author": "", "orig_id": 1406489}}, {"model": "metainfo.source", "pk": 4255, "fields": {"orig_filename": "Schlumpf_Sigmund-Franz-Joseph_1819_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223f.", "author": "", "orig_id": 1406491}}, {"model": "metainfo.source", "pk": 4256, "fields": {"orig_filename": "Schlusche_Eduard_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 224f.", "author": "", "orig_id": 1406492}}, {"model": "metainfo.source", "pk": 4257, "fields": {"orig_filename": "Schmaeck-Stregen_Emilia_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 225", "author": "", "orig_id": 1406493}}, {"model": "metainfo.source", "pk": 4258, "fields": {"orig_filename": "Schmalfuss_Anton_1821_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226f.", "author": "", "orig_id": 1406497}}, {"model": "metainfo.source", "pk": 4259, "fields": {"orig_filename": "Schmalz_Josef_1804_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 227", "author": "", "orig_id": 1406498}}, {"model": "metainfo.source", "pk": 4260, "fields": {"orig_filename": "Schmal_Adolf_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 225f.", "author": "", "orig_id": 1406494}}, {"model": "metainfo.source", "pk": 4261, "fields": {"orig_filename": "Schmal_Felix_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406495}}, {"model": "metainfo.source", "pk": 4262, "fields": {"orig_filename": "Schmarda_Anton_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 228", "author": "", "orig_id": 1406500}}, {"model": "metainfo.source", "pk": 4263, "fields": {"orig_filename": "Schmarda_Karl-Johann_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 227f.", "author": "", "orig_id": 1406499}}, {"model": "metainfo.source", "pk": 4264, "fields": {"orig_filename": "Schmarda_Ludwig-Karl_1819_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 228f.", "author": "", "orig_id": 1406501}}, {"model": "metainfo.source", "pk": 4265, "fields": {"orig_filename": "Schmeidel_Gustav_1895_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 229f.", "author": "", "orig_id": 1406503}}, {"model": "metainfo.source", "pk": 4266, "fields": {"orig_filename": "Schmeja_Edmund_1837_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 230f.", "author": "", "orig_id": 1406504}}, {"model": "metainfo.source", "pk": 4267, "fields": {"orig_filename": "Schmeja_Ernst_1868_1954.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231", "author": "", "orig_id": 1406506}}, {"model": "metainfo.source", "pk": 4268, "fields": {"orig_filename": "Schmeja_Maximilian-Karl_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231", "author": "", "orig_id": 1406505}}, {"model": "metainfo.source", "pk": 4269, "fields": {"orig_filename": "Schmelkes_Gedaljah_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231f.", "author": "", "orig_id": 1406507}}, {"model": "metainfo.source", "pk": 4270, "fields": {"orig_filename": "Schmelzer_Antonin-Stanislav_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 232f.", "author": "", "orig_id": 1406509}}, {"model": "metainfo.source", "pk": 4271, "fields": {"orig_filename": "Schmelzer_Karl_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233", "author": "", "orig_id": 1406510}}, {"model": "metainfo.source", "pk": 4272, "fields": {"orig_filename": "Schmerber_Hugo_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233f.", "author": "", "orig_id": 1406512}}, {"model": "metainfo.source", "pk": 4273, "fields": {"orig_filename": "Schmerling_Anton_1805_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234f.", "author": "", "orig_id": 1406513}}, {"model": "metainfo.source", "pk": 4274, "fields": {"orig_filename": "Schmerling_Joseph_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 235", "author": "", "orig_id": 1406516}}, {"model": "metainfo.source", "pk": 4275, "fields": {"orig_filename": "Schmerling_Moriz_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234", "author": "", "orig_id": 1406515}}, {"model": "metainfo.source", "pk": 4276, "fields": {"orig_filename": "Schmerling_Rainer_1810_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234", "author": "", "orig_id": 1406514}}, {"model": "metainfo.source", "pk": 4277, "fields": {"orig_filename": "Schmerz_Hermann_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 235f.", "author": "", "orig_id": 1406518}}, {"model": "metainfo.source", "pk": 4278, "fields": {"orig_filename": "Schmerz_Leopold_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236", "author": "", "orig_id": 1406519}}, {"model": "metainfo.source", "pk": 4279, "fields": {"orig_filename": "Schmer_Josefine_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233", "author": "", "orig_id": 1406511}}, {"model": "metainfo.source", "pk": 4280, "fields": {"orig_filename": "Schmetzer_Gustav-Julius_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236", "author": "", "orig_id": 1406520}}, {"model": "metainfo.source", "pk": 4281, "fields": {"orig_filename": "Schmeykal_Franz_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236f.", "author": "", "orig_id": 1406521}}, {"model": "metainfo.source", "pk": 4282, "fields": {"orig_filename": "Schmid-Altenheim_Konrad_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 303f.", "author": "", "orig_id": 1406718}}, {"model": "metainfo.source", "pk": 4283, "fields": {"orig_filename": "Schmid-Altenstadt_Karl-August_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 304", "author": "", "orig_id": 1406719}}, {"model": "metainfo.source", "pk": 4284, "fields": {"orig_filename": "Schmid-Altenstadt_Maximilian-Von_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 304f.", "author": "", "orig_id": 1406720}}, {"model": "metainfo.source", "pk": 4285, "fields": {"orig_filename": "Schmid-Bergenhold_Johann-Ferdinand_1786_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 306", "author": "", "orig_id": 1406722}}, {"model": "metainfo.source", "pk": 4286, "fields": {"orig_filename": "Schmid-Boneti_Hugo_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 306f.", "author": "", "orig_id": 1406723}}, {"model": "metainfo.source", "pk": 4287, "fields": {"orig_filename": "Schmid-Gasteiger_Felix_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307", "author": "", "orig_id": 1406724}}, {"model": "metainfo.source", "pk": 4288, "fields": {"orig_filename": "Schmid-Georgenegg_Albert_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307", "author": "", "orig_id": 1406725}}, {"model": "metainfo.source", "pk": 4289, "fields": {"orig_filename": "Schmid-Renner_Franz_1851_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307f.", "author": "", "orig_id": 1406726}}, {"model": "metainfo.source", "pk": 4290, "fields": {"orig_filename": "Schmid-Reutte_Ludwig_1862_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308", "author": "", "orig_id": 1406727}}, {"model": "metainfo.source", "pk": 4291, "fields": {"orig_filename": "Schmid-Schmidsfelden_Adolf_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308f.", "author": "", "orig_id": 1406728}}, {"model": "metainfo.source", "pk": 4292, "fields": {"orig_filename": "Schmid-Schmidsfelden_August_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308", "author": "", "orig_id": 1406729}}, {"model": "metainfo.source", "pk": 4293, "fields": {"orig_filename": "Schmid-Schmidsfelden_Emil-Josef-Johann_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 310", "author": "", "orig_id": 1406734}}, {"model": "metainfo.source", "pk": 4294, "fields": {"orig_filename": "Schmid-Schmidsfelden_Ferdinand-Anton_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406731}}, {"model": "metainfo.source", "pk": 4295, "fields": {"orig_filename": "Schmid-Schmidsfelden_Josef-Karl-Mathaeus_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309f.", "author": "", "orig_id": 1406733}}, {"model": "metainfo.source", "pk": 4296, "fields": {"orig_filename": "Schmid-Schmidsfelden_Josef-Karl_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406730}}, {"model": "metainfo.source", "pk": 4297, "fields": {"orig_filename": "Schmid-Schmidsfelden_Maximilian-Constantin_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406732}}, {"model": "metainfo.source", "pk": 4298, "fields": {"orig_filename": "Schmid-Schmidsfelden_Moriz_1836_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 310f.", "author": "", "orig_id": 1406735}}, {"model": "metainfo.source", "pk": 4299, "fields": {"orig_filename": "Schmid-Schmidsfelden_Victor-Johann-Bapt_1860_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 311", "author": "", "orig_id": 1406736}}, {"model": "metainfo.source", "pk": 4300, "fields": {"orig_filename": "Schmid-Schmidsfelden_Walter-Johann-Friedrich_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 311f.", "author": "", "orig_id": 1406737}}, {"model": "metainfo.source", "pk": 4301, "fields": {"orig_filename": "Schmid-Tavera_Anton_1793_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 312", "author": "", "orig_id": 1406738}}, {"model": "metainfo.source", "pk": 4302, "fields": {"orig_filename": "Schmid-Tavera_Ernst_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 312f.", "author": "", "orig_id": 1406739}}, {"model": "metainfo.source", "pk": 4303, "fields": {"orig_filename": "Schmid-Tavera_Karl_1832_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 313f.", "author": "", "orig_id": 1406740}}, {"model": "metainfo.source", "pk": 4304, "fields": {"orig_filename": "Schmid-Zabierow_Franz_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 314", "author": "", "orig_id": 1406741}}, {"model": "metainfo.source", "pk": 4305, "fields": {"orig_filename": "Schmidbauer_Lambert_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 314f.", "author": "", "orig_id": 1406742}}, {"model": "metainfo.source", "pk": 4306, "fields": {"orig_filename": "Schmidberger_Josef_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 315", "author": "", "orig_id": 1406743}}, {"model": "metainfo.source", "pk": 4307, "fields": {"orig_filename": "Schmidburg_Joseph-Camillo_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 315f.", "author": "", "orig_id": 1406744}}, {"model": "metainfo.source", "pk": 4308, "fields": {"orig_filename": "Schmidburg_Rudolf_1810_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 316", "author": "", "orig_id": 1406745}}, {"model": "metainfo.source", "pk": 4309, "fields": {"orig_filename": "Schmidek_Karl_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 316f.", "author": "", "orig_id": 1406746}}, {"model": "metainfo.source", "pk": 4310, "fields": {"orig_filename": "Schmidek_Karl_1834_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317", "author": "", "orig_id": 1406747}}, {"model": "metainfo.source", "pk": 4311, "fields": {"orig_filename": "Schmiderer_Joseph-Ignaz_1755_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317f.", "author": "", "orig_id": 1406749}}, {"model": "metainfo.source", "pk": 4312, "fields": {"orig_filename": "Schmidgruber_Anton_1837_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 318f.", "author": "", "orig_id": 1406750}}, {"model": "metainfo.source", "pk": 4313, "fields": {"orig_filename": "Schmidinger_Josef_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 319", "author": "", "orig_id": 1406751}}, {"model": "metainfo.source", "pk": 4314, "fields": {"orig_filename": "Schmidkunz_Hans_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 319f.", "author": "", "orig_id": 1406752}}, {"model": "metainfo.source", "pk": 4315, "fields": {"orig_filename": "Schmidl_Adolf_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 320f.", "author": "", "orig_id": 1406753}}, {"model": "metainfo.source", "pk": 4316, "fields": {"orig_filename": "Schmidl_Anna_1782_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325f.", "author": "", "orig_id": 1406599}}, {"model": "metainfo.source", "pk": 4317, "fields": {"orig_filename": "Schmidl_Carlo_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 321f.", "author": "", "orig_id": 1406754}}, {"model": "metainfo.source", "pk": 4318, "fields": {"orig_filename": "Schindler_Samuel_1762_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 155f.", "author": "", "orig_id": 1406258}}, {"model": "metainfo.source", "pk": 4319, "fields": {"orig_filename": "Schindler_Vinzenz-Karl_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 156", "author": "", "orig_id": 1406308}}, {"model": "metainfo.source", "pk": 4320, "fields": {"orig_filename": "Schindloecker_Eugen_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 157", "author": "", "orig_id": 1406310}}, {"model": "metainfo.source", "pk": 4321, "fields": {"orig_filename": "Schindloecker_Philipp_1753_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 157", "author": "", "orig_id": 1406311}}, {"model": "metainfo.source", "pk": 4322, "fields": {"orig_filename": "Schindloecker_Wolfgang_1789_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406312}}, {"model": "metainfo.source", "pk": 4323, "fields": {"orig_filename": "Schinko_Raimund_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406313}}, {"model": "metainfo.source", "pk": 4324, "fields": {"orig_filename": "Schinnagl_Maurus_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406314}}, {"model": "metainfo.source", "pk": 4325, "fields": {"orig_filename": "Schinzel_Josef_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158f.", "author": "", "orig_id": 1406315}}, {"model": "metainfo.source", "pk": 4326, "fields": {"orig_filename": "Schio_Almerico_1836_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 159f.", "author": "", "orig_id": 1406316}}, {"model": "metainfo.source", "pk": 4327, "fields": {"orig_filename": "Schiper_Ignacy_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 160", "author": "", "orig_id": 1406317}}, {"model": "metainfo.source", "pk": 4328, "fields": {"orig_filename": "Schipper_Jakob_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 160f.", "author": "", "orig_id": 1406318}}, {"model": "metainfo.source", "pk": 4329, "fields": {"orig_filename": "Schirkhuber_Moricz_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 161", "author": "", "orig_id": 1406319}}, {"model": "metainfo.source", "pk": 4330, "fields": {"orig_filename": "Schirmer_Adolf_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 161f.", "author": "", "orig_id": 1406320}}, {"model": "metainfo.source", "pk": 4331, "fields": {"orig_filename": "Schirmer_Friedrich_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162", "author": "", "orig_id": 1406321}}, {"model": "metainfo.source", "pk": 4332, "fields": {"orig_filename": "Schirmer_Otto_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162", "author": "", "orig_id": 1406322}}, {"model": "metainfo.source", "pk": 4333, "fields": {"orig_filename": "Schirmer_Wilhelm-Kajetan_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162f.", "author": "", "orig_id": 1406323}}, {"model": "metainfo.source", "pk": 4334, "fields": {"orig_filename": "Schirnboeck_Ferdinand_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 163", "author": "", "orig_id": 1406324}}, {"model": "metainfo.source", "pk": 4335, "fields": {"orig_filename": "Schirndinger-Schirnding_Ferdinand-Leopold_1808_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 163f.", "author": "", "orig_id": 1406325}}, {"model": "metainfo.source", "pk": 4336, "fields": {"orig_filename": "Schirnhofer_Gerhard_1819_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 164", "author": "", "orig_id": 1406326}}, {"model": "metainfo.source", "pk": 4337, "fields": {"orig_filename": "Schissel-Fleschenberg_Otmar_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 164f.", "author": "", "orig_id": 1406327}}, {"model": "metainfo.source", "pk": 4338, "fields": {"orig_filename": "Schittenhelm_Anton_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165", "author": "", "orig_id": 1406328}}, {"model": "metainfo.source", "pk": 4339, "fields": {"orig_filename": "Schitter_Balthasar_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165", "author": "", "orig_id": 1406329}}, {"model": "metainfo.source", "pk": 4340, "fields": {"orig_filename": "Schivert_Gustav-Albert_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165f.", "author": "", "orig_id": 1406330}}, {"model": "metainfo.source", "pk": 4341, "fields": {"orig_filename": "Schiviz-Schivizhoffen_Ludwig_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166", "author": "", "orig_id": 1406331}}, {"model": "metainfo.source", "pk": 4342, "fields": {"orig_filename": "Schlaeger_Antonie_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166", "author": "", "orig_id": 1406332}}, {"model": "metainfo.source", "pk": 4343, "fields": {"orig_filename": "Schlaeger_Hans_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166f.", "author": "", "orig_id": 1406333}}, {"model": "metainfo.source", "pk": 4344, "fields": {"orig_filename": "Schlagenhaufer_Friedrich_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 167", "author": "", "orig_id": 1406334}}, {"model": "metainfo.source", "pk": 4345, "fields": {"orig_filename": "Schlager_Johann-Ev_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 167f.", "author": "", "orig_id": 1406335}}, {"model": "metainfo.source", "pk": 4346, "fields": {"orig_filename": "Schlager_Ludwig_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 168f.", "author": "", "orig_id": 1406336}}, {"model": "metainfo.source", "pk": 4347, "fields": {"orig_filename": "Schlager_Marcellinus_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 169", "author": "", "orig_id": 1406337}}, {"model": "metainfo.source", "pk": 4348, "fields": {"orig_filename": "Schlaghamer_Richard_1871_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 169f.", "author": "", "orig_id": 1406338}}, {"model": "metainfo.source", "pk": 4349, "fields": {"orig_filename": "Schlangenhausen_Emma_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170", "author": "", "orig_id": 1406339}}, {"model": "metainfo.source", "pk": 4350, "fields": {"orig_filename": "Schlar_Josef_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170", "author": "", "orig_id": 1406340}}, {"model": "metainfo.source", "pk": 4351, "fields": {"orig_filename": "Schlattauer_Rudolf_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170f.", "author": "", "orig_id": 1406341}}, {"model": "metainfo.source", "pk": 4352, "fields": {"orig_filename": "Schlauch_Loerinc_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 171", "author": "", "orig_id": 1406342}}, {"model": "metainfo.source", "pk": 4353, "fields": {"orig_filename": "Schlechta-Hrochow_Friedrich-Peter-Maria-Emanuel_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 172f.", "author": "", "orig_id": 1406345}}, {"model": "metainfo.source", "pk": 4354, "fields": {"orig_filename": "Schlechta-Hrochow_Peter-Josef_1792_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 173", "author": "", "orig_id": 1406346}}, {"model": "metainfo.source", "pk": 4355, "fields": {"orig_filename": "Schlechta-Wschehrd_Franz-X-Vinzenz_1765_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 174", "author": "", "orig_id": 1406348}}, {"model": "metainfo.source", "pk": 4356, "fields": {"orig_filename": "Schlechta-Wschehrd_Franz-X_1796_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 173f.", "author": "", "orig_id": 1406347}}, {"model": "metainfo.source", "pk": 4357, "fields": {"orig_filename": "Schlechta-Wschehrd_Kamill-Franz-Karl-Adam_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 174f.", "author": "", "orig_id": 1406349}}, {"model": "metainfo.source", "pk": 4358, "fields": {"orig_filename": "Schlechta-Wschehrd_Ottokar-Maria_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 175", "author": "", "orig_id": 1406350}}, {"model": "metainfo.source", "pk": 4359, "fields": {"orig_filename": "Schlechta_Franz_1833_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 171f.", "author": "", "orig_id": 1406343}}, {"model": "metainfo.source", "pk": 4360, "fields": {"orig_filename": "Schlechta_Peter-Josef-Dominik_1765_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 172", "author": "", "orig_id": 1406344}}, {"model": "metainfo.source", "pk": 4361, "fields": {"orig_filename": "Schlechter_Josef-Dominik_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 175f.", "author": "", "orig_id": 1406351}}, {"model": "metainfo.source", "pk": 4362, "fields": {"orig_filename": "Schlechter_Karl_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 176", "author": "", "orig_id": 1406353}}, {"model": "metainfo.source", "pk": 4363, "fields": {"orig_filename": "Schlegel_Anton_1878_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 177", "author": "", "orig_id": 1406354}}, {"model": "metainfo.source", "pk": 4364, "fields": {"orig_filename": "Schlegel_Dorothea_1764_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 177f.", "author": "", "orig_id": 1406259}}, {"model": "metainfo.source", "pk": 4365, "fields": {"orig_filename": "Schlegel_Friedrich_1772_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 178f.", "author": "", "orig_id": 1406260}}, {"model": "metainfo.source", "pk": 4366, "fields": {"orig_filename": "Schlegel_Joseph_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 179f.", "author": "", "orig_id": 1406261}}, {"model": "metainfo.source", "pk": 4367, "fields": {"orig_filename": "Schlegel_Richard_1906_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 180", "author": "", "orig_id": 1406262}}, {"model": "metainfo.source", "pk": 4368, "fields": {"orig_filename": "Schlegel_Thomas_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 180f.", "author": "", "orig_id": 1406263}}, {"model": "metainfo.source", "pk": 4369, "fields": {"orig_filename": "Schleifer_Mathias-Leopold_1771_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 181", "author": "", "orig_id": 1406265}}, {"model": "metainfo.source", "pk": 4370, "fields": {"orig_filename": "Schleifer_Moriz-Leopold_1817_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 181f.", "author": "", "orig_id": 1406266}}, {"model": "metainfo.source", "pk": 4371, "fields": {"orig_filename": "Schleimer_Hans_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 182", "author": "", "orig_id": 1406267}}, {"model": "metainfo.source", "pk": 4372, "fields": {"orig_filename": "Schleindl_Franz_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 183", "author": "", "orig_id": 1406269}}, {"model": "metainfo.source", "pk": 4373, "fields": {"orig_filename": "Schleinitz_Alexandra_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 183f.", "author": "", "orig_id": 1406270}}, {"model": "metainfo.source", "pk": 4374, "fields": {"orig_filename": "Schlein_Anton-Franz_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 182f.", "author": "", "orig_id": 1406268}}, {"model": "metainfo.source", "pk": 4375, "fields": {"orig_filename": "Schleissner_Felix_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 184f.", "author": "", "orig_id": 1406272}}, {"model": "metainfo.source", "pk": 4376, "fields": {"orig_filename": "Schleiss_Franz-De-Paula_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 184", "author": "", "orig_id": 1406271}}, {"model": "metainfo.source", "pk": 4377, "fields": {"orig_filename": "Schlemmer_Anton_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185", "author": "", "orig_id": 1406273}}, {"model": "metainfo.source", "pk": 4378, "fields": {"orig_filename": "Schlemmer_Anton_1883_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185", "author": "", "orig_id": 1406274}}, {"model": "metainfo.source", "pk": 4379, "fields": {"orig_filename": "Schlemmer_Fritz_1884_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185f.", "author": "", "orig_id": 1406275}}, {"model": "metainfo.source", "pk": 4380, "fields": {"orig_filename": "Schlenk_Karl-Heinrich_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 186f.", "author": "", "orig_id": 1406276}}, {"model": "metainfo.source", "pk": 4381, "fields": {"orig_filename": "Schlenther_Paula_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188", "author": "", "orig_id": 1406278}}, {"model": "metainfo.source", "pk": 4382, "fields": {"orig_filename": "Schlenther_Paul_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 187f.", "author": "", "orig_id": 1406277}}, {"model": "metainfo.source", "pk": 4383, "fields": {"orig_filename": "Schlenz_Johann_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188", "author": "", "orig_id": 1406279}}, {"model": "metainfo.source", "pk": 4384, "fields": {"orig_filename": "Schleps_Karl_1802_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188f.", "author": "", "orig_id": 1406280}}, {"model": "metainfo.source", "pk": 4385, "fields": {"orig_filename": "Schlesinger_Akiva-Joseph_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406281}}, {"model": "metainfo.source", "pk": 4386, "fields": {"orig_filename": "Schlesinger_Anton_1853_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406282}}, {"model": "metainfo.source", "pk": 4387, "fields": {"orig_filename": "Schlesinger_Bernhard_1773_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406283}}, {"model": "metainfo.source", "pk": 4388, "fields": {"orig_filename": "Schlesinger_Guenther_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 190", "author": "", "orig_id": 1406284}}, {"model": "metainfo.source", "pk": 4389, "fields": {"orig_filename": "Schlesinger_Hans_1896_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 190f.", "author": "", "orig_id": 1406285}}, {"model": "metainfo.source", "pk": 4390, "fields": {"orig_filename": "Schlesinger_Hermann_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 191", "author": "", "orig_id": 1406286}}, {"model": "metainfo.source", "pk": 4391, "fields": {"orig_filename": "Schlesinger_Ignac_1810_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 191f.", "author": "", "orig_id": 1406287}}, {"model": "metainfo.source", "pk": 4392, "fields": {"orig_filename": "Schlesinger_Josef_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 192", "author": "", "orig_id": 1406288}}, {"model": "metainfo.source", "pk": 4393, "fields": {"orig_filename": "Schlesinger_Julie_1815_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193", "author": "", "orig_id": 1406289}}, {"model": "metainfo.source", "pk": 4394, "fields": {"orig_filename": "Schlesinger_Karl-M_1847_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 194", "author": "", "orig_id": 1406292}}, {"model": "metainfo.source", "pk": 4395, "fields": {"orig_filename": "Schlesinger_Karl_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193", "author": "", "orig_id": 1406290}}, {"model": "metainfo.source", "pk": 4396, "fields": {"orig_filename": "Schlesinger_Karl_1889_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193f.", "author": "", "orig_id": 1406291}}, {"model": "metainfo.source", "pk": 4397, "fields": {"orig_filename": "Schlesinger_Louis_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 194f.", "author": "", "orig_id": 1406293}}, {"model": "metainfo.source", "pk": 4398, "fields": {"orig_filename": "Schlesinger_Ludwig_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 195f.", "author": "", "orig_id": 1406294}}, {"model": "metainfo.source", "pk": 4399, "fields": {"orig_filename": "Schlesinger_Ludwig_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 196f.", "author": "", "orig_id": 1406295}}, {"model": "metainfo.source", "pk": 4400, "fields": {"orig_filename": "Schlesinger_Martin_1751_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 197", "author": "", "orig_id": 1406296}}, {"model": "metainfo.source", "pk": 4401, "fields": {"orig_filename": "Schlesinger_Max_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 197f.", "author": "", "orig_id": 1406297}}, {"model": "metainfo.source", "pk": 4402, "fields": {"orig_filename": "Schlesinger_Max_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 199", "author": "", "orig_id": 2036451}}, {"model": "metainfo.source", "pk": 4403, "fields": {"orig_filename": "Schlesinger_Sigmund_1811_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 198", "author": "", "orig_id": 1406298}}, {"model": "metainfo.source", "pk": 4404, "fields": {"orig_filename": "Schlesinger_Sigmund_1832_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 198f.", "author": "", "orig_id": 1406299}}, {"model": "metainfo.source", "pk": 4405, "fields": {"orig_filename": "Schlesinger_Therese_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 199f.", "author": "", "orig_id": 1406300}}, {"model": "metainfo.source", "pk": 4406, "fields": {"orig_filename": "Schlesinger_Wilhelm_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 200", "author": "", "orig_id": 1406301}}, {"model": "metainfo.source", "pk": 4407, "fields": {"orig_filename": "Schlesinger_Wilhelm_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 200f.", "author": "", "orig_id": 1406302}}, {"model": "metainfo.source", "pk": 4408, "fields": {"orig_filename": "Schlesinger_Wilhelm_1894_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 201", "author": "", "orig_id": 1406303}}, {"model": "metainfo.source", "pk": 4409, "fields": {"orig_filename": "Schleussner_Josef_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 201", "author": "", "orig_id": 1406304}}, {"model": "metainfo.source", "pk": 4410, "fields": {"orig_filename": "Schleyer-Pontemalghera_Leopold_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 202", "author": "", "orig_id": 1406305}}, {"model": "metainfo.source", "pk": 4411, "fields": {"orig_filename": "Schlichtinger_Wolfgang_1745_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 202f.", "author": "", "orig_id": 1406306}}, {"model": "metainfo.source", "pk": 4412, "fields": {"orig_filename": "Schlickinger_Max_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 204", "author": "", "orig_id": 1406455}}, {"model": "metainfo.source", "pk": 4413, "fields": {"orig_filename": "Schlick_Dominikus_1816_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 203", "author": "", "orig_id": 1406307}}, {"model": "metainfo.source", "pk": 4414, "fields": {"orig_filename": "Schlick_Moritz_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 203f.", "author": "", "orig_id": 1406454}}, {"model": "metainfo.source", "pk": 4415, "fields": {"orig_filename": "Schliessmann_Hans_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 205f.", "author": "", "orig_id": 1406457}}, {"model": "metainfo.source", "pk": 4416, "fields": {"orig_filename": "Schlik-Bassano-Weisskirchen_Maria-Elisabeth_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 206", "author": "", "orig_id": 1406458}}, {"model": "metainfo.source", "pk": 4417, "fields": {"orig_filename": "Schlimp_Karl_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 206f.", "author": "", "orig_id": 1406459}}, {"model": "metainfo.source", "pk": 4418, "fields": {"orig_filename": "Schlinger_Anton_1870_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207", "author": "", "orig_id": 1406460}}, {"model": "metainfo.source", "pk": 4419, "fields": {"orig_filename": "Schicht_Georg_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105", "author": "", "orig_id": 1406060}}, {"model": "metainfo.source", "pk": 4420, "fields": {"orig_filename": "Schicht_Georg_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105", "author": "", "orig_id": 1406061}}, {"model": "metainfo.source", "pk": 4421, "fields": {"orig_filename": "Schicht_Johann_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105f.", "author": "", "orig_id": 1406062}}, {"model": "metainfo.source", "pk": 4422, "fields": {"orig_filename": "Schicht_Josef_1880_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 106", "author": "", "orig_id": 1406063}}, {"model": "metainfo.source", "pk": 4423, "fields": {"orig_filename": "Schickedanz_Albert_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 107", "author": "", "orig_id": 1406065}}, {"model": "metainfo.source", "pk": 4424, "fields": {"orig_filename": "Schicker_Josef_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 107", "author": "", "orig_id": 1406066}}, {"model": "metainfo.source", "pk": 4425, "fields": {"orig_filename": "Schickh_Antonie_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 108", "author": "", "orig_id": 1406067}}, {"model": "metainfo.source", "pk": 4426, "fields": {"orig_filename": "Schickh_Johann-Valentin_1770_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 108f.", "author": "", "orig_id": 1406068}}, {"model": "metainfo.source", "pk": 4427, "fields": {"orig_filename": "Schickh_Josef-Kilian_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 109", "author": "", "orig_id": 1406069}}, {"model": "metainfo.source", "pk": 4428, "fields": {"orig_filename": "Schick_Moses_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 106f.", "author": "", "orig_id": 1406064}}, {"model": "metainfo.source", "pk": 4429, "fields": {"orig_filename": "Schider_Fritz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 109f.", "author": "", "orig_id": 1406070}}, {"model": "metainfo.source", "pk": 4430, "fields": {"orig_filename": "Schidlof_Arthur_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 110", "author": "", "orig_id": 1406071}}, {"model": "metainfo.source", "pk": 4431, "fields": {"orig_filename": "Schieberth_Hermann_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 110f.", "author": "", "orig_id": 1406072}}, {"model": "metainfo.source", "pk": 4432, "fields": {"orig_filename": "Schiebl_Ignac_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111", "author": "", "orig_id": 1406073}}, {"model": "metainfo.source", "pk": 4433, "fields": {"orig_filename": "Schiebl_Jaroslav_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111", "author": "", "orig_id": 1406074}}, {"model": "metainfo.source", "pk": 4434, "fields": {"orig_filename": "Schiedermayr_Johann-Bapt_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111f.", "author": "", "orig_id": 1406075}}, {"model": "metainfo.source", "pk": 4435, "fields": {"orig_filename": "Schiedermayr_Johann-Bapt_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 112", "author": "", "orig_id": 1406076}}, {"model": "metainfo.source", "pk": 4436, "fields": {"orig_filename": "Schiedermayr_Karl_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 112f.", "author": "", "orig_id": 1406077}}, {"model": "metainfo.source", "pk": 4437, "fields": {"orig_filename": "Schiefthaler_Franz_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 113", "author": "", "orig_id": 1406078}}, {"model": "metainfo.source", "pk": 4438, "fields": {"orig_filename": "Schiegl_Wilhelm_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 113f.", "author": "", "orig_id": 1406079}}, {"model": "metainfo.source", "pk": 4439, "fields": {"orig_filename": "Schiele_Egon_1890_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115ff.", "author": "", "orig_id": 1406084}}, {"model": "metainfo.source", "pk": 4440, "fields": {"orig_filename": "Schiel_Heinrich-Josef_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 114", "author": "", "orig_id": 1406080}}, {"model": "metainfo.source", "pk": 4441, "fields": {"orig_filename": "Schiel_Karl_1851_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 114f.", "author": "", "orig_id": 1406081}}, {"model": "metainfo.source", "pk": 4442, "fields": {"orig_filename": "Schiel_Samuel-Traugott_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115", "author": "", "orig_id": 1406083}}, {"model": "metainfo.source", "pk": 4443, "fields": {"orig_filename": "Schiel_Samuel_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115", "author": "", "orig_id": 1406082}}, {"model": "metainfo.source", "pk": 4444, "fields": {"orig_filename": "Schiepek_Josef_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117", "author": "", "orig_id": 1406086}}, {"model": "metainfo.source", "pk": 4445, "fields": {"orig_filename": "Schierer_Franz_1819_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117", "author": "", "orig_id": 1406087}}, {"model": "metainfo.source", "pk": 4446, "fields": {"orig_filename": "Schierl-Moorburg_Karl_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117f.", "author": "", "orig_id": 1406088}}, {"model": "metainfo.source", "pk": 4447, "fields": {"orig_filename": "Schiesler_Ignac-Jan_1782_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118", "author": "", "orig_id": 1406089}}, {"model": "metainfo.source", "pk": 4448, "fields": {"orig_filename": "Schiessl-Perstorff_Franz_1844_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118", "author": "", "orig_id": 1406090}}, {"model": "metainfo.source", "pk": 4449, "fields": {"orig_filename": "Schiessler_Sebastian-Willibald_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118f.", "author": "", "orig_id": 1406091}}, {"model": "metainfo.source", "pk": 4450, "fields": {"orig_filename": "Schiestl_Anton-Martin_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 119f.", "author": "", "orig_id": 1406356}}, {"model": "metainfo.source", "pk": 4451, "fields": {"orig_filename": "Schiestl_Anton_1808_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 119", "author": "", "orig_id": 1406355}}, {"model": "metainfo.source", "pk": 4452, "fields": {"orig_filename": "Schiestl_Leopold_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 120f.", "author": "", "orig_id": 1406357}}, {"model": "metainfo.source", "pk": 4453, "fields": {"orig_filename": "Schiestl_Matthaeus_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 121", "author": "", "orig_id": 1406358}}, {"model": "metainfo.source", "pk": 4454, "fields": {"orig_filename": "Schiffel_Adalbert_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 123f.", "author": "", "orig_id": 1406362}}, {"model": "metainfo.source", "pk": 4455, "fields": {"orig_filename": "Schifferer_Josef_1906_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124", "author": "", "orig_id": 1406364}}, {"model": "metainfo.source", "pk": 4456, "fields": {"orig_filename": "Schiffer_Anton_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124", "author": "", "orig_id": 1406363}}, {"model": "metainfo.source", "pk": 4457, "fields": {"orig_filename": "Schiffmann_Jost-Joseph-Niklas_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124f.", "author": "", "orig_id": 1406365}}, {"model": "metainfo.source", "pk": 4458, "fields": {"orig_filename": "Schiffmann_Konrad_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 125f.", "author": "", "orig_id": 1406366}}, {"model": "metainfo.source", "pk": 4459, "fields": {"orig_filename": "Schiffner_Franz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 126", "author": "", "orig_id": 1406367}}, {"model": "metainfo.source", "pk": 4460, "fields": {"orig_filename": "Schiffner_Karl_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 126f.", "author": "", "orig_id": 1406368}}, {"model": "metainfo.source", "pk": 4461, "fields": {"orig_filename": "Schiffner_Ludwig_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 127", "author": "", "orig_id": 1406369}}, {"model": "metainfo.source", "pk": 4462, "fields": {"orig_filename": "Schiffner_Viktor-Ferdinand_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 127f.", "author": "", "orig_id": 1406370}}, {"model": "metainfo.source", "pk": 4463, "fields": {"orig_filename": "Schiff_Eduard-Liberius_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 121f.", "author": "", "orig_id": 1406359}}, {"model": "metainfo.source", "pk": 4464, "fields": {"orig_filename": "Schiff_Josef_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 122", "author": "", "orig_id": 1406360}}, {"model": "metainfo.source", "pk": 4465, "fields": {"orig_filename": "Schiff_Walter_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 122f.", "author": "", "orig_id": 1406361}}, {"model": "metainfo.source", "pk": 4466, "fields": {"orig_filename": "Schifkorn_Rudolf_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 128", "author": "", "orig_id": 1406371}}, {"model": "metainfo.source", "pk": 4467, "fields": {"orig_filename": "Schikaneder_Eleonore_1751_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129", "author": "", "orig_id": 1406373}}, {"model": "metainfo.source", "pk": 4468, "fields": {"orig_filename": "Schikaneder_Karl_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 130", "author": "", "orig_id": 1406375}}, {"model": "metainfo.source", "pk": 4469, "fields": {"orig_filename": "Schik_Ignaz_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129", "author": "", "orig_id": 1406372}}, {"model": "metainfo.source", "pk": 4470, "fields": {"orig_filename": "Schildbach_Johann-Gottlieb_1765_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 131", "author": "", "orig_id": 1406378}}, {"model": "metainfo.source", "pk": 4471, "fields": {"orig_filename": "Schilder_Paul-Ferdinand_1886_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 131f.", "author": "", "orig_id": 1406379}}, {"model": "metainfo.source", "pk": 4472, "fields": {"orig_filename": "Schildkraut_Rudolf_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 132f.", "author": "", "orig_id": 1406380}}, {"model": "metainfo.source", "pk": 4473, "fields": {"orig_filename": "Schild_Theodor-Franz_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 130f.", "author": "", "orig_id": 1406376}}, {"model": "metainfo.source", "pk": 4474, "fields": {"orig_filename": "Schili_Matthaeus-Christian_1762_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 133", "author": "", "orig_id": 1406381}}, {"model": "metainfo.source", "pk": 4475, "fields": {"orig_filename": "Schiller-Szinessy_Solomon-Marcus_1820_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136f.", "author": "", "orig_id": 1406390}}, {"model": "metainfo.source", "pk": 4476, "fields": {"orig_filename": "Schiller_Franz-Ferdinand_1773_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134", "author": "", "orig_id": 1406383}}, {"model": "metainfo.source", "pk": 4477, "fields": {"orig_filename": "Schiller_Friedrich_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134", "author": "", "orig_id": 1406384}}, {"model": "metainfo.source", "pk": 4478, "fields": {"orig_filename": "Schiller_Geza_1895_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134f.", "author": "", "orig_id": 1406385}}, {"model": "metainfo.source", "pk": 4479, "fields": {"orig_filename": "Schiller_Josef_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 135", "author": "", "orig_id": 1406386}}, {"model": "metainfo.source", "pk": 4480, "fields": {"orig_filename": "Schiller_Katharina_1829_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 135f.", "author": "", "orig_id": 1406387}}, {"model": "metainfo.source", "pk": 4481, "fields": {"orig_filename": "Schiller_Salomon_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136", "author": "", "orig_id": 1406388}}, {"model": "metainfo.source", "pk": 4482, "fields": {"orig_filename": "Schiller_Siegmund_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136", "author": "", "orig_id": 1406389}}, {"model": "metainfo.source", "pk": 4483, "fields": {"orig_filename": "Schilling-Henrichau_August_1815_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 137f.", "author": "", "orig_id": 1406392}}, {"model": "metainfo.source", "pk": 4484, "fields": {"orig_filename": "Schillinger_Franz_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 138", "author": "", "orig_id": 1406393}}, {"model": "metainfo.source", "pk": 4485, "fields": {"orig_filename": "Schilling_Julius_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 137", "author": "", "orig_id": 1406391}}, {"model": "metainfo.source", "pk": 4486, "fields": {"orig_filename": "Schill_Salamon_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 133f.", "author": "", "orig_id": 1406382}}, {"model": "metainfo.source", "pk": 4487, "fields": {"orig_filename": "Schimek_Otto_1925_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 138f.", "author": "", "orig_id": 1406394}}, {"model": "metainfo.source", "pk": 4488, "fields": {"orig_filename": "Schimkowitz_Herbert_1898_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140", "author": "", "orig_id": 1406396}}, {"model": "metainfo.source", "pk": 4489, "fields": {"orig_filename": "Schimkowitz_Othmar_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140", "author": "", "orig_id": 1406397}}, {"model": "metainfo.source", "pk": 4490, "fields": {"orig_filename": "Schimko_Friedrich-Daniel_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 139f.", "author": "", "orig_id": 1406395}}, {"model": "metainfo.source", "pk": 4491, "fields": {"orig_filename": "Schimmer_Gustav-Adolph_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140f.", "author": "", "orig_id": 1406398}}, {"model": "metainfo.source", "pk": 4492, "fields": {"orig_filename": "Schimmer_Karl-August_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 141f.", "author": "", "orig_id": 1406399}}, {"model": "metainfo.source", "pk": 4493, "fields": {"orig_filename": "Schimonsky-Schimony_Emanuel_1752_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142f.", "author": "", "orig_id": 1406402}}, {"model": "metainfo.source", "pk": 4494, "fields": {"orig_filename": "Schimon_Adolf_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142", "author": "", "orig_id": 1406400}}, {"model": "metainfo.source", "pk": 4495, "fields": {"orig_filename": "Schimon_Ferdinand_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142", "author": "", "orig_id": 1406401}}, {"model": "metainfo.source", "pk": 4496, "fields": {"orig_filename": "Schimser_Johann-Bapt_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 143", "author": "", "orig_id": 1406403}}, {"model": "metainfo.source", "pk": 4497, "fields": {"orig_filename": "Schindelar_Adalbert_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 143f.", "author": "", "orig_id": 1406236}}, {"model": "metainfo.source", "pk": 4498, "fields": {"orig_filename": "Schindelka_Hugo_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144", "author": "", "orig_id": 1406237}}, {"model": "metainfo.source", "pk": 4499, "fields": {"orig_filename": "Schindler-Schindelheim_Johann-Bapt_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 156f.", "author": "", "orig_id": 1406309}}, {"model": "metainfo.source", "pk": 4500, "fields": {"orig_filename": "Schindler_Albert_1805_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144", "author": "", "orig_id": 1406238}}, {"model": "metainfo.source", "pk": 4501, "fields": {"orig_filename": "Schindler_Alexander-Julius_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144ff.", "author": "", "orig_id": 1406239}}, {"model": "metainfo.source", "pk": 4502, "fields": {"orig_filename": "Schindler_Anna-Margaretha_1892_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 146", "author": "", "orig_id": 1406240}}, {"model": "metainfo.source", "pk": 4503, "fields": {"orig_filename": "Schindler_Anton-Felix_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 146f.", "author": "", "orig_id": 1406241}}, {"model": "metainfo.source", "pk": 4504, "fields": {"orig_filename": "Schindler_Carl_1821_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 147", "author": "", "orig_id": 1406242}}, {"model": "metainfo.source", "pk": 4505, "fields": {"orig_filename": "Schindler_Cosmus_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 147f.", "author": "", "orig_id": 1406243}}, {"model": "metainfo.source", "pk": 4506, "fields": {"orig_filename": "Schindler_Emanuel_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 148", "author": "", "orig_id": 1406244}}, {"model": "metainfo.source", "pk": 4507, "fields": {"orig_filename": "Schindler_Emil-Jakob_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 148f.", "author": "", "orig_id": 1406245}}, {"model": "metainfo.source", "pk": 4508, "fields": {"orig_filename": "Schindler_Franz-Friedrich_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 149f.", "author": "", "orig_id": 1406246}}, {"model": "metainfo.source", "pk": 4509, "fields": {"orig_filename": "Schindler_Franz-Martin_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 150", "author": "", "orig_id": 1406247}}, {"model": "metainfo.source", "pk": 4510, "fields": {"orig_filename": "Schindler_Fridolin_1788_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 150f.", "author": "", "orig_id": 1406248}}, {"model": "metainfo.source", "pk": 4511, "fields": {"orig_filename": "Schindler_Friedrich-Wilhelm_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 151f.", "author": "", "orig_id": 1406249}}, {"model": "metainfo.source", "pk": 4512, "fields": {"orig_filename": "Schindler_Johann-Josef_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 152f.", "author": "", "orig_id": 1406251}}, {"model": "metainfo.source", "pk": 4513, "fields": {"orig_filename": "Schindler_Johann_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 152", "author": "", "orig_id": 1406250}}, {"model": "metainfo.source", "pk": 4514, "fields": {"orig_filename": "Schindler_Josef_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153f.", "author": "", "orig_id": 1406253}}, {"model": "metainfo.source", "pk": 4515, "fields": {"orig_filename": "Schindler_Karl_1768_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154", "author": "", "orig_id": 1406254}}, {"model": "metainfo.source", "pk": 4516, "fields": {"orig_filename": "Schindler_Michael-Norbert_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154", "author": "", "orig_id": 1406255}}, {"model": "metainfo.source", "pk": 4517, "fields": {"orig_filename": "Schindler_Robert_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154f.", "author": "", "orig_id": 1406256}}, {"model": "metainfo.source", "pk": 4518, "fields": {"orig_filename": "Schindler_Rudolf_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 155", "author": "", "orig_id": 1406257}}, {"model": "metainfo.source", "pk": 4519, "fields": {"orig_filename": "Schedle_Franz-X_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 57f.", "author": "", "orig_id": 1406140}}, {"model": "metainfo.source", "pk": 4520, "fields": {"orig_filename": "Schedy_Sandor_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58", "author": "", "orig_id": 1406150}}, {"model": "metainfo.source", "pk": 4521, "fields": {"orig_filename": "Scheel_Florus_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58", "author": "", "orig_id": 1406151}}, {"model": "metainfo.source", "pk": 4522, "fields": {"orig_filename": "Scheff-Hohentraun_Julius_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58f.", "author": "", "orig_id": 1406152}}, {"model": "metainfo.source", "pk": 4523, "fields": {"orig_filename": "Scheffer-Leonhardshoff_Johann-Evangelist_1795_1822.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431977}}, {"model": "metainfo.source", "pk": 4524, "fields": {"orig_filename": "Scheiber_Samuel-Hugo_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406155}}, {"model": "metainfo.source", "pk": 4525, "fields": {"orig_filename": "Scheibe_Friedrich-Hermann_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 59", "author": "", "orig_id": 1406153}}, {"model": "metainfo.source", "pk": 4526, "fields": {"orig_filename": "Scheibe_Theodor_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 59f.", "author": "", "orig_id": 1406154}}, {"model": "metainfo.source", "pk": 4527, "fields": {"orig_filename": "Scheibl_Susanna_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406156}}, {"model": "metainfo.source", "pk": 4528, "fields": {"orig_filename": "Scheibner_Gebhard_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406157}}, {"model": "metainfo.source", "pk": 4529, "fields": {"orig_filename": "Scheicher_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 61", "author": "", "orig_id": 1406159}}, {"model": "metainfo.source", "pk": 4530, "fields": {"orig_filename": "Scheichl_Frantisek-Ladislav_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 61f.", "author": "", "orig_id": 1406160}}, {"model": "metainfo.source", "pk": 4531, "fields": {"orig_filename": "Scheichl_Franz_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 62", "author": "", "orig_id": 1406161}}, {"model": "metainfo.source", "pk": 4532, "fields": {"orig_filename": "Scheidela_Hinko_1874_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 63", "author": "", "orig_id": 1406163}}, {"model": "metainfo.source", "pk": 4533, "fields": {"orig_filename": "Scheidlein_Georg_1747_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 63f.", "author": "", "orig_id": 1406165}}, {"model": "metainfo.source", "pk": 4534, "fields": {"orig_filename": "Scheidtenberger_Karl_1827_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 64", "author": "", "orig_id": 1406166}}, {"model": "metainfo.source", "pk": 4535, "fields": {"orig_filename": "Scheid_Georg-Adam_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 62f.", "author": "", "orig_id": 1406162}}, {"model": "metainfo.source", "pk": 4536, "fields": {"orig_filename": "Scheiger_Josef_1801_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 64f.", "author": "", "orig_id": 1406167}}, {"model": "metainfo.source", "pk": 4537, "fields": {"orig_filename": "Scheimpflug_Karl_1856_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 65", "author": "", "orig_id": 1406169}}, {"model": "metainfo.source", "pk": 4538, "fields": {"orig_filename": "Scheimpflug_Theodor_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 65f.", "author": "", "orig_id": 1406170}}, {"model": "metainfo.source", "pk": 4539, "fields": {"orig_filename": "Scheindler_August_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 67", "author": "", "orig_id": 1406172}}, {"model": "metainfo.source", "pk": 4540, "fields": {"orig_filename": "Scheiner_Andreas-Gottlieb_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 67f.", "author": "", "orig_id": 1406173}}, {"model": "metainfo.source", "pk": 4541, "fields": {"orig_filename": "Scheiner_Josef_1798_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 68", "author": "", "orig_id": 1406174}}, {"model": "metainfo.source", "pk": 4542, "fields": {"orig_filename": "Scheiner_Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 68f.", "author": "", "orig_id": 1406175}}, {"model": "metainfo.source", "pk": 4543, "fields": {"orig_filename": "Scheinpflug_Karel_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 69f.", "author": "", "orig_id": 1406176}}, {"model": "metainfo.source", "pk": 4544, "fields": {"orig_filename": "Scheint_Daniel-Gottlieb_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70", "author": "", "orig_id": 1406177}}, {"model": "metainfo.source", "pk": 4545, "fields": {"orig_filename": "Schein_Abraham-Myron_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 66f.", "author": "", "orig_id": 1406171}}, {"model": "metainfo.source", "pk": 4546, "fields": {"orig_filename": "Schellander_Irene_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71", "author": "", "orig_id": 1406180}}, {"model": "metainfo.source", "pk": 4547, "fields": {"orig_filename": "Schellander_Josef_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71", "author": "", "orig_id": 1406181}}, {"model": "metainfo.source", "pk": 4548, "fields": {"orig_filename": "Schellein_Karl_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72", "author": "", "orig_id": 1406184}}, {"model": "metainfo.source", "pk": 4549, "fields": {"orig_filename": "Scheller_Arthur_1876_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72f.", "author": "", "orig_id": 1406185}}, {"model": "metainfo.source", "pk": 4550, "fields": {"orig_filename": "Schelle_Eduard_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71f.", "author": "", "orig_id": 1406182}}, {"model": "metainfo.source", "pk": 4551, "fields": {"orig_filename": "Schelle_Ludwig-Robert_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72", "author": "", "orig_id": 1406183}}, {"model": "metainfo.source", "pk": 4552, "fields": {"orig_filename": "Schell_Anton_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70", "author": "", "orig_id": 1406178}}, {"model": "metainfo.source", "pk": 4553, "fields": {"orig_filename": "Schels_Johann-Bapt_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 73f.", "author": "", "orig_id": 1406186}}, {"model": "metainfo.source", "pk": 4554, "fields": {"orig_filename": "Schelver_Hugo_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74", "author": "", "orig_id": 1406187}}, {"model": "metainfo.source", "pk": 4555, "fields": {"orig_filename": "Schembera_Viktor-Karl_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74f.", "author": "", "orig_id": 1406189}}, {"model": "metainfo.source", "pk": 4556, "fields": {"orig_filename": "Schember_Konrad_1811_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74", "author": "", "orig_id": 1406188}}, {"model": "metainfo.source", "pk": 4557, "fields": {"orig_filename": "Schembor_Friedrich_1898_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 75", "author": "", "orig_id": 1406190}}, {"model": "metainfo.source", "pk": 4558, "fields": {"orig_filename": "Schemerl-Leythenbach_Josef-Maria_1754_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 75f.", "author": "", "orig_id": 1406191}}, {"model": "metainfo.source", "pk": 4559, "fields": {"orig_filename": "Schemua_Blasius_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 76", "author": "", "orig_id": 1406192}}, {"model": "metainfo.source", "pk": 4560, "fields": {"orig_filename": "Schemua_Johann_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 76f.", "author": "", "orig_id": 1406193}}, {"model": "metainfo.source", "pk": 4561, "fields": {"orig_filename": "Schenacher_Johann-Georg_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77", "author": "", "orig_id": 1406194}}, {"model": "metainfo.source", "pk": 4562, "fields": {"orig_filename": "Schenek-Tasnad_Istvan_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77", "author": "", "orig_id": 1406195}}, {"model": "metainfo.source", "pk": 4563, "fields": {"orig_filename": "Schenkel_Theodor_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80", "author": "", "orig_id": 1406203}}, {"model": "metainfo.source", "pk": 4564, "fields": {"orig_filename": "Schenkenbach_Friedrich_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80", "author": "", "orig_id": 1406204}}, {"model": "metainfo.source", "pk": 4565, "fields": {"orig_filename": "Schenker_Gottfried_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80f.", "author": "", "orig_id": 1406205}}, {"model": "metainfo.source", "pk": 4566, "fields": {"orig_filename": "Schenker_Heinrich_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 81f.", "author": "", "orig_id": 1406206}}, {"model": "metainfo.source", "pk": 4567, "fields": {"orig_filename": "Schenker_Martin_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82", "author": "", "orig_id": 1406207}}, {"model": "metainfo.source", "pk": 4568, "fields": {"orig_filename": "Schenkl_Adolf_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82", "author": "", "orig_id": 1406208}}, {"model": "metainfo.source", "pk": 4569, "fields": {"orig_filename": "Schenkl_Heinrich_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82f.", "author": "", "orig_id": 1406209}}, {"model": "metainfo.source", "pk": 4570, "fields": {"orig_filename": "Schenkl_Karl_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 83f.", "author": "", "orig_id": 1406210}}, {"model": "metainfo.source", "pk": 4571, "fields": {"orig_filename": "Schenk_Alois-David_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77f.", "author": "", "orig_id": 1406196}}, {"model": "metainfo.source", "pk": 4572, "fields": {"orig_filename": "Schenk_Hugo_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281", "author": "", "orig_id": 2085225}}, {"model": "metainfo.source", "pk": 4573, "fields": {"orig_filename": "Schenk_Johann-Bapt_1753_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78", "author": "", "orig_id": 1406197}}, {"model": "metainfo.source", "pk": 4574, "fields": {"orig_filename": "Schenk_Johann_1829_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78", "author": "", "orig_id": 1406198}}, {"model": "metainfo.source", "pk": 4575, "fields": {"orig_filename": "Schenk_Josef-Eduard_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78f.", "author": "", "orig_id": 1406199}}, {"model": "metainfo.source", "pk": 4576, "fields": {"orig_filename": "Schenk_Josef-Wilhelm_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79", "author": "", "orig_id": 1406200}}, {"model": "metainfo.source", "pk": 4577, "fields": {"orig_filename": "Schenk_Martin_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79", "author": "", "orig_id": 1406201}}, {"model": "metainfo.source", "pk": 4578, "fields": {"orig_filename": "Schennich_Emil-Anton_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 84f.", "author": "", "orig_id": 1406211}}, {"model": "metainfo.source", "pk": 4579, "fields": {"orig_filename": "Schenzl_Guido_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 85", "author": "", "orig_id": 1406212}}, {"model": "metainfo.source", "pk": 4580, "fields": {"orig_filename": "Scherber_Gustav_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 85f.", "author": "", "orig_id": 1406213}}, {"model": "metainfo.source", "pk": 4581, "fields": {"orig_filename": "Scherer_Augustin_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86", "author": "", "orig_id": 1406214}}, {"model": "metainfo.source", "pk": 4582, "fields": {"orig_filename": "Scherer_Franz-Wolfram_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86", "author": "", "orig_id": 1406215}}, {"model": "metainfo.source", "pk": 4583, "fields": {"orig_filename": "Scherer_Johann-Baptist-Andreas_1755_1844.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2085743}}, {"model": "metainfo.source", "pk": 4584, "fields": {"orig_filename": "Scherer_Marie_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86f.", "author": "", "orig_id": 1406216}}, {"model": "metainfo.source", "pk": 4585, "fields": {"orig_filename": "Scherer_Martin_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87", "author": "", "orig_id": 1406217}}, {"model": "metainfo.source", "pk": 4586, "fields": {"orig_filename": "Scherer_Rosa_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87", "author": "", "orig_id": 1406218}}, {"model": "metainfo.source", "pk": 4587, "fields": {"orig_filename": "Scherer_Rudolf_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87f.", "author": "", "orig_id": 1406219}}, {"model": "metainfo.source", "pk": 4588, "fields": {"orig_filename": "Scherer_Sophie_1817_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 88", "author": "", "orig_id": 1406220}}, {"model": "metainfo.source", "pk": 4589, "fields": {"orig_filename": "Scherer_Wilhelm_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 88ff.", "author": "", "orig_id": 1406221}}, {"model": "metainfo.source", "pk": 4590, "fields": {"orig_filename": "Scherfel_Aurelius-Wilhelm_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 90", "author": "", "orig_id": 1406222}}, {"model": "metainfo.source", "pk": 4591, "fields": {"orig_filename": "Scherg_Georg-Alfred_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 90f.", "author": "", "orig_id": 1406223}}, {"model": "metainfo.source", "pk": 4592, "fields": {"orig_filename": "Scherndl_Balthasar_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91", "author": "", "orig_id": 1406224}}, {"model": "metainfo.source", "pk": 4593, "fields": {"orig_filename": "Scherpe_Johann_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91", "author": "", "orig_id": 1406225}}, {"model": "metainfo.source", "pk": 4594, "fields": {"orig_filename": "Scherzer_Franz-Jakob_1743_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91f.", "author": "", "orig_id": 1406226}}, {"model": "metainfo.source", "pk": 4595, "fields": {"orig_filename": "Scherzer_Ivan_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 92", "author": "", "orig_id": 1406227}}, {"model": "metainfo.source", "pk": 4596, "fields": {"orig_filename": "Scherzer_Johann-Georg_1776_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 92f.", "author": "", "orig_id": 1406228}}, {"model": "metainfo.source", "pk": 4597, "fields": {"orig_filename": "Scherzer_Karl_1821_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 93f.", "author": "", "orig_id": 1406229}}, {"model": "metainfo.source", "pk": 4598, "fields": {"orig_filename": "Schestag_August_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 94f.", "author": "", "orig_id": 1406230}}, {"model": "metainfo.source", "pk": 4599, "fields": {"orig_filename": "Schestag_Franz_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 95", "author": "", "orig_id": 1406231}}, {"model": "metainfo.source", "pk": 4600, "fields": {"orig_filename": "Scheth-Bohuslaw_Josef-Leopold_1764_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 95f.", "author": "", "orig_id": 1406232}}, {"model": "metainfo.source", "pk": 4601, "fields": {"orig_filename": "Scheuchenstuel_Karl_1792_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 98", "author": "", "orig_id": 1406045}}, {"model": "metainfo.source", "pk": 4602, "fields": {"orig_filename": "Scheuchenstuel_Viktor_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99", "author": "", "orig_id": 1406046}}, {"model": "metainfo.source", "pk": 4603, "fields": {"orig_filename": "Scheuer_Oskar-Franz_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99", "author": "", "orig_id": 1406047}}, {"model": "metainfo.source", "pk": 4604, "fields": {"orig_filename": "Scheuthauer_Gustav_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99f.", "author": "", "orig_id": 1406048}}, {"model": "metainfo.source", "pk": 4605, "fields": {"orig_filename": "Scheu_Andreas_1844_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 96", "author": "", "orig_id": 1406233}}, {"model": "metainfo.source", "pk": 4606, "fields": {"orig_filename": "Scheu_Gustav_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 96f.", "author": "", "orig_id": 1406234}}, {"model": "metainfo.source", "pk": 4607, "fields": {"orig_filename": "Scheu_Heinrich_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97", "author": "", "orig_id": 1406235}}, {"model": "metainfo.source", "pk": 4608, "fields": {"orig_filename": "Schey-Koromla_Friedrich_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 100f.", "author": "", "orig_id": 1406049}}, {"model": "metainfo.source", "pk": 4609, "fields": {"orig_filename": "Schey-Koromla_Josef_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 101", "author": "", "orig_id": 1406050}}, {"model": "metainfo.source", "pk": 4610, "fields": {"orig_filename": "Schey-Koromla_Philipp_1798_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 101f.", "author": "", "orig_id": 1406051}}, {"model": "metainfo.source", "pk": 4611, "fields": {"orig_filename": "Scheyerer_Franz_1762_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102", "author": "", "orig_id": 1406053}}, {"model": "metainfo.source", "pk": 4612, "fields": {"orig_filename": "Scheyer_Moriz_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102", "author": "", "orig_id": 1406052}}, {"model": "metainfo.source", "pk": 4613, "fields": {"orig_filename": "Scheyrer_Ludwig_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102f.", "author": "", "orig_id": 1406054}}, {"model": "metainfo.source", "pk": 4614, "fields": {"orig_filename": "Schgraffer_Jakob-Johann_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103", "author": "", "orig_id": 1406055}}, {"model": "metainfo.source", "pk": 4615, "fields": {"orig_filename": "Schiavi_Lorenzo_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103", "author": "", "orig_id": 1406056}}, {"model": "metainfo.source", "pk": 4616, "fields": {"orig_filename": "Schiavone_Natale_1777_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103f.", "author": "", "orig_id": 1406057}}, {"model": "metainfo.source", "pk": 4617, "fields": {"orig_filename": "Schiavoni_Felice_1803_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 104", "author": "", "orig_id": 1406058}}, {"model": "metainfo.source", "pk": 4618, "fields": {"orig_filename": "Schiavuzzi_Bernardo_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 104f.", "author": "", "orig_id": 1406059}}, {"model": "metainfo.source", "pk": 4619, "fields": {"orig_filename": "Scanagatta_Francesca_1781_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 12", "author": "", "orig_id": 1405999}}, {"model": "metainfo.source", "pk": 4620, "fields": {"orig_filename": "Scanzoni-Lichtenfels_Friedrich-Wilhelm_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 12f.", "author": "", "orig_id": 1406000}}, {"model": "metainfo.source", "pk": 4621, "fields": {"orig_filename": "Scaramella_Giuseppe_1761_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 13", "author": "", "orig_id": 1406001}}, {"model": "metainfo.source", "pk": 4622, "fields": {"orig_filename": "Scaria_Emil_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 13f.", "author": "", "orig_id": 1406002}}, {"model": "metainfo.source", "pk": 4623, "fields": {"orig_filename": "Scarpa_Antonio_1752_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 14", "author": "", "orig_id": 1405903}}, {"model": "metainfo.source", "pk": 4624, "fields": {"orig_filename": "Scarpa_Iginio_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 14f.", "author": "", "orig_id": 1405904}}, {"model": "metainfo.source", "pk": 4625, "fields": {"orig_filename": "Scek_Virgilij_1889_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15", "author": "", "orig_id": 1405905}}, {"model": "metainfo.source", "pk": 4626, "fields": {"orig_filename": "Schabl_Georg_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15", "author": "", "orig_id": 1405906}}, {"model": "metainfo.source", "pk": 4627, "fields": {"orig_filename": "Schabus_Jakob_1825_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15f.", "author": "", "orig_id": 1405907}}, {"model": "metainfo.source", "pk": 4628, "fields": {"orig_filename": "Schacherl_Gustav_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16", "author": "", "orig_id": 1405908}}, {"model": "metainfo.source", "pk": 4629, "fields": {"orig_filename": "Schacherl_Gustav_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16", "author": "", "orig_id": 1405909}}, {"model": "metainfo.source", "pk": 4630, "fields": {"orig_filename": "Schacherl_Michael_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16f.", "author": "", "orig_id": 1405911}}, {"model": "metainfo.source", "pk": 4631, "fields": {"orig_filename": "Schachinger_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 17", "author": "", "orig_id": 1405910}}, {"model": "metainfo.source", "pk": 4632, "fields": {"orig_filename": "Schachinger_Norbert_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 17", "author": "", "orig_id": 1405912}}, {"model": "metainfo.source", "pk": 4633, "fields": {"orig_filename": "Schachinger_Rudolf_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18", "author": "", "orig_id": 1405913}}, {"model": "metainfo.source", "pk": 4634, "fields": {"orig_filename": "Schachleiter_Alban_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18", "author": "", "orig_id": 1405914}}, {"model": "metainfo.source", "pk": 4635, "fields": {"orig_filename": "Schachner_Friedrich_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18f.", "author": "", "orig_id": 1405915}}, {"model": "metainfo.source", "pk": 4636, "fields": {"orig_filename": "Schachner_Josef-Rudolf_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 19", "author": "", "orig_id": 1405916}}, {"model": "metainfo.source", "pk": 4637, "fields": {"orig_filename": "Schack_Adolf-Wilhelm_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 19f.", "author": "", "orig_id": 1405917}}, {"model": "metainfo.source", "pk": 4638, "fields": {"orig_filename": "Schack_Benedikt-Emanuel_1758_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 20", "author": "", "orig_id": 1405918}}, {"model": "metainfo.source", "pk": 4639, "fields": {"orig_filename": "Schack_Friedrich-Otto_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405919}}, {"model": "metainfo.source", "pk": 4640, "fields": {"orig_filename": "Schadek_Moriz_1840_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405920}}, {"model": "metainfo.source", "pk": 4641, "fields": {"orig_filename": "Schaden_Karl_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405921}}, {"model": "metainfo.source", "pk": 4642, "fields": {"orig_filename": "Schader_Alois_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21f.", "author": "", "orig_id": 1405922}}, {"model": "metainfo.source", "pk": 4643, "fields": {"orig_filename": "Schadetzky_Karl_1792_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22", "author": "", "orig_id": 1405923}}, {"model": "metainfo.source", "pk": 4644, "fields": {"orig_filename": "Schaedler_Johann-Georg_1777_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22", "author": "", "orig_id": 1405924}}, {"model": "metainfo.source", "pk": 4645, "fields": {"orig_filename": "Schaefer_Anton_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22f.", "author": "", "orig_id": 1405925}}, {"model": "metainfo.source", "pk": 4646, "fields": {"orig_filename": "Schaefer_Hugo_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 23", "author": "", "orig_id": 1405926}}, {"model": "metainfo.source", "pk": 4647, "fields": {"orig_filename": "Schaeffer-Wienwald_August_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 24", "author": "", "orig_id": 1405928}}, {"model": "metainfo.source", "pk": 4648, "fields": {"orig_filename": "Schaeffer_Georg-Sylvester_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 23f.", "author": "", "orig_id": 1405927}}, {"model": "metainfo.source", "pk": 4649, "fields": {"orig_filename": "Schaeffler_Theodor-Heinrich-Otto_1838_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 25f.", "author": "", "orig_id": 1405930}}, {"model": "metainfo.source", "pk": 4650, "fields": {"orig_filename": "Schaeffle_Albert-Eberhard-Friedrich_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 24f.", "author": "", "orig_id": 1405929}}, {"model": "metainfo.source", "pk": 4651, "fields": {"orig_filename": "Schaelzky_Robert_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 26", "author": "", "orig_id": 1405931}}, {"model": "metainfo.source", "pk": 4652, "fields": {"orig_filename": "Schaffenrath_Alois_1794_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 26f.", "author": "", "orig_id": 1405932}}, {"model": "metainfo.source", "pk": 4653, "fields": {"orig_filename": "Schaffer_Alexander_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 27", "author": "", "orig_id": 1405933}}, {"model": "metainfo.source", "pk": 4654, "fields": {"orig_filename": "Schaffer_Josef_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 27f.", "author": "", "orig_id": 1405934}}, {"model": "metainfo.source", "pk": 4655, "fields": {"orig_filename": "Schaffer_Karoly_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28", "author": "", "orig_id": 1405935}}, {"model": "metainfo.source", "pk": 4656, "fields": {"orig_filename": "Schaffgotsch_Johann-Anton-Ernst_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28", "author": "", "orig_id": 1405936}}, {"model": "metainfo.source", "pk": 4657, "fields": {"orig_filename": "Schaffgotsch_Levin-Gotthard_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28f.", "author": "", "orig_id": 1405937}}, {"model": "metainfo.source", "pk": 4658, "fields": {"orig_filename": "Schaffgotsch_Mechthild-Maria-Vom-Armen-Kinde-Jesus_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 29", "author": "", "orig_id": 1405938}}, {"model": "metainfo.source", "pk": 4659, "fields": {"orig_filename": "Schaffner_Max_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 29", "author": "", "orig_id": 1405939}}, {"model": "metainfo.source", "pk": 4660, "fields": {"orig_filename": "Schafzahl_Franz-X_1767_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30", "author": "", "orig_id": 1405940}}, {"model": "metainfo.source", "pk": 4661, "fields": {"orig_filename": "Schager-Eckartsau_Albin_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30", "author": "", "orig_id": 1405941}}, {"model": "metainfo.source", "pk": 4662, "fields": {"orig_filename": "Schalit_Leon_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30f.", "author": "", "orig_id": 1405942}}, {"model": "metainfo.source", "pk": 4663, "fields": {"orig_filename": "Schalk_Franz_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 31f.", "author": "", "orig_id": 1405943}}, {"model": "metainfo.source", "pk": 4664, "fields": {"orig_filename": "Schalk_Josef_1857_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 32", "author": "", "orig_id": 1405944}}, {"model": "metainfo.source", "pk": 4665, "fields": {"orig_filename": "Schalk_Karl_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 32f.", "author": "", "orig_id": 1405945}}, {"model": "metainfo.source", "pk": 4666, "fields": {"orig_filename": "Schall-Falkenforst_Josef_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 33", "author": "", "orig_id": 1405946}}, {"model": "metainfo.source", "pk": 4667, "fields": {"orig_filename": "Schaller_Anton-Ferdinand_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 33f.", "author": "", "orig_id": 1405947}}, {"model": "metainfo.source", "pk": 4668, "fields": {"orig_filename": "Schaller_Georg_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34", "author": "", "orig_id": 1405948}}, {"model": "metainfo.source", "pk": 4669, "fields": {"orig_filename": "Schaller_Gustav_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34", "author": "", "orig_id": 1405949}}, {"model": "metainfo.source", "pk": 4670, "fields": {"orig_filename": "Schaller_Johann-Nep_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34f.", "author": "", "orig_id": 1405950}}, {"model": "metainfo.source", "pk": 4671, "fields": {"orig_filename": "Schaller_Ludwig_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35", "author": "", "orig_id": 1405951}}, {"model": "metainfo.source", "pk": 4672, "fields": {"orig_filename": "Schallgruber_Josef-Franz_1769_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35", "author": "", "orig_id": 1405952}}, {"model": "metainfo.source", "pk": 4673, "fields": {"orig_filename": "Schamann_Franz_1876_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35f.", "author": "", "orig_id": 1405953}}, {"model": "metainfo.source", "pk": 4674, "fields": {"orig_filename": "Schamberger_Frantisek-X_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36", "author": "", "orig_id": 1406092}}, {"model": "metainfo.source", "pk": 4675, "fields": {"orig_filename": "Schamberger_Julie_1846_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36", "author": "", "orig_id": 1406093}}, {"model": "metainfo.source", "pk": 4676, "fields": {"orig_filename": "Schamschula_Rudolf_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 37f.", "author": "", "orig_id": 1406096}}, {"model": "metainfo.source", "pk": 4677, "fields": {"orig_filename": "Schams_Franz-Josef_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36f.", "author": "", "orig_id": 1406094}}, {"model": "metainfo.source", "pk": 4678, "fields": {"orig_filename": "Schams_Franz-X_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 37", "author": "", "orig_id": 1406095}}, {"model": "metainfo.source", "pk": 4679, "fields": {"orig_filename": "Schanilec_Josef_1860_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 38", "author": "", "orig_id": 1406097}}, {"model": "metainfo.source", "pk": 4680, "fields": {"orig_filename": "Schantl_Josef-Hermann_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 38f.", "author": "", "orig_id": 1406098}}, {"model": "metainfo.source", "pk": 4681, "fields": {"orig_filename": "Schanzer_Rudolf_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39", "author": "", "orig_id": 1406099}}, {"model": "metainfo.source", "pk": 4682, "fields": {"orig_filename": "Schanzer_Stanislaus_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39", "author": "", "orig_id": 1406100}}, {"model": "metainfo.source", "pk": 4683, "fields": {"orig_filename": "Schapira_Chaim-Elazar_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39f.", "author": "", "orig_id": 1406101}}, {"model": "metainfo.source", "pk": 4684, "fields": {"orig_filename": "Schapira_Meir_1887_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40", "author": "", "orig_id": 1406102}}, {"model": "metainfo.source", "pk": 4685, "fields": {"orig_filename": "Schapira_Zevi-Hirsch_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40", "author": "", "orig_id": 1406104}}, {"model": "metainfo.source", "pk": 4686, "fields": {"orig_filename": "Scharff_Anton_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41f.", "author": "", "orig_id": 1406107}}, {"model": "metainfo.source", "pk": 4687, "fields": {"orig_filename": "Scharf_Alexander_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40f.", "author": "", "orig_id": 1406103}}, {"model": "metainfo.source", "pk": 4688, "fields": {"orig_filename": "Scharf_Jakub_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41", "author": "", "orig_id": 1406105}}, {"model": "metainfo.source", "pk": 4689, "fields": {"orig_filename": "Scharf_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41", "author": "", "orig_id": 1406106}}, {"model": "metainfo.source", "pk": 4690, "fields": {"orig_filename": "Schariczer-Reny_Georg_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 42", "author": "", "orig_id": 1406108}}, {"model": "metainfo.source", "pk": 4691, "fields": {"orig_filename": "Scharizer_Rudolf_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 42f.", "author": "", "orig_id": 1406109}}, {"model": "metainfo.source", "pk": 4692, "fields": {"orig_filename": "Scharschmid-Adlertreu_Franz_1800_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43", "author": "", "orig_id": 1406110}}, {"model": "metainfo.source", "pk": 4693, "fields": {"orig_filename": "Scharschmid-Adlertreu_Maximilian_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43", "author": "", "orig_id": 1406111}}, {"model": "metainfo.source", "pk": 4694, "fields": {"orig_filename": "Schartner_Gilbert_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43f.", "author": "", "orig_id": 1406112}}, {"model": "metainfo.source", "pk": 4695, "fields": {"orig_filename": "Schaschl_Johann_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44", "author": "", "orig_id": 1406113}}, {"model": "metainfo.source", "pk": 4696, "fields": {"orig_filename": "Schaser_Johann-Georg_1792_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44", "author": "", "orig_id": 1406114}}, {"model": "metainfo.source", "pk": 4697, "fields": {"orig_filename": "Schattenfroh_Arthur_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44f.", "author": "", "orig_id": 1406115}}, {"model": "metainfo.source", "pk": 4698, "fields": {"orig_filename": "Schatzmayr_Wilhelm_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 46", "author": "", "orig_id": 1406118}}, {"model": "metainfo.source", "pk": 4699, "fields": {"orig_filename": "Schatz_Adelgott_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 45", "author": "", "orig_id": 1406116}}, {"model": "metainfo.source", "pk": 4700, "fields": {"orig_filename": "Schatz_Josef_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 45f.", "author": "", "orig_id": 1406117}}, {"model": "metainfo.source", "pk": 4701, "fields": {"orig_filename": "Schaub_Franz_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 46f.", "author": "", "orig_id": 1406119}}, {"model": "metainfo.source", "pk": 4702, "fields": {"orig_filename": "Schauenstein_Adolf_1827_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 47", "author": "", "orig_id": 1406120}}, {"model": "metainfo.source", "pk": 4703, "fields": {"orig_filename": "Schauenstein_Anton_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 47", "author": "", "orig_id": 1406121}}, {"model": "metainfo.source", "pk": 4704, "fields": {"orig_filename": "Schauenstein_Walther_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48", "author": "", "orig_id": 1406122}}, {"model": "metainfo.source", "pk": 4705, "fields": {"orig_filename": "Schauer_Antonin_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48", "author": "", "orig_id": 1406123}}, {"model": "metainfo.source", "pk": 4706, "fields": {"orig_filename": "Schauer_Hubert-Gordon_1862_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48f.", "author": "", "orig_id": 1406124}}, {"model": "metainfo.source", "pk": 4707, "fields": {"orig_filename": "Schauer_Hugo_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 49", "author": "", "orig_id": 1406125}}, {"model": "metainfo.source", "pk": 4708, "fields": {"orig_filename": "Schauer_Johann_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 49f.", "author": "", "orig_id": 1406126}}, {"model": "metainfo.source", "pk": 4709, "fields": {"orig_filename": "Schaukal_Richard_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 50f.", "author": "", "orig_id": 1406127}}, {"model": "metainfo.source", "pk": 4710, "fields": {"orig_filename": "Schaumann-Fuerstenburg_Franz_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 51f.", "author": "", "orig_id": 1406128}}, {"model": "metainfo.source", "pk": 4711, "fields": {"orig_filename": "Schaumburg_Karl_1770_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 52", "author": "", "orig_id": 1406129}}, {"model": "metainfo.source", "pk": 4712, "fields": {"orig_filename": "Schaup_Wilhelm_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 52f.", "author": "", "orig_id": 1406130}}, {"model": "metainfo.source", "pk": 4713, "fields": {"orig_filename": "Schaurhofer_August_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 53", "author": "", "orig_id": 1406131}}, {"model": "metainfo.source", "pk": 4714, "fields": {"orig_filename": "Schauta_Friedrich_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 53f.", "author": "", "orig_id": 1406132}}, {"model": "metainfo.source", "pk": 4715, "fields": {"orig_filename": "Schawerda_Karl_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 54", "author": "", "orig_id": 1406133}}, {"model": "metainfo.source", "pk": 4716, "fields": {"orig_filename": "Schebek_Edmund_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 54f.", "author": "", "orig_id": 1406134}}, {"model": "metainfo.source", "pk": 4717, "fields": {"orig_filename": "Schebek_Gabriel_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 55", "author": "", "orig_id": 1406135}}, {"model": "metainfo.source", "pk": 4718, "fields": {"orig_filename": "Schebest_Agnese_1813_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 55f.", "author": "", "orig_id": 1406136}}, {"model": "metainfo.source", "pk": 4719, "fields": {"orig_filename": "Scheck_Ferdinand_1827_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 56", "author": "", "orig_id": 1406137}}, {"model": "metainfo.source", "pk": 4720, "fields": {"orig_filename": "Scheda_Josef_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 56f.", "author": "", "orig_id": 1406138}}, {"model": "metainfo.source", "pk": 4721, "fields": {"orig_filename": "Schedius_Lajos-Janos_1768_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 57", "author": "", "orig_id": 1406139}}, {"model": "metainfo.source", "pk": 4722, "fields": {"orig_filename": "Sandrinelli_Luigi_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413", "author": "", "orig_id": 1407974}}, {"model": "metainfo.source", "pk": 4723, "fields": {"orig_filename": "Sandri_Giulio_1789_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413", "author": "", "orig_id": 1407973}}, {"model": "metainfo.source", "pk": 4724, "fields": {"orig_filename": "Sandrock_Adele_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413f.", "author": "", "orig_id": 1407975}}, {"model": "metainfo.source", "pk": 4725, "fields": {"orig_filename": "Sanguszko_Eustachy-Stanislaw_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 414f.", "author": "", "orig_id": 1407976}}, {"model": "metainfo.source", "pk": 4726, "fields": {"orig_filename": "Sanguszko_Wladyslaw-Hieronim_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 415", "author": "", "orig_id": 1407977}}, {"model": "metainfo.source", "pk": 4727, "fields": {"orig_filename": "Santel_Aleksander_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 415f.", "author": "", "orig_id": 1407979}}, {"model": "metainfo.source", "pk": 4728, "fields": {"orig_filename": "Santel_Avgusta_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416", "author": "", "orig_id": 1407980}}, {"model": "metainfo.source", "pk": 4729, "fields": {"orig_filename": "Santel_Henrietta_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416", "author": "", "orig_id": 1407981}}, {"model": "metainfo.source", "pk": 4730, "fields": {"orig_filename": "Santifaller_Maria-Christina_1904_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422698}}, {"model": "metainfo.source", "pk": 4731, "fields": {"orig_filename": "Santini_Giovanni_1787_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 417", "author": "", "orig_id": 1407983}}, {"model": "metainfo.source", "pk": 4732, "fields": {"orig_filename": "Santi_Sebastiano_1789_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416f.", "author": "", "orig_id": 1407982}}, {"model": "metainfo.source", "pk": 4733, "fields": {"orig_filename": "Santner_Johann_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 417f.", "author": "", "orig_id": 1407984}}, {"model": "metainfo.source", "pk": 4734, "fields": {"orig_filename": "Santner_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 418", "author": "", "orig_id": 1407985}}, {"model": "metainfo.source", "pk": 4735, "fields": {"orig_filename": "Santoni_Giuseppe_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 418f.", "author": "", "orig_id": 1407986}}, {"model": "metainfo.source", "pk": 4736, "fields": {"orig_filename": "Sanzin_Rudolf_1874_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 419", "author": "", "orig_id": 1407987}}, {"model": "metainfo.source", "pk": 4737, "fields": {"orig_filename": "Saphir_Moritz-Gottlieb_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 419f.", "author": "", "orig_id": 1407988}}, {"model": "metainfo.source", "pk": 4738, "fields": {"orig_filename": "Sapieha_Adam-Stanislaw_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 420f.", "author": "", "orig_id": 1407989}}, {"model": "metainfo.source", "pk": 4739, "fields": {"orig_filename": "Sapieha_Leon_1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 421", "author": "", "orig_id": 1407991}}, {"model": "metainfo.source", "pk": 4740, "fields": {"orig_filename": "Sapieha_Wladyslaw-Leon_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 421f.", "author": "", "orig_id": 1407990}}, {"model": "metainfo.source", "pk": 4741, "fields": {"orig_filename": "Sapik_Vojtech_1888_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 422", "author": "", "orig_id": 1407992}}, {"model": "metainfo.source", "pk": 4742, "fields": {"orig_filename": "Saporiti_Teresa_1763_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 422f.", "author": "", "orig_id": 1407993}}, {"model": "metainfo.source", "pk": 4743, "fields": {"orig_filename": "Sarbu_Ion_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407994}}, {"model": "metainfo.source", "pk": 4744, "fields": {"orig_filename": "Sardagna-Meanberg-Hohenstein_Carlo-Emanuele_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407995}}, {"model": "metainfo.source", "pk": 4745, "fields": {"orig_filename": "Sardagna-Meanberg-Hohenstein_Josef_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407996}}, {"model": "metainfo.source", "pk": 4746, "fields": {"orig_filename": "Sare_Jozef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423f.", "author": "", "orig_id": 1407997}}, {"model": "metainfo.source", "pk": 4747, "fields": {"orig_filename": "Sarg_Johann-Heinrich-Karl_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 424", "author": "", "orig_id": 1407998}}, {"model": "metainfo.source", "pk": 4748, "fields": {"orig_filename": "Sarkotic-Lovcen_Stefan_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 424f.", "author": "", "orig_id": 1407999}}, {"model": "metainfo.source", "pk": 4749, "fields": {"orig_filename": "Sarna_Wladyslaw_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 425f.", "author": "", "orig_id": 1408000}}, {"model": "metainfo.source", "pk": 4750, "fields": {"orig_filename": "Sarnecki_Zygmunt_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426", "author": "", "orig_id": 1408001}}, {"model": "metainfo.source", "pk": 4751, "fields": {"orig_filename": "Sarnicki_Klemens_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426", "author": "", "orig_id": 1408002}}, {"model": "metainfo.source", "pk": 4752, "fields": {"orig_filename": "Sarnthein_Ludwig_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426f.", "author": "", "orig_id": 1408003}}, {"model": "metainfo.source", "pk": 4753, "fields": {"orig_filename": "Sarosi-Poka_Lajos_1816_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427", "author": "", "orig_id": 1408004}}, {"model": "metainfo.source", "pk": 4754, "fields": {"orig_filename": "Sartorelli_Giambattista_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427", "author": "", "orig_id": 1408005}}, {"model": "metainfo.source", "pk": 4755, "fields": {"orig_filename": "Sartori-Montecroce_Tullius_1862_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 428f.", "author": "", "orig_id": 1408007}}, {"model": "metainfo.source", "pk": 4756, "fields": {"orig_filename": "Sartorio_Giovanni-Guglielmo_1789_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429", "author": "", "orig_id": 1408008}}, {"model": "metainfo.source", "pk": 4757, "fields": {"orig_filename": "Sartori_Franz_1782_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427f.", "author": "", "orig_id": 1408006}}, {"model": "metainfo.source", "pk": 4758, "fields": {"orig_filename": "Sartory_Dominikus-A-Jesu-Maria_1809_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429", "author": "", "orig_id": 1408009}}, {"model": "metainfo.source", "pk": 4759, "fields": {"orig_filename": "Sartory_Johann_1759_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429f.", "author": "", "orig_id": 1408010}}, {"model": "metainfo.source", "pk": 4760, "fields": {"orig_filename": "Sartory_Josefa_1771_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 430f.", "author": "", "orig_id": 1408011}}, {"model": "metainfo.source", "pk": 4761, "fields": {"orig_filename": "Sarvary_Pal_1765_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431", "author": "", "orig_id": 1408012}}, {"model": "metainfo.source", "pk": 4762, "fields": {"orig_filename": "Saselj_Ivan-Feliks_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431", "author": "", "orig_id": 1408013}}, {"model": "metainfo.source", "pk": 4763, "fields": {"orig_filename": "Sasinek_Frantisek_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431f.", "author": "", "orig_id": 1408014}}, {"model": "metainfo.source", "pk": 4764, "fields": {"orig_filename": "Saska_Leo-Frantisek_1832_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 432", "author": "", "orig_id": 1408015}}, {"model": "metainfo.source", "pk": 4765, "fields": {"orig_filename": "Saskevyc_Markijan_1811_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 432f.", "author": "", "orig_id": 1408016}}, {"model": "metainfo.source", "pk": 4766, "fields": {"orig_filename": "Sasko_Martin_1807_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 433", "author": "", "orig_id": 1408018}}, {"model": "metainfo.source", "pk": 4767, "fields": {"orig_filename": "Sasku_Karoly_1806_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 433f.", "author": "", "orig_id": 1408017}}, {"model": "metainfo.source", "pk": 4768, "fields": {"orig_filename": "Sassmann_Hanns_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434", "author": "", "orig_id": 1408019}}, {"model": "metainfo.source", "pk": 4769, "fields": {"orig_filename": "Satke_Otto_1898_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434", "author": "", "orig_id": 1408020}}, {"model": "metainfo.source", "pk": 4770, "fields": {"orig_filename": "Satter_Gustav_1832_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434f.", "author": "", "orig_id": 1408021}}, {"model": "metainfo.source", "pk": 4771, "fields": {"orig_filename": "Sattler_Hubert_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 435", "author": "", "orig_id": 1408022}}, {"model": "metainfo.source", "pk": 4772, "fields": {"orig_filename": "Sattler_Johann-Michael_1786_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 435f.", "author": "", "orig_id": 1408023}}, {"model": "metainfo.source", "pk": 4773, "fields": {"orig_filename": "Sattler_Josef-Ignaz_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 436", "author": "", "orig_id": 1408024}}, {"model": "metainfo.source", "pk": 4774, "fields": {"orig_filename": "Sattner_Hugolin_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 436f.", "author": "", "orig_id": 1408025}}, {"model": "metainfo.source", "pk": 4775, "fields": {"orig_filename": "Saturnik_Theodor_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 437", "author": "", "orig_id": 1408026}}, {"model": "metainfo.source", "pk": 4776, "fields": {"orig_filename": "Saudek_Emil_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 437", "author": "", "orig_id": 1408027}}, {"model": "metainfo.source", "pk": 4777, "fields": {"orig_filename": "Saudek_Robert_1880_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 438", "author": "", "orig_id": 1408028}}, {"model": "metainfo.source", "pk": 4778, "fields": {"orig_filename": "Sauer-Aichried_Emil-Georg_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 442f.", "author": "", "orig_id": 1408037}}, {"model": "metainfo.source", "pk": 4779, "fields": {"orig_filename": "Sauer-Csaky-Nordendorf_Eugen_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 443", "author": "", "orig_id": 1408038}}, {"model": "metainfo.source", "pk": 4780, "fields": {"orig_filename": "Sauer_August_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 438f.", "author": "", "orig_id": 1408029}}, {"model": "metainfo.source", "pk": 4781, "fields": {"orig_filename": "Sauer_Edmund_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 439f.", "author": "", "orig_id": 1408030}}, {"model": "metainfo.source", "pk": 4782, "fields": {"orig_filename": "Sauer_Georg_1802_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440", "author": "", "orig_id": 1408031}}, {"model": "metainfo.source", "pk": 4783, "fields": {"orig_filename": "Sauer_Ignac_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440", "author": "", "orig_id": 1408032}}, {"model": "metainfo.source", "pk": 4784, "fields": {"orig_filename": "Sauer_Ignaz_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440f.", "author": "", "orig_id": 1408033}}, {"model": "metainfo.source", "pk": 4785, "fields": {"orig_filename": "Sauer_Julius_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 441", "author": "", "orig_id": 1408034}}, {"model": "metainfo.source", "pk": 4786, "fields": {"orig_filename": "Sauer_Karl_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 441f.", "author": "", "orig_id": 1408035}}, {"model": "metainfo.source", "pk": 4787, "fields": {"orig_filename": "Sauer_Wilhelm_1892_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 442", "author": "", "orig_id": 1408036}}, {"model": "metainfo.source", "pk": 4788, "fields": {"orig_filename": "Saulich_Angelo_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 444", "author": "", "orig_id": 1408040}}, {"model": "metainfo.source", "pk": 4789, "fields": {"orig_filename": "Saul_Friedrich-Karl-Theodor_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 443f.", "author": "", "orig_id": 1408039}}, {"model": "metainfo.source", "pk": 4790, "fields": {"orig_filename": "Saurau_Franz-Josef_1760_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 444f.", "author": "", "orig_id": 1408041}}, {"model": "metainfo.source", "pk": 4791, "fields": {"orig_filename": "Sauter_Andreas_1802_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 445", "author": "", "orig_id": 1408042}}, {"model": "metainfo.source", "pk": 4792, "fields": {"orig_filename": "Sauter_Benedikt_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 446", "author": "", "orig_id": 1408044}}, {"model": "metainfo.source", "pk": 4793, "fields": {"orig_filename": "Sauter_Ferdinand_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 446f.", "author": "", "orig_id": 1408045}}, {"model": "metainfo.source", "pk": 4794, "fields": {"orig_filename": "Savart_Louis_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447", "author": "", "orig_id": 1408047}}, {"model": "metainfo.source", "pk": 4795, "fields": {"orig_filename": "Savic_Gavro_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447f.", "author": "", "orig_id": 1408049}}, {"model": "metainfo.source", "pk": 4796, "fields": {"orig_filename": "Savic_Tonka_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 448", "author": "", "orig_id": 1408050}}, {"model": "metainfo.source", "pk": 4797, "fields": {"orig_filename": "Savic_Zarko_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 448", "author": "", "orig_id": 1408051}}, {"model": "metainfo.source", "pk": 4798, "fields": {"orig_filename": "Savinsek_Slavko_1897_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1", "author": "", "orig_id": 1405974}}, {"model": "metainfo.source", "pk": 4799, "fields": {"orig_filename": "Savio_Franz-Leopold_1801_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1", "author": "", "orig_id": 1405975}}, {"model": "metainfo.source", "pk": 4800, "fields": {"orig_filename": "Savits_Jocza_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1f.", "author": "", "orig_id": 1405976}}, {"model": "metainfo.source", "pk": 4801, "fields": {"orig_filename": "Sawczynski_Henryk_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 2", "author": "", "orig_id": 1405977}}, {"model": "metainfo.source", "pk": 4802, "fields": {"orig_filename": "Sawczynski_Zygmunt_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 2f.", "author": "", "orig_id": 1405978}}, {"model": "metainfo.source", "pk": 4803, "fields": {"orig_filename": "Sawicki-Stella_Jan_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 4", "author": "", "orig_id": 1405982}}, {"model": "metainfo.source", "pk": 4804, "fields": {"orig_filename": "Sawicki_Edward_1833_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3", "author": "", "orig_id": 1405979}}, {"model": "metainfo.source", "pk": 4805, "fields": {"orig_filename": "Sawicki_Karl-Nikolaus_1792_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3", "author": "", "orig_id": 1405980}}, {"model": "metainfo.source", "pk": 4806, "fields": {"orig_filename": "Sawicki_Ludomir_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3f.", "author": "", "orig_id": 1405981}}, {"model": "metainfo.source", "pk": 4807, "fields": {"orig_filename": "Sawiczewski_Florian_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 4f.", "author": "", "orig_id": 1405983}}, {"model": "metainfo.source", "pk": 4808, "fields": {"orig_filename": "Sawiczewski_Julian-Jozef_1795_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5", "author": "", "orig_id": 1405984}}, {"model": "metainfo.source", "pk": 4809, "fields": {"orig_filename": "Saxeneder_Josef_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 6f.", "author": "", "orig_id": 1405987}}, {"model": "metainfo.source", "pk": 4810, "fields": {"orig_filename": "Saxl_Friedrich_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7", "author": "", "orig_id": 1405988}}, {"model": "metainfo.source", "pk": 4811, "fields": {"orig_filename": "Saxl_Ignaz_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7", "author": "", "orig_id": 1405989}}, {"model": "metainfo.source", "pk": 4812, "fields": {"orig_filename": "Saxl_Maximilian_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7f.", "author": "", "orig_id": 1405990}}, {"model": "metainfo.source", "pk": 4813, "fields": {"orig_filename": "Saxl_Paul_1880_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 8", "author": "", "orig_id": 1405991}}, {"model": "metainfo.source", "pk": 4814, "fields": {"orig_filename": "Sax_Emanuel-Hans_1857_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5", "author": "", "orig_id": 1406984}}, {"model": "metainfo.source", "pk": 4815, "fields": {"orig_filename": "Sax_Emil_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5f.", "author": "", "orig_id": 1405985}}, {"model": "metainfo.source", "pk": 4816, "fields": {"orig_filename": "Sax_Josef_1761_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 6", "author": "", "orig_id": 1405986}}, {"model": "metainfo.source", "pk": 4817, "fields": {"orig_filename": "Sbiera_Ion-Gheorghe_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 8f.", "author": "", "orig_id": 1405992}}, {"model": "metainfo.source", "pk": 4818, "fields": {"orig_filename": "Sbiera_Radu_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9", "author": "", "orig_id": 1405993}}, {"model": "metainfo.source", "pk": 4819, "fields": {"orig_filename": "Sbrizaj_Ivan_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9", "author": "", "orig_id": 1405994}}, {"model": "metainfo.source", "pk": 4820, "fields": {"orig_filename": "Scala_Arthur_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9f.", "author": "", "orig_id": 1405995}}, {"model": "metainfo.source", "pk": 4821, "fields": {"orig_filename": "Scala_Ferdinand_1866_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 10", "author": "", "orig_id": 1405996}}, {"model": "metainfo.source", "pk": 4822, "fields": {"orig_filename": "Scala_Rudolf_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 10f.", "author": "", "orig_id": 1405997}}, {"model": "metainfo.source", "pk": 4823, "fields": {"orig_filename": "Scalvini_Giovita_1791_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 11f.", "author": "", "orig_id": 1405998}}, {"model": "metainfo.source", "pk": 4824, "fields": {"orig_filename": "Sachse-Rothenberg_Friedrich_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370", "author": "", "orig_id": 1407818}}, {"model": "metainfo.source", "pk": 4825, "fields": {"orig_filename": "Sachsel_Siegmund_1873_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370", "author": "", "orig_id": 1407819}}, {"model": "metainfo.source", "pk": 4826, "fields": {"orig_filename": "Sachsen-Coburg-Gotha_Ferdinand-August-Georg_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370f.", "author": "", "orig_id": 1407820}}, {"model": "metainfo.source", "pk": 4827, "fields": {"orig_filename": "Sachsen-Coburg-Gotha_Ferdinand-Philipp_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 371", "author": "", "orig_id": 1407822}}, {"model": "metainfo.source", "pk": 4828, "fields": {"orig_filename": "Sachs_Moriz_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369", "author": "", "orig_id": 1407815}}, {"model": "metainfo.source", "pk": 4829, "fields": {"orig_filename": "Sacken_Adolf_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 371f.", "author": "", "orig_id": 1407824}}, {"model": "metainfo.source", "pk": 4830, "fields": {"orig_filename": "Sacken_Eduard_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 372f.", "author": "", "orig_id": 1407730}}, {"model": "metainfo.source", "pk": 4831, "fields": {"orig_filename": "Sadger_Isidor_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373", "author": "", "orig_id": 1407731}}, {"model": "metainfo.source", "pk": 4832, "fields": {"orig_filename": "Sadil_Meinrad_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373", "author": "", "orig_id": 1407732}}, {"model": "metainfo.source", "pk": 4833, "fields": {"orig_filename": "Sadleder_Karl_1883_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373f.", "author": "", "orig_id": 1407733}}, {"model": "metainfo.source", "pk": 4834, "fields": {"orig_filename": "Sadler_Josef_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374", "author": "", "orig_id": 1407734}}, {"model": "metainfo.source", "pk": 4835, "fields": {"orig_filename": "Sadlowski_Wladyslaw_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374", "author": "", "orig_id": 1407736}}, {"model": "metainfo.source", "pk": 4836, "fields": {"orig_filename": "Sadowski_Jan-Nep_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374f.", "author": "", "orig_id": 1407737}}, {"model": "metainfo.source", "pk": 4837, "fields": {"orig_filename": "Safarik_Pavel-Josef_1795_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 375f.", "author": "", "orig_id": 1407738}}, {"model": "metainfo.source", "pk": 4838, "fields": {"orig_filename": "Safarik_Vojtech_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 376", "author": "", "orig_id": 1407739}}, {"model": "metainfo.source", "pk": 4839, "fields": {"orig_filename": "Saff_Vojtech-Eduard_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 376f.", "author": "", "orig_id": 1407740}}, {"model": "metainfo.source", "pk": 4840, "fields": {"orig_filename": "Safranek_Frantisek_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377", "author": "", "orig_id": 1407741}}, {"model": "metainfo.source", "pk": 4841, "fields": {"orig_filename": "Safranek_Jan_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377", "author": "", "orig_id": 1407742}}, {"model": "metainfo.source", "pk": 4842, "fields": {"orig_filename": "Sagredo_Agostino_1798_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377f.", "author": "", "orig_id": 1407743}}, {"model": "metainfo.source", "pk": 4843, "fields": {"orig_filename": "Saguna_Andreiu_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 378", "author": "", "orig_id": 1407745}}, {"model": "metainfo.source", "pk": 4844, "fields": {"orig_filename": "Sahla_Richard_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379", "author": "", "orig_id": 1407746}}, {"model": "metainfo.source", "pk": 4845, "fields": {"orig_filename": "Sahulka_Johann_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379", "author": "", "orig_id": 1407747}}, {"model": "metainfo.source", "pk": 4846, "fields": {"orig_filename": "Sailer_Franz_1792_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379f.", "author": "", "orig_id": 1407748}}, {"model": "metainfo.source", "pk": 4847, "fields": {"orig_filename": "Sailer_Josef_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380", "author": "", "orig_id": 1407750}}, {"model": "metainfo.source", "pk": 4848, "fields": {"orig_filename": "Sailer_Leopold_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380", "author": "", "orig_id": 1407751}}, {"model": "metainfo.source", "pk": 4849, "fields": {"orig_filename": "Saint-Julien-Wallsee_Klemens_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407753}}, {"model": "metainfo.source", "pk": 4850, "fields": {"orig_filename": "Sain_Isidoro_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380f.", "author": "", "orig_id": 1407752}}, {"model": "metainfo.source", "pk": 4851, "fields": {"orig_filename": "Sajevic_Aleksandar_1843_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407754}}, {"model": "metainfo.source", "pk": 4852, "fields": {"orig_filename": "Sajevic_Ivana_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407755}}, {"model": "metainfo.source", "pk": 4853, "fields": {"orig_filename": "Sakser_Frank_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381f.", "author": "", "orig_id": 1407756}}, {"model": "metainfo.source", "pk": 4854, "fields": {"orig_filename": "Salaba_August_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382", "author": "", "orig_id": 1407757}}, {"model": "metainfo.source", "pk": 4855, "fields": {"orig_filename": "Salaba_Josef_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382", "author": "", "orig_id": 1407758}}, {"model": "metainfo.source", "pk": 4856, "fields": {"orig_filename": "Salamon_Ferenc_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382f.", "author": "", "orig_id": 1407759}}, {"model": "metainfo.source", "pk": 4857, "fields": {"orig_filename": "Salamon_Jozsef_1790_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 383", "author": "", "orig_id": 1407760}}, {"model": "metainfo.source", "pk": 4858, "fields": {"orig_filename": "Salata_Francesco_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 383f.", "author": "", "orig_id": 1407761}}, {"model": "metainfo.source", "pk": 4859, "fields": {"orig_filename": "Salcher_Josef_1861_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 384", "author": "", "orig_id": 1407763}}, {"model": "metainfo.source", "pk": 4860, "fields": {"orig_filename": "Salcher_Mathias_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 384", "author": "", "orig_id": 1407764}}, {"model": "metainfo.source", "pk": 4861, "fields": {"orig_filename": "Salcher_Robert_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385", "author": "", "orig_id": 1407765}}, {"model": "metainfo.source", "pk": 4862, "fields": {"orig_filename": "Salcher_Rudolf_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385", "author": "", "orig_id": 1407766}}, {"model": "metainfo.source", "pk": 4863, "fields": {"orig_filename": "Salda_Frantisek-X_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385f.", "author": "", "orig_id": 1407767}}, {"model": "metainfo.source", "pk": 4864, "fields": {"orig_filename": "Salghetti-Drioli_Franjo_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 386", "author": "", "orig_id": 1407768}}, {"model": "metainfo.source", "pk": 4865, "fields": {"orig_filename": "Salgo_Jakab_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 386f.", "author": "", "orig_id": 1407769}}, {"model": "metainfo.source", "pk": 4866, "fields": {"orig_filename": "Salieri_Antonio_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 387", "author": "", "orig_id": 1407770}}, {"model": "metainfo.source", "pk": 4867, "fields": {"orig_filename": "Salis-Samaden_Karl_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 387f.", "author": "", "orig_id": 1407771}}, {"model": "metainfo.source", "pk": 4868, "fields": {"orig_filename": "Salis-Seewis_Johann-Ulrich_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 388", "author": "", "orig_id": 1407772}}, {"model": "metainfo.source", "pk": 4869, "fields": {"orig_filename": "Salis-Soglio_Daniel_1826_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 388f.", "author": "", "orig_id": 1407773}}, {"model": "metainfo.source", "pk": 4870, "fields": {"orig_filename": "Salkind_Alexander_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389", "author": "", "orig_id": 1407774}}, {"model": "metainfo.source", "pk": 4871, "fields": {"orig_filename": "Sallinger_Richard_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389", "author": "", "orig_id": 1407775}}, {"model": "metainfo.source", "pk": 4872, "fields": {"orig_filename": "Sallmayer_Hermann-Karl_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389f.", "author": "", "orig_id": 1407776}}, {"model": "metainfo.source", "pk": 4873, "fields": {"orig_filename": "Salm-Reifferscheidt_Franz-X_1749_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 390f.", "author": "", "orig_id": 1407919}}, {"model": "metainfo.source", "pk": 4874, "fields": {"orig_filename": "Salm-Reifferscheidt_Hugo-Franz_1776_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 391", "author": "", "orig_id": 1407920}}, {"model": "metainfo.source", "pk": 4875, "fields": {"orig_filename": "Salm-Reifferscheidt_Hugo-Karl-Eduard_1803_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 391f.", "author": "", "orig_id": 1407921}}, {"model": "metainfo.source", "pk": 4876, "fields": {"orig_filename": "Salmen_Franz-Josef_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392", "author": "", "orig_id": 1407922}}, {"model": "metainfo.source", "pk": 4877, "fields": {"orig_filename": "Salmini_Vittorio_1832_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392", "author": "", "orig_id": 1407923}}, {"model": "metainfo.source", "pk": 4878, "fields": {"orig_filename": "Salomon-Friedberg_Emanuel_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 393", "author": "", "orig_id": 1407925}}, {"model": "metainfo.source", "pk": 4879, "fields": {"orig_filename": "Salomoni_Filippo_1801_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 393f.", "author": "", "orig_id": 1407926}}, {"model": "metainfo.source", "pk": 4880, "fields": {"orig_filename": "Salomon_Johann-Michael_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392f.", "author": "", "orig_id": 1407924}}, {"model": "metainfo.source", "pk": 4881, "fields": {"orig_filename": "Saloni_Aleksander_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394", "author": "", "orig_id": 1407927}}, {"model": "metainfo.source", "pk": 4882, "fields": {"orig_filename": "Saloun_Ladislav-Jan_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394", "author": "", "orig_id": 1407928}}, {"model": "metainfo.source", "pk": 4883, "fields": {"orig_filename": "Salten_Felix_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394f.", "author": "", "orig_id": 1407929}}, {"model": "metainfo.source", "pk": 4884, "fields": {"orig_filename": "Salus_Hugo_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 395f.", "author": "", "orig_id": 1407930}}, {"model": "metainfo.source", "pk": 4885, "fields": {"orig_filename": "Salvadori_Giovanni-Batt_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 396f.", "author": "", "orig_id": 1407932}}, {"model": "metainfo.source", "pk": 4886, "fields": {"orig_filename": "Salva_Karol_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 396", "author": "", "orig_id": 1407931}}, {"model": "metainfo.source", "pk": 4887, "fields": {"orig_filename": "Salviati_Antonio_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 398", "author": "", "orig_id": 1407935}}, {"model": "metainfo.source", "pk": 4888, "fields": {"orig_filename": "Salvi_Luigi-Matteo_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 397f.", "author": "", "orig_id": 1407934}}, {"model": "metainfo.source", "pk": 4889, "fields": {"orig_filename": "Salvotti-Eichenkraft-Bindeburg_Anton_1789_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 398f.", "author": "", "orig_id": 1407936}}, {"model": "metainfo.source", "pk": 4890, "fields": {"orig_filename": "Salzbacher_Josef_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 399", "author": "", "orig_id": 1407937}}, {"model": "metainfo.source", "pk": 4891, "fields": {"orig_filename": "Salzer_Anselm_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 399f.", "author": "", "orig_id": 1407938}}, {"model": "metainfo.source", "pk": 4892, "fields": {"orig_filename": "Salzer_Franz_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400", "author": "", "orig_id": 1407939}}, {"model": "metainfo.source", "pk": 4893, "fields": {"orig_filename": "Salzer_Friedrich-Franz_1827_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400", "author": "", "orig_id": 1407940}}, {"model": "metainfo.source", "pk": 4894, "fields": {"orig_filename": "Salzer_Johann_1840_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400f.", "author": "", "orig_id": 1407941}}, {"model": "metainfo.source", "pk": 4895, "fields": {"orig_filename": "Salzer_Josef_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 401", "author": "", "orig_id": 1407942}}, {"model": "metainfo.source", "pk": 4896, "fields": {"orig_filename": "Salzer_Matthaeus-Kaspar_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 401f.", "author": "", "orig_id": 1407943}}, {"model": "metainfo.source", "pk": 4897, "fields": {"orig_filename": "Salzer_Robert-Karl_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402", "author": "", "orig_id": 1407944}}, {"model": "metainfo.source", "pk": 4898, "fields": {"orig_filename": "Salzgeber_Peter_1789_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402", "author": "", "orig_id": 1407945}}, {"model": "metainfo.source", "pk": 4899, "fields": {"orig_filename": "Salzmann_Johann_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402f.", "author": "", "orig_id": 1407946}}, {"model": "metainfo.source", "pk": 4900, "fields": {"orig_filename": "Salzmann_Josef_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403", "author": "", "orig_id": 1407947}}, {"model": "metainfo.source", "pk": 4901, "fields": {"orig_filename": "Salzmann_Karl-Aubert_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403", "author": "", "orig_id": 1407948}}, {"model": "metainfo.source", "pk": 4902, "fields": {"orig_filename": "Salzmann_Karl-Gottfried_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403f.", "author": "", "orig_id": 1407949}}, {"model": "metainfo.source", "pk": 4903, "fields": {"orig_filename": "Samalik_Josef_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404f.", "author": "", "orig_id": 1407953}}, {"model": "metainfo.source", "pk": 4904, "fields": {"orig_filename": "Samal_Jan_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404", "author": "", "orig_id": 1407951}}, {"model": "metainfo.source", "pk": 4905, "fields": {"orig_filename": "Samal_Premysl_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404", "author": "", "orig_id": 1407952}}, {"model": "metainfo.source", "pk": 4906, "fields": {"orig_filename": "Samanek_Vaclav_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407954}}, {"model": "metainfo.source", "pk": 4907, "fields": {"orig_filename": "Samanek_Vinzenz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407955}}, {"model": "metainfo.source", "pk": 4908, "fields": {"orig_filename": "Samarjay_Karl_1821_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407956}}, {"model": "metainfo.source", "pk": 4909, "fields": {"orig_filename": "Samassa_Albert_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405f.", "author": "", "orig_id": 1407957}}, {"model": "metainfo.source", "pk": 4910, "fields": {"orig_filename": "Samassa_Anton_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 406", "author": "", "orig_id": 1407958}}, {"model": "metainfo.source", "pk": 4911, "fields": {"orig_filename": "Samassa_Jozsef_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 406f.", "author": "", "orig_id": 1407959}}, {"model": "metainfo.source", "pk": 4912, "fields": {"orig_filename": "Samassa_Max_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 407", "author": "", "orig_id": 1407960}}, {"model": "metainfo.source", "pk": 4913, "fields": {"orig_filename": "Samassa_Paul_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 407f.", "author": "", "orig_id": 1407961}}, {"model": "metainfo.source", "pk": 4914, "fields": {"orig_filename": "Samec_Janko_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408", "author": "", "orig_id": 1407962}}, {"model": "metainfo.source", "pk": 4915, "fields": {"orig_filename": "Samek_Frantisek_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408", "author": "", "orig_id": 1407963}}, {"model": "metainfo.source", "pk": 4916, "fields": {"orig_filename": "Samelson_Szymon_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408f.", "author": "", "orig_id": 1407964}}, {"model": "metainfo.source", "pk": 4917, "fields": {"orig_filename": "Sames_Josef_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 409", "author": "", "orig_id": 1409581}}, {"model": "metainfo.source", "pk": 4918, "fields": {"orig_filename": "Samhaber_Edward_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 409f.", "author": "", "orig_id": 1407965}}, {"model": "metainfo.source", "pk": 4919, "fields": {"orig_filename": "Sammern-Frankenegg_Ferdinand_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 410", "author": "", "orig_id": 1407966}}, {"model": "metainfo.source", "pk": 4920, "fields": {"orig_filename": "Samolewicz_Zygmunt_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 410f.", "author": "", "orig_id": 1407967}}, {"model": "metainfo.source", "pk": 4921, "fields": {"orig_filename": "Sanda_Frantisek_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411", "author": "", "orig_id": 1407968}}, {"model": "metainfo.source", "pk": 4922, "fields": {"orig_filename": "Sander_Fritz_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411", "author": "", "orig_id": 1407969}}, {"model": "metainfo.source", "pk": 4923, "fields": {"orig_filename": "Sander_Hermann_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411f.", "author": "", "orig_id": 1407970}}, {"model": "metainfo.source", "pk": 4924, "fields": {"orig_filename": "Sandner_Anton_1906_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 412", "author": "", "orig_id": 1407971}}, {"model": "metainfo.source", "pk": 4925, "fields": {"orig_filename": "Sandor-Szlavnicza_Moric_1805_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 412f.", "author": "", "orig_id": 1407972}}, {"model": "metainfo.source", "pk": 4926, "fields": {"orig_filename": "Rumpler_Edmund_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325f.", "author": "", "orig_id": 1407830}}, {"model": "metainfo.source", "pk": 4927, "fields": {"orig_filename": "Rumpler_Franz_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 326f.", "author": "", "orig_id": 1407831}}, {"model": "metainfo.source", "pk": 4928, "fields": {"orig_filename": "Rumy_Karl-Georg_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327f.", "author": "", "orig_id": 1407833}}, {"model": "metainfo.source", "pk": 4929, "fields": {"orig_filename": "Rungaldier_Ignaz_1799_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328", "author": "", "orig_id": 1407834}}, {"model": "metainfo.source", "pk": 4930, "fields": {"orig_filename": "Runk_Franz-Ferdinand_1764_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328", "author": "", "orig_id": 1407835}}, {"model": "metainfo.source", "pk": 4931, "fields": {"orig_filename": "Rupertsberger_Matthias_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328f.", "author": "", "orig_id": 1407836}}, {"model": "metainfo.source", "pk": 4932, "fields": {"orig_filename": "Rupnik_Carlo-Vigilio_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329", "author": "", "orig_id": 1407837}}, {"model": "metainfo.source", "pk": 4933, "fields": {"orig_filename": "Rupp-Nyilhegy_Jakab_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329f.", "author": "", "orig_id": 1407839}}, {"model": "metainfo.source", "pk": 4934, "fields": {"orig_filename": "Ruppeldt_Milos_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330", "author": "", "orig_id": 1407840}}, {"model": "metainfo.source", "pk": 4935, "fields": {"orig_filename": "Ruppert_Karl_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330", "author": "", "orig_id": 1407841}}, {"model": "metainfo.source", "pk": 4936, "fields": {"orig_filename": "Rupprecht_Johann-Bapt_1776_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330f.", "author": "", "orig_id": 1407842}}, {"model": "metainfo.source", "pk": 4937, "fields": {"orig_filename": "Rupp_Mathilde_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329", "author": "", "orig_id": 1407838}}, {"model": "metainfo.source", "pk": 4938, "fields": {"orig_filename": "Rusca_Marco_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331", "author": "", "orig_id": 1407844}}, {"model": "metainfo.source", "pk": 4939, "fields": {"orig_filename": "Ruschka_Franz_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331f.", "author": "", "orig_id": 1407845}}, {"model": "metainfo.source", "pk": 4940, "fields": {"orig_filename": "Rusjan_Edvard_1886_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 332", "author": "", "orig_id": 1407846}}, {"model": "metainfo.source", "pk": 4941, "fields": {"orig_filename": "Russegger_Josef_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 334f.", "author": "", "orig_id": 1407851}}, {"model": "metainfo.source", "pk": 4942, "fields": {"orig_filename": "Russ_Karl_1779_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 332f.", "author": "", "orig_id": 1407847}}, {"model": "metainfo.source", "pk": 4943, "fields": {"orig_filename": "Russ_Leander_1809_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 333", "author": "", "orig_id": 1407848}}, {"model": "metainfo.source", "pk": 4944, "fields": {"orig_filename": "Russ_Robert_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 333f.", "author": "", "orig_id": 1407849}}, {"model": "metainfo.source", "pk": 4945, "fields": {"orig_filename": "Russ_Viktor-Wilhelm_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 334", "author": "", "orig_id": 1407850}}, {"model": "metainfo.source", "pk": 4946, "fields": {"orig_filename": "Ruston_Joseph-John-I_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 336", "author": "", "orig_id": 1407854}}, {"model": "metainfo.source", "pk": 4947, "fields": {"orig_filename": "Rust_Johann-Heinrich_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 335f.", "author": "", "orig_id": 1407853}}, {"model": "metainfo.source", "pk": 4948, "fields": {"orig_filename": "Rust_Johann-Nep_1775_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 335", "author": "", "orig_id": 1407852}}, {"model": "metainfo.source", "pk": 4949, "fields": {"orig_filename": "Ruszkowska_Helena_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 336f.", "author": "", "orig_id": 1407855}}, {"model": "metainfo.source", "pk": 4950, "fields": {"orig_filename": "Rus_Joze_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331", "author": "", "orig_id": 1407843}}, {"model": "metainfo.source", "pk": 4951, "fields": {"orig_filename": "Rutar_Simon_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337", "author": "", "orig_id": 1407856}}, {"model": "metainfo.source", "pk": 4952, "fields": {"orig_filename": "Rutha_Heinrich_1897_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337", "author": "", "orig_id": 1407857}}, {"model": "metainfo.source", "pk": 4953, "fields": {"orig_filename": "Ruthner_Anton_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337f.", "author": "", "orig_id": 1407858}}, {"model": "metainfo.source", "pk": 4954, "fields": {"orig_filename": "Rutkowski_Maksymilian_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 338", "author": "", "orig_id": 1407859}}, {"model": "metainfo.source", "pk": 4955, "fields": {"orig_filename": "Rutowski_Tadeusz_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 338f.", "author": "", "orig_id": 1407860}}, {"model": "metainfo.source", "pk": 4956, "fields": {"orig_filename": "Rutra_Arthur-Ernst_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 339", "author": "", "orig_id": 1407861}}, {"model": "metainfo.source", "pk": 4957, "fields": {"orig_filename": "Ruttenstein_Konstanze_1835_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 339f.", "author": "", "orig_id": 1407862}}, {"model": "metainfo.source", "pk": 4958, "fields": {"orig_filename": "Ruttenstock_Jakob_1776_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 340", "author": "", "orig_id": 1407863}}, {"model": "metainfo.source", "pk": 4959, "fields": {"orig_filename": "Ruttin_Erich_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 340f.", "author": "", "orig_id": 1407864}}, {"model": "metainfo.source", "pk": 4960, "fields": {"orig_filename": "Rutzky-Brennau_Andreas_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341", "author": "", "orig_id": 1407866}}, {"model": "metainfo.source", "pk": 4961, "fields": {"orig_filename": "Rutz_Benno_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341", "author": "", "orig_id": 1407865}}, {"model": "metainfo.source", "pk": 4962, "fields": {"orig_filename": "Ruvarac_Dimitrije_1842_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341f.", "author": "", "orig_id": 1407867}}, {"model": "metainfo.source", "pk": 4963, "fields": {"orig_filename": "Ruvarac_Ilarion_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342", "author": "", "orig_id": 1407868}}, {"model": "metainfo.source", "pk": 4964, "fields": {"orig_filename": "Ruzicka-Strozzi_Marija_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 345", "author": "", "orig_id": 1407712}}, {"model": "metainfo.source", "pk": 4965, "fields": {"orig_filename": "Ruzicka_Alois_1849_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342", "author": "", "orig_id": 1407869}}, {"model": "metainfo.source", "pk": 4966, "fields": {"orig_filename": "Ruzicka_Apollo_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342f.", "author": "", "orig_id": 1407870}}, {"model": "metainfo.source", "pk": 4967, "fields": {"orig_filename": "Ruzicka_Jan_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407871}}, {"model": "metainfo.source", "pk": 4968, "fields": {"orig_filename": "Ruzicka_Josef_1808_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407872}}, {"model": "metainfo.source", "pk": 4969, "fields": {"orig_filename": "Ruzicka_Leon_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407708}}, {"model": "metainfo.source", "pk": 4970, "fields": {"orig_filename": "Ruzicka_Pavel-Miroslav_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343f.", "author": "", "orig_id": 1407709}}, {"model": "metainfo.source", "pk": 4971, "fields": {"orig_filename": "Ruzicka_Vladislav_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 344", "author": "", "orig_id": 1407710}}, {"model": "metainfo.source", "pk": 4972, "fields": {"orig_filename": "Ruzicka_Wenzel_1757_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 344f.", "author": "", "orig_id": 1407711}}, {"model": "metainfo.source", "pk": 4973, "fields": {"orig_filename": "Ruziewicz_Stanislaw_1889_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 345", "author": "", "orig_id": 1407713}}, {"model": "metainfo.source", "pk": 4974, "fields": {"orig_filename": "Ruzitska_Gyoergy_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346", "author": "", "orig_id": 1407714}}, {"model": "metainfo.source", "pk": 4975, "fields": {"orig_filename": "Rybak_Otakar_1886_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347", "author": "", "orig_id": 1407718}}, {"model": "metainfo.source", "pk": 4976, "fields": {"orig_filename": "Rybarski_Roman_1887_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348", "author": "", "orig_id": 1407720}}, {"model": "metainfo.source", "pk": 4977, "fields": {"orig_filename": "Rybar_Otokar_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347f.", "author": "", "orig_id": 1407719}}, {"model": "metainfo.source", "pk": 4978, "fields": {"orig_filename": "Ryba_Jakub-Jan_1765_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346", "author": "", "orig_id": 1407715}}, {"model": "metainfo.source", "pk": 4979, "fields": {"orig_filename": "Ryba_Josef-Jakub_1795_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346f.", "author": "", "orig_id": 1407716}}, {"model": "metainfo.source", "pk": 4980, "fields": {"orig_filename": "Ryba_Vilem_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347", "author": "", "orig_id": 1407717}}, {"model": "metainfo.source", "pk": 4981, "fields": {"orig_filename": "Rybczynski_Mieczyslaw_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348", "author": "", "orig_id": 1407721}}, {"model": "metainfo.source", "pk": 4982, "fields": {"orig_filename": "Rybicka_Antonin-Frantisek_1812_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348f.", "author": "", "orig_id": 1407722}}, {"model": "metainfo.source", "pk": 4983, "fields": {"orig_filename": "Rychnovsky_Ernst_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 349", "author": "", "orig_id": 1407723}}, {"model": "metainfo.source", "pk": 4984, "fields": {"orig_filename": "Rychter_Jozef_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350", "author": "", "orig_id": 1407724}}, {"model": "metainfo.source", "pk": 4985, "fields": {"orig_filename": "Rychtrmoc_Robert_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350", "author": "", "orig_id": 1407725}}, {"model": "metainfo.source", "pk": 4986, "fields": {"orig_filename": "Rydel_Lucjan-Antoni_1870_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 351", "author": "", "orig_id": 1407727}}, {"model": "metainfo.source", "pk": 4987, "fields": {"orig_filename": "Rydel_Lucjan_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350f.", "author": "", "orig_id": 1407726}}, {"model": "metainfo.source", "pk": 4988, "fields": {"orig_filename": "Rydygier_Ludwik_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 351f.", "author": "", "orig_id": 1407728}}, {"model": "metainfo.source", "pk": 4989, "fields": {"orig_filename": "Rydz_Edward_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352", "author": "", "orig_id": 1407729}}, {"model": "metainfo.source", "pk": 4990, "fields": {"orig_filename": "Rytir_Jaroslav_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352", "author": "", "orig_id": 1407777}}, {"model": "metainfo.source", "pk": 4991, "fields": {"orig_filename": "Ryzner_Cenek_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352f.", "author": "", "orig_id": 1407778}}, {"model": "metainfo.source", "pk": 4992, "fields": {"orig_filename": "Rzach_Alois_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 353", "author": "", "orig_id": 1407779}}, {"model": "metainfo.source", "pk": 4993, "fields": {"orig_filename": "Rzehaczek_Karl_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 353f.", "author": "", "orig_id": 1407780}}, {"model": "metainfo.source", "pk": 4994, "fields": {"orig_filename": "Rzehak_Anton_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 354", "author": "", "orig_id": 1407781}}, {"model": "metainfo.source", "pk": 4995, "fields": {"orig_filename": "Rzehak_Emil_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 354f.", "author": "", "orig_id": 1407782}}, {"model": "metainfo.source", "pk": 4996, "fields": {"orig_filename": "Rzepinski_Stanislaw_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355", "author": "", "orig_id": 1407783}}, {"model": "metainfo.source", "pk": 4997, "fields": {"orig_filename": "Rzesacz_Ernst_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355", "author": "", "orig_id": 1407784}}, {"model": "metainfo.source", "pk": 4998, "fields": {"orig_filename": "Rzesinski_Jan-Kanty_1803_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355f.", "author": "", "orig_id": 1407785}}, {"model": "metainfo.source", "pk": 4999, "fields": {"orig_filename": "Rzewuski_Leon_1808_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 356", "author": "", "orig_id": 1407786}}, {"model": "metainfo.source", "pk": 5000, "fields": {"orig_filename": "Rzewuski_Walery_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 356f.", "author": "", "orig_id": 1407787}}, {"model": "metainfo.source", "pk": 5001, "fields": {"orig_filename": "Rziha_Franz_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 357", "author": "", "orig_id": 1407788}}, {"model": "metainfo.source", "pk": 5002, "fields": {"orig_filename": "Saal_Ignaz_1761_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 357", "author": "", "orig_id": 1407789}}, {"model": "metainfo.source", "pk": 5003, "fields": {"orig_filename": "Saar_Ferdinand_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 358f.", "author": "", "orig_id": 1407790}}, {"model": "metainfo.source", "pk": 5004, "fields": {"orig_filename": "Saar_Guenther_1878_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 359", "author": "", "orig_id": 1407791}}, {"model": "metainfo.source", "pk": 5005, "fields": {"orig_filename": "Saar_Karl_1797_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 359f.", "author": "", "orig_id": 1407792}}, {"model": "metainfo.source", "pk": 5006, "fields": {"orig_filename": "Sabala-Krzeptowski_Jan_1809_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360", "author": "", "orig_id": 1407793}}, {"model": "metainfo.source", "pk": 5007, "fields": {"orig_filename": "Sabalich_Giuseppe_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360", "author": "", "orig_id": 1407794}}, {"model": "metainfo.source", "pk": 5008, "fields": {"orig_filename": "Sabathil_Rudolf_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360f.", "author": "", "orig_id": 1407795}}, {"model": "metainfo.source", "pk": 5009, "fields": {"orig_filename": "Sabic_Marin_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361", "author": "", "orig_id": 1407796}}, {"model": "metainfo.source", "pk": 5010, "fields": {"orig_filename": "Sabidussi_Hans_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361", "author": "", "orig_id": 1407797}}, {"model": "metainfo.source", "pk": 5011, "fields": {"orig_filename": "Sabina_Karel_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361f.", "author": "", "orig_id": 1407799}}, {"model": "metainfo.source", "pk": 5012, "fields": {"orig_filename": "Sablatnig_Josef_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 362", "author": "", "orig_id": 1407800}}, {"model": "metainfo.source", "pk": 5013, "fields": {"orig_filename": "Sablik_Franz_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 362f.", "author": "", "orig_id": 1407801}}, {"model": "metainfo.source", "pk": 5014, "fields": {"orig_filename": "Sabljar_Mijat_1790_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 363", "author": "", "orig_id": 1407802}}, {"model": "metainfo.source", "pk": 5015, "fields": {"orig_filename": "Sabowski_Wladyslaw_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 363f.", "author": "", "orig_id": 1407803}}, {"model": "metainfo.source", "pk": 5016, "fields": {"orig_filename": "Sabransky_Heinrich_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 364", "author": "", "orig_id": 1407804}}, {"model": "metainfo.source", "pk": 5017, "fields": {"orig_filename": "Saccardo_Pier-Andrea_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 364f.", "author": "", "orig_id": 1407805}}, {"model": "metainfo.source", "pk": 5018, "fields": {"orig_filename": "Sacchetti_Antonio_1790_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 365", "author": "", "orig_id": 1407806}}, {"model": "metainfo.source", "pk": 5019, "fields": {"orig_filename": "Sacchetti_Lorenzo_1759_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 365f.", "author": "", "orig_id": 1407807}}, {"model": "metainfo.source", "pk": 5020, "fields": {"orig_filename": "Sacher-Masoch_Leopold_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367ff.", "author": "", "orig_id": 1407813}}, {"model": "metainfo.source", "pk": 5021, "fields": {"orig_filename": "Sacher-Masoch_Wanda_1845_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1442024}}, {"model": "metainfo.source", "pk": 5022, "fields": {"orig_filename": "Sacher_Anna_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366", "author": "", "orig_id": 1407808}}, {"model": "metainfo.source", "pk": 5023, "fields": {"orig_filename": "Sacher_Eduard_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366", "author": "", "orig_id": 1407809}}, {"model": "metainfo.source", "pk": 5024, "fields": {"orig_filename": "Sacher_Eduard_1843_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366f.", "author": "", "orig_id": 1407810}}, {"model": "metainfo.source", "pk": 5025, "fields": {"orig_filename": "Sacher_Emanuel_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367", "author": "", "orig_id": 1407811}}, {"model": "metainfo.source", "pk": 5026, "fields": {"orig_filename": "Sacher_Franz_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367", "author": "", "orig_id": 1407812}}, {"model": "metainfo.source", "pk": 5027, "fields": {"orig_filename": "Sachsalber_Adolf_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369", "author": "", "orig_id": 1407816}}, {"model": "metainfo.source", "pk": 5028, "fields": {"orig_filename": "Sachse-Hofmeister_Anna_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369f.", "author": "", "orig_id": 1407817}}, {"model": "metainfo.source", "pk": 5029, "fields": {"orig_filename": "Roth_Imrich-Emanuel_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277", "author": "", "orig_id": 1407637}}, {"model": "metainfo.source", "pk": 5030, "fields": {"orig_filename": "Roth_Johann-Bapt_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277", "author": "", "orig_id": 1407638}}, {"model": "metainfo.source", "pk": 5031, "fields": {"orig_filename": "Roth_Johann_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277f.", "author": "", "orig_id": 1407639}}, {"model": "metainfo.source", "pk": 5032, "fields": {"orig_filename": "Roth_Josef_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 278f.", "author": "", "orig_id": 1407640}}, {"model": "metainfo.source", "pk": 5033, "fields": {"orig_filename": "Roth_Julius_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 279", "author": "", "orig_id": 1407641}}, {"model": "metainfo.source", "pk": 5034, "fields": {"orig_filename": "Roth_Louis_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 279f.", "author": "", "orig_id": 1407642}}, {"model": "metainfo.source", "pk": 5035, "fields": {"orig_filename": "Roth_Martin_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280", "author": "", "orig_id": 1407643}}, {"model": "metainfo.source", "pk": 5036, "fields": {"orig_filename": "Roth_Richard-Karl_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280", "author": "", "orig_id": 1407644}}, {"model": "metainfo.source", "pk": 5037, "fields": {"orig_filename": "Roth_Samuel-Lajos_1851_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280f.", "author": "", "orig_id": 1407645}}, {"model": "metainfo.source", "pk": 5038, "fields": {"orig_filename": "Roth_Stefan-Ludwig_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 281f.", "author": "", "orig_id": 1407646}}, {"model": "metainfo.source", "pk": 5039, "fields": {"orig_filename": "Roth_Viktor_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 282", "author": "", "orig_id": 1407647}}, {"model": "metainfo.source", "pk": 5040, "fields": {"orig_filename": "Rotky_Karl_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291", "author": "", "orig_id": 1407669}}, {"model": "metainfo.source", "pk": 5041, "fields": {"orig_filename": "Rottauscher-Malata_Alfred_1888_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292f.", "author": "", "orig_id": 1407675}}, {"model": "metainfo.source", "pk": 5042, "fields": {"orig_filename": "Rottauscher-Malata_Karl_1812_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293", "author": "", "orig_id": 1407676}}, {"model": "metainfo.source", "pk": 5043, "fields": {"orig_filename": "Rottauscher-Malata_Maximilian_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293", "author": "", "orig_id": 1407677}}, {"model": "metainfo.source", "pk": 5044, "fields": {"orig_filename": "Rotta_Antonio_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292", "author": "", "orig_id": 1407674}}, {"model": "metainfo.source", "pk": 5045, "fields": {"orig_filename": "Rottenberger_Friedrich-Leo_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294", "author": "", "orig_id": 1407679}}, {"model": "metainfo.source", "pk": 5046, "fields": {"orig_filename": "Rottenberger_Josef_1760_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294", "author": "", "orig_id": 1407680}}, {"model": "metainfo.source", "pk": 5047, "fields": {"orig_filename": "Rottenberg_Ludwig_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293f.", "author": "", "orig_id": 1407678}}, {"model": "metainfo.source", "pk": 5048, "fields": {"orig_filename": "Rotter_Ferdinand-Amand_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294f.", "author": "", "orig_id": 1407681}}, {"model": "metainfo.source", "pk": 5049, "fields": {"orig_filename": "Rotter_Frantisek_1831_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295", "author": "", "orig_id": 1407682}}, {"model": "metainfo.source", "pk": 5050, "fields": {"orig_filename": "Rotter_Johann-Nep_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295", "author": "", "orig_id": 1407683}}, {"model": "metainfo.source", "pk": 5051, "fields": {"orig_filename": "Rotter_Kurt_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296", "author": "", "orig_id": 1407685}}, {"model": "metainfo.source", "pk": 5052, "fields": {"orig_filename": "Rotter_Ludwig_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296", "author": "", "orig_id": 1407686}}, {"model": "metainfo.source", "pk": 5053, "fields": {"orig_filename": "Rottini_Gabriele_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296f.", "author": "", "orig_id": 1407687}}, {"model": "metainfo.source", "pk": 5054, "fields": {"orig_filename": "Rottler_Berthold_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297", "author": "", "orig_id": 1407688}}, {"model": "metainfo.source", "pk": 5055, "fields": {"orig_filename": "Rottleuthner_Wilhelm-Johann_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297", "author": "", "orig_id": 1407689}}, {"model": "metainfo.source", "pk": 5056, "fields": {"orig_filename": "Rottonara_Franz-Angelo_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297f.", "author": "", "orig_id": 1407690}}, {"model": "metainfo.source", "pk": 5057, "fields": {"orig_filename": "Rott_Hans_1858_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291f.", "author": "", "orig_id": 1407670}}, {"model": "metainfo.source", "pk": 5058, "fields": {"orig_filename": "Rott_Vincenc-Josef_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292", "author": "", "orig_id": 1407673}}, {"model": "metainfo.source", "pk": 5059, "fields": {"orig_filename": "Rouschal_Ernst_1911_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 298", "author": "", "orig_id": 1407691}}, {"model": "metainfo.source", "pk": 5060, "fields": {"orig_filename": "Rovani_Giuseppe_1818_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 298f.", "author": "", "orig_id": 1407692}}, {"model": "metainfo.source", "pk": 5061, "fields": {"orig_filename": "Rovelli_Pietro_1793_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299", "author": "", "orig_id": 1407693}}, {"model": "metainfo.source", "pk": 5062, "fields": {"orig_filename": "Rovnianek_Peter-Vitazoslav_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299", "author": "", "orig_id": 1407694}}, {"model": "metainfo.source", "pk": 5063, "fields": {"orig_filename": "Rowid_Henryk_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299f.", "author": "", "orig_id": 1407695}}, {"model": "metainfo.source", "pk": 5064, "fields": {"orig_filename": "Rowland_Wilhelm_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 300", "author": "", "orig_id": 1407696}}, {"model": "metainfo.source", "pk": 5065, "fields": {"orig_filename": "Royt_Vaclav_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 301", "author": "", "orig_id": 1407698}}, {"model": "metainfo.source", "pk": 5066, "fields": {"orig_filename": "Roy_Vladimir_1885_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 300f.", "author": "", "orig_id": 1407697}}, {"model": "metainfo.source", "pk": 5067, "fields": {"orig_filename": "Rozek_Karel_1876_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 301f.", "author": "", "orig_id": 1407699}}, {"model": "metainfo.source", "pk": 5068, "fields": {"orig_filename": "Rozenits_Demetrius_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407700}}, {"model": "metainfo.source", "pk": 5069, "fields": {"orig_filename": "Rozenits_Lukas_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407701}}, {"model": "metainfo.source", "pk": 5070, "fields": {"orig_filename": "Rozic_Antun_1787_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407702}}, {"model": "metainfo.source", "pk": 5071, "fields": {"orig_filename": "Rozic_Valentin_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302f.", "author": "", "orig_id": 1407703}}, {"model": "metainfo.source", "pk": 5072, "fields": {"orig_filename": "Rozic_Vatroslav_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303", "author": "", "orig_id": 1407704}}, {"model": "metainfo.source", "pk": 5073, "fields": {"orig_filename": "Rozkosny_Jan_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303", "author": "", "orig_id": 1407705}}, {"model": "metainfo.source", "pk": 5074, "fields": {"orig_filename": "Rozman_Jozef_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303f.", "author": "", "orig_id": 1407706}}, {"model": "metainfo.source", "pk": 5075, "fields": {"orig_filename": "Roznay_Samuel_1787_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304", "author": "", "orig_id": 1407707}}, {"model": "metainfo.source", "pk": 5076, "fields": {"orig_filename": "Rozsavoelgyi_Mark_1789_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304f.", "author": "", "orig_id": 1407514}}, {"model": "metainfo.source", "pk": 5077, "fields": {"orig_filename": "Rozsay-Murakoez_Jozsef_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305", "author": "", "orig_id": 1407515}}, {"model": "metainfo.source", "pk": 5078, "fields": {"orig_filename": "Rozsa_Sandor_1813_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304", "author": "", "orig_id": 1407513}}, {"model": "metainfo.source", "pk": 5079, "fields": {"orig_filename": "Rozvoda_Jaroslav_1869_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305", "author": "", "orig_id": 1407517}}, {"model": "metainfo.source", "pk": 5080, "fields": {"orig_filename": "Rozwadowski_Jan-Michal_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305f.", "author": "", "orig_id": 1407518}}, {"model": "metainfo.source", "pk": 5081, "fields": {"orig_filename": "Ruard_Leopold_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 306", "author": "", "orig_id": 1407519}}, {"model": "metainfo.source", "pk": 5082, "fields": {"orig_filename": "Ruault-Frappart_Louis_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 306f.", "author": "", "orig_id": 1407520}}, {"model": "metainfo.source", "pk": 5083, "fields": {"orig_filename": "Rubczynski_Witold_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 307", "author": "", "orig_id": 1407521}}, {"model": "metainfo.source", "pk": 5084, "fields": {"orig_filename": "Rubelli-Sturmfest_Ludwig_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 307f.", "author": "", "orig_id": 1407522}}, {"model": "metainfo.source", "pk": 5085, "fields": {"orig_filename": "Ruben_Christian_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308", "author": "", "orig_id": 1407523}}, {"model": "metainfo.source", "pk": 5086, "fields": {"orig_filename": "Ruben_Franz-Leo_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308", "author": "", "orig_id": 1407524}}, {"model": "metainfo.source", "pk": 5087, "fields": {"orig_filename": "Ruber_Ignaz_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308f.", "author": "", "orig_id": 1407525}}, {"model": "metainfo.source", "pk": 5088, "fields": {"orig_filename": "Rubes_Frantisek-Jaromir_1814_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 309", "author": "", "orig_id": 1407526}}, {"model": "metainfo.source", "pk": 5089, "fields": {"orig_filename": "Rubinstein_Siegmund_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310f.", "author": "", "orig_id": 1407529}}, {"model": "metainfo.source", "pk": 5090, "fields": {"orig_filename": "Rubin_David_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 309f.", "author": "", "orig_id": 1407527}}, {"model": "metainfo.source", "pk": 5091, "fields": {"orig_filename": "Rubin_Salomon_1823_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310", "author": "", "orig_id": 1407528}}, {"model": "metainfo.source", "pk": 5092, "fields": {"orig_filename": "Rubritius_Hans_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310f.", "author": "", "orig_id": 1407530}}, {"model": "metainfo.source", "pk": 5093, "fields": {"orig_filename": "Ruchinger_Giuseppe_1761_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407531}}, {"model": "metainfo.source", "pk": 5094, "fields": {"orig_filename": "Ruchinger_Giuseppe_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407532}}, {"model": "metainfo.source", "pk": 5095, "fields": {"orig_filename": "Rudas_Geroe_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311f.", "author": "", "orig_id": 1407534}}, {"model": "metainfo.source", "pk": 5096, "fields": {"orig_filename": "Ruda_Prokop_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407533}}, {"model": "metainfo.source", "pk": 5097, "fields": {"orig_filename": "Rudczinsky_Karl_1751_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 312", "author": "", "orig_id": 1407535}}, {"model": "metainfo.source", "pk": 5098, "fields": {"orig_filename": "Rudel_Olga_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 312f.", "author": "", "orig_id": 1407536}}, {"model": "metainfo.source", "pk": 5099, "fields": {"orig_filename": "Rudigier_Franz-Josef_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 313f.", "author": "", "orig_id": 1407537}}, {"model": "metainfo.source", "pk": 5100, "fields": {"orig_filename": "Rudmas_Simon_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 314", "author": "", "orig_id": 1407538}}, {"model": "metainfo.source", "pk": 5101, "fields": {"orig_filename": "Rudnay-Rudna-Divekujfalu_Alexander_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 314f.", "author": "", "orig_id": 1407539}}, {"model": "metainfo.source", "pk": 5102, "fields": {"orig_filename": "Rudolf_Alfred_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 315", "author": "", "orig_id": 1407540}}, {"model": "metainfo.source", "pk": 5103, "fields": {"orig_filename": "Rudolf_Franz-Karl-Josef_1858_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 315f.", "author": "", "orig_id": 1407541}}, {"model": "metainfo.source", "pk": 5104, "fields": {"orig_filename": "Rudolf_Johann-Josef-Rainer_1788_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 316f.", "author": "", "orig_id": 1407542}}, {"model": "metainfo.source", "pk": 5105, "fields": {"orig_filename": "Rudolph_Karl_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407543}}, {"model": "metainfo.source", "pk": 5106, "fields": {"orig_filename": "Rudorfer_Franz_1897_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407544}}, {"model": "metainfo.source", "pk": 5107, "fields": {"orig_filename": "Rudovsky_Josef_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407545}}, {"model": "metainfo.source", "pk": 5108, "fields": {"orig_filename": "Rudroff_Andreas_1744_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317f.", "author": "", "orig_id": 1407546}}, {"model": "metainfo.source", "pk": 5109, "fields": {"orig_filename": "Rudtorffer_Franz-X_1760_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 318", "author": "", "orig_id": 1409582}}, {"model": "metainfo.source", "pk": 5110, "fields": {"orig_filename": "Rudzki_Maurycy-Pius_1862_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 318f.", "author": "", "orig_id": 1409583}}, {"model": "metainfo.source", "pk": 5111, "fields": {"orig_filename": "Rueckauf_Anton_1855_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319", "author": "", "orig_id": 1409584}}, {"model": "metainfo.source", "pk": 5112, "fields": {"orig_filename": "Rueckl_Engelbert_1888_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319", "author": "", "orig_id": 1409585}}, {"model": "metainfo.source", "pk": 5113, "fields": {"orig_filename": "Rueffer_Eduard_1835_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407547}}, {"model": "metainfo.source", "pk": 5114, "fields": {"orig_filename": "Rueff_Johann_1806_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319f.", "author": "", "orig_id": 1409586}}, {"model": "metainfo.source", "pk": 5115, "fields": {"orig_filename": "Ruesch_Josef-Ignaz_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407548}}, {"model": "metainfo.source", "pk": 5116, "fields": {"orig_filename": "Ruesch_Josef-Ignaz_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407549}}, {"model": "metainfo.source", "pk": 5117, "fields": {"orig_filename": "Ruesch_Karl-Alfred_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407550}}, {"model": "metainfo.source", "pk": 5118, "fields": {"orig_filename": "Ruetgers_Guido_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407551}}, {"model": "metainfo.source", "pk": 5119, "fields": {"orig_filename": "Rufeisen_Josef_1887_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321f.", "author": "", "orig_id": 1407553}}, {"model": "metainfo.source", "pk": 5120, "fields": {"orig_filename": "Ruffini_Giovanni-Batt_1821_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322", "author": "", "orig_id": 1407554}}, {"model": "metainfo.source", "pk": 5121, "fields": {"orig_filename": "Rufinatscha_Johann_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322", "author": "", "orig_id": 1407555}}, {"model": "metainfo.source", "pk": 5122, "fields": {"orig_filename": "Ruf_Sebastian_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407552}}, {"model": "metainfo.source", "pk": 5123, "fields": {"orig_filename": "Ruge_Klara-Ottilie_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322f.", "author": "", "orig_id": 1407556}}, {"model": "metainfo.source", "pk": 5124, "fields": {"orig_filename": "Ruggera_Kamillo_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 323", "author": "", "orig_id": 1407557}}, {"model": "metainfo.source", "pk": 5125, "fields": {"orig_filename": "Ruhmann_Adolf_1832_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 323f.", "author": "", "orig_id": 1407558}}, {"model": "metainfo.source", "pk": 5126, "fields": {"orig_filename": "Rukavina_Fridrik_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407559}}, {"model": "metainfo.source", "pk": 5127, "fields": {"orig_filename": "Rulikowski-Poradow_Ludwik_1784_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407560}}, {"model": "metainfo.source", "pk": 5128, "fields": {"orig_filename": "Rumann_Jan_1876_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407825}}, {"model": "metainfo.source", "pk": 5129, "fields": {"orig_filename": "Rumbold_Karl_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324f.", "author": "", "orig_id": 1407826}}, {"model": "metainfo.source", "pk": 5130, "fields": {"orig_filename": "Rummelhardt_Karl_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325", "author": "", "orig_id": 1407827}}, {"model": "metainfo.source", "pk": 5131, "fields": {"orig_filename": "Rumpelmayer_Viktor_1830_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325", "author": "", "orig_id": 1407829}}, {"model": "metainfo.source", "pk": 5132, "fields": {"orig_filename": "Rosegger_Sepp_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 246f.", "author": "", "orig_id": 1407413}}, {"model": "metainfo.source", "pk": 5133, "fields": {"orig_filename": "Rosenbaum_Alfred_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 248", "author": "", "orig_id": 1407562}}, {"model": "metainfo.source", "pk": 5134, "fields": {"orig_filename": "Rosenbaum_Josef-Karl_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 248f.", "author": "", "orig_id": 1407563}}, {"model": "metainfo.source", "pk": 5135, "fields": {"orig_filename": "Rosenbaum_Kory-Elisabeth_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249", "author": "", "orig_id": 1407564}}, {"model": "metainfo.source", "pk": 5136, "fields": {"orig_filename": "Rosenbaum_Moses-Chaim-Litcs_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249", "author": "", "orig_id": 1407565}}, {"model": "metainfo.source", "pk": 5137, "fields": {"orig_filename": "Rosenbaum_Richard_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249f.", "author": "", "orig_id": 1407566}}, {"model": "metainfo.source", "pk": 5138, "fields": {"orig_filename": "Rosenbaum_Sigmund_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 250", "author": "", "orig_id": 1407567}}, {"model": "metainfo.source", "pk": 5139, "fields": {"orig_filename": "Rosenbaum_Therese_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 250f.", "author": "", "orig_id": 1407568}}, {"model": "metainfo.source", "pk": 5140, "fields": {"orig_filename": "Rosenberg_Karl_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251", "author": "", "orig_id": 1407569}}, {"model": "metainfo.source", "pk": 5141, "fields": {"orig_filename": "Rosenberg_Moritz_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251", "author": "", "orig_id": 1407570}}, {"model": "metainfo.source", "pk": 5142, "fields": {"orig_filename": "Rosenberg_Samuel_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251f.", "author": "", "orig_id": 1407571}}, {"model": "metainfo.source", "pk": 5143, "fields": {"orig_filename": "Rosenblatt_Alfred_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252", "author": "", "orig_id": 1407572}}, {"model": "metainfo.source", "pk": 5144, "fields": {"orig_filename": "Rosenegger_Josef_1767_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252", "author": "", "orig_id": 1407573}}, {"model": "metainfo.source", "pk": 5145, "fields": {"orig_filename": "Rosenfeld_Maurice_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252f.", "author": "", "orig_id": 1407575}}, {"model": "metainfo.source", "pk": 5146, "fields": {"orig_filename": "Rosenfeld_Viktor_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407576}}, {"model": "metainfo.source", "pk": 5147, "fields": {"orig_filename": "Rosenkranz_Wenzel-Josef_1797_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407577}}, {"model": "metainfo.source", "pk": 5148, "fields": {"orig_filename": "Rosenthal_Felix_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407578}}, {"model": "metainfo.source", "pk": 5149, "fields": {"orig_filename": "Rosenthal_Friedrich_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253f.", "author": "", "orig_id": 1407579}}, {"model": "metainfo.source", "pk": 5150, "fields": {"orig_filename": "Rosenthal_Moriz_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 254", "author": "", "orig_id": 1407580}}, {"model": "metainfo.source", "pk": 5151, "fields": {"orig_filename": "Rosenthal_Moriz_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 254f.", "author": "", "orig_id": 1407581}}, {"model": "metainfo.source", "pk": 5152, "fields": {"orig_filename": "Rosenthal_Philipp_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 255", "author": "", "orig_id": 1407582}}, {"model": "metainfo.source", "pk": 5153, "fields": {"orig_filename": "Rosenzweig-Schwannau_Vinzenz_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 255f.", "author": "", "orig_id": 1407584}}, {"model": "metainfo.source", "pk": 5154, "fields": {"orig_filename": "Rosen_Julius_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 247", "author": "", "orig_id": 1407414}}, {"model": "metainfo.source", "pk": 5155, "fields": {"orig_filename": "Roser_Franz-De-P_1779_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256", "author": "", "orig_id": 1407585}}, {"model": "metainfo.source", "pk": 5156, "fields": {"orig_filename": "Roser_Franz-Moritz_1818_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256", "author": "", "orig_id": 1407586}}, {"model": "metainfo.source", "pk": 5157, "fields": {"orig_filename": "Roser_Magdalena_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256f.", "author": "", "orig_id": 1407587}}, {"model": "metainfo.source", "pk": 5158, "fields": {"orig_filename": "Rose_Arnold-Josef_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 243f.", "author": "", "orig_id": 1407407}}, {"model": "metainfo.source", "pk": 5159, "fields": {"orig_filename": "Rose_Eduard_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244", "author": "", "orig_id": 1407408}}, {"model": "metainfo.source", "pk": 5160, "fields": {"orig_filename": "Rose_Giovanni-Luigi_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244", "author": "", "orig_id": 1407409}}, {"model": "metainfo.source", "pk": 5161, "fields": {"orig_filename": "Rose_Maksymilian_1883_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244f.", "author": "", "orig_id": 1407410}}, {"model": "metainfo.source", "pk": 5162, "fields": {"orig_filename": "Rosiwal_August_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 257", "author": "", "orig_id": 1407588}}, {"model": "metainfo.source", "pk": 5163, "fields": {"orig_filename": "Roskiewicz_Johann_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 257", "author": "", "orig_id": 1407589}}, {"model": "metainfo.source", "pk": 5164, "fields": {"orig_filename": "Roskoff_Georg-Gustav_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258", "author": "", "orig_id": 1407590}}, {"model": "metainfo.source", "pk": 5165, "fields": {"orig_filename": "Roskot_Jan-Krtitel_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258", "author": "", "orig_id": 1407591}}, {"model": "metainfo.source", "pk": 5166, "fields": {"orig_filename": "Roskovanyi-Roskovany_Agoston_1807_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258f.", "author": "", "orig_id": 1407592}}, {"model": "metainfo.source", "pk": 5167, "fields": {"orig_filename": "Rosner_Aleksander_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260", "author": "", "orig_id": 1407595}}, {"model": "metainfo.source", "pk": 5168, "fields": {"orig_filename": "Rosner_Antoni_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260", "author": "", "orig_id": 1407596}}, {"model": "metainfo.source", "pk": 5169, "fields": {"orig_filename": "Rosner_Ignacy-Juliusz_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260f.", "author": "", "orig_id": 1407597}}, {"model": "metainfo.source", "pk": 5170, "fields": {"orig_filename": "Rosner_Jehuda-Segal_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261", "author": "", "orig_id": 1407598}}, {"model": "metainfo.source", "pk": 5171, "fields": {"orig_filename": "Rosner_Leopold_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261", "author": "", "orig_id": 1407599}}, {"model": "metainfo.source", "pk": 5172, "fields": {"orig_filename": "Rosnik_Franz_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261f.", "author": "", "orig_id": 1407600}}, {"model": "metainfo.source", "pk": 5173, "fields": {"orig_filename": "Rossbacher_Rudolf_1806_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262", "author": "", "orig_id": 1409578}}, {"model": "metainfo.source", "pk": 5174, "fields": {"orig_filename": "Rossbach_Richard_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262", "author": "", "orig_id": 1407601}}, {"model": "metainfo.source", "pk": 5175, "fields": {"orig_filename": "Rossen_Ferdinand_1785_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262f.", "author": "", "orig_id": 1407602}}, {"model": "metainfo.source", "pk": 5176, "fields": {"orig_filename": "Rossetti-Scander_Domenico_1774_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263f.", "author": "", "orig_id": 1407605}}, {"model": "metainfo.source", "pk": 5177, "fields": {"orig_filename": "Rossetti_Antonio_1819_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263", "author": "", "orig_id": 1407603}}, {"model": "metainfo.source", "pk": 5178, "fields": {"orig_filename": "Rossetti_Francesco_1833_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263", "author": "", "orig_id": 1407604}}, {"model": "metainfo.source", "pk": 5179, "fields": {"orig_filename": "Rossi_Cesare_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 264f.", "author": "", "orig_id": 1407606}}, {"model": "metainfo.source", "pk": 5180, "fields": {"orig_filename": "Rossi_Gaetano_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265", "author": "", "orig_id": 1407607}}, {"model": "metainfo.source", "pk": 5181, "fields": {"orig_filename": "Rossi_Giacomo_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265", "author": "", "orig_id": 1407608}}, {"model": "metainfo.source", "pk": 5182, "fields": {"orig_filename": "Rossi_Giacomo_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265f.", "author": "", "orig_id": 1407609}}, {"model": "metainfo.source", "pk": 5183, "fields": {"orig_filename": "Rossi_Giovanni-Alvise_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266", "author": "", "orig_id": 1407610}}, {"model": "metainfo.source", "pk": 5184, "fields": {"orig_filename": "Rossi_Hugo_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266", "author": "", "orig_id": 1407611}}, {"model": "metainfo.source", "pk": 5185, "fields": {"orig_filename": "Rossi_Ljudevit_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266f.", "author": "", "orig_id": 1407612}}, {"model": "metainfo.source", "pk": 5186, "fields": {"orig_filename": "Rossi_Luigi-Maria_1819_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267", "author": "", "orig_id": 1407613}}, {"model": "metainfo.source", "pk": 5187, "fields": {"orig_filename": "Rossi_Marcello_1862_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267", "author": "", "orig_id": 1407614}}, {"model": "metainfo.source", "pk": 5188, "fields": {"orig_filename": "Rossi_Paul_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267f.", "author": "", "orig_id": 1407615}}, {"model": "metainfo.source", "pk": 5189, "fields": {"orig_filename": "Rostafinski_Jozef-Tomasz_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268f.", "author": "", "orig_id": 1407617}}, {"model": "metainfo.source", "pk": 5190, "fields": {"orig_filename": "Rosthorn_Alfons_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 269", "author": "", "orig_id": 1407618}}, {"model": "metainfo.source", "pk": 5191, "fields": {"orig_filename": "Rosthorn_Arthur_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 269f.", "author": "", "orig_id": 1407619}}, {"model": "metainfo.source", "pk": 5192, "fields": {"orig_filename": "Rosthorn_August_1789_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 270", "author": "", "orig_id": 1407620}}, {"model": "metainfo.source", "pk": 5193, "fields": {"orig_filename": "Rosthorn_Franz_1796_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 270f.", "author": "", "orig_id": 1407621}}, {"model": "metainfo.source", "pk": 5194, "fields": {"orig_filename": "Rosthorn_Josef_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 271", "author": "", "orig_id": 1407622}}, {"model": "metainfo.source", "pk": 5195, "fields": {"orig_filename": "Rosthorn_Matthaeus_1782_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 271f.", "author": "", "orig_id": 1407623}}, {"model": "metainfo.source", "pk": 5196, "fields": {"orig_filename": "Rosthorn_Oskar_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 272", "author": "", "orig_id": 1407624}}, {"model": "metainfo.source", "pk": 5197, "fields": {"orig_filename": "Rostworowski_Karol-Hubert_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 272f.", "author": "", "orig_id": 1407625}}, {"model": "metainfo.source", "pk": 5198, "fields": {"orig_filename": "Rostworowski_Michal_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273", "author": "", "orig_id": 1407626}}, {"model": "metainfo.source", "pk": 5199, "fields": {"orig_filename": "Rost_Leopold_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268", "author": "", "orig_id": 1407616}}, {"model": "metainfo.source", "pk": 5200, "fields": {"orig_filename": "Rost_Rudolf_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268", "author": "", "orig_id": 1409579}}, {"model": "metainfo.source", "pk": 5201, "fields": {"orig_filename": "Roszkowski_Julian_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273", "author": "", "orig_id": 1407627}}, {"model": "metainfo.source", "pk": 5202, "fields": {"orig_filename": "Ros_Bostjan_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407398}}, {"model": "metainfo.source", "pk": 5203, "fields": {"orig_filename": "Rota_Giuseppe_1823_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273f.", "author": "", "orig_id": 1407628}}, {"model": "metainfo.source", "pk": 5204, "fields": {"orig_filename": "Rota_Giuseppe_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274", "author": "", "orig_id": 1407629}}, {"model": "metainfo.source", "pk": 5205, "fields": {"orig_filename": "Rotenstreich_Ephraim-Fischel_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274", "author": "", "orig_id": 1407630}}, {"model": "metainfo.source", "pk": 5206, "fields": {"orig_filename": "Roth-Limanowa-Lapanow_Josef_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 282f.", "author": "", "orig_id": 1407648}}, {"model": "metainfo.source", "pk": 5207, "fields": {"orig_filename": "Roth-Pongyolok_Adolf_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283", "author": "", "orig_id": 1407649}}, {"model": "metainfo.source", "pk": 5208, "fields": {"orig_filename": "Roth-Telegd_Ludwig_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283", "author": "", "orig_id": 1407650}}, {"model": "metainfo.source", "pk": 5209, "fields": {"orig_filename": "Rothaug_Alexander_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283f.", "author": "", "orig_id": 1407651}}, {"model": "metainfo.source", "pk": 5210, "fields": {"orig_filename": "Rothauser_Therese_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284", "author": "", "orig_id": 1407652}}, {"model": "metainfo.source", "pk": 5211, "fields": {"orig_filename": "Rothberger_Karl-Julius_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284", "author": "", "orig_id": 1407653}}, {"model": "metainfo.source", "pk": 5212, "fields": {"orig_filename": "Rothblum_David_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284f.", "author": "", "orig_id": 1407654}}, {"model": "metainfo.source", "pk": 5213, "fields": {"orig_filename": "Rothenflue_Augustin_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 285f.", "author": "", "orig_id": 1407656}}, {"model": "metainfo.source", "pk": 5214, "fields": {"orig_filename": "Rothermann_Peter-Daniel_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286", "author": "", "orig_id": 1409580}}, {"model": "metainfo.source", "pk": 5215, "fields": {"orig_filename": "Rother_Karl_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286", "author": "", "orig_id": 1407657}}, {"model": "metainfo.source", "pk": 5216, "fields": {"orig_filename": "Rothe_Hermann_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 285", "author": "", "orig_id": 1407655}}, {"model": "metainfo.source", "pk": 5217, "fields": {"orig_filename": "Rothkirch-Panthen_Karl_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286f.", "author": "", "orig_id": 1407658}}, {"model": "metainfo.source", "pk": 5218, "fields": {"orig_filename": "Rothkirch-Panthen_Leonhard_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287", "author": "", "orig_id": 1407659}}, {"model": "metainfo.source", "pk": 5219, "fields": {"orig_filename": "Rothmann_Armin_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287", "author": "", "orig_id": 1407660}}, {"model": "metainfo.source", "pk": 5220, "fields": {"orig_filename": "Rothmund-Burgwall_Adolf_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 288", "author": "", "orig_id": 1407662}}, {"model": "metainfo.source", "pk": 5221, "fields": {"orig_filename": "Rothmund_Viktor_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287f.", "author": "", "orig_id": 1407661}}, {"model": "metainfo.source", "pk": 5222, "fields": {"orig_filename": "Rothschild_Albert-Salomon-Anselm_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 288", "author": "", "orig_id": 1407663}}, {"model": "metainfo.source", "pk": 5223, "fields": {"orig_filename": "Rothschild_Anselm-Salomon_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289", "author": "", "orig_id": 1407664}}, {"model": "metainfo.source", "pk": 5224, "fields": {"orig_filename": "Rothschild_Nathaniel-Mayer-Anselm_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289", "author": "", "orig_id": 1407665}}, {"model": "metainfo.source", "pk": 5225, "fields": {"orig_filename": "Rothschild_Salomon-Mayer_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289f.", "author": "", "orig_id": 1407666}}, {"model": "metainfo.source", "pk": 5226, "fields": {"orig_filename": "Rothschuetz_Emil_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 290f.", "author": "", "orig_id": 1407667}}, {"model": "metainfo.source", "pk": 5227, "fields": {"orig_filename": "Rothziegel_Leo_1892_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291", "author": "", "orig_id": 1407668}}, {"model": "metainfo.source", "pk": 5228, "fields": {"orig_filename": "Roth_Aron_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274f.", "author": "", "orig_id": 1407631}}, {"model": "metainfo.source", "pk": 5229, "fields": {"orig_filename": "Roth_August_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275", "author": "", "orig_id": 1407632}}, {"model": "metainfo.source", "pk": 5230, "fields": {"orig_filename": "Roth_Daniel_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275", "author": "", "orig_id": 1407633}}, {"model": "metainfo.source", "pk": 5231, "fields": {"orig_filename": "Roth_Franz_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275f.", "author": "", "orig_id": 1407634}}, {"model": "metainfo.source", "pk": 5232, "fields": {"orig_filename": "Roth_Georg_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 276", "author": "", "orig_id": 1407635}}, {"model": "metainfo.source", "pk": 5233, "fields": {"orig_filename": "Roth_Hieronymus_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 276f.", "author": "", "orig_id": 1407636}}, {"model": "metainfo.source", "pk": 5234, "fields": {"orig_filename": "Roemer_Karl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202f.", "author": "", "orig_id": 1407355}}, {"model": "metainfo.source", "pk": 5235, "fields": {"orig_filename": "Roeschel_Franz_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203", "author": "", "orig_id": 1407357}}, {"model": "metainfo.source", "pk": 5236, "fields": {"orig_filename": "Roesch_Ludwig_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203", "author": "", "orig_id": 1407356}}, {"model": "metainfo.source", "pk": 5237, "fields": {"orig_filename": "Roesler-Ehrenstahl_Ignaz_1765_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 205", "author": "", "orig_id": 1407362}}, {"model": "metainfo.source", "pk": 5238, "fields": {"orig_filename": "Roesler_Augustin_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203f.", "author": "", "orig_id": 1407358}}, {"model": "metainfo.source", "pk": 5239, "fields": {"orig_filename": "Roesler_Franz_1876_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204", "author": "", "orig_id": 1407359}}, {"model": "metainfo.source", "pk": 5240, "fields": {"orig_filename": "Roesler_Leonhard_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204", "author": "", "orig_id": 1407360}}, {"model": "metainfo.source", "pk": 5241, "fields": {"orig_filename": "Roesler_Robert_1836_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204f.", "author": "", "orig_id": 1407361}}, {"model": "metainfo.source", "pk": 5242, "fields": {"orig_filename": "Roesner_Karl_1804_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 205f.", "author": "", "orig_id": 1407363}}, {"model": "metainfo.source", "pk": 5243, "fields": {"orig_filename": "Roessel_Albin_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 206", "author": "", "orig_id": 1407364}}, {"model": "metainfo.source", "pk": 5244, "fields": {"orig_filename": "Roessler_Emil-Franz_1815_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 206f.", "author": "", "orig_id": 1407365}}, {"model": "metainfo.source", "pk": 5245, "fields": {"orig_filename": "Roessler_Ervin_1876_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 207", "author": "", "orig_id": 1407415}}, {"model": "metainfo.source", "pk": 5246, "fields": {"orig_filename": "Roessler_Johannes-Bapt_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 207f.", "author": "", "orig_id": 1407416}}, {"model": "metainfo.source", "pk": 5247, "fields": {"orig_filename": "Roessler_Josef_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407417}}, {"model": "metainfo.source", "pk": 5248, "fields": {"orig_filename": "Roessler_Karl_1864_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407418}}, {"model": "metainfo.source", "pk": 5249, "fields": {"orig_filename": "Roessler_Matej_1754_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407419}}, {"model": "metainfo.source", "pk": 5250, "fields": {"orig_filename": "Roessler_Mauriz_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208f.", "author": "", "orig_id": 1407420}}, {"model": "metainfo.source", "pk": 5251, "fields": {"orig_filename": "Roessler_Richard_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 209f.", "author": "", "orig_id": 1407421}}, {"model": "metainfo.source", "pk": 5252, "fields": {"orig_filename": "Roessler_Stefan_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210", "author": "", "orig_id": 1407422}}, {"model": "metainfo.source", "pk": 5253, "fields": {"orig_filename": "Roetzer_Karl_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210", "author": "", "orig_id": 1407423}}, {"model": "metainfo.source", "pk": 5254, "fields": {"orig_filename": "Roever_Heinrich_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210f.", "author": "", "orig_id": 1407424}}, {"model": "metainfo.source", "pk": 5255, "fields": {"orig_filename": "Rogala_Wojciech_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211", "author": "", "orig_id": 1407426}}, {"model": "metainfo.source", "pk": 5256, "fields": {"orig_filename": "Rogalski-Puch_Adalbert_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211", "author": "", "orig_id": 1407427}}, {"model": "metainfo.source", "pk": 5257, "fields": {"orig_filename": "Rogge_Walter_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211f.", "author": "", "orig_id": 1407428}}, {"model": "metainfo.source", "pk": 5258, "fields": {"orig_filename": "Rogosz-Ostoja_Jozef-Atanazy_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 212", "author": "", "orig_id": 1407429}}, {"model": "metainfo.source", "pk": 5259, "fields": {"orig_filename": "Rogulja_Petar_1888_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 212f.", "author": "", "orig_id": 1407430}}, {"model": "metainfo.source", "pk": 5260, "fields": {"orig_filename": "Rohan_Karel-Jan_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213", "author": "", "orig_id": 1407431}}, {"model": "metainfo.source", "pk": 5261, "fields": {"orig_filename": "Rohlena_Josef_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213", "author": "", "orig_id": 1407432}}, {"model": "metainfo.source", "pk": 5262, "fields": {"orig_filename": "Rohling_August_1839_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213f.", "author": "", "orig_id": 1407433}}, {"model": "metainfo.source", "pk": 5263, "fields": {"orig_filename": "Rohm-Hermannstaedten_Alfred_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 214", "author": "", "orig_id": 1407434}}, {"model": "metainfo.source", "pk": 5264, "fields": {"orig_filename": "Rohr-Denta_Franz_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 214f.", "author": "", "orig_id": 1407435}}, {"model": "metainfo.source", "pk": 5265, "fields": {"orig_filename": "Rohrauer_Alois_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407436}}, {"model": "metainfo.source", "pk": 5266, "fields": {"orig_filename": "Rohrbacher_Josef_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407437}}, {"model": "metainfo.source", "pk": 5267, "fields": {"orig_filename": "Rohrbacher_Josef_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407438}}, {"model": "metainfo.source", "pk": 5268, "fields": {"orig_filename": "Rohrer_Rudolf-Maria_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 216", "author": "", "orig_id": 1407440}}, {"model": "metainfo.source", "pk": 5269, "fields": {"orig_filename": "Rohrer_Rudolf_1805_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215f.", "author": "", "orig_id": 1407439}}, {"model": "metainfo.source", "pk": 5270, "fields": {"orig_filename": "Rohrman_Viljem_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 216f.", "author": "", "orig_id": 1407441}}, {"model": "metainfo.source", "pk": 5271, "fields": {"orig_filename": "Rohs_Martha_1909_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1952799}}, {"model": "metainfo.source", "pk": 5272, "fields": {"orig_filename": "Roj-Gasienica_Wojciech_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 217", "author": "", "orig_id": 1407442}}, {"model": "metainfo.source", "pk": 5273, "fields": {"orig_filename": "Rojacher_Ignaz_1844_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 217f.", "author": "", "orig_id": 1407443}}, {"model": "metainfo.source", "pk": 5274, "fields": {"orig_filename": "Rojc_Anton_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218", "author": "", "orig_id": 1407444}}, {"model": "metainfo.source", "pk": 5275, "fields": {"orig_filename": "Rojc_Milan_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218", "author": "", "orig_id": 1407445}}, {"model": "metainfo.source", "pk": 5276, "fields": {"orig_filename": "Rojina_Francisek_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218f.", "author": "", "orig_id": 1407446}}, {"model": "metainfo.source", "pk": 5277, "fields": {"orig_filename": "Rojka_Friedrich_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 219", "author": "", "orig_id": 1407447}}, {"model": "metainfo.source", "pk": 5278, "fields": {"orig_filename": "Rojko_Kaspar_1744_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 219f.", "author": "", "orig_id": 1407448}}, {"model": "metainfo.source", "pk": 5279, "fields": {"orig_filename": "Rokeach_Issachar-Dow-Baer_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220", "author": "", "orig_id": 1407449}}, {"model": "metainfo.source", "pk": 5280, "fields": {"orig_filename": "Rokeach_Schalom_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220", "author": "", "orig_id": 1407450}}, {"model": "metainfo.source", "pk": 5281, "fields": {"orig_filename": "Rokitansky_Friedrich-Karl_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220f.", "author": "", "orig_id": 1407451}}, {"model": "metainfo.source", "pk": 5282, "fields": {"orig_filename": "Rokitansky_Hans_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 221", "author": "", "orig_id": 1407452}}, {"model": "metainfo.source", "pk": 5283, "fields": {"orig_filename": "Rokitansky_Karl_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 221f.", "author": "", "orig_id": 1407453}}, {"model": "metainfo.source", "pk": 5284, "fields": {"orig_filename": "Rokitansky_Karl_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 222f.", "author": "", "orig_id": 1407454}}, {"model": "metainfo.source", "pk": 5285, "fields": {"orig_filename": "Rokos_Frantisek-Alexander_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223", "author": "", "orig_id": 1407455}}, {"model": "metainfo.source", "pk": 5286, "fields": {"orig_filename": "Roksandic_Simeon_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223", "author": "", "orig_id": 1407456}}, {"model": "metainfo.source", "pk": 5287, "fields": {"orig_filename": "Rolla_Alessandro_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224", "author": "", "orig_id": 1407458}}, {"model": "metainfo.source", "pk": 5288, "fields": {"orig_filename": "Rolleder_Anton_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224", "author": "", "orig_id": 1407459}}, {"model": "metainfo.source", "pk": 5289, "fields": {"orig_filename": "Roller_Alfred_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224ff.", "author": "", "orig_id": 1407460}}, {"model": "metainfo.source", "pk": 5290, "fields": {"orig_filename": "Roller_Josef_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226", "author": "", "orig_id": 1407461}}, {"model": "metainfo.source", "pk": 5291, "fields": {"orig_filename": "Roller_Margarete_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226f.", "author": "", "orig_id": 1407463}}, {"model": "metainfo.source", "pk": 5292, "fields": {"orig_filename": "Rollett_Alexander_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 227f.", "author": "", "orig_id": 1407464}}, {"model": "metainfo.source", "pk": 5293, "fields": {"orig_filename": "Rollett_Anton_1778_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 228", "author": "", "orig_id": 1407465}}, {"model": "metainfo.source", "pk": 5294, "fields": {"orig_filename": "Rollett_Hermann_1819_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 228f.", "author": "", "orig_id": 1407366}}, {"model": "metainfo.source", "pk": 5295, "fields": {"orig_filename": "Rollinger_Karl_1817_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 229", "author": "", "orig_id": 1407367}}, {"model": "metainfo.source", "pk": 5296, "fields": {"orig_filename": "Roll_Karl_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223f.", "author": "", "orig_id": 1407457}}, {"model": "metainfo.source", "pk": 5297, "fields": {"orig_filename": "Romako_Anton_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 229f.", "author": "", "orig_id": 1407368}}, {"model": "metainfo.source", "pk": 5298, "fields": {"orig_filename": "Romanin_Leon-Vita_1770_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230", "author": "", "orig_id": 1407369}}, {"model": "metainfo.source", "pk": 5299, "fields": {"orig_filename": "Romano-Ringe_Johann-Julius_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231", "author": "", "orig_id": 1407371}}, {"model": "metainfo.source", "pk": 5300, "fields": {"orig_filename": "Romanowski_Mieczyslaw_1833_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231", "author": "", "orig_id": 1407372}}, {"model": "metainfo.source", "pk": 5301, "fields": {"orig_filename": "Romano_Girolamo_1765_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230f.", "author": "", "orig_id": 1407370}}, {"model": "metainfo.source", "pk": 5302, "fields": {"orig_filename": "Roman_Alexandru_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230", "author": "", "orig_id": 1407374}}, {"model": "metainfo.source", "pk": 5303, "fields": {"orig_filename": "Romaszkan_Grzegorz-Jozef_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231f.", "author": "", "orig_id": 1407373}}, {"model": "metainfo.source", "pk": 5304, "fields": {"orig_filename": "Rombauer_Johann_1782_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 232", "author": "", "orig_id": 1407375}}, {"model": "metainfo.source", "pk": 5305, "fields": {"orig_filename": "Romer-Kis-Enyiczke_Stefan_1788_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233", "author": "", "orig_id": 1407378}}, {"model": "metainfo.source", "pk": 5306, "fields": {"orig_filename": "Romer_Floridus_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 232f.", "author": "", "orig_id": 1407376}}, {"model": "metainfo.source", "pk": 5307, "fields": {"orig_filename": "Romer_Johann_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233", "author": "", "orig_id": 1407377}}, {"model": "metainfo.source", "pk": 5308, "fields": {"orig_filename": "Romich_Siegfried_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233f.", "author": "", "orig_id": 1407379}}, {"model": "metainfo.source", "pk": 5309, "fields": {"orig_filename": "Romilli_Bartolomeo-Carlo_1795_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234", "author": "", "orig_id": 1407380}}, {"model": "metainfo.source", "pk": 5310, "fields": {"orig_filename": "Ronacher_Anton_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235", "author": "", "orig_id": 1407383}}, {"model": "metainfo.source", "pk": 5311, "fields": {"orig_filename": "Ronai_Janos_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235", "author": "", "orig_id": 1407404}}, {"model": "metainfo.source", "pk": 5312, "fields": {"orig_filename": "Ronay-Lipto-Ujvar_Franz-X-Gustav_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236", "author": "", "orig_id": 1407385}}, {"model": "metainfo.source", "pk": 5313, "fields": {"orig_filename": "Ronay_Jacint-Janos_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235f.", "author": "", "orig_id": 1407384}}, {"model": "metainfo.source", "pk": 5314, "fields": {"orig_filename": "Rona_Samuel_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234", "author": "", "orig_id": 1407381}}, {"model": "metainfo.source", "pk": 5315, "fields": {"orig_filename": "Rona_Zsigmond_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234f.", "author": "", "orig_id": 1407382}}, {"model": "metainfo.source", "pk": 5316, "fields": {"orig_filename": "Roncali_Leone_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236", "author": "", "orig_id": 1407386}}, {"model": "metainfo.source", "pk": 5317, "fields": {"orig_filename": "Ronconi_Domenico_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236f.", "author": "", "orig_id": 1407387}}, {"model": "metainfo.source", "pk": 5318, "fields": {"orig_filename": "Ronconi_Giorgio_1810_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237", "author": "", "orig_id": 1407388}}, {"model": "metainfo.source", "pk": 5319, "fields": {"orig_filename": "Ronconi_Giovanni-Batt_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237", "author": "", "orig_id": 1407389}}, {"model": "metainfo.source", "pk": 5320, "fields": {"orig_filename": "Roncourt_Albert_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237f.", "author": "", "orig_id": 1407390}}, {"model": "metainfo.source", "pk": 5321, "fields": {"orig_filename": "Rondolini_Lorenzo_1752_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238", "author": "", "orig_id": 1407391}}, {"model": "metainfo.source", "pk": 5322, "fields": {"orig_filename": "Ronsperger_Benedikt_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238", "author": "", "orig_id": 1407392}}, {"model": "metainfo.source", "pk": 5323, "fields": {"orig_filename": "Ronzani_Domenico_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238f.", "author": "", "orig_id": 1407393}}, {"model": "metainfo.source", "pk": 5324, "fields": {"orig_filename": "Roose_Friedrich_1767_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 239f.", "author": "", "orig_id": 1407395}}, {"model": "metainfo.source", "pk": 5325, "fields": {"orig_filename": "Roosz_Peter_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407396}}, {"model": "metainfo.source", "pk": 5326, "fields": {"orig_filename": "Roos_Emil_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 239", "author": "", "orig_id": 1407394}}, {"model": "metainfo.source", "pk": 5327, "fields": {"orig_filename": "Roretz_Albrecht_1846_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407397}}, {"model": "metainfo.source", "pk": 5328, "fields": {"orig_filename": "Rosam_Vaclav_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241", "author": "", "orig_id": 1407400}}, {"model": "metainfo.source", "pk": 5329, "fields": {"orig_filename": "Rosanes_Jakob_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241", "author": "", "orig_id": 1407401}}, {"model": "metainfo.source", "pk": 5330, "fields": {"orig_filename": "Rosas_Anton_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241f.", "author": "", "orig_id": 1407402}}, {"model": "metainfo.source", "pk": 5331, "fields": {"orig_filename": "Rosa_Costantino_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240f.", "author": "", "orig_id": 1407399}}, {"model": "metainfo.source", "pk": 5332, "fields": {"orig_filename": "Rosche_Alfred_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 242", "author": "", "orig_id": 1407403}}, {"model": "metainfo.source", "pk": 5333, "fields": {"orig_filename": "Roschmann-Hoerburg_Anton-Leopold_1777_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 242f.", "author": "", "orig_id": 1407405}}, {"model": "metainfo.source", "pk": 5334, "fields": {"orig_filename": "Rosciszewski-Junosza_Adam_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 243", "author": "", "orig_id": 1407406}}, {"model": "metainfo.source", "pk": 5335, "fields": {"orig_filename": "Rosegger_Peter_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 245f.", "author": "", "orig_id": 1407411}}, {"model": "metainfo.source", "pk": 5336, "fields": {"orig_filename": "Rosegger_Rupert_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 246", "author": "", "orig_id": 1407412}}, {"model": "metainfo.source", "pk": 5337, "fields": {"orig_filename": "Righetti_Giovanni_1766_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 161f.", "author": "", "orig_id": 1407150}}, {"model": "metainfo.source", "pk": 5338, "fields": {"orig_filename": "Righetti_Giovanni_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162", "author": "", "orig_id": 1407151}}, {"model": "metainfo.source", "pk": 5339, "fields": {"orig_filename": "Rigler_Gustav_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162", "author": "", "orig_id": 1407152}}, {"model": "metainfo.source", "pk": 5340, "fields": {"orig_filename": "Rigler_Lorenz_1815_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162f.", "author": "", "orig_id": 1407153}}, {"model": "metainfo.source", "pk": 5341, "fields": {"orig_filename": "Rigler_Peter-Paul_1796_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 163", "author": "", "orig_id": 1407154}}, {"model": "metainfo.source", "pk": 5342, "fields": {"orig_filename": "Riha_Martin_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 163f.", "author": "", "orig_id": 1407155}}, {"model": "metainfo.source", "pk": 5343, "fields": {"orig_filename": "Rihovsky_Vojtech_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 164", "author": "", "orig_id": 1407156}}, {"model": "metainfo.source", "pk": 5344, "fields": {"orig_filename": "Rilke_Rainer-Maria_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 164ff.", "author": "", "orig_id": 1407157}}, {"model": "metainfo.source", "pk": 5345, "fields": {"orig_filename": "Rill_Josef_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166", "author": "", "orig_id": 1407158}}, {"model": "metainfo.source", "pk": 5346, "fields": {"orig_filename": "Rimboeck_Karl_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166", "author": "", "orig_id": 1407159}}, {"model": "metainfo.source", "pk": 5347, "fields": {"orig_filename": "Rimely_Karoly_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166f.", "author": "", "orig_id": 1407160}}, {"model": "metainfo.source", "pk": 5348, "fields": {"orig_filename": "Rimmer_Adalbert_1818_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407161}}, {"model": "metainfo.source", "pk": 5349, "fields": {"orig_filename": "Rinaldini_Anton_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407162}}, {"model": "metainfo.source", "pk": 5350, "fields": {"orig_filename": "Rinaldini_Teodoro_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407163}}, {"model": "metainfo.source", "pk": 5351, "fields": {"orig_filename": "Rincolini_Ernst-Karl_1785_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167f.", "author": "", "orig_id": 1407164}}, {"model": "metainfo.source", "pk": 5352, "fields": {"orig_filename": "Ringelblum_Emanuel_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 168", "author": "", "orig_id": 1407165}}, {"model": "metainfo.source", "pk": 5353, "fields": {"orig_filename": "Ringelsheim_Josef_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 168f.", "author": "", "orig_id": 1407166}}, {"model": "metainfo.source", "pk": 5354, "fields": {"orig_filename": "Ringhoffer_Emanuel_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169", "author": "", "orig_id": 1407167}}, {"model": "metainfo.source", "pk": 5355, "fields": {"orig_filename": "Ringhoffer_Franz_1817_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169", "author": "", "orig_id": 1407168}}, {"model": "metainfo.source", "pk": 5356, "fields": {"orig_filename": "Ringhoffer_Franz_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169f.", "author": "", "orig_id": 1407169}}, {"model": "metainfo.source", "pk": 5357, "fields": {"orig_filename": "Ringler_Florian_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170", "author": "", "orig_id": 1407170}}, {"model": "metainfo.source", "pk": 5358, "fields": {"orig_filename": "Ringler_Karl_1826_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170", "author": "", "orig_id": 1407171}}, {"model": "metainfo.source", "pk": 5359, "fields": {"orig_filename": "Rintelen_Anton_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 171", "author": "", "orig_id": 1407173}}, {"model": "metainfo.source", "pk": 5360, "fields": {"orig_filename": "Rintelen_Anton_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 171f.", "author": "", "orig_id": 1407174}}, {"model": "metainfo.source", "pk": 5361, "fields": {"orig_filename": "Rint_Johann_1814_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170f.", "author": "", "orig_id": 1407172}}, {"model": "metainfo.source", "pk": 5362, "fields": {"orig_filename": "Riotte_Philipp-Jakob_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 172", "author": "", "orig_id": 1407175}}, {"model": "metainfo.source", "pk": 5363, "fields": {"orig_filename": "Ripamonti_Riccardo_1849_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 172f.", "author": "", "orig_id": 1407176}}, {"model": "metainfo.source", "pk": 5364, "fields": {"orig_filename": "Rippel_Johann_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173", "author": "", "orig_id": 1407177}}, {"model": "metainfo.source", "pk": 5365, "fields": {"orig_filename": "Ripper_Julius_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173", "author": "", "orig_id": 1407178}}, {"model": "metainfo.source", "pk": 5366, "fields": {"orig_filename": "Ripper_Maximilian_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173f.", "author": "", "orig_id": 1407179}}, {"model": "metainfo.source", "pk": 5367, "fields": {"orig_filename": "Rippl-Ronai_Jozsef_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174", "author": "", "orig_id": 1407181}}, {"model": "metainfo.source", "pk": 5368, "fields": {"orig_filename": "Rippl_Eugen_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174", "author": "", "orig_id": 1407180}}, {"model": "metainfo.source", "pk": 5369, "fields": {"orig_filename": "Rismondo_Giovanni_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175", "author": "", "orig_id": 1407183}}, {"model": "metainfo.source", "pk": 5370, "fields": {"orig_filename": "Riss_Josef_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175", "author": "", "orig_id": 1407184}}, {"model": "metainfo.source", "pk": 5371, "fields": {"orig_filename": "Ristori_Adelaide_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175f.", "author": "", "orig_id": 1407185}}, {"model": "metainfo.source", "pk": 5372, "fields": {"orig_filename": "Ristow_Gustav_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176", "author": "", "orig_id": 1407186}}, {"model": "metainfo.source", "pk": 5373, "fields": {"orig_filename": "Ris_Jenny_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174f.", "author": "", "orig_id": 1407182}}, {"model": "metainfo.source", "pk": 5374, "fields": {"orig_filename": "Ritt-Jaufen_August_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176", "author": "", "orig_id": 1407187}}, {"model": "metainfo.source", "pk": 5375, "fields": {"orig_filename": "Ritter-Rittersberg_Johann_1780_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 178", "author": "", "orig_id": 1407468}}, {"model": "metainfo.source", "pk": 5376, "fields": {"orig_filename": "Ritter-Rittersberg_Ludwig_1809_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 178f.", "author": "", "orig_id": 1407469}}, {"model": "metainfo.source", "pk": 5377, "fields": {"orig_filename": "Ritter-Rittershayn_Gottfried_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179", "author": "", "orig_id": 1407470}}, {"model": "metainfo.source", "pk": 5378, "fields": {"orig_filename": "Ritter-Zahony_Eugen_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179", "author": "", "orig_id": 1407471}}, {"model": "metainfo.source", "pk": 5379, "fields": {"orig_filename": "Ritter-Zahony_Hektor_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179f.", "author": "", "orig_id": 1407472}}, {"model": "metainfo.source", "pk": 5380, "fields": {"orig_filename": "Rittershausen_Hermann_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407473}}, {"model": "metainfo.source", "pk": 5381, "fields": {"orig_filename": "Ritter_Albert_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176f.", "author": "", "orig_id": 1407188}}, {"model": "metainfo.source", "pk": 5382, "fields": {"orig_filename": "Ritter_Eduard_1809_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177", "author": "", "orig_id": 1407466}}, {"model": "metainfo.source", "pk": 5383, "fields": {"orig_filename": "Ritter_Franz_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177", "author": "", "orig_id": 1409577}}, {"model": "metainfo.source", "pk": 5384, "fields": {"orig_filename": "Ritter_Josef_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177f.", "author": "", "orig_id": 1407467}}, {"model": "metainfo.source", "pk": 5385, "fields": {"orig_filename": "Rittig_Ivan_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407474}}, {"model": "metainfo.source", "pk": 5386, "fields": {"orig_filename": "Rittig_Johann_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407475}}, {"model": "metainfo.source", "pk": 5387, "fields": {"orig_filename": "Rittinger_Peter_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180f.", "author": "", "orig_id": 1407476}}, {"model": "metainfo.source", "pk": 5388, "fields": {"orig_filename": "Rittmeyer_Giulia-Cecilia_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 181", "author": "", "orig_id": 1407477}}, {"model": "metainfo.source", "pk": 5389, "fields": {"orig_filename": "Rittner_Edward_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 181f.", "author": "", "orig_id": 1407478}}, {"model": "metainfo.source", "pk": 5390, "fields": {"orig_filename": "Rittner_Rudolf_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 182f.", "author": "", "orig_id": 1407479}}, {"model": "metainfo.source", "pk": 5391, "fields": {"orig_filename": "Rittner_Thaddaeus_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 183", "author": "", "orig_id": 1407480}}, {"model": "metainfo.source", "pk": 5392, "fields": {"orig_filename": "Ritzberger_Albert_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 183f.", "author": "", "orig_id": 1407481}}, {"model": "metainfo.source", "pk": 5393, "fields": {"orig_filename": "Ritzberger_Engelbert_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184", "author": "", "orig_id": 1407483}}, {"model": "metainfo.source", "pk": 5394, "fields": {"orig_filename": "Ritzoffy_Nikola_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184", "author": "", "orig_id": 1407482}}, {"model": "metainfo.source", "pk": 5395, "fields": {"orig_filename": "Rizner_Ludovit-Vladimir_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184f.", "author": "", "orig_id": 1407484}}, {"model": "metainfo.source", "pk": 5396, "fields": {"orig_filename": "Rizy_Theobald_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 185", "author": "", "orig_id": 1407485}}, {"model": "metainfo.source", "pk": 5397, "fields": {"orig_filename": "Rizzi_Lodovico_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1941331}}, {"model": "metainfo.source", "pk": 5398, "fields": {"orig_filename": "Rizzi_Luigi_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 185f.", "author": "", "orig_id": 1407486}}, {"model": "metainfo.source", "pk": 5399, "fields": {"orig_filename": "Rizzi_Vinzenz_1816_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 186", "author": "", "orig_id": 1407487}}, {"model": "metainfo.source", "pk": 5400, "fields": {"orig_filename": "Robert_Florent_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 186f.", "author": "", "orig_id": 1407488}}, {"model": "metainfo.source", "pk": 5401, "fields": {"orig_filename": "Robert_Julius_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 187", "author": "", "orig_id": 1407489}}, {"model": "metainfo.source", "pk": 5402, "fields": {"orig_filename": "Robert_Ludwig_1792_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 187f.", "author": "", "orig_id": 1407490}}, {"model": "metainfo.source", "pk": 5403, "fields": {"orig_filename": "Robert_Richard_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188", "author": "", "orig_id": 1407491}}, {"model": "metainfo.source", "pk": 5404, "fields": {"orig_filename": "Robic_Simon_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188", "author": "", "orig_id": 1407492}}, {"model": "metainfo.source", "pk": 5405, "fields": {"orig_filename": "Robinsohn_Isaak_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 189", "author": "", "orig_id": 1407494}}, {"model": "metainfo.source", "pk": 5406, "fields": {"orig_filename": "Robinson_Adolf_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 189", "author": "", "orig_id": 1407495}}, {"model": "metainfo.source", "pk": 5407, "fields": {"orig_filename": "Robins_Adolf_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188f.", "author": "", "orig_id": 1407493}}, {"model": "metainfo.source", "pk": 5408, "fields": {"orig_filename": "Robitschek_Kurt_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 190", "author": "", "orig_id": 1407497}}, {"model": "metainfo.source", "pk": 5409, "fields": {"orig_filename": "Robitschek_Robert_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191", "author": "", "orig_id": 1407498}}, {"model": "metainfo.source", "pk": 5410, "fields": {"orig_filename": "Robitsch_Matthias_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 190", "author": "", "orig_id": 1407496}}, {"model": "metainfo.source", "pk": 5411, "fields": {"orig_filename": "Rochata_Karl_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191", "author": "", "orig_id": 1407499}}, {"model": "metainfo.source", "pk": 5412, "fields": {"orig_filename": "Rochelt_Franz_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191f.", "author": "", "orig_id": 1407500}}, {"model": "metainfo.source", "pk": 5413, "fields": {"orig_filename": "Rochleder_Friedrich_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 192", "author": "", "orig_id": 1407501}}, {"model": "metainfo.source", "pk": 5414, "fields": {"orig_filename": "Rochlitzer_Ludwig_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 192", "author": "", "orig_id": 1407502}}, {"model": "metainfo.source", "pk": 5415, "fields": {"orig_filename": "Rochowanski_Emil_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193", "author": "", "orig_id": 1407503}}, {"model": "metainfo.source", "pk": 5416, "fields": {"orig_filename": "Rodakowski_Henryk_1823_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193f.", "author": "", "orig_id": 1407505}}, {"model": "metainfo.source", "pk": 5417, "fields": {"orig_filename": "Rodakowski_Josef_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194", "author": "", "orig_id": 1407506}}, {"model": "metainfo.source", "pk": 5418, "fields": {"orig_filename": "Rodakowski_Maximilian_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194", "author": "", "orig_id": 1407507}}, {"model": "metainfo.source", "pk": 5419, "fields": {"orig_filename": "Roda_Alexander_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193", "author": "", "orig_id": 1407504}}, {"model": "metainfo.source", "pk": 5420, "fields": {"orig_filename": "Rode_Ignaz_1819_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194f.", "author": "", "orig_id": 1407508}}, {"model": "metainfo.source", "pk": 5421, "fields": {"orig_filename": "Rode_Leon_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195", "author": "", "orig_id": 1407509}}, {"model": "metainfo.source", "pk": 5422, "fields": {"orig_filename": "Rode_Walther_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195", "author": "", "orig_id": 1407510}}, {"model": "metainfo.source", "pk": 5423, "fields": {"orig_filename": "Rodich_Gabriel_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195f.", "author": "", "orig_id": 1407511}}, {"model": "metainfo.source", "pk": 5424, "fields": {"orig_filename": "Rodler_Adolf_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 196", "author": "", "orig_id": 1407512}}, {"model": "metainfo.source", "pk": 5425, "fields": {"orig_filename": "Rodler_Alfred_1861_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 196f.", "author": "", "orig_id": 1407339}}, {"model": "metainfo.source", "pk": 5426, "fields": {"orig_filename": "Rodler_Erich_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197", "author": "", "orig_id": 1407340}}, {"model": "metainfo.source", "pk": 5427, "fields": {"orig_filename": "Roebbeling_Hermann_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197f.", "author": "", "orig_id": 1407342}}, {"model": "metainfo.source", "pk": 5428, "fields": {"orig_filename": "Roebl_Klemens_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 198", "author": "", "orig_id": 1407343}}, {"model": "metainfo.source", "pk": 5429, "fields": {"orig_filename": "Roeckel_August_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 199", "author": "", "orig_id": 1407345}}, {"model": "metainfo.source", "pk": 5430, "fields": {"orig_filename": "Roeck_Istvan_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 198f.", "author": "", "orig_id": 1407344}}, {"model": "metainfo.source", "pk": 5431, "fields": {"orig_filename": "Roeder_Gustav_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 199f.", "author": "", "orig_id": 1407346}}, {"model": "metainfo.source", "pk": 5432, "fields": {"orig_filename": "Roeggl_Alois_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 200", "author": "", "orig_id": 1407347}}, {"model": "metainfo.source", "pk": 5433, "fields": {"orig_filename": "Roeggl_Josef_1781_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 200f.", "author": "", "orig_id": 1407348}}, {"model": "metainfo.source", "pk": 5434, "fields": {"orig_filename": "Roehlich_Josef_1836_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407349}}, {"model": "metainfo.source", "pk": 5435, "fields": {"orig_filename": "Roehm_Ernst-Friedrich_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407350}}, {"model": "metainfo.source", "pk": 5436, "fields": {"orig_filename": "Roell_Anton_1832_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407351}}, {"model": "metainfo.source", "pk": 5437, "fields": {"orig_filename": "Roell_Moritz-Friedrich_1818_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201f.", "author": "", "orig_id": 1407352}}, {"model": "metainfo.source", "pk": 5438, "fields": {"orig_filename": "Roell_Viktor_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202", "author": "", "orig_id": 1407353}}, {"model": "metainfo.source", "pk": 5439, "fields": {"orig_filename": "Roemer_Julius-Paul_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202", "author": "", "orig_id": 1407354}}, {"model": "metainfo.source", "pk": 5440, "fields": {"orig_filename": "Richarz_Stefan_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407243}}, {"model": "metainfo.source", "pk": 5441, "fields": {"orig_filename": "Richter-Wittbach_Gustav_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131f.", "author": "", "orig_id": 1407272}}, {"model": "metainfo.source", "pk": 5442, "fields": {"orig_filename": "Richtera_Leopold_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132", "author": "", "orig_id": 1407273}}, {"model": "metainfo.source", "pk": 5443, "fields": {"orig_filename": "Richter_Aladar_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407244}}, {"model": "metainfo.source", "pk": 5444, "fields": {"orig_filename": "Richter_Albert_1843_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407245}}, {"model": "metainfo.source", "pk": 5445, "fields": {"orig_filename": "Richter_Alexander_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120f.", "author": "", "orig_id": 1407246}}, {"model": "metainfo.source", "pk": 5446, "fields": {"orig_filename": "Richter_Anton-Josef_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121f.", "author": "", "orig_id": 1407249}}, {"model": "metainfo.source", "pk": 5447, "fields": {"orig_filename": "Richter_Anton_1805_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121", "author": "", "orig_id": 1407247}}, {"model": "metainfo.source", "pk": 5448, "fields": {"orig_filename": "Richter_Anton_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121", "author": "", "orig_id": 1407248}}, {"model": "metainfo.source", "pk": 5449, "fields": {"orig_filename": "Richter_Benedikt_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 122", "author": "", "orig_id": 1407250}}, {"model": "metainfo.source", "pk": 5450, "fields": {"orig_filename": "Richter_Eduard_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 122f.", "author": "", "orig_id": 1407251}}, {"model": "metainfo.source", "pk": 5451, "fields": {"orig_filename": "Richter_Elise_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 123f.", "author": "", "orig_id": 1407252}}, {"model": "metainfo.source", "pk": 5452, "fields": {"orig_filename": "Richter_Franz-X-Johann_1783_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 125", "author": "", "orig_id": 1407256}}, {"model": "metainfo.source", "pk": 5453, "fields": {"orig_filename": "Richter_Franz_1774_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124", "author": "", "orig_id": 1407253}}, {"model": "metainfo.source", "pk": 5454, "fields": {"orig_filename": "Richter_Franz_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124", "author": "", "orig_id": 1407254}}, {"model": "metainfo.source", "pk": 5455, "fields": {"orig_filename": "Richter_Franz_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124f.", "author": "", "orig_id": 1407255}}, {"model": "metainfo.source", "pk": 5456, "fields": {"orig_filename": "Richter_Franz_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1455961}}, {"model": "metainfo.source", "pk": 5457, "fields": {"orig_filename": "Richter_Hans_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 125f.", "author": "", "orig_id": 1407257}}, {"model": "metainfo.source", "pk": 5458, "fields": {"orig_filename": "Richter_Heinrich-Hermann_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 126f.", "author": "", "orig_id": 1407258}}, {"model": "metainfo.source", "pk": 5459, "fields": {"orig_filename": "Richter_Heinrich-Moritz_1841_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127", "author": "", "orig_id": 1407259}}, {"model": "metainfo.source", "pk": 5460, "fields": {"orig_filename": "Richter_Helene_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127", "author": "", "orig_id": 1407260}}, {"model": "metainfo.source", "pk": 5461, "fields": {"orig_filename": "Richter_Johann-Anton_1782_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127f.", "author": "", "orig_id": 1407261}}, {"model": "metainfo.source", "pk": 5462, "fields": {"orig_filename": "Richter_Johann-Julius_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 128f.", "author": "", "orig_id": 1407262}}, {"model": "metainfo.source", "pk": 5463, "fields": {"orig_filename": "Richter_Josef-Karl_1880_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407263}}, {"model": "metainfo.source", "pk": 5464, "fields": {"orig_filename": "Richter_Karl-Max_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129f.", "author": "", "orig_id": 1407266}}, {"model": "metainfo.source", "pk": 5465, "fields": {"orig_filename": "Richter_Karl-Nikolaus_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130", "author": "", "orig_id": 1407267}}, {"model": "metainfo.source", "pk": 5466, "fields": {"orig_filename": "Richter_Karl_1855_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407264}}, {"model": "metainfo.source", "pk": 5467, "fields": {"orig_filename": "Richter_Karl_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407265}}, {"model": "metainfo.source", "pk": 5468, "fields": {"orig_filename": "Richter_Paul_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130", "author": "", "orig_id": 1407268}}, {"model": "metainfo.source", "pk": 5469, "fields": {"orig_filename": "Richter_Pius_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130f.", "author": "", "orig_id": 1407269}}, {"model": "metainfo.source", "pk": 5470, "fields": {"orig_filename": "Richter_Richard_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131", "author": "", "orig_id": 1407270}}, {"model": "metainfo.source", "pk": 5471, "fields": {"orig_filename": "Richter_Wilhelm_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131", "author": "", "orig_id": 1407271}}, {"model": "metainfo.source", "pk": 5472, "fields": {"orig_filename": "Ricker_Anselm_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 133", "author": "", "orig_id": 1407277}}, {"model": "metainfo.source", "pk": 5473, "fields": {"orig_filename": "Rick_Johann-Kaspar_1808_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132", "author": "", "orig_id": 1407274}}, {"model": "metainfo.source", "pk": 5474, "fields": {"orig_filename": "Rick_Johannes_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132f.", "author": "", "orig_id": 1407275}}, {"model": "metainfo.source", "pk": 5475, "fields": {"orig_filename": "Rick_Karl_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 133", "author": "", "orig_id": 1407276}}, {"model": "metainfo.source", "pk": 5476, "fields": {"orig_filename": "Ricordi_Giovanni_1785_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 134", "author": "", "orig_id": 1407278}}, {"model": "metainfo.source", "pk": 5477, "fields": {"orig_filename": "Ridler_Johann-Wilhelm_1772_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 134f.", "author": "", "orig_id": 1407279}}, {"model": "metainfo.source", "pk": 5478, "fields": {"orig_filename": "Riedel_Andreas_1748_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 135f.", "author": "", "orig_id": 1407281}}, {"model": "metainfo.source", "pk": 5479, "fields": {"orig_filename": "Riedel_Josef-Anton_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137", "author": "", "orig_id": 1407284}}, {"model": "metainfo.source", "pk": 5480, "fields": {"orig_filename": "Riedel_Josef-Gottfried_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137f.", "author": "", "orig_id": 1407285}}, {"model": "metainfo.source", "pk": 5481, "fields": {"orig_filename": "Riedel_Josef_1816_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 136f.", "author": "", "orig_id": 1407282}}, {"model": "metainfo.source", "pk": 5482, "fields": {"orig_filename": "Riedel_Josef_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137", "author": "", "orig_id": 1407283}}, {"model": "metainfo.source", "pk": 5483, "fields": {"orig_filename": "Riedel_Wilhelm_1832_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 138", "author": "", "orig_id": 1407286}}, {"model": "metainfo.source", "pk": 5484, "fields": {"orig_filename": "Riederer-Dachsberg_Gustav_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407297}}, {"model": "metainfo.source", "pk": 5485, "fields": {"orig_filename": "Riederer_Ernst_1868_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 140f.", "author": "", "orig_id": 1407296}}, {"model": "metainfo.source", "pk": 5486, "fields": {"orig_filename": "Rieder_Alois_1836_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 138f.", "author": "", "orig_id": 1407287}}, {"model": "metainfo.source", "pk": 5487, "fields": {"orig_filename": "Rieder_Ambros-Matthias_1771_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407288}}, {"model": "metainfo.source", "pk": 5488, "fields": {"orig_filename": "Rieder_Franz_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407289}}, {"model": "metainfo.source", "pk": 5489, "fields": {"orig_filename": "Rieder_Georg_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407293}}, {"model": "metainfo.source", "pk": 5490, "fields": {"orig_filename": "Rieder_Ignaz_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139f.", "author": "", "orig_id": 1407294}}, {"model": "metainfo.source", "pk": 5491, "fields": {"orig_filename": "Rieder_Wilhelm-August_1796_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 140", "author": "", "orig_id": 1407295}}, {"model": "metainfo.source", "pk": 5492, "fields": {"orig_filename": "Riedinger_Anizet_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407298}}, {"model": "metainfo.source", "pk": 5493, "fields": {"orig_filename": "Riedinger_Hubert_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407299}}, {"model": "metainfo.source", "pk": 5494, "fields": {"orig_filename": "Riedl-Leuenstern_Josef_1786_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144f.", "author": "", "orig_id": 1407307}}, {"model": "metainfo.source", "pk": 5495, "fields": {"orig_filename": "Riedl-Riedenstein_Johann-Bapt_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 145", "author": "", "orig_id": 1407308}}, {"model": "metainfo.source", "pk": 5496, "fields": {"orig_filename": "Riedler_Alois_1850_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 145f.", "author": "", "orig_id": 1407309}}, {"model": "metainfo.source", "pk": 5497, "fields": {"orig_filename": "Riedler_Ferdinand_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407310}}, {"model": "metainfo.source", "pk": 5498, "fields": {"orig_filename": "Riedl_Franz-X_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142", "author": "", "orig_id": 1407300}}, {"model": "metainfo.source", "pk": 5499, "fields": {"orig_filename": "Riedl_Frigyes_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142", "author": "", "orig_id": 1407301}}, {"model": "metainfo.source", "pk": 5500, "fields": {"orig_filename": "Riedl_Hubert_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142f.", "author": "", "orig_id": 1407302}}, {"model": "metainfo.source", "pk": 5501, "fields": {"orig_filename": "Riedl_Johann_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 143", "author": "", "orig_id": 1407303}}, {"model": "metainfo.source", "pk": 5502, "fields": {"orig_filename": "Riedl_Richard_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 143f.", "author": "", "orig_id": 1407304}}, {"model": "metainfo.source", "pk": 5503, "fields": {"orig_filename": "Riedl_Robert_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144", "author": "", "orig_id": 1407305}}, {"model": "metainfo.source", "pk": 5504, "fields": {"orig_filename": "Riedl_Szende_1831_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144", "author": "", "orig_id": 1407306}}, {"model": "metainfo.source", "pk": 5505, "fields": {"orig_filename": "Riedmiller_Bernhard_1757_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407311}}, {"model": "metainfo.source", "pk": 5506, "fields": {"orig_filename": "Rief_Johann-Georg_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407312}}, {"model": "metainfo.source", "pk": 5507, "fields": {"orig_filename": "Rief_Josef-Cal_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146f.", "author": "", "orig_id": 1407313}}, {"model": "metainfo.source", "pk": 5508, "fields": {"orig_filename": "Rieger_August_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147", "author": "", "orig_id": 1407314}}, {"model": "metainfo.source", "pk": 5509, "fields": {"orig_filename": "Rieger_Bohuslav_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147", "author": "", "orig_id": 1407315}}, {"model": "metainfo.source", "pk": 5510, "fields": {"orig_filename": "Rieger_Eduard_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147f.", "author": "", "orig_id": 1407316}}, {"model": "metainfo.source", "pk": 5511, "fields": {"orig_filename": "Rieger_Erwin_1889_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 148", "author": "", "orig_id": 1407317}}, {"model": "metainfo.source", "pk": 5512, "fields": {"orig_filename": "Rieger_Frantisek-Ladislav_1818_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 148ff.", "author": "", "orig_id": 1407318}}, {"model": "metainfo.source", "pk": 5513, "fields": {"orig_filename": "Rieger_Franz_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150", "author": "", "orig_id": 1407319}}, {"model": "metainfo.source", "pk": 5514, "fields": {"orig_filename": "Rieger_Gottfried_1764_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150", "author": "", "orig_id": 1407320}}, {"model": "metainfo.source", "pk": 5515, "fields": {"orig_filename": "Rieger_Josef_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150f.", "author": "", "orig_id": 1407321}}, {"model": "metainfo.source", "pk": 5516, "fields": {"orig_filename": "Rieger_Josip_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151", "author": "", "orig_id": 1407322}}, {"model": "metainfo.source", "pk": 5517, "fields": {"orig_filename": "Rieger_Otto_1880_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151", "author": "", "orig_id": 1407323}}, {"model": "metainfo.source", "pk": 5518, "fields": {"orig_filename": "Riegler_Alois_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407327}}, {"model": "metainfo.source", "pk": 5519, "fields": {"orig_filename": "Riegler_Ferdinand_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407328}}, {"model": "metainfo.source", "pk": 5520, "fields": {"orig_filename": "Riegler_Gideon_1880_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407329}}, {"model": "metainfo.source", "pk": 5521, "fields": {"orig_filename": "Riegl_Alois_1858_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 152", "author": "", "orig_id": 1407325}}, {"model": "metainfo.source", "pk": 5522, "fields": {"orig_filename": "Riegl_Anton_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 152f.", "author": "", "orig_id": 1407326}}, {"model": "metainfo.source", "pk": 5523, "fields": {"orig_filename": "Riehl_Alois-Adolf_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153f.", "author": "", "orig_id": 1407330}}, {"model": "metainfo.source", "pk": 5524, "fields": {"orig_filename": "Riehl_Anton_1820_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 154", "author": "", "orig_id": 1407331}}, {"model": "metainfo.source", "pk": 5525, "fields": {"orig_filename": "Riehl_Anton_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155", "author": "", "orig_id": 1407332}}, {"model": "metainfo.source", "pk": 5526, "fields": {"orig_filename": "Riehl_Gustav_1855_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155", "author": "", "orig_id": 1407333}}, {"model": "metainfo.source", "pk": 5527, "fields": {"orig_filename": "Riehl_Josef_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155f.", "author": "", "orig_id": 1407334}}, {"model": "metainfo.source", "pk": 5528, "fields": {"orig_filename": "Riener_Martin_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156", "author": "", "orig_id": 1407335}}, {"model": "metainfo.source", "pk": 5529, "fields": {"orig_filename": "Riepl_Franz-X-Laurenz_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156f.", "author": "", "orig_id": 1407337}}, {"model": "metainfo.source", "pk": 5530, "fields": {"orig_filename": "Riesel_Mijat_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 157", "author": "", "orig_id": 1407338}}, {"model": "metainfo.source", "pk": 5531, "fields": {"orig_filename": "Riesenfeld_Hugo_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 157f.", "author": "", "orig_id": 1407140}}, {"model": "metainfo.source", "pk": 5532, "fields": {"orig_filename": "Riesenhuber_Martin_1876_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158", "author": "", "orig_id": 1407141}}, {"model": "metainfo.source", "pk": 5533, "fields": {"orig_filename": "Rieser_Michael_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158", "author": "", "orig_id": 1407142}}, {"model": "metainfo.source", "pk": 5534, "fields": {"orig_filename": "Rieszner_Valerian_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158f.", "author": "", "orig_id": 1407143}}, {"model": "metainfo.source", "pk": 5535, "fields": {"orig_filename": "Rietsch_Heinrich_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 159", "author": "", "orig_id": 1407144}}, {"model": "metainfo.source", "pk": 5536, "fields": {"orig_filename": "Rietti_Arturo_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 159f.", "author": "", "orig_id": 1407145}}, {"model": "metainfo.source", "pk": 5537, "fields": {"orig_filename": "Riewel_Hermann_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160", "author": "", "orig_id": 1407146}}, {"model": "metainfo.source", "pk": 5538, "fields": {"orig_filename": "Riezlmayr_Georg_1784_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160", "author": "", "orig_id": 1407147}}, {"model": "metainfo.source", "pk": 5539, "fields": {"orig_filename": "Rie_Therese_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 135", "author": "", "orig_id": 1407280}}, {"model": "metainfo.source", "pk": 5540, "fields": {"orig_filename": "Rigele_Alois_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160f.", "author": "", "orig_id": 1407148}}, {"model": "metainfo.source", "pk": 5541, "fields": {"orig_filename": "Rigele_Friedrich_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 161", "author": "", "orig_id": 1407149}}, {"model": "metainfo.source", "pk": 5542, "fields": {"orig_filename": "Renk_Anton_1871_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 78f.", "author": "", "orig_id": 1406990}}, {"model": "metainfo.source", "pk": 5543, "fields": {"orig_filename": "Renner_Franz_1866_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79f.", "author": "", "orig_id": 1406993}}, {"model": "metainfo.source", "pk": 5544, "fields": {"orig_filename": "Renner_Giuseppe-Federico_1784_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 80", "author": "", "orig_id": 1406994}}, {"model": "metainfo.source", "pk": 5545, "fields": {"orig_filename": "Renner_Karl_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 80f.", "author": "", "orig_id": 1406995}}, {"model": "metainfo.source", "pk": 5546, "fields": {"orig_filename": "Renner_Maria-Johanna_1775_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 81f.", "author": "", "orig_id": 1406996}}, {"model": "metainfo.source", "pk": 5547, "fields": {"orig_filename": "Renner_Viktor_1846_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 82", "author": "", "orig_id": 1406997}}, {"model": "metainfo.source", "pk": 5548, "fields": {"orig_filename": "Renn_Franz-X_1784_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79", "author": "", "orig_id": 1406991}}, {"model": "metainfo.source", "pk": 5549, "fields": {"orig_filename": "Renn_Paul_1806_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79", "author": "", "orig_id": 1406992}}, {"model": "metainfo.source", "pk": 5550, "fields": {"orig_filename": "Renz_Ernst-Jakob_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 82f.", "author": "", "orig_id": 1406998}}, {"model": "metainfo.source", "pk": 5551, "fields": {"orig_filename": "Repic_Alojzij_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 83", "author": "", "orig_id": 1406999}}, {"model": "metainfo.source", "pk": 5552, "fields": {"orig_filename": "Repta_Vasile-Vladimir_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 83f.", "author": "", "orig_id": 1407000}}, {"model": "metainfo.source", "pk": 5553, "fields": {"orig_filename": "Reschauer_Anton_1832_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85", "author": "", "orig_id": 1407004}}, {"model": "metainfo.source", "pk": 5554, "fields": {"orig_filename": "Reschauer_Heinrich_1838_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85", "author": "", "orig_id": 1407005}}, {"model": "metainfo.source", "pk": 5555, "fields": {"orig_filename": "Reschner_Martin_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85f.", "author": "", "orig_id": 1407006}}, {"model": "metainfo.source", "pk": 5556, "fields": {"orig_filename": "Resch_Josef_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84f.", "author": "", "orig_id": 1407003}}, {"model": "metainfo.source", "pk": 5557, "fields": {"orig_filename": "Resel_Johann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 86", "author": "", "orig_id": 1407007}}, {"model": "metainfo.source", "pk": 5558, "fields": {"orig_filename": "Resetar_Milan_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 86f.", "author": "", "orig_id": 1407008}}, {"model": "metainfo.source", "pk": 5559, "fields": {"orig_filename": "Resetka_Michal_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87", "author": "", "orig_id": 1407009}}, {"model": "metainfo.source", "pk": 5560, "fields": {"orig_filename": "Reslhuber_Augustin_1808_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87", "author": "", "orig_id": 1407010}}, {"model": "metainfo.source", "pk": 5561, "fields": {"orig_filename": "Resner_Rudolf_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87f.", "author": "", "orig_id": 1407011}}, {"model": "metainfo.source", "pk": 5562, "fields": {"orig_filename": "Ress-Blazkova_Vekoslava-Aloisia_1841_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88", "author": "", "orig_id": 1407012}}, {"model": "metainfo.source", "pk": 5563, "fields": {"orig_filename": "Ressel_Anton-Franz_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88", "author": "", "orig_id": 1407013}}, {"model": "metainfo.source", "pk": 5564, "fields": {"orig_filename": "Ressel_Gustav-Andreas_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88f.", "author": "", "orig_id": 1407014}}, {"model": "metainfo.source", "pk": 5565, "fields": {"orig_filename": "Ressel_Josef_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 89f.", "author": "", "orig_id": 1407015}}, {"model": "metainfo.source", "pk": 5566, "fields": {"orig_filename": "Ressel_Wilhelm_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 90", "author": "", "orig_id": 1407016}}, {"model": "metainfo.source", "pk": 5567, "fields": {"orig_filename": "Ressig_Alfred_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 90f.", "author": "", "orig_id": 1407017}}, {"model": "metainfo.source", "pk": 5568, "fields": {"orig_filename": "Ressmann_Costantino_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91", "author": "", "orig_id": 1407018}}, {"model": "metainfo.source", "pk": 5569, "fields": {"orig_filename": "Resti-Ferrari_Johann-Bapt_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91", "author": "", "orig_id": 1407019}}, {"model": "metainfo.source", "pk": 5570, "fields": {"orig_filename": "Res_Alojzij_1893_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84", "author": "", "orig_id": 1407001}}, {"model": "metainfo.source", "pk": 5571, "fields": {"orig_filename": "Rethi_Leopold_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91f.", "author": "", "orig_id": 1407020}}, {"model": "metainfo.source", "pk": 5572, "fields": {"orig_filename": "Rethy_Laszlo_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92", "author": "", "orig_id": 1407021}}, {"model": "metainfo.source", "pk": 5573, "fields": {"orig_filename": "Rethy_Mor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92", "author": "", "orig_id": 1407022}}, {"model": "metainfo.source", "pk": 5574, "fields": {"orig_filename": "Reti_Richard_1889_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92f.", "author": "", "orig_id": 1407023}}, {"model": "metainfo.source", "pk": 5575, "fields": {"orig_filename": "Rettensteiner_Werigand_1751_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93", "author": "", "orig_id": 1407024}}, {"model": "metainfo.source", "pk": 5576, "fields": {"orig_filename": "Rettich-Pirk_Sarolta_1863_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 94", "author": "", "orig_id": 1407027}}, {"model": "metainfo.source", "pk": 5577, "fields": {"orig_filename": "Rettich_Henriette_1813_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93", "author": "", "orig_id": 1407025}}, {"model": "metainfo.source", "pk": 5578, "fields": {"orig_filename": "Rettich_Julie_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93f.", "author": "", "orig_id": 1407026}}, {"model": "metainfo.source", "pk": 5579, "fields": {"orig_filename": "Rettigova_Magdalena-Dobromila_1785_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 95", "author": "", "orig_id": 1407029}}, {"model": "metainfo.source", "pk": 5580, "fields": {"orig_filename": "Rettig_Jan-Alois-Sudiprav_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 94", "author": "", "orig_id": 1407028}}, {"model": "metainfo.source", "pk": 5581, "fields": {"orig_filename": "Retzer_Josef-Friedrich_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 95f.", "author": "", "orig_id": 1407030}}, {"model": "metainfo.source", "pk": 5582, "fields": {"orig_filename": "Reuling_Wilhelm-Ludwig_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 96", "author": "", "orig_id": 1407031}}, {"model": "metainfo.source", "pk": 5583, "fields": {"orig_filename": "Reumann_Jakob_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 96", "author": "", "orig_id": 1407032}}, {"model": "metainfo.source", "pk": 5584, "fields": {"orig_filename": "Reuss-Belce_Luise_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98f.", "author": "", "orig_id": 1407037}}, {"model": "metainfo.source", "pk": 5585, "fields": {"orig_filename": "Reuss_August-Emanuel_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 97", "author": "", "orig_id": 1407033}}, {"model": "metainfo.source", "pk": 5586, "fields": {"orig_filename": "Reuss_August-Leopold_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 97", "author": "", "orig_id": 1407034}}, {"model": "metainfo.source", "pk": 5587, "fields": {"orig_filename": "Reuss_Gustav_1818_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1407035}}, {"model": "metainfo.source", "pk": 5588, "fields": {"orig_filename": "Reuss_Leopold_1775_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1407036}}, {"model": "metainfo.source", "pk": 5589, "fields": {"orig_filename": "Reuss_Leo_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1465246}}, {"model": "metainfo.source", "pk": 5590, "fields": {"orig_filename": "Reuss_Samuel_1783_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1409576}}, {"model": "metainfo.source", "pk": 5591, "fields": {"orig_filename": "Reuter_Jakob_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99", "author": "", "orig_id": 1407038}}, {"model": "metainfo.source", "pk": 5592, "fields": {"orig_filename": "Reutter-Vallone_Arthur_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99f.", "author": "", "orig_id": 1407190}}, {"model": "metainfo.source", "pk": 5593, "fields": {"orig_filename": "Reutter_Johannes_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99", "author": "", "orig_id": 1407189}}, {"model": "metainfo.source", "pk": 5594, "fields": {"orig_filename": "Revai_Mor-Janos_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100", "author": "", "orig_id": 1407191}}, {"model": "metainfo.source", "pk": 5595, "fields": {"orig_filename": "Revere_Giuseppe_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100", "author": "", "orig_id": 1407192}}, {"model": "metainfo.source", "pk": 5596, "fields": {"orig_filename": "Revesz_Imre_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 101f.", "author": "", "orig_id": 1407194}}, {"model": "metainfo.source", "pk": 5597, "fields": {"orig_filename": "Revesz_Kalman_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102", "author": "", "orig_id": 1407195}}, {"model": "metainfo.source", "pk": 5598, "fields": {"orig_filename": "Reviczky_Gyula_1855_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102", "author": "", "orig_id": 1407196}}, {"model": "metainfo.source", "pk": 5599, "fields": {"orig_filename": "Revoltella_Pasquale_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102f.", "author": "", "orig_id": 1407197}}, {"model": "metainfo.source", "pk": 5600, "fields": {"orig_filename": "Revy_Karl-Julius-Heinrich_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103", "author": "", "orig_id": 1407198}}, {"model": "metainfo.source", "pk": 5601, "fields": {"orig_filename": "Rewakowicz_Henryk_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103", "author": "", "orig_id": 1407199}}, {"model": "metainfo.source", "pk": 5602, "fields": {"orig_filename": "Reyberger_Anton_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104", "author": "", "orig_id": 1407202}}, {"model": "metainfo.source", "pk": 5603, "fields": {"orig_filename": "Reyer-Castagna_Costantino_1828_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 106f.", "author": "", "orig_id": 1407207}}, {"model": "metainfo.source", "pk": 5604, "fields": {"orig_filename": "Reyer_Carlo-Ferdinando_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104", "author": "", "orig_id": 1407203}}, {"model": "metainfo.source", "pk": 5605, "fields": {"orig_filename": "Reyer_Eduard_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104f.", "author": "", "orig_id": 1407204}}, {"model": "metainfo.source", "pk": 5606, "fields": {"orig_filename": "Reyer_Francesco-Taddeo_1760_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 105f.", "author": "", "orig_id": 1407205}}, {"model": "metainfo.source", "pk": 5607, "fields": {"orig_filename": "Reyer_Konstantin-August_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 106", "author": "", "orig_id": 1407206}}, {"model": "metainfo.source", "pk": 5608, "fields": {"orig_filename": "Reyl-Hanisch-Greifenthal_Herbert_1898_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107", "author": "", "orig_id": 1407208}}, {"model": "metainfo.source", "pk": 5609, "fields": {"orig_filename": "Reymond_Moritz_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107", "author": "", "orig_id": 1407209}}, {"model": "metainfo.source", "pk": 5610, "fields": {"orig_filename": "Rey_Mikolaj_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103f.", "author": "", "orig_id": 1407201}}, {"model": "metainfo.source", "pk": 5611, "fields": {"orig_filename": "Rezac_Frantisek-Josef_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107f.", "author": "", "orig_id": 1407210}}, {"model": "metainfo.source", "pk": 5612, "fields": {"orig_filename": "Rezbanyay_Jozsef_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 108", "author": "", "orig_id": 1407211}}, {"model": "metainfo.source", "pk": 5613, "fields": {"orig_filename": "Rezek_Antonin_1853_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 108f.", "author": "", "orig_id": 1407212}}, {"model": "metainfo.source", "pk": 5614, "fields": {"orig_filename": "Rezek_Franz_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 109", "author": "", "orig_id": 1407213}}, {"model": "metainfo.source", "pk": 5615, "fields": {"orig_filename": "Reznicek_Emil-Josef-Nikolaus_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 109f.", "author": "", "orig_id": 1407215}}, {"model": "metainfo.source", "pk": 5616, "fields": {"orig_filename": "Reznicek_Ferdinand_1868_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 110", "author": "", "orig_id": 1407216}}, {"model": "metainfo.source", "pk": 5617, "fields": {"orig_filename": "Reznicek_Josef-Jindrich_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 110f.", "author": "", "orig_id": 1407217}}, {"model": "metainfo.source", "pk": 5618, "fields": {"orig_filename": "Reznicek_Josef-Urban_1851_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111", "author": "", "orig_id": 1407218}}, {"model": "metainfo.source", "pk": 5619, "fields": {"orig_filename": "Reznicek_Vaclav_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111", "author": "", "orig_id": 1407219}}, {"model": "metainfo.source", "pk": 5620, "fields": {"orig_filename": "Rhamm_Karl_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111f.", "author": "", "orig_id": 1407220}}, {"model": "metainfo.source", "pk": 5621, "fields": {"orig_filename": "Rheden_Josef_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 112", "author": "", "orig_id": 1407221}}, {"model": "metainfo.source", "pk": 5622, "fields": {"orig_filename": "Rheinhardt_Emil-Alfons_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 112f.", "author": "", "orig_id": 1407222}}, {"model": "metainfo.source", "pk": 5623, "fields": {"orig_filename": "Rhemen-Barensfeld_Adolf_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 113", "author": "", "orig_id": 1407223}}, {"model": "metainfo.source", "pk": 5624, "fields": {"orig_filename": "Rhodokanakis_Nikolaus_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 113f.", "author": "", "orig_id": 1407224}}, {"model": "metainfo.source", "pk": 5625, "fields": {"orig_filename": "Rhomberg_Adolf_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407225}}, {"model": "metainfo.source", "pk": 5626, "fields": {"orig_filename": "Rhomberg_Franz-Martin_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407226}}, {"model": "metainfo.source", "pk": 5627, "fields": {"orig_filename": "Rhomberg_Hanno_1819_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407227}}, {"model": "metainfo.source", "pk": 5628, "fields": {"orig_filename": "Rhomberg_Johann-Josef_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114f.", "author": "", "orig_id": 1407228}}, {"model": "metainfo.source", "pk": 5629, "fields": {"orig_filename": "Rhomberg_Josef-Anton_1775_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407229}}, {"model": "metainfo.source", "pk": 5630, "fields": {"orig_filename": "Rhomberg_Josef-Anton_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407230}}, {"model": "metainfo.source", "pk": 5631, "fields": {"orig_filename": "Rhomberg_Julius_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407231}}, {"model": "metainfo.source", "pk": 5632, "fields": {"orig_filename": "Rhomberg_Lorenz_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407232}}, {"model": "metainfo.source", "pk": 5633, "fields": {"orig_filename": "Rhomberg_Wilhelm_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407233}}, {"model": "metainfo.source", "pk": 5634, "fields": {"orig_filename": "Ribarz_Rudolf_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407234}}, {"model": "metainfo.source", "pk": 5635, "fields": {"orig_filename": "Riboldi_Agostino-Gaetano_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116f.", "author": "", "orig_id": 1407235}}, {"model": "metainfo.source", "pk": 5636, "fields": {"orig_filename": "Riccabona-Reichenfels_Benedikt_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 117", "author": "", "orig_id": 1407236}}, {"model": "metainfo.source", "pk": 5637, "fields": {"orig_filename": "Riccabona-Reichenfels_Felix-Adam_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 117f.", "author": "", "orig_id": 1407237}}, {"model": "metainfo.source", "pk": 5638, "fields": {"orig_filename": "Riccabona-Reichenfels_Julius_1835_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118", "author": "", "orig_id": 1407238}}, {"model": "metainfo.source", "pk": 5639, "fields": {"orig_filename": "Ricci-Montecorona_Vittore_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 119", "author": "", "orig_id": 1407241}}, {"model": "metainfo.source", "pk": 5640, "fields": {"orig_filename": "Ricci_Federico_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118", "author": "", "orig_id": 1407239}}, {"model": "metainfo.source", "pk": 5641, "fields": {"orig_filename": "Ricci_Luigi_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118f.", "author": "", "orig_id": 1407240}}, {"model": "metainfo.source", "pk": 5642, "fields": {"orig_filename": "Richard_Frieda_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 119f.", "author": "", "orig_id": 1407242}}, {"model": "metainfo.source", "pk": 5643, "fields": {"orig_filename": "Reinelt_Carlo_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 41f.", "author": "", "orig_id": 1407107}}, {"model": "metainfo.source", "pk": 5644, "fields": {"orig_filename": "Reiner_Andreas_1760_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42", "author": "", "orig_id": 1407108}}, {"model": "metainfo.source", "pk": 5645, "fields": {"orig_filename": "Reiner_Johann-Bapt_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42", "author": "", "orig_id": 1407109}}, {"model": "metainfo.source", "pk": 5646, "fields": {"orig_filename": "Reiner_Max_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42f.", "author": "", "orig_id": 1407110}}, {"model": "metainfo.source", "pk": 5647, "fields": {"orig_filename": "Reinhardt_Heinrich_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43", "author": "", "orig_id": 1407111}}, {"model": "metainfo.source", "pk": 5648, "fields": {"orig_filename": "Reinhardt_Heinrich_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43", "author": "", "orig_id": 1409575}}, {"model": "metainfo.source", "pk": 5649, "fields": {"orig_filename": "Reinhardt_Max_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43ff.", "author": "", "orig_id": 1407112}}, {"model": "metainfo.source", "pk": 5650, "fields": {"orig_filename": "Reinhart-Thurnfels-Ferklehen_Ignaz_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407113}}, {"model": "metainfo.source", "pk": 5651, "fields": {"orig_filename": "Reinhart-Thurnfels-Ferklehen_Josef_1745_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407114}}, {"model": "metainfo.source", "pk": 5652, "fields": {"orig_filename": "Reinhold_Franz_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407115}}, {"model": "metainfo.source", "pk": 5653, "fields": {"orig_filename": "Reinhold_Friedrich-Josef_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45f.", "author": "", "orig_id": 1407117}}, {"model": "metainfo.source", "pk": 5654, "fields": {"orig_filename": "Reinhold_Friedrich-Philipp_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407118}}, {"model": "metainfo.source", "pk": 5655, "fields": {"orig_filename": "Reinhold_Friedrich_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407116}}, {"model": "metainfo.source", "pk": 5656, "fields": {"orig_filename": "Reinhold_Josef_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407119}}, {"model": "metainfo.source", "pk": 5657, "fields": {"orig_filename": "Reinhold_Josef_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407120}}, {"model": "metainfo.source", "pk": 5658, "fields": {"orig_filename": "Reinhold_Karl-Leonhard_1758_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 47", "author": "", "orig_id": 1407122}}, {"model": "metainfo.source", "pk": 5659, "fields": {"orig_filename": "Reinhold_Karl_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46f.", "author": "", "orig_id": 1407121}}, {"model": "metainfo.source", "pk": 5660, "fields": {"orig_filename": "Reininger_Franz_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 47f.", "author": "", "orig_id": 1407123}}, {"model": "metainfo.source", "pk": 5661, "fields": {"orig_filename": "Reininger_Heinrich_1860_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48", "author": "", "orig_id": 1407125}}, {"model": "metainfo.source", "pk": 5662, "fields": {"orig_filename": "Reininger_Karl_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48", "author": "", "orig_id": 1407124}}, {"model": "metainfo.source", "pk": 5663, "fields": {"orig_filename": "Reininghaus_Johann-Peter_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48f.", "author": "", "orig_id": 1407126}}, {"model": "metainfo.source", "pk": 5664, "fields": {"orig_filename": "Reinisch_Franz_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 49", "author": "", "orig_id": 1407127}}, {"model": "metainfo.source", "pk": 5665, "fields": {"orig_filename": "Reinisch_Karl-Ludwig_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 49f.", "author": "", "orig_id": 1407128}}, {"model": "metainfo.source", "pk": 5666, "fields": {"orig_filename": "Reinisch_Simon-Leo_1832_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 50f.", "author": "", "orig_id": 1407129}}, {"model": "metainfo.source", "pk": 5667, "fields": {"orig_filename": "Reinitzer_Benjamin_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51", "author": "", "orig_id": 1407130}}, {"model": "metainfo.source", "pk": 5668, "fields": {"orig_filename": "Reinitzer_Friedrich-Richard-Kornelius_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51", "author": "", "orig_id": 1407131}}, {"model": "metainfo.source", "pk": 5669, "fields": {"orig_filename": "Reinlaender_Wilhelm_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51f.", "author": "", "orig_id": 1407132}}, {"model": "metainfo.source", "pk": 5670, "fields": {"orig_filename": "Reinoehl_Rainer_1854_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407133}}, {"model": "metainfo.source", "pk": 5671, "fields": {"orig_filename": "Reinoehl_Wilhelm_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407134}}, {"model": "metainfo.source", "pk": 5672, "fields": {"orig_filename": "Reinold_Ferdinand_1885_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407135}}, {"model": "metainfo.source", "pk": 5673, "fields": {"orig_filename": "Reinsberg_Josef_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52f.", "author": "", "orig_id": 1407136}}, {"model": "metainfo.source", "pk": 5674, "fields": {"orig_filename": "Reinthaler_Johannes_1824_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53", "author": "", "orig_id": 1407137}}, {"model": "metainfo.source", "pk": 5675, "fields": {"orig_filename": "Reinthaler_Marie_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53", "author": "", "orig_id": 1407138}}, {"model": "metainfo.source", "pk": 5676, "fields": {"orig_filename": "Reisacher_Alois_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54", "author": "", "orig_id": 1406967}}, {"model": "metainfo.source", "pk": 5677, "fields": {"orig_filename": "Reischek_Andreas_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 56", "author": "", "orig_id": 1406971}}, {"model": "metainfo.source", "pk": 5678, "fields": {"orig_filename": "Reischer_Thomas_1781_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 56f.", "author": "", "orig_id": 1406973}}, {"model": "metainfo.source", "pk": 5679, "fields": {"orig_filename": "Reischl_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57", "author": "", "orig_id": 1406974}}, {"model": "metainfo.source", "pk": 5680, "fields": {"orig_filename": "Reisch_Emil_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54f.", "author": "", "orig_id": 1406968}}, {"model": "metainfo.source", "pk": 5681, "fields": {"orig_filename": "Reisch_Franz_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 55", "author": "", "orig_id": 1406969}}, {"model": "metainfo.source", "pk": 5682, "fields": {"orig_filename": "Reisch_Richard_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 55f.", "author": "", "orig_id": 1406970}}, {"model": "metainfo.source", "pk": 5683, "fields": {"orig_filename": "Reiser_Fridolin_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57", "author": "", "orig_id": 1406975}}, {"model": "metainfo.source", "pk": 5684, "fields": {"orig_filename": "Reiser_Matthaeus_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57f.", "author": "", "orig_id": 1406976}}, {"model": "metainfo.source", "pk": 5685, "fields": {"orig_filename": "Reiser_Othmar_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406977}}, {"model": "metainfo.source", "pk": 5686, "fields": {"orig_filename": "Reisich_Josef_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406985}}, {"model": "metainfo.source", "pk": 5687, "fields": {"orig_filename": "Reisinger_Franz_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58f.", "author": "", "orig_id": 1406986}}, {"model": "metainfo.source", "pk": 5688, "fields": {"orig_filename": "Reisinger_Leopold_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 59", "author": "", "orig_id": 1406987}}, {"model": "metainfo.source", "pk": 5689, "fields": {"orig_filename": "Reisinger_Wenzel-Julius_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 59f.", "author": "", "orig_id": 1406988}}, {"model": "metainfo.source", "pk": 5690, "fields": {"orig_filename": "Reissacher_Karl_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61", "author": "", "orig_id": 1407042}}, {"model": "metainfo.source", "pk": 5691, "fields": {"orig_filename": "Reissek_Siegfried_1819_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61f.", "author": "", "orig_id": 1407043}}, {"model": "metainfo.source", "pk": 5692, "fields": {"orig_filename": "Reissenberger_Karl-Friedrich_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62", "author": "", "orig_id": 1407044}}, {"model": "metainfo.source", "pk": 5693, "fields": {"orig_filename": "Reissenberger_Ludwig_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62", "author": "", "orig_id": 1407045}}, {"model": "metainfo.source", "pk": 5694, "fields": {"orig_filename": "Reisser_Christoph_1836_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62f.", "author": "", "orig_id": 1407046}}, {"model": "metainfo.source", "pk": 5695, "fields": {"orig_filename": "Reisser_Franz-De-P-Michael_1769_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63", "author": "", "orig_id": 1407047}}, {"model": "metainfo.source", "pk": 5696, "fields": {"orig_filename": "Reiss_Anton_1741_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60", "author": "", "orig_id": 1406989}}, {"model": "metainfo.source", "pk": 5697, "fields": {"orig_filename": "Reiss_Eduard_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60", "author": "", "orig_id": 1407039}}, {"model": "metainfo.source", "pk": 5698, "fields": {"orig_filename": "Reiss_Heinrich_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60f.", "author": "", "orig_id": 1407040}}, {"model": "metainfo.source", "pk": 5699, "fields": {"orig_filename": "Reiss_Wladyslaw_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61", "author": "", "orig_id": 1407041}}, {"model": "metainfo.source", "pk": 5700, "fields": {"orig_filename": "Reis_Isaak_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53f.", "author": "", "orig_id": 1407139}}, {"model": "metainfo.source", "pk": 5701, "fields": {"orig_filename": "Reis_Wiktor-Feliks_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54", "author": "", "orig_id": 1406965}}, {"model": "metainfo.source", "pk": 5702, "fields": {"orig_filename": "Reitenberger_Kaspar-Karl_1779_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63", "author": "", "orig_id": 1407048}}, {"model": "metainfo.source", "pk": 5703, "fields": {"orig_filename": "Reiterer_Ernst_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407056}}, {"model": "metainfo.source", "pk": 5704, "fields": {"orig_filename": "Reiterer_Josef_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407057}}, {"model": "metainfo.source", "pk": 5705, "fields": {"orig_filename": "Reiterer_Karl_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66f.", "author": "", "orig_id": 1407058}}, {"model": "metainfo.source", "pk": 5706, "fields": {"orig_filename": "Reiter_Franz-X_1875_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63f.", "author": "", "orig_id": 1407049}}, {"model": "metainfo.source", "pk": 5707, "fields": {"orig_filename": "Reiter_Johann-Bapt_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 64", "author": "", "orig_id": 1407050}}, {"model": "metainfo.source", "pk": 5708, "fields": {"orig_filename": "Reiter_Johannes-Maria_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 64f.", "author": "", "orig_id": 1407051}}, {"model": "metainfo.source", "pk": 5709, "fields": {"orig_filename": "Reiter_Josef_1805_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65", "author": "", "orig_id": 1407052}}, {"model": "metainfo.source", "pk": 5710, "fields": {"orig_filename": "Reiter_Josef_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65", "author": "", "orig_id": 1407053}}, {"model": "metainfo.source", "pk": 5711, "fields": {"orig_filename": "Reiter_Josef_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65f.", "author": "", "orig_id": 1407054}}, {"model": "metainfo.source", "pk": 5712, "fields": {"orig_filename": "Reiter_Matthaeus-Simon_1750_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407055}}, {"model": "metainfo.source", "pk": 5713, "fields": {"orig_filename": "Reither_Josef_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 67", "author": "", "orig_id": 1407059}}, {"model": "metainfo.source", "pk": 5714, "fields": {"orig_filename": "Reithmann_Christian_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 67f.", "author": "", "orig_id": 1407060}}, {"model": "metainfo.source", "pk": 5715, "fields": {"orig_filename": "Reithmeyer_Karl_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 68", "author": "", "orig_id": 1407061}}, {"model": "metainfo.source", "pk": 5716, "fields": {"orig_filename": "Reithoffer_Johann-Nep_1781_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 68f.", "author": "", "orig_id": 1407062}}, {"model": "metainfo.source", "pk": 5717, "fields": {"orig_filename": "Reitlechner_Gregor_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69", "author": "", "orig_id": 1407063}}, {"model": "metainfo.source", "pk": 5718, "fields": {"orig_filename": "Reitlechner_Karl_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69", "author": "", "orig_id": 1407064}}, {"model": "metainfo.source", "pk": 5719, "fields": {"orig_filename": "Reitler_Josef_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69f.", "author": "", "orig_id": 1407065}}, {"model": "metainfo.source", "pk": 5720, "fields": {"orig_filename": "Reitler_Marzellin-Adalbert_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 70", "author": "", "orig_id": 1407066}}, {"model": "metainfo.source", "pk": 5721, "fields": {"orig_filename": "Reitterer_Franz-X_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71f.", "author": "", "orig_id": 1407070}}, {"model": "metainfo.source", "pk": 5722, "fields": {"orig_filename": "Reitter_Edmund_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 70f.", "author": "", "orig_id": 1407067}}, {"model": "metainfo.source", "pk": 5723, "fields": {"orig_filename": "Reitter_Georg_1898_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71", "author": "", "orig_id": 1407068}}, {"model": "metainfo.source", "pk": 5724, "fields": {"orig_filename": "Reitter_Michael_1781_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71", "author": "", "orig_id": 1407069}}, {"model": "metainfo.source", "pk": 5725, "fields": {"orig_filename": "Reitzenbeck_Heinrich_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 72f.", "author": "", "orig_id": 1407072}}, {"model": "metainfo.source", "pk": 5726, "fields": {"orig_filename": "Reitzes_Sigmund_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407073}}, {"model": "metainfo.source", "pk": 5727, "fields": {"orig_filename": "Reitz_Konstantin_1817_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 72", "author": "", "orig_id": 1407071}}, {"model": "metainfo.source", "pk": 5728, "fields": {"orig_filename": "Reizner_Janos_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407074}}, {"model": "metainfo.source", "pk": 5729, "fields": {"orig_filename": "Rejtoe_Sandor_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407075}}, {"model": "metainfo.source", "pk": 5730, "fields": {"orig_filename": "Rejzek_Anton_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73f.", "author": "", "orig_id": 1407076}}, {"model": "metainfo.source", "pk": 5731, "fields": {"orig_filename": "Rektorzik_Franz-X_1793_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74", "author": "", "orig_id": 1407077}}, {"model": "metainfo.source", "pk": 5732, "fields": {"orig_filename": "Rella_Anton_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74", "author": "", "orig_id": 1407078}}, {"model": "metainfo.source", "pk": 5733, "fields": {"orig_filename": "Rembold_Otto_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74f.", "author": "", "orig_id": 1407079}}, {"model": "metainfo.source", "pk": 5734, "fields": {"orig_filename": "Remenyi_Antal_1825_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75", "author": "", "orig_id": 1407080}}, {"model": "metainfo.source", "pk": 5735, "fields": {"orig_filename": "Remenyi_Ede_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75", "author": "", "orig_id": 1407081}}, {"model": "metainfo.source", "pk": 5736, "fields": {"orig_filename": "Remmark_Karl_1802_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75f.", "author": "", "orig_id": 1407082}}, {"model": "metainfo.source", "pk": 5737, "fields": {"orig_filename": "Remy-Berzenkovich-Szillas_Emil-Otto_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76", "author": "", "orig_id": 1407084}}, {"model": "metainfo.source", "pk": 5738, "fields": {"orig_filename": "Remy-Berzenkovich-Szillas_Ladislaus_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76f.", "author": "", "orig_id": 1407085}}, {"model": "metainfo.source", "pk": 5739, "fields": {"orig_filename": "Remy_Ludwig-Gabriel_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76", "author": "", "orig_id": 1407083}}, {"model": "metainfo.source", "pk": 5740, "fields": {"orig_filename": "Renard_Marie_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77", "author": "", "orig_id": 1407086}}, {"model": "metainfo.source", "pk": 5741, "fields": {"orig_filename": "Rencki_Roman_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77", "author": "", "orig_id": 1407087}}, {"model": "metainfo.source", "pk": 5742, "fields": {"orig_filename": "Rendic_Ivan_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77f.", "author": "", "orig_id": 1407088}}, {"model": "metainfo.source", "pk": 5743, "fields": {"orig_filename": "Renier_Stefano-Andrea_1759_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 78", "author": "", "orig_id": 1407089}}, {"model": "metainfo.source", "pk": 5744, "fields": {"orig_filename": "Renker_Gustav_1889_1967.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1866399}}, {"model": "metainfo.source", "pk": 5745, "fields": {"orig_filename": "Rebel_Hans_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1f.", "author": "", "orig_id": 1406929}}, {"model": "metainfo.source", "pk": 5746, "fields": {"orig_filename": "Rebhann-Aspernbruck_Georg_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 2f.", "author": "", "orig_id": 1406931}}, {"model": "metainfo.source", "pk": 5747, "fields": {"orig_filename": "Rebicek_Josef_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 3", "author": "", "orig_id": 1406932}}, {"model": "metainfo.source", "pk": 5748, "fields": {"orig_filename": "Rechbauer_Karl_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 3f.", "author": "", "orig_id": 1406933}}, {"model": "metainfo.source", "pk": 5749, "fields": {"orig_filename": "Rechberg-Rothenloewen_Johann-Bernhard_1806_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 4f.", "author": "", "orig_id": 1406934}}, {"model": "metainfo.source", "pk": 5750, "fields": {"orig_filename": "Rechberger-Rechkron_Josef_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6", "author": "", "orig_id": 1406938}}, {"model": "metainfo.source", "pk": 5751, "fields": {"orig_filename": "Rechberger_Augustin_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5", "author": "", "orig_id": 1406935}}, {"model": "metainfo.source", "pk": 5752, "fields": {"orig_filename": "Rechberger_Franz_1771_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5", "author": "", "orig_id": 1406936}}, {"model": "metainfo.source", "pk": 5753, "fields": {"orig_filename": "Rechberger_Heinrich_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5f.", "author": "", "orig_id": 1406937}}, {"model": "metainfo.source", "pk": 5754, "fields": {"orig_filename": "Reckendorfer_Ferdinand_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6", "author": "", "orig_id": 1406939}}, {"model": "metainfo.source", "pk": 5755, "fields": {"orig_filename": "Recsei_Viktor_1858_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6f.", "author": "", "orig_id": 1406940}}, {"model": "metainfo.source", "pk": 5756, "fields": {"orig_filename": "Recsy_Emil_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7", "author": "", "orig_id": 1406941}}, {"model": "metainfo.source", "pk": 5757, "fields": {"orig_filename": "Reden_Alexander_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7", "author": "", "orig_id": 1829257}}, {"model": "metainfo.source", "pk": 5758, "fields": {"orig_filename": "Redler_Ferdinand_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8f.", "author": "", "orig_id": 1406946}}, {"model": "metainfo.source", "pk": 5759, "fields": {"orig_filename": "Redler_Karoline-Maria_1883_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9", "author": "", "orig_id": 1406947}}, {"model": "metainfo.source", "pk": 5760, "fields": {"orig_filename": "Redlich-Redensbruck_Otto_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 12f.", "author": "", "orig_id": 1406954}}, {"model": "metainfo.source", "pk": 5761, "fields": {"orig_filename": "Redlich_Emil_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9", "author": "", "orig_id": 1406948}}, {"model": "metainfo.source", "pk": 5762, "fields": {"orig_filename": "Redlich_Friedrich_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9f.", "author": "", "orig_id": 1406949}}, {"model": "metainfo.source", "pk": 5763, "fields": {"orig_filename": "Redlich_Josef_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 10f.", "author": "", "orig_id": 1406950}}, {"model": "metainfo.source", "pk": 5764, "fields": {"orig_filename": "Redlich_Karl-August_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11", "author": "", "orig_id": 1406952}}, {"model": "metainfo.source", "pk": 5765, "fields": {"orig_filename": "Redlich_Karl_1860_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11", "author": "", "orig_id": 1406951}}, {"model": "metainfo.source", "pk": 5766, "fields": {"orig_filename": "Redlich_Oswald_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11f.", "author": "", "orig_id": 1406953}}, {"model": "metainfo.source", "pk": 5767, "fields": {"orig_filename": "Redl_Alfred_1864_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7f.", "author": "", "orig_id": 1406942}}, {"model": "metainfo.source", "pk": 5768, "fields": {"orig_filename": "Redl_Alois_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406943}}, {"model": "metainfo.source", "pk": 5769, "fields": {"orig_filename": "Redl_Johann_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406944}}, {"model": "metainfo.source", "pk": 5770, "fields": {"orig_filename": "Redl_Josef_1774_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406945}}, {"model": "metainfo.source", "pk": 5771, "fields": {"orig_filename": "Redtenbacher_Ferdinand-Jakob_1809_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 13", "author": "", "orig_id": 1406955}}, {"model": "metainfo.source", "pk": 5772, "fields": {"orig_filename": "Redtenbacher_Josef_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 13f.", "author": "", "orig_id": 1406956}}, {"model": "metainfo.source", "pk": 5773, "fields": {"orig_filename": "Redtenbacher_Josef_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14", "author": "", "orig_id": 1406957}}, {"model": "metainfo.source", "pk": 5774, "fields": {"orig_filename": "Redtenbacher_Leo_1845_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14", "author": "", "orig_id": 1406958}}, {"model": "metainfo.source", "pk": 5775, "fields": {"orig_filename": "Redtenbacher_Ludwig_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14f.", "author": "", "orig_id": 1406959}}, {"model": "metainfo.source", "pk": 5776, "fields": {"orig_filename": "Redtenbacher_Simon_1844_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406960}}, {"model": "metainfo.source", "pk": 5777, "fields": {"orig_filename": "Ree_Luis_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406961}}, {"model": "metainfo.source", "pk": 5778, "fields": {"orig_filename": "Regeczi_Josef_1851_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406962}}, {"model": "metainfo.source", "pk": 5779, "fields": {"orig_filename": "Regenhart_Alois_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 16", "author": "", "orig_id": 1406964}}, {"model": "metainfo.source", "pk": 5780, "fields": {"orig_filename": "Regenhart_Alois_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 16f.", "author": "", "orig_id": 1406764}}, {"model": "metainfo.source", "pk": 5781, "fields": {"orig_filename": "Regensdorff_Carlo_1792_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17", "author": "", "orig_id": 1406765}}, {"model": "metainfo.source", "pk": 5782, "fields": {"orig_filename": "Regenspursky-Regeny_Karl_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17", "author": "", "orig_id": 1406766}}, {"model": "metainfo.source", "pk": 5783, "fields": {"orig_filename": "Regen_Johann_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15f.", "author": "", "orig_id": 1406963}}, {"model": "metainfo.source", "pk": 5784, "fields": {"orig_filename": "Reger_Tadeusz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17f.", "author": "", "orig_id": 1406767}}, {"model": "metainfo.source", "pk": 5785, "fields": {"orig_filename": "Reggio_Isacco-Samuele_1784_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 18", "author": "", "orig_id": 1406768}}, {"model": "metainfo.source", "pk": 5786, "fields": {"orig_filename": "Regli_Adalbert_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 18f.", "author": "", "orig_id": 1406769}}, {"model": "metainfo.source", "pk": 5787, "fields": {"orig_filename": "Regner-Bleyleben_Oktavian_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19", "author": "", "orig_id": 1406771}}, {"model": "metainfo.source", "pk": 5788, "fields": {"orig_filename": "Regner_Josef_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19", "author": "", "orig_id": 1406770}}, {"model": "metainfo.source", "pk": 5789, "fields": {"orig_filename": "Reguly_Antal_1819_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19f.", "author": "", "orig_id": 1406772}}, {"model": "metainfo.source", "pk": 5790, "fields": {"orig_filename": "Rehakova_Anna_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21", "author": "", "orig_id": 1406778}}, {"model": "metainfo.source", "pk": 5791, "fields": {"orig_filename": "Rehak_Gejza_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406775}}, {"model": "metainfo.source", "pk": 5792, "fields": {"orig_filename": "Rehak_Jan_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20f.", "author": "", "orig_id": 1406776}}, {"model": "metainfo.source", "pk": 5793, "fields": {"orig_filename": "Rehak_Stanislav_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21", "author": "", "orig_id": 1406777}}, {"model": "metainfo.source", "pk": 5794, "fields": {"orig_filename": "Rehatschek_Anton_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21f.", "author": "", "orig_id": 1406779}}, {"model": "metainfo.source", "pk": 5795, "fields": {"orig_filename": "Rehman_Antoni_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 22", "author": "", "orig_id": 1406780}}, {"model": "metainfo.source", "pk": 5796, "fields": {"orig_filename": "Rehor_Karl_1906_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 22f.", "author": "", "orig_id": 1406781}}, {"model": "metainfo.source", "pk": 5797, "fields": {"orig_filename": "Rehrl_Franz_1890_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23", "author": "", "orig_id": 1406782}}, {"model": "metainfo.source", "pk": 5798, "fields": {"orig_filename": "Rehrl_Kaspar_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23", "author": "", "orig_id": 1406783}}, {"model": "metainfo.source", "pk": 5799, "fields": {"orig_filename": "Reh_Franz_1861_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406773}}, {"model": "metainfo.source", "pk": 5800, "fields": {"orig_filename": "Reh_Karl-Christian_1888_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406774}}, {"model": "metainfo.source", "pk": 5801, "fields": {"orig_filename": "Reibmayr_Albert_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23f.", "author": "", "orig_id": 1406784}}, {"model": "metainfo.source", "pk": 5802, "fields": {"orig_filename": "Reichardt_Alexander_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27f.", "author": "", "orig_id": 1406795}}, {"model": "metainfo.source", "pk": 5803, "fields": {"orig_filename": "Reichardt_Heinrich-Wilhelm_1835_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 28", "author": "", "orig_id": 1406796}}, {"model": "metainfo.source", "pk": 5804, "fields": {"orig_filename": "Reicha_Anton-Josef_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27", "author": "", "orig_id": 1406794}}, {"model": "metainfo.source", "pk": 5805, "fields": {"orig_filename": "Reichelt_Johann_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 30f.", "author": "", "orig_id": 1406802}}, {"model": "metainfo.source", "pk": 5806, "fields": {"orig_filename": "Reichel_Anton_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 28f.", "author": "", "orig_id": 1406797}}, {"model": "metainfo.source", "pk": 5807, "fields": {"orig_filename": "Reichel_Heinrich_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29", "author": "", "orig_id": 1406798}}, {"model": "metainfo.source", "pk": 5808, "fields": {"orig_filename": "Reichel_Josef_1819_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29", "author": "", "orig_id": 1406799}}, {"model": "metainfo.source", "pk": 5809, "fields": {"orig_filename": "Reichel_Wolfgang_1858_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 30", "author": "", "orig_id": 1406801}}, {"model": "metainfo.source", "pk": 5810, "fields": {"orig_filename": "Reichenbach_Karl-Ludwig_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31", "author": "", "orig_id": 1406803}}, {"model": "metainfo.source", "pk": 5811, "fields": {"orig_filename": "Reichenberger_Hugo_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 32", "author": "", "orig_id": 1406806}}, {"model": "metainfo.source", "pk": 5812, "fields": {"orig_filename": "Reichenberg_Franz_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31", "author": "", "orig_id": 1406804}}, {"model": "metainfo.source", "pk": 5813, "fields": {"orig_filename": "Reichert_Adam_1853_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406809}}, {"model": "metainfo.source", "pk": 5814, "fields": {"orig_filename": "Reichert_Heinrich_1801_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406810}}, {"model": "metainfo.source", "pk": 5815, "fields": {"orig_filename": "Reichert_Heinz_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33f.", "author": "", "orig_id": 1406811}}, {"model": "metainfo.source", "pk": 5816, "fields": {"orig_filename": "Reichert_Karl-Friedrich-Wilhelm_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 34f.", "author": "", "orig_id": 1406813}}, {"model": "metainfo.source", "pk": 5817, "fields": {"orig_filename": "Reichert_Karl_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 34", "author": "", "orig_id": 1406812}}, {"model": "metainfo.source", "pk": 5818, "fields": {"orig_filename": "Reichert_Vaclav_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35", "author": "", "orig_id": 1406814}}, {"model": "metainfo.source", "pk": 5819, "fields": {"orig_filename": "Reicher_Emanuel_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 32f.", "author": "", "orig_id": 1406807}}, {"model": "metainfo.source", "pk": 5820, "fields": {"orig_filename": "Reicher_Heinrich_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406808}}, {"model": "metainfo.source", "pk": 5821, "fields": {"orig_filename": "Reichhart_Gottfried_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35", "author": "", "orig_id": 1406815}}, {"model": "metainfo.source", "pk": 5822, "fields": {"orig_filename": "Reichlin-Meldegg_Wilhelm_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36", "author": "", "orig_id": 1407092}}, {"model": "metainfo.source", "pk": 5823, "fields": {"orig_filename": "Reichl_Josef_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35f.", "author": "", "orig_id": 1407090}}, {"model": "metainfo.source", "pk": 5824, "fields": {"orig_filename": "Reichl_Josef_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36", "author": "", "orig_id": 1407091}}, {"model": "metainfo.source", "pk": 5825, "fields": {"orig_filename": "Reichmann_Theodor_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36f.", "author": "", "orig_id": 1407093}}, {"model": "metainfo.source", "pk": 5826, "fields": {"orig_filename": "Reichstadt_Napoleon-Franz-Karl_1811_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 37", "author": "", "orig_id": 1407094}}, {"model": "metainfo.source", "pk": 5827, "fields": {"orig_filename": "Reichwein_Leopold_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 37f.", "author": "", "orig_id": 1407095}}, {"model": "metainfo.source", "pk": 5828, "fields": {"orig_filename": "Reich_Eduard_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 24", "author": "", "orig_id": 1406785}}, {"model": "metainfo.source", "pk": 5829, "fields": {"orig_filename": "Reich_Emil_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 24f.", "author": "", "orig_id": 1406786}}, {"model": "metainfo.source", "pk": 5830, "fields": {"orig_filename": "Reich_Ignac_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25", "author": "", "orig_id": 1406787}}, {"model": "metainfo.source", "pk": 5831, "fields": {"orig_filename": "Reich_Jakob_1838_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25", "author": "", "orig_id": 1406788}}, {"model": "metainfo.source", "pk": 5832, "fields": {"orig_filename": "Reich_Leon_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25f.", "author": "", "orig_id": 1406789}}, {"model": "metainfo.source", "pk": 5833, "fields": {"orig_filename": "Reich_Max_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26", "author": "", "orig_id": 1406791}}, {"model": "metainfo.source", "pk": 5834, "fields": {"orig_filename": "Reich_Moritz_1831_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26", "author": "", "orig_id": 1406792}}, {"model": "metainfo.source", "pk": 5835, "fields": {"orig_filename": "Reich_Theodor_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26f.", "author": "", "orig_id": 1406793}}, {"model": "metainfo.source", "pk": 5836, "fields": {"orig_filename": "Reider_Simon_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407096}}, {"model": "metainfo.source", "pk": 5837, "fields": {"orig_filename": "Reidinger_Anton_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407097}}, {"model": "metainfo.source", "pk": 5838, "fields": {"orig_filename": "Reiffenstein_Gottlieb-Benjamin_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407098}}, {"model": "metainfo.source", "pk": 5839, "fields": {"orig_filename": "Reifner_Vinzenz_1878_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38f.", "author": "", "orig_id": 1407099}}, {"model": "metainfo.source", "pk": 5840, "fields": {"orig_filename": "Reifschneider_Konrad_1909_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39", "author": "", "orig_id": 1407100}}, {"model": "metainfo.source", "pk": 5841, "fields": {"orig_filename": "Reilly_Franz-Johann-Josef_1766_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39f.", "author": "", "orig_id": 1407102}}, {"model": "metainfo.source", "pk": 5842, "fields": {"orig_filename": "Reil_Johann-Anton-Friedrich_1773_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39", "author": "", "orig_id": 1407101}}, {"model": "metainfo.source", "pk": 5843, "fields": {"orig_filename": "Reimann_Martin_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40", "author": "", "orig_id": 1407104}}, {"model": "metainfo.source", "pk": 5844, "fields": {"orig_filename": "Reimers_Georg_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40f.", "author": "", "orig_id": 1407105}}, {"model": "metainfo.source", "pk": 5845, "fields": {"orig_filename": "Reim_Johann-Vinzenz_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40", "author": "", "orig_id": 1407103}}, {"model": "metainfo.source", "pk": 5846, "fields": {"orig_filename": "Reindl_Johann-Bapt_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 41", "author": "", "orig_id": 1407106}}, {"model": "metainfo.source", "pk": 5847, "fields": {"orig_filename": "Randa_Antonin_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 410f.", "author": "", "orig_id": 1410085}}, {"model": "metainfo.source", "pk": 5848, "fields": {"orig_filename": "Randegger_Alberto-Iginio_1880_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412", "author": "", "orig_id": 1410088}}, {"model": "metainfo.source", "pk": 5849, "fields": {"orig_filename": "Randegger_Alberto_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411f.", "author": "", "orig_id": 1410087}}, {"model": "metainfo.source", "pk": 5850, "fields": {"orig_filename": "Randegger_Mayer_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412", "author": "", "orig_id": 1410089}}, {"model": "metainfo.source", "pk": 5851, "fields": {"orig_filename": "Randhartinger_Benedikt_1802_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412f.", "author": "", "orig_id": 1410090}}, {"model": "metainfo.source", "pk": 5852, "fields": {"orig_filename": "Randolf_Josef_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413", "author": "", "orig_id": 1410091}}, {"model": "metainfo.source", "pk": 5853, "fields": {"orig_filename": "Ranftl_Johann-Ev_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413", "author": "", "orig_id": 1410092}}, {"model": "metainfo.source", "pk": 5854, "fields": {"orig_filename": "Ranftl_Matthias-Johann_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413f.", "author": "", "orig_id": 1410093}}, {"model": "metainfo.source", "pk": 5855, "fields": {"orig_filename": "Ranggetiner_Christian_1833_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 414", "author": "", "orig_id": 1410094}}, {"model": "metainfo.source", "pk": 5856, "fields": {"orig_filename": "Rankl_Richard_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416", "author": "", "orig_id": 1410099}}, {"model": "metainfo.source", "pk": 5857, "fields": {"orig_filename": "Rank_Josef_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 414f.", "author": "", "orig_id": 1410096}}, {"model": "metainfo.source", "pk": 5858, "fields": {"orig_filename": "Rank_Josef_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 415", "author": "", "orig_id": 1410097}}, {"model": "metainfo.source", "pk": 5859, "fields": {"orig_filename": "Rank_Otto_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 415f.", "author": "", "orig_id": 1410098}}, {"model": "metainfo.source", "pk": 5860, "fields": {"orig_filename": "Rannicher_Jakob_1823_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416", "author": "", "orig_id": 1410174}}, {"model": "metainfo.source", "pk": 5861, "fields": {"orig_filename": "Ranolder_Janos_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416f.", "author": "", "orig_id": 1410175}}, {"model": "metainfo.source", "pk": 5862, "fields": {"orig_filename": "Ransonnet-Villez_Eugen_1838_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417", "author": "", "orig_id": 1410176}}, {"model": "metainfo.source", "pk": 5863, "fields": {"orig_filename": "Ranzenberger_Hugo_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417", "author": "", "orig_id": 1410177}}, {"model": "metainfo.source", "pk": 5864, "fields": {"orig_filename": "Ranzenhofer_Adolf_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417f.", "author": "", "orig_id": 1410178}}, {"model": "metainfo.source", "pk": 5865, "fields": {"orig_filename": "Ranzi_Egon_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 418", "author": "", "orig_id": 1410179}}, {"model": "metainfo.source", "pk": 5866, "fields": {"orig_filename": "Ranzoni_Emerich_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 418f.", "author": "", "orig_id": 1410180}}, {"model": "metainfo.source", "pk": 5867, "fields": {"orig_filename": "Ranzoni_Gustav_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 419", "author": "", "orig_id": 1410181}}, {"model": "metainfo.source", "pk": 5868, "fields": {"orig_filename": "Rapaics_Raimund_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 419f.", "author": "", "orig_id": 1410182}}, {"model": "metainfo.source", "pk": 5869, "fields": {"orig_filename": "Rapoc_Fran_1842_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420", "author": "", "orig_id": 1410183}}, {"model": "metainfo.source", "pk": 5870, "fields": {"orig_filename": "Rapoldi_Martin_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420", "author": "", "orig_id": 1410184}}, {"model": "metainfo.source", "pk": 5871, "fields": {"orig_filename": "Rapoport-Porada_Arnold-Chaim_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 422f.", "author": "", "orig_id": 1410190}}, {"model": "metainfo.source", "pk": 5872, "fields": {"orig_filename": "Rapoport_Benjamin-Zeeb-Wolf-Hakohen_1754_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420f.", "author": "", "orig_id": 1410185}}, {"model": "metainfo.source", "pk": 5873, "fields": {"orig_filename": "Rapoport_Mordche-W_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421", "author": "", "orig_id": 1410186}}, {"model": "metainfo.source", "pk": 5874, "fields": {"orig_filename": "Rapoport_Moriz_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421", "author": "", "orig_id": 1410187}}, {"model": "metainfo.source", "pk": 5875, "fields": {"orig_filename": "Rapoport_Salomon-Juda-Loeb_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421f.", "author": "", "orig_id": 1410188}}, {"model": "metainfo.source", "pk": 5876, "fields": {"orig_filename": "Rapoport_Samuel_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 422", "author": "", "orig_id": 1410189}}, {"model": "metainfo.source", "pk": 5877, "fields": {"orig_filename": "Rapp-Heidenburg_Franz_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424", "author": "", "orig_id": 1410194}}, {"model": "metainfo.source", "pk": 5878, "fields": {"orig_filename": "Rappel_Jakob_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424", "author": "", "orig_id": 1410195}}, {"model": "metainfo.source", "pk": 5879, "fields": {"orig_filename": "Rappoldi_Eduard_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425", "author": "", "orig_id": 1410197}}, {"model": "metainfo.source", "pk": 5880, "fields": {"orig_filename": "Rappoldi_Laura_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425", "author": "", "orig_id": 1410198}}, {"model": "metainfo.source", "pk": 5881, "fields": {"orig_filename": "Rappold_Ferdinand_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424f.", "author": "", "orig_id": 1410196}}, {"model": "metainfo.source", "pk": 5882, "fields": {"orig_filename": "Rapp_Johann_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423", "author": "", "orig_id": 1410191}}, {"model": "metainfo.source", "pk": 5883, "fields": {"orig_filename": "Rapp_Josef_1780_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423", "author": "", "orig_id": 1410192}}, {"model": "metainfo.source", "pk": 5884, "fields": {"orig_filename": "Rapp_Ludwig_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423f.", "author": "", "orig_id": 1410193}}, {"model": "metainfo.source", "pk": 5885, "fields": {"orig_filename": "Raschke_Hermann_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425f.", "author": "", "orig_id": 1410273}}, {"model": "metainfo.source", "pk": 5886, "fields": {"orig_filename": "Raschke_Rudolf_1923_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426", "author": "", "orig_id": 1410274}}, {"model": "metainfo.source", "pk": 5887, "fields": {"orig_filename": "Rasim_Otto_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426", "author": "", "orig_id": 1410275}}, {"model": "metainfo.source", "pk": 5888, "fields": {"orig_filename": "Rasin_Alois_1867_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426f.", "author": "", "orig_id": 1410276}}, {"model": "metainfo.source", "pk": 5889, "fields": {"orig_filename": "Raskaj_Slava_1877_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 427", "author": "", "orig_id": 1410277}}, {"model": "metainfo.source", "pk": 5890, "fields": {"orig_filename": "Rastic_Daniel_1794_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410280}}, {"model": "metainfo.source", "pk": 5891, "fields": {"orig_filename": "Rast_August_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 427f.", "author": "", "orig_id": 1410278}}, {"model": "metainfo.source", "pk": 5892, "fields": {"orig_filename": "Rast_Ferdinand-Gregor_1808_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410279}}, {"model": "metainfo.source", "pk": 5893, "fields": {"orig_filename": "Rataj_Jan_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428f.", "author": "", "orig_id": 1410284}}, {"model": "metainfo.source", "pk": 5894, "fields": {"orig_filename": "Rataj_Maciej_1884_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429", "author": "", "orig_id": 1410285}}, {"model": "metainfo.source", "pk": 5895, "fields": {"orig_filename": "Rathausky_Johann_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431f.", "author": "", "orig_id": 1410293}}, {"model": "metainfo.source", "pk": 5896, "fields": {"orig_filename": "Rathay_Emerich_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 432", "author": "", "orig_id": 1410294}}, {"model": "metainfo.source", "pk": 5897, "fields": {"orig_filename": "Rathner_Wilhelmine_1863_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 432", "author": "", "orig_id": 1410295}}, {"model": "metainfo.source", "pk": 5898, "fields": {"orig_filename": "Rathofer_Augustin_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410296}}, {"model": "metainfo.source", "pk": 5899, "fields": {"orig_filename": "Rath_Gyoergy_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429", "author": "", "orig_id": 1410286}}, {"model": "metainfo.source", "pk": 5900, "fields": {"orig_filename": "Rath_Heinrich_1792_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429f.", "author": "", "orig_id": 1410287}}, {"model": "metainfo.source", "pk": 5901, "fields": {"orig_filename": "Rath_Josef_1772_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410288}}, {"model": "metainfo.source", "pk": 5902, "fields": {"orig_filename": "Rath_Karoly_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410289}}, {"model": "metainfo.source", "pk": 5903, "fields": {"orig_filename": "Rath_Karoly_1829_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410290}}, {"model": "metainfo.source", "pk": 5904, "fields": {"orig_filename": "Rath_Mor_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431", "author": "", "orig_id": 1410291}}, {"model": "metainfo.source", "pk": 5905, "fields": {"orig_filename": "Rath_Zoltan_1863_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431", "author": "", "orig_id": 1410292}}, {"model": "metainfo.source", "pk": 5906, "fields": {"orig_filename": "Ratini_Luigi_1880_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410297}}, {"model": "metainfo.source", "pk": 5907, "fields": {"orig_filename": "Ratiu_Ioan_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410373}}, {"model": "metainfo.source", "pk": 5908, "fields": {"orig_filename": "Ratzenberger_Franz_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434", "author": "", "orig_id": 1410376}}, {"model": "metainfo.source", "pk": 5909, "fields": {"orig_filename": "Ratzenhofer_Gustav_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434f.", "author": "", "orig_id": 1410377}}, {"model": "metainfo.source", "pk": 5910, "fields": {"orig_filename": "Ratz_Alfred_1882_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433f.", "author": "", "orig_id": 1410374}}, {"model": "metainfo.source", "pk": 5911, "fields": {"orig_filename": "Ratz_Johann-Kaspar_1786_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434", "author": "", "orig_id": 1410375}}, {"model": "metainfo.source", "pk": 5912, "fields": {"orig_filename": "Rat_Gherasim_1793_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410282}}, {"model": "metainfo.source", "pk": 5913, "fields": {"orig_filename": "Rauber_Eugen-Siegfried_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 435", "author": "", "orig_id": 1410378}}, {"model": "metainfo.source", "pk": 5914, "fields": {"orig_filename": "Rauchberg_Heinrich_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437f.", "author": "", "orig_id": 1410385}}, {"model": "metainfo.source", "pk": 5915, "fields": {"orig_filename": "Rauchinger_Heinrich_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438", "author": "", "orig_id": 1410386}}, {"model": "metainfo.source", "pk": 5916, "fields": {"orig_filename": "Rauch_Anton_1801_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 435", "author": "", "orig_id": 1410379}}, {"model": "metainfo.source", "pk": 5917, "fields": {"orig_filename": "Rauch_Felizian_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436", "author": "", "orig_id": 1410380}}, {"model": "metainfo.source", "pk": 5918, "fields": {"orig_filename": "Rauch_Johann_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436", "author": "", "orig_id": 1410381}}, {"model": "metainfo.source", "pk": 5919, "fields": {"orig_filename": "Rauch_Josef_1765_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436f.", "author": "", "orig_id": 1410382}}, {"model": "metainfo.source", "pk": 5920, "fields": {"orig_filename": "Rauch_Levin_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437", "author": "", "orig_id": 1410383}}, {"model": "metainfo.source", "pk": 5921, "fields": {"orig_filename": "Rauch_Pavao_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437", "author": "", "orig_id": 1410384}}, {"model": "metainfo.source", "pk": 5922, "fields": {"orig_filename": "Rauhofer_Josef_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438f.", "author": "", "orig_id": 1410388}}, {"model": "metainfo.source", "pk": 5923, "fields": {"orig_filename": "Rauh_Johann_1803_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438", "author": "", "orig_id": 1410387}}, {"model": "metainfo.source", "pk": 5924, "fields": {"orig_filename": "Raunegger_Ferdinand_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 439", "author": "", "orig_id": 1410389}}, {"model": "metainfo.source", "pk": 5925, "fields": {"orig_filename": "Raunicher_Matteo_1776_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 439f.", "author": "", "orig_id": 1410390}}, {"model": "metainfo.source", "pk": 5926, "fields": {"orig_filename": "Raupenstrauch_Gustav-Adolf_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 440", "author": "", "orig_id": 1410391}}, {"model": "metainfo.source", "pk": 5927, "fields": {"orig_filename": "Rausar_Josef-Zdenek_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 440f.", "author": "", "orig_id": 1410392}}, {"model": "metainfo.source", "pk": 5928, "fields": {"orig_filename": "Rausch-Traubenberg_Franz_1743_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441", "author": "", "orig_id": 1410394}}, {"model": "metainfo.source", "pk": 5929, "fields": {"orig_filename": "Rauscher-Stainberg_Ernst_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443f.", "author": "", "orig_id": 1410470}}, {"model": "metainfo.source", "pk": 5930, "fields": {"orig_filename": "Rauscher_Jakob_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441f.", "author": "", "orig_id": 1410395}}, {"model": "metainfo.source", "pk": 5931, "fields": {"orig_filename": "Rauscher_Josef-Othmar_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 442f.", "author": "", "orig_id": 1410467}}, {"model": "metainfo.source", "pk": 5932, "fields": {"orig_filename": "Rauscher_Michael_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443", "author": "", "orig_id": 1410468}}, {"model": "metainfo.source", "pk": 5933, "fields": {"orig_filename": "Rauscher_Robert_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443", "author": "", "orig_id": 1410469}}, {"model": "metainfo.source", "pk": 5934, "fields": {"orig_filename": "Rausch_Karl_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441", "author": "", "orig_id": 1410393}}, {"model": "metainfo.source", "pk": 5935, "fields": {"orig_filename": "Rautenkranz_Josef-Frantisek-Miloslav_1776_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 444", "author": "", "orig_id": 1410471}}, {"model": "metainfo.source", "pk": 5936, "fields": {"orig_filename": "Rauter_Johann-Bapt-Albin_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 444f.", "author": "", "orig_id": 1410472}}, {"model": "metainfo.source", "pk": 5937, "fields": {"orig_filename": "Ravnikar_Matevz_1802_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445", "author": "", "orig_id": 1410473}}, {"model": "metainfo.source", "pk": 5938, "fields": {"orig_filename": "Raymann_Adolf_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446", "author": "", "orig_id": 1410476}}, {"model": "metainfo.source", "pk": 5939, "fields": {"orig_filename": "Rayman_Bohuslav_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445f.", "author": "", "orig_id": 1410475}}, {"model": "metainfo.source", "pk": 5940, "fields": {"orig_filename": "Ray_Pietro_1773_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445", "author": "", "orig_id": 1410474}}, {"model": "metainfo.source", "pk": 5941, "fields": {"orig_filename": "Razga_Pal_1798_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446f.", "author": "", "orig_id": 1410478}}, {"model": "metainfo.source", "pk": 5942, "fields": {"orig_filename": "Razlag_Radoslav-Jakob_1826_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 447", "author": "", "orig_id": 1410479}}, {"model": "metainfo.source", "pk": 5943, "fields": {"orig_filename": "Razumovsky_Andreas_1752_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 447f.", "author": "", "orig_id": 1410480}}, {"model": "metainfo.source", "pk": 5944, "fields": {"orig_filename": "Razumovsky_Gregor_1759_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 448", "author": "", "orig_id": 1410481}}, {"model": "metainfo.source", "pk": 5945, "fields": {"orig_filename": "Razun_Matej_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 448", "author": "", "orig_id": 1410482}}, {"model": "metainfo.source", "pk": 5946, "fields": {"orig_filename": "Razus_Martin_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1", "author": "", "orig_id": 1406927}}, {"model": "metainfo.source", "pk": 5947, "fields": {"orig_filename": "Raz_Arnost_1884_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446", "author": "", "orig_id": 1410477}}, {"model": "metainfo.source", "pk": 5948, "fields": {"orig_filename": "Reali_Giuseppe-Maria_1799_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1", "author": "", "orig_id": 1406928}}, {"model": "metainfo.source", "pk": 5949, "fields": {"orig_filename": "Rebell_Josef_1787_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 2", "author": "", "orig_id": 1406930}}, {"model": "metainfo.source", "pk": 5950, "fields": {"orig_filename": "Raday-Rada_Gedeon_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369", "author": "", "orig_id": 1409705}}, {"model": "metainfo.source", "pk": 5951, "fields": {"orig_filename": "Raday-Rada_Gedeon_1841_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369", "author": "", "orig_id": 1409706}}, {"model": "metainfo.source", "pk": 5952, "fields": {"orig_filename": "Radek_Karl-Bernhardovic_1885_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369f.", "author": "", "orig_id": 1409707}}, {"model": "metainfo.source", "pk": 5953, "fields": {"orig_filename": "Rademacher_Paul_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 370", "author": "", "orig_id": 1409708}}, {"model": "metainfo.source", "pk": 5954, "fields": {"orig_filename": "Radetzky-Radetz_Johann-Josef-Wenzel_1766_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 370f.", "author": "", "orig_id": 1409709}}, {"model": "metainfo.source", "pk": 5955, "fields": {"orig_filename": "Radicevic_Bozidar_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 373f.", "author": "", "orig_id": 1409713}}, {"model": "metainfo.source", "pk": 5956, "fields": {"orig_filename": "Radicevic_Branko_1824_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374", "author": "", "orig_id": 1409714}}, {"model": "metainfo.source", "pk": 5957, "fields": {"orig_filename": "Radics_Peter-Paul_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374", "author": "", "orig_id": 1409715}}, {"model": "metainfo.source", "pk": 5958, "fields": {"orig_filename": "Radic_Antun_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 372", "author": "", "orig_id": 1409711}}, {"model": "metainfo.source", "pk": 5959, "fields": {"orig_filename": "Radic_Stjepan_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 372f.", "author": "", "orig_id": 1409712}}, {"model": "metainfo.source", "pk": 5960, "fields": {"orig_filename": "Radimsky_Vaclav_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374f.", "author": "", "orig_id": 1409716}}, {"model": "metainfo.source", "pk": 5961, "fields": {"orig_filename": "Radimsky_Vaclav_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375", "author": "", "orig_id": 1409717}}, {"model": "metainfo.source", "pk": 5962, "fields": {"orig_filename": "Radimsky_Wenzel_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375", "author": "", "orig_id": 1409718}}, {"model": "metainfo.source", "pk": 5963, "fields": {"orig_filename": "Radinger-Radinghofen_Karl_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 376f.", "author": "", "orig_id": 1409720}}, {"model": "metainfo.source", "pk": 5964, "fields": {"orig_filename": "Radinger_Johann_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375f.", "author": "", "orig_id": 1409719}}, {"model": "metainfo.source", "pk": 5965, "fields": {"orig_filename": "Radivojevich_Paul_1759_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377", "author": "", "orig_id": 1409721}}, {"model": "metainfo.source", "pk": 5966, "fields": {"orig_filename": "Radi_Lorenzo_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 371f.", "author": "", "orig_id": 1409710}}, {"model": "metainfo.source", "pk": 5967, "fields": {"orig_filename": "Radler_Friedrich-Johann_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 378f.", "author": "", "orig_id": 1409795}}, {"model": "metainfo.source", "pk": 5968, "fields": {"orig_filename": "Radlinsky_Andrej-Ludovit_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 379", "author": "", "orig_id": 1409796}}, {"model": "metainfo.source", "pk": 5969, "fields": {"orig_filename": "Radl_Anton_1774_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377", "author": "", "orig_id": 1409722}}, {"model": "metainfo.source", "pk": 5970, "fields": {"orig_filename": "Radl_Emanuel_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377f.", "author": "", "orig_id": 1409723}}, {"model": "metainfo.source", "pk": 5971, "fields": {"orig_filename": "Radnitzky_August_1810_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 379", "author": "", "orig_id": 1409797}}, {"model": "metainfo.source", "pk": 5972, "fields": {"orig_filename": "Radnitzky_Franz_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409798}}, {"model": "metainfo.source", "pk": 5973, "fields": {"orig_filename": "Radnitzky_Karl_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409799}}, {"model": "metainfo.source", "pk": 5974, "fields": {"orig_filename": "Rado-Hilgermann_Laura_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380f.", "author": "", "orig_id": 1409801}}, {"model": "metainfo.source", "pk": 5975, "fields": {"orig_filename": "Rado-Szent-Martony_Gedeon_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381", "author": "", "orig_id": 1409802}}, {"model": "metainfo.source", "pk": 5976, "fields": {"orig_filename": "Rados_Gusztav_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381", "author": "", "orig_id": 1409803}}, {"model": "metainfo.source", "pk": 5977, "fields": {"orig_filename": "Rado_Antal_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409800}}, {"model": "metainfo.source", "pk": 5978, "fields": {"orig_filename": "Radvanszky-Radvany-Sajokaza_Bela_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381f.", "author": "", "orig_id": 1409804}}, {"model": "metainfo.source", "pk": 5979, "fields": {"orig_filename": "Radwanski_Feliks-Pius_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 382f.", "author": "", "orig_id": 1409806}}, {"model": "metainfo.source", "pk": 5980, "fields": {"orig_filename": "Radwanski_Feliks_1789_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 382", "author": "", "orig_id": 1409805}}, {"model": "metainfo.source", "pk": 5981, "fields": {"orig_filename": "Radzikowski-Eljasz_Jan-Kanty-Walery_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 383", "author": "", "orig_id": 1409807}}, {"model": "metainfo.source", "pk": 5982, "fields": {"orig_filename": "Radzikowski-Eljasz_Stanislaw-Wojciech_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 383f.", "author": "", "orig_id": 1409808}}, {"model": "metainfo.source", "pk": 5983, "fields": {"orig_filename": "Radziminski-Luba_Zygmunt_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 384", "author": "", "orig_id": 1409809}}, {"model": "metainfo.source", "pk": 5984, "fields": {"orig_filename": "Radziszewski_Bronislaw_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 384", "author": "", "orig_id": 1409810}}, {"model": "metainfo.source", "pk": 5985, "fields": {"orig_filename": "Radziwonski_Jan_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409811}}, {"model": "metainfo.source", "pk": 5986, "fields": {"orig_filename": "Rad_Jakob-Christof_1799_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 366f.", "author": "", "orig_id": 1409633}}, {"model": "metainfo.source", "pk": 5987, "fields": {"orig_filename": "Raedler_Karl-Robert_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409812}}, {"model": "metainfo.source", "pk": 5988, "fields": {"orig_filename": "Raedlhammer_Karl_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409813}}, {"model": "metainfo.source", "pk": 5989, "fields": {"orig_filename": "Raevskij_Michail-Fedorovic_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385f.", "author": "", "orig_id": 1409814}}, {"model": "metainfo.source", "pk": 5990, "fields": {"orig_filename": "Rafacz_Jozef_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 386", "author": "", "orig_id": 1409815}}, {"model": "metainfo.source", "pk": 5991, "fields": {"orig_filename": "Rafael_Franz-X_1816_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 386f.", "author": "", "orig_id": 1409816}}, {"model": "metainfo.source", "pk": 5992, "fields": {"orig_filename": "Rafes_Moses_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387", "author": "", "orig_id": 1409817}}, {"model": "metainfo.source", "pk": 5993, "fields": {"orig_filename": "Raffalt_Ignaz_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387", "author": "", "orig_id": 1409886}}, {"model": "metainfo.source", "pk": 5994, "fields": {"orig_filename": "Raffalt_Johann-Gualbert_1836_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387f.", "author": "", "orig_id": 1409887}}, {"model": "metainfo.source", "pk": 5995, "fields": {"orig_filename": "Raffay_Leopold_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388", "author": "", "orig_id": 1409888}}, {"model": "metainfo.source", "pk": 5996, "fields": {"orig_filename": "Raffay_Sandor_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388", "author": "", "orig_id": 1409745}}, {"model": "metainfo.source", "pk": 5997, "fields": {"orig_filename": "Raffeiner_Emanuel_1881_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388f.", "author": "", "orig_id": 1409889}}, {"model": "metainfo.source", "pk": 5998, "fields": {"orig_filename": "Raffeiner_Johann-Stefan_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 389", "author": "", "orig_id": 1409890}}, {"model": "metainfo.source", "pk": 5999, "fields": {"orig_filename": "Raffelsberger_Franz_1793_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 389f.", "author": "", "orig_id": 1409891}}, {"model": "metainfo.source", "pk": 6000, "fields": {"orig_filename": "Raffl_Franz_1775_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390", "author": "", "orig_id": 1409892}}, {"model": "metainfo.source", "pk": 6001, "fields": {"orig_filename": "Raffl_Johannes_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390", "author": "", "orig_id": 1409893}}, {"model": "metainfo.source", "pk": 6002, "fields": {"orig_filename": "Rahl_Karl-Heinrich_1779_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409895}}, {"model": "metainfo.source", "pk": 6003, "fields": {"orig_filename": "Rahl_Karl_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390f.", "author": "", "orig_id": 1409894}}, {"model": "metainfo.source", "pk": 6004, "fields": {"orig_filename": "Raicevich_Massimiliano-Roberto_1878_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409897}}, {"model": "metainfo.source", "pk": 6005, "fields": {"orig_filename": "Raic_Bozidar_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409896}}, {"model": "metainfo.source", "pk": 6006, "fields": {"orig_filename": "Raimann_Emil_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409898}}, {"model": "metainfo.source", "pk": 6007, "fields": {"orig_filename": "Raimann_Franz_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409899}}, {"model": "metainfo.source", "pk": 6008, "fields": {"orig_filename": "Raimann_Johann-Nep_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409900}}, {"model": "metainfo.source", "pk": 6009, "fields": {"orig_filename": "Raimann_Rudolf_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392f.", "author": "", "orig_id": 1409901}}, {"model": "metainfo.source", "pk": 6010, "fields": {"orig_filename": "Raimondi_Antonio_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 393", "author": "", "orig_id": 1409902}}, {"model": "metainfo.source", "pk": 6011, "fields": {"orig_filename": "Raimondi_Lorenz_1752_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 393f.", "author": "", "orig_id": 1409903}}, {"model": "metainfo.source", "pk": 6012, "fields": {"orig_filename": "Raimund_Ferdinand_1790_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 394f.", "author": "", "orig_id": 1409904}}, {"model": "metainfo.source", "pk": 6013, "fields": {"orig_filename": "Rainer-Ferdinand___1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 395f.", "author": "", "orig_id": 1409905}}, {"model": "metainfo.source", "pk": 6014, "fields": {"orig_filename": "Rainer-Harbach_Hans_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398f.", "author": "", "orig_id": 1409982}}, {"model": "metainfo.source", "pk": 6015, "fields": {"orig_filename": "Rainer-Josef___1783_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 396", "author": "", "orig_id": 1409906}}, {"model": "metainfo.source", "pk": 6016, "fields": {"orig_filename": "Rainer_Johann-Georg_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 396", "author": "", "orig_id": 1409907}}, {"model": "metainfo.source", "pk": 6017, "fields": {"orig_filename": "Rainer_Josef_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397", "author": "", "orig_id": 1409908}}, {"model": "metainfo.source", "pk": 6018, "fields": {"orig_filename": "Rainer_Ludwig_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397", "author": "", "orig_id": 1409909}}, {"model": "metainfo.source", "pk": 6019, "fields": {"orig_filename": "Rainer_Oskar_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397f.", "author": "", "orig_id": 1409910}}, {"model": "metainfo.source", "pk": 6020, "fields": {"orig_filename": "Rainer_Paul_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398", "author": "", "orig_id": 1409980}}, {"model": "metainfo.source", "pk": 6021, "fields": {"orig_filename": "Rainer_Virgil_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398", "author": "", "orig_id": 1409981}}, {"model": "metainfo.source", "pk": 6022, "fields": {"orig_filename": "Rainoldi_Paul_1781_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 399f.", "author": "", "orig_id": 1409984}}, {"model": "metainfo.source", "pk": 6023, "fields": {"orig_filename": "Rainold_Karl-Eduard_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 399", "author": "", "orig_id": 1409983}}, {"model": "metainfo.source", "pk": 6024, "fields": {"orig_filename": "Raisp-Caliga_Erwin_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400", "author": "", "orig_id": 1409986}}, {"model": "metainfo.source", "pk": 6025, "fields": {"orig_filename": "Rais_Karel-Vaclav_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400", "author": "", "orig_id": 1409985}}, {"model": "metainfo.source", "pk": 6026, "fields": {"orig_filename": "Rajacic-Brinski_Josif_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400f.", "author": "", "orig_id": 1409987}}, {"model": "metainfo.source", "pk": 6027, "fields": {"orig_filename": "Rajkovic_Djordje_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401", "author": "", "orig_id": 1409988}}, {"model": "metainfo.source", "pk": 6028, "fields": {"orig_filename": "Rajman_Franz-Josef_1762_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401", "author": "", "orig_id": 1409989}}, {"model": "metainfo.source", "pk": 6029, "fields": {"orig_filename": "Rakic_Vikentije_1750_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409991}}, {"model": "metainfo.source", "pk": 6030, "fields": {"orig_filename": "Rakosi-Mindszent_Jenoe_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402f.", "author": "", "orig_id": 1409994}}, {"model": "metainfo.source", "pk": 6031, "fields": {"orig_filename": "Rakosi_Szidi_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409992}}, {"model": "metainfo.source", "pk": 6032, "fields": {"orig_filename": "Rakosi_Viktor_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409993}}, {"model": "metainfo.source", "pk": 6033, "fields": {"orig_filename": "Rakous_Vojtech_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 403", "author": "", "orig_id": 1409995}}, {"model": "metainfo.source", "pk": 6034, "fields": {"orig_filename": "Rakovac_Dragutin_1813_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 403f.", "author": "", "orig_id": 1409996}}, {"model": "metainfo.source", "pk": 6035, "fields": {"orig_filename": "Rakovszky-Nagyrako-Nagyselmecz_Adalbert_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404", "author": "", "orig_id": 1409997}}, {"model": "metainfo.source", "pk": 6036, "fields": {"orig_filename": "Rakowianu_Robert_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404", "author": "", "orig_id": 1409998}}, {"model": "metainfo.source", "pk": 6037, "fields": {"orig_filename": "Rakowitsch_Adolf_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404f.", "author": "", "orig_id": 1409999}}, {"model": "metainfo.source", "pk": 6038, "fields": {"orig_filename": "Rakusch_Julius_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410000}}, {"model": "metainfo.source", "pk": 6039, "fields": {"orig_filename": "Rak_Jan_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401f.", "author": "", "orig_id": 1409990}}, {"model": "metainfo.source", "pk": 6040, "fields": {"orig_filename": "Ralli_Cimone_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410001}}, {"model": "metainfo.source", "pk": 6041, "fields": {"orig_filename": "Ralli_Paolo_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410002}}, {"model": "metainfo.source", "pk": 6042, "fields": {"orig_filename": "Ramberg_Arthur-Georg_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406", "author": "", "orig_id": 1410074}}, {"model": "metainfo.source", "pk": 6043, "fields": {"orig_filename": "Ramberg_August_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406", "author": "", "orig_id": 1410075}}, {"model": "metainfo.source", "pk": 6044, "fields": {"orig_filename": "Ramberg_Hermann_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406f.", "author": "", "orig_id": 1410076}}, {"model": "metainfo.source", "pk": 6045, "fields": {"orig_filename": "Ramek_Rudolf_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 407", "author": "", "orig_id": 1410077}}, {"model": "metainfo.source", "pk": 6046, "fields": {"orig_filename": "Ramello_Luigi_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 407f.", "author": "", "orig_id": 1410078}}, {"model": "metainfo.source", "pk": 6047, "fields": {"orig_filename": "Ramelmayr_Adam_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408", "author": "", "orig_id": 1410079}}, {"model": "metainfo.source", "pk": 6048, "fields": {"orig_filename": "Ramming-Riedkirchen_Wilhelm_1815_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408", "author": "", "orig_id": 1410080}}, {"model": "metainfo.source", "pk": 6049, "fields": {"orig_filename": "Ramsauer_Ernst_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408f.", "author": "", "orig_id": 1410081}}, {"model": "metainfo.source", "pk": 6050, "fields": {"orig_filename": "Ramsauer_Johann-Georg_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 409", "author": "", "orig_id": 1410082}}, {"model": "metainfo.source", "pk": 6051, "fields": {"orig_filename": "Ramult_Stefan-Samuel_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 409f.", "author": "", "orig_id": 1410083}}, {"model": "metainfo.source", "pk": 6052, "fields": {"orig_filename": "Ramus_Pierre_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 410", "author": "", "orig_id": 1410084}}, {"model": "metainfo.source", "pk": 6053, "fields": {"orig_filename": "Pulgher_Domenico_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410746}}, {"model": "metainfo.source", "pk": 6054, "fields": {"orig_filename": "Pulic_Juraj_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410816}}, {"model": "metainfo.source", "pk": 6055, "fields": {"orig_filename": "Pulitzer_Josef_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330f.", "author": "", "orig_id": 1410817}}, {"model": "metainfo.source", "pk": 6056, "fields": {"orig_filename": "Pulkrabek_Josef_1887_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 331", "author": "", "orig_id": 1410818}}, {"model": "metainfo.source", "pk": 6057, "fields": {"orig_filename": "Pulle_Leopoldo_1835_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 331f.", "author": "", "orig_id": 1410819}}, {"model": "metainfo.source", "pk": 6058, "fields": {"orig_filename": "Pulszky-Cselfalva-Lubocz_Agost_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 332", "author": "", "orig_id": 1410820}}, {"model": "metainfo.source", "pk": 6059, "fields": {"orig_filename": "Pulszky-Cselfalva-Lubocz_Ferenc_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 332f.", "author": "", "orig_id": 1410821}}, {"model": "metainfo.source", "pk": 6060, "fields": {"orig_filename": "Pult_Simeon_1740_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333", "author": "", "orig_id": 1410822}}, {"model": "metainfo.source", "pk": 6061, "fields": {"orig_filename": "Puluj_Johann_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333", "author": "", "orig_id": 1410823}}, {"model": "metainfo.source", "pk": 6062, "fields": {"orig_filename": "Pulz_Ludwig_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333f.", "author": "", "orig_id": 1410824}}, {"model": "metainfo.source", "pk": 6063, "fields": {"orig_filename": "Pummerer_Anton-Georg_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334", "author": "", "orig_id": 1410825}}, {"model": "metainfo.source", "pk": 6064, "fields": {"orig_filename": "Pumnul_Aron_1818_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334", "author": "", "orig_id": 1410826}}, {"model": "metainfo.source", "pk": 6065, "fields": {"orig_filename": "Pungur_Gyula_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334f.", "author": "", "orig_id": 1410827}}, {"model": "metainfo.source", "pk": 6066, "fields": {"orig_filename": "Puntar_Josip_1884_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 335", "author": "", "orig_id": 1410828}}, {"model": "metainfo.source", "pk": 6067, "fields": {"orig_filename": "Puntigam_Anton_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 335f.", "author": "", "orig_id": 1410829}}, {"model": "metainfo.source", "pk": 6068, "fields": {"orig_filename": "Puntschart_Paul_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336", "author": "", "orig_id": 1410830}}, {"model": "metainfo.source", "pk": 6069, "fields": {"orig_filename": "Puntschart_Valentin_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336", "author": "", "orig_id": 1410831}}, {"model": "metainfo.source", "pk": 6070, "fields": {"orig_filename": "Pupin_Michael-Idvorsky_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336f.", "author": "", "orig_id": 1410832}}, {"model": "metainfo.source", "pk": 6071, "fields": {"orig_filename": "Pupovac_Dominik_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337", "author": "", "orig_id": 1410833}}, {"model": "metainfo.source", "pk": 6072, "fields": {"orig_filename": "Pupp_Julius_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337", "author": "", "orig_id": 1410834}}, {"model": "metainfo.source", "pk": 6073, "fields": {"orig_filename": "Purger_Johann-Bapt_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337f.", "author": "", "orig_id": 1410835}}, {"model": "metainfo.source", "pk": 6074, "fields": {"orig_filename": "Purkarthofer_Matthias_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338", "author": "", "orig_id": 1410836}}, {"model": "metainfo.source", "pk": 6075, "fields": {"orig_filename": "Purkyne_Cyrill_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338", "author": "", "orig_id": 1410837}}, {"model": "metainfo.source", "pk": 6076, "fields": {"orig_filename": "Purkyne_Emanuel_1831_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338f.", "author": "", "orig_id": 1410838}}, {"model": "metainfo.source", "pk": 6077, "fields": {"orig_filename": "Purkyne_Jan-Ev_1787_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 339", "author": "", "orig_id": 1410905}}, {"model": "metainfo.source", "pk": 6078, "fields": {"orig_filename": "Purkyne_Josef-Heinrich_1793_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 339f.", "author": "", "orig_id": 1410906}}, {"model": "metainfo.source", "pk": 6079, "fields": {"orig_filename": "Purkyne_Karel_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340", "author": "", "orig_id": 1410907}}, {"model": "metainfo.source", "pk": 6080, "fields": {"orig_filename": "Purschka_Norbert_1813_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340", "author": "", "orig_id": 1410908}}, {"model": "metainfo.source", "pk": 6081, "fields": {"orig_filename": "Purtscheller_Ludwig_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340f.", "author": "", "orig_id": 1410910}}, {"model": "metainfo.source", "pk": 6082, "fields": {"orig_filename": "Purtscher-Eschenburg_Franz-X_1768_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342", "author": "", "orig_id": 1410913}}, {"model": "metainfo.source", "pk": 6083, "fields": {"orig_filename": "Purtscher_Adolf_1819_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 341", "author": "", "orig_id": 1410911}}, {"model": "metainfo.source", "pk": 6084, "fields": {"orig_filename": "Purtscher_Othmar_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 341f.", "author": "", "orig_id": 1410912}}, {"model": "metainfo.source", "pk": 6085, "fields": {"orig_filename": "Puscariu_Emil_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342", "author": "", "orig_id": 1410914}}, {"model": "metainfo.source", "pk": 6086, "fields": {"orig_filename": "Puscariu_Sextil_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342f.", "author": "", "orig_id": 1410915}}, {"model": "metainfo.source", "pk": 6087, "fields": {"orig_filename": "Puschi_Alberto_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343", "author": "", "orig_id": 1410917}}, {"model": "metainfo.source", "pk": 6088, "fields": {"orig_filename": "Puschl_Karl_1825_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343f.", "author": "", "orig_id": 1410918}}, {"model": "metainfo.source", "pk": 6089, "fields": {"orig_filename": "Puschl_Leopold_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 344", "author": "", "orig_id": 1410919}}, {"model": "metainfo.source", "pk": 6090, "fields": {"orig_filename": "Puschmann_Theodor_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 344", "author": "", "orig_id": 1410920}}, {"model": "metainfo.source", "pk": 6091, "fields": {"orig_filename": "Pusch_Karl_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343", "author": "", "orig_id": 1410916}}, {"model": "metainfo.source", "pk": 6092, "fields": {"orig_filename": "Puskas-Ditro_Tivadar_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345", "author": "", "orig_id": 1410921}}, {"model": "metainfo.source", "pk": 6093, "fields": {"orig_filename": "Pusswald_Karl_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345", "author": "", "orig_id": 1410922}}, {"model": "metainfo.source", "pk": 6094, "fields": {"orig_filename": "Puszet_Ludwik_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345f.", "author": "", "orig_id": 1410923}}, {"model": "metainfo.source", "pk": 6095, "fields": {"orig_filename": "Puthon_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 346", "author": "", "orig_id": 1410924}}, {"model": "metainfo.source", "pk": 6096, "fields": {"orig_filename": "Putick_Viljem_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 346f.", "author": "", "orig_id": 1410926}}, {"model": "metainfo.source", "pk": 6097, "fields": {"orig_filename": "Putinati_Alessandro_1801_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410927}}, {"model": "metainfo.source", "pk": 6098, "fields": {"orig_filename": "Putinati_Francesco_1775_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410928}}, {"model": "metainfo.source", "pk": 6099, "fields": {"orig_filename": "Putzer-Reibegg_Johann_1801_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348f.", "author": "", "orig_id": 1409515}}, {"model": "metainfo.source", "pk": 6100, "fields": {"orig_filename": "Putz_Franz_1873_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410929}}, {"model": "metainfo.source", "pk": 6101, "fields": {"orig_filename": "Putz_Gottlieb_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347f.", "author": "", "orig_id": 1410930}}, {"model": "metainfo.source", "pk": 6102, "fields": {"orig_filename": "Putz_Josef_1877_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348", "author": "", "orig_id": 1410931}}, {"model": "metainfo.source", "pk": 6103, "fields": {"orig_filename": "Putz_Leo_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348", "author": "", "orig_id": 1409514}}, {"model": "metainfo.source", "pk": 6104, "fields": {"orig_filename": "Puzyna_Jan_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349", "author": "", "orig_id": 1409517}}, {"model": "metainfo.source", "pk": 6105, "fields": {"orig_filename": "Puzyna_Jozef_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349f.", "author": "", "orig_id": 1409518}}, {"model": "metainfo.source", "pk": 6106, "fields": {"orig_filename": "Pyrker-Felsoe-Eoer_Johann-Ladislaus_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 350", "author": "", "orig_id": 1409519}}, {"model": "metainfo.source", "pk": 6107, "fields": {"orig_filename": "Quadrat_Bernhard_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 350f.", "author": "", "orig_id": 1409520}}, {"model": "metainfo.source", "pk": 6108, "fields": {"orig_filename": "Quadrio_Maurizio_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351f.", "author": "", "orig_id": 1409523}}, {"model": "metainfo.source", "pk": 6109, "fields": {"orig_filename": "Quadri_Antonio_1776_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351", "author": "", "orig_id": 1409521}}, {"model": "metainfo.source", "pk": 6110, "fields": {"orig_filename": "Quadri_Giovanni-Batt_1780_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351", "author": "", "orig_id": 1409522}}, {"model": "metainfo.source", "pk": 6111, "fields": {"orig_filename": "Quarenghi_Giacomo-Antonio-Domenico_1744_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 352", "author": "", "orig_id": 1409524}}, {"model": "metainfo.source", "pk": 6112, "fields": {"orig_filename": "Quarenghi_Guglielmo_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 352f.", "author": "", "orig_id": 1409525}}, {"model": "metainfo.source", "pk": 6113, "fields": {"orig_filename": "Quast_Johann-Zacharias_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 353", "author": "", "orig_id": 1409526}}, {"model": "metainfo.source", "pk": 6114, "fields": {"orig_filename": "Querena_Lattanzio_1768_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 353f.", "author": "", "orig_id": 1409527}}, {"model": "metainfo.source", "pk": 6115, "fields": {"orig_filename": "Querini-Stampalia_Giovanni_1799_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354", "author": "", "orig_id": 1409528}}, {"model": "metainfo.source", "pk": 6116, "fields": {"orig_filename": "Quidenus_Franz_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354", "author": "", "orig_id": 1409529}}, {"model": "metainfo.source", "pk": 6117, "fields": {"orig_filename": "Quiquerez-Beaujeu_Ferdo_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355", "author": "", "orig_id": 1409531}}, {"model": "metainfo.source", "pk": 6118, "fields": {"orig_filename": "Quiquerez_Hermann_1849_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354f.", "author": "", "orig_id": 1409530}}, {"model": "metainfo.source", "pk": 6119, "fields": {"orig_filename": "Quittner_Rudolf_1872_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355", "author": "", "orig_id": 1409532}}, {"model": "metainfo.source", "pk": 6120, "fields": {"orig_filename": "Raab-Rabenau_Karl_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357", "author": "", "orig_id": 1409538}}, {"model": "metainfo.source", "pk": 6121, "fields": {"orig_filename": "Raabe_Josef-Ludwig_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357f.", "author": "", "orig_id": 1409539}}, {"model": "metainfo.source", "pk": 6122, "fields": {"orig_filename": "Raabe_Karl-August_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358", "author": "", "orig_id": 1409610}}, {"model": "metainfo.source", "pk": 6123, "fields": {"orig_filename": "Raabl-Werner_Heinrich_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358", "author": "", "orig_id": 1409611}}, {"model": "metainfo.source", "pk": 6124, "fields": {"orig_filename": "Raab_Franz_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355f.", "author": "", "orig_id": 1409533}}, {"model": "metainfo.source", "pk": 6125, "fields": {"orig_filename": "Raab_Georg-Martin-Ignaz_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356", "author": "", "orig_id": 1409534}}, {"model": "metainfo.source", "pk": 6126, "fields": {"orig_filename": "Raab_Isidor_1826_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356", "author": "", "orig_id": 1409535}}, {"model": "metainfo.source", "pk": 6127, "fields": {"orig_filename": "Raab_Johann_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356f.", "author": "", "orig_id": 1409536}}, {"model": "metainfo.source", "pk": 6128, "fields": {"orig_filename": "Raab_Josef_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357", "author": "", "orig_id": 1409537}}, {"model": "metainfo.source", "pk": 6129, "fields": {"orig_filename": "Rabboni_Giuseppe_1800_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409613}}, {"model": "metainfo.source", "pk": 6130, "fields": {"orig_filename": "Rabeder_Simon_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409614}}, {"model": "metainfo.source", "pk": 6131, "fields": {"orig_filename": "Rabensteiner_Augustin_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409615}}, {"model": "metainfo.source", "pk": 6132, "fields": {"orig_filename": "Rabensteiner_Eduard_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359f.", "author": "", "orig_id": 1409616}}, {"model": "metainfo.source", "pk": 6133, "fields": {"orig_filename": "Rabl_Hans_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 360", "author": "", "orig_id": 1409617}}, {"model": "metainfo.source", "pk": 6134, "fields": {"orig_filename": "Rabl_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 360f.", "author": "", "orig_id": 1409618}}, {"model": "metainfo.source", "pk": 6135, "fields": {"orig_filename": "Rabl_Karl_1787_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361", "author": "", "orig_id": 1409744}}, {"model": "metainfo.source", "pk": 6136, "fields": {"orig_filename": "Rabl_Karl_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361", "author": "", "orig_id": 1409619}}, {"model": "metainfo.source", "pk": 6137, "fields": {"orig_filename": "Rabl_Walter_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361f.", "author": "", "orig_id": 1409620}}, {"model": "metainfo.source", "pk": 6138, "fields": {"orig_filename": "Rab_Vaclav_1804_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358f.", "author": "", "orig_id": 1409612}}, {"model": "metainfo.source", "pk": 6139, "fields": {"orig_filename": "Racchetti_Alessandro_1789_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409621}}, {"model": "metainfo.source", "pk": 6140, "fields": {"orig_filename": "Racchetti_Vincenzo_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409622}}, {"model": "metainfo.source", "pk": 6141, "fields": {"orig_filename": "Racek_Adolf_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409623}}, {"model": "metainfo.source", "pk": 6142, "fields": {"orig_filename": "Rachmann_Wilhelm_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362f.", "author": "", "orig_id": 1409624}}, {"model": "metainfo.source", "pk": 6143, "fields": {"orig_filename": "Raciborski_Aleksander_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 363", "author": "", "orig_id": 1409625}}, {"model": "metainfo.source", "pk": 6144, "fields": {"orig_filename": "Raciborski_Marian_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 363f.", "author": "", "orig_id": 1409626}}, {"model": "metainfo.source", "pk": 6145, "fields": {"orig_filename": "Racic_Josip_1885_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 364", "author": "", "orig_id": 1409627}}, {"model": "metainfo.source", "pk": 6146, "fields": {"orig_filename": "Racki_Franjo_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 364f.", "author": "", "orig_id": 1409628}}, {"model": "metainfo.source", "pk": 6147, "fields": {"orig_filename": "Raczynski_Jan-Rudolf_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 366", "author": "", "orig_id": 1409632}}, {"model": "metainfo.source", "pk": 6148, "fields": {"orig_filename": "Racz_Kalman_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365", "author": "", "orig_id": 1409629}}, {"model": "metainfo.source", "pk": 6149, "fields": {"orig_filename": "Racz_Karoly_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365", "author": "", "orig_id": 1409630}}, {"model": "metainfo.source", "pk": 6150, "fields": {"orig_filename": "Racz_Lajos_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365f.", "author": "", "orig_id": 1409631}}, {"model": "metainfo.source", "pk": 6151, "fields": {"orig_filename": "Radacsi_Gyoergy_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367", "author": "", "orig_id": 1409700}}, {"model": "metainfo.source", "pk": 6152, "fields": {"orig_filename": "Radaelli_Giuseppe_1833_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367", "author": "", "orig_id": 1409701}}, {"model": "metainfo.source", "pk": 6153, "fields": {"orig_filename": "Radakovics_Jozsef_1823_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 368", "author": "", "orig_id": 1409703}}, {"model": "metainfo.source", "pk": 6154, "fields": {"orig_filename": "Raday-Rada_Gedeon_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 368f.", "author": "", "orig_id": 1409704}}, {"model": "metainfo.source", "pk": 6155, "fields": {"orig_filename": "Prochaska_Frantisek-X_1740_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410364}}, {"model": "metainfo.source", "pk": 6156, "fields": {"orig_filename": "Prochaska_Frantisek_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292f.", "author": "", "orig_id": 1410365}}, {"model": "metainfo.source", "pk": 6157, "fields": {"orig_filename": "Prochaska_Frantisek_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 293", "author": "", "orig_id": 1410366}}, {"model": "metainfo.source", "pk": 6158, "fields": {"orig_filename": "Prochaska_Frantisek_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 293f.", "author": "", "orig_id": 1410367}}, {"model": "metainfo.source", "pk": 6159, "fields": {"orig_filename": "Prochaska_Georg_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294", "author": "", "orig_id": 1410368}}, {"model": "metainfo.source", "pk": 6160, "fields": {"orig_filename": "Prochaska_Ignaz-Josef_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294", "author": "", "orig_id": 1409743}}, {"model": "metainfo.source", "pk": 6161, "fields": {"orig_filename": "Prochaska_Josef-Vladimir_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294f.", "author": "", "orig_id": 1410369}}, {"model": "metainfo.source", "pk": 6162, "fields": {"orig_filename": "Prochaska_Julius_1859_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295", "author": "", "orig_id": 1410370}}, {"model": "metainfo.source", "pk": 6163, "fields": {"orig_filename": "Prochaska_Julius_1863_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295", "author": "", "orig_id": 1410371}}, {"model": "metainfo.source", "pk": 6164, "fields": {"orig_filename": "Prochaska_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295f.", "author": "", "orig_id": 1410372}}, {"model": "metainfo.source", "pk": 6165, "fields": {"orig_filename": "Prochaska_Ludevit_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 296", "author": "", "orig_id": 1410443}}, {"model": "metainfo.source", "pk": 6166, "fields": {"orig_filename": "Prochaska_Ottokar_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 296f.", "author": "", "orig_id": 1410444}}, {"model": "metainfo.source", "pk": 6167, "fields": {"orig_filename": "Prochaska_Ottokar_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297", "author": "", "orig_id": 1410445}}, {"model": "metainfo.source", "pk": 6168, "fields": {"orig_filename": "Prochaska_Robert_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297", "author": "", "orig_id": 1410446}}, {"model": "metainfo.source", "pk": 6169, "fields": {"orig_filename": "Prochaska_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297f.", "author": "", "orig_id": 1410447}}, {"model": "metainfo.source", "pk": 6170, "fields": {"orig_filename": "Proch_Heinrich_1809_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 290f.", "author": "", "orig_id": 1410359}}, {"model": "metainfo.source", "pk": 6171, "fields": {"orig_filename": "Prockner_Franz-Kajetan_1783_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298", "author": "", "orig_id": 1410449}}, {"model": "metainfo.source", "pk": 6172, "fields": {"orig_filename": "Procksch_Rudolf_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298f.", "author": "", "orig_id": 1410450}}, {"model": "metainfo.source", "pk": 6173, "fields": {"orig_filename": "Prodan_Ivo_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299", "author": "", "orig_id": 1410451}}, {"model": "metainfo.source", "pk": 6174, "fields": {"orig_filename": "Prodinger_Hans_1887_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299", "author": "", "orig_id": 1410452}}, {"model": "metainfo.source", "pk": 6175, "fields": {"orig_filename": "Prodinger_Karl_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299f.", "author": "", "orig_id": 1410453}}, {"model": "metainfo.source", "pk": 6176, "fields": {"orig_filename": "Proell_Karl_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300", "author": "", "orig_id": 1410454}}, {"model": "metainfo.source", "pk": 6177, "fields": {"orig_filename": "Proell_Laurenz_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300", "author": "", "orig_id": 1410455}}, {"model": "metainfo.source", "pk": 6178, "fields": {"orig_filename": "Profeld_Hubert_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300f.", "author": "", "orig_id": 1410456}}, {"model": "metainfo.source", "pk": 6179, "fields": {"orig_filename": "Prokesch-Osten_Anton_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 301f.", "author": "", "orig_id": 1410457}}, {"model": "metainfo.source", "pk": 6180, "fields": {"orig_filename": "Prokop_August_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302", "author": "", "orig_id": 1410460}}, {"model": "metainfo.source", "pk": 6181, "fields": {"orig_filename": "Prokop_Josef_1898_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302", "author": "", "orig_id": 1410461}}, {"model": "metainfo.source", "pk": 6182, "fields": {"orig_filename": "Prokosch_Anton_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302f.", "author": "", "orig_id": 1410462}}, {"model": "metainfo.source", "pk": 6183, "fields": {"orig_filename": "Prokosch_Eduard_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 303", "author": "", "orig_id": 1410463}}, {"model": "metainfo.source", "pk": 6184, "fields": {"orig_filename": "Proksch_Anton_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 303", "author": "", "orig_id": 1410464}}, {"model": "metainfo.source", "pk": 6185, "fields": {"orig_filename": "Proksch_Johann-Karl_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 303f.", "author": "", "orig_id": 1410465}}, {"model": "metainfo.source", "pk": 6186, "fields": {"orig_filename": "Proksch_Josef_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304", "author": "", "orig_id": 1410466}}, {"model": "metainfo.source", "pk": 6187, "fields": {"orig_filename": "Proksch_Josef_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304", "author": "", "orig_id": 1410535}}, {"model": "metainfo.source", "pk": 6188, "fields": {"orig_filename": "Promberger_Johann_1779_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305", "author": "", "orig_id": 1410537}}, {"model": "metainfo.source", "pk": 6189, "fields": {"orig_filename": "Promberger_Johann_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305", "author": "", "orig_id": 1410538}}, {"model": "metainfo.source", "pk": 6190, "fields": {"orig_filename": "Promber_Adolf_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304f.", "author": "", "orig_id": 1410536}}, {"model": "metainfo.source", "pk": 6191, "fields": {"orig_filename": "Pronay-Totprona-Blatnica_Gabor_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305f.", "author": "", "orig_id": 1410539}}, {"model": "metainfo.source", "pk": 6192, "fields": {"orig_filename": "Proschek_Ignaz_1827_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306", "author": "", "orig_id": 1410540}}, {"model": "metainfo.source", "pk": 6193, "fields": {"orig_filename": "Proschko_Franz-Isidor_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306", "author": "", "orig_id": 1410541}}, {"model": "metainfo.source", "pk": 6194, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Emanuel_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306f.", "author": "", "orig_id": 1410542}}, {"model": "metainfo.source", "pk": 6195, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Emanuel_1849_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 307f.", "author": "", "orig_id": 1410543}}, {"model": "metainfo.source", "pk": 6196, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Maximilian_1851_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308", "author": "", "orig_id": 1410544}}, {"model": "metainfo.source", "pk": 6197, "fields": {"orig_filename": "Prosniz_Adolf_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308", "author": "", "orig_id": 1410545}}, {"model": "metainfo.source", "pk": 6198, "fields": {"orig_filename": "Prost_Josef_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308f.", "author": "", "orig_id": 1410546}}, {"model": "metainfo.source", "pk": 6199, "fields": {"orig_filename": "Provazek-Lanov_Stanislaus_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 309", "author": "", "orig_id": 1410547}}, {"model": "metainfo.source", "pk": 6200, "fields": {"orig_filename": "Provaznik_Anatol_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 309f.", "author": "", "orig_id": 1410548}}, {"model": "metainfo.source", "pk": 6201, "fields": {"orig_filename": "Prucha_Jindrich_1886_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 310", "author": "", "orig_id": 1410549}}, {"model": "metainfo.source", "pk": 6202, "fields": {"orig_filename": "Pruckner_Karoline_1832_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 310", "author": "", "orig_id": 1410550}}, {"model": "metainfo.source", "pk": 6203, "fields": {"orig_filename": "Pruenster_Georg_1774_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410551}}, {"model": "metainfo.source", "pk": 6204, "fields": {"orig_filename": "Pruenster_Johann_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410552}}, {"model": "metainfo.source", "pk": 6205, "fields": {"orig_filename": "Prueschenk-Lindenhoven_Otto_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410553}}, {"model": "metainfo.source", "pk": 6206, "fields": {"orig_filename": "Pruewer_Julius_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311f.", "author": "", "orig_id": 1410554}}, {"model": "metainfo.source", "pk": 6207, "fields": {"orig_filename": "Prugger_Franz-Sales_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312", "author": "", "orig_id": 1410555}}, {"model": "metainfo.source", "pk": 6208, "fields": {"orig_filename": "Prusak_Josef_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312", "author": "", "orig_id": 1410556}}, {"model": "metainfo.source", "pk": 6209, "fields": {"orig_filename": "Prutscher_Otto_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312f.", "author": "", "orig_id": 1410557}}, {"model": "metainfo.source", "pk": 6210, "fields": {"orig_filename": "Pruzsinszky_Pal_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313", "author": "", "orig_id": 1410558}}, {"model": "metainfo.source", "pk": 6211, "fields": {"orig_filename": "Prybila_Karl_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313", "author": "", "orig_id": 1410626}}, {"model": "metainfo.source", "pk": 6212, "fields": {"orig_filename": "Prylinski_Tomasz_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313f.", "author": "", "orig_id": 1410627}}, {"model": "metainfo.source", "pk": 6213, "fields": {"orig_filename": "Przedak-Burgwehr_Karl_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314", "author": "", "orig_id": 1410629}}, {"model": "metainfo.source", "pk": 6214, "fields": {"orig_filename": "Przedak_Aladar-Guido_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314", "author": "", "orig_id": 1410628}}, {"model": "metainfo.source", "pk": 6215, "fields": {"orig_filename": "Przibram-Gladona_Ludwig_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 315", "author": "", "orig_id": 1410631}}, {"model": "metainfo.source", "pk": 6216, "fields": {"orig_filename": "Przibram_Hans-Leo_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314f.", "author": "", "orig_id": 1410630}}, {"model": "metainfo.source", "pk": 6217, "fields": {"orig_filename": "Przybyszewski_Stanislaw_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 315f.", "author": "", "orig_id": 1410632}}, {"model": "metainfo.source", "pk": 6218, "fields": {"orig_filename": "Przychocki_Gustaw-Edward_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 316", "author": "", "orig_id": 1410633}}, {"model": "metainfo.source", "pk": 6219, "fields": {"orig_filename": "Przylecki_Stanislaw_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 316f.", "author": "", "orig_id": 1410634}}, {"model": "metainfo.source", "pk": 6220, "fields": {"orig_filename": "Pschorn_Karl_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317", "author": "", "orig_id": 1410635}}, {"model": "metainfo.source", "pk": 6221, "fields": {"orig_filename": "Psenner_Anton_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317", "author": "", "orig_id": 1410636}}, {"model": "metainfo.source", "pk": 6222, "fields": {"orig_filename": "Psenner_Josef_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317f.", "author": "", "orig_id": 1410637}}, {"model": "metainfo.source", "pk": 6223, "fields": {"orig_filename": "Psenner_Ludwig_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318", "author": "", "orig_id": 1410638}}, {"model": "metainfo.source", "pk": 6224, "fields": {"orig_filename": "Psensky_Felix_1897_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318", "author": "", "orig_id": 1410639}}, {"model": "metainfo.source", "pk": 6225, "fields": {"orig_filename": "Pserhofer_Arthur_1873_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318f.", "author": "", "orig_id": 1410640}}, {"model": "metainfo.source", "pk": 6226, "fields": {"orig_filename": "Pstross_Frantisek-Vaclav_1823_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319", "author": "", "orig_id": 1410641}}, {"model": "metainfo.source", "pk": 6227, "fields": {"orig_filename": "Ptasnik_Jan_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319", "author": "", "orig_id": 1410642}}, {"model": "metainfo.source", "pk": 6228, "fields": {"orig_filename": "Pucelj_Ivan_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 320", "author": "", "orig_id": 1410644}}, {"model": "metainfo.source", "pk": 6229, "fields": {"orig_filename": "Puchalski_Stanislaus_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321", "author": "", "orig_id": 1410646}}, {"model": "metainfo.source", "pk": 6230, "fields": {"orig_filename": "Pucherna_Antonin_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321", "author": "", "orig_id": 1410648}}, {"model": "metainfo.source", "pk": 6231, "fields": {"orig_filename": "Pucherna_Eduard_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321f.", "author": "", "orig_id": 1410649}}, {"model": "metainfo.source", "pk": 6232, "fields": {"orig_filename": "Pucherna_Wilhelm_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322", "author": "", "orig_id": 1410722}}, {"model": "metainfo.source", "pk": 6233, "fields": {"orig_filename": "Puchinger_Erwin_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322", "author": "", "orig_id": 1410723}}, {"model": "metainfo.source", "pk": 6234, "fields": {"orig_filename": "Puchmayr_Franz_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322f.", "author": "", "orig_id": 1410724}}, {"model": "metainfo.source", "pk": 6235, "fields": {"orig_filename": "Puchner_Karl_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323", "author": "", "orig_id": 1410725}}, {"model": "metainfo.source", "pk": 6236, "fields": {"orig_filename": "Puchta_Anton_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323", "author": "", "orig_id": 1410726}}, {"model": "metainfo.source", "pk": 6237, "fields": {"orig_filename": "Puch_Johann_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 320f.", "author": "", "orig_id": 1410645}}, {"model": "metainfo.source", "pk": 6238, "fields": {"orig_filename": "Pucic_Medo_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323f.", "author": "", "orig_id": 1410727}}, {"model": "metainfo.source", "pk": 6239, "fields": {"orig_filename": "Pucic_Niko_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324", "author": "", "orig_id": 1410728}}, {"model": "metainfo.source", "pk": 6240, "fields": {"orig_filename": "Puc_Dinko_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319f.", "author": "", "orig_id": 1410643}}, {"model": "metainfo.source", "pk": 6241, "fields": {"orig_filename": "Puecher-Passavalli_Luigi_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324", "author": "", "orig_id": 1410729}}, {"model": "metainfo.source", "pk": 6242, "fields": {"orig_filename": "Puechler_Benedikt_1797_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324f.", "author": "", "orig_id": 1410730}}, {"model": "metainfo.source", "pk": 6243, "fields": {"orig_filename": "Puellacher_Leopold-Josef_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325", "author": "", "orig_id": 1410731}}, {"model": "metainfo.source", "pk": 6244, "fields": {"orig_filename": "Puempel_Petrus_1772_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325", "author": "", "orig_id": 1410732}}, {"model": "metainfo.source", "pk": 6245, "fields": {"orig_filename": "Puercker-Puerkhain_Vinzenz_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325f.", "author": "", "orig_id": 1410733}}, {"model": "metainfo.source", "pk": 6246, "fields": {"orig_filename": "Puerstinger_Josef_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326", "author": "", "orig_id": 1410734}}, {"model": "metainfo.source", "pk": 6247, "fields": {"orig_filename": "Puerthner_Johann-Karl_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326", "author": "", "orig_id": 1410735}}, {"model": "metainfo.source", "pk": 6248, "fields": {"orig_filename": "Puettner_Josef-Karl-Bartholomaeus_1821_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326f.", "author": "", "orig_id": 1410736}}, {"model": "metainfo.source", "pk": 6249, "fields": {"orig_filename": "Puff_Ferdinand_1809_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327", "author": "", "orig_id": 1410737}}, {"model": "metainfo.source", "pk": 6250, "fields": {"orig_filename": "Puff_Rudolf-Gustav_1808_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327", "author": "", "orig_id": 1410738}}, {"model": "metainfo.source", "pk": 6251, "fields": {"orig_filename": "Pugelj_Milan_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327f.", "author": "", "orig_id": 1410739}}, {"model": "metainfo.source", "pk": 6252, "fields": {"orig_filename": "Puhallo-Brlog_Paul_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 328", "author": "", "orig_id": 1410740}}, {"model": "metainfo.source", "pk": 6253, "fields": {"orig_filename": "Puhar_Janez-Avgustin_1814_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 328f.", "author": "", "orig_id": 1410741}}, {"model": "metainfo.source", "pk": 6254, "fields": {"orig_filename": "Pukanszky_Bela_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410742}}, {"model": "metainfo.source", "pk": 6255, "fields": {"orig_filename": "Puksec_Ema_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410743}}, {"model": "metainfo.source", "pk": 6256, "fields": {"orig_filename": "Puky-Bizak_Akos_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410744}}, {"model": "metainfo.source", "pk": 6257, "fields": {"orig_filename": "Puky-Bizak_Miklos_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410745}}, {"model": "metainfo.source", "pk": 6258, "fields": {"orig_filename": "Preidl-Hassenbrunn_Franz_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 254f.", "author": "", "orig_id": 1409964}}, {"model": "metainfo.source", "pk": 6259, "fields": {"orig_filename": "Preindlsberger-Preindlsperg_Josef_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255", "author": "", "orig_id": 1409966}}, {"model": "metainfo.source", "pk": 6260, "fields": {"orig_filename": "Preindlsberger-Preindlsperg_Milena_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255f.", "author": "", "orig_id": 1409967}}, {"model": "metainfo.source", "pk": 6261, "fields": {"orig_filename": "Preindl_Ferdinand_1881_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2086599}}, {"model": "metainfo.source", "pk": 6262, "fields": {"orig_filename": "Preindl_Josef_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255", "author": "", "orig_id": 1409965}}, {"model": "metainfo.source", "pk": 6263, "fields": {"orig_filename": "Preisegger_Ignaz_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409970}}, {"model": "metainfo.source", "pk": 6264, "fields": {"orig_filename": "Preisinger_Josef_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256f.", "author": "", "orig_id": 1409971}}, {"model": "metainfo.source", "pk": 6265, "fields": {"orig_filename": "Preisler_Jan_1872_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257", "author": "", "orig_id": 1409972}}, {"model": "metainfo.source", "pk": 6266, "fields": {"orig_filename": "Preissig_Vojtech_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258f.", "author": "", "orig_id": 1409976}}, {"model": "metainfo.source", "pk": 6267, "fields": {"orig_filename": "Preissler_Ferdinand_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259", "author": "", "orig_id": 1409978}}, {"model": "metainfo.source", "pk": 6268, "fields": {"orig_filename": "Preissler_Oskar_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259", "author": "", "orig_id": 1409979}}, {"model": "metainfo.source", "pk": 6269, "fields": {"orig_filename": "Preissmann_Ernest_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259f.", "author": "", "orig_id": 1410049}}, {"model": "metainfo.source", "pk": 6270, "fields": {"orig_filename": "Preissova_Gabriela_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 260", "author": "", "orig_id": 1410050}}, {"model": "metainfo.source", "pk": 6271, "fields": {"orig_filename": "Preiss_Balthasar_1765_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257", "author": "", "orig_id": 1409973}}, {"model": "metainfo.source", "pk": 6272, "fields": {"orig_filename": "Preiss_Jaroslav_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257f.", "author": "", "orig_id": 1409974}}, {"model": "metainfo.source", "pk": 6273, "fields": {"orig_filename": "Preiss_Kornelius_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258", "author": "", "orig_id": 1409975}}, {"model": "metainfo.source", "pk": 6274, "fields": {"orig_filename": "Preiss_Rudolf_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258", "author": "", "orig_id": 1409977}}, {"model": "metainfo.source", "pk": 6275, "fields": {"orig_filename": "Preisz_Hugo_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 260f.", "author": "", "orig_id": 1410051}}, {"model": "metainfo.source", "pk": 6276, "fields": {"orig_filename": "Preis_Karel_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409968}}, {"model": "metainfo.source", "pk": 6277, "fields": {"orig_filename": "Preis_Karl_1913_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409969}}, {"model": "metainfo.source", "pk": 6278, "fields": {"orig_filename": "Prejac_Djuro_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261", "author": "", "orig_id": 1410052}}, {"model": "metainfo.source", "pk": 6279, "fields": {"orig_filename": "Preleuthner_Johann_1807_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261", "author": "", "orig_id": 1410053}}, {"model": "metainfo.source", "pk": 6280, "fields": {"orig_filename": "Prelog_Matija_1813_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261f.", "author": "", "orig_id": 1410054}}, {"model": "metainfo.source", "pk": 6281, "fields": {"orig_filename": "Prelog_Milan_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262", "author": "", "orig_id": 1410055}}, {"model": "metainfo.source", "pk": 6282, "fields": {"orig_filename": "Premerstein_Anton_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262f.", "author": "", "orig_id": 1410057}}, {"model": "metainfo.source", "pk": 6283, "fields": {"orig_filename": "Premrou_Josip_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 263", "author": "", "orig_id": 1410058}}, {"model": "metainfo.source", "pk": 6284, "fields": {"orig_filename": "Prem_Simon_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262", "author": "", "orig_id": 1410056}}, {"model": "metainfo.source", "pk": 6285, "fields": {"orig_filename": "Prendel_Viktor-Anton-Franz_1766_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 263f.", "author": "", "orig_id": 1410059}}, {"model": "metainfo.source", "pk": 6286, "fields": {"orig_filename": "Prenninger_Karl_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264", "author": "", "orig_id": 1410060}}, {"model": "metainfo.source", "pk": 6287, "fields": {"orig_filename": "Prepeluh_Albin_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264", "author": "", "orig_id": 1410061}}, {"model": "metainfo.source", "pk": 6288, "fields": {"orig_filename": "Preradovic_Petar_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264f.", "author": "", "orig_id": 1410062}}, {"model": "metainfo.source", "pk": 6289, "fields": {"orig_filename": "Preradovic_Zora_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 265f.", "author": "", "orig_id": 1410063}}, {"model": "metainfo.source", "pk": 6290, "fields": {"orig_filename": "Preseren_France_1800_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 266f.", "author": "", "orig_id": 1410064}}, {"model": "metainfo.source", "pk": 6291, "fields": {"orig_filename": "Presl_Karel-Borivoj_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 267f.", "author": "", "orig_id": 1410066}}, {"model": "metainfo.source", "pk": 6292, "fields": {"orig_filename": "Pressburger_Richard_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410067}}, {"model": "metainfo.source", "pk": 6293, "fields": {"orig_filename": "Pressel_Wilhelm_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410068}}, {"model": "metainfo.source", "pk": 6294, "fields": {"orig_filename": "Presuhn_August_1841_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410069}}, {"model": "metainfo.source", "pk": 6295, "fields": {"orig_filename": "Pretis-Cagnodo_Sisinio_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268f.", "author": "", "orig_id": 1410070}}, {"model": "metainfo.source", "pk": 6296, "fields": {"orig_filename": "Pretsch_Paul_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 269", "author": "", "orig_id": 1410071}}, {"model": "metainfo.source", "pk": 6297, "fields": {"orig_filename": "Prettner_Johann_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 269f.", "author": "", "orig_id": 1410072}}, {"model": "metainfo.source", "pk": 6298, "fields": {"orig_filename": "Prettner_Matej_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410073}}, {"model": "metainfo.source", "pk": 6299, "fields": {"orig_filename": "Pretz-Proetzenberg_Josef_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410149}}, {"model": "metainfo.source", "pk": 6300, "fields": {"orig_filename": "Preussler_Robert_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 271f.", "author": "", "orig_id": 1410153}}, {"model": "metainfo.source", "pk": 6301, "fields": {"orig_filename": "Preuss_Arthur_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270f.", "author": "", "orig_id": 1410151}}, {"model": "metainfo.source", "pk": 6302, "fields": {"orig_filename": "Preuss_Paul_1886_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 271", "author": "", "orig_id": 1410152}}, {"model": "metainfo.source", "pk": 6303, "fields": {"orig_filename": "Preu_Ignaz_1788_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410150}}, {"model": "metainfo.source", "pk": 6304, "fields": {"orig_filename": "Preyer_Gottfried_1807_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 272f.", "author": "", "orig_id": 1410155}}, {"model": "metainfo.source", "pk": 6305, "fields": {"orig_filename": "Preyer_Hermann_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273", "author": "", "orig_id": 1410156}}, {"model": "metainfo.source", "pk": 6306, "fields": {"orig_filename": "Preyer_Johann-Nep_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273", "author": "", "orig_id": 1410157}}, {"model": "metainfo.source", "pk": 6307, "fields": {"orig_filename": "Preysz_Moric_1829_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273f.", "author": "", "orig_id": 1410158}}, {"model": "metainfo.source", "pk": 6308, "fields": {"orig_filename": "Prey_Adalbert_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 272", "author": "", "orig_id": 1410154}}, {"model": "metainfo.source", "pk": 6309, "fields": {"orig_filename": "Pribicevic_Svetozar_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 274", "author": "", "orig_id": 1410160}}, {"model": "metainfo.source", "pk": 6310, "fields": {"orig_filename": "Pribram_Alfred-Francis_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275", "author": "", "orig_id": 1410162}}, {"model": "metainfo.source", "pk": 6311, "fields": {"orig_filename": "Pribram_Alfred_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 274f.", "author": "", "orig_id": 1410161}}, {"model": "metainfo.source", "pk": 6312, "fields": {"orig_filename": "Pribram_Ernst-August_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275", "author": "", "orig_id": 1410163}}, {"model": "metainfo.source", "pk": 6313, "fields": {"orig_filename": "Pribram_Hugo_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275f.", "author": "", "orig_id": 1410164}}, {"model": "metainfo.source", "pk": 6314, "fields": {"orig_filename": "Pribram_Richard_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276", "author": "", "orig_id": 1410165}}, {"model": "metainfo.source", "pk": 6315, "fields": {"orig_filename": "Pribyl_Leo-Eugen_1848_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276", "author": "", "orig_id": 1410166}}, {"model": "metainfo.source", "pk": 6316, "fields": {"orig_filename": "Price_Julius_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276f.", "author": "", "orig_id": 1410167}}, {"model": "metainfo.source", "pk": 6317, "fields": {"orig_filename": "Priebsch_Josef_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277", "author": "", "orig_id": 1410168}}, {"model": "metainfo.source", "pk": 6318, "fields": {"orig_filename": "Priebsch_Robert_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277", "author": "", "orig_id": 1410169}}, {"model": "metainfo.source", "pk": 6319, "fields": {"orig_filename": "Prielle_Kornelia_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277f.", "author": "", "orig_id": 1410170}}, {"model": "metainfo.source", "pk": 6320, "fields": {"orig_filename": "Priessnitz_Vinzenz_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278", "author": "", "orig_id": 1410171}}, {"model": "metainfo.source", "pk": 6321, "fields": {"orig_filename": "Prihoda_Eduard_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278", "author": "", "orig_id": 1410172}}, {"model": "metainfo.source", "pk": 6322, "fields": {"orig_filename": "Prihonsky_Franz_1788_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278f.", "author": "", "orig_id": 1410173}}, {"model": "metainfo.source", "pk": 6323, "fields": {"orig_filename": "Prijatelj_Ivan_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 279", "author": "", "orig_id": 1410248}}, {"model": "metainfo.source", "pk": 6324, "fields": {"orig_filename": "Prikryl_Ondrej_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410249}}, {"model": "metainfo.source", "pk": 6325, "fields": {"orig_filename": "Prill_Karl_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410250}}, {"model": "metainfo.source", "pk": 6326, "fields": {"orig_filename": "Primavesi-Primamonte_Viktor_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280f.", "author": "", "orig_id": 1410252}}, {"model": "metainfo.source", "pk": 6327, "fields": {"orig_filename": "Primavesi_Eduard_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410251}}, {"model": "metainfo.source", "pk": 6328, "fields": {"orig_filename": "Primic_Janez-Nep_1785_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 281", "author": "", "orig_id": 1410253}}, {"model": "metainfo.source", "pk": 6329, "fields": {"orig_filename": "Primisser_Alois_1796_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 281f.", "author": "", "orig_id": 1410254}}, {"model": "metainfo.source", "pk": 6330, "fields": {"orig_filename": "Primisser_Johann-Bapt_1739_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282", "author": "", "orig_id": 1410255}}, {"model": "metainfo.source", "pk": 6331, "fields": {"orig_filename": "Prina_Luigi_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282", "author": "", "orig_id": 1410256}}, {"model": "metainfo.source", "pk": 6332, "fields": {"orig_filename": "Princip_Gavrilo_1894_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282f.", "author": "", "orig_id": 1410257}}, {"model": "metainfo.source", "pk": 6333, "fields": {"orig_filename": "Prinzhofer_August_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410262}}, {"model": "metainfo.source", "pk": 6334, "fields": {"orig_filename": "Prinzinger_August_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284f.", "author": "", "orig_id": 1410263}}, {"model": "metainfo.source", "pk": 6335, "fields": {"orig_filename": "Prinzinger_August_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285", "author": "", "orig_id": 1410264}}, {"model": "metainfo.source", "pk": 6336, "fields": {"orig_filename": "Prinzinger_Heinrich_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285", "author": "", "orig_id": 1410265}}, {"model": "metainfo.source", "pk": 6337, "fields": {"orig_filename": "Prinz_Franz_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 283", "author": "", "orig_id": 1410258}}, {"model": "metainfo.source", "pk": 6338, "fields": {"orig_filename": "Prinz_Karl-Ludwig_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410260}}, {"model": "metainfo.source", "pk": 6339, "fields": {"orig_filename": "Prinz_Karl_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 283f.", "author": "", "orig_id": 1410259}}, {"model": "metainfo.source", "pk": 6340, "fields": {"orig_filename": "Prinz_Moriz_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410261}}, {"model": "metainfo.source", "pk": 6341, "fields": {"orig_filename": "Prisching_Franz_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285f.", "author": "", "orig_id": 1410266}}, {"model": "metainfo.source", "pk": 6342, "fields": {"orig_filename": "Pritz_Franz-X_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 286", "author": "", "orig_id": 1410267}}, {"model": "metainfo.source", "pk": 6343, "fields": {"orig_filename": "Privoznik_Eduard_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 286f.", "author": "", "orig_id": 1410268}}, {"model": "metainfo.source", "pk": 6344, "fields": {"orig_filename": "Prix_Johann-Nep_1836_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410269}}, {"model": "metainfo.source", "pk": 6345, "fields": {"orig_filename": "Probizer_Guido_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410271}}, {"model": "metainfo.source", "pk": 6346, "fields": {"orig_filename": "Proboscht_Josef-Wenzel_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410272}}, {"model": "metainfo.source", "pk": 6347, "fields": {"orig_filename": "Probstner-Neulublau-Jakubjan_Andreas-Julius_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410356}}, {"model": "metainfo.source", "pk": 6348, "fields": {"orig_filename": "Probstner-Neulublau-Jakubjan_Arthur-Napoleon_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289f.", "author": "", "orig_id": 1410357}}, {"model": "metainfo.source", "pk": 6349, "fields": {"orig_filename": "Probst_Jakob_1791_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287f.", "author": "", "orig_id": 1410350}}, {"model": "metainfo.source", "pk": 6350, "fields": {"orig_filename": "Probst_Johann-Eugen_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 288", "author": "", "orig_id": 1410352}}, {"model": "metainfo.source", "pk": 6351, "fields": {"orig_filename": "Probst_Johann-Nep_1756_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 288", "author": "", "orig_id": 1410351}}, {"model": "metainfo.source", "pk": 6352, "fields": {"orig_filename": "Probst_Josef-Benedikt_1773_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410354}}, {"model": "metainfo.source", "pk": 6353, "fields": {"orig_filename": "Probst_Josef_1808_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410353}}, {"model": "metainfo.source", "pk": 6354, "fields": {"orig_filename": "Probst_Karl_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410355}}, {"model": "metainfo.source", "pk": 6355, "fields": {"orig_filename": "Probszt-Ohstorff_Emil_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 290", "author": "", "orig_id": 1410358}}, {"model": "metainfo.source", "pk": 6356, "fields": {"orig_filename": "Prochaska-Muehlkampf_Alois_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298", "author": "", "orig_id": 1410448}}, {"model": "metainfo.source", "pk": 6357, "fields": {"orig_filename": "Prochaska_Antonin_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 291f.", "author": "", "orig_id": 1410361}}, {"model": "metainfo.source", "pk": 6358, "fields": {"orig_filename": "Prochaska_Antoni_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 291", "author": "", "orig_id": 1410360}}, {"model": "metainfo.source", "pk": 6359, "fields": {"orig_filename": "Prochaska_Arnost_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410362}}, {"model": "metainfo.source", "pk": 6360, "fields": {"orig_filename": "Prochaska_Emil_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410363}}, {"model": "metainfo.source", "pk": 6361, "fields": {"orig_filename": "Posch_Alois_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216", "author": "", "orig_id": 1409500}}, {"model": "metainfo.source", "pk": 6362, "fields": {"orig_filename": "Posch_Andreas_1770_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216", "author": "", "orig_id": 1409501}}, {"model": "metainfo.source", "pk": 6363, "fields": {"orig_filename": "Posch_Eduard-Roman_1856_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216f.", "author": "", "orig_id": 1409502}}, {"model": "metainfo.source", "pk": 6364, "fields": {"orig_filename": "Posch_Josef_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 217", "author": "", "orig_id": 1409503}}, {"model": "metainfo.source", "pk": 6365, "fields": {"orig_filename": "Posch_Leonhard_1750_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 217f.", "author": "", "orig_id": 1409504}}, {"model": "metainfo.source", "pk": 6366, "fields": {"orig_filename": "Posch_Marie_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409505}}, {"model": "metainfo.source", "pk": 6367, "fields": {"orig_filename": "Posch_Rudolf_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409506}}, {"model": "metainfo.source", "pk": 6368, "fields": {"orig_filename": "Posener_Johann-Paul_1793_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219", "author": "", "orig_id": 1409509}}, {"model": "metainfo.source", "pk": 6369, "fields": {"orig_filename": "Posepny_Franz_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219", "author": "", "orig_id": 1409510}}, {"model": "metainfo.source", "pk": 6370, "fields": {"orig_filename": "Posewitz_Samuel_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219f.", "author": "", "orig_id": 1409511}}, {"model": "metainfo.source", "pk": 6371, "fields": {"orig_filename": "Posewitz_Theodor_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409512}}, {"model": "metainfo.source", "pk": 6372, "fields": {"orig_filename": "Posilovic_Josip-Juraj_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409513}}, {"model": "metainfo.source", "pk": 6373, "fields": {"orig_filename": "Posonyi_Alexander_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409587}}, {"model": "metainfo.source", "pk": 6374, "fields": {"orig_filename": "Pospichal_Eduard-Ludvik_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220f.", "author": "", "orig_id": 1409588}}, {"model": "metainfo.source", "pk": 6375, "fields": {"orig_filename": "Pospisil_Josef_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409590}}, {"model": "metainfo.source", "pk": 6376, "fields": {"orig_filename": "Pospisil_Kristian-Eduard_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409591}}, {"model": "metainfo.source", "pk": 6377, "fields": {"orig_filename": "Pospisil_Vilem_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409592}}, {"model": "metainfo.source", "pk": 6378, "fields": {"orig_filename": "Possanner-Ehrenthal_Bruno_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221f.", "author": "", "orig_id": 1409593}}, {"model": "metainfo.source", "pk": 6379, "fields": {"orig_filename": "Possanner-Ehrenthal_Ernst_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409594}}, {"model": "metainfo.source", "pk": 6380, "fields": {"orig_filename": "Possanner-Ehrenthal_Gabriele_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409595}}, {"model": "metainfo.source", "pk": 6381, "fields": {"orig_filename": "Posselt-Csorich_Anton_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 223", "author": "", "orig_id": 1409598}}, {"model": "metainfo.source", "pk": 6382, "fields": {"orig_filename": "Posselt_Adolf-Heinrich_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409596}}, {"model": "metainfo.source", "pk": 6383, "fields": {"orig_filename": "Posselt_Kajetan_1809_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222f.", "author": "", "orig_id": 1409597}}, {"model": "metainfo.source", "pk": 6384, "fields": {"orig_filename": "Possinger-Choborski_Ludwig_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 223f.", "author": "", "orig_id": 1409599}}, {"model": "metainfo.source", "pk": 6385, "fields": {"orig_filename": "Posta_Bela_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409600}}, {"model": "metainfo.source", "pk": 6386, "fields": {"orig_filename": "Postelt_Alois_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409601}}, {"model": "metainfo.source", "pk": 6387, "fields": {"orig_filename": "Postinger_Carlo-Teodoro_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409602}}, {"model": "metainfo.source", "pk": 6388, "fields": {"orig_filename": "Postl_Karel_1769_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224f.", "author": "", "orig_id": 1409603}}, {"model": "metainfo.source", "pk": 6389, "fields": {"orig_filename": "Postl_Karl_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 225f.", "author": "", "orig_id": 1409604}}, {"model": "metainfo.source", "pk": 6390, "fields": {"orig_filename": "Postolka_August_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 226", "author": "", "orig_id": 1409605}}, {"model": "metainfo.source", "pk": 6391, "fields": {"orig_filename": "Potier-Echelles_Rudolf_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 226f.", "author": "", "orig_id": 1409606}}, {"model": "metainfo.source", "pk": 6392, "fields": {"orig_filename": "Potiorek_Oskar_1853_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 227", "author": "", "orig_id": 1409607}}, {"model": "metainfo.source", "pk": 6393, "fields": {"orig_filename": "Potkanski_Jan-Nep-Karol_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 227f.", "author": "", "orig_id": 1409608}}, {"model": "metainfo.source", "pk": 6394, "fields": {"orig_filename": "Potlis_Michael_1812_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 228", "author": "", "orig_id": 1409609}}, {"model": "metainfo.source", "pk": 6395, "fields": {"orig_filename": "Potocka_Katarzyna_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 228f.", "author": "", "orig_id": 1409678}}, {"model": "metainfo.source", "pk": 6396, "fields": {"orig_filename": "Potocka_Zofia_1790_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229", "author": "", "orig_id": 1409679}}, {"model": "metainfo.source", "pk": 6397, "fields": {"orig_filename": "Potocki_Adam_1822_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229", "author": "", "orig_id": 1409680}}, {"model": "metainfo.source", "pk": 6398, "fields": {"orig_filename": "Potocki_Alfred_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229f.", "author": "", "orig_id": 1409681}}, {"model": "metainfo.source", "pk": 6399, "fields": {"orig_filename": "Potocki_Alfred_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 230", "author": "", "orig_id": 1409682}}, {"model": "metainfo.source", "pk": 6400, "fields": {"orig_filename": "Potocki_Andrzej_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 230f.", "author": "", "orig_id": 1409683}}, {"model": "metainfo.source", "pk": 6401, "fields": {"orig_filename": "Potocki_Artur-Stanislaw_1787_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231", "author": "", "orig_id": 1409685}}, {"model": "metainfo.source", "pk": 6402, "fields": {"orig_filename": "Potocki_Artur_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231", "author": "", "orig_id": 1409684}}, {"model": "metainfo.source", "pk": 6403, "fields": {"orig_filename": "Potocnik_Blaz_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231f.", "author": "", "orig_id": 1409686}}, {"model": "metainfo.source", "pk": 6404, "fields": {"orig_filename": "Potocnik_Hermann_1892_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232", "author": "", "orig_id": 1409687}}, {"model": "metainfo.source", "pk": 6405, "fields": {"orig_filename": "Potocnik_Janez_1749_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232", "author": "", "orig_id": 1409688}}, {"model": "metainfo.source", "pk": 6406, "fields": {"orig_filename": "Potocnjak_Franko_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232f.", "author": "", "orig_id": 1409689}}, {"model": "metainfo.source", "pk": 6407, "fields": {"orig_filename": "Potoczek_Jan_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233", "author": "", "orig_id": 1409690}}, {"model": "metainfo.source", "pk": 6408, "fields": {"orig_filename": "Potoczek_Stanislaw_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233", "author": "", "orig_id": 1409691}}, {"model": "metainfo.source", "pk": 6409, "fields": {"orig_filename": "Potpeschnigg_Heinrich_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233f.", "author": "", "orig_id": 1409692}}, {"model": "metainfo.source", "pk": 6410, "fields": {"orig_filename": "Pottenburg_Nikolaus_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409695}}, {"model": "metainfo.source", "pk": 6411, "fields": {"orig_filename": "Pott_August_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409693}}, {"model": "metainfo.source", "pk": 6412, "fields": {"orig_filename": "Pott_Emil_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409694}}, {"model": "metainfo.source", "pk": 6413, "fields": {"orig_filename": "Potyka_Hugo_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235", "author": "", "orig_id": 1409696}}, {"model": "metainfo.source", "pk": 6414, "fields": {"orig_filename": "Povoden_Simon_1753_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235", "author": "", "orig_id": 1409697}}, {"model": "metainfo.source", "pk": 6415, "fields": {"orig_filename": "Povse_Franc_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235f.", "author": "", "orig_id": 1409698}}, {"model": "metainfo.source", "pk": 6416, "fields": {"orig_filename": "Powidaj_Ludwik_1830_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409699}}, {"model": "metainfo.source", "pk": 6417, "fields": {"orig_filename": "Pozdech_Josef_1811_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409773}}, {"model": "metainfo.source", "pk": 6418, "fields": {"orig_filename": "Pozzi_Giovanni_1769_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409774}}, {"model": "metainfo.source", "pk": 6419, "fields": {"orig_filename": "Pracher_Franz_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409775}}, {"model": "metainfo.source", "pk": 6420, "fields": {"orig_filename": "Prachner_Vaclav_1784_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236f.", "author": "", "orig_id": 1409776}}, {"model": "metainfo.source", "pk": 6421, "fields": {"orig_filename": "Prade_Heinrich_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 237", "author": "", "orig_id": 1409777}}, {"model": "metainfo.source", "pk": 6422, "fields": {"orig_filename": "Praeuscher_Hermann_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 237f.", "author": "", "orig_id": 1409778}}, {"model": "metainfo.source", "pk": 6423, "fields": {"orig_filename": "Prager_Albert_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409779}}, {"model": "metainfo.source", "pk": 6424, "fields": {"orig_filename": "Prager_Olga_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409780}}, {"model": "metainfo.source", "pk": 6425, "fields": {"orig_filename": "Prandstetter_Ignaz_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409781}}, {"model": "metainfo.source", "pk": 6426, "fields": {"orig_filename": "Prantl_Jakob-Isidor_1772_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409782}}, {"model": "metainfo.source", "pk": 6427, "fields": {"orig_filename": "Prantl_Therese_1839_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239", "author": "", "orig_id": 1409783}}, {"model": "metainfo.source", "pk": 6428, "fields": {"orig_filename": "Prantner_Ferdinand_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239", "author": "", "orig_id": 1409784}}, {"model": "metainfo.source", "pk": 6429, "fields": {"orig_filename": "Praprotnik_Andrej_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239f.", "author": "", "orig_id": 1409785}}, {"model": "metainfo.source", "pk": 6430, "fields": {"orig_filename": "Praprotnik_Franc_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240", "author": "", "orig_id": 1409786}}, {"model": "metainfo.source", "pk": 6431, "fields": {"orig_filename": "Praschniker_Kamillo_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 241f.", "author": "", "orig_id": 1409789}}, {"model": "metainfo.source", "pk": 6432, "fields": {"orig_filename": "Prasch_Adolf_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240", "author": "", "orig_id": 1409787}}, {"model": "metainfo.source", "pk": 6433, "fields": {"orig_filename": "Prasch_Alois_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240f.", "author": "", "orig_id": 1409788}}, {"model": "metainfo.source", "pk": 6434, "fields": {"orig_filename": "Prasek_Justin-V_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242", "author": "", "orig_id": 1409790}}, {"model": "metainfo.source", "pk": 6435, "fields": {"orig_filename": "Prasek_Karel_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242", "author": "", "orig_id": 1409791}}, {"model": "metainfo.source", "pk": 6436, "fields": {"orig_filename": "Prasek_Vincenc_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242f.", "author": "", "orig_id": 1409792}}, {"model": "metainfo.source", "pk": 6437, "fields": {"orig_filename": "Prasil_Wilhelm-Wenzel_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 243", "author": "", "orig_id": 1409793}}, {"model": "metainfo.source", "pk": 6438, "fields": {"orig_filename": "Prasnikar_Alois_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 243f.", "author": "", "orig_id": 1409794}}, {"model": "metainfo.source", "pk": 6439, "fields": {"orig_filename": "Prati_Eugenio_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 244", "author": "", "orig_id": 1409865}}, {"model": "metainfo.source", "pk": 6440, "fields": {"orig_filename": "Prati_Giovanni_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 244f.", "author": "", "orig_id": 1409866}}, {"model": "metainfo.source", "pk": 6441, "fields": {"orig_filename": "Prati_Romualdo_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 245", "author": "", "orig_id": 1409867}}, {"model": "metainfo.source", "pk": 6442, "fields": {"orig_filename": "Pratobevera-Wiesborn_Adolf_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246f.", "author": "", "orig_id": 1409871}}, {"model": "metainfo.source", "pk": 6443, "fields": {"orig_filename": "Pratobevera-Wiesborn_Karl-Josef_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247", "author": "", "orig_id": 1409872}}, {"model": "metainfo.source", "pk": 6444, "fields": {"orig_filename": "Pratobevera_Eduard_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246", "author": "", "orig_id": 1409869}}, {"model": "metainfo.source", "pk": 6445, "fields": {"orig_filename": "Pratobevera_Katharina_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246", "author": "", "orig_id": 1409870}}, {"model": "metainfo.source", "pk": 6446, "fields": {"orig_filename": "Prato_Giovanni_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 245f.", "author": "", "orig_id": 1409868}}, {"model": "metainfo.source", "pk": 6447, "fields": {"orig_filename": "Prattes_Markus_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247", "author": "", "orig_id": 1409873}}, {"model": "metainfo.source", "pk": 6448, "fields": {"orig_filename": "Prausnitz_Wilhelm_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248", "author": "", "orig_id": 1409876}}, {"model": "metainfo.source", "pk": 6449, "fields": {"orig_filename": "Praus_Josip_1829_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247f.", "author": "", "orig_id": 1409874}}, {"model": "metainfo.source", "pk": 6450, "fields": {"orig_filename": "Prawdik-Maehrau_Franz_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248", "author": "", "orig_id": 1409877}}, {"model": "metainfo.source", "pk": 6451, "fields": {"orig_filename": "Praxmarer_Josef_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248f.", "author": "", "orig_id": 1409878}}, {"model": "metainfo.source", "pk": 6452, "fields": {"orig_filename": "Prazakova_Klara_1891_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250", "author": "", "orig_id": 1409882}}, {"model": "metainfo.source", "pk": 6453, "fields": {"orig_filename": "Prazak_Alois_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 249", "author": "", "orig_id": 1409879}}, {"model": "metainfo.source", "pk": 6454, "fields": {"orig_filename": "Prazak_Jiri_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 249f.", "author": "", "orig_id": 1409880}}, {"model": "metainfo.source", "pk": 6455, "fields": {"orig_filename": "Prazak_Ottokar_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250", "author": "", "orig_id": 1409881}}, {"model": "metainfo.source", "pk": 6456, "fields": {"orig_filename": "Prazmowski_Adam_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250f.", "author": "", "orig_id": 1409883}}, {"model": "metainfo.source", "pk": 6457, "fields": {"orig_filename": "Prazner_Marian_1746_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251", "author": "", "orig_id": 1409884}}, {"model": "metainfo.source", "pk": 6458, "fields": {"orig_filename": "Precan_Leopold_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251", "author": "", "orig_id": 1409885}}, {"model": "metainfo.source", "pk": 6459, "fields": {"orig_filename": "Prechtler_Johann-Otto_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 252f.", "author": "", "orig_id": 1409959}}, {"model": "metainfo.source", "pk": 6460, "fields": {"orig_filename": "Prechtl_Johann-Josef_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251f.", "author": "", "orig_id": 1409958}}, {"model": "metainfo.source", "pk": 6461, "fields": {"orig_filename": "Predelli_Riccardo_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253", "author": "", "orig_id": 1409960}}, {"model": "metainfo.source", "pk": 6462, "fields": {"orig_filename": "Preen_Hugo_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253", "author": "", "orig_id": 1409961}}, {"model": "metainfo.source", "pk": 6463, "fields": {"orig_filename": "Pregant_Johann_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253f.", "author": "", "orig_id": 1409962}}, {"model": "metainfo.source", "pk": 6464, "fields": {"orig_filename": "Pregl_Fritz_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 254", "author": "", "orig_id": 1409963}}, {"model": "metainfo.source", "pk": 6465, "fields": {"orig_filename": "Poller_Kaspar_1783_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410625}}, {"model": "metainfo.source", "pk": 6466, "fields": {"orig_filename": "Poller_Magdalena_1786_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 183", "author": "", "orig_id": 1410696}}, {"model": "metainfo.source", "pk": 6467, "fields": {"orig_filename": "Pollet_Johann_1814_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 183", "author": "", "orig_id": 1410697}}, {"model": "metainfo.source", "pk": 6468, "fields": {"orig_filename": "Polley_Karl_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410698}}, {"model": "metainfo.source", "pk": 6469, "fields": {"orig_filename": "Pollhammer_Josef_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410699}}, {"model": "metainfo.source", "pk": 6470, "fields": {"orig_filename": "Polliack_Giovanni_1903_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410704}}, {"model": "metainfo.source", "pk": 6471, "fields": {"orig_filename": "Pollini_Ciro_1782_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185f.", "author": "", "orig_id": 1410705}}, {"model": "metainfo.source", "pk": 6472, "fields": {"orig_filename": "Pollini_Franz_1762_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410706}}, {"model": "metainfo.source", "pk": 6473, "fields": {"orig_filename": "Pollitzer_Adolf_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410707}}, {"model": "metainfo.source", "pk": 6474, "fields": {"orig_filename": "Polli_Carlo_1894_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410700}}, {"model": "metainfo.source", "pk": 6475, "fields": {"orig_filename": "Polli_Edoardo_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184f.", "author": "", "orig_id": 1410701}}, {"model": "metainfo.source", "pk": 6476, "fields": {"orig_filename": "Polli_Giorgio_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410702}}, {"model": "metainfo.source", "pk": 6477, "fields": {"orig_filename": "Polli_Giovanni_1826_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410703}}, {"model": "metainfo.source", "pk": 6478, "fields": {"orig_filename": "Polonyi_Geza_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410708}}, {"model": "metainfo.source", "pk": 6479, "fields": {"orig_filename": "Polsterer_Adalbert-Johann_1798_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410709}}, {"model": "metainfo.source", "pk": 6480, "fields": {"orig_filename": "Polsterer_Rudolf_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410710}}, {"model": "metainfo.source", "pk": 6481, "fields": {"orig_filename": "Polt_Johann-Josef_1775_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410711}}, {"model": "metainfo.source", "pk": 6482, "fields": {"orig_filename": "Polya_Jakab_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187f.", "author": "", "orig_id": 1410712}}, {"model": "metainfo.source", "pk": 6483, "fields": {"orig_filename": "Polya_Jozsef_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188", "author": "", "orig_id": 1410713}}, {"model": "metainfo.source", "pk": 6484, "fields": {"orig_filename": "Polzelli_Alois-Anton_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188", "author": "", "orig_id": 1410714}}, {"model": "metainfo.source", "pk": 6485, "fields": {"orig_filename": "Polzelli_Luigia_1760_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188f.", "author": "", "orig_id": 1410715}}, {"model": "metainfo.source", "pk": 6486, "fields": {"orig_filename": "Polzer-Hoditz-Wolframitz_Arthur_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189", "author": "", "orig_id": 1410717}}, {"model": "metainfo.source", "pk": 6487, "fields": {"orig_filename": "Polzer_Aurelius_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189", "author": "", "orig_id": 1410716}}, {"model": "metainfo.source", "pk": 6488, "fields": {"orig_filename": "Pomeranz_Caesar_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189f.", "author": "", "orig_id": 1410718}}, {"model": "metainfo.source", "pk": 6489, "fields": {"orig_filename": "Pomiankowski_Josef_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190", "author": "", "orig_id": 1410719}}, {"model": "metainfo.source", "pk": 6490, "fields": {"orig_filename": "Pommer_Gustav-Adolf_1851_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190", "author": "", "orig_id": 1410720}}, {"model": "metainfo.source", "pk": 6491, "fields": {"orig_filename": "Pommer_Josef_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190f.", "author": "", "orig_id": 1410721}}, {"model": "metainfo.source", "pk": 6492, "fields": {"orig_filename": "Pompery_Janos_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191", "author": "", "orig_id": 1410795}}, {"model": "metainfo.source", "pk": 6493, "fields": {"orig_filename": "Pomutiu_George_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191", "author": "", "orig_id": 1410796}}, {"model": "metainfo.source", "pk": 6494, "fields": {"orig_filename": "Ponchielli_Amilcare_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191f.", "author": "", "orig_id": 1410797}}, {"model": "metainfo.source", "pk": 6495, "fields": {"orig_filename": "Ponebsek_Janko_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410798}}, {"model": "metainfo.source", "pk": 6496, "fields": {"orig_filename": "Pongracz-Szent-Miklos-Ovar_Arthur_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410799}}, {"model": "metainfo.source", "pk": 6497, "fields": {"orig_filename": "Pongratz_Josef_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410800}}, {"model": "metainfo.source", "pk": 6498, "fields": {"orig_filename": "Pongratz_Karl_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410801}}, {"model": "metainfo.source", "pk": 6499, "fields": {"orig_filename": "Ponheimer_Kilian_1757_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410802}}, {"model": "metainfo.source", "pk": 6500, "fields": {"orig_filename": "Pontini_Friedrich_1874_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410803}}, {"model": "metainfo.source", "pk": 6501, "fields": {"orig_filename": "Pontz-Engelshofen_Kandidus_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193f.", "author": "", "orig_id": 1410804}}, {"model": "metainfo.source", "pk": 6502, "fields": {"orig_filename": "Pop-Martian_Dionisie_1829_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194", "author": "", "orig_id": 1410806}}, {"model": "metainfo.source", "pk": 6503, "fields": {"orig_filename": "Poparic_Bare_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194f.", "author": "", "orig_id": 1410807}}, {"model": "metainfo.source", "pk": 6504, "fields": {"orig_filename": "Popea_Nicolae_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410808}}, {"model": "metainfo.source", "pk": 6505, "fields": {"orig_filename": "Popelka_Augustin_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410809}}, {"model": "metainfo.source", "pk": 6506, "fields": {"orig_filename": "Popelka_Rudolf_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410810}}, {"model": "metainfo.source", "pk": 6507, "fields": {"orig_filename": "Popeller_Johann_1816_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195f.", "author": "", "orig_id": 1410811}}, {"model": "metainfo.source", "pk": 6508, "fields": {"orig_filename": "Popescu_Ioan_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410812}}, {"model": "metainfo.source", "pk": 6509, "fields": {"orig_filename": "Popescu_Nicolae_1835_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410813}}, {"model": "metainfo.source", "pk": 6510, "fields": {"orig_filename": "Popielski_Leon_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197", "author": "", "orig_id": 1410882}}, {"model": "metainfo.source", "pk": 6511, "fields": {"orig_filename": "Popiel_Jan_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410815}}, {"model": "metainfo.source", "pk": 6512, "fields": {"orig_filename": "Popiel_Pawel_1807_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196f.", "author": "", "orig_id": 1410814}}, {"model": "metainfo.source", "pk": 6513, "fields": {"orig_filename": "Popovici-Barcianu_Daniil_1847_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199", "author": "", "orig_id": 1410889}}, {"model": "metainfo.source", "pk": 6514, "fields": {"orig_filename": "Popovici-Barcianu_Sava_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199f.", "author": "", "orig_id": 1410890}}, {"model": "metainfo.source", "pk": 6515, "fields": {"orig_filename": "Popovici_Aurel-Constantin_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198f.", "author": "", "orig_id": 1410887}}, {"model": "metainfo.source", "pk": 6516, "fields": {"orig_filename": "Popovici_Gheorghe_1863_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199", "author": "", "orig_id": 1410888}}, {"model": "metainfo.source", "pk": 6517, "fields": {"orig_filename": "Popovics_Sandor_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 200", "author": "", "orig_id": 1410891}}, {"model": "metainfo.source", "pk": 6518, "fields": {"orig_filename": "Popovic_Aca_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197", "author": "", "orig_id": 1410883}}, {"model": "metainfo.source", "pk": 6519, "fields": {"orig_filename": "Popovic_Jovan-Sterija_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197f.", "author": "", "orig_id": 1410884}}, {"model": "metainfo.source", "pk": 6520, "fields": {"orig_filename": "Popovic_Mita_1841_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198", "author": "", "orig_id": 1410885}}, {"model": "metainfo.source", "pk": 6521, "fields": {"orig_filename": "Popovic_Stevan_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198", "author": "", "orig_id": 1410886}}, {"model": "metainfo.source", "pk": 6522, "fields": {"orig_filename": "Popper-Podhragy_Leopold_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410904}}, {"model": "metainfo.source", "pk": 6523, "fields": {"orig_filename": "Popper_David_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 204", "author": "", "orig_id": 1410900}}, {"model": "metainfo.source", "pk": 6524, "fields": {"orig_filename": "Popper_Josef_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 205", "author": "", "orig_id": 1410901}}, {"model": "metainfo.source", "pk": 6525, "fields": {"orig_filename": "Popper_Siegfried_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 205f.", "author": "", "orig_id": 1410902}}, {"model": "metainfo.source", "pk": 6526, "fields": {"orig_filename": "Popper_Wilhelm_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410903}}, {"model": "metainfo.source", "pk": 6527, "fields": {"orig_filename": "Poppinger_Karl_1902_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410980}}, {"model": "metainfo.source", "pk": 6528, "fields": {"orig_filename": "Popp_Adelheid_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 200f.", "author": "", "orig_id": 1410892}}, {"model": "metainfo.source", "pk": 6529, "fields": {"orig_filename": "Popp_Arnost-Bruno_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 201", "author": "", "orig_id": 1410893}}, {"model": "metainfo.source", "pk": 6530, "fields": {"orig_filename": "Popp_Augustin_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 201f.", "author": "", "orig_id": 1410894}}, {"model": "metainfo.source", "pk": 6531, "fields": {"orig_filename": "Popp_Julius_1849_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 202", "author": "", "orig_id": 1410895}}, {"model": "metainfo.source", "pk": 6532, "fields": {"orig_filename": "Popp_Leonidas_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 202f.", "author": "", "orig_id": 1410896}}, {"model": "metainfo.source", "pk": 6533, "fields": {"orig_filename": "Popp_Mihai_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203", "author": "", "orig_id": 1410897}}, {"model": "metainfo.source", "pk": 6534, "fields": {"orig_filename": "Popp_Vasile_1789_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203", "author": "", "orig_id": 1410898}}, {"model": "metainfo.source", "pk": 6535, "fields": {"orig_filename": "Popp_Wilhelm_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203f.", "author": "", "orig_id": 1410899}}, {"model": "metainfo.source", "pk": 6536, "fields": {"orig_filename": "Pop_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194", "author": "", "orig_id": 1410805}}, {"model": "metainfo.source", "pk": 6537, "fields": {"orig_filename": "Porak-Varna_Ernst_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 207", "author": "", "orig_id": 1410982}}, {"model": "metainfo.source", "pk": 6538, "fields": {"orig_filename": "Porcia_Franz_1753_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 207", "author": "", "orig_id": 1410983}}, {"model": "metainfo.source", "pk": 6539, "fields": {"orig_filename": "Porcius_Florian_1816_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410984}}, {"model": "metainfo.source", "pk": 6540, "fields": {"orig_filename": "Pordes_Friedrich_1890_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410985}}, {"model": "metainfo.source", "pk": 6541, "fields": {"orig_filename": "Porges-Portheim_Eduard_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410990}}, {"model": "metainfo.source", "pk": 6542, "fields": {"orig_filename": "Porges-Portheim_Juda-Leopold_1785_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410991}}, {"model": "metainfo.source", "pk": 6543, "fields": {"orig_filename": "Porges-Portheim_Max_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209f.", "author": "", "orig_id": 1410992}}, {"model": "metainfo.source", "pk": 6544, "fields": {"orig_filename": "Porges-Portheim_Moses_1781_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210", "author": "", "orig_id": 1410993}}, {"model": "metainfo.source", "pk": 6545, "fields": {"orig_filename": "Porges_Edmund_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410986}}, {"model": "metainfo.source", "pk": 6546, "fields": {"orig_filename": "Porges_Heinrich_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208f.", "author": "", "orig_id": 1410987}}, {"model": "metainfo.source", "pk": 6547, "fields": {"orig_filename": "Porges_Nathan_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410988}}, {"model": "metainfo.source", "pk": 6548, "fields": {"orig_filename": "Porges_Philipp_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410989}}, {"model": "metainfo.source", "pk": 6549, "fields": {"orig_filename": "Porro-Lambertenghi_Giulio_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211", "author": "", "orig_id": 1410996}}, {"model": "metainfo.source", "pk": 6550, "fields": {"orig_filename": "Porro_Edoardo_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210f.", "author": "", "orig_id": 1410995}}, {"model": "metainfo.source", "pk": 6551, "fields": {"orig_filename": "Porr_Arthur_1872_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210", "author": "", "orig_id": 1410994}}, {"model": "metainfo.source", "pk": 6552, "fields": {"orig_filename": "Porsch_Josef_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211", "author": "", "orig_id": 1410997}}, {"model": "metainfo.source", "pk": 6553, "fields": {"orig_filename": "Porta_Carlo_1775_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211f.", "author": "", "orig_id": 1410998}}, {"model": "metainfo.source", "pk": 6554, "fields": {"orig_filename": "Porta_Luigi_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 212", "author": "", "orig_id": 1410999}}, {"model": "metainfo.source", "pk": 6555, "fields": {"orig_filename": "Porta_Pietro_1832_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 212f.", "author": "", "orig_id": 1411000}}, {"model": "metainfo.source", "pk": 6556, "fields": {"orig_filename": "Portele_Karl_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213", "author": "", "orig_id": 1411001}}, {"model": "metainfo.source", "pk": 6557, "fields": {"orig_filename": "Portenschlag-Ledermayer_Franz_1772_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213", "author": "", "orig_id": 1411002}}, {"model": "metainfo.source", "pk": 6558, "fields": {"orig_filename": "Porth_Wenzel_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213f.", "author": "", "orig_id": 1409491}}, {"model": "metainfo.source", "pk": 6559, "fields": {"orig_filename": "Portugall_Ferdinand_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214", "author": "", "orig_id": 1409492}}, {"model": "metainfo.source", "pk": 6560, "fields": {"orig_filename": "Porubsky_Josef_1811_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214", "author": "", "orig_id": 1409493}}, {"model": "metainfo.source", "pk": 6561, "fields": {"orig_filename": "Porumbescu_Ciprian_1853_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214f.", "author": "", "orig_id": 1409494}}, {"model": "metainfo.source", "pk": 6562, "fields": {"orig_filename": "Porumbescu_Iraclie_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409495}}, {"model": "metainfo.source", "pk": 6563, "fields": {"orig_filename": "Porzer_Josef_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409496}}, {"model": "metainfo.source", "pk": 6564, "fields": {"orig_filename": "Porzsolt_Kalman_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409497}}, {"model": "metainfo.source", "pk": 6565, "fields": {"orig_filename": "Por_Antal_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206f.", "author": "", "orig_id": 1410981}}, {"model": "metainfo.source", "pk": 6566, "fields": {"orig_filename": "Posa_Lajos_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215f.", "author": "", "orig_id": 1409498}}, {"model": "metainfo.source", "pk": 6567, "fields": {"orig_filename": "Poschacher-Arelshoeh_Johann-Wilhelm_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218f.", "author": "", "orig_id": 1409508}}, {"model": "metainfo.source", "pk": 6568, "fields": {"orig_filename": "Poschacher_Anton_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409507}}, {"model": "metainfo.source", "pk": 6569, "fields": {"orig_filename": "Poettickh-Pettenegg_Eduard-Gaston_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 148f.", "author": "", "orig_id": 1410236}}, {"model": "metainfo.source", "pk": 6570, "fields": {"orig_filename": "Poetting-Persing_Gustav_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410237}}, {"model": "metainfo.source", "pk": 6571, "fields": {"orig_filename": "Poetting-Persing_Karl_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410238}}, {"model": "metainfo.source", "pk": 6572, "fields": {"orig_filename": "Poetzelberger_Robert_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410239}}, {"model": "metainfo.source", "pk": 6573, "fields": {"orig_filename": "Poetzl_Eduard_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149f.", "author": "", "orig_id": 1410240}}, {"model": "metainfo.source", "pk": 6574, "fields": {"orig_filename": "Pogacar_Janez-Zlatoust_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150", "author": "", "orig_id": 1410241}}, {"model": "metainfo.source", "pk": 6575, "fields": {"orig_filename": "Pogacnik_Franz_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150", "author": "", "orig_id": 1410243}}, {"model": "metainfo.source", "pk": 6576, "fields": {"orig_filename": "Pogacnik_Jozef_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150f.", "author": "", "orig_id": 1410242}}, {"model": "metainfo.source", "pk": 6577, "fields": {"orig_filename": "Pogatscher_Alois_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151", "author": "", "orig_id": 1410244}}, {"model": "metainfo.source", "pk": 6578, "fields": {"orig_filename": "Pogatscher_Heinrich_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151", "author": "", "orig_id": 1410245}}, {"model": "metainfo.source", "pk": 6579, "fields": {"orig_filename": "Pogatscher_Rudolf_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151f.", "author": "", "orig_id": 1410246}}, {"model": "metainfo.source", "pk": 6580, "fields": {"orig_filename": "Pogatschnig_Valentin_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410247}}, {"model": "metainfo.source", "pk": 6581, "fields": {"orig_filename": "Poggi_Cesare_1802_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410324}}, {"model": "metainfo.source", "pk": 6582, "fields": {"orig_filename": "Pogna_Giovanni_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410325}}, {"model": "metainfo.source", "pk": 6583, "fields": {"orig_filename": "Pogna_Giuseppe_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410326}}, {"model": "metainfo.source", "pk": 6584, "fields": {"orig_filename": "Pogranyi-Nagy_Geza_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153", "author": "", "orig_id": 1410327}}, {"model": "metainfo.source", "pk": 6585, "fields": {"orig_filename": "Pohl-Meiser_Viktoria_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 157", "author": "", "orig_id": 1410339}}, {"model": "metainfo.source", "pk": 6586, "fields": {"orig_filename": "Pohler_Amand_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 157f.", "author": "", "orig_id": 1410340}}, {"model": "metainfo.source", "pk": 6587, "fields": {"orig_filename": "Pohlig_Johannes_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410341}}, {"model": "metainfo.source", "pk": 6588, "fields": {"orig_filename": "Pohlig_Karl_1858_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410342}}, {"model": "metainfo.source", "pk": 6589, "fields": {"orig_filename": "Pohl_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153", "author": "", "orig_id": 1410328}}, {"model": "metainfo.source", "pk": 6590, "fields": {"orig_filename": "Pohl_Johann-Emanuel_1782_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154", "author": "", "orig_id": 1410330}}, {"model": "metainfo.source", "pk": 6591, "fields": {"orig_filename": "Pohl_Johann-Franz_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154", "author": "", "orig_id": 1410331}}, {"model": "metainfo.source", "pk": 6592, "fields": {"orig_filename": "Pohl_Johann_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153f.", "author": "", "orig_id": 1410329}}, {"model": "metainfo.source", "pk": 6593, "fields": {"orig_filename": "Pohl_Josef_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154f.", "author": "", "orig_id": 1410332}}, {"model": "metainfo.source", "pk": 6594, "fields": {"orig_filename": "Pohl_Julius_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155", "author": "", "orig_id": 1410333}}, {"model": "metainfo.source", "pk": 6595, "fields": {"orig_filename": "Pohl_Karl-Ferdinand_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155", "author": "", "orig_id": 1410334}}, {"model": "metainfo.source", "pk": 6596, "fields": {"orig_filename": "Pohl_Max_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155f.", "author": "", "orig_id": 1410335}}, {"model": "metainfo.source", "pk": 6597, "fields": {"orig_filename": "Pohl_Robert_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 156", "author": "", "orig_id": 1410336}}, {"model": "metainfo.source", "pk": 6598, "fields": {"orig_filename": "Pohl_Wenzel_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 156f.", "author": "", "orig_id": 1410337}}, {"model": "metainfo.source", "pk": 6599, "fields": {"orig_filename": "Pohnert_Karl_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410343}}, {"model": "metainfo.source", "pk": 6600, "fields": {"orig_filename": "Pojatzi_Florian_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158f.", "author": "", "orig_id": 1410344}}, {"model": "metainfo.source", "pk": 6601, "fields": {"orig_filename": "Poklukar_Josip_1837_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159", "author": "", "orig_id": 1410345}}, {"model": "metainfo.source", "pk": 6602, "fields": {"orig_filename": "Pokoly_Jozsef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159", "author": "", "orig_id": 1410346}}, {"model": "metainfo.source", "pk": 6603, "fields": {"orig_filename": "Pokorny-Fuerstenschild_Alois_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410428}}, {"model": "metainfo.source", "pk": 6604, "fields": {"orig_filename": "Pokorny_Adalbert_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160", "author": "", "orig_id": 1410348}}, {"model": "metainfo.source", "pk": 6605, "fields": {"orig_filename": "Pokorny_Alois_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160f.", "author": "", "orig_id": 1410420}}, {"model": "metainfo.source", "pk": 6606, "fields": {"orig_filename": "Pokorny_Emanuel_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 161", "author": "", "orig_id": 1410421}}, {"model": "metainfo.source", "pk": 6607, "fields": {"orig_filename": "Pokorny_Franz_1797_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 161f.", "author": "", "orig_id": 1410422}}, {"model": "metainfo.source", "pk": 6608, "fields": {"orig_filename": "Pokorny_Johann_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162", "author": "", "orig_id": 1410423}}, {"model": "metainfo.source", "pk": 6609, "fields": {"orig_filename": "Pokorny_Josef-Vaclav_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162", "author": "", "orig_id": 1410424}}, {"model": "metainfo.source", "pk": 6610, "fields": {"orig_filename": "Pokorny_Rudolf_1853_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162f.", "author": "", "orig_id": 1410425}}, {"model": "metainfo.source", "pk": 6611, "fields": {"orig_filename": "Pokorny_Rudolf_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410426}}, {"model": "metainfo.source", "pk": 6612, "fields": {"orig_filename": "Pokorny_Wilhelm_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410427}}, {"model": "metainfo.source", "pk": 6613, "fields": {"orig_filename": "Pokorn_Franc_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159f.", "author": "", "orig_id": 1410347}}, {"model": "metainfo.source", "pk": 6614, "fields": {"orig_filename": "Pokutynski_Filip_1829_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163f.", "author": "", "orig_id": 1410429}}, {"model": "metainfo.source", "pk": 6615, "fields": {"orig_filename": "Pokutynski_Jozef_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 164", "author": "", "orig_id": 1410430}}, {"model": "metainfo.source", "pk": 6616, "fields": {"orig_filename": "Pol-Pollenburg_Wincenty_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 164f.", "author": "", "orig_id": 1410431}}, {"model": "metainfo.source", "pk": 6617, "fields": {"orig_filename": "Polacco_Luigi_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165", "author": "", "orig_id": 1410432}}, {"model": "metainfo.source", "pk": 6618, "fields": {"orig_filename": "Polacek_Karel_1892_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165", "author": "", "orig_id": 1410433}}, {"model": "metainfo.source", "pk": 6619, "fields": {"orig_filename": "Polaczek_Stanislaw-Karol_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165f.", "author": "", "orig_id": 1410434}}, {"model": "metainfo.source", "pk": 6620, "fields": {"orig_filename": "Polaczkowna_Helena_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410435}}, {"model": "metainfo.source", "pk": 6621, "fields": {"orig_filename": "Polak-Klumberg_Alexander_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410527}}, {"model": "metainfo.source", "pk": 6622, "fields": {"orig_filename": "Polak-Parnau_Bernhard_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410528}}, {"model": "metainfo.source", "pk": 6623, "fields": {"orig_filename": "Polak-Parnegg_Leopold_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410529}}, {"model": "metainfo.source", "pk": 6624, "fields": {"orig_filename": "Polak-Rudin_Adolf_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174f.", "author": "", "orig_id": 1410530}}, {"model": "metainfo.source", "pk": 6625, "fields": {"orig_filename": "Polak_Antal_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410436}}, {"model": "metainfo.source", "pk": 6626, "fields": {"orig_filename": "Polak_Chaim_1834_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410437}}, {"model": "metainfo.source", "pk": 6627, "fields": {"orig_filename": "Polak_David-Rudolf_1814_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166f.", "author": "", "orig_id": 1410438}}, {"model": "metainfo.source", "pk": 6628, "fields": {"orig_filename": "Polak_Ernst_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 167", "author": "", "orig_id": 1410439}}, {"model": "metainfo.source", "pk": 6629, "fields": {"orig_filename": "Polak_Ferdinande_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 167f.", "author": "", "orig_id": 1410440}}, {"model": "metainfo.source", "pk": 6630, "fields": {"orig_filename": "Polak_Friedrich_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 168", "author": "", "orig_id": 1410441}}, {"model": "metainfo.source", "pk": 6631, "fields": {"orig_filename": "Polak_Gustav_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 168f.", "author": "", "orig_id": 1410442}}, {"model": "metainfo.source", "pk": 6632, "fields": {"orig_filename": "Polak_Heinrich_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 169", "author": "", "orig_id": 1410511}}, {"model": "metainfo.source", "pk": 6633, "fields": {"orig_filename": "Polak_Irma_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 169f.", "author": "", "orig_id": 1410512}}, {"model": "metainfo.source", "pk": 6634, "fields": {"orig_filename": "Polak_Jacques_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410513}}, {"model": "metainfo.source", "pk": 6635, "fields": {"orig_filename": "Polak_Jakob-Eduard_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410514}}, {"model": "metainfo.source", "pk": 6636, "fields": {"orig_filename": "Polak_Joachim_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410515}}, {"model": "metainfo.source", "pk": 6637, "fields": {"orig_filename": "Polak_Josef_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410516}}, {"model": "metainfo.source", "pk": 6638, "fields": {"orig_filename": "Polak_Julius_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410517}}, {"model": "metainfo.source", "pk": 6639, "fields": {"orig_filename": "Polak_Lazar_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410518}}, {"model": "metainfo.source", "pk": 6640, "fields": {"orig_filename": "Polak_Leo_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410519}}, {"model": "metainfo.source", "pk": 6641, "fields": {"orig_filename": "Polak_Mihaly_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410520}}, {"model": "metainfo.source", "pk": 6642, "fields": {"orig_filename": "Polak_Miksa_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410521}}, {"model": "metainfo.source", "pk": 6643, "fields": {"orig_filename": "Polak_Otto_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410522}}, {"model": "metainfo.source", "pk": 6644, "fields": {"orig_filename": "Polak_Rudolf_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172f.", "author": "", "orig_id": 1410523}}, {"model": "metainfo.source", "pk": 6645, "fields": {"orig_filename": "Polak_Viljem_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173", "author": "", "orig_id": 1410524}}, {"model": "metainfo.source", "pk": 6646, "fields": {"orig_filename": "Polak_Vinzenz_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173", "author": "", "orig_id": 1410525}}, {"model": "metainfo.source", "pk": 6647, "fields": {"orig_filename": "Polak_Wilhelm-Johann_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173f.", "author": "", "orig_id": 1410526}}, {"model": "metainfo.source", "pk": 6648, "fields": {"orig_filename": "Polansky_Stanislaus_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 175", "author": "", "orig_id": 1410531}}, {"model": "metainfo.source", "pk": 6649, "fields": {"orig_filename": "Polek_Johann_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 175f.", "author": "", "orig_id": 1410532}}, {"model": "metainfo.source", "pk": 6650, "fields": {"orig_filename": "Polesini_Gian-Paolo_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410533}}, {"model": "metainfo.source", "pk": 6651, "fields": {"orig_filename": "Polic-Kamov_Janko_1886_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410607}}, {"model": "metainfo.source", "pk": 6652, "fields": {"orig_filename": "Polic_Martin_1850_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176f.", "author": "", "orig_id": 1410606}}, {"model": "metainfo.source", "pk": 6653, "fields": {"orig_filename": "Polikeit_Karl_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410608}}, {"model": "metainfo.source", "pk": 6654, "fields": {"orig_filename": "Polit-Desancic_Mihailo_1833_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410609}}, {"model": "metainfo.source", "pk": 6655, "fields": {"orig_filename": "Politeo_Dinko_1854_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178", "author": "", "orig_id": 1410610}}, {"model": "metainfo.source", "pk": 6656, "fields": {"orig_filename": "Politeo_Giorgio_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178", "author": "", "orig_id": 1410611}}, {"model": "metainfo.source", "pk": 6657, "fields": {"orig_filename": "Politi_Odorico_1785_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178f.", "author": "", "orig_id": 1410612}}, {"model": "metainfo.source", "pk": 6658, "fields": {"orig_filename": "Politzer-Csapo_Zsigmond_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180", "author": "", "orig_id": 1410615}}, {"model": "metainfo.source", "pk": 6659, "fields": {"orig_filename": "Politzer_Adam_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 179", "author": "", "orig_id": 1410613}}, {"model": "metainfo.source", "pk": 6660, "fields": {"orig_filename": "Politzer_Leopold-Maximilian_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 179f.", "author": "", "orig_id": 1410614}}, {"model": "metainfo.source", "pk": 6661, "fields": {"orig_filename": "Polivka_Jiri_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180", "author": "", "orig_id": 1410616}}, {"model": "metainfo.source", "pk": 6662, "fields": {"orig_filename": "Polivka_Vladimir_1896_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180f.", "author": "", "orig_id": 1410617}}, {"model": "metainfo.source", "pk": 6663, "fields": {"orig_filename": "Poli_Baldassarre_1795_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410534}}, {"model": "metainfo.source", "pk": 6664, "fields": {"orig_filename": "Poljak_Izidor_1883_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410618}}, {"model": "metainfo.source", "pk": 6665, "fields": {"orig_filename": "Poljanec_Ljudmila_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181f.", "author": "", "orig_id": 1410620}}, {"model": "metainfo.source", "pk": 6666, "fields": {"orig_filename": "Poljanec_Vinko_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410621}}, {"model": "metainfo.source", "pk": 6667, "fields": {"orig_filename": "Polka_Anna_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410622}}, {"model": "metainfo.source", "pk": 6668, "fields": {"orig_filename": "Pollanetz_Josef_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410623}}, {"model": "metainfo.source", "pk": 6669, "fields": {"orig_filename": "Poller_Alfons_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182f.", "author": "", "orig_id": 1410624}}, {"model": "metainfo.source", "pk": 6670, "fields": {"orig_filename": "Plank_Josef_1815_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115f.", "author": "", "orig_id": 1409840}}, {"model": "metainfo.source", "pk": 6671, "fields": {"orig_filename": "Planner-Plann_Julius_1827_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409842}}, {"model": "metainfo.source", "pk": 6672, "fields": {"orig_filename": "Plantan_Ivan_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409843}}, {"model": "metainfo.source", "pk": 6673, "fields": {"orig_filename": "Plappart-Frauenberg_Joachim-Friedrich_1753_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116f.", "author": "", "orig_id": 1409844}}, {"model": "metainfo.source", "pk": 6674, "fields": {"orig_filename": "Plappart-Leenheer_Anton_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409845}}, {"model": "metainfo.source", "pk": 6675, "fields": {"orig_filename": "Plappart-Leenheer_August_1836_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409846}}, {"model": "metainfo.source", "pk": 6676, "fields": {"orig_filename": "Plaschkes_Leopold_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409847}}, {"model": "metainfo.source", "pk": 6677, "fields": {"orig_filename": "Plaseller_Josef_1812_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117f.", "author": "", "orig_id": 1409848}}, {"model": "metainfo.source", "pk": 6678, "fields": {"orig_filename": "Plass_Karl_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409849}}, {"model": "metainfo.source", "pk": 6679, "fields": {"orig_filename": "Plattensteiner_Christian_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409851}}, {"model": "metainfo.source", "pk": 6680, "fields": {"orig_filename": "Platter_Julius_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409852}}, {"model": "metainfo.source", "pk": 6681, "fields": {"orig_filename": "Platte_August_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409850}}, {"model": "metainfo.source", "pk": 6682, "fields": {"orig_filename": "Plattner_Albert_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409853}}, {"model": "metainfo.source", "pk": 6683, "fields": {"orig_filename": "Plattner_Christian_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409854}}, {"model": "metainfo.source", "pk": 6684, "fields": {"orig_filename": "Plattner_Franz_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409855}}, {"model": "metainfo.source", "pk": 6685, "fields": {"orig_filename": "Plattner_Johann_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119f.", "author": "", "orig_id": 1409856}}, {"model": "metainfo.source", "pk": 6686, "fields": {"orig_filename": "Platzer_Ignac-Michael_1757_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409858}}, {"model": "metainfo.source", "pk": 6687, "fields": {"orig_filename": "Platzer_Robert_1831_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409859}}, {"model": "metainfo.source", "pk": 6688, "fields": {"orig_filename": "Plauert_Arno_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409860}}, {"model": "metainfo.source", "pk": 6689, "fields": {"orig_filename": "Plechacek_Aloisia_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121", "author": "", "orig_id": 1409862}}, {"model": "metainfo.source", "pk": 6690, "fields": {"orig_filename": "Plech_Johann_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120f.", "author": "", "orig_id": 1409861}}, {"model": "metainfo.source", "pk": 6691, "fields": {"orig_filename": "Plecnik_Janez_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121", "author": "", "orig_id": 1409863}}, {"model": "metainfo.source", "pk": 6692, "fields": {"orig_filename": "Pleischl_Adolf-Martin_1787_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121f.", "author": "", "orig_id": 1409864}}, {"model": "metainfo.source", "pk": 6693, "fields": {"orig_filename": "Plemel_Valentin_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122", "author": "", "orig_id": 1409935}}, {"model": "metainfo.source", "pk": 6694, "fields": {"orig_filename": "Plenciz_Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122", "author": "", "orig_id": 1409937}}, {"model": "metainfo.source", "pk": 6695, "fields": {"orig_filename": "Plener_Ernst_1841_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122f.", "author": "", "orig_id": 1409938}}, {"model": "metainfo.source", "pk": 6696, "fields": {"orig_filename": "Plener_Ignaz_1810_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123", "author": "", "orig_id": 1409939}}, {"model": "metainfo.source", "pk": 6697, "fields": {"orig_filename": "Plenker_Theodor_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123", "author": "", "orig_id": 1409940}}, {"model": "metainfo.source", "pk": 6698, "fields": {"orig_filename": "Plentzner-Scharneck_Gustav_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123f.", "author": "", "orig_id": 1409941}}, {"model": "metainfo.source", "pk": 6699, "fields": {"orig_filename": "Pleschner-Eichstett_Eduard_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409943}}, {"model": "metainfo.source", "pk": 6700, "fields": {"orig_filename": "Pleschner_Hans-Gallus_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409942}}, {"model": "metainfo.source", "pk": 6701, "fields": {"orig_filename": "Plesser_Alois_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124f.", "author": "", "orig_id": 1409945}}, {"model": "metainfo.source", "pk": 6702, "fields": {"orig_filename": "Plessing_Rudolf_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409946}}, {"model": "metainfo.source", "pk": 6703, "fields": {"orig_filename": "Pless_Franz_1819_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409944}}, {"model": "metainfo.source", "pk": 6704, "fields": {"orig_filename": "Plestenjak_Jan_1899_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409947}}, {"model": "metainfo.source", "pk": 6705, "fields": {"orig_filename": "Pletersnik_Maks_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409948}}, {"model": "metainfo.source", "pk": 6706, "fields": {"orig_filename": "Pletz_Josef_1788_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125f.", "author": "", "orig_id": 1409949}}, {"model": "metainfo.source", "pk": 6707, "fields": {"orig_filename": "Pleyel_Ignaz-Josef_1757_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 126", "author": "", "orig_id": 1409950}}, {"model": "metainfo.source", "pk": 6708, "fields": {"orig_filename": "Pleyer_Kleophas_1898_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 126f.", "author": "", "orig_id": 1409951}}, {"model": "metainfo.source", "pk": 6709, "fields": {"orig_filename": "Plichta_Soma_1832_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 127", "author": "", "orig_id": 1409952}}, {"model": "metainfo.source", "pk": 6710, "fields": {"orig_filename": "Pliveric_Josip_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 127", "author": "", "orig_id": 1409953}}, {"model": "metainfo.source", "pk": 6711, "fields": {"orig_filename": "Ploechl_Josef_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409954}}, {"model": "metainfo.source", "pk": 6712, "fields": {"orig_filename": "Ploehn_Robert_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409955}}, {"model": "metainfo.source", "pk": 6713, "fields": {"orig_filename": "Ploessl_Simon_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409956}}, {"model": "metainfo.source", "pk": 6714, "fields": {"orig_filename": "Ploj_Miroslav_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128f.", "author": "", "orig_id": 1409957}}, {"model": "metainfo.source", "pk": 6715, "fields": {"orig_filename": "Ploner_Innozenz_1865_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410026}}, {"model": "metainfo.source", "pk": 6716, "fields": {"orig_filename": "Ploner_Josef_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410027}}, {"model": "metainfo.source", "pk": 6717, "fields": {"orig_filename": "Plosz_Pal_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410028}}, {"model": "metainfo.source", "pk": 6718, "fields": {"orig_filename": "Plosz_Sandor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129f.", "author": "", "orig_id": 1410029}}, {"model": "metainfo.source", "pk": 6719, "fields": {"orig_filename": "Pluhar_Ladislav_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410030}}, {"model": "metainfo.source", "pk": 6720, "fields": {"orig_filename": "Pluskal_Frantisek_1811_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410031}}, {"model": "metainfo.source", "pk": 6721, "fields": {"orig_filename": "Poche_Adolf_1811_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410032}}, {"model": "metainfo.source", "pk": 6722, "fields": {"orig_filename": "Pockstaller_Pirmin_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131f.", "author": "", "orig_id": 1410036}}, {"model": "metainfo.source", "pk": 6723, "fields": {"orig_filename": "Pock_Alexander_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130f.", "author": "", "orig_id": 1410033}}, {"model": "metainfo.source", "pk": 6724, "fields": {"orig_filename": "Pock_Friedrich_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131", "author": "", "orig_id": 1410034}}, {"model": "metainfo.source", "pk": 6725, "fields": {"orig_filename": "Pock_Julius_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131", "author": "", "orig_id": 1410035}}, {"model": "metainfo.source", "pk": 6726, "fields": {"orig_filename": "Pocta_Filip_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410037}}, {"model": "metainfo.source", "pk": 6727, "fields": {"orig_filename": "Podaubsky_Eugen_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410038}}, {"model": "metainfo.source", "pk": 6728, "fields": {"orig_filename": "Podhajsky_Alois_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410040}}, {"model": "metainfo.source", "pk": 6729, "fields": {"orig_filename": "Podhajsky_Vincenc_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132f.", "author": "", "orig_id": 1410041}}, {"model": "metainfo.source", "pk": 6730, "fields": {"orig_filename": "Podhorsky_Katharina_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133", "author": "", "orig_id": 1410042}}, {"model": "metainfo.source", "pk": 6731, "fields": {"orig_filename": "Podhradsky_Josef_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133", "author": "", "orig_id": 1410043}}, {"model": "metainfo.source", "pk": 6732, "fields": {"orig_filename": "Podhradsky_Josef_1823_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133f.", "author": "", "orig_id": 1410044}}, {"model": "metainfo.source", "pk": 6733, "fields": {"orig_filename": "Podkonitzky_Adam_1750_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 134", "author": "", "orig_id": 1410045}}, {"model": "metainfo.source", "pk": 6734, "fields": {"orig_filename": "Podlaha_Antonin_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 134f.", "author": "", "orig_id": 1410046}}, {"model": "metainfo.source", "pk": 6735, "fields": {"orig_filename": "Podlewski_Walerian_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135", "author": "", "orig_id": 1410047}}, {"model": "metainfo.source", "pk": 6736, "fields": {"orig_filename": "Podlipny_Jan_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135", "author": "", "orig_id": 1410048}}, {"model": "metainfo.source", "pk": 6737, "fields": {"orig_filename": "Podlipska_Sofie_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135f.", "author": "", "orig_id": 1410126}}, {"model": "metainfo.source", "pk": 6738, "fields": {"orig_filename": "Podlipsky_Josef_1816_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 136", "author": "", "orig_id": 1410127}}, {"model": "metainfo.source", "pk": 6739, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Frigyes_1824_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 136f.", "author": "", "orig_id": 1410128}}, {"model": "metainfo.source", "pk": 6740, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Geza_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410129}}, {"model": "metainfo.source", "pk": 6741, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Jozsef_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410130}}, {"model": "metainfo.source", "pk": 6742, "fields": {"orig_filename": "Podraczky_Josef_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410131}}, {"model": "metainfo.source", "pk": 6743, "fields": {"orig_filename": "Poech_Franz-Josef_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137f.", "author": "", "orig_id": 1410132}}, {"model": "metainfo.source", "pk": 6744, "fields": {"orig_filename": "Poech_Rudolf_1870_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 138f.", "author": "", "orig_id": 1410133}}, {"model": "metainfo.source", "pk": 6745, "fields": {"orig_filename": "Poeck_Friedrich_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 139", "author": "", "orig_id": 1410134}}, {"model": "metainfo.source", "pk": 6746, "fields": {"orig_filename": "Poeck_Gregor_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 139f.", "author": "", "orig_id": 1410135}}, {"model": "metainfo.source", "pk": 6747, "fields": {"orig_filename": "Poeder_Franz_1779_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140", "author": "", "orig_id": 1410136}}, {"model": "metainfo.source", "pk": 6748, "fields": {"orig_filename": "Poehacker_Leopold_1782_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140", "author": "", "orig_id": 1410137}}, {"model": "metainfo.source", "pk": 6749, "fields": {"orig_filename": "Poehnl_Hans_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140f.", "author": "", "orig_id": 1410138}}, {"model": "metainfo.source", "pk": 6750, "fields": {"orig_filename": "Poelleritzer_Leopold_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410141}}, {"model": "metainfo.source", "pk": 6751, "fields": {"orig_filename": "Poellnitz_Ernst_1813_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410142}}, {"model": "metainfo.source", "pk": 6752, "fields": {"orig_filename": "Poell_Alfred_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410139}}, {"model": "metainfo.source", "pk": 6753, "fields": {"orig_filename": "Poell_Josef_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410140}}, {"model": "metainfo.source", "pk": 6754, "fields": {"orig_filename": "Poelt-Poeltenberg_Ernst_1807_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410144}}, {"model": "metainfo.source", "pk": 6755, "fields": {"orig_filename": "Poelt_Klara_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410143}}, {"model": "metainfo.source", "pk": 6756, "fields": {"orig_filename": "Poelzer_Amalie_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410145}}, {"model": "metainfo.source", "pk": 6757, "fields": {"orig_filename": "Poelzer_Johann_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143", "author": "", "orig_id": 1410146}}, {"model": "metainfo.source", "pk": 6758, "fields": {"orig_filename": "Poelzl_Franz-Xaver_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143", "author": "", "orig_id": 1410147}}, {"model": "metainfo.source", "pk": 6759, "fields": {"orig_filename": "Poenninger_Franz_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143f.", "author": "", "orig_id": 1410148}}, {"model": "metainfo.source", "pk": 6760, "fields": {"orig_filename": "Poenninger_Laurenz_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410222}}, {"model": "metainfo.source", "pk": 6761, "fields": {"orig_filename": "Poerner_Josef_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410223}}, {"model": "metainfo.source", "pk": 6762, "fields": {"orig_filename": "Poeschl_Alexander_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410224}}, {"model": "metainfo.source", "pk": 6763, "fields": {"orig_filename": "Poeschl_Josef_1794_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144f.", "author": "", "orig_id": 1410225}}, {"model": "metainfo.source", "pk": 6764, "fields": {"orig_filename": "Poeschl_Rudolf_1852_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145", "author": "", "orig_id": 1410226}}, {"model": "metainfo.source", "pk": 6765, "fields": {"orig_filename": "Poeschl_Viktor_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145", "author": "", "orig_id": 1410227}}, {"model": "metainfo.source", "pk": 6766, "fields": {"orig_filename": "Poesinger_Bernhard_1877_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145f.", "author": "", "orig_id": 1410228}}, {"model": "metainfo.source", "pk": 6767, "fields": {"orig_filename": "Poesinger_Rudolf_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410229}}, {"model": "metainfo.source", "pk": 6768, "fields": {"orig_filename": "Poessinger_Franz-Alexander_1767_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410230}}, {"model": "metainfo.source", "pk": 6769, "fields": {"orig_filename": "Poessl_Wilhelm_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410231}}, {"model": "metainfo.source", "pk": 6770, "fields": {"orig_filename": "Poestion_Josef-Calasanz_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 147", "author": "", "orig_id": 1410233}}, {"model": "metainfo.source", "pk": 6771, "fields": {"orig_filename": "Poestion_Josef_1741_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146f.", "author": "", "orig_id": 1410232}}, {"model": "metainfo.source", "pk": 6772, "fields": {"orig_filename": "Poetsch_Ignaz-Sigismund_1823_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 148", "author": "", "orig_id": 1410235}}, {"model": "metainfo.source", "pk": 6773, "fields": {"orig_filename": "Poetsch_Ignaz_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 147f.", "author": "", "orig_id": 1410234}}, {"model": "metainfo.source", "pk": 6774, "fields": {"orig_filename": "Pinkas_Ladislav_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410793}}, {"model": "metainfo.source", "pk": 6775, "fields": {"orig_filename": "Pinkas_Sobeslav-Hippolyt_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410794}}, {"model": "metainfo.source", "pk": 6776, "fields": {"orig_filename": "Pino-Friedenthal_Arthur-Georg_1843_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410860}}, {"model": "metainfo.source", "pk": 6777, "fields": {"orig_filename": "Pino-Friedenthal_Felix-Maria_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84f.", "author": "", "orig_id": 1410861}}, {"model": "metainfo.source", "pk": 6778, "fields": {"orig_filename": "Pinsker_Simcha_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 85f.", "author": "", "orig_id": 1410863}}, {"model": "metainfo.source", "pk": 6779, "fields": {"orig_filename": "Pins_Emil_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 85", "author": "", "orig_id": 1410862}}, {"model": "metainfo.source", "pk": 6780, "fields": {"orig_filename": "Pintaric_Fortunat_1798_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410866}}, {"model": "metainfo.source", "pk": 6781, "fields": {"orig_filename": "Pintar_Lovro_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410864}}, {"model": "metainfo.source", "pk": 6782, "fields": {"orig_filename": "Pintar_Luka_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410865}}, {"model": "metainfo.source", "pk": 6783, "fields": {"orig_filename": "Pintner_Theodor_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86f.", "author": "", "orig_id": 1410867}}, {"model": "metainfo.source", "pk": 6784, "fields": {"orig_filename": "Piotrowski_Gustaw_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87", "author": "", "orig_id": 1410868}}, {"model": "metainfo.source", "pk": 6785, "fields": {"orig_filename": "Piotrowski_Gustaw_1863_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87", "author": "", "orig_id": 1410869}}, {"model": "metainfo.source", "pk": 6786, "fields": {"orig_filename": "Pipitz_Franz_1815_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87f.", "author": "", "orig_id": 1410870}}, {"model": "metainfo.source", "pk": 6787, "fields": {"orig_filename": "Pipitz_Josef_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 88", "author": "", "orig_id": 1410871}}, {"model": "metainfo.source", "pk": 6788, "fields": {"orig_filename": "Pippich_Karel_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 88f.", "author": "", "orig_id": 1410872}}, {"model": "metainfo.source", "pk": 6789, "fields": {"orig_filename": "Pippich_Karl_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410873}}, {"model": "metainfo.source", "pk": 6790, "fields": {"orig_filename": "Pirchala_Emerich_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410877}}, {"model": "metainfo.source", "pk": 6791, "fields": {"orig_filename": "Pirchan_Emil_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410878}}, {"model": "metainfo.source", "pk": 6792, "fields": {"orig_filename": "Pirchegger_Anton_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410879}}, {"model": "metainfo.source", "pk": 6793, "fields": {"orig_filename": "Pirchegger_Simon_1889_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90f.", "author": "", "orig_id": 1410880}}, {"model": "metainfo.source", "pk": 6794, "fields": {"orig_filename": "Pirchl_Johann-Rudolf_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 91", "author": "", "orig_id": 1410881}}, {"model": "metainfo.source", "pk": 6795, "fields": {"orig_filename": "Pirckmayer_Friedrich_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 91f.", "author": "", "orig_id": 1410955}}, {"model": "metainfo.source", "pk": 6796, "fields": {"orig_filename": "Pirc_Alojzij_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410874}}, {"model": "metainfo.source", "pk": 6797, "fields": {"orig_filename": "Pirc_Ciril_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410875}}, {"model": "metainfo.source", "pk": 6798, "fields": {"orig_filename": "Pirc_Franc_1785_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89f.", "author": "", "orig_id": 1410876}}, {"model": "metainfo.source", "pk": 6799, "fields": {"orig_filename": "Piret-Bihain_Eugen_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410956}}, {"model": "metainfo.source", "pk": 6800, "fields": {"orig_filename": "Pirhalla_Martin_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410957}}, {"model": "metainfo.source", "pk": 6801, "fields": {"orig_filename": "Piringer_Benedikt_1775_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410958}}, {"model": "metainfo.source", "pk": 6802, "fields": {"orig_filename": "Piringer_Ferdinand_1780_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92f.", "author": "", "orig_id": 1410959}}, {"model": "metainfo.source", "pk": 6803, "fields": {"orig_filename": "Piringer_Josef-Friedrich_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410960}}, {"model": "metainfo.source", "pk": 6804, "fields": {"orig_filename": "Piringer_Michael_1763_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410961}}, {"model": "metainfo.source", "pk": 6805, "fields": {"orig_filename": "Piringer_Otto_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410962}}, {"model": "metainfo.source", "pk": 6806, "fields": {"orig_filename": "Pirjevec_Avgust_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93f.", "author": "", "orig_id": 1410963}}, {"model": "metainfo.source", "pk": 6807, "fields": {"orig_filename": "Pirker_Max_1886_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410964}}, {"model": "metainfo.source", "pk": 6808, "fields": {"orig_filename": "Pirkhert_Eduard-Max_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410965}}, {"model": "metainfo.source", "pk": 6809, "fields": {"orig_filename": "Pirko_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410966}}, {"model": "metainfo.source", "pk": 6810, "fields": {"orig_filename": "Pirnat_Niko_1903_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94f.", "author": "", "orig_id": 1410967}}, {"model": "metainfo.source", "pk": 6811, "fields": {"orig_filename": "Pirner_Maxmilian_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 95", "author": "", "orig_id": 1410968}}, {"model": "metainfo.source", "pk": 6812, "fields": {"orig_filename": "Pirquet-Cesenatico_Klemens_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 95f.", "author": "", "orig_id": 1410969}}, {"model": "metainfo.source", "pk": 6813, "fields": {"orig_filename": "Pirsch_Adolf_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410970}}, {"model": "metainfo.source", "pk": 6814, "fields": {"orig_filename": "Piscalar_Alois-Urban_1817_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410971}}, {"model": "metainfo.source", "pk": 6815, "fields": {"orig_filename": "Piscel_Antonio_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410972}}, {"model": "metainfo.source", "pk": 6816, "fields": {"orig_filename": "Pischek_Johann_1814_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410973}}, {"model": "metainfo.source", "pk": 6817, "fields": {"orig_filename": "Pischinger_Karl_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410974}}, {"model": "metainfo.source", "pk": 6818, "fields": {"orig_filename": "Pischinger_Oskar_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410975}}, {"model": "metainfo.source", "pk": 6819, "fields": {"orig_filename": "Pischitz_Georg_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97f.", "author": "", "orig_id": 1410976}}, {"model": "metainfo.source", "pk": 6820, "fields": {"orig_filename": "Pischl_Franz_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410977}}, {"model": "metainfo.source", "pk": 6821, "fields": {"orig_filename": "Pischof_Alfred_1882_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410978}}, {"model": "metainfo.source", "pk": 6822, "fields": {"orig_filename": "Pischof_Matthias_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410979}}, {"model": "metainfo.source", "pk": 6823, "fields": {"orig_filename": "Piskacek_Ludwig_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99", "author": "", "orig_id": 1409566}}, {"model": "metainfo.source", "pk": 6824, "fields": {"orig_filename": "Piskac_Bedrich_1898_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98f.", "author": "", "orig_id": 1409565}}, {"model": "metainfo.source", "pk": 6825, "fields": {"orig_filename": "Pisko_Franz-Josef_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99", "author": "", "orig_id": 1409567}}, {"model": "metainfo.source", "pk": 6826, "fields": {"orig_filename": "Pisko_Ignaz_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99f.", "author": "", "orig_id": 1409568}}, {"model": "metainfo.source", "pk": 6827, "fields": {"orig_filename": "Pisko_Oskar_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 100", "author": "", "orig_id": 1409569}}, {"model": "metainfo.source", "pk": 6828, "fields": {"orig_filename": "Pisling_Theophil_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 100f.", "author": "", "orig_id": 1409570}}, {"model": "metainfo.source", "pk": 6829, "fields": {"orig_filename": "Pistek_Franciszek_1786_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409655}}, {"model": "metainfo.source", "pk": 6830, "fields": {"orig_filename": "Pistor_Betty_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409656}}, {"model": "metainfo.source", "pk": 6831, "fields": {"orig_filename": "Pistor_Felix_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409657}}, {"model": "metainfo.source", "pk": 6832, "fields": {"orig_filename": "Pistor_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409658}}, {"model": "metainfo.source", "pk": 6833, "fields": {"orig_filename": "Pisztory_Mor_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409659}}, {"model": "metainfo.source", "pk": 6834, "fields": {"orig_filename": "Pitacco_Giorgio_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409660}}, {"model": "metainfo.source", "pk": 6835, "fields": {"orig_filename": "Pitha_Franz_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102f.", "author": "", "orig_id": 1409661}}, {"model": "metainfo.source", "pk": 6836, "fields": {"orig_filename": "Pitha_Vaclav_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103", "author": "", "orig_id": 1409662}}, {"model": "metainfo.source", "pk": 6837, "fields": {"orig_filename": "Pitner_Franz_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103", "author": "", "orig_id": 1409663}}, {"model": "metainfo.source", "pk": 6838, "fields": {"orig_filename": "Pitner_Maximilian_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103f.", "author": "", "orig_id": 1409664}}, {"model": "metainfo.source", "pk": 6839, "fields": {"orig_filename": "Pitra_Franz_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104", "author": "", "orig_id": 1409665}}, {"model": "metainfo.source", "pk": 6840, "fields": {"orig_filename": "Pitreich_Anton_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104", "author": "", "orig_id": 1409666}}, {"model": "metainfo.source", "pk": 6841, "fields": {"orig_filename": "Pitreich_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104f.", "author": "", "orig_id": 1409667}}, {"model": "metainfo.source", "pk": 6842, "fields": {"orig_filename": "Pitreich_Heinrich_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105", "author": "", "orig_id": 1409668}}, {"model": "metainfo.source", "pk": 6843, "fields": {"orig_filename": "Pitreich_Maximilian_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105", "author": "", "orig_id": 1409669}}, {"model": "metainfo.source", "pk": 6844, "fields": {"orig_filename": "Pitsch_Karl-Franz_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105f.", "author": "", "orig_id": 1409670}}, {"model": "metainfo.source", "pk": 6845, "fields": {"orig_filename": "Pittani_Antonio_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106", "author": "", "orig_id": 1409671}}, {"model": "metainfo.source", "pk": 6846, "fields": {"orig_filename": "Pittel_Adolf_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106", "author": "", "orig_id": 1409741}}, {"model": "metainfo.source", "pk": 6847, "fields": {"orig_filename": "Pittel_Heinrich_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106f.", "author": "", "orig_id": 1409672}}, {"model": "metainfo.source", "pk": 6848, "fields": {"orig_filename": "Pitteri_Riccardo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107", "author": "", "orig_id": 1409673}}, {"model": "metainfo.source", "pk": 6849, "fields": {"orig_filename": "Pittermann_Emil-Artur_1885_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107", "author": "", "orig_id": 1409674}}, {"model": "metainfo.source", "pk": 6850, "fields": {"orig_filename": "Pittner_Anton_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107f.", "author": "", "orig_id": 1409675}}, {"model": "metainfo.source", "pk": 6851, "fields": {"orig_filename": "Pittner_Wilhelm_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409676}}, {"model": "metainfo.source", "pk": 6852, "fields": {"orig_filename": "Pittoni_Valentino_1872_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409677}}, {"model": "metainfo.source", "pk": 6853, "fields": {"orig_filename": "Pitzer_Martin_1803_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409749}}, {"model": "metainfo.source", "pk": 6854, "fields": {"orig_filename": "Pitzinger_Franz_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108f.", "author": "", "orig_id": 1409750}}, {"model": "metainfo.source", "pk": 6855, "fields": {"orig_filename": "Piuariu-Molnar_Ioan_1749_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109", "author": "", "orig_id": 1409751}}, {"model": "metainfo.source", "pk": 6856, "fields": {"orig_filename": "Piva_Giovanni_1798_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109", "author": "", "orig_id": 1409752}}, {"model": "metainfo.source", "pk": 6857, "fields": {"orig_filename": "Pivko_Ljudevit_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109f.", "author": "", "orig_id": 1409753}}, {"model": "metainfo.source", "pk": 6858, "fields": {"orig_filename": "Pivoda_Frantisek_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110", "author": "", "orig_id": 1409754}}, {"model": "metainfo.source", "pk": 6859, "fields": {"orig_filename": "Pixis_Friedrich-Wilhelm_1785_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110", "author": "", "orig_id": 1409755}}, {"model": "metainfo.source", "pk": 6860, "fields": {"orig_filename": "Pixis_Theodor_1831_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110f.", "author": "", "orig_id": 1409756}}, {"model": "metainfo.source", "pk": 6861, "fields": {"orig_filename": "Pizzamano_Josef_1809_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111", "author": "", "orig_id": 1409757}}, {"model": "metainfo.source", "pk": 6862, "fields": {"orig_filename": "Pizzighelli_Giuseppe_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111", "author": "", "orig_id": 1409758}}, {"model": "metainfo.source", "pk": 6863, "fields": {"orig_filename": "Pizzini-Daltofonte_Antonio_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111f.", "author": "", "orig_id": 1409759}}, {"model": "metainfo.source", "pk": 6864, "fields": {"orig_filename": "Placek_Boleslav_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112", "author": "", "orig_id": 1409760}}, {"model": "metainfo.source", "pk": 6865, "fields": {"orig_filename": "Placek_Frantisek_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112", "author": "", "orig_id": 1409761}}, {"model": "metainfo.source", "pk": 6866, "fields": {"orig_filename": "Plachutta_Josef_1827_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112f.", "author": "", "orig_id": 1409762}}, {"model": "metainfo.source", "pk": 6867, "fields": {"orig_filename": "Plachy_Antonin_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409763}}, {"model": "metainfo.source", "pk": 6868, "fields": {"orig_filename": "Plachy_Vaclav_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409764}}, {"model": "metainfo.source", "pk": 6869, "fields": {"orig_filename": "Plaichinger_Karl_1880_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409765}}, {"model": "metainfo.source", "pk": 6870, "fields": {"orig_filename": "Plaichinger_Mathilde_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409766}}, {"model": "metainfo.source", "pk": 6871, "fields": {"orig_filename": "Plakolm_Johann_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409767}}, {"model": "metainfo.source", "pk": 6872, "fields": {"orig_filename": "Plancic_Juraj_1899_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409768}}, {"model": "metainfo.source", "pk": 6873, "fields": {"orig_filename": "Planck-Planckburg_Franz_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114f.", "author": "", "orig_id": 1409769}}, {"model": "metainfo.source", "pk": 6874, "fields": {"orig_filename": "Planck-Planckburg_Karl-Franz_1833_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409770}}, {"model": "metainfo.source", "pk": 6875, "fields": {"orig_filename": "Planckh_Viktor_1904_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409771}}, {"model": "metainfo.source", "pk": 6876, "fields": {"orig_filename": "Plankensteiner_Arnold_1824_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409841}}, {"model": "metainfo.source", "pk": 6877, "fields": {"orig_filename": "Plank_Beda_1741_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409772}}, {"model": "metainfo.source", "pk": 6878, "fields": {"orig_filename": "Piazza_Saulle_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410414}}, {"model": "metainfo.source", "pk": 6879, "fields": {"orig_filename": "Piaz_Giovanni-Battista_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48f.", "author": "", "orig_id": 1410412}}, {"model": "metainfo.source", "pk": 6880, "fields": {"orig_filename": "Pia_Julius_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 46", "author": "", "orig_id": 1410404}}, {"model": "metainfo.source", "pk": 6881, "fields": {"orig_filename": "Picciola_Giuseppe_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49f.", "author": "", "orig_id": 1410416}}, {"model": "metainfo.source", "pk": 6882, "fields": {"orig_filename": "Piccoli_Giorgio_1840_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50", "author": "", "orig_id": 1410417}}, {"model": "metainfo.source", "pk": 6883, "fields": {"orig_filename": "Picek_Vaclav-Jaromir_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50", "author": "", "orig_id": 1410418}}, {"model": "metainfo.source", "pk": 6884, "fields": {"orig_filename": "Pichelmayer_Karl_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50f.", "author": "", "orig_id": 1410419}}, {"model": "metainfo.source", "pk": 6885, "fields": {"orig_filename": "Pichler-Rautenkar_Adolf_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59", "author": "", "orig_id": 1410506}}, {"model": "metainfo.source", "pk": 6886, "fields": {"orig_filename": "Pichler_Anton-Andreas_1770_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52", "author": "", "orig_id": 1410489}}, {"model": "metainfo.source", "pk": 6887, "fields": {"orig_filename": "Pichler_Anton_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52", "author": "", "orig_id": 1410488}}, {"model": "metainfo.source", "pk": 6888, "fields": {"orig_filename": "Pichler_Elisabeth_1783_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52f.", "author": "", "orig_id": 1410490}}, {"model": "metainfo.source", "pk": 6889, "fields": {"orig_filename": "Pichler_Franz_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 53f.", "author": "", "orig_id": 1410491}}, {"model": "metainfo.source", "pk": 6890, "fields": {"orig_filename": "Pichler_Franz_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54", "author": "", "orig_id": 1410492}}, {"model": "metainfo.source", "pk": 6891, "fields": {"orig_filename": "Pichler_Friedrich_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54", "author": "", "orig_id": 1410493}}, {"model": "metainfo.source", "pk": 6892, "fields": {"orig_filename": "Pichler_Johann_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54f.", "author": "", "orig_id": 1410494}}, {"model": "metainfo.source", "pk": 6893, "fields": {"orig_filename": "Pichler_Johann_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55", "author": "", "orig_id": 1410495}}, {"model": "metainfo.source", "pk": 6894, "fields": {"orig_filename": "Pichler_Josef_1765_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55", "author": "", "orig_id": 1410496}}, {"model": "metainfo.source", "pk": 6895, "fields": {"orig_filename": "Pichler_Josef_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55f.", "author": "", "orig_id": 1410497}}, {"model": "metainfo.source", "pk": 6896, "fields": {"orig_filename": "Pichler_Karl_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 56", "author": "", "orig_id": 1410498}}, {"model": "metainfo.source", "pk": 6897, "fields": {"orig_filename": "Pichler_Karoline_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 56f.", "author": "", "orig_id": 1410499}}, {"model": "metainfo.source", "pk": 6898, "fields": {"orig_filename": "Pichler_Kasper_1796_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410500}}, {"model": "metainfo.source", "pk": 6899, "fields": {"orig_filename": "Pichler_Kletus_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410501}}, {"model": "metainfo.source", "pk": 6900, "fields": {"orig_filename": "Pichler_Luigi_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410502}}, {"model": "metainfo.source", "pk": 6901, "fields": {"orig_filename": "Pichler_Maximilian_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57f.", "author": "", "orig_id": 1410503}}, {"model": "metainfo.source", "pk": 6902, "fields": {"orig_filename": "Pichler_Rudolf_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58", "author": "", "orig_id": 1410504}}, {"model": "metainfo.source", "pk": 6903, "fields": {"orig_filename": "Pichler_Thomas_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58", "author": "", "orig_id": 1409740}}, {"model": "metainfo.source", "pk": 6904, "fields": {"orig_filename": "Pichler_Wilhelm_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58f.", "author": "", "orig_id": 1410505}}, {"model": "metainfo.source", "pk": 6905, "fields": {"orig_filename": "Pichlova_Frantiska_1811_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59", "author": "", "orig_id": 1410507}}, {"model": "metainfo.source", "pk": 6906, "fields": {"orig_filename": "Pichl_Alois-Ludwig_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 51", "author": "", "orig_id": 1410486}}, {"model": "metainfo.source", "pk": 6907, "fields": {"orig_filename": "Pichl_Josef-Bojislav_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 51f.", "author": "", "orig_id": 1410487}}, {"model": "metainfo.source", "pk": 6908, "fields": {"orig_filename": "Pickert_Karl_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410589}}, {"model": "metainfo.source", "pk": 6909, "fields": {"orig_filename": "Pickl-Witkenberg_Wilhelm_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410590}}, {"model": "metainfo.source", "pk": 6910, "fields": {"orig_filename": "Pick_Adolfo_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59f.", "author": "", "orig_id": 1410508}}, {"model": "metainfo.source", "pk": 6911, "fields": {"orig_filename": "Pick_Alois_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60", "author": "", "orig_id": 1410509}}, {"model": "metainfo.source", "pk": 6912, "fields": {"orig_filename": "Pick_Arnold_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60", "author": "", "orig_id": 1410510}}, {"model": "metainfo.source", "pk": 6913, "fields": {"orig_filename": "Pick_Friedrich_1867_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60f.", "author": "", "orig_id": 1410581}}, {"model": "metainfo.source", "pk": 6914, "fields": {"orig_filename": "Pick_Georg-Alexander_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61", "author": "", "orig_id": 1410582}}, {"model": "metainfo.source", "pk": 6915, "fields": {"orig_filename": "Pick_Gustav_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61", "author": "", "orig_id": 1410583}}, {"model": "metainfo.source", "pk": 6916, "fields": {"orig_filename": "Pick_Karl_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61f.", "author": "", "orig_id": 1410585}}, {"model": "metainfo.source", "pk": 6917, "fields": {"orig_filename": "Pick_Otto_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62", "author": "", "orig_id": 1410586}}, {"model": "metainfo.source", "pk": 6918, "fields": {"orig_filename": "Pick_Philipp-Josef_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62", "author": "", "orig_id": 1410587}}, {"model": "metainfo.source", "pk": 6919, "fields": {"orig_filename": "Pick_Walter_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62f.", "author": "", "orig_id": 1410588}}, {"model": "metainfo.source", "pk": 6920, "fields": {"orig_filename": "Picman_Josip_1904_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410591}}, {"model": "metainfo.source", "pk": 6921, "fields": {"orig_filename": "Pic_Josef-Ladislav_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410415}}, {"model": "metainfo.source", "pk": 6922, "fields": {"orig_filename": "Pidoll-Quintenbach_Michael_1851_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63f.", "author": "", "orig_id": 1410592}}, {"model": "metainfo.source", "pk": 6923, "fields": {"orig_filename": "Piekosinski_Franciszek_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 64", "author": "", "orig_id": 1410593}}, {"model": "metainfo.source", "pk": 6924, "fields": {"orig_filename": "Pielsticker_Ludwig_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 64", "author": "", "orig_id": 1410594}}, {"model": "metainfo.source", "pk": 6925, "fields": {"orig_filename": "Pieniazek_Czeslaw-Teofil_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65", "author": "", "orig_id": 1410595}}, {"model": "metainfo.source", "pk": 6926, "fields": {"orig_filename": "Pieniazek_Przemyslaw-Wiktor_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65", "author": "", "orig_id": 1410596}}, {"model": "metainfo.source", "pk": 6927, "fields": {"orig_filename": "Pienkowski_Stefan-Kazimierz_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65f.", "author": "", "orig_id": 1410597}}, {"model": "metainfo.source", "pk": 6928, "fields": {"orig_filename": "Piepenhagen_August_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66", "author": "", "orig_id": 1410598}}, {"model": "metainfo.source", "pk": 6929, "fields": {"orig_filename": "Pierling_Jakob_1784_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66", "author": "", "orig_id": 1410599}}, {"model": "metainfo.source", "pk": 6930, "fields": {"orig_filename": "Pierre_Viktor_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66f.", "author": "", "orig_id": 1410600}}, {"model": "metainfo.source", "pk": 6931, "fields": {"orig_filename": "Pierus_Theodor_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67", "author": "", "orig_id": 1410601}}, {"model": "metainfo.source", "pk": 6932, "fields": {"orig_filename": "Pierwipfl_Michael-Wolfgang_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67", "author": "", "orig_id": 1410602}}, {"model": "metainfo.source", "pk": 6933, "fields": {"orig_filename": "Piessinger_Maximilian_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67f.", "author": "", "orig_id": 1410603}}, {"model": "metainfo.source", "pk": 6934, "fields": {"orig_filename": "Pietak_Leonard_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410604}}, {"model": "metainfo.source", "pk": 6935, "fields": {"orig_filename": "Pietor_Ambro_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410673}}, {"model": "metainfo.source", "pk": 6936, "fields": {"orig_filename": "Pietruski_Oktaw_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410674}}, {"model": "metainfo.source", "pk": 6937, "fields": {"orig_filename": "Pietruski_Stanislaw-Konstanty_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68f.", "author": "", "orig_id": 1410675}}, {"model": "metainfo.source", "pk": 6938, "fields": {"orig_filename": "Pietrzikowsky_Eduard_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69", "author": "", "orig_id": 1410676}}, {"model": "metainfo.source", "pk": 6939, "fields": {"orig_filename": "Pietschmann_Adolf_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69", "author": "", "orig_id": 1410677}}, {"model": "metainfo.source", "pk": 6940, "fields": {"orig_filename": "Piette-Rivage_Prosper_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69f.", "author": "", "orig_id": 1410678}}, {"model": "metainfo.source", "pk": 6941, "fields": {"orig_filename": "Piette-Rivage_Prosper_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70", "author": "", "orig_id": 1410679}}, {"model": "metainfo.source", "pk": 6942, "fields": {"orig_filename": "Pietznigg_Franz_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70", "author": "", "orig_id": 1410680}}, {"model": "metainfo.source", "pk": 6943, "fields": {"orig_filename": "Piffl_Friedrich_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70f.", "author": "", "orig_id": 1410681}}, {"model": "metainfo.source", "pk": 6944, "fields": {"orig_filename": "Piffl_Otto_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71", "author": "", "orig_id": 1410682}}, {"model": "metainfo.source", "pk": 6945, "fields": {"orig_filename": "Piffrader_Johann_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71", "author": "", "orig_id": 1410683}}, {"model": "metainfo.source", "pk": 6946, "fields": {"orig_filename": "Piger_Johann_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410685}}, {"model": "metainfo.source", "pk": 6947, "fields": {"orig_filename": "Pig_Franz-Anton_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71f.", "author": "", "orig_id": 1410684}}, {"model": "metainfo.source", "pk": 6948, "fields": {"orig_filename": "Pikhart_Antonin_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410687}}, {"model": "metainfo.source", "pk": 6949, "fields": {"orig_filename": "Piksa_Maria-Samuela_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410688}}, {"model": "metainfo.source", "pk": 6950, "fields": {"orig_filename": "Pik_Franciszek_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410686}}, {"model": "metainfo.source", "pk": 6951, "fields": {"orig_filename": "Pilarski_Valentin-Kasimir_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74", "author": "", "orig_id": 1410692}}, {"model": "metainfo.source", "pk": 6952, "fields": {"orig_filename": "Pilar_Djuro_1846_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72f.", "author": "", "orig_id": 1410689}}, {"model": "metainfo.source", "pk": 6953, "fields": {"orig_filename": "Pilar_Ivo_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 73", "author": "", "orig_id": 1410690}}, {"model": "metainfo.source", "pk": 6954, "fields": {"orig_filename": "Pilar_Martin_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 73", "author": "", "orig_id": 1410691}}, {"model": "metainfo.source", "pk": 6955, "fields": {"orig_filename": "Pilat_Josef-Anton_1782_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74", "author": "", "orig_id": 1410693}}, {"model": "metainfo.source", "pk": 6956, "fields": {"orig_filename": "Pilat_Roman_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74f.", "author": "", "orig_id": 1410694}}, {"model": "metainfo.source", "pk": 6957, "fields": {"orig_filename": "Pilat_Tadeusz_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 75", "author": "", "orig_id": 1410695}}, {"model": "metainfo.source", "pk": 6958, "fields": {"orig_filename": "Pilat_Wladyslaw_1857_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 75f.", "author": "", "orig_id": 1410769}}, {"model": "metainfo.source", "pk": 6959, "fields": {"orig_filename": "Pilhal_Karl_1822_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410770}}, {"model": "metainfo.source", "pk": 6960, "fields": {"orig_filename": "Pillepic-Lippahora_Rudolf_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410772}}, {"model": "metainfo.source", "pk": 6961, "fields": {"orig_filename": "Pillepich_Pietro_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76f.", "author": "", "orig_id": 1410773}}, {"model": "metainfo.source", "pk": 6962, "fields": {"orig_filename": "Pillersdorff_Franz_1786_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77", "author": "", "orig_id": 1410775}}, {"model": "metainfo.source", "pk": 6963, "fields": {"orig_filename": "Piller_Piotr_1801_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77", "author": "", "orig_id": 1410774}}, {"model": "metainfo.source", "pk": 6964, "fields": {"orig_filename": "Pillewizer_Emerich_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77f.", "author": "", "orig_id": 1410776}}, {"model": "metainfo.source", "pk": 6965, "fields": {"orig_filename": "Pillewizer_Michaela_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410777}}, {"model": "metainfo.source", "pk": 6966, "fields": {"orig_filename": "Pillwax_Johann_1814_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410778}}, {"model": "metainfo.source", "pk": 6967, "fields": {"orig_filename": "Pillwax_Viktor-Josef_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410779}}, {"model": "metainfo.source", "pk": 6968, "fields": {"orig_filename": "Pillwein_Benedikt_1779_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78f.", "author": "", "orig_id": 1410780}}, {"model": "metainfo.source", "pk": 6969, "fields": {"orig_filename": "Pill_Karl-Emanuel_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410771}}, {"model": "metainfo.source", "pk": 6970, "fields": {"orig_filename": "Piltz_Jan_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 79", "author": "", "orig_id": 1410781}}, {"model": "metainfo.source", "pk": 6971, "fields": {"orig_filename": "Pilz_Vinzenz_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 79f.", "author": "", "orig_id": 1410782}}, {"model": "metainfo.source", "pk": 6972, "fields": {"orig_filename": "Pinali_Vincenzo_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80", "author": "", "orig_id": 1410783}}, {"model": "metainfo.source", "pk": 6973, "fields": {"orig_filename": "Pincherle_Salvatore_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80", "author": "", "orig_id": 1410784}}, {"model": "metainfo.source", "pk": 6974, "fields": {"orig_filename": "Pindter_Emil-Friedrich_1836_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80f.", "author": "", "orig_id": 1410785}}, {"model": "metainfo.source", "pk": 6975, "fields": {"orig_filename": "Pineles_Friedrich_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 81", "author": "", "orig_id": 1410786}}, {"model": "metainfo.source", "pk": 6976, "fields": {"orig_filename": "Pineles_Hirsch-Mendel_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 81f.", "author": "", "orig_id": 1410787}}, {"model": "metainfo.source", "pk": 6977, "fields": {"orig_filename": "Pineles_Samuel_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82", "author": "", "orig_id": 1410788}}, {"model": "metainfo.source", "pk": 6978, "fields": {"orig_filename": "Pineles_Stanislaus_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82", "author": "", "orig_id": 1410789}}, {"model": "metainfo.source", "pk": 6979, "fields": {"orig_filename": "Pinggera_Johann_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82f.", "author": "", "orig_id": 1410790}}, {"model": "metainfo.source", "pk": 6980, "fields": {"orig_filename": "Pininski_Leon_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 83", "author": "", "orig_id": 1410791}}, {"model": "metainfo.source", "pk": 6981, "fields": {"orig_filename": "Pinkas_Adolf-Maria_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 83f.", "author": "", "orig_id": 1410792}}, {"model": "metainfo.source", "pk": 6982, "fields": {"orig_filename": "Petter_Franz-Xaver_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12f.", "author": "", "orig_id": 1409739}}, {"model": "metainfo.source", "pk": 6983, "fields": {"orig_filename": "Petter_Theodor-Josef_1822_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407902}}, {"model": "metainfo.source", "pk": 6984, "fields": {"orig_filename": "Pettko_Jan_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14", "author": "", "orig_id": 1407906}}, {"model": "metainfo.source", "pk": 6985, "fields": {"orig_filename": "Petz-Hohenrhode_Eduard_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407910}}, {"model": "metainfo.source", "pk": 6986, "fields": {"orig_filename": "Petzer-Rasenheim_Anton_1794_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407911}}, {"model": "metainfo.source", "pk": 6987, "fields": {"orig_filename": "Petzmayer_Johann_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407912}}, {"model": "metainfo.source", "pk": 6988, "fields": {"orig_filename": "Petzold_Alfons_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 16f.", "author": "", "orig_id": 1407913}}, {"model": "metainfo.source", "pk": 6989, "fields": {"orig_filename": "Petzold_Marie_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407915}}, {"model": "metainfo.source", "pk": 6990, "fields": {"orig_filename": "Petzval_Josef-Maximilian_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17f.", "author": "", "orig_id": 1407916}}, {"model": "metainfo.source", "pk": 6991, "fields": {"orig_filename": "Petzval_Otto_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 18f.", "author": "", "orig_id": 1407917}}, {"model": "metainfo.source", "pk": 6992, "fields": {"orig_filename": "Petz_Anton_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14", "author": "", "orig_id": 1407907}}, {"model": "metainfo.source", "pk": 6993, "fields": {"orig_filename": "Petz_Gedeon_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14f.", "author": "", "orig_id": 1407908}}, {"model": "metainfo.source", "pk": 6994, "fields": {"orig_filename": "Petz_Josef_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407909}}, {"model": "metainfo.source", "pk": 6995, "fields": {"orig_filename": "Peucker_Karl_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19", "author": "", "orig_id": 1407918}}, {"model": "metainfo.source", "pk": 6996, "fields": {"orig_filename": "Peutlschmid_Robert_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19", "author": "", "orig_id": 1410100}}, {"model": "metainfo.source", "pk": 6997, "fields": {"orig_filename": "Pewny_Josef_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19f.", "author": "", "orig_id": 1410101}}, {"model": "metainfo.source", "pk": 6998, "fields": {"orig_filename": "Peyerle_Wilhelm_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410102}}, {"model": "metainfo.source", "pk": 6999, "fields": {"orig_filename": "Peyfuss_Karl-Johann_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410103}}, {"model": "metainfo.source", "pk": 7000, "fields": {"orig_filename": "Peyrer-Heimstaett_Karl_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410104}}, {"model": "metainfo.source", "pk": 7001, "fields": {"orig_filename": "Peyritsch_Johann-Josef_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20f.", "author": "", "orig_id": 1410105}}, {"model": "metainfo.source", "pk": 7002, "fields": {"orig_filename": "Pezolt_Georg_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 21", "author": "", "orig_id": 1410106}}, {"model": "metainfo.source", "pk": 7003, "fields": {"orig_filename": "Pezolt_Ludwig_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 21f.", "author": "", "orig_id": 1410107}}, {"model": "metainfo.source", "pk": 7004, "fields": {"orig_filename": "Pezzey_August_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410108}}, {"model": "metainfo.source", "pk": 7005, "fields": {"orig_filename": "Pezzey_August_1875_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410109}}, {"model": "metainfo.source", "pk": 7006, "fields": {"orig_filename": "Pezzicar_Francesco_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410112}}, {"model": "metainfo.source", "pk": 7007, "fields": {"orig_filename": "Pezzi_Francesco_1781_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410110}}, {"model": "metainfo.source", "pk": 7008, "fields": {"orig_filename": "Pezzi_Pietro_1757_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410111}}, {"model": "metainfo.source", "pk": 7009, "fields": {"orig_filename": "Pezzl_Johann_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22f.", "author": "", "orig_id": 1410113}}, {"model": "metainfo.source", "pk": 7010, "fields": {"orig_filename": "Pfaffinger_Michaela_1862_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24", "author": "", "orig_id": 1410117}}, {"model": "metainfo.source", "pk": 7011, "fields": {"orig_filename": "Pfaff_Annetta_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 23", "author": "", "orig_id": 1410114}}, {"model": "metainfo.source", "pk": 7012, "fields": {"orig_filename": "Pfaff_Ivo_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 23f.", "author": "", "orig_id": 1410115}}, {"model": "metainfo.source", "pk": 7013, "fields": {"orig_filename": "Pfaff_Wilhelm_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24", "author": "", "orig_id": 1410116}}, {"model": "metainfo.source", "pk": 7014, "fields": {"orig_filename": "Pfanhauser_Wilhelm_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24f.", "author": "", "orig_id": 1410118}}, {"model": "metainfo.source", "pk": 7015, "fields": {"orig_filename": "Pfanner_Franz_1825_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 25", "author": "", "orig_id": 1410119}}, {"model": "metainfo.source", "pk": 7016, "fields": {"orig_filename": "Pfannl_Heinrich_1870_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 25f.", "author": "", "orig_id": 1410120}}, {"model": "metainfo.source", "pk": 7017, "fields": {"orig_filename": "Pfaundler-Hadermur_Leopold_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 26f.", "author": "", "orig_id": 1410122}}, {"model": "metainfo.source", "pk": 7018, "fields": {"orig_filename": "Pfaundler-Hadermur_Meinhard_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 27", "author": "", "orig_id": 1410123}}, {"model": "metainfo.source", "pk": 7019, "fields": {"orig_filename": "Pfaundler-Sternfeld_Alois_1765_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 27f.", "author": "", "orig_id": 1410124}}, {"model": "metainfo.source", "pk": 7020, "fields": {"orig_filename": "Pfaundler-Sternfeld_Johann-Georg_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28", "author": "", "orig_id": 1410125}}, {"model": "metainfo.source", "pk": 7021, "fields": {"orig_filename": "Pfaundler_Ignaz-Johann_1808_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 26", "author": "", "orig_id": 1410121}}, {"model": "metainfo.source", "pk": 7022, "fields": {"orig_filename": "Pfausler_Peter-Paul_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28", "author": "", "orig_id": 1410199}}, {"model": "metainfo.source", "pk": 7023, "fields": {"orig_filename": "Pfefferle_Josef_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410202}}, {"model": "metainfo.source", "pk": 7024, "fields": {"orig_filename": "Pfeffer_Karl_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28f.", "author": "", "orig_id": 1410200}}, {"model": "metainfo.source", "pk": 7025, "fields": {"orig_filename": "Pfeffer_Rudolf_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410201}}, {"model": "metainfo.source", "pk": 7026, "fields": {"orig_filename": "Pfeifer-Forstheim_Johann_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35", "author": "", "orig_id": 1410219}}, {"model": "metainfo.source", "pk": 7027, "fields": {"orig_filename": "Pfeifer-Julienfels_Ferdinand_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35", "author": "", "orig_id": 1410220}}, {"model": "metainfo.source", "pk": 7028, "fields": {"orig_filename": "Pfeifer-Wellheim_Ferdinand_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35f.", "author": "", "orig_id": 1410221}}, {"model": "metainfo.source", "pk": 7029, "fields": {"orig_filename": "Pfeifer-Wellheim_Heinrich_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36", "author": "", "orig_id": 1410298}}, {"model": "metainfo.source", "pk": 7030, "fields": {"orig_filename": "Pfeifer_Anselm_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410203}}, {"model": "metainfo.source", "pk": 7031, "fields": {"orig_filename": "Pfeifer_Franz-Julius_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 30f.", "author": "", "orig_id": 1410205}}, {"model": "metainfo.source", "pk": 7032, "fields": {"orig_filename": "Pfeifer_Franz_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29f.", "author": "", "orig_id": 1410204}}, {"model": "metainfo.source", "pk": 7033, "fields": {"orig_filename": "Pfeifer_Heinrich_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31", "author": "", "orig_id": 1410206}}, {"model": "metainfo.source", "pk": 7034, "fields": {"orig_filename": "Pfeifer_Hermann_1877_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31", "author": "", "orig_id": 1410207}}, {"model": "metainfo.source", "pk": 7035, "fields": {"orig_filename": "Pfeifer_Ida_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31f.", "author": "", "orig_id": 1410208}}, {"model": "metainfo.source", "pk": 7036, "fields": {"orig_filename": "Pfeifer_Johann_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32", "author": "", "orig_id": 1410209}}, {"model": "metainfo.source", "pk": 7037, "fields": {"orig_filename": "Pfeifer_Josef-Anton_1776_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32f.", "author": "", "orig_id": 1410211}}, {"model": "metainfo.source", "pk": 7038, "fields": {"orig_filename": "Pfeifer_Josef_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32", "author": "", "orig_id": 1410210}}, {"model": "metainfo.source", "pk": 7039, "fields": {"orig_filename": "Pfeifer_Josip_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33", "author": "", "orig_id": 1410212}}, {"model": "metainfo.source", "pk": 7040, "fields": {"orig_filename": "Pfeifer_Julius-Anton_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410215}}, {"model": "metainfo.source", "pk": 7041, "fields": {"orig_filename": "Pfeifer_Juliusz_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410216}}, {"model": "metainfo.source", "pk": 7042, "fields": {"orig_filename": "Pfeifer_Julius_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33", "author": "", "orig_id": 1410213}}, {"model": "metainfo.source", "pk": 7043, "fields": {"orig_filename": "Pfeifer_Julius_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33f.", "author": "", "orig_id": 1410214}}, {"model": "metainfo.source", "pk": 7044, "fields": {"orig_filename": "Pfeifer_Karl-Hermann_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410217}}, {"model": "metainfo.source", "pk": 7045, "fields": {"orig_filename": "Pfeifer_Theodor_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34f.", "author": "", "orig_id": 1410218}}, {"model": "metainfo.source", "pk": 7046, "fields": {"orig_filename": "Pfeiffenberger_Karl-Gottlieb_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36", "author": "", "orig_id": 1410299}}, {"model": "metainfo.source", "pk": 7047, "fields": {"orig_filename": "Pfersche_Emil_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36f.", "author": "", "orig_id": 1410300}}, {"model": "metainfo.source", "pk": 7048, "fields": {"orig_filename": "Pferschy_Karl_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410301}}, {"model": "metainfo.source", "pk": 7049, "fields": {"orig_filename": "Pfersmann-Eichthal_Alois_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410302}}, {"model": "metainfo.source", "pk": 7050, "fields": {"orig_filename": "Pfest_Leopold-Ladislaus_1769_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410303}}, {"model": "metainfo.source", "pk": 7051, "fields": {"orig_filename": "Pfiffer_Karl_1805_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37f.", "author": "", "orig_id": 1410304}}, {"model": "metainfo.source", "pk": 7052, "fields": {"orig_filename": "Pfiffer_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410305}}, {"model": "metainfo.source", "pk": 7053, "fields": {"orig_filename": "Pfisterer_Ferdinand_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410306}}, {"model": "metainfo.source", "pk": 7054, "fields": {"orig_filename": "Pfistermeister_Karl_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410307}}, {"model": "metainfo.source", "pk": 7055, "fields": {"orig_filename": "Pfizmaier_August_1808_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38f.", "author": "", "orig_id": 1410308}}, {"model": "metainfo.source", "pk": 7056, "fields": {"orig_filename": "Pflanzer-Baltin_Karl_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 39", "author": "", "orig_id": 1410309}}, {"model": "metainfo.source", "pk": 7057, "fields": {"orig_filename": "Pflanzl_Otto_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 39f.", "author": "", "orig_id": 1410310}}, {"model": "metainfo.source", "pk": 7058, "fields": {"orig_filename": "Pfleger-Wertenau_Anton_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410311}}, {"model": "metainfo.source", "pk": 7059, "fields": {"orig_filename": "Pfluegl_Albert_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410312}}, {"model": "metainfo.source", "pk": 7060, "fields": {"orig_filename": "Pfluger_Josef_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40f.", "author": "", "orig_id": 1410314}}, {"model": "metainfo.source", "pk": 7061, "fields": {"orig_filename": "Pflug_Ottokar_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410313}}, {"model": "metainfo.source", "pk": 7062, "fields": {"orig_filename": "Pfohl_Ferdinand_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41", "author": "", "orig_id": 1410315}}, {"model": "metainfo.source", "pk": 7063, "fields": {"orig_filename": "Pfretzschner_Norbert_1817_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41", "author": "", "orig_id": 1410316}}, {"model": "metainfo.source", "pk": 7064, "fields": {"orig_filename": "Pfretzschner_Norbert_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41f.", "author": "", "orig_id": 1410317}}, {"model": "metainfo.source", "pk": 7065, "fields": {"orig_filename": "Pfundheller_Josef_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410319}}, {"model": "metainfo.source", "pk": 7066, "fields": {"orig_filename": "Pfund_Alois_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410318}}, {"model": "metainfo.source", "pk": 7067, "fields": {"orig_filename": "Pfurtscheller_Michael_1776_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410320}}, {"model": "metainfo.source", "pk": 7068, "fields": {"orig_filename": "Pfusterschmid-Hardtenstein_Karl_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410322}}, {"model": "metainfo.source", "pk": 7069, "fields": {"orig_filename": "Philippi_Josef_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43", "author": "", "orig_id": 1410398}}, {"model": "metainfo.source", "pk": 7070, "fields": {"orig_filename": "Philippovich-Philippsberg_Eugen_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43f.", "author": "", "orig_id": 1410399}}, {"model": "metainfo.source", "pk": 7071, "fields": {"orig_filename": "Philippovich-Philippsberg_Franz_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 44", "author": "", "orig_id": 1410400}}, {"model": "metainfo.source", "pk": 7072, "fields": {"orig_filename": "Philippovich-Philippsberg_Josef_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 44f.", "author": "", "orig_id": 1410401}}, {"model": "metainfo.source", "pk": 7073, "fields": {"orig_filename": "Philipp_Karl_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42f.", "author": "", "orig_id": 1410323}}, {"model": "metainfo.source", "pk": 7074, "fields": {"orig_filename": "Philipp_Peter_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43", "author": "", "orig_id": 1410396}}, {"model": "metainfo.source", "pk": 7075, "fields": {"orig_filename": "Phleps_Artur_1881_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 45f.", "author": "", "orig_id": 1410403}}, {"model": "metainfo.source", "pk": 7076, "fields": {"orig_filename": "Pian_Antonio_1784_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 46f.", "author": "", "orig_id": 1410405}}, {"model": "metainfo.source", "pk": 7077, "fields": {"orig_filename": "Pian_Giovanni_1813_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47", "author": "", "orig_id": 1410407}}, {"model": "metainfo.source", "pk": 7078, "fields": {"orig_filename": "Piasecki_Eugeniusz_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47", "author": "", "orig_id": 1410408}}, {"model": "metainfo.source", "pk": 7079, "fields": {"orig_filename": "Piatkiewicz_Ludwik_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47f.", "author": "", "orig_id": 1410409}}, {"model": "metainfo.source", "pk": 7080, "fields": {"orig_filename": "Piatnik_Ferdinand_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48", "author": "", "orig_id": 1410410}}, {"model": "metainfo.source", "pk": 7081, "fields": {"orig_filename": "Piave_Francesco-Maria_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48", "author": "", "orig_id": 1410411}}, {"model": "metainfo.source", "pk": 7082, "fields": {"orig_filename": "Piazza_Giulio_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410413}}, {"model": "metainfo.source", "pk": 7083, "fields": {"orig_filename": "Peroutka_Emanuel_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408282}}, {"model": "metainfo.source", "pk": 7084, "fields": {"orig_filename": "Persa_Alois_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408283}}, {"model": "metainfo.source", "pk": 7085, "fields": {"orig_filename": "Perthaler_Johann_1816_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429f.", "author": "", "orig_id": 1408284}}, {"model": "metainfo.source", "pk": 7086, "fields": {"orig_filename": "Perthaler_Karoline-Josefa-Ottilia_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430", "author": "", "orig_id": 1408285}}, {"model": "metainfo.source", "pk": 7087, "fields": {"orig_filename": "Pertik_Otto_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430", "author": "", "orig_id": 1408286}}, {"model": "metainfo.source", "pk": 7088, "fields": {"orig_filename": "Pertile_Antonio_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430f.", "author": "", "orig_id": 1408287}}, {"model": "metainfo.source", "pk": 7089, "fields": {"orig_filename": "Pertile_Giambattista_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 431", "author": "", "orig_id": 1408288}}, {"model": "metainfo.source", "pk": 7090, "fields": {"orig_filename": "Pertsch_Matteo_1769_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 431f.", "author": "", "orig_id": 1408289}}, {"model": "metainfo.source", "pk": 7091, "fields": {"orig_filename": "Perugia_Alberto-Moise_1843_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432", "author": "", "orig_id": 1408290}}, {"model": "metainfo.source", "pk": 7092, "fields": {"orig_filename": "Perusek_Harvey-Gregory_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432", "author": "", "orig_id": 1408291}}, {"model": "metainfo.source", "pk": 7093, "fields": {"orig_filename": "Perusek_Rajko_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432f.", "author": "", "orig_id": 1408354}}, {"model": "metainfo.source", "pk": 7094, "fields": {"orig_filename": "Perutz_Alfred_1885_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408355}}, {"model": "metainfo.source", "pk": 7095, "fields": {"orig_filename": "Peruzzini_Giovanni_1815_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408358}}, {"model": "metainfo.source", "pk": 7096, "fields": {"orig_filename": "Peruzzi_Franc_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408356}}, {"model": "metainfo.source", "pk": 7097, "fields": {"orig_filename": "Peruzzi_Svitoslav-Mihael_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408357}}, {"model": "metainfo.source", "pk": 7098, "fields": {"orig_filename": "Pervanoglu_Pietro_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408359}}, {"model": "metainfo.source", "pk": 7099, "fields": {"orig_filename": "Pesamosca_Osvaldo_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408360}}, {"model": "metainfo.source", "pk": 7100, "fields": {"orig_filename": "Pesante_Antonio_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408361}}, {"model": "metainfo.source", "pk": 7101, "fields": {"orig_filename": "Pesante_Giovanni_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408362}}, {"model": "metainfo.source", "pk": 7102, "fields": {"orig_filename": "Peschka_Franz_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434f.", "author": "", "orig_id": 1408363}}, {"model": "metainfo.source", "pk": 7103, "fields": {"orig_filename": "Peschka_Gustav-Adolf-Viktor_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435", "author": "", "orig_id": 1408364}}, {"model": "metainfo.source", "pk": 7104, "fields": {"orig_filename": "Peschka_Heinrich-Stefan_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435", "author": "", "orig_id": 1408365}}, {"model": "metainfo.source", "pk": 7105, "fields": {"orig_filename": "Peschka_Minna_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435f.", "author": "", "orig_id": 1408366}}, {"model": "metainfo.source", "pk": 7106, "fields": {"orig_filename": "Peschke_Julius-Paul_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408367}}, {"model": "metainfo.source", "pk": 7107, "fields": {"orig_filename": "Pesendorfer_Friedrich-Josef_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408368}}, {"model": "metainfo.source", "pk": 7108, "fields": {"orig_filename": "Pesendorfer_Josef_1791_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408369}}, {"model": "metainfo.source", "pk": 7109, "fields": {"orig_filename": "Pesina_Matej_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408370}}, {"model": "metainfo.source", "pk": 7110, "fields": {"orig_filename": "Pesjak_Luiza_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408371}}, {"model": "metainfo.source", "pk": 7111, "fields": {"orig_filename": "Pesjak_Mihael_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408372}}, {"model": "metainfo.source", "pk": 7112, "fields": {"orig_filename": "Peska_Bedrich_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408375}}, {"model": "metainfo.source", "pk": 7113, "fields": {"orig_filename": "Pessic-Koschnadol_Maximilian_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437f.", "author": "", "orig_id": 1408376}}, {"model": "metainfo.source", "pk": 7114, "fields": {"orig_filename": "Pesta_Karl_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438", "author": "", "orig_id": 1408377}}, {"model": "metainfo.source", "pk": 7115, "fields": {"orig_filename": "Pesty_Frigyes_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438", "author": "", "orig_id": 1408448}}, {"model": "metainfo.source", "pk": 7116, "fields": {"orig_filename": "Petak_Vaclav_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438f.", "author": "", "orig_id": 1408449}}, {"model": "metainfo.source", "pk": 7117, "fields": {"orig_filename": "Peteani-Steinberg_Arthur_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408451}}, {"model": "metainfo.source", "pk": 7118, "fields": {"orig_filename": "Peteani_Antonio_1789_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408450}}, {"model": "metainfo.source", "pk": 7119, "fields": {"orig_filename": "Petenyi_Salamon-Janos_1799_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408452}}, {"model": "metainfo.source", "pk": 7120, "fields": {"orig_filename": "Peter-Ferdinand__1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439f.", "author": "", "orig_id": 1408453}}, {"model": "metainfo.source", "pk": 7121, "fields": {"orig_filename": "Petera_Franz-Xaver-Bohuslav_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408457}}, {"model": "metainfo.source", "pk": 7122, "fields": {"orig_filename": "Peterfi_Karoly_1790_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408458}}, {"model": "metainfo.source", "pk": 7123, "fields": {"orig_filename": "Peterfy_Jenoe_1850_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408459}}, {"model": "metainfo.source", "pk": 7124, "fields": {"orig_filename": "Peterka_Otto_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441f.", "author": "", "orig_id": 1408460}}, {"model": "metainfo.source", "pk": 7125, "fields": {"orig_filename": "Peterka_Rudolf_1894_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442", "author": "", "orig_id": 1408461}}, {"model": "metainfo.source", "pk": 7126, "fields": {"orig_filename": "Peterlini_Dominik-Josef_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442", "author": "", "orig_id": 1408462}}, {"model": "metainfo.source", "pk": 7127, "fields": {"orig_filename": "Peterlongo_Johann_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442f.", "author": "", "orig_id": 1408463}}, {"model": "metainfo.source", "pk": 7128, "fields": {"orig_filename": "Petermandl_Anton_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 443", "author": "", "orig_id": 1408464}}, {"model": "metainfo.source", "pk": 7129, "fields": {"orig_filename": "Petermann_Helene_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 443f.", "author": "", "orig_id": 1408465}}, {"model": "metainfo.source", "pk": 7130, "fields": {"orig_filename": "Petermann_Reinhard-E_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408466}}, {"model": "metainfo.source", "pk": 7131, "fields": {"orig_filename": "Peterseim_Marcin_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445", "author": "", "orig_id": 1408470}}, {"model": "metainfo.source", "pk": 7132, "fields": {"orig_filename": "Petersilka_Karl_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445", "author": "", "orig_id": 1408542}}, {"model": "metainfo.source", "pk": 7133, "fields": {"orig_filename": "Peters_Guido_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408467}}, {"model": "metainfo.source", "pk": 7134, "fields": {"orig_filename": "Peters_Ignaz_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408468}}, {"model": "metainfo.source", "pk": 7135, "fields": {"orig_filename": "Peters_Karl-Ferdinand_1825_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444f.", "author": "", "orig_id": 1408469}}, {"model": "metainfo.source", "pk": 7136, "fields": {"orig_filename": "Peter_Emanuel-Thomas_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408454}}, {"model": "metainfo.source", "pk": 7137, "fields": {"orig_filename": "Peter_Franz_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408455}}, {"model": "metainfo.source", "pk": 7138, "fields": {"orig_filename": "Peter_Johann-Wenzel_1745_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408456}}, {"model": "metainfo.source", "pk": 7139, "fields": {"orig_filename": "Pethe-Kisszanto_Ferenc_1763_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445f.", "author": "", "orig_id": 1408543}}, {"model": "metainfo.source", "pk": 7140, "fields": {"orig_filename": "Pethes_Imre_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 446", "author": "", "orig_id": 1408544}}, {"model": "metainfo.source", "pk": 7141, "fields": {"orig_filename": "Petkovsek_Jozef_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 447", "author": "", "orig_id": 1408546}}, {"model": "metainfo.source", "pk": 7142, "fields": {"orig_filename": "Petko_Koloman_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 446f.", "author": "", "orig_id": 1408545}}, {"model": "metainfo.source", "pk": 7143, "fields": {"orig_filename": "Petoefi_Sandor_1823_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 447f.", "author": "", "orig_id": 1408547}}, {"model": "metainfo.source", "pk": 7144, "fields": {"orig_filename": "Petra-Petrescu_Nicolae_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 448", "author": "", "orig_id": 1408549}}, {"model": "metainfo.source", "pk": 7145, "fields": {"orig_filename": "Petracic_Franjo_1833_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408052}}, {"model": "metainfo.source", "pk": 7146, "fields": {"orig_filename": "Petrak_Alois_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408053}}, {"model": "metainfo.source", "pk": 7147, "fields": {"orig_filename": "Petranovic_Bozidar_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408054}}, {"model": "metainfo.source", "pk": 7148, "fields": {"orig_filename": "Petraschek_Karl_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2", "author": "", "orig_id": 1408056}}, {"model": "metainfo.source", "pk": 7149, "fields": {"orig_filename": "Petrasch_Konrad_1807_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408055}}, {"model": "metainfo.source", "pk": 7150, "fields": {"orig_filename": "Petrass_Ilona_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2", "author": "", "orig_id": 1408057}}, {"model": "metainfo.source", "pk": 7151, "fields": {"orig_filename": "Petravic_Ante_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2f.", "author": "", "orig_id": 1408058}}, {"model": "metainfo.source", "pk": 7152, "fields": {"orig_filename": "Petricevic_Georg_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4", "author": "", "orig_id": 1407874}}, {"model": "metainfo.source", "pk": 7153, "fields": {"orig_filename": "Petrichevich-Horvath-Szeplak_Lazar_1807_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4f.", "author": "", "orig_id": 1407875}}, {"model": "metainfo.source", "pk": 7154, "fields": {"orig_filename": "Petric_Ante_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4", "author": "", "orig_id": 1407873}}, {"model": "metainfo.source", "pk": 7155, "fields": {"orig_filename": "Petrikovich_Jan_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407878}}, {"model": "metainfo.source", "pk": 7156, "fields": {"orig_filename": "Petrik_Geza_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407876}}, {"model": "metainfo.source", "pk": 7157, "fields": {"orig_filename": "Petrik_Lajos_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407877}}, {"model": "metainfo.source", "pk": 7158, "fields": {"orig_filename": "Petrina_Franz-Adam_1799_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5f.", "author": "", "orig_id": 1407879}}, {"model": "metainfo.source", "pk": 7159, "fields": {"orig_filename": "Petrina_Theodor_1842_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407880}}, {"model": "metainfo.source", "pk": 7160, "fields": {"orig_filename": "Petrino_Alexander_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407881}}, {"model": "metainfo.source", "pk": 7161, "fields": {"orig_filename": "Petrivalsky_Julius_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407882}}, {"model": "metainfo.source", "pk": 7162, "fields": {"orig_filename": "Petri_Bernhard_1767_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3", "author": "", "orig_id": 1408059}}, {"model": "metainfo.source", "pk": 7163, "fields": {"orig_filename": "Petri_Elek_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3", "author": "", "orig_id": 1408060}}, {"model": "metainfo.source", "pk": 7164, "fields": {"orig_filename": "Petri_Karl_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3f.", "author": "", "orig_id": 1408061}}, {"model": "metainfo.source", "pk": 7165, "fields": {"orig_filename": "Petrlik_Kristian_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6f.", "author": "", "orig_id": 1407883}}, {"model": "metainfo.source", "pk": 7166, "fields": {"orig_filename": "Petrovic_Leo_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407884}}, {"model": "metainfo.source", "pk": 7167, "fields": {"orig_filename": "Petrovits_Demeter_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407886}}, {"model": "metainfo.source", "pk": 7168, "fields": {"orig_filename": "Petrovits_Ladislaus-Eugen_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407887}}, {"model": "metainfo.source", "pk": 7169, "fields": {"orig_filename": "Petrusevyc_Anton_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7f.", "author": "", "orig_id": 1407888}}, {"model": "metainfo.source", "pk": 7170, "fields": {"orig_filename": "Petruska_Franz_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8", "author": "", "orig_id": 1407889}}, {"model": "metainfo.source", "pk": 7171, "fields": {"orig_filename": "Petr_Vaclav_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 448", "author": "", "orig_id": 1408548}}, {"model": "metainfo.source", "pk": 7172, "fields": {"orig_filename": "Petschacher_Michael-Alexander_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8", "author": "", "orig_id": 1407890}}, {"model": "metainfo.source", "pk": 7173, "fields": {"orig_filename": "Petschek_Georg_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8f.", "author": "", "orig_id": 1407891}}, {"model": "metainfo.source", "pk": 7174, "fields": {"orig_filename": "Petschek_Ignaz_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 9", "author": "", "orig_id": 1407892}}, {"model": "metainfo.source", "pk": 7175, "fields": {"orig_filename": "Petschek_Julius_1856_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 9f.", "author": "", "orig_id": 1407893}}, {"model": "metainfo.source", "pk": 7176, "fields": {"orig_filename": "Petschenig_Michael_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10", "author": "", "orig_id": 1407894}}, {"model": "metainfo.source", "pk": 7177, "fields": {"orig_filename": "Petschnig_Emil_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10", "author": "", "orig_id": 1407895}}, {"model": "metainfo.source", "pk": 7178, "fields": {"orig_filename": "Petschnig_Johann_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10f.", "author": "", "orig_id": 1407896}}, {"model": "metainfo.source", "pk": 7179, "fields": {"orig_filename": "Pettenkofer_August_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 11", "author": "", "orig_id": 1407898}}, {"model": "metainfo.source", "pk": 7180, "fields": {"orig_filename": "Pettera_Guenter_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407903}}, {"model": "metainfo.source", "pk": 7181, "fields": {"orig_filename": "Pettersch_Karl-Hugo_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13f.", "author": "", "orig_id": 1407905}}, {"model": "metainfo.source", "pk": 7182, "fields": {"orig_filename": "Petters_Vilem_1826_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407904}}, {"model": "metainfo.source", "pk": 7183, "fields": {"orig_filename": "Petter_Alexander_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 11", "author": "", "orig_id": 1407899}}, {"model": "metainfo.source", "pk": 7184, "fields": {"orig_filename": "Petter_Anton_1781_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1407900}}, {"model": "metainfo.source", "pk": 7185, "fields": {"orig_filename": "Petter_August_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1407901}}, {"model": "metainfo.source", "pk": 7186, "fields": {"orig_filename": "Petter_Franz-Josef_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1409738}}, {"model": "metainfo.source", "pk": 7187, "fields": {"orig_filename": "Pejacsevich-Veroecze_Julian_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409364}}, {"model": "metainfo.source", "pk": 7188, "fields": {"orig_filename": "Pejacsevich-Veroecze_Ladislav_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409365}}, {"model": "metainfo.source", "pk": 7189, "fields": {"orig_filename": "Pejacsevich-Veroecze_Nikolaus_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394f.", "author": "", "orig_id": 1409366}}, {"model": "metainfo.source", "pk": 7190, "fields": {"orig_filename": "Pejacsevich-Veroecze_Teodor_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395", "author": "", "orig_id": 1409367}}, {"model": "metainfo.source", "pk": 7191, "fields": {"orig_filename": "Pejko_Juraj_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395", "author": "", "orig_id": 1409368}}, {"model": "metainfo.source", "pk": 7192, "fields": {"orig_filename": "Pekarek_Josef_1899_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397", "author": "", "orig_id": 1409370}}, {"model": "metainfo.source", "pk": 7193, "fields": {"orig_filename": "Pekar_Josef_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395ff.", "author": "", "orig_id": 1409369}}, {"model": "metainfo.source", "pk": 7194, "fields": {"orig_filename": "Pelczar_Jozef-Sebastian_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397f.", "author": "", "orig_id": 1409372}}, {"model": "metainfo.source", "pk": 7195, "fields": {"orig_filename": "Pelc_Hynek_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397", "author": "", "orig_id": 1409371}}, {"model": "metainfo.source", "pk": 7196, "fields": {"orig_filename": "Peles_Julian_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398", "author": "", "orig_id": 1409440}}, {"model": "metainfo.source", "pk": 7197, "fields": {"orig_filename": "Pelican_Heinrich_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398", "author": "", "orig_id": 1409441}}, {"model": "metainfo.source", "pk": 7198, "fields": {"orig_filename": "Pelikan-Plauenwald_Josef_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399", "author": "", "orig_id": 1409443}}, {"model": "metainfo.source", "pk": 7199, "fields": {"orig_filename": "Pelikan_Anton_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398f.", "author": "", "orig_id": 1409442}}, {"model": "metainfo.source", "pk": 7200, "fields": {"orig_filename": "Pellegrini_Francesco_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399", "author": "", "orig_id": 1409444}}, {"model": "metainfo.source", "pk": 7201, "fields": {"orig_filename": "Pellegrini_Gaetano_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399f.", "author": "", "orig_id": 1409445}}, {"model": "metainfo.source", "pk": 7202, "fields": {"orig_filename": "Pellegrini_Giulio_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400", "author": "", "orig_id": 1409446}}, {"model": "metainfo.source", "pk": 7203, "fields": {"orig_filename": "Pellico_Silvio_1789_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400", "author": "", "orig_id": 1409447}}, {"model": "metainfo.source", "pk": 7204, "fields": {"orig_filename": "Pellis_Ugo_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400f.", "author": "", "orig_id": 1409448}}, {"model": "metainfo.source", "pk": 7205, "fields": {"orig_filename": "Pelzel-Pelzeln_August_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 401f.", "author": "", "orig_id": 1409450}}, {"model": "metainfo.source", "pk": 7206, "fields": {"orig_filename": "Pelzel-Pelzeln_Marie_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 402", "author": "", "orig_id": 1409451}}, {"model": "metainfo.source", "pk": 7207, "fields": {"orig_filename": "Pelzel-Staffalo_Henriette_1877_1962.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258", "author": "", "orig_id": 1411967}}, {"model": "metainfo.source", "pk": 7208, "fields": {"orig_filename": "Pelz_Karel_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 401", "author": "", "orig_id": 1409449}}, {"model": "metainfo.source", "pk": 7209, "fields": {"orig_filename": "Pembaur_Josef_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 402f.", "author": "", "orig_id": 1409452}}, {"model": "metainfo.source", "pk": 7210, "fields": {"orig_filename": "Pembaur_Josef_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 403", "author": "", "orig_id": 1409453}}, {"model": "metainfo.source", "pk": 7211, "fields": {"orig_filename": "Pembaur_Karl-Maria_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 403f.", "author": "", "orig_id": 1409454}}, {"model": "metainfo.source", "pk": 7212, "fields": {"orig_filename": "Penck_Albrecht_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 404", "author": "", "orig_id": 1409455}}, {"model": "metainfo.source", "pk": 7213, "fields": {"orig_filename": "Pendl_Emanuel_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 404f.", "author": "", "orig_id": 1409456}}, {"model": "metainfo.source", "pk": 7214, "fields": {"orig_filename": "Pendl_Erwin_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405", "author": "", "orig_id": 1409457}}, {"model": "metainfo.source", "pk": 7215, "fields": {"orig_filename": "Pendl_Franz-Xaver_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405", "author": "", "orig_id": 1409458}}, {"model": "metainfo.source", "pk": 7216, "fields": {"orig_filename": "Pendl_Johann_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405f.", "author": "", "orig_id": 1409459}}, {"model": "metainfo.source", "pk": 7217, "fields": {"orig_filename": "Penecke_Karl-Alfons_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406", "author": "", "orig_id": 1409460}}, {"model": "metainfo.source", "pk": 7218, "fields": {"orig_filename": "Pengg-Auheim_Johann_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406f.", "author": "", "orig_id": 1409462}}, {"model": "metainfo.source", "pk": 7219, "fields": {"orig_filename": "Pengg-Auheim_Johann_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 407", "author": "", "orig_id": 1409463}}, {"model": "metainfo.source", "pk": 7220, "fields": {"orig_filename": "Pengg_Aegyd_1788_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406", "author": "", "orig_id": 1409461}}, {"model": "metainfo.source", "pk": 7221, "fields": {"orig_filename": "Penic_Dujam_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 407f.", "author": "", "orig_id": 1409464}}, {"model": "metainfo.source", "pk": 7222, "fields": {"orig_filename": "Penizek_Josef_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408", "author": "", "orig_id": 1409465}}, {"model": "metainfo.source", "pk": 7223, "fields": {"orig_filename": "Penka_Ignacy-Jozef_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408", "author": "", "orig_id": 1413143}}, {"model": "metainfo.source", "pk": 7224, "fields": {"orig_filename": "Penkler_Josef_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408f.", "author": "", "orig_id": 1409466}}, {"model": "metainfo.source", "pk": 7225, "fields": {"orig_filename": "Penn_Heinrich-Moritz_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 409", "author": "", "orig_id": 1408087}}, {"model": "metainfo.source", "pk": 7226, "fields": {"orig_filename": "Penn_Josef_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 409f.", "author": "", "orig_id": 1408088}}, {"model": "metainfo.source", "pk": 7227, "fields": {"orig_filename": "Penther_Arnold_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410", "author": "", "orig_id": 1408089}}, {"model": "metainfo.source", "pk": 7228, "fields": {"orig_filename": "Penther_Daniel_1837_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410", "author": "", "orig_id": 1408090}}, {"model": "metainfo.source", "pk": 7229, "fields": {"orig_filename": "Penzig-Franz_Edgar_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408093}}, {"model": "metainfo.source", "pk": 7230, "fields": {"orig_filename": "Penz_Alois_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410f.", "author": "", "orig_id": 1408091}}, {"model": "metainfo.source", "pk": 7231, "fields": {"orig_filename": "Penz_Ludwig_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408092}}, {"model": "metainfo.source", "pk": 7232, "fields": {"orig_filename": "Perathoner_Julius_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408096}}, {"model": "metainfo.source", "pk": 7233, "fields": {"orig_filename": "Percevic-Odavna_Franz_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408098}}, {"model": "metainfo.source", "pk": 7234, "fields": {"orig_filename": "Perczel-Bonyhad_Bela_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408099}}, {"model": "metainfo.source", "pk": 7235, "fields": {"orig_filename": "Perczel-Bonyhad_Dezsoe_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412f.", "author": "", "orig_id": 1408100}}, {"model": "metainfo.source", "pk": 7236, "fields": {"orig_filename": "Perczel-Bonyhad_Miklos_1812_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413", "author": "", "orig_id": 1408101}}, {"model": "metainfo.source", "pk": 7237, "fields": {"orig_filename": "Perczel-Bonyhad_Mor_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413", "author": "", "orig_id": 1408102}}, {"model": "metainfo.source", "pk": 7238, "fields": {"orig_filename": "Peregriny_Elek_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413f.", "author": "", "orig_id": 1408104}}, {"model": "metainfo.source", "pk": 7239, "fields": {"orig_filename": "Pereira-Arnstein_Henriette_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 414", "author": "", "orig_id": 1408106}}, {"model": "metainfo.source", "pk": 7240, "fields": {"orig_filename": "Pereira-Arnstein_Ludwig_1803_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 414f.", "author": "", "orig_id": 1408107}}, {"model": "metainfo.source", "pk": 7241, "fields": {"orig_filename": "Pereira-Arnstein_Viktor_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415", "author": "", "orig_id": 1408108}}, {"model": "metainfo.source", "pk": 7242, "fields": {"orig_filename": "Perek_Vaclav_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415", "author": "", "orig_id": 1408109}}, {"model": "metainfo.source", "pk": 7243, "fields": {"orig_filename": "Perels_Emil_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415f.", "author": "", "orig_id": 1408110}}, {"model": "metainfo.source", "pk": 7244, "fields": {"orig_filename": "Perenyi_Zsigmond_1783_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408111}}, {"model": "metainfo.source", "pk": 7245, "fields": {"orig_filename": "Peretti_Luigi_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408112}}, {"model": "metainfo.source", "pk": 7246, "fields": {"orig_filename": "Perez_Paolo_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408177}}, {"model": "metainfo.source", "pk": 7247, "fields": {"orig_filename": "Pergelt_Anton_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416f.", "author": "", "orig_id": 1408178}}, {"model": "metainfo.source", "pk": 7248, "fields": {"orig_filename": "Pergen_Anton_1799_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408179}}, {"model": "metainfo.source", "pk": 7249, "fields": {"orig_filename": "Perger-Pergenau_Heinrich_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408186}}, {"model": "metainfo.source", "pk": 7250, "fields": {"orig_filename": "Perger_Anton_1809_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408180}}, {"model": "metainfo.source", "pk": 7251, "fields": {"orig_filename": "Perger_Hugo_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408181}}, {"model": "metainfo.source", "pk": 7252, "fields": {"orig_filename": "Perger_Janos_1791_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417f.", "author": "", "orig_id": 1408182}}, {"model": "metainfo.source", "pk": 7253, "fields": {"orig_filename": "Perger_Janos_1819_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418", "author": "", "orig_id": 1408183}}, {"model": "metainfo.source", "pk": 7254, "fields": {"orig_filename": "Perger_Richard_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418", "author": "", "orig_id": 1408184}}, {"model": "metainfo.source", "pk": 7255, "fields": {"orig_filename": "Perger_Sigmund-Ferdinand_1778_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418f.", "author": "", "orig_id": 1408185}}, {"model": "metainfo.source", "pk": 7256, "fields": {"orig_filename": "Perhauz_Giovanni_1854_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408187}}, {"model": "metainfo.source", "pk": 7257, "fields": {"orig_filename": "Perinello_Carlo_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408188}}, {"model": "metainfo.source", "pk": 7258, "fields": {"orig_filename": "Perinet_Joachim_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419f.", "author": "", "orig_id": 1408189}}, {"model": "metainfo.source", "pk": 7259, "fields": {"orig_filename": "Perini_Agostino_1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 420", "author": "", "orig_id": 1408190}}, {"model": "metainfo.source", "pk": 7260, "fields": {"orig_filename": "Perini_Quintilio_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421", "author": "", "orig_id": 1408192}}, {"model": "metainfo.source", "pk": 7261, "fields": {"orig_filename": "Perkmann_Robert_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421", "author": "", "orig_id": 1408193}}, {"model": "metainfo.source", "pk": 7262, "fields": {"orig_filename": "Perkmann_Rochus_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421f.", "author": "", "orig_id": 1408194}}, {"model": "metainfo.source", "pk": 7263, "fields": {"orig_filename": "Perko-Greiffenbuehl_Josef_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408196}}, {"model": "metainfo.source", "pk": 7264, "fields": {"orig_filename": "Perkovac_Ivan_1826_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408197}}, {"model": "metainfo.source", "pk": 7265, "fields": {"orig_filename": "Perktold_Josef-Anton_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422f.", "author": "", "orig_id": 1408198}}, {"model": "metainfo.source", "pk": 7266, "fields": {"orig_filename": "Perl-Hildrichsburg_Ferdinand_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408202}}, {"model": "metainfo.source", "pk": 7267, "fields": {"orig_filename": "Perlath-Kaltenburg_Josef-Anton_1756_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408266}}, {"model": "metainfo.source", "pk": 7268, "fields": {"orig_filename": "Perlberger_Leo_1890_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408267}}, {"model": "metainfo.source", "pk": 7269, "fields": {"orig_filename": "Perles_Josef_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424f.", "author": "", "orig_id": 1408268}}, {"model": "metainfo.source", "pk": 7270, "fields": {"orig_filename": "Perles_Moritz_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425", "author": "", "orig_id": 1408269}}, {"model": "metainfo.source", "pk": 7271, "fields": {"orig_filename": "Perlis_Julius_1880_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425", "author": "", "orig_id": 1408270}}, {"model": "metainfo.source", "pk": 7272, "fields": {"orig_filename": "Perlmutter_Izsak_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425f.", "author": "", "orig_id": 1408271}}, {"model": "metainfo.source", "pk": 7273, "fields": {"orig_filename": "Perls_Armin_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408272}}, {"model": "metainfo.source", "pk": 7274, "fields": {"orig_filename": "Perl_Henriette_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423", "author": "", "orig_id": 1408199}}, {"model": "metainfo.source", "pk": 7275, "fields": {"orig_filename": "Perl_Karl_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423", "author": "", "orig_id": 1408200}}, {"model": "metainfo.source", "pk": 7276, "fields": {"orig_filename": "Perl_Moriz_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423f.", "author": "", "orig_id": 1408201}}, {"model": "metainfo.source", "pk": 7277, "fields": {"orig_filename": "Perneder_Franz_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408273}}, {"model": "metainfo.source", "pk": 7278, "fields": {"orig_filename": "Pernerstorfer_Engelbert_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427", "author": "", "orig_id": 1408276}}, {"model": "metainfo.source", "pk": 7279, "fields": {"orig_filename": "Perner_Jan_1815_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408274}}, {"model": "metainfo.source", "pk": 7280, "fields": {"orig_filename": "Perner_Jaroslav_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426f.", "author": "", "orig_id": 1408275}}, {"model": "metainfo.source", "pk": 7281, "fields": {"orig_filename": "Pernhart_Markus_1824_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427", "author": "", "orig_id": 1408277}}, {"model": "metainfo.source", "pk": 7282, "fields": {"orig_filename": "Pernlochner_Franz_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427f.", "author": "", "orig_id": 1408278}}, {"model": "metainfo.source", "pk": 7283, "fields": {"orig_filename": "Pernstein_Matthias_1795_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 428", "author": "", "orig_id": 1408279}}, {"model": "metainfo.source", "pk": 7284, "fields": {"orig_filename": "Perntner_Josef-Maria_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 428f.", "author": "", "orig_id": 1408280}}, {"model": "metainfo.source", "pk": 7285, "fields": {"orig_filename": "Pernwerth-Baernstein_Wilhelm_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408281}}, {"model": "metainfo.source", "pk": 7286, "fields": {"orig_filename": "Pautsch_Fryderyk_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 357f.", "author": "", "orig_id": 1408903}}, {"model": "metainfo.source", "pk": 7287, "fields": {"orig_filename": "Pavai-Vajna_Gabriel_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358", "author": "", "orig_id": 1408904}}, {"model": "metainfo.source", "pk": 7288, "fields": {"orig_filename": "Pavani_Eugenio_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358", "author": "", "orig_id": 1408905}}, {"model": "metainfo.source", "pk": 7289, "fields": {"orig_filename": "Pavec_Anton_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358f.", "author": "", "orig_id": 1408906}}, {"model": "metainfo.source", "pk": 7290, "fields": {"orig_filename": "Pavek_Ludwig_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359", "author": "", "orig_id": 1408907}}, {"model": "metainfo.source", "pk": 7291, "fields": {"orig_filename": "Pavelic_Milan_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408981}}, {"model": "metainfo.source", "pk": 7292, "fields": {"orig_filename": "Pavellic_Georg_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408982}}, {"model": "metainfo.source", "pk": 7293, "fields": {"orig_filename": "Pavel_Avgust_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359", "author": "", "orig_id": 1408978}}, {"model": "metainfo.source", "pk": 7294, "fields": {"orig_filename": "Pavel_Janos_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359f.", "author": "", "orig_id": 1408979}}, {"model": "metainfo.source", "pk": 7295, "fields": {"orig_filename": "Pavel_Raphael_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408980}}, {"model": "metainfo.source", "pk": 7296, "fields": {"orig_filename": "Pavic_Armin_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360f.", "author": "", "orig_id": 1408983}}, {"model": "metainfo.source", "pk": 7297, "fields": {"orig_filename": "Pavic_Josip_1887_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361", "author": "", "orig_id": 1408984}}, {"model": "metainfo.source", "pk": 7298, "fields": {"orig_filename": "Pavic_Matija_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361", "author": "", "orig_id": 1408985}}, {"model": "metainfo.source", "pk": 7299, "fields": {"orig_filename": "Pavissich_Luigi-Cesare_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361f.", "author": "", "orig_id": 1408986}}, {"model": "metainfo.source", "pk": 7300, "fields": {"orig_filename": "Pavlicek_Antonin_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362", "author": "", "orig_id": 1408987}}, {"model": "metainfo.source", "pk": 7301, "fields": {"orig_filename": "Pavlikov_Theophil_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362", "author": "", "orig_id": 1408988}}, {"model": "metainfo.source", "pk": 7302, "fields": {"orig_filename": "Pavlinovic_Mihovil_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363", "author": "", "orig_id": 1408991}}, {"model": "metainfo.source", "pk": 7303, "fields": {"orig_filename": "Pavlin_Alfonz_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362f.", "author": "", "orig_id": 1408989}}, {"model": "metainfo.source", "pk": 7304, "fields": {"orig_filename": "Pavlin_Franc_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363", "author": "", "orig_id": 1408990}}, {"model": "metainfo.source", "pk": 7305, "fields": {"orig_filename": "Pavlis_Jan_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363f.", "author": "", "orig_id": 1408992}}, {"model": "metainfo.source", "pk": 7306, "fields": {"orig_filename": "Pavlis_Johann_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408993}}, {"model": "metainfo.source", "pk": 7307, "fields": {"orig_filename": "Pavlovic_Stevan_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408994}}, {"model": "metainfo.source", "pk": 7308, "fields": {"orig_filename": "Pavlovic_Teodor_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408995}}, {"model": "metainfo.source", "pk": 7309, "fields": {"orig_filename": "Pavlovyc_Oleksandr_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408996}}, {"model": "metainfo.source", "pk": 7310, "fields": {"orig_filename": "Pavlu_Bohdan_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364f.", "author": "", "orig_id": 1409066}}, {"model": "metainfo.source", "pk": 7311, "fields": {"orig_filename": "Pavlyk_Mychajlo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 365", "author": "", "orig_id": 1409067}}, {"model": "metainfo.source", "pk": 7312, "fields": {"orig_filename": "Paweck_Heinrich_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 365f.", "author": "", "orig_id": 1409068}}, {"model": "metainfo.source", "pk": 7313, "fields": {"orig_filename": "Pawel_Jaroslaus_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 366", "author": "", "orig_id": 1409069}}, {"model": "metainfo.source", "pk": 7314, "fields": {"orig_filename": "Pawlewski_Bronislaw_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 366f.", "author": "", "orig_id": 1409070}}, {"model": "metainfo.source", "pk": 7315, "fields": {"orig_filename": "Pawlikowski_Jan-Gwalbert_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 368f.", "author": "", "orig_id": 1409075}}, {"model": "metainfo.source", "pk": 7316, "fields": {"orig_filename": "Pawlikowski_Jozef-Benedykt_1770_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369", "author": "", "orig_id": 1409076}}, {"model": "metainfo.source", "pk": 7317, "fields": {"orig_filename": "Pawlikowski_Jozef-Gwalbert_1793_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369", "author": "", "orig_id": 1409077}}, {"model": "metainfo.source", "pk": 7318, "fields": {"orig_filename": "Pawlikowski_Mieczyslaw-Gwalbert-Henryk_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369f.", "author": "", "orig_id": 1409078}}, {"model": "metainfo.source", "pk": 7319, "fields": {"orig_filename": "Pawlikowski_Tadeusz_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 370f.", "author": "", "orig_id": 1409079}}, {"model": "metainfo.source", "pk": 7320, "fields": {"orig_filename": "Pawlik_Franz_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367", "author": "", "orig_id": 1409071}}, {"model": "metainfo.source", "pk": 7321, "fields": {"orig_filename": "Pawlik_Karel_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367", "author": "", "orig_id": 1409072}}, {"model": "metainfo.source", "pk": 7322, "fields": {"orig_filename": "Pawlik_Oswald_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367f.", "author": "", "orig_id": 1409073}}, {"model": "metainfo.source", "pk": 7323, "fields": {"orig_filename": "Pawlik_Stefan_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 368", "author": "", "orig_id": 1409074}}, {"model": "metainfo.source", "pk": 7324, "fields": {"orig_filename": "Pawlitschek_Alfred-Guntram_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371", "author": "", "orig_id": 1409080}}, {"model": "metainfo.source", "pk": 7325, "fields": {"orig_filename": "Pawlowicz_Edward_1815_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371", "author": "", "orig_id": 1409081}}, {"model": "metainfo.source", "pk": 7326, "fields": {"orig_filename": "Pawlowski-Jaroslaw_Alexander_1830_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372", "author": "", "orig_id": 1409084}}, {"model": "metainfo.source", "pk": 7327, "fields": {"orig_filename": "Pawlowski_Franciszek_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371f.", "author": "", "orig_id": 1409082}}, {"model": "metainfo.source", "pk": 7328, "fields": {"orig_filename": "Pawlowski_Johann_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372", "author": "", "orig_id": 1409083}}, {"model": "metainfo.source", "pk": 7329, "fields": {"orig_filename": "Pax_Ferdinand-Albin_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372f.", "author": "", "orig_id": 1409085}}, {"model": "metainfo.source", "pk": 7330, "fields": {"orig_filename": "Pax_Johann_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409086}}, {"model": "metainfo.source", "pk": 7331, "fields": {"orig_filename": "Payer-Thurn_Rudolf_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 375f.", "author": "", "orig_id": 1409166}}, {"model": "metainfo.source", "pk": 7332, "fields": {"orig_filename": "Payer_Anton_1853_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409087}}, {"model": "metainfo.source", "pk": 7333, "fields": {"orig_filename": "Payer_Ernst_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409088}}, {"model": "metainfo.source", "pk": 7334, "fields": {"orig_filename": "Payer_Hieronymus_1787_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373f.", "author": "", "orig_id": 1409089}}, {"model": "metainfo.source", "pk": 7335, "fields": {"orig_filename": "Payer_Hugo_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374", "author": "", "orig_id": 1409163}}, {"model": "metainfo.source", "pk": 7336, "fields": {"orig_filename": "Payer_Janez_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374", "author": "", "orig_id": 1409164}}, {"model": "metainfo.source", "pk": 7337, "fields": {"orig_filename": "Payer_Julius_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374f.", "author": "", "orig_id": 1409165}}, {"model": "metainfo.source", "pk": 7338, "fields": {"orig_filename": "Payr_Artur_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 376f.", "author": "", "orig_id": 1409167}}, {"model": "metainfo.source", "pk": 7339, "fields": {"orig_filename": "Payr_Erwin_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 377", "author": "", "orig_id": 1409168}}, {"model": "metainfo.source", "pk": 7340, "fields": {"orig_filename": "Payr_Karl_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 377f.", "author": "", "orig_id": 1409169}}, {"model": "metainfo.source", "pk": 7341, "fields": {"orig_filename": "Payr_Sandor_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378", "author": "", "orig_id": 1409170}}, {"model": "metainfo.source", "pk": 7342, "fields": {"orig_filename": "Pazaurek_Gustav-Edmund_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378", "author": "", "orig_id": 1409171}}, {"model": "metainfo.source", "pk": 7343, "fields": {"orig_filename": "Pazmandi-Horvat_Endre_1778_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379", "author": "", "orig_id": 1409173}}, {"model": "metainfo.source", "pk": 7344, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379", "author": "", "orig_id": 1409174}}, {"model": "metainfo.source", "pk": 7345, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1816_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379f.", "author": "", "orig_id": 1409175}}, {"model": "metainfo.source", "pk": 7346, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409176}}, {"model": "metainfo.source", "pk": 7347, "fields": {"orig_filename": "Pazman_Josip_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378f.", "author": "", "orig_id": 1409172}}, {"model": "metainfo.source", "pk": 7348, "fields": {"orig_filename": "Pazourek_Josef_1862_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409177}}, {"model": "metainfo.source", "pk": 7349, "fields": {"orig_filename": "Pazze_Pietro-Augusto_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409178}}, {"model": "metainfo.source", "pk": 7350, "fields": {"orig_filename": "Pebal_Leopold_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409179}}, {"model": "metainfo.source", "pk": 7351, "fields": {"orig_filename": "Pecchio-Weitenfeld_Adolf_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409180}}, {"model": "metainfo.source", "pk": 7352, "fields": {"orig_filename": "Pechacek_Franz-Martin_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409256}}, {"model": "metainfo.source", "pk": 7353, "fields": {"orig_filename": "Pechacek_Franz-Xaver_1793_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409257}}, {"model": "metainfo.source", "pk": 7354, "fields": {"orig_filename": "Pechan-Praegenberg_Franz_1830_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409258}}, {"model": "metainfo.source", "pk": 7355, "fields": {"orig_filename": "Pechany_Adolf_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382f.", "author": "", "orig_id": 1409259}}, {"model": "metainfo.source", "pk": 7356, "fields": {"orig_filename": "Peche_Dagobert_1887_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 383", "author": "", "orig_id": 1409260}}, {"model": "metainfo.source", "pk": 7357, "fields": {"orig_filename": "Peche_Ernest_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 383", "author": "", "orig_id": 1409261}}, {"model": "metainfo.source", "pk": 7358, "fields": {"orig_filename": "Peche_Ferdinand_1820_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384", "author": "", "orig_id": 1409262}}, {"model": "metainfo.source", "pk": 7359, "fields": {"orig_filename": "Peche_Karl_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384", "author": "", "orig_id": 1409263}}, {"model": "metainfo.source", "pk": 7360, "fields": {"orig_filename": "Pechmann-Massen_Eduard_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384f.", "author": "", "orig_id": 1409264}}, {"model": "metainfo.source", "pk": 7361, "fields": {"orig_filename": "Pechova_Alzbeta_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385", "author": "", "orig_id": 1409265}}, {"model": "metainfo.source", "pk": 7362, "fields": {"orig_filename": "Pechy-Pechujfalu_Tamas_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385", "author": "", "orig_id": 1409266}}, {"model": "metainfo.source", "pk": 7363, "fields": {"orig_filename": "Pech_Antal_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409181}}, {"model": "metainfo.source", "pk": 7364, "fields": {"orig_filename": "Pech_Jozsef_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381f.", "author": "", "orig_id": 1409182}}, {"model": "metainfo.source", "pk": 7365, "fields": {"orig_filename": "Pecirka_Ferdinand-Otokar_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385f.", "author": "", "orig_id": 1409267}}, {"model": "metainfo.source", "pk": 7366, "fields": {"orig_filename": "Pecirka_Josef_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409268}}, {"model": "metainfo.source", "pk": 7367, "fields": {"orig_filename": "Peckary_Karl_1848_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409272}}, {"model": "metainfo.source", "pk": 7368, "fields": {"orig_filename": "Pecka_Josef-Boleslav_1849_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409271}}, {"model": "metainfo.source", "pk": 7369, "fields": {"orig_filename": "Peck_Edmund-Anton_1830_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409269}}, {"model": "metainfo.source", "pk": 7370, "fields": {"orig_filename": "Peck_Philipp_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409270}}, {"model": "metainfo.source", "pk": 7371, "fields": {"orig_filename": "Peczely_Jozsef_1789_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387f.", "author": "", "orig_id": 1409274}}, {"model": "metainfo.source", "pk": 7372, "fields": {"orig_filename": "Pecz_Vilmos_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409273}}, {"model": "metainfo.source", "pk": 7373, "fields": {"orig_filename": "Pederzolli_Giuseppe_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409275}}, {"model": "metainfo.source", "pk": 7374, "fields": {"orig_filename": "Pedrotti_Giovanni_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409276}}, {"model": "metainfo.source", "pk": 7375, "fields": {"orig_filename": "Peer-Egerthal_Josef-Johann_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389", "author": "", "orig_id": 1409352}}, {"model": "metainfo.source", "pk": 7376, "fields": {"orig_filename": "Peer_Heinrich_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409277}}, {"model": "metainfo.source", "pk": 7377, "fields": {"orig_filename": "Peer_Johann-Paul_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389", "author": "", "orig_id": 1409278}}, {"model": "metainfo.source", "pk": 7378, "fields": {"orig_filename": "Peez_Alexander-Ernst_1829_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389f.", "author": "", "orig_id": 1409353}}, {"model": "metainfo.source", "pk": 7379, "fields": {"orig_filename": "Pegger_Johann_1850_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 390", "author": "", "orig_id": 1409354}}, {"model": "metainfo.source", "pk": 7380, "fields": {"orig_filename": "Peham_Heinrich_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 390f.", "author": "", "orig_id": 1409355}}, {"model": "metainfo.source", "pk": 7381, "fields": {"orig_filename": "Pehersdorfer_Anna_1849_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391", "author": "", "orig_id": 1409356}}, {"model": "metainfo.source", "pk": 7382, "fields": {"orig_filename": "Pehr_Franz_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391", "author": "", "orig_id": 1409357}}, {"model": "metainfo.source", "pk": 7383, "fields": {"orig_filename": "Peinlich_Richard_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391f.", "author": "", "orig_id": 1409358}}, {"model": "metainfo.source", "pk": 7384, "fields": {"orig_filename": "Peisker_Johannes_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392", "author": "", "orig_id": 1409359}}, {"model": "metainfo.source", "pk": 7385, "fields": {"orig_filename": "Peithner-Lichtenfels_Rudolf_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 393", "author": "", "orig_id": 1409361}}, {"model": "metainfo.source", "pk": 7386, "fields": {"orig_filename": "Peithner-Lichtenfels_Thaddaeus_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 393f.", "author": "", "orig_id": 1409362}}, {"model": "metainfo.source", "pk": 7387, "fields": {"orig_filename": "Peitler_Antal-Jozsef_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409363}}, {"model": "metainfo.source", "pk": 7388, "fields": {"orig_filename": "Paradis_Maria-Theresia_1759_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323f.", "author": "", "orig_id": 1408530}}, {"model": "metainfo.source", "pk": 7389, "fields": {"orig_filename": "Parapat_Janez_1838_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324", "author": "", "orig_id": 1408531}}, {"model": "metainfo.source", "pk": 7390, "fields": {"orig_filename": "Parenski_Stanislaw_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324", "author": "", "orig_id": 1408532}}, {"model": "metainfo.source", "pk": 7391, "fields": {"orig_filename": "Parente_Aron-Isak_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324f.", "author": "", "orig_id": 1408533}}, {"model": "metainfo.source", "pk": 7392, "fields": {"orig_filename": "Parente_Marco_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408534}}, {"model": "metainfo.source", "pk": 7393, "fields": {"orig_filename": "Pargfrider_Josef-Gottfried_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408535}}, {"model": "metainfo.source", "pk": 7394, "fields": {"orig_filename": "Parin_Gino_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325f.", "author": "", "orig_id": 1408537}}, {"model": "metainfo.source", "pk": 7395, "fields": {"orig_filename": "Parisini_Emil_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326", "author": "", "orig_id": 1408539}}, {"model": "metainfo.source", "pk": 7396, "fields": {"orig_filename": "Parisi_Giuseppe_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326", "author": "", "orig_id": 1408538}}, {"model": "metainfo.source", "pk": 7397, "fields": {"orig_filename": "Pari_Anton-Giuseppe_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408536}}, {"model": "metainfo.source", "pk": 7398, "fields": {"orig_filename": "Parmann_Oskar_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327", "author": "", "orig_id": 1408541}}, {"model": "metainfo.source", "pk": 7399, "fields": {"orig_filename": "Parma_Viktor_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326f.", "author": "", "orig_id": 1408540}}, {"model": "metainfo.source", "pk": 7400, "fields": {"orig_filename": "Parrot_Jakob_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327", "author": "", "orig_id": 1408608}}, {"model": "metainfo.source", "pk": 7401, "fields": {"orig_filename": "Parschalk_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327f.", "author": "", "orig_id": 1408609}}, {"model": "metainfo.source", "pk": 7402, "fields": {"orig_filename": "Partsch_Anton_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328", "author": "", "orig_id": 1408610}}, {"model": "metainfo.source", "pk": 7403, "fields": {"orig_filename": "Partsch_Franz-Xaver_1760_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328", "author": "", "orig_id": 1408611}}, {"model": "metainfo.source", "pk": 7404, "fields": {"orig_filename": "Partsch_Paul-Maria_1791_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328f.", "author": "", "orig_id": 1408612}}, {"model": "metainfo.source", "pk": 7405, "fields": {"orig_filename": "Parttart_Alois_1841_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329", "author": "", "orig_id": 1408613}}, {"model": "metainfo.source", "pk": 7406, "fields": {"orig_filename": "Parvy-Kis-Konya_Sandor_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329", "author": "", "orig_id": 1408614}}, {"model": "metainfo.source", "pk": 7407, "fields": {"orig_filename": "Pasaric_Josip_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329f.", "author": "", "orig_id": 1408615}}, {"model": "metainfo.source", "pk": 7408, "fields": {"orig_filename": "Pascher-Osserburg_Karl_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330f.", "author": "", "orig_id": 1408618}}, {"model": "metainfo.source", "pk": 7409, "fields": {"orig_filename": "Pascher_Adolf_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330", "author": "", "orig_id": 1408616}}, {"model": "metainfo.source", "pk": 7410, "fields": {"orig_filename": "Pascher_Johann_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330", "author": "", "orig_id": 1408617}}, {"model": "metainfo.source", "pk": 7411, "fields": {"orig_filename": "Paschkis_Heinrich_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408619}}, {"model": "metainfo.source", "pk": 7412, "fields": {"orig_filename": "Pascolato_Alessandro_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408620}}, {"model": "metainfo.source", "pk": 7413, "fields": {"orig_filename": "Pascoletto_Hadrian_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408621}}, {"model": "metainfo.source", "pk": 7414, "fields": {"orig_filename": "Pascotini-Ehrenfels_Carlo_1797_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1408622}}, {"model": "metainfo.source", "pk": 7415, "fields": {"orig_filename": "Pascotini-Ehrenfels_Giovanni_1761_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1408623}}, {"model": "metainfo.source", "pk": 7416, "fields": {"orig_filename": "Pascutti_Antonio_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1471927}}, {"model": "metainfo.source", "pk": 7417, "fields": {"orig_filename": "Pasini_Lodovico_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332f.", "author": "", "orig_id": 1408624}}, {"model": "metainfo.source", "pk": 7418, "fields": {"orig_filename": "Pasini_Valentino_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 333", "author": "", "orig_id": 1408625}}, {"model": "metainfo.source", "pk": 7419, "fields": {"orig_filename": "Paska_Josef_1828_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 333f.", "author": "", "orig_id": 1408626}}, {"model": "metainfo.source", "pk": 7420, "fields": {"orig_filename": "Paskovits_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408627}}, {"model": "metainfo.source", "pk": 7421, "fields": {"orig_filename": "Pasqualati-Osterberg_Amalia_1818_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408628}}, {"model": "metainfo.source", "pk": 7422, "fields": {"orig_filename": "Pasqualigo-Sacchi_Giuseppe_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335", "author": "", "orig_id": 1408630}}, {"model": "metainfo.source", "pk": 7423, "fields": {"orig_filename": "Pasqualigo_Nicolo_1770_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408629}}, {"model": "metainfo.source", "pk": 7424, "fields": {"orig_filename": "Pasquich_Johann_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335", "author": "", "orig_id": 1408631}}, {"model": "metainfo.source", "pk": 7425, "fields": {"orig_filename": "Passini_Johann_1798_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335f.", "author": "", "orig_id": 1408705}}, {"model": "metainfo.source", "pk": 7426, "fields": {"orig_filename": "Passini_Ludwig-Johann_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336", "author": "", "orig_id": 1408706}}, {"model": "metainfo.source", "pk": 7427, "fields": {"orig_filename": "Passy_Anton_1788_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336", "author": "", "orig_id": 1408707}}, {"model": "metainfo.source", "pk": 7428, "fields": {"orig_filename": "Pasta_Giuditta-Maria-Costanza_1797_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336f.", "author": "", "orig_id": 1408708}}, {"model": "metainfo.source", "pk": 7429, "fields": {"orig_filename": "Pasteiner_Gyula_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 337", "author": "", "orig_id": 1408709}}, {"model": "metainfo.source", "pk": 7430, "fields": {"orig_filename": "Pastor-Camperfelden_Ludwig_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338", "author": "", "orig_id": 1408711}}, {"model": "metainfo.source", "pk": 7431, "fields": {"orig_filename": "Pastor_Leon_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 337", "author": "", "orig_id": 1408710}}, {"model": "metainfo.source", "pk": 7432, "fields": {"orig_filename": "Pastree_Julius_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338", "author": "", "orig_id": 1408712}}, {"model": "metainfo.source", "pk": 7433, "fields": {"orig_filename": "Pastrnek_Frantisek_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338f.", "author": "", "orig_id": 1408713}}, {"model": "metainfo.source", "pk": 7434, "fields": {"orig_filename": "Paszkowski_Leon_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339", "author": "", "orig_id": 1408714}}, {"model": "metainfo.source", "pk": 7435, "fields": {"orig_filename": "Paszthory_Emerich_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339", "author": "", "orig_id": 1408715}}, {"model": "metainfo.source", "pk": 7436, "fields": {"orig_filename": "Patay_Janos_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339f.", "author": "", "orig_id": 1408716}}, {"model": "metainfo.source", "pk": 7437, "fields": {"orig_filename": "Patek_Karl_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408717}}, {"model": "metainfo.source", "pk": 7438, "fields": {"orig_filename": "Patera_Adolf_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 341", "author": "", "orig_id": 1408721}}, {"model": "metainfo.source", "pk": 7439, "fields": {"orig_filename": "Patera_Lothar_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 341f.", "author": "", "orig_id": 1408722}}, {"model": "metainfo.source", "pk": 7440, "fields": {"orig_filename": "Pater_Arpad_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408718}}, {"model": "metainfo.source", "pk": 7441, "fields": {"orig_filename": "Pater_Bela_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408719}}, {"model": "metainfo.source", "pk": 7442, "fields": {"orig_filename": "Patigler_Josef_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342", "author": "", "orig_id": 1408723}}, {"model": "metainfo.source", "pk": 7443, "fields": {"orig_filename": "Patiss_Georg_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342", "author": "", "orig_id": 1408724}}, {"model": "metainfo.source", "pk": 7444, "fields": {"orig_filename": "Patrcka_Michal-Silorad_1787_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342f.", "author": "", "orig_id": 1408725}}, {"model": "metainfo.source", "pk": 7445, "fields": {"orig_filename": "Patruban_Karl_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343", "author": "", "orig_id": 1408726}}, {"model": "metainfo.source", "pk": 7446, "fields": {"orig_filename": "Patscheider_Albuin-Maria_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344", "author": "", "orig_id": 1408797}}, {"model": "metainfo.source", "pk": 7447, "fields": {"orig_filename": "Patsch_Josef_1786_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343", "author": "", "orig_id": 1408727}}, {"model": "metainfo.source", "pk": 7448, "fields": {"orig_filename": "Patsch_Karl_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343f.", "author": "", "orig_id": 1408728}}, {"model": "metainfo.source", "pk": 7449, "fields": {"orig_filename": "Pattai_Robert_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344", "author": "", "orig_id": 1408798}}, {"model": "metainfo.source", "pk": 7450, "fields": {"orig_filename": "Patuzzi_Gaetano-Lionello_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344f.", "author": "", "orig_id": 1408799}}, {"model": "metainfo.source", "pk": 7451, "fields": {"orig_filename": "Patzak_Franz_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408800}}, {"model": "metainfo.source", "pk": 7452, "fields": {"orig_filename": "Patzke_Edmund_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408801}}, {"model": "metainfo.source", "pk": 7453, "fields": {"orig_filename": "Paudler_Amand_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408802}}, {"model": "metainfo.source", "pk": 7454, "fields": {"orig_filename": "Pauer_Ernst_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346", "author": "", "orig_id": 1408803}}, {"model": "metainfo.source", "pk": 7455, "fields": {"orig_filename": "Pauer_Franz_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346", "author": "", "orig_id": 1408804}}, {"model": "metainfo.source", "pk": 7456, "fields": {"orig_filename": "Pauer_Janos_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346f.", "author": "", "orig_id": 1408805}}, {"model": "metainfo.source", "pk": 7457, "fields": {"orig_filename": "Pauer_Josef-Chrysostomus_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347", "author": "", "orig_id": 1408806}}, {"model": "metainfo.source", "pk": 7458, "fields": {"orig_filename": "Paukert-Hohenfranken_Johann_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408809}}, {"model": "metainfo.source", "pk": 7459, "fields": {"orig_filename": "Paukert_Franz_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347f.", "author": "", "orig_id": 1408808}}, {"model": "metainfo.source", "pk": 7460, "fields": {"orig_filename": "Pauker_Wolfgang_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347", "author": "", "orig_id": 1408807}}, {"model": "metainfo.source", "pk": 7461, "fields": {"orig_filename": "Paulal_Karl_1879_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348f.", "author": "", "orig_id": 1408813}}, {"model": "metainfo.source", "pk": 7462, "fields": {"orig_filename": "Paulay_Ede_1836_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349", "author": "", "orig_id": 1408814}}, {"model": "metainfo.source", "pk": 7463, "fields": {"orig_filename": "Pauler_Gyula_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349", "author": "", "orig_id": 1408815}}, {"model": "metainfo.source", "pk": 7464, "fields": {"orig_filename": "Pauler_Tivadar_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349f.", "author": "", "orig_id": 1408816}}, {"model": "metainfo.source", "pk": 7465, "fields": {"orig_filename": "Paulick_Friedrich-Georg_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 350f.", "author": "", "orig_id": 1408818}}, {"model": "metainfo.source", "pk": 7466, "fields": {"orig_filename": "Paulik_Janos_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 351", "author": "", "orig_id": 1408819}}, {"model": "metainfo.source", "pk": 7467, "fields": {"orig_filename": "Pauliny-Toth_Viliam_1826_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352f.", "author": "", "orig_id": 1408888}}, {"model": "metainfo.source", "pk": 7468, "fields": {"orig_filename": "Pauliny_Jakob-Josef_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 351f.", "author": "", "orig_id": 1408820}}, {"model": "metainfo.source", "pk": 7469, "fields": {"orig_filename": "Pauliny_Ladislav_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352", "author": "", "orig_id": 1408886}}, {"model": "metainfo.source", "pk": 7470, "fields": {"orig_filename": "Pauliny_Sigismund_1750_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352", "author": "", "orig_id": 1408887}}, {"model": "metainfo.source", "pk": 7471, "fields": {"orig_filename": "Paulitschke_Philipp_1854_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 353f.", "author": "", "orig_id": 1408890}}, {"model": "metainfo.source", "pk": 7472, "fields": {"orig_filename": "Paulitsch_Michael_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 353", "author": "", "orig_id": 1408889}}, {"model": "metainfo.source", "pk": 7473, "fields": {"orig_filename": "Pauli_Hertha_1906_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412346}}, {"model": "metainfo.source", "pk": 7474, "fields": {"orig_filename": "Pauli_Ignacy-Jakub_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 350", "author": "", "orig_id": 1408817}}, {"model": "metainfo.source", "pk": 7475, "fields": {"orig_filename": "Pauli_Wolfgang-Ernst_1900_1958.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412345}}, {"model": "metainfo.source", "pk": 7476, "fields": {"orig_filename": "Pauli_Wolfgang-Josef_1869_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300f.", "author": "", "orig_id": 1412344}}, {"model": "metainfo.source", "pk": 7477, "fields": {"orig_filename": "Paulmichl_Alois_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408891}}, {"model": "metainfo.source", "pk": 7478, "fields": {"orig_filename": "Paulmichl_Karl_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408892}}, {"model": "metainfo.source", "pk": 7479, "fields": {"orig_filename": "Paulucci-Roncole_Hamilcar_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408893}}, {"model": "metainfo.source", "pk": 7480, "fields": {"orig_filename": "Pauly_Max_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408894}}, {"model": "metainfo.source", "pk": 7481, "fields": {"orig_filename": "Paul_Gustav_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408810}}, {"model": "metainfo.source", "pk": 7482, "fields": {"orig_filename": "Paul_Ludwig_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408811}}, {"model": "metainfo.source", "pk": 7483, "fields": {"orig_filename": "Paumgartner_Johann_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354f.", "author": "", "orig_id": 1408895}}, {"model": "metainfo.source", "pk": 7484, "fields": {"orig_filename": "Paumgartner_Rosa_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 355", "author": "", "orig_id": 1408896}}, {"model": "metainfo.source", "pk": 7485, "fields": {"orig_filename": "Paumgartten_Franz-Xaver_1811_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 355f.", "author": "", "orig_id": 1408897}}, {"model": "metainfo.source", "pk": 7486, "fields": {"orig_filename": "Paungarten_Emma_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408898}}, {"model": "metainfo.source", "pk": 7487, "fields": {"orig_filename": "Paur_Emil_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408899}}, {"model": "metainfo.source", "pk": 7488, "fields": {"orig_filename": "Paur_Ignaz_1778_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408900}}, {"model": "metainfo.source", "pk": 7489, "fields": {"orig_filename": "Paur_Ivan_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356f.", "author": "", "orig_id": 1408901}}, {"model": "metainfo.source", "pk": 7490, "fields": {"orig_filename": "Pausinger_Franz-August_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 357", "author": "", "orig_id": 1408902}}, {"model": "metainfo.source", "pk": 7491, "fields": {"orig_filename": "Pagani_Giovanni-Battista_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 287", "author": "", "orig_id": 1408080}}, {"model": "metainfo.source", "pk": 7492, "fields": {"orig_filename": "Pagay_Hans_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288", "author": "", "orig_id": 1408082}}, {"model": "metainfo.source", "pk": 7493, "fields": {"orig_filename": "Pagello_Pietro_1807_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288", "author": "", "orig_id": 1408083}}, {"model": "metainfo.source", "pk": 7494, "fields": {"orig_filename": "Paget_Charles-Octavius_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288f.", "author": "", "orig_id": 1408084}}, {"model": "metainfo.source", "pk": 7495, "fields": {"orig_filename": "Paget_Frederick_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408085}}, {"model": "metainfo.source", "pk": 7496, "fields": {"orig_filename": "Pagliaruzzi_Josip_1859_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408086}}, {"model": "metainfo.source", "pk": 7497, "fields": {"orig_filename": "Pagnini_Silvio_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408155}}, {"model": "metainfo.source", "pk": 7498, "fields": {"orig_filename": "Paic_Josef_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289f.", "author": "", "orig_id": 1408156}}, {"model": "metainfo.source", "pk": 7499, "fields": {"orig_filename": "Pailler_Wilhelm_1838_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408157}}, {"model": "metainfo.source", "pk": 7500, "fields": {"orig_filename": "Paini_Carlo_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408158}}, {"model": "metainfo.source", "pk": 7501, "fields": {"orig_filename": "Paintl_Paul_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408159}}, {"model": "metainfo.source", "pk": 7502, "fields": {"orig_filename": "Paintner_Michael-Anton_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290f.", "author": "", "orig_id": 1408160}}, {"model": "metainfo.source", "pk": 7503, "fields": {"orig_filename": "Pajer_Robert_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291", "author": "", "orig_id": 1408161}}, {"model": "metainfo.source", "pk": 7504, "fields": {"orig_filename": "Pajgert_Adam_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291", "author": "", "orig_id": 1408162}}, {"model": "metainfo.source", "pk": 7505, "fields": {"orig_filename": "Pajgert_Jozef_1799_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291f.", "author": "", "orig_id": 1408163}}, {"model": "metainfo.source", "pk": 7506, "fields": {"orig_filename": "Pajk_Johann_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292", "author": "", "orig_id": 1408164}}, {"model": "metainfo.source", "pk": 7507, "fields": {"orig_filename": "Pajk_Pavlina_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292", "author": "", "orig_id": 1408165}}, {"model": "metainfo.source", "pk": 7508, "fields": {"orig_filename": "Pajor_Sandor_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292f.", "author": "", "orig_id": 1408166}}, {"model": "metainfo.source", "pk": 7509, "fields": {"orig_filename": "Pakh_Albert_1823_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 293", "author": "", "orig_id": 1408167}}, {"model": "metainfo.source", "pk": 7510, "fields": {"orig_filename": "Palacky_Frantisek_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 294ff.", "author": "", "orig_id": 1408170}}, {"model": "metainfo.source", "pk": 7511, "fields": {"orig_filename": "Palacky_Jan_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 296", "author": "", "orig_id": 1408171}}, {"model": "metainfo.source", "pk": 7512, "fields": {"orig_filename": "Palarik_Jan_1822_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 296f.", "author": "", "orig_id": 1408172}}, {"model": "metainfo.source", "pk": 7513, "fields": {"orig_filename": "Palasthy-Palasth-Keczihocz_Pal_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297", "author": "", "orig_id": 1408173}}, {"model": "metainfo.source", "pk": 7514, "fields": {"orig_filename": "Paldus_Josef_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297", "author": "", "orig_id": 1408174}}, {"model": "metainfo.source", "pk": 7515, "fields": {"orig_filename": "Paleocapa_Pietro_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297f.", "author": "", "orig_id": 1408175}}, {"model": "metainfo.source", "pk": 7516, "fields": {"orig_filename": "Paletz_Emanuel_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298", "author": "", "orig_id": 1408176}}, {"model": "metainfo.source", "pk": 7517, "fields": {"orig_filename": "Palffi-Tarcsafalva_Janos_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298", "author": "", "orig_id": 1408246}}, {"model": "metainfo.source", "pk": 7518, "fields": {"orig_filename": "Palffy-Erdoed_Ferdinand_1774_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 299", "author": "", "orig_id": 1408248}}, {"model": "metainfo.source", "pk": 7519, "fields": {"orig_filename": "Palffy-Erdoed_Lipot_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 299f.", "author": "", "orig_id": 1408249}}, {"model": "metainfo.source", "pk": 7520, "fields": {"orig_filename": "Palffy-Erdoed_Moriz_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 300", "author": "", "orig_id": 1408250}}, {"model": "metainfo.source", "pk": 7521, "fields": {"orig_filename": "Palffy_Albert_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298f.", "author": "", "orig_id": 1408247}}, {"model": "metainfo.source", "pk": 7522, "fields": {"orig_filename": "Palisa_Johann_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 300f.", "author": "", "orig_id": 1408251}}, {"model": "metainfo.source", "pk": 7523, "fields": {"orig_filename": "Palkovic_Jiri_1769_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 301", "author": "", "orig_id": 1408252}}, {"model": "metainfo.source", "pk": 7524, "fields": {"orig_filename": "Palkovic_Juraj_1763_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 301f.", "author": "", "orig_id": 1408253}}, {"model": "metainfo.source", "pk": 7525, "fields": {"orig_filename": "Pallavicini_Alfred_1848_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302f.", "author": "", "orig_id": 1408256}}, {"model": "metainfo.source", "pk": 7526, "fields": {"orig_filename": "Pallavicini_Janos_1848_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 303", "author": "", "orig_id": 1408257}}, {"model": "metainfo.source", "pk": 7527, "fields": {"orig_filename": "Palla_Anton_1836_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302", "author": "", "orig_id": 1408254}}, {"model": "metainfo.source", "pk": 7528, "fields": {"orig_filename": "Palla_Eduard_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302", "author": "", "orig_id": 1408255}}, {"model": "metainfo.source", "pk": 7529, "fields": {"orig_filename": "Pallenberg_Max_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 303f.", "author": "", "orig_id": 1408258}}, {"model": "metainfo.source", "pk": 7530, "fields": {"orig_filename": "Palles_Georg_1753_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 304", "author": "", "orig_id": 1408259}}, {"model": "metainfo.source", "pk": 7531, "fields": {"orig_filename": "Pallhuber_Johann_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 304f.", "author": "", "orig_id": 1408260}}, {"model": "metainfo.source", "pk": 7532, "fields": {"orig_filename": "Palliardi_Jaroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408261}}, {"model": "metainfo.source", "pk": 7533, "fields": {"orig_filename": "Palmer_Georg_1796_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 71f.", "author": "", "orig_id": 1430970}}, {"model": "metainfo.source", "pk": 7534, "fields": {"orig_filename": "Palme_Elias_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408263}}, {"model": "metainfo.source", "pk": 7535, "fields": {"orig_filename": "Palme_Franz-Friedrich_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305f.", "author": "", "orig_id": 1408264}}, {"model": "metainfo.source", "pk": 7536, "fields": {"orig_filename": "Palme_Ignaz-Samuel_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306", "author": "", "orig_id": 1408265}}, {"model": "metainfo.source", "pk": 7537, "fields": {"orig_filename": "Palmovic_Andrija_1847_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306", "author": "", "orig_id": 1408332}}, {"model": "metainfo.source", "pk": 7538, "fields": {"orig_filename": "Palm_Josef_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408262}}, {"model": "metainfo.source", "pk": 7539, "fields": {"orig_filename": "Palsovic_Anton_1771_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306f.", "author": "", "orig_id": 1408333}}, {"model": "metainfo.source", "pk": 7540, "fields": {"orig_filename": "Paltauf_Arnold_1860_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 307", "author": "", "orig_id": 1408334}}, {"model": "metainfo.source", "pk": 7541, "fields": {"orig_filename": "Paltauf_Richard_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 307f.", "author": "", "orig_id": 1408335}}, {"model": "metainfo.source", "pk": 7542, "fields": {"orig_filename": "Palugyay-Nagypalugya-Bodafalva_Imre_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408336}}, {"model": "metainfo.source", "pk": 7543, "fields": {"orig_filename": "Pal_Jakob_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 294", "author": "", "orig_id": 1408169}}, {"model": "metainfo.source", "pk": 7544, "fields": {"orig_filename": "Pamer_Fritz-Egon_1900_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408337}}, {"model": "metainfo.source", "pk": 7545, "fields": {"orig_filename": "Pammer_Bruno_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408338}}, {"model": "metainfo.source", "pk": 7546, "fields": {"orig_filename": "Pammer_Maximilian_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308f.", "author": "", "orig_id": 1408339}}, {"model": "metainfo.source", "pk": 7547, "fields": {"orig_filename": "Pancera_Gabriele_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309", "author": "", "orig_id": 1408340}}, {"model": "metainfo.source", "pk": 7548, "fields": {"orig_filename": "Pancic_Josif_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309", "author": "", "orig_id": 1408341}}, {"model": "metainfo.source", "pk": 7549, "fields": {"orig_filename": "Panciera_Valentino_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309f.", "author": "", "orig_id": 1408342}}, {"model": "metainfo.source", "pk": 7550, "fields": {"orig_filename": "Panczel-Albis_Daniel_1759_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310", "author": "", "orig_id": 1408343}}, {"model": "metainfo.source", "pk": 7551, "fields": {"orig_filename": "Pandzic_Kreso_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310", "author": "", "orig_id": 1408344}}, {"model": "metainfo.source", "pk": 7552, "fields": {"orig_filename": "Panek_Kazimierz_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310f.", "author": "", "orig_id": 1408345}}, {"model": "metainfo.source", "pk": 7553, "fields": {"orig_filename": "Paneth_Josef_1857_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311", "author": "", "orig_id": 1408347}}, {"model": "metainfo.source", "pk": 7554, "fields": {"orig_filename": "Panet_Ezechiel_1783_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311", "author": "", "orig_id": 1408346}}, {"model": "metainfo.source", "pk": 7555, "fields": {"orig_filename": "Pangerl_Franz_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311f.", "author": "", "orig_id": 1408348}}, {"model": "metainfo.source", "pk": 7556, "fields": {"orig_filename": "Pangerl_Matthias_1834_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312", "author": "", "orig_id": 1408349}}, {"model": "metainfo.source", "pk": 7557, "fields": {"orig_filename": "Panhans_Franz_1869_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312", "author": "", "orig_id": 1408350}}, {"model": "metainfo.source", "pk": 7558, "fields": {"orig_filename": "Panholzer_Arthur_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312f.", "author": "", "orig_id": 1408351}}, {"model": "metainfo.source", "pk": 7559, "fields": {"orig_filename": "Panholzer_Johann_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408352}}, {"model": "metainfo.source", "pk": 7560, "fields": {"orig_filename": "Panizza_Augusto_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408353}}, {"model": "metainfo.source", "pk": 7561, "fields": {"orig_filename": "Panizza_Bartolomeo_1785_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408425}}, {"model": "metainfo.source", "pk": 7562, "fields": {"orig_filename": "Panizza_Bernardino_1827_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313f.", "author": "", "orig_id": 1408426}}, {"model": "metainfo.source", "pk": 7563, "fields": {"orig_filename": "Panizza_Giovanni-Battista_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314", "author": "", "orig_id": 1408427}}, {"model": "metainfo.source", "pk": 7564, "fields": {"orig_filename": "Pankowski_Kazimierz_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314", "author": "", "orig_id": 1408429}}, {"model": "metainfo.source", "pk": 7565, "fields": {"orig_filename": "Pankowski_Mieczyslaw_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314f.", "author": "", "orig_id": 1408430}}, {"model": "metainfo.source", "pk": 7566, "fields": {"orig_filename": "Pannasch_Anton_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315", "author": "", "orig_id": 1408431}}, {"model": "metainfo.source", "pk": 7567, "fields": {"orig_filename": "Panny_Josef_1794_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315", "author": "", "orig_id": 1408432}}, {"model": "metainfo.source", "pk": 7568, "fields": {"orig_filename": "Panschab_Justin_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315f.", "author": "", "orig_id": 1408433}}, {"model": "metainfo.source", "pk": 7569, "fields": {"orig_filename": "Pantocsek_Jozef_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316", "author": "", "orig_id": 1408434}}, {"model": "metainfo.source", "pk": 7570, "fields": {"orig_filename": "Pantocsek_Leo-Valent_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316", "author": "", "orig_id": 1408435}}, {"model": "metainfo.source", "pk": 7571, "fields": {"orig_filename": "Pantucek_Ferdinand_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316f.", "author": "", "orig_id": 1408436}}, {"model": "metainfo.source", "pk": 7572, "fields": {"orig_filename": "Pantz_Anton_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317", "author": "", "orig_id": 1408437}}, {"model": "metainfo.source", "pk": 7573, "fields": {"orig_filename": "Panwitz_Friedrich-Wilhelm_1788_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317", "author": "", "orig_id": 1408438}}, {"model": "metainfo.source", "pk": 7574, "fields": {"orig_filename": "Panyrek_Duchoslav_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317f.", "author": "", "orig_id": 1408439}}, {"model": "metainfo.source", "pk": 7575, "fields": {"orig_filename": "Panzer_Friedrich_1876_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408440}}, {"model": "metainfo.source", "pk": 7576, "fields": {"orig_filename": "Panzl_Johann_1786_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408441}}, {"model": "metainfo.source", "pk": 7577, "fields": {"orig_filename": "Paoletti_Antonio-Ermolao_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408442}}, {"model": "metainfo.source", "pk": 7578, "fields": {"orig_filename": "Paoli_Francesco_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318f.", "author": "", "orig_id": 1408444}}, {"model": "metainfo.source", "pk": 7579, "fields": {"orig_filename": "Papadopoli-Aldobrandini_Nicolo_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408519}}, {"model": "metainfo.source", "pk": 7580, "fields": {"orig_filename": "Papadopoli_Antonio_1815_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319f.", "author": "", "orig_id": 1408518}}, {"model": "metainfo.source", "pk": 7581, "fields": {"orig_filename": "Papaleoni_Giuseppe_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408520}}, {"model": "metainfo.source", "pk": 7582, "fields": {"orig_filename": "Papay_Samuel_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408521}}, {"model": "metainfo.source", "pk": 7583, "fields": {"orig_filename": "Papee_Fryderyk_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321", "author": "", "orig_id": 1408522}}, {"model": "metainfo.source", "pk": 7584, "fields": {"orig_filename": "Papic_Josip_1881_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321", "author": "", "orig_id": 1408523}}, {"model": "metainfo.source", "pk": 7585, "fields": {"orig_filename": "Papin_Heinrich_1786_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321f.", "author": "", "orig_id": 1408524}}, {"model": "metainfo.source", "pk": 7586, "fields": {"orig_filename": "Papiu-Ilarian_Alexandru_1827_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 322", "author": "", "orig_id": 1408525}}, {"model": "metainfo.source", "pk": 7587, "fields": {"orig_filename": "Papp-Keresztes_Miklos_1837_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 322f.", "author": "", "orig_id": 1408526}}, {"model": "metainfo.source", "pk": 7588, "fields": {"orig_filename": "Pappafava_Vladimiro_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408527}}, {"model": "metainfo.source", "pk": 7589, "fields": {"orig_filename": "Pappenheim_Martin_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408528}}, {"model": "metainfo.source", "pk": 7590, "fields": {"orig_filename": "Pap_Gabor_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408445}}, {"model": "metainfo.source", "pk": 7591, "fields": {"orig_filename": "Pap_Istvan_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408446}}, {"model": "metainfo.source", "pk": 7592, "fields": {"orig_filename": "Pap_Istvan_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408447}}, {"model": "metainfo.source", "pk": 7593, "fields": {"orig_filename": "Paradeiser_Wenzel_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408529}}, {"model": "metainfo.source", "pk": 7594, "fields": {"orig_filename": "Ornstein_Zwi-Hirsch__1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249", "author": "", "orig_id": 1409147}}, {"model": "metainfo.source", "pk": 7595, "fields": {"orig_filename": "Oroszhegyi-Szabo_Jozsa_1822_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249f.", "author": "", "orig_id": 1409148}}, {"model": "metainfo.source", "pk": 7596, "fields": {"orig_filename": "Orozen_Fran_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250", "author": "", "orig_id": 1409149}}, {"model": "metainfo.source", "pk": 7597, "fields": {"orig_filename": "Orozen_Ignaz_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250", "author": "", "orig_id": 1412811}}, {"model": "metainfo.source", "pk": 7598, "fields": {"orig_filename": "Orsini-Rosenberg_Felix_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252", "author": "", "orig_id": 1409152}}, {"model": "metainfo.source", "pk": 7599, "fields": {"orig_filename": "Orsini-Rosenberg_Franz_1761_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252", "author": "", "orig_id": 1409153}}, {"model": "metainfo.source", "pk": 7600, "fields": {"orig_filename": "Orsini-Rosenberg_Karl-Dominik-Maximilian_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252f.", "author": "", "orig_id": 1409154}}, {"model": "metainfo.source", "pk": 7601, "fields": {"orig_filename": "Orsini-Rosenberg_Maximilian_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253", "author": "", "orig_id": 1409155}}, {"model": "metainfo.source", "pk": 7602, "fields": {"orig_filename": "Orsi_Osvaldo_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250f.", "author": "", "orig_id": 1409150}}, {"model": "metainfo.source", "pk": 7603, "fields": {"orig_filename": "Orsi_Paolo_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 251f.", "author": "", "orig_id": 1409151}}, {"model": "metainfo.source", "pk": 7604, "fields": {"orig_filename": "Orszagh_Jozef_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253", "author": "", "orig_id": 1409156}}, {"model": "metainfo.source", "pk": 7605, "fields": {"orig_filename": "Orszagh_Pavol_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253f.", "author": "", "orig_id": 1409157}}, {"model": "metainfo.source", "pk": 7606, "fields": {"orig_filename": "Orth_Johann_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 254", "author": "", "orig_id": 1409158}}, {"model": "metainfo.source", "pk": 7607, "fields": {"orig_filename": "Ortmann_Anton_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 254f.", "author": "", "orig_id": 1409159}}, {"model": "metainfo.source", "pk": 7608, "fields": {"orig_filename": "Ortmann_Johann_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409160}}, {"model": "metainfo.source", "pk": 7609, "fields": {"orig_filename": "Ortner-Rodenstaett_Norbert_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256", "author": "", "orig_id": 1409233}}, {"model": "metainfo.source", "pk": 7610, "fields": {"orig_filename": "Ortner_Max_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255f.", "author": "", "orig_id": 1409162}}, {"model": "metainfo.source", "pk": 7611, "fields": {"orig_filename": "Ortner_Peter_1813_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256", "author": "", "orig_id": 1409232}}, {"model": "metainfo.source", "pk": 7612, "fields": {"orig_filename": "Ortvay_Tivadar_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256f.", "author": "", "orig_id": 1409234}}, {"model": "metainfo.source", "pk": 7613, "fields": {"orig_filename": "Ortwein_Magnus_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257", "author": "", "orig_id": 1409235}}, {"model": "metainfo.source", "pk": 7614, "fields": {"orig_filename": "Orzechowicz_Boleslaw_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257", "author": "", "orig_id": 1409236}}, {"model": "metainfo.source", "pk": 7615, "fields": {"orig_filename": "Oser_Johann_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257f.", "author": "", "orig_id": 1409237}}, {"model": "metainfo.source", "pk": 7616, "fields": {"orig_filename": "Oser_Leopold_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 258", "author": "", "orig_id": 1409238}}, {"model": "metainfo.source", "pk": 7617, "fields": {"orig_filename": "Oss-Mazzurana_Paolo_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259", "author": "", "orig_id": 1409241}}, {"model": "metainfo.source", "pk": 7618, "fields": {"orig_filename": "Ossikovszky_Josef_1844_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259", "author": "", "orig_id": 1409242}}, {"model": "metainfo.source", "pk": 7619, "fields": {"orig_filename": "Ossolinska_Ludwika-Roza_1797_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259f.", "author": "", "orig_id": 1409243}}, {"model": "metainfo.source", "pk": 7620, "fields": {"orig_filename": "Ossolinski_Jozef-Maksymilian_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260", "author": "", "orig_id": 1409244}}, {"model": "metainfo.source", "pk": 7621, "fields": {"orig_filename": "Ostapcuk_Jacko_1873_1959.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260", "author": "", "orig_id": 1409245}}, {"model": "metainfo.source", "pk": 7622, "fields": {"orig_filename": "Ostaszewski-Baranski_Kazimierz-Piotr_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260f.", "author": "", "orig_id": 1409247}}, {"model": "metainfo.source", "pk": 7623, "fields": {"orig_filename": "Osterc_Slavko_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261", "author": "", "orig_id": 1409249}}, {"model": "metainfo.source", "pk": 7624, "fields": {"orig_filename": "Osterlamm_Ernest_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261", "author": "", "orig_id": 1409250}}, {"model": "metainfo.source", "pk": 7625, "fields": {"orig_filename": "Ostermayer_Adolf_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261f.", "author": "", "orig_id": 1409251}}, {"model": "metainfo.source", "pk": 7626, "fields": {"orig_filename": "Osternacher_Johann_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 262f.", "author": "", "orig_id": 1409252}}, {"model": "metainfo.source", "pk": 7627, "fields": {"orig_filename": "Ostojic_Tihomir_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263", "author": "", "orig_id": 1409253}}, {"model": "metainfo.source", "pk": 7628, "fields": {"orig_filename": "Ostrcil_Anton_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263", "author": "", "orig_id": 1409254}}, {"model": "metainfo.source", "pk": 7629, "fields": {"orig_filename": "Ostrcil_Otakar_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263f.", "author": "", "orig_id": 1409255}}, {"model": "metainfo.source", "pk": 7630, "fields": {"orig_filename": "Ostrozynski_Wladyslaw_1857_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 264", "author": "", "orig_id": 1409329}}, {"model": "metainfo.source", "pk": 7631, "fields": {"orig_filename": "Osullivan-Grass_Elisabeth-Charlotte_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 264f.", "author": "", "orig_id": 1409330}}, {"model": "metainfo.source", "pk": 7632, "fields": {"orig_filename": "Osvald_Frantisek-Richard_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 265", "author": "", "orig_id": 1409331}}, {"model": "metainfo.source", "pk": 7633, "fields": {"orig_filename": "Oswald_Franz_1790_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 265f.", "author": "", "orig_id": 1409332}}, {"model": "metainfo.source", "pk": 7634, "fields": {"orig_filename": "Osztenburg_Julius_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266", "author": "", "orig_id": 1409333}}, {"model": "metainfo.source", "pk": 7635, "fields": {"orig_filename": "Otremba_Karol-Fryderyk-August_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266", "author": "", "orig_id": 1409334}}, {"model": "metainfo.source", "pk": 7636, "fields": {"orig_filename": "Ottava_Ignac_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268", "author": "", "orig_id": 1409339}}, {"model": "metainfo.source", "pk": 7637, "fields": {"orig_filename": "Ottel_Klemens_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268", "author": "", "orig_id": 1409340}}, {"model": "metainfo.source", "pk": 7638, "fields": {"orig_filename": "Ottendorfer_Oswald_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268f.", "author": "", "orig_id": 1409341}}, {"model": "metainfo.source", "pk": 7639, "fields": {"orig_filename": "Ottenfels-Gschwind_Franz_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 269", "author": "", "orig_id": 1412812}}, {"model": "metainfo.source", "pk": 7640, "fields": {"orig_filename": "Ottenthaler-Ottenthal_Emil_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 269f.", "author": "", "orig_id": 1409342}}, {"model": "metainfo.source", "pk": 7641, "fields": {"orig_filename": "Ottenthaler-Ottenthal_Kaspar_1780_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 270", "author": "", "orig_id": 1409343}}, {"model": "metainfo.source", "pk": 7642, "fields": {"orig_filename": "Otto-Kirchberg_Anton_1760_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409347}}, {"model": "metainfo.source", "pk": 7643, "fields": {"orig_filename": "Otto-Ottenfeld_Maximilian_1777_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409348}}, {"model": "metainfo.source", "pk": 7644, "fields": {"orig_filename": "Otto_Jan_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 271", "author": "", "orig_id": 1409345}}, {"model": "metainfo.source", "pk": 7645, "fields": {"orig_filename": "Otto_Johann-Karl-Theodor_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 271", "author": "", "orig_id": 1409346}}, {"model": "metainfo.source", "pk": 7646, "fields": {"orig_filename": "Otto__1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 270f.", "author": "", "orig_id": 1409344}}, {"model": "metainfo.source", "pk": 7647, "fields": {"orig_filename": "Ott_Adolf_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266f.", "author": "", "orig_id": 1409335}}, {"model": "metainfo.source", "pk": 7648, "fields": {"orig_filename": "Ott_Emil_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267", "author": "", "orig_id": 1409336}}, {"model": "metainfo.source", "pk": 7649, "fields": {"orig_filename": "Ott_Josef-Friedrich_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267", "author": "", "orig_id": 1409337}}, {"model": "metainfo.source", "pk": 7650, "fields": {"orig_filename": "Ott_Karl_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267f.", "author": "", "orig_id": 1409338}}, {"model": "metainfo.source", "pk": 7651, "fields": {"orig_filename": "Ovari_Kelemen_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409349}}, {"model": "metainfo.source", "pk": 7652, "fields": {"orig_filename": "Ovary_Lipot_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272f.", "author": "", "orig_id": 1409350}}, {"model": "metainfo.source", "pk": 7653, "fields": {"orig_filename": "Ozarkevyc_Ivan_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 273", "author": "", "orig_id": 1409417}}, {"model": "metainfo.source", "pk": 7654, "fields": {"orig_filename": "Ozegovic-Barlabasevec-Bela_Metel_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409419}}, {"model": "metainfo.source", "pk": 7655, "fields": {"orig_filename": "Ozegovic-Barlabasevec_Mirko_1775_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 273", "author": "", "orig_id": 1409418}}, {"model": "metainfo.source", "pk": 7656, "fields": {"orig_filename": "Ozlberger_Karl_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409420}}, {"model": "metainfo.source", "pk": 7657, "fields": {"orig_filename": "Ozvald_Karel_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409421}}, {"model": "metainfo.source", "pk": 7658, "fields": {"orig_filename": "Paal_Karl_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274f.", "author": "", "orig_id": 1409422}}, {"model": "metainfo.source", "pk": 7659, "fields": {"orig_filename": "Paal_Laszlo_1846_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275", "author": "", "orig_id": 1409423}}, {"model": "metainfo.source", "pk": 7660, "fields": {"orig_filename": "Paar_Alois_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275", "author": "", "orig_id": 1409424}}, {"model": "metainfo.source", "pk": 7661, "fields": {"orig_filename": "Paar_Eduard_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275f.", "author": "", "orig_id": 1409425}}, {"model": "metainfo.source", "pk": 7662, "fields": {"orig_filename": "Paar_Hermann_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409426}}, {"model": "metainfo.source", "pk": 7663, "fields": {"orig_filename": "Paasdorfer_Leopold_1856_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409427}}, {"model": "metainfo.source", "pk": 7664, "fields": {"orig_filename": "Pabisch_Franz-Josef_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409428}}, {"model": "metainfo.source", "pk": 7665, "fields": {"orig_filename": "Pablasek_Matthias_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276f.", "author": "", "orig_id": 1409429}}, {"model": "metainfo.source", "pk": 7666, "fields": {"orig_filename": "Pabst_Heinrich-Wilhelm_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 277", "author": "", "orig_id": 1409430}}, {"model": "metainfo.source", "pk": 7667, "fields": {"orig_filename": "Pabst_Johann-Heinrich_1785_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278", "author": "", "orig_id": 1409432}}, {"model": "metainfo.source", "pk": 7668, "fields": {"orig_filename": "Pabst_Johann_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 277f.", "author": "", "orig_id": 1409431}}, {"model": "metainfo.source", "pk": 7669, "fields": {"orig_filename": "Pacak_Bedrich_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278", "author": "", "orig_id": 1409433}}, {"model": "metainfo.source", "pk": 7670, "fields": {"orig_filename": "Pacal_Franz_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278f.", "author": "", "orig_id": 1409434}}, {"model": "metainfo.source", "pk": 7671, "fields": {"orig_filename": "Pacchioni_Giovanni_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409435}}, {"model": "metainfo.source", "pk": 7672, "fields": {"orig_filename": "Pace-Friedensberg_Anton_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409436}}, {"model": "metainfo.source", "pk": 7673, "fields": {"orig_filename": "Pacher-Theinburg_Gustav_1839_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281", "author": "", "orig_id": 1408063}}, {"model": "metainfo.source", "pk": 7674, "fields": {"orig_filename": "Pacher-Theinburg_Johann-Martin_1772_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281", "author": "", "orig_id": 1408064}}, {"model": "metainfo.source", "pk": 7675, "fields": {"orig_filename": "Pacher-Theinburg_Paul_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281f.", "author": "", "orig_id": 1408065}}, {"model": "metainfo.source", "pk": 7676, "fields": {"orig_filename": "Pacher_Anton_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409437}}, {"model": "metainfo.source", "pk": 7677, "fields": {"orig_filename": "Pacher_David_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279f.", "author": "", "orig_id": 1409438}}, {"model": "metainfo.source", "pk": 7678, "fields": {"orig_filename": "Pacher_Josef-Adalbert_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 280", "author": "", "orig_id": 1409439}}, {"model": "metainfo.source", "pk": 7679, "fields": {"orig_filename": "Pacher_Raphael_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 280", "author": "", "orig_id": 1408062}}, {"model": "metainfo.source", "pk": 7680, "fields": {"orig_filename": "Pachinger_Anton-Maximilian_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 282", "author": "", "orig_id": 1408066}}, {"model": "metainfo.source", "pk": 7681, "fields": {"orig_filename": "Pachler_Faust_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 282f.", "author": "", "orig_id": 1408067}}, {"model": "metainfo.source", "pk": 7682, "fields": {"orig_filename": "Pachler_Marie-Leopoldine_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283", "author": "", "orig_id": 1408068}}, {"model": "metainfo.source", "pk": 7683, "fields": {"orig_filename": "Pachmann_Theodor_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283", "author": "", "orig_id": 1408069}}, {"model": "metainfo.source", "pk": 7684, "fields": {"orig_filename": "Pachner-Eggenstorf_Anton_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283f.", "author": "", "orig_id": 1408070}}, {"model": "metainfo.source", "pk": 7685, "fields": {"orig_filename": "Pachta-Rayhofen_Johann-Josef-Philipp_1723_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284", "author": "", "orig_id": 1408071}}, {"model": "metainfo.source", "pk": 7686, "fields": {"orig_filename": "Pacic_Jovan_1771_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284", "author": "", "orig_id": 1408072}}, {"model": "metainfo.source", "pk": 7687, "fields": {"orig_filename": "Packeny-Kilstaedten_Friedrich_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284f.", "author": "", "orig_id": 1408073}}, {"model": "metainfo.source", "pk": 7688, "fields": {"orig_filename": "Pacold_Jiri_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408074}}, {"model": "metainfo.source", "pk": 7689, "fields": {"orig_filename": "Padiaur_Karl_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408075}}, {"model": "metainfo.source", "pk": 7690, "fields": {"orig_filename": "Padovan_Giglio_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408076}}, {"model": "metainfo.source", "pk": 7691, "fields": {"orig_filename": "Padovan_Guglielmo_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285f.", "author": "", "orig_id": 1408077}}, {"model": "metainfo.source", "pk": 7692, "fields": {"orig_filename": "Pagaczewski_Julian_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 286", "author": "", "orig_id": 1408078}}, {"model": "metainfo.source", "pk": 7693, "fields": {"orig_filename": "Paganetti_Gustav_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 286f.", "author": "", "orig_id": 1408079}}, {"model": "metainfo.source", "pk": 7694, "fields": {"orig_filename": "Pagani-Cesa_Giuseppe-Urbano_1757_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 287f.", "author": "", "orig_id": 1408081}}, {"model": "metainfo.source", "pk": 7695, "fields": {"orig_filename": "Oeri-Fueloep_Gabor_1739_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210f.", "author": "", "orig_id": 1408697}}, {"model": "metainfo.source", "pk": 7696, "fields": {"orig_filename": "Oerley_Leopold_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 211", "author": "", "orig_id": 1408698}}, {"model": "metainfo.source", "pk": 7697, "fields": {"orig_filename": "Oerley_Robert_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 211f.", "author": "", "orig_id": 1408699}}, {"model": "metainfo.source", "pk": 7698, "fields": {"orig_filename": "Oer_Franz_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210", "author": "", "orig_id": 1408695}}, {"model": "metainfo.source", "pk": 7699, "fields": {"orig_filename": "Oesterlein_Nikolaus-Johannes_1841_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 212f.", "author": "", "orig_id": 1408701}}, {"model": "metainfo.source", "pk": 7700, "fields": {"orig_filename": "Oesterlein_Nikolaus_1804_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 212", "author": "", "orig_id": 1408700}}, {"model": "metainfo.source", "pk": 7701, "fields": {"orig_filename": "Oesterreich_Franz_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408702}}, {"model": "metainfo.source", "pk": 7702, "fields": {"orig_filename": "Oettel_Karl_1767_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408704}}, {"model": "metainfo.source", "pk": 7703, "fields": {"orig_filename": "Oettinger_Jozef_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213f.", "author": "", "orig_id": 1408774}}, {"model": "metainfo.source", "pk": 7704, "fields": {"orig_filename": "Oettl_Johann_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 214", "author": "", "orig_id": 1408775}}, {"model": "metainfo.source", "pk": 7705, "fields": {"orig_filename": "Oetvoes_Agoston_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 214", "author": "", "orig_id": 1408776}}, {"model": "metainfo.source", "pk": 7706, "fields": {"orig_filename": "Ofenheim-Ponteuxin_Viktor_1820_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 215", "author": "", "orig_id": 1408777}}, {"model": "metainfo.source", "pk": 7707, "fields": {"orig_filename": "Offermann_Karl_1792_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 215f.", "author": "", "orig_id": 1408778}}, {"model": "metainfo.source", "pk": 7708, "fields": {"orig_filename": "Offermann_Karl_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408779}}, {"model": "metainfo.source", "pk": 7709, "fields": {"orig_filename": "Offermann_Karl_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408780}}, {"model": "metainfo.source", "pk": 7710, "fields": {"orig_filename": "Offermann_Theodor_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408781}}, {"model": "metainfo.source", "pk": 7711, "fields": {"orig_filename": "Offner_Johann-Michael_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216f.", "author": "", "orig_id": 1408782}}, {"model": "metainfo.source", "pk": 7712, "fields": {"orig_filename": "Ofner_Hermann_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217", "author": "", "orig_id": 1408783}}, {"model": "metainfo.source", "pk": 7713, "fields": {"orig_filename": "Ofner_Johann_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217", "author": "", "orig_id": 1408784}}, {"model": "metainfo.source", "pk": 7714, "fields": {"orig_filename": "Ofner_Julius_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217f.", "author": "", "orig_id": 1408785}}, {"model": "metainfo.source", "pk": 7715, "fields": {"orig_filename": "Ogrinec_Josip_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 218", "author": "", "orig_id": 1408786}}, {"model": "metainfo.source", "pk": 7716, "fields": {"orig_filename": "Ogrizovic_Milan_1877_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 218f.", "author": "", "orig_id": 1408787}}, {"model": "metainfo.source", "pk": 7717, "fields": {"orig_filename": "Oheral_Jan_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 219", "author": "", "orig_id": 1408788}}, {"model": "metainfo.source", "pk": 7718, "fields": {"orig_filename": "Ohligs_Bernhard-Wilhelm_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 219f.", "author": "", "orig_id": 1408789}}, {"model": "metainfo.source", "pk": 7719, "fields": {"orig_filename": "Ohmann_Friedrich_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 220", "author": "", "orig_id": 1408790}}, {"model": "metainfo.source", "pk": 7720, "fields": {"orig_filename": "Ohonovskyj_Omeljan-Mychajlovyc_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 220f.", "author": "", "orig_id": 1408791}}, {"model": "metainfo.source", "pk": 7721, "fields": {"orig_filename": "Ohorn_Anton_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 221", "author": "", "orig_id": 1408792}}, {"model": "metainfo.source", "pk": 7722, "fields": {"orig_filename": "Ohrfandl_Heinrich-Karl_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 221f.", "author": "", "orig_id": 1408793}}, {"model": "metainfo.source", "pk": 7723, "fields": {"orig_filename": "Ohrwalder_Josef_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222", "author": "", "orig_id": 1408794}}, {"model": "metainfo.source", "pk": 7724, "fields": {"orig_filename": "Oitzinger_Anton_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222", "author": "", "orig_id": 1408795}}, {"model": "metainfo.source", "pk": 7725, "fields": {"orig_filename": "Okon_Eugeniusz_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222f.", "author": "", "orig_id": 1408796}}, {"model": "metainfo.source", "pk": 7726, "fields": {"orig_filename": "Okretic_Ivan_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408866}}, {"model": "metainfo.source", "pk": 7727, "fields": {"orig_filename": "Okrugic_Ilija_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408867}}, {"model": "metainfo.source", "pk": 7728, "fields": {"orig_filename": "Okunevskyj_Theophil_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223f.", "author": "", "orig_id": 1408869}}, {"model": "metainfo.source", "pk": 7729, "fields": {"orig_filename": "Olah_Gusztav_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224", "author": "", "orig_id": 1408870}}, {"model": "metainfo.source", "pk": 7730, "fields": {"orig_filename": "Olariu_Iuliu-Iosif_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224", "author": "", "orig_id": 1408871}}, {"model": "metainfo.source", "pk": 7731, "fields": {"orig_filename": "Olbrich_Josef-Maria_1867_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224ff.", "author": "", "orig_id": 1408872}}, {"model": "metainfo.source", "pk": 7732, "fields": {"orig_filename": "Oldenburg_Elimar-Anton-Guenther-Friedrich_1844_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226", "author": "", "orig_id": 1408874}}, {"model": "metainfo.source", "pk": 7733, "fields": {"orig_filename": "Oldenburg_Rudolf_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226", "author": "", "orig_id": 1408873}}, {"model": "metainfo.source", "pk": 7734, "fields": {"orig_filename": "Olearski_Kazimierz_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226f.", "author": "", "orig_id": 1408875}}, {"model": "metainfo.source", "pk": 7735, "fields": {"orig_filename": "Olesnyckyj_Evhen_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 227", "author": "", "orig_id": 1408876}}, {"model": "metainfo.source", "pk": 7736, "fields": {"orig_filename": "Olexik_Paul_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 227f.", "author": "", "orig_id": 1408877}}, {"model": "metainfo.source", "pk": 7737, "fields": {"orig_filename": "Oliva_Giovanni_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228", "author": "", "orig_id": 1408878}}, {"model": "metainfo.source", "pk": 7738, "fields": {"orig_filename": "Olschowy_Julius_1862_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228", "author": "", "orig_id": 1408879}}, {"model": "metainfo.source", "pk": 7739, "fields": {"orig_filename": "Olszewski_Karol-Stanislaw_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228f.", "author": "", "orig_id": 1408880}}, {"model": "metainfo.source", "pk": 7740, "fields": {"orig_filename": "Olszewski_Michal_1868_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 229", "author": "", "orig_id": 1408881}}, {"model": "metainfo.source", "pk": 7741, "fields": {"orig_filename": "Olynch-Town_Karl_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230", "author": "", "orig_id": 1408883}}, {"model": "metainfo.source", "pk": 7742, "fields": {"orig_filename": "Omerza_Franc_1885_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230", "author": "", "orig_id": 1408884}}, {"model": "metainfo.source", "pk": 7743, "fields": {"orig_filename": "Onciul_Dimitrie_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230f.", "author": "", "orig_id": 1408885}}, {"model": "metainfo.source", "pk": 7744, "fields": {"orig_filename": "Onciul_Isidor_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408955}}, {"model": "metainfo.source", "pk": 7745, "fields": {"orig_filename": "Ondricek_Frantisek_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408956}}, {"model": "metainfo.source", "pk": 7746, "fields": {"orig_filename": "Ondrusek_Frantisek_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408957}}, {"model": "metainfo.source", "pk": 7747, "fields": {"orig_filename": "Onken_Karl-Eduard_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231f.", "author": "", "orig_id": 1408958}}, {"model": "metainfo.source", "pk": 7748, "fields": {"orig_filename": "Onodi_Adolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232", "author": "", "orig_id": 1408959}}, {"model": "metainfo.source", "pk": 7749, "fields": {"orig_filename": "Ontl_August_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232", "author": "", "orig_id": 1408960}}, {"model": "metainfo.source", "pk": 7750, "fields": {"orig_filename": "Opeka_Mihael_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232f.", "author": "", "orig_id": 1408961}}, {"model": "metainfo.source", "pk": 7751, "fields": {"orig_filename": "Opel_Kamillo_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 233", "author": "", "orig_id": 1408962}}, {"model": "metainfo.source", "pk": 7752, "fields": {"orig_filename": "Opitz_Ambros_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 233f.", "author": "", "orig_id": 1408963}}, {"model": "metainfo.source", "pk": 7753, "fields": {"orig_filename": "Opitz_Coelestinus_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234", "author": "", "orig_id": 1408964}}, {"model": "metainfo.source", "pk": 7754, "fields": {"orig_filename": "Opitz_Heinrich_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234", "author": "", "orig_id": 1408965}}, {"model": "metainfo.source", "pk": 7755, "fields": {"orig_filename": "Opiz_Georg-Emanuel_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234f.", "author": "", "orig_id": 1408966}}, {"model": "metainfo.source", "pk": 7756, "fields": {"orig_filename": "Opiz_Philipp-Maximilian_1787_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235", "author": "", "orig_id": 1408967}}, {"model": "metainfo.source", "pk": 7757, "fields": {"orig_filename": "Opolski_Stanislaw_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235", "author": "", "orig_id": 1408968}}, {"model": "metainfo.source", "pk": 7758, "fields": {"orig_filename": "Opolsky_Jan_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235f.", "author": "", "orig_id": 1408969}}, {"model": "metainfo.source", "pk": 7759, "fields": {"orig_filename": "Oppenheimer_Felix-Hermann_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238", "author": "", "orig_id": 1408976}}, {"model": "metainfo.source", "pk": 7760, "fields": {"orig_filename": "Oppenheim_Adolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236", "author": "", "orig_id": 1408970}}, {"model": "metainfo.source", "pk": 7761, "fields": {"orig_filename": "Oppenheim_David_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236", "author": "", "orig_id": 1408971}}, {"model": "metainfo.source", "pk": 7762, "fields": {"orig_filename": "Oppenheim_Joachim_1832_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236f.", "author": "", "orig_id": 1408972}}, {"model": "metainfo.source", "pk": 7763, "fields": {"orig_filename": "Oppenheim_Josef_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 237", "author": "", "orig_id": 1408973}}, {"model": "metainfo.source", "pk": 7764, "fields": {"orig_filename": "Oppenheim_Moritz_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 237", "author": "", "orig_id": 1408974}}, {"model": "metainfo.source", "pk": 7765, "fields": {"orig_filename": "Oppenheim_Samuel_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238", "author": "", "orig_id": 1408975}}, {"model": "metainfo.source", "pk": 7766, "fields": {"orig_filename": "Oppolzer_Egon_1869_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238f.", "author": "", "orig_id": 1408977}}, {"model": "metainfo.source", "pk": 7767, "fields": {"orig_filename": "Oppolzer_Johann_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 239", "author": "", "orig_id": 1409043}}, {"model": "metainfo.source", "pk": 7768, "fields": {"orig_filename": "Oppolzer_Theodor_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 239f.", "author": "", "orig_id": 1409044}}, {"model": "metainfo.source", "pk": 7769, "fields": {"orig_filename": "Opydo_Franciszek_1856_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 240", "author": "", "orig_id": 1409046}}, {"model": "metainfo.source", "pk": 7770, "fields": {"orig_filename": "Orazen_Ivan_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 240f.", "author": "", "orig_id": 1409045}}, {"model": "metainfo.source", "pk": 7771, "fields": {"orig_filename": "Orban-Lengyelfalva_Balazs_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241", "author": "", "orig_id": 1409047}}, {"model": "metainfo.source", "pk": 7772, "fields": {"orig_filename": "Orbok-Koekoesd_Mor_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241f.", "author": "", "orig_id": 1409049}}, {"model": "metainfo.source", "pk": 7773, "fields": {"orig_filename": "Orbok_Lorand_1884_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241", "author": "", "orig_id": 1409048}}, {"model": "metainfo.source", "pk": 7774, "fields": {"orig_filename": "Orczy-Orczi_Bela_1822_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409050}}, {"model": "metainfo.source", "pk": 7775, "fields": {"orig_filename": "Ordody-Ordod_Lajos_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409051}}, {"model": "metainfo.source", "pk": 7776, "fields": {"orig_filename": "Ordody-Ordod_Pal_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409052}}, {"model": "metainfo.source", "pk": 7777, "fields": {"orig_filename": "Orefici_Francesco_1771_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409053}}, {"model": "metainfo.source", "pk": 7778, "fields": {"orig_filename": "Orel_Dobroslav_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243", "author": "", "orig_id": 1409054}}, {"model": "metainfo.source", "pk": 7779, "fields": {"orig_filename": "Orel_Eduard_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243", "author": "", "orig_id": 1409055}}, {"model": "metainfo.source", "pk": 7780, "fields": {"orig_filename": "Orel_Eduard_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243f.", "author": "", "orig_id": 1409056}}, {"model": "metainfo.source", "pk": 7781, "fields": {"orig_filename": "Orel_Johann_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244", "author": "", "orig_id": 1409057}}, {"model": "metainfo.source", "pk": 7782, "fields": {"orig_filename": "Orel_Josef_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244", "author": "", "orig_id": 1409058}}, {"model": "metainfo.source", "pk": 7783, "fields": {"orig_filename": "Orel_Walther_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244f.", "author": "", "orig_id": 1409059}}, {"model": "metainfo.source", "pk": 7784, "fields": {"orig_filename": "Orges_Hermann_1821_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245", "author": "", "orig_id": 1409060}}, {"model": "metainfo.source", "pk": 7785, "fields": {"orig_filename": "Orgler_Flavian_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245", "author": "", "orig_id": 1409061}}, {"model": "metainfo.source", "pk": 7786, "fields": {"orig_filename": "Orlai-Petrich_Soma_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245f.", "author": "", "orig_id": 1409062}}, {"model": "metainfo.source", "pk": 7787, "fields": {"orig_filename": "Orlandini_Giovanni_1804_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246", "author": "", "orig_id": 1409063}}, {"model": "metainfo.source", "pk": 7788, "fields": {"orig_filename": "Orlay_Janos_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246", "author": "", "orig_id": 1409064}}, {"model": "metainfo.source", "pk": 7789, "fields": {"orig_filename": "Orliczek_Alois_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246f.", "author": "", "orig_id": 1409065}}, {"model": "metainfo.source", "pk": 7790, "fields": {"orig_filename": "Orlik_Emil_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 247", "author": "", "orig_id": 1409140}}, {"model": "metainfo.source", "pk": 7791, "fields": {"orig_filename": "Ormis_Samuel_1824_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 247f.", "author": "", "orig_id": 1409141}}, {"model": "metainfo.source", "pk": 7792, "fields": {"orig_filename": "Ormody-Ormod_Vilmos_1838_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409142}}, {"model": "metainfo.source", "pk": 7793, "fields": {"orig_filename": "Ormos-Csicser_Zsigmond_1813_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409143}}, {"model": "metainfo.source", "pk": 7794, "fields": {"orig_filename": "Ornig_Josef_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409144}}, {"model": "metainfo.source", "pk": 7795, "fields": {"orig_filename": "Ornstein_Jakob-Meschulam_1775_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248f.", "author": "", "orig_id": 1409145}}, {"model": "metainfo.source", "pk": 7796, "fields": {"orig_filename": "Ornstein_Moses_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249", "author": "", "orig_id": 1409146}}, {"model": "metainfo.source", "pk": 7797, "fields": {"orig_filename": "Nuckowski_Jan_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175f.", "author": "", "orig_id": 1408315}}, {"model": "metainfo.source", "pk": 7798, "fields": {"orig_filename": "Nuechtern_August_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 176", "author": "", "orig_id": 1408316}}, {"model": "metainfo.source", "pk": 7799, "fields": {"orig_filename": "Nuell_Eduard_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 176f.", "author": "", "orig_id": 1408317}}, {"model": "metainfo.source", "pk": 7800, "fields": {"orig_filename": "Nuic_Andjeo_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408319}}, {"model": "metainfo.source", "pk": 7801, "fields": {"orig_filename": "Nuic_Arkandjeo_1896_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408318}}, {"model": "metainfo.source", "pk": 7802, "fields": {"orig_filename": "Nunnenmacher-Roellfeld_Ludwig_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408320}}, {"model": "metainfo.source", "pk": 7803, "fields": {"orig_filename": "Nusbaum-Hilarowicz_Jozef_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178", "author": "", "orig_id": 1408321}}, {"model": "metainfo.source", "pk": 7804, "fields": {"orig_filename": "Nussbaumer_Michael_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178", "author": "", "orig_id": 1408322}}, {"model": "metainfo.source", "pk": 7805, "fields": {"orig_filename": "Nussbaumer_Otto_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178f.", "author": "", "orig_id": 1408323}}, {"model": "metainfo.source", "pk": 7806, "fields": {"orig_filename": "Nussbaumer_Thiemo_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408324}}, {"model": "metainfo.source", "pk": 7807, "fields": {"orig_filename": "Nusshard_Franz-Willibald_1785_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408325}}, {"model": "metainfo.source", "pk": 7808, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Adolf_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408326}}, {"model": "metainfo.source", "pk": 7809, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Albert_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179f.", "author": "", "orig_id": 1408327}}, {"model": "metainfo.source", "pk": 7810, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Antal_1803_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180", "author": "", "orig_id": 1408328}}, {"model": "metainfo.source", "pk": 7811, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Jenoe_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180", "author": "", "orig_id": 1408329}}, {"model": "metainfo.source", "pk": 7812, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Pal_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180f.", "author": "", "orig_id": 1408330}}, {"model": "metainfo.source", "pk": 7813, "fields": {"orig_filename": "Nydrle_Antonin_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181", "author": "", "orig_id": 1408331}}, {"model": "metainfo.source", "pk": 7814, "fields": {"orig_filename": "Nyiri-Szekely_Alexander_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181", "author": "", "orig_id": 1408400}}, {"model": "metainfo.source", "pk": 7815, "fields": {"orig_filename": "Nyiry_Istvan_1776_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181f.", "author": "", "orig_id": 1408401}}, {"model": "metainfo.source", "pk": 7816, "fields": {"orig_filename": "Nyulassy_Anton_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182", "author": "", "orig_id": 1408402}}, {"model": "metainfo.source", "pk": 7817, "fields": {"orig_filename": "Obach_Theobald_1843_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182", "author": "", "orig_id": 1408403}}, {"model": "metainfo.source", "pk": 7818, "fields": {"orig_filename": "Obalinski_Alfred_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182f.", "author": "", "orig_id": 1408404}}, {"model": "metainfo.source", "pk": 7819, "fields": {"orig_filename": "Obentraut_Adolf_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 183", "author": "", "orig_id": 1408405}}, {"model": "metainfo.source", "pk": 7820, "fields": {"orig_filename": "Obentraut_Johann-Karl_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 183f.", "author": "", "orig_id": 1408406}}, {"model": "metainfo.source", "pk": 7821, "fields": {"orig_filename": "Oberascher_Emmerich_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184", "author": "", "orig_id": 1408407}}, {"model": "metainfo.source", "pk": 7822, "fields": {"orig_filename": "Oberdank_Wilhelm_1858_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184", "author": "", "orig_id": 1408409}}, {"model": "metainfo.source", "pk": 7823, "fields": {"orig_filename": "Oberegger_Matthaeus_1829_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184f.", "author": "", "orig_id": 1408410}}, {"model": "metainfo.source", "pk": 7824, "fields": {"orig_filename": "Oberer_Franz_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408411}}, {"model": "metainfo.source", "pk": 7825, "fields": {"orig_filename": "Oberforcher_Josef_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408412}}, {"model": "metainfo.source", "pk": 7826, "fields": {"orig_filename": "Oberhauser_Rudolf_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408413}}, {"model": "metainfo.source", "pk": 7827, "fields": {"orig_filename": "Oberhummer_Eugen_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185f.", "author": "", "orig_id": 1408414}}, {"model": "metainfo.source", "pk": 7828, "fields": {"orig_filename": "Oberkamp_Rudolf_1825_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 186", "author": "", "orig_id": 1408415}}, {"model": "metainfo.source", "pk": 7829, "fields": {"orig_filename": "Oberkofler_Anton_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 186f.", "author": "", "orig_id": 1408416}}, {"model": "metainfo.source", "pk": 7830, "fields": {"orig_filename": "Oberlaender_Alfred_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408417}}, {"model": "metainfo.source", "pk": 7831, "fields": {"orig_filename": "Oberlaender_Moritz-Jakob_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408418}}, {"model": "metainfo.source", "pk": 7832, "fields": {"orig_filename": "Oberleithner_Karl_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408419}}, {"model": "metainfo.source", "pk": 7833, "fields": {"orig_filename": "Oberleithner_Max_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408420}}, {"model": "metainfo.source", "pk": 7834, "fields": {"orig_filename": "Oberleitner_Andreas_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408421}}, {"model": "metainfo.source", "pk": 7835, "fields": {"orig_filename": "Oberleitner_Franz_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408422}}, {"model": "metainfo.source", "pk": 7836, "fields": {"orig_filename": "Oberleitner_Karl_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188f.", "author": "", "orig_id": 1408423}}, {"model": "metainfo.source", "pk": 7837, "fields": {"orig_filename": "Oberlercher_Paul-Gabriel_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 189", "author": "", "orig_id": 1408424}}, {"model": "metainfo.source", "pk": 7838, "fields": {"orig_filename": "Obermayer-Marnach_Kamillo_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191", "author": "", "orig_id": 1408497}}, {"model": "metainfo.source", "pk": 7839, "fields": {"orig_filename": "Obermayer-Rechtsinn_Wilhelm_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191", "author": "", "orig_id": 1408498}}, {"model": "metainfo.source", "pk": 7840, "fields": {"orig_filename": "Obermayer_Albert_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 189f.", "author": "", "orig_id": 1408492}}, {"model": "metainfo.source", "pk": 7841, "fields": {"orig_filename": "Obermayer_August_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190", "author": "", "orig_id": 1408493}}, {"model": "metainfo.source", "pk": 7842, "fields": {"orig_filename": "Obermayer_Friedrich_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190", "author": "", "orig_id": 1408494}}, {"model": "metainfo.source", "pk": 7843, "fields": {"orig_filename": "Obermayer_Peter-Eugen_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190f.", "author": "", "orig_id": 1408495}}, {"model": "metainfo.source", "pk": 7844, "fields": {"orig_filename": "Obermueller_Ignaz_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191f.", "author": "", "orig_id": 1408499}}, {"model": "metainfo.source", "pk": 7845, "fields": {"orig_filename": "Obermuellner_Adolf_1833_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 192", "author": "", "orig_id": 1408500}}, {"model": "metainfo.source", "pk": 7846, "fields": {"orig_filename": "Oberndorfer_Johann_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 192", "author": "", "orig_id": 1408502}}, {"model": "metainfo.source", "pk": 7847, "fields": {"orig_filename": "Obernyik_Karoly_1814_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408503}}, {"model": "metainfo.source", "pk": 7848, "fields": {"orig_filename": "Oberparleiter_Ignaz_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408504}}, {"model": "metainfo.source", "pk": 7849, "fields": {"orig_filename": "Oberrauch_Heinrich_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408505}}, {"model": "metainfo.source", "pk": 7850, "fields": {"orig_filename": "Oberschall_Adolf_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193f.", "author": "", "orig_id": 1408506}}, {"model": "metainfo.source", "pk": 7851, "fields": {"orig_filename": "Oberschall_Pal_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194", "author": "", "orig_id": 1408507}}, {"model": "metainfo.source", "pk": 7852, "fields": {"orig_filename": "Obersteiner_Heinrich_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194", "author": "", "orig_id": 1408508}}, {"model": "metainfo.source", "pk": 7853, "fields": {"orig_filename": "Obersteiner_Johann_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194f.", "author": "", "orig_id": 1408509}}, {"model": "metainfo.source", "pk": 7854, "fields": {"orig_filename": "Obersteiner_Ludwig_1899_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195", "author": "", "orig_id": 1408510}}, {"model": "metainfo.source", "pk": 7855, "fields": {"orig_filename": "Oberstolz_Rudolf_1865_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195", "author": "", "orig_id": 1408511}}, {"model": "metainfo.source", "pk": 7856, "fields": {"orig_filename": "Obertimpfler_Karl_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 196", "author": "", "orig_id": 1408513}}, {"model": "metainfo.source", "pk": 7857, "fields": {"orig_filename": "Obert_Franz_1828_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195f.", "author": "", "orig_id": 1408512}}, {"model": "metainfo.source", "pk": 7858, "fields": {"orig_filename": "Oberwalder_Jakob_1829_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 196f.", "author": "", "orig_id": 1408514}}, {"model": "metainfo.source", "pk": 7859, "fields": {"orig_filename": "Oberwalder_Oskar_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197", "author": "", "orig_id": 1408515}}, {"model": "metainfo.source", "pk": 7860, "fields": {"orig_filename": "Oberwalder_Thomas_1858_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197", "author": "", "orig_id": 1408516}}, {"model": "metainfo.source", "pk": 7861, "fields": {"orig_filename": "Oberweis_Josef_1826_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197f.", "author": "", "orig_id": 1408517}}, {"model": "metainfo.source", "pk": 7862, "fields": {"orig_filename": "Oberziner_Giovanni-Amennone_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408584}}, {"model": "metainfo.source", "pk": 7863, "fields": {"orig_filename": "Obhlidal_Thomas_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408586}}, {"model": "metainfo.source", "pk": 7864, "fields": {"orig_filename": "Oblak_Vatroslav_1864_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198f.", "author": "", "orig_id": 1408587}}, {"model": "metainfo.source", "pk": 7865, "fields": {"orig_filename": "Obminski_Tadeusz_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 199f.", "author": "", "orig_id": 1408588}}, {"model": "metainfo.source", "pk": 7866, "fields": {"orig_filename": "Oborny_Adolf_1840_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200", "author": "", "orig_id": 1408589}}, {"model": "metainfo.source", "pk": 7867, "fields": {"orig_filename": "Obrist_Johann-Georg_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200", "author": "", "orig_id": 1408591}}, {"model": "metainfo.source", "pk": 7868, "fields": {"orig_filename": "Obrist_Walther_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200f.", "author": "", "orig_id": 1408592}}, {"model": "metainfo.source", "pk": 7869, "fields": {"orig_filename": "Obrovsky_Jakub_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201", "author": "", "orig_id": 1408593}}, {"model": "metainfo.source", "pk": 7870, "fields": {"orig_filename": "Obruca_Rudolf_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201", "author": "", "orig_id": 1412810}}, {"model": "metainfo.source", "pk": 7871, "fields": {"orig_filename": "Obrzut_Andrzej_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201f.", "author": "", "orig_id": 1408594}}, {"model": "metainfo.source", "pk": 7872, "fields": {"orig_filename": "Obweger_Jakob_1857_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408595}}, {"model": "metainfo.source", "pk": 7873, "fields": {"orig_filename": "Obwexer_Paul_1828_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408596}}, {"model": "metainfo.source", "pk": 7874, "fields": {"orig_filename": "Obwurzer_Herbert_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408597}}, {"model": "metainfo.source", "pk": 7875, "fields": {"orig_filename": "Ochenkowski_Wladyslaw_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202f.", "author": "", "orig_id": 1408598}}, {"model": "metainfo.source", "pk": 7876, "fields": {"orig_filename": "Ochrymovyc_Ksenofont_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 203", "author": "", "orig_id": 1408599}}, {"model": "metainfo.source", "pk": 7877, "fields": {"orig_filename": "Ochsenheimer_Ferdinand_1767_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 203f.", "author": "", "orig_id": 1408600}}, {"model": "metainfo.source", "pk": 7878, "fields": {"orig_filename": "Ochsenheimer_Friedrich_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204", "author": "", "orig_id": 1408601}}, {"model": "metainfo.source", "pk": 7879, "fields": {"orig_filename": "Ocsvay_Ferenc_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204", "author": "", "orig_id": 1408602}}, {"model": "metainfo.source", "pk": 7880, "fields": {"orig_filename": "Odehnal_Franz_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204f.", "author": "", "orig_id": 1408603}}, {"model": "metainfo.source", "pk": 7881, "fields": {"orig_filename": "Odelga_Adolf_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408604}}, {"model": "metainfo.source", "pk": 7882, "fields": {"orig_filename": "Odescalchi_Artur_1836_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408605}}, {"model": "metainfo.source", "pk": 7883, "fields": {"orig_filename": "Odkolek-Ujezd_Adolf_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408606}}, {"model": "metainfo.source", "pk": 7884, "fields": {"orig_filename": "Odonell-Tyrconell_Heinrich-Lamoral_1802_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205f.", "author": "", "orig_id": 1408607}}, {"model": "metainfo.source", "pk": 7885, "fields": {"orig_filename": "Odonell-Tyrconell_Maximilian-Karl_1812_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 206", "author": "", "orig_id": 1408682}}, {"model": "metainfo.source", "pk": 7886, "fields": {"orig_filename": "Odry-Pacser_Lehel_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 206f.", "author": "", "orig_id": 1408683}}, {"model": "metainfo.source", "pk": 7887, "fields": {"orig_filename": "Odrzywolski_Kazimierz_1860_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408684}}, {"model": "metainfo.source", "pk": 7888, "fields": {"orig_filename": "Odvalil_Frantisek_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408685}}, {"model": "metainfo.source", "pk": 7889, "fields": {"orig_filename": "Oehri_Franz-Josef_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408686}}, {"model": "metainfo.source", "pk": 7890, "fields": {"orig_filename": "Oekroess_Balint_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207f.", "author": "", "orig_id": 1408687}}, {"model": "metainfo.source", "pk": 7891, "fields": {"orig_filename": "Oellacher_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408689}}, {"model": "metainfo.source", "pk": 7892, "fields": {"orig_filename": "Oelwein_Arthur_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208f.", "author": "", "orig_id": 1408690}}, {"model": "metainfo.source", "pk": 7893, "fields": {"orig_filename": "Oelzelt-Newin_Anton_1817_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408693}}, {"model": "metainfo.source", "pk": 7894, "fields": {"orig_filename": "Oelzelt-Newin_Anton_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209f.", "author": "", "orig_id": 1408694}}, {"model": "metainfo.source", "pk": 7895, "fields": {"orig_filename": "Oelz_Josef-Anton_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408692}}, {"model": "metainfo.source", "pk": 7896, "fields": {"orig_filename": "Oelz_Josef_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408691}}, {"model": "metainfo.source", "pk": 7897, "fields": {"orig_filename": "Oereg_Janos_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210", "author": "", "orig_id": 1408696}}, {"model": "metainfo.source", "pk": 7898, "fields": {"orig_filename": "Njegovan_Maximilian_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137f.", "author": "", "orig_id": 1409218}}, {"model": "metainfo.source", "pk": 7899, "fields": {"orig_filename": "Njegovan_Viktor_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138", "author": "", "orig_id": 1409219}}, {"model": "metainfo.source", "pk": 7900, "fields": {"orig_filename": "Nobel_Edmund_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138", "author": "", "orig_id": 1409220}}, {"model": "metainfo.source", "pk": 7901, "fields": {"orig_filename": "Nobel_Josef_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138f.", "author": "", "orig_id": 1409221}}, {"model": "metainfo.source", "pk": 7902, "fields": {"orig_filename": "Nobile_Carlo_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 139", "author": "", "orig_id": 1409222}}, {"model": "metainfo.source", "pk": 7903, "fields": {"orig_filename": "Nobile_Peter_1774_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 139f.", "author": "", "orig_id": 1409223}}, {"model": "metainfo.source", "pk": 7904, "fields": {"orig_filename": "Nobili_Johann_1798_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 140f.", "author": "", "orig_id": 1409224}}, {"model": "metainfo.source", "pk": 7905, "fields": {"orig_filename": "Nobl_Gabor_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409225}}, {"model": "metainfo.source", "pk": 7906, "fields": {"orig_filename": "Nodilo_Natko_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409226}}, {"model": "metainfo.source", "pk": 7907, "fields": {"orig_filename": "Noe-Nordberg_Karl-Gustav_1798_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142f.", "author": "", "orig_id": 1409231}}, {"model": "metainfo.source", "pk": 7908, "fields": {"orig_filename": "Noerdling_Wilhelm_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143", "author": "", "orig_id": 1409304}}, {"model": "metainfo.source", "pk": 7909, "fields": {"orig_filename": "Noesslboeck_Ignaz_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143", "author": "", "orig_id": 1409305}}, {"model": "metainfo.source", "pk": 7910, "fields": {"orig_filename": "Noetel_Louis_1837_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143f.", "author": "", "orig_id": 1409306}}, {"model": "metainfo.source", "pk": 7911, "fields": {"orig_filename": "Noetzl_Karl-Philipp_1789_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409307}}, {"model": "metainfo.source", "pk": 7912, "fields": {"orig_filename": "Noe_Franz_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409227}}, {"model": "metainfo.source", "pk": 7913, "fields": {"orig_filename": "Noe_Heinrich_1835_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409229}}, {"model": "metainfo.source", "pk": 7914, "fields": {"orig_filename": "Noe_Heinrich_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409228}}, {"model": "metainfo.source", "pk": 7915, "fields": {"orig_filename": "Noe_Oskar_1872_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409230}}, {"model": "metainfo.source", "pk": 7916, "fields": {"orig_filename": "Nogall_Johann_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409308}}, {"model": "metainfo.source", "pk": 7917, "fields": {"orig_filename": "Noggler_Anselm_1872_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409309}}, {"model": "metainfo.source", "pk": 7918, "fields": {"orig_filename": "Noggler_Anton_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144f.", "author": "", "orig_id": 1409310}}, {"model": "metainfo.source", "pk": 7919, "fields": {"orig_filename": "Noldin_Hieronymus_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 145", "author": "", "orig_id": 1409311}}, {"model": "metainfo.source", "pk": 7920, "fields": {"orig_filename": "Noldin_Josef_1888_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 145f.", "author": "", "orig_id": 1409312}}, {"model": "metainfo.source", "pk": 7921, "fields": {"orig_filename": "Nolli_Josip_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 146", "author": "", "orig_id": 1409313}}, {"model": "metainfo.source", "pk": 7922, "fields": {"orig_filename": "Noltsch_Wenzel-Ottokar_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 146f.", "author": "", "orig_id": 1409314}}, {"model": "metainfo.source", "pk": 7923, "fields": {"orig_filename": "Noorden_Karl_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 147", "author": "", "orig_id": 1409315}}, {"model": "metainfo.source", "pk": 7924, "fields": {"orig_filename": "Noot_Hugo_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 147f.", "author": "", "orig_id": 1409316}}, {"model": "metainfo.source", "pk": 7925, "fields": {"orig_filename": "Nopcsa-Felsoeszilvas_Franz_1815_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148", "author": "", "orig_id": 1409318}}, {"model": "metainfo.source", "pk": 7926, "fields": {"orig_filename": "Nopcsa-Felsoeszilvas_Franz_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148", "author": "", "orig_id": 1409317}}, {"model": "metainfo.source", "pk": 7927, "fields": {"orig_filename": "Norbert_Karl_1893_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148f.", "author": "", "orig_id": 1409319}}, {"model": "metainfo.source", "pk": 7928, "fields": {"orig_filename": "Nordau_Max_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 149f.", "author": "", "orig_id": 1409321}}, {"model": "metainfo.source", "pk": 7929, "fields": {"orig_filename": "Nordio_Enrico_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 150", "author": "", "orig_id": 1409322}}, {"model": "metainfo.source", "pk": 7930, "fields": {"orig_filename": "Nordmann_Johann_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 150f.", "author": "", "orig_id": 1409323}}, {"model": "metainfo.source", "pk": 7931, "fields": {"orig_filename": "Nord_Wilhelm_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 149", "author": "", "orig_id": 1409320}}, {"model": "metainfo.source", "pk": 7932, "fields": {"orig_filename": "Noren_Heinrich-Suso-Johannes_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151", "author": "", "orig_id": 1409324}}, {"model": "metainfo.source", "pk": 7933, "fields": {"orig_filename": "Norini_Emil_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151", "author": "", "orig_id": 1409325}}, {"model": "metainfo.source", "pk": 7934, "fields": {"orig_filename": "Norman-Neruda_Ludwig_1864_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151f.", "author": "", "orig_id": 1409327}}, {"model": "metainfo.source", "pk": 7935, "fields": {"orig_filename": "Normann-Friedenfels_Eduard_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152", "author": "", "orig_id": 1409395}}, {"model": "metainfo.source", "pk": 7936, "fields": {"orig_filename": "Norst_Anton_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152", "author": "", "orig_id": 1409396}}, {"model": "metainfo.source", "pk": 7937, "fields": {"orig_filename": "Nosievici_Stefan_1833_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152f.", "author": "", "orig_id": 1409397}}, {"model": "metainfo.source", "pk": 7938, "fields": {"orig_filename": "Nosinich_Johann_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153", "author": "", "orig_id": 1409398}}, {"model": "metainfo.source", "pk": 7939, "fields": {"orig_filename": "Noska_Franz_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153", "author": "", "orig_id": 1409399}}, {"model": "metainfo.source", "pk": 7940, "fields": {"orig_filename": "Nossberger_Adolf_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153f.", "author": "", "orig_id": 1409400}}, {"model": "metainfo.source", "pk": 7941, "fields": {"orig_filename": "Nossberger_Ferdinand_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154", "author": "", "orig_id": 1409401}}, {"model": "metainfo.source", "pk": 7942, "fields": {"orig_filename": "Nossek_Meinrad_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154", "author": "", "orig_id": 1409402}}, {"model": "metainfo.source", "pk": 7943, "fields": {"orig_filename": "Nossig_Alfred_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154f.", "author": "", "orig_id": 1409403}}, {"model": "metainfo.source", "pk": 7944, "fields": {"orig_filename": "Nostitz-Rieneck_Albert-Franz_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155", "author": "", "orig_id": 1409405}}, {"model": "metainfo.source", "pk": 7945, "fields": {"orig_filename": "Nostitz-Rieneck_Albert_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155", "author": "", "orig_id": 1409404}}, {"model": "metainfo.source", "pk": 7946, "fields": {"orig_filename": "Nostitz-Rieneck_Erwein-Felix-Maria_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155f.", "author": "", "orig_id": 1409406}}, {"model": "metainfo.source", "pk": 7947, "fields": {"orig_filename": "Nostitz-Rieneck_Hermann_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 156", "author": "", "orig_id": 1409407}}, {"model": "metainfo.source", "pk": 7948, "fields": {"orig_filename": "Nostitz-Rieneck_Johann_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 156", "author": "", "orig_id": 1409408}}, {"model": "metainfo.source", "pk": 7949, "fields": {"orig_filename": "Nostitz-Rieneck_Karl-Erwein_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409409}}, {"model": "metainfo.source", "pk": 7950, "fields": {"orig_filename": "Nostitz-Rieneck_Robert_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409410}}, {"model": "metainfo.source", "pk": 7951, "fields": {"orig_filename": "Noszlopy_Gaspar_1822_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409411}}, {"model": "metainfo.source", "pk": 7952, "fields": {"orig_filename": "Nothnagel_Hermann_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 158", "author": "", "orig_id": 1409413}}, {"model": "metainfo.source", "pk": 7953, "fields": {"orig_filename": "Noth_Friedrich-Julius_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157f.", "author": "", "orig_id": 1409412}}, {"model": "metainfo.source", "pk": 7954, "fields": {"orig_filename": "Nottebohm_Martin-Gustav_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 158f.", "author": "", "orig_id": 1409414}}, {"model": "metainfo.source", "pk": 7955, "fields": {"orig_filename": "Notz_Eugen_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159", "author": "", "orig_id": 1409415}}, {"model": "metainfo.source", "pk": 7956, "fields": {"orig_filename": "Nouseul_Johann_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159", "author": "", "orig_id": 1409416}}, {"model": "metainfo.source", "pk": 7957, "fields": {"orig_filename": "Novacek_Vojtech-Jaromir_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408135}}, {"model": "metainfo.source", "pk": 7958, "fields": {"orig_filename": "Novak-Arienti_Guido_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 168f.", "author": "", "orig_id": 1408229}}, {"model": "metainfo.source", "pk": 7959, "fields": {"orig_filename": "Novakova_Tereza_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169", "author": "", "orig_id": 1408230}}, {"model": "metainfo.source", "pk": 7960, "fields": {"orig_filename": "Novakovic_Stefan__1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169", "author": "", "orig_id": 1408231}}, {"model": "metainfo.source", "pk": 7961, "fields": {"orig_filename": "Novak_Anton_1848_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408136}}, {"model": "metainfo.source", "pk": 7962, "fields": {"orig_filename": "Novak_Anton_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408137}}, {"model": "metainfo.source", "pk": 7963, "fields": {"orig_filename": "Novak_Arne_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161", "author": "", "orig_id": 1408138}}, {"model": "metainfo.source", "pk": 7964, "fields": {"orig_filename": "Novak_Ernst_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161", "author": "", "orig_id": 1408139}}, {"model": "metainfo.source", "pk": 7965, "fields": {"orig_filename": "Novak_Ernst_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161f.", "author": "", "orig_id": 1408140}}, {"model": "metainfo.source", "pk": 7966, "fields": {"orig_filename": "Novak_Franc_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162", "author": "", "orig_id": 1408142}}, {"model": "metainfo.source", "pk": 7967, "fields": {"orig_filename": "Novak_Fran_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162", "author": "", "orig_id": 1408141}}, {"model": "metainfo.source", "pk": 7968, "fields": {"orig_filename": "Novak_Gustav_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162f.", "author": "", "orig_id": 1408143}}, {"model": "metainfo.source", "pk": 7969, "fields": {"orig_filename": "Novak_Jan-Bedrich_1872_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 163", "author": "", "orig_id": 1408144}}, {"model": "metainfo.source", "pk": 7970, "fields": {"orig_filename": "Novak_Jan-Vaclav_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 163f.", "author": "", "orig_id": 1408145}}, {"model": "metainfo.source", "pk": 7971, "fields": {"orig_filename": "Novak_Janez_1756_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408146}}, {"model": "metainfo.source", "pk": 7972, "fields": {"orig_filename": "Novak_Johann_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408147}}, {"model": "metainfo.source", "pk": 7973, "fields": {"orig_filename": "Novak_Josef_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408148}}, {"model": "metainfo.source", "pk": 7974, "fields": {"orig_filename": "Novak_Josef_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408149}}, {"model": "metainfo.source", "pk": 7975, "fields": {"orig_filename": "Novak_Josip_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408150}}, {"model": "metainfo.source", "pk": 7976, "fields": {"orig_filename": "Novak_Julian_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408151}}, {"model": "metainfo.source", "pk": 7977, "fields": {"orig_filename": "Novak_Karl-Friedrich_1882_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165f.", "author": "", "orig_id": 1408152}}, {"model": "metainfo.source", "pk": 7978, "fields": {"orig_filename": "Novak_Lajos_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166", "author": "", "orig_id": 1408153}}, {"model": "metainfo.source", "pk": 7979, "fields": {"orig_filename": "Novak_Peter_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166", "author": "", "orig_id": 1408154}}, {"model": "metainfo.source", "pk": 7980, "fields": {"orig_filename": "Novak_Robert_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166f.", "author": "", "orig_id": 1408225}}, {"model": "metainfo.source", "pk": 7981, "fields": {"orig_filename": "Novak_Vilko_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 167", "author": "", "orig_id": 1408226}}, {"model": "metainfo.source", "pk": 7982, "fields": {"orig_filename": "Novak_Vitezslav_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 167f.", "author": "", "orig_id": 1408227}}, {"model": "metainfo.source", "pk": 7983, "fields": {"orig_filename": "Novak_Vjenceslav_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 168", "author": "", "orig_id": 1408228}}, {"model": "metainfo.source", "pk": 7984, "fields": {"orig_filename": "Novic_Otocanin-Joksim_1806_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169f.", "author": "", "orig_id": 1408232}}, {"model": "metainfo.source", "pk": 7985, "fields": {"orig_filename": "Novotny_Aurel_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170", "author": "", "orig_id": 1408233}}, {"model": "metainfo.source", "pk": 7986, "fields": {"orig_filename": "Novotny_Eduard_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170", "author": "", "orig_id": 1408234}}, {"model": "metainfo.source", "pk": 7987, "fields": {"orig_filename": "Novotny_Jindrich_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170f.", "author": "", "orig_id": 1408235}}, {"model": "metainfo.source", "pk": 7988, "fields": {"orig_filename": "Novotny_Karl_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408237}}, {"model": "metainfo.source", "pk": 7989, "fields": {"orig_filename": "Novotny_Stjepan_1833_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408238}}, {"model": "metainfo.source", "pk": 7990, "fields": {"orig_filename": "Novotny_Theodor_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408239}}, {"model": "metainfo.source", "pk": 7991, "fields": {"orig_filename": "Novotny_Vaclav_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172", "author": "", "orig_id": 1408240}}, {"model": "metainfo.source", "pk": 7992, "fields": {"orig_filename": "Novotny_Walter_1920_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172", "author": "", "orig_id": 1408241}}, {"model": "metainfo.source", "pk": 7993, "fields": {"orig_filename": "Novy_Franz_1900_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172f.", "author": "", "orig_id": 1408242}}, {"model": "metainfo.source", "pk": 7994, "fields": {"orig_filename": "Nowaczynski_Adolf_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 173", "author": "", "orig_id": 1408243}}, {"model": "metainfo.source", "pk": 7995, "fields": {"orig_filename": "Nowakowski_Jan_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 173f.", "author": "", "orig_id": 1408244}}, {"model": "metainfo.source", "pk": 7996, "fields": {"orig_filename": "Nowakowski_Waclaw_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 174", "author": "", "orig_id": 1408245}}, {"model": "metainfo.source", "pk": 7997, "fields": {"orig_filename": "Nowicki-Sila_Maksymilian_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175", "author": "", "orig_id": 1408313}}, {"model": "metainfo.source", "pk": 7998, "fields": {"orig_filename": "Nowicki_Franciszek-Henryk_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 174f.", "author": "", "orig_id": 1408312}}, {"model": "metainfo.source", "pk": 7999, "fields": {"orig_filename": "Nuchten_Josef_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175", "author": "", "orig_id": 1408314}}, {"model": "metainfo.source", "pk": 8000, "fields": {"orig_filename": "Neuner_Jakob-Anton_1806_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408843}}, {"model": "metainfo.source", "pk": 8001, "fields": {"orig_filename": "Neuner_Johann_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408844}}, {"model": "metainfo.source", "pk": 8002, "fields": {"orig_filename": "Neupauer_Franz-Xaver_1753_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408845}}, {"model": "metainfo.source", "pk": 8003, "fields": {"orig_filename": "Neurath_Anna_1877_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101f.", "author": "", "orig_id": 1408846}}, {"model": "metainfo.source", "pk": 8004, "fields": {"orig_filename": "Neurath_Otto_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 102f.", "author": "", "orig_id": 1408847}}, {"model": "metainfo.source", "pk": 8005, "fields": {"orig_filename": "Neurath_Wilhelm_1840_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 103", "author": "", "orig_id": 1408848}}, {"model": "metainfo.source", "pk": 8006, "fields": {"orig_filename": "Neureiter_Ferdinand_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 103f.", "author": "", "orig_id": 1408849}}, {"model": "metainfo.source", "pk": 8007, "fields": {"orig_filename": "Neureiter_Michael_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104", "author": "", "orig_id": 1408850}}, {"model": "metainfo.source", "pk": 8008, "fields": {"orig_filename": "Neureutter_Bohdan_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104", "author": "", "orig_id": 1408851}}, {"model": "metainfo.source", "pk": 8009, "fields": {"orig_filename": "Neusser_Edmund_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104f.", "author": "", "orig_id": 1408853}}, {"model": "metainfo.source", "pk": 8010, "fields": {"orig_filename": "Neusser_Karl_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105", "author": "", "orig_id": 1408854}}, {"model": "metainfo.source", "pk": 8011, "fields": {"orig_filename": "Neustaedter-Stuermer_Odo_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105f.", "author": "", "orig_id": 1408856}}, {"model": "metainfo.source", "pk": 8012, "fields": {"orig_filename": "Neustaedter_Josef_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105", "author": "", "orig_id": 1408855}}, {"model": "metainfo.source", "pk": 8013, "fields": {"orig_filename": "Neuwall_Albert_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 106", "author": "", "orig_id": 1408857}}, {"model": "metainfo.source", "pk": 8014, "fields": {"orig_filename": "Neuwirth-Neufels_Theodor_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408864}}, {"model": "metainfo.source", "pk": 8015, "fields": {"orig_filename": "Neuwirth_August_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 106f.", "author": "", "orig_id": 1408859}}, {"model": "metainfo.source", "pk": 8016, "fields": {"orig_filename": "Neuwirth_Josef_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 107", "author": "", "orig_id": 1408860}}, {"model": "metainfo.source", "pk": 8017, "fields": {"orig_filename": "Neuwirth_Josef_1855_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 107f.", "author": "", "orig_id": 1408861}}, {"model": "metainfo.source", "pk": 8018, "fields": {"orig_filename": "Neuwirth_Rosa_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408862}}, {"model": "metainfo.source", "pk": 8019, "fields": {"orig_filename": "Neuwirth_Viktor_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408863}}, {"model": "metainfo.source", "pk": 8020, "fields": {"orig_filename": "Nevinny_Josef_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108f.", "author": "", "orig_id": 1408865}}, {"model": "metainfo.source", "pk": 8021, "fields": {"orig_filename": "Nevole_Milan_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 109", "author": "", "orig_id": 1408930}}, {"model": "metainfo.source", "pk": 8022, "fields": {"orig_filename": "Nevy_Laszlo_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 109f.", "author": "", "orig_id": 1408931}}, {"model": "metainfo.source", "pk": 8023, "fields": {"orig_filename": "Newald_Johann_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408932}}, {"model": "metainfo.source", "pk": 8024, "fields": {"orig_filename": "Newald_Julius_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408933}}, {"model": "metainfo.source", "pk": 8025, "fields": {"orig_filename": "Neydhart_Josef_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 111", "author": "", "orig_id": 1412809}}, {"model": "metainfo.source", "pk": 8026, "fields": {"orig_filename": "Ney_David_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408934}}, {"model": "metainfo.source", "pk": 8027, "fields": {"orig_filename": "Ney_Ferenc_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110f.", "author": "", "orig_id": 1408935}}, {"model": "metainfo.source", "pk": 8028, "fields": {"orig_filename": "Nickerl_Franz-Anton_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 111f.", "author": "", "orig_id": 1408937}}, {"model": "metainfo.source", "pk": 8029, "fields": {"orig_filename": "Nickerl_Ottokar_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112", "author": "", "orig_id": 1408938}}, {"model": "metainfo.source", "pk": 8030, "fields": {"orig_filename": "Nickl-Oppavar_Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112", "author": "", "orig_id": 1408939}}, {"model": "metainfo.source", "pk": 8031, "fields": {"orig_filename": "Nicoara_Moise_1784_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112f.", "author": "", "orig_id": 1408940}}, {"model": "metainfo.source", "pk": 8032, "fields": {"orig_filename": "Nicolodi_Aurelio_1894_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 113f.", "author": "", "orig_id": 1408942}}, {"model": "metainfo.source", "pk": 8033, "fields": {"orig_filename": "Nicolussi_Paolaz-Simon_1852_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114", "author": "", "orig_id": 1408943}}, {"model": "metainfo.source", "pk": 8034, "fields": {"orig_filename": "Nida-Ruemelin_Wilhelm_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114", "author": "", "orig_id": 1408944}}, {"model": "metainfo.source", "pk": 8035, "fields": {"orig_filename": "Nidecki_Tomasz-Napoleon_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114f.", "author": "", "orig_id": 1408945}}, {"model": "metainfo.source", "pk": 8036, "fields": {"orig_filename": "Niebauer_Anton_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 115", "author": "", "orig_id": 1408946}}, {"model": "metainfo.source", "pk": 8037, "fields": {"orig_filename": "Niederegger_Alois_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 115f.", "author": "", "orig_id": 1408947}}, {"model": "metainfo.source", "pk": 8038, "fields": {"orig_filename": "Niedergesaess_Robert_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 116", "author": "", "orig_id": 1408948}}, {"model": "metainfo.source", "pk": 8039, "fields": {"orig_filename": "Niederist_Josef_1809_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 116f.", "author": "", "orig_id": 1408949}}, {"model": "metainfo.source", "pk": 8040, "fields": {"orig_filename": "Niederle_Jindrich_1840_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 117", "author": "", "orig_id": 1408950}}, {"model": "metainfo.source", "pk": 8041, "fields": {"orig_filename": "Niederle_Lubor_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 117f.", "author": "", "orig_id": 1408951}}, {"model": "metainfo.source", "pk": 8042, "fields": {"orig_filename": "Niedermaier_Franz-Xaver_1864_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408952}}, {"model": "metainfo.source", "pk": 8043, "fields": {"orig_filename": "Niedermaier_Matthias_1750_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408953}}, {"model": "metainfo.source", "pk": 8044, "fields": {"orig_filename": "Niedermann_Johann_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408954}}, {"model": "metainfo.source", "pk": 8045, "fields": {"orig_filename": "Niederwieser_Johann_1853_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409021}}, {"model": "metainfo.source", "pk": 8046, "fields": {"orig_filename": "Niedrist_Arsenius_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409022}}, {"model": "metainfo.source", "pk": 8047, "fields": {"orig_filename": "Niedrist_Karl-Anton_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409023}}, {"model": "metainfo.source", "pk": 8048, "fields": {"orig_filename": "Niedzialkowska_Wiktoria_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119f.", "author": "", "orig_id": 1409024}}, {"model": "metainfo.source", "pk": 8049, "fields": {"orig_filename": "Niedzialkowski_Janusz_1848_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409025}}, {"model": "metainfo.source", "pk": 8050, "fields": {"orig_filename": "Niedzielski_Julian_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409026}}, {"model": "metainfo.source", "pk": 8051, "fields": {"orig_filename": "Niedzielski_Stanislaw_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409027}}, {"model": "metainfo.source", "pk": 8052, "fields": {"orig_filename": "Niedzwiecki_Zygmunt_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120f.", "author": "", "orig_id": 1409028}}, {"model": "metainfo.source", "pk": 8053, "fields": {"orig_filename": "Niedzwiedzki_Julian_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121", "author": "", "orig_id": 1409029}}, {"model": "metainfo.source", "pk": 8054, "fields": {"orig_filename": "Niemann_Georg_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121", "author": "", "orig_id": 1409030}}, {"model": "metainfo.source", "pk": 8055, "fields": {"orig_filename": "Niembsch-Strehlenau_Nikolaus-Franz_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121f.", "author": "", "orig_id": 1409031}}, {"model": "metainfo.source", "pk": 8056, "fields": {"orig_filename": "Niementowski_Stefan_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 122f.", "author": "", "orig_id": 1409032}}, {"model": "metainfo.source", "pk": 8057, "fields": {"orig_filename": "Niemetschek_Franz_1766_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123", "author": "", "orig_id": 1409033}}, {"model": "metainfo.source", "pk": 8058, "fields": {"orig_filename": "Niemilowicz_Wladyslaw_1863_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123", "author": "", "orig_id": 1409034}}, {"model": "metainfo.source", "pk": 8059, "fields": {"orig_filename": "Niemirower_Jakub-Izaak_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123f.", "author": "", "orig_id": 1409035}}, {"model": "metainfo.source", "pk": 8060, "fields": {"orig_filename": "Niemtschik_Rudolf_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409036}}, {"model": "metainfo.source", "pk": 8061, "fields": {"orig_filename": "Nierhaus_Karl_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409037}}, {"model": "metainfo.source", "pk": 8062, "fields": {"orig_filename": "Niernsee_Rudolf_1810_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409038}}, {"model": "metainfo.source", "pk": 8063, "fields": {"orig_filename": "Niese_Johanna_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124f.", "author": "", "orig_id": 1409039}}, {"model": "metainfo.source", "pk": 8064, "fields": {"orig_filename": "Niesiolowski-Niesiolowice_Viktor_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 125f.", "author": "", "orig_id": 1409040}}, {"model": "metainfo.source", "pk": 8065, "fields": {"orig_filename": "Niessl-Mayendorf_Gustav_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 126f.", "author": "", "orig_id": 1409041}}, {"model": "metainfo.source", "pk": 8066, "fields": {"orig_filename": "Niessner_Moritz_1898_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409042}}, {"model": "metainfo.source", "pk": 8067, "fields": {"orig_filename": "Niewiadomski_Stanislaw_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409116}}, {"model": "metainfo.source", "pk": 8068, "fields": {"orig_filename": "Nigg_Josef_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409117}}, {"model": "metainfo.source", "pk": 8069, "fields": {"orig_filename": "Nigg_Marianne_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127f.", "author": "", "orig_id": 1409118}}, {"model": "metainfo.source", "pk": 8070, "fields": {"orig_filename": "Niglutsch_Josef_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409119}}, {"model": "metainfo.source", "pk": 8071, "fields": {"orig_filename": "Nigrin_Vela_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409120}}, {"model": "metainfo.source", "pk": 8072, "fields": {"orig_filename": "Nikisch_Arthur_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409121}}, {"model": "metainfo.source", "pk": 8073, "fields": {"orig_filename": "Nikitsch-Boulles-Estenau_Paul_1878_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409122}}, {"model": "metainfo.source", "pk": 8074, "fields": {"orig_filename": "Niklas_Valentin_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409123}}, {"model": "metainfo.source", "pk": 8075, "fields": {"orig_filename": "Nikodem_Arthur_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409124}}, {"model": "metainfo.source", "pk": 8076, "fields": {"orig_filename": "Nikolajevic_Djordje_1807_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130", "author": "", "orig_id": 1409126}}, {"model": "metainfo.source", "pk": 8077, "fields": {"orig_filename": "Nikola_Josef_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129f.", "author": "", "orig_id": 1409125}}, {"model": "metainfo.source", "pk": 8078, "fields": {"orig_filename": "Nikoletti_Angela_1905_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130", "author": "", "orig_id": 1409127}}, {"model": "metainfo.source", "pk": 8079, "fields": {"orig_filename": "Nikolics_Sandor_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409132}}, {"model": "metainfo.source", "pk": 8080, "fields": {"orig_filename": "Nikolic_Atanasije_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130f.", "author": "", "orig_id": 1409128}}, {"model": "metainfo.source", "pk": 8081, "fields": {"orig_filename": "Nikolic_Isidor_1805_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409129}}, {"model": "metainfo.source", "pk": 8082, "fields": {"orig_filename": "Nikolic_Sergije_1816_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409130}}, {"model": "metainfo.source", "pk": 8083, "fields": {"orig_filename": "Nikolic_Vladimir_1829_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409131}}, {"model": "metainfo.source", "pk": 8084, "fields": {"orig_filename": "Nikolowsky_Anton_1855_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131f.", "author": "", "orig_id": 1409133}}, {"model": "metainfo.source", "pk": 8085, "fields": {"orig_filename": "Nilles_Nikolaus_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 132", "author": "", "orig_id": 1409134}}, {"model": "metainfo.source", "pk": 8086, "fields": {"orig_filename": "Ninni_Alessandro-Pericle_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 132f.", "author": "", "orig_id": 1409135}}, {"model": "metainfo.source", "pk": 8087, "fields": {"orig_filename": "Nippel-Weyerheim_Franz-Xaver_1787_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133", "author": "", "orig_id": 1409136}}, {"model": "metainfo.source", "pk": 8088, "fields": {"orig_filename": "Nischler_Franz-Xaver_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133", "author": "", "orig_id": 1409137}}, {"model": "metainfo.source", "pk": 8089, "fields": {"orig_filename": "Nisius_Johann_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133f.", "author": "", "orig_id": 1409138}}, {"model": "metainfo.source", "pk": 8090, "fields": {"orig_filename": "Nissel_Franz_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 134", "author": "", "orig_id": 1409139}}, {"model": "metainfo.source", "pk": 8091, "fields": {"orig_filename": "Nissen_Konstanze_1762_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 134f.", "author": "", "orig_id": 1409207}}, {"model": "metainfo.source", "pk": 8092, "fields": {"orig_filename": "Nissl_Anton_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135", "author": "", "orig_id": 1409208}}, {"model": "metainfo.source", "pk": 8093, "fields": {"orig_filename": "Nissl_Franz_1771_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135", "author": "", "orig_id": 1409209}}, {"model": "metainfo.source", "pk": 8094, "fields": {"orig_filename": "Nissl_Franz_1852_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135f.", "author": "", "orig_id": 1409210}}, {"model": "metainfo.source", "pk": 8095, "fields": {"orig_filename": "Nitsche-Hohenplan_Friedrich_1835_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136", "author": "", "orig_id": 1409212}}, {"model": "metainfo.source", "pk": 8096, "fields": {"orig_filename": "Nitsche_Johannes-Josef-Friedrich_1759_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136", "author": "", "orig_id": 1409211}}, {"model": "metainfo.source", "pk": 8097, "fields": {"orig_filename": "Nitschner_Josef_1805_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136f.", "author": "", "orig_id": 1409213}}, {"model": "metainfo.source", "pk": 8098, "fields": {"orig_filename": "Nittel_Anton_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409214}}, {"model": "metainfo.source", "pk": 8099, "fields": {"orig_filename": "Nittner_Eduard_1885_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409215}}, {"model": "metainfo.source", "pk": 8100, "fields": {"orig_filename": "Nitzelberger_Moritz_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409216}}, {"model": "metainfo.source", "pk": 8101, "fields": {"orig_filename": "Nemes-Janoshalma_Marcell_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409828}}, {"model": "metainfo.source", "pk": 8102, "fields": {"orig_filename": "Nemethy-Nemetfalva_August_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409833}}, {"model": "metainfo.source", "pk": 8103, "fields": {"orig_filename": "Nemethy_Geza_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66", "author": "", "orig_id": 1409829}}, {"model": "metainfo.source", "pk": 8104, "fields": {"orig_filename": "Nemethy_Johann_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66", "author": "", "orig_id": 1409830}}, {"model": "metainfo.source", "pk": 8105, "fields": {"orig_filename": "Nemethy_Josef_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66f.", "author": "", "orig_id": 1409831}}, {"model": "metainfo.source", "pk": 8106, "fields": {"orig_filename": "Nemethy_Karoly_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409832}}, {"model": "metainfo.source", "pk": 8107, "fields": {"orig_filename": "Nemetschek-Foehren_Heinrich_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409834}}, {"model": "metainfo.source", "pk": 8108, "fields": {"orig_filename": "Nemetz_Andreas_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409835}}, {"model": "metainfo.source", "pk": 8109, "fields": {"orig_filename": "Nendtvich_Karoly-Miksa_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409836}}, {"model": "metainfo.source", "pk": 8110, "fields": {"orig_filename": "Nentwich_Josef_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409837}}, {"model": "metainfo.source", "pk": 8111, "fields": {"orig_filename": "Nentwich_Milo_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68f.", "author": "", "orig_id": 1409838}}, {"model": "metainfo.source", "pk": 8112, "fields": {"orig_filename": "Nepalleck_Wilhelm-Friedrich_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409839}}, {"model": "metainfo.source", "pk": 8113, "fields": {"orig_filename": "Nerat_Miha_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409911}}, {"model": "metainfo.source", "pk": 8114, "fields": {"orig_filename": "Neruda_Franz_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409912}}, {"model": "metainfo.source", "pk": 8115, "fields": {"orig_filename": "Neruda_Jan_1834_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69f.", "author": "", "orig_id": 1409913}}, {"model": "metainfo.source", "pk": 8116, "fields": {"orig_filename": "Neruda_Wilma_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 70", "author": "", "orig_id": 1409914}}, {"model": "metainfo.source", "pk": 8117, "fields": {"orig_filename": "Nerz_Ludwig_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 70f.", "author": "", "orig_id": 1409915}}, {"model": "metainfo.source", "pk": 8118, "fields": {"orig_filename": "Neseni_Robert_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71", "author": "", "orig_id": 1409916}}, {"model": "metainfo.source", "pk": 8119, "fields": {"orig_filename": "Nesper_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71", "author": "", "orig_id": 1409918}}, {"model": "metainfo.source", "pk": 8120, "fields": {"orig_filename": "Nesselthaler_Andreas_1746_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72", "author": "", "orig_id": 1409921}}, {"model": "metainfo.source", "pk": 8121, "fields": {"orig_filename": "Nessel_Eduard_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71f.", "author": "", "orig_id": 1409919}}, {"model": "metainfo.source", "pk": 8122, "fields": {"orig_filename": "Nessel_Franz_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72", "author": "", "orig_id": 1409920}}, {"model": "metainfo.source", "pk": 8123, "fields": {"orig_filename": "Nessler_Nikolaus_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72f.", "author": "", "orig_id": 1409922}}, {"model": "metainfo.source", "pk": 8124, "fields": {"orig_filename": "Nestlehner_Alphons_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409923}}, {"model": "metainfo.source", "pk": 8125, "fields": {"orig_filename": "Nestler_Johann-Karl_1783_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409924}}, {"model": "metainfo.source", "pk": 8126, "fields": {"orig_filename": "Nestorovic_Uros-Stefan_1765_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409925}}, {"model": "metainfo.source", "pk": 8127, "fields": {"orig_filename": "Nestroy_Johann_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73ff.", "author": "", "orig_id": 1409926}}, {"model": "metainfo.source", "pk": 8128, "fields": {"orig_filename": "Nesvera_Josef_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 75", "author": "", "orig_id": 1409927}}, {"model": "metainfo.source", "pk": 8129, "fields": {"orig_filename": "Netoliczka_Eugen_1825_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 75f.", "author": "", "orig_id": 1409928}}, {"model": "metainfo.source", "pk": 8130, "fields": {"orig_filename": "Netoliczka_Oskar-Franz-Josef_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76", "author": "", "orig_id": 1409929}}, {"model": "metainfo.source", "pk": 8131, "fields": {"orig_filename": "Netolitzky_August_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76", "author": "", "orig_id": 1409930}}, {"model": "metainfo.source", "pk": 8132, "fields": {"orig_filename": "Netolitzky_Friedrich_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76f.", "author": "", "orig_id": 1409931}}, {"model": "metainfo.source", "pk": 8133, "fields": {"orig_filename": "Netolitzky_Julius_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 77", "author": "", "orig_id": 1409932}}, {"model": "metainfo.source", "pk": 8134, "fields": {"orig_filename": "Netuschill_Josef_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 77", "author": "", "orig_id": 1409933}}, {"model": "metainfo.source", "pk": 8135, "fields": {"orig_filename": "Netzer_Johann-Josef_1808_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 78", "author": "", "orig_id": 1409934}}, {"model": "metainfo.source", "pk": 8136, "fields": {"orig_filename": "Neubauer_Adolf_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 78f.", "author": "", "orig_id": 1410003}}, {"model": "metainfo.source", "pk": 8137, "fields": {"orig_filename": "Neubauer_Gustav-Adolf_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79", "author": "", "orig_id": 1410005}}, {"model": "metainfo.source", "pk": 8138, "fields": {"orig_filename": "Neubauer_Johann_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79", "author": "", "orig_id": 1410006}}, {"model": "metainfo.source", "pk": 8139, "fields": {"orig_filename": "Neubauer_Josef_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79f.", "author": "", "orig_id": 1410007}}, {"model": "metainfo.source", "pk": 8140, "fields": {"orig_filename": "Neubauer_Maximilian-Hermann_1879_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80", "author": "", "orig_id": 1410008}}, {"model": "metainfo.source", "pk": 8141, "fields": {"orig_filename": "Neubauer_Rudolf-Vinzenz_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80f.", "author": "", "orig_id": 1410010}}, {"model": "metainfo.source", "pk": 8142, "fields": {"orig_filename": "Neubauer_Rudolf_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80", "author": "", "orig_id": 1410009}}, {"model": "metainfo.source", "pk": 8143, "fields": {"orig_filename": "Neuberger_Rudolf_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410013}}, {"model": "metainfo.source", "pk": 8144, "fields": {"orig_filename": "Neuber_August_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 81", "author": "", "orig_id": 1410011}}, {"model": "metainfo.source", "pk": 8145, "fields": {"orig_filename": "Neuber_Wilhelm_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 81f.", "author": "", "orig_id": 1410012}}, {"model": "metainfo.source", "pk": 8146, "fields": {"orig_filename": "Neuboeck_Peter_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410014}}, {"model": "metainfo.source", "pk": 8147, "fields": {"orig_filename": "Neuburger_Otto_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410015}}, {"model": "metainfo.source", "pk": 8148, "fields": {"orig_filename": "Neuda_Max_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82f.", "author": "", "orig_id": 1410016}}, {"model": "metainfo.source", "pk": 8149, "fields": {"orig_filename": "Neudeck_Andreas_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410017}}, {"model": "metainfo.source", "pk": 8150, "fields": {"orig_filename": "Neudoerfer_Ignaz-Josef_1825_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410018}}, {"model": "metainfo.source", "pk": 8151, "fields": {"orig_filename": "Neuerer_Gottfried_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410019}}, {"model": "metainfo.source", "pk": 8152, "fields": {"orig_filename": "Neufeld_Eugen_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83f.", "author": "", "orig_id": 1410020}}, {"model": "metainfo.source", "pk": 8153, "fields": {"orig_filename": "Neugart_Trudpert_1742_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84", "author": "", "orig_id": 1410021}}, {"model": "metainfo.source", "pk": 8154, "fields": {"orig_filename": "Neugebauer-Aszod_Laszlo_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84f.", "author": "", "orig_id": 1410023}}, {"model": "metainfo.source", "pk": 8155, "fields": {"orig_filename": "Neugebauer_Josef_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84", "author": "", "orig_id": 1410022}}, {"model": "metainfo.source", "pk": 8156, "fields": {"orig_filename": "Neugeboren_Daniel-Georg_1759_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1410024}}, {"model": "metainfo.source", "pk": 8157, "fields": {"orig_filename": "Neugeboren_Johann-Ludwig_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1410025}}, {"model": "metainfo.source", "pk": 8158, "fields": {"orig_filename": "Neugeboren_Karl_1789_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1408656}}, {"model": "metainfo.source", "pk": 8159, "fields": {"orig_filename": "Neuhauser_Franz_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86", "author": "", "orig_id": 1408659}}, {"model": "metainfo.source", "pk": 8160, "fields": {"orig_filename": "Neuhofer_Franz-Karl_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86", "author": "", "orig_id": 1408660}}, {"model": "metainfo.source", "pk": 8161, "fields": {"orig_filename": "Neuhold-Neuholdau_Johann_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86f.", "author": "", "orig_id": 1408661}}, {"model": "metainfo.source", "pk": 8162, "fields": {"orig_filename": "Neukomm_Sigismund_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87", "author": "", "orig_id": 1408662}}, {"model": "metainfo.source", "pk": 8163, "fields": {"orig_filename": "Neuling_Vinzenz_1795_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87", "author": "", "orig_id": 1408663}}, {"model": "metainfo.source", "pk": 8164, "fields": {"orig_filename": "Neumaier_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87f.", "author": "", "orig_id": 1408664}}, {"model": "metainfo.source", "pk": 8165, "fields": {"orig_filename": "Neumaier_Melchior_1845_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 88", "author": "", "orig_id": 1408665}}, {"model": "metainfo.source", "pk": 8166, "fields": {"orig_filename": "Neumaier_Rudolf_1887_1977.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454874}}, {"model": "metainfo.source", "pk": 8167, "fields": {"orig_filename": "Neumaier_Vinzenz_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 88f.", "author": "", "orig_id": 1408666}}, {"model": "metainfo.source", "pk": 8168, "fields": {"orig_filename": "Neumann-Ditterswaldt_Adolf_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 96", "author": "", "orig_id": 1408763}}, {"model": "metainfo.source", "pk": 8169, "fields": {"orig_filename": "Neumann-Heilwart_Isidor_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 96f.", "author": "", "orig_id": 1408764}}, {"model": "metainfo.source", "pk": 8170, "fields": {"orig_filename": "Neumann-Heilwart_Paul_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97", "author": "", "orig_id": 1408765}}, {"model": "metainfo.source", "pk": 8171, "fields": {"orig_filename": "Neumann-Hethars_Heinrich_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97", "author": "", "orig_id": 1408766}}, {"model": "metainfo.source", "pk": 8172, "fields": {"orig_filename": "Neumann-Spallart_Anatol_1872_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97f.", "author": "", "orig_id": 1408768}}, {"model": "metainfo.source", "pk": 8173, "fields": {"orig_filename": "Neumann-Spallart_Franz-Xaver_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 98", "author": "", "orig_id": 1408769}}, {"model": "metainfo.source", "pk": 8174, "fields": {"orig_filename": "Neumann-Spallart_Josef-Franz_1797_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 98f.", "author": "", "orig_id": 1408770}}, {"model": "metainfo.source", "pk": 8175, "fields": {"orig_filename": "Neumann-Spallart_Julius_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 99", "author": "", "orig_id": 1408771}}, {"model": "metainfo.source", "pk": 8176, "fields": {"orig_filename": "Neumann_Alexander_1856_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89", "author": "", "orig_id": 1408667}}, {"model": "metainfo.source", "pk": 8177, "fields": {"orig_filename": "Neumann_Alois_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89", "author": "", "orig_id": 1408668}}, {"model": "metainfo.source", "pk": 8178, "fields": {"orig_filename": "Neumann_Angelo_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89f.", "author": "", "orig_id": 1408669}}, {"model": "metainfo.source", "pk": 8179, "fields": {"orig_filename": "Neumann_Anna-Maria_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408670}}, {"model": "metainfo.source", "pk": 8180, "fields": {"orig_filename": "Neumann_August_1879_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408671}}, {"model": "metainfo.source", "pk": 8181, "fields": {"orig_filename": "Neumann_Dragutin_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408672}}, {"model": "metainfo.source", "pk": 8182, "fields": {"orig_filename": "Neumann_Frantisek_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408673}}, {"model": "metainfo.source", "pk": 8183, "fields": {"orig_filename": "Neumann_Franz_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90f.", "author": "", "orig_id": 1408674}}, {"model": "metainfo.source", "pk": 8184, "fields": {"orig_filename": "Neumann_Franz_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91", "author": "", "orig_id": 1408675}}, {"model": "metainfo.source", "pk": 8185, "fields": {"orig_filename": "Neumann_Johann-Christian_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91", "author": "", "orig_id": 1408676}}, {"model": "metainfo.source", "pk": 8186, "fields": {"orig_filename": "Neumann_Johann-Philipp_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91f.", "author": "", "orig_id": 1408677}}, {"model": "metainfo.source", "pk": 8187, "fields": {"orig_filename": "Neumann_Johannes_1811_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408678}}, {"model": "metainfo.source", "pk": 8188, "fields": {"orig_filename": "Neumann_Josef_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408679}}, {"model": "metainfo.source", "pk": 8189, "fields": {"orig_filename": "Neumann_Josef_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408680}}, {"model": "metainfo.source", "pk": 8190, "fields": {"orig_filename": "Neumann_Julius_1827_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92f.", "author": "", "orig_id": 1408681}}, {"model": "metainfo.source", "pk": 8191, "fields": {"orig_filename": "Neumann_Julius_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408754}}, {"model": "metainfo.source", "pk": 8192, "fields": {"orig_filename": "Neumann_Karl-August_1771_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408755}}, {"model": "metainfo.source", "pk": 8193, "fields": {"orig_filename": "Neumann_Karl-Eugen_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408756}}, {"model": "metainfo.source", "pk": 8194, "fields": {"orig_filename": "Neumann_Karoly_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93f.", "author": "", "orig_id": 1408757}}, {"model": "metainfo.source", "pk": 8195, "fields": {"orig_filename": "Neumann_Leopold_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 94", "author": "", "orig_id": 1408760}}, {"model": "metainfo.source", "pk": 8196, "fields": {"orig_filename": "Neumann_Stanislav_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 94f.", "author": "", "orig_id": 1408758}}, {"model": "metainfo.source", "pk": 8197, "fields": {"orig_filename": "Neumann_Wenzel_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95", "author": "", "orig_id": 1408759}}, {"model": "metainfo.source", "pk": 8198, "fields": {"orig_filename": "Neumann_Wilhelm-Anton_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95f.", "author": "", "orig_id": 1408762}}, {"model": "metainfo.source", "pk": 8199, "fields": {"orig_filename": "Neumann_Wilhelm_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95", "author": "", "orig_id": 1408761}}, {"model": "metainfo.source", "pk": 8200, "fields": {"orig_filename": "Neumark_David_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 99f.", "author": "", "orig_id": 1408772}}, {"model": "metainfo.source", "pk": 8201, "fields": {"orig_filename": "Neumueller_Anton_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 100", "author": "", "orig_id": 1408773}}, {"model": "metainfo.source", "pk": 8202, "fields": {"orig_filename": "Neuner_Christoph_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 100f.", "author": "", "orig_id": 1408842}}, {"model": "metainfo.source", "pk": 8203, "fields": {"orig_filename": "Nagy_Paul_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410765}}, {"model": "metainfo.source", "pk": 8204, "fields": {"orig_filename": "Nagy_Peter_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410766}}, {"model": "metainfo.source", "pk": 8205, "fields": {"orig_filename": "Nagy_Samuel_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410767}}, {"model": "metainfo.source", "pk": 8206, "fields": {"orig_filename": "Nagy_Zsigmond_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410768}}, {"model": "metainfo.source", "pk": 8207, "fields": {"orig_filename": "Najmajer_Marie_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30f.", "author": "", "orig_id": 1410854}}, {"model": "metainfo.source", "pk": 8208, "fields": {"orig_filename": "Nakic_Filip-Franjo_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410855}}, {"model": "metainfo.source", "pk": 8209, "fields": {"orig_filename": "Nakovic_Mihovil_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410857}}, {"model": "metainfo.source", "pk": 8210, "fields": {"orig_filename": "Nako_Antonije_1817_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410856}}, {"model": "metainfo.source", "pk": 8211, "fields": {"orig_filename": "Namias_Giacinto_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31f.", "author": "", "orig_id": 1410858}}, {"model": "metainfo.source", "pk": 8212, "fields": {"orig_filename": "Napadiewicz-Wieckowski_Edward_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32", "author": "", "orig_id": 1410859}}, {"model": "metainfo.source", "pk": 8213, "fields": {"orig_filename": "Napadiewicz-Wieckowski_Mikolaj_1779_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32", "author": "", "orig_id": 1410932}}, {"model": "metainfo.source", "pk": 8214, "fields": {"orig_filename": "Napotnik_Michael_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32f.", "author": "", "orig_id": 1410933}}, {"model": "metainfo.source", "pk": 8215, "fields": {"orig_filename": "Napp_Cyrill_1792_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33", "author": "", "orig_id": 1410934}}, {"model": "metainfo.source", "pk": 8216, "fields": {"orig_filename": "Napravil_Friedrich_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33", "author": "", "orig_id": 1410935}}, {"model": "metainfo.source", "pk": 8217, "fields": {"orig_filename": "Napravnik_Eduard_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33f.", "author": "", "orig_id": 1410936}}, {"model": "metainfo.source", "pk": 8218, "fields": {"orig_filename": "Naprstek_Vojta_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34", "author": "", "orig_id": 1410937}}, {"model": "metainfo.source", "pk": 8219, "fields": {"orig_filename": "Narajewski_Stanislaw_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34", "author": "", "orig_id": 1410938}}, {"model": "metainfo.source", "pk": 8220, "fields": {"orig_filename": "Narath_Albert_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34f.", "author": "", "orig_id": 1410939}}, {"model": "metainfo.source", "pk": 8221, "fields": {"orig_filename": "Nardin_Julij_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35", "author": "", "orig_id": 1410942}}, {"model": "metainfo.source", "pk": 8222, "fields": {"orig_filename": "Nardi_Francesco_1808_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35", "author": "", "orig_id": 1410941}}, {"model": "metainfo.source", "pk": 8223, "fields": {"orig_filename": "Nardo_Giandomenico_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35f.", "author": "", "orig_id": 1410943}}, {"model": "metainfo.source", "pk": 8224, "fields": {"orig_filename": "Naschberger_Andreas_1843_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36", "author": "", "orig_id": 1410945}}, {"model": "metainfo.source", "pk": 8225, "fields": {"orig_filename": "Nascher_Eduard_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36", "author": "", "orig_id": 1410946}}, {"model": "metainfo.source", "pk": 8226, "fields": {"orig_filename": "Naske_Alois_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36f.", "author": "", "orig_id": 1410947}}, {"model": "metainfo.source", "pk": 8227, "fields": {"orig_filename": "Naske_Emilie_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410948}}, {"model": "metainfo.source", "pk": 8228, "fields": {"orig_filename": "Naswetter_Emil_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410949}}, {"model": "metainfo.source", "pk": 8229, "fields": {"orig_filename": "Natanson_Wladyslaw_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410950}}, {"model": "metainfo.source", "pk": 8230, "fields": {"orig_filename": "Nathan_Arturo_1891_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38", "author": "", "orig_id": 1410951}}, {"model": "metainfo.source", "pk": 8231, "fields": {"orig_filename": "Natonek_Josef_1813_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38", "author": "", "orig_id": 1410952}}, {"model": "metainfo.source", "pk": 8232, "fields": {"orig_filename": "Natorp_Maria-Anna_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38f.", "author": "", "orig_id": 1410953}}, {"model": "metainfo.source", "pk": 8233, "fields": {"orig_filename": "Natosevic_Djordje_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39", "author": "", "orig_id": 1409540}}, {"model": "metainfo.source", "pk": 8234, "fields": {"orig_filename": "Natterer_Johann-August_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 40f.", "author": "", "orig_id": 1409543}}, {"model": "metainfo.source", "pk": 8235, "fields": {"orig_filename": "Natterer_Johann_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39f.", "author": "", "orig_id": 1409542}}, {"model": "metainfo.source", "pk": 8236, "fields": {"orig_filename": "Natterer_Josef_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41", "author": "", "orig_id": 1409544}}, {"model": "metainfo.source", "pk": 8237, "fields": {"orig_filename": "Natterer_Konrad_1860_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41", "author": "", "orig_id": 1409545}}, {"model": "metainfo.source", "pk": 8238, "fields": {"orig_filename": "Natter_Heinrich_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39", "author": "", "orig_id": 1409541}}, {"model": "metainfo.source", "pk": 8239, "fields": {"orig_filename": "Natzler_Leopold_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41f.", "author": "", "orig_id": 1409546}}, {"model": "metainfo.source", "pk": 8240, "fields": {"orig_filename": "Natzler_Siegmund_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 42", "author": "", "orig_id": 1409547}}, {"model": "metainfo.source", "pk": 8241, "fields": {"orig_filename": "Naufock_Albert_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 42f.", "author": "", "orig_id": 1409548}}, {"model": "metainfo.source", "pk": 8242, "fields": {"orig_filename": "Nauheimer_Stefanie_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 43", "author": "", "orig_id": 1409549}}, {"model": "metainfo.source", "pk": 8243, "fields": {"orig_filename": "Navarini_Octavius_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44f.", "author": "", "orig_id": 1409554}}, {"model": "metainfo.source", "pk": 8244, "fields": {"orig_filename": "Nava_Alexander_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 43f.", "author": "", "orig_id": 1409550}}, {"model": "metainfo.source", "pk": 8245, "fields": {"orig_filename": "Nava_Antonio-Maria_1755_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409551}}, {"model": "metainfo.source", "pk": 8246, "fields": {"orig_filename": "Nava_Davide_1813_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409552}}, {"model": "metainfo.source", "pk": 8247, "fields": {"orig_filename": "Nava_Gabrio-Maria_1758_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409553}}, {"model": "metainfo.source", "pk": 8248, "fields": {"orig_filename": "Nave_Johann_1831_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45", "author": "", "orig_id": 1409555}}, {"model": "metainfo.source", "pk": 8249, "fields": {"orig_filename": "Navratil-Szalok_Imre_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47f.", "author": "", "orig_id": 1409563}}, {"model": "metainfo.source", "pk": 8250, "fields": {"orig_filename": "Navratil_Ivan_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45f.", "author": "", "orig_id": 1409557}}, {"model": "metainfo.source", "pk": 8251, "fields": {"orig_filename": "Navratil_Johann_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 46", "author": "", "orig_id": 1409558}}, {"model": "metainfo.source", "pk": 8252, "fields": {"orig_filename": "Navratil_Josef_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 46f.", "author": "", "orig_id": 1409559}}, {"model": "metainfo.source", "pk": 8253, "fields": {"orig_filename": "Navratil_Karel_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409560}}, {"model": "metainfo.source", "pk": 8254, "fields": {"orig_filename": "Navratil_Karl_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409561}}, {"model": "metainfo.source", "pk": 8255, "fields": {"orig_filename": "Navratil_Michal_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409562}}, {"model": "metainfo.source", "pk": 8256, "fields": {"orig_filename": "Navrat_Vinzenz_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45", "author": "", "orig_id": 1409556}}, {"model": "metainfo.source", "pk": 8257, "fields": {"orig_filename": "Navrockyj_Volodymyr_1847_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48", "author": "", "orig_id": 1409564}}, {"model": "metainfo.source", "pk": 8258, "fields": {"orig_filename": "Nawiasky_Eduard_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48", "author": "", "orig_id": 1409634}}, {"model": "metainfo.source", "pk": 8259, "fields": {"orig_filename": "Nazari_Giovan-Battista_1791_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48f.", "author": "", "orig_id": 1409635}}, {"model": "metainfo.source", "pk": 8260, "fields": {"orig_filename": "Nebehay_Gustav_1881_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49", "author": "", "orig_id": 1409636}}, {"model": "metainfo.source", "pk": 8261, "fields": {"orig_filename": "Nebesky_Jan_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49", "author": "", "orig_id": 1409637}}, {"model": "metainfo.source", "pk": 8262, "fields": {"orig_filename": "Nebesky_Vaclav-Bolemir_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49f.", "author": "", "orig_id": 1409638}}, {"model": "metainfo.source", "pk": 8263, "fields": {"orig_filename": "Nebuschka_Franz-Josef_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409639}}, {"model": "metainfo.source", "pk": 8264, "fields": {"orig_filename": "Necasek_Frantisek_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409640}}, {"model": "metainfo.source", "pk": 8265, "fields": {"orig_filename": "Nechansky_Arnold_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409641}}, {"model": "metainfo.source", "pk": 8266, "fields": {"orig_filename": "Necker_Moritz_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50f.", "author": "", "orig_id": 1409642}}, {"model": "metainfo.source", "pk": 8267, "fields": {"orig_filename": "Neckheim_Hans_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51", "author": "", "orig_id": 1409643}}, {"model": "metainfo.source", "pk": 8268, "fields": {"orig_filename": "Necsey_Istvan_1870_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51", "author": "", "orig_id": 1409644}}, {"model": "metainfo.source", "pk": 8269, "fields": {"orig_filename": "Nedbal_Oskar_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51f.", "author": "", "orig_id": 1409645}}, {"model": "metainfo.source", "pk": 8270, "fields": {"orig_filename": "Nedeljko_Fran_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52", "author": "", "orig_id": 1409646}}, {"model": "metainfo.source", "pk": 8271, "fields": {"orig_filename": "Nedelkowitsch_Ernst_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52", "author": "", "orig_id": 1409647}}, {"model": "metainfo.source", "pk": 8272, "fields": {"orig_filename": "Neder_Emil_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52f.", "author": "", "orig_id": 1409648}}, {"model": "metainfo.source", "pk": 8273, "fields": {"orig_filename": "Neder_Johann-Michael_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53", "author": "", "orig_id": 1409649}}, {"model": "metainfo.source", "pk": 8274, "fields": {"orig_filename": "Nedic_Martin_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53", "author": "", "orig_id": 1409650}}, {"model": "metainfo.source", "pk": 8275, "fields": {"orig_filename": "Nedoma_Jan_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53f.", "author": "", "orig_id": 1409651}}, {"model": "metainfo.source", "pk": 8276, "fields": {"orig_filename": "Nedopil_Leopold_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409652}}, {"model": "metainfo.source", "pk": 8277, "fields": {"orig_filename": "Nedopil_Mauric_1847_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409653}}, {"model": "metainfo.source", "pk": 8278, "fields": {"orig_filename": "Nedved_Anton_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409654}}, {"model": "metainfo.source", "pk": 8279, "fields": {"orig_filename": "Nedved_Milos_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54f.", "author": "", "orig_id": 1409724}}, {"model": "metainfo.source", "pk": 8280, "fields": {"orig_filename": "Neeb_Johann-Philipp_1806_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 55", "author": "", "orig_id": 1409725}}, {"model": "metainfo.source", "pk": 8281, "fields": {"orig_filename": "Neefe_Hermann-Josef_1790_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 55f.", "author": "", "orig_id": 1409726}}, {"model": "metainfo.source", "pk": 8282, "fields": {"orig_filename": "Neelmeyer_Ludwig_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1409727}}, {"model": "metainfo.source", "pk": 8283, "fields": {"orig_filename": "Neffat_Anton_1893_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1409728}}, {"model": "metainfo.source", "pk": 8284, "fields": {"orig_filename": "Neffzern_Karl_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1412808}}, {"model": "metainfo.source", "pk": 8285, "fields": {"orig_filename": "Negrelli-Moldelbe_Alois_1799_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56f.", "author": "", "orig_id": 1409729}}, {"model": "metainfo.source", "pk": 8286, "fields": {"orig_filename": "Negri_Cristoforo_1808_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 57f.", "author": "", "orig_id": 1409730}}, {"model": "metainfo.source", "pk": 8287, "fields": {"orig_filename": "Negri_Gaetano_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 58f.", "author": "", "orig_id": 1409731}}, {"model": "metainfo.source", "pk": 8288, "fields": {"orig_filename": "Negri_Giambattista_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59", "author": "", "orig_id": 1409732}}, {"model": "metainfo.source", "pk": 8289, "fields": {"orig_filename": "Negyesy_Laszlo_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59", "author": "", "orig_id": 1409733}}, {"model": "metainfo.source", "pk": 8290, "fields": {"orig_filename": "Nehajev_Milutin_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59f.", "author": "", "orig_id": 1409734}}, {"model": "metainfo.source", "pk": 8291, "fields": {"orig_filename": "Nehr_Alexander_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60", "author": "", "orig_id": 1409735}}, {"model": "metainfo.source", "pk": 8292, "fields": {"orig_filename": "Nehr_Johann-Josef_1757_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60", "author": "", "orig_id": 1409736}}, {"model": "metainfo.source", "pk": 8293, "fields": {"orig_filename": "Neidhart_Alois_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60f.", "author": "", "orig_id": 1409737}}, {"model": "metainfo.source", "pk": 8294, "fields": {"orig_filename": "Neidl_Franz_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61", "author": "", "orig_id": 1409746}}, {"model": "metainfo.source", "pk": 8295, "fields": {"orig_filename": "Neidl_Johann-Josef_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61", "author": "", "orig_id": 1409747}}, {"model": "metainfo.source", "pk": 8296, "fields": {"orig_filename": "Neilreich_August_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61f.", "author": "", "orig_id": 1409748}}, {"model": "metainfo.source", "pk": 8297, "fields": {"orig_filename": "Nejebse_Johann_1809_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409818}}, {"model": "metainfo.source", "pk": 8298, "fields": {"orig_filename": "Nejedly_Jan_1776_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409819}}, {"model": "metainfo.source", "pk": 8299, "fields": {"orig_filename": "Nejedly_Vojtech_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409820}}, {"model": "metainfo.source", "pk": 8300, "fields": {"orig_filename": "Nell-Nellenburg-Damenacker_Franz-Anton-Maria_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62f.", "author": "", "orig_id": 1409821}}, {"model": "metainfo.source", "pk": 8301, "fields": {"orig_filename": "Nemcic-Gostovinski_Antun_1816_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 63", "author": "", "orig_id": 1409822}}, {"model": "metainfo.source", "pk": 8302, "fields": {"orig_filename": "Nemcova_Bozena_1820_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 63f.", "author": "", "orig_id": 1409823}}, {"model": "metainfo.source", "pk": 8303, "fields": {"orig_filename": "Nemecek_Johann_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 64", "author": "", "orig_id": 1409824}}, {"model": "metainfo.source", "pk": 8304, "fields": {"orig_filename": "Nemecic-Bihacgrad_Josef_1832_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 64f.", "author": "", "orig_id": 1409825}}, {"model": "metainfo.source", "pk": 8305, "fields": {"orig_filename": "Nemecky_Daniel-Mathias_1762_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409826}}, {"model": "metainfo.source", "pk": 8306, "fields": {"orig_filename": "Nemenyi_Imre_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409827}}, {"model": "metainfo.source", "pk": 8307, "fields": {"orig_filename": "Munih_Andrej_1875_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413743}}, {"model": "metainfo.source", "pk": 8308, "fields": {"orig_filename": "Munkacsi_Albert_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441f.", "author": "", "orig_id": 1413745}}, {"model": "metainfo.source", "pk": 8309, "fields": {"orig_filename": "Munkacsi_Bernat_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 442", "author": "", "orig_id": 1413746}}, {"model": "metainfo.source", "pk": 8310, "fields": {"orig_filename": "Munkacsy_Mihaly_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 442f.", "author": "", "orig_id": 1413747}}, {"model": "metainfo.source", "pk": 8311, "fields": {"orig_filename": "Munk_Adolf_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413744}}, {"model": "metainfo.source", "pk": 8312, "fields": {"orig_filename": "Munsch_Josef_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 443", "author": "", "orig_id": 1413748}}, {"model": "metainfo.source", "pk": 8313, "fields": {"orig_filename": "Munsch_Leopold_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 443f.", "author": "", "orig_id": 1413820}}, {"model": "metainfo.source", "pk": 8314, "fields": {"orig_filename": "Munyay_Antal_1787_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413821}}, {"model": "metainfo.source", "pk": 8315, "fields": {"orig_filename": "Muratti_Giusto_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413823}}, {"model": "metainfo.source", "pk": 8316, "fields": {"orig_filename": "Muratti_Spartaco_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444f.", "author": "", "orig_id": 1413824}}, {"model": "metainfo.source", "pk": 8317, "fields": {"orig_filename": "Murat_Marko_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413822}}, {"model": "metainfo.source", "pk": 8318, "fields": {"orig_filename": "Muresan_Andrei_1816_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413825}}, {"model": "metainfo.source", "pk": 8319, "fields": {"orig_filename": "Muresianu_Iacob_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413826}}, {"model": "metainfo.source", "pk": 8320, "fields": {"orig_filename": "Murgas_Josef_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413827}}, {"model": "metainfo.source", "pk": 8321, "fields": {"orig_filename": "Murgu_Eftimie_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445f.", "author": "", "orig_id": 1413828}}, {"model": "metainfo.source", "pk": 8322, "fields": {"orig_filename": "Murko_Anton_1809_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446", "author": "", "orig_id": 1413829}}, {"model": "metainfo.source", "pk": 8323, "fields": {"orig_filename": "Murnik_Ivan_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446f.", "author": "", "orig_id": 1413831}}, {"model": "metainfo.source", "pk": 8324, "fields": {"orig_filename": "Murnik_Othmar_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447", "author": "", "orig_id": 1413832}}, {"model": "metainfo.source", "pk": 8325, "fields": {"orig_filename": "Murnik_Rado_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447", "author": "", "orig_id": 1413833}}, {"model": "metainfo.source", "pk": 8326, "fields": {"orig_filename": "Murn_Josip_1879_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446", "author": "", "orig_id": 1413830}}, {"model": "metainfo.source", "pk": 8327, "fields": {"orig_filename": "Murr_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447f.", "author": "", "orig_id": 1413834}}, {"model": "metainfo.source", "pk": 8328, "fields": {"orig_filename": "Mursec_Jozef_1807_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 448", "author": "", "orig_id": 1413835}}, {"model": "metainfo.source", "pk": 8329, "fields": {"orig_filename": "Musger_August_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 448", "author": "", "orig_id": 1413836}}, {"model": "metainfo.source", "pk": 8330, "fields": {"orig_filename": "Musicki_Lukijan_1777_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1", "author": "", "orig_id": 1410484}}, {"model": "metainfo.source", "pk": 8331, "fields": {"orig_filename": "Music_August_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1", "author": "", "orig_id": 1410483}}, {"model": "metainfo.source", "pk": 8332, "fields": {"orig_filename": "Musil_Alois_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1f.", "author": "", "orig_id": 1410485}}, {"model": "metainfo.source", "pk": 8333, "fields": {"orig_filename": "Musil_Robert_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 2f.", "author": "", "orig_id": 1410559}}, {"model": "metainfo.source", "pk": 8334, "fields": {"orig_filename": "Mussafia_Adolf_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 3f.", "author": "", "orig_id": 1410560}}, {"model": "metainfo.source", "pk": 8335, "fields": {"orig_filename": "Mussoni_Cajetan_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 4", "author": "", "orig_id": 1410561}}, {"model": "metainfo.source", "pk": 8336, "fields": {"orig_filename": "Musulin-Gomirje_Alexander_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 4f.", "author": "", "orig_id": 1410562}}, {"model": "metainfo.source", "pk": 8337, "fields": {"orig_filename": "Muszynski-Arenhort_Oskar_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5", "author": "", "orig_id": 1410563}}, {"model": "metainfo.source", "pk": 8338, "fields": {"orig_filename": "Muther_Ludwig_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410566}}, {"model": "metainfo.source", "pk": 8339, "fields": {"orig_filename": "Muth_Peter_1784_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5", "author": "", "orig_id": 1410564}}, {"model": "metainfo.source", "pk": 8340, "fields": {"orig_filename": "Muth_Richard_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5f.", "author": "", "orig_id": 1410565}}, {"model": "metainfo.source", "pk": 8341, "fields": {"orig_filename": "Mutinelli_Giambattista_1747_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410567}}, {"model": "metainfo.source", "pk": 8342, "fields": {"orig_filename": "Mutschlechner_Anton_1795_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410568}}, {"model": "metainfo.source", "pk": 8343, "fields": {"orig_filename": "Mutschlechner_Josef_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6f.", "author": "", "orig_id": 1410569}}, {"model": "metainfo.source", "pk": 8344, "fields": {"orig_filename": "Muzakova_Johanka_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 7", "author": "", "orig_id": 1410570}}, {"model": "metainfo.source", "pk": 8345, "fields": {"orig_filename": "Muzik_Augustin-Eugen_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 7f.", "author": "", "orig_id": 1410571}}, {"model": "metainfo.source", "pk": 8346, "fields": {"orig_filename": "Mycielski_Franciszek_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 8", "author": "", "orig_id": 1410572}}, {"model": "metainfo.source", "pk": 8347, "fields": {"orig_filename": "Mycielski_Jerzy_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 8", "author": "", "orig_id": 1410573}}, {"model": "metainfo.source", "pk": 8348, "fields": {"orig_filename": "Myrbach-Rheinfeld_Felician_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9", "author": "", "orig_id": 1410574}}, {"model": "metainfo.source", "pk": 8349, "fields": {"orig_filename": "Myrbach-Rheinfeld_Franz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9", "author": "", "orig_id": 1410575}}, {"model": "metainfo.source", "pk": 8350, "fields": {"orig_filename": "Myrdacz_Gustav_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9f.", "author": "", "orig_id": 1410576}}, {"model": "metainfo.source", "pk": 8351, "fields": {"orig_filename": "Myrdacz_Paul_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10", "author": "", "orig_id": 1410577}}, {"model": "metainfo.source", "pk": 8352, "fields": {"orig_filename": "Myskovszky_Viktor_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10", "author": "", "orig_id": 1410578}}, {"model": "metainfo.source", "pk": 8353, "fields": {"orig_filename": "Myslbek_Josef-Vaclav_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10f.", "author": "", "orig_id": 1410579}}, {"model": "metainfo.source", "pk": 8354, "fields": {"orig_filename": "Myslbek_Karel_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 11f.", "author": "", "orig_id": 1410580}}, {"model": "metainfo.source", "pk": 8355, "fields": {"orig_filename": "Mytteis_Viktor_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 12", "author": "", "orig_id": 1410650}}, {"model": "metainfo.source", "pk": 8356, "fields": {"orig_filename": "Naaff_Anton_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 12f.", "author": "", "orig_id": 1410651}}, {"model": "metainfo.source", "pk": 8357, "fields": {"orig_filename": "Nabergoj_Ivan_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 13", "author": "", "orig_id": 1410652}}, {"model": "metainfo.source", "pk": 8358, "fields": {"orig_filename": "Nabielak_Ludwik_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 13f.", "author": "", "orig_id": 1410653}}, {"model": "metainfo.source", "pk": 8359, "fields": {"orig_filename": "Naccari_Fortunato-Luigi_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14", "author": "", "orig_id": 1410654}}, {"model": "metainfo.source", "pk": 8360, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Ferenc_1801_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14", "author": "", "orig_id": 1410655}}, {"model": "metainfo.source", "pk": 8361, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Lipot_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14f.", "author": "", "orig_id": 1410656}}, {"model": "metainfo.source", "pk": 8362, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Mihaly_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410657}}, {"model": "metainfo.source", "pk": 8363, "fields": {"orig_filename": "Nadaskay_Bela_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410658}}, {"model": "metainfo.source", "pk": 8364, "fields": {"orig_filename": "Nadaskay_Lajos_1816_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410659}}, {"model": "metainfo.source", "pk": 8365, "fields": {"orig_filename": "Nadherny_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15f.", "author": "", "orig_id": 1410660}}, {"model": "metainfo.source", "pk": 8366, "fields": {"orig_filename": "Nadherny_Ignaz_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410661}}, {"model": "metainfo.source", "pk": 8367, "fields": {"orig_filename": "Nadherny_Johann_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410662}}, {"model": "metainfo.source", "pk": 8368, "fields": {"orig_filename": "Nadler_Gustav-Adolf_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410663}}, {"model": "metainfo.source", "pk": 8369, "fields": {"orig_filename": "Nadler_Johann-Friedrich-Ernst_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16f.", "author": "", "orig_id": 1410664}}, {"model": "metainfo.source", "pk": 8370, "fields": {"orig_filename": "Nadler_Robert_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17", "author": "", "orig_id": 1410665}}, {"model": "metainfo.source", "pk": 8371, "fields": {"orig_filename": "Nadlisek-Bartol_Marica_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17", "author": "", "orig_id": 1410666}}, {"model": "metainfo.source", "pk": 8372, "fields": {"orig_filename": "Nadolski_Otto_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17f.", "author": "", "orig_id": 1410667}}, {"model": "metainfo.source", "pk": 8373, "fields": {"orig_filename": "Naegle_August_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410668}}, {"model": "metainfo.source", "pk": 8374, "fields": {"orig_filename": "Nagele_Hugo_1880_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19", "author": "", "orig_id": 1410747}}, {"model": "metainfo.source", "pk": 8375, "fields": {"orig_filename": "Nagel_Ignaz_1831_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410669}}, {"model": "metainfo.source", "pk": 8376, "fields": {"orig_filename": "Nagel_Leo_1835_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410670}}, {"model": "metainfo.source", "pk": 8377, "fields": {"orig_filename": "Nagel_Robert-Siegfried_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18f.", "author": "", "orig_id": 1410671}}, {"model": "metainfo.source", "pk": 8378, "fields": {"orig_filename": "Nagel_Rudolf_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19", "author": "", "orig_id": 1410672}}, {"model": "metainfo.source", "pk": 8379, "fields": {"orig_filename": "Nagiller_Matthaeus_1815_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19f.", "author": "", "orig_id": 1410748}}, {"model": "metainfo.source", "pk": 8380, "fields": {"orig_filename": "Nagl_Alfred_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20", "author": "", "orig_id": 1410749}}, {"model": "metainfo.source", "pk": 8381, "fields": {"orig_filename": "Nagl_Erasmus_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20", "author": "", "orig_id": 1410750}}, {"model": "metainfo.source", "pk": 8382, "fields": {"orig_filename": "Nagl_Franz-Xaver_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20f.", "author": "", "orig_id": 1410751}}, {"model": "metainfo.source", "pk": 8383, "fields": {"orig_filename": "Nagl_Johann-Willibald_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21", "author": "", "orig_id": 1410752}}, {"model": "metainfo.source", "pk": 8384, "fields": {"orig_filename": "Nagnzaun_Albert_1777_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21", "author": "", "orig_id": 1410753}}, {"model": "metainfo.source", "pk": 8385, "fields": {"orig_filename": "Nagnzaun_Michael_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21f.", "author": "", "orig_id": 1410754}}, {"model": "metainfo.source", "pk": 8386, "fields": {"orig_filename": "Nagy-Alsoszopor_Imre_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25f.", "author": "", "orig_id": 1410839}}, {"model": "metainfo.source", "pk": 8387, "fields": {"orig_filename": "Nagy-Alsoszopor_Ladislaus_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 26", "author": "", "orig_id": 1410840}}, {"model": "metainfo.source", "pk": 8388, "fields": {"orig_filename": "Nagy-Felsoebuek_Pal_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 26f.", "author": "", "orig_id": 1410841}}, {"model": "metainfo.source", "pk": 8389, "fields": {"orig_filename": "Nagy-Felsoeeoer_Ernoe_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 27", "author": "", "orig_id": 1410842}}, {"model": "metainfo.source", "pk": 8390, "fields": {"orig_filename": "Nagy-Felsoegyoer_Ivan_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 27", "author": "", "orig_id": 1410843}}, {"model": "metainfo.source", "pk": 8391, "fields": {"orig_filename": "Nagy-Kaal_Elek_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410844}}, {"model": "metainfo.source", "pk": 8392, "fields": {"orig_filename": "Nagy-Nagyrev_Sandor_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410845}}, {"model": "metainfo.source", "pk": 8393, "fields": {"orig_filename": "Nagy-Sandor_Jozsef_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410846}}, {"model": "metainfo.source", "pk": 8394, "fields": {"orig_filename": "Nagy-Tasnad_Gyula_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28f.", "author": "", "orig_id": 1410847}}, {"model": "metainfo.source", "pk": 8395, "fields": {"orig_filename": "Nagy-Toeboer-Ethe_Adalbert_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410848}}, {"model": "metainfo.source", "pk": 8396, "fields": {"orig_filename": "Nagy-Toeboer-Ethe_Karl_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410849}}, {"model": "metainfo.source", "pk": 8397, "fields": {"orig_filename": "Nagy-Ueroegd_Miklos_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410850}}, {"model": "metainfo.source", "pk": 8398, "fields": {"orig_filename": "Nagy-Versegh_Ferenc_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30", "author": "", "orig_id": 1410852}}, {"model": "metainfo.source", "pk": 8399, "fields": {"orig_filename": "Nagyvathy_Janos_1755_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30", "author": "", "orig_id": 1410853}}, {"model": "metainfo.source", "pk": 8400, "fields": {"orig_filename": "Nagy_Aleksander_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410755}}, {"model": "metainfo.source", "pk": 8401, "fields": {"orig_filename": "Nagy_Dezsoe-Balint_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410756}}, {"model": "metainfo.source", "pk": 8402, "fields": {"orig_filename": "Nagy_Geza_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410757}}, {"model": "metainfo.source", "pk": 8403, "fields": {"orig_filename": "Nagy_Gusztav_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410758}}, {"model": "metainfo.source", "pk": 8404, "fields": {"orig_filename": "Nagy_Ignac_1810_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410759}}, {"model": "metainfo.source", "pk": 8405, "fields": {"orig_filename": "Nagy_Janos_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410760}}, {"model": "metainfo.source", "pk": 8406, "fields": {"orig_filename": "Nagy_Jozsef_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410761}}, {"model": "metainfo.source", "pk": 8407, "fields": {"orig_filename": "Nagy_Karoly_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23f.", "author": "", "orig_id": 1410762}}, {"model": "metainfo.source", "pk": 8408, "fields": {"orig_filename": "Nagy_Martin_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410763}}, {"model": "metainfo.source", "pk": 8409, "fields": {"orig_filename": "Nagy_Mihaly_1788_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410764}}, {"model": "metainfo.source", "pk": 8410, "fields": {"orig_filename": "Muehlmann_Josef_1805_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413378}}, {"model": "metainfo.source", "pk": 8411, "fields": {"orig_filename": "Muehlvenzl_Josef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406f.", "author": "", "orig_id": 1413379}}, {"model": "metainfo.source", "pk": 8412, "fields": {"orig_filename": "Muehringer_Elise_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407", "author": "", "orig_id": 1413380}}, {"model": "metainfo.source", "pk": 8413, "fields": {"orig_filename": "Muellendorff_Julius_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407", "author": "", "orig_id": 1413381}}, {"model": "metainfo.source", "pk": 8414, "fields": {"orig_filename": "Mueller-Elblein_Arthur_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413638}}, {"model": "metainfo.source", "pk": 8415, "fields": {"orig_filename": "Mueller-Guttenbrunn_Herbert_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413639}}, {"model": "metainfo.source", "pk": 8416, "fields": {"orig_filename": "Mueller-Martini_Johanna_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413640}}, {"model": "metainfo.source", "pk": 8417, "fields": {"orig_filename": "Mueller-Martini_Otto_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413641}}, {"model": "metainfo.source", "pk": 8418, "fields": {"orig_filename": "Mueller-Muehlwerth_Alexander_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413642}}, {"model": "metainfo.source", "pk": 8419, "fields": {"orig_filename": "Mueller-Nitterdorf_Adam_1779_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430f.", "author": "", "orig_id": 1413643}}, {"model": "metainfo.source", "pk": 8420, "fields": {"orig_filename": "Mueller-Roghoj_Heinrich_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431", "author": "", "orig_id": 1413645}}, {"model": "metainfo.source", "pk": 8421, "fields": {"orig_filename": "Mueller-Szentgyoergy_Kalman_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431f.", "author": "", "orig_id": 1413646}}, {"model": "metainfo.source", "pk": 8422, "fields": {"orig_filename": "Mueller-Thomamuehl_Wenzel_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432", "author": "", "orig_id": 1413647}}, {"model": "metainfo.source", "pk": 8423, "fields": {"orig_filename": "Mueller_Adam_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407f.", "author": "", "orig_id": 1413382}}, {"model": "metainfo.source", "pk": 8424, "fields": {"orig_filename": "Mueller_Adolf_1801_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 408", "author": "", "orig_id": 1413383}}, {"model": "metainfo.source", "pk": 8425, "fields": {"orig_filename": "Mueller_Anton_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 408f.", "author": "", "orig_id": 1413384}}, {"model": "metainfo.source", "pk": 8426, "fields": {"orig_filename": "Mueller_Anton_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409", "author": "", "orig_id": 1413386}}, {"model": "metainfo.source", "pk": 8427, "fields": {"orig_filename": "Mueller_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409", "author": "", "orig_id": 1413385}}, {"model": "metainfo.source", "pk": 8428, "fields": {"orig_filename": "Mueller_Christian-Leo_1799_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409f.", "author": "", "orig_id": 1413387}}, {"model": "metainfo.source", "pk": 8429, "fields": {"orig_filename": "Mueller_David-Heinrich_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 410f.", "author": "", "orig_id": 1413388}}, {"model": "metainfo.source", "pk": 8430, "fields": {"orig_filename": "Mueller_Emil_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411", "author": "", "orig_id": 1413389}}, {"model": "metainfo.source", "pk": 8431, "fields": {"orig_filename": "Mueller_Ernest_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411", "author": "", "orig_id": 1413390}}, {"model": "metainfo.source", "pk": 8432, "fields": {"orig_filename": "Mueller_Ernst_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411f.", "author": "", "orig_id": 1413391}}, {"model": "metainfo.source", "pk": 8433, "fields": {"orig_filename": "Mueller_Erwin_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412", "author": "", "orig_id": 1413392}}, {"model": "metainfo.source", "pk": 8434, "fields": {"orig_filename": "Mueller_Franz-Anton_1817_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412f.", "author": "", "orig_id": 1413394}}, {"model": "metainfo.source", "pk": 8435, "fields": {"orig_filename": "Mueller_Franz-Josef_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 413", "author": "", "orig_id": 1413458}}, {"model": "metainfo.source", "pk": 8436, "fields": {"orig_filename": "Mueller_Franz-Xaver_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 413f.", "author": "", "orig_id": 1413459}}, {"model": "metainfo.source", "pk": 8437, "fields": {"orig_filename": "Mueller_Franz_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412", "author": "", "orig_id": 1413393}}, {"model": "metainfo.source", "pk": 8438, "fields": {"orig_filename": "Mueller_Friedrich-Josef_1768_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243", "author": "", "orig_id": 1411789}}, {"model": "metainfo.source", "pk": 8439, "fields": {"orig_filename": "Mueller_Friedrich_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414", "author": "", "orig_id": 1413460}}, {"model": "metainfo.source", "pk": 8440, "fields": {"orig_filename": "Mueller_Friedrich_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414", "author": "", "orig_id": 1413461}}, {"model": "metainfo.source", "pk": 8441, "fields": {"orig_filename": "Mueller_Friedrich_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414f.", "author": "", "orig_id": 1413462}}, {"model": "metainfo.source", "pk": 8442, "fields": {"orig_filename": "Mueller_Friedrich_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415", "author": "", "orig_id": 1413463}}, {"model": "metainfo.source", "pk": 8443, "fields": {"orig_filename": "Mueller_Georg_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415", "author": "", "orig_id": 1413464}}, {"model": "metainfo.source", "pk": 8444, "fields": {"orig_filename": "Mueller_Georg_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415f.", "author": "", "orig_id": 1413465}}, {"model": "metainfo.source", "pk": 8445, "fields": {"orig_filename": "Mueller_Gregor_1842_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416", "author": "", "orig_id": 1413466}}, {"model": "metainfo.source", "pk": 8446, "fields": {"orig_filename": "Mueller_Gustav_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416", "author": "", "orig_id": 1413467}}, {"model": "metainfo.source", "pk": 8447, "fields": {"orig_filename": "Mueller_Hans_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416f.", "author": "", "orig_id": 1413468}}, {"model": "metainfo.source", "pk": 8448, "fields": {"orig_filename": "Mueller_Hans_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 417", "author": "", "orig_id": 1413469}}, {"model": "metainfo.source", "pk": 8449, "fields": {"orig_filename": "Mueller_Hermann-Franz_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 417f.", "author": "", "orig_id": 1413470}}, {"model": "metainfo.source", "pk": 8450, "fields": {"orig_filename": "Mueller_Jan-Bohuslav_1823_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418", "author": "", "orig_id": 1413471}}, {"model": "metainfo.source", "pk": 8451, "fields": {"orig_filename": "Mueller_Joel_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418", "author": "", "orig_id": 1413472}}, {"model": "metainfo.source", "pk": 8452, "fields": {"orig_filename": "Mueller_Johann-Georg_1822_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413476}}, {"model": "metainfo.source", "pk": 8453, "fields": {"orig_filename": "Mueller_Johann-Jakob_1780_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419f.", "author": "", "orig_id": 1413477}}, {"model": "metainfo.source", "pk": 8454, "fields": {"orig_filename": "Mueller_Johann_1799_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418f.", "author": "", "orig_id": 1413473}}, {"model": "metainfo.source", "pk": 8455, "fields": {"orig_filename": "Mueller_Johann_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413474}}, {"model": "metainfo.source", "pk": 8456, "fields": {"orig_filename": "Mueller_Johann_1832_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413475}}, {"model": "metainfo.source", "pk": 8457, "fields": {"orig_filename": "Mueller_Josef-Ferdinand_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 421f.", "author": "", "orig_id": 1413546}}, {"model": "metainfo.source", "pk": 8458, "fields": {"orig_filename": "Mueller_Josef-Franz_1811_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413547}}, {"model": "metainfo.source", "pk": 8459, "fields": {"orig_filename": "Mueller_Josefa-Hortensia_1766_1807.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243", "author": "", "orig_id": 1411790}}, {"model": "metainfo.source", "pk": 8460, "fields": {"orig_filename": "Mueller_Josef_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420", "author": "", "orig_id": 1413478}}, {"model": "metainfo.source", "pk": 8461, "fields": {"orig_filename": "Mueller_Josef_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420", "author": "", "orig_id": 1413479}}, {"model": "metainfo.source", "pk": 8462, "fields": {"orig_filename": "Mueller_Josef_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420f.", "author": "", "orig_id": 1413480}}, {"model": "metainfo.source", "pk": 8463, "fields": {"orig_filename": "Mueller_Josef_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 421", "author": "", "orig_id": 1413481}}, {"model": "metainfo.source", "pk": 8464, "fields": {"orig_filename": "Mueller_Karl_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413548}}, {"model": "metainfo.source", "pk": 8465, "fields": {"orig_filename": "Mueller_Laurentius_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413549}}, {"model": "metainfo.source", "pk": 8466, "fields": {"orig_filename": "Mueller_Leopold-Karl_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 423f.", "author": "", "orig_id": 1413553}}, {"model": "metainfo.source", "pk": 8467, "fields": {"orig_filename": "Mueller_Leopold_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422f.", "author": "", "orig_id": 1413551}}, {"model": "metainfo.source", "pk": 8468, "fields": {"orig_filename": "Mueller_Leopold_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 423", "author": "", "orig_id": 1413552}}, {"model": "metainfo.source", "pk": 8469, "fields": {"orig_filename": "Mueller_Marie_1847_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413554}}, {"model": "metainfo.source", "pk": 8470, "fields": {"orig_filename": "Mueller_Otto_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413555}}, {"model": "metainfo.source", "pk": 8471, "fields": {"orig_filename": "Mueller_Otto_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413556}}, {"model": "metainfo.source", "pk": 8472, "fields": {"orig_filename": "Mueller_Paul_1895_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413557}}, {"model": "metainfo.source", "pk": 8473, "fields": {"orig_filename": "Mueller_Richard_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413558}}, {"model": "metainfo.source", "pk": 8474, "fields": {"orig_filename": "Mueller_Richard_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413559}}, {"model": "metainfo.source", "pk": 8475, "fields": {"orig_filename": "Mueller_Robert_1887_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426", "author": "", "orig_id": 1413560}}, {"model": "metainfo.source", "pk": 8476, "fields": {"orig_filename": "Mueller_Rudolf_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426", "author": "", "orig_id": 1413561}}, {"model": "metainfo.source", "pk": 8477, "fields": {"orig_filename": "Mueller_Rudolf_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426f.", "author": "", "orig_id": 1413562}}, {"model": "metainfo.source", "pk": 8478, "fields": {"orig_filename": "Mueller_Rudolf_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 427", "author": "", "orig_id": 1413563}}, {"model": "metainfo.source", "pk": 8479, "fields": {"orig_filename": "Mueller_Sophie_1803_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 427", "author": "", "orig_id": 1413564}}, {"model": "metainfo.source", "pk": 8480, "fields": {"orig_filename": "Mueller_Therese_1791_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428", "author": "", "orig_id": 1413565}}, {"model": "metainfo.source", "pk": 8481, "fields": {"orig_filename": "Mueller_Wenzel_1759_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428", "author": "", "orig_id": 1413566}}, {"model": "metainfo.source", "pk": 8482, "fields": {"orig_filename": "Mueller_Willibald_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428f.", "author": "", "orig_id": 1413567}}, {"model": "metainfo.source", "pk": 8483, "fields": {"orig_filename": "Mueller_Zeno_1818_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413569}}, {"model": "metainfo.source", "pk": 8484, "fields": {"orig_filename": "Muellner_Alfons_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432", "author": "", "orig_id": 1413648}}, {"model": "metainfo.source", "pk": 8485, "fields": {"orig_filename": "Muellner_Karl_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432f.", "author": "", "orig_id": 1413649}}, {"model": "metainfo.source", "pk": 8486, "fields": {"orig_filename": "Muellner_Laurenz_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433", "author": "", "orig_id": 1413650}}, {"model": "metainfo.source", "pk": 8487, "fields": {"orig_filename": "Muellner_Matthias_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433", "author": "", "orig_id": 1413651}}, {"model": "metainfo.source", "pk": 8488, "fields": {"orig_filename": "Muench-Bellinghausen_Anton-Rudolf_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433f.", "author": "", "orig_id": 1413652}}, {"model": "metainfo.source", "pk": 8489, "fields": {"orig_filename": "Muench-Bellinghausen_Eligius-Franz-Josef_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 434", "author": "", "orig_id": 1413653}}, {"model": "metainfo.source", "pk": 8490, "fields": {"orig_filename": "Muench-Bellinghausen_Joachim_1786_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 434f.", "author": "", "orig_id": 1413654}}, {"model": "metainfo.source", "pk": 8491, "fields": {"orig_filename": "Muendel-Feldberg_Josef_1829_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435", "author": "", "orig_id": 1413655}}, {"model": "metainfo.source", "pk": 8492, "fields": {"orig_filename": "Muenichsdorfer_Friedrich_1828_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435", "author": "", "orig_id": 1413656}}, {"model": "metainfo.source", "pk": 8493, "fields": {"orig_filename": "Muennich-Janosvoelgy_Adolf-Gustav_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413658}}, {"model": "metainfo.source", "pk": 8494, "fields": {"orig_filename": "Muennich-Janosvoelgy_Aurel-Adolf_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413659}}, {"model": "metainfo.source", "pk": 8495, "fields": {"orig_filename": "Muennich-Janosvoelgy_Koloman-Bela-Julius_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413727}}, {"model": "metainfo.source", "pk": 8496, "fields": {"orig_filename": "Muennich_Alexander_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435f.", "author": "", "orig_id": 1413657}}, {"model": "metainfo.source", "pk": 8497, "fields": {"orig_filename": "Muensterberg_Rudolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413728}}, {"model": "metainfo.source", "pk": 8498, "fields": {"orig_filename": "Muenzberg_Johann-Josef_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437f.", "author": "", "orig_id": 1413732}}, {"model": "metainfo.source", "pk": 8499, "fields": {"orig_filename": "Muenz_Bernhard_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436f.", "author": "", "orig_id": 1413729}}, {"model": "metainfo.source", "pk": 8500, "fields": {"orig_filename": "Muenz_Sigmund_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437", "author": "", "orig_id": 1413730}}, {"model": "metainfo.source", "pk": 8501, "fields": {"orig_filename": "Muenz_Wilhelm_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437", "author": "", "orig_id": 1413731}}, {"model": "metainfo.source", "pk": 8502, "fields": {"orig_filename": "Mugna_Pietro_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438", "author": "", "orig_id": 1413733}}, {"model": "metainfo.source", "pk": 8503, "fields": {"orig_filename": "Muhic_Pavao_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438", "author": "", "orig_id": 1413734}}, {"model": "metainfo.source", "pk": 8504, "fields": {"orig_filename": "Muhr_Michael_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438f.", "author": "", "orig_id": 1413735}}, {"model": "metainfo.source", "pk": 8505, "fields": {"orig_filename": "Mulley_Oskar_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413737}}, {"model": "metainfo.source", "pk": 8506, "fields": {"orig_filename": "Mulle_Julius_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413736}}, {"model": "metainfo.source", "pk": 8507, "fields": {"orig_filename": "Mully-Oppenried_Robert_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413738}}, {"model": "metainfo.source", "pk": 8508, "fields": {"orig_filename": "Munding_Hans_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 440", "author": "", "orig_id": 1413739}}, {"model": "metainfo.source", "pk": 8509, "fields": {"orig_filename": "Mundy_Jaromir_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 440f.", "author": "", "orig_id": 1413741}}, {"model": "metainfo.source", "pk": 8510, "fields": {"orig_filename": "Munganast_Emil_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413742}}, {"model": "metainfo.source", "pk": 8511, "fields": {"orig_filename": "Moriggl_Alois_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372f.", "author": "", "orig_id": 1412930}}, {"model": "metainfo.source", "pk": 8512, "fields": {"orig_filename": "Moriggl_Augustin_1816_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373", "author": "", "orig_id": 1412931}}, {"model": "metainfo.source", "pk": 8513, "fields": {"orig_filename": "Moriggl_Josef_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373", "author": "", "orig_id": 1412932}}, {"model": "metainfo.source", "pk": 8514, "fields": {"orig_filename": "Moriggl_Simon_1817_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373f.", "author": "", "orig_id": 1412933}}, {"model": "metainfo.source", "pk": 8515, "fields": {"orig_filename": "Moritsch_Anton_1851_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374", "author": "", "orig_id": 1412934}}, {"model": "metainfo.source", "pk": 8516, "fields": {"orig_filename": "Moro-Lin_Angelo_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 376", "author": "", "orig_id": 1413009}}, {"model": "metainfo.source", "pk": 8517, "fields": {"orig_filename": "Moroder_Franz_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 376f.", "author": "", "orig_id": 1413010}}, {"model": "metainfo.source", "pk": 8518, "fields": {"orig_filename": "Moroder_Josef-Theodor_1846_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413011}}, {"model": "metainfo.source", "pk": 8519, "fields": {"orig_filename": "Moroder_Rudolf_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413012}}, {"model": "metainfo.source", "pk": 8520, "fields": {"orig_filename": "Moroder_Wilhelm_1877_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413013}}, {"model": "metainfo.source", "pk": 8521, "fields": {"orig_filename": "Morosini_Nikolaus_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413014}}, {"model": "metainfo.source", "pk": 8522, "fields": {"orig_filename": "Morozewicz_Jozef-Marian_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377f.", "author": "", "orig_id": 1413015}}, {"model": "metainfo.source", "pk": 8523, "fields": {"orig_filename": "Moro_Eduard_1790_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374", "author": "", "orig_id": 1412935}}, {"model": "metainfo.source", "pk": 8524, "fields": {"orig_filename": "Moro_Franz_1782_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374f.", "author": "", "orig_id": 1412936}}, {"model": "metainfo.source", "pk": 8525, "fields": {"orig_filename": "Moro_Max_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375", "author": "", "orig_id": 1412937}}, {"model": "metainfo.source", "pk": 8526, "fields": {"orig_filename": "Moro_Oswin_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375", "author": "", "orig_id": 1412938}}, {"model": "metainfo.source", "pk": 8527, "fields": {"orig_filename": "Moro_Thomas_1786_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375f.", "author": "", "orig_id": 1413008}}, {"model": "metainfo.source", "pk": 8528, "fields": {"orig_filename": "Morpurgo_Alessandro_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 378", "author": "", "orig_id": 1413016}}, {"model": "metainfo.source", "pk": 8529, "fields": {"orig_filename": "Morpurgo_Benedetto_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 378f.", "author": "", "orig_id": 1413017}}, {"model": "metainfo.source", "pk": 8530, "fields": {"orig_filename": "Morpurgo_Elio_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379", "author": "", "orig_id": 1413018}}, {"model": "metainfo.source", "pk": 8531, "fields": {"orig_filename": "Morpurgo_Emilio_1836_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379", "author": "", "orig_id": 1413019}}, {"model": "metainfo.source", "pk": 8532, "fields": {"orig_filename": "Morpurgo_Giuseppe-Lazzaro_1759_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380", "author": "", "orig_id": 1413021}}, {"model": "metainfo.source", "pk": 8533, "fields": {"orig_filename": "Morpurgo_Giuseppe_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379f.", "author": "", "orig_id": 1413020}}, {"model": "metainfo.source", "pk": 8534, "fields": {"orig_filename": "Morpurgo_Guido_1868_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380", "author": "", "orig_id": 1413022}}, {"model": "metainfo.source", "pk": 8535, "fields": {"orig_filename": "Morpurgo_Rahel_1790_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380f.", "author": "", "orig_id": 1413023}}, {"model": "metainfo.source", "pk": 8536, "fields": {"orig_filename": "Morpurgo_Salomone_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413024}}, {"model": "metainfo.source", "pk": 8537, "fields": {"orig_filename": "Morres_Wilhelm_1849_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413026}}, {"model": "metainfo.source", "pk": 8538, "fields": {"orig_filename": "Morre_Karl_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413025}}, {"model": "metainfo.source", "pk": 8539, "fields": {"orig_filename": "Morsolin_Bernardo_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381f.", "author": "", "orig_id": 1413027}}, {"model": "metainfo.source", "pk": 8540, "fields": {"orig_filename": "Morstadt_Vincenc_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413028}}, {"model": "metainfo.source", "pk": 8541, "fields": {"orig_filename": "Morvay_Gyoezoe_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413029}}, {"model": "metainfo.source", "pk": 8542, "fields": {"orig_filename": "Mor_Giuseppe_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364f.", "author": "", "orig_id": 1412836}}, {"model": "metainfo.source", "pk": 8543, "fields": {"orig_filename": "Moscheles_Ignaz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f.", "author": "", "orig_id": 1413099}}, {"model": "metainfo.source", "pk": 8544, "fields": {"orig_filename": "Moschen_Lamberto_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 383", "author": "", "orig_id": 1413100}}, {"model": "metainfo.source", "pk": 8545, "fields": {"orig_filename": "Mosche_Alfonz_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413030}}, {"model": "metainfo.source", "pk": 8546, "fields": {"orig_filename": "Moschini_Giannantonio_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 383f.", "author": "", "orig_id": 1413101}}, {"model": "metainfo.source", "pk": 8547, "fields": {"orig_filename": "Moscon_Anton-Albert_1783_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413102}}, {"model": "metainfo.source", "pk": 8548, "fields": {"orig_filename": "Moscotto_Giovanni_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413103}}, {"model": "metainfo.source", "pk": 8549, "fields": {"orig_filename": "Mosel_Ignaz-Franz_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413104}}, {"model": "metainfo.source", "pk": 8550, "fields": {"orig_filename": "Mosel_Katharina_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413105}}, {"model": "metainfo.source", "pk": 8551, "fields": {"orig_filename": "Mosenthal_Salomon-Hermann_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385", "author": "", "orig_id": 1413106}}, {"model": "metainfo.source", "pk": 8552, "fields": {"orig_filename": "Moser-Mossbruch_Ignaz_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413189}}, {"model": "metainfo.source", "pk": 8553, "fields": {"orig_filename": "Moser_Anton_1872_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385f.", "author": "", "orig_id": 1413108}}, {"model": "metainfo.source", "pk": 8554, "fields": {"orig_filename": "Moser_Bedrich_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413109}}, {"model": "metainfo.source", "pk": 8555, "fields": {"orig_filename": "Moser_Emil_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413110}}, {"model": "metainfo.source", "pk": 8556, "fields": {"orig_filename": "Moser_Ernst-Christian_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413111}}, {"model": "metainfo.source", "pk": 8557, "fields": {"orig_filename": "Moser_Franz-Josef_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386f.", "author": "", "orig_id": 1413112}}, {"model": "metainfo.source", "pk": 8558, "fields": {"orig_filename": "Moser_James_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413114}}, {"model": "metainfo.source", "pk": 8559, "fields": {"orig_filename": "Moser_Josef_1779_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413116}}, {"model": "metainfo.source", "pk": 8560, "fields": {"orig_filename": "Moser_Josef_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413117}}, {"model": "metainfo.source", "pk": 8561, "fields": {"orig_filename": "Moser_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387f.", "author": "", "orig_id": 1413118}}, {"model": "metainfo.source", "pk": 8562, "fields": {"orig_filename": "Moser_Karl_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388", "author": "", "orig_id": 1413119}}, {"model": "metainfo.source", "pk": 8563, "fields": {"orig_filename": "Moser_Karl_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388", "author": "", "orig_id": 1413120}}, {"model": "metainfo.source", "pk": 8564, "fields": {"orig_filename": "Moser_Koloman_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388f.", "author": "", "orig_id": 1413121}}, {"model": "metainfo.source", "pk": 8565, "fields": {"orig_filename": "Moser_Ludwig-Karl_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389", "author": "", "orig_id": 1413123}}, {"model": "metainfo.source", "pk": 8566, "fields": {"orig_filename": "Moser_Ludwig_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389", "author": "", "orig_id": 1413122}}, {"model": "metainfo.source", "pk": 8567, "fields": {"orig_filename": "Moser_Maria-Anna_1756_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389f.", "author": "", "orig_id": 1413124}}, {"model": "metainfo.source", "pk": 8568, "fields": {"orig_filename": "Moser_Paul_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413187}}, {"model": "metainfo.source", "pk": 8569, "fields": {"orig_filename": "Moser_Richard_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413188}}, {"model": "metainfo.source", "pk": 8570, "fields": {"orig_filename": "Mosetig-Moorhof_Albert_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 391", "author": "", "orig_id": 1413191}}, {"model": "metainfo.source", "pk": 8571, "fields": {"orig_filename": "Moshamer_Franz-Josef_1800_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 391f.", "author": "", "orig_id": 1413192}}, {"model": "metainfo.source", "pk": 8572, "fields": {"orig_filename": "Mosing_Guido-Konrad_1824_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392", "author": "", "orig_id": 1413195}}, {"model": "metainfo.source", "pk": 8573, "fields": {"orig_filename": "Mosinski-Zagrabvar_Adolf_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392", "author": "", "orig_id": 1413196}}, {"model": "metainfo.source", "pk": 8574, "fields": {"orig_filename": "Moskopp_Kaspar_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392f.", "author": "", "orig_id": 1413197}}, {"model": "metainfo.source", "pk": 8575, "fields": {"orig_filename": "Mosner_Frantisek_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413198}}, {"model": "metainfo.source", "pk": 8576, "fields": {"orig_filename": "Mossbach_Leopold_1735_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413200}}, {"model": "metainfo.source", "pk": 8577, "fields": {"orig_filename": "Mossig_Johann_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413201}}, {"model": "metainfo.source", "pk": 8578, "fields": {"orig_filename": "Mottl-Standhartner_Henriette_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394", "author": "", "orig_id": 1413204}}, {"model": "metainfo.source", "pk": 8579, "fields": {"orig_filename": "Mottl_Felix_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393f.", "author": "", "orig_id": 1413203}}, {"model": "metainfo.source", "pk": 8580, "fields": {"orig_filename": "Moudra_Pavla_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394", "author": "", "orig_id": 1413205}}, {"model": "metainfo.source", "pk": 8581, "fields": {"orig_filename": "Mourek_Vaclav-Emanuel_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394f.", "author": "", "orig_id": 1413206}}, {"model": "metainfo.source", "pk": 8582, "fields": {"orig_filename": "Moy-Sons_Karl-Ernest_1799_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 395", "author": "", "orig_id": 1413207}}, {"model": "metainfo.source", "pk": 8583, "fields": {"orig_filename": "Moysa-Rosochacki_Stefan_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 395", "author": "", "orig_id": 1413208}}, {"model": "metainfo.source", "pk": 8584, "fields": {"orig_filename": "Moyzes_Mikulas_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396", "author": "", "orig_id": 1413280}}, {"model": "metainfo.source", "pk": 8585, "fields": {"orig_filename": "Moyzes_Stefan_1797_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396", "author": "", "orig_id": 1413210}}, {"model": "metainfo.source", "pk": 8586, "fields": {"orig_filename": "Mozart_Franz-Xaver-Wolfgang_1791_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396f.", "author": "", "orig_id": 1413281}}, {"model": "metainfo.source", "pk": 8587, "fields": {"orig_filename": "Mozart_Joseph_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397", "author": "", "orig_id": 1413282}}, {"model": "metainfo.source", "pk": 8588, "fields": {"orig_filename": "Mozart_Maria-Anna_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397", "author": "", "orig_id": 1413283}}, {"model": "metainfo.source", "pk": 8589, "fields": {"orig_filename": "Mracek_Franz_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397f.", "author": "", "orig_id": 1413284}}, {"model": "metainfo.source", "pk": 8590, "fields": {"orig_filename": "Mraczek_Joseph-Gustav_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413285}}, {"model": "metainfo.source", "pk": 8591, "fields": {"orig_filename": "Mrazovic_Avram_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413287}}, {"model": "metainfo.source", "pk": 8592, "fields": {"orig_filename": "Mrazovic_Ladislav_1849_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413288}}, {"model": "metainfo.source", "pk": 8593, "fields": {"orig_filename": "Mrazovic_Matija_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413289}}, {"model": "metainfo.source", "pk": 8594, "fields": {"orig_filename": "Mraz_Josef_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413286}}, {"model": "metainfo.source", "pk": 8595, "fields": {"orig_filename": "Mrstik_Alois_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413290}}, {"model": "metainfo.source", "pk": 8596, "fields": {"orig_filename": "Mrstik_Vilem_1863_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400", "author": "", "orig_id": 1413291}}, {"model": "metainfo.source", "pk": 8597, "fields": {"orig_filename": "Muchar-Ried_Albert_1786_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 402f.", "author": "", "orig_id": 1413296}}, {"model": "metainfo.source", "pk": 8598, "fields": {"orig_filename": "Mucha_Alfons_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 401f.", "author": "", "orig_id": 1413294}}, {"model": "metainfo.source", "pk": 8599, "fields": {"orig_filename": "Mucha_Viktor_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 402", "author": "", "orig_id": 1413295}}, {"model": "metainfo.source", "pk": 8600, "fields": {"orig_filename": "Much_Matthaeus_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400", "author": "", "orig_id": 1413292}}, {"model": "metainfo.source", "pk": 8601, "fields": {"orig_filename": "Much_Rudolf_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400f.", "author": "", "orig_id": 1413293}}, {"model": "metainfo.source", "pk": 8602, "fields": {"orig_filename": "Muczkowski_Jozef-Jakub_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 403f.", "author": "", "orig_id": 1413298}}, {"model": "metainfo.source", "pk": 8603, "fields": {"orig_filename": "Muczkowski_Jozef_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 403", "author": "", "orig_id": 1413297}}, {"model": "metainfo.source", "pk": 8604, "fields": {"orig_filename": "Mudrich_Andreas_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413299}}, {"model": "metainfo.source", "pk": 8605, "fields": {"orig_filename": "Mudrony_Soma_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413300}}, {"model": "metainfo.source", "pk": 8606, "fields": {"orig_filename": "Mueck_Alfred_1912_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413371}}, {"model": "metainfo.source", "pk": 8607, "fields": {"orig_filename": "Mueck_Marie_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404f.", "author": "", "orig_id": 1413372}}, {"model": "metainfo.source", "pk": 8608, "fields": {"orig_filename": "Mueck_Maximilian_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 405", "author": "", "orig_id": 1413373}}, {"model": "metainfo.source", "pk": 8609, "fields": {"orig_filename": "Muehlbacher_Engelbert_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 405f.", "author": "", "orig_id": 1413374}}, {"model": "metainfo.source", "pk": 8610, "fields": {"orig_filename": "Muehlbacher_Josef_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413375}}, {"model": "metainfo.source", "pk": 8611, "fields": {"orig_filename": "Muehlberger_Karl_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413376}}, {"model": "metainfo.source", "pk": 8612, "fields": {"orig_filename": "Moedlinger_Josef_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338", "author": "", "orig_id": 1412548}}, {"model": "metainfo.source", "pk": 8613, "fields": {"orig_filename": "Moeller_Josef_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338f.", "author": "", "orig_id": 1412549}}, {"model": "metainfo.source", "pk": 8614, "fields": {"orig_filename": "Moeltner_Zeno_1852_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339", "author": "", "orig_id": 1412550}}, {"model": "metainfo.source", "pk": 8615, "fields": {"orig_filename": "Moering_Karl_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339", "author": "", "orig_id": 1412551}}, {"model": "metainfo.source", "pk": 8616, "fields": {"orig_filename": "Moerk-Moerkenstein_Alexander_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339f.", "author": "", "orig_id": 1412552}}, {"model": "metainfo.source", "pk": 8617, "fields": {"orig_filename": "Moerth_Johann_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412554}}, {"model": "metainfo.source", "pk": 8618, "fields": {"orig_filename": "Moerzinger_Johann_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412555}}, {"model": "metainfo.source", "pk": 8619, "fields": {"orig_filename": "Moeser_Karl_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340f.", "author": "", "orig_id": 1412556}}, {"model": "metainfo.source", "pk": 8620, "fields": {"orig_filename": "Moeser_Wilfried_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341", "author": "", "orig_id": 1412557}}, {"model": "metainfo.source", "pk": 8621, "fields": {"orig_filename": "Moessl_Johannes-Chrysostomus_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341", "author": "", "orig_id": 1412558}}, {"model": "metainfo.source", "pk": 8622, "fields": {"orig_filename": "Moessl_Roman_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341f.", "author": "", "orig_id": 1412559}}, {"model": "metainfo.source", "pk": 8623, "fields": {"orig_filename": "Moessmer_Josef_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412560}}, {"model": "metainfo.source", "pk": 8624, "fields": {"orig_filename": "Moga_Johann_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412561}}, {"model": "metainfo.source", "pk": 8625, "fields": {"orig_filename": "Moga_Vasile_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412562}}, {"model": "metainfo.source", "pk": 8626, "fields": {"orig_filename": "Moggioli_Umberto_1886_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342f.", "author": "", "orig_id": 1412563}}, {"model": "metainfo.source", "pk": 8627, "fields": {"orig_filename": "Mohaupt_Franz_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412564}}, {"model": "metainfo.source", "pk": 8628, "fields": {"orig_filename": "Mohl_Adolf_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412565}}, {"model": "metainfo.source", "pk": 8629, "fields": {"orig_filename": "Mohn_Ludwig_1797_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412566}}, {"model": "metainfo.source", "pk": 8630, "fields": {"orig_filename": "Mohorovicic_Andrija_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343f.", "author": "", "orig_id": 1412567}}, {"model": "metainfo.source", "pk": 8631, "fields": {"orig_filename": "Mohr_Abraham-Mendel_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 344", "author": "", "orig_id": 1412568}}, {"model": "metainfo.source", "pk": 8632, "fields": {"orig_filename": "Mohr_Josef_1792_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 344f.", "author": "", "orig_id": 1412569}}, {"model": "metainfo.source", "pk": 8633, "fields": {"orig_filename": "Mohs_Friedrich_1773_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 345", "author": "", "orig_id": 1412570}}, {"model": "metainfo.source", "pk": 8634, "fields": {"orig_filename": "Mohylnyckyj_Antin-Ljubyc_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 345f.", "author": "", "orig_id": 1412637}}, {"model": "metainfo.source", "pk": 8635, "fields": {"orig_filename": "Moise_Giovanni_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 346", "author": "", "orig_id": 1412638}}, {"model": "metainfo.source", "pk": 8636, "fields": {"orig_filename": "Moissi_Alexander_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 346f.", "author": "", "orig_id": 1412639}}, {"model": "metainfo.source", "pk": 8637, "fields": {"orig_filename": "Mojsisovics-Mojsvar_August_1848_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 347", "author": "", "orig_id": 1412640}}, {"model": "metainfo.source", "pk": 8638, "fields": {"orig_filename": "Mojsisovics-Mojsvar_Georg_1799_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 247f.", "author": "", "orig_id": 1412641}}, {"model": "metainfo.source", "pk": 8639, "fields": {"orig_filename": "Mojsisovics-Mojsvar_Johann-August-Edmund_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 348f.", "author": "", "orig_id": 1412642}}, {"model": "metainfo.source", "pk": 8640, "fields": {"orig_filename": "Moklowski_Kazimierz_1869_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349", "author": "", "orig_id": 1412643}}, {"model": "metainfo.source", "pk": 8641, "fields": {"orig_filename": "Mokry_Endre_1827_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349", "author": "", "orig_id": 1412644}}, {"model": "metainfo.source", "pk": 8642, "fields": {"orig_filename": "Mokry_Otakar_1853_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349f.", "author": "", "orig_id": 1412645}}, {"model": "metainfo.source", "pk": 8643, "fields": {"orig_filename": "Mokry_Samuel_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412646}}, {"model": "metainfo.source", "pk": 8644, "fields": {"orig_filename": "Molden_Berthold_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412647}}, {"model": "metainfo.source", "pk": 8645, "fields": {"orig_filename": "Moldovan_Gergely_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412648}}, {"model": "metainfo.source", "pk": 8646, "fields": {"orig_filename": "Moldovan_Ioan-Micu_1833_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350f.", "author": "", "orig_id": 1412649}}, {"model": "metainfo.source", "pk": 8647, "fields": {"orig_filename": "Molin_Johann_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351", "author": "", "orig_id": 1412650}}, {"model": "metainfo.source", "pk": 8648, "fields": {"orig_filename": "Molisch_Hans_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351", "author": "", "orig_id": 1412651}}, {"model": "metainfo.source", "pk": 8649, "fields": {"orig_filename": "Molitor_Simon_1766_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351f.", "author": "", "orig_id": 1412652}}, {"model": "metainfo.source", "pk": 8650, "fields": {"orig_filename": "Mollinary-Monte-Pastello_Anton_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 354f.", "author": "", "orig_id": 1412732}}, {"model": "metainfo.source", "pk": 8651, "fields": {"orig_filename": "Mollo_Tranquillo_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355", "author": "", "orig_id": 1412733}}, {"model": "metainfo.source", "pk": 8652, "fields": {"orig_filename": "Moll_Franz_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352", "author": "", "orig_id": 1412653}}, {"model": "metainfo.source", "pk": 8653, "fields": {"orig_filename": "Moll_Franz_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352", "author": "", "orig_id": 1412654}}, {"model": "metainfo.source", "pk": 8654, "fields": {"orig_filename": "Moll_Johann_1797_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352f.", "author": "", "orig_id": 1412655}}, {"model": "metainfo.source", "pk": 8655, "fields": {"orig_filename": "Moll_Karl-Ehrenbert_1760_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 353f.", "author": "", "orig_id": 1412657}}, {"model": "metainfo.source", "pk": 8656, "fields": {"orig_filename": "Moll_Karl_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 353", "author": "", "orig_id": 1412656}}, {"model": "metainfo.source", "pk": 8657, "fields": {"orig_filename": "Moll_Leopold_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 354", "author": "", "orig_id": 1412658}}, {"model": "metainfo.source", "pk": 8658, "fields": {"orig_filename": "Molnar-Kapos_Viktor_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357f.", "author": "", "orig_id": 1412743}}, {"model": "metainfo.source", "pk": 8659, "fields": {"orig_filename": "Molnar_Aladar_1839_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355", "author": "", "orig_id": 1412734}}, {"model": "metainfo.source", "pk": 8660, "fields": {"orig_filename": "Molnar_Antal_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355f.", "author": "", "orig_id": 1412735}}, {"model": "metainfo.source", "pk": 8661, "fields": {"orig_filename": "Molnar_Daniel-Bohumil_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412736}}, {"model": "metainfo.source", "pk": 8662, "fields": {"orig_filename": "Molnar_Daniel-Bohumil_1856_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412737}}, {"model": "metainfo.source", "pk": 8663, "fields": {"orig_filename": "Molnar_Gyoergy_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412738}}, {"model": "metainfo.source", "pk": 8664, "fields": {"orig_filename": "Molnar_Janos_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412740}}, {"model": "metainfo.source", "pk": 8665, "fields": {"orig_filename": "Molnar_Jan_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356f.", "author": "", "orig_id": 1412739}}, {"model": "metainfo.source", "pk": 8666, "fields": {"orig_filename": "Molnar_Jozsef_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412741}}, {"model": "metainfo.source", "pk": 8667, "fields": {"orig_filename": "Molnar_Laszlo_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412742}}, {"model": "metainfo.source", "pk": 8668, "fields": {"orig_filename": "Moltke_Maximlian-Leopold_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358", "author": "", "orig_id": 1412744}}, {"model": "metainfo.source", "pk": 8669, "fields": {"orig_filename": "Mondel_Friedrich_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358", "author": "", "orig_id": 1412745}}, {"model": "metainfo.source", "pk": 8670, "fields": {"orig_filename": "Mone_Albert_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358f.", "author": "", "orig_id": 1412746}}, {"model": "metainfo.source", "pk": 8671, "fields": {"orig_filename": "Monico_Jacopo_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412748}}, {"model": "metainfo.source", "pk": 8672, "fields": {"orig_filename": "Monschein_Johanna_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1980867}}, {"model": "metainfo.source", "pk": 8673, "fields": {"orig_filename": "Monsorno_Gian-Maria_1768_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412749}}, {"model": "metainfo.source", "pk": 8674, "fields": {"orig_filename": "Montag_Antonie_1835_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412750}}, {"model": "metainfo.source", "pk": 8675, "fields": {"orig_filename": "Montecuccoli-Erri_Rudolf_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359f.", "author": "", "orig_id": 1412751}}, {"model": "metainfo.source", "pk": 8676, "fields": {"orig_filename": "Montecuccoli-Laderchi_Albert_1802_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 360", "author": "", "orig_id": 1412752}}, {"model": "metainfo.source", "pk": 8677, "fields": {"orig_filename": "Montel-Treuenfest_Johannes_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 360f.", "author": "", "orig_id": 1412753}}, {"model": "metainfo.source", "pk": 8678, "fields": {"orig_filename": "Montenuovo_Alfred_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 361", "author": "", "orig_id": 1412754}}, {"model": "metainfo.source", "pk": 8679, "fields": {"orig_filename": "Montenuovo_Wilhelm-Albrecht_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 361f.", "author": "", "orig_id": 1412825}}, {"model": "metainfo.source", "pk": 8680, "fields": {"orig_filename": "Monti_Alessandro_1818_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362", "author": "", "orig_id": 1412826}}, {"model": "metainfo.source", "pk": 8681, "fields": {"orig_filename": "Monti_Alois_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362", "author": "", "orig_id": 1412827}}, {"model": "metainfo.source", "pk": 8682, "fields": {"orig_filename": "Monti_Lovro_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362f.", "author": "", "orig_id": 1412828}}, {"model": "metainfo.source", "pk": 8683, "fields": {"orig_filename": "Montleart_Wilhelmine_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412829}}, {"model": "metainfo.source", "pk": 8684, "fields": {"orig_filename": "Montlong_Oskar_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412830}}, {"model": "metainfo.source", "pk": 8685, "fields": {"orig_filename": "Montluisant_Bruno_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412831}}, {"model": "metainfo.source", "pk": 8686, "fields": {"orig_filename": "Montluisant_Johann_1768_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363f.", "author": "", "orig_id": 1412832}}, {"model": "metainfo.source", "pk": 8687, "fields": {"orig_filename": "Moor-Felsoeoer_Anna_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412833}}, {"model": "metainfo.source", "pk": 8688, "fields": {"orig_filename": "Moosbrugger_Gebhard_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412834}}, {"model": "metainfo.source", "pk": 8689, "fields": {"orig_filename": "Moosmann_Franz-Xaver_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412835}}, {"model": "metainfo.source", "pk": 8690, "fields": {"orig_filename": "Mor-Sunnegg-Morberg_Therese_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365", "author": "", "orig_id": 1412837}}, {"model": "metainfo.source", "pk": 8691, "fields": {"orig_filename": "Mor-Sunnegg-Morberg_Viktor-Max_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365", "author": "", "orig_id": 1412838}}, {"model": "metainfo.source", "pk": 8692, "fields": {"orig_filename": "Moraczewski_Jedrzej-Edward_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365f.", "author": "", "orig_id": 1412839}}, {"model": "metainfo.source", "pk": 8693, "fields": {"orig_filename": "Morariu-Andrievici_Constantin_1835_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367", "author": "", "orig_id": 1412843}}, {"model": "metainfo.source", "pk": 8694, "fields": {"orig_filename": "Morariu-Andrievici_Silvestru_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367f.", "author": "", "orig_id": 1412844}}, {"model": "metainfo.source", "pk": 8695, "fields": {"orig_filename": "Morariu_Constantin_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 366f.", "author": "", "orig_id": 1412841}}, {"model": "metainfo.source", "pk": 8696, "fields": {"orig_filename": "Morariu_Victor_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367", "author": "", "orig_id": 1412842}}, {"model": "metainfo.source", "pk": 8697, "fields": {"orig_filename": "Moravcsik_Ernoe-Emil_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412845}}, {"model": "metainfo.source", "pk": 8698, "fields": {"orig_filename": "Morawetz-Klienfeld_Otto_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412915}}, {"model": "metainfo.source", "pk": 8699, "fields": {"orig_filename": "Morawitz_Karl_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412916}}, {"model": "metainfo.source", "pk": 8700, "fields": {"orig_filename": "Morawitz_Moritz_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412917}}, {"model": "metainfo.source", "pk": 8701, "fields": {"orig_filename": "Morawski_Kazimierz_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412918}}, {"model": "metainfo.source", "pk": 8702, "fields": {"orig_filename": "Morawski_Marian_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412919}}, {"model": "metainfo.source", "pk": 8703, "fields": {"orig_filename": "Morawski_Seweryn-Antoni_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369f.", "author": "", "orig_id": 1412920}}, {"model": "metainfo.source", "pk": 8704, "fields": {"orig_filename": "Morawski_Szczesny_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370", "author": "", "orig_id": 1412921}}, {"model": "metainfo.source", "pk": 8705, "fields": {"orig_filename": "Morawski_Theodor_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370", "author": "", "orig_id": 1412922}}, {"model": "metainfo.source", "pk": 8706, "fields": {"orig_filename": "Morawski_Zdzislaw_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370f.", "author": "", "orig_id": 1412923}}, {"model": "metainfo.source", "pk": 8707, "fields": {"orig_filename": "Moreau_Karl_1758_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371", "author": "", "orig_id": 1412924}}, {"model": "metainfo.source", "pk": 8708, "fields": {"orig_filename": "Moreau_Nikolaus_1805_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371", "author": "", "orig_id": 1412925}}, {"model": "metainfo.source", "pk": 8709, "fields": {"orig_filename": "Morelli_Giovanni_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371f.", "author": "", "orig_id": 1412926}}, {"model": "metainfo.source", "pk": 8710, "fields": {"orig_filename": "Morelli_Gusztav_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412927}}, {"model": "metainfo.source", "pk": 8711, "fields": {"orig_filename": "Morelly_Franz_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412928}}, {"model": "metainfo.source", "pk": 8712, "fields": {"orig_filename": "Morgenbesser_Aleksander_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412929}}, {"model": "metainfo.source", "pk": 8713, "fields": {"orig_filename": "Miller-Aichholz_August_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303f.", "author": "", "orig_id": 1413633}}, {"model": "metainfo.source", "pk": 8714, "fields": {"orig_filename": "Miller-Aichholz_Josef-Maria_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 304", "author": "", "orig_id": 1413634}}, {"model": "metainfo.source", "pk": 8715, "fields": {"orig_filename": "Miller-Aichholz_Viktor_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 304f.", "author": "", "orig_id": 1413635}}, {"model": "metainfo.source", "pk": 8716, "fields": {"orig_filename": "Miller-Aichholz_Vinzenz_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 305", "author": "", "orig_id": 1411336}}, {"model": "metainfo.source", "pk": 8717, "fields": {"orig_filename": "Miller-Hauenfels_Albert_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 305f.", "author": "", "orig_id": 1413636}}, {"model": "metainfo.source", "pk": 8718, "fields": {"orig_filename": "Milleret_Jozef_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306", "author": "", "orig_id": 1413637}}, {"model": "metainfo.source", "pk": 8719, "fields": {"orig_filename": "Miller_Jakob-Ferdinand_1749_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 302f.", "author": "", "orig_id": 1413629}}, {"model": "metainfo.source", "pk": 8720, "fields": {"orig_filename": "Miller_Josef-Georg_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413630}}, {"model": "metainfo.source", "pk": 8721, "fields": {"orig_filename": "Miller_Josef-Kassian_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413631}}, {"model": "metainfo.source", "pk": 8722, "fields": {"orig_filename": "Miller_Martin_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413632}}, {"model": "metainfo.source", "pk": 8723, "fields": {"orig_filename": "Millesi_Johann-Matthias_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306", "author": "", "orig_id": 1413703}}, {"model": "metainfo.source", "pk": 8724, "fields": {"orig_filename": "Mille_Ernst_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300", "author": "", "orig_id": 1413623}}, {"model": "metainfo.source", "pk": 8725, "fields": {"orig_filename": "Millinkovic_Theodor_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306f.", "author": "", "orig_id": 1413704}}, {"model": "metainfo.source", "pk": 8726, "fields": {"orig_filename": "Milloecker_Karl_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307", "author": "", "orig_id": 1413705}}, {"model": "metainfo.source", "pk": 8727, "fields": {"orig_filename": "Milobar_Fran_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308", "author": "", "orig_id": 1413707}}, {"model": "metainfo.source", "pk": 8728, "fields": {"orig_filename": "Milosevic_Josip_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308", "author": "", "orig_id": 1413709}}, {"model": "metainfo.source", "pk": 8729, "fields": {"orig_filename": "Milota_Albert_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308f.", "author": "", "orig_id": 1413710}}, {"model": "metainfo.source", "pk": 8730, "fields": {"orig_filename": "Milski_Aleksander_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413712}}, {"model": "metainfo.source", "pk": 8731, "fields": {"orig_filename": "Miltner_Frantisek-Karel_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413713}}, {"model": "metainfo.source", "pk": 8732, "fields": {"orig_filename": "Miltner_Jan-Bohuslav_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413714}}, {"model": "metainfo.source", "pk": 8733, "fields": {"orig_filename": "Miltner_Jindrich-Otakar_1828_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413715}}, {"model": "metainfo.source", "pk": 8734, "fields": {"orig_filename": "Minarelli-Fitzgerald_Alexander_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309f.", "author": "", "orig_id": 1413716}}, {"model": "metainfo.source", "pk": 8735, "fields": {"orig_filename": "Minarik_Stanislav_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 310", "author": "", "orig_id": 1413717}}, {"model": "metainfo.source", "pk": 8736, "fields": {"orig_filename": "Mingazzi-Modigliano_Eduard_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 310f.", "author": "", "orig_id": 1413718}}, {"model": "metainfo.source", "pk": 8737, "fields": {"orig_filename": "Minichthaler_Joseph_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413719}}, {"model": "metainfo.source", "pk": 8738, "fields": {"orig_filename": "Miniussi_Lorenzo_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413720}}, {"model": "metainfo.source", "pk": 8739, "fields": {"orig_filename": "Mink_Therese_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413721}}, {"model": "metainfo.source", "pk": 8740, "fields": {"orig_filename": "Minor_Jakob_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311f.", "author": "", "orig_id": 1413722}}, {"model": "metainfo.source", "pk": 8741, "fields": {"orig_filename": "Minutillo_Franz_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 312f.", "author": "", "orig_id": 1413723}}, {"model": "metainfo.source", "pk": 8742, "fields": {"orig_filename": "Miodonski_Adam-Stefan_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 313", "author": "", "orig_id": 1413724}}, {"model": "metainfo.source", "pk": 8743, "fields": {"orig_filename": "Mioni_Ugo_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 313f.", "author": "", "orig_id": 1413725}}, {"model": "metainfo.source", "pk": 8744, "fields": {"orig_filename": "Mirani_Johann-Heinrich_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314", "author": "", "orig_id": 1413726}}, {"model": "metainfo.source", "pk": 8745, "fields": {"orig_filename": "Mirani_Therese_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314", "author": "", "orig_id": 1413796}}, {"model": "metainfo.source", "pk": 8746, "fields": {"orig_filename": "Mircse-Baratos_Janos_1834_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314f.", "author": "", "orig_id": 1413797}}, {"model": "metainfo.source", "pk": 8747, "fields": {"orig_filename": "Miricka_August_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413798}}, {"model": "metainfo.source", "pk": 8748, "fields": {"orig_filename": "Mirijovsky_Emanuel_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413799}}, {"model": "metainfo.source", "pk": 8749, "fields": {"orig_filename": "Mirtl_Franz_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413800}}, {"model": "metainfo.source", "pk": 8750, "fields": {"orig_filename": "Misar_Olga_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2186744}}, {"model": "metainfo.source", "pk": 8751, "fields": {"orig_filename": "Mischler_Ernst_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315f.", "author": "", "orig_id": 1413801}}, {"model": "metainfo.source", "pk": 8752, "fields": {"orig_filename": "Misel_Jadwiga-Helena_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 316f.", "author": "", "orig_id": 1413802}}, {"model": "metainfo.source", "pk": 8753, "fields": {"orig_filename": "Mises_Herman_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 317", "author": "", "orig_id": 1413804}}, {"model": "metainfo.source", "pk": 8754, "fields": {"orig_filename": "Mises_Majer-Jerachmiel_1801_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 317f.", "author": "", "orig_id": 1413806}}, {"model": "metainfo.source", "pk": 8755, "fields": {"orig_filename": "Misic_Alojzije_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318", "author": "", "orig_id": 1413808}}, {"model": "metainfo.source", "pk": 8756, "fields": {"orig_filename": "Misik_Stefan_1843_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318", "author": "", "orig_id": 1413809}}, {"model": "metainfo.source", "pk": 8757, "fields": {"orig_filename": "Misiolek_Leon_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318f.", "author": "", "orig_id": 1413810}}, {"model": "metainfo.source", "pk": 8758, "fields": {"orig_filename": "Miskatovic_Josip_1836_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319", "author": "", "orig_id": 1413811}}, {"model": "metainfo.source", "pk": 8759, "fields": {"orig_filename": "Miskov_Andjeo-Marija_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319", "author": "", "orig_id": 1411340}}, {"model": "metainfo.source", "pk": 8760, "fields": {"orig_filename": "Mislej_Jozef-Peter_1761_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319f.", "author": "", "orig_id": 1413812}}, {"model": "metainfo.source", "pk": 8761, "fields": {"orig_filename": "Missia_Jakob_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413813}}, {"model": "metainfo.source", "pk": 8762, "fields": {"orig_filename": "Missong_Alexander_1837_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413815}}, {"model": "metainfo.source", "pk": 8763, "fields": {"orig_filename": "Misson_Josef_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413814}}, {"model": "metainfo.source", "pk": 8764, "fields": {"orig_filename": "Mitis_Georg_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320f.", "author": "", "orig_id": 1413816}}, {"model": "metainfo.source", "pk": 8765, "fields": {"orig_filename": "Mitis_Heinrich_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321", "author": "", "orig_id": 1413817}}, {"model": "metainfo.source", "pk": 8766, "fields": {"orig_filename": "Mitis_Ignaz_1771_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321", "author": "", "orig_id": 1413818}}, {"model": "metainfo.source", "pk": 8767, "fields": {"orig_filename": "Mitis_Silvio_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321f.", "author": "", "orig_id": 1413819}}, {"model": "metainfo.source", "pk": 8768, "fields": {"orig_filename": "Mitlacher_Wilhelm_1872_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322", "author": "", "orig_id": 1413887}}, {"model": "metainfo.source", "pk": 8769, "fields": {"orig_filename": "Mitrofanovici_Vasile_1831_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322", "author": "", "orig_id": 1413888}}, {"model": "metainfo.source", "pk": 8770, "fields": {"orig_filename": "Mitrovics_Gyula_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413890}}, {"model": "metainfo.source", "pk": 8771, "fields": {"orig_filename": "Mitrovic_Andro_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322f.", "author": "", "orig_id": 1413889}}, {"model": "metainfo.source", "pk": 8772, "fields": {"orig_filename": "Mitrovsky_Milan-Thomka_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413891}}, {"model": "metainfo.source", "pk": 8773, "fields": {"orig_filename": "Mitscha-Maerheim_Josef_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413892}}, {"model": "metainfo.source", "pk": 8774, "fields": {"orig_filename": "Mitteis_Heinrich_1889_1952.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1462886}}, {"model": "metainfo.source", "pk": 8775, "fields": {"orig_filename": "Mitteis_Ludwig_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323f.", "author": "", "orig_id": 1413893}}, {"model": "metainfo.source", "pk": 8776, "fields": {"orig_filename": "Mittell_Karl-Josef_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324", "author": "", "orig_id": 1413894}}, {"model": "metainfo.source", "pk": 8777, "fields": {"orig_filename": "Mitterberger_Karl-Philipp_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324f.", "author": "", "orig_id": 1413895}}, {"model": "metainfo.source", "pk": 8778, "fields": {"orig_filename": "Mitterer_Franz-Xaver_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324f.", "author": "", "orig_id": 1411339}}, {"model": "metainfo.source", "pk": 8779, "fields": {"orig_filename": "Mitterer_Ignaz_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 325", "author": "", "orig_id": 1413896}}, {"model": "metainfo.source", "pk": 8780, "fields": {"orig_filename": "Mitterhofer_Leopold_1761_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 325f.", "author": "", "orig_id": 1413897}}, {"model": "metainfo.source", "pk": 8781, "fields": {"orig_filename": "Mitterhofer_Peter_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 326", "author": "", "orig_id": 1413898}}, {"model": "metainfo.source", "pk": 8782, "fields": {"orig_filename": "Mitterrutzner_Johannes-Chrysostomus_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 326f.", "author": "", "orig_id": 1413899}}, {"model": "metainfo.source", "pk": 8783, "fields": {"orig_filename": "Mitterwurzer_Anton-Friedrich_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 327", "author": "", "orig_id": 1413900}}, {"model": "metainfo.source", "pk": 8784, "fields": {"orig_filename": "Mitterwurzer_Anton-Georg_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 327f.", "author": "", "orig_id": 1413901}}, {"model": "metainfo.source", "pk": 8785, "fields": {"orig_filename": "Mitterwurzer_Wilhelmine_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 328", "author": "", "orig_id": 1413902}}, {"model": "metainfo.source", "pk": 8786, "fields": {"orig_filename": "Mittler_Johann_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 328", "author": "", "orig_id": 1413903}}, {"model": "metainfo.source", "pk": 8787, "fields": {"orig_filename": "Mittrowsky-Mittrowitz-Nemischl_Anton-Friedrich_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413904}}, {"model": "metainfo.source", "pk": 8788, "fields": {"orig_filename": "Mittrowsky-Mittrowitz-Nemischl_Josef_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413905}}, {"model": "metainfo.source", "pk": 8789, "fields": {"orig_filename": "Mitzka_Franz-Xaver_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413906}}, {"model": "metainfo.source", "pk": 8790, "fields": {"orig_filename": "Mladenovic_Georg_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329f.", "author": "", "orig_id": 1413907}}, {"model": "metainfo.source", "pk": 8791, "fields": {"orig_filename": "Mlakar_Ivan_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330", "author": "", "orig_id": 1413908}}, {"model": "metainfo.source", "pk": 8792, "fields": {"orig_filename": "Mlcoch_Melichar_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330", "author": "", "orig_id": 1413909}}, {"model": "metainfo.source", "pk": 8793, "fields": {"orig_filename": "Mlodnicka_Wanda_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330f.", "author": "", "orig_id": 1413910}}, {"model": "metainfo.source", "pk": 8794, "fields": {"orig_filename": "Mlodnicki_Karol_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 331", "author": "", "orig_id": 1412457}}, {"model": "metainfo.source", "pk": 8795, "fields": {"orig_filename": "Mlynek_Ludwik_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 331f.", "author": "", "orig_id": 1412458}}, {"model": "metainfo.source", "pk": 8796, "fields": {"orig_filename": "Moar_Francesco_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332", "author": "", "orig_id": 1412460}}, {"model": "metainfo.source", "pk": 8797, "fields": {"orig_filename": "Mochnacki_Bazyli_1777_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332f.", "author": "", "orig_id": 1412461}}, {"model": "metainfo.source", "pk": 8798, "fields": {"orig_filename": "Mochnacki_Edmund_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333", "author": "", "orig_id": 1412462}}, {"model": "metainfo.source", "pk": 8799, "fields": {"orig_filename": "Mocker_Ferdinand_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333", "author": "", "orig_id": 1412463}}, {"model": "metainfo.source", "pk": 8800, "fields": {"orig_filename": "Mocker_Josef_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333f.", "author": "", "orig_id": 1412464}}, {"model": "metainfo.source", "pk": 8801, "fields": {"orig_filename": "Mocko_Jan_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334", "author": "", "orig_id": 1412465}}, {"model": "metainfo.source", "pk": 8802, "fields": {"orig_filename": "Mocnik_Franz_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334", "author": "", "orig_id": 1412466}}, {"model": "metainfo.source", "pk": 8803, "fields": {"orig_filename": "Mocsary-Bocsar_Lajos_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335", "author": "", "orig_id": 1412468}}, {"model": "metainfo.source", "pk": 8804, "fields": {"orig_filename": "Mocsary_Sandor_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334f.", "author": "", "orig_id": 1412467}}, {"model": "metainfo.source", "pk": 8805, "fields": {"orig_filename": "Moczik_Felizian-Josef_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335", "author": "", "orig_id": 1412469}}, {"model": "metainfo.source", "pk": 8806, "fields": {"orig_filename": "Modell_Elisabeth_1820_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335f.", "author": "", "orig_id": 1412470}}, {"model": "metainfo.source", "pk": 8807, "fields": {"orig_filename": "Modena_Giacomo_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 336", "author": "", "orig_id": 1412471}}, {"model": "metainfo.source", "pk": 8808, "fields": {"orig_filename": "Modena_Gustavo_1803_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 336f.", "author": "", "orig_id": 1412472}}, {"model": "metainfo.source", "pk": 8809, "fields": {"orig_filename": "Modl_Josef_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412473}}, {"model": "metainfo.source", "pk": 8810, "fields": {"orig_filename": "Modl_Viktoria_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412474}}, {"model": "metainfo.source", "pk": 8811, "fields": {"orig_filename": "Modrinjak_Stefan_1774_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412475}}, {"model": "metainfo.source", "pk": 8812, "fields": {"orig_filename": "Moeckeln_Karl_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337f.", "author": "", "orig_id": 1412477}}, {"model": "metainfo.source", "pk": 8813, "fields": {"orig_filename": "Moeckesch_Martin-Samuel_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338", "author": "", "orig_id": 1412478}}, {"model": "metainfo.source", "pk": 8814, "fields": {"orig_filename": "Micholitsch_Adalbert_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265", "author": "", "orig_id": 1413179}}, {"model": "metainfo.source", "pk": 8815, "fields": {"orig_filename": "Micklitz_Julius_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 266", "author": "", "orig_id": 1413181}}, {"model": "metainfo.source", "pk": 8816, "fields": {"orig_filename": "Micklitz_Robert_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 266f.", "author": "", "orig_id": 1413182}}, {"model": "metainfo.source", "pk": 8817, "fields": {"orig_filename": "Micklitz_Theodor_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 267", "author": "", "orig_id": 1413183}}, {"model": "metainfo.source", "pk": 8818, "fields": {"orig_filename": "Mickl_Johann_1893_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265f.", "author": "", "orig_id": 1413180}}, {"model": "metainfo.source", "pk": 8819, "fields": {"orig_filename": "Micskey_Imre_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 267f.", "author": "", "orig_id": 1413184}}, {"model": "metainfo.source", "pk": 8820, "fields": {"orig_filename": "Miczynski_Kazimierz_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268", "author": "", "orig_id": 1413185}}, {"model": "metainfo.source", "pk": 8821, "fields": {"orig_filename": "Midelburg_Leopold_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268", "author": "", "orig_id": 1413186}}, {"model": "metainfo.source", "pk": 8822, "fields": {"orig_filename": "Mielichhofer_Alphons_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268f.", "author": "", "orig_id": 1413258}}, {"model": "metainfo.source", "pk": 8823, "fields": {"orig_filename": "Mielichhofer_Ludwig_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269", "author": "", "orig_id": 1413259}}, {"model": "metainfo.source", "pk": 8824, "fields": {"orig_filename": "Mielichhofer_Mathias_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269", "author": "", "orig_id": 1413260}}, {"model": "metainfo.source", "pk": 8825, "fields": {"orig_filename": "Mieroszewski_Stanislaw_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269f.", "author": "", "orig_id": 1413261}}, {"model": "metainfo.source", "pk": 8826, "fields": {"orig_filename": "Miesbach_Alois_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 270f.", "author": "", "orig_id": 1413262}}, {"model": "metainfo.source", "pk": 8827, "fields": {"orig_filename": "Mieses_Fabius_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 271", "author": "", "orig_id": 1413263}}, {"model": "metainfo.source", "pk": 8828, "fields": {"orig_filename": "Mieses_Jehuda-Lejb_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 271f.", "author": "", "orig_id": 1413264}}, {"model": "metainfo.source", "pk": 8829, "fields": {"orig_filename": "Mieses_Mathias_1885_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413265}}, {"model": "metainfo.source", "pk": 8830, "fields": {"orig_filename": "Miesowicz_Erwin_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413266}}, {"model": "metainfo.source", "pk": 8831, "fields": {"orig_filename": "Miessl-Treuenstadt_Felix_1778_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413268}}, {"model": "metainfo.source", "pk": 8832, "fields": {"orig_filename": "Miess_Friedrich_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413267}}, {"model": "metainfo.source", "pk": 8833, "fields": {"orig_filename": "Miethke_Otto-Maria_1881_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413269}}, {"model": "metainfo.source", "pk": 8834, "fields": {"orig_filename": "Mietzl-Stende_August_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413270}}, {"model": "metainfo.source", "pk": 8835, "fields": {"orig_filename": "Migerka_Franz_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413271}}, {"model": "metainfo.source", "pk": 8836, "fields": {"orig_filename": "Migerka_Helene_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413272}}, {"model": "metainfo.source", "pk": 8837, "fields": {"orig_filename": "Migerka_Katharina_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413273}}, {"model": "metainfo.source", "pk": 8838, "fields": {"orig_filename": "Migotti_Adolf_1850_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413274}}, {"model": "metainfo.source", "pk": 8839, "fields": {"orig_filename": "Mihacevic_Lovro_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274f.", "author": "", "orig_id": 1413275}}, {"model": "metainfo.source", "pk": 8840, "fields": {"orig_filename": "Mihalik-Hernadszurdok_Jozsef_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275", "author": "", "orig_id": 1413276}}, {"model": "metainfo.source", "pk": 8841, "fields": {"orig_filename": "Mihalik-Madunycz_Janos_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275", "author": "", "orig_id": 1413277}}, {"model": "metainfo.source", "pk": 8842, "fields": {"orig_filename": "Mihaljevic_Benko_1768_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275f.", "author": "", "orig_id": 1413278}}, {"model": "metainfo.source", "pk": 8843, "fields": {"orig_filename": "Mihaljevic_Michael_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413279}}, {"model": "metainfo.source", "pk": 8844, "fields": {"orig_filename": "Mihalkovics_Geza_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413349}}, {"model": "metainfo.source", "pk": 8845, "fields": {"orig_filename": "Mihalovich_Oedoen_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413353}}, {"model": "metainfo.source", "pk": 8846, "fields": {"orig_filename": "Mihalovic_Antun_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413350}}, {"model": "metainfo.source", "pk": 8847, "fields": {"orig_filename": "Mihalovic_Josip_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276f.", "author": "", "orig_id": 1413351}}, {"model": "metainfo.source", "pk": 8848, "fields": {"orig_filename": "Mihalyfi_Akos_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413354}}, {"model": "metainfo.source", "pk": 8849, "fields": {"orig_filename": "Mihalyfi_Karoly_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413355}}, {"model": "metainfo.source", "pk": 8850, "fields": {"orig_filename": "Mihalyi-Boegoez_Karoly_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277f.", "author": "", "orig_id": 1413356}}, {"model": "metainfo.source", "pk": 8851, "fields": {"orig_filename": "Mihanovic-Frankenhardt_Karl_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278", "author": "", "orig_id": 1413357}}, {"model": "metainfo.source", "pk": 8852, "fields": {"orig_filename": "Mihanovic-Petropoljski_Antun_1796_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278", "author": "", "orig_id": 1413358}}, {"model": "metainfo.source", "pk": 8853, "fields": {"orig_filename": "Mihevc_Ignacij_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278f.", "author": "", "orig_id": 1413359}}, {"model": "metainfo.source", "pk": 8854, "fields": {"orig_filename": "Mihicic_Milica_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 279", "author": "", "orig_id": 1413360}}, {"model": "metainfo.source", "pk": 8855, "fields": {"orig_filename": "Mikan_Johann-Christian_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280", "author": "", "orig_id": 1413363}}, {"model": "metainfo.source", "pk": 8856, "fields": {"orig_filename": "Mika_Sandor_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280", "author": "", "orig_id": 1413362}}, {"model": "metainfo.source", "pk": 8857, "fields": {"orig_filename": "Mikes-Zabola_Kelemen_1820_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281", "author": "", "orig_id": 1413365}}, {"model": "metainfo.source", "pk": 8858, "fields": {"orig_filename": "Mikes_Adolf_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280f.", "author": "", "orig_id": 1413364}}, {"model": "metainfo.source", "pk": 8859, "fields": {"orig_filename": "Miklavec_Peter_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281", "author": "", "orig_id": 1413366}}, {"model": "metainfo.source", "pk": 8860, "fields": {"orig_filename": "Miklossy_Josef_1792_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 282", "author": "", "orig_id": 1413369}}, {"model": "metainfo.source", "pk": 8861, "fields": {"orig_filename": "Miklosy_Istvan_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283", "author": "", "orig_id": 1413370}}, {"model": "metainfo.source", "pk": 8862, "fields": {"orig_filename": "Miklousic_Tomas_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283", "author": "", "orig_id": 1413436}}, {"model": "metainfo.source", "pk": 8863, "fields": {"orig_filename": "Miko-Hidveg_Imre_1805_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283f.", "author": "", "orig_id": 1413437}}, {"model": "metainfo.source", "pk": 8864, "fields": {"orig_filename": "Mikolasch_Karol-Henryk_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284", "author": "", "orig_id": 1413438}}, {"model": "metainfo.source", "pk": 8865, "fields": {"orig_filename": "Mikosch_Karl_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284", "author": "", "orig_id": 1413439}}, {"model": "metainfo.source", "pk": 8866, "fields": {"orig_filename": "Mikovec_Ferdinand-Bretislav_1826_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284f.", "author": "", "orig_id": 1413440}}, {"model": "metainfo.source", "pk": 8867, "fields": {"orig_filename": "Mikovics_Robert_1852_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285", "author": "", "orig_id": 1413441}}, {"model": "metainfo.source", "pk": 8868, "fields": {"orig_filename": "Mikscha_Ferdinand_1829_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413444}}, {"model": "metainfo.source", "pk": 8869, "fields": {"orig_filename": "Mikschowsky_Franz_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413445}}, {"model": "metainfo.source", "pk": 8870, "fields": {"orig_filename": "Miksch_Hans_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285", "author": "", "orig_id": 1413442}}, {"model": "metainfo.source", "pk": 8871, "fields": {"orig_filename": "Miksch_Johann-Alois_1765_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285f.", "author": "", "orig_id": 1413443}}, {"model": "metainfo.source", "pk": 8872, "fields": {"orig_filename": "Mikse_Mikolas_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413446}}, {"model": "metainfo.source", "pk": 8873, "fields": {"orig_filename": "Miksicek_Matej_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413447}}, {"model": "metainfo.source", "pk": 8874, "fields": {"orig_filename": "Mikszath_Kalman_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286f.", "author": "", "orig_id": 1413448}}, {"model": "metainfo.source", "pk": 8875, "fields": {"orig_filename": "Mikulas_Josef_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 287f.", "author": "", "orig_id": 1413449}}, {"model": "metainfo.source", "pk": 8876, "fields": {"orig_filename": "Mikulicz-Radecki_Johann_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288f.", "author": "", "orig_id": 1413452}}, {"model": "metainfo.source", "pk": 8877, "fields": {"orig_filename": "Mikulicz-Radecki_Valerian_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289", "author": "", "orig_id": 1413453}}, {"model": "metainfo.source", "pk": 8878, "fields": {"orig_filename": "Mikulic_Martin_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288", "author": "", "orig_id": 1413451}}, {"model": "metainfo.source", "pk": 8879, "fields": {"orig_filename": "Mikuli_Karl_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288", "author": "", "orig_id": 1413450}}, {"model": "metainfo.source", "pk": 8880, "fields": {"orig_filename": "Mikulowski-Pomorski_Jozef_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289", "author": "", "orig_id": 1413454}}, {"model": "metainfo.source", "pk": 8881, "fields": {"orig_filename": "Mik_Josef_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 279f.", "author": "", "orig_id": 1413361}}, {"model": "metainfo.source", "pk": 8882, "fields": {"orig_filename": "Miladinovic_Milena_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289f.", "author": "", "orig_id": 1413455}}, {"model": "metainfo.source", "pk": 8883, "fields": {"orig_filename": "Milakovic_Josip_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290", "author": "", "orig_id": 1413456}}, {"model": "metainfo.source", "pk": 8884, "fields": {"orig_filename": "Milanes_Wolfgang_1767_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290f.", "author": "", "orig_id": 1413526}}, {"model": "metainfo.source", "pk": 8885, "fields": {"orig_filename": "Milan_Adele_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290", "author": "", "orig_id": 1413457}}, {"model": "metainfo.source", "pk": 8886, "fields": {"orig_filename": "Milasinovic_Franjo_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291", "author": "", "orig_id": 1413527}}, {"model": "metainfo.source", "pk": 8887, "fields": {"orig_filename": "Milaszewski_Adam_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291", "author": "", "orig_id": 1413528}}, {"model": "metainfo.source", "pk": 8888, "fields": {"orig_filename": "Milcetic_Ivan_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291f.", "author": "", "orig_id": 1413529}}, {"model": "metainfo.source", "pk": 8889, "fields": {"orig_filename": "Milcinovic_Andrija_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292", "author": "", "orig_id": 1413530}}, {"model": "metainfo.source", "pk": 8890, "fields": {"orig_filename": "Milcinski_Fran_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292", "author": "", "orig_id": 1413531}}, {"model": "metainfo.source", "pk": 8891, "fields": {"orig_filename": "Milder-Hauptmann_Anna-Pauline_1785_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 294", "author": "", "orig_id": 1413535}}, {"model": "metainfo.source", "pk": 8892, "fields": {"orig_filename": "Milde_Hugo_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292f.", "author": "", "orig_id": 1413532}}, {"model": "metainfo.source", "pk": 8893, "fields": {"orig_filename": "Milde_Johann_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 293", "author": "", "orig_id": 1413533}}, {"model": "metainfo.source", "pk": 8894, "fields": {"orig_filename": "Milde_Vinzenz-Eduard_1777_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 293f.", "author": "", "orig_id": 1413534}}, {"model": "metainfo.source", "pk": 8895, "fields": {"orig_filename": "Mildner_Moritz_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 294f.", "author": "", "orig_id": 1413536}}, {"model": "metainfo.source", "pk": 8896, "fields": {"orig_filename": "Mildschuh_Vilibald_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413537}}, {"model": "metainfo.source", "pk": 8897, "fields": {"orig_filename": "Miler_Ferdo-Zivko_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413538}}, {"model": "metainfo.source", "pk": 8898, "fields": {"orig_filename": "Mileta_Jeronim_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413539}}, {"model": "metainfo.source", "pk": 8899, "fields": {"orig_filename": "Miletic_Ambro_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295f.", "author": "", "orig_id": 1413540}}, {"model": "metainfo.source", "pk": 8900, "fields": {"orig_filename": "Miletic_Stjepan_1868_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296", "author": "", "orig_id": 1413541}}, {"model": "metainfo.source", "pk": 8901, "fields": {"orig_filename": "Miletic_Svetozar_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296", "author": "", "orig_id": 1413542}}, {"model": "metainfo.source", "pk": 8902, "fields": {"orig_filename": "Milewski_Jozef_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296f.", "author": "", "orig_id": 1413543}}, {"model": "metainfo.source", "pk": 8903, "fields": {"orig_filename": "Milicevic_Franjo_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297f.", "author": "", "orig_id": 1413617}}, {"model": "metainfo.source", "pk": 8904, "fields": {"orig_filename": "Milic_Jozef-Rudolf_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297", "author": "", "orig_id": 1413544}}, {"model": "metainfo.source", "pk": 8905, "fields": {"orig_filename": "Milic_Vicko_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297", "author": "", "orig_id": 1413545}}, {"model": "metainfo.source", "pk": 8906, "fields": {"orig_filename": "Milinovic_Simun_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 298", "author": "", "orig_id": 1413618}}, {"model": "metainfo.source", "pk": 8907, "fields": {"orig_filename": "Militzer_Hermann_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 298f.", "author": "", "orig_id": 1413619}}, {"model": "metainfo.source", "pk": 8908, "fields": {"orig_filename": "Millanich_Alois_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299", "author": "", "orig_id": 1413620}}, {"model": "metainfo.source", "pk": 8909, "fields": {"orig_filename": "Millard_Edward_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299", "author": "", "orig_id": 1413621}}, {"model": "metainfo.source", "pk": 8910, "fields": {"orig_filename": "Millauer_Franz-Xaver_1784_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299f.", "author": "", "orig_id": 1413622}}, {"model": "metainfo.source", "pk": 8911, "fields": {"orig_filename": "Milleker_Felix_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300", "author": "", "orig_id": 1413624}}, {"model": "metainfo.source", "pk": 8912, "fields": {"orig_filename": "Millemoth_Anton_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300f.", "author": "", "orig_id": 1413625}}, {"model": "metainfo.source", "pk": 8913, "fields": {"orig_filename": "Millenkovich_Benno_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301", "author": "", "orig_id": 1413626}}, {"model": "metainfo.source", "pk": 8914, "fields": {"orig_filename": "Millenkovich_Max_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301", "author": "", "orig_id": 1413627}}, {"model": "metainfo.source", "pk": 8915, "fields": {"orig_filename": "Millenkovich_Stefan_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301f.", "author": "", "orig_id": 1413628}}, {"model": "metainfo.source", "pk": 8916, "fields": {"orig_filename": "Merkl-Reinsee_Jakob_1814_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412803}}, {"model": "metainfo.source", "pk": 8917, "fields": {"orig_filename": "Merklas_Wenzel_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231f.", "author": "", "orig_id": 1412804}}, {"model": "metainfo.source", "pk": 8918, "fields": {"orig_filename": "Merkle_Meinrad_1781_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412805}}, {"model": "metainfo.source", "pk": 8919, "fields": {"orig_filename": "Merkl_Adolf-Julius_1890_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1469550}}, {"model": "metainfo.source", "pk": 8920, "fields": {"orig_filename": "Merkl_Rudolf_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412802}}, {"model": "metainfo.source", "pk": 8921, "fields": {"orig_filename": "Merkt_Eduard_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412806}}, {"model": "metainfo.source", "pk": 8922, "fields": {"orig_filename": "Merk_Ludwig_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230f.", "author": "", "orig_id": 1412731}}, {"model": "metainfo.source", "pk": 8923, "fields": {"orig_filename": "Merlato_Gaetano_1807_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412807}}, {"model": "metainfo.source", "pk": 8924, "fields": {"orig_filename": "Merlet_Alexander-Erwin_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412813}}, {"model": "metainfo.source", "pk": 8925, "fields": {"orig_filename": "Merlitschek_Rita_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412814}}, {"model": "metainfo.source", "pk": 8926, "fields": {"orig_filename": "Merode_Karl_1853_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412815}}, {"model": "metainfo.source", "pk": 8927, "fields": {"orig_filename": "Mersich_Johann_1862_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234", "author": "", "orig_id": 1412817}}, {"model": "metainfo.source", "pk": 8928, "fields": {"orig_filename": "Mersich_Martin_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234", "author": "", "orig_id": 1412818}}, {"model": "metainfo.source", "pk": 8929, "fields": {"orig_filename": "Mersich_Matthaeus_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234f.", "author": "", "orig_id": 1412819}}, {"model": "metainfo.source", "pk": 8930, "fields": {"orig_filename": "Mersi_Andreas_1779_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412816}}, {"model": "metainfo.source", "pk": 8931, "fields": {"orig_filename": "Merta_Anton_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412820}}, {"model": "metainfo.source", "pk": 8932, "fields": {"orig_filename": "Merta_Emanuel_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412821}}, {"model": "metainfo.source", "pk": 8933, "fields": {"orig_filename": "Mertens_Franz_1840_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412823}}, {"model": "metainfo.source", "pk": 8934, "fields": {"orig_filename": "Mertens_Heinrich_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412824}}, {"model": "metainfo.source", "pk": 8935, "fields": {"orig_filename": "Mertens_Karl_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412890}}, {"model": "metainfo.source", "pk": 8936, "fields": {"orig_filename": "Mertens_Ludwig_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412891}}, {"model": "metainfo.source", "pk": 8937, "fields": {"orig_filename": "Merten_Eduard_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412822}}, {"model": "metainfo.source", "pk": 8938, "fields": {"orig_filename": "Mertha_Rudolf_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412893}}, {"model": "metainfo.source", "pk": 8939, "fields": {"orig_filename": "Merth_Bernhard_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236f.", "author": "", "orig_id": 1412892}}, {"model": "metainfo.source", "pk": 8940, "fields": {"orig_filename": "Mertz_Johann-Kaspar_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412894}}, {"model": "metainfo.source", "pk": 8941, "fields": {"orig_filename": "Merunowicz_Teofil_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412895}}, {"model": "metainfo.source", "pk": 8942, "fields": {"orig_filename": "Merveldt_Franz_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237f.", "author": "", "orig_id": 1412896}}, {"model": "metainfo.source", "pk": 8943, "fields": {"orig_filename": "Merwart_Karl_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238", "author": "", "orig_id": 1412897}}, {"model": "metainfo.source", "pk": 8944, "fields": {"orig_filename": "Merwart_Paul_1855_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238", "author": "", "orig_id": 1412898}}, {"model": "metainfo.source", "pk": 8945, "fields": {"orig_filename": "Merz_Alfred_1880_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238f.", "author": "", "orig_id": 1412899}}, {"model": "metainfo.source", "pk": 8946, "fields": {"orig_filename": "Meschendoerfer_Josef-Traugott_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 239", "author": "", "orig_id": 1412900}}, {"model": "metainfo.source", "pk": 8947, "fields": {"orig_filename": "Mesesnel_France_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 239f.", "author": "", "orig_id": 1412901}}, {"model": "metainfo.source", "pk": 8948, "fields": {"orig_filename": "Mesic_Matija_1826_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 240", "author": "", "orig_id": 1412902}}, {"model": "metainfo.source", "pk": 8949, "fields": {"orig_filename": "Mesk_Josef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 240f.", "author": "", "orig_id": 1412903}}, {"model": "metainfo.source", "pk": 8950, "fields": {"orig_filename": "Mesota_Ioan-G_1837_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241", "author": "", "orig_id": 1412904}}, {"model": "metainfo.source", "pk": 8951, "fields": {"orig_filename": "Messenboeck_Hubert_1887_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241", "author": "", "orig_id": 1412905}}, {"model": "metainfo.source", "pk": 8952, "fields": {"orig_filename": "Messenhauser_Wenzel-Georg_1811_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241f.", "author": "", "orig_id": 1412906}}, {"model": "metainfo.source", "pk": 8953, "fields": {"orig_filename": "Messerklinger_Johann_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242", "author": "", "orig_id": 1412908}}, {"model": "metainfo.source", "pk": 8954, "fields": {"orig_filename": "Messer_Max_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242", "author": "", "orig_id": 1412907}}, {"model": "metainfo.source", "pk": 8955, "fields": {"orig_filename": "Messmer_Alois_1822_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242f.", "author": "", "orig_id": 1412909}}, {"model": "metainfo.source", "pk": 8956, "fields": {"orig_filename": "Messner_Anton_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412910}}, {"model": "metainfo.source", "pk": 8957, "fields": {"orig_filename": "Messner_Josef_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412911}}, {"model": "metainfo.source", "pk": 8958, "fields": {"orig_filename": "Messner_Josef_1837_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412912}}, {"model": "metainfo.source", "pk": 8959, "fields": {"orig_filename": "Messner_Paul_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243f.", "author": "", "orig_id": 1412913}}, {"model": "metainfo.source", "pk": 8960, "fields": {"orig_filename": "Messner_Theresia_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 244", "author": "", "orig_id": 1412914}}, {"model": "metainfo.source", "pk": 8961, "fields": {"orig_filename": "Mestan_Franz_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 244f.", "author": "", "orig_id": 1412985}}, {"model": "metainfo.source", "pk": 8962, "fields": {"orig_filename": "Mestrozi_Paul_1771_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 245", "author": "", "orig_id": 1412986}}, {"model": "metainfo.source", "pk": 8963, "fields": {"orig_filename": "Mestrozi_Paul_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 245f.", "author": "", "orig_id": 1412987}}, {"model": "metainfo.source", "pk": 8964, "fields": {"orig_filename": "Meszaros_Lazar_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246", "author": "", "orig_id": 1412988}}, {"model": "metainfo.source", "pk": 8965, "fields": {"orig_filename": "Meszoely_Geza_1844_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246", "author": "", "orig_id": 1412989}}, {"model": "metainfo.source", "pk": 8966, "fields": {"orig_filename": "Metelko_Fran_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246f.", "author": "", "orig_id": 1412990}}, {"model": "metainfo.source", "pk": 8967, "fields": {"orig_filename": "Metianu_Ioan_1828_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247", "author": "", "orig_id": 1412991}}, {"model": "metainfo.source", "pk": 8968, "fields": {"orig_filename": "Metnitz_Gustav_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247", "author": "", "orig_id": 1412992}}, {"model": "metainfo.source", "pk": 8969, "fields": {"orig_filename": "Metschl_Karl_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247f.", "author": "", "orig_id": 1412993}}, {"model": "metainfo.source", "pk": 8970, "fields": {"orig_filename": "Mettelet_Anatol_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 248", "author": "", "orig_id": 1412994}}, {"model": "metainfo.source", "pk": 8971, "fields": {"orig_filename": "Metternich-Sandor_Pauline_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 248f.", "author": "", "orig_id": 1412995}}, {"model": "metainfo.source", "pk": 8972, "fields": {"orig_filename": "Metternich-Winneburg_Klemens-Wenzel-Lothar_1773_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 249f.", "author": "", "orig_id": 1412996}}, {"model": "metainfo.source", "pk": 8973, "fields": {"orig_filename": "Metternich-Winneburg_Richard-Klemens_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250", "author": "", "orig_id": 1412997}}, {"model": "metainfo.source", "pk": 8974, "fields": {"orig_filename": "Metz-Spondalunga_Rudolf_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250f.", "author": "", "orig_id": 1412999}}, {"model": "metainfo.source", "pk": 8975, "fields": {"orig_filename": "Metzburg_Johann_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251", "author": "", "orig_id": 1413000}}, {"model": "metainfo.source", "pk": 8976, "fields": {"orig_filename": "Metzger_Hugo_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251", "author": "", "orig_id": 1413001}}, {"model": "metainfo.source", "pk": 8977, "fields": {"orig_filename": "Metzger_Josef_1870_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251f.", "author": "", "orig_id": 1413002}}, {"model": "metainfo.source", "pk": 8978, "fields": {"orig_filename": "Metzger_Max-Josef_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252", "author": "", "orig_id": 1413003}}, {"model": "metainfo.source", "pk": 8979, "fields": {"orig_filename": "Metzler-Loewy_Pauline_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252f.", "author": "", "orig_id": 1413005}}, {"model": "metainfo.source", "pk": 8980, "fields": {"orig_filename": "Metzler_Johann-Jakob_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252", "author": "", "orig_id": 1413004}}, {"model": "metainfo.source", "pk": 8981, "fields": {"orig_filename": "Metzner_Hugo_1882_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253", "author": "", "orig_id": 1413006}}, {"model": "metainfo.source", "pk": 8982, "fields": {"orig_filename": "Metzner_Karl_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253", "author": "", "orig_id": 1413007}}, {"model": "metainfo.source", "pk": 8983, "fields": {"orig_filename": "Metz_Karl_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250", "author": "", "orig_id": 1412998}}, {"model": "metainfo.source", "pk": 8984, "fields": {"orig_filename": "Meurer_Julius_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253f.", "author": "", "orig_id": 1413077}}, {"model": "metainfo.source", "pk": 8985, "fields": {"orig_filename": "Meusburger_Karl_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 254", "author": "", "orig_id": 1413078}}, {"model": "metainfo.source", "pk": 8986, "fields": {"orig_filename": "Meyndt_Georg_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 254f.", "author": "", "orig_id": 1413079}}, {"model": "metainfo.source", "pk": 8987, "fields": {"orig_filename": "Meynert_Hermann-Guenther_1808_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 255", "author": "", "orig_id": 1413080}}, {"model": "metainfo.source", "pk": 8988, "fields": {"orig_filename": "Meynert_Theodor_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 255f.", "author": "", "orig_id": 1413081}}, {"model": "metainfo.source", "pk": 8989, "fields": {"orig_filename": "Meznik_Anton_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 256", "author": "", "orig_id": 1413082}}, {"model": "metainfo.source", "pk": 8990, "fields": {"orig_filename": "Miari_Antonio_1754_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 256", "author": "", "orig_id": 1413083}}, {"model": "metainfo.source", "pk": 8991, "fields": {"orig_filename": "Micatek_Ludovit_1874_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413084}}, {"model": "metainfo.source", "pk": 8992, "fields": {"orig_filename": "Miceu_Giuseppe_1873_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413085}}, {"model": "metainfo.source", "pk": 8993, "fields": {"orig_filename": "Michaelis_Franz_1841_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257f.", "author": "", "orig_id": 1413087}}, {"model": "metainfo.source", "pk": 8994, "fields": {"orig_filename": "Michaelis_Johann_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413088}}, {"model": "metainfo.source", "pk": 8995, "fields": {"orig_filename": "Michaelis_Ludwig-Johann_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413089}}, {"model": "metainfo.source", "pk": 8996, "fields": {"orig_filename": "Michael_Emil_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413086}}, {"model": "metainfo.source", "pk": 8997, "fields": {"orig_filename": "Michalek_Ludwig_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413090}}, {"model": "metainfo.source", "pk": 8998, "fields": {"orig_filename": "Michalitschke_Anton_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258f.", "author": "", "orig_id": 1413091}}, {"model": "metainfo.source", "pk": 8999, "fields": {"orig_filename": "Michalovich_Johann_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259", "author": "", "orig_id": 1413092}}, {"model": "metainfo.source", "pk": 9000, "fields": {"orig_filename": "Michalowski_Jozef_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259", "author": "", "orig_id": 1413093}}, {"model": "metainfo.source", "pk": 9001, "fields": {"orig_filename": "Michalowski_Piotr_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259f.", "author": "", "orig_id": 1413094}}, {"model": "metainfo.source", "pk": 9002, "fields": {"orig_filename": "Michalski_Konstanty_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 260", "author": "", "orig_id": 1413095}}, {"model": "metainfo.source", "pk": 9003, "fields": {"orig_filename": "Michalski_Michal_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 260f.", "author": "", "orig_id": 1413096}}, {"model": "metainfo.source", "pk": 9004, "fields": {"orig_filename": "Michejda_Franciszek_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261", "author": "", "orig_id": 1413097}}, {"model": "metainfo.source", "pk": 9005, "fields": {"orig_filename": "Michejda_Jan_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261", "author": "", "orig_id": 1413098}}, {"model": "metainfo.source", "pk": 9006, "fields": {"orig_filename": "Michejda_Wladyslaw_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261f.", "author": "", "orig_id": 1413166}}, {"model": "metainfo.source", "pk": 9007, "fields": {"orig_filename": "Michelazzi_Agostino_1732_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413169}}, {"model": "metainfo.source", "pk": 9008, "fields": {"orig_filename": "Michelic_Anton_1748_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413170}}, {"model": "metainfo.source", "pk": 9009, "fields": {"orig_filename": "Michelstaedter_Carlo_1887_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262f.", "author": "", "orig_id": 1413171}}, {"model": "metainfo.source", "pk": 9010, "fields": {"orig_filename": "Michel_Adalbert-Theodor_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413167}}, {"model": "metainfo.source", "pk": 9011, "fields": {"orig_filename": "Michel_Philipp-Adalbert_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413168}}, {"model": "metainfo.source", "pk": 9012, "fields": {"orig_filename": "Michetschlaeger_Heinrich_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263", "author": "", "orig_id": 1413172}}, {"model": "metainfo.source", "pk": 9013, "fields": {"orig_filename": "Micheuz_Jurij_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263", "author": "", "orig_id": 1413173}}, {"model": "metainfo.source", "pk": 9014, "fields": {"orig_filename": "Michl_Frantisek_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263f.", "author": "", "orig_id": 1413174}}, {"model": "metainfo.source", "pk": 9015, "fields": {"orig_filename": "Michl_Josef-Vaclav_1810_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264", "author": "", "orig_id": 1413175}}, {"model": "metainfo.source", "pk": 9016, "fields": {"orig_filename": "Michl_Leopold_1764_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264", "author": "", "orig_id": 1413176}}, {"model": "metainfo.source", "pk": 9017, "fields": {"orig_filename": "Michna-Watzenau_Emanuel_1772_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264f.", "author": "", "orig_id": 1413177}}, {"model": "metainfo.source", "pk": 9018, "fields": {"orig_filename": "Michnay_Andreas-Daniel_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265", "author": "", "orig_id": 1413178}}, {"model": "metainfo.source", "pk": 9019, "fields": {"orig_filename": "Meichl_Georg_1791_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193f.", "author": "", "orig_id": 1413787}}, {"model": "metainfo.source", "pk": 9020, "fields": {"orig_filename": "Meilbek_Josef_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 194", "author": "", "orig_id": 1413788}}, {"model": "metainfo.source", "pk": 9021, "fields": {"orig_filename": "Meiller_Andreas_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 194f.", "author": "", "orig_id": 1413789}}, {"model": "metainfo.source", "pk": 9022, "fields": {"orig_filename": "Meineckova_Tylda_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195", "author": "", "orig_id": 1413791}}, {"model": "metainfo.source", "pk": 9023, "fields": {"orig_filename": "Meinert_Joseph-Georg_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195f.", "author": "", "orig_id": 1413792}}, {"model": "metainfo.source", "pk": 9024, "fields": {"orig_filename": "Meingast_Adalbert-Mathias_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 196", "author": "", "orig_id": 1413793}}, {"model": "metainfo.source", "pk": 9025, "fields": {"orig_filename": "Meinl_Julius_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 196f.", "author": "", "orig_id": 1413794}}, {"model": "metainfo.source", "pk": 9026, "fields": {"orig_filename": "Meinong-Handschuchsheim_Alexius_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 197f.", "author": "", "orig_id": 1413795}}, {"model": "metainfo.source", "pk": 9027, "fields": {"orig_filename": "Meinong-Handschuchsheim_Rafael_1849_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413865}}, {"model": "metainfo.source", "pk": 9028, "fields": {"orig_filename": "Meinzinger-Meinzingen_Franz_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413866}}, {"model": "metainfo.source", "pk": 9029, "fields": {"orig_filename": "Meisels_Dow-Beer_1798_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198f.", "author": "", "orig_id": 1413868}}, {"model": "metainfo.source", "pk": 9030, "fields": {"orig_filename": "Meisel_Franz_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413867}}, {"model": "metainfo.source", "pk": 9031, "fields": {"orig_filename": "Meisl_Hugo_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 199", "author": "", "orig_id": 1413869}}, {"model": "metainfo.source", "pk": 9032, "fields": {"orig_filename": "Meisl_Karl_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 199f.", "author": "", "orig_id": 1413870}}, {"model": "metainfo.source", "pk": 9033, "fields": {"orig_filename": "Meissl_Emerich_1855_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200", "author": "", "orig_id": 1413871}}, {"model": "metainfo.source", "pk": 9034, "fields": {"orig_filename": "Meissner_Alfred_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200", "author": "", "orig_id": 1413873}}, {"model": "metainfo.source", "pk": 9035, "fields": {"orig_filename": "Meissner_Alfred_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200f.", "author": "", "orig_id": 1413872}}, {"model": "metainfo.source", "pk": 9036, "fields": {"orig_filename": "Meissner_Franziska_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 201", "author": "", "orig_id": 1413874}}, {"model": "metainfo.source", "pk": 9037, "fields": {"orig_filename": "Meissner_Johannes-Friedrich_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 201f.", "author": "", "orig_id": 1413875}}, {"model": "metainfo.source", "pk": 9038, "fields": {"orig_filename": "Meissner_Karl-Ludwig_1809_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202", "author": "", "orig_id": 1412873}}, {"model": "metainfo.source", "pk": 9039, "fields": {"orig_filename": "Meissner_Leopold-Florian_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202", "author": "", "orig_id": 1413876}}, {"model": "metainfo.source", "pk": 9040, "fields": {"orig_filename": "Meissner_Paul-Traugott_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202f.", "author": "", "orig_id": 1413877}}, {"model": "metainfo.source", "pk": 9041, "fields": {"orig_filename": "Meister_Johann_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203", "author": "", "orig_id": 1413878}}, {"model": "metainfo.source", "pk": 9042, "fields": {"orig_filename": "Meixner-Zweienstamm_Otto_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206", "author": "", "orig_id": 1412524}}, {"model": "metainfo.source", "pk": 9043, "fields": {"orig_filename": "Meixner_Adolf_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413880}}, {"model": "metainfo.source", "pk": 9044, "fields": {"orig_filename": "Meixner_Heinrich_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413881}}, {"model": "metainfo.source", "pk": 9045, "fields": {"orig_filename": "Meixner_Johann_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413882}}, {"model": "metainfo.source", "pk": 9046, "fields": {"orig_filename": "Meixner_Josef_1889_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204f.", "author": "", "orig_id": 1413883}}, {"model": "metainfo.source", "pk": 9047, "fields": {"orig_filename": "Meixner_Julius_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 205", "author": "", "orig_id": 1413884}}, {"model": "metainfo.source", "pk": 9048, "fields": {"orig_filename": "Meixner_Karl-Wilhelm_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 205f.", "author": "", "orig_id": 1413885}}, {"model": "metainfo.source", "pk": 9049, "fields": {"orig_filename": "Mejsnar_Hynek-Jaroslav_1837_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206f.", "author": "", "orig_id": 1412525}}, {"model": "metainfo.source", "pk": 9050, "fields": {"orig_filename": "Mekler_Siegfried_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 207", "author": "", "orig_id": 1412526}}, {"model": "metainfo.source", "pk": 9051, "fields": {"orig_filename": "Melan_Joseph_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 207f.", "author": "", "orig_id": 1412527}}, {"model": "metainfo.source", "pk": 9052, "fields": {"orig_filename": "Melas_Heinrich_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412528}}, {"model": "metainfo.source", "pk": 9053, "fields": {"orig_filename": "Melchiori_Josef_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412529}}, {"model": "metainfo.source", "pk": 9054, "fields": {"orig_filename": "Melczer_Gustav_1869_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412530}}, {"model": "metainfo.source", "pk": 9055, "fields": {"orig_filename": "Meletzki_Emil_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208f.", "author": "", "orig_id": 1412531}}, {"model": "metainfo.source", "pk": 9056, "fields": {"orig_filename": "Melichar_Frantisek_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209", "author": "", "orig_id": 1412533}}, {"model": "metainfo.source", "pk": 9057, "fields": {"orig_filename": "Melichar_Franz_1835_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209f.", "author": "", "orig_id": 1412534}}, {"model": "metainfo.source", "pk": 9058, "fields": {"orig_filename": "Melichar_Josef-Jaroslav_1819_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210", "author": "", "orig_id": 1412535}}, {"model": "metainfo.source", "pk": 9059, "fields": {"orig_filename": "Melichar_Leopold_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210", "author": "", "orig_id": 1412536}}, {"model": "metainfo.source", "pk": 9060, "fields": {"orig_filename": "Melicher_Ludwig-Josef_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210f.", "author": "", "orig_id": 1412537}}, {"model": "metainfo.source", "pk": 9061, "fields": {"orig_filename": "Melicher_Theophil_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211", "author": "", "orig_id": 1412538}}, {"model": "metainfo.source", "pk": 9062, "fields": {"orig_filename": "Melic_Johann_1763_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209", "author": "", "orig_id": 1412532}}, {"model": "metainfo.source", "pk": 9063, "fields": {"orig_filename": "Melingo_Achilles_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211", "author": "", "orig_id": 1412539}}, {"model": "metainfo.source", "pk": 9064, "fields": {"orig_filename": "Melion_Josef_1813_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211f.", "author": "", "orig_id": 1412540}}, {"model": "metainfo.source", "pk": 9065, "fields": {"orig_filename": "Melion_Julius_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412541}}, {"model": "metainfo.source", "pk": 9066, "fields": {"orig_filename": "Melisova_Antonie_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412543}}, {"model": "metainfo.source", "pk": 9067, "fields": {"orig_filename": "Melis_Emanuel-Anton_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412542}}, {"model": "metainfo.source", "pk": 9068, "fields": {"orig_filename": "Melkus_Dragan_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212f.", "author": "", "orig_id": 1412544}}, {"model": "metainfo.source", "pk": 9069, "fields": {"orig_filename": "Mellitzer_Georg_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214", "author": "", "orig_id": 1412616}}, {"model": "metainfo.source", "pk": 9070, "fields": {"orig_filename": "Melly_Eduard_1814_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214f.", "author": "", "orig_id": 1412617}}, {"model": "metainfo.source", "pk": 9071, "fields": {"orig_filename": "Mell_Alexander_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 213", "author": "", "orig_id": 1412545}}, {"model": "metainfo.source", "pk": 9072, "fields": {"orig_filename": "Mell_Anton_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 213f.", "author": "", "orig_id": 1412546}}, {"model": "metainfo.source", "pk": 9073, "fields": {"orig_filename": "Mell_Richard_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214", "author": "", "orig_id": 1412547}}, {"model": "metainfo.source", "pk": 9074, "fields": {"orig_filename": "Meltzl_Hugo_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215", "author": "", "orig_id": 1412618}}, {"model": "metainfo.source", "pk": 9075, "fields": {"orig_filename": "Meltzl_Oskar_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215", "author": "", "orig_id": 1412619}}, {"model": "metainfo.source", "pk": 9076, "fields": {"orig_filename": "Melzer-Orienburg_Joseph_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412626}}, {"model": "metainfo.source", "pk": 9077, "fields": {"orig_filename": "Melzer_Anton_1781_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215f.", "author": "", "orig_id": 1412620}}, {"model": "metainfo.source", "pk": 9078, "fields": {"orig_filename": "Melzer_Anton_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412621}}, {"model": "metainfo.source", "pk": 9079, "fields": {"orig_filename": "Melzer_Jakob_1782_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412622}}, {"model": "metainfo.source", "pk": 9080, "fields": {"orig_filename": "Melzer_Karl_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412623}}, {"model": "metainfo.source", "pk": 9081, "fields": {"orig_filename": "Melzer_Otto_1869_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216f.", "author": "", "orig_id": 1412624}}, {"model": "metainfo.source", "pk": 9082, "fields": {"orig_filename": "Mencik_Ferdinand_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412628}}, {"model": "metainfo.source", "pk": 9083, "fields": {"orig_filename": "Mencinger_Janez_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217f.", "author": "", "orig_id": 1412627}}, {"model": "metainfo.source", "pk": 9084, "fields": {"orig_filename": "Mencl_Josef-Branislav_1815_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 218", "author": "", "orig_id": 1412629}}, {"model": "metainfo.source", "pk": 9085, "fields": {"orig_filename": "Mendel_Gregor_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 218f.", "author": "", "orig_id": 1412630}}, {"model": "metainfo.source", "pk": 9086, "fields": {"orig_filename": "Meneghelli_Antonio-Maria_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 219", "author": "", "orig_id": 1412631}}, {"model": "metainfo.source", "pk": 9087, "fields": {"orig_filename": "Meneghini_Giuseppe_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 219f.", "author": "", "orig_id": 1412632}}, {"model": "metainfo.source", "pk": 9088, "fields": {"orig_filename": "Menevischian_Gabriel_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 220", "author": "", "orig_id": 1412633}}, {"model": "metainfo.source", "pk": 9089, "fields": {"orig_filename": "Menger_Anton_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 220f.", "author": "", "orig_id": 1412634}}, {"model": "metainfo.source", "pk": 9090, "fields": {"orig_filename": "Menger_Karl_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 221f.", "author": "", "orig_id": 1412635}}, {"model": "metainfo.source", "pk": 9091, "fields": {"orig_filename": "Menger_Max_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 222", "author": "", "orig_id": 1412636}}, {"model": "metainfo.source", "pk": 9092, "fields": {"orig_filename": "Menghin-Brezburg_Giuseppe_1786_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412708}}, {"model": "metainfo.source", "pk": 9093, "fields": {"orig_filename": "Menghin_Alois_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 222f.", "author": "", "orig_id": 1412707}}, {"model": "metainfo.source", "pk": 9094, "fields": {"orig_filename": "Menghin_Oswald_1888_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431851}}, {"model": "metainfo.source", "pk": 9095, "fields": {"orig_filename": "Mennel_Alois_1894_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1470164}}, {"model": "metainfo.source", "pk": 9096, "fields": {"orig_filename": "Mennel_Josef_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412709}}, {"model": "metainfo.source", "pk": 9097, "fields": {"orig_filename": "Mensdorff-Pouilly-Dietrichstein_Albert_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412711}}, {"model": "metainfo.source", "pk": 9098, "fields": {"orig_filename": "Mensdorff-Pouilly_Arthur_1817_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412710}}, {"model": "metainfo.source", "pk": 9099, "fields": {"orig_filename": "Mensi-Klarbach_Daniel_1781_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412712}}, {"model": "metainfo.source", "pk": 9100, "fields": {"orig_filename": "Mensi-Klarbach_Franz_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412714}}, {"model": "metainfo.source", "pk": 9101, "fields": {"orig_filename": "Mensik_Jan_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224f.", "author": "", "orig_id": 1412713}}, {"model": "metainfo.source", "pk": 9102, "fields": {"orig_filename": "Mentasti_Alois_1887_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1455889}}, {"model": "metainfo.source", "pk": 9103, "fields": {"orig_filename": "Mentovich_Ferenc_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225", "author": "", "orig_id": 1412715}}, {"model": "metainfo.source", "pk": 9104, "fields": {"orig_filename": "Menzel_Adolf_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225f.", "author": "", "orig_id": 1412717}}, {"model": "metainfo.source", "pk": 9105, "fields": {"orig_filename": "Menzel_Karl_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 226", "author": "", "orig_id": 1412718}}, {"model": "metainfo.source", "pk": 9106, "fields": {"orig_filename": "Menz_Karl_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225", "author": "", "orig_id": 1412716}}, {"model": "metainfo.source", "pk": 9107, "fields": {"orig_filename": "Meran_Anna-Maria_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 226f.", "author": "", "orig_id": 1412719}}, {"model": "metainfo.source", "pk": 9108, "fields": {"orig_filename": "Meraviglia-Crivelli_Rudolf-Johann_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412720}}, {"model": "metainfo.source", "pk": 9109, "fields": {"orig_filename": "Mercy_Heinrich_1826_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412721}}, {"model": "metainfo.source", "pk": 9110, "fields": {"orig_filename": "Merenyi_Lajos_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412722}}, {"model": "metainfo.source", "pk": 9111, "fields": {"orig_filename": "Meretta_Anna_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227f.", "author": "", "orig_id": 1412723}}, {"model": "metainfo.source", "pk": 9112, "fields": {"orig_filename": "Merey-Kapos-Mere_Kajetan_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 228", "author": "", "orig_id": 1412724}}, {"model": "metainfo.source", "pk": 9113, "fields": {"orig_filename": "Merhar_Alojzij_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 228f.", "author": "", "orig_id": 1412725}}, {"model": "metainfo.source", "pk": 9114, "fields": {"orig_filename": "Merhar_Ivan_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229", "author": "", "orig_id": 1412726}}, {"model": "metainfo.source", "pk": 9115, "fields": {"orig_filename": "Merhaut_Josef_1863_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229", "author": "", "orig_id": 1412727}}, {"model": "metainfo.source", "pk": 9116, "fields": {"orig_filename": "Meringer_Rudolf_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229f.", "author": "", "orig_id": 1412728}}, {"model": "metainfo.source", "pk": 9117, "fields": {"orig_filename": "Merizzi_Erik_1873_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230", "author": "", "orig_id": 1412729}}, {"model": "metainfo.source", "pk": 9118, "fields": {"orig_filename": "Merkel_Rudolf_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412801}}, {"model": "metainfo.source", "pk": 9119, "fields": {"orig_filename": "Maurovic_Antun_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413348}}, {"model": "metainfo.source", "pk": 9120, "fields": {"orig_filename": "Mauss_Anton_1868_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413413}}, {"model": "metainfo.source", "pk": 9121, "fields": {"orig_filename": "Mauss_Jozef_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413414}}, {"model": "metainfo.source", "pk": 9122, "fields": {"orig_filename": "Mauthner-Mauthstein_Ludwig-Wilhelm_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 163", "author": "", "orig_id": 1413423}}, {"model": "metainfo.source", "pk": 9123, "fields": {"orig_filename": "Mauthner_Eugen-Moritz_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 160", "author": "", "orig_id": 1413415}}, {"model": "metainfo.source", "pk": 9124, "fields": {"orig_filename": "Mauthner_Fritz_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 160f.", "author": "", "orig_id": 1413416}}, {"model": "metainfo.source", "pk": 9125, "fields": {"orig_filename": "Mauthner_Gustav_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 161", "author": "", "orig_id": 1413417}}, {"model": "metainfo.source", "pk": 9126, "fields": {"orig_filename": "Mauthner_Josef_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 161f.", "author": "", "orig_id": 1413418}}, {"model": "metainfo.source", "pk": 9127, "fields": {"orig_filename": "Mauthner_Julius_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162", "author": "", "orig_id": 1413419}}, {"model": "metainfo.source", "pk": 9128, "fields": {"orig_filename": "Mauthner_Ludwig_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162", "author": "", "orig_id": 1413420}}, {"model": "metainfo.source", "pk": 9129, "fields": {"orig_filename": "Mauthner_Max_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162f.", "author": "", "orig_id": 1413421}}, {"model": "metainfo.source", "pk": 9130, "fields": {"orig_filename": "Mauthner_Philipp_1835_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 163", "author": "", "orig_id": 1413422}}, {"model": "metainfo.source", "pk": 9131, "fields": {"orig_filename": "Mautner-Markhof_Adolf-Ignaz_1801_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 165f.", "author": "", "orig_id": 1413429}}, {"model": "metainfo.source", "pk": 9132, "fields": {"orig_filename": "Mautner-Markhof_Editha_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166", "author": "", "orig_id": 1413430}}, {"model": "metainfo.source", "pk": 9133, "fields": {"orig_filename": "Mautner-Markhof_Georg-Anton_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166", "author": "", "orig_id": 1413431}}, {"model": "metainfo.source", "pk": 9134, "fields": {"orig_filename": "Mautner-Markhof_Georg-Heinrich_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166f.", "author": "", "orig_id": 1413432}}, {"model": "metainfo.source", "pk": 9135, "fields": {"orig_filename": "Mautner-Markhof_Karl-Ferdinand_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167", "author": "", "orig_id": 1413433}}, {"model": "metainfo.source", "pk": 9136, "fields": {"orig_filename": "Mautner-Markhof_Manfred_1903_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1425243}}, {"model": "metainfo.source", "pk": 9137, "fields": {"orig_filename": "Mautner_Eduard_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 164", "author": "", "orig_id": 1413424}}, {"model": "metainfo.source", "pk": 9138, "fields": {"orig_filename": "Mautner_Isaac_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413425}}, {"model": "metainfo.source", "pk": 9139, "fields": {"orig_filename": "Mautner_Isidor_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413426}}, {"model": "metainfo.source", "pk": 9140, "fields": {"orig_filename": "Mautner_Konrad_1880_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413427}}, {"model": "metainfo.source", "pk": 9141, "fields": {"orig_filename": "Mautner_Stephan_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413428}}, {"model": "metainfo.source", "pk": 9142, "fields": {"orig_filename": "Mautschka_Hans_1888_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167", "author": "", "orig_id": 1413434}}, {"model": "metainfo.source", "pk": 9143, "fields": {"orig_filename": "Max-Wachstein_Emanuel_1810_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168", "author": "", "orig_id": 1413505}}, {"model": "metainfo.source", "pk": 9144, "fields": {"orig_filename": "Maximilian-Josef___1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168f.", "author": "", "orig_id": 1413507}}, {"model": "metainfo.source", "pk": 9145, "fields": {"orig_filename": "Max_Gabriel-Cornelius_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167f.", "author": "", "orig_id": 1413435}}, {"model": "metainfo.source", "pk": 9146, "fields": {"orig_filename": "Max_Josef_1804_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168", "author": "", "orig_id": 1413504}}, {"model": "metainfo.source", "pk": 9147, "fields": {"orig_filename": "Mayburger_Josef_1814_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170", "author": "", "orig_id": 1413510}}, {"model": "metainfo.source", "pk": 9148, "fields": {"orig_filename": "Maydl_Karel_1853_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170f.", "author": "", "orig_id": 1413511}}, {"model": "metainfo.source", "pk": 9149, "fields": {"orig_filename": "Maylender_Michele_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171", "author": "", "orig_id": 1413512}}, {"model": "metainfo.source", "pk": 9150, "fields": {"orig_filename": "Mayseder_Joseph_1789_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171", "author": "", "orig_id": 1413513}}, {"model": "metainfo.source", "pk": 9151, "fields": {"orig_filename": "Maytner_Alberta_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171f.", "author": "", "orig_id": 1413514}}, {"model": "metainfo.source", "pk": 9152, "fields": {"orig_filename": "Maywald_Karl_1814_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413515}}, {"model": "metainfo.source", "pk": 9153, "fields": {"orig_filename": "May_Albert-Alexis_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 169f.", "author": "", "orig_id": 1413508}}, {"model": "metainfo.source", "pk": 9154, "fields": {"orig_filename": "May_Matthias_1884_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170", "author": "", "orig_id": 1413509}}, {"model": "metainfo.source", "pk": 9155, "fields": {"orig_filename": "Mazagg_Siegfried_1902_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413516}}, {"model": "metainfo.source", "pk": 9156, "fields": {"orig_filename": "Mazanowski_Antoni_1858_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413517}}, {"model": "metainfo.source", "pk": 9157, "fields": {"orig_filename": "Mazegger_Bernard_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172f.", "author": "", "orig_id": 1413518}}, {"model": "metainfo.source", "pk": 9158, "fields": {"orig_filename": "Mazegger_Bernhard_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 173", "author": "", "orig_id": 1413519}}, {"model": "metainfo.source", "pk": 9159, "fields": {"orig_filename": "Mazelle_Eduard_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 173f.", "author": "", "orig_id": 1413520}}, {"model": "metainfo.source", "pk": 9160, "fields": {"orig_filename": "Mazgon_Anton_1812_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413521}}, {"model": "metainfo.source", "pk": 9161, "fields": {"orig_filename": "Mazuranic_Antun_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413522}}, {"model": "metainfo.source", "pk": 9162, "fields": {"orig_filename": "Mazuranic_Bogoslav_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413523}}, {"model": "metainfo.source", "pk": 9163, "fields": {"orig_filename": "Mazuranic_Fran-Vladimir_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174f.", "author": "", "orig_id": 1413524}}, {"model": "metainfo.source", "pk": 9164, "fields": {"orig_filename": "Mazuranic_Ivan_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 175f.", "author": "", "orig_id": 1413525}}, {"model": "metainfo.source", "pk": 9165, "fields": {"orig_filename": "Mazuranic_Matija_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 176", "author": "", "orig_id": 1413593}}, {"model": "metainfo.source", "pk": 9166, "fields": {"orig_filename": "Mazuranic_Vladimir_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 176", "author": "", "orig_id": 1413594}}, {"model": "metainfo.source", "pk": 9167, "fields": {"orig_filename": "Mazzetti-Roccanova_Anton_1784_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413595}}, {"model": "metainfo.source", "pk": 9168, "fields": {"orig_filename": "Mazzoleni_Paolo_1831_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413596}}, {"model": "metainfo.source", "pk": 9169, "fields": {"orig_filename": "Mazzucato_Alberto_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413597}}, {"model": "metainfo.source", "pk": 9170, "fields": {"orig_filename": "Mazzura_Lav_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177f.", "author": "", "orig_id": 1413598}}, {"model": "metainfo.source", "pk": 9171, "fields": {"orig_filename": "Mazzura_Sime_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413599}}, {"model": "metainfo.source", "pk": 9172, "fields": {"orig_filename": "Mebus_Eduard_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413600}}, {"model": "metainfo.source", "pk": 9173, "fields": {"orig_filename": "Mebus_Maximiliane_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413601}}, {"model": "metainfo.source", "pk": 9174, "fields": {"orig_filename": "Mecenseffy_Artur_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178f.", "author": "", "orig_id": 1413602}}, {"model": "metainfo.source", "pk": 9175, "fields": {"orig_filename": "Mecenseffy_Emil_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179", "author": "", "orig_id": 1413603}}, {"model": "metainfo.source", "pk": 9176, "fields": {"orig_filename": "Mecherzynski_Karol_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179", "author": "", "orig_id": 1413604}}, {"model": "metainfo.source", "pk": 9177, "fields": {"orig_filename": "Mechetti_Pietro_1777_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179f.", "author": "", "orig_id": 1413605}}, {"model": "metainfo.source", "pk": 9178, "fields": {"orig_filename": "Mechwart-Belecska_Andreas_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180", "author": "", "orig_id": 1413606}}, {"model": "metainfo.source", "pk": 9179, "fields": {"orig_filename": "Mecsery-Tsoor_Daniel_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180", "author": "", "orig_id": 1413607}}, {"model": "metainfo.source", "pk": 9180, "fields": {"orig_filename": "Mecsery-Tsoor_Karl_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180f.", "author": "", "orig_id": 1413608}}, {"model": "metainfo.source", "pk": 9181, "fields": {"orig_filename": "Medakovic_Bogdan_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181", "author": "", "orig_id": 1413609}}, {"model": "metainfo.source", "pk": 9182, "fields": {"orig_filename": "Medakovic_Danilo_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181", "author": "", "orig_id": 1413610}}, {"model": "metainfo.source", "pk": 9183, "fields": {"orig_filename": "Medek_Rudolf_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181f.", "author": "", "orig_id": 1413611}}, {"model": "metainfo.source", "pk": 9184, "fields": {"orig_filename": "Medelhammer_Albin-Johann_1776_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182", "author": "", "orig_id": 1413612}}, {"model": "metainfo.source", "pk": 9185, "fields": {"orig_filename": "Medelsky_Hermine_1884_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2008003}}, {"model": "metainfo.source", "pk": 9186, "fields": {"orig_filename": "Medelsky_Josef_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182", "author": "", "orig_id": 1413613}}, {"model": "metainfo.source", "pk": 9187, "fields": {"orig_filename": "Mederitsch_Johann_1752_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183", "author": "", "orig_id": 1413616}}, {"model": "metainfo.source", "pk": 9188, "fields": {"orig_filename": "Meder_Josef_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183", "author": "", "orig_id": 1413615}}, {"model": "metainfo.source", "pk": 9189, "fields": {"orig_filename": "Medgyes_Lajos_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183f.", "author": "", "orig_id": 1413685}}, {"model": "metainfo.source", "pk": 9190, "fields": {"orig_filename": "Medic_Danilo_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413686}}, {"model": "metainfo.source", "pk": 9191, "fields": {"orig_filename": "Medic_Mojo_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413687}}, {"model": "metainfo.source", "pk": 9192, "fields": {"orig_filename": "Medinger_Johann_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413688}}, {"model": "metainfo.source", "pk": 9193, "fields": {"orig_filename": "Medinger_Wilhelm_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184f.", "author": "", "orig_id": 1413689}}, {"model": "metainfo.source", "pk": 9194, "fields": {"orig_filename": "Medini_Milorad_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185", "author": "", "orig_id": 1413690}}, {"model": "metainfo.source", "pk": 9195, "fields": {"orig_filename": "Mediz_Emilie_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185", "author": "", "orig_id": 1413691}}, {"model": "metainfo.source", "pk": 9196, "fields": {"orig_filename": "Mediz_Karl_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185f.", "author": "", "orig_id": 1413692}}, {"model": "metainfo.source", "pk": 9197, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Alajos_1784_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186", "author": "", "orig_id": 1413693}}, {"model": "metainfo.source", "pk": 9198, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Cezar_1824_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186", "author": "", "orig_id": 1413694}}, {"model": "metainfo.source", "pk": 9199, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Denes_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186f.", "author": "", "orig_id": 1413695}}, {"model": "metainfo.source", "pk": 9200, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Laszlo_1819_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187", "author": "", "orig_id": 1413696}}, {"model": "metainfo.source", "pk": 9201, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Laszlo_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187", "author": "", "orig_id": 1413697}}, {"model": "metainfo.source", "pk": 9202, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Sandor_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187f.", "author": "", "orig_id": 1413698}}, {"model": "metainfo.source", "pk": 9203, "fields": {"orig_filename": "Medovic_Celestin_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413699}}, {"model": "metainfo.source", "pk": 9204, "fields": {"orig_filename": "Medvecky_Karl-Anton_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413700}}, {"model": "metainfo.source", "pk": 9205, "fields": {"orig_filename": "Medveczky_Frigyes_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413701}}, {"model": "metainfo.source", "pk": 9206, "fields": {"orig_filename": "Medved_Anton_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188f.", "author": "", "orig_id": 1413702}}, {"model": "metainfo.source", "pk": 9207, "fields": {"orig_filename": "Medved_Anton_1869_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 189", "author": "", "orig_id": 1413773}}, {"model": "metainfo.source", "pk": 9208, "fields": {"orig_filename": "Meeraus_Robert_1899_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 189f.", "author": "", "orig_id": 1413774}}, {"model": "metainfo.source", "pk": 9209, "fields": {"orig_filename": "Megerle-Muehlfeld_Eugen-Alexander_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190f.", "author": "", "orig_id": 1413777}}, {"model": "metainfo.source", "pk": 9210, "fields": {"orig_filename": "Megerle-Muehlfeld_Johann-Georg_1780_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413778}}, {"model": "metainfo.source", "pk": 9211, "fields": {"orig_filename": "Megerle_Julius_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190", "author": "", "orig_id": 1413775}}, {"model": "metainfo.source", "pk": 9212, "fields": {"orig_filename": "Megerle_Therese_1813_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190", "author": "", "orig_id": 1413776}}, {"model": "metainfo.source", "pk": 9213, "fields": {"orig_filename": "Megusar_Franc_1876_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413779}}, {"model": "metainfo.source", "pk": 9214, "fields": {"orig_filename": "Megyeri_Dezsoe_1857_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413780}}, {"model": "metainfo.source", "pk": 9215, "fields": {"orig_filename": "Megyeri_Karoly_1798_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191f.", "author": "", "orig_id": 1413781}}, {"model": "metainfo.source", "pk": 9216, "fields": {"orig_filename": "Mehes_Samuel_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192", "author": "", "orig_id": 1413782}}, {"model": "metainfo.source", "pk": 9217, "fields": {"orig_filename": "Mehoffer_Joseph_1786_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192", "author": "", "orig_id": 1413783}}, {"model": "metainfo.source", "pk": 9218, "fields": {"orig_filename": "Mehoffer_Jozef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192f.", "author": "", "orig_id": 1413784}}, {"model": "metainfo.source", "pk": 9219, "fields": {"orig_filename": "Mehoffer_Rudolf_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193", "author": "", "orig_id": 1413785}}, {"model": "metainfo.source", "pk": 9220, "fields": {"orig_filename": "Mehr_Robert_1886_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193", "author": "", "orig_id": 1413786}}, {"model": "metainfo.source", "pk": 9221, "fields": {"orig_filename": "Maschek-Maasburg_Michael-Friedrich_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1408573}}, {"model": "metainfo.source", "pk": 9222, "fields": {"orig_filename": "Maschek_Friedrich_1849_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1412604}}, {"model": "metainfo.source", "pk": 9223, "fields": {"orig_filename": "Maschek_Heinrich_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1408572}}, {"model": "metainfo.source", "pk": 9224, "fields": {"orig_filename": "Maschka_Josef_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27), S. 126", "author": "", "orig_id": 1467314}}, {"model": "metainfo.source", "pk": 9225, "fields": {"orig_filename": "Maschke_Hans_1853_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408575}}, {"model": "metainfo.source", "pk": 9226, "fields": {"orig_filename": "Masek_Frantisek_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408576}}, {"model": "metainfo.source", "pk": 9227, "fields": {"orig_filename": "Masek_Gaspar_1794_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408577}}, {"model": "metainfo.source", "pk": 9228, "fields": {"orig_filename": "Masek_Kamilo_1831_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126f.", "author": "", "orig_id": 1408578}}, {"model": "metainfo.source", "pk": 9229, "fields": {"orig_filename": "Masek_Karel_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 127", "author": "", "orig_id": 1408579}}, {"model": "metainfo.source", "pk": 9230, "fields": {"orig_filename": "Masek_Pavel-Lambert_1761_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 127", "author": "", "orig_id": 1408580}}, {"model": "metainfo.source", "pk": 9231, "fields": {"orig_filename": "Masek_Vincenz_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 128", "author": "", "orig_id": 1408581}}, {"model": "metainfo.source", "pk": 9232, "fields": {"orig_filename": "Maselj_Fran_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 128f.", "author": "", "orig_id": 1408582}}, {"model": "metainfo.source", "pk": 9233, "fields": {"orig_filename": "Masic_Nikola_1852_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129", "author": "", "orig_id": 1408583}}, {"model": "metainfo.source", "pk": 9234, "fields": {"orig_filename": "Masik_Emil_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129", "author": "", "orig_id": 1413054}}, {"model": "metainfo.source", "pk": 9235, "fields": {"orig_filename": "Maska_Karel-Jaroslav_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129f.", "author": "", "orig_id": 1413055}}, {"model": "metainfo.source", "pk": 9236, "fields": {"orig_filename": "Maslowski_Ludwik_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413056}}, {"model": "metainfo.source", "pk": 9237, "fields": {"orig_filename": "Masoch_Franciszek_1763_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413057}}, {"model": "metainfo.source", "pk": 9238, "fields": {"orig_filename": "Massak_Franz_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413058}}, {"model": "metainfo.source", "pk": 9239, "fields": {"orig_filename": "Massalongo_Abramo-Bartolommeo_1824_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130f.", "author": "", "orig_id": 1413059}}, {"model": "metainfo.source", "pk": 9240, "fields": {"orig_filename": "Massalongo_Caro-Benigno_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 131", "author": "", "orig_id": 1413060}}, {"model": "metainfo.source", "pk": 9241, "fields": {"orig_filename": "Massari_Julius_1845_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 131f.", "author": "", "orig_id": 1413061}}, {"model": "metainfo.source", "pk": 9242, "fields": {"orig_filename": "Mastalka_Jindrich_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413062}}, {"model": "metainfo.source", "pk": 9243, "fields": {"orig_filename": "Maszkowski_Jan_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413063}}, {"model": "metainfo.source", "pk": 9244, "fields": {"orig_filename": "Maszkowski_Karol_1830_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413064}}, {"model": "metainfo.source", "pk": 9245, "fields": {"orig_filename": "Maszkowski_Karol_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413065}}, {"model": "metainfo.source", "pk": 9246, "fields": {"orig_filename": "Maszkowski_Marceli_1837_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413066}}, {"model": "metainfo.source", "pk": 9247, "fields": {"orig_filename": "Masznyik_Endre_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413067}}, {"model": "metainfo.source", "pk": 9248, "fields": {"orig_filename": "Mataja_Emilie_1855_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133f.", "author": "", "orig_id": 1413068}}, {"model": "metainfo.source", "pk": 9249, "fields": {"orig_filename": "Mataja_Heinrich_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 134f.", "author": "", "orig_id": 1413069}}, {"model": "metainfo.source", "pk": 9250, "fields": {"orig_filename": "Mataja_Viktor_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413070}}, {"model": "metainfo.source", "pk": 9251, "fields": {"orig_filename": "Matakiewicz_Antoni_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413071}}, {"model": "metainfo.source", "pk": 9252, "fields": {"orig_filename": "Matakiewicz_Maksymilian_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413072}}, {"model": "metainfo.source", "pk": 9253, "fields": {"orig_filename": "Matas_Antun-Konstantin_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413073}}, {"model": "metainfo.source", "pk": 9254, "fields": {"orig_filename": "Matcovich_Enrico_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413074}}, {"model": "metainfo.source", "pk": 9255, "fields": {"orig_filename": "Mategczek_Eduard_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413075}}, {"model": "metainfo.source", "pk": 9256, "fields": {"orig_filename": "Matejcek_Antonin_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136f.", "author": "", "orig_id": 1413076}}, {"model": "metainfo.source", "pk": 9257, "fields": {"orig_filename": "Matejka_Bohumil_1867_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137", "author": "", "orig_id": 1413144}}, {"model": "metainfo.source", "pk": 9258, "fields": {"orig_filename": "Matejka_Josef_1879_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137", "author": "", "orig_id": 1413145}}, {"model": "metainfo.source", "pk": 9259, "fields": {"orig_filename": "Matejko_Theo_1893_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413146}}, {"model": "metainfo.source", "pk": 9260, "fields": {"orig_filename": "Matejko_Franciszek-Ksawery-Edward_1828_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137f.", "author": "", "orig_id": 1413147}}, {"model": "metainfo.source", "pk": 9261, "fields": {"orig_filename": "Matejko_Jan_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138", "author": "", "orig_id": 1413148}}, {"model": "metainfo.source", "pk": 9262, "fields": {"orig_filename": "Matejovsky_Philip-Karl_1820_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138", "author": "", "orig_id": 1413149}}, {"model": "metainfo.source", "pk": 9263, "fields": {"orig_filename": "Matek_Blaz_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138f.", "author": "", "orig_id": 1413150}}, {"model": "metainfo.source", "pk": 9264, "fields": {"orig_filename": "Materna_Amalia_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 139", "author": "", "orig_id": 1413151}}, {"model": "metainfo.source", "pk": 9265, "fields": {"orig_filename": "Materna_Rudolf_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 139f.", "author": "", "orig_id": 1413152}}, {"model": "metainfo.source", "pk": 9266, "fields": {"orig_filename": "Maternova_Pavla_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413153}}, {"model": "metainfo.source", "pk": 9267, "fields": {"orig_filename": "Mathes-Bilabruck_Karl_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413155}}, {"model": "metainfo.source", "pk": 9268, "fields": {"orig_filename": "Mathesius_Vilem_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140f.", "author": "", "orig_id": 1413156}}, {"model": "metainfo.source", "pk": 9269, "fields": {"orig_filename": "Mathes_Michael_1814_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413154}}, {"model": "metainfo.source", "pk": 9270, "fields": {"orig_filename": "Mathiowitz_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 141", "author": "", "orig_id": 1413157}}, {"model": "metainfo.source", "pk": 9271, "fields": {"orig_filename": "Mathis-Treustadt_Johann-Martin_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 141f.", "author": "", "orig_id": 1413158}}, {"model": "metainfo.source", "pk": 9272, "fields": {"orig_filename": "Maticevic_Stjepan_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142", "author": "", "orig_id": 1413160}}, {"model": "metainfo.source", "pk": 9273, "fields": {"orig_filename": "Matic_Eugen_1889_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142", "author": "", "orig_id": 1413159}}, {"model": "metainfo.source", "pk": 9274, "fields": {"orig_filename": "Matiegka_Jindrich_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142f.", "author": "", "orig_id": 1413161}}, {"model": "metainfo.source", "pk": 9275, "fields": {"orig_filename": "Matiegka_Wenzel-Thomas_1773_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413162}}, {"model": "metainfo.source", "pk": 9276, "fields": {"orig_filename": "Matijevic_Pavao_1867_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413163}}, {"model": "metainfo.source", "pk": 9277, "fields": {"orig_filename": "Matikian_Alexander_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413164}}, {"model": "metainfo.source", "pk": 9278, "fields": {"orig_filename": "Matkovic_Jakov_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143f.", "author": "", "orig_id": 1413165}}, {"model": "metainfo.source", "pk": 9279, "fields": {"orig_filename": "Matkovic_Petar_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413233}}, {"model": "metainfo.source", "pk": 9280, "fields": {"orig_filename": "Matlakowski_Wladyslaw_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413234}}, {"model": "metainfo.source", "pk": 9281, "fields": {"orig_filename": "Matlekovits_Sandor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413235}}, {"model": "metainfo.source", "pk": 9282, "fields": {"orig_filename": "Matosch_Anton_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 145", "author": "", "orig_id": 1413237}}, {"model": "metainfo.source", "pk": 9283, "fields": {"orig_filename": "Matos_Antun-Gustav_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144f.", "author": "", "orig_id": 1413236}}, {"model": "metainfo.source", "pk": 9284, "fields": {"orig_filename": "Matouschek_Franz_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 145f.", "author": "", "orig_id": 1413238}}, {"model": "metainfo.source", "pk": 9285, "fields": {"orig_filename": "Matousek_Josef_1840_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146", "author": "", "orig_id": 1413239}}, {"model": "metainfo.source", "pk": 9286, "fields": {"orig_filename": "Matousek_Josef_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146", "author": "", "orig_id": 1413240}}, {"model": "metainfo.source", "pk": 9287, "fields": {"orig_filename": "Matras_Franz-Eduard_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146f.", "author": "", "orig_id": 1413241}}, {"model": "metainfo.source", "pk": 9288, "fields": {"orig_filename": "Matras_Josef_1832_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 147", "author": "", "orig_id": 1413242}}, {"model": "metainfo.source", "pk": 9289, "fields": {"orig_filename": "Matscheg_Anton_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 148", "author": "", "orig_id": 1413244}}, {"model": "metainfo.source", "pk": 9290, "fields": {"orig_filename": "Matscheko_Michael_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 148", "author": "", "orig_id": 1413245}}, {"model": "metainfo.source", "pk": 9291, "fields": {"orig_filename": "Matschnig_Eleonore_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413246}}, {"model": "metainfo.source", "pk": 9292, "fields": {"orig_filename": "Matsch_Franz_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 147f.", "author": "", "orig_id": 1413243}}, {"model": "metainfo.source", "pk": 9293, "fields": {"orig_filename": "Mattanovich_Erwin_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413249}}, {"model": "metainfo.source", "pk": 9294, "fields": {"orig_filename": "Mattanovic_Ernst_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413248}}, {"model": "metainfo.source", "pk": 9295, "fields": {"orig_filename": "Mattauschek_Emil_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413251}}, {"model": "metainfo.source", "pk": 9296, "fields": {"orig_filename": "Mattausch_Franz_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149f.", "author": "", "orig_id": 1413250}}, {"model": "metainfo.source", "pk": 9297, "fields": {"orig_filename": "Mattoni_Heinrich_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413252}}, {"model": "metainfo.source", "pk": 9298, "fields": {"orig_filename": "Mattuschka_Ignaz_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 151f.", "author": "", "orig_id": 1413255}}, {"model": "metainfo.source", "pk": 9299, "fields": {"orig_filename": "Mattus_Jaroslav_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413254}}, {"model": "metainfo.source", "pk": 9300, "fields": {"orig_filename": "Mattus_Karel_1836_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150f.", "author": "", "orig_id": 1413253}}, {"model": "metainfo.source", "pk": 9301, "fields": {"orig_filename": "Matt_Georg_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413247}}, {"model": "metainfo.source", "pk": 9302, "fields": {"orig_filename": "Matunak_Michal_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413256}}, {"model": "metainfo.source", "pk": 9303, "fields": {"orig_filename": "Matuska_Janko_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413325}}, {"model": "metainfo.source", "pk": 9304, "fields": {"orig_filename": "Matyas_Florian_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413326}}, {"model": "metainfo.source", "pk": 9305, "fields": {"orig_filename": "Matzenauer_Antonin_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152f.", "author": "", "orig_id": 1413327}}, {"model": "metainfo.source", "pk": 9306, "fields": {"orig_filename": "Matzenauer_Engelbert_1820_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153", "author": "", "orig_id": 1413328}}, {"model": "metainfo.source", "pk": 9307, "fields": {"orig_filename": "Matzenauer_Josef_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153", "author": "", "orig_id": 1413329}}, {"model": "metainfo.source", "pk": 9308, "fields": {"orig_filename": "Matzenauer_Rudolf_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153f.", "author": "", "orig_id": 1413330}}, {"model": "metainfo.source", "pk": 9309, "fields": {"orig_filename": "Matzenkopf_Franz-Xaver_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413331}}, {"model": "metainfo.source", "pk": 9310, "fields": {"orig_filename": "Matzgeller_Michael_1775_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413332}}, {"model": "metainfo.source", "pk": 9311, "fields": {"orig_filename": "Matzinger_Franz_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413333}}, {"model": "metainfo.source", "pk": 9312, "fields": {"orig_filename": "Matzinger_Stephan_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413334}}, {"model": "metainfo.source", "pk": 9313, "fields": {"orig_filename": "Matzura_Josef_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413335}}, {"model": "metainfo.source", "pk": 9314, "fields": {"orig_filename": "Mauermann_Max_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413337}}, {"model": "metainfo.source", "pk": 9315, "fields": {"orig_filename": "Mauksch_Thomas_1749_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155f.", "author": "", "orig_id": 1413338}}, {"model": "metainfo.source", "pk": 9316, "fields": {"orig_filename": "Mauler-Elisenau_Josef_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156", "author": "", "orig_id": 1413339}}, {"model": "metainfo.source", "pk": 9317, "fields": {"orig_filename": "Maupas_Petar-Dujam_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156", "author": "", "orig_id": 1413340}}, {"model": "metainfo.source", "pk": 9318, "fields": {"orig_filename": "Mauracher_Matthias_1788_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156f.", "author": "", "orig_id": 1413341}}, {"model": "metainfo.source", "pk": 9319, "fields": {"orig_filename": "Maurer_Ferdinand_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157", "author": "", "orig_id": 1413342}}, {"model": "metainfo.source", "pk": 9320, "fields": {"orig_filename": "Maurer_Franz_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157", "author": "", "orig_id": 1413343}}, {"model": "metainfo.source", "pk": 9321, "fields": {"orig_filename": "Maurer_Joseph-Karl_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413345}}, {"model": "metainfo.source", "pk": 9322, "fields": {"orig_filename": "Maurer_Joseph-Valentin_1797_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413346}}, {"model": "metainfo.source", "pk": 9323, "fields": {"orig_filename": "Maurer_Joseph_1853_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157f.", "author": "", "orig_id": 1413344}}, {"model": "metainfo.source", "pk": 9324, "fields": {"orig_filename": "Maurig-Sarnfeld_Ernst_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413347}}, {"model": "metainfo.source", "pk": 9325, "fields": {"orig_filename": "Mariassy-Markusfalva-Batizfalva_Bela_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90", "author": "", "orig_id": 1408126}}, {"model": "metainfo.source", "pk": 9326, "fields": {"orig_filename": "Mariassy-Markusfalva-Batizfalva_Janos_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90", "author": "", "orig_id": 1408128}}, {"model": "metainfo.source", "pk": 9327, "fields": {"orig_filename": "Maric_Josip_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90f.", "author": "", "orig_id": 1408127}}, {"model": "metainfo.source", "pk": 9328, "fields": {"orig_filename": "Marienburger_Georg_1751_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408131}}, {"model": "metainfo.source", "pk": 9329, "fields": {"orig_filename": "Marienburg_Georg-Friedrich_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408129}}, {"model": "metainfo.source", "pk": 9330, "fields": {"orig_filename": "Marienburg_Lukas-Joseph_1770_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408130}}, {"model": "metainfo.source", "pk": 9331, "fields": {"orig_filename": "Marijanovic_Stjepan_1794_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91f.", "author": "", "orig_id": 1408132}}, {"model": "metainfo.source", "pk": 9332, "fields": {"orig_filename": "Marik_Bohuslav_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92", "author": "", "orig_id": 1408133}}, {"model": "metainfo.source", "pk": 9333, "fields": {"orig_filename": "Marik_Frantisek_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92", "author": "", "orig_id": 1408204}}, {"model": "metainfo.source", "pk": 9334, "fields": {"orig_filename": "Marik_Vaclav_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92f.", "author": "", "orig_id": 1408203}}, {"model": "metainfo.source", "pk": 9335, "fields": {"orig_filename": "Marinelli_Ernst_1824_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408205}}, {"model": "metainfo.source", "pk": 9336, "fields": {"orig_filename": "Marinitsch_Josef_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408207}}, {"model": "metainfo.source", "pk": 9337, "fields": {"orig_filename": "Marini_Ignazio_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408206}}, {"model": "metainfo.source", "pk": 9338, "fields": {"orig_filename": "Mariot_Emil_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93f.", "author": "", "orig_id": 1408208}}, {"model": "metainfo.source", "pk": 9339, "fields": {"orig_filename": "Markbreit_Leopold_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94", "author": "", "orig_id": 1408210}}, {"model": "metainfo.source", "pk": 9340, "fields": {"orig_filename": "Markic_Mihael_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408214}}, {"model": "metainfo.source", "pk": 9341, "fields": {"orig_filename": "Markiewicz_Dominik-Jan_1761_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95f.", "author": "", "orig_id": 1408215}}, {"model": "metainfo.source", "pk": 9342, "fields": {"orig_filename": "Markiewicz_Roman_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96", "author": "", "orig_id": 1408216}}, {"model": "metainfo.source", "pk": 9343, "fields": {"orig_filename": "Marki_Anton_1759_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94f.", "author": "", "orig_id": 1408211}}, {"model": "metainfo.source", "pk": 9344, "fields": {"orig_filename": "Marki_Samuel_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408212}}, {"model": "metainfo.source", "pk": 9345, "fields": {"orig_filename": "Marki_Sandor_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408213}}, {"model": "metainfo.source", "pk": 9346, "fields": {"orig_filename": "Markl_Andreas_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96", "author": "", "orig_id": 1408217}}, {"model": "metainfo.source", "pk": 9347, "fields": {"orig_filename": "Markl_Bohumil_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96f.", "author": "", "orig_id": 1408218}}, {"model": "metainfo.source", "pk": 9348, "fields": {"orig_filename": "Markl_Moritz_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408219}}, {"model": "metainfo.source", "pk": 9349, "fields": {"orig_filename": "Markovic-Adamov_Pavle_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98f.", "author": "", "orig_id": 1408292}}, {"model": "metainfo.source", "pk": 9350, "fields": {"orig_filename": "Markovic_Franjo_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408222}}, {"model": "metainfo.source", "pk": 9351, "fields": {"orig_filename": "Markovic_Ivan_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408223}}, {"model": "metainfo.source", "pk": 9352, "fields": {"orig_filename": "Markovic_Marijan_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408224}}, {"model": "metainfo.source", "pk": 9353, "fields": {"orig_filename": "Markovits_Adalbert_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 99", "author": "", "orig_id": 1408293}}, {"model": "metainfo.source", "pk": 9354, "fields": {"orig_filename": "Markovits_Ivan-Theodor_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 99f.", "author": "", "orig_id": 1408294}}, {"model": "metainfo.source", "pk": 9355, "fields": {"orig_filename": "Markowicz_Artur_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100", "author": "", "orig_id": 1408295}}, {"model": "metainfo.source", "pk": 9356, "fields": {"orig_filename": "Markowski_Jozef_1860_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100", "author": "", "orig_id": 1408296}}, {"model": "metainfo.source", "pk": 9357, "fields": {"orig_filename": "Markowski_Jozef_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100f.", "author": "", "orig_id": 1466818}}, {"model": "metainfo.source", "pk": 9358, "fields": {"orig_filename": "Markowsky_August-Maria_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 101", "author": "", "orig_id": 1408297}}, {"model": "metainfo.source", "pk": 9359, "fields": {"orig_filename": "Marko_Karoly_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408220}}, {"model": "metainfo.source", "pk": 9360, "fields": {"orig_filename": "Marko_Miklos_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408221}}, {"model": "metainfo.source", "pk": 9361, "fields": {"orig_filename": "Marktanner-Turneretscher_Gottlieb_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 101f.", "author": "", "orig_id": 1408298}}, {"model": "metainfo.source", "pk": 9362, "fields": {"orig_filename": "Markusovszky_Lajos_1815_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408303}}, {"model": "metainfo.source", "pk": 9363, "fields": {"orig_filename": "Markusovszky_Samuel_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408304}}, {"model": "metainfo.source", "pk": 9364, "fields": {"orig_filename": "Markus_Adalbert_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408299}}, {"model": "metainfo.source", "pk": 9365, "fields": {"orig_filename": "Markus_Emilia_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408300}}, {"model": "metainfo.source", "pk": 9366, "fields": {"orig_filename": "Markus_Jordan-Kajetan_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408301}}, {"model": "metainfo.source", "pk": 9367, "fields": {"orig_filename": "Markus_Jozsef_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408302}}, {"model": "metainfo.source", "pk": 9368, "fields": {"orig_filename": "Mark_Abraham-Jakob_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94", "author": "", "orig_id": 1408209}}, {"model": "metainfo.source", "pk": 9369, "fields": {"orig_filename": "Marlin_Josef_1824_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103f.", "author": "", "orig_id": 1408305}}, {"model": "metainfo.source", "pk": 9370, "fields": {"orig_filename": "Marmorek_Alexander_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 104", "author": "", "orig_id": 1408306}}, {"model": "metainfo.source", "pk": 9371, "fields": {"orig_filename": "Marmorek_Oskar_1863_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 104f.", "author": "", "orig_id": 1408307}}, {"model": "metainfo.source", "pk": 9372, "fields": {"orig_filename": "Marno-Eichenhorst_Adolf_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105f.", "author": "", "orig_id": 1408310}}, {"model": "metainfo.source", "pk": 9373, "fields": {"orig_filename": "Marno_Ernst_1844_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105", "author": "", "orig_id": 1408309}}, {"model": "metainfo.source", "pk": 9374, "fields": {"orig_filename": "Marn_Josip_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105", "author": "", "orig_id": 1408308}}, {"model": "metainfo.source", "pk": 9375, "fields": {"orig_filename": "Maroicic-Madonna-Monte_Ambros-Georg-Wilhelm_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106", "author": "", "orig_id": 1408311}}, {"model": "metainfo.source", "pk": 9376, "fields": {"orig_filename": "Maroicic-Madonna-Monte_Josef_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106", "author": "", "orig_id": 1408378}}, {"model": "metainfo.source", "pk": 9377, "fields": {"orig_filename": "Marold_Ludek_1865_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106f.", "author": "", "orig_id": 1408379}}, {"model": "metainfo.source", "pk": 9378, "fields": {"orig_filename": "Maroli_Rudolf-Johann-Emil_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107", "author": "", "orig_id": 1408380}}, {"model": "metainfo.source", "pk": 9379, "fields": {"orig_filename": "Marothy-Soltesova_Elena_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107", "author": "", "orig_id": 1408381}}, {"model": "metainfo.source", "pk": 9380, "fields": {"orig_filename": "Marovich_Anna_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107f.", "author": "", "orig_id": 1408382}}, {"model": "metainfo.source", "pk": 9381, "fields": {"orig_filename": "Marquart_Friedrich_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408383}}, {"model": "metainfo.source", "pk": 9382, "fields": {"orig_filename": "Marsal-Petrovsky_Gustav_1862_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408385}}, {"model": "metainfo.source", "pk": 9383, "fields": {"orig_filename": "Marsano_Wilhelm_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109", "author": "", "orig_id": 1408387}}, {"model": "metainfo.source", "pk": 9384, "fields": {"orig_filename": "Marsan_Robert_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108f.", "author": "", "orig_id": 1408386}}, {"model": "metainfo.source", "pk": 9385, "fields": {"orig_filename": "Marschalko_Johann_1818_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109", "author": "", "orig_id": 1408388}}, {"model": "metainfo.source", "pk": 9386, "fields": {"orig_filename": "Marschall_Godfried_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109f.", "author": "", "orig_id": 1408389}}, {"model": "metainfo.source", "pk": 9387, "fields": {"orig_filename": "Marschan_Josef-Wilhelm_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110", "author": "", "orig_id": 1408390}}, {"model": "metainfo.source", "pk": 9388, "fields": {"orig_filename": "Marschner_Franz-Ludwig_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110", "author": "", "orig_id": 1408391}}, {"model": "metainfo.source", "pk": 9389, "fields": {"orig_filename": "Marschner_Franz-Vinzenz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110f.", "author": "", "orig_id": 1408392}}, {"model": "metainfo.source", "pk": 9390, "fields": {"orig_filename": "Marschner_Robert-Anton_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408393}}, {"model": "metainfo.source", "pk": 9391, "fields": {"orig_filename": "Marsilli_Francesco-Antonio_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408395}}, {"model": "metainfo.source", "pk": 9392, "fields": {"orig_filename": "Marsoner_Rudolf_1899_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408394}}, {"model": "metainfo.source", "pk": 9393, "fields": {"orig_filename": "Mars_Antoni_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408384}}, {"model": "metainfo.source", "pk": 9394, "fields": {"orig_filename": "Marterer_Ferdinand_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112", "author": "", "orig_id": 1408397}}, {"model": "metainfo.source", "pk": 9395, "fields": {"orig_filename": "Martic_Grgo_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112", "author": "", "orig_id": 1408398}}, {"model": "metainfo.source", "pk": 9396, "fields": {"orig_filename": "Martinak_Eduard_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114f.", "author": "", "orig_id": 1408474}}, {"model": "metainfo.source", "pk": 9397, "fields": {"orig_filename": "Martinak_Heinrich_1826_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115", "author": "", "orig_id": 1408475}}, {"model": "metainfo.source", "pk": 9398, "fields": {"orig_filename": "Martinek_Robert_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115", "author": "", "orig_id": 1408476}}, {"model": "metainfo.source", "pk": 9399, "fields": {"orig_filename": "Martinelli_Louise_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115f.", "author": "", "orig_id": 1408477}}, {"model": "metainfo.source", "pk": 9400, "fields": {"orig_filename": "Martinelli_Ludwig_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 116", "author": "", "orig_id": 1408478}}, {"model": "metainfo.source", "pk": 9401, "fields": {"orig_filename": "Martinez_August_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 117", "author": "", "orig_id": 1408479}}, {"model": "metainfo.source", "pk": 9402, "fields": {"orig_filename": "Martini_Karl-Wilhelm_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 117", "author": "", "orig_id": 1408481}}, {"model": "metainfo.source", "pk": 9403, "fields": {"orig_filename": "Martinu_Jan_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408482}}, {"model": "metainfo.source", "pk": 9404, "fields": {"orig_filename": "Martiny-Malastow_Hugo_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408484}}, {"model": "metainfo.source", "pk": 9405, "fields": {"orig_filename": "Martiny_Koloman_1864_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408483}}, {"model": "metainfo.source", "pk": 9406, "fields": {"orig_filename": "Martin_Anton_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112f.", "author": "", "orig_id": 1408399}}, {"model": "metainfo.source", "pk": 9407, "fields": {"orig_filename": "Martin_Franz_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 113f.", "author": "", "orig_id": 1408471}}, {"model": "metainfo.source", "pk": 9408, "fields": {"orig_filename": "Martin_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114", "author": "", "orig_id": 1408472}}, {"model": "metainfo.source", "pk": 9409, "fields": {"orig_filename": "Martin_Lajos_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114", "author": "", "orig_id": 1408473}}, {"model": "metainfo.source", "pk": 9410, "fields": {"orig_filename": "Martius_Anton_1794_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118f.", "author": "", "orig_id": 1408485}}, {"model": "metainfo.source", "pk": 9411, "fields": {"orig_filename": "Marton-Zsarolyan-Mand_Istvan_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119", "author": "", "orig_id": 1408486}}, {"model": "metainfo.source", "pk": 9412, "fields": {"orig_filename": "Martovyc_Les_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119", "author": "", "orig_id": 1408487}}, {"model": "metainfo.source", "pk": 9413, "fields": {"orig_filename": "Marty_Anton_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119f.", "author": "", "orig_id": 1408488}}, {"model": "metainfo.source", "pk": 9414, "fields": {"orig_filename": "Marun_Lujo_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120", "author": "", "orig_id": 1408489}}, {"model": "metainfo.source", "pk": 9415, "fields": {"orig_filename": "Marussig_Anton_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120", "author": "", "orig_id": 1408490}}, {"model": "metainfo.source", "pk": 9416, "fields": {"orig_filename": "Marx-Marxberg_Wilhelm_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 121f.", "author": "", "orig_id": 1408563}}, {"model": "metainfo.source", "pk": 9417, "fields": {"orig_filename": "Marx_Anton-Maria_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120f.", "author": "", "orig_id": 1408491}}, {"model": "metainfo.source", "pk": 9418, "fields": {"orig_filename": "Marx_Friedrich_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 121", "author": "", "orig_id": 1408562}}, {"model": "metainfo.source", "pk": 9419, "fields": {"orig_filename": "Maryanski_Walery-Ostoya_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408564}}, {"model": "metainfo.source", "pk": 9420, "fields": {"orig_filename": "Marzani-Stainhof-Neuhaus_Carlo_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408565}}, {"model": "metainfo.source", "pk": 9421, "fields": {"orig_filename": "Marzari-Pencati_Giuseppe_1779_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408566}}, {"model": "metainfo.source", "pk": 9422, "fields": {"orig_filename": "Marzik_Thomas_1810_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122f.", "author": "", "orig_id": 1408567}}, {"model": "metainfo.source", "pk": 9423, "fields": {"orig_filename": "Masaidek_Franz-Friedrich_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123", "author": "", "orig_id": 1408568}}, {"model": "metainfo.source", "pk": 9424, "fields": {"orig_filename": "Masaryk_Herbert_1880_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123", "author": "", "orig_id": 1408569}}, {"model": "metainfo.source", "pk": 9425, "fields": {"orig_filename": "Masaryk_Thomas_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123f.", "author": "", "orig_id": 1408570}}, {"model": "metainfo.source", "pk": 9426, "fields": {"orig_filename": "Maschat_Josef_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 124", "author": "", "orig_id": 1408571}}, {"model": "metainfo.source", "pk": 9427, "fields": {"orig_filename": "Mannagetta-Lerchenau_Johann-Wilhelm_1785_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56", "author": "", "orig_id": 1409192}}, {"model": "metainfo.source", "pk": 9428, "fields": {"orig_filename": "Manner_Josef_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56", "author": "", "orig_id": 1409193}}, {"model": "metainfo.source", "pk": 9429, "fields": {"orig_filename": "Mannheimer_Isak-Noa_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56f.", "author": "", "orig_id": 1409194}}, {"model": "metainfo.source", "pk": 9430, "fields": {"orig_filename": "Mannlicher_Ferdinand_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 57f.", "author": "", "orig_id": 1409196}}, {"model": "metainfo.source", "pk": 9431, "fields": {"orig_filename": "Mannl_Oswald_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 57", "author": "", "orig_id": 1409195}}, {"model": "metainfo.source", "pk": 9432, "fields": {"orig_filename": "Mannsbarth_Franz_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 58", "author": "", "orig_id": 1409197}}, {"model": "metainfo.source", "pk": 9433, "fields": {"orig_filename": "Mannsfeld_Hieronymus_1842_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 58f.", "author": "", "orig_id": 1409198}}, {"model": "metainfo.source", "pk": 9434, "fields": {"orig_filename": "Mann_Jakob_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409188}}, {"model": "metainfo.source", "pk": 9435, "fields": {"orig_filename": "Mann_Maurycy_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54f.", "author": "", "orig_id": 1409189}}, {"model": "metainfo.source", "pk": 9436, "fields": {"orig_filename": "Mann_Oskar_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 55", "author": "", "orig_id": 1409190}}, {"model": "metainfo.source", "pk": 9437, "fields": {"orig_filename": "Manojlovic_Gavro_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59", "author": "", "orig_id": 1409199}}, {"model": "metainfo.source", "pk": 9438, "fields": {"orig_filename": "Manojlovic_Michael_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59", "author": "", "orig_id": 1409200}}, {"model": "metainfo.source", "pk": 9439, "fields": {"orig_filename": "Manojlovic_Svetozar_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59f.", "author": "", "orig_id": 1409201}}, {"model": "metainfo.source", "pk": 9440, "fields": {"orig_filename": "Manowarda-Jana_Eberhard_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409202}}, {"model": "metainfo.source", "pk": 9441, "fields": {"orig_filename": "Manowarda-Jana_Josef_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409203}}, {"model": "metainfo.source", "pk": 9442, "fields": {"orig_filename": "Manschgo_Johann_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409205}}, {"model": "metainfo.source", "pk": 9443, "fields": {"orig_filename": "Mansch_Philipp_1838_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409204}}, {"model": "metainfo.source", "pk": 9444, "fields": {"orig_filename": "Mansfeld_August-Heinrich_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409206}}, {"model": "metainfo.source", "pk": 9445, "fields": {"orig_filename": "Mansfeld_Heinrich-Josef_1785_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409279}}, {"model": "metainfo.source", "pk": 9446, "fields": {"orig_filename": "Mansfeld_Josef_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409280}}, {"model": "metainfo.source", "pk": 9447, "fields": {"orig_filename": "Mansfeld_Moritz_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61f.", "author": "", "orig_id": 1409281}}, {"model": "metainfo.source", "pk": 9448, "fields": {"orig_filename": "Mantler_August_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409282}}, {"model": "metainfo.source", "pk": 9449, "fields": {"orig_filename": "Mantler_Heinrich_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409283}}, {"model": "metainfo.source", "pk": 9450, "fields": {"orig_filename": "Mantuani_Josef_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409284}}, {"model": "metainfo.source", "pk": 9451, "fields": {"orig_filename": "Manussi-Montesole_Alfred_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62f.", "author": "", "orig_id": 1409285}}, {"model": "metainfo.source", "pk": 9452, "fields": {"orig_filename": "Manussi-Montesole_Ferdinand-Karl_1809_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63", "author": "", "orig_id": 1409287}}, {"model": "metainfo.source", "pk": 9453, "fields": {"orig_filename": "Manussi-Montesole_Ferdinand_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63", "author": "", "orig_id": 1409286}}, {"model": "metainfo.source", "pk": 9454, "fields": {"orig_filename": "Manz-Mariensee_Anton_1757_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63f.", "author": "", "orig_id": 1409288}}, {"model": "metainfo.source", "pk": 9455, "fields": {"orig_filename": "Manz-Mariensee_Vinzenz_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409289}}, {"model": "metainfo.source", "pk": 9456, "fields": {"orig_filename": "Manzer_Josef-Dionys_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409290}}, {"model": "metainfo.source", "pk": 9457, "fields": {"orig_filename": "Manzer_Robert_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409291}}, {"model": "metainfo.source", "pk": 9458, "fields": {"orig_filename": "Manzoni_Alessandro_1785_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64f.", "author": "", "orig_id": 1409292}}, {"model": "metainfo.source", "pk": 9459, "fields": {"orig_filename": "Marak_Julius_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 65f.", "author": "", "orig_id": 1409293}}, {"model": "metainfo.source", "pk": 9460, "fields": {"orig_filename": "Marasca_Pietro_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66", "author": "", "orig_id": 1409295}}, {"model": "metainfo.source", "pk": 9461, "fields": {"orig_filename": "Marasse_Mieczyslaw_1840_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66f.", "author": "", "orig_id": 1409296}}, {"model": "metainfo.source", "pk": 9462, "fields": {"orig_filename": "Marastoni_Jakab_1804_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409297}}, {"model": "metainfo.source", "pk": 9463, "fields": {"orig_filename": "Marastoni_Josef_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409298}}, {"model": "metainfo.source", "pk": 9464, "fields": {"orig_filename": "Maras_Raimund_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66", "author": "", "orig_id": 1409294}}, {"model": "metainfo.source", "pk": 9465, "fields": {"orig_filename": "Maratka_Josef_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67f.", "author": "", "orig_id": 1409300}}, {"model": "metainfo.source", "pk": 9466, "fields": {"orig_filename": "Marat_Franz_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409299}}, {"model": "metainfo.source", "pk": 9467, "fields": {"orig_filename": "Marbach_Adolf_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409301}}, {"model": "metainfo.source", "pk": 9468, "fields": {"orig_filename": "Marcantellj-Serravalle_Bernhard_1755_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409303}}, {"model": "metainfo.source", "pk": 9469, "fields": {"orig_filename": "Marceljic_Josip_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68f.", "author": "", "orig_id": 1409373}}, {"model": "metainfo.source", "pk": 9470, "fields": {"orig_filename": "Marcher_Matthias_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409374}}, {"model": "metainfo.source", "pk": 9471, "fields": {"orig_filename": "Marchesetti_Carlo_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409375}}, {"model": "metainfo.source", "pk": 9472, "fields": {"orig_filename": "Marchetti_Prospero_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 71", "author": "", "orig_id": 1409379}}, {"model": "metainfo.source", "pk": 9473, "fields": {"orig_filename": "Marchet_Arthur_1892_1980.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1467303}}, {"model": "metainfo.source", "pk": 9474, "fields": {"orig_filename": "Marchet_Gustav_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 70", "author": "", "orig_id": 1409377}}, {"model": "metainfo.source", "pk": 9475, "fields": {"orig_filename": "Marchet_Julius_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 70f.", "author": "", "orig_id": 1409378}}, {"model": "metainfo.source", "pk": 9476, "fields": {"orig_filename": "Marchlewski_Leon-Pawel_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 71f.", "author": "", "orig_id": 1409380}}, {"model": "metainfo.source", "pk": 9477, "fields": {"orig_filename": "Marchwicki_Zdzislaw_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409381}}, {"model": "metainfo.source", "pk": 9478, "fields": {"orig_filename": "Marcolini_Francesco-Maria_1779_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409383}}, {"model": "metainfo.source", "pk": 9479, "fields": {"orig_filename": "Marconi_Leonard_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409384}}, {"model": "metainfo.source", "pk": 9480, "fields": {"orig_filename": "Marcus_Siegfried_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72f.", "author": "", "orig_id": 1409385}}, {"model": "metainfo.source", "pk": 9481, "fields": {"orig_filename": "Marczali_Henrik_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 73", "author": "", "orig_id": 1409386}}, {"model": "metainfo.source", "pk": 9482, "fields": {"orig_filename": "Mardetschlaeger_Franz_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74", "author": "", "orig_id": 1409387}}, {"model": "metainfo.source", "pk": 9483, "fields": {"orig_filename": "Mareck_Alois-Titus_1819_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74", "author": "", "orig_id": 1409388}}, {"model": "metainfo.source", "pk": 9484, "fields": {"orig_filename": "Mareda_Wenzel-Franz_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74f.", "author": "", "orig_id": 1409389}}, {"model": "metainfo.source", "pk": 9485, "fields": {"orig_filename": "Marek_Antonin_1785_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75", "author": "", "orig_id": 1409390}}, {"model": "metainfo.source", "pk": 9486, "fields": {"orig_filename": "Marek_Ferdinand_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75", "author": "", "orig_id": 1409391}}, {"model": "metainfo.source", "pk": 9487, "fields": {"orig_filename": "Marek_Jan-Jindrich_1803_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75f.", "author": "", "orig_id": 1409392}}, {"model": "metainfo.source", "pk": 9488, "fields": {"orig_filename": "Marek_Karl_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76", "author": "", "orig_id": 1409393}}, {"model": "metainfo.source", "pk": 9489, "fields": {"orig_filename": "Marek_Ludvik-Bohumil_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76", "author": "", "orig_id": 1409394}}, {"model": "metainfo.source", "pk": 9490, "fields": {"orig_filename": "Marek_Zygmunt_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76f.", "author": "", "orig_id": 1409467}}, {"model": "metainfo.source", "pk": 9491, "fields": {"orig_filename": "Marenzeller_Edmund-Oskar_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77", "author": "", "orig_id": 1409468}}, {"model": "metainfo.source", "pk": 9492, "fields": {"orig_filename": "Marenzeller_Emil_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77", "author": "", "orig_id": 1409469}}, {"model": "metainfo.source", "pk": 9493, "fields": {"orig_filename": "Marenzeller_Matthias_1765_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77f.", "author": "", "orig_id": 1409470}}, {"model": "metainfo.source", "pk": 9494, "fields": {"orig_filename": "Marenzi_Franz_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 78", "author": "", "orig_id": 1409471}}, {"model": "metainfo.source", "pk": 9495, "fields": {"orig_filename": "Marenzi_Franz_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 78f.", "author": "", "orig_id": 1409472}}, {"model": "metainfo.source", "pk": 9496, "fields": {"orig_filename": "Mareschall-Bieberstein_Wenzel-Philipp-Leopold_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 81", "author": "", "orig_id": 1409479}}, {"model": "metainfo.source", "pk": 9497, "fields": {"orig_filename": "Maresch_Johann_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80", "author": "", "orig_id": 1409476}}, {"model": "metainfo.source", "pk": 9498, "fields": {"orig_filename": "Maresch_Otto_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80", "author": "", "orig_id": 1409477}}, {"model": "metainfo.source", "pk": 9499, "fields": {"orig_filename": "Maresch_Rudolf_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80f.", "author": "", "orig_id": 1409478}}, {"model": "metainfo.source", "pk": 9500, "fields": {"orig_filename": "Mares_Bohumil_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79", "author": "", "orig_id": 1409473}}, {"model": "metainfo.source", "pk": 9501, "fields": {"orig_filename": "Mares_Frantisek_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79", "author": "", "orig_id": 1409474}}, {"model": "metainfo.source", "pk": 9502, "fields": {"orig_filename": "Mares_Frantisek_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79f.", "author": "", "orig_id": 1409475}}, {"model": "metainfo.source", "pk": 9503, "fields": {"orig_filename": "Mareta_Hugo_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 81f.", "author": "", "orig_id": 1409480}}, {"model": "metainfo.source", "pk": 9504, "fields": {"orig_filename": "Maretich-Riv-Alpon_Eduard_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82", "author": "", "orig_id": 1409483}}, {"model": "metainfo.source", "pk": 9505, "fields": {"orig_filename": "Maretich-Riv-Alpon_Gedeon_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82", "author": "", "orig_id": 1409481}}, {"model": "metainfo.source", "pk": 9506, "fields": {"orig_filename": "Maretzek_Max_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82f.", "author": "", "orig_id": 1409482}}, {"model": "metainfo.source", "pk": 9507, "fields": {"orig_filename": "Margelik_Franz_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409484}}, {"model": "metainfo.source", "pk": 9508, "fields": {"orig_filename": "Margocsy_Jozsef_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409486}}, {"model": "metainfo.source", "pk": 9509, "fields": {"orig_filename": "Margosches_Max_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83f.", "author": "", "orig_id": 1409487}}, {"model": "metainfo.source", "pk": 9510, "fields": {"orig_filename": "Margo_Tivadar_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409485}}, {"model": "metainfo.source", "pk": 9511, "fields": {"orig_filename": "Margreiter_Jakob_1762_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 84", "author": "", "orig_id": 1409488}}, {"model": "metainfo.source", "pk": 9512, "fields": {"orig_filename": "Margules_Max_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 84f.", "author": "", "orig_id": 1409489}}, {"model": "metainfo.source", "pk": 9513, "fields": {"orig_filename": "Margulies_Otto_1899_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1408113}}, {"model": "metainfo.source", "pk": 9514, "fields": {"orig_filename": "Margulies_Samuel-Hersch_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1408114}}, {"model": "metainfo.source", "pk": 9515, "fields": {"orig_filename": "Margutti_Albert_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85f.", "author": "", "orig_id": 1408115}}, {"model": "metainfo.source", "pk": 9516, "fields": {"orig_filename": "Maria-Anna__1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86", "author": "", "orig_id": 1408116}}, {"model": "metainfo.source", "pk": 9517, "fields": {"orig_filename": "Maria-Charlotte__1840_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86", "author": "", "orig_id": 1408117}}, {"model": "metainfo.source", "pk": 9518, "fields": {"orig_filename": "Maria-Christina__1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86f.", "author": "", "orig_id": 1408118}}, {"model": "metainfo.source", "pk": 9519, "fields": {"orig_filename": "Maria-Dorothea___1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 87", "author": "", "orig_id": 1408119}}, {"model": "metainfo.source", "pk": 9520, "fields": {"orig_filename": "Maria-Louise__1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 87f.", "author": "", "orig_id": 1408120}}, {"model": "metainfo.source", "pk": 9521, "fields": {"orig_filename": "Maria-Ludovica__1787_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 88f.", "author": "", "orig_id": 1408121}}, {"model": "metainfo.source", "pk": 9522, "fields": {"orig_filename": "Maria-Theresia__1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408122}}, {"model": "metainfo.source", "pk": 9523, "fields": {"orig_filename": "Maria-Valerie___1868_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408123}}, {"model": "metainfo.source", "pk": 9524, "fields": {"orig_filename": "Mariacher_Stephan_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408124}}, {"model": "metainfo.source", "pk": 9525, "fields": {"orig_filename": "Marian_Simion-Florea_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89f.", "author": "", "orig_id": 1408125}}, {"model": "metainfo.source", "pk": 9526, "fields": {"orig_filename": "Mailath-Szekhely_Gyoergy_1786_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19f.", "author": "", "orig_id": 1408750}}, {"model": "metainfo.source", "pk": 9527, "fields": {"orig_filename": "Mailath-Szekhely_Gyoergy_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20", "author": "", "orig_id": 1408751}}, {"model": "metainfo.source", "pk": 9528, "fields": {"orig_filename": "Mailath-Szekhely_Janos_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20", "author": "", "orig_id": 1408752}}, {"model": "metainfo.source", "pk": 9529, "fields": {"orig_filename": "Mailhac_Pauline-Rebekka_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20f.", "author": "", "orig_id": 1408753}}, {"model": "metainfo.source", "pk": 9530, "fields": {"orig_filename": "Maiorescu_Ioan_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 21f.", "author": "", "orig_id": 1408822}}, {"model": "metainfo.source", "pk": 9531, "fields": {"orig_filename": "Maior_Petru_1761_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 21", "author": "", "orig_id": 1408821}}, {"model": "metainfo.source", "pk": 9532, "fields": {"orig_filename": "Maischberger_Thomas_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 22", "author": "", "orig_id": 1408823}}, {"model": "metainfo.source", "pk": 9533, "fields": {"orig_filename": "Maister_Rudolf_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 22f.", "author": "", "orig_id": 1408824}}, {"model": "metainfo.source", "pk": 9534, "fields": {"orig_filename": "Maitisch_Ferdinand_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23", "author": "", "orig_id": 1408825}}, {"model": "metainfo.source", "pk": 9535, "fields": {"orig_filename": "Maixner_Emerich_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23", "author": "", "orig_id": 1408826}}, {"model": "metainfo.source", "pk": 9536, "fields": {"orig_filename": "Maixner_Franjo_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23f.", "author": "", "orig_id": 1408827}}, {"model": "metainfo.source", "pk": 9537, "fields": {"orig_filename": "Maixner_Petr_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 24", "author": "", "orig_id": 1408828}}, {"model": "metainfo.source", "pk": 9538, "fields": {"orig_filename": "Mai_Angelo_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 415f.", "author": "", "orig_id": 1411858}}, {"model": "metainfo.source", "pk": 9539, "fields": {"orig_filename": "Majaron_Danilo_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25", "author": "", "orig_id": 1408830}}, {"model": "metainfo.source", "pk": 9540, "fields": {"orig_filename": "Majar_Matija_1809_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 24f.", "author": "", "orig_id": 1408829}}, {"model": "metainfo.source", "pk": 9541, "fields": {"orig_filename": "Majcen_Juraj_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25", "author": "", "orig_id": 1408831}}, {"model": "metainfo.source", "pk": 9542, "fields": {"orig_filename": "Majchrowicz_Franciszek_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25f.", "author": "", "orig_id": 1408832}}, {"model": "metainfo.source", "pk": 9543, "fields": {"orig_filename": "Majdic_Peter_1823_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26", "author": "", "orig_id": 1408833}}, {"model": "metainfo.source", "pk": 9544, "fields": {"orig_filename": "Majernik_Cyprian_1909_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 27f.", "author": "", "orig_id": 1408837}}, {"model": "metainfo.source", "pk": 9545, "fields": {"orig_filename": "Majersky_Adalbert_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28", "author": "", "orig_id": 1408838}}, {"model": "metainfo.source", "pk": 9546, "fields": {"orig_filename": "Majer_Antonin_1826_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26", "author": "", "orig_id": 1408834}}, {"model": "metainfo.source", "pk": 9547, "fields": {"orig_filename": "Majer_Jozef_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26f.", "author": "", "orig_id": 1408835}}, {"model": "metainfo.source", "pk": 9548, "fields": {"orig_filename": "Majer_Stephan_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 27", "author": "", "orig_id": 1408836}}, {"model": "metainfo.source", "pk": 9549, "fields": {"orig_filename": "Majewski_Bronislaw_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28", "author": "", "orig_id": 1408839}}, {"model": "metainfo.source", "pk": 9550, "fields": {"orig_filename": "Majewski_Stefan_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28f.", "author": "", "orig_id": 1408840}}, {"model": "metainfo.source", "pk": 9551, "fields": {"orig_filename": "Majic_Anto_1877_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408841}}, {"model": "metainfo.source", "pk": 9552, "fields": {"orig_filename": "Majlath-Szekhely_Bela_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408908}}, {"model": "metainfo.source", "pk": 9553, "fields": {"orig_filename": "Majunke_Gedeon_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408909}}, {"model": "metainfo.source", "pk": 9554, "fields": {"orig_filename": "Makart_Hans_1840_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29ff.", "author": "", "orig_id": 1408910}}, {"model": "metainfo.source", "pk": 9555, "fields": {"orig_filename": "Makovej_Osyp_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31", "author": "", "orig_id": 1408911}}, {"model": "metainfo.source", "pk": 9556, "fields": {"orig_filename": "Makovicky_Dusan_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31", "author": "", "orig_id": 1408912}}, {"model": "metainfo.source", "pk": 9557, "fields": {"orig_filename": "Makowsky_Alexander_1833_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31f.", "author": "", "orig_id": 1408913}}, {"model": "metainfo.source", "pk": 9558, "fields": {"orig_filename": "Malavasic_Franc_1818_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32", "author": "", "orig_id": 1408914}}, {"model": "metainfo.source", "pk": 9559, "fields": {"orig_filename": "Malcher_Adolfine_1858_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32", "author": "", "orig_id": 1408915}}, {"model": "metainfo.source", "pk": 9560, "fields": {"orig_filename": "Malczewski-Tarnawa_Julius_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 33", "author": "", "orig_id": 1408917}}, {"model": "metainfo.source", "pk": 9561, "fields": {"orig_filename": "Malczewski_Jacek_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32f.", "author": "", "orig_id": 1408916}}, {"model": "metainfo.source", "pk": 9562, "fields": {"orig_filename": "Malecki_Antoni_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 33f.", "author": "", "orig_id": 1408918}}, {"model": "metainfo.source", "pk": 9563, "fields": {"orig_filename": "Malek-Werthenfels_Franz_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408919}}, {"model": "metainfo.source", "pk": 9564, "fields": {"orig_filename": "Malfatti-Monteregio_Johann_1775_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35", "author": "", "orig_id": 1408924}}, {"model": "metainfo.source", "pk": 9565, "fields": {"orig_filename": "Malfatti-Rohrenbach-Dezza_Leopold_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35f.", "author": "", "orig_id": 1408925}}, {"model": "metainfo.source", "pk": 9566, "fields": {"orig_filename": "Malfatti_Alois_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408920}}, {"model": "metainfo.source", "pk": 9567, "fields": {"orig_filename": "Malfatti_Andrea_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408921}}, {"model": "metainfo.source", "pk": 9568, "fields": {"orig_filename": "Malfatti_Emanuele_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34f.", "author": "", "orig_id": 1408922}}, {"model": "metainfo.source", "pk": 9569, "fields": {"orig_filename": "Malfatti_Valeriano_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35", "author": "", "orig_id": 1408923}}, {"model": "metainfo.source", "pk": 9570, "fields": {"orig_filename": "Malinescu_Vasile_1817_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408926}}, {"model": "metainfo.source", "pk": 9571, "fields": {"orig_filename": "Malinowski_Lucjan_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408927}}, {"model": "metainfo.source", "pk": 9572, "fields": {"orig_filename": "Malinsky_Frantisek_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408928}}, {"model": "metainfo.source", "pk": 9573, "fields": {"orig_filename": "Malinsky_Josef_1752_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408929}}, {"model": "metainfo.source", "pk": 9574, "fields": {"orig_filename": "Malirova_Helena_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408997}}, {"model": "metainfo.source", "pk": 9575, "fields": {"orig_filename": "Maliwa_Edmund_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408998}}, {"model": "metainfo.source", "pk": 9576, "fields": {"orig_filename": "Malkowski_Andrzej_1889_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38", "author": "", "orig_id": 1408999}}, {"model": "metainfo.source", "pk": 9577, "fields": {"orig_filename": "Mallinger_Mathilde_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38f.", "author": "", "orig_id": 1409001}}, {"model": "metainfo.source", "pk": 9578, "fields": {"orig_filename": "Mallin_Ivo_1853_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38", "author": "", "orig_id": 1409000}}, {"model": "metainfo.source", "pk": 9579, "fields": {"orig_filename": "Mallitsch_Ferdinand_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409002}}, {"model": "metainfo.source", "pk": 9580, "fields": {"orig_filename": "Mallner-Marsegg_Hermann_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409003}}, {"model": "metainfo.source", "pk": 9581, "fields": {"orig_filename": "Mally-Dusarov_Jan_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39f.", "author": "", "orig_id": 1409005}}, {"model": "metainfo.source", "pk": 9582, "fields": {"orig_filename": "Mally_Ernst_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409004}}, {"model": "metainfo.source", "pk": 9583, "fields": {"orig_filename": "Malmer_Martin_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409006}}, {"model": "metainfo.source", "pk": 9584, "fields": {"orig_filename": "Maloch_Antonin-Vankomil_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409007}}, {"model": "metainfo.source", "pk": 9585, "fields": {"orig_filename": "Malovrh_Miroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40f.", "author": "", "orig_id": 1409009}}, {"model": "metainfo.source", "pk": 9586, "fields": {"orig_filename": "Malter_Henry_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41", "author": "", "orig_id": 1409010}}, {"model": "metainfo.source", "pk": 9587, "fields": {"orig_filename": "Maltz-Maltenau_Karl-Ludwig_1788_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41", "author": "", "orig_id": 1409011}}, {"model": "metainfo.source", "pk": 9588, "fields": {"orig_filename": "Maly-Vevanovic_Vinzenz_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44", "author": "", "orig_id": 1409017}}, {"model": "metainfo.source", "pk": 9589, "fields": {"orig_filename": "Maly_Franz_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41f.", "author": "", "orig_id": 1409012}}, {"model": "metainfo.source", "pk": 9590, "fields": {"orig_filename": "Maly_Jakub_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 42", "author": "", "orig_id": 1409013}}, {"model": "metainfo.source", "pk": 9591, "fields": {"orig_filename": "Maly_Jiri_1899_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 42f.", "author": "", "orig_id": 1409014}}, {"model": "metainfo.source", "pk": 9592, "fields": {"orig_filename": "Maly_Joseph-Karl_1797_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 43", "author": "", "orig_id": 1409015}}, {"model": "metainfo.source", "pk": 9593, "fields": {"orig_filename": "Maly_Richard_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 43f.", "author": "", "orig_id": 1409016}}, {"model": "metainfo.source", "pk": 9594, "fields": {"orig_filename": "Mampe_Emma_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44", "author": "", "orig_id": 1409018}}, {"model": "metainfo.source", "pk": 9595, "fields": {"orig_filename": "Mamroth_Fedor_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44f.", "author": "", "orig_id": 1409019}}, {"model": "metainfo.source", "pk": 9596, "fields": {"orig_filename": "Mamula_Lazarus_1795_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45", "author": "", "orig_id": 1409020}}, {"model": "metainfo.source", "pk": 9597, "fields": {"orig_filename": "Manci_Filippo_1836_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45", "author": "", "orig_id": 1409090}}, {"model": "metainfo.source", "pk": 9598, "fields": {"orig_filename": "Manci_Sigismondo_1734_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45f.", "author": "", "orig_id": 1409091}}, {"model": "metainfo.source", "pk": 9599, "fields": {"orig_filename": "Mandell_Ludwig_1784_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409093}}, {"model": "metainfo.source", "pk": 9600, "fields": {"orig_filename": "Mandel_Cyril_1873_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409092}}, {"model": "metainfo.source", "pk": 9601, "fields": {"orig_filename": "Mandic_Antun_1740_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409094}}, {"model": "metainfo.source", "pk": 9602, "fields": {"orig_filename": "Mandic_Matko_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409095}}, {"model": "metainfo.source", "pk": 9603, "fields": {"orig_filename": "Mandler_Ernst_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409102}}, {"model": "metainfo.source", "pk": 9604, "fields": {"orig_filename": "Mandlick_August_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409103}}, {"model": "metainfo.source", "pk": 9605, "fields": {"orig_filename": "Mandl_Albert_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46f.", "author": "", "orig_id": 1409096}}, {"model": "metainfo.source", "pk": 9606, "fields": {"orig_filename": "Mandl_Ignaz_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47", "author": "", "orig_id": 1409097}}, {"model": "metainfo.source", "pk": 9607, "fields": {"orig_filename": "Mandl_Johannes_1899_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47", "author": "", "orig_id": 1409098}}, {"model": "metainfo.source", "pk": 9608, "fields": {"orig_filename": "Mandl_Julius_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47f.", "author": "", "orig_id": 1409099}}, {"model": "metainfo.source", "pk": 9609, "fields": {"orig_filename": "Mandl_Leopold_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409100}}, {"model": "metainfo.source", "pk": 9610, "fields": {"orig_filename": "Mandl_Richard_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409101}}, {"model": "metainfo.source", "pk": 9611, "fields": {"orig_filename": "Mandrovic_Adam_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409104}}, {"model": "metainfo.source", "pk": 9612, "fields": {"orig_filename": "Mandyczewski_Eusebius_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409105}}, {"model": "metainfo.source", "pk": 9613, "fields": {"orig_filename": "Mandyczewski_Konstantin_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409106}}, {"model": "metainfo.source", "pk": 9614, "fields": {"orig_filename": "Manes_Antonin_1784_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49f.", "author": "", "orig_id": 1409107}}, {"model": "metainfo.source", "pk": 9615, "fields": {"orig_filename": "Manes_Josef_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 50f.", "author": "", "orig_id": 1409108}}, {"model": "metainfo.source", "pk": 9616, "fields": {"orig_filename": "Manes_Vaclav_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409110}}, {"model": "metainfo.source", "pk": 9617, "fields": {"orig_filename": "Manfredini_Luigi_1771_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409112}}, {"model": "metainfo.source", "pk": 9618, "fields": {"orig_filename": "Manfroni-Manfort_Moriz_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409114}}, {"model": "metainfo.source", "pk": 9619, "fields": {"orig_filename": "Manfroni_Mario_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409113}}, {"model": "metainfo.source", "pk": 9620, "fields": {"orig_filename": "Mangra_Vasile_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53", "author": "", "orig_id": 1409183}}, {"model": "metainfo.source", "pk": 9621, "fields": {"orig_filename": "Mang_Hermann_1883_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52f.", "author": "", "orig_id": 1409115}}, {"model": "metainfo.source", "pk": 9622, "fields": {"orig_filename": "Maniecki_Wojciech_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53", "author": "", "orig_id": 1409184}}, {"model": "metainfo.source", "pk": 9623, "fields": {"orig_filename": "Maniu_Vasile_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53f.", "author": "", "orig_id": 1409185}}, {"model": "metainfo.source", "pk": 9624, "fields": {"orig_filename": "Mankowski_Antoni_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409186}}, {"model": "metainfo.source", "pk": 9625, "fields": {"orig_filename": "Mankowski_Boleslaw_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409187}}, {"model": "metainfo.source", "pk": 9626, "fields": {"orig_filename": "Mannaberg_Julius_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 55", "author": "", "orig_id": 1409191}}, {"model": "metainfo.source", "pk": 9627, "fields": {"orig_filename": "Maier_Alexius_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416f.", "author": "", "orig_id": 1411861}}, {"model": "metainfo.source", "pk": 9628, "fields": {"orig_filename": "Maier_Ambros_1849_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411862}}, {"model": "metainfo.source", "pk": 9629, "fields": {"orig_filename": "Maier_Angela_1807_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411935}}, {"model": "metainfo.source", "pk": 9630, "fields": {"orig_filename": "Maier_Antonio_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418f.", "author": "", "orig_id": 1411940}}, {"model": "metainfo.source", "pk": 9631, "fields": {"orig_filename": "Maier_Anton_1776_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411936}}, {"model": "metainfo.source", "pk": 9632, "fields": {"orig_filename": "Maier_Anton_1780_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417f.", "author": "", "orig_id": 1411937}}, {"model": "metainfo.source", "pk": 9633, "fields": {"orig_filename": "Maier_Anton_1838_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418", "author": "", "orig_id": 1411938}}, {"model": "metainfo.source", "pk": 9634, "fields": {"orig_filename": "Maier_Anton_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418", "author": "", "orig_id": 1411939}}, {"model": "metainfo.source", "pk": 9635, "fields": {"orig_filename": "Maier_August-Georg_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411941}}, {"model": "metainfo.source", "pk": 9636, "fields": {"orig_filename": "Maier_August-Konrad_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411942}}, {"model": "metainfo.source", "pk": 9637, "fields": {"orig_filename": "Maier_Christian_1812_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411943}}, {"model": "metainfo.source", "pk": 9638, "fields": {"orig_filename": "Maier_Dominik_1809_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419f.", "author": "", "orig_id": 1411944}}, {"model": "metainfo.source", "pk": 9639, "fields": {"orig_filename": "Maier_Edgar_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420", "author": "", "orig_id": 1411945}}, {"model": "metainfo.source", "pk": 9640, "fields": {"orig_filename": "Maier_Emil_1822_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420", "author": "", "orig_id": 1411946}}, {"model": "metainfo.source", "pk": 9641, "fields": {"orig_filename": "Maier_Emil_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420f.", "author": "", "orig_id": 1411947}}, {"model": "metainfo.source", "pk": 9642, "fields": {"orig_filename": "Maier_Endre_1859_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411948}}, {"model": "metainfo.source", "pk": 9643, "fields": {"orig_filename": "Maier_Erich-August_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411949}}, {"model": "metainfo.source", "pk": 9644, "fields": {"orig_filename": "Maier_Ernst_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411950}}, {"model": "metainfo.source", "pk": 9645, "fields": {"orig_filename": "Maier_Ernst_1839_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421f.", "author": "", "orig_id": 1411951}}, {"model": "metainfo.source", "pk": 9646, "fields": {"orig_filename": "Maier_Ferdinand_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422", "author": "", "orig_id": 1411952}}, {"model": "metainfo.source", "pk": 9647, "fields": {"orig_filename": "Maier_Franz-Martin_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423f.", "author": "", "orig_id": 1411957}}, {"model": "metainfo.source", "pk": 9648, "fields": {"orig_filename": "Maier_Franz-Xaver_1756_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411958}}, {"model": "metainfo.source", "pk": 9649, "fields": {"orig_filename": "Maier_Franz_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422f.", "author": "", "orig_id": 1411954}}, {"model": "metainfo.source", "pk": 9650, "fields": {"orig_filename": "Maier_Franz_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423", "author": "", "orig_id": 1411955}}, {"model": "metainfo.source", "pk": 9651, "fields": {"orig_filename": "Maier_Franz_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423", "author": "", "orig_id": 1411956}}, {"model": "metainfo.source", "pk": 9652, "fields": {"orig_filename": "Maier_Friedrich_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411959}}, {"model": "metainfo.source", "pk": 9653, "fields": {"orig_filename": "Maier_Friedrich_1887_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411960}}, {"model": "metainfo.source", "pk": 9654, "fields": {"orig_filename": "Maier_Fritz-Franz_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424f.", "author": "", "orig_id": 1412029}}, {"model": "metainfo.source", "pk": 9655, "fields": {"orig_filename": "Maier_Georg_1768_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425", "author": "", "orig_id": 1412030}}, {"model": "metainfo.source", "pk": 9656, "fields": {"orig_filename": "Maier_Giovanni_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425", "author": "", "orig_id": 1412031}}, {"model": "metainfo.source", "pk": 9657, "fields": {"orig_filename": "Maier_Guido_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425f.", "author": "", "orig_id": 1412032}}, {"model": "metainfo.source", "pk": 9658, "fields": {"orig_filename": "Maier_Gustav_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 426", "author": "", "orig_id": 1412033}}, {"model": "metainfo.source", "pk": 9659, "fields": {"orig_filename": "Maier_Hans-Horst_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 426f.", "author": "", "orig_id": 1412034}}, {"model": "metainfo.source", "pk": 9660, "fields": {"orig_filename": "Maier_Hans-Leopold_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 427", "author": "", "orig_id": 1412038}}, {"model": "metainfo.source", "pk": 9661, "fields": {"orig_filename": "Maier_Hans-Paul_1872_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 427f.", "author": "", "orig_id": 1412039}}, {"model": "metainfo.source", "pk": 9662, "fields": {"orig_filename": "Maier_Heinrich_1908_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428", "author": "", "orig_id": 1412040}}, {"model": "metainfo.source", "pk": 9663, "fields": {"orig_filename": "Maier_Ignaz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428", "author": "", "orig_id": 1412041}}, {"model": "metainfo.source", "pk": 9664, "fields": {"orig_filename": "Maier_Jaroslav_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428f.", "author": "", "orig_id": 1412042}}, {"model": "metainfo.source", "pk": 9665, "fields": {"orig_filename": "Maier_Johann-Alexius_1778_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430", "author": "", "orig_id": 1412047}}, {"model": "metainfo.source", "pk": 9666, "fields": {"orig_filename": "Maier_Johann-Alois_1801_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430f.", "author": "", "orig_id": 1412048}}, {"model": "metainfo.source", "pk": 9667, "fields": {"orig_filename": "Maier_Johann-Georg_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412049}}, {"model": "metainfo.source", "pk": 9668, "fields": {"orig_filename": "Maier_Johann-Georg_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412050}}, {"model": "metainfo.source", "pk": 9669, "fields": {"orig_filename": "Maier_Johann-Georg_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412051}}, {"model": "metainfo.source", "pk": 9670, "fields": {"orig_filename": "Maier_Johann-Georg_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431f.", "author": "", "orig_id": 1412122}}, {"model": "metainfo.source", "pk": 9671, "fields": {"orig_filename": "Maier_Johann_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429", "author": "", "orig_id": 1412043}}, {"model": "metainfo.source", "pk": 9672, "fields": {"orig_filename": "Maier_Johann_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429", "author": "", "orig_id": 1412044}}, {"model": "metainfo.source", "pk": 9673, "fields": {"orig_filename": "Maier_Johann_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429f.", "author": "", "orig_id": 1412045}}, {"model": "metainfo.source", "pk": 9674, "fields": {"orig_filename": "Maier_Johann_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430", "author": "", "orig_id": 1412046}}, {"model": "metainfo.source", "pk": 9675, "fields": {"orig_filename": "Maier_Josef_1791_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432", "author": "", "orig_id": 1412123}}, {"model": "metainfo.source", "pk": 9676, "fields": {"orig_filename": "Maier_Josef_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432f.", "author": "", "orig_id": 1420358}}, {"model": "metainfo.source", "pk": 9677, "fields": {"orig_filename": "Maier_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432", "author": "", "orig_id": 1420357}}, {"model": "metainfo.source", "pk": 9678, "fields": {"orig_filename": "Maier_Josef_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433", "author": "", "orig_id": 1412124}}, {"model": "metainfo.source", "pk": 9679, "fields": {"orig_filename": "Maier_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433", "author": "", "orig_id": 1412125}}, {"model": "metainfo.source", "pk": 9680, "fields": {"orig_filename": "Maier_Julius_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433f.", "author": "", "orig_id": 1412126}}, {"model": "metainfo.source", "pk": 9681, "fields": {"orig_filename": "Maier_Karl-Ernst_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412134}}, {"model": "metainfo.source", "pk": 9682, "fields": {"orig_filename": "Maier_Karl_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412127}}, {"model": "metainfo.source", "pk": 9683, "fields": {"orig_filename": "Maier_Karl_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412128}}, {"model": "metainfo.source", "pk": 9684, "fields": {"orig_filename": "Maier_Karl_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412129}}, {"model": "metainfo.source", "pk": 9685, "fields": {"orig_filename": "Maier_Karl_1855_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435", "author": "", "orig_id": 1412130}}, {"model": "metainfo.source", "pk": 9686, "fields": {"orig_filename": "Maier_Karl_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435", "author": "", "orig_id": 1412132}}, {"model": "metainfo.source", "pk": 9687, "fields": {"orig_filename": "Maier_Karl_1876_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435f.", "author": "", "orig_id": 1412131}}, {"model": "metainfo.source", "pk": 9688, "fields": {"orig_filename": "Maier_Lambert_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436f.", "author": "", "orig_id": 1412135}}, {"model": "metainfo.source", "pk": 9689, "fields": {"orig_filename": "Maier_Laurenz_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412137}}, {"model": "metainfo.source", "pk": 9690, "fields": {"orig_filename": "Maier_Leopold_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412136}}, {"model": "metainfo.source", "pk": 9691, "fields": {"orig_filename": "Maier_Leopold_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412138}}, {"model": "metainfo.source", "pk": 9692, "fields": {"orig_filename": "Maier_Ludwig_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412139}}, {"model": "metainfo.source", "pk": 9693, "fields": {"orig_filename": "Maier_Ludwig_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437f.", "author": "", "orig_id": 1412140}}, {"model": "metainfo.source", "pk": 9694, "fields": {"orig_filename": "Maier_Martin_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412141}}, {"model": "metainfo.source", "pk": 9695, "fields": {"orig_filename": "Maier_Mauricio_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412142}}, {"model": "metainfo.source", "pk": 9696, "fields": {"orig_filename": "Maier_Maximilian_1848_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438f.", "author": "", "orig_id": 1412144}}, {"model": "metainfo.source", "pk": 9697, "fields": {"orig_filename": "Maier_Max_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412143}}, {"model": "metainfo.source", "pk": 9698, "fields": {"orig_filename": "Maier_Michael_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 439", "author": "", "orig_id": 1412145}}, {"model": "metainfo.source", "pk": 9699, "fields": {"orig_filename": "Maier_Michael_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 439f.", "author": "", "orig_id": 1412146}}, {"model": "metainfo.source", "pk": 9700, "fields": {"orig_filename": "Maier_Oskar_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 440f.", "author": "", "orig_id": 1412147}}, {"model": "metainfo.source", "pk": 9701, "fields": {"orig_filename": "Maier_Philipp-Benitius_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441", "author": "", "orig_id": 1412223}}, {"model": "metainfo.source", "pk": 9702, "fields": {"orig_filename": "Maier_Philipp_1799_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441", "author": "", "orig_id": 1412148}}, {"model": "metainfo.source", "pk": 9703, "fields": {"orig_filename": "Maier_Richard_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441f.", "author": "", "orig_id": 1412224}}, {"model": "metainfo.source", "pk": 9704, "fields": {"orig_filename": "Maier_Robert-Alois_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412228}}, {"model": "metainfo.source", "pk": 9705, "fields": {"orig_filename": "Maier_Robert_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 443", "author": "", "orig_id": 1412226}}, {"model": "metainfo.source", "pk": 9706, "fields": {"orig_filename": "Maier_Robert_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 442f.", "author": "", "orig_id": 1412225}}, {"model": "metainfo.source", "pk": 9707, "fields": {"orig_filename": "Maier_Robert_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 443", "author": "", "orig_id": 1412227}}, {"model": "metainfo.source", "pk": 9708, "fields": {"orig_filename": "Maier_Rudolf_1837_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412229}}, {"model": "metainfo.source", "pk": 9709, "fields": {"orig_filename": "Maier_Rudolf_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412230}}, {"model": "metainfo.source", "pk": 9710, "fields": {"orig_filename": "Maier_Rudolf_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412231}}, {"model": "metainfo.source", "pk": 9711, "fields": {"orig_filename": "Maier_Rudolf_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444f.", "author": "", "orig_id": 1412232}}, {"model": "metainfo.source", "pk": 9712, "fields": {"orig_filename": "Maier_Rupert_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445", "author": "", "orig_id": 1412233}}, {"model": "metainfo.source", "pk": 9713, "fields": {"orig_filename": "Maier_Salesius_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445", "author": "", "orig_id": 1412234}}, {"model": "metainfo.source", "pk": 9714, "fields": {"orig_filename": "Maier_Salomon_1835_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445f.", "author": "", "orig_id": 1412235}}, {"model": "metainfo.source", "pk": 9715, "fields": {"orig_filename": "Maier_Sebastian_1773_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446", "author": "", "orig_id": 1412236}}, {"model": "metainfo.source", "pk": 9716, "fields": {"orig_filename": "Maier_Sebastian_1845_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446", "author": "", "orig_id": 1412237}}, {"model": "metainfo.source", "pk": 9717, "fields": {"orig_filename": "Maier_Siegmund_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446f.", "author": "", "orig_id": 1412238}}, {"model": "metainfo.source", "pk": 9718, "fields": {"orig_filename": "Maier_Sigmund_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 447", "author": "", "orig_id": 1412035}}, {"model": "metainfo.source", "pk": 9719, "fields": {"orig_filename": "Maier_Simon-Martin_1788_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 448", "author": "", "orig_id": 1412037}}, {"model": "metainfo.source", "pk": 9720, "fields": {"orig_filename": "Maier_Simon_1779_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 448", "author": "", "orig_id": 1412036}}, {"model": "metainfo.source", "pk": 9721, "fields": {"orig_filename": "Maier_Stefan_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1", "author": "", "orig_id": 1408550}}, {"model": "metainfo.source", "pk": 9722, "fields": {"orig_filename": "Maier_Tadeas_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1", "author": "", "orig_id": 1408551}}, {"model": "metainfo.source", "pk": 9723, "fields": {"orig_filename": "Maier_Theodor-Heinrich_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2", "author": "", "orig_id": 1408553}}, {"model": "metainfo.source", "pk": 9724, "fields": {"orig_filename": "Maier_Theodor_1788_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1f.", "author": "", "orig_id": 1408552}}, {"model": "metainfo.source", "pk": 9725, "fields": {"orig_filename": "Maier_Walther_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2", "author": "", "orig_id": 1408554}}, {"model": "metainfo.source", "pk": 9726, "fields": {"orig_filename": "Maier_Wilhelm_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2f.", "author": "", "orig_id": 1408555}}, {"model": "metainfo.source", "pk": 9727, "fields": {"orig_filename": "Maier_Wolf_1776_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408556}}, {"model": "metainfo.source", "pk": 9728, "fields": {"orig_filename": "Mailath-Szekhely_Antal_1801_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408747}}, {"model": "metainfo.source", "pk": 9729, "fields": {"orig_filename": "Mailath-Szekhely_Gusztav-Karoly_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408749}}, {"model": "metainfo.source", "pk": 9730, "fields": {"orig_filename": "Madarasz_Viktor_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 397", "author": "", "orig_id": 1411662}}, {"model": "metainfo.source", "pk": 9731, "fields": {"orig_filename": "Maderspach_Karoly_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399", "author": "", "orig_id": 1411669}}, {"model": "metainfo.source", "pk": 9732, "fields": {"orig_filename": "Madersperger_Josef_1768_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399f.", "author": "", "orig_id": 1411670}}, {"model": "metainfo.source", "pk": 9733, "fields": {"orig_filename": "Mader_Eduard_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411664}}, {"model": "metainfo.source", "pk": 9734, "fields": {"orig_filename": "Mader_Georg_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411665}}, {"model": "metainfo.source", "pk": 9735, "fields": {"orig_filename": "Mader_Johann_1796_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411666}}, {"model": "metainfo.source", "pk": 9736, "fields": {"orig_filename": "Mader_Linus_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398f.", "author": "", "orig_id": 1411667}}, {"model": "metainfo.source", "pk": 9737, "fields": {"orig_filename": "Mader_Raoul_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399", "author": "", "orig_id": 1411668}}, {"model": "metainfo.source", "pk": 9738, "fields": {"orig_filename": "Madeyski-Poray_Stanislaw-Jerzy_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400f.", "author": "", "orig_id": 1411674}}, {"model": "metainfo.source", "pk": 9739, "fields": {"orig_filename": "Madeyski_Antoni_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411671}}, {"model": "metainfo.source", "pk": 9740, "fields": {"orig_filename": "Madeyski_Edward_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411672}}, {"model": "metainfo.source", "pk": 9741, "fields": {"orig_filename": "Madeyski_Marceli_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411673}}, {"model": "metainfo.source", "pk": 9742, "fields": {"orig_filename": "Madjera_Karl-Gustav-Adolf_1828_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 401", "author": "", "orig_id": 1411675}}, {"model": "metainfo.source", "pk": 9743, "fields": {"orig_filename": "Madjera_Wolfgang_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 401f.", "author": "", "orig_id": 1411676}}, {"model": "metainfo.source", "pk": 9744, "fields": {"orig_filename": "Madlener_Andreas_1844_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411678}}, {"model": "metainfo.source", "pk": 9745, "fields": {"orig_filename": "Madlener_Johann_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411679}}, {"model": "metainfo.source", "pk": 9746, "fields": {"orig_filename": "Madl_Karel_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411677}}, {"model": "metainfo.source", "pk": 9747, "fields": {"orig_filename": "Madonizza_Antonio_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402f.", "author": "", "orig_id": 1411746}}, {"model": "metainfo.source", "pk": 9748, "fields": {"orig_filename": "Madurowicz_Maurycy_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 403", "author": "", "orig_id": 1411747}}, {"model": "metainfo.source", "pk": 9749, "fields": {"orig_filename": "Madva_Franz_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 403", "author": "", "orig_id": 1411748}}, {"model": "metainfo.source", "pk": 9750, "fields": {"orig_filename": "Maehler_Willibrord-Josef_1787_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404", "author": "", "orig_id": 1411749}}, {"model": "metainfo.source", "pk": 9751, "fields": {"orig_filename": "Maelzel_Johann_1772_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404", "author": "", "orig_id": 1411750}}, {"model": "metainfo.source", "pk": 9752, "fields": {"orig_filename": "Maendl-Bughardt_Maximilian_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404f.", "author": "", "orig_id": 1411751}}, {"model": "metainfo.source", "pk": 9753, "fields": {"orig_filename": "Maetzler_Anton_1780_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411753}}, {"model": "metainfo.source", "pk": 9754, "fields": {"orig_filename": "Maffei_Andrea_1798_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411754}}, {"model": "metainfo.source", "pk": 9755, "fields": {"orig_filename": "Maffei_Giuseppe_1775_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411755}}, {"model": "metainfo.source", "pk": 9756, "fields": {"orig_filename": "Magarasevic_Georgije_1793_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405f.", "author": "", "orig_id": 1411756}}, {"model": "metainfo.source", "pk": 9757, "fields": {"orig_filename": "Magda_Pal_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406", "author": "", "orig_id": 1411757}}, {"model": "metainfo.source", "pk": 9758, "fields": {"orig_filename": "Magdeburg_Johann_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406", "author": "", "orig_id": 1411758}}, {"model": "metainfo.source", "pk": 9759, "fields": {"orig_filename": "Magdeburg_Karl_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406f.", "author": "", "orig_id": 1411759}}, {"model": "metainfo.source", "pk": 9760, "fields": {"orig_filename": "Magerstein_Vinzenz-Theodor_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407f.", "author": "", "orig_id": 1411763}}, {"model": "metainfo.source", "pk": 9761, "fields": {"orig_filename": "Mager_Alois_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411760}}, {"model": "metainfo.source", "pk": 9762, "fields": {"orig_filename": "Mager_Anton_1762_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411761}}, {"model": "metainfo.source", "pk": 9763, "fields": {"orig_filename": "Mager_Wilhelm_1871_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411762}}, {"model": "metainfo.source", "pk": 9764, "fields": {"orig_filename": "Mages-Kompillan_Alois_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411764}}, {"model": "metainfo.source", "pk": 9765, "fields": {"orig_filename": "Mages-Kompillan_Maria_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411765}}, {"model": "metainfo.source", "pk": 9766, "fields": {"orig_filename": "Magg_Julius_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411766}}, {"model": "metainfo.source", "pk": 9767, "fields": {"orig_filename": "Magg_Julius_1884_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408f.", "author": "", "orig_id": 1411767}}, {"model": "metainfo.source", "pk": 9768, "fields": {"orig_filename": "Magnuszewski_Dominik_1810_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411768}}, {"model": "metainfo.source", "pk": 9769, "fields": {"orig_filename": "Magocsy-Dietz_Sandor_1855_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411841}}, {"model": "metainfo.source", "pk": 9770, "fields": {"orig_filename": "Magolic_Srecko_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411842}}, {"model": "metainfo.source", "pk": 9771, "fields": {"orig_filename": "Magrini_Antonio_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409f.", "author": "", "orig_id": 1411843}}, {"model": "metainfo.source", "pk": 9772, "fields": {"orig_filename": "Magyar-Oetoemoes_Laszlo_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410", "author": "", "orig_id": 1411845}}, {"model": "metainfo.source", "pk": 9773, "fields": {"orig_filename": "Magyar_Emmerich_1847_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410", "author": "", "orig_id": 1411844}}, {"model": "metainfo.source", "pk": 9774, "fields": {"orig_filename": "Mahler_Ede_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 411", "author": "", "orig_id": 1411847}}, {"model": "metainfo.source", "pk": 9775, "fields": {"orig_filename": "Mahler_Gustav_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 411f.", "author": "", "orig_id": 1411848}}, {"model": "metainfo.source", "pk": 9776, "fields": {"orig_filename": "Mahlknecht_Edmund_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 412f.", "author": "", "orig_id": 1411849}}, {"model": "metainfo.source", "pk": 9777, "fields": {"orig_filename": "Mahlknecht_Johann-Dominik_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411850}}, {"model": "metainfo.source", "pk": 9778, "fields": {"orig_filename": "Mahlknecht_Josef-Anton_1827_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411851}}, {"model": "metainfo.source", "pk": 9779, "fields": {"orig_filename": "Mahlknecht_Karl_1810_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411852}}, {"model": "metainfo.source", "pk": 9780, "fields": {"orig_filename": "Mahnic_Anton_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413f.", "author": "", "orig_id": 1411853}}, {"model": "metainfo.source", "pk": 9781, "fields": {"orig_filename": "Mahnke_Karl_1764_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414", "author": "", "orig_id": 1411854}}, {"model": "metainfo.source", "pk": 9782, "fields": {"orig_filename": "Mahorcig_Josef_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414", "author": "", "orig_id": 1411855}}, {"model": "metainfo.source", "pk": 9783, "fields": {"orig_filename": "Mahr_Gustav_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414f.", "author": "", "orig_id": 1411856}}, {"model": "metainfo.source", "pk": 9784, "fields": {"orig_filename": "Mahr_Jakob-Franz_1800_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 415", "author": "", "orig_id": 1411857}}, {"model": "metainfo.source", "pk": 9785, "fields": {"orig_filename": "Maier-Ahrdorff_Eduard_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408557}}, {"model": "metainfo.source", "pk": 9786, "fields": {"orig_filename": "Maier-Graefe_Julius_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408558}}, {"model": "metainfo.source", "pk": 9787, "fields": {"orig_filename": "Maier-Gravenegg_Josef_1780_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3f.", "author": "", "orig_id": 1408559}}, {"model": "metainfo.source", "pk": 9788, "fields": {"orig_filename": "Maier-Gunthof_Albert_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4", "author": "", "orig_id": 1408560}}, {"model": "metainfo.source", "pk": 9789, "fields": {"orig_filename": "Maier-Harting_Robert_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4", "author": "", "orig_id": 1408561}}, {"model": "metainfo.source", "pk": 9790, "fields": {"orig_filename": "Maier-Loewenschwerdt_Franz-Xaver_1794_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4f.", "author": "", "orig_id": 1408632}}, {"model": "metainfo.source", "pk": 9791, "fields": {"orig_filename": "Maier-Luebke_Wilhelm_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5", "author": "", "orig_id": 1408633}}, {"model": "metainfo.source", "pk": 9792, "fields": {"orig_filename": "Maier-Marnegg_Edmund_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5", "author": "", "orig_id": 1408634}}, {"model": "metainfo.source", "pk": 9793, "fields": {"orig_filename": "Maier-Mayrau_Kajetan_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5f.", "author": "", "orig_id": 1408635}}, {"model": "metainfo.source", "pk": 9794, "fields": {"orig_filename": "Maier-Melnhof_Franz_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 6f.", "author": "", "orig_id": 1408636}}, {"model": "metainfo.source", "pk": 9795, "fields": {"orig_filename": "Maier-Melnhof_Franz_1854_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7", "author": "", "orig_id": 1408637}}, {"model": "metainfo.source", "pk": 9796, "fields": {"orig_filename": "Maier-Melnhof_Karl_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7", "author": "", "orig_id": 1408638}}, {"model": "metainfo.source", "pk": 9797, "fields": {"orig_filename": "Maier-Montearabico_Anton_1824_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7f.", "author": "", "orig_id": 1408639}}, {"model": "metainfo.source", "pk": 9798, "fields": {"orig_filename": "Maier-Tenneburg_Felix_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408640}}, {"model": "metainfo.source", "pk": 9799, "fields": {"orig_filename": "Maier-Wallerstain-Ahrdorff_Maximilian_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408641}}, {"model": "metainfo.source", "pk": 9800, "fields": {"orig_filename": "Maierecker_Franz_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408642}}, {"model": "metainfo.source", "pk": 9801, "fields": {"orig_filename": "Maiereder_Julius_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9", "author": "", "orig_id": 1408643}}, {"model": "metainfo.source", "pk": 9802, "fields": {"orig_filename": "Maiereder_Karl_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9", "author": "", "orig_id": 1408644}}, {"model": "metainfo.source", "pk": 9803, "fields": {"orig_filename": "Maiereder_Rosa_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9f.", "author": "", "orig_id": 1408645}}, {"model": "metainfo.source", "pk": 9804, "fields": {"orig_filename": "Maiereder_Rudolf_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 10f.", "author": "", "orig_id": 1408646}}, {"model": "metainfo.source", "pk": 9805, "fields": {"orig_filename": "Maierhofen-Koburg-Anger_Stephan_1751_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408647}}, {"model": "metainfo.source", "pk": 9806, "fields": {"orig_filename": "Maierhofen-Koburg-Anger_Virgil_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408648}}, {"model": "metainfo.source", "pk": 9807, "fields": {"orig_filename": "Maierhofer-Gruenbuehel_Ferdinand_1798_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408737}}, {"model": "metainfo.source", "pk": 9808, "fields": {"orig_filename": "Maierhofer_Adolf_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408649}}, {"model": "metainfo.source", "pk": 9809, "fields": {"orig_filename": "Maierhofer_Bernhard_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11f.", "author": "", "orig_id": 1408650}}, {"model": "metainfo.source", "pk": 9810, "fields": {"orig_filename": "Maierhofer_Franz_1822_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 12", "author": "", "orig_id": 1408651}}, {"model": "metainfo.source", "pk": 9811, "fields": {"orig_filename": "Maierhofer_Franz_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 12f.", "author": "", "orig_id": 1408652}}, {"model": "metainfo.source", "pk": 9812, "fields": {"orig_filename": "Maierhofer_Gottfried_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13", "author": "", "orig_id": 1408653}}, {"model": "metainfo.source", "pk": 9813, "fields": {"orig_filename": "Maierhofer_Johann_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13", "author": "", "orig_id": 1408654}}, {"model": "metainfo.source", "pk": 9814, "fields": {"orig_filename": "Maierhofer_Johann_1787_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13f.", "author": "", "orig_id": 1408655}}, {"model": "metainfo.source", "pk": 9815, "fields": {"orig_filename": "Maierhofer_Josef_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14", "author": "", "orig_id": 1408729}}, {"model": "metainfo.source", "pk": 9816, "fields": {"orig_filename": "Maierhofer_Josef_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14", "author": "", "orig_id": 1408730}}, {"model": "metainfo.source", "pk": 9817, "fields": {"orig_filename": "Maierhofer_Karl-Wilhelm_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408733}}, {"model": "metainfo.source", "pk": 9818, "fields": {"orig_filename": "Maierhofer_Karl_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14f.", "author": "", "orig_id": 1408731}}, {"model": "metainfo.source", "pk": 9819, "fields": {"orig_filename": "Maierhofer_Karl_1837_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408732}}, {"model": "metainfo.source", "pk": 9820, "fields": {"orig_filename": "Maierhofer_Max_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408734}}, {"model": "metainfo.source", "pk": 9821, "fields": {"orig_filename": "Maierhofer_Sebastian_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15f.", "author": "", "orig_id": 1408735}}, {"model": "metainfo.source", "pk": 9822, "fields": {"orig_filename": "Maierhofer_Theodor_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408736}}, {"model": "metainfo.source", "pk": 9823, "fields": {"orig_filename": "Maierhoffer-Vedropolje_Eberhard_1870_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16f.", "author": "", "orig_id": 1408739}}, {"model": "metainfo.source", "pk": 9824, "fields": {"orig_filename": "Maierhoffer_Wilhelm_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408738}}, {"model": "metainfo.source", "pk": 9825, "fields": {"orig_filename": "Maierink_Gustav_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 17", "author": "", "orig_id": 1408740}}, {"model": "metainfo.source", "pk": 9826, "fields": {"orig_filename": "Maierl_Anton_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 17f.", "author": "", "orig_id": 1408741}}, {"model": "metainfo.source", "pk": 9827, "fields": {"orig_filename": "Maiern-Hohenberg_Gottfried_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 18f.", "author": "", "orig_id": 1408743}}, {"model": "metainfo.source", "pk": 9828, "fields": {"orig_filename": "Maiern_Franz-Ferdinand_1799_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 18", "author": "", "orig_id": 1408742}}, {"model": "metainfo.source", "pk": 9829, "fields": {"orig_filename": "Maiers_Karl_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408746}}, {"model": "metainfo.source", "pk": 9830, "fields": {"orig_filename": "Maier_Adolf_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416", "author": "", "orig_id": 1411859}}, {"model": "metainfo.source", "pk": 9831, "fields": {"orig_filename": "Maier_Adolf_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416", "author": "", "orig_id": 1411860}}, {"model": "metainfo.source", "pk": 9832, "fields": {"orig_filename": "Lukacsy_Kristof_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362f.", "author": "", "orig_id": 1411207}}, {"model": "metainfo.source", "pk": 9833, "fields": {"orig_filename": "Lukacsy_Sandor_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411208}}, {"model": "metainfo.source", "pk": 9834, "fields": {"orig_filename": "Lukacs_Bela_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411200}}, {"model": "metainfo.source", "pk": 9835, "fields": {"orig_filename": "Lukacs_Gyoergy_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411201}}, {"model": "metainfo.source", "pk": 9836, "fields": {"orig_filename": "Lukacs_Gyoergy_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411202}}, {"model": "metainfo.source", "pk": 9837, "fields": {"orig_filename": "Lukacs_Laszlo_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361f.", "author": "", "orig_id": 1411203}}, {"model": "metainfo.source", "pk": 9838, "fields": {"orig_filename": "Lukacs_Moric_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411204}}, {"model": "metainfo.source", "pk": 9839, "fields": {"orig_filename": "Lukacs_Sandor_1822_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411205}}, {"model": "metainfo.source", "pk": 9840, "fields": {"orig_filename": "Lukasek_Josef-Vaclav_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364", "author": "", "orig_id": 1411212}}, {"model": "metainfo.source", "pk": 9841, "fields": {"orig_filename": "Lukasiewicz-Lada_Wlodzimierz_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364f.", "author": "", "orig_id": 1411283}}, {"model": "metainfo.source", "pk": 9842, "fields": {"orig_filename": "Lukasiewicz_Ignacy_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364", "author": "", "orig_id": 1411282}}, {"model": "metainfo.source", "pk": 9843, "fields": {"orig_filename": "Lukaszewicz_Leslaw_1809_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 365", "author": "", "orig_id": 1411284}}, {"model": "metainfo.source", "pk": 9844, "fields": {"orig_filename": "Lukas_Gustav_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411209}}, {"model": "metainfo.source", "pk": 9845, "fields": {"orig_filename": "Lukas_Josef_1835_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411210}}, {"model": "metainfo.source", "pk": 9846, "fields": {"orig_filename": "Lukas_Josef_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363f.", "author": "", "orig_id": 1411211}}, {"model": "metainfo.source", "pk": 9847, "fields": {"orig_filename": "Lukes_Jan-Ludevit_1824_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 365f.", "author": "", "orig_id": 1411285}}, {"model": "metainfo.source", "pk": 9848, "fields": {"orig_filename": "Lukes_Johann_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366", "author": "", "orig_id": 1411286}}, {"model": "metainfo.source", "pk": 9849, "fields": {"orig_filename": "Lukovic_Antun_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366", "author": "", "orig_id": 1411287}}, {"model": "metainfo.source", "pk": 9850, "fields": {"orig_filename": "Luksch_Josef_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366f.", "author": "", "orig_id": 1411288}}, {"model": "metainfo.source", "pk": 9851, "fields": {"orig_filename": "Lulic_Ante_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 367f.", "author": "", "orig_id": 1411290}}, {"model": "metainfo.source", "pk": 9852, "fields": {"orig_filename": "Lumbe-Mallonitz_Josef-Thaddaeus_1801_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411291}}, {"model": "metainfo.source", "pk": 9853, "fields": {"orig_filename": "Lumniczer_Sandor_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411293}}, {"model": "metainfo.source", "pk": 9854, "fields": {"orig_filename": "Lumnitzer_Johann-Georg_1783_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411294}}, {"model": "metainfo.source", "pk": 9855, "fields": {"orig_filename": "Lumnitzer_Paul_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368f.", "author": "", "orig_id": 1411295}}, {"model": "metainfo.source", "pk": 9856, "fields": {"orig_filename": "Lumpe_Heinrich_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369", "author": "", "orig_id": 1411296}}, {"model": "metainfo.source", "pk": 9857, "fields": {"orig_filename": "Luntz_Erwin_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411300}}, {"model": "metainfo.source", "pk": 9858, "fields": {"orig_filename": "Luntz_Ivo_1882_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411301}}, {"model": "metainfo.source", "pk": 9859, "fields": {"orig_filename": "Luntz_Victor_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411302}}, {"model": "metainfo.source", "pk": 9860, "fields": {"orig_filename": "Lunzer_Eduard_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371", "author": "", "orig_id": 1411303}}, {"model": "metainfo.source", "pk": 9861, "fields": {"orig_filename": "Lun_Karl_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369", "author": "", "orig_id": 1411297}}, {"model": "metainfo.source", "pk": 9862, "fields": {"orig_filename": "Luppis-Rammer_Johann_1813_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371", "author": "", "orig_id": 1411379}}, {"model": "metainfo.source", "pk": 9863, "fields": {"orig_filename": "Lupul_Janko_1836_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372", "author": "", "orig_id": 1411382}}, {"model": "metainfo.source", "pk": 9864, "fields": {"orig_filename": "Lupul_Theodor_1838_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372", "author": "", "orig_id": 1411383}}, {"model": "metainfo.source", "pk": 9865, "fields": {"orig_filename": "Lupu_Florea_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371f.", "author": "", "orig_id": 1411380}}, {"model": "metainfo.source", "pk": 9866, "fields": {"orig_filename": "Luschan_Felix_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372f.", "author": "", "orig_id": 1411384}}, {"model": "metainfo.source", "pk": 9867, "fields": {"orig_filename": "Luschin-Ebengreuth_Arnold_1841_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 373f.", "author": "", "orig_id": 1411386}}, {"model": "metainfo.source", "pk": 9868, "fields": {"orig_filename": "Luschin_Franz-Xaver_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 373", "author": "", "orig_id": 1411385}}, {"model": "metainfo.source", "pk": 9869, "fields": {"orig_filename": "Lussana_Filippo_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 374", "author": "", "orig_id": 1411387}}, {"model": "metainfo.source", "pk": 9870, "fields": {"orig_filename": "Lussberger_Jakob_1813_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 374f.", "author": "", "orig_id": 1411388}}, {"model": "metainfo.source", "pk": 9871, "fields": {"orig_filename": "Lussnigg_Robert_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411389}}, {"model": "metainfo.source", "pk": 9872, "fields": {"orig_filename": "Lustgarten_Sigmund_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411390}}, {"model": "metainfo.source", "pk": 9873, "fields": {"orig_filename": "Lustig-Prean-Preanfeld-Fella_Heinrich_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376", "author": "", "orig_id": 1411393}}, {"model": "metainfo.source", "pk": 9874, "fields": {"orig_filename": "Lustig-Prean-Preanfeld_Karl_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376", "author": "", "orig_id": 1411392}}, {"model": "metainfo.source", "pk": 9875, "fields": {"orig_filename": "Lustig_Gustav_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411391}}, {"model": "metainfo.source", "pk": 9876, "fields": {"orig_filename": "Lustkandl_Wenzel_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376f.", "author": "", "orig_id": 1411394}}, {"model": "metainfo.source", "pk": 9877, "fields": {"orig_filename": "Luszczkiewicz_Wladyslaw_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 377", "author": "", "orig_id": 1411395}}, {"model": "metainfo.source", "pk": 9878, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Franz_1784_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378", "author": "", "orig_id": 1411397}}, {"model": "metainfo.source", "pk": 9879, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Karl-Anton-Josef_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378", "author": "", "orig_id": 1411398}}, {"model": "metainfo.source", "pk": 9880, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Otto_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378f.", "author": "", "orig_id": 1411399}}, {"model": "metainfo.source", "pk": 9881, "fields": {"orig_filename": "Lutter_Nandor_1820_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 377f.", "author": "", "orig_id": 1411396}}, {"model": "metainfo.source", "pk": 9882, "fields": {"orig_filename": "Luttich-Luttichheim_Eduard_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379", "author": "", "orig_id": 1411401}}, {"model": "metainfo.source", "pk": 9883, "fields": {"orig_filename": "Luttich_Mila_1872_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2185402}}, {"model": "metainfo.source", "pk": 9884, "fields": {"orig_filename": "Lutti_Vincenzo_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379", "author": "", "orig_id": 1411400}}, {"model": "metainfo.source", "pk": 9885, "fields": {"orig_filename": "Lutzer_Jenny_1816_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381", "author": "", "orig_id": 1411471}}, {"model": "metainfo.source", "pk": 9886, "fields": {"orig_filename": "Lutz_Andreas_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379f.", "author": "", "orig_id": 1411466}}, {"model": "metainfo.source", "pk": 9887, "fields": {"orig_filename": "Lutz_Ernst_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411467}}, {"model": "metainfo.source", "pk": 9888, "fields": {"orig_filename": "Lutz_Franz-Xaver_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411468}}, {"model": "metainfo.source", "pk": 9889, "fields": {"orig_filename": "Lutz_Josef-Anton_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411469}}, {"model": "metainfo.source", "pk": 9890, "fields": {"orig_filename": "Lutz_Josef-Fidelis-Sebastian_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380f.", "author": "", "orig_id": 1411470}}, {"model": "metainfo.source", "pk": 9891, "fields": {"orig_filename": "Luxardo_Eugen_1867_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382", "author": "", "orig_id": 1411474}}, {"model": "metainfo.source", "pk": 9892, "fields": {"orig_filename": "Lux_Anton_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381", "author": "", "orig_id": 1411472}}, {"model": "metainfo.source", "pk": 9893, "fields": {"orig_filename": "Lux_Josef-August_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381f.", "author": "", "orig_id": 1411473}}, {"model": "metainfo.source", "pk": 9894, "fields": {"orig_filename": "Luze_Karl_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382", "author": "", "orig_id": 1411475}}, {"model": "metainfo.source", "pk": 9895, "fields": {"orig_filename": "Luzzatto_Filosseno_1829_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382f.", "author": "", "orig_id": 1411476}}, {"model": "metainfo.source", "pk": 9896, "fields": {"orig_filename": "Luzzatto_Samuel-David_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 383", "author": "", "orig_id": 1411477}}, {"model": "metainfo.source", "pk": 9897, "fields": {"orig_filename": "Maager_Carl_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 383f.", "author": "", "orig_id": 1411478}}, {"model": "metainfo.source", "pk": 9898, "fields": {"orig_filename": "Maassen_Friedrich-Bernhard_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384f.", "author": "", "orig_id": 1411483}}, {"model": "metainfo.source", "pk": 9899, "fields": {"orig_filename": "Maass_Alois-Simon_1758_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411480}}, {"model": "metainfo.source", "pk": 9900, "fields": {"orig_filename": "Maass_Ferdinand_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411481}}, {"model": "metainfo.source", "pk": 9901, "fields": {"orig_filename": "Maass_Friedrich-Otto_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411482}}, {"model": "metainfo.source", "pk": 9902, "fields": {"orig_filename": "Macalik-Ivanobran_Josef_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 385", "author": "", "orig_id": 1411484}}, {"model": "metainfo.source", "pk": 9903, "fields": {"orig_filename": "Macan_Jakub-Rafael_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 385f.", "author": "", "orig_id": 1411485}}, {"model": "metainfo.source", "pk": 9904, "fields": {"orig_filename": "Macasy_Gustav_1871_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386", "author": "", "orig_id": 1411486}}, {"model": "metainfo.source", "pk": 9905, "fields": {"orig_filename": "Macca_Antonio_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386", "author": "", "orig_id": 1411487}}, {"model": "metainfo.source", "pk": 9906, "fields": {"orig_filename": "Macchio_Karl_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387", "author": "", "orig_id": 1411489}}, {"model": "metainfo.source", "pk": 9907, "fields": {"orig_filename": "Macchi_Mauro_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386f.", "author": "", "orig_id": 1411488}}, {"model": "metainfo.source", "pk": 9908, "fields": {"orig_filename": "Macek_Antonin_1872_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387", "author": "", "orig_id": 1411490}}, {"model": "metainfo.source", "pk": 9909, "fields": {"orig_filename": "Macelariu_Ilie_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387f.", "author": "", "orig_id": 1411568}}, {"model": "metainfo.source", "pk": 9910, "fields": {"orig_filename": "Machacek_Simeon-Karel_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390f.", "author": "", "orig_id": 1411573}}, {"model": "metainfo.source", "pk": 9911, "fields": {"orig_filename": "Machac_Ladislav_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390", "author": "", "orig_id": 1411574}}, {"model": "metainfo.source", "pk": 9912, "fields": {"orig_filename": "Machalski_Maksymilian_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391", "author": "", "orig_id": 1411576}}, {"model": "metainfo.source", "pk": 9913, "fields": {"orig_filename": "Machal_Jan_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391", "author": "", "orig_id": 1411575}}, {"model": "metainfo.source", "pk": 9914, "fields": {"orig_filename": "Machanek_Ignaz_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391f.", "author": "", "orig_id": 1411577}}, {"model": "metainfo.source", "pk": 9915, "fields": {"orig_filename": "Machar_Josef-Svatopluk_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 392f.", "author": "", "orig_id": 1411578}}, {"model": "metainfo.source", "pk": 9916, "fields": {"orig_filename": "Macha_Karel-Hynek_1810_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390", "author": "", "orig_id": 1411572}}, {"model": "metainfo.source", "pk": 9917, "fields": {"orig_filename": "Machek_Antonin_1775_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393", "author": "", "orig_id": 1411579}}, {"model": "metainfo.source", "pk": 9918, "fields": {"orig_filename": "Machek_Emanuel_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393", "author": "", "orig_id": 1411580}}, {"model": "metainfo.source", "pk": 9919, "fields": {"orig_filename": "Machek_Ernst_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393f.", "author": "", "orig_id": 1411581}}, {"model": "metainfo.source", "pk": 9920, "fields": {"orig_filename": "Macher_Matthias_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394", "author": "", "orig_id": 1411582}}, {"model": "metainfo.source", "pk": 9921, "fields": {"orig_filename": "Macher_Maximilian_1882_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394", "author": "", "orig_id": 1411583}}, {"model": "metainfo.source", "pk": 9922, "fields": {"orig_filename": "Machold_Joseph_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394f.", "author": "", "orig_id": 1411584}}, {"model": "metainfo.source", "pk": 9923, "fields": {"orig_filename": "Mach_Edmund_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 388", "author": "", "orig_id": 1411569}}, {"model": "metainfo.source", "pk": 9924, "fields": {"orig_filename": "Mach_Ernst_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 388f.", "author": "", "orig_id": 1411570}}, {"model": "metainfo.source", "pk": 9925, "fields": {"orig_filename": "Mach_Franz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 389f.", "author": "", "orig_id": 1411571}}, {"model": "metainfo.source", "pk": 9926, "fields": {"orig_filename": "Maciejowski_Ignacy_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395", "author": "", "orig_id": 1411585}}, {"model": "metainfo.source", "pk": 9927, "fields": {"orig_filename": "Mack_Jozsef_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395", "author": "", "orig_id": 1411586}}, {"model": "metainfo.source", "pk": 9928, "fields": {"orig_filename": "Mack_Karl_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395f.", "author": "", "orig_id": 1411587}}, {"model": "metainfo.source", "pk": 9929, "fields": {"orig_filename": "Macun_Ivan_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411658}}, {"model": "metainfo.source", "pk": 9930, "fields": {"orig_filename": "Maczka_Jozef_1888_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411659}}, {"model": "metainfo.source", "pk": 9931, "fields": {"orig_filename": "Maczynski_Jozef_1807_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411660}}, {"model": "metainfo.source", "pk": 9932, "fields": {"orig_filename": "Madach_Imre_1823_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396f.", "author": "", "orig_id": 1411661}}, {"model": "metainfo.source", "pk": 9933, "fields": {"orig_filename": "Madarasz-Kisfalud_Laszlo_1811_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 397f.", "author": "", "orig_id": 1411663}}, {"model": "metainfo.source", "pk": 9934, "fields": {"orig_filename": "Loss_Giuseppe_1831_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412221}}, {"model": "metainfo.source", "pk": 9935, "fields": {"orig_filename": "Lostak_Jan_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412222}}, {"model": "metainfo.source", "pk": 9936, "fields": {"orig_filename": "Los_Jan_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325f.", "author": "", "orig_id": 1412212}}, {"model": "metainfo.source", "pk": 9937, "fields": {"orig_filename": "Lotheissen_Ferdinand_1833_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329f.", "author": "", "orig_id": 1412293}}, {"model": "metainfo.source", "pk": 9938, "fields": {"orig_filename": "Lotheissen_Georg_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330", "author": "", "orig_id": 1412294}}, {"model": "metainfo.source", "pk": 9939, "fields": {"orig_filename": "Lothringen_Karl-Eugen_1751_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330", "author": "", "orig_id": 1412295}}, {"model": "metainfo.source", "pk": 9940, "fields": {"orig_filename": "Lotti-Santa_Marcella_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412299}}, {"model": "metainfo.source", "pk": 9941, "fields": {"orig_filename": "Lott_Franz-Karl_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330f.", "author": "", "orig_id": 1412296}}, {"model": "metainfo.source", "pk": 9942, "fields": {"orig_filename": "Lott_Gustav-Christian_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412297}}, {"model": "metainfo.source", "pk": 9943, "fields": {"orig_filename": "Lott_Julius_1836_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412298}}, {"model": "metainfo.source", "pk": 9944, "fields": {"orig_filename": "Lotz_Karoly_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332", "author": "", "orig_id": 1412300}}, {"model": "metainfo.source", "pk": 9945, "fields": {"orig_filename": "Lotz_Wilhelm_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332", "author": "", "orig_id": 1412301}}, {"model": "metainfo.source", "pk": 9946, "fields": {"orig_filename": "Louis-Wawel_Jozef_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332f.", "author": "", "orig_id": 1412302}}, {"model": "metainfo.source", "pk": 9947, "fields": {"orig_filename": "Lovassy_Andor_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412303}}, {"model": "metainfo.source", "pk": 9948, "fields": {"orig_filename": "Lovassy_Laszlo_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412304}}, {"model": "metainfo.source", "pk": 9949, "fields": {"orig_filename": "Lovassy_Sandor_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412305}}, {"model": "metainfo.source", "pk": 9950, "fields": {"orig_filename": "Lovati_Teodoro_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412306}}, {"model": "metainfo.source", "pk": 9951, "fields": {"orig_filename": "Loverini_Ponziano_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412307}}, {"model": "metainfo.source", "pk": 9952, "fields": {"orig_filename": "Lovetto_Karl_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412308}}, {"model": "metainfo.source", "pk": 9953, "fields": {"orig_filename": "Lovich_Adam_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412309}}, {"model": "metainfo.source", "pk": 9954, "fields": {"orig_filename": "Lovisato_Domenico_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334f.", "author": "", "orig_id": 1412310}}, {"model": "metainfo.source", "pk": 9955, "fields": {"orig_filename": "Lovrencic_Jakob_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412311}}, {"model": "metainfo.source", "pk": 9956, "fields": {"orig_filename": "Lowag_Josef_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412312}}, {"model": "metainfo.source", "pk": 9957, "fields": {"orig_filename": "Loyp_Joseph_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412313}}, {"model": "metainfo.source", "pk": 9958, "fields": {"orig_filename": "Lozica_Ivan_1910_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412314}}, {"model": "metainfo.source", "pk": 9959, "fields": {"orig_filename": "Lozinski_Bronislaw_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335f.", "author": "", "orig_id": 1412315}}, {"model": "metainfo.source", "pk": 9960, "fields": {"orig_filename": "Lozinski_Walery_1837_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336", "author": "", "orig_id": 1412316}}, {"model": "metainfo.source", "pk": 9961, "fields": {"orig_filename": "Lozinski_Wladyslaw_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336", "author": "", "orig_id": 1412317}}, {"model": "metainfo.source", "pk": 9962, "fields": {"orig_filename": "Lozovina_Vinko_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336f.", "author": "", "orig_id": 1412387}}, {"model": "metainfo.source", "pk": 9963, "fields": {"orig_filename": "Lozynskyj_Josyp_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412388}}, {"model": "metainfo.source", "pk": 9964, "fields": {"orig_filename": "Lozynskyj_Mychajlo_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412389}}, {"model": "metainfo.source", "pk": 9965, "fields": {"orig_filename": "Luber_Ludwig_1813_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412390}}, {"model": "metainfo.source", "pk": 9966, "fields": {"orig_filename": "Lubinski_Rudolf_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412391}}, {"model": "metainfo.source", "pk": 9967, "fields": {"orig_filename": "Lubomirski_Henryk_1777_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412392}}, {"model": "metainfo.source", "pk": 9968, "fields": {"orig_filename": "Lubomirski_Jerzy_1817_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412393}}, {"model": "metainfo.source", "pk": 9969, "fields": {"orig_filename": "Lubomirski_Kazimierz_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412394}}, {"model": "metainfo.source", "pk": 9970, "fields": {"orig_filename": "Lubrich_Agost_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338f.", "author": "", "orig_id": 1412395}}, {"model": "metainfo.source", "pk": 9971, "fields": {"orig_filename": "Lucam_Anna_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339", "author": "", "orig_id": 1412396}}, {"model": "metainfo.source", "pk": 9972, "fields": {"orig_filename": "Lucam_Carl_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339", "author": "", "orig_id": 1412397}}, {"model": "metainfo.source", "pk": 9973, "fields": {"orig_filename": "Lucam_Wilhelm_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339f.", "author": "", "orig_id": 1412398}}, {"model": "metainfo.source", "pk": 9974, "fields": {"orig_filename": "Lucas_Carl-Wilhelm_1803_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340", "author": "", "orig_id": 1412399}}, {"model": "metainfo.source", "pk": 9975, "fields": {"orig_filename": "Lucatello_Luigi_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340", "author": "", "orig_id": 1412400}}, {"model": "metainfo.source", "pk": 9976, "fields": {"orig_filename": "Luccardi_Vincenzo_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412402}}, {"model": "metainfo.source", "pk": 9977, "fields": {"orig_filename": "Lucca_Pauline_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340f.", "author": "", "orig_id": 1412401}}, {"model": "metainfo.source", "pk": 9978, "fields": {"orig_filename": "Lucerna_Eduard_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412403}}, {"model": "metainfo.source", "pk": 9979, "fields": {"orig_filename": "Luchner_Oskar-Friedrich_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412404}}, {"model": "metainfo.source", "pk": 9980, "fields": {"orig_filename": "Luciani_Tommaso_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341f.", "author": "", "orig_id": 1412405}}, {"model": "metainfo.source", "pk": 9981, "fields": {"orig_filename": "Lucich_Geza_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 342", "author": "", "orig_id": 1412406}}, {"model": "metainfo.source", "pk": 9982, "fields": {"orig_filename": "Luckaj_Mychajlo_1789_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343", "author": "", "orig_id": 1412408}}, {"model": "metainfo.source", "pk": 9983, "fields": {"orig_filename": "Lucka_Emil_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 342f.", "author": "", "orig_id": 1412407}}, {"model": "metainfo.source", "pk": 9984, "fields": {"orig_filename": "Luckhardt_Fritz_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343", "author": "", "orig_id": 1412409}}, {"model": "metainfo.source", "pk": 9985, "fields": {"orig_filename": "Luckmann_Joseph_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343f.", "author": "", "orig_id": 1411003}}, {"model": "metainfo.source", "pk": 9986, "fields": {"orig_filename": "Luckmann_Karl_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344", "author": "", "orig_id": 1411004}}, {"model": "metainfo.source", "pk": 9987, "fields": {"orig_filename": "Luckmann_Lambert-Carl_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344", "author": "", "orig_id": 1411005}}, {"model": "metainfo.source", "pk": 9988, "fields": {"orig_filename": "Ludescher_Beat_1777_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344f.", "author": "", "orig_id": 1411006}}, {"model": "metainfo.source", "pk": 9989, "fields": {"orig_filename": "Ludewig_Anton-Edmund_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411007}}, {"model": "metainfo.source", "pk": 9990, "fields": {"orig_filename": "Ludig_Emanuel_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411008}}, {"model": "metainfo.source", "pk": 9991, "fields": {"orig_filename": "Ludolf_Emanuel_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411009}}, {"model": "metainfo.source", "pk": 9992, "fields": {"orig_filename": "Ludvigh_Janos_1812_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345f.", "author": "", "orig_id": 1411010}}, {"model": "metainfo.source", "pk": 9993, "fields": {"orig_filename": "Ludvigh_Samuel_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346", "author": "", "orig_id": 1411011}}, {"model": "metainfo.source", "pk": 9994, "fields": {"orig_filename": "Ludvik_Josef-Myslimir_1796_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346", "author": "", "orig_id": 1411012}}, {"model": "metainfo.source", "pk": 9995, "fields": {"orig_filename": "Ludwig_Alfred_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346f.", "author": "", "orig_id": 1411013}}, {"model": "metainfo.source", "pk": 9996, "fields": {"orig_filename": "Ludwig_Bernhard-Hieronymus_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347", "author": "", "orig_id": 1411015}}, {"model": "metainfo.source", "pk": 9997, "fields": {"orig_filename": "Ludwig_Bernhard_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347", "author": "", "orig_id": 1411014}}, {"model": "metainfo.source", "pk": 9998, "fields": {"orig_filename": "Ludwig_Ernst_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347f.", "author": "", "orig_id": 1411016}}, {"model": "metainfo.source", "pk": 9999, "fields": {"orig_filename": "Ludwig_Franz-Josef_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411017}}, {"model": "metainfo.source", "pk": 10000, "fields": {"orig_filename": "Ludwig_Franz-Xaver_1868_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411018}}, {"model": "metainfo.source", "pk": 10001, "fields": {"orig_filename": "Ludwig_Georg_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411020}}, {"model": "metainfo.source", "pk": 10002, "fields": {"orig_filename": "Ludwig_Hermann-Wilhelm_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349", "author": "", "orig_id": 1411094}}, {"model": "metainfo.source", "pk": 10003, "fields": {"orig_filename": "Ludwig_Hermann_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348f.", "author": "", "orig_id": 1411021}}, {"model": "metainfo.source", "pk": 10004, "fields": {"orig_filename": "Ludwig_Joseph-Anton_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349", "author": "", "orig_id": 1411095}}, {"model": "metainfo.source", "pk": 10005, "fields": {"orig_filename": "Ludwig_Karl_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349f.", "author": "", "orig_id": 1411096}}, {"model": "metainfo.source", "pk": 10006, "fields": {"orig_filename": "Ludwig_Karl_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350", "author": "", "orig_id": 1411097}}, {"model": "metainfo.source", "pk": 10007, "fields": {"orig_filename": "Ludwig_Karl_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350", "author": "", "orig_id": 1411098}}, {"model": "metainfo.source", "pk": 10008, "fields": {"orig_filename": "Ludwig_Salvator_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350f.", "author": "", "orig_id": 1411099}}, {"model": "metainfo.source", "pk": 10009, "fields": {"orig_filename": "Ludwig_Viktor_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351", "author": "", "orig_id": 1411100}}, {"model": "metainfo.source", "pk": 10010, "fields": {"orig_filename": "Ludwik_Kamill_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351", "author": "", "orig_id": 1411101}}, {"model": "metainfo.source", "pk": 10011, "fields": {"orig_filename": "Ludwik_Paul_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351f.", "author": "", "orig_id": 1411102}}, {"model": "metainfo.source", "pk": 10012, "fields": {"orig_filename": "Lueger_Karl_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 352f.", "author": "", "orig_id": 1411103}}, {"model": "metainfo.source", "pk": 10013, "fields": {"orig_filename": "Luenemann_Erich_1881_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353", "author": "", "orig_id": 1411104}}, {"model": "metainfo.source", "pk": 10014, "fields": {"orig_filename": "Luessner_Moritz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353", "author": "", "orig_id": 1411105}}, {"model": "metainfo.source", "pk": 10015, "fields": {"orig_filename": "Luetgendorff-Leinburg_Ferdinand_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353f.", "author": "", "orig_id": 1411106}}, {"model": "metainfo.source", "pk": 10016, "fields": {"orig_filename": "Luetgendorff-Leinburg_Otto-Gottfried_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411107}}, {"model": "metainfo.source", "pk": 10017, "fields": {"orig_filename": "Luetgendorff-Leinburg_Willibald-Leo_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411108}}, {"model": "metainfo.source", "pk": 10018, "fields": {"orig_filename": "Luetzow_Franz_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411109}}, {"model": "metainfo.source", "pk": 10019, "fields": {"orig_filename": "Luetzow_Heinrich_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354f.", "author": "", "orig_id": 1411110}}, {"model": "metainfo.source", "pk": 10020, "fields": {"orig_filename": "Luetzow_Karl_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355", "author": "", "orig_id": 1411111}}, {"model": "metainfo.source", "pk": 10021, "fields": {"orig_filename": "Lugert_Josef_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356f.", "author": "", "orig_id": 1411116}}, {"model": "metainfo.source", "pk": 10022, "fields": {"orig_filename": "Luger_Alfred_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355", "author": "", "orig_id": 1411112}}, {"model": "metainfo.source", "pk": 10023, "fields": {"orig_filename": "Luger_Alphons_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355f.", "author": "", "orig_id": 1411113}}, {"model": "metainfo.source", "pk": 10024, "fields": {"orig_filename": "Luger_Georg_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356", "author": "", "orig_id": 1411115}}, {"model": "metainfo.source", "pk": 10025, "fields": {"orig_filename": "Luggin_Hans_1863_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 357", "author": "", "orig_id": 1411117}}, {"model": "metainfo.source", "pk": 10026, "fields": {"orig_filename": "Luggin_Josef_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 357f.", "author": "", "orig_id": 1411118}}, {"model": "metainfo.source", "pk": 10027, "fields": {"orig_filename": "Lugnani_Giuseppe_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411191}}, {"model": "metainfo.source", "pk": 10028, "fields": {"orig_filename": "Lugossy_Jozsef_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411192}}, {"model": "metainfo.source", "pk": 10029, "fields": {"orig_filename": "Luh_Heinrich_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411193}}, {"model": "metainfo.source", "pk": 10030, "fields": {"orig_filename": "Luick_Karl_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358f.", "author": "", "orig_id": 1411194}}, {"model": "metainfo.source", "pk": 10031, "fields": {"orig_filename": "Luithlen_Friedrich_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 359", "author": "", "orig_id": 1411195}}, {"model": "metainfo.source", "pk": 10032, "fields": {"orig_filename": "Luithlen_Hugo_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 359f.", "author": "", "orig_id": 1411196}}, {"model": "metainfo.source", "pk": 10033, "fields": {"orig_filename": "Luithlen_Marie_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360", "author": "", "orig_id": 1411197}}, {"model": "metainfo.source", "pk": 10034, "fields": {"orig_filename": "Luithlen_Martha_1866_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360", "author": "", "orig_id": 1411198}}, {"model": "metainfo.source", "pk": 10035, "fields": {"orig_filename": "Lukachich-Somorja_Geza_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360f.", "author": "", "orig_id": 1411199}}, {"model": "metainfo.source", "pk": 10036, "fields": {"orig_filename": "Lukacsy_Imre_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411206}}, {"model": "metainfo.source", "pk": 10037, "fields": {"orig_filename": "Loewinger_Cilli_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 294f.", "author": "", "orig_id": 1411836}}, {"model": "metainfo.source", "pk": 10038, "fields": {"orig_filename": "Loewit_Moritz_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 295", "author": "", "orig_id": 1411837}}, {"model": "metainfo.source", "pk": 10039, "fields": {"orig_filename": "Loewl-Lenkenthal_Ferdinand_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 295f.", "author": "", "orig_id": 1411838}}, {"model": "metainfo.source", "pk": 10040, "fields": {"orig_filename": "Loewy_Albert_1816_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411839}}, {"model": "metainfo.source", "pk": 10041, "fields": {"orig_filename": "Loewy_Antonie_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411840}}, {"model": "metainfo.source", "pk": 10042, "fields": {"orig_filename": "Loewy_Emanuel_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411911}}, {"model": "metainfo.source", "pk": 10043, "fields": {"orig_filename": "Loewy_Josef_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296f.", "author": "", "orig_id": 1411912}}, {"model": "metainfo.source", "pk": 10044, "fields": {"orig_filename": "Loewy_Moritz_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297f.", "author": "", "orig_id": 1411914}}, {"model": "metainfo.source", "pk": 10045, "fields": {"orig_filename": "Loewy_Siegfried_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298", "author": "", "orig_id": 1411915}}, {"model": "metainfo.source", "pk": 10046, "fields": {"orig_filename": "Loew_Georg_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411734}}, {"model": "metainfo.source", "pk": 10047, "fields": {"orig_filename": "Loew_Immanuel_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411735}}, {"model": "metainfo.source", "pk": 10048, "fields": {"orig_filename": "Loew_Joseph_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283f.", "author": "", "orig_id": 1411736}}, {"model": "metainfo.source", "pk": 10049, "fields": {"orig_filename": "Loew_Karl_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 284", "author": "", "orig_id": 1411737}}, {"model": "metainfo.source", "pk": 10050, "fields": {"orig_filename": "Loew_Konrad_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 284f.", "author": "", "orig_id": 1411738}}, {"model": "metainfo.source", "pk": 10051, "fields": {"orig_filename": "Loew_Leopold_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 285", "author": "", "orig_id": 1411739}}, {"model": "metainfo.source", "pk": 10052, "fields": {"orig_filename": "Loew_Moritz_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 285f.", "author": "", "orig_id": 1411740}}, {"model": "metainfo.source", "pk": 10053, "fields": {"orig_filename": "Loew_Philipp_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411742}}, {"model": "metainfo.source", "pk": 10054, "fields": {"orig_filename": "Loew_Philip_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411741}}, {"model": "metainfo.source", "pk": 10055, "fields": {"orig_filename": "Loew_Tobias_1844_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411743}}, {"model": "metainfo.source", "pk": 10056, "fields": {"orig_filename": "Loew_Wilhelm_1812_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411744}}, {"model": "metainfo.source", "pk": 10057, "fields": {"orig_filename": "Logothetti_Hugo_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298", "author": "", "orig_id": 1411916}}, {"model": "metainfo.source", "pk": 10058, "fields": {"orig_filename": "Lohan_Robert_1884_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298f.", "author": "", "orig_id": 1411917}}, {"model": "metainfo.source", "pk": 10059, "fields": {"orig_filename": "Lohner_Heinrich_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299", "author": "", "orig_id": 1411918}}, {"model": "metainfo.source", "pk": 10060, "fields": {"orig_filename": "Lohner_Jakob_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299", "author": "", "orig_id": 1411919}}, {"model": "metainfo.source", "pk": 10061, "fields": {"orig_filename": "Lohner_Ludwig_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299f.", "author": "", "orig_id": 1411920}}, {"model": "metainfo.source", "pk": 10062, "fields": {"orig_filename": "Lohninger_Joseph_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 300", "author": "", "orig_id": 1411922}}, {"model": "metainfo.source", "pk": 10063, "fields": {"orig_filename": "Lohr_Otto_1847_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 300f.", "author": "", "orig_id": 1411923}}, {"model": "metainfo.source", "pk": 10064, "fields": {"orig_filename": "Lohsing_Ernst_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301", "author": "", "orig_id": 1411924}}, {"model": "metainfo.source", "pk": 10065, "fields": {"orig_filename": "Lohwag_Ernst_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301", "author": "", "orig_id": 1411925}}, {"model": "metainfo.source", "pk": 10066, "fields": {"orig_filename": "Lohwag_Heinrich_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301f.", "author": "", "orig_id": 1411926}}, {"model": "metainfo.source", "pk": 10067, "fields": {"orig_filename": "Loidl_Karl_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411927}}, {"model": "metainfo.source", "pk": 10068, "fields": {"orig_filename": "Loidol_Oddo_1858_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411928}}, {"model": "metainfo.source", "pk": 10069, "fields": {"orig_filename": "Loimann_Gustav_1853_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411929}}, {"model": "metainfo.source", "pk": 10070, "fields": {"orig_filename": "Loinger_Vitus_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302f.", "author": "", "orig_id": 1411930}}, {"model": "metainfo.source", "pk": 10071, "fields": {"orig_filename": "Lojko-Tisovsky_August_1843_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303", "author": "", "orig_id": 1411931}}, {"model": "metainfo.source", "pk": 10072, "fields": {"orig_filename": "Lokar_Anton_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303", "author": "", "orig_id": 1411932}}, {"model": "metainfo.source", "pk": 10073, "fields": {"orig_filename": "Lolek_Stanislav_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303f.", "author": "", "orig_id": 1411933}}, {"model": "metainfo.source", "pk": 10074, "fields": {"orig_filename": "Lolli_Eude_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1411934}}, {"model": "metainfo.source", "pk": 10075, "fields": {"orig_filename": "Lombardini_Alexander_1851_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1412008}}, {"model": "metainfo.source", "pk": 10076, "fields": {"orig_filename": "Lombardini_Elia_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1412009}}, {"model": "metainfo.source", "pk": 10077, "fields": {"orig_filename": "Lombroso_Ezechia-Marco_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1412010}}, {"model": "metainfo.source", "pk": 10078, "fields": {"orig_filename": "Lomnicki_Jaroslaw-Ludomir_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305", "author": "", "orig_id": 1412011}}, {"model": "metainfo.source", "pk": 10079, "fields": {"orig_filename": "Lomnicki_Marian_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305", "author": "", "orig_id": 1412012}}, {"model": "metainfo.source", "pk": 10080, "fields": {"orig_filename": "Longhi_Giuseppe_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305f.", "author": "", "orig_id": 1412013}}, {"model": "metainfo.source", "pk": 10081, "fields": {"orig_filename": "Longo_Emanuele_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306", "author": "", "orig_id": 1412014}}, {"model": "metainfo.source", "pk": 10082, "fields": {"orig_filename": "Lonkay_Antal_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306", "author": "", "orig_id": 1412015}}, {"model": "metainfo.source", "pk": 10083, "fields": {"orig_filename": "Lonovics_Jozsef_1793_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306f.", "author": "", "orig_id": 1412016}}, {"model": "metainfo.source", "pk": 10084, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Albert_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307", "author": "", "orig_id": 1412017}}, {"model": "metainfo.source", "pk": 10085, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Gabor_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307", "author": "", "orig_id": 1412018}}, {"model": "metainfo.source", "pk": 10086, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Menyhert_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307f.", "author": "", "orig_id": 1412019}}, {"model": "metainfo.source", "pk": 10087, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Stephanie_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308", "author": "", "orig_id": 1412020}}, {"model": "metainfo.source", "pk": 10088, "fields": {"orig_filename": "Lonza_Antonio_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308", "author": "", "orig_id": 1412021}}, {"model": "metainfo.source", "pk": 10089, "fields": {"orig_filename": "Loosey_Karl-Friedrich_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412028}}, {"model": "metainfo.source", "pk": 10090, "fields": {"orig_filename": "Loos_Adolf_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308f.", "author": "", "orig_id": 1412022}}, {"model": "metainfo.source", "pk": 10091, "fields": {"orig_filename": "Loos_Friedrich_1797_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 309f.", "author": "", "orig_id": 1412023}}, {"model": "metainfo.source", "pk": 10092, "fields": {"orig_filename": "Loos_Johann_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310", "author": "", "orig_id": 1412024}}, {"model": "metainfo.source", "pk": 10093, "fields": {"orig_filename": "Loos_Josef_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310", "author": "", "orig_id": 1412025}}, {"model": "metainfo.source", "pk": 10094, "fields": {"orig_filename": "Loos_Kurt-Camillo_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310f.", "author": "", "orig_id": 1412026}}, {"model": "metainfo.source", "pk": 10095, "fields": {"orig_filename": "Loos_Lina_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412027}}, {"model": "metainfo.source", "pk": 10096, "fields": {"orig_filename": "Lopasic_Dusan_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412100}}, {"model": "metainfo.source", "pk": 10097, "fields": {"orig_filename": "Lopasic_Radoslav_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412101}}, {"model": "metainfo.source", "pk": 10098, "fields": {"orig_filename": "Lorantfi_Antal_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412102}}, {"model": "metainfo.source", "pk": 10099, "fields": {"orig_filename": "Lorber_Franz_1846_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412103}}, {"model": "metainfo.source", "pk": 10100, "fields": {"orig_filename": "Lorber_Jakob_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312f.", "author": "", "orig_id": 1412104}}, {"model": "metainfo.source", "pk": 10101, "fields": {"orig_filename": "Lorens_Carl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 313", "author": "", "orig_id": 1412105}}, {"model": "metainfo.source", "pk": 10102, "fields": {"orig_filename": "Lorentz-Langendorf_Johann-Ludwig_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 313f.", "author": "", "orig_id": 1412106}}, {"model": "metainfo.source", "pk": 10103, "fields": {"orig_filename": "Lorenz-Liburnau_Josef-Roman_1825_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 319f.", "author": "", "orig_id": 1412119}}, {"model": "metainfo.source", "pk": 10104, "fields": {"orig_filename": "Lorenz-Liburnau_Ludwig_1856_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 320f.", "author": "", "orig_id": 1412120}}, {"model": "metainfo.source", "pk": 10105, "fields": {"orig_filename": "Lorenzetti_Giuseppe_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412121}}, {"model": "metainfo.source", "pk": 10106, "fields": {"orig_filename": "Lorenzi_Bartolomeo_1732_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412198}}, {"model": "metainfo.source", "pk": 10107, "fields": {"orig_filename": "Lorenzoni_Antonio_1755_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412199}}, {"model": "metainfo.source", "pk": 10108, "fields": {"orig_filename": "Lorenzoni_Franz_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322", "author": "", "orig_id": 1412200}}, {"model": "metainfo.source", "pk": 10109, "fields": {"orig_filename": "Lorenzoni_Giovanni_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322", "author": "", "orig_id": 1412201}}, {"model": "metainfo.source", "pk": 10110, "fields": {"orig_filename": "Lorenzoni_Giuseppe_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322f.", "author": "", "orig_id": 1412202}}, {"model": "metainfo.source", "pk": 10111, "fields": {"orig_filename": "Lorenzutti_Lorenzo_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 323", "author": "", "orig_id": 1412203}}, {"model": "metainfo.source", "pk": 10112, "fields": {"orig_filename": "Lorenz_Adolf_1854_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 314f.", "author": "", "orig_id": 1412107}}, {"model": "metainfo.source", "pk": 10113, "fields": {"orig_filename": "Lorenz_Alfred-Ottokar_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315", "author": "", "orig_id": 1412108}}, {"model": "metainfo.source", "pk": 10114, "fields": {"orig_filename": "Lorenz_Emil_1889_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1461233}}, {"model": "metainfo.source", "pk": 10115, "fields": {"orig_filename": "Lorenz_Franz_1803_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315", "author": "", "orig_id": 1412109}}, {"model": "metainfo.source", "pk": 10116, "fields": {"orig_filename": "Lorenz_Hans_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315f.", "author": "", "orig_id": 1412110}}, {"model": "metainfo.source", "pk": 10117, "fields": {"orig_filename": "Lorenz_Johann-Jakob_1807_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317", "author": "", "orig_id": 1412113}}, {"model": "metainfo.source", "pk": 10118, "fields": {"orig_filename": "Lorenz_Johann_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316f.", "author": "", "orig_id": 1412112}}, {"model": "metainfo.source", "pk": 10119, "fields": {"orig_filename": "Lorenz_Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317", "author": "", "orig_id": 1412114}}, {"model": "metainfo.source", "pk": 10120, "fields": {"orig_filename": "Lorenz_Karl_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317f.", "author": "", "orig_id": 1412115}}, {"model": "metainfo.source", "pk": 10121, "fields": {"orig_filename": "Lorenz_Martin_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 318", "author": "", "orig_id": 1412116}}, {"model": "metainfo.source", "pk": 10122, "fields": {"orig_filename": "Lorenz_Ottokar_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 318f.", "author": "", "orig_id": 1412117}}, {"model": "metainfo.source", "pk": 10123, "fields": {"orig_filename": "Lorenz_Richard_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 319", "author": "", "orig_id": 1412118}}, {"model": "metainfo.source", "pk": 10124, "fields": {"orig_filename": "Lorinser_Friedrich-Wilhelm_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 323f.", "author": "", "orig_id": 1412204}}, {"model": "metainfo.source", "pk": 10125, "fields": {"orig_filename": "Lorinser_Gisela_1856_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412205}}, {"model": "metainfo.source", "pk": 10126, "fields": {"orig_filename": "Lorinser_Gustav_1811_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412206}}, {"model": "metainfo.source", "pk": 10127, "fields": {"orig_filename": "Loritz_Urban_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324f.", "author": "", "orig_id": 1412208}}, {"model": "metainfo.source", "pk": 10128, "fields": {"orig_filename": "Lorkovic_Blaz_1839_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325", "author": "", "orig_id": 1412209}}, {"model": "metainfo.source", "pk": 10129, "fields": {"orig_filename": "Lorkovic_Ivan_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325", "author": "", "orig_id": 1412210}}, {"model": "metainfo.source", "pk": 10130, "fields": {"orig_filename": "Los-Grotkow_Wlodzimierz-Adam-Aleksander_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326", "author": "", "orig_id": 1412213}}, {"model": "metainfo.source", "pk": 10131, "fields": {"orig_filename": "Losa_Vaclav_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326", "author": "", "orig_id": 1412214}}, {"model": "metainfo.source", "pk": 10132, "fields": {"orig_filename": "Loschmidt_Johann-Josef_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326f.", "author": "", "orig_id": 1412215}}, {"model": "metainfo.source", "pk": 10133, "fields": {"orig_filename": "Loserth_Johann_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 328f.", "author": "", "orig_id": 1412218}}, {"model": "metainfo.source", "pk": 10134, "fields": {"orig_filename": "Losert_Benedikt_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 327f.", "author": "", "orig_id": 1412217}}, {"model": "metainfo.source", "pk": 10135, "fields": {"orig_filename": "Loser_Franz_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 327", "author": "", "orig_id": 1412216}}, {"model": "metainfo.source", "pk": 10136, "fields": {"orig_filename": "Loskay_Gabriel_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412219}}, {"model": "metainfo.source", "pk": 10137, "fields": {"orig_filename": "Losonczy_Laszlo_1812_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412220}}, {"model": "metainfo.source", "pk": 10138, "fields": {"orig_filename": "Littrow_Hermann_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251", "author": "", "orig_id": 1411372}}, {"model": "metainfo.source", "pk": 10139, "fields": {"orig_filename": "Littrow_Joseph-Johann_1781_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251f.", "author": "", "orig_id": 1411373}}, {"model": "metainfo.source", "pk": 10140, "fields": {"orig_filename": "Littrow_Karl-Ludwig_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 252f.", "author": "", "orig_id": 1411374}}, {"model": "metainfo.source", "pk": 10141, "fields": {"orig_filename": "Litzelhofen_Eduard_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253", "author": "", "orig_id": 1411375}}, {"model": "metainfo.source", "pk": 10142, "fields": {"orig_filename": "Livadic-Wiesner_Branimir_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253", "author": "", "orig_id": 1411376}}, {"model": "metainfo.source", "pk": 10143, "fields": {"orig_filename": "Livadic-Wiesner_Ferdo_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253f.", "author": "", "orig_id": 1411444}}, {"model": "metainfo.source", "pk": 10144, "fields": {"orig_filename": "Liverati_Giovanni_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254", "author": "", "orig_id": 1411445}}, {"model": "metainfo.source", "pk": 10145, "fields": {"orig_filename": "Liznar_Josef_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254", "author": "", "orig_id": 1411447}}, {"model": "metainfo.source", "pk": 10146, "fields": {"orig_filename": "Ljubibratic_Mico_1839_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254f.", "author": "", "orig_id": 1411446}}, {"model": "metainfo.source", "pk": 10147, "fields": {"orig_filename": "Ljubic_Sime_1822_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 255", "author": "", "orig_id": 1411448}}, {"model": "metainfo.source", "pk": 10148, "fields": {"orig_filename": "Ljubisa_Stjepan-Mitrov_1824_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 255f.", "author": "", "orig_id": 1411449}}, {"model": "metainfo.source", "pk": 10149, "fields": {"orig_filename": "Ljubsa_Matija_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411450}}, {"model": "metainfo.source", "pk": 10150, "fields": {"orig_filename": "Lobarzewski_Hiacynt-Jan_1818_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411451}}, {"model": "metainfo.source", "pk": 10151, "fields": {"orig_filename": "Lobenstock_Heinrich_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411452}}, {"model": "metainfo.source", "pk": 10152, "fields": {"orig_filename": "Lobeski_Felicjan_1815_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257", "author": "", "orig_id": 1411453}}, {"model": "metainfo.source", "pk": 10153, "fields": {"orig_filename": "Lobinger_Karl_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257", "author": "", "orig_id": 1411454}}, {"model": "metainfo.source", "pk": 10154, "fields": {"orig_filename": "Lobkowitz_Anton-Isidor_1773_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258", "author": "", "orig_id": 1411456}}, {"model": "metainfo.source", "pk": 10155, "fields": {"orig_filename": "Lobkowitz_Ferdinand_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258", "author": "", "orig_id": 1411457}}, {"model": "metainfo.source", "pk": 10156, "fields": {"orig_filename": "Lobkowitz_Ferdinand_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258f.", "author": "", "orig_id": 1411458}}, {"model": "metainfo.source", "pk": 10157, "fields": {"orig_filename": "Lobkowitz_Georg-Christian_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 259f.", "author": "", "orig_id": 1411459}}, {"model": "metainfo.source", "pk": 10158, "fields": {"orig_filename": "Lobkowitz_Johann_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260", "author": "", "orig_id": 1411460}}, {"model": "metainfo.source", "pk": 10159, "fields": {"orig_filename": "Lobkowitz_Josef-Franz-Maximilian_1772_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260f.", "author": "", "orig_id": 1411462}}, {"model": "metainfo.source", "pk": 10160, "fields": {"orig_filename": "Lobkowitz_Josef-Franz_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260", "author": "", "orig_id": 1411461}}, {"model": "metainfo.source", "pk": 10161, "fields": {"orig_filename": "Lobkowitz_Karl-Johann-Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 261", "author": "", "orig_id": 1411463}}, {"model": "metainfo.source", "pk": 10162, "fields": {"orig_filename": "Lobkowitz_Rudolf_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262", "author": "", "orig_id": 1411464}}, {"model": "metainfo.source", "pk": 10163, "fields": {"orig_filename": "Lobkowitz_Zdenko_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262", "author": "", "orig_id": 1411465}}, {"model": "metainfo.source", "pk": 10164, "fields": {"orig_filename": "Lobmayer_Antun_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262f.", "author": "", "orig_id": 1411541}}, {"model": "metainfo.source", "pk": 10165, "fields": {"orig_filename": "Lobmeyr_Ludwig_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263f.", "author": "", "orig_id": 1411543}}, {"model": "metainfo.source", "pk": 10166, "fields": {"orig_filename": "Lobos_Ignacy_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411544}}, {"model": "metainfo.source", "pk": 10167, "fields": {"orig_filename": "Locatelli-Milesi_Giuseppe_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411549}}, {"model": "metainfo.source", "pk": 10168, "fields": {"orig_filename": "Locatelli_Giacomo_1756_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411545}}, {"model": "metainfo.source", "pk": 10169, "fields": {"orig_filename": "Locatelli_Gian-Francesco_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411546}}, {"model": "metainfo.source", "pk": 10170, "fields": {"orig_filename": "Locatelli_Pasino_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264f.", "author": "", "orig_id": 1411547}}, {"model": "metainfo.source", "pk": 10171, "fields": {"orig_filename": "Locatelli_Tommaso_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411548}}, {"model": "metainfo.source", "pk": 10172, "fields": {"orig_filename": "Locella_Guglielmo_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411550}}, {"model": "metainfo.source", "pk": 10173, "fields": {"orig_filename": "Lochau_Viktor-Albrecht_1765_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411551}}, {"model": "metainfo.source", "pk": 10174, "fields": {"orig_filename": "Lochis_Carlo_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411552}}, {"model": "metainfo.source", "pk": 10175, "fields": {"orig_filename": "Lochis_Guglielmo_1789_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411553}}, {"model": "metainfo.source", "pk": 10176, "fields": {"orig_filename": "Lochner_Johann_1756_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411554}}, {"model": "metainfo.source", "pk": 10177, "fields": {"orig_filename": "Locker_Anton_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266f.", "author": "", "orig_id": 1411555}}, {"model": "metainfo.source", "pk": 10178, "fields": {"orig_filename": "Loczka_Jozsef_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267", "author": "", "orig_id": 1411556}}, {"model": "metainfo.source", "pk": 10179, "fields": {"orig_filename": "Loczy_Lajos_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267", "author": "", "orig_id": 1411557}}, {"model": "metainfo.source", "pk": 10180, "fields": {"orig_filename": "Loder_Matthaeus_1781_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268", "author": "", "orig_id": 1411559}}, {"model": "metainfo.source", "pk": 10181, "fields": {"orig_filename": "Lode_Alois_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267f.", "author": "", "orig_id": 1411558}}, {"model": "metainfo.source", "pk": 10182, "fields": {"orig_filename": "Lodi_Emanuele_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268", "author": "", "orig_id": 1411560}}, {"model": "metainfo.source", "pk": 10183, "fields": {"orig_filename": "Lodrini_Antonio_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268f.", "author": "", "orig_id": 1411561}}, {"model": "metainfo.source", "pk": 10184, "fields": {"orig_filename": "Lodron-Laterano_Caspar_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411562}}, {"model": "metainfo.source", "pk": 10185, "fields": {"orig_filename": "Lodron-Laterano_Konstantin_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411563}}, {"model": "metainfo.source", "pk": 10186, "fields": {"orig_filename": "Loebisch_Wilhelm-Franz_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411564}}, {"model": "metainfo.source", "pk": 10187, "fields": {"orig_filename": "Loebl-Tauernstorff_Johann_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270f.", "author": "", "orig_id": 1411567}}, {"model": "metainfo.source", "pk": 10188, "fields": {"orig_filename": "Loebl_Emil_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270", "author": "", "orig_id": 1411565}}, {"model": "metainfo.source", "pk": 10189, "fields": {"orig_filename": "Loebl_Hermann_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270", "author": "", "orig_id": 1411566}}, {"model": "metainfo.source", "pk": 10190, "fields": {"orig_filename": "Loeffler_Alexander_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 271f.", "author": "", "orig_id": 1411637}}, {"model": "metainfo.source", "pk": 10191, "fields": {"orig_filename": "Loeffler_Karl_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272", "author": "", "orig_id": 1411638}}, {"model": "metainfo.source", "pk": 10192, "fields": {"orig_filename": "Loeffler_Leopold_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272", "author": "", "orig_id": 1411639}}, {"model": "metainfo.source", "pk": 10193, "fields": {"orig_filename": "Loeff_Anton_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 271", "author": "", "orig_id": 1411636}}, {"model": "metainfo.source", "pk": 10194, "fields": {"orig_filename": "Loefler_Franz_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272f.", "author": "", "orig_id": 1411640}}, {"model": "metainfo.source", "pk": 10195, "fields": {"orig_filename": "Loeger_Anton_1813_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 273", "author": "", "orig_id": 1411641}}, {"model": "metainfo.source", "pk": 10196, "fields": {"orig_filename": "Loeherer_Andor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 273f.", "author": "", "orig_id": 1411642}}, {"model": "metainfo.source", "pk": 10197, "fields": {"orig_filename": "Loehner_Fritz_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274", "author": "", "orig_id": 1411643}}, {"model": "metainfo.source", "pk": 10198, "fields": {"orig_filename": "Loehner_Hermann_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274", "author": "", "orig_id": 1411644}}, {"model": "metainfo.source", "pk": 10199, "fields": {"orig_filename": "Loehner_Josef_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274f.", "author": "", "orig_id": 1411645}}, {"model": "metainfo.source", "pk": 10200, "fields": {"orig_filename": "Loehner_Ludwig_1812_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 275", "author": "", "orig_id": 1411646}}, {"model": "metainfo.source", "pk": 10201, "fields": {"orig_filename": "Loehneysen_Hilbert_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 275f.", "author": "", "orig_id": 1411647}}, {"model": "metainfo.source", "pk": 10202, "fields": {"orig_filename": "Loehr_Alexander_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 276", "author": "", "orig_id": 1411648}}, {"model": "metainfo.source", "pk": 10203, "fields": {"orig_filename": "Loehr_August_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 276f.", "author": "", "orig_id": 1411649}}, {"model": "metainfo.source", "pk": 10204, "fields": {"orig_filename": "Loehr_Grete_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 277", "author": "", "orig_id": 1411650}}, {"model": "metainfo.source", "pk": 10205, "fields": {"orig_filename": "Loehr_Moritz_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 277f.", "author": "", "orig_id": 1411651}}, {"model": "metainfo.source", "pk": 10206, "fields": {"orig_filename": "Loenhart_Ferenc_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278", "author": "", "orig_id": 1411652}}, {"model": "metainfo.source", "pk": 10207, "fields": {"orig_filename": "Loerenthey_Imre_1867_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278", "author": "", "orig_id": 1411653}}, {"model": "metainfo.source", "pk": 10208, "fields": {"orig_filename": "Loescher_Leopoldine_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279", "author": "", "orig_id": 1411656}}, {"model": "metainfo.source", "pk": 10209, "fields": {"orig_filename": "Loesche_Karl-David-Georg_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278f.", "author": "", "orig_id": 1411654}}, {"model": "metainfo.source", "pk": 10210, "fields": {"orig_filename": "Loesche_Naema_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279", "author": "", "orig_id": 1411655}}, {"model": "metainfo.source", "pk": 10211, "fields": {"orig_filename": "Loeschner_Joseph-Wilhelm_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279f.", "author": "", "orig_id": 1411657}}, {"model": "metainfo.source", "pk": 10212, "fields": {"orig_filename": "Loeschner_Richard_1879_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 280", "author": "", "orig_id": 1411725}}, {"model": "metainfo.source", "pk": 10213, "fields": {"orig_filename": "Loeschnigg_Hans_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281", "author": "", "orig_id": 1411727}}, {"model": "metainfo.source", "pk": 10214, "fields": {"orig_filename": "Loeschnig_Josef_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 280f.", "author": "", "orig_id": 1411726}}, {"model": "metainfo.source", "pk": 10215, "fields": {"orig_filename": "Loessl_Franz-Xaver_1801_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281", "author": "", "orig_id": 1411728}}, {"model": "metainfo.source", "pk": 10216, "fields": {"orig_filename": "Loessl_Friedrich_1817_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281f.", "author": "", "orig_id": 1411729}}, {"model": "metainfo.source", "pk": 10217, "fields": {"orig_filename": "Loessl_Rudolf_1872_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282", "author": "", "orig_id": 1411730}}, {"model": "metainfo.source", "pk": 10218, "fields": {"orig_filename": "Loete_Jozsef_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282", "author": "", "orig_id": 1411731}}, {"model": "metainfo.source", "pk": 10219, "fields": {"orig_filename": "Loevenstein_Jan_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282f.", "author": "", "orig_id": 1411732}}, {"model": "metainfo.source", "pk": 10220, "fields": {"orig_filename": "Loevey_Klara_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411733}}, {"model": "metainfo.source", "pk": 10221, "fields": {"orig_filename": "Loewenbach_Georg_1872_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291", "author": "", "orig_id": 1411827}}, {"model": "metainfo.source", "pk": 10222, "fields": {"orig_filename": "Loewenfeld-Russ_Johann_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291", "author": "", "orig_id": 1411828}}, {"model": "metainfo.source", "pk": 10223, "fields": {"orig_filename": "Loewenstein-Opoka_Nathan_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292", "author": "", "orig_id": 1411831}}, {"model": "metainfo.source", "pk": 10224, "fields": {"orig_filename": "Loewenstein_Ernst_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291f.", "author": "", "orig_id": 1411829}}, {"model": "metainfo.source", "pk": 10225, "fields": {"orig_filename": "Loewenstein_Moritz_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292", "author": "", "orig_id": 1411830}}, {"model": "metainfo.source", "pk": 10226, "fields": {"orig_filename": "Loewenthal_Jakob_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292f.", "author": "", "orig_id": 1411832}}, {"model": "metainfo.source", "pk": 10227, "fields": {"orig_filename": "Loewenthal_Johann_1803_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 293", "author": "", "orig_id": 1411833}}, {"model": "metainfo.source", "pk": 10228, "fields": {"orig_filename": "Loewenthal_Max_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 293f.", "author": "", "orig_id": 1411834}}, {"model": "metainfo.source", "pk": 10229, "fields": {"orig_filename": "Loewenthal_Sophie_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 294", "author": "", "orig_id": 1411835}}, {"model": "metainfo.source", "pk": 10230, "fields": {"orig_filename": "Loewe_Alexander_1808_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286f.", "author": "", "orig_id": 1411745}}, {"model": "metainfo.source", "pk": 10231, "fields": {"orig_filename": "Loewe_Anna_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 287", "author": "", "orig_id": 1411819}}, {"model": "metainfo.source", "pk": 10232, "fields": {"orig_filename": "Loewe_Ferdinand_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 287", "author": "", "orig_id": 1411820}}, {"model": "metainfo.source", "pk": 10233, "fields": {"orig_filename": "Loewe_Gustav_1865_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 288", "author": "", "orig_id": 1411821}}, {"model": "metainfo.source", "pk": 10234, "fields": {"orig_filename": "Loewe_Johann-Heinrich_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 288", "author": "", "orig_id": 1411822}}, {"model": "metainfo.source", "pk": 10235, "fields": {"orig_filename": "Loewe_Julie-Sophie_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 289", "author": "", "orig_id": 1411823}}, {"model": "metainfo.source", "pk": 10236, "fields": {"orig_filename": "Loewe_Ludwig_1794_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 289f.", "author": "", "orig_id": 1411824}}, {"model": "metainfo.source", "pk": 10237, "fields": {"orig_filename": "Loewe_Sophie-Johanna_1815_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 290", "author": "", "orig_id": 1411825}}, {"model": "metainfo.source", "pk": 10238, "fields": {"orig_filename": "Loewe_Theodor_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 290f.", "author": "", "orig_id": 1411826}}, {"model": "metainfo.source", "pk": 10239, "fields": {"orig_filename": "Limbourg_Maximilian_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216f.", "author": "", "orig_id": 1412372}}, {"model": "metainfo.source", "pk": 10240, "fields": {"orig_filename": "Linberger_Istvan_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412373}}, {"model": "metainfo.source", "pk": 10241, "fields": {"orig_filename": "Lindau_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 218f.", "author": "", "orig_id": 1412378}}, {"model": "metainfo.source", "pk": 10242, "fields": {"orig_filename": "Linda_Josef_1789_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 218", "author": "", "orig_id": 1412377}}, {"model": "metainfo.source", "pk": 10243, "fields": {"orig_filename": "Lindenau_Karl-Friedrich_1746_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219", "author": "", "orig_id": 1412380}}, {"model": "metainfo.source", "pk": 10244, "fields": {"orig_filename": "Lindenthal_Gustav_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219f.", "author": "", "orig_id": 1412381}}, {"model": "metainfo.source", "pk": 10245, "fields": {"orig_filename": "Linden_Joseph-Sigmund_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219", "author": "", "orig_id": 1412379}}, {"model": "metainfo.source", "pk": 10246, "fields": {"orig_filename": "Linder_Karl_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412384}}, {"model": "metainfo.source", "pk": 10247, "fields": {"orig_filename": "Lindheim_Alfred_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220f.", "author": "", "orig_id": 1412385}}, {"model": "metainfo.source", "pk": 10248, "fields": {"orig_filename": "Lindheim_Hermann-Dietrich_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 221", "author": "", "orig_id": 1412386}}, {"model": "metainfo.source", "pk": 10249, "fields": {"orig_filename": "Lindheim_Wilhelm_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 221", "author": "", "orig_id": 1411072}}, {"model": "metainfo.source", "pk": 10250, "fields": {"orig_filename": "Lindner_Anton-Friedrich_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222", "author": "", "orig_id": 1411074}}, {"model": "metainfo.source", "pk": 10251, "fields": {"orig_filename": "Lindner_Anton_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222", "author": "", "orig_id": 1411073}}, {"model": "metainfo.source", "pk": 10252, "fields": {"orig_filename": "Lindner_Ernst_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222f.", "author": "", "orig_id": 1411075}}, {"model": "metainfo.source", "pk": 10253, "fields": {"orig_filename": "Lindner_Gustav_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411076}}, {"model": "metainfo.source", "pk": 10254, "fields": {"orig_filename": "Lindner_Karl_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411077}}, {"model": "metainfo.source", "pk": 10255, "fields": {"orig_filename": "Lindner_Pirmin_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411078}}, {"model": "metainfo.source", "pk": 10256, "fields": {"orig_filename": "Lind_Eduard_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412374}}, {"model": "metainfo.source", "pk": 10257, "fields": {"orig_filename": "Lind_Emil_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412375}}, {"model": "metainfo.source", "pk": 10258, "fields": {"orig_filename": "Lind_Karl_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217f.", "author": "", "orig_id": 1412376}}, {"model": "metainfo.source", "pk": 10259, "fields": {"orig_filename": "Lingiardi_Giovanni-Batt_1765_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223f.", "author": "", "orig_id": 1411079}}, {"model": "metainfo.source", "pk": 10260, "fields": {"orig_filename": "Linhart_Emil_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411080}}, {"model": "metainfo.source", "pk": 10261, "fields": {"orig_filename": "Linhart_Gyoergy_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411081}}, {"model": "metainfo.source", "pk": 10262, "fields": {"orig_filename": "Linhart_Karel_1882_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411082}}, {"model": "metainfo.source", "pk": 10263, "fields": {"orig_filename": "Link-Dessauer_Antonie_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411087}}, {"model": "metainfo.source", "pk": 10264, "fields": {"orig_filename": "Linke-Crawford_Frank_1893_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 227f.", "author": "", "orig_id": 1411092}}, {"model": "metainfo.source", "pk": 10265, "fields": {"orig_filename": "Linke_Franz_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411088}}, {"model": "metainfo.source", "pk": 10266, "fields": {"orig_filename": "Linke_Friedrich_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411089}}, {"model": "metainfo.source", "pk": 10267, "fields": {"orig_filename": "Linke_Joseph_1783_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226f.", "author": "", "orig_id": 1411090}}, {"model": "metainfo.source", "pk": 10268, "fields": {"orig_filename": "Linke_Karl_1884_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 227", "author": "", "orig_id": 1411091}}, {"model": "metainfo.source", "pk": 10269, "fields": {"orig_filename": "Links_Rudolf_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411093}}, {"model": "metainfo.source", "pk": 10270, "fields": {"orig_filename": "Link_Adolf_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224f.", "author": "", "orig_id": 1411083}}, {"model": "metainfo.source", "pk": 10271, "fields": {"orig_filename": "Link_Anton_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225", "author": "", "orig_id": 1411084}}, {"model": "metainfo.source", "pk": 10272, "fields": {"orig_filename": "Link_Augustin_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225", "author": "", "orig_id": 1411085}}, {"model": "metainfo.source", "pk": 10273, "fields": {"orig_filename": "Link_Leopold_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225f.", "author": "", "orig_id": 1411086}}, {"model": "metainfo.source", "pk": 10274, "fields": {"orig_filename": "Linnemann_Eduard_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411167}}, {"model": "metainfo.source", "pk": 10275, "fields": {"orig_filename": "Linnert_Gustav_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411168}}, {"model": "metainfo.source", "pk": 10276, "fields": {"orig_filename": "Linsbauer_Karl_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228f.", "author": "", "orig_id": 1411169}}, {"model": "metainfo.source", "pk": 10277, "fields": {"orig_filename": "Linsbauer_Ludwig_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229", "author": "", "orig_id": 1411170}}, {"model": "metainfo.source", "pk": 10278, "fields": {"orig_filename": "Linsmeier_Anton_1840_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229", "author": "", "orig_id": 1411171}}, {"model": "metainfo.source", "pk": 10279, "fields": {"orig_filename": "Linzbauer_Franz-Xaver_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229f.", "author": "", "orig_id": 1411172}}, {"model": "metainfo.source", "pk": 10280, "fields": {"orig_filename": "Linzinger_Ludwig_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230", "author": "", "orig_id": 1411173}}, {"model": "metainfo.source", "pk": 10281, "fields": {"orig_filename": "Lioy_Paolo_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230", "author": "", "orig_id": 1411174}}, {"model": "metainfo.source", "pk": 10282, "fields": {"orig_filename": "Lipcsey-Bilke_Adam_1864_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230f.", "author": "", "orig_id": 1411175}}, {"model": "metainfo.source", "pk": 10283, "fields": {"orig_filename": "Lipiner_Siegfried_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231", "author": "", "orig_id": 1411177}}, {"model": "metainfo.source", "pk": 10284, "fields": {"orig_filename": "Lipinski_Hipolit_1846_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231", "author": "", "orig_id": 1411178}}, {"model": "metainfo.source", "pk": 10285, "fields": {"orig_filename": "Lipinski_Karl-Joseph_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231f.", "author": "", "orig_id": 1411179}}, {"model": "metainfo.source", "pk": 10286, "fields": {"orig_filename": "Lipinski_Kazimierz_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 232", "author": "", "orig_id": 1411180}}, {"model": "metainfo.source", "pk": 10287, "fields": {"orig_filename": "Lipold_Marko-Vincenc_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 232", "author": "", "orig_id": 1411181}}, {"model": "metainfo.source", "pk": 10288, "fields": {"orig_filename": "Liposcak_Anton_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233", "author": "", "orig_id": 1411182}}, {"model": "metainfo.source", "pk": 10289, "fields": {"orig_filename": "Lipovniczky-Lipovnok_Istvan_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233", "author": "", "orig_id": 1411183}}, {"model": "metainfo.source", "pk": 10290, "fields": {"orig_filename": "Lipparini_Lodovico_1800_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411186}}, {"model": "metainfo.source", "pk": 10291, "fields": {"orig_filename": "Lippay-Zombor_Gaspar_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234f.", "author": "", "orig_id": 1411188}}, {"model": "metainfo.source", "pk": 10292, "fields": {"orig_filename": "Lippay_Bartholomaeus-Dominik_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411187}}, {"model": "metainfo.source", "pk": 10293, "fields": {"orig_filename": "Lippert-Granberg_Josef-Erwin_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236", "author": "", "orig_id": 1411260}}, {"model": "metainfo.source", "pk": 10294, "fields": {"orig_filename": "Lippert-Granberg_Josephine_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236", "author": "", "orig_id": 1411261}}, {"model": "metainfo.source", "pk": 10295, "fields": {"orig_filename": "Lippert_Christian_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235", "author": "", "orig_id": 1411189}}, {"model": "metainfo.source", "pk": 10296, "fields": {"orig_filename": "Lippert_Josef_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235", "author": "", "orig_id": 1411190}}, {"model": "metainfo.source", "pk": 10297, "fields": {"orig_filename": "Lippert_Julius_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235f.", "author": "", "orig_id": 1411259}}, {"model": "metainfo.source", "pk": 10298, "fields": {"orig_filename": "Lippich-Korong_Elek_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1416637}}, {"model": "metainfo.source", "pk": 10299, "fields": {"orig_filename": "Lippich-Lindburg_Friedrich_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1411264}}, {"model": "metainfo.source", "pk": 10300, "fields": {"orig_filename": "Lippich_Ferdinand_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236f.", "author": "", "orig_id": 1411262}}, {"model": "metainfo.source", "pk": 10301, "fields": {"orig_filename": "Lippich_Franz-Wilhelm_1799_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1411263}}, {"model": "metainfo.source", "pk": 10302, "fields": {"orig_filename": "Lippitt_Mathilde-Maria-Floriana_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237f.", "author": "", "orig_id": 1411265}}, {"model": "metainfo.source", "pk": 10303, "fields": {"orig_filename": "Lippmann_Edmund-Oscar_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 238", "author": "", "orig_id": 1411266}}, {"model": "metainfo.source", "pk": 10304, "fields": {"orig_filename": "Lippmann_Eduard_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 238f.", "author": "", "orig_id": 1411267}}, {"model": "metainfo.source", "pk": 10305, "fields": {"orig_filename": "Lippmann_Friedrich_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 239", "author": "", "orig_id": 1411268}}, {"model": "metainfo.source", "pk": 10306, "fields": {"orig_filename": "Lippowitz_Jakob_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 239", "author": "", "orig_id": 1411269}}, {"model": "metainfo.source", "pk": 10307, "fields": {"orig_filename": "Lipp_Eduard_1831_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233f.", "author": "", "orig_id": 1411184}}, {"model": "metainfo.source", "pk": 10308, "fields": {"orig_filename": "Lipp_Vilmos_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411185}}, {"model": "metainfo.source", "pk": 10309, "fields": {"orig_filename": "Lipschuetz_Benjamin_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411270}}, {"model": "metainfo.source", "pk": 10310, "fields": {"orig_filename": "Lipschuetz_Elieser-Meir_1879_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411271}}, {"model": "metainfo.source", "pk": 10311, "fields": {"orig_filename": "Lipschuetz_Leopold_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411272}}, {"model": "metainfo.source", "pk": 10312, "fields": {"orig_filename": "Lipszky-Szedlicsna_Janos_1766_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240f.", "author": "", "orig_id": 1411273}}, {"model": "metainfo.source", "pk": 10313, "fields": {"orig_filename": "Lipthay-Kisfalud_Antal_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241", "author": "", "orig_id": 1411274}}, {"model": "metainfo.source", "pk": 10314, "fields": {"orig_filename": "Lipthay-Kisfalud_Sandor_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241", "author": "", "orig_id": 1411275}}, {"model": "metainfo.source", "pk": 10315, "fields": {"orig_filename": "Lisinski_Vatroslav_1819_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241f.", "author": "", "orig_id": 1411276}}, {"model": "metainfo.source", "pk": 10316, "fields": {"orig_filename": "Liska_Antonin_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242", "author": "", "orig_id": 1411277}}, {"model": "metainfo.source", "pk": 10317, "fields": {"orig_filename": "Liska_Emanuel-Krescenc_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242", "author": "", "orig_id": 1411278}}, {"model": "metainfo.source", "pk": 10318, "fields": {"orig_filename": "Liske_Ksawery_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242f.", "author": "", "orig_id": 1411279}}, {"model": "metainfo.source", "pk": 10319, "fields": {"orig_filename": "Lissauer_Ernst_1882_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243", "author": "", "orig_id": 1411281}}, {"model": "metainfo.source", "pk": 10320, "fields": {"orig_filename": "Lissa_Jakob__1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243", "author": "", "orig_id": 1411280}}, {"model": "metainfo.source", "pk": 10321, "fields": {"orig_filename": "Lissoni_Andrea_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243f.", "author": "", "orig_id": 1411353}}, {"model": "metainfo.source", "pk": 10322, "fields": {"orig_filename": "Lissoni_Antonio_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244", "author": "", "orig_id": 1411354}}, {"model": "metainfo.source", "pk": 10323, "fields": {"orig_filename": "List_Camillo_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244", "author": "", "orig_id": 1411355}}, {"model": "metainfo.source", "pk": 10324, "fields": {"orig_filename": "List_Franz_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244f.", "author": "", "orig_id": 1411356}}, {"model": "metainfo.source", "pk": 10325, "fields": {"orig_filename": "List_Guido_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 245", "author": "", "orig_id": 1411357}}, {"model": "metainfo.source", "pk": 10326, "fields": {"orig_filename": "List_Rosa_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 245", "author": "", "orig_id": 1411358}}, {"model": "metainfo.source", "pk": 10327, "fields": {"orig_filename": "List_Wilhelm_1864_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411359}}, {"model": "metainfo.source", "pk": 10328, "fields": {"orig_filename": "Liszkay_Gustav_1843_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411360}}, {"model": "metainfo.source", "pk": 10329, "fields": {"orig_filename": "Liszkay_Jozsef_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411361}}, {"model": "metainfo.source", "pk": 10330, "fields": {"orig_filename": "Liszt_Anton-Joseph_1863_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246f.", "author": "", "orig_id": 1411362}}, {"model": "metainfo.source", "pk": 10331, "fields": {"orig_filename": "Liszt_Eduard_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247", "author": "", "orig_id": 1411363}}, {"model": "metainfo.source", "pk": 10332, "fields": {"orig_filename": "Liszt_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f.", "author": "", "orig_id": 1411364}}, {"model": "metainfo.source", "pk": 10333, "fields": {"orig_filename": "Liszt_Franz_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 248f.", "author": "", "orig_id": 1411365}}, {"model": "metainfo.source", "pk": 10334, "fields": {"orig_filename": "Litschauer_Karl-Josef_1830_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249", "author": "", "orig_id": 1411366}}, {"model": "metainfo.source", "pk": 10335, "fields": {"orig_filename": "Litschauer_Lajos_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249", "author": "", "orig_id": 1416635}}, {"model": "metainfo.source", "pk": 10336, "fields": {"orig_filename": "Litschauer_Lajos_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249f.", "author": "", "orig_id": 1411367}}, {"model": "metainfo.source", "pk": 10337, "fields": {"orig_filename": "Litta_Pompeo_1781_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250", "author": "", "orig_id": 1411368}}, {"model": "metainfo.source", "pk": 10338, "fields": {"orig_filename": "Littrow_Auguste_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250f.", "author": "", "orig_id": 1411370}}, {"model": "metainfo.source", "pk": 10339, "fields": {"orig_filename": "Littrow_Franz_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251", "author": "", "orig_id": 1411371}}, {"model": "metainfo.source", "pk": 10340, "fields": {"orig_filename": "Lichtenstadt_Johann_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411990}}, {"model": "metainfo.source", "pk": 10341, "fields": {"orig_filename": "Lichtensteiner_Meinrad_1759_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411992}}, {"model": "metainfo.source", "pk": 10342, "fields": {"orig_filename": "Lichtenstein_Ferenc-Lajos_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411991}}, {"model": "metainfo.source", "pk": 10343, "fields": {"orig_filename": "Lichtenstern_Ludwig_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411993}}, {"model": "metainfo.source", "pk": 10344, "fields": {"orig_filename": "Lichtenstern_Richard_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411994}}, {"model": "metainfo.source", "pk": 10345, "fields": {"orig_filename": "Lichtenstern_Wilhelm_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411995}}, {"model": "metainfo.source", "pk": 10346, "fields": {"orig_filename": "Lichtenthal_Peter_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411996}}, {"model": "metainfo.source", "pk": 10347, "fields": {"orig_filename": "Lichtwitz_Leopold_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188f.", "author": "", "orig_id": 1411997}}, {"model": "metainfo.source", "pk": 10348, "fields": {"orig_filename": "Licht_Ferdinand_1748_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183f.", "author": "", "orig_id": 1411905}}, {"model": "metainfo.source", "pk": 10349, "fields": {"orig_filename": "Licht_Stephan_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411906}}, {"model": "metainfo.source", "pk": 10350, "fields": {"orig_filename": "Lickl_Aegidius-Karl_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1411998}}, {"model": "metainfo.source", "pk": 10351, "fields": {"orig_filename": "Lickl_Johann-Georg_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1411999}}, {"model": "metainfo.source", "pk": 10352, "fields": {"orig_filename": "Lickl_Karl-Georg_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1412000}}, {"model": "metainfo.source", "pk": 10353, "fields": {"orig_filename": "Lidl_Johann_1787_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1412001}}, {"model": "metainfo.source", "pk": 10354, "fields": {"orig_filename": "Lidl_Josef_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189f.", "author": "", "orig_id": 1412002}}, {"model": "metainfo.source", "pk": 10355, "fields": {"orig_filename": "Lidmansky_Adelbert-Josef_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412003}}, {"model": "metainfo.source", "pk": 10356, "fields": {"orig_filename": "Lieban_Julius_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190f.", "author": "", "orig_id": 1412006}}, {"model": "metainfo.source", "pk": 10357, "fields": {"orig_filename": "Liebbald_Beni_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412007}}, {"model": "metainfo.source", "pk": 10358, "fields": {"orig_filename": "Liebbald_Julius-Thomas_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412075}}, {"model": "metainfo.source", "pk": 10359, "fields": {"orig_filename": "Liebe-Kreutzner_Joseph_1830_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412076}}, {"model": "metainfo.source", "pk": 10360, "fields": {"orig_filename": "Liebel_Ignaz_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191f.", "author": "", "orig_id": 1412077}}, {"model": "metainfo.source", "pk": 10361, "fields": {"orig_filename": "Liebenberg-Zsittin_Adolf_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 193f.", "author": "", "orig_id": 1412083}}, {"model": "metainfo.source", "pk": 10362, "fields": {"orig_filename": "Liebener-Monte-Cristallo_Leonhard_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194", "author": "", "orig_id": 1412084}}, {"model": "metainfo.source", "pk": 10363, "fields": {"orig_filename": "Liebenwein_Josef-Richard_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194", "author": "", "orig_id": 1412085}}, {"model": "metainfo.source", "pk": 10364, "fields": {"orig_filename": "Liebenwein_Maximilian_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194f.", "author": "", "orig_id": 1412086}}, {"model": "metainfo.source", "pk": 10365, "fields": {"orig_filename": "Lieben_Adolf_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412078}}, {"model": "metainfo.source", "pk": 10366, "fields": {"orig_filename": "Lieben_Koppelmann_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412079}}, {"model": "metainfo.source", "pk": 10367, "fields": {"orig_filename": "Lieben_Leopold_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412080}}, {"model": "metainfo.source", "pk": 10368, "fields": {"orig_filename": "Lieben_Robert_1878_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 193", "author": "", "orig_id": 1412081}}, {"model": "metainfo.source", "pk": 10369, "fields": {"orig_filename": "Lieben_Salomon-Hugo_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 193", "author": "", "orig_id": 1412082}}, {"model": "metainfo.source", "pk": 10370, "fields": {"orig_filename": "Liebermann-Szentloerinc_Leo_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 196", "author": "", "orig_id": 1412090}}, {"model": "metainfo.source", "pk": 10371, "fields": {"orig_filename": "Liebermann_Herman_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195f.", "author": "", "orig_id": 1412089}}, {"model": "metainfo.source", "pk": 10372, "fields": {"orig_filename": "Liebert_Franz_1814_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 196f.", "author": "", "orig_id": 1412091}}, {"model": "metainfo.source", "pk": 10373, "fields": {"orig_filename": "Lieberzeit_Anna_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412092}}, {"model": "metainfo.source", "pk": 10374, "fields": {"orig_filename": "Lieber_August_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195", "author": "", "orig_id": 1412087}}, {"model": "metainfo.source", "pk": 10375, "fields": {"orig_filename": "Lieber_Georg-Diethelm_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195", "author": "", "orig_id": 1412088}}, {"model": "metainfo.source", "pk": 10376, "fields": {"orig_filename": "Liebhardt_Ida_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412093}}, {"model": "metainfo.source", "pk": 10377, "fields": {"orig_filename": "Liebhardt_Ignaz_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412094}}, {"model": "metainfo.source", "pk": 10378, "fields": {"orig_filename": "Liebhardt_Luise_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412095}}, {"model": "metainfo.source", "pk": 10379, "fields": {"orig_filename": "Liebich_Christoph_1783_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197f.", "author": "", "orig_id": 1412096}}, {"model": "metainfo.source", "pk": 10380, "fields": {"orig_filename": "Liebich_Johann-Carl_1773_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198", "author": "", "orig_id": 1412097}}, {"model": "metainfo.source", "pk": 10381, "fields": {"orig_filename": "Liebieg_Franz_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198", "author": "", "orig_id": 1412099}}, {"model": "metainfo.source", "pk": 10382, "fields": {"orig_filename": "Liebieg_Franz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198f.", "author": "", "orig_id": 1412176}}, {"model": "metainfo.source", "pk": 10383, "fields": {"orig_filename": "Liebieg_Heinrich_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199", "author": "", "orig_id": 1412098}}, {"model": "metainfo.source", "pk": 10384, "fields": {"orig_filename": "Liebieg_Johann_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199", "author": "", "orig_id": 1412177}}, {"model": "metainfo.source", "pk": 10385, "fields": {"orig_filename": "Liebisch_Joachim_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199f.", "author": "", "orig_id": 1412178}}, {"model": "metainfo.source", "pk": 10386, "fields": {"orig_filename": "Liebisch_Rudolf_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412179}}, {"model": "metainfo.source", "pk": 10387, "fields": {"orig_filename": "Liebleitner_Karl_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200f.", "author": "", "orig_id": 1412182}}, {"model": "metainfo.source", "pk": 10388, "fields": {"orig_filename": "Liebl_Franz-Alois_1760_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412180}}, {"model": "metainfo.source", "pk": 10389, "fields": {"orig_filename": "Liebl_Hans_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412181}}, {"model": "metainfo.source", "pk": 10390, "fields": {"orig_filename": "Liebscher_Adolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412183}}, {"model": "metainfo.source", "pk": 10391, "fields": {"orig_filename": "Liebscher_Karel_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412184}}, {"model": "metainfo.source", "pk": 10392, "fields": {"orig_filename": "Liebstoeckl_Hans_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412185}}, {"model": "metainfo.source", "pk": 10393, "fields": {"orig_filename": "Liebus_Adalbert_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201f.", "author": "", "orig_id": 1412186}}, {"model": "metainfo.source", "pk": 10394, "fields": {"orig_filename": "Lieb_Josef_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412004}}, {"model": "metainfo.source", "pk": 10395, "fields": {"orig_filename": "Lieb_Leopold_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412005}}, {"model": "metainfo.source", "pk": 10396, "fields": {"orig_filename": "Liechtenberg-Mordaxt-Schneeberg_Arthur_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202", "author": "", "orig_id": 1412187}}, {"model": "metainfo.source", "pk": 10397, "fields": {"orig_filename": "Liechtenberg-Schneeberg_Nikolaus_1789_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202", "author": "", "orig_id": 1412188}}, {"model": "metainfo.source", "pk": 10398, "fields": {"orig_filename": "Liechtenstein_Alfred_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202f.", "author": "", "orig_id": 1412189}}, {"model": "metainfo.source", "pk": 10399, "fields": {"orig_filename": "Liechtenstein_Aloys_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 203", "author": "", "orig_id": 1412190}}, {"model": "metainfo.source", "pk": 10400, "fields": {"orig_filename": "Liechtenstein_Aloys_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 203f.", "author": "", "orig_id": 1412191}}, {"model": "metainfo.source", "pk": 10401, "fields": {"orig_filename": "Liechtenstein_Franz_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 204", "author": "", "orig_id": 1412192}}, {"model": "metainfo.source", "pk": 10402, "fields": {"orig_filename": "Liechtenstein_Franz_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 204f.", "author": "", "orig_id": 1412193}}, {"model": "metainfo.source", "pk": 10403, "fields": {"orig_filename": "Liechtenstein_Friedrich_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 205", "author": "", "orig_id": 1412194}}, {"model": "metainfo.source", "pk": 10404, "fields": {"orig_filename": "Liechtenstein_Johann_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 205f.", "author": "", "orig_id": 1412195}}, {"model": "metainfo.source", "pk": 10405, "fields": {"orig_filename": "Liechtenstein_Karl_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 206", "author": "", "orig_id": 1412196}}, {"model": "metainfo.source", "pk": 10406, "fields": {"orig_filename": "Liechtenstein_Rudolf_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 206f.", "author": "", "orig_id": 1412197}}, {"model": "metainfo.source", "pk": 10407, "fields": {"orig_filename": "Liechtenstern_Joseph-Marx_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207", "author": "", "orig_id": 1412268}}, {"model": "metainfo.source", "pk": 10408, "fields": {"orig_filename": "Liedeck_Georg_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207", "author": "", "orig_id": 1412269}}, {"model": "metainfo.source", "pk": 10409, "fields": {"orig_filename": "Liedemann_Martin_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207f.", "author": "", "orig_id": 1412270}}, {"model": "metainfo.source", "pk": 10410, "fields": {"orig_filename": "Lieder_Friedrich-Johann-Gottlieb_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1412271}}, {"model": "metainfo.source", "pk": 10411, "fields": {"orig_filename": "Liedtke_Marie_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1412272}}, {"model": "metainfo.source", "pk": 10412, "fields": {"orig_filename": "Liegel_Emanuel_1859_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1416636}}, {"model": "metainfo.source", "pk": 10413, "fields": {"orig_filename": "Liegel_Georg_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208f.", "author": "", "orig_id": 1412273}}, {"model": "metainfo.source", "pk": 10414, "fields": {"orig_filename": "Lieger_Paulus_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209", "author": "", "orig_id": 1412274}}, {"model": "metainfo.source", "pk": 10415, "fields": {"orig_filename": "Liegler_Leopold_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209", "author": "", "orig_id": 1412275}}, {"model": "metainfo.source", "pk": 10416, "fields": {"orig_filename": "Lielegg_Andreas_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209f.", "author": "", "orig_id": 1412276}}, {"model": "metainfo.source", "pk": 10417, "fields": {"orig_filename": "Lienbacher_Georg_1822_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412277}}, {"model": "metainfo.source", "pk": 10418, "fields": {"orig_filename": "Lienbacher_Matthias_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412278}}, {"model": "metainfo.source", "pk": 10419, "fields": {"orig_filename": "Lierheimer_Bernhard_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412280}}, {"model": "metainfo.source", "pk": 10420, "fields": {"orig_filename": "Lier_Jan_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412279}}, {"model": "metainfo.source", "pk": 10421, "fields": {"orig_filename": "Lieschnigg_Karl_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412281}}, {"model": "metainfo.source", "pk": 10422, "fields": {"orig_filename": "Liewehr_Fred_1909_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426543}}, {"model": "metainfo.source", "pk": 10423, "fields": {"orig_filename": "Liezen-Mayer_Sandor_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412282}}, {"model": "metainfo.source", "pk": 10424, "fields": {"orig_filename": "Liftl_Franz_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412283}}, {"model": "metainfo.source", "pk": 10425, "fields": {"orig_filename": "Ligeti_Antal_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211f.", "author": "", "orig_id": 1412284}}, {"model": "metainfo.source", "pk": 10426, "fields": {"orig_filename": "Ligges_Georg_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412285}}, {"model": "metainfo.source", "pk": 10427, "fields": {"orig_filename": "Liharzik_Franz_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412286}}, {"model": "metainfo.source", "pk": 10428, "fields": {"orig_filename": "Liharzik_Franz_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412287}}, {"model": "metainfo.source", "pk": 10429, "fields": {"orig_filename": "Lihotzky_Erwin_1887_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212f.", "author": "", "orig_id": 1412288}}, {"model": "metainfo.source", "pk": 10430, "fields": {"orig_filename": "Likavetz_Joseph-Kal_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213", "author": "", "orig_id": 1412289}}, {"model": "metainfo.source", "pk": 10431, "fields": {"orig_filename": "Likoser-Sprengbrueck_Josef_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213", "author": "", "orig_id": 1412290}}, {"model": "metainfo.source", "pk": 10432, "fields": {"orig_filename": "Lilek_Emilijan_1851_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213f.", "author": "", "orig_id": 1412291}}, {"model": "metainfo.source", "pk": 10433, "fields": {"orig_filename": "Lilia-Westegg_Karl_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412292}}, {"model": "metainfo.source", "pk": 10434, "fields": {"orig_filename": "Lilien_Efraim_1874_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412364}}, {"model": "metainfo.source", "pk": 10435, "fields": {"orig_filename": "Lilien_Maximilian_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412365}}, {"model": "metainfo.source", "pk": 10436, "fields": {"orig_filename": "Lilie_Adolf_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412363}}, {"model": "metainfo.source", "pk": 10437, "fields": {"orig_filename": "Lill-Lilienbach_Karl_1798_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 215", "author": "", "orig_id": 1412367}}, {"model": "metainfo.source", "pk": 10438, "fields": {"orig_filename": "Lill_Eduard_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214f.", "author": "", "orig_id": 1412366}}, {"model": "metainfo.source", "pk": 10439, "fields": {"orig_filename": "Limanowski_Boleslaw_1835_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 215f.", "author": "", "orig_id": 1412368}}, {"model": "metainfo.source", "pk": 10440, "fields": {"orig_filename": "Limbacher_Rudolf_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412369}}, {"model": "metainfo.source", "pk": 10441, "fields": {"orig_filename": "Limbeck-Lilienau_Max_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412370}}, {"model": "metainfo.source", "pk": 10442, "fields": {"orig_filename": "Limbeck-Lilienau_Rudolf_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412371}}, {"model": "metainfo.source", "pk": 10443, "fields": {"orig_filename": "Leseticky_Vojtech_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155", "author": "", "orig_id": 1412972}}, {"model": "metainfo.source", "pk": 10444, "fields": {"orig_filename": "Lesic_Matilda_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155", "author": "", "orig_id": 1412973}}, {"model": "metainfo.source", "pk": 10445, "fields": {"orig_filename": "Lesic_Toso_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155f.", "author": "", "orig_id": 1412974}}, {"model": "metainfo.source", "pk": 10446, "fields": {"orig_filename": "Leska_Stepan_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156", "author": "", "orig_id": 1412975}}, {"model": "metainfo.source", "pk": 10447, "fields": {"orig_filename": "Leskovar_Janko_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156", "author": "", "orig_id": 1412976}}, {"model": "metainfo.source", "pk": 10448, "fields": {"orig_filename": "Leskovec_Anton_1891_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156f.", "author": "", "orig_id": 1412977}}, {"model": "metainfo.source", "pk": 10449, "fields": {"orig_filename": "Lesonitzky_Otto_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412978}}, {"model": "metainfo.source", "pk": 10450, "fields": {"orig_filename": "Lessel_Franciszek_1780_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412979}}, {"model": "metainfo.source", "pk": 10451, "fields": {"orig_filename": "Lessenyey_Franz_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412980}}, {"model": "metainfo.source", "pk": 10452, "fields": {"orig_filename": "Lessiak_Primus_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157f.", "author": "", "orig_id": 1412981}}, {"model": "metainfo.source", "pk": 10453, "fields": {"orig_filename": "Lestocq_Hermann_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158", "author": "", "orig_id": 1412982}}, {"model": "metainfo.source", "pk": 10454, "fields": {"orig_filename": "Leszai-Fogaras_Daniel_1798_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158", "author": "", "orig_id": 1412983}}, {"model": "metainfo.source", "pk": 10455, "fields": {"orig_filename": "Leth_Julius-Johann-Bapt_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158f.", "author": "", "orig_id": 1412984}}, {"model": "metainfo.source", "pk": 10456, "fields": {"orig_filename": "Leth_Karl_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411615}}, {"model": "metainfo.source", "pk": 10457, "fields": {"orig_filename": "Letowski_Ludwik_1786_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411616}}, {"model": "metainfo.source", "pk": 10458, "fields": {"orig_filename": "Letsch_Louis_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411617}}, {"model": "metainfo.source", "pk": 10459, "fields": {"orig_filename": "Letteris_Meirha-Levi_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159f.", "author": "", "orig_id": 1411618}}, {"model": "metainfo.source", "pk": 10460, "fields": {"orig_filename": "Leuchert_Eduard_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 160", "author": "", "orig_id": 1411619}}, {"model": "metainfo.source", "pk": 10461, "fields": {"orig_filename": "Leuchs_Kurt_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 160f.", "author": "", "orig_id": 1411620}}, {"model": "metainfo.source", "pk": 10462, "fields": {"orig_filename": "Leutelt_Gustav_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 161", "author": "", "orig_id": 1411621}}, {"model": "metainfo.source", "pk": 10463, "fields": {"orig_filename": "Leutner_Karl_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 161f.", "author": "", "orig_id": 1411622}}, {"model": "metainfo.source", "pk": 10464, "fields": {"orig_filename": "Leuzendorf-Campo-Santa-Lucia_Arthur_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411623}}, {"model": "metainfo.source", "pk": 10465, "fields": {"orig_filename": "Levar_Ivan_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411624}}, {"model": "metainfo.source", "pk": 10466, "fields": {"orig_filename": "Levati_Ambrogio_1790_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411625}}, {"model": "metainfo.source", "pk": 10467, "fields": {"orig_filename": "Levay-Kistelek_Henrik_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163f.", "author": "", "orig_id": 1411630}}, {"model": "metainfo.source", "pk": 10468, "fields": {"orig_filename": "Levay-Kistelek_Lajos_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 164", "author": "", "orig_id": 1411631}}, {"model": "metainfo.source", "pk": 10469, "fields": {"orig_filename": "Levay_Imre_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162f.", "author": "", "orig_id": 1411626}}, {"model": "metainfo.source", "pk": 10470, "fields": {"orig_filename": "Levay_Jozsef_1825_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411627}}, {"model": "metainfo.source", "pk": 10471, "fields": {"orig_filename": "Levay_Lajos_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411628}}, {"model": "metainfo.source", "pk": 10472, "fields": {"orig_filename": "Levay_Mihaly_1862_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411629}}, {"model": "metainfo.source", "pk": 10473, "fields": {"orig_filename": "Levec_Fran_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 164", "author": "", "orig_id": 1411632}}, {"model": "metainfo.source", "pk": 10474, "fields": {"orig_filename": "Levetzow_Karl-Michael_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411634}}, {"model": "metainfo.source", "pk": 10475, "fields": {"orig_filename": "Levi-Civita_Giacomo_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411705}}, {"model": "metainfo.source", "pk": 10476, "fields": {"orig_filename": "Levicnik_Jernej_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411706}}, {"model": "metainfo.source", "pk": 10477, "fields": {"orig_filename": "Levicnik_Jozef_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411707}}, {"model": "metainfo.source", "pk": 10478, "fields": {"orig_filename": "Levitschnigg-Glomberg_Heinrich_1810_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166f.", "author": "", "orig_id": 1411708}}, {"model": "metainfo.source", "pk": 10479, "fields": {"orig_filename": "Levi_Angelo_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411635}}, {"model": "metainfo.source", "pk": 10480, "fields": {"orig_filename": "Levi_Moise-Giuseppe_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411703}}, {"model": "metainfo.source", "pk": 10481, "fields": {"orig_filename": "Levi_Samuele__1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165f.", "author": "", "orig_id": 1411704}}, {"model": "metainfo.source", "pk": 10482, "fields": {"orig_filename": "Levnaic-Iwanski-Iwanina_Nikolaus_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 167", "author": "", "orig_id": 1411709}}, {"model": "metainfo.source", "pk": 10483, "fields": {"orig_filename": "Levstik_Fran_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 167f.", "author": "", "orig_id": 1411710}}, {"model": "metainfo.source", "pk": 10484, "fields": {"orig_filename": "Levyckyj_Josyp_1801_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411713}}, {"model": "metainfo.source", "pk": 10485, "fields": {"orig_filename": "Levyckyj_Volodymyr_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411714}}, {"model": "metainfo.source", "pk": 10486, "fields": {"orig_filename": "Levy_Louis-Eduard_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 168", "author": "", "orig_id": 1411711}}, {"model": "metainfo.source", "pk": 10487, "fields": {"orig_filename": "Levy_Vaclav_1820_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 168f.", "author": "", "orig_id": 1411712}}, {"model": "metainfo.source", "pk": 10488, "fields": {"orig_filename": "Lewandowski_Rudolf_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411715}}, {"model": "metainfo.source", "pk": 10489, "fields": {"orig_filename": "Lewandowski_Stanislaus-Roman_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169f.", "author": "", "orig_id": 1411716}}, {"model": "metainfo.source", "pk": 10490, "fields": {"orig_filename": "Lewartow-Lewartowski_Heinrich_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411717}}, {"model": "metainfo.source", "pk": 10491, "fields": {"orig_filename": "Lewicki_Anatol_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411718}}, {"model": "metainfo.source", "pk": 10492, "fields": {"orig_filename": "Lewicki_Antoni_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411719}}, {"model": "metainfo.source", "pk": 10493, "fields": {"orig_filename": "Lewicki_Leonidas_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411720}}, {"model": "metainfo.source", "pk": 10494, "fields": {"orig_filename": "Lewicki_Michael_1774_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411721}}, {"model": "metainfo.source", "pk": 10495, "fields": {"orig_filename": "Lewinger_Ernst_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171f.", "author": "", "orig_id": 1411723}}, {"model": "metainfo.source", "pk": 10496, "fields": {"orig_filename": "Lewinsky-Precheisen_Olga_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173", "author": "", "orig_id": 1411794}}, {"model": "metainfo.source", "pk": 10497, "fields": {"orig_filename": "Lewinsky_Josef_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 172", "author": "", "orig_id": 1411724}}, {"model": "metainfo.source", "pk": 10498, "fields": {"orig_filename": "Lewinsky_Josef_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 172f.", "author": "", "orig_id": 1411793}}, {"model": "metainfo.source", "pk": 10499, "fields": {"orig_filename": "Lewin_Jakab_1828_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411722}}, {"model": "metainfo.source", "pk": 10500, "fields": {"orig_filename": "Lewohl_Karl_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173", "author": "", "orig_id": 1411795}}, {"model": "metainfo.source", "pk": 10501, "fields": {"orig_filename": "Lewy_Eduard-Constantin_1796_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411797}}, {"model": "metainfo.source", "pk": 10502, "fields": {"orig_filename": "Lewy_Eduard_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173f.", "author": "", "orig_id": 1411796}}, {"model": "metainfo.source", "pk": 10503, "fields": {"orig_filename": "Lewy_Gustav_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411798}}, {"model": "metainfo.source", "pk": 10504, "fields": {"orig_filename": "Lexa-Aehrenthal_Johann-Bapt_1777_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175", "author": "", "orig_id": 1411803}}, {"model": "metainfo.source", "pk": 10505, "fields": {"orig_filename": "Lexa_Josef_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174f.", "author": "", "orig_id": 1411801}}, {"model": "metainfo.source", "pk": 10506, "fields": {"orig_filename": "Lexer_Matthias_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175", "author": "", "orig_id": 1411804}}, {"model": "metainfo.source", "pk": 10507, "fields": {"orig_filename": "Lex_Franz_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411799}}, {"model": "metainfo.source", "pk": 10508, "fields": {"orig_filename": "Lex_Gabriel_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411800}}, {"model": "metainfo.source", "pk": 10509, "fields": {"orig_filename": "Leybold_Eduard-Friedrich_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411806}}, {"model": "metainfo.source", "pk": 10510, "fields": {"orig_filename": "Leybold_Johann-Friedrich_1755_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411808}}, {"model": "metainfo.source", "pk": 10511, "fields": {"orig_filename": "Leybold_Karl-Jakob-Theodor_1786_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176f.", "author": "", "orig_id": 1411809}}, {"model": "metainfo.source", "pk": 10512, "fields": {"orig_filename": "Leybold_Rudolf-Moritz_1806_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177", "author": "", "orig_id": 1411810}}, {"model": "metainfo.source", "pk": 10513, "fields": {"orig_filename": "Leydolt_Franz_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177", "author": "", "orig_id": 1411811}}, {"model": "metainfo.source", "pk": 10514, "fields": {"orig_filename": "Leykam_Anatol_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177f.", "author": "", "orig_id": 1411812}}, {"model": "metainfo.source", "pk": 10515, "fields": {"orig_filename": "Leykam_Andreas_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411813}}, {"model": "metainfo.source", "pk": 10516, "fields": {"orig_filename": "Leyrer_Rudolf_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411814}}, {"model": "metainfo.source", "pk": 10517, "fields": {"orig_filename": "Ley_Erhard_1753_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175f.", "author": "", "orig_id": 1411805}}, {"model": "metainfo.source", "pk": 10518, "fields": {"orig_filename": "Lhota_Antonin_1812_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411815}}, {"model": "metainfo.source", "pk": 10519, "fields": {"orig_filename": "Lhota_Jan-Nep_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179", "author": "", "orig_id": 1411816}}, {"model": "metainfo.source", "pk": 10520, "fields": {"orig_filename": "Lhotsky_Bohuslav_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179", "author": "", "orig_id": 1411817}}, {"model": "metainfo.source", "pk": 10521, "fields": {"orig_filename": "Lhotsky_Jan_1800_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179f.", "author": "", "orig_id": 1411818}}, {"model": "metainfo.source", "pk": 10522, "fields": {"orig_filename": "Lhotzky_Alphons_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411890}}, {"model": "metainfo.source", "pk": 10523, "fields": {"orig_filename": "Libansky_Josef_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411891}}, {"model": "metainfo.source", "pk": 10524, "fields": {"orig_filename": "Libay_Karoly-Lajos_1816_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411892}}, {"model": "metainfo.source", "pk": 10525, "fields": {"orig_filename": "Libay_Samuel_1782_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180f.", "author": "", "orig_id": 1411893}}, {"model": "metainfo.source", "pk": 10526, "fields": {"orig_filename": "Libenyi_Janos_1831_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411894}}, {"model": "metainfo.source", "pk": 10527, "fields": {"orig_filename": "Liberali_Giulio-Angelo_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411896}}, {"model": "metainfo.source", "pk": 10528, "fields": {"orig_filename": "Libera_Anna-Barbara_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411895}}, {"model": "metainfo.source", "pk": 10529, "fields": {"orig_filename": "Libesny_Kurt_1892_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411897}}, {"model": "metainfo.source", "pk": 10530, "fields": {"orig_filename": "Libitzky_Leopold_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411898}}, {"model": "metainfo.source", "pk": 10531, "fields": {"orig_filename": "Lichard_Daniel_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411899}}, {"model": "metainfo.source", "pk": 10532, "fields": {"orig_filename": "Lichard_Milan_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411900}}, {"model": "metainfo.source", "pk": 10533, "fields": {"orig_filename": "Lichner_Pal_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182f.", "author": "", "orig_id": 1411901}}, {"model": "metainfo.source", "pk": 10534, "fields": {"orig_filename": "Lichnowsky_Eduard-Maria_1789_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183", "author": "", "orig_id": 1411903}}, {"model": "metainfo.source", "pk": 10535, "fields": {"orig_filename": "Lichnowsky_Wilhelm_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183", "author": "", "orig_id": 1411904}}, {"model": "metainfo.source", "pk": 10536, "fields": {"orig_filename": "Lichtblau_Stephan_1753_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411909}}, {"model": "metainfo.source", "pk": 10537, "fields": {"orig_filename": "Lichtenberg_Emil_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411910}}, {"model": "metainfo.source", "pk": 10538, "fields": {"orig_filename": "Lichtenberg_Reinhold_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411985}}, {"model": "metainfo.source", "pk": 10539, "fields": {"orig_filename": "Lichtenecker_Karl_1882_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185f.", "author": "", "orig_id": 1411986}}, {"model": "metainfo.source", "pk": 10540, "fields": {"orig_filename": "Lichtenecker_Norbert_1897_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411987}}, {"model": "metainfo.source", "pk": 10541, "fields": {"orig_filename": "Lichtenegger_Sepp_1909_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411988}}, {"model": "metainfo.source", "pk": 10542, "fields": {"orig_filename": "Lichtenheld_Adolf_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411989}}, {"model": "metainfo.source", "pk": 10543, "fields": {"orig_filename": "Lemach_Anton-Karl_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122f.", "author": "", "orig_id": 1412508}}, {"model": "metainfo.source", "pk": 10544, "fields": {"orig_filename": "Lemaic-Pasan-Brdo_Georg_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123", "author": "", "orig_id": 1412509}}, {"model": "metainfo.source", "pk": 10545, "fields": {"orig_filename": "Lemayer_Karl_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123", "author": "", "orig_id": 1412510}}, {"model": "metainfo.source", "pk": 10546, "fields": {"orig_filename": "Lemberger_Heinrich_1813_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124", "author": "", "orig_id": 1412512}}, {"model": "metainfo.source", "pk": 10547, "fields": {"orig_filename": "Lemberg_Eduard_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123f.", "author": "", "orig_id": 1412511}}, {"model": "metainfo.source", "pk": 10548, "fields": {"orig_filename": "Lemmermayer_Fritz_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124", "author": "", "orig_id": 1412513}}, {"model": "metainfo.source", "pk": 10549, "fields": {"orig_filename": "Lemoch_Ignaz_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124f.", "author": "", "orig_id": 1412514}}, {"model": "metainfo.source", "pk": 10550, "fields": {"orig_filename": "Lemoch_Johann-Nep_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412515}}, {"model": "metainfo.source", "pk": 10551, "fields": {"orig_filename": "Lemoch_Josef_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412516}}, {"model": "metainfo.source", "pk": 10552, "fields": {"orig_filename": "Lemoch_Vincenz_1792_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412517}}, {"model": "metainfo.source", "pk": 10553, "fields": {"orig_filename": "Lemonnier_Anton_1819_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412518}}, {"model": "metainfo.source", "pk": 10554, "fields": {"orig_filename": "Lemonnier_Theodor_1826_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412519}}, {"model": "metainfo.source", "pk": 10555, "fields": {"orig_filename": "Lempicki_Zygmunt_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412520}}, {"model": "metainfo.source", "pk": 10556, "fields": {"orig_filename": "Lenarcic_Andrija_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412521}}, {"model": "metainfo.source", "pk": 10557, "fields": {"orig_filename": "Lenard_Philipp-Eduard-Anton_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 127", "author": "", "orig_id": 1412522}}, {"model": "metainfo.source", "pk": 10558, "fields": {"orig_filename": "Lencses_Antal-Jozsef_1797_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 127f.", "author": "", "orig_id": 1412594}}, {"model": "metainfo.source", "pk": 10559, "fields": {"orig_filename": "Lencz_Oedoen_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128", "author": "", "orig_id": 1412595}}, {"model": "metainfo.source", "pk": 10560, "fields": {"orig_filename": "Lendecke_Gustav_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128", "author": "", "orig_id": 1412596}}, {"model": "metainfo.source", "pk": 10561, "fields": {"orig_filename": "Lendlmayer-Lendenfeld_Robert_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 129", "author": "", "orig_id": 1412598}}, {"model": "metainfo.source", "pk": 10562, "fields": {"orig_filename": "Lendl_Adolf_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128f.", "author": "", "orig_id": 1412597}}, {"model": "metainfo.source", "pk": 10563, "fields": {"orig_filename": "Lendovsek_Josip_1854_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 129f.", "author": "", "orig_id": 1412599}}, {"model": "metainfo.source", "pk": 10564, "fields": {"orig_filename": "Lendovsek_Mihael_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130", "author": "", "orig_id": 1412600}}, {"model": "metainfo.source", "pk": 10565, "fields": {"orig_filename": "Lendvai_Erwin_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130", "author": "", "orig_id": 1412601}}, {"model": "metainfo.source", "pk": 10566, "fields": {"orig_filename": "Lendvay-Fancsy_Ilka_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412606}}, {"model": "metainfo.source", "pk": 10567, "fields": {"orig_filename": "Lendvay-Hivatal_Aniko_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412607}}, {"model": "metainfo.source", "pk": 10568, "fields": {"orig_filename": "Lendvay_Benoe_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130f.", "author": "", "orig_id": 1412602}}, {"model": "metainfo.source", "pk": 10569, "fields": {"orig_filename": "Lendvay_Marton_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412603}}, {"model": "metainfo.source", "pk": 10570, "fields": {"orig_filename": "Lendvay_Marton_1830_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412605}}, {"model": "metainfo.source", "pk": 10571, "fields": {"orig_filename": "Lenecek_Ottokar_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131f.", "author": "", "orig_id": 1412608}}, {"model": "metainfo.source", "pk": 10572, "fields": {"orig_filename": "Lener_Josef_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412609}}, {"model": "metainfo.source", "pk": 10573, "fields": {"orig_filename": "Lener_Justinian_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412610}}, {"model": "metainfo.source", "pk": 10574, "fields": {"orig_filename": "Lengnick_Artur_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412611}}, {"model": "metainfo.source", "pk": 10575, "fields": {"orig_filename": "Lengsteiner_Josef_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412612}}, {"model": "metainfo.source", "pk": 10576, "fields": {"orig_filename": "Lengyel-Ebesfalva_Bela_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133", "author": "", "orig_id": 1412614}}, {"model": "metainfo.source", "pk": 10577, "fields": {"orig_filename": "Lengyel-Szakallosfalva_Nikolaus_1802_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133", "author": "", "orig_id": 1412615}}, {"model": "metainfo.source", "pk": 10578, "fields": {"orig_filename": "Lengyel_Jozsef_1770_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132f.", "author": "", "orig_id": 1412613}}, {"model": "metainfo.source", "pk": 10579, "fields": {"orig_filename": "Lenhard_Johann_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133f.", "author": "", "orig_id": 1412682}}, {"model": "metainfo.source", "pk": 10580, "fields": {"orig_filename": "Lenhossek_Jozsef_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 134", "author": "", "orig_id": 1412684}}, {"model": "metainfo.source", "pk": 10581, "fields": {"orig_filename": "Lenhossek_Mihaly_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 134", "author": "", "orig_id": 1412685}}, {"model": "metainfo.source", "pk": 10582, "fields": {"orig_filename": "Lenisch_Johanna_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412687}}, {"model": "metainfo.source", "pk": 10583, "fields": {"orig_filename": "Lenk-Burgheim-Gansheim_Heinrich_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412689}}, {"model": "metainfo.source", "pk": 10584, "fields": {"orig_filename": "Lenk-Treuenfeld_Ignaz_1766_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135f.", "author": "", "orig_id": 1412690}}, {"model": "metainfo.source", "pk": 10585, "fields": {"orig_filename": "Lenk-Wolfsberg_Rudolf_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136", "author": "", "orig_id": 1412691}}, {"model": "metainfo.source", "pk": 10586, "fields": {"orig_filename": "Lenk-Wolfsberg_Wilhelm_1809_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136", "author": "", "orig_id": 1412692}}, {"model": "metainfo.source", "pk": 10587, "fields": {"orig_filename": "Lenkei_Samuel_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136f.", "author": "", "orig_id": 1412693}}, {"model": "metainfo.source", "pk": 10588, "fields": {"orig_filename": "Lenkey_Janos_1807_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137", "author": "", "orig_id": 1412694}}, {"model": "metainfo.source", "pk": 10589, "fields": {"orig_filename": "Lenk_Friedrich-Andreas_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412688}}, {"model": "metainfo.source", "pk": 10590, "fields": {"orig_filename": "Lenoble-Edlersberg_Josef_1749_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137", "author": "", "orig_id": 1412695}}, {"model": "metainfo.source", "pk": 10591, "fields": {"orig_filename": "Lentl_Johann-Nep_1756_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137f.", "author": "", "orig_id": 1412696}}, {"model": "metainfo.source", "pk": 10592, "fields": {"orig_filename": "Lentner_Ferdinand_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 138", "author": "", "orig_id": 1412697}}, {"model": "metainfo.source", "pk": 10593, "fields": {"orig_filename": "Lentner_Josef-Friedrich_1814_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 138", "author": "", "orig_id": 1412698}}, {"model": "metainfo.source", "pk": 10594, "fields": {"orig_filename": "Lentulaj_Mirko_1774_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1412699}}, {"model": "metainfo.source", "pk": 10595, "fields": {"orig_filename": "Lenz_Alfred_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1416077}}, {"model": "metainfo.source", "pk": 10596, "fields": {"orig_filename": "Lenz_Antonin_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1412700}}, {"model": "metainfo.source", "pk": 10597, "fields": {"orig_filename": "Lenz_Maximilian_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139f.", "author": "", "orig_id": 1412701}}, {"model": "metainfo.source", "pk": 10598, "fields": {"orig_filename": "Lenz_Oskar_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 140", "author": "", "orig_id": 1412702}}, {"model": "metainfo.source", "pk": 10599, "fields": {"orig_filename": "Leobner_Heinrich_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412704}}, {"model": "metainfo.source", "pk": 10600, "fields": {"orig_filename": "Leonardi_Giuseppe_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412786}}, {"model": "metainfo.source", "pk": 10601, "fields": {"orig_filename": "Leonardi_Pietro_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412787}}, {"model": "metainfo.source", "pk": 10602, "fields": {"orig_filename": "Leonhardt_Andreas_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144", "author": "", "orig_id": 1412790}}, {"model": "metainfo.source", "pk": 10603, "fields": {"orig_filename": "Leonhardt_Gustav_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144", "author": "", "orig_id": 1412791}}, {"model": "metainfo.source", "pk": 10604, "fields": {"orig_filename": "Leonhardt_Johann_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144f.", "author": "", "orig_id": 1412792}}, {"model": "metainfo.source", "pk": 10605, "fields": {"orig_filename": "Leonhard_Daniel-Joseph_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412788}}, {"model": "metainfo.source", "pk": 10606, "fields": {"orig_filename": "Leonhard_Johann-Michael_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143f.", "author": "", "orig_id": 1412789}}, {"model": "metainfo.source", "pk": 10607, "fields": {"orig_filename": "Leon_Friedrich-Vinzenz_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412705}}, {"model": "metainfo.source", "pk": 10608, "fields": {"orig_filename": "Leon_Gottlieb_1757_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412779}}, {"model": "metainfo.source", "pk": 10609, "fields": {"orig_filename": "Leon_Gustav_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141f.", "author": "", "orig_id": 1412780}}, {"model": "metainfo.source", "pk": 10610, "fields": {"orig_filename": "Leon_Johann-Barthlmae_1802_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142", "author": "", "orig_id": 1412781}}, {"model": "metainfo.source", "pk": 10611, "fields": {"orig_filename": "Leon_Raimund_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142", "author": "", "orig_id": 1412782}}, {"model": "metainfo.source", "pk": 10612, "fields": {"orig_filename": "Leopold-Salvator___1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 146", "author": "", "orig_id": 1412795}}, {"model": "metainfo.source", "pk": 10613, "fields": {"orig_filename": "Leopolder_Johann_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 146f.", "author": "", "orig_id": 1412796}}, {"model": "metainfo.source", "pk": 10614, "fields": {"orig_filename": "Leopoldine__1797_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 147", "author": "", "orig_id": 1412797}}, {"model": "metainfo.source", "pk": 10615, "fields": {"orig_filename": "Leopold__1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 145", "author": "", "orig_id": 1412793}}, {"model": "metainfo.source", "pk": 10616, "fields": {"orig_filename": "Leopold__1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 145f.", "author": "", "orig_id": 1412794}}, {"model": "metainfo.source", "pk": 10617, "fields": {"orig_filename": "Leoster_Leopold-Heinrich_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 147f.", "author": "", "orig_id": 1412874}}, {"model": "metainfo.source", "pk": 10618, "fields": {"orig_filename": "Leo_Juliusz_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 140f.", "author": "", "orig_id": 1412703}}, {"model": "metainfo.source", "pk": 10619, "fields": {"orig_filename": "Lepar_Frantisek_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148", "author": "", "orig_id": 1412875}}, {"model": "metainfo.source", "pk": 10620, "fields": {"orig_filename": "Lepkowski_Jozef_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148", "author": "", "orig_id": 1412876}}, {"model": "metainfo.source", "pk": 10621, "fields": {"orig_filename": "Lepkyj_Bohdan-Sylvestrovyc_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148f.", "author": "", "orig_id": 1412877}}, {"model": "metainfo.source", "pk": 10622, "fields": {"orig_filename": "Leppin_Paul_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412878}}, {"model": "metainfo.source", "pk": 10623, "fields": {"orig_filename": "Lepsenyi_Miklos-Jozsef_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412879}}, {"model": "metainfo.source", "pk": 10624, "fields": {"orig_filename": "Lepszy_Leonard_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412880}}, {"model": "metainfo.source", "pk": 10625, "fields": {"orig_filename": "Lepuschuetz_Johann_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412881}}, {"model": "metainfo.source", "pk": 10626, "fields": {"orig_filename": "Lercher_Ludwig_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 152f.", "author": "", "orig_id": 1412889}}, {"model": "metainfo.source", "pk": 10627, "fields": {"orig_filename": "Lerch_Egon_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412882}}, {"model": "metainfo.source", "pk": 10628, "fields": {"orig_filename": "Lerch_Friedrich_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412883}}, {"model": "metainfo.source", "pk": 10629, "fields": {"orig_filename": "Lerch_Johann-Alexander_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150f.", "author": "", "orig_id": 1412884}}, {"model": "metainfo.source", "pk": 10630, "fields": {"orig_filename": "Lerch_Joseph-Udo_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151", "author": "", "orig_id": 1412885}}, {"model": "metainfo.source", "pk": 10631, "fields": {"orig_filename": "Lerch_Matyas_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151", "author": "", "orig_id": 1412886}}, {"model": "metainfo.source", "pk": 10632, "fields": {"orig_filename": "Lerch_Theodor_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151f.", "author": "", "orig_id": 1412887}}, {"model": "metainfo.source", "pk": 10633, "fields": {"orig_filename": "Lerch_Wenzel_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 152", "author": "", "orig_id": 1412888}}, {"model": "metainfo.source", "pk": 10634, "fields": {"orig_filename": "Lergetporer_Alois_1786_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153", "author": "", "orig_id": 1412963}}, {"model": "metainfo.source", "pk": 10635, "fields": {"orig_filename": "Lergetporer_Peter-Nikolaus_1749_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153", "author": "", "orig_id": 1412964}}, {"model": "metainfo.source", "pk": 10636, "fields": {"orig_filename": "Lerman_Dragutin_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153f.", "author": "", "orig_id": 1412965}}, {"model": "metainfo.source", "pk": 10637, "fields": {"orig_filename": "Leschanowsky_Lothar_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412966}}, {"model": "metainfo.source", "pk": 10638, "fields": {"orig_filename": "Leschen_Wilhelm_1781_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412967}}, {"model": "metainfo.source", "pk": 10639, "fields": {"orig_filename": "Leschetitzky_Theodor_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412968}}, {"model": "metainfo.source", "pk": 10640, "fields": {"orig_filename": "Leschinger_Karl-Konrad_1866_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412969}}, {"model": "metainfo.source", "pk": 10641, "fields": {"orig_filename": "Leser_Gratian_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412971}}, {"model": "metainfo.source", "pk": 10642, "fields": {"orig_filename": "Leser_Ludwig_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154f.", "author": "", "orig_id": 1412970}}, {"model": "metainfo.source", "pk": 10643, "fields": {"orig_filename": "Ledochowski_Mieczyslaw_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87f.", "author": "", "orig_id": 1413571}}, {"model": "metainfo.source", "pk": 10644, "fields": {"orig_filename": "Ledochowski_Timotheus_1792_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 88", "author": "", "orig_id": 1413572}}, {"model": "metainfo.source", "pk": 10645, "fields": {"orig_filename": "Ledochowski_Wladimir_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 88f.", "author": "", "orig_id": 1413573}}, {"model": "metainfo.source", "pk": 10646, "fields": {"orig_filename": "Leeb_Josef-Anton_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89", "author": "", "orig_id": 1413574}}, {"model": "metainfo.source", "pk": 10647, "fields": {"orig_filename": "Leeb_Willibald_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89", "author": "", "orig_id": 1413575}}, {"model": "metainfo.source", "pk": 10648, "fields": {"orig_filename": "Leeder_Karl_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89f.", "author": "", "orig_id": 1413576}}, {"model": "metainfo.source", "pk": 10649, "fields": {"orig_filename": "Lefler_Franz_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413577}}, {"model": "metainfo.source", "pk": 10650, "fields": {"orig_filename": "Legay-Lierfels_Albert_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90f.", "author": "", "orig_id": 1413579}}, {"model": "metainfo.source", "pk": 10651, "fields": {"orig_filename": "Legeditsch_Ignaz_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91", "author": "", "orig_id": 1413580}}, {"model": "metainfo.source", "pk": 10652, "fields": {"orig_filename": "Leger_Karel_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91", "author": "", "orig_id": 1413581}}, {"model": "metainfo.source", "pk": 10653, "fields": {"orig_filename": "Legler_Friedrich_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91f.", "author": "", "orig_id": 1413582}}, {"model": "metainfo.source", "pk": 10654, "fields": {"orig_filename": "Legnani_Rinaldo-Luigi_1790_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413583}}, {"model": "metainfo.source", "pk": 10655, "fields": {"orig_filename": "Legnazzi-Dossi_Alessandro_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413585}}, {"model": "metainfo.source", "pk": 10656, "fields": {"orig_filename": "Legnazzi_Enrico-Nestore_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413584}}, {"model": "metainfo.source", "pk": 10657, "fields": {"orig_filename": "Legrady_Karoly_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92f.", "author": "", "orig_id": 1413586}}, {"model": "metainfo.source", "pk": 10658, "fields": {"orig_filename": "Lehar_Franz_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413587}}, {"model": "metainfo.source", "pk": 10659, "fields": {"orig_filename": "Lehar_Franz_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413588}}, {"model": "metainfo.source", "pk": 10660, "fields": {"orig_filename": "Lehmann-Haupt_Carl_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 96f.", "author": "", "orig_id": 1413665}}, {"model": "metainfo.source", "pk": 10661, "fields": {"orig_filename": "Lehmann_Adolf_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413589}}, {"model": "metainfo.source", "pk": 10662, "fields": {"orig_filename": "Lehmann_Franz-Kaspar_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413591}}, {"model": "metainfo.source", "pk": 10663, "fields": {"orig_filename": "Lehmann_Georg_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413590}}, {"model": "metainfo.source", "pk": 10664, "fields": {"orig_filename": "Lehmann_Guido_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413592}}, {"model": "metainfo.source", "pk": 10665, "fields": {"orig_filename": "Lehmann_Heinrich_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413660}}, {"model": "metainfo.source", "pk": 10666, "fields": {"orig_filename": "Lehmann_Josef_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95", "author": "", "orig_id": 1413661}}, {"model": "metainfo.source", "pk": 10667, "fields": {"orig_filename": "Lehmann_Lilli_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95", "author": "", "orig_id": 1413662}}, {"model": "metainfo.source", "pk": 10668, "fields": {"orig_filename": "Lehmann_Moritz_1819_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95f.", "author": "", "orig_id": 1413663}}, {"model": "metainfo.source", "pk": 10669, "fields": {"orig_filename": "Lehmann_Otto_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 96", "author": "", "orig_id": 1413664}}, {"model": "metainfo.source", "pk": 10670, "fields": {"orig_filename": "Lehne-Lehnsheim_Gustav_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97", "author": "", "orig_id": 1413666}}, {"model": "metainfo.source", "pk": 10671, "fields": {"orig_filename": "Lehnert_Joseph_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413674}}, {"model": "metainfo.source", "pk": 10672, "fields": {"orig_filename": "Lehner_Elise_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97", "author": "", "orig_id": 1413667}}, {"model": "metainfo.source", "pk": 10673, "fields": {"orig_filename": "Lehner_Ferdinand_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97f.", "author": "", "orig_id": 1413668}}, {"model": "metainfo.source", "pk": 10674, "fields": {"orig_filename": "Lehner_Franz-De-Paula_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413669}}, {"model": "metainfo.source", "pk": 10675, "fields": {"orig_filename": "Lehner_Franz-Xaver_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413670}}, {"model": "metainfo.source", "pk": 10676, "fields": {"orig_filename": "Lehner_Josef_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413671}}, {"model": "metainfo.source", "pk": 10677, "fields": {"orig_filename": "Lehner_Rudolf-Julius_1883_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413673}}, {"model": "metainfo.source", "pk": 10678, "fields": {"orig_filename": "Lehner_Rudolf_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98f.", "author": "", "orig_id": 1413672}}, {"model": "metainfo.source", "pk": 10679, "fields": {"orig_filename": "Lehoczky_Tivadar_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413675}}, {"model": "metainfo.source", "pk": 10680, "fields": {"orig_filename": "Lehr_Albert_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413676}}, {"model": "metainfo.source", "pk": 10681, "fields": {"orig_filename": "Lehr_Zsigmond_1841_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413677}}, {"model": "metainfo.source", "pk": 10682, "fields": {"orig_filename": "Leibenfrost_Franz-Heinrich_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100f.", "author": "", "orig_id": 1413679}}, {"model": "metainfo.source", "pk": 10683, "fields": {"orig_filename": "Leibenfrost_Franz_1790_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413678}}, {"model": "metainfo.source", "pk": 10684, "fields": {"orig_filename": "Leibenfrost_Hermann_1844_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 101", "author": "", "orig_id": 1413680}}, {"model": "metainfo.source", "pk": 10685, "fields": {"orig_filename": "Leibitzer_Johann_1763_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 101", "author": "", "orig_id": 1413681}}, {"model": "metainfo.source", "pk": 10686, "fields": {"orig_filename": "Leicht_Ferdinand_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1416076}}, {"model": "metainfo.source", "pk": 10687, "fields": {"orig_filename": "Leicht_Hans_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1413682}}, {"model": "metainfo.source", "pk": 10688, "fields": {"orig_filename": "Leicht_Michele_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1413683}}, {"model": "metainfo.source", "pk": 10689, "fields": {"orig_filename": "Leicht_Wilhelm_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102f.", "author": "", "orig_id": 1413684}}, {"model": "metainfo.source", "pk": 10690, "fields": {"orig_filename": "Leidenfrost_Robert_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413750}}, {"model": "metainfo.source", "pk": 10691, "fields": {"orig_filename": "Leidesdorfer-Neuwall_Markus_1753_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105", "author": "", "orig_id": 1413756}}, {"model": "metainfo.source", "pk": 10692, "fields": {"orig_filename": "Leidesdorf_Franz-Emil_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104", "author": "", "orig_id": 1413752}}, {"model": "metainfo.source", "pk": 10693, "fields": {"orig_filename": "Leidesdorf_Leopold-Franz_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104", "author": "", "orig_id": 1413753}}, {"model": "metainfo.source", "pk": 10694, "fields": {"orig_filename": "Leidesdorf_Maximilian-Joseph_1787_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105", "author": "", "orig_id": 1413755}}, {"model": "metainfo.source", "pk": 10695, "fields": {"orig_filename": "Leidesdorf_Maximilian_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104f.", "author": "", "orig_id": 1413754}}, {"model": "metainfo.source", "pk": 10696, "fields": {"orig_filename": "Leidler_Rudolf_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 106", "author": "", "orig_id": 1413758}}, {"model": "metainfo.source", "pk": 10697, "fields": {"orig_filename": "Leidl_Karl_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105f.", "author": "", "orig_id": 1413757}}, {"model": "metainfo.source", "pk": 10698, "fields": {"orig_filename": "Leifer_Franz_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 106", "author": "", "orig_id": 1413759}}, {"model": "metainfo.source", "pk": 10699, "fields": {"orig_filename": "Leifer_Therese_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 107", "author": "", "orig_id": 1413760}}, {"model": "metainfo.source", "pk": 10700, "fields": {"orig_filename": "Leifhelm_Hans_1891_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 107f.", "author": "", "orig_id": 1413761}}, {"model": "metainfo.source", "pk": 10701, "fields": {"orig_filename": "Leigheb_Giovanni_1812_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413763}}, {"model": "metainfo.source", "pk": 10702, "fields": {"orig_filename": "Leimdoerfer_David_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413764}}, {"model": "metainfo.source", "pk": 10703, "fields": {"orig_filename": "Leiner_Carl_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413765}}, {"model": "metainfo.source", "pk": 10704, "fields": {"orig_filename": "Leiningen-Westerburg_Karl_1819_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108f.", "author": "", "orig_id": 1413766}}, {"model": "metainfo.source", "pk": 10705, "fields": {"orig_filename": "Leinner_Anton_1813_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413767}}, {"model": "metainfo.source", "pk": 10706, "fields": {"orig_filename": "Leipziger_Vilmos_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413768}}, {"model": "metainfo.source", "pk": 10707, "fields": {"orig_filename": "Leis-Paschbach_Anton_1777_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413769}}, {"model": "metainfo.source", "pk": 10708, "fields": {"orig_filename": "Leisching_Eduard_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109f.", "author": "", "orig_id": 1413770}}, {"model": "metainfo.source", "pk": 10709, "fields": {"orig_filename": "Leisching_Julius_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110", "author": "", "orig_id": 1413771}}, {"model": "metainfo.source", "pk": 10710, "fields": {"orig_filename": "Leisek_Friedrich_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110", "author": "", "orig_id": 1413772}}, {"model": "metainfo.source", "pk": 10711, "fields": {"orig_filename": "Leisek_Georg_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110f.", "author": "", "orig_id": 1413841}}, {"model": "metainfo.source", "pk": 10712, "fields": {"orig_filename": "Leiss_Hans_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 111", "author": "", "orig_id": 1413842}}, {"model": "metainfo.source", "pk": 10713, "fields": {"orig_filename": "Leistler_Carl_1805_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 111f.", "author": "", "orig_id": 1413843}}, {"model": "metainfo.source", "pk": 10714, "fields": {"orig_filename": "Leitenberger_Friedrich-Franz-Josef_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113", "author": "", "orig_id": 1413846}}, {"model": "metainfo.source", "pk": 10715, "fields": {"orig_filename": "Leitenberger_Friedrich_1801_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 112", "author": "", "orig_id": 1413845}}, {"model": "metainfo.source", "pk": 10716, "fields": {"orig_filename": "Leitenberger_Friedrich_1862_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113", "author": "", "orig_id": 1416075}}, {"model": "metainfo.source", "pk": 10717, "fields": {"orig_filename": "Leitenberger_Karl_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113f.", "author": "", "orig_id": 1413847}}, {"model": "metainfo.source", "pk": 10718, "fields": {"orig_filename": "Leiter-Lososina_Anton_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413849}}, {"model": "metainfo.source", "pk": 10719, "fields": {"orig_filename": "Leitermayer_Alexander_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413850}}, {"model": "metainfo.source", "pk": 10720, "fields": {"orig_filename": "Leiter_Josef_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413848}}, {"model": "metainfo.source", "pk": 10721, "fields": {"orig_filename": "Leitgeb_Hans_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413851}}, {"model": "metainfo.source", "pk": 10722, "fields": {"orig_filename": "Leitgeb_Lorenz_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 115", "author": "", "orig_id": 1413853}}, {"model": "metainfo.source", "pk": 10723, "fields": {"orig_filename": "Leithe_Friedrich_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 115", "author": "", "orig_id": 1413854}}, {"model": "metainfo.source", "pk": 10724, "fields": {"orig_filename": "Leithner_Eduard_1815_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116", "author": "", "orig_id": 1413855}}, {"model": "metainfo.source", "pk": 10725, "fields": {"orig_filename": "Leithner_Ernst_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116", "author": "", "orig_id": 1413856}}, {"model": "metainfo.source", "pk": 10726, "fields": {"orig_filename": "Leithner_Hermann_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116f.", "author": "", "orig_id": 1413857}}, {"model": "metainfo.source", "pk": 10727, "fields": {"orig_filename": "Leithner_Josef_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413858}}, {"model": "metainfo.source", "pk": 10728, "fields": {"orig_filename": "Leitich_Albert_1869_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413859}}, {"model": "metainfo.source", "pk": 10729, "fields": {"orig_filename": "Leitner_Alois_1876_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413860}}, {"model": "metainfo.source", "pk": 10730, "fields": {"orig_filename": "Leitner_Emanuel_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117f.", "author": "", "orig_id": 1413861}}, {"model": "metainfo.source", "pk": 10731, "fields": {"orig_filename": "Leitner_Franz_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 118", "author": "", "orig_id": 1413862}}, {"model": "metainfo.source", "pk": 10732, "fields": {"orig_filename": "Leitner_Friedrich_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 118f.", "author": "", "orig_id": 1413863}}, {"model": "metainfo.source", "pk": 10733, "fields": {"orig_filename": "Leitner_Gottlieb-William_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119", "author": "", "orig_id": 1413864}}, {"model": "metainfo.source", "pk": 10734, "fields": {"orig_filename": "Leitner_Johann-Georg_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119", "author": "", "orig_id": 1412500}}, {"model": "metainfo.source", "pk": 10735, "fields": {"orig_filename": "Leitner_Karl-Gottfried_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119f.", "author": "", "orig_id": 1412501}}, {"model": "metainfo.source", "pk": 10736, "fields": {"orig_filename": "Leitner_Quirin_1834_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 120f.", "author": "", "orig_id": 1412502}}, {"model": "metainfo.source", "pk": 10737, "fields": {"orig_filename": "Leitz_Heinrich-Friedrich_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 121", "author": "", "orig_id": 1412503}}, {"model": "metainfo.source", "pk": 10738, "fields": {"orig_filename": "Leixner-Gruenberg_Othmar_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 121", "author": "", "orig_id": 1412504}}, {"model": "metainfo.source", "pk": 10739, "fields": {"orig_filename": "Leixner-Gruenberg_Otto_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412505}}, {"model": "metainfo.source", "pk": 10740, "fields": {"orig_filename": "Lejet_Nicolas_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412506}}, {"model": "metainfo.source", "pk": 10741, "fields": {"orig_filename": "Laxa_Wladimir_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54", "author": "", "orig_id": 1413049}}, {"model": "metainfo.source", "pk": 10742, "fields": {"orig_filename": "Layer_Leopold_1752_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54f.", "author": "", "orig_id": 1413051}}, {"model": "metainfo.source", "pk": 10743, "fields": {"orig_filename": "Layer_Max_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 55", "author": "", "orig_id": 1413052}}, {"model": "metainfo.source", "pk": 10744, "fields": {"orig_filename": "Layer_Michael_1796_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 55f.", "author": "", "orig_id": 1413053}}, {"model": "metainfo.source", "pk": 10745, "fields": {"orig_filename": "Lay_Srecko_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54", "author": "", "orig_id": 1413050}}, {"model": "metainfo.source", "pk": 10746, "fields": {"orig_filename": "Lazansky-Bukowa_Leopold_1808_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413125}}, {"model": "metainfo.source", "pk": 10747, "fields": {"orig_filename": "Lazansky-Bukowa_Procop_1771_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413126}}, {"model": "metainfo.source", "pk": 10748, "fields": {"orig_filename": "Lazar-Szarhegy_Gyoergy_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413133}}, {"model": "metainfo.source", "pk": 10749, "fields": {"orig_filename": "Lazar-Szarhegy_Jozsef_1782_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413134}}, {"model": "metainfo.source", "pk": 10750, "fields": {"orig_filename": "Lazar-Szarhegy_Kalman_1827_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413135}}, {"model": "metainfo.source", "pk": 10751, "fields": {"orig_filename": "Lazar-Szarhegy_Laszlo_1780_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413136}}, {"model": "metainfo.source", "pk": 10752, "fields": {"orig_filename": "Lazar-Szarhegy_Miklos_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413137}}, {"model": "metainfo.source", "pk": 10753, "fields": {"orig_filename": "Lazara_Francesco_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413138}}, {"model": "metainfo.source", "pk": 10754, "fields": {"orig_filename": "Lazara_Giovanni_1744_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413212}}, {"model": "metainfo.source", "pk": 10755, "fields": {"orig_filename": "Lazarich-Lindaro_Josef_1784_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413213}}, {"model": "metainfo.source", "pk": 10756, "fields": {"orig_filename": "Lazarini_Giacomo-Lodovico_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413214}}, {"model": "metainfo.source", "pk": 10757, "fields": {"orig_filename": "Lazarini_Josef-Philibert_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413215}}, {"model": "metainfo.source", "pk": 10758, "fields": {"orig_filename": "Lazari_Vincenzo_1823_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59f.", "author": "", "orig_id": 1413211}}, {"model": "metainfo.source", "pk": 10759, "fields": {"orig_filename": "Lazarski_Jozef_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413216}}, {"model": "metainfo.source", "pk": 10760, "fields": {"orig_filename": "Lazarski_Stanislaw_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413217}}, {"model": "metainfo.source", "pk": 10761, "fields": {"orig_filename": "Lazar_Auguste_1887_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436976}}, {"model": "metainfo.source", "pk": 10762, "fields": {"orig_filename": "Lazar_Erwin_1877_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413127}}, {"model": "metainfo.source", "pk": 10763, "fields": {"orig_filename": "Lazar_Gheorghe_1779_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413128}}, {"model": "metainfo.source", "pk": 10764, "fields": {"orig_filename": "Lazar_Gyula_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413129}}, {"model": "metainfo.source", "pk": 10765, "fields": {"orig_filename": "Lazar_Istvan_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413130}}, {"model": "metainfo.source", "pk": 10766, "fields": {"orig_filename": "Lazar_Maria_1895_1948.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1449979}}, {"model": "metainfo.source", "pk": 10767, "fields": {"orig_filename": "Lazar_Pal-L_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413131}}, {"model": "metainfo.source", "pk": 10768, "fields": {"orig_filename": "Lazar_Vilmos_1815_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57f.", "author": "", "orig_id": 1413132}}, {"model": "metainfo.source", "pk": 10769, "fields": {"orig_filename": "Lazzarini_Giuseppe-Edgardo_1832_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 62", "author": "", "orig_id": 1413220}}, {"model": "metainfo.source", "pk": 10770, "fields": {"orig_filename": "Lazzari_Francesco_1791_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413218}}, {"model": "metainfo.source", "pk": 10771, "fields": {"orig_filename": "Lazzari_Silvio_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61f.", "author": "", "orig_id": 1413219}}, {"model": "metainfo.source", "pk": 10772, "fields": {"orig_filename": "Lazzati_Antonio_1821_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 62f.", "author": "", "orig_id": 1413221}}, {"model": "metainfo.source", "pk": 10773, "fields": {"orig_filename": "Lebeau_Aurel_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63", "author": "", "orig_id": 1413223}}, {"model": "metainfo.source", "pk": 10774, "fields": {"orig_filename": "Lebeda_Anton-Vinzenz_1797_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63f.", "author": "", "orig_id": 1413224}}, {"model": "metainfo.source", "pk": 10775, "fields": {"orig_filename": "Lebeda_Anton-Vinzenz_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 64", "author": "", "orig_id": 1413225}}, {"model": "metainfo.source", "pk": 10776, "fields": {"orig_filename": "Lebeda_Ferdinand_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 64f.", "author": "", "orig_id": 1413226}}, {"model": "metainfo.source", "pk": 10777, "fields": {"orig_filename": "Lebeda_Otakar_1877_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65", "author": "", "orig_id": 1413227}}, {"model": "metainfo.source", "pk": 10778, "fields": {"orig_filename": "Lebenhart_Filip_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65", "author": "", "orig_id": 1413228}}, {"model": "metainfo.source", "pk": 10779, "fields": {"orig_filename": "Leberl_Hans_1871_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413230}}, {"model": "metainfo.source", "pk": 10780, "fields": {"orig_filename": "Leber_Max_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65f.", "author": "", "orig_id": 1413229}}, {"model": "metainfo.source", "pk": 10781, "fields": {"orig_filename": "Lebiedzki_Eduard_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413231}}, {"model": "metainfo.source", "pk": 10782, "fields": {"orig_filename": "Lebinger_Norbert_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413232}}, {"model": "metainfo.source", "pk": 10783, "fields": {"orig_filename": "Lebmacher_Carl_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66f.", "author": "", "orig_id": 1413301}}, {"model": "metainfo.source", "pk": 10784, "fields": {"orig_filename": "Lebouton_Alois_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 67", "author": "", "orig_id": 1413302}}, {"model": "metainfo.source", "pk": 10785, "fields": {"orig_filename": "Lebschy_Dominik_1799_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 67f.", "author": "", "orig_id": 1413303}}, {"model": "metainfo.source", "pk": 10786, "fields": {"orig_filename": "Lebstueck_Maria_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413304}}, {"model": "metainfo.source", "pk": 10787, "fields": {"orig_filename": "Lebzeltern_Josef_1781_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413306}}, {"model": "metainfo.source", "pk": 10788, "fields": {"orig_filename": "Lebzeltern_Ludwig_1774_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 69", "author": "", "orig_id": 1413307}}, {"model": "metainfo.source", "pk": 10789, "fields": {"orig_filename": "Lebzelter_Viktor_1889_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413305}}, {"model": "metainfo.source", "pk": 10790, "fields": {"orig_filename": "Leb_Josef_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63", "author": "", "orig_id": 1413222}}, {"model": "metainfo.source", "pk": 10791, "fields": {"orig_filename": "Lecca_Constantin_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 69f.", "author": "", "orig_id": 1413308}}, {"model": "metainfo.source", "pk": 10792, "fields": {"orig_filename": "Lecher_Ernst_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 70", "author": "", "orig_id": 1413309}}, {"model": "metainfo.source", "pk": 10793, "fields": {"orig_filename": "Lecher_Helene_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 70f.", "author": "", "orig_id": 1413310}}, {"model": "metainfo.source", "pk": 10794, "fields": {"orig_filename": "Lecher_Otto_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413311}}, {"model": "metainfo.source", "pk": 10795, "fields": {"orig_filename": "Lecher_Zacharias-Konrad_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413312}}, {"model": "metainfo.source", "pk": 10796, "fields": {"orig_filename": "Lechi_Angelo_1769_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413313}}, {"model": "metainfo.source", "pk": 10797, "fields": {"orig_filename": "Lechi_Giacomo_1768_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71f.", "author": "", "orig_id": 1413314}}, {"model": "metainfo.source", "pk": 10798, "fields": {"orig_filename": "Lechi_Giuseppe_1766_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 72", "author": "", "orig_id": 1413315}}, {"model": "metainfo.source", "pk": 10799, "fields": {"orig_filename": "Lechi_Luigi_1786_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 72f.", "author": "", "orig_id": 1413316}}, {"model": "metainfo.source", "pk": 10800, "fields": {"orig_filename": "Lechi_Teodoro_1778_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 73", "author": "", "orig_id": 1413317}}, {"model": "metainfo.source", "pk": 10801, "fields": {"orig_filename": "Lechleitner_Franz_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 73f.", "author": "", "orig_id": 1413318}}, {"model": "metainfo.source", "pk": 10802, "fields": {"orig_filename": "Lechleitner_Johannes-Bapt_1764_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74", "author": "", "orig_id": 1413319}}, {"model": "metainfo.source", "pk": 10803, "fields": {"orig_filename": "Lechleitner_Robert_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74", "author": "", "orig_id": 1413320}}, {"model": "metainfo.source", "pk": 10804, "fields": {"orig_filename": "Lechleitner_Wilhelm_1779_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74f.", "author": "", "orig_id": 1413321}}, {"model": "metainfo.source", "pk": 10805, "fields": {"orig_filename": "Lechner_Agost_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75", "author": "", "orig_id": 1413322}}, {"model": "metainfo.source", "pk": 10806, "fields": {"orig_filename": "Lechner_Anton_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75", "author": "", "orig_id": 1413323}}, {"model": "metainfo.source", "pk": 10807, "fields": {"orig_filename": "Lechner_Franziska_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76", "author": "", "orig_id": 1413395}}, {"model": "metainfo.source", "pk": 10808, "fields": {"orig_filename": "Lechner_Franz_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75f.", "author": "", "orig_id": 1413324}}, {"model": "metainfo.source", "pk": 10809, "fields": {"orig_filename": "Lechner_Gyula_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76", "author": "", "orig_id": 1413396}}, {"model": "metainfo.source", "pk": 10810, "fields": {"orig_filename": "Lechner_Johann_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76f.", "author": "", "orig_id": 1413397}}, {"model": "metainfo.source", "pk": 10811, "fields": {"orig_filename": "Lechner_Karl_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413398}}, {"model": "metainfo.source", "pk": 10812, "fields": {"orig_filename": "Lechner_Karoly_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413399}}, {"model": "metainfo.source", "pk": 10813, "fields": {"orig_filename": "Lechner_Lajos_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413400}}, {"model": "metainfo.source", "pk": 10814, "fields": {"orig_filename": "Lechner_Ludwig_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77f.", "author": "", "orig_id": 1413401}}, {"model": "metainfo.source", "pk": 10815, "fields": {"orig_filename": "Lechner_Michael_1785_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78", "author": "", "orig_id": 1413402}}, {"model": "metainfo.source", "pk": 10816, "fields": {"orig_filename": "Lechner_Oedoen_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78", "author": "", "orig_id": 1413403}}, {"model": "metainfo.source", "pk": 10817, "fields": {"orig_filename": "Lechthaler_Josef_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78f.", "author": "", "orig_id": 1413404}}, {"model": "metainfo.source", "pk": 10818, "fields": {"orig_filename": "Leciejewski_Jan_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 79", "author": "", "orig_id": 1413405}}, {"model": "metainfo.source", "pk": 10819, "fields": {"orig_filename": "Leddihn_Adolph_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 79", "author": "", "orig_id": 1413406}}, {"model": "metainfo.source", "pk": 10820, "fields": {"orig_filename": "Ledebur-Wicheln_Johann_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80", "author": "", "orig_id": 1413407}}, {"model": "metainfo.source", "pk": 10821, "fields": {"orig_filename": "Ledererova-Seifertova_Terezie_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136f.", "author": "", "orig_id": 1451574}}, {"model": "metainfo.source", "pk": 10822, "fields": {"orig_filename": "Lederer_Abraham_1827_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81", "author": "", "orig_id": 1413484}}, {"model": "metainfo.source", "pk": 10823, "fields": {"orig_filename": "Lederer_Alexander_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81", "author": "", "orig_id": 1413486}}, {"model": "metainfo.source", "pk": 10824, "fields": {"orig_filename": "Lederer_Anton_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81f.", "author": "", "orig_id": 1413485}}, {"model": "metainfo.source", "pk": 10825, "fields": {"orig_filename": "Lederer_Bela_1860_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413487}}, {"model": "metainfo.source", "pk": 10826, "fields": {"orig_filename": "Lederer_Carl-Ramon-Soter_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413488}}, {"model": "metainfo.source", "pk": 10827, "fields": {"orig_filename": "Lederer_Eduard_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413489}}, {"model": "metainfo.source", "pk": 10828, "fields": {"orig_filename": "Lederer_Emil_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82f.", "author": "", "orig_id": 1413490}}, {"model": "metainfo.source", "pk": 10829, "fields": {"orig_filename": "Lederer_Hugo_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413491}}, {"model": "metainfo.source", "pk": 10830, "fields": {"orig_filename": "Lederer_Joachim_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413492}}, {"model": "metainfo.source", "pk": 10831, "fields": {"orig_filename": "Lederer_Karl-Joseph-Alois_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84", "author": "", "orig_id": 1413494}}, {"model": "metainfo.source", "pk": 10832, "fields": {"orig_filename": "Lederer_Karl_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413493}}, {"model": "metainfo.source", "pk": 10833, "fields": {"orig_filename": "Lederer_Leo_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84", "author": "", "orig_id": 1413495}}, {"model": "metainfo.source", "pk": 10834, "fields": {"orig_filename": "Lederer_Max_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84f.", "author": "", "orig_id": 1413496}}, {"model": "metainfo.source", "pk": 10835, "fields": {"orig_filename": "Lederer_Max_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85", "author": "", "orig_id": 1413497}}, {"model": "metainfo.source", "pk": 10836, "fields": {"orig_filename": "Lederer_Sandor_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85", "author": "", "orig_id": 1413499}}, {"model": "metainfo.source", "pk": 10837, "fields": {"orig_filename": "Ledermaier_Josef_1910_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85f.", "author": "", "orig_id": 1413498}}, {"model": "metainfo.source", "pk": 10838, "fields": {"orig_filename": "Ledersteger_Alois-Paul_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86", "author": "", "orig_id": 1413500}}, {"model": "metainfo.source", "pk": 10839, "fields": {"orig_filename": "Leder_August-Paul_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80", "author": "", "orig_id": 1413408}}, {"model": "metainfo.source", "pk": 10840, "fields": {"orig_filename": "Leder_Hans_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80f.", "author": "", "orig_id": 1413409}}, {"model": "metainfo.source", "pk": 10841, "fields": {"orig_filename": "Ledl_Artur_1878_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86", "author": "", "orig_id": 1413501}}, {"model": "metainfo.source", "pk": 10842, "fields": {"orig_filename": "Ledochowska_Maria-Theresia_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86f.", "author": "", "orig_id": 1413502}}, {"model": "metainfo.source", "pk": 10843, "fields": {"orig_filename": "Ledochowska_Maria-Ursula_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87", "author": "", "orig_id": 1413503}}, {"model": "metainfo.source", "pk": 10844, "fields": {"orig_filename": "Ledochowski_Antoni_1755_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87", "author": "", "orig_id": 1413570}}, {"model": "metainfo.source", "pk": 10845, "fields": {"orig_filename": "Lany_Karel-Bohuslav_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412667}}, {"model": "metainfo.source", "pk": 10846, "fields": {"orig_filename": "Lany_Karel-Eduard_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19f.", "author": "", "orig_id": 1412668}}, {"model": "metainfo.source", "pk": 10847, "fields": {"orig_filename": "Lanza_Frano_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21f.", "author": "", "orig_id": 1412674}}, {"model": "metainfo.source", "pk": 10848, "fields": {"orig_filename": "Lanzedelly_August_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412675}}, {"model": "metainfo.source", "pk": 10849, "fields": {"orig_filename": "Lanzedelly_Josef_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412676}}, {"model": "metainfo.source", "pk": 10850, "fields": {"orig_filename": "Lanzedelly_Josef_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412677}}, {"model": "metainfo.source", "pk": 10851, "fields": {"orig_filename": "Lanzedelly_Karl_1815_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22f.", "author": "", "orig_id": 1412678}}, {"model": "metainfo.source", "pk": 10852, "fields": {"orig_filename": "Lanzendoerfer_Ferdinand_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23", "author": "", "orig_id": 1412679}}, {"model": "metainfo.source", "pk": 10853, "fields": {"orig_filename": "Lanzinger_Hubert_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23", "author": "", "orig_id": 1412680}}, {"model": "metainfo.source", "pk": 10854, "fields": {"orig_filename": "Lanz_Engelbert_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21", "author": "", "orig_id": 1412672}}, {"model": "metainfo.source", "pk": 10855, "fields": {"orig_filename": "Lanz_Katharina_1771_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21", "author": "", "orig_id": 1412673}}, {"model": "metainfo.source", "pk": 10856, "fields": {"orig_filename": "Lapajne_Ivan_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24", "author": "", "orig_id": 1412755}}, {"model": "metainfo.source", "pk": 10857, "fields": {"orig_filename": "Lapajne_Stanko_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24", "author": "", "orig_id": 1412756}}, {"model": "metainfo.source", "pk": 10858, "fields": {"orig_filename": "Lapinski_Teofil_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24f.", "author": "", "orig_id": 1412757}}, {"model": "metainfo.source", "pk": 10859, "fields": {"orig_filename": "Lapp_Daniel_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 25", "author": "", "orig_id": 1412758}}, {"model": "metainfo.source", "pk": 10860, "fields": {"orig_filename": "Lapp_Friedrich-August_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 25f.", "author": "", "orig_id": 1412759}}, {"model": "metainfo.source", "pk": 10861, "fields": {"orig_filename": "Lapsinszky_Janos_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412760}}, {"model": "metainfo.source", "pk": 10862, "fields": {"orig_filename": "Larber_Giovanni_1786_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412761}}, {"model": "metainfo.source", "pk": 10863, "fields": {"orig_filename": "Larch_Hans_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412762}}, {"model": "metainfo.source", "pk": 10864, "fields": {"orig_filename": "Lardschneider_Archangelus-Ciampac_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26f.", "author": "", "orig_id": 1412763}}, {"model": "metainfo.source", "pk": 10865, "fields": {"orig_filename": "Larisch-Moennich_Heinrich_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 27f.", "author": "", "orig_id": 1412765}}, {"model": "metainfo.source", "pk": 10866, "fields": {"orig_filename": "Larisch-Moennich_Johann_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28", "author": "", "orig_id": 1412766}}, {"model": "metainfo.source", "pk": 10867, "fields": {"orig_filename": "Larisch_Rudolf_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 27", "author": "", "orig_id": 1412764}}, {"model": "metainfo.source", "pk": 10868, "fields": {"orig_filename": "Laroche_Jakob_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28", "author": "", "orig_id": 1412767}}, {"model": "metainfo.source", "pk": 10869, "fields": {"orig_filename": "Laroche_Karl_1794_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28f.", "author": "", "orig_id": 1412768}}, {"model": "metainfo.source", "pk": 10870, "fields": {"orig_filename": "Laroche_Michael-Johann_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 29", "author": "", "orig_id": 1412769}}, {"model": "metainfo.source", "pk": 10871, "fields": {"orig_filename": "Larwin_Hans_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 29f.", "author": "", "orig_id": 1412770}}, {"model": "metainfo.source", "pk": 10872, "fields": {"orig_filename": "Laschan-Moorland_Anton_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412774}}, {"model": "metainfo.source", "pk": 10873, "fields": {"orig_filename": "Laschan-Solstein_Ignaz_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30f.", "author": "", "orig_id": 1412773}}, {"model": "metainfo.source", "pk": 10874, "fields": {"orig_filename": "Laschitzer_Simon_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31", "author": "", "orig_id": 1412775}}, {"model": "metainfo.source", "pk": 10875, "fields": {"orig_filename": "Lasch_Richard_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412771}}, {"model": "metainfo.source", "pk": 10876, "fields": {"orig_filename": "Lasch_Simon_1796_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412772}}, {"model": "metainfo.source", "pk": 10877, "fields": {"orig_filename": "Lascny-Folkusfalva_Katharina_1789_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31", "author": "", "orig_id": 1412776}}, {"model": "metainfo.source", "pk": 10878, "fields": {"orig_filename": "Laser_Simon-Menachem_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31f.", "author": "", "orig_id": 1412777}}, {"model": "metainfo.source", "pk": 10879, "fields": {"orig_filename": "Lasinio_Basilio_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32", "author": "", "orig_id": 1412778}}, {"model": "metainfo.source", "pk": 10880, "fields": {"orig_filename": "Lasinio_Carlo_1759_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32", "author": "", "orig_id": 1412846}}, {"model": "metainfo.source", "pk": 10881, "fields": {"orig_filename": "Laska_Gustav_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 33", "author": "", "orig_id": 1412848}}, {"model": "metainfo.source", "pk": 10882, "fields": {"orig_filename": "Laska_Julius_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 33f.", "author": "", "orig_id": 1412849}}, {"model": "metainfo.source", "pk": 10883, "fields": {"orig_filename": "Lask_Emil_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32f.", "author": "", "orig_id": 1412847}}, {"model": "metainfo.source", "pk": 10884, "fields": {"orig_filename": "Lasocki_Zygmunt_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34", "author": "", "orig_id": 1412850}}, {"model": "metainfo.source", "pk": 10885, "fields": {"orig_filename": "Lassel_Matthias_1760_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34", "author": "", "orig_id": 1412851}}, {"model": "metainfo.source", "pk": 10886, "fields": {"orig_filename": "Lassel_Rudolf_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34f.", "author": "", "orig_id": 1412852}}, {"model": "metainfo.source", "pk": 10887, "fields": {"orig_filename": "Lasser-Zollheim_Johann-Bapt_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35", "author": "", "orig_id": 1412853}}, {"model": "metainfo.source", "pk": 10888, "fields": {"orig_filename": "Lasser-Zollheim_Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35", "author": "", "orig_id": 1412854}}, {"model": "metainfo.source", "pk": 10889, "fields": {"orig_filename": "Lassu_Istvan_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35f.", "author": "", "orig_id": 1412855}}, {"model": "metainfo.source", "pk": 10890, "fields": {"orig_filename": "Lastovka_Karel_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412859}}, {"model": "metainfo.source", "pk": 10891, "fields": {"orig_filename": "Last_Adolf_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36", "author": "", "orig_id": 1412856}}, {"model": "metainfo.source", "pk": 10892, "fields": {"orig_filename": "Last_Albert_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36", "author": "", "orig_id": 1412857}}, {"model": "metainfo.source", "pk": 10893, "fields": {"orig_filename": "Last_Isaak_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36f.", "author": "", "orig_id": 1412858}}, {"model": "metainfo.source", "pk": 10894, "fields": {"orig_filename": "Laszlo-Lombos_Fueloep-Elek_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37f.", "author": "", "orig_id": 1412862}}, {"model": "metainfo.source", "pk": 10895, "fields": {"orig_filename": "Laszlo_Jozsef_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412861}}, {"model": "metainfo.source", "pk": 10896, "fields": {"orig_filename": "Laszowski_Emilij_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412863}}, {"model": "metainfo.source", "pk": 10897, "fields": {"orig_filename": "Lasz_Samu_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412860}}, {"model": "metainfo.source", "pk": 10898, "fields": {"orig_filename": "Latabar_Endre_1812_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412864}}, {"model": "metainfo.source", "pk": 10899, "fields": {"orig_filename": "Latabar_Kalman_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412865}}, {"model": "metainfo.source", "pk": 10900, "fields": {"orig_filename": "Latas_Omer_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38f.", "author": "", "orig_id": 1412866}}, {"model": "metainfo.source", "pk": 10901, "fields": {"orig_filename": "Latkoczy_Mihaly_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39", "author": "", "orig_id": 1412867}}, {"model": "metainfo.source", "pk": 10902, "fields": {"orig_filename": "Latkowski_Jozef_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39", "author": "", "orig_id": 1412868}}, {"model": "metainfo.source", "pk": 10903, "fields": {"orig_filename": "Latour-Thurmburg_Josef_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39f.", "author": "", "orig_id": 1412869}}, {"model": "metainfo.source", "pk": 10904, "fields": {"orig_filename": "Latour-Voivre_Elvine_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412870}}, {"model": "metainfo.source", "pk": 10905, "fields": {"orig_filename": "Latschenberger_Johann_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412939}}, {"model": "metainfo.source", "pk": 10906, "fields": {"orig_filename": "Latscher-Lauendorf_Julius_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412942}}, {"model": "metainfo.source", "pk": 10907, "fields": {"orig_filename": "Latscher_Johann_1840_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412940}}, {"model": "metainfo.source", "pk": 10908, "fields": {"orig_filename": "Latscher_Viktor_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40f.", "author": "", "orig_id": 1412941}}, {"model": "metainfo.source", "pk": 10909, "fields": {"orig_filename": "Latschka_Adam_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412943}}, {"model": "metainfo.source", "pk": 10910, "fields": {"orig_filename": "Latterer-Lintenburg_Adolf-Constantin_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412944}}, {"model": "metainfo.source", "pk": 10911, "fields": {"orig_filename": "Latterer-Lintenburg_Joseph-Johann_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42", "author": "", "orig_id": 1412945}}, {"model": "metainfo.source", "pk": 10912, "fields": {"orig_filename": "Lattermann_Christoph_1753_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42", "author": "", "orig_id": 1412946}}, {"model": "metainfo.source", "pk": 10913, "fields": {"orig_filename": "Lattes_Elia_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42f.", "author": "", "orig_id": 1412947}}, {"model": "metainfo.source", "pk": 10914, "fields": {"orig_filename": "Latzel_Robert_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43", "author": "", "orig_id": 1412948}}, {"model": "metainfo.source", "pk": 10915, "fields": {"orig_filename": "Latzina_Francisco_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43", "author": "", "orig_id": 1412949}}, {"model": "metainfo.source", "pk": 10916, "fields": {"orig_filename": "Latzko_Adolph-Andreas_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43f.", "author": "", "orig_id": 1412950}}, {"model": "metainfo.source", "pk": 10917, "fields": {"orig_filename": "Latzko_Wilhelm_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44", "author": "", "orig_id": 1412951}}, {"model": "metainfo.source", "pk": 10918, "fields": {"orig_filename": "Laube_Gustav-Carl_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44f.", "author": "", "orig_id": 1412953}}, {"model": "metainfo.source", "pk": 10919, "fields": {"orig_filename": "Laube_Heinrich_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 45f.", "author": "", "orig_id": 1412954}}, {"model": "metainfo.source", "pk": 10920, "fields": {"orig_filename": "Laube_Iduna_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46", "author": "", "orig_id": 1412955}}, {"model": "metainfo.source", "pk": 10921, "fields": {"orig_filename": "Laube_Josef_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46", "author": "", "orig_id": 1412956}}, {"model": "metainfo.source", "pk": 10922, "fields": {"orig_filename": "Laubheimer_Otto_1882_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46f.", "author": "", "orig_id": 1412957}}, {"model": "metainfo.source", "pk": 10923, "fields": {"orig_filename": "Laub_Ferdinand_1832_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44", "author": "", "orig_id": 1412952}}, {"model": "metainfo.source", "pk": 10924, "fields": {"orig_filename": "Lauche_Wilhelm_1859_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 47", "author": "", "orig_id": 1412958}}, {"model": "metainfo.source", "pk": 10925, "fields": {"orig_filename": "Lauda_Ernst_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2082311}}, {"model": "metainfo.source", "pk": 10926, "fields": {"orig_filename": "Lauda_Richard_1873_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 47f.", "author": "", "orig_id": 1412959}}, {"model": "metainfo.source", "pk": 10927, "fields": {"orig_filename": "Laudi_Vitale_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48", "author": "", "orig_id": 1412960}}, {"model": "metainfo.source", "pk": 10928, "fields": {"orig_filename": "Lauer_Joseph_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48f.", "author": "", "orig_id": 1412962}}, {"model": "metainfo.source", "pk": 10929, "fields": {"orig_filename": "Laufberger_Ferdinand-Julius-Wilhelm_1829_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49", "author": "", "orig_id": 1413031}}, {"model": "metainfo.source", "pk": 10930, "fields": {"orig_filename": "Laufenauer_Karoly_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49", "author": "", "orig_id": 1413032}}, {"model": "metainfo.source", "pk": 10931, "fields": {"orig_filename": "Lauka_Gusztav_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49f.", "author": "", "orig_id": 1413033}}, {"model": "metainfo.source", "pk": 10932, "fields": {"orig_filename": "Laurencin-Darmond_Ferdinand-Peter_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413034}}, {"model": "metainfo.source", "pk": 10933, "fields": {"orig_filename": "Laurenzi_Ludwig_1788_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413035}}, {"model": "metainfo.source", "pk": 10934, "fields": {"orig_filename": "Laurin_Franz-Xaver_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413036}}, {"model": "metainfo.source", "pk": 10935, "fields": {"orig_filename": "Laurin_Giambattista_1793_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413037}}, {"model": "metainfo.source", "pk": 10936, "fields": {"orig_filename": "Laurin_Vaclav_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413038}}, {"model": "metainfo.source", "pk": 10937, "fields": {"orig_filename": "Lauska_Franz_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51f.", "author": "", "orig_id": 1413040}}, {"model": "metainfo.source", "pk": 10938, "fields": {"orig_filename": "Laus_Heinrich_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413039}}, {"model": "metainfo.source", "pk": 10939, "fields": {"orig_filename": "Lautenburg_Sigmund_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413041}}, {"model": "metainfo.source", "pk": 10940, "fields": {"orig_filename": "Lauterer_Jakob_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413042}}, {"model": "metainfo.source", "pk": 10941, "fields": {"orig_filename": "Lauzil_Karl_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52f.", "author": "", "orig_id": 1413044}}, {"model": "metainfo.source", "pk": 10942, "fields": {"orig_filename": "Lauzi_Giovanni_1800_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413043}}, {"model": "metainfo.source", "pk": 10943, "fields": {"orig_filename": "Lavaggi_Gaspare_1849_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413045}}, {"model": "metainfo.source", "pk": 10944, "fields": {"orig_filename": "Lavotta_Jan_1764_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413047}}, {"model": "metainfo.source", "pk": 10945, "fields": {"orig_filename": "Lavric_Karel_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53f.", "author": "", "orig_id": 1413048}}, {"model": "metainfo.source", "pk": 10946, "fields": {"orig_filename": "Landriani_Giuseppe_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415316}}, {"model": "metainfo.source", "pk": 10947, "fields": {"orig_filename": "Landriani_Paolo_1757_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415317}}, {"model": "metainfo.source", "pk": 10948, "fields": {"orig_filename": "Landsberger-Freideck_Adolf_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432f.", "author": "", "orig_id": 1415318}}, {"model": "metainfo.source", "pk": 10949, "fields": {"orig_filename": "Landsteiner_Karl-Borr_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 434f.", "author": "", "orig_id": 1415389}}, {"model": "metainfo.source", "pk": 10950, "fields": {"orig_filename": "Landsteiner_Karl_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 433f.", "author": "", "orig_id": 1415319}}, {"model": "metainfo.source", "pk": 10951, "fields": {"orig_filename": "Landwehr-Pragenau_Ottokar_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 435", "author": "", "orig_id": 1415390}}, {"model": "metainfo.source", "pk": 10952, "fields": {"orig_filename": "Landy_Friedrich-Ludwig_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 435f.", "author": "", "orig_id": 1415391}}, {"model": "metainfo.source", "pk": 10953, "fields": {"orig_filename": "Laner-Orsova_Victor_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415394}}, {"model": "metainfo.source", "pk": 10954, "fields": {"orig_filename": "Laner_Albino_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415392}}, {"model": "metainfo.source", "pk": 10955, "fields": {"orig_filename": "Laner_Georg_1778_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415393}}, {"model": "metainfo.source", "pk": 10956, "fields": {"orig_filename": "Lanfranchi_Luigi_1782_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436f.", "author": "", "orig_id": 1415395}}, {"model": "metainfo.source", "pk": 10957, "fields": {"orig_filename": "Lanfranconi_Enea-Grazioso_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437", "author": "", "orig_id": 1415396}}, {"model": "metainfo.source", "pk": 10958, "fields": {"orig_filename": "Lanfrey_Anton_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437", "author": "", "orig_id": 1415397}}, {"model": "metainfo.source", "pk": 10959, "fields": {"orig_filename": "Lang-Csanakfalva_Lajos_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 445", "author": "", "orig_id": 1415488}}, {"model": "metainfo.source", "pk": 10960, "fields": {"orig_filename": "Lang-Hanstadt_Johannes-Nep_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 445f.", "author": "", "orig_id": 1415489}}, {"model": "metainfo.source", "pk": 10961, "fields": {"orig_filename": "Langauer_Franz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446", "author": "", "orig_id": 1415490}}, {"model": "metainfo.source", "pk": 10962, "fields": {"orig_filename": "Lange-Burgenkron_Emil_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413837}}, {"model": "metainfo.source", "pk": 10963, "fields": {"orig_filename": "Lange-Burgenkron_Peter-Traugott_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413838}}, {"model": "metainfo.source", "pk": 10964, "fields": {"orig_filename": "Langenau_Eduard-George-Wilhelm_1787_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413839}}, {"model": "metainfo.source", "pk": 10965, "fields": {"orig_filename": "Langenau_Ferdinand_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1f.", "author": "", "orig_id": 1413840}}, {"model": "metainfo.source", "pk": 10966, "fields": {"orig_filename": "Langenau_Friedrich-Karl-Gustav_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2", "author": "", "orig_id": 1412479}}, {"model": "metainfo.source", "pk": 10967, "fields": {"orig_filename": "Langenbacher_Ferdinand_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2", "author": "", "orig_id": 1412480}}, {"model": "metainfo.source", "pk": 10968, "fields": {"orig_filename": "Langenbacher_Johann_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2f.", "author": "", "orig_id": 1412481}}, {"model": "metainfo.source", "pk": 10969, "fields": {"orig_filename": "Langer-Edenberg_Karl_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 8", "author": "", "orig_id": 1412496}}, {"model": "metainfo.source", "pk": 10970, "fields": {"orig_filename": "Langer-Koningshoykt_Albert_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 8f.", "author": "", "orig_id": 1412497}}, {"model": "metainfo.source", "pk": 10971, "fields": {"orig_filename": "Langer-Langenrode_Hermann_1875_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412498}}, {"model": "metainfo.source", "pk": 10972, "fields": {"orig_filename": "Langer-Lannsperg_Carl-Edmund_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412499}}, {"model": "metainfo.source", "pk": 10973, "fields": {"orig_filename": "Langer_Angela_1886_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 3", "author": "", "orig_id": 1412482}}, {"model": "metainfo.source", "pk": 10974, "fields": {"orig_filename": "Langer_Anton_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 3f.", "author": "", "orig_id": 1412483}}, {"model": "metainfo.source", "pk": 10975, "fields": {"orig_filename": "Langer_Eduard_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 4", "author": "", "orig_id": 1412484}}, {"model": "metainfo.source", "pk": 10976, "fields": {"orig_filename": "Langer_Jiri_1894_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 4f.", "author": "", "orig_id": 1412485}}, {"model": "metainfo.source", "pk": 10977, "fields": {"orig_filename": "Langer_Johann_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5", "author": "", "orig_id": 1412486}}, {"model": "metainfo.source", "pk": 10978, "fields": {"orig_filename": "Langer_Johann_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5", "author": "", "orig_id": 1412487}}, {"model": "metainfo.source", "pk": 10979, "fields": {"orig_filename": "Langer_Josef-Jaroslav_1806_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6", "author": "", "orig_id": 1412489}}, {"model": "metainfo.source", "pk": 10980, "fields": {"orig_filename": "Langer_Josef_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5f.", "author": "", "orig_id": 1412488}}, {"model": "metainfo.source", "pk": 10981, "fields": {"orig_filename": "Langer_Karl_1863_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6", "author": "", "orig_id": 1412490}}, {"model": "metainfo.source", "pk": 10982, "fields": {"orig_filename": "Langer_Robert_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6f.", "author": "", "orig_id": 1412493}}, {"model": "metainfo.source", "pk": 10983, "fields": {"orig_filename": "Langer_Rudolf_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412491}}, {"model": "metainfo.source", "pk": 10984, "fields": {"orig_filename": "Langer_Siegfried_1857_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412492}}, {"model": "metainfo.source", "pk": 10985, "fields": {"orig_filename": "Langer_Theodor_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412494}}, {"model": "metainfo.source", "pk": 10986, "fields": {"orig_filename": "Langer_Theodor_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7f.", "author": "", "orig_id": 1412495}}, {"model": "metainfo.source", "pk": 10987, "fields": {"orig_filename": "Lange_Aloysia-Maria-Antonia_1758_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446", "author": "", "orig_id": 1415491}}, {"model": "metainfo.source", "pk": 10988, "fields": {"orig_filename": "Lange_Antoni_1779_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446f.", "author": "", "orig_id": 1415492}}, {"model": "metainfo.source", "pk": 10989, "fields": {"orig_filename": "Lange_Conrad_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447", "author": "", "orig_id": 1415493}}, {"model": "metainfo.source", "pk": 10990, "fields": {"orig_filename": "Lange_Fritz_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447", "author": "", "orig_id": 1415494}}, {"model": "metainfo.source", "pk": 10991, "fields": {"orig_filename": "Lange_Joseph_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447f.", "author": "", "orig_id": 1415495}}, {"model": "metainfo.source", "pk": 10992, "fields": {"orig_filename": "Lange_Otto_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415496}}, {"model": "metainfo.source", "pk": 10993, "fields": {"orig_filename": "Lange_Paul_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415497}}, {"model": "metainfo.source", "pk": 10994, "fields": {"orig_filename": "Lange_Wilhelm_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415498}}, {"model": "metainfo.source", "pk": 10995, "fields": {"orig_filename": "Langhoffer_August_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9f.", "author": "", "orig_id": 1412573}}, {"model": "metainfo.source", "pk": 10996, "fields": {"orig_filename": "Langhy_Istvan_1796_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10", "author": "", "orig_id": 1412574}}, {"model": "metainfo.source", "pk": 10997, "fields": {"orig_filename": "Langh_Boldizsar_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412572}}, {"model": "metainfo.source", "pk": 10998, "fields": {"orig_filename": "Langkammer_Karl_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10", "author": "", "orig_id": 1412575}}, {"model": "metainfo.source", "pk": 10999, "fields": {"orig_filename": "Langkammer_Marianna-Margaretha_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10f.", "author": "", "orig_id": 1412576}}, {"model": "metainfo.source", "pk": 11000, "fields": {"orig_filename": "Langl_Joseph_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 11", "author": "", "orig_id": 1412577}}, {"model": "metainfo.source", "pk": 11001, "fields": {"orig_filename": "Langmann_Philipp_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 11f.", "author": "", "orig_id": 1412578}}, {"model": "metainfo.source", "pk": 11002, "fields": {"orig_filename": "Langner_Karl_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412579}}, {"model": "metainfo.source", "pk": 11003, "fields": {"orig_filename": "Langthaler_Franz_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412580}}, {"model": "metainfo.source", "pk": 11004, "fields": {"orig_filename": "Langthaler_Johann-Bapt_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412581}}, {"model": "metainfo.source", "pk": 11005, "fields": {"orig_filename": "Langthaler_Matthias_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412582}}, {"model": "metainfo.source", "pk": 11006, "fields": {"orig_filename": "Langus_Henrika_1836_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412583}}, {"model": "metainfo.source", "pk": 11007, "fields": {"orig_filename": "Langus_Matej_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412584}}, {"model": "metainfo.source", "pk": 11008, "fields": {"orig_filename": "Langweil_Antonin_1791_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412585}}, {"model": "metainfo.source", "pk": 11009, "fields": {"orig_filename": "Lang_Adam-Janos_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437f.", "author": "", "orig_id": 1415398}}, {"model": "metainfo.source", "pk": 11010, "fields": {"orig_filename": "Lang_Adolf-Ferenc_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 438f.", "author": "", "orig_id": 1415400}}, {"model": "metainfo.source", "pk": 11011, "fields": {"orig_filename": "Lang_Adolf_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 438", "author": "", "orig_id": 1415399}}, {"model": "metainfo.source", "pk": 11012, "fields": {"orig_filename": "Lang_Alois_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 439", "author": "", "orig_id": 1415401}}, {"model": "metainfo.source", "pk": 11013, "fields": {"orig_filename": "Lang_Eduard_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 439f.", "author": "", "orig_id": 1415402}}, {"model": "metainfo.source", "pk": 11014, "fields": {"orig_filename": "Lang_Ella_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415403}}, {"model": "metainfo.source", "pk": 11015, "fields": {"orig_filename": "Lang_Franz-Xaver_1770_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415405}}, {"model": "metainfo.source", "pk": 11016, "fields": {"orig_filename": "Lang_Franz_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415404}}, {"model": "metainfo.source", "pk": 11017, "fields": {"orig_filename": "Lang_Gustav-Johann_1838_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415406}}, {"model": "metainfo.source", "pk": 11018, "fields": {"orig_filename": "Lang_Heinrich_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440f.", "author": "", "orig_id": 1415407}}, {"model": "metainfo.source", "pk": 11019, "fields": {"orig_filename": "Lang_Ignaz-Gabriel_1768_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415408}}, {"model": "metainfo.source", "pk": 11020, "fields": {"orig_filename": "Lang_Johann-Bapt-Fortunat_1775_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415411}}, {"model": "metainfo.source", "pk": 11021, "fields": {"orig_filename": "Lang_Johann-Bapt_1736_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415409}}, {"model": "metainfo.source", "pk": 11022, "fields": {"orig_filename": "Lang_Johann-Bapt_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415410}}, {"model": "metainfo.source", "pk": 11023, "fields": {"orig_filename": "Lang_Josef-Nikolaus_1776_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415412}}, {"model": "metainfo.source", "pk": 11024, "fields": {"orig_filename": "Lang_Josip_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415413}}, {"model": "metainfo.source", "pk": 11025, "fields": {"orig_filename": "Lang_Karl-Maria_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442f.", "author": "", "orig_id": 1415414}}, {"model": "metainfo.source", "pk": 11026, "fields": {"orig_filename": "Lang_Leonhard_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 443", "author": "", "orig_id": 1415485}}, {"model": "metainfo.source", "pk": 11027, "fields": {"orig_filename": "Lang_Marie_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 443f.", "author": "", "orig_id": 1415486}}, {"model": "metainfo.source", "pk": 11028, "fields": {"orig_filename": "Lang_Victor_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 444f.", "author": "", "orig_id": 1415487}}, {"model": "metainfo.source", "pk": 11029, "fields": {"orig_filename": "Lanius_Frida_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13f.", "author": "", "orig_id": 1412586}}, {"model": "metainfo.source", "pk": 11030, "fields": {"orig_filename": "Lanjus-Wellenburg_Friedrich_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14", "author": "", "orig_id": 1412587}}, {"model": "metainfo.source", "pk": 11031, "fields": {"orig_filename": "Lanjus-Wellenburg_Karl_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14", "author": "", "orig_id": 1412588}}, {"model": "metainfo.source", "pk": 11032, "fields": {"orig_filename": "Lanna_Adalbert_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14f.", "author": "", "orig_id": 1412589}}, {"model": "metainfo.source", "pk": 11033, "fields": {"orig_filename": "Lanner_Alois_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 15", "author": "", "orig_id": 1412590}}, {"model": "metainfo.source", "pk": 11034, "fields": {"orig_filename": "Lanner_Joseph_1801_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 15f.", "author": "", "orig_id": 1412591}}, {"model": "metainfo.source", "pk": 11035, "fields": {"orig_filename": "Lanner_Katharina_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 16", "author": "", "orig_id": 1412592}}, {"model": "metainfo.source", "pk": 11036, "fields": {"orig_filename": "Lanner_Thaddaeus_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 16f.", "author": "", "orig_id": 1412593}}, {"model": "metainfo.source", "pk": 11037, "fields": {"orig_filename": "Lannoy_Heinrich-Eduard-Josef_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 17", "author": "", "orig_id": 1412659}}, {"model": "metainfo.source", "pk": 11038, "fields": {"orig_filename": "Lanstjak_Pavel-Ferdinand_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 17f.", "author": "", "orig_id": 1412660}}, {"model": "metainfo.source", "pk": 11039, "fields": {"orig_filename": "Lantana_Giovanni-Battista_1793_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412661}}, {"model": "metainfo.source", "pk": 11040, "fields": {"orig_filename": "Lantner_Ferdinand_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412662}}, {"model": "metainfo.source", "pk": 11041, "fields": {"orig_filename": "Lantschner_Anton_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412663}}, {"model": "metainfo.source", "pk": 11042, "fields": {"orig_filename": "Lantschner_Georg_1772_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18f.", "author": "", "orig_id": 1412664}}, {"model": "metainfo.source", "pk": 11043, "fields": {"orig_filename": "Lantschner_Ludwig_1826_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412665}}, {"model": "metainfo.source", "pk": 11044, "fields": {"orig_filename": "Lanyi_Bertalan_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20", "author": "", "orig_id": 1412669}}, {"model": "metainfo.source", "pk": 11045, "fields": {"orig_filename": "Lanyi_Karol_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20", "author": "", "orig_id": 1412670}}, {"model": "metainfo.source", "pk": 11046, "fields": {"orig_filename": "Lanyi_Samuel_1791_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20f.", "author": "", "orig_id": 1412671}}, {"model": "metainfo.source", "pk": 11047, "fields": {"orig_filename": "Lany_Emil-Pavel_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412666}}, {"model": "metainfo.source", "pk": 11048, "fields": {"orig_filename": "Laemel_Simon_1766_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416396}}, {"model": "metainfo.source", "pk": 11049, "fields": {"orig_filename": "Laemmermayr_Ludwig_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401f.", "author": "", "orig_id": 1416397}}, {"model": "metainfo.source", "pk": 11050, "fields": {"orig_filename": "Lafar_Franz_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402", "author": "", "orig_id": 1416398}}, {"model": "metainfo.source", "pk": 11051, "fields": {"orig_filename": "Lafite_Carl_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402", "author": "", "orig_id": 1416399}}, {"model": "metainfo.source", "pk": 11052, "fields": {"orig_filename": "Lafite_Carl_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402f.", "author": "", "orig_id": 1416400}}, {"model": "metainfo.source", "pk": 11053, "fields": {"orig_filename": "Lafite_Ernst_1826_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403", "author": "", "orig_id": 1416401}}, {"model": "metainfo.source", "pk": 11054, "fields": {"orig_filename": "Laginja_Matko_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403", "author": "", "orig_id": 1416402}}, {"model": "metainfo.source", "pk": 11055, "fields": {"orig_filename": "Lahmer_Robert-Johann_1846_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416404}}, {"model": "metainfo.source", "pk": 11056, "fields": {"orig_filename": "Lahner_Gyoergy_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416475}}, {"model": "metainfo.source", "pk": 11057, "fields": {"orig_filename": "Lahner_Johann-Georg_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416476}}, {"model": "metainfo.source", "pk": 11058, "fields": {"orig_filename": "Lahner_Karl_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416477}}, {"model": "metainfo.source", "pk": 11059, "fields": {"orig_filename": "Lah_Ivan_1881_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403f.", "author": "", "orig_id": 1416403}}, {"model": "metainfo.source", "pk": 11060, "fields": {"orig_filename": "Laichter_Jan_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404f.", "author": "", "orig_id": 1416478}}, {"model": "metainfo.source", "pk": 11061, "fields": {"orig_filename": "Laichter_Josef_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405", "author": "", "orig_id": 1419389}}, {"model": "metainfo.source", "pk": 11062, "fields": {"orig_filename": "Laimegger_Josef_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405", "author": "", "orig_id": 1416479}}, {"model": "metainfo.source", "pk": 11063, "fields": {"orig_filename": "Laimer_Josef_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405f.", "author": "", "orig_id": 1416480}}, {"model": "metainfo.source", "pk": 11064, "fields": {"orig_filename": "Lainer_Alexander_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406", "author": "", "orig_id": 1416481}}, {"model": "metainfo.source", "pk": 11065, "fields": {"orig_filename": "Lair_Franz-Xaver_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406", "author": "", "orig_id": 1416482}}, {"model": "metainfo.source", "pk": 11066, "fields": {"orig_filename": "Laitner_Paul_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406f.", "author": "", "orig_id": 1416483}}, {"model": "metainfo.source", "pk": 11067, "fields": {"orig_filename": "Laizner_Josef_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416484}}, {"model": "metainfo.source", "pk": 11068, "fields": {"orig_filename": "Lakatos_Karoly_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416485}}, {"model": "metainfo.source", "pk": 11069, "fields": {"orig_filename": "Lakatos_Sandor_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416486}}, {"model": "metainfo.source", "pk": 11070, "fields": {"orig_filename": "Lakits_Ferenc_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416487}}, {"model": "metainfo.source", "pk": 11071, "fields": {"orig_filename": "Lakits_Juraj-Zigmund_1739_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407f.", "author": "", "orig_id": 1416488}}, {"model": "metainfo.source", "pk": 11072, "fields": {"orig_filename": "Laky_Janos-Demeter_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416489}}, {"model": "metainfo.source", "pk": 11073, "fields": {"orig_filename": "Lalic_Nikola_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416490}}, {"model": "metainfo.source", "pk": 11074, "fields": {"orig_filename": "Lallemand_Friedrich_1812_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416491}}, {"model": "metainfo.source", "pk": 11075, "fields": {"orig_filename": "Lallemand_Marcus-Conrad_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408f.", "author": "", "orig_id": 1416492}}, {"model": "metainfo.source", "pk": 11076, "fields": {"orig_filename": "Lallemand_Siegmund_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409", "author": "", "orig_id": 1416493}}, {"model": "metainfo.source", "pk": 11077, "fields": {"orig_filename": "Lamatsch-Warnemuende_Paul_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410", "author": "", "orig_id": 1416497}}, {"model": "metainfo.source", "pk": 11078, "fields": {"orig_filename": "Lamatsch_Johann_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410", "author": "", "orig_id": 1416496}}, {"model": "metainfo.source", "pk": 11079, "fields": {"orig_filename": "Lama_Matthias_1780_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409f.", "author": "", "orig_id": 1416495}}, {"model": "metainfo.source", "pk": 11080, "fields": {"orig_filename": "Lambel_Hans_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410f.", "author": "", "orig_id": 1416498}}, {"model": "metainfo.source", "pk": 11081, "fields": {"orig_filename": "Lamberg-Sprinzenstein_Anton-Franz-De-Paula_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412", "author": "", "orig_id": 1416569}}, {"model": "metainfo.source", "pk": 11082, "fields": {"orig_filename": "Lamberg_Carl-Raimund_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416499}}, {"model": "metainfo.source", "pk": 11083, "fields": {"orig_filename": "Lamberg_Franz-Emerich_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416567}}, {"model": "metainfo.source", "pk": 11084, "fields": {"orig_filename": "Lamberg_Hugo-Raimund_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416568}}, {"model": "metainfo.source", "pk": 11085, "fields": {"orig_filename": "Lamberti_Camille-Joseph_1747_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412f.", "author": "", "orig_id": 1416571}}, {"model": "metainfo.source", "pk": 11086, "fields": {"orig_filename": "Lamberti_Giacomo_1762_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413", "author": "", "orig_id": 1416572}}, {"model": "metainfo.source", "pk": 11087, "fields": {"orig_filename": "Lamberti_Luigi_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413", "author": "", "orig_id": 1416573}}, {"model": "metainfo.source", "pk": 11088, "fields": {"orig_filename": "Lambertz_Maximilian_1882_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1459440}}, {"model": "metainfo.source", "pk": 11089, "fields": {"orig_filename": "Lambert_Adam_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412", "author": "", "orig_id": 1416570}}, {"model": "metainfo.source", "pk": 11090, "fields": {"orig_filename": "Lambl_Johann-Bapt_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413f.", "author": "", "orig_id": 1416574}}, {"model": "metainfo.source", "pk": 11091, "fields": {"orig_filename": "Lambl_Karl_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416575}}, {"model": "metainfo.source", "pk": 11092, "fields": {"orig_filename": "Lambl_Vilem-Dusan_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416576}}, {"model": "metainfo.source", "pk": 11093, "fields": {"orig_filename": "Lamborg_Otto_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416577}}, {"model": "metainfo.source", "pk": 11094, "fields": {"orig_filename": "Lambrecht_Rudolf_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416578}}, {"model": "metainfo.source", "pk": 11095, "fields": {"orig_filename": "Lamezan-Salins_Eduard_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414f.", "author": "", "orig_id": 1416579}}, {"model": "metainfo.source", "pk": 11096, "fields": {"orig_filename": "Lamezan-Salins_Robert_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 415", "author": "", "orig_id": 1416580}}, {"model": "metainfo.source", "pk": 11097, "fields": {"orig_filename": "Lammasch_Heinrich_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 415f.", "author": "", "orig_id": 1416581}}, {"model": "metainfo.source", "pk": 11098, "fields": {"orig_filename": "Lammer_Eugen-Guido_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 416f.", "author": "", "orig_id": 1416583}}, {"model": "metainfo.source", "pk": 11099, "fields": {"orig_filename": "Lamotte-Frintropp_Franz_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 417", "author": "", "orig_id": 1416584}}, {"model": "metainfo.source", "pk": 11100, "fields": {"orig_filename": "Lampa_Anton_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 417f.", "author": "", "orig_id": 1416585}}, {"model": "metainfo.source", "pk": 11101, "fields": {"orig_filename": "Lampel_Josef_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418f.", "author": "", "orig_id": 1416587}}, {"model": "metainfo.source", "pk": 11102, "fields": {"orig_filename": "Lampertico_Fedele_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419", "author": "", "orig_id": 1416652}}, {"model": "metainfo.source", "pk": 11103, "fields": {"orig_filename": "Lampert_Carl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419", "author": "", "orig_id": 1416651}}, {"model": "metainfo.source", "pk": 11104, "fields": {"orig_filename": "Lampe_Evgen_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418", "author": "", "orig_id": 1416582}}, {"model": "metainfo.source", "pk": 11105, "fields": {"orig_filename": "Lampe_Francisek_1859_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418", "author": "", "orig_id": 1416586}}, {"model": "metainfo.source", "pk": 11106, "fields": {"orig_filename": "Lampi_Alexander_1810_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419f.", "author": "", "orig_id": 1416653}}, {"model": "metainfo.source", "pk": 11107, "fields": {"orig_filename": "Lampi_Franz-Ferdinand_1782_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 420", "author": "", "orig_id": 1416654}}, {"model": "metainfo.source", "pk": 11108, "fields": {"orig_filename": "Lampi_Johann-Bapt-Matthias_1807_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416657}}, {"model": "metainfo.source", "pk": 11109, "fields": {"orig_filename": "Lampi_Johann-Bapt_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 420", "author": "", "orig_id": 1416655}}, {"model": "metainfo.source", "pk": 11110, "fields": {"orig_filename": "Lampi_Johann-Bapt_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416656}}, {"model": "metainfo.source", "pk": 11111, "fields": {"orig_filename": "Lamprecht_Johann-Ev_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416658}}, {"model": "metainfo.source", "pk": 11112, "fields": {"orig_filename": "Lamprecht_Lukas_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421f.", "author": "", "orig_id": 1416659}}, {"model": "metainfo.source", "pk": 11113, "fields": {"orig_filename": "Lamprecht_Rudolf_1781_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416660}}, {"model": "metainfo.source", "pk": 11114, "fields": {"orig_filename": "Lampugnani_Achille_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416661}}, {"model": "metainfo.source", "pk": 11115, "fields": {"orig_filename": "Lampugnani_Alessandro__1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416662}}, {"model": "metainfo.source", "pk": 11116, "fields": {"orig_filename": "Lam_Jan-Pawel-Ferdynand_1838_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409", "author": "", "orig_id": 1416494}}, {"model": "metainfo.source", "pk": 11117, "fields": {"orig_filename": "Lancerotto_Egisto_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416663}}, {"model": "metainfo.source", "pk": 11118, "fields": {"orig_filename": "Lancetti_Vincenzo_1767_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422f.", "author": "", "orig_id": 1416664}}, {"model": "metainfo.source", "pk": 11119, "fields": {"orig_filename": "Lanckoronski-Brzezie_Karl_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423", "author": "", "orig_id": 1416665}}, {"model": "metainfo.source", "pk": 11120, "fields": {"orig_filename": "Lanczy_Gyula_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423", "author": "", "orig_id": 1416666}}, {"model": "metainfo.source", "pk": 11121, "fields": {"orig_filename": "Lanczy_Ilka_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423f.", "author": "", "orig_id": 1416667}}, {"model": "metainfo.source", "pk": 11122, "fields": {"orig_filename": "Lanczy_Leo_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416668}}, {"model": "metainfo.source", "pk": 11123, "fields": {"orig_filename": "Landauer_Robert_1908_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427", "author": "", "orig_id": 1415300}}, {"model": "metainfo.source", "pk": 11124, "fields": {"orig_filename": "Landauer_Stephan_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427f.", "author": "", "orig_id": 1415301}}, {"model": "metainfo.source", "pk": 11125, "fields": {"orig_filename": "Landau_Alajos_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416669}}, {"model": "metainfo.source", "pk": 11126, "fields": {"orig_filename": "Landau_Alfred_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416670}}, {"model": "metainfo.source", "pk": 11127, "fields": {"orig_filename": "Landau_Hermann-Joseph_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424f.", "author": "", "orig_id": 1416671}}, {"model": "metainfo.source", "pk": 11128, "fields": {"orig_filename": "Landau_Israel_1758_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416672}}, {"model": "metainfo.source", "pk": 11129, "fields": {"orig_filename": "Landau_Jehuda-Leib_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416673}}, {"model": "metainfo.source", "pk": 11130, "fields": {"orig_filename": "Landau_Jehuda-Menachem_1861_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416674}}, {"model": "metainfo.source", "pk": 11131, "fields": {"orig_filename": "Landau_Leopold_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415296}}, {"model": "metainfo.source", "pk": 11132, "fields": {"orig_filename": "Landau_Leo_1877_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425f.", "author": "", "orig_id": 1416675}}, {"model": "metainfo.source", "pk": 11133, "fields": {"orig_filename": "Landau_Leo_1878_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415295}}, {"model": "metainfo.source", "pk": 11134, "fields": {"orig_filename": "Landau_Leo_1891_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1459628}}, {"model": "metainfo.source", "pk": 11135, "fields": {"orig_filename": "Landau_Markus_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415297}}, {"model": "metainfo.source", "pk": 11136, "fields": {"orig_filename": "Landau_Max_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426f.", "author": "", "orig_id": 1415298}}, {"model": "metainfo.source", "pk": 11137, "fields": {"orig_filename": "Landau_Max_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427", "author": "", "orig_id": 1415299}}, {"model": "metainfo.source", "pk": 11138, "fields": {"orig_filename": "Landerer-Fueskut_Lajos_1800_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415302}}, {"model": "metainfo.source", "pk": 11139, "fields": {"orig_filename": "Landesberger_Adolf_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415304}}, {"model": "metainfo.source", "pk": 11140, "fields": {"orig_filename": "Landesberg_Alexander_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415303}}, {"model": "metainfo.source", "pk": 11141, "fields": {"orig_filename": "Landesmann_Heinrich_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428f.", "author": "", "orig_id": 1415305}}, {"model": "metainfo.source", "pk": 11142, "fields": {"orig_filename": "Landfras_Alois-Josef_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 429f.", "author": "", "orig_id": 1415306}}, {"model": "metainfo.source", "pk": 11143, "fields": {"orig_filename": "Landi-Pindemonte_Isotta_1750_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430", "author": "", "orig_id": 1415307}}, {"model": "metainfo.source", "pk": 11144, "fields": {"orig_filename": "Landler_Jenoe_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430", "author": "", "orig_id": 1415308}}, {"model": "metainfo.source", "pk": 11145, "fields": {"orig_filename": "Landmann_Julius_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430f.", "author": "", "orig_id": 1415309}}, {"model": "metainfo.source", "pk": 11146, "fields": {"orig_filename": "Landner_Johann-Bapt_1780_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415310}}, {"model": "metainfo.source", "pk": 11147, "fields": {"orig_filename": "Landner_Josef_1883_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415311}}, {"model": "metainfo.source", "pk": 11148, "fields": {"orig_filename": "Landriani_Alessandro_1856_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415312}}, {"model": "metainfo.source", "pk": 11149, "fields": {"orig_filename": "Landriani_Carlo_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431f.", "author": "", "orig_id": 1415313}}, {"model": "metainfo.source", "pk": 11150, "fields": {"orig_filename": "Landriani_Carlo_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415314}}, {"model": "metainfo.source", "pk": 11151, "fields": {"orig_filename": "Landriani_Gaetano_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415315}}, {"model": "metainfo.source", "pk": 11152, "fields": {"orig_filename": "Kurzbauer_Josefine_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416021}}, {"model": "metainfo.source", "pk": 11153, "fields": {"orig_filename": "Kurzova_Ruzena_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416022}}, {"model": "metainfo.source", "pk": 11154, "fields": {"orig_filename": "Kurzweil_Max_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369f.", "author": "", "orig_id": 1416023}}, {"model": "metainfo.source", "pk": 11155, "fields": {"orig_filename": "Kurzwernhart_Robert_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370", "author": "", "orig_id": 1416024}}, {"model": "metainfo.source", "pk": 11156, "fields": {"orig_filename": "Kurz_Anton_1799_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 366", "author": "", "orig_id": 1415942}}, {"model": "metainfo.source", "pk": 11157, "fields": {"orig_filename": "Kurz_Franz_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 366", "author": "", "orig_id": 1415943}}, {"model": "metainfo.source", "pk": 11158, "fields": {"orig_filename": "Kurz_Karl-Friedrich_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367", "author": "", "orig_id": 1415944}}, {"model": "metainfo.source", "pk": 11159, "fields": {"orig_filename": "Kurz_Selma_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367", "author": "", "orig_id": 1416014}}, {"model": "metainfo.source", "pk": 11160, "fields": {"orig_filename": "Kurz_Vilem_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367f.", "author": "", "orig_id": 1416015}}, {"model": "metainfo.source", "pk": 11161, "fields": {"orig_filename": "Kusar_Marcel_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370", "author": "", "orig_id": 1416025}}, {"model": "metainfo.source", "pk": 11162, "fields": {"orig_filename": "Kuschar_Rudolf_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370f.", "author": "", "orig_id": 1416026}}, {"model": "metainfo.source", "pk": 11163, "fields": {"orig_filename": "Kusdas_Rudolf_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371", "author": "", "orig_id": 1416027}}, {"model": "metainfo.source", "pk": 11164, "fields": {"orig_filename": "Kusej_Radoslav_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371", "author": "", "orig_id": 1416028}}, {"model": "metainfo.source", "pk": 11165, "fields": {"orig_filename": "Kuslan_Dragojlo_1817_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371f.", "author": "", "orig_id": 1416029}}, {"model": "metainfo.source", "pk": 11166, "fields": {"orig_filename": "Kusmanek-Burgneustaedten_Hermann_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372", "author": "", "orig_id": 1416030}}, {"model": "metainfo.source", "pk": 11167, "fields": {"orig_filename": "Kuster_Josef_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372", "author": "", "orig_id": 1416031}}, {"model": "metainfo.source", "pk": 11168, "fields": {"orig_filename": "Kusy-Dubrav_Emanuel_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373", "author": "", "orig_id": 1416033}}, {"model": "metainfo.source", "pk": 11169, "fields": {"orig_filename": "Kusy_Wolfgang_1842_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372f.", "author": "", "orig_id": 1416032}}, {"model": "metainfo.source", "pk": 11170, "fields": {"orig_filename": "Kuthy_Lajos_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373", "author": "", "orig_id": 1416034}}, {"model": "metainfo.source", "pk": 11171, "fields": {"orig_filename": "Kutiak_August-Ignaz_1881_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373f.", "author": "", "orig_id": 1416035}}, {"model": "metainfo.source", "pk": 11172, "fields": {"orig_filename": "Kutrzeba_Stanislaw_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374", "author": "", "orig_id": 1416036}}, {"model": "metainfo.source", "pk": 11173, "fields": {"orig_filename": "Kutscha-Lissberg_Ida_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374", "author": "", "orig_id": 1416037}}, {"model": "metainfo.source", "pk": 11174, "fields": {"orig_filename": "Kutschera-Woborsky_Oswald_1887_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 376", "author": "", "orig_id": 1416114}}, {"model": "metainfo.source", "pk": 11175, "fields": {"orig_filename": "Kutschera_Fritz_1883_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374f.", "author": "", "orig_id": 1416108}}, {"model": "metainfo.source", "pk": 11176, "fields": {"orig_filename": "Kutschera_Hugo_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416109}}, {"model": "metainfo.source", "pk": 11177, "fields": {"orig_filename": "Kutschera_Johann-Nep_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416110}}, {"model": "metainfo.source", "pk": 11178, "fields": {"orig_filename": "Kutschera_Richard_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416111}}, {"model": "metainfo.source", "pk": 11179, "fields": {"orig_filename": "Kutschera_Tilly_1890_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416112}}, {"model": "metainfo.source", "pk": 11180, "fields": {"orig_filename": "Kutschera_Viktor_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375f.", "author": "", "orig_id": 1416113}}, {"model": "metainfo.source", "pk": 11181, "fields": {"orig_filename": "Kutschker_Johann-Rudolf_1810_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 376f.", "author": "", "orig_id": 1416115}}, {"model": "metainfo.source", "pk": 11182, "fields": {"orig_filename": "Kuttnar_Franz-Xaver_1793_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416116}}, {"model": "metainfo.source", "pk": 11183, "fields": {"orig_filename": "Kuun-Osdola_Geza_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416117}}, {"model": "metainfo.source", "pk": 11184, "fields": {"orig_filename": "Kuun-Osdola_Kocsard_1803_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416118}}, {"model": "metainfo.source", "pk": 11185, "fields": {"orig_filename": "Kuwasseg_Josef_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377f.", "author": "", "orig_id": 1416119}}, {"model": "metainfo.source", "pk": 11186, "fields": {"orig_filename": "Kuwasseg_Karl-Josef_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378", "author": "", "orig_id": 1416120}}, {"model": "metainfo.source", "pk": 11187, "fields": {"orig_filename": "Kuwasseg_Leopold_1804_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378", "author": "", "orig_id": 1416121}}, {"model": "metainfo.source", "pk": 11188, "fields": {"orig_filename": "Kux_Johann_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378f.", "author": "", "orig_id": 1416122}}, {"model": "metainfo.source", "pk": 11189, "fields": {"orig_filename": "Kuzel_Hans_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379", "author": "", "orig_id": 1416123}}, {"model": "metainfo.source", "pk": 11190, "fields": {"orig_filename": "Kuzmanic_Ante_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379f.", "author": "", "orig_id": 1416125}}, {"model": "metainfo.source", "pk": 11191, "fields": {"orig_filename": "Kuzmanovic_Adalbert_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380", "author": "", "orig_id": 1416126}}, {"model": "metainfo.source", "pk": 11192, "fields": {"orig_filename": "Kuzmany_Karol_1806_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380", "author": "", "orig_id": 1419388}}, {"model": "metainfo.source", "pk": 11193, "fields": {"orig_filename": "Kuzma_Bohumil_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379", "author": "", "orig_id": 1416124}}, {"model": "metainfo.source", "pk": 11194, "fields": {"orig_filename": "Kuzmik_Pal_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380f.", "author": "", "orig_id": 1416127}}, {"model": "metainfo.source", "pk": 11195, "fields": {"orig_filename": "Kuzsinszky_Balint_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416128}}, {"model": "metainfo.source", "pk": 11196, "fields": {"orig_filename": "Kvacala_Jan_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416129}}, {"model": "metainfo.source", "pk": 11197, "fields": {"orig_filename": "Kvapil_Frantisek_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416198}}, {"model": "metainfo.source", "pk": 11198, "fields": {"orig_filename": "Kvapil_Jaroslav_1868_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381f.", "author": "", "orig_id": 1416199}}, {"model": "metainfo.source", "pk": 11199, "fields": {"orig_filename": "Kvassay_Jenoe_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 382f.", "author": "", "orig_id": 1416200}}, {"model": "metainfo.source", "pk": 11200, "fields": {"orig_filename": "Kvaternik_Eugen_1825_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 383", "author": "", "orig_id": 1416201}}, {"model": "metainfo.source", "pk": 11201, "fields": {"orig_filename": "Kvaternik_Slavko_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 383f.", "author": "", "orig_id": 1416202}}, {"model": "metainfo.source", "pk": 11202, "fields": {"orig_filename": "Kveder_Zofka_1878_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 384", "author": "", "orig_id": 1416203}}, {"model": "metainfo.source", "pk": 11203, "fields": {"orig_filename": "Kvet_Frantisek-Bolemir_1825_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 384", "author": "", "orig_id": 1416204}}, {"model": "metainfo.source", "pk": 11204, "fields": {"orig_filename": "Kvicala_Jan_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385", "author": "", "orig_id": 1416205}}, {"model": "metainfo.source", "pk": 11205, "fields": {"orig_filename": "Kwapil_Johann_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385", "author": "", "orig_id": 1416206}}, {"model": "metainfo.source", "pk": 11206, "fields": {"orig_filename": "Kwaysser_Marie_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385f.", "author": "", "orig_id": 1416207}}, {"model": "metainfo.source", "pk": 11207, "fields": {"orig_filename": "Kwietniewski_Kazimierz_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416208}}, {"model": "metainfo.source", "pk": 11208, "fields": {"orig_filename": "Kwisda_Adolf_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416209}}, {"model": "metainfo.source", "pk": 11209, "fields": {"orig_filename": "Kwisda_Ferdinand_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416210}}, {"model": "metainfo.source", "pk": 11210, "fields": {"orig_filename": "Kwizda-Hochstern_Franz-Johann_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386f.", "author": "", "orig_id": 1416211}}, {"model": "metainfo.source", "pk": 11211, "fields": {"orig_filename": "Kypta_Johann_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 387", "author": "", "orig_id": 1416212}}, {"model": "metainfo.source", "pk": 11212, "fields": {"orig_filename": "Kyrle_Georg_1887_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 387f.", "author": "", "orig_id": 1416213}}, {"model": "metainfo.source", "pk": 11213, "fields": {"orig_filename": "Kyrle_Josef_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 388", "author": "", "orig_id": 1416214}}, {"model": "metainfo.source", "pk": 11214, "fields": {"orig_filename": "Kyselak_Joseph_1799_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389", "author": "", "orig_id": 1416216}}, {"model": "metainfo.source", "pk": 11215, "fields": {"orig_filename": "Kysela_Frantisek_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 388f.", "author": "", "orig_id": 1416215}}, {"model": "metainfo.source", "pk": 11216, "fields": {"orig_filename": "Laaba-Rosenfeld_Menrad_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389", "author": "", "orig_id": 1416217}}, {"model": "metainfo.source", "pk": 11217, "fields": {"orig_filename": "Laban_Ferdinand_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389f.", "author": "", "orig_id": 1416218}}, {"model": "metainfo.source", "pk": 11218, "fields": {"orig_filename": "Labitzky_August_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 390", "author": "", "orig_id": 1416219}}, {"model": "metainfo.source", "pk": 11219, "fields": {"orig_filename": "Labitzky_Frantisek-Josef_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 390f.", "author": "", "orig_id": 1416287}}, {"model": "metainfo.source", "pk": 11220, "fields": {"orig_filename": "Labler_Ludvik_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416288}}, {"model": "metainfo.source", "pk": 11221, "fields": {"orig_filename": "Labler_Wladimir_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416289}}, {"model": "metainfo.source", "pk": 11222, "fields": {"orig_filename": "Laborfalvy_Roza_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391f.", "author": "", "orig_id": 1416291}}, {"model": "metainfo.source", "pk": 11223, "fields": {"orig_filename": "Labor_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416290}}, {"model": "metainfo.source", "pk": 11224, "fields": {"orig_filename": "Labus_Carlo_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416292}}, {"model": "metainfo.source", "pk": 11225, "fields": {"orig_filename": "Labus_Giovanni-Antonio_1806_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416294}}, {"model": "metainfo.source", "pk": 11226, "fields": {"orig_filename": "Labus_Giovanni_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416293}}, {"model": "metainfo.source", "pk": 11227, "fields": {"orig_filename": "Laccataris_Demeter_1798_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392f.", "author": "", "orig_id": 1416295}}, {"model": "metainfo.source", "pk": 11228, "fields": {"orig_filename": "Lacher_Karl_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393", "author": "", "orig_id": 1416297}}, {"model": "metainfo.source", "pk": 11229, "fields": {"orig_filename": "Lachmann_Friedrich_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393f.", "author": "", "orig_id": 1416298}}, {"model": "metainfo.source", "pk": 11230, "fields": {"orig_filename": "Lachmayr_Johann_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394", "author": "", "orig_id": 1416299}}, {"model": "metainfo.source", "pk": 11231, "fields": {"orig_filename": "Lachnith_Ludwig-Wenzel_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394", "author": "", "orig_id": 1416300}}, {"model": "metainfo.source", "pk": 11232, "fields": {"orig_filename": "Lachowicz_Bronislaw_1857_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394f.", "author": "", "orig_id": 1416301}}, {"model": "metainfo.source", "pk": 11233, "fields": {"orig_filename": "Lach_Friedrich_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393", "author": "", "orig_id": 1416296}}, {"model": "metainfo.source", "pk": 11234, "fields": {"orig_filename": "Lacina_Josef_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416302}}, {"model": "metainfo.source", "pk": 11235, "fields": {"orig_filename": "Lackner_Hans_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416304}}, {"model": "metainfo.source", "pk": 11236, "fields": {"orig_filename": "Lackner_Johann_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395f.", "author": "", "orig_id": 1416305}}, {"model": "metainfo.source", "pk": 11237, "fields": {"orig_filename": "Lack_Stanislaw_1876_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416303}}, {"model": "metainfo.source", "pk": 11238, "fields": {"orig_filename": "Laczai-Szabo_Jozsef_1764_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396", "author": "", "orig_id": 1416307}}, {"model": "metainfo.source", "pk": 11239, "fields": {"orig_filename": "Laczko_Dezsoe_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396", "author": "", "orig_id": 1416308}}, {"model": "metainfo.source", "pk": 11240, "fields": {"orig_filename": "Ladanyi_Gedeon_1824_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396f.", "author": "", "orig_id": 1416310}}, {"model": "metainfo.source", "pk": 11241, "fields": {"orig_filename": "Ladecky_Jan_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397", "author": "", "orig_id": 1416381}}, {"model": "metainfo.source", "pk": 11242, "fields": {"orig_filename": "Ladinig_Martin_1852_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397", "author": "", "orig_id": 1416382}}, {"model": "metainfo.source", "pk": 11243, "fields": {"orig_filename": "Ladnowski_Aleksander_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397f.", "author": "", "orig_id": 1416383}}, {"model": "metainfo.source", "pk": 11244, "fields": {"orig_filename": "Ladstaetter_Peter_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 398", "author": "", "orig_id": 1416384}}, {"model": "metainfo.source", "pk": 11245, "fields": {"orig_filename": "Ladstaetter_Peter_1816_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 398f.", "author": "", "orig_id": 1416385}}, {"model": "metainfo.source", "pk": 11246, "fields": {"orig_filename": "Ladurner_Adolf_1798_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416386}}, {"model": "metainfo.source", "pk": 11247, "fields": {"orig_filename": "Ladurner_Alois_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416387}}, {"model": "metainfo.source", "pk": 11248, "fields": {"orig_filename": "Ladurner_Anton_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416388}}, {"model": "metainfo.source", "pk": 11249, "fields": {"orig_filename": "Ladurner_Ignaz-Anton_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399f.", "author": "", "orig_id": 1416389}}, {"model": "metainfo.source", "pk": 11250, "fields": {"orig_filename": "Ladurner_Joseph-Alois_1769_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416390}}, {"model": "metainfo.source", "pk": 11251, "fields": {"orig_filename": "Ladurner_Joseph-Jacob_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416391}}, {"model": "metainfo.source", "pk": 11252, "fields": {"orig_filename": "Ladurner_Justinian_1808_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416392}}, {"model": "metainfo.source", "pk": 11253, "fields": {"orig_filename": "Ladurner_Matthias_1772_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400f.", "author": "", "orig_id": 1416393}}, {"model": "metainfo.source", "pk": 11254, "fields": {"orig_filename": "Ladziansky-Ledenyi_Julius_1903_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416394}}, {"model": "metainfo.source", "pk": 11255, "fields": {"orig_filename": "Laemel_Leopold_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416395}}, {"model": "metainfo.source", "pk": 11256, "fields": {"orig_filename": "Kuhn_Carl-Friedrich_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415571}}, {"model": "metainfo.source", "pk": 11257, "fields": {"orig_filename": "Kuhn_Dismas_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335f.", "author": "", "orig_id": 1415572}}, {"model": "metainfo.source", "pk": 11258, "fields": {"orig_filename": "Kuhn_Ernst_1859_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336", "author": "", "orig_id": 1415573}}, {"model": "metainfo.source", "pk": 11259, "fields": {"orig_filename": "Kuhn_Franz-Xaver_1888_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336", "author": "", "orig_id": 1415574}}, {"model": "metainfo.source", "pk": 11260, "fields": {"orig_filename": "Kuh_Anton_1890_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1458929}}, {"model": "metainfo.source", "pk": 11261, "fields": {"orig_filename": "Kuh_David_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 332f.", "author": "", "orig_id": 1415564}}, {"model": "metainfo.source", "pk": 11262, "fields": {"orig_filename": "Kuh_Emil_1828_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333", "author": "", "orig_id": 1415565}}, {"model": "metainfo.source", "pk": 11263, "fields": {"orig_filename": "Kujundzic_Kosta_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337", "author": "", "orig_id": 1415577}}, {"model": "metainfo.source", "pk": 11264, "fields": {"orig_filename": "Kukovic_Josip_1782_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415651}}, {"model": "metainfo.source", "pk": 11265, "fields": {"orig_filename": "Kukucin_Martin_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415652}}, {"model": "metainfo.source", "pk": 11266, "fields": {"orig_filename": "Kukula_Otakar_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415653}}, {"model": "metainfo.source", "pk": 11267, "fields": {"orig_filename": "Kukula_Richard-Cornelius_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339", "author": "", "orig_id": 1415655}}, {"model": "metainfo.source", "pk": 11268, "fields": {"orig_filename": "Kukula_Richard_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339", "author": "", "orig_id": 1415654}}, {"model": "metainfo.source", "pk": 11269, "fields": {"orig_filename": "Kukuljevic-Sakcinski_Ivan_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339f.", "author": "", "orig_id": 1415656}}, {"model": "metainfo.source", "pk": 11270, "fields": {"orig_filename": "Kuk_Karl_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337f.", "author": "", "orig_id": 1415578}}, {"model": "metainfo.source", "pk": 11271, "fields": {"orig_filename": "Kuk_Wladimir_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415650}}, {"model": "metainfo.source", "pk": 11272, "fields": {"orig_filename": "Kulczycki_Ludwik_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 340", "author": "", "orig_id": 1415657}}, {"model": "metainfo.source", "pk": 11273, "fields": {"orig_filename": "Kulda_Benes-Metod_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 340f.", "author": "", "orig_id": 1415658}}, {"model": "metainfo.source", "pk": 11274, "fields": {"orig_filename": "Kulik_Jakob-Philipp_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341", "author": "", "orig_id": 1415659}}, {"model": "metainfo.source", "pk": 11275, "fields": {"orig_filename": "Kulisch_Max_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341", "author": "", "orig_id": 1415660}}, {"model": "metainfo.source", "pk": 11276, "fields": {"orig_filename": "Kulka_Adolf_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341f.", "author": "", "orig_id": 1415661}}, {"model": "metainfo.source", "pk": 11277, "fields": {"orig_filename": "Kulka_Georg_1897_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342", "author": "", "orig_id": 1415662}}, {"model": "metainfo.source", "pk": 11278, "fields": {"orig_filename": "Kulka_Leopoldine_1872_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342", "author": "", "orig_id": 1415663}}, {"model": "metainfo.source", "pk": 11279, "fields": {"orig_filename": "Kulke_Eduard_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342f.", "author": "", "orig_id": 1415664}}, {"model": "metainfo.source", "pk": 11280, "fields": {"orig_filename": "Kulmer_Franjo_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415665}}, {"model": "metainfo.source", "pk": 11281, "fields": {"orig_filename": "Kulmer_Friedrich_1814_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415666}}, {"model": "metainfo.source", "pk": 11282, "fields": {"orig_filename": "Kulovec_Fran-S_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415667}}, {"model": "metainfo.source", "pk": 11283, "fields": {"orig_filename": "Kulp-Trolcov_Vojtech_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343f.", "author": "", "orig_id": 1415668}}, {"model": "metainfo.source", "pk": 11284, "fields": {"orig_filename": "Kulstrunk_Franz_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415669}}, {"model": "metainfo.source", "pk": 11285, "fields": {"orig_filename": "Kultsar_Istvan_1760_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415670}}, {"model": "metainfo.source", "pk": 11286, "fields": {"orig_filename": "Kumaniecki_Kazimierz-Wladyslaw_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415671}}, {"model": "metainfo.source", "pk": 11287, "fields": {"orig_filename": "Kumar_Josef-August_1789_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344f.", "author": "", "orig_id": 1415742}}, {"model": "metainfo.source", "pk": 11288, "fields": {"orig_filename": "Kumicic_Eugen_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 345", "author": "", "orig_id": 1415744}}, {"model": "metainfo.source", "pk": 11289, "fields": {"orig_filename": "Kummer-Falkenfehd_Heinrich_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346", "author": "", "orig_id": 1415746}}, {"model": "metainfo.source", "pk": 11290, "fields": {"orig_filename": "Kummer_Karl-Ferdinand_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 345f.", "author": "", "orig_id": 1415745}}, {"model": "metainfo.source", "pk": 11291, "fields": {"orig_filename": "Kumpf_Johann-Gottfried_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346", "author": "", "orig_id": 1415747}}, {"model": "metainfo.source", "pk": 11292, "fields": {"orig_filename": "Kuna_Franz_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415750}}, {"model": "metainfo.source", "pk": 11293, "fields": {"orig_filename": "Kuncze_Leo_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415753}}, {"model": "metainfo.source", "pk": 11294, "fields": {"orig_filename": "Kuncz_Adolf-Josef_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347f.", "author": "", "orig_id": 1415752}}, {"model": "metainfo.source", "pk": 11295, "fields": {"orig_filename": "Kunc_Matija_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415751}}, {"model": "metainfo.source", "pk": 11296, "fields": {"orig_filename": "Kundegraber_Michael_1844_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415754}}, {"model": "metainfo.source", "pk": 11297, "fields": {"orig_filename": "Kundek_Josip_1809_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415755}}, {"model": "metainfo.source", "pk": 11298, "fields": {"orig_filename": "Kundigraber_Hermann_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 349", "author": "", "orig_id": 1415757}}, {"model": "metainfo.source", "pk": 11299, "fields": {"orig_filename": "Kundi_Julius_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415756}}, {"model": "metainfo.source", "pk": 11300, "fields": {"orig_filename": "Kundmann_Karl_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 349f.", "author": "", "orig_id": 1415758}}, {"model": "metainfo.source", "pk": 11301, "fields": {"orig_filename": "Kundrat-Lueftenfeld_Josef_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 350f.", "author": "", "orig_id": 1415760}}, {"model": "metainfo.source", "pk": 11302, "fields": {"orig_filename": "Kundrat_Johann_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 350", "author": "", "orig_id": 1415759}}, {"model": "metainfo.source", "pk": 11303, "fields": {"orig_filename": "Kunerth_Johann-Leopold_1784_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415761}}, {"model": "metainfo.source", "pk": 11304, "fields": {"orig_filename": "Kunike_Adolf-Friedrich_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415831}}, {"model": "metainfo.source", "pk": 11305, "fields": {"orig_filename": "Kunitsch_Michael_1765_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352", "author": "", "orig_id": 1415833}}, {"model": "metainfo.source", "pk": 11306, "fields": {"orig_filename": "Kunits_Ludwig-Maria_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351f.", "author": "", "orig_id": 1415832}}, {"model": "metainfo.source", "pk": 11307, "fields": {"orig_filename": "Kunitzer_Moses_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352", "author": "", "orig_id": 1415834}}, {"model": "metainfo.source", "pk": 11308, "fields": {"orig_filename": "Kunos_Ignac_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352f.", "author": "", "orig_id": 1415835}}, {"model": "metainfo.source", "pk": 11309, "fields": {"orig_filename": "Kunsic_Ivan_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415836}}, {"model": "metainfo.source", "pk": 11310, "fields": {"orig_filename": "Kunst_Karl_1895_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415837}}, {"model": "metainfo.source", "pk": 11311, "fields": {"orig_filename": "Kunszt_Josef_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415838}}, {"model": "metainfo.source", "pk": 11312, "fields": {"orig_filename": "Kuntschak_Abund_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353f.", "author": "", "orig_id": 1415839}}, {"model": "metainfo.source", "pk": 11313, "fields": {"orig_filename": "Kunwald_Ernst_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415840}}, {"model": "metainfo.source", "pk": 11314, "fields": {"orig_filename": "Kunwald_Gottfried_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415841}}, {"model": "metainfo.source", "pk": 11315, "fields": {"orig_filename": "Kuny_Domokos_1754_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415842}}, {"model": "metainfo.source", "pk": 11316, "fields": {"orig_filename": "Kunzek-Lichton_August_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357", "author": "", "orig_id": 1415851}}, {"model": "metainfo.source", "pk": 11317, "fields": {"orig_filename": "Kunze_Wilhelm_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356f.", "author": "", "orig_id": 1415850}}, {"model": "metainfo.source", "pk": 11318, "fields": {"orig_filename": "Kunz_Anton-Thomas_1756_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354f.", "author": "", "orig_id": 1415843}}, {"model": "metainfo.source", "pk": 11319, "fields": {"orig_filename": "Kunz_Carlo_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415844}}, {"model": "metainfo.source", "pk": 11320, "fields": {"orig_filename": "Kunz_Eduard_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1442472}}, {"model": "metainfo.source", "pk": 11321, "fields": {"orig_filename": "Kunz_Gottfried_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415845}}, {"model": "metainfo.source", "pk": 11322, "fields": {"orig_filename": "Kunz_Johann-Karl-Kassian_1832_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415846}}, {"model": "metainfo.source", "pk": 11323, "fields": {"orig_filename": "Kunz_Josef_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355f.", "author": "", "orig_id": 1415847}}, {"model": "metainfo.source", "pk": 11324, "fields": {"orig_filename": "Kunz_Ludwig-Adam_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356", "author": "", "orig_id": 1415848}}, {"model": "metainfo.source", "pk": 11325, "fields": {"orig_filename": "Kunz_Otto_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356", "author": "", "orig_id": 1415849}}, {"model": "metainfo.source", "pk": 11326, "fields": {"orig_filename": "Kun_Frantisek_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415749}}, {"model": "metainfo.source", "pk": 11327, "fields": {"orig_filename": "Kupcok_Samuel_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357", "author": "", "orig_id": 1415852}}, {"model": "metainfo.source", "pk": 11328, "fields": {"orig_filename": "Kupelwieser_Franz_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357f.", "author": "", "orig_id": 1415853}}, {"model": "metainfo.source", "pk": 11329, "fields": {"orig_filename": "Kupelwieser_Hans_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 358", "author": "", "orig_id": 1415854}}, {"model": "metainfo.source", "pk": 11330, "fields": {"orig_filename": "Kupelwieser_Karl_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 359", "author": "", "orig_id": 1415855}}, {"model": "metainfo.source", "pk": 11331, "fields": {"orig_filename": "Kupelwieser_Leopold_1796_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 359f.", "author": "", "orig_id": 1415921}}, {"model": "metainfo.source", "pk": 11332, "fields": {"orig_filename": "Kupelwieser_Paul_1843_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 360", "author": "", "orig_id": 1411495}}, {"model": "metainfo.source", "pk": 11333, "fields": {"orig_filename": "Kupfer-Berger_Ludmilla_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415923}}, {"model": "metainfo.source", "pk": 11334, "fields": {"orig_filename": "Kupfer-Gomansky_Caesarine_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415924}}, {"model": "metainfo.source", "pk": 11335, "fields": {"orig_filename": "Kupfer_Johann-Michael_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 360f.", "author": "", "orig_id": 1415922}}, {"model": "metainfo.source", "pk": 11336, "fields": {"orig_filename": "Kupka_Josef_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415925}}, {"model": "metainfo.source", "pk": 11337, "fields": {"orig_filename": "Kupka_Peter-Friedrich_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361f.", "author": "", "orig_id": 1415926}}, {"model": "metainfo.source", "pk": 11338, "fields": {"orig_filename": "Kuppa_Josef_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415927}}, {"model": "metainfo.source", "pk": 11339, "fields": {"orig_filename": "Kuppe_Rudolf_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415928}}, {"model": "metainfo.source", "pk": 11340, "fields": {"orig_filename": "Kurak_Frantisek_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415929}}, {"model": "metainfo.source", "pk": 11341, "fields": {"orig_filename": "Kuralt_Franjo_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415930}}, {"model": "metainfo.source", "pk": 11342, "fields": {"orig_filename": "Kuranda_Felix_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362f.", "author": "", "orig_id": 1415931}}, {"model": "metainfo.source", "pk": 11343, "fields": {"orig_filename": "Kuranda_Ignaz_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 363", "author": "", "orig_id": 1415932}}, {"model": "metainfo.source", "pk": 11344, "fields": {"orig_filename": "Kurelac_Fran_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 363f.", "author": "", "orig_id": 1415933}}, {"model": "metainfo.source", "pk": 11345, "fields": {"orig_filename": "Kurka_Adalbert-Josef_1785_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415934}}, {"model": "metainfo.source", "pk": 11346, "fields": {"orig_filename": "Kurlaender-Kornfeld_Franz-August_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415935}}, {"model": "metainfo.source", "pk": 11347, "fields": {"orig_filename": "Kurrein_Adolf_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364f.", "author": "", "orig_id": 1415937}}, {"model": "metainfo.source", "pk": 11348, "fields": {"orig_filename": "Kurth_Betty_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415938}}, {"model": "metainfo.source", "pk": 11349, "fields": {"orig_filename": "Kurth_Ernst_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415939}}, {"model": "metainfo.source", "pk": 11350, "fields": {"orig_filename": "Kurtz_Arthur_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415940}}, {"model": "metainfo.source", "pk": 11351, "fields": {"orig_filename": "Kurtz_August_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365f.", "author": "", "orig_id": 1415941}}, {"model": "metainfo.source", "pk": 11352, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Franz_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416016}}, {"model": "metainfo.source", "pk": 11353, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Ludwig_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416017}}, {"model": "metainfo.source", "pk": 11354, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Patritius-Cajetan-Franz_1758_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416018}}, {"model": "metainfo.source", "pk": 11355, "fields": {"orig_filename": "Kurzawa_Anton_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368f.", "author": "", "orig_id": 1416019}}, {"model": "metainfo.source", "pk": 11356, "fields": {"orig_filename": "Kurzbauer_Hans-Eduard_1840_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416020}}, {"model": "metainfo.source", "pk": 11357, "fields": {"orig_filename": "Kruis_Karl_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302", "author": "", "orig_id": 1416555}}, {"model": "metainfo.source", "pk": 11358, "fields": {"orig_filename": "Krukowski_Joseph_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302f.", "author": "", "orig_id": 1416556}}, {"model": "metainfo.source", "pk": 11359, "fields": {"orig_filename": "Krumholz_Ferdinand_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303", "author": "", "orig_id": 1416557}}, {"model": "metainfo.source", "pk": 11360, "fields": {"orig_filename": "Krumpholz_Johann_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303", "author": "", "orig_id": 1416559}}, {"model": "metainfo.source", "pk": 11361, "fields": {"orig_filename": "Krupka_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303f.", "author": "", "orig_id": 1416560}}, {"model": "metainfo.source", "pk": 11362, "fields": {"orig_filename": "Krupp_Arthur_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 304", "author": "", "orig_id": 1416561}}, {"model": "metainfo.source", "pk": 11363, "fields": {"orig_filename": "Krupp_Hermann_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 304f.", "author": "", "orig_id": 1416562}}, {"model": "metainfo.source", "pk": 11364, "fields": {"orig_filename": "Kruselnyckyj_Antin-Volodyslavovyc_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416564}}, {"model": "metainfo.source", "pk": 11365, "fields": {"orig_filename": "Kruselnyckyj_Ivan-Antonovyc_1905_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416565}}, {"model": "metainfo.source", "pk": 11366, "fields": {"orig_filename": "Krus_Franz_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 305f.", "author": "", "orig_id": 1416563}}, {"model": "metainfo.source", "pk": 11367, "fields": {"orig_filename": "Kruzik_Anton_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416566}}, {"model": "metainfo.source", "pk": 11368, "fields": {"orig_filename": "Krycinski_Walerian_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306f.", "author": "", "orig_id": 1416638}}, {"model": "metainfo.source", "pk": 11369, "fields": {"orig_filename": "Krystin_Jaroslav_1892_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416639}}, {"model": "metainfo.source", "pk": 11370, "fields": {"orig_filename": "Krystufek_Frantisek-X_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416640}}, {"model": "metainfo.source", "pk": 11371, "fields": {"orig_filename": "Krystufek_Jan-Miloslav_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416641}}, {"model": "metainfo.source", "pk": 11372, "fields": {"orig_filename": "Krzeczunowicz_Kornel_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307f.", "author": "", "orig_id": 1416642}}, {"model": "metainfo.source", "pk": 11373, "fields": {"orig_filename": "Krzesz_Mecina-Jozef_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308", "author": "", "orig_id": 1416643}}, {"model": "metainfo.source", "pk": 11374, "fields": {"orig_filename": "Krzic_Anton_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308", "author": "", "orig_id": 1416644}}, {"model": "metainfo.source", "pk": 11375, "fields": {"orig_filename": "Krziz_August-Karl_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309", "author": "", "orig_id": 1416646}}, {"model": "metainfo.source", "pk": 11376, "fields": {"orig_filename": "Krzyzanowski_Stanislaw_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309", "author": "", "orig_id": 1416647}}, {"model": "metainfo.source", "pk": 11377, "fields": {"orig_filename": "Kubala_Ludwig_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309f.", "author": "", "orig_id": 1416648}}, {"model": "metainfo.source", "pk": 11378, "fields": {"orig_filename": "Kubani_Ludovit_1830_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1416649}}, {"model": "metainfo.source", "pk": 11379, "fields": {"orig_filename": "Kubelik_Jan_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1416650}}, {"model": "metainfo.source", "pk": 11380, "fields": {"orig_filename": "Kubelka_August_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1415275}}, {"model": "metainfo.source", "pk": 11381, "fields": {"orig_filename": "Kubena_Heinrich_1855_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310f.", "author": "", "orig_id": 1415276}}, {"model": "metainfo.source", "pk": 11382, "fields": {"orig_filename": "Kubicek_Emanuel_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415277}}, {"model": "metainfo.source", "pk": 11383, "fields": {"orig_filename": "Kubiena_Friedrich_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415278}}, {"model": "metainfo.source", "pk": 11384, "fields": {"orig_filename": "Kubik_Julius_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415279}}, {"model": "metainfo.source", "pk": 11385, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Agoston_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311f.", "author": "", "orig_id": 1415280}}, {"model": "metainfo.source", "pk": 11386, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Ferenc_1796_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415281}}, {"model": "metainfo.source", "pk": 11387, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Ferenc_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415282}}, {"model": "metainfo.source", "pk": 11388, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Lajos_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415283}}, {"model": "metainfo.source", "pk": 11389, "fields": {"orig_filename": "Kubinzky_Emil_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312f.", "author": "", "orig_id": 1415284}}, {"model": "metainfo.source", "pk": 11390, "fields": {"orig_filename": "Kubista_Bohumil_1884_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 313", "author": "", "orig_id": 1415285}}, {"model": "metainfo.source", "pk": 11391, "fields": {"orig_filename": "Kubitschek_Rudolf_1895_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 313f.", "author": "", "orig_id": 1415286}}, {"model": "metainfo.source", "pk": 11392, "fields": {"orig_filename": "Kubitza_Oskar_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315", "author": "", "orig_id": 1415288}}, {"model": "metainfo.source", "pk": 11393, "fields": {"orig_filename": "Kubr_Stanislav_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315", "author": "", "orig_id": 1415289}}, {"model": "metainfo.source", "pk": 11394, "fields": {"orig_filename": "Kucera_Bohumil_1874_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315f.", "author": "", "orig_id": 1415290}}, {"model": "metainfo.source", "pk": 11395, "fields": {"orig_filename": "Kucera_Frantisek_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316", "author": "", "orig_id": 1415291}}, {"model": "metainfo.source", "pk": 11396, "fields": {"orig_filename": "Kucera_Jan-Jakub_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316f.", "author": "", "orig_id": 1415293}}, {"model": "metainfo.source", "pk": 11397, "fields": {"orig_filename": "Kucera_Jan_1838_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316", "author": "", "orig_id": 1415292}}, {"model": "metainfo.source", "pk": 11398, "fields": {"orig_filename": "Kucera_Karel_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1419223}}, {"model": "metainfo.source", "pk": 11399, "fields": {"orig_filename": "Kucera_Oton_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415294}}, {"model": "metainfo.source", "pk": 11400, "fields": {"orig_filename": "Kucera_Pavel_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415365}}, {"model": "metainfo.source", "pk": 11401, "fields": {"orig_filename": "Kuchar_Johann-Bapt_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415366}}, {"model": "metainfo.source", "pk": 11402, "fields": {"orig_filename": "Kucher_Josef_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317f.", "author": "", "orig_id": 1415367}}, {"model": "metainfo.source", "pk": 11403, "fields": {"orig_filename": "Kuchynka_Vojtech_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415368}}, {"model": "metainfo.source", "pk": 11404, "fields": {"orig_filename": "Kudler_Joseph_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318f.", "author": "", "orig_id": 1415371}}, {"model": "metainfo.source", "pk": 11405, "fields": {"orig_filename": "Kudlich_Hans_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 319", "author": "", "orig_id": 1415372}}, {"model": "metainfo.source", "pk": 11406, "fields": {"orig_filename": "Kudriaffsky_Euphemia_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 319f.", "author": "", "orig_id": 1415373}}, {"model": "metainfo.source", "pk": 11407, "fields": {"orig_filename": "Kudriaffsky_Johann_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415374}}, {"model": "metainfo.source", "pk": 11408, "fields": {"orig_filename": "Kuebeck-Kuebau_Blanche_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415375}}, {"model": "metainfo.source", "pk": 11409, "fields": {"orig_filename": "Kuebeck-Kuebau_Guido_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415376}}, {"model": "metainfo.source", "pk": 11410, "fields": {"orig_filename": "Kuebeck-Kuebau_Karl-Friedrich_1780_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320f.", "author": "", "orig_id": 1415377}}, {"model": "metainfo.source", "pk": 11411, "fields": {"orig_filename": "Kuefstein_Franz_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415378}}, {"model": "metainfo.source", "pk": 11412, "fields": {"orig_filename": "Kuefstein_Johann-Ferdinand_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415379}}, {"model": "metainfo.source", "pk": 11413, "fields": {"orig_filename": "Kuefstein_Karl_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415380}}, {"model": "metainfo.source", "pk": 11414, "fields": {"orig_filename": "Kuehlbrandt_Ernst_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415381}}, {"model": "metainfo.source", "pk": 11415, "fields": {"orig_filename": "Kuehnelt_Anton_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323f.", "author": "", "orig_id": 1415388}}, {"model": "metainfo.source", "pk": 11416, "fields": {"orig_filename": "Kuehnelt_Hugo_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415463}}, {"model": "metainfo.source", "pk": 11417, "fields": {"orig_filename": "Kuehnelt_Richard_1877_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415464}}, {"model": "metainfo.source", "pk": 11418, "fields": {"orig_filename": "Kuehnel_Gustav_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323", "author": "", "orig_id": 1415386}}, {"model": "metainfo.source", "pk": 11419, "fields": {"orig_filename": "Kuehnel_Reinhold-Wilhelm_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323", "author": "", "orig_id": 1415387}}, {"model": "metainfo.source", "pk": 11420, "fields": {"orig_filename": "Kuehnert_Franz_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415465}}, {"model": "metainfo.source", "pk": 11421, "fields": {"orig_filename": "Kuehne_Ferdinand-Karl_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415384}}, {"model": "metainfo.source", "pk": 11422, "fields": {"orig_filename": "Kuehne_Karl-Ludwig-August_1845_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322f.", "author": "", "orig_id": 1415385}}, {"model": "metainfo.source", "pk": 11423, "fields": {"orig_filename": "Kuehns_Volkmar_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324f.", "author": "", "orig_id": 1415466}}, {"model": "metainfo.source", "pk": 11424, "fields": {"orig_filename": "Kuehn_Josef_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415382}}, {"model": "metainfo.source", "pk": 11425, "fields": {"orig_filename": "Kuehn_Karl-Friedrich_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415383}}, {"model": "metainfo.source", "pk": 11426, "fields": {"orig_filename": "Kuehschelm_Josef_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325", "author": "", "orig_id": 1415467}}, {"model": "metainfo.source", "pk": 11427, "fields": {"orig_filename": "Kuelfoeldi_Viktor_1844_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325", "author": "", "orig_id": 1415468}}, {"model": "metainfo.source", "pk": 11428, "fields": {"orig_filename": "Kuenburg_Gandolph_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326", "author": "", "orig_id": 1415470}}, {"model": "metainfo.source", "pk": 11429, "fields": {"orig_filename": "Kuenburg_Maria-Bertha_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326", "author": "", "orig_id": 1415471}}, {"model": "metainfo.source", "pk": 11430, "fields": {"orig_filename": "Kuenl_Pavel_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326f.", "author": "", "orig_id": 1415472}}, {"model": "metainfo.source", "pk": 11431, "fields": {"orig_filename": "Kuensberg_Sophie_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415473}}, {"model": "metainfo.source", "pk": 11432, "fields": {"orig_filename": "Kuenssberg_Eberhard_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415477}}, {"model": "metainfo.source", "pk": 11433, "fields": {"orig_filename": "Kuenzel_Robert_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415478}}, {"model": "metainfo.source", "pk": 11434, "fields": {"orig_filename": "Kuen_Alois-Heinrich_1779_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325f.", "author": "", "orig_id": 1415469}}, {"model": "metainfo.source", "pk": 11435, "fields": {"orig_filename": "Kuernberger_Ferdinand_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327f.", "author": "", "orig_id": 1415479}}, {"model": "metainfo.source", "pk": 11436, "fields": {"orig_filename": "Kuerschak_Jozsef_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 328", "author": "", "orig_id": 1415480}}, {"model": "metainfo.source", "pk": 11437, "fields": {"orig_filename": "Kuerschner_Franz_1840_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 328f.", "author": "", "orig_id": 1415481}}, {"model": "metainfo.source", "pk": 11438, "fields": {"orig_filename": "Kuersinger_Ignaz_1795_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415482}}, {"model": "metainfo.source", "pk": 11439, "fields": {"orig_filename": "Kuerzinger_Paul-Ignaz_1750_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415483}}, {"model": "metainfo.source", "pk": 11440, "fields": {"orig_filename": "Kuffner_Christoph-Johann-Anton_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415484}}, {"model": "metainfo.source", "pk": 11441, "fields": {"orig_filename": "Kuffner_Karl_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329f.", "author": "", "orig_id": 1415556}}, {"model": "metainfo.source", "pk": 11442, "fields": {"orig_filename": "Kuffner_Moritz_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330", "author": "", "orig_id": 1415557}}, {"model": "metainfo.source", "pk": 11443, "fields": {"orig_filename": "Kugler_Emil_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330", "author": "", "orig_id": 1415558}}, {"model": "metainfo.source", "pk": 11444, "fields": {"orig_filename": "Kugler_Josef_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330f.", "author": "", "orig_id": 1415559}}, {"model": "metainfo.source", "pk": 11445, "fields": {"orig_filename": "Kugler_Paul-Franz_1836_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415560}}, {"model": "metainfo.source", "pk": 11446, "fields": {"orig_filename": "Kuglmayr_Gotthard_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415561}}, {"model": "metainfo.source", "pk": 11447, "fields": {"orig_filename": "Kugstatscher-Treuensinn_Josef_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415562}}, {"model": "metainfo.source", "pk": 11448, "fields": {"orig_filename": "Kugy_Julius_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331f.", "author": "", "orig_id": 1415563}}, {"model": "metainfo.source", "pk": 11449, "fields": {"orig_filename": "Kuh-Chrobak_Paul-Robert_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333", "author": "", "orig_id": 1415566}}, {"model": "metainfo.source", "pk": 11450, "fields": {"orig_filename": "Kuhac_Franjo_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333f.", "author": "", "orig_id": 1415567}}, {"model": "metainfo.source", "pk": 11451, "fields": {"orig_filename": "Kuhar_Lovro_1893_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 334f.", "author": "", "orig_id": 1415568}}, {"model": "metainfo.source", "pk": 11452, "fields": {"orig_filename": "Kuhe_Wilhelm_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415569}}, {"model": "metainfo.source", "pk": 11453, "fields": {"orig_filename": "Kuhn-Kuhnenfeld_Franz_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336f.", "author": "", "orig_id": 1415575}}, {"model": "metainfo.source", "pk": 11454, "fields": {"orig_filename": "Kuhn-Kunietitz_Johann_1788_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337", "author": "", "orig_id": 1415576}}, {"model": "metainfo.source", "pk": 11455, "fields": {"orig_filename": "Kuhn_Andreas_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415570}}, {"model": "metainfo.source", "pk": 11456, "fields": {"orig_filename": "Kreutzer_Carl-Joseph_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 267", "author": "", "orig_id": 1416105}}, {"model": "metainfo.source", "pk": 11457, "fields": {"orig_filename": "Kreutzer_Conrad_1780_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 267f.", "author": "", "orig_id": 1416106}}, {"model": "metainfo.source", "pk": 11458, "fields": {"orig_filename": "Kreutzinger_Josef_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416107}}, {"model": "metainfo.source", "pk": 11459, "fields": {"orig_filename": "Kreuzer_Heinrich_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416174}}, {"model": "metainfo.source", "pk": 11460, "fields": {"orig_filename": "Kreuzer_Konrad_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416175}}, {"model": "metainfo.source", "pk": 11461, "fields": {"orig_filename": "Kreuzer_Vinzenz_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416176}}, {"model": "metainfo.source", "pk": 11462, "fields": {"orig_filename": "Kreysa_Eduard_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416177}}, {"model": "metainfo.source", "pk": 11463, "fields": {"orig_filename": "Krezma_Franjo_1862_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416178}}, {"model": "metainfo.source", "pk": 11464, "fields": {"orig_filename": "Kricensky_Josef-Jaroslav_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416179}}, {"model": "metainfo.source", "pk": 11465, "fields": {"orig_filename": "Kricka_Petr_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416182}}, {"model": "metainfo.source", "pk": 11466, "fields": {"orig_filename": "Krickel_Josef-Adalbert_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416183}}, {"model": "metainfo.source", "pk": 11467, "fields": {"orig_filename": "Krick_Julius_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416180}}, {"model": "metainfo.source", "pk": 11468, "fields": {"orig_filename": "Krick_Otto-Emil_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416181}}, {"model": "metainfo.source", "pk": 11469, "fields": {"orig_filename": "Kriebaum_Franz-Xaver_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416184}}, {"model": "metainfo.source", "pk": 11470, "fields": {"orig_filename": "Krieg-Hochfelden_Edith_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270f.", "author": "", "orig_id": 1416185}}, {"model": "metainfo.source", "pk": 11471, "fields": {"orig_filename": "Krieg-Hochfelden_Franz_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271", "author": "", "orig_id": 1416186}}, {"model": "metainfo.source", "pk": 11472, "fields": {"orig_filename": "Krieger_Koloman_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271", "author": "", "orig_id": 1416187}}, {"model": "metainfo.source", "pk": 11473, "fields": {"orig_filename": "Krieghammer_Edmund_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271f.", "author": "", "orig_id": 1416188}}, {"model": "metainfo.source", "pk": 11474, "fields": {"orig_filename": "Kriegs-Au_Adolf_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272", "author": "", "orig_id": 1416189}}, {"model": "metainfo.source", "pk": 11475, "fields": {"orig_filename": "Kriehuber_Friedrich_1834_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272", "author": "", "orig_id": 1416190}}, {"model": "metainfo.source", "pk": 11476, "fields": {"orig_filename": "Kriehuber_Josef_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 273f.", "author": "", "orig_id": 1416192}}, {"model": "metainfo.source", "pk": 11477, "fields": {"orig_filename": "Kriehuber_Joseph_1799_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272f.", "author": "", "orig_id": 1416191}}, {"model": "metainfo.source", "pk": 11478, "fields": {"orig_filename": "Kriesmayr_Anton_1810_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274", "author": "", "orig_id": 1416193}}, {"model": "metainfo.source", "pk": 11479, "fields": {"orig_filename": "Krimer_Wenzeslaus_1795_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274", "author": "", "orig_id": 1416194}}, {"model": "metainfo.source", "pk": 11480, "fields": {"orig_filename": "Kripp-Prunberg-Krippach_Sigmund_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274f.", "author": "", "orig_id": 1416195}}, {"model": "metainfo.source", "pk": 11481, "fields": {"orig_filename": "Krippel_Heinrich_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275", "author": "", "orig_id": 1416196}}, {"model": "metainfo.source", "pk": 11482, "fields": {"orig_filename": "Krischke_Otto_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275f.", "author": "", "orig_id": 1416266}}, {"model": "metainfo.source", "pk": 11483, "fields": {"orig_filename": "Krisch_Rudolf_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275", "author": "", "orig_id": 1416197}}, {"model": "metainfo.source", "pk": 11484, "fields": {"orig_filename": "Krismanic_Gideon_1817_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 276", "author": "", "orig_id": 1416267}}, {"model": "metainfo.source", "pk": 11485, "fields": {"orig_filename": "Krismer_Stefan_1777_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 276f.", "author": "", "orig_id": 1416268}}, {"model": "metainfo.source", "pk": 11486, "fields": {"orig_filename": "Krisper_Valentin_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277", "author": "", "orig_id": 1416269}}, {"model": "metainfo.source", "pk": 11487, "fields": {"orig_filename": "Kristan_Anton_1881_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277f.", "author": "", "orig_id": 1416271}}, {"model": "metainfo.source", "pk": 11488, "fields": {"orig_filename": "Kristijanovic_Ignjat_1796_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416272}}, {"model": "metainfo.source", "pk": 11489, "fields": {"orig_filename": "Kristinus_Karl-Raimund_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416273}}, {"model": "metainfo.source", "pk": 11490, "fields": {"orig_filename": "Kristoffy_Jozsef_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416274}}, {"model": "metainfo.source", "pk": 11491, "fields": {"orig_filename": "Krist_Josef_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277", "author": "", "orig_id": 1416270}}, {"model": "metainfo.source", "pk": 11492, "fields": {"orig_filename": "Kritek_Karl_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278f.", "author": "", "orig_id": 1416275}}, {"model": "metainfo.source", "pk": 11493, "fields": {"orig_filename": "Kriza_Janos_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416281}}, {"model": "metainfo.source", "pk": 11494, "fields": {"orig_filename": "Krizek_Vaclav_1833_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416282}}, {"model": "metainfo.source", "pk": 11495, "fields": {"orig_filename": "Krizenecky_Rudolf_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280f.", "author": "", "orig_id": 1416283}}, {"model": "metainfo.source", "pk": 11496, "fields": {"orig_filename": "Krizik_Franz_1847_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281", "author": "", "orig_id": 1416284}}, {"model": "metainfo.source", "pk": 11497, "fields": {"orig_filename": "Krizkovsky_Pavel_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 282", "author": "", "orig_id": 1416361}}, {"model": "metainfo.source", "pk": 11498, "fields": {"orig_filename": "Krizko_Bohuslav_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281", "author": "", "orig_id": 1416285}}, {"model": "metainfo.source", "pk": 11499, "fields": {"orig_filename": "Krizko_Jaromir-Vitazoslav_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281f.", "author": "", "orig_id": 1416286}}, {"model": "metainfo.source", "pk": 11500, "fields": {"orig_filename": "Krizko_Pavel_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 282", "author": "", "orig_id": 1416360}}, {"model": "metainfo.source", "pk": 11501, "fields": {"orig_filename": "Krizmanic_Ivan_1766_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416362}}, {"model": "metainfo.source", "pk": 11502, "fields": {"orig_filename": "Kriz_Arpad_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279", "author": "", "orig_id": 1416276}}, {"model": "metainfo.source", "pk": 11503, "fields": {"orig_filename": "Kriz_Ferdinand_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279", "author": "", "orig_id": 1416277}}, {"model": "metainfo.source", "pk": 11504, "fields": {"orig_filename": "Kriz_Martin_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279f.", "author": "", "orig_id": 1416278}}, {"model": "metainfo.source", "pk": 11505, "fields": {"orig_filename": "Kriz_Wenzel_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416280}}, {"model": "metainfo.source", "pk": 11506, "fields": {"orig_filename": "Krmpotic_Ivan_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416363}}, {"model": "metainfo.source", "pk": 11507, "fields": {"orig_filename": "Krnic_Bogoljub_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416364}}, {"model": "metainfo.source", "pk": 11508, "fields": {"orig_filename": "Krnic_Ivan_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416365}}, {"model": "metainfo.source", "pk": 11509, "fields": {"orig_filename": "Krnka_Karl-Sylvester_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283f.", "author": "", "orig_id": 1416366}}, {"model": "metainfo.source", "pk": 11510, "fields": {"orig_filename": "Krnka_Sylvester_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 284f.", "author": "", "orig_id": 1416367}}, {"model": "metainfo.source", "pk": 11511, "fields": {"orig_filename": "Krobath_Karl_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 285", "author": "", "orig_id": 1416368}}, {"model": "metainfo.source", "pk": 11512, "fields": {"orig_filename": "Krobatin_Alexander_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 285f.", "author": "", "orig_id": 1416369}}, {"model": "metainfo.source", "pk": 11513, "fields": {"orig_filename": "Krochmal_Nachman_1785_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416370}}, {"model": "metainfo.source", "pk": 11514, "fields": {"orig_filename": "Kroepsch_Friedrich-Anton_1806_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416372}}, {"model": "metainfo.source", "pk": 11515, "fields": {"orig_filename": "Kroepsch_Wilhelm_1807_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416371}}, {"model": "metainfo.source", "pk": 11516, "fields": {"orig_filename": "Kroess_Alois_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416373}}, {"model": "metainfo.source", "pk": 11517, "fields": {"orig_filename": "Krofta_Kamil_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 287", "author": "", "orig_id": 1416374}}, {"model": "metainfo.source", "pk": 11518, "fields": {"orig_filename": "Kroh_Josef_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416375}}, {"model": "metainfo.source", "pk": 11519, "fields": {"orig_filename": "Krolmus_Vaclav_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416376}}, {"model": "metainfo.source", "pk": 11520, "fields": {"orig_filename": "Krombholz_Anton_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416377}}, {"model": "metainfo.source", "pk": 11521, "fields": {"orig_filename": "Krombholz_Ernst_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289", "author": "", "orig_id": 1416378}}, {"model": "metainfo.source", "pk": 11522, "fields": {"orig_filename": "Krombholz_Julius-Vincenz_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289", "author": "", "orig_id": 1416379}}, {"model": "metainfo.source", "pk": 11523, "fields": {"orig_filename": "Krommer_Franz_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289f.", "author": "", "orig_id": 1416380}}, {"model": "metainfo.source", "pk": 11524, "fields": {"orig_filename": "Kronau_Friederike_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 290", "author": "", "orig_id": 1416451}}, {"model": "metainfo.source", "pk": 11525, "fields": {"orig_filename": "Kronawetter_Ferdinand_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 290f.", "author": "", "orig_id": 1416452}}, {"model": "metainfo.source", "pk": 11526, "fields": {"orig_filename": "Kronbauer_Rudolf-Jaroslav_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416453}}, {"model": "metainfo.source", "pk": 11527, "fields": {"orig_filename": "Kronberger_Franz_1810_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416454}}, {"model": "metainfo.source", "pk": 11528, "fields": {"orig_filename": "Kronberger_Karl_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416455}}, {"model": "metainfo.source", "pk": 11529, "fields": {"orig_filename": "Kronecker_Gunther_1803_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291f.", "author": "", "orig_id": 1416456}}, {"model": "metainfo.source", "pk": 11530, "fields": {"orig_filename": "Kronegger_Rudolf_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416457}}, {"model": "metainfo.source", "pk": 11531, "fields": {"orig_filename": "Kronenfels_Josef_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1419222}}, {"model": "metainfo.source", "pk": 11532, "fields": {"orig_filename": "Krones-Marchland_Franz_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 294", "author": "", "orig_id": 1416462}}, {"model": "metainfo.source", "pk": 11533, "fields": {"orig_filename": "Krones_Hilde_1910_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416458}}, {"model": "metainfo.source", "pk": 11534, "fields": {"orig_filename": "Krones_Josef-Franz_1797_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416459}}, {"model": "metainfo.source", "pk": 11535, "fields": {"orig_filename": "Krones_Ludwig_1785_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292f.", "author": "", "orig_id": 1416460}}, {"model": "metainfo.source", "pk": 11536, "fields": {"orig_filename": "Krones_Therese_1801_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 293f.", "author": "", "orig_id": 1416461}}, {"model": "metainfo.source", "pk": 11537, "fields": {"orig_filename": "Kronfeld_Adolf_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 294f.", "author": "", "orig_id": 1416463}}, {"model": "metainfo.source", "pk": 11538, "fields": {"orig_filename": "Kronfeld_Ernst-F-Moriz_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295", "author": "", "orig_id": 1416464}}, {"model": "metainfo.source", "pk": 11539, "fields": {"orig_filename": "Kronfeld_Robert_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295", "author": "", "orig_id": 1416465}}, {"model": "metainfo.source", "pk": 11540, "fields": {"orig_filename": "Kronfeld_Robert_1904_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295f.", "author": "", "orig_id": 1416466}}, {"model": "metainfo.source", "pk": 11541, "fields": {"orig_filename": "Kronfuss_Karl_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296", "author": "", "orig_id": 1416467}}, {"model": "metainfo.source", "pk": 11542, "fields": {"orig_filename": "Kronstein_August-Stefan_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296", "author": "", "orig_id": 1416468}}, {"model": "metainfo.source", "pk": 11543, "fields": {"orig_filename": "Kropatschek_Alfred_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296f.", "author": "", "orig_id": 1416469}}, {"model": "metainfo.source", "pk": 11544, "fields": {"orig_filename": "Krosch_Josef_1840_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416470}}, {"model": "metainfo.source", "pk": 11545, "fields": {"orig_filename": "Krotenthaller_Anton_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416471}}, {"model": "metainfo.source", "pk": 11546, "fields": {"orig_filename": "Krottenthaler_Karl_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416472}}, {"model": "metainfo.source", "pk": 11547, "fields": {"orig_filename": "Kroupa_Gustav_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297f.", "author": "", "orig_id": 1416473}}, {"model": "metainfo.source", "pk": 11548, "fields": {"orig_filename": "Krsic_Jovan_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 298", "author": "", "orig_id": 1416474}}, {"model": "metainfo.source", "pk": 11549, "fields": {"orig_filename": "Krsnjavi_Izidor_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 298f.", "author": "", "orig_id": 1416544}}, {"model": "metainfo.source", "pk": 11550, "fields": {"orig_filename": "Krticzka-Jaden_Hans_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299", "author": "", "orig_id": 1416545}}, {"model": "metainfo.source", "pk": 11551, "fields": {"orig_filename": "Kruczkiewicz_Bronislaw-Ignacy_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299", "author": "", "orig_id": 1416546}}, {"model": "metainfo.source", "pk": 11552, "fields": {"orig_filename": "Krueckl_Franz_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299f.", "author": "", "orig_id": 1416547}}, {"model": "metainfo.source", "pk": 11553, "fields": {"orig_filename": "Krueger_Karl-Friedrich_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 300", "author": "", "orig_id": 1416548}}, {"model": "metainfo.source", "pk": 11554, "fields": {"orig_filename": "Kruegner_Ignaz-Sales_1781_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 300", "author": "", "orig_id": 1416549}}, {"model": "metainfo.source", "pk": 11555, "fields": {"orig_filename": "Kruepl_Anton_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416550}}, {"model": "metainfo.source", "pk": 11556, "fields": {"orig_filename": "Kruesz_Karoly-Krizosztom_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416551}}, {"model": "metainfo.source", "pk": 11557, "fields": {"orig_filename": "Krufft_Nikolaus_1779_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416552}}, {"model": "metainfo.source", "pk": 11558, "fields": {"orig_filename": "Krug_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301f.", "author": "", "orig_id": 1416553}}, {"model": "metainfo.source", "pk": 11559, "fields": {"orig_filename": "Kruis_Ferdinand_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302", "author": "", "orig_id": 1416554}}, {"model": "metainfo.source", "pk": 11560, "fields": {"orig_filename": "Kraus_Friedrich_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226f.", "author": "", "orig_id": 1415649}}, {"model": "metainfo.source", "pk": 11561, "fields": {"orig_filename": "Kraus_Fritz_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 227f.", "author": "", "orig_id": 1415721}}, {"model": "metainfo.source", "pk": 11562, "fields": {"orig_filename": "Kraus_Honorius_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228f.", "author": "", "orig_id": 1415725}}, {"model": "metainfo.source", "pk": 11563, "fields": {"orig_filename": "Kraus_Jakob_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229", "author": "", "orig_id": 1415726}}, {"model": "metainfo.source", "pk": 11564, "fields": {"orig_filename": "Kraus_Johann-Wenzel_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229", "author": "", "orig_id": 1415727}}, {"model": "metainfo.source", "pk": 11565, "fields": {"orig_filename": "Kraus_Karl_1764_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229f.", "author": "", "orig_id": 1415728}}, {"model": "metainfo.source", "pk": 11566, "fields": {"orig_filename": "Kraus_Karl_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 230ff.", "author": "", "orig_id": 1415730}}, {"model": "metainfo.source", "pk": 11567, "fields": {"orig_filename": "Kraus_Konrad_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415731}}, {"model": "metainfo.source", "pk": 11568, "fields": {"orig_filename": "Kraus_Marie-Gabriele_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415732}}, {"model": "metainfo.source", "pk": 11569, "fields": {"orig_filename": "Kraus_Oskar_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415733}}, {"model": "metainfo.source", "pk": 11570, "fields": {"orig_filename": "Kraus_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 233f.", "author": "", "orig_id": 1415735}}, {"model": "metainfo.source", "pk": 11571, "fields": {"orig_filename": "Kraus_Samuel_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234", "author": "", "orig_id": 1415737}}, {"model": "metainfo.source", "pk": 11572, "fields": {"orig_filename": "Kraus_Viktor_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234f.", "author": "", "orig_id": 1415738}}, {"model": "metainfo.source", "pk": 11573, "fields": {"orig_filename": "Krauthauf_Ferdinand_1830_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415809}}, {"model": "metainfo.source", "pk": 11574, "fields": {"orig_filename": "Krautschneider_Odorich_1818_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415810}}, {"model": "metainfo.source", "pk": 11575, "fields": {"orig_filename": "Krautwald-Annau_Joseph_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236f.", "author": "", "orig_id": 1415811}}, {"model": "metainfo.source", "pk": 11576, "fields": {"orig_filename": "Krauz-Kelles_Kazimierz_1872_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 237", "author": "", "orig_id": 1415812}}, {"model": "metainfo.source", "pk": 11577, "fields": {"orig_filename": "Kravogl_Johann-Nep_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415814}}, {"model": "metainfo.source", "pk": 11578, "fields": {"orig_filename": "Kravogl_Johann_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 237f.", "author": "", "orig_id": 1415813}}, {"model": "metainfo.source", "pk": 11579, "fields": {"orig_filename": "Kravogl_Josef_1870_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415815}}, {"model": "metainfo.source", "pk": 11580, "fields": {"orig_filename": "Kravogl_Paula_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415816}}, {"model": "metainfo.source", "pk": 11581, "fields": {"orig_filename": "Krawani_August_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238f.", "author": "", "orig_id": 1415817}}, {"model": "metainfo.source", "pk": 11582, "fields": {"orig_filename": "Krcal_August_1862_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239", "author": "", "orig_id": 1415818}}, {"model": "metainfo.source", "pk": 11583, "fields": {"orig_filename": "Krcek_Franz_1869_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239", "author": "", "orig_id": 1415819}}, {"model": "metainfo.source", "pk": 11584, "fields": {"orig_filename": "Krcmar_Jan_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239f.", "author": "", "orig_id": 1415820}}, {"model": "metainfo.source", "pk": 11585, "fields": {"orig_filename": "Krcmery_August-Horislav_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240", "author": "", "orig_id": 1415821}}, {"model": "metainfo.source", "pk": 11586, "fields": {"orig_filename": "Krebs_Hans_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240", "author": "", "orig_id": 1415822}}, {"model": "metainfo.source", "pk": 11587, "fields": {"orig_filename": "Krebs_Norbert_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240ff.", "author": "", "orig_id": 1415823}}, {"model": "metainfo.source", "pk": 11588, "fields": {"orig_filename": "Krechowiecki_Adam_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415824}}, {"model": "metainfo.source", "pk": 11589, "fields": {"orig_filename": "Kreco_Pero_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415825}}, {"model": "metainfo.source", "pk": 11590, "fields": {"orig_filename": "Krehahn_Karl_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415826}}, {"model": "metainfo.source", "pk": 11591, "fields": {"orig_filename": "Kreibich_Franz-Jakob_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415827}}, {"model": "metainfo.source", "pk": 11592, "fields": {"orig_filename": "Kreibich_Hans-Robert_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415828}}, {"model": "metainfo.source", "pk": 11593, "fields": {"orig_filename": "Kreibig_Eduard_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415829}}, {"model": "metainfo.source", "pk": 11594, "fields": {"orig_filename": "Kreibig_Josef-Clemens_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415830}}, {"model": "metainfo.source", "pk": 11595, "fields": {"orig_filename": "Kreichel_Andreas_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415899}}, {"model": "metainfo.source", "pk": 11596, "fields": {"orig_filename": "Kreichgauer_Damian_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415900}}, {"model": "metainfo.source", "pk": 11597, "fields": {"orig_filename": "Kreidl_Alois_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415901}}, {"model": "metainfo.source", "pk": 11598, "fields": {"orig_filename": "Kreidl_Regina_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415902}}, {"model": "metainfo.source", "pk": 11599, "fields": {"orig_filename": "Kreil_Benno_1779_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244f.", "author": "", "orig_id": 1415903}}, {"model": "metainfo.source", "pk": 11600, "fields": {"orig_filename": "Kreil_Karl_1798_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 245", "author": "", "orig_id": 1415904}}, {"model": "metainfo.source", "pk": 11601, "fields": {"orig_filename": "Kreisler_Karl_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 245f.", "author": "", "orig_id": 1415905}}, {"model": "metainfo.source", "pk": 11602, "fields": {"orig_filename": "Kreissle-Hellborn_Heinrich_1822_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246", "author": "", "orig_id": 1415906}}, {"model": "metainfo.source", "pk": 11603, "fields": {"orig_filename": "Krejcar_Jaromir_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246", "author": "", "orig_id": 1415907}}, {"model": "metainfo.source", "pk": 11604, "fields": {"orig_filename": "Krejci_Dobroslav_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246f.", "author": "", "orig_id": 1415908}}, {"model": "metainfo.source", "pk": 11605, "fields": {"orig_filename": "Krejci_Frantisek-Vaclav_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 247", "author": "", "orig_id": 1415909}}, {"model": "metainfo.source", "pk": 11606, "fields": {"orig_filename": "Krejci_Jan_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 247f.", "author": "", "orig_id": 1415910}}, {"model": "metainfo.source", "pk": 11607, "fields": {"orig_filename": "Krejci_Jan_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415911}}, {"model": "metainfo.source", "pk": 11608, "fields": {"orig_filename": "Krejci_Joseph_1821_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415912}}, {"model": "metainfo.source", "pk": 11609, "fields": {"orig_filename": "Krejci_Peter-Franz_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415913}}, {"model": "metainfo.source", "pk": 11610, "fields": {"orig_filename": "Krejcsi_Rezsoe_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248f.", "author": "", "orig_id": 1415914}}, {"model": "metainfo.source", "pk": 11611, "fields": {"orig_filename": "Krekich-Strassoldo-Treuland_Hans_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250", "author": "", "orig_id": 1415918}}, {"model": "metainfo.source", "pk": 11612, "fields": {"orig_filename": "Krek_Gregor-Gojmir_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 249f.", "author": "", "orig_id": 1415916}}, {"model": "metainfo.source", "pk": 11613, "fields": {"orig_filename": "Krek_Gregor_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 249", "author": "", "orig_id": 1415915}}, {"model": "metainfo.source", "pk": 11614, "fields": {"orig_filename": "Krek_Janez-Ev_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250", "author": "", "orig_id": 1415917}}, {"model": "metainfo.source", "pk": 11615, "fields": {"orig_filename": "Kreljanovic-Albinoni_Ivan_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250f.", "author": "", "orig_id": 1415919}}, {"model": "metainfo.source", "pk": 11616, "fields": {"orig_filename": "Kremann_Robert_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251", "author": "", "orig_id": 1415920}}, {"model": "metainfo.source", "pk": 11617, "fields": {"orig_filename": "Kremeir_Anna_1862_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251", "author": "", "orig_id": 1415989}}, {"model": "metainfo.source", "pk": 11618, "fields": {"orig_filename": "Kremel_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251f.", "author": "", "orig_id": 1415990}}, {"model": "metainfo.source", "pk": 11619, "fields": {"orig_filename": "Kremenetzky_Johann_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 252", "author": "", "orig_id": 1415991}}, {"model": "metainfo.source", "pk": 11620, "fields": {"orig_filename": "Kremer-Auenrode_Alois-Silverius_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1415998}}, {"model": "metainfo.source", "pk": 11621, "fields": {"orig_filename": "Kremer-Auenrode_Hugo_1833_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1415999}}, {"model": "metainfo.source", "pk": 11622, "fields": {"orig_filename": "Kremer_Aleksander-August-Kazimierz_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 252f.", "author": "", "orig_id": 1415992}}, {"model": "metainfo.source", "pk": 11623, "fields": {"orig_filename": "Kremer_Alfred_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 253f.", "author": "", "orig_id": 1415993}}, {"model": "metainfo.source", "pk": 11624, "fields": {"orig_filename": "Kremer_Johann-Heinrich_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254", "author": "", "orig_id": 1415994}}, {"model": "metainfo.source", "pk": 11625, "fields": {"orig_filename": "Kremer_Jozef_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254", "author": "", "orig_id": 1415995}}, {"model": "metainfo.source", "pk": 11626, "fields": {"orig_filename": "Kremer_Karol-Roman_1812_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254f.", "author": "", "orig_id": 1415996}}, {"model": "metainfo.source", "pk": 11627, "fields": {"orig_filename": "Kremlicka_Rudolf_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1416000}}, {"model": "metainfo.source", "pk": 11628, "fields": {"orig_filename": "Krempel_Heinrich_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255f.", "author": "", "orig_id": 1416001}}, {"model": "metainfo.source", "pk": 11629, "fields": {"orig_filename": "Krempl_Anton_1790_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256", "author": "", "orig_id": 1416002}}, {"model": "metainfo.source", "pk": 11630, "fields": {"orig_filename": "Krempl_Josef_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256", "author": "", "orig_id": 1416003}}, {"model": "metainfo.source", "pk": 11631, "fields": {"orig_filename": "Kremser_Eduard_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256f.", "author": "", "orig_id": 1416004}}, {"model": "metainfo.source", "pk": 11632, "fields": {"orig_filename": "Krenek_Karl_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 257f.", "author": "", "orig_id": 1416006}}, {"model": "metainfo.source", "pk": 11633, "fields": {"orig_filename": "Krennwallner_Paul_1876_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416083}}, {"model": "metainfo.source", "pk": 11634, "fields": {"orig_filename": "Krenn_August_1908_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416007}}, {"model": "metainfo.source", "pk": 11635, "fields": {"orig_filename": "Krenn_Edmund_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416008}}, {"model": "metainfo.source", "pk": 11636, "fields": {"orig_filename": "Krenn_Franz_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416009}}, {"model": "metainfo.source", "pk": 11637, "fields": {"orig_filename": "Krenn_Karl_1908_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258f.", "author": "", "orig_id": 1416010}}, {"model": "metainfo.source", "pk": 11638, "fields": {"orig_filename": "Krenn_Leopold_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416011}}, {"model": "metainfo.source", "pk": 11639, "fields": {"orig_filename": "Krenn_Robert-Adolf_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416012}}, {"model": "metainfo.source", "pk": 11640, "fields": {"orig_filename": "Kren_Otto_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 257", "author": "", "orig_id": 1416005}}, {"model": "metainfo.source", "pk": 11641, "fields": {"orig_filename": "Krepper_Johann_1799_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416085}}, {"model": "metainfo.source", "pk": 11642, "fields": {"orig_filename": "Krepp_Ignaz_1801_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259f.", "author": "", "orig_id": 1416084}}, {"model": "metainfo.source", "pk": 11643, "fields": {"orig_filename": "Kreser_Milan_1876_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416086}}, {"model": "metainfo.source", "pk": 11644, "fields": {"orig_filename": "Kresic_Mijo_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1419221}}, {"model": "metainfo.source", "pk": 11645, "fields": {"orig_filename": "Kresnik_Franjo_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416087}}, {"model": "metainfo.source", "pk": 11646, "fields": {"orig_filename": "Kresnik_Peter_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260f.", "author": "", "orig_id": 1416088}}, {"model": "metainfo.source", "pk": 11647, "fields": {"orig_filename": "Kress-Kressenstein_Georg_1783_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416090}}, {"model": "metainfo.source", "pk": 11648, "fields": {"orig_filename": "Kress_Josef_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 261", "author": "", "orig_id": 1416089}}, {"model": "metainfo.source", "pk": 11649, "fields": {"orig_filename": "Kress_Wilhelm_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 261f.", "author": "", "orig_id": 1411494}}, {"model": "metainfo.source", "pk": 11650, "fields": {"orig_filename": "Krestin_Lazar_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416091}}, {"model": "metainfo.source", "pk": 11651, "fields": {"orig_filename": "Kresznerics_Ferenc_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416092}}, {"model": "metainfo.source", "pk": 11652, "fields": {"orig_filename": "Kretschmann_Theobald_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262f.", "author": "", "orig_id": 1416093}}, {"model": "metainfo.source", "pk": 11653, "fields": {"orig_filename": "Kretschmar_Paul-Gustav_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 263", "author": "", "orig_id": 1416094}}, {"model": "metainfo.source", "pk": 11654, "fields": {"orig_filename": "Kretschmayr_Heinrich_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 263f.", "author": "", "orig_id": 1416095}}, {"model": "metainfo.source", "pk": 11655, "fields": {"orig_filename": "Kretschy_Michael_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416096}}, {"model": "metainfo.source", "pk": 11656, "fields": {"orig_filename": "Kretzer-Immertreu_Josef_1807_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265", "author": "", "orig_id": 1416099}}, {"model": "metainfo.source", "pk": 11657, "fields": {"orig_filename": "Kretz_Leodegar_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416097}}, {"model": "metainfo.source", "pk": 11658, "fields": {"orig_filename": "Kretz_Richard_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416098}}, {"model": "metainfo.source", "pk": 11659, "fields": {"orig_filename": "Kreuter_Franz-Xaver_1842_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265", "author": "", "orig_id": 1416100}}, {"model": "metainfo.source", "pk": 11660, "fields": {"orig_filename": "Kreuter_Julius_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265f.", "author": "", "orig_id": 1416101}}, {"model": "metainfo.source", "pk": 11661, "fields": {"orig_filename": "Kreutner_Simon_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 266", "author": "", "orig_id": 1416102}}, {"model": "metainfo.source", "pk": 11662, "fields": {"orig_filename": "Kreutzberg_Karl-Josef_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 266f.", "author": "", "orig_id": 1416104}}, {"model": "metainfo.source", "pk": 11663, "fields": {"orig_filename": "Krajcik_Johann_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415272}}, {"model": "metainfo.source", "pk": 11664, "fields": {"orig_filename": "Krajner_Imre_1791_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415273}}, {"model": "metainfo.source", "pk": 11665, "fields": {"orig_filename": "Krakauer_Alexander_1866_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415274}}, {"model": "metainfo.source", "pk": 11666, "fields": {"orig_filename": "Kral-Dobra-Voda_Adalbert_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197f.", "author": "", "orig_id": 1415347}}, {"model": "metainfo.source", "pk": 11667, "fields": {"orig_filename": "Kralicek_Rudolf_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198", "author": "", "orig_id": 1415348}}, {"model": "metainfo.source", "pk": 11668, "fields": {"orig_filename": "Kralik-Meyrswalden_Mathilde_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 199", "author": "", "orig_id": 1415351}}, {"model": "metainfo.source", "pk": 11669, "fields": {"orig_filename": "Kralik-Meyrswalden_Richard_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 199f.", "author": "", "orig_id": 1415352}}, {"model": "metainfo.source", "pk": 11670, "fields": {"orig_filename": "Kralik_Emil_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198", "author": "", "orig_id": 1415349}}, {"model": "metainfo.source", "pk": 11671, "fields": {"orig_filename": "Kralik_Emil_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198f.", "author": "", "orig_id": 1415350}}, {"model": "metainfo.source", "pk": 11672, "fields": {"orig_filename": "Kralj-Milarov_Ivka_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415355}}, {"model": "metainfo.source", "pk": 11673, "fields": {"orig_filename": "Kraljevic_Andeo_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415356}}, {"model": "metainfo.source", "pk": 11674, "fields": {"orig_filename": "Kraljevic_Benedikt_1765_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415357}}, {"model": "metainfo.source", "pk": 11675, "fields": {"orig_filename": "Kraljevic_Miroslav_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415358}}, {"model": "metainfo.source", "pk": 11676, "fields": {"orig_filename": "Kraljevic_Miroslav_1885_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201f.", "author": "", "orig_id": 1415359}}, {"model": "metainfo.source", "pk": 11677, "fields": {"orig_filename": "Kralj_Ivan_1792_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 200f.", "author": "", "orig_id": 1415354}}, {"model": "metainfo.source", "pk": 11678, "fields": {"orig_filename": "Krallert_Franz_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202", "author": "", "orig_id": 1415361}}, {"model": "metainfo.source", "pk": 11679, "fields": {"orig_filename": "Krall_Jakob_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202", "author": "", "orig_id": 1415360}}, {"model": "metainfo.source", "pk": 11680, "fields": {"orig_filename": "Kral_Janko_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196f.", "author": "", "orig_id": 1415343}}, {"model": "metainfo.source", "pk": 11681, "fields": {"orig_filename": "Kral_Johann-Nep_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415345}}, {"model": "metainfo.source", "pk": 11682, "fields": {"orig_filename": "Kral_Johann_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415344}}, {"model": "metainfo.source", "pk": 11683, "fields": {"orig_filename": "Kral_Josef_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415346}}, {"model": "metainfo.source", "pk": 11684, "fields": {"orig_filename": "Kramar_Karel_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202ff.", "author": "", "orig_id": 1415362}}, {"model": "metainfo.source", "pk": 11685, "fields": {"orig_filename": "Kramberger_Ernest_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415363}}, {"model": "metainfo.source", "pk": 11686, "fields": {"orig_filename": "Kramberger_Sofija_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415364}}, {"model": "metainfo.source", "pk": 11687, "fields": {"orig_filename": "Kramer-Drauburg_Max_1891_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205f.", "author": "", "orig_id": 1415444}}, {"model": "metainfo.source", "pk": 11688, "fields": {"orig_filename": "Kramerius_Vaclav-Rodomil_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415445}}, {"model": "metainfo.source", "pk": 11689, "fields": {"orig_filename": "Kramer_Ernst_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415439}}, {"model": "metainfo.source", "pk": 11690, "fields": {"orig_filename": "Kramer_Franz_1748_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415440}}, {"model": "metainfo.source", "pk": 11691, "fields": {"orig_filename": "Kramer_Friedrich_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204f.", "author": "", "orig_id": 1415441}}, {"model": "metainfo.source", "pk": 11692, "fields": {"orig_filename": "Kramer_Hans_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205", "author": "", "orig_id": 1415442}}, {"model": "metainfo.source", "pk": 11693, "fields": {"orig_filename": "Kramer_Leopold_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205", "author": "", "orig_id": 1415443}}, {"model": "metainfo.source", "pk": 11694, "fields": {"orig_filename": "Krammer_Franz_1798_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415446}}, {"model": "metainfo.source", "pk": 11695, "fields": {"orig_filename": "Kramolin_Eduard_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415447}}, {"model": "metainfo.source", "pk": 11696, "fields": {"orig_filename": "Kramolis_Cenek_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206f.", "author": "", "orig_id": 1415448}}, {"model": "metainfo.source", "pk": 11697, "fields": {"orig_filename": "Kramsall_Emil_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207", "author": "", "orig_id": 1415449}}, {"model": "metainfo.source", "pk": 11698, "fields": {"orig_filename": "Kranewitter_Alois_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207", "author": "", "orig_id": 1415450}}, {"model": "metainfo.source", "pk": 11699, "fields": {"orig_filename": "Kranewitter_Franz_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207f.", "author": "", "orig_id": 1415451}}, {"model": "metainfo.source", "pk": 11700, "fields": {"orig_filename": "Kranewitter_Joseph_1758_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 208", "author": "", "orig_id": 1415452}}, {"model": "metainfo.source", "pk": 11701, "fields": {"orig_filename": "Kranjcevic_Silvije-Strahimir_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 208f.", "author": "", "orig_id": 1415453}}, {"model": "metainfo.source", "pk": 11702, "fields": {"orig_filename": "Kranner_Josef-Andreas_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 209", "author": "", "orig_id": 1415454}}, {"model": "metainfo.source", "pk": 11703, "fields": {"orig_filename": "Kranzler_Johann-Georg_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415457}}, {"model": "metainfo.source", "pk": 11704, "fields": {"orig_filename": "Kranzl_Johann_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415456}}, {"model": "metainfo.source", "pk": 11705, "fields": {"orig_filename": "Kranz_Ludwig_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 209f.", "author": "", "orig_id": 1415455}}, {"model": "metainfo.source", "pk": 11706, "fields": {"orig_filename": "Krapac_Ivan_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415458}}, {"model": "metainfo.source", "pk": 11707, "fields": {"orig_filename": "Krapf_Albert_1766_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210f.", "author": "", "orig_id": 1415459}}, {"model": "metainfo.source", "pk": 11708, "fields": {"orig_filename": "Krapf_Philipp-Jakob_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211", "author": "", "orig_id": 1415460}}, {"model": "metainfo.source", "pk": 11709, "fields": {"orig_filename": "Krapka_Josef_1862_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211", "author": "", "orig_id": 1415461}}, {"model": "metainfo.source", "pk": 11710, "fields": {"orig_filename": "Krasan_Franz_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211f.", "author": "", "orig_id": 1415462}}, {"model": "metainfo.source", "pk": 11711, "fields": {"orig_filename": "Krasicki_Kazimierz_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415535}}, {"model": "metainfo.source", "pk": 11712, "fields": {"orig_filename": "Krasl_Frantisek_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415536}}, {"model": "metainfo.source", "pk": 11713, "fields": {"orig_filename": "Krasnopolski_Horaz_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415537}}, {"model": "metainfo.source", "pk": 11714, "fields": {"orig_filename": "Krasny-Ergen_Arnold_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213", "author": "", "orig_id": 1415539}}, {"model": "metainfo.source", "pk": 11715, "fields": {"orig_filename": "Krasny_Frantisek_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212f.", "author": "", "orig_id": 1415538}}, {"model": "metainfo.source", "pk": 11716, "fields": {"orig_filename": "Krassberger_Sigmund_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213", "author": "", "orig_id": 1415540}}, {"model": "metainfo.source", "pk": 11717, "fields": {"orig_filename": "Krasser_Fridolin_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213f.", "author": "", "orig_id": 1415541}}, {"model": "metainfo.source", "pk": 11718, "fields": {"orig_filename": "Krassnigg_Rudolf_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214", "author": "", "orig_id": 1415542}}, {"model": "metainfo.source", "pk": 11719, "fields": {"orig_filename": "Krastel_Friedrich_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214", "author": "", "orig_id": 1415543}}, {"model": "metainfo.source", "pk": 11720, "fields": {"orig_filename": "Kratky-Baschik_Anton_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415547}}, {"model": "metainfo.source", "pk": 11721, "fields": {"orig_filename": "Kratky_Hans_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214f.", "author": "", "orig_id": 1415544}}, {"model": "metainfo.source", "pk": 11722, "fields": {"orig_filename": "Kratky_Richard_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415545}}, {"model": "metainfo.source", "pk": 11723, "fields": {"orig_filename": "Kratky_Therese_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415546}}, {"model": "metainfo.source", "pk": 11724, "fields": {"orig_filename": "Kratochvil_Augustin_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415548}}, {"model": "metainfo.source", "pk": 11725, "fields": {"orig_filename": "Kratochvil_Jaroslav_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215f.", "author": "", "orig_id": 1415549}}, {"model": "metainfo.source", "pk": 11726, "fields": {"orig_filename": "Kratochvil_Josef_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216", "author": "", "orig_id": 1415550}}, {"model": "metainfo.source", "pk": 11727, "fields": {"orig_filename": "Kratochvil_Vaclav_1861_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216", "author": "", "orig_id": 1415551}}, {"model": "metainfo.source", "pk": 11728, "fields": {"orig_filename": "Kratschmer-Forstburg_Florian_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216f.", "author": "", "orig_id": 1415552}}, {"model": "metainfo.source", "pk": 11729, "fields": {"orig_filename": "Kratter_Franz_1758_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217", "author": "", "orig_id": 1415553}}, {"model": "metainfo.source", "pk": 11730, "fields": {"orig_filename": "Kratter_Franz_1760_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217", "author": "", "orig_id": 1415554}}, {"model": "metainfo.source", "pk": 11731, "fields": {"orig_filename": "Kratter_Julius_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217f.", "author": "", "orig_id": 1415555}}, {"model": "metainfo.source", "pk": 11732, "fields": {"orig_filename": "Krattner_Karl_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 218", "author": "", "orig_id": 1415626}}, {"model": "metainfo.source", "pk": 11733, "fields": {"orig_filename": "Kratzer_Karl_1827_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415629}}, {"model": "metainfo.source", "pk": 11734, "fields": {"orig_filename": "Kratzl_Karl_1852_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415630}}, {"model": "metainfo.source", "pk": 11735, "fields": {"orig_filename": "Kratzmann_Ernst_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219f.", "author": "", "orig_id": 1415631}}, {"model": "metainfo.source", "pk": 11736, "fields": {"orig_filename": "Kratzmann_Karl-Gustav-Philipp_1812_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220", "author": "", "orig_id": 1415632}}, {"model": "metainfo.source", "pk": 11737, "fields": {"orig_filename": "Kratzwall_Franz_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220", "author": "", "orig_id": 1415633}}, {"model": "metainfo.source", "pk": 11738, "fields": {"orig_filename": "Kratz_Anna_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 218f.", "author": "", "orig_id": 1415627}}, {"model": "metainfo.source", "pk": 11739, "fields": {"orig_filename": "Kratz_Josefine_1876_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415628}}, {"model": "metainfo.source", "pk": 11740, "fields": {"orig_filename": "Kraus-Elislago_Anton-Joseph_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 235", "author": "", "orig_id": 1415739}}, {"model": "metainfo.source", "pk": 11741, "fields": {"orig_filename": "Kraus-Elislago_Heinrich_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 235", "author": "", "orig_id": 1415740}}, {"model": "metainfo.source", "pk": 11742, "fields": {"orig_filename": "Krause_Otto-Hermann_1870_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415741}}, {"model": "metainfo.source", "pk": 11743, "fields": {"orig_filename": "Kraushaar_Karl_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415808}}, {"model": "metainfo.source", "pk": 11744, "fields": {"orig_filename": "Krauss_Franz_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226", "author": "", "orig_id": 1415647}}, {"model": "metainfo.source", "pk": 11745, "fields": {"orig_filename": "Krauss_Franz_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226", "author": "", "orig_id": 1415648}}, {"model": "metainfo.source", "pk": 11746, "fields": {"orig_filename": "Krauss_Gustav-Johannes_1864_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415722}}, {"model": "metainfo.source", "pk": 11747, "fields": {"orig_filename": "Krauss_Helene_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415724}}, {"model": "metainfo.source", "pk": 11748, "fields": {"orig_filename": "Krauss_Karl_1789_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 230", "author": "", "orig_id": 1415729}}, {"model": "metainfo.source", "pk": 11749, "fields": {"orig_filename": "Krauss_Philipp_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232f.", "author": "", "orig_id": 1415734}}, {"model": "metainfo.source", "pk": 11750, "fields": {"orig_filename": "Krauss_Rudolf_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234", "author": "", "orig_id": 1415736}}, {"model": "metainfo.source", "pk": 11751, "fields": {"orig_filename": "Kraus_Alfred_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220f.", "author": "", "orig_id": 1415634}}, {"model": "metainfo.source", "pk": 11752, "fields": {"orig_filename": "Kraus_Alfred_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 221f.", "author": "", "orig_id": 1415635}}, {"model": "metainfo.source", "pk": 11753, "fields": {"orig_filename": "Kraus_Alois_1840_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1415636}}, {"model": "metainfo.source", "pk": 11754, "fields": {"orig_filename": "Kraus_August_1812_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222", "author": "", "orig_id": 1415637}}, {"model": "metainfo.source", "pk": 11755, "fields": {"orig_filename": "Kraus_Clementine_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222", "author": "", "orig_id": 1415638}}, {"model": "metainfo.source", "pk": 11756, "fields": {"orig_filename": "Kraus_Eduard_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222f.", "author": "", "orig_id": 1415639}}, {"model": "metainfo.source", "pk": 11757, "fields": {"orig_filename": "Kraus_Emil_1897_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 223", "author": "", "orig_id": 1415640}}, {"model": "metainfo.source", "pk": 11758, "fields": {"orig_filename": "Kraus_Ernst-Wilhelm_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 223f.", "author": "", "orig_id": 1415641}}, {"model": "metainfo.source", "pk": 11759, "fields": {"orig_filename": "Kraus_Felix_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 224", "author": "", "orig_id": 1415642}}, {"model": "metainfo.source", "pk": 11760, "fields": {"orig_filename": "Kraus_Felix_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 224f.", "author": "", "orig_id": 1415643}}, {"model": "metainfo.source", "pk": 11761, "fields": {"orig_filename": "Kraus_Felix_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225", "author": "", "orig_id": 1415644}}, {"model": "metainfo.source", "pk": 11762, "fields": {"orig_filename": "Kraus_Ferdinand_1848_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225", "author": "", "orig_id": 1415645}}, {"model": "metainfo.source", "pk": 11763, "fields": {"orig_filename": "Kraus_Franz_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225f.", "author": "", "orig_id": 1415646}}, {"model": "metainfo.source", "pk": 11764, "fields": {"orig_filename": "Kraus_Friedrich-Salomon_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 227", "author": "", "orig_id": 1415720}}, {"model": "metainfo.source", "pk": 11765, "fields": {"orig_filename": "Kovacevic_Ferdo_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416436}}, {"model": "metainfo.source", "pk": 11766, "fields": {"orig_filename": "Kovacevic_Milovan_1905_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166f.", "author": "", "orig_id": 1416437}}, {"model": "metainfo.source", "pk": 11767, "fields": {"orig_filename": "Kovachich_Marton-Gyoergy_1744_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416439}}, {"model": "metainfo.source", "pk": 11768, "fields": {"orig_filename": "Kovacic_Ante_1854_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416440}}, {"model": "metainfo.source", "pk": 11769, "fields": {"orig_filename": "Kovacic_Fran_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167f.", "author": "", "orig_id": 1416441}}, {"model": "metainfo.source", "pk": 11770, "fields": {"orig_filename": "Kovacic_Ivan_1913_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 168", "author": "", "orig_id": 1416442}}, {"model": "metainfo.source", "pk": 11771, "fields": {"orig_filename": "Kovacic_Viktor_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 168", "author": "", "orig_id": 1416443}}, {"model": "metainfo.source", "pk": 11772, "fields": {"orig_filename": "Kovacs-Erdoetelek_Jozsef_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416534}}, {"model": "metainfo.source", "pk": 11773, "fields": {"orig_filename": "Kovacs-Kevehaza_Gyula_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416535}}, {"model": "metainfo.source", "pk": 11774, "fields": {"orig_filename": "Kovacs-Martiny_Paul-Gabriel_1782_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416536}}, {"model": "metainfo.source", "pk": 11775, "fields": {"orig_filename": "Kovacs-Nagyajta_Istvan_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416537}}, {"model": "metainfo.source", "pk": 11776, "fields": {"orig_filename": "Kovacs-Sebestyen_Endre_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416538}}, {"model": "metainfo.source", "pk": 11777, "fields": {"orig_filename": "Kovacs_Albert_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416444}}, {"model": "metainfo.source", "pk": 11778, "fields": {"orig_filename": "Kovacs_August_1747_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416445}}, {"model": "metainfo.source", "pk": 11779, "fields": {"orig_filename": "Kovacs_Friedrich_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169f.", "author": "", "orig_id": 1416447}}, {"model": "metainfo.source", "pk": 11780, "fields": {"orig_filename": "Kovacs_Gyula_1815_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416448}}, {"model": "metainfo.source", "pk": 11781, "fields": {"orig_filename": "Kovacs_Josef_1799_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416449}}, {"model": "metainfo.source", "pk": 11782, "fields": {"orig_filename": "Kovacs_Karel_1880_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416450}}, {"model": "metainfo.source", "pk": 11783, "fields": {"orig_filename": "Kovacs_Lajos_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170f.", "author": "", "orig_id": 1416524}}, {"model": "metainfo.source", "pk": 11784, "fields": {"orig_filename": "Kovacs_Markus-Anton_1815_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416526}}, {"model": "metainfo.source", "pk": 11785, "fields": {"orig_filename": "Kovacs_Markus_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416525}}, {"model": "metainfo.source", "pk": 11786, "fields": {"orig_filename": "Kovacs_Matyas_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416527}}, {"model": "metainfo.source", "pk": 11787, "fields": {"orig_filename": "Kovacs_Mihaly_1768_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416528}}, {"model": "metainfo.source", "pk": 11788, "fields": {"orig_filename": "Kovacs_Mihaly_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416529}}, {"model": "metainfo.source", "pk": 11789, "fields": {"orig_filename": "Kovacs_Oedoen_1844_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416530}}, {"model": "metainfo.source", "pk": 11790, "fields": {"orig_filename": "Kovacs_Pal_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416531}}, {"model": "metainfo.source", "pk": 11791, "fields": {"orig_filename": "Kovacs_Pal_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416532}}, {"model": "metainfo.source", "pk": 11792, "fields": {"orig_filename": "Kovacs_Pal_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172f.", "author": "", "orig_id": 1416533}}, {"model": "metainfo.source", "pk": 11793, "fields": {"orig_filename": "Kovarik_Frantisek_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416540}}, {"model": "metainfo.source", "pk": 11794, "fields": {"orig_filename": "Kovarovic_Karel_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416541}}, {"model": "metainfo.source", "pk": 11795, "fields": {"orig_filename": "Kovar_Emanuel_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416539}}, {"model": "metainfo.source", "pk": 11796, "fields": {"orig_filename": "Kowalczyk_Johann_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174f.", "author": "", "orig_id": 1416542}}, {"model": "metainfo.source", "pk": 11797, "fields": {"orig_filename": "Kowarzik_Josef_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416611}}, {"model": "metainfo.source", "pk": 11798, "fields": {"orig_filename": "Kowarzik_Rudolf_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175f.", "author": "", "orig_id": 1416612}}, {"model": "metainfo.source", "pk": 11799, "fields": {"orig_filename": "Kowarz_Ferdinand_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416543}}, {"model": "metainfo.source", "pk": 11800, "fields": {"orig_filename": "Koydl_Theodor_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416613}}, {"model": "metainfo.source", "pk": 11801, "fields": {"orig_filename": "Kozacek_Joseph_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416614}}, {"model": "metainfo.source", "pk": 11802, "fields": {"orig_filename": "Kozakiewicz_Antoni_1841_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416616}}, {"model": "metainfo.source", "pk": 11803, "fields": {"orig_filename": "Kozak_Jevhen_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416615}}, {"model": "metainfo.source", "pk": 11804, "fields": {"orig_filename": "Kozanek_Jan_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176f.", "author": "", "orig_id": 1416617}}, {"model": "metainfo.source", "pk": 11805, "fields": {"orig_filename": "Kozarac_Ivan_1885_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416618}}, {"model": "metainfo.source", "pk": 11806, "fields": {"orig_filename": "Kozarac_Josip_1858_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416619}}, {"model": "metainfo.source", "pk": 11807, "fields": {"orig_filename": "Kozarcanin_Ivo_1911_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416620}}, {"model": "metainfo.source", "pk": 11808, "fields": {"orig_filename": "Kozelj_Matija_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177f.", "author": "", "orig_id": 1416621}}, {"model": "metainfo.source", "pk": 11809, "fields": {"orig_filename": "Kozeluch_Katharina_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178", "author": "", "orig_id": 1416622}}, {"model": "metainfo.source", "pk": 11810, "fields": {"orig_filename": "Kozeluch_Leopold-Anton_1747_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178", "author": "", "orig_id": 1416623}}, {"model": "metainfo.source", "pk": 11811, "fields": {"orig_filename": "Kozenn_Blasius_1821_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178f.", "author": "", "orig_id": 1416624}}, {"model": "metainfo.source", "pk": 11812, "fields": {"orig_filename": "Kozicki_Wladyslaw_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416625}}, {"model": "metainfo.source", "pk": 11813, "fields": {"orig_filename": "Kozics_Franz_1864_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416626}}, {"model": "metainfo.source", "pk": 11814, "fields": {"orig_filename": "Koziebrodzki_Wladyslaw-Bolesta_1839_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416627}}, {"model": "metainfo.source", "pk": 11815, "fields": {"orig_filename": "Kozina_Alexander_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416628}}, {"model": "metainfo.source", "pk": 11816, "fields": {"orig_filename": "Kozisek_Josef_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416629}}, {"model": "metainfo.source", "pk": 11817, "fields": {"orig_filename": "Kozlowski_Wlodzimierz_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416700}}, {"model": "metainfo.source", "pk": 11818, "fields": {"orig_filename": "Kozlowski_Zygmunt-Bolesta_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180f.", "author": "", "orig_id": 1416701}}, {"model": "metainfo.source", "pk": 11819, "fields": {"orig_filename": "Kozma_Andor_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181", "author": "", "orig_id": 1416702}}, {"model": "metainfo.source", "pk": 11820, "fields": {"orig_filename": "Kozmian_Stanislaw_1836_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181", "author": "", "orig_id": 1416703}}, {"model": "metainfo.source", "pk": 11821, "fields": {"orig_filename": "Kozubowski_Antoni_1805_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181f.", "author": "", "orig_id": 1416704}}, {"model": "metainfo.source", "pk": 11822, "fields": {"orig_filename": "Kraal_Josef_1887_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416705}}, {"model": "metainfo.source", "pk": 11823, "fields": {"orig_filename": "Kracher_Ferdinand_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416706}}, {"model": "metainfo.source", "pk": 11824, "fields": {"orig_filename": "Kracher_Joseph-Mathias_1752_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416707}}, {"model": "metainfo.source", "pk": 11825, "fields": {"orig_filename": "Krackowizer_Ernst_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182f.", "author": "", "orig_id": 1416708}}, {"model": "metainfo.source", "pk": 11826, "fields": {"orig_filename": "Krackowizer_Ferdinand_1844_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183", "author": "", "orig_id": 1416709}}, {"model": "metainfo.source", "pk": 11827, "fields": {"orig_filename": "Krackowizer_Ferdinand_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183", "author": "", "orig_id": 1416710}}, {"model": "metainfo.source", "pk": 11828, "fields": {"orig_filename": "Krackowizer_Franz-Stefan_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183f.", "author": "", "orig_id": 1416711}}, {"model": "metainfo.source", "pk": 11829, "fields": {"orig_filename": "Krackowizer_Hermann_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416712}}, {"model": "metainfo.source", "pk": 11830, "fields": {"orig_filename": "Kraegel_Ernst-Josef_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416713}}, {"model": "metainfo.source", "pk": 11831, "fields": {"orig_filename": "Kraehmer_Caroline_1794_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416714}}, {"model": "metainfo.source", "pk": 11832, "fields": {"orig_filename": "Kraehmer_Johann-Ernst_1795_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184f.", "author": "", "orig_id": 1416715}}, {"model": "metainfo.source", "pk": 11833, "fields": {"orig_filename": "Kraelitz-Greifenhorst_Friedrich-Johann_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185", "author": "", "orig_id": 1416716}}, {"model": "metainfo.source", "pk": 11834, "fields": {"orig_filename": "Kraemer-Widl_Marie_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 186", "author": "", "orig_id": 1416720}}, {"model": "metainfo.source", "pk": 11835, "fields": {"orig_filename": "Kraemer_August_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185", "author": "", "orig_id": 1416717}}, {"model": "metainfo.source", "pk": 11836, "fields": {"orig_filename": "Kraemer_Johann-Viktor_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185f.", "author": "", "orig_id": 1416718}}, {"model": "metainfo.source", "pk": 11837, "fields": {"orig_filename": "Kraemer_Richard_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 186", "author": "", "orig_id": 1416719}}, {"model": "metainfo.source", "pk": 11838, "fields": {"orig_filename": "Kraenzl_Josef-Leopold_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416721}}, {"model": "metainfo.source", "pk": 11839, "fields": {"orig_filename": "Kraenzl_Susanne_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416722}}, {"model": "metainfo.source", "pk": 11840, "fields": {"orig_filename": "Krafft-Ebing_Richard_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 190f.", "author": "", "orig_id": 1415253}}, {"model": "metainfo.source", "pk": 11841, "fields": {"orig_filename": "Krafft_Albrecht_1816_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416723}}, {"model": "metainfo.source", "pk": 11842, "fields": {"orig_filename": "Krafft_Barbara_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187f.", "author": "", "orig_id": 1416724}}, {"model": "metainfo.source", "pk": 11843, "fields": {"orig_filename": "Krafft_Guido_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 188", "author": "", "orig_id": 1415249}}, {"model": "metainfo.source", "pk": 11844, "fields": {"orig_filename": "Krafft_Johann-Peter_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 188f.", "author": "", "orig_id": 1415250}}, {"model": "metainfo.source", "pk": 11845, "fields": {"orig_filename": "Krafft_Josef_1786_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 189f.", "author": "", "orig_id": 1415251}}, {"model": "metainfo.source", "pk": 11846, "fields": {"orig_filename": "Krafft_Marie_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 190", "author": "", "orig_id": 1415252}}, {"model": "metainfo.source", "pk": 11847, "fields": {"orig_filename": "Kraftel_Richard_1860_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415262}}, {"model": "metainfo.source", "pk": 11848, "fields": {"orig_filename": "Kraft_Alois_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415254}}, {"model": "metainfo.source", "pk": 11849, "fields": {"orig_filename": "Kraft_Amalie_1840_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415255}}, {"model": "metainfo.source", "pk": 11850, "fields": {"orig_filename": "Kraft_Anton_1752_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415256}}, {"model": "metainfo.source", "pk": 11851, "fields": {"orig_filename": "Kraft_August_1891_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1456200}}, {"model": "metainfo.source", "pk": 11852, "fields": {"orig_filename": "Kraft_Emil_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191f.", "author": "", "orig_id": 1415257}}, {"model": "metainfo.source", "pk": 11853, "fields": {"orig_filename": "Kraft_Josef_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415258}}, {"model": "metainfo.source", "pk": 11854, "fields": {"orig_filename": "Kraft_Karl_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415259}}, {"model": "metainfo.source", "pk": 11855, "fields": {"orig_filename": "Kraft_Maximilian_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415260}}, {"model": "metainfo.source", "pk": 11856, "fields": {"orig_filename": "Kraft_Nikolaus_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415261}}, {"model": "metainfo.source", "pk": 11857, "fields": {"orig_filename": "Krahl_Ernst-August_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415263}}, {"model": "metainfo.source", "pk": 11858, "fields": {"orig_filename": "Krahl_Karl_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415264}}, {"model": "metainfo.source", "pk": 11859, "fields": {"orig_filename": "Krahuletz_Johann_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193f.", "author": "", "orig_id": 1415265}}, {"model": "metainfo.source", "pk": 11860, "fields": {"orig_filename": "Kraigher-Porges_Josepha_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415266}}, {"model": "metainfo.source", "pk": 11861, "fields": {"orig_filename": "Krainer_Paul_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415267}}, {"model": "metainfo.source", "pk": 11862, "fields": {"orig_filename": "Krainski_Maurycy_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415268}}, {"model": "metainfo.source", "pk": 11863, "fields": {"orig_filename": "Krainz_Johann_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194f.", "author": "", "orig_id": 1415269}}, {"model": "metainfo.source", "pk": 11864, "fields": {"orig_filename": "Krainz_Josef_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 195", "author": "", "orig_id": 1415270}}, {"model": "metainfo.source", "pk": 11865, "fields": {"orig_filename": "Krainz_Wilfried_1895_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 195f.", "author": "", "orig_id": 1415271}}, {"model": "metainfo.source", "pk": 11866, "fields": {"orig_filename": "Korn_Johann-Michael_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129", "author": "", "orig_id": 1415885}}, {"model": "metainfo.source", "pk": 11867, "fields": {"orig_filename": "Korn_Philipp-Anton_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415886}}, {"model": "metainfo.source", "pk": 11868, "fields": {"orig_filename": "Korn_Wenzel_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415887}}, {"model": "metainfo.source", "pk": 11869, "fields": {"orig_filename": "Korn_Wilhelmine_1786_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415888}}, {"model": "metainfo.source", "pk": 11870, "fields": {"orig_filename": "Korolija_Mirko_1886_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415971}}, {"model": "metainfo.source", "pk": 11871, "fields": {"orig_filename": "Korompay_Adolf_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415972}}, {"model": "metainfo.source", "pk": 11872, "fields": {"orig_filename": "Korompay_Gustav_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415973}}, {"model": "metainfo.source", "pk": 11873, "fields": {"orig_filename": "Korosec_Anton_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135f.", "author": "", "orig_id": 1415974}}, {"model": "metainfo.source", "pk": 11874, "fields": {"orig_filename": "Korper-Marienwerth_Karl_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 136", "author": "", "orig_id": 1415975}}, {"model": "metainfo.source", "pk": 11875, "fields": {"orig_filename": "Korponay-Komonka_Janos_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415976}}, {"model": "metainfo.source", "pk": 11876, "fields": {"orig_filename": "Korschann_Franz_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415977}}, {"model": "metainfo.source", "pk": 11877, "fields": {"orig_filename": "Korschann_Karl_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415978}}, {"model": "metainfo.source", "pk": 11878, "fields": {"orig_filename": "Korschann_Rudolf_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415979}}, {"model": "metainfo.source", "pk": 11879, "fields": {"orig_filename": "Kortleitner_Franz-Xaver_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137f.", "author": "", "orig_id": 1415980}}, {"model": "metainfo.source", "pk": 11880, "fields": {"orig_filename": "Kortschak_Johann_1849_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415981}}, {"model": "metainfo.source", "pk": 11881, "fields": {"orig_filename": "Kortz_Paul_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415982}}, {"model": "metainfo.source", "pk": 11882, "fields": {"orig_filename": "Korytko_Emil_1813_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415983}}, {"model": "metainfo.source", "pk": 11883, "fields": {"orig_filename": "Korytowski_Wiltold_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138f.", "author": "", "orig_id": 1415984}}, {"model": "metainfo.source", "pk": 11884, "fields": {"orig_filename": "Korzeniowski_Jozef_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 139", "author": "", "orig_id": 1415985}}, {"model": "metainfo.source", "pk": 11885, "fields": {"orig_filename": "Kosarek_Adolf_1830_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140", "author": "", "orig_id": 1415988}}, {"model": "metainfo.source", "pk": 11886, "fields": {"orig_filename": "Kosar_Franc_1823_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140", "author": "", "orig_id": 1415987}}, {"model": "metainfo.source", "pk": 11887, "fields": {"orig_filename": "Koscak_Ivan_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140f.", "author": "", "orig_id": 1416064}}, {"model": "metainfo.source", "pk": 11888, "fields": {"orig_filename": "Koscevic_Vjekoslav_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416065}}, {"model": "metainfo.source", "pk": 11889, "fields": {"orig_filename": "Koschat_Thomas_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141f.", "author": "", "orig_id": 1416079}}, {"model": "metainfo.source", "pk": 11890, "fields": {"orig_filename": "Koschich_Tobias-Karl_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142", "author": "", "orig_id": 1416080}}, {"model": "metainfo.source", "pk": 11891, "fields": {"orig_filename": "Koschier_Hans_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142", "author": "", "orig_id": 1416081}}, {"model": "metainfo.source", "pk": 11892, "fields": {"orig_filename": "Koschier_Laurenz_1804_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142f.", "author": "", "orig_id": 1416082}}, {"model": "metainfo.source", "pk": 11893, "fields": {"orig_filename": "Kosch_Franz_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416066}}, {"model": "metainfo.source", "pk": 11894, "fields": {"orig_filename": "Kosch_Josef_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416078}}, {"model": "metainfo.source", "pk": 11895, "fields": {"orig_filename": "Kosegarten_Wilhelm_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143", "author": "", "orig_id": 1416153}}, {"model": "metainfo.source", "pk": 11896, "fields": {"orig_filename": "Kosek_Josef_1780_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143", "author": "", "orig_id": 1416155}}, {"model": "metainfo.source", "pk": 11897, "fields": {"orig_filename": "Kosel_Hermann-Clemens_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143f.", "author": "", "orig_id": 1416156}}, {"model": "metainfo.source", "pk": 11898, "fields": {"orig_filename": "Kosel_Mansuet-Johann_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144", "author": "", "orig_id": 1416157}}, {"model": "metainfo.source", "pk": 11899, "fields": {"orig_filename": "Kosic_Baldo_1829_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144", "author": "", "orig_id": 1416158}}, {"model": "metainfo.source", "pk": 11900, "fields": {"orig_filename": "Kosier_Ljubomir_1897_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144f.", "author": "", "orig_id": 1416159}}, {"model": "metainfo.source", "pk": 11901, "fields": {"orig_filename": "Kosina_Jan-Ev_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416160}}, {"model": "metainfo.source", "pk": 11902, "fields": {"orig_filename": "Kosinski_Wladyslaw_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416161}}, {"model": "metainfo.source", "pk": 11903, "fields": {"orig_filename": "Kosir_Franc_1906_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416162}}, {"model": "metainfo.source", "pk": 11904, "fields": {"orig_filename": "Kosir_Pavel_1878_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145f.", "author": "", "orig_id": 1416164}}, {"model": "metainfo.source", "pk": 11905, "fields": {"orig_filename": "Kosjek_Gustav_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416165}}, {"model": "metainfo.source", "pk": 11906, "fields": {"orig_filename": "Kosler_Franz-Xaver_1864_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416166}}, {"model": "metainfo.source", "pk": 11907, "fields": {"orig_filename": "Kosler_Josef_1822_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416167}}, {"model": "metainfo.source", "pk": 11908, "fields": {"orig_filename": "Kosler_Peter_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146f.", "author": "", "orig_id": 1416168}}, {"model": "metainfo.source", "pk": 11909, "fields": {"orig_filename": "Kosmac_Jurij_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147", "author": "", "orig_id": 1416169}}, {"model": "metainfo.source", "pk": 11910, "fields": {"orig_filename": "Kosmak_Vaclav_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147", "author": "", "orig_id": 1416170}}, {"model": "metainfo.source", "pk": 11911, "fields": {"orig_filename": "Kosovel_Srecko_1904_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147f.", "author": "", "orig_id": 1416171}}, {"model": "metainfo.source", "pk": 11912, "fields": {"orig_filename": "Kossak_Juliusz-Fortunat_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149", "author": "", "orig_id": 1416243}}, {"model": "metainfo.source", "pk": 11913, "fields": {"orig_filename": "Kossak_Karl-Ludwig_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149", "author": "", "orig_id": 1416244}}, {"model": "metainfo.source", "pk": 11914, "fields": {"orig_filename": "Kossak_Leon_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149f.", "author": "", "orig_id": 1416245}}, {"model": "metainfo.source", "pk": 11915, "fields": {"orig_filename": "Kossak_Wojciech_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 150", "author": "", "orig_id": 1416246}}, {"model": "metainfo.source", "pk": 11916, "fields": {"orig_filename": "Kossmat_Franz_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 150f.", "author": "", "orig_id": 1416247}}, {"model": "metainfo.source", "pk": 11917, "fields": {"orig_filename": "Kossovich_Karoly_1803_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416248}}, {"model": "metainfo.source", "pk": 11918, "fields": {"orig_filename": "Kossowicz_Alexander_1874_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416249}}, {"model": "metainfo.source", "pk": 11919, "fields": {"orig_filename": "Kossowski_Henryk_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416250}}, {"model": "metainfo.source", "pk": 11920, "fields": {"orig_filename": "Kossuth-Udvard-Kossut_Ferenc_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151f.", "author": "", "orig_id": 1416251}}, {"model": "metainfo.source", "pk": 11921, "fields": {"orig_filename": "Kossuth-Udvard-Kossut_Lajos_1802_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 152f.", "author": "", "orig_id": 1416252}}, {"model": "metainfo.source", "pk": 11922, "fields": {"orig_filename": "Koss_Karl_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 148", "author": "", "orig_id": 1416172}}, {"model": "metainfo.source", "pk": 11923, "fields": {"orig_filename": "Koss_Rudolf_1884_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 148f.", "author": "", "orig_id": 1416173}}, {"model": "metainfo.source", "pk": 11924, "fields": {"orig_filename": "Kostanecki_Kazimierz_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 153f.", "author": "", "orig_id": 1416253}}, {"model": "metainfo.source", "pk": 11925, "fields": {"orig_filename": "Kostelecky_Vincenz-Franz_1801_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154", "author": "", "orig_id": 1416254}}, {"model": "metainfo.source", "pk": 11926, "fields": {"orig_filename": "Kostersitz-Marenhorst_Karl_1839_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154f.", "author": "", "orig_id": 1416256}}, {"model": "metainfo.source", "pk": 11927, "fields": {"orig_filename": "Kostersitz_Ubald_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154", "author": "", "orig_id": 1416255}}, {"model": "metainfo.source", "pk": 11928, "fields": {"orig_filename": "Kostetzky_Dominik_1753_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155", "author": "", "orig_id": 1416257}}, {"model": "metainfo.source", "pk": 11929, "fields": {"orig_filename": "Kostial_Ivan_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155", "author": "", "orig_id": 1416258}}, {"model": "metainfo.source", "pk": 11930, "fields": {"orig_filename": "Kostic_Lazar_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155f.", "author": "", "orig_id": 1416259}}, {"model": "metainfo.source", "pk": 11931, "fields": {"orig_filename": "Kostic_Milan_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416260}}, {"model": "metainfo.source", "pk": 11932, "fields": {"orig_filename": "Kostin-Kolakiewicz_Adrienne_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416261}}, {"model": "metainfo.source", "pk": 11933, "fields": {"orig_filename": "Kostlivy_Stanislav_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416262}}, {"model": "metainfo.source", "pk": 11934, "fields": {"orig_filename": "Kostner_Alois_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416263}}, {"model": "metainfo.source", "pk": 11935, "fields": {"orig_filename": "Kostrencic_Ivan_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156f.", "author": "", "orig_id": 1416264}}, {"model": "metainfo.source", "pk": 11936, "fields": {"orig_filename": "Kosutany_Tamas_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157", "author": "", "orig_id": 1416265}}, {"model": "metainfo.source", "pk": 11937, "fields": {"orig_filename": "Kosztka_Tivadar_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157f.", "author": "", "orig_id": 1416338}}, {"model": "metainfo.source", "pk": 11938, "fields": {"orig_filename": "Kos_Franc_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 139f.", "author": "", "orig_id": 1415986}}, {"model": "metainfo.source", "pk": 11939, "fields": {"orig_filename": "Kotarbinski_Jozef_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 158", "author": "", "orig_id": 1416339}}, {"model": "metainfo.source", "pk": 11940, "fields": {"orig_filename": "Kotera_Jan_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 158f.", "author": "", "orig_id": 1416340}}, {"model": "metainfo.source", "pk": 11941, "fields": {"orig_filename": "Kothgasser_Anton_1769_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 159", "author": "", "orig_id": 1416341}}, {"model": "metainfo.source", "pk": 11942, "fields": {"orig_filename": "Kotlar_Vaclav_1871_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416342}}, {"model": "metainfo.source", "pk": 11943, "fields": {"orig_filename": "Kotschy_Heinrich-Joh-Gottfried_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416343}}, {"model": "metainfo.source", "pk": 11944, "fields": {"orig_filename": "Kotschy_Theodor_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416344}}, {"model": "metainfo.source", "pk": 11945, "fields": {"orig_filename": "Kotsis_Aleksander_1836_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160f.", "author": "", "orig_id": 1416345}}, {"model": "metainfo.source", "pk": 11946, "fields": {"orig_filename": "Kotsmich_Vojtech_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416346}}, {"model": "metainfo.source", "pk": 11947, "fields": {"orig_filename": "Kottaun_Leopold_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416349}}, {"model": "metainfo.source", "pk": 11948, "fields": {"orig_filename": "Kotterba_Karl_1800_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161f.", "author": "", "orig_id": 1416350}}, {"model": "metainfo.source", "pk": 11949, "fields": {"orig_filename": "Kottie_Johann-Nep_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162", "author": "", "orig_id": 1416351}}, {"model": "metainfo.source", "pk": 11950, "fields": {"orig_filename": "Kottulinsky-Kottulin_Adalbert_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162", "author": "", "orig_id": 1416352}}, {"model": "metainfo.source", "pk": 11951, "fields": {"orig_filename": "Kott_Frantisek-Bedrich_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416347}}, {"model": "metainfo.source", "pk": 11952, "fields": {"orig_filename": "Kott_Frantisek-Stepan_1825_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416348}}, {"model": "metainfo.source", "pk": 11953, "fields": {"orig_filename": "Kotula_Rudolf_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162f.", "author": "", "orig_id": 1416353}}, {"model": "metainfo.source", "pk": 11954, "fields": {"orig_filename": "Kotzian_Josef-Maria_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416355}}, {"model": "metainfo.source", "pk": 11955, "fields": {"orig_filename": "Kotzian_Josef_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416354}}, {"model": "metainfo.source", "pk": 11956, "fields": {"orig_filename": "Kotz_Hedwig_1899_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2091921}}, {"model": "metainfo.source", "pk": 11957, "fields": {"orig_filename": "Koubek_Jan-Pravoslav_1805_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416356}}, {"model": "metainfo.source", "pk": 11958, "fields": {"orig_filename": "Koudela-Jelinkov_Josef_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163f.", "author": "", "orig_id": 1416357}}, {"model": "metainfo.source", "pk": 11959, "fields": {"orig_filename": "Koudelka_Alfred_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 164", "author": "", "orig_id": 1416358}}, {"model": "metainfo.source", "pk": 11960, "fields": {"orig_filename": "Koudelka_Joseph_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 164f.", "author": "", "orig_id": 1416359}}, {"model": "metainfo.source", "pk": 11961, "fields": {"orig_filename": "Koudelka_Pauline_1806_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416429}}, {"model": "metainfo.source", "pk": 11962, "fields": {"orig_filename": "Koukl_Antonin_1860_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416430}}, {"model": "metainfo.source", "pk": 11963, "fields": {"orig_filename": "Koula_Jan_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416431}}, {"model": "metainfo.source", "pk": 11964, "fields": {"orig_filename": "Koumas_Konstantin-Michael_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165f.", "author": "", "orig_id": 1416432}}, {"model": "metainfo.source", "pk": 11965, "fields": {"orig_filename": "Kounic_Vaclav_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416433}}, {"model": "metainfo.source", "pk": 11966, "fields": {"orig_filename": "Kounitzky_Franz_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416434}}, {"model": "metainfo.source", "pk": 11967, "fields": {"orig_filename": "Kovacevic_Andrija_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416435}}, {"model": "metainfo.source", "pk": 11968, "fields": {"orig_filename": "Kompert_Leopold_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104", "author": "", "orig_id": 1415510}}, {"model": "metainfo.source", "pk": 11969, "fields": {"orig_filename": "Kompert_Marie_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104", "author": "", "orig_id": 1415511}}, {"model": "metainfo.source", "pk": 11970, "fields": {"orig_filename": "Komzak_Karl_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104f.", "author": "", "orig_id": 1415512}}, {"model": "metainfo.source", "pk": 11971, "fields": {"orig_filename": "Koncz_Jozsef_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415514}}, {"model": "metainfo.source", "pk": 11972, "fields": {"orig_filename": "Konek_Sandor_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415515}}, {"model": "metainfo.source", "pk": 11973, "fields": {"orig_filename": "Konhaeuser_Franz_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415516}}, {"model": "metainfo.source", "pk": 11974, "fields": {"orig_filename": "Konicek_Oldrich_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105f.", "author": "", "orig_id": 1415517}}, {"model": "metainfo.source", "pk": 11975, "fields": {"orig_filename": "Koniuszko_Waclaw_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106", "author": "", "orig_id": 1415518}}, {"model": "metainfo.source", "pk": 11976, "fields": {"orig_filename": "Konkoly-Thege_Miklos_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106", "author": "", "orig_id": 1415519}}, {"model": "metainfo.source", "pk": 11977, "fields": {"orig_filename": "Konopa_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106f.", "author": "", "orig_id": 1415520}}, {"model": "metainfo.source", "pk": 11978, "fields": {"orig_filename": "Konopnicka_Maria_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415521}}, {"model": "metainfo.source", "pk": 11979, "fields": {"orig_filename": "Konrad_Heinrich_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415522}}, {"model": "metainfo.source", "pk": 11980, "fields": {"orig_filename": "Konrad_Johann_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415523}}, {"model": "metainfo.source", "pk": 11981, "fields": {"orig_filename": "Konrad_Josef-Deograt_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107f.", "author": "", "orig_id": 1415524}}, {"model": "metainfo.source", "pk": 11982, "fields": {"orig_filename": "Konrad_Karel_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415525}}, {"model": "metainfo.source", "pk": 11983, "fields": {"orig_filename": "Konrad_Karl_1874_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415526}}, {"model": "metainfo.source", "pk": 11984, "fields": {"orig_filename": "Konried_Julius_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108f.", "author": "", "orig_id": 1415529}}, {"model": "metainfo.source", "pk": 11985, "fields": {"orig_filename": "Konsek_Valentin_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415531}}, {"model": "metainfo.source", "pk": 11986, "fields": {"orig_filename": "Konstantin_Frieda_1884_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415532}}, {"model": "metainfo.source", "pk": 11987, "fields": {"orig_filename": "Kontak_Antun_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415605}}, {"model": "metainfo.source", "pk": 11988, "fields": {"orig_filename": "Konta_Ignaz_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415534}}, {"model": "metainfo.source", "pk": 11989, "fields": {"orig_filename": "Konti_Isidor_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415606}}, {"model": "metainfo.source", "pk": 11990, "fields": {"orig_filename": "Kontschnigg_Peter_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415607}}, {"model": "metainfo.source", "pk": 11991, "fields": {"orig_filename": "Kontski_Antoni_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415608}}, {"model": "metainfo.source", "pk": 11992, "fields": {"orig_filename": "Kontski_Karel_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110f.", "author": "", "orig_id": 1415609}}, {"model": "metainfo.source", "pk": 11993, "fields": {"orig_filename": "Kont_Ignac_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415533}}, {"model": "metainfo.source", "pk": 11994, "fields": {"orig_filename": "Konupek_Jan_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415610}}, {"model": "metainfo.source", "pk": 11995, "fields": {"orig_filename": "Konyi_Mano_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415611}}, {"model": "metainfo.source", "pk": 11996, "fields": {"orig_filename": "Kopacsy_Jozsef_1775_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112", "author": "", "orig_id": 1415614}}, {"model": "metainfo.source", "pk": 11997, "fields": {"orig_filename": "Kopac_Josip_1863_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415613}}, {"model": "metainfo.source", "pk": 11998, "fields": {"orig_filename": "Kopajtic_Sigismund_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112", "author": "", "orig_id": 1415615}}, {"model": "metainfo.source", "pk": 11999, "fields": {"orig_filename": "Kopallik_Franz_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415618}}, {"model": "metainfo.source", "pk": 12000, "fields": {"orig_filename": "Kopallik_Joseph_1849_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415619}}, {"model": "metainfo.source", "pk": 12001, "fields": {"orig_filename": "Kopal_Karl_1788_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112f.", "author": "", "orig_id": 1415616}}, {"model": "metainfo.source", "pk": 12002, "fields": {"orig_filename": "Kopal_Leopold_1785_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415617}}, {"model": "metainfo.source", "pk": 12003, "fields": {"orig_filename": "Kopatsch_Johann_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113f.", "author": "", "orig_id": 1415620}}, {"model": "metainfo.source", "pk": 12004, "fields": {"orig_filename": "Kopecky_Matej_1775_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114", "author": "", "orig_id": 1415621}}, {"model": "metainfo.source", "pk": 12005, "fields": {"orig_filename": "Kopecky_Otakar_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114", "author": "", "orig_id": 1415622}}, {"model": "metainfo.source", "pk": 12006, "fields": {"orig_filename": "Kopernicki_Izydor_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114f.", "author": "", "orig_id": 1415623}}, {"model": "metainfo.source", "pk": 12007, "fields": {"orig_filename": "Kopetzky_Franz-Johann_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415625}}, {"model": "metainfo.source", "pk": 12008, "fields": {"orig_filename": "Kopetzky_Olga_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415698}}, {"model": "metainfo.source", "pk": 12009, "fields": {"orig_filename": "Kopetz_Wenzel-Gustav_1782_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415624}}, {"model": "metainfo.source", "pk": 12010, "fields": {"orig_filename": "Kopff_Johann-Vincenz_1763_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415699}}, {"model": "metainfo.source", "pk": 12011, "fields": {"orig_filename": "Kopff_Wiktor_1805_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115f.", "author": "", "orig_id": 1415700}}, {"model": "metainfo.source", "pk": 12012, "fields": {"orig_filename": "Kopfinger-Trebbienau_Eugen_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 116", "author": "", "orig_id": 1415701}}, {"model": "metainfo.source", "pk": 12013, "fields": {"orig_filename": "Kopitar_Bartholomaeus_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 116f.", "author": "", "orig_id": 1415702}}, {"model": "metainfo.source", "pk": 12014, "fields": {"orig_filename": "Kopko_Petro-Maksymovyc_1886_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117", "author": "", "orig_id": 1415703}}, {"model": "metainfo.source", "pk": 12015, "fields": {"orig_filename": "Koplenig_Hilde_1904_2002.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1437316}}, {"model": "metainfo.source", "pk": 12016, "fields": {"orig_filename": "Kopler_Leopold_1881_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117", "author": "", "orig_id": 1415704}}, {"model": "metainfo.source", "pk": 12017, "fields": {"orig_filename": "Koplhuber_Leopold_1763_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117f.", "author": "", "orig_id": 1415705}}, {"model": "metainfo.source", "pk": 12018, "fields": {"orig_filename": "Koppay_Josef-Arpad_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415709}}, {"model": "metainfo.source", "pk": 12019, "fields": {"orig_filename": "Koppel_Gustav_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415710}}, {"model": "metainfo.source", "pk": 12020, "fields": {"orig_filename": "Koppel_Hans_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415711}}, {"model": "metainfo.source", "pk": 12021, "fields": {"orig_filename": "Koppensteiner_Anton-Michael_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119f.", "author": "", "orig_id": 1415712}}, {"model": "metainfo.source", "pk": 12022, "fields": {"orig_filename": "Koppitz_Rudolf_1884_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415713}}, {"model": "metainfo.source", "pk": 12023, "fields": {"orig_filename": "Koppmann_Adolf_1781_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415715}}, {"model": "metainfo.source", "pk": 12024, "fields": {"orig_filename": "Kopp_Georg_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118", "author": "", "orig_id": 1415706}}, {"model": "metainfo.source", "pk": 12025, "fields": {"orig_filename": "Kopp_Hermann_1863_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118", "author": "", "orig_id": 1415707}}, {"model": "metainfo.source", "pk": 12026, "fields": {"orig_filename": "Kopp_Josef_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118f.", "author": "", "orig_id": 1415708}}, {"model": "metainfo.source", "pk": 12027, "fields": {"orig_filename": "Koprivnik_Janez_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415716}}, {"model": "metainfo.source", "pk": 12028, "fields": {"orig_filename": "Kopstein_Regina_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415717}}, {"model": "metainfo.source", "pk": 12029, "fields": {"orig_filename": "Korac_Vitomir_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120f.", "author": "", "orig_id": 1415718}}, {"model": "metainfo.source", "pk": 12030, "fields": {"orig_filename": "Korajac_Vilim_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415719}}, {"model": "metainfo.source", "pk": 12031, "fields": {"orig_filename": "Koralt_Franz_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415788}}, {"model": "metainfo.source", "pk": 12032, "fields": {"orig_filename": "Koranyi_Frigyes_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415790}}, {"model": "metainfo.source", "pk": 12033, "fields": {"orig_filename": "Koranyi_Sandor_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415791}}, {"model": "metainfo.source", "pk": 12034, "fields": {"orig_filename": "Koran_Josef-Jan_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415789}}, {"model": "metainfo.source", "pk": 12035, "fields": {"orig_filename": "Korb-Weidenheim_Karl_1836_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122f.", "author": "", "orig_id": 1415793}}, {"model": "metainfo.source", "pk": 12036, "fields": {"orig_filename": "Korber-Korborn_Gregor-Norbert_1749_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123", "author": "", "orig_id": 1415794}}, {"model": "metainfo.source", "pk": 12037, "fields": {"orig_filename": "Korbuly_Johann_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123", "author": "", "orig_id": 1415795}}, {"model": "metainfo.source", "pk": 12038, "fields": {"orig_filename": "Korb_Floris-Nandor_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415792}}, {"model": "metainfo.source", "pk": 12039, "fields": {"orig_filename": "Korcian_Benedikt_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123f.", "author": "", "orig_id": 1415796}}, {"model": "metainfo.source", "pk": 12040, "fields": {"orig_filename": "Korczynski_Anton_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124", "author": "", "orig_id": 1415798}}, {"model": "metainfo.source", "pk": 12041, "fields": {"orig_filename": "Korczynski_Edward_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124", "author": "", "orig_id": 1415799}}, {"model": "metainfo.source", "pk": 12042, "fields": {"orig_filename": "Kordac_Franz_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124f.", "author": "", "orig_id": 1415800}}, {"model": "metainfo.source", "pk": 12043, "fields": {"orig_filename": "Kordelic_Karel_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415801}}, {"model": "metainfo.source", "pk": 12044, "fields": {"orig_filename": "Kordes_Leopold_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415802}}, {"model": "metainfo.source", "pk": 12045, "fields": {"orig_filename": "Kordon_Fridolin_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415803}}, {"model": "metainfo.source", "pk": 12046, "fields": {"orig_filename": "Korecki_Leon_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125f.", "author": "", "orig_id": 1415804}}, {"model": "metainfo.source", "pk": 12047, "fields": {"orig_filename": "Korenic_Stjepan_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415805}}, {"model": "metainfo.source", "pk": 12048, "fields": {"orig_filename": "Korensky_Franz_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415806}}, {"model": "metainfo.source", "pk": 12049, "fields": {"orig_filename": "Korensky_Josef_1847_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415807}}, {"model": "metainfo.source", "pk": 12050, "fields": {"orig_filename": "Korinek_Frantisek-Branislav_1831_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126f.", "author": "", "orig_id": 1415878}}, {"model": "metainfo.source", "pk": 12051, "fields": {"orig_filename": "Korinek_Josef-Miloslav_1899_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 127", "author": "", "orig_id": 1415879}}, {"model": "metainfo.source", "pk": 12052, "fields": {"orig_filename": "Koristka_Karel-Frantisek-Edvard_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 127f.", "author": "", "orig_id": 1415880}}, {"model": "metainfo.source", "pk": 12053, "fields": {"orig_filename": "Koritschoner_Franz_1892_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128", "author": "", "orig_id": 1415881}}, {"model": "metainfo.source", "pk": 12054, "fields": {"orig_filename": "Korizmics_Laszlo_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128", "author": "", "orig_id": 1415882}}, {"model": "metainfo.source", "pk": 12055, "fields": {"orig_filename": "Korlevic_Antun_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128f.", "author": "", "orig_id": 1415883}}, {"model": "metainfo.source", "pk": 12056, "fields": {"orig_filename": "Korn-Korningen_Victor_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415889}}, {"model": "metainfo.source", "pk": 12057, "fields": {"orig_filename": "Kornauth_Hans_1851_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130f.", "author": "", "orig_id": 1415890}}, {"model": "metainfo.source", "pk": 12058, "fields": {"orig_filename": "Kornberger_Richard_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415891}}, {"model": "metainfo.source", "pk": 12059, "fields": {"orig_filename": "Korner_Philipp-Thaddaeus_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415892}}, {"model": "metainfo.source", "pk": 12060, "fields": {"orig_filename": "Kornfeld_Aron_1795_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415893}}, {"model": "metainfo.source", "pk": 12061, "fields": {"orig_filename": "Kornfeld_Paul_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131f.", "author": "", "orig_id": 1415894}}, {"model": "metainfo.source", "pk": 12062, "fields": {"orig_filename": "Kornfeld_Siegmund_1852_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415895}}, {"model": "metainfo.source", "pk": 12063, "fields": {"orig_filename": "Kornfeld_Siegmund_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415896}}, {"model": "metainfo.source", "pk": 12064, "fields": {"orig_filename": "Korngold_Julius-Leopold_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415897}}, {"model": "metainfo.source", "pk": 12065, "fields": {"orig_filename": "Kornhaeusel_Josef-Georg_1782_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132f.", "author": "", "orig_id": 1415898}}, {"model": "metainfo.source", "pk": 12066, "fields": {"orig_filename": "Kornheisl_Franz_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 133", "author": "", "orig_id": 1415966}}, {"model": "metainfo.source", "pk": 12067, "fields": {"orig_filename": "Kornhuber_Andreas_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 133f.", "author": "", "orig_id": 1415967}}, {"model": "metainfo.source", "pk": 12068, "fields": {"orig_filename": "Kornitzer_Alois_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 134", "author": "", "orig_id": 1415969}}, {"model": "metainfo.source", "pk": 12069, "fields": {"orig_filename": "Korntheuer_Friedrich-Josef_1779_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 134f.", "author": "", "orig_id": 1415970}}, {"model": "metainfo.source", "pk": 12070, "fields": {"orig_filename": "Korn_Alfred_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129", "author": "", "orig_id": 1415884}}, {"model": "metainfo.source", "pk": 12071, "fields": {"orig_filename": "Kolar_Heinrich_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71f.", "author": "", "orig_id": 1416512}}, {"model": "metainfo.source", "pk": 12072, "fields": {"orig_filename": "Kolar_Josef-Jiri_1812_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72", "author": "", "orig_id": 1416514}}, {"model": "metainfo.source", "pk": 12073, "fields": {"orig_filename": "Kolar_Josef_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72", "author": "", "orig_id": 1416513}}, {"model": "metainfo.source", "pk": 12074, "fields": {"orig_filename": "Kolatschek_Julius_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416519}}, {"model": "metainfo.source", "pk": 12075, "fields": {"orig_filename": "Kola_Richard_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70f.", "author": "", "orig_id": 1416507}}, {"model": "metainfo.source", "pk": 12076, "fields": {"orig_filename": "Kolbany_Paul_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416589}}, {"model": "metainfo.source", "pk": 12077, "fields": {"orig_filename": "Kolbenhayer_Ferenc_1840_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416593}}, {"model": "metainfo.source", "pk": 12078, "fields": {"orig_filename": "Kolbenheyer_Gyula_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416594}}, {"model": "metainfo.source", "pk": 12079, "fields": {"orig_filename": "Kolbenheyer_Karl_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77", "author": "", "orig_id": 1416595}}, {"model": "metainfo.source", "pk": 12080, "fields": {"orig_filename": "Kolbenheyer_Moric_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77", "author": "", "orig_id": 1416596}}, {"model": "metainfo.source", "pk": 12081, "fields": {"orig_filename": "Kolbenschlag_Friedrich_1869_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77f.", "author": "", "orig_id": 1416597}}, {"model": "metainfo.source", "pk": 12082, "fields": {"orig_filename": "Kolbensteiner_Wilhelm_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78", "author": "", "orig_id": 1416598}}, {"model": "metainfo.source", "pk": 12083, "fields": {"orig_filename": "Kolben_Emil_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416592}}, {"model": "metainfo.source", "pk": 12084, "fields": {"orig_filename": "Kolberg_Joseph_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78", "author": "", "orig_id": 1416599}}, {"model": "metainfo.source", "pk": 12085, "fields": {"orig_filename": "Kolberg_Oskar-Henryk_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78f.", "author": "", "orig_id": 1416600}}, {"model": "metainfo.source", "pk": 12086, "fields": {"orig_filename": "Kolbe_Friedrich_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416590}}, {"model": "metainfo.source", "pk": 12087, "fields": {"orig_filename": "Kolbe_Josef_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75f.", "author": "", "orig_id": 1416591}}, {"model": "metainfo.source", "pk": 12088, "fields": {"orig_filename": "Kolb_Alexis_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73f.", "author": "", "orig_id": 1416520}}, {"model": "metainfo.source", "pk": 12089, "fields": {"orig_filename": "Kolb_Alois_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74", "author": "", "orig_id": 1416521}}, {"model": "metainfo.source", "pk": 12090, "fields": {"orig_filename": "Kolb_Johann-Georg_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74", "author": "", "orig_id": 1416522}}, {"model": "metainfo.source", "pk": 12091, "fields": {"orig_filename": "Kolb_Josef_1843_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74f.", "author": "", "orig_id": 1416523}}, {"model": "metainfo.source", "pk": 12092, "fields": {"orig_filename": "Kolb_Viktor_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416588}}, {"model": "metainfo.source", "pk": 12093, "fields": {"orig_filename": "Kolder_Josef_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416601}}, {"model": "metainfo.source", "pk": 12094, "fields": {"orig_filename": "Kolenc_Anton_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416602}}, {"model": "metainfo.source", "pk": 12095, "fields": {"orig_filename": "Kolesovsky_Zikmund-Michael_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416603}}, {"model": "metainfo.source", "pk": 12096, "fields": {"orig_filename": "Kolessa_Filaret-Mychajlovyc_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79f.", "author": "", "orig_id": 1416604}}, {"model": "metainfo.source", "pk": 12097, "fields": {"orig_filename": "Kolessa_Oleksandr-Mychajlovyc_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 80", "author": "", "orig_id": 1416605}}, {"model": "metainfo.source", "pk": 12098, "fields": {"orig_filename": "Kolig_Anton_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 80f.", "author": "", "orig_id": 1416606}}, {"model": "metainfo.source", "pk": 12099, "fields": {"orig_filename": "Koliha_Jan_1890_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 81f.", "author": "", "orig_id": 1416607}}, {"model": "metainfo.source", "pk": 12100, "fields": {"orig_filename": "Kolischer_Emil_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82f.", "author": "", "orig_id": 1416677}}, {"model": "metainfo.source", "pk": 12101, "fields": {"orig_filename": "Kolisch_Ignaz_1837_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416608}}, {"model": "metainfo.source", "pk": 12102, "fields": {"orig_filename": "Kolisch_Rudolf_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416609}}, {"model": "metainfo.source", "pk": 12103, "fields": {"orig_filename": "Kolisch_Sigmund_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416676}}, {"model": "metainfo.source", "pk": 12104, "fields": {"orig_filename": "Kolisko_Alexander_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 83", "author": "", "orig_id": 1416678}}, {"model": "metainfo.source", "pk": 12105, "fields": {"orig_filename": "Kolisko_Eugen_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 2 (15.03.2013)", "author": "", "orig_id": 1441213}}, {"model": "metainfo.source", "pk": 12106, "fields": {"orig_filename": "Kolisko_Hans_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416680}}, {"model": "metainfo.source", "pk": 12107, "fields": {"orig_filename": "Kolisko_Rudolf_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416679}}, {"model": "metainfo.source", "pk": 12108, "fields": {"orig_filename": "Kolland_Engelbert_1827_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416682}}, {"model": "metainfo.source", "pk": 12109, "fields": {"orig_filename": "Kollanyi_Ferenc_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84f.", "author": "", "orig_id": 1416683}}, {"model": "metainfo.source", "pk": 12110, "fields": {"orig_filename": "Kollarz_Adolf_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86", "author": "", "orig_id": 1416686}}, {"model": "metainfo.source", "pk": 12111, "fields": {"orig_filename": "Kollarz_Franz_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86", "author": "", "orig_id": 1416687}}, {"model": "metainfo.source", "pk": 12112, "fields": {"orig_filename": "Kollarz_Friedrich_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86f.", "author": "", "orig_id": 1416688}}, {"model": "metainfo.source", "pk": 12113, "fields": {"orig_filename": "Kollar_Jan_1793_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 85", "author": "", "orig_id": 1416684}}, {"model": "metainfo.source", "pk": 12114, "fields": {"orig_filename": "Kollar_Vincenz_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 85f.", "author": "", "orig_id": 1416685}}, {"model": "metainfo.source", "pk": 12115, "fields": {"orig_filename": "Kollert_Viktor_1887_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1416699}}, {"model": "metainfo.source", "pk": 12116, "fields": {"orig_filename": "Koller_Alexander_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87", "author": "", "orig_id": 1416689}}, {"model": "metainfo.source", "pk": 12117, "fields": {"orig_filename": "Koller_Benedikt-Joseph-Maria_1767_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87", "author": "", "orig_id": 1416690}}, {"model": "metainfo.source", "pk": 12118, "fields": {"orig_filename": "Koller_Bronislawa_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87f.", "author": "", "orig_id": 1416691}}, {"model": "metainfo.source", "pk": 12119, "fields": {"orig_filename": "Koller_Franz_1767_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416692}}, {"model": "metainfo.source", "pk": 12120, "fields": {"orig_filename": "Koller_Josef_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416693}}, {"model": "metainfo.source", "pk": 12121, "fields": {"orig_filename": "Koller_Karl_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416694}}, {"model": "metainfo.source", "pk": 12122, "fields": {"orig_filename": "Koller_Marian_1792_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88f.", "author": "", "orig_id": 1416695}}, {"model": "metainfo.source", "pk": 12123, "fields": {"orig_filename": "Koller_Oswald_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 89", "author": "", "orig_id": 1416696}}, {"model": "metainfo.source", "pk": 12124, "fields": {"orig_filename": "Koller_Rudolf_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 89f.", "author": "", "orig_id": 1416697}}, {"model": "metainfo.source", "pk": 12125, "fields": {"orig_filename": "Koller_Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1416698}}, {"model": "metainfo.source", "pk": 12126, "fields": {"orig_filename": "Kolletschka_Jakob_1803_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1415320}}, {"model": "metainfo.source", "pk": 12127, "fields": {"orig_filename": "Kollmaneck_Ferdinand_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90f.", "author": "", "orig_id": 1415321}}, {"model": "metainfo.source", "pk": 12128, "fields": {"orig_filename": "Kollmann_Hynek_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91", "author": "", "orig_id": 1415322}}, {"model": "metainfo.source", "pk": 12129, "fields": {"orig_filename": "Kollmann_Ignaz_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91", "author": "", "orig_id": 1415323}}, {"model": "metainfo.source", "pk": 12130, "fields": {"orig_filename": "Kollmann_Robert_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91f.", "author": "", "orig_id": 1415324}}, {"model": "metainfo.source", "pk": 12131, "fields": {"orig_filename": "Kollonits-Kollegrad_Maximilian_1761_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92", "author": "", "orig_id": 1415325}}, {"model": "metainfo.source", "pk": 12132, "fields": {"orig_filename": "Koll_Franz_1894_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416681}}, {"model": "metainfo.source", "pk": 12133, "fields": {"orig_filename": "Kolman_Karel_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415328}}, {"model": "metainfo.source", "pk": 12134, "fields": {"orig_filename": "Kolmar_Edmund_1841_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415329}}, {"model": "metainfo.source", "pk": 12135, "fields": {"orig_filename": "Kolmar_Jozsef_1769_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415330}}, {"model": "metainfo.source", "pk": 12136, "fields": {"orig_filename": "Kolmer_Gustav_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415331}}, {"model": "metainfo.source", "pk": 12137, "fields": {"orig_filename": "Kolmer_Walter_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93f.", "author": "", "orig_id": 1415332}}, {"model": "metainfo.source", "pk": 12138, "fields": {"orig_filename": "Kolm_Berta_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92", "author": "", "orig_id": 1415326}}, {"model": "metainfo.source", "pk": 12139, "fields": {"orig_filename": "Kolm_Gustav-Anton_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92f.", "author": "", "orig_id": 1415327}}, {"model": "metainfo.source", "pk": 12140, "fields": {"orig_filename": "Kolodziejczyk_Edmund_1888_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 94", "author": "", "orig_id": 1415333}}, {"model": "metainfo.source", "pk": 12141, "fields": {"orig_filename": "Kolodziejski_Walery_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 94f.", "author": "", "orig_id": 1415334}}, {"model": "metainfo.source", "pk": 12142, "fields": {"orig_filename": "Kolombatovic_Juraj_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415335}}, {"model": "metainfo.source", "pk": 12143, "fields": {"orig_filename": "Kolossvary_Sandor_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415336}}, {"model": "metainfo.source", "pk": 12144, "fields": {"orig_filename": "Kolosvary_Sandor_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415337}}, {"model": "metainfo.source", "pk": 12145, "fields": {"orig_filename": "Kolowrat-Krakowsky_Alexander-Josef_1886_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95f.", "author": "", "orig_id": 1415338}}, {"model": "metainfo.source", "pk": 12146, "fields": {"orig_filename": "Kolowrat-Krakowsky_Alois-Joseph_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 96", "author": "", "orig_id": 1415339}}, {"model": "metainfo.source", "pk": 12147, "fields": {"orig_filename": "Kolowrat-Krakowsky_Johann-Nep-Karl_1748_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 96", "author": "", "orig_id": 1415340}}, {"model": "metainfo.source", "pk": 12148, "fields": {"orig_filename": "Kolowrat-Krakowsky_Leopold_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97", "author": "", "orig_id": 1415341}}, {"model": "metainfo.source", "pk": 12149, "fields": {"orig_filename": "Kolowrat-Liebsteinsky_Franz-Anton_1778_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97", "author": "", "orig_id": 1415342}}, {"model": "metainfo.source", "pk": 12150, "fields": {"orig_filename": "Kolowrat-Liebsteinsky_Vinzenz-Maria_1750_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97f.", "author": "", "orig_id": 1415415}}, {"model": "metainfo.source", "pk": 12151, "fields": {"orig_filename": "Kolp_Engelbert_1840_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415416}}, {"model": "metainfo.source", "pk": 12152, "fields": {"orig_filename": "Komarek_Franz-Xaver_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415417}}, {"model": "metainfo.source", "pk": 12153, "fields": {"orig_filename": "Komaromy_Andras_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415418}}, {"model": "metainfo.source", "pk": 12154, "fields": {"orig_filename": "Komatar_Franc_1875_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98f.", "author": "", "orig_id": 1415420}}, {"model": "metainfo.source", "pk": 12155, "fields": {"orig_filename": "Komauer_Edwin_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99", "author": "", "orig_id": 1415421}}, {"model": "metainfo.source", "pk": 12156, "fields": {"orig_filename": "Komenda_Anton_1795_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99", "author": "", "orig_id": 1415422}}, {"model": "metainfo.source", "pk": 12157, "fields": {"orig_filename": "Komers-Lindenbach_Camillo_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100", "author": "", "orig_id": 1415424}}, {"model": "metainfo.source", "pk": 12158, "fields": {"orig_filename": "Komers-Lindenbach_Emanuel-Heinrich_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100", "author": "", "orig_id": 1415425}}, {"model": "metainfo.source", "pk": 12159, "fields": {"orig_filename": "Komers-Lindenbach_Karl-Eduard_1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100f.", "author": "", "orig_id": 1415426}}, {"model": "metainfo.source", "pk": 12160, "fields": {"orig_filename": "Komers_Anton-Emanuel_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99f.", "author": "", "orig_id": 1415423}}, {"model": "metainfo.source", "pk": 12161, "fields": {"orig_filename": "Kometer_Bartholomaeus_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415427}}, {"model": "metainfo.source", "pk": 12162, "fields": {"orig_filename": "Kometer_Franz-Michael_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415428}}, {"model": "metainfo.source", "pk": 12163, "fields": {"orig_filename": "Kometer_Johann-Ev_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415429}}, {"model": "metainfo.source", "pk": 12164, "fields": {"orig_filename": "Komjathy_Jenoe_1858_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101f.", "author": "", "orig_id": 1415430}}, {"model": "metainfo.source", "pk": 12165, "fields": {"orig_filename": "Komlossy_Ferenc_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415431}}, {"model": "metainfo.source", "pk": 12166, "fields": {"orig_filename": "Komlossy_Ida_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415432}}, {"model": "metainfo.source", "pk": 12167, "fields": {"orig_filename": "Komlosy_Franz_1817_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415433}}, {"model": "metainfo.source", "pk": 12168, "fields": {"orig_filename": "Komm_Ferdinand_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102f.", "author": "", "orig_id": 1415434}}, {"model": "metainfo.source", "pk": 12169, "fields": {"orig_filename": "Komorowski_Stephan-Julius-Maria_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415435}}, {"model": "metainfo.source", "pk": 12170, "fields": {"orig_filename": "Komorzynski_Johann_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415436}}, {"model": "metainfo.source", "pk": 12171, "fields": {"orig_filename": "Komorzynski_Ludwig_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415437}}, {"model": "metainfo.source", "pk": 12172, "fields": {"orig_filename": "Kompatscher_Andreas_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103f.", "author": "", "orig_id": 1415438}}, {"model": "metainfo.source", "pk": 12173, "fields": {"orig_filename": "Koennen-Horak-Hoehenkampf_Ludwig_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41f.", "author": "", "orig_id": 1416135}}, {"model": "metainfo.source", "pk": 12174, "fields": {"orig_filename": "Koenyoeki_Jozsef_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416136}}, {"model": "metainfo.source", "pk": 12175, "fields": {"orig_filename": "Koenyves-Toth_Mihaly_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416137}}, {"model": "metainfo.source", "pk": 12176, "fields": {"orig_filename": "Koepfle_Josef-Anton_1757_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416138}}, {"model": "metainfo.source", "pk": 12177, "fields": {"orig_filename": "Koepl_Robert_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42f.", "author": "", "orig_id": 1416139}}, {"model": "metainfo.source", "pk": 12178, "fields": {"orig_filename": "Koepp-Felsenthal_Anton_1766_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416140}}, {"model": "metainfo.source", "pk": 12179, "fields": {"orig_filename": "Koepp-Felsenthal_Rudolf_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416141}}, {"model": "metainfo.source", "pk": 12180, "fields": {"orig_filename": "Koeppel_Karl_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416142}}, {"model": "metainfo.source", "pk": 12181, "fields": {"orig_filename": "Koeppner_Karl_1871_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416143}}, {"model": "metainfo.source", "pk": 12182, "fields": {"orig_filename": "Koerber-Horwitz_Grete_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46", "author": "", "orig_id": 1416149}}, {"model": "metainfo.source", "pk": 12183, "fields": {"orig_filename": "Koerber_Ernest_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 44f.", "author": "", "orig_id": 1416144}}, {"model": "metainfo.source", "pk": 12184, "fields": {"orig_filename": "Koerber_Karl_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416145}}, {"model": "metainfo.source", "pk": 12185, "fields": {"orig_filename": "Koerber_Marie_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416146}}, {"model": "metainfo.source", "pk": 12186, "fields": {"orig_filename": "Koerber_Otto_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416147}}, {"model": "metainfo.source", "pk": 12187, "fields": {"orig_filename": "Koerber_Philipp_1812_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45f.", "author": "", "orig_id": 1416148}}, {"model": "metainfo.source", "pk": 12188, "fields": {"orig_filename": "Koerbler_Djuro_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46", "author": "", "orig_id": 1416150}}, {"model": "metainfo.source", "pk": 12189, "fields": {"orig_filename": "Koerner_Eduard_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46f.", "author": "", "orig_id": 1416151}}, {"model": "metainfo.source", "pk": 12190, "fields": {"orig_filename": "Koerner_Josef_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47", "author": "", "orig_id": 1416152}}, {"model": "metainfo.source", "pk": 12191, "fields": {"orig_filename": "Koerner_Moritz_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47", "author": "", "orig_id": 1416220}}, {"model": "metainfo.source", "pk": 12192, "fields": {"orig_filename": "Koernyei_Janos_1831_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47f.", "author": "", "orig_id": 1416221}}, {"model": "metainfo.source", "pk": 12193, "fields": {"orig_filename": "Koeroesfoei-Kriesch_Aladar_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 48", "author": "", "orig_id": 1416222}}, {"model": "metainfo.source", "pk": 12194, "fields": {"orig_filename": "Koeroesi-Csoma_Sandor_1784_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49", "author": "", "orig_id": 1416224}}, {"model": "metainfo.source", "pk": 12195, "fields": {"orig_filename": "Koeroesi_Josef_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 48", "author": "", "orig_id": 1416223}}, {"model": "metainfo.source", "pk": 12196, "fields": {"orig_filename": "Koeroesy-Szanto_Josef_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49", "author": "", "orig_id": 1416225}}, {"model": "metainfo.source", "pk": 12197, "fields": {"orig_filename": "Koerschner_Leander_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49f.", "author": "", "orig_id": 1416226}}, {"model": "metainfo.source", "pk": 12198, "fields": {"orig_filename": "Koessler_Hans_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50", "author": "", "orig_id": 1416227}}, {"model": "metainfo.source", "pk": 12199, "fields": {"orig_filename": "Koessler_Kornelius_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50", "author": "", "orig_id": 1416228}}, {"model": "metainfo.source", "pk": 12200, "fields": {"orig_filename": "Koessler_Ludwig_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50f.", "author": "", "orig_id": 1416229}}, {"model": "metainfo.source", "pk": 12201, "fields": {"orig_filename": "Koester_Alexander_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416230}}, {"model": "metainfo.source", "pk": 12202, "fields": {"orig_filename": "Koestinger_Franz_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416231}}, {"model": "metainfo.source", "pk": 12203, "fields": {"orig_filename": "Koestler_Hugo_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416232}}, {"model": "metainfo.source", "pk": 12204, "fields": {"orig_filename": "Koestlin_August_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51f.", "author": "", "orig_id": 1416233}}, {"model": "metainfo.source", "pk": 12205, "fields": {"orig_filename": "Koeszegi-Brandl_Gusztav_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416234}}, {"model": "metainfo.source", "pk": 12206, "fields": {"orig_filename": "Koeteles_Samuel_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416235}}, {"model": "metainfo.source", "pk": 12207, "fields": {"orig_filename": "Koettstorfer_Josef_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416236}}, {"model": "metainfo.source", "pk": 12208, "fields": {"orig_filename": "Koevary_Laszlo_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52f.", "author": "", "orig_id": 1416237}}, {"model": "metainfo.source", "pk": 12209, "fields": {"orig_filename": "Koever_Lajos_1825_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53", "author": "", "orig_id": 1416238}}, {"model": "metainfo.source", "pk": 12210, "fields": {"orig_filename": "Koevesligethy_Rado_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53", "author": "", "orig_id": 1416240}}, {"model": "metainfo.source", "pk": 12211, "fields": {"orig_filename": "Koevess-Koevesshaza_Hermann_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53f.", "author": "", "orig_id": 1416241}}, {"model": "metainfo.source", "pk": 12212, "fields": {"orig_filename": "Koevy_Sandor_1763_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 54", "author": "", "orig_id": 1416242}}, {"model": "metainfo.source", "pk": 12213, "fields": {"orig_filename": "Koffler_Jozef_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 54", "author": "", "orig_id": 1416311}}, {"model": "metainfo.source", "pk": 12214, "fields": {"orig_filename": "Kofler_Adelheid_1889_1985.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2080799}}, {"model": "metainfo.source", "pk": 12215, "fields": {"orig_filename": "Kofler_Albertine_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416312}}, {"model": "metainfo.source", "pk": 12216, "fields": {"orig_filename": "Kofler_Anton_1855_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416313}}, {"model": "metainfo.source", "pk": 12217, "fields": {"orig_filename": "Kofler_Irenaeus_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416315}}, {"model": "metainfo.source", "pk": 12218, "fields": {"orig_filename": "Kofler_Johann-Ev_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416316}}, {"model": "metainfo.source", "pk": 12219, "fields": {"orig_filename": "Kofler_Johann-Nep_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416317}}, {"model": "metainfo.source", "pk": 12220, "fields": {"orig_filename": "Kofler_Leo_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416318}}, {"model": "metainfo.source", "pk": 12221, "fields": {"orig_filename": "Kofler_Nikolaus_1776_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416319}}, {"model": "metainfo.source", "pk": 12222, "fields": {"orig_filename": "Kofler_Oswald_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57f.", "author": "", "orig_id": 1416320}}, {"model": "metainfo.source", "pk": 12223, "fields": {"orig_filename": "Kofler_Wilhelmine_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416321}}, {"model": "metainfo.source", "pk": 12224, "fields": {"orig_filename": "Kogerer_Heinrich_1819_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416322}}, {"model": "metainfo.source", "pk": 12225, "fields": {"orig_filename": "Koglbauer_Br-Benno_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416324}}, {"model": "metainfo.source", "pk": 12226, "fields": {"orig_filename": "Kogler_Ferdinand_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57f.", "author": "", "orig_id": 1416326}}, {"model": "metainfo.source", "pk": 12227, "fields": {"orig_filename": "Kogler_Michael_1763_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58", "author": "", "orig_id": 1416327}}, {"model": "metainfo.source", "pk": 12228, "fields": {"orig_filename": "Koglgruber_Cajetan_1817_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58", "author": "", "orig_id": 1416328}}, {"model": "metainfo.source", "pk": 12229, "fields": {"orig_filename": "Kogl_Karol-Bernard_1763_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416323}}, {"model": "metainfo.source", "pk": 12230, "fields": {"orig_filename": "Koharic_Janko_1877_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58f.", "author": "", "orig_id": 1416329}}, {"model": "metainfo.source", "pk": 12231, "fields": {"orig_filename": "Kohen_Giambattista_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416330}}, {"model": "metainfo.source", "pk": 12232, "fields": {"orig_filename": "Kohen_Sidonie_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416331}}, {"model": "metainfo.source", "pk": 12233, "fields": {"orig_filename": "Kohl-Kohlenegg_Leonhard_1834_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60f.", "author": "", "orig_id": 1416336}}, {"model": "metainfo.source", "pk": 12234, "fields": {"orig_filename": "Kohl-Kohlenegg_Lorenz_1783_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61", "author": "", "orig_id": 1416405}}, {"model": "metainfo.source", "pk": 12235, "fields": {"orig_filename": "Kohlenberg_Josef_1796_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61", "author": "", "orig_id": 1416406}}, {"model": "metainfo.source", "pk": 12236, "fields": {"orig_filename": "Kohler_Johann-Michael_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62", "author": "", "orig_id": 1416408}}, {"model": "metainfo.source", "pk": 12237, "fields": {"orig_filename": "Kohler_Johann_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61f.", "author": "", "orig_id": 1416407}}, {"model": "metainfo.source", "pk": 12238, "fields": {"orig_filename": "Kohler_Karl-Felix_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62", "author": "", "orig_id": 1416409}}, {"model": "metainfo.source", "pk": 12239, "fields": {"orig_filename": "Kohlfuerst_Ludwig_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62f.", "author": "", "orig_id": 1416410}}, {"model": "metainfo.source", "pk": 12240, "fields": {"orig_filename": "Kohlgruber_Josef_1783_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63", "author": "", "orig_id": 1416411}}, {"model": "metainfo.source", "pk": 12241, "fields": {"orig_filename": "Kohlmayer_Paul_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63", "author": "", "orig_id": 1416412}}, {"model": "metainfo.source", "pk": 12242, "fields": {"orig_filename": "Kohlmuenzer_Ernst_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63f.", "author": "", "orig_id": 1416413}}, {"model": "metainfo.source", "pk": 12243, "fields": {"orig_filename": "Kohlrausch_Otto_1842_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64", "author": "", "orig_id": 1416414}}, {"model": "metainfo.source", "pk": 12244, "fields": {"orig_filename": "Kohlruss_Alfred_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64", "author": "", "orig_id": 1416415}}, {"model": "metainfo.source", "pk": 12245, "fields": {"orig_filename": "Kohl_Emil_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416332}}, {"model": "metainfo.source", "pk": 12246, "fields": {"orig_filename": "Kohl_Franz-Friedrich_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59f.", "author": "", "orig_id": 1416333}}, {"model": "metainfo.source", "pk": 12247, "fields": {"orig_filename": "Kohl_Josef_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60", "author": "", "orig_id": 1416334}}, {"model": "metainfo.source", "pk": 12248, "fields": {"orig_filename": "Kohl_Ludwig_1746_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60", "author": "", "orig_id": 1416335}}, {"model": "metainfo.source", "pk": 12249, "fields": {"orig_filename": "Kohn_Abraham_1807_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64f.", "author": "", "orig_id": 1416416}}, {"model": "metainfo.source", "pk": 12250, "fields": {"orig_filename": "Kohn_Edmund_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416417}}, {"model": "metainfo.source", "pk": 12251, "fields": {"orig_filename": "Kohn_Gustav_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416419}}, {"model": "metainfo.source", "pk": 12252, "fields": {"orig_filename": "Kohn_Gustav_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416420}}, {"model": "metainfo.source", "pk": 12253, "fields": {"orig_filename": "Kohn_Josef_1804_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65f.", "author": "", "orig_id": 1416421}}, {"model": "metainfo.source", "pk": 12254, "fields": {"orig_filename": "Kohn_Josef_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66", "author": "", "orig_id": 1416422}}, {"model": "metainfo.source", "pk": 12255, "fields": {"orig_filename": "Kohn_Karl-Ferdinand_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66", "author": "", "orig_id": 1416423}}, {"model": "metainfo.source", "pk": 12256, "fields": {"orig_filename": "Kohn_Salomon_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66f.", "author": "", "orig_id": 1416424}}, {"model": "metainfo.source", "pk": 12257, "fields": {"orig_filename": "Kohn_Samuel_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416425}}, {"model": "metainfo.source", "pk": 12258, "fields": {"orig_filename": "Kohn_Theodor_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416426}}, {"model": "metainfo.source", "pk": 12259, "fields": {"orig_filename": "Kohrl_Ludwig_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416427}}, {"model": "metainfo.source", "pk": 12260, "fields": {"orig_filename": "Kohut_Adolf_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67f.", "author": "", "orig_id": 1416428}}, {"model": "metainfo.source", "pk": 12261, "fields": {"orig_filename": "Kohut_Alexander_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 68", "author": "", "orig_id": 1416500}}, {"model": "metainfo.source", "pk": 12262, "fields": {"orig_filename": "Koiner_Simon_1921_1994.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1427092}}, {"model": "metainfo.source", "pk": 12263, "fields": {"orig_filename": "Kojovic_Antun_1751_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416501}}, {"model": "metainfo.source", "pk": 12264, "fields": {"orig_filename": "Kokeil_Friedrich_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416502}}, {"model": "metainfo.source", "pk": 12265, "fields": {"orig_filename": "Kokesch_Oser_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416503}}, {"model": "metainfo.source", "pk": 12266, "fields": {"orig_filename": "Kokol_Karl_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70", "author": "", "orig_id": 1416505}}, {"model": "metainfo.source", "pk": 12267, "fields": {"orig_filename": "Kokotovic_Nikola_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70", "author": "", "orig_id": 1416506}}, {"model": "metainfo.source", "pk": 12268, "fields": {"orig_filename": "Koko_Demeter_1891_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69f.", "author": "", "orig_id": 1416504}}, {"model": "metainfo.source", "pk": 12269, "fields": {"orig_filename": "Kolacek_Frantisek_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416508}}, {"model": "metainfo.source", "pk": 12270, "fields": {"orig_filename": "Kolacek_Frantisek_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416509}}, {"model": "metainfo.source", "pk": 12271, "fields": {"orig_filename": "Kolander_Vatroslav_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416510}}, {"model": "metainfo.source", "pk": 12272, "fields": {"orig_filename": "Kolaric-Kisur_Rudolf_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416516}}, {"model": "metainfo.source", "pk": 12273, "fields": {"orig_filename": "Kolaric_Mirko_1850_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72f.", "author": "", "orig_id": 1416515}}, {"model": "metainfo.source", "pk": 12274, "fields": {"orig_filename": "Kolarovic_Dimitrije_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416517}}, {"model": "metainfo.source", "pk": 12275, "fields": {"orig_filename": "Kocevar_Stefan_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411438}}, {"model": "metainfo.source", "pk": 12276, "fields": {"orig_filename": "Koch-Langentreu_Adolf_1829_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411537}}, {"model": "metainfo.source", "pk": 12277, "fields": {"orig_filename": "Koch-Langentreu_Fr-Caecilia_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411538}}, {"model": "metainfo.source", "pk": 12278, "fields": {"orig_filename": "Koch-Langentreu_Josef_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411539}}, {"model": "metainfo.source", "pk": 12279, "fields": {"orig_filename": "Koch-Sternfeld_Josef-Judas-Thadd-Ernest_1778_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20f.", "author": "", "orig_id": 1411540}}, {"model": "metainfo.source", "pk": 12280, "fields": {"orig_filename": "Koch-Thanheimb_Josef_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21", "author": "", "orig_id": 1415856}}, {"model": "metainfo.source", "pk": 12281, "fields": {"orig_filename": "Kochanowski-Korwinau_Alfred_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415859}}, {"model": "metainfo.source", "pk": 12282, "fields": {"orig_filename": "Kochanowski-Stawczan_Anton_1817_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415860}}, {"model": "metainfo.source", "pk": 12283, "fields": {"orig_filename": "Kochanowski_Hieronim_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21", "author": "", "orig_id": 1415857}}, {"model": "metainfo.source", "pk": 12284, "fields": {"orig_filename": "Kochanowski_Roman_1856_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21f.", "author": "", "orig_id": 1415858}}, {"model": "metainfo.source", "pk": 12285, "fields": {"orig_filename": "Kochmann_Leopold_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415861}}, {"model": "metainfo.source", "pk": 12286, "fields": {"orig_filename": "Kochmeister_Friedrich_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22f.", "author": "", "orig_id": 1415862}}, {"model": "metainfo.source", "pk": 12287, "fields": {"orig_filename": "Koch_Alois_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12f.", "author": "", "orig_id": 1411439}}, {"model": "metainfo.source", "pk": 12288, "fields": {"orig_filename": "Koch_Antal_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13", "author": "", "orig_id": 1411440}}, {"model": "metainfo.source", "pk": 12289, "fields": {"orig_filename": "Koch_Augustin_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13", "author": "", "orig_id": 1411441}}, {"model": "metainfo.source", "pk": 12290, "fields": {"orig_filename": "Koch_Carl-Matthias_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13f.", "author": "", "orig_id": 1411442}}, {"model": "metainfo.source", "pk": 12291, "fields": {"orig_filename": "Koch_Ciril-Metod_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411443}}, {"model": "metainfo.source", "pk": 12292, "fields": {"orig_filename": "Koch_Ernest_1755_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411515}}, {"model": "metainfo.source", "pk": 12293, "fields": {"orig_filename": "Koch_Felix_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411516}}, {"model": "metainfo.source", "pk": 12294, "fields": {"orig_filename": "Koch_Ferdo_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14f.", "author": "", "orig_id": 1411517}}, {"model": "metainfo.source", "pk": 12295, "fields": {"orig_filename": "Koch_Franz_1832_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411518}}, {"model": "metainfo.source", "pk": 12296, "fields": {"orig_filename": "Koch_Franz_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411519}}, {"model": "metainfo.source", "pk": 12297, "fields": {"orig_filename": "Koch_Gaudentius_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411520}}, {"model": "metainfo.source", "pk": 12298, "fields": {"orig_filename": "Koch_Gustav-Adolf_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15f.", "author": "", "orig_id": 1411521}}, {"model": "metainfo.source", "pk": 12299, "fields": {"orig_filename": "Koch_Heinrich_1781_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16", "author": "", "orig_id": 1411522}}, {"model": "metainfo.source", "pk": 12300, "fields": {"orig_filename": "Koch_Jakob-Ernst-Iii_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17", "author": "", "orig_id": 1411527}}, {"model": "metainfo.source", "pk": 12301, "fields": {"orig_filename": "Koch_Jakob-Ernst-Ii_1836_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17", "author": "", "orig_id": 1411526}}, {"model": "metainfo.source", "pk": 12302, "fields": {"orig_filename": "Koch_Jakob-Ernst-I_1797_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16f.", "author": "", "orig_id": 1411524}}, {"model": "metainfo.source", "pk": 12303, "fields": {"orig_filename": "Koch_Jakob_1744_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16", "author": "", "orig_id": 1411523}}, {"model": "metainfo.source", "pk": 12304, "fields": {"orig_filename": "Koch_Josef-Anton_1768_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17f.", "author": "", "orig_id": 1411528}}, {"model": "metainfo.source", "pk": 12305, "fields": {"orig_filename": "Koch_Josef-Friedrich_1838_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411529}}, {"model": "metainfo.source", "pk": 12306, "fields": {"orig_filename": "Koch_Karl-Wilhelm_1785_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411531}}, {"model": "metainfo.source", "pk": 12307, "fields": {"orig_filename": "Koch_Karl__.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411530}}, {"model": "metainfo.source", "pk": 12308, "fields": {"orig_filename": "Koch_Leopold_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18f.", "author": "", "orig_id": 1411532}}, {"model": "metainfo.source", "pk": 12309, "fields": {"orig_filename": "Koch_Ludwig_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 19", "author": "", "orig_id": 1411533}}, {"model": "metainfo.source", "pk": 12310, "fields": {"orig_filename": "Koch_Matthias_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 19f.", "author": "", "orig_id": 1411534}}, {"model": "metainfo.source", "pk": 12311, "fields": {"orig_filename": "Koch_Stephan_1772_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411536}}, {"model": "metainfo.source", "pk": 12312, "fields": {"orig_filename": "Kociancic_Stefan_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23f.", "author": "", "orig_id": 1415866}}, {"model": "metainfo.source", "pk": 12313, "fields": {"orig_filename": "Kocian_Jaroslav_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415863}}, {"model": "metainfo.source", "pk": 12314, "fields": {"orig_filename": "Kocian_Quido_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415864}}, {"model": "metainfo.source", "pk": 12315, "fields": {"orig_filename": "Kocian_Samuel_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415865}}, {"model": "metainfo.source", "pk": 12316, "fields": {"orig_filename": "Kocic_Petar_1877_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415867}}, {"model": "metainfo.source", "pk": 12317, "fields": {"orig_filename": "Kocijancic_Josip_1849_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415868}}, {"model": "metainfo.source", "pk": 12318, "fields": {"orig_filename": "Kock-Gothenfels_Josef_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415869}}, {"model": "metainfo.source", "pk": 12319, "fields": {"orig_filename": "Koczirz_Adolf_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415870}}, {"model": "metainfo.source", "pk": 12320, "fields": {"orig_filename": "Koczynski_Stefan_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415871}}, {"model": "metainfo.source", "pk": 12321, "fields": {"orig_filename": "Kodermann_Zoelestin_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415873}}, {"model": "metainfo.source", "pk": 12322, "fields": {"orig_filename": "Koder_Anton_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415872}}, {"model": "metainfo.source", "pk": 12323, "fields": {"orig_filename": "Kodolitsch-Neuweinsberg-Khag_Oswald_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415876}}, {"model": "metainfo.source", "pk": 12324, "fields": {"orig_filename": "Kodolitsch_Alphons_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25f.", "author": "", "orig_id": 1415874}}, {"model": "metainfo.source", "pk": 12325, "fields": {"orig_filename": "Kodolitsch_Theodor_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415875}}, {"model": "metainfo.source", "pk": 12326, "fields": {"orig_filename": "Kodweiss_Friedrich_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415877}}, {"model": "metainfo.source", "pk": 12327, "fields": {"orig_filename": "Kodym_Filip-Stanislav_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26f.", "author": "", "orig_id": 1415945}}, {"model": "metainfo.source", "pk": 12328, "fields": {"orig_filename": "Kodym_Frantisek_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 27", "author": "", "orig_id": 1415946}}, {"model": "metainfo.source", "pk": 12329, "fields": {"orig_filename": "Koechel_Ludwig_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 27f.", "author": "", "orig_id": 1415947}}, {"model": "metainfo.source", "pk": 12330, "fields": {"orig_filename": "Koechert_Alexander-Emanuel_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415948}}, {"model": "metainfo.source", "pk": 12331, "fields": {"orig_filename": "Koechler_Johann_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415949}}, {"model": "metainfo.source", "pk": 12332, "fields": {"orig_filename": "Koechlin_Heinrich_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415950}}, {"model": "metainfo.source", "pk": 12333, "fields": {"orig_filename": "Koechlin_Karl_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28f.", "author": "", "orig_id": 1415951}}, {"model": "metainfo.source", "pk": 12334, "fields": {"orig_filename": "Koechlin_Rudolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29", "author": "", "orig_id": 1415952}}, {"model": "metainfo.source", "pk": 12335, "fields": {"orig_filename": "Koeck-Gmeiner_Maria_1878_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 30f.", "author": "", "orig_id": 1415956}}, {"model": "metainfo.source", "pk": 12336, "fields": {"orig_filename": "Koeck_Georg_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29", "author": "", "orig_id": 1415953}}, {"model": "metainfo.source", "pk": 12337, "fields": {"orig_filename": "Koeck_Gustav_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29f.", "author": "", "orig_id": 1415954}}, {"model": "metainfo.source", "pk": 12338, "fields": {"orig_filename": "Koeck_Michael_1760_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 30", "author": "", "orig_id": 1415955}}, {"model": "metainfo.source", "pk": 12339, "fields": {"orig_filename": "Koeferl_Josef_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415957}}, {"model": "metainfo.source", "pk": 12340, "fields": {"orig_filename": "Koeffinger_Johann-Paul_1786_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415958}}, {"model": "metainfo.source", "pk": 12341, "fields": {"orig_filename": "Koegl_Josef-Sebastian_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415959}}, {"model": "metainfo.source", "pk": 12342, "fields": {"orig_filename": "Koehler-Damwehr_Else_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31f.", "author": "", "orig_id": 1415961}}, {"model": "metainfo.source", "pk": 12343, "fields": {"orig_filename": "Koehler_Josef_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415960}}, {"model": "metainfo.source", "pk": 12344, "fields": {"orig_filename": "Koelbel_Karl_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415962}}, {"model": "metainfo.source", "pk": 12345, "fields": {"orig_filename": "Koelbl_Anton_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415963}}, {"model": "metainfo.source", "pk": 12346, "fields": {"orig_filename": "Koelbl_Walter_1891_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415964}}, {"model": "metainfo.source", "pk": 12347, "fields": {"orig_filename": "Koelcsey_Ferenc_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32f.", "author": "", "orig_id": 1415965}}, {"model": "metainfo.source", "pk": 12348, "fields": {"orig_filename": "Koelgen_Ferdinand_1824_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416038}}, {"model": "metainfo.source", "pk": 12349, "fields": {"orig_filename": "Koelloe_Miklos_1861_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416040}}, {"model": "metainfo.source", "pk": 12350, "fields": {"orig_filename": "Koell_Karl_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416039}}, {"model": "metainfo.source", "pk": 12351, "fields": {"orig_filename": "Koelmel_Anton_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33f.", "author": "", "orig_id": 1416041}}, {"model": "metainfo.source", "pk": 12352, "fields": {"orig_filename": "Koemm_Johann-Nep_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416042}}, {"model": "metainfo.source", "pk": 12353, "fields": {"orig_filename": "Koenig-Karsthof_Adolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38f.", "author": "", "orig_id": 1416057}}, {"model": "metainfo.source", "pk": 12354, "fields": {"orig_filename": "Koenig-Lorinser_Minna_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416058}}, {"model": "metainfo.source", "pk": 12355, "fields": {"orig_filename": "Koenigsberger_Friedrich_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416060}}, {"model": "metainfo.source", "pk": 12356, "fields": {"orig_filename": "Koenigsberg_Alfred_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416059}}, {"model": "metainfo.source", "pk": 12357, "fields": {"orig_filename": "Koenigsbrun-Schaup_Franz-Joseph_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416061}}, {"model": "metainfo.source", "pk": 12358, "fields": {"orig_filename": "Koenigsbrunn_Artur_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416062}}, {"model": "metainfo.source", "pk": 12359, "fields": {"orig_filename": "Koenigsbrunn_Hermann_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416063}}, {"model": "metainfo.source", "pk": 12360, "fields": {"orig_filename": "Koenigsegg-Aulendorf_Alfred_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416130}}, {"model": "metainfo.source", "pk": 12361, "fields": {"orig_filename": "Koenigshofer_Karl_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40f.", "author": "", "orig_id": 1416131}}, {"model": "metainfo.source", "pk": 12362, "fields": {"orig_filename": "Koenigstein_Leopold_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416132}}, {"model": "metainfo.source", "pk": 12363, "fields": {"orig_filename": "Koenigswarter_Jonas_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416133}}, {"model": "metainfo.source", "pk": 12364, "fields": {"orig_filename": "Koenigswarter_Moriz_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416134}}, {"model": "metainfo.source", "pk": 12365, "fields": {"orig_filename": "Koenig_Friedrich_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416043}}, {"model": "metainfo.source", "pk": 12366, "fields": {"orig_filename": "Koenig_Friedrich_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416044}}, {"model": "metainfo.source", "pk": 12367, "fields": {"orig_filename": "Koenig_Gustav-Adolf_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 35", "author": "", "orig_id": 1416046}}, {"model": "metainfo.source", "pk": 12368, "fields": {"orig_filename": "Koenig_Gustav_1825_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34f.", "author": "", "orig_id": 1416045}}, {"model": "metainfo.source", "pk": 12369, "fields": {"orig_filename": "Koenig_Gyula_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 35f.", "author": "", "orig_id": 1416047}}, {"model": "metainfo.source", "pk": 12370, "fields": {"orig_filename": "Koenig_Johann-Paul_1790_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36", "author": "", "orig_id": 1416048}}, {"model": "metainfo.source", "pk": 12371, "fields": {"orig_filename": "Koenig_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36", "author": "", "orig_id": 1416049}}, {"model": "metainfo.source", "pk": 12372, "fields": {"orig_filename": "Koenig_Karl_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36f.", "author": "", "orig_id": 1416050}}, {"model": "metainfo.source", "pk": 12373, "fields": {"orig_filename": "Koenig_Karol_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416051}}, {"model": "metainfo.source", "pk": 12374, "fields": {"orig_filename": "Koenig_Leo_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416052}}, {"model": "metainfo.source", "pk": 12375, "fields": {"orig_filename": "Koenig_Otto_1882_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416053}}, {"model": "metainfo.source", "pk": 12376, "fields": {"orig_filename": "Koenig_Peter_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416054}}, {"model": "metainfo.source", "pk": 12377, "fields": {"orig_filename": "Koenig_Rudolf_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416055}}, {"model": "metainfo.source", "pk": 12378, "fields": {"orig_filename": "Koenig_Sophie_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416056}}, {"model": "metainfo.source", "pk": 12379, "fields": {"orig_filename": "Knapp_Johann_1778_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418509}}, {"model": "metainfo.source", "pk": 12380, "fields": {"orig_filename": "Knapp_Josef_1810_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431f.", "author": "", "orig_id": 1418510}}, {"model": "metainfo.source", "pk": 12381, "fields": {"orig_filename": "Knapp_Karl_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432", "author": "", "orig_id": 1418511}}, {"model": "metainfo.source", "pk": 12382, "fields": {"orig_filename": "Knapp_Ludwig_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432", "author": "", "orig_id": 1418512}}, {"model": "metainfo.source", "pk": 12383, "fields": {"orig_filename": "Knauer_Emil_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432f.", "author": "", "orig_id": 1418513}}, {"model": "metainfo.source", "pk": 12384, "fields": {"orig_filename": "Knauer_Friedrich-Karl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433", "author": "", "orig_id": 1418696}}, {"model": "metainfo.source", "pk": 12385, "fields": {"orig_filename": "Knauer_Vinzenz_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433", "author": "", "orig_id": 1418697}}, {"model": "metainfo.source", "pk": 12386, "fields": {"orig_filename": "Knaus_Hermann-Hubertus_1892_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1452147}}, {"model": "metainfo.source", "pk": 12387, "fields": {"orig_filename": "Knauz_Nandor_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433f.", "author": "", "orig_id": 1418698}}, {"model": "metainfo.source", "pk": 12388, "fields": {"orig_filename": "Knebelsberger_Leopold_1814_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418699}}, {"model": "metainfo.source", "pk": 12389, "fields": {"orig_filename": "Knechtl-Ostenburg_Anton_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418701}}, {"model": "metainfo.source", "pk": 12390, "fields": {"orig_filename": "Knechtl_Josef_1771_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418700}}, {"model": "metainfo.source", "pk": 12391, "fields": {"orig_filename": "Knedlhans_Jan_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434f.", "author": "", "orig_id": 1418702}}, {"model": "metainfo.source", "pk": 12392, "fields": {"orig_filename": "Kneifel_Reginald_1761_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418703}}, {"model": "metainfo.source", "pk": 12393, "fields": {"orig_filename": "Kneisel_Franz_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418704}}, {"model": "metainfo.source", "pk": 12394, "fields": {"orig_filename": "Kneissler-Maixdorf_Leodegar_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418705}}, {"model": "metainfo.source", "pk": 12395, "fields": {"orig_filename": "Knepper_Wilhelm_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435f.", "author": "", "orig_id": 1418706}}, {"model": "metainfo.source", "pk": 12396, "fields": {"orig_filename": "Kneringer_Johann-Paul_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418709}}, {"model": "metainfo.source", "pk": 12397, "fields": {"orig_filename": "Kner_Izidor_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418707}}, {"model": "metainfo.source", "pk": 12398, "fields": {"orig_filename": "Kner_Rudolf_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418708}}, {"model": "metainfo.source", "pk": 12399, "fields": {"orig_filename": "Kneschke_Martha-Th_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437", "author": "", "orig_id": 1418710}}, {"model": "metainfo.source", "pk": 12400, "fields": {"orig_filename": "Knett_Josef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437", "author": "", "orig_id": 1418711}}, {"model": "metainfo.source", "pk": 12401, "fields": {"orig_filename": "Knezevic-Szent-Helena_Vinko_1755_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438f.", "author": "", "orig_id": 1418786}}, {"model": "metainfo.source", "pk": 12402, "fields": {"orig_filename": "Knezevic_Antun_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418784}}, {"model": "metainfo.source", "pk": 12403, "fields": {"orig_filename": "Knezevic_Stevan_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418785}}, {"model": "metainfo.source", "pk": 12404, "fields": {"orig_filename": "Knezic_Josip-Kajetan_1786_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418787}}, {"model": "metainfo.source", "pk": 12405, "fields": {"orig_filename": "Knez_Anton_1856_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437f.", "author": "", "orig_id": 1418712}}, {"model": "metainfo.source", "pk": 12406, "fields": {"orig_filename": "Knez_Ivan_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418713}}, {"model": "metainfo.source", "pk": 12407, "fields": {"orig_filename": "Kniaziolucki_Severin_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418788}}, {"model": "metainfo.source", "pk": 12408, "fields": {"orig_filename": "Kniely_Konrad_1887_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418789}}, {"model": "metainfo.source", "pk": 12409, "fields": {"orig_filename": "Kniep_Julius_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439f.", "author": "", "orig_id": 1418790}}, {"model": "metainfo.source", "pk": 12410, "fields": {"orig_filename": "Knieschek_Johann_1856_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440", "author": "", "orig_id": 1418791}}, {"model": "metainfo.source", "pk": 12411, "fields": {"orig_filename": "Knipfelberger_Magnus_1747_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440", "author": "", "orig_id": 1418792}}, {"model": "metainfo.source", "pk": 12412, "fields": {"orig_filename": "Knirsch_Hans_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440f.", "author": "", "orig_id": 1418794}}, {"model": "metainfo.source", "pk": 12413, "fields": {"orig_filename": "Knitel-Stainer_Anna_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418798}}, {"model": "metainfo.source", "pk": 12414, "fields": {"orig_filename": "Knitel_Johann_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418796}}, {"model": "metainfo.source", "pk": 12415, "fields": {"orig_filename": "Knitel_Josef-Alois_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418797}}, {"model": "metainfo.source", "pk": 12416, "fields": {"orig_filename": "Knittl_Karel_1853_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441f.", "author": "", "orig_id": 1418799}}, {"model": "metainfo.source", "pk": 12417, "fields": {"orig_filename": "Knittl_Michael_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418800}}, {"model": "metainfo.source", "pk": 12418, "fields": {"orig_filename": "Knize_Frantisek-Max_1784_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418801}}, {"model": "metainfo.source", "pk": 12419, "fields": {"orig_filename": "Knize_Therese_1782_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418802}}, {"model": "metainfo.source", "pk": 12420, "fields": {"orig_filename": "Knoblehar_Ignacij_1819_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442f.", "author": "", "orig_id": 1418868}}, {"model": "metainfo.source", "pk": 12421, "fields": {"orig_filename": "Knobloch_Johann-Wenzel_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 443", "author": "", "orig_id": 1418869}}, {"model": "metainfo.source", "pk": 12422, "fields": {"orig_filename": "Knoch_Gottlieb_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 443", "author": "", "orig_id": 1418870}}, {"model": "metainfo.source", "pk": 12423, "fields": {"orig_filename": "Knoch_Philipp_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418871}}, {"model": "metainfo.source", "pk": 12424, "fields": {"orig_filename": "Knoebel_Robert_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418873}}, {"model": "metainfo.source", "pk": 12425, "fields": {"orig_filename": "Knoechel_Franz_1839_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418875}}, {"model": "metainfo.source", "pk": 12426, "fields": {"orig_filename": "Knoechel_Franz_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418874}}, {"model": "metainfo.source", "pk": 12427, "fields": {"orig_filename": "Knoechl_Hans_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444f.", "author": "", "orig_id": 1418877}}, {"model": "metainfo.source", "pk": 12428, "fields": {"orig_filename": "Knoefel_Robert_1834_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445", "author": "", "orig_id": 1418878}}, {"model": "metainfo.source", "pk": 12429, "fields": {"orig_filename": "Knoefler_Josef_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445", "author": "", "orig_id": 1418879}}, {"model": "metainfo.source", "pk": 12430, "fields": {"orig_filename": "Knoell_Pius_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445f.", "author": "", "orig_id": 1418880}}, {"model": "metainfo.source", "pk": 12431, "fields": {"orig_filename": "Knoepfelmacher_Wilhelm_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418881}}, {"model": "metainfo.source", "pk": 12432, "fields": {"orig_filename": "Knoepfler_Alois_1827_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418882}}, {"model": "metainfo.source", "pk": 12433, "fields": {"orig_filename": "Knoerlein_Josef_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418883}}, {"model": "metainfo.source", "pk": 12434, "fields": {"orig_filename": "Knoflach_Augustin_1783_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418884}}, {"model": "metainfo.source", "pk": 12435, "fields": {"orig_filename": "Knoflach_Johann-Cap_1779_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446f.", "author": "", "orig_id": 1418885}}, {"model": "metainfo.source", "pk": 12436, "fields": {"orig_filename": "Knoller_Richard_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 448", "author": "", "orig_id": 1418962}}, {"model": "metainfo.source", "pk": 12437, "fields": {"orig_filename": "Knoll_Albert_1796_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418888}}, {"model": "metainfo.source", "pk": 12438, "fields": {"orig_filename": "Knoll_Joseph-Leonhard_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418890}}, {"model": "metainfo.source", "pk": 12439, "fields": {"orig_filename": "Knoll_Petar_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418891}}, {"model": "metainfo.source", "pk": 12440, "fields": {"orig_filename": "Knoll_Philipp_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447f.", "author": "", "orig_id": 1418959}}, {"model": "metainfo.source", "pk": 12441, "fields": {"orig_filename": "Knoll_Rudolf_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 448", "author": "", "orig_id": 1418960}}, {"model": "metainfo.source", "pk": 12442, "fields": {"orig_filename": "Knolz_Joseph-Johann_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1", "author": "", "orig_id": 1411240}}, {"model": "metainfo.source", "pk": 12443, "fields": {"orig_filename": "Knopf_Carl-Benno-Rudolf_1874_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1", "author": "", "orig_id": 1411241}}, {"model": "metainfo.source", "pk": 12444, "fields": {"orig_filename": "Knopp-Kirchwald_Norbert_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2", "author": "", "orig_id": 1411243}}, {"model": "metainfo.source", "pk": 12445, "fields": {"orig_filename": "Knopp_Jozsef_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1f.", "author": "", "orig_id": 1411242}}, {"model": "metainfo.source", "pk": 12446, "fields": {"orig_filename": "Knorr_Josefine_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2", "author": "", "orig_id": 1411244}}, {"model": "metainfo.source", "pk": 12447, "fields": {"orig_filename": "Knothe_Franz_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2f.", "author": "", "orig_id": 1411245}}, {"model": "metainfo.source", "pk": 12448, "fields": {"orig_filename": "Knotz_Alfred_1845_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411246}}, {"model": "metainfo.source", "pk": 12449, "fields": {"orig_filename": "Knuepfer_Benes_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411247}}, {"model": "metainfo.source", "pk": 12450, "fields": {"orig_filename": "Kobald_Engelbert_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411250}}, {"model": "metainfo.source", "pk": 12451, "fields": {"orig_filename": "Kobald_Franz_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411251}}, {"model": "metainfo.source", "pk": 12452, "fields": {"orig_filename": "Kobal_France_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3f.", "author": "", "orig_id": 1411249}}, {"model": "metainfo.source", "pk": 12453, "fields": {"orig_filename": "Koban_Anton_1875_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411252}}, {"model": "metainfo.source", "pk": 12454, "fields": {"orig_filename": "Kobatsch_Rudolf_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4f.", "author": "", "orig_id": 1411253}}, {"model": "metainfo.source", "pk": 12455, "fields": {"orig_filename": "Kobbe_Johann_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411254}}, {"model": "metainfo.source", "pk": 12456, "fields": {"orig_filename": "Kobelkoff_Nikolaus_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5f.", "author": "", "orig_id": 1411257}}, {"model": "metainfo.source", "pk": 12457, "fields": {"orig_filename": "Koberwein_Elisabeth_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411347}}, {"model": "metainfo.source", "pk": 12458, "fields": {"orig_filename": "Koberwein_Joseph_1774_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411348}}, {"model": "metainfo.source", "pk": 12459, "fields": {"orig_filename": "Koberwein_Sophie_1783_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7f.", "author": "", "orig_id": 1411349}}, {"model": "metainfo.source", "pk": 12460, "fields": {"orig_filename": "Kober_Franz_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 6", "author": "", "orig_id": 1411342}}, {"model": "metainfo.source", "pk": 12461, "fields": {"orig_filename": "Kober_Guido_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 6", "author": "", "orig_id": 1411343}}, {"model": "metainfo.source", "pk": 12462, "fields": {"orig_filename": "Kober_Maximilian_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411345}}, {"model": "metainfo.source", "pk": 12463, "fields": {"orig_filename": "Kobes_Karl_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8", "author": "", "orig_id": 1411350}}, {"model": "metainfo.source", "pk": 12464, "fields": {"orig_filename": "Kobe_Julius_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411255}}, {"model": "metainfo.source", "pk": 12465, "fields": {"orig_filename": "Kobe_Jurij_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411256}}, {"model": "metainfo.source", "pk": 12466, "fields": {"orig_filename": "Kobierski_Carl_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8", "author": "", "orig_id": 1411351}}, {"model": "metainfo.source", "pk": 12467, "fields": {"orig_filename": "Kobilca_Ivana_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8f.", "author": "", "orig_id": 1411352}}, {"model": "metainfo.source", "pk": 12468, "fields": {"orig_filename": "Koblar_Anton_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9", "author": "", "orig_id": 1411424}}, {"model": "metainfo.source", "pk": 12469, "fields": {"orig_filename": "Kobler_Andreas_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9", "author": "", "orig_id": 1411425}}, {"model": "metainfo.source", "pk": 12470, "fields": {"orig_filename": "Kobler_Franz_1882_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465580}}, {"model": "metainfo.source", "pk": 12471, "fields": {"orig_filename": "Kobler_Giovanni_1811_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9f.", "author": "", "orig_id": 1411426}}, {"model": "metainfo.source", "pk": 12472, "fields": {"orig_filename": "Koblic_Jindrich_1876_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411427}}, {"model": "metainfo.source", "pk": 12473, "fields": {"orig_filename": "Kobliska_Alois_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411428}}, {"model": "metainfo.source", "pk": 12474, "fields": {"orig_filename": "Koblitz-Willmburg_Johann-Ludwig_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411430}}, {"model": "metainfo.source", "pk": 12475, "fields": {"orig_filename": "Koblitz-Willmburg_Johann_1818_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411429}}, {"model": "metainfo.source", "pk": 12476, "fields": {"orig_filename": "Kobylicza_Lucian_1803_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10f.", "author": "", "orig_id": 1411431}}, {"model": "metainfo.source", "pk": 12477, "fields": {"orig_filename": "Kobyljanska_Olga_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411432}}, {"model": "metainfo.source", "pk": 12478, "fields": {"orig_filename": "Kobyljanskyj_Anton_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411433}}, {"model": "metainfo.source", "pk": 12479, "fields": {"orig_filename": "Kob_Anton_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411248}}, {"model": "metainfo.source", "pk": 12480, "fields": {"orig_filename": "Koca_Djuro_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411434}}, {"model": "metainfo.source", "pk": 12481, "fields": {"orig_filename": "Kocbek_Fran_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411435}}, {"model": "metainfo.source", "pk": 12482, "fields": {"orig_filename": "Kocevar_Ferdo_1833_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411437}}, {"model": "metainfo.source", "pk": 12483, "fields": {"orig_filename": "Klier_Karl-Maria_1888_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419281}}, {"model": "metainfo.source", "pk": 12484, "fields": {"orig_filename": "Klietmann_Alfred_1884_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419282}}, {"model": "metainfo.source", "pk": 12485, "fields": {"orig_filename": "Klika_Josef_1833_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419284}}, {"model": "metainfo.source", "pk": 12486, "fields": {"orig_filename": "Klimann_Thomas_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405f.", "author": "", "orig_id": 1419289}}, {"model": "metainfo.source", "pk": 12487, "fields": {"orig_filename": "Klima_Anton_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404f.", "author": "", "orig_id": 1419285}}, {"model": "metainfo.source", "pk": 12488, "fields": {"orig_filename": "Klima_Jiri-Vaclav_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419286}}, {"model": "metainfo.source", "pk": 12489, "fields": {"orig_filename": "Klima_Josef_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419287}}, {"model": "metainfo.source", "pk": 12490, "fields": {"orig_filename": "Klima_Ladislav_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419288}}, {"model": "metainfo.source", "pk": 12491, "fields": {"orig_filename": "Kliment_Josef_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419290}}, {"model": "metainfo.source", "pk": 12492, "fields": {"orig_filename": "Kliment_Leopold_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419291}}, {"model": "metainfo.source", "pk": 12493, "fields": {"orig_filename": "Kliment_Vaclav_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419292}}, {"model": "metainfo.source", "pk": 12494, "fields": {"orig_filename": "Klimesch_Johann-Matthaeus_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419354}}, {"model": "metainfo.source", "pk": 12495, "fields": {"orig_filename": "Klimesch_Josef_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419356}}, {"model": "metainfo.source", "pk": 12496, "fields": {"orig_filename": "Klimesch_Philipp_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406f.", "author": "", "orig_id": 1419357}}, {"model": "metainfo.source", "pk": 12497, "fields": {"orig_filename": "Klimke_Friedrich_1878_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419358}}, {"model": "metainfo.source", "pk": 12498, "fields": {"orig_filename": "Klimm_Mihaly_1851_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419359}}, {"model": "metainfo.source", "pk": 12499, "fields": {"orig_filename": "Klimont_Isidor_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419360}}, {"model": "metainfo.source", "pk": 12500, "fields": {"orig_filename": "Klimsch_Edgar_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407f.", "author": "", "orig_id": 1419361}}, {"model": "metainfo.source", "pk": 12501, "fields": {"orig_filename": "Klimsch_Ferdinand-Karl_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408", "author": "", "orig_id": 1419362}}, {"model": "metainfo.source", "pk": 12502, "fields": {"orig_filename": "Klimsch_Robert_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408", "author": "", "orig_id": 1419364}}, {"model": "metainfo.source", "pk": 12503, "fields": {"orig_filename": "Klimt_Ernst_1864_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408f.", "author": "", "orig_id": 1419365}}, {"model": "metainfo.source", "pk": 12504, "fields": {"orig_filename": "Klimt_Georg_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 409", "author": "", "orig_id": 1419366}}, {"model": "metainfo.source", "pk": 12505, "fields": {"orig_filename": "Klimt_Gustav_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 409f.", "author": "", "orig_id": 1419367}}, {"model": "metainfo.source", "pk": 12506, "fields": {"orig_filename": "Klineberger_Bohdan_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 410", "author": "", "orig_id": 1419368}}, {"model": "metainfo.source", "pk": 12507, "fields": {"orig_filename": "Klingatsch_Adolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 410", "author": "", "orig_id": 1419369}}, {"model": "metainfo.source", "pk": 12508, "fields": {"orig_filename": "Klinger_Heinrich_1896_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411", "author": "", "orig_id": 1419371}}, {"model": "metainfo.source", "pk": 12509, "fields": {"orig_filename": "Klinger_Richard_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411", "author": "", "orig_id": 1419372}}, {"model": "metainfo.source", "pk": 12510, "fields": {"orig_filename": "Klingler_Eduard_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411f.", "author": "", "orig_id": 1419440}}, {"model": "metainfo.source", "pk": 12511, "fields": {"orig_filename": "Klingmann_Philipp_1762_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419441}}, {"model": "metainfo.source", "pk": 12512, "fields": {"orig_filename": "Klingspor_Guido_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419442}}, {"model": "metainfo.source", "pk": 12513, "fields": {"orig_filename": "Klinkosch_Carl_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419443}}, {"model": "metainfo.source", "pk": 12514, "fields": {"orig_filename": "Klinkosch_Josef-Carl_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419444}}, {"model": "metainfo.source", "pk": 12515, "fields": {"orig_filename": "Klinkowstroem_Alphons_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412f.", "author": "", "orig_id": 1420902}}, {"model": "metainfo.source", "pk": 12516, "fields": {"orig_filename": "Klinkowstroem_Friedrich-August_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413", "author": "", "orig_id": 1419445}}, {"model": "metainfo.source", "pk": 12517, "fields": {"orig_filename": "Klinkowstroem_Josef_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413", "author": "", "orig_id": 1419446}}, {"model": "metainfo.source", "pk": 12518, "fields": {"orig_filename": "Klinkowstroem_Max_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413f.", "author": "", "orig_id": 1419447}}, {"model": "metainfo.source", "pk": 12519, "fields": {"orig_filename": "Klir_Antonin_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414", "author": "", "orig_id": 1419448}}, {"model": "metainfo.source", "pk": 12520, "fields": {"orig_filename": "Klischnigg_Eduard_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414", "author": "", "orig_id": 1419449}}, {"model": "metainfo.source", "pk": 12521, "fields": {"orig_filename": "Klitsch_Wilhelm_1882_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414f.", "author": "", "orig_id": 1419451}}, {"model": "metainfo.source", "pk": 12522, "fields": {"orig_filename": "Kloboucek_Josef_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419455}}, {"model": "metainfo.source", "pk": 12523, "fields": {"orig_filename": "Klobucar_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419456}}, {"model": "metainfo.source", "pk": 12524, "fields": {"orig_filename": "Klobusiczky-Klobusicz_Peter_1752_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416f.", "author": "", "orig_id": 1419549}}, {"model": "metainfo.source", "pk": 12525, "fields": {"orig_filename": "Klobus_Hugo_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419457}}, {"model": "metainfo.source", "pk": 12526, "fields": {"orig_filename": "Klob_Friedrich_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415", "author": "", "orig_id": 1419452}}, {"model": "metainfo.source", "pk": 12527, "fields": {"orig_filename": "Klob_Julius_1831_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415", "author": "", "orig_id": 1413139}}, {"model": "metainfo.source", "pk": 12528, "fields": {"orig_filename": "Klob_Karl-Maria_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415f.", "author": "", "orig_id": 1419453}}, {"model": "metainfo.source", "pk": 12529, "fields": {"orig_filename": "Klob_Otto_1876_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419454}}, {"model": "metainfo.source", "pk": 12530, "fields": {"orig_filename": "Klocker_Johann_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419550}}, {"model": "metainfo.source", "pk": 12531, "fields": {"orig_filename": "Klodic-Sabladoski_Anton_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419551}}, {"model": "metainfo.source", "pk": 12532, "fields": {"orig_filename": "Klodzinski_Adam_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419552}}, {"model": "metainfo.source", "pk": 12533, "fields": {"orig_filename": "Kloeckner_Gustav_1814_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417f.", "author": "", "orig_id": 1419553}}, {"model": "metainfo.source", "pk": 12534, "fields": {"orig_filename": "Kloepfer_Hans_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418", "author": "", "orig_id": 1419554}}, {"model": "metainfo.source", "pk": 12535, "fields": {"orig_filename": "Klofac_Vaclav_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418", "author": "", "orig_id": 1419555}}, {"model": "metainfo.source", "pk": 12536, "fields": {"orig_filename": "Kloiber_Franz_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418f.", "author": "", "orig_id": 1419556}}, {"model": "metainfo.source", "pk": 12537, "fields": {"orig_filename": "Klopfer_Karl-Eduard_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 419", "author": "", "orig_id": 1418237}}, {"model": "metainfo.source", "pk": 12538, "fields": {"orig_filename": "Klopp_Onno_1822_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 419", "author": "", "orig_id": 1418238}}, {"model": "metainfo.source", "pk": 12539, "fields": {"orig_filename": "Klopp_Wiard_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418239}}, {"model": "metainfo.source", "pk": 12540, "fields": {"orig_filename": "Klopstein-Ennsbruck_Joseph_1763_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418240}}, {"model": "metainfo.source", "pk": 12541, "fields": {"orig_filename": "Klose_Antonin-Jaroslav_1861_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418241}}, {"model": "metainfo.source", "pk": 12542, "fields": {"orig_filename": "Klose_Olivier_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418242}}, {"model": "metainfo.source", "pk": 12543, "fields": {"orig_filename": "Kloss_Joseph-Ferdinand_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418243}}, {"model": "metainfo.source", "pk": 12544, "fields": {"orig_filename": "Kloss_Richard_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418244}}, {"model": "metainfo.source", "pk": 12545, "fields": {"orig_filename": "Klostermann_Karl_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418245}}, {"model": "metainfo.source", "pk": 12546, "fields": {"orig_filename": "Klotz_Edmund_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418246}}, {"model": "metainfo.source", "pk": 12547, "fields": {"orig_filename": "Klotz_Gottlieb_1780_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418247}}, {"model": "metainfo.source", "pk": 12548, "fields": {"orig_filename": "Klotz_Hermann_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421f.", "author": "", "orig_id": 1418248}}, {"model": "metainfo.source", "pk": 12549, "fields": {"orig_filename": "Klotz_Magdalena_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418249}}, {"model": "metainfo.source", "pk": 12550, "fields": {"orig_filename": "Kloucek_Celda_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418250}}, {"model": "metainfo.source", "pk": 12551, "fields": {"orig_filename": "Kluch_Joseph_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418251}}, {"model": "metainfo.source", "pk": 12552, "fields": {"orig_filename": "Kluczenko_Basil_1844_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418252}}, {"model": "metainfo.source", "pk": 12553, "fields": {"orig_filename": "Klueger_Karl_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422f.", "author": "", "orig_id": 1418253}}, {"model": "metainfo.source", "pk": 12554, "fields": {"orig_filename": "Klug-Klugenwald_Sigmund_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418330}}, {"model": "metainfo.source", "pk": 12555, "fields": {"orig_filename": "Kluger-Teschenburg_Adolf_1830_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424", "author": "", "orig_id": 1418333}}, {"model": "metainfo.source", "pk": 12556, "fields": {"orig_filename": "Kluger_Josef_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418331}}, {"model": "metainfo.source", "pk": 12557, "fields": {"orig_filename": "Kluger_Salomon-B-Jehudah-Ahron_1783_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423f.", "author": "", "orig_id": 1418332}}, {"model": "metainfo.source", "pk": 12558, "fields": {"orig_filename": "Klug_Alfred_1883_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418254}}, {"model": "metainfo.source", "pk": 12559, "fields": {"orig_filename": "Klug_Nandor_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418255}}, {"model": "metainfo.source", "pk": 12560, "fields": {"orig_filename": "Kluibenschedl_Alois_1772_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424", "author": "", "orig_id": 1418334}}, {"model": "metainfo.source", "pk": 12561, "fields": {"orig_filename": "Kluibenschedl_Heinrich_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424f.", "author": "", "orig_id": 1418336}}, {"model": "metainfo.source", "pk": 12562, "fields": {"orig_filename": "Klumpar_Jan-Kvetoslav_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418338}}, {"model": "metainfo.source", "pk": 12563, "fields": {"orig_filename": "Klun_Karl_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418339}}, {"model": "metainfo.source", "pk": 12564, "fields": {"orig_filename": "Klun_Vinzenz-Ferrer_1823_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418340}}, {"model": "metainfo.source", "pk": 12565, "fields": {"orig_filename": "Klusacek_Karel-Ladislav_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425f.", "author": "", "orig_id": 1418341}}, {"model": "metainfo.source", "pk": 12566, "fields": {"orig_filename": "Klusemann_Erich_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418342}}, {"model": "metainfo.source", "pk": 12567, "fields": {"orig_filename": "Klusemann_Otto-Karl-Heinrich_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418343}}, {"model": "metainfo.source", "pk": 12568, "fields": {"orig_filename": "Klutschak_Franz_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418344}}, {"model": "metainfo.source", "pk": 12569, "fields": {"orig_filename": "Klvana_Josef_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426f.", "author": "", "orig_id": 1418417}}, {"model": "metainfo.source", "pk": 12570, "fields": {"orig_filename": "Kment_Adele_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418418}}, {"model": "metainfo.source", "pk": 12571, "fields": {"orig_filename": "Kmetitsch_Agnes_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418420}}, {"model": "metainfo.source", "pk": 12572, "fields": {"orig_filename": "Kmety_Gyoergy_1813_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427f.", "author": "", "orig_id": 1418422}}, {"model": "metainfo.source", "pk": 12573, "fields": {"orig_filename": "Kmet_Andrej_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418419}}, {"model": "metainfo.source", "pk": 12574, "fields": {"orig_filename": "Kminek-Szedlo_Johann_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418423}}, {"model": "metainfo.source", "pk": 12575, "fields": {"orig_filename": "Kmoch_Frantisek_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418424}}, {"model": "metainfo.source", "pk": 12576, "fields": {"orig_filename": "Kmosko_Mihaly_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418426}}, {"model": "metainfo.source", "pk": 12577, "fields": {"orig_filename": "Knaack_Wilhelm_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428f.", "author": "", "orig_id": 1418427}}, {"model": "metainfo.source", "pk": 12578, "fields": {"orig_filename": "Knabl_Hermann_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418428}}, {"model": "metainfo.source", "pk": 12579, "fields": {"orig_filename": "Knabl_Josef_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418429}}, {"model": "metainfo.source", "pk": 12580, "fields": {"orig_filename": "Knabl_Richard_1789_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418430}}, {"model": "metainfo.source", "pk": 12581, "fields": {"orig_filename": "Knafelc_Alojzij_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418432}}, {"model": "metainfo.source", "pk": 12582, "fields": {"orig_filename": "Knaffl-Lenz-Fohnsdorf_Karl_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418434}}, {"model": "metainfo.source", "pk": 12583, "fields": {"orig_filename": "Knaffl-Lenz_Johann-Felix_1769_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418433}}, {"model": "metainfo.source", "pk": 12584, "fields": {"orig_filename": "Knaflic_Josip_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430f.", "author": "", "orig_id": 1418435}}, {"model": "metainfo.source", "pk": 12585, "fields": {"orig_filename": "Knajsl_Matej_1805_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418507}}, {"model": "metainfo.source", "pk": 12586, "fields": {"orig_filename": "Knapp_Blasius_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418508}}, {"model": "metainfo.source", "pk": 12587, "fields": {"orig_filename": "Klebs_Theodor-Albrecht-Edwin_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 374", "author": "", "orig_id": 1418763}}, {"model": "metainfo.source", "pk": 12588, "fields": {"orig_filename": "Klecanda_Jan_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418764}}, {"model": "metainfo.source", "pk": 12589, "fields": {"orig_filename": "Kleczynski_Johann-Bapt_1756_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418765}}, {"model": "metainfo.source", "pk": 12590, "fields": {"orig_filename": "Kleemann_Therese-Marie_1820_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418767}}, {"model": "metainfo.source", "pk": 12591, "fields": {"orig_filename": "Klee_Hermann_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418766}}, {"model": "metainfo.source", "pk": 12592, "fields": {"orig_filename": "Kleibel_Anton_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375f.", "author": "", "orig_id": 1418769}}, {"model": "metainfo.source", "pk": 12593, "fields": {"orig_filename": "Kleiber_Karl_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418770}}, {"model": "metainfo.source", "pk": 12594, "fields": {"orig_filename": "Klein-Ehrenwalten_August_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418943}}, {"model": "metainfo.source", "pk": 12595, "fields": {"orig_filename": "Klein-Rhoden_Rudolf_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418944}}, {"model": "metainfo.source", "pk": 12596, "fields": {"orig_filename": "Kleinert_Josef-Edgar_1859_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387", "author": "", "orig_id": 1418947}}, {"model": "metainfo.source", "pk": 12597, "fields": {"orig_filename": "Kleinert_Karl-Erasmus_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387", "author": "", "orig_id": 1418948}}, {"model": "metainfo.source", "pk": 12598, "fields": {"orig_filename": "Kleiner_Oskar_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418945}}, {"model": "metainfo.source", "pk": 12599, "fields": {"orig_filename": "Kleiner_Viktor_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386f.", "author": "", "orig_id": 1418946}}, {"model": "metainfo.source", "pk": 12600, "fields": {"orig_filename": "Kleinfercher_Johann_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387f.", "author": "", "orig_id": 1418949}}, {"model": "metainfo.source", "pk": 12601, "fields": {"orig_filename": "Kleinhans_Edmund_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388", "author": "", "orig_id": 1418950}}, {"model": "metainfo.source", "pk": 12602, "fields": {"orig_filename": "Kleinhans_Friedrich_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388", "author": "", "orig_id": 1418951}}, {"model": "metainfo.source", "pk": 12603, "fields": {"orig_filename": "Kleinhans_Josef-Barth_1774_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388f.", "author": "", "orig_id": 1418952}}, {"model": "metainfo.source", "pk": 12604, "fields": {"orig_filename": "Kleinheinz_Franz-Xaver_1765_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1418953}}, {"model": "metainfo.source", "pk": 12605, "fields": {"orig_filename": "Kleinmayr_Ferdinand-Josef_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1419031}}, {"model": "metainfo.source", "pk": 12606, "fields": {"orig_filename": "Kleinmayr_Ferdinand_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1419032}}, {"model": "metainfo.source", "pk": 12607, "fields": {"orig_filename": "Kleinmayr_Ferdo_1881_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419033}}, {"model": "metainfo.source", "pk": 12608, "fields": {"orig_filename": "Kleinmayr_Ignaz_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419035}}, {"model": "metainfo.source", "pk": 12609, "fields": {"orig_filename": "Kleinmayr_Ignaz_1830_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419036}}, {"model": "metainfo.source", "pk": 12610, "fields": {"orig_filename": "Kleinmayr_Julij_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390f.", "author": "", "orig_id": 1419038}}, {"model": "metainfo.source", "pk": 12611, "fields": {"orig_filename": "Kleinoscheg_Anton_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 391", "author": "", "orig_id": 1419039}}, {"model": "metainfo.source", "pk": 12612, "fields": {"orig_filename": "Kleinoscheg_Max_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 391f.", "author": "", "orig_id": 1419040}}, {"model": "metainfo.source", "pk": 12613, "fields": {"orig_filename": "Kleinpeter_Johann_1869_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419041}}, {"model": "metainfo.source", "pk": 12614, "fields": {"orig_filename": "Kleinschmid_Friedrich-August_1749_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419042}}, {"model": "metainfo.source", "pk": 12615, "fields": {"orig_filename": "Kleinsorg_Raphael_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419044}}, {"model": "metainfo.source", "pk": 12616, "fields": {"orig_filename": "Kleinwaechter_Alois_1807_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419114}}, {"model": "metainfo.source", "pk": 12617, "fields": {"orig_filename": "Kleinwaechter_Friedrich_1838_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392f.", "author": "", "orig_id": 1419112}}, {"model": "metainfo.source", "pk": 12618, "fields": {"orig_filename": "Kleinwaechter_Ludwig_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419115}}, {"model": "metainfo.source", "pk": 12619, "fields": {"orig_filename": "Klein_Adolf_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418771}}, {"model": "metainfo.source", "pk": 12620, "fields": {"orig_filename": "Klein_Adolf_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418772}}, {"model": "metainfo.source", "pk": 12621, "fields": {"orig_filename": "Klein_Anton_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376f.", "author": "", "orig_id": 1418773}}, {"model": "metainfo.source", "pk": 12622, "fields": {"orig_filename": "Klein_Anton_1830_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418774}}, {"model": "metainfo.source", "pk": 12623, "fields": {"orig_filename": "Klein_Arthur_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418775}}, {"model": "metainfo.source", "pk": 12624, "fields": {"orig_filename": "Klein_Edward-Emanuel_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418776}}, {"model": "metainfo.source", "pk": 12625, "fields": {"orig_filename": "Klein_Franz_1777_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377f.", "author": "", "orig_id": 1418777}}, {"model": "metainfo.source", "pk": 12626, "fields": {"orig_filename": "Klein_Franz_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378", "author": "", "orig_id": 1418779}}, {"model": "metainfo.source", "pk": 12627, "fields": {"orig_filename": "Klein_Franz_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378f.", "author": "", "orig_id": 1418780}}, {"model": "metainfo.source", "pk": 12628, "fields": {"orig_filename": "Klein_Gisela_1873_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454295}}, {"model": "metainfo.source", "pk": 12629, "fields": {"orig_filename": "Klein_Gyula_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 379f.", "author": "", "orig_id": 1418781}}, {"model": "metainfo.source", "pk": 12630, "fields": {"orig_filename": "Klein_Heinrich_1756_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418782}}, {"model": "metainfo.source", "pk": 12631, "fields": {"orig_filename": "Klein_Hubert_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418849}}, {"model": "metainfo.source", "pk": 12632, "fields": {"orig_filename": "Klein_Hugo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418850}}, {"model": "metainfo.source", "pk": 12633, "fields": {"orig_filename": "Klein_Hugo_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418851}}, {"model": "metainfo.source", "pk": 12634, "fields": {"orig_filename": "Klein_Johann-Adam_1792_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418852}}, {"model": "metainfo.source", "pk": 12635, "fields": {"orig_filename": "Klein_Johann-Ev_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418853}}, {"model": "metainfo.source", "pk": 12636, "fields": {"orig_filename": "Klein_Johann-Samuel_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381f.", "author": "", "orig_id": 1418854}}, {"model": "metainfo.source", "pk": 12637, "fields": {"orig_filename": "Klein_Johann-Wilhelm_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 382", "author": "", "orig_id": 1418855}}, {"model": "metainfo.source", "pk": 12638, "fields": {"orig_filename": "Klein_Josef_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383", "author": "", "orig_id": 1418857}}, {"model": "metainfo.source", "pk": 12639, "fields": {"orig_filename": "Klein_Joseph_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 382f.", "author": "", "orig_id": 1418856}}, {"model": "metainfo.source", "pk": 12640, "fields": {"orig_filename": "Klein_Julius-Leopold_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383", "author": "", "orig_id": 1418858}}, {"model": "metainfo.source", "pk": 12641, "fields": {"orig_filename": "Klein_Ludwig_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383f.", "author": "", "orig_id": 1418859}}, {"model": "metainfo.source", "pk": 12642, "fields": {"orig_filename": "Klein_Martin_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418860}}, {"model": "metainfo.source", "pk": 12643, "fields": {"orig_filename": "Klein_Max_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418861}}, {"model": "metainfo.source", "pk": 12644, "fields": {"orig_filename": "Klein_Norbert_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418862}}, {"model": "metainfo.source", "pk": 12645, "fields": {"orig_filename": "Klein_Regine_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418865}}, {"model": "metainfo.source", "pk": 12646, "fields": {"orig_filename": "Klein_Salomon_1845_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418867}}, {"model": "metainfo.source", "pk": 12647, "fields": {"orig_filename": "Klein_Samuel_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418939}}, {"model": "metainfo.source", "pk": 12648, "fields": {"orig_filename": "Klein_Thomas_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418940}}, {"model": "metainfo.source", "pk": 12649, "fields": {"orig_filename": "Klein_Wilhelm_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385f.", "author": "", "orig_id": 1418941}}, {"model": "metainfo.source", "pk": 12650, "fields": {"orig_filename": "Kleiss_Herbert_1930_2000.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1434435}}, {"model": "metainfo.source", "pk": 12651, "fields": {"orig_filename": "Klekler_Pauline_1876_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419118}}, {"model": "metainfo.source", "pk": 12652, "fields": {"orig_filename": "Klekl_Jozef_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419116}}, {"model": "metainfo.source", "pk": 12653, "fields": {"orig_filename": "Klekl_Jozef_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419117}}, {"model": "metainfo.source", "pk": 12654, "fields": {"orig_filename": "Klemencic_Ferdinand_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419120}}, {"model": "metainfo.source", "pk": 12655, "fields": {"orig_filename": "Klemencic_Ignaz_1853_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419121}}, {"model": "metainfo.source", "pk": 12656, "fields": {"orig_filename": "Klemencic_Igo_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394f.", "author": "", "orig_id": 1419122}}, {"model": "metainfo.source", "pk": 12657, "fields": {"orig_filename": "Klemensiewicz_Edmund_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419124}}, {"model": "metainfo.source", "pk": 12658, "fields": {"orig_filename": "Klemensiewicz_Rudolf_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419125}}, {"model": "metainfo.source", "pk": 12659, "fields": {"orig_filename": "Klemensiewicz_Zygmunt_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395f.", "author": "", "orig_id": 1419126}}, {"model": "metainfo.source", "pk": 12660, "fields": {"orig_filename": "Klemens_Josef-Bozetech_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419123}}, {"model": "metainfo.source", "pk": 12661, "fields": {"orig_filename": "Klement_Vaclav_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419127}}, {"model": "metainfo.source", "pk": 12662, "fields": {"orig_filename": "Klemme_Josef-Ludwig_1861_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419194}}, {"model": "metainfo.source", "pk": 12663, "fields": {"orig_filename": "Klemm_Friedrich_1795_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419128}}, {"model": "metainfo.source", "pk": 12664, "fields": {"orig_filename": "Klemm_Josef_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419129}}, {"model": "metainfo.source", "pk": 12665, "fields": {"orig_filename": "Klemt_Agathon_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419195}}, {"model": "metainfo.source", "pk": 12666, "fields": {"orig_filename": "Klenau-Janowitz_Johann_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419196}}, {"model": "metainfo.source", "pk": 12667, "fields": {"orig_filename": "Klepsch-Roden_Eduard_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419197}}, {"model": "metainfo.source", "pk": 12668, "fields": {"orig_filename": "Klesheim_Anton_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397f.", "author": "", "orig_id": 1419198}}, {"model": "metainfo.source", "pk": 12669, "fields": {"orig_filename": "Kletler_Bruno_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398", "author": "", "orig_id": 1419199}}, {"model": "metainfo.source", "pk": 12670, "fields": {"orig_filename": "Kletzinsky_Vinzenz_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398", "author": "", "orig_id": 1419200}}, {"model": "metainfo.source", "pk": 12671, "fields": {"orig_filename": "Kletzl_Otto_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398f.", "author": "", "orig_id": 1419201}}, {"model": "metainfo.source", "pk": 12672, "fields": {"orig_filename": "Kleutgen_Joseph-Wilhelm-Karl_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 399", "author": "", "orig_id": 1419202}}, {"model": "metainfo.source", "pk": 12673, "fields": {"orig_filename": "Kleyle_Franz-Joachim_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 399f.", "author": "", "orig_id": 1419203}}, {"model": "metainfo.source", "pk": 12674, "fields": {"orig_filename": "Kleyle_Karl_1812_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 400", "author": "", "orig_id": 1419204}}, {"model": "metainfo.source", "pk": 12675, "fields": {"orig_filename": "Klicka_Josef_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419206}}, {"model": "metainfo.source", "pk": 12676, "fields": {"orig_filename": "Klicman_Ladislav_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419207}}, {"model": "metainfo.source", "pk": 12677, "fields": {"orig_filename": "Klicpera_Ivan_1845_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419208}}, {"model": "metainfo.source", "pk": 12678, "fields": {"orig_filename": "Klicpera_Vaclav-Kliment_1792_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401f.", "author": "", "orig_id": 1419210}}, {"model": "metainfo.source", "pk": 12679, "fields": {"orig_filename": "Klic_Karel_1841_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 400f.", "author": "", "orig_id": 1419205}}, {"model": "metainfo.source", "pk": 12680, "fields": {"orig_filename": "Klieba_Michael_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419211}}, {"model": "metainfo.source", "pk": 12681, "fields": {"orig_filename": "Kliebenschaedl_Johann-Josef_1811_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419212}}, {"model": "metainfo.source", "pk": 12682, "fields": {"orig_filename": "Kliebert_Karl_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419275}}, {"model": "metainfo.source", "pk": 12683, "fields": {"orig_filename": "Klieber_Eduard_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419273}}, {"model": "metainfo.source", "pk": 12684, "fields": {"orig_filename": "Klieber_Josef_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402f.", "author": "", "orig_id": 1419274}}, {"model": "metainfo.source", "pk": 12685, "fields": {"orig_filename": "Kliegl_Jozsef_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419276}}, {"model": "metainfo.source", "pk": 12686, "fields": {"orig_filename": "Klier_Cenek_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419277}}, {"model": "metainfo.source", "pk": 12687, "fields": {"orig_filename": "Klier_Franz_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419279}}, {"model": "metainfo.source", "pk": 12688, "fields": {"orig_filename": "Klier_Jakob_1790_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403f.", "author": "", "orig_id": 1419280}}, {"model": "metainfo.source", "pk": 12689, "fields": {"orig_filename": "Kirchsteiger_Hans_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414732}}, {"model": "metainfo.source", "pk": 12690, "fields": {"orig_filename": "Kirch_Franz_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337f.", "author": "", "orig_id": 1414649}}, {"model": "metainfo.source", "pk": 12691, "fields": {"orig_filename": "Kirnbauer-Erzstaett_Johann_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414733}}, {"model": "metainfo.source", "pk": 12692, "fields": {"orig_filename": "Kirnbauer-Erzstaett_Philipp_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414734}}, {"model": "metainfo.source", "pk": 12693, "fields": {"orig_filename": "Kirnig_Alois_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343f.", "author": "", "orig_id": 1414735}}, {"model": "metainfo.source", "pk": 12694, "fields": {"orig_filename": "Kirpal_Alfred_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414800}}, {"model": "metainfo.source", "pk": 12695, "fields": {"orig_filename": "Kirschner_Aloisia_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 345f.", "author": "", "orig_id": 1414805}}, {"model": "metainfo.source", "pk": 12696, "fields": {"orig_filename": "Kirschner_Cornelius_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346", "author": "", "orig_id": 1414806}}, {"model": "metainfo.source", "pk": 12697, "fields": {"orig_filename": "Kirschner_Ferdinand_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414807}}, {"model": "metainfo.source", "pk": 12698, "fields": {"orig_filename": "Kirsch_Arnold_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414801}}, {"model": "metainfo.source", "pk": 12699, "fields": {"orig_filename": "Kirsch_August_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414802}}, {"model": "metainfo.source", "pk": 12700, "fields": {"orig_filename": "Kirsch_Bernhard_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344f.", "author": "", "orig_id": 1414803}}, {"model": "metainfo.source", "pk": 12701, "fields": {"orig_filename": "Kirsch_Otto_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 345", "author": "", "orig_id": 1414804}}, {"model": "metainfo.source", "pk": 12702, "fields": {"orig_filename": "Kirstein_August_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346f.", "author": "", "orig_id": 1414809}}, {"model": "metainfo.source", "pk": 12703, "fields": {"orig_filename": "Kirste_Johann-Otto-Ferdinand_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346", "author": "", "orig_id": 1414808}}, {"model": "metainfo.source", "pk": 12704, "fields": {"orig_filename": "Kisa_Anton-Karl_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 347", "author": "", "orig_id": 1414810}}, {"model": "metainfo.source", "pk": 12705, "fields": {"orig_filename": "Kisch_Alexander_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 347f.", "author": "", "orig_id": 1414811}}, {"model": "metainfo.source", "pk": 12706, "fields": {"orig_filename": "Kisch_Egon_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 348f.", "author": "", "orig_id": 1414812}}, {"model": "metainfo.source", "pk": 12707, "fields": {"orig_filename": "Kisch_Enoch-Heinrich_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 349", "author": "", "orig_id": 1414813}}, {"model": "metainfo.source", "pk": 12708, "fields": {"orig_filename": "Kisch_Gustav-Oswald_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 349f.", "author": "", "orig_id": 1414814}}, {"model": "metainfo.source", "pk": 12709, "fields": {"orig_filename": "Kisch_Wilhelm-Maximilian_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414815}}, {"model": "metainfo.source", "pk": 12710, "fields": {"orig_filename": "Kiseljak_Mara_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414816}}, {"model": "metainfo.source", "pk": 12711, "fields": {"orig_filename": "Kiseljak_Marije_1883_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414817}}, {"model": "metainfo.source", "pk": 12712, "fields": {"orig_filename": "Kiseljak_Vladimir_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414818}}, {"model": "metainfo.source", "pk": 12713, "fields": {"orig_filename": "Kisfaludy_Karoly_1788_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350f.", "author": "", "orig_id": 1414819}}, {"model": "metainfo.source", "pk": 12714, "fields": {"orig_filename": "Kisfaludy_Sandor_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351", "author": "", "orig_id": 1414820}}, {"model": "metainfo.source", "pk": 12715, "fields": {"orig_filename": "Kisic_Vinko_1879_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351", "author": "", "orig_id": 1414888}}, {"model": "metainfo.source", "pk": 12716, "fields": {"orig_filename": "Kisielewski_Jan-August_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351f.", "author": "", "orig_id": 1414889}}, {"model": "metainfo.source", "pk": 12717, "fields": {"orig_filename": "Kispatic_Mijo_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352", "author": "", "orig_id": 1414890}}, {"model": "metainfo.source", "pk": 12718, "fields": {"orig_filename": "Kiss-Ittebe-Elemer_Ernoe_1800_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414980}}, {"model": "metainfo.source", "pk": 12719, "fields": {"orig_filename": "Kiss-Nemesker_Miklos_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414981}}, {"model": "metainfo.source", "pk": 12720, "fields": {"orig_filename": "Kissling_Adolf_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356f.", "author": "", "orig_id": 1414982}}, {"model": "metainfo.source", "pk": 12721, "fields": {"orig_filename": "Kissner-Scheurich_Babette_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 357", "author": "", "orig_id": 1414983}}, {"model": "metainfo.source", "pk": 12722, "fields": {"orig_filename": "Kiss_Aron_1815_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352", "author": "", "orig_id": 1414891}}, {"model": "metainfo.source", "pk": 12723, "fields": {"orig_filename": "Kiss_Aron_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352f.", "author": "", "orig_id": 1414892}}, {"model": "metainfo.source", "pk": 12724, "fields": {"orig_filename": "Kiss_Balint_1772_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414893}}, {"model": "metainfo.source", "pk": 12725, "fields": {"orig_filename": "Kiss_Balint_1802_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414894}}, {"model": "metainfo.source", "pk": 12726, "fields": {"orig_filename": "Kiss_Ferenc_1862_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414895}}, {"model": "metainfo.source", "pk": 12727, "fields": {"orig_filename": "Kiss_Franz_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414896}}, {"model": "metainfo.source", "pk": 12728, "fields": {"orig_filename": "Kiss_Gyoergy_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353f.", "author": "", "orig_id": 1414898}}, {"model": "metainfo.source", "pk": 12729, "fields": {"orig_filename": "Kiss_Istvan_1857_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354", "author": "", "orig_id": 1414899}}, {"model": "metainfo.source", "pk": 12730, "fields": {"orig_filename": "Kiss_Janos_1770_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354", "author": "", "orig_id": 1414900}}, {"model": "metainfo.source", "pk": 12731, "fields": {"orig_filename": "Kiss_Janos_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354f.", "author": "", "orig_id": 1414901}}, {"model": "metainfo.source", "pk": 12732, "fields": {"orig_filename": "Kiss_Josef_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414902}}, {"model": "metainfo.source", "pk": 12733, "fields": {"orig_filename": "Kiss_Jozsef_1765_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414903}}, {"model": "metainfo.source", "pk": 12734, "fields": {"orig_filename": "Kiss_Jozsef_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414975}}, {"model": "metainfo.source", "pk": 12735, "fields": {"orig_filename": "Kiss_Kalman_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414976}}, {"model": "metainfo.source", "pk": 12736, "fields": {"orig_filename": "Kiss_Karoly_1793_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355f.", "author": "", "orig_id": 1414977}}, {"model": "metainfo.source", "pk": 12737, "fields": {"orig_filename": "Kiss_Karoly_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414978}}, {"model": "metainfo.source", "pk": 12738, "fields": {"orig_filename": "Kitaibel_Paul_1757_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 357f.", "author": "", "orig_id": 1414222}}, {"model": "metainfo.source", "pk": 12739, "fields": {"orig_filename": "Kitir_Joseph_1867_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358", "author": "", "orig_id": 1414223}}, {"model": "metainfo.source", "pk": 12740, "fields": {"orig_filename": "Kitschelt_Lothar_1910_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358", "author": "", "orig_id": 1414224}}, {"model": "metainfo.source", "pk": 12741, "fields": {"orig_filename": "Kittel_Anton__1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358f.", "author": "", "orig_id": 1414225}}, {"model": "metainfo.source", "pk": 12742, "fields": {"orig_filename": "Kittel_Gerhard_1888_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 359", "author": "", "orig_id": 1414226}}, {"model": "metainfo.source", "pk": 12743, "fields": {"orig_filename": "Kittl_Ernst_1854_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 359f.", "author": "", "orig_id": 1414228}}, {"model": "metainfo.source", "pk": 12744, "fields": {"orig_filename": "Kittl_Johann-Friedrich_1806_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 360", "author": "", "orig_id": 1414229}}, {"model": "metainfo.source", "pk": 12745, "fields": {"orig_filename": "Kittner_Alexander_1809_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 360", "author": "", "orig_id": 1414230}}, {"model": "metainfo.source", "pk": 12746, "fields": {"orig_filename": "Kittner_Patriz_1809_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414231}}, {"model": "metainfo.source", "pk": 12747, "fields": {"orig_filename": "Kitzler_Otto_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414232}}, {"model": "metainfo.source", "pk": 12748, "fields": {"orig_filename": "Kiurina_Berta_1888_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414233}}, {"model": "metainfo.source", "pk": 12749, "fields": {"orig_filename": "Kiuver_Stephan-Agontz_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414234}}, {"model": "metainfo.source", "pk": 12750, "fields": {"orig_filename": "Kiwisch-Rotterau_Franz_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361f.", "author": "", "orig_id": 1414235}}, {"model": "metainfo.source", "pk": 12751, "fields": {"orig_filename": "Klaar_Alfred_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 362", "author": "", "orig_id": 1414236}}, {"model": "metainfo.source", "pk": 12752, "fields": {"orig_filename": "Klacel_Matous_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 362f.", "author": "", "orig_id": 1414237}}, {"model": "metainfo.source", "pk": 12753, "fields": {"orig_filename": "Klaczko_Julian_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414238}}, {"model": "metainfo.source", "pk": 12754, "fields": {"orig_filename": "Kladivo_Bohumil_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414239}}, {"model": "metainfo.source", "pk": 12755, "fields": {"orig_filename": "Klaeger_Emil_1880_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414240}}, {"model": "metainfo.source", "pk": 12756, "fields": {"orig_filename": "Klaehr_Franziska_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363f.", "author": "", "orig_id": 1414304}}, {"model": "metainfo.source", "pk": 12757, "fields": {"orig_filename": "Klafsky_Katharina_1855_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 364", "author": "", "orig_id": 1414305}}, {"model": "metainfo.source", "pk": 12758, "fields": {"orig_filename": "Klahs_Ignatz_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 364f.", "author": "", "orig_id": 1414306}}, {"model": "metainfo.source", "pk": 12759, "fields": {"orig_filename": "Klaic_Franjo_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365", "author": "", "orig_id": 1414307}}, {"model": "metainfo.source", "pk": 12760, "fields": {"orig_filename": "Klaic_Miho_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365", "author": "", "orig_id": 1414308}}, {"model": "metainfo.source", "pk": 12761, "fields": {"orig_filename": "Klaic_Vjekoslav_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365f.", "author": "", "orig_id": 1414309}}, {"model": "metainfo.source", "pk": 12762, "fields": {"orig_filename": "Klajic_Jovan_1815_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414310}}, {"model": "metainfo.source", "pk": 12763, "fields": {"orig_filename": "Klama_Odilo_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414311}}, {"model": "metainfo.source", "pk": 12764, "fields": {"orig_filename": "Klammer_Nicolaus_1769_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414312}}, {"model": "metainfo.source", "pk": 12765, "fields": {"orig_filename": "Klammer_Richard_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414313}}, {"model": "metainfo.source", "pk": 12766, "fields": {"orig_filename": "Klang_Heinrich-Adalbert_1875_1954.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454721}}, {"model": "metainfo.source", "pk": 12767, "fields": {"orig_filename": "Klang_James_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366f.", "author": "", "orig_id": 1414314}}, {"model": "metainfo.source", "pk": 12768, "fields": {"orig_filename": "Klapalek_Frantisek_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367", "author": "", "orig_id": 1414315}}, {"model": "metainfo.source", "pk": 12769, "fields": {"orig_filename": "Klapeer_Anton_1770_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367", "author": "", "orig_id": 1414316}}, {"model": "metainfo.source", "pk": 12770, "fields": {"orig_filename": "Klapka_Georg_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367f.", "author": "", "orig_id": 1414317}}, {"model": "metainfo.source", "pk": 12771, "fields": {"orig_filename": "Klapp_Michael_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 368", "author": "", "orig_id": 1414318}}, {"model": "metainfo.source", "pk": 12772, "fields": {"orig_filename": "Klapsia_Heinrich_1907_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 368f.", "author": "", "orig_id": 1414319}}, {"model": "metainfo.source", "pk": 12773, "fields": {"orig_filename": "Klar_Alois_1763_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369", "author": "", "orig_id": 1414320}}, {"model": "metainfo.source", "pk": 12774, "fields": {"orig_filename": "Klar_Christoph_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369", "author": "", "orig_id": 1414321}}, {"model": "metainfo.source", "pk": 12775, "fields": {"orig_filename": "Klar_Paul-Alois_1801_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369f.", "author": "", "orig_id": 1414322}}, {"model": "metainfo.source", "pk": 12776, "fields": {"orig_filename": "Klar_Rudolf-Maria_1845_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414387}}, {"model": "metainfo.source", "pk": 12777, "fields": {"orig_filename": "Klastersky_Antonin_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414386}}, {"model": "metainfo.source", "pk": 12778, "fields": {"orig_filename": "Klatscher_Alfred_1858_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414388}}, {"model": "metainfo.source", "pk": 12779, "fields": {"orig_filename": "Klaudi_Josef_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414389}}, {"model": "metainfo.source", "pk": 12780, "fields": {"orig_filename": "Klaudy_Karel-Leopold_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370f.", "author": "", "orig_id": 1414390}}, {"model": "metainfo.source", "pk": 12781, "fields": {"orig_filename": "Klausberger_Maria-Leopoldine_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371f.", "author": "", "orig_id": 1414394}}, {"model": "metainfo.source", "pk": 12782, "fields": {"orig_filename": "Klausner_Hubert_1892_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372", "author": "", "orig_id": 1414395}}, {"model": "metainfo.source", "pk": 12783, "fields": {"orig_filename": "Klaus_Johannes_1847_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414391}}, {"model": "metainfo.source", "pk": 12784, "fields": {"orig_filename": "Klaus_Josef_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414393}}, {"model": "metainfo.source", "pk": 12785, "fields": {"orig_filename": "Klaus_Raimund_1812_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414392}}, {"model": "metainfo.source", "pk": 12786, "fields": {"orig_filename": "Klauzal_Gabor_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372", "author": "", "orig_id": 1414396}}, {"model": "metainfo.source", "pk": 12787, "fields": {"orig_filename": "Klauzal_Imre_1799_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372f.", "author": "", "orig_id": 1414397}}, {"model": "metainfo.source", "pk": 12788, "fields": {"orig_filename": "Klavik_Frantisek-Josef_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414398}}, {"model": "metainfo.source", "pk": 12789, "fields": {"orig_filename": "Klavzar_Ernest_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414399}}, {"model": "metainfo.source", "pk": 12790, "fields": {"orig_filename": "Klebelsberg-Thumburg_Franz_1774_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414400}}, {"model": "metainfo.source", "pk": 12791, "fields": {"orig_filename": "Klebelsberg-Thumburg_Hieronymus_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373f.", "author": "", "orig_id": 1414401}}, {"model": "metainfo.source", "pk": 12792, "fields": {"orig_filename": "Klebelsberg-Thumburg_Jakob-Philipp_1749_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 374", "author": "", "orig_id": 1414402}}, {"model": "metainfo.source", "pk": 12793, "fields": {"orig_filename": "Kettner_Adolf_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414298}}, {"model": "metainfo.source", "pk": 12794, "fields": {"orig_filename": "Kettner_Ferdinand_1779_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414299}}, {"model": "metainfo.source", "pk": 12795, "fields": {"orig_filename": "Kezdi-Kovacs_Laszlo_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414300}}, {"model": "metainfo.source", "pk": 12796, "fields": {"orig_filename": "Khackhl_Thomas_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314f.", "author": "", "orig_id": 1414301}}, {"model": "metainfo.source", "pk": 12797, "fields": {"orig_filename": "Khautz-Eulenthal_Karl_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 315", "author": "", "orig_id": 1414303}}, {"model": "metainfo.source", "pk": 12798, "fields": {"orig_filename": "Khayll_Alois_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 315f.", "author": "", "orig_id": 1414366}}, {"model": "metainfo.source", "pk": 12799, "fields": {"orig_filename": "Khayll_Josef_1781_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414367}}, {"model": "metainfo.source", "pk": 12800, "fields": {"orig_filename": "Kheil_Karel-Petr_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414369}}, {"model": "metainfo.source", "pk": 12801, "fields": {"orig_filename": "Kheil_Karel-Petr_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414368}}, {"model": "metainfo.source", "pk": 12802, "fields": {"orig_filename": "Kherndl_Antal_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414370}}, {"model": "metainfo.source", "pk": 12803, "fields": {"orig_filename": "Khevenhueller-Metsch_Rudolf_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316f.", "author": "", "orig_id": 1414371}}, {"model": "metainfo.source", "pk": 12804, "fields": {"orig_filename": "Khittel-Westhort_Jaroslav_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414373}}, {"model": "metainfo.source", "pk": 12805, "fields": {"orig_filename": "Khittel_Rudolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414372}}, {"model": "metainfo.source", "pk": 12806, "fields": {"orig_filename": "Khoss-Sternegg_August_1819_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414374}}, {"model": "metainfo.source", "pk": 12807, "fields": {"orig_filename": "Khoss-Sternegg_Johann_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414375}}, {"model": "metainfo.source", "pk": 12808, "fields": {"orig_filename": "Khoss-Sternegg_Josef_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317f.", "author": "", "orig_id": 1414376}}, {"model": "metainfo.source", "pk": 12809, "fields": {"orig_filename": "Khuen-Hedervary_Karoly_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414378}}, {"model": "metainfo.source", "pk": 12810, "fields": {"orig_filename": "Khuenberg_Sophie_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414379}}, {"model": "metainfo.source", "pk": 12811, "fields": {"orig_filename": "Khuenl_Jacob-Rudolph_1775_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318f.", "author": "", "orig_id": 1414380}}, {"model": "metainfo.source", "pk": 12812, "fields": {"orig_filename": "Khuen_Theodor-Franz-Maria_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414377}}, {"model": "metainfo.source", "pk": 12813, "fields": {"orig_filename": "Khuepach-Ried-Zimmerlehen-Haslburg_Viktor_1859_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414381}}, {"model": "metainfo.source", "pk": 12814, "fields": {"orig_filename": "Khull-Kholwald_Ferdinand_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414382}}, {"model": "metainfo.source", "pk": 12815, "fields": {"orig_filename": "Kicinski_Bruno_1796_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414383}}, {"model": "metainfo.source", "pk": 12816, "fields": {"orig_filename": "Kickh_Clemens_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320", "author": "", "orig_id": 1414385}}, {"model": "metainfo.source", "pk": 12817, "fields": {"orig_filename": "Kick_Friedrich_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320", "author": "", "orig_id": 1414384}}, {"model": "metainfo.source", "pk": 12818, "fields": {"orig_filename": "Kidric_Franc_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320f.", "author": "", "orig_id": 1414446}}, {"model": "metainfo.source", "pk": 12819, "fields": {"orig_filename": "Kiechl_Johann_1804_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414447}}, {"model": "metainfo.source", "pk": 12820, "fields": {"orig_filename": "Kiechl_Josef_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414448}}, {"model": "metainfo.source", "pk": 12821, "fields": {"orig_filename": "Kiechl_Josef_1807_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414449}}, {"model": "metainfo.source", "pk": 12822, "fields": {"orig_filename": "Kiedron_Jozef_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321f.", "author": "", "orig_id": 1414450}}, {"model": "metainfo.source", "pk": 12823, "fields": {"orig_filename": "Kielmansegge_Alexander_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322", "author": "", "orig_id": 1414452}}, {"model": "metainfo.source", "pk": 12824, "fields": {"orig_filename": "Kielmansegg_Erich_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322", "author": "", "orig_id": 1414451}}, {"model": "metainfo.source", "pk": 12825, "fields": {"orig_filename": "Kiem_Martin_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322f.", "author": "", "orig_id": 1414453}}, {"model": "metainfo.source", "pk": 12826, "fields": {"orig_filename": "Kienast_Friedrich-August_1853_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414454}}, {"model": "metainfo.source", "pk": 12827, "fields": {"orig_filename": "Kiendl_Anton_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414458}}, {"model": "metainfo.source", "pk": 12828, "fields": {"orig_filename": "Kiener_Franz_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414460}}, {"model": "metainfo.source", "pk": 12829, "fields": {"orig_filename": "Kiene_Kurt_1891_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414459}}, {"model": "metainfo.source", "pk": 12830, "fields": {"orig_filename": "Kieninger_Johann-Georg_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323f.", "author": "", "orig_id": 1414461}}, {"model": "metainfo.source", "pk": 12831, "fields": {"orig_filename": "Kienmayer_Michael_1755_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414462}}, {"model": "metainfo.source", "pk": 12832, "fields": {"orig_filename": "Kienreich_Franz-Xaver_1806_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414463}}, {"model": "metainfo.source", "pk": 12833, "fields": {"orig_filename": "Kienreich_Johann-Nep-Andreas_1759_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414464}}, {"model": "metainfo.source", "pk": 12834, "fields": {"orig_filename": "Kienzl_Hermann_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324f.", "author": "", "orig_id": 1414465}}, {"model": "metainfo.source", "pk": 12835, "fields": {"orig_filename": "Kienzl_Josef_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 325", "author": "", "orig_id": 1414466}}, {"model": "metainfo.source", "pk": 12836, "fields": {"orig_filename": "Kienzl_Wilhelm_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 325f.", "author": "", "orig_id": 1414538}}, {"model": "metainfo.source", "pk": 12837, "fields": {"orig_filename": "Kienzl_Wilhelm_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 326", "author": "", "orig_id": 1414539}}, {"model": "metainfo.source", "pk": 12838, "fields": {"orig_filename": "Kierschner_Eduard_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 326f.", "author": "", "orig_id": 1414540}}, {"model": "metainfo.source", "pk": 12839, "fields": {"orig_filename": "Kierschner_Franz_1833_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414541}}, {"model": "metainfo.source", "pk": 12840, "fields": {"orig_filename": "Kiesewetter-Wiesenbrunn_Irene_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414544}}, {"model": "metainfo.source", "pk": 12841, "fields": {"orig_filename": "Kiesewetter-Wiesenbrunn_Raphael-Georg_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327f.", "author": "", "orig_id": 1414545}}, {"model": "metainfo.source", "pk": 12842, "fields": {"orig_filename": "Kiesling_Daniel_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414546}}, {"model": "metainfo.source", "pk": 12843, "fields": {"orig_filename": "Kiesling_Leopold_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414547}}, {"model": "metainfo.source", "pk": 12844, "fields": {"orig_filename": "Kiesslich_Anton_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414548}}, {"model": "metainfo.source", "pk": 12845, "fields": {"orig_filename": "Kiessling_Franz-Xaver_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329", "author": "", "orig_id": 1414549}}, {"model": "metainfo.source", "pk": 12846, "fields": {"orig_filename": "Kiessling_Johann-Tobias_1742_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329", "author": "", "orig_id": 1414550}}, {"model": "metainfo.source", "pk": 12847, "fields": {"orig_filename": "Kies_Heinrich_1778_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414542}}, {"model": "metainfo.source", "pk": 12848, "fields": {"orig_filename": "Kikic_Hasan_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329f.", "author": "", "orig_id": 1414552}}, {"model": "metainfo.source", "pk": 12849, "fields": {"orig_filename": "Kilanyi_Ludwig_1819_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414553}}, {"model": "metainfo.source", "pk": 12850, "fields": {"orig_filename": "Kilanyi_Therese_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414554}}, {"model": "metainfo.source", "pk": 12851, "fields": {"orig_filename": "Kilenyi_Janos_1805_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414555}}, {"model": "metainfo.source", "pk": 12852, "fields": {"orig_filename": "Kilian-Gayrsperg_Franz-Xaver_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414556}}, {"model": "metainfo.source", "pk": 12853, "fields": {"orig_filename": "Kimmel_Fidelis_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414557}}, {"model": "metainfo.source", "pk": 12854, "fields": {"orig_filename": "Kimnach_Ladislaus_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414558}}, {"model": "metainfo.source", "pk": 12855, "fields": {"orig_filename": "Kindermann_Rudolf_1897_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414560}}, {"model": "metainfo.source", "pk": 12856, "fields": {"orig_filename": "Kindinger_Eduard_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414561}}, {"model": "metainfo.source", "pk": 12857, "fields": {"orig_filename": "Kindinger_Ignaz_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414632}}, {"model": "metainfo.source", "pk": 12858, "fields": {"orig_filename": "Kind_Alexander_1890_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414559}}, {"model": "metainfo.source", "pk": 12859, "fields": {"orig_filename": "Kininger_Vincenz-Georg_1767_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331f.", "author": "", "orig_id": 1414633}}, {"model": "metainfo.source", "pk": 12860, "fields": {"orig_filename": "Kink_Anton_1820_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 332", "author": "", "orig_id": 1414634}}, {"model": "metainfo.source", "pk": 12861, "fields": {"orig_filename": "Kink_Franz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 332f.", "author": "", "orig_id": 1414635}}, {"model": "metainfo.source", "pk": 12862, "fields": {"orig_filename": "Kink_Julius_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 333", "author": "", "orig_id": 1414636}}, {"model": "metainfo.source", "pk": 12863, "fields": {"orig_filename": "Kink_Martin_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 333f.", "author": "", "orig_id": 1414637}}, {"model": "metainfo.source", "pk": 12864, "fields": {"orig_filename": "Kink_Rudolf_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 334", "author": "", "orig_id": 1414638}}, {"model": "metainfo.source", "pk": 12865, "fields": {"orig_filename": "Kinsele-Eckberg_Josef_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 334f.", "author": "", "orig_id": 1414639}}, {"model": "metainfo.source", "pk": 12866, "fields": {"orig_filename": "Kinsky-Wchinitz-Tettau_Carl_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414640}}, {"model": "metainfo.source", "pk": 12867, "fields": {"orig_filename": "Kinsky-Wchinitz-Tettau_Christian_1777_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414641}}, {"model": "metainfo.source", "pk": 12868, "fields": {"orig_filename": "Kinter_Maurus_1842_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414642}}, {"model": "metainfo.source", "pk": 12869, "fields": {"orig_filename": "Kinzel_Josef_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336", "author": "", "orig_id": 1414644}}, {"model": "metainfo.source", "pk": 12870, "fields": {"orig_filename": "Kinzer_Karl_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336", "author": "", "orig_id": 1414645}}, {"model": "metainfo.source", "pk": 12871, "fields": {"orig_filename": "Kinzl_Josef_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336f.", "author": "", "orig_id": 1414646}}, {"model": "metainfo.source", "pk": 12872, "fields": {"orig_filename": "Kinz_Ferdinand_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335f.", "author": "", "orig_id": 1414643}}, {"model": "metainfo.source", "pk": 12873, "fields": {"orig_filename": "Kirac_Luka_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337", "author": "", "orig_id": 1414647}}, {"model": "metainfo.source", "pk": 12874, "fields": {"orig_filename": "Kiralyi_Pal_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337", "author": "", "orig_id": 1414648}}, {"model": "metainfo.source", "pk": 12875, "fields": {"orig_filename": "Kirchbach-Lauterbach_Johann_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414650}}, {"model": "metainfo.source", "pk": 12876, "fields": {"orig_filename": "Kirchbach-Lauterbach_Karl_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414651}}, {"model": "metainfo.source", "pk": 12877, "fields": {"orig_filename": "Kirchberger_Johann-Ev_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414652}}, {"model": "metainfo.source", "pk": 12878, "fields": {"orig_filename": "Kirchebner_Anton-Alois_1823_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338f.", "author": "", "orig_id": 1414653}}, {"model": "metainfo.source", "pk": 12879, "fields": {"orig_filename": "Kirchebner_Franz-Xaver_1736_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414715}}, {"model": "metainfo.source", "pk": 12880, "fields": {"orig_filename": "Kirchebner_Peter-Paul_1812_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414716}}, {"model": "metainfo.source", "pk": 12881, "fields": {"orig_filename": "Kirchenberger_Salomon_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414717}}, {"model": "metainfo.source", "pk": 12882, "fields": {"orig_filename": "Kirchgaesser-Rheinhoven_Julius_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414718}}, {"model": "metainfo.source", "pk": 12883, "fields": {"orig_filename": "Kirchhammer_Alexander_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339f.", "author": "", "orig_id": 1414719}}, {"model": "metainfo.source", "pk": 12884, "fields": {"orig_filename": "Kirchhoffer_Rudolf_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414720}}, {"model": "metainfo.source", "pk": 12885, "fields": {"orig_filename": "Kirchlechner_Alfons_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414722}}, {"model": "metainfo.source", "pk": 12886, "fields": {"orig_filename": "Kirchlehner_Ferenc_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340f.", "author": "", "orig_id": 1414723}}, {"model": "metainfo.source", "pk": 12887, "fields": {"orig_filename": "Kirchmayer_Wincenty-Marcin-Kanty_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414724}}, {"model": "metainfo.source", "pk": 12888, "fields": {"orig_filename": "Kirchmayr_Hermann_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414725}}, {"model": "metainfo.source", "pk": 12889, "fields": {"orig_filename": "Kirchner_Hermann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414726}}, {"model": "metainfo.source", "pk": 12890, "fields": {"orig_filename": "Kirchner_Johann-Carl_1821_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341f.", "author": "", "orig_id": 1414727}}, {"model": "metainfo.source", "pk": 12891, "fields": {"orig_filename": "Kirchner_Leopold-Anton_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414728}}, {"model": "metainfo.source", "pk": 12892, "fields": {"orig_filename": "Kirchner_Raphael_1875_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414729}}, {"model": "metainfo.source", "pk": 12893, "fields": {"orig_filename": "Kirchner_Theodor_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414730}}, {"model": "metainfo.source", "pk": 12894, "fields": {"orig_filename": "Kirchsberg_Ernestine_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342f.", "author": "", "orig_id": 1414731}}, {"model": "metainfo.source", "pk": 12895, "fields": {"orig_filename": "Keil-Eichenthurn_Othmar_1888_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282f.", "author": "", "orig_id": 1415218}}, {"model": "metainfo.source", "pk": 12896, "fields": {"orig_filename": "Keil_Anton_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281f.", "author": "", "orig_id": 1415215}}, {"model": "metainfo.source", "pk": 12897, "fields": {"orig_filename": "Keil_Franz_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282", "author": "", "orig_id": 1415216}}, {"model": "metainfo.source", "pk": 12898, "fields": {"orig_filename": "Keil_Franz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282", "author": "", "orig_id": 1415217}}, {"model": "metainfo.source", "pk": 12899, "fields": {"orig_filename": "Keim_Franz_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 283", "author": "", "orig_id": 1415219}}, {"model": "metainfo.source", "pk": 12900, "fields": {"orig_filename": "Keintzel_Georg_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 283f.", "author": "", "orig_id": 1415220}}, {"model": "metainfo.source", "pk": 12901, "fields": {"orig_filename": "Keissler_Karl_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415221}}, {"model": "metainfo.source", "pk": 12902, "fields": {"orig_filename": "Keiter_Ernst_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415222}}, {"model": "metainfo.source", "pk": 12903, "fields": {"orig_filename": "Keitler_Heinrich_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415223}}, {"model": "metainfo.source", "pk": 12904, "fields": {"orig_filename": "Keki_Richard_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415224}}, {"model": "metainfo.source", "pk": 12905, "fields": {"orig_filename": "Kelbetz_Ludwig_1905_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284f.", "author": "", "orig_id": 1415225}}, {"model": "metainfo.source", "pk": 12906, "fields": {"orig_filename": "Kelemen_Imre_1746_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1415226}}, {"model": "metainfo.source", "pk": 12907, "fields": {"orig_filename": "Keler_Albert-Paul_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1413935}}, {"model": "metainfo.source", "pk": 12908, "fields": {"orig_filename": "Keleti_Gusztav-Frigyes_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1413936}}, {"model": "metainfo.source", "pk": 12909, "fields": {"orig_filename": "Keleti_Karoly_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285f.", "author": "", "orig_id": 1413937}}, {"model": "metainfo.source", "pk": 12910, "fields": {"orig_filename": "Kellermann_Georg_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413951}}, {"model": "metainfo.source", "pk": 12911, "fields": {"orig_filename": "Keller_Alfred_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286f.", "author": "", "orig_id": 1413941}}, {"model": "metainfo.source", "pk": 12912, "fields": {"orig_filename": "Keller_Franz-Carl_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287", "author": "", "orig_id": 1413942}}, {"model": "metainfo.source", "pk": 12913, "fields": {"orig_filename": "Keller_Gustav_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287", "author": "", "orig_id": 1413943}}, {"model": "metainfo.source", "pk": 12914, "fields": {"orig_filename": "Keller_Heinrich_1866_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287f.", "author": "", "orig_id": 1413944}}, {"model": "metainfo.source", "pk": 12915, "fields": {"orig_filename": "Keller_Karl-Ludwig-Adam_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 288", "author": "", "orig_id": 1413945}}, {"model": "metainfo.source", "pk": 12916, "fields": {"orig_filename": "Keller_Konstantin_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413946}}, {"model": "metainfo.source", "pk": 12917, "fields": {"orig_filename": "Keller_Otto_1838_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413947}}, {"model": "metainfo.source", "pk": 12918, "fields": {"orig_filename": "Keller_Otto_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413948}}, {"model": "metainfo.source", "pk": 12919, "fields": {"orig_filename": "Keller_Rosa_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413949}}, {"model": "metainfo.source", "pk": 12920, "fields": {"orig_filename": "Keller_Seraphin_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413950}}, {"model": "metainfo.source", "pk": 12921, "fields": {"orig_filename": "Kelle_Carl_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286", "author": "", "orig_id": 1413938}}, {"model": "metainfo.source", "pk": 12922, "fields": {"orig_filename": "Kelle_Johann_1828_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286", "author": "", "orig_id": 1413939}}, {"model": "metainfo.source", "pk": 12923, "fields": {"orig_filename": "Kellner-Koellenstein_Friedrich-Marcus_1802_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 291", "author": "", "orig_id": 1413954}}, {"model": "metainfo.source", "pk": 12924, "fields": {"orig_filename": "Kellner_Karl_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413952}}, {"model": "metainfo.source", "pk": 12925, "fields": {"orig_filename": "Kellner_Leon_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290f.", "author": "", "orig_id": 1413953}}, {"model": "metainfo.source", "pk": 12926, "fields": {"orig_filename": "Kelsen_Hans_1881_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1452604}}, {"model": "metainfo.source", "pk": 12927, "fields": {"orig_filename": "Kematmueller_Heinrich-Nikolaus_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 291f.", "author": "", "orig_id": 1413955}}, {"model": "metainfo.source", "pk": 12928, "fields": {"orig_filename": "Kemenater_Peter-Johann_1783_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1413956}}, {"model": "metainfo.source", "pk": 12929, "fields": {"orig_filename": "Kemendy_Jenoe_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1413957}}, {"model": "metainfo.source", "pk": 12930, "fields": {"orig_filename": "Kemeny_Jozsef_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1414028}}, {"model": "metainfo.source", "pk": 12931, "fields": {"orig_filename": "Kemeny_Zsigmond_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292f.", "author": "", "orig_id": 1414029}}, {"model": "metainfo.source", "pk": 12932, "fields": {"orig_filename": "Kempen-Fichtenstamm_Johann-Franz_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414030}}, {"model": "metainfo.source", "pk": 12933, "fields": {"orig_filename": "Kempf_Julije_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414031}}, {"model": "metainfo.source", "pk": 12934, "fields": {"orig_filename": "Kenda_Josip_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414032}}, {"model": "metainfo.source", "pk": 12935, "fields": {"orig_filename": "Kenda_Josip_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293f.", "author": "", "orig_id": 1414033}}, {"model": "metainfo.source", "pk": 12936, "fields": {"orig_filename": "Kende_Oskar_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414034}}, {"model": "metainfo.source", "pk": 12937, "fields": {"orig_filename": "Kendler_Rudolf_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414037}}, {"model": "metainfo.source", "pk": 12938, "fields": {"orig_filename": "Kengelac_Emilijan_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414038}}, {"model": "metainfo.source", "pk": 12939, "fields": {"orig_filename": "Kengelac_Pavao_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414039}}, {"model": "metainfo.source", "pk": 12940, "fields": {"orig_filename": "Kenner_Anton_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294f.", "author": "", "orig_id": 1414040}}, {"model": "metainfo.source", "pk": 12941, "fields": {"orig_filename": "Kenner_Friedrich_1834_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 295", "author": "", "orig_id": 1414041}}, {"model": "metainfo.source", "pk": 12942, "fields": {"orig_filename": "Kenner_Joseph_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 295f.", "author": "", "orig_id": 1414042}}, {"model": "metainfo.source", "pk": 12943, "fields": {"orig_filename": "Kennessey_Bela_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414043}}, {"model": "metainfo.source", "pk": 12944, "fields": {"orig_filename": "Kepka_Karel-Hugo_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414044}}, {"model": "metainfo.source", "pk": 12945, "fields": {"orig_filename": "Keppler_Zoelestin_1784_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414045}}, {"model": "metainfo.source", "pk": 12946, "fields": {"orig_filename": "Kepplinger_Josef_1849_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414046}}, {"model": "metainfo.source", "pk": 12947, "fields": {"orig_filename": "Kerausch_Josef_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296f.", "author": "", "orig_id": 1414047}}, {"model": "metainfo.source", "pk": 12948, "fields": {"orig_filename": "Kerber_Erwin_1891_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297", "author": "", "orig_id": 1414048}}, {"model": "metainfo.source", "pk": 12949, "fields": {"orig_filename": "Kerber_Hermann_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297", "author": "", "orig_id": 1414115}}, {"model": "metainfo.source", "pk": 12950, "fields": {"orig_filename": "Kerchnawe_Hugo_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297f.", "author": "", "orig_id": 1414116}}, {"model": "metainfo.source", "pk": 12951, "fields": {"orig_filename": "Kerekes_Ferenc_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298", "author": "", "orig_id": 1414117}}, {"model": "metainfo.source", "pk": 12952, "fields": {"orig_filename": "Kerer_Johann_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298", "author": "", "orig_id": 1414118}}, {"model": "metainfo.source", "pk": 12953, "fields": {"orig_filename": "Keresztes_Jozsef_1846_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298f.", "author": "", "orig_id": 1414119}}, {"model": "metainfo.source", "pk": 12954, "fields": {"orig_filename": "Kerhart_Oldrich_1895_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414120}}, {"model": "metainfo.source", "pk": 12955, "fields": {"orig_filename": "Kerkapoly_Karoly_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414121}}, {"model": "metainfo.source", "pk": 12956, "fields": {"orig_filename": "Kerl_Wilhelm_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414122}}, {"model": "metainfo.source", "pk": 12957, "fields": {"orig_filename": "Kermauner_Fritz_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299f.", "author": "", "orig_id": 1414123}}, {"model": "metainfo.source", "pk": 12958, "fields": {"orig_filename": "Kermavner_Valentin_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414125}}, {"model": "metainfo.source", "pk": 12959, "fields": {"orig_filename": "Kern-Kernburg_Josef-Theodor_1785_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302", "author": "", "orig_id": 1414133}}, {"model": "metainfo.source", "pk": 12960, "fields": {"orig_filename": "Kerner-Marilaun_Anton_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302ff.", "author": "", "orig_id": 1414201}}, {"model": "metainfo.source", "pk": 12961, "fields": {"orig_filename": "Kerner-Marilaun_Fritz_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304", "author": "", "orig_id": 1414202}}, {"model": "metainfo.source", "pk": 12962, "fields": {"orig_filename": "Kerner_Josef-Anton_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302", "author": "", "orig_id": 1414200}}, {"model": "metainfo.source", "pk": 12963, "fields": {"orig_filename": "Kernic_Anka_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304", "author": "", "orig_id": 1414203}}, {"model": "metainfo.source", "pk": 12964, "fields": {"orig_filename": "Kernic_Beatrix_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304f.", "author": "", "orig_id": 1414204}}, {"model": "metainfo.source", "pk": 12965, "fields": {"orig_filename": "Kernstock_Ernst_1852_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 305", "author": "", "orig_id": 1414205}}, {"model": "metainfo.source", "pk": 12966, "fields": {"orig_filename": "Kernstock_Ottokar_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 305f.", "author": "", "orig_id": 1414206}}, {"model": "metainfo.source", "pk": 12967, "fields": {"orig_filename": "Kern_Adolf_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414126}}, {"model": "metainfo.source", "pk": 12968, "fields": {"orig_filename": "Kern_Hermann_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414127}}, {"model": "metainfo.source", "pk": 12969, "fields": {"orig_filename": "Kern_Josef_1790_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414128}}, {"model": "metainfo.source", "pk": 12970, "fields": {"orig_filename": "Kern_Josef_1856_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301", "author": "", "orig_id": 1414129}}, {"model": "metainfo.source", "pk": 12971, "fields": {"orig_filename": "Kern_Matthaeus_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301", "author": "", "orig_id": 1414131}}, {"model": "metainfo.source", "pk": 12972, "fields": {"orig_filename": "Kern_Vinzenz_1760_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301f.", "author": "", "orig_id": 1414132}}, {"model": "metainfo.source", "pk": 12973, "fields": {"orig_filename": "Kerpely-Krassai_Antal_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306", "author": "", "orig_id": 1414208}}, {"model": "metainfo.source", "pk": 12974, "fields": {"orig_filename": "Kerpely-Krassai_Anton_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306f.", "author": "", "orig_id": 1414209}}, {"model": "metainfo.source", "pk": 12975, "fields": {"orig_filename": "Kerpel_Leopold_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306", "author": "", "orig_id": 1414207}}, {"model": "metainfo.source", "pk": 12976, "fields": {"orig_filename": "Kerpen_Wilhelm_1741_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414210}}, {"model": "metainfo.source", "pk": 12977, "fields": {"orig_filename": "Kerschbaumer_Anton_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307f.", "author": "", "orig_id": 1414213}}, {"model": "metainfo.source", "pk": 12978, "fields": {"orig_filename": "Kerschbaumer_Richard_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308", "author": "", "orig_id": 1414214}}, {"model": "metainfo.source", "pk": 12979, "fields": {"orig_filename": "Kerschbaumer_Rosa_1854_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308", "author": "", "orig_id": 1414215}}, {"model": "metainfo.source", "pk": 12980, "fields": {"orig_filename": "Kerschbaum_Hans_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414212}}, {"model": "metainfo.source", "pk": 12981, "fields": {"orig_filename": "Kerschner_Ludwig_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308f.", "author": "", "orig_id": 1414216}}, {"model": "metainfo.source", "pk": 12982, "fields": {"orig_filename": "Kersch_Ferenc_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414211}}, {"model": "metainfo.source", "pk": 12983, "fields": {"orig_filename": "Kersnik_Janko_1852_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414217}}, {"model": "metainfo.source", "pk": 12984, "fields": {"orig_filename": "Kerstan_Karl-Ludwig-Ferdinand_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414218}}, {"model": "metainfo.source", "pk": 12985, "fields": {"orig_filename": "Kertbeny_Imre-Maria_1825_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414219}}, {"model": "metainfo.source", "pk": 12986, "fields": {"orig_filename": "Kertesz_Adolf_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309f.", "author": "", "orig_id": 1414285}}, {"model": "metainfo.source", "pk": 12987, "fields": {"orig_filename": "Kesanski_Jovan_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414286}}, {"model": "metainfo.source", "pk": 12988, "fields": {"orig_filename": "Keschmann_Anton_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414287}}, {"model": "metainfo.source", "pk": 12989, "fields": {"orig_filename": "Kessel_Johannes_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414288}}, {"model": "metainfo.source", "pk": 12990, "fields": {"orig_filename": "Kessler_Engelbert_1834_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311", "author": "", "orig_id": 1414289}}, {"model": "metainfo.source", "pk": 12991, "fields": {"orig_filename": "Kesslitz_Wilhelm_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311", "author": "", "orig_id": 1414290}}, {"model": "metainfo.source", "pk": 12992, "fields": {"orig_filename": "Kestercanek_Franjo_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311f.", "author": "", "orig_id": 1414291}}, {"model": "metainfo.source", "pk": 12993, "fields": {"orig_filename": "Kestler_Martin_1808_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312", "author": "", "orig_id": 1414292}}, {"model": "metainfo.source", "pk": 12994, "fields": {"orig_filename": "Kestranek_Paul_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312", "author": "", "orig_id": 1414293}}, {"model": "metainfo.source", "pk": 12995, "fields": {"orig_filename": "Ketly-Csurgo_Karoly_1839_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312f.", "author": "", "orig_id": 1414294}}, {"model": "metainfo.source", "pk": 12996, "fields": {"orig_filename": "Ketrzynski_Wojciech_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 313", "author": "", "orig_id": 1414295}}, {"model": "metainfo.source", "pk": 12997, "fields": {"orig_filename": "Kettel_Johann-Georg_1789_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414297}}, {"model": "metainfo.source", "pk": 12998, "fields": {"orig_filename": "Kette_Dragotin_1876_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 313f.", "author": "", "orig_id": 1414296}}, {"model": "metainfo.source", "pk": 12999, "fields": {"orig_filename": "Kaserer_Josef_1842_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414791}}, {"model": "metainfo.source", "pk": 13000, "fields": {"orig_filename": "Kaserer_Philipp_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414792}}, {"model": "metainfo.source", "pk": 13001, "fields": {"orig_filename": "Kaser_Kurt_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414788}}, {"model": "metainfo.source", "pk": 13002, "fields": {"orig_filename": "Kaser_Ludwig_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251f.", "author": "", "orig_id": 1414789}}, {"model": "metainfo.source", "pk": 13003, "fields": {"orig_filename": "Kashmann_Guiseppe_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414794}}, {"model": "metainfo.source", "pk": 13004, "fields": {"orig_filename": "Kaska_Franz_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252f.", "author": "", "orig_id": 1414795}}, {"model": "metainfo.source", "pk": 13005, "fields": {"orig_filename": "Kaska_Jan_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414796}}, {"model": "metainfo.source", "pk": 13006, "fields": {"orig_filename": "Kasparides_Eduard_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253f.", "author": "", "orig_id": 1414867}}, {"model": "metainfo.source", "pk": 13007, "fields": {"orig_filename": "Kaspar_Adolf_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414798}}, {"model": "metainfo.source", "pk": 13008, "fields": {"orig_filename": "Kaspar_Fritz_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414799}}, {"model": "metainfo.source", "pk": 13009, "fields": {"orig_filename": "Kasperowski_Adam_1792_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254f.", "author": "", "orig_id": 1414870}}, {"model": "metainfo.source", "pk": 13010, "fields": {"orig_filename": "Kasper_Adolf_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254", "author": "", "orig_id": 1414868}}, {"model": "metainfo.source", "pk": 13011, "fields": {"orig_filename": "Kasper_Ludwig_1893_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254", "author": "", "orig_id": 1414869}}, {"model": "metainfo.source", "pk": 13012, "fields": {"orig_filename": "Kaspret_Anton_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 255", "author": "", "orig_id": 1414871}}, {"model": "metainfo.source", "pk": 13013, "fields": {"orig_filename": "Kasprowicz_Jan_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 255f.", "author": "", "orig_id": 1414872}}, {"model": "metainfo.source", "pk": 13014, "fields": {"orig_filename": "Kasprowicz_Kajetan_1858_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414873}}, {"model": "metainfo.source", "pk": 13015, "fields": {"orig_filename": "Kasselik_Ferenc_1800_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414874}}, {"model": "metainfo.source", "pk": 13016, "fields": {"orig_filename": "Kassin_Josef_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414875}}, {"model": "metainfo.source", "pk": 13017, "fields": {"orig_filename": "Kassowitz-Cvijic_Antonija_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414878}}, {"model": "metainfo.source", "pk": 13018, "fields": {"orig_filename": "Kassowitz_Emilie_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414876}}, {"model": "metainfo.source", "pk": 13019, "fields": {"orig_filename": "Kassowitz_Max_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256f.", "author": "", "orig_id": 1414877}}, {"model": "metainfo.source", "pk": 13020, "fields": {"orig_filename": "Kast-Ebelsberg_Michael_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414879}}, {"model": "metainfo.source", "pk": 13021, "fields": {"orig_filename": "Kastelic_Jakob_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414880}}, {"model": "metainfo.source", "pk": 13022, "fields": {"orig_filename": "Kastelic_Miha_1796_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257f.", "author": "", "orig_id": 1414881}}, {"model": "metainfo.source", "pk": 13023, "fields": {"orig_filename": "Kastil_Alfred_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414882}}, {"model": "metainfo.source", "pk": 13024, "fields": {"orig_filename": "Kastlunger_Peter_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414883}}, {"model": "metainfo.source", "pk": 13025, "fields": {"orig_filename": "Kastner-Michalitschke_Else_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 260", "author": "", "orig_id": 1414956}}, {"model": "metainfo.source", "pk": 13026, "fields": {"orig_filename": "Kastner_Alfred_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414884}}, {"model": "metainfo.source", "pk": 13027, "fields": {"orig_filename": "Kastner_Eduard-Fedor_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258f.", "author": "", "orig_id": 1414885}}, {"model": "metainfo.source", "pk": 13028, "fields": {"orig_filename": "Kastner_Emerich_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414886}}, {"model": "metainfo.source", "pk": 13029, "fields": {"orig_filename": "Kastner_Johann-Ev_1772_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414887}}, {"model": "metainfo.source", "pk": 13030, "fields": {"orig_filename": "Kastner_Josef_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414953}}, {"model": "metainfo.source", "pk": 13031, "fields": {"orig_filename": "Kastner_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414954}}, {"model": "metainfo.source", "pk": 13032, "fields": {"orig_filename": "Kastner_Karl_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259f.", "author": "", "orig_id": 1414955}}, {"model": "metainfo.source", "pk": 13033, "fields": {"orig_filename": "Kasumovic_Ivan_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 260f.", "author": "", "orig_id": 1414957}}, {"model": "metainfo.source", "pk": 13034, "fields": {"orig_filename": "Kasznica_Jozef_1834_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414958}}, {"model": "metainfo.source", "pk": 13035, "fields": {"orig_filename": "Kas_Igo_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414783}}, {"model": "metainfo.source", "pk": 13036, "fields": {"orig_filename": "Katalinic_Ivan_1779_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414959}}, {"model": "metainfo.source", "pk": 13037, "fields": {"orig_filename": "Katancic_Matija-Petar_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414960}}, {"model": "metainfo.source", "pk": 13038, "fields": {"orig_filename": "Katerdjian_Josef_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261f.", "author": "", "orig_id": 1414961}}, {"model": "metainfo.source", "pk": 13039, "fields": {"orig_filename": "Katholicky_Marie_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262", "author": "", "orig_id": 1414962}}, {"model": "metainfo.source", "pk": 13040, "fields": {"orig_filename": "Kathrein_Theodor_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262", "author": "", "orig_id": 1414963}}, {"model": "metainfo.source", "pk": 13041, "fields": {"orig_filename": "Katona_Jozsef_1791_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262f.", "author": "", "orig_id": 1414964}}, {"model": "metainfo.source", "pk": 13042, "fields": {"orig_filename": "Katscher_Berta_1860_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414965}}, {"model": "metainfo.source", "pk": 13043, "fields": {"orig_filename": "Katscher_Leopold_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414966}}, {"model": "metainfo.source", "pk": 13044, "fields": {"orig_filename": "Katscher_Max_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414967}}, {"model": "metainfo.source", "pk": 13045, "fields": {"orig_filename": "Katschthaler_Eduard_1857_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263f.", "author": "", "orig_id": 1414968}}, {"model": "metainfo.source", "pk": 13046, "fields": {"orig_filename": "Katschthaler_Johann-Bapt_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414969}}, {"model": "metainfo.source", "pk": 13047, "fields": {"orig_filename": "Katunaric_Ante_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414970}}, {"model": "metainfo.source", "pk": 13048, "fields": {"orig_filename": "Katuric_Mihajlo_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414971}}, {"model": "metainfo.source", "pk": 13049, "fields": {"orig_filename": "Katzenellenbogen_Oskar_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265", "author": "", "orig_id": 1414973}}, {"model": "metainfo.source", "pk": 13050, "fields": {"orig_filename": "Katzer_Anton_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265", "author": "", "orig_id": 1414974}}, {"model": "metainfo.source", "pk": 13051, "fields": {"orig_filename": "Katzer_Friedrich-Xaver_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415035}}, {"model": "metainfo.source", "pk": 13052, "fields": {"orig_filename": "Katzer_Friedrich_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265f.", "author": "", "orig_id": 1415034}}, {"model": "metainfo.source", "pk": 13053, "fields": {"orig_filename": "Katzer_Ignaz_1785_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415036}}, {"model": "metainfo.source", "pk": 13054, "fields": {"orig_filename": "Katzinger_Franz-Sal_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415037}}, {"model": "metainfo.source", "pk": 13055, "fields": {"orig_filename": "Katzler_Vinzenz_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266f.", "author": "", "orig_id": 1415038}}, {"model": "metainfo.source", "pk": 13056, "fields": {"orig_filename": "Katzmayr_Richard_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415039}}, {"model": "metainfo.source", "pk": 13057, "fields": {"orig_filename": "Katzung_Rudolf_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415040}}, {"model": "metainfo.source", "pk": 13058, "fields": {"orig_filename": "Katz_Hermann_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264f.", "author": "", "orig_id": 1414972}}, {"model": "metainfo.source", "pk": 13059, "fields": {"orig_filename": "Kaucic_Fridolin_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415041}}, {"model": "metainfo.source", "pk": 13060, "fields": {"orig_filename": "Kauders_Otto_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267f.", "author": "", "orig_id": 1415042}}, {"model": "metainfo.source", "pk": 13061, "fields": {"orig_filename": "Kauer_Anton_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 268", "author": "", "orig_id": 1415043}}, {"model": "metainfo.source", "pk": 13062, "fields": {"orig_filename": "Kauer_Ferdinand_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 268f.", "author": "", "orig_id": 1415044}}, {"model": "metainfo.source", "pk": 13063, "fields": {"orig_filename": "Kauer_Robert_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269", "author": "", "orig_id": 1415045}}, {"model": "metainfo.source", "pk": 13064, "fields": {"orig_filename": "Kauffung_Richard_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269", "author": "", "orig_id": 1415046}}, {"model": "metainfo.source", "pk": 13065, "fields": {"orig_filename": "Kaufmann_Adolf_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269f.", "author": "", "orig_id": 1415047}}, {"model": "metainfo.source", "pk": 13066, "fields": {"orig_filename": "Kaufmann_David_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270", "author": "", "orig_id": 1415048}}, {"model": "metainfo.source", "pk": 13067, "fields": {"orig_filename": "Kaufmann_Eugenie_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270", "author": "", "orig_id": 1415049}}, {"model": "metainfo.source", "pk": 13068, "fields": {"orig_filename": "Kaufmann_Felix_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270f.", "author": "", "orig_id": 1415050}}, {"model": "metainfo.source", "pk": 13069, "fields": {"orig_filename": "Kaufmann_Isidor_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 271", "author": "", "orig_id": 1415051}}, {"model": "metainfo.source", "pk": 13070, "fields": {"orig_filename": "Kaufmann_Johann-Peter_1764_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 271f.", "author": "", "orig_id": 1415052}}, {"model": "metainfo.source", "pk": 13071, "fields": {"orig_filename": "Kaufmann_Rudolf_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415053}}, {"model": "metainfo.source", "pk": 13072, "fields": {"orig_filename": "Kaulich_Josef_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415054}}, {"model": "metainfo.source", "pk": 13073, "fields": {"orig_filename": "Kaulich_Wilhelm_1833_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415055}}, {"model": "metainfo.source", "pk": 13074, "fields": {"orig_filename": "Kauperz_Johann-Veit_1741_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273", "author": "", "orig_id": 1415117}}, {"model": "metainfo.source", "pk": 13075, "fields": {"orig_filename": "Kaup_Ignaz_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272f.", "author": "", "orig_id": 1415056}}, {"model": "metainfo.source", "pk": 13076, "fields": {"orig_filename": "Kauser_Jozsef_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273", "author": "", "orig_id": 1415118}}, {"model": "metainfo.source", "pk": 13077, "fields": {"orig_filename": "Kautsch_Heinrich_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273f.", "author": "", "orig_id": 1415119}}, {"model": "metainfo.source", "pk": 13078, "fields": {"orig_filename": "Kautsch_Jakob_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415120}}, {"model": "metainfo.source", "pk": 13079, "fields": {"orig_filename": "Kautsky_Jan_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415124}}, {"model": "metainfo.source", "pk": 13080, "fields": {"orig_filename": "Kautsky_Karl_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274f.", "author": "", "orig_id": 1415122}}, {"model": "metainfo.source", "pk": 13081, "fields": {"orig_filename": "Kautsky_Wilhelmine_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 275f.", "author": "", "orig_id": 1415123}}, {"model": "metainfo.source", "pk": 13082, "fields": {"orig_filename": "Kautz_Gyula_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415125}}, {"model": "metainfo.source", "pk": 13083, "fields": {"orig_filename": "Kavan_Frantisek_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415126}}, {"model": "metainfo.source", "pk": 13084, "fields": {"orig_filename": "Kavcic_Andrej_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415127}}, {"model": "metainfo.source", "pk": 13085, "fields": {"orig_filename": "Kavcic_Jakob_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276f.", "author": "", "orig_id": 1415128}}, {"model": "metainfo.source", "pk": 13086, "fields": {"orig_filename": "Kavcic_Matija_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415129}}, {"model": "metainfo.source", "pk": 13087, "fields": {"orig_filename": "Kavcnik_Ivan_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415130}}, {"model": "metainfo.source", "pk": 13088, "fields": {"orig_filename": "Kaym_Franz_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415131}}, {"model": "metainfo.source", "pk": 13089, "fields": {"orig_filename": "Kayser_Karl-Gangolf_1837_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277f.", "author": "", "orig_id": 1415132}}, {"model": "metainfo.source", "pk": 13090, "fields": {"orig_filename": "Kazali_Pasko-Antun_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278", "author": "", "orig_id": 1415133}}, {"model": "metainfo.source", "pk": 13091, "fields": {"orig_filename": "Kazinczy_Ferenc_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278", "author": "", "orig_id": 1415134}}, {"model": "metainfo.source", "pk": 13092, "fields": {"orig_filename": "Kazinczy_Gabor_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278f.", "author": "", "orig_id": 1415135}}, {"model": "metainfo.source", "pk": 13093, "fields": {"orig_filename": "Kaznacic_Antun_1784_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279", "author": "", "orig_id": 1415205}}, {"model": "metainfo.source", "pk": 13094, "fields": {"orig_filename": "Kaznacic_Ivan-August_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279", "author": "", "orig_id": 1415206}}, {"model": "metainfo.source", "pk": 13095, "fields": {"orig_filename": "Kecskemethy-Csapo_Istvan_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280", "author": "", "orig_id": 1415208}}, {"model": "metainfo.source", "pk": 13096, "fields": {"orig_filename": "Kecskemethy_Aurel_1827_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279f.", "author": "", "orig_id": 1415207}}, {"model": "metainfo.source", "pk": 13097, "fields": {"orig_filename": "Kedzior_Andrzej_1851_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280", "author": "", "orig_id": 1415209}}, {"model": "metainfo.source", "pk": 13098, "fields": {"orig_filename": "Keess_Stephan_1774_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415211}}, {"model": "metainfo.source", "pk": 13099, "fields": {"orig_filename": "Kees_Georg_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280f.", "author": "", "orig_id": 1415210}}, {"model": "metainfo.source", "pk": 13100, "fields": {"orig_filename": "Keglevich-Buzin_Gabor_1784_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415212}}, {"model": "metainfo.source", "pk": 13101, "fields": {"orig_filename": "Keglevich-Buzin_Istvan_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415213}}, {"model": "metainfo.source", "pk": 13102, "fields": {"orig_filename": "Keiblinger_Ignaz_1797_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415214}}, {"model": "metainfo.source", "pk": 13103, "fields": {"orig_filename": "Kanitz_Luise_1908_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1440187}}, {"model": "metainfo.source", "pk": 13104, "fields": {"orig_filename": "Kanitz_Otto-Felix_1894_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414360}}, {"model": "metainfo.source", "pk": 13105, "fields": {"orig_filename": "Kanka_Daniel_1776_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414361}}, {"model": "metainfo.source", "pk": 13106, "fields": {"orig_filename": "Kanka_Johann-Nep_1772_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414362}}, {"model": "metainfo.source", "pk": 13107, "fields": {"orig_filename": "Kanne_Friedrich-August_1778_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217", "author": "", "orig_id": 1414364}}, {"model": "metainfo.source", "pk": 13108, "fields": {"orig_filename": "Kann_August_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216f.", "author": "", "orig_id": 1414363}}, {"model": "metainfo.source", "pk": 13109, "fields": {"orig_filename": "Kanski_Mikolaj_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217", "author": "", "orig_id": 1414365}}, {"model": "metainfo.source", "pk": 13110, "fields": {"orig_filename": "Kantner_Karl_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217f.", "author": "", "orig_id": 1414422}}, {"model": "metainfo.source", "pk": 13111, "fields": {"orig_filename": "Kantor_Georg_1893_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414423}}, {"model": "metainfo.source", "pk": 13112, "fields": {"orig_filename": "Kanyaro_Ferenc_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414425}}, {"model": "metainfo.source", "pk": 13113, "fields": {"orig_filename": "Kapeller_Josef_1796_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414427}}, {"model": "metainfo.source", "pk": 13114, "fields": {"orig_filename": "Kapeller_Karl_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414428}}, {"model": "metainfo.source", "pk": 13115, "fields": {"orig_filename": "Kapferer_Johann-Peter_1820_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414429}}, {"model": "metainfo.source", "pk": 13116, "fields": {"orig_filename": "Kapferer_Josef-Simon_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219f.", "author": "", "orig_id": 1414430}}, {"model": "metainfo.source", "pk": 13117, "fields": {"orig_filename": "Kapferer_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220", "author": "", "orig_id": 1414431}}, {"model": "metainfo.source", "pk": 13118, "fields": {"orig_filename": "Kapff_Franziska_1849_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220", "author": "", "orig_id": 1414432}}, {"model": "metainfo.source", "pk": 13119, "fields": {"orig_filename": "Kapic_Juraj_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220f.", "author": "", "orig_id": 1414433}}, {"model": "metainfo.source", "pk": 13120, "fields": {"orig_filename": "Kaplan_Rosina_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 221", "author": "", "orig_id": 1414434}}, {"model": "metainfo.source", "pk": 13121, "fields": {"orig_filename": "Kaplan_Viktor_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 221f.", "author": "", "orig_id": 1414435}}, {"model": "metainfo.source", "pk": 13122, "fields": {"orig_filename": "Kaposi_Moritz_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 222", "author": "", "orig_id": 1414436}}, {"model": "metainfo.source", "pk": 13123, "fields": {"orig_filename": "Kappel-Savenau_Karl-Maria_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224", "author": "", "orig_id": 1414440}}, {"model": "metainfo.source", "pk": 13124, "fields": {"orig_filename": "Kappel-Savenau_Vincenz-Ludwig_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224", "author": "", "orig_id": 1414441}}, {"model": "metainfo.source", "pk": 13125, "fields": {"orig_filename": "Kappelmacher_Alfred_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224f.", "author": "", "orig_id": 1414442}}, {"model": "metainfo.source", "pk": 13126, "fields": {"orig_filename": "Kappel_Fritz_1895_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 223", "author": "", "orig_id": 1414439}}, {"model": "metainfo.source", "pk": 13127, "fields": {"orig_filename": "Kapper_Anton_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 225", "author": "", "orig_id": 1414443}}, {"model": "metainfo.source", "pk": 13128, "fields": {"orig_filename": "Kapper_Siegfried_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 225", "author": "", "orig_id": 1414444}}, {"model": "metainfo.source", "pk": 13129, "fields": {"orig_filename": "Kappler_Adolf_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414445}}, {"model": "metainfo.source", "pk": 13130, "fields": {"orig_filename": "Kapp_Gisbert_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 222f.", "author": "", "orig_id": 1414437}}, {"model": "metainfo.source", "pk": 13131, "fields": {"orig_filename": "Kapp_Gustav_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 223", "author": "", "orig_id": 1414438}}, {"model": "metainfo.source", "pk": 13132, "fields": {"orig_filename": "Kapral_Vaclav_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414518}}, {"model": "metainfo.source", "pk": 13133, "fields": {"orig_filename": "Kapras_Jan_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414519}}, {"model": "metainfo.source", "pk": 13134, "fields": {"orig_filename": "Kapri_Mathilde_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414520}}, {"model": "metainfo.source", "pk": 13135, "fields": {"orig_filename": "Kapri_Rudolf_1887_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226f.", "author": "", "orig_id": 1414521}}, {"model": "metainfo.source", "pk": 13136, "fields": {"orig_filename": "Kapsamer_Georg_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 227", "author": "", "orig_id": 1414522}}, {"model": "metainfo.source", "pk": 13137, "fields": {"orig_filename": "Kapsch_Georg_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 227f.", "author": "", "orig_id": 1414523}}, {"model": "metainfo.source", "pk": 13138, "fields": {"orig_filename": "Kapuscinski_Jozef_1818_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 228", "author": "", "orig_id": 1414524}}, {"model": "metainfo.source", "pk": 13139, "fields": {"orig_filename": "Karabacek_Joseph_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 228f.", "author": "", "orig_id": 1414525}}, {"model": "metainfo.source", "pk": 13140, "fields": {"orig_filename": "Karacson_Mihaly_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229", "author": "", "orig_id": 1414527}}, {"model": "metainfo.source", "pk": 13141, "fields": {"orig_filename": "Karacs_Ferenc_1770_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229", "author": "", "orig_id": 1414526}}, {"model": "metainfo.source", "pk": 13142, "fields": {"orig_filename": "Karadzic_Vuk-Stefanovic_1787_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229f.", "author": "", "orig_id": 1414528}}, {"model": "metainfo.source", "pk": 13143, "fields": {"orig_filename": "Karafiat_Jan_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230", "author": "", "orig_id": 1414529}}, {"model": "metainfo.source", "pk": 13144, "fields": {"orig_filename": "Karajan_Max-Theodor_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230", "author": "", "orig_id": 1414530}}, {"model": "metainfo.source", "pk": 13145, "fields": {"orig_filename": "Karajan_Theodor-Georg_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230f.", "author": "", "orig_id": 1414531}}, {"model": "metainfo.source", "pk": 13146, "fields": {"orig_filename": "Karaman_Luka_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 231", "author": "", "orig_id": 1414532}}, {"model": "metainfo.source", "pk": 13147, "fields": {"orig_filename": "Karasek_Josef_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232", "author": "", "orig_id": 1414534}}, {"model": "metainfo.source", "pk": 13148, "fields": {"orig_filename": "Karas_Vjekoslav_1829_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 231f.", "author": "", "orig_id": 1414533}}, {"model": "metainfo.source", "pk": 13149, "fields": {"orig_filename": "Karbowiak_Antoni_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232", "author": "", "orig_id": 1414535}}, {"model": "metainfo.source", "pk": 13150, "fields": {"orig_filename": "Karczag_Wilhelm_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232f.", "author": "", "orig_id": 1414536}}, {"model": "metainfo.source", "pk": 13151, "fields": {"orig_filename": "Kardos_Gyula_1857_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414537}}, {"model": "metainfo.source", "pk": 13152, "fields": {"orig_filename": "Kardos_Janos_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414611}}, {"model": "metainfo.source", "pk": 13153, "fields": {"orig_filename": "Kareis_Josef_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414612}}, {"model": "metainfo.source", "pk": 13154, "fields": {"orig_filename": "Karell_Ludwig_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414615}}, {"model": "metainfo.source", "pk": 13155, "fields": {"orig_filename": "Karel_Eduard_1861_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414613}}, {"model": "metainfo.source", "pk": 13156, "fields": {"orig_filename": "Karel_Rudolf_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233f.", "author": "", "orig_id": 1414614}}, {"model": "metainfo.source", "pk": 13157, "fields": {"orig_filename": "Karger_Adolf_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414617}}, {"model": "metainfo.source", "pk": 13158, "fields": {"orig_filename": "Karger_Karl_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234f.", "author": "", "orig_id": 1414618}}, {"model": "metainfo.source", "pk": 13159, "fields": {"orig_filename": "Kargl_Franz_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414619}}, {"model": "metainfo.source", "pk": 13160, "fields": {"orig_filename": "Karg_Anton_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414616}}, {"model": "metainfo.source", "pk": 13161, "fields": {"orig_filename": "Karika_Janos_1808_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414620}}, {"model": "metainfo.source", "pk": 13162, "fields": {"orig_filename": "Karinger_Anton_1829_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414621}}, {"model": "metainfo.source", "pk": 13163, "fields": {"orig_filename": "Karl-Ludwig_Joseph-Maria_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 240", "author": "", "orig_id": 1414626}}, {"model": "metainfo.source", "pk": 13164, "fields": {"orig_filename": "Karlic_Petar_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 240f.", "author": "", "orig_id": 1414627}}, {"model": "metainfo.source", "pk": 13165, "fields": {"orig_filename": "Karlik_Berta-Emilie_1904_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1451679}}, {"model": "metainfo.source", "pk": 13166, "fields": {"orig_filename": "Karlik_Hanus_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241", "author": "", "orig_id": 1414628}}, {"model": "metainfo.source", "pk": 13167, "fields": {"orig_filename": "Karlik_Johann_1807_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241", "author": "", "orig_id": 1414629}}, {"model": "metainfo.source", "pk": 13168, "fields": {"orig_filename": "Karlinsky_Anton-Hans_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242", "author": "", "orig_id": 1414691}}, {"model": "metainfo.source", "pk": 13169, "fields": {"orig_filename": "Karlin_Alma-Maximiliana_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241f.", "author": "", "orig_id": 1414630}}, {"model": "metainfo.source", "pk": 13170, "fields": {"orig_filename": "Karlin_Andrej_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242", "author": "", "orig_id": 1414631}}, {"model": "metainfo.source", "pk": 13171, "fields": {"orig_filename": "Karlon_Alois_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242f.", "author": "", "orig_id": 1414692}}, {"model": "metainfo.source", "pk": 13172, "fields": {"orig_filename": "Karlon_Johann_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414693}}, {"model": "metainfo.source", "pk": 13173, "fields": {"orig_filename": "Karlovszky_Bertalan_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414694}}, {"model": "metainfo.source", "pk": 13174, "fields": {"orig_filename": "Karl_Alexander_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235f.", "author": "", "orig_id": 1414622}}, {"model": "metainfo.source", "pk": 13175, "fields": {"orig_filename": "Karl_Franz-Joseph_1887_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 236ff.", "author": "", "orig_id": 1414623}}, {"model": "metainfo.source", "pk": 13176, "fields": {"orig_filename": "Karl_Heinrich-Ernst_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 239", "author": "", "orig_id": 1414624}}, {"model": "metainfo.source", "pk": 13177, "fields": {"orig_filename": "Karl_Ludwig_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 239f.", "author": "", "orig_id": 1414625}}, {"model": "metainfo.source", "pk": 13178, "fields": {"orig_filename": "Karman_Mor_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414695}}, {"model": "metainfo.source", "pk": 13179, "fields": {"orig_filename": "Karmarsch_Karl_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243f.", "author": "", "orig_id": 1414696}}, {"model": "metainfo.source", "pk": 13180, "fields": {"orig_filename": "Karner_Lambert_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 244", "author": "", "orig_id": 1414697}}, {"model": "metainfo.source", "pk": 13181, "fields": {"orig_filename": "Karner_Leopold_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 244f.", "author": "", "orig_id": 1414698}}, {"model": "metainfo.source", "pk": 13182, "fields": {"orig_filename": "Karny_Heinrich-Hugo_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414699}}, {"model": "metainfo.source", "pk": 13183, "fields": {"orig_filename": "Karoline-Auguste__1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414701}}, {"model": "metainfo.source", "pk": 13184, "fields": {"orig_filename": "Karolyi_Alajos_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414702}}, {"model": "metainfo.source", "pk": 13185, "fields": {"orig_filename": "Karolyi_Arpad_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414703}}, {"model": "metainfo.source", "pk": 13186, "fields": {"orig_filename": "Karolyi_Gyoergy_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414704}}, {"model": "metainfo.source", "pk": 13187, "fields": {"orig_filename": "Karolyi_Istvan_1797_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414705}}, {"model": "metainfo.source", "pk": 13188, "fields": {"orig_filename": "Karolyi_Sandor_1831_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414706}}, {"model": "metainfo.source", "pk": 13189, "fields": {"orig_filename": "Karo_Ezechiel_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414700}}, {"model": "metainfo.source", "pk": 13190, "fields": {"orig_filename": "Karpath_Ludwig_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414707}}, {"model": "metainfo.source", "pk": 13191, "fields": {"orig_filename": "Karpaty_Rudolf_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414708}}, {"model": "metainfo.source", "pk": 13192, "fields": {"orig_filename": "Karpeles_Georges_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247f.", "author": "", "orig_id": 1414709}}, {"model": "metainfo.source", "pk": 13193, "fields": {"orig_filename": "Karpeles_Gustav_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248", "author": "", "orig_id": 1414710}}, {"model": "metainfo.source", "pk": 13194, "fields": {"orig_filename": "Karpellus_Adolf_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248", "author": "", "orig_id": 1414711}}, {"model": "metainfo.source", "pk": 13195, "fields": {"orig_filename": "Karpf_Fritz_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248f.", "author": "", "orig_id": 1414712}}, {"model": "metainfo.source", "pk": 13196, "fields": {"orig_filename": "Karplus_Johann-Paul_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249", "author": "", "orig_id": 1414713}}, {"model": "metainfo.source", "pk": 13197, "fields": {"orig_filename": "Karrer_Felix_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249", "author": "", "orig_id": 1414714}}, {"model": "metainfo.source", "pk": 13198, "fields": {"orig_filename": "Karsay-Teth_Sandor_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249f.", "author": "", "orig_id": 1414778}}, {"model": "metainfo.source", "pk": 13199, "fields": {"orig_filename": "Karst-Karstenwerth_Franz_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414779}}, {"model": "metainfo.source", "pk": 13200, "fields": {"orig_filename": "Kartsch_Josef_1811_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414780}}, {"model": "metainfo.source", "pk": 13201, "fields": {"orig_filename": "Karvaly_Maurus_1860_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414781}}, {"model": "metainfo.source", "pk": 13202, "fields": {"orig_filename": "Kasalovsky_Josef_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414784}}, {"model": "metainfo.source", "pk": 13203, "fields": {"orig_filename": "Kasapinovic_Svetislav_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414785}}, {"model": "metainfo.source", "pk": 13204, "fields": {"orig_filename": "Kaschnitz-Weinberg_Julius_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414787}}, {"model": "metainfo.source", "pk": 13205, "fields": {"orig_filename": "Kaiser_Karl_1873_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183f.", "author": "", "orig_id": 1413930}}, {"model": "metainfo.source", "pk": 13206, "fields": {"orig_filename": "Kaiser_Karl_1914_1999.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2089969}}, {"model": "metainfo.source", "pk": 13207, "fields": {"orig_filename": "Kaiser_Koloman_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413931}}, {"model": "metainfo.source", "pk": 13208, "fields": {"orig_filename": "Kaiser_Ludwig_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413932}}, {"model": "metainfo.source", "pk": 13209, "fields": {"orig_filename": "Kaiser_Philipp_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413933}}, {"model": "metainfo.source", "pk": 13210, "fields": {"orig_filename": "Kaizl_Josef_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 185f.", "author": "", "orig_id": 1414012}}, {"model": "metainfo.source", "pk": 13211, "fields": {"orig_filename": "Kakonyi-Csep-Kakony_Franz_1762_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186", "author": "", "orig_id": 1414013}}, {"model": "metainfo.source", "pk": 13212, "fields": {"orig_filename": "Kalac_Ante_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186", "author": "", "orig_id": 1414014}}, {"model": "metainfo.source", "pk": 13213, "fields": {"orig_filename": "Kalan_Andrej_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186f.", "author": "", "orig_id": 1414015}}, {"model": "metainfo.source", "pk": 13214, "fields": {"orig_filename": "Kalbeck_Florian_1920_1996.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419671}}, {"model": "metainfo.source", "pk": 13215, "fields": {"orig_filename": "Kalbeck_Max_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 187", "author": "", "orig_id": 1414016}}, {"model": "metainfo.source", "pk": 13216, "fields": {"orig_filename": "Kalbeck_Paul-Johannes_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 187f.", "author": "", "orig_id": 1414017}}, {"model": "metainfo.source", "pk": 13217, "fields": {"orig_filename": "Kalbrunner_Hermann-Josef_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188", "author": "", "orig_id": 1414018}}, {"model": "metainfo.source", "pk": 13218, "fields": {"orig_filename": "Kalchbrenner_Karl_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188", "author": "", "orig_id": 1414019}}, {"model": "metainfo.source", "pk": 13219, "fields": {"orig_filename": "Kalchegger-Kalchberg_Franz_1807_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188f.", "author": "", "orig_id": 1414020}}, {"model": "metainfo.source", "pk": 13220, "fields": {"orig_filename": "Kalchegger-Kalchberg_Johann_1765_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 189f.", "author": "", "orig_id": 1414021}}, {"model": "metainfo.source", "pk": 13221, "fields": {"orig_filename": "Kalchegger-Kalchberg_Josef_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 190f.", "author": "", "orig_id": 1414022}}, {"model": "metainfo.source", "pk": 13222, "fields": {"orig_filename": "Kalchegger-Kalchberg_Wilhelm_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414023}}, {"model": "metainfo.source", "pk": 13223, "fields": {"orig_filename": "Kalcher_Anton_1800_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414024}}, {"model": "metainfo.source", "pk": 13224, "fields": {"orig_filename": "Kalcher_Severin_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414025}}, {"model": "metainfo.source", "pk": 13225, "fields": {"orig_filename": "Kaldy_Adam_1763_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191f.", "author": "", "orig_id": 1414026}}, {"model": "metainfo.source", "pk": 13226, "fields": {"orig_filename": "Kalemkiar_Gregoris_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414027}}, {"model": "metainfo.source", "pk": 13227, "fields": {"orig_filename": "Kalicki_Bernard_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414095}}, {"model": "metainfo.source", "pk": 13228, "fields": {"orig_filename": "Kalina-Jaethenstein_Mathias_1772_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193", "author": "", "orig_id": 1414097}}, {"model": "metainfo.source", "pk": 13229, "fields": {"orig_filename": "Kalina_Antoni_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193", "author": "", "orig_id": 1414096}}, {"model": "metainfo.source", "pk": 13230, "fields": {"orig_filename": "Kalinka_Ernst_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193f.", "author": "", "orig_id": 1414098}}, {"model": "metainfo.source", "pk": 13231, "fields": {"orig_filename": "Kalinka_Walerian_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 194", "author": "", "orig_id": 1414099}}, {"model": "metainfo.source", "pk": 13232, "fields": {"orig_filename": "Kalister_Janez-Nep_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 194f.", "author": "", "orig_id": 1414100}}, {"model": "metainfo.source", "pk": 13233, "fields": {"orig_filename": "Kaliwoda_Franz_1820_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414101}}, {"model": "metainfo.source", "pk": 13234, "fields": {"orig_filename": "Kalkum_Maurus_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414102}}, {"model": "metainfo.source", "pk": 13235, "fields": {"orig_filename": "Kallab_Ferdinand-Viktor_1847_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414103}}, {"model": "metainfo.source", "pk": 13236, "fields": {"orig_filename": "Kallab_Wolfgang_1875_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195f.", "author": "", "orig_id": 1414104}}, {"model": "metainfo.source", "pk": 13237, "fields": {"orig_filename": "Kallay-Nagy-Kallo_Beni_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196", "author": "", "orig_id": 1414106}}, {"model": "metainfo.source", "pk": 13238, "fields": {"orig_filename": "Kallay_Oedoen_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196", "author": "", "orig_id": 1414105}}, {"model": "metainfo.source", "pk": 13239, "fields": {"orig_filename": "Kallenbach_Jozef_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196f.", "author": "", "orig_id": 1414107}}, {"model": "metainfo.source", "pk": 13240, "fields": {"orig_filename": "Kaller_Adolf_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414108}}, {"model": "metainfo.source", "pk": 13241, "fields": {"orig_filename": "Kalliauer_Anton-Christoph_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414109}}, {"model": "metainfo.source", "pk": 13242, "fields": {"orig_filename": "Kallina-Urbanow_Alois_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414112}}, {"model": "metainfo.source", "pk": 13243, "fields": {"orig_filename": "Kallina_Anna_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414110}}, {"model": "metainfo.source", "pk": 13244, "fields": {"orig_filename": "Kallina_Maurus_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197f.", "author": "", "orig_id": 1414111}}, {"model": "metainfo.source", "pk": 13245, "fields": {"orig_filename": "Kallir_Ludwig_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414113}}, {"model": "metainfo.source", "pk": 13246, "fields": {"orig_filename": "Kalliwoda_Johann-Wenzel_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414114}}, {"model": "metainfo.source", "pk": 13247, "fields": {"orig_filename": "Kallos_Ede_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414178}}, {"model": "metainfo.source", "pk": 13248, "fields": {"orig_filename": "Kalmann_Wilhelm_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414180}}, {"model": "metainfo.source", "pk": 13249, "fields": {"orig_filename": "Kalman_Farkas_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414179}}, {"model": "metainfo.source", "pk": 13250, "fields": {"orig_filename": "Kalmar_Elsa_1876_1956.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414181}}, {"model": "metainfo.source", "pk": 13251, "fields": {"orig_filename": "Kalmsteiner_Johann_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199f.", "author": "", "orig_id": 1414182}}, {"model": "metainfo.source", "pk": 13252, "fields": {"orig_filename": "Kalnoky-Koeroespatak_Gustav-Sigmund_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 200", "author": "", "orig_id": 1414183}}, {"model": "metainfo.source", "pk": 13253, "fields": {"orig_filename": "Kalny_Heribertus_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 200f.", "author": "", "orig_id": 1414184}}, {"model": "metainfo.source", "pk": 13254, "fields": {"orig_filename": "Kalousek_Josef_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201", "author": "", "orig_id": 1414185}}, {"model": "metainfo.source", "pk": 13255, "fields": {"orig_filename": "Kalousek_Vratislav_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201", "author": "", "orig_id": 1414186}}, {"model": "metainfo.source", "pk": 13256, "fields": {"orig_filename": "Kalser-Maasfeld_Franz_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414188}}, {"model": "metainfo.source", "pk": 13257, "fields": {"orig_filename": "Kalser_Leo_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201f.", "author": "", "orig_id": 1414187}}, {"model": "metainfo.source", "pk": 13258, "fields": {"orig_filename": "Kaltenbaeck_Johann-Paul_1804_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414189}}, {"model": "metainfo.source", "pk": 13259, "fields": {"orig_filename": "Kaltenboeck_Bodo_1893_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414190}}, {"model": "metainfo.source", "pk": 13260, "fields": {"orig_filename": "Kaltenbrunner_Ernst_1903_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202f.", "author": "", "orig_id": 1414191}}, {"model": "metainfo.source", "pk": 13261, "fields": {"orig_filename": "Kaltenbrunner_Ferdinand_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 203", "author": "", "orig_id": 1414192}}, {"model": "metainfo.source", "pk": 13262, "fields": {"orig_filename": "Kaltenbrunner_Karl-Adam_1804_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 203f.", "author": "", "orig_id": 1414193}}, {"model": "metainfo.source", "pk": 13263, "fields": {"orig_filename": "Kaltenegger-Riedhorst_Friedrich_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204f.", "author": "", "orig_id": 1414196}}, {"model": "metainfo.source", "pk": 13264, "fields": {"orig_filename": "Kaltenegger_Leonidas_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204", "author": "", "orig_id": 1414195}}, {"model": "metainfo.source", "pk": 13265, "fields": {"orig_filename": "Kaltenegger_Leo_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204", "author": "", "orig_id": 1414194}}, {"model": "metainfo.source", "pk": 13266, "fields": {"orig_filename": "Kaltenhauser_Franziska_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 205", "author": "", "orig_id": 1414197}}, {"model": "metainfo.source", "pk": 13267, "fields": {"orig_filename": "Kaltneker-Wallkampf_Hans_1895_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 205f.", "author": "", "orig_id": 1414198}}, {"model": "metainfo.source", "pk": 13268, "fields": {"orig_filename": "Kaltner_Balthasar_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414199}}, {"model": "metainfo.source", "pk": 13269, "fields": {"orig_filename": "Kaltner_Josef_1757_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414264}}, {"model": "metainfo.source", "pk": 13270, "fields": {"orig_filename": "Kaluza_Augustin_1776_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414265}}, {"model": "metainfo.source", "pk": 13271, "fields": {"orig_filename": "Kalvoda_Alois_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414266}}, {"model": "metainfo.source", "pk": 13272, "fields": {"orig_filename": "Kalvoda_Josef_1874_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414267}}, {"model": "metainfo.source", "pk": 13273, "fields": {"orig_filename": "Kamenarovic_Pavao_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414268}}, {"model": "metainfo.source", "pk": 13274, "fields": {"orig_filename": "Kamieniobrodzki_Alfred_1844_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414269}}, {"model": "metainfo.source", "pk": 13275, "fields": {"orig_filename": "Kamienski_Maciej_1734_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414270}}, {"model": "metainfo.source", "pk": 13276, "fields": {"orig_filename": "Kaminka_Aharon_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207f.", "author": "", "orig_id": 1414271}}, {"model": "metainfo.source", "pk": 13277, "fields": {"orig_filename": "Kaminski_Ignacy_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414272}}, {"model": "metainfo.source", "pk": 13278, "fields": {"orig_filename": "Kaminski_Jan-Nep_1777_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414273}}, {"model": "metainfo.source", "pk": 13279, "fields": {"orig_filename": "Kaminski_Kazimierz_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414274}}, {"model": "metainfo.source", "pk": 13280, "fields": {"orig_filename": "Kamitz_Reinhard_1907_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426666}}, {"model": "metainfo.source", "pk": 13281, "fields": {"orig_filename": "Kamler_Heinrich_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208f.", "author": "", "orig_id": 1414275}}, {"model": "metainfo.source", "pk": 13282, "fields": {"orig_filename": "Kamler_Heinrich_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414276}}, {"model": "metainfo.source", "pk": 13283, "fields": {"orig_filename": "Kammerer_Emil_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414277}}, {"model": "metainfo.source", "pk": 13284, "fields": {"orig_filename": "Kammerer_Gustav_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414278}}, {"model": "metainfo.source", "pk": 13285, "fields": {"orig_filename": "Kammerer_Paul_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209f.", "author": "", "orig_id": 1414279}}, {"model": "metainfo.source", "pk": 13286, "fields": {"orig_filename": "Kamniker_Franz_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 210", "author": "", "orig_id": 1414280}}, {"model": "metainfo.source", "pk": 13287, "fields": {"orig_filename": "Kamocki_Stanislaw_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 210f.", "author": "", "orig_id": 1414281}}, {"model": "metainfo.source", "pk": 13288, "fields": {"orig_filename": "Kamory_Samuel_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414282}}, {"model": "metainfo.source", "pk": 13289, "fields": {"orig_filename": "Kampelik_Frantisek-Cyril_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414283}}, {"model": "metainfo.source", "pk": 13290, "fields": {"orig_filename": "Kampf_Karl-Heinrich_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414284}}, {"model": "metainfo.source", "pk": 13291, "fields": {"orig_filename": "Kampmann-Freund_Johanna_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414347}}, {"model": "metainfo.source", "pk": 13292, "fields": {"orig_filename": "Kampmann_Karl_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211f.", "author": "", "orig_id": 1414346}}, {"model": "metainfo.source", "pk": 13293, "fields": {"orig_filename": "Kancnik_Andrej_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414348}}, {"model": "metainfo.source", "pk": 13294, "fields": {"orig_filename": "Kandelsdorfer_Karl_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414349}}, {"model": "metainfo.source", "pk": 13295, "fields": {"orig_filename": "Kandler_Franz-Sales_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212f.", "author": "", "orig_id": 1414350}}, {"model": "metainfo.source", "pk": 13296, "fields": {"orig_filename": "Kandler_Peter_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 213", "author": "", "orig_id": 1414351}}, {"model": "metainfo.source", "pk": 13297, "fields": {"orig_filename": "Kandler_Wilhelm_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 213f.", "author": "", "orig_id": 1414352}}, {"model": "metainfo.source", "pk": 13298, "fields": {"orig_filename": "Kando_Kalman_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422556}}, {"model": "metainfo.source", "pk": 13299, "fields": {"orig_filename": "Kanera-Tynbrugg_Josef_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414353}}, {"model": "metainfo.source", "pk": 13300, "fields": {"orig_filename": "Kangel_Anton_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414354}}, {"model": "metainfo.source", "pk": 13301, "fields": {"orig_filename": "Kangrga_Jovan_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414355}}, {"model": "metainfo.source", "pk": 13302, "fields": {"orig_filename": "Kaniak_Karl_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414356}}, {"model": "metainfo.source", "pk": 13303, "fields": {"orig_filename": "Kanik_Franz_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214f.", "author": "", "orig_id": 1414357}}, {"model": "metainfo.source", "pk": 13304, "fields": {"orig_filename": "Kanitz_August_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 215", "author": "", "orig_id": 1414358}}, {"model": "metainfo.source", "pk": 13305, "fields": {"orig_filename": "Kanitz_Ernst_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1439279}}, {"model": "metainfo.source", "pk": 13306, "fields": {"orig_filename": "Kanitz_Felix-Philipp_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 215f.", "author": "", "orig_id": 1414359}}, {"model": "metainfo.source", "pk": 13307, "fields": {"orig_filename": "Jurende_Karl-Josef_1780_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155f.", "author": "", "orig_id": 1414942}}, {"model": "metainfo.source", "pk": 13308, "fields": {"orig_filename": "Jurenka_Hugo_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156", "author": "", "orig_id": 1414943}}, {"model": "metainfo.source", "pk": 13309, "fields": {"orig_filename": "Jurinac_Adolfo_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156", "author": "", "orig_id": 1414944}}, {"model": "metainfo.source", "pk": 13310, "fields": {"orig_filename": "Juritsch_Georg_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156f.", "author": "", "orig_id": 1414945}}, {"model": "metainfo.source", "pk": 13311, "fields": {"orig_filename": "Jurjevic-Tuol_Josef_1785_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414946}}, {"model": "metainfo.source", "pk": 13312, "fields": {"orig_filename": "Jurkovic_Ivan_1893_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414947}}, {"model": "metainfo.source", "pk": 13313, "fields": {"orig_filename": "Jurkovic_Janko_1827_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414948}}, {"model": "metainfo.source", "pk": 13314, "fields": {"orig_filename": "Jury_Hugo_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157f.", "author": "", "orig_id": 1414949}}, {"model": "metainfo.source", "pk": 13315, "fields": {"orig_filename": "Jussel_Anton_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414950}}, {"model": "metainfo.source", "pk": 13316, "fields": {"orig_filename": "Juster_Heinrich_1876_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158f.", "author": "", "orig_id": 1415011}}, {"model": "metainfo.source", "pk": 13317, "fields": {"orig_filename": "Justh_Gyula_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415012}}, {"model": "metainfo.source", "pk": 13318, "fields": {"orig_filename": "Justh_Zsigmond_1863_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415013}}, {"model": "metainfo.source", "pk": 13319, "fields": {"orig_filename": "Justin_Rajko_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415014}}, {"model": "metainfo.source", "pk": 13320, "fields": {"orig_filename": "Just_Eduard-Alexander_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414951}}, {"model": "metainfo.source", "pk": 13321, "fields": {"orig_filename": "Just_Karl_1808_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414952}}, {"model": "metainfo.source", "pk": 13322, "fields": {"orig_filename": "Juvancic_Friderik_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160", "author": "", "orig_id": 1415016}}, {"model": "metainfo.source", "pk": 13323, "fields": {"orig_filename": "Juvan_Franz_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159f.", "author": "", "orig_id": 1415015}}, {"model": "metainfo.source", "pk": 13324, "fields": {"orig_filename": "Kaan-Albest_Julius_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415022}}, {"model": "metainfo.source", "pk": 13325, "fields": {"orig_filename": "Kaan-Albest_Samuel-Heinrich_1776_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415023}}, {"model": "metainfo.source", "pk": 13326, "fields": {"orig_filename": "Kaan_Arthur_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160", "author": "", "orig_id": 1415017}}, {"model": "metainfo.source", "pk": 13327, "fields": {"orig_filename": "Kaan_Eduard_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160f.", "author": "", "orig_id": 1415018}}, {"model": "metainfo.source", "pk": 13328, "fields": {"orig_filename": "Kaan_Ernst-Robert_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161", "author": "", "orig_id": 1415019}}, {"model": "metainfo.source", "pk": 13329, "fields": {"orig_filename": "Kaan_Wilhelm_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161", "author": "", "orig_id": 1415020}}, {"model": "metainfo.source", "pk": 13330, "fields": {"orig_filename": "Kabasta_Oswald_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415024}}, {"model": "metainfo.source", "pk": 13331, "fields": {"orig_filename": "Kabat_Maurycy_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162f.", "author": "", "orig_id": 1415025}}, {"model": "metainfo.source", "pk": 13332, "fields": {"orig_filename": "Kabelik_Jan_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415026}}, {"model": "metainfo.source", "pk": 13333, "fields": {"orig_filename": "Kablik_Josephine_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415027}}, {"model": "metainfo.source", "pk": 13334, "fields": {"orig_filename": "Kacanski_Vladislav-Stevan_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415028}}, {"model": "metainfo.source", "pk": 13335, "fields": {"orig_filename": "Kachler_Georg_1764_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415029}}, {"model": "metainfo.source", "pk": 13336, "fields": {"orig_filename": "Kachler_Josef_1847_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163f.", "author": "", "orig_id": 1415030}}, {"model": "metainfo.source", "pk": 13337, "fields": {"orig_filename": "Kachler_Michael_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415031}}, {"model": "metainfo.source", "pk": 13338, "fields": {"orig_filename": "Kachler_Peter_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415032}}, {"model": "metainfo.source", "pk": 13339, "fields": {"orig_filename": "Kaczkowski_Zygmunt_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415033}}, {"model": "metainfo.source", "pk": 13340, "fields": {"orig_filename": "Kadelburg_Gustav_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164f.", "author": "", "orig_id": 1415094}}, {"model": "metainfo.source", "pk": 13341, "fields": {"orig_filename": "Kadelburg_Heinrich_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415095}}, {"model": "metainfo.source", "pk": 13342, "fields": {"orig_filename": "Kaderavek_Johann-Eugen_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415096}}, {"model": "metainfo.source", "pk": 13343, "fields": {"orig_filename": "Kaderschafka_Karl_1893_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415097}}, {"model": "metainfo.source", "pk": 13344, "fields": {"orig_filename": "Kadich-Pferd_Hans_1864_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415098}}, {"model": "metainfo.source", "pk": 13345, "fields": {"orig_filename": "Kadich-Pferd_Heinrich_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165f.", "author": "", "orig_id": 1415099}}, {"model": "metainfo.source", "pk": 13346, "fields": {"orig_filename": "Kadlcak_Josef_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166", "author": "", "orig_id": 1415100}}, {"model": "metainfo.source", "pk": 13347, "fields": {"orig_filename": "Kadlcik_Franz-Bretislav_1847_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166", "author": "", "orig_id": 1415101}}, {"model": "metainfo.source", "pk": 13348, "fields": {"orig_filename": "Kadlec_Karel_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166f.", "author": "", "orig_id": 1415102}}, {"model": "metainfo.source", "pk": 13349, "fields": {"orig_filename": "Kadlik_Franz_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415103}}, {"model": "metainfo.source", "pk": 13350, "fields": {"orig_filename": "Kadmon_Stella_1902_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1430492}}, {"model": "metainfo.source", "pk": 13351, "fields": {"orig_filename": "Kadrnozka_Leo_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415104}}, {"model": "metainfo.source", "pk": 13352, "fields": {"orig_filename": "Kaefer_Viktor_1799_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415105}}, {"model": "metainfo.source", "pk": 13353, "fields": {"orig_filename": "Kaempf_Moritz_1835_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167f.", "author": "", "orig_id": 1415106}}, {"model": "metainfo.source", "pk": 13354, "fields": {"orig_filename": "Kaempf_Saul-Isaac_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415107}}, {"model": "metainfo.source", "pk": 13355, "fields": {"orig_filename": "Kaergling_Johann-Tobias_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415108}}, {"model": "metainfo.source", "pk": 13356, "fields": {"orig_filename": "Kaerle_Johann_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415109}}, {"model": "metainfo.source", "pk": 13357, "fields": {"orig_filename": "Kaerle_Josef_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168f.", "author": "", "orig_id": 1420791}}, {"model": "metainfo.source", "pk": 13358, "fields": {"orig_filename": "Kaesebacher_Alois_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415110}}, {"model": "metainfo.source", "pk": 13359, "fields": {"orig_filename": "Kaesmayer_Karl_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415111}}, {"model": "metainfo.source", "pk": 13360, "fields": {"orig_filename": "Kaessmann_Franz_1751_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415112}}, {"model": "metainfo.source", "pk": 13361, "fields": {"orig_filename": "Kaessmann_Josef_1784_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415113}}, {"model": "metainfo.source", "pk": 13362, "fields": {"orig_filename": "Kaestner_Josef-Viktor_1828_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415181}}, {"model": "metainfo.source", "pk": 13363, "fields": {"orig_filename": "Kafka_Bohumil_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415182}}, {"model": "metainfo.source", "pk": 13364, "fields": {"orig_filename": "Kafka_Eduard-Michael_1864_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415183}}, {"model": "metainfo.source", "pk": 13365, "fields": {"orig_filename": "Kafka_Franz_1883_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170f.", "author": "", "orig_id": 1415184}}, {"model": "metainfo.source", "pk": 13366, "fields": {"orig_filename": "Kafka_Heinrich_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 171", "author": "", "orig_id": 1415185}}, {"model": "metainfo.source", "pk": 13367, "fields": {"orig_filename": "Kafka_Johann-Nep_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 171f.", "author": "", "orig_id": 1415186}}, {"model": "metainfo.source", "pk": 13368, "fields": {"orig_filename": "Kafka_Josef_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415187}}, {"model": "metainfo.source", "pk": 13369, "fields": {"orig_filename": "Kafka_Josef_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415188}}, {"model": "metainfo.source", "pk": 13370, "fields": {"orig_filename": "Kaftan_Johann_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415189}}, {"model": "metainfo.source", "pk": 13371, "fields": {"orig_filename": "Kager-Mayregg_Karl_1819_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415190}}, {"model": "metainfo.source", "pk": 13372, "fields": {"orig_filename": "Kager-Paugger-Groebner_Hugo_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172f.", "author": "", "orig_id": 1415191}}, {"model": "metainfo.source", "pk": 13373, "fields": {"orig_filename": "Kagerbauer_Peter_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173", "author": "", "orig_id": 1415192}}, {"model": "metainfo.source", "pk": 13374, "fields": {"orig_filename": "Kahane_Arthur_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173", "author": "", "orig_id": 1415193}}, {"model": "metainfo.source", "pk": 13375, "fields": {"orig_filename": "Kahler_Eugen_1882_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174", "author": "", "orig_id": 1415195}}, {"model": "metainfo.source", "pk": 13376, "fields": {"orig_filename": "Kahler_Karl_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174", "author": "", "orig_id": 1415196}}, {"model": "metainfo.source", "pk": 13377, "fields": {"orig_filename": "Kahler_Otto_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174f.", "author": "", "orig_id": 1415197}}, {"model": "metainfo.source", "pk": 13378, "fields": {"orig_filename": "Kahler_Otto_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175", "author": "", "orig_id": 1415198}}, {"model": "metainfo.source", "pk": 13379, "fields": {"orig_filename": "Kahl_Fr-Gerhard-Maria_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173f.", "author": "", "orig_id": 1415194}}, {"model": "metainfo.source", "pk": 13380, "fields": {"orig_filename": "Kahn_Josef_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175", "author": "", "orig_id": 1415199}}, {"model": "metainfo.source", "pk": 13381, "fields": {"orig_filename": "Kahrer_Max_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415201}}, {"model": "metainfo.source", "pk": 13382, "fields": {"orig_filename": "Kahr_Heinrich_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175f.", "author": "", "orig_id": 1415200}}, {"model": "metainfo.source", "pk": 13383, "fields": {"orig_filename": "Kailan_Anton_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415202}}, {"model": "metainfo.source", "pk": 13384, "fields": {"orig_filename": "Kailer-Kaltenfels_Karl_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415203}}, {"model": "metainfo.source", "pk": 13385, "fields": {"orig_filename": "Kaindlstorfer_Johann_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 177f.", "author": "", "orig_id": 1413912}}, {"model": "metainfo.source", "pk": 13386, "fields": {"orig_filename": "Kaindl_Raimund-Friedrich_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 177", "author": "", "orig_id": 1413911}}, {"model": "metainfo.source", "pk": 13387, "fields": {"orig_filename": "Kainersdorfer_Johann-Matthias_1778_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178", "author": "", "orig_id": 1413913}}, {"model": "metainfo.source", "pk": 13388, "fields": {"orig_filename": "Kainradl_Leo_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178", "author": "", "orig_id": 1413914}}, {"model": "metainfo.source", "pk": 13389, "fields": {"orig_filename": "Kainz-Holland_Marianne_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413917}}, {"model": "metainfo.source", "pk": 13390, "fields": {"orig_filename": "Kainz-Prause_Clothilde-Emilie_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413918}}, {"model": "metainfo.source", "pk": 13391, "fields": {"orig_filename": "Kainzbauer_Ludwig_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413919}}, {"model": "metainfo.source", "pk": 13392, "fields": {"orig_filename": "Kainz_Josef-Gottfried-Ignaz_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178f.", "author": "", "orig_id": 1413915}}, {"model": "metainfo.source", "pk": 13393, "fields": {"orig_filename": "Kainz_Josef-Wolfgang_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 179f.", "author": "", "orig_id": 1413916}}, {"model": "metainfo.source", "pk": 13394, "fields": {"orig_filename": "Kain_Johann_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176f.", "author": "", "orig_id": 1415204}}, {"model": "metainfo.source", "pk": 13395, "fields": {"orig_filename": "Kaiser-Falkenthal_Ignaz_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413934}}, {"model": "metainfo.source", "pk": 13396, "fields": {"orig_filename": "Kaiser-Herbst_Carl_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1414008}}, {"model": "metainfo.source", "pk": 13397, "fields": {"orig_filename": "Kaiser-Trauenstern_Felix-Josef_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184f.", "author": "", "orig_id": 1414009}}, {"model": "metainfo.source", "pk": 13398, "fields": {"orig_filename": "Kaiserfeld_Moriz_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 185", "author": "", "orig_id": 1414010}}, {"model": "metainfo.source", "pk": 13399, "fields": {"orig_filename": "Kaiser_Alexander_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413920}}, {"model": "metainfo.source", "pk": 13400, "fields": {"orig_filename": "Kaiser_Anton_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180f.", "author": "", "orig_id": 1413921}}, {"model": "metainfo.source", "pk": 13401, "fields": {"orig_filename": "Kaiser_August_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413922}}, {"model": "metainfo.source", "pk": 13402, "fields": {"orig_filename": "Kaiser_Eduard_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413923}}, {"model": "metainfo.source", "pk": 13403, "fields": {"orig_filename": "Kaiser_Eduard_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413924}}, {"model": "metainfo.source", "pk": 13404, "fields": {"orig_filename": "Kaiser_Friedrich_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181f.", "author": "", "orig_id": 1413925}}, {"model": "metainfo.source", "pk": 13405, "fields": {"orig_filename": "Kaiser_Johann-Nep_1792_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 182", "author": "", "orig_id": 1413926}}, {"model": "metainfo.source", "pk": 13406, "fields": {"orig_filename": "Kaiser_Josef-Franz-Xaver_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 182f.", "author": "", "orig_id": 1413927}}, {"model": "metainfo.source", "pk": 13407, "fields": {"orig_filename": "Kaiser_Josef-Maria_1824_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183", "author": "", "orig_id": 1413928}}, {"model": "metainfo.source", "pk": 13408, "fields": {"orig_filename": "Kaiser_Julius_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183", "author": "", "orig_id": 1413929}}, {"model": "metainfo.source", "pk": 13409, "fields": {"orig_filename": "John_Amand_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414506}}, {"model": "metainfo.source", "pk": 13410, "fields": {"orig_filename": "John_Charles_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414507}}, {"model": "metainfo.source", "pk": 13411, "fields": {"orig_filename": "John_Franz_1815_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124f.", "author": "", "orig_id": 1414508}}, {"model": "metainfo.source", "pk": 13412, "fields": {"orig_filename": "John_Friedrich_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 125", "author": "", "orig_id": 1414510}}, {"model": "metainfo.source", "pk": 13413, "fields": {"orig_filename": "John_Friedrich_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 125", "author": "", "orig_id": 1414509}}, {"model": "metainfo.source", "pk": 13414, "fields": {"orig_filename": "John_Hanns_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414511}}, {"model": "metainfo.source", "pk": 13415, "fields": {"orig_filename": "John_Vinzenz_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414512}}, {"model": "metainfo.source", "pk": 13416, "fields": {"orig_filename": "John_Wilhelm_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414513}}, {"model": "metainfo.source", "pk": 13417, "fields": {"orig_filename": "Jokai_Mor_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 127", "author": "", "orig_id": 1414515}}, {"model": "metainfo.source", "pk": 13418, "fields": {"orig_filename": "Jokely_Janos_1826_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 127", "author": "", "orig_id": 1414587}}, {"model": "metainfo.source", "pk": 13419, "fields": {"orig_filename": "Jokl_Norbert_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414588}}, {"model": "metainfo.source", "pk": 13420, "fields": {"orig_filename": "Jolles_Adolf_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414589}}, {"model": "metainfo.source", "pk": 13421, "fields": {"orig_filename": "Joly_Ferdinand_1765_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414590}}, {"model": "metainfo.source", "pk": 13422, "fields": {"orig_filename": "Jonak-Freyenwald_Gustav_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414592}}, {"model": "metainfo.source", "pk": 13423, "fields": {"orig_filename": "Jonak_Eberhard-Antonin_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128f.", "author": "", "orig_id": 1414591}}, {"model": "metainfo.source", "pk": 13424, "fields": {"orig_filename": "Joo_Istvan_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414593}}, {"model": "metainfo.source", "pk": 13425, "fields": {"orig_filename": "Joppi_Vincenzo_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414594}}, {"model": "metainfo.source", "pk": 13426, "fields": {"orig_filename": "Jordan-Rozwadowski-Gross-Rozwadow_Thaddaeus_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132f.", "author": "", "orig_id": 1414604}}, {"model": "metainfo.source", "pk": 13427, "fields": {"orig_filename": "Jordan_Eduard_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414595}}, {"model": "metainfo.source", "pk": 13428, "fields": {"orig_filename": "Jordan_Franz-Sylvester_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129f.", "author": "", "orig_id": 1414596}}, {"model": "metainfo.source", "pk": 13429, "fields": {"orig_filename": "Jordan_Franz-Xaver_1741_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 130", "author": "", "orig_id": 1414597}}, {"model": "metainfo.source", "pk": 13430, "fields": {"orig_filename": "Jordan_Henryk_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 130f.", "author": "", "orig_id": 1414598}}, {"model": "metainfo.source", "pk": 13431, "fields": {"orig_filename": "Jordan_Jan-Petr_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131", "author": "", "orig_id": 1414599}}, {"model": "metainfo.source", "pk": 13432, "fields": {"orig_filename": "Jordan_Josef_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131", "author": "", "orig_id": 1414600}}, {"model": "metainfo.source", "pk": 13433, "fields": {"orig_filename": "Jordan_Karl_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131f.", "author": "", "orig_id": 1414601}}, {"model": "metainfo.source", "pk": 13434, "fields": {"orig_filename": "Jordan_Peter_1751_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132", "author": "", "orig_id": 1414602}}, {"model": "metainfo.source", "pk": 13435, "fields": {"orig_filename": "Jordan_Richard_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132", "author": "", "orig_id": 1414603}}, {"model": "metainfo.source", "pk": 13436, "fields": {"orig_filename": "Jorgovanic_Richard_1853_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414605}}, {"model": "metainfo.source", "pk": 13437, "fields": {"orig_filename": "Jorkasch-Koch_Adolf_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414606}}, {"model": "metainfo.source", "pk": 13438, "fields": {"orig_filename": "Jorkasch-Koch_Adolf_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414607}}, {"model": "metainfo.source", "pk": 13439, "fields": {"orig_filename": "Josch_Eduard_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414608}}, {"model": "metainfo.source", "pk": 13440, "fields": {"orig_filename": "Joseffy_Rafael_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133f.", "author": "", "orig_id": 1414609}}, {"model": "metainfo.source", "pk": 13441, "fields": {"orig_filename": "Josephy_Gustav_1820_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135f.", "author": "", "orig_id": 1414680}}, {"model": "metainfo.source", "pk": 13442, "fields": {"orig_filename": "Josephy_Gustav_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136", "author": "", "orig_id": 1414681}}, {"model": "metainfo.source", "pk": 13443, "fields": {"orig_filename": "Joseph_Anton-Johann_1776_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 134", "author": "", "orig_id": 1414610}}, {"model": "metainfo.source", "pk": 13444, "fields": {"orig_filename": "Joseph_Carl-Ludwig_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 134f.", "author": "", "orig_id": 1414676}}, {"model": "metainfo.source", "pk": 13445, "fields": {"orig_filename": "Joseph_Ferdinand-Salvator_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135", "author": "", "orig_id": 1414677}}, {"model": "metainfo.source", "pk": 13446, "fields": {"orig_filename": "Joseph_Heinrich_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135", "author": "", "orig_id": 1414678}}, {"model": "metainfo.source", "pk": 13447, "fields": {"orig_filename": "Josika-Branyicska_Miklos_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136", "author": "", "orig_id": 1414682}}, {"model": "metainfo.source", "pk": 13448, "fields": {"orig_filename": "Josika-Branyicska_Samu_1805_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136f.", "author": "", "orig_id": 1414683}}, {"model": "metainfo.source", "pk": 13449, "fields": {"orig_filename": "Joss_Marcus_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137", "author": "", "orig_id": 1414684}}, {"model": "metainfo.source", "pk": 13450, "fields": {"orig_filename": "Jovanovic-Batut_Milan_1847_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138f.", "author": "", "orig_id": 1414758}}, {"model": "metainfo.source", "pk": 13451, "fields": {"orig_filename": "Jovanovic_Anastas_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137", "author": "", "orig_id": 1414685}}, {"model": "metainfo.source", "pk": 13452, "fields": {"orig_filename": "Jovanovic_Jovan_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137f.", "author": "", "orig_id": 1414686}}, {"model": "metainfo.source", "pk": 13453, "fields": {"orig_filename": "Jovanovic_Kosta_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414687}}, {"model": "metainfo.source", "pk": 13454, "fields": {"orig_filename": "Jovanovic_Milan_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414688}}, {"model": "metainfo.source", "pk": 13455, "fields": {"orig_filename": "Jovanovic_Stephan_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414689}}, {"model": "metainfo.source", "pk": 13456, "fields": {"orig_filename": "Jovanovic_Tosa_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414690}}, {"model": "metainfo.source", "pk": 13457, "fields": {"orig_filename": "Jovic_Spiridon_1801_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139", "author": "", "orig_id": 1414759}}, {"model": "metainfo.source", "pk": 13458, "fields": {"orig_filename": "Jozeffy_Pal_1775_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139", "author": "", "orig_id": 1414760}}, {"model": "metainfo.source", "pk": 13459, "fields": {"orig_filename": "Jozefovic_Oskar_1890_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139f.", "author": "", "orig_id": 1414761}}, {"model": "metainfo.source", "pk": 13460, "fields": {"orig_filename": "Juch_Emma-Antonia-Johanna_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140", "author": "", "orig_id": 1414762}}, {"model": "metainfo.source", "pk": 13461, "fields": {"orig_filename": "Juch_Ernst_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140", "author": "", "orig_id": 1414763}}, {"model": "metainfo.source", "pk": 13462, "fields": {"orig_filename": "Juda_Adele_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141", "author": "", "orig_id": 1414765}}, {"model": "metainfo.source", "pk": 13463, "fields": {"orig_filename": "Juda_Albin_1848_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141", "author": "", "orig_id": 1414766}}, {"model": "metainfo.source", "pk": 13464, "fields": {"orig_filename": "Jud_Roman_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140f.", "author": "", "orig_id": 1414764}}, {"model": "metainfo.source", "pk": 13465, "fields": {"orig_filename": "Juelg_Bernhard_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141f.", "author": "", "orig_id": 1414767}}, {"model": "metainfo.source", "pk": 13466, "fields": {"orig_filename": "Juellig_Max_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414768}}, {"model": "metainfo.source", "pk": 13467, "fields": {"orig_filename": "Juenger_Vinzenz_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414769}}, {"model": "metainfo.source", "pk": 13468, "fields": {"orig_filename": "Jueptner-Jonstorff_Hans_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414770}}, {"model": "metainfo.source", "pk": 13469, "fields": {"orig_filename": "Juestel_Josef-Alois_1765_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142f.", "author": "", "orig_id": 1414771}}, {"model": "metainfo.source", "pk": 13470, "fields": {"orig_filename": "Juethner_Julius_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 143f.", "author": "", "orig_id": 1414772}}, {"model": "metainfo.source", "pk": 13471, "fields": {"orig_filename": "Juettner_Josef_1775_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414773}}, {"model": "metainfo.source", "pk": 13472, "fields": {"orig_filename": "Juffinger_Georg_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414774}}, {"model": "metainfo.source", "pk": 13473, "fields": {"orig_filename": "Juffinger_Michael_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414775}}, {"model": "metainfo.source", "pk": 13474, "fields": {"orig_filename": "Jugenicz-Boldoghegy_Anton_1773_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414777}}, {"model": "metainfo.source", "pk": 13475, "fields": {"orig_filename": "Jugoviz_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414843}}, {"model": "metainfo.source", "pk": 13476, "fields": {"orig_filename": "Jug_Klement_1898_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414776}}, {"model": "metainfo.source", "pk": 13477, "fields": {"orig_filename": "Juhasz_Karl_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414844}}, {"model": "metainfo.source", "pk": 13478, "fields": {"orig_filename": "Jukel_Karl_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414845}}, {"model": "metainfo.source", "pk": 13479, "fields": {"orig_filename": "Jukic_Ante_1873_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414846}}, {"model": "metainfo.source", "pk": 13480, "fields": {"orig_filename": "Jukic_Ivan-Franjo_1818_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414847}}, {"model": "metainfo.source", "pk": 13481, "fields": {"orig_filename": "Julisch_Hermine_1850_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414848}}, {"model": "metainfo.source", "pk": 13482, "fields": {"orig_filename": "Julius_Paul_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414849}}, {"model": "metainfo.source", "pk": 13483, "fields": {"orig_filename": "Jummerspach_Fritz_1878_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146f.", "author": "", "orig_id": 1414850}}, {"model": "metainfo.source", "pk": 13484, "fields": {"orig_filename": "Junck_Karl_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414851}}, {"model": "metainfo.source", "pk": 13485, "fields": {"orig_filename": "Jungbauer_Gustav_1886_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149", "author": "", "orig_id": 1414858}}, {"model": "metainfo.source", "pk": 13486, "fields": {"orig_filename": "Jungbauer_Raimund_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149", "author": "", "orig_id": 1414859}}, {"model": "metainfo.source", "pk": 13487, "fields": {"orig_filename": "Junger_Franz_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149f.", "author": "", "orig_id": 1414860}}, {"model": "metainfo.source", "pk": 13488, "fields": {"orig_filename": "Junger_Michael_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414861}}, {"model": "metainfo.source", "pk": 13489, "fields": {"orig_filename": "Jungl_Anton_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414862}}, {"model": "metainfo.source", "pk": 13490, "fields": {"orig_filename": "Jungmair_Rudolf_1813_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414863}}, {"model": "metainfo.source", "pk": 13491, "fields": {"orig_filename": "Jungmann_Albert_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414864}}, {"model": "metainfo.source", "pk": 13492, "fields": {"orig_filename": "Jungmann_Anton-Johann_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150f.", "author": "", "orig_id": 1414865}}, {"model": "metainfo.source", "pk": 13493, "fields": {"orig_filename": "Jungmann_Flora_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414866}}, {"model": "metainfo.source", "pk": 13494, "fields": {"orig_filename": "Jungmann_Jan_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414928}}, {"model": "metainfo.source", "pk": 13495, "fields": {"orig_filename": "Jungmann_Josef_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414929}}, {"model": "metainfo.source", "pk": 13496, "fields": {"orig_filename": "Jungmann_Josef_1830_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414930}}, {"model": "metainfo.source", "pk": 13497, "fields": {"orig_filename": "Jungwirth_Adalbert_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151f.", "author": "", "orig_id": 1414931}}, {"model": "metainfo.source", "pk": 13498, "fields": {"orig_filename": "Jungwirth_Josef_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152", "author": "", "orig_id": 1414932}}, {"model": "metainfo.source", "pk": 13499, "fields": {"orig_filename": "Jung_Amand_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414852}}, {"model": "metainfo.source", "pk": 13500, "fields": {"orig_filename": "Jung_Edmund_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414853}}, {"model": "metainfo.source", "pk": 13501, "fields": {"orig_filename": "Jung_Giuseppe_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147f.", "author": "", "orig_id": 1414854}}, {"model": "metainfo.source", "pk": 13502, "fields": {"orig_filename": "Jung_Julius_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148", "author": "", "orig_id": 1414855}}, {"model": "metainfo.source", "pk": 13503, "fields": {"orig_filename": "Jung_Moriz_1885_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148", "author": "", "orig_id": 1414856}}, {"model": "metainfo.source", "pk": 13504, "fields": {"orig_filename": "Jung_Rudolf_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148f.", "author": "", "orig_id": 1414857}}, {"model": "metainfo.source", "pk": 13505, "fields": {"orig_filename": "Junker_Christian_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 153", "author": "", "orig_id": 1414935}}, {"model": "metainfo.source", "pk": 13506, "fields": {"orig_filename": "Junker_Karl_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 153f.", "author": "", "orig_id": 1414936}}, {"model": "metainfo.source", "pk": 13507, "fields": {"orig_filename": "Junk_Rudolf_1880_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152", "author": "", "orig_id": 1414933}}, {"model": "metainfo.source", "pk": 13508, "fields": {"orig_filename": "Junk_Viktor_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152f.", "author": "", "orig_id": 1414934}}, {"model": "metainfo.source", "pk": 13509, "fields": {"orig_filename": "Juranyi_Lajos_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154", "author": "", "orig_id": 1414937}}, {"model": "metainfo.source", "pk": 13510, "fields": {"orig_filename": "Juraschek_Franz_1849_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154", "author": "", "orig_id": 1414938}}, {"model": "metainfo.source", "pk": 13511, "fields": {"orig_filename": "Juratzka_Jakob_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154f.", "author": "", "orig_id": 1414939}}, {"model": "metainfo.source", "pk": 13512, "fields": {"orig_filename": "Jurcic_Josip_1844_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155", "author": "", "orig_id": 1414940}}, {"model": "metainfo.source", "pk": 13513, "fields": {"orig_filename": "Jurek_Wilhelm-August_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155", "author": "", "orig_id": 1414941}}, {"model": "metainfo.source", "pk": 13514, "fields": {"orig_filename": "Jeglic_Anton-Bonaventura_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92f.", "author": "", "orig_id": 1414091}}, {"model": "metainfo.source", "pk": 13515, "fields": {"orig_filename": "Jehle_Ludwig_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93", "author": "", "orig_id": 1414092}}, {"model": "metainfo.source", "pk": 13516, "fields": {"orig_filename": "Jehly_Georg_1848_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93", "author": "", "orig_id": 1414093}}, {"model": "metainfo.source", "pk": 13517, "fields": {"orig_filename": "Jehly_Jacob_1854_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93f.", "author": "", "orig_id": 1414156}}, {"model": "metainfo.source", "pk": 13518, "fields": {"orig_filename": "Jeiteles_Eleonore_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414157}}, {"model": "metainfo.source", "pk": 13519, "fields": {"orig_filename": "Jeitteles_Adalbert_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414158}}, {"model": "metainfo.source", "pk": 13520, "fields": {"orig_filename": "Jeitteles_Alois-Isidor_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414159}}, {"model": "metainfo.source", "pk": 13521, "fields": {"orig_filename": "Jeitteles_Andreas-Ludwig_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414160}}, {"model": "metainfo.source", "pk": 13522, "fields": {"orig_filename": "Jeitteles_Isaac_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94f.", "author": "", "orig_id": 1414161}}, {"model": "metainfo.source", "pk": 13523, "fields": {"orig_filename": "Jeitteles_Ludwig-Heinrich_1830_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95", "author": "", "orig_id": 1414162}}, {"model": "metainfo.source", "pk": 13524, "fields": {"orig_filename": "Jeitteles_Richard_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95", "author": "", "orig_id": 1414163}}, {"model": "metainfo.source", "pk": 13525, "fields": {"orig_filename": "Jekelfalussy-Jekelfalus-Margitfalva_Josef_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95f.", "author": "", "orig_id": 1414164}}, {"model": "metainfo.source", "pk": 13526, "fields": {"orig_filename": "Jekelfalussy-Jekelfalus-Margitfalva_Ludwig_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414165}}, {"model": "metainfo.source", "pk": 13527, "fields": {"orig_filename": "Jelacic-Buzim_Josef_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 99f.", "author": "", "orig_id": 1414245}}, {"model": "metainfo.source", "pk": 13528, "fields": {"orig_filename": "Jelenic_Julijan_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414169}}, {"model": "metainfo.source", "pk": 13529, "fields": {"orig_filename": "Jelenko_Siegfried_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414170}}, {"model": "metainfo.source", "pk": 13530, "fields": {"orig_filename": "Jelenska_Irma_1852_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414171}}, {"model": "metainfo.source", "pk": 13531, "fields": {"orig_filename": "Jelen_Alois_1801_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414168}}, {"model": "metainfo.source", "pk": 13532, "fields": {"orig_filename": "Jele_Albert_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414166}}, {"model": "metainfo.source", "pk": 13533, "fields": {"orig_filename": "Jele_Kaspar_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414167}}, {"model": "metainfo.source", "pk": 13534, "fields": {"orig_filename": "Jelic_Luka_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414173}}, {"model": "metainfo.source", "pk": 13535, "fields": {"orig_filename": "Jelinek_Alfons_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414174}}, {"model": "metainfo.source", "pk": 13536, "fields": {"orig_filename": "Jelinek_Edmund_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414175}}, {"model": "metainfo.source", "pk": 13537, "fields": {"orig_filename": "Jelinek_Franz-Xaver_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414177}}, {"model": "metainfo.source", "pk": 13538, "fields": {"orig_filename": "Jelinek_Franz_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414176}}, {"model": "metainfo.source", "pk": 13539, "fields": {"orig_filename": "Jelinek_Josef_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414242}}, {"model": "metainfo.source", "pk": 13540, "fields": {"orig_filename": "Jelinek_Karl_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98f.", "author": "", "orig_id": 1414243}}, {"model": "metainfo.source", "pk": 13541, "fields": {"orig_filename": "Jelinek_Wilhelm_1845_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 99", "author": "", "orig_id": 1414244}}, {"model": "metainfo.source", "pk": 13542, "fields": {"orig_filename": "Jellinek-Mercedes_Emil_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414253}}, {"model": "metainfo.source", "pk": 13543, "fields": {"orig_filename": "Jellinek_Adolf_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 100f.", "author": "", "orig_id": 1414246}}, {"model": "metainfo.source", "pk": 13544, "fields": {"orig_filename": "Jellinek_Camilla_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 101", "author": "", "orig_id": 1414247}}, {"model": "metainfo.source", "pk": 13545, "fields": {"orig_filename": "Jellinek_Georg_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 101f.", "author": "", "orig_id": 1414248}}, {"model": "metainfo.source", "pk": 13546, "fields": {"orig_filename": "Jellinek_Hermann_1822_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102", "author": "", "orig_id": 1414249}}, {"model": "metainfo.source", "pk": 13547, "fields": {"orig_filename": "Jellinek_Max-Hermann_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102", "author": "", "orig_id": 1414250}}, {"model": "metainfo.source", "pk": 13548, "fields": {"orig_filename": "Jellinek_Moritz_1828_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102f.", "author": "", "orig_id": 1414251}}, {"model": "metainfo.source", "pk": 13549, "fields": {"orig_filename": "Jellinek_Oskar_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414252}}, {"model": "metainfo.source", "pk": 13550, "fields": {"orig_filename": "Jelovsek_Ernestine_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414254}}, {"model": "metainfo.source", "pk": 13551, "fields": {"orig_filename": "Jendrassik_Ernoe_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103f.", "author": "", "orig_id": 1414255}}, {"model": "metainfo.source", "pk": 13552, "fields": {"orig_filename": "Jendrassik_Jenoe-Lipot-Andras_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1414256}}, {"model": "metainfo.source", "pk": 13553, "fields": {"orig_filename": "Jenewein_Felix_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1421744}}, {"model": "metainfo.source", "pk": 13554, "fields": {"orig_filename": "Jenger_Johann-Baptist_1792_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1414257}}, {"model": "metainfo.source", "pk": 13555, "fields": {"orig_filename": "Jenikowsky_Franz_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104f.", "author": "", "orig_id": 1414258}}, {"model": "metainfo.source", "pk": 13556, "fields": {"orig_filename": "Jenke_Heinrich_1823_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105", "author": "", "orig_id": 1414259}}, {"model": "metainfo.source", "pk": 13557, "fields": {"orig_filename": "Jenko_Davorin_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105", "author": "", "orig_id": 1414260}}, {"model": "metainfo.source", "pk": 13558, "fields": {"orig_filename": "Jenko_Simon_1835_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105f.", "author": "", "orig_id": 1414261}}, {"model": "metainfo.source", "pk": 13559, "fields": {"orig_filename": "Jenny_Karl_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 106", "author": "", "orig_id": 1414262}}, {"model": "metainfo.source", "pk": 13560, "fields": {"orig_filename": "Jenny_Melchior_1785_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 106f.", "author": "", "orig_id": 1414263}}, {"model": "metainfo.source", "pk": 13561, "fields": {"orig_filename": "Jenny_Rudolf-Christoph_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107", "author": "", "orig_id": 1414323}}, {"model": "metainfo.source", "pk": 13562, "fields": {"orig_filename": "Jenny_Samuel_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107", "author": "", "orig_id": 1414324}}, {"model": "metainfo.source", "pk": 13563, "fields": {"orig_filename": "Jentsch_August_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107f.", "author": "", "orig_id": 1414325}}, {"model": "metainfo.source", "pk": 13564, "fields": {"orig_filename": "Jentzsch_Robert-Bruno_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108", "author": "", "orig_id": 1414326}}, {"model": "metainfo.source", "pk": 13565, "fields": {"orig_filename": "Jenull_Johann_1773_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108", "author": "", "orig_id": 1414327}}, {"model": "metainfo.source", "pk": 13566, "fields": {"orig_filename": "Jenull_Sebastian_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108f.", "author": "", "orig_id": 1414328}}, {"model": "metainfo.source", "pk": 13567, "fields": {"orig_filename": "Jerabek_Frantisek-Venceslav_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414329}}, {"model": "metainfo.source", "pk": 13568, "fields": {"orig_filename": "Jerabek_Vaclav_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414330}}, {"model": "metainfo.source", "pk": 13569, "fields": {"orig_filename": "Jeraj_Franciska_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414331}}, {"model": "metainfo.source", "pk": 13570, "fields": {"orig_filename": "Jeran_Luka_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109f.", "author": "", "orig_id": 1414332}}, {"model": "metainfo.source", "pk": 13571, "fields": {"orig_filename": "Jeremias_Bohuslav_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414334}}, {"model": "metainfo.source", "pk": 13572, "fields": {"orig_filename": "Jeremias_Jaroslav_1889_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414335}}, {"model": "metainfo.source", "pk": 13573, "fields": {"orig_filename": "Jergitsch_Ferdinand_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414336}}, {"model": "metainfo.source", "pk": 13574, "fields": {"orig_filename": "Jerisa_Fran_1829_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414337}}, {"model": "metainfo.source", "pk": 13575, "fields": {"orig_filename": "Jerney_Janos_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110f.", "author": "", "orig_id": 1414338}}, {"model": "metainfo.source", "pk": 13576, "fields": {"orig_filename": "Jerusalem_Wilhelm_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 111", "author": "", "orig_id": 1414339}}, {"model": "metainfo.source", "pk": 13577, "fields": {"orig_filename": "Jesenko_Fran_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 111f.", "author": "", "orig_id": 1414340}}, {"model": "metainfo.source", "pk": 13578, "fields": {"orig_filename": "Jesenko_Janez_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414341}}, {"model": "metainfo.source", "pk": 13579, "fields": {"orig_filename": "Jesenska_Ruzena_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414342}}, {"model": "metainfo.source", "pk": 13580, "fields": {"orig_filename": "Jessen_Asmus-Christian_1835_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414343}}, {"model": "metainfo.source", "pk": 13581, "fields": {"orig_filename": "Jessernigg_Gabriel_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414344}}, {"model": "metainfo.source", "pk": 13582, "fields": {"orig_filename": "Jettel-Ettenach_Emil_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112f.", "author": "", "orig_id": 1414404}}, {"model": "metainfo.source", "pk": 13583, "fields": {"orig_filename": "Jettel_Wladimir_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414403}}, {"model": "metainfo.source", "pk": 13584, "fields": {"orig_filename": "Jettmar_Rudolf_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 113", "author": "", "orig_id": 1414405}}, {"model": "metainfo.source", "pk": 13585, "fields": {"orig_filename": "Jezbera_Frantisek-Jan_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 113", "author": "", "orig_id": 1414406}}, {"model": "metainfo.source", "pk": 13586, "fields": {"orig_filename": "Jezek_Jan_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414407}}, {"model": "metainfo.source", "pk": 13587, "fields": {"orig_filename": "Jicinsky_Ferdinand_1846_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414408}}, {"model": "metainfo.source", "pk": 13588, "fields": {"orig_filename": "Jicinsky_Karl_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414409}}, {"model": "metainfo.source", "pk": 13589, "fields": {"orig_filename": "Jihn-Solwegen_Friedrich_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414410}}, {"model": "metainfo.source", "pk": 13590, "fields": {"orig_filename": "Jiranek_Milos_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414411}}, {"model": "metainfo.source", "pk": 13591, "fields": {"orig_filename": "Jirani_Otakar_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114f.", "author": "", "orig_id": 1414412}}, {"model": "metainfo.source", "pk": 13592, "fields": {"orig_filename": "Jirasek_Alois_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 115", "author": "", "orig_id": 1414413}}, {"model": "metainfo.source", "pk": 13593, "fields": {"orig_filename": "Jirecek-Samokov_Hermenegild_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117", "author": "", "orig_id": 1414416}}, {"model": "metainfo.source", "pk": 13594, "fields": {"orig_filename": "Jirecek_Josef-Konstantin_1854_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 116f.", "author": "", "orig_id": 1414415}}, {"model": "metainfo.source", "pk": 13595, "fields": {"orig_filename": "Jirecek_Josef_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 115f.", "author": "", "orig_id": 1414414}}, {"model": "metainfo.source", "pk": 13596, "fields": {"orig_filename": "Jirousek_Anton_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117", "author": "", "orig_id": 1414417}}, {"model": "metainfo.source", "pk": 13597, "fields": {"orig_filename": "Jirsik_Johann-Valerian_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117f.", "author": "", "orig_id": 1414418}}, {"model": "metainfo.source", "pk": 13598, "fields": {"orig_filename": "Jirus_Bohuslav_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118", "author": "", "orig_id": 1414419}}, {"model": "metainfo.source", "pk": 13599, "fields": {"orig_filename": "Joachim_Amalie_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118", "author": "", "orig_id": 1414420}}, {"model": "metainfo.source", "pk": 13600, "fields": {"orig_filename": "Joachim_Josef_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118f.", "author": "", "orig_id": 1414421}}, {"model": "metainfo.source", "pk": 13601, "fields": {"orig_filename": "Joanovic_Djordje_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414491}}, {"model": "metainfo.source", "pk": 13602, "fields": {"orig_filename": "Jobst_Carl_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414493}}, {"model": "metainfo.source", "pk": 13603, "fields": {"orig_filename": "Jobst_Franz_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119f.", "author": "", "orig_id": 1414494}}, {"model": "metainfo.source", "pk": 13604, "fields": {"orig_filename": "Job_Ignjat_1895_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414492}}, {"model": "metainfo.source", "pk": 13605, "fields": {"orig_filename": "Jochum_Josef-Anton_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 120", "author": "", "orig_id": 1414495}}, {"model": "metainfo.source", "pk": 13606, "fields": {"orig_filename": "Jodl_Friedrich_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 120f.", "author": "", "orig_id": 1414496}}, {"model": "metainfo.source", "pk": 13607, "fields": {"orig_filename": "Jodl_Margarete_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414497}}, {"model": "metainfo.source", "pk": 13608, "fields": {"orig_filename": "Joelson_Robert_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414498}}, {"model": "metainfo.source", "pk": 13609, "fields": {"orig_filename": "Joendl_Johann-Philipp_1782_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414499}}, {"model": "metainfo.source", "pk": 13610, "fields": {"orig_filename": "Joers_Paul_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121f.", "author": "", "orig_id": 1414500}}, {"model": "metainfo.source", "pk": 13611, "fields": {"orig_filename": "Johanny_Erich-Adolf_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123", "author": "", "orig_id": 1414502}}, {"model": "metainfo.source", "pk": 13612, "fields": {"orig_filename": "Johanny_Lothar_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123", "author": "", "orig_id": 1414503}}, {"model": "metainfo.source", "pk": 13613, "fields": {"orig_filename": "Johann_Bapt-Joseph-Fabian-Sebastian_1782_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 122f.", "author": "", "orig_id": 1414501}}, {"model": "metainfo.source", "pk": 13614, "fields": {"orig_filename": "Joherl_Ignaz-Heinrich_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123f.", "author": "", "orig_id": 1414504}}, {"model": "metainfo.source", "pk": 13615, "fields": {"orig_filename": "John-Johnesberg_Conrad-Heinrich_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126f.", "author": "", "orig_id": 1414514}}, {"model": "metainfo.source", "pk": 13616, "fields": {"orig_filename": "John_Alois_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414505}}, {"model": "metainfo.source", "pk": 13617, "fields": {"orig_filename": "Jaksch_Amalie_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414996}}, {"model": "metainfo.source", "pk": 13618, "fields": {"orig_filename": "Jaksch_Friedrich_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414997}}, {"model": "metainfo.source", "pk": 13619, "fields": {"orig_filename": "Jaksch_Josef_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414998}}, {"model": "metainfo.source", "pk": 13620, "fields": {"orig_filename": "Jaksic_Djuro_1832_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415003}}, {"model": "metainfo.source", "pk": 13621, "fields": {"orig_filename": "Jaksi_Josef_1874_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66f.", "author": "", "orig_id": 1415002}}, {"model": "metainfo.source", "pk": 13622, "fields": {"orig_filename": "Jakubec_Jan_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415004}}, {"model": "metainfo.source", "pk": 13623, "fields": {"orig_filename": "Jalowetz_Eduard_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415005}}, {"model": "metainfo.source", "pk": 13624, "fields": {"orig_filename": "Jama_Matija_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67f.", "author": "", "orig_id": 1415006}}, {"model": "metainfo.source", "pk": 13625, "fields": {"orig_filename": "Jambor_Pal_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68", "author": "", "orig_id": 1415007}}, {"model": "metainfo.source", "pk": 13626, "fields": {"orig_filename": "Jambrisak_Marija_1847_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68", "author": "", "orig_id": 1415008}}, {"model": "metainfo.source", "pk": 13627, "fields": {"orig_filename": "Jamrich_Maria-Helene_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68f.", "author": "", "orig_id": 1415009}}, {"model": "metainfo.source", "pk": 13628, "fields": {"orig_filename": "Jamsek_Franc_1840_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415073}}, {"model": "metainfo.source", "pk": 13629, "fields": {"orig_filename": "Janacek_Leos_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415075}}, {"model": "metainfo.source", "pk": 13630, "fields": {"orig_filename": "Janauschek_Franziska-Magdalena_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69f.", "author": "", "orig_id": 1415076}}, {"model": "metainfo.source", "pk": 13631, "fields": {"orig_filename": "Janauschek_Leopold_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70", "author": "", "orig_id": 1415077}}, {"model": "metainfo.source", "pk": 13632, "fields": {"orig_filename": "Janauschek_Wilhelm-Raphael_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70", "author": "", "orig_id": 1415078}}, {"model": "metainfo.source", "pk": 13633, "fields": {"orig_filename": "Jancso_Benedek_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70f.", "author": "", "orig_id": 1415079}}, {"model": "metainfo.source", "pk": 13634, "fields": {"orig_filename": "Jancso_Gyoergy_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415080}}, {"model": "metainfo.source", "pk": 13635, "fields": {"orig_filename": "Jandera_Joseph-Ladislaus_1776_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415081}}, {"model": "metainfo.source", "pk": 13636, "fields": {"orig_filename": "Jandrisevits_Peter_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415082}}, {"model": "metainfo.source", "pk": 13637, "fields": {"orig_filename": "Janecek_Gustav_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415083}}, {"model": "metainfo.source", "pk": 13638, "fields": {"orig_filename": "Janecka_Josef_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415084}}, {"model": "metainfo.source", "pk": 13639, "fields": {"orig_filename": "Janezic_Anton_1828_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415085}}, {"model": "metainfo.source", "pk": 13640, "fields": {"orig_filename": "Janiczek_Wladimir_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415086}}, {"model": "metainfo.source", "pk": 13641, "fields": {"orig_filename": "Janisch_Antonie_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415087}}, {"model": "metainfo.source", "pk": 13642, "fields": {"orig_filename": "Janisch_Eduard_1868_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72f.", "author": "", "orig_id": 1415088}}, {"model": "metainfo.source", "pk": 13643, "fields": {"orig_filename": "Janiss_Johann_1808_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73", "author": "", "orig_id": 1415089}}, {"model": "metainfo.source", "pk": 13644, "fields": {"orig_filename": "Janitschek_Maria_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73", "author": "", "orig_id": 1415092}}, {"model": "metainfo.source", "pk": 13645, "fields": {"orig_filename": "Janka-Bulcs_Viktor_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74", "author": "", "orig_id": 1415156}}, {"model": "metainfo.source", "pk": 13646, "fields": {"orig_filename": "Janka_Gabriel_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73f.", "author": "", "orig_id": 1415093}}, {"model": "metainfo.source", "pk": 13647, "fields": {"orig_filename": "Jankovich_Miklos_1773_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415159}}, {"model": "metainfo.source", "pk": 13648, "fields": {"orig_filename": "Jankovits_Julius_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415160}}, {"model": "metainfo.source", "pk": 13649, "fields": {"orig_filename": "Janko_Josef_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74", "author": "", "orig_id": 1415157}}, {"model": "metainfo.source", "pk": 13650, "fields": {"orig_filename": "Janko_Paul_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74f.", "author": "", "orig_id": 1415158}}, {"model": "metainfo.source", "pk": 13651, "fields": {"orig_filename": "Jannitti_August_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415161}}, {"model": "metainfo.source", "pk": 13652, "fields": {"orig_filename": "Janosik_Jan_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415163}}, {"model": "metainfo.source", "pk": 13653, "fields": {"orig_filename": "Janosi_Bela_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415162}}, {"model": "metainfo.source", "pk": 13654, "fields": {"orig_filename": "Janovsky_Jaroslav_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75f.", "author": "", "orig_id": 1415164}}, {"model": "metainfo.source", "pk": 13655, "fields": {"orig_filename": "Janovsky_Vitezslav_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415165}}, {"model": "metainfo.source", "pk": 13656, "fields": {"orig_filename": "Jansa_Leopold_1795_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415166}}, {"model": "metainfo.source", "pk": 13657, "fields": {"orig_filename": "Jansa_Wenzel_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415167}}, {"model": "metainfo.source", "pk": 13658, "fields": {"orig_filename": "Janscheck_Valentin_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415168}}, {"model": "metainfo.source", "pk": 13659, "fields": {"orig_filename": "Janschitz_Eduard_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76f.", "author": "", "orig_id": 1415169}}, {"model": "metainfo.source", "pk": 13660, "fields": {"orig_filename": "Jansky_Jan_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77", "author": "", "orig_id": 1415170}}, {"model": "metainfo.source", "pk": 13661, "fields": {"orig_filename": "Jantsch_Franz_1898_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77", "author": "", "orig_id": 1415171}}, {"model": "metainfo.source", "pk": 13662, "fields": {"orig_filename": "Jantsch_Heinrich_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77f.", "author": "", "orig_id": 1415172}}, {"model": "metainfo.source", "pk": 13663, "fields": {"orig_filename": "Januschke_Johann_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415173}}, {"model": "metainfo.source", "pk": 13664, "fields": {"orig_filename": "Januschowsky_Georgine_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415174}}, {"model": "metainfo.source", "pk": 13665, "fields": {"orig_filename": "Janusic_Jurislav_1881_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415175}}, {"model": "metainfo.source", "pk": 13666, "fields": {"orig_filename": "Jan_Giorgio_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415074}}, {"model": "metainfo.source", "pk": 13667, "fields": {"orig_filename": "Jaques-Dalcroze_Emile_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79", "author": "", "orig_id": 1415177}}, {"model": "metainfo.source", "pk": 13668, "fields": {"orig_filename": "Jaques_Heinrich_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415176}}, {"model": "metainfo.source", "pk": 13669, "fields": {"orig_filename": "Jara_Johann_1900_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79", "author": "", "orig_id": 1415178}}, {"model": "metainfo.source", "pk": 13670, "fields": {"orig_filename": "Jarcke_Karl-Ernst_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80", "author": "", "orig_id": 1415180}}, {"model": "metainfo.source", "pk": 13671, "fields": {"orig_filename": "Jarc_Miran_1900_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79f.", "author": "", "orig_id": 1415179}}, {"model": "metainfo.source", "pk": 13672, "fields": {"orig_filename": "Jaresch_Johann_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80", "author": "", "orig_id": 1413983}}, {"model": "metainfo.source", "pk": 13673, "fields": {"orig_filename": "Jarisch_Adolf_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80f.", "author": "", "orig_id": 1413984}}, {"model": "metainfo.source", "pk": 13674, "fields": {"orig_filename": "Jarisch_Anton-Hieronymus_1818_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413985}}, {"model": "metainfo.source", "pk": 13675, "fields": {"orig_filename": "Jarl-Sakellarios_Karin_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413987}}, {"model": "metainfo.source", "pk": 13676, "fields": {"orig_filename": "Jarl_Otto_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413986}}, {"model": "metainfo.source", "pk": 13677, "fields": {"orig_filename": "Jarmund_Stanislaw_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81f.", "author": "", "orig_id": 1413988}}, {"model": "metainfo.source", "pk": 13678, "fields": {"orig_filename": "Jarnevic_Dragojla_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413989}}, {"model": "metainfo.source", "pk": 13679, "fields": {"orig_filename": "Jarnik_Jan-Urban_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413990}}, {"model": "metainfo.source", "pk": 13680, "fields": {"orig_filename": "Jarnik_Urban_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413991}}, {"model": "metainfo.source", "pk": 13681, "fields": {"orig_filename": "Jarno_Georg_1868_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82f.", "author": "", "orig_id": 1413992}}, {"model": "metainfo.source", "pk": 13682, "fields": {"orig_filename": "Jarno_Josef_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83", "author": "", "orig_id": 1413994}}, {"model": "metainfo.source", "pk": 13683, "fields": {"orig_filename": "Jaronek_Bohumir_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83", "author": "", "orig_id": 1413995}}, {"model": "metainfo.source", "pk": 13684, "fields": {"orig_filename": "Jarosch_Joseph_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83f.", "author": "", "orig_id": 1413996}}, {"model": "metainfo.source", "pk": 13685, "fields": {"orig_filename": "Jarycevskyj_Sylvestr_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413997}}, {"model": "metainfo.source", "pk": 13686, "fields": {"orig_filename": "Jarz_Konrad_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413998}}, {"model": "metainfo.source", "pk": 13687, "fields": {"orig_filename": "Jaschke_Franz_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413999}}, {"model": "metainfo.source", "pk": 13688, "fields": {"orig_filename": "Jaschke_Franz_1862_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84f.", "author": "", "orig_id": 1414000}}, {"model": "metainfo.source", "pk": 13689, "fields": {"orig_filename": "Jaskewitz_Josef-Franz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414001}}, {"model": "metainfo.source", "pk": 13690, "fields": {"orig_filename": "Jasper_Friedrich_1847_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414002}}, {"model": "metainfo.source", "pk": 13691, "fields": {"orig_filename": "Jasper_Viktor_1848_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414003}}, {"model": "metainfo.source", "pk": 13692, "fields": {"orig_filename": "Jassnueger_Johann-Nep_1766_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85f.", "author": "", "orig_id": 1414004}}, {"model": "metainfo.source", "pk": 13693, "fields": {"orig_filename": "Jaszai_Marie_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414005}}, {"model": "metainfo.source", "pk": 13694, "fields": {"orig_filename": "Jaszai_Samu_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414006}}, {"model": "metainfo.source", "pk": 13695, "fields": {"orig_filename": "Jaszay_Pal_1809_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414007}}, {"model": "metainfo.source", "pk": 13696, "fields": {"orig_filename": "Jaszowski_Stanislaw_1803_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414072}}, {"model": "metainfo.source", "pk": 13697, "fields": {"orig_filename": "Jauernig_Jakob_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414073}}, {"model": "metainfo.source", "pk": 13698, "fields": {"orig_filename": "Jaumann_Gustav_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414074}}, {"model": "metainfo.source", "pk": 13699, "fields": {"orig_filename": "Jauner-Schroffenegg_August_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414077}}, {"model": "metainfo.source", "pk": 13700, "fields": {"orig_filename": "Jauner_Franz_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414075}}, {"model": "metainfo.source", "pk": 13701, "fields": {"orig_filename": "Jauner_Heinrich_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414076}}, {"model": "metainfo.source", "pk": 13702, "fields": {"orig_filename": "Jautz_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87f.", "author": "", "orig_id": 1414078}}, {"model": "metainfo.source", "pk": 13703, "fields": {"orig_filename": "Javornik_Placidus_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421745}}, {"model": "metainfo.source", "pk": 13704, "fields": {"orig_filename": "Javorskij_Julian-A_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421819}}, {"model": "metainfo.source", "pk": 13705, "fields": {"orig_filename": "Javurek_Karl_1815_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421820}}, {"model": "metainfo.source", "pk": 13706, "fields": {"orig_filename": "Jaworski_Apolinary_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421821}}, {"model": "metainfo.source", "pk": 13707, "fields": {"orig_filename": "Jaworski_Franciszek_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89", "author": "", "orig_id": 1421822}}, {"model": "metainfo.source", "pk": 13708, "fields": {"orig_filename": "Jaworski_Wladyslaw-Leopold_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89", "author": "", "orig_id": 1421823}}, {"model": "metainfo.source", "pk": 13709, "fields": {"orig_filename": "Jax_Johann_1842_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89f.", "author": "", "orig_id": 1421824}}, {"model": "metainfo.source", "pk": 13710, "fields": {"orig_filename": "Jebacin_Anton_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414080}}, {"model": "metainfo.source", "pk": 13711, "fields": {"orig_filename": "Jeblinger_Raimund_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414081}}, {"model": "metainfo.source", "pk": 13712, "fields": {"orig_filename": "Jeckel_Fortunat_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414082}}, {"model": "metainfo.source", "pk": 13713, "fields": {"orig_filename": "Jeczmieniowski_Karl_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414083}}, {"model": "metainfo.source", "pk": 13714, "fields": {"orig_filename": "Jedek_Karl_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90f.", "author": "", "orig_id": 1414084}}, {"model": "metainfo.source", "pk": 13715, "fields": {"orig_filename": "Jedina-Palombini_Leopold_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414086}}, {"model": "metainfo.source", "pk": 13716, "fields": {"orig_filename": "Jedina_Hermann_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414085}}, {"model": "metainfo.source", "pk": 13717, "fields": {"orig_filename": "Jedlicka_Bohdan_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414087}}, {"model": "metainfo.source", "pk": 13718, "fields": {"orig_filename": "Jedlicka_Rudolf_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414088}}, {"model": "metainfo.source", "pk": 13719, "fields": {"orig_filename": "Jedlik_Anyos_1800_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414089}}, {"model": "metainfo.source", "pk": 13720, "fields": {"orig_filename": "Jedrzejowicz_Adam_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414090}}, {"model": "metainfo.source", "pk": 13721, "fields": {"orig_filename": "Innerkofler_Josef-I_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414582}}, {"model": "metainfo.source", "pk": 13722, "fields": {"orig_filename": "Innerkofler_Michael-Ii_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414584}}, {"model": "metainfo.source", "pk": 13723, "fields": {"orig_filename": "Innerkofler_Michael-I_1844_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414583}}, {"model": "metainfo.source", "pk": 13724, "fields": {"orig_filename": "Innerkofler_Sepp_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414585}}, {"model": "metainfo.source", "pk": 13725, "fields": {"orig_filename": "Insam_Johann_1775_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414654}}, {"model": "metainfo.source", "pk": 13726, "fields": {"orig_filename": "Inthaler_Daniel_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414656}}, {"model": "metainfo.source", "pk": 13727, "fields": {"orig_filename": "Inthal_Kaspar_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414655}}, {"model": "metainfo.source", "pk": 13728, "fields": {"orig_filename": "Inwald-Waldtreu_Josef_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38f.", "author": "", "orig_id": 1414657}}, {"model": "metainfo.source", "pk": 13729, "fields": {"orig_filename": "Inzaghi_Karl_1777_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 39", "author": "", "orig_id": 1414658}}, {"model": "metainfo.source", "pk": 13730, "fields": {"orig_filename": "Ipavic_Benjamin_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 39", "author": "", "orig_id": 1414659}}, {"model": "metainfo.source", "pk": 13731, "fields": {"orig_filename": "Ipavic_Gustav_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414660}}, {"model": "metainfo.source", "pk": 13732, "fields": {"orig_filename": "Ipavic_Josip_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414661}}, {"model": "metainfo.source", "pk": 13733, "fields": {"orig_filename": "Ipold_Rudolf_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414662}}, {"model": "metainfo.source", "pk": 13734, "fields": {"orig_filename": "Ippen_Josef-A_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414663}}, {"model": "metainfo.source", "pk": 13735, "fields": {"orig_filename": "Ippen_Theodor_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40f.", "author": "", "orig_id": 1414664}}, {"model": "metainfo.source", "pk": 13736, "fields": {"orig_filename": "Ipsen_Carl_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414665}}, {"model": "metainfo.source", "pk": 13737, "fields": {"orig_filename": "Iranyi_Daniel_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414666}}, {"model": "metainfo.source", "pk": 13738, "fields": {"orig_filename": "Irasky_Jakob_1766_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414667}}, {"model": "metainfo.source", "pk": 13739, "fields": {"orig_filename": "Irinyi_Janos_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41f.", "author": "", "orig_id": 1414668}}, {"model": "metainfo.source", "pk": 13740, "fields": {"orig_filename": "Irinyi_Jozsef_1822_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414669}}, {"model": "metainfo.source", "pk": 13741, "fields": {"orig_filename": "Irmann_Heinrich-Otto_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414670}}, {"model": "metainfo.source", "pk": 13742, "fields": {"orig_filename": "Irmler_Heinrich_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414671}}, {"model": "metainfo.source", "pk": 13743, "fields": {"orig_filename": "Irresberger_Carl-Caspar_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414672}}, {"model": "metainfo.source", "pk": 13744, "fields": {"orig_filename": "Irsay_Arthur_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42f.", "author": "", "orig_id": 1414673}}, {"model": "metainfo.source", "pk": 13745, "fields": {"orig_filename": "Irschik_Magda_1841_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414674}}, {"model": "metainfo.source", "pk": 13746, "fields": {"orig_filename": "Isbary_Rudolf-Friedrich-Ernst_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414675}}, {"model": "metainfo.source", "pk": 13747, "fields": {"orig_filename": "Isenflamm_Carl_1775_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414736}}, {"model": "metainfo.source", "pk": 13748, "fields": {"orig_filename": "Isfordink-Kostnitz_Johann-Nep_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43f.", "author": "", "orig_id": 1414737}}, {"model": "metainfo.source", "pk": 13749, "fields": {"orig_filename": "Iska_Franz_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414738}}, {"model": "metainfo.source", "pk": 13750, "fields": {"orig_filename": "Iskierski_Julius_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414739}}, {"model": "metainfo.source", "pk": 13751, "fields": {"orig_filename": "Israel_Daniel_1859_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414740}}, {"model": "metainfo.source", "pk": 13752, "fields": {"orig_filename": "Issaakowicz_Isaak_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44f.", "author": "", "orig_id": 1414741}}, {"model": "metainfo.source", "pk": 13753, "fields": {"orig_filename": "Isser-Gaudententhurn_Johanna_1802_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414742}}, {"model": "metainfo.source", "pk": 13754, "fields": {"orig_filename": "Isser-Gaudententhurn_Max_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414743}}, {"model": "metainfo.source", "pk": 13755, "fields": {"orig_filename": "Issler_Richard_1842_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45f.", "author": "", "orig_id": 1414745}}, {"model": "metainfo.source", "pk": 13756, "fields": {"orig_filename": "Istoczy_Geza_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414746}}, {"model": "metainfo.source", "pk": 13757, "fields": {"orig_filename": "Istvanffi-Csikmadefalva_Gyula_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414747}}, {"model": "metainfo.source", "pk": 13758, "fields": {"orig_filename": "Itzinger_Karl_1888_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414748}}, {"model": "metainfo.source", "pk": 13759, "fields": {"orig_filename": "Ivakic_Joza_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46f.", "author": "", "orig_id": 1414749}}, {"model": "metainfo.source", "pk": 13760, "fields": {"orig_filename": "Ivancan_Ljudevit_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414750}}, {"model": "metainfo.source", "pk": 13761, "fields": {"orig_filename": "Ivanisevic_Frano_1863_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414751}}, {"model": "metainfo.source", "pk": 13762, "fields": {"orig_filename": "Ivanka_Imre_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414752}}, {"model": "metainfo.source", "pk": 13763, "fields": {"orig_filename": "Ivanovic_Katarina_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47f.", "author": "", "orig_id": 1414753}}, {"model": "metainfo.source", "pk": 13764, "fields": {"orig_filename": "Ivanyi_Oedoen_1854_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414754}}, {"model": "metainfo.source", "pk": 13765, "fields": {"orig_filename": "Ivcic_Simon_1759_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414755}}, {"model": "metainfo.source", "pk": 13766, "fields": {"orig_filename": "Ivekovic_Ciril-M_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414756}}, {"model": "metainfo.source", "pk": 13767, "fields": {"orig_filename": "Ivekovic_Oton_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414821}}, {"model": "metainfo.source", "pk": 13768, "fields": {"orig_filename": "Ivicevic_Stjepan_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414823}}, {"model": "metainfo.source", "pk": 13769, "fields": {"orig_filename": "Ivic_Aleksa_1881_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414822}}, {"model": "metainfo.source", "pk": 13770, "fields": {"orig_filename": "Ivkanec_Tomislav_1844_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49f.", "author": "", "orig_id": 1414824}}, {"model": "metainfo.source", "pk": 13771, "fields": {"orig_filename": "Izso_Miklos_1831_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50", "author": "", "orig_id": 1414825}}, {"model": "metainfo.source", "pk": 13772, "fields": {"orig_filename": "Jablanczy_Julius_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50", "author": "", "orig_id": 1414826}}, {"model": "metainfo.source", "pk": 13773, "fields": {"orig_filename": "Jablonowski_Karl_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50f.", "author": "", "orig_id": 1414827}}, {"model": "metainfo.source", "pk": 13774, "fields": {"orig_filename": "Jabornegg-Altenfels_Michael-Franz_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51", "author": "", "orig_id": 1414828}}, {"model": "metainfo.source", "pk": 13775, "fields": {"orig_filename": "Jabornegg-Gamsenegg-Moderndorf_Markus_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51", "author": "", "orig_id": 1414829}}, {"model": "metainfo.source", "pk": 13776, "fields": {"orig_filename": "Jachimowicz_Theodor_1800_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51f.", "author": "", "orig_id": 1414830}}, {"model": "metainfo.source", "pk": 13777, "fields": {"orig_filename": "Jacob_Josef_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52", "author": "", "orig_id": 1414831}}, {"model": "metainfo.source", "pk": 13778, "fields": {"orig_filename": "Jacquin_Joseph-Franz_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52", "author": "", "orig_id": 1414832}}, {"model": "metainfo.source", "pk": 13779, "fields": {"orig_filename": "Jacquin_Nicolaus-Joseph_1727_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52f.", "author": "", "orig_id": 1414833}}, {"model": "metainfo.source", "pk": 13780, "fields": {"orig_filename": "Jaeckel_Josef_1778_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53", "author": "", "orig_id": 1414834}}, {"model": "metainfo.source", "pk": 13781, "fields": {"orig_filename": "Jaeger-Jaxthal_Eduard_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57f.", "author": "", "orig_id": 1414911}}, {"model": "metainfo.source", "pk": 13782, "fields": {"orig_filename": "Jaeger-Jaxthal_Friedrich_1784_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 58", "author": "", "orig_id": 1414912}}, {"model": "metainfo.source", "pk": 13783, "fields": {"orig_filename": "Jaeger_Adolf_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53", "author": "", "orig_id": 1414835}}, {"model": "metainfo.source", "pk": 13784, "fields": {"orig_filename": "Jaeger_Albert_1801_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53f.", "author": "", "orig_id": 1414836}}, {"model": "metainfo.source", "pk": 13785, "fields": {"orig_filename": "Jaeger_Alderich_1746_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54", "author": "", "orig_id": 1414837}}, {"model": "metainfo.source", "pk": 13786, "fields": {"orig_filename": "Jaeger_Anna_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54", "author": "", "orig_id": 1414838}}, {"model": "metainfo.source", "pk": 13787, "fields": {"orig_filename": "Jaeger_Ferdinand_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54f.", "author": "", "orig_id": 1414839}}, {"model": "metainfo.source", "pk": 13788, "fields": {"orig_filename": "Jaeger_Franz_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414840}}, {"model": "metainfo.source", "pk": 13789, "fields": {"orig_filename": "Jaeger_Franz_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414841}}, {"model": "metainfo.source", "pk": 13790, "fields": {"orig_filename": "Jaeger_Gustav-Maria_1835_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 56", "author": "", "orig_id": 1414906}}, {"model": "metainfo.source", "pk": 13791, "fields": {"orig_filename": "Jaeger_Gustav_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414904}}, {"model": "metainfo.source", "pk": 13792, "fields": {"orig_filename": "Jaeger_Gustav_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55f.", "author": "", "orig_id": 1414905}}, {"model": "metainfo.source", "pk": 13793, "fields": {"orig_filename": "Jaeger_Karl_1836_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 56f.", "author": "", "orig_id": 1414907}}, {"model": "metainfo.source", "pk": 13794, "fields": {"orig_filename": "Jaeger_Matthias_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414908}}, {"model": "metainfo.source", "pk": 13795, "fields": {"orig_filename": "Jaeger_Robert_1890_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414909}}, {"model": "metainfo.source", "pk": 13796, "fields": {"orig_filename": "Jaeger_Vital_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414910}}, {"model": "metainfo.source", "pk": 13797, "fields": {"orig_filename": "Jaekel_Franz-Josef_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 58f.", "author": "", "orig_id": 1414913}}, {"model": "metainfo.source", "pk": 13798, "fields": {"orig_filename": "Jaell_Alfred_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414914}}, {"model": "metainfo.source", "pk": 13799, "fields": {"orig_filename": "Jaffe_Max_1845_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414915}}, {"model": "metainfo.source", "pk": 13800, "fields": {"orig_filename": "Jagemann_Carl_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2179610}}, {"model": "metainfo.source", "pk": 13801, "fields": {"orig_filename": "Jager_Francis_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414916}}, {"model": "metainfo.source", "pk": 13802, "fields": {"orig_filename": "Jagic_Vatroslav_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59f.", "author": "", "orig_id": 1414917}}, {"model": "metainfo.source", "pk": 13803, "fields": {"orig_filename": "Jahne_Ludwig_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62f.", "author": "", "orig_id": 1414925}}, {"model": "metainfo.source", "pk": 13804, "fields": {"orig_filename": "Jahn_Alois_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 60", "author": "", "orig_id": 1414918}}, {"model": "metainfo.source", "pk": 13805, "fields": {"orig_filename": "Jahn_Gustav_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 60f.", "author": "", "orig_id": 1414919}}, {"model": "metainfo.source", "pk": 13806, "fields": {"orig_filename": "Jahn_Gustav_1879_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 61", "author": "", "orig_id": 1414920}}, {"model": "metainfo.source", "pk": 13807, "fields": {"orig_filename": "Jahn_Jaroslav-Jilji_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 61f.", "author": "", "orig_id": 1414921}}, {"model": "metainfo.source", "pk": 13808, "fields": {"orig_filename": "Jahn_Jilji-Vratislav_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414922}}, {"model": "metainfo.source", "pk": 13809, "fields": {"orig_filename": "Jahn_Marie_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414923}}, {"model": "metainfo.source", "pk": 13810, "fields": {"orig_filename": "Jahn_Wilhelm_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414924}}, {"model": "metainfo.source", "pk": 13811, "fields": {"orig_filename": "Jakesch_Alexander_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414927}}, {"model": "metainfo.source", "pk": 13812, "fields": {"orig_filename": "Jakesch_Heinrich_1867_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414990}}, {"model": "metainfo.source", "pk": 13813, "fields": {"orig_filename": "Jakitsch_Richard_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414991}}, {"model": "metainfo.source", "pk": 13814, "fields": {"orig_filename": "Jakob-Herminenthal_Wilhelm_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64", "author": "", "orig_id": 1414993}}, {"model": "metainfo.source", "pk": 13815, "fields": {"orig_filename": "Jakobey_Karoly_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64", "author": "", "orig_id": 1414994}}, {"model": "metainfo.source", "pk": 13816, "fields": {"orig_filename": "Jakopic_Richard_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64f.", "author": "", "orig_id": 1414995}}, {"model": "metainfo.source", "pk": 13817, "fields": {"orig_filename": "Jaksch-Wartenhorst_Anton_1810_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65f.", "author": "", "orig_id": 1414999}}, {"model": "metainfo.source", "pk": 13818, "fields": {"orig_filename": "Jaksch-Wartenhorst_August_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66", "author": "", "orig_id": 1415000}}, {"model": "metainfo.source", "pk": 13819, "fields": {"orig_filename": "Jaksch-Wartenhorst_Rudolf_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66", "author": "", "orig_id": 1415001}}, {"model": "metainfo.source", "pk": 13820, "fields": {"orig_filename": "Hummelauer_Franz_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415603}}, {"model": "metainfo.source", "pk": 13821, "fields": {"orig_filename": "Hummel_Carl_1769_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8f.", "author": "", "orig_id": 1415596}}, {"model": "metainfo.source", "pk": 13822, "fields": {"orig_filename": "Hummel_Christian_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9", "author": "", "orig_id": 1415597}}, {"model": "metainfo.source", "pk": 13823, "fields": {"orig_filename": "Hummel_Johann-Ludwig_1754_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9", "author": "", "orig_id": 1415598}}, {"model": "metainfo.source", "pk": 13824, "fields": {"orig_filename": "Hummel_Johann-Nep_1778_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9f.", "author": "", "orig_id": 1415599}}, {"model": "metainfo.source", "pk": 13825, "fields": {"orig_filename": "Hummel_Joseph-Friedrich_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415600}}, {"model": "metainfo.source", "pk": 13826, "fields": {"orig_filename": "Hummel_Karl_1801_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415601}}, {"model": "metainfo.source", "pk": 13827, "fields": {"orig_filename": "Hummel_Luise_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415602}}, {"model": "metainfo.source", "pk": 13828, "fields": {"orig_filename": "Hummer_Andre_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10f.", "author": "", "orig_id": 1415604}}, {"model": "metainfo.source", "pk": 13829, "fields": {"orig_filename": "Hunanian_Leontius_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415673}}, {"model": "metainfo.source", "pk": 13830, "fields": {"orig_filename": "Huna_Ludwig_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415672}}, {"model": "metainfo.source", "pk": 13831, "fields": {"orig_filename": "Hundertpfund_Liberat_1806_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415674}}, {"model": "metainfo.source", "pk": 13832, "fields": {"orig_filename": "Hunfalvy_Johann_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11f.", "author": "", "orig_id": 1415675}}, {"model": "metainfo.source", "pk": 13833, "fields": {"orig_filename": "Hunfalvy_Paul_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415676}}, {"model": "metainfo.source", "pk": 13834, "fields": {"orig_filename": "Hunglinger_Andreas-Magnus_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415677}}, {"model": "metainfo.source", "pk": 13835, "fields": {"orig_filename": "Hunold_Balthasar_1828_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415678}}, {"model": "metainfo.source", "pk": 13836, "fields": {"orig_filename": "Hupfauf_Johann-Peregrin_1856_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12f.", "author": "", "orig_id": 1415679}}, {"model": "metainfo.source", "pk": 13837, "fields": {"orig_filename": "Hupfer_Karl_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13", "author": "", "orig_id": 1415680}}, {"model": "metainfo.source", "pk": 13838, "fields": {"orig_filename": "Hupka_Joseph_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13", "author": "", "orig_id": 1415681}}, {"model": "metainfo.source", "pk": 13839, "fields": {"orig_filename": "Huppert_Karl-Hugo_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13f.", "author": "", "orig_id": 1415682}}, {"model": "metainfo.source", "pk": 13840, "fields": {"orig_filename": "Hurdalek_Josef-Franz_1746_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14", "author": "", "orig_id": 1415683}}, {"model": "metainfo.source", "pk": 13841, "fields": {"orig_filename": "Hurter-Ammann_Franz_1824_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14f.", "author": "", "orig_id": 1415685}}, {"model": "metainfo.source", "pk": 13842, "fields": {"orig_filename": "Hurter-Ammann_Friedrich-Emanuel_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14", "author": "", "orig_id": 1415684}}, {"model": "metainfo.source", "pk": 13843, "fields": {"orig_filename": "Hurter-Ammann_Heinrich_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15", "author": "", "orig_id": 1415686}}, {"model": "metainfo.source", "pk": 13844, "fields": {"orig_filename": "Hurter-Ammann_Hugo_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15", "author": "", "orig_id": 1415687}}, {"model": "metainfo.source", "pk": 13845, "fields": {"orig_filename": "Husnik_Jakob_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15f.", "author": "", "orig_id": 1415688}}, {"model": "metainfo.source", "pk": 13846, "fields": {"orig_filename": "Hussak_Eugen_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16", "author": "", "orig_id": 1415690}}, {"model": "metainfo.source", "pk": 13847, "fields": {"orig_filename": "Hussarek-Heinlein_Max_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16f.", "author": "", "orig_id": 1415691}}, {"model": "metainfo.source", "pk": 13848, "fields": {"orig_filename": "Husserl_Edmund_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 17f.", "author": "", "orig_id": 1415692}}, {"model": "metainfo.source", "pk": 13849, "fields": {"orig_filename": "Hussian_Raphael-Ferdinand_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415693}}, {"model": "metainfo.source", "pk": 13850, "fields": {"orig_filename": "Huss_Karl_1761_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16", "author": "", "orig_id": 1415689}}, {"model": "metainfo.source", "pk": 13851, "fields": {"orig_filename": "Huter_Andreas_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415695}}, {"model": "metainfo.source", "pk": 13852, "fields": {"orig_filename": "Huter_Josef-Franz_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415696}}, {"model": "metainfo.source", "pk": 13853, "fields": {"orig_filename": "Huter_Josef_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415694}}, {"model": "metainfo.source", "pk": 13854, "fields": {"orig_filename": "Huter_Rupert_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415697}}, {"model": "metainfo.source", "pk": 13855, "fields": {"orig_filename": "Hutschenreiter_Viktor-Max_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415763}}, {"model": "metainfo.source", "pk": 13856, "fields": {"orig_filename": "Huttary_Josef_1842_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415764}}, {"model": "metainfo.source", "pk": 13857, "fields": {"orig_filename": "Hutterer_Johann_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415767}}, {"model": "metainfo.source", "pk": 13858, "fields": {"orig_filename": "Hutterstrasser-Scheidl_Lili_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415769}}, {"model": "metainfo.source", "pk": 13859, "fields": {"orig_filename": "Hutterstrasser_Carl_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415768}}, {"model": "metainfo.source", "pk": 13860, "fields": {"orig_filename": "Hutter_Josef_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415765}}, {"model": "metainfo.source", "pk": 13861, "fields": {"orig_filename": "Hutter_Theodor_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19f.", "author": "", "orig_id": 1415766}}, {"model": "metainfo.source", "pk": 13862, "fields": {"orig_filename": "Huwyler_Hugo_1878_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415770}}, {"model": "metainfo.source", "pk": 13863, "fields": {"orig_filename": "Huyer_Reinhold_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20f.", "author": "", "orig_id": 1415771}}, {"model": "metainfo.source", "pk": 13864, "fields": {"orig_filename": "Huyn_Johann-Karl_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415772}}, {"model": "metainfo.source", "pk": 13865, "fields": {"orig_filename": "Huyn_Karl-Georg_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415773}}, {"model": "metainfo.source", "pk": 13866, "fields": {"orig_filename": "Huyn_Paul_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415774}}, {"model": "metainfo.source", "pk": 13867, "fields": {"orig_filename": "Hyam_Johann_1733_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21f.", "author": "", "orig_id": 1415775}}, {"model": "metainfo.source", "pk": 13868, "fields": {"orig_filename": "Hybes_Josef_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2173843}}, {"model": "metainfo.source", "pk": 13869, "fields": {"orig_filename": "Hybler_Wenzel_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22", "author": "", "orig_id": 1415776}}, {"model": "metainfo.source", "pk": 13870, "fields": {"orig_filename": "Hye-Glunek_Anton-Josef_1807_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22", "author": "", "orig_id": 1415777}}, {"model": "metainfo.source", "pk": 13871, "fields": {"orig_filename": "Hynais_Vojtech_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22f.", "author": "", "orig_id": 1415778}}, {"model": "metainfo.source", "pk": 13872, "fields": {"orig_filename": "Hyrtl_Auguste_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23", "author": "", "orig_id": 1415779}}, {"model": "metainfo.source", "pk": 13873, "fields": {"orig_filename": "Hyrtl_Jakob_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23", "author": "", "orig_id": 1415780}}, {"model": "metainfo.source", "pk": 13874, "fields": {"orig_filename": "Hyrtl_Josef_1810_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23f.", "author": "", "orig_id": 1415781}}, {"model": "metainfo.source", "pk": 13875, "fields": {"orig_filename": "Hysel_Franz-Eduard_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 24f.", "author": "", "orig_id": 1415782}}, {"model": "metainfo.source", "pk": 13876, "fields": {"orig_filename": "Ibach_Alfred_1902_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415783}}, {"model": "metainfo.source", "pk": 13877, "fields": {"orig_filename": "Ibler_Janko_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415785}}, {"model": "metainfo.source", "pk": 13878, "fields": {"orig_filename": "Ibl_Franz_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415784}}, {"model": "metainfo.source", "pk": 13879, "fields": {"orig_filename": "Ichhaeuser_Josef_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25f.", "author": "", "orig_id": 1415786}}, {"model": "metainfo.source", "pk": 13880, "fields": {"orig_filename": "Iellico_Giuseppe_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1415787}}, {"model": "metainfo.source", "pk": 13881, "fields": {"orig_filename": "Igel_Benzion_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1414467}}, {"model": "metainfo.source", "pk": 13882, "fields": {"orig_filename": "Igler_Gustav_1842_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1414468}}, {"model": "metainfo.source", "pk": 13883, "fields": {"orig_filename": "Ignjatovic_Jakov_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26f.", "author": "", "orig_id": 1414469}}, {"model": "metainfo.source", "pk": 13884, "fields": {"orig_filename": "Ihasz_Daniel_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414470}}, {"model": "metainfo.source", "pk": 13885, "fields": {"orig_filename": "Ilesic_Fran_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414471}}, {"model": "metainfo.source", "pk": 13886, "fields": {"orig_filename": "Ilg_Albert_1847_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414472}}, {"model": "metainfo.source", "pk": 13887, "fields": {"orig_filename": "Ilg_Johann-Georg_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27f.", "author": "", "orig_id": 1414473}}, {"model": "metainfo.source", "pk": 13888, "fields": {"orig_filename": "Ilic-Oriovcanin_Luka_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414474}}, {"model": "metainfo.source", "pk": 13889, "fields": {"orig_filename": "Ilijasevic_Stjepan_1814_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414475}}, {"model": "metainfo.source", "pk": 13890, "fields": {"orig_filename": "Ilijic_Stjepko_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414476}}, {"model": "metainfo.source", "pk": 13891, "fields": {"orig_filename": "Illem_Franz-Josef-Georg_1865_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414477}}, {"model": "metainfo.source", "pk": 13892, "fields": {"orig_filename": "Illing_Vilma_1871_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28f.", "author": "", "orig_id": 1414478}}, {"model": "metainfo.source", "pk": 13893, "fields": {"orig_filename": "Illitsch_Alexander_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414479}}, {"model": "metainfo.source", "pk": 13894, "fields": {"orig_filename": "Illmer_Hans_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414482}}, {"model": "metainfo.source", "pk": 13895, "fields": {"orig_filename": "Illner_Karl_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414483}}, {"model": "metainfo.source", "pk": 13896, "fields": {"orig_filename": "Ilmer_Andreas_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414480}}, {"model": "metainfo.source", "pk": 13897, "fields": {"orig_filename": "Ilosvay-Nagy-Ilosva_Lajos_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29f.", "author": "", "orig_id": 1414484}}, {"model": "metainfo.source", "pk": 13898, "fields": {"orig_filename": "Ilwof_Franz_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30", "author": "", "orig_id": 1414485}}, {"model": "metainfo.source", "pk": 13899, "fields": {"orig_filename": "Imendoerffer_Benno_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30", "author": "", "orig_id": 1414486}}, {"model": "metainfo.source", "pk": 13900, "fields": {"orig_filename": "Imre_Sandor_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30f.", "author": "", "orig_id": 1414487}}, {"model": "metainfo.source", "pk": 13901, "fields": {"orig_filename": "Inama-Sternegg_Fanny_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414490}}, {"model": "metainfo.source", "pk": 13902, "fields": {"orig_filename": "Inama-Sternegg_Johann-Paul_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 32", "author": "", "orig_id": 1414562}}, {"model": "metainfo.source", "pk": 13903, "fields": {"orig_filename": "Inama-Sternegg_Karl-Theodor_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414564}}, {"model": "metainfo.source", "pk": 13904, "fields": {"orig_filename": "Inama-Sternegg_Karl_1871_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 32", "author": "", "orig_id": 1414563}}, {"model": "metainfo.source", "pk": 13905, "fields": {"orig_filename": "Inama_Adalbert_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414488}}, {"model": "metainfo.source", "pk": 13906, "fields": {"orig_filename": "Inama_Vigilio_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414489}}, {"model": "metainfo.source", "pk": 13907, "fields": {"orig_filename": "Inauen_Andreas_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 33", "author": "", "orig_id": 1414565}}, {"model": "metainfo.source", "pk": 13908, "fields": {"orig_filename": "Indra_Alois_1849_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 33f.", "author": "", "orig_id": 1414566}}, {"model": "metainfo.source", "pk": 13909, "fields": {"orig_filename": "Inffeld_Adolf_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414567}}, {"model": "metainfo.source", "pk": 13910, "fields": {"orig_filename": "Ingarden_Roman_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414568}}, {"model": "metainfo.source", "pk": 13911, "fields": {"orig_filename": "Ingerle_Rudolf-F_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414569}}, {"model": "metainfo.source", "pk": 13912, "fields": {"orig_filename": "Inghirami_Giovanni_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34f.", "author": "", "orig_id": 1414570}}, {"model": "metainfo.source", "pk": 13913, "fields": {"orig_filename": "Ingigian_Lukas_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414571}}, {"model": "metainfo.source", "pk": 13914, "fields": {"orig_filename": "Ingwer_Isidor_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414572}}, {"model": "metainfo.source", "pk": 13915, "fields": {"orig_filename": "Inlaender_Ludwig_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414573}}, {"model": "metainfo.source", "pk": 13916, "fields": {"orig_filename": "Innerhofer_Franz_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414574}}, {"model": "metainfo.source", "pk": 13917, "fields": {"orig_filename": "Innerhofer_Franz_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414576}}, {"model": "metainfo.source", "pk": 13918, "fields": {"orig_filename": "Innerhofer_Franz_1884_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414575}}, {"model": "metainfo.source", "pk": 13919, "fields": {"orig_filename": "Innerhofer_Johann_1837_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414577}}, {"model": "metainfo.source", "pk": 13920, "fields": {"orig_filename": "Innerkofler_Adolf_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414578}}, {"model": "metainfo.source", "pk": 13921, "fields": {"orig_filename": "Innerkofler_Christian_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414579}}, {"model": "metainfo.source", "pk": 13922, "fields": {"orig_filename": "Innerkofler_Franz_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414580}}, {"model": "metainfo.source", "pk": 13923, "fields": {"orig_filename": "Innerkofler_Johann-Jakob_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414581}}, {"model": "metainfo.source", "pk": 13924, "fields": {"orig_filename": "Horvat_Rudolf_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417397}}, {"model": "metainfo.source", "pk": 13925, "fields": {"orig_filename": "Horvat_Stephan_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417398}}, {"model": "metainfo.source", "pk": 13926, "fields": {"orig_filename": "Horwitz_Karl_1884_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431f.", "author": "", "orig_id": 1417407}}, {"model": "metainfo.source", "pk": 13927, "fields": {"orig_filename": "Horwitz_Willibald_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417409}}, {"model": "metainfo.source", "pk": 13928, "fields": {"orig_filename": "Horzalka_Johann_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417410}}, {"model": "metainfo.source", "pk": 13929, "fields": {"orig_filename": "Horzeyschy_Kaethe_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417411}}, {"model": "metainfo.source", "pk": 13930, "fields": {"orig_filename": "Hoschek_Fritz_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417482}}, {"model": "metainfo.source", "pk": 13931, "fields": {"orig_filename": "Hoschna_Karl_1876_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417484}}, {"model": "metainfo.source", "pk": 13932, "fields": {"orig_filename": "Hoser_Josef-Karl-Eduard_1770_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432f.", "author": "", "orig_id": 1417485}}, {"model": "metainfo.source", "pk": 13933, "fields": {"orig_filename": "Hossinger_Julius_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433", "author": "", "orig_id": 1417486}}, {"model": "metainfo.source", "pk": 13934, "fields": {"orig_filename": "Hossner_Josef_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433", "author": "", "orig_id": 1417487}}, {"model": "metainfo.source", "pk": 13935, "fields": {"orig_filename": "Hostasch_Josef_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417489}}, {"model": "metainfo.source", "pk": 13936, "fields": {"orig_filename": "Hostinsky_Otakar_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417491}}, {"model": "metainfo.source", "pk": 13937, "fields": {"orig_filename": "Host_Nicolaus-Thomas_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433f.", "author": "", "orig_id": 1417488}}, {"model": "metainfo.source", "pk": 13938, "fields": {"orig_filename": "Hotze_Friedrich_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417492}}, {"model": "metainfo.source", "pk": 13939, "fields": {"orig_filename": "Houdek_Vitezslav_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434f.", "author": "", "orig_id": 1417493}}, {"model": "metainfo.source", "pk": 13940, "fields": {"orig_filename": "Hovorka-Zderas_Oskar_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417495}}, {"model": "metainfo.source", "pk": 13941, "fields": {"orig_filename": "Hoyos-Sprinzenstein_Johann-Ernst_1779_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417497}}, {"model": "metainfo.source", "pk": 13942, "fields": {"orig_filename": "Hoyos-Sprinzenstein_Rudolf_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417498}}, {"model": "metainfo.source", "pk": 13943, "fields": {"orig_filename": "Hoyos_Alexander_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417496}}, {"model": "metainfo.source", "pk": 13944, "fields": {"orig_filename": "Hozhevar_Johann_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417499}}, {"model": "metainfo.source", "pk": 13945, "fields": {"orig_filename": "Hrabak_Josef_1833_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435f.", "author": "", "orig_id": 1417500}}, {"model": "metainfo.source", "pk": 13946, "fields": {"orig_filename": "Hrabovsky-Hrabova_Johann_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417501}}, {"model": "metainfo.source", "pk": 13947, "fields": {"orig_filename": "Hrachowina_Karl_1845_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417503}}, {"model": "metainfo.source", "pk": 13948, "fields": {"orig_filename": "Hrach_Ferdinand_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417502}}, {"model": "metainfo.source", "pk": 13949, "fields": {"orig_filename": "Hradeczky_Hermann_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436f.", "author": "", "orig_id": 1417504}}, {"model": "metainfo.source", "pk": 13950, "fields": {"orig_filename": "Hradeczky_Johann-Nep_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417575}}, {"model": "metainfo.source", "pk": 13951, "fields": {"orig_filename": "Hranilovic-Cvetasin_Hinko_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417577}}, {"model": "metainfo.source", "pk": 13952, "fields": {"orig_filename": "Hranilovic_Jovan_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417576}}, {"model": "metainfo.source", "pk": 13953, "fields": {"orig_filename": "Hrdina_Josef-Leopold_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417578}}, {"model": "metainfo.source", "pk": 13954, "fields": {"orig_filename": "Hrdlicka_Ales_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437f.", "author": "", "orig_id": 1417579}}, {"model": "metainfo.source", "pk": 13955, "fields": {"orig_filename": "Hreljanovic_Ivo_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 438", "author": "", "orig_id": 1417580}}, {"model": "metainfo.source", "pk": 13956, "fields": {"orig_filename": "Hren_Jakob_1830_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 438f.", "author": "", "orig_id": 1417581}}, {"model": "metainfo.source", "pk": 13957, "fields": {"orig_filename": "Hribar_Ivan_1851_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417582}}, {"model": "metainfo.source", "pk": 13958, "fields": {"orig_filename": "Hrimaly_Adalbert_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417583}}, {"model": "metainfo.source", "pk": 13959, "fields": {"orig_filename": "Hrncir_Thomas_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417584}}, {"model": "metainfo.source", "pk": 13960, "fields": {"orig_filename": "Hrnczyrz_Emma_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417585}}, {"model": "metainfo.source", "pk": 13961, "fields": {"orig_filename": "Hrodegh_Anton_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439f.", "author": "", "orig_id": 1417586}}, {"model": "metainfo.source", "pk": 13962, "fields": {"orig_filename": "Hromada_Anton_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417587}}, {"model": "metainfo.source", "pk": 13963, "fields": {"orig_filename": "Hromatko_Johann-Nep-Norbert_1783_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417590}}, {"model": "metainfo.source", "pk": 13964, "fields": {"orig_filename": "Hrovat_Ladislav_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440f.", "author": "", "orig_id": 1417592}}, {"model": "metainfo.source", "pk": 13965, "fields": {"orig_filename": "Hruby_Sergius-Josef_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2033381}}, {"model": "metainfo.source", "pk": 13966, "fields": {"orig_filename": "Hruschauer_Franz_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417593}}, {"model": "metainfo.source", "pk": 13967, "fields": {"orig_filename": "Hruschka_Annie_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417594}}, {"model": "metainfo.source", "pk": 13968, "fields": {"orig_filename": "Hruschka_Ella_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417595}}, {"model": "metainfo.source", "pk": 13969, "fields": {"orig_filename": "Hrussoczy_Marie_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417596}}, {"model": "metainfo.source", "pk": 13970, "fields": {"orig_filename": "Hruza_Ernst_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417597}}, {"model": "metainfo.source", "pk": 13971, "fields": {"orig_filename": "Hubad_Franc_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441f.", "author": "", "orig_id": 1417664}}, {"model": "metainfo.source", "pk": 13972, "fields": {"orig_filename": "Hubad_Matej_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417665}}, {"model": "metainfo.source", "pk": 13973, "fields": {"orig_filename": "Hubay_Jenoe_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417666}}, {"model": "metainfo.source", "pk": 13974, "fields": {"orig_filename": "Huber-Penig_Johann_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417680}}, {"model": "metainfo.source", "pk": 13975, "fields": {"orig_filename": "Huber-Penig_Paul_1771_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417681}}, {"model": "metainfo.source", "pk": 13976, "fields": {"orig_filename": "Huberman_Bronislav_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445f.", "author": "", "orig_id": 1417682}}, {"model": "metainfo.source", "pk": 13977, "fields": {"orig_filename": "Hubert_Josef_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417683}}, {"model": "metainfo.source", "pk": 13978, "fields": {"orig_filename": "Huber_Adolf_1874_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417667}}, {"model": "metainfo.source", "pk": 13979, "fields": {"orig_filename": "Huber_Alfons_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442f.", "author": "", "orig_id": 1417668}}, {"model": "metainfo.source", "pk": 13980, "fields": {"orig_filename": "Huber_Antonie_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443", "author": "", "orig_id": 1417670}}, {"model": "metainfo.source", "pk": 13981, "fields": {"orig_filename": "Huber_Anton_1768_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443", "author": "", "orig_id": 1417669}}, {"model": "metainfo.source", "pk": 13982, "fields": {"orig_filename": "Huber_Carl-Rudolf_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443f.", "author": "", "orig_id": 1417671}}, {"model": "metainfo.source", "pk": 13983, "fields": {"orig_filename": "Huber_Christian-Wilhelm_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417672}}, {"model": "metainfo.source", "pk": 13984, "fields": {"orig_filename": "Huber_Josef_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417673}}, {"model": "metainfo.source", "pk": 13985, "fields": {"orig_filename": "Huber_Josef_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417674}}, {"model": "metainfo.source", "pk": 13986, "fields": {"orig_filename": "Huber_Josef_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417675}}, {"model": "metainfo.source", "pk": 13987, "fields": {"orig_filename": "Huber_Leopold_1766_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417676}}, {"model": "metainfo.source", "pk": 13988, "fields": {"orig_filename": "Huber_Maximilian_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417677}}, {"model": "metainfo.source", "pk": 13989, "fields": {"orig_filename": "Huber_Nikolaus_1833_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417678}}, {"model": "metainfo.source", "pk": 13990, "fields": {"orig_filename": "Hudak_Ede-Agost_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417684}}, {"model": "metainfo.source", "pk": 13991, "fields": {"orig_filename": "Hudecek_Antonin_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417686}}, {"model": "metainfo.source", "pk": 13992, "fields": {"orig_filename": "Hudec_Jozef_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417685}}, {"model": "metainfo.source", "pk": 13993, "fields": {"orig_filename": "Hudelist_Josef_1759_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446f.", "author": "", "orig_id": 1417687}}, {"model": "metainfo.source", "pk": 13994, "fields": {"orig_filename": "Hudetz_Josef_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417758}}, {"model": "metainfo.source", "pk": 13995, "fields": {"orig_filename": "Hueber_Anton_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1453704}}, {"model": "metainfo.source", "pk": 13996, "fields": {"orig_filename": "Hueber_Hans_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417759}}, {"model": "metainfo.source", "pk": 13997, "fields": {"orig_filename": "Hueber_Johann-Nep_1802_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1420822}}, {"model": "metainfo.source", "pk": 13998, "fields": {"orig_filename": "Huebler_Franz_1770_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415500}}, {"model": "metainfo.source", "pk": 13999, "fields": {"orig_filename": "Huebl_Albert_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417760}}, {"model": "metainfo.source", "pk": 14000, "fields": {"orig_filename": "Huebl_Arthur_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447f.", "author": "", "orig_id": 1417761}}, {"model": "metainfo.source", "pk": 14001, "fields": {"orig_filename": "Huebl_Harald-Hans_1913_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 448", "author": "", "orig_id": 1417762}}, {"model": "metainfo.source", "pk": 14002, "fields": {"orig_filename": "Huebl_Heinrich_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415499}}, {"model": "metainfo.source", "pk": 14003, "fields": {"orig_filename": "Huebmer_Georg_1755_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415501}}, {"model": "metainfo.source", "pk": 14004, "fields": {"orig_filename": "Huebner_Anastasius_1789_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1f.", "author": "", "orig_id": 1415502}}, {"model": "metainfo.source", "pk": 14005, "fields": {"orig_filename": "Huebner_Josef-Alexander_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415503}}, {"model": "metainfo.source", "pk": 14006, "fields": {"orig_filename": "Huebner_Ludwig_1839_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415504}}, {"model": "metainfo.source", "pk": 14007, "fields": {"orig_filename": "Huebner_Maria_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415505}}, {"model": "metainfo.source", "pk": 14008, "fields": {"orig_filename": "Huebsch_Adolph_1830_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2f.", "author": "", "orig_id": 1415506}}, {"model": "metainfo.source", "pk": 14009, "fields": {"orig_filename": "Huegel_Carl-Alexander_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415507}}, {"model": "metainfo.source", "pk": 14010, "fields": {"orig_filename": "Huegel_Clemens-Wenzel_1792_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415508}}, {"model": "metainfo.source", "pk": 14011, "fields": {"orig_filename": "Huegel_Eduard_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415509}}, {"model": "metainfo.source", "pk": 14012, "fields": {"orig_filename": "Huelgerth_Heribert_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3f.", "author": "", "orig_id": 1415579}}, {"model": "metainfo.source", "pk": 14013, "fields": {"orig_filename": "Huelgerth_Ludwig_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4", "author": "", "orig_id": 1415580}}, {"model": "metainfo.source", "pk": 14014, "fields": {"orig_filename": "Huemer_Georg_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4", "author": "", "orig_id": 1415581}}, {"model": "metainfo.source", "pk": 14015, "fields": {"orig_filename": "Huemer_Hans_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4f.", "author": "", "orig_id": 1415582}}, {"model": "metainfo.source", "pk": 14016, "fields": {"orig_filename": "Huemer_Johann_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5", "author": "", "orig_id": 1415583}}, {"model": "metainfo.source", "pk": 14017, "fields": {"orig_filename": "Huerth_Theobald_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5", "author": "", "orig_id": 1415584}}, {"model": "metainfo.source", "pk": 14018, "fields": {"orig_filename": "Huesing_Georg_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5f.", "author": "", "orig_id": 1415585}}, {"model": "metainfo.source", "pk": 14019, "fields": {"orig_filename": "Hueter_Heinrich_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6", "author": "", "orig_id": 1415586}}, {"model": "metainfo.source", "pk": 14020, "fields": {"orig_filename": "Huettenbrenner_Anselm_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6", "author": "", "orig_id": 1415587}}, {"model": "metainfo.source", "pk": 14021, "fields": {"orig_filename": "Huettenbrenner_Erich_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6f.", "author": "", "orig_id": 1415588}}, {"model": "metainfo.source", "pk": 14022, "fields": {"orig_filename": "Huetter_Elias_1774_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 7", "author": "", "orig_id": 1415589}}, {"model": "metainfo.source", "pk": 14023, "fields": {"orig_filename": "Huetter_Emil_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 7", "author": "", "orig_id": 1415590}}, {"model": "metainfo.source", "pk": 14024, "fields": {"orig_filename": "Hugelmann_Karl_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415591}}, {"model": "metainfo.source", "pk": 14025, "fields": {"orig_filename": "Hula_Anton_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415594}}, {"model": "metainfo.source", "pk": 14026, "fields": {"orig_filename": "Hula_Eduard_1862_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415595}}, {"model": "metainfo.source", "pk": 14027, "fields": {"orig_filename": "Hollitzer_Carl_1831_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417011}}, {"model": "metainfo.source", "pk": 14028, "fields": {"orig_filename": "Hollosy_Justinian_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417015}}, {"model": "metainfo.source", "pk": 14029, "fields": {"orig_filename": "Hollosy_Simon_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417016}}, {"model": "metainfo.source", "pk": 14030, "fields": {"orig_filename": "Hollos_Laszlo_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403f.", "author": "", "orig_id": 1417014}}, {"model": "metainfo.source", "pk": 14031, "fields": {"orig_filename": "Hollo_Barnabas_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417012}}, {"model": "metainfo.source", "pk": 14032, "fields": {"orig_filename": "Hollo_Ludwig_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417013}}, {"model": "metainfo.source", "pk": 14033, "fields": {"orig_filename": "Hollpein_Heinrich_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417017}}, {"model": "metainfo.source", "pk": 14034, "fields": {"orig_filename": "Hollschek_Karl_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417018}}, {"model": "metainfo.source", "pk": 14035, "fields": {"orig_filename": "Holly_Jan_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404f.", "author": "", "orig_id": 1417019}}, {"model": "metainfo.source", "pk": 14036, "fields": {"orig_filename": "Holl_Lukas_1903_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417006}}, {"model": "metainfo.source", "pk": 14037, "fields": {"orig_filename": "Holl_Moritz_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417007}}, {"model": "metainfo.source", "pk": 14038, "fields": {"orig_filename": "Holtei_Luise_1800_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417021}}, {"model": "metainfo.source", "pk": 14039, "fields": {"orig_filename": "Holter_Markus_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417022}}, {"model": "metainfo.source", "pk": 14040, "fields": {"orig_filename": "Holter_Wenzel_1827_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405f.", "author": "", "orig_id": 1417023}}, {"model": "metainfo.source", "pk": 14041, "fields": {"orig_filename": "Holuby_Josef-Ludwig_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406f.", "author": "", "orig_id": 1417027}}, {"model": "metainfo.source", "pk": 14042, "fields": {"orig_filename": "Holub_Emil_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417024}}, {"model": "metainfo.source", "pk": 14043, "fields": {"orig_filename": "Holub_Georg_1861_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417025}}, {"model": "metainfo.source", "pk": 14044, "fields": {"orig_filename": "Holub_Karl_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417026}}, {"model": "metainfo.source", "pk": 14045, "fields": {"orig_filename": "Holy_Josef_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417101}}, {"model": "metainfo.source", "pk": 14046, "fields": {"orig_filename": "Holzapfel_Joseph_1815_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417103}}, {"model": "metainfo.source", "pk": 14047, "fields": {"orig_filename": "Holzapfel_Rudolf-Maria_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407f.", "author": "", "orig_id": 1417104}}, {"model": "metainfo.source", "pk": 14048, "fields": {"orig_filename": "Holzer_Joseph_1824_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408", "author": "", "orig_id": 1417105}}, {"model": "metainfo.source", "pk": 14049, "fields": {"orig_filename": "Holzgethan_Georg_1799_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408", "author": "", "orig_id": 1417106}}, {"model": "metainfo.source", "pk": 14050, "fields": {"orig_filename": "Holzgethan_Ludwig_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408f.", "author": "", "orig_id": 1417107}}, {"model": "metainfo.source", "pk": 14051, "fields": {"orig_filename": "Holzhammer_Josef_1850_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 409", "author": "", "orig_id": 1417108}}, {"model": "metainfo.source", "pk": 14052, "fields": {"orig_filename": "Holzhausen_Adolf_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 409", "author": "", "orig_id": 1417109}}, {"model": "metainfo.source", "pk": 14053, "fields": {"orig_filename": "Holzhausen_Fritz_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1417110}}, {"model": "metainfo.source", "pk": 14054, "fields": {"orig_filename": "Holzinger-Janaburg_Ferdinand_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1417111}}, {"model": "metainfo.source", "pk": 14055, "fields": {"orig_filename": "Holzinger-Weidich_Carl_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410f.", "author": "", "orig_id": 1417112}}, {"model": "metainfo.source", "pk": 14056, "fields": {"orig_filename": "Holzinger_Rudolf_1898_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1420820}}, {"model": "metainfo.source", "pk": 14057, "fields": {"orig_filename": "Holzknecht-Hort_Robert_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417114}}, {"model": "metainfo.source", "pk": 14058, "fields": {"orig_filename": "Holzknecht_Guido_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417113}}, {"model": "metainfo.source", "pk": 14059, "fields": {"orig_filename": "Holzmann_Michael_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417115}}, {"model": "metainfo.source", "pk": 14060, "fields": {"orig_filename": "Holz_Vatroslav_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417102}}, {"model": "metainfo.source", "pk": 14061, "fields": {"orig_filename": "Homann-Herimberg_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411f.", "author": "", "orig_id": 1417116}}, {"model": "metainfo.source", "pk": 14062, "fields": {"orig_filename": "Homberg_Herz_1749_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417117}}, {"model": "metainfo.source", "pk": 14063, "fields": {"orig_filename": "Homma_Hans_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417118}}, {"model": "metainfo.source", "pk": 14064, "fields": {"orig_filename": "Homolatsch_Josef_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417119}}, {"model": "metainfo.source", "pk": 14065, "fields": {"orig_filename": "Homolka_Benno_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412f.", "author": "", "orig_id": 1417120}}, {"model": "metainfo.source", "pk": 14066, "fields": {"orig_filename": "Honauer_Franz_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417121}}, {"model": "metainfo.source", "pk": 14067, "fields": {"orig_filename": "Honeder_Karl_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417122}}, {"model": "metainfo.source", "pk": 14068, "fields": {"orig_filename": "Honigberger_Johann-Martin_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417123}}, {"model": "metainfo.source", "pk": 14069, "fields": {"orig_filename": "Hontschik_Henriette_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413f.", "author": "", "orig_id": 1417124}}, {"model": "metainfo.source", "pk": 14070, "fields": {"orig_filename": "Hoor-Horocz_Karl_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414", "author": "", "orig_id": 1417125}}, {"model": "metainfo.source", "pk": 14071, "fields": {"orig_filename": "Hopfen_Franz_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414", "author": "", "orig_id": 1417196}}, {"model": "metainfo.source", "pk": 14072, "fields": {"orig_filename": "Hopffer_Albert_1854_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414f.", "author": "", "orig_id": 1417197}}, {"model": "metainfo.source", "pk": 14073, "fields": {"orig_filename": "Hopfgartner_Karl_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417198}}, {"model": "metainfo.source", "pk": 14074, "fields": {"orig_filename": "Hopfner_Friedrich_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417199}}, {"model": "metainfo.source", "pk": 14075, "fields": {"orig_filename": "Hopfner_Isidor_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417200}}, {"model": "metainfo.source", "pk": 14076, "fields": {"orig_filename": "Hopfner_Theodor_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415f.", "author": "", "orig_id": 1417201}}, {"model": "metainfo.source", "pk": 14077, "fields": {"orig_filename": "Hoppe_Alfred_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416f.", "author": "", "orig_id": 1417204}}, {"model": "metainfo.source", "pk": 14078, "fields": {"orig_filename": "Hoppe_Paul_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417205}}, {"model": "metainfo.source", "pk": 14079, "fields": {"orig_filename": "Hopp_Franz_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416", "author": "", "orig_id": 1417202}}, {"model": "metainfo.source", "pk": 14080, "fields": {"orig_filename": "Hopp_Friedrich-Ernst_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416", "author": "", "orig_id": 1417203}}, {"model": "metainfo.source", "pk": 14081, "fields": {"orig_filename": "Horak_Eduard_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417207}}, {"model": "metainfo.source", "pk": 14082, "fields": {"orig_filename": "Horak_Johann-Nep_1815_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417208}}, {"model": "metainfo.source", "pk": 14083, "fields": {"orig_filename": "Horak_Wenzel-Emanuel_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417f.", "author": "", "orig_id": 1417209}}, {"model": "metainfo.source", "pk": 14084, "fields": {"orig_filename": "Horanszky_Nandor_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418", "author": "", "orig_id": 1417210}}, {"model": "metainfo.source", "pk": 14085, "fields": {"orig_filename": "Horawitz_Adalbert_1840_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418", "author": "", "orig_id": 1417211}}, {"model": "metainfo.source", "pk": 14086, "fields": {"orig_filename": "Hora_Engelbert_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417206}}, {"model": "metainfo.source", "pk": 14087, "fields": {"orig_filename": "Horbaczewski_Johann_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418f.", "author": "", "orig_id": 1417212}}, {"model": "metainfo.source", "pk": 14088, "fields": {"orig_filename": "Horcicka_Adalbert_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417213}}, {"model": "metainfo.source", "pk": 14089, "fields": {"orig_filename": "Horcicka_Franz_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417214}}, {"model": "metainfo.source", "pk": 14090, "fields": {"orig_filename": "Horky_Josef_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417215}}, {"model": "metainfo.source", "pk": 14091, "fields": {"orig_filename": "Hormayr-Hortenburg_Josef_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419ff.", "author": "", "orig_id": 1417216}}, {"model": "metainfo.source", "pk": 14092, "fields": {"orig_filename": "Hormuzaki_Constantin_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417217}}, {"model": "metainfo.source", "pk": 14093, "fields": {"orig_filename": "Hormuzaki_Eudoxius_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417289}}, {"model": "metainfo.source", "pk": 14094, "fields": {"orig_filename": "Hornbostel_August-Gottlieb_1786_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422", "author": "", "orig_id": 1417293}}, {"model": "metainfo.source", "pk": 14095, "fields": {"orig_filename": "Hornbostel_Carl_1825_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422f.", "author": "", "orig_id": 1417294}}, {"model": "metainfo.source", "pk": 14096, "fields": {"orig_filename": "Hornbostel_Christian-Georg_1778_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417295}}, {"model": "metainfo.source", "pk": 14097, "fields": {"orig_filename": "Hornbostel_Erich_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417296}}, {"model": "metainfo.source", "pk": 14098, "fields": {"orig_filename": "Hornbostel_Helene_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417297}}, {"model": "metainfo.source", "pk": 14099, "fields": {"orig_filename": "Hornbostel_Theodor-Friedrich_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423f.", "author": "", "orig_id": 1417298}}, {"model": "metainfo.source", "pk": 14100, "fields": {"orig_filename": "Horner_Johann_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417299}}, {"model": "metainfo.source", "pk": 14101, "fields": {"orig_filename": "Hornich_Karl_1852_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417300}}, {"model": "metainfo.source", "pk": 14102, "fields": {"orig_filename": "Hornich_Rudolf_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417301}}, {"model": "metainfo.source", "pk": 14103, "fields": {"orig_filename": "Hornig_Johann_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424f.", "author": "", "orig_id": 1417302}}, {"model": "metainfo.source", "pk": 14104, "fields": {"orig_filename": "Hornischer_Fanni_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417303}}, {"model": "metainfo.source", "pk": 14105, "fields": {"orig_filename": "Hornoeck_Franz-Xaver_1751_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417304}}, {"model": "metainfo.source", "pk": 14106, "fields": {"orig_filename": "Hornstein_Karl_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417305}}, {"model": "metainfo.source", "pk": 14107, "fields": {"orig_filename": "Horn_Johann-Philipp_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417290}}, {"model": "metainfo.source", "pk": 14108, "fields": {"orig_filename": "Horn_Kamillo_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421f.", "author": "", "orig_id": 1417291}}, {"model": "metainfo.source", "pk": 14109, "fields": {"orig_filename": "Horn_Uffo-Daniel_1817_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422", "author": "", "orig_id": 1417292}}, {"model": "metainfo.source", "pk": 14110, "fields": {"orig_filename": "Horowitz_Lazar_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425f.", "author": "", "orig_id": 1417306}}, {"model": "metainfo.source", "pk": 14111, "fields": {"orig_filename": "Horowitz_Leopold_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417307}}, {"model": "metainfo.source", "pk": 14112, "fields": {"orig_filename": "Horowitz_Samuel_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417308}}, {"model": "metainfo.source", "pk": 14113, "fields": {"orig_filename": "Horschelt_Friedrich_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417309}}, {"model": "metainfo.source", "pk": 14114, "fields": {"orig_filename": "Horschinek_Anton_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426f.", "author": "", "orig_id": 1417310}}, {"model": "metainfo.source", "pk": 14115, "fields": {"orig_filename": "Horsetzky-Hornthal_Adolf_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 427", "author": "", "orig_id": 1417311}}, {"model": "metainfo.source", "pk": 14116, "fields": {"orig_filename": "Horsetzky-Hornthal_Ernst_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 427f.", "author": "", "orig_id": 1417312}}, {"model": "metainfo.source", "pk": 14117, "fields": {"orig_filename": "Horsetzky-Hornthal_Karl_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428", "author": "", "orig_id": 1417313}}, {"model": "metainfo.source", "pk": 14118, "fields": {"orig_filename": "Horsetzky-Hornthal_Melanie_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428", "author": "", "orig_id": 1417314}}, {"model": "metainfo.source", "pk": 14119, "fields": {"orig_filename": "Horsky-Horskysfeld_Franz_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428f.", "author": "", "orig_id": 1417389}}, {"model": "metainfo.source", "pk": 14120, "fields": {"orig_filename": "Horst_Franz_1862_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417391}}, {"model": "metainfo.source", "pk": 14121, "fields": {"orig_filename": "Horst_Julius_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417393}}, {"model": "metainfo.source", "pk": 14122, "fields": {"orig_filename": "Hortis_Attilio_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417394}}, {"model": "metainfo.source", "pk": 14123, "fields": {"orig_filename": "Horvat-Gottlieb_Anka_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417399}}, {"model": "metainfo.source", "pk": 14124, "fields": {"orig_filename": "Horvath_Cyrill_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417401}}, {"model": "metainfo.source", "pk": 14125, "fields": {"orig_filename": "Horvath_Geza_1847_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430f.", "author": "", "orig_id": 1417402}}, {"model": "metainfo.source", "pk": 14126, "fields": {"orig_filename": "Horvath_Michael_1809_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431", "author": "", "orig_id": 1417405}}, {"model": "metainfo.source", "pk": 14127, "fields": {"orig_filename": "Horvath_Oedoen_1901_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431", "author": "", "orig_id": 1417406}}, {"model": "metainfo.source", "pk": 14128, "fields": {"orig_filename": "Horvat_Franjo_1876_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417395}}, {"model": "metainfo.source", "pk": 14129, "fields": {"orig_filename": "Horvat_Karlo_1874_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429f.", "author": "", "orig_id": 1417396}}, {"model": "metainfo.source", "pk": 14130, "fields": {"orig_filename": "Hofbauer_Ferdinand_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418100}}, {"model": "metainfo.source", "pk": 14131, "fields": {"orig_filename": "Hofbauer_Josef_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418101}}, {"model": "metainfo.source", "pk": 14132, "fields": {"orig_filename": "Hofbauer_Josef_1886_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418102}}, {"model": "metainfo.source", "pk": 14133, "fields": {"orig_filename": "Hofbauer_Karl_1829_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418103}}, {"model": "metainfo.source", "pk": 14134, "fields": {"orig_filename": "Hofbauer_Klemens-Maria_1751_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371f.", "author": "", "orig_id": 1418104}}, {"model": "metainfo.source", "pk": 14135, "fields": {"orig_filename": "Hofbauer_Louis_1889_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372", "author": "", "orig_id": 1418105}}, {"model": "metainfo.source", "pk": 14136, "fields": {"orig_filename": "Hofbauer_Ludwig_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372", "author": "", "orig_id": 1418106}}, {"model": "metainfo.source", "pk": 14137, "fields": {"orig_filename": "Hofer_Franz_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372f.", "author": "", "orig_id": 1418107}}, {"model": "metainfo.source", "pk": 14138, "fields": {"orig_filename": "Hofer_Franz_1885_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418108}}, {"model": "metainfo.source", "pk": 14139, "fields": {"orig_filename": "Hofer_Gottfried_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418109}}, {"model": "metainfo.source", "pk": 14140, "fields": {"orig_filename": "Hofer_Ignaz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418110}}, {"model": "metainfo.source", "pk": 14141, "fields": {"orig_filename": "Hofer_Johann_1757_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418111}}, {"model": "metainfo.source", "pk": 14142, "fields": {"orig_filename": "Hofer_Josef_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373f.", "author": "", "orig_id": 1418112}}, {"model": "metainfo.source", "pk": 14143, "fields": {"orig_filename": "Hofer_Josef_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418113}}, {"model": "metainfo.source", "pk": 14144, "fields": {"orig_filename": "Hofer_Joseph-Anton_1742_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418114}}, {"model": "metainfo.source", "pk": 14145, "fields": {"orig_filename": "Hofer_Josepha_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418115}}, {"model": "metainfo.source", "pk": 14146, "fields": {"orig_filename": "Hofer_Otto_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418116}}, {"model": "metainfo.source", "pk": 14147, "fields": {"orig_filename": "Hofer_Sigi_1878_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436644}}, {"model": "metainfo.source", "pk": 14148, "fields": {"orig_filename": "Hoffer_Eduard_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418118}}, {"model": "metainfo.source", "pk": 14149, "fields": {"orig_filename": "Hoffer_Johann_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418119}}, {"model": "metainfo.source", "pk": 14150, "fields": {"orig_filename": "Hoffer_Karl_1824_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418120}}, {"model": "metainfo.source", "pk": 14151, "fields": {"orig_filename": "Hoffinger_Johann-Bapt_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418121}}, {"model": "metainfo.source", "pk": 14152, "fields": {"orig_filename": "Hoffmann-Canstein_Olga_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 379f.", "author": "", "orig_id": 1416731}}, {"model": "metainfo.source", "pk": 14153, "fields": {"orig_filename": "Hoffmann_Cajetan_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418122}}, {"model": "metainfo.source", "pk": 14154, "fields": {"orig_filename": "Hoffmann_Camill_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418123}}, {"model": "metainfo.source", "pk": 14155, "fields": {"orig_filename": "Hoffmann_Emanuel_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418124}}, {"model": "metainfo.source", "pk": 14156, "fields": {"orig_filename": "Hoffmann_Johann-Peter_1764_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377", "author": "", "orig_id": 1418126}}, {"model": "metainfo.source", "pk": 14157, "fields": {"orig_filename": "Hoffmann_Johann_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376f.", "author": "", "orig_id": 1418125}}, {"model": "metainfo.source", "pk": 14158, "fields": {"orig_filename": "Hoffmann_Josef-Raimund_1823_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416726}}, {"model": "metainfo.source", "pk": 14159, "fields": {"orig_filename": "Hoffmann_Josef_1831_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377", "author": "", "orig_id": 1418127}}, {"model": "metainfo.source", "pk": 14160, "fields": {"orig_filename": "Hoffmann_Josef_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377f.", "author": "", "orig_id": 1416725}}, {"model": "metainfo.source", "pk": 14161, "fields": {"orig_filename": "Hoffmann_Karl_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416727}}, {"model": "metainfo.source", "pk": 14162, "fields": {"orig_filename": "Hoffmann_Nina_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416728}}, {"model": "metainfo.source", "pk": 14163, "fields": {"orig_filename": "Hoffmann_Richard-Adolf_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378f.", "author": "", "orig_id": 1416729}}, {"model": "metainfo.source", "pk": 14164, "fields": {"orig_filename": "Hoffmann_Robert_1835_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 379", "author": "", "orig_id": 1416730}}, {"model": "metainfo.source", "pk": 14165, "fields": {"orig_filename": "Hofmann-Aspernburg_Edmund_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416824}}, {"model": "metainfo.source", "pk": 14166, "fields": {"orig_filename": "Hofmann-Hofmannsthal_Hugo_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 385ff.", "author": "", "orig_id": 1416825}}, {"model": "metainfo.source", "pk": 14167, "fields": {"orig_filename": "Hofmann-Hofmannsthal_Isaak-Loew_1759_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416826}}, {"model": "metainfo.source", "pk": 14168, "fields": {"orig_filename": "Hofmann-Wellenhof_Viktor_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416827}}, {"model": "metainfo.source", "pk": 14169, "fields": {"orig_filename": "Hofmann_Adolf_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416732}}, {"model": "metainfo.source", "pk": 14170, "fields": {"orig_filename": "Hofmann_Anton-Adalbert_1881_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416733}}, {"model": "metainfo.source", "pk": 14171, "fields": {"orig_filename": "Hofmann_Eduard_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416734}}, {"model": "metainfo.source", "pk": 14172, "fields": {"orig_filename": "Hofmann_Emil_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380f.", "author": "", "orig_id": 1416735}}, {"model": "metainfo.source", "pk": 14173, "fields": {"orig_filename": "Hofmann_Franz-Bruno_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416737}}, {"model": "metainfo.source", "pk": 14174, "fields": {"orig_filename": "Hofmann_Franz_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416736}}, {"model": "metainfo.source", "pk": 14175, "fields": {"orig_filename": "Hofmann_Josef_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416738}}, {"model": "metainfo.source", "pk": 14176, "fields": {"orig_filename": "Hofmann_Joseph-Anton-Vincenz_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381f.", "author": "", "orig_id": 1416739}}, {"model": "metainfo.source", "pk": 14177, "fields": {"orig_filename": "Hofmann_Julius_1840_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416740}}, {"model": "metainfo.source", "pk": 14178, "fields": {"orig_filename": "Hofmann_Karl-Berthold_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382f.", "author": "", "orig_id": 1416744}}, {"model": "metainfo.source", "pk": 14179, "fields": {"orig_filename": "Hofmann_Karl_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416741}}, {"model": "metainfo.source", "pk": 14180, "fields": {"orig_filename": "Hofmann_Karl_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416742}}, {"model": "metainfo.source", "pk": 14181, "fields": {"orig_filename": "Hofmann_Karl_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416743}}, {"model": "metainfo.source", "pk": 14182, "fields": {"orig_filename": "Hofmann_Kleophas_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 383", "author": "", "orig_id": 1416745}}, {"model": "metainfo.source", "pk": 14183, "fields": {"orig_filename": "Hofmann_Leopold_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 383f.", "author": "", "orig_id": 1416746}}, {"model": "metainfo.source", "pk": 14184, "fields": {"orig_filename": "Hofmann_Martha_1895_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1449603}}, {"model": "metainfo.source", "pk": 14185, "fields": {"orig_filename": "Hofmann_Michael_1860_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416747}}, {"model": "metainfo.source", "pk": 14186, "fields": {"orig_filename": "Hofmann_Ottokar_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416822}}, {"model": "metainfo.source", "pk": 14187, "fields": {"orig_filename": "Hofmeister_Franz_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416829}}, {"model": "metainfo.source", "pk": 14188, "fields": {"orig_filename": "Hofmokl_Johann-Eduard_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387f.", "author": "", "orig_id": 1416830}}, {"model": "metainfo.source", "pk": 14189, "fields": {"orig_filename": "Hofner_Otto_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388", "author": "", "orig_id": 1416831}}, {"model": "metainfo.source", "pk": 14190, "fields": {"orig_filename": "Hofstaedter_Gotthard_1826_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388", "author": "", "orig_id": 1416832}}, {"model": "metainfo.source", "pk": 14191, "fields": {"orig_filename": "Hofzinser_Johann-Nep_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388f.", "author": "", "orig_id": 1416834}}, {"model": "metainfo.source", "pk": 14192, "fields": {"orig_filename": "Hoheisel_Konrad_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389", "author": "", "orig_id": 1416833}}, {"model": "metainfo.source", "pk": 14193, "fields": {"orig_filename": "Hoheisel_Marie_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389", "author": "", "orig_id": 1416835}}, {"model": "metainfo.source", "pk": 14194, "fields": {"orig_filename": "Hohenberger_Franz_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389f.", "author": "", "orig_id": 1416837}}, {"model": "metainfo.source", "pk": 14195, "fields": {"orig_filename": "Hohenbruck_Priska_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390", "author": "", "orig_id": 1416838}}, {"model": "metainfo.source", "pk": 14196, "fields": {"orig_filename": "Hohenbuehel_Ludwig_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390", "author": "", "orig_id": 1416839}}, {"model": "metainfo.source", "pk": 14197, "fields": {"orig_filename": "Hohenegger_Agapit_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390f.", "author": "", "orig_id": 1416840}}, {"model": "metainfo.source", "pk": 14198, "fields": {"orig_filename": "Hohenegger_Ludwig_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391", "author": "", "orig_id": 1416841}}, {"model": "metainfo.source", "pk": 14199, "fields": {"orig_filename": "Hohenfels-Berger_Stella_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391", "author": "", "orig_id": 1416842}}, {"model": "metainfo.source", "pk": 14200, "fields": {"orig_filename": "Hohenleitner_Fridolin_1883_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391f.", "author": "", "orig_id": 1416844}}, {"model": "metainfo.source", "pk": 14201, "fields": {"orig_filename": "Hohenlohe-Ingelfingen_Friedrich-Karl-Wilhelm_1752_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392", "author": "", "orig_id": 1416845}}, {"model": "metainfo.source", "pk": 14202, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Gottfried_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392", "author": "", "orig_id": 1416911}}, {"model": "metainfo.source", "pk": 14203, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konrad_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392f.", "author": "", "orig_id": 1416912}}, {"model": "metainfo.source", "pk": 14204, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konstantin_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 393f.", "author": "", "orig_id": 1416913}}, {"model": "metainfo.source", "pk": 14205, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konstantin_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 394", "author": "", "orig_id": 1416914}}, {"model": "metainfo.source", "pk": 14206, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Marie_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 394f.", "author": "", "orig_id": 1416915}}, {"model": "metainfo.source", "pk": 14207, "fields": {"orig_filename": "Hohenlohe-Waldenburg-Schillingsfuerst_Alexander_1794_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 395", "author": "", "orig_id": 1416916}}, {"model": "metainfo.source", "pk": 14208, "fields": {"orig_filename": "Hohenwart_Franz-Josef-Hannibal_1771_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 395f.", "author": "", "orig_id": 1416917}}, {"model": "metainfo.source", "pk": 14209, "fields": {"orig_filename": "Hohenwart_Karl-Sigmund_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 396", "author": "", "orig_id": 1416918}}, {"model": "metainfo.source", "pk": 14210, "fields": {"orig_filename": "Hohenwart_Sigismund_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 396f.", "author": "", "orig_id": 1416919}}, {"model": "metainfo.source", "pk": 14211, "fields": {"orig_filename": "Hohenwart_Sigmund-Anton_1730_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 397", "author": "", "orig_id": 1416920}}, {"model": "metainfo.source", "pk": 14212, "fields": {"orig_filename": "Hohenzollern-Hechingen_Friedrich-Franz-Xaver_1757_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 397f.", "author": "", "orig_id": 1416921}}, {"model": "metainfo.source", "pk": 14213, "fields": {"orig_filename": "Hohlbaum_Alois_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416922}}, {"model": "metainfo.source", "pk": 14214, "fields": {"orig_filename": "Hohler_Emmerich-Thomas_1781_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416923}}, {"model": "metainfo.source", "pk": 14215, "fields": {"orig_filename": "Hohlfeld_Dora_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416924}}, {"model": "metainfo.source", "pk": 14216, "fields": {"orig_filename": "Hoic_Ivan_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416925}}, {"model": "metainfo.source", "pk": 14217, "fields": {"orig_filename": "Holarek_Emil_1867_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398f.", "author": "", "orig_id": 1416926}}, {"model": "metainfo.source", "pk": 14218, "fields": {"orig_filename": "Holaus_Maximilian_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399", "author": "", "orig_id": 1416928}}, {"model": "metainfo.source", "pk": 14219, "fields": {"orig_filename": "Holaus_Simon_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399", "author": "", "orig_id": 1416927}}, {"model": "metainfo.source", "pk": 14220, "fields": {"orig_filename": "Holbein-Holbeinsberg_Franz-Ignaz_1779_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399f.", "author": "", "orig_id": 1416929}}, {"model": "metainfo.source", "pk": 14221, "fields": {"orig_filename": "Holczabek_Johann-Wilhelm_1843_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1420823}}, {"model": "metainfo.source", "pk": 14222, "fields": {"orig_filename": "Holenia_Romuald_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416930}}, {"model": "metainfo.source", "pk": 14223, "fields": {"orig_filename": "Holetschek_Johann_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416931}}, {"model": "metainfo.source", "pk": 14224, "fields": {"orig_filename": "Holitscher_Arthur_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416932}}, {"model": "metainfo.source", "pk": 14225, "fields": {"orig_filename": "Holitscher_Philipp_1822_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1416933}}, {"model": "metainfo.source", "pk": 14226, "fields": {"orig_filename": "Holjac_Janko_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417005}}, {"model": "metainfo.source", "pk": 14227, "fields": {"orig_filename": "Hollederer_Johann_1783_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401f.", "author": "", "orig_id": 1417008}}, {"model": "metainfo.source", "pk": 14228, "fields": {"orig_filename": "Hollenstein_Stephanie_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 402", "author": "", "orig_id": 1417009}}, {"model": "metainfo.source", "pk": 14229, "fields": {"orig_filename": "Holler_Anton_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 402f.", "author": "", "orig_id": 1417010}}, {"model": "metainfo.source", "pk": 14230, "fields": {"orig_filename": "Hollitzer_Carl-Leopold_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1420821}}, {"model": "metainfo.source", "pk": 14231, "fields": {"orig_filename": "Hitzl_Franz-De-Paula_1738_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339", "author": "", "orig_id": 1417733}}, {"model": "metainfo.source", "pk": 14232, "fields": {"orig_filename": "Hladnik_Franz_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339f.", "author": "", "orig_id": 1417734}}, {"model": "metainfo.source", "pk": 14233, "fields": {"orig_filename": "Hladnik_Ignaz_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417735}}, {"model": "metainfo.source", "pk": 14234, "fields": {"orig_filename": "Hlasiwetz_Heinrich_1825_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417736}}, {"model": "metainfo.source", "pk": 14235, "fields": {"orig_filename": "Hlatky_Eduard_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417737}}, {"model": "metainfo.source", "pk": 14236, "fields": {"orig_filename": "Hlavacek_Anton_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417739}}, {"model": "metainfo.source", "pk": 14237, "fields": {"orig_filename": "Hlava_Jaroslav_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417738}}, {"model": "metainfo.source", "pk": 14238, "fields": {"orig_filename": "Hlavka_Josef_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417740}}, {"model": "metainfo.source", "pk": 14239, "fields": {"orig_filename": "Hlawaczek_Eduard_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341f.", "author": "", "orig_id": 1417741}}, {"model": "metainfo.source", "pk": 14240, "fields": {"orig_filename": "Hlawati_Franz_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417742}}, {"model": "metainfo.source", "pk": 14241, "fields": {"orig_filename": "Hlawatsch_Karl-Ignatz_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128091}}, {"model": "metainfo.source", "pk": 14242, "fields": {"orig_filename": "Hlawatsch_Karl_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2053932}}, {"model": "metainfo.source", "pk": 14243, "fields": {"orig_filename": "Hlawatsch_Rudolf-Karl-Ferdinand_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128097}}, {"model": "metainfo.source", "pk": 14244, "fields": {"orig_filename": "Hocevar_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417743}}, {"model": "metainfo.source", "pk": 14245, "fields": {"orig_filename": "Hoch-Mueller_Joseph-Anton_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417745}}, {"model": "metainfo.source", "pk": 14246, "fields": {"orig_filename": "Hocheder_Johann-Karl_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417746}}, {"model": "metainfo.source", "pk": 14247, "fields": {"orig_filename": "Hochegger_Franz_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417747}}, {"model": "metainfo.source", "pk": 14248, "fields": {"orig_filename": "Hochegger_Rudolf_1862_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417748}}, {"model": "metainfo.source", "pk": 14249, "fields": {"orig_filename": "Hochenegg_Carl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343f.", "author": "", "orig_id": 1417749}}, {"model": "metainfo.source", "pk": 14250, "fields": {"orig_filename": "Hochenegg_Julius_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344", "author": "", "orig_id": 1417750}}, {"model": "metainfo.source", "pk": 14251, "fields": {"orig_filename": "Hochsinger_Carl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344", "author": "", "orig_id": 1417751}}, {"model": "metainfo.source", "pk": 14252, "fields": {"orig_filename": "Hochstetter_Carl-Christian_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344f.", "author": "", "orig_id": 1417752}}, {"model": "metainfo.source", "pk": 14253, "fields": {"orig_filename": "Hochstetter_Ferdinand_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 345", "author": "", "orig_id": 1417753}}, {"model": "metainfo.source", "pk": 14254, "fields": {"orig_filename": "Hochstetter_Heinrich_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 345f.", "author": "", "orig_id": 1417754}}, {"model": "metainfo.source", "pk": 14255, "fields": {"orig_filename": "Hoch_Karl_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417744}}, {"model": "metainfo.source", "pk": 14256, "fields": {"orig_filename": "Hockauf_Josef_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417824}}, {"model": "metainfo.source", "pk": 14257, "fields": {"orig_filename": "Hock_Alexander_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417755}}, {"model": "metainfo.source", "pk": 14258, "fields": {"orig_filename": "Hock_Carl_1808_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417756}}, {"model": "metainfo.source", "pk": 14259, "fields": {"orig_filename": "Hock_Friedrich_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417757}}, {"model": "metainfo.source", "pk": 14260, "fields": {"orig_filename": "Hock_Jakob_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346f.", "author": "", "orig_id": 1417821}}, {"model": "metainfo.source", "pk": 14261, "fields": {"orig_filename": "Hock_Johann_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417822}}, {"model": "metainfo.source", "pk": 14262, "fields": {"orig_filename": "Hock_Stefan_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417823}}, {"model": "metainfo.source", "pk": 14263, "fields": {"orig_filename": "Hodek_Gustav_1832_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417825}}, {"model": "metainfo.source", "pk": 14264, "fields": {"orig_filename": "Hoebarth_Franz_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347f.", "author": "", "orig_id": 1417826}}, {"model": "metainfo.source", "pk": 14265, "fields": {"orig_filename": "Hoechle_Johann-Bapt_1754_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348", "author": "", "orig_id": 1417828}}, {"model": "metainfo.source", "pk": 14266, "fields": {"orig_filename": "Hoechle_Leopold_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348", "author": "", "orig_id": 1417829}}, {"model": "metainfo.source", "pk": 14267, "fields": {"orig_filename": "Hoechsmann_Johannes_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348f.", "author": "", "orig_id": 1417831}}, {"model": "metainfo.source", "pk": 14268, "fields": {"orig_filename": "Hoeck_Franz_1749_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417833}}, {"model": "metainfo.source", "pk": 14269, "fields": {"orig_filename": "Hoedl_Bonaventura-Constantin_1776_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417834}}, {"model": "metainfo.source", "pk": 14270, "fields": {"orig_filename": "Hoedl_Roman-Josef_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417835}}, {"model": "metainfo.source", "pk": 14271, "fields": {"orig_filename": "Hoefele_Stephan_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350", "author": "", "orig_id": 1417839}}, {"model": "metainfo.source", "pk": 14272, "fields": {"orig_filename": "Hoefel_Bernhard_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417836}}, {"model": "metainfo.source", "pk": 14273, "fields": {"orig_filename": "Hoefel_Blasius_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349f.", "author": "", "orig_id": 1417837}}, {"model": "metainfo.source", "pk": 14274, "fields": {"orig_filename": "Hoefel_Johann-Nepomuk_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350", "author": "", "orig_id": 1417838}}, {"model": "metainfo.source", "pk": 14275, "fields": {"orig_filename": "Hoefer-Feldsturm_Franz_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351", "author": "", "orig_id": 1417840}}, {"model": "metainfo.source", "pk": 14276, "fields": {"orig_filename": "Hoefer-Heimhalt_Hans_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351f.", "author": "", "orig_id": 1417843}}, {"model": "metainfo.source", "pk": 14277, "fields": {"orig_filename": "Hoefer_Josef_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350f.", "author": "", "orig_id": 1417841}}, {"model": "metainfo.source", "pk": 14278, "fields": {"orig_filename": "Hoefer_Mathias_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351", "author": "", "orig_id": 1417842}}, {"model": "metainfo.source", "pk": 14279, "fields": {"orig_filename": "Hoefken-Hattingsheim_Rudolf_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353", "author": "", "orig_id": 1417845}}, {"model": "metainfo.source", "pk": 14280, "fields": {"orig_filename": "Hoefken_Gustav_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 352f.", "author": "", "orig_id": 1417844}}, {"model": "metainfo.source", "pk": 14281, "fields": {"orig_filename": "Hoefler_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353", "author": "", "orig_id": 1417846}}, {"model": "metainfo.source", "pk": 14282, "fields": {"orig_filename": "Hoefler_Karl-Adolf-Constantin_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353f.", "author": "", "orig_id": 1417908}}, {"model": "metainfo.source", "pk": 14283, "fields": {"orig_filename": "Hoefner_Gabriel_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 354f.", "author": "", "orig_id": 1417909}}, {"model": "metainfo.source", "pk": 14284, "fields": {"orig_filename": "Hoegelmueller_Georg_1770_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356", "author": "", "orig_id": 1417913}}, {"model": "metainfo.source", "pk": 14285, "fields": {"orig_filename": "Hoegel_Hugo_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355", "author": "", "orig_id": 1417910}}, {"model": "metainfo.source", "pk": 14286, "fields": {"orig_filename": "Hoegel_Johann-Bapt_1820_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355", "author": "", "orig_id": 1417911}}, {"model": "metainfo.source", "pk": 14287, "fields": {"orig_filename": "Hoegel_Wilhelmine_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355f.", "author": "", "orig_id": 1417912}}, {"model": "metainfo.source", "pk": 14288, "fields": {"orig_filename": "Hoeger_Joseph_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356", "author": "", "orig_id": 1417914}}, {"model": "metainfo.source", "pk": 14289, "fields": {"orig_filename": "Hoeger_Karl_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356f.", "author": "", "orig_id": 1417915}}, {"model": "metainfo.source", "pk": 14290, "fields": {"orig_filename": "Hoegler_Anton_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417916}}, {"model": "metainfo.source", "pk": 14291, "fields": {"orig_filename": "Hoegler_Franz_1802_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417917}}, {"model": "metainfo.source", "pk": 14292, "fields": {"orig_filename": "Hoegyes_Andreas_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417918}}, {"model": "metainfo.source", "pk": 14293, "fields": {"orig_filename": "Hoehnel_Franz_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357f.", "author": "", "orig_id": 1417919}}, {"model": "metainfo.source", "pk": 14294, "fields": {"orig_filename": "Hoehnel_Friedrich-Romilo_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358", "author": "", "orig_id": 1417920}}, {"model": "metainfo.source", "pk": 14295, "fields": {"orig_filename": "Hoehnel_Ludwig_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358", "author": "", "orig_id": 1417921}}, {"model": "metainfo.source", "pk": 14296, "fields": {"orig_filename": "Hoehnel_Wilhelm-Gotthelf_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358f.", "author": "", "orig_id": 1417922}}, {"model": "metainfo.source", "pk": 14297, "fields": {"orig_filename": "Hoelder_Alfred_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417923}}, {"model": "metainfo.source", "pk": 14298, "fields": {"orig_filename": "Hoellersberger_Robert_1924_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417924}}, {"model": "metainfo.source", "pk": 14299, "fields": {"orig_filename": "Hoelzel_Adolf_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417925}}, {"model": "metainfo.source", "pk": 14300, "fields": {"orig_filename": "Hoelzel_Eduard_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359f.", "author": "", "orig_id": 1417926}}, {"model": "metainfo.source", "pk": 14301, "fields": {"orig_filename": "Hoelzel_Gustav_1813_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417927}}, {"model": "metainfo.source", "pk": 14302, "fields": {"orig_filename": "Hoelzlhuber_Franz_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417929}}, {"model": "metainfo.source", "pk": 14303, "fields": {"orig_filename": "Hoelzl_Josef_1809_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417928}}, {"model": "metainfo.source", "pk": 14304, "fields": {"orig_filename": "Hoenig-Greil_Auguste_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418002}}, {"model": "metainfo.source", "pk": 14305, "fields": {"orig_filename": "Hoenig-Hoenigsberg_Benedikt_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418004}}, {"model": "metainfo.source", "pk": 14306, "fields": {"orig_filename": "Hoenig-Hoenigsberg_Erich_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418005}}, {"model": "metainfo.source", "pk": 14307, "fields": {"orig_filename": "Hoenigl_Dominik_1833_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362f.", "author": "", "orig_id": 1418006}}, {"model": "metainfo.source", "pk": 14308, "fields": {"orig_filename": "Hoenigschmid_Otto_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363", "author": "", "orig_id": 1418007}}, {"model": "metainfo.source", "pk": 14309, "fields": {"orig_filename": "Hoenigswald_Richard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363", "author": "", "orig_id": 1418008}}, {"model": "metainfo.source", "pk": 14310, "fields": {"orig_filename": "Hoenig_Franz_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417931}}, {"model": "metainfo.source", "pk": 14311, "fields": {"orig_filename": "Hoenig_Ignaz_1828_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417933}}, {"model": "metainfo.source", "pk": 14312, "fields": {"orig_filename": "Hoenig_Max_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361f.", "author": "", "orig_id": 1417934}}, {"model": "metainfo.source", "pk": 14313, "fields": {"orig_filename": "Hoen_Maximilian_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360f.", "author": "", "orig_id": 1417930}}, {"model": "metainfo.source", "pk": 14314, "fields": {"orig_filename": "Hoepler-Hermingen_Erwein_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363f.", "author": "", "orig_id": 1418009}}, {"model": "metainfo.source", "pk": 14315, "fields": {"orig_filename": "Hoerbiger_Alois_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 364", "author": "", "orig_id": 1418010}}, {"model": "metainfo.source", "pk": 14316, "fields": {"orig_filename": "Hoerbiger_Hanns_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 364f.", "author": "", "orig_id": 1418012}}, {"model": "metainfo.source", "pk": 14317, "fields": {"orig_filename": "Hoerfarter_Matthaeus_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418013}}, {"model": "metainfo.source", "pk": 14318, "fields": {"orig_filename": "Hoerhager_Josef_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418014}}, {"model": "metainfo.source", "pk": 14319, "fields": {"orig_filename": "Hoermann-Hoerbach_Angelika_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 366", "author": "", "orig_id": 1418017}}, {"model": "metainfo.source", "pk": 14320, "fields": {"orig_filename": "Hoermann-Hoerbach_Ludwig_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 366f.", "author": "", "orig_id": 1418018}}, {"model": "metainfo.source", "pk": 14321, "fields": {"orig_filename": "Hoermann-Hoerbach_Theodor_1840_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367", "author": "", "orig_id": 1418019}}, {"model": "metainfo.source", "pk": 14322, "fields": {"orig_filename": "Hoermann-Hoerbach_Walther_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367", "author": "", "orig_id": 1418020}}, {"model": "metainfo.source", "pk": 14323, "fields": {"orig_filename": "Hoermann_Konstantin_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418015}}, {"model": "metainfo.source", "pk": 14324, "fields": {"orig_filename": "Hoermann_Leopold_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365f.", "author": "", "orig_id": 1418016}}, {"model": "metainfo.source", "pk": 14325, "fields": {"orig_filename": "Hoernes_Hermann_1858_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367f.", "author": "", "orig_id": 1418021}}, {"model": "metainfo.source", "pk": 14326, "fields": {"orig_filename": "Hoernes_Moriz_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 368", "author": "", "orig_id": 1418022}}, {"model": "metainfo.source", "pk": 14327, "fields": {"orig_filename": "Hoernes_Moriz_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 368f.", "author": "", "orig_id": 1418023}}, {"model": "metainfo.source", "pk": 14328, "fields": {"orig_filename": "Hoernes_Rudolf_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 369f.", "author": "", "orig_id": 1418024}}, {"model": "metainfo.source", "pk": 14329, "fields": {"orig_filename": "Hoertnagl_Hans_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418025}}, {"model": "metainfo.source", "pk": 14330, "fields": {"orig_filename": "Hoerwarter_Joseph-Eugen_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418026}}, {"model": "metainfo.source", "pk": 14331, "fields": {"orig_filename": "Hoesslinger_Guido_1871_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418027}}, {"model": "metainfo.source", "pk": 14332, "fields": {"orig_filename": "Hoetzl_Josef_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370f.", "author": "", "orig_id": 1418028}}, {"model": "metainfo.source", "pk": 14333, "fields": {"orig_filename": "Heyer-Rosenfeld_Friedrich_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417192}}, {"model": "metainfo.source", "pk": 14334, "fields": {"orig_filename": "Heyl_Johann-Adolf_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417193}}, {"model": "metainfo.source", "pk": 14335, "fields": {"orig_filename": "Heyne_Wilhelm_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310f.", "author": "", "orig_id": 1417194}}, {"model": "metainfo.source", "pk": 14336, "fields": {"orig_filename": "Heyssler_Moritz_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311", "author": "", "orig_id": 1417265}}, {"model": "metainfo.source", "pk": 14337, "fields": {"orig_filename": "Hey_Hans-Erwin_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417191}}, {"model": "metainfo.source", "pk": 14338, "fields": {"orig_filename": "Hibler_Emanuel_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311", "author": "", "orig_id": 1417266}}, {"model": "metainfo.source", "pk": 14339, "fields": {"orig_filename": "Hibsch_Josef-Emanuel_1852_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311f.", "author": "", "orig_id": 1417267}}, {"model": "metainfo.source", "pk": 14340, "fields": {"orig_filename": "Hickel_Karl_1811_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417268}}, {"model": "metainfo.source", "pk": 14341, "fields": {"orig_filename": "Hickmann_Anton-Leo_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417269}}, {"model": "metainfo.source", "pk": 14342, "fields": {"orig_filename": "Hidja_Georg-Anton_1752_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417270}}, {"model": "metainfo.source", "pk": 14343, "fields": {"orig_filename": "Hieber_Karlmann_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312f.", "author": "", "orig_id": 1417271}}, {"model": "metainfo.source", "pk": 14344, "fields": {"orig_filename": "Hiebl_Josef-Ferdinand_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417272}}, {"model": "metainfo.source", "pk": 14345, "fields": {"orig_filename": "Hiebsch_Herbert_1905_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417273}}, {"model": "metainfo.source", "pk": 14346, "fields": {"orig_filename": "Hiebsch_Josef_1854_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417274}}, {"model": "metainfo.source", "pk": 14347, "fields": {"orig_filename": "Hieke_Wenzel_1852_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417275}}, {"model": "metainfo.source", "pk": 14348, "fields": {"orig_filename": "Hiermann_Franz_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313f.", "author": "", "orig_id": 1417276}}, {"model": "metainfo.source", "pk": 14349, "fields": {"orig_filename": "Hieronimus_Otto_1879_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1451374}}, {"model": "metainfo.source", "pk": 14350, "fields": {"orig_filename": "Hieronymi_Karl_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417277}}, {"model": "metainfo.source", "pk": 14351, "fields": {"orig_filename": "Hieser_Otto_1850_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417278}}, {"model": "metainfo.source", "pk": 14352, "fields": {"orig_filename": "Hietzinger_Karl-Bernhard_1786_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417279}}, {"model": "metainfo.source", "pk": 14353, "fields": {"orig_filename": "Hilbert_Kamill_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417283}}, {"model": "metainfo.source", "pk": 14354, "fields": {"orig_filename": "Hilber_Vincenz_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314f.", "author": "", "orig_id": 1417282}}, {"model": "metainfo.source", "pk": 14355, "fields": {"orig_filename": "Hilchenbach_Karl-Wilhelm_1749_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417284}}, {"model": "metainfo.source", "pk": 14356, "fields": {"orig_filename": "Hildebrand_Richard_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417286}}, {"model": "metainfo.source", "pk": 14357, "fields": {"orig_filename": "Hildenbrand_Franz-Xaver_1789_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315f.", "author": "", "orig_id": 1417287}}, {"model": "metainfo.source", "pk": 14358, "fields": {"orig_filename": "Hildenbrand_Valentin-Johann_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417288}}, {"model": "metainfo.source", "pk": 14359, "fields": {"orig_filename": "Hildwein_Alois_1789_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417365}}, {"model": "metainfo.source", "pk": 14360, "fields": {"orig_filename": "Hild_Josef_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417285}}, {"model": "metainfo.source", "pk": 14361, "fields": {"orig_filename": "Hilgenreiner_Karl_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417366}}, {"model": "metainfo.source", "pk": 14362, "fields": {"orig_filename": "Hillebrand_Karl_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417368}}, {"model": "metainfo.source", "pk": 14363, "fields": {"orig_filename": "Hilleprandt_Franz_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417369}}, {"model": "metainfo.source", "pk": 14364, "fields": {"orig_filename": "Hiller_Johann_1748_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417370}}, {"model": "metainfo.source", "pk": 14365, "fields": {"orig_filename": "Hiller_Karl_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317f.", "author": "", "orig_id": 1417371}}, {"model": "metainfo.source", "pk": 14366, "fields": {"orig_filename": "Hille_Augustin-Bartholomaeus_1786_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316f.", "author": "", "orig_id": 1417367}}, {"model": "metainfo.source", "pk": 14367, "fields": {"orig_filename": "Hillischer_Hermann-Theodor_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318", "author": "", "orig_id": 1417373}}, {"model": "metainfo.source", "pk": 14368, "fields": {"orig_filename": "Hillischer_Josef-Hermann_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318", "author": "", "orig_id": 1417374}}, {"model": "metainfo.source", "pk": 14369, "fields": {"orig_filename": "Hilpert_Helmut_1923_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318f.", "author": "", "orig_id": 1417375}}, {"model": "metainfo.source", "pk": 14370, "fields": {"orig_filename": "Hilscher_Josef-Emanuel_1806_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417376}}, {"model": "metainfo.source", "pk": 14371, "fields": {"orig_filename": "Hilscher_Karl_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417377}}, {"model": "metainfo.source", "pk": 14372, "fields": {"orig_filename": "Hilzer_Peter-Ignatz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417378}}, {"model": "metainfo.source", "pk": 14373, "fields": {"orig_filename": "Himmel-Agisburg_Heinrich_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417380}}, {"model": "metainfo.source", "pk": 14374, "fields": {"orig_filename": "Himmelbauer_Alfred_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319f.", "author": "", "orig_id": 1417381}}, {"model": "metainfo.source", "pk": 14375, "fields": {"orig_filename": "Himmelbauer_Franz_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417382}}, {"model": "metainfo.source", "pk": 14376, "fields": {"orig_filename": "Himmelbauer_Michael_1829_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417383}}, {"model": "metainfo.source", "pk": 14377, "fields": {"orig_filename": "Himmelbaur_Marietta_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417384}}, {"model": "metainfo.source", "pk": 14378, "fields": {"orig_filename": "Himmelbaur_Wolfgang_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320f.", "author": "", "orig_id": 1417385}}, {"model": "metainfo.source", "pk": 14379, "fields": {"orig_filename": "Himsl_Ferdinand_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321", "author": "", "orig_id": 1417386}}, {"model": "metainfo.source", "pk": 14380, "fields": {"orig_filename": "Hingenau_Otto-Bernhard-Gottlieb_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321", "author": "", "orig_id": 1417387}}, {"model": "metainfo.source", "pk": 14381, "fields": {"orig_filename": "Hinke_Johann_1837_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321f.", "author": "", "orig_id": 1417388}}, {"model": "metainfo.source", "pk": 14382, "fields": {"orig_filename": "Hinkovic_Hinko_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417457}}, {"model": "metainfo.source", "pk": 14383, "fields": {"orig_filename": "Hinsenkamp_Therese_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417459}}, {"model": "metainfo.source", "pk": 14384, "fields": {"orig_filename": "Hinterberger_Friedrich_1826_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417460}}, {"model": "metainfo.source", "pk": 14385, "fields": {"orig_filename": "Hinterberger_Hugo_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322f.", "author": "", "orig_id": 1417461}}, {"model": "metainfo.source", "pk": 14386, "fields": {"orig_filename": "Hinterhuber_Georg_1768_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417462}}, {"model": "metainfo.source", "pk": 14387, "fields": {"orig_filename": "Hinterhuber_Julius_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417464}}, {"model": "metainfo.source", "pk": 14388, "fields": {"orig_filename": "Hinterhuber_Rudolf_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417465}}, {"model": "metainfo.source", "pk": 14389, "fields": {"orig_filename": "Hinterlechner_Fulgentius_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417466}}, {"model": "metainfo.source", "pk": 14390, "fields": {"orig_filename": "Hinterlechner_Karl_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323f.", "author": "", "orig_id": 1417467}}, {"model": "metainfo.source", "pk": 14391, "fields": {"orig_filename": "Hinterleithner_Josef_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 324", "author": "", "orig_id": 1417468}}, {"model": "metainfo.source", "pk": 14392, "fields": {"orig_filename": "Hinteroecker_Johann-Nep_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 324f.", "author": "", "orig_id": 1417469}}, {"model": "metainfo.source", "pk": 14393, "fields": {"orig_filename": "Hinterschweiger_Ludwig_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325", "author": "", "orig_id": 1417471}}, {"model": "metainfo.source", "pk": 14394, "fields": {"orig_filename": "Hinterstoisser_Franz_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325", "author": "", "orig_id": 1417472}}, {"model": "metainfo.source", "pk": 14395, "fields": {"orig_filename": "Hinterstoisser_Hermann-Joseph_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325f.", "author": "", "orig_id": 1417474}}, {"model": "metainfo.source", "pk": 14396, "fields": {"orig_filename": "Hinterstoisser_Joseph-Carl_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326", "author": "", "orig_id": 1417475}}, {"model": "metainfo.source", "pk": 14397, "fields": {"orig_filename": "Hinterwaldner_Johann-Max_1844_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326", "author": "", "orig_id": 1417476}}, {"model": "metainfo.source", "pk": 14398, "fields": {"orig_filename": "Hinterwaldner_Josef_1833_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326f.", "author": "", "orig_id": 1417477}}, {"model": "metainfo.source", "pk": 14399, "fields": {"orig_filename": "Hintner_Johann_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417478}}, {"model": "metainfo.source", "pk": 14400, "fields": {"orig_filename": "Hintner_Michael_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417479}}, {"model": "metainfo.source", "pk": 14401, "fields": {"orig_filename": "Hintner_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417480}}, {"model": "metainfo.source", "pk": 14402, "fields": {"orig_filename": "Hintraeger_Moritz_1831_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417481}}, {"model": "metainfo.source", "pk": 14403, "fields": {"orig_filename": "Hiptmair_Mathias_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327f.", "author": "", "orig_id": 1417552}}, {"model": "metainfo.source", "pk": 14404, "fields": {"orig_filename": "Hirc_Dragutin_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417553}}, {"model": "metainfo.source", "pk": 14405, "fields": {"orig_filename": "Hirc_Miroslav_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417554}}, {"model": "metainfo.source", "pk": 14406, "fields": {"orig_filename": "Hiremy-Hirschl_Adolf_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417556}}, {"model": "metainfo.source", "pk": 14407, "fields": {"orig_filename": "Hirn_Ferdinand_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328f.", "author": "", "orig_id": 1417557}}, {"model": "metainfo.source", "pk": 14408, "fields": {"orig_filename": "Hirn_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329", "author": "", "orig_id": 1417558}}, {"model": "metainfo.source", "pk": 14409, "fields": {"orig_filename": "Hirschberg_Aleksander_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331f.", "author": "", "orig_id": 1417566}}, {"model": "metainfo.source", "pk": 14410, "fields": {"orig_filename": "Hirschberg_Marie_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332", "author": "", "orig_id": 1417567}}, {"model": "metainfo.source", "pk": 14411, "fields": {"orig_filename": "Hirschfeld_Leo_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332", "author": "", "orig_id": 1417568}}, {"model": "metainfo.source", "pk": 14412, "fields": {"orig_filename": "Hirschfeld_Otto_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332f.", "author": "", "orig_id": 1417569}}, {"model": "metainfo.source", "pk": 14413, "fields": {"orig_filename": "Hirschfeld_Robert_1857_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333", "author": "", "orig_id": 1417570}}, {"model": "metainfo.source", "pk": 14414, "fields": {"orig_filename": "Hirschfeld_Viktor_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333", "author": "", "orig_id": 1417571}}, {"model": "metainfo.source", "pk": 14415, "fields": {"orig_filename": "Hirschhaeuter_Joseph_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333f.", "author": "", "orig_id": 1417572}}, {"model": "metainfo.source", "pk": 14416, "fields": {"orig_filename": "Hirschler_Anna_1846_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334", "author": "", "orig_id": 1417574}}, {"model": "metainfo.source", "pk": 14417, "fields": {"orig_filename": "Hirschler_Ignaz_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334f.", "author": "", "orig_id": 1417642}}, {"model": "metainfo.source", "pk": 14418, "fields": {"orig_filename": "Hirschl_Josef-Adolf_1865_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334", "author": "", "orig_id": 1417573}}, {"model": "metainfo.source", "pk": 14419, "fields": {"orig_filename": "Hirsch_Arnold_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329", "author": "", "orig_id": 1417559}}, {"model": "metainfo.source", "pk": 14420, "fields": {"orig_filename": "Hirsch_Hans_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329f.", "author": "", "orig_id": 1417560}}, {"model": "metainfo.source", "pk": 14421, "fields": {"orig_filename": "Hirsch_Helene_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 330", "author": "", "orig_id": 1417561}}, {"model": "metainfo.source", "pk": 14422, "fields": {"orig_filename": "Hirsch_Karl_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 330f.", "author": "", "orig_id": 1417562}}, {"model": "metainfo.source", "pk": 14423, "fields": {"orig_filename": "Hirsch_Moritz_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417563}}, {"model": "metainfo.source", "pk": 14424, "fields": {"orig_filename": "Hirsch_Oskar_1877_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417564}}, {"model": "metainfo.source", "pk": 14425, "fields": {"orig_filename": "Hirsch_Rudolf_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417565}}, {"model": "metainfo.source", "pk": 14426, "fields": {"orig_filename": "Hirtenfeld_Jaromir_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335", "author": "", "orig_id": 1417644}}, {"model": "metainfo.source", "pk": 14427, "fields": {"orig_filename": "Hirt_Max_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335", "author": "", "orig_id": 1417643}}, {"model": "metainfo.source", "pk": 14428, "fields": {"orig_filename": "Hitler_Adolf_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335ff.", "author": "", "orig_id": 1417646}}, {"model": "metainfo.source", "pk": 14429, "fields": {"orig_filename": "Hitschmann_Fritz_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 337", "author": "", "orig_id": 1417647}}, {"model": "metainfo.source", "pk": 14430, "fields": {"orig_filename": "Hitschmann_Hugo-Heinrich_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 337f.", "author": "", "orig_id": 1417648}}, {"model": "metainfo.source", "pk": 14431, "fields": {"orig_filename": "Hitschmann_Maximilian_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417649}}, {"model": "metainfo.source", "pk": 14432, "fields": {"orig_filename": "Hittmair_Anton_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417650}}, {"model": "metainfo.source", "pk": 14433, "fields": {"orig_filename": "Hittmair_Rudolf_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417662}}, {"model": "metainfo.source", "pk": 14434, "fields": {"orig_filename": "Hittmair_Rudolf_1889_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338f.", "author": "", "orig_id": 1417663}}, {"model": "metainfo.source", "pk": 14435, "fields": {"orig_filename": "Hitzenthaler_Anton_1750_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339", "author": "", "orig_id": 1417732}}, {"model": "metainfo.source", "pk": 14436, "fields": {"orig_filename": "Hering_Ewald_1834_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416815}}, {"model": "metainfo.source", "pk": 14437, "fields": {"orig_filename": "Hering_Ewald_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416816}}, {"model": "metainfo.source", "pk": 14438, "fields": {"orig_filename": "Heritsch_Franz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283f.", "author": "", "orig_id": 1416817}}, {"model": "metainfo.source", "pk": 14439, "fields": {"orig_filename": "Herkner_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416818}}, {"model": "metainfo.source", "pk": 14440, "fields": {"orig_filename": "Herloss_Karl_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416819}}, {"model": "metainfo.source", "pk": 14441, "fields": {"orig_filename": "Hermann-Hermannsthal_Franz_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416898}}, {"model": "metainfo.source", "pk": 14442, "fields": {"orig_filename": "Hermann_Albert_1864_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285", "author": "", "orig_id": 1416891}}, {"model": "metainfo.source", "pk": 14443, "fields": {"orig_filename": "Hermann_August-Gustav_1828_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285", "author": "", "orig_id": 1416892}}, {"model": "metainfo.source", "pk": 14444, "fields": {"orig_filename": "Hermann_Benedikt-Franz-Johann_1755_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285f.", "author": "", "orig_id": 1416893}}, {"model": "metainfo.source", "pk": 14445, "fields": {"orig_filename": "Hermann_Franz_1827_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286", "author": "", "orig_id": 1420733}}, {"model": "metainfo.source", "pk": 14446, "fields": {"orig_filename": "Hermann_Friedrich_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286", "author": "", "orig_id": 1420734}}, {"model": "metainfo.source", "pk": 14447, "fields": {"orig_filename": "Hermann_Hugo_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287", "author": "", "orig_id": 1420736}}, {"model": "metainfo.source", "pk": 14448, "fields": {"orig_filename": "Hermann_Johann_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287", "author": "", "orig_id": 1420737}}, {"model": "metainfo.source", "pk": 14449, "fields": {"orig_filename": "Hermann_Johann_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287f.", "author": "", "orig_id": 1420738}}, {"model": "metainfo.source", "pk": 14450, "fields": {"orig_filename": "Hermann_Josef_1817_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416894}}, {"model": "metainfo.source", "pk": 14451, "fields": {"orig_filename": "Hermann_Julius_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416895}}, {"model": "metainfo.source", "pk": 14452, "fields": {"orig_filename": "Hermann_Leo_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416896}}, {"model": "metainfo.source", "pk": 14453, "fields": {"orig_filename": "Hermann_Richard_1872_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416897}}, {"model": "metainfo.source", "pk": 14454, "fields": {"orig_filename": "Herman_Jan_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416821}}, {"model": "metainfo.source", "pk": 14455, "fields": {"orig_filename": "Herman_Otto_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284f.", "author": "", "orig_id": 1416890}}, {"model": "metainfo.source", "pk": 14456, "fields": {"orig_filename": "Herndl_Franz_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416899}}, {"model": "metainfo.source", "pk": 14457, "fields": {"orig_filename": "Hernler_Franz_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416900}}, {"model": "metainfo.source", "pk": 14458, "fields": {"orig_filename": "Herold_Franz_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416901}}, {"model": "metainfo.source", "pk": 14459, "fields": {"orig_filename": "Herold_Jiri_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416902}}, {"model": "metainfo.source", "pk": 14460, "fields": {"orig_filename": "Herold_Josef_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416903}}, {"model": "metainfo.source", "pk": 14461, "fields": {"orig_filename": "Herold_Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289f.", "author": "", "orig_id": 1416904}}, {"model": "metainfo.source", "pk": 14462, "fields": {"orig_filename": "Herrenburg-Tuczek_Leopoldine_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416906}}, {"model": "metainfo.source", "pk": 14463, "fields": {"orig_filename": "Herring_Johann_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416907}}, {"model": "metainfo.source", "pk": 14464, "fields": {"orig_filename": "Herrmann-Herrnritt_Rudolf_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416985}}, {"model": "metainfo.source", "pk": 14465, "fields": {"orig_filename": "Herrmann_Anton_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290f.", "author": "", "orig_id": 1416908}}, {"model": "metainfo.source", "pk": 14466, "fields": {"orig_filename": "Herrmann_August_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416909}}, {"model": "metainfo.source", "pk": 14467, "fields": {"orig_filename": "Herrmann_Edmund_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416910}}, {"model": "metainfo.source", "pk": 14468, "fields": {"orig_filename": "Herrmann_Emanuel_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416981}}, {"model": "metainfo.source", "pk": 14469, "fields": {"orig_filename": "Herrmann_Fritz_1903_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291f.", "author": "", "orig_id": 1416982}}, {"model": "metainfo.source", "pk": 14470, "fields": {"orig_filename": "Herrmann_Karl_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416983}}, {"model": "metainfo.source", "pk": 14471, "fields": {"orig_filename": "Herrnheiser_Isidor_1861_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292f.", "author": "", "orig_id": 1416986}}, {"model": "metainfo.source", "pk": 14472, "fields": {"orig_filename": "Herr_Josef-Philipp_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416905}}, {"model": "metainfo.source", "pk": 14473, "fields": {"orig_filename": "Herschel_Otto_1871_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416988}}, {"model": "metainfo.source", "pk": 14474, "fields": {"orig_filename": "Hertle_Josef_1871_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416989}}, {"model": "metainfo.source", "pk": 14475, "fields": {"orig_filename": "Hertzka_Emil_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416990}}, {"model": "metainfo.source", "pk": 14476, "fields": {"orig_filename": "Hertzka_Jella_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293f.", "author": "", "orig_id": 1416991}}, {"model": "metainfo.source", "pk": 14477, "fields": {"orig_filename": "Hertzka_Julius_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294", "author": "", "orig_id": 1416992}}, {"model": "metainfo.source", "pk": 14478, "fields": {"orig_filename": "Hertzka_Theodor_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294", "author": "", "orig_id": 1416993}}, {"model": "metainfo.source", "pk": 14479, "fields": {"orig_filename": "Herz-Rodenau_Johann-Jakob_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1416999}}, {"model": "metainfo.source", "pk": 14480, "fields": {"orig_filename": "Herzberg-Fraenkel_Leo_1827_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1417000}}, {"model": "metainfo.source", "pk": 14481, "fields": {"orig_filename": "Herzberg-Fraenkel_Sigmund_1857_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1420732}}, {"model": "metainfo.source", "pk": 14482, "fields": {"orig_filename": "Herzenskron_Hermann-Josef_1789_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1417001}}, {"model": "metainfo.source", "pk": 14483, "fields": {"orig_filename": "Herzenskron_Viktor_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296f.", "author": "", "orig_id": 1417002}}, {"model": "metainfo.source", "pk": 14484, "fields": {"orig_filename": "Herzfeld_Adolf_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297", "author": "", "orig_id": 1417003}}, {"model": "metainfo.source", "pk": 14485, "fields": {"orig_filename": "Herzfeld_Karl-August_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297", "author": "", "orig_id": 1417004}}, {"model": "metainfo.source", "pk": 14486, "fields": {"orig_filename": "Herzfeld_Marie_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297f.", "author": "", "orig_id": 1417075}}, {"model": "metainfo.source", "pk": 14487, "fields": {"orig_filename": "Herzfeld_Victor_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417076}}, {"model": "metainfo.source", "pk": 14488, "fields": {"orig_filename": "Herzig_Josef_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417078}}, {"model": "metainfo.source", "pk": 14489, "fields": {"orig_filename": "Herzinger_Anton_1763_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417079}}, {"model": "metainfo.source", "pk": 14490, "fields": {"orig_filename": "Herzka_Siegmund_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417080}}, {"model": "metainfo.source", "pk": 14491, "fields": {"orig_filename": "Herzlieb_Franz_1797_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417083}}, {"model": "metainfo.source", "pk": 14492, "fields": {"orig_filename": "Herzl_Sigmund_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298f.", "author": "", "orig_id": 1417081}}, {"model": "metainfo.source", "pk": 14493, "fields": {"orig_filename": "Herzl_Theodor_1860_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 299f.", "author": "", "orig_id": 1417082}}, {"model": "metainfo.source", "pk": 14494, "fields": {"orig_filename": "Herzmann_Josef_1859_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417084}}, {"model": "metainfo.source", "pk": 14495, "fields": {"orig_filename": "Herzmansky_August_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417085}}, {"model": "metainfo.source", "pk": 14496, "fields": {"orig_filename": "Herzmansky_Bernhard_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300f.", "author": "", "orig_id": 1417086}}, {"model": "metainfo.source", "pk": 14497, "fields": {"orig_filename": "Herzogenberg_Heinrich_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302", "author": "", "orig_id": 1417090}}, {"model": "metainfo.source", "pk": 14498, "fields": {"orig_filename": "Herzog_David_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1414793}}, {"model": "metainfo.source", "pk": 14499, "fields": {"orig_filename": "Herzog_Jakob_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1417087}}, {"model": "metainfo.source", "pk": 14500, "fields": {"orig_filename": "Herzog_Katharina_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1417088}}, {"model": "metainfo.source", "pk": 14501, "fields": {"orig_filename": "Herzog_Reginald-Oliver_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301f.", "author": "", "orig_id": 1417089}}, {"model": "metainfo.source", "pk": 14502, "fields": {"orig_filename": "Herz_Eugen_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294f.", "author": "", "orig_id": 1416994}}, {"model": "metainfo.source", "pk": 14503, "fields": {"orig_filename": "Herz_Fritz_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416995}}, {"model": "metainfo.source", "pk": 14504, "fields": {"orig_filename": "Herz_Heinrich_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416996}}, {"model": "metainfo.source", "pk": 14505, "fields": {"orig_filename": "Herz_Maximilian_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416997}}, {"model": "metainfo.source", "pk": 14506, "fields": {"orig_filename": "Herz_Norbert_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295f.", "author": "", "orig_id": 1416998}}, {"model": "metainfo.source", "pk": 14507, "fields": {"orig_filename": "Heschl_Richard-Ladislaus_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302f.", "author": "", "orig_id": 1417092}}, {"model": "metainfo.source", "pk": 14508, "fields": {"orig_filename": "Hesch_Wilhelm_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302", "author": "", "orig_id": 1417091}}, {"model": "metainfo.source", "pk": 14509, "fields": {"orig_filename": "Hesse-Wartegg_Ernst_1854_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417097}}, {"model": "metainfo.source", "pk": 14510, "fields": {"orig_filename": "Hessen-Homburg_Ferdinand-Heinrich_1783_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417098}}, {"model": "metainfo.source", "pk": 14511, "fields": {"orig_filename": "Hessen-Homburg_Gustav-Adolph-Friedrich_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417100}}, {"model": "metainfo.source", "pk": 14512, "fields": {"orig_filename": "Hessen-Homburg_Philipp-August-Friedrich_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417171}}, {"model": "metainfo.source", "pk": 14513, "fields": {"orig_filename": "Hessen-Rhein_Alexander-Ludwig-Georg-Friedrich-Emil_1823_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305f.", "author": "", "orig_id": 1417172}}, {"model": "metainfo.source", "pk": 14514, "fields": {"orig_filename": "Hessen-Rhein_Emil-Maximilian-Leopold-August-Karl_1790_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417173}}, {"model": "metainfo.source", "pk": 14515, "fields": {"orig_filename": "Hessler_Ferdinand_1803_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417175}}, {"model": "metainfo.source", "pk": 14516, "fields": {"orig_filename": "Hessl_Gustav-August_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417174}}, {"model": "metainfo.source", "pk": 14517, "fields": {"orig_filename": "Hess_Bruno_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 303", "author": "", "orig_id": 1417093}}, {"model": "metainfo.source", "pk": 14518, "fields": {"orig_filename": "Hess_Heinrich_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 304", "author": "", "orig_id": 1417095}}, {"model": "metainfo.source", "pk": 14519, "fields": {"orig_filename": "Hess_Heinrich_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 303f.", "author": "", "orig_id": 1417094}}, {"model": "metainfo.source", "pk": 14520, "fields": {"orig_filename": "Hess_Philipp_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 304f.", "author": "", "orig_id": 1417096}}, {"model": "metainfo.source", "pk": 14521, "fields": {"orig_filename": "Hetschko_Alfred_1854_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417176}}, {"model": "metainfo.source", "pk": 14522, "fields": {"orig_filename": "Hetsey_Alice_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417177}}, {"model": "metainfo.source", "pk": 14523, "fields": {"orig_filename": "Hettwer_Emil_1847_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417178}}, {"model": "metainfo.source", "pk": 14524, "fields": {"orig_filename": "Hetzenauer_Michael_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417180}}, {"model": "metainfo.source", "pk": 14525, "fields": {"orig_filename": "Hetzendorf-Hohenberg_Johann-Ferdinand_1732_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307f.", "author": "", "orig_id": 1417181}}, {"model": "metainfo.source", "pk": 14526, "fields": {"orig_filename": "Heubach_Hans-Heinrich_1890_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308", "author": "", "orig_id": 1417182}}, {"model": "metainfo.source", "pk": 14527, "fields": {"orig_filename": "Heuberger_Leopold_1786_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308", "author": "", "orig_id": 1417183}}, {"model": "metainfo.source", "pk": 14528, "fields": {"orig_filename": "Heuberger_Richard-Franz-Joseph_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308f.", "author": "", "orig_id": 1417184}}, {"model": "metainfo.source", "pk": 14529, "fields": {"orig_filename": "Heuffel_Johann_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417185}}, {"model": "metainfo.source", "pk": 14530, "fields": {"orig_filename": "Heurteur_Nikolaus_1781_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417187}}, {"model": "metainfo.source", "pk": 14531, "fields": {"orig_filename": "Heussenstamm-Heissenstein-Graefenhausen_Theodor_1801_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417188}}, {"model": "metainfo.source", "pk": 14532, "fields": {"orig_filename": "Heveroch_Antonin_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309f.", "author": "", "orig_id": 1417189}}, {"model": "metainfo.source", "pk": 14533, "fields": {"orig_filename": "Hevesi_Ludwig_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417190}}, {"model": "metainfo.source", "pk": 14534, "fields": {"orig_filename": "Hejda_Wilhelm_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417731}}, {"model": "metainfo.source", "pk": 14535, "fields": {"orig_filename": "Helcelet_Johann_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417801}}, {"model": "metainfo.source", "pk": 14536, "fields": {"orig_filename": "Helcel_Antoni-Zygmunt_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254f.", "author": "", "orig_id": 1417800}}, {"model": "metainfo.source", "pk": 14537, "fields": {"orig_filename": "Held_Johann-Theobald_1773_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417802}}, {"model": "metainfo.source", "pk": 14538, "fields": {"orig_filename": "Held_Leo_1874_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417803}}, {"model": "metainfo.source", "pk": 14539, "fields": {"orig_filename": "Held_Ludwig_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417804}}, {"model": "metainfo.source", "pk": 14540, "fields": {"orig_filename": "Helfenstein_Alois_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417805}}, {"model": "metainfo.source", "pk": 14541, "fields": {"orig_filename": "Helferstorfer_Othmar_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256", "author": "", "orig_id": 1417807}}, {"model": "metainfo.source", "pk": 14542, "fields": {"orig_filename": "Helfert_Joseph-Alexander_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256f.", "author": "", "orig_id": 1417809}}, {"model": "metainfo.source", "pk": 14543, "fields": {"orig_filename": "Helfert_Joseph_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256", "author": "", "orig_id": 1417808}}, {"model": "metainfo.source", "pk": 14544, "fields": {"orig_filename": "Helfert_Vladimir_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 257", "author": "", "orig_id": 1417810}}, {"model": "metainfo.source", "pk": 14545, "fields": {"orig_filename": "Helfer_Johann-Wilhelm_1810_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417806}}, {"model": "metainfo.source", "pk": 14546, "fields": {"orig_filename": "Hellenbach_Lazar_1827_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417814}}, {"model": "metainfo.source", "pk": 14547, "fields": {"orig_filename": "Hellensteiner_Emma_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417815}}, {"model": "metainfo.source", "pk": 14548, "fields": {"orig_filename": "Heller-Hellwald_Friedrich-Anton_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417897}}, {"model": "metainfo.source", "pk": 14549, "fields": {"orig_filename": "Heller-Hellwald_Friedrich-Jakob_1798_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417898}}, {"model": "metainfo.source", "pk": 14550, "fields": {"orig_filename": "Heller-Ostersetzer_Hermine_1874_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417900}}, {"model": "metainfo.source", "pk": 14551, "fields": {"orig_filename": "Heller_Eduard_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417816}}, {"model": "metainfo.source", "pk": 14552, "fields": {"orig_filename": "Heller_Gustav_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417817}}, {"model": "metainfo.source", "pk": 14553, "fields": {"orig_filename": "Heller_Hermann-Vinzenz_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417818}}, {"model": "metainfo.source", "pk": 14554, "fields": {"orig_filename": "Heller_Isidor_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417819}}, {"model": "metainfo.source", "pk": 14555, "fields": {"orig_filename": "Heller_Johann-Florian_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259f.", "author": "", "orig_id": 1417820}}, {"model": "metainfo.source", "pk": 14556, "fields": {"orig_filename": "Heller_Josef_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417887}}, {"model": "metainfo.source", "pk": 14557, "fields": {"orig_filename": "Heller_Josef_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417888}}, {"model": "metainfo.source", "pk": 14558, "fields": {"orig_filename": "Heller_Kamill_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417889}}, {"model": "metainfo.source", "pk": 14559, "fields": {"orig_filename": "Heller_Karl-Bartholomaeus_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260f.", "author": "", "orig_id": 1417891}}, {"model": "metainfo.source", "pk": 14560, "fields": {"orig_filename": "Heller_Karl-Maria_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417892}}, {"model": "metainfo.source", "pk": 14561, "fields": {"orig_filename": "Heller_Kurt_1898_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417893}}, {"model": "metainfo.source", "pk": 14562, "fields": {"orig_filename": "Heller_Prokop-Benedikt_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417894}}, {"model": "metainfo.source", "pk": 14563, "fields": {"orig_filename": "Heller_Seligmann_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261f.", "author": "", "orig_id": 1417895}}, {"model": "metainfo.source", "pk": 14564, "fields": {"orig_filename": "Heller_Simon_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417896}}, {"model": "metainfo.source", "pk": 14565, "fields": {"orig_filename": "Helletsgruber_Anton_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262f.", "author": "", "orig_id": 1417901}}, {"model": "metainfo.source", "pk": 14566, "fields": {"orig_filename": "Hellich_Bohuslav_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417903}}, {"model": "metainfo.source", "pk": 14567, "fields": {"orig_filename": "Hellich_Josef-Adalbert_1807_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417904}}, {"model": "metainfo.source", "pk": 14568, "fields": {"orig_filename": "Hellmann_Alois-Philipp_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417905}}, {"model": "metainfo.source", "pk": 14569, "fields": {"orig_filename": "Hellmann_Heinrich_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417906}}, {"model": "metainfo.source", "pk": 14570, "fields": {"orig_filename": "Hellmann_Jakob_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417978}}, {"model": "metainfo.source", "pk": 14571, "fields": {"orig_filename": "Hellmayr_Carl-Eduard_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263f.", "author": "", "orig_id": 1417979}}, {"model": "metainfo.source", "pk": 14572, "fields": {"orig_filename": "Hellmer_Edmund_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 264f.", "author": "", "orig_id": 1417980}}, {"model": "metainfo.source", "pk": 14573, "fields": {"orig_filename": "Hellmer_Edmund_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417981}}, {"model": "metainfo.source", "pk": 14574, "fields": {"orig_filename": "Hellmer_Johann-Karl_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417982}}, {"model": "metainfo.source", "pk": 14575, "fields": {"orig_filename": "Hellmesberger_Ferdinand_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417983}}, {"model": "metainfo.source", "pk": 14576, "fields": {"orig_filename": "Hellmesberger_Georg_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265f.", "author": "", "orig_id": 1417984}}, {"model": "metainfo.source", "pk": 14577, "fields": {"orig_filename": "Hellmesberger_Georg_1830_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266", "author": "", "orig_id": 1417985}}, {"model": "metainfo.source", "pk": 14578, "fields": {"orig_filename": "Hellmesberger_Joseph_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266", "author": "", "orig_id": 1417987}}, {"model": "metainfo.source", "pk": 14579, "fields": {"orig_filename": "Hellwag_Konrad-Wilhelm_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266f.", "author": "", "orig_id": 1417988}}, {"model": "metainfo.source", "pk": 14580, "fields": {"orig_filename": "Hellweger_Franz_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267", "author": "", "orig_id": 1417989}}, {"model": "metainfo.source", "pk": 14581, "fields": {"orig_filename": "Hellweger_Michael_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267", "author": "", "orig_id": 1417990}}, {"model": "metainfo.source", "pk": 14582, "fields": {"orig_filename": "Helly_Carl_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267f.", "author": "", "orig_id": 1417991}}, {"model": "metainfo.source", "pk": 14583, "fields": {"orig_filename": "Hell_Gustav_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417811}}, {"model": "metainfo.source", "pk": 14584, "fields": {"orig_filename": "Hell_Josef_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417812}}, {"model": "metainfo.source", "pk": 14585, "fields": {"orig_filename": "Helmer_Gilbert_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268f.", "author": "", "orig_id": 1417995}}, {"model": "metainfo.source", "pk": 14586, "fields": {"orig_filename": "Helmer_Hermann_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417996}}, {"model": "metainfo.source", "pk": 14587, "fields": {"orig_filename": "Helmhacker_Rudolf_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269", "author": "", "orig_id": 1417997}}, {"model": "metainfo.source", "pk": 14588, "fields": {"orig_filename": "Helmreichen-Brunnfeld_Virgil_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269", "author": "", "orig_id": 1417998}}, {"model": "metainfo.source", "pk": 14589, "fields": {"orig_filename": "Helm_Joseph-Alois_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417992}}, {"model": "metainfo.source", "pk": 14590, "fields": {"orig_filename": "Helm_Theodor_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417993}}, {"model": "metainfo.source", "pk": 14591, "fields": {"orig_filename": "Helm_Theodor_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417994}}, {"model": "metainfo.source", "pk": 14592, "fields": {"orig_filename": "Hemala_Franz_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269f.", "author": "", "orig_id": 1417999}}, {"model": "metainfo.source", "pk": 14593, "fields": {"orig_filename": "Hemerlein_Karl_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270", "author": "", "orig_id": 1418000}}, {"model": "metainfo.source", "pk": 14594, "fields": {"orig_filename": "Hemmelmayr-Augustenfeld_Franz-Josef_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270", "author": "", "orig_id": 1418001}}, {"model": "metainfo.source", "pk": 14595, "fields": {"orig_filename": "Hempel_Gustav_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270f.", "author": "", "orig_id": 1418075}}, {"model": "metainfo.source", "pk": 14596, "fields": {"orig_filename": "Hempel_Josef_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 271", "author": "", "orig_id": 1418076}}, {"model": "metainfo.source", "pk": 14597, "fields": {"orig_filename": "Hempt_Adolf_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2178551}}, {"model": "metainfo.source", "pk": 14598, "fields": {"orig_filename": "Henckel-Donnersmarck_Hugo_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 271f.", "author": "", "orig_id": 1418077}}, {"model": "metainfo.source", "pk": 14599, "fields": {"orig_filename": "Hendel_Friedrich_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418078}}, {"model": "metainfo.source", "pk": 14600, "fields": {"orig_filename": "Hendel_Maximilian_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418079}}, {"model": "metainfo.source", "pk": 14601, "fields": {"orig_filename": "Hengelmueller-Hengervar_Ladislaus_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418080}}, {"model": "metainfo.source", "pk": 14602, "fields": {"orig_filename": "Hengst_Oswald_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418081}}, {"model": "metainfo.source", "pk": 14603, "fields": {"orig_filename": "Henikstein_Alfred_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418082}}, {"model": "metainfo.source", "pk": 14604, "fields": {"orig_filename": "Henneberg_Hugo_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418083}}, {"model": "metainfo.source", "pk": 14605, "fields": {"orig_filename": "Henneberg_Johann-Bapt_1769_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273f.", "author": "", "orig_id": 1418084}}, {"model": "metainfo.source", "pk": 14606, "fields": {"orig_filename": "Henning_Gottfried-Wilhelm_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418085}}, {"model": "metainfo.source", "pk": 14607, "fields": {"orig_filename": "Henning_Karl_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418086}}, {"model": "metainfo.source", "pk": 14608, "fields": {"orig_filename": "Henning_Roland_1896_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418087}}, {"model": "metainfo.source", "pk": 14609, "fields": {"orig_filename": "Henning_Theodor_1897_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418088}}, {"model": "metainfo.source", "pk": 14610, "fields": {"orig_filename": "Henrich_Josef_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418089}}, {"model": "metainfo.source", "pk": 14611, "fields": {"orig_filename": "Henschel_Gustav_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418091}}, {"model": "metainfo.source", "pk": 14612, "fields": {"orig_filename": "Hensler_Karl-Friedrich_1759_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418092}}, {"model": "metainfo.source", "pk": 14613, "fields": {"orig_filename": "Henszlmann_Emerich_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275f.", "author": "", "orig_id": 1418093}}, {"model": "metainfo.source", "pk": 14614, "fields": {"orig_filename": "Hentzi-Arthurm_Heinrich_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276", "author": "", "orig_id": 1418094}}, {"model": "metainfo.source", "pk": 14615, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Anton-Seraphin_1767_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276", "author": "", "orig_id": 1418095}}, {"model": "metainfo.source", "pk": 14616, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Hans_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276f.", "author": "", "orig_id": 1418096}}, {"model": "metainfo.source", "pk": 14617, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Josef_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 277", "author": "", "orig_id": 1418097}}, {"model": "metainfo.source", "pk": 14618, "fields": {"orig_filename": "Herbeck_Johann_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 277f.", "author": "", "orig_id": 1418098}}, {"model": "metainfo.source", "pk": 14619, "fields": {"orig_filename": "Herbert-Kerchnawe_Ernst_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416800}}, {"model": "metainfo.source", "pk": 14620, "fields": {"orig_filename": "Herberth_Carl_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416801}}, {"model": "metainfo.source", "pk": 14621, "fields": {"orig_filename": "Herbert_Albin_1787_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278", "author": "", "orig_id": 1418099}}, {"model": "metainfo.source", "pk": 14622, "fields": {"orig_filename": "Herbert_Franz-Paul_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278f.", "author": "", "orig_id": 1416798}}, {"model": "metainfo.source", "pk": 14623, "fields": {"orig_filename": "Herbert_Franz_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278", "author": "", "orig_id": 1416797}}, {"model": "metainfo.source", "pk": 14624, "fields": {"orig_filename": "Herbich_Franz_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416802}}, {"model": "metainfo.source", "pk": 14625, "fields": {"orig_filename": "Herbich_Franz_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279f.", "author": "", "orig_id": 1416803}}, {"model": "metainfo.source", "pk": 14626, "fields": {"orig_filename": "Herbsthoffer_Peter-Rudolf-Karl_1821_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416806}}, {"model": "metainfo.source", "pk": 14627, "fields": {"orig_filename": "Herbst_Eduard_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 280f.", "author": "", "orig_id": 1416804}}, {"model": "metainfo.source", "pk": 14628, "fields": {"orig_filename": "Herbst_Friederike_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416805}}, {"model": "metainfo.source", "pk": 14629, "fields": {"orig_filename": "Herczel_Emanuel_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416807}}, {"model": "metainfo.source", "pk": 14630, "fields": {"orig_filename": "Herdlicka_Theodor_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416808}}, {"model": "metainfo.source", "pk": 14631, "fields": {"orig_filename": "Herdtle_Hermann_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416809}}, {"model": "metainfo.source", "pk": 14632, "fields": {"orig_filename": "Herfurth_Franz-Karl_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416810}}, {"model": "metainfo.source", "pk": 14633, "fields": {"orig_filename": "Hergesel_Franz_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416811}}, {"model": "metainfo.source", "pk": 14634, "fields": {"orig_filename": "Herget_Anton_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416812}}, {"model": "metainfo.source", "pk": 14635, "fields": {"orig_filename": "Herget_Oskar_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416813}}, {"model": "metainfo.source", "pk": 14636, "fields": {"orig_filename": "Heric_Matija_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416814}}, {"model": "metainfo.source", "pk": 14637, "fields": {"orig_filename": "Hawel_Rudolf_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224f.", "author": "", "orig_id": 1418692}}, {"model": "metainfo.source", "pk": 14638, "fields": {"orig_filename": "Haydecker_Sebastian_1789_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1417340}}, {"model": "metainfo.source", "pk": 14639, "fields": {"orig_filename": "Haydinger_Franz_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225f.", "author": "", "orig_id": 1417341}}, {"model": "metainfo.source", "pk": 14640, "fields": {"orig_filename": "Hayd_Karl_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1418695}}, {"model": "metainfo.source", "pk": 14641, "fields": {"orig_filename": "Hayek_August_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226", "author": "", "orig_id": 1417342}}, {"model": "metainfo.source", "pk": 14642, "fields": {"orig_filename": "Hayek_Gustav_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226", "author": "", "orig_id": 1417343}}, {"model": "metainfo.source", "pk": 14643, "fields": {"orig_filename": "Hayek_Hermann_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226f.", "author": "", "orig_id": 1417345}}, {"model": "metainfo.source", "pk": 14644, "fields": {"orig_filename": "Haymerle_Franz-Josef_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227", "author": "", "orig_id": 1417346}}, {"model": "metainfo.source", "pk": 14645, "fields": {"orig_filename": "Haymerle_Heinrich_1828_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227", "author": "", "orig_id": 1417347}}, {"model": "metainfo.source", "pk": 14646, "fields": {"orig_filename": "Haynald_Ludwig_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227f.", "author": "", "orig_id": 1417348}}, {"model": "metainfo.source", "pk": 14647, "fields": {"orig_filename": "Haynau_Julius-Jacob_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 228f.", "author": "", "orig_id": 1417349}}, {"model": "metainfo.source", "pk": 14648, "fields": {"orig_filename": "Hazslinszky-Hazslin_Friedrich-August_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229", "author": "", "orig_id": 1417350}}, {"model": "metainfo.source", "pk": 14649, "fields": {"orig_filename": "Hazura_Karl_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229", "author": "", "orig_id": 1417351}}, {"model": "metainfo.source", "pk": 14650, "fields": {"orig_filename": "Heberdey_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 231", "author": "", "orig_id": 1417353}}, {"model": "metainfo.source", "pk": 14651, "fields": {"orig_filename": "Heberle_Therese_1805_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417354}}, {"model": "metainfo.source", "pk": 14652, "fields": {"orig_filename": "Hebra_Ferdinand_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417355}}, {"model": "metainfo.source", "pk": 14653, "fields": {"orig_filename": "Hebra_Hans_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417356}}, {"model": "metainfo.source", "pk": 14654, "fields": {"orig_filename": "Hechenblaikner_Ingenuin_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232f.", "author": "", "orig_id": 1417357}}, {"model": "metainfo.source", "pk": 14655, "fields": {"orig_filename": "Hechenbleikner_Louis_1893_1983.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441921}}, {"model": "metainfo.source", "pk": 14656, "fields": {"orig_filename": "Hecht_Adolf_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417358}}, {"model": "metainfo.source", "pk": 14657, "fields": {"orig_filename": "Hecht_Karl-Wilhelm_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417359}}, {"model": "metainfo.source", "pk": 14658, "fields": {"orig_filename": "Hecht_Victor_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417360}}, {"model": "metainfo.source", "pk": 14659, "fields": {"orig_filename": "Heckel_Johann-Jakob_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234f.", "author": "", "orig_id": 1417363}}, {"model": "metainfo.source", "pk": 14660, "fields": {"orig_filename": "Heckel_Karl-Ferdinand_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417436}}, {"model": "metainfo.source", "pk": 14661, "fields": {"orig_filename": "Heckenast_Gustav_1811_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417437}}, {"model": "metainfo.source", "pk": 14662, "fields": {"orig_filename": "Hecke_Wenzel_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234", "author": "", "orig_id": 1417362}}, {"model": "metainfo.source", "pk": 14663, "fields": {"orig_filename": "Hedrich_Franz_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417438}}, {"model": "metainfo.source", "pk": 14664, "fields": {"orig_filename": "Hedwig_Johann-Lukas_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417439}}, {"model": "metainfo.source", "pk": 14665, "fields": {"orig_filename": "Heeger_Ernst_1783_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417440}}, {"model": "metainfo.source", "pk": 14666, "fields": {"orig_filename": "Heeger_Viktor_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417441}}, {"model": "metainfo.source", "pk": 14667, "fields": {"orig_filename": "Heffter-Hohenburg_Johann-Ignaz_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417443}}, {"model": "metainfo.source", "pk": 14668, "fields": {"orig_filename": "Hefft_Anton_1815_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417442}}, {"model": "metainfo.source", "pk": 14669, "fields": {"orig_filename": "Hefter_Gustav_1871_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417444}}, {"model": "metainfo.source", "pk": 14670, "fields": {"orig_filename": "Hegedues-Eoer_Joseph-Franz_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417446}}, {"model": "metainfo.source", "pk": 14671, "fields": {"orig_filename": "Hegedues_Alexander_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236f.", "author": "", "orig_id": 1417445}}, {"model": "metainfo.source", "pk": 14672, "fields": {"orig_filename": "Hegele_Maximilian_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417447}}, {"model": "metainfo.source", "pk": 14673, "fields": {"orig_filename": "Hegemann_Otmar_1869_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417448}}, {"model": "metainfo.source", "pk": 14674, "fields": {"orig_filename": "Hegenbarth_Emanuel-Franz_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237f.", "author": "", "orig_id": 1417450}}, {"model": "metainfo.source", "pk": 14675, "fields": {"orig_filename": "Hegenbarth_Ernst_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417451}}, {"model": "metainfo.source", "pk": 14676, "fields": {"orig_filename": "Hegenbart_Fritz_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417449}}, {"model": "metainfo.source", "pk": 14677, "fields": {"orig_filename": "Heger-Gasser_Eugenie_1866_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417529}}, {"model": "metainfo.source", "pk": 14678, "fields": {"orig_filename": "Heger_Franz_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417452}}, {"model": "metainfo.source", "pk": 14679, "fields": {"orig_filename": "Heger_Franz_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417527}}, {"model": "metainfo.source", "pk": 14680, "fields": {"orig_filename": "Heger_Hans_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239", "author": "", "orig_id": 1417453}}, {"model": "metainfo.source", "pk": 14681, "fields": {"orig_filename": "Heger_Hilde_1899_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2057065}}, {"model": "metainfo.source", "pk": 14682, "fields": {"orig_filename": "Heger_Ignaz-Jakob_1808_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239f.", "author": "", "orig_id": 1417528}}, {"model": "metainfo.source", "pk": 14683, "fields": {"orig_filename": "Heger_Ignaz_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239", "author": "", "orig_id": 1417455}}, {"model": "metainfo.source", "pk": 14684, "fields": {"orig_filename": "Heicke_Joseph_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417530}}, {"model": "metainfo.source", "pk": 14685, "fields": {"orig_filename": "Heideloff_Josef_1747_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417533}}, {"model": "metainfo.source", "pk": 14686, "fields": {"orig_filename": "Heidenreich_Josef-Cal_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417534}}, {"model": "metainfo.source", "pk": 14687, "fields": {"orig_filename": "Heiderich_Franz_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 243", "author": "", "orig_id": 1417541}}, {"model": "metainfo.source", "pk": 14688, "fields": {"orig_filename": "Heider_Adolf_1858_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417535}}, {"model": "metainfo.source", "pk": 14689, "fields": {"orig_filename": "Heider_Arthur_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417536}}, {"model": "metainfo.source", "pk": 14690, "fields": {"orig_filename": "Heider_Gustav_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417537}}, {"model": "metainfo.source", "pk": 14691, "fields": {"orig_filename": "Heider_Karl_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241f.", "author": "", "orig_id": 1417538}}, {"model": "metainfo.source", "pk": 14692, "fields": {"orig_filename": "Heider_Moriz_1816_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 242", "author": "", "orig_id": 1417539}}, {"model": "metainfo.source", "pk": 14693, "fields": {"orig_filename": "Heider_Paul_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 242f.", "author": "", "orig_id": 1417540}}, {"model": "metainfo.source", "pk": 14694, "fields": {"orig_filename": "Heidler-Heilborn_Karl_1792_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 243f.", "author": "", "orig_id": 1417542}}, {"model": "metainfo.source", "pk": 14695, "fields": {"orig_filename": "Heidmann_Alberich_1808_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417543}}, {"model": "metainfo.source", "pk": 14696, "fields": {"orig_filename": "Heidmann_Johann-Anton_1772_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417544}}, {"model": "metainfo.source", "pk": 14697, "fields": {"orig_filename": "Heid_Nicolaus_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417532}}, {"model": "metainfo.source", "pk": 14698, "fields": {"orig_filename": "Heigl_Fritz_1895_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417545}}, {"model": "metainfo.source", "pk": 14699, "fields": {"orig_filename": "Heigl_Paul_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1464354}}, {"model": "metainfo.source", "pk": 14700, "fields": {"orig_filename": "Heilinger_Alois_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1419004}}, {"model": "metainfo.source", "pk": 14701, "fields": {"orig_filename": "Heilmann_Albert_1832_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417548}}, {"model": "metainfo.source", "pk": 14702, "fields": {"orig_filename": "Heilmann_Anton_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244f.", "author": "", "orig_id": 1417549}}, {"model": "metainfo.source", "pk": 14703, "fields": {"orig_filename": "Heim-San-Martino-Carso_Geza_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417550}}, {"model": "metainfo.source", "pk": 14704, "fields": {"orig_filename": "Heimel_Marie-Sidonie_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417619}}, {"model": "metainfo.source", "pk": 14705, "fields": {"orig_filename": "Heimerl_Anton_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417621}}, {"model": "metainfo.source", "pk": 14706, "fields": {"orig_filename": "Heinbucher-Bikessy_Joseph_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246f.", "author": "", "orig_id": 1417627}}, {"model": "metainfo.source", "pk": 14707, "fields": {"orig_filename": "Heinefetter_Clara_1816_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247f.", "author": "", "orig_id": 1417632}}, {"model": "metainfo.source", "pk": 14708, "fields": {"orig_filename": "Heine_Albert_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417628}}, {"model": "metainfo.source", "pk": 14709, "fields": {"orig_filename": "Heine_Ferdinand_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417629}}, {"model": "metainfo.source", "pk": 14710, "fields": {"orig_filename": "Heine_Karl-Wilhelm_1838_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417630}}, {"model": "metainfo.source", "pk": 14711, "fields": {"orig_filename": "Heinl_Franz_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417634}}, {"model": "metainfo.source", "pk": 14712, "fields": {"orig_filename": "Heinricher_Emil_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 250", "author": "", "orig_id": 1417713}}, {"model": "metainfo.source", "pk": 14713, "fields": {"orig_filename": "Heinrich_Albin_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417635}}, {"model": "metainfo.source", "pk": 14714, "fields": {"orig_filename": "Heinrich_Anton-Philipp_1781_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248f.", "author": "", "orig_id": 1417638}}, {"model": "metainfo.source", "pk": 14715, "fields": {"orig_filename": "Heinrich_Anton_1830_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417637}}, {"model": "metainfo.source", "pk": 14716, "fields": {"orig_filename": "Heinrich_August_1794_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249", "author": "", "orig_id": 1417639}}, {"model": "metainfo.source", "pk": 14717, "fields": {"orig_filename": "Heinrich_Gustav_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417640}}, {"model": "metainfo.source", "pk": 14718, "fields": {"orig_filename": "Heinrich_Johann-Josef-Karl_1737_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249", "author": "", "orig_id": 1417711}}, {"model": "metainfo.source", "pk": 14719, "fields": {"orig_filename": "Heinrich_Josef_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249f.", "author": "", "orig_id": 1417712}}, {"model": "metainfo.source", "pk": 14720, "fields": {"orig_filename": "Heintl_Franz_1769_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 250f.", "author": "", "orig_id": 1417714}}, {"model": "metainfo.source", "pk": 14721, "fields": {"orig_filename": "Heintschel-Heinegg_Hanns-Georg_1919_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417715}}, {"model": "metainfo.source", "pk": 14722, "fields": {"orig_filename": "Heinzelmann_Johannes_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252", "author": "", "orig_id": 1417720}}, {"model": "metainfo.source", "pk": 14723, "fields": {"orig_filename": "Heinzel_Richard_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252", "author": "", "orig_id": 1417719}}, {"model": "metainfo.source", "pk": 14724, "fields": {"orig_filename": "Heinz_Julius_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417716}}, {"model": "metainfo.source", "pk": 14725, "fields": {"orig_filename": "Heinz_Rudolf_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417717}}, {"model": "metainfo.source", "pk": 14726, "fields": {"orig_filename": "Heinz_Sebastian_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251f.", "author": "", "orig_id": 1417718}}, {"model": "metainfo.source", "pk": 14727, "fields": {"orig_filename": "Hein_Alois-Raimund_1852_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245f.", "author": "", "orig_id": 1417623}}, {"model": "metainfo.source", "pk": 14728, "fields": {"orig_filename": "Hein_Franz_1808_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417624}}, {"model": "metainfo.source", "pk": 14729, "fields": {"orig_filename": "Hein_Sigmund_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417625}}, {"model": "metainfo.source", "pk": 14730, "fields": {"orig_filename": "Hein_Wilhelm_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417626}}, {"model": "metainfo.source", "pk": 14731, "fields": {"orig_filename": "Heischmann_Eugen_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252f.", "author": "", "orig_id": 1417722}}, {"model": "metainfo.source", "pk": 14732, "fields": {"orig_filename": "Heisinger_Adolf-Johann-Bapt_1808_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417723}}, {"model": "metainfo.source", "pk": 14733, "fields": {"orig_filename": "Heissl_Ernst_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417726}}, {"model": "metainfo.source", "pk": 14734, "fields": {"orig_filename": "Heiss_Berta_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417725}}, {"model": "metainfo.source", "pk": 14735, "fields": {"orig_filename": "Heitler_Moritz_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417727}}, {"model": "metainfo.source", "pk": 14736, "fields": {"orig_filename": "Heitzler_Karl_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417728}}, {"model": "metainfo.source", "pk": 14737, "fields": {"orig_filename": "Heitzmann_Julius_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417729}}, {"model": "metainfo.source", "pk": 14738, "fields": {"orig_filename": "Heitzmann_Karl_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417730}}, {"model": "metainfo.source", "pk": 14739, "fields": {"orig_filename": "Hartmann_Friedrich_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418321}}, {"model": "metainfo.source", "pk": 14740, "fields": {"orig_filename": "Hartmann_Friedrich_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418322}}, {"model": "metainfo.source", "pk": 14741, "fields": {"orig_filename": "Hartmann_Helene_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418323}}, {"model": "metainfo.source", "pk": 14742, "fields": {"orig_filename": "Hartmann_Karl_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418324}}, {"model": "metainfo.source", "pk": 14743, "fields": {"orig_filename": "Hartmann_Ludo-Moritz_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195f.", "author": "", "orig_id": 1418325}}, {"model": "metainfo.source", "pk": 14744, "fields": {"orig_filename": "Hartmann_Moritz_1821_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 196f.", "author": "", "orig_id": 1418326}}, {"model": "metainfo.source", "pk": 14745, "fields": {"orig_filename": "Hartmann_Philipp-Karl_1773_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418327}}, {"model": "metainfo.source", "pk": 14746, "fields": {"orig_filename": "Hartmayr_Joseph_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197f.", "author": "", "orig_id": 1418392}}, {"model": "metainfo.source", "pk": 14747, "fields": {"orig_filename": "Hartung_Ernst_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418393}}, {"model": "metainfo.source", "pk": 14748, "fields": {"orig_filename": "Harum_Peter_1825_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418394}}, {"model": "metainfo.source", "pk": 14749, "fields": {"orig_filename": "Haschek_Eduard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198f.", "author": "", "orig_id": 1418396}}, {"model": "metainfo.source", "pk": 14750, "fields": {"orig_filename": "Haschka_Lorenz-Leopold_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418397}}, {"model": "metainfo.source", "pk": 14751, "fields": {"orig_filename": "Haschowec_Ferdinand_1902_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418398}}, {"model": "metainfo.source", "pk": 14752, "fields": {"orig_filename": "Hasch_Karl_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418395}}, {"model": "metainfo.source", "pk": 14753, "fields": {"orig_filename": "Hasek_Jaroslav_1883_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418399}}, {"model": "metainfo.source", "pk": 14754, "fields": {"orig_filename": "Haselbach_Volkmar_1909_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2091927}}, {"model": "metainfo.source", "pk": 14755, "fields": {"orig_filename": "Hasenauer_Carl_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418400}}, {"model": "metainfo.source", "pk": 14756, "fields": {"orig_filename": "Hasenhut_Anton_1766_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200", "author": "", "orig_id": 1418401}}, {"model": "metainfo.source", "pk": 14757, "fields": {"orig_filename": "Hasenhut_Martina-Pauline_1809_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200", "author": "", "orig_id": 1418402}}, {"model": "metainfo.source", "pk": 14758, "fields": {"orig_filename": "Hasenoehrl_Friedrich_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200f.", "author": "", "orig_id": 1418403}}, {"model": "metainfo.source", "pk": 14759, "fields": {"orig_filename": "Hasenoehrl_Viktor_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 201", "author": "", "orig_id": 1418404}}, {"model": "metainfo.source", "pk": 14760, "fields": {"orig_filename": "Haskovec_Ladislav_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 201", "author": "", "orig_id": 1418405}}, {"model": "metainfo.source", "pk": 14761, "fields": {"orig_filename": "Hasler_Karel_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2171664}}, {"model": "metainfo.source", "pk": 14762, "fields": {"orig_filename": "Haslinger_Tobias_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418406}}, {"model": "metainfo.source", "pk": 14763, "fields": {"orig_filename": "Haslroither_Gerhard_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418407}}, {"model": "metainfo.source", "pk": 14764, "fields": {"orig_filename": "Hasner-Artha_Josef_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418408}}, {"model": "metainfo.source", "pk": 14765, "fields": {"orig_filename": "Hasner-Artha_Leopold_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202f.", "author": "", "orig_id": 1418409}}, {"model": "metainfo.source", "pk": 14766, "fields": {"orig_filename": "Hasnik_Josef_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 203", "author": "", "orig_id": 1418410}}, {"model": "metainfo.source", "pk": 14767, "fields": {"orig_filename": "Haspinger_Joachim_1776_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 203f.", "author": "", "orig_id": 1418411}}, {"model": "metainfo.source", "pk": 14768, "fields": {"orig_filename": "Hassack_Karl_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418412}}, {"model": "metainfo.source", "pk": 14769, "fields": {"orig_filename": "Hasselt-Barth_Anna-Maria-Wilhelmine_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418413}}, {"model": "metainfo.source", "pk": 14770, "fields": {"orig_filename": "Hasslinger-Hassingen_Johann-Nepomuk_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418414}}, {"model": "metainfo.source", "pk": 14771, "fields": {"orig_filename": "Hasslwander_Friedrich_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418415}}, {"model": "metainfo.source", "pk": 14772, "fields": {"orig_filename": "Hasslwander_Joseph_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204f.", "author": "", "orig_id": 1418416}}, {"model": "metainfo.source", "pk": 14773, "fields": {"orig_filename": "Hasslwanter_Johann_1805_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205", "author": "", "orig_id": 1418482}}, {"model": "metainfo.source", "pk": 14774, "fields": {"orig_filename": "Hassmann_Karl-Ludwig_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205", "author": "", "orig_id": 1418483}}, {"model": "metainfo.source", "pk": 14775, "fields": {"orig_filename": "Hassreiter_Josef_1845_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205f.", "author": "", "orig_id": 1418484}}, {"model": "metainfo.source", "pk": 14776, "fields": {"orig_filename": "Hatheyer_Franz-Sales_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207", "author": "", "orig_id": 1418486}}, {"model": "metainfo.source", "pk": 14777, "fields": {"orig_filename": "Hatle_Eduard_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207", "author": "", "orig_id": 1418487}}, {"model": "metainfo.source", "pk": 14778, "fields": {"orig_filename": "Hatschek_Berthold_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207f.", "author": "", "orig_id": 1418488}}, {"model": "metainfo.source", "pk": 14779, "fields": {"orig_filename": "Hatschek_Ludwig_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208", "author": "", "orig_id": 1418489}}, {"model": "metainfo.source", "pk": 14780, "fields": {"orig_filename": "Hattala_Martin_1821_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208", "author": "", "orig_id": 1418490}}, {"model": "metainfo.source", "pk": 14781, "fields": {"orig_filename": "Hattler_Franz_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208f.", "author": "", "orig_id": 1418491}}, {"model": "metainfo.source", "pk": 14782, "fields": {"orig_filename": "Hatvany-Deutsch_Alexander_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418492}}, {"model": "metainfo.source", "pk": 14783, "fields": {"orig_filename": "Hauberrisser_Georg-Joseph_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418495}}, {"model": "metainfo.source", "pk": 14784, "fields": {"orig_filename": "Hauberrisser_Georg_1781_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418494}}, {"model": "metainfo.source", "pk": 14785, "fields": {"orig_filename": "Haubner_Matthaeus_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209f.", "author": "", "orig_id": 1418496}}, {"model": "metainfo.source", "pk": 14786, "fields": {"orig_filename": "Hauck_Ferdinand_1845_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418497}}, {"model": "metainfo.source", "pk": 14787, "fields": {"orig_filename": "Haudek_Martin_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418498}}, {"model": "metainfo.source", "pk": 14788, "fields": {"orig_filename": "Hauder_Franz_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418499}}, {"model": "metainfo.source", "pk": 14789, "fields": {"orig_filename": "Hauer_Franz_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 211", "author": "", "orig_id": 1418500}}, {"model": "metainfo.source", "pk": 14790, "fields": {"orig_filename": "Hauer_Johann-Georg_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 211f.", "author": "", "orig_id": 1418501}}, {"model": "metainfo.source", "pk": 14791, "fields": {"orig_filename": "Hauer_Joseph_1778_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418502}}, {"model": "metainfo.source", "pk": 14792, "fields": {"orig_filename": "Hauer_Julius_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418503}}, {"model": "metainfo.source", "pk": 14793, "fields": {"orig_filename": "Hauer_Karl_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418504}}, {"model": "metainfo.source", "pk": 14794, "fields": {"orig_filename": "Hauffe_Leopold_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212f.", "author": "", "orig_id": 1418505}}, {"model": "metainfo.source", "pk": 14795, "fields": {"orig_filename": "Hauger_Georg_1792_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418506}}, {"model": "metainfo.source", "pk": 14796, "fields": {"orig_filename": "Haugwitz_Eugen-Wilhelm_1777_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418577}}, {"model": "metainfo.source", "pk": 14797, "fields": {"orig_filename": "Hauke_Franz_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418578}}, {"model": "metainfo.source", "pk": 14798, "fields": {"orig_filename": "Hauler_Edmund_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213f.", "author": "", "orig_id": 1418579}}, {"model": "metainfo.source", "pk": 14799, "fields": {"orig_filename": "Hauler_Johann_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 214", "author": "", "orig_id": 1418580}}, {"model": "metainfo.source", "pk": 14800, "fields": {"orig_filename": "Haulik-Varallya_Georg_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 214f.", "author": "", "orig_id": 1418581}}, {"model": "metainfo.source", "pk": 14801, "fields": {"orig_filename": "Haunold_Karl-Franz-Emanuel_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418582}}, {"model": "metainfo.source", "pk": 14802, "fields": {"orig_filename": "Hauptfleisch_Johann_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418585}}, {"model": "metainfo.source", "pk": 14803, "fields": {"orig_filename": "Hauptmann_Franc_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418586}}, {"model": "metainfo.source", "pk": 14804, "fields": {"orig_filename": "Hauptmann_Lorenz_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215f.", "author": "", "orig_id": 1418587}}, {"model": "metainfo.source", "pk": 14805, "fields": {"orig_filename": "Haupt_Josef_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418583}}, {"model": "metainfo.source", "pk": 14806, "fields": {"orig_filename": "Haupt_Karl_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418584}}, {"model": "metainfo.source", "pk": 14807, "fields": {"orig_filename": "Hauschka_Vinzenz_1766_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216", "author": "", "orig_id": 1418589}}, {"model": "metainfo.source", "pk": 14808, "fields": {"orig_filename": "Hauschner_Auguste_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216f.", "author": "", "orig_id": 1418590}}, {"model": "metainfo.source", "pk": 14809, "fields": {"orig_filename": "Hausegger_Friedrich_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418591}}, {"model": "metainfo.source", "pk": 14810, "fields": {"orig_filename": "Hausegger_Siegmund_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418592}}, {"model": "metainfo.source", "pk": 14811, "fields": {"orig_filename": "Hauser_Alois_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418593}}, {"model": "metainfo.source", "pk": 14812, "fields": {"orig_filename": "Hauser_Anna_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418594}}, {"model": "metainfo.source", "pk": 14813, "fields": {"orig_filename": "Hauser_Eduard_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418596}}, {"model": "metainfo.source", "pk": 14814, "fields": {"orig_filename": "Hauser_Franz_1799_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418598}}, {"model": "metainfo.source", "pk": 14815, "fields": {"orig_filename": "Hauser_Johann-Nepomuk_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218f.", "author": "", "orig_id": 1418599}}, {"model": "metainfo.source", "pk": 14816, "fields": {"orig_filename": "Hauser_Karl_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 219", "author": "", "orig_id": 1418600}}, {"model": "metainfo.source", "pk": 14817, "fields": {"orig_filename": "Hauser_Miska_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 219f.", "author": "", "orig_id": 1418601}}, {"model": "metainfo.source", "pk": 14818, "fields": {"orig_filename": "Hauser_Otto_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 220", "author": "", "orig_id": 1418602}}, {"model": "metainfo.source", "pk": 14819, "fields": {"orig_filename": "Hauser_Paul_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 220f.", "author": "", "orig_id": 1418672}}, {"model": "metainfo.source", "pk": 14820, "fields": {"orig_filename": "Hauslab_Franz_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 221", "author": "", "orig_id": 1418673}}, {"model": "metainfo.source", "pk": 14821, "fields": {"orig_filename": "Hauslab_Franz_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 221", "author": "", "orig_id": 1418674}}, {"model": "metainfo.source", "pk": 14822, "fields": {"orig_filename": "Hausleithner_Rudolf_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418675}}, {"model": "metainfo.source", "pk": 14823, "fields": {"orig_filename": "Hausmann_Franz_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418676}}, {"model": "metainfo.source", "pk": 14824, "fields": {"orig_filename": "Hausmann_Friedrich_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1451381}}, {"model": "metainfo.source", "pk": 14825, "fields": {"orig_filename": "Hausmann_Vaclav-Vlastimil_1850_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418677}}, {"model": "metainfo.source", "pk": 14826, "fields": {"orig_filename": "Hausmann_Walter_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418678}}, {"model": "metainfo.source", "pk": 14827, "fields": {"orig_filename": "Hausner_Otto_1827_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222f.", "author": "", "orig_id": 1418679}}, {"model": "metainfo.source", "pk": 14828, "fields": {"orig_filename": "Haussmann_Franziska-Maria-Elisabeth_1818_1853.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2186811}}, {"model": "metainfo.source", "pk": 14829, "fields": {"orig_filename": "Hauswirth_Ernest_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418681}}, {"model": "metainfo.source", "pk": 14830, "fields": {"orig_filename": "Haus_Anton_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216", "author": "", "orig_id": 1418588}}, {"model": "metainfo.source", "pk": 14831, "fields": {"orig_filename": "Hauthaler_Willibald_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418683}}, {"model": "metainfo.source", "pk": 14832, "fields": {"orig_filename": "Havelec_Josef_1816_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418685}}, {"model": "metainfo.source", "pk": 14833, "fields": {"orig_filename": "Havlicek_Hans_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418687}}, {"model": "metainfo.source", "pk": 14834, "fields": {"orig_filename": "Havlicek_Karel_1821_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418688}}, {"model": "metainfo.source", "pk": 14835, "fields": {"orig_filename": "Havlicek_Vinzenz_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418690}}, {"model": "metainfo.source", "pk": 14836, "fields": {"orig_filename": "Havranek_Friedrich_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418691}}, {"model": "metainfo.source", "pk": 14837, "fields": {"orig_filename": "Hawelka_Friedrich_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1418694}}, {"model": "metainfo.source", "pk": 14838, "fields": {"orig_filename": "Haltrich_Josef_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419341}}, {"model": "metainfo.source", "pk": 14839, "fields": {"orig_filename": "Hamber_Edmund_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1457859}}, {"model": "metainfo.source", "pk": 14840, "fields": {"orig_filename": "Hamburger_Julius_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419342}}, {"model": "metainfo.source", "pk": 14841, "fields": {"orig_filename": "Hamburger_Rudolf_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419343}}, {"model": "metainfo.source", "pk": 14842, "fields": {"orig_filename": "Hamerle_Andreas_1837_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163f.", "author": "", "orig_id": 1419344}}, {"model": "metainfo.source", "pk": 14843, "fields": {"orig_filename": "Hamernik_Josef_1810_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419346}}, {"model": "metainfo.source", "pk": 14844, "fields": {"orig_filename": "Hamik_Anton-Josef_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1447869}}, {"model": "metainfo.source", "pk": 14845, "fields": {"orig_filename": "Hammel_Rudolf_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164f.", "author": "", "orig_id": 1419349}}, {"model": "metainfo.source", "pk": 14846, "fields": {"orig_filename": "Hammer-Purgstall_Joseph_1774_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165ff.", "author": "", "orig_id": 1419353}}, {"model": "metainfo.source", "pk": 14847, "fields": {"orig_filename": "Hammerle_Alois-Josef_1820_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419419}}, {"model": "metainfo.source", "pk": 14848, "fields": {"orig_filename": "Hammerling_Rupert_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168ff.", "author": "", "orig_id": 1419420}}, {"model": "metainfo.source", "pk": 14849, "fields": {"orig_filename": "Hammerl_Benedikt_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419417}}, {"model": "metainfo.source", "pk": 14850, "fields": {"orig_filename": "Hammerl_Hermann_1853_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419418}}, {"model": "metainfo.source", "pk": 14851, "fields": {"orig_filename": "Hammerschlag_Albert_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419421}}, {"model": "metainfo.source", "pk": 14852, "fields": {"orig_filename": "Hammerschlag_Peter_1902_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419422}}, {"model": "metainfo.source", "pk": 14853, "fields": {"orig_filename": "Hammerschmidt_Karl-Eduard_1801_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419423}}, {"model": "metainfo.source", "pk": 14854, "fields": {"orig_filename": "Hammerstein-Equord_Hans_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170f.", "author": "", "orig_id": 1419424}}, {"model": "metainfo.source", "pk": 14855, "fields": {"orig_filename": "Hammer_Hans_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419350}}, {"model": "metainfo.source", "pk": 14856, "fields": {"orig_filename": "Hammer_Wilhelm-Arthur_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419352}}, {"model": "metainfo.source", "pk": 14857, "fields": {"orig_filename": "Hammer_Wilhelm_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419351}}, {"model": "metainfo.source", "pk": 14858, "fields": {"orig_filename": "Hamme_Eduard-Voitus_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419348}}, {"model": "metainfo.source", "pk": 14859, "fields": {"orig_filename": "Hamm_Wilhelm-Philipp_1820_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419347}}, {"model": "metainfo.source", "pk": 14860, "fields": {"orig_filename": "Hampel_Franz_1834_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419426}}, {"model": "metainfo.source", "pk": 14861, "fields": {"orig_filename": "Hampel_Hans_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419427}}, {"model": "metainfo.source", "pk": 14862, "fields": {"orig_filename": "Hampel_Josef_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419428}}, {"model": "metainfo.source", "pk": 14863, "fields": {"orig_filename": "Hampel_Sigmund-Walter_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171f.", "author": "", "orig_id": 1419429}}, {"model": "metainfo.source", "pk": 14864, "fields": {"orig_filename": "Hampel_Theodor_1802_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419430}}, {"model": "metainfo.source", "pk": 14865, "fields": {"orig_filename": "Hamperl_Roland_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1420726}}, {"model": "metainfo.source", "pk": 14866, "fields": {"orig_filename": "Hampl-Haupolter_Emma_1897_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419431}}, {"model": "metainfo.source", "pk": 14867, "fields": {"orig_filename": "Hamza_Johann_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419432}}, {"model": "metainfo.source", "pk": 14868, "fields": {"orig_filename": "Hanak_Anton_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172f.", "author": "", "orig_id": 1419433}}, {"model": "metainfo.source", "pk": 14869, "fields": {"orig_filename": "Hanaman_Franjo_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173", "author": "", "orig_id": 1419434}}, {"model": "metainfo.source", "pk": 14870, "fields": {"orig_filename": "Hanausek_Eduard_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173", "author": "", "orig_id": 1419435}}, {"model": "metainfo.source", "pk": 14871, "fields": {"orig_filename": "Hanausek_Gustav_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173f.", "author": "", "orig_id": 1419436}}, {"model": "metainfo.source", "pk": 14872, "fields": {"orig_filename": "Hanausek_Thomas-Franz_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 174", "author": "", "orig_id": 1419437}}, {"model": "metainfo.source", "pk": 14873, "fields": {"orig_filename": "Handel-Mazzetti_Eduard_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175", "author": "", "orig_id": 1419511}}, {"model": "metainfo.source", "pk": 14874, "fields": {"orig_filename": "Handel-Mazzetti_Heinrich_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175f.", "author": "", "orig_id": 1419512}}, {"model": "metainfo.source", "pk": 14875, "fields": {"orig_filename": "Handel-Mazzetti_Viktor_1844_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419513}}, {"model": "metainfo.source", "pk": 14876, "fields": {"orig_filename": "Handel_Erasmus_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 174f.", "author": "", "orig_id": 1419438}}, {"model": "metainfo.source", "pk": 14877, "fields": {"orig_filename": "Handel_Rudolf_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175", "author": "", "orig_id": 1419439}}, {"model": "metainfo.source", "pk": 14878, "fields": {"orig_filename": "Handle_Augustin_1774_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419514}}, {"model": "metainfo.source", "pk": 14879, "fields": {"orig_filename": "Handlirsch_Adam_1864_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419515}}, {"model": "metainfo.source", "pk": 14880, "fields": {"orig_filename": "Handlirsch_Anton_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176f.", "author": "", "orig_id": 1419516}}, {"model": "metainfo.source", "pk": 14881, "fields": {"orig_filename": "Handloss_Karl_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177", "author": "", "orig_id": 1419517}}, {"model": "metainfo.source", "pk": 14882, "fields": {"orig_filename": "Handmann_Ludwig-Paul_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177", "author": "", "orig_id": 1419518}}, {"model": "metainfo.source", "pk": 14883, "fields": {"orig_filename": "Handmann_Rudolf_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177f.", "author": "", "orig_id": 1419519}}, {"model": "metainfo.source", "pk": 14884, "fields": {"orig_filename": "Hanf_Blasius_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178", "author": "", "orig_id": 1419520}}, {"model": "metainfo.source", "pk": 14885, "fields": {"orig_filename": "Hango_Hermann_1861_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178", "author": "", "orig_id": 1419521}}, {"model": "metainfo.source", "pk": 14886, "fields": {"orig_filename": "Hanka_Vaclav_1791_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178f.", "author": "", "orig_id": 1419522}}, {"model": "metainfo.source", "pk": 14887, "fields": {"orig_filename": "Hanke_Viktor_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419523}}, {"model": "metainfo.source", "pk": 14888, "fields": {"orig_filename": "Hannack_Josef_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419527}}, {"model": "metainfo.source", "pk": 14889, "fields": {"orig_filename": "Hannak_Emanuel_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419528}}, {"model": "metainfo.source", "pk": 14890, "fields": {"orig_filename": "Hanni_Lucius_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419529}}, {"model": "metainfo.source", "pk": 14891, "fields": {"orig_filename": "Hann_Franz-Gustav_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419524}}, {"model": "metainfo.source", "pk": 14892, "fields": {"orig_filename": "Hann_Georg_1897_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419525}}, {"model": "metainfo.source", "pk": 14893, "fields": {"orig_filename": "Hann_Julius_1839_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179f.", "author": "", "orig_id": 1419526}}, {"model": "metainfo.source", "pk": 14894, "fields": {"orig_filename": "Hanrieder_Norbert_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419530}}, {"model": "metainfo.source", "pk": 14895, "fields": {"orig_filename": "Hansch_Anton_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419532}}, {"model": "metainfo.source", "pk": 14896, "fields": {"orig_filename": "Hansel_Vincenz_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419533}}, {"model": "metainfo.source", "pk": 14897, "fields": {"orig_filename": "Hansen_Theophil_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419534}}, {"model": "metainfo.source", "pk": 14898, "fields": {"orig_filename": "Hanser_Laurentius_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1419535}}, {"model": "metainfo.source", "pk": 14899, "fields": {"orig_filename": "Hansgirg_Anton_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1419536}}, {"model": "metainfo.source", "pk": 14900, "fields": {"orig_filename": "Hansgirg_Karl-Viktor_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1418213}}, {"model": "metainfo.source", "pk": 14901, "fields": {"orig_filename": "Hanslick_Eduard_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183f.", "author": "", "orig_id": 1418214}}, {"model": "metainfo.source", "pk": 14902, "fields": {"orig_filename": "Hantken-Prudnik_Miksa_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184", "author": "", "orig_id": 1418215}}, {"model": "metainfo.source", "pk": 14903, "fields": {"orig_filename": "Hanusch_Alois_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184", "author": "", "orig_id": 1418216}}, {"model": "metainfo.source", "pk": 14904, "fields": {"orig_filename": "Hanusch_Ferdinand_1866_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184f.", "author": "", "orig_id": 1418217}}, {"model": "metainfo.source", "pk": 14905, "fields": {"orig_filename": "Hanusch_Ignaz-Jan_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 185f.", "author": "", "orig_id": 1418218}}, {"model": "metainfo.source", "pk": 14906, "fields": {"orig_filename": "Harambasic_August_1861_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418220}}, {"model": "metainfo.source", "pk": 14907, "fields": {"orig_filename": "Harasser_Georg_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418221}}, {"model": "metainfo.source", "pk": 14908, "fields": {"orig_filename": "Harasser_Urban_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418222}}, {"model": "metainfo.source", "pk": 14909, "fields": {"orig_filename": "Hardegg_Johann-Anton-Leonhard_1773_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418223}}, {"model": "metainfo.source", "pk": 14910, "fields": {"orig_filename": "Hardegg_Johann-Heinrich_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186f.", "author": "", "orig_id": 1418224}}, {"model": "metainfo.source", "pk": 14911, "fields": {"orig_filename": "Hardter_Andreas_1780_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187", "author": "", "orig_id": 1418225}}, {"model": "metainfo.source", "pk": 14912, "fields": {"orig_filename": "Hardtmuth_Joseph_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187", "author": "", "orig_id": 1418226}}, {"model": "metainfo.source", "pk": 14913, "fields": {"orig_filename": "Hardy_John-George_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188", "author": "", "orig_id": 1418228}}, {"model": "metainfo.source", "pk": 14914, "fields": {"orig_filename": "Hardy_John_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187f.", "author": "", "orig_id": 1418227}}, {"model": "metainfo.source", "pk": 14915, "fields": {"orig_filename": "Haring_Johann_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188f.", "author": "", "orig_id": 1418230}}, {"model": "metainfo.source", "pk": 14916, "fields": {"orig_filename": "Hari_Paul_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188", "author": "", "orig_id": 1418229}}, {"model": "metainfo.source", "pk": 14917, "fields": {"orig_filename": "Harlfinger_Richard_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418232}}, {"model": "metainfo.source", "pk": 14918, "fields": {"orig_filename": "Harl_Johann-Paul_1772_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418231}}, {"model": "metainfo.source", "pk": 14919, "fields": {"orig_filename": "Harmati_Sandor_1892_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418233}}, {"model": "metainfo.source", "pk": 14920, "fields": {"orig_filename": "Harmer_Leopold_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189f.", "author": "", "orig_id": 1418234}}, {"model": "metainfo.source", "pk": 14921, "fields": {"orig_filename": "Harnisch_Johann-Baptist_1777_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418235}}, {"model": "metainfo.source", "pk": 14922, "fields": {"orig_filename": "Harpf_Adolf_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418236}}, {"model": "metainfo.source", "pk": 14923, "fields": {"orig_filename": "Harpf_August_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418304}}, {"model": "metainfo.source", "pk": 14924, "fields": {"orig_filename": "Harpner_Gustav_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418305}}, {"model": "metainfo.source", "pk": 14925, "fields": {"orig_filename": "Harrach_Johann-Nepomuk_1828_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190f.", "author": "", "orig_id": 1418306}}, {"model": "metainfo.source", "pk": 14926, "fields": {"orig_filename": "Harrach_Karl-Borr_1761_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191", "author": "", "orig_id": 1418307}}, {"model": "metainfo.source", "pk": 14927, "fields": {"orig_filename": "Harras-Harrasowsky_Philipp_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191", "author": "", "orig_id": 1418308}}, {"model": "metainfo.source", "pk": 14928, "fields": {"orig_filename": "Harrer_Ignaz_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191f.", "author": "", "orig_id": 1418309}}, {"model": "metainfo.source", "pk": 14929, "fields": {"orig_filename": "Hartauer_Andreas_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418310}}, {"model": "metainfo.source", "pk": 14930, "fields": {"orig_filename": "Hartel_Wilhelm_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418311}}, {"model": "metainfo.source", "pk": 14931, "fields": {"orig_filename": "Hartenthal_Mathilde_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418312}}, {"model": "metainfo.source", "pk": 14932, "fields": {"orig_filename": "Hartig_Franz_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193", "author": "", "orig_id": 1418313}}, {"model": "metainfo.source", "pk": 14933, "fields": {"orig_filename": "Hartinger_Anton_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193", "author": "", "orig_id": 1418314}}, {"model": "metainfo.source", "pk": 14934, "fields": {"orig_filename": "Hartlieb-Wallthor_Karl-Vinzenz_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194f.", "author": "", "orig_id": 1418319}}, {"model": "metainfo.source", "pk": 14935, "fields": {"orig_filename": "Hartl_Hans_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193f.", "author": "", "orig_id": 1418315}}, {"model": "metainfo.source", "pk": 14936, "fields": {"orig_filename": "Hartl_Heinrich_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418316}}, {"model": "metainfo.source", "pk": 14937, "fields": {"orig_filename": "Hartl_Vinzenz_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418317}}, {"model": "metainfo.source", "pk": 14938, "fields": {"orig_filename": "Hartl_Wenzel_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418318}}, {"model": "metainfo.source", "pk": 14939, "fields": {"orig_filename": "Hartmann-Franzenshuld_Ernst_1840_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418328}}, {"model": "metainfo.source", "pk": 14940, "fields": {"orig_filename": "Hartmann-Franzenshuld_Johann_1764_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418391}}, {"model": "metainfo.source", "pk": 14941, "fields": {"orig_filename": "Hartmann_Ernst_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418320}}, {"model": "metainfo.source", "pk": 14942, "fields": {"orig_filename": "Hadzic_Osman-Nuri_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418927}}, {"model": "metainfo.source", "pk": 14943, "fields": {"orig_filename": "Haeckel_Anton__.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418929}}, {"model": "metainfo.source", "pk": 14944, "fields": {"orig_filename": "Haecker_Ludwig-Friedrich_1822_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418930}}, {"model": "metainfo.source", "pk": 14945, "fields": {"orig_filename": "Haefele_Engelhard_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418931}}, {"model": "metainfo.source", "pk": 14946, "fields": {"orig_filename": "Haehnel_Amalie_1806_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418932}}, {"model": "metainfo.source", "pk": 14947, "fields": {"orig_filename": "Haemmerle_Baptist_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418933}}, {"model": "metainfo.source", "pk": 14948, "fields": {"orig_filename": "Haemmerle_Casimir_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418934}}, {"model": "metainfo.source", "pk": 14949, "fields": {"orig_filename": "Haemmerle_Franz-Martin_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135f.", "author": "", "orig_id": 1418935}}, {"model": "metainfo.source", "pk": 14950, "fields": {"orig_filename": "Haemmerle_Martin_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418936}}, {"model": "metainfo.source", "pk": 14951, "fields": {"orig_filename": "Haemmerle_Otto_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418937}}, {"model": "metainfo.source", "pk": 14952, "fields": {"orig_filename": "Haemmerle_Theodor_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418938}}, {"model": "metainfo.source", "pk": 14953, "fields": {"orig_filename": "Haemmerle_Victor_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136f.", "author": "", "orig_id": 1419005}}, {"model": "metainfo.source", "pk": 14954, "fields": {"orig_filename": "Haenisch_Aloys_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 137", "author": "", "orig_id": 1419006}}, {"model": "metainfo.source", "pk": 14955, "fields": {"orig_filename": "Haenke_Thaddaeus-Peregrinus_1761_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 137f.", "author": "", "orig_id": 1419007}}, {"model": "metainfo.source", "pk": 14956, "fields": {"orig_filename": "Haensel_Peter_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419008}}, {"model": "metainfo.source", "pk": 14957, "fields": {"orig_filename": "Haerdtl_Eduard_1861_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419009}}, {"model": "metainfo.source", "pk": 14958, "fields": {"orig_filename": "Haerdtl_Guido_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419010}}, {"model": "metainfo.source", "pk": 14959, "fields": {"orig_filename": "Haerdtl_Hugo_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138f.", "author": "", "orig_id": 1419011}}, {"model": "metainfo.source", "pk": 14960, "fields": {"orig_filename": "Haerdtl_Josef_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419012}}, {"model": "metainfo.source", "pk": 14961, "fields": {"orig_filename": "Haerdtl_Karl_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419013}}, {"model": "metainfo.source", "pk": 14962, "fields": {"orig_filename": "Haettenschwiller_Joseph_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419014}}, {"model": "metainfo.source", "pk": 14963, "fields": {"orig_filename": "Haeusle_Johann-Michael_1809_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419015}}, {"model": "metainfo.source", "pk": 14964, "fields": {"orig_filename": "Haeusle_Joseph_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139f.", "author": "", "orig_id": 1419016}}, {"model": "metainfo.source", "pk": 14965, "fields": {"orig_filename": "Haeussermann_Reinhold_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140", "author": "", "orig_id": 1419017}}, {"model": "metainfo.source", "pk": 14966, "fields": {"orig_filename": "Hafferl_Franz-Anton_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140", "author": "", "orig_id": 1419019}}, {"model": "metainfo.source", "pk": 14967, "fields": {"orig_filename": "Hafferl_Josef-Heinrich_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140f.", "author": "", "orig_id": 1419020}}, {"model": "metainfo.source", "pk": 14968, "fields": {"orig_filename": "Haffner_August-Otto-Wilhelm_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141", "author": "", "orig_id": 1419021}}, {"model": "metainfo.source", "pk": 14969, "fields": {"orig_filename": "Haffner_Karl_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141", "author": "", "orig_id": 1419023}}, {"model": "metainfo.source", "pk": 14970, "fields": {"orig_filename": "Hafner_Josef_1799_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141f.", "author": "", "orig_id": 1419024}}, {"model": "metainfo.source", "pk": 14971, "fields": {"orig_filename": "Hafner_Josef_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142", "author": "", "orig_id": 1419025}}, {"model": "metainfo.source", "pk": 14972, "fields": {"orig_filename": "Hafner_Karl_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142", "author": "", "orig_id": 1419026}}, {"model": "metainfo.source", "pk": 14973, "fields": {"orig_filename": "Hafner_Karl_1905_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142f.", "author": "", "orig_id": 1419027}}, {"model": "metainfo.source", "pk": 14974, "fields": {"orig_filename": "Hagenauer_Arnold_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419094}}, {"model": "metainfo.source", "pk": 14975, "fields": {"orig_filename": "Hagenhofer_Franz_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419095}}, {"model": "metainfo.source", "pk": 14976, "fields": {"orig_filename": "Hagen_Johann-Georg_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419028}}, {"model": "metainfo.source", "pk": 14977, "fields": {"orig_filename": "Hagen_Kaspar_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419090}}, {"model": "metainfo.source", "pk": 14978, "fields": {"orig_filename": "Hagen_Ludwig_1824_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419091}}, {"model": "metainfo.source", "pk": 14979, "fields": {"orig_filename": "Hagen_Martin_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143f.", "author": "", "orig_id": 1419092}}, {"model": "metainfo.source", "pk": 14980, "fields": {"orig_filename": "Hagen_Theodor_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419093}}, {"model": "metainfo.source", "pk": 14981, "fields": {"orig_filename": "Hager-Allentsteig_Franz_1750_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145", "author": "", "orig_id": 1419101}}, {"model": "metainfo.source", "pk": 14982, "fields": {"orig_filename": "Hager_Edmund_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144f.", "author": "", "orig_id": 1419098}}, {"model": "metainfo.source", "pk": 14983, "fields": {"orig_filename": "Hager_Evermod_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145", "author": "", "orig_id": 1419099}}, {"model": "metainfo.source", "pk": 14984, "fields": {"orig_filename": "Hagin_Heinrich_1875_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145f.", "author": "", "orig_id": 1419102}}, {"model": "metainfo.source", "pk": 14985, "fields": {"orig_filename": "Hagleitner_Kaspar-Benedikt_1779_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 146", "author": "", "orig_id": 1419103}}, {"model": "metainfo.source", "pk": 14986, "fields": {"orig_filename": "Hagn_Theoderich_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 146", "author": "", "orig_id": 1419104}}, {"model": "metainfo.source", "pk": 14987, "fields": {"orig_filename": "Hahnekamp_Georg_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419108}}, {"model": "metainfo.source", "pk": 14988, "fields": {"orig_filename": "Hahn_Hans_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419105}}, {"model": "metainfo.source", "pk": 14989, "fields": {"orig_filename": "Hahn_Johann-Georg_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419106}}, {"model": "metainfo.source", "pk": 14990, "fields": {"orig_filename": "Haibel_Jakob_1762_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147f.", "author": "", "orig_id": 1419109}}, {"model": "metainfo.source", "pk": 14991, "fields": {"orig_filename": "Haibel_Sophie_1767_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419110}}, {"model": "metainfo.source", "pk": 14992, "fields": {"orig_filename": "Haidacher_Sebastian_1866_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149", "author": "", "orig_id": 1419171}}, {"model": "metainfo.source", "pk": 14993, "fields": {"orig_filename": "Haidegger_Wendelin_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149", "author": "", "orig_id": 1419172}}, {"model": "metainfo.source", "pk": 14994, "fields": {"orig_filename": "Haider_Franz_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149f.", "author": "", "orig_id": 1419173}}, {"model": "metainfo.source", "pk": 14995, "fields": {"orig_filename": "Haidinger_Wilhelm_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419174}}, {"model": "metainfo.source", "pk": 14996, "fields": {"orig_filename": "Haid_Franz_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419168}}, {"model": "metainfo.source", "pk": 14997, "fields": {"orig_filename": "Haid_Josef-Anton_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419169}}, {"model": "metainfo.source", "pk": 14998, "fields": {"orig_filename": "Haid_Kassian_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148f.", "author": "", "orig_id": 1419170}}, {"model": "metainfo.source", "pk": 14999, "fields": {"orig_filename": "Haimann_Giuseppe_1828_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419175}}, {"model": "metainfo.source", "pk": 15000, "fields": {"orig_filename": "Haimberger_Anton_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419176}}, {"model": "metainfo.source", "pk": 15001, "fields": {"orig_filename": "Haimerl_Franz-Xaver_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150f.", "author": "", "orig_id": 1419177}}, {"model": "metainfo.source", "pk": 15002, "fields": {"orig_filename": "Haindl_Anton-Franz_1803_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151", "author": "", "orig_id": 1419179}}, {"model": "metainfo.source", "pk": 15003, "fields": {"orig_filename": "Hainisch_Anton_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151f.", "author": "", "orig_id": 1419181}}, {"model": "metainfo.source", "pk": 15004, "fields": {"orig_filename": "Hainisch_Marianne_1839_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 152", "author": "", "orig_id": 1419182}}, {"model": "metainfo.source", "pk": 15005, "fields": {"orig_filename": "Hainisch_Michael_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 152f.", "author": "", "orig_id": 1419183}}, {"model": "metainfo.source", "pk": 15006, "fields": {"orig_filename": "Hainmueller_Otto_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 153", "author": "", "orig_id": 1419184}}, {"model": "metainfo.source", "pk": 15007, "fields": {"orig_filename": "Hain_Joseph_1809_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151", "author": "", "orig_id": 1419178}}, {"model": "metainfo.source", "pk": 15008, "fields": {"orig_filename": "Haiszler_Georg_1761_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 153", "author": "", "orig_id": 1419185}}, {"model": "metainfo.source", "pk": 15009, "fields": {"orig_filename": "Haitinger_Ludwig-Camillo_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 154", "author": "", "orig_id": 1419186}}, {"model": "metainfo.source", "pk": 15010, "fields": {"orig_filename": "Haitinger_Max_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 154f.", "author": "", "orig_id": 1419187}}, {"model": "metainfo.source", "pk": 15011, "fields": {"orig_filename": "Haizinger_Amalie_1800_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419188}}, {"model": "metainfo.source", "pk": 15012, "fields": {"orig_filename": "Haizinger_Anton_1796_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419189}}, {"model": "metainfo.source", "pk": 15013, "fields": {"orig_filename": "Hajdrih_Anton_1842_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419190}}, {"model": "metainfo.source", "pk": 15014, "fields": {"orig_filename": "Hajek_Markusz_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419191}}, {"model": "metainfo.source", "pk": 15015, "fields": {"orig_filename": "Hajek_Salomon_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155f.", "author": "", "orig_id": 1419192}}, {"model": "metainfo.source", "pk": 15016, "fields": {"orig_filename": "Hajnik_Emerich_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419247}}, {"model": "metainfo.source", "pk": 15017, "fields": {"orig_filename": "Hajnis_Frantisek_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419248}}, {"model": "metainfo.source", "pk": 15018, "fields": {"orig_filename": "Hakman_Eugen_1794_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419249}}, {"model": "metainfo.source", "pk": 15019, "fields": {"orig_filename": "Halacsy_Eugen_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419250}}, {"model": "metainfo.source", "pk": 15020, "fields": {"orig_filename": "Halasz_Emerich_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156f.", "author": "", "orig_id": 1419251}}, {"model": "metainfo.source", "pk": 15021, "fields": {"orig_filename": "Halauska_Ludwig_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157", "author": "", "orig_id": 1419252}}, {"model": "metainfo.source", "pk": 15022, "fields": {"orig_filename": "Halban_Alfred_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157", "author": "", "orig_id": 1419253}}, {"model": "metainfo.source", "pk": 15023, "fields": {"orig_filename": "Halban_Josef_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419255}}, {"model": "metainfo.source", "pk": 15024, "fields": {"orig_filename": "Halban_Leo_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419256}}, {"model": "metainfo.source", "pk": 15025, "fields": {"orig_filename": "Halberstam_Sophie_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419258}}, {"model": "metainfo.source", "pk": 15026, "fields": {"orig_filename": "Halbherr_Bernardino_1844_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158f.", "author": "", "orig_id": 1419259}}, {"model": "metainfo.source", "pk": 15027, "fields": {"orig_filename": "Halbherr_Federico_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419263}}, {"model": "metainfo.source", "pk": 15028, "fields": {"orig_filename": "Halbhuber-Festwill_Anton_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419264}}, {"model": "metainfo.source", "pk": 15029, "fields": {"orig_filename": "Halbig_Andreas_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419265}}, {"model": "metainfo.source", "pk": 15030, "fields": {"orig_filename": "Halek_Vitezlav_1835_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159f.", "author": "", "orig_id": 1419266}}, {"model": "metainfo.source", "pk": 15031, "fields": {"orig_filename": "Halirsch_Friedrich-Ludwig_1802_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419268}}, {"model": "metainfo.source", "pk": 15032, "fields": {"orig_filename": "Halir_Karl_1859_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419267}}, {"model": "metainfo.source", "pk": 15033, "fields": {"orig_filename": "Hallaschka_Cassian_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419270}}, {"model": "metainfo.source", "pk": 15034, "fields": {"orig_filename": "Halla_Joseph_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419269}}, {"model": "metainfo.source", "pk": 15035, "fields": {"orig_filename": "Hallenstein_Konrad-Adolf_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419272}}, {"model": "metainfo.source", "pk": 15036, "fields": {"orig_filename": "Haller-Hallenburg_Cezar_1822_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419331}}, {"model": "metainfo.source", "pk": 15037, "fields": {"orig_filename": "Haller_Franz_1796_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419329}}, {"model": "metainfo.source", "pk": 15038, "fields": {"orig_filename": "Haller_Johann-Ev_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419330}}, {"model": "metainfo.source", "pk": 15039, "fields": {"orig_filename": "Hallmayer_Viktorin_1831_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419332}}, {"model": "metainfo.source", "pk": 15040, "fields": {"orig_filename": "Hallwich_Hermann_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161f.", "author": "", "orig_id": 1419333}}, {"model": "metainfo.source", "pk": 15041, "fields": {"orig_filename": "Halm_Anton_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162", "author": "", "orig_id": 1419334}}, {"model": "metainfo.source", "pk": 15042, "fields": {"orig_filename": "Halter_Josef_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162", "author": "", "orig_id": 1419338}}, {"model": "metainfo.source", "pk": 15043, "fields": {"orig_filename": "Halter_Rudolf_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162f.", "author": "", "orig_id": 1419339}}, {"model": "metainfo.source", "pk": 15044, "fields": {"orig_filename": "Haltmeyer_Georg_1803_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419340}}, {"model": "metainfo.source", "pk": 15045, "fields": {"orig_filename": "Gura_Eugen_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418481}}, {"model": "metainfo.source", "pk": 15046, "fields": {"orig_filename": "Guritzer_Johann_1897_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1448064}}, {"model": "metainfo.source", "pk": 15047, "fields": {"orig_filename": "Gurk_Eduard_1801_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108f.", "author": "", "orig_id": 1418553}}, {"model": "metainfo.source", "pk": 15048, "fields": {"orig_filename": "Gurlitt_Ludwig_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418554}}, {"model": "metainfo.source", "pk": 15049, "fields": {"orig_filename": "Gurlitt_Wilhelm_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418555}}, {"model": "metainfo.source", "pk": 15050, "fields": {"orig_filename": "Gurschner_Alice_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418556}}, {"model": "metainfo.source", "pk": 15051, "fields": {"orig_filename": "Gurschner_Emil_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418557}}, {"model": "metainfo.source", "pk": 15052, "fields": {"orig_filename": "Guschelbauer_Edmund_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109f.", "author": "", "orig_id": 1418558}}, {"model": "metainfo.source", "pk": 15053, "fields": {"orig_filename": "Guseck-Glankirchen_Oskar_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110", "author": "", "orig_id": 1418559}}, {"model": "metainfo.source", "pk": 15054, "fields": {"orig_filename": "Gussenbauer_Karl_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110", "author": "", "orig_id": 1418560}}, {"model": "metainfo.source", "pk": 15055, "fields": {"orig_filename": "Gustermann_Anton-Wilhelm_1750_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110f.", "author": "", "orig_id": 1418561}}, {"model": "metainfo.source", "pk": 15056, "fields": {"orig_filename": "Guth-Jarkovsky_Jiri-Stanislav_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418562}}, {"model": "metainfo.source", "pk": 15057, "fields": {"orig_filename": "Gutheil-Schoder_Marie_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418563}}, {"model": "metainfo.source", "pk": 15058, "fields": {"orig_filename": "Gutjahr_Franz-Seraph_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418564}}, {"model": "metainfo.source", "pk": 15059, "fields": {"orig_filename": "Gutmann_Max_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111f.", "author": "", "orig_id": 1418565}}, {"model": "metainfo.source", "pk": 15060, "fields": {"orig_filename": "Gutmann_Wilhelm_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418566}}, {"model": "metainfo.source", "pk": 15061, "fields": {"orig_filename": "Guttenberg_Adolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418567}}, {"model": "metainfo.source", "pk": 15062, "fields": {"orig_filename": "Guttenberg_Emil_1841_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418568}}, {"model": "metainfo.source", "pk": 15063, "fields": {"orig_filename": "Guttmann_Leopoldine_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112f.", "author": "", "orig_id": 1418569}}, {"model": "metainfo.source", "pk": 15064, "fields": {"orig_filename": "Guttmann_Oskar_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418570}}, {"model": "metainfo.source", "pk": 15065, "fields": {"orig_filename": "Gutwinski_Roman_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418571}}, {"model": "metainfo.source", "pk": 15066, "fields": {"orig_filename": "Guzman_Albert_1841_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418572}}, {"model": "metainfo.source", "pk": 15067, "fields": {"orig_filename": "Gwercher_Hans_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418573}}, {"model": "metainfo.source", "pk": 15068, "fields": {"orig_filename": "Gwinner_Robert_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418574}}, {"model": "metainfo.source", "pk": 15069, "fields": {"orig_filename": "Gyarmathi_Samuel_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418575}}, {"model": "metainfo.source", "pk": 15070, "fields": {"orig_filename": "Gyoery-Nadudvar_Arpad_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113f.", "author": "", "orig_id": 1418576}}, {"model": "metainfo.source", "pk": 15071, "fields": {"orig_filename": "Gyrowetz_Adalbert_1763_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114", "author": "", "orig_id": 1418647}}, {"model": "metainfo.source", "pk": 15072, "fields": {"orig_filename": "Gyulai-Maros-Nemeth-Nadaska_Franz_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114f.", "author": "", "orig_id": 1418649}}, {"model": "metainfo.source", "pk": 15073, "fields": {"orig_filename": "Gyulai-Maros-Nemeth-Nadaska_Ignaz_1765_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418650}}, {"model": "metainfo.source", "pk": 15074, "fields": {"orig_filename": "Gyulai_Paul_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114", "author": "", "orig_id": 1418648}}, {"model": "metainfo.source", "pk": 15075, "fields": {"orig_filename": "Haader_Hermine_1885_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418651}}, {"model": "metainfo.source", "pk": 15076, "fields": {"orig_filename": "Haagn_Julius_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418653}}, {"model": "metainfo.source", "pk": 15077, "fields": {"orig_filename": "Haag_Joseph_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418652}}, {"model": "metainfo.source", "pk": 15078, "fields": {"orig_filename": "Haanen_Cecil_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418656}}, {"model": "metainfo.source", "pk": 15079, "fields": {"orig_filename": "Haanen_Remi_1812_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418657}}, {"model": "metainfo.source", "pk": 15080, "fields": {"orig_filename": "Haan_Friedrich_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115f.", "author": "", "orig_id": 1418654}}, {"model": "metainfo.source", "pk": 15081, "fields": {"orig_filename": "Haan_Mathias-Wilhelm_1737_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418655}}, {"model": "metainfo.source", "pk": 15082, "fields": {"orig_filename": "Haardt-Hartenthurn_Vinzenz_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116f.", "author": "", "orig_id": 1418658}}, {"model": "metainfo.source", "pk": 15083, "fields": {"orig_filename": "Haas-Teppichen_Eduard_1827_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418669}}, {"model": "metainfo.source", "pk": 15084, "fields": {"orig_filename": "Haase_Adolf-Theodor_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418670}}, {"model": "metainfo.source", "pk": 15085, "fields": {"orig_filename": "Haase_Josef-Ludwig_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418671}}, {"model": "metainfo.source", "pk": 15086, "fields": {"orig_filename": "Haase_Ludwig_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120f.", "author": "", "orig_id": 1418740}}, {"model": "metainfo.source", "pk": 15087, "fields": {"orig_filename": "Haase_Theodor-Karl_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 121", "author": "", "orig_id": 1418741}}, {"model": "metainfo.source", "pk": 15088, "fields": {"orig_filename": "Haase_Wolfgang_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 121f.", "author": "", "orig_id": 1418742}}, {"model": "metainfo.source", "pk": 15089, "fields": {"orig_filename": "Haas_Alois_1805_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117", "author": "", "orig_id": 1418659}}, {"model": "metainfo.source", "pk": 15090, "fields": {"orig_filename": "Haas_Arthur-Erich_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117", "author": "", "orig_id": 1418660}}, {"model": "metainfo.source", "pk": 15091, "fields": {"orig_filename": "Haas_Georg-Emanuel_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117f.", "author": "", "orig_id": 1418661}}, {"model": "metainfo.source", "pk": 15092, "fields": {"orig_filename": "Haas_Hermann_1846_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418662}}, {"model": "metainfo.source", "pk": 15093, "fields": {"orig_filename": "Haas_Karl_1825_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418663}}, {"model": "metainfo.source", "pk": 15094, "fields": {"orig_filename": "Haas_Michael_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418664}}, {"model": "metainfo.source", "pk": 15095, "fields": {"orig_filename": "Haas_Paul_1899_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118f.", "author": "", "orig_id": 1418665}}, {"model": "metainfo.source", "pk": 15096, "fields": {"orig_filename": "Haas_Philipp_1791_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 119", "author": "", "orig_id": 1418666}}, {"model": "metainfo.source", "pk": 15097, "fields": {"orig_filename": "Haas_Rudolf_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 119", "author": "", "orig_id": 1418667}}, {"model": "metainfo.source", "pk": 15098, "fields": {"orig_filename": "Haas_Rudolf_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418668}}, {"model": "metainfo.source", "pk": 15099, "fields": {"orig_filename": "Habart_Johann_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418744}}, {"model": "metainfo.source", "pk": 15100, "fields": {"orig_filename": "Habel-Malinski_Eduard_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418745}}, {"model": "metainfo.source", "pk": 15101, "fields": {"orig_filename": "Haber-Linsberg_Louis_1804_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418746}}, {"model": "metainfo.source", "pk": 15102, "fields": {"orig_filename": "Haberda_Albin_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122f.", "author": "", "orig_id": 1418747}}, {"model": "metainfo.source", "pk": 15103, "fields": {"orig_filename": "Haberditzl_Franz-Martin_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418748}}, {"model": "metainfo.source", "pk": 15104, "fields": {"orig_filename": "Haberer-Kremshohenstein_Theodor_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418750}}, {"model": "metainfo.source", "pk": 15105, "fields": {"orig_filename": "Haberer_Ludwig_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418749}}, {"model": "metainfo.source", "pk": 15106, "fields": {"orig_filename": "Haberlandt_Edith_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124", "author": "", "orig_id": 1418752}}, {"model": "metainfo.source", "pk": 15107, "fields": {"orig_filename": "Haberlandt_Friedrich_1826_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124", "author": "", "orig_id": 1418753}}, {"model": "metainfo.source", "pk": 15108, "fields": {"orig_filename": "Haberlandt_Gottlieb_1854_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124f.", "author": "", "orig_id": 1418754}}, {"model": "metainfo.source", "pk": 15109, "fields": {"orig_filename": "Haberlandt_Herbert-Eduard_1904_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2005234}}, {"model": "metainfo.source", "pk": 15110, "fields": {"orig_filename": "Haberlandt_Ludwig_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125", "author": "", "orig_id": 1418755}}, {"model": "metainfo.source", "pk": 15111, "fields": {"orig_filename": "Haberlandt_Michael_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125", "author": "", "orig_id": 1418756}}, {"model": "metainfo.source", "pk": 15112, "fields": {"orig_filename": "Haberler_Franz_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418758}}, {"model": "metainfo.source", "pk": 15113, "fields": {"orig_filename": "Haberle_Karl-Konstantin_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125f.", "author": "", "orig_id": 1418757}}, {"model": "metainfo.source", "pk": 15114, "fields": {"orig_filename": "Haberl_Gotthard-Johannes_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123f.", "author": "", "orig_id": 1418751}}, {"model": "metainfo.source", "pk": 15115, "fields": {"orig_filename": "Habermann_Franz_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2005581}}, {"model": "metainfo.source", "pk": 15116, "fields": {"orig_filename": "Habermann_Johann-Ev_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418759}}, {"model": "metainfo.source", "pk": 15117, "fields": {"orig_filename": "Habermann_Josef_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418760}}, {"model": "metainfo.source", "pk": 15118, "fields": {"orig_filename": "Habermann_Peter_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126f.", "author": "", "orig_id": 1418761}}, {"model": "metainfo.source", "pk": 15119, "fields": {"orig_filename": "Habermayer_Christoph_1768_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418762}}, {"model": "metainfo.source", "pk": 15120, "fields": {"orig_filename": "Habert_Johann-Ev_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418825}}, {"model": "metainfo.source", "pk": 15121, "fields": {"orig_filename": "Haberzettl_Erna_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145075}}, {"model": "metainfo.source", "pk": 15122, "fields": {"orig_filename": "Habe_Hans_1911_1977.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443985}}, {"model": "metainfo.source", "pk": 15123, "fields": {"orig_filename": "Habich_Otto_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418826}}, {"model": "metainfo.source", "pk": 15124, "fields": {"orig_filename": "Habietinek_Karl_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418827}}, {"model": "metainfo.source", "pk": 15125, "fields": {"orig_filename": "Hablawetz_August-Egon_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127f.", "author": "", "orig_id": 1418828}}, {"model": "metainfo.source", "pk": 15126, "fields": {"orig_filename": "Haboeck_Franz_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418829}}, {"model": "metainfo.source", "pk": 15127, "fields": {"orig_filename": "Habrda_Johann_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418830}}, {"model": "metainfo.source", "pk": 15128, "fields": {"orig_filename": "Habrmann_Gustav_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418831}}, {"model": "metainfo.source", "pk": 15129, "fields": {"orig_filename": "Habtmann_Georg-Johann_1784_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418832}}, {"model": "metainfo.source", "pk": 15130, "fields": {"orig_filename": "Hackelberg-Landau_Karl_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130", "author": "", "orig_id": 1418838}}, {"model": "metainfo.source", "pk": 15131, "fields": {"orig_filename": "Hackel_Anton_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129f.", "author": "", "orig_id": 1418836}}, {"model": "metainfo.source", "pk": 15132, "fields": {"orig_filename": "Hackel_Eduard_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130", "author": "", "orig_id": 1418837}}, {"model": "metainfo.source", "pk": 15133, "fields": {"orig_filename": "Hacker_Aemilius_1870_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130f.", "author": "", "orig_id": 1418839}}, {"model": "metainfo.source", "pk": 15134, "fields": {"orig_filename": "Hacker_Benedikt_1769_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 131", "author": "", "orig_id": 1418915}}, {"model": "metainfo.source", "pk": 15135, "fields": {"orig_filename": "Hacker_Viktor_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 131f.", "author": "", "orig_id": 1418916}}, {"model": "metainfo.source", "pk": 15136, "fields": {"orig_filename": "Hackher-Hart_Franz-Xaver_1764_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418917}}, {"model": "metainfo.source", "pk": 15137, "fields": {"orig_filename": "Hackhofer_Josef_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418918}}, {"model": "metainfo.source", "pk": 15138, "fields": {"orig_filename": "Hacksteiner_Johann_1770_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418919}}, {"model": "metainfo.source", "pk": 15139, "fields": {"orig_filename": "Hackstock_Karl_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418920}}, {"model": "metainfo.source", "pk": 15140, "fields": {"orig_filename": "Hack_Josefine_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129", "author": "", "orig_id": 1418835}}, {"model": "metainfo.source", "pk": 15141, "fields": {"orig_filename": "Hack_Josef_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129", "author": "", "orig_id": 1418834}}, {"model": "metainfo.source", "pk": 15142, "fields": {"orig_filename": "Hacquet-Motte_Belsazar_1739_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132f.", "author": "", "orig_id": 1418921}}, {"model": "metainfo.source", "pk": 15143, "fields": {"orig_filename": "Hac_Rudolf_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128f.", "author": "", "orig_id": 1418833}}, {"model": "metainfo.source", "pk": 15144, "fields": {"orig_filename": "Hadaczek_Karl_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133", "author": "", "orig_id": 1418922}}, {"model": "metainfo.source", "pk": 15145, "fields": {"orig_filename": "Haderlap_Lipe_1849_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133", "author": "", "orig_id": 1418923}}, {"model": "metainfo.source", "pk": 15146, "fields": {"orig_filename": "Hadik-Futak_Johann_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133f.", "author": "", "orig_id": 1418924}}, {"model": "metainfo.source", "pk": 15147, "fields": {"orig_filename": "Hadwiger_Alois_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418925}}, {"model": "metainfo.source", "pk": 15148, "fields": {"orig_filename": "Hadwiger_Viktor_1878_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418926}}, {"model": "metainfo.source", "pk": 15149, "fields": {"orig_filename": "Gruden_Josip-Valentin_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419493}}, {"model": "metainfo.source", "pk": 15150, "fields": {"orig_filename": "Grueber_Paul_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419494}}, {"model": "metainfo.source", "pk": 15151, "fields": {"orig_filename": "Gruebl_Raimund_1847_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419495}}, {"model": "metainfo.source", "pk": 15152, "fields": {"orig_filename": "Gruenbaum_Caroline_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419501}}, {"model": "metainfo.source", "pk": 15153, "fields": {"orig_filename": "Gruenbaum_Fritz_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419502}}, {"model": "metainfo.source", "pk": 15154, "fields": {"orig_filename": "Gruenbaum_Johann-Christoph_1785_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419503}}, {"model": "metainfo.source", "pk": 15155, "fields": {"orig_filename": "Gruenbaum_Lorenz_1791_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419504}}, {"model": "metainfo.source", "pk": 15156, "fields": {"orig_filename": "Gruenbeck_Heinrich_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419506}}, {"model": "metainfo.source", "pk": 15157, "fields": {"orig_filename": "Gruenberger_Alfred_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88f.", "author": "", "orig_id": 1419509}}, {"model": "metainfo.source", "pk": 15158, "fields": {"orig_filename": "Gruenberg_Johanna_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88", "author": "", "orig_id": 1419507}}, {"model": "metainfo.source", "pk": 15159, "fields": {"orig_filename": "Gruenberg_Karl_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88", "author": "", "orig_id": 1419508}}, {"model": "metainfo.source", "pk": 15160, "fields": {"orig_filename": "Gruendorf_Karl_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1419510}}, {"model": "metainfo.source", "pk": 15161, "fields": {"orig_filename": "Gruenert_Max_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418194}}, {"model": "metainfo.source", "pk": 15162, "fields": {"orig_filename": "Gruener_Joseph-Sebastian_1780_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418192}}, {"model": "metainfo.source", "pk": 15163, "fields": {"orig_filename": "Gruener_Karl-Franz_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418193}}, {"model": "metainfo.source", "pk": 15164, "fields": {"orig_filename": "Gruenewald_Alfred_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418195}}, {"model": "metainfo.source", "pk": 15165, "fields": {"orig_filename": "Gruenfeld_Alfred_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418196}}, {"model": "metainfo.source", "pk": 15166, "fields": {"orig_filename": "Gruenfeld_Heinrich_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418197}}, {"model": "metainfo.source", "pk": 15167, "fields": {"orig_filename": "Gruenfeld_Josef_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418198}}, {"model": "metainfo.source", "pk": 15168, "fields": {"orig_filename": "Gruenfeld_Paul-Stefan_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418199}}, {"model": "metainfo.source", "pk": 15169, "fields": {"orig_filename": "Gruenfeld_Sophie_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418200}}, {"model": "metainfo.source", "pk": 15170, "fields": {"orig_filename": "Gruenhut_Karl-Samuel_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90f.", "author": "", "orig_id": 1418201}}, {"model": "metainfo.source", "pk": 15171, "fields": {"orig_filename": "Grueninger_Franz-Xaver_1790_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418202}}, {"model": "metainfo.source", "pk": 15172, "fields": {"orig_filename": "Gruenne_Karl_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418203}}, {"model": "metainfo.source", "pk": 15173, "fields": {"orig_filename": "Gruenne_Philipp-Ferdinand_1762_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418204}}, {"model": "metainfo.source", "pk": 15174, "fields": {"orig_filename": "Gruenwald-Zerkovitz_Sidonie_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92f.", "author": "", "orig_id": 1418209}}, {"model": "metainfo.source", "pk": 15175, "fields": {"orig_filename": "Gruenwald_Anton-Adalbert_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418205}}, {"model": "metainfo.source", "pk": 15176, "fields": {"orig_filename": "Gruenwald_Anton-Karl_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418206}}, {"model": "metainfo.source", "pk": 15177, "fields": {"orig_filename": "Gruenwald_Bela_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418207}}, {"model": "metainfo.source", "pk": 15178, "fields": {"orig_filename": "Gruenwald_Josef_1876_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418208}}, {"model": "metainfo.source", "pk": 15179, "fields": {"orig_filename": "Gruen_Adolf_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419496}}, {"model": "metainfo.source", "pk": 15180, "fields": {"orig_filename": "Gruen_Dionys_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419498}}, {"model": "metainfo.source", "pk": 15181, "fields": {"orig_filename": "Gruen_Jakob-Moritz_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86f.", "author": "", "orig_id": 1419499}}, {"model": "metainfo.source", "pk": 15182, "fields": {"orig_filename": "Gruen_Johann-Nep_1751_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419500}}, {"model": "metainfo.source", "pk": 15183, "fields": {"orig_filename": "Gruessner_Anton_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418210}}, {"model": "metainfo.source", "pk": 15184, "fields": {"orig_filename": "Gruhenberg_Myra_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373", "author": "", "orig_id": 1451693}}, {"model": "metainfo.source", "pk": 15185, "fields": {"orig_filename": "Grundmann_Franz_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418212}}, {"model": "metainfo.source", "pk": 15186, "fields": {"orig_filename": "Grund_Alfred_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418211}}, {"model": "metainfo.source", "pk": 15187, "fields": {"orig_filename": "Gruner_Ferdinand_1873_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93f.", "author": "", "orig_id": 1418280}}, {"model": "metainfo.source", "pk": 15188, "fields": {"orig_filename": "Grunow_Albert_1826_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 94", "author": "", "orig_id": 1418281}}, {"model": "metainfo.source", "pk": 15189, "fields": {"orig_filename": "Gruntzel_Josef_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 94f.", "author": "", "orig_id": 1418282}}, {"model": "metainfo.source", "pk": 15190, "fields": {"orig_filename": "Gruscha_Anton-Josef_1820_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418283}}, {"model": "metainfo.source", "pk": 15191, "fields": {"orig_filename": "Gruss_Anton_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418284}}, {"model": "metainfo.source", "pk": 15192, "fields": {"orig_filename": "Gruss_Johann_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418285}}, {"model": "metainfo.source", "pk": 15193, "fields": {"orig_filename": "Grutsch_Franz-Xaver_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418287}}, {"model": "metainfo.source", "pk": 15194, "fields": {"orig_filename": "Grutsch_Franz_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418286}}, {"model": "metainfo.source", "pk": 15195, "fields": {"orig_filename": "Grysar_Karl-Josef_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418288}}, {"model": "metainfo.source", "pk": 15196, "fields": {"orig_filename": "Grzybowski_Jozef_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418289}}, {"model": "metainfo.source", "pk": 15197, "fields": {"orig_filename": "Gsaller_Carl_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418290}}, {"model": "metainfo.source", "pk": 15198, "fields": {"orig_filename": "Gschiel_Jakob_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418291}}, {"model": "metainfo.source", "pk": 15199, "fields": {"orig_filename": "Gschliesser_Ilka_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418292}}, {"model": "metainfo.source", "pk": 15200, "fields": {"orig_filename": "Gschwandner_Robert_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418293}}, {"model": "metainfo.source", "pk": 15201, "fields": {"orig_filename": "Gschwandner_Sigismund_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97f.", "author": "", "orig_id": 1418294}}, {"model": "metainfo.source", "pk": 15202, "fields": {"orig_filename": "Gschwari_Coelestin_1823_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418295}}, {"model": "metainfo.source", "pk": 15203, "fields": {"orig_filename": "Gsellhofer_Karl_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418298}}, {"model": "metainfo.source", "pk": 15204, "fields": {"orig_filename": "Gsell_Benedikt_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418296}}, {"model": "metainfo.source", "pk": 15205, "fields": {"orig_filename": "Gsell_Friedrich-Jakob_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418297}}, {"model": "metainfo.source", "pk": 15206, "fields": {"orig_filename": "Gspan_Johann-Chrys_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418300}}, {"model": "metainfo.source", "pk": 15207, "fields": {"orig_filename": "Gspan_Peter-Erasmus_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98f.", "author": "", "orig_id": 1418299}}, {"model": "metainfo.source", "pk": 15208, "fields": {"orig_filename": "Gstirner_Adolf_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418301}}, {"model": "metainfo.source", "pk": 15209, "fields": {"orig_filename": "Gstrein_Alois_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418302}}, {"model": "metainfo.source", "pk": 15210, "fields": {"orig_filename": "Gsur_Karl-Friedrich_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418303}}, {"model": "metainfo.source", "pk": 15211, "fields": {"orig_filename": "Gubin_Richard_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99f.", "author": "", "orig_id": 1418366}}, {"model": "metainfo.source", "pk": 15212, "fields": {"orig_filename": "Guby_Rudolf_1888_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418367}}, {"model": "metainfo.source", "pk": 15213, "fields": {"orig_filename": "Gudenus_Leopold_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418369}}, {"model": "metainfo.source", "pk": 15214, "fields": {"orig_filename": "Guedemann_Moritz_1835_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418371}}, {"model": "metainfo.source", "pk": 15215, "fields": {"orig_filename": "Guede_Julius_1885_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2086589}}, {"model": "metainfo.source", "pk": 15216, "fields": {"orig_filename": "Guem_Johann-Franz_1755_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418373}}, {"model": "metainfo.source", "pk": 15217, "fields": {"orig_filename": "Guenther_Anton_1783_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100f.", "author": "", "orig_id": 1418372}}, {"model": "metainfo.source", "pk": 15218, "fields": {"orig_filename": "Guenther_Anton_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418374}}, {"model": "metainfo.source", "pk": 15219, "fields": {"orig_filename": "Guenther_Georg_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418375}}, {"model": "metainfo.source", "pk": 15220, "fields": {"orig_filename": "Guenther_Gustav_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418376}}, {"model": "metainfo.source", "pk": 15221, "fields": {"orig_filename": "Guenther_Otto_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101f.", "author": "", "orig_id": 1418377}}, {"model": "metainfo.source", "pk": 15222, "fields": {"orig_filename": "Guentner_Franz-Xaver_1790_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418378}}, {"model": "metainfo.source", "pk": 15223, "fields": {"orig_filename": "Guentner_Wenzel_1820_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418379}}, {"model": "metainfo.source", "pk": 15224, "fields": {"orig_filename": "Guenzl_Marie_1896_1983.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2085186}}, {"model": "metainfo.source", "pk": 15225, "fields": {"orig_filename": "Guerke_Norbert_1904_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418380}}, {"model": "metainfo.source", "pk": 15226, "fields": {"orig_filename": "Guertler_Alfred_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102f.", "author": "", "orig_id": 1418381}}, {"model": "metainfo.source", "pk": 15227, "fields": {"orig_filename": "Guertler_Hermann_1887_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418382}}, {"model": "metainfo.source", "pk": 15228, "fields": {"orig_filename": "Guertler_Josef_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418383}}, {"model": "metainfo.source", "pk": 15229, "fields": {"orig_filename": "Guerzoni_Giuseppe_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418384}}, {"model": "metainfo.source", "pk": 15230, "fields": {"orig_filename": "Guetl_Edmund_1879_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103f.", "author": "", "orig_id": 1418385}}, {"model": "metainfo.source", "pk": 15231, "fields": {"orig_filename": "Guettenberger_Heinrich_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418386}}, {"model": "metainfo.source", "pk": 15232, "fields": {"orig_filename": "Gufler_Josef_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418387}}, {"model": "metainfo.source", "pk": 15233, "fields": {"orig_filename": "Gugenbichler_Franz_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418388}}, {"model": "metainfo.source", "pk": 15234, "fields": {"orig_filename": "Guggenberg-Riedhofen_Athanasius_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418464}}, {"model": "metainfo.source", "pk": 15235, "fields": {"orig_filename": "Guggenberg-Riedhofen_Otto_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418465}}, {"model": "metainfo.source", "pk": 15236, "fields": {"orig_filename": "Guggenberger_Adolf_1896_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418466}}, {"model": "metainfo.source", "pk": 15237, "fields": {"orig_filename": "Gugg_Anton_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104f.", "author": "", "orig_id": 1418463}}, {"model": "metainfo.source", "pk": 15238, "fields": {"orig_filename": "Gugitz_Gustav_1836_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418467}}, {"model": "metainfo.source", "pk": 15239, "fields": {"orig_filename": "Guglia_Eugen_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105f.", "author": "", "orig_id": 1418468}}, {"model": "metainfo.source", "pk": 15240, "fields": {"orig_filename": "Guicciardi_Giulietta_1784_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418469}}, {"model": "metainfo.source", "pk": 15241, "fields": {"orig_filename": "Gulbransson_Grete_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418470}}, {"model": "metainfo.source", "pk": 15242, "fields": {"orig_filename": "Gull_Josef_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418471}}, {"model": "metainfo.source", "pk": 15243, "fields": {"orig_filename": "Gumplowicz_Ludwig_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106f.", "author": "", "orig_id": 1418472}}, {"model": "metainfo.source", "pk": 15244, "fields": {"orig_filename": "Gumplowicz_Maximilian-Ernest_1864_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418473}}, {"model": "metainfo.source", "pk": 15245, "fields": {"orig_filename": "Gundling_Julius_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418474}}, {"model": "metainfo.source", "pk": 15246, "fields": {"orig_filename": "Gunert_Herma_1905_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418475}}, {"model": "metainfo.source", "pk": 15247, "fields": {"orig_filename": "Gunesch_Adele_1832_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418476}}, {"model": "metainfo.source", "pk": 15248, "fields": {"orig_filename": "Gungl_Joseph_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418477}}, {"model": "metainfo.source", "pk": 15249, "fields": {"orig_filename": "Gung_L_Johann_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1440651}}, {"model": "metainfo.source", "pk": 15250, "fields": {"orig_filename": "Gunolt_August_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107f.", "author": "", "orig_id": 1418478}}, {"model": "metainfo.source", "pk": 15251, "fields": {"orig_filename": "Gunz_Gustav-Georg_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418479}}, {"model": "metainfo.source", "pk": 15252, "fields": {"orig_filename": "Guppenberger_Lambert_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418480}}, {"model": "metainfo.source", "pk": 15253, "fields": {"orig_filename": "Greussing_Paul_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418913}}, {"model": "metainfo.source", "pk": 15254, "fields": {"orig_filename": "Greuter_Josef_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58f.", "author": "", "orig_id": 1418914}}, {"model": "metainfo.source", "pk": 15255, "fields": {"orig_filename": "Greutter_Franz_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418981}}, {"model": "metainfo.source", "pk": 15256, "fields": {"orig_filename": "Grevenberg_Julius_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418982}}, {"model": "metainfo.source", "pk": 15257, "fields": {"orig_filename": "Grey-Stipek_Valerie_1845_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418983}}, {"model": "metainfo.source", "pk": 15258, "fields": {"orig_filename": "Grienberger_Theodor_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418984}}, {"model": "metainfo.source", "pk": 15259, "fields": {"orig_filename": "Griepenkerl_Christian_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59f.", "author": "", "orig_id": 1418985}}, {"model": "metainfo.source", "pk": 15260, "fields": {"orig_filename": "Griesbach_Karl-Ludolf_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418988}}, {"model": "metainfo.source", "pk": 15261, "fields": {"orig_filename": "Griessl_Rupert_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418989}}, {"model": "metainfo.source", "pk": 15262, "fields": {"orig_filename": "Grieszelich_Ernst-Ludwig_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61", "author": "", "orig_id": 1418990}}, {"model": "metainfo.source", "pk": 15263, "fields": {"orig_filename": "Gries_Franz_1760_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418986}}, {"model": "metainfo.source", "pk": 15264, "fields": {"orig_filename": "Gries_Johann-Ev_1808_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418987}}, {"model": "metainfo.source", "pk": 15265, "fields": {"orig_filename": "Grillmayr_Johann-E-C_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61", "author": "", "orig_id": 1418991}}, {"model": "metainfo.source", "pk": 15266, "fields": {"orig_filename": "Grillparzer_Franz_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61ff.", "author": "", "orig_id": 1418992}}, {"model": "metainfo.source", "pk": 15267, "fields": {"orig_filename": "Grimmich_Virgil_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418996}}, {"model": "metainfo.source", "pk": 15268, "fields": {"orig_filename": "Grimm_Ferdinand_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 63", "author": "", "orig_id": 1418993}}, {"model": "metainfo.source", "pk": 15269, "fields": {"orig_filename": "Grimm_Hugo_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 63f.", "author": "", "orig_id": 1418994}}, {"model": "metainfo.source", "pk": 15270, "fields": {"orig_filename": "Grimm_Leo_1889_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418995}}, {"model": "metainfo.source", "pk": 15271, "fields": {"orig_filename": "Grimus-Grimburg_Rudolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418997}}, {"model": "metainfo.source", "pk": 15272, "fields": {"orig_filename": "Grinner_Josef_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418998}}, {"model": "metainfo.source", "pk": 15273, "fields": {"orig_filename": "Grisar_Hartmann_1845_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64f.", "author": "", "orig_id": 1418999}}, {"model": "metainfo.source", "pk": 15274, "fields": {"orig_filename": "Grisi_Carlotta_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419000}}, {"model": "metainfo.source", "pk": 15275, "fields": {"orig_filename": "Grisi_Giulia_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419001}}, {"model": "metainfo.source", "pk": 15276, "fields": {"orig_filename": "Grissemann_Hans_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419002}}, {"model": "metainfo.source", "pk": 15277, "fields": {"orig_filename": "Grobben_Karl_1854_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65f.", "author": "", "orig_id": 1419003}}, {"model": "metainfo.source", "pk": 15278, "fields": {"orig_filename": "Grocholski_Kazimierz_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419067}}, {"model": "metainfo.source", "pk": 15279, "fields": {"orig_filename": "Groder_Virgil_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419068}}, {"model": "metainfo.source", "pk": 15280, "fields": {"orig_filename": "Groeben_August_1828_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419069}}, {"model": "metainfo.source", "pk": 15281, "fields": {"orig_filename": "Groeger_Adolf_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419071}}, {"model": "metainfo.source", "pk": 15282, "fields": {"orig_filename": "Groeger_Florian_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419072}}, {"model": "metainfo.source", "pk": 15283, "fields": {"orig_filename": "Groeger_Max_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419073}}, {"model": "metainfo.source", "pk": 15284, "fields": {"orig_filename": "Groesser_Matthaeus_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67f.", "author": "", "orig_id": 1419074}}, {"model": "metainfo.source", "pk": 15285, "fields": {"orig_filename": "Groessl_Wenzel_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419075}}, {"model": "metainfo.source", "pk": 15286, "fields": {"orig_filename": "Grohar_Ivan_1867_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419077}}, {"model": "metainfo.source", "pk": 15287, "fields": {"orig_filename": "Grohmann_Adolf_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68f.", "author": "", "orig_id": 1419078}}, {"model": "metainfo.source", "pk": 15288, "fields": {"orig_filename": "Grohmann_Carl_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 69", "author": "", "orig_id": 1419079}}, {"model": "metainfo.source", "pk": 15289, "fields": {"orig_filename": "Grohmann_Eduard_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 69f.", "author": "", "orig_id": 1419080}}, {"model": "metainfo.source", "pk": 15290, "fields": {"orig_filename": "Grohmann_Joseph_1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70", "author": "", "orig_id": 1419081}}, {"model": "metainfo.source", "pk": 15291, "fields": {"orig_filename": "Grohmann_Paul_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70", "author": "", "orig_id": 1419082}}, {"model": "metainfo.source", "pk": 15292, "fields": {"orig_filename": "Grohs-Fligely_Anton_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70f.", "author": "", "orig_id": 1419083}}, {"model": "metainfo.source", "pk": 15293, "fields": {"orig_filename": "Groh_Jakob_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419076}}, {"model": "metainfo.source", "pk": 15294, "fields": {"orig_filename": "Grolig_Moriz_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419084}}, {"model": "metainfo.source", "pk": 15295, "fields": {"orig_filename": "Groller-Mildensee_Maximilian_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419087}}, {"model": "metainfo.source", "pk": 15296, "fields": {"orig_filename": "Groll_Andreas_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419085}}, {"model": "metainfo.source", "pk": 15297, "fields": {"orig_filename": "Gronemann_Karoline_1869_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71f.", "author": "", "orig_id": 1419088}}, {"model": "metainfo.source", "pk": 15298, "fields": {"orig_filename": "Groner_Anton_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419089}}, {"model": "metainfo.source", "pk": 15299, "fields": {"orig_filename": "Groner_Auguste_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419149}}, {"model": "metainfo.source", "pk": 15300, "fields": {"orig_filename": "Groner_Richard_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419150}}, {"model": "metainfo.source", "pk": 15301, "fields": {"orig_filename": "Groppenberger-Bergenstamm_Alois_1754_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419151}}, {"model": "metainfo.source", "pk": 15302, "fields": {"orig_filename": "Gross-Hoffinger_Anton-Johann_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 76f.", "author": "", "orig_id": 1419166}}, {"model": "metainfo.source", "pk": 15303, "fields": {"orig_filename": "Grossbauer-Waldstaett_Franz_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419167}}, {"model": "metainfo.source", "pk": 15304, "fields": {"orig_filename": "Grossberg_Mimi_1905_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420526}}, {"model": "metainfo.source", "pk": 15305, "fields": {"orig_filename": "Grossberg_Norbert_1903_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1423092}}, {"model": "metainfo.source", "pk": 15306, "fields": {"orig_filename": "Grosschmid_Benjamin_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419391}}, {"model": "metainfo.source", "pk": 15307, "fields": {"orig_filename": "Grosse_Andreas_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419324}}, {"model": "metainfo.source", "pk": 15308, "fields": {"orig_filename": "Grossich_Antonio_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419326}}, {"model": "metainfo.source", "pk": 15309, "fields": {"orig_filename": "Grossi_Tommaso_1791_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419325}}, {"model": "metainfo.source", "pk": 15310, "fields": {"orig_filename": "Grossmann_Michael_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77f.", "author": "", "orig_id": 1419327}}, {"model": "metainfo.source", "pk": 15311, "fields": {"orig_filename": "Grossmann_Stefan_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419390}}, {"model": "metainfo.source", "pk": 15312, "fields": {"orig_filename": "Gross_Benedikt_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72f.", "author": "", "orig_id": 1419153}}, {"model": "metainfo.source", "pk": 15313, "fields": {"orig_filename": "Gross_Ferdinand_1848_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419154}}, {"model": "metainfo.source", "pk": 15314, "fields": {"orig_filename": "Gross_Franz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419155}}, {"model": "metainfo.source", "pk": 15315, "fields": {"orig_filename": "Gross_Gustav-Robert_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73f.", "author": "", "orig_id": 1419157}}, {"model": "metainfo.source", "pk": 15316, "fields": {"orig_filename": "Gross_Gustav_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419156}}, {"model": "metainfo.source", "pk": 15317, "fields": {"orig_filename": "Gross_Hanns_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74", "author": "", "orig_id": 1419158}}, {"model": "metainfo.source", "pk": 15318, "fields": {"orig_filename": "Gross_Heinrich_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74", "author": "", "orig_id": 1419159}}, {"model": "metainfo.source", "pk": 15319, "fields": {"orig_filename": "Gross_Josef_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419160}}, {"model": "metainfo.source", "pk": 15320, "fields": {"orig_filename": "Gross_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74f.", "author": "", "orig_id": 1419161}}, {"model": "metainfo.source", "pk": 15321, "fields": {"orig_filename": "Gross_Julius_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75", "author": "", "orig_id": 1419162}}, {"model": "metainfo.source", "pk": 15322, "fields": {"orig_filename": "Gross_Karl_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75", "author": "", "orig_id": 1419163}}, {"model": "metainfo.source", "pk": 15323, "fields": {"orig_filename": "Gross_Lothar_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75f.", "author": "", "orig_id": 1419164}}, {"model": "metainfo.source", "pk": 15324, "fields": {"orig_filename": "Gross_Otto_1877_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1449030}}, {"model": "metainfo.source", "pk": 15325, "fields": {"orig_filename": "Gross_Wilhelm_1886_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 76", "author": "", "orig_id": 1419165}}, {"model": "metainfo.source", "pk": 15326, "fields": {"orig_filename": "Grosz_Karl_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419392}}, {"model": "metainfo.source", "pk": 15327, "fields": {"orig_filename": "Grosz_Siegfried_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419393}}, {"model": "metainfo.source", "pk": 15328, "fields": {"orig_filename": "Grottger_Artur_1837_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419395}}, {"model": "metainfo.source", "pk": 15329, "fields": {"orig_filename": "Gruber-Gleichenberg_Franz_1886_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419488}}, {"model": "metainfo.source", "pk": 15330, "fields": {"orig_filename": "Gruber-Menninger_Ignaz_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84f.", "author": "", "orig_id": 1419489}}, {"model": "metainfo.source", "pk": 15331, "fields": {"orig_filename": "Gruber_Alois_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419397}}, {"model": "metainfo.source", "pk": 15332, "fields": {"orig_filename": "Gruber_Augustin-Josef_1763_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419398}}, {"model": "metainfo.source", "pk": 15333, "fields": {"orig_filename": "Gruber_Dane_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419399}}, {"model": "metainfo.source", "pk": 15334, "fields": {"orig_filename": "Gruber_Franz-Xaver_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80f.", "author": "", "orig_id": 1419401}}, {"model": "metainfo.source", "pk": 15335, "fields": {"orig_filename": "Gruber_Franz-Xaver_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419402}}, {"model": "metainfo.source", "pk": 15336, "fields": {"orig_filename": "Gruber_Franz-Xaver_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419403}}, {"model": "metainfo.source", "pk": 15337, "fields": {"orig_filename": "Gruber_Franz_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419400}}, {"model": "metainfo.source", "pk": 15338, "fields": {"orig_filename": "Gruber_Hans_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419404}}, {"model": "metainfo.source", "pk": 15339, "fields": {"orig_filename": "Gruber_Hans_1879_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419405}}, {"model": "metainfo.source", "pk": 15340, "fields": {"orig_filename": "Gruber_Hermann_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81f.", "author": "", "orig_id": 1419406}}, {"model": "metainfo.source", "pk": 15341, "fields": {"orig_filename": "Gruber_Ignaz_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419407}}, {"model": "metainfo.source", "pk": 15342, "fields": {"orig_filename": "Gruber_Jakob_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419408}}, {"model": "metainfo.source", "pk": 15343, "fields": {"orig_filename": "Gruber_Josef_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419409}}, {"model": "metainfo.source", "pk": 15344, "fields": {"orig_filename": "Gruber_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419410}}, {"model": "metainfo.source", "pk": 15345, "fields": {"orig_filename": "Gruber_Josef_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82f.", "author": "", "orig_id": 1419411}}, {"model": "metainfo.source", "pk": 15346, "fields": {"orig_filename": "Gruber_Max_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419412}}, {"model": "metainfo.source", "pk": 15347, "fields": {"orig_filename": "Gruber_Oswald_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419413}}, {"model": "metainfo.source", "pk": 15348, "fields": {"orig_filename": "Gruber_Peter_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419414}}, {"model": "metainfo.source", "pk": 15349, "fields": {"orig_filename": "Gruber_Rudolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419415}}, {"model": "metainfo.source", "pk": 15350, "fields": {"orig_filename": "Gruber_Stanislaus_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419416}}, {"model": "metainfo.source", "pk": 15351, "fields": {"orig_filename": "Gruber_Wenzel_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1421081}}, {"model": "metainfo.source", "pk": 15352, "fields": {"orig_filename": "Grube_August-Wilhelm_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419396}}, {"model": "metainfo.source", "pk": 15353, "fields": {"orig_filename": "Grubhofer_Tony_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419490}}, {"model": "metainfo.source", "pk": 15354, "fields": {"orig_filename": "Gruby_David_1810_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419491}}, {"model": "metainfo.source", "pk": 15355, "fields": {"orig_filename": "Gruden_Igo_1893_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419492}}, {"model": "metainfo.source", "pk": 15356, "fields": {"orig_filename": "Gornik_Friedrich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418454}}, {"model": "metainfo.source", "pk": 15357, "fields": {"orig_filename": "Gorove_Stefan_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418455}}, {"model": "metainfo.source", "pk": 15358, "fields": {"orig_filename": "Gorski_Anton_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33f.", "author": "", "orig_id": 1418456}}, {"model": "metainfo.source", "pk": 15359, "fields": {"orig_filename": "Gortani_Luigi_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418457}}, {"model": "metainfo.source", "pk": 15360, "fields": {"orig_filename": "Gorup-Besanez_Eugen-Franz_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418458}}, {"model": "metainfo.source", "pk": 15361, "fields": {"orig_filename": "Gorup-Besanez_Ferdinand-Johann_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418530}}, {"model": "metainfo.source", "pk": 15362, "fields": {"orig_filename": "Gorup-Slavinjski_Josip_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418531}}, {"model": "metainfo.source", "pk": 15363, "fields": {"orig_filename": "Gorzkowski-Gorzkow_Karl_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418533}}, {"model": "metainfo.source", "pk": 15364, "fields": {"orig_filename": "Gorzkowski_Ludwik-Jedrzej_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34f.", "author": "", "orig_id": 1418532}}, {"model": "metainfo.source", "pk": 15365, "fields": {"orig_filename": "Goslar_Julian-Maciej_1820_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418534}}, {"model": "metainfo.source", "pk": 15366, "fields": {"orig_filename": "Gossmann_Friederike_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418535}}, {"model": "metainfo.source", "pk": 15367, "fields": {"orig_filename": "Gostincar_Josip_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418536}}, {"model": "metainfo.source", "pk": 15368, "fields": {"orig_filename": "Gostkowski_Roman_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35f.", "author": "", "orig_id": 1418537}}, {"model": "metainfo.source", "pk": 15369, "fields": {"orig_filename": "Goszczynski_Seweryn_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418538}}, {"model": "metainfo.source", "pk": 15370, "fields": {"orig_filename": "Gothard_Eugen_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418539}}, {"model": "metainfo.source", "pk": 15371, "fields": {"orig_filename": "Gottdank_Josepha_1792_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418540}}, {"model": "metainfo.source", "pk": 15372, "fields": {"orig_filename": "Gotthilf-Miskolczy_Ernst_1865_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418541}}, {"model": "metainfo.source", "pk": 15373, "fields": {"orig_filename": "Gottlieb_Anna_1774_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418542}}, {"model": "metainfo.source", "pk": 15374, "fields": {"orig_filename": "Gottlieb_Johann_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418543}}, {"model": "metainfo.source", "pk": 15375, "fields": {"orig_filename": "Gottsleben_Ludwig_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418544}}, {"model": "metainfo.source", "pk": 15376, "fields": {"orig_filename": "Govekar_Fran_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418545}}, {"model": "metainfo.source", "pk": 15377, "fields": {"orig_filename": "Govekar_Minka_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37f.", "author": "", "orig_id": 1418546}}, {"model": "metainfo.source", "pk": 15378, "fields": {"orig_filename": "Govrik_Gregor_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418547}}, {"model": "metainfo.source", "pk": 15379, "fields": {"orig_filename": "Graber_Hermann-Veit_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418548}}, {"model": "metainfo.source", "pk": 15380, "fields": {"orig_filename": "Graber_Vitus_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418549}}, {"model": "metainfo.source", "pk": 15381, "fields": {"orig_filename": "Grabherr_Josef_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38f.", "author": "", "orig_id": 1418550}}, {"model": "metainfo.source", "pk": 15382, "fields": {"orig_filename": "Grabmann_Martin_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39", "author": "", "orig_id": 1418551}}, {"model": "metainfo.source", "pk": 15383, "fields": {"orig_filename": "Grabmayr-Angerheim_Georg_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39", "author": "", "orig_id": 1418552}}, {"model": "metainfo.source", "pk": 15384, "fields": {"orig_filename": "Grabmayr-Angerheim_Karl_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39f.", "author": "", "orig_id": 1418623}}, {"model": "metainfo.source", "pk": 15385, "fields": {"orig_filename": "Grabner_Leopold_1802_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40", "author": "", "orig_id": 1418624}}, {"model": "metainfo.source", "pk": 15386, "fields": {"orig_filename": "Grabowski_Ambrozy_1782_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40", "author": "", "orig_id": 1418625}}, {"model": "metainfo.source", "pk": 15387, "fields": {"orig_filename": "Grabowski_Lucjan-Kazimierz_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40f.", "author": "", "orig_id": 1418626}}, {"model": "metainfo.source", "pk": 15388, "fields": {"orig_filename": "Grabrijan_Jurij_1800_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41", "author": "", "orig_id": 1418627}}, {"model": "metainfo.source", "pk": 15389, "fields": {"orig_filename": "Grabski_Stanislaw_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41", "author": "", "orig_id": 1418628}}, {"model": "metainfo.source", "pk": 15390, "fields": {"orig_filename": "Gradenigo_Giuseppe_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41f.", "author": "", "orig_id": 1418629}}, {"model": "metainfo.source", "pk": 15391, "fields": {"orig_filename": "Gradl_Heinrich_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418630}}, {"model": "metainfo.source", "pk": 15392, "fields": {"orig_filename": "Graedener_Hermann_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418631}}, {"model": "metainfo.source", "pk": 15393, "fields": {"orig_filename": "Graeffer_Franz_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42f.", "author": "", "orig_id": 1418633}}, {"model": "metainfo.source", "pk": 15394, "fields": {"orig_filename": "Graeffe_Eduard_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418632}}, {"model": "metainfo.source", "pk": 15395, "fields": {"orig_filename": "Graener_Paul_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418634}}, {"model": "metainfo.source", "pk": 15396, "fields": {"orig_filename": "Graenzer_Josef_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418635}}, {"model": "metainfo.source", "pk": 15397, "fields": {"orig_filename": "Graf-Gaderthurn_Friedrich_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418643}}, {"model": "metainfo.source", "pk": 15398, "fields": {"orig_filename": "Grafenauer_Franc_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45f.", "author": "", "orig_id": 1418646}}, {"model": "metainfo.source", "pk": 15399, "fields": {"orig_filename": "Grafe_Felix_1888_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418644}}, {"model": "metainfo.source", "pk": 15400, "fields": {"orig_filename": "Grafe_Viktor_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418645}}, {"model": "metainfo.source", "pk": 15401, "fields": {"orig_filename": "Graff-Pancsova_Ludwig_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418715}}, {"model": "metainfo.source", "pk": 15402, "fields": {"orig_filename": "Graff_Kasimir-Romuald_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418714}}, {"model": "metainfo.source", "pk": 15403, "fields": {"orig_filename": "Graf_Alexander_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418636}}, {"model": "metainfo.source", "pk": 15404, "fields": {"orig_filename": "Graf_Antonie_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418637}}, {"model": "metainfo.source", "pk": 15405, "fields": {"orig_filename": "Graf_Ferdinand_1907_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1434635}}, {"model": "metainfo.source", "pk": 15406, "fields": {"orig_filename": "Graf_Franz_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43f.", "author": "", "orig_id": 1418638}}, {"model": "metainfo.source", "pk": 15407, "fields": {"orig_filename": "Graf_Josef_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44", "author": "", "orig_id": 1418639}}, {"model": "metainfo.source", "pk": 15408, "fields": {"orig_filename": "Graf_Ludwig-Ferdinand_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44", "author": "", "orig_id": 1418640}}, {"model": "metainfo.source", "pk": 15409, "fields": {"orig_filename": "Graf_Rainer_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44f.", "author": "", "orig_id": 1418641}}, {"model": "metainfo.source", "pk": 15410, "fields": {"orig_filename": "Graf_Siegmund_1801_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418642}}, {"model": "metainfo.source", "pk": 15411, "fields": {"orig_filename": "Grahor_Janko_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418716}}, {"model": "metainfo.source", "pk": 15412, "fields": {"orig_filename": "Grailich_Josef_1829_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46f.", "author": "", "orig_id": 1418717}}, {"model": "metainfo.source", "pk": 15413, "fields": {"orig_filename": "Grandauer_Josef_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418718}}, {"model": "metainfo.source", "pk": 15414, "fields": {"orig_filename": "Granichstaedten-Czerva_Otto_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418720}}, {"model": "metainfo.source", "pk": 15415, "fields": {"orig_filename": "Granichstaedten_Bruno-Bernhard_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418719}}, {"model": "metainfo.source", "pk": 15416, "fields": {"orig_filename": "Granitsch_Georg_1833_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418721}}, {"model": "metainfo.source", "pk": 15417, "fields": {"orig_filename": "Grasberger_Hans_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418723}}, {"model": "metainfo.source", "pk": 15418, "fields": {"orig_filename": "Grasboeck_Theobald_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418724}}, {"model": "metainfo.source", "pk": 15419, "fields": {"orig_filename": "Graser_Karl_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418725}}, {"model": "metainfo.source", "pk": 15420, "fields": {"orig_filename": "Grassauer_Ferdinand_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418735}}, {"model": "metainfo.source", "pk": 15421, "fields": {"orig_filename": "Grasselli_Peter_1841_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418736}}, {"model": "metainfo.source", "pk": 15422, "fields": {"orig_filename": "Grassini_Giuseppina_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418737}}, {"model": "metainfo.source", "pk": 15423, "fields": {"orig_filename": "Grassl-Rechten_Ignaz_1795_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418738}}, {"model": "metainfo.source", "pk": 15424, "fields": {"orig_filename": "Grass_Franz-Xaver_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418734}}, {"model": "metainfo.source", "pk": 15425, "fields": {"orig_filename": "Gras_Otto_1864_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47f.", "author": "", "orig_id": 1418722}}, {"model": "metainfo.source", "pk": 15426, "fields": {"orig_filename": "Grauert_Wilhelm-Heinrich_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50", "author": "", "orig_id": 1418804}}, {"model": "metainfo.source", "pk": 15427, "fields": {"orig_filename": "Grauer_Rudolf_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50", "author": "", "orig_id": 1418803}}, {"model": "metainfo.source", "pk": 15428, "fields": {"orig_filename": "Graus_Johann_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50f.", "author": "", "orig_id": 1418805}}, {"model": "metainfo.source", "pk": 15429, "fields": {"orig_filename": "Grau_August_1863_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49f.", "author": "", "orig_id": 1418739}}, {"model": "metainfo.source", "pk": 15430, "fields": {"orig_filename": "Grebmer-Wolfsthurn_Eduard_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 51", "author": "", "orig_id": 1418807}}, {"model": "metainfo.source", "pk": 15431, "fields": {"orig_filename": "Gredler_Andreas_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 51f.", "author": "", "orig_id": 1418809}}, {"model": "metainfo.source", "pk": 15432, "fields": {"orig_filename": "Gredler_Ludwig_1831_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52", "author": "", "orig_id": 1418811}}, {"model": "metainfo.source", "pk": 15433, "fields": {"orig_filename": "Gredler_Vinzenz-Maria_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52", "author": "", "orig_id": 1418813}}, {"model": "metainfo.source", "pk": 15434, "fields": {"orig_filename": "Grefe_Conrad_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52f.", "author": "", "orig_id": 1418814}}, {"model": "metainfo.source", "pk": 15435, "fields": {"orig_filename": "Gregorcic_Anton_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418818}}, {"model": "metainfo.source", "pk": 15436, "fields": {"orig_filename": "Gregorcic_Simon_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418819}}, {"model": "metainfo.source", "pk": 15437, "fields": {"orig_filename": "Gregorig_Josef_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418821}}, {"model": "metainfo.source", "pk": 15438, "fields": {"orig_filename": "Gregorin_Gustav_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418822}}, {"model": "metainfo.source", "pk": 15439, "fields": {"orig_filename": "Gregoritsch_Anton_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418823}}, {"model": "metainfo.source", "pk": 15440, "fields": {"orig_filename": "Gregori_Ferdinand_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53f.", "author": "", "orig_id": 1418820}}, {"model": "metainfo.source", "pk": 15441, "fields": {"orig_filename": "Gregor_Hans_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418815}}, {"model": "metainfo.source", "pk": 15442, "fields": {"orig_filename": "Gregor_Nora_1901_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418816}}, {"model": "metainfo.source", "pk": 15443, "fields": {"orig_filename": "Gregr_Eduard_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418892}}, {"model": "metainfo.source", "pk": 15444, "fields": {"orig_filename": "Gregr_Julius_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54f.", "author": "", "orig_id": 1418894}}, {"model": "metainfo.source", "pk": 15445, "fields": {"orig_filename": "Greguss_Agost_1825_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418895}}, {"model": "metainfo.source", "pk": 15446, "fields": {"orig_filename": "Greiderer_Sebastian_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418897}}, {"model": "metainfo.source", "pk": 15447, "fields": {"orig_filename": "Greil_Alois_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418898}}, {"model": "metainfo.source", "pk": 15448, "fields": {"orig_filename": "Greil_Johann-Nep_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55f.", "author": "", "orig_id": 1418899}}, {"model": "metainfo.source", "pk": 15449, "fields": {"orig_filename": "Greil_Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418901}}, {"model": "metainfo.source", "pk": 15450, "fields": {"orig_filename": "Greiner_Leo_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418902}}, {"model": "metainfo.source", "pk": 15451, "fields": {"orig_filename": "Greinwald_Thomas_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418903}}, {"model": "metainfo.source", "pk": 15452, "fields": {"orig_filename": "Greinz_Christian_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418904}}, {"model": "metainfo.source", "pk": 15453, "fields": {"orig_filename": "Greinz_Hugo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56f.", "author": "", "orig_id": 1418906}}, {"model": "metainfo.source", "pk": 15454, "fields": {"orig_filename": "Greinz_Rudolf-Heinrich_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57", "author": "", "orig_id": 1418907}}, {"model": "metainfo.source", "pk": 15455, "fields": {"orig_filename": "Greipl_Rudolf_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57", "author": "", "orig_id": 1418908}}, {"model": "metainfo.source", "pk": 15456, "fields": {"orig_filename": "Greisinger_Gustav-Adolf_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57f.", "author": "", "orig_id": 1418909}}, {"model": "metainfo.source", "pk": 15457, "fields": {"orig_filename": "Gremblich_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418910}}, {"model": "metainfo.source", "pk": 15458, "fields": {"orig_filename": "Grengg_Karl_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418911}}, {"model": "metainfo.source", "pk": 15459, "fields": {"orig_filename": "Grenser_Alfred_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418912}}, {"model": "metainfo.source", "pk": 15460, "fields": {"orig_filename": "Glatz_Jakob_1776_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419478}}, {"model": "metainfo.source", "pk": 15461, "fields": {"orig_filename": "Glatz_Sebastian_1837_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419479}}, {"model": "metainfo.source", "pk": 15462, "fields": {"orig_filename": "Glawatsch_Franz_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419480}}, {"model": "metainfo.source", "pk": 15463, "fields": {"orig_filename": "Glax_Heinrich_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419481}}, {"model": "metainfo.source", "pk": 15464, "fields": {"orig_filename": "Glax_Julius_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5f.", "author": "", "orig_id": 1419482}}, {"model": "metainfo.source", "pk": 15465, "fields": {"orig_filename": "Gleich_Josef-Alois_1772_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6", "author": "", "orig_id": 1419483}}, {"model": "metainfo.source", "pk": 15466, "fields": {"orig_filename": "Gleispach_Johann-Nepomuk_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6", "author": "", "orig_id": 1419484}}, {"model": "metainfo.source", "pk": 15467, "fields": {"orig_filename": "Gleispach_Karl-Josef_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6f.", "author": "", "orig_id": 1419485}}, {"model": "metainfo.source", "pk": 15468, "fields": {"orig_filename": "Gleispach_Wenzeslaus_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 7f.", "author": "", "orig_id": 1419486}}, {"model": "metainfo.source", "pk": 15469, "fields": {"orig_filename": "Gliber_Jakob_1825_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419487}}, {"model": "metainfo.source", "pk": 15470, "fields": {"orig_filename": "Glickh_Rudolf_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419557}}, {"model": "metainfo.source", "pk": 15471, "fields": {"orig_filename": "Gloeckel_Leopoldine_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419558}}, {"model": "metainfo.source", "pk": 15472, "fields": {"orig_filename": "Gloeckel_Otto_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8f.", "author": "", "orig_id": 1419559}}, {"model": "metainfo.source", "pk": 15473, "fields": {"orig_filename": "Gloeckner_Berta_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 9", "author": "", "orig_id": 1419560}}, {"model": "metainfo.source", "pk": 15474, "fields": {"orig_filename": "Gloeggl_Franz-Xaver_1764_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 9f.", "author": "", "orig_id": 1419561}}, {"model": "metainfo.source", "pk": 15475, "fields": {"orig_filename": "Glonar_Joza_1885_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419562}}, {"model": "metainfo.source", "pk": 15476, "fields": {"orig_filename": "Glondys_Viktor_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419564}}, {"model": "metainfo.source", "pk": 15477, "fields": {"orig_filename": "Gloning_Kajetan-Alois_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419565}}, {"model": "metainfo.source", "pk": 15478, "fields": {"orig_filename": "Gloria_Andrea_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419566}}, {"model": "metainfo.source", "pk": 15479, "fields": {"orig_filename": "Glossy_Karl_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419568}}, {"model": "metainfo.source", "pk": 15480, "fields": {"orig_filename": "Gloss_Ludwig_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10f.", "author": "", "orig_id": 1419567}}, {"model": "metainfo.source", "pk": 15481, "fields": {"orig_filename": "Glowacki_Julius_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419569}}, {"model": "metainfo.source", "pk": 15482, "fields": {"orig_filename": "Glowacki_Sylvia_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419571}}, {"model": "metainfo.source", "pk": 15483, "fields": {"orig_filename": "Glueckselig_Gustav-Thormod_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12", "author": "", "orig_id": 1419574}}, {"model": "metainfo.source", "pk": 15484, "fields": {"orig_filename": "Gluecksmann_Heinrich_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12f.", "author": "", "orig_id": 1419575}}, {"model": "metainfo.source", "pk": 15485, "fields": {"orig_filename": "Glueck_Babette-Elisabeth_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11f.", "author": "", "orig_id": 1419572}}, {"model": "metainfo.source", "pk": 15486, "fields": {"orig_filename": "Glueck_Heinrich_1889_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12", "author": "", "orig_id": 1419573}}, {"model": "metainfo.source", "pk": 15487, "fields": {"orig_filename": "Gmeiner_Franz-X_1752_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1418173}}, {"model": "metainfo.source", "pk": 15488, "fields": {"orig_filename": "Gmeiner_Josef-Anton_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1421076}}, {"model": "metainfo.source", "pk": 15489, "fields": {"orig_filename": "Gnad_Ernst_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1418182}}, {"model": "metainfo.source", "pk": 15490, "fields": {"orig_filename": "Gnirs_Anton_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13f.", "author": "", "orig_id": 1418183}}, {"model": "metainfo.source", "pk": 15491, "fields": {"orig_filename": "Godai_Anton_1863_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418184}}, {"model": "metainfo.source", "pk": 15492, "fields": {"orig_filename": "Godebski_Franciszek-Ksawery_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418185}}, {"model": "metainfo.source", "pk": 15493, "fields": {"orig_filename": "Godeffroy_Richard_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418186}}, {"model": "metainfo.source", "pk": 15494, "fields": {"orig_filename": "Godina_Josip-Verdelski_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418187}}, {"model": "metainfo.source", "pk": 15495, "fields": {"orig_filename": "Godlewski_Emil_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418188}}, {"model": "metainfo.source", "pk": 15496, "fields": {"orig_filename": "Godlewski_Karl_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418189}}, {"model": "metainfo.source", "pk": 15497, "fields": {"orig_filename": "Godlewski_Tadeusz_1878_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418190}}, {"model": "metainfo.source", "pk": 15498, "fields": {"orig_filename": "Goebel_Carl_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418191}}, {"model": "metainfo.source", "pk": 15499, "fields": {"orig_filename": "Goelis_Leopold-Anton_1764_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15f.", "author": "", "orig_id": 1418256}}, {"model": "metainfo.source", "pk": 15500, "fields": {"orig_filename": "Goellerich_August_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 16", "author": "", "orig_id": 1418257}}, {"model": "metainfo.source", "pk": 15501, "fields": {"orig_filename": "Goelsdorf_Karl_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 16f.", "author": "", "orig_id": 1418258}}, {"model": "metainfo.source", "pk": 15502, "fields": {"orig_filename": "Goelsdorf_Louis-Adolf_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418259}}, {"model": "metainfo.source", "pk": 15503, "fields": {"orig_filename": "Goepfert_Eduard_1836_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418260}}, {"model": "metainfo.source", "pk": 15504, "fields": {"orig_filename": "Goergey-Goergoe-Toporcz_Arthur_1818_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418261}}, {"model": "metainfo.source", "pk": 15505, "fields": {"orig_filename": "Goerner_Karl_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17f.", "author": "", "orig_id": 1418262}}, {"model": "metainfo.source", "pk": 15506, "fields": {"orig_filename": "Goess_Anton_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18", "author": "", "orig_id": 1418263}}, {"model": "metainfo.source", "pk": 15507, "fields": {"orig_filename": "Goess_Leopold_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18", "author": "", "orig_id": 1421077}}, {"model": "metainfo.source", "pk": 15508, "fields": {"orig_filename": "Goess_Peter_1774_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18f.", "author": "", "orig_id": 1418264}}, {"model": "metainfo.source", "pk": 15509, "fields": {"orig_filename": "Goess_Zeno-Vinzenz_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19", "author": "", "orig_id": 1418265}}, {"model": "metainfo.source", "pk": 15510, "fields": {"orig_filename": "Goestl_Fran_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2192062}}, {"model": "metainfo.source", "pk": 15511, "fields": {"orig_filename": "Goethe_Hermann_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19f.", "author": "", "orig_id": 1418267}}, {"model": "metainfo.source", "pk": 15512, "fields": {"orig_filename": "Goeth_Georg_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19", "author": "", "orig_id": 1418266}}, {"model": "metainfo.source", "pk": 15513, "fields": {"orig_filename": "Goetz_Josef_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418269}}, {"model": "metainfo.source", "pk": 15514, "fields": {"orig_filename": "Goglia-Zlota-Lipa_Ferdinand_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418270}}, {"model": "metainfo.source", "pk": 15515, "fields": {"orig_filename": "Gohren_Karl-Theodor_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418271}}, {"model": "metainfo.source", "pk": 15516, "fields": {"orig_filename": "Goiginger_Ludwig_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20f.", "author": "", "orig_id": 1418272}}, {"model": "metainfo.source", "pk": 15517, "fields": {"orig_filename": "Golant_Nathan_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418273}}, {"model": "metainfo.source", "pk": 15518, "fields": {"orig_filename": "Goldbach-Sulittaborn_Anton_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418275}}, {"model": "metainfo.source", "pk": 15519, "fields": {"orig_filename": "Goldbacher_Alois_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418276}}, {"model": "metainfo.source", "pk": 15520, "fields": {"orig_filename": "Goldbacher_Gregor_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21f.", "author": "", "orig_id": 1418277}}, {"model": "metainfo.source", "pk": 15521, "fields": {"orig_filename": "Goldbaum_Wilhelm_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418278}}, {"model": "metainfo.source", "pk": 15522, "fields": {"orig_filename": "Goldberger_Richard_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418279}}, {"model": "metainfo.source", "pk": 15523, "fields": {"orig_filename": "Goldegg_Hugo_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418345}}, {"model": "metainfo.source", "pk": 15524, "fields": {"orig_filename": "Goldemund_Heinrich_1863_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418346}}, {"model": "metainfo.source", "pk": 15525, "fields": {"orig_filename": "Goldenthal_Jakob_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22f.", "author": "", "orig_id": 1418347}}, {"model": "metainfo.source", "pk": 15526, "fields": {"orig_filename": "Goldhann_Ludwig_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23", "author": "", "orig_id": 1418349}}, {"model": "metainfo.source", "pk": 15527, "fields": {"orig_filename": "Goldmann_Arthur_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418352}}, {"model": "metainfo.source", "pk": 15528, "fields": {"orig_filename": "Goldmann_Emil_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418353}}, {"model": "metainfo.source", "pk": 15529, "fields": {"orig_filename": "Goldmann_Paul_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24f.", "author": "", "orig_id": 1418354}}, {"model": "metainfo.source", "pk": 15530, "fields": {"orig_filename": "Goldman_Bernard_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418351}}, {"model": "metainfo.source", "pk": 15531, "fields": {"orig_filename": "Goldman_Salome_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23f.", "author": "", "orig_id": 1418350}}, {"model": "metainfo.source", "pk": 15532, "fields": {"orig_filename": "Goldmark_Karl_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418355}}, {"model": "metainfo.source", "pk": 15533, "fields": {"orig_filename": "Goldscheider_Adalbert_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418357}}, {"model": "metainfo.source", "pk": 15534, "fields": {"orig_filename": "Goldscheid_Rudolf_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418356}}, {"model": "metainfo.source", "pk": 15535, "fields": {"orig_filename": "Goldschmidt_Adalbert_1848_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25f.", "author": "", "orig_id": 1418358}}, {"model": "metainfo.source", "pk": 15536, "fields": {"orig_filename": "Goldschmidt_Heinrich-Jacob_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418359}}, {"model": "metainfo.source", "pk": 15537, "fields": {"orig_filename": "Goldschmidt_Hermann_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418360}}, {"model": "metainfo.source", "pk": 15538, "fields": {"orig_filename": "Goldschmidt_Waldemar_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147103}}, {"model": "metainfo.source", "pk": 15539, "fields": {"orig_filename": "Goldschmiedt_Guido_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418361}}, {"model": "metainfo.source", "pk": 15540, "fields": {"orig_filename": "Goldzieher_Ignaz_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26f.", "author": "", "orig_id": 1418362}}, {"model": "metainfo.source", "pk": 15541, "fields": {"orig_filename": "Goldzieher_Vilmos_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 27", "author": "", "orig_id": 1418363}}, {"model": "metainfo.source", "pk": 15542, "fields": {"orig_filename": "Gold_Josef_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418274}}, {"model": "metainfo.source", "pk": 15543, "fields": {"orig_filename": "Goller_Franz-Wenzel_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418436}}, {"model": "metainfo.source", "pk": 15544, "fields": {"orig_filename": "Gollner-Goldnenfels_Alois_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418437}}, {"model": "metainfo.source", "pk": 15545, "fields": {"orig_filename": "Gollob_Heinrich_1886_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418438}}, {"model": "metainfo.source", "pk": 15546, "fields": {"orig_filename": "Goll_Ernst_1887_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 27", "author": "", "orig_id": 1421078}}, {"model": "metainfo.source", "pk": 15547, "fields": {"orig_filename": "Goll_Jaroslav_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418364}}, {"model": "metainfo.source", "pk": 15548, "fields": {"orig_filename": "Goll_Josef_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418365}}, {"model": "metainfo.source", "pk": 15549, "fields": {"orig_filename": "Goltsch_Franz_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28f.", "author": "", "orig_id": 1418440}}, {"model": "metainfo.source", "pk": 15550, "fields": {"orig_filename": "Goltz_Alexander-Demetrius_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 29", "author": "", "orig_id": 1418441}}, {"model": "metainfo.source", "pk": 15551, "fields": {"orig_filename": "Goluchowski_Agenor-Maria-Adam_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 29f.", "author": "", "orig_id": 1418442}}, {"model": "metainfo.source", "pk": 15552, "fields": {"orig_filename": "Goluchowski_Agenor-Romuald-Onufr_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 30", "author": "", "orig_id": 1418443}}, {"model": "metainfo.source", "pk": 15553, "fields": {"orig_filename": "Gomperz_Heinrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 30f.", "author": "", "orig_id": 1418444}}, {"model": "metainfo.source", "pk": 15554, "fields": {"orig_filename": "Gomperz_Julius_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31", "author": "", "orig_id": 1418445}}, {"model": "metainfo.source", "pk": 15555, "fields": {"orig_filename": "Gomperz_Max_1822_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31", "author": "", "orig_id": 1418446}}, {"model": "metainfo.source", "pk": 15556, "fields": {"orig_filename": "Gomperz_Theodor_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31f.", "author": "", "orig_id": 1418447}}, {"model": "metainfo.source", "pk": 15557, "fields": {"orig_filename": "Gondrecourt_Leopold_1816_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418448}}, {"model": "metainfo.source", "pk": 15558, "fields": {"orig_filename": "Gooss_Karl_1814_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418449}}, {"model": "metainfo.source", "pk": 15559, "fields": {"orig_filename": "Gooss_Karl_1844_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418450}}, {"model": "metainfo.source", "pk": 15560, "fields": {"orig_filename": "Gopcevic_Spiridon_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418451}}, {"model": "metainfo.source", "pk": 15561, "fields": {"orig_filename": "Gordon_Marie_1812_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32f.", "author": "", "orig_id": 1418452}}, {"model": "metainfo.source", "pk": 15562, "fields": {"orig_filename": "Gorjanovic-Kramberger_Dragutin_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418453}}, {"model": "metainfo.source", "pk": 15563, "fields": {"orig_filename": "Geringer_Philipp_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421761}}, {"model": "metainfo.source", "pk": 15564, "fields": {"orig_filename": "Gerisch_Eduard_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421763}}, {"model": "metainfo.source", "pk": 15565, "fields": {"orig_filename": "Gerle_Wilhelm-Adolf_1783_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426f.", "author": "", "orig_id": 1421768}}, {"model": "metainfo.source", "pk": 15566, "fields": {"orig_filename": "Gerl_Franz_1764_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421764}}, {"model": "metainfo.source", "pk": 15567, "fields": {"orig_filename": "Gerl_Gustav_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421765}}, {"model": "metainfo.source", "pk": 15568, "fields": {"orig_filename": "Gerl_Peter_1796_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421766}}, {"model": "metainfo.source", "pk": 15569, "fields": {"orig_filename": "German_Ludomir_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421842}}, {"model": "metainfo.source", "pk": 15570, "fields": {"orig_filename": "Germela_Raimund_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421843}}, {"model": "metainfo.source", "pk": 15571, "fields": {"orig_filename": "Germonik_Ludwig_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421844}}, {"model": "metainfo.source", "pk": 15572, "fields": {"orig_filename": "Gernerth_Emmerich_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421845}}, {"model": "metainfo.source", "pk": 15573, "fields": {"orig_filename": "Gerold_Carl_1783_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427f.", "author": "", "orig_id": 1421846}}, {"model": "metainfo.source", "pk": 15574, "fields": {"orig_filename": "Gerold_Moriz_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428", "author": "", "orig_id": 1421847}}, {"model": "metainfo.source", "pk": 15575, "fields": {"orig_filename": "Gerold_Rosa_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428", "author": "", "orig_id": 1421848}}, {"model": "metainfo.source", "pk": 15576, "fields": {"orig_filename": "Gerstaecker-Simplon_Wenzel_1786_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421850}}, {"model": "metainfo.source", "pk": 15577, "fields": {"orig_filename": "Gerstel-Ucken_Gustav_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421851}}, {"model": "metainfo.source", "pk": 15578, "fields": {"orig_filename": "Gerster-Gardini_Etelka_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421854}}, {"model": "metainfo.source", "pk": 15579, "fields": {"orig_filename": "Gerster_Gerold_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421852}}, {"model": "metainfo.source", "pk": 15580, "fields": {"orig_filename": "Gerster_Thomas_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421853}}, {"model": "metainfo.source", "pk": 15581, "fields": {"orig_filename": "Gerstl_Richard_1883_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429f.", "author": "", "orig_id": 1421855}}, {"model": "metainfo.source", "pk": 15582, "fields": {"orig_filename": "Gerstmeyer_Josef_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421856}}, {"model": "metainfo.source", "pk": 15583, "fields": {"orig_filename": "Gerstner_Anton_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421857}}, {"model": "metainfo.source", "pk": 15584, "fields": {"orig_filename": "Gerstner_Franz-Anton_1796_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421859}}, {"model": "metainfo.source", "pk": 15585, "fields": {"orig_filename": "Gerstner_Franz-Joseph_1756_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430f.", "author": "", "orig_id": 1421860}}, {"model": "metainfo.source", "pk": 15586, "fields": {"orig_filename": "Gerstner_Franz_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421858}}, {"model": "metainfo.source", "pk": 15587, "fields": {"orig_filename": "Gerstner_Hans_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421861}}, {"model": "metainfo.source", "pk": 15588, "fields": {"orig_filename": "Gerst_Johann_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428f.", "author": "", "orig_id": 1421849}}, {"model": "metainfo.source", "pk": 15589, "fields": {"orig_filename": "Gersuny_Robert_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421862}}, {"model": "metainfo.source", "pk": 15590, "fields": {"orig_filename": "Gesselbauer_Otto_1852_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421863}}, {"model": "metainfo.source", "pk": 15591, "fields": {"orig_filename": "Gessmann_Albert_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421864}}, {"model": "metainfo.source", "pk": 15592, "fields": {"orig_filename": "Gessner_Hubert_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421865}}, {"model": "metainfo.source", "pk": 15593, "fields": {"orig_filename": "Gestrin_Franc_1865_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421938}}, {"model": "metainfo.source", "pk": 15594, "fields": {"orig_filename": "Getzner_Christian_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432f.", "author": "", "orig_id": 1421939}}, {"model": "metainfo.source", "pk": 15595, "fields": {"orig_filename": "Gevay_Anton_1796_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421940}}, {"model": "metainfo.source", "pk": 15596, "fields": {"orig_filename": "Gewey_Franz-Xaver-Karl_1764_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421941}}, {"model": "metainfo.source", "pk": 15597, "fields": {"orig_filename": "Geyer_August-Johann_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421942}}, {"model": "metainfo.source", "pk": 15598, "fields": {"orig_filename": "Geyer_Eberhard_1899_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433f.", "author": "", "orig_id": 1421943}}, {"model": "metainfo.source", "pk": 15599, "fields": {"orig_filename": "Geyer_Georg_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 434", "author": "", "orig_id": 1421944}}, {"model": "metainfo.source", "pk": 15600, "fields": {"orig_filename": "Geyer_Rudolf_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 434f.", "author": "", "orig_id": 1421945}}, {"model": "metainfo.source", "pk": 15601, "fields": {"orig_filename": "Geyling_Carl_1814_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421946}}, {"model": "metainfo.source", "pk": 15602, "fields": {"orig_filename": "Geyling_Josef_1799_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421947}}, {"model": "metainfo.source", "pk": 15603, "fields": {"orig_filename": "Geyling_Margarete_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421948}}, {"model": "metainfo.source", "pk": 15604, "fields": {"orig_filename": "Geyling_Rudolf_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421949}}, {"model": "metainfo.source", "pk": 15605, "fields": {"orig_filename": "Geymueller_Heinrich_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435f.", "author": "", "orig_id": 1421950}}, {"model": "metainfo.source", "pk": 15606, "fields": {"orig_filename": "Geymueller_Johann-Heinrich_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421951}}, {"model": "metainfo.source", "pk": 15607, "fields": {"orig_filename": "Gfoellner_Hans_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421952}}, {"model": "metainfo.source", "pk": 15608, "fields": {"orig_filename": "Gfoellner_Johannes-Maria_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421953}}, {"model": "metainfo.source", "pk": 15609, "fields": {"orig_filename": "Ghega_Karl_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436f.", "author": "", "orig_id": 1421954}}, {"model": "metainfo.source", "pk": 15610, "fields": {"orig_filename": "Gheri_Max_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437", "author": "", "orig_id": 1421955}}, {"model": "metainfo.source", "pk": 15611, "fields": {"orig_filename": "Ghon_Anton_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437", "author": "", "orig_id": 1421956}}, {"model": "metainfo.source", "pk": 15612, "fields": {"orig_filename": "Ghon_Carl_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437f.", "author": "", "orig_id": 1421957}}, {"model": "metainfo.source", "pk": 15613, "fields": {"orig_filename": "Ghyczy_Koloman_1808_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1420117}}, {"model": "metainfo.source", "pk": 15614, "fields": {"orig_filename": "Ghyczy_Paul_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421958}}, {"model": "metainfo.source", "pk": 15615, "fields": {"orig_filename": "Giacomini_Giacomo-Andrea_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421959}}, {"model": "metainfo.source", "pk": 15616, "fields": {"orig_filename": "Giamgy_Philipp_1819_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421960}}, {"model": "metainfo.source", "pk": 15617, "fields": {"orig_filename": "Gierach_Erich-Clemens_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438f.", "author": "", "orig_id": 1421961}}, {"model": "metainfo.source", "pk": 15618, "fields": {"orig_filename": "Giesl-Gieslingen_Wladimir_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 439", "author": "", "orig_id": 1421962}}, {"model": "metainfo.source", "pk": 15619, "fields": {"orig_filename": "Giesswein_Alexander_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 439f.", "author": "", "orig_id": 1422031}}, {"model": "metainfo.source", "pk": 15620, "fields": {"orig_filename": "Gigola_Giovanni-Battista_1769_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422032}}, {"model": "metainfo.source", "pk": 15621, "fields": {"orig_filename": "Gilewski_Karol_1832_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422033}}, {"model": "metainfo.source", "pk": 15622, "fields": {"orig_filename": "Giller_Agaton_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422034}}, {"model": "metainfo.source", "pk": 15623, "fields": {"orig_filename": "Gillmayr_Karl_1888_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440f.", "author": "", "orig_id": 1422035}}, {"model": "metainfo.source", "pk": 15624, "fields": {"orig_filename": "Gilm-Rosenegg_Hermann_1812_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 441", "author": "", "orig_id": 1422036}}, {"model": "metainfo.source", "pk": 15625, "fields": {"orig_filename": "Gindely_Anton_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 441f.", "author": "", "orig_id": 1422037}}, {"model": "metainfo.source", "pk": 15626, "fields": {"orig_filename": "Giner_Johann_1756_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422038}}, {"model": "metainfo.source", "pk": 15627, "fields": {"orig_filename": "Ginovszky_Josef_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422039}}, {"model": "metainfo.source", "pk": 15628, "fields": {"orig_filename": "Gintl_Heinrich-Eduard_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422040}}, {"model": "metainfo.source", "pk": 15629, "fields": {"orig_filename": "Gintl_Julius-Wilhelm_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 443f.", "author": "", "orig_id": 1422043}}, {"model": "metainfo.source", "pk": 15630, "fields": {"orig_filename": "Gintl_Wilhelm-Friedrich_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442f.", "author": "", "orig_id": 1422041}}, {"model": "metainfo.source", "pk": 15631, "fields": {"orig_filename": "Gintl_Wilhelm-Heinrich_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 443", "author": "", "orig_id": 1422042}}, {"model": "metainfo.source", "pk": 15632, "fields": {"orig_filename": "Ginzberger_August_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422044}}, {"model": "metainfo.source", "pk": 15633, "fields": {"orig_filename": "Ginzel_Friedrich-Karl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422047}}, {"model": "metainfo.source", "pk": 15634, "fields": {"orig_filename": "Ginzel_Hubert_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422045}}, {"model": "metainfo.source", "pk": 15635, "fields": {"orig_filename": "Ginzel_Jakob_1792_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422046}}, {"model": "metainfo.source", "pk": 15636, "fields": {"orig_filename": "Ginzkey_Ignaz_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422048}}, {"model": "metainfo.source", "pk": 15637, "fields": {"orig_filename": "Gioia_Melchiorre_1767_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422049}}, {"model": "metainfo.source", "pk": 15638, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Gottfried_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422051}}, {"model": "metainfo.source", "pk": 15639, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Ignaz_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445f.", "author": "", "orig_id": 1422052}}, {"model": "metainfo.source", "pk": 15640, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Joseph_1784_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422053}}, {"model": "metainfo.source", "pk": 15641, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Karl_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422054}}, {"model": "metainfo.source", "pk": 15642, "fields": {"orig_filename": "Giovanelli-Gerstburg_Benedikt_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422050}}, {"model": "metainfo.source", "pk": 15643, "fields": {"orig_filename": "Girardi_Alexander_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422123}}, {"model": "metainfo.source", "pk": 15644, "fields": {"orig_filename": "Giskra_Karl_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446f.", "author": "", "orig_id": 1422125}}, {"model": "metainfo.source", "pk": 15645, "fields": {"orig_filename": "Gissendorf_Karl_1825_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422126}}, {"model": "metainfo.source", "pk": 15646, "fields": {"orig_filename": "Gitlbauer_Michael_1847_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422127}}, {"model": "metainfo.source", "pk": 15647, "fields": {"orig_filename": "Gitschthaler_Anton_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422128}}, {"model": "metainfo.source", "pk": 15648, "fields": {"orig_filename": "Giugno_Karl_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447f.", "author": "", "orig_id": 1422129}}, {"model": "metainfo.source", "pk": 15649, "fields": {"orig_filename": "Giussani_Carlo_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422130}}, {"model": "metainfo.source", "pk": 15650, "fields": {"orig_filename": "Glabinski_Stanislaw_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422131}}, {"model": "metainfo.source", "pk": 15651, "fields": {"orig_filename": "Glader_Kosmas_1863_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422132}}, {"model": "metainfo.source", "pk": 15652, "fields": {"orig_filename": "Glaeser_Franz_1798_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422133}}, {"model": "metainfo.source", "pk": 15653, "fields": {"orig_filename": "Glaessner_Arthur_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1", "author": "", "orig_id": 1418964}}, {"model": "metainfo.source", "pk": 15654, "fields": {"orig_filename": "Glaise-Horstenau_Edmund_1882_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1", "author": "", "orig_id": 1418965}}, {"model": "metainfo.source", "pk": 15655, "fields": {"orig_filename": "Glanz-Eicha_Egon_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418967}}, {"model": "metainfo.source", "pk": 15656, "fields": {"orig_filename": "Glanz-Eicha_Hugo_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418968}}, {"model": "metainfo.source", "pk": 15657, "fields": {"orig_filename": "Glanz_Joseph_1795_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1f.", "author": "", "orig_id": 1418966}}, {"model": "metainfo.source", "pk": 15658, "fields": {"orig_filename": "Glaser_Arthur_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1419471}}, {"model": "metainfo.source", "pk": 15659, "fields": {"orig_filename": "Glaser_Eduard_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2f.", "author": "", "orig_id": 1419472}}, {"model": "metainfo.source", "pk": 15660, "fields": {"orig_filename": "Glaser_Erhard_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 3", "author": "", "orig_id": 1419473}}, {"model": "metainfo.source", "pk": 15661, "fields": {"orig_filename": "Glaser_Julius_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 3f.", "author": "", "orig_id": 1419474}}, {"model": "metainfo.source", "pk": 15662, "fields": {"orig_filename": "Glaser_Karel_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4", "author": "", "orig_id": 1419475}}, {"model": "metainfo.source", "pk": 15663, "fields": {"orig_filename": "Glaser_Konrad_1903_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4", "author": "", "orig_id": 1419476}}, {"model": "metainfo.source", "pk": 15664, "fields": {"orig_filename": "Glaser_Rudolf_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4f.", "author": "", "orig_id": 1419477}}, {"model": "metainfo.source", "pk": 15665, "fields": {"orig_filename": "Glas_Franz_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418970}}, {"model": "metainfo.source", "pk": 15666, "fields": {"orig_filename": "Gartner_Anton_1817_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421451}}, {"model": "metainfo.source", "pk": 15667, "fields": {"orig_filename": "Gartner_Anton_1820_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421452}}, {"model": "metainfo.source", "pk": 15668, "fields": {"orig_filename": "Gartner_Hermine_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421453}}, {"model": "metainfo.source", "pk": 15669, "fields": {"orig_filename": "Gartner_Josef_1796_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421454}}, {"model": "metainfo.source", "pk": 15670, "fields": {"orig_filename": "Gartner_Theodor_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404f.", "author": "", "orig_id": 1421455}}, {"model": "metainfo.source", "pk": 15671, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Erasmus_1788_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421456}}, {"model": "metainfo.source", "pk": 15672, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Karl_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421457}}, {"model": "metainfo.source", "pk": 15673, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Peter_1774_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421458}}, {"model": "metainfo.source", "pk": 15674, "fields": {"orig_filename": "Gasiorowski_Napoleon-Jan_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405f.", "author": "", "orig_id": 1421459}}, {"model": "metainfo.source", "pk": 15675, "fields": {"orig_filename": "Gasser-Valhorn_Josef_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421466}}, {"model": "metainfo.source", "pk": 15676, "fields": {"orig_filename": "Gasser_Georg_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421460}}, {"model": "metainfo.source", "pk": 15677, "fields": {"orig_filename": "Gasser_Gregor_1868_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421461}}, {"model": "metainfo.source", "pk": 15678, "fields": {"orig_filename": "Gasser_Hanns_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421462}}, {"model": "metainfo.source", "pk": 15679, "fields": {"orig_filename": "Gasser_Johann_1847_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421463}}, {"model": "metainfo.source", "pk": 15680, "fields": {"orig_filename": "Gasser_Vinzenz-Ferrer_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421465}}, {"model": "metainfo.source", "pk": 15681, "fields": {"orig_filename": "Gasser_Vinzenz_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406f.", "author": "", "orig_id": 1421464}}, {"model": "metainfo.source", "pk": 15682, "fields": {"orig_filename": "Gassner_Andreas_1776_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407f.", "author": "", "orig_id": 1421468}}, {"model": "metainfo.source", "pk": 15683, "fields": {"orig_filename": "Gassner_Andreas_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421469}}, {"model": "metainfo.source", "pk": 15684, "fields": {"orig_filename": "Gassner_Andre_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421467}}, {"model": "metainfo.source", "pk": 15685, "fields": {"orig_filename": "Gassner_Anton_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421470}}, {"model": "metainfo.source", "pk": 15686, "fields": {"orig_filename": "Gassner_Ferdinand-Simon_1798_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421472}}, {"model": "metainfo.source", "pk": 15687, "fields": {"orig_filename": "Gassner_Ferdinand_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421471}}, {"model": "metainfo.source", "pk": 15688, "fields": {"orig_filename": "Gassner_Franz-Josef_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421473}}, {"model": "metainfo.source", "pk": 15689, "fields": {"orig_filename": "Gassner_Guido_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408f.", "author": "", "orig_id": 1421474}}, {"model": "metainfo.source", "pk": 15690, "fields": {"orig_filename": "Gassner_Heinrich_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421475}}, {"model": "metainfo.source", "pk": 15691, "fields": {"orig_filename": "Gassner_Johann_1821_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421476}}, {"model": "metainfo.source", "pk": 15692, "fields": {"orig_filename": "Gassner_Julius_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421477}}, {"model": "metainfo.source", "pk": 15693, "fields": {"orig_filename": "Gassner_Michael_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421554}}, {"model": "metainfo.source", "pk": 15694, "fields": {"orig_filename": "Gassner_Theodor_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409f.", "author": "", "orig_id": 1421555}}, {"model": "metainfo.source", "pk": 15695, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Albert-Josef_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421556}}, {"model": "metainfo.source", "pk": 15696, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Anton-Franz_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421557}}, {"model": "metainfo.source", "pk": 15697, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Erich_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421558}}, {"model": "metainfo.source", "pk": 15698, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Gustav_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421559}}, {"model": "metainfo.source", "pk": 15699, "fields": {"orig_filename": "Gatscher_Emanuel_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421560}}, {"model": "metainfo.source", "pk": 15700, "fields": {"orig_filename": "Gatterer_Hilarius_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421561}}, {"model": "metainfo.source", "pk": 15701, "fields": {"orig_filename": "Gatterer_Michael_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410f.", "author": "", "orig_id": 1421562}}, {"model": "metainfo.source", "pk": 15702, "fields": {"orig_filename": "Gauby_Joseph_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411", "author": "", "orig_id": 1421563}}, {"model": "metainfo.source", "pk": 15703, "fields": {"orig_filename": "Gauermann_Friedrich_1807_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411", "author": "", "orig_id": 1421564}}, {"model": "metainfo.source", "pk": 15704, "fields": {"orig_filename": "Gauermann_Jakob_1773_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411f.", "author": "", "orig_id": 1421565}}, {"model": "metainfo.source", "pk": 15705, "fields": {"orig_filename": "Gaugl_Josef_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420104}}, {"model": "metainfo.source", "pk": 15706, "fields": {"orig_filename": "Gaulhofer_Karl_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420107}}, {"model": "metainfo.source", "pk": 15707, "fields": {"orig_filename": "Gaul_Franz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420105}}, {"model": "metainfo.source", "pk": 15708, "fields": {"orig_filename": "Gaul_Franz_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420106}}, {"model": "metainfo.source", "pk": 15709, "fields": {"orig_filename": "Gaul_Gustav_1836_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420113}}, {"model": "metainfo.source", "pk": 15710, "fields": {"orig_filename": "Gaunersdorfer_Johann_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420108}}, {"model": "metainfo.source", "pk": 15711, "fields": {"orig_filename": "Gaupmann_Rudolf_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420109}}, {"model": "metainfo.source", "pk": 15712, "fields": {"orig_filename": "Gaupmann_Rudolf_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420110}}, {"model": "metainfo.source", "pk": 15713, "fields": {"orig_filename": "Gause_Wilhelm_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420111}}, {"model": "metainfo.source", "pk": 15714, "fields": {"orig_filename": "Gautsch-Frankenthurn_Paul_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413f.", "author": "", "orig_id": 1420112}}, {"model": "metainfo.source", "pk": 15715, "fields": {"orig_filename": "Gavasini_Alois_1759_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421566}}, {"model": "metainfo.source", "pk": 15716, "fields": {"orig_filename": "Gavazzi_Artur_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421567}}, {"model": "metainfo.source", "pk": 15717, "fields": {"orig_filename": "Gawalewicz_Marian_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421568}}, {"model": "metainfo.source", "pk": 15718, "fields": {"orig_filename": "Gawalowski_Anton-Karl-Wilhelm_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421569}}, {"model": "metainfo.source", "pk": 15719, "fields": {"orig_filename": "Gawalowski_Karl-Wilhelm_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421570}}, {"model": "metainfo.source", "pk": 15720, "fields": {"orig_filename": "Gawelek_Franciszek_1884_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421571}}, {"model": "metainfo.source", "pk": 15721, "fields": {"orig_filename": "Gebauer-Fuelnegg_Erich_1901_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421575}}, {"model": "metainfo.source", "pk": 15722, "fields": {"orig_filename": "Gebauerova_Marie_1869_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421576}}, {"model": "metainfo.source", "pk": 15723, "fields": {"orig_filename": "Gebauer_Anton-Karl_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421572}}, {"model": "metainfo.source", "pk": 15724, "fields": {"orig_filename": "Gebauer_Jan_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421574}}, {"model": "metainfo.source", "pk": 15725, "fields": {"orig_filename": "Gebbel_Franz_1835_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415f.", "author": "", "orig_id": 1421577}}, {"model": "metainfo.source", "pk": 15726, "fields": {"orig_filename": "Gebhardt_Lajos_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421648}}, {"model": "metainfo.source", "pk": 15727, "fields": {"orig_filename": "Gebhart_Andreas_1881_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421649}}, {"model": "metainfo.source", "pk": 15728, "fields": {"orig_filename": "Geczy_Stefan_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421650}}, {"model": "metainfo.source", "pk": 15729, "fields": {"orig_filename": "Gegenbauer_Leopold_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416f.", "author": "", "orig_id": 1421651}}, {"model": "metainfo.source", "pk": 15730, "fields": {"orig_filename": "Gegenbauer_Viktor_1884_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421652}}, {"model": "metainfo.source", "pk": 15731, "fields": {"orig_filename": "Gehmacher_Friedrich_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421653}}, {"model": "metainfo.source", "pk": 15732, "fields": {"orig_filename": "Geiger_Andreas_1773_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421654}}, {"model": "metainfo.source", "pk": 15733, "fields": {"orig_filename": "Geiger_Joseph_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421655}}, {"model": "metainfo.source", "pk": 15734, "fields": {"orig_filename": "Geiger_Karl-Josef_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417f.", "author": "", "orig_id": 1421656}}, {"model": "metainfo.source", "pk": 15735, "fields": {"orig_filename": "Geiger_Peter-Johann-Nepomuk_1805_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421657}}, {"model": "metainfo.source", "pk": 15736, "fields": {"orig_filename": "Geissler_Ludwig_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421658}}, {"model": "metainfo.source", "pk": 15737, "fields": {"orig_filename": "Geistinger_Marie_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421659}}, {"model": "metainfo.source", "pk": 15738, "fields": {"orig_filename": "Geitler-Armingen_Josef_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421661}}, {"model": "metainfo.source", "pk": 15739, "fields": {"orig_filename": "Geitler_Leopold-Vaclav_1847_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418f.", "author": "", "orig_id": 1421660}}, {"model": "metainfo.source", "pk": 15740, "fields": {"orig_filename": "Gelber_Adolf_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421662}}, {"model": "metainfo.source", "pk": 15741, "fields": {"orig_filename": "Gelbhaus_Sigmund-Josua-Samuel_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421663}}, {"model": "metainfo.source", "pk": 15742, "fields": {"orig_filename": "Gelcich_Eugen_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421664}}, {"model": "metainfo.source", "pk": 15743, "fields": {"orig_filename": "Geldern-Egmond-Arcen_Gustav_1837_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419f.", "author": "", "orig_id": 1421665}}, {"model": "metainfo.source", "pk": 15744, "fields": {"orig_filename": "Gelinek_Joseph_1758_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421666}}, {"model": "metainfo.source", "pk": 15745, "fields": {"orig_filename": "Gelleri_Moritz_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421668}}, {"model": "metainfo.source", "pk": 15746, "fields": {"orig_filename": "Gellert_Grete_1879_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421669}}, {"model": "metainfo.source", "pk": 15747, "fields": {"orig_filename": "Geller_Leo_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421667}}, {"model": "metainfo.source", "pk": 15748, "fields": {"orig_filename": "Gelmi_Enrico_1855_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421670}}, {"model": "metainfo.source", "pk": 15749, "fields": {"orig_filename": "Geltch_Johann-Friedrich_1815_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421671}}, {"model": "metainfo.source", "pk": 15750, "fields": {"orig_filename": "Genczik_August_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421672}}, {"model": "metainfo.source", "pk": 15751, "fields": {"orig_filename": "Genee_Franz-Friedrich-Richard_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421673}}, {"model": "metainfo.source", "pk": 15752, "fields": {"orig_filename": "Genersich_Anton_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421746}}, {"model": "metainfo.source", "pk": 15753, "fields": {"orig_filename": "Genersich_Christian_1759_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421747}}, {"model": "metainfo.source", "pk": 15754, "fields": {"orig_filename": "Genersich_Johann_1761_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421748}}, {"model": "metainfo.source", "pk": 15755, "fields": {"orig_filename": "Genersich_Samuel_1768_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421749}}, {"model": "metainfo.source", "pk": 15756, "fields": {"orig_filename": "Gentz_Friedrich_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422ff.", "author": "", "orig_id": 1421750}}, {"model": "metainfo.source", "pk": 15757, "fields": {"orig_filename": "Gentz_Josef_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421751}}, {"model": "metainfo.source", "pk": 15758, "fields": {"orig_filename": "Georgievics_Georg_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421753}}, {"model": "metainfo.source", "pk": 15759, "fields": {"orig_filename": "Georgi_Friedrich-Robert_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421752}}, {"model": "metainfo.source", "pk": 15760, "fields": {"orig_filename": "Geppert_Anton_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424f.", "author": "", "orig_id": 1421755}}, {"model": "metainfo.source", "pk": 15761, "fields": {"orig_filename": "Geppert_Menrad_1770_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421758}}, {"model": "metainfo.source", "pk": 15762, "fields": {"orig_filename": "Gepp_Jakob_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421754}}, {"model": "metainfo.source", "pk": 15763, "fields": {"orig_filename": "Gerba_Raimund_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421756}}, {"model": "metainfo.source", "pk": 15764, "fields": {"orig_filename": "Gerbic_Fran_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421757}}, {"model": "metainfo.source", "pk": 15765, "fields": {"orig_filename": "Gerhardinger_Hermann_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421759}}, {"model": "metainfo.source", "pk": 15766, "fields": {"orig_filename": "Gericke_Wilhelm_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425f.", "author": "", "orig_id": 1421760}}, {"model": "metainfo.source", "pk": 15767, "fields": {"orig_filename": "Geringer-Oedenberg_Gabriel_1758_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421762}}, {"model": "metainfo.source", "pk": 15768, "fields": {"orig_filename": "Fuehrer_Robert_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420976}}, {"model": "metainfo.source", "pk": 15769, "fields": {"orig_filename": "Fuehrich_Josef_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380f.", "author": "", "orig_id": 1420977}}, {"model": "metainfo.source", "pk": 15770, "fields": {"orig_filename": "Fuehrich_Maximilian_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420978}}, {"model": "metainfo.source", "pk": 15771, "fields": {"orig_filename": "Fueloep-Miller_Rene_1891_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1435277}}, {"model": "metainfo.source", "pk": 15772, "fields": {"orig_filename": "Fuerst_Johann_1825_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420979}}, {"model": "metainfo.source", "pk": 15773, "fields": {"orig_filename": "Fuerst_Rudolf_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420980}}, {"model": "metainfo.source", "pk": 15774, "fields": {"orig_filename": "Fuerth_Emil_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381f.", "author": "", "orig_id": 1420981}}, {"model": "metainfo.source", "pk": 15775, "fields": {"orig_filename": "Fuerth_Jaro_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2029584}}, {"model": "metainfo.source", "pk": 15776, "fields": {"orig_filename": "Fuerth_Otto_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420982}}, {"model": "metainfo.source", "pk": 15777, "fields": {"orig_filename": "Fuester_Anton_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420983}}, {"model": "metainfo.source", "pk": 15778, "fields": {"orig_filename": "Fuetscher_Lorenz_1894_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420984}}, {"model": "metainfo.source", "pk": 15779, "fields": {"orig_filename": "Fugger_Eberhard_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382f.", "author": "", "orig_id": 1420985}}, {"model": "metainfo.source", "pk": 15780, "fields": {"orig_filename": "Fumagalli_Adolfo_1828_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420986}}, {"model": "metainfo.source", "pk": 15781, "fields": {"orig_filename": "Funk_Salomon_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420987}}, {"model": "metainfo.source", "pk": 15782, "fields": {"orig_filename": "Funtek_Anton_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420988}}, {"model": "metainfo.source", "pk": 15783, "fields": {"orig_filename": "Furtwaengler_Philipp-Friedrich-Pius_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420989}}, {"model": "metainfo.source", "pk": 15784, "fields": {"orig_filename": "Fussenegger_Ernst_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1421068}}, {"model": "metainfo.source", "pk": 15785, "fields": {"orig_filename": "Fuss_Heinrich_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420990}}, {"model": "metainfo.source", "pk": 15786, "fields": {"orig_filename": "Fuss_Johann-Ev_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420991}}, {"model": "metainfo.source", "pk": 15787, "fields": {"orig_filename": "Fuss_Karl_1817_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420992}}, {"model": "metainfo.source", "pk": 15788, "fields": {"orig_filename": "Fuss_Michael_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1421067}}, {"model": "metainfo.source", "pk": 15789, "fields": {"orig_filename": "Gaal_Eugen_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421069}}, {"model": "metainfo.source", "pk": 15790, "fields": {"orig_filename": "Gaal_Georg_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421070}}, {"model": "metainfo.source", "pk": 15791, "fields": {"orig_filename": "Gaal_Jozsef_1811_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421071}}, {"model": "metainfo.source", "pk": 15792, "fields": {"orig_filename": "Gabaglio_Antonio_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421072}}, {"model": "metainfo.source", "pk": 15793, "fields": {"orig_filename": "Gabelli_Antonio_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421074}}, {"model": "metainfo.source", "pk": 15794, "fields": {"orig_filename": "Gabel_Heinrich_1873_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421073}}, {"model": "metainfo.source", "pk": 15795, "fields": {"orig_filename": "Gaber_Hans_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421075}}, {"model": "metainfo.source", "pk": 15796, "fields": {"orig_filename": "Gabillon_Ludwig_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421082}}, {"model": "metainfo.source", "pk": 15797, "fields": {"orig_filename": "Gablenz_Ludwig_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386f.", "author": "", "orig_id": 1421084}}, {"model": "metainfo.source", "pk": 15798, "fields": {"orig_filename": "Gabler_Joseph_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 387", "author": "", "orig_id": 1421085}}, {"model": "metainfo.source", "pk": 15799, "fields": {"orig_filename": "Gabler_Wilhelm_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421086}}, {"model": "metainfo.source", "pk": 15800, "fields": {"orig_filename": "Gabl_Alois_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421083}}, {"model": "metainfo.source", "pk": 15801, "fields": {"orig_filename": "Gabriely_Adolf_1829_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421087}}, {"model": "metainfo.source", "pk": 15802, "fields": {"orig_filename": "Gabrscek_Andrej_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421165}}, {"model": "metainfo.source", "pk": 15803, "fields": {"orig_filename": "Gaddi_Paolo_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421166}}, {"model": "metainfo.source", "pk": 15804, "fields": {"orig_filename": "Gaehrich_Wenzel_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421168}}, {"model": "metainfo.source", "pk": 15805, "fields": {"orig_filename": "Gaensbacher_Johann-Bapt_1778_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388f.", "author": "", "orig_id": 1421167}}, {"model": "metainfo.source", "pk": 15806, "fields": {"orig_filename": "Gaensbacher_Josef_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421169}}, {"model": "metainfo.source", "pk": 15807, "fields": {"orig_filename": "Gaertner_Corbinian_1751_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421170}}, {"model": "metainfo.source", "pk": 15808, "fields": {"orig_filename": "Gaertner_Friedrich_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421171}}, {"model": "metainfo.source", "pk": 15809, "fields": {"orig_filename": "Gaertner_Gustav_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389f.", "author": "", "orig_id": 1421172}}, {"model": "metainfo.source", "pk": 15810, "fields": {"orig_filename": "Gaertner_Nikolas_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390", "author": "", "orig_id": 1421173}}, {"model": "metainfo.source", "pk": 15811, "fields": {"orig_filename": "Gaertner_Wilhelm_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390", "author": "", "orig_id": 1421174}}, {"model": "metainfo.source", "pk": 15812, "fields": {"orig_filename": "Gagern_Friedrich_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390f.", "author": "", "orig_id": 1421175}}, {"model": "metainfo.source", "pk": 15813, "fields": {"orig_filename": "Gagern_Max-Ludwig_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 391f.", "author": "", "orig_id": 1421176}}, {"model": "metainfo.source", "pk": 15814, "fields": {"orig_filename": "Gaheis_Alexander_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421177}}, {"model": "metainfo.source", "pk": 15815, "fields": {"orig_filename": "Gaigher_Horatius_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421179}}, {"model": "metainfo.source", "pk": 15816, "fields": {"orig_filename": "Gaisberger_Joseph_1792_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421178}}, {"model": "metainfo.source", "pk": 15817, "fields": {"orig_filename": "Gaj_Ljudevit_1809_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421180}}, {"model": "metainfo.source", "pk": 15818, "fields": {"orig_filename": "Galehr_Fridolin_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421181}}, {"model": "metainfo.source", "pk": 15819, "fields": {"orig_filename": "Galgotzy_Anton_1837_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421182}}, {"model": "metainfo.source", "pk": 15820, "fields": {"orig_filename": "Galicz_Jan_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421183}}, {"model": "metainfo.source", "pk": 15821, "fields": {"orig_filename": "Gallenberg_Wenzel-Robert_1783_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421263}}, {"model": "metainfo.source", "pk": 15822, "fields": {"orig_filename": "Gallenga_Antonio_1812_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421187}}, {"model": "metainfo.source", "pk": 15823, "fields": {"orig_filename": "Gallenstein_Meinrad_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394f.", "author": "", "orig_id": 1421264}}, {"model": "metainfo.source", "pk": 15824, "fields": {"orig_filename": "Gallesio_Giorgio_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421265}}, {"model": "metainfo.source", "pk": 15825, "fields": {"orig_filename": "Galle_Ernst_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421186}}, {"model": "metainfo.source", "pk": 15826, "fields": {"orig_filename": "Gallina_Josef-Wilhelm_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421266}}, {"model": "metainfo.source", "pk": 15827, "fields": {"orig_filename": "Gallini_Stefano_1756_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421267}}, {"model": "metainfo.source", "pk": 15828, "fields": {"orig_filename": "Galliny_Florentine_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421268}}, {"model": "metainfo.source", "pk": 15829, "fields": {"orig_filename": "Gallmeyer_Josefine_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395f.", "author": "", "orig_id": 1421269}}, {"model": "metainfo.source", "pk": 15830, "fields": {"orig_filename": "Gallois_Franz_1770_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421270}}, {"model": "metainfo.source", "pk": 15831, "fields": {"orig_filename": "Gallois_Ludwig_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421271}}, {"model": "metainfo.source", "pk": 15832, "fields": {"orig_filename": "Gallois_Moritz_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421272}}, {"model": "metainfo.source", "pk": 15833, "fields": {"orig_filename": "Gall_Johann_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393f.", "author": "", "orig_id": 1421184}}, {"model": "metainfo.source", "pk": 15834, "fields": {"orig_filename": "Gall_Josef_1820_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421185}}, {"model": "metainfo.source", "pk": 15835, "fields": {"orig_filename": "Galovic_Franjo_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421274}}, {"model": "metainfo.source", "pk": 15836, "fields": {"orig_filename": "Galston_Gottfried_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421275}}, {"model": "metainfo.source", "pk": 15837, "fields": {"orig_filename": "Galura_Bernhard_1764_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396f.", "author": "", "orig_id": 1421276}}, {"model": "metainfo.source", "pk": 15838, "fields": {"orig_filename": "Galvagni_Peter-Cav_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421277}}, {"model": "metainfo.source", "pk": 15839, "fields": {"orig_filename": "Galvani_Giovanni_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421278}}, {"model": "metainfo.source", "pk": 15840, "fields": {"orig_filename": "Gamerith_Franz_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421279}}, {"model": "metainfo.source", "pk": 15841, "fields": {"orig_filename": "Gamerith_Walther_1903_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397f.", "author": "", "orig_id": 1421280}}, {"model": "metainfo.source", "pk": 15842, "fields": {"orig_filename": "Ganahl_Arnold_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421282}}, {"model": "metainfo.source", "pk": 15843, "fields": {"orig_filename": "Ganahl_Carl_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421283}}, {"model": "metainfo.source", "pk": 15844, "fields": {"orig_filename": "Ganahl_Carl_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421284}}, {"model": "metainfo.source", "pk": 15845, "fields": {"orig_filename": "Ganahl_Johann-Josef_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421286}}, {"model": "metainfo.source", "pk": 15846, "fields": {"orig_filename": "Ganahl_Johann_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398f.", "author": "", "orig_id": 1421285}}, {"model": "metainfo.source", "pk": 15847, "fields": {"orig_filename": "Ganahl_Karl-Hans_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421287}}, {"model": "metainfo.source", "pk": 15848, "fields": {"orig_filename": "Ganahl_Rudolf_1833_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421288}}, {"model": "metainfo.source", "pk": 15849, "fields": {"orig_filename": "Gander_Hieronymus_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399f.", "author": "", "orig_id": 1421358}}, {"model": "metainfo.source", "pk": 15850, "fields": {"orig_filename": "Ganghofner_Friedrich_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421359}}, {"model": "metainfo.source", "pk": 15851, "fields": {"orig_filename": "Ganglbauer_Coelestin-Josef_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400f.", "author": "", "orig_id": 1421363}}, {"model": "metainfo.source", "pk": 15852, "fields": {"orig_filename": "Ganglbauer_Ludwig_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421364}}, {"model": "metainfo.source", "pk": 15853, "fields": {"orig_filename": "Ganglberger_Johann-Wilhelm_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421365}}, {"model": "metainfo.source", "pk": 15854, "fields": {"orig_filename": "Gangl_Alojz_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421360}}, {"model": "metainfo.source", "pk": 15855, "fields": {"orig_filename": "Gangl_Josef_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1420103}}, {"model": "metainfo.source", "pk": 15856, "fields": {"orig_filename": "Gangl_Josef_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421361}}, {"model": "metainfo.source", "pk": 15857, "fields": {"orig_filename": "Gangl_Virgil_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421362}}, {"model": "metainfo.source", "pk": 15858, "fields": {"orig_filename": "Ganner_Anton-Maria_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421366}}, {"model": "metainfo.source", "pk": 15859, "fields": {"orig_filename": "Gans-Ludassy_Julius_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401f.", "author": "", "orig_id": 1421367}}, {"model": "metainfo.source", "pk": 15860, "fields": {"orig_filename": "Gans-Ludassy_Moritz_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421368}}, {"model": "metainfo.source", "pk": 15861, "fields": {"orig_filename": "Ganser_Anton_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421369}}, {"model": "metainfo.source", "pk": 15862, "fields": {"orig_filename": "Gans_Johann_1886_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444515}}, {"model": "metainfo.source", "pk": 15863, "fields": {"orig_filename": "Ganz_Abraham_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421370}}, {"model": "metainfo.source", "pk": 15864, "fields": {"orig_filename": "Garay_Janos_1812_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402f.", "author": "", "orig_id": 1421372}}, {"model": "metainfo.source", "pk": 15865, "fields": {"orig_filename": "Garber_Josef_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421378}}, {"model": "metainfo.source", "pk": 15866, "fields": {"orig_filename": "Gardonyi_Geza_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421379}}, {"model": "metainfo.source", "pk": 15867, "fields": {"orig_filename": "Gareis_Anton_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421380}}, {"model": "metainfo.source", "pk": 15868, "fields": {"orig_filename": "Garger_Ernst_1892_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421381}}, {"model": "metainfo.source", "pk": 15869, "fields": {"orig_filename": "Garovaglio_Santo_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403f.", "author": "", "orig_id": 1421382}}, {"model": "metainfo.source", "pk": 15870, "fields": {"orig_filename": "Freuensfeld_Josip_1861_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422011}}, {"model": "metainfo.source", "pk": 15871, "fields": {"orig_filename": "Freundlich_Elisabeth_1906_2001.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1435143}}, {"model": "metainfo.source", "pk": 15872, "fields": {"orig_filename": "Freundlich_Emmi_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422015}}, {"model": "metainfo.source", "pk": 15873, "fields": {"orig_filename": "Freund_August_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422012}}, {"model": "metainfo.source", "pk": 15874, "fields": {"orig_filename": "Freund_Georg_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358f.", "author": "", "orig_id": 1422013}}, {"model": "metainfo.source", "pk": 15875, "fields": {"orig_filename": "Freund_Leopold_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422014}}, {"model": "metainfo.source", "pk": 15876, "fields": {"orig_filename": "Freyer_Heinrich_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422020}}, {"model": "metainfo.source", "pk": 15877, "fields": {"orig_filename": "Freyn_Joseph-Franz_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422021}}, {"model": "metainfo.source", "pk": 15878, "fields": {"orig_filename": "Freyssmuth_Josef_1786_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422022}}, {"model": "metainfo.source", "pk": 15879, "fields": {"orig_filename": "Freytag_Gustav_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422023}}, {"model": "metainfo.source", "pk": 15880, "fields": {"orig_filename": "Frey_Anton_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422016}}, {"model": "metainfo.source", "pk": 15881, "fields": {"orig_filename": "Frey_Friedrich_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422017}}, {"model": "metainfo.source", "pk": 15882, "fields": {"orig_filename": "Frey_Johanna_1867_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359f.", "author": "", "orig_id": 1422018}}, {"model": "metainfo.source", "pk": 15883, "fields": {"orig_filename": "Frey_Wilhelm_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422019}}, {"model": "metainfo.source", "pk": 15884, "fields": {"orig_filename": "Friberth_Karl_1736_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422024}}, {"model": "metainfo.source", "pk": 15885, "fields": {"orig_filename": "Frick_Karl_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422026}}, {"model": "metainfo.source", "pk": 15886, "fields": {"orig_filename": "Frida_Emil_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422027}}, {"model": "metainfo.source", "pk": 15887, "fields": {"orig_filename": "Frieberger_Gustav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422028}}, {"model": "metainfo.source", "pk": 15888, "fields": {"orig_filename": "Friedell_Egon_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362", "author": "", "orig_id": 1422030}}, {"model": "metainfo.source", "pk": 15889, "fields": {"orig_filename": "Friedinger_Karl_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362", "author": "", "orig_id": 1422100}}, {"model": "metainfo.source", "pk": 15890, "fields": {"orig_filename": "Friedjung_Heinrich_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362f.", "author": "", "orig_id": 1422101}}, {"model": "metainfo.source", "pk": 15891, "fields": {"orig_filename": "Friedjung_Josef-K_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422102}}, {"model": "metainfo.source", "pk": 15892, "fields": {"orig_filename": "Friedlaender-Malheim_Friedrich_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422108}}, {"model": "metainfo.source", "pk": 15893, "fields": {"orig_filename": "Friedlaender_Adolf-A_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363f.", "author": "", "orig_id": 1422105}}, {"model": "metainfo.source", "pk": 15894, "fields": {"orig_filename": "Friedlaender_Max_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422106}}, {"model": "metainfo.source", "pk": 15895, "fields": {"orig_filename": "Friedlaender_Paul_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422107}}, {"model": "metainfo.source", "pk": 15896, "fields": {"orig_filename": "Friedl_Richard_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422103}}, {"model": "metainfo.source", "pk": 15897, "fields": {"orig_filename": "Friedl_Theodor_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422104}}, {"model": "metainfo.source", "pk": 15898, "fields": {"orig_filename": "Friedmann_Meir_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422110}}, {"model": "metainfo.source", "pk": 15899, "fields": {"orig_filename": "Friedmann_Otto-Bernhard_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422112}}, {"model": "metainfo.source", "pk": 15900, "fields": {"orig_filename": "Friedmann_Otto_1860_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422111}}, {"model": "metainfo.source", "pk": 15901, "fields": {"orig_filename": "Friedmann_Siegwart_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365f.", "author": "", "orig_id": 1422113}}, {"model": "metainfo.source", "pk": 15902, "fields": {"orig_filename": "Friedman_Ignaz_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364f.", "author": "", "orig_id": 1422109}}, {"model": "metainfo.source", "pk": 15903, "fields": {"orig_filename": "Friedrichsthal_Emanuel_1809_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422118}}, {"model": "metainfo.source", "pk": 15904, "fields": {"orig_filename": "Friedrich_Ferdinand-Leopold_1821_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422114}}, {"model": "metainfo.source", "pk": 15905, "fields": {"orig_filename": "Friedrich_Karl_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422116}}, {"model": "metainfo.source", "pk": 15906, "fields": {"orig_filename": "Friedrich_Maria-Albrecht_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422115}}, {"model": "metainfo.source", "pk": 15907, "fields": {"orig_filename": "Friedwagner_Matthias_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366f.", "author": "", "orig_id": 1422119}}, {"model": "metainfo.source", "pk": 15908, "fields": {"orig_filename": "Fried_Alfred-Hermann_1864_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361f.", "author": "", "orig_id": 1422029}}, {"model": "metainfo.source", "pk": 15909, "fields": {"orig_filename": "Fries-Skene_Alfred_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422121}}, {"model": "metainfo.source", "pk": 15910, "fields": {"orig_filename": "Friesach_Karl_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422122}}, {"model": "metainfo.source", "pk": 15911, "fields": {"orig_filename": "Friese_Carl-Adolph_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367f.", "author": "", "orig_id": 1420701}}, {"model": "metainfo.source", "pk": 15912, "fields": {"orig_filename": "Friese_Carl_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1420700}}, {"model": "metainfo.source", "pk": 15913, "fields": {"orig_filename": "Friess_Gottfried_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420702}}, {"model": "metainfo.source", "pk": 15914, "fields": {"orig_filename": "Fries_Moritz-Christian_1777_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422120}}, {"model": "metainfo.source", "pk": 15915, "fields": {"orig_filename": "Frimberger_Johann-Georg_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420703}}, {"model": "metainfo.source", "pk": 15916, "fields": {"orig_filename": "Frimmel-Traisenau_Theodor_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420704}}, {"model": "metainfo.source", "pk": 15917, "fields": {"orig_filename": "Frimont-Palota_Johann-Maria_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368f.", "author": "", "orig_id": 1420705}}, {"model": "metainfo.source", "pk": 15918, "fields": {"orig_filename": "Frind_Anton-Ludwig_1823_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420706}}, {"model": "metainfo.source", "pk": 15919, "fields": {"orig_filename": "Frind_Wenzel-Anton_1843_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420707}}, {"model": "metainfo.source", "pk": 15920, "fields": {"orig_filename": "Frint_Jakob_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420708}}, {"model": "metainfo.source", "pk": 15921, "fields": {"orig_filename": "Frischauer_Berthold_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420711}}, {"model": "metainfo.source", "pk": 15922, "fields": {"orig_filename": "Frischauf_Johannes_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420712}}, {"model": "metainfo.source", "pk": 15923, "fields": {"orig_filename": "Frisch_Anton_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420709}}, {"model": "metainfo.source", "pk": 15924, "fields": {"orig_filename": "Frisch_Hans_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369f.", "author": "", "orig_id": 1420710}}, {"model": "metainfo.source", "pk": 15925, "fields": {"orig_filename": "Fritsch_Anton_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420713}}, {"model": "metainfo.source", "pk": 15926, "fields": {"orig_filename": "Fritsch_Carl_1812_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370f.", "author": "", "orig_id": 1420714}}, {"model": "metainfo.source", "pk": 15927, "fields": {"orig_filename": "Fritsch_Johann_1849_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420715}}, {"model": "metainfo.source", "pk": 15928, "fields": {"orig_filename": "Fritsch_Karl_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420716}}, {"model": "metainfo.source", "pk": 15929, "fields": {"orig_filename": "Fritsch_Karl_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420717}}, {"model": "metainfo.source", "pk": 15930, "fields": {"orig_filename": "Frivaldszky_Emmerich_1799_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371f.", "author": "", "orig_id": 1420718}}, {"model": "metainfo.source", "pk": 15931, "fields": {"orig_filename": "Frivaldszky_Johann_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420719}}, {"model": "metainfo.source", "pk": 15932, "fields": {"orig_filename": "Frodl_Karl_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420720}}, {"model": "metainfo.source", "pk": 15933, "fields": {"orig_filename": "Froehlich_Barbara_1797_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420723}}, {"model": "metainfo.source", "pk": 15934, "fields": {"orig_filename": "Froehlich_Georg_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372f.", "author": "", "orig_id": 1420793}}, {"model": "metainfo.source", "pk": 15935, "fields": {"orig_filename": "Froehlich_Isidor_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420794}}, {"model": "metainfo.source", "pk": 15936, "fields": {"orig_filename": "Froehlich_Josephine_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420795}}, {"model": "metainfo.source", "pk": 15937, "fields": {"orig_filename": "Froehlich_Katharina_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420796}}, {"model": "metainfo.source", "pk": 15938, "fields": {"orig_filename": "Froehlich_Maria-Anna_1793_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420722}}, {"model": "metainfo.source", "pk": 15939, "fields": {"orig_filename": "Froeschel_Berthold-Ignaz_1813_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420797}}, {"model": "metainfo.source", "pk": 15940, "fields": {"orig_filename": "Froeschl_Karl_1848_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420798}}, {"model": "metainfo.source", "pk": 15941, "fields": {"orig_filename": "Frohner_Johann_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128072}}, {"model": "metainfo.source", "pk": 15942, "fields": {"orig_filename": "Fromm_Emil_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373f.", "author": "", "orig_id": 1420799}}, {"model": "metainfo.source", "pk": 15943, "fields": {"orig_filename": "Fromm_Karl-Josef_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420800}}, {"model": "metainfo.source", "pk": 15944, "fields": {"orig_filename": "Fronius_Franz-Friedrich_1829_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420801}}, {"model": "metainfo.source", "pk": 15945, "fields": {"orig_filename": "Fronius_Karl-Josef_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420802}}, {"model": "metainfo.source", "pk": 15946, "fields": {"orig_filename": "Fronz_Emil_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420803}}, {"model": "metainfo.source", "pk": 15947, "fields": {"orig_filename": "Fronz_Oskar_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374f.", "author": "", "orig_id": 1420804}}, {"model": "metainfo.source", "pk": 15948, "fields": {"orig_filename": "Fronz_Richard_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420805}}, {"model": "metainfo.source", "pk": 15949, "fields": {"orig_filename": "Froon-Kirchrath_Josef_1740_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420806}}, {"model": "metainfo.source", "pk": 15950, "fields": {"orig_filename": "Fruehling_Carl_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420807}}, {"model": "metainfo.source", "pk": 15951, "fields": {"orig_filename": "Fruehwald_Ferdinand_1854_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420808}}, {"model": "metainfo.source", "pk": 15952, "fields": {"orig_filename": "Fruehwald_Wilhelm-Theodor_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420809}}, {"model": "metainfo.source", "pk": 15953, "fields": {"orig_filename": "Fruehwirth_Andreas_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375f.", "author": "", "orig_id": 1420810}}, {"model": "metainfo.source", "pk": 15954, "fields": {"orig_filename": "Fruwirth_Carl_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420811}}, {"model": "metainfo.source", "pk": 15955, "fields": {"orig_filename": "Fruwirt_Ferdinand_1812_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420812}}, {"model": "metainfo.source", "pk": 15956, "fields": {"orig_filename": "Fruwirt_Ferdinand_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420813}}, {"model": "metainfo.source", "pk": 15957, "fields": {"orig_filename": "Frydmann-Prawy_Marcell_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376f.", "author": "", "orig_id": 1420883}}, {"model": "metainfo.source", "pk": 15958, "fields": {"orig_filename": "Fuchs_Adalbert_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420884}}, {"model": "metainfo.source", "pk": 15959, "fields": {"orig_filename": "Fuchs_Adalbert_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420885}}, {"model": "metainfo.source", "pk": 15960, "fields": {"orig_filename": "Fuchs_Adalbert_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420886}}, {"model": "metainfo.source", "pk": 15961, "fields": {"orig_filename": "Fuchs_Alfred_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420887}}, {"model": "metainfo.source", "pk": 15962, "fields": {"orig_filename": "Fuchs_Ernst_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420888}}, {"model": "metainfo.source", "pk": 15963, "fields": {"orig_filename": "Fuchs_Franz-Xaver_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420889}}, {"model": "metainfo.source", "pk": 15964, "fields": {"orig_filename": "Fuchs_Georg_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420890}}, {"model": "metainfo.source", "pk": 15965, "fields": {"orig_filename": "Fuchs_Johann-Nepomuk_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420892}}, {"model": "metainfo.source", "pk": 15966, "fields": {"orig_filename": "Fuchs_Johann-Nep_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378f.", "author": "", "orig_id": 1420891}}, {"model": "metainfo.source", "pk": 15967, "fields": {"orig_filename": "Fuchs_Robert_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420893}}, {"model": "metainfo.source", "pk": 15968, "fields": {"orig_filename": "Fuchs_Siegmund_1859_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379", "author": "", "orig_id": 1420894}}, {"model": "metainfo.source", "pk": 15969, "fields": {"orig_filename": "Fuchs_Theodor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379", "author": "", "orig_id": 1420895}}, {"model": "metainfo.source", "pk": 15970, "fields": {"orig_filename": "Fuchs_Viktor_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379f.", "author": "", "orig_id": 1420896}}, {"model": "metainfo.source", "pk": 15971, "fields": {"orig_filename": "Fuchs_Wilhelm_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420897}}, {"model": "metainfo.source", "pk": 15972, "fields": {"orig_filename": "Fueger_Heinrich-Friedrich_1751_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420898}}, {"model": "metainfo.source", "pk": 15973, "fields": {"orig_filename": "Foetterle_Franz_1823_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421445}}, {"model": "metainfo.source", "pk": 15974, "fields": {"orig_filename": "Fogarasi_Johann_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421446}}, {"model": "metainfo.source", "pk": 15975, "fields": {"orig_filename": "Folliot-Crenneville_Franz_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421449}}, {"model": "metainfo.source", "pk": 15976, "fields": {"orig_filename": "Folliot-Crenneville_Ludwig-Karl_1765_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421450}}, {"model": "metainfo.source", "pk": 15977, "fields": {"orig_filename": "Foll_Ferdinand_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334f.", "author": "", "orig_id": 1421448}}, {"model": "metainfo.source", "pk": 15978, "fields": {"orig_filename": "Folnegovic_Fran_1848_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421529}}, {"model": "metainfo.source", "pk": 15979, "fields": {"orig_filename": "Folnesics_Hans_1886_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421530}}, {"model": "metainfo.source", "pk": 15980, "fields": {"orig_filename": "Folnesics_Josef_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421531}}, {"model": "metainfo.source", "pk": 15981, "fields": {"orig_filename": "Fonck_Leopold_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421532}}, {"model": "metainfo.source", "pk": 15982, "fields": {"orig_filename": "Forchheimer_Philipp_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421533}}, {"model": "metainfo.source", "pk": 15983, "fields": {"orig_filename": "Forescu_Maria_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444597}}, {"model": "metainfo.source", "pk": 15984, "fields": {"orig_filename": "Foresti_Johann-Baptist_1776_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421535}}, {"model": "metainfo.source", "pk": 15985, "fields": {"orig_filename": "Forgach_Anton_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421536}}, {"model": "metainfo.source", "pk": 15986, "fields": {"orig_filename": "Formanek_Eduard_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336f.", "author": "", "orig_id": 1421537}}, {"model": "metainfo.source", "pk": 15987, "fields": {"orig_filename": "Formanek_Jaroslav_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421538}}, {"model": "metainfo.source", "pk": 15988, "fields": {"orig_filename": "Formanek_Romuald_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421539}}, {"model": "metainfo.source", "pk": 15989, "fields": {"orig_filename": "Formey_Alfred_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421540}}, {"model": "metainfo.source", "pk": 15990, "fields": {"orig_filename": "Forschneritsch_Alfred-Eduard_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421541}}, {"model": "metainfo.source", "pk": 15991, "fields": {"orig_filename": "Forst-Battaglia_Otto_1889_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444316}}, {"model": "metainfo.source", "pk": 15992, "fields": {"orig_filename": "Forster-Brandt_Ellen_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421547}}, {"model": "metainfo.source", "pk": 15993, "fields": {"orig_filename": "Forster_Adolf-Emanuel_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421544}}, {"model": "metainfo.source", "pk": 15994, "fields": {"orig_filename": "Forster_Joseph_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337f.", "author": "", "orig_id": 1421545}}, {"model": "metainfo.source", "pk": 15995, "fields": {"orig_filename": "Forster_Zdenko_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421546}}, {"model": "metainfo.source", "pk": 15996, "fields": {"orig_filename": "Forstner_August_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421548}}, {"model": "metainfo.source", "pk": 15997, "fields": {"orig_filename": "Forstner_Leopold_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421549}}, {"model": "metainfo.source", "pk": 15998, "fields": {"orig_filename": "Forti_Franz-Anton_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421551}}, {"model": "metainfo.source", "pk": 15999, "fields": {"orig_filename": "Fort_Josef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338f.", "author": "", "orig_id": 1421550}}, {"model": "metainfo.source", "pk": 16000, "fields": {"orig_filename": "Fossek_Wilhelm_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421552}}, {"model": "metainfo.source", "pk": 16001, "fields": {"orig_filename": "Fossel_Viktor_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421553}}, {"model": "metainfo.source", "pk": 16002, "fields": {"orig_filename": "Foullon-Norbeeck_Heinrich_1850_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421623}}, {"model": "metainfo.source", "pk": 16003, "fields": {"orig_filename": "Fournier_Antonie_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421625}}, {"model": "metainfo.source", "pk": 16004, "fields": {"orig_filename": "Fournier_August_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421626}}, {"model": "metainfo.source", "pk": 16005, "fields": {"orig_filename": "Fraenkel_Alexander_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421627}}, {"model": "metainfo.source", "pk": 16006, "fields": {"orig_filename": "Fraenkel_Sigmund_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421628}}, {"model": "metainfo.source", "pk": 16007, "fields": {"orig_filename": "Fraenkel_Wilhelm_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421629}}, {"model": "metainfo.source", "pk": 16008, "fields": {"orig_filename": "Fraenzl_Friedrich_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421630}}, {"model": "metainfo.source", "pk": 16009, "fields": {"orig_filename": "Fraknoi_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421631}}, {"model": "metainfo.source", "pk": 16010, "fields": {"orig_filename": "Francesconi_Hermenegild_1795_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341f.", "author": "", "orig_id": 1421633}}, {"model": "metainfo.source", "pk": 16011, "fields": {"orig_filename": "France_Raoul-H_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421632}}, {"model": "metainfo.source", "pk": 16012, "fields": {"orig_filename": "Franchetti_Fortunata_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421634}}, {"model": "metainfo.source", "pk": 16013, "fields": {"orig_filename": "Francillo-Kaufmann_Hedwig_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421635}}, {"model": "metainfo.source", "pk": 16014, "fields": {"orig_filename": "Franckel_Adolf_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421638}}, {"model": "metainfo.source", "pk": 16015, "fields": {"orig_filename": "Franck_Carl-Heinrich_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421636}}, {"model": "metainfo.source", "pk": 16016, "fields": {"orig_filename": "Franck_Karl_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421637}}, {"model": "metainfo.source", "pk": 16017, "fields": {"orig_filename": "Franges-Mihanovic_Robert_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342f.", "author": "", "orig_id": 1421640}}, {"model": "metainfo.source", "pk": 16018, "fields": {"orig_filename": "Franges_Otto_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421639}}, {"model": "metainfo.source", "pk": 16019, "fields": {"orig_filename": "Frankel_Zacharias_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421729}}, {"model": "metainfo.source", "pk": 16020, "fields": {"orig_filename": "Frankenberger_Johann_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421730}}, {"model": "metainfo.source", "pk": 16021, "fields": {"orig_filename": "Franke_Ivan_1841_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421728}}, {"model": "metainfo.source", "pk": 16022, "fields": {"orig_filename": "Frankfurter_Salomon_1856_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421825}}, {"model": "metainfo.source", "pk": 16023, "fields": {"orig_filename": "Frankl-Gruen_Adolf_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421828}}, {"model": "metainfo.source", "pk": 16024, "fields": {"orig_filename": "Frankl-Hochwart_Lothar_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421829}}, {"model": "metainfo.source", "pk": 16025, "fields": {"orig_filename": "Frankl-Hochwart_Ludwig-August_1810_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421830}}, {"model": "metainfo.source", "pk": 16026, "fields": {"orig_filename": "Frankl_Katharina_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421826}}, {"model": "metainfo.source", "pk": 16027, "fields": {"orig_filename": "Frankl_Pinkas-Fritz_1848_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421827}}, {"model": "metainfo.source", "pk": 16028, "fields": {"orig_filename": "Franko_Ivan_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421831}}, {"model": "metainfo.source", "pk": 16029, "fields": {"orig_filename": "Frank_Eduard_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421641}}, {"model": "metainfo.source", "pk": 16030, "fields": {"orig_filename": "Frank_Ernst_1847_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421642}}, {"model": "metainfo.source", "pk": 16031, "fields": {"orig_filename": "Frank_Gustav-Wilhelm_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421645}}, {"model": "metainfo.source", "pk": 16032, "fields": {"orig_filename": "Frank_Hans_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421646}}, {"model": "metainfo.source", "pk": 16033, "fields": {"orig_filename": "Frank_Johann-Peter_1745_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421647}}, {"model": "metainfo.source", "pk": 16034, "fields": {"orig_filename": "Frank_Josip_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421721}}, {"model": "metainfo.source", "pk": 16035, "fields": {"orig_filename": "Frank_Liborius_1848_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421723}}, {"model": "metainfo.source", "pk": 16036, "fields": {"orig_filename": "Frank_Otto_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421724}}, {"model": "metainfo.source", "pk": 16037, "fields": {"orig_filename": "Frank_Peter-Anton_1746_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344f.", "author": "", "orig_id": 1421725}}, {"model": "metainfo.source", "pk": 16038, "fields": {"orig_filename": "Frank_Rudolf_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421726}}, {"model": "metainfo.source", "pk": 16039, "fields": {"orig_filename": "Frank_Rudolf_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421727}}, {"model": "metainfo.source", "pk": 16040, "fields": {"orig_filename": "Franz-Ferdinand___1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 350f.", "author": "", "orig_id": 1421838}}, {"model": "metainfo.source", "pk": 16041, "fields": {"orig_filename": "Franz-Joseph__1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 351f.", "author": "", "orig_id": 1421839}}, {"model": "metainfo.source", "pk": 16042, "fields": {"orig_filename": "Franz-Karl__1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421840}}, {"model": "metainfo.source", "pk": 16043, "fields": {"orig_filename": "Franz-Salvator__1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421841}}, {"model": "metainfo.source", "pk": 16044, "fields": {"orig_filename": "Franzelin_Johannes-B_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421914}}, {"model": "metainfo.source", "pk": 16045, "fields": {"orig_filename": "Franzisci_Franz_1825_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421915}}, {"model": "metainfo.source", "pk": 16046, "fields": {"orig_filename": "Franzos_Karl-Emil_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353f.", "author": "", "orig_id": 1421917}}, {"model": "metainfo.source", "pk": 16047, "fields": {"orig_filename": "Franz_Ferdinand-Geminian_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 350", "author": "", "orig_id": 1421837}}, {"model": "metainfo.source", "pk": 16048, "fields": {"orig_filename": "Franz_Gottfried_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348", "author": "", "orig_id": 1421833}}, {"model": "metainfo.source", "pk": 16049, "fields": {"orig_filename": "Franz_Joseph-Carl-Ambros-Stanislaus_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 349f.", "author": "", "orig_id": 1421836}}, {"model": "metainfo.source", "pk": 16050, "fields": {"orig_filename": "Franz_Rudolf_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348", "author": "", "orig_id": 1421834}}, {"model": "metainfo.source", "pk": 16051, "fields": {"orig_filename": "Franz__1768_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348f.", "author": "", "orig_id": 1421835}}, {"model": "metainfo.source", "pk": 16052, "fields": {"orig_filename": "Frass_Rudolf_1880_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421919}}, {"model": "metainfo.source", "pk": 16053, "fields": {"orig_filename": "Frast_Johannes_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421920}}, {"model": "metainfo.source", "pk": 16054, "fields": {"orig_filename": "Frauendorfer_Marie_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421921}}, {"model": "metainfo.source", "pk": 16055, "fields": {"orig_filename": "Frauenfeld_Eduard_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421922}}, {"model": "metainfo.source", "pk": 16056, "fields": {"orig_filename": "Frauenfeld_Georg_1807_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354f.", "author": "", "orig_id": 1421923}}, {"model": "metainfo.source", "pk": 16057, "fields": {"orig_filename": "Fraungruber_Hans_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421924}}, {"model": "metainfo.source", "pk": 16058, "fields": {"orig_filename": "Fraus-Wagner_Arrigo_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421925}}, {"model": "metainfo.source", "pk": 16059, "fields": {"orig_filename": "Frauscher_Karl_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421926}}, {"model": "metainfo.source", "pk": 16060, "fields": {"orig_filename": "Frauscher_Moritz_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421927}}, {"model": "metainfo.source", "pk": 16061, "fields": {"orig_filename": "Fraydt-Fraydenegg_Otto_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421928}}, {"model": "metainfo.source", "pk": 16062, "fields": {"orig_filename": "Fredro_Aleksander_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355f.", "author": "", "orig_id": 1421929}}, {"model": "metainfo.source", "pk": 16063, "fields": {"orig_filename": "Fredro_Jan-Aleksander_1829_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421930}}, {"model": "metainfo.source", "pk": 16064, "fields": {"orig_filename": "Freh_Wilhelm_1910_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2128803}}, {"model": "metainfo.source", "pk": 16065, "fields": {"orig_filename": "Freiberger_Gustav_1853_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421931}}, {"model": "metainfo.source", "pk": 16066, "fields": {"orig_filename": "Freinademetz_Joseph_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421932}}, {"model": "metainfo.source", "pk": 16067, "fields": {"orig_filename": "Freindaller_Franz-Seraph-Jos_1753_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421933}}, {"model": "metainfo.source", "pk": 16068, "fields": {"orig_filename": "Freissauff-Neudegg_Felix_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357", "author": "", "orig_id": 1421934}}, {"model": "metainfo.source", "pk": 16069, "fields": {"orig_filename": "Frenzel_Karl_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357", "author": "", "orig_id": 1421935}}, {"model": "metainfo.source", "pk": 16070, "fields": {"orig_filename": "Freudenreich_Dragutin_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1421937}}, {"model": "metainfo.source", "pk": 16071, "fields": {"orig_filename": "Freudenreich_Josip_1827_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422010}}, {"model": "metainfo.source", "pk": 16072, "fields": {"orig_filename": "Freud_Anton-Walter_1921_2004.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128065}}, {"model": "metainfo.source", "pk": 16073, "fields": {"orig_filename": "Freud_Sigmund_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357f.", "author": "", "orig_id": 1421936}}, {"model": "metainfo.source", "pk": 16074, "fields": {"orig_filename": "Filek-Wittinghausen_Egid_1874_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421055}}, {"model": "metainfo.source", "pk": 16075, "fields": {"orig_filename": "Filipovic_Ivan_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421056}}, {"model": "metainfo.source", "pk": 16076, "fields": {"orig_filename": "Fillunger_Johann_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314f.", "author": "", "orig_id": 1421058}}, {"model": "metainfo.source", "pk": 16077, "fields": {"orig_filename": "Fillunger_Marie_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421059}}, {"model": "metainfo.source", "pk": 16078, "fields": {"orig_filename": "Fillunger_Paul_1883_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421060}}, {"model": "metainfo.source", "pk": 16079, "fields": {"orig_filename": "Filtsch_Johann_1753_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421061}}, {"model": "metainfo.source", "pk": 16080, "fields": {"orig_filename": "Filtsch_Karl_1830_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421062}}, {"model": "metainfo.source", "pk": 16081, "fields": {"orig_filename": "Filzer_Hans_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421064}}, {"model": "metainfo.source", "pk": 16082, "fields": {"orig_filename": "Filz_Fidelis_1777_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315f.", "author": "", "orig_id": 1421063}}, {"model": "metainfo.source", "pk": 16083, "fields": {"orig_filename": "Finaczy_Ernst_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421065}}, {"model": "metainfo.source", "pk": 16084, "fields": {"orig_filename": "Findeisen_Julius_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421066}}, {"model": "metainfo.source", "pk": 16085, "fields": {"orig_filename": "Finger_Alfred_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421140}}, {"model": "metainfo.source", "pk": 16086, "fields": {"orig_filename": "Finger_August_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421141}}, {"model": "metainfo.source", "pk": 16087, "fields": {"orig_filename": "Finger_Ernst_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316f.", "author": "", "orig_id": 1421142}}, {"model": "metainfo.source", "pk": 16088, "fields": {"orig_filename": "Finger_Josef_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421143}}, {"model": "metainfo.source", "pk": 16089, "fields": {"orig_filename": "Finger_Julius_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421144}}, {"model": "metainfo.source", "pk": 16090, "fields": {"orig_filename": "Finkel_Ludwig-Michal-Emanuel_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421149}}, {"model": "metainfo.source", "pk": 16091, "fields": {"orig_filename": "Fink_Anton-Barnabas_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421146}}, {"model": "metainfo.source", "pk": 16092, "fields": {"orig_filename": "Fink_Anton_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421145}}, {"model": "metainfo.source", "pk": 16093, "fields": {"orig_filename": "Fink_Jodok_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317f.", "author": "", "orig_id": 1421147}}, {"model": "metainfo.source", "pk": 16094, "fields": {"orig_filename": "Fink_Josef-Alois_1796_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421148}}, {"model": "metainfo.source", "pk": 16095, "fields": {"orig_filename": "Firnhaber_Friedrich_1818_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421150}}, {"model": "metainfo.source", "pk": 16096, "fields": {"orig_filename": "Firtsch_Georg_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421151}}, {"model": "metainfo.source", "pk": 16097, "fields": {"orig_filename": "Fischbach_Johann_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421152}}, {"model": "metainfo.source", "pk": 16098, "fields": {"orig_filename": "Fischel_Alfred_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421154}}, {"model": "metainfo.source", "pk": 16099, "fields": {"orig_filename": "Fischel_Alfred_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421153}}, {"model": "metainfo.source", "pk": 16100, "fields": {"orig_filename": "Fischel_David-Gabriel_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421155}}, {"model": "metainfo.source", "pk": 16101, "fields": {"orig_filename": "Fischel_Ernst_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421156}}, {"model": "metainfo.source", "pk": 16102, "fields": {"orig_filename": "Fischer-Ankern_Anton_1812_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421252}}, {"model": "metainfo.source", "pk": 16103, "fields": {"orig_filename": "Fischer-Roesslerstamm_Franz_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421253}}, {"model": "metainfo.source", "pk": 16104, "fields": {"orig_filename": "Fischer-Roesslerstamm_Josef-Emanuel_1787_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421254}}, {"model": "metainfo.source", "pk": 16105, "fields": {"orig_filename": "Fischer-Zickhartsburg_Friedrich_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421255}}, {"model": "metainfo.source", "pk": 16106, "fields": {"orig_filename": "Fischer_Albert_1830_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421157}}, {"model": "metainfo.source", "pk": 16107, "fields": {"orig_filename": "Fischer_Alois_1796_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319f.", "author": "", "orig_id": 1421158}}, {"model": "metainfo.source", "pk": 16108, "fields": {"orig_filename": "Fischer_Berthold_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421159}}, {"model": "metainfo.source", "pk": 16109, "fields": {"orig_filename": "Fischer_Christian_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421161}}, {"model": "metainfo.source", "pk": 16110, "fields": {"orig_filename": "Fischer_Cyrill_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421160}}, {"model": "metainfo.source", "pk": 16111, "fields": {"orig_filename": "Fischer_Daniel_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421162}}, {"model": "metainfo.source", "pk": 16112, "fields": {"orig_filename": "Fischer_Eduard_1846_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320f.", "author": "", "orig_id": 1421163}}, {"model": "metainfo.source", "pk": 16113, "fields": {"orig_filename": "Fischer_Eduard_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421164}}, {"model": "metainfo.source", "pk": 16114, "fields": {"orig_filename": "Fischer_Engelbert_1833_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421237}}, {"model": "metainfo.source", "pk": 16115, "fields": {"orig_filename": "Fischer_Felix_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421238}}, {"model": "metainfo.source", "pk": 16116, "fields": {"orig_filename": "Fischer_Franz_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421239}}, {"model": "metainfo.source", "pk": 16117, "fields": {"orig_filename": "Fischer_Friedrich_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421240}}, {"model": "metainfo.source", "pk": 16118, "fields": {"orig_filename": "Fischer_Friedrich_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421241}}, {"model": "metainfo.source", "pk": 16119, "fields": {"orig_filename": "Fischer_Jacob_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321f.", "author": "", "orig_id": 1421242}}, {"model": "metainfo.source", "pk": 16120, "fields": {"orig_filename": "Fischer_Johann-Conrad_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421243}}, {"model": "metainfo.source", "pk": 16121, "fields": {"orig_filename": "Fischer_Johann-Martin_1740_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421244}}, {"model": "metainfo.source", "pk": 16122, "fields": {"orig_filename": "Fischer_Josef_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421245}}, {"model": "metainfo.source", "pk": 16123, "fields": {"orig_filename": "Fischer_Joseph_1780_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322f.", "author": "", "orig_id": 1421246}}, {"model": "metainfo.source", "pk": 16124, "fields": {"orig_filename": "Fischer_Karl-Wilhelm_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421247}}, {"model": "metainfo.source", "pk": 16125, "fields": {"orig_filename": "Fischer_Lorenz-Maximilian_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421248}}, {"model": "metainfo.source", "pk": 16126, "fields": {"orig_filename": "Fischer_Ludwig_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421249}}, {"model": "metainfo.source", "pk": 16127, "fields": {"orig_filename": "Fischer_Rudolf_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323f.", "author": "", "orig_id": 1421250}}, {"model": "metainfo.source", "pk": 16128, "fields": {"orig_filename": "Fischer_Sigmund-Caspar_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2172531}}, {"model": "metainfo.source", "pk": 16129, "fields": {"orig_filename": "Fischer_Wilhelm_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421251}}, {"model": "metainfo.source", "pk": 16130, "fields": {"orig_filename": "Fischhof_Adolf_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421256}}, {"model": "metainfo.source", "pk": 16131, "fields": {"orig_filename": "Fischhof_Joseph_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421257}}, {"model": "metainfo.source", "pk": 16132, "fields": {"orig_filename": "Fischnaler_Konrad_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325f.", "author": "", "orig_id": 1421258}}, {"model": "metainfo.source", "pk": 16133, "fields": {"orig_filename": "Fitzinger_Franz_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421259}}, {"model": "metainfo.source", "pk": 16134, "fields": {"orig_filename": "Fitzinger_Leopold-Joseph_1802_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421260}}, {"model": "metainfo.source", "pk": 16135, "fields": {"orig_filename": "Fitzner_Rudolf_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421261}}, {"model": "metainfo.source", "pk": 16136, "fields": {"orig_filename": "Fjord_Olaf_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2269398}}, {"model": "metainfo.source", "pk": 16137, "fields": {"orig_filename": "Flach_Jozef_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421262}}, {"model": "metainfo.source", "pk": 16138, "fields": {"orig_filename": "Flajsman_Jurij_1818_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421335}}, {"model": "metainfo.source", "pk": 16139, "fields": {"orig_filename": "Flatt-Alfoeld_Karl_1853_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326f.", "author": "", "orig_id": 1421336}}, {"model": "metainfo.source", "pk": 16140, "fields": {"orig_filename": "Flattich_Wilhelm_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421337}}, {"model": "metainfo.source", "pk": 16141, "fields": {"orig_filename": "Flatz_Gebhard_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421338}}, {"model": "metainfo.source", "pk": 16142, "fields": {"orig_filename": "Flechner_Pauline_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421339}}, {"model": "metainfo.source", "pk": 16143, "fields": {"orig_filename": "Fleckh_Johann-Anton_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421340}}, {"model": "metainfo.source", "pk": 16144, "fields": {"orig_filename": "Fleischer-Eichenkranz_Ferdinand_1777_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421343}}, {"model": "metainfo.source", "pk": 16145, "fields": {"orig_filename": "Fleischer_Anton_1845_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421341}}, {"model": "metainfo.source", "pk": 16146, "fields": {"orig_filename": "Fleischer_Max_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421342}}, {"model": "metainfo.source", "pk": 16147, "fields": {"orig_filename": "Fleischhacker_Robert_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1445120}}, {"model": "metainfo.source", "pk": 16148, "fields": {"orig_filename": "Fleischl-Marxow_Ernst_1846_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421344}}, {"model": "metainfo.source", "pk": 16149, "fields": {"orig_filename": "Fleischmann_Andreas_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421345}}, {"model": "metainfo.source", "pk": 16150, "fields": {"orig_filename": "Fleischmann_Benno_1906_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328f.", "author": "", "orig_id": 1421346}}, {"model": "metainfo.source", "pk": 16151, "fields": {"orig_filename": "Fleischmann_Leo_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421347}}, {"model": "metainfo.source", "pk": 16152, "fields": {"orig_filename": "Fleischner_Josef_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421348}}, {"model": "metainfo.source", "pk": 16153, "fields": {"orig_filename": "Fleissner_Hans_1881_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421349}}, {"model": "metainfo.source", "pk": 16154, "fields": {"orig_filename": "Flesch_Carl_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421350}}, {"model": "metainfo.source", "pk": 16155, "fields": {"orig_filename": "Fleszar_Albin-Jan_1888_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329f.", "author": "", "orig_id": 1421351}}, {"model": "metainfo.source", "pk": 16156, "fields": {"orig_filename": "Fligely_August_1810_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421352}}, {"model": "metainfo.source", "pk": 16157, "fields": {"orig_filename": "Flir_Alois-Kasimir_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421353}}, {"model": "metainfo.source", "pk": 16158, "fields": {"orig_filename": "Flis_Janez_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421354}}, {"model": "metainfo.source", "pk": 16159, "fields": {"orig_filename": "Floderer_Wilhelm_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421355}}, {"model": "metainfo.source", "pk": 16160, "fields": {"orig_filename": "Floeck_Oswald_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421356}}, {"model": "metainfo.source", "pk": 16161, "fields": {"orig_filename": "Florschuetz_Josip_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330f.", "author": "", "orig_id": 1421357}}, {"model": "metainfo.source", "pk": 16162, "fields": {"orig_filename": "Fluck-Leidenkron_Josef-Bruno_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421431}}, {"model": "metainfo.source", "pk": 16163, "fields": {"orig_filename": "Fluck-Leidenkron_Moriz-Bruno_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421430}}, {"model": "metainfo.source", "pk": 16164, "fields": {"orig_filename": "Flunk_Matthias_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421432}}, {"model": "metainfo.source", "pk": 16165, "fields": {"orig_filename": "Fodor_Joseph_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331f.", "author": "", "orig_id": 1421433}}, {"model": "metainfo.source", "pk": 16166, "fields": {"orig_filename": "Foelseis_Josef_1760_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421434}}, {"model": "metainfo.source", "pk": 16167, "fields": {"orig_filename": "Foerstel_Gertrude_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421435}}, {"model": "metainfo.source", "pk": 16168, "fields": {"orig_filename": "Foerster-Lauterer_Berta_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421442}}, {"model": "metainfo.source", "pk": 16169, "fields": {"orig_filename": "Foerster-Streffleur_Rudolf_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333f.", "author": "", "orig_id": 1421443}}, {"model": "metainfo.source", "pk": 16170, "fields": {"orig_filename": "Foerster_Anton_1837_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421436}}, {"model": "metainfo.source", "pk": 16171, "fields": {"orig_filename": "Foerster_August_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421437}}, {"model": "metainfo.source", "pk": 16172, "fields": {"orig_filename": "Foerster_Emil_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332f.", "author": "", "orig_id": 1421438}}, {"model": "metainfo.source", "pk": 16173, "fields": {"orig_filename": "Foerster_Florentine_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421439}}, {"model": "metainfo.source", "pk": 16174, "fields": {"orig_filename": "Foerster_Ludwig-Christian-Friedrich_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421440}}, {"model": "metainfo.source", "pk": 16175, "fields": {"orig_filename": "Foerster_Wendelin_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421441}}, {"model": "metainfo.source", "pk": 16176, "fields": {"orig_filename": "Foest-Monshoff_Rudolf_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421444}}, {"model": "metainfo.source", "pk": 16177, "fields": {"orig_filename": "Feid_Joseph_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420682}}, {"model": "metainfo.source", "pk": 16178, "fields": {"orig_filename": "Feifalik_Julius_1833_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290f.", "author": "", "orig_id": 1420683}}, {"model": "metainfo.source", "pk": 16179, "fields": {"orig_filename": "Feigel_Longin_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420684}}, {"model": "metainfo.source", "pk": 16180, "fields": {"orig_filename": "Feigerle_Ignaz_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420685}}, {"model": "metainfo.source", "pk": 16181, "fields": {"orig_filename": "Feigl_Hans_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420686}}, {"model": "metainfo.source", "pk": 16182, "fields": {"orig_filename": "Feilmoser_Andreas_1777_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291f.", "author": "", "orig_id": 1420688}}, {"model": "metainfo.source", "pk": 16183, "fields": {"orig_filename": "Feil_Joseph_1811_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420687}}, {"model": "metainfo.source", "pk": 16184, "fields": {"orig_filename": "Feine_Paul_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420690}}, {"model": "metainfo.source", "pk": 16185, "fields": {"orig_filename": "Fein_Johann_1864_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420689}}, {"model": "metainfo.source", "pk": 16186, "fields": {"orig_filename": "Feistmantel_Franz_1786_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420691}}, {"model": "metainfo.source", "pk": 16187, "fields": {"orig_filename": "Feistmantel_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420692}}, {"model": "metainfo.source", "pk": 16188, "fields": {"orig_filename": "Feistmantel_Karl_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292f.", "author": "", "orig_id": 1420693}}, {"model": "metainfo.source", "pk": 16189, "fields": {"orig_filename": "Feistmantel_Ottokar_1848_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420694}}, {"model": "metainfo.source", "pk": 16190, "fields": {"orig_filename": "Feistmantel_Rudolf_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420695}}, {"model": "metainfo.source", "pk": 16191, "fields": {"orig_filename": "Feitler_Siegmund_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420696}}, {"model": "metainfo.source", "pk": 16192, "fields": {"orig_filename": "Fejerpataky_Ladislaus_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293f.", "author": "", "orig_id": 1420698}}, {"model": "metainfo.source", "pk": 16193, "fields": {"orig_filename": "Fejervary-Komlos-Keresztes_Geza_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420699}}, {"model": "metainfo.source", "pk": 16194, "fields": {"orig_filename": "Fejer_Georg_1766_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420697}}, {"model": "metainfo.source", "pk": 16195, "fields": {"orig_filename": "Fekonja_Andrej_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420768}}, {"model": "metainfo.source", "pk": 16196, "fields": {"orig_filename": "Fekonja_Roman_1868_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420769}}, {"model": "metainfo.source", "pk": 16197, "fields": {"orig_filename": "Felbinger_Franz_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420770}}, {"model": "metainfo.source", "pk": 16198, "fields": {"orig_filename": "Felderer_Hieronymus_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420775}}, {"model": "metainfo.source", "pk": 16199, "fields": {"orig_filename": "Felder_Cajetan_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294f.", "author": "", "orig_id": 1420772}}, {"model": "metainfo.source", "pk": 16200, "fields": {"orig_filename": "Felder_Franz-Michael_1839_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420773}}, {"model": "metainfo.source", "pk": 16201, "fields": {"orig_filename": "Felder_Rudolf_1842_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420774}}, {"model": "metainfo.source", "pk": 16202, "fields": {"orig_filename": "Feldhammer_Jacob_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2029476}}, {"model": "metainfo.source", "pk": 16203, "fields": {"orig_filename": "Feldkircher_Josef_1812_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295f.", "author": "", "orig_id": 1420776}}, {"model": "metainfo.source", "pk": 16204, "fields": {"orig_filename": "Feldmann_Leopold_1802_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420778}}, {"model": "metainfo.source", "pk": 16205, "fields": {"orig_filename": "Feldman_Wilhelm_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420777}}, {"model": "metainfo.source", "pk": 16206, "fields": {"orig_filename": "Feldner_Gundisalvus_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420779}}, {"model": "metainfo.source", "pk": 16207, "fields": {"orig_filename": "Felgel-Farnholz_Anton_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420780}}, {"model": "metainfo.source", "pk": 16208, "fields": {"orig_filename": "Felix_Eugen_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420782}}, {"model": "metainfo.source", "pk": 16209, "fields": {"orig_filename": "Felix_Herbert_1908_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147891}}, {"model": "metainfo.source", "pk": 16210, "fields": {"orig_filename": "Fellinger_Johann-Georg_1781_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296f.", "author": "", "orig_id": 1420783}}, {"model": "metainfo.source", "pk": 16211, "fields": {"orig_filename": "Fellner-Feldegg_Christoph_1789_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420787}}, {"model": "metainfo.source", "pk": 16212, "fields": {"orig_filename": "Fellner-Feldegg_Ferdinand_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420788}}, {"model": "metainfo.source", "pk": 16213, "fields": {"orig_filename": "Fellner_Ferdinand-I_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420784}}, {"model": "metainfo.source", "pk": 16214, "fields": {"orig_filename": "Fellner_Ferdinand-Ii_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420785}}, {"model": "metainfo.source", "pk": 16215, "fields": {"orig_filename": "Fellner_Michael-Ignaz_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420786}}, {"model": "metainfo.source", "pk": 16216, "fields": {"orig_filename": "Felmayer_Franz_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420789}}, {"model": "metainfo.source", "pk": 16217, "fields": {"orig_filename": "Felner_Koloman_1750_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420861}}, {"model": "metainfo.source", "pk": 16218, "fields": {"orig_filename": "Felsenreich_Anton_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420862}}, {"model": "metainfo.source", "pk": 16219, "fields": {"orig_filename": "Fendi_Peter_1796_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420863}}, {"model": "metainfo.source", "pk": 16220, "fields": {"orig_filename": "Fenner-Fenneberg_Daniel_1820_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420864}}, {"model": "metainfo.source", "pk": 16221, "fields": {"orig_filename": "Fenyes_Alexius_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298f.", "author": "", "orig_id": 1420865}}, {"model": "metainfo.source", "pk": 16222, "fields": {"orig_filename": "Fenyi_Julius_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299", "author": "", "orig_id": 1420866}}, {"model": "metainfo.source", "pk": 16223, "fields": {"orig_filename": "Fenzl_Eduard_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299", "author": "", "orig_id": 1420867}}, {"model": "metainfo.source", "pk": 16224, "fields": {"orig_filename": "Ferdinand-Maximilian___1832_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300f.", "author": "", "orig_id": 1420872}}, {"model": "metainfo.source", "pk": 16225, "fields": {"orig_filename": "Ferdinand_I_1793_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299f.", "author": "", "orig_id": 1420869}}, {"model": "metainfo.source", "pk": 16226, "fields": {"orig_filename": "Ferdinand_Karl-Josef_1781_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300", "author": "", "orig_id": 1420871}}, {"model": "metainfo.source", "pk": 16227, "fields": {"orig_filename": "Ferdinand__1769_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300", "author": "", "orig_id": 1420870}}, {"model": "metainfo.source", "pk": 16228, "fields": {"orig_filename": "Ferenczi_Zoltan_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 301", "author": "", "orig_id": 1420873}}, {"model": "metainfo.source", "pk": 16229, "fields": {"orig_filename": "Ferenczy_Franz_1835_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 301f.", "author": "", "orig_id": 1420874}}, {"model": "metainfo.source", "pk": 16230, "fields": {"orig_filename": "Ferenczy_Ida_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420875}}, {"model": "metainfo.source", "pk": 16231, "fields": {"orig_filename": "Ferenczy_Josef_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420877}}, {"model": "metainfo.source", "pk": 16232, "fields": {"orig_filename": "Ferenczy_Jose_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420876}}, {"model": "metainfo.source", "pk": 16233, "fields": {"orig_filename": "Ferenczy_Karl_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420878}}, {"model": "metainfo.source", "pk": 16234, "fields": {"orig_filename": "Ferenczy_Stefan_1792_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420879}}, {"model": "metainfo.source", "pk": 16235, "fields": {"orig_filename": "Ferk_Franz_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420880}}, {"model": "metainfo.source", "pk": 16236, "fields": {"orig_filename": "Fermendzin_Eusebije_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420881}}, {"model": "metainfo.source", "pk": 16237, "fields": {"orig_filename": "Fernau_Albert_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420882}}, {"model": "metainfo.source", "pk": 16238, "fields": {"orig_filename": "Ferrari_Emil_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420953}}, {"model": "metainfo.source", "pk": 16239, "fields": {"orig_filename": "Ferstel_Heinrich_1828_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303f.", "author": "", "orig_id": 1420954}}, {"model": "metainfo.source", "pk": 16240, "fields": {"orig_filename": "Ferstel_Max_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 304", "author": "", "orig_id": 1420955}}, {"model": "metainfo.source", "pk": 16241, "fields": {"orig_filename": "Fessler_Ignaz-Aurel_1756_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 304f.", "author": "", "orig_id": 1420956}}, {"model": "metainfo.source", "pk": 16242, "fields": {"orig_filename": "Fessler_Johann-Bapt_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420957}}, {"model": "metainfo.source", "pk": 16243, "fields": {"orig_filename": "Fessler_Josef_1813_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420958}}, {"model": "metainfo.source", "pk": 16244, "fields": {"orig_filename": "Festerburg_Gerard-Edward_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420961}}, {"model": "metainfo.source", "pk": 16245, "fields": {"orig_filename": "Festetics_Georg_1755_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420962}}, {"model": "metainfo.source", "pk": 16246, "fields": {"orig_filename": "Fest_Bernhard_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420959}}, {"model": "metainfo.source", "pk": 16247, "fields": {"orig_filename": "Fest_Emerich_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305f.", "author": "", "orig_id": 1420960}}, {"model": "metainfo.source", "pk": 16248, "fields": {"orig_filename": "Feszl_Friedrich_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420963}}, {"model": "metainfo.source", "pk": 16249, "fields": {"orig_filename": "Feszty_Arpad_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420964}}, {"model": "metainfo.source", "pk": 16250, "fields": {"orig_filename": "Feuchtersleben_Ernst_1806_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306f.", "author": "", "orig_id": 1420965}}, {"model": "metainfo.source", "pk": 16251, "fields": {"orig_filename": "Feuchtwang_David_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420966}}, {"model": "metainfo.source", "pk": 16252, "fields": {"orig_filename": "Feuer_Nathanael_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420967}}, {"model": "metainfo.source", "pk": 16253, "fields": {"orig_filename": "Fey_Emil_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420968}}, {"model": "metainfo.source", "pk": 16254, "fields": {"orig_filename": "Fiala_Eduard_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307f.", "author": "", "orig_id": 1420969}}, {"model": "metainfo.source", "pk": 16255, "fields": {"orig_filename": "Fiala_Franz_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420970}}, {"model": "metainfo.source", "pk": 16256, "fields": {"orig_filename": "Fiala_Hans_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420971}}, {"model": "metainfo.source", "pk": 16257, "fields": {"orig_filename": "Fibich_Stanislaw_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420972}}, {"model": "metainfo.source", "pk": 16258, "fields": {"orig_filename": "Fibich_Zdenek_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420973}}, {"model": "metainfo.source", "pk": 16259, "fields": {"orig_filename": "Fichtl_Franz_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308f.", "author": "", "orig_id": 1421042}}, {"model": "metainfo.source", "pk": 16260, "fields": {"orig_filename": "Fichtner_Carl_1805_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309", "author": "", "orig_id": 1421044}}, {"model": "metainfo.source", "pk": 16261, "fields": {"orig_filename": "Fickert_Auguste_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 310", "author": "", "orig_id": 1421047}}, {"model": "metainfo.source", "pk": 16262, "fields": {"orig_filename": "Ficker_Adolph_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309", "author": "", "orig_id": 1421045}}, {"model": "metainfo.source", "pk": 16263, "fields": {"orig_filename": "Ficker_Julius_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309f.", "author": "", "orig_id": 1421046}}, {"model": "metainfo.source", "pk": 16264, "fields": {"orig_filename": "Ficquelmont_Karl-Ludwig_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 310f.", "author": "", "orig_id": 1421048}}, {"model": "metainfo.source", "pk": 16265, "fields": {"orig_filename": "Fieber_Franz-Xaver_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421050}}, {"model": "metainfo.source", "pk": 16266, "fields": {"orig_filename": "Fiedler_Bernhard_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421051}}, {"model": "metainfo.source", "pk": 16267, "fields": {"orig_filename": "Fiedler_Bruno_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311f.", "author": "", "orig_id": 1421052}}, {"model": "metainfo.source", "pk": 16268, "fields": {"orig_filename": "Fiedler_Josef_1819_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420023}}, {"model": "metainfo.source", "pk": 16269, "fields": {"orig_filename": "Fiedler_Karl-Borromaeus_1817_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421049}}, {"model": "metainfo.source", "pk": 16270, "fields": {"orig_filename": "Fiedler_Tadeusz_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420024}}, {"model": "metainfo.source", "pk": 16271, "fields": {"orig_filename": "Fierich_Franciszek-Ksawery_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420025}}, {"model": "metainfo.source", "pk": 16272, "fields": {"orig_filename": "Fierich_Maurycy_1856_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420026}}, {"model": "metainfo.source", "pk": 16273, "fields": {"orig_filename": "Fierlinger_Julius_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312f.", "author": "", "orig_id": 1420027}}, {"model": "metainfo.source", "pk": 16274, "fields": {"orig_filename": "Figdor_Albert_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420028}}, {"model": "metainfo.source", "pk": 16275, "fields": {"orig_filename": "Figdor_Wilhelm_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420029}}, {"model": "metainfo.source", "pk": 16276, "fields": {"orig_filename": "Figuly_Ignaz-Karl_1807_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420030}}, {"model": "metainfo.source", "pk": 16277, "fields": {"orig_filename": "Fijalek_Jan-Nepomucen_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313f.", "author": "", "orig_id": 1420031}}, {"model": "metainfo.source", "pk": 16278, "fields": {"orig_filename": "Fijan_Andrija_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421053}}, {"model": "metainfo.source", "pk": 16279, "fields": {"orig_filename": "Filarszky_Nandor_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421054}}, {"model": "metainfo.source", "pk": 16280, "fields": {"orig_filename": "Esterhazy_Paul-Iii-Anton_1786_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421890}}, {"model": "metainfo.source", "pk": 16281, "fields": {"orig_filename": "Estermann_Josef_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269f.", "author": "", "orig_id": 1421891}}, {"model": "metainfo.source", "pk": 16282, "fields": {"orig_filename": "Estreicher_Alois-Raphael_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421892}}, {"model": "metainfo.source", "pk": 16283, "fields": {"orig_filename": "Estreicher_Karl-Josef_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421893}}, {"model": "metainfo.source", "pk": 16284, "fields": {"orig_filename": "Estreicher_Stanislaus_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421894}}, {"model": "metainfo.source", "pk": 16285, "fields": {"orig_filename": "Eterovic_Karlo_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421895}}, {"model": "metainfo.source", "pk": 16286, "fields": {"orig_filename": "Ethofer_Rosa_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270f.", "author": "", "orig_id": 1421896}}, {"model": "metainfo.source", "pk": 16287, "fields": {"orig_filename": "Ethofer_Theodor-Josef_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421897}}, {"model": "metainfo.source", "pk": 16288, "fields": {"orig_filename": "Etienne_Michael_1827_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421898}}, {"model": "metainfo.source", "pk": 16289, "fields": {"orig_filename": "Etrich_Igo_1879_1967.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1442254}}, {"model": "metainfo.source", "pk": 16290, "fields": {"orig_filename": "Ettel_Bonaventura_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421899}}, {"model": "metainfo.source", "pk": 16291, "fields": {"orig_filename": "Ettenreich_Christian-Josef_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421900}}, {"model": "metainfo.source", "pk": 16292, "fields": {"orig_filename": "Ettinger_Josef_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421902}}, {"model": "metainfo.source", "pk": 16293, "fields": {"orig_filename": "Ettingshausen_Andreas_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271f.", "author": "", "orig_id": 1421903}}, {"model": "metainfo.source", "pk": 16294, "fields": {"orig_filename": "Ettingshausen_Constantin_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272", "author": "", "orig_id": 1421904}}, {"model": "metainfo.source", "pk": 16295, "fields": {"orig_filename": "Etti_Karl_1825_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421901}}, {"model": "metainfo.source", "pk": 16296, "fields": {"orig_filename": "Ettmayer-Adelsburg_Karl_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272", "author": "", "orig_id": 1421905}}, {"model": "metainfo.source", "pk": 16297, "fields": {"orig_filename": "Etzelt-Loewenfels_Josef_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421907}}, {"model": "metainfo.source", "pk": 16298, "fields": {"orig_filename": "Etzel_Karl_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272f.", "author": "", "orig_id": 1421906}}, {"model": "metainfo.source", "pk": 16299, "fields": {"orig_filename": "Eugling_Max_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421908}}, {"model": "metainfo.source", "pk": 16300, "fields": {"orig_filename": "Eurich_Friedrich-Emanuel_1772_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421909}}, {"model": "metainfo.source", "pk": 16301, "fields": {"orig_filename": "Evers_Carl_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421910}}, {"model": "metainfo.source", "pk": 16302, "fields": {"orig_filename": "Ewald_Carl_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273f.", "author": "", "orig_id": 1421911}}, {"model": "metainfo.source", "pk": 16303, "fields": {"orig_filename": "Exl_Ferdinand_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274", "author": "", "orig_id": 1421913}}, {"model": "metainfo.source", "pk": 16304, "fields": {"orig_filename": "Exner-Ewarten_Alfred_1875_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421991}}, {"model": "metainfo.source", "pk": 16305, "fields": {"orig_filename": "Exner-Ewarten_Felix-Maria_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276f.", "author": "", "orig_id": 1421992}}, {"model": "metainfo.source", "pk": 16306, "fields": {"orig_filename": "Exner-Ewarten_Sigmund_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421993}}, {"model": "metainfo.source", "pk": 16307, "fields": {"orig_filename": "Exner_Adolf_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274", "author": "", "orig_id": 1421985}}, {"model": "metainfo.source", "pk": 16308, "fields": {"orig_filename": "Exner_Emilie_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274f.", "author": "", "orig_id": 1421986}}, {"model": "metainfo.source", "pk": 16309, "fields": {"orig_filename": "Exner_Franz-Serafin_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 275f.", "author": "", "orig_id": 1421988}}, {"model": "metainfo.source", "pk": 16310, "fields": {"orig_filename": "Exner_Franz_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 275", "author": "", "orig_id": 1421987}}, {"model": "metainfo.source", "pk": 16311, "fields": {"orig_filename": "Exner_Karl_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421989}}, {"model": "metainfo.source", "pk": 16312, "fields": {"orig_filename": "Exner_Wilhelm-Franz_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421990}}, {"model": "metainfo.source", "pk": 16313, "fields": {"orig_filename": "Eybler_Joseph_1765_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421995}}, {"model": "metainfo.source", "pk": 16314, "fields": {"orig_filename": "Eybl_Franz_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421994}}, {"model": "metainfo.source", "pk": 16315, "fields": {"orig_filename": "Eybner_Otto_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277f.", "author": "", "orig_id": 1421996}}, {"model": "metainfo.source", "pk": 16316, "fields": {"orig_filename": "Eyrl-Waldgries-Liebenaich_Georg_1849_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421997}}, {"model": "metainfo.source", "pk": 16317, "fields": {"orig_filename": "Eysler_Edmund_1874_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421998}}, {"model": "metainfo.source", "pk": 16318, "fields": {"orig_filename": "Eyssen_Vinzenz_1760_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278f.", "author": "", "orig_id": 1422000}}, {"model": "metainfo.source", "pk": 16319, "fields": {"orig_filename": "Fabbroni_Giovanni-Valentino-Mattia_1752_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422001}}, {"model": "metainfo.source", "pk": 16320, "fields": {"orig_filename": "Faber_Moritz_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422002}}, {"model": "metainfo.source", "pk": 16321, "fields": {"orig_filename": "Fabian_Oskar_1846_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422003}}, {"model": "metainfo.source", "pk": 16322, "fields": {"orig_filename": "Fabini_Johann-Gottlieb_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422004}}, {"model": "metainfo.source", "pk": 16323, "fields": {"orig_filename": "Fabini_Joseph-Samuel_1794_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279f.", "author": "", "orig_id": 1422007}}, {"model": "metainfo.source", "pk": 16324, "fields": {"orig_filename": "Fabini_Ludwig_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422005}}, {"model": "metainfo.source", "pk": 16325, "fields": {"orig_filename": "Fabini_Theodor_1828_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422006}}, {"model": "metainfo.source", "pk": 16326, "fields": {"orig_filename": "Fabinyi_Rudolf_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422008}}, {"model": "metainfo.source", "pk": 16327, "fields": {"orig_filename": "Fabjancic_Vladislav_1894_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422009}}, {"model": "metainfo.source", "pk": 16328, "fields": {"orig_filename": "Fabricius_Otto_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422075}}, {"model": "metainfo.source", "pk": 16329, "fields": {"orig_filename": "Fabris_Anton_1792_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422076}}, {"model": "metainfo.source", "pk": 16330, "fields": {"orig_filename": "Fabritius_Karl_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422077}}, {"model": "metainfo.source", "pk": 16331, "fields": {"orig_filename": "Facchini_Francesco_1788_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422078}}, {"model": "metainfo.source", "pk": 16332, "fields": {"orig_filename": "Fadrusz_Johann_1858_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422079}}, {"model": "metainfo.source", "pk": 16333, "fields": {"orig_filename": "Faerber_Heinrich_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422080}}, {"model": "metainfo.source", "pk": 16334, "fields": {"orig_filename": "Faerber_Meir-Marcell_1908_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465441}}, {"model": "metainfo.source", "pk": 16335, "fields": {"orig_filename": "Fahrbach_Josef_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422081}}, {"model": "metainfo.source", "pk": 16336, "fields": {"orig_filename": "Fahrbach_Philipp_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422082}}, {"model": "metainfo.source", "pk": 16337, "fields": {"orig_filename": "Fahringer_Josef_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422083}}, {"model": "metainfo.source", "pk": 16338, "fields": {"orig_filename": "Fahrngruber_Johannes_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422084}}, {"model": "metainfo.source", "pk": 16339, "fields": {"orig_filename": "Faistauer_Anton_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422085}}, {"model": "metainfo.source", "pk": 16340, "fields": {"orig_filename": "Fajgelj_Danilo_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282f.", "author": "", "orig_id": 1422086}}, {"model": "metainfo.source", "pk": 16341, "fields": {"orig_filename": "Fajkmajer_Karl_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422087}}, {"model": "metainfo.source", "pk": 16342, "fields": {"orig_filename": "Faktor_Emil_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422088}}, {"model": "metainfo.source", "pk": 16343, "fields": {"orig_filename": "Faktor_Franz-Josef_1861_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422089}}, {"model": "metainfo.source", "pk": 16344, "fields": {"orig_filename": "Falat_Julian_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422090}}, {"model": "metainfo.source", "pk": 16345, "fields": {"orig_filename": "Falb_Rudolf_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422091}}, {"model": "metainfo.source", "pk": 16346, "fields": {"orig_filename": "Falke-Lilienstein_Hans_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284f.", "author": "", "orig_id": 1422096}}, {"model": "metainfo.source", "pk": 16347, "fields": {"orig_filename": "Falkenhayn_Julius_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422097}}, {"model": "metainfo.source", "pk": 16348, "fields": {"orig_filename": "Falke_Jakob_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422094}}, {"model": "metainfo.source", "pk": 16349, "fields": {"orig_filename": "Falke_Otto_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422095}}, {"model": "metainfo.source", "pk": 16350, "fields": {"orig_filename": "Falkner_Julie_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422098}}, {"model": "metainfo.source", "pk": 16351, "fields": {"orig_filename": "Falk_Maximilian_1828_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422092}}, {"model": "metainfo.source", "pk": 16352, "fields": {"orig_filename": "Falk_Norbert_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422093}}, {"model": "metainfo.source", "pk": 16353, "fields": {"orig_filename": "Faller_Nikola_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422165}}, {"model": "metainfo.source", "pk": 16354, "fields": {"orig_filename": "Fallmann_Engelbert_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422166}}, {"model": "metainfo.source", "pk": 16355, "fields": {"orig_filename": "Fallmerayer_Jakob-Philipp_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285f.", "author": "", "orig_id": 1422167}}, {"model": "metainfo.source", "pk": 16356, "fields": {"orig_filename": "Fallon_Ludwig-August_1776_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 286f.", "author": "", "orig_id": 1422168}}, {"model": "metainfo.source", "pk": 16357, "fields": {"orig_filename": "Fall_Leo_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422099}}, {"model": "metainfo.source", "pk": 16358, "fields": {"orig_filename": "Falta_Wilhelm_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422169}}, {"model": "metainfo.source", "pk": 16359, "fields": {"orig_filename": "Faltis_Evelyn_1890_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422170}}, {"model": "metainfo.source", "pk": 16360, "fields": {"orig_filename": "Faltis_Johann_1796_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422171}}, {"model": "metainfo.source", "pk": 16361, "fields": {"orig_filename": "Fancev_Franjo_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422172}}, {"model": "metainfo.source", "pk": 16362, "fields": {"orig_filename": "Fanderlik_Joseph_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422173}}, {"model": "metainfo.source", "pk": 16363, "fields": {"orig_filename": "Fangor_Andrzej_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422174}}, {"model": "metainfo.source", "pk": 16364, "fields": {"orig_filename": "Farga_Franz_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287f.", "author": "", "orig_id": 1422175}}, {"model": "metainfo.source", "pk": 16365, "fields": {"orig_filename": "Farkas-Boeloen_Alexander_1795_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422177}}, {"model": "metainfo.source", "pk": 16366, "fields": {"orig_filename": "Farkas_Julius_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422176}}, {"model": "metainfo.source", "pk": 16367, "fields": {"orig_filename": "Farsky_Franz_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422178}}, {"model": "metainfo.source", "pk": 16368, "fields": {"orig_filename": "Fassbender_Eugen_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1446406}}, {"model": "metainfo.source", "pk": 16369, "fields": {"orig_filename": "Fassel_Hirsch-Baer_1802_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422179}}, {"model": "metainfo.source", "pk": 16370, "fields": {"orig_filename": "Fasser_Rosa_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422180}}, {"model": "metainfo.source", "pk": 16371, "fields": {"orig_filename": "Fatur_Lea_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422181}}, {"model": "metainfo.source", "pk": 16372, "fields": {"orig_filename": "Faulmann_Karl_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422182}}, {"model": "metainfo.source", "pk": 16373, "fields": {"orig_filename": "Fautz_Ludwig_1811_1880.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 3 (15.11.2014)", "author": "", "orig_id": 2247938}}, {"model": "metainfo.source", "pk": 16374, "fields": {"orig_filename": "Fay_Andreas_1786_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422183}}, {"model": "metainfo.source", "pk": 16375, "fields": {"orig_filename": "Fazekas_Michael_1766_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422184}}, {"model": "metainfo.source", "pk": 16376, "fields": {"orig_filename": "Federhofer_Karl_1885_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2082341}}, {"model": "metainfo.source", "pk": 16377, "fields": {"orig_filename": "Federler_Aloys_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422185}}, {"model": "metainfo.source", "pk": 16378, "fields": {"orig_filename": "Federn_Josef_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422186}}, {"model": "metainfo.source", "pk": 16379, "fields": {"orig_filename": "Federowicz_Ignacy_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420677}}, {"model": "metainfo.source", "pk": 16380, "fields": {"orig_filename": "Federowicz_Wladyslaw-Walenty_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420679}}, {"model": "metainfo.source", "pk": 16381, "fields": {"orig_filename": "Fedorowicz_Adam_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420678}}, {"model": "metainfo.source", "pk": 16382, "fields": {"orig_filename": "Feichter_Michael_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420680}}, {"model": "metainfo.source", "pk": 16383, "fields": {"orig_filename": "Feichtinger_Johann-Nep_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420681}}, {"model": "metainfo.source", "pk": 16384, "fields": {"orig_filename": "Endlicher_Stephan-Ladislaus_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 249", "author": "", "orig_id": 1421502}}, {"model": "metainfo.source", "pk": 16385, "fields": {"orig_filename": "Endl_Friedrich_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248f.", "author": "", "orig_id": 1421429}}, {"model": "metainfo.source", "pk": 16386, "fields": {"orig_filename": "Endrici_Coelestin_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 249f.", "author": "", "orig_id": 1421503}}, {"model": "metainfo.source", "pk": 16387, "fields": {"orig_filename": "Endroedy_Alexander_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421504}}, {"model": "metainfo.source", "pk": 16388, "fields": {"orig_filename": "Engehausen_Christine_1817_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421505}}, {"model": "metainfo.source", "pk": 16389, "fields": {"orig_filename": "Engel-Mainfelden_August_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421509}}, {"model": "metainfo.source", "pk": 16390, "fields": {"orig_filename": "Engelbrecht_August_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421510}}, {"model": "metainfo.source", "pk": 16391, "fields": {"orig_filename": "Engelhart_Josef_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421511}}, {"model": "metainfo.source", "pk": 16392, "fields": {"orig_filename": "Engelmann_Eduard_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251f.", "author": "", "orig_id": 1421512}}, {"model": "metainfo.source", "pk": 16393, "fields": {"orig_filename": "Engelmann_Eduard_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421513}}, {"model": "metainfo.source", "pk": 16394, "fields": {"orig_filename": "Engel_Franz_1898_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446234}}, {"model": "metainfo.source", "pk": 16395, "fields": {"orig_filename": "Engel_Friedrich_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421506}}, {"model": "metainfo.source", "pk": 16396, "fields": {"orig_filename": "Engel_Jakob-Karl_1821_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421507}}, {"model": "metainfo.source", "pk": 16397, "fields": {"orig_filename": "Engel_Josef_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421508}}, {"model": "metainfo.source", "pk": 16398, "fields": {"orig_filename": "Engel_Paul_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446243}}, {"model": "metainfo.source", "pk": 16399, "fields": {"orig_filename": "Engerth_Eduard_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421515}}, {"model": "metainfo.source", "pk": 16400, "fields": {"orig_filename": "Engerth_Erasmus_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421516}}, {"model": "metainfo.source", "pk": 16401, "fields": {"orig_filename": "Engerth_Wilhelm_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421517}}, {"model": "metainfo.source", "pk": 16402, "fields": {"orig_filename": "Engeszer_Matyas_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421518}}, {"model": "metainfo.source", "pk": 16403, "fields": {"orig_filename": "Englaender_Richard_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421522}}, {"model": "metainfo.source", "pk": 16404, "fields": {"orig_filename": "Englaender_Richard_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421523}}, {"model": "metainfo.source", "pk": 16405, "fields": {"orig_filename": "Englaender_Sigmund_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421524}}, {"model": "metainfo.source", "pk": 16406, "fields": {"orig_filename": "Englisch_Johann_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421525}}, {"model": "metainfo.source", "pk": 16407, "fields": {"orig_filename": "Englisch_Josef_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253f.", "author": "", "orig_id": 1421526}}, {"model": "metainfo.source", "pk": 16408, "fields": {"orig_filename": "Englmann_Franz-Wilhelm_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421527}}, {"model": "metainfo.source", "pk": 16409, "fields": {"orig_filename": "Engl_Hugo_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421520}}, {"model": "metainfo.source", "pk": 16410, "fields": {"orig_filename": "Engl_Johann-Ev_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421521}}, {"model": "metainfo.source", "pk": 16411, "fields": {"orig_filename": "Enk-Burg_Karl-Maria_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421528}}, {"model": "metainfo.source", "pk": 16412, "fields": {"orig_filename": "Enk-Burg_Michael_1788_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421599}}, {"model": "metainfo.source", "pk": 16413, "fields": {"orig_filename": "Ennemoser_Josef_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254f.", "author": "", "orig_id": 1421600}}, {"model": "metainfo.source", "pk": 16414, "fields": {"orig_filename": "Ens_Faustin_1782_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421602}}, {"model": "metainfo.source", "pk": 16415, "fields": {"orig_filename": "Entz_Geza_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421603}}, {"model": "metainfo.source", "pk": 16416, "fields": {"orig_filename": "Enzenberg_Artur_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421604}}, {"model": "metainfo.source", "pk": 16417, "fields": {"orig_filename": "Enzenberg_Franz-Josef_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255f.", "author": "", "orig_id": 1421605}}, {"model": "metainfo.source", "pk": 16418, "fields": {"orig_filename": "Enzensperger_Bernhard_1788_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421606}}, {"model": "metainfo.source", "pk": 16419, "fields": {"orig_filename": "Enzensperger_Victor_1867_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421607}}, {"model": "metainfo.source", "pk": 16420, "fields": {"orig_filename": "Eoetvoes_Joseph_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421608}}, {"model": "metainfo.source", "pk": 16421, "fields": {"orig_filename": "Eoetvoes_Karl_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256f.", "author": "", "orig_id": 1421609}}, {"model": "metainfo.source", "pk": 16422, "fields": {"orig_filename": "Eoetvoes_Roland_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421610}}, {"model": "metainfo.source", "pk": 16423, "fields": {"orig_filename": "Eppich_Franz_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421611}}, {"model": "metainfo.source", "pk": 16424, "fields": {"orig_filename": "Eppich_Josef_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421612}}, {"model": "metainfo.source", "pk": 16425, "fields": {"orig_filename": "Eppinger_Hans_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257f.", "author": "", "orig_id": 1421613}}, {"model": "metainfo.source", "pk": 16426, "fields": {"orig_filename": "Eppinger_Hans_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421614}}, {"model": "metainfo.source", "pk": 16427, "fields": {"orig_filename": "Eppstein_Julius_1846_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421615}}, {"model": "metainfo.source", "pk": 16428, "fields": {"orig_filename": "Epstein_Alexander_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421616}}, {"model": "metainfo.source", "pk": 16429, "fields": {"orig_filename": "Epstein_Alois_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421617}}, {"model": "metainfo.source", "pk": 16430, "fields": {"orig_filename": "Epstein_Jehudo_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421618}}, {"model": "metainfo.source", "pk": 16431, "fields": {"orig_filename": "Epstein_Julius_1832_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421619}}, {"model": "metainfo.source", "pk": 16432, "fields": {"orig_filename": "Epstein_Moritz_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421620}}, {"model": "metainfo.source", "pk": 16433, "fields": {"orig_filename": "Epstein_Richard_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421621}}, {"model": "metainfo.source", "pk": 16434, "fields": {"orig_filename": "Erbach-Schoenberg_Karl-Eugen_1732_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421622}}, {"model": "metainfo.source", "pk": 16435, "fields": {"orig_filename": "Erban_Franz_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421697}}, {"model": "metainfo.source", "pk": 16436, "fields": {"orig_filename": "Erben_Anton_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421698}}, {"model": "metainfo.source", "pk": 16437, "fields": {"orig_filename": "Erben_Josef_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421699}}, {"model": "metainfo.source", "pk": 16438, "fields": {"orig_filename": "Erben_Karl-Jaromir_1811_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421700}}, {"model": "metainfo.source", "pk": 16439, "fields": {"orig_filename": "Erben_Wilhelm_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421701}}, {"model": "metainfo.source", "pk": 16440, "fields": {"orig_filename": "Erdelyi_Johann_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260f.", "author": "", "orig_id": 1421702}}, {"model": "metainfo.source", "pk": 16441, "fields": {"orig_filename": "Erdheim_Jakob_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421703}}, {"model": "metainfo.source", "pk": 16442, "fields": {"orig_filename": "Erdinger_Anton_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421704}}, {"model": "metainfo.source", "pk": 16443, "fields": {"orig_filename": "Erdinger_Karl_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421705}}, {"model": "metainfo.source", "pk": 16444, "fields": {"orig_filename": "Erdoedy_Helene_1831_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421706}}, {"model": "metainfo.source", "pk": 16445, "fields": {"orig_filename": "Erhard_Andreas_1791_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421707}}, {"model": "metainfo.source", "pk": 16446, "fields": {"orig_filename": "Erhard_Ludwig_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421708}}, {"model": "metainfo.source", "pk": 16447, "fields": {"orig_filename": "Erhartt_Antonie_1826_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421709}}, {"model": "metainfo.source", "pk": 16448, "fields": {"orig_filename": "Erhartt_Louise_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421710}}, {"model": "metainfo.source", "pk": 16449, "fields": {"orig_filename": "Erich_Maria_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421711}}, {"model": "metainfo.source", "pk": 16450, "fields": {"orig_filename": "Erjavec_Fran_1834_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262f.", "author": "", "orig_id": 1421712}}, {"model": "metainfo.source", "pk": 16451, "fields": {"orig_filename": "Erkel_Elek_1843_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421713}}, {"model": "metainfo.source", "pk": 16452, "fields": {"orig_filename": "Erkel_Ferenc_1810_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421714}}, {"model": "metainfo.source", "pk": 16453, "fields": {"orig_filename": "Erkel_Gyula_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421715}}, {"model": "metainfo.source", "pk": 16454, "fields": {"orig_filename": "Erkel_Sandor_1846_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421716}}, {"model": "metainfo.source", "pk": 16455, "fields": {"orig_filename": "Erker_Josef_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421717}}, {"model": "metainfo.source", "pk": 16456, "fields": {"orig_filename": "Erler_Franz-Christoph_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421720}}, {"model": "metainfo.source", "pk": 16457, "fields": {"orig_filename": "Erl_Anton_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263f.", "author": "", "orig_id": 1421718}}, {"model": "metainfo.source", "pk": 16458, "fields": {"orig_filename": "Erl_Joseph_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421719}}, {"model": "metainfo.source", "pk": 16459, "fields": {"orig_filename": "Ernest_Ludwig-Stefan_1826_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421793}}, {"model": "metainfo.source", "pk": 16460, "fields": {"orig_filename": "Ernst_Else_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145473}}, {"model": "metainfo.source", "pk": 16461, "fields": {"orig_filename": "Ernst_Heinrich-Wilhelm_1814_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421794}}, {"model": "metainfo.source", "pk": 16462, "fields": {"orig_filename": "Ernst_Karl_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421795}}, {"model": "metainfo.source", "pk": 16463, "fields": {"orig_filename": "Ernst_Leopold_1808_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421796}}, {"model": "metainfo.source", "pk": 16464, "fields": {"orig_filename": "Ernst_Marcin_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421797}}, {"model": "metainfo.source", "pk": 16465, "fields": {"orig_filename": "Ernst_Rodolphe_1854_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421798}}, {"model": "metainfo.source", "pk": 16466, "fields": {"orig_filename": "Ernst_Wilhelm_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421799}}, {"model": "metainfo.source", "pk": 16467, "fields": {"orig_filename": "Eroess_Gyula_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421800}}, {"model": "metainfo.source", "pk": 16468, "fields": {"orig_filename": "Errera_Ugo_1843_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421801}}, {"model": "metainfo.source", "pk": 16469, "fields": {"orig_filename": "Ersin_Alois_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421802}}, {"model": "metainfo.source", "pk": 16470, "fields": {"orig_filename": "Ertler_Bruno_1889_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421805}}, {"model": "metainfo.source", "pk": 16471, "fields": {"orig_filename": "Ertl_Dominik_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421803}}, {"model": "metainfo.source", "pk": 16472, "fields": {"orig_filename": "Ertl_Emil_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421804}}, {"model": "metainfo.source", "pk": 16473, "fields": {"orig_filename": "Ertl_Moriz_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420824}}, {"model": "metainfo.source", "pk": 16474, "fields": {"orig_filename": "Ertmann_Dorothea_1781_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421806}}, {"model": "metainfo.source", "pk": 16475, "fields": {"orig_filename": "Erwein_Josef_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266f.", "author": "", "orig_id": 1421807}}, {"model": "metainfo.source", "pk": 16476, "fields": {"orig_filename": "Escherich_Gustav_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421809}}, {"model": "metainfo.source", "pk": 16477, "fields": {"orig_filename": "Escherich_Katharina_1855_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421810}}, {"model": "metainfo.source", "pk": 16478, "fields": {"orig_filename": "Escherich_Theodor_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421811}}, {"model": "metainfo.source", "pk": 16479, "fields": {"orig_filename": "Eschig_Maximilian_1872_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421812}}, {"model": "metainfo.source", "pk": 16480, "fields": {"orig_filename": "Esch_Mathilde_1820_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421808}}, {"model": "metainfo.source", "pk": 16481, "fields": {"orig_filename": "Esders_Stefan_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421813}}, {"model": "metainfo.source", "pk": 16482, "fields": {"orig_filename": "Eskeles_Bernhard_1754_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421814}}, {"model": "metainfo.source", "pk": 16483, "fields": {"orig_filename": "Esser_Heinrich-Joseph_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421815}}, {"model": "metainfo.source", "pk": 16484, "fields": {"orig_filename": "Essigmann_Alois_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268f.", "author": "", "orig_id": 1421816}}, {"model": "metainfo.source", "pk": 16485, "fields": {"orig_filename": "Esslair_Ferdinand_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421817}}, {"model": "metainfo.source", "pk": 16486, "fields": {"orig_filename": "Estegar_Wartan-Joseph_1843_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421818}}, {"model": "metainfo.source", "pk": 16487, "fields": {"orig_filename": "Esterhazy_Moriz_1807_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421888}}, {"model": "metainfo.source", "pk": 16488, "fields": {"orig_filename": "Esterhazy_Nikolaus-Ii_1765_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421889}}, {"model": "metainfo.source", "pk": 16489, "fields": {"orig_filename": "Ehrhard_Albert-Josef-Maria_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 228", "author": "", "orig_id": 1421036}}, {"model": "metainfo.source", "pk": 16490, "fields": {"orig_filename": "Ehrhart-Ehrhartstein_Johann-Nep_1779_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421038}}, {"model": "metainfo.source", "pk": 16491, "fields": {"orig_filename": "Ehrhart_Vincenz_1823_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 228", "author": "", "orig_id": 1421037}}, {"model": "metainfo.source", "pk": 16492, "fields": {"orig_filename": "Ehrlich_Adolf_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421039}}, {"model": "metainfo.source", "pk": 16493, "fields": {"orig_filename": "Ehrlich_Eugen_1862_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421040}}, {"model": "metainfo.source", "pk": 16494, "fields": {"orig_filename": "Ehrlich_Franz-Karl_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421041}}, {"model": "metainfo.source", "pk": 16495, "fields": {"orig_filename": "Ehrlich_Heinrich_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229f.", "author": "", "orig_id": 1421116}}, {"model": "metainfo.source", "pk": 16496, "fields": {"orig_filename": "Ehrlich_Johann-Nep_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421118}}, {"model": "metainfo.source", "pk": 16497, "fields": {"orig_filename": "Ehrlich_Johann_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421117}}, {"model": "metainfo.source", "pk": 16498, "fields": {"orig_filename": "Ehrlich_Josef-Ruben_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421119}}, {"model": "metainfo.source", "pk": 16499, "fields": {"orig_filename": "Ehrlich_Lambert_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421120}}, {"model": "metainfo.source", "pk": 16500, "fields": {"orig_filename": "Ehrlich_Martin_1871_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421121}}, {"model": "metainfo.source", "pk": 16501, "fields": {"orig_filename": "Ehrlich_Sigmund_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230f.", "author": "", "orig_id": 1421122}}, {"model": "metainfo.source", "pk": 16502, "fields": {"orig_filename": "Ehrlich_Urban_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421123}}, {"model": "metainfo.source", "pk": 16503, "fields": {"orig_filename": "Ehrmann_Camillo_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421124}}, {"model": "metainfo.source", "pk": 16504, "fields": {"orig_filename": "Ehrmann_Martin_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421125}}, {"model": "metainfo.source", "pk": 16505, "fields": {"orig_filename": "Ehrmann_Salomon_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421126}}, {"model": "metainfo.source", "pk": 16506, "fields": {"orig_filename": "Eibenschuetz_Siegmund_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421127}}, {"model": "metainfo.source", "pk": 16507, "fields": {"orig_filename": "Eichberger_Josef_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231f.", "author": "", "orig_id": 1421128}}, {"model": "metainfo.source", "pk": 16508, "fields": {"orig_filename": "Eichert_Franz_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232", "author": "", "orig_id": 1421129}}, {"model": "metainfo.source", "pk": 16509, "fields": {"orig_filename": "Eichhorn_Ambros_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232", "author": "", "orig_id": 1421130}}, {"model": "metainfo.source", "pk": 16510, "fields": {"orig_filename": "Eichhorn_Rudolf_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232f.", "author": "", "orig_id": 1421131}}, {"model": "metainfo.source", "pk": 16511, "fields": {"orig_filename": "Eichler-Eichkron_Wilhelm_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421134}}, {"model": "metainfo.source", "pk": 16512, "fields": {"orig_filename": "Eichler_Ferdinand_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421132}}, {"model": "metainfo.source", "pk": 16513, "fields": {"orig_filename": "Eichler_Hermann_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421133}}, {"model": "metainfo.source", "pk": 16514, "fields": {"orig_filename": "Eichmann_Carl-Julius_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421135}}, {"model": "metainfo.source", "pk": 16515, "fields": {"orig_filename": "Eigl_Josef_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233f.", "author": "", "orig_id": 1421136}}, {"model": "metainfo.source", "pk": 16516, "fields": {"orig_filename": "Eigner_Moriz_1822_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421137}}, {"model": "metainfo.source", "pk": 16517, "fields": {"orig_filename": "Einfalt_Martin_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421138}}, {"model": "metainfo.source", "pk": 16518, "fields": {"orig_filename": "Einoedshofer_Julius_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421139}}, {"model": "metainfo.source", "pk": 16519, "fields": {"orig_filename": "Einsle_Anton_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421212}}, {"model": "metainfo.source", "pk": 16520, "fields": {"orig_filename": "Einspieler_Andrej_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234f.", "author": "", "orig_id": 1421213}}, {"model": "metainfo.source", "pk": 16521, "fields": {"orig_filename": "Einspieler_Lambert_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421214}}, {"model": "metainfo.source", "pk": 16522, "fields": {"orig_filename": "Einspinner_August_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421215}}, {"model": "metainfo.source", "pk": 16523, "fields": {"orig_filename": "Eipeldauer_Franz_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421216}}, {"model": "metainfo.source", "pk": 16524, "fields": {"orig_filename": "Eisath_Georg_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235f.", "author": "", "orig_id": 1421217}}, {"model": "metainfo.source", "pk": 16525, "fields": {"orig_filename": "Eiselsberg_Anton_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421218}}, {"model": "metainfo.source", "pk": 16526, "fields": {"orig_filename": "Eiselt_Jan-Bohumil_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421219}}, {"model": "metainfo.source", "pk": 16527, "fields": {"orig_filename": "Eisenbach_Heinrich_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421220}}, {"model": "metainfo.source", "pk": 16528, "fields": {"orig_filename": "Eisenberger_Severyn_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236f.", "author": "", "orig_id": 1421222}}, {"model": "metainfo.source", "pk": 16529, "fields": {"orig_filename": "Eisenberg_Ludwig-Julius_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421221}}, {"model": "metainfo.source", "pk": 16530, "fields": {"orig_filename": "Eisendle_Richard_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421223}}, {"model": "metainfo.source", "pk": 16531, "fields": {"orig_filename": "Eisenhuth_Djuro_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421224}}, {"model": "metainfo.source", "pk": 16532, "fields": {"orig_filename": "Eisenmenger_August_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421225}}, {"model": "metainfo.source", "pk": 16533, "fields": {"orig_filename": "Eisenmenger_Viktor_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421226}}, {"model": "metainfo.source", "pk": 16534, "fields": {"orig_filename": "Eisenstecken_Josef_1779_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421227}}, {"model": "metainfo.source", "pk": 16535, "fields": {"orig_filename": "Eisenstein_Arthur_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237f.", "author": "", "orig_id": 1421228}}, {"model": "metainfo.source", "pk": 16536, "fields": {"orig_filename": "Eiser_Anton_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421229}}, {"model": "metainfo.source", "pk": 16537, "fields": {"orig_filename": "Eisler-Terramare_Georg_1889_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421236}}, {"model": "metainfo.source", "pk": 16538, "fields": {"orig_filename": "Eisler_Arnold_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421230}}, {"model": "metainfo.source", "pk": 16539, "fields": {"orig_filename": "Eisler_Athanas_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421231}}, {"model": "metainfo.source", "pk": 16540, "fields": {"orig_filename": "Eisler_Fritz_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421232}}, {"model": "metainfo.source", "pk": 16541, "fields": {"orig_filename": "Eisler_Max_1855_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421233}}, {"model": "metainfo.source", "pk": 16542, "fields": {"orig_filename": "Eisler_Max_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421234}}, {"model": "metainfo.source", "pk": 16543, "fields": {"orig_filename": "Eisler_Rudolf_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238f.", "author": "", "orig_id": 1421235}}, {"model": "metainfo.source", "pk": 16544, "fields": {"orig_filename": "Eissner_Franz-Xaver_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421310}}, {"model": "metainfo.source", "pk": 16545, "fields": {"orig_filename": "Eisvogel_Gregor_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421311}}, {"model": "metainfo.source", "pk": 16546, "fields": {"orig_filename": "Eitelberger-Edelberg_Jeanette_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421312}}, {"model": "metainfo.source", "pk": 16547, "fields": {"orig_filename": "Eitelberger-Edelberg_Rudolf_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239f.", "author": "", "orig_id": 1421313}}, {"model": "metainfo.source", "pk": 16548, "fields": {"orig_filename": "Eitl_Franz-Vincenz_1800_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421315}}, {"model": "metainfo.source", "pk": 16549, "fields": {"orig_filename": "Eitner_Wilhelm_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421314}}, {"model": "metainfo.source", "pk": 16550, "fields": {"orig_filename": "Ekert_Franz_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421317}}, {"model": "metainfo.source", "pk": 16551, "fields": {"orig_filename": "Ekert_Karl_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421318}}, {"model": "metainfo.source", "pk": 16552, "fields": {"orig_filename": "Eker_Albert_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421316}}, {"model": "metainfo.source", "pk": 16553, "fields": {"orig_filename": "Ekielski_Wladyslaw_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421319}}, {"model": "metainfo.source", "pk": 16554, "fields": {"orig_filename": "Ekstein_Otto_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421320}}, {"model": "metainfo.source", "pk": 16555, "fields": {"orig_filename": "Elbogen_Friedrich_1854_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421321}}, {"model": "metainfo.source", "pk": 16556, "fields": {"orig_filename": "Eldersch_Matthias_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421322}}, {"model": "metainfo.source", "pk": 16557, "fields": {"orig_filename": "Eliatschek-Siebenburg_Wenzel_1779_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241f.", "author": "", "orig_id": 1421323}}, {"model": "metainfo.source", "pk": 16558, "fields": {"orig_filename": "Elisabeth_Amalie-Eugenie_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421325}}, {"model": "metainfo.source", "pk": 16559, "fields": {"orig_filename": "Elizza_Elise_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421326}}, {"model": "metainfo.source", "pk": 16560, "fields": {"orig_filename": "Ellend_Bernhard_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421327}}, {"model": "metainfo.source", "pk": 16561, "fields": {"orig_filename": "Ellert_Gerhart_1900_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1427195}}, {"model": "metainfo.source", "pk": 16562, "fields": {"orig_filename": "Eller_Louis_1820_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242f.", "author": "", "orig_id": 1421328}}, {"model": "metainfo.source", "pk": 16563, "fields": {"orig_filename": "Ellinger_Joseph_1814_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421329}}, {"model": "metainfo.source", "pk": 16564, "fields": {"orig_filename": "Ellison-Nidlef_Otto_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421330}}, {"model": "metainfo.source", "pk": 16565, "fields": {"orig_filename": "Ellissen_Hubert_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421331}}, {"model": "metainfo.source", "pk": 16566, "fields": {"orig_filename": "Ellmaurer_Josef_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421332}}, {"model": "metainfo.source", "pk": 16567, "fields": {"orig_filename": "Elmayer-Vestenbrugg_Rudolf_1881_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427613}}, {"model": "metainfo.source", "pk": 16568, "fields": {"orig_filename": "Elschnig_Marietta_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243f.", "author": "", "orig_id": 1421333}}, {"model": "metainfo.source", "pk": 16569, "fields": {"orig_filename": "Elssler_Franziska_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421407}}, {"model": "metainfo.source", "pk": 16570, "fields": {"orig_filename": "Elssler_Johann-Florian_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421334}}, {"model": "metainfo.source", "pk": 16571, "fields": {"orig_filename": "Elssler_Theresia_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421408}}, {"model": "metainfo.source", "pk": 16572, "fields": {"orig_filename": "Elterlein_Johann-Georg_1806_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421409}}, {"model": "metainfo.source", "pk": 16573, "fields": {"orig_filename": "Elze_Ludwig-Theodor_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421410}}, {"model": "metainfo.source", "pk": 16574, "fields": {"orig_filename": "Elzholz_Adolf_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421411}}, {"model": "metainfo.source", "pk": 16575, "fields": {"orig_filename": "Embel_Franz-Xaver_1770_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421412}}, {"model": "metainfo.source", "pk": 16576, "fields": {"orig_filename": "Emich_Friedrich_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421413}}, {"model": "metainfo.source", "pk": 16577, "fields": {"orig_filename": "Emich_Gustav_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421414}}, {"model": "metainfo.source", "pk": 16578, "fields": {"orig_filename": "Eminger_Joseph-Wilhelm_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421415}}, {"model": "metainfo.source", "pk": 16579, "fields": {"orig_filename": "Emler_Bonaventura_1831_1862.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446156}}, {"model": "metainfo.source", "pk": 16580, "fields": {"orig_filename": "Emler_Josef_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245f.", "author": "", "orig_id": 1421416}}, {"model": "metainfo.source", "pk": 16581, "fields": {"orig_filename": "Emmer_Johannes_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421417}}, {"model": "metainfo.source", "pk": 16582, "fields": {"orig_filename": "Emminger_Josef_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421419}}, {"model": "metainfo.source", "pk": 16583, "fields": {"orig_filename": "Emperger_Friedrich-Ignaz_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421421}}, {"model": "metainfo.source", "pk": 16584, "fields": {"orig_filename": "Emperger_Vinzenz-Benedikt_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421420}}, {"model": "metainfo.source", "pk": 16585, "fields": {"orig_filename": "Enderes_Aglaia_1836_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247f.", "author": "", "orig_id": 1421425}}, {"model": "metainfo.source", "pk": 16586, "fields": {"orig_filename": "Enderes_Bruno_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421426}}, {"model": "metainfo.source", "pk": 16587, "fields": {"orig_filename": "Enderlen_Eugen_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421427}}, {"model": "metainfo.source", "pk": 16588, "fields": {"orig_filename": "Enders_Johann-Nep_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421428}}, {"model": "metainfo.source", "pk": 16589, "fields": {"orig_filename": "Ender_Eduard_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421422}}, {"model": "metainfo.source", "pk": 16590, "fields": {"orig_filename": "Ender_Johann-Nepomuk_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421423}}, {"model": "metainfo.source", "pk": 16591, "fields": {"orig_filename": "Ender_Thomas_1793_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421424}}, {"model": "metainfo.source", "pk": 16592, "fields": {"orig_filename": "Dunin-Borkowski_Josef_1809_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422143}}, {"model": "metainfo.source", "pk": 16593, "fields": {"orig_filename": "Dunkler_Gaudentius-Andreas_1746_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422144}}, {"model": "metainfo.source", "pk": 16594, "fields": {"orig_filename": "Durdik_Josef_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422145}}, {"model": "metainfo.source", "pk": 16595, "fields": {"orig_filename": "Durig_Josef_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422146}}, {"model": "metainfo.source", "pk": 16596, "fields": {"orig_filename": "Dustmann-Meyer_Marie-Louise_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205f.", "author": "", "orig_id": 1422147}}, {"model": "metainfo.source", "pk": 16597, "fields": {"orig_filename": "Dutczynski_Eduard_1823_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1421981}}, {"model": "metainfo.source", "pk": 16598, "fields": {"orig_filename": "Dutczynski_Irma_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1421982}}, {"model": "metainfo.source", "pk": 16599, "fields": {"orig_filename": "Duval-Dampierre_Quirin_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1422148}}, {"model": "metainfo.source", "pk": 16600, "fields": {"orig_filename": "Dvorak_Anton_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1422150}}, {"model": "metainfo.source", "pk": 16601, "fields": {"orig_filename": "Dvorak_Max_1874_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206f.", "author": "", "orig_id": 1422151}}, {"model": "metainfo.source", "pk": 16602, "fields": {"orig_filename": "Dvorak_Xaver_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422152}}, {"model": "metainfo.source", "pk": 16603, "fields": {"orig_filename": "Dworaczek_Wilhelm_1873_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422153}}, {"model": "metainfo.source", "pk": 16604, "fields": {"orig_filename": "Dyk_Viktor_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422154}}, {"model": "metainfo.source", "pk": 16605, "fields": {"orig_filename": "Dzieduszycki_Maurycy_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422155}}, {"model": "metainfo.source", "pk": 16606, "fields": {"orig_filename": "Ebenhoch_Alfred_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422156}}, {"model": "metainfo.source", "pk": 16607, "fields": {"orig_filename": "Ebenspanger_Johannes_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422157}}, {"model": "metainfo.source", "pk": 16608, "fields": {"orig_filename": "Eberhard_Otto_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422158}}, {"model": "metainfo.source", "pk": 16609, "fields": {"orig_filename": "Eberle_Josef_1845_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422162}}, {"model": "metainfo.source", "pk": 16610, "fields": {"orig_filename": "Eberle_Joseph_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208f.", "author": "", "orig_id": 1422161}}, {"model": "metainfo.source", "pk": 16611, "fields": {"orig_filename": "Eberl_Raimund_1766_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422160}}, {"model": "metainfo.source", "pk": 16612, "fields": {"orig_filename": "Ebermann_Leo_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422163}}, {"model": "metainfo.source", "pk": 16613, "fields": {"orig_filename": "Ebersberg_Joseph-Sigmund_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422164}}, {"model": "metainfo.source", "pk": 16614, "fields": {"orig_filename": "Ebersberg_Julius-Carl_1831_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1420745}}, {"model": "metainfo.source", "pk": 16615, "fields": {"orig_filename": "Ebersberg_Ottokar-Franz_1833_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1420746}}, {"model": "metainfo.source", "pk": 16616, "fields": {"orig_filename": "Ebert_Anton_1845_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209f.", "author": "", "orig_id": 1420747}}, {"model": "metainfo.source", "pk": 16617, "fields": {"orig_filename": "Ebert_Karl-Egon_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420748}}, {"model": "metainfo.source", "pk": 16618, "fields": {"orig_filename": "Ebert_Ludwig_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420749}}, {"model": "metainfo.source", "pk": 16619, "fields": {"orig_filename": "Eble_Burkhard_1799_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420750}}, {"model": "metainfo.source", "pk": 16620, "fields": {"orig_filename": "Ebner-Eschenbach_Marie_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 211f.", "author": "", "orig_id": 1420754}}, {"model": "metainfo.source", "pk": 16621, "fields": {"orig_filename": "Ebner-Eschenbach_Moritz_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212", "author": "", "orig_id": 1420755}}, {"model": "metainfo.source", "pk": 16622, "fields": {"orig_filename": "Ebner-Rofenstein_Johann-Nep_1790_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212", "author": "", "orig_id": 1420756}}, {"model": "metainfo.source", "pk": 16623, "fields": {"orig_filename": "Ebner-Rofenstein_Viktor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212f.", "author": "", "orig_id": 1420757}}, {"model": "metainfo.source", "pk": 16624, "fields": {"orig_filename": "Ebner_Ferdinand_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420751}}, {"model": "metainfo.source", "pk": 16625, "fields": {"orig_filename": "Ebner_Karl_1811_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210f.", "author": "", "orig_id": 1420752}}, {"model": "metainfo.source", "pk": 16626, "fields": {"orig_filename": "Ebner_Karl_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 211", "author": "", "orig_id": 1420753}}, {"model": "metainfo.source", "pk": 16627, "fields": {"orig_filename": "Eckardt_Karl-Paul_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420758}}, {"model": "metainfo.source", "pk": 16628, "fields": {"orig_filename": "Eckardt_Ludwig_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420759}}, {"model": "metainfo.source", "pk": 16629, "fields": {"orig_filename": "Eckardt_Siegfried-Gotthilf_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420760}}, {"model": "metainfo.source", "pk": 16630, "fields": {"orig_filename": "Eckel_Hermann_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213f.", "author": "", "orig_id": 1420761}}, {"model": "metainfo.source", "pk": 16631, "fields": {"orig_filename": "Eckert_Karl-Anton-Florian_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420763}}, {"model": "metainfo.source", "pk": 16632, "fields": {"orig_filename": "Ecker_Johann-Matth-Alex_1766_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420762}}, {"model": "metainfo.source", "pk": 16633, "fields": {"orig_filename": "Eckhardt_Franz_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420764}}, {"model": "metainfo.source", "pk": 16634, "fields": {"orig_filename": "Eckinger_Johann-Nep_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420765}}, {"model": "metainfo.source", "pk": 16635, "fields": {"orig_filename": "Eckl_Georg_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420766}}, {"model": "metainfo.source", "pk": 16636, "fields": {"orig_filename": "Eckstein_Gustav_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214f.", "author": "", "orig_id": 1420767}}, {"model": "metainfo.source", "pk": 16637, "fields": {"orig_filename": "Economo-San-Serff_Constantin_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420836}}, {"model": "metainfo.source", "pk": 16638, "fields": {"orig_filename": "Edelsheim-Gyulai_Leopold-Wilhelm_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420837}}, {"model": "metainfo.source", "pk": 16639, "fields": {"orig_filename": "Eder_Franz-Albert_1818_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420838}}, {"model": "metainfo.source", "pk": 16640, "fields": {"orig_filename": "Eder_Gustav_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215f.", "author": "", "orig_id": 1420839}}, {"model": "metainfo.source", "pk": 16641, "fields": {"orig_filename": "Eder_Hans_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420840}}, {"model": "metainfo.source", "pk": 16642, "fields": {"orig_filename": "Eder_Josef-Maria_1855_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420843}}, {"model": "metainfo.source", "pk": 16643, "fields": {"orig_filename": "Eder_Josef_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420841}}, {"model": "metainfo.source", "pk": 16644, "fields": {"orig_filename": "Eder_Josef_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420842}}, {"model": "metainfo.source", "pk": 16645, "fields": {"orig_filename": "Eder_Josephine_1816_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216f.", "author": "", "orig_id": 1420844}}, {"model": "metainfo.source", "pk": 16646, "fields": {"orig_filename": "Eder_Leopold_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420845}}, {"model": "metainfo.source", "pk": 16647, "fields": {"orig_filename": "Eder_Robert_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420846}}, {"model": "metainfo.source", "pk": 16648, "fields": {"orig_filename": "Eder_Wilhelm_1780_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420847}}, {"model": "metainfo.source", "pk": 16649, "fields": {"orig_filename": "Edlauer_Franz_1798_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420848}}, {"model": "metainfo.source", "pk": 16650, "fields": {"orig_filename": "Edlbacher_Joseph_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420849}}, {"model": "metainfo.source", "pk": 16651, "fields": {"orig_filename": "Edlbacher_Ludwig_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420850}}, {"model": "metainfo.source", "pk": 16652, "fields": {"orig_filename": "Edlbacher_Maximilian-Josef-Augustin_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420851}}, {"model": "metainfo.source", "pk": 16653, "fields": {"orig_filename": "Edler_Karl-Erdmann_1844_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420852}}, {"model": "metainfo.source", "pk": 16654, "fields": {"orig_filename": "Edlmann_Ernst_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420853}}, {"model": "metainfo.source", "pk": 16655, "fields": {"orig_filename": "Edlmann_Leopold_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420854}}, {"model": "metainfo.source", "pk": 16656, "fields": {"orig_filename": "Egarter_Ferdinand_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218f.", "author": "", "orig_id": 1420855}}, {"model": "metainfo.source", "pk": 16657, "fields": {"orig_filename": "Egerer_Gislar_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420933}}, {"model": "metainfo.source", "pk": 16658, "fields": {"orig_filename": "Egerer_Petrus_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219f.", "author": "", "orig_id": 1420934}}, {"model": "metainfo.source", "pk": 16659, "fields": {"orig_filename": "Egermann_Friedrich_1777_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420935}}, {"model": "metainfo.source", "pk": 16660, "fields": {"orig_filename": "Egersdorfer_Alexander_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420936}}, {"model": "metainfo.source", "pk": 16661, "fields": {"orig_filename": "Eger_Alexander_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420856}}, {"model": "metainfo.source", "pk": 16662, "fields": {"orig_filename": "Eger_Ferdinand_1868_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420932}}, {"model": "metainfo.source", "pk": 16663, "fields": {"orig_filename": "Eger_Paul_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442992}}, {"model": "metainfo.source", "pk": 16664, "fields": {"orig_filename": "Egger-Lienz_Albin_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 224f.", "author": "", "orig_id": 1421020}}, {"model": "metainfo.source", "pk": 16665, "fields": {"orig_filename": "Egger-Moellwald_Alois_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421021}}, {"model": "metainfo.source", "pk": 16666, "fields": {"orig_filename": "Egger_Bela_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221", "author": "", "orig_id": 1420939}}, {"model": "metainfo.source", "pk": 16667, "fields": {"orig_filename": "Egger_Berthold_1852_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221", "author": "", "orig_id": 1420940}}, {"model": "metainfo.source", "pk": 16668, "fields": {"orig_filename": "Egger_Ernst_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221f.", "author": "", "orig_id": 1420941}}, {"model": "metainfo.source", "pk": 16669, "fields": {"orig_filename": "Egger_Ferdinand_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420942}}, {"model": "metainfo.source", "pk": 16670, "fields": {"orig_filename": "Egger_Franz-Joh-Nep_1768_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420944}}, {"model": "metainfo.source", "pk": 16671, "fields": {"orig_filename": "Egger_Franz_1765_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420943}}, {"model": "metainfo.source", "pk": 16672, "fields": {"orig_filename": "Egger_Franz_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222f.", "author": "", "orig_id": 1420946}}, {"model": "metainfo.source", "pk": 16673, "fields": {"orig_filename": "Egger_Franz_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420947}}, {"model": "metainfo.source", "pk": 16674, "fields": {"orig_filename": "Egger_Hermann_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420948}}, {"model": "metainfo.source", "pk": 16675, "fields": {"orig_filename": "Egger_Johann-Bapt_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420949}}, {"model": "metainfo.source", "pk": 16676, "fields": {"orig_filename": "Egger_Johann-Georg_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223f.", "author": "", "orig_id": 1420950}}, {"model": "metainfo.source", "pk": 16677, "fields": {"orig_filename": "Egger_Josef_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 224", "author": "", "orig_id": 1420951}}, {"model": "metainfo.source", "pk": 16678, "fields": {"orig_filename": "Egg_Franz_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420937}}, {"model": "metainfo.source", "pk": 16679, "fields": {"orig_filename": "Egner_Marie_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421022}}, {"model": "metainfo.source", "pk": 16680, "fields": {"orig_filename": "Egressy_Beni_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421023}}, {"model": "metainfo.source", "pk": 16681, "fields": {"orig_filename": "Egressy_Gabor_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225f.", "author": "", "orig_id": 1421024}}, {"model": "metainfo.source", "pk": 16682, "fields": {"orig_filename": "Ehmann_Helene_1910_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145466}}, {"model": "metainfo.source", "pk": 16683, "fields": {"orig_filename": "Ehnn_Bertha_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421026}}, {"model": "metainfo.source", "pk": 16684, "fields": {"orig_filename": "Ehrbar_Friedrich_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421027}}, {"model": "metainfo.source", "pk": 16685, "fields": {"orig_filename": "Ehrenberger_Josef_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421028}}, {"model": "metainfo.source", "pk": 16686, "fields": {"orig_filename": "Ehrenberg_Kurt_1896_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442592}}, {"model": "metainfo.source", "pk": 16687, "fields": {"orig_filename": "Ehrenfeld_Richard_1877_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421029}}, {"model": "metainfo.source", "pk": 16688, "fields": {"orig_filename": "Ehrenfels_Christian_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226f.", "author": "", "orig_id": 1421030}}, {"model": "metainfo.source", "pk": 16689, "fields": {"orig_filename": "Ehrenhofer_Walther-Edmund_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421031}}, {"model": "metainfo.source", "pk": 16690, "fields": {"orig_filename": "Ehrenreich_Max-Leopold_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421032}}, {"model": "metainfo.source", "pk": 16691, "fields": {"orig_filename": "Ehrenstein_Albert_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421033}}, {"model": "metainfo.source", "pk": 16692, "fields": {"orig_filename": "Ehrenstein_Louise_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421034}}, {"model": "metainfo.source", "pk": 16693, "fields": {"orig_filename": "Ehrenzweig_Armin_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227f.", "author": "", "orig_id": 1421035}}, {"model": "metainfo.source", "pk": 16694, "fields": {"orig_filename": "Doczy_Ludwig_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421588}}, {"model": "metainfo.source", "pk": 16695, "fields": {"orig_filename": "Doebler_Ludwig_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421590}}, {"model": "metainfo.source", "pk": 16696, "fields": {"orig_filename": "Doebrentei_Gabriel_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421591}}, {"model": "metainfo.source", "pk": 16697, "fields": {"orig_filename": "Doell-Gruenheim_Karl_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421592}}, {"model": "metainfo.source", "pk": 16698, "fields": {"orig_filename": "Doeller_Johann_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190f.", "author": "", "orig_id": 1421593}}, {"model": "metainfo.source", "pk": 16699, "fields": {"orig_filename": "Doelter-Cisterich_Cornelius_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421594}}, {"model": "metainfo.source", "pk": 16700, "fields": {"orig_filename": "Doepfner_Josef_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421595}}, {"model": "metainfo.source", "pk": 16701, "fields": {"orig_filename": "Doerfl_Rudolf_1855_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421596}}, {"model": "metainfo.source", "pk": 16702, "fields": {"orig_filename": "Doernhoeffer_Friedrich_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421598}}, {"model": "metainfo.source", "pk": 16703, "fields": {"orig_filename": "Doerr_August_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191f.", "author": "", "orig_id": 1421674}}, {"model": "metainfo.source", "pk": 16704, "fields": {"orig_filename": "Doery-Jobbahaza_Josef_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421675}}, {"model": "metainfo.source", "pk": 16705, "fields": {"orig_filename": "Dolch_Moritz_1887_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421676}}, {"model": "metainfo.source", "pk": 16706, "fields": {"orig_filename": "Dollfuss_Engelbert_1892_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421677}}, {"model": "metainfo.source", "pk": 16707, "fields": {"orig_filename": "Dolliner_Georg_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421678}}, {"model": "metainfo.source", "pk": 16708, "fields": {"orig_filename": "Dolliner_Thomas_1760_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421679}}, {"model": "metainfo.source", "pk": 16709, "fields": {"orig_filename": "Dollmayr_Hermann_1865_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421680}}, {"model": "metainfo.source", "pk": 16710, "fields": {"orig_filename": "Domanig-Roll_Roman-Cornelius_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421683}}, {"model": "metainfo.source", "pk": 16711, "fields": {"orig_filename": "Domanig_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421681}}, {"model": "metainfo.source", "pk": 16712, "fields": {"orig_filename": "Domanig_Marie_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421682}}, {"model": "metainfo.source", "pk": 16713, "fields": {"orig_filename": "Domaszewski_Alfred_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421684}}, {"model": "metainfo.source", "pk": 16714, "fields": {"orig_filename": "Dombrowski_Ernst_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421685}}, {"model": "metainfo.source", "pk": 16715, "fields": {"orig_filename": "Domes_Franz_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421686}}, {"model": "metainfo.source", "pk": 16716, "fields": {"orig_filename": "Domin_Franjo-Josip_1754_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421687}}, {"model": "metainfo.source", "pk": 16717, "fields": {"orig_filename": "Domjanic_Dragutin_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421688}}, {"model": "metainfo.source", "pk": 16718, "fields": {"orig_filename": "Domokos_Josef_1762_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421689}}, {"model": "metainfo.source", "pk": 16719, "fields": {"orig_filename": "Donabaum_Josef_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421690}}, {"model": "metainfo.source", "pk": 16720, "fields": {"orig_filename": "Donath_Eduard_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421693}}, {"model": "metainfo.source", "pk": 16721, "fields": {"orig_filename": "Donath_Julius_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421694}}, {"model": "metainfo.source", "pk": 16722, "fields": {"orig_filename": "Donat_Johann-Daniel_1744_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421691}}, {"model": "metainfo.source", "pk": 16723, "fields": {"orig_filename": "Donat_Josef_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194f.", "author": "", "orig_id": 1421692}}, {"model": "metainfo.source", "pk": 16724, "fields": {"orig_filename": "Donegani-Stilfserberg_Carlo_1775_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421695}}, {"model": "metainfo.source", "pk": 16725, "fields": {"orig_filename": "Donin_Ludwig_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421696}}, {"model": "metainfo.source", "pk": 16726, "fields": {"orig_filename": "Donizetti_Gaetano_1797_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421769}}, {"model": "metainfo.source", "pk": 16727, "fields": {"orig_filename": "Donizetti_Giuseppe_1788_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421770}}, {"model": "metainfo.source", "pk": 16728, "fields": {"orig_filename": "Dont_Jakob_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421771}}, {"model": "metainfo.source", "pk": 16729, "fields": {"orig_filename": "Doppelbauer_Franz-Maria_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421772}}, {"model": "metainfo.source", "pk": 16730, "fields": {"orig_filename": "Doppler_Adolf_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421773}}, {"model": "metainfo.source", "pk": 16731, "fields": {"orig_filename": "Doppler_Adolf_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421774}}, {"model": "metainfo.source", "pk": 16732, "fields": {"orig_filename": "Doppler_Christian_1803_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421775}}, {"model": "metainfo.source", "pk": 16733, "fields": {"orig_filename": "Doppler_Franz_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421776}}, {"model": "metainfo.source", "pk": 16734, "fields": {"orig_filename": "Doppler_Karl_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421777}}, {"model": "metainfo.source", "pk": 16735, "fields": {"orig_filename": "Dormus-Kilianshausen_Josef_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421779}}, {"model": "metainfo.source", "pk": 16736, "fields": {"orig_filename": "Dormus_Georg_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421778}}, {"model": "metainfo.source", "pk": 16737, "fields": {"orig_filename": "Dorner_Johann-Konrad_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421781}}, {"model": "metainfo.source", "pk": 16738, "fields": {"orig_filename": "Dorner_Peter_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421782}}, {"model": "metainfo.source", "pk": 16739, "fields": {"orig_filename": "Dostal-Lutinov_Karl_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421783}}, {"model": "metainfo.source", "pk": 16740, "fields": {"orig_filename": "Doublier_Othmar_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421784}}, {"model": "metainfo.source", "pk": 16741, "fields": {"orig_filename": "Dovsky_Beatrice_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421785}}, {"model": "metainfo.source", "pk": 16742, "fields": {"orig_filename": "Draexler_Karl-Ferdinand_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421786}}, {"model": "metainfo.source", "pk": 16743, "fields": {"orig_filename": "Drasche-Wartinberg_Heinrich_1811_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421788}}, {"model": "metainfo.source", "pk": 16744, "fields": {"orig_filename": "Drasche-Wartinberg_Richard_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421789}}, {"model": "metainfo.source", "pk": 16745, "fields": {"orig_filename": "Drasche_Anton_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197f.", "author": "", "orig_id": 1421787}}, {"model": "metainfo.source", "pk": 16746, "fields": {"orig_filename": "Draskovic-Trakoscan_Johann_1770_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421790}}, {"model": "metainfo.source", "pk": 16747, "fields": {"orig_filename": "Draxler_Josef_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421791}}, {"model": "metainfo.source", "pk": 16748, "fields": {"orig_filename": "Drbal_Mathias-Amos_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421792}}, {"model": "metainfo.source", "pk": 16749, "fields": {"orig_filename": "Drdla_Franz_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421866}}, {"model": "metainfo.source", "pk": 16750, "fields": {"orig_filename": "Drechsel_Anton_1751_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421867}}, {"model": "metainfo.source", "pk": 16751, "fields": {"orig_filename": "Drechsler_Josef_1782_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421868}}, {"model": "metainfo.source", "pk": 16752, "fields": {"orig_filename": "Drechsler_Karl_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421869}}, {"model": "metainfo.source", "pk": 16753, "fields": {"orig_filename": "Dreger_Moritz_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421870}}, {"model": "metainfo.source", "pk": 16754, "fields": {"orig_filename": "Dreger_Tom_1868_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1419946}}, {"model": "metainfo.source", "pk": 16755, "fields": {"orig_filename": "Dreher_Anton_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421963}}, {"model": "metainfo.source", "pk": 16756, "fields": {"orig_filename": "Dreher_Anton_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199f.", "author": "", "orig_id": 1421964}}, {"model": "metainfo.source", "pk": 16757, "fields": {"orig_filename": "Dreher_Franz-Anton_1736_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421965}}, {"model": "metainfo.source", "pk": 16758, "fields": {"orig_filename": "Drescher_Karl-Wilhelm_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421966}}, {"model": "metainfo.source", "pk": 16759, "fields": {"orig_filename": "Dressery_Wilhelm_1770_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421967}}, {"model": "metainfo.source", "pk": 16760, "fields": {"orig_filename": "Dressler_Raphael_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421968}}, {"model": "metainfo.source", "pk": 16761, "fields": {"orig_filename": "Drexel_Johann_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421969}}, {"model": "metainfo.source", "pk": 16762, "fields": {"orig_filename": "Drexler_Anton_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1442907}}, {"model": "metainfo.source", "pk": 16763, "fields": {"orig_filename": "Drexler_Josef_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2256452}}, {"model": "metainfo.source", "pk": 16764, "fields": {"orig_filename": "Drexler_Karl_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421970}}, {"model": "metainfo.source", "pk": 16765, "fields": {"orig_filename": "Dreyer-Iller_Johann-Traugott_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200f.", "author": "", "orig_id": 1421971}}, {"model": "metainfo.source", "pk": 16766, "fields": {"orig_filename": "Dreyschock_Alexander_1818_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421972}}, {"model": "metainfo.source", "pk": 16767, "fields": {"orig_filename": "Drha_Anton_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421973}}, {"model": "metainfo.source", "pk": 16768, "fields": {"orig_filename": "Drossbach_Paul_1866_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421974}}, {"model": "metainfo.source", "pk": 16769, "fields": {"orig_filename": "Drtina_Frantisek_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421975}}, {"model": "metainfo.source", "pk": 16770, "fields": {"orig_filename": "Druskowitz_Helene_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421976}}, {"model": "metainfo.source", "pk": 16771, "fields": {"orig_filename": "Dubsky-Trebomyslice_Viktor_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421977}}, {"model": "metainfo.source", "pk": 16772, "fields": {"orig_filename": "Duchek_Albert_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421978}}, {"model": "metainfo.source", "pk": 16773, "fields": {"orig_filename": "Dudik_Beda_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201f.", "author": "", "orig_id": 1421983}}, {"model": "metainfo.source", "pk": 16774, "fields": {"orig_filename": "Duell_Alois-Franz_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1421984}}, {"model": "metainfo.source", "pk": 16775, "fields": {"orig_filename": "Duerauer_Franz-Josef_1854_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422055}}, {"model": "metainfo.source", "pk": 16776, "fields": {"orig_filename": "Duerlinger_Josef_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422056}}, {"model": "metainfo.source", "pk": 16777, "fields": {"orig_filename": "Duerrnberger_Adolf_1838_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422057}}, {"model": "metainfo.source", "pk": 16778, "fields": {"orig_filename": "Duftschmid_Johann_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422058}}, {"model": "metainfo.source", "pk": 16779, "fields": {"orig_filename": "Duftschmid_Kaspar_1767_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422059}}, {"model": "metainfo.source", "pk": 16780, "fields": {"orig_filename": "Dugonics_Andreas_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422060}}, {"model": "metainfo.source", "pk": 16781, "fields": {"orig_filename": "Duhm_Julius_1885_1955.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443109}}, {"model": "metainfo.source", "pk": 16782, "fields": {"orig_filename": "Duile_Josef_1776_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202f.", "author": "", "orig_id": 1422061}}, {"model": "metainfo.source", "pk": 16783, "fields": {"orig_filename": "Duka-Kadar_Friedrich_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422062}}, {"model": "metainfo.source", "pk": 16784, "fields": {"orig_filename": "Dukes_Leopold_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422063}}, {"model": "metainfo.source", "pk": 16785, "fields": {"orig_filename": "Duller_Eduard_1809_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422064}}, {"model": "metainfo.source", "pk": 16786, "fields": {"orig_filename": "Dumba_Nikolaus_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422066}}, {"model": "metainfo.source", "pk": 16787, "fields": {"orig_filename": "Dumreicher-Oesterreicher_Armand_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203f.", "author": "", "orig_id": 1422067}}, {"model": "metainfo.source", "pk": 16788, "fields": {"orig_filename": "Dumreicher-Oesterreicher_Johann_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422068}}, {"model": "metainfo.source", "pk": 16789, "fields": {"orig_filename": "Dunaiszky_Ladislaus_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422069}}, {"model": "metainfo.source", "pk": 16790, "fields": {"orig_filename": "Dunaiszky_Laurentius_1784_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422070}}, {"model": "metainfo.source", "pk": 16791, "fields": {"orig_filename": "Dunajewski_Albin_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422071}}, {"model": "metainfo.source", "pk": 16792, "fields": {"orig_filename": "Dunajewski_Julian_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204f.", "author": "", "orig_id": 1422072}}, {"model": "metainfo.source", "pk": 16793, "fields": {"orig_filename": "Dungel_Adalbert_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422073}}, {"model": "metainfo.source", "pk": 16794, "fields": {"orig_filename": "Dunin-Borkowski_Alexander_1811_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422074}}, {"model": "metainfo.source", "pk": 16795, "fields": {"orig_filename": "Deininger_Julius_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1443709}}, {"model": "metainfo.source", "pk": 16796, "fields": {"orig_filename": "Del-Pero_Bartholomaeus_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417250}}, {"model": "metainfo.source", "pk": 16797, "fields": {"orig_filename": "Dela-Croze_Johann-Nepomuk_1736_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417244}}, {"model": "metainfo.source", "pk": 16798, "fields": {"orig_filename": "Delci_Angelo-Maria_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417245}}, {"model": "metainfo.source", "pk": 16799, "fields": {"orig_filename": "Delhaes_Istvan_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417246}}, {"model": "metainfo.source", "pk": 16800, "fields": {"orig_filename": "Dellatorre-Valsassina_Michael_1757_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175f.", "author": "", "orig_id": 1417247}}, {"model": "metainfo.source", "pk": 16801, "fields": {"orig_filename": "Dellegrazie_Marie-Eugenie_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417248}}, {"model": "metainfo.source", "pk": 16802, "fields": {"orig_filename": "Delmont_Josef_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417249}}, {"model": "metainfo.source", "pk": 16803, "fields": {"orig_filename": "Delrio_Josef-Giannatassio_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417251}}, {"model": "metainfo.source", "pk": 16804, "fields": {"orig_filename": "Delug_Alois_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417252}}, {"model": "metainfo.source", "pk": 16805, "fields": {"orig_filename": "Delvert_Christian_1803_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176f.", "author": "", "orig_id": 1417253}}, {"model": "metainfo.source", "pk": 16806, "fields": {"orig_filename": "Demagri_Egidius_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417254}}, {"model": "metainfo.source", "pk": 16807, "fields": {"orig_filename": "Dembinski_Henryk_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417255}}, {"model": "metainfo.source", "pk": 16808, "fields": {"orig_filename": "Demelius_Ernst_1859_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417257}}, {"model": "metainfo.source", "pk": 16809, "fields": {"orig_filename": "Demelius_Gustav_1831_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417258}}, {"model": "metainfo.source", "pk": 16810, "fields": {"orig_filename": "Demel_Hans_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417256}}, {"model": "metainfo.source", "pk": 16811, "fields": {"orig_filename": "Demeter_Dimitrija_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177f.", "author": "", "orig_id": 1417259}}, {"model": "metainfo.source", "pk": 16812, "fields": {"orig_filename": "Demian_Johann-Andreas_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417260}}, {"model": "metainfo.source", "pk": 16813, "fields": {"orig_filename": "Demuth_Leopold_1860_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417261}}, {"model": "metainfo.source", "pk": 16814, "fields": {"orig_filename": "Denifle_Heinrich-Suso_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417263}}, {"model": "metainfo.source", "pk": 16815, "fields": {"orig_filename": "Derencin_Marijan_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417264}}, {"model": "metainfo.source", "pk": 16816, "fields": {"orig_filename": "Deri_Max_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1426849}}, {"model": "metainfo.source", "pk": 16817, "fields": {"orig_filename": "Dermota_Anton_1876_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178f.", "author": "", "orig_id": 1421289}}, {"model": "metainfo.source", "pk": 16818, "fields": {"orig_filename": "Derschatta_Julius_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421290}}, {"model": "metainfo.source", "pk": 16819, "fields": {"orig_filename": "Dery_Juliane_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421291}}, {"model": "metainfo.source", "pk": 16820, "fields": {"orig_filename": "Dery_Rosa_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421292}}, {"model": "metainfo.source", "pk": 16821, "fields": {"orig_filename": "Desanti_Angelo_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421293}}, {"model": "metainfo.source", "pk": 16822, "fields": {"orig_filename": "Deschmann_Karl_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421294}}, {"model": "metainfo.source", "pk": 16823, "fields": {"orig_filename": "Desfours-Montville-Athienville_Franz-Josef_1765_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421295}}, {"model": "metainfo.source", "pk": 16824, "fields": {"orig_filename": "Desimoni_Albert_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421296}}, {"model": "metainfo.source", "pk": 16825, "fields": {"orig_filename": "Desquilles_Joseph_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421297}}, {"model": "metainfo.source", "pk": 16826, "fields": {"orig_filename": "Dessauer_Josef_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421298}}, {"model": "metainfo.source", "pk": 16827, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Aurel_1808_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421299}}, {"model": "metainfo.source", "pk": 16828, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Emil_1814_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421300}}, {"model": "metainfo.source", "pk": 16829, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Josef_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421301}}, {"model": "metainfo.source", "pk": 16830, "fields": {"orig_filename": "Dessoff_Felix-Otto_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180f.", "author": "", "orig_id": 1421302}}, {"model": "metainfo.source", "pk": 16831, "fields": {"orig_filename": "Destinn_Emmy_1878_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421303}}, {"model": "metainfo.source", "pk": 16832, "fields": {"orig_filename": "Detela_Franz_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421304}}, {"model": "metainfo.source", "pk": 16833, "fields": {"orig_filename": "Detraux_Ludwig_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421305}}, {"model": "metainfo.source", "pk": 16834, "fields": {"orig_filename": "Detraux_Maximilian_1766_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421306}}, {"model": "metainfo.source", "pk": 16835, "fields": {"orig_filename": "Deubler_Konrad_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421307}}, {"model": "metainfo.source", "pk": 16836, "fields": {"orig_filename": "Deutelmoser_Ferdinand_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421308}}, {"model": "metainfo.source", "pk": 16837, "fields": {"orig_filename": "Deutsch-German_Alfred_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444413}}, {"model": "metainfo.source", "pk": 16838, "fields": {"orig_filename": "Deutsch_Karl_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421309}}, {"model": "metainfo.source", "pk": 16839, "fields": {"orig_filename": "Deutsch_Poldi_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181f.", "author": "", "orig_id": 1421383}}, {"model": "metainfo.source", "pk": 16840, "fields": {"orig_filename": "Devaulx_Karl_1776_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421384}}, {"model": "metainfo.source", "pk": 16841, "fields": {"orig_filename": "Devaux_Thierry_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421385}}, {"model": "metainfo.source", "pk": 16842, "fields": {"orig_filename": "Devrient-Reinhold_Babette_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421388}}, {"model": "metainfo.source", "pk": 16843, "fields": {"orig_filename": "Devrient_Max_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421387}}, {"model": "metainfo.source", "pk": 16844, "fields": {"orig_filename": "Dewez_Josef-Wilhelm_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421389}}, {"model": "metainfo.source", "pk": 16845, "fields": {"orig_filename": "Deym-Stritez_Franz_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421390}}, {"model": "metainfo.source", "pk": 16846, "fields": {"orig_filename": "Dezelic_Velimir_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182f.", "author": "", "orig_id": 1421391}}, {"model": "metainfo.source", "pk": 16847, "fields": {"orig_filename": "Dezman_Milivoj_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421392}}, {"model": "metainfo.source", "pk": 16848, "fields": {"orig_filename": "Diabelli_Anton_1781_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421393}}, {"model": "metainfo.source", "pk": 16849, "fields": {"orig_filename": "Diamant_Paul-Joseph_1887_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2133940}}, {"model": "metainfo.source", "pk": 16850, "fields": {"orig_filename": "Dickmann-Secherau_Eugen_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421397}}, {"model": "metainfo.source", "pk": 16851, "fields": {"orig_filename": "Dick_Rudolf_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421396}}, {"model": "metainfo.source", "pk": 16852, "fields": {"orig_filename": "Diedo_Antonio_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421399}}, {"model": "metainfo.source", "pk": 16853, "fields": {"orig_filename": "Diemer_Josef_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183f.", "author": "", "orig_id": 1421400}}, {"model": "metainfo.source", "pk": 16854, "fields": {"orig_filename": "Diem_Karl_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421398}}, {"model": "metainfo.source", "pk": 16855, "fields": {"orig_filename": "Diener_Carl_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421401}}, {"model": "metainfo.source", "pk": 16856, "fields": {"orig_filename": "Dierzer-Traunthal_Josef_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421402}}, {"model": "metainfo.source", "pk": 16857, "fields": {"orig_filename": "Diesing_Karl-Moriz_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421403}}, {"model": "metainfo.source", "pk": 16858, "fields": {"orig_filename": "Dietl_Gottlieb_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421404}}, {"model": "metainfo.source", "pk": 16859, "fields": {"orig_filename": "Dietmann_Leopold_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184f.", "author": "", "orig_id": 1421405}}, {"model": "metainfo.source", "pk": 16860, "fields": {"orig_filename": "Dietrich-Hermannberg_Emanuel_1772_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421478}}, {"model": "metainfo.source", "pk": 16861, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Alexander_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421479}}, {"model": "metainfo.source", "pk": 16862, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Franz-Josef_1767_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421480}}, {"model": "metainfo.source", "pk": 16863, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Moritz-I-Josef-Johann_1775_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421481}}, {"model": "metainfo.source", "pk": 16864, "fields": {"orig_filename": "Dietrich_Georg_1891_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421406}}, {"model": "metainfo.source", "pk": 16865, "fields": {"orig_filename": "Dietz_Max_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421482}}, {"model": "metainfo.source", "pk": 16866, "fields": {"orig_filename": "Dimitz_August_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421483}}, {"model": "metainfo.source", "pk": 16867, "fields": {"orig_filename": "Dimitz_Ludwig_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185f.", "author": "", "orig_id": 1421484}}, {"model": "metainfo.source", "pk": 16868, "fields": {"orig_filename": "Dimmer_Friedrich_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186", "author": "", "orig_id": 1421485}}, {"model": "metainfo.source", "pk": 16869, "fields": {"orig_filename": "Dingelstedt_Franz_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421486}}, {"model": "metainfo.source", "pk": 16870, "fields": {"orig_filename": "Dipauli_Andreas_1761_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186", "author": "", "orig_id": 1421487}}, {"model": "metainfo.source", "pk": 16871, "fields": {"orig_filename": "Dipauli_Josef_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186f.", "author": "", "orig_id": 1421488}}, {"model": "metainfo.source", "pk": 16872, "fields": {"orig_filename": "Dirmoser_Oswald_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421489}}, {"model": "metainfo.source", "pk": 16873, "fields": {"orig_filename": "Dirmoser_Richard_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421490}}, {"model": "metainfo.source", "pk": 16874, "fields": {"orig_filename": "Dirnboeck-Schulz_Jenny_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421492}}, {"model": "metainfo.source", "pk": 16875, "fields": {"orig_filename": "Dirnboeck_Jakob_1809_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421491}}, {"model": "metainfo.source", "pk": 16876, "fields": {"orig_filename": "Ditmar_Karl-Rudolf_1798_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421493}}, {"model": "metainfo.source", "pk": 16877, "fields": {"orig_filename": "Ditscheiner_Adolf-Gustav_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421494}}, {"model": "metainfo.source", "pk": 16878, "fields": {"orig_filename": "Ditscheiner_Leander_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421495}}, {"model": "metainfo.source", "pk": 16879, "fields": {"orig_filename": "Dittel_Leopold_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187f.", "author": "", "orig_id": 1421496}}, {"model": "metainfo.source", "pk": 16880, "fields": {"orig_filename": "Dittel_Leopold_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421497}}, {"model": "metainfo.source", "pk": 16881, "fields": {"orig_filename": "Dittes_Christian-Friedrich_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421498}}, {"model": "metainfo.source", "pk": 16882, "fields": {"orig_filename": "Dittes_Paul_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1413412}}, {"model": "metainfo.source", "pk": 16883, "fields": {"orig_filename": "Dittler_Emil_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2005213}}, {"model": "metainfo.source", "pk": 16884, "fields": {"orig_filename": "Dittmarsch_Karl_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421499}}, {"model": "metainfo.source", "pk": 16885, "fields": {"orig_filename": "Dittrich_Franz_1815_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421500}}, {"model": "metainfo.source", "pk": 16886, "fields": {"orig_filename": "Dittrich_Josef_1794_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421501}}, {"model": "metainfo.source", "pk": 16887, "fields": {"orig_filename": "Dlabacz_Gottfried-Johann_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421578}}, {"model": "metainfo.source", "pk": 16888, "fields": {"orig_filename": "Dlustus_Ljuboje_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188f.", "author": "", "orig_id": 1421579}}, {"model": "metainfo.source", "pk": 16889, "fields": {"orig_filename": "Dobernig_Johann-Wolfgang_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421580}}, {"model": "metainfo.source", "pk": 16890, "fields": {"orig_filename": "Dobiaschofsky_Franz-Joseph_1818_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421581}}, {"model": "metainfo.source", "pk": 16891, "fields": {"orig_filename": "Doblhoff-Dier_Anton_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421582}}, {"model": "metainfo.source", "pk": 16892, "fields": {"orig_filename": "Doblhoff-Dier_Josef_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421583}}, {"model": "metainfo.source", "pk": 16893, "fields": {"orig_filename": "Doblhoff-Dier_Karl_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421584}}, {"model": "metainfo.source", "pk": 16894, "fields": {"orig_filename": "Dobrila_Juraj_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421585}}, {"model": "metainfo.source", "pk": 16895, "fields": {"orig_filename": "Dobrovsky_Josef_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189f.", "author": "", "orig_id": 1421586}}, {"model": "metainfo.source", "pk": 16896, "fields": {"orig_filename": "Dobrzensky-Dobrzenitz_Anton_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421587}}, {"model": "metainfo.source", "pk": 16897, "fields": {"orig_filename": "Czako_Siegmund_1820_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417601}}, {"model": "metainfo.source", "pk": 16898, "fields": {"orig_filename": "Czant_Hermann_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417602}}, {"model": "metainfo.source", "pk": 16899, "fields": {"orig_filename": "Czapek_Friedrich_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417603}}, {"model": "metainfo.source", "pk": 16900, "fields": {"orig_filename": "Czapka-Winstetten_Ignaz_1791_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417604}}, {"model": "metainfo.source", "pk": 16901, "fields": {"orig_filename": "Czartoryski_Adam-Kasimir_1734_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160f.", "author": "", "orig_id": 1417605}}, {"model": "metainfo.source", "pk": 16902, "fields": {"orig_filename": "Czedik-Bruendelsberg-Eysenberg_Alois_1830_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417606}}, {"model": "metainfo.source", "pk": 16903, "fields": {"orig_filename": "Czermak_Franz_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417607}}, {"model": "metainfo.source", "pk": 16904, "fields": {"orig_filename": "Czermak_Jaroslav_1831_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417608}}, {"model": "metainfo.source", "pk": 16905, "fields": {"orig_filename": "Czermak_Johann-Nep_1828_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417609}}, {"model": "metainfo.source", "pk": 16906, "fields": {"orig_filename": "Czermak_Joseph-Julius_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1443916}}, {"model": "metainfo.source", "pk": 16907, "fields": {"orig_filename": "Czermak_Joseph_1825_1872.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2254768}}, {"model": "metainfo.source", "pk": 16908, "fields": {"orig_filename": "Czernin_Johann-Rudolf_1757_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417610}}, {"model": "metainfo.source", "pk": 16909, "fields": {"orig_filename": "Czernin_Ottokar_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417611}}, {"model": "metainfo.source", "pk": 16910, "fields": {"orig_filename": "Czernits_Franz_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417612}}, {"model": "metainfo.source", "pk": 16911, "fields": {"orig_filename": "Czerny_Albin_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417614}}, {"model": "metainfo.source", "pk": 16912, "fields": {"orig_filename": "Czerny_Franz_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417616}}, {"model": "metainfo.source", "pk": 16913, "fields": {"orig_filename": "Czerny_Karl_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417617}}, {"model": "metainfo.source", "pk": 16914, "fields": {"orig_filename": "Czerny_Vinzenz_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417618}}, {"model": "metainfo.source", "pk": 16915, "fields": {"orig_filename": "Czerwenka_Bernhard-Franz_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417688}}, {"model": "metainfo.source", "pk": 16916, "fields": {"orig_filename": "Czibulka_Alfons_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417690}}, {"model": "metainfo.source", "pk": 16917, "fields": {"orig_filename": "Cziraky_Anton-Moses_1772_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417692}}, {"model": "metainfo.source", "pk": 16918, "fields": {"orig_filename": "Czizek_Johann-Bapt_1806_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417693}}, {"model": "metainfo.source", "pk": 16919, "fields": {"orig_filename": "Czoernig-Czernhausen_Karl_1804_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417694}}, {"model": "metainfo.source", "pk": 16920, "fields": {"orig_filename": "Czoernig-Czernhausen_Walter_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164f.", "author": "", "orig_id": 1417695}}, {"model": "metainfo.source", "pk": 16921, "fields": {"orig_filename": "Czuber_Emanuel_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417696}}, {"model": "metainfo.source", "pk": 16922, "fields": {"orig_filename": "Czuczor_Gregor_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417697}}, {"model": "metainfo.source", "pk": 16923, "fields": {"orig_filename": "Czyhlarz_Karl_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417698}}, {"model": "metainfo.source", "pk": 16924, "fields": {"orig_filename": "Czyzewicz_Adam-Zygmunt_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2194443}}, {"model": "metainfo.source", "pk": 16925, "fields": {"orig_filename": "Dabancourt-Franqueville_Franz-Xaver_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416969}}, {"model": "metainfo.source", "pk": 16926, "fields": {"orig_filename": "Dachler_Anton_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416970}}, {"model": "metainfo.source", "pk": 16927, "fields": {"orig_filename": "Dachs_Josef_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416971}}, {"model": "metainfo.source", "pk": 16928, "fields": {"orig_filename": "Daeubler_Theodor_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416972}}, {"model": "metainfo.source", "pk": 16929, "fields": {"orig_filename": "Dafert-Sensel-Timmer_Franz_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416973}}, {"model": "metainfo.source", "pk": 16930, "fields": {"orig_filename": "Daffinger_Moritz-Michael_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416974}}, {"model": "metainfo.source", "pk": 16931, "fields": {"orig_filename": "Dahlen-Orlaburg_Hermann_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166f.", "author": "", "orig_id": 1416975}}, {"model": "metainfo.source", "pk": 16932, "fields": {"orig_filename": "Dahlerup-Birch_Hans_1790_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416976}}, {"model": "metainfo.source", "pk": 16933, "fields": {"orig_filename": "Dajnko_Peter_1787_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416977}}, {"model": "metainfo.source", "pk": 16934, "fields": {"orig_filename": "Dalberg_Friedrich_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416978}}, {"model": "metainfo.source", "pk": 16935, "fields": {"orig_filename": "Dallacqua_Cesare_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416979}}, {"model": "metainfo.source", "pk": 16936, "fields": {"orig_filename": "Dallago_Carl_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416980}}, {"model": "metainfo.source", "pk": 16937, "fields": {"orig_filename": "Dallatorre_Karl-Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1417050}}, {"model": "metainfo.source", "pk": 16938, "fields": {"orig_filename": "Dallinger_Alfred_1926_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1428087}}, {"model": "metainfo.source", "pk": 16939, "fields": {"orig_filename": "Dallocca_Sophie_1807_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 426f.", "author": "", "orig_id": 1406922}}, {"model": "metainfo.source", "pk": 16940, "fields": {"orig_filename": "Dallongaro_Francesco_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167f.", "author": "", "orig_id": 1417051}}, {"model": "metainfo.source", "pk": 16941, "fields": {"orig_filename": "Damboeck_Ludwig_1798_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417052}}, {"model": "metainfo.source", "pk": 16942, "fields": {"orig_filename": "Damianitsch_Martin_1807_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417054}}, {"model": "metainfo.source", "pk": 16943, "fields": {"orig_filename": "Damian_Josef_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417053}}, {"model": "metainfo.source", "pk": 16944, "fields": {"orig_filename": "Damjanich_Johann_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417055}}, {"model": "metainfo.source", "pk": 16945, "fields": {"orig_filename": "Dandreis-Beausson_Josef-Julius_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417056}}, {"model": "metainfo.source", "pk": 16946, "fields": {"orig_filename": "Danegger_Josef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417057}}, {"model": "metainfo.source", "pk": 16947, "fields": {"orig_filename": "Danei_Josef_1782_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417058}}, {"model": "metainfo.source", "pk": 16948, "fields": {"orig_filename": "Dangelmeier_Emil_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417059}}, {"model": "metainfo.source", "pk": 16949, "fields": {"orig_filename": "Danhauser_Josef_1805_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168f.", "author": "", "orig_id": 1417060}}, {"model": "metainfo.source", "pk": 16950, "fields": {"orig_filename": "Danhelovsky_Konstantin_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417061}}, {"model": "metainfo.source", "pk": 16951, "fields": {"orig_filename": "Dani-Gyarmata-Magyar-Cseke_Blasius_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417062}}, {"model": "metainfo.source", "pk": 16952, "fields": {"orig_filename": "Dankl-Krasnik_Viktor_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417063}}, {"model": "metainfo.source", "pk": 16953, "fields": {"orig_filename": "Danko_Josef-Karl_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417064}}, {"model": "metainfo.source", "pk": 16954, "fields": {"orig_filename": "Danno_Josef_1742_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417065}}, {"model": "metainfo.source", "pk": 16955, "fields": {"orig_filename": "Dantoni_Antonio_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169f.", "author": "", "orig_id": 1417066}}, {"model": "metainfo.source", "pk": 16956, "fields": {"orig_filename": "Dantscher-Kollersberg_Theodor_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417067}}, {"model": "metainfo.source", "pk": 16957, "fields": {"orig_filename": "Danzer_Alfons_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417068}}, {"model": "metainfo.source", "pk": 16958, "fields": {"orig_filename": "Daranyi_Ignaz_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417070}}, {"model": "metainfo.source", "pk": 16959, "fields": {"orig_filename": "Darnaut-Fix_Hugo_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417071}}, {"model": "metainfo.source", "pk": 16960, "fields": {"orig_filename": "Daspre-Hoobreuk_Konstantin_1787_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417072}}, {"model": "metainfo.source", "pk": 16961, "fields": {"orig_filename": "Daublebsky-Sterneck-Ehrenstein_Jakob_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1430148}}, {"model": "metainfo.source", "pk": 16962, "fields": {"orig_filename": "Daublebsky-Sterneck_Maximilian_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417074}}, {"model": "metainfo.source", "pk": 16963, "fields": {"orig_filename": "Daublebsky-Sterneck_Moritz_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417146}}, {"model": "metainfo.source", "pk": 16964, "fields": {"orig_filename": "Daublebsky-Sterneck_Robert_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417147}}, {"model": "metainfo.source", "pk": 16965, "fields": {"orig_filename": "Daub_Hermann_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170f.", "author": "", "orig_id": 1417073}}, {"model": "metainfo.source", "pk": 16966, "fields": {"orig_filename": "Dauthage_Adolf_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417148}}, {"model": "metainfo.source", "pk": 16967, "fields": {"orig_filename": "David_Jakob-Julius_1859_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417149}}, {"model": "metainfo.source", "pk": 16968, "fields": {"orig_filename": "David_Martin-Alois_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417150}}, {"model": "metainfo.source", "pk": 16969, "fields": {"orig_filename": "David_Werner_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417151}}, {"model": "metainfo.source", "pk": 16970, "fields": {"orig_filename": "Deak-Ebner_Ludwig_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417153}}, {"model": "metainfo.source", "pk": 16971, "fields": {"orig_filename": "Deak_Franz_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417152}}, {"model": "metainfo.source", "pk": 16972, "fields": {"orig_filename": "Deball_Leo-Anton-Karl_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417154}}, {"model": "metainfo.source", "pk": 16973, "fields": {"orig_filename": "Debaut_Franz_1745_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417155}}, {"model": "metainfo.source", "pk": 16974, "fields": {"orig_filename": "Debois_Ferdinand_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417156}}, {"model": "metainfo.source", "pk": 16975, "fields": {"orig_filename": "Debrois-Bruyck_Karl_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417157}}, {"model": "metainfo.source", "pk": 16976, "fields": {"orig_filename": "Decarli_Bruno_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250f.", "author": "", "orig_id": 1406550}}, {"model": "metainfo.source", "pk": 16977, "fields": {"orig_filename": "Decker_Gabriel_1821_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417158}}, {"model": "metainfo.source", "pk": 16978, "fields": {"orig_filename": "Decker_Georg_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417159}}, {"model": "metainfo.source", "pk": 16979, "fields": {"orig_filename": "Decker_Johann-Stephan_1784_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417160}}, {"model": "metainfo.source", "pk": 16980, "fields": {"orig_filename": "Decsey_Alexander_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417161}}, {"model": "metainfo.source", "pk": 16981, "fields": {"orig_filename": "Decsey_Ernst_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417162}}, {"model": "metainfo.source", "pk": 16982, "fields": {"orig_filename": "Dedekind_Alexander_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417163}}, {"model": "metainfo.source", "pk": 16983, "fields": {"orig_filename": "Dedic_Paul_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173f.", "author": "", "orig_id": 1417164}}, {"model": "metainfo.source", "pk": 16984, "fields": {"orig_filename": "Dedovic_Martin_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417165}}, {"model": "metainfo.source", "pk": 16985, "fields": {"orig_filename": "Defabris_Giuseppe_1790_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417166}}, {"model": "metainfo.source", "pk": 16986, "fields": {"orig_filename": "Degen-Elsenau_Josef-Vinzenz_1762_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417169}}, {"model": "metainfo.source", "pk": 16987, "fields": {"orig_filename": "Degenfeld-Schonburg_August_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174f.", "author": "", "orig_id": 1417170}}, {"model": "metainfo.source", "pk": 16988, "fields": {"orig_filename": "Degenfeld-Schonburg_Friedrich_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417241}}, {"model": "metainfo.source", "pk": 16989, "fields": {"orig_filename": "Degen_Jakob_1760_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417168}}, {"model": "metainfo.source", "pk": 16990, "fields": {"orig_filename": "Degner_Erich-Wolfgang_1858_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417242}}, {"model": "metainfo.source", "pk": 16991, "fields": {"orig_filename": "Dehne_August_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443704}}, {"model": "metainfo.source", "pk": 16992, "fields": {"orig_filename": "Deil_Eugen_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1419883}}, {"model": "metainfo.source", "pk": 16993, "fields": {"orig_filename": "Deinhard-Deinhardstein_Johann-Ludwig_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417243}}, {"model": "metainfo.source", "pk": 16994, "fields": {"orig_filename": "Chmelensky_Ladislav_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417220}}, {"model": "metainfo.source", "pk": 16995, "fields": {"orig_filename": "Chmel_Adam-Matthias_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417144}}, {"model": "metainfo.source", "pk": 16996, "fields": {"orig_filename": "Chmel_Josef_1798_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417145}}, {"model": "metainfo.source", "pk": 16997, "fields": {"orig_filename": "Chocholousek_Prokop_1819_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417221}}, {"model": "metainfo.source", "pk": 16998, "fields": {"orig_filename": "Chodounsky_Karl_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417222}}, {"model": "metainfo.source", "pk": 16999, "fields": {"orig_filename": "Cholewa_Josip_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2192006}}, {"model": "metainfo.source", "pk": 17000, "fields": {"orig_filename": "Chorherr_Franz-Xaver_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417223}}, {"model": "metainfo.source", "pk": 17001, "fields": {"orig_filename": "Chorinsky_Karl_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1419882}}, {"model": "metainfo.source", "pk": 17002, "fields": {"orig_filename": "Chotek_Johann-Rud_1749_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417224}}, {"model": "metainfo.source", "pk": 17003, "fields": {"orig_filename": "Chotek_Karl_1783_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417225}}, {"model": "metainfo.source", "pk": 17004, "fields": {"orig_filename": "Chotek_Sophie_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417226}}, {"model": "metainfo.source", "pk": 17005, "fields": {"orig_filename": "Christ-Ehrenblueh_Josef_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417228}}, {"model": "metainfo.source", "pk": 17006, "fields": {"orig_filename": "Christel_Franz_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417229}}, {"model": "metainfo.source", "pk": 17007, "fields": {"orig_filename": "Christen_Wilhelm_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417231}}, {"model": "metainfo.source", "pk": 17008, "fields": {"orig_filename": "Christians_Mady_1896_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2167471}}, {"model": "metainfo.source", "pk": 17009, "fields": {"orig_filename": "Christomanos_Konstantin_1867_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417232}}, {"model": "metainfo.source", "pk": 17010, "fields": {"orig_filename": "Christomanos_Theodor_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417233}}, {"model": "metainfo.source", "pk": 17011, "fields": {"orig_filename": "Christ_Josef-Anton_1744_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417227}}, {"model": "metainfo.source", "pk": 17012, "fields": {"orig_filename": "Chrobak_Rudolf_1843_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417234}}, {"model": "metainfo.source", "pk": 17013, "fields": {"orig_filename": "Chroust_Anton_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147f.", "author": "", "orig_id": 1417235}}, {"model": "metainfo.source", "pk": 17014, "fields": {"orig_filename": "Chvostek_Franz_1835_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417236}}, {"model": "metainfo.source", "pk": 17015, "fields": {"orig_filename": "Chvostek_Franz_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417237}}, {"model": "metainfo.source", "pk": 17016, "fields": {"orig_filename": "Cicognara_Leopoldo_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417239}}, {"model": "metainfo.source", "pk": 17017, "fields": {"orig_filename": "Cicogna_Emanuele-Antonio_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417238}}, {"model": "metainfo.source", "pk": 17018, "fields": {"orig_filename": "Cikos-Sesija_Bela_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417240}}, {"model": "metainfo.source", "pk": 17019, "fields": {"orig_filename": "Cingr_Petr_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2173829}}, {"model": "metainfo.source", "pk": 17020, "fields": {"orig_filename": "Clary-Aldringen_Manfred_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417318}}, {"model": "metainfo.source", "pk": 17021, "fields": {"orig_filename": "Clar_Conrad_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1441329}}, {"model": "metainfo.source", "pk": 17022, "fields": {"orig_filename": "Clar_Franz_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1441328}}, {"model": "metainfo.source", "pk": 17023, "fields": {"orig_filename": "Clement_Franz_1780_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417321}}, {"model": "metainfo.source", "pk": 17024, "fields": {"orig_filename": "Coch_Georg-Theodor_1842_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1419881}}, {"model": "metainfo.source", "pk": 17025, "fields": {"orig_filename": "Coghetti_Francesco_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417322}}, {"model": "metainfo.source", "pk": 17026, "fields": {"orig_filename": "Cohn_Heinrich_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417323}}, {"model": "metainfo.source", "pk": 17027, "fields": {"orig_filename": "Cokor_Istvan_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417324}}, {"model": "metainfo.source", "pk": 17028, "fields": {"orig_filename": "Colard_Hermann_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417325}}, {"model": "metainfo.source", "pk": 17029, "fields": {"orig_filename": "Colerus-Geldern_Egmont_1888_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417326}}, {"model": "metainfo.source", "pk": 17030, "fields": {"orig_filename": "Colerus-Geldern_Emil_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417327}}, {"model": "metainfo.source", "pk": 17031, "fields": {"orig_filename": "Collenbach_Gabriel_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150f.", "author": "", "orig_id": 1417328}}, {"model": "metainfo.source", "pk": 17032, "fields": {"orig_filename": "Collery_Eduard_1790_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417329}}, {"model": "metainfo.source", "pk": 17033, "fields": {"orig_filename": "Collin_Matthaeus_1779_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417330}}, {"model": "metainfo.source", "pk": 17034, "fields": {"orig_filename": "Collmann_Alfred_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417331}}, {"model": "metainfo.source", "pk": 17035, "fields": {"orig_filename": "Colloredo-Mannsfeld_Ferdinand_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417332}}, {"model": "metainfo.source", "pk": 17036, "fields": {"orig_filename": "Colloredo-Mannsfeld_Hieronymus_1775_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417333}}, {"model": "metainfo.source", "pk": 17037, "fields": {"orig_filename": "Colloredo-Mels-Wallsee_Joseph_1735_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417334}}, {"model": "metainfo.source", "pk": 17038, "fields": {"orig_filename": "Colloredo-Mels-Wallsee_Wenzel-Joseph_1738_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417335}}, {"model": "metainfo.source", "pk": 17039, "fields": {"orig_filename": "Comerio_Agostino_1784_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417336}}, {"model": "metainfo.source", "pk": 17040, "fields": {"orig_filename": "Comolli_Giovanni-Battista_1775_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417337}}, {"model": "metainfo.source", "pk": 17041, "fields": {"orig_filename": "Conconi_Mauro_1815_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417338}}, {"model": "metainfo.source", "pk": 17042, "fields": {"orig_filename": "Conegliano_Emanuele_1749_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417339}}, {"model": "metainfo.source", "pk": 17043, "fields": {"orig_filename": "Conn_Leopold_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417412}}, {"model": "metainfo.source", "pk": 17044, "fields": {"orig_filename": "Conrad-Eybesfeld_Siegmund_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153", "author": "", "orig_id": 1417414}}, {"model": "metainfo.source", "pk": 17045, "fields": {"orig_filename": "Conrad-Hoetzendorf_Franz_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153", "author": "", "orig_id": 1417415}}, {"model": "metainfo.source", "pk": 17046, "fields": {"orig_filename": "Conrad_Otto_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152f.", "author": "", "orig_id": 1417413}}, {"model": "metainfo.source", "pk": 17047, "fields": {"orig_filename": "Cop_Matija_1797_1835.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417418}}, {"model": "metainfo.source", "pk": 17048, "fields": {"orig_filename": "Corda_August-Karl-Josef_1805_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154", "author": "", "orig_id": 1417419}}, {"model": "metainfo.source", "pk": 17049, "fields": {"orig_filename": "Coreth_Emerich_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154", "author": "", "orig_id": 1417420}}, {"model": "metainfo.source", "pk": 17050, "fields": {"orig_filename": "Cornelius_Hans-Peter_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154f.", "author": "", "orig_id": 1417421}}, {"model": "metainfo.source", "pk": 17051, "fields": {"orig_filename": "Cornet_Julius_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417422}}, {"model": "metainfo.source", "pk": 17052, "fields": {"orig_filename": "Cornova_Ignaz_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417423}}, {"model": "metainfo.source", "pk": 17053, "fields": {"orig_filename": "Coronini-Cronberg_Franz_1830_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417424}}, {"model": "metainfo.source", "pk": 17054, "fields": {"orig_filename": "Coronini-Cronberg_Johann-Baptist_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417425}}, {"model": "metainfo.source", "pk": 17055, "fields": {"orig_filename": "Coronini-Cronberg_Karl_1818_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417426}}, {"model": "metainfo.source", "pk": 17056, "fields": {"orig_filename": "Correr_Teodoro_1750_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417427}}, {"model": "metainfo.source", "pk": 17057, "fields": {"orig_filename": "Costa_Karl_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417428}}, {"model": "metainfo.source", "pk": 17058, "fields": {"orig_filename": "Costenoble_Johanna_1777_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417429}}, {"model": "metainfo.source", "pk": 17059, "fields": {"orig_filename": "Costenoble_Karl_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417430}}, {"model": "metainfo.source", "pk": 17060, "fields": {"orig_filename": "Coudenhove_Karl-Maria_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417432}}, {"model": "metainfo.source", "pk": 17061, "fields": {"orig_filename": "Coudenhove_Maximilian_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417433}}, {"model": "metainfo.source", "pk": 17062, "fields": {"orig_filename": "Coumont_Eduard_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417434}}, {"model": "metainfo.source", "pk": 17063, "fields": {"orig_filename": "Crivelli_Antonio_1783_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417435}}, {"model": "metainfo.source", "pk": 17064, "fields": {"orig_filename": "Crncic_Menci-Klement_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417505}}, {"model": "metainfo.source", "pk": 17065, "fields": {"orig_filename": "Cronbach_Else_1879_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156f.", "author": "", "orig_id": 1417506}}, {"model": "metainfo.source", "pk": 17066, "fields": {"orig_filename": "Crophius-Kaisersieg_Ludwig_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417507}}, {"model": "metainfo.source", "pk": 17067, "fields": {"orig_filename": "Cruewell_Gottlieb-August_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417508}}, {"model": "metainfo.source", "pk": 17068, "fields": {"orig_filename": "Crusius_Christian_1758_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417509}}, {"model": "metainfo.source", "pk": 17069, "fields": {"orig_filename": "Csanki_Deszoe_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417510}}, {"model": "metainfo.source", "pk": 17070, "fields": {"orig_filename": "Csaplovics-Jescenova_Johann_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417511}}, {"model": "metainfo.source", "pk": 17071, "fields": {"orig_filename": "Csemegi_Karl_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417512}}, {"model": "metainfo.source", "pk": 17072, "fields": {"orig_filename": "Csengery_Anton_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157f.", "author": "", "orig_id": 1417513}}, {"model": "metainfo.source", "pk": 17073, "fields": {"orig_filename": "Csermak_Anton_1771_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417514}}, {"model": "metainfo.source", "pk": 17074, "fields": {"orig_filename": "Csiky_Gregor_1842_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417515}}, {"model": "metainfo.source", "pk": 17075, "fields": {"orig_filename": "Csillag_Rosa_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417516}}, {"model": "metainfo.source", "pk": 17076, "fields": {"orig_filename": "Csivich-Rohr_Ignaz_1752_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417517}}, {"model": "metainfo.source", "pk": 17077, "fields": {"orig_filename": "Csokor_Franz-Theodor_1885_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438139}}, {"model": "metainfo.source", "pk": 17078, "fields": {"orig_filename": "Csok_Stephan_1865_1961.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417518}}, {"model": "metainfo.source", "pk": 17079, "fields": {"orig_filename": "Csonka_Janos_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1910690}}, {"model": "metainfo.source", "pk": 17080, "fields": {"orig_filename": "Csorich-Monte-Creto_Alexander-Franz_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417519}}, {"model": "metainfo.source", "pk": 17081, "fields": {"orig_filename": "Cuka_Jakov_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417521}}, {"model": "metainfo.source", "pk": 17082, "fields": {"orig_filename": "Culoz_Karl_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417522}}, {"model": "metainfo.source", "pk": 17083, "fields": {"orig_filename": "Cumberland_Ernst-August_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417523}}, {"model": "metainfo.source", "pk": 17084, "fields": {"orig_filename": "Cuntz_Otto_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417524}}, {"model": "metainfo.source", "pk": 17085, "fields": {"orig_filename": "Cupr_Frantisek_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417525}}, {"model": "metainfo.source", "pk": 17086, "fields": {"orig_filename": "Curinaldi_Alois_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417526}}, {"model": "metainfo.source", "pk": 17087, "fields": {"orig_filename": "Cuscoleca_Julius_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159f.", "author": "", "orig_id": 1417598}}, {"model": "metainfo.source", "pk": 17088, "fields": {"orig_filename": "Cuvaj_Anton_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417599}}, {"model": "metainfo.source", "pk": 17089, "fields": {"orig_filename": "Cvijic_Jovan_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417600}}, {"model": "metainfo.source", "pk": 17090, "fields": {"orig_filename": "Burrian_Karl_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419746}}, {"model": "metainfo.source", "pk": 17091, "fields": {"orig_filename": "Burstyn_Gunther_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419747}}, {"model": "metainfo.source", "pk": 17092, "fields": {"orig_filename": "Buschmann_Alfred_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419748}}, {"model": "metainfo.source", "pk": 17093, "fields": {"orig_filename": "Buschmann_Dina_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419749}}, {"model": "metainfo.source", "pk": 17094, "fields": {"orig_filename": "Buschmann_Gotthard_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130f.", "author": "", "orig_id": 1419750}}, {"model": "metainfo.source", "pk": 17095, "fields": {"orig_filename": "Busson_Arnold_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419751}}, {"model": "metainfo.source", "pk": 17096, "fields": {"orig_filename": "Busson_Paul_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419752}}, {"model": "metainfo.source", "pk": 17097, "fields": {"orig_filename": "Buttlar-Moscon_Alfred_1898_1972.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442839}}, {"model": "metainfo.source", "pk": 17098, "fields": {"orig_filename": "Buttlar_Auguste_1796_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419753}}, {"model": "metainfo.source", "pk": 17099, "fields": {"orig_filename": "Buwa_Johann_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419754}}, {"model": "metainfo.source", "pk": 17100, "fields": {"orig_filename": "Buzzi_Andreas_1779_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419799}}, {"model": "metainfo.source", "pk": 17101, "fields": {"orig_filename": "Bylandt-Rheidt_Artur-Maximilian_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131f.", "author": "", "orig_id": 1419801}}, {"model": "metainfo.source", "pk": 17102, "fields": {"orig_filename": "Bylandt-Rheidt_Artur_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419800}}, {"model": "metainfo.source", "pk": 17103, "fields": {"orig_filename": "Byloff_Fritz_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1419802}}, {"model": "metainfo.source", "pk": 17104, "fields": {"orig_filename": "Caboga_Bernhard_1785_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416758}}, {"model": "metainfo.source", "pk": 17105, "fields": {"orig_filename": "Cackovic_Miroslav_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416759}}, {"model": "metainfo.source", "pk": 17106, "fields": {"orig_filename": "Cada_Frantisek_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416760}}, {"model": "metainfo.source", "pk": 17107, "fields": {"orig_filename": "Cagnola_Luigi_1762_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132f.", "author": "", "orig_id": 1416762}}, {"model": "metainfo.source", "pk": 17108, "fields": {"orig_filename": "Cagnoni_Antonio_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416763}}, {"model": "metainfo.source", "pk": 17109, "fields": {"orig_filename": "Calafati_Theodor_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416764}}, {"model": "metainfo.source", "pk": 17110, "fields": {"orig_filename": "Calegari_Antonio_1757_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416765}}, {"model": "metainfo.source", "pk": 17111, "fields": {"orig_filename": "Calice_Heinrich_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416766}}, {"model": "metainfo.source", "pk": 17112, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Friedrich_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416767}}, {"model": "metainfo.source", "pk": 17113, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Guido_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416768}}, {"model": "metainfo.source", "pk": 17114, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Karl_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133f.", "author": "", "orig_id": 1416769}}, {"model": "metainfo.source", "pk": 17115, "fields": {"orig_filename": "Camesina_Albert_1806_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416770}}, {"model": "metainfo.source", "pk": 17116, "fields": {"orig_filename": "Campana-Spluegenberg_Anton_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416771}}, {"model": "metainfo.source", "pk": 17117, "fields": {"orig_filename": "Canal-Malabaila_Josef-Emanuel_1745_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416772}}, {"model": "metainfo.source", "pk": 17118, "fields": {"orig_filename": "Canal_Gilbert_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1419870}}, {"model": "metainfo.source", "pk": 17119, "fields": {"orig_filename": "Canaval_Michael-Franz_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416846}}, {"model": "metainfo.source", "pk": 17120, "fields": {"orig_filename": "Canaval_Richard_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416847}}, {"model": "metainfo.source", "pk": 17121, "fields": {"orig_filename": "Canciani_Alfonso_1863_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416848}}, {"model": "metainfo.source", "pk": 17122, "fields": {"orig_filename": "Canestrini_Giovanni_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416849}}, {"model": "metainfo.source", "pk": 17123, "fields": {"orig_filename": "Cankar_Ivan_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416850}}, {"model": "metainfo.source", "pk": 17124, "fields": {"orig_filename": "Canova_Antonio_1757_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416851}}, {"model": "metainfo.source", "pk": 17125, "fields": {"orig_filename": "Cantani_Arnaldo_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416852}}, {"model": "metainfo.source", "pk": 17126, "fields": {"orig_filename": "Cantor_Matthias_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135f.", "author": "", "orig_id": 1416853}}, {"model": "metainfo.source", "pk": 17127, "fields": {"orig_filename": "Cantu_Cesare_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416854}}, {"model": "metainfo.source", "pk": 17128, "fields": {"orig_filename": "Capek-Chod_Karel-Matej_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416856}}, {"model": "metainfo.source", "pk": 17129, "fields": {"orig_filename": "Capek_Karel_1890_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416855}}, {"model": "metainfo.source", "pk": 17130, "fields": {"orig_filename": "Capelari_Friedrich_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416857}}, {"model": "metainfo.source", "pk": 17131, "fields": {"orig_filename": "Capilleri_Wilhelm_1834_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416858}}, {"model": "metainfo.source", "pk": 17132, "fields": {"orig_filename": "Carabelli-Lunkaszprie_Georg_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416860}}, {"model": "metainfo.source", "pk": 17133, "fields": {"orig_filename": "Carcano_Giulio_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136f.", "author": "", "orig_id": 1416861}}, {"model": "metainfo.source", "pk": 17134, "fields": {"orig_filename": "Carlini_Francesco_1783_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416864}}, {"model": "metainfo.source", "pk": 17135, "fields": {"orig_filename": "Carneri_Bartholomaeus_1821_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416865}}, {"model": "metainfo.source", "pk": 17136, "fields": {"orig_filename": "Carrer_Luigi_1801_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416866}}, {"model": "metainfo.source", "pk": 17137, "fields": {"orig_filename": "Carro_Johann_1770_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416867}}, {"model": "metainfo.source", "pk": 17138, "fields": {"orig_filename": "Cartellieri_Wilhelm_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416868}}, {"model": "metainfo.source", "pk": 17139, "fields": {"orig_filename": "Car_Lazar_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416859}}, {"model": "metainfo.source", "pk": 17140, "fields": {"orig_filename": "Casati_Gabrio_1798_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416869}}, {"model": "metainfo.source", "pk": 17141, "fields": {"orig_filename": "Cassinone_Alexander_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137f.", "author": "", "orig_id": 1416870}}, {"model": "metainfo.source", "pk": 17142, "fields": {"orig_filename": "Castelli_Ignaz-Franz_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416871}}, {"model": "metainfo.source", "pk": 17143, "fields": {"orig_filename": "Castiglione_Johann_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416934}}, {"model": "metainfo.source", "pk": 17144, "fields": {"orig_filename": "Cathrein_Alois_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416935}}, {"model": "metainfo.source", "pk": 17145, "fields": {"orig_filename": "Catinelli_Maximilian_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416936}}, {"model": "metainfo.source", "pk": 17146, "fields": {"orig_filename": "Catty_Adolf_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416937}}, {"model": "metainfo.source", "pk": 17147, "fields": {"orig_filename": "Caucig_Franz_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138f.", "author": "", "orig_id": 1416938}}, {"model": "metainfo.source", "pk": 17148, "fields": {"orig_filename": "Cavar_Alfred_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416939}}, {"model": "metainfo.source", "pk": 17149, "fields": {"orig_filename": "Cazan_Dominik_1755_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416940}}, {"model": "metainfo.source", "pk": 17150, "fields": {"orig_filename": "Cebotari_Maria_1910_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416941}}, {"model": "metainfo.source", "pk": 17151, "fields": {"orig_filename": "Cech_Svatopluk_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416942}}, {"model": "metainfo.source", "pk": 17152, "fields": {"orig_filename": "Cegnar_Franz_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416943}}, {"model": "metainfo.source", "pk": 17153, "fields": {"orig_filename": "Ceipek_Josef_1844_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416944}}, {"model": "metainfo.source", "pk": 17154, "fields": {"orig_filename": "Celakovsky_Frantisek-Lad_1799_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139f.", "author": "", "orig_id": 1416945}}, {"model": "metainfo.source", "pk": 17155, "fields": {"orig_filename": "Celestin_Franz_1843_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416948}}, {"model": "metainfo.source", "pk": 17156, "fields": {"orig_filename": "Cermak_Wilhelm_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416949}}, {"model": "metainfo.source", "pk": 17157, "fields": {"orig_filename": "Cerny_Thomas_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416950}}, {"model": "metainfo.source", "pk": 17158, "fields": {"orig_filename": "Cerri_Caecilie_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416951}}, {"model": "metainfo.source", "pk": 17159, "fields": {"orig_filename": "Cerri_Cajetan_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140f.", "author": "", "orig_id": 1416952}}, {"model": "metainfo.source", "pk": 17160, "fields": {"orig_filename": "Cesari_Antonio_1760_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416954}}, {"model": "metainfo.source", "pk": 17161, "fields": {"orig_filename": "Cevapovic_Gregor_1786_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416955}}, {"model": "metainfo.source", "pk": 17162, "fields": {"orig_filename": "Chadt_Josef_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416956}}, {"model": "metainfo.source", "pk": 17163, "fields": {"orig_filename": "Chajes_Hirsch-Perez_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416957}}, {"model": "metainfo.source", "pk": 17164, "fields": {"orig_filename": "Chalupka_Samo_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417028}}, {"model": "metainfo.source", "pk": 17165, "fields": {"orig_filename": "Chasteler-Courcelles_Johann-Gabriel_1763_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141f.", "author": "", "orig_id": 1417031}}, {"model": "metainfo.source", "pk": 17166, "fields": {"orig_filename": "Chavanne_Irene_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417032}}, {"model": "metainfo.source", "pk": 17167, "fields": {"orig_filename": "Chavanne_Josef_1846_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417033}}, {"model": "metainfo.source", "pk": 17168, "fields": {"orig_filename": "Chezy_Wilhelm-Theodor_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417034}}, {"model": "metainfo.source", "pk": 17169, "fields": {"orig_filename": "Chiari_Arthur_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417035}}, {"model": "metainfo.source", "pk": 17170, "fields": {"orig_filename": "Chiari_Hans_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417036}}, {"model": "metainfo.source", "pk": 17171, "fields": {"orig_filename": "Chiari_Johann-Bapt_1817_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417037}}, {"model": "metainfo.source", "pk": 17172, "fields": {"orig_filename": "Chiari_Josef_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417038}}, {"model": "metainfo.source", "pk": 17173, "fields": {"orig_filename": "Chiari_Karl_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142f.", "author": "", "orig_id": 1417039}}, {"model": "metainfo.source", "pk": 17174, "fields": {"orig_filename": "Chiari_Max_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417040}}, {"model": "metainfo.source", "pk": 17175, "fields": {"orig_filename": "Chiari_Ottokar_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417041}}, {"model": "metainfo.source", "pk": 17176, "fields": {"orig_filename": "Chiavacci_Vinzenz_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417042}}, {"model": "metainfo.source", "pk": 17177, "fields": {"orig_filename": "Chimani-Mannberg_Anton_1768_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417135}}, {"model": "metainfo.source", "pk": 17178, "fields": {"orig_filename": "Chimani_Leopold_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417134}}, {"model": "metainfo.source", "pk": 17179, "fields": {"orig_filename": "Chiolich-Loewensberg_Hermann_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417136}}, {"model": "metainfo.source", "pk": 17180, "fields": {"orig_filename": "Chittussi_Anton_1847_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417137}}, {"model": "metainfo.source", "pk": 17181, "fields": {"orig_filename": "Chledowski_Kasimir_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417138}}, {"model": "metainfo.source", "pk": 17182, "fields": {"orig_filename": "Chlumecky_Johann_1834_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417141}}, {"model": "metainfo.source", "pk": 17183, "fields": {"orig_filename": "Chlumecky_Leopold_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144f.", "author": "", "orig_id": 1417142}}, {"model": "metainfo.source", "pk": 17184, "fields": {"orig_filename": "Chlumecky_Peter_1825_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417143}}, {"model": "metainfo.source", "pk": 17185, "fields": {"orig_filename": "Chmelarz_Eduard_1847_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417218}}, {"model": "metainfo.source", "pk": 17186, "fields": {"orig_filename": "Chmelensky_Josef-Krasoslav_1800_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145f.", "author": "", "orig_id": 1417219}}, {"model": "metainfo.source", "pk": 17187, "fields": {"orig_filename": "Brik_Johann-Emanuel_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420549}}, {"model": "metainfo.source", "pk": 17188, "fields": {"orig_filename": "Brioschi_Anton_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420550}}, {"model": "metainfo.source", "pk": 17189, "fields": {"orig_filename": "Brioschi_Francesco_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420551}}, {"model": "metainfo.source", "pk": 17190, "fields": {"orig_filename": "Brioschi_Karl_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420552}}, {"model": "metainfo.source", "pk": 17191, "fields": {"orig_filename": "Brioschi_Othmar_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420553}}, {"model": "metainfo.source", "pk": 17192, "fields": {"orig_filename": "Brlic-Mazuranic_Ivana_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420556}}, {"model": "metainfo.source", "pk": 17193, "fields": {"orig_filename": "Brlic_Andrija-Torkvat_1826_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420554}}, {"model": "metainfo.source", "pk": 17194, "fields": {"orig_filename": "Brlic_Ignjat-Alojzije_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420555}}, {"model": "metainfo.source", "pk": 17195, "fields": {"orig_filename": "Brociner_Marco_1852_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420557}}, {"model": "metainfo.source", "pk": 17196, "fields": {"orig_filename": "Brocky_Karl_1807_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420558}}, {"model": "metainfo.source", "pk": 17197, "fields": {"orig_filename": "Broda_Rudolf_1880_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420559}}, {"model": "metainfo.source", "pk": 17198, "fields": {"orig_filename": "Brody_Alexander_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115f.", "author": "", "orig_id": 1420560}}, {"model": "metainfo.source", "pk": 17199, "fields": {"orig_filename": "Brodzinski_Kazimierz_1791_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420605}}, {"model": "metainfo.source", "pk": 17200, "fields": {"orig_filename": "Bronner_Ferdinand_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420606}}, {"model": "metainfo.source", "pk": 17201, "fields": {"orig_filename": "Brosch-Aarenau_Alexander_1870_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420608}}, {"model": "metainfo.source", "pk": 17202, "fields": {"orig_filename": "Brosch-Aarenau_Theodor_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116f.", "author": "", "orig_id": 1420609}}, {"model": "metainfo.source", "pk": 17203, "fields": {"orig_filename": "Brosch_Moritz_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420607}}, {"model": "metainfo.source", "pk": 17204, "fields": {"orig_filename": "Brotanek_Rudolf_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420610}}, {"model": "metainfo.source", "pk": 17205, "fields": {"orig_filename": "Brozik_Wenzel_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420611}}, {"model": "metainfo.source", "pk": 17206, "fields": {"orig_filename": "Bruckner_Anton_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420615}}, {"model": "metainfo.source", "pk": 17207, "fields": {"orig_filename": "Bruckner_Ferdinand_1891_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422506}}, {"model": "metainfo.source", "pk": 17208, "fields": {"orig_filename": "Bruck_Karl-Ludwig_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420613}}, {"model": "metainfo.source", "pk": 17209, "fields": {"orig_filename": "Bruech_Oskar_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420616}}, {"model": "metainfo.source", "pk": 17210, "fields": {"orig_filename": "Bruecke_Ernst-Theodor_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420618}}, {"model": "metainfo.source", "pk": 17211, "fields": {"orig_filename": "Bruecke_Ernst-Wilhelm_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420617}}, {"model": "metainfo.source", "pk": 17212, "fields": {"orig_filename": "Brueckner_Alexander_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119f.", "author": "", "orig_id": 1420619}}, {"model": "metainfo.source", "pk": 17213, "fields": {"orig_filename": "Brueckner_Eduard_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420620}}, {"model": "metainfo.source", "pk": 17214, "fields": {"orig_filename": "Bruehl_Karl-Bernhard_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420621}}, {"model": "metainfo.source", "pk": 17215, "fields": {"orig_filename": "Bruell_Ignaz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420622}}, {"model": "metainfo.source", "pk": 17216, "fields": {"orig_filename": "Bruerovic_Marko_1770_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420623}}, {"model": "metainfo.source", "pk": 17217, "fields": {"orig_filename": "Brumowski_Godwin_1889_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420352}}, {"model": "metainfo.source", "pk": 17218, "fields": {"orig_filename": "Brunetti-Pisano_August_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420624}}, {"model": "metainfo.source", "pk": 17219, "fields": {"orig_filename": "Brunlechner_August_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420625}}, {"model": "metainfo.source", "pk": 17220, "fields": {"orig_filename": "Brunmeyer_Andreas_1762_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420626}}, {"model": "metainfo.source", "pk": 17221, "fields": {"orig_filename": "Brunnenmeister_Emil_1854_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420627}}, {"model": "metainfo.source", "pk": 17222, "fields": {"orig_filename": "Brunner_Armin_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420628}}, {"model": "metainfo.source", "pk": 17223, "fields": {"orig_filename": "Brunner_Heinrich_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1419618}}, {"model": "metainfo.source", "pk": 17224, "fields": {"orig_filename": "Brunner_Moritz_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1419619}}, {"model": "metainfo.source", "pk": 17225, "fields": {"orig_filename": "Brunner_Sebastian_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121f.", "author": "", "orig_id": 1419620}}, {"model": "metainfo.source", "pk": 17226, "fields": {"orig_filename": "Brunner_Vratislav_1886_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419621}}, {"model": "metainfo.source", "pk": 17227, "fields": {"orig_filename": "Brunsmid_Josef_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419622}}, {"model": "metainfo.source", "pk": 17228, "fields": {"orig_filename": "Brunsvick_Therese_1775_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419623}}, {"model": "metainfo.source", "pk": 17229, "fields": {"orig_filename": "Bruzek_Anton_1915_2003.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1994566}}, {"model": "metainfo.source", "pk": 17230, "fields": {"orig_filename": "Bryk_Philipp_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419624}}, {"model": "metainfo.source", "pk": 17231, "fields": {"orig_filename": "Bubak_Franz_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1420334}}, {"model": "metainfo.source", "pk": 17232, "fields": {"orig_filename": "Bubna-Littitz_Ferdinand_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1420335}}, {"model": "metainfo.source", "pk": 17233, "fields": {"orig_filename": "Buchbinder_Bernhard_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419625}}, {"model": "metainfo.source", "pk": 17234, "fields": {"orig_filename": "Bucher_Bruno_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419626}}, {"model": "metainfo.source", "pk": 17235, "fields": {"orig_filename": "Buchholtz_Franz-Bernhard_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419627}}, {"model": "metainfo.source", "pk": 17236, "fields": {"orig_filename": "Buchmayer_Anton-Alois_1770_1851.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419629}}, {"model": "metainfo.source", "pk": 17237, "fields": {"orig_filename": "Buchowiecki_Josef_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419630}}, {"model": "metainfo.source", "pk": 17238, "fields": {"orig_filename": "Buchta_Richard_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419631}}, {"model": "metainfo.source", "pk": 17239, "fields": {"orig_filename": "Buchwald_Salomon_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2093311}}, {"model": "metainfo.source", "pk": 17240, "fields": {"orig_filename": "Buconjic_Paskal_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419632}}, {"model": "metainfo.source", "pk": 17241, "fields": {"orig_filename": "Budau_Artur_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123f.", "author": "", "orig_id": 1419633}}, {"model": "metainfo.source", "pk": 17242, "fields": {"orig_filename": "Buday-Bator_Ignaz_1764_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419634}}, {"model": "metainfo.source", "pk": 17243, "fields": {"orig_filename": "Budenz_Josef_1836_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419635}}, {"model": "metainfo.source", "pk": 17244, "fields": {"orig_filename": "Bude_Leopold_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1420511}}, {"model": "metainfo.source", "pk": 17245, "fields": {"orig_filename": "Budik_Peter_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419636}}, {"model": "metainfo.source", "pk": 17246, "fields": {"orig_filename": "Budinszky_Alexander_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419675}}, {"model": "metainfo.source", "pk": 17247, "fields": {"orig_filename": "Budmani_Pero_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419676}}, {"model": "metainfo.source", "pk": 17248, "fields": {"orig_filename": "Bueche_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419677}}, {"model": "metainfo.source", "pk": 17249, "fields": {"orig_filename": "Buedinger_Max_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124f.", "author": "", "orig_id": 1419678}}, {"model": "metainfo.source", "pk": 17250, "fields": {"orig_filename": "Buehler_Georg_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419679}}, {"model": "metainfo.source", "pk": 17251, "fields": {"orig_filename": "Buelow-Wendhausen_Paula_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419680}}, {"model": "metainfo.source", "pk": 17252, "fields": {"orig_filename": "Bueltemeyer_Heinrich_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419681}}, {"model": "metainfo.source", "pk": 17253, "fields": {"orig_filename": "Buenker_Johann-Reinhard_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419682}}, {"model": "metainfo.source", "pk": 17254, "fields": {"orig_filename": "Buerde-Ney_Jenny_1824_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419683}}, {"model": "metainfo.source", "pk": 17255, "fields": {"orig_filename": "Buerg_Johann-Tobias_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125f.", "author": "", "orig_id": 1419684}}, {"model": "metainfo.source", "pk": 17256, "fields": {"orig_filename": "Bukovac_Vlaho_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419685}}, {"model": "metainfo.source", "pk": 17257, "fields": {"orig_filename": "Bukovics-Kis-Alacska_Emmerich_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419686}}, {"model": "metainfo.source", "pk": 17258, "fields": {"orig_filename": "Bukovics-Kis-Alacska_Karl_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419869}}, {"model": "metainfo.source", "pk": 17259, "fields": {"orig_filename": "Bukowski-Stolzenburg_Gejza_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2005227}}, {"model": "metainfo.source", "pk": 17260, "fields": {"orig_filename": "Bulat_Gajo_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419687}}, {"model": "metainfo.source", "pk": 17261, "fields": {"orig_filename": "Bulic_Frane_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419688}}, {"model": "metainfo.source", "pk": 17262, "fields": {"orig_filename": "Buol-Bernburg_Marie_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126f.", "author": "", "orig_id": 1419689}}, {"model": "metainfo.source", "pk": 17263, "fields": {"orig_filename": "Buol-Schauenstein_Johann-Rud_1763_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419690}}, {"model": "metainfo.source", "pk": 17264, "fields": {"orig_filename": "Buol-Schauenstein_Karl-Ferdinand_1797_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419691}}, {"model": "metainfo.source", "pk": 17265, "fields": {"orig_filename": "Buquoi-Longueval_Georg-Franz-August_1781_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419692}}, {"model": "metainfo.source", "pk": 17266, "fields": {"orig_filename": "Buquoy_Ferdinand_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420633}}, {"model": "metainfo.source", "pk": 17267, "fields": {"orig_filename": "Buratovich_Ivan-Santiago_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419693}}, {"model": "metainfo.source", "pk": 17268, "fields": {"orig_filename": "Burckhardt_Max-Eugen_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419694}}, {"model": "metainfo.source", "pk": 17269, "fields": {"orig_filename": "Burde_Johann-Karl_1744_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127f.", "author": "", "orig_id": 1419695}}, {"model": "metainfo.source", "pk": 17270, "fields": {"orig_filename": "Burde_Josef-Karl_1779_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419731}}, {"model": "metainfo.source", "pk": 17271, "fields": {"orig_filename": "Buresch_Karl_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1415797}}, {"model": "metainfo.source", "pk": 17272, "fields": {"orig_filename": "Burgauner_Johann_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419735}}, {"model": "metainfo.source", "pk": 17273, "fields": {"orig_filename": "Burger_Franz_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419736}}, {"model": "metainfo.source", "pk": 17274, "fields": {"orig_filename": "Burger_Friedrich-Moritz_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128f.", "author": "", "orig_id": 1419738}}, {"model": "metainfo.source", "pk": 17275, "fields": {"orig_filename": "Burger_Johann_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419739}}, {"model": "metainfo.source", "pk": 17276, "fields": {"orig_filename": "Burger_Leopold_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419740}}, {"model": "metainfo.source", "pk": 17277, "fields": {"orig_filename": "Burger_Max_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420639}}, {"model": "metainfo.source", "pk": 17278, "fields": {"orig_filename": "Burger_Wilhelm-J_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1420640}}, {"model": "metainfo.source", "pk": 17279, "fields": {"orig_filename": "Burghart_Hermann_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419741}}, {"model": "metainfo.source", "pk": 17280, "fields": {"orig_filename": "Burghauser_Wolfgang_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419742}}, {"model": "metainfo.source", "pk": 17281, "fields": {"orig_filename": "Burg_Adam_1797_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419732}}, {"model": "metainfo.source", "pk": 17282, "fields": {"orig_filename": "Burg_Anton_1767_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419733}}, {"model": "metainfo.source", "pk": 17283, "fields": {"orig_filename": "Burg_Ferdinand_1868_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419734}}, {"model": "metainfo.source", "pk": 17284, "fields": {"orig_filename": "Burian-Rajecz_Stefan_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419743}}, {"model": "metainfo.source", "pk": 17285, "fields": {"orig_filename": "Burits-Pournay_Johann_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129f.", "author": "", "orig_id": 1419744}}, {"model": "metainfo.source", "pk": 17286, "fields": {"orig_filename": "Burjan_Hildegard_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419745}}, {"model": "metainfo.source", "pk": 17287, "fields": {"orig_filename": "Bolyai-Bolya_Johann_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420323}}, {"model": "metainfo.source", "pk": 17288, "fields": {"orig_filename": "Bolyai-Bolya_Wolfgang_1775_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420324}}, {"model": "metainfo.source", "pk": 17289, "fields": {"orig_filename": "Bolzano_Bernhard_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100f.", "author": "", "orig_id": 1421395}}, {"model": "metainfo.source", "pk": 17290, "fields": {"orig_filename": "Bolza_Eugenie_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420325}}, {"model": "metainfo.source", "pk": 17291, "fields": {"orig_filename": "Bombelles_Karl-Albert_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420326}}, {"model": "metainfo.source", "pk": 17292, "fields": {"orig_filename": "Bombelles_Ludwig-Philipp_1780_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420327}}, {"model": "metainfo.source", "pk": 17293, "fields": {"orig_filename": "Bondi_Emanuel_1820_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1421876}}, {"model": "metainfo.source", "pk": 17294, "fields": {"orig_filename": "Bondi_Gustav_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1462462}}, {"model": "metainfo.source", "pk": 17295, "fields": {"orig_filename": "Bondy_Ottilie_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420328}}, {"model": "metainfo.source", "pk": 17296, "fields": {"orig_filename": "Bonelli_Karl_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420329}}, {"model": "metainfo.source", "pk": 17297, "fields": {"orig_filename": "Bonitz_Hermann_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101f.", "author": "", "orig_id": 1420330}}, {"model": "metainfo.source", "pk": 17298, "fields": {"orig_filename": "Bonn_Ferdinand_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1421883}}, {"model": "metainfo.source", "pk": 17299, "fields": {"orig_filename": "Boos_Franz_1753_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420331}}, {"model": "metainfo.source", "pk": 17300, "fields": {"orig_filename": "Bordoni_Antonio_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420332}}, {"model": "metainfo.source", "pk": 17301, "fields": {"orig_filename": "Boricky_Emanuel_1840_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420333}}, {"model": "metainfo.source", "pk": 17302, "fields": {"orig_filename": "Borkowski_Karl_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1421644}}, {"model": "metainfo.source", "pk": 17303, "fields": {"orig_filename": "Bormann_Eugen_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102f.", "author": "", "orig_id": 1421732}}, {"model": "metainfo.source", "pk": 17304, "fields": {"orig_filename": "Borochow_Leo_1881_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420336}}, {"model": "metainfo.source", "pk": 17305, "fields": {"orig_filename": "Boroevic-Bojna_Svetozar_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1421736}}, {"model": "metainfo.source", "pk": 17306, "fields": {"orig_filename": "Borsos_Josef_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420337}}, {"model": "metainfo.source", "pk": 17307, "fields": {"orig_filename": "Bor_Jan_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2059532}}, {"model": "metainfo.source", "pk": 17308, "fields": {"orig_filename": "Boschek_Anna_1874_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1416154}}, {"model": "metainfo.source", "pk": 17309, "fields": {"orig_filename": "Boschetti_Viktor_1871_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1422136}}, {"model": "metainfo.source", "pk": 17310, "fields": {"orig_filename": "Bosetti_Hermine_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420338}}, {"model": "metainfo.source", "pk": 17311, "fields": {"orig_filename": "Bosshart-Demergel_Marie_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1422141}}, {"model": "metainfo.source", "pk": 17312, "fields": {"orig_filename": "Bossler_Marie_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103f.", "author": "", "orig_id": 1420725}}, {"model": "metainfo.source", "pk": 17313, "fields": {"orig_filename": "Botgorschek_Karoline_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420339}}, {"model": "metainfo.source", "pk": 17314, "fields": {"orig_filename": "Botic_Luka_1830_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420729}}, {"model": "metainfo.source", "pk": 17315, "fields": {"orig_filename": "Botstiber_Hugo_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420727}}, {"model": "metainfo.source", "pk": 17316, "fields": {"orig_filename": "Boue_Ami_1794_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420393}}, {"model": "metainfo.source", "pk": 17317, "fields": {"orig_filename": "Bourguignon-Baumberg_Anton_1766_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420394}}, {"model": "metainfo.source", "pk": 17318, "fields": {"orig_filename": "Bowitsch_Ludwig_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420395}}, {"model": "metainfo.source", "pk": 17319, "fields": {"orig_filename": "Boxberg_Ernst_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420396}}, {"model": "metainfo.source", "pk": 17320, "fields": {"orig_filename": "Bozdech_Emanuel_1841_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420397}}, {"model": "metainfo.source", "pk": 17321, "fields": {"orig_filename": "Bozek_Josef_1782_1835.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1910665}}, {"model": "metainfo.source", "pk": 17322, "fields": {"orig_filename": "Bozek_Romuald_1814_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1461303}}, {"model": "metainfo.source", "pk": 17323, "fields": {"orig_filename": "Brabee_Ewald_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104f.", "author": "", "orig_id": 1420819}}, {"model": "metainfo.source", "pk": 17324, "fields": {"orig_filename": "Brachelli_Hugo-Franz_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420398}}, {"model": "metainfo.source", "pk": 17325, "fields": {"orig_filename": "Bradaczek_Max_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420399}}, {"model": "metainfo.source", "pk": 17326, "fields": {"orig_filename": "Bradsky_Wenzel-Theodor_1833_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420400}}, {"model": "metainfo.source", "pk": 17327, "fields": {"orig_filename": "Brady_Thomas_1752_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420401}}, {"model": "metainfo.source", "pk": 17328, "fields": {"orig_filename": "Braf_Albin_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420402}}, {"model": "metainfo.source", "pk": 17329, "fields": {"orig_filename": "Brahms_Johannes_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105f.", "author": "", "orig_id": 1420403}}, {"model": "metainfo.source", "pk": 17330, "fields": {"orig_filename": "Brakl_Franz-Josef_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106", "author": "", "orig_id": 1420404}}, {"model": "metainfo.source", "pk": 17331, "fields": {"orig_filename": "Brandeis_Friedrich_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106f.", "author": "", "orig_id": 1420405}}, {"model": "metainfo.source", "pk": 17332, "fields": {"orig_filename": "Brandis_Clemens-Franz_1798_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420406}}, {"model": "metainfo.source", "pk": 17333, "fields": {"orig_filename": "Brandis_Otto_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420407}}, {"model": "metainfo.source", "pk": 17334, "fields": {"orig_filename": "Brandl_Alois_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420408}}, {"model": "metainfo.source", "pk": 17335, "fields": {"orig_filename": "Brandl_Leopold_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1405543}}, {"model": "metainfo.source", "pk": 17336, "fields": {"orig_filename": "Brandl_Vinzenz_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420409}}, {"model": "metainfo.source", "pk": 17337, "fields": {"orig_filename": "Brandner_Konrad_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419872}}, {"model": "metainfo.source", "pk": 17338, "fields": {"orig_filename": "Brandstetter_Hans_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1411019}}, {"model": "metainfo.source", "pk": 17339, "fields": {"orig_filename": "Brandt_Marianne_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107f.", "author": "", "orig_id": 1420411}}, {"model": "metainfo.source", "pk": 17340, "fields": {"orig_filename": "Brand_Michael_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106", "author": "", "orig_id": 1419868}}, {"model": "metainfo.source", "pk": 17341, "fields": {"orig_filename": "Brassloff_Stephan_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1888623}}, {"model": "metainfo.source", "pk": 17342, "fields": {"orig_filename": "Brauer_Friedrich-Moritz_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420412}}, {"model": "metainfo.source", "pk": 17343, "fields": {"orig_filename": "Braumueller_Wilhelm_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420413}}, {"model": "metainfo.source", "pk": 17344, "fields": {"orig_filename": "Braun-Braunthal_Karl-Johann_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108f.", "author": "", "orig_id": 1420468}}, {"model": "metainfo.source", "pk": 17345, "fields": {"orig_filename": "Braun-Fernwald_Karl_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420469}}, {"model": "metainfo.source", "pk": 17346, "fields": {"orig_filename": "Brauner_Franz-August_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420471}}, {"model": "metainfo.source", "pk": 17347, "fields": {"orig_filename": "Braune_Franz-Anton_1766_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420470}}, {"model": "metainfo.source", "pk": 17348, "fields": {"orig_filename": "Braunhofer_Anton-Georg_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162336}}, {"model": "metainfo.source", "pk": 17349, "fields": {"orig_filename": "Braun_Adolph_1819_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420414}}, {"model": "metainfo.source", "pk": 17350, "fields": {"orig_filename": "Braun_Gustav_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420415}}, {"model": "metainfo.source", "pk": 17351, "fields": {"orig_filename": "Braun_Ludwig_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419952}}, {"model": "metainfo.source", "pk": 17352, "fields": {"orig_filename": "Braun_Peter_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420466}}, {"model": "metainfo.source", "pk": 17353, "fields": {"orig_filename": "Braun_Theodor_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420467}}, {"model": "metainfo.source", "pk": 17354, "fields": {"orig_filename": "Brausewetter_Viktor_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420472}}, {"model": "metainfo.source", "pk": 17355, "fields": {"orig_filename": "Brdlik_Karl_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420473}}, {"model": "metainfo.source", "pk": 17356, "fields": {"orig_filename": "Brecht_Walther_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109f.", "author": "", "orig_id": 1420474}}, {"model": "metainfo.source", "pk": 17357, "fields": {"orig_filename": "Breden_Christiane_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420476}}, {"model": "metainfo.source", "pk": 17358, "fields": {"orig_filename": "Brede_Auguste_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420475}}, {"model": "metainfo.source", "pk": 17359, "fields": {"orig_filename": "Bree_Malvine_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420477}}, {"model": "metainfo.source", "pk": 17360, "fields": {"orig_filename": "Breidler_Johann_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2058108}}, {"model": "metainfo.source", "pk": 17361, "fields": {"orig_filename": "Breidwieser_Theodor_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420478}}, {"model": "metainfo.source", "pk": 17362, "fields": {"orig_filename": "Breisach_Wilhelm_1812_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420479}}, {"model": "metainfo.source", "pk": 17363, "fields": {"orig_filename": "Breisky_August_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420480}}, {"model": "metainfo.source", "pk": 17364, "fields": {"orig_filename": "Breisky_Walter_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110f.", "author": "", "orig_id": 1420481}}, {"model": "metainfo.source", "pk": 17365, "fields": {"orig_filename": "Breitenlohner_Jakob_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420483}}, {"model": "metainfo.source", "pk": 17366, "fields": {"orig_filename": "Breithaupt_Wilhelm_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420484}}, {"model": "metainfo.source", "pk": 17367, "fields": {"orig_filename": "Breitner_Anton_1858_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420485}}, {"model": "metainfo.source", "pk": 17368, "fields": {"orig_filename": "Breitner_Hugo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420486}}, {"model": "metainfo.source", "pk": 17369, "fields": {"orig_filename": "Breitner_Josef_1864_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1421080}}, {"model": "metainfo.source", "pk": 17370, "fields": {"orig_filename": "Breit_Franz_1827_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420482}}, {"model": "metainfo.source", "pk": 17371, "fields": {"orig_filename": "Brejc_Janko_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2156144}}, {"model": "metainfo.source", "pk": 17372, "fields": {"orig_filename": "Brell_Heinrich_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111f.", "author": "", "orig_id": 1420487}}, {"model": "metainfo.source", "pk": 17373, "fields": {"orig_filename": "Bremser_Johann_1767_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420488}}, {"model": "metainfo.source", "pk": 17374, "fields": {"orig_filename": "Brenek_Anton_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420118}}, {"model": "metainfo.source", "pk": 17375, "fields": {"orig_filename": "Brenner-Felsach_Ignaz_1772_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420538}}, {"model": "metainfo.source", "pk": 17376, "fields": {"orig_filename": "Brenner_Adam_1800_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420490}}, {"model": "metainfo.source", "pk": 17377, "fields": {"orig_filename": "Brenner_Anton_1896_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444231}}, {"model": "metainfo.source", "pk": 17378, "fields": {"orig_filename": "Brentano_Franz_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420539}}, {"model": "metainfo.source", "pk": 17379, "fields": {"orig_filename": "Bresadola_Giacomo_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2), S. 112f.", "author": "", "orig_id": 1895501}}, {"model": "metainfo.source", "pk": 17380, "fields": {"orig_filename": "Brestel_Rudolf_1816_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420541}}, {"model": "metainfo.source", "pk": 17381, "fields": {"orig_filename": "Bretholz_Berthold_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420542}}, {"model": "metainfo.source", "pk": 17382, "fields": {"orig_filename": "Bretschneider_Artur_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1464994}}, {"model": "metainfo.source", "pk": 17383, "fields": {"orig_filename": "Bretschneider_Friedrich_1770_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420543}}, {"model": "metainfo.source", "pk": 17384, "fields": {"orig_filename": "Brettauer_Josef_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420544}}, {"model": "metainfo.source", "pk": 17385, "fields": {"orig_filename": "Breuer_Georg_1907_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2057464}}, {"model": "metainfo.source", "pk": 17386, "fields": {"orig_filename": "Breuer_Josef_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113f.", "author": "", "orig_id": 1420545}}, {"model": "metainfo.source", "pk": 17387, "fields": {"orig_filename": "Breuer_Katharina_1883_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1469458}}, {"model": "metainfo.source", "pk": 17388, "fields": {"orig_filename": "Brevillier_Ludwig_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420546}}, {"model": "metainfo.source", "pk": 17389, "fields": {"orig_filename": "Breymann_Karl_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420547}}, {"model": "metainfo.source", "pk": 17390, "fields": {"orig_filename": "Brezina_Otokar_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420548}}, {"model": "metainfo.source", "pk": 17391, "fields": {"orig_filename": "Bischof_Marie_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420160}}, {"model": "metainfo.source", "pk": 17392, "fields": {"orig_filename": "Bissingen-Nippenburg_Ferdinand-Ernst-Maria_1749_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420163}}, {"model": "metainfo.source", "pk": 17393, "fields": {"orig_filename": "Bitterl-Tessenberg_Maximilian_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420162}}, {"model": "metainfo.source", "pk": 17394, "fields": {"orig_filename": "Bitterlich_Eduard_1833_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420161}}, {"model": "metainfo.source", "pk": 17395, "fields": {"orig_filename": "Bitterlich_Hans_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419464}}, {"model": "metainfo.source", "pk": 17396, "fields": {"orig_filename": "Bittner_Adam_1777_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420164}}, {"model": "metainfo.source", "pk": 17397, "fields": {"orig_filename": "Bittner_Alexander_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420165}}, {"model": "metainfo.source", "pk": 17398, "fields": {"orig_filename": "Bittner_Anton_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419465}}, {"model": "metainfo.source", "pk": 17399, "fields": {"orig_filename": "Bittner_Franz_1867_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88f.", "author": "", "orig_id": 1420166}}, {"model": "metainfo.source", "pk": 17400, "fields": {"orig_filename": "Bittner_Josef_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162607}}, {"model": "metainfo.source", "pk": 17401, "fields": {"orig_filename": "Bittner_Julius_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1419467}}, {"model": "metainfo.source", "pk": 17402, "fields": {"orig_filename": "Bittner_Karl_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1419468}}, {"model": "metainfo.source", "pk": 17403, "fields": {"orig_filename": "Bittner_Ludwig_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1420167}}, {"model": "metainfo.source", "pk": 17404, "fields": {"orig_filename": "Bittner_Maximilian_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89f.", "author": "", "orig_id": 1420168}}, {"model": "metainfo.source", "pk": 17405, "fields": {"orig_filename": "Bizonfy_Franz_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1419570}}, {"model": "metainfo.source", "pk": 17406, "fields": {"orig_filename": "Bizzarro_Paolo_1813_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420169}}, {"model": "metainfo.source", "pk": 17407, "fields": {"orig_filename": "Bjelik_Emmerich_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1418174}}, {"model": "metainfo.source", "pk": 17408, "fields": {"orig_filename": "Blaas_Eugen_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420170}}, {"model": "metainfo.source", "pk": 17409, "fields": {"orig_filename": "Blaas_Josef_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1418177}}, {"model": "metainfo.source", "pk": 17410, "fields": {"orig_filename": "Blaas_Julius_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420171}}, {"model": "metainfo.source", "pk": 17411, "fields": {"orig_filename": "Blaas_Karl_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90f.", "author": "", "orig_id": 1418178}}, {"model": "metainfo.source", "pk": 17412, "fields": {"orig_filename": "Blagoevich_Emmerich_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420172}}, {"model": "metainfo.source", "pk": 17413, "fields": {"orig_filename": "Blahak_Josef_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420174}}, {"model": "metainfo.source", "pk": 17414, "fields": {"orig_filename": "Blaha_Luise_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420173}}, {"model": "metainfo.source", "pk": 17415, "fields": {"orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418730}}, {"model": "metainfo.source", "pk": 17416, "fields": {"orig_filename": "Blamauer_Adolf-Albin_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418732}}, {"model": "metainfo.source", "pk": 17417, "fields": {"orig_filename": "Blank_Johann-Konrad_1757_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418812}}, {"model": "metainfo.source", "pk": 17418, "fields": {"orig_filename": "Blaschke-Zwernikkirchen_Philipp_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420175}}, {"model": "metainfo.source", "pk": 17419, "fields": {"orig_filename": "Blasel_Karl_1831_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91f.", "author": "", "orig_id": 1418733}}, {"model": "metainfo.source", "pk": 17420, "fields": {"orig_filename": "Blaskovics_Johann_1777_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420230}}, {"model": "metainfo.source", "pk": 17421, "fields": {"orig_filename": "Blathy_Otto-Titusz_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1426353}}, {"model": "metainfo.source", "pk": 17422, "fields": {"orig_filename": "Blattl_Christian_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1419232}}, {"model": "metainfo.source", "pk": 17423, "fields": {"orig_filename": "Blau_Tina_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419235}}, {"model": "metainfo.source", "pk": 17424, "fields": {"orig_filename": "Blau_Marietta_1894_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436882}}, {"model": "metainfo.source", "pk": 17425, "fields": {"orig_filename": "Blazekovic_Karl_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420232}}, {"model": "metainfo.source", "pk": 17426, "fields": {"orig_filename": "Blechner_Heinrich_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420233}}, {"model": "metainfo.source", "pk": 17427, "fields": {"orig_filename": "Blechschmidt_Anton_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92f.", "author": "", "orig_id": 1420234}}, {"model": "metainfo.source", "pk": 17428, "fields": {"orig_filename": "Bleckmann_Johann-Heinrich_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1419240}}, {"model": "metainfo.source", "pk": 17429, "fields": {"orig_filename": "Bleibtreu_Sigismund_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1420235}}, {"model": "metainfo.source", "pk": 17430, "fields": {"orig_filename": "Bleiweis-Trsteniski_Janez_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1419244}}, {"model": "metainfo.source", "pk": 17431, "fields": {"orig_filename": "Bleiweis-Trsteniski_Karel_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2191999}}, {"model": "metainfo.source", "pk": 17432, "fields": {"orig_filename": "Bleyer_Jakob_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419245}}, {"model": "metainfo.source", "pk": 17433, "fields": {"orig_filename": "Bliemetzrieder_Placidus-Franz_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1420236}}, {"model": "metainfo.source", "pk": 17434, "fields": {"orig_filename": "Bloch_Chajim_1881_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444933}}, {"model": "metainfo.source", "pk": 17435, "fields": {"orig_filename": "Blodek_Wilhelm_1834_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93f.", "author": "", "orig_id": 1419317}}, {"model": "metainfo.source", "pk": 17436, "fields": {"orig_filename": "Blodig_Hermann_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420237}}, {"model": "metainfo.source", "pk": 17437, "fields": {"orig_filename": "Blome_Gustav_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1419321}}, {"model": "metainfo.source", "pk": 17438, "fields": {"orig_filename": "Bluemelhuber_Michael_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1419323}}, {"model": "metainfo.source", "pk": 17439, "fields": {"orig_filename": "Bluemel_Franz_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1405518}}, {"model": "metainfo.source", "pk": 17440, "fields": {"orig_filename": "Blumberger_Friedrich_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420238}}, {"model": "metainfo.source", "pk": 17441, "fields": {"orig_filename": "Blumenbach-Wabruschek_Wenzel-Karl-Wolfgang_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1418840}}, {"model": "metainfo.source", "pk": 17442, "fields": {"orig_filename": "Blumenthal_Josef_1782_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420240}}, {"model": "metainfo.source", "pk": 17443, "fields": {"orig_filename": "Blume_Ludwig_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420239}}, {"model": "metainfo.source", "pk": 17444, "fields": {"orig_filename": "Bobek_Hans_1903_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444215}}, {"model": "metainfo.source", "pk": 17445, "fields": {"orig_filename": "Bobies_Carl-August_1898_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2164739}}, {"model": "metainfo.source", "pk": 17446, "fields": {"orig_filename": "Bobies_Franz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420241}}, {"model": "metainfo.source", "pk": 17447, "fields": {"orig_filename": "Bobrzynski_Michael_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1419022}}, {"model": "metainfo.source", "pk": 17448, "fields": {"orig_filename": "Bockenheimer-Bockenheim_Franz_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420242}}, {"model": "metainfo.source", "pk": 17449, "fields": {"orig_filename": "Bocklet_Karl-Maria_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420243}}, {"model": "metainfo.source", "pk": 17450, "fields": {"orig_filename": "Bock_Emil_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1418686}}, {"model": "metainfo.source", "pk": 17451, "fields": {"orig_filename": "Boczek_Anton_1802_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1419107}}, {"model": "metainfo.source", "pk": 17452, "fields": {"orig_filename": "Bodemer_Jakob_1777_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420244}}, {"model": "metainfo.source", "pk": 17453, "fields": {"orig_filename": "Bodingbauer_Karl_1903_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1417456}}, {"model": "metainfo.source", "pk": 17454, "fields": {"orig_filename": "Boeck_Rupert_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420245}}, {"model": "metainfo.source", "pk": 17455, "fields": {"orig_filename": "Boeheim_Wendelin_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95f.", "author": "", "orig_id": 1420246}}, {"model": "metainfo.source", "pk": 17456, "fields": {"orig_filename": "Boehler_Albert_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417546}}, {"model": "metainfo.source", "pk": 17457, "fields": {"orig_filename": "Boehler_Friedrich_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420247}}, {"model": "metainfo.source", "pk": 17458, "fields": {"orig_filename": "Boehm-Bawerk_Eugen_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417379}}, {"model": "metainfo.source", "pk": 17459, "fields": {"orig_filename": "Boehm-Boehmersheim_August_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417458}}, {"model": "metainfo.source", "pk": 17460, "fields": {"orig_filename": "Boehm-Boehmersheim_Karl_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417463}}, {"model": "metainfo.source", "pk": 17461, "fields": {"orig_filename": "Boehm-Ermolli_Eduard_1856_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97f.", "author": "", "orig_id": 1417473}}, {"model": "metainfo.source", "pk": 17462, "fields": {"orig_filename": "Boehmerle_Emil_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2267399}}, {"model": "metainfo.source", "pk": 17463, "fields": {"orig_filename": "Boehmerle_Karl_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2267403}}, {"model": "metainfo.source", "pk": 17464, "fields": {"orig_filename": "Boehm_Camillo_1828_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417636}}, {"model": "metainfo.source", "pk": 17465, "fields": {"orig_filename": "Boehm_Johann_1774_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420248}}, {"model": "metainfo.source", "pk": 17466, "fields": {"orig_filename": "Boehm_Josef-Georg_1807_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417890}}, {"model": "metainfo.source", "pk": 17467, "fields": {"orig_filename": "Boehm_Josef_1841_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420250}}, {"model": "metainfo.source", "pk": 17468, "fields": {"orig_filename": "Boehm_Joseph-Anton_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417724}}, {"model": "metainfo.source", "pk": 17469, "fields": {"orig_filename": "Boehm_Joseph-Daniel_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420251}}, {"model": "metainfo.source", "pk": 17470, "fields": {"orig_filename": "Boehm_Joseph_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420249}}, {"model": "metainfo.source", "pk": 17471, "fields": {"orig_filename": "Boehm_Karl_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1420253}}, {"model": "metainfo.source", "pk": 17472, "fields": {"orig_filename": "Boehm_Sir-Joseph-Edgar_1834_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420252}}, {"model": "metainfo.source", "pk": 17473, "fields": {"orig_filename": "Boeriu-Polichna_Johann_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420255}}, {"model": "metainfo.source", "pk": 17474, "fields": {"orig_filename": "Boer_Johann-Lukas_1751_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420254}}, {"model": "metainfo.source", "pk": 17475, "fields": {"orig_filename": "Boesendorfer_Ignaz_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420315}}, {"model": "metainfo.source", "pk": 17476, "fields": {"orig_filename": "Boesendorfer_Ludwig_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1417832}}, {"model": "metainfo.source", "pk": 17477, "fields": {"orig_filename": "Bogdan-Sturmbruck_Josef_1769_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420316}}, {"model": "metainfo.source", "pk": 17478, "fields": {"orig_filename": "Bogensberger_Gustav_1838_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420317}}, {"model": "metainfo.source", "pk": 17479, "fields": {"orig_filename": "Bogisic_Valtazar_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420318}}, {"model": "metainfo.source", "pk": 17480, "fields": {"orig_filename": "Bognar_Friederike_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417400}}, {"model": "metainfo.source", "pk": 17481, "fields": {"orig_filename": "Bogovic_Mirko_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417404}}, {"model": "metainfo.source", "pk": 17482, "fields": {"orig_filename": "Boguslawski_Adalbert_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1420319}}, {"model": "metainfo.source", "pk": 17483, "fields": {"orig_filename": "Bohatsch_Ottokar-Zdenko_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1994039}}, {"model": "metainfo.source", "pk": 17484, "fields": {"orig_filename": "Bohdal_Anton-Matthaeus_1900_2008.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193599}}, {"model": "metainfo.source", "pk": 17485, "fields": {"orig_filename": "Bohdal_Matthaeus_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162616}}, {"model": "metainfo.source", "pk": 17486, "fields": {"orig_filename": "Bohrmann_Marianne_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417045}}, {"model": "metainfo.source", "pk": 17487, "fields": {"orig_filename": "Bohr_Oskar_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1418144}}, {"model": "metainfo.source", "pk": 17488, "fields": {"orig_filename": "Bohutinsky_Anton_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2056777}}, {"model": "metainfo.source", "pk": 17489, "fields": {"orig_filename": "Bojer_Wenzlaus_1797_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420320}}, {"model": "metainfo.source", "pk": 17490, "fields": {"orig_filename": "Bojko_Jakob_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1420321}}, {"model": "metainfo.source", "pk": 17491, "fields": {"orig_filename": "Bolfras_Arthur_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417128}}, {"model": "metainfo.source", "pk": 17492, "fields": {"orig_filename": "Boller_Anton_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420322}}, {"model": "metainfo.source", "pk": 17493, "fields": {"orig_filename": "Boltzmann_Ludwig_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1411332}}, {"model": "metainfo.source", "pk": 17494, "fields": {"orig_filename": "Bernard_Hans_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419993}}, {"model": "metainfo.source", "pk": 17495, "fields": {"orig_filename": "Bernard_Karl-Ambros_1808_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418954}}, {"model": "metainfo.source", "pk": 17496, "fields": {"orig_filename": "Bernard_Karl-Josef_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419994}}, {"model": "metainfo.source", "pk": 17497, "fields": {"orig_filename": "Bernatzik_Edmund_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75f.", "author": "", "orig_id": 1419030}}, {"model": "metainfo.source", "pk": 17498, "fields": {"orig_filename": "Bernatzik_Wenzel_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419034}}, {"model": "metainfo.source", "pk": 17499, "fields": {"orig_filename": "Bernatzik_Wilhelm_1853_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419037}}, {"model": "metainfo.source", "pk": 17500, "fields": {"orig_filename": "Bernay-Favancourt_Julius-Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419995}}, {"model": "metainfo.source", "pk": 17501, "fields": {"orig_filename": "Bernbrunn_Karl_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419113}}, {"model": "metainfo.source", "pk": 17502, "fields": {"orig_filename": "Berndl_Florian_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419278}}, {"model": "metainfo.source", "pk": 17503, "fields": {"orig_filename": "Bernheimer_Stefan_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419539}}, {"model": "metainfo.source", "pk": 17504, "fields": {"orig_filename": "Bernheimer_Walter-Ernst_1892_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419996}}, {"model": "metainfo.source", "pk": 17505, "fields": {"orig_filename": "Bernstein-Porges_Elsa_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419542}}, {"model": "metainfo.source", "pk": 17506, "fields": {"orig_filename": "Bernstein_Heinrich_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76f.", "author": "", "orig_id": 1419997}}, {"model": "metainfo.source", "pk": 17507, "fields": {"orig_filename": "Bernt_Ferdinand_1876_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419545}}, {"model": "metainfo.source", "pk": 17508, "fields": {"orig_filename": "Bernt_Johann-Josef_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419998}}, {"model": "metainfo.source", "pk": 17509, "fields": {"orig_filename": "Berres-Perez_Joseph_1821_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419548}}, {"model": "metainfo.source", "pk": 17510, "fields": {"orig_filename": "Berres_Josef_1796_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419999}}, {"model": "metainfo.source", "pk": 17511, "fields": {"orig_filename": "Bersina-Siegenthal_Heinrich_1762_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1420000}}, {"model": "metainfo.source", "pk": 17512, "fields": {"orig_filename": "Bertalanffy_Ludwig_1901_1972.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444456}}, {"model": "metainfo.source", "pk": 17513, "fields": {"orig_filename": "Bertalan_Arpad_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1420001}}, {"model": "metainfo.source", "pk": 17514, "fields": {"orig_filename": "Berte_Heinrich_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1405372}}, {"model": "metainfo.source", "pk": 17515, "fields": {"orig_filename": "Bertha_Hans_1901_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444457}}, {"model": "metainfo.source", "pk": 17516, "fields": {"orig_filename": "Berwerth_Friedrich-Martin_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77f.", "author": "", "orig_id": 1418518}}, {"model": "metainfo.source", "pk": 17517, "fields": {"orig_filename": "Berzeviczy-Berzevicze-Kakas-Lomnitz_Albert_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420002}}, {"model": "metainfo.source", "pk": 17518, "fields": {"orig_filename": "Berzeviczy_Albert_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420003}}, {"model": "metainfo.source", "pk": 17519, "fields": {"orig_filename": "Besan_Karl_1773_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420004}}, {"model": "metainfo.source", "pk": 17520, "fields": {"orig_filename": "Beschorner_Alexander-Markus_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420005}}, {"model": "metainfo.source", "pk": 17521, "fields": {"orig_filename": "Besel_Guido_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1418523}}, {"model": "metainfo.source", "pk": 17522, "fields": {"orig_filename": "Beskiba_Josef_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420006}}, {"model": "metainfo.source", "pk": 17523, "fields": {"orig_filename": "Beth_Marianne_1890_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443429}}, {"model": "metainfo.source", "pk": 17524, "fields": {"orig_filename": "Bettauer_Hugo_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1418529}}, {"model": "metainfo.source", "pk": 17525, "fields": {"orig_filename": "Bettelheim-Gabillon_Helene_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418605}}, {"model": "metainfo.source", "pk": 17526, "fields": {"orig_filename": "Bettelheim_Bruno_1903_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443434}}, {"model": "metainfo.source", "pk": 17527, "fields": {"orig_filename": "Bettelheim_Jakob_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418604}}, {"model": "metainfo.source", "pk": 17528, "fields": {"orig_filename": "Bettelheim_Karoline_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1420007}}, {"model": "metainfo.source", "pk": 17529, "fields": {"orig_filename": "Beurle_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418607}}, {"model": "metainfo.source", "pk": 17530, "fields": {"orig_filename": "Beust_Friedrich-Ferdinand_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79f.", "author": "", "orig_id": 1418609}}, {"model": "metainfo.source", "pk": 17531, "fields": {"orig_filename": "Beust_Friedrich-Konstantin_1806_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420009}}, {"model": "metainfo.source", "pk": 17532, "fields": {"orig_filename": "Beyer_Johann_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420011}}, {"model": "metainfo.source", "pk": 17533, "fields": {"orig_filename": "Beyer_Josef_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1418613}}, {"model": "metainfo.source", "pk": 17534, "fields": {"orig_filename": "Beyer_Rudolf_1810_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420012}}, {"model": "metainfo.source", "pk": 17535, "fields": {"orig_filename": "Beyfuss_Hermann_1857_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420075}}, {"model": "metainfo.source", "pk": 17536, "fields": {"orig_filename": "Beykow_Johann-Maria_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420076}}, {"model": "metainfo.source", "pk": 17537, "fields": {"orig_filename": "Beysteiner_Elisabeth_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1418618}}, {"model": "metainfo.source", "pk": 17538, "fields": {"orig_filename": "Bezecny_Josef_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420078}}, {"model": "metainfo.source", "pk": 17539, "fields": {"orig_filename": "Bianchi_Friedrich_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1419867}}, {"model": "metainfo.source", "pk": 17540, "fields": {"orig_filename": "Bianchi_Vinzenz-Ferrerius-Friedrich_1768_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420079}}, {"model": "metainfo.source", "pk": 17541, "fields": {"orig_filename": "Biankini_Juraj_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420080}}, {"model": "metainfo.source", "pk": 17542, "fields": {"orig_filename": "Bibl_Andreas_1797_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420081}}, {"model": "metainfo.source", "pk": 17543, "fields": {"orig_filename": "Bibl_Rudolf_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420082}}, {"model": "metainfo.source", "pk": 17544, "fields": {"orig_filename": "Bibl_Viktor_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1418961}}, {"model": "metainfo.source", "pk": 17545, "fields": {"orig_filename": "Bickell_Gustav_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1418971}}, {"model": "metainfo.source", "pk": 17546, "fields": {"orig_filename": "Bick_Josef_1880_1952.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1428751}}, {"model": "metainfo.source", "pk": 17547, "fields": {"orig_filename": "Bidlo_Jaroslav_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81f.", "author": "", "orig_id": 1420083}}, {"model": "metainfo.source", "pk": 17548, "fields": {"orig_filename": "Bidschof_Friedrich_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1912351}}, {"model": "metainfo.source", "pk": 17549, "fields": {"orig_filename": "Bieber_Friedrich-Julius_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1418973}}, {"model": "metainfo.source", "pk": 17550, "fields": {"orig_filename": "Bieber_Karl-Augustinus_1903_1996.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1418972}}, {"model": "metainfo.source", "pk": 17551, "fields": {"orig_filename": "Biebl_Rudolf_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420084}}, {"model": "metainfo.source", "pk": 17552, "fields": {"orig_filename": "Biedermann_Felix_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420085}}, {"model": "metainfo.source", "pk": 17553, "fields": {"orig_filename": "Biedermann_Hermann-Ignaz_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420086}}, {"model": "metainfo.source", "pk": 17554, "fields": {"orig_filename": "Biedermann_Johann-Baptist_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420087}}, {"model": "metainfo.source", "pk": 17555, "fields": {"orig_filename": "Biegeleben_Ludwig-Maximilian_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82f.", "author": "", "orig_id": 1419048}}, {"model": "metainfo.source", "pk": 17556, "fields": {"orig_filename": "Biela_Wilhelm_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419053}}, {"model": "metainfo.source", "pk": 17557, "fields": {"orig_filename": "Bielohlawek_Hermann_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419054}}, {"model": "metainfo.source", "pk": 17558, "fields": {"orig_filename": "Bielz_Eduard-Albrecht_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419056}}, {"model": "metainfo.source", "pk": 17559, "fields": {"orig_filename": "Bielz_Michael_1787_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419057}}, {"model": "metainfo.source", "pk": 17560, "fields": {"orig_filename": "Bienefeld-Loewenkron_Wilhelm_1776_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1420088}}, {"model": "metainfo.source", "pk": 17561, "fields": {"orig_filename": "Bienenfeld_Elsa_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1414897}}, {"model": "metainfo.source", "pk": 17562, "fields": {"orig_filename": "Bienenstein_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419061}}, {"model": "metainfo.source", "pk": 17563, "fields": {"orig_filename": "Bienerth-Schmerling_Richard_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83f.", "author": "", "orig_id": 1419065}}, {"model": "metainfo.source", "pk": 17564, "fields": {"orig_filename": "Bierbaum_Matthias_1916_1995.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1445960}}, {"model": "metainfo.source", "pk": 17565, "fields": {"orig_filename": "Biermann_Otto_1858_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1420089}}, {"model": "metainfo.source", "pk": 17566, "fields": {"orig_filename": "Bignio_Louis_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419138}}, {"model": "metainfo.source", "pk": 17567, "fields": {"orig_filename": "Bigot-Saint-Quentin_Karl_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419139}}, {"model": "metainfo.source", "pk": 17568, "fields": {"orig_filename": "Bilek_Franz_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419144}}, {"model": "metainfo.source", "pk": 17569, "fields": {"orig_filename": "Bilgeri_Georg_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419147}}, {"model": "metainfo.source", "pk": 17570, "fields": {"orig_filename": "Bilinski_Leon_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84f.", "author": "", "orig_id": 1405542}}, {"model": "metainfo.source", "pk": 17571, "fields": {"orig_filename": "Billroth_Theodor-Christian_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1419216}}, {"model": "metainfo.source", "pk": 17572, "fields": {"orig_filename": "Bill_Teddy_1900_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2195799}}, {"model": "metainfo.source", "pk": 17573, "fields": {"orig_filename": "Binder-Falbusch_Wilhelm_1779_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420092}}, {"model": "metainfo.source", "pk": 17574, "fields": {"orig_filename": "Binder-Kriegelstein_Franz_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85f.", "author": "", "orig_id": 1420093}}, {"model": "metainfo.source", "pk": 17575, "fields": {"orig_filename": "Binder-Kriegelstein_Friedrich_1775_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420094}}, {"model": "metainfo.source", "pk": 17576, "fields": {"orig_filename": "Binder-Kriegelstein_Karl_1869_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420151}}, {"model": "metainfo.source", "pk": 17577, "fields": {"orig_filename": "Binder_Anton_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1419225}}, {"model": "metainfo.source", "pk": 17578, "fields": {"orig_filename": "Binder_Georg-Paul_1784_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420090}}, {"model": "metainfo.source", "pk": 17579, "fields": {"orig_filename": "Binder_Joseph_1805_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420091}}, {"model": "metainfo.source", "pk": 17580, "fields": {"orig_filename": "Binder_Matthaeus-Josef_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419295}}, {"model": "metainfo.source", "pk": 17581, "fields": {"orig_filename": "Binz_Johann-Georg_1748_1824.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419299}}, {"model": "metainfo.source", "pk": 17582, "fields": {"orig_filename": "Birago_Karl_1792_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420152}}, {"model": "metainfo.source", "pk": 17583, "fields": {"orig_filename": "Birkle_Suitbert_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86f.", "author": "", "orig_id": 1420155}}, {"model": "metainfo.source", "pk": 17584, "fields": {"orig_filename": "Birk_Alfred_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419303}}, {"model": "metainfo.source", "pk": 17585, "fields": {"orig_filename": "Birk_Ernst_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420153}}, {"model": "metainfo.source", "pk": 17586, "fields": {"orig_filename": "Birk_Karl_1887_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128051}}, {"model": "metainfo.source", "pk": 17587, "fields": {"orig_filename": "Birnbaum_Ferdinand_1892_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420156}}, {"model": "metainfo.source", "pk": 17588, "fields": {"orig_filename": "Birnbaum_Nathan_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1419307}}, {"model": "metainfo.source", "pk": 17589, "fields": {"orig_filename": "Biro-Csik-Palfalva_Johann_1784_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420158}}, {"model": "metainfo.source", "pk": 17590, "fields": {"orig_filename": "Biro_Josef_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420157}}, {"model": "metainfo.source", "pk": 17591, "fields": {"orig_filename": "Bisching_Anton_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420159}}, {"model": "metainfo.source", "pk": 17592, "fields": {"orig_filename": "Bischoff-Altenstern_Ignaz-Rudolf_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419379}}, {"model": "metainfo.source", "pk": 17593, "fields": {"orig_filename": "Bischoff-Klammstein_Friedrich_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419381}}, {"model": "metainfo.source", "pk": 17594, "fields": {"orig_filename": "Bischoff_Ferdinand_1826_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1419377}}, {"model": "metainfo.source", "pk": 17595, "fields": {"orig_filename": "Beck_Max-Wladimir_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406036}}, {"model": "metainfo.source", "pk": 17596, "fields": {"orig_filename": "Beck_Wilhelm_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1421096}}, {"model": "metainfo.source", "pk": 17597, "fields": {"orig_filename": "Becsey-Volta_Stefan_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421100}}, {"model": "metainfo.source", "pk": 17598, "fields": {"orig_filename": "Becvarovsky_Anton-Felix_1754_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421101}}, {"model": "metainfo.source", "pk": 17599, "fields": {"orig_filename": "Becziczka_Ambros_1780_1861.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1406147}}, {"model": "metainfo.source", "pk": 17600, "fields": {"orig_filename": "Bedeus-Scharberg_Josef_1783_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421102}}, {"model": "metainfo.source", "pk": 17601, "fields": {"orig_filename": "Beer-Hofmann_Richard_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64", "author": "", "orig_id": 1406632}}, {"model": "metainfo.source", "pk": 17602, "fields": {"orig_filename": "Beer_Adolf_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406687}}, {"model": "metainfo.source", "pk": 17603, "fields": {"orig_filename": "Beer_Alois_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1428815}}, {"model": "metainfo.source", "pk": 17604, "fields": {"orig_filename": "Beer_Georg-Josef_1763_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63f.", "author": "", "orig_id": 1421104}}, {"model": "metainfo.source", "pk": 17605, "fields": {"orig_filename": "Beer_Max-Josef_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64", "author": "", "orig_id": 1421105}}, {"model": "metainfo.source", "pk": 17606, "fields": {"orig_filename": "Beer_Rudolf_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1406629}}, {"model": "metainfo.source", "pk": 17607, "fields": {"orig_filename": "Beer_Theodor_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1833661}}, {"model": "metainfo.source", "pk": 17608, "fields": {"orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f.", "author": "", "orig_id": 1406636}}, {"model": "metainfo.source", "pk": 17609, "fields": {"orig_filename": "Beetz_Wilhelm_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2001781}}, {"model": "metainfo.source", "pk": 17610, "fields": {"orig_filename": "Begovic_Milan_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1421106}}, {"model": "metainfo.source", "pk": 17611, "fields": {"orig_filename": "Behounek_Frantisek_1898_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443974}}, {"model": "metainfo.source", "pk": 17612, "fields": {"orig_filename": "Behrend-Brandt_Magdalena_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1421107}}, {"model": "metainfo.source", "pk": 17613, "fields": {"orig_filename": "Behrens_Peter_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162569}}, {"model": "metainfo.source", "pk": 17614, "fields": {"orig_filename": "Behsel_Anton_1781_1838.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1406981}}, {"model": "metainfo.source", "pk": 17615, "fields": {"orig_filename": "Beichl_Karl_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1406982}}, {"model": "metainfo.source", "pk": 17616, "fields": {"orig_filename": "Beidtel_Ignaz_1783_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65f.", "author": "", "orig_id": 1407798}}, {"model": "metainfo.source", "pk": 17617, "fields": {"orig_filename": "Beigel_Hugo-Georg_1897_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465168}}, {"model": "metainfo.source", "pk": 17618, "fields": {"orig_filename": "Beinl-Bienenburg_Anton_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1421108}}, {"model": "metainfo.source", "pk": 17619, "fields": {"orig_filename": "Beitzke_Hermann_1875_1953.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443982}}, {"model": "metainfo.source", "pk": 17620, "fields": {"orig_filename": "Bekessy_Imre_1887_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443986}}, {"model": "metainfo.source", "pk": 17621, "fields": {"orig_filename": "Bekk_Adolf_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1407749}}, {"model": "metainfo.source", "pk": 17622, "fields": {"orig_filename": "Belar_Albin_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1410321}}, {"model": "metainfo.source", "pk": 17623, "fields": {"orig_filename": "Belcredi_Ekbert_1816_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1421109}}, {"model": "metainfo.source", "pk": 17624, "fields": {"orig_filename": "Belcredi_Richard_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1410397}}, {"model": "metainfo.source", "pk": 17625, "fields": {"orig_filename": "Bellac_Paul_1891_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2050650}}, {"model": "metainfo.source", "pk": 17626, "fields": {"orig_filename": "Bella_Johann-Levoslav_1843_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1409574}}, {"model": "metainfo.source", "pk": 17627, "fields": {"orig_filename": "Bellegarde_Heinrich_1756_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66f.", "author": "", "orig_id": 1421110}}, {"model": "metainfo.source", "pk": 17628, "fields": {"orig_filename": "Belli_Giuseppe_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421111}}, {"model": "metainfo.source", "pk": 17629, "fields": {"orig_filename": "Bellmond-Adlerhorst_Anton_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1415060}}, {"model": "metainfo.source", "pk": 17630, "fields": {"orig_filename": "Belohlav_Josef_1882_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2006103}}, {"model": "metainfo.source", "pk": 17631, "fields": {"orig_filename": "Belrupt-Tissac_Karl_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421112}}, {"model": "metainfo.source", "pk": 17632, "fields": {"orig_filename": "Beltrami_Giovanni_1777_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421113}}, {"model": "metainfo.source", "pk": 17633, "fields": {"orig_filename": "Belzoni_Giovanni-Batt_1778_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421114}}, {"model": "metainfo.source", "pk": 17634, "fields": {"orig_filename": "Bem_Josef_1795_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1415067}}, {"model": "metainfo.source", "pk": 17635, "fields": {"orig_filename": "Benak_Franz_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421115}}, {"model": "metainfo.source", "pk": 17636, "fields": {"orig_filename": "Benatzky_Ralph_1884_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444045}}, {"model": "metainfo.source", "pk": 17637, "fields": {"orig_filename": "Benda_Gustav_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415136}}, {"model": "metainfo.source", "pk": 17638, "fields": {"orig_filename": "Bendel_Josef_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415139}}, {"model": "metainfo.source", "pk": 17639, "fields": {"orig_filename": "Bendl_Karl_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421188}}, {"model": "metainfo.source", "pk": 17640, "fields": {"orig_filename": "Benedek-Felsoe-Eoer_Ludwig_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415144}}, {"model": "metainfo.source", "pk": 17641, "fields": {"orig_filename": "Benedek_Alexander_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421190}}, {"model": "metainfo.source", "pk": 17642, "fields": {"orig_filename": "Benedetti_Thomas_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415145}}, {"model": "metainfo.source", "pk": 17643, "fields": {"orig_filename": "Benedikt_Edmund_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68f.", "author": "", "orig_id": 1415146}}, {"model": "metainfo.source", "pk": 17644, "fields": {"orig_filename": "Benedikt_Moritz_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415149}}, {"model": "metainfo.source", "pk": 17645, "fields": {"orig_filename": "Benedikt_Moritz_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415150}}, {"model": "metainfo.source", "pk": 17646, "fields": {"orig_filename": "Benedikt_Rudolf_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421191}}, {"model": "metainfo.source", "pk": 17647, "fields": {"orig_filename": "Benesch_Ladislaus_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415230}}, {"model": "metainfo.source", "pk": 17648, "fields": {"orig_filename": "Bene_Franz_1775_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421189}}, {"model": "metainfo.source", "pk": 17649, "fields": {"orig_filename": "Benigni-Mildenberg_Josef-Heinrich_1782_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421193}}, {"model": "metainfo.source", "pk": 17650, "fields": {"orig_filename": "Benigni_Siegmund_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421192}}, {"model": "metainfo.source", "pk": 17651, "fields": {"orig_filename": "Benkert_Karl-Maria_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1415237}}, {"model": "metainfo.source", "pk": 17652, "fields": {"orig_filename": "Benke_Hermann_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1990819}}, {"model": "metainfo.source", "pk": 17653, "fields": {"orig_filename": "Benkoe_Samuel_1743_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421194}}, {"model": "metainfo.source", "pk": 17654, "fields": {"orig_filename": "Benk_Johannes_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415234}}, {"model": "metainfo.source", "pk": 17655, "fields": {"orig_filename": "Benndorf_Friedrich-August-Otto_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1415241}}, {"model": "metainfo.source", "pk": 17656, "fields": {"orig_filename": "Benndorf_Hans_1870_1953.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444057}}, {"model": "metainfo.source", "pk": 17657, "fields": {"orig_filename": "Bentheim-Steinfurt_Wilhelm-Friedrich_1782_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421195}}, {"model": "metainfo.source", "pk": 17658, "fields": {"orig_filename": "Benz-Albkron_Robert-Joseph_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1428245}}, {"model": "metainfo.source", "pk": 17659, "fields": {"orig_filename": "Berchet_Giovanni_1783_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421196}}, {"model": "metainfo.source", "pk": 17660, "fields": {"orig_filename": "Berchtold-Ungarschitz_Friedrich_1781_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421197}}, {"model": "metainfo.source", "pk": 17661, "fields": {"orig_filename": "Berchtold_Leopold_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71", "author": "", "orig_id": 1413961}}, {"model": "metainfo.source", "pk": 17662, "fields": {"orig_filename": "Bercic_Ivan_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71", "author": "", "orig_id": 1421198}}, {"model": "metainfo.source", "pk": 17663, "fields": {"orig_filename": "Bergauer_Josef_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1421200}}, {"model": "metainfo.source", "pk": 17664, "fields": {"orig_filename": "Berger-Pleisse_Johann-Nepomuk_1768_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414054}}, {"model": "metainfo.source", "pk": 17665, "fields": {"orig_filename": "Berger-Stubenberg_Mathilde_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421203}}, {"model": "metainfo.source", "pk": 17666, "fields": {"orig_filename": "Berger_Alfred_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413977}}, {"model": "metainfo.source", "pk": 17667, "fields": {"orig_filename": "Berger_Alfred_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2059070}}, {"model": "metainfo.source", "pk": 17668, "fields": {"orig_filename": "Berger_Artur_1892_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444261}}, {"model": "metainfo.source", "pk": 17669, "fields": {"orig_filename": "Berger_Franz_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414050}}, {"model": "metainfo.source", "pk": 17670, "fields": {"orig_filename": "Berger_Franz_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162582}}, {"model": "metainfo.source", "pk": 17671, "fields": {"orig_filename": "Berger_Johann-Nepomuk_1816_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414057}}, {"model": "metainfo.source", "pk": 17672, "fields": {"orig_filename": "Berger_Josef_1898_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1862324}}, {"model": "metainfo.source", "pk": 17673, "fields": {"orig_filename": "Berger_Julius-Victor_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414058}}, {"model": "metainfo.source", "pk": 17674, "fields": {"orig_filename": "Berger_Rudolf_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72f.", "author": "", "orig_id": 1421201}}, {"model": "metainfo.source", "pk": 17675, "fields": {"orig_filename": "Berger_Thaddaeus_1774_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414064}}, {"model": "metainfo.source", "pk": 17676, "fields": {"orig_filename": "Berghofer_Amandus_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421204}}, {"model": "metainfo.source", "pk": 17677, "fields": {"orig_filename": "Berghold_Alexander_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421205}}, {"model": "metainfo.source", "pk": 17678, "fields": {"orig_filename": "Bergleitner_Johann_1774_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421206}}, {"model": "metainfo.source", "pk": 17679, "fields": {"orig_filename": "Bergler_Hans_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414136}}, {"model": "metainfo.source", "pk": 17680, "fields": {"orig_filename": "Bergler_Josef_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421207}}, {"model": "metainfo.source", "pk": 17681, "fields": {"orig_filename": "Bergmann_Ernst_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414137}}, {"model": "metainfo.source", "pk": 17682, "fields": {"orig_filename": "Bergmann_Hermann_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414138}}, {"model": "metainfo.source", "pk": 17683, "fields": {"orig_filename": "Bergmann_Josef_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1405613}}, {"model": "metainfo.source", "pk": 17684, "fields": {"orig_filename": "Bergmann_Josef_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1421208}}, {"model": "metainfo.source", "pk": 17685, "fields": {"orig_filename": "Bergmayr_Ignaz-Franz_1784_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1421209}}, {"model": "metainfo.source", "pk": 17686, "fields": {"orig_filename": "Bergmeister_Hermann_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414143}}, {"model": "metainfo.source", "pk": 17687, "fields": {"orig_filename": "Berg_Alban_1885_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71f.", "author": "", "orig_id": 1413964}}, {"model": "metainfo.source", "pk": 17688, "fields": {"orig_filename": "Berg_Armin_1883_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436577}}, {"model": "metainfo.source", "pk": 17689, "fields": {"orig_filename": "Berks_Marie_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414153}}, {"model": "metainfo.source", "pk": 17690, "fields": {"orig_filename": "Berla_Alois_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414221}}, {"model": "metainfo.source", "pk": 17691, "fields": {"orig_filename": "Berlepsch_Maria-Goswina_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418768}}, {"model": "metainfo.source", "pk": 17692, "fields": {"orig_filename": "Berliner_Egon_1923_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128029}}, {"model": "metainfo.source", "pk": 17693, "fields": {"orig_filename": "Bermann_Jeremias_1770_1855.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004092}}, {"model": "metainfo.source", "pk": 17694, "fields": {"orig_filename": "Bermann_Joseph_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1418864}}, {"model": "metainfo.source", "pk": 17695, "fields": {"orig_filename": "Bermann_Moritz_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418866}}, {"model": "metainfo.source", "pk": 17696, "fields": {"orig_filename": "Bermanschlaeger_Ludwig_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1421211}}, {"model": "metainfo.source", "pk": 17697, "fields": {"orig_filename": "Bernacki_Ludwig_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419992}}, {"model": "metainfo.source", "pk": 17698, "fields": {"orig_filename": "Barnay_Ludwig_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50f.", "author": "", "orig_id": 1405594}}, {"model": "metainfo.source", "pk": 17699, "fields": {"orig_filename": "Baron_Arthur_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004260}}, {"model": "metainfo.source", "pk": 17700, "fields": {"orig_filename": "Baross-Bellus_Gabor_1848_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2256297}}, {"model": "metainfo.source", "pk": 17701, "fields": {"orig_filename": "Baroti-Szabo_David_1739_1819.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1468792}}, {"model": "metainfo.source", "pk": 17702, "fields": {"orig_filename": "Barry_Alfred_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405598}}, {"model": "metainfo.source", "pk": 17703, "fields": {"orig_filename": "Barsescu_Agathe_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420995}}, {"model": "metainfo.source", "pk": 17704, "fields": {"orig_filename": "Barta_Richard_1911_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444180}}, {"model": "metainfo.source", "pk": 17705, "fields": {"orig_filename": "Barth-Barthenau_Ludwig_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405652}}, {"model": "metainfo.source", "pk": 17706, "fields": {"orig_filename": "Barth-Barthenheim_Johann-Bapt_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420997}}, {"model": "metainfo.source", "pk": 17707, "fields": {"orig_filename": "Bartholemy_Peter_1771_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420998}}, {"model": "metainfo.source", "pk": 17708, "fields": {"orig_filename": "Barth_Gustav_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420996}}, {"model": "metainfo.source", "pk": 17709, "fields": {"orig_filename": "Barth_Josef_1745_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405650}}, {"model": "metainfo.source", "pk": 17710, "fields": {"orig_filename": "Barth_Otto_1876_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1405651}}, {"model": "metainfo.source", "pk": 17711, "fields": {"orig_filename": "Bartl_Johann_1765_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420999}}, {"model": "metainfo.source", "pk": 17712, "fields": {"orig_filename": "Bartmann_Simon-Wilhelm_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51f.", "author": "", "orig_id": 1405656}}, {"model": "metainfo.source", "pk": 17713, "fields": {"orig_filename": "Bartsch_Adam-J_1757_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421000}}, {"model": "metainfo.source", "pk": 17714, "fields": {"orig_filename": "Bartsch_Friedrich-Josef-Adam_1798_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421001}}, {"model": "metainfo.source", "pk": 17715, "fields": {"orig_filename": "Barvir_Alois_1899_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444249}}, {"model": "metainfo.source", "pk": 17716, "fields": {"orig_filename": "Barvitius_Anton-Viktor_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421002}}, {"model": "metainfo.source", "pk": 17717, "fields": {"orig_filename": "Barvitius_Viktor_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405668}}, {"model": "metainfo.source", "pk": 17718, "fields": {"orig_filename": "Barwig_Franz_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405669}}, {"model": "metainfo.source", "pk": 17719, "fields": {"orig_filename": "Basaricek_Stefan_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421003}}, {"model": "metainfo.source", "pk": 17720, "fields": {"orig_filename": "Basch_Felix_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1458840}}, {"model": "metainfo.source", "pk": 17721, "fields": {"orig_filename": "Basch_Samuel_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405673}}, {"model": "metainfo.source", "pk": 17722, "fields": {"orig_filename": "Bassi_Fernando_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421004}}, {"model": "metainfo.source", "pk": 17723, "fields": {"orig_filename": "Bassi_Luigi_1776_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52f.", "author": "", "orig_id": 1421005}}, {"model": "metainfo.source", "pk": 17724, "fields": {"orig_filename": "Bast_Gerhard_1911_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1469815}}, {"model": "metainfo.source", "pk": 17725, "fields": {"orig_filename": "Bata_Thomas_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405808}}, {"model": "metainfo.source", "pk": 17726, "fields": {"orig_filename": "Batka_Richard_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405815}}, {"model": "metainfo.source", "pk": 17727, "fields": {"orig_filename": "Bato_Ludwig_1886_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2059179}}, {"model": "metainfo.source", "pk": 17728, "fields": {"orig_filename": "Batthyany-Nemetujvar_Lajos_1807_1849.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1405834}}, {"model": "metainfo.source", "pk": 17729, "fields": {"orig_filename": "Batthyany-Strattmann_Ladislaus_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1421006}}, {"model": "metainfo.source", "pk": 17730, "fields": {"orig_filename": "Batthyany_Franziska_1802_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405832}}, {"model": "metainfo.source", "pk": 17731, "fields": {"orig_filename": "Battisti_Cesare_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53f.", "author": "", "orig_id": 1405836}}, {"model": "metainfo.source", "pk": 17732, "fields": {"orig_filename": "Bauchinger_Matthaeus_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405838}}, {"model": "metainfo.source", "pk": 17733, "fields": {"orig_filename": "Baudiss_Leo_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405840}}, {"model": "metainfo.source", "pk": 17734, "fields": {"orig_filename": "Baudius_Karl-Friedrich_1796_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1421007}}, {"model": "metainfo.source", "pk": 17735, "fields": {"orig_filename": "Bauernfeld_Eduard_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56f.", "author": "", "orig_id": 1405876}}, {"model": "metainfo.source", "pk": 17736, "fields": {"orig_filename": "Bauernschmid_Karl-Eduard_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1421013}}, {"model": "metainfo.source", "pk": 17737, "fields": {"orig_filename": "Bauer_Adolf_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405844}}, {"model": "metainfo.source", "pk": 17738, "fields": {"orig_filename": "Bauer_Alexander_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405845}}, {"model": "metainfo.source", "pk": 17739, "fields": {"orig_filename": "Bauer_Anton_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54f.", "author": "", "orig_id": 1405847}}, {"model": "metainfo.source", "pk": 17740, "fields": {"orig_filename": "Bauer_Bruno_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004327}}, {"model": "metainfo.source", "pk": 17741, "fields": {"orig_filename": "Bauer_Ferdinand-Lukas_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405854}}, {"model": "metainfo.source", "pk": 17742, "fields": {"orig_filename": "Bauer_Ferdinand_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1421008}}, {"model": "metainfo.source", "pk": 17743, "fields": {"orig_filename": "Bauer_Franz-Andreas_1758_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405855}}, {"model": "metainfo.source", "pk": 17744, "fields": {"orig_filename": "Bauer_Franz-Salesius_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405856}}, {"model": "metainfo.source", "pk": 17745, "fields": {"orig_filename": "Bauer_Franz_1798_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1421009}}, {"model": "metainfo.source", "pk": 17746, "fields": {"orig_filename": "Bauer_Harald_1901_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444373}}, {"model": "metainfo.source", "pk": 17747, "fields": {"orig_filename": "Bauer_Johann_1889_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1467779}}, {"model": "metainfo.source", "pk": 17748, "fields": {"orig_filename": "Bauer_Josef_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55f.", "author": "", "orig_id": 1421010}}, {"model": "metainfo.source", "pk": 17749, "fields": {"orig_filename": "Bauer_Julius_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1421011}}, {"model": "metainfo.source", "pk": 17750, "fields": {"orig_filename": "Bauer_Leopold_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405865}}, {"model": "metainfo.source", "pk": 17751, "fields": {"orig_filename": "Bauer_Otto-Heinrich_1900_1991.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2116484}}, {"model": "metainfo.source", "pk": 17752, "fields": {"orig_filename": "Bauer_Otto_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1405869}}, {"model": "metainfo.source", "pk": 17753, "fields": {"orig_filename": "Bauer_Stefan_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1421012}}, {"model": "metainfo.source", "pk": 17754, "fields": {"orig_filename": "Baumann-Koryto_Josef_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57f.", "author": "", "orig_id": 1421015}}, {"model": "metainfo.source", "pk": 17755, "fields": {"orig_filename": "Baumann_Alexander-Moritz_1814_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405877}}, {"model": "metainfo.source", "pk": 17756, "fields": {"orig_filename": "Baumann_Friedrich_1763_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1421014}}, {"model": "metainfo.source", "pk": 17757, "fields": {"orig_filename": "Baumann_Ludwig_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405882}}, {"model": "metainfo.source", "pk": 17758, "fields": {"orig_filename": "Baumann_Oskar_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405716}}, {"model": "metainfo.source", "pk": 17759, "fields": {"orig_filename": "Baumayer_Marie_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421016}}, {"model": "metainfo.source", "pk": 17760, "fields": {"orig_filename": "Baumberg_Antonie_1859_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405717}}, {"model": "metainfo.source", "pk": 17761, "fields": {"orig_filename": "Baumfeld_Rudolf-Lothar_1903_1988.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004277}}, {"model": "metainfo.source", "pk": 17762, "fields": {"orig_filename": "Baumgarten_Amand_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405718}}, {"model": "metainfo.source", "pk": 17763, "fields": {"orig_filename": "Baumgarten_Anton_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2052596}}, {"model": "metainfo.source", "pk": 17764, "fields": {"orig_filename": "Baumgarten_Wilhelm_1885_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004165}}, {"model": "metainfo.source", "pk": 17765, "fields": {"orig_filename": "Baumgartner_Andreas_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405676}}, {"model": "metainfo.source", "pk": 17766, "fields": {"orig_filename": "Baumgartner_Karl_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421088}}, {"model": "metainfo.source", "pk": 17767, "fields": {"orig_filename": "Baumrucker-Robelswald_Josef_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421089}}, {"model": "metainfo.source", "pk": 17768, "fields": {"orig_filename": "Baumueller_Bernhard_1827_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405742}}, {"model": "metainfo.source", "pk": 17769, "fields": {"orig_filename": "Baum_Oskar_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2283471}}, {"model": "metainfo.source", "pk": 17770, "fields": {"orig_filename": "Bayer-Buerck_Marie_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406014}}, {"model": "metainfo.source", "pk": 17771, "fields": {"orig_filename": "Bayer_Franz-Rudolf_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405753}}, {"model": "metainfo.source", "pk": 17772, "fields": {"orig_filename": "Bayer_Josef-August_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406009}}, {"model": "metainfo.source", "pk": 17773, "fields": {"orig_filename": "Bayer_Josef_1827_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58f.", "author": "", "orig_id": 1406006}}, {"model": "metainfo.source", "pk": 17774, "fields": {"orig_filename": "Bayer_Josef_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1405369}}, {"model": "metainfo.source", "pk": 17775, "fields": {"orig_filename": "Bayer_Josef_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406008}}, {"model": "metainfo.source", "pk": 17776, "fields": {"orig_filename": "Bayer_Karl-Emmerich-Robert_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406012}}, {"model": "metainfo.source", "pk": 17777, "fields": {"orig_filename": "Bayer_Karl-Josef_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406011}}, {"model": "metainfo.source", "pk": 17778, "fields": {"orig_filename": "Bazzini_Antonio_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59f.", "author": "", "orig_id": 1421091}}, {"model": "metainfo.source", "pk": 17779, "fields": {"orig_filename": "Beaulieu-Marconnay_Jean-Pierre_1725_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421093}}, {"model": "metainfo.source", "pk": 17780, "fields": {"orig_filename": "Becher_Alfred-Julius_1803_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406022}}, {"model": "metainfo.source", "pk": 17781, "fields": {"orig_filename": "Becher_Siegfried_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406023}}, {"model": "metainfo.source", "pk": 17782, "fields": {"orig_filename": "Bechtold_Philipp-Christoph_1747_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421094}}, {"model": "metainfo.source", "pk": 17783, "fields": {"orig_filename": "Bechtolsheim_Anton_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406025}}, {"model": "metainfo.source", "pk": 17784, "fields": {"orig_filename": "Beck-Mannagetta-Lerchenau_Guenther_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1421097}}, {"model": "metainfo.source", "pk": 17785, "fields": {"orig_filename": "Beck-Mannagetta_Peter_1917_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1432469}}, {"model": "metainfo.source", "pk": 17786, "fields": {"orig_filename": "Beck-Rzikowsky_Friedrich_1830_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61f.", "author": "", "orig_id": 1406041}}, {"model": "metainfo.source", "pk": 17787, "fields": {"orig_filename": "Becker_Ludwig_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1421099}}, {"model": "metainfo.source", "pk": 17788, "fields": {"orig_filename": "Becker_Moritz-Alois_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1405885}}, {"model": "metainfo.source", "pk": 17789, "fields": {"orig_filename": "Becker_Paul_1910_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443740}}, {"model": "metainfo.source", "pk": 17790, "fields": {"orig_filename": "Becke_Franz-Karl_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1405675}}, {"model": "metainfo.source", "pk": 17791, "fields": {"orig_filename": "Becke_Friedrich-Johann-Karl_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1421098}}, {"model": "metainfo.source", "pk": 17792, "fields": {"orig_filename": "Beckh-Widmannstetter_Leopold_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406143}}, {"model": "metainfo.source", "pk": 17793, "fields": {"orig_filename": "Beckh-Widmanstaetten_Alois_1753_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62f.", "author": "", "orig_id": 1406142}}, {"model": "metainfo.source", "pk": 17794, "fields": {"orig_filename": "Beckmann_Friedrich_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406144}}, {"model": "metainfo.source", "pk": 17795, "fields": {"orig_filename": "Beck_Friedrich_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406028}}, {"model": "metainfo.source", "pk": 17796, "fields": {"orig_filename": "Beck_Friedrich_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421095}}, {"model": "metainfo.source", "pk": 17797, "fields": {"orig_filename": "Beck_Guido_1903_1988.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1452317}}, {"model": "metainfo.source", "pk": 17798, "fields": {"orig_filename": "Beck_Johann-Nep_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60f.", "author": "", "orig_id": 1406032}}, {"model": "metainfo.source", "pk": 17799, "fields": {"orig_filename": "Beck_Karl-Isidor_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406034}}, {"model": "metainfo.source", "pk": 17800, "fields": {"orig_filename": "Beck_Karl_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406033}}, {"model": "metainfo.source", "pk": 17801, "fields": {"orig_filename": "Augustin_Vinzenz_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416884}}, {"model": "metainfo.source", "pk": 17802, "fields": {"orig_filename": "Auinger_Mathias_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2264764}}, {"model": "metainfo.source", "pk": 17803, "fields": {"orig_filename": "Auracher-Aurach_Josef-Christian_1756_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416885}}, {"model": "metainfo.source", "pk": 17804, "fields": {"orig_filename": "Aurednickova_Anna_1873_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2167716}}, {"model": "metainfo.source", "pk": 17805, "fields": {"orig_filename": "Ausch_Karl-Michael_1893_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441859}}, {"model": "metainfo.source", "pk": 17806, "fields": {"orig_filename": "Auspitz_Heinrich_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416886}}, {"model": "metainfo.source", "pk": 17807, "fields": {"orig_filename": "Auspitz_Rudolf_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416887}}, {"model": "metainfo.source", "pk": 17808, "fields": {"orig_filename": "Ausserer_Carl_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416888}}, {"model": "metainfo.source", "pk": 17809, "fields": {"orig_filename": "Ausserer_Carl_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416889}}, {"model": "metainfo.source", "pk": 17810, "fields": {"orig_filename": "Ausserlechner_Gereon_1904_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468713}}, {"model": "metainfo.source", "pk": 17811, "fields": {"orig_filename": "Austerlitz_Friedrich_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416958}}, {"model": "metainfo.source", "pk": 17812, "fields": {"orig_filename": "Autsch_Angela_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468715}}, {"model": "metainfo.source", "pk": 17813, "fields": {"orig_filename": "Avancini_Giustiniano_1807_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416959}}, {"model": "metainfo.source", "pk": 17814, "fields": {"orig_filename": "Avanzini_Giuseppe_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416960}}, {"model": "metainfo.source", "pk": 17815, "fields": {"orig_filename": "Avanzo_Dominik_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416961}}, {"model": "metainfo.source", "pk": 17816, "fields": {"orig_filename": "Axentowicz_Theodor_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38f.", "author": "", "orig_id": 1416962}}, {"model": "metainfo.source", "pk": 17817, "fields": {"orig_filename": "Axmann_Ferdinand_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416963}}, {"model": "metainfo.source", "pk": 17818, "fields": {"orig_filename": "Axmann_Josef_1793_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416964}}, {"model": "metainfo.source", "pk": 17819, "fields": {"orig_filename": "Axmann_Julius_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416965}}, {"model": "metainfo.source", "pk": 17820, "fields": {"orig_filename": "Ayrenhoff_Cornelius-Hermann_1733_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416966}}, {"model": "metainfo.source", "pk": 17821, "fields": {"orig_filename": "Azarian_Aristakes_1782_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416967}}, {"model": "metainfo.source", "pk": 17822, "fields": {"orig_filename": "Azbe_Anton_1862_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416968}}, {"model": "metainfo.source", "pk": 17823, "fields": {"orig_filename": "Baar_Hugo_1873_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405521}}, {"model": "metainfo.source", "pk": 17824, "fields": {"orig_filename": "Baar_Jindrich_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420825}}, {"model": "metainfo.source", "pk": 17825, "fields": {"orig_filename": "Babak_Edward_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420826}}, {"model": "metainfo.source", "pk": 17826, "fields": {"orig_filename": "Babik_Adeodatus_1738_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420827}}, {"model": "metainfo.source", "pk": 17827, "fields": {"orig_filename": "Bacher_Eduard_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405549}}, {"model": "metainfo.source", "pk": 17828, "fields": {"orig_filename": "Bacher_Rudolf_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405540}}, {"model": "metainfo.source", "pk": 17829, "fields": {"orig_filename": "Bachinger_Franz_1892_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1405556}}, {"model": "metainfo.source", "pk": 17830, "fields": {"orig_filename": "Bachlechner_Gregor_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2025081}}, {"model": "metainfo.source", "pk": 17831, "fields": {"orig_filename": "Bachlechner_Josef_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405557}}, {"model": "metainfo.source", "pk": 17832, "fields": {"orig_filename": "Bachmann_Adolf_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405560}}, {"model": "metainfo.source", "pk": 17833, "fields": {"orig_filename": "Bachmann_Eugen_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41f.", "author": "", "orig_id": 1420829}}, {"model": "metainfo.source", "pk": 17834, "fields": {"orig_filename": "Bachmann_Hermann_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1405561}}, {"model": "metainfo.source", "pk": 17835, "fields": {"orig_filename": "Bachmann_Luise_1903_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1440405}}, {"model": "metainfo.source", "pk": 17836, "fields": {"orig_filename": "Bachofen-Echt_Karl-Adolf_1830_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41f.", "author": "", "orig_id": 1405565}}, {"model": "metainfo.source", "pk": 17837, "fields": {"orig_filename": "Bachrach_Adolf_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405566}}, {"model": "metainfo.source", "pk": 17838, "fields": {"orig_filename": "Bachrich_Sigmund_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405567}}, {"model": "metainfo.source", "pk": 17839, "fields": {"orig_filename": "Bach_Alexander_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405534}}, {"model": "metainfo.source", "pk": 17840, "fields": {"orig_filename": "Bach_Eduard_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405537}}, {"model": "metainfo.source", "pk": 17841, "fields": {"orig_filename": "Bach_Emilie_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405538}}, {"model": "metainfo.source", "pk": 17842, "fields": {"orig_filename": "Bach_Friedrich_1817_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405544}}, {"model": "metainfo.source", "pk": 17843, "fields": {"orig_filename": "Bach_Otto_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405548}}, {"model": "metainfo.source", "pk": 17844, "fields": {"orig_filename": "Bach_Theodor-Karl_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405547}}, {"model": "metainfo.source", "pk": 17845, "fields": {"orig_filename": "Bacquehem_Olivier_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405573}}, {"model": "metainfo.source", "pk": 17846, "fields": {"orig_filename": "Bacsanyi_Gabriele_1775_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1420830}}, {"model": "metainfo.source", "pk": 17847, "fields": {"orig_filename": "Badaj_Alexander_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1420831}}, {"model": "metainfo.source", "pk": 17848, "fields": {"orig_filename": "Badeni_Kasimir-Felix_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42f.", "author": "", "orig_id": 1405579}}, {"model": "metainfo.source", "pk": 17849, "fields": {"orig_filename": "Baer-Frisell_Christine_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43", "author": "", "orig_id": 1420832}}, {"model": "metainfo.source", "pk": 17850, "fields": {"orig_filename": "Baernreither_Josef-Maria_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43", "author": "", "orig_id": 1405471}}, {"model": "metainfo.source", "pk": 17851, "fields": {"orig_filename": "Baeuerle_Adolf_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43f.", "author": "", "orig_id": 1405472}}, {"model": "metainfo.source", "pk": 17852, "fields": {"orig_filename": "Baeuerle_Friederike_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420833}}, {"model": "metainfo.source", "pk": 17853, "fields": {"orig_filename": "Baeuerle_Katharina_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44", "author": "", "orig_id": 1405473}}, {"model": "metainfo.source", "pk": 17854, "fields": {"orig_filename": "Bahr-Mildenburg_Anna_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1405541}}, {"model": "metainfo.source", "pk": 17855, "fields": {"orig_filename": "Bahr_Alois_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1405475}}, {"model": "metainfo.source", "pk": 17856, "fields": {"orig_filename": "Baillet-Latour_Theodor_1780_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420835}}, {"model": "metainfo.source", "pk": 17857, "fields": {"orig_filename": "Baillet-Latour_Vinzenz_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1405479}}, {"model": "metainfo.source", "pk": 17858, "fields": {"orig_filename": "Bail_Oskar_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420834}}, {"model": "metainfo.source", "pk": 17859, "fields": {"orig_filename": "Bakalar_Johann-M_1857_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420903}}, {"model": "metainfo.source", "pk": 17860, "fields": {"orig_filename": "Bakody_Theodor_1825_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420904}}, {"model": "metainfo.source", "pk": 17861, "fields": {"orig_filename": "Bakonyi_Emmerich_1768_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45f.", "author": "", "orig_id": 1420905}}, {"model": "metainfo.source", "pk": 17862, "fields": {"orig_filename": "Balajthy_Robert_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420906}}, {"model": "metainfo.source", "pk": 17863, "fields": {"orig_filename": "Balassa_Johann_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420907}}, {"model": "metainfo.source", "pk": 17864, "fields": {"orig_filename": "Balassa_Konstantin_1795_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420908}}, {"model": "metainfo.source", "pk": 17865, "fields": {"orig_filename": "Balatka_Hans_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1405492}}, {"model": "metainfo.source", "pk": 17866, "fields": {"orig_filename": "Balbi_Adrian_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420909}}, {"model": "metainfo.source", "pk": 17867, "fields": {"orig_filename": "Baldacci_Anton-Maximilian_1762_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1405496}}, {"model": "metainfo.source", "pk": 17868, "fields": {"orig_filename": "Ballagi_Moriz_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46f.", "author": "", "orig_id": 1420910}}, {"model": "metainfo.source", "pk": 17869, "fields": {"orig_filename": "Balling_Karl-Josef-Napoleon_1805_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420911}}, {"model": "metainfo.source", "pk": 17870, "fields": {"orig_filename": "Balucki_Michael_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420912}}, {"model": "metainfo.source", "pk": 17871, "fields": {"orig_filename": "Bamberger_Eugen_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1405680}}, {"model": "metainfo.source", "pk": 17872, "fields": {"orig_filename": "Bamberger_Heinrich_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1405682}}, {"model": "metainfo.source", "pk": 17873, "fields": {"orig_filename": "Bamberger_Max_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47f.", "author": "", "orig_id": 1420914}}, {"model": "metainfo.source", "pk": 17874, "fields": {"orig_filename": "Bamberg_Josef_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420913}}, {"model": "metainfo.source", "pk": 17875, "fields": {"orig_filename": "Bancalari_Gustav_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420915}}, {"model": "metainfo.source", "pk": 17876, "fields": {"orig_filename": "Bandl_Ludwig_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1421079}}, {"model": "metainfo.source", "pk": 17877, "fields": {"orig_filename": "Bandrowski_Alexander_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420917}}, {"model": "metainfo.source", "pk": 17878, "fields": {"orig_filename": "Band_Moritz_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420916}}, {"model": "metainfo.source", "pk": 17879, "fields": {"orig_filename": "Banffy-Losoncz_Dezsoe_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405689}}, {"model": "metainfo.source", "pk": 17880, "fields": {"orig_filename": "Banhans_Anton_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405691}}, {"model": "metainfo.source", "pk": 17881, "fields": {"orig_filename": "Banhans_Karl_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405693}}, {"model": "metainfo.source", "pk": 17882, "fields": {"orig_filename": "Banki_Donat_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405695}}, {"model": "metainfo.source", "pk": 17883, "fields": {"orig_filename": "Barabas_Nikolaus_1810_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48f.", "author": "", "orig_id": 1420918}}, {"model": "metainfo.source", "pk": 17884, "fields": {"orig_filename": "Barach-Rappaport_Karl-Siegmund_1834_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1420919}}, {"model": "metainfo.source", "pk": 17885, "fields": {"orig_filename": "Barach_Moritz_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405584}}, {"model": "metainfo.source", "pk": 17886, "fields": {"orig_filename": "Barach_Rosa_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1414455}}, {"model": "metainfo.source", "pk": 17887, "fields": {"orig_filename": "Barac_Milutin_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405701}}, {"model": "metainfo.source", "pk": 17888, "fields": {"orig_filename": "Baraga_Friedrich-Irenaeus_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405702}}, {"model": "metainfo.source", "pk": 17889, "fields": {"orig_filename": "Barany_Robert_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1405704}}, {"model": "metainfo.source", "pk": 17890, "fields": {"orig_filename": "Barazetti_Sophie_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1420920}}, {"model": "metainfo.source", "pk": 17891, "fields": {"orig_filename": "Barbacovi_Franz-Virgil_1738_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49f.", "author": "", "orig_id": 1405709}}, {"model": "metainfo.source", "pk": 17892, "fields": {"orig_filename": "Barbaczy_Josef_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420921}}, {"model": "metainfo.source", "pk": 17893, "fields": {"orig_filename": "Barbisch_Hans_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420922}}, {"model": "metainfo.source", "pk": 17894, "fields": {"orig_filename": "Barb_Alphons-Augustinus_1901_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444036}}, {"model": "metainfo.source", "pk": 17895, "fields": {"orig_filename": "Barco_Josef_1798_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420923}}, {"model": "metainfo.source", "pk": 17896, "fields": {"orig_filename": "Bardach-Chlumberg_Hans_1897_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420924}}, {"model": "metainfo.source", "pk": 17897, "fields": {"orig_filename": "Barenyi_Bela_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444040}}, {"model": "metainfo.source", "pk": 17898, "fields": {"orig_filename": "Bareuther_Ernst_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420925}}, {"model": "metainfo.source", "pk": 17899, "fields": {"orig_filename": "Barion-Zellthal_Matthias_1785_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420926}}, {"model": "metainfo.source", "pk": 17900, "fields": {"orig_filename": "Barkany_Marie_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420993}}, {"model": "metainfo.source", "pk": 17901, "fields": {"orig_filename": "Barle_Janko_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420994}}, {"model": "metainfo.source", "pk": 17902, "fields": {"orig_filename": "Antoniewicz_Johann_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417972}}, {"model": "metainfo.source", "pk": 17903, "fields": {"orig_filename": "Antoniewicz_Karl_1807_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417973}}, {"model": "metainfo.source", "pk": 17904, "fields": {"orig_filename": "Antonius_Otto_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417974}}, {"model": "metainfo.source", "pk": 17905, "fields": {"orig_filename": "Anton_Ferdinand_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24f.", "author": "", "orig_id": 1417968}}, {"model": "metainfo.source", "pk": 17906, "fields": {"orig_filename": "Anton_Gabriel_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417969}}, {"model": "metainfo.source", "pk": 17907, "fields": {"orig_filename": "Anton_Viktor_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417970}}, {"model": "metainfo.source", "pk": 17908, "fields": {"orig_filename": "Anyz_Josef_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417976}}, {"model": "metainfo.source", "pk": 17909, "fields": {"orig_filename": "Anzengruber_Johann_1810_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417977}}, {"model": "metainfo.source", "pk": 17910, "fields": {"orig_filename": "Anzengruber_Karl_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25f.", "author": "", "orig_id": 1418052}}, {"model": "metainfo.source", "pk": 17911, "fields": {"orig_filename": "Anzengruber_Ludwig_1839_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418053}}, {"model": "metainfo.source", "pk": 17912, "fields": {"orig_filename": "Anzoletti_Marco_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418054}}, {"model": "metainfo.source", "pk": 17913, "fields": {"orig_filename": "Anzoletti_Patrizius_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418055}}, {"model": "metainfo.source", "pk": 17914, "fields": {"orig_filename": "Appel_Christian_1785_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418056}}, {"model": "metainfo.source", "pk": 17915, "fields": {"orig_filename": "Appel_Johann-Nep_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418057}}, {"model": "metainfo.source", "pk": 17916, "fields": {"orig_filename": "Appel_Josef-Franz_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418058}}, {"model": "metainfo.source", "pk": 17917, "fields": {"orig_filename": "Appel_Michael-Ludwig-E_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26f.", "author": "", "orig_id": 1418059}}, {"model": "metainfo.source", "pk": 17918, "fields": {"orig_filename": "Appel_Wilhelm_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418060}}, {"model": "metainfo.source", "pk": 17919, "fields": {"orig_filename": "Appiani_Andreas_1754_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418061}}, {"model": "metainfo.source", "pk": 17920, "fields": {"orig_filename": "Apponyi_Albert_1846_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418062}}, {"model": "metainfo.source", "pk": 17921, "fields": {"orig_filename": "Apponyi_Alexander_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418063}}, {"model": "metainfo.source", "pk": 17922, "fields": {"orig_filename": "Apponyi_Georg_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418064}}, {"model": "metainfo.source", "pk": 17923, "fields": {"orig_filename": "Aptowitzer_Victor_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418065}}, {"model": "metainfo.source", "pk": 17924, "fields": {"orig_filename": "Arany_Johann_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27f.", "author": "", "orig_id": 1418066}}, {"model": "metainfo.source", "pk": 17925, "fields": {"orig_filename": "Arbes_Jakub_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418067}}, {"model": "metainfo.source", "pk": 17926, "fields": {"orig_filename": "Arbter_Arthur_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418069}}, {"model": "metainfo.source", "pk": 17927, "fields": {"orig_filename": "Arbter_Emil_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418068}}, {"model": "metainfo.source", "pk": 17928, "fields": {"orig_filename": "Arendt_Ekkehard_1892_1954.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2028980}}, {"model": "metainfo.source", "pk": 17929, "fields": {"orig_filename": "Argenteau_Eugen_1741_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418070}}, {"model": "metainfo.source", "pk": 17930, "fields": {"orig_filename": "Arici_Cesare_1785_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418071}}, {"model": "metainfo.source", "pk": 17931, "fields": {"orig_filename": "Arigi_Julius_1895_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441907}}, {"model": "metainfo.source", "pk": 17932, "fields": {"orig_filename": "Arleth_Erich_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418072}}, {"model": "metainfo.source", "pk": 17933, "fields": {"orig_filename": "Arlt_Ferdinand_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418073}}, {"model": "metainfo.source", "pk": 17934, "fields": {"orig_filename": "Arnau_Karl_1843_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418074}}, {"model": "metainfo.source", "pk": 17935, "fields": {"orig_filename": "Arnberger_Erik_1917_1987.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441954}}, {"model": "metainfo.source", "pk": 17936, "fields": {"orig_filename": "Arndts-Arnesberg_Karl-Ludwig_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418155}}, {"model": "metainfo.source", "pk": 17937, "fields": {"orig_filename": "Arndt_Johannes_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28f.", "author": "", "orig_id": 1418154}}, {"model": "metainfo.source", "pk": 17938, "fields": {"orig_filename": "Arneth_Alfred_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418156}}, {"model": "metainfo.source", "pk": 17939, "fields": {"orig_filename": "Arneth_Josef-Cal_1791_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418157}}, {"model": "metainfo.source", "pk": 17940, "fields": {"orig_filename": "Arneth_Michael_1771_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418158}}, {"model": "metainfo.source", "pk": 17941, "fields": {"orig_filename": "Arnim_Hans_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29f.", "author": "", "orig_id": 1418159}}, {"model": "metainfo.source", "pk": 17942, "fields": {"orig_filename": "Arnold_Djuro_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418160}}, {"model": "metainfo.source", "pk": 17943, "fields": {"orig_filename": "Arnold_Josef_1788_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418161}}, {"model": "metainfo.source", "pk": 17944, "fields": {"orig_filename": "Arnold_Josef_1823_1862.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193497}}, {"model": "metainfo.source", "pk": 17945, "fields": {"orig_filename": "Arnold_Robert-Franz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418162}}, {"model": "metainfo.source", "pk": 17946, "fields": {"orig_filename": "Arnsburg_Ludwig_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418163}}, {"model": "metainfo.source", "pk": 17947, "fields": {"orig_filename": "Arnsburg_Marie_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418164}}, {"model": "metainfo.source", "pk": 17948, "fields": {"orig_filename": "Arrigoni_Anton_1788_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418165}}, {"model": "metainfo.source", "pk": 17949, "fields": {"orig_filename": "Arrivabene_Ferdinand_1770_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418166}}, {"model": "metainfo.source", "pk": 17950, "fields": {"orig_filename": "Artaria_Domenico_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30f.", "author": "", "orig_id": 1418167}}, {"model": "metainfo.source", "pk": 17951, "fields": {"orig_filename": "Arthaber_Gustav-Adolf_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418168}}, {"model": "metainfo.source", "pk": 17952, "fields": {"orig_filename": "Arthaber_Rudolf_1795_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418169}}, {"model": "metainfo.source", "pk": 17953, "fields": {"orig_filename": "Artmann_Emil-Wilhelm_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2003990}}, {"model": "metainfo.source", "pk": 17954, "fields": {"orig_filename": "Artmann_Ferdinand_1830_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418170}}, {"model": "metainfo.source", "pk": 17955, "fields": {"orig_filename": "Artner_Therese_1772_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418171}}, {"model": "metainfo.source", "pk": 17956, "fields": {"orig_filename": "Arz-Straussenburg_Arthur_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418172}}, {"model": "metainfo.source", "pk": 17957, "fields": {"orig_filename": "Arzberger_Friedrich_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31f.", "author": "", "orig_id": 1416773}}, {"model": "metainfo.source", "pk": 17958, "fields": {"orig_filename": "Arzberger_Johann_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416774}}, {"model": "metainfo.source", "pk": 17959, "fields": {"orig_filename": "Arzberger_Moriz_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416775}}, {"model": "metainfo.source", "pk": 17960, "fields": {"orig_filename": "Asboth_Oszkar_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2264594}}, {"model": "metainfo.source", "pk": 17961, "fields": {"orig_filename": "Aschauer-Achenrain-Lichtenthurn_Josef_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416776}}, {"model": "metainfo.source", "pk": 17962, "fields": {"orig_filename": "Aschbach_Josef_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416777}}, {"model": "metainfo.source", "pk": 17963, "fields": {"orig_filename": "Ascher_Anton_1820_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416778}}, {"model": "metainfo.source", "pk": 17964, "fields": {"orig_filename": "Ascher_Franzi_1910_1991.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441445}}, {"model": "metainfo.source", "pk": 17965, "fields": {"orig_filename": "Ascher_Leo_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441446}}, {"model": "metainfo.source", "pk": 17966, "fields": {"orig_filename": "Ascoli_Graziadio-Isaia_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416779}}, {"model": "metainfo.source", "pk": 17967, "fields": {"orig_filename": "Askerc_Anton_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416780}}, {"model": "metainfo.source", "pk": 17968, "fields": {"orig_filename": "Aslan_Raoul_1886_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1430338}}, {"model": "metainfo.source", "pk": 17969, "fields": {"orig_filename": "Asnyk_Adam_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416781}}, {"model": "metainfo.source", "pk": 17970, "fields": {"orig_filename": "Assemani_Simone_1752_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416783}}, {"model": "metainfo.source", "pk": 17971, "fields": {"orig_filename": "Assmayer_Ignaz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416784}}, {"model": "metainfo.source", "pk": 17972, "fields": {"orig_filename": "Asson_Michelangelo_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416785}}, {"model": "metainfo.source", "pk": 17973, "fields": {"orig_filename": "Attems-Petzenstein_Heinrich_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416788}}, {"model": "metainfo.source", "pk": 17974, "fields": {"orig_filename": "Attems_Alexander_1814_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416786}}, {"model": "metainfo.source", "pk": 17975, "fields": {"orig_filename": "Attems_Ferdinand-Maria_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416787}}, {"model": "metainfo.source", "pk": 17976, "fields": {"orig_filename": "Attems_Ignaz-Maria_1774_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416789}}, {"model": "metainfo.source", "pk": 17977, "fields": {"orig_filename": "Attems_Ottokar-Maria_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1469022}}, {"model": "metainfo.source", "pk": 17978, "fields": {"orig_filename": "Attlmayer_Richard-Isidor_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416790}}, {"model": "metainfo.source", "pk": 17979, "fields": {"orig_filename": "Attomyr_Joseph_1807_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416791}}, {"model": "metainfo.source", "pk": 17980, "fields": {"orig_filename": "Atzwanger_Hugo_1883_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1429374}}, {"model": "metainfo.source", "pk": 17981, "fields": {"orig_filename": "Atzwanger_Peter-Paul_1888_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441750}}, {"model": "metainfo.source", "pk": 17982, "fields": {"orig_filename": "Atz_Karl_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416792}}, {"model": "metainfo.source", "pk": 17983, "fields": {"orig_filename": "Auckenthaler_Engelbert_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416793}}, {"model": "metainfo.source", "pk": 17984, "fields": {"orig_filename": "Auckenthaler_Josef_1769_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416794}}, {"model": "metainfo.source", "pk": 17985, "fields": {"orig_filename": "Auer-Welsbach_Alois_1813_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34f.", "author": "", "orig_id": 1416796}}, {"model": "metainfo.source", "pk": 17986, "fields": {"orig_filename": "Auer-Welsbach_Karl_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416872}}, {"model": "metainfo.source", "pk": 17987, "fields": {"orig_filename": "Auerhan_Jan_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1992581}}, {"model": "metainfo.source", "pk": 17988, "fields": {"orig_filename": "Auernhammer_Josepha-Barbara_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447288}}, {"model": "metainfo.source", "pk": 17989, "fields": {"orig_filename": "Auernheimer_Raoul_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416873}}, {"model": "metainfo.source", "pk": 17990, "fields": {"orig_filename": "Auersperg_Adolf_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416874}}, {"model": "metainfo.source", "pk": 17991, "fields": {"orig_filename": "Auersperg_Anton-Alexander_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35f.", "author": "", "orig_id": 1416875}}, {"model": "metainfo.source", "pk": 17992, "fields": {"orig_filename": "Auersperg_Gottfried-Leopold_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416876}}, {"model": "metainfo.source", "pk": 17993, "fields": {"orig_filename": "Auersperg_Johann-Baptist_1745_1816.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468711}}, {"model": "metainfo.source", "pk": 17994, "fields": {"orig_filename": "Auersperg_Karl-Wilhelm_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416877}}, {"model": "metainfo.source", "pk": 17995, "fields": {"orig_filename": "Auersperg_Leopold_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416878}}, {"model": "metainfo.source", "pk": 17996, "fields": {"orig_filename": "Auersperg_Maximilian_1771_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416879}}, {"model": "metainfo.source", "pk": 17997, "fields": {"orig_filename": "Auer_Erich_1923_2004.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441801}}, {"model": "metainfo.source", "pk": 17998, "fields": {"orig_filename": "Auer_Hans-Wilhelm_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004022}}, {"model": "metainfo.source", "pk": 17999, "fields": {"orig_filename": "Auer_Leopold_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416795}}, {"model": "metainfo.source", "pk": 18000, "fields": {"orig_filename": "Auffenberg-Komarow_Moritz_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416880}}, {"model": "metainfo.source", "pk": 18001, "fields": {"orig_filename": "Augenfeld_Alois_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004028}}, {"model": "metainfo.source", "pk": 18002, "fields": {"orig_filename": "Augenfeld_Felix_1893_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004033}}, {"model": "metainfo.source", "pk": 18003, "fields": {"orig_filename": "August-Auenfels_Georg_1773_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416881}}, {"model": "metainfo.source", "pk": 18004, "fields": {"orig_filename": "Augustin_Ferdinand_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416883}}, {"model": "metainfo.source", "pk": 18005, "fields": {"orig_filename": "Augustin_Frantisek_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1992594}}, {"model": "metainfo.source", "pk": 18006, "fields": {"orig_filename": "Albini_Srecko_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418129}}, {"model": "metainfo.source", "pk": 18007, "fields": {"orig_filename": "Albori_Eugen_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418131}}, {"model": "metainfo.source", "pk": 18008, "fields": {"orig_filename": "Albrecht_Friedrich-Rudolf_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12f.", "author": "", "orig_id": 1418132}}, {"model": "metainfo.source", "pk": 18009, "fields": {"orig_filename": "Albrecht_Heinrich_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418133}}, {"model": "metainfo.source", "pk": 18010, "fields": {"orig_filename": "Albrecht_Hermine_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418134}}, {"model": "metainfo.source", "pk": 18011, "fields": {"orig_filename": "Albrecht_Josef_1888_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438986}}, {"model": "metainfo.source", "pk": 18012, "fields": {"orig_filename": "Albrecht_Kasimir_1738_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418135}}, {"model": "metainfo.source", "pk": 18013, "fields": {"orig_filename": "Albrizzi-Teotochi_Isabella_1760_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418136}}, {"model": "metainfo.source", "pk": 18014, "fields": {"orig_filename": "Aleardi_Aleardo_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418137}}, {"model": "metainfo.source", "pk": 18015, "fields": {"orig_filename": "Aleksic_Nikola_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418138}}, {"model": "metainfo.source", "pk": 18016, "fields": {"orig_filename": "Alemann_Wilhelm_1798_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418139}}, {"model": "metainfo.source", "pk": 18017, "fields": {"orig_filename": "Ales_Mikulas_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418145}}, {"model": "metainfo.source", "pk": 18018, "fields": {"orig_filename": "Alexander_Gustav_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418147}}, {"model": "metainfo.source", "pk": 18019, "fields": {"orig_filename": "Alexander__1857_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418146}}, {"model": "metainfo.source", "pk": 18020, "fields": {"orig_filename": "Alexandrovic_Ljubomir_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418148}}, {"model": "metainfo.source", "pk": 18021, "fields": {"orig_filename": "Algyogyi_Hermann_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2089510}}, {"model": "metainfo.source", "pk": 18022, "fields": {"orig_filename": "Alle_Moriz_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418149}}, {"model": "metainfo.source", "pk": 18023, "fields": {"orig_filename": "Allram_Adele_1826_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1418152}}, {"model": "metainfo.source", "pk": 18024, "fields": {"orig_filename": "Allram_Josef_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1418153}}, {"model": "metainfo.source", "pk": 18025, "fields": {"orig_filename": "Alma_Marian_1860_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416748}}, {"model": "metainfo.source", "pk": 18026, "fields": {"orig_filename": "Alphons_Theodor_1860_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416749}}, {"model": "metainfo.source", "pk": 18027, "fields": {"orig_filename": "Alram_Hieronymus-Josef_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416750}}, {"model": "metainfo.source", "pk": 18028, "fields": {"orig_filename": "Alscher_Otto_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416751}}, {"model": "metainfo.source", "pk": 18029, "fields": {"orig_filename": "Alschinger_Andreas_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416752}}, {"model": "metainfo.source", "pk": 18030, "fields": {"orig_filename": "Altenweisel_Josef_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1416757}}, {"model": "metainfo.source", "pk": 18031, "fields": {"orig_filename": "Alter-Waltrecht_Rudolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417699}}, {"model": "metainfo.source", "pk": 18032, "fields": {"orig_filename": "Altmann_Adolf_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447709}}, {"model": "metainfo.source", "pk": 18033, "fields": {"orig_filename": "Altmann_Anton_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417701}}, {"model": "metainfo.source", "pk": 18034, "fields": {"orig_filename": "Altmann_Josef-Hermann_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417702}}, {"model": "metainfo.source", "pk": 18035, "fields": {"orig_filename": "Altman_Josef_1777_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417700}}, {"model": "metainfo.source", "pk": 18036, "fields": {"orig_filename": "Altmuetter_Georg_1787_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16f.", "author": "", "orig_id": 1417703}}, {"model": "metainfo.source", "pk": 18037, "fields": {"orig_filename": "Altmutter_Franz_1745_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417704}}, {"model": "metainfo.source", "pk": 18038, "fields": {"orig_filename": "Altmutter_Placidus-Jakob_1780_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417705}}, {"model": "metainfo.source", "pk": 18039, "fields": {"orig_filename": "Alton_Johann-Baptist_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417706}}, {"model": "metainfo.source", "pk": 18040, "fields": {"orig_filename": "Altschul_Elias_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417707}}, {"model": "metainfo.source", "pk": 18041, "fields": {"orig_filename": "Altwirth_Heinrich_1868_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417708}}, {"model": "metainfo.source", "pk": 18042, "fields": {"orig_filename": "Alt_Franz_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416753}}, {"model": "metainfo.source", "pk": 18043, "fields": {"orig_filename": "Alt_Jakob_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15f.", "author": "", "orig_id": 1416754}}, {"model": "metainfo.source", "pk": 18044, "fields": {"orig_filename": "Alt_Rudolf_1812_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416755}}, {"model": "metainfo.source", "pk": 18045, "fields": {"orig_filename": "Amade_August_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417709}}, {"model": "metainfo.source", "pk": 18046, "fields": {"orig_filename": "Amade_Thaddaeus_1783_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417710}}, {"model": "metainfo.source", "pk": 18047, "fields": {"orig_filename": "Amann_Johann_1765_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417780}}, {"model": "metainfo.source", "pk": 18048, "fields": {"orig_filename": "Amann_Paul_1884_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441439}}, {"model": "metainfo.source", "pk": 18049, "fields": {"orig_filename": "Amati_Carlo_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417781}}, {"model": "metainfo.source", "pk": 18050, "fields": {"orig_filename": "Ambrosi_Gustinus_1893_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1439170}}, {"model": "metainfo.source", "pk": 18051, "fields": {"orig_filename": "Ambros_August-Wilhelm_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17f.", "author": "", "orig_id": 1417782}}, {"model": "metainfo.source", "pk": 18052, "fields": {"orig_filename": "Ambros_Josef_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417783}}, {"model": "metainfo.source", "pk": 18053, "fields": {"orig_filename": "Ambrozy-Migazzi_Istvan_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1824042}}, {"model": "metainfo.source", "pk": 18054, "fields": {"orig_filename": "Ambschell_Anton_1751_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417784}}, {"model": "metainfo.source", "pk": 18055, "fields": {"orig_filename": "Amerling_Friedrich_1803_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417785}}, {"model": "metainfo.source", "pk": 18056, "fields": {"orig_filename": "Amerling_Karel-Slavoj_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417786}}, {"model": "metainfo.source", "pk": 18057, "fields": {"orig_filename": "Ameseder_Eduard_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417787}}, {"model": "metainfo.source", "pk": 18058, "fields": {"orig_filename": "Ammann_Hartmann_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417788}}, {"model": "metainfo.source", "pk": 18059, "fields": {"orig_filename": "Amonn_Marius_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417791}}, {"model": "metainfo.source", "pk": 18060, "fields": {"orig_filename": "Amon_Anton_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18f.", "author": "", "orig_id": 1417789}}, {"model": "metainfo.source", "pk": 18061, "fields": {"orig_filename": "Amon_Johann-Franz_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417790}}, {"model": "metainfo.source", "pk": 18062, "fields": {"orig_filename": "Ampferer_Otto_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417792}}, {"model": "metainfo.source", "pk": 18063, "fields": {"orig_filename": "Amrus_Milan_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417793}}, {"model": "metainfo.source", "pk": 18064, "fields": {"orig_filename": "Amschl_Sepp_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417794}}, {"model": "metainfo.source", "pk": 18065, "fields": {"orig_filename": "Amster_Moritz_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417795}}, {"model": "metainfo.source", "pk": 18066, "fields": {"orig_filename": "An-Der-Lan-Hochbrunn_Hartmann_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417799}}, {"model": "metainfo.source", "pk": 18067, "fields": {"orig_filename": "Anczyc_Siegmund_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417796}}, {"model": "metainfo.source", "pk": 18068, "fields": {"orig_filename": "Anczyc_Wladislaw-Ludwig_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417797}}, {"model": "metainfo.source", "pk": 18069, "fields": {"orig_filename": "Anderle_Alois_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417867}}, {"model": "metainfo.source", "pk": 18070, "fields": {"orig_filename": "Anderle_Josef_1881_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2025324}}, {"model": "metainfo.source", "pk": 18071, "fields": {"orig_filename": "Anderloni_Pietro_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417868}}, {"model": "metainfo.source", "pk": 18072, "fields": {"orig_filename": "Andersag_Michael_1799_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417870}}, {"model": "metainfo.source", "pk": 18073, "fields": {"orig_filename": "Anders_Josef_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417869}}, {"model": "metainfo.source", "pk": 18074, "fields": {"orig_filename": "Andics_Hellmut_1922_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420663}}, {"model": "metainfo.source", "pk": 18075, "fields": {"orig_filename": "Andrassy_Julius_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20f.", "author": "", "orig_id": 1417871}}, {"model": "metainfo.source", "pk": 18076, "fields": {"orig_filename": "Andrassy_Julius_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417872}}, {"model": "metainfo.source", "pk": 18077, "fields": {"orig_filename": "Andreas_Michael_1762_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417874}}, {"model": "metainfo.source", "pk": 18078, "fields": {"orig_filename": "Andree-Eysn_Marie_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421999}}, {"model": "metainfo.source", "pk": 18079, "fields": {"orig_filename": "Andres_Leopold_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417876}}, {"model": "metainfo.source", "pk": 18080, "fields": {"orig_filename": "Andre_Emil_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417873}}, {"model": "metainfo.source", "pk": 18081, "fields": {"orig_filename": "Andrian-Werburg_Ferdinand_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21f.", "author": "", "orig_id": 1417877}}, {"model": "metainfo.source", "pk": 18082, "fields": {"orig_filename": "Andrian-Werburg_Leopold_1875_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426151}}, {"model": "metainfo.source", "pk": 18083, "fields": {"orig_filename": "Andrian-Werburg_Viktor_1813_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417878}}, {"model": "metainfo.source", "pk": 18084, "fields": {"orig_filename": "Andrlik_Karl_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417879}}, {"model": "metainfo.source", "pk": 18085, "fields": {"orig_filename": "Anelli_Angelo_1761_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417880}}, {"model": "metainfo.source", "pk": 18086, "fields": {"orig_filename": "Angel-Katan_Anny_1898_1992.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1451379}}, {"model": "metainfo.source", "pk": 18087, "fields": {"orig_filename": "Angeler_Josef_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417881}}, {"model": "metainfo.source", "pk": 18088, "fields": {"orig_filename": "Angeli_Heinrich_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417882}}, {"model": "metainfo.source", "pk": 18089, "fields": {"orig_filename": "Angeli_Moriz_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22f.", "author": "", "orig_id": 1417883}}, {"model": "metainfo.source", "pk": 18090, "fields": {"orig_filename": "Angerer_Eduard_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1419864}}, {"model": "metainfo.source", "pk": 18091, "fields": {"orig_filename": "Angerer_Hans_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417884}}, {"model": "metainfo.source", "pk": 18092, "fields": {"orig_filename": "Angerer_Karl_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417885}}, {"model": "metainfo.source", "pk": 18093, "fields": {"orig_filename": "Angerer_Ludwig_1827_1879.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1461160}}, {"model": "metainfo.source", "pk": 18094, "fields": {"orig_filename": "Angerer_Victor_1839_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1909856}}, {"model": "metainfo.source", "pk": 18095, "fields": {"orig_filename": "Angjelovic_Albert_1820_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417886}}, {"model": "metainfo.source", "pk": 18096, "fields": {"orig_filename": "Angyal_David_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417956}}, {"model": "metainfo.source", "pk": 18097, "fields": {"orig_filename": "Ankershofen_Gottlieb_1795_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23f.", "author": "", "orig_id": 1417958}}, {"model": "metainfo.source", "pk": 18098, "fields": {"orig_filename": "Anker_Mathias-Josef_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417957}}, {"model": "metainfo.source", "pk": 18099, "fields": {"orig_filename": "Ankwicz_Andreas-Ludwig_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417959}}, {"model": "metainfo.source", "pk": 18100, "fields": {"orig_filename": "Anrather_Karl_1861_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417960}}, {"model": "metainfo.source", "pk": 18101, "fields": {"orig_filename": "Anreiter_Alois_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417961}}, {"model": "metainfo.source", "pk": 18102, "fields": {"orig_filename": "Anschuetz_Auguste_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417962}}, {"model": "metainfo.source", "pk": 18103, "fields": {"orig_filename": "Anschuetz_Eduard_1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417963}}, {"model": "metainfo.source", "pk": 18104, "fields": {"orig_filename": "Anschuetz_Heinrich_1785_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417964}}, {"model": "metainfo.source", "pk": 18105, "fields": {"orig_filename": "Anthofer_Karl_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417965}}, {"model": "metainfo.source", "pk": 18106, "fields": {"orig_filename": "Anthony-Siegenfeld_Alfred_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417966}}, {"model": "metainfo.source", "pk": 18107, "fields": {"orig_filename": "Antoine_Franz-De-Paula_1768_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417967}}, {"model": "metainfo.source", "pk": 18108, "fields": {"orig_filename": "Antoine_Franz-De-Paula_1815_1886.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1823997}}, {"model": "metainfo.source", "pk": 18109, "fields": {"orig_filename": "Antoncic_Anton_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417971}}, {"model": "metainfo.source", "pk": 18110, "fields": {"orig_filename": "Abeles_Armin_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2103840}}, {"model": "metainfo.source", "pk": 18111, "fields": {"orig_filename": "Abeles_Otto_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441402}}, {"model": "metainfo.source", "pk": 18112, "fields": {"orig_filename": "Abel_Franz_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1419807}}, {"model": "metainfo.source", "pk": 18113, "fields": {"orig_filename": "Abel_Friedrich_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193586}}, {"model": "metainfo.source", "pk": 18114, "fields": {"orig_filename": "Abel_Heinrich_1843_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417764}}, {"model": "metainfo.source", "pk": 18115, "fields": {"orig_filename": "Abel_Josef_1764_1818.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417765}}, {"model": "metainfo.source", "pk": 18116, "fields": {"orig_filename": "Abel_Lothar_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417766}}, {"model": "metainfo.source", "pk": 18117, "fields": {"orig_filename": "Abel_Ludwig_1811_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1993664}}, {"model": "metainfo.source", "pk": 18118, "fields": {"orig_filename": "Abel_Othenio_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417767}}, {"model": "metainfo.source", "pk": 18119, "fields": {"orig_filename": "Abel_Rudolf_1831_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193591}}, {"model": "metainfo.source", "pk": 18120, "fields": {"orig_filename": "Abendroth_Irene_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417768}}, {"model": "metainfo.source", "pk": 18121, "fields": {"orig_filename": "Abensperg-Traun_Hugo_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417769}}, {"model": "metainfo.source", "pk": 18122, "fields": {"orig_filename": "Abensperg-Traun_Otto-Ehrenreich_1848_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431726}}, {"model": "metainfo.source", "pk": 18123, "fields": {"orig_filename": "Aberle_Karl_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417770}}, {"model": "metainfo.source", "pk": 18124, "fields": {"orig_filename": "Aberle_Matthias_1784_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417771}}, {"model": "metainfo.source", "pk": 18125, "fields": {"orig_filename": "Abertolli_Ferdinand_1781_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417773}}, {"model": "metainfo.source", "pk": 18126, "fields": {"orig_filename": "Abert_Josef_1832_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417772}}, {"model": "metainfo.source", "pk": 18127, "fields": {"orig_filename": "Abrahamowicz_David_1839_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417775}}, {"model": "metainfo.source", "pk": 18128, "fields": {"orig_filename": "Abraham_Wladislaw_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2f.", "author": "", "orig_id": 1417774}}, {"model": "metainfo.source", "pk": 18129, "fields": {"orig_filename": "Abramovicz-Adelburg_Eduard_1804_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417777}}, {"model": "metainfo.source", "pk": 18130, "fields": {"orig_filename": "Abramovicz_Bronislaw_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417776}}, {"model": "metainfo.source", "pk": 18131, "fields": {"orig_filename": "Abranyi_Emil_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417778}}, {"model": "metainfo.source", "pk": 18132, "fields": {"orig_filename": "Abranyi_Kornel_1822_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417779}}, {"model": "metainfo.source", "pk": 18133, "fields": {"orig_filename": "Abranyi_Kornel_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417847}}, {"model": "metainfo.source", "pk": 18134, "fields": {"orig_filename": "Absenger_Anton_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417848}}, {"model": "metainfo.source", "pk": 18135, "fields": {"orig_filename": "Absolon_Karel_1877_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438583}}, {"model": "metainfo.source", "pk": 18136, "fields": {"orig_filename": "Abt_Anton_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417849}}, {"model": "metainfo.source", "pk": 18137, "fields": {"orig_filename": "Acerbi_Enrico_1785_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417850}}, {"model": "metainfo.source", "pk": 18138, "fields": {"orig_filename": "Acerbi_Giuseppe_1773_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417851}}, {"model": "metainfo.source", "pk": 18139, "fields": {"orig_filename": "Achazel_Matthias_1779_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3f.", "author": "", "orig_id": 1417852}}, {"model": "metainfo.source", "pk": 18140, "fields": {"orig_filename": "Achleuthner_Leonhard_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417853}}, {"model": "metainfo.source", "pk": 18141, "fields": {"orig_filename": "Ackerl_Johann_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431400}}, {"model": "metainfo.source", "pk": 18142, "fields": {"orig_filename": "Ackermann_Leopold_1771_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417854}}, {"model": "metainfo.source", "pk": 18143, "fields": {"orig_filename": "Ackner_Johann-Michael_1782_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417855}}, {"model": "metainfo.source", "pk": 18144, "fields": {"orig_filename": "Adamberger_Antonie_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417858}}, {"model": "metainfo.source", "pk": 18145, "fields": {"orig_filename": "Adamczik_Josef_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417859}}, {"model": "metainfo.source", "pk": 18146, "fields": {"orig_filename": "Adamek_Bohumil_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417860}}, {"model": "metainfo.source", "pk": 18147, "fields": {"orig_filename": "Adamek_Karel-Vaclav_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2147988}}, {"model": "metainfo.source", "pk": 18148, "fields": {"orig_filename": "Adamek_Karel_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417863}}, {"model": "metainfo.source", "pk": 18149, "fields": {"orig_filename": "Adametz_Karoline_1879_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1451307}}, {"model": "metainfo.source", "pk": 18150, "fields": {"orig_filename": "Adametz_Leopold_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417861}}, {"model": "metainfo.source", "pk": 18151, "fields": {"orig_filename": "Adamic_Emil_1877_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417862}}, {"model": "metainfo.source", "pk": 18152, "fields": {"orig_filename": "Adamkiewicz_Albert_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417864}}, {"model": "metainfo.source", "pk": 18153, "fields": {"orig_filename": "Adamovic_Lujo_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417865}}, {"model": "metainfo.source", "pk": 18154, "fields": {"orig_filename": "Adams_John-Quincy_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417866}}, {"model": "metainfo.source", "pk": 18155, "fields": {"orig_filename": "Adam_Heinrich_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417856}}, {"model": "metainfo.source", "pk": 18156, "fields": {"orig_filename": "Adam_Karl_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431473}}, {"model": "metainfo.source", "pk": 18157, "fields": {"orig_filename": "Adam_Walter_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417857}}, {"model": "metainfo.source", "pk": 18158, "fields": {"orig_filename": "Adelburg_August_1830_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417936}}, {"model": "metainfo.source", "pk": 18159, "fields": {"orig_filename": "Adler_Alfred_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417937}}, {"model": "metainfo.source", "pk": 18160, "fields": {"orig_filename": "Adler_Emanuel_1873_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417938}}, {"model": "metainfo.source", "pk": 18161, "fields": {"orig_filename": "Adler_Emma_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431442}}, {"model": "metainfo.source", "pk": 18162, "fields": {"orig_filename": "Adler_Eugen_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417939}}, {"model": "metainfo.source", "pk": 18163, "fields": {"orig_filename": "Adler_Felix_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431187}}, {"model": "metainfo.source", "pk": 18164, "fields": {"orig_filename": "Adler_Friedrich_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417940}}, {"model": "metainfo.source", "pk": 18165, "fields": {"orig_filename": "Adler_Guido_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6f.", "author": "", "orig_id": 1417941}}, {"model": "metainfo.source", "pk": 18166, "fields": {"orig_filename": "Adler_Karl_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417942}}, {"model": "metainfo.source", "pk": 18167, "fields": {"orig_filename": "Adler_Max_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417943}}, {"model": "metainfo.source", "pk": 18168, "fields": {"orig_filename": "Adler_Sigmund_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417944}}, {"model": "metainfo.source", "pk": 18169, "fields": {"orig_filename": "Adler_Viktor_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7f.", "author": "", "orig_id": 1417945}}, {"model": "metainfo.source", "pk": 18170, "fields": {"orig_filename": "Adler_Vinzenz_1826_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417946}}, {"model": "metainfo.source", "pk": 18171, "fields": {"orig_filename": "Adlmueller_Fred_1909_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438762}}, {"model": "metainfo.source", "pk": 18172, "fields": {"orig_filename": "Adolf_Helen_1895_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1431418}}, {"model": "metainfo.source", "pk": 18173, "fields": {"orig_filename": "Adolph_Karl_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417947}}, {"model": "metainfo.source", "pk": 18174, "fields": {"orig_filename": "Adrian-Dussek_Eduard_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417949}}, {"model": "metainfo.source", "pk": 18175, "fields": {"orig_filename": "Adrian_Karl_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417948}}, {"model": "metainfo.source", "pk": 18176, "fields": {"orig_filename": "Adrowitzer_Alfred_1916_1982.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1438806}}, {"model": "metainfo.source", "pk": 18177, "fields": {"orig_filename": "Ady_Andreas_1877_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417950}}, {"model": "metainfo.source", "pk": 18178, "fields": {"orig_filename": "Aehrenthal_Aloys_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8f.", "author": "", "orig_id": 1417951}}, {"model": "metainfo.source", "pk": 18179, "fields": {"orig_filename": "Aelschker_Edmund_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417952}}, {"model": "metainfo.source", "pk": 18180, "fields": {"orig_filename": "Afritsch_Anton_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417953}}, {"model": "metainfo.source", "pk": 18181, "fields": {"orig_filename": "Aglietti_Francesco_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417954}}, {"model": "metainfo.source", "pk": 18182, "fields": {"orig_filename": "Aglio_Agostino_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417955}}, {"model": "metainfo.source", "pk": 18183, "fields": {"orig_filename": "Agnoletto_Angelo_1743_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418029}}, {"model": "metainfo.source", "pk": 18184, "fields": {"orig_filename": "Agricola_Karl_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418030}}, {"model": "metainfo.source", "pk": 18185, "fields": {"orig_filename": "Ahna_Eleonore_1838_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418031}}, {"model": "metainfo.source", "pk": 18186, "fields": {"orig_filename": "Ahna_Heinrich_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418032}}, {"model": "metainfo.source", "pk": 18187, "fields": {"orig_filename": "Ahrer_Jacob_1888_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447275}}, {"model": "metainfo.source", "pk": 18188, "fields": {"orig_filename": "Aichelberg_Ludwig_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418033}}, {"model": "metainfo.source", "pk": 18189, "fields": {"orig_filename": "Aichelburg-Labia_Leopold_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418035}}, {"model": "metainfo.source", "pk": 18190, "fields": {"orig_filename": "Aichelburg_Eugen_1862_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418034}}, {"model": "metainfo.source", "pk": 18191, "fields": {"orig_filename": "Aichen_Josef_1745_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418036}}, {"model": "metainfo.source", "pk": 18192, "fields": {"orig_filename": "Aicher_Anton_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418037}}, {"model": "metainfo.source", "pk": 18193, "fields": {"orig_filename": "Aichhorn_Sigmund_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2254324}}, {"model": "metainfo.source", "pk": 18194, "fields": {"orig_filename": "Aichinger_Hermann_1885_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438873}}, {"model": "metainfo.source", "pk": 18195, "fields": {"orig_filename": "Aichinger_Hermann_1917_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438876}}, {"model": "metainfo.source", "pk": 18196, "fields": {"orig_filename": "Aichinger_Johann-Ev_1805_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418038}}, {"model": "metainfo.source", "pk": 18197, "fields": {"orig_filename": "Aichner_Simon_1818_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418039}}, {"model": "metainfo.source", "pk": 18198, "fields": {"orig_filename": "Aigner_Franz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10f.", "author": "", "orig_id": 1418040}}, {"model": "metainfo.source", "pk": 18199, "fields": {"orig_filename": "Aigner_Josef-Matthias_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418041}}, {"model": "metainfo.source", "pk": 18200, "fields": {"orig_filename": "Aigner_Michael_1805_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418042}}, {"model": "metainfo.source", "pk": 18201, "fields": {"orig_filename": "Ainhauser_Maria-Alberta-Eugenia_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1469933}}, {"model": "metainfo.source", "pk": 18202, "fields": {"orig_filename": "Ainmiller_Heinrich_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418043}}, {"model": "metainfo.source", "pk": 18203, "fields": {"orig_filename": "Ajdukiewicz_Siegmund_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418044}}, {"model": "metainfo.source", "pk": 18204, "fields": {"orig_filename": "Ajdukiewicz_Thaddaeus_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418045}}, {"model": "metainfo.source", "pk": 18205, "fields": {"orig_filename": "Albach_Joseph-Stanislaus_1795_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418046}}, {"model": "metainfo.source", "pk": 18206, "fields": {"orig_filename": "Albach_Julius_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418047}}, {"model": "metainfo.source", "pk": 18207, "fields": {"orig_filename": "Alber-Glanstaetten_August_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11f.", "author": "", "orig_id": 1418048}}, {"model": "metainfo.source", "pk": 18208, "fields": {"orig_filename": "Albertolli_Giocondo_1742_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418128}}, {"model": "metainfo.source", "pk": 18209, "fields": {"orig_filename": "Albert_August_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418049}}, {"model": "metainfo.source", "pk": 18210, "fields": {"orig_filename": "Albert_Eduard_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418050}}, {"model": "metainfo.source", "pk": 18211, "fields": {"orig_filename": "Albert_Michael_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418051}}, {"model": "metainfo.source", "pk": 18212, "fields": {"orig_filename": "Albieri_Pavel_1861_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147985}}, {"model": "metainfo.source", "pk": 18213, "fields": {"orig_filename": "Tschermak-Seysenegg_Gustav_1836_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 484f.", "author": "", "orig_id": 1425768}}, {"model": "metainfo.source", "pk": 18214, "fields": {"orig_filename": "Tschernich_Franz-Rudolf_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 485f.", "author": "", "orig_id": 1868111}}, {"model": "metainfo.source", "pk": 18215, "fields": {"orig_filename": "Tschiderer-Gleifheim_Ernst_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 486f.", "author": "", "orig_id": 1425806}}, {"model": "metainfo.source", "pk": 18216, "fields": {"orig_filename": "Tschiderer-Gleifheim_Johann-Nepomuk_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 486f.", "author": "", "orig_id": 1425807}}, {"model": "metainfo.source", "pk": 18217, "fields": {"orig_filename": "Tschinkel_Anton_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 487", "author": "", "orig_id": 1449391}}, {"model": "metainfo.source", "pk": 18218, "fields": {"orig_filename": "Tschinkel_August_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 487f.", "author": "", "orig_id": 1449390}}, {"model": "metainfo.source", "pk": 18219, "fields": {"orig_filename": "Tschinkel_Emanuel_1814_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488", "author": "", "orig_id": 1425811}}, {"model": "metainfo.source", "pk": 18220, "fields": {"orig_filename": "Tschinkel_Hans_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488f.", "author": "", "orig_id": 1445281}}, {"model": "metainfo.source", "pk": 18221, "fields": {"orig_filename": "Tschinkel_Theodor_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488", "author": "", "orig_id": 2298522}}, {"model": "metainfo.source", "pk": 18222, "fields": {"orig_filename": "Tschinkel_Wilhelm_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 489", "author": "", "orig_id": 2292498}}, {"model": "metainfo.source", "pk": 18223, "fields": {"orig_filename": "Tschoell_Johann-Valentin_1749_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 489f.", "author": "", "orig_id": 1425813}}, {"model": "metainfo.source", "pk": 18224, "fields": {"orig_filename": "Tschoepe_Emanuel_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 490f.", "author": "", "orig_id": 1425814}}, {"model": "metainfo.source", "pk": 18225, "fields": {"orig_filename": "Tschofenig_Gisela_1917_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 491", "author": "", "orig_id": 1425818}}, {"model": "metainfo.source", "pk": 18226, "fields": {"orig_filename": "Tschudi_Hugo_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 491f.", "author": "", "orig_id": 1425855}}, {"model": "metainfo.source", "pk": 18227, "fields": {"orig_filename": "Tschudi_Johann-Jakob_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 492f.", "author": "", "orig_id": 1425858}}, {"model": "metainfo.source", "pk": 18228, "fields": {"orig_filename": "Tschuggmall_Christian-Josef_1785_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 493f.", "author": "", "orig_id": 1425860}}, {"model": "metainfo.source", "pk": 18229, "fields": {"orig_filename": "Tschulik_Emanuel-Louis_1819_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 493f.", "author": "", "orig_id": 1425863}}, {"model": "metainfo.source", "pk": 18230, "fields": {"orig_filename": "Tschuppik_Friedrich_1816_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 494f.", "author": "", "orig_id": 2294062}}, {"model": "metainfo.source", "pk": 18231, "fields": {"orig_filename": "Tschuppik_Karl_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 495f.", "author": "", "orig_id": 1425864}}, {"model": "metainfo.source", "pk": 18232, "fields": {"orig_filename": "Tschurtschenthaler-Helmheim_Anton-Alois_1815_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 497", "author": "", "orig_id": 1425909}}, {"model": "metainfo.source", "pk": 18233, "fields": {"orig_filename": "Tschurtschenthaler-Helmheim_Heinrich_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 497f.", "author": "", "orig_id": 2264192}}, {"model": "metainfo.source", "pk": 18234, "fields": {"orig_filename": "Tschurtschenthaler_Johann_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 496", "author": "", "orig_id": 1425910}}, {"model": "metainfo.source", "pk": 18235, "fields": {"orig_filename": "Tschurtschenthaler_Paul_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 496f.", "author": "", "orig_id": 1425913}}, {"model": "metainfo.source", "pk": 18236, "fields": {"orig_filename": "Tschusi-Schmidhoffen_Viktor_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 498f.", "author": "", "orig_id": 1425916}}, {"model": "metainfo.source", "pk": 18237, "fields": {"orig_filename": "Tucek_Vincenc_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 499", "author": "", "orig_id": 1425953}}, {"model": "metainfo.source", "pk": 18238, "fields": {"orig_filename": "Tucny_Alois_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 499f.", "author": "", "orig_id": 2206927}}, {"model": "metainfo.source", "pk": 18239, "fields": {"orig_filename": "Tuczek_Anton_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 500", "author": "", "orig_id": 1455589}}, {"model": "metainfo.source", "pk": 18240, "fields": {"orig_filename": "Tuedoes_Istvan_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 500f.", "author": "", "orig_id": 1458424}}, {"model": "metainfo.source", "pk": 18241, "fields": {"orig_filename": "Tuerckheim-Altdorf_Friedrich-Rudolf_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 501f.", "author": "", "orig_id": 2264216}}, {"model": "metainfo.source", "pk": 18242, "fields": {"orig_filename": "Tuerck_Ludwig_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 501", "author": "", "orig_id": 1425957}}, {"model": "metainfo.source", "pk": 18243, "fields": {"orig_filename": "Tuerkel_Siegfried-Karl_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 504f.", "author": "", "orig_id": 1425475}}, {"model": "metainfo.source", "pk": 18244, "fields": {"orig_filename": "Tuerkheim-Geisslern_Ludwig-Johann-Nepomuk_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 505f.", "author": "", "orig_id": 1455594}}, {"model": "metainfo.source", "pk": 18245, "fields": {"orig_filename": "Tuerkheim_Ludwig_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 505f.", "author": "", "orig_id": 1425994}}, {"model": "metainfo.source", "pk": 18246, "fields": {"orig_filename": "Tuerk_Eduard_1852_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 402", "author": "", "orig_id": 1425962}}, {"model": "metainfo.source", "pk": 18247, "fields": {"orig_filename": "Tuerk_Johann-Baptist_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 502f.", "author": "", "orig_id": 1425987}}, {"model": "metainfo.source", "pk": 18248, "fields": {"orig_filename": "Tuerk_Karl_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 504", "author": "", "orig_id": 1425989}}, {"model": "metainfo.source", "pk": 18249, "fields": {"orig_filename": "Tuerk_Wilhelm_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 503f.", "author": "", "orig_id": 1425992}}, {"model": "metainfo.source", "pk": 18250, "fields": {"orig_filename": "Tuerr_Istvan_1825_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 506", "author": "", "orig_id": 1429094}}, {"model": "metainfo.source", "pk": 18251, "fields": {"orig_filename": "Tuka_Vojtech_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 506f.", "author": "", "orig_id": 1425998}}, {"model": "metainfo.source", "pk": 18252, "fields": {"orig_filename": "Tulka_Josef_1846_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 507f.", "author": "", "orig_id": 2167733}}, {"model": "metainfo.source", "pk": 18253, "fields": {"orig_filename": "Tullinger_Bertha_1861_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509", "author": "", "orig_id": 2293250}}, {"model": "metainfo.source", "pk": 18254, "fields": {"orig_filename": "Tullinger_Moritz_1866_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509", "author": "", "orig_id": 2269989}}, {"model": "metainfo.source", "pk": 18255, "fields": {"orig_filename": "Tullinger_Paula_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 508f.", "author": "", "orig_id": 1450315}}, {"model": "metainfo.source", "pk": 18256, "fields": {"orig_filename": "Tull_Oedoen_1870_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 508", "author": "", "orig_id": 1425999}}, {"model": "metainfo.source", "pk": 18257, "fields": {"orig_filename": "Tuma_Henrik_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509f.", "author": "", "orig_id": 1426003}}, {"model": "metainfo.source", "pk": 18258, "fields": {"orig_filename": "Tuma_Josef_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 510f.", "author": "", "orig_id": 1426027}}, {"model": "metainfo.source", "pk": 18259, "fields": {"orig_filename": "Tuma_Karel_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 511f.", "author": "", "orig_id": 1426028}}, {"model": "metainfo.source", "pk": 18260, "fields": {"orig_filename": "Tumova_Marie_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 512", "author": "", "orig_id": 2293165}}, {"model": "metainfo.source", "pk": 18261, "fields": {"orig_filename": "Trapp_Werner_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 426f.", "author": "", "orig_id": 1456014}}, {"model": "metainfo.source", "pk": 18262, "fields": {"orig_filename": "Trassler_Adolph-Karl_1793_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1456087}}, {"model": "metainfo.source", "pk": 18263, "fields": {"orig_filename": "Trassler_Johann-Baptist_1787_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1426130}}, {"model": "metainfo.source", "pk": 18264, "fields": {"orig_filename": "Trassler_Joseph-Georg_1759_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1426131}}, {"model": "metainfo.source", "pk": 18265, "fields": {"orig_filename": "Trattinnick_Carl_1801_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 428f.", "author": "", "orig_id": 1456090}}, {"model": "metainfo.source", "pk": 18266, "fields": {"orig_filename": "Trattinnick_Leopold_1764_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 428f.", "author": "", "orig_id": 1426136}}, {"model": "metainfo.source", "pk": 18267, "fields": {"orig_filename": "Trattner-Karolyi-Karolypaty-Vasvar_Istvan_1794_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 2200824}}, {"model": "metainfo.source", "pk": 18268, "fields": {"orig_filename": "Trattner-Petroza_Janos-Tamas_1789_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 1458430}}, {"model": "metainfo.source", "pk": 18269, "fields": {"orig_filename": "Trattner-Petroza_Matyas_1745_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 2200701}}, {"model": "metainfo.source", "pk": 18270, "fields": {"orig_filename": "Traub_Hugo_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 431", "author": "", "orig_id": 2206758}}, {"model": "metainfo.source", "pk": 18271, "fields": {"orig_filename": "Traunfellner_Alois_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 431f.", "author": "", "orig_id": 1425576}}, {"model": "metainfo.source", "pk": 18272, "fields": {"orig_filename": "Traunsteiner_Joseph_1798_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 432f.", "author": "", "orig_id": 1447654}}, {"model": "metainfo.source", "pk": 18273, "fields": {"orig_filename": "Trausch_Joseph-Karl_1842_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433", "author": "", "orig_id": 2201126}}, {"model": "metainfo.source", "pk": 18274, "fields": {"orig_filename": "Trausch_Joseph_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433", "author": "", "orig_id": 1425612}}, {"model": "metainfo.source", "pk": 18275, "fields": {"orig_filename": "Trautenberger_Gustav-Gottlieb_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 434f.", "author": "", "orig_id": 1425619}}, {"model": "metainfo.source", "pk": 18276, "fields": {"orig_filename": "Trautmann_Leopold_1766_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 435", "author": "", "orig_id": 1425661}}, {"model": "metainfo.source", "pk": 18277, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Ferdinand_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 435f.", "author": "", "orig_id": 1425669}}, {"model": "metainfo.source", "pk": 18278, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Ferdinand_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 436f.", "author": "", "orig_id": 1425667}}, {"model": "metainfo.source", "pk": 18279, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Josef_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 437f.", "author": "", "orig_id": 1456083}}, {"model": "metainfo.source", "pk": 18280, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Joseph-Ferdinand_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 437", "author": "", "orig_id": 1425705}}, {"model": "metainfo.source", "pk": 18281, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Maria-Thaddaeus_1761_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 438", "author": "", "orig_id": 1425708}}, {"model": "metainfo.source", "pk": 18282, "fields": {"orig_filename": "Traut_Karl_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433f.", "author": "", "orig_id": 1425618}}, {"model": "metainfo.source", "pk": 18283, "fields": {"orig_filename": "Trauzl_Isidor_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 438f.", "author": "", "orig_id": 1425712}}, {"model": "metainfo.source", "pk": 18284, "fields": {"orig_filename": "Trau_Carl_1811_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429f.", "author": "", "orig_id": 1425482}}, {"model": "metainfo.source", "pk": 18285, "fields": {"orig_filename": "Trau_Franz_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 430", "author": "", "orig_id": 1425481}}, {"model": "metainfo.source", "pk": 18286, "fields": {"orig_filename": "Trau_Franz_1881_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 430f.", "author": "", "orig_id": 1453314}}, {"model": "metainfo.source", "pk": 18287, "fields": {"orig_filename": "Trcka_Anton-Josef_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 439f.", "author": "", "orig_id": 1425749}}, {"model": "metainfo.source", "pk": 18288, "fields": {"orig_filename": "Trebitsch-Lincoln_Ignatius-Timothy_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 442f.", "author": "", "orig_id": 1425791}}, {"model": "metainfo.source", "pk": 18289, "fields": {"orig_filename": "Trebitsch_Arthur_1880_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1425752}}, {"model": "metainfo.source", "pk": 18290, "fields": {"orig_filename": "Trebitsch_Leopold_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1414302}}, {"model": "metainfo.source", "pk": 18291, "fields": {"orig_filename": "Trebitsch_Nehemias_1779_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441", "author": "", "orig_id": 1425753}}, {"model": "metainfo.source", "pk": 18292, "fields": {"orig_filename": "Trebitsch_Oscar_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1453718}}, {"model": "metainfo.source", "pk": 18293, "fields": {"orig_filename": "Trebitsch_Rudolf_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441f.", "author": "", "orig_id": 1425755}}, {"model": "metainfo.source", "pk": 18294, "fields": {"orig_filename": "Trebitsch_Sigmund_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441", "author": "", "orig_id": 2286076}}, {"model": "metainfo.source", "pk": 18295, "fields": {"orig_filename": "Treffer_Georg_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 443f.", "author": "", "orig_id": 1425795}}, {"model": "metainfo.source", "pk": 18296, "fields": {"orig_filename": "Trefort_Agoston_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 444", "author": "", "orig_id": 1425880}}, {"model": "metainfo.source", "pk": 18297, "fields": {"orig_filename": "Treiber_Josef_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 444f.", "author": "", "orig_id": 1426138}}, {"model": "metainfo.source", "pk": 18298, "fields": {"orig_filename": "Treitl_Josef_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 445f.", "author": "", "orig_id": 1426146}}, {"model": "metainfo.source", "pk": 18299, "fields": {"orig_filename": "Treitschke_Georg-Friedrich_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 446f.", "author": "", "orig_id": 1426147}}, {"model": "metainfo.source", "pk": 18300, "fields": {"orig_filename": "Treitschke_Magdalena_1788_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 447", "author": "", "orig_id": 1456216}}, {"model": "metainfo.source", "pk": 18301, "fields": {"orig_filename": "Treitz_Vaclav_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 447f.", "author": "", "orig_id": 1447929}}, {"model": "metainfo.source", "pk": 18302, "fields": {"orig_filename": "Tremler_Karoline-Wilhelmine_1791_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 449", "author": "", "orig_id": 2279028}}, {"model": "metainfo.source", "pk": 18303, "fields": {"orig_filename": "Tremler_Wenzel_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 448f.", "author": "", "orig_id": 1425442}}, {"model": "metainfo.source", "pk": 18304, "fields": {"orig_filename": "Treml_Friedrich_1816_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 448", "author": "", "orig_id": 1425440}}, {"model": "metainfo.source", "pk": 18305, "fields": {"orig_filename": "Tremmel_Ludwig_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 449f.", "author": "", "orig_id": 1450307}}, {"model": "metainfo.source", "pk": 18306, "fields": {"orig_filename": "Trenkler_Anton-Gustav_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 450", "author": "", "orig_id": 1425490}}, {"model": "metainfo.source", "pk": 18307, "fields": {"orig_filename": "Trenkwalder_Dominik_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 452f.", "author": "", "orig_id": 1425537}}, {"model": "metainfo.source", "pk": 18308, "fields": {"orig_filename": "Trenkwald_Hermann_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 450f.", "author": "", "orig_id": 1425493}}, {"model": "metainfo.source", "pk": 18309, "fields": {"orig_filename": "Trenkwald_Josef-Mathias_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 451f.", "author": "", "orig_id": 1425494}}, {"model": "metainfo.source", "pk": 18310, "fields": {"orig_filename": "Trentini_Albert_1878_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 453", "author": "", "orig_id": 1424334}}, {"model": "metainfo.source", "pk": 18311, "fields": {"orig_filename": "Trentsensky_Josef_1794_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454", "author": "", "orig_id": 1448566}}, {"model": "metainfo.source", "pk": 18312, "fields": {"orig_filename": "Trentsensky_Mathias_1790_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454", "author": "", "orig_id": 1425582}}, {"model": "metainfo.source", "pk": 18313, "fields": {"orig_filename": "Treo_Dragotin_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454f.", "author": "", "orig_id": 2169212}}, {"model": "metainfo.source", "pk": 18314, "fields": {"orig_filename": "Treo_Wilhelm_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 455", "author": "", "orig_id": 2169408}}, {"model": "metainfo.source", "pk": 18315, "fields": {"orig_filename": "Tresic-Pavicic_Ante_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 455f.", "author": "", "orig_id": 2047431}}, {"model": "metainfo.source", "pk": 18316, "fields": {"orig_filename": "Treuinfels_Leo-Maria_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 456f.", "author": "", "orig_id": 1425674}}, {"model": "metainfo.source", "pk": 18317, "fields": {"orig_filename": "Treumann_Karl_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 457f.", "author": "", "orig_id": 1425676}}, {"model": "metainfo.source", "pk": 18318, "fields": {"orig_filename": "Treumann_Louis_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 458f.", "author": "", "orig_id": 1425677}}, {"model": "metainfo.source", "pk": 18319, "fields": {"orig_filename": "Treusch-Buttlar-Brandenfels_Oskar_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 459", "author": "", "orig_id": 1425678}}, {"model": "metainfo.source", "pk": 18320, "fields": {"orig_filename": "Treval_Emil_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 459f.", "author": "", "orig_id": 2174359}}, {"model": "metainfo.source", "pk": 18321, "fields": {"orig_filename": "Treves_Emilio_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 460f.", "author": "", "orig_id": 1456353}}, {"model": "metainfo.source", "pk": 18322, "fields": {"orig_filename": "Treves_Sabato-Graziadio_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461", "author": "", "orig_id": 1456359}}, {"model": "metainfo.source", "pk": 18323, "fields": {"orig_filename": "Trevisanato_Giuseppe-Luigi_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461", "author": "", "orig_id": 1425719}}, {"model": "metainfo.source", "pk": 18324, "fields": {"orig_filename": "Triebensee_Henriette_1819_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 462f.", "author": "", "orig_id": 2298411}}, {"model": "metainfo.source", "pk": 18325, "fields": {"orig_filename": "Triebensee_Josef_1772_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 462f.", "author": "", "orig_id": 1456419}}, {"model": "metainfo.source", "pk": 18326, "fields": {"orig_filename": "Trieb_Siegfried-Karl_1899_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461f.", "author": "", "orig_id": 1447848}}, {"model": "metainfo.source", "pk": 18327, "fields": {"orig_filename": "Trientl_Adolf_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463", "author": "", "orig_id": 1425842}}, {"model": "metainfo.source", "pk": 18328, "fields": {"orig_filename": "Trientl_Tobias_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463", "author": "", "orig_id": 1425843}}, {"model": "metainfo.source", "pk": 18329, "fields": {"orig_filename": "Triesnecker_Franz-De-Paula_1745_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463f.", "author": "", "orig_id": 1425848}}, {"model": "metainfo.source", "pk": 18330, "fields": {"orig_filename": "Triulzi_Anton_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 464f.", "author": "", "orig_id": 1456429}}, {"model": "metainfo.source", "pk": 18331, "fields": {"orig_filename": "Triulzi_Anton_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 465", "author": "", "orig_id": 1425895}}, {"model": "metainfo.source", "pk": 18332, "fields": {"orig_filename": "Trnina_Milka_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 465f.", "author": "", "orig_id": 1434342}}, {"model": "metainfo.source", "pk": 18333, "fields": {"orig_filename": "Trnka-Laberon_Ottokar_1871_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 466f.", "author": "", "orig_id": 1425903}}, {"model": "metainfo.source", "pk": 18334, "fields": {"orig_filename": "Trnka_Frantisek-Dobromysl_1798_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 466", "author": "", "orig_id": 2174389}}, {"model": "metainfo.source", "pk": 18335, "fields": {"orig_filename": "Trnobransky_Vaclav-Vilem_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 467", "author": "", "orig_id": 2174401}}, {"model": "metainfo.source", "pk": 18336, "fields": {"orig_filename": "Trojan-Bylanfeld_Frantisek-Bretislav_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 468f.", "author": "", "orig_id": 1455400}}, {"model": "metainfo.source", "pk": 18337, "fields": {"orig_filename": "Trojan_Alois-Pravoslav_1815_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 467f.", "author": "", "orig_id": 1426057}}, {"model": "metainfo.source", "pk": 18338, "fields": {"orig_filename": "Troll-Borostyani_Irma_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 469f.", "author": "", "orig_id": 1426062}}, {"model": "metainfo.source", "pk": 18339, "fields": {"orig_filename": "Trollmann-Lovcenberg_Ignaz_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 470", "author": "", "orig_id": 1426097}}, {"model": "metainfo.source", "pk": 18340, "fields": {"orig_filename": "Tropp_Neumann_1873_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 470f.", "author": "", "orig_id": 2202201}}, {"model": "metainfo.source", "pk": 18341, "fields": {"orig_filename": "Tropsch_Rudolf_1870_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 471f.", "author": "", "orig_id": 1426101}}, {"model": "metainfo.source", "pk": 18342, "fields": {"orig_filename": "Trops_Stjepan_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 471", "author": "", "orig_id": 1448671}}, {"model": "metainfo.source", "pk": 18343, "fields": {"orig_filename": "Troskow_Rudolf_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 472", "author": "", "orig_id": 1423808}}, {"model": "metainfo.source", "pk": 18344, "fields": {"orig_filename": "Trost_Johann_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 472f.", "author": "", "orig_id": 1426104}}, {"model": "metainfo.source", "pk": 18345, "fields": {"orig_filename": "Trotter_Camillo_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 473", "author": "", "orig_id": 1426108}}, {"model": "metainfo.source", "pk": 18346, "fields": {"orig_filename": "Trstenjak_Anton_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 473f.", "author": "", "orig_id": 1425452}}, {"model": "metainfo.source", "pk": 18347, "fields": {"orig_filename": "Trstenjak_Davorin_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 474", "author": "", "orig_id": 1425453}}, {"model": "metainfo.source", "pk": 18348, "fields": {"orig_filename": "Trstenjak_Davorin_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 474f.", "author": "", "orig_id": 2169524}}, {"model": "metainfo.source", "pk": 18349, "fields": {"orig_filename": "Trubetzkoy_Nikolaj-Sergeevic_1890_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 475f.", "author": "", "orig_id": 1425456}}, {"model": "metainfo.source", "pk": 18350, "fields": {"orig_filename": "Truchsess-Waldburg-Zeil_Maria-Walburga_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 476", "author": "", "orig_id": 1425458}}, {"model": "metainfo.source", "pk": 18351, "fields": {"orig_filename": "Truhlar_Antonin_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 476f.", "author": "", "orig_id": 1425631}}, {"model": "metainfo.source", "pk": 18352, "fields": {"orig_filename": "Truhlar_Josef_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 477f.", "author": "", "orig_id": 1425632}}, {"model": "metainfo.source", "pk": 18353, "fields": {"orig_filename": "Trumbic_Ante_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 478", "author": "", "orig_id": 1425633}}, {"model": "metainfo.source", "pk": 18354, "fields": {"orig_filename": "Truxa_Celestina_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 478f.", "author": "", "orig_id": 1425640}}, {"model": "metainfo.source", "pk": 18355, "fields": {"orig_filename": "Truxa_Hans-Maria_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 479f.", "author": "", "orig_id": 1425641}}, {"model": "metainfo.source", "pk": 18356, "fields": {"orig_filename": "Trylovskyj_Kyrylo_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 480", "author": "", "orig_id": 1425643}}, {"model": "metainfo.source", "pk": 18357, "fields": {"orig_filename": "Tschabuschnigg_Adolf-Ignatz_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 480f.", "author": "", "orig_id": 1425683}}, {"model": "metainfo.source", "pk": 18358, "fields": {"orig_filename": "Tschager_Josef_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 481f.", "author": "", "orig_id": 1425685}}, {"model": "metainfo.source", "pk": 18359, "fields": {"orig_filename": "Tschallener_Johann-Nikolaus_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 482", "author": "", "orig_id": 1425687}}, {"model": "metainfo.source", "pk": 18360, "fields": {"orig_filename": "Tschampa_Franziska_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 482f.", "author": "", "orig_id": 1455528}}, {"model": "metainfo.source", "pk": 18361, "fields": {"orig_filename": "Tschapeck_Hippolyt_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 483", "author": "", "orig_id": 1468335}}, {"model": "metainfo.source", "pk": 18362, "fields": {"orig_filename": "Tschebull_Anton_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 483f.", "author": "", "orig_id": 1825316}}, {"model": "metainfo.source", "pk": 18363, "fields": {"orig_filename": "Toepper_Andreas_1786_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 369f.", "author": "", "orig_id": 1423699}}, {"model": "metainfo.source", "pk": 18364, "fields": {"orig_filename": "Toerley-Csantaver_Jozsef_1858_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 370", "author": "", "orig_id": 2195987}}, {"model": "metainfo.source", "pk": 18365, "fields": {"orig_filename": "Toeroek-Csaford-Jobbahaza_Janos_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 372ff.", "author": "", "orig_id": 1423733}}, {"model": "metainfo.source", "pk": 18366, "fields": {"orig_filename": "Toeroek-Nemescso_Ignac_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 373", "author": "", "orig_id": 1456066}}, {"model": "metainfo.source", "pk": 18367, "fields": {"orig_filename": "Toeroek-Ponor_Aurel_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 373f.", "author": "", "orig_id": 1423730}}, {"model": "metainfo.source", "pk": 18368, "fields": {"orig_filename": "Toeroek_Gyula_1888_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 370f.", "author": "", "orig_id": 2196008}}, {"model": "metainfo.source", "pk": 18369, "fields": {"orig_filename": "Toeroek_Lajos_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 371f.", "author": "", "orig_id": 1454773}}, {"model": "metainfo.source", "pk": 18370, "fields": {"orig_filename": "Toeroek_Pal_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 372", "author": "", "orig_id": 1423737}}, {"model": "metainfo.source", "pk": 18371, "fields": {"orig_filename": "Toery_Emil_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374", "author": "", "orig_id": 1458609}}, {"model": "metainfo.source", "pk": 18372, "fields": {"orig_filename": "Toery_Gusztav_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374", "author": "", "orig_id": 1423739}}, {"model": "metainfo.source", "pk": 18373, "fields": {"orig_filename": "Tofan_George_1880_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374f.", "author": "", "orig_id": 1423740}}, {"model": "metainfo.source", "pk": 18374, "fields": {"orig_filename": "Toggenburg_Georg-Otto_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 375f.", "author": "", "orig_id": 1423776}}, {"model": "metainfo.source", "pk": 18375, "fields": {"orig_filename": "Toldt_Carl_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 376", "author": "", "orig_id": 1423783}}, {"model": "metainfo.source", "pk": 18376, "fields": {"orig_filename": "Toldy_Ferenc_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 376f.", "author": "", "orig_id": 1423784}}, {"model": "metainfo.source", "pk": 18377, "fields": {"orig_filename": "Tollinger_Johann_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 377f.", "author": "", "orig_id": 1423834}}, {"model": "metainfo.source", "pk": 18378, "fields": {"orig_filename": "Tolloczko_Stanislaw-Karol_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 378f.", "author": "", "orig_id": 2239184}}, {"model": "metainfo.source", "pk": 18379, "fields": {"orig_filename": "Tolman_Bretislav_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 379", "author": "", "orig_id": 2206609}}, {"model": "metainfo.source", "pk": 18380, "fields": {"orig_filename": "Tolnai_Lajos_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 379f.", "author": "", "orig_id": 2202613}}, {"model": "metainfo.source", "pk": 18381, "fields": {"orig_filename": "Tolnai_Simon_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 380f.", "author": "", "orig_id": 1454771}}, {"model": "metainfo.source", "pk": 18382, "fields": {"orig_filename": "Tolomei_Giampaolo_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381", "author": "", "orig_id": 1456146}}, {"model": "metainfo.source", "pk": 18383, "fields": {"orig_filename": "Toman_Aleksander_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381f.", "author": "", "orig_id": 2168393}}, {"model": "metainfo.source", "pk": 18384, "fields": {"orig_filename": "Toman_Hugo_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 382f.", "author": "", "orig_id": 1423839}}, {"model": "metainfo.source", "pk": 18385, "fields": {"orig_filename": "Toman_Josipina_1833_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 383", "author": "", "orig_id": 1423840}}, {"model": "metainfo.source", "pk": 18386, "fields": {"orig_filename": "Toman_Karel_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 383f.", "author": "", "orig_id": 1444353}}, {"model": "metainfo.source", "pk": 18387, "fields": {"orig_filename": "Toman_Lovro_1827_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 384f.", "author": "", "orig_id": 1423841}}, {"model": "metainfo.source", "pk": 18388, "fields": {"orig_filename": "Tomaschek-Stradowa_Johann-Adolf_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 387f.", "author": "", "orig_id": 1423939}}, {"model": "metainfo.source", "pk": 18389, "fields": {"orig_filename": "Tomaschek_Anton_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 358", "author": "", "orig_id": 1442935}}, {"model": "metainfo.source", "pk": 18390, "fields": {"orig_filename": "Tomaschek_Ignaz_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 385f.", "author": "", "orig_id": 1888528}}, {"model": "metainfo.source", "pk": 18391, "fields": {"orig_filename": "Tomaschek_Karl_1828_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 386f.", "author": "", "orig_id": 1423895}}, {"model": "metainfo.source", "pk": 18392, "fields": {"orig_filename": "Tomaschek_Wilhelm_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 387", "author": "", "orig_id": 1423457}}, {"model": "metainfo.source", "pk": 18393, "fields": {"orig_filename": "Tomasek_Frantisek_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 388", "author": "", "orig_id": 1423459}}, {"model": "metainfo.source", "pk": 18394, "fields": {"orig_filename": "Tomasek_Vaclav-Jan_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 388f.", "author": "", "orig_id": 1423894}}, {"model": "metainfo.source", "pk": 18395, "fields": {"orig_filename": "Tomaselli_Carl_1809_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 389f.", "author": "", "orig_id": 1447920}}, {"model": "metainfo.source", "pk": 18396, "fields": {"orig_filename": "Tomaselli_Carl_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390", "author": "", "orig_id": 2297827}}, {"model": "metainfo.source", "pk": 18397, "fields": {"orig_filename": "Tomaselli_Franz_1801_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390f.", "author": "", "orig_id": 1423485}}, {"model": "metainfo.source", "pk": 18398, "fields": {"orig_filename": "Tomaselli_Giuseppe_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391", "author": "", "orig_id": 1423487}}, {"model": "metainfo.source", "pk": 18399, "fields": {"orig_filename": "Tomaselli_Ignaz_1812_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390f.", "author": "", "orig_id": 1423486}}, {"model": "metainfo.source", "pk": 18400, "fields": {"orig_filename": "Tomaselli_Katharina_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391", "author": "", "orig_id": 1423489}}, {"model": "metainfo.source", "pk": 18401, "fields": {"orig_filename": "Tomasic_Nikola_1864_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391f.", "author": "", "orig_id": 1423535}}, {"model": "metainfo.source", "pk": 18402, "fields": {"orig_filename": "Tomasini_Alois-Basil-Nikolaus_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 392f.", "author": "", "orig_id": 1823286}}, {"model": "metainfo.source", "pk": 18403, "fields": {"orig_filename": "Tomasini_Anton-Edmund_1775_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 392f.", "author": "", "orig_id": 1823272}}, {"model": "metainfo.source", "pk": 18404, "fields": {"orig_filename": "Tomassich_Franz-Xaver_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 393", "author": "", "orig_id": 1423534}}, {"model": "metainfo.source", "pk": 18405, "fields": {"orig_filename": "Tomaszczuk_Konstantin_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 393f.", "author": "", "orig_id": 1423555}}, {"model": "metainfo.source", "pk": 18406, "fields": {"orig_filename": "Toma_Matthias-Rudolf_1792_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381", "author": "", "orig_id": 1424146}}, {"model": "metainfo.source", "pk": 18407, "fields": {"orig_filename": "Tomcsanyi-Tomcsiny_Adam_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 394", "author": "", "orig_id": 1456262}}, {"model": "metainfo.source", "pk": 18408, "fields": {"orig_filename": "Tomec_Heinrich_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 394f.", "author": "", "orig_id": 1423558}}, {"model": "metainfo.source", "pk": 18409, "fields": {"orig_filename": "Tomek_Wacslaw-Wladiwoj_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 395f.", "author": "", "orig_id": 1423588}}, {"model": "metainfo.source", "pk": 18410, "fields": {"orig_filename": "Tomicek_Jan-Slavomir_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 396", "author": "", "orig_id": 1456267}}, {"model": "metainfo.source", "pk": 18411, "fields": {"orig_filename": "Tominc_Jozef-Jakob_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 396f.", "author": "", "orig_id": 1978736}}, {"model": "metainfo.source", "pk": 18412, "fields": {"orig_filename": "Tominsek_Fran_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 2168570}}, {"model": "metainfo.source", "pk": 18413, "fields": {"orig_filename": "Tominz_Alfredo_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 1456270}}, {"model": "metainfo.source", "pk": 18414, "fields": {"orig_filename": "Tominz_Augusto_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 1456271}}, {"model": "metainfo.source", "pk": 18415, "fields": {"orig_filename": "Tommaseo_Niccolo_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397f.", "author": "", "orig_id": 1423627}}, {"model": "metainfo.source", "pk": 18416, "fields": {"orig_filename": "Tommasini_Muzio-Giuseppe_1794_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 399f.", "author": "", "orig_id": 1456414}}, {"model": "metainfo.source", "pk": 18417, "fields": {"orig_filename": "Tommasi_Natale_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 398f.", "author": "", "orig_id": 1423527}}, {"model": "metainfo.source", "pk": 18418, "fields": {"orig_filename": "Tompa_Mihaly_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 400f.", "author": "", "orig_id": 1423664}}, {"model": "metainfo.source", "pk": 18419, "fields": {"orig_filename": "Tomsa_Frantisek-Bohumil_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 401", "author": "", "orig_id": 1456416}}, {"model": "metainfo.source", "pk": 18420, "fields": {"orig_filename": "Tomschik_Josef_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 401f.", "author": "", "orig_id": 1423788}}, {"model": "metainfo.source", "pk": 18421, "fields": {"orig_filename": "Tomsic_Anton_1842_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 402f.", "author": "", "orig_id": 1456418}}, {"model": "metainfo.source", "pk": 18422, "fields": {"orig_filename": "Tomssa_Sylvester_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 403", "author": "", "orig_id": 2199818}}, {"model": "metainfo.source", "pk": 18423, "fields": {"orig_filename": "Tonkli_Josip_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 403f.", "author": "", "orig_id": 1423846}}, {"model": "metainfo.source", "pk": 18424, "fields": {"orig_filename": "Tonkli_Nikolaj_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 404", "author": "", "orig_id": 2168757}}, {"model": "metainfo.source", "pk": 18425, "fields": {"orig_filename": "Tonner_Emanuel_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 404f.", "author": "", "orig_id": 1423848}}, {"model": "metainfo.source", "pk": 18426, "fields": {"orig_filename": "Topic_Frantisek_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405", "author": "", "orig_id": 2206716}}, {"model": "metainfo.source", "pk": 18427, "fields": {"orig_filename": "Topic_Jaroslav_1886_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405", "author": "", "orig_id": 2297892}}, {"model": "metainfo.source", "pk": 18428, "fields": {"orig_filename": "Topitz_Anton-Maria_1887_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 406", "author": "", "orig_id": 1450247}}, {"model": "metainfo.source", "pk": 18429, "fields": {"orig_filename": "Topitz_Anton_1857_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405f.", "author": "", "orig_id": 1423856}}, {"model": "metainfo.source", "pk": 18430, "fields": {"orig_filename": "Torbar_Josip_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 406f.", "author": "", "orig_id": 1423858}}, {"model": "metainfo.source", "pk": 18431, "fields": {"orig_filename": "Torggler_Erich_1899_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 407f.", "author": "", "orig_id": 1423899}}, {"model": "metainfo.source", "pk": 18432, "fields": {"orig_filename": "Torggler_Karl_1892_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 408", "author": "", "orig_id": 1423897}}, {"model": "metainfo.source", "pk": 18433, "fields": {"orig_filename": "Torma-Csicsokeresztur_Karoly_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 408f.", "author": "", "orig_id": 1455388}}, {"model": "metainfo.source", "pk": 18434, "fields": {"orig_filename": "Torma-Csicsokeresztur_Zsofia_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 409", "author": "", "orig_id": 1423902}}, {"model": "metainfo.source", "pk": 18435, "fields": {"orig_filename": "Tormay-Nadudvar_Bela_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 410", "author": "", "orig_id": 1423903}}, {"model": "metainfo.source", "pk": 18436, "fields": {"orig_filename": "Tormay_Karoly_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 409f.", "author": "", "orig_id": 1455449}}, {"model": "metainfo.source", "pk": 18437, "fields": {"orig_filename": "Tornai_Gyula_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 410f.", "author": "", "orig_id": 1454772}}, {"model": "metainfo.source", "pk": 18438, "fields": {"orig_filename": "Tornquist_Alexander_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 411", "author": "", "orig_id": 1423906}}, {"model": "metainfo.source", "pk": 18439, "fields": {"orig_filename": "Tornyai_Janos_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 412", "author": "", "orig_id": 1423905}}, {"model": "metainfo.source", "pk": 18440, "fields": {"orig_filename": "Torosiewicz_Jozef_1784_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 413", "author": "", "orig_id": 2262700}}, {"model": "metainfo.source", "pk": 18441, "fields": {"orig_filename": "Torosiewicz_Teodor_1789_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 412f.", "author": "", "orig_id": 1455457}}, {"model": "metainfo.source", "pk": 18442, "fields": {"orig_filename": "Toth-Fehergyarmat_Tihamer_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 418f.", "author": "", "orig_id": 1425778}}, {"model": "metainfo.source", "pk": 18443, "fields": {"orig_filename": "Toth_Arpad_1886_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 413f.", "author": "", "orig_id": 2195965}}, {"model": "metainfo.source", "pk": 18444, "fields": {"orig_filename": "Toth_Bela_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 414", "author": "", "orig_id": 1423988}}, {"model": "metainfo.source", "pk": 18445, "fields": {"orig_filename": "Toth_Imre_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 414f.", "author": "", "orig_id": 1458519}}, {"model": "metainfo.source", "pk": 18446, "fields": {"orig_filename": "Toth_Jozsef_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 415", "author": "", "orig_id": 1455790}}, {"model": "metainfo.source", "pk": 18447, "fields": {"orig_filename": "Toth_Kalman_1831_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 415f.", "author": "", "orig_id": 1458524}}, {"model": "metainfo.source", "pk": 18448, "fields": {"orig_filename": "Toth_Laszlo_1869_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 416", "author": "", "orig_id": 1458525}}, {"model": "metainfo.source", "pk": 18449, "fields": {"orig_filename": "Toth_Loerinc_1814_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 416f.", "author": "", "orig_id": 1425745}}, {"model": "metainfo.source", "pk": 18450, "fields": {"orig_filename": "Toth_Samuel_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 417", "author": "", "orig_id": 1458528}}, {"model": "metainfo.source", "pk": 18451, "fields": {"orig_filename": "Toth_Victor_1846_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 417f.", "author": "", "orig_id": 1425779}}, {"model": "metainfo.source", "pk": 18452, "fields": {"orig_filename": "Toth_Zoltan_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 418", "author": "", "orig_id": 2195982}}, {"model": "metainfo.source", "pk": 18453, "fields": {"orig_filename": "Touaillon_Christine_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 419", "author": "", "orig_id": 1425787}}, {"model": "metainfo.source", "pk": 18454, "fields": {"orig_filename": "Toula_Franz_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 419f.", "author": "", "orig_id": 1425788}}, {"model": "metainfo.source", "pk": 18455, "fields": {"orig_filename": "Trabert_Wilhelm_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 420f.", "author": "", "orig_id": 1425828}}, {"model": "metainfo.source", "pk": 18456, "fields": {"orig_filename": "Traeger_Richard_1895_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 421", "author": "", "orig_id": 2170094}}, {"model": "metainfo.source", "pk": 18457, "fields": {"orig_filename": "Trakl_Georg_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 421ff.", "author": "", "orig_id": 1425921}}, {"model": "metainfo.source", "pk": 18458, "fields": {"orig_filename": "Trakl_Grete_1892_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 422f.", "author": "", "orig_id": 1425922}}, {"model": "metainfo.source", "pk": 18459, "fields": {"orig_filename": "Trampler_Richard_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 423", "author": "", "orig_id": 1425926}}, {"model": "metainfo.source", "pk": 18460, "fields": {"orig_filename": "Trampota_Jan_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 423f.", "author": "", "orig_id": 2166212}}, {"model": "metainfo.source", "pk": 18461, "fields": {"orig_filename": "Trampusch_Carl-Franz_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 424", "author": "", "orig_id": 1455958}}, {"model": "metainfo.source", "pk": 18462, "fields": {"orig_filename": "Trapp_August_1836_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 425", "author": "", "orig_id": 1456012}}, {"model": "metainfo.source", "pk": 18463, "fields": {"orig_filename": "Trapp_Georg_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 424f.", "author": "", "orig_id": 1426046}}, {"model": "metainfo.source", "pk": 18464, "fields": {"orig_filename": "Trapp_Hede_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 425f.", "author": "", "orig_id": 1426079}}, {"model": "metainfo.source", "pk": 18465, "fields": {"orig_filename": "Frigessi-Rattalma-Nobile_Arnoldo_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301248}}, {"model": "metainfo.source", "pk": 18466, "fields": {"orig_filename": "Fuchs_Hans-Maria_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1445636}}, {"model": "metainfo.source", "pk": 18467, "fields": {"orig_filename": "Fuchs_Patriz_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301462}}, {"model": "metainfo.source", "pk": 18468, "fields": {"orig_filename": "Fucik_Julius_1872_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1444491}}, {"model": "metainfo.source", "pk": 18469, "fields": {"orig_filename": "Gross_Anton_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297475}}, {"model": "metainfo.source", "pk": 18470, "fields": {"orig_filename": "Hatschek_Julius-Karl_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419709}}, {"model": "metainfo.source", "pk": 18471, "fields": {"orig_filename": "Hermann-Otavsky_Karel_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1451569}}, {"model": "metainfo.source", "pk": 18472, "fields": {"orig_filename": "Heyrovsky_Leopold_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1451357}}, {"model": "metainfo.source", "pk": 18473, "fields": {"orig_filename": "Hottner-Grefe_Anna_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1449623}}, {"model": "metainfo.source", "pk": 18474, "fields": {"orig_filename": "Keller_Alois_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301267}}, {"model": "metainfo.source", "pk": 18475, "fields": {"orig_filename": "Keller_Josef_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2299890}}, {"model": "metainfo.source", "pk": 18476, "fields": {"orig_filename": "Kotula_Boleslaus-Andreas_1849_1898.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301277}}, {"model": "metainfo.source", "pk": 18477, "fields": {"orig_filename": "Kraskovits_Guido_1881_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2299496}}, {"model": "metainfo.source", "pk": 18478, "fields": {"orig_filename": "Mitteregger_Josef_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1462939}}, {"model": "metainfo.source", "pk": 18479, "fields": {"orig_filename": "Moser_Michael_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1465992}}, {"model": "metainfo.source", "pk": 18480, "fields": {"orig_filename": "Pozzi_Victor_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1454702}}, {"model": "metainfo.source", "pk": 18481, "fields": {"orig_filename": "Sunjic_Marian-Ivo_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1435919}}, {"model": "metainfo.source", "pk": 18482, "fields": {"orig_filename": "Suran_Gabriel_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1435567}}, {"model": "metainfo.source", "pk": 18483, "fields": {"orig_filename": "Abendroth_Mira__.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2579863}}, {"model": "metainfo.source", "pk": 18484, "fields": {"orig_filename": "Adam_Ernest_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1431401}}, {"model": "metainfo.source", "pk": 18485, "fields": {"orig_filename": "Allinger_Isidor_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1450304}}, {"model": "metainfo.source", "pk": 18486, "fields": {"orig_filename": "Ambrosi_Francesco_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1467527}}, {"model": "metainfo.source", "pk": 18487, "fields": {"orig_filename": "Amon_Chrysostomus_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1470091}}, {"model": "metainfo.source", "pk": 18488, "fields": {"orig_filename": "Arigler_Altmann_1768_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1470202}}, {"model": "metainfo.source", "pk": 18489, "fields": {"orig_filename": "Arnleitner_Friedrich_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2132462}}, {"model": "metainfo.source", "pk": 18490, "fields": {"orig_filename": "Arnold_Wincenty_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2296428}}, {"model": "metainfo.source", "pk": 18491, "fields": {"orig_filename": "Attlmayr_Aloisius_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1469023}}, {"model": "metainfo.source", "pk": 18492, "fields": {"orig_filename": "Auchentaller_Josef-Maria_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2004015}}, {"model": "metainfo.source", "pk": 18493, "fields": {"orig_filename": "Augapfel_Julius_1892_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1468712}}, {"model": "metainfo.source", "pk": 18494, "fields": {"orig_filename": "Auspitz_Leopold_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2260846}}, {"model": "metainfo.source", "pk": 18495, "fields": {"orig_filename": "Babel-Fronsberg_Franz_1773_1841.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292583}}, {"model": "metainfo.source", "pk": 18496, "fields": {"orig_filename": "Babor_Konrad_1762_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1468716}}, {"model": "metainfo.source", "pk": 18497, "fields": {"orig_filename": "Bachrich_Melly_1899_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2004312}}, {"model": "metainfo.source", "pk": 18498, "fields": {"orig_filename": "Ballaban_Karol_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2293675}}, {"model": "metainfo.source", "pk": 18499, "fields": {"orig_filename": "Balsanek_Antonin_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292773}}, {"model": "metainfo.source", "pk": 18500, "fields": {"orig_filename": "Baracz_Roman_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292656}}, {"model": "metainfo.source", "pk": 18501, "fields": {"orig_filename": "Beck_Adolf_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2281104}}, {"model": "metainfo.source", "pk": 18502, "fields": {"orig_filename": "Bednarski_Adam_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292843}}, {"model": "metainfo.source", "pk": 18503, "fields": {"orig_filename": "Belgiojoso_Cristina_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1456433}}, {"model": "metainfo.source", "pk": 18504, "fields": {"orig_filename": "Benedek-Kisbaczon_Elek_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2265242}}, {"model": "metainfo.source", "pk": 18505, "fields": {"orig_filename": "Bergmann_Hilda_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414139}}, {"model": "metainfo.source", "pk": 18506, "fields": {"orig_filename": "Bernau_Friedrich_1849_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2047856}}, {"model": "metainfo.source", "pk": 18507, "fields": {"orig_filename": "Biedermann_Julius_1833_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1459894}}, {"model": "metainfo.source", "pk": 18508, "fields": {"orig_filename": "Bikeles_Gustaw_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292554}}, {"model": "metainfo.source", "pk": 18509, "fields": {"orig_filename": "Bilczewski_Jozef_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419142}}, {"model": "metainfo.source", "pk": 18510, "fields": {"orig_filename": "Bilimek_Dominik_1813_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419213}}, {"model": "metainfo.source", "pk": 18511, "fields": {"orig_filename": "Blodig_Karl_1820_1891.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419318}}, {"model": "metainfo.source", "pk": 18512, "fields": {"orig_filename": "Boehm_August_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2267393}}, {"model": "metainfo.source", "pk": 18513, "fields": {"orig_filename": "Boernstein_Heinrich_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417661}}, {"model": "metainfo.source", "pk": 18514, "fields": {"orig_filename": "Bratu_Traian_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2265247}}, {"model": "metainfo.source", "pk": 18515, "fields": {"orig_filename": "Brittinger_Christian_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420192}}, {"model": "metainfo.source", "pk": 18516, "fields": {"orig_filename": "Brunnthaler_Josef-Georg_1871_1914.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420435}}, {"model": "metainfo.source", "pk": 18517, "fields": {"orig_filename": "Buchmueller_Anton_1782_1850.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292577}}, {"model": "metainfo.source", "pk": 18518, "fields": {"orig_filename": "Burgerstein_Alfred_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420641}}, {"model": "metainfo.source", "pk": 18519, "fields": {"orig_filename": "Burgerstein_Joseph_1813_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2300203}}, {"model": "metainfo.source", "pk": 18520, "fields": {"orig_filename": "Burgerstein_Leo_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1827303}}, {"model": "metainfo.source", "pk": 18521, "fields": {"orig_filename": "Burger_Ernst_1915_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1475339}}, {"model": "metainfo.source", "pk": 18522, "fields": {"orig_filename": "Bykowski_Juliusz-Jan_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2296282}}, {"model": "metainfo.source", "pk": 18523, "fields": {"orig_filename": "Cieslar_Adolf_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2223856}}, {"model": "metainfo.source", "pk": 18524, "fields": {"orig_filename": "Costa_Etbin-Henrik_1832_1875.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297301}}, {"model": "metainfo.source", "pk": 18525, "fields": {"orig_filename": "Czerny_Carl_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417615}}, {"model": "metainfo.source", "pk": 18526, "fields": {"orig_filename": "Dafert-Sensel-Timmer_Otto_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2079331}}, {"model": "metainfo.source", "pk": 18527, "fields": {"orig_filename": "Daublebsky-Sterneck_Robert_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1876603}}, {"model": "metainfo.source", "pk": 18528, "fields": {"orig_filename": "Dombrowski-Paproz-Kruserevice_Raoul_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2300357}}, {"model": "metainfo.source", "pk": 18529, "fields": {"orig_filename": "Fahrbach_Friedrich_1809_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2224858}}, {"model": "metainfo.source", "pk": 18530, "fields": {"orig_filename": "Fahrbach_Philipp_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1446107}}, {"model": "metainfo.source", "pk": 18531, "fields": {"orig_filename": "Fellner_Ferdinand-Iii_1872_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2295757}}, {"model": "metainfo.source", "pk": 18532, "fields": {"orig_filename": "Fischer_Leopoldine_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301445}}, {"model": "metainfo.source", "pk": 18533, "fields": {"orig_filename": "Fischer_Paul_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297369}}, {"model": "metainfo.source", "pk": 18534, "fields": {"orig_filename": "Fleischmann_Johann-Baptist_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2302168}}, {"model": "metainfo.source", "pk": 18535, "fields": {"orig_filename": "Fraenkel-Hahn_Louise_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1444776}}, {"model": "metainfo.source", "pk": 18536, "fields": {"orig_filename": "Friemel_Rudolf_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1469499}}, {"model": "metainfo.source", "pk": 18537, "fields": {"orig_filename": "Friese-Skuhra_Ernst-Robert_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2266072}}, {"model": "metainfo.source", "pk": 18538, "fields": {"orig_filename": "Tepa_Franciszek-Tomasz_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 250f.", "author": "", "orig_id": 1447985}}, {"model": "metainfo.source", "pk": 18539, "fields": {"orig_filename": "data/staribacher/staribacher_Personenliste_ms.csv", "indexed": false, "pubinfo": "File sent by Barbara Krautgartner Sep 27 2016", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 18540, "fields": {"orig_filename": "000", "indexed": false, "pubinfo": "", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 18541, "fields": {"orig_filename": "", "indexed": false, "pubinfo": "", "author": "", "orig_id": null}}, {"model": "metainfo.text", "pk": 12, "fields": {"kind": 2, "text": "seit 1992: Primorsko-goranska \u017eup.; a/Golf v. Rijeka, NO-Istrien;", "source": 1}}, {"model": "metainfo.text", "pk": 14, "fields": {"kind": 2, "text": "seit 1992: Primorsko-goranska \u017eup.; a/Golf v. Rijeka, NO-Istrien;", "source": 1}}, {"model": "metainfo.text", "pk": 59, "fields": {"kind": 2, "text": "= srez, seit 1992: Zagreba\u010dka \u017eup.; a/Save;", "source": 1}}, {"model": "metainfo.text", "pk": 173, "fields": {"kind": 2, "text": "(lt. Atl.'99 Star\u00e1 Dl. V. nicht mehr ausgewiesen), okr. Klatovy; ca. 4 km ssw Su\u0161ice, ca. 28 km ss\u00f6 Klatovy; [vgl. Biogr. \"Schell, Karl\"]", "source": 1}}, {"model": "metainfo.text", "pk": 181, "fields": {"kind": 2, "text": "= seit 1872/73: Zus.schl. v. Pest, Ofen/Buda u. Altofen/\u00d3buda;", "source": 1}}, {"model": "metainfo.text", "pk": 654, "fields": {"kind": 2, "text": "lt.K.Ku\u010da (tsch.) Umbenng 1921, 1956 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XX - Osta\u0161ov\"; ca. 3 km w. Liberec (Zentrum), a/\u00e4u\u00dfersten W-Rand der Stadt;", "source": 1}}, {"model": "metainfo.text", "pk": 784, "fields": {"kind": 2, "text": "= KG (2001: 1021 Einw.), Gem. Steindorf am Ossiacher See [Zusatz seit 1986], GerBez. Feldkirchen; 3,5 km wsw Steindorf, a/N-Ufer d. Ossiacher Sees (gg.\u00fcber Ort/Gem. u. Stift Ossiach a/d S-Seite des Sees: urspr. Gem. Glanhofen - 1894 von Steindf. abgetrennt u. in Ossiach umbenannt); [betr. Biogr. \"Dumba, Konst. Theo.\", gest. 1947]", "source": 1}}, {"model": "metainfo.text", "pk": 928, "fields": {"kind": 2, "text": "= jude\u0163; St. i. n\u00f6rdl. (rum\u00e4n.) Moldau;", "source": 1}}, {"model": "metainfo.text", "pk": 962, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 964, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 969, "fields": {"kind": 2, "text": "okr. N\u00e1chod; ca. 22 km n\u00f6 N\u00e1chod;", "source": 1}}, {"model": "metainfo.text", "pk": 971, "fields": {"kind": 2, "text": "okr. N\u00e1chod; ca. 22 km n\u00f6 N\u00e1chod;", "source": 1}}, {"model": "metainfo.text", "pk": 1011, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 1013, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 1017, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen;", "source": 1}}, {"model": "metainfo.text", "pk": 1029, "fields": {"kind": 2, "text": "obec u. okr. Hradec Kr\u00e1lov\u00e9; ca. 5 km ssw Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 1054, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; [betr. Biogr. \"Plaseller, Josef\", geb. 1812]", "source": 1}}, {"model": "metainfo.text", "pk": 1056, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen;", "source": 1}}, {"model": "metainfo.text", "pk": 1064, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1090, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1092, "fields": {"kind": 2, "text": "(seit 1990) St.Bez. (m\u011bst.obvod) Brno-st\u0159ed, (seit 1993 auch) Brno 1; ca. 2 km wsw Br\u00fcnn-Zentrum, a/d Schwarzawa (Svratka); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 1094, "fields": {"kind": 2, "text": "(seit 1990) mit 29 St.Bez.en (m\u011bstsk\u00ed \u010d\u00e1st, obvod), (seit 1993 auch) Brno 1 - 29 [vgl. K.Ku\u010da/1996, S.235/236], okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1096, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1236, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige); [betr. Biogr. \"Buol-Bernburg, Marie\", gest. 23.5.1943]", "source": 1}}, {"model": "metainfo.text", "pk": 1467, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 2030, "fields": {"kind": 2, "text": "okr. Chomutov; ca. 4 km s\u00f6 Chomutov;", "source": 1}}, {"model": "metainfo.text", "pk": 2492, "fields": {"kind": 2, "text": "ca. 7 km n\u00f6 Sf\u00e2ntu Gheorghe;", "source": 1}}, {"model": "metainfo.text", "pk": 2571, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht orthograph. (nur Betonungshilfe)];", "source": 1}}, {"model": "metainfo.text", "pk": 2603, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht nicht orthograph., nur Betonungshilfe];", "source": 1}}, {"model": "metainfo.text", "pk": 2605, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht nicht orthograph., nur Betonungshilfe];", "source": 1}}, {"model": "metainfo.text", "pk": 2675, "fields": {"kind": 2, "text": "eingem. (lt.IN) seit 1923, = Frakt. d. St.gem. Meran, prov. Bolzano/Bozen; 2,5 km n. Meran-Zentrum, w/Schlo\u00df Tirol; [betr. mehrere Biogr.: dt. gleichl. Weiler in Gem. Toblach!]", "source": 1}}, {"model": "metainfo.text", "pk": 2825, "fields": {"kind": 2, "text": "okr. \u0160umperk; ca. 6 km ssw Lou\u010dn\u00e1 nad Desnou, ca. 9 km nn\u00f6 \u0160umperk;", "source": 1}}, {"model": "metainfo.text", "pk": 2827, "fields": {"kind": 2, "text": "okr. \u0160umperk; ca. 6 km ssw Lou\u010dn\u00e1 nad Desnou, ca. 9 km nn\u00f6 \u0160umperk;", "source": 1}}, {"model": "metainfo.text", "pk": 3253, "fields": {"kind": 2, "text": "op. Maribor-Tabor (Post: Limbu\u0161), (OV'99) ob\u010d. u. upr.en. Maribor; (SlovAtl.'92) je 1 km w. Pekre (Pickerndorf) bzw. s\u00f6 Limbu\u0161 (Lembach) bzw. n\u00f6 (StreuSdlg) Vrhov Dol, ca. 6 km w. Marburg, r/d Drau; [betr. Biogr. \"Reiser Othmar\"]", "source": 1}}, {"model": "metainfo.text", "pk": 3255, "fields": {"kind": 2, "text": "op. Maribor-Tabor (Post: Limbu\u0161), (OV'99) ob\u010d. u. upr.en. Maribor; (SlovAtl.'92) je 1 km w. Pekre (Pickerndorf) bzw. s\u00f6 Limbu\u0161 (Lembach) bzw. n\u00f6 (StreuSdlg) Vrhov Dol, ca. 6 km w. Marburg, r/d Drau; [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 3300, "fields": {"kind": 2, "text": "Teil des (seit 1990) St.Bez. (m\u011bst.obvod) Brno-sever [Br\u00fcnn-Nord] (zus. mit Lesn\u00e1, Sob\u011b\u0161ice u. Teil v. \u010cern\u00e1 Pole), (seit 1993 auch) Brno 4, okr. Brno-m\u011bsto; ca. 3 km nn\u00f6 Br\u00fcnn-Zentrum;", "source": 1}}, {"model": "metainfo.text", "pk": 3504, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie; ca. 8 km nw Chrzan\u00f3w (dieses heute woj. ma\u0142opolskie), ca. 26 km \u00f6s\u00f6 Katowice (>50 km wnw Krak\u00f3w); [betr. hr/Stein, Ernst, geb. 1891 ']", "source": 1}}, {"model": "metainfo.text", "pk": 3663, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 3665, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige); [betr. Biogr. \"M\u00f6rl, Maria Th.\", geb. 1812]", "source": 1}}, {"model": "metainfo.text", "pk": 3930, "fields": {"kind": 2, "text": "St. am Kl. Szamos (Some\u015ful Mic);", "source": 1}}, {"model": "metainfo.text", "pk": 3932, "fields": {"kind": 2, "text": "St. am Kl. Szamos (Some\u015ful Mic);", "source": 1}}, {"model": "metainfo.text", "pk": 4052, "fields": {"kind": 2, "text": "= kraj (Kr\u00e1lov\u00e9hradeck\u00fd); St. a/d oberen Elbe (Labe);", "source": 1}}, {"model": "metainfo.text", "pk": 4438, "fields": {"kind": 2, "text": "St.teil seit 1954(?), okr. Hradec Kr\u00e1lov\u00e9; ca. 3 km w. Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 4453, "fields": {"kind": 2, "text": "Teil des (seit 1993) St.Bez. (m\u011bst. obvod) Brno-jih [Br\u00fcnn-S\u00fcd, seit 1993 auch Brno 7], okr. Brno-m\u011bsto; davor (ab 1990) namengebender St.Bez. \"Brno-Kom\u00e1rov\" (zus. mit 3 weiteren ehem. Gem./obec, darunter -->Horn\u00ed Her\u0161pice, dt. Obergerspitz); ca. 2 km ss\u00f6 Br\u00fcnn-Zentrum, a/d Pon\u00e1vka (vor Zus.fl. v. Schwarzawa/Svratka u. Zwittawa/Svitava); [betr. (u.a.) naw/Biogr.(innerhalb Text) \"Su\u0161il, Franti\u0161ek\": urspr. 'Kumritz (Kom\u00e1rov)']", "source": 1}}, {"model": "metainfo.text", "pk": 4512, "fields": {"kind": 2, "text": "obec Tou\u017eim, okr. Karlovy Vary; 2 km \u00f6. Koj\u0161ovice, ca. 4 km n\u00f6 Tou\u017eim, ca. 9 km w. \u017dlutice, ca. 20 km ss\u00f6 Karlovy Vary;", "source": 1}}, {"model": "metainfo.text", "pk": 4522, "fields": {"kind": 2, "text": "= srez; St. im mittleren Krain;", "source": 1}}, {"model": "metainfo.text", "pk": 4642, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 4644, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5041, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5043, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5045, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5083, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXX - Vratislavice nad Nisou\", seit 1990 (mit neuem Statut) 'm\u011bstsk\u00fd obvod\" (St.bezirk); ca. 4 km s\u00f6 Liberec (Zentrum), beidseits der Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 5085, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXX - Vratislavice nad Nisou\", seit 1990 (mit neuem Statut) 'm\u011bstsk\u00fd obvod' (St.bezirk); ca. 4 km s\u00f6 Liberec (Zentrum), beidseits der Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 5101, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-Zentrum, (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 5193, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5219, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5221, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5223, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5344, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5346, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5348, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; a/\u00f6stl. Stadtrand;", "source": 1}}, {"model": "metainfo.text", "pk": 5350, "fields": {"kind": 2, "text": "ital. St.teilname (lt. K\u00fcheb.) nach 1940, eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio); [betr. Biogr. \"Mazegger, Bernh. d.J.\", gest. 1921, (miterw./Schrott, Alois) \"Pelzel v. Staff., Henriette\", gest. 1962, allerdings schon 2-namig ab 1948]", "source": 1}}, {"model": "metainfo.text", "pk": 5352, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-(Altstadt), (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 5353, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5409, "fields": {"kind": 2, "text": "okr. Tachov; ca. 28 km \u00f6s\u00f6 Tachov;", "source": 1}}, {"model": "metainfo.text", "pk": 5576, "fields": {"kind": 2, "text": "okr. Teplice; ca. 15 km nw Teplice, a/dt.-s\u00e4chs. Grenze (8 km w. Cinovec/Zinnwald);", "source": 1}}, {"model": "metainfo.text", "pk": 5900, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. opolskie;", "source": 1}}, {"model": "metainfo.text", "pk": 6016, "fields": {"kind": 2, "text": "okr. Hradec Kr\u00e1lov\u00e9; ca. 4 km! ss\u00f6 Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 6119, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VIII - Doln\u00ed Hanychov\"; 1 km nn\u00f6 --> Horn\u00ed Hanychov, ca. 3 km sw Liberec (Zentrum); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 6173, "fields": {"kind": 2, "text": "[betr. Mpg/Biogr. \"Ambr\u00f3zy-Migazzi, Istv\u00e1n\", geb. 1869]", "source": 1}}, {"model": "metainfo.text", "pk": 6308, "fields": {"kind": 2, "text": "Teil des (seit 1993) St.Bez. (m\u011bst.obvod) Brno-jih [Br\u00fcnn-S\u00fcd] (davor ab 1990 St.Bez. \"Kom\u00e1rov\"), (seit 1993 auch) Brno 7, okr. Brno-m\u011bsto; ca. 4 km s. Br\u00fcnn-Zentrum (n/\u00f6 von Autobahnkreuzung);", "source": 1}}, {"model": "metainfo.text", "pk": 6324, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec; seit 1980 (St.teil/\u010dtvrt) \"Liberec XIX - Horn\u00ed Hanychov\"; 1 km ssw --> Doln\u00ed Hanychov, ca. 4 km sw Liberec (Zentrum); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 6350, "fields": {"kind": 2, "text": "ital. St.teilname (lt. K\u00fcheb.) nach 1940, eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio);", "source": 1}}, {"model": "metainfo.text", "pk": 6352, "fields": {"kind": 2, "text": "eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio);", "source": 1}}, {"model": "metainfo.text", "pk": 6372, "fields": {"kind": 2, "text": "(tsch.) Umbenng nach 1918; 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VII - Horn\u00ed R\u016f\u017eodol\"; ca. 2 km ss\u00f6 --> \"R\u016f\u017eodol I\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [betr. Biogr. \"Schramm Augustin, *1907\"]", "source": 1}}, {"model": "metainfo.text", "pk": 6417, "fields": {"kind": 2, "text": "Teil des (seit 1990) St.Bez. (m\u011bst.obvod) Malom\u011b\u0159ice-Ob\u0159any, (seit 1993 auch) Brno 18, okr. Brno-m\u011bsto; ca. 7 km nn\u00f6 Br\u00fcnn-Zentrum; [betr. Biogr./hr \"\u0160tastny Vladim.\", gest. 1910]", "source": 1}}, {"model": "metainfo.text", "pk": 6431, "fields": {"kind": 2, "text": "St., sw Neusiedler See;", "source": 1}}, {"model": "metainfo.text", "pk": 6491, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 6493, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 6495, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava); [betr. Biogr. \"\u0160pa\u010dek, Richard\", gest. 1925]", "source": 1}}, {"model": "metainfo.text", "pk": 6497, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 7122, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7124, "fields": {"kind": 2, "text": "okr. Hl.m. Praha, Praha 2 (Nov\u00e9 M\u011bsto); ON noch erhalten im Stra\u00dfennamen \"Podskalsk\u00e1\" (parallel zur Uferstr. zw. Nov\u00e9 M\u011bsto u. Vy\u0161ehrad); [betr. Biogr. \"Hedrich Franz\"]", "source": 1}}, {"model": "metainfo.text", "pk": 7126, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus 1 od. mehreren St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7128, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7130, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7171, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 7173, "fields": {"kind": 2, "text": "Umbenng. = ab 1920 (lt.IN schon 6. 3. 1919), = kraj u. okr.; mit 17 St.Bez.en: Star\u00e9 Mesto, Ru\u017einov (1946, fr.: Prievoz), Vraku\u0148a (1.1. 1972), Podunajsk\u00e9 Biskupice (1.1. 1972), Nov\u00e9 Mesto, Ra\u010da (1946), Vajnory (1946), Kalova Ves (seit 1944), D\u00fabravka (1946), Lama\u010d (1946), Dev\u00edn (1946), Dev\u00ednska Nov\u00e1 (1.1. 1972) Ves, Z\u00e1horsk\u00e1 Bystrica (1.1. 1972), Petr\u017ealka (1946, r/Donau), Jarovce (1.1. 1972, r/Donau), Rusovce (1.1. 1972, r/Donau) und \u010cunovo (1.1. 1972, r/Donau);", "source": 1}}, {"model": "metainfo.text", "pk": 7681, "fields": {"kind": 2, "text": "tsch. ON nach 1918, 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XI - R\u016f\u017eodol I\"; ca. 2 km nnw \"R\u016f\u017eodol II\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 7683, "fields": {"kind": 2, "text": "tsch. ON nach 1918; 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VII - Horn\u00ed R\u016f\u017eodol\"; ca. 2 km ss\u00f6 --> \"R\u016f\u017eodol I\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 7776, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XIV - Ruprechtice\"; 2,5 km n\u00f6 Liberec (Zentrum); [betr. Biogr. \"Farsk\u00fd, Franz\", geb. 'Ruppersdorf (Rup\u011bchtice, B\u00f6hmen)': diese (tsch.) Schreibw. nicht verifiz.]", "source": 1}}, {"model": "metainfo.text", "pk": 7828, "fields": {"kind": 2, "text": "Sadhora (n\u00f6rdl. des Prut), eingemeindet nach --> \u010cernivci;", "source": 1}}, {"model": "metainfo.text", "pk": 7951, "fields": {"kind": 2, "text": "= ab 1990, okr. Pezinok; ca. 15 km n\u00f6 Pre\u00dfburg; a/SO-Abhang d. Kl. Karpaten;", "source": 1}}, {"model": "metainfo.text", "pk": 7994, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; ca. 6 km wsw Lana (Ober-), ca. 11 km sw Meran, im Ultental (Val d'Ultimo);", "source": 1}}, {"model": "metainfo.text", "pk": 8138, "fields": {"kind": 2, "text": "Umbenng. ab 1955, okr. \u0160umperk; ca. 16 km w. \u0160umperk; nahe Grenze zu NO-B\u00f6hmen;", "source": 1}}, {"model": "metainfo.text", "pk": 8211, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXXI - Kr\u00e1sn\u00e1 Stud\u00e1nka\"; ca. 7 km n. Liberec (Zentrum);", "source": 1}}, {"model": "metainfo.text", "pk": 8304, "fields": {"kind": 2, "text": "[betr. naw/Biogr. \"Sue\u00df, Friedr. R.v. Heller\"]", "source": 1}}, {"model": "metainfo.text", "pk": 8727, "fields": {"kind": 2, "text": "(lt. Atl.'99 Star\u00e1 Dl. V. nicht mehr ausgewiesen), okr. Klatovy; ca. 4 km ssw Su\u0161ice, ca. 28 km ss\u00f6 Klatovy; [vgl. Biogr. \"Schell Karl\"]", "source": 1}}, {"model": "metainfo.text", "pk": 9008, "fields": {"kind": 2, "text": "ab 1.1.99: pow. Jaworzno, woj. \u015bl\u0105skie; [4 km n. Jaworzno]", "source": 1}}, {"model": "metainfo.text", "pk": 9021, "fields": {"kind": 2, "text": "Kom.H.St.; a/d Thei\u00df, gg.\u00fcber Einm\u00fcndung d. Maros;", "source": 1}}, {"model": "metainfo.text", "pk": 9235, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 9239, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie; r/d Olsa/Olza; [i. Druck fr\u00fcher i.d.R. undiff. nur \"Teschen\", k\u00fcnftig (u. in GD-DB) als heut. ON normativ der poln. Teil angef\u00fchrt: f\u00fcr einzelne Bios k\u00f6nnte auch der kleinere, j\u00fcngere (heute tsch.) St.teil -->\u010cesk\u00fd T\u011b\u0161\u00edn zutreffend sein]", "source": 1}}, {"model": "metainfo.text", "pk": 9433, "fields": {"kind": 2, "text": "= prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9434, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9461, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9463, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9646, "fields": {"kind": 2, "text": "= ab 1948 [= Umbenng.], okr. Nitra; ca. 12 km s. Neutra;", "source": 1}}, {"model": "metainfo.text", "pk": 9705, "fields": {"kind": 2, "text": "com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe (Zusatz (seit ?, nach 1964): nur f\u00fcr den Namen der (Markt) Gem. amtl. (oder auch f\u00fcr den Ort selbst?), prov. Bolzano/Bozen; ca. 13 km ssw Bozen, a/Fu\u00df des Mendel-Passes;", "source": 1}}, {"model": "metainfo.text", "pk": 9735, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-(Altstadt), (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 10129, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10131, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10133, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10135, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10138, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10186, "fields": {"kind": 2, "text": "ab 1992 Ju\u017eni-Banatski okr.; St., ca. 10 km n/d Donau, (s\u00fcdl. Banat) Vojvodina;", "source": 1}}, {"model": "metainfo.text", "pk": 10300, "fields": {"kind": 2, "text": "(lt. wiki) Getrenntschreibung seit 1997;", "source": 1}}, {"model": "metainfo.text", "pk": 10485, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie; [betr. da/Biogr. \"Sucharda, Edw. d.J.\", gest. 1947]", "source": 1}}, {"model": "metainfo.text", "pk": 10711, "fields": {"kind": 2, "text": "lt.obiger Enz.. (ukr.) auch: Znesennja; rajon L'viv; (lt. L'viv-St.plan) 2,25 km \u00f6n\u00f6 Lemberg-Zentrum, inmitten eines Landschaftsparkes a/\u00f6stl. Stadtrand", "source": 1}}, {"model": "metainfo.text", "pk": 10788, "fields": {"kind": 2, "text": "= okres; ca. 14 km w. Mor. T\u0159ebov\u00e1, St. i/Sch\u00f6nhenstgau a/d Zwittawa (Svitava);", "source": 1}}, {"model": "metainfo.text", "pk": 11195, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11196, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11197, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11198, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11199, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11200, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11203, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11204, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11205, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11206, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11207, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11210, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11211, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11214, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11215, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11218, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11219, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11220, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11221, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11222, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11223, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11224, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11225, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11226, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11227, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11228, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11229, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11230, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11231, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11234, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11235, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11236, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11237, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11238, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11239, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11240, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11241, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11242, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11243, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11244, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11245, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11246, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11249, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11250, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11251, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11252, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11253, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11254, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11255, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11256, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11257, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11258, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11259, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11260, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11261, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11262, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11263, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11266, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11269, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11270, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11271, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11272, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11275, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11278, "fields": {"kind": 236, "text": "http://www.geonames.org/maps/google_46.547_15.596.html\r\nOthmar Reiser's Geburtsort ist Hrastje, der heute Pekre heisst, und neben Maribor liegt.", "source": null}}, {"model": "metainfo.text", "pk": 11279, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11280, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11281, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11284, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11285, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11286, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11287, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11288, "fields": {"kind": 236, "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, B\u00f6hmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der b\u00f6hmische Lachovice der richtige", "source": null}}, {"model": "metainfo.text", "pk": 11289, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11290, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11291, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11292, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11293, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11294, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11299, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11300, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11301, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11302, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11303, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11304, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11305, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11308, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11311, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11312, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11313, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11314, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11317, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11318, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11319, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11320, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11321, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11322, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11323, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11324, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11325, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11326, "fields": {"kind": 236, "text": "ziemlich viele \u00d6BL labels f\u00fcr Meran!", "source": null}}, {"model": "metainfo.text", "pk": 11327, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11330, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11331, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11334, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11335, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11336, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11337, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11338, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11339, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11342, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11343, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11344, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11345, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11346, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11347, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11348, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11349, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11350, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11351, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 12155, "fields": {"kind": 130, "text": "Sohn von Joseph T. und Fortun\u00e9e Stein (urkundl.; vermutl. jedoch illegitimer Sohn von \u00bfFranz Josef F\u00fcrst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers Fran\u00e7ois Boucher und Tochter des Operns\u00e4ngers Luigi Lablache, verheiratet. \u2013 T. zog 1822 nach Wien, wo er Klavierunterricht beim Ersten Fagottisten der Hofoper, August Mittag, erhielt und das polytechn. Inst. besucht haben soll (nicht nachweisbar). In weiterer Folge stud. er bei \u00bfSimon Sechter (Theorie) und \u00bfJohann Nep. Hummel (Klavier). 1826 trat er erstmals, zun\u00e4chst in Wr. Privatzirkeln, als Pianist auf. 1830 f\u00fchrte ihn die erste Auslandstournee nach Dtld. und England, anschlie\u00dfend in andere europ. L\u00e4nder. Nach weiteren Stud. bei \u00bfIgnaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 gro\u00dfe Erfolge in Paris und triumphierte 1837\u201348 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und S\u00fcdamerika, wo er u.\u00a0a. in New York eine Klavierschule gr\u00fcndete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die n\u00e4chsten Jahre zur\u00fcckgezogen lebte. Nach Wiederaufnahme seiner Tourneen 1862 (London und Paris) ging er 1863 abermals nach Brasilien, danach schied er aus dem Konzertleben aus. Einem Brief Felix Mendelssohn-Bartholdys zufolge galt T. bis zur Jh.mitte neben \u00bfFranz v. Liszt als gr\u00f6\u00dfter Klaviervirtuose seiner Zeit. 1837 kam es zu einem \u00f6ff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle \u00d6ffentlichkeit sah Liszt als Romantiker, w\u00e4hrend der von seinem Auftreten her aristokrat. T. eher f\u00fcr ein klassizist. Musikideal stand. Auch die Qualit\u00e4t der Kompositionen beider wurde kontr\u00e4r beurteilt. Liszt bezeichnete T.s Werke in der \u201eRevue et gazette musicale de Paris\u201c als eine Mischung aus Monotonie und Unverm\u00f6gen. Die so aufgeschaukelte Rivalit\u00e4t kulminierte, als beide Musiker an einem von F\u00fcrstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Fr\u00e9d\u00e9ric Chopin und \u00bfCarl Czerny, an einer Kollektivkomposition f\u00fcr die F\u00fcrstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen \u00fcber Themen bekannter Opern dessen gr\u00f6\u00dften Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zur\u00fcck. T.s Personalstil kennzeichneten v.\u00a0a. das Hervortreten der auf beide H\u00e4nde verteilten Melodie in der Mittellage, w\u00e4hrend diese u.\u00a0a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. \u201eL\u2019Art du chant appliqu\u00e9 au piano\u201c festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosit\u00e4t, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n", "source": 531}}, {"model": "metainfo.text", "pk": 12156, "fields": {"kind": 131, "text": "Thalberg Sigismund (Fortun\u00e9 Fran\u00e7ois), Pianist und Komponist. Geb. P\u00e2quis (Gen\u00e8ve-Bains des P\u00e2quis, CH), 8.\u00a01. 1812; gest. Posillipo (Napoli, I), 27.\u00a04. 1871.", "source": 531}}, {"model": "metainfo.text", "pk": 21722, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckers; lebte ab ca. 1781 bei seinem Gro\u00dfvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurf\u00fcrstlichen Hof in Bonn t\u00e4tig war. 1787 wurde R. Fl\u00f6tist der Hofkapelle und begann zu komponieren. 1794\u201399 lebte er in Hamburg und verdiente seinen Lebensunterhalt mit Musikunterricht, ab 1799 in Paris, wo er vergeblich auf die Urauff. zweier von ihm komponierter Opern hoffte. 1802\u201308 war er in Wien und stud. u. a. bei J. Haydn, Albrechtsberger und Salieri Komposition. Ab 1808 lebte R. in Paris, ab 1818 als Prof. f\u00fcr Komposition. Als Musikp\u00e4dagoge und Theoretiker erlangte er gro\u00dfes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Sch\u00fclern geh\u00f6rten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterlie\u00df auch als Komponist ein wertvolles und umfangreiches \u0152uvre. Mit seinen 24 Bl\u00e4serquintetten schuf er die Grundlage f\u00fcr das Repertoire derartiger Kammerensembles.\n", "source": 5804}}, {"model": "metainfo.text", "pk": 21723, "fields": {"kind": 131, "text": "Reicha\u00a0(Rejcha) Anton (Anton\u00edn) Josef, Komponist und Musikp\u00e4dagoge. * Prag, 26. 2. 1770; \u2020 Paris, 28. 5. 1836.", "source": 5804}}, {"model": "metainfo.text", "pk": 27186, "fields": {"kind": 130, "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808\u201320 lebte er in Wien und stud. bei Streicher, Albrechtsberger und Salieri. M. unterrichtete selbst, auch in der besten Ges. M., dessen Ruhm als Pianist und Komponist (seine Variationen \u00fcber den Alexander-Marsch von 1815 blieben jahrzehntelang ein Pr\u00fcfstein pianist. Virtuosit\u00e4t) st\u00e4ndig wuchs, trat in Prag, Leipzig und Dresden auf. 1820 machte er ausgedehnte Reisen durch Deutschland, Holland, Belgien, Frankreich und England und hielt sich auch wieder l\u00e4nger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 \u00fcbersiedelte M. nach London und geh\u00f6rte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den f\u00fchrenden Pers\u00f6nlichkeiten des Musiklebens. 1846 \u00fcbernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der gro\u00dfen Pianisten seiner Zeit und setzte sich vor allem f\u00fcr Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des \u201eFidelio\u201c hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bem\u00fchte er sich tatkr\u00e4ftig um dessen Unterst\u00fctzung durch die Londoner Philharmonic Society.\n", "source": 8543}}, {"model": "metainfo.text", "pk": 27187, "fields": {"kind": 131, "text": "Moscheles\u00a0Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; \u2020 Leipzig, 10. 3. 1870.", "source": 8543}}, {"model": "metainfo.text", "pk": 30762, "fields": {"kind": 130, "text": "Sohn des Esterh\u00e1zyschen Verwalters Adam L. (1776\u20131827), Neffe des Vorigen, Vetter des Arztes und Schriftstellers Joseph Anton L. (s. d.) und des Folgenden; erhielt den ersten Klavierunterricht vom Vater. Im August oder September 1819 d\u00fcrfte er in Baden bei Wien erstmals \u00f6ff. aufgetreten sein. Weitere Konzerte folgten in \u00d6denburg und Pre\u00dfburg. Auf Grund des letzten (26. 11. 1820) setzten ihm ung. Magnaten ein Studienstipendium aus. Da J. N. Hummels (s. d.) Forderungen zu hoch waren, brachte der Vater den Knaben nach Wien zu C. Czerny (s. d.). Neben dessen Klavierunterricht erhielt er Unterweisung in Musiktheorie durch A. Salieri. 1822 wurde der Elfj\u00e4hrige zur Mitarbeit an A. Diabellis (s. d.) \u201eVaterl\u00e4ndischem K\u00fcnstlerverein\u201c eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er \u00f6ff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum gek\u00fc\u00dft. Der Erl\u00f6s dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die M\u00f6glichkeit zur \u00dcbersiedlung nach Paris; auf der Reise und sp\u00e4ter von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausl\u00e4nder die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., haupts\u00e4chlich nach der Methode Kalkbrenners (s. d.) fort, stud. aber Musiktheorie bei F. Paer und A. Reicha. Er blieb bis 1837 in Paris und unterrichtete in den h\u00f6chsten Kreisen. Berlioz und Paganini regten seine k\u00fcnstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem pers\u00f6nlichen Kontakt stand. 1835\u201339 lebte L. mit Gfn. Marie d\u2019Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die K\u00fcnstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzertt\u00e4tigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa f\u00fchrte. In Kiew begegnete er 1847 der F\u00fcrstin Carolyne Sayn-Wittgenstein, welche ihren Mann verlie\u00df und sich schlie\u00dflich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum gro\u00dfherzoglichen Kapellmeister in au\u00dferordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausge\u00fcbt hatte und nun in vollem Ma\u00dfe aufnahm. Seine Lebensgemeinschaft mit der F\u00fcrstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verh\u00e4ltnissen entfaltete er eine erfolgreiche k\u00fcnstler. T\u00e4tigkeit, welche in dem selbstlosen Eintreten f\u00fcr R. Wagner gipfelte. Wahrscheinlich unter dem Einflu\u00df der F\u00fcrstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither f\u00fchrte er ein unstetes und unbefriedigtes Wanderleben, kehrte f\u00fcr kurze Zeit auch nach Weimar zur\u00fcck, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fu\u00dfend, die Klaviertechnik ungeheuer ausgebaut, in Richtung auf den Orchesterklang hin, auf eine neue Gesanglichkeit vom romant. Lied her und auf die von ihm bedeutend erweiterten M\u00f6glichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilit\u00e4t des Anschlages. Nicht weniger hat L. als Komponist gewirkt, hier vor allem auf harmon. Gebiet, wegweisend aber auch in der Auslotung der techn. und formalen M\u00f6glichkeiten \u00fcberhaupt und in der Programmatik der inhaltlichen Erf\u00fcllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gr\u00fcndete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n", "source": 10332}}, {"model": "metainfo.text", "pk": 30763, "fields": {"kind": 131, "text": "Liszt\u00a0Franz von, Komponist. * Raiding, Kom. \u00d6denburg (Burgenland), 22. 10. 1811; \u2020 Bayreuth (Oberfranken), 31. 7. 1886.", "source": 10332}}, {"model": "metainfo.text", "pk": 44908, "fields": {"kind": 130, "text": "Von ihrer Mutter und t\u00fcchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male \u00f6ffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n", "source": 17415}}, {"model": "metainfo.text", "pk": 44909, "fields": {"kind": 131, "text": "Blahetka\u00a0Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; \u2020 Boulogne sur Mer, 1. 1. 1885.", "source": 17415}}, {"model": "metainfo.text", "pk": 45290, "fields": {"kind": 130, "text": "B. stammt aus einer aus dem Niederl\u00e4ndischen eingewanderten Familie, sein erster Lehrer, Chr. G. Neefe, vermittelte ihm die Kenntnis bedeutender Meisterwerke und machte publizistisch die Fachwelt auf das junge Talent aufmerksam und das Wohlwollen des Kurf\u00fcrsten Maximilian, des j\u00fcngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde f\u00fcr den weiteren \u00e4u\u00dferen Lebensweg B.s entscheidend, zumal der aus \u00d6sterr. an den K\u00f6lner Hof gekommene Graf Franz Adam Waldstein ihm die f\u00fcr die ersehnte Wr. Lehrzeit n\u00f6tige geldliche Unterst\u00fctzung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd f\u00f6rderte, wurde aber nicht sein Sch\u00fcler, da die Todeskrankheit der Mutter B.s R\u00fcckkehr forderte. Als sie am 17. 7. 1787 starb, mu\u00dfte B. nun f\u00fcr den entm\u00fcndigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurf\u00fcrstliche Hilfe nach Wien, wo er den gew\u00fcnschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schlo\u00df. Seine von da an w\u00e4hrende Bindung an Wien ist vor allem Erzh. Rudolf und den F\u00fcrsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosph\u00e4re Wiens, in der B. zunehmend Verst\u00e4ndnis als K\u00fcnstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikst\u00e4dten begehrt wurden, erfolgte oft auch widerrechtlich; B.s Kampf dagegen war nur ein Zug seiner steigenden inneren Auflehnung gegen manche Unvollkommenheiten des polit. und soz. Lebens, mit deren Problematik sich sein Gerechtigkeitssinn oft st\u00fcrmisch auseinandersetzte (s. die annullierte Widmung der\u201cEroica\u201d an Napoleon, als dieser sich zum K. kr\u00f6nen lie\u00df). Um 1800 begann sein Geh\u00f6r zu schwinden. 1815 wurde er taub. Das \u201eHeiligenst\u00e4dter Testament\u201c von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die \u00fcbermenschlichen moralischen Kr\u00e4fte, die ihn dennoch am Werk lie\u00dfen, das sich in jener Katastrophenzeit zur F\u00fclle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der fr\u00fcher als Interpret seiner Werke oder als Improvisator am Klavier und spr\u00fchender Geist gesellschaftlich brilliert hatte, immer mehr abschlo\u00df, l\u00f6sten die Freunde Oliva, Schindler und Holz jene gl\u00e4nzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste gro\u00dfe Musiker, der ein warmes Verh\u00e4ltnis zur Natur bekennt, auch hierin Haydn n\u00e4her als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als K\u00fcnder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 k\u00fcndigt sich sein Leberleiden an, das B.s sonst so robuste Gesundheit untergrub; 1826, auf dem Heimweg von einem Landaufenthalt bei seinem Bruder Johann in Gneixendorf bei Krems, \u00fcberfiel ihn eine Lungenentz\u00fcndung, zu der pl\u00f6tzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n", "source": 17608}}, {"model": "metainfo.text", "pk": 45291, "fields": {"kind": 131, "text": "Beethoven\u00a0Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; \u2020 Wien, 26. 3. 1827.", "source": 17608}}, {"model": "metainfo.text", "pk": 47030, "fields": {"kind": 130, "text": "Tochter von \u2192Adolf B\u00e4uerle und seiner ersten Frau Antonie B\u00e4uerle, geb. Egger. \u2013 B. zeigte schon in fr\u00fchester Kindheit eine Doppelbegabung f\u00fcr Musik und Sprachen, die in ihrer Erziehung sehr gef\u00f6rdert wurde. So erhielt sie Unterricht bei \u2192Carl Czerny. Dennoch beschr\u00e4nkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und \u00e4hnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Gro\u00dfbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische T\u00e4tigkeit f\u00fcr die \u201eWiener Theater-Zeitung\u201c (\u201eWiener allgemeine Theaterzeitung\u201c) ihres Vaters unter ihren Pseudonymen (auch \u201eF\u2026\u201c). B. war au\u00dferdem auch eine \u00fcberaus produktive \u00dcbersetzerin aus dem Englischen und Franz\u00f6sischen, u. a. \u00fcbertrug sie die Novelle \u201eDer Spion der vornehmen Welt\u201c von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), \u201eMi\u00df Mary, oder die Erzieherin\u201c (in: Wiener allgemeine Zeitung f\u00fcr Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und \u201eGilbert und Gilberte\u201c von Eug\u00e8ne Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), \u201eAntonie, die Tochter der Berge\u201c (ebd., 1850, Nr. 157\u2013176, 180\u2013201), \u201eDer letzte Irl\u00e4nder\u201c (ebd., 1851, Nr. 293ff.) und \u201eDie Marquise von Norville\u201c von \u00c9lie Berthet (1856), \u201eConcino Concini oder Die Tochter des Blinden\u201c (1855, 1856 Neuaufl. unter dem Titel \u201eDer Menschenj\u00e4ger oder Der Blinde\u201c) von Emanuele Gonzal\u00e8s sowie \u201eDie letzte der Feen\u201c von George Payne Rainsford James (1849). Einige dieser \u00dcbersetzungen erschienen auch im \u201eBelletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen\u201c des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der \u201eOstdeutschen Post\u201c und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift \u201eDer Salon\u201c erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, f\u00fchrte sie gemeinsam mit dem Redakteur Moritz Morl\u00e4nder (eigentlich Moriz Engl\u00e4nder) die \u201eWiener Theaterzeitung\u201c ab J\u00e4nner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. v\u00f6llig zur\u00fcckgezogen.\n", "source": 17852}}, {"model": "metainfo.text", "pk": 47031, "fields": {"kind": 131, "text": "B\u00e4uerle Friederike, Ps. Friedrich Horn, Schriftstellerin, \u00dcbersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Nieder\u00f6sterreich), 17. 7. 1896.", "source": 17852}}, {"model": "metainfo.text", "pk": 47126, "fields": {"kind": 130, "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, B\u00f6hmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zun\u00e4chst als Oboist beim Milit\u00e4r und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. \u2013 Wenzel Czernys T\u00e4tigkeit als Klavierlehrer f\u00fchrte die Familie 1791\u201395 nach Polen. So erhielt C., der bereits mit drei Jahren Klavier zu spielen begann und mit sieben seine ersten Kompositionen zu Papier brachte, den ersten Klavierunterricht auch von seinem Vater und konnte dank seiner au\u00dfergew\u00f6hnlichen Begabung bereits als Neunj\u00e4hriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung f\u00fcr C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei \u2192Ludwig van Beethoven, der ihn unverz\u00fcglich als Sch\u00fcler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Urauff\u00fchrung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere fr\u00fch, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Sch\u00fclerinnen und Sch\u00fcler waren Theodor D\u00f6hler, Stephen Heller, \u2192Sigismund Thalberg, \u2192Marie Leopoldine Blahetka, Ninette de Belleville sowie \u2192Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine \u201e\u00c9tudes d\u2019ex\u00e9cution transcendante\u201c). Auch Beethovens Neffe Karl wurde ein Sch\u00fcler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, \u2192Ignaz Moscheles\u2019 und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken f\u00fcr Klavier verbunden, die sich an Anf\u00e4nger (etwa \u201eDie Schule der Gel\u00e4ufigkeit\u201c) ebenso richten wie an bereits gereifte Pianisten (\u201eSchule des Virtuosen\u201c). Dazu kommen St\u00fccke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die gr\u00f6\u00dfte Popularit\u00e4t erlangte C.s \u201eVollst\u00e4ndige theoretisch-practische Pianoforte-Schule \u2026\u201c (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen \u0152uvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Ch\u00f6re, Ges\u00e4nge und B\u00fchnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einfl\u00fcsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten St\u00fccke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Dar\u00fcber hinaus war C. als Musiktheoretiker t\u00e4tig. Er verfasste eine \u201eSystematische Anleitung zum Fantasieren auf dem Pianoforte\u201c, z\u00e4hlte zu den ersten Editoren einer Bach-Gesamtausgabe und \u00fcbersetzte vier umfangreiche Kompositions-Traktate von \u2192Anton Reicha. 1842 schrieb C. seine Autobiographie \u201eErinnerungen aus meinem Leben\u201c. Abgesehen von einigen Reisen nach Italien und einem Aufenthalt in Frankreich (1837) sowie England verbrachte er sein gesamtes Leben in seiner Heimatstadt. Er starb als wohlhabender Mann und vermachte sein Verm\u00f6gen k\u00fcnstlerischen und wohlt\u00e4tigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n", "source": 18525}}, {"model": "metainfo.text", "pk": 47127, "fields": {"kind": 131, "text": "Czerny (\u010cern\u00fd) Carl, Pianist, P\u00e4dagoge und Komponist. Geb. Leopoldstadt, Nieder\u00f6sterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); r\u00f6m.-kath.", "source": 18525}}, {"model": "metainfo.text", "pk": 47200, "fields": {"kind": 130, "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und National\u00f6konomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Ru\u00dfland auf, war sp\u00e4ter Mitleiter der \u201eFreien B\u00fchne\u201c in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, B\u00fchnendichter und Theaterkritiker. 1909 heiratete er die gro\u00dfe Wagnerinterpretin, Hofoperns\u00e4ngerin Anna v. Mildenburg (s. u.). 1912 \u00fcbersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni\u2013November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in M\u00fcnchen. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von au\u00dfergew\u00f6hnlicher Menschenkenntnis, ein gl\u00e4nzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., geh\u00f6ren zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen \u00d6sterreich.\n", "source": 102}}, {"model": "metainfo.text", "pk": 47201, "fields": {"kind": 131, "text": "Bahr\u00a0Hermann, Dichter und Schriftsteller. * Linz (O.\u00d6.), 19. 7. 1863; \u2020 M\u00fcnchen, 14. 1. 1934.", "source": 102}}, {"model": "metainfo.text", "pk": 47204, "fields": {"kind": 130, "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt t\u00e4tig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er kl\u00e4rte die Ursachen der hohen S\u00e4uglingssterblichkeit bei k\u00fcnstlicher Ern\u00e4hrung und besch\u00e4ftigte sich eingehend mit der Tuberkulose im Kindesalter. Sp\u00e4ter lehrte er in Berlin, Stra\u00dfburg und D\u00fcsseldorf. Durch Cz., einen der Begr\u00fcnder und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine gro\u00dfe Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine f\u00fchrende Stellung in der Kinderheilkunde inne.\n", "source": 114}}, {"model": "metainfo.text", "pk": 47205, "fields": {"kind": 131, "text": "Czerny\u00a0Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; \u2020 Berlin, 3. 10. 1941.", "source": 114}}, {"model": "metainfo.text", "pk": 47206, "fields": {"kind": 130, "text": "Absolvierte die Theres, Milit. Akad., 1842\u201348 \u00f6sterr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, fl\u00fcchtete 1849 nach Deutschland und lebte von 1850\u201357 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Pr\u00e4s. Mitre machte ihn zum Chef der Sektion des milit. Ingenieurwesens. Als solcher nahm er die Karte des paraguayisch-brasilianischen Grenzgebietes von Argentinien auf. lm Krieg der Tripelallianz gegen Paraguay 1865\u201369 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa F\u00e9 nach Esperanza und plante die Festungen in den Provinzen C\u00f3rdoba, Santa F\u00e9 und Buenos Aires. 1870\u201374 Leiter des Colegio Militar; 1875\u2013 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. f\u00fcr Mathematik in Concepci\u00f3n del Uruguay. 1884 in die Pr\u00fcfungskomm. des Colegio Militar und in die Comisi\u00f3n revisadora y proyectora berufen, 1884\u201395 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n", "source": 116}}, {"model": "metainfo.text", "pk": 47207, "fields": {"kind": 131, "text": "Czetz\u00a0Johann. * Gid\u00f3falva, 8. 6. 1822; \u2020 Buenos Aires, 6. 9. 1904.", "source": 116}}, {"model": "metainfo.text", "pk": 47208, "fields": {"kind": 130, "text": "Stud. in Br\u00fcnn und Olm\u00fctz unter Leitung seines Oheims Caroni, trat 1808 in das m\u00e4hrisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekret\u00e4r bei der Obersten Justizstelle in Wien.\n", "source": 117}}, {"model": "metainfo.text", "pk": 47209, "fields": {"kind": 131, "text": "Czikann\u00a0Johann Jakob Heinrich, Beamter und Schriftsteller. * Br\u00fcnn, 10. 7. 1789; \u2020 Br\u00fcnn, 10. 6. 1855.", "source": 117}}, {"model": "metainfo.text", "pk": 47210, "fields": {"kind": 130, "text": "Sohn des Christian C.-G., trat 1826 in die Armee ein, 1839 Obst. und Rgtskmdt., 1846 GM. und Brigadier in Prag, 1848 in Mailand; k\u00e4mpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenb\u00fcrgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. Gy\u00f6rgy und Kaszon-Ujfalu; Landeskommandierender in B\u00f6hmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, k\u00e4mpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vlie\u00df; 1866 Kmdt. des 1. Armeekorps gegen Preu\u00dfen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n", "source": 108}}, {"model": "metainfo.text", "pk": 47211, "fields": {"kind": 131, "text": "Clam-Gallas\u00a0Eduard Graf, General. * Prag, 11. 3. 1805; \u2020 Wien, 17. 3. 1891.", "source": 108}}, {"model": "metainfo.text", "pk": 47212, "fields": {"kind": 130, "text": "\u00c4ltester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853\u201359 Landespr\u00e4s. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorit\u00e4t; haupts\u00e4chlich nach seinen Vorschl\u00e4gen entstand das Oktoberdiplom; F\u00fchrer der feudal-klerikal-slaw. und f\u00f6deralistischen Partei, seit 1862 nur mehr im Landtag. Er war einer der Urheber der Abstinenzpolitik der Tschechen und konzipierte 1871 die Fundamentalartikel; unter Taaffe kehrten die Tschechen 1879 in den Reichsrat zur\u00fcck und C. war wie vorher als Generalreferent des Budgets t\u00e4tig; 1884 zog er sich krankheitshalber vom \u00f6ffentlichen Leben zur\u00fcck; seit 1859 Geh. Rat, seit 1861 Pr\u00e4s. des B\u00f6hmischen Mus., Ehrenmitgl. der Kgl. B\u00f6hm. Ges. d. Wiss.\n", "source": 109}}, {"model": "metainfo.text", "pk": 47213, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; \u2020 Prag, 5. 6. 1887.", "source": 109}}, {"model": "metainfo.text", "pk": 47214, "fields": {"kind": 130, "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des F\u00fcrsten Thun F\u00fchrer der Rechten im Herrenhaus, stand hier und im b\u00f6hmischen Landtag den Tschechen nahe. Im Weltkrieg k\u00e4mpfte er an der russ. und an der italien. Front und r\u00fcckte von den Tschechen ab, als diese immer mehr auf die Zerst\u00f6rung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpr\u00e4s. Er suchte vergeblich, Vertreter aller \u00f6sterr. Nationalit\u00e4ten ins Kabinett zu berufen, um einen langfristigen Ausgleich mit Ungarn zustandezubringen, aber die Tschechen lehnten ab; er setzte das Parlament erfolglos wieder in seine Rechte ein, verstimmte die Deutschen, deren W\u00fcnsche nicht erf\u00fcllt wurden und vermochte nicht, die Tschechen, S\u00fcdslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917\u201319 Milit\u00e4rgouverneur von Montenegro. Pr\u00e4s. der Vereinigung kathol. Edelleute \u00d6sterr., Ritter des Ordens vom Goldenen Vlie\u00df, Geh. Rat und K\u00e4mmerer.\n", "source": 110}}, {"model": "metainfo.text", "pk": 47215, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; \u2020 Clam b. Grein, 7. 3. 1932.", "source": 110}}, {"model": "metainfo.text", "pk": 47216, "fields": {"kind": 130, "text": "Stud. in Marburg und Gie\u00dfen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. f\u00fcr Zoologie in W\u00fcrzburg, 1870 in G\u00f6ttingen, 1873 f\u00fcr Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gr\u00fcnder er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in G\u00f6ttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n", "source": 111}}, {"model": "metainfo.text", "pk": 47217, "fields": {"kind": 131, "text": "Claus\u00a0Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; \u2020 Wien, 18. 1. 1899.", "source": 111}}, {"model": "metainfo.text", "pk": 47218, "fields": {"kind": 130, "text": "Stud. in G\u00f6ttingen und Berlin, 1855 Dr. phil., 1857\u201360 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. f\u00fcr Arch\u00e4ologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete arch\u00e4ologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Arch\u00e4ologie, Kunstgeschichte und klass. Philologie verbindende Lehrt\u00e4tigkeit. Er begr\u00fcndete die Wr. Vorlegebl\u00e4tter, errichtete 1876 zusammen mit O. Hirschfeld das Arch\u00e4olog.-epigr. Seminar, f\u00fchrte zwei \u00f6sterr. Grabungskampagnen auf der Insel Samothrake durch, rief das gro\u00dfe Werk der Wr. Akad. d. Wiss. \u201eDie attischen Grabreliefs\u201c ins Leben und gab in 3 Heften der Denkschriften \u201eR\u00f6mische Bildwerke einheimischen Fundorts in \u00d6sterreich\u201c heraus. 1877\u201387 \u00fcbernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887\u20131905 leitete er als Gen.-Sekr. das Arch\u00e4olog. Inst. des Dt. Reiches, dem er 1903 in der R\u00f6m.-german. Komm. auch eine Zentralstelle f\u00fcr die arch\u00e4olog. Heimatforschung anschlo\u00df. In seinen beiden letzten Stellungen galten seine Arbeiten vor allem den von ihm angeregten Ausgrabungen in Pergamon und den dort gemachten Funden. C. hat die versch. Gebiete der Arch\u00e4ologie durch bahnbrechende Werke gef\u00f6rdert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n", "source": 112}}, {"model": "metainfo.text", "pk": 47219, "fields": {"kind": 131, "text": "Conze\u00a0Alexander, Arch\u00e4ologe. * Hannover, 10. 12. 1831; \u2020 Berlin, 19. 7. 1914.", "source": 112}}, {"model": "metainfo.text", "pk": 47220, "fields": {"kind": 130, "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. K\u00fcnste, hatte 1860\u201364 ein Atelier in M\u00fcnchen, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg f\u00fcr das Arsenal auszuf\u00fchren, leitete 1883 die Jubil\u00e4umsausstellung zur T\u00fcrkenbelagerung im Rathaus, stellte 1886 die st\u00e4dtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. K\u00fcnste.\n", "source": 113}}, {"model": "metainfo.text", "pk": 47221, "fields": {"kind": 131, "text": "Costenoble\u00a0Karl, Bildhauer. * Wien, 26. 11. 1837; \u2020 Wien, 20. 6. 1907.", "source": 113}}, {"model": "metainfo.text", "pk": 47226, "fields": {"kind": 130, "text": "Stud. in Prag Jus; ao. Prof. f\u00fcr Rechtsgeschichte an der Univ. Prag; Mitgl. der B\u00f6hm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des b\u00f6hm. Stadtrechtes.\n", "source": 103}}, {"model": "metainfo.text", "pk": 47227, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Jarom\u00edr, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; \u2020 Prag, 16. 10. 1914.", "source": 103}}, {"model": "metainfo.text", "pk": 47228, "fields": {"kind": 130, "text": "Sohn des Dichters Franz Ladisl. C., kam mit seinem Vater nach Breslau, wo er die unteren Klassen des kathol. Gymn. besuchte, Deutsch lernte und sein erstes Herbarium anlegte. 1849 kehrte die Familie nach Prag zur\u00fcck. Nach dem Tode des Vaters nahm sich der Physiologe Purkyne seiner an und bei ihm lernte C. auch die exakte Methode der mikroskopischen Untersuchung. Noch vor Beendigung seiner Studien erschienen die ersten botanischen Aufs\u00e4tze. Nach Vollendung der Univ. wurde er Gymnasialsupplent in Komotau, wo er die Flora des Erzgebirges kennenlernte. 1860 Kustos am Botanischen Mus. in Prag, 1863 Dr.phil., 1866 Doz. an der Prager Technik, dann Vorstand der botanischen Sektion des \u201eKomitees f\u00fcr die naturwiss. Durchforschung B\u00f6hmens\u201c und Mitgl. der \u201eB\u00f6hmischen Ges. d. Wiss.\u201c\n", "source": 104}}, {"model": "metainfo.text", "pk": 47229, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Ladislav, Botaniker. * Prag, 29. 11. 1834; \u2020 Prag, 24. 11. 1902.", "source": 104}}, {"model": "metainfo.text", "pk": 47230, "fields": {"kind": 130, "text": "Gr\u00fcndete 1842 eine Fabrik f\u00fcr Blechblasinstrumente und baute eine Anzahl versch. geformter Kontraba\u00dfinstrumente f\u00fcr die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n", "source": 105}}, {"model": "metainfo.text", "pk": 47231, "fields": {"kind": 131, "text": "Cerven\u00fd\u00a0V\u00e1clav Franti\u0161ek, Instrumentenmacher. * Dubec (B\u00f6hmen), 27. 9. 1819; \u2020 K\u00f6niggr\u00e4tz, 19. l. 1896.", "source": 105}}, {"model": "metainfo.text", "pk": 47232, "fields": {"kind": 130, "text": "Sohn des Malers Matthias Ch., befa\u00dfte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. K\u00fcnste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n", "source": 106}}, {"model": "metainfo.text", "pk": 47233, "fields": {"kind": 131, "text": "Charlemont\u00a0Hugo de, Maler. * Jamnitz, 18. 3. 1850; \u2020 Wien, 18. 3. 1939.", "source": 106}}, {"model": "metainfo.text", "pk": 47234, "fields": {"kind": 130, "text": "Stud. in Prag, 1771 Baccal., 1772 Priester, 1777 Pfarrer, 1779 Mitgl. des Prager Domkapitels, 1795 Bischof von Canea in partib., 1802 Bischof von Leitmeritz, hier als \u201eVater der Armen\u201c gepriesen, 1814 F\u00fcrsterzb. von Prag, 1815 inthronisiert. Gr\u00fcndete Schulen und Wohlt\u00e4tigkeitsanstalten.\n", "source": 107}}, {"model": "metainfo.text", "pk": 47235, "fields": {"kind": 131, "text": "Chlumczansk\u00fd\u00a0Wenzel Leopold von, Bischof. * Hostitz (B\u00f6hmen), 15. 11. 1749; \u2020 14. 6. 1830.", "source": 107}}, {"model": "metainfo.text", "pk": 47236, "fields": {"kind": 130, "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881\u201386 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollm\u00e4chtigter Min. in Belgrad, vertrat 1908 \u00d6sterr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913\u201315 a o. und bevollm\u00e4chtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der V\u00f6lkerbunds- und Friedensbewegung t\u00e4tig, Pr\u00e4s. der \u00f6sterr. V\u00f6lkerbundliga; Pazifist; Freund und F\u00f6rderer von Kunst und Wiss.\n", "source": 121}}, {"model": "metainfo.text", "pk": 47237, "fields": {"kind": 131, "text": "Dumba\u00a0Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; \u2020 Bodensdorf/Ossiachersee, 6. 1. 1947.", "source": 121}}, {"model": "metainfo.text", "pk": 47238, "fields": {"kind": 130, "text": "Stud. in Stuttgart und Berlin, arbeitete l\u00e4ngere Zeit im Atelier Siccardsburgs und Van der N\u00fclls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n", "source": 120}}, {"model": "metainfo.text", "pk": 47239, "fields": {"kind": 131, "text": "Doderer\u00a0Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; \u2020 Wien, 13. 5. 1900.", "source": 120}}, {"model": "metainfo.text", "pk": 47240, "fields": {"kind": 130, "text": "Sohn eines Bauern, zeigte fr\u00fch Interesse f\u00fcr Schnitzen und Zeichnen, aber erst nach dem Tode des Vaters gab er den Hof auf und ging 1860 nach Innsbruck, um bei Stolz die Bildschnitzerei zu erlernen. Auf dessen Rat wandte er sich der Malerei zu, ging 1862 an die Akad. in M\u00fcnchen, 1863\u201365 nach Paris, dann nach Tirol zur\u00fcck, 1867 wieder nach M\u00fcnchen, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einflu\u00df auf ihn aus\u00fcbte. 1878 Prof. an der M\u00fcnchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist au\u00dferdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten b\u00e4uerlichen Genremalerei.\n", "source": 118}}, {"model": "metainfo.text", "pk": 47241, "fields": {"kind": 131, "text": "Defregger\u00a0Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; \u2020 M\u00fcnchen, 2. 1. 1921.", "source": 118}}, {"model": "metainfo.text", "pk": 47242, "fields": {"kind": 130, "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899\u20131901 unter der Leitung von Sickel und Pastor am \u00d6sterr. Hist. Inst. in Rom, haupts\u00e4chlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917\u201346 (mit Unterbrechung von 1938\u201345) Ordinarius f\u00fcr Geschichte der Neuzeit. D., ein guter Kenner der Best\u00e4nde des Vat. Geheimarchivs, war 1929\u201338 als Nachfolger Pastors Dir. des \u00d6sterr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das \u00d6sterr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n", "source": 119}}, {"model": "metainfo.text", "pk": 47243, "fields": {"kind": 131, "text": "Dengel\u00a0Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; \u2020 Innsbruck, 9. 9. 1947.", "source": 119}}, {"model": "metainfo.text", "pk": 47276, "fields": {"kind": 130, "text": "Startete 1926 das erstemal bei einem Sch\u00fclerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen f\u00fcr M\u00e4dchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der M\u00e4dchen einen 1. und zwei 2. Pl\u00e4tze. 1929 gewann sie das Verbands-Neulings-Laufen f\u00fcr Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen f\u00fcr Damen in Innsbruck, Grummh\u00fcbel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen f\u00fcr Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Z\u00fcrich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die \u00f6sterr. Meisterschaft im Kunstlaufen f\u00fcr Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen f\u00fcr Damen in Z\u00fcrich und am Semmering. 1933 wurde sie abermals \u00f6sterr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine t\u00fcck. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein j\u00e4hes Ende.\n", "source": 122}}, {"model": "metainfo.text", "pk": 47277, "fields": {"kind": 131, "text": "Holovsky\u00a0Hilde, Kunstl\u00e4uferin. * Wien, 29. 4. 1917; \u2020 Wien, 3. 7. 1933.", "source": 122}}, {"model": "metainfo.text", "pk": 47384, "fields": {"kind": 130, "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887\u201394 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894\u20131903 Primarius an der Internen Abt. des K. Franz-Josef-Spitals und am Allg. Krankenhaus in Wien. 1901 tit. ao. Prof. an der Univ. Wien. 1903 o. Prof. f\u00fcr Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der \u00c4rzte in Wien, Mitgl. der Dt. Ges. f\u00fcr innere Med. und der Dt. Naturforscher und \u00c4rzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n", "source": 134}}, {"model": "metainfo.text", "pk": 47385, "fields": {"kind": 131, "text": "Lorenz\u00a0Heinrich, Internist. * Mies (Str\u00edbro, B\u00f6hmen), 13. 4. 1859; \u2020 Graz, 25. 3. 1945.", "source": 134}}, {"model": "metainfo.text", "pk": 47388, "fields": {"kind": 130, "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der \u201eKorrespondenz Wilhelm\u201c, die Polizei- und Hof\u00e4mter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim \u201eIllustrierten Wiener Extrablatt\u201c; 1876 war L. Kriegsberichterstatter im serb.-t\u00fcrk., 1877 im russ.-t\u00fcrk. und 1885 im bulgar.-serb. Krieg, 1878 in Bosnien. Ebenfalls als Reporter nahm L. am mazedon. Aufstand teil. Im Dienste seiner Redaktion unternahm er in den Folgejahren weite Reisen durch Europa, Nordamerika und weite Gebiete Afrikas. Am 2. 6. 1889 fuhr er mit einem Fiaker nach Paris zur Weltausst., wo ihm am 22. 6. ein triumphaler Empfang bereitet wurde. 1894 wurde er bei dem genannten Bl. stellvertretender Schriftleiter, 1898 (gem. mit J. Bauer, s.d.) Chefredakteur. L. war durch Feuilletons, Wr. Sittenschilderungen, Lokal- und Reiseberichte in weiten Kreisen bekannt geworden. Er war von wirkungsvoller Darstellungsf\u00e4higkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalit\u00e4t. Das \u201eIllustrierte Wiener Extrablatt\u201c war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des \u201eArmenvaters\u201c in seinem Bl. sowie als Viennensia-Sammler.\n", "source": 133}}, {"model": "metainfo.text", "pk": 47389, "fields": {"kind": 131, "text": "L\u00f6wy\u00a0Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (\u00dadlice, B\u00f6hmen), 14. 9. 1851; \u2020 Wien, 27. 12. 1905.", "source": 133}}, {"model": "metainfo.text", "pk": 47394, "fields": {"kind": 130, "text": "Sohn eines F\u00e4rbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und er\u00f6ffnete 1823 im 1. Bez. in der Weihburgg. einen Laden \u201eZur Kaiserin von \u00d6sterreich\u201c, 1824 einen Laden K\u00e4rntnerstr. 940, der 1844 vergr\u00f6\u00dfert wurde. 1824 wurde L. Meister und B\u00fcrger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glash\u00e4ndler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & G\u00f6rner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergr\u00f6\u00dferten Gesch\u00e4ftes vollst\u00e4ndig erneuert. L., nicht nur Glash\u00e4ndler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er h\u00e4ufig Reisen in Begleitung seiner S\u00f6hne Josef oder Ludwig unternahm), versuchte, nach franz\u00f6s. Pre\u00dfglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so da\u00df er viel franz\u00f6s. Pre\u00dfglas einf\u00fchren mu\u00dfte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenst\u00e4nde wurden nach Wien geliefert bzw. wurden auch Gegenst\u00e4nde nach L.s Entw\u00fcrfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten t\u00e4tig war, bezog Glas aus den b\u00f6hm. H\u00fctten und lie\u00df nach eigenen Mustern arbeiten. 1823\u201355 wurden Gl\u00e4ser im Biedermeierstil erzeugt. Die Fa. beteiligte sich an den Gewerbsproduktenausst. 1839 und 1845 in Wien, fertigte Spiegel und Luster an, wurde 1848 Sieger in einem Wettbewerb um die Beleuchtungseinrichtung im Palais des Vizekg. von \u00c4gypten und arbeitete f\u00fcr den Palazzo Reale in Venedig.\n", "source": 132}}, {"model": "metainfo.text", "pk": 47395, "fields": {"kind": 131, "text": "Lobmeyr\u00a0Josef, Fabrikant. * Grieskirchen (O.\u00d6.), 17. 3. 1792; \u2020 Wien, 8. 5. 1855.", "source": 132}}, {"model": "metainfo.text", "pk": 47402, "fields": {"kind": 130, "text": "Absolv. das Realgymn.; arbeitete bis 1868 f\u00fcr die Z. \u201eIllustrierte Welt\u201c, gab dann das demokrat. Bl. \u201eFreie Volksstimme\u201c heraus, war Korrespondent ausl\u00e4nd. Ztg. und begr\u00fcndete gem. mit S. Spitz 1870/71 das \u201e\u00d6sterreichisch-ungarische Volksblatt f\u00fcr Stadt und Land\u201c. Angeregt durch seine Bekanntschaft mit dem National\u00f6konomen L. v. Stein stud. er Volkswirtschaft und Statistik und gr\u00fcndete 1874 das Fachbl. \u201eGambrinus\u201c, welches gro\u00dfes Ansehen geno\u00df. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und N\u00e4hrausst. in Wien, 1904 k. Rat, Pr\u00e4s. des \u00f6sterr. Fachschriftstellerverbandes, Vizepr\u00e4s. des Reichsverbandes \u00f6sterr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n", "source": 130}}, {"model": "metainfo.text", "pk": 47403, "fields": {"kind": 131, "text": "Lichtblau\u00a0Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; \u2020 Abbazia (Opatija, Istrien), 10. 5. 1908.", "source": 130}}, {"model": "metainfo.text", "pk": 47404, "fields": {"kind": 130, "text": "Nach Absolv. der jurid. Stud. in Wien 1898 Konzipient in der k. k. Finanzprokuratur in Wien, dann Rechtspraktikant (Auskultant) beim Landesgericht Innsbruck, 1899 Richteramtspr\u00fcfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht f\u00fcr Zivilrechtssachen in Wien und 1927 Rat des Oberlandesgerichtes Wien. 1931 Vorsitzender Rat des Oberlandesgerichtes, wurde er im gleichen Jahr zum Rat des Verwaltungsgerichtshofes ernannt. L., der schon als Richter am Exekutionsgericht Wien durch seine vorz\u00fcglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich gr\u00f6\u00dfte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das \u00f6sterr. Exekutionsrecht l\u00fcckenlos erfa\u00dft und seinen Zusammenhang mit den \u00fcbrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsvertr\u00e4gen niedergelegt, tw. ber\u00fccksichtigt und dadurch die Exekutionsgrunds\u00e4tze eines gro\u00dfen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n", "source": 131}}, {"model": "metainfo.text", "pk": 47405, "fields": {"kind": 131, "text": "Lichtblau\u00a0Ludwig, Jurist. * Olm\u00fctz (Olomouc, M\u00e4hren), 25. 2. 1875; \u2020 Wien, 19. 12. 1935.", "source": 131}}, {"model": "metainfo.text", "pk": 47410, "fields": {"kind": 130, "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtspr\u00fcfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. f\u00fcr Botanik an der Univ. Graz, 1868 ao., 1869 o. Prof., 1876/77 Dekan, 1884/85 Rektor, 1873 erhielt er auch die Dion. des Botan. Gartens und die Supplierung der Lehrkanzel f\u00fcr Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begr\u00fcnder des Botan. Inst. der Univ., das gegen\u00fcber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatb\u00fccherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und T\u00fcbingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Pr\u00e4s. des Naturwiss. Ver. f\u00fcr Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Ver\u00f6ff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die \u00fcber Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbst\u00e4ndig erschienenen Werke geh\u00f6ren dazu, von denen die umfangreiche Monographie \u201eUntersuchungen \u00fcber die Lebermoose\u201c in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im K\u00e4rntner Landtag (1869\u201372) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n", "source": 128}}, {"model": "metainfo.text", "pk": 47411, "fields": {"kind": 131, "text": "Leitgeb Hubert,\u00a0Botaniker. * Portendorf b. Klagenfurt (K\u00e4rnten), 20. 10. 1835; \u2020 Graz, 5. 4. 1888 (Selbstmord).", "source": 128}}, {"model": "metainfo.text", "pk": 47414, "fields": {"kind": 130, "text": "Vater des Anatomen J\u00f3zsef v. L. (s. d.), Gro\u00dfvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Pre\u00dfburg stud. er Med. an den Univ. Wien und Pest, 1799 Dr. med. und Chirurgus des Kom. Gran. 1808 Prof. der Physiol. und der Anatomie an der Univ. Pest, 1809/10 und 1815\u201317 Dekan, 1818/19 Rektor. 1819 Prof. der Physiol. an der Univ. Wien. 1825 Statthaltereirat und Protomedicus, war er bis zu seinem Tode Dir. der Pester med. Fak. 1808 wurde er in den ung. Adelsstand erhoben. L., einer der ersten, der die Pockenimpfung in Ungarn anwandte (1799), erwarb sich auch 1831 gro\u00dfe Verdienste um die Bek\u00e4mpfung der Cholera. Er ma\u00df den psych. Vorg\u00e4ngen bei Erkrankungen und auch in der Therapie gro\u00dfe Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n", "source": 129}}, {"model": "metainfo.text", "pk": 47415, "fields": {"kind": 131, "text": "Lenhoss\u00e9k\u00a0Mih\u00e1ly Ign\u00e1c von, Physiologe. * Pre\u00dfburg, 11. 5. 1773; \u2020 Ofen (Buda, Ungarn), 11. 2. 1840.", "source": 129}}, {"model": "metainfo.text", "pk": 47418, "fields": {"kind": 130, "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen K\u00fcnste in Wien (bei Griepenkerl, s.d.) und M\u00fcnchen (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gr\u00fcndung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, M\u00e4rchen- und Landschaftsbildern, bet\u00e4tigte sich aber nach Gr\u00fcndung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einflu\u00df, mit au\u00dferordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schlo\u00df Esterhazy bei Pre\u00dfburg, Privatwohnungen der Maler Goltz und Ranzoni), B\u00fchnen- und Kost\u00fcmentw\u00fcrfe, Stickereien, F\u00e4cher, Kassetten, M\u00f6bel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60j\u00e4hrigen Regierungsjubil\u00e4um von K. Franz Joseph I. (s. d.) 1908. 1900\u201303 war er (als Vorg\u00e4nger von A. Roller) Ausstattungschef der Wr. Hofoper.\n", "source": 125}}, {"model": "metainfo.text", "pk": 47419, "fields": {"kind": 131, "text": "Lefler\u00a0Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; \u2020 Wien, 14. 3. 1919.", "source": 125}}, {"model": "metainfo.text", "pk": 47420, "fields": {"kind": 130, "text": "Tochter eines Rechtsanwaltes; stud. an den Univ. Wien und Heidelberg (M. Weber) Staatswiss., 1918 Dr.rer.pol. Nach 1918 redigierte sie in Wien die Frauenbeilage der Gewerkschaftsztg. \u201eDer Metallarbeiter\u201c und arbeitete als Sekret\u00e4rin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 \u00fcbernahm sie das Referat f\u00fcr Frauenarbeit in der Wr. Kammer f\u00fcr Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. \u201eArbeit und Wirtschaft\u201c. L., welche sich der Sozialdemokrat. Partei \u00d6sterr. angeschlossen hatte, heiratete 1921 den Redakteur der \u201eArbeiter-Zeitung\u201c Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den sp\u00e4teren Vorsitzenden der Vereinigung der Zeitungskorrespondenten bei den Vereinten Nationen. Sie bekleidete in der Bezirksorganisation Wien-Innere Stadt die Funktionen der Vorsitzenden des Bezirksbildungsausschusses und des Bezirksfrauenkomitees sowie der Obmannstellvertreterin der Bezirksorganisation. 1933 wurde sie in das Zentralfrauenkomitee der Sozialdemokrat. Partei berufen. 1934 war sie mit Otto L. eines der Gr\u00fcndungsmitgl. der illegalen Partei der \u201eRevolution\u00e4ren Sozialisten\u201c \u00d6sterr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der \u201eRevolution\u00e4ren Sozialisten\u201c. 1938 verhalf sie ihrem Mann zur Flucht ins Ausland, sie selbst wurde knapp vor der beabsichtigten Abreise verhaftet. Von Herbst 1939 bis zu ihrer Ermordung war sie im KZ Ravensbr\u00fcck.\n", "source": 126}}, {"model": "metainfo.text", "pk": 47421, "fields": {"kind": 131, "text": "Leichter\u00a0K\u00e4the, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; \u2020 Ravensbr\u00fcck (Brandenburg), 17. 3. 1942 (KZ).", "source": 126}}, {"model": "metainfo.text", "pk": 47422, "fields": {"kind": 130, "text": "Neffe des Gro\u00dfh\u00e4ndlers und Bankiers Markus Leidesdorfer v. Neuwall (s. d.); sollte Kaufmann werden, wandte sich aber gegen den Willen der Eltern dem Schauspielerberuf zu und debut. 1830 unter dem Namen Wallner in Krems. \u00dcber Bad Ischl, Wr. Neustadt, Laibach, Agram etc. kam L. 1835 nach Wien, wo er zuerst im Theater an der Wien und dann im Theater in der Leopoldstadt vorwiegend in Raimund-Rollen auftrat und besonders nach Raimunds Tod 1836, durch seine Raimunds Schauspielkunst getreu kopierende Darstellungsweise, gro\u00dfe Erfolge errang. 1839 ging er f\u00fcr zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle gr\u00f6\u00dferen St\u00e4dte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei St\u00e4dten f\u00fchrte L. auch die Dion. des Theaters. 1854 pachtete er das K\u00f6nigst\u00e4dt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Gesch\u00e4ftst\u00fcchtigkeit, seinen Flei\u00df und k\u00fcnstler. Sp\u00fcrsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerb\u00fchne erweitert hatte, bald lokale Ber\u00fchmtheit. 1864 lie\u00df er es vergr\u00f6\u00dfern und renovieren und er\u00f6ffnete es am 3. 12. als \u201eWallnertheater\u201c. Hatte er in den ersten Jahren seiner Dions.-T\u00e4tigkeit vor allem das moderne franz\u00f6s. Sittenst\u00fcck gepflegt, verwirklichte er in sp\u00e4teren Jahren mit Hilfe des Dichters D. Kalisch und seines vorz\u00fcglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gr\u00fcnden das Theater an C. Lebrun und unternahm nun einige gr\u00f6\u00dfere Reisen. Seine Reise- und Theatererlebnisse ver\u00f6ff. L., der auch Mitarbeiter der \u201eGartenlaube\u201c war, in viel gelesenen B\u00fcchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n", "source": 127}}, {"model": "metainfo.text", "pk": 47423, "fields": {"kind": 131, "text": "Leidesdorf\u00a0Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; \u2020 Nizza, 19. 1. 1876.", "source": 127}}, {"model": "metainfo.text", "pk": 47428, "fields": {"kind": 130, "text": "Bruder des Folgenden, Onkel des Juristen Stanko L. (s. d.); stud. an der Techn. Hochschule in Graz. Ab 1866 im Dienst an der Milit\u00e4rgrenze, zuerst in Temesv\u00e1r, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent f\u00fcr Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890\u201394 Sekret\u00e4r des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der \u201eVijesti\u201c (Berr.) dieses Ver. L. baute Stra\u00dfen (Ogulin\u2013Novi, Alt-Gradi\u0161ka\u2013Lipik), die Kanalisation des Jelas-Feldes und im s\u00fcd\u00f6stlichen Syrmien, Wasserleitungen f\u00fcr die St\u00e4dte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan f\u00fcr die Kanalisation von Agram etc.\n", "source": 124}}, {"model": "metainfo.text", "pk": 47429, "fields": {"kind": 131, "text": "Lapaine\u00a0Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; \u2020 Agram, 21. 2. 1923.", "source": 124}}, {"model": "metainfo.text", "pk": 47430, "fields": {"kind": 130, "text": "Tochter des Gro\u00dfindustriellen Josef v. Schroll (1821\u201391), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849\u201389), B\u00fcrgermeister der Stadt Braunau 1883\u201389, in zweiter Ehe ab 1892 mit dem Politiker und Gro\u00dfindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, \u00f6ff. Gesellschafterin der Fa. Benedikt Schrolls Sohn. Nach dem Tode Josef v. Schrolls wurden beide Schwestern Inhaberinnen der Firma, Johanna L., nach Vereinbarung, 1908 Alleininhaberin und Seniorchefin. Sie leitete die vielseitigen Industriebetriebe mit gro\u00dfer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (B\u00fcchereien, Krankenkasse, Spital etc.) f\u00fcr die bereits um die Jahrhundertwende ca. 2600 z\u00e4hlenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer L\u00e4ndchens.\n", "source": 123}}, {"model": "metainfo.text", "pk": 47431, "fields": {"kind": 131, "text": "Langer-Schroll\u00a0Johanna, Gro\u00dfindustrielle. * Braunau (Broumov, B\u00f6hmen), 2. 10. 1850; \u2020 ebenda, 9. 11. 1926.", "source": 123}}, {"model": "metainfo.text", "pk": 47432, "fields": {"kind": 130, "text": "Enkel des Freiburger Physikers J. J. M\u00fcller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van\u2019t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. M\u00fcnster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in M\u00fchlhausen, 1906 Priv.Doz. an der Univ. Basel, 1909 tit. Prof. M. wirkte ab 1911 als Leiter des anorgan.-wiss. und analyt. Laboratoriums bei den Farbenfabriken Bayer & Co. (Leverkusen), ab 1926 als Nachfolger J\u00fcptners (s. d.) als o. Prof. f\u00fcr chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich t\u00e4tig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivit\u00e4t und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefels\u00e4ure und Zement aus Gips und Ton gewann gro\u00dfe techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n", "source": 144}}, {"model": "metainfo.text", "pk": 47433, "fields": {"kind": 131, "text": "M\u00fcller\u00a0Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; \u2020 Wien, 9. 12. 1941.", "source": 144}}, {"model": "metainfo.text", "pk": 47446, "fields": {"kind": 130, "text": "Tochter eines Gutsbesitzers; kr\u00e4nkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkr\u00e4mpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so gro\u00dfes Aufsehen, da\u00df an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von G\u00f6rres, Brentano, Steinle, M\u00f6hler, D\u00f6llinger, Reisach und Ketteler besucht. 1841 \u00fcbersiedelte sie in das Tertiarinnenkloster in Kaltern. Als Mitgl. des 3. Ordens des Hl. Franziskus wurde sie seelsorglich von P. K. Soyer OFM betreut. Nach langem Leiden starb sie an Blutzersetzung. Die amtlichen Berichte \u00fcber sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n", "source": 143}}, {"model": "metainfo.text", "pk": 47447, "fields": {"kind": 131, "text": "M\u00f6rl\u00a0Maria Theresia von, Stigmatisierte. * Kaltern (S\u00fcdtirol), 16. 10. 1812; \u2020 ebenda, 11. 1. 1868.", "source": 143}}, {"model": "metainfo.text", "pk": 47448, "fields": {"kind": 130, "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer lie\u00df sich M. im Oktober 1843 als Matrose f\u00fcr die Kriegsmarine anwerben und machte 1844\u201346 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 k\u00e4mpfte er als Kmdt. eines Kanonenbootes in der Lagune, vor Ancona und bei der Blockade von Venedig. Nach verschiedenen Einschiffungen und Verwendungen in den folgenden Jahren war M. 1859 vor Lissa Kmdt. der Korvette \u201eMinerva\u201c, 1861/62 hatte er in Pola die Bauleitung der Fregatte \u201eSchwarzenberg\u201c, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapit\u00e4n mit Auszeichnung kommandierte. 1867 als Insel- und Festungskmdt. von Lissa, 1868 als Kmdt. des Seearsenals in Pola in Verwendung, unternahm M. 1869 eine Mission nach England, im Oktober dieses Jahres kommandierte er die in der Bucht von Cattaro zur Bek\u00e4mpfung des Aufstandes in S\u00fcddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871\u201383 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine gro\u00dfe administrative Begabung hatte, besa\u00df eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauauftr\u00e4gen f\u00fcr Schiffe trat er entschieden f\u00fcr die Besch\u00e4ftigung inl\u00e4nd. Firmen ein. Er war ein begeisterter Sammler klass. Altert\u00fcmer und ein bedeutender Numismatiker. Teile der \u201eSammlung Millosicz\u201c, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n", "source": 142}}, {"model": "metainfo.text", "pk": 47449, "fields": {"kind": 131, "text": "Millosicz\u00a0Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; \u2020 Leoben (Stmk.), 24. 7. 1890.", "source": 142}}, {"model": "metainfo.text", "pk": 47450, "fields": {"kind": 130, "text": "Sohn eines Weinbauern; stud. mit Hilfe seines Onkels, eines Landpfarrers, an den Gymn. in Warasdin und Marburg a. d. Drau, dann Phil. und Jus an den Univ. Graz (1838 Dr. phil.) und Wien (1841 Dr. jur.). 1837/38 suppl. er die philosoph. Lehrkanzel an der Univ. Graz und versuchte erfolglos, sich an der Univ. Innsbruck zu habil. Nach k\u00fcrzerer Praxis in Wr. Anwaltskanzleien bekam er 1844 mit Hilfe Kopitars (s. d.), der auf seine sprachliche Begabung aufmerksam geworden war, eine Amanuensisstelle an der Hofbibl. (1850 Skriptor, 1862 i. R.). 1849 wurde er ao., 1850 o. Prof. der slaw. Philol. und Literatur an der Univ. Wien, 1851/52, 1856/57 Dekan, 1854/55 Rektor, 1885 i. R. Pr\u00e4s. der Pr\u00fcfungskomm. f\u00fcr Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866\u20131869 Sekret\u00e4r der phil.-hist. Kl.), 1862 lebensl\u00e4ngliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Pr\u00e4s. des akadem. Ver. \u201eSlovenija\u201c in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zuk\u00fcnftigen \u00f6sterr. F\u00f6deration verlangte. 1849 war er slowen. Abg. beim Reichstag in Kremsier, wo er durch besonnene Haltung die Sympathie Stadions erweckte, der dann seine Ernennung zum ersten Prof. der Slawistik in \u00d6sterr. bewirkte. M., der schon im Gymn. gro\u00dfe sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einflu\u00df Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begr\u00fcnder der slaw. Philol. In der Kritik der Vergleichenden Grammatik des Sanskrit, Zend, Griech., Latein., Litau., Got. und Dt. von Bopp bewies M. 1844 die Notwendigkeit wiss. Erforschung nicht nur der von Bopp behandelten, sondern auch aller slaw. Sprachen und verfolgte unerm\u00fcdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewu\u00dftes Streben aller V\u00f6lker Europas nach einer gem. Sprache festzustellen (Neueurop\u00e4ismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkm\u00e4ler des Altslowen., wie M. irrt\u00fcmlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, M\u00e4hren und Ru\u00dfland bezeichnete, verfa\u00dfte und publ. er die \u201eVergleichende Grammatik der slavischen Sprachen\u201c. Vom Altslowen. ausgehend, analysierte er in unz\u00e4hligen Beispielen slaw. Spracherscheinungen und lie\u00df scheinbar nur das Wei\u00dfruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem \u201eeigenth\u00fcmlichen Zauber der Sprache\u201c, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdr\u00fcckte. Verh\u00e4ngnisvoll wurde ihm die von Kopitar \u00fcbernommene \u201ePannonische Theorie\u201c, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im \u00f6stlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. \u201eLexicon palaeoslovenico-graeco-latinum\u201c und das \u201eEtymologische W\u00f6rterbuch der slavischen Sprachen\u201c die bedeutendsten. Im Sinne des Neueurop\u00e4ismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begr\u00fcnder der rum\u00e4n. und alban. Philol. wurde. Er verfa\u00dfte umfangreiche Stud. \u00fcber die Mundarten und Wanderungen der Zigeuner Europas und edierte erfolgreich altkirchenslaw. Texte sowie serb. und griech. hist. Quellen. M. war auch in der Lehnwort-, Personen- und Ortsnamenforschung sowie in der Analyse der Volksepik bahnbrechend. Geringere Bedeutung haben dagegen seine mytholog. und polem. Schriften.\n", "source": 141}}, {"model": "metainfo.text", "pk": 47451, "fields": {"kind": 131, "text": "Miklosich\u00a0Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomer\u0161cak pri Ljutomeru, Unterstmk.), 20. 11. 1813; \u2020 Wien, 7. 3. 1891.", "source": 141}}, {"model": "metainfo.text", "pk": 47460, "fields": {"kind": 130, "text": "Stud. an der Exportakad. (Hochschule f\u00fcr Welthandel) in Wien, wo er die Lehramtspr\u00fcfung f\u00fcr h\u00f6here Handelsschulen und die Diplompr\u00fcfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule f\u00fcr Welthandel, 1931 Habil. f\u00fcr Betriebswirtschaftslehre an der Hochschule f\u00fcr Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. f\u00fcr Betriebswirtschaftslehre. 1938 wurde M. durch die Nationalsozialisten von der Hochschule entfernt. Nach Verhaftung (1942) und Verurteilung im selben Jahr zu sechs Jahren Zuchthaus wegen Kenntnis von verr\u00e4ter. Vorhaben und Unterlassung der Anzeige, w\u00e4hrend des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der B\u00f6rsenverkehr. Er verband in seinen Ver\u00f6ff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realit\u00e4t mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einflu\u00df von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbst\u00e4ndige Teildisziplin der Wirtschaftswiss. verstandenen Betriebswirtschaftslehre, von einer privatwirtschaftlich ausgerichteten Unternehmungslehre zu einer alle wirtschaftlichen Einheiten einer Volkswirtschaft untersuchenden Lehre, die somit auch die Haushalte einbeziehen sollte. Betriebs- und Volkswirtschaftslehre zeigen nach M. \u201eandere Seiten des wirtschaftlichen Geschehens\u201c, wobei von ersterer \u201eder Betrieb als eine mit konkreten Tatbest\u00e4nden und Aufgaben erf\u00fcllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens \u00fcberhaupt untrennbar verbunden erscheint\u201c.\n", "source": 140}}, {"model": "metainfo.text", "pk": 47461, "fields": {"kind": 131, "text": "Meithner\u00a0Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; \u2020 Wien, 13. 12. 1942.", "source": 140}}, {"model": "metainfo.text", "pk": 47466, "fields": {"kind": 130, "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der j\u00fcd. Deklassierten. Seine Lieder, die er in Gasth\u00e4usern und Sch\u00e4nken vortrug, sind von sozialen Motiven gepr\u00e4gt. Obwohl er im Zeitalter der gr\u00f6\u00dften K\u00e4mpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des j\u00fcd. Volksgesanges, W\u00f6lwel Zbarazer (Ehrenkranz), durchzog mit einigen Gef\u00e4hrten, die man als \u201eBroder-S\u00e4nger\u201c bezeichnete, Galizien, Rum\u00e4nien sowie Ru\u00dfland, wo sie seine wie auch \u00e4ltere j\u00fcd. Volkslieder vortrugen. Er war der erste der j\u00fcd. fahrenden Volkss\u00e4nger, der Vorl\u00e4ufer des modernen jidd. Theaters.\n", "source": 139}}, {"model": "metainfo.text", "pk": 47467, "fields": {"kind": 131, "text": "Margulies\u00a0Berl, Volkss\u00e4nger. * Brody (Galizien), ca. 1817; \u2020 b. Bukarest, ca. 1880.", "source": 139}}, {"model": "metainfo.text", "pk": 47468, "fields": {"kind": 130, "text": "Tochter des Malers Anton\u00edn M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Sch\u00fclerin ihres Vaters, dessen maler. Verm\u00e4chtnis sie aber nicht so selbst\u00e4ndig entfalten konnte wie ihre Br\u00fcder, welche sie materiell unterst\u00fctzen mu\u00dfte.\n", "source": 137}}, {"model": "metainfo.text", "pk": 47469, "fields": {"kind": 131, "text": "M\u00e1nesov\u00e1\u00a0Amalie, Malerin. * Prag, 21. 1. 1817; \u2020 Prag, Juni 1883.", "source": 137}}, {"model": "metainfo.text", "pk": 47470, "fields": {"kind": 130, "text": "Sohn des Malers Anton\u00edn M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ov\u00e1 (s. d.), Neffe des Folgenden; stud. 1838\u201351 an der Prager Akad. bei Tkadl\u00edk und Ruben, 1870/71 in D\u00fcsseldorf bei Vautier und begann unter dem Einflu\u00df der Akad. mit hist. Motiven in Genreart. Ab der zweiten H\u00e4lfte der 50er Jahre befa\u00dfte er sich mit volkst\u00fcmlichen Motiven, vor allem aus der Gegend von Bischofteinitz, und insbesondere mit Prager Typen. Er wurde zum bedeutendsten Vertreter der tschech. Genremalerei des 19. Jh. Seine Bilder haben intimen Zauber, sie sind durch den Sinn f\u00fcr die Atmosph\u00e4re des Milieus, durch Unmittelbarkeit, lyr. Zartheit, liebevollen Humor, manchmal durch melanchol. Klage gekennzeichnet. M. war auch ein ausgezeichneter Tiermaler, besonders von Pferden. Das zeichner. Werk nahm in seinem Schaffen einen bedeutsamen Platz ein. Auch als Illustrator t\u00e4tig, schuf er 52 Illustrationen zum 1. Tl. des Don Quichotte (1865, Holzschnitt). Mit seinem Bruder Josef M. begann er in den 50er Jahren ein Werk \u00fcber Trachtenstud. bei der l\u00e4ndlichen Bev\u00f6lkerung.\n", "source": 138}}, {"model": "metainfo.text", "pk": 47471, "fields": {"kind": 131, "text": "M\u00e1nes\u00a0Quido, Maler. * Prag, 17. 7. 1828; \u2020 Prag, 5. 8. 1880.", "source": 138}}, {"model": "metainfo.text", "pk": 47482, "fields": {"kind": 130, "text": "Sohn eines Privatiers und Handelsagenten; besuchte das Gymn. in Graz, war dann Schauspieleleve in Berlin, dramaturg. Berater am Stadttheater Innsbruck, Schauspieler, Szenenbildner und Regisseur an verschiedenen Provinzb\u00fchnen, 1917 am Residenztheater M\u00fcnchen, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehb\u00fcchern. Ab 1927 Autor bzw. Mitautor von Hollywood-Filmen; 1932 emigrierte er nach Frankreich und arbeitete in Paris mit dem Regisseur P. Czinner und der Schauspielerin E. Bergner zusammen, ab 1935 lebte er in London. Neben seiner dramaturg. T\u00e4tigkeit im Dokumentarfilmstudio von P. Rotha widmete er sich der Ausbildung von Filmautoren. Ungemein stilbildend, war M. der bedeutendste Drehbuchautor des dt. Stummfilms. Er arbeitete u. a. mit den Regisseuren R. Wiene, F. W. Murnau, L. Pick, L. Jessner und P. Czinner sowie mit den Schauspielern W. Krau\u00df, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Kl\u00f6pfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n", "source": 136}}, {"model": "metainfo.text", "pk": 47483, "fields": {"kind": 131, "text": "Mayer\u00a0Karl, Drehbuchautor. * Graz, 20. 2. 1894; \u2020 London, 1. 7. 1944.", "source": 136}}, {"model": "metainfo.text", "pk": 47484, "fields": {"kind": 130, "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Gesch\u00e4ftsf\u00fchrer gemacht. M.-S. besch\u00e4ftigte sich mit philosoph. und naturwiss. Stud., gr\u00fcndete 1829 das erste \u201eTiroler Mineralien-Comptoir\u201c und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im M\u00e4rz 1848 verfa\u00dfte er einen feurigen Aufruf \u201eA greachts Weartl von an alten Landesverteidiger an seini Mitbr\u00fcder\u201c, der gro\u00dfen Widerhall fand. Auf eigene Kosten r\u00fcstete er die 1. Innsbrucker Sch\u00fctzenkomp. aus, an deren Spitze er im Mai 1848 an die S\u00fcdfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein \u201eRadetzky-Album\u201c an (es enthielt Zeichnungen, Portr\u00e4ts, eine wertvolle Autographensmlg. etc.), welches er sp\u00e4ter dem Tiroler Landesmus. Ferdinandeum \u00fcbergab. M.-S. errichtete 1853 unter gro\u00dfem Kostenaufwand auf seinem Schlo\u00df B\u00fcchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gr\u00fcndete den 1. Arbeiterunterst\u00fctzungsver. und beteiligte sich an vielen humanit\u00e4ren Einrichtungen. 1865 verkaufte er sein Schlo\u00df und f\u00fchrte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. t\u00e4tig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen gro\u00dfe Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der \u201eTiroler Monatsbl\u00e4tter\u201c. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n", "source": 135}}, {"model": "metainfo.text", "pk": 47485, "fields": {"kind": 131, "text": "Mahl-Schedl von Alpenburg\u00a0Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Gr\u00fcnburg (O.\u00d6.), 27. 10. 1806; \u2020 Innsbruck, 1. 4. 1873.", "source": 135}}, {"model": "metainfo.text", "pk": 47486, "fields": {"kind": 130, "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882\u201385 war er Kapellmeister beim IR 74, 1885\u201390 Kapellmeister beim IR 28. N., ein sehr guter Geiger, vor allem aber ein vortrefflicher Dirigent, dem die Rgt.Musik des IR 74 ihren ausgezeichneten Ruf verdankt, war auch im Ausland mit viel Erfolg t\u00e4tig. Neben Rum\u00e4nien und Bulgarien z\u00e4hlen Holland und Belgien zu seinen wichtigsten k\u00fcnstler. Wirkungsst\u00e4tten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n", "source": 145}}, {"model": "metainfo.text", "pk": 47487, "fields": {"kind": 131, "text": "Nov\u00e1cek\u00a0Rudolf, Kapellmeister und Komponist. * Wei\u00dfkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; \u2020 Prag, 12. 8. 1929.", "source": 145}}, {"model": "metainfo.text", "pk": 47502, "fields": {"kind": 130, "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898\u20131903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904\u201319 wirkte er als Dir. am neugegr\u00fcndeten M\u00e4dchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes f\u00fcr Inneres und Unterricht t\u00e4tig, leitete ab 1922 die Abt. f\u00fcr p\u00e4dagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform f\u00fcr alle Mittelschulen folgte. Er unterst\u00fctzte bes. die Ver.-M\u00e4dchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkr\u00e4fte und f\u00f6rderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908\u201310 erster Obmann des Ver. Lyzeum.\n", "source": 147}}, {"model": "metainfo.text", "pk": 47503, "fields": {"kind": 131, "text": "Ortmann\u00a0Rudolf, P\u00e4dagoge. * Reichenberg (Liberec, B\u00f6hmen), 10. 3. 1874; \u2020 Wien, 22. 11. 1939.", "source": 147}}, {"model": "metainfo.text", "pk": 47506, "fields": {"kind": 130, "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegr\u00fcndete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832\u201337 Vorlesungen \u00fcber Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848\u201360 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfa\u00dfte zahlreiche Aufs\u00e4tze aus dem Gebiet der Chemie und hielt in Innsbruck viele popul\u00e4rwiss. Vortr\u00e4ge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur f\u00fcr techn. Chemie scheiterte aus Geldmangel (1838).\n", "source": 146}}, {"model": "metainfo.text", "pk": 47507, "fields": {"kind": 131, "text": "Oellacher\u00a0Josef, Pharmazeut. * Pre\u00dfburg, 16. 2. 1804; \u2020 Innsbruck, 16. 8. 1880.", "source": 146}}, {"model": "metainfo.text", "pk": 47516, "fields": {"kind": 130, "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtspr\u00fcfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg t\u00e4tig. 1918\u20131924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent f\u00fcr das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor f\u00fcr Geol. und Pal\u00e4ontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfa\u00dfte u. a. mehrere Schulb\u00fccher und red. ab 1932 die Z. \u201eIzvestja muzejskega dru\u0161tva za Kranjsko\u201c. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n", "source": 151}}, {"model": "metainfo.text", "pk": 47517, "fields": {"kind": 131, "text": "Poljanec\u00a0Leopold, Biologe und Schulmann. * Rann (Bre\u017eice, Unterstmk.), 23. 9. 1872; \u2020 Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944.", "source": 151}}, {"model": "metainfo.text", "pk": 47522, "fields": {"kind": 130, "text": "Stud. Germanistik und Polonistik bei R. M. Werner und R. Pilat an der Univ. Lemberg, wo er auch zu A. Sauer Verbindung hatte; 1897 Dr. phil. 1889\u201398 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903\u201309 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, t\u00e4tig. 1914 Priv. Doz., 1915\u201321 hielt er an der Univ. Lemberg Vorlesungen aus dt. Philol. und dt. Literaturgeschichte. 1918/19 war er provisor. Doz. der Germanistik an der Univ. Warschau. P. war u. a. ab 1920 w. Mitgl. der Lemberger Wiss. Ges. Als Literaturwissenschafter leistete P. auf dem Gebiet der H\u00f6lderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, h\u00f6chste Anerkennung fand.\n", "source": 150}}, {"model": "metainfo.text", "pk": 47523, "fields": {"kind": 131, "text": "Petzold\u00a0Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; \u2020 Lemberg (L\u2019viv), 15. 7. 1932.", "source": 150}}, {"model": "metainfo.text", "pk": 47530, "fields": {"kind": 130, "text": "Sohn des Philosophen Johann P. v. L. (1793\u20131866), Cousin des Folgenden, Neffe des Juristen und Politikers Thadd\u00e4us Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden K\u00fcnste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in D\u00fcsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden K\u00fcnste in Wien, an der er 1872\u20131901 als Prof. f\u00fcr Landschaftsmalerei wirkte, 1878\u201380 und 1897\u201399 Rektor. Nach seiner Pensionierung lebte er in N\u00fcrnberg und Berlin. \u00dcber pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf \u00d6l-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine \u00d6lbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Sch\u00fcler zu intensiven Naturstud. anhielt. Er beteiligte sich an den Wr. Akad.Ausst., u. a. 1858 und 1859. 1861 stellte er als Mitgl. im Wr. K\u00fcnstlerhaus aus, das ihm 1913 auch eine Ged\u00e4chtnisausst. widmete.\n", "source": 149}}, {"model": "metainfo.text", "pk": 47531, "fields": {"kind": 131, "text": "Peithner von Lichtenfels\u00a0Eduard, Maler und Radierer. * Wien, 18. 11. 1833; \u2020 Berlin, 22. 1. 1913.", "source": 149}}, {"model": "metainfo.text", "pk": 47536, "fields": {"kind": 130, "text": "Stud. 1839\u20131843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-M\u00fcnzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel f\u00fcr H\u00fctten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausr\u00fcstung der Labors betraut wurde. P. setzte die in Wien begonnenen chem. Arbeiten, u. a. Silberextraktion auf nassem Weg und Darstellung der reinen Uranverbindungen, fort; 1852 unternahm er in Joachimsthal im Auftrag der Obersten Montanverwaltung Versuche zur Verbesserung der Arbeitsmethoden und zur Auffindung neuer Verfahren bei der Verwertung einzelner Erze, deren Ergebnis die Silberextraktion unter Anwendung von unterschwefligsaurem Natron, Gewinnung von Nickel, Wismut und Kohlenoxyd, Ausscheidung des Arsens aus seinen Verbindungen in Erzen sowie die Darstellung der Uranfarben aus Pechblende waren. 1856 wurde in der Folge eine Uranaufbereitungsanlage in Joachimsthal gebaut. 1864 richtete P. in Wien das H\u00fcttenm\u00e4nn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum H\u00fcttenchemiker des gesamten \u00f6sterr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (sp\u00e4ter Vorstand des H\u00fcttenm\u00e4nn.-chem. Laboratoriums) ernannt. 1881 Oberbergrat, 1889 i. R., Hofrat. Erst durch P.s Verfahren der Urangewinnung aus Pechblende wurden die Forschungen des Ehepaars Curie erm\u00f6glicht.\n", "source": 148}}, {"model": "metainfo.text", "pk": 47537, "fields": {"kind": 131, "text": "Patera\u00a0Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; \u2020 Teschen (Cieszyn, \u00f6sterr. Schlesien), 26. 6. 1894.", "source": 148}}, {"model": "metainfo.text", "pk": 47540, "fields": {"kind": 130, "text": "Stud. ab 1782 an der Univ. Salzburg Phil. (1788 Mag.phil.), dann Theol. (1794 Dr. theol.); war nach seiner Priesterweihe (1793) als Seelsorger t\u00e4tig. 1801 wurde er Kanonikus des Kollegiatstiftes Maria Schnee, 1803 w. Konsistorialrat, 1810 Pfarrer und Dechant (damit auch Schuldistriktsinsp.) von Altenmarkt, 1832 erster Dechant des wiedererrichteten Kollegiatstiftes Seekirchen. R. ist der erste Historiograph des salzburg.-\u00f6sterr. Bildungswesens, \u00fcber das er grundlegende Beitrr. verfa\u00dfte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten \u00fcber theolog., p\u00e4dagog. und hist. Themen waren weit verbreitet.\n", "source": 158}}, {"model": "metainfo.text", "pk": 47541, "fields": {"kind": 131, "text": "Rumpler\u00a0Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; \u2020 Seekirchen (Salzburg), 17. 3. 1846.", "source": 158}}, {"model": "metainfo.text", "pk": 47542, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckermeisters; ab 1901 selbst\u00e4ndiger B\u00e4kkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912\u201325 im Wr. Gemeinderat, 1924\u201334 im Bundesrat; ab 1917 Vizepr\u00e4s., in der Folge Pr\u00e4s. des Dt.\u00f6sterr. Gewerbebundes. 1928 Kommerzialrat. R. hat mit seinen hist. Stud. wesentlichen Anteil am Aufschwung der Wr. Lokalgeschichtsschreibung in der Zwischenkriegszeit: Seine Geschichte des VII. und die des VIII. Wr. Gemeindebez. sind ebenso Standardwerke geblieben wie die gem. mit A. Schmieger verfa\u00dfte Stud. \u201eDas Ghetto in der Wiener Leopoldstadt\u201c (1926). Auch seine wertvollen Ver\u00f6ff. aus der Geschichte des Wr. B\u00e4ckergewerbes zeugen von R.s Flei\u00df im Erschlie\u00dfen von Quellenmaterial.\n", "source": 157}}, {"model": "metainfo.text", "pk": 47543, "fields": {"kind": 131, "text": "Rotter\u00a0Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; \u2020 Wien, 18. 9. 1945.", "source": 157}}, {"model": "metainfo.text", "pk": 47556, "fields": {"kind": 130, "text": "Aus urspr\u00fcnglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der nieder\u00f6sterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenk\u00fcrassieren die Feldz\u00fcge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in M\u00fcnchen, Berlin, Stuttgart, Stockholm und Paris t\u00e4tig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 K\u00e4mmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-d\u00e4n. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilko\u00e4r. f\u00fcr Schleswig-Holstein. Anschlie\u00dfend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der \u00f6sterr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Aufl\u00f6sung von kath. Kl\u00f6stern in russ. Polen, erzwungener \u00dcbertritt von unierten Christen zur Orthodoxie etc.) befa\u00dft. 1868 trat er wegen Differenzen mit Beust (s. d.) zur\u00fcck. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner ober\u00f6sterr. G\u00fcter Erlach und Tollet und wurde daneben in der \u00f6sterr. Innenpolitik au\u00dferordentlich aktiv. Er wurde 1869 als Vertreter des Gro\u00dfgrundbesitzes ober\u00f6sterr. Landtagsabg. 1885 Mitgl. der \u00f6sterr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des \u00f6sterr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Pr\u00e4lat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschl\u00fcssen des Frankfurter Katholikentages 1882 begr\u00fcndet wurde. 1888 wurde R. im ausw\u00e4rtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen w\u00e4hrend seiner Amtszeit geh\u00f6rten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren H\u00f6hepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein m\u00f6gliches Refugium in \u00d6sterr. zu gew\u00e4hren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) geno\u00df, \u00fcbte auch eine Vermittlert\u00e4tigkeit bei dessen famili\u00e4ren Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mu\u00dfte er auf Dr\u00e4ngen ung. Politiker von seinem Posten zur\u00fccktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssph\u00e4ren von Staat und Kirche in der sp\u00e4tjosefin. Zeit. Daneben war er Experte f\u00fcr die Grenzbereiche der r\u00f6m.-kath., unierten und orthodoxen Kirchen, auch f\u00fcr Ru\u00dfland und den Balkan. Obwohl f\u00fcr soziale Fragen aufgeschlossen, war er kein Sympathisant der Christlichsozialen, deren antisemit. Tendenzen er ablehnte. Vielfach geehrt und ausgezeichnet, u. a. Geh.Rat (1868), Kanzler des Leopold-Ordens und Gro\u00dfkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866\u20131951), folgte 1919 K. Karl (s. d) ins Exil.\n", "source": 156}}, {"model": "metainfo.text", "pk": 47557, "fields": {"kind": 131, "text": "Revertera von Salandra\u00a0Friedrich Graf, Diplomat und Politiker. * Lemberg (L\u2019viv), 21. 1. 1827; \u2020 Brixen (S\u00fcdtirol), 28. 4. 1904.", "source": 156}}, {"model": "metainfo.text", "pk": 47558, "fields": {"kind": 130, "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (N\u00d6) t\u00e4tig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814\u201324 Dir. des Priesterseminars, 1817\u201335 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. T\u00e4tigkeit. In zahlreichen Publ. besch\u00e4ftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine \u201ePastoral-Anweisung nach den Bed\u00fcrfnissen unsers Zeitalters\u201c, die als offizielles Vorlesebuch f\u00fcr alle \u00f6ff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einflu\u00df auf den Klerusnachwuchs. R., ein gro\u00dfer Wohlt\u00e4ter der kirchlichen Inst., z\u00e4hlte zu den ma\u00dfvollen Josefinern.\n", "source": 154}}, {"model": "metainfo.text", "pk": 47559, "fields": {"kind": 131, "text": "Reichenberger\u00a0Andreas, Theologe. * Wien, 24. 11. 1770; \u2020 Linz, 26. 10. 1854.", "source": 154}}, {"model": "metainfo.text", "pk": 47560, "fields": {"kind": 130, "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883\u201386 an der Hochschule f\u00fcr Bodenkultur in Wien, Forsting. Wirkte ab 1887 am bosn.-herzegowin. Landesmus. in Sarajevo (1913 Reg.Rat, 1919 i. R.) und organisierte die von ihm geleitete naturwiss. Abt. Ab 1926 Mitgl. des Ornitholog. Observatoriums in Laibach (Ljubljana). R.s Lebenswerk war der Ornithol. des Balkans gewidmet. Neben seiner T\u00e4tigkeit am Mus. in Sarajevo sammelte er Material f\u00fcr eine Beschreibung der V\u00f6gel der Marburger Umgebung und arbeitete bei der Aufstellung der ornitholog. Smlg. des Mus. in Marburg a. d. Drau (Maribor) mit, dem er eine Smlg. von Vogeleiern aus dem Drautal vermachte. R. wurde vielfach geehrt und ausgezeichnet, u. a. 1932 Dr. h. c. der Univ. Graz.\n", "source": 155}}, {"model": "metainfo.text", "pk": 47561, "fields": {"kind": 131, "text": "Reiser\u00a0Othmar, Ornithologe. * Wien, 21. 12. 1861; \u2020 Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936.", "source": 155}}, {"model": "metainfo.text", "pk": 47564, "fields": {"kind": 130, "text": "Sohn eines Baumwollwarenh\u00e4ndlers; wurde nach Absolv. der Techn. Milit\u00e4rakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898\u20131900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900\u201311 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914\u201316 war R. als Milit\u00e4rattach\u00e9 in Bukarest. 1916 wurde er als Obstlt. des Gen. Stabskorps zum Chef der Gen.Stabsabt. des l. Armeekmdo. und noch im selben Jahr zum Obst. des Gen. Stabskorps ernannt. Ab 1918 war R. Gen. Stabschef des XI. Korps, dann Gen. Stabschef der k. u. k. Besatzungstruppen in Rum\u00e4nien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Fl\u00fcgeladj. Kg. Ferdinands von Rum\u00e4nien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein B\u00fcndnis gegen das revolution\u00e4re Ru\u00dfland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen \u00d6sterr.-Ungarn, dem Dt. Reich, der T\u00fcrkei und Bulgarien einerseits und Rum\u00e4nien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n", "source": 153}}, {"model": "metainfo.text", "pk": 47565, "fields": {"kind": 131, "text": "Randa\u00a0Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, M\u00e4hren), 24. 5. 1874; \u2020 Czernowitz (Cernivci, Bukowina), 13. 8. 1941.", "source": 153}}, {"model": "metainfo.text", "pk": 47566, "fields": {"kind": 130, "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtspr\u00fcfung) u. a. bei Boltzmann (s. d.) und Frischauf (s. d.), dann an der Univ. Berlin Physik bei Helmholtz und Kirchhoff. In Graz war R. lange Mitgl. von A. v. Meinongs (s. d.) Philosoph. Societ\u00e4t. Er interessierte sich f\u00fcr Grenzgebiete der Mathematik und der Physik sowie f\u00fcr die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten ma\u00dfgeblich beeinflu\u00dft wurde. 1894\u201396 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. f\u00fcr theoret. Physik an der Univ. Innsbruck und Ass. K. Exners (s. d.) am Mathemat.-physikal. Inst. 1902 ao. Prof. an der Univ. Innsbruck, 1906 o. Prof. der mathemat. Physik an der Univ. Czernowitz (Cernivci), 1915 o. Prof. der theoret. Physik an der Univ. Graz, 1924/25 Dekan. R.\u2019 bedeutendste und tiefgreifendste Arbeit behandelt \u201eDie Grundlagen der Galilei-Newton\u2019schen Mechanik\u201c. Er ver\u00f6ff. auch einige wichtige experimentelle Arbeiten zur Frage der Gescho\u00dfgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895\u20131938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n", "source": 152}}, {"model": "metainfo.text", "pk": 47567, "fields": {"kind": 131, "text": "Radakovic\u00a0Michael, Physiker. * Graz, 25. 4. 1866; \u2020 Graz, 15. 8. 1934.", "source": 152}}, {"model": "metainfo.text", "pk": 47568, "fields": {"kind": 130, "text": "Nach der Schulausbildung in Gro\u00dfwardein (Oradea) und Temeswar (Timi\u00bfoara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der K\u00f6r\u00f6s. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von G\u00e1bor D\u00f6brentei (\u00bfGabriel D\u00f6brentei) am Burgtheater (Budai V\u00e1rsz\u00ednh\u00e1z) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, T\u00e4nzer und Inspizient t\u00e4tig war sowie seine ersten Theaterst\u00fccke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Sz\u00ednh\u00e1z) in Pest ein Engagement als Schauspieler (1837\u201354) und Bibliothekar (1837\u201340) und widmete sich schlie\u00dfl. der Regie (1854\u201373) sowie der Dramaturgie (1868\u201373). Ab 1865 war er Prof. und 1870\u201373 Dir. der Pester Schauspielschule. 1873 \u00fcbernahm er die Leitung des Nationaltheaters. Er f\u00f6rderte zahlreiche sp\u00e4ter bekannte Schauspieler und initiierte u.\u00a0a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. \u00fcber hundert Theaterst\u00fccke und zahlreiche Libretti, schrieb Schauspielerportr\u00e4ts (\u201eMagyar sz\u00edn\u00e9szek \u00e9letrajzai\u201c, 1878, 2.\u00a0Aufl. 1907) und \u00fcbers. u.\u00a0a. Goethes \u201eEgmont\u201c (1871) und \u201eFaust\u201c sowie Shakespeares \u201eRichard III.\u201c (1867) ins Ung. Sein dramaturg. Lehrbuch \u201eA dr\u00e1ma \u00e9s v\u00e1lfajai\u201c (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der franz\u00f6s. und Wr. B\u00fchnen und adaptierte diese meisterhaft f\u00fcr das ung. Publikum. Sowohl seine Lustspiele (\u201eR\u00f3zsa\u201c, 1840; \u201eLiliomfi\u201c, 1849; \u201eFenn az ernyo, nincsen kas\u201c, 1858, 7.\u00a0Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen (\u201eII. R\u00e1k\u00f3czi Ferenc fogs\u00e1ga\u201c, 1848; \u201eA tr\u00f3nkereso\u201c, 1868, 5.\u00a0Aufl. 1916, dt. \u201eDer Pr\u00e4tendent\u201c, 1881; \u201eStruensee\u201c, 1871) als auch seine unter dem Einfluss des Wr. Volksst\u00fccks und des franz\u00f6s. Melodramas entstandenen Volksst\u00fccke \u201eSz\u00f6k\u00f6tt katona\u201c (1843) und \u201eCig\u00e1ny\u201c (1853), mit denen er die Grundlage f\u00fcr diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgen\u00f6ss. Publikums. Ledigl. seine b\u00fcrgerl. Dramen (\u201eA lelenc\u201c, 1863; \u201eA f\u00e9ny \u00e1rnyai\u201c, 1865) und die St\u00fccke \u201eA strike\u201c (1871) sowie \u201eAz amerikai\u201c (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stie\u00dfen auf Unverst\u00e4ndnis. S. war einer der einflussreichsten Dramatiker des 19.\u00a0Jh. in Ungarn, seine St\u00fccke wurden in zahlreiche Sprachen \u00fcbers. und verfilmt (\u201eSz\u00f6k\u00f6tt katona\u201c, 1914; \u201eLiliomfi\u201c, 1916, 1954; \u201eCig\u00e1ny\u201c, 1925, 1941) und geh\u00f6ren auch heute noch zum Standardrepertoire der ung. B\u00fchnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Gro\u00dfwardein (Nagyv\u00e1radi Szigligeti Sz\u00ednh\u00e1z) sowie das Theater in Szolnok (Szigligeti Sz\u00ednh\u00e1z) sind nach ihm benannt. S. war ab 1840 k.\u00a0M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n", "source": 194}}, {"model": "metainfo.text", "pk": 47569, "fields": {"kind": 131, "text": "Szigligeti Ede (Edv\u00e1rd), bis 1834 J\u00f3zsef Szathm\u00e1ry, Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur. Geb. V\u00e1rad-Olaszi, Ungarn (Oradea-Olosig, RO), 8.\u00a03. 1814; gest. Budapest (H), 19.\u00a01. 1878; r\u00f6m.-kath.", "source": 194}}, {"model": "metainfo.text", "pk": 47570, "fields": {"kind": 130, "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Sch\u00e4fer; ab 1895 verheiratet mit Erna Szen\u00f3ner. \u2013 Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871\u201374 war S. 1882\u201384 Z\u00f6gling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887\u201389 die Kriegsschule in Wien. Seine milit\u00e4r. Laufbahn begann er 1882 als Gemeiner im Honv\u00e9d-Inf.baon.\u00a018. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k.\u00a0u.\u00a0k. Armee sowie bei der Honv\u00e9d und versah Truppendienst, u.\u00a0a. als Baon.kmdt., v.\u00a0a. in den Honv\u00e9d-Inf.rgt.\u00a04 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der F\u00fchrung der kgl. ung. Inf.div.\u00a038 betraut, an deren Spitze er \u2013 ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps \u2013 ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz k\u00e4mpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (U\u017eoc\u2019kyj pereval) in den Karpaten gegen die Russen. 1917 erfolgte seine Ernennung zum kgl. ung. Landesverteidigungsminister in Budapest (ab August Gen. der Inf.). Diesen Posten bekleidete er bis zum Austritt Ungarns aus der Realunion Ende Oktober 1918. Anfang 1919 wurde S. pensioniert, einen Monat sp\u00e4ter auf Gehei\u00df der Berinkey-Regierung in St.\u00a0Gotthard (Szentgotth\u00e1rd) interniert und w\u00e4hrend der R\u00e4terepublik gem. mit \u00bfJ\u00f3zsef Frh. Szter\u00e9nyi v. Brass\u00f3 in Budapest gefangen gehalten. Nach dem Sturz der R\u00e4terepublik war S. Ende 1919 Verbindungsoff. bei der franz\u00f6s. milit\u00e4r. Mission. 1921 wurde er endg\u00fcltig pensioniert, lebte danach in Budapest und wirkte als Milit\u00e4rschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I.\u00a0Kl., 1916 wurde er Kommandeur des Leopold-Ordens I.\u00a0Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Pr\u00e4dikat \u201evon Uzsok\u201c ausgez. S. war Inhaber des Honv\u00e9d-Inf.rgt.\u00a020 (1918), 1929 wurde er in den Vit\u00e9zi Rend (Ritterorden) aufgenommen, 1927\u201344 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n", "source": 195}}, {"model": "metainfo.text", "pk": 47571, "fields": {"kind": 131, "text": "Szurmay von Uzsok S\u00e1ndor (Alexander) Frh., Offizier und Politiker. Geb. Boks\u00e1nb\u00e1nya, Ungarn (Boc\u00bfa, RO), 19.\u00a012. 1860; gest. Budapest (H), 26.\u00a03. 1945.", "source": 195}}, {"model": "metainfo.text", "pk": 47580, "fields": {"kind": 130, "text": "Sohn eines Bauern. \u2013 Nach Besuch der Gymn. in Kempten im Allg\u00e4u, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St.\u00a0Florian ein (1823 Profe\u00df, 1824 Priesterweihe). 1824\u201343 wirkte er als Kaplan in der Stiftspfarre, 1843\u201354 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s.\u00a0d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 au\u00dferdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht \u00fcbertragen. 1859 wurde er Propst von St.\u00a0Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Versch\u00f6nerungen in der Stiftskirche, u.\u00a0a. durch L.\u00a0Kupelwieser (s.\u00a0d.), durchgef\u00fchrt. Daneben widmete sich S., von F.\u00a0Ser. Kurz (s.\u00a0d.) angeleitet, schon bald der Historiographie. Bereits 1834 geh\u00f6rte er zu den Initiatoren des sp\u00e4teren Mus. Francisco-Carolinum, red. 1839\u201344 dessen \u201eMusealblatt\u201c und arbeitete v.\u00a0a. an den ersten sechs Bde. des \u201eUrkundenbuchs des Landes ob der Enns\u201c (1852\u201372) mit; weiters befa\u00dfte er sich mit dem Leben von K.\u00a0Maximilian\u00a0I., ordnete die Archive der Stifte St.\u00a0Florian und Wilhering und verf. die Geschichte beider Kl\u00f6ster. Zudem besch\u00e4ftigte er sich mit dem Gr\u00fcnder von Stift Reichersberg, Propst Gerhoch, sowie mit Bischof Altmann von Passau, ferner landesgeschichtl. mit den Gf. von Schaunberg. S., der in regem Austausch mit Koch v. Sternfeld (s.\u00a0d.) stand, war u.\u00a0a. Mitgl. des Hist. Ver. f\u00fcr Unterfranken und Aschaffenburg (1841), des Hist. Ver. f\u00fcr die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k.\u00a0k. Reichshistoriographen. 1847 z\u00e4hlte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. t\u00e4tig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gew\u00e4hlt, wo er v.\u00a0a. mit dem kath.-reformer. Kreis um Johann Joseph v. G\u00f6rres in Verbindung stand. Auch bei den Bem\u00fchungen um die Errichtung des o\u00f6. Katholikenver. 1848 spielte S. eine f\u00fchrende Rolle. 1861\u201367 geh\u00f6rte er dem o\u00f6. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Pr\u00e4s. der O\u00f6. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n", "source": 193}}, {"model": "metainfo.text", "pk": 47581, "fields": {"kind": 131, "text": "St\u00fclz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23.\u00a02. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28.\u00a06. 1872; r\u00f6m.-kath.", "source": 193}}, {"model": "metainfo.text", "pk": 47584, "fields": {"kind": 130, "text": "Sohn von Josef Maria S. (s.\u00a0d.). \u2013 Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Sch\u00fcler O.\u00a0Redlichs (s.\u00a0d.) Geschichte an der Univ. Wien, 1910 Dr.\u00a0phil., und absolv. 1909\u201311 als ao.\u00a0Mitgl. den Kurs des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung. Noch im Juli 1911 ging er als Mitarb. an der von der Heidelberger Akad. der Wiss. und der Bad. Hist. Komm. vorbereiteten Ausg. der bad. Weist\u00fcmer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am \u00d6sterr. Hist. Inst. in Rom. Daneben war er 1913 nochmals f\u00fcr die Bad. Hist. Komm. t\u00e4tig und ordnete das gr\u00e4fl. Douglassche Archiv auf Schlo\u00df Langenstein im Hegau. 1914 trat er als Konzeptsaspirant in das HHStA ein, wurde 1915 Konzeptspraktikant und 1921 Staatsarchivar. Er ordnete das Konsulatsarchiv in Belgrad (1916), die Archive in Jaidhof bei Gf\u00f6hl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. \u00fcber die Urkundenabt. und leitete schlie\u00dfl. die Hss.abt. im HHStA. 1921\u201322 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. \u201eHistorischen Bl\u00e4tter\u201c, ab 1928 Mitgl. des Gesch\u00e4ftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien f\u00fcr Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao.\u00a0Prof. Als Medi\u00e4vist befa\u00dfte er sich mit Fragen der \u00f6sterr. Diplomatik, einschlie\u00dfl. der Kanzlei- und der Stadtb\u00fccher, sowie bes. mit Verfassungsgeschichte. Ab 1923 fungierte er als Dir. des Archivs der Stadt Wien und machte dieses zu einer anerkannten wiss. Einrichtung: Eine neue Archivordnung, die u.\u00a0a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30\u00a0Jahren umfa\u00dfte, trat 1924 in Kraft. Archivpraktika f\u00fcr Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Gl\u00f6ckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Au\u00dfenwirkung des Archivs ebenso wie die F\u00f6rderung der Geschichtsforschung, etwa durch die Begr\u00fcndung der \u201eStudien aus dem Archiv der Stadt Wien\u201c oder durch die Anregung zur Ver\u00f6ff. der \u201eUrkunden aus Wiener Grundb\u00fcchern zur Geschichte der Wiener Juden im Mittelalter\u201c (1931) durch L.\u00a0Sailer (s.\u00a0d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. f\u00fcr Geschichte der Stadt Wien gew\u00e4hlt worden, 1924\u201325 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gr\u00fcnden zur\u00fcck. 1926 Vizepr\u00e4s., begr\u00fcndete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n", "source": 192}}, {"model": "metainfo.text", "pk": 47585, "fields": {"kind": 131, "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21.\u00a010. 1887; gest. ebd., 19.\u00a02. 1934; evang.\u00a0AB.", "source": 192}}, {"model": "metainfo.text", "pk": 47594, "fields": {"kind": 130, "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24.\u00a04. 1879; gest. ebd., 4.\u00a02. 1952) verehel. Nach Absolv. des M\u00e4dchengymn. des Wr. Ver. f\u00fcr erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr.\u00a0phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtspr\u00fcfung f\u00fcr Mittelschulen ab. I.\u00a0d.\u00a0F. unterrichtete S. an einem Wr. M\u00e4dchengymn., befa\u00dfte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vortr\u00e4ge f\u00fcr die Vereinigung \u00f6sterr. Hochschuldoz. Athen\u00e4um. Ihr Engagement im Bereich der Frauenbildung und \u2013f\u00f6rderung f\u00fchrte 1907 zur Gr\u00fcndung eines M\u00e4dchengymn. in Wien\u00a02. Auf Grund ihres Strebens nach gediegener Berufsausbildung f\u00fcr begabte M\u00e4dchen aus \u00e4rmerem Haus gr\u00fcndete sie 1907 gem. mit Olly Schwarz einen Ver. f\u00fcr h\u00f6here kommerzielle Frauenbildung und die erste Handelsakad. f\u00fcr M\u00e4dchen in der Sch\u00f6nborngasse (Wien\u00a08), deren Leitung sie als erste Schuldir., die in den Staatsdienst \u00fcbernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. f\u00fcr ihre T\u00e4tigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n", "source": 190}}, {"model": "metainfo.text", "pk": 47595, "fields": {"kind": 131, "text": "Steindler Olga, verehel. Ehrenhaft-S., P\u00e4dagogin und Physikerin. Geb. Wien, 28.\u00a010. 1879; gest. ebd., 21.\u00a012. 1933.", "source": 190}}, {"model": "metainfo.text", "pk": 47596, "fields": {"kind": 130, "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s.\u00a0d.). S. besuchte 1902\u201310 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L.\u00a0M. Hartmann, W.\u00a0Kubitschek, Bormann (alle s.\u00a0d.) und Adolf Wilhelm; 1914 Dr.\u00a0phil. Nach Milit\u00e4rdienst 1915\u201317 habil. er sich 1919 an der Univ. Wien. 1927\u201329 war S. an der R\u00f6m.-German. Komm. des Dt. Arch\u00e4olog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der r\u00f6m. Kaiserzeit besch\u00e4ftigt, danach Doz. f\u00fcr Alte Geschichte an der Univ. Berlin, 1931\u201332 ao.\u00a0Prof. f\u00fcr alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G.\u00a0Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, k\u00fcndigte seine Stellung und verlie\u00df Dtld. 1932\u201334 war er, unterst\u00fctzt vom belg. Byzantinisten Henri Gr\u00e9goire, Gastprof. an der Univ. Br\u00fcssel. Nach der \u201eMachtergreifung\u201c Hitlers (s.\u00a0d.) im J\u00e4nner 1933 publ. er nur mehr auf Franz\u00f6s.; 1934\u201335 war er Gastprof. an der Catholic Univ. of America (Washington, D.\u00a0C.), 1937 wurde f\u00fcr ihn ein Lehrstuhl f\u00fcr byzantin. Geschichte an der Univ. L\u00f6wen eingerichtet. 1940 mu\u00dfte S. jedoch Belgien mit seiner Frau Jeanne (Eheschlie\u00dfung 1923) unter falschem Namen (M.\u00a0Sernet) verlassen. Trotz der \u00e4u\u00dferl. bedr\u00e4ngten Situation und dem st\u00e4ndigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd.\u00a0seiner \u201eHistoire de l\u2019\u00c9mpire byzantin\u201c, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verh\u00e4ltnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. t\u00e4tig.\n\n", "source": 191}}, {"model": "metainfo.text", "pk": 47597, "fields": {"kind": 131, "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19.\u00a09. 1891; gest. Freiburg (Fribourg, Schweiz), 25.\u00a02. 1945; aus j\u00fcd. Familie, ab 1932 r\u00f6m.-kath.", "source": 191}}, {"model": "metainfo.text", "pk": 47602, "fields": {"kind": 130, "text": "Sohn eines Kleinbauern. S. besuchte 1858\u201366 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur S\u00fcdarmee eingezogen und erhielt nach der Schlacht bei Custoza die silberne Tapferkeitsmedaille. Da er Priester werden wollte, desertierte er und kam 1867 in die USA. Zun\u00e4chst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des sp\u00e4teren Bischofs der Di\u00f6zese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der franz\u00f6s. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph\u00a0I. (s.\u00a0d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der gro\u00dfteils aus Dt.b\u00f6hmen und -ungarn bestehenden Gmd. und ab 1891 als Di\u00f6zesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Di\u00f6zese Lead, S.\u00a0D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in f\u00fcnf Jahren 23 neue Kirchen und Pfarreien. Durch \u00fcberm\u00e4\u00dfige Arbeit erkrankt, resignierte S. 1909 auf seine Di\u00f6zese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n", "source": 189}}, {"model": "metainfo.text", "pk": 47603, "fields": {"kind": 131, "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12.\u00a05. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15.\u00a012. 1915; r\u00f6m.-kath.", "source": 189}}, {"model": "metainfo.text", "pk": 47614, "fields": {"kind": 130, "text": "\u2013 Sohn eines Grenzers. \u0160. wurde 1870 aus der Rgt.-Milit\u00e4rschule in Otocac als Korporal zum Grenz-IR 1 ausgemustert; 1874 Lt. beim IR 51. 1882 nahm er als Rgt.-Adj. an der Niederschlagung der Unruhen in Bosnien-Herzegowina teil. 1897 Mjr. und Baon.-, 1899\u20131904 Erg\u00e4nzungsbez.kmdt. im bosn.- herzegowin. IR 4, um dessen Personalaufstockung er sich sehr verdient machte; 1903 Obstlt., 1906 Obst. und 1907 Kmdt. des Linien-IR 2. 1909 erhielt \u0160. das Kmdo. des Gendarmeriekorps f\u00fcr Bosnien-Herzegowina, 1911 GM. Ab September 1914 f\u00fchrte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Vi\u0161egrad aus die Verteidigung S\u00fcdostbosniens. Ende M\u00e4rz 1915 \u00fcbernahm er dort das Kmdo. der neu errichteten 59. Inf.-Truppen-Div., die im Juli 1915 an die Isonzofront verlegt wurde. Im September 1915 nach Syrmien r\u00fcckverlegt, wurde \u0160. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 \u00fcbernahm er das Kmdo. der 42. Honv\u00e9d-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zur\u00fcckgedr\u00e4ngt wurde. Im M\u00e4rz 1917 dem Gen.-Insp. der Fu\u00dftruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde \u0160. im Juli 1918 beurlaubt, knapp vor der Ver\u00f6ff. des Oktobermanifests jedoch im Oktober 1918 als Milit\u00e4rkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die s\u00fcdslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte \u0160. seine letzten Lebensjahre auf seinem Gut in Cluj.\n", "source": 188}}, {"model": "metainfo.text", "pk": 47615, "fields": {"kind": 131, "text": "\u0160njaric\u00a0Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rum\u00e4nien), 28. 1. 1930.", "source": 188}}, {"model": "metainfo.text", "pk": 47626, "fields": {"kind": 130, "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden K\u00fcnste, wo er bis 1907/08 (u. a. bei J\u00f3zef v. Mehoffer, s. d., und Leon Wycz\u00f3lkowski) Malerei stud., 1902\u201303 bildete er sich an der Kunstgewerbeschule in Wien weiter, 1904 unternahm er Stud.reisen durch Italien und Frankreich. S., der sich in Zakopane von einer Tuberkuloseerkrankung erholen mu\u00dfte, verbrachte den Winter 1904/5 bei den Huzulen, wo er Landschafts- und Genrebilder aus dem Leben der Goralen malte. In der Folge zeichnete er Karikaturen f\u00fcr die satir. Z. \u201eChochol\u201c (1902) und \u201eLiberum Veto\u201c (1903\u201305), 1904 ver\u00f6ff. er die Mappe \u201e30 Karikaturen\u201c, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. K\u00fcnstler \u201eSztuka\u201c und im selben Jahr Mitarbeiter des ber\u00fchmten Krakauer Kabaretts \u201eZielony Balonik\u201c, f\u00fcr das er die Inneneinrichtung des Caf\u00e9s und Einladungen entwarf. W\u00e4hrend dieser Zeit fertigte er auch Portr\u00e4ts, Karikaturen von bekannten K\u00fcnstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in \u00d6l mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) lie\u00df er sich im selben Jahr in Lemberg nieder. W\u00e4hrend seiner Milit\u00e4rdienstzeit (1914\u201317)zeichnete er Portr\u00e4ts und Karikaturen bedeutender Pers\u00f6nlichkeiten des Milit\u00e4rwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920\u201330 an der dortigen Schule f\u00fcr Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem \u0152uvre der hist. und religi\u00f6sen Thematik zuwandte; 1918\u201319 zeichnete er Karikaturen f\u00fcr die Z. \u201eSzczutek\u201c und 1920 f\u00fcr \u201eRzeczpospolita\u201c; ab 1930 lehrte er an der Akad. der bildenden K\u00fcnste in Krakau (Krak\u00f3w); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein \u0152uvre fand in zahlreichen in- und ausl\u00e4nd. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, M\u00fcnchen und Rom).\n", "source": 187}}, {"model": "metainfo.text", "pk": 47627, "fields": {"kind": 131, "text": "Sichulski\u00a0Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lw\u00f3w, Galizien (L\u2019viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; r\u00f6m.-kath.", "source": 187}}, {"model": "metainfo.text", "pk": 47630, "fields": {"kind": 130, "text": "Sohn eines Arztes und Hptm. der Sch\u00fctzenkompanie Ulten. S., der nach dem Willen seines Vaters urspr\u00fcngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden K\u00fcnste in M\u00fcnchen, wo er auch Privatunterricht nahm; anschlie\u00dfend \u00fcbersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. z\u00e4hlte die sp\u00e4tere dt. Kn. Auguste Viktoria zu seinen Sch\u00fclerinnen). 1889 geh\u00f6rte er zu den Gr\u00fcndungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s \u0152uvre umfa\u00dft vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurg\u00e4sten gro\u00dfen Anklang; seine Bedeutung liegt aber v. a. in der exakten Wiedergabe der damaligen topograph. Gegebenheiten, wodurch es ihm gelang, ein Zeugnis der dortigen Bausubstanz um 1900 f\u00fcr die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachla\u00df bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum pr\u00e4sentiert.\n", "source": 186}}, {"model": "metainfo.text", "pk": 47631, "fields": {"kind": 131, "text": "Settari\u00a0Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905.", "source": 186}}, {"model": "metainfo.text", "pk": 47634, "fields": {"kind": 130, "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869\u201373 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und N\u00d6 ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rath\u00e4user in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repr\u00e4sentationsbed\u00fcrfnis seiner Zeit stark entgegen kamen, pr\u00e4gte v. a. das Stadtbild von St. P\u00f6lten, wo er erstmals 1883 mit dem neobarock gepr\u00e4gten Hauptgeb\u00e4ude der Sparkasse in Erscheinung trat. Es folgten weitere Auftr\u00e4ge f\u00fcr kommunale Bauten und Amtsgeb\u00e4ude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgeb\u00e4udes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Geb\u00e4uden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begr\u00fcntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Sch\u00f6nbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgef\u00fchrt wurde. S. \u2013 auch im privaten Wohnbau t\u00e4tig \u2013 setzte in seinem \u0152uvre \u201edie Formimpulse des strengen Historismus unter dem Einflu\u00df der neueren Entwicklungen in einen dekorativen Repr\u00e4sentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verf\u00fcgung stehenden Formenapparates f\u00fcr zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden lie\u00df\u201c (W. Kitlitschka).\n", "source": 185}}, {"model": "metainfo.text", "pk": 47635, "fields": {"kind": 131, "text": "Sehnal\u00a0Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910.", "source": 185}}, {"model": "metainfo.text", "pk": 47640, "fields": {"kind": 130, "text": "Sohn des Badener Gmd.Sekret\u00e4rs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861\u201365 das Gymn. im Stift Heiligenkreuz, wo er auch S\u00e4ngerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) \u00fcbersiedelte die Familie (S. hatte zw\u00f6lf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verlie\u00df er den Orden auf Anraten seiner Oberen, die w\u00e4hrend des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 w\u00e4hrend einer Erkrankung den zweiten Vornamen \u201eMaria\u201c an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (N\u00d6) \u2013 wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als \u201ePapst von Marchegg\u201c bezeichnet wurde \u2013, 1879\u201386 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Gro\u00dfstadt kennen und antwortete 1882 mit der Gr\u00fcndung des \u201eKatholischen Lehrlings-Vereins\u201c, rief 1886 das \u201eLehrlingsasyl\u201c sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. \u201eDas christliche Handwerk\u201c (Vorl\u00e4ufer der jetzt noch erscheinenden \u201eKalasantiner-Bl\u00e4tter\u201c) heraus, 1889 baute er in F\u00fcnfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gr\u00fcndung der \u201eKongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz\u201c (\u201eKalasantiner\u201c), der ersten \u00f6sterr. M\u00e4nnerkongregation, die sich der Arbeiter und v. a. der Lehrlinge annehmen wollte. Diesem Auftrag versuchte S. durch Erziehung der Kinder und der Lehrlingsjugend in Horten, Heimen und Oratorien sowie durch Erteilung des Religionsunterrichtes in Grund- und Berufsschulen gerecht zu werden. Die Gemeinschaft sollte dar\u00fcber hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken \u2013 sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch \u00dcbernahme von Pfarren in Arbeitervierteln der St\u00e4dte. Weitere begleitende Gr\u00fcndungen waren: Marian. Arbeitersodalit\u00e4t, Herz Jesu-Arbeiter-Oratorium, Frauenwohlt\u00e4tigkeitsver., Mariazellerver. und Muttergottesbund. 1897\u20131926 wurden weitere elf Niederlassungen der Kongregation (u. a. auch 1902 in Budapest) errichtet. Sein soziales Engagement hat S. auch in die Tagespolitik eingreifen lassen: Er forderte z. B. die Arbeiter zur Gr\u00fcndung von Selbstschutzund Bildungsverb\u00e4nden auf und unterst\u00fctzte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder \u00f6ff. Kontroverse zur\u00fcck. Kardinal Piffl (s. d.), der ihn freundschaftl. unterst\u00fctzte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den \u201eArbeiterapostel\u201c. Dem 1949 er\u00f6ffneten Seligsprechungsproze\u00df folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.\u2019 kirchl. Gedenktag ist der 17. September.\n", "source": 181}}, {"model": "metainfo.text", "pk": 47641, "fields": {"kind": 131, "text": "Schwartz\u00a0\u2014 P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (N\u00d6), 28. 2. 1852; gest. Wien, 15. 9. 1929.", "source": 181}}, {"model": "metainfo.text", "pk": 47642, "fields": {"kind": 130, "text": "Sohn eines M\u00fcllers. Nach dem Besuch des Gymn. in Olm\u00fctz (Olomouc) 1854\u201362 stud. S. von 1862\u201367 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtspr\u00fcfung ablegte. Ab 1865 war er Mitgl. des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschlo\u00df. 1867 trat S. als Stud.Pr\u00e4fekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (\u017datec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zur\u00fcck, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Au\u00dfer als Gymn.Lehrer wirkte S. auch als Fachpr\u00fcfer an der Konsularakad. Wiss. besch\u00e4ftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und \u00fcbersichtl. Darstellungsweise auszeichnen.\n", "source": 182}}, {"model": "metainfo.text", "pk": 47643, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, M\u00e4hren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903.", "source": 182}}, {"model": "metainfo.text", "pk": 47644, "fields": {"kind": 130, "text": "Sohn des Zwirnh\u00e4ndlers Franz Sales S.; Bruder von Sebastian S., Onkel des Priesters Josef S., des Caspar und des Franz Sales S. (alle s. d.). S. besuchte das Gymn. in Linz und Kremsm\u00fcnster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und er\u00f6ffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er au\u00dferdem eine F\u00e4rberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige H\u00e4user in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den o\u00f6. Landtag gew\u00e4hlt, dem er dann auch 1861\u201379 angeh\u00f6ren sollte und in dem er als Obmann-Stellv. des Stra\u00dfenausschusses fungierte. 1864\u201373 Bgm. von Freistadt, erwarb er sich Verdienste um das Kommunalwesen, etwa durch die Errichtung der Stadtsparkasse (1866), deren 1. Dion.Vorstand er wurde. Bes. Augenmerk legte er auf die Entwicklung des st\u00e4dt. Schulwesens, zu dessen Entwicklung er ma\u00dfgebl. beitrug. So initiierte S. die Errichtung des 1867 er\u00f6ffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. gef\u00fchrt werden durfte, und richtete ferner, nach dem R\u00fcckzug der Piaristen, 1871 eine Knabenvolksschule ein. Au\u00dferdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freist\u00e4dter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n", "source": 183}}, {"model": "metainfo.text", "pk": 47645, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Kaspar, Politiker und Kaufmann. Geb. Lasberg (O\u00d6), 6. 11. 1811; gest. Freistadt (O\u00d6), 7. 5. 1879.", "source": 183}}, {"model": "metainfo.text", "pk": 47648, "fields": {"kind": 130, "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Nei\u00dfe stud. S. 1834\u201336 in Breslau (Wroclaw) und 1836\u201337 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Nei\u00dfe, 1839 in Breslau und dort im selben Jahr Referendar. S. war befreundet mit den schles. Dichtern Joseph v. Eichendorff und Friedrich v. Sallet und bereits 1836 in Berlin Mitgl. des Literatenver. \u201eDer Tunnel \u00fcber der Spree\u201c und des j\u00fcngeren Berliner Dichterver. Er bet\u00e4tigte sich journalist. vorwiegend als Theaterkritiker (\u201eTheater-Figaro\u201c, \u201eBreslauer Zeitung\u201c 1840ff.), war nach seiner R\u00fcckkehr nach Breslau 1840\u201348 ausschlie\u00dfl. f\u00fcr die Presse t\u00e4tig und wurde Mitarbeiter auch ausw\u00e4rtiger Z. (u. a. \u201eBerliner Figaro\u201c, \u201eBerliner Modenspiegel\u201c, \u201eDer Gesellschafter\u201c, \u201eDer Pilot\u201c). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des \u201eBreslauer Volks-Kalenders\u201c (bzw. \u201eDeutscher Volkskalender\u201c). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. \u201eBestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844\u201c (60 Aufs\u00e4tze, 1844), in der er die M\u00f6glichkeiten journalist. Arbeit nach Ma\u00dfgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als f\u00fcr \u00f6sterr. Verh\u00e4ltnisse bes. geeigneten Ztg.Red. aus, der geschickt zwischen den Anliegen der Autoren und der Forderungen der Zensur im Sinne Sedlnitzkys v. Choltitz (s. d.) zu vermitteln verstand. Nach Wien geholt, \u00fcbernahm S., der von Hebbel (s. d.) und Stifter gesch\u00e4tzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer T\u00e4tigkeit in der Red. der \u201ePresse\u201c, 1849, ab 1850 als verantwortl. Red. die \u201eWiener Zeitung\u201c, die in der Zeit seiner T\u00e4tigkeit um die zus\u00e4tzl. Organe \u201eAbendblatt\u201c (1852\u201357), \u201e\u00d6sterreichische Bl\u00e4tter f\u00fcr Literatur und Kunst\u201c (1852\u201357) und die \u201e\u00d6sterreichische Wochenschrift f\u00fcr Wissenschaft, Kunst und \u00f6ffentliches Leben\u201c (1863\u201365) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausl\u00e4nd. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verl\u00e4\u00dflichkeit gesch\u00e4tzt war. Zuletzt lebte er v\u00f6llig erblindet und zur\u00fcckgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anf\u00e4ngl. Bankbeamter, trat ebenfalls als Journalist hervor, sp\u00e4ter als Autor einiger Lustspiele und Schw\u00e4nke (\u201eDer Heiratsvermittler\u201c, 1886, \u201eSch\u00f6nheitspreis und Liebespreis\u201c, 1893, usw.).\n", "source": 184}}, {"model": "metainfo.text", "pk": 47649, "fields": {"kind": 131, "text": "Schweitzer\u00a0Leopold Albrecht, Journalist und Schriftsteller. Geb. Nei\u00dfe, Preu\u00dfen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (N\u00d6), 9. 7. 1896.", "source": 184}}, {"model": "metainfo.text", "pk": 47650, "fields": {"kind": 130, "text": "Nach absolv. Schulbesuch arbeitete S. zun\u00e4chst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu \u00fcbernehmen. Polit. engagiert, geh\u00f6rte er 1882\u201384 sowie 1894\u201397 dem Badener Gmd.Rat an, wo er sich v. a. f\u00fcr die Anliegen der Hauerschaft einsetzte. Bes. Verdienste um seine Heimatstadt erwarb sich S., der nach dem Tod seiner ersten Frau (1888) im selben Jahr Maria, geb. Gleichweit, ehel., bei der Bek\u00e4mpfung der Reblaus, die 1882 auch in Baden zu w\u00fcten begann. Durch das Aufpfropfen der Edelreben auf gegen den Sch\u00e4dling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weing\u00e4rten mit gro\u00dfem Erfolg angewandt hatte, konnten die Badener Weinkulturen in relativ kurzer Zeit gerettet werden. Auf Stud.Reisen nach Ungarn 1889 und 1896, in die Unterstmk. 1891 und 1898 sowie nach Kroatien 1896 verbesserte S. seine Kenntnisse, die er in Baden erfolgreich u. a. f\u00fcr seine Rebschule, in der er die angef\u00fchrte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner gro\u00dfen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom n\u00f6. Landesausschu\u00df als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Sch\u00e4dling zu unterweisen. F\u00fcr seine erfolgreiche T\u00e4tigkeit erhielt er von der Stadt Baden sowie vom Ackerbaumin. Anerkennungspreise. S., allen Neuerungen auf dem Gebiet des Weinbaus stets aufgeschlossen, entwickelte 1895 den ersten Weingartenpflug und soll 1897 die bis dahin unbekannte Neuburger Rebe eingef\u00fchrt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gr\u00fcndete er 1887 den Badener Rinderzuchtver. und besa\u00df eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte \u2013 er war Mitgl. bei mehreren Ver. \u2013, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinsch\u00e4tzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n", "source": 180}}, {"model": "metainfo.text", "pk": 47651, "fields": {"kind": 131, "text": "Schwabl\u00a0Franz, Landwirt und Weinhauer. Geb. Baden (N\u00d6), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers.", "source": 180}}, {"model": "metainfo.text", "pk": 47660, "fields": {"kind": 130, "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871\u201377 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877\u201382 Park Orchester, Amsterdam, 1882\u201383 Parlow Orchester, Hamburg, 1883\u201384 kgl. Staatskapelle Dresden. 1884\u201391 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegr\u00fcndete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mu\u00dfte er diese Stelle jedoch Oktober 1902 krankheitshalber aufgeben und zog nach Kreuznach, wo er bereits vorher Sommerkurse geleitet hatte, und widmete sich der Komposition. 1903\u201304 spielte S. im Pittsburgh Symphony Orchestra, 1904\u201309 im Philadelphia Orchestra, 1910 im Orchester der New Yorker Metropolitan Opera. S., sowohl als Orchesterspieler wie als Solist ein Virtuose von hohem Rang, gab ein noch heute verwendetes Hilfswerk f\u00fcr die Ausf\u00fchrung von schwierigen Harfenstellen in den Opern Richard Wagners heraus und wirkte auch 1903 und 1906 bei den Wagnerauff. an der Covent Garden Opera London mit. Von seinen durchwegs der Harfe gewidmeten Salonst\u00fccken ist die Mazurka, op. 12, beliebt geblieben. 1890 Kammervirtuose des Hg. Ernst von Sachsen-Altenburg. Sein Bruder Heinrich S. (geb. Wien, 25. 11. 1867; gest. Boston, Mass., USA, 17. 4. 1913) stud. 1878\u201384 ebenfalls bei Anton Zamara am Wr. Konservatorium der Ges. der Musikfreunde, trat nach einer Saison beim Parlow Orchester, Hamburg, 1885 als 1. Harfenist ins Boston Symphony Orchestra ein und lehrte am Bostoner New England Conservatory. Er trat auch als Solist bei den Musikfestivals in Worcester (Mass.) sowie in Paris und London auf. S.s Sohn Joseph E. S. (geb. Leipzig, Sachsen/Deutschland, 19. 5. 1886; gest. Los Angeles, Ca., USA, 9. 12. 1938) stud. bei seinem Vater, 1900\u201301 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904\u201305 bzw. 1908\u201309 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911\u201313 Harfenist einer Opernges. in Boston, lehrte er 1915\u201320 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n", "source": 179}}, {"model": "metainfo.text", "pk": 47661, "fields": {"kind": 131, "text": "Schu\u00ebcker (eigentl. Schu\u00f6cker)\u00a0Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preu\u00dfen (Bad Kreuznach, Deutschland), 9. 11. 1911.", "source": 179}}, {"model": "metainfo.text", "pk": 47662, "fields": {"kind": 130, "text": "Sohn von Norbert Michael, Bruder von Norbert, Neffe von Anton S. (alle s. d.). Bedingt durch die zahlreichen Reisen seines Vaters, lernte S. bereits in fr\u00fcher Jugend zahlreiche St\u00e4dte Europas kennen. Seine ersten k\u00fcnstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der \u00dcbersiedlung seines Vaters nach Paris besuchte S. 1854/55 die Modellierklasse der Pariser Akad. Aber schon kurz darauf verlegte der Vater seinen Wohnsitz nach Frankfurt a. Main, wo S. 1855/56 vorerst Privatunterricht in Bildhauerei von dem mit seinem Vater befreundeten Eduard Schmidt von der Launitz erhielt. 1856\u201358 stud. er am St\u00e4del\u2019schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858\u201361 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 \u00fcbersiedelte er nach Wien, 1863\u201365 hielt er sich, finanziert durch ein Rom-Stipendium, in Italien auf, 1866 in Paris. Ab 1867 wieder in Wien, arbeitete S. als Mitarbeiter bei den Bildhauern Victor Tilgner und Rudolf Weyr mit, 1894\u20131908 war er Ass. an der Akad. der bildenden K\u00fcnste in Wien, wo er zeitweise die Klasse f\u00fcr Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-B\u00fcste f\u00fcr das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisb\u00fcste des Nikolaus Joseph v. Jacquin f\u00fcr die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) f\u00fcr den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschm\u00fcckung des Naturhist. Mus. in Wien mit.\n", "source": 178}}, {"model": "metainfo.text", "pk": 47663, "fields": {"kind": 131, "text": "Schr\u00f6dl\u00a0Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908.", "source": 178}}, {"model": "metainfo.text", "pk": 47672, "fields": {"kind": 130, "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olm\u00fctz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Br\u00fcnn (Brno) Maschinenbau, 1898\u20131903 an der Bauing.Schule (1905 Staatspr\u00fcfung). Zun\u00e4chst an der Br\u00fcnner Hochschule f\u00fcr einige Monate als Ass. t\u00e4tig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen gr\u00f6\u00dferen Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919\u201322), betraut. Als Baurat \u00fcbernahm er 1920 die selbst\u00e4ndige Leitung der Bauabt., die f\u00fcr die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. ma\u00dfgebl. an den von Peter Behrens und Alexander Popp geplanten Neubauten bei der Tabakfabrik in Linz (1929ff.) sowie an der Errichtung zahlreicher, in der Nachkriegszeit geschaffener Wohnhausanlagen beteiligt. Daneben publ. S.\u00fcber die Baut\u00e4tigkeit der \u00d6sterr. Tabakregie. 1930 HR, 1947 i. R.\n", "source": 177}}, {"model": "metainfo.text", "pk": 47673, "fields": {"kind": 131, "text": "Schreyer\u00a0Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravic\u00ed, M\u00e4hren (Bridlicn\u00e1, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950.", "source": 177}}, {"model": "metainfo.text", "pk": 47676, "fields": {"kind": 130, "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840\u201341 dort Med., ab 1841 an der Univ. Wien, wo er 1845 zum Dr. med. prom. wurde. Nach weiterer chirurg. Ausbildung wirkte er am Provinzialstrafhaus in Wien, ab 1856 am Filialspital des Allg. Krankenhauses in Wien II., zuletzt als dessen prov. Vorstand, ab 1858 als Primarius der IV. med. Abt. am Allg. Krankenhaus. S. machte sich um die Verwendung der 1853 in Schottland entwickelten Subkutanspritze zur Einf\u00fchrung von Medikamenten bei der Schmerzbehandlung (Injektion) verdient und stellte diese, erst in den 70er Jahren allg. angewendete Methode sowie seine Erfahrungen damit schon 1861 vor. Auch begann er sich fr\u00fch mit dem Einflu\u00df der Haft auf die Entstehung von Geistesst\u00f6rungen bei Str\u00e4flingen zu besch\u00e4ftigen. An seiner Klinik betrieb der ab 1878 dort t\u00e4tige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882\u201385 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n", "source": 175}}, {"model": "metainfo.text", "pk": 47677, "fields": {"kind": 131, "text": "Scholz\u00a0Franz, Mediziner. Geb. Moldau, B\u00f6hmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902.", "source": 175}}, {"model": "metainfo.text", "pk": 47678, "fields": {"kind": 130, "text": "Sohn des Kaspar Schram(m)el (geb. H\u00f6rmanns b. Litschau/Litschau, N\u00d6, 6. 1. 1811; gest. Langenzersdorf, N\u00d6, 20. 12. 1895) und (Eheschlie\u00dfung 1853) der Volkss\u00e4ngerin Aloisia Ernst (1829\u20131881), Bruder des Joseph S. (geb.Ottakring, N\u00d6/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833\u20131905), der, 1866 als Invalide aus dem Milit\u00e4rdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon fr\u00fch in Dorfkapellen als Klarinettist t\u00e4tig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkst\u00fcml.-musikal. Wirtshausproduktionen. S. wirkte ebenso wie sein Bruder Joseph schon als Kind bei den Auftritten des Vaters als Geiger mit (1861 gilt als Beginn ihrer \u00f6ff. T\u00e4tigkeit), doch erhielten beide \u2013 ein f\u00fcr ihre Verh\u00e4ltnisse ungew\u00f6hnl. Schritt \u2013 auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862\u201363 Violinsch\u00fcler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschlu\u00df (aus ungekl\u00e4rten Ursachen) 1866 Karl Hei\u00dflers, Joseph 1865/66 ebenfalls Sch\u00fcler Hellmesbergers. Nach dem Milit\u00e4rdienst (1866\u201372, 1870 Korporal) spielte S. in einigen \u201eNationalquartetten\u201c und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in gro\u00dfen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gr\u00fcndete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient \u2013 1869\u201371 \u2013 bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett (\u201eNu\u00dfdorfer Terzett\u201c), in dem Joseph die 1., er selbst die 2. Geige und zun\u00e4chst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Br\u00fcder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. \u201epicks\u00fc\u00dfes H\u00f6lzl\u201c) Georg D\u00e4nzer (geb.Hernals, N\u00d6/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett \u201eGebr. Schrammel, D\u00e4nzer und Strohmayer\u201c, das in dieser Besetzung bis zum Ausscheiden D\u00e4nzers Ende 1891 \u2013 Strohmayer verlie\u00df das Quartett Ende 1892 \u2013 verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schlie\u00dfl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die urspr\u00fcngl. Quartettbesetzung zur\u00fcckgegriffen. Im Wr. Musikleben spielten die \u201eSchrammeln\u201c eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu h\u00f6ren, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit \u201eNaturs\u00e4ngern\u201c, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkss\u00e4nger lie\u00dfen diese Vortr\u00e4ge zeitweise verbieten, weswegen die Br\u00fcder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. \u00c4u\u00dferst erfolgreiche Gastspielreisen f\u00fchrten das Quartett 1888 und 1889 durch Deutschland, der letzte H\u00f6hepunkt waren die t\u00e4gl. Produktionen anl\u00e4\u00dfl. der Internationalen Ausst. f\u00fcr Musik- und Theaterwesen in Wien, 1892, doch mu\u00dfte sich S. wegen seiner zunehmenden Herzkrankheit dann zur\u00fcckziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterf\u00fchrte, v\u00f6llig mittellos. Als Komponist schlo\u00df S. an seine Vorl\u00e4ufer an (so gab er 1888 3 He. \u201eAlte oesterreichische Volksmelodien \u2026\u201c heraus), seine (zu etwa 1/3 gedruckten) \u00fcber 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und M\u00e4rsche (u. a. \u201eWien bleibt Wien\u201c, 1886), Josephs bekannteste Komposition ist das Lied \u201eVindobona, du herrliche Stadt\u201c. Die \u201eSchrammeln\u201c und \u201eSchrammelmusik\u201c \u201eblieben als Begriffe f\u00fcr ein volkst\u00fcml. Ensemble und ein entsprechendes Musizieren erhalten\u201c (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorl\u00e4ufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. F\u00e4higkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch h\u00f6chste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strau\u00df.\n", "source": 176}}, {"model": "metainfo.text", "pk": 47679, "fields": {"kind": 131, "text": "Schrammel\u00a0Johann, Musiker und Komponist. Geb. Neulerchenfeld, N\u00d6 (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893.", "source": 176}}, {"model": "metainfo.text", "pk": 47684, "fields": {"kind": 130, "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine fr\u00fche Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826\u201329 an der Univ. Graz Jus, 1829 Dr. jur., und trat 1834 bei der Hof- und Kammerprokuratur als Konzeptspraktikant ein. 1836 wurde er zur Kammerprokuratur nach Lemberg (L\u2019viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) t\u00e4tig war. 1847 erfolgte seine Versetzung als Landrat zum Gef\u00e4llen-Bez.Gericht bzw. Landrecht in Tarn\u00f3w. W\u00e4hrend eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. f\u00fcr den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschu\u00df mit, f\u00fcr den er auch als Referent fungierte. Hier setzte er sich u. a. bes. f\u00fcr die Unabh\u00e4ngigkeit K\u00e4rntens ein. Weiters war S. Mitgl. der Redaktionskomm. f\u00fcr die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem \u201eZentrumklub\u201c bei und geh\u00f6rte im Dezember dieses Jahres der Reichstagsdeputation nach Olm\u00fctz (Olomouc) und Prag an. Nach der Aufl\u00f6sung des Reichstags 1849 zog sich S. aus der Politik zur\u00fcck und wurde dem n\u00f6. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Pr\u00e4s. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenb\u00fcrgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepr\u00e4s. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepr\u00e4s. des Wr. Landesgerichts ernannt. Wegen seiner geschw\u00e4chten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n", "source": 174}}, {"model": "metainfo.text", "pk": 47685, "fields": {"kind": 131, "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884.", "source": 174}}, {"model": "metainfo.text", "pk": 47688, "fields": {"kind": 130, "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbi\u00df, Vater von B\u00e9la Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. B\u00e9la Frh. v. S.). Wuchs nach dem fr\u00fchen Tod seines Vaters im Hause von Karl Gf. Gatterburg, des zweiten Gatten seiner Mutter, auf. Nach Privatunterricht trat er 1820 beim 4. Chevauxlegersrgt. in die k. Armee ein, wurde 1822 Unterlt., 1831 Oblt., 1835 Rtm. 2., 1840 1. Kl., 1846 Mjr., 1848 Obstlt., 1849 Obst., 1851 GM, 1859 FML, 1863 pensioniert, 1865 jedoch als Gendarmeriegen.Insp. reaktiviert und 1868 als Gen. der Kav. ad honores endg\u00fcltig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich w\u00e4hrend des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab \u00fcberstellt und bew\u00e4hrte sich in der Folge an verschiedenen Standorten als Brigadier. Daneben war er 1856 dem Kg. v. Griechenland, 1858 Erzhg. Karl Ferdinand bei dessen Inspektionstour zu den Landeskontingenten des Dt. Bundes zugewiesen. Im italien. Feldzug von 1859 tat er sich als Division\u00e4r beim 3. Inf.Armeekorps durch umsichtige F\u00fchrung sowie pers\u00f6nl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode f\u00fchrte er dann die Administrationsgesch\u00e4fte des Landesgendarmeriekmdo. in Lemberg (L\u2019viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de V\u00e1sonyke\u00f6 (geb. Wien, 30. 10. 1805; gest. Verona, Venetien/Italien, 9. 1. 1851), 1855 Theresia Franziska Juliana Si(e)gel (geb. Wien, 11. 3. 1827; gest. Wien, 1. 5. 1857) und 1859 Anna Scheiger (geb. Wien, 7. 7. 1820; gest. G\u00f6rz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausl\u00e4nd. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes f\u00fcr die von ihm angeregte und nach dem Feldzug von 1848/49 durchgef\u00fchrte Reorganisation der Husarenrgt. verdient.\n", "source": 172}}, {"model": "metainfo.text", "pk": 47689, "fields": {"kind": 131, "text": "Sch\u00f6nberger (Schoenberger) (Carl Friedrich)\u00a0Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorder\u00f6sterr. (Deutschland), 30. 6. 1804; gest. G\u00f6rz, G\u00f6rz-Gradisca (Gorizia, Italien), 19. 12. 1880.", "source": 172}}, {"model": "metainfo.text", "pk": 47690, "fields": {"kind": 130, "text": "Stud. 1872\u201380 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), sp\u00e4ter auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Ru\u00dfland, Deutschland, \u00d6sterr. und Belgien. 1880\u201385 lehrte er in Wien, 1886 reiste er nach Schweden und anschlie\u00dfend nach London, wo er im J\u00e4nner 1887 erstmals als Solist auftrat und sich in der Folge niederlie\u00df. S. geh\u00f6rte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, sp\u00e4ter unternahm er Konzertreisen in Europa und England, auch als Dirigent einer reisenden Opernges. Er war mit der Tochter des engl. Gen. Sir Henry Tuson verheiratet.\n", "source": 173}}, {"model": "metainfo.text", "pk": 47691, "fields": {"kind": 131, "text": "Sch\u00f6nberger\u00a0Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Gro\u00dfbritannien), 9. 3. 1930.", "source": 173}}, {"model": "metainfo.text", "pk": 47694, "fields": {"kind": 130, "text": "Sohn des Vorigen, Bruder von Arthur S., Schwager von M. Hajek (beide s. d.); mos. Stud. nach Absolv. des Akadem. Gymn. in Wien ab 1882 an der dortigen Univ. Med., u. a. bei E. Albert, Billroth, E. W. v. Br\u00fccke sowie Nothnagel (alle s. d.), und wurde 1888 zum Dr. med. prom. Seine weitere Ausbildung erhielt er 1887/88 als Aspirant an der Klinik Nothnagel, ab 1889 bei Albert, wo er 1891\u201395 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien f\u00fcr Chirurgie und wurde 1907 Tit. ao., 1927 unbesoldeter ao. Prof. 1895/96 stand er der Chirurg. Abt. an der Wr. Allg. Poliklinik vor, kam 1896 als Primarius f\u00fcr Chirurgie an das K.-Franz-Josef-Spital, 1902 an das Wiedner Krankenhaus und trat 1934 i. R. S. gestaltete die von ihm geleiteten Abt. gem\u00e4\u00df den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und ver\u00f6ff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentz\u00fcndung bzw. -katarrh, v. a. aber nat\u00fcrl. chirurg. Problemen. Als einer der ersten besch\u00e4ftigte er sich mit der operativen Behandlung der akuten Blinddarmentz\u00fcndung, propagierte umfangreiche Resektionen bei Magen- und Zw\u00f6lffingerdarmgeschw\u00fcren, erarbeitete Vorbeugungsma\u00dfnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und besch\u00e4ftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besa\u00df spr\u00fchenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch \u00f6ff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des \u00d6sterr. Verdienstordens. Durch sein Bem\u00fchen um die Diagnostik der Blinddarmentz\u00fcndung und sein entschiedenes Eintreten in Theorie und Praxis f\u00fcr umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen pers\u00f6nl. Verh\u00e4ltnis zu seinem Bruder Arthur, das in zwei von dessen erz\u00e4hler. Werken (\u201eDer blinde Geronimo und sein Bruder\u201c, \u201eFlucht in die Finsternis\u201c) Niederschlag fand.\n", "source": 169}}, {"model": "metainfo.text", "pk": 47695, "fields": {"kind": 131, "text": "Schnitzler\u00a0Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939.", "source": 169}}, {"model": "metainfo.text", "pk": 47696, "fields": {"kind": 130, "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874\u201378 an der Univ. Wien Jus, 1881 Dr. jur. 1879 trat S. beim Landesgericht Wien in den Justizdienst, wurde 1885 Bez.Gerichtsadjunkt in Wolkersdorf, 1887 in Wien-Hietzing, 1891 Gerichtsadjunkt beim Wr. Landesgericht. 1896 wechselte S. zur Staatsanwaltschaft (Substitut in Korneuburg) und war ab 1897 Staatsanwalt in Steyr, 1902 in Krems, bis er 1903 ins Justizmin. berufen wurde, wo er, 1904 Sektionsrat, 1907 Titel und Charakter eines Min.Rates, 1909 Min.Rat, 1912 zum Sektionschef avancierte. S. war an den legislativen Arbeiten des Justizmin., insbes. auf den Gebieten der Strafrechts- und der Strafproze\u00dfreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees f\u00fcr die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wof\u00fcr er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verst\u00e4ndnis f\u00fcr die Bed\u00fcrfnisse der Milit\u00e4rverwaltung \u20131877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. \u2013 brachte es mit sich, da\u00df sein Rat von den milit\u00e4r. Stellen oft in Anspruch genommen wurde; f\u00fcr seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Milit\u00e4rstrafverfahrens (Milit\u00e4rstrafproze\u00dfordnung von 1912) erhielt er 1912 das Komturkreuz des Franz Joseph-Ordens mit dem Stern. Auch die zahlreichen Kriegsstrafgesetze sind unter seiner Mitwirkung zustande gekommen. In den Aussch\u00fcssen beider H\u00e4user des Reichsrates war er sehr oft als Vertreter des Justizmin. t\u00e4tig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatspr\u00fcfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n", "source": 170}}, {"model": "metainfo.text", "pk": 47697, "fields": {"kind": 131, "text": "Schober\u00a0Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917.", "source": 170}}, {"model": "metainfo.text", "pk": 47700, "fields": {"kind": 130, "text": "Sohn von (Heinrich) Eduard v. S. (s. u.), Neffe von (Wilhelm) Alexander, Cousin von Philipp Wilhelm d. J. und Paul Eduard v. S. (alle s. d.), Schwiegervater von Armand Dumreicher v. \u00d6sterreicher (s. d.); evang. HB. S., der als Mitsch\u00f6pfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Gro\u00dfhandlungshaus \u201eAlexander Schoeller\u201c (sp\u00e4ter \u201eSchoeller & Co.\u201c) nach Wien geholt, ab 1869 \u00f6ff. Gesellschafter. Er konnte seinen Onkel bei der Weiterf\u00fchrung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und M\u00fchlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von \u201eSchoeller & Co.\u201c nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) \u00fcberging, durch die Erzeugung von Blechen und Dr\u00e4hten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene H\u00fclsenfabrik zur Produktion von Kriegsmaterial begr\u00fcndet. Im Ternitzer Werk, der \u201eTernitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.\u201c, f\u00fchrte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gr\u00fcnden nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgel\u00f6st. Wegen eines schweren Nervenleidens mu\u00dfte er die Firmenleitung zuletzt fast g\u00e4nzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard \u00fcberlassen. S. bekleidete auch eine gro\u00dfe Zahl von Verwaltungsratsstellen bei gro\u00dfen \u00f6sterr. Ind.-, Banken- und Eisenbahnunternehmungen, wie etwa bei der Bodencreditanstalt in Wien und der K. Ferdinands-Nordbahn. Am Gmd.Leben der evang. Gmd. HB in Wien aktiv beteiligt, war S. 1865\u201389 Gmd.Vertreter, 1867\u201389 auch Presbyter und betreute \u2013 wie auch schon sein Onkel \u2013 deren Verm\u00f6gensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. D\u00fcren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, N\u00d6, 18. 1. 1879), war wie etl. andere Angeh\u00f6rige der Familie S. in der Zuckerind. t\u00e4tig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterst\u00fctzung seines Bruders Alexander pachtete er 1853 die Herrschaft Edel\u00e9ny bei Miskolcz und richtete die darauf befindl. Zuckerr\u00fcbenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu k\u00e4mpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n", "source": 171}}, {"model": "metainfo.text", "pk": 47701, "fields": {"kind": 131, "text": "Schoeller\u00a0Gustav Adolph von, Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier. Geb. D\u00fcren, Preu\u00dfen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889.", "source": 171}}, {"model": "metainfo.text", "pk": 47706, "fields": {"kind": 130, "text": "Sohn eines Sattlermeisters und Gastwirts. S., der bei seinem mus. und Zeichner. begabten Vater ersten Zeichenunterricht erhielt, sollte die Marinemusikschule in Pola (Pula) besuchen, wurde aber wegen einer Augenschw\u00e4che zur\u00fcckgestellt. Daraufhin ging er nach Wien und stud. hier 1880\u201382 an der Akad. der bildenden K\u00fcnste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender K\u00fcnstler, so z. B. f\u00fcr die Z. \u201e\u00dcber Land und Meer\u201c. Als der k\u00fcnstler. Erfolg etwas nachlie\u00df, kehrte S. nach Mies zur\u00fcck, \u00fcbersiedelte aber 1895 wieder nach M\u00fcnchen, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als \u201eSalome\u201c. Sein \u0152uvre umfa\u00dft neben Portr\u00e4ts von Schauspielerinnen und span. T\u00e4nzerinnen auch Bildnisse von Mitgl. des bayer. K\u00f6nigshauses. S., der Mitgl. der M\u00fcnchner K\u00fcnstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n", "source": 168}}, {"model": "metainfo.text", "pk": 47707, "fields": {"kind": 131, "text": "Schmutzler\u00a0Leopold, Maler. Geb. Mies, B\u00f6hmen (Str\u00edbro, Tschechien), 29. 3. 1864; gest. M\u00fcnchen, Bayern (Deutschland), 20. 6. 1940.", "source": 168}}, {"model": "metainfo.text", "pk": 47712, "fields": {"kind": 130, "text": "Sohn des P\u00e4chterehepaars Wolf und Sara S., mos.; nach \u00dcbersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromer\u00ed\u017e) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922\u201323 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterst\u00fctzt von seinem Onkel und sp\u00e4terem Manager, Leo Engel, 1925\u201326 an der Hochschule f\u00fcr Musik in Berlin (Sch\u00fcler von Hermann Weissenborn) fortsetzte. Nach dem Milit\u00e4rdienst in Rum\u00e4nien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Deb\u00fct als Rundfunks\u00e4nger am 29. 3. 1929 (Vasco da Gama in Meyerbeers \u201eDie Afrikanerin\u201c), weitere Rundfunkproduktionen (Hans in Smetanas \u201eDie verkaufte Braut\u201c, Lionel in Flotows \u201eMartha\u201c), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von au\u00dferordentlicher Popularit\u00e4t \u2013 seiner geringen K\u00f6rpergr\u00f6\u00dfe wegen allerdings nur innerhalb der zu dieser Zeit aufbl\u00fchenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in \u201eDer Liebesexpress\u201c (Urauff. Berlin 1931) folgte der unerh\u00f6rte Siegeszug von \u201eEin Lied geht um die Welt\u201c (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Macht\u00fcbernahme in Deutschland wurde S., schon vorher diffamiert und angefeindet, mit Auftrittsverbot belegt und Wien immer mehr zu seinem Lebenszentrum, ab 1935 sein Wohnort. Hier wurden die n\u00e4chsten Filme \u201eWenn du jung bist, geh\u00f6rt dir die Welt\u201c, 1933, \u201eEin Stern f\u00e4llt vom Himmel\u201c, 1935, auch engl. Version, und \u201eHeut ist der sch\u00f6nste Tag in meinem Leben\u201c, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Pal\u00e4stina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937\u20131938 (mit Auftritten u. a. in der New Yorker Carnegie Hall) hervorzuheben. 1938 wieder in Wien, gab er im Herbst desselben Jahres Konzerte in Belgien und lie\u00df sich 1939 in Br\u00fcssel nieder, wo er als Rudolf in Puccinis \u201eLa Boh\u00e8me\u201c einen seiner seltenen B\u00fchnenauftritte hatte. Infolge des Kriegsverlaufs mu\u00dfte S. 1940 aus Belgien fl\u00fcchten, hielt sich in S\u00fcdfrankreich auf und gelangte 1942 unter gro\u00dfen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf v\u00f6llig mittellos. S. wurde als S\u00e4ngertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine \u2013 allerdings kleine und nicht restlos durchgebildete \u2013 lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und h\u00f6chsten Lage und ein f\u00fcr S. charakterist. \u201ewehm\u00fctiges\u201c Timbre aus.\n", "source": 167}}, {"model": "metainfo.text", "pk": 47713, "fields": {"kind": 131, "text": "Schmidt,\u00a0\u2014 Joseph S\u00e4nger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rum\u00e4nien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Z\u00fcrich (Schweiz), 16. 11. 1942.", "source": 167}}, {"model": "metainfo.text", "pk": 47714, "fields": {"kind": 130, "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Kne\u017ena (Rychnov nad Kne\u017enou) und Olm\u00fctz (Olomouc) begann S. eine kaufm\u00e4nn. Lehre in Br\u00fcnn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Gro\u00dfhandel bet\u00e4tigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gew\u00e4hlt worden war, \u00fcbernahm S. die Leitung des v\u00e4terlichen Gesch\u00e4fts in Schildberg und sp\u00e4ter gem. mit seinem \u00e4lteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papierm\u00fchle (sie galt als die \u00e4lteste der \u00d6sterr.-ung. Monarchie) und Bleiche in Gro\u00dfullersdorf und betrieb dort nach dem Ableben seines Bruders (1871) eine Papier- und Leinenerzeugung im eigenen Namen, jedoch unter der Fa. Ant. J. Schmidt u. S\u00f6hne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere f\u00fchrten zu einer neuen Bl\u00fcte dieser Papierm\u00fchle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Gro\u00dfullersdorf, eine \u2013 1917 aufgel\u00f6ste \u2013 Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige f\u00fcrstlich liechtensteinsche Mahlm\u00fchle in Olleschau (Ol\u0161any) und errichtete dort eine Fabrik f\u00fcr Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG \u00fcbernommen, die ab 1870 auch das sp\u00e4ter verbreitete Zigarettenpapier Marke \u201eOlleschau\u201c herstellte, wobei die Lieferschwierigkeiten der franz\u00f6s. Konkurrenz in den Krisenjahren 1870/71 gen\u00fctzt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olm\u00fctzer Handels- und Gewerbekammer in den m\u00e4hr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Gro\u00dfullersdorf, 1879\u201391 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegr\u00fcndeten Te\u00dfthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, sp\u00e4ter auch anderen Fragen der Landwirtschaft widmete. S. n\u00fctzte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die M\u00f6glichkeiten des erh\u00f6hten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde f\u00fcr seine wirtschaftliche und polit. T\u00e4tigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon w\u00e4hrend seiner Lebenszeit wurde die Unternehmung von seinen S\u00f6hnen Anton S. (geb. Gro\u00dfullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Gro\u00dfullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Gro\u00dfullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgef\u00fchrt. W\u00e4hrend Anton S. bis 1917 die Wr. Gesch\u00e4ftsstelle leitete, danach mit Richard die Ullersdorfer Papierm\u00fchle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einf\u00fchrte. Alle drei Br\u00fcder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizit\u00e4tswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung t\u00e4tig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908\u20131938 Kammerrat der Handels- und Gewerbekammer Olm\u00fctz.\n", "source": 166}}, {"model": "metainfo.text", "pk": 47715, "fields": {"kind": 131, "text": "\u2014 Anton Schmidt,\u00a0Fabrikant und Politiker. Geb. Schildberg, M\u00e4hren (\u0160t\u00edty, Tschechoslowakei), 9. 12. 1826; gest. Gro\u00dfullersdorf, M\u00e4hren (Velk\u00e9 Losiny, Tschechoslowakei), 28. 3. 1892.", "source": 166}}, {"model": "metainfo.text", "pk": 47718, "fields": {"kind": 130, "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete f\u00fcr Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Franz\u00f6s. Krieg teil, wurde danach Red. des \u201eWestph\u00e4lischen Grenzboten\u201c in M\u00fcnster, dann Leiter des Feuilletons und \u201eReimchronist\u201c der \u201eDeutschen Zeitung\u201c in Paris und war schlie\u00dflich ab 1880 Berichterstatter der \u201eBerliner Post\u201c; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen sp\u00e4teren Ver\u00f6ff. zugute kamen. In der Folge \u00fcbersiedelte S. nach Wien, wo er 1886 in die Red. des \u201eNeuen Wiener Tagblatts\u201c eintrat, der er bis zu seinem Tod angeh\u00f6rte. Daneben arbeitete er an mehreren Ztg. (u. a. der \u201eIllustrirten Zeitung\u201c, Leipzig) und Z. (u. a. der \u201eGartenlaube\u201c) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. \u201eMuth\u201c, 1899), Erz., M\u00e4rchen, den historisierenden Wr. Roman aus dem 15. Jh. \u201eB\u00fcrger und Studenten\u201c sowie dramat. Werke.\n", "source": 164}}, {"model": "metainfo.text", "pk": 47719, "fields": {"kind": 131, "text": "Schmal\u00a0Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preu\u00dfen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900.", "source": 164}}, {"model": "metainfo.text", "pk": 47724, "fields": {"kind": 130, "text": "Sohn eines in Frankreich t\u00e4tigen Tschechen und einer Franz\u00f6sin (geb. Beauchez), lebte er ab 1860 in B\u00f6hmen und besuchte das Akadem. Gymn. in Prag. Er wurde als aktiver Teilnehmer an Demonstrationen gegen den Justizminister Herbst (s. d.) verhaftet und wegen Hochverrats angeklagt, floh jedoch vor dem Proze\u00df nach Paris, dann 1869 nach Berlin, wo er die \u201eCorrespondance Tch\u00e8que\u201c red. W\u00e4hrend des dt.-franz\u00f6s. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zur\u00fcck und fand seinen Lebensunterhalt als Lehrer der franz\u00f6s. Sprache in Leitomischl (Litomy\u0161l), von 1873 an in Prag. Polit. geh\u00f6rte er dem radikalen Fl\u00fcgel der demokrat. Jungtschechen an, k\u00e4mpfte f\u00fcr die Einf\u00fchrung des allg. Wahlrechts und trat auch in Prager Arbeiterbll. mit Artikeln hervor. V. a. widmete er sich der Anbahnung der freundschaftl. Beziehungen zu Frankreich, f\u00fchrte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag f\u00fcr franz\u00f6s. Ztg. 1893\u201398 war er Korrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris, dann st\u00e4ndiger Mitarbeiter von \u201eLe Temps\u201c in Prag, ab 1903 Red. der erneuerten \u201eCorrespondance Tch\u00e8que\u201c. Daneben war er als \u00dcbers. franz\u00f6s. Romane und Schauspiele t\u00e4tig und verf. eine Reihe von verbreiteten Sprachlehrb\u00fcchern und Konversationsbehelfen.\n", "source": 165}}, {"model": "metainfo.text", "pk": 47725, "fields": {"kind": 131, "text": "\u2014 -Beauchez\u00a0Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, B\u00f6hmen (Praha, Tschechien), 14. 12. 1912.", "source": 165}}, {"model": "metainfo.text", "pk": 47726, "fields": {"kind": 130, "text": "Bauernsohn; stud. kath. Theol. an der Univ. Prag, 1860 Priesterweihe, 1865 Dr. theol. Ab 1862 Adjunkt an der theolog. Fak. in Prag, lernte er auf einer Stud.Reise durch Deutschland die damals namhaftesten Theologen (Hergenr\u00f6ther, Hettinger, D\u00f6llinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. f\u00fcr Kirchengeschichte an der Univ. Prag und f\u00fchrte 1878 das Fach Patrol. in den Lehrplan ein. S. war Historiograph der Fak., mehrmals Dekan und Rektor. 1882 hatte er als letzter Rektor der ungeteilten Univ. die Trennungsverhh. zu leiten. Mitgl. diverser gel. Ges., Landtagsabg. der Fraktion der verfassungstreuen Gro\u00dfgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte B\u00f6hmens. In seiner Monographie \u00fcber den Hl. Wolfgang bem\u00fchte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n", "source": 163}}, {"model": "metainfo.text", "pk": 47727, "fields": {"kind": 131, "text": "Schindler\u00a0Josef, Kirchenhistoriker. * Lachowitz (Lachovice, B\u00f6hmen), 23. 6. 1835; \u2020 Prag, 22. 2. 1911.", "source": 163}}, {"model": "metainfo.text", "pk": 47728, "fields": {"kind": 130, "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); w\u00e4hrend der Volksschulzeit S\u00e4nger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verh\u00e4ltnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien besch\u00e4ftigt; daneben stud. er am Konservatorium der Ges. der Musikfreunde Klavier bei Fischhof, Pirkhert (beide s. d.) und Franz Ramesch, Komposition bei Simon Sechter sowie Waldhorn bei Richard Lewy und lernte dort den Dirigenten H. Richter (s. d.) kennen, mit dem er zeitlebens freundschaftlich verbunden war. Ab 1865 war S. 1. Hornist am Hofburgtheater und als Musiklehrer u. a. in der Familie des Justizministers Stremayr und in der Familie Kautsky t\u00e4tig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivit\u00e4ten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Br\u00fcdern zur Arbeiterbewegung; 1868 gr\u00fcndete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das \u201eLied der Arbeit\u201c, das zur Hymne der \u00f6sterr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (h\u00e4ufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, R\u00fcckert), wobei die \u00dcbereinstimmung von textlicher und musikal. Deklamation f\u00fcr ihn sehr wesentlich war. 1872 gr\u00fcndete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste \u00f6sterr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur beh\u00f6rdlichen Einstellung 1878 war S. Red. der \u201e\u00d6sterreichischen Musikerzeitung\u201c, 1878 gr\u00fcndete er den Arbeiter-S\u00e4ngerbund Wien, den ersten \u00f6sterr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880\u201382 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem m\u00e4rchenhaften, allegor. Libretto von Albert Dulk) im sp\u00e4tromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegr\u00fcnder und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-S\u00e4ngerbundes Landstra\u00dfe, 1891 Mitbegr\u00fcnder des Verbandes der Arbeiter-Gesangver. Nieder\u00f6sterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gr\u00fcndete S. die \u201eArbeiters\u00e4nger-Zeitung\u201c, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der \u201eArbeiter-Zeitung\u201c, wobei er bem\u00fcht war, das Kunstverst\u00e4ndnis der Arbeiter zu f\u00f6rdern und ihnen die klass. und zeitgen\u00f6ss. Musik n\u00e4herzubringen. S. sah in der von ihm begr\u00fcndeten Arbeiters\u00e4ngerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung \u00fcberhaupt.\n", "source": 161}}, {"model": "metainfo.text", "pk": 47729, "fields": {"kind": 131, "text": "Scheu\u00a0Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; \u2020 Wien, 12. 10. 1904.", "source": 161}}, {"model": "metainfo.text", "pk": 47730, "fields": {"kind": 130, "text": "S. stud. 1870\u201378 an der Akad. der bildenden K\u00fcnste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885\u201390 als Ass. an der Kunstgewerbeschule in Prag bei Franti\u0161ek \u017den\u00ed\u0161ek, 1890\u20131922 war er dort als Prof. (1894 o. Prof.) f\u00fcr dekorative Malerei t\u00e4tig. 1913 Mitgl. der Tschech. Akad. der Wiss. und K\u00fcnste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, n\u00e4mlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten H\u00e4lfte der 80er Jahre wandte er sich, unter dem Einflu\u00df der westeurop. Malerei und bedingt durch die Konfrontation mit den sozialen Problemen des Alltags, Genrethemen zu, in denen Traurigkeit, Tragik und Resignation vorherrschen. In seinen melanchol. gestimmten Gem\u00e4lden der folgenden Periode verwendete er h\u00e4ufig Motive aus dem Milieu des abendlichen und n\u00e4chtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gef\u00fchlstiefe, die durch Lichteffekte bewirkt wird, aus.\n", "source": 162}}, {"model": "metainfo.text", "pk": 47731, "fields": {"kind": 131, "text": "Schikaneder\u00a0Jakub, Maler. * Prag, 27. 2. 1855; \u2020 Prag, 15. 11. 1924.", "source": 162}}, {"model": "metainfo.text", "pk": 47732, "fields": {"kind": 130, "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861\u20131919), der gem. mit seinem Onkel Sebastian S. (1844\u201389) 1885 die Holzdrahtfabrik S. & Neffe gegr\u00fcndet hatte; stud. Elektrotechnik an der H\u00f6heren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im v\u00e4terlichen Unternehmen, das Z\u00fcndholzhersteller belieferte, aber auch u. a. Jalousiest\u00e4be und Zahnstocher herstellte, und brachte es in kurzer Zeit zu gro\u00dfer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Z\u00fcndholzerzeugung nahm 1928 durch S.s Mitgr\u00fcndung des Luma-Verkaufsb\u00fcros der Z\u00fcndwarenfabriken Solo-AG Sch\u00fcttenhofen und S. & Neffe GmbH in Prag gro\u00dfen Aufschwung, Z\u00fcndh\u00f6lzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, besch\u00e4ftigte bis zu 300 Mitarbeiter. 1892\u20131938 f\u00fchrte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Ann\u00edn). Er stellte das Rohglas in einem Fabrikneubau in Langendorf her, der mit einem modernen Glasschmelzofen ausgestattet war. Das von S. erzeugte Bleikristall war nicht mehr blaustichig, sondern rein wei\u00df, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflu\u00dfte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n", "source": 159}}, {"model": "metainfo.text", "pk": 47733, "fields": {"kind": 131, "text": "Schell\u00a0Karl, Industrieller. * Langendorf (Dlouh\u00e1 Ves, B\u00f6hmen), 19. 12. 1892; \u2020 ebenda, 2. 6. 1945", "source": 159}}, {"model": "metainfo.text", "pk": 47734, "fields": {"kind": 130, "text": "Stud. 1860\u201365 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Br\u00fccke (s. d.), 1869 Priv.Doz. f\u00fcr die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. f\u00fcr Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegr\u00fcndeten Inst. f\u00fcr Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. f\u00fcr Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte gro\u00dfes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach \u00fcbers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Soci\u00e9t\u00e9 scientifique m\u00e9dicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n", "source": 160}}, {"model": "metainfo.text", "pk": 47735, "fields": {"kind": 131, "text": "Schenk\u00a0Samuel Leopold, Mediziner. * \u00dcrm\u00e9ny (Mojm\u00edrovce, Slowakei), 23. 8. 1840; \u2020 Schwanberg (Stmk.), 17. 8. 1902.", "source": 160}}, {"model": "metainfo.text", "pk": 47746, "fields": {"kind": 130, "text": "Sohn eines Finanzsekr. \u2013 Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869\u201372 an der Wr. ABK bei \u00bfKarl Mayer fort. 1872 \u00fcbersiedelte er nach M\u00fcnchen und wurde 1873 an der dortigen ABK Sch\u00fcler von S\u00e1ndor Wagner. In den Folgejahren arbeitete er als Maler in M\u00fcnchen und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878\u201381 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, sp\u00e4ter w\u00e4hlte er Themen aus der Gegend um den Balaton. 1899\u20131902 hielt er sich wieder in M\u00fcnchen auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften z\u00e4hlt, gewann 1897 den Esterh\u00e1zy-Preis, 1899 den Preis des Ung. Ver. f\u00fcr Bildende K\u00fcnste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u.\u00a0a. Luftspiegelung \u00fcber der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Gal\u00e9ria in Budapest.\n\n", "source": 201}}, {"model": "metainfo.text", "pk": 47747, "fields": {"kind": 131, "text": "T\u00f6lgyessy Art\u00far, Maler. Geb. Szegedin (Szeged, H), 1.\u00a05. 1853; gest. Budapest (H), 2.\u00a02. 1920; r\u00f6m.-kath.", "source": 201}}, {"model": "metainfo.text", "pk": 47748, "fields": {"kind": 130, "text": "S\u00fcdtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T.\u00a0u.\u00a0H. (1728\u20131788) und Josepha Gfn. v. T.\u00a0u.\u00a0H. (1741\u20131819), Cousin des F\u00fcrstbischofs von Trient Peter Vigil Gf. v. T.\u00a0u.\u00a0H. (1776\u20131780), verwandt mit F\u00fcrstbischof \u00bfLeopold Leonhard Gf. v. T.\u00a0u.\u00a0H. \u2013 T. stud. in Passau, Salzburg und Rom Theol. und empfing dort als Mitgl. des Germanicums die Priesterweihe. 1790 wurde er Kanoniker von Trient, 1794 von Salzburg, 1797 Tit.bischof von Iasus und Weihbischof von Trient (Konsekration durch Leopold Leonhard Gf. v. T.\u00a0u.\u00a0H.). Als letzter vom Trienter Domkapitel gew\u00e4hlter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T.\u00a0u.\u00a0H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k.\u00a0Investitur nicht mehr erhalten, da er Anfang 1801 vor den franz\u00f6s. Truppen zun\u00e4chst nach G\u00f6rz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich f\u00fcr den Fortbestand seines Bistums einsetzte. Er k\u00e4mpfte erfolgreich gegen die Pl\u00e4ne K. \u00bfFranz\u2019\u00a0II. (I.), der f\u00fcr Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endg\u00fcltige S\u00e4kularisierung des F\u00fcrstbistums, Kl\u00f6ster wurden aufgel\u00f6st, das Hochstift mit seinen 150.000 Einwohnern \u00d6sterr. zugeordnet. Nach dem Frieden von Pre\u00dfburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zur\u00fcckkehren, wo er in Trient eine Stadtwohnung bezog, da seine f\u00fcrstbisch\u00f6fl. Residenz, das Castello del Buonconsiglio, s\u00e4kularisiert worden war. Die staatl. \u00dcbergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bisch\u00f6fe: T. von Trient, Karl Franz Gf. v. Lodron von Brixen (Bressanone) und Karl Rudolph v. Buol-Schauenstein von Chur. Bes. Protest riefen neben den Eingriffen in das religi\u00f6se Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von di\u00f6zesanen Priesterseminaren hervor. Die drei Bisch\u00f6fe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius\u00a0VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs best\u00e4rkt. W\u00e4hrend Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bez\u00fcge gesperrt; Buol-Schauenstein wurde nach Graub\u00fcnden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerst\u00e4ndige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar w\u00e4hlen. Dieser, Franz v. Spaur, erhielt von T. die geheime Best\u00e4tigung. Die bayer. Ma\u00dfnahmen auf kirchl. Gebiet (Ver\u00e4u\u00dferung gr\u00f6\u00dferer Tle. der bisch\u00f6fl. und Kapiteldotation, S\u00e4kularisierung mehrerer Kl\u00f6ster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zur\u00fcckkehren, schwor dem neuen Machthaber 1810 in Monza den Treueeid und nahm auch am Nationalkonzil in Paris 1811 teil. Obwohl Napoleon ebenso schroff in kirchl. Belange eingriff, duldete T. dessen Klosteraufhebungen, die Einf\u00fchrung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entlie\u00df 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut \u00fcbertragen. Als das Bistum 1814 wieder an \u00d6sterr. fiel, folgte eine Zeit der Konsolidierung, einige Kl\u00f6ster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bisch\u00f6fl. Mensa, das Domkapitel und die Bischofsnomination durch den \u00f6sterr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tats\u00e4chl. in seinem Bistum residieren.\n\n", "source": 200}}, {"model": "metainfo.text", "pk": 47749, "fields": {"kind": 131, "text": "Thun und Hohenstein Emanuel Maria Gf. von, F\u00fcrstbischof. Geb. Trient, Bistum Trient (Trento, I), 28.\u00a03. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9.\u00a010. 1818 (bestattet: Dom zu Trient); r\u00f6m.-kath.", "source": 200}}, {"model": "metainfo.text", "pk": 47754, "fields": {"kind": 130, "text": "Entstammte einer 1779 in den Adelsstand erhobenen Familie. Sohn des Rtm. Wilhelm Kluger Edler v.\u00a0T. und von Johanna Kluger Edler v.\u00a0T., geb. Toth, Vater von vier Kindern, u.\u00a0a. des Juristen und \u00dcbers. Hermann Frh. v.\u00a0T. (geb.\u00a06.\u00a07. 1866; gest. Neapel/Napoli, I, 6.\u00a011. 1911); in 1.\u00a0Ehe mit Rosa Petz (geb. 1843; gest. Wien, 16.\u00a012. 1866), in 2.\u00a0Ehe ab 1870 mit Bibiana Anna Bianca (Blanche) Lucas verheiratet. \u2013 T. besuchte ab 1847 die Theresian. Akad. in Wien, wo er bis zum Abschluss seiner jurid. Stud. 1859 blieb. Danach hielt er sich zu rechtshist. Stud. ein Jahr lang in Berlin auf und trat im April 1861 als Min.-Konzepts-Adjunkt im Min. f\u00fcr Handel und Volkswirtschaft in den \u00f6sterr. Staatsdienst. Hier gelangte er sehr bald in einflussreiche Positionen: Schon Anfang der 1860er-Jahre wurde er unter \u00bfAnton v. Schmerling in das Staatsmin. berufen und der Presseleitung zugeteilt. T., leitender Mitarb. der \u201e\u00d6sterreichischen Wochenschrift\u201c (1865 eingestellt), fungierte ab 1864 als Leiter des Abendbl., ab 1865 als Chefred. der \u201eWiener Zeitung\u201c, die er bis Mitte J\u00e4nner 1871 gem. mit Georg Seuffert f\u00fchrte, und setzte in dieser Position die von \u00bfLeopold Schweitzer begonnenen Reformen fort. Ab 1867 unterstand die Ztg. infolge der Reorganisation des Presseapparats der Leitung von \u00bfFriedrich Ferdinand Gf. Beust, der der Presse weit gr\u00f6\u00dfere Aufmerksamkeit schenkte als seine Vorg\u00e4nger: Er sch\u00e4tzte sowohl T.s au\u00dferordentl. publizist. Begabung wie auch seine umfassende Bildung und v.\u00a0a. sein polit. Verst\u00e4ndnis, wodurch T. noch im selben Jahr zum Min.sekr. avancierte. Er wechselte in die Pr\u00e4sidialsektion des Gem. Min. des \u00c4u\u00dfern und des k.\u00a0Hauses und \u00fcbernahm in seiner neuen Funktion, neben seiner eigentl. T\u00e4tigkeit als Chefred., auch wichtige polit. Auftr\u00e4ge. Im April 1869 erfolgte seine Ernennung zum Sektionsrat und im Februar 1871 die zum HR bzw. Min.rat. W\u00e4hrend seiner T\u00e4tigkeit im Pressdep. (Literar. B\u00fcro) war er u.\u00a0a. Verbindungsmann zum \u201ePester Lloyd\u201c und mit der Einflussnahme auf ma\u00dfgebl. dt. Bll. beauftragt. I.\u00a0d.\u00a0F. wurde T. def. in den Dienst des Gem. Min. des \u00c4u\u00dfern und des k.\u00a0Hauses aufgenommen und \u00fcbernahm im M\u00e4rz 1872 auf Wunsch von \u00bfJulius Gf. Andr\u00e1ssy d.\u00a0\u00c4. das Referat f\u00fcr dt. Angelegenheiten. Daneben stand er dem Min. auch f\u00fcr andere publizist. Aufgaben zur Verf\u00fcgung. Im November 1876 erfolgte seine Ernennung zum ao.\u00a0Gesandten und bevollm\u00e4chtigten Minister. Nach dem R\u00fccktritt Andr\u00e1ssys (1879) r\u00fcckte T. zwar in den Hintergrund, nahm aber weiterhin regelm\u00e4\u00dfig an den (schriftl.) Delegationsverhh. zwischen beiden Reichsh\u00e4lften teil. Im Juni 1880 \u00fcbernahm er f\u00fcr kurze Zeit sowohl die Leitung des Literar. B\u00fcros als auch jene des Informationsb\u00fcros, das mit staatspolizeil. Agenden betraut war. Au\u00dferdem wurde er mit verschiedenen Inspektionsmissionen beauftragt, die ihn u.\u00a0a. nach Rom und Konstantinopel (Istanbul) f\u00fchrten. Im September 1883 wurde er zum Verbindungsmann zwischen Au\u00dfenmin. und Konsular-Akad. ernannt, die mit der Heranbildung des diplomat. Nachwuchses befasst war. T. war ab 1862 Mitgl. des Journalisten- und Schriftstellerver. \u201eConcordia\u201c (1865\u201366 Vorstandsmitgl.). 1868 Orden der Eisernen Krone III.\u00a0Kl., 1878 Kommandeur des Leopold-Ordens, 1883 Gro\u00dfkreuz des Franz Joseph-Ordens, 1879 Erhebung in den Frh.stand.\n\n", "source": 197}}, {"model": "metainfo.text", "pk": 47755, "fields": {"kind": 131, "text": "Teschenberg Ernst Maximilian Frh. von, eigentl. Kluger Frh. von T. Ernst, Journalist und Politiker. Geb. \u00d6denburg (Sopron, H), 21.\u00a05. 1836; gest. Wien, 25.\u00a02. 1886.", "source": 197}}, {"model": "metainfo.text", "pk": 47756, "fields": {"kind": 130, "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2.\u00a0Ehefrau Julia T., geb. Grabowska, Halbbruder von \u00bfWlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von \u00bfLudwig v.\u00a0T. \u2013 T. besuchte das Gymn. in Krakau (Krak\u00f3w) und stud. 1884\u201386 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889\u201393 arbeitete er als Mithrsg. der Z. \u201eKurier Polski\u201c und als Journalist der Z. \u201eTygodnik Ilustrowany\u201c, \u201eKurier Warszawski\u201c und \u201eCzas\u201c; danach war er Sekr. von Adam Krasinski und stud. mit ihm 1896 in Heidelberg. Nach 1896 lebte er in Zakopane und Krakau, ab 1918 in Warschau. T. deb\u00fct. 1886 mit lyr. Prosa und Gelegenheitsdichtung (\u201eIlla\u201c). 1888 gewann er einen Preis der Jagiellonen-Univ. f\u00fcr ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik (\u201eWiersz na uczczenie pamieci Adama Mickiewicza\u201c), und 1889 einen weiteren f\u00fcr eine Hymne auf den Schriftsteller \u00bfJ\u00f3zef Ignacy Kraszewski (\u201eNa czesc Kraszewskiego\u201c). T. galt neben \u00bfJan Kasprowicz als der popul\u00e4rste Dichter der Bewegung Junges Polen und repr\u00e4sentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtb\u00e4ndigen Ged.smlg. \u201ePoezje\u201c (1891\u20131924) erlangte er Anerkennung als bedeutender Lyriker und Autorit\u00e4t der jungpoln. Literatur. T., der sich f\u00fcr Arthur Schopenhauers und Friedrich Nietzsches Phil. begeisterte, schrieb impressionist. Natur- und Stimmungslyrik mit einer Neigung zu Pessimismus und Dekadenz, erot. Ged. und Liebeslyrik sowie Novellen und Romane mit Motiven aus dem zeitgen\u00f6ss. Leben der Boh\u00e8me. 1898 erschien der Roman \u201eAniol smierci\u201c (dt. \u201eDer Todesengel\u201c, 1899), der in dt. \u00dcbers. zuerst als Vorabdruck in der Z. \u201eAus fremden Zungen\u201c erschien, in der T. i.\u00a0d.\u00a0F. weitere Ged. ver\u00f6ff. In der f\u00fcnfb\u00e4ndigen Novellensmlg. \u201eNa skalnym Podhalu\u201c (1903\u201310, dt.sprachige Auswahl unter dem Titel \u201eAus der Tatra\u201c, 1903) verherrlichte T. Land und Leute der Hohen Tatra im Dialekt der Gegend und unter Einbeziehung tradierter Stoffe und Legenden. Bedeutend sind auch seine zwei hist. Tatra-Romane \u201eMaryna z Hrubego\u201c (1910) und \u201eJanosik Nedza Litmanowski\u201c (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. W\u00e4hrend des 1.\u00a0Weltkriegs war T. Hrsg. der Z. \u201ePraca Narodowa\u201c. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zur\u00fcckgezogen, als Dauergast im Warschauer Hotel Europejski. Von dort wurde er von den Deutschen vertrieben und starb in einem Krankenhaus. T., der 1928 den Literaturpreis der Stadt Warschau erhielt, war ab 1921 Pr\u00e4s. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literat\u00f3w Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n", "source": 198}}, {"model": "metainfo.text", "pk": 47757, "fields": {"kind": 131, "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18.\u00a01. 1940; r\u00f6m.-kath.", "source": 198}}, {"model": "metainfo.text", "pk": 47758, "fields": {"kind": 130, "text": "Sohn von \u00bfOskar Karl T. und \u00bfEmma T., Bruder von Wilhelm (genannt Willy) T.-Weckersdorf (geb. Prag, 23. 9. 1879; gest. Salzburg, Sbg., 3. 3. 1968), der sich ebenfalls um die Entwicklung des \u00f6sterr. Pfadfinderwesens verdient machte und nach dem 2. Weltkrieg als Leiter der Ind.abt. der Sbg. Landesregierung fungierte, und von Obst. Oskar (genannt Ossi) T. (geb. Prag, 21. 3. 1881; gest. Innsbruck, Tirol, 19. 4. 1943), der im Heeresmin. t\u00e4tig war und gem. mit seiner j\u00fcd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923\u20131998), Univ.-Prof. f\u00fcr Politikwiss. in Wien. \u2013 T. diente ab 1896 im 3. Tiroler J\u00e4gerrgt. \u201eKaiserj\u00e4ger\u201c, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Milit\u00e4rsachverst\u00e4ndiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des milit\u00e4r. organisierten Knabenhortverbands in der milit\u00e4r.-patriot. Jugenderziehung und -f\u00fcrsorge ein neues Bet\u00e4tigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, \u00fcbertrug er das System der Boy Scouts des engl. Begr\u00fcnders des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gr\u00fcndete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in \u00d6sterr. und die Keimzelle des von ihm initiierten \u00d6sterr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915\u201319 Reichsfeldmeister des Bundes. Aufgrund des Verm\u00f6gens seiner Frau, einer Amerikanerin, konnte \u201ePapa\u201c T. hohe Geldmittel f\u00fcr die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronl\u00e4nder vom \u00d6sterr. Pfadfinderbund wirkte T. 1918\u201320 hauptberufl. als Insp. des Verbands f\u00fcr freiwillige Jugendf\u00fcrsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendf\u00fcrsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und f\u00fcr das Rote Kreuz t\u00e4tig. Da er sich weltanschaul. mit der aufkommenden \u201eb\u00fcndischen\u201c, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zur\u00fcck, blieb aber bis 1923 Bundesfeldmeister im \u00d6sterr. Pfadfinderbund. Er unterst\u00fctzte nunmehr den religi\u00f6sen Einfluss des kath. Klerus auf die Pfadfinder-Jugendarbeit und akzeptierte den Zusammenschluss der innerhalb des Bundes bereits bestehenden kath. Pfadfinderkolonnen zum Ring der St. Georgspfadfinder; 1926 Gr\u00fcndung der kath. Jugendorganisation des \u00d6sterr. Pfadfinderkorps St. Georg, das sich relativ rasch vergr\u00f6\u00dferte. Durch die Auss\u00f6hnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei gro\u00dfe Landg\u00fcter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zur\u00fcck. 1922\u201329 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals h\u00f6chste Pfadfinderausz., den \u201eSilberwolf\u201c. Als nach dem \u201eAnschluss\u201c \u00d6sterr. alle bestehenden Jugendorganisationen aufgel\u00f6st und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in M\u00fcnchen aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die \u00f6sterr. Pfadfinder posthum 1956 ihre h\u00f6chste Ausz., den \u201eSilbernen Steinbock\u201c. T.s Bruder ", "source": 199}}, {"model": "metainfo.text", "pk": 47759, "fields": {"kind": 131, "text": "Teuber Emmerich (genannt Imre), Pfadfinderf\u00fchrer und Offizier. Geb. Prag, B\u00f6hmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; r\u00f6m.-kath.", "source": 199}}, {"model": "metainfo.text", "pk": 47764, "fields": {"kind": 130, "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn sp\u00e4ter in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. \u2013 T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher S\u00e4nger werden. Er stud. 1908\u201310 Klavier, Komposition und Orchesterdirigieren am Hoch\u2019schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm \u00bfLeopold Demuth eine Stimme \u201ewie ein Zwirnsfaden\u201c. Wegen einer Liebelei musste T. nach Freiburg im Breisgau \u00fcbersiedeln, wo er dem Gesangsp\u00e4dagogen Carl Beines begegnete, der sein gro\u00dfes Talent erkannte und ihn ausbildete. T. gab sein Operndeb\u00fct 1913 in Chemnitz als Tamino in Mozarts \u201eZauberfl\u00f6te\u201c und erhielt im selben Jahr ein Engagement an die Dresdner Hofoper, an der er bis 1918 blieb. Er wurde ein gefragter lyr. Tenor, auch da er innerhalb k\u00fcrzester Zeit Partien einzustud. vermochte (Beiname \u201eSOS-Tenor\u201c), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg \u00bfFranz Leh\u00e1r kennen, in dessen sp\u00e4ten Operetten er dann, beginnend mit \u201ePaganini\u201c (Berliner Erstauff. 1926), die m\u00e4nnl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen \u201eT.-Lieder\u201c, die als Schlager gro\u00dfe Popularit\u00e4t erlangten (\u201eDein ist mein ganzes Herz\u201c etc.). Trotz Warnungen, dass er seine Stimme f\u00fcr die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Ber\u00fchmtheit. Fr\u00fch erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der \u00d6ffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Leh\u00e1rs \u201eDas Land des L\u00e4chelns\u201c, eine Rolle, die er \u00fcber 700-mal verk\u00f6rperte. Im selben Jahr kam sein erster Film, \u201eIch glaub\u2019 nie mehr an eine Frau\u201c, in die Kinos. Die auf Dr\u00e4ngen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um gro\u00dfe Summen gebracht. Er stand weiterhin erfolgreich auf Opernb\u00fchnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im M\u00e4rz 1933 von der B\u00fchne des Berliner Admiralspalastes gebuht und auf dem Kurf\u00fcrstendamm von SA-M\u00e4nnern niedergeschlagen worden war, fl\u00fcchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schlie\u00dfl. nach Wien. Hier wurde seine Operette \u201eDer singende Traum\u201c uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in \u201eBlossom Time\u201c einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. K\u00fcnstler zum Star, der sich \u00f6ff. gegen \u00bfAdolf Hitler \u00e4u\u00dferte. Internationale Tourneen f\u00fchrten ihn nach Nord- und S\u00fcdamerika, nach S\u00fcdafrika, Asien und Australien. Nach dem \u201eAnschluss\u201c \u00d6sterr. an das Dt. Reich 1938 lebte er ausschlie\u00dfl. in England (ab 1940 engl. Staatsb\u00fcrger). Er gab Konzerte, die BBC brachte regelm\u00e4\u00dfige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette \u201eOld Chelsea\u201c. An H\u00f6chstgagen und einen aufwendigen Lebensstil gew\u00f6hnt, geriet T. im Exil jedoch in hohe Schulden. Nach Kriegsende trat er wieder international auf, hatte aber deutl. Stimmprobleme. Seinen letzten Auftritt absolv. der an Lungenkrebs Erkrankte Ende September 1947 am Royal Opera House, Covent Garden, als Don Ottavio in Mozarts \u201eDon Giovanni\u201c, wobei er besser denn je gesungen haben soll. T.s Vater ", "source": 196}}, {"model": "metainfo.text", "pk": 47765, "fields": {"kind": 131, "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, S\u00e4nger, Dirigent und Komponist. Geb. Linz (O\u00d6), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 r\u00f6m.-kath.", "source": 196}}, {"model": "metainfo.uri", "pk": 26, "fields": {"uri": "http://sws.geonames.org/3194099/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 26, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 111, "fields": {"uri": "http://sws.geonames.org/3186886/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 133, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 149, "fields": {"uri": "http://sws.geonames.org/2761369/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 183, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 258, "fields": {"uri": "http://sws.geonames.org/3078610/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 327, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 299, "fields": {"uri": "http://sws.geonames.org/3077117/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 384, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 311, "fields": {"uri": "http://sws.geonames.org/3054643/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 637, "fields": {"uri": "http://sws.geonames.org/683506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 831, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 713, "fields": {"uri": "http://sws.geonames.org/2782067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 926, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1062, "fields": {"uri": "http://sws.geonames.org/2950159/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1390, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1089, "fields": {"uri": "http://sws.geonames.org/3071961/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1424, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1112, "fields": {"uri": "http://sws.geonames.org/2781806/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1291, "fields": {"uri": "http://sws.geonames.org/2781629/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1701, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1304, "fields": {"uri": "http://sws.geonames.org/2907669/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1718, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1511, "fields": {"uri": "http://sws.geonames.org/684039/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2006, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1561, "fields": {"uri": "http://sws.geonames.org/3060972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2072, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1571, "fields": {"uri": "http://sws.geonames.org/3078577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2085, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1625, "fields": {"uri": "http://sws.geonames.org/3081368/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2161, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1631, "fields": {"uri": "http://sws.geonames.org/3181550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2170, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1651, "fields": {"uri": "http://sws.geonames.org/3074967/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2197, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1711, "fields": {"uri": "http://sws.geonames.org/711416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2281, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1856, "fields": {"uri": "http://sws.geonames.org/3435910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2489, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1939, "fields": {"uri": "http://sws.geonames.org/3181215/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2602, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2121, "fields": {"uri": "http://sws.geonames.org/710719/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2854, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2302, "fields": {"uri": "http://sws.geonames.org/3101321/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3105, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2344, "fields": {"uri": "http://sws.geonames.org/681290/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3162, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3021, "fields": {"uri": "http://sws.geonames.org/2934486/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4096, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3151, "fields": {"uri": "http://sws.geonames.org/3063762/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4269, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3518, "fields": {"uri": "http://sws.geonames.org/2778067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4767, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3599, "fields": {"uri": "http://sws.geonames.org/2779275/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4877, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3912, "fields": {"uri": "http://sws.geonames.org/677410/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5294, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3923, "fields": {"uri": "http://sws.geonames.org/2873574/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5308, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4052, "fields": {"uri": "http://sws.geonames.org/3175986/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5478, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4206, "fields": {"uri": "http://sws.geonames.org/3173577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5691, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4249, "fields": {"uri": "http://sws.geonames.org/2777972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5749, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4440, "fields": {"uri": "http://sws.geonames.org/3063197/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6004, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4676, "fields": {"uri": "http://sws.geonames.org/2910831/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6324, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4954, "fields": {"uri": "http://sws.geonames.org/2775220/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6700, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5134, "fields": {"uri": "http://sws.geonames.org/3199302/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6947, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5507, "fields": {"uri": "http://sws.geonames.org/3097333/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5631, "fields": {"uri": "http://sws.geonames.org/2772649/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7622, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5897, "fields": {"uri": "http://sws.geonames.org/2892518/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7986, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6257, "fields": {"uri": "http://sws.geonames.org/2773913/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8482, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6486, "fields": {"uri": "http://sws.geonames.org/2885679/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8798, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6838, "fields": {"uri": "http://sws.geonames.org/2773300/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9287, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6961, "fields": {"uri": "http://sws.geonames.org/3072358/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9455, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6977, "fields": {"uri": "http://sws.geonames.org/3196359/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7169, "fields": {"uri": "http://sws.geonames.org/702550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9735, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7375, "fields": {"uri": "http://sws.geonames.org/2772400/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10015, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7554, "fields": {"uri": "http://sws.geonames.org/2643743/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10265, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7936, "fields": {"uri": "http://sws.geonames.org/3195506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10793, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8262, "fields": {"uri": "http://sws.geonames.org/3064919/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11238, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8489, "fields": {"uri": "http://sws.geonames.org/3070372/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11556, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8668, "fields": {"uri": "http://sws.geonames.org/2867714/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11799, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8966, "fields": {"uri": "http://sws.geonames.org/3090436/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12211, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9363, "fields": {"uri": "http://sws.geonames.org/2990440/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12758, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9718, "fields": {"uri": "http://sws.geonames.org/3045190/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13253, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9810, "fields": {"uri": "http://sws.geonames.org/3069011/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13382, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10050, "fields": {"uri": "http://sws.geonames.org/2988507/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13714, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10247, "fields": {"uri": "http://sws.geonames.org/2854561/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13987, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10697, "fields": {"uri": "http://sws.geonames.org/3067696/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 14608, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11885, "fields": {"uri": "http://sws.geonames.org/3057304/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16242, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11932, "fields": {"uri": "http://sws.geonames.org/3167905/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16310, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12137, "fields": {"uri": "http://sws.geonames.org/3065118/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16594, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12332, "fields": {"uri": "http://sws.geonames.org/2765515/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16864, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13419, "fields": {"uri": "http://sws.geonames.org/3083848/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18374, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13438, "fields": {"uri": "http://sws.geonames.org/715429/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14028, "fields": {"uri": "http://sws.geonames.org/3165243/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19215, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14297, "fields": {"uri": "http://sws.geonames.org/3058653/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19599, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14983, "fields": {"uri": "http://sws.geonames.org/756135/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20549, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15060, "fields": {"uri": "http://sws.geonames.org/792794/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20659, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15214, "fields": {"uri": "http://sws.geonames.org/2782058/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20872, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15297, "fields": {"uri": "http://sws.geonames.org/2633767/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20988, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15896, "fields": {"uri": "http://sws.geonames.org/3064454/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 21818, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16165, "fields": {"uri": "http://sws.geonames.org/3074331/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22216, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16195, "fields": {"uri": "http://sws.geonames.org/2764112/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22259, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16238, "fields": {"uri": "http://sws.geonames.org/2762908/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22322, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16260, "fields": {"uri": "http://sws.geonames.org/2659297/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22354, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16342, "fields": {"uri": "http://sws.geonames.org/2953416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16355, "fields": {"uri": "http://sws.geonames.org/2772910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22494, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16377, "fields": {"uri": "http://sws.geonames.org/2660718/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22526, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16386, "fields": {"uri": "http://sws.geonames.org/684490/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22545, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16392, "fields": {"uri": "http://sws.geonames.org/3092742/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22558, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16398, "fields": {"uri": "http://sws.geonames.org/3164453/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22570, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19098, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24869", "domain": "apis default", "rdf_link": "", "entity": 24869, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19116, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24898", "domain": "apis default", "rdf_link": "", "entity": 24898, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19117, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24899", "domain": "apis default", "rdf_link": "", "entity": 24899, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19118, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24900", "domain": "apis default", "rdf_link": "", "entity": 24900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19123, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24908", "domain": "apis default", "rdf_link": "", "entity": 24908, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19124, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24909", "domain": "apis default", "rdf_link": "", "entity": 24909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19125, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24910", "domain": "apis default", "rdf_link": "", "entity": 24910, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19126, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24911", "domain": "apis default", "rdf_link": "", "entity": 24911, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19219, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25012", "domain": "apis default", "rdf_link": "", "entity": 25012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19232, "fields": {"uri": "http://d-nb.info/gnd/4023349-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19233, "fields": {"uri": "http://d-nb.info/gnd/4027096-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6700, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19237, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25035", "domain": "apis default", "rdf_link": "", "entity": 25035, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19242, "fields": {"uri": "http://d-nb.info/gnd/4044660-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19246, "fields": {"uri": "http://d-nb.info/gnd/4127793-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 11799, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19250, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25059", "domain": "apis default", "rdf_link": "", "entity": 25059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19251, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25060", "domain": "apis default", "rdf_link": "", "entity": 25060, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19273, "fields": {"uri": "http://d-nb.info/gnd/4008216-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19304, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25143", "domain": "apis default", "rdf_link": "", "entity": 25143, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19323, "fields": {"uri": "http://d-nb.info/gnd/4076310-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 14608, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19350, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25186", "domain": "apis default", "rdf_link": "", "entity": 25186, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19351, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25187", "domain": "apis default", "rdf_link": "", "entity": 25187, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19352, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25188", "domain": "apis default", "rdf_link": "", "entity": 25188, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19353, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25189", "domain": "apis default", "rdf_link": "", "entity": 25189, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19360, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25199", "domain": "apis default", "rdf_link": "", "entity": 25199, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19361, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25200", "domain": "apis default", "rdf_link": "", "entity": 25200, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25212", "domain": "apis default", "rdf_link": "", "entity": 25212, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25213", "domain": "apis default", "rdf_link": "", "entity": 25213, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19406, "fields": {"uri": "http://d-nb.info/gnd/4008684-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19447, "fields": {"uri": "http://d-nb.info/gnd/4038688-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 5691, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19459, "fields": {"uri": "http://d-nb.info/gnd/4265379-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1454, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19480, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25395", "domain": "apis default", "rdf_link": "", "entity": 25395, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19481, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25396", "domain": "apis default", "rdf_link": "", "entity": 25396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19482, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25397", "domain": "apis default", "rdf_link": "", "entity": 25397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19483, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25398", "domain": "apis default", "rdf_link": "", "entity": 25398, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19486, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25401", "domain": "apis default", "rdf_link": "", "entity": 25401, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19487, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25402", "domain": "apis default", "rdf_link": "", "entity": 25402, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19490, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25405", "domain": "apis default", "rdf_link": "", "entity": 25405, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19498, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25412", "domain": "apis default", "rdf_link": "", "entity": 25412, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19499, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25413", "domain": "apis default", "rdf_link": "", "entity": 25413, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19500, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25414", "domain": "apis default", "rdf_link": "", "entity": 25414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19501, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25415", "domain": "apis default", "rdf_link": "", "entity": 25415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19502, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25416", "domain": "apis default", "rdf_link": "", "entity": 25416, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19503, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25417", "domain": "apis default", "rdf_link": "", "entity": 25417, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19504, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25418", "domain": "apis default", "rdf_link": "", "entity": 25418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19505, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25419", "domain": "apis default", "rdf_link": "", "entity": 25419, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19506, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25420", "domain": "apis default", "rdf_link": "", "entity": 25420, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19507, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25421", "domain": "apis default", "rdf_link": "", "entity": 25421, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19583, "fields": {"uri": "http://d-nb.info/gnd/4021912-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25589", "domain": "apis default", "rdf_link": "", "entity": 25589, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19639, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25626", "domain": "apis default", "rdf_link": "", "entity": 25626, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19640, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25627", "domain": "apis default", "rdf_link": "", "entity": 25627, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19641, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25628", "domain": "apis default", "rdf_link": "", "entity": 25628, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19642, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25629", "domain": "apis default", "rdf_link": "", "entity": 25629, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19643, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25630", "domain": "apis default", "rdf_link": "", "entity": 25630, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19644, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25631", "domain": "apis default", "rdf_link": "", "entity": 25631, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19645, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25632", "domain": "apis default", "rdf_link": "", "entity": 25632, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19646, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25633", "domain": "apis default", "rdf_link": "", "entity": 25633, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19647, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25634", "domain": "apis default", "rdf_link": "", "entity": 25634, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19648, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25635", "domain": "apis default", "rdf_link": "", "entity": 25635, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19665, "fields": {"uri": "http://d-nb.info/gnd/4075643-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13382, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19718, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25767", "domain": "apis default", "rdf_link": "", "entity": 25767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19719, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25768", "domain": "apis default", "rdf_link": "", "entity": 25768, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19720, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25769", "domain": "apis default", "rdf_link": "", "entity": 25769, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19721, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25770", "domain": "apis default", "rdf_link": "", "entity": 25770, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19722, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25771", "domain": "apis default", "rdf_link": "", "entity": 25771, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19723, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25772", "domain": "apis default", "rdf_link": "", "entity": 25772, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19724, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25773", "domain": "apis default", "rdf_link": "", "entity": 25773, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 20488, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/27245", "domain": "apis default", "rdf_link": "", "entity": 27245, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 32623, "fields": {"uri": "http://d-nb.info/gnd/118931482", "domain": "", "rdf_link": "", "entity": 46414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 39250, "fields": {"uri": "http://d-nb.info/gnd/118785028", "domain": "", "rdf_link": "", "entity": 56248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 43650, "fields": {"uri": "http://d-nb.info/gnd/118573527", "domain": "", "rdf_link": "", "entity": 62757, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60547, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/88219", "domain": "apis default", "rdf_link": "", "entity": 88219, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60980, "fields": {"uri": "http://d-nb.info/gnd/118508288", "domain": "", "rdf_link": "", "entity": 88902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 62984, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/92412", "domain": "apis default", "rdf_link": "", "entity": 92412, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63085, "fields": {"uri": "http://d-nb.info/gnd/118677667", "domain": "", "rdf_link": "", "entity": 92603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63174, "fields": {"uri": "http://d-nb.info/gnd/118505955", "domain": "", "rdf_link": "", "entity": 93003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63178, "fields": {"uri": "http://d-nb.info/gnd/119061201", "domain": "", "rdf_link": "", "entity": 93009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63180, "fields": {"uri": "http://d-nb.info/gnd/128578998", "domain": "", "rdf_link": "", "entity": 93012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63182, "fields": {"uri": "http://d-nb.info/gnd/143930567", "domain": "", "rdf_link": "", "entity": 93015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63184, "fields": {"uri": "http://d-nb.info/gnd/136186289", "domain": "", "rdf_link": "", "entity": 93018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63186, "fields": {"uri": "http://d-nb.info/gnd/136186343", "domain": "", "rdf_link": "", "entity": 93021, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63188, "fields": {"uri": "http://d-nb.info/gnd/140067302", "domain": "", "rdf_link": "", "entity": 93024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63189, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93025", "domain": "apis default", "rdf_link": "", "entity": 93025, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63191, "fields": {"uri": "http://d-nb.info/gnd/116539585", "domain": "", "rdf_link": "", "entity": 93028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63193, "fields": {"uri": "http://d-nb.info/gnd/11666827X", "domain": "", "rdf_link": "", "entity": 93031, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63195, "fields": {"uri": "http://d-nb.info/gnd/116689234", "domain": "", "rdf_link": "", "entity": 93034, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63196, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93035", "domain": "apis default", "rdf_link": "", "entity": 93035, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63202, "fields": {"uri": "http://d-nb.info/gnd/130579122", "domain": "", "rdf_link": "", "entity": 93044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63204, "fields": {"uri": "http://d-nb.info/gnd/143681761", "domain": "", "rdf_link": "", "entity": 93047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63206, "fields": {"uri": "http://d-nb.info/gnd/117649953", "domain": "", "rdf_link": "", "entity": 93050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63207, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93051", "domain": "apis default", "rdf_link": "", "entity": 93051, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63210, "fields": {"uri": "http://d-nb.info/gnd/130132098", "domain": "", "rdf_link": "", "entity": 93056, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63212, "fields": {"uri": "http://d-nb.info/gnd/143053272", "domain": "", "rdf_link": "", "entity": 93059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63213, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93060", "domain": "apis default", "rdf_link": "", "entity": 93060, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63216, "fields": {"uri": "http://d-nb.info/gnd/118817418", "domain": "", "rdf_link": "", "entity": 93065, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63218, "fields": {"uri": "http://d-nb.info/gnd/135697719", "domain": "", "rdf_link": "", "entity": 93068, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63220, "fields": {"uri": "http://d-nb.info/gnd/118524283", "domain": "", "rdf_link": "", "entity": 93071, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63222, "fields": {"uri": "http://d-nb.info/gnd/116070935", "domain": "", "rdf_link": "", "entity": 93074, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63223, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93075", "domain": "apis default", "rdf_link": "", "entity": 93075, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63261, "fields": {"uri": "http://d-nb.info/gnd/1012030806", "domain": "", "rdf_link": "", "entity": 93136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63385, "fields": {"uri": "http://d-nb.info/gnd/117736791", "domain": "", "rdf_link": "", "entity": 93328, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63391, "fields": {"uri": "http://d-nb.info/gnd/1019267925", "domain": "", "rdf_link": "", "entity": 93337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63401, "fields": {"uri": "http://d-nb.info/gnd/136782086", "domain": "", "rdf_link": "", "entity": 93352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63411, "fields": {"uri": "http://d-nb.info/gnd/1018979573", "domain": "", "rdf_link": "", "entity": 93366, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63413, "fields": {"uri": "http://d-nb.info/gnd/1019359811", "domain": "", "rdf_link": "", "entity": 93369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63419, "fields": {"uri": "http://d-nb.info/gnd/117634816", "domain": "", "rdf_link": "", "entity": 93378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63420, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93379", "domain": "apis default", "rdf_link": "", "entity": 93379, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63425, "fields": {"uri": "http://d-nb.info/gnd/116907525", "domain": "", "rdf_link": "", "entity": 93387, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63429, "fields": {"uri": "http://d-nb.info/gnd/116856246", "domain": "", "rdf_link": "", "entity": 93393, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63431, "fields": {"uri": "http://d-nb.info/gnd/119334429", "domain": "", "rdf_link": "", "entity": 93396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63432, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93397", "domain": "apis default", "rdf_link": "", "entity": 93397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63434, "fields": {"uri": "http://d-nb.info/gnd/118806025", "domain": "", "rdf_link": "", "entity": 93400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63440, "fields": {"uri": "http://d-nb.info/gnd/1018666664", "domain": "", "rdf_link": "", "entity": 93409, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63441, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93410", "domain": "apis default", "rdf_link": "", "entity": 93410, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63444, "fields": {"uri": "http://d-nb.info/gnd/1014451833", "domain": "", "rdf_link": "", "entity": 93415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63446, "fields": {"uri": "http://d-nb.info/gnd/117612308", "domain": "", "rdf_link": "", "entity": 93418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63462, "fields": {"uri": "http://d-nb.info/gnd/118813919", "domain": "", "rdf_link": "", "entity": 93442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63464, "fields": {"uri": "http://d-nb.info/gnd/1023121581", "domain": "", "rdf_link": "", "entity": 93445, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63466, "fields": {"uri": "http://d-nb.info/gnd/119065932", "domain": "", "rdf_link": "", "entity": 93448, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63467, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93449", "domain": "apis default", "rdf_link": "", "entity": 93449, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63480, "fields": {"uri": "http://d-nb.info/gnd/1021208493", "domain": "", "rdf_link": "", "entity": 93469, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63488, "fields": {"uri": "http://d-nb.info/gnd/137341768", "domain": "", "rdf_link": "", "entity": 93481, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63490, "fields": {"uri": "http://d-nb.info/gnd/1020698381", "domain": "", "rdf_link": "", "entity": 93484, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63492, "fields": {"uri": "http://d-nb.info/gnd/1020698055", "domain": "", "rdf_link": "", "entity": 93487, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63508, "fields": {"uri": "http://d-nb.info/gnd/118732277", "domain": "", "rdf_link": "", "entity": 93510, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63510, "fields": {"uri": "http://d-nb.info/gnd/10788464X", "domain": "", "rdf_link": "", "entity": 93513, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63512, "fields": {"uri": "http://d-nb.info/gnd/134474937", "domain": "", "rdf_link": "", "entity": 93516, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63528, "fields": {"uri": "http://d-nb.info/gnd/13185545X", "domain": "", "rdf_link": "", "entity": 93540, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63532, "fields": {"uri": "http://d-nb.info/gnd/1024716082", "domain": "", "rdf_link": "", "entity": 93546, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63542, "fields": {"uri": "http://d-nb.info/gnd/1026382211", "domain": "", "rdf_link": "", "entity": 93561, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63543, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93562", "domain": "apis default", "rdf_link": "", "entity": 93562, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63550, "fields": {"uri": "http://d-nb.info/gnd/102588485X", "domain": "", "rdf_link": "", "entity": 93573, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63560, "fields": {"uri": "http://d-nb.info/gnd/130027022", "domain": "", "rdf_link": "", "entity": 93588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63568, "fields": {"uri": "http://d-nb.info/gnd/117687030", "domain": "", "rdf_link": "", "entity": 93600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63574, "fields": {"uri": "http://d-nb.info/gnd/122897897", "domain": "", "rdf_link": "", "entity": 93609, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63575, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93610", "domain": "apis default", "rdf_link": "", "entity": 93610, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63578, "fields": {"uri": "http://d-nb.info/gnd/139593128", "domain": "", "rdf_link": "", "entity": 93615, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63594, "fields": {"uri": "http://d-nb.info/gnd/139112200", "domain": "", "rdf_link": "", "entity": 93639, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63596, "fields": {"uri": "http://d-nb.info/gnd/130427012", "domain": "", "rdf_link": "", "entity": 93642, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63598, "fields": {"uri": "http://d-nb.info/gnd/117522139", "domain": "", "rdf_link": "", "entity": 93645, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63602, "fields": {"uri": "http://d-nb.info/gnd/1027427839", "domain": "", "rdf_link": "", "entity": 93651, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63604, "fields": {"uri": "http://d-nb.info/gnd/127691979", "domain": "", "rdf_link": "", "entity": 93654, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63605, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93657", "domain": "apis default", "rdf_link": "", "entity": 93657, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63606, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93658", "domain": "apis default", "rdf_link": "", "entity": 93658, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63608, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93663", "domain": "apis default", "rdf_link": "", "entity": 93663, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63613, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93678", "domain": "apis default", "rdf_link": "", "entity": 93678, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93684", "domain": "apis default", "rdf_link": "", "entity": 93684, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63627, "fields": {"uri": "http://d-nb.info/gnd/123215374", "domain": "", "rdf_link": "", "entity": 93702, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63629, "fields": {"uri": "http://d-nb.info/gnd/12899620X", "domain": "", "rdf_link": "", "entity": 93705, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63635, "fields": {"uri": "http://d-nb.info/gnd/1035683431", "domain": "", "rdf_link": "", "entity": 93714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63636, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93715", "domain": "apis default", "rdf_link": "", "entity": 93715, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63657, "fields": {"uri": "http://d-nb.info/gnd/1034850962", "domain": "", "rdf_link": "", "entity": 93748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63658, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93749", "domain": "apis default", "rdf_link": "", "entity": 93749, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63678, "fields": {"uri": "http://d-nb.info/gnd/135612411", "domain": "", "rdf_link": "", "entity": 93779, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63682, "fields": {"uri": "http://d-nb.info/gnd/1033824674", "domain": "", "rdf_link": "", "entity": 93785, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63686, "fields": {"uri": "http://d-nb.info/gnd/133833348", "domain": "", "rdf_link": "", "entity": 93791, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63692, "fields": {"uri": "http://d-nb.info/gnd/103334690X", "domain": "", "rdf_link": "", "entity": 93800, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63694, "fields": {"uri": "http://d-nb.info/gnd/128900059", "domain": "", "rdf_link": "", "entity": 93803, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63695, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93804", "domain": "apis default", "rdf_link": "", "entity": 93804, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63698, "fields": {"uri": "http://d-nb.info/gnd/1033469084", "domain": "", "rdf_link": "", "entity": 93809, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63702, "fields": {"uri": "http://d-nb.info/gnd/117409669", "domain": "", "rdf_link": "", "entity": 93815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63704, "fields": {"uri": "http://d-nb.info/gnd/1033342483", "domain": "", "rdf_link": "", "entity": 93818, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63716, "fields": {"uri": "http://d-nb.info/gnd/134516001", "domain": "", "rdf_link": "", "entity": 93836, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63718, "fields": {"uri": "http://d-nb.info/gnd/1019536594", "domain": "", "rdf_link": "", "entity": 93839, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63728, "fields": {"uri": "http://d-nb.info/gnd/103283160X", "domain": "", "rdf_link": "", "entity": 93854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63729, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93855", "domain": "apis default", "rdf_link": "", "entity": 93855, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63734, "fields": {"uri": "http://d-nb.info/gnd/103223718X", "domain": "", "rdf_link": "", "entity": 93863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63736, "fields": {"uri": "http://d-nb.info/gnd/118610643", "domain": "", "rdf_link": "", "entity": 93866, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63744, "fields": {"uri": "http://d-nb.info/gnd/1032220473", "domain": "", "rdf_link": "", "entity": 93878, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63745, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93879", "domain": "apis default", "rdf_link": "", "entity": 93879, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63753, "fields": {"uri": "http://d-nb.info/gnd/1031937358", "domain": "", "rdf_link": "", "entity": 93891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63755, "fields": {"uri": "http://d-nb.info/gnd/1031946101", "domain": "", "rdf_link": "", "entity": 93894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63759, "fields": {"uri": "http://d-nb.info/gnd/116848693", "domain": "", "rdf_link": "", "entity": 93900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63761, "fields": {"uri": "http://d-nb.info/gnd/103169420X", "domain": "", "rdf_link": "", "entity": 93903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63765, "fields": {"uri": "http://d-nb.info/gnd/137648588", "domain": "", "rdf_link": "", "entity": 93909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63773, "fields": {"uri": "http://d-nb.info/gnd/116816961", "domain": "", "rdf_link": "", "entity": 93921, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63781, "fields": {"uri": "http://d-nb.info/gnd/118759671", "domain": "", "rdf_link": "", "entity": 93933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63782, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93934", "domain": "apis default", "rdf_link": "", "entity": 93934, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63784, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93937", "domain": "apis default", "rdf_link": "", "entity": 93937, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63786, "fields": {"uri": "http://d-nb.info/gnd/103056423X", "domain": "", "rdf_link": "", "entity": 93940, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63790, "fields": {"uri": "http://d-nb.info/gnd/1030283044", "domain": "", "rdf_link": "", "entity": 93946, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63796, "fields": {"uri": "http://d-nb.info/gnd/1031146539", "domain": "", "rdf_link": "", "entity": 93955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63798, "fields": {"uri": "http://d-nb.info/gnd/139576126", "domain": "", "rdf_link": "", "entity": 93958, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63800, "fields": {"uri": "http://d-nb.info/gnd/129263761", "domain": "", "rdf_link": "", "entity": 93961, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63802, "fields": {"uri": "http://d-nb.info/gnd/121246736", "domain": "", "rdf_link": "", "entity": 93964, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63804, "fields": {"uri": "http://d-nb.info/gnd/1029738556", "domain": "", "rdf_link": "", "entity": 93967, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63806, "fields": {"uri": "http://d-nb.info/gnd/1029748209", "domain": "", "rdf_link": "", "entity": 93970, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63815, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93988", "domain": "apis default", "rdf_link": "", "entity": 93988, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63816, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93991", "domain": "apis default", "rdf_link": "", "entity": 93991, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63821, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94003", "domain": "apis default", "rdf_link": "", "entity": 94003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63822, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94006", "domain": "apis default", "rdf_link": "", "entity": 94006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63823, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94009", "domain": "apis default", "rdf_link": "", "entity": 94009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63826, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94018", "domain": "apis default", "rdf_link": "", "entity": 94018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63865, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94102", "domain": "apis default", "rdf_link": "", "entity": 94102, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63866, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94103", "domain": "apis default", "rdf_link": "", "entity": 94103, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63867, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94104", "domain": "apis default", "rdf_link": "", "entity": 94104, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63868, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94105", "domain": "apis default", "rdf_link": "", "entity": 94105, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63888, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94120", "domain": "apis default", "rdf_link": "", "entity": 94120, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63889, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94121", "domain": "apis default", "rdf_link": "", "entity": 94121, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63890, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94122", "domain": "apis default", "rdf_link": "", "entity": 94122, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63891, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94123", "domain": "apis default", "rdf_link": "", "entity": 94123, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63892, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94124", "domain": "apis default", "rdf_link": "", "entity": 94124, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63893, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94125", "domain": "apis default", "rdf_link": "", "entity": 94125, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63894, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94126", "domain": "apis default", "rdf_link": "", "entity": 94126, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63895, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94127", "domain": "apis default", "rdf_link": "", "entity": 94127, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63896, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94128", "domain": "apis default", "rdf_link": "", "entity": 94128, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63897, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94129", "domain": "apis default", "rdf_link": "", "entity": 94129, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63900, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94131", "domain": "apis default", "rdf_link": "", "entity": 94131, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63901, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94132", "domain": "apis default", "rdf_link": "", "entity": 94132, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63902, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94133", "domain": "apis default", "rdf_link": "", "entity": 94133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63903, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94134", "domain": "apis default", "rdf_link": "", "entity": 94134, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63904, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94135", "domain": "apis default", "rdf_link": "", "entity": 94135, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63905, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94136", "domain": "apis default", "rdf_link": "", "entity": 94136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63906, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94137", "domain": "apis default", "rdf_link": "", "entity": 94137, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94138", "domain": "apis default", "rdf_link": "", "entity": 94138, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63908, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94139", "domain": "apis default", "rdf_link": "", "entity": 94139, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63909, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94140", "domain": "apis default", "rdf_link": "", "entity": 94140, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63910, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94141", "domain": "apis default", "rdf_link": "", "entity": 94141, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63956, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94247", "domain": "apis default", "rdf_link": "", "entity": 94247, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63957, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94248", "domain": "apis default", "rdf_link": "", "entity": 94248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63958, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94249", "domain": "apis default", "rdf_link": "", "entity": 94249, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63959, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94250", "domain": "apis default", "rdf_link": "", "entity": 94250, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63960, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94251", "domain": "apis default", "rdf_link": "", "entity": 94251, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63999, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94307", "domain": "apis default", "rdf_link": "", "entity": 94307, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64000, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94308", "domain": "apis default", "rdf_link": "", "entity": 94308, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64001, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94309", "domain": "apis default", "rdf_link": "", "entity": 94309, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64002, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94310", "domain": "apis default", "rdf_link": "", "entity": 94310, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64003, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94311", "domain": "apis default", "rdf_link": "", "entity": 94311, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64004, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94312", "domain": "apis default", "rdf_link": "", "entity": 94312, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64005, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94313", "domain": "apis default", "rdf_link": "", "entity": 94313, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64006, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94314", "domain": "apis default", "rdf_link": "", "entity": 94314, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64007, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94315", "domain": "apis default", "rdf_link": "", "entity": 94315, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94323", "domain": "apis default", "rdf_link": "", "entity": 94323, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64013, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94324", "domain": "apis default", "rdf_link": "", "entity": 94324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64030, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94351", "domain": "apis default", "rdf_link": "", "entity": 94351, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64031, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94352", "domain": "apis default", "rdf_link": "", "entity": 94352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64032, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94353", "domain": "apis default", "rdf_link": "", "entity": 94353, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64033, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94354", "domain": "apis default", "rdf_link": "", "entity": 94354, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64034, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94355", "domain": "apis default", "rdf_link": "", "entity": 94355, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64035, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94356", "domain": "apis default", "rdf_link": "", "entity": 94356, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64036, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94357", "domain": "apis default", "rdf_link": "", "entity": 94357, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64037, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94358", "domain": "apis default", "rdf_link": "", "entity": 94358, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64038, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94359", "domain": "apis default", "rdf_link": "", "entity": 94359, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64039, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94360", "domain": "apis default", "rdf_link": "", "entity": 94360, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64040, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94361", "domain": "apis default", "rdf_link": "", "entity": 94361, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64041, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94362", "domain": "apis default", "rdf_link": "", "entity": 94362, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64084, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94433", "domain": "apis default", "rdf_link": "", "entity": 94433, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64085, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94434", "domain": "apis default", "rdf_link": "", "entity": 94434, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64086, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94435", "domain": "apis default", "rdf_link": "", "entity": 94435, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64087, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94436", "domain": "apis default", "rdf_link": "", "entity": 94436, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64088, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94437", "domain": "apis default", "rdf_link": "", "entity": 94437, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64089, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94438", "domain": "apis default", "rdf_link": "", "entity": 94438, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64090, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94439", "domain": "apis default", "rdf_link": "", "entity": 94439, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64091, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94440", "domain": "apis default", "rdf_link": "", "entity": 94440, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64092, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94441", "domain": "apis default", "rdf_link": "", "entity": 94441, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64093, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94442", "domain": "apis default", "rdf_link": "", "entity": 94442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64139, "fields": {"uri": "http://d-nb.info/gnd/4074335-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10265, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64175, "fields": {"uri": "http://d-nb.info/gnd/4035304-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64185, "fields": {"uri": "http://d-nb.info/gnd/4108914-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64201, "fields": {"uri": "http://d-nb.info/gnd/4008858-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64255, "fields": {"uri": "http://d-nb.info/gnd/4010833-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64261, "fields": {"uri": "http://d-nb.info/gnd/4073953-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9475, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64271, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94822", "domain": "apis default", "rdf_link": "", "entity": 94822, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64272, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94823", "domain": "apis default", "rdf_link": "", "entity": 94823, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64273, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94824", "domain": "apis default", "rdf_link": "", "entity": 94824, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64274, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94825", "domain": "apis default", "rdf_link": "", "entity": 94825, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64275, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94826", "domain": "apis default", "rdf_link": "", "entity": 94826, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64276, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94827", "domain": "apis default", "rdf_link": "", "entity": 94827, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64277, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94828", "domain": "apis default", "rdf_link": "", "entity": 94828, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64278, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94829", "domain": "apis default", "rdf_link": "", "entity": 94829, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64279, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94830", "domain": "apis default", "rdf_link": "", "entity": 94830, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64280, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94831", "domain": "apis default", "rdf_link": "", "entity": 94831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64318, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94885", "domain": "apis default", "rdf_link": "", "entity": 94885, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64319, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94886", "domain": "apis default", "rdf_link": "", "entity": 94886, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64320, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94887", "domain": "apis default", "rdf_link": "", "entity": 94887, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64321, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94888", "domain": "apis default", "rdf_link": "", "entity": 94888, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64322, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94889", "domain": "apis default", "rdf_link": "", "entity": 94889, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64323, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94890", "domain": "apis default", "rdf_link": "", "entity": 94890, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64324, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94891", "domain": "apis default", "rdf_link": "", "entity": 94891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64325, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94892", "domain": "apis default", "rdf_link": "", "entity": 94892, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64326, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94893", "domain": "apis default", "rdf_link": "", "entity": 94893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64327, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94894", "domain": "apis default", "rdf_link": "", "entity": 94894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64328, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94895", "domain": "apis default", "rdf_link": "", "entity": 94895, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64329, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94896", "domain": "apis default", "rdf_link": "", "entity": 94896, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64330, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94897", "domain": "apis default", "rdf_link": "", "entity": 94897, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64331, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94898", "domain": "apis default", "rdf_link": "", "entity": 94898, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64332, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94899", "domain": "apis default", "rdf_link": "", "entity": 94899, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64333, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94900", "domain": "apis default", "rdf_link": "", "entity": 94900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64334, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94901", "domain": "apis default", "rdf_link": "", "entity": 94901, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64335, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94902", "domain": "apis default", "rdf_link": "", "entity": 94902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64336, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94903", "domain": "apis default", "rdf_link": "", "entity": 94903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64337, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94904", "domain": "apis default", "rdf_link": "", "entity": 94904, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64387, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95024", "domain": "apis default", "rdf_link": "", "entity": 95024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64388, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95025", "domain": "apis default", "rdf_link": "", "entity": 95025, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64389, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95026", "domain": "apis default", "rdf_link": "", "entity": 95026, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64390, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95027", "domain": "apis default", "rdf_link": "", "entity": 95027, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64391, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95028", "domain": "apis default", "rdf_link": "", "entity": 95028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64392, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95029", "domain": "apis default", "rdf_link": "", "entity": 95029, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64393, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95030", "domain": "apis default", "rdf_link": "", "entity": 95030, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64401, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95043", "domain": "apis default", "rdf_link": "", "entity": 95043, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64402, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95044", "domain": "apis default", "rdf_link": "", "entity": 95044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64403, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95045", "domain": "apis default", "rdf_link": "", "entity": 95045, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64404, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95046", "domain": "apis default", "rdf_link": "", "entity": 95046, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64405, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95047", "domain": "apis default", "rdf_link": "", "entity": 95047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64406, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95048", "domain": "apis default", "rdf_link": "", "entity": 95048, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64407, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95049", "domain": "apis default", "rdf_link": "", "entity": 95049, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64408, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95050", "domain": "apis default", "rdf_link": "", "entity": 95050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64409, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95051", "domain": "apis default", "rdf_link": "", "entity": 95051, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64410, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95052", "domain": "apis default", "rdf_link": "", "entity": 95052, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64411, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95053", "domain": "apis default", "rdf_link": "", "entity": 95053, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64412, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95054", "domain": "apis default", "rdf_link": "", "entity": 95054, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64443, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95123", "domain": "apis default", "rdf_link": "", "entity": 95123, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64444, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95124", "domain": "apis default", "rdf_link": "", "entity": 95124, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64445, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95125", "domain": "apis default", "rdf_link": "", "entity": 95125, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64446, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95126", "domain": "apis default", "rdf_link": "", "entity": 95126, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64447, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95127", "domain": "apis default", "rdf_link": "", "entity": 95127, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64448, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95128", "domain": "apis default", "rdf_link": "", "entity": 95128, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64449, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95129", "domain": "apis default", "rdf_link": "", "entity": 95129, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64450, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95130", "domain": "apis default", "rdf_link": "", "entity": 95130, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64451, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95131", "domain": "apis default", "rdf_link": "", "entity": 95131, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64463, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95156", "domain": "apis default", "rdf_link": "", "entity": 95156, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64464, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95157", "domain": "apis default", "rdf_link": "", "entity": 95157, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64465, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95158", "domain": "apis default", "rdf_link": "", "entity": 95158, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64466, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95159", "domain": "apis default", "rdf_link": "", "entity": 95159, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64467, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95160", "domain": "apis default", "rdf_link": "", "entity": 95160, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64468, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95161", "domain": "apis default", "rdf_link": "", "entity": 95161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64469, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95162", "domain": "apis default", "rdf_link": "", "entity": 95162, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64470, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95163", "domain": "apis default", "rdf_link": "", "entity": 95163, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64471, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95164", "domain": "apis default", "rdf_link": "", "entity": 95164, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64591, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95397", "domain": "apis default", "rdf_link": "", "entity": 95397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64592, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95398", "domain": "apis default", "rdf_link": "", "entity": 95398, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64593, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95399", "domain": "apis default", "rdf_link": "", "entity": 95399, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64594, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95400", "domain": "apis default", "rdf_link": "", "entity": 95400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64595, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95401", "domain": "apis default", "rdf_link": "", "entity": 95401, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64596, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95402", "domain": "apis default", "rdf_link": "", "entity": 95402, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64597, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95403", "domain": "apis default", "rdf_link": "", "entity": 95403, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64598, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95404", "domain": "apis default", "rdf_link": "", "entity": 95404, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64599, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95405", "domain": "apis default", "rdf_link": "", "entity": 95405, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64600, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95406", "domain": "apis default", "rdf_link": "", "entity": 95406, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64601, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95407", "domain": "apis default", "rdf_link": "", "entity": 95407, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64625, "fields": {"uri": "http://d-nb.info/gnd/4075578-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13253, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64656, "fields": {"uri": "http://d-nb.info/gnd/4079048-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 20549, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64696, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95582", "domain": "apis default", "rdf_link": "", "entity": 95582, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64697, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95583", "domain": "apis default", "rdf_link": "", "entity": 95583, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64698, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95584", "domain": "apis default", "rdf_link": "", "entity": 95584, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64704, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95596", "domain": "apis default", "rdf_link": "", "entity": 95596, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64705, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95597", "domain": "apis default", "rdf_link": "", "entity": 95597, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64706, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95598", "domain": "apis default", "rdf_link": "", "entity": 95598, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64707, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95599", "domain": "apis default", "rdf_link": "", "entity": 95599, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64708, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95600", "domain": "apis default", "rdf_link": "", "entity": 95600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64709, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95601", "domain": "apis default", "rdf_link": "", "entity": 95601, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64710, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95602", "domain": "apis default", "rdf_link": "", "entity": 95602, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64711, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95603", "domain": "apis default", "rdf_link": "", "entity": 95603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64712, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95604", "domain": "apis default", "rdf_link": "", "entity": 95604, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64762, "fields": {"uri": "http://d-nb.info/gnd/4008456-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 327, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64854, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95847", "domain": "apis default", "rdf_link": "", "entity": 95847, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64855, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95848", "domain": "apis default", "rdf_link": "", "entity": 95848, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64867, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95867", "domain": "apis default", "rdf_link": "", "entity": 95867, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64868, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95868", "domain": "apis default", "rdf_link": "", "entity": 95868, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64869, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95869", "domain": "apis default", "rdf_link": "", "entity": 95869, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64870, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95870", "domain": "apis default", "rdf_link": "", "entity": 95870, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64871, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95871", "domain": "apis default", "rdf_link": "", "entity": 95871, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64872, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95872", "domain": "apis default", "rdf_link": "", "entity": 95872, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64873, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95873", "domain": "apis default", "rdf_link": "", "entity": 95873, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64874, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95874", "domain": "apis default", "rdf_link": "", "entity": 95874, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64875, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95875", "domain": "apis default", "rdf_link": "", "entity": 95875, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64876, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95876", "domain": "apis default", "rdf_link": "", "entity": 95876, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64888, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95893", "domain": "apis default", "rdf_link": "", "entity": 95893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64904, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95929", "domain": "apis default", "rdf_link": "", "entity": 95929, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64905, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95930", "domain": "apis default", "rdf_link": "", "entity": 95930, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64906, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95931", "domain": "apis default", "rdf_link": "", "entity": 95931, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95932", "domain": "apis default", "rdf_link": "", "entity": 95932, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64920, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95949", "domain": "apis default", "rdf_link": "", "entity": 95949, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64921, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95950", "domain": "apis default", "rdf_link": "", "entity": 95950, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64922, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95951", "domain": "apis default", "rdf_link": "", "entity": 95951, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64923, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95952", "domain": "apis default", "rdf_link": "", "entity": 95952, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64924, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95953", "domain": "apis default", "rdf_link": "", "entity": 95953, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64925, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95954", "domain": "apis default", "rdf_link": "", "entity": 95954, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64926, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95955", "domain": "apis default", "rdf_link": "", "entity": 95955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64927, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95956", "domain": "apis default", "rdf_link": "", "entity": 95956, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64928, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95957", "domain": "apis default", "rdf_link": "", "entity": 95957, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64958, "fields": {"uri": "http://d-nb.info/gnd/4106475-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 18400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64961, "fields": {"uri": "http://d-nb.info/gnd/4074255-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65015, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96143", "domain": "apis default", "rdf_link": "", "entity": 96143, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65016, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96144", "domain": "apis default", "rdf_link": "", "entity": 96144, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65017, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96145", "domain": "apis default", "rdf_link": "", "entity": 96145, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65018, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96146", "domain": "apis default", "rdf_link": "", "entity": 96146, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65047, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96208", "domain": "apis default", "rdf_link": "", "entity": 96208, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65048, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96209", "domain": "apis default", "rdf_link": "", "entity": 96209, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65049, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96210", "domain": "apis default", "rdf_link": "", "entity": 96210, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65050, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96211", "domain": "apis default", "rdf_link": "", "entity": 96211, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65059, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96221", "domain": "apis default", "rdf_link": "", "entity": 96221, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65060, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96222", "domain": "apis default", "rdf_link": "", "entity": 96222, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65061, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96223", "domain": "apis default", "rdf_link": "", "entity": 96223, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65062, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96224", "domain": "apis default", "rdf_link": "", "entity": 96224, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65063, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96225", "domain": "apis default", "rdf_link": "", "entity": 96225, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65064, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96226", "domain": "apis default", "rdf_link": "", "entity": 96226, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65176, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96458", "domain": "apis default", "rdf_link": "", "entity": 96458, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65177, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96459", "domain": "apis default", "rdf_link": "", "entity": 96459, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65178, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96460", "domain": "apis default", "rdf_link": "", "entity": 96460, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65179, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96461", "domain": "apis default", "rdf_link": "", "entity": 96461, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65180, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96462", "domain": "apis default", "rdf_link": "", "entity": 96462, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65181, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96463", "domain": "apis default", "rdf_link": "", "entity": 96463, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65182, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96464", "domain": "apis default", "rdf_link": "", "entity": 96464, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65183, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96465", "domain": "apis default", "rdf_link": "", "entity": 96465, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65184, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96466", "domain": "apis default", "rdf_link": "", "entity": 96466, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65185, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96467", "domain": "apis default", "rdf_link": "", "entity": 96467, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65200, "fields": {"uri": "http://d-nb.info/gnd/4033488-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9287, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65253, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96620", "domain": "apis default", "rdf_link": "", "entity": 96620, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65254, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96621", "domain": "apis default", "rdf_link": "", "entity": 96621, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65255, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96622", "domain": "apis default", "rdf_link": "", "entity": 96622, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65256, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96623", "domain": "apis default", "rdf_link": "", "entity": 96623, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65292, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96728", "domain": "apis default", "rdf_link": "", "entity": 96728, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65293, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96729", "domain": "apis default", "rdf_link": "", "entity": 96729, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65294, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96730", "domain": "apis default", "rdf_link": "", "entity": 96730, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65295, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96731", "domain": "apis default", "rdf_link": "", "entity": 96731, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65296, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96732", "domain": "apis default", "rdf_link": "", "entity": 96732, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65297, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96733", "domain": "apis default", "rdf_link": "", "entity": 96733, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65298, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96734", "domain": "apis default", "rdf_link": "", "entity": 96734, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65299, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96735", "domain": "apis default", "rdf_link": "", "entity": 96735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65300, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96736", "domain": "apis default", "rdf_link": "", "entity": 96736, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65301, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96737", "domain": "apis default", "rdf_link": "", "entity": 96737, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65302, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96738", "domain": "apis default", "rdf_link": "", "entity": 96738, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65305, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96740", "domain": "apis default", "rdf_link": "", "entity": 96740, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65306, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96741", "domain": "apis default", "rdf_link": "", "entity": 96741, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65307, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96742", "domain": "apis default", "rdf_link": "", "entity": 96742, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65308, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96743", "domain": "apis default", "rdf_link": "", "entity": 96743, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65309, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96744", "domain": "apis default", "rdf_link": "", "entity": 96744, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65310, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96745", "domain": "apis default", "rdf_link": "", "entity": 96745, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65311, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96746", "domain": "apis default", "rdf_link": "", "entity": 96746, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65312, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96747", "domain": "apis default", "rdf_link": "", "entity": 96747, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65313, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96748", "domain": "apis default", "rdf_link": "", "entity": 96748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65314, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96749", "domain": "apis default", "rdf_link": "", "entity": 96749, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65315, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96750", "domain": "apis default", "rdf_link": "", "entity": 96750, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65320, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96758", "domain": "apis default", "rdf_link": "", "entity": 96758, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65321, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96759", "domain": "apis default", "rdf_link": "", "entity": 96759, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65351, "fields": {"uri": "http://d-nb.info/gnd/4013237-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65353, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96813", "domain": "apis default", "rdf_link": "", "entity": 96813, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65354, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96814", "domain": "apis default", "rdf_link": "", "entity": 96814, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65355, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96815", "domain": "apis default", "rdf_link": "", "entity": 96815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65356, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96816", "domain": "apis default", "rdf_link": "", "entity": 96816, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65357, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96817", "domain": "apis default", "rdf_link": "", "entity": 96817, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96858", "domain": "apis default", "rdf_link": "", "entity": 96858, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96859", "domain": "apis default", "rdf_link": "", "entity": 96859, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65374, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96860", "domain": "apis default", "rdf_link": "", "entity": 96860, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65375, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96861", "domain": "apis default", "rdf_link": "", "entity": 96861, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65376, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96862", "domain": "apis default", "rdf_link": "", "entity": 96862, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65377, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96863", "domain": "apis default", "rdf_link": "", "entity": 96863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65378, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96864", "domain": "apis default", "rdf_link": "", "entity": 96864, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65379, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96865", "domain": "apis default", "rdf_link": "", "entity": 96865, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65410, "fields": {"uri": "http://d-nb.info/gnd/4071444-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 22526, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65419, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96947", "domain": "apis default", "rdf_link": "", "entity": 96947, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65420, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96948", "domain": "apis default", "rdf_link": "", "entity": 96948, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65421, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96949", "domain": "apis default", "rdf_link": "", "entity": 96949, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65422, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96950", "domain": "apis default", "rdf_link": "", "entity": 96950, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65423, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96951", "domain": "apis default", "rdf_link": "", "entity": 96951, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65424, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96952", "domain": "apis default", "rdf_link": "", "entity": 96952, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65425, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96953", "domain": "apis default", "rdf_link": "", "entity": 96953, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65426, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96954", "domain": "apis default", "rdf_link": "", "entity": 96954, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65427, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96955", "domain": "apis default", "rdf_link": "", "entity": 96955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65428, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96956", "domain": "apis default", "rdf_link": "", "entity": 96956, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65693, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97430", "domain": "apis default", "rdf_link": "", "entity": 97430, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65873, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97529", "domain": "apis default", "rdf_link": "", "entity": 97529, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65874, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97530", "domain": "apis default", "rdf_link": "", "entity": 97530, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65875, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97531", "domain": "apis default", "rdf_link": "", "entity": 97531, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65876, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97532", "domain": "apis default", "rdf_link": "", "entity": 97532, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65877, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97533", "domain": "apis default", "rdf_link": "", "entity": 97533, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65878, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97534", "domain": "apis default", "rdf_link": "", "entity": 97534, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65942, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97578", "domain": "apis default", "rdf_link": "", "entity": 97578, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65966, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97592", "domain": "apis default", "rdf_link": "", "entity": 97592, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65967, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97593", "domain": "apis default", "rdf_link": "", "entity": 97593, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66003, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97617", "domain": "apis default", "rdf_link": "", "entity": 97617, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97623", "domain": "apis default", "rdf_link": "", "entity": 97623, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66072, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97657", "domain": "apis default", "rdf_link": "", "entity": 97657, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66164, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97707", "domain": "apis default", "rdf_link": "", "entity": 97707, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66189, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97723", "domain": "apis default", "rdf_link": "", "entity": 97723, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66244, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97753", "domain": "apis default", "rdf_link": "", "entity": 97753, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66309, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97790", "domain": "apis default", "rdf_link": "", "entity": 97790, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66387, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97834", "domain": "apis default", "rdf_link": "", "entity": 97834, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66410, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97849", "domain": "apis default", "rdf_link": "", "entity": 97849, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66474, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97884", "domain": "apis default", "rdf_link": "", "entity": 97884, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66479, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97888", "domain": "apis default", "rdf_link": "", "entity": 97888, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66492, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97896", "domain": "apis default", "rdf_link": "", "entity": 97896, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66559, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97933", "domain": "apis default", "rdf_link": "", "entity": 97933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66576, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97943", "domain": "apis default", "rdf_link": "", "entity": 97943, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66577, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97944", "domain": "apis default", "rdf_link": "", "entity": 97944, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66578, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97945", "domain": "apis default", "rdf_link": "", "entity": 97945, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97976", "domain": "apis default", "rdf_link": "", "entity": 97976, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66616, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97977", "domain": "apis default", "rdf_link": "", "entity": 97977, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66629, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97986", "domain": "apis default", "rdf_link": "", "entity": 97986, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66662, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98006", "domain": "apis default", "rdf_link": "", "entity": 98006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66690, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98024", "domain": "apis default", "rdf_link": "", "entity": 98024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66856, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98183", "domain": "apis default", "rdf_link": "", "entity": 98183, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66857, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98184", "domain": "apis default", "rdf_link": "", "entity": 98184, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66858, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98185", "domain": "apis default", "rdf_link": "", "entity": 98185, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66886, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98237", "domain": "apis default", "rdf_link": "", "entity": 98237, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98296", "domain": "apis default", "rdf_link": "", "entity": 98296, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66908, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98297", "domain": "apis default", "rdf_link": "", "entity": 98297, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66909, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98298", "domain": "apis default", "rdf_link": "", "entity": 98298, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66910, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98299", "domain": "apis default", "rdf_link": "", "entity": 98299, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66911, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98300", "domain": "apis default", "rdf_link": "", "entity": 98300, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66912, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98301", "domain": "apis default", "rdf_link": "", "entity": 98301, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66935, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98348", "domain": "apis default", "rdf_link": "", "entity": 98348, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66994, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98551", "domain": "apis default", "rdf_link": "", "entity": 98551, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67004, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98569", "domain": "apis default", "rdf_link": "", "entity": 98569, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67005, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98570", "domain": "apis default", "rdf_link": "", "entity": 98570, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67008, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98579", "domain": "apis default", "rdf_link": "", "entity": 98579, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67009, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98580", "domain": "apis default", "rdf_link": "", "entity": 98580, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67010, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98581", "domain": "apis default", "rdf_link": "", "entity": 98581, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67011, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98582", "domain": "apis default", "rdf_link": "", "entity": 98582, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98583", "domain": "apis default", "rdf_link": "", "entity": 98583, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67013, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98584", "domain": "apis default", "rdf_link": "", "entity": 98584, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67014, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98585", "domain": "apis default", "rdf_link": "", "entity": 98585, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67015, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98586", "domain": "apis default", "rdf_link": "", "entity": 98586, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67016, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98587", "domain": "apis default", "rdf_link": "", "entity": 98587, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67017, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98588", "domain": "apis default", "rdf_link": "", "entity": 98588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67021, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98604", "domain": "apis default", "rdf_link": "", "entity": 98604, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67022, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98605", "domain": "apis default", "rdf_link": "", "entity": 98605, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67023, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98606", "domain": "apis default", "rdf_link": "", "entity": 98606, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67039, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98696", "domain": "apis default", "rdf_link": "", "entity": 98696, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67040, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98697", "domain": "apis default", "rdf_link": "", "entity": 98697, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67043, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98714", "domain": "apis default", "rdf_link": "", "entity": 98714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67050, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98722", "domain": "apis default", "rdf_link": "", "entity": 98722, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67051, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98723", "domain": "apis default", "rdf_link": "", "entity": 98723, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67052, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98724", "domain": "apis default", "rdf_link": "", "entity": 98724, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67053, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98725", "domain": "apis default", "rdf_link": "", "entity": 98725, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67054, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98726", "domain": "apis default", "rdf_link": "", "entity": 98726, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67055, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98727", "domain": "apis default", "rdf_link": "", "entity": 98727, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67056, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98728", "domain": "apis default", "rdf_link": "", "entity": 98728, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67057, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98729", "domain": "apis default", "rdf_link": "", "entity": 98729, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67058, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98730", "domain": "apis default", "rdf_link": "", "entity": 98730, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67059, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98731", "domain": "apis default", "rdf_link": "", "entity": 98731, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67060, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98732", "domain": "apis default", "rdf_link": "", "entity": 98732, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67061, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98733", "domain": "apis default", "rdf_link": "", "entity": 98733, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67062, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98734", "domain": "apis default", "rdf_link": "", "entity": 98734, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67063, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98735", "domain": "apis default", "rdf_link": "", "entity": 98735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67064, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98736", "domain": "apis default", "rdf_link": "", "entity": 98736, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67065, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98737", "domain": "apis default", "rdf_link": "", "entity": 98737, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67092, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98886", "domain": "apis default", "rdf_link": "", "entity": 98886, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67099, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98891", "domain": "apis default", "rdf_link": "", "entity": 98891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67100, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98892", "domain": "apis default", "rdf_link": "", "entity": 98892, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67101, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98893", "domain": "apis default", "rdf_link": "", "entity": 98893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67110, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98922", "domain": "apis default", "rdf_link": "", "entity": 98922, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67111, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98923", "domain": "apis default", "rdf_link": "", "entity": 98923, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67112, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98924", "domain": "apis default", "rdf_link": "", "entity": 98924, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67113, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98925", "domain": "apis default", "rdf_link": "", "entity": 98925, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67124, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98980", "domain": "apis default", "rdf_link": "", "entity": 98980, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67128, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98990", "domain": "apis default", "rdf_link": "", "entity": 98990, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67129, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98991", "domain": "apis default", "rdf_link": "", "entity": 98991, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67130, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98992", "domain": "apis default", "rdf_link": "", "entity": 98992, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67131, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98993", "domain": "apis default", "rdf_link": "", "entity": 98993, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67132, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98994", "domain": "apis default", "rdf_link": "", "entity": 98994, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67133, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98995", "domain": "apis default", "rdf_link": "", "entity": 98995, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67134, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98996", "domain": "apis default", "rdf_link": "", "entity": 98996, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67135, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98997", "domain": "apis default", "rdf_link": "", "entity": 98997, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67136, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98998", "domain": "apis default", "rdf_link": "", "entity": 98998, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67137, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98999", "domain": "apis default", "rdf_link": "", "entity": 98999, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67138, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99000", "domain": "apis default", "rdf_link": "", "entity": 99000, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67139, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99001", "domain": "apis default", "rdf_link": "", "entity": 99001, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67140, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99002", "domain": "apis default", "rdf_link": "", "entity": 99002, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67141, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99003", "domain": "apis default", "rdf_link": "", "entity": 99003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67142, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99004", "domain": "apis default", "rdf_link": "", "entity": 99004, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67143, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99005", "domain": "apis default", "rdf_link": "", "entity": 99005, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67144, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99006", "domain": "apis default", "rdf_link": "", "entity": 99006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67145, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99007", "domain": "apis default", "rdf_link": "", "entity": 99007, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67146, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99008", "domain": "apis default", "rdf_link": "", "entity": 99008, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67147, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99009", "domain": "apis default", "rdf_link": "", "entity": 99009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67155, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99075", "domain": "apis default", "rdf_link": "", "entity": 99075, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67158, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99092", "domain": "apis default", "rdf_link": "", "entity": 99092, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67159, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99093", "domain": "apis default", "rdf_link": "", "entity": 99093, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67160, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99094", "domain": "apis default", "rdf_link": "", "entity": 99094, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67161, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99095", "domain": "apis default", "rdf_link": "", "entity": 99095, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67162, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99096", "domain": "apis default", "rdf_link": "", "entity": 99096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67163, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99097", "domain": "apis default", "rdf_link": "", "entity": 99097, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67164, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99098", "domain": "apis default", "rdf_link": "", "entity": 99098, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67165, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99099", "domain": "apis default", "rdf_link": "", "entity": 99099, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67166, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99100", "domain": "apis default", "rdf_link": "", "entity": 99100, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67167, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99101", "domain": "apis default", "rdf_link": "", "entity": 99101, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67168, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99102", "domain": "apis default", "rdf_link": "", "entity": 99102, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67169, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99103", "domain": "apis default", "rdf_link": "", "entity": 99103, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67170, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99104", "domain": "apis default", "rdf_link": "", "entity": 99104, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67171, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99105", "domain": "apis default", "rdf_link": "", "entity": 99105, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67172, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99106", "domain": "apis default", "rdf_link": "", "entity": 99106, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67173, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99107", "domain": "apis default", "rdf_link": "", "entity": 99107, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67174, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99108", "domain": "apis default", "rdf_link": "", "entity": 99108, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67175, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99109", "domain": "apis default", "rdf_link": "", "entity": 99109, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67176, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99110", "domain": "apis default", "rdf_link": "", "entity": 99110, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67182, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99156", "domain": "apis default", "rdf_link": "", "entity": 99156, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67217, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99336", "domain": "apis default", "rdf_link": "", "entity": 99336, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67218, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99337", "domain": "apis default", "rdf_link": "", "entity": 99337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67225, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99352", "domain": "apis default", "rdf_link": "", "entity": 99352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67226, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99353", "domain": "apis default", "rdf_link": "", "entity": 99353, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67227, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99354", "domain": "apis default", "rdf_link": "", "entity": 99354, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67228, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99355", "domain": "apis default", "rdf_link": "", "entity": 99355, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67229, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99356", "domain": "apis default", "rdf_link": "", "entity": 99356, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67230, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99357", "domain": "apis default", "rdf_link": "", "entity": 99357, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67231, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99358", "domain": "apis default", "rdf_link": "", "entity": 99358, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67234, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99369", "domain": "apis default", "rdf_link": "", "entity": 99369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67235, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99370", "domain": "apis default", "rdf_link": "", "entity": 99370, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67236, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99371", "domain": "apis default", "rdf_link": "", "entity": 99371, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67237, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99372", "domain": "apis default", "rdf_link": "", "entity": 99372, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67238, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99373", "domain": "apis default", "rdf_link": "", "entity": 99373, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67239, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99374", "domain": "apis default", "rdf_link": "", "entity": 99374, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67240, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99375", "domain": "apis default", "rdf_link": "", "entity": 99375, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67241, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99376", "domain": "apis default", "rdf_link": "", "entity": 99376, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67242, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99377", "domain": "apis default", "rdf_link": "", "entity": 99377, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67243, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99378", "domain": "apis default", "rdf_link": "", "entity": 99378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67248, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99416", "domain": "apis default", "rdf_link": "", "entity": 99416, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67249, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99417", "domain": "apis default", "rdf_link": "", "entity": 99417, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67250, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99418", "domain": "apis default", "rdf_link": "", "entity": 99418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67251, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99419", "domain": "apis default", "rdf_link": "", "entity": 99419, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67252, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99420", "domain": "apis default", "rdf_link": "", "entity": 99420, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67253, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99421", "domain": "apis default", "rdf_link": "", "entity": 99421, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67254, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99422", "domain": "apis default", "rdf_link": "", "entity": 99422, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67255, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99423", "domain": "apis default", "rdf_link": "", "entity": 99423, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67343, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99744", "domain": "apis default", "rdf_link": "", "entity": 99744, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67366, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99841", "domain": "apis default", "rdf_link": "", "entity": 99841, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67367, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99842", "domain": "apis default", "rdf_link": "", "entity": 99842, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67368, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99843", "domain": "apis default", "rdf_link": "", "entity": 99843, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67369, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99844", "domain": "apis default", "rdf_link": "", "entity": 99844, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67370, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99845", "domain": "apis default", "rdf_link": "", "entity": 99845, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67371, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99846", "domain": "apis default", "rdf_link": "", "entity": 99846, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99847", "domain": "apis default", "rdf_link": "", "entity": 99847, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99848", "domain": "apis default", "rdf_link": "", "entity": 99848, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67374, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99849", "domain": "apis default", "rdf_link": "", "entity": 99849, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67375, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99850", "domain": "apis default", "rdf_link": "", "entity": 99850, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uricandidate", "pk": 3373, "fields": {"uri": "http://sws.geonames.org/3075069/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3374, "fields": {"uri": "http://sws.geonames.org/3075073/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3375, "fields": {"uri": "http://sws.geonames.org/3064955/", "confidence": 36.39077, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3376, "fields": {"uri": "http://sws.geonames.org/3064682/", "confidence": 27.023357, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3392, "fields": {"uri": "http://sws.geonames.org/8987526/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3393, "fields": {"uri": "http://sws.geonames.org/8988006/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3394, "fields": {"uri": "http://sws.geonames.org/3187442/", "confidence": 36.04053, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3427, "fields": {"uri": "http://sws.geonames.org/710232/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3428, "fields": {"uri": "http://sws.geonames.org/710234/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3429, "fields": {"uri": "http://sws.geonames.org/710242/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3430, "fields": {"uri": "http://sws.geonames.org/710241/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3431, "fields": {"uri": "http://sws.geonames.org/810113/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3432, "fields": {"uri": "http://sws.geonames.org/8468002/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3433, "fields": {"uri": "http://sws.geonames.org/710235/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3434, "fields": {"uri": "http://sws.geonames.org/710243/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3435, "fields": {"uri": "http://sws.geonames.org/697446/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3436, "fields": {"uri": "http://sws.geonames.org/687982/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "highlighter.texthigh", "pk": 1, "fields": {"title": "\u00d6BL Haupttext", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-haupttext", "project": 1}}, {"model": "highlighter.texthigh", "pk": 2, "fields": {"title": "\u00d6bl Kurzinfo", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-kurzinfo", "project": 1}}, {"model": "highlighter.annotationproject", "pk": 1, "fields": {"name": "Default", "description": "We need an annotation project for every annotation. Thus the default project."}}, {"model": "highlighter.vocabularyapi", "pk": 1, "fields": {"name": "Person Place Form", "api_endpoint": "PersonPlaceHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 2, "fields": {"name": "Person Institution Form", "api_endpoint": "PersonInstitutionHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 3, "fields": {"name": "Person Person Form", "api_endpoint": "PersonPersonHighlighterForm", "method": "l"}}, {"model": "highlighter.menuentry", "pk": 1, "fields": {"kind": "frm", "name": "Person Place Relation", "api": 1, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 2, "fields": {"kind": "frm", "name": "Person Institution Relation", "api": 2, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 3, "fields": {"kind": "frm", "name": "Person Person Relation", "api": 3, "parent": null, "project": 1}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add log entry", "content_type": 1, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change log entry", "content_type": 1, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete log entry", "content_type": 1, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can add permission", "content_type": 2, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can change permission", "content_type": 2, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can delete permission", "content_type": 2, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can add group", "content_type": 3, "codename": "add_group"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can change group", "content_type": 3, "codename": "change_group"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can delete group", "content_type": 3, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add user", "content_type": 4, "codename": "add_user"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change user", "content_type": 4, "codename": "change_user"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete user", "content_type": 4, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add content type", "content_type": 5, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change content type", "content_type": 5, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete content type", "content_type": 5, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can add session", "content_type": 6, "codename": "add_session"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can change session", "content_type": 6, "codename": "change_session"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can delete session", "content_type": 6, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can add label", "content_type": 7, "codename": "add_label"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can change label", "content_type": 7, "codename": "change_label"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can delete label", "content_type": 7, "codename": "delete_label"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add person", "content_type": 8, "codename": "add_person"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change person", "content_type": 8, "codename": "change_person"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete person", "content_type": 8, "codename": "delete_person"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add place", "content_type": 9, "codename": "add_place"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change place", "content_type": 9, "codename": "change_place"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete place", "content_type": 9, "codename": "delete_place"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can add institution", "content_type": 10, "codename": "add_institution"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can change institution", "content_type": 10, "codename": "change_institution"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can delete institution", "content_type": 10, "codename": "delete_institution"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can add event", "content_type": 11, "codename": "add_event"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can change event", "content_type": 11, "codename": "change_event"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can delete event", "content_type": 11, "codename": "delete_event"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add work", "content_type": 12, "codename": "add_work"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change work", "content_type": 12, "codename": "change_work"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete work", "content_type": 12, "codename": "delete_work"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add vocabs base class", "content_type": 13, "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change vocabs base class", "content_type": 13, "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete vocabs base class", "content_type": 13, "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can add relation base class", "content_type": 14, "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can change relation base class", "content_type": 14, "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can delete relation base class", "content_type": 14, "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can add vocabs uri", "content_type": 15, "codename": "add_vocabsuri"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can change vocabs uri", "content_type": 15, "codename": "change_vocabsuri"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can delete vocabs uri", "content_type": 15, "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add work type", "content_type": 16, "codename": "add_worktype"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change work type", "content_type": 16, "codename": "change_worktype"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete work type", "content_type": 16, "codename": "delete_worktype"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add title", "content_type": 17, "codename": "add_title"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change title", "content_type": 17, "codename": "change_title"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete title", "content_type": 17, "codename": "delete_title"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can add profession type", "content_type": 18, "codename": "add_professiontype"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can change profession type", "content_type": 18, "codename": "change_professiontype"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can delete profession type", "content_type": 18, "codename": "delete_professiontype"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can add place type", "content_type": 19, "codename": "add_placetype"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can change place type", "content_type": 19, "codename": "change_placetype"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can delete place type", "content_type": 19, "codename": "delete_placetype"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add institution type", "content_type": 20, "codename": "add_institutiontype"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change institution type", "content_type": 20, "codename": "change_institutiontype"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete institution type", "content_type": 20, "codename": "delete_institutiontype"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add event type", "content_type": 21, "codename": "add_eventtype"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change event type", "content_type": 21, "codename": "change_eventtype"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete event type", "content_type": 21, "codename": "delete_eventtype"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can add label type", "content_type": 22, "codename": "add_labeltype"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can change label type", "content_type": 22, "codename": "change_labeltype"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can delete label type", "content_type": 22, "codename": "delete_labeltype"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can add collection type", "content_type": 23, "codename": "add_collectiontype"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can change collection type", "content_type": 23, "codename": "change_collectiontype"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can delete collection type", "content_type": 23, "codename": "delete_collectiontype"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add text type", "content_type": 24, "codename": "add_texttype"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change text type", "content_type": 24, "codename": "change_texttype"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete text type", "content_type": 24, "codename": "delete_texttype"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add person person relation", "content_type": 25, "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change person person relation", "content_type": 25, "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete person person relation", "content_type": 25, "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can add person place relation", "content_type": 26, "codename": "add_personplacerelation"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can change person place relation", "content_type": 26, "codename": "change_personplacerelation"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can delete person place relation", "content_type": 26, "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can add person institution relation", "content_type": 27, "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can change person institution relation", "content_type": 27, "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can delete person institution relation", "content_type": 27, "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add person event relation", "content_type": 28, "codename": "add_personeventrelation"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change person event relation", "content_type": 28, "codename": "change_personeventrelation"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete person event relation", "content_type": 28, "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add person work relation", "content_type": 29, "codename": "add_personworkrelation"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change person work relation", "content_type": 29, "codename": "change_personworkrelation"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete person work relation", "content_type": 29, "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can add institution event relation", "content_type": 30, "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can change institution event relation", "content_type": 30, "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can delete institution event relation", "content_type": 30, "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can add institution place relation", "content_type": 31, "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can change institution place relation", "content_type": 31, "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can delete institution place relation", "content_type": 31, "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add institution institution relation", "content_type": 32, "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change institution institution relation", "content_type": 32, "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete institution institution relation", "content_type": 32, "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add place place relation", "content_type": 33, "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change place place relation", "content_type": 33, "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete place place relation", "content_type": 33, "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can add place event relation", "content_type": 34, "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can change place event relation", "content_type": 34, "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can delete place event relation", "content_type": 34, "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can add place work relation", "content_type": 35, "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can change place work relation", "content_type": 35, "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can delete place work relation", "content_type": 35, "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add event event relation", "content_type": 36, "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change event event relation", "content_type": 36, "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete event event relation", "content_type": 36, "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add event work relation", "content_type": 37, "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change event work relation", "content_type": 37, "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete event work relation", "content_type": 37, "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can add work work relation", "content_type": 38, "codename": "add_workworkrelation"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can change work work relation", "content_type": 38, "codename": "change_workworkrelation"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can delete work work relation", "content_type": 38, "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can add person person", "content_type": 39, "codename": "add_personperson"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can change person person", "content_type": 39, "codename": "change_personperson"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can delete person person", "content_type": 39, "codename": "delete_personperson"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can add person place", "content_type": 40, "codename": "add_personplace"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can change person place", "content_type": 40, "codename": "change_personplace"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can delete person place", "content_type": 40, "codename": "delete_personplace"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add person institution", "content_type": 41, "codename": "add_personinstitution"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change person institution", "content_type": 41, "codename": "change_personinstitution"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete person institution", "content_type": 41, "codename": "delete_personinstitution"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can add person event", "content_type": 42, "codename": "add_personevent"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can change person event", "content_type": 42, "codename": "change_personevent"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can delete person event", "content_type": 42, "codename": "delete_personevent"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can add person work", "content_type": 43, "codename": "add_personwork"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can change person work", "content_type": 43, "codename": "change_personwork"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can delete person work", "content_type": 43, "codename": "delete_personwork"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can add institution institution", "content_type": 44, "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can change institution institution", "content_type": 44, "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can delete institution institution", "content_type": 44, "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add institution place", "content_type": 45, "codename": "add_institutionplace"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change institution place", "content_type": 45, "codename": "change_institutionplace"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete institution place", "content_type": 45, "codename": "delete_institutionplace"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can add institution event", "content_type": 46, "codename": "add_institutionevent"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can change institution event", "content_type": 46, "codename": "change_institutionevent"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can delete institution event", "content_type": 46, "codename": "delete_institutionevent"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can add institution work", "content_type": 47, "codename": "add_institutionwork"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can change institution work", "content_type": 47, "codename": "change_institutionwork"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can delete institution work", "content_type": 47, "codename": "delete_institutionwork"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can add place place", "content_type": 48, "codename": "add_placeplace"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can change place place", "content_type": 48, "codename": "change_placeplace"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can delete place place", "content_type": 48, "codename": "delete_placeplace"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add place event", "content_type": 49, "codename": "add_placeevent"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change place event", "content_type": 49, "codename": "change_placeevent"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete place event", "content_type": 49, "codename": "delete_placeevent"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can add place work", "content_type": 50, "codename": "add_placework"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can change place work", "content_type": 50, "codename": "change_placework"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can delete place work", "content_type": 50, "codename": "delete_placework"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can add event event", "content_type": 51, "codename": "add_eventevent"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can change event event", "content_type": 51, "codename": "change_eventevent"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can delete event event", "content_type": 51, "codename": "delete_eventevent"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can add event work", "content_type": 52, "codename": "add_eventwork"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can change event work", "content_type": 52, "codename": "change_eventwork"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can delete event work", "content_type": 52, "codename": "delete_eventwork"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can add work work", "content_type": 53, "codename": "add_workwork"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can change work work", "content_type": 53, "codename": "change_workwork"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can delete work work", "content_type": 53, "codename": "delete_workwork"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can add temp entity class", "content_type": 54, "codename": "add_tempentityclass"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can change temp entity class", "content_type": 54, "codename": "change_tempentityclass"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can delete temp entity class", "content_type": 54, "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can add source", "content_type": 55, "codename": "add_source"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can change source", "content_type": 55, "codename": "change_source"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can delete source", "content_type": 55, "codename": "delete_source"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can add collection", "content_type": 56, "codename": "add_collection"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can change collection", "content_type": 56, "codename": "change_collection"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can delete collection", "content_type": 56, "codename": "delete_collection"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can add text", "content_type": 57, "codename": "add_text"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can change text", "content_type": 57, "codename": "change_text"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can delete text", "content_type": 57, "codename": "delete_text"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can add uri", "content_type": 58, "codename": "add_uri"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can change uri", "content_type": 58, "codename": "change_uri"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can delete uri", "content_type": 58, "codename": "delete_uri"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can add project", "content_type": 61, "codename": "add_project"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can change project", "content_type": 61, "codename": "change_project"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can delete project", "content_type": 61, "codename": "delete_project"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can add annotation", "content_type": 63, "codename": "add_annotation"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can change annotation", "content_type": 63, "codename": "change_annotation"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can delete annotation", "content_type": 63, "codename": "delete_annotation"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can add vocabulary api", "content_type": 64, "codename": "add_vocabularyapi"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can change vocabulary api", "content_type": 64, "codename": "change_vocabularyapi"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can delete vocabulary api", "content_type": 64, "codename": "delete_vocabularyapi"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can add menu entry", "content_type": 65, "codename": "add_menuentry"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can change menu entry", "content_type": 65, "codename": "change_menuentry"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can delete menu entry", "content_type": 65, "codename": "delete_menuentry"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can add revision", "content_type": 66, "codename": "add_revision"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can change revision", "content_type": 66, "codename": "change_revision"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can delete revision", "content_type": 66, "codename": "delete_revision"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can add version", "content_type": 67, "codename": "add_version"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can change version", "content_type": 67, "codename": "change_version"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can delete version", "content_type": 67, "codename": "delete_version"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can add uri candidate", "content_type": 68, "codename": "add_uricandidate"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can change uri candidate", "content_type": 68, "codename": "change_uricandidate"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can delete uri candidate", "content_type": 68, "codename": "delete_uricandidate"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can add vocab names", "content_type": 69, "codename": "add_vocabnames"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can change vocab names", "content_type": 69, "codename": "change_vocabnames"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can delete vocab names", "content_type": 69, "codename": "delete_vocabnames"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can add text high", "content_type": 70, "codename": "add_texthigh"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can change text high", "content_type": 70, "codename": "change_texthigh"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can delete text high", "content_type": 70, "codename": "delete_texthigh"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can add annotation project", "content_type": 71, "codename": "add_annotationproject"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can change annotation project", "content_type": 71, "codename": "change_annotationproject"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can delete annotation project", "content_type": 71, "codename": "delete_annotationproject"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can add Token", "content_type": 72, "codename": "add_token"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can change Token", "content_type": 72, "codename": "change_token"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can delete Token", "content_type": 72, "codename": "delete_token"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can add user object permission", "content_type": 73, "codename": "add_userobjectpermission"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can change user object permission", "content_type": 73, "codename": "change_userobjectpermission"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can delete user object permission", "content_type": 73, "codename": "delete_userobjectpermission"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can add group object permission", "content_type": 74, "codename": "add_groupobjectpermission"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can change group object permission", "content_type": 74, "codename": "change_groupobjectpermission"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can delete group object permission", "content_type": 74, "codename": "delete_groupobjectpermission"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "semac", "permissions": [13, 14, 15, 31, 32, 33, 28, 29, 30, 22, 23, 24, 25, 26, 27, 34, 35, 36, 187, 188, 189, 193, 194, 195, 181, 182, 183, 190, 191, 192, 19, 20, 21, 166, 167, 168, 163, 164, 165, 160, 161, 162, 169, 170, 171, 172, 173, 174, 151, 152, 153, 154, 155, 156, 136, 137, 138, 130, 131, 132, 133, 134, 135, 139, 140, 141, 124, 125, 126, 121, 122, 123, 115, 116, 117, 118, 119, 120, 127, 128, 129, 145, 146, 147, 142, 143, 144, 148, 149, 150, 157, 158, 159, 16, 17, 18, 67, 68, 69, 106, 107, 108, 61, 62, 63, 109, 110, 111, 88, 89, 90, 94, 95, 96, 91, 92, 93, 58, 59, 60, 64, 65, 66, 82, 83, 84, 79, 80, 81, 73, 74, 75, 76, 77, 78, 85, 86, 87, 100, 101, 102, 97, 98, 99, 55, 56, 57, 103, 104, 105, 52, 53, 54, 40, 41, 42, 70, 71, 72, 49, 50, 51, 37, 38, 39, 43, 44, 45, 46, 47, 48, 112, 113, 114]}}, {"model": "auth.group", "pk": 2, "fields": {"name": "apis", "permissions": []}}, {"model": "auth.group", "pk": 3, "fields": {"name": "staribacher", "permissions": []}}, {"model": "auth.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$24000$lZLlfjvJkfgl$AaPc0kM0uUiYs1Iaj8jLiZcMGjC/hqQPyt3qX+B0JFk=", "last_login": "2016-12-20T11:30:35Z", "is_superuser": true, "username": "pandorfer", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2016-04-04T11:48:13Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", "last_login": "2016-12-21T09:47:39Z", "is_superuser": true, "username": "sennierer", "first_name": "Matthias", "last_name": "Schl\u00f6gl", "email": "matthias.schloegl@oeaw.ac.at", "is_staff": true, "is_active": true, "date_joined": "2016-04-05T15:11:00Z", "groups": [2], "user_permissions": [1, 2, 3, 7, 8, 9, 4, 5, 6, 10, 11, 12, 13, 14, 15, 31, 32, 33, 28, 29, 30, 22, 23, 24, 25, 26, 27, 34, 35, 36, 187, 188, 189, 193, 194, 195, 181, 182, 183, 190, 191, 192, 19, 20, 21, 166, 167, 168, 163, 164, 165, 160, 161, 162, 169, 170, 171, 172, 173, 174, 202, 203, 204, 151, 152, 153, 154, 155, 156, 136, 137, 138, 130, 131, 132, 133, 134, 135, 139, 140, 141, 124, 125, 126, 121, 122, 123, 115, 116, 117, 118, 119, 120, 127, 128, 129, 145, 146, 147, 142, 143, 144, 148, 149, 150, 157, 158, 159, 196, 197, 198, 199, 200, 201, 16, 17, 18, 67, 68, 69, 106, 107, 108, 61, 62, 63, 109, 110, 111, 88, 89, 90, 94, 95, 96, 91, 92, 93, 58, 59, 60, 64, 65, 66, 82, 83, 84, 79, 80, 81, 73, 74, 75, 76, 77, 78, 85, 86, 87, 100, 101, 102, 97, 98, 99, 55, 56, 57, 103, 104, 105, 52, 53, 54, 40, 41, 42, 70, 71, 72, 49, 50, 51, 37, 38, 39, 43, 44, 45, 46, 47, 48, 112, 113, 114]}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1, "fields": {"name": "old entity of", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Place description \u00d6BL", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "vocabsor similar import", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "\u00d6BL place name", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "seat of a third-order administrative division (PPLA3)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "weitere Namensformen", "description": "wie im Gideon, statt alternative name", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "independent political entity (PCLI)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "populated place (PPL)", "description": "a city, town, village, or other agglomeration of buildings where people live and work", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "seat of a fourth-order administrative division (PPLA4)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "seat of a second-order administrative division (PPLA2)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "capital of a political entity (PPLC)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "seat of a first-order administrative division (PPLA)", "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 125, "fields": {"name": "test data import", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Literatur, Buch- und Zeitungswesen", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "\u00d6BL Haupttext", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "\u00d6BL Kurzinfo", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Rechtswesen und Rechtswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 133, "fields": {"name": "Rechtshistoriker und Abgeordneter", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Politik", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 135, "fields": {"name": "Naturwissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Botaniker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 137, "fields": {"name": "Wirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 138, "fields": {"name": "Instrumentenbauer", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 139, "fields": {"name": "Bildende und angewandte Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Maler", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 141, "fields": {"name": "Religionen und Theologie", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Bischof", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 143, "fields": {"name": "Milit\u00e4r", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "General", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Verwaltungsjurist und Politiker", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 146, "fields": {"name": "Verwaltung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 147, "fields": {"name": "Ministerpr\u00e4sident", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Zoologe", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Geisteswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Arch\u00e4ologe", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Musik und darstellende Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Schauspieler und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Medizin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "P\u00e4diater", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Technik", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Milit\u00e4rtechniker, Offizier und ungarischer Freiheitsk\u00e4mpfer", "description": "", "parent_class": 157, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Beamter und Fachschriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Historiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Architekt", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Diplomat", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Sport", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Eiskunstl\u00e4uferin", "description": "", "parent_class": 163, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 165, "fields": {"name": "Gro\u00dfindustrielle", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 166, "fields": {"name": "Diverse", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Bautechniker", "description": "", "parent_class": 157, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Maler und Graphiker", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Politikerin und Schriftstellerin", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Schauspieler, Theaterdirektor und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Physiologe", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Jurist", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Fabrikant", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Schriftsteller und Journalist", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Internist", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Landesverteidiger und Schriftsteller", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 177, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Malerin", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 179, "fields": {"name": "Volkss\u00e4nger", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Sozial- und Wirtschaftswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Betriebswirtschafter", "description": "", "parent_class": 180, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 182, "fields": {"name": "Slawist und Linguist", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 183, "fields": {"name": "Admiral", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Stigmatisierte", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 187, "fields": {"name": "Pharmazeut", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Unterrichtswesen", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Lehrer", "description": "", "parent_class": 188, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Montanist und Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 191, "fields": {"name": "Maler und Radierer", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Philologe und Literarhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Biologe und Lehrer", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Physiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Offizier und Diplomat", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Theologe", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Ornithologe", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Diplomat und Politiker", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Lokalhistoriker, Gewerbetreibender und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Schriftsteller und Seelsorger", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Industrieller", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Mediziner", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Komponist, Chorleiter und Musikkritiker", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Kirchenhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Journalist und Lehrer", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Fabrikant und Politiker", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "S\u00e4nger und Schauspieler", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Chirurg", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 209, "fields": {"name": "Jurist und Beamter", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Feldmarschalleutnant und Sicherheitsbeamter", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Pianist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Politiker und Jurist", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 214, "fields": {"name": "Musiker und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Bildhauer", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Harfenist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 217, "fields": {"name": "Land- und Forstwirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 218, "fields": {"name": "Landwirt und Weinhauer", "description": "", "parent_class": 217, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 219, "fields": {"name": "Ordensangeh\u00f6riger und Stifter", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 220, "fields": {"name": "Historiker und Lehrer", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 221, "fields": {"name": "Politiker und Kaufmann", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 222, "fields": {"name": "Journalist und Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Maler und Karikaturist", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Offizier", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Bischof und Missionar", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 226, "fields": {"name": "P\u00e4dagogin und Physikerin", "description": "", "parent_class": 188, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 227, "fields": {"name": "Historiker und Byzantinist", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Archivar und Historiker", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Geistlicher, Historiker und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 230, "fields": {"name": "Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Offizier und Politiker", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "S\u00e4nger, Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 233, "fields": {"name": "Journalist und Politiker", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Pfadfinderf\u00fchrer und Offizier", "description": "", "parent_class": 166, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "F\u00fcrstbischof", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 236, "fields": {"name": "Place review comments", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 371, "fields": {"name": "first-order administrative division (ADM1)", "description": "a primary administrative division of a country, such as a state in the United States", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "third-order administrative division (ADM3)", "description": "a subdivision of a second-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "fifth-order administrative division (ADM5)", "description": "a subdivision of a fourth-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Krieg", "description": "auch Revolution und B\u00fcrgerkrieg, Unterkategorie ist Schlacht", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Attentat", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 384, "fields": {"name": "Epidemie", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Verleihung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Festzug", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Kongress", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "R\u00fccktritt", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Fertigstellung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 392, "fields": {"name": "Erstauff\u00fchrung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 394, "fields": {"name": "Berufung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Abspaltung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "nahm Teil an", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "hatte als Teilnehmer", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Schlacht", "description": "", "parent_class": 380, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Friedensverhandlung", "description": "", "parent_class": 380, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "historical first-order administrative division (ADM1H)", "description": "a former first-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "author", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Publikation", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Pseudonym", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "M\u00e4dchenname", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 432, "fields": {"name": "K\u00fcnstlername", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "fourth-order administrative division (ADM4)", "description": "a subdivision of a third-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 452, "fields": {"name": "second-order administrative division (ADM2)", "description": "a subdivision of a first-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Graf", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Herzog", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 462, "fields": {"name": "Freiherr", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Erzherzog", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "K\u00f6nig", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Kaiser", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 466, "fields": {"name": "F\u00fcrst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Freiin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Freifrau", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "F\u00fcrstin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 470, "fields": {"name": "Erzherz\u00f6gin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "K\u00f6nigin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 483, "fields": {"name": "Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Pianist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "place of birth", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "place of death", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "alternative Namensform", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 598, "fields": {"name": "Name laut \u00d6BL XML", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 606, "fields": {"name": "Ehename", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Taufname", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 653, "fields": {"name": "not defined", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1750, "fields": {"name": "Pianistin", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "Komponist und Musiklehrer", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5578, "fields": {"name": "Schriftstellerin, \u00dcbersetzerin und Pianistin", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5599, "fields": {"name": "Pianist, P\u00e4dagoge und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5608, "fields": {"name": "undefined", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5702, "fields": {"name": "situated in", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 8}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5708, "fields": {"name": "is superior of", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5709, "fields": {"name": "is succeeding", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5711, "fields": {"name": "is preceding", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5729, "fields": {"name": "section of populated place (PPLX)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5741, "fields": {"name": "family member", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5742, "fields": {"name": "friend", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5743, "fields": {"name": "affiliation", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 4}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5765, "fields": {"name": "administrative division (ADMD)", "description": "an administrative division of a country, undifferentiated as to administrative level", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5772, "fields": {"name": "research dataset", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 11}}, {"model": "vocabularies.relationbaseclass", "pk": 1, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 8, "fields": {"name_reverse": "includes"}}, {"model": "vocabularies.relationbaseclass", "pk": 398, "fields": {"name_reverse": "hatte als Teilnehmer"}}, {"model": "vocabularies.relationbaseclass", "pk": 399, "fields": {"name_reverse": "nahm Teil an"}}, {"model": "vocabularies.relationbaseclass", "pk": 424, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 595, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 596, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5608, "fields": {"name_reverse": "undefined"}}, {"model": "vocabularies.relationbaseclass", "pk": 5702, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5708, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5709, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5711, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5741, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5742, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5743, "fields": {"name_reverse": ""}}, {"model": "vocabularies.worktype", "pk": 429, "fields": {}}, {"model": "vocabularies.title", "pk": 460, "fields": {"abbreviation": "Gf."}}, {"model": "vocabularies.title", "pk": 461, "fields": {"abbreviation": "Hg."}}, {"model": "vocabularies.title", "pk": 462, "fields": {"abbreviation": "Frh."}}, {"model": "vocabularies.title", "pk": 463, "fields": {"abbreviation": "Erzhg."}}, {"model": "vocabularies.title", "pk": 464, "fields": {"abbreviation": "Kg."}}, {"model": "vocabularies.title", "pk": 465, "fields": {"abbreviation": "K."}}, {"model": "vocabularies.title", "pk": 466, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 467, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 468, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 469, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 470, "fields": {"abbreviation": "Erzhgn."}}, {"model": "vocabularies.title", "pk": 474, "fields": {"abbreviation": "Kngn."}}, {"model": "vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 133, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 135, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 137, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 138, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 139, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 141, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 143, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 146, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 147, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 149, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 165, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 166, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 172, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 177, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 179, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 182, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 183, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 187, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 191, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 209, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 214, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 217, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 218, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 219, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 220, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 221, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 222, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 226, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 227, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 230, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 233, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 483, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 1750, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 2054, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5578, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5599, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "vocabularies.placetype", "pk": 11, "fields": {}}, {"model": "vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "vocabularies.placetype", "pk": 371, "fields": {}}, {"model": "vocabularies.placetype", "pk": 373, "fields": {}}, {"model": "vocabularies.placetype", "pk": 375, "fields": {}}, {"model": "vocabularies.placetype", "pk": 420, "fields": {}}, {"model": "vocabularies.placetype", "pk": 443, "fields": {}}, {"model": "vocabularies.placetype", "pk": 452, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5729, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5765, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 380, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 382, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 384, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 385, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 386, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 388, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 390, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 391, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 392, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 393, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 394, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 396, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 400, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 401, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 4, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 6, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 430, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 431, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 432, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 433, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 597, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 598, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 606, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 612, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 653, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 3, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 125, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 5772, "fields": {}}, {"model": "vocabularies.texttype", "pk": 2, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 130, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 131, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 236, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.personpersonrelation", "pk": 5608, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5741, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5742, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 595, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 596, "fields": {}}, {"model": "vocabularies.personinstitutionrelation", "pk": 5743, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 398, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 399, "fields": {}}, {"model": "vocabularies.personworkrelation", "pk": 424, "fields": {}}, {"model": "vocabularies.institutionplacerelation", "pk": 5702, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5708, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5709, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5711, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 1, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 8, "fields": {}}, {"model": "highlighter.project", "pk": 1, "fields": {"name": "highlight places", "user": 12, "description": "", "base_url": "", "store_text": false}}, {"model": "highlighter.annotation", "pk": 237, "fields": {"start": 239, "end": 250, "orig_string": "Carl Czerny", "text": 47030, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92840]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 331, "fields": {"start": 879, "end": 899, "orig_string": "Ludwig van Beethoven", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92930]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 332, "fields": {"start": 1362, "end": 1380, "orig_string": "Sigismund Thalberg", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92931]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 333, "fields": {"start": 1383, "end": 1408, "orig_string": "Marie Leopoldine Blahetka", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92932]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 334, "fields": {"start": 1439, "end": 1454, "orig_string": "Franz von Liszt", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92933]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 335, "fields": {"start": 1736, "end": 1751, "orig_string": "Ignaz Moscheles", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92934]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 336, "fields": {"start": 3031, "end": 3043, "orig_string": "Anton Reicha", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92935]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1214, "fields": {"start": 40, "end": 55, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1215, "fields": {"start": 141, "end": 151, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1216, "fields": {"start": 225, "end": 262, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1217, "fields": {"start": 354, "end": 378, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1218, "fields": {"start": 451, "end": 478, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1219, "fields": {"start": 500, "end": 508, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1220, "fields": {"start": 549, "end": 566, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1221, "fields": {"start": 650, "end": 670, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "authtoken.token", "pk": "bb650ee43b63b5e13cbac9320157b08c36099452", "fields": {"user": 12, "created": "2016-08-26T08:01:26Z"}}, {"model": "guardian.groupobjectpermission", "pk": 122, "fields": {"permission": 23, "content_type": 8, "object_pk": "93803", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 623, "fields": {"permission": 24, "content_type": 8, "object_pk": "93803", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1010, "fields": {"permission": 23, "content_type": 8, "object_pk": "93003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1012, "fields": {"permission": 23, "content_type": 8, "object_pk": "93009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1013, "fields": {"permission": 23, "content_type": 8, "object_pk": "93012", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1014, "fields": {"permission": 23, "content_type": 8, "object_pk": "93015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1015, "fields": {"permission": 23, "content_type": 8, "object_pk": "93018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1016, "fields": {"permission": 23, "content_type": 8, "object_pk": "93021", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1017, "fields": {"permission": 23, "content_type": 8, "object_pk": "93024", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1018, "fields": {"permission": 23, "content_type": 8, "object_pk": "93028", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1019, "fields": {"permission": 23, "content_type": 8, "object_pk": "93031", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1020, "fields": {"permission": 23, "content_type": 8, "object_pk": "93034", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1023, "fields": {"permission": 23, "content_type": 8, "object_pk": "93044", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1024, "fields": {"permission": 23, "content_type": 8, "object_pk": "93047", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1025, "fields": {"permission": 23, "content_type": 8, "object_pk": "93050", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1026, "fields": {"permission": 23, "content_type": 8, "object_pk": "93056", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1027, "fields": {"permission": 23, "content_type": 8, "object_pk": "93059", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1028, "fields": {"permission": 23, "content_type": 8, "object_pk": "93065", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1029, "fields": {"permission": 23, "content_type": 8, "object_pk": "93068", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1030, "fields": {"permission": 23, "content_type": 8, "object_pk": "93071", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1031, "fields": {"permission": 23, "content_type": 8, "object_pk": "93074", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1048, "fields": {"permission": 23, "content_type": 8, "object_pk": "93136", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1102, "fields": {"permission": 23, "content_type": 8, "object_pk": "93328", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1104, "fields": {"permission": 23, "content_type": 8, "object_pk": "93337", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1107, "fields": {"permission": 23, "content_type": 8, "object_pk": "93352", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1111, "fields": {"permission": 23, "content_type": 8, "object_pk": "93366", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1112, "fields": {"permission": 23, "content_type": 8, "object_pk": "93369", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1115, "fields": {"permission": 23, "content_type": 8, "object_pk": "93378", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1117, "fields": {"permission": 23, "content_type": 8, "object_pk": "93387", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1119, "fields": {"permission": 23, "content_type": 8, "object_pk": "93393", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1120, "fields": {"permission": 23, "content_type": 8, "object_pk": "93396", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1121, "fields": {"permission": 23, "content_type": 8, "object_pk": "93400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1124, "fields": {"permission": 23, "content_type": 8, "object_pk": "93409", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1125, "fields": {"permission": 23, "content_type": 8, "object_pk": "93415", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1126, "fields": {"permission": 23, "content_type": 8, "object_pk": "93418", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1133, "fields": {"permission": 23, "content_type": 8, "object_pk": "93442", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1134, "fields": {"permission": 23, "content_type": 8, "object_pk": "93445", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1135, "fields": {"permission": 23, "content_type": 8, "object_pk": "93448", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1140, "fields": {"permission": 23, "content_type": 8, "object_pk": "93469", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1143, "fields": {"permission": 23, "content_type": 8, "object_pk": "93481", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1144, "fields": {"permission": 23, "content_type": 8, "object_pk": "93484", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1145, "fields": {"permission": 23, "content_type": 8, "object_pk": "93487", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1151, "fields": {"permission": 23, "content_type": 8, "object_pk": "93510", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1152, "fields": {"permission": 23, "content_type": 8, "object_pk": "93513", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1153, "fields": {"permission": 23, "content_type": 8, "object_pk": "93516", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1161, "fields": {"permission": 23, "content_type": 8, "object_pk": "93540", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1163, "fields": {"permission": 23, "content_type": 8, "object_pk": "93546", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1168, "fields": {"permission": 23, "content_type": 8, "object_pk": "93561", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1171, "fields": {"permission": 23, "content_type": 8, "object_pk": "93573", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1175, "fields": {"permission": 23, "content_type": 8, "object_pk": "93588", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1178, "fields": {"permission": 23, "content_type": 8, "object_pk": "93600", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1180, "fields": {"permission": 23, "content_type": 8, "object_pk": "93609", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1181, "fields": {"permission": 23, "content_type": 8, "object_pk": "93615", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1188, "fields": {"permission": 23, "content_type": 8, "object_pk": "93639", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1189, "fields": {"permission": 23, "content_type": 8, "object_pk": "93642", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1190, "fields": {"permission": 23, "content_type": 8, "object_pk": "93645", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1192, "fields": {"permission": 23, "content_type": 8, "object_pk": "93651", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1193, "fields": {"permission": 23, "content_type": 8, "object_pk": "93654", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1194, "fields": {"permission": 23, "content_type": 8, "object_pk": "93657", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1195, "fields": {"permission": 23, "content_type": 8, "object_pk": "93663", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1200, "fields": {"permission": 23, "content_type": 8, "object_pk": "93678", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1202, "fields": {"permission": 23, "content_type": 8, "object_pk": "93684", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1207, "fields": {"permission": 23, "content_type": 8, "object_pk": "93702", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1208, "fields": {"permission": 23, "content_type": 8, "object_pk": "93705", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1211, "fields": {"permission": 23, "content_type": 8, "object_pk": "93714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1219, "fields": {"permission": 23, "content_type": 8, "object_pk": "93748", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1225, "fields": {"permission": 23, "content_type": 8, "object_pk": "93779", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1227, "fields": {"permission": 23, "content_type": 8, "object_pk": "93785", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1229, "fields": {"permission": 23, "content_type": 8, "object_pk": "93791", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1232, "fields": {"permission": 23, "content_type": 8, "object_pk": "93800", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1233, "fields": {"permission": 23, "content_type": 8, "object_pk": "93809", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1235, "fields": {"permission": 23, "content_type": 8, "object_pk": "93815", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1236, "fields": {"permission": 23, "content_type": 8, "object_pk": "93818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1242, "fields": {"permission": 23, "content_type": 8, "object_pk": "93836", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1243, "fields": {"permission": 23, "content_type": 8, "object_pk": "93839", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1248, "fields": {"permission": 23, "content_type": 8, "object_pk": "93854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1250, "fields": {"permission": 23, "content_type": 8, "object_pk": "93863", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1251, "fields": {"permission": 23, "content_type": 8, "object_pk": "93866", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1255, "fields": {"permission": 23, "content_type": 8, "object_pk": "93878", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1257, "fields": {"permission": 23, "content_type": 8, "object_pk": "93891", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1258, "fields": {"permission": 23, "content_type": 8, "object_pk": "93894", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1260, "fields": {"permission": 23, "content_type": 8, "object_pk": "93900", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1261, "fields": {"permission": 23, "content_type": 8, "object_pk": "93903", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1263, "fields": {"permission": 23, "content_type": 8, "object_pk": "93909", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1266, "fields": {"permission": 23, "content_type": 8, "object_pk": "93921", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1269, "fields": {"permission": 23, "content_type": 8, "object_pk": "93933", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1270, "fields": {"permission": 23, "content_type": 8, "object_pk": "93940", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1272, "fields": {"permission": 23, "content_type": 8, "object_pk": "93946", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1275, "fields": {"permission": 23, "content_type": 8, "object_pk": "93955", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1276, "fields": {"permission": 23, "content_type": 8, "object_pk": "93958", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1277, "fields": {"permission": 23, "content_type": 8, "object_pk": "93961", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1278, "fields": {"permission": 23, "content_type": 8, "object_pk": "93964", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1279, "fields": {"permission": 23, "content_type": 8, "object_pk": "93967", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1280, "fields": {"permission": 23, "content_type": 8, "object_pk": "93970", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1286, "fields": {"permission": 23, "content_type": 8, "object_pk": "93988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1287, "fields": {"permission": 23, "content_type": 8, "object_pk": "93991", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1290, "fields": {"permission": 23, "content_type": 8, "object_pk": "94003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1291, "fields": {"permission": 23, "content_type": 8, "object_pk": "94006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1292, "fields": {"permission": 23, "content_type": 8, "object_pk": "94009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1295, "fields": {"permission": 23, "content_type": 8, "object_pk": "94018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1303, "fields": {"permission": 24, "content_type": 8, "object_pk": "93003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1305, "fields": {"permission": 24, "content_type": 8, "object_pk": "93009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1306, "fields": {"permission": 24, "content_type": 8, "object_pk": "93012", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1307, "fields": {"permission": 24, "content_type": 8, "object_pk": "93015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1308, "fields": {"permission": 24, "content_type": 8, "object_pk": "93018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1309, "fields": {"permission": 24, "content_type": 8, "object_pk": "93021", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1310, "fields": {"permission": 24, "content_type": 8, "object_pk": "93024", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1311, "fields": {"permission": 24, "content_type": 8, "object_pk": "93028", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1312, "fields": {"permission": 24, "content_type": 8, "object_pk": "93031", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1313, "fields": {"permission": 24, "content_type": 8, "object_pk": "93034", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1316, "fields": {"permission": 24, "content_type": 8, "object_pk": "93044", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1317, "fields": {"permission": 24, "content_type": 8, "object_pk": "93047", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1318, "fields": {"permission": 24, "content_type": 8, "object_pk": "93050", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1319, "fields": {"permission": 24, "content_type": 8, "object_pk": "93056", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1320, "fields": {"permission": 24, "content_type": 8, "object_pk": "93059", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1321, "fields": {"permission": 24, "content_type": 8, "object_pk": "93065", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1322, "fields": {"permission": 24, "content_type": 8, "object_pk": "93068", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1323, "fields": {"permission": 24, "content_type": 8, "object_pk": "93071", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1324, "fields": {"permission": 24, "content_type": 8, "object_pk": "93074", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1341, "fields": {"permission": 24, "content_type": 8, "object_pk": "93136", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1395, "fields": {"permission": 24, "content_type": 8, "object_pk": "93328", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1397, "fields": {"permission": 24, "content_type": 8, "object_pk": "93337", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1400, "fields": {"permission": 24, "content_type": 8, "object_pk": "93352", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1404, "fields": {"permission": 24, "content_type": 8, "object_pk": "93366", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1405, "fields": {"permission": 24, "content_type": 8, "object_pk": "93369", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1408, "fields": {"permission": 24, "content_type": 8, "object_pk": "93378", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1410, "fields": {"permission": 24, "content_type": 8, "object_pk": "93387", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1412, "fields": {"permission": 24, "content_type": 8, "object_pk": "93393", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1413, "fields": {"permission": 24, "content_type": 8, "object_pk": "93396", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1414, "fields": {"permission": 24, "content_type": 8, "object_pk": "93400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1417, "fields": {"permission": 24, "content_type": 8, "object_pk": "93409", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1418, "fields": {"permission": 24, "content_type": 8, "object_pk": "93415", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1419, "fields": {"permission": 24, "content_type": 8, "object_pk": "93418", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1426, "fields": {"permission": 24, "content_type": 8, "object_pk": "93442", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1427, "fields": {"permission": 24, "content_type": 8, "object_pk": "93445", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1428, "fields": {"permission": 24, "content_type": 8, "object_pk": "93448", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1433, "fields": {"permission": 24, "content_type": 8, "object_pk": "93469", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1436, "fields": {"permission": 24, "content_type": 8, "object_pk": "93481", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1437, "fields": {"permission": 24, "content_type": 8, "object_pk": "93484", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1438, "fields": {"permission": 24, "content_type": 8, "object_pk": "93487", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1444, "fields": {"permission": 24, "content_type": 8, "object_pk": "93510", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1445, "fields": {"permission": 24, "content_type": 8, "object_pk": "93513", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1446, "fields": {"permission": 24, "content_type": 8, "object_pk": "93516", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1454, "fields": {"permission": 24, "content_type": 8, "object_pk": "93540", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1456, "fields": {"permission": 24, "content_type": 8, "object_pk": "93546", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1461, "fields": {"permission": 24, "content_type": 8, "object_pk": "93561", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1464, "fields": {"permission": 24, "content_type": 8, "object_pk": "93573", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1468, "fields": {"permission": 24, "content_type": 8, "object_pk": "93588", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1471, "fields": {"permission": 24, "content_type": 8, "object_pk": "93600", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1473, "fields": {"permission": 24, "content_type": 8, "object_pk": "93609", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1474, "fields": {"permission": 24, "content_type": 8, "object_pk": "93615", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1481, "fields": {"permission": 24, "content_type": 8, "object_pk": "93639", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1482, "fields": {"permission": 24, "content_type": 8, "object_pk": "93642", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1483, "fields": {"permission": 24, "content_type": 8, "object_pk": "93645", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1485, "fields": {"permission": 24, "content_type": 8, "object_pk": "93651", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1486, "fields": {"permission": 24, "content_type": 8, "object_pk": "93654", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1487, "fields": {"permission": 24, "content_type": 8, "object_pk": "93657", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1488, "fields": {"permission": 24, "content_type": 8, "object_pk": "93663", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1493, "fields": {"permission": 24, "content_type": 8, "object_pk": "93678", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1495, "fields": {"permission": 24, "content_type": 8, "object_pk": "93684", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1500, "fields": {"permission": 24, "content_type": 8, "object_pk": "93702", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1501, "fields": {"permission": 24, "content_type": 8, "object_pk": "93705", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1504, "fields": {"permission": 24, "content_type": 8, "object_pk": "93714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1512, "fields": {"permission": 24, "content_type": 8, "object_pk": "93748", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1518, "fields": {"permission": 24, "content_type": 8, "object_pk": "93779", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1520, "fields": {"permission": 24, "content_type": 8, "object_pk": "93785", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1522, "fields": {"permission": 24, "content_type": 8, "object_pk": "93791", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1525, "fields": {"permission": 24, "content_type": 8, "object_pk": "93800", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1526, "fields": {"permission": 24, "content_type": 8, "object_pk": "93809", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1528, "fields": {"permission": 24, "content_type": 8, "object_pk": "93815", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1529, "fields": {"permission": 24, "content_type": 8, "object_pk": "93818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1535, "fields": {"permission": 24, "content_type": 8, "object_pk": "93836", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1536, "fields": {"permission": 24, "content_type": 8, "object_pk": "93839", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1541, "fields": {"permission": 24, "content_type": 8, "object_pk": "93854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1543, "fields": {"permission": 24, "content_type": 8, "object_pk": "93863", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1544, "fields": {"permission": 24, "content_type": 8, "object_pk": "93866", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1548, "fields": {"permission": 24, "content_type": 8, "object_pk": "93878", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1550, "fields": {"permission": 24, "content_type": 8, "object_pk": "93891", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1551, "fields": {"permission": 24, "content_type": 8, "object_pk": "93894", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1553, "fields": {"permission": 24, "content_type": 8, "object_pk": "93900", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1554, "fields": {"permission": 24, "content_type": 8, "object_pk": "93903", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1556, "fields": {"permission": 24, "content_type": 8, "object_pk": "93909", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1559, "fields": {"permission": 24, "content_type": 8, "object_pk": "93921", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1562, "fields": {"permission": 24, "content_type": 8, "object_pk": "93933", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1563, "fields": {"permission": 24, "content_type": 8, "object_pk": "93940", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1565, "fields": {"permission": 24, "content_type": 8, "object_pk": "93946", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1568, "fields": {"permission": 24, "content_type": 8, "object_pk": "93955", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1569, "fields": {"permission": 24, "content_type": 8, "object_pk": "93958", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1570, "fields": {"permission": 24, "content_type": 8, "object_pk": "93961", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1571, "fields": {"permission": 24, "content_type": 8, "object_pk": "93964", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1572, "fields": {"permission": 24, "content_type": 8, "object_pk": "93967", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1573, "fields": {"permission": 24, "content_type": 8, "object_pk": "93970", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1579, "fields": {"permission": 24, "content_type": 8, "object_pk": "93988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1580, "fields": {"permission": 24, "content_type": 8, "object_pk": "93991", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1583, "fields": {"permission": 24, "content_type": 8, "object_pk": "94003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1584, "fields": {"permission": 24, "content_type": 8, "object_pk": "94006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1585, "fields": {"permission": 24, "content_type": 8, "object_pk": "94009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1588, "fields": {"permission": 24, "content_type": 8, "object_pk": "94018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 3973, "fields": {"permission": 23, "content_type": 8, "object_pk": "88902", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 4240, "fields": {"permission": 23, "content_type": 8, "object_pk": "92412", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 7515, "fields": {"permission": 24, "content_type": 8, "object_pk": "88902", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 7782, "fields": {"permission": 24, "content_type": 8, "object_pk": "92412", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 9760, "fields": {"permission": 23, "content_type": 8, "object_pk": "27245", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 13575, "fields": {"permission": 23, "content_type": 8, "object_pk": "46414", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 15601, "fields": {"permission": 23, "content_type": 8, "object_pk": "56248", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 16957, "fields": {"permission": 23, "content_type": 8, "object_pk": "62757", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 22688, "fields": {"permission": 23, "content_type": 8, "object_pk": "88219", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 23454, "fields": {"permission": 24, "content_type": 8, "object_pk": "27245", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 27269, "fields": {"permission": 24, "content_type": 8, "object_pk": "46414", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 29295, "fields": {"permission": 24, "content_type": 8, "object_pk": "56248", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 30651, "fields": {"permission": 24, "content_type": 8, "object_pk": "62757", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 36382, "fields": {"permission": 24, "content_type": 8, "object_pk": "88219", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37445, "fields": {"permission": 23, "content_type": 8, "object_pk": "92603", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37550, "fields": {"permission": 24, "content_type": 8, "object_pk": "92603", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37575, "fields": {"permission": 119, "content_type": 40, "object_pk": "98116", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37576, "fields": {"permission": 120, "content_type": 40, "object_pk": "98116", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39399, "fields": {"permission": 26, "content_type": 9, "object_pk": "26", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39454, "fields": {"permission": 26, "content_type": 9, "object_pk": "133", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39478, "fields": {"permission": 26, "content_type": 9, "object_pk": "183", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39549, "fields": {"permission": 26, "content_type": 9, "object_pk": "327", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39579, "fields": {"permission": 26, "content_type": 9, "object_pk": "384", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39588, "fields": {"permission": 26, "content_type": 9, "object_pk": "400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39822, "fields": {"permission": 26, "content_type": 9, "object_pk": "831", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39872, "fields": {"permission": 26, "content_type": 9, "object_pk": "926", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40122, "fields": {"permission": 26, "content_type": 9, "object_pk": "1390", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40142, "fields": {"permission": 26, "content_type": 9, "object_pk": "1424", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40157, "fields": {"permission": 26, "content_type": 9, "object_pk": "1454", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40292, "fields": {"permission": 26, "content_type": 9, "object_pk": "1701", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40301, "fields": {"permission": 26, "content_type": 9, "object_pk": "1718", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40454, "fields": {"permission": 26, "content_type": 9, "object_pk": "2006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40489, "fields": {"permission": 26, "content_type": 9, "object_pk": "2072", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40496, "fields": {"permission": 26, "content_type": 9, "object_pk": "2085", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40538, "fields": {"permission": 26, "content_type": 9, "object_pk": "2161", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40543, "fields": {"permission": 26, "content_type": 9, "object_pk": "2170", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40557, "fields": {"permission": 26, "content_type": 9, "object_pk": "2197", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40602, "fields": {"permission": 26, "content_type": 9, "object_pk": "2281", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40718, "fields": {"permission": 26, "content_type": 9, "object_pk": "2489", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40779, "fields": {"permission": 26, "content_type": 9, "object_pk": "2602", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40911, "fields": {"permission": 26, "content_type": 9, "object_pk": "2854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41046, "fields": {"permission": 26, "content_type": 9, "object_pk": "3105", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41076, "fields": {"permission": 26, "content_type": 9, "object_pk": "3162", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41582, "fields": {"permission": 26, "content_type": 9, "object_pk": "4096", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41674, "fields": {"permission": 26, "content_type": 9, "object_pk": "4269", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41937, "fields": {"permission": 26, "content_type": 9, "object_pk": "4767", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41997, "fields": {"permission": 26, "content_type": 9, "object_pk": "4877", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42221, "fields": {"permission": 26, "content_type": 9, "object_pk": "5294", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42228, "fields": {"permission": 26, "content_type": 9, "object_pk": "5308", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42318, "fields": {"permission": 26, "content_type": 9, "object_pk": "5478", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42436, "fields": {"permission": 26, "content_type": 9, "object_pk": "5691", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42466, "fields": {"permission": 26, "content_type": 9, "object_pk": "5749", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42602, "fields": {"permission": 26, "content_type": 9, "object_pk": "6004", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42775, "fields": {"permission": 26, "content_type": 9, "object_pk": "6324", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42985, "fields": {"permission": 26, "content_type": 9, "object_pk": "6700", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43120, "fields": {"permission": 26, "content_type": 9, "object_pk": "6947", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43396, "fields": {"permission": 26, "content_type": 9, "object_pk": "7454", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43489, "fields": {"permission": 26, "content_type": 9, "object_pk": "7622", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43690, "fields": {"permission": 26, "content_type": 9, "object_pk": "7986", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43961, "fields": {"permission": 26, "content_type": 9, "object_pk": "8482", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44131, "fields": {"permission": 26, "content_type": 9, "object_pk": "8798", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44397, "fields": {"permission": 26, "content_type": 9, "object_pk": "9287", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44489, "fields": {"permission": 26, "content_type": 9, "object_pk": "9455", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44499, "fields": {"permission": 26, "content_type": 9, "object_pk": "9475", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44638, "fields": {"permission": 26, "content_type": 9, "object_pk": "9735", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44790, "fields": {"permission": 26, "content_type": 9, "object_pk": "10015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44924, "fields": {"permission": 26, "content_type": 9, "object_pk": "10265", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45212, "fields": {"permission": 26, "content_type": 9, "object_pk": "10793", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45448, "fields": {"permission": 26, "content_type": 9, "object_pk": "11238", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45620, "fields": {"permission": 26, "content_type": 9, "object_pk": "11556", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45749, "fields": {"permission": 26, "content_type": 9, "object_pk": "11799", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45969, "fields": {"permission": 26, "content_type": 9, "object_pk": "12211", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46265, "fields": {"permission": 26, "content_type": 9, "object_pk": "12758", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46538, "fields": {"permission": 26, "content_type": 9, "object_pk": "13253", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46611, "fields": {"permission": 26, "content_type": 9, "object_pk": "13382", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46791, "fields": {"permission": 26, "content_type": 9, "object_pk": "13714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46937, "fields": {"permission": 26, "content_type": 9, "object_pk": "13987", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 47277, "fields": {"permission": 26, "content_type": 9, "object_pk": "14608", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48165, "fields": {"permission": 26, "content_type": 9, "object_pk": "16242", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48200, "fields": {"permission": 26, "content_type": 9, "object_pk": "16310", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48351, "fields": {"permission": 26, "content_type": 9, "object_pk": "16594", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48496, "fields": {"permission": 26, "content_type": 9, "object_pk": "16864", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49327, "fields": {"permission": 26, "content_type": 9, "object_pk": "18374", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49341, "fields": {"permission": 26, "content_type": 9, "object_pk": "18400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49771, "fields": {"permission": 26, "content_type": 9, "object_pk": "19215", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49976, "fields": {"permission": 26, "content_type": 9, "object_pk": "19599", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50488, "fields": {"permission": 26, "content_type": 9, "object_pk": "20549", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50550, "fields": {"permission": 26, "content_type": 9, "object_pk": "20659", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50668, "fields": {"permission": 26, "content_type": 9, "object_pk": "20872", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50731, "fields": {"permission": 26, "content_type": 9, "object_pk": "20988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51189, "fields": {"permission": 26, "content_type": 9, "object_pk": "21818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51199, "fields": {"permission": 26, "content_type": 9, "object_pk": "22216", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51204, "fields": {"permission": 26, "content_type": 9, "object_pk": "22259", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51212, "fields": {"permission": 26, "content_type": 9, "object_pk": "22322", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51215, "fields": {"permission": 26, "content_type": 9, "object_pk": "22354", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51226, "fields": {"permission": 26, "content_type": 9, "object_pk": "22475", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51230, "fields": {"permission": 26, "content_type": 9, "object_pk": "22494", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51235, "fields": {"permission": 26, "content_type": 9, "object_pk": "22526", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51239, "fields": {"permission": 26, "content_type": 9, "object_pk": "22545", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51241, "fields": {"permission": 26, "content_type": 9, "object_pk": "22558", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51244, "fields": {"permission": 26, "content_type": 9, "object_pk": "22570", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59098, "fields": {"permission": 26, "content_type": 9, "object_pk": "93025", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59099, "fields": {"permission": 26, "content_type": 9, "object_pk": "93035", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59100, "fields": {"permission": 26, "content_type": 9, "object_pk": "93051", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59102, "fields": {"permission": 26, "content_type": 9, "object_pk": "93060", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59104, "fields": {"permission": 26, "content_type": 9, "object_pk": "93075", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59141, "fields": {"permission": 26, "content_type": 9, "object_pk": "93379", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59143, "fields": {"permission": 26, "content_type": 9, "object_pk": "93397", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59144, "fields": {"permission": 26, "content_type": 9, "object_pk": "93410", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59148, "fields": {"permission": 26, "content_type": 9, "object_pk": "93449", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59158, "fields": {"permission": 26, "content_type": 9, "object_pk": "93562", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59166, "fields": {"permission": 26, "content_type": 9, "object_pk": "93610", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59170, "fields": {"permission": 26, "content_type": 9, "object_pk": "93658", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59174, "fields": {"permission": 26, "content_type": 9, "object_pk": "93715", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59181, "fields": {"permission": 26, "content_type": 9, "object_pk": "93749", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59190, "fields": {"permission": 26, "content_type": 9, "object_pk": "93804", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59192, "fields": {"permission": 26, "content_type": 9, "object_pk": "93855", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59194, "fields": {"permission": 26, "content_type": 9, "object_pk": "93879", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59203, "fields": {"permission": 26, "content_type": 9, "object_pk": "93934", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59205, "fields": {"permission": 26, "content_type": 9, "object_pk": "93937", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59391, "fields": {"permission": 122, "content_type": 41, "object_pk": "99591", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59392, "fields": {"permission": 123, "content_type": 41, "object_pk": "99591", "group": 2}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2016-04-04T13:17:57Z", "user": 11, "content_type": 10, "object_id": "18", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "15", "object_repr": "Ehrenmitglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "14", "object_repr": "Wirkliches Mitglied (w. M.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "13", "object_repr": "Korrespondierendes Mitglied im Ausland (k. M. A.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "12", "object_repr": "Korrespondierendes Mitglied im Inland (k. M. I.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2016-04-05T15:41:22Z", "user": 11, "content_type": 32, "object_id": "7", "object_repr": "ist Nachfolger von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2016-04-05T15:41:39Z", "user": 11, "content_type": 32, "object_id": "5", "object_repr": "ist Vorg\u00e4nger von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2016-04-05T15:42:02Z", "user": 11, "content_type": 32, "object_id": "8", "object_repr": "ist Teil von", "action_flag": 2, "change_message": "Changed name."}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2016-04-05T15:43:00Z", "user": 11, "content_type": 32, "object_id": "8", "object_repr": "ist Teil von", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2016-04-07T11:10:33Z", "user": 12, "content_type": 4, "object_id": "13", "object_repr": "oebl", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2016-04-07T11:11:00Z", "user": 12, "content_type": 4, "object_id": "13", "object_repr": "oebl", "action_flag": 2, "change_message": "Changed is_staff and user_permissions."}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2016-04-13T15:46:02Z", "user": 12, "content_type": 24, "object_id": "40", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2016-04-14T11:55:13Z", "user": 12, "content_type": 24, "object_id": "50", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2016-04-14T11:55:29Z", "user": 12, "content_type": 24, "object_id": "53", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2016-04-14T12:41:46Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2016-04-15T07:22:05Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2016-04-15T07:22:26Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2016-04-18T08:22:56Z", "user": 11, "content_type": 25, "object_id": "105", "object_repr": "ist Vater", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2016-04-18T08:23:07Z", "user": 11, "content_type": 25, "object_id": "106", "object_repr": "hat Vater", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "38", "object_repr": "hat Wirkliches Mitglied (w. M.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "37", "object_repr": "hat Ehrenmitglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "36", "object_repr": "hat Korrespondierendes Mitglied im Ausland (k. M. A.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "35", "object_repr": "hat Korrespondierendes Mitglied im Inland (k. M. I.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "34", "object_repr": "hat Kuratorstellvertreter(in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "33", "object_repr": "hat Pr\u00e4sident(in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "32", "object_repr": "hat Miglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "31", "object_repr": "hat Obmann/Obfrau", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2016-04-18T11:07:39Z", "user": 12, "content_type": 56, "object_id": "6", "object_repr": "testcollection 18.4", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2016-04-18T11:16:20Z", "user": 12, "content_type": 24, "object_id": "107", "object_repr": "Editlogs", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2016-04-26T09:31:21Z", "user": 12, "content_type": 26, "object_id": "44", "object_repr": "place of death", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2016-04-26T09:31:47Z", "user": 12, "content_type": 26, "object_id": "43", "object_repr": "place of birth", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2016-04-27T10:26:06Z", "user": 12, "content_type": 31, "object_id": "108", "object_repr": "located in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2016-04-28T09:03:10Z", "user": 12, "content_type": 26, "object_id": "109", "object_repr": "studied in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2016-05-02T10:05:25Z", "user": 11, "content_type": 25, "object_id": "100", "object_repr": "family member", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2016-05-02T10:07:16Z", "user": 11, "content_type": 26, "object_id": "44", "object_repr": "died in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2016-05-02T10:07:33Z", "user": 11, "content_type": 26, "object_id": "43", "object_repr": "born in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2016-05-03T09:51:29Z", "user": 12, "content_type": 24, "object_id": "110", "object_repr": "Place accuracy test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2016-05-03T11:01:33Z", "user": 12, "content_type": 40, "object_id": "23993", "object_repr": "Defregger, Franz von (studied in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2016-05-09T08:58:18Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2016-05-09T08:58:25Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2016-05-09T10:07:01Z", "user": 12, "content_type": 24, "object_id": "236", "object_repr": "Place review comments", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2016-05-09T10:10:38Z", "user": 12, "content_type": 24, "object_id": "2", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2016-05-23T07:03:50Z", "user": 12, "content_type": 27, "object_id": "279", "object_repr": "is Vizepr\u00e4sident von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2016-05-23T09:31:15Z", "user": 12, "content_type": 26, "object_id": "237", "object_repr": "wirkte in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "245", "object_repr": "Kind", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "244", "object_repr": "Eltern", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "243", "object_repr": "Vater", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "242", "object_repr": "Mutter", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2016-05-25T11:21:38Z", "user": 12, "content_type": 25, "object_id": "421", "object_repr": "Vater/Mutter", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2016-06-06T07:44:47Z", "user": 12, "content_type": 17, "object_id": "459", "object_repr": "Graf", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2016-06-06T07:45:44Z", "user": 12, "content_type": 17, "object_id": "459", "object_repr": "Graf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2016-06-21T09:34:32Z", "user": 12, "content_type": 3, "object_id": "2", "object_repr": "apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2016-06-21T09:34:54Z", "user": 12, "content_type": 4, "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 475, "fields": {"action_time": "2016-06-23T13:50:16Z", "user": 11, "content_type": 25, "object_id": "422", "object_repr": "family member", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 476, "fields": {"action_time": "2016-06-23T13:50:22Z", "user": 11, "content_type": 25, "object_id": "423", "object_repr": "friend", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2016-08-02T08:41:51Z", "user": 12, "content_type": 61, "object_id": "1", "object_repr": "highlight places", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2016-08-02T08:43:38Z", "user": 12, "content_type": 64, "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2016-08-02T08:44:13Z", "user": 12, "content_type": 65, "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2016-08-02T08:45:35Z", "user": 12, "content_type": 70, "object_id": "1", "object_repr": "\u00d6BL Haupttext", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2016-08-02T08:45:50Z", "user": 12, "content_type": 70, "object_id": "2", "object_repr": "\u00d6bl Kurzinfo", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2016-08-02T08:49:51Z", "user": 12, "content_type": 64, "object_id": "2", "object_repr": "Person Institution Form", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2016-08-02T08:50:13Z", "user": 12, "content_type": 65, "object_id": "2", "object_repr": "Person Institution Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2016-08-05T09:01:30Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "KaiserM", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2016-08-05T09:02:10Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "KaiserM", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2016-08-05T09:02:40Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2016-08-05T12:44:55Z", "user": 12, "content_type": 4, "object_id": "15", "object_repr": "JKerschner", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2016-08-05T12:45:10Z", "user": 12, "content_type": 4, "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2016-08-22T14:47:23Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2016-08-22T14:47:41Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2016-08-26T08:00:33Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2016-08-26T08:00:50Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "is_staff, is_superuser und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2016-08-26T08:01:14Z", "user": 12, "content_type": 72, "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2016-08-26T08:01:26Z", "user": 12, "content_type": 72, "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2016-09-05T08:05:05Z", "user": 12, "content_type": 4, "object_id": "18", "object_repr": "CGruber", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2016-09-05T08:05:29Z", "user": 12, "content_type": 4, "object_id": "18", "object_repr": "CGruber", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2016-09-06T10:50:39Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2016-09-06T10:51:00Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2016-09-06T14:33:23Z", "user": 12, "content_type": 25, "object_id": "5608", "object_repr": "undefined", "action_flag": 2, "change_message": "name_reverse ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2016-09-07T10:05:46Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2016-09-07T10:05:53Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2016-09-07T12:36:40Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2016-09-07T12:36:55Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2016-09-21T09:15:20Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2016-09-21T09:15:41Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2016-10-03T14:34:28Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2016-10-03T14:34:40Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "is_staff ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2016-10-03T14:34:56Z", "user": 12, "content_type": 3, "object_id": "3", "object_repr": "staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2016-10-03T14:39:11Z", "user": 12, "content_type": 3, "object_id": "3", "object_repr": "staribacher", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2016-10-03T14:39:40Z", "user": 12, "content_type": 56, "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2016-10-03T14:45:29Z", "user": 12, "content_type": 23, "object_id": "5772", "object_repr": "research dataset", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2016-10-03T14:45:47Z", "user": 12, "content_type": 56, "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "collection_type ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2016-10-03T14:47:21Z", "user": 12, "content_type": 72, "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2016-10-06T06:56:20Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2016-10-06T06:56:40Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2016-10-06T06:58:12Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2016-10-06T06:58:30Z", "user": 12, "content_type": 56, "object_id": "17", "object_repr": "Mittelalter 7.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2016-10-06T07:00:34Z", "user": 12, "content_type": 56, "object_id": "16", "object_repr": "\u00d6BL additional import missing XMLs 7.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2016-10-06T07:00:50Z", "user": 12, "content_type": 56, "object_id": "15", "object_repr": "K\u00fcnstlerhaus 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2016-10-06T07:01:03Z", "user": 12, "content_type": 56, "object_id": "11", "object_repr": "Presse 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2016-10-06T07:01:25Z", "user": 12, "content_type": 56, "object_id": "7", "object_repr": "\u00d6BL complete import test 30.8.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2016-10-06T07:01:46Z", "user": 12, "content_type": 56, "object_id": "8", "object_repr": "\u00d6BL additional import 66lfg 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2016-10-06T07:01:55Z", "user": 12, "content_type": 56, "object_id": "9", "object_repr": "\u00d6BL additional import 4online 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2016-10-06T07:31:41Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2016-10-06T07:32:15Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2016-10-07T16:13:36Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2016-10-07T16:13:56Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2016-10-07T16:14:12Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2016-10-07T16:14:34Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "BKrautgartner", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2016-10-12T12:25:02Z", "user": 12, "content_type": 4, "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2016-10-12T12:25:40Z", "user": 12, "content_type": 4, "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2016-10-12T12:27:20Z", "user": 12, "content_type": 72, "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2016-10-14T11:10:59Z", "user": 12, "content_type": 64, "object_id": "3", "object_repr": "Person Person", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2016-10-14T11:12:53Z", "user": 12, "content_type": 65, "object_id": "3", "object_repr": "Person Person Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2016-10-14T11:13:18Z", "user": 12, "content_type": 64, "object_id": "1", "object_repr": "Person Place Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2016-10-14T11:13:24Z", "user": 12, "content_type": 64, "object_id": "3", "object_repr": "Person Person Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2016-10-24T09:04:11Z", "user": 12, "content_type": 4, "object_id": "24", "object_repr": "PRumpolt", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2016-10-24T09:04:27Z", "user": 12, "content_type": 4, "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2016-10-25T10:05:10Z", "user": 12, "content_type": 71, "object_id": "1", "object_repr": "Default", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2016-12-02T15:27:02Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 830, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "4", "object_repr": "ggaenser", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 831, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "2", "object_repr": "ghoffmann", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 832, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "7", "object_repr": "imarkova", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 833, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "10", "object_repr": "jfeichtinger", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 834, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "3", "object_repr": "ngoll", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 835, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "6", "object_repr": "rburgstaller", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 836, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "5", "object_repr": "sgoellner", "action_flag": 3, "change_message": ""}}] \ No newline at end of file +[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "labels", "model": "label"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "entities", "model": "person"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "entities", "model": "place"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "entities", "model": "event"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "entities", "model": "work"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "highlighter", "model": "project"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "highlighter", "model": "annotation"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "highlighter", "model": "vocabularyapi"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "highlighter", "model": "menuentry"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "pk": 67, "fields": {"app_label": "reversion", "model": "version"}}, {"model": "contenttypes.contenttype", "pk": 68, "fields": {"app_label": "metainfo", "model": "uricandidate"}}, {"model": "contenttypes.contenttype", "pk": 69, "fields": {"app_label": "vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "pk": 70, "fields": {"app_label": "highlighter", "model": "texthigh"}}, {"model": "contenttypes.contenttype", "pk": 71, "fields": {"app_label": "highlighter", "model": "annotationproject"}}, {"model": "contenttypes.contenttype", "pk": 72, "fields": {"app_label": "authtoken", "model": "token"}}, {"model": "contenttypes.contenttype", "pk": 73, "fields": {"app_label": "guardian", "model": "userobjectpermission"}}, {"model": "contenttypes.contenttype", "pk": 74, "fields": {"app_label": "guardian", "model": "groupobjectpermission"}}, {"model": "sessions.session", "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-12T09:16:06Z"}}, {"model": "sessions.session", "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-26T10:05:04Z"}}, {"model": "sessions.session", "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-28T09:36:22Z"}}, {"model": "sessions.session", "pk": "17188fqkhwwemz91phd0gdgifcpuw531", "fields": {"session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==", "expire_date": "2016-12-23T14:35:05Z"}}, {"model": "sessions.session", "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn", "fields": {"session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9", "expire_date": "2016-11-10T13:45:57Z"}}, {"model": "sessions.session", "pk": "1iccsxivof263x10kvzx24cpvfuisbsi", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T10:09:36Z"}}, {"model": "sessions.session", "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T08:25:02Z"}}, {"model": "sessions.session", "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-03T06:28:05Z"}}, {"model": "sessions.session", "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-29T09:34:16Z"}}, {"model": "sessions.session", "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-17T10:44:53Z"}}, {"model": "sessions.session", "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T13:49:39Z"}}, {"model": "sessions.session", "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:08:50Z"}}, {"model": "sessions.session", "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-10T08:17:25Z"}}, {"model": "sessions.session", "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-26T14:15:06Z"}}, {"model": "sessions.session", "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:51:31Z"}}, {"model": "sessions.session", "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T13:15:39Z"}}, {"model": "sessions.session", "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-13T08:50:52Z"}}, {"model": "sessions.session", "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T15:43:29Z"}}, {"model": "sessions.session", "pk": "3f0z4r7zm0tht811km9py85tymlqp00t", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T16:42:42Z"}}, {"model": "sessions.session", "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T12:37:18Z"}}, {"model": "sessions.session", "pk": "3jko01lpmo2mga91cswnbozalltzmk3y", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-04T09:48:21Z"}}, {"model": "sessions.session", "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T07:40:34Z"}}, {"model": "sessions.session", "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-05-12T13:36:05Z"}}, {"model": "sessions.session", "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T09:34:31Z"}}, {"model": "sessions.session", "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:28:30Z"}}, {"model": "sessions.session", "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-08T08:03:34Z"}}, {"model": "sessions.session", "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-16T15:23:26Z"}}, {"model": "sessions.session", "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-26T16:58:24Z"}}, {"model": "sessions.session", "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a", "fields": {"session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=", "expire_date": "2016-03-28T08:35:56Z"}}, {"model": "sessions.session", "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:15:48Z"}}, {"model": "sessions.session", "pk": "530ad4x705b6e19mkq2p46a9hvib918m", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T10:26:56Z"}}, {"model": "sessions.session", "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-20T13:12:52Z"}}, {"model": "sessions.session", "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-25T10:51:39Z"}}, {"model": "sessions.session", "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw", "fields": {"session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2016-12-29T15:38:59Z"}}, {"model": "sessions.session", "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-21T14:12:41Z"}}, {"model": "sessions.session", "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:22:04Z"}}, {"model": "sessions.session", "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-09T08:10:25Z"}}, {"model": "sessions.session", "pk": "6k16reryrvgvlux4peggv2dwnpdw018v", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-08-26T11:22:37Z"}}, {"model": "sessions.session", "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429", "fields": {"session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T12:26:52Z"}}, {"model": "sessions.session", "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T10:37:41Z"}}, {"model": "sessions.session", "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-08T10:43:50Z"}}, {"model": "sessions.session", "pk": "7c01s688teucprvj9wuoiuebtl8bff2d", "fields": {"session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-21T11:56:57Z"}}, {"model": "sessions.session", "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T11:41:48Z"}}, {"model": "sessions.session", "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-17T10:07:28Z"}}, {"model": "sessions.session", "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-06-21T12:35:35Z"}}, {"model": "sessions.session", "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T11:46:41Z"}}, {"model": "sessions.session", "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-12-14T16:16:28Z"}}, {"model": "sessions.session", "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-31T10:09:32Z"}}, {"model": "sessions.session", "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-12T08:26:15Z"}}, {"model": "sessions.session", "pk": "9mf1xzu1346ss0edpll2dwougyoippqv", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-01-02T13:44:56Z"}}, {"model": "sessions.session", "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-07T09:00:09Z"}}, {"model": "sessions.session", "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-11T11:10:15Z"}}, {"model": "sessions.session", "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg", "fields": {"session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2017-01-03T09:23:20Z"}}, {"model": "sessions.session", "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T14:19:29Z"}}, {"model": "sessions.session", "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-04T08:02:47Z"}}, {"model": "sessions.session", "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-20T19:21:08Z"}}, {"model": "sessions.session", "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T11:54:57Z"}}, {"model": "sessions.session", "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T07:44:25Z"}}, {"model": "sessions.session", "pk": "be63mi87uoc2xmvbgcrh8w10gxmddy59", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2017-01-04T09:48:12Z"}}, {"model": "sessions.session", "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T12:01:50Z"}}, {"model": "sessions.session", "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T09:47:15Z"}}, {"model": "sessions.session", "pk": "c0mebo725euvitftiukwfw6dxip0koqs", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-21T08:38:04Z"}}, {"model": "sessions.session", "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:30:05Z"}}, {"model": "sessions.session", "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-10-19T15:55:59Z"}}, {"model": "sessions.session", "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T07:52:18Z"}}, {"model": "sessions.session", "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-11-07T12:37:20Z"}}, {"model": "sessions.session", "pk": "da9ald43zlct5w8wjy2jer4uuw1me508", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T07:57:42Z"}}, {"model": "sessions.session", "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-12T19:05:43Z"}}, {"model": "sessions.session", "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T14:05:09Z"}}, {"model": "sessions.session", "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T08:00:35Z"}}, {"model": "sessions.session", "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-16T13:41:51Z"}}, {"model": "sessions.session", "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T10:15:28Z"}}, {"model": "sessions.session", "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T08:42:22Z"}}, {"model": "sessions.session", "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y", "fields": {"session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-14T11:11:40Z"}}, {"model": "sessions.session", "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-14T14:53:54Z"}}, {"model": "sessions.session", "pk": "erwufifibov75oo9c5uklkwh5itqskcj", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-27T09:07:15Z"}}, {"model": "sessions.session", "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-21T15:40:51Z"}}, {"model": "sessions.session", "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-10-26T12:38:51Z"}}, {"model": "sessions.session", "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:23Z"}}, {"model": "sessions.session", "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-06-08T11:35:30Z"}}, {"model": "sessions.session", "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-06-07T13:29:28Z"}}, {"model": "sessions.session", "pk": "gi62wdj66c5j78be7q372m29mv6gdora", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-28T08:16:12Z"}}, {"model": "sessions.session", "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-21T07:03:28Z"}}, {"model": "sessions.session", "pk": "gjuve267k4260hvyils2ls2496ak9z37", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T17:18:28Z"}}, {"model": "sessions.session", "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T07:59:21Z"}}, {"model": "sessions.session", "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-05T14:43:01Z"}}, {"model": "sessions.session", "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-24T08:40:28Z"}}, {"model": "sessions.session", "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-16T08:59:39Z"}}, {"model": "sessions.session", "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-30T09:46:34Z"}}, {"model": "sessions.session", "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it", "fields": {"session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9", "expire_date": "2016-09-19T08:08:24Z"}}, {"model": "sessions.session", "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-20T06:13:45Z"}}, {"model": "sessions.session", "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-31T14:52:42Z"}}, {"model": "sessions.session", "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T08:07:45Z"}}, {"model": "sessions.session", "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-15T11:14:21Z"}}, {"model": "sessions.session", "pk": "imakeqah5lviaceijxe33lnovxbek8nu", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T16:03:56Z"}}, {"model": "sessions.session", "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-06T07:28:47Z"}}, {"model": "sessions.session", "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T13:05:08Z"}}, {"model": "sessions.session", "pk": "jghkwi5l48e732l6senbb027s7ww69fb", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T09:49:32Z"}}, {"model": "sessions.session", "pk": "ka3msywv1o7njsbgs3q2631094nuqclo", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-19T15:12:15Z"}}, {"model": "sessions.session", "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-05-31T10:05:18Z"}}, {"model": "sessions.session", "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-23T05:35:47Z"}}, {"model": "sessions.session", "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec", "fields": {"session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-30T19:29:46Z"}}, {"model": "sessions.session", "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-25T15:37:43Z"}}, {"model": "sessions.session", "pk": "knqvpsn88en5yygqemcw6edtg2jt8249", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T09:44:34Z"}}, {"model": "sessions.session", "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T06:27:59Z"}}, {"model": "sessions.session", "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:21:45Z"}}, {"model": "sessions.session", "pk": "le4a8wynksh1utfu4n5kz3o0tky32990", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-14T11:45:48Z"}}, {"model": "sessions.session", "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-01T14:58:57Z"}}, {"model": "sessions.session", "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-04T13:24:20Z"}}, {"model": "sessions.session", "pk": "m787xp45lpgoa269n6728z0b37p8iy1q", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:28:33Z"}}, {"model": "sessions.session", "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-19T19:17:17Z"}}, {"model": "sessions.session", "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-23T16:20:25Z"}}, {"model": "sessions.session", "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-23T13:26:40Z"}}, {"model": "sessions.session", "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-16T10:14:08Z"}}, {"model": "sessions.session", "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-09-14T14:54:12Z"}}, {"model": "sessions.session", "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-22T15:22:58Z"}}, {"model": "sessions.session", "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg", "fields": {"session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=", "expire_date": "2016-04-11T20:27:35Z"}}, {"model": "sessions.session", "pk": "nswul70gr80dq4qwgs4di508w00uud6b", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-08T10:15:12Z"}}, {"model": "sessions.session", "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-08-24T09:07:00Z"}}, {"model": "sessions.session", "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T10:17:31Z"}}, {"model": "sessions.session", "pk": "odorbcaogkfzuupexk2zyze0ewnene46", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-08T10:29:46Z"}}, {"model": "sessions.session", "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T07:40:16Z"}}, {"model": "sessions.session", "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:49:30Z"}}, {"model": "sessions.session", "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-16T07:07:44Z"}}, {"model": "sessions.session", "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T11:53:13Z"}}, {"model": "sessions.session", "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf", "fields": {"session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==", "expire_date": "2016-11-24T11:13:28Z"}}, {"model": "sessions.session", "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-18T11:48:29Z"}}, {"model": "sessions.session", "pk": "qi66ci58ybleptvfa4qenkhecsabekut", "fields": {"session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-03-28T14:27:50Z"}}, {"model": "sessions.session", "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf", "fields": {"session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==", "expire_date": "2016-12-09T16:53:29Z"}}, {"model": "sessions.session", "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-17T11:19:13Z"}}, {"model": "sessions.session", "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-20T08:48:24Z"}}, {"model": "sessions.session", "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T08:12:45Z"}}, {"model": "sessions.session", "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o", "fields": {"session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-10T07:54:55Z"}}, {"model": "sessions.session", "pk": "ryh7badf8sk52fnosn0im30u153w96bx", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-06-01T09:22:04Z"}}, {"model": "sessions.session", "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-17T11:25:00Z"}}, {"model": "sessions.session", "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T07:10:33Z"}}, {"model": "sessions.session", "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-11-02T13:21:25Z"}}, {"model": "sessions.session", "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-22T23:47:44Z"}}, {"model": "sessions.session", "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T09:13:02Z"}}, {"model": "sessions.session", "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T13:16:42Z"}}, {"model": "sessions.session", "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-09-07T09:17:51Z"}}, {"model": "sessions.session", "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:45:55Z"}}, {"model": "sessions.session", "pk": "txw6kfzk32bxeqm21knvrf570by4v27p", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:48:36Z"}}, {"model": "sessions.session", "pk": "uesi563p5dol5hv4gjor3noj55kz8chz", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-13T08:36:52Z"}}, {"model": "sessions.session", "pk": "uou3pothn76iu9zi34fij69m8inc1v2s", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-05-13T08:32:22Z"}}, {"model": "sessions.session", "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-07-05T09:34:00Z"}}, {"model": "sessions.session", "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-06T09:17:34Z"}}, {"model": "sessions.session", "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20", "fields": {"session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9", "expire_date": "2016-11-25T22:11:01Z"}}, {"model": "sessions.session", "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2016-10-19T09:11:45Z"}}, {"model": "sessions.session", "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-25T11:21:04Z"}}, {"model": "sessions.session", "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd", "fields": {"session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2016-12-19T13:49:09Z"}}, {"model": "sessions.session", "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:40:30Z"}}, {"model": "sessions.session", "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-31T09:28:51Z"}}, {"model": "sessions.session", "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-24T18:27:59Z"}}, {"model": "sessions.session", "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-08-15T11:56:07Z"}}, {"model": "sessions.session", "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:23:30Z"}}, {"model": "sessions.session", "pk": "xeta229mvebwff8lxrg15tg92yby9l7h", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-01-03T10:42:04Z"}}, {"model": "sessions.session", "pk": "xjameie76erma5u2xcefnxiqkaydbqem", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T15:38:48Z"}}, {"model": "sessions.session", "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:41:43Z"}}, {"model": "sessions.session", "pk": "xqn4o938970paagobhs75vdj78qklbpt", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-13T06:21:47Z"}}, {"model": "sessions.session", "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g", "fields": {"session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=", "expire_date": "2016-03-28T11:24:43Z"}}, {"model": "sessions.session", "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:59Z"}}, {"model": "sessions.session", "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T15:37:48Z"}}, {"model": "sessions.session", "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-23T09:12:20Z"}}, {"model": "sessions.session", "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-29T08:20:29Z"}}, {"model": "sessions.session", "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-21T14:11:46Z"}}, {"model": "sessions.session", "pk": "ykzz4og15rbp734i6zas54al3618ih6t", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-28T12:47:33Z"}}, {"model": "sessions.session", "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T07:23:58Z"}}, {"model": "sessions.session", "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-06-10T09:57:45Z"}}, {"model": "sessions.session", "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-29T12:27:51Z"}}, {"model": "sessions.session", "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T11:53:02Z"}}, {"model": "sessions.session", "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T13:24:18Z"}}, {"model": "sessions.session", "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:07:32Z"}}, {"model": "sessions.session", "pk": "zd89eekj8db021j20g95g8h3l2qoajg2", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-03T11:30:35Z"}}, {"model": "sessions.session", "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-07T12:20:16Z"}}, {"model": "sessions.session", "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T14:32:15Z"}}, {"model": "labels.label", "pk": 17, "fields": {"label": "Opatija", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 26}}, {"model": "labels.label", "pk": 19, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 20, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 50, "fields": {"label": "Zagreb", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 133}}, {"model": "labels.label", "pk": 51, "fields": {"label": "Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 67, "fields": {"label": "Vienna", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 183}}, {"model": "labels.label", "pk": 68, "fields": {"label": "Wien", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 108, "fields": {"label": "Brno", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 327}}, {"model": "labels.label", "pk": 109, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 118, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 121, "fields": {"label": "Budapest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 400}}, {"model": "labels.label", "pk": 122, "fields": {"label": "Budapest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 252, "fields": {"label": "Bucharest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 831}}, {"model": "labels.label", "pk": 253, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 287, "fields": {"label": "Baden bei Wien", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 926}}, {"model": "labels.label", "pk": 288, "fields": {"label": "Baden", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 926}}, {"model": "labels.label", "pk": 445, "fields": {"label": "Berlin", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1390}}, {"model": "labels.label", "pk": 446, "fields": {"label": "Berlin", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 456, "fields": {"label": "Liberec", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1424}}, {"model": "labels.label", "pk": 457, "fields": {"label": "Liberec - Osta\u0161ov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 466, "fields": {"label": "Bezau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1454}}, {"model": "labels.label", "pk": 531, "fields": {"label": "Bodensdorf, Bez. Feldkirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1701}}, {"model": "labels.label", "pk": 536, "fields": {"label": "Heilbronn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1718}}, {"model": "labels.label", "pk": 537, "fields": {"label": "Heilbronn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1718}}, {"model": "labels.label", "pk": 613, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2006}}, {"model": "labels.label", "pk": 614, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2006}}, {"model": "labels.label", "pk": 639, "fields": {"label": "Bratislava", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2072}}, {"model": "labels.label", "pk": 640, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 641, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 645, "fields": {"label": "Broumov", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2085}}, {"model": "labels.label", "pk": 646, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 647, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 669, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2161}}, {"model": "labels.label", "pk": 670, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 671, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 672, "fields": {"label": "Brixen", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2170}}, {"model": "labels.label", "pk": 673, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 680, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2197}}, {"model": "labels.label", "pk": 681, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - B\u0159ezhrad, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 693, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 694, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 697, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 704, "fields": {"label": "Brody", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2281}}, {"model": "labels.label", "pk": 705, "fields": {"label": "Brody, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2281}}, {"model": "labels.label", "pk": 713, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 714, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 715, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 716, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 757, "fields": {"label": "Buenos Aires", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2489}}, {"model": "labels.label", "pk": 759, "fields": {"label": "Buenos Aires", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2489}}, {"model": "labels.label", "pk": 760, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 761, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 789, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 870, "fields": {"label": "Chernivtsi", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2854}}, {"model": "labels.label", "pk": 871, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 876, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 944, "fields": {"label": "Cieszyn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3105}}, {"model": "labels.label", "pk": 945, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 962, "fields": {"label": "Cluj-Napoca", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3162}}, {"model": "labels.label", "pk": 963, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 1050, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 1214, "fields": {"label": "D\u00fcren", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1215, "fields": {"label": "D\u00fcren", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1268, "fields": {"label": "\u00dadlice, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4269}}, {"model": "labels.label", "pk": 1412, "fields": {"label": "Graz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1413, "fields": {"label": "Graz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1446, "fields": {"label": "Freistadt", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1447, "fields": {"label": "Freistadt", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1560, "fields": {"label": "Ghidfal\u0103u, jud. Covasna", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5294}}, {"model": "labels.label", "pk": 1565, "fields": {"label": "Marienheide", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5308}}, {"model": "labels.label", "pk": 1619, "fields": {"label": "Gorizia", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1620, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1635, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1636, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1670, "fields": {"label": "Merano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1671, "fields": {"label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1691, "fields": {"label": "Grieskirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5749}}, {"model": "labels.label", "pk": 1755, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1756, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1841, "fields": {"label": "Hanover", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1842, "fields": {"label": "Hannover", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1926, "fields": {"label": "Innsbruck", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1927, "fields": {"label": "Innsbruck", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1982, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 1983, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 2002, "fields": {"label": "Brno - Brno-sever, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2108, "fields": {"label": "Jaworzno, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7454}}, {"model": "labels.label", "pk": 2153, "fields": {"label": "Leoben", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2154, "fields": {"label": "Leoben", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2190, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2191, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2249, "fields": {"label": "Kassel", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2250, "fields": {"label": "Kassel", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2340, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2341, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2373, "fields": {"label": "Klosterneuburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8482}}, {"model": "labels.label", "pk": 2394, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2458, "fields": {"label": "Konstanz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2459, "fields": {"label": "Konstanz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2581, "fields": {"label": "Kufstein", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2582, "fields": {"label": "Kufstein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2585, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Kukleny, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2595, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2625, "fields": {"label": "Lachovice, kr. Karlovarsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9455}}, {"model": "labels.label", "pk": 2632, "fields": {"label": "Ljubljana", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2633, "fields": {"label": "Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2711, "fields": {"label": "Lviv", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2712, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2713, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2789, "fields": {"label": "Linz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2790, "fields": {"label": "Linz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2858, "fields": {"label": "City of London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2859, "fields": {"label": "London City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2860, "fields": {"label": "The City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2861, "fields": {"label": "London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2862, "fields": {"label": "London", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2927, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2928, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2929, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2951, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2952, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2963, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3022, "fields": {"label": "Maribor", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3023, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3039, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3040, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3041, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3116, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3117, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3118, "fields": {"label": "Merano (Castello di Trautmannsdorf) / Meran (Schlo\u00df Trautmannsdorf), reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3119, "fields": {"label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3120, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3121, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3158, "fields": {"label": "St\u0159\u00edbro, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 3239, "fields": {"label": "Moldava, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11556}}, {"model": "labels.label", "pk": 3324, "fields": {"label": "Munich", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3325, "fields": {"label": "M\u00fcnchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3441, "fields": {"label": "Nysa", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3442, "fields": {"label": "Nysa, woj. Opole", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3491, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Nov\u00fd Hradec Kr\u00e1lov\u00e9, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 3549, "fields": {"label": "Liberec - Doln\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3580, "fields": {"label": "Nice", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3581, "fields": {"label": "Nice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3657, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3663, "fields": {"label": "Liberec - Horn\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3671, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3672, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3681, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3697, "fields": {"label": "Brno - Malom\u011b\u0159ice-Ob\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3710, "fields": {"label": "Sopron", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3711, "fields": {"label": "Sopron, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3737, "fields": {"label": "Olomouc", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3738, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3739, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3740, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3741, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3828, "fields": {"label": "Paris", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3829, "fields": {"label": "Paris", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3901, "fields": {"label": "Petting", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13987}}, {"model": "labels.label", "pk": 4050, "fields": {"label": "Prague", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4051, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4052, "fields": {"label": "Praha, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4053, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4054, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4055, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4077, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4078, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4333, "fields": {"label": "Liberec - R\u016f\u017eodol I, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4334, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4389, "fields": {"label": "Liberec - Ruprechtice, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4415, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 4478, "fields": {"label": "Sv\u00e4t\u00fd Jur", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4479, "fields": {"label": "Sv\u00e4t\u00fd Jur, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4500, "fields": {"label": "St. Pankraz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4501, "fields": {"label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4581, "fields": {"label": "\u0160t\u00edty, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16594}}, {"model": "labels.label", "pk": 4624, "fields": {"label": "Liberec - Kr\u00e1sn\u00e1 Stud\u00e1nka, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4652, "fields": {"label": "Schwanberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16864}}, {"model": "labels.label", "pk": 4676, "fields": {"label": "Wien - Sechshaus", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 4878, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 5025, "fields": {"label": "Szczakowa, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18374}}, {"model": "labels.label", "pk": 5031, "fields": {"label": "Szeged, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 5150, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5152, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5273, "fields": {"label": "Trento", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5274, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5275, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5290, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5291, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5386, "fields": {"label": "Mojm\u00edrovce, kr. Nitra", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19599}}, {"model": "labels.label", "pk": 5411, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 5422, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 5650, "fields": {"label": "Warsaw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5651, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5652, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5653, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5654, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5655, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5656, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5677, "fields": {"label": "Bela Crkva, sr. Pan\u010devo", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20659}}, {"model": "labels.label", "pk": 5726, "fields": {"label": "Bad Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 5758, "fields": {"label": "Wisborough Green", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20988}}, {"model": "labels.label", "pk": 5809, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 5903, "fields": {"label": "L'viv - Znesinnja, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 5941, "fields": {"label": "Svitavy", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5942, "fields": {"label": "Svitavy, kr. Pardubick\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5959, "fields": {"label": "Jamnitz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22216}}, {"model": "labels.label", "pk": 5960, "fields": {"label": "Stronach (Lienz)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22259}}, {"model": "labels.label", "pk": 5961, "fields": {"label": "Nizza", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 5962, "fields": {"label": "Gr\u00fcnburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22322}}, {"model": "labels.label", "pk": 5963, "fields": {"label": "Olten", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5964, "fields": {"label": "Olten, Kt. Solothurn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5965, "fields": {"label": "Bad Kreuznach", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "labels.label", "pk": 5966, "fields": {"label": "Lasberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22494}}, {"model": "labels.label", "pk": 5967, "fields": {"label": "Fribourg", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5968, "fields": {"label": "Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5969, "fields": {"label": "Boc\u0219a", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22545}}, {"model": "labels.label", "pk": 5970, "fields": {"label": "Lud\u017amierz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22558}}, {"model": "labels.label", "pk": 5971, "fields": {"label": "Warszawa, woj. mazowieckie", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5972, "fields": {"label": "Vezzano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22570}}, {"model": "labels.label", "pk": 5973, "fields": {"label": "Vezzano", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22570}}, {"model": "labels.label", "pk": 6951, "fields": {"label": "Thalberg, Sigismund (Fortun\u00e9 Fran\u00e7ois)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 27245}}, {"model": "labels.label", "pk": 6952, "fields": {"label": "Fortun\u00e9 Fran\u00e7ois", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 27245}}, {"model": "labels.label", "pk": 7018, "fields": {"label": "Bratislava, kr. Bratislavsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 7161, "fields": {"label": "Bressanone/Brixen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 8216, "fields": {"label": "Wien (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 8588, "fields": {"label": "Bressanone", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 9187, "fields": {"label": "Merano/Meran, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 9289, "fields": {"label": "Teschen/T\u011b\u0161\u00edn/Cieszyn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 10492, "fields": {"label": "?, kr. ?", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 12551, "fields": {"label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 12706, "fields": {"label": "\u013dviv (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 13574, "fields": {"label": "Bratislava (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 13859, "fields": {"label": "Linz (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 14306, "fields": {"label": "Gorizia, reg. Friuli-Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 15282, "fields": {"label": "Reicha (Rejcha), Anton (Anton\u00edn) Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15283, "fields": {"label": "Rejcha", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15284, "fields": {"label": "Anton\u00edn Josef", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 18793, "fields": {"label": "Moscheles, Ignaz (Isaak)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 56248}}, {"model": "labels.label", "pk": 18794, "fields": {"label": "Isaak", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 56248}}, {"model": "labels.label", "pk": 20331, "fields": {"label": "Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 21059, "fields": {"label": "Liszt, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 62757}}, {"model": "labels.label", "pk": 21545, "fields": {"label": "Bressanone/Brixen, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 21609, "fields": {"label": "Praha - Mal\u00e1 Chuchle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 25058, "fields": {"label": "Praha - Horn\u00ed Po\u010dernice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 26197, "fields": {"label": "Szeged", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 27645, "fields": {"label": "Prag", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 29838, "fields": {"label": "Blahetka, Marie Leopoldine", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88219}}, {"model": "labels.label", "pk": 30089, "fields": {"label": "Beethoven, Ludwig van", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88902}}, {"model": "labels.label", "pk": 30728, "fields": {"label": "Freiburg/Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 30935, "fields": {"label": "Merano/Meran", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 31498, "fields": {"label": "St\u0159\u00edbro", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 31596, "fields": {"label": "B\u00e4uerle, Friederike; Ps. Friedrich Horn", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31597, "fields": {"label": "Friedrich Horn", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31632, "fields": {"label": "L\u2019viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 31701, "fields": {"label": "Czerny (\u010cern\u00fd), Carl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31702, "fields": {"label": "\u010cern\u00fd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31766, "fields": {"label": "Bahr, Hermann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93003}}, {"model": "labels.label", "pk": 31769, "fields": {"label": "Czerny, Adalbert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93009}}, {"model": "labels.label", "pk": 31770, "fields": {"label": "Czetz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93012}}, {"model": "labels.label", "pk": 31771, "fields": {"label": "Czikann, Johann Jakob Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93015}}, {"model": "labels.label", "pk": 31772, "fields": {"label": "Clam-Gallas, Eduard Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93018}}, {"model": "labels.label", "pk": 31773, "fields": {"label": "Clam-Martinic, Heinrich Jaroslav Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93021}}, {"model": "labels.label", "pk": 31774, "fields": {"label": "Clam-Martinic, Heinrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93024}}, {"model": "labels.label", "pk": 31775, "fields": {"label": "Claus, Karl Friedrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93028}}, {"model": "labels.label", "pk": 31776, "fields": {"label": "Conze, Alexander", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93031}}, {"model": "labels.label", "pk": 31777, "fields": {"label": "Costenoble, Karl Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93034}}, {"model": "labels.label", "pk": 31780, "fields": {"label": "\u010celakovsk\u00fd, Jarom\u00edr", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93044}}, {"model": "labels.label", "pk": 31781, "fields": {"label": "\u010celakovsk\u00fd, Ladislav", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93047}}, {"model": "labels.label", "pk": 31782, "fields": {"label": "\u010cerven\u00fd, V\u00e1clav Franti\u0161ek", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93050}}, {"model": "labels.label", "pk": 31783, "fields": {"label": "Charlemont, Hugo de", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93056}}, {"model": "labels.label", "pk": 31784, "fields": {"label": "Chlumczansk\u00fd, Wenzel Leopold von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93059}}, {"model": "labels.label", "pk": 31785, "fields": {"label": "Dumba, Konstantin Theodor", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93065}}, {"model": "labels.label", "pk": 31786, "fields": {"label": "Doderer, Wilhelm von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93068}}, {"model": "labels.label", "pk": 31787, "fields": {"label": "Defregger, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93071}}, {"model": "labels.label", "pk": 31788, "fields": {"label": "Dengel, Ignaz Philipp", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93074}}, {"model": "labels.label", "pk": 31811, "fields": {"label": "Holovsky, Hilde", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93136}}, {"model": "labels.label", "pk": 31872, "fields": {"label": "Lorenz, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93328}}, {"model": "labels.label", "pk": 31874, "fields": {"label": "L\u00f6wy, Julius; Ps. Von der Als", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31875, "fields": {"label": "Von der Als", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31879, "fields": {"label": "Lobmeyr, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93352}}, {"model": "labels.label", "pk": 31883, "fields": {"label": "Lichtblau, Adolf; Ps. A. L. Blau", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31884, "fields": {"label": "A. L. Blau", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31885, "fields": {"label": "Lichtblau, Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93369}}, {"model": "labels.label", "pk": 31888, "fields": {"label": "Leitgeb, Hubert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93378}}, {"model": "labels.label", "pk": 31890, "fields": {"label": "Lenhoss\u00e9k, Mih\u00e1ly Ign\u00e1c von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93387}}, {"model": "labels.label", "pk": 31892, "fields": {"label": "Lefler, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93393}}, {"model": "labels.label", "pk": 31893, "fields": {"label": "Leichter, K\u00e4the; geb. Pick", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31894, "fields": {"label": "Pick", "isoCode_639_3": "deu", "label_type": 612, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31895, "fields": {"label": "Leidesdorf, Franz; Ps. Wallner", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31896, "fields": {"label": "Wallner", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31899, "fields": {"label": "Lapaine, Valentin", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93409}}, {"model": "labels.label", "pk": 31900, "fields": {"label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31901, "fields": {"label": "Suida und Langer", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31902, "fields": {"label": "M\u00fcller, Wolf Johannes", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93418}}, {"model": "labels.label", "pk": 31910, "fields": {"label": "M\u00f6rl, Maria Theresia von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93442}}, {"model": "labels.label", "pk": 31911, "fields": {"label": "Millosicz, Georg Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93445}}, {"model": "labels.label", "pk": 31912, "fields": {"label": "Miklosich, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93448}}, {"model": "labels.label", "pk": 31917, "fields": {"label": "Meithner, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93469}}, {"model": "labels.label", "pk": 31920, "fields": {"label": "Margulies, Berl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93481}}, {"model": "labels.label", "pk": 31921, "fields": {"label": "M\u00e1nesov\u00e1, Amalie", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93484}}, {"model": "labels.label", "pk": 31922, "fields": {"label": "M\u00e1nes, Quido", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93487}}, {"model": "labels.label", "pk": 31928, "fields": {"label": "Mayer, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93510}}, {"model": "labels.label", "pk": 31929, "fields": {"label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31930, "fields": {"label": "Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31931, "fields": {"label": "Nov\u00e1\u010dek, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93516}}, {"model": "labels.label", "pk": 31940, "fields": {"label": "Ortmann, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93540}}, {"model": "labels.label", "pk": 31942, "fields": {"label": "Oellacher, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93546}}, {"model": "labels.label", "pk": 31947, "fields": {"label": "Poljanec, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93561}}, {"model": "labels.label", "pk": 31950, "fields": {"label": "Petzold, Emil", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93573}}, {"model": "labels.label", "pk": 31955, "fields": {"label": "Peithner von Lichtenfels, Eduard", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93588}}, {"model": "labels.label", "pk": 31958, "fields": {"label": "Patera, Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93600}}, {"model": "labels.label", "pk": 31960, "fields": {"label": "Rumpler, Matthias", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93609}}, {"model": "labels.label", "pk": 31961, "fields": {"label": "Rotter, Johann (Hans)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31962, "fields": {"label": "Hans", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31969, "fields": {"label": "Revertera von Salandra, Friedrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93639}}, {"model": "labels.label", "pk": 31970, "fields": {"label": "Reichenberger, Andreas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93642}}, {"model": "labels.label", "pk": 31971, "fields": {"label": "Reiser, Othmar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93645}}, {"model": "labels.label", "pk": 31973, "fields": {"label": "Randa, Maximilian von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93651}}, {"model": "labels.label", "pk": 31974, "fields": {"label": "Radakovi\u010d, Michael", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93654}}, {"model": "labels.label", "pk": 31975, "fields": {"label": "Szigligeti, Ede (Edv\u00e1rd); bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31976, "fields": {"label": "Edv\u00e1rd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31977, "fields": {"label": " bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 653, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31978, "fields": {"label": "Szurmay von Uzsok, S\u00e1ndor (Alexander) Frh.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31979, "fields": {"label": "Alexander Frh.", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31988, "fields": {"label": "St\u00fclz, Jodok", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93678}}, {"model": "labels.label", "pk": 31990, "fields": {"label": "Stowasser, Otto Hellmuth", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93684}}, {"model": "labels.label", "pk": 32001, "fields": {"label": "Steindler, Olga; verehel. Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32002, "fields": {"label": "Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32003, "fields": {"label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32004, "fields": {"label": "Ernest Edward Aurel", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32005, "fields": {"label": "Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32009, "fields": {"label": "Stariha, Janez Nep.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93714}}, {"model": "labels.label", "pk": 32018, "fields": {"label": "\u0160njari\u0107, Lukas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93748}}, {"model": "labels.label", "pk": 32030, "fields": {"label": "Sichulski, Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93779}}, {"model": "labels.label", "pk": 32032, "fields": {"label": "Settari, Wilhelm Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93785}}, {"model": "labels.label", "pk": 32034, "fields": {"label": "Sehnal, Eugen", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93791}}, {"model": "labels.label", "pk": 32037, "fields": {"label": "Schwartz, P. Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93800}}, {"model": "labels.label", "pk": 32038, "fields": {"label": "Schwarz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93803}}, {"model": "labels.label", "pk": 32039, "fields": {"label": "Schwarz, Kaspar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93809}}, {"model": "labels.label", "pk": 32041, "fields": {"label": "Schweitzer, Leopold Albrecht", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93815}}, {"model": "labels.label", "pk": 32042, "fields": {"label": "Schwabl, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93818}}, {"model": "labels.label", "pk": 32052, "fields": {"label": "Schu\u00ebcker, Edmund; eigentl. Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32053, "fields": {"label": "Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32054, "fields": {"label": "Schr\u00f6dl, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93839}}, {"model": "labels.label", "pk": 32059, "fields": {"label": "Schreyer, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93854}}, {"model": "labels.label", "pk": 32062, "fields": {"label": "Scholz, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93863}}, {"model": "labels.label", "pk": 32063, "fields": {"label": "Schrammel, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93866}}, {"model": "labels.label", "pk": 32067, "fields": {"label": "Scholl, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93878}}, {"model": "labels.label", "pk": 32069, "fields": {"label": "Sch\u00f6nberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32070, "fields": {"label": "Schoenberger", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32071, "fields": {"label": "Carl Friedrich Frh. von", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32072, "fields": {"label": "Sch\u00f6nberger, Benno", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93894}}, {"model": "labels.label", "pk": 32075, "fields": {"label": "Schnitzler, Julius", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93900}}, {"model": "labels.label", "pk": 32076, "fields": {"label": "Schober, Alfred", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93903}}, {"model": "labels.label", "pk": 32079, "fields": {"label": "Schoeller, Gustav Adolph von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93909}}, {"model": "labels.label", "pk": 32084, "fields": {"label": "Schmutzler, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93921}}, {"model": "labels.label", "pk": 32087, "fields": {"label": "Schmidt, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93933}}, {"model": "labels.label", "pk": 32088, "fields": {"label": "Schmidt, Anton", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93940}}, {"model": "labels.label", "pk": 32090, "fields": {"label": "Schmal, Johannes Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93946}}, {"model": "labels.label", "pk": 32094, "fields": {"label": "Schmidt-Beauchez, Louis", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93955}}, {"model": "labels.label", "pk": 32095, "fields": {"label": "Schindler, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93958}}, {"model": "labels.label", "pk": 32096, "fields": {"label": "Scheu, Josef Franz Georg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93961}}, {"model": "labels.label", "pk": 32097, "fields": {"label": "Schikaneder, Jakub", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93964}}, {"model": "labels.label", "pk": 32098, "fields": {"label": "Schell, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93967}}, {"model": "labels.label", "pk": 32099, "fields": {"label": "Schenk, Samuel Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93970}}, {"model": "labels.label", "pk": 32107, "fields": {"label": "T\u00f6lgyessy, Art\u00far", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93988}}, {"model": "labels.label", "pk": 32108, "fields": {"label": "Thun und Hohenstein, Emanuel Maria Gf. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93991}}, {"model": "labels.label", "pk": 32111, "fields": {"label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32112, "fields": {"label": "Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32113, "fields": {"label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32114, "fields": {"label": "Przerwa-Tetmajer", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32115, "fields": {"label": "Teuber, Emmerich (genannt Imre)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32116, "fields": {"label": "genannt Imre", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32119, "fields": {"label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32120, "fields": {"label": "Richard Denemy", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32121, "fields": {"label": " ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32390, "fields": {"label": "Laibach", "isoCode_639_3": "deu", "label_type": 6, "temp_entity": 9475}}, {"model": "entities.person", "pk": 27245, "fields": {"first_name": "Sigismund", "gender": "male", "text": [12155, 12156], "collection": [], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 46414, "fields": {"first_name": "Anton Josef", "gender": "male", "text": [21722, 21723], "collection": [], "profession": [151, 188, 2054], "title": []}}, {"model": "entities.person", "pk": 56248, "fields": {"first_name": "Ignaz", "gender": "male", "text": [27186, 27187], "collection": [], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 62757, "fields": {"first_name": "Franz von", "gender": "male", "text": [30762, 30763], "collection": [], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 88219, "fields": {"first_name": "Marie Leopoldine", "gender": "female", "text": [44908, 44909], "collection": [], "profession": [151, 1750], "title": []}}, {"model": "entities.person", "pk": 88902, "fields": {"first_name": "Ludwig van", "gender": "male", "text": [45290, 45291], "collection": [], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 92412, "fields": {"first_name": "Friederike", "gender": "female", "text": [47030, 47031], "collection": [], "profession": [128, 5578], "title": []}}, {"model": "entities.person", "pk": 92603, "fields": {"first_name": "Carl", "gender": "male", "text": [47126, 47127], "collection": [], "profession": [151, 5599], "title": []}}, {"model": "entities.person", "pk": 93003, "fields": {"first_name": "Hermann", "gender": "male", "text": [47200, 47201], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93009, "fields": {"first_name": "Adalbert", "gender": "male", "text": [47204, 47205], "collection": [], "profession": [154, 155], "title": []}}, {"model": "entities.person", "pk": 93012, "fields": {"first_name": "Johann", "gender": "male", "text": [47206, 47207], "collection": [], "profession": [134, 143, 157, 158], "title": []}}, {"model": "entities.person", "pk": 93015, "fields": {"first_name": "Johann Jakob Heinrich", "gender": "male", "text": [47208, 47209], "collection": [], "profession": [128, 146, 159], "title": []}}, {"model": "entities.person", "pk": 93018, "fields": {"first_name": "Eduard Gf.", "gender": "male", "text": [47210, 47211], "collection": [], "profession": [143, 144], "title": []}}, {"model": "entities.person", "pk": 93021, "fields": {"first_name": "Heinrich Jaroslav Gf.", "gender": "male", "text": [47212, 47213], "collection": [], "profession": [132, 134, 145, 146], "title": []}}, {"model": "entities.person", "pk": 93024, "fields": {"first_name": "Heinrich Gf.", "gender": "male", "text": [47214, 47215], "collection": [], "profession": [134, 147], "title": []}}, {"model": "entities.person", "pk": 93028, "fields": {"first_name": "Karl Friedrich", "gender": "male", "text": [47216, 47217], "collection": [], "profession": [135, 148], "title": []}}, {"model": "entities.person", "pk": 93031, "fields": {"first_name": "Alexander", "gender": "male", "text": [47218, 47219], "collection": [], "profession": [149, 150], "title": []}}, {"model": "entities.person", "pk": 93034, "fields": {"first_name": "Karl Ludwig", "gender": "male", "text": [47220, 47221], "collection": [], "profession": [128, 151, 152], "title": []}}, {"model": "entities.person", "pk": 93044, "fields": {"first_name": "Jarom\u00edr", "gender": "male", "text": [47226, 47227], "collection": [], "profession": [132, 133, 134], "title": []}}, {"model": "entities.person", "pk": 93047, "fields": {"first_name": "Ladislav", "gender": "male", "text": [47228, 47229], "collection": [], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93050, "fields": {"first_name": "V\u00e1clav Franti\u0161ek", "gender": "male", "text": [47230, 47231], "collection": [], "profession": [137, 138], "title": []}}, {"model": "entities.person", "pk": 93056, "fields": {"first_name": "Hugo de", "gender": "male", "text": [47232, 47233], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93059, "fields": {"first_name": "Wenzel Leopold von", "gender": "male", "text": [47234, 47235], "collection": [], "profession": [141, 142], "title": []}}, {"model": "entities.person", "pk": 93065, "fields": {"first_name": "Konstantin Theodor", "gender": "male", "text": [47236, 47237], "collection": [], "profession": [146, 162], "title": []}}, {"model": "entities.person", "pk": 93068, "fields": {"first_name": "Wilhelm von", "gender": "male", "text": [47238, 47239], "collection": [], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93071, "fields": {"first_name": "Franz von", "gender": "male", "text": [47240, 47241], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93074, "fields": {"first_name": "Ignaz Philipp", "gender": "male", "text": [47242, 47243], "collection": [], "profession": [149, 160], "title": []}}, {"model": "entities.person", "pk": 93136, "fields": {"first_name": "Hilde", "gender": "female", "text": [47276, 47277], "collection": [], "profession": [163, 164], "title": []}}, {"model": "entities.person", "pk": 93328, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47384, 47385], "collection": [], "profession": [154, 175], "title": []}}, {"model": "entities.person", "pk": 93337, "fields": {"first_name": "Julius", "gender": "male", "text": [47388, 47389], "collection": [], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93352, "fields": {"first_name": "Josef", "gender": "male", "text": [47394, 47395], "collection": [], "profession": [137, 173], "title": []}}, {"model": "entities.person", "pk": 93366, "fields": {"first_name": "Adolf", "gender": "male", "text": [47402, 47403], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93369, "fields": {"first_name": "Ludwig", "gender": "male", "text": [47404, 47405], "collection": [], "profession": [132, 172], "title": []}}, {"model": "entities.person", "pk": 93378, "fields": {"first_name": "Hubert", "gender": "male", "text": [47410, 47411], "collection": [], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93387, "fields": {"first_name": "Mih\u00e1ly Ign\u00e1c von", "gender": "male", "text": [47414, 47415], "collection": [], "profession": [154, 171], "title": []}}, {"model": "entities.person", "pk": 93393, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47418, 47419], "collection": [], "profession": [139, 168], "title": []}}, {"model": "entities.person", "pk": 93396, "fields": {"first_name": "K\u00e4the", "gender": "female", "text": [47420, 47421], "collection": [], "profession": [128, 134, 169], "title": []}}, {"model": "entities.person", "pk": 93400, "fields": {"first_name": "Franz", "gender": "male", "text": [47422, 47423], "collection": [], "profession": [128, 151, 170], "title": []}}, {"model": "entities.person", "pk": 93409, "fields": {"first_name": "Valentin", "gender": "male", "text": [47428, 47429], "collection": [], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93415, "fields": {"first_name": "Johanna", "gender": "female", "text": [47430, 47431], "collection": [], "profession": [137, 165, 166], "title": []}}, {"model": "entities.person", "pk": 93418, "fields": {"first_name": "Wolf Johannes", "gender": "male", "text": [47432, 47433], "collection": [], "profession": [135, 185], "title": []}}, {"model": "entities.person", "pk": 93442, "fields": {"first_name": "Maria Theresia von", "gender": "female", "text": [47446, 47447], "collection": [], "profession": [141, 184], "title": []}}, {"model": "entities.person", "pk": 93445, "fields": {"first_name": "Georg Frh. von", "gender": "male", "text": [47448, 47449], "collection": [], "profession": [143, 183], "title": []}}, {"model": "entities.person", "pk": 93448, "fields": {"first_name": "Franz von", "gender": "male", "text": [47450, 47451], "collection": [], "profession": [134, 149, 182], "title": []}}, {"model": "entities.person", "pk": 93469, "fields": {"first_name": "Karl", "gender": "male", "text": [47460, 47461], "collection": [], "profession": [134, 180, 181], "title": []}}, {"model": "entities.person", "pk": 93481, "fields": {"first_name": "Berl", "gender": "male", "text": [47466, 47467], "collection": [], "profession": [151, 179], "title": []}}, {"model": "entities.person", "pk": 93484, "fields": {"first_name": "Amalie", "gender": "female", "text": [47468, 47469], "collection": [], "profession": [139, 178], "title": []}}, {"model": "entities.person", "pk": 93487, "fields": {"first_name": "Quido", "gender": "male", "text": [47470, 47471], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93510, "fields": {"first_name": "Karl", "gender": "male", "text": [47482, 47483], "collection": [], "profession": [128, 177], "title": []}}, {"model": "entities.person", "pk": 93513, "fields": {"first_name": "Johann Nep.", "gender": "male", "text": [47484, 47485], "collection": [], "profession": [128, 134, 176], "title": []}}, {"model": "entities.person", "pk": 93516, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47486, 47487], "collection": [], "profession": [151, 186], "title": []}}, {"model": "entities.person", "pk": 93540, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47502, 47503], "collection": [], "profession": [188, 189], "title": []}}, {"model": "entities.person", "pk": 93546, "fields": {"first_name": "Josef", "gender": "male", "text": [47506, 47507], "collection": [], "profession": [135, 187], "title": []}}, {"model": "entities.person", "pk": 93561, "fields": {"first_name": "Leopold", "gender": "male", "text": [47516, 47517], "collection": [], "profession": [135, 188, 193], "title": []}}, {"model": "entities.person", "pk": 93573, "fields": {"first_name": "Emil", "gender": "male", "text": [47522, 47523], "collection": [], "profession": [149, 192], "title": []}}, {"model": "entities.person", "pk": 93588, "fields": {"first_name": "Eduard", "gender": "male", "text": [47530, 47531], "collection": [], "profession": [139, 191], "title": []}}, {"model": "entities.person", "pk": 93600, "fields": {"first_name": "Adolf", "gender": "male", "text": [47536, 47537], "collection": [], "profession": [135, 190], "title": []}}, {"model": "entities.person", "pk": 93609, "fields": {"first_name": "Matthias", "gender": "male", "text": [47540, 47541], "collection": [], "profession": [128, 141, 200], "title": []}}, {"model": "entities.person", "pk": 93615, "fields": {"first_name": "Johann", "gender": "male", "text": [47542, 47543], "collection": [], "profession": [134, 137, 149, 199], "title": []}}, {"model": "entities.person", "pk": 93639, "fields": {"first_name": "Friedrich Gf.", "gender": "male", "text": [47556, 47557], "collection": [], "profession": [134, 146, 198], "title": []}}, {"model": "entities.person", "pk": 93642, "fields": {"first_name": "Andreas", "gender": "male", "text": [47558, 47559], "collection": [], "profession": [141, 196], "title": []}}, {"model": "entities.person", "pk": 93645, "fields": {"first_name": "Othmar", "gender": "male", "text": [47560, 47561], "collection": [], "profession": [135, 197], "title": []}}, {"model": "entities.person", "pk": 93651, "fields": {"first_name": "Maximilian von", "gender": "male", "text": [47564, 47565], "collection": [], "profession": [143, 146, 195], "title": []}}, {"model": "entities.person", "pk": 93654, "fields": {"first_name": "Michael", "gender": "male", "text": [47566, 47567], "collection": [], "profession": [135, 194], "title": []}}, {"model": "entities.person", "pk": 93657, "fields": {"first_name": "Ede", "gender": "male", "text": [47568, 47569], "collection": [], "profession": [128, 151, 230], "title": []}}, {"model": "entities.person", "pk": 93663, "fields": {"first_name": "S\u00e1ndor Frh.", "gender": "male", "text": [47570, 47571], "collection": [], "profession": [134, 143, 231], "title": []}}, {"model": "entities.person", "pk": 93678, "fields": {"first_name": "Jodok", "gender": "male", "text": [47580, 47581], "collection": [], "profession": [141, 149, 229], "title": []}}, {"model": "entities.person", "pk": 93684, "fields": {"first_name": "Otto Hellmuth", "gender": "male", "text": [47584, 47585], "collection": [], "profession": [146, 149, 228], "title": []}}, {"model": "entities.person", "pk": 93702, "fields": {"first_name": "Olga", "gender": "female", "text": [47594, 47595], "collection": [], "profession": [135, 188, 226], "title": []}}, {"model": "entities.person", "pk": 93705, "fields": {"first_name": "Ernst Edward Aurel", "gender": "male", "text": [47596, 47597], "collection": [], "profession": [149, 227], "title": []}}, {"model": "entities.person", "pk": 93714, "fields": {"first_name": "Janez Nep.", "gender": "male", "text": [47602, 47603], "collection": [], "profession": [141, 225], "title": []}}, {"model": "entities.person", "pk": 93748, "fields": {"first_name": "Lukas", "gender": "male", "text": [47614, 47615], "collection": [], "profession": [143, 224], "title": []}}, {"model": "entities.person", "pk": 93779, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47626, 47627], "collection": [], "profession": [139, 223], "title": []}}, {"model": "entities.person", "pk": 93785, "fields": {"first_name": "Wilhelm Anton Maria", "gender": "male", "text": [47630, 47631], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93791, "fields": {"first_name": "Eugen", "gender": "male", "text": [47634, 47635], "collection": [], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93800, "fields": {"first_name": "P. Anton Maria", "gender": "male", "text": [47640, 47641], "collection": [], "profession": [141, 219], "title": []}}, {"model": "entities.person", "pk": 93803, "fields": {"first_name": "Johann", "gender": "male", "text": [47642, 47643], "collection": [], "profession": [149, 188, 220], "title": []}}, {"model": "entities.person", "pk": 93809, "fields": {"first_name": "Kaspar", "gender": "male", "text": [47644, 47645], "collection": [], "profession": [134, 137, 221], "title": []}}, {"model": "entities.person", "pk": 93815, "fields": {"first_name": "Leopold Albrecht", "gender": "male", "text": [47648, 47649], "collection": [], "profession": [128, 222], "title": []}}, {"model": "entities.person", "pk": 93818, "fields": {"first_name": "Franz", "gender": "male", "text": [47650, 47651], "collection": [], "profession": [217, 218], "title": []}}, {"model": "entities.person", "pk": 93836, "fields": {"first_name": "Edmund", "gender": "male", "text": [47660, 47661], "collection": [], "profession": [151, 216], "title": []}}, {"model": "entities.person", "pk": 93839, "fields": {"first_name": "Leopold", "gender": "male", "text": [47662, 47663], "collection": [], "profession": [139, 215], "title": []}}, {"model": "entities.person", "pk": 93854, "fields": {"first_name": "Johann", "gender": "male", "text": [47672, 47673], "collection": [], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93863, "fields": {"first_name": "Franz", "gender": "male", "text": [47676, 47677], "collection": [], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93866, "fields": {"first_name": "Johann", "gender": "male", "text": [47678, 47679], "collection": [], "profession": [151, 214], "title": []}}, {"model": "entities.person", "pk": 93878, "fields": {"first_name": "Joseph", "gender": "male", "text": [47684, 47685], "collection": [], "profession": [132, 134, 213], "title": []}}, {"model": "entities.person", "pk": 93891, "fields": {"first_name": "Adolf Frh. von", "gender": "male", "text": [47688, 47689], "collection": [], "profession": [143, 146, 211], "title": []}}, {"model": "entities.person", "pk": 93894, "fields": {"first_name": "Benno", "gender": "male", "text": [47690, 47691], "collection": [], "profession": [151, 212], "title": []}}, {"model": "entities.person", "pk": 93900, "fields": {"first_name": "Julius", "gender": "male", "text": [47694, 47695], "collection": [], "profession": [154, 208], "title": []}}, {"model": "entities.person", "pk": 93903, "fields": {"first_name": "Alfred", "gender": "male", "text": [47696, 47697], "collection": [], "profession": [132, 146, 209], "title": []}}, {"model": "entities.person", "pk": 93909, "fields": {"first_name": "Gustav Adolph von", "gender": "male", "text": [47700, 47701], "collection": [], "profession": [137, 210], "title": []}}, {"model": "entities.person", "pk": 93921, "fields": {"first_name": "Leopold", "gender": "male", "text": [47706, 47707], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93933, "fields": {"first_name": "Joseph", "gender": "male", "text": [47712, 47713], "collection": [], "profession": [151, 207], "title": []}}, {"model": "entities.person", "pk": 93940, "fields": {"first_name": "Anton", "gender": "male", "text": [47714, 47715], "collection": [], "profession": [134, 137, 206], "title": []}}, {"model": "entities.person", "pk": 93946, "fields": {"first_name": "Johannes Adolf", "gender": "male", "text": [47718, 47719], "collection": [], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93955, "fields": {"first_name": "Louis", "gender": "male", "text": [47724, 47725], "collection": [], "profession": [128, 188, 205], "title": []}}, {"model": "entities.person", "pk": 93958, "fields": {"first_name": "Josef", "gender": "male", "text": [47726, 47727], "collection": [], "profession": [149, 204], "title": []}}, {"model": "entities.person", "pk": 93961, "fields": {"first_name": "Josef Franz Georg", "gender": "male", "text": [47728, 47729], "collection": [], "profession": [128, 151, 203], "title": []}}, {"model": "entities.person", "pk": 93964, "fields": {"first_name": "Jakub", "gender": "male", "text": [47730, 47731], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93967, "fields": {"first_name": "Karl", "gender": "male", "text": [47732, 47733], "collection": [], "profession": [137, 201], "title": []}}, {"model": "entities.person", "pk": 93970, "fields": {"first_name": "Samuel Leopold", "gender": "male", "text": [47734, 47735], "collection": [], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93988, "fields": {"first_name": "Art\u00far", "gender": "male", "text": [47746, 47747], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93991, "fields": {"first_name": "Emanuel Maria Gf. von", "gender": "male", "text": [47748, 47749], "collection": [], "profession": [141, 235], "title": []}}, {"model": "entities.person", "pk": 94003, "fields": {"first_name": "Ernst Maximilian Frh. von", "gender": "male", "text": [47754, 47755], "collection": [], "profession": [128, 146, 233], "title": []}}, {"model": "entities.person", "pk": 94006, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47756, 47757], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 94009, "fields": {"first_name": "Emmerich", "gender": "male", "text": [47758, 47759], "collection": [], "profession": [166, 234], "title": []}}, {"model": "entities.person", "pk": 94018, "fields": {"first_name": "Richard", "gender": "male", "text": [47764, 47765], "collection": [], "profession": [151, 232], "title": []}}, {"model": "entities.place", "pk": 26, "fields": {"kind": 9, "lat": 45.33917, "lng": 14.30833, "text": [12, 14, 11225], "collection": []}}, {"model": "entities.place", "pk": 133, "fields": {"kind": 12, "lat": 45.81444, "lng": 15.97798, "text": [59, 11275], "collection": []}}, {"model": "entities.place", "pk": 183, "fields": {"kind": 12, "lat": 48.20849, "lng": 16.37208, "text": [8304, 11203], "collection": []}}, {"model": "entities.place", "pk": 327, "fields": {"kind": 13, "lat": 49.19522, "lng": 16.60796, "text": [1064, 1090, 1092, 1094, 1096, 3300, 4453, 6308, 6417, 11259], "collection": []}}, {"model": "entities.place", "pk": 384, "fields": {"kind": 9, "lat": 49.19627, "lng": 13.50926, "text": [173, 8727, 11284], "collection": []}}, {"model": "entities.place", "pk": 400, "fields": {"kind": 12, "lat": 47.49801, "lng": 19.03991, "text": [181, 11223], "collection": []}}, {"model": "entities.place", "pk": 831, "fields": {"kind": 12, "lat": 44.43225, "lng": 26.10626, "text": [11242, 11243], "collection": []}}, {"model": "entities.place", "pk": 926, "fields": {"kind": 5, "lat": 48.00543, "lng": 16.23264, "text": [11313, 11314], "collection": []}}, {"model": "entities.place", "pk": 1390, "fields": {"kind": 12, "lat": 52.52437, "lng": 13.41053, "text": [11226, 11227], "collection": []}}, {"model": "entities.place", "pk": 1424, "fields": {"kind": 13, "lat": 50.76711, "lng": 15.05619, "text": [654, 5083, 5085, 6119, 6324, 6372, 7681, 7683, 7776, 8211, 11258], "collection": []}}, {"model": "entities.place", "pk": 1454, "fields": {"kind": 5, "lat": 47.38478, "lng": 9.90139, "text": [11337, 11338], "collection": []}}, {"model": "entities.place", "pk": 1701, "fields": {"kind": 9, "lat": 46.69111, "lng": 13.97111, "text": [784, 11271], "collection": []}}, {"model": "entities.place", "pk": 1718, "fields": {"kind": 5, "lat": 49.13995, "lng": 9.22054, "text": [11269, 11270], "collection": []}}, {"model": "entities.place", "pk": 2006, "fields": {"kind": 13, "lat": 47.75, "lng": 26.66667, "text": [928, 11251], "collection": []}}, {"model": "entities.place", "pk": 2072, "fields": {"kind": 12, "lat": 48.14816, "lng": 17.10674, "text": [962, 964, 7171, 7173, 11220], "collection": []}}, {"model": "entities.place", "pk": 2085, "fields": {"kind": 9, "lat": 50.58566, "lng": 16.33181, "text": [969, 971, 11272], "collection": []}}, {"model": "entities.place", "pk": 2161, "fields": {"kind": 13, "lat": 51.1, "lng": 17.03333, "text": [1011, 1013, 10485, 11199], "collection": []}}, {"model": "entities.place", "pk": 2170, "fields": {"kind": 5, "lat": 46.71503, "lng": 11.65598, "text": [1017, 1054, 1056, 11279], "collection": []}}, {"model": "entities.place", "pk": 2197, "fields": {"kind": 13, "lat": 50.20923, "lng": 15.83277, "text": [1029, 4052, 4438, 6016, 11204], "collection": []}}, {"model": "entities.place", "pk": 2281, "fields": {"kind": 11, "lat": 50.08791, "lng": 25.15027, "text": [11244, 11245], "collection": []}}, {"model": "entities.place", "pk": 2489, "fields": {"kind": 12, "lat": -34.61315, "lng": -58.37723, "text": [11256, 11257], "collection": []}}, {"model": "entities.place", "pk": 2602, "fields": {"kind": 5, "lat": 46.41326, "lng": 11.24616, "text": [1236, 3663, 3665, 9705, 11252], "collection": []}}, {"model": "entities.place", "pk": 2854, "fields": {"kind": 13, "lat": 48.29149, "lng": 25.94034, "text": [7828, 11224], "collection": []}}, {"model": "entities.place", "pk": 3105, "fields": {"kind": 5, "lat": 49.75133, "lng": 18.63213, "text": [1467, 9235, 9239, 11260], "collection": []}}, {"model": "entities.place", "pk": 3162, "fields": {"kind": 13, "lat": 46.76667, "lng": 23.6, "text": [3930, 3932, 11330], "collection": []}}, {"model": "entities.place", "pk": 4096, "fields": {"kind": 5, "lat": 50.80434, "lng": 6.49299, "text": [11299, 11300], "collection": []}}, {"model": "entities.place", "pk": 4269, "fields": {"kind": 9, "lat": 50.4406, "lng": 13.45738, "text": [2030, 11231], "collection": []}}, {"model": "entities.place", "pk": 4767, "fields": {"kind": 13, "lat": 47.06667, "lng": 15.45, "text": [11210, 11211], "collection": []}}, {"model": "entities.place", "pk": 4877, "fields": {"kind": 9, "lat": 48.51103, "lng": 14.50453, "text": [11319, 11320], "collection": []}}, {"model": "entities.place", "pk": 5294, "fields": {"kind": 11, "lat": 45.9, "lng": 25.85, "text": [2492, 11246], "collection": []}}, {"model": "entities.place", "pk": 5308, "fields": {"kind": 10, "lat": 51.08317, "lng": 7.53087, "text": [11289, 11290], "collection": []}}, {"model": "entities.place", "pk": 5478, "fields": {"kind": 11, "lat": 45.94088, "lng": 13.62167, "text": [2571, 2603, 2605, 11303], "collection": []}}, {"model": "entities.place", "pk": 5691, "fields": {"kind": 5, "lat": 46.66817, "lng": 11.15953, "text": [2675, 5101, 5344, 5346, 5348, 5350, 5352, 5353, 6350, 6352, 9735, 11326], "collection": []}}, {"model": "entities.place", "pk": 5749, "fields": {"kind": 11, "lat": 48.23333, "lng": 13.83333, "text": [11229, 11230], "collection": []}}, {"model": "entities.place", "pk": 6004, "fields": {"kind": 9, "lat": 50.03197, "lng": 17.04058, "text": [2825, 2827, 11294], "collection": []}}, {"model": "entities.place", "pk": 6324, "fields": {"kind": 13, "lat": 52.37052, "lng": 9.73322, "text": [11221, 11222], "collection": []}}, {"model": "entities.place", "pk": 6700, "fields": {"kind": 13, "lat": 47.26266, "lng": 11.39454, "text": [11235, 11236], "collection": []}}, {"model": "entities.place", "pk": 6947, "fields": {"kind": 9, "lat": 46.61472, "lng": 16.08583, "text": [3253, 3255, 11278], "collection": []}}, {"model": "entities.place", "pk": 7454, "fields": {"kind": 11, "lat": 50.20528, "lng": 19.27498, "text": [3504, 11336], "collection": []}}, {"model": "entities.place", "pk": 7622, "fields": {"kind": 5, "lat": 47.3765, "lng": 15.09144, "text": [11249, 11250], "collection": []}}, {"model": "entities.place", "pk": 7986, "fields": {"kind": 11, "lat": 51.31667, "lng": 9.5, "text": [11218, 11219], "collection": []}}, {"model": "entities.place", "pk": 8482, "fields": {"kind": 5, "lat": 48.30521, "lng": 16.32522, "text": [11322, 11323], "collection": []}}, {"model": "entities.place", "pk": 8798, "fields": {"kind": 5, "lat": 47.66033, "lng": 9.17582, "text": [11301, 11302], "collection": []}}, {"model": "entities.place", "pk": 9287, "fields": {"kind": 5, "lat": 47.58333, "lng": 12.16667, "text": [11324, 11325], "collection": []}}, {"model": "entities.place", "pk": 9455, "fields": {"kind": 9, "lat": 50.08364, "lng": 13.03925, "text": [4512, 11288], "collection": []}}, {"model": "entities.place", "pk": 9475, "fields": {"kind": 12, "lat": 46.05108, "lng": 14.50513, "text": [4522, 11331], "collection": []}}, {"model": "entities.place", "pk": 9735, "fields": {"kind": 13, "lat": 49.83826, "lng": 24.02324, "text": [4642, 4644, 5041, 5043, 5045, 10711, 11263], "collection": []}}, {"model": "entities.place", "pk": 10015, "fields": {"kind": 13, "lat": 48.30639, "lng": 14.28611, "text": [11195, 11196], "collection": []}}, {"model": "entities.place", "pk": 10265, "fields": {"kind": 12, "lat": 51.50853, "lng": -0.12574, "text": [11239, 11240], "collection": []}}, {"model": "entities.place", "pk": 10793, "fields": {"kind": 13, "lat": 46.55472, "lng": 15.64667, "text": [5193, 5219, 5221, 5223, 11266], "collection": []}}, {"model": "entities.place", "pk": 11238, "fields": {"kind": 9, "lat": 49.75565, "lng": 12.997, "text": [5409, 11234], "collection": []}}, {"model": "entities.place", "pk": 11556, "fields": {"kind": 9, "lat": 50.72063, "lng": 13.65723, "text": [5576, 11308], "collection": []}}, {"model": "entities.place", "pk": 11799, "fields": {"kind": 13, "lat": 48.13743, "lng": 11.57549, "text": [11197, 11198], "collection": []}}, {"model": "entities.place", "pk": 12211, "fields": {"kind": 11, "lat": 50.47379, "lng": 17.33437, "text": [5900, 11321], "collection": []}}, {"model": "entities.place", "pk": 12758, "fields": {"kind": 11, "lat": 43.70313, "lng": 7.26608, "text": [6173, 11205], "collection": []}}, {"model": "entities.place", "pk": 13253, "fields": {"kind": 9, "lat": 47.68501, "lng": 16.59049, "text": [6431, 11344], "collection": []}}, {"model": "entities.place", "pk": 13382, "fields": {"kind": 13, "lat": 49.59552, "lng": 17.25175, "text": [6491, 6493, 6495, 6497, 11228], "collection": []}}, {"model": "entities.place", "pk": 13714, "fields": {"kind": 12, "lat": 48.85341, "lng": 2.3488, "text": [11291, 11292], "collection": []}}, {"model": "entities.place", "pk": 13987, "fields": {"kind": 10, "lat": 47.91232, "lng": 12.81512, "text": [11280, 11281], "collection": []}}, {"model": "entities.place", "pk": 14608, "fields": {"kind": 12, "lat": 50.08804, "lng": 14.42076, "text": [7122, 7124, 7126, 7128, 7130, 11200], "collection": []}}, {"model": "entities.place", "pk": 16242, "fields": {"kind": 9, "lat": 48.25216, "lng": 17.21539, "text": [7951, 11214], "collection": []}}, {"model": "entities.place", "pk": 16310, "fields": {"kind": 5, "lat": 46.586, "lng": 11.08571, "text": [7994, 11327], "collection": []}}, {"model": "entities.place", "pk": 16594, "fields": {"kind": 9, "lat": 49.96122, "lng": 16.76576, "text": [8138, 11293], "collection": []}}, {"model": "entities.place", "pk": 16864, "fields": {"kind": 5, "lat": 46.75833, "lng": 15.20833, "text": [11286, 11287], "collection": []}}, {"model": "entities.place", "pk": 18374, "fields": {"kind": 9, "lat": 50.2421, "lng": 19.30725, "text": [9008, 11241], "collection": []}}, {"model": "entities.place", "pk": 18400, "fields": {"kind": 13, "lat": 46.253, "lng": 20.14824, "text": [9021, 11351], "collection": []}}, {"model": "entities.place", "pk": 19215, "fields": {"kind": 13, "lat": 46.06787, "lng": 11.12108, "text": [9433, 9434, 9461, 9463, 11348], "collection": []}}, {"model": "entities.place", "pk": 19599, "fields": {"kind": 9, "lat": 48.20735, "lng": 18.06581, "text": [9646, 11285], "collection": []}}, {"model": "entities.place", "pk": 20549, "fields": {"kind": 12, "lat": 52.22977, "lng": 21.01178, "text": [10129, 10131, 10133, 10135, 10138, 11345], "collection": []}}, {"model": "entities.place", "pk": 20659, "fields": {"kind": 5, "lat": 44.8975, "lng": 21.41722, "text": [10186, 11255], "collection": []}}, {"model": "entities.place", "pk": 20872, "fields": {"kind": 5, "lat": 47.11547, "lng": 13.13467, "text": [10300, 11339], "collection": []}}, {"model": "entities.place", "pk": 20988, "fields": {"kind": 9, "lat": 51.02308, "lng": -0.50604, "text": [11304, 11305], "collection": []}}, {"model": "entities.place", "pk": 21818, "fields": {"kind": 9, "lat": 49.75594, "lng": 16.46829, "text": [10788, 11215], "collection": []}}, {"model": "entities.place", "pk": 22216, "fields": {"kind": 9, "lat": 49.01898, "lng": 15.56994, "text": [11206, 11207], "collection": []}}, {"model": "entities.place", "pk": 22259, "fields": {"kind": 9, "lat": 46.83333, "lng": 12.85, "text": [11261, 11262], "collection": []}}, {"model": "entities.place", "pk": 22322, "fields": {"kind": 9, "lat": 47.97234, "lng": 14.26472, "text": [11237, 11238], "collection": []}}, {"model": "entities.place", "pk": 22354, "fields": {"kind": 11, "lat": 47.34999, "lng": 7.90329, "text": [11253, 11254], "collection": []}}, {"model": "entities.place", "pk": 22475, "fields": {"kind": 5, "lat": 49.8414, "lng": 7.86713, "text": [11311, 11312], "collection": []}}, {"model": "entities.place", "pk": 22494, "fields": {"kind": 9, "lat": 48.47121, "lng": 14.54023, "text": [11317, 11318], "collection": []}}, {"model": "entities.place", "pk": 22526, "fields": {"kind": 13, "lat": 46.80237, "lng": 7.15128, "text": [11334, 11335], "collection": []}}, {"model": "entities.place", "pk": 22545, "fields": {"kind": 11, "lat": 45.37333, "lng": 21.70917, "text": [11342, 11343], "collection": []}}, {"model": "entities.place", "pk": 22558, "fields": {"kind": 9, "lat": 49.46656, "lng": 19.9825, "text": [11346, 11347], "collection": []}}, {"model": "entities.place", "pk": 22570, "fields": {"kind": 5, "lat": 46.07867, "lng": 10.99735, "text": [11349, 11350], "collection": []}}, {"model": "entities.place", "pk": 93025, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93035, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93051, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93060, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93075, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93379, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93397, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93410, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93449, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93562, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93610, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93658, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93715, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93749, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93804, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93855, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93879, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93934, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93937, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24869, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24898, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24899, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24900, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24908, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24909, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24910, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24911, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25012, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25035, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25059, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25060, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25143, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25186, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25187, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25188, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25189, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25199, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25200, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25212, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25213, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25395, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25396, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25397, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25398, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25401, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25402, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25405, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25412, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25413, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25414, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25415, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25416, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25417, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25418, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25419, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25420, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25421, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25589, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25626, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25627, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25628, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25629, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25630, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25631, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25632, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25633, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25634, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25635, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25767, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25768, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25769, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25770, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25771, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25772, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25773, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94102, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94103, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94104, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94105, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94120, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94121, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94122, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94123, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94124, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94125, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94126, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94127, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94128, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94129, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94131, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94132, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94133, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94134, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94135, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94136, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94137, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94138, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94139, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94140, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94141, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94247, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94248, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94249, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94250, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94251, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94307, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94308, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94309, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94310, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94311, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94312, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94313, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94314, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94315, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94323, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94324, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94351, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94352, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94353, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94354, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94355, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94356, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94357, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94358, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94359, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94360, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94361, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94362, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94433, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94434, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94435, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94436, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94437, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94438, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94439, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94440, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94441, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94442, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94822, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94823, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94824, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94825, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94826, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94827, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94828, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94829, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94830, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94831, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94885, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94886, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94887, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94888, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94889, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94890, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94891, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94892, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94894, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94895, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94896, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94897, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94898, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94899, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94900, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94901, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94902, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94903, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94904, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95024, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95025, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95026, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95027, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95028, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95029, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95030, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95043, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95044, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95045, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95046, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95047, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95048, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95049, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95050, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95051, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95052, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95053, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95054, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95123, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95124, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95125, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95126, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95127, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95128, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95129, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95130, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95131, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95156, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95157, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95158, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95159, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95160, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95161, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95162, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95163, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95164, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95397, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95398, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95399, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95400, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95401, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95402, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95403, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95404, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95405, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95406, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95407, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95582, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95583, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95584, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95596, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95597, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95598, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95599, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95600, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95601, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95602, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95603, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95604, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95847, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95848, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95867, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95868, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95869, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95870, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95871, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95872, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95873, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95874, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95875, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95876, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95929, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95930, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95931, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95932, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95949, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95950, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95951, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95952, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95953, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95954, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95955, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95956, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95957, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96143, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96144, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96145, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96146, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96208, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96209, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96210, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96211, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96221, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96222, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96223, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96224, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96225, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96226, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96458, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96459, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96460, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96461, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96462, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96463, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96464, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96465, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96466, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96467, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96620, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96621, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96622, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96623, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96728, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96729, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96730, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96731, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96732, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96733, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96734, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96735, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96736, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96737, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96738, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96740, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96741, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96742, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96743, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96744, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96745, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96746, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96747, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96748, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96749, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96750, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96758, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96759, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96813, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96814, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96815, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96816, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96817, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96858, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96859, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96860, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96861, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96862, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96863, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96864, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96865, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96947, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96948, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96949, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96950, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96951, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96952, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96953, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96954, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96955, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96956, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97430, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97529, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97530, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97531, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97532, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97533, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97534, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97578, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97592, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97593, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97617, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97623, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97657, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97707, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97723, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97753, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97790, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97834, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97849, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97884, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97888, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97896, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97933, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97943, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97944, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97945, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97976, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97977, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97986, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98006, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98024, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98183, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98184, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98185, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98237, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98296, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98297, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98298, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98299, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98300, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98301, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98348, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98551, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98569, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98570, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98579, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98580, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98581, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98582, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98583, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98584, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98585, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98586, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98587, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98588, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98604, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98605, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98606, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98696, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98697, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98714, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98722, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98723, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98724, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98725, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98726, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98727, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98728, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98729, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98730, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98731, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98732, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98733, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98734, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98735, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98736, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98737, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98886, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98891, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98892, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98922, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98923, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98924, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98925, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98980, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98990, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98991, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98992, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98993, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98994, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98995, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98996, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98997, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98998, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98999, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99000, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99001, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99002, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99003, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99004, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99005, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99006, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99007, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99008, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99009, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99075, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99092, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99093, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99094, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99095, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99096, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99097, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99098, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99099, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99100, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99101, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99102, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99103, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99104, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99105, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99106, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99107, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99108, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99109, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99110, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99156, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99336, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99337, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99352, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99353, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99354, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99355, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99356, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99357, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99358, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99369, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99370, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99371, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99372, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99373, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99374, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99375, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99376, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99377, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99378, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99416, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99417, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99418, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99419, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99420, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99421, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99422, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99423, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99744, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99841, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99842, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99843, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99844, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99845, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99846, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99847, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99848, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99849, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99850, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "vocabularies.vocabnames", "pk": 1, "fields": {"name": "ProfessionType"}}, {"model": "vocabularies.vocabnames", "pk": 2, "fields": {"name": "PersonPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 5, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 6, "fields": {"name": "PersonPersonRelation"}}, {"model": "vocabularies.vocabnames", "pk": 7, "fields": {"name": "TextType"}}, {"model": "vocabularies.vocabnames", "pk": 8, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 9, "fields": {"name": "InstitutionType"}}, {"model": "vocabularies.vocabnames", "pk": 10, "fields": {"name": "PlaceType"}}, {"model": "vocabularies.vocabnames", "pk": 11, "fields": {"name": "CollectionType"}}, {"model": "relations.personperson", "pk": 92840, "fields": {"relation_type": 5608, "related_persona": 92412, "related_personb": 92603, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92930, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88902, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92931, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 27245, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92932, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88219, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92933, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 62757, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92934, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 56248, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92935, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 46414, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46415, "fields": {"relation_type": 595, "related_person": 46414, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46416, "fields": {"relation_type": 596, "related_person": 46414, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 56249, "fields": {"relation_type": 595, "related_person": 56248, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 88904, "fields": {"relation_type": 596, "related_person": 88902, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92415, "fields": {"relation_type": 595, "related_person": 92412, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92604, "fields": {"relation_type": 595, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92605, "fields": {"relation_type": 596, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93004, "fields": {"relation_type": 595, "related_person": 93003, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93005, "fields": {"relation_type": 596, "related_person": 93003, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93010, "fields": {"relation_type": 595, "related_person": 93009, "related_place": 18374, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93011, "fields": {"relation_type": 596, "related_person": 93009, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93013, "fields": {"relation_type": 595, "related_person": 93012, "related_place": 5294, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93014, "fields": {"relation_type": 596, "related_person": 93012, "related_place": 2489, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93016, "fields": {"relation_type": 595, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93017, "fields": {"relation_type": 596, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93019, "fields": {"relation_type": 595, "related_person": 93018, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93020, "fields": {"relation_type": 596, "related_person": 93018, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93022, "fields": {"relation_type": 595, "related_person": 93021, "related_place": 16242, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93023, "fields": {"relation_type": 596, "related_person": 93021, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93026, "fields": {"relation_type": 595, "related_person": 93024, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93027, "fields": {"relation_type": 596, "related_person": 93024, "related_place": 93025, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93029, "fields": {"relation_type": 595, "related_person": 93028, "related_place": 7986, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93030, "fields": {"relation_type": 596, "related_person": 93028, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93032, "fields": {"relation_type": 595, "related_person": 93031, "related_place": 6324, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93033, "fields": {"relation_type": 596, "related_person": 93031, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93036, "fields": {"relation_type": 595, "related_person": 93034, "related_place": 93035, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93037, "fields": {"relation_type": 596, "related_person": 93034, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93045, "fields": {"relation_type": 595, "related_person": 93044, "related_place": 2161, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93046, "fields": {"relation_type": 596, "related_person": 93044, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93048, "fields": {"relation_type": 595, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93049, "fields": {"relation_type": 596, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93054, "fields": {"relation_type": 595, "related_person": 93050, "related_place": 93051, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93055, "fields": {"relation_type": 596, "related_person": 93050, "related_place": 2197, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93057, "fields": {"relation_type": 595, "related_person": 93056, "related_place": 22216, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93058, "fields": {"relation_type": 596, "related_person": 93056, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93063, "fields": {"relation_type": 595, "related_person": 93059, "related_place": 93060, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93064, "fields": {"relation_type": 596, "related_person": 93059, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93066, "fields": {"relation_type": 595, "related_person": 93065, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93067, "fields": {"relation_type": 596, "related_person": 93065, "related_place": 1701, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93069, "fields": {"relation_type": 595, "related_person": 93068, "related_place": 1718, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93070, "fields": {"relation_type": 596, "related_person": 93068, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93072, "fields": {"relation_type": 595, "related_person": 93071, "related_place": 22259, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93073, "fields": {"relation_type": 596, "related_person": 93071, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93078, "fields": {"relation_type": 595, "related_person": 93074, "related_place": 93075, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93079, "fields": {"relation_type": 596, "related_person": 93074, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93137, "fields": {"relation_type": 595, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93138, "fields": {"relation_type": 596, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93329, "fields": {"relation_type": 595, "related_person": 93328, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93330, "fields": {"relation_type": 596, "related_person": 93328, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93338, "fields": {"relation_type": 595, "related_person": 93337, "related_place": 4269, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93339, "fields": {"relation_type": 596, "related_person": 93337, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93353, "fields": {"relation_type": 595, "related_person": 93352, "related_place": 5749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93354, "fields": {"relation_type": 596, "related_person": 93352, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93367, "fields": {"relation_type": 595, "related_person": 93366, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93368, "fields": {"relation_type": 596, "related_person": 93366, "related_place": 26, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93370, "fields": {"relation_type": 595, "related_person": 93369, "related_place": 13382, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93371, "fields": {"relation_type": 596, "related_person": 93369, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93382, "fields": {"relation_type": 595, "related_person": 93378, "related_place": 93379, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93383, "fields": {"relation_type": 596, "related_person": 93378, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93388, "fields": {"relation_type": 595, "related_person": 93387, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93389, "fields": {"relation_type": 596, "related_person": 93387, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93394, "fields": {"relation_type": 595, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93395, "fields": {"relation_type": 596, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93398, "fields": {"relation_type": 595, "related_person": 93396, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93399, "fields": {"relation_type": 596, "related_person": 93396, "related_place": 93397, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93401, "fields": {"relation_type": 595, "related_person": 93400, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93402, "fields": {"relation_type": 596, "related_person": 93400, "related_place": 12758, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93413, "fields": {"relation_type": 595, "related_person": 93409, "related_place": 93410, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93414, "fields": {"relation_type": 596, "related_person": 93409, "related_place": 133, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93416, "fields": {"relation_type": 595, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93417, "fields": {"relation_type": 596, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93419, "fields": {"relation_type": 595, "related_person": 93418, "related_place": 22354, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93420, "fields": {"relation_type": 596, "related_person": 93418, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93443, "fields": {"relation_type": 595, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93444, "fields": {"relation_type": 596, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93446, "fields": {"relation_type": 595, "related_person": 93445, "related_place": 2006, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93447, "fields": {"relation_type": 596, "related_person": 93445, "related_place": 7622, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93452, "fields": {"relation_type": 595, "related_person": 93448, "related_place": 93449, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93453, "fields": {"relation_type": 596, "related_person": 93448, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93470, "fields": {"relation_type": 595, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93471, "fields": {"relation_type": 596, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93482, "fields": {"relation_type": 595, "related_person": 93481, "related_place": 2281, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93483, "fields": {"relation_type": 596, "related_person": 93481, "related_place": 831, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93485, "fields": {"relation_type": 595, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93486, "fields": {"relation_type": 596, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93488, "fields": {"relation_type": 595, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93489, "fields": {"relation_type": 596, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93511, "fields": {"relation_type": 595, "related_person": 93510, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93512, "fields": {"relation_type": 596, "related_person": 93510, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93514, "fields": {"relation_type": 595, "related_person": 93513, "related_place": 22322, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93515, "fields": {"relation_type": 596, "related_person": 93513, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93517, "fields": {"relation_type": 595, "related_person": 93516, "related_place": 20659, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93518, "fields": {"relation_type": 596, "related_person": 93516, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93541, "fields": {"relation_type": 595, "related_person": 93540, "related_place": 1424, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93542, "fields": {"relation_type": 596, "related_person": 93540, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93547, "fields": {"relation_type": 595, "related_person": 93546, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93548, "fields": {"relation_type": 596, "related_person": 93546, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93565, "fields": {"relation_type": 595, "related_person": 93561, "related_place": 93562, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93566, "fields": {"relation_type": 596, "related_person": 93561, "related_place": 10793, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93574, "fields": {"relation_type": 595, "related_person": 93573, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93575, "fields": {"relation_type": 596, "related_person": 93573, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93589, "fields": {"relation_type": 595, "related_person": 93588, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93590, "fields": {"relation_type": 596, "related_person": 93588, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93601, "fields": {"relation_type": 595, "related_person": 93600, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93602, "fields": {"relation_type": 596, "related_person": 93600, "related_place": 3105, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93613, "fields": {"relation_type": 595, "related_person": 93609, "related_place": 13987, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93614, "fields": {"relation_type": 596, "related_person": 93609, "related_place": 93610, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93616, "fields": {"relation_type": 595, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93617, "fields": {"relation_type": 596, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93640, "fields": {"relation_type": 595, "related_person": 93639, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93641, "fields": {"relation_type": 596, "related_person": 93639, "related_place": 2170, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93643, "fields": {"relation_type": 595, "related_person": 93642, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93644, "fields": {"relation_type": 596, "related_person": 93642, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93646, "fields": {"relation_type": 595, "related_person": 93645, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93647, "fields": {"relation_type": 596, "related_person": 93645, "related_place": 6947, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93652, "fields": {"relation_type": 595, "related_person": 93651, "related_place": 21818, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93653, "fields": {"relation_type": 596, "related_person": 93651, "related_place": 2854, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93655, "fields": {"relation_type": 595, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93656, "fields": {"relation_type": 596, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93661, "fields": {"relation_type": 595, "related_person": 93657, "related_place": 93658, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93662, "fields": {"relation_type": 596, "related_person": 93657, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93664, "fields": {"relation_type": 595, "related_person": 93663, "related_place": 22545, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93665, "fields": {"relation_type": 596, "related_person": 93663, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93679, "fields": {"relation_type": 595, "related_person": 93678, "related_place": 1454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93680, "fields": {"relation_type": 596, "related_person": 93678, "related_place": 20872, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93685, "fields": {"relation_type": 595, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93686, "fields": {"relation_type": 596, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93703, "fields": {"relation_type": 595, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93704, "fields": {"relation_type": 596, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93706, "fields": {"relation_type": 595, "related_person": 93705, "related_place": 7454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93707, "fields": {"relation_type": 596, "related_person": 93705, "related_place": 22526, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93718, "fields": {"relation_type": 595, "related_person": 93714, "related_place": 93715, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93719, "fields": {"relation_type": 596, "related_person": 93714, "related_place": 9475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93752, "fields": {"relation_type": 595, "related_person": 93748, "related_place": 93749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93753, "fields": {"relation_type": 596, "related_person": 93748, "related_place": 3162, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93780, "fields": {"relation_type": 595, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93781, "fields": {"relation_type": 596, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93786, "fields": {"relation_type": 595, "related_person": 93785, "related_place": 16310, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93787, "fields": {"relation_type": 596, "related_person": 93785, "related_place": 5691, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93792, "fields": {"relation_type": 595, "related_person": 93791, "related_place": 9287, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93793, "fields": {"relation_type": 596, "related_person": 93791, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93801, "fields": {"relation_type": 595, "related_person": 93800, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93802, "fields": {"relation_type": 596, "related_person": 93800, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93807, "fields": {"relation_type": 595, "related_person": 93803, "related_place": 93804, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93808, "fields": {"relation_type": 596, "related_person": 93803, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93810, "fields": {"relation_type": 595, "related_person": 93809, "related_place": 22494, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93811, "fields": {"relation_type": 596, "related_person": 93809, "related_place": 4877, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93816, "fields": {"relation_type": 595, "related_person": 93815, "related_place": 12211, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93817, "fields": {"relation_type": 596, "related_person": 93815, "related_place": 8482, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93819, "fields": {"relation_type": 595, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93820, "fields": {"relation_type": 596, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93837, "fields": {"relation_type": 595, "related_person": 93836, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93838, "fields": {"relation_type": 596, "related_person": 93836, "related_place": 22475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93840, "fields": {"relation_type": 595, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93841, "fields": {"relation_type": 596, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93858, "fields": {"relation_type": 595, "related_person": 93854, "related_place": 93855, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93859, "fields": {"relation_type": 596, "related_person": 93854, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93864, "fields": {"relation_type": 595, "related_person": 93863, "related_place": 11556, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93865, "fields": {"relation_type": 596, "related_person": 93863, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93867, "fields": {"relation_type": 595, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93868, "fields": {"relation_type": 596, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93880, "fields": {"relation_type": 595, "related_person": 93878, "related_place": 93879, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93881, "fields": {"relation_type": 596, "related_person": 93878, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93892, "fields": {"relation_type": 595, "related_person": 93891, "related_place": 8798, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93893, "fields": {"relation_type": 596, "related_person": 93891, "related_place": 5478, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93895, "fields": {"relation_type": 595, "related_person": 93894, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93896, "fields": {"relation_type": 596, "related_person": 93894, "related_place": 20988, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93901, "fields": {"relation_type": 595, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93902, "fields": {"relation_type": 596, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93904, "fields": {"relation_type": 595, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93905, "fields": {"relation_type": 596, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93910, "fields": {"relation_type": 595, "related_person": 93909, "related_place": 4096, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93911, "fields": {"relation_type": 596, "related_person": 93909, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93922, "fields": {"relation_type": 595, "related_person": 93921, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93923, "fields": {"relation_type": 596, "related_person": 93921, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93938, "fields": {"relation_type": 595, "related_person": 93933, "related_place": 93934, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93939, "fields": {"relation_type": 596, "related_person": 93933, "related_place": 93937, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93941, "fields": {"relation_type": 595, "related_person": 93940, "related_place": 16594, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93942, "fields": {"relation_type": 596, "related_person": 93940, "related_place": 6004, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93947, "fields": {"relation_type": 595, "related_person": 93946, "related_place": 5308, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93948, "fields": {"relation_type": 596, "related_person": 93946, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93956, "fields": {"relation_type": 595, "related_person": 93955, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93957, "fields": {"relation_type": 596, "related_person": 93955, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93959, "fields": {"relation_type": 595, "related_person": 93958, "related_place": 9455, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93960, "fields": {"relation_type": 596, "related_person": 93958, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93962, "fields": {"relation_type": 595, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93963, "fields": {"relation_type": 596, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93965, "fields": {"relation_type": 595, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93966, "fields": {"relation_type": 596, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93968, "fields": {"relation_type": 595, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93969, "fields": {"relation_type": 596, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93971, "fields": {"relation_type": 595, "related_person": 93970, "related_place": 19599, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93972, "fields": {"relation_type": 596, "related_person": 93970, "related_place": 16864, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93989, "fields": {"relation_type": 595, "related_person": 93988, "related_place": 18400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93990, "fields": {"relation_type": 596, "related_person": 93988, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93992, "fields": {"relation_type": 595, "related_person": 93991, "related_place": 19215, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93993, "fields": {"relation_type": 596, "related_person": 93991, "related_place": 22570, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94004, "fields": {"relation_type": 595, "related_person": 94003, "related_place": 13253, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94005, "fields": {"relation_type": 596, "related_person": 94003, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94007, "fields": {"relation_type": 595, "related_person": 94006, "related_place": 22558, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94008, "fields": {"relation_type": 596, "related_person": 94006, "related_place": 20549, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94010, "fields": {"relation_type": 595, "related_person": 94009, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94011, "fields": {"relation_type": 596, "related_person": 94009, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94019, "fields": {"relation_type": 595, "related_person": 94018, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94020, "fields": {"relation_type": 596, "related_person": 94018, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 98116, "fields": {"relation_type": 595, "related_person": null, "related_place": null, "text": [], "collection": []}}, {"model": "relations.personinstitution", "pk": 99591, "fields": {"relation_type": null, "related_person": null, "related_institution": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 26, "fields": {"name": "Opatija", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [12, 14, 11225], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 133, "fields": {"name": "Zagreb", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [59, 11275], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 183, "fields": {"name": "Wien", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [8304, 11203], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 327, "fields": {"name": "Br\u00fcnn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1064, 1090, 1092, 1094, 1096, 3300, 4453, 6308, 6417, 11259], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 384, "fields": {"name": "Dlouh\u00e1 Ves", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [173, 8727, 11284], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 400, "fields": {"name": "Budapest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [181, 11223], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 831, "fields": {"name": "Bukarest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11242, 11243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 926, "fields": {"name": "Baden", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11313, 11314], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1390, "fields": {"name": "Berlin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11226, 11227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1424, "fields": {"name": "Liberec", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [654, 5083, 5085, 6119, 6324, 6372, 7681, 7683, 7776, 8211, 11258], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1454, "fields": {"name": "Bezau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11337, 11338], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1701, "fields": {"name": "Bodensdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [784, 11271], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1718, "fields": {"name": "Heilbronn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11269, 11270], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2006, "fields": {"name": "Boto\u015fani", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [928, 11251], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2072, "fields": {"name": "Pressburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [962, 964, 7171, 7173, 11220], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2085, "fields": {"name": "Braunau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [969, 971, 11272], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2161, "fields": {"name": "Breslau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1011, 1013, 10485, 11199], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2170, "fields": {"name": "Brixen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1017, 1054, 1056, 11279], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2197, "fields": {"name": "K\u00f6niggr\u00e4tz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1029, 4052, 4438, 6016, 11204], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2281, "fields": {"name": "Brody", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11244, 11245], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2489, "fields": {"name": "Buenos Aires", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11256, 11257], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2602, "fields": {"name": "Kaltern an der Weinstrasse", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1236, 3663, 3665, 9705, 11252], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2854, "fields": {"name": "Tschernowitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7828, 11224], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3105, "fields": {"name": "Teschen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1467, 9235, 9239, 11260], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3162, "fields": {"name": "Klausenburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3930, 3932, 11330], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4096, "fields": {"name": "D\u00fcren", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11299, 11300], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4269, "fields": {"name": "\u00dadlice", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2030, 11231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4767, "fields": {"name": "Graz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11210, 11211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4877, "fields": {"name": "Freistadt", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11319, 11320], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5294, "fields": {"name": "Ghidfal\u0103u", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2492, 11246], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5308, "fields": {"name": "Marienheide", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11289, 11290], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5478, "fields": {"name": "G\u00f6rz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2571, 2603, 2605, 11303], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5691, "fields": {"name": "Meran", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2675, 5101, 5344, 5346, 5348, 5350, 5352, 5353, 6350, 6352, 9735, 11326], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5749, "fields": {"name": "Grieskirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11229, 11230], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6004, "fields": {"name": "Grossullersdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2825, 2827, 11294], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6324, "fields": {"name": "Hannover", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11221, 11222], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6700, "fields": {"name": "Innsbruck", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11235, 11236], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6947, "fields": {"name": "Hrastje-Mota", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3253, 3255, 11278], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7454, "fields": {"name": "Jaworzno", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3504, 11336], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7622, "fields": {"name": "Leoben", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11249, 11250], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7986, "fields": {"name": "Cassel", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11218, 11219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8482, "fields": {"name": "Klosterneuburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11322, 11323], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8798, "fields": {"name": "Konstanz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11301, 11302], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9287, "fields": {"name": "Kufstein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11324, 11325], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9455, "fields": {"name": "Lachovice", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4512, 11288], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9475, "fields": {"name": "Ljubljana", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4522, 11331], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9735, "fields": {"name": "Lemberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4642, 4644, 5041, 5043, 5045, 10711, 11263], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10015, "fields": {"name": "Linz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11195, 11196], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10265, "fields": {"name": "London", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11239, 11240], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10793, "fields": {"name": "Marburg an der Drau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5193, 5219, 5221, 5223, 11266], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11238, "fields": {"name": "Mies", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5409, 11234], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11556, "fields": {"name": "Moldava", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5576, 11308], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11799, "fields": {"name": "M\u00fcnchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11197, 11198], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12211, "fields": {"name": "Nysa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5900, 11321], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12758, "fields": {"name": "Nizza", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6173, 11205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13253, "fields": {"name": "Sopron", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6431, 11344], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13382, "fields": {"name": "Olm\u00fctz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6491, 6493, 6495, 6497, 11228], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13714, "fields": {"name": "Paris", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11291, 11292], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13987, "fields": {"name": "Petting", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11280, 11281], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 14608, "fields": {"name": "Prag", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7122, 7124, 7126, 7128, 7130, 11200], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16242, "fields": {"name": "Sv\u00e4t\u00fd Jur", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7951, 11214], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16310, "fields": {"name": "Sankt Pankraz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7994, 11327], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16594, "fields": {"name": "\u0160t\u00edty", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [8138, 11293], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16864, "fields": {"name": "Schwanberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11286, 11287], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18374, "fields": {"name": "Szczakowa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9008, 11241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18400, "fields": {"name": "Szegedin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9021, 11351], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19215, "fields": {"name": "Trient", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9433, 9434, 9461, 9463, 11348], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19599, "fields": {"name": "Mojm\u00edrovce", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9646, 11285], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20549, "fields": {"name": "Warschau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10129, 10131, 10133, 10135, 10138, 11345], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20659, "fields": {"name": "Wei\u00dfkirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10186, 11255], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20872, "fields": {"name": "Bad Gastein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10300, 11339], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20988, "fields": {"name": "Wisborough Green", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11304, 11305], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 21818, "fields": {"name": "Zwittau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10788, 11215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22216, "fields": {"name": "Jamnitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11206, 11207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22259, "fields": {"name": "Stronach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11261, 11262], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22322, "fields": {"name": "Gr\u00fcnburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11237, 11238], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22354, "fields": {"name": "Olten", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11253, 11254], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22475, "fields": {"name": "Bad Kreuznach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11311, 11312], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22494, "fields": {"name": "Lasberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11317, 11318], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22526, "fields": {"name": "Freiburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11334, 11335], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22545, "fields": {"name": "Boc\u015fa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11342, 11343], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22558, "fields": {"name": "Lud\u017amierz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11346, 11347], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22570, "fields": {"name": "Vezzano", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11349, 11350], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24156, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24696, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24697, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24698, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24699, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24835, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24860, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24869, "fields": {"name": "Kainz, Joseph: Der junge Kainz. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24898, "fields": {"name": "Neubauer, Carl T.: Anleitung zur qualitativen und quantitativen Analyse des Harns zum Geb*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24899, "fields": {"name": "Huppert, Hugo: Anleitung zur qualitativen und quantitativen Analyse des Harns zum Gebrauc*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24900, "fields": {"name": "Zoochemie. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24908, "fields": {"name": "Otto Heubners Lebenschronik. - 1927.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24909, "fields": {"name": "Die Luntische Erkrankung der Hirnarterien. - 1874.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24910, "fields": {"name": "Gaffky, Georg T.: U\u0308ber die Gefahren der Serumkrankheit bei der Schutzimpfung ... - 1913.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24911, "fields": {"name": "Die experimentelle Diphterie. - 1883.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25012, "fields": {"name": "Nachlass Eduard von Charlemont. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25035, "fields": {"name": "In memoriam. - 1873", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25059, "fields": {"name": "Lehrbuch der allgemeinen Metaphysik und der Metaphysik ... - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25060, "fields": {"name": "Auszug des Wissenswu\u0308rdigsten aus der Geschichte der Philosophie. - 1836", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25143, "fields": {"name": "Antoni\u0301n Ma\u0301nes", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25186, "fields": {"name": "Rowntree, Benjamin S.: Poverty. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25187, "fields": {"name": "Rowntree, Benjamin S.: Comment diminuer la mise\u0300re. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25188, "fields": {"name": "Rowntree, Benjamin S.: How the labourer lives. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25189, "fields": {"name": "Rowntree, Benjamin S.: The human Needs of labour. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25199, "fields": {"name": "Swerts, Jan: In lauwe MV C XXX werdt ghepubliceert de ordonnantie op het onderhoudt van d*. - [ca. 1870]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25200, "fields": {"name": "Swerts, Jan: De schepene bezoeken een der drie groote schoolen ingerigt VI Decembri MII*. - [ca. 1870]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25212, "fields": {"name": "Kapp, Wolfgang: Die nationalen Kreise und der Reichskanzler. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25213, "fields": {"name": "Kapp, Wolfgang: Die nationalen Kreise und der Reichskanzler. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25395, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef von: Die ku\u0308nstlichen Scha\u0308delverbildungen im Allgemeinen und zwei *. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25396, "fields": {"name": "Lenhosse\u0300k, Jo\u0301zsef von: Das veno\u0308se Convolut der Beckenho\u0308hle beim Manne. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25397, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef: Die Ausgrabungen zu Szeged-O\u0308thalom in Ungarn, namentlich die in de*. - 1884", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25398, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef: A Szeged-o\u0308thalmi a\u0301sata\u0301sokro\u0301l, ku\u0308lo\u0308no\u0308sen az felfedezett o\u030bs-magyar*. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25401, "fields": {"name": "Der feinere Bau des Nervensystems im Lichte neuester Forschungen. - 1895", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25402, "fields": {"name": "Das Problem der geschlechtsbestimmenden Ursachen. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25405, "fields": {"name": "Ein @Anfa\u0308ngerstreich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25412, "fields": {"name": "Stein, Lorenz von: Verwaltungslehre und Verwaltungsrecht (Handbuch der Verwaltungslehre)*. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25413, "fields": {"name": "Stein, Lorenz von: Verwaltungslehre und Verwaltungsrecht. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25414, "fields": {"name": "Stein, Lorenz von: Handbuch der Verwaltungslehre und des Verwaltungsrechts mit Vergleic*. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25415, "fields": {"name": "Stein, Lorenz von: Lehrbuch der Volkswirthschaft. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25416, "fields": {"name": "Stein, Lorenz von: System der Statistik, der Populationistik und der Volkswirtschaftsle*. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25417, "fields": {"name": "Stein, Lorenz von: Die staatswissenschaftliche und die landwirthschaftliche Bildung. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25418, "fields": {"name": "Stein, Lorenz von: System der Staatswissenschaft", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25419, "fields": {"name": "Stein, Lorenz von: System der Statistik, der Populationistik und der Volkswirthschaftsl*. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25420, "fields": {"name": "Stein, Lorenz von: La question de Schleswig-Holstein. - 1848", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25421, "fields": {"name": "Stein, Lorenz von: Handbuch der Verwaltungslehre und des Verwaltungsrechts mit Vergleic*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25589, "fields": {"name": "Bilder aus der Ostmark. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25626, "fields": {"name": "Geschichte der Philosophie", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25627, "fields": {"name": "Vorlesungen u\u0308ber Metaphysik mit besonderer Beziehung auf Kant. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25628, "fields": {"name": "Grundzu\u0308ge der Lehre vom Urtheil. - 1876", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25629, "fields": {"name": "Das erste Problem der Ontologie. - 1863", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25630, "fields": {"name": "Die Grundprobleme der Logik. - 1895", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25631, "fields": {"name": "Grundlinien einer Theorie des Bewu\u00dftseins. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25632, "fields": {"name": "U\u0308ber das Scho\u0308ne. - 1887", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25633, "fields": {"name": "Ueber den Utilitarianismus. - 1883", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25634, "fields": {"name": "Allgemeine Logik", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25635, "fields": {"name": "Sinn und Erkenntnis. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25767, "fields": {"name": "La Reine Hortense en Italie, en France et en Angleterre ... - 1831", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25768, "fields": {"name": "Me\u0301moires", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25769, "fields": {"name": "[Romanzen]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25770, "fields": {"name": "Re\u0301cit de mon passage en France en 1831 et des causes qui ... - 1834", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25771, "fields": {"name": "Die Ko\u0308nigin Hortensia in Italien, Frankreich und England ... - 1834", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25772, "fields": {"name": "Napole\u0301on : Lettres de Napoleon a\u0300 Jose\u0301phine pendant la premie\u0300re ... - 1833", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25773, "fields": {"name": "Campan, Jeanne L.: Correspondance ine\u0301dite de Mme. Campan avec la reine Hortense. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 27245, "fields": {"name": "Thalberg", "review": false, "start_date": "1812-01-08", "end_date": "1871-04-27", "start_date_written": "8.1.1812", "end_date_written": "27.4.1871", "status": "", "source": 531, "references": null, "notes": null, "text": [12155, 12156], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46414, "fields": {"name": "Reicha", "review": false, "start_date": "1770-02-26", "end_date": "1836-05-28", "start_date_written": "26.2.1770", "end_date_written": "28.5.1836", "status": "", "source": 5804, "references": null, "notes": null, "text": [21722, 21723], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56248, "fields": {"name": "Moscheles", "review": false, "start_date": "1794-05-23", "end_date": "1870-03-10", "start_date_written": "23.5.1794", "end_date_written": "10.3.1870", "status": "", "source": 8543, "references": null, "notes": null, "text": [27186, 27187], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56249, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 62757, "fields": {"name": "Liszt", "review": false, "start_date": "1811-10-22", "end_date": "1886-07-31", "start_date_written": "22.10.1811", "end_date_written": "31.7.1886", "status": "", "source": 10332, "references": null, "notes": null, "text": [30762, 30763], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88219, "fields": {"name": "Blahetka", "review": false, "start_date": "1810-11-15", "end_date": "1885-01-01", "start_date_written": "15.11.1810", "end_date_written": "1.1.1885", "status": "", "source": 17415, "references": null, "notes": null, "text": [44908, 44909], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88902, "fields": {"name": "Beethoven", "review": false, "start_date": "1770-12-16", "end_date": "1827-03-26", "start_date_written": "16.12.1770", "end_date_written": "26.3.1827", "status": "", "source": 17608, "references": null, "notes": null, "text": [45290, 45291], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 91062, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92412, "fields": {"name": "B\u00e4uerle", "review": false, "start_date": "1817-12-11", "end_date": "1896-07-17", "start_date_written": "11.12.1817", "end_date_written": "17.7.1896", "status": "", "source": 17852, "references": null, "notes": null, "text": [47030, 47031], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92603, "fields": {"name": "Czerny", "review": false, "start_date": "1791-02-21", "end_date": "1857-07-15", "start_date_written": "21.2.1791", "end_date_written": "15.7.1857", "status": "", "source": 18525, "references": null, "notes": null, "text": [47126, 47127], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92604, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92605, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92930, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92931, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92932, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92933, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92934, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92935, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93003, "fields": {"name": "Bahr", "review": false, "start_date": "1863-07-19", "end_date": "1934-01-14", "start_date_written": "19.7.1863", "end_date_written": "14.1.1934", "status": "", "source": 102, "references": null, "notes": null, "text": [47200, 47201], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93009, "fields": {"name": "Czerny", "review": false, "start_date": "1863-03-25", "end_date": "1941-10-03", "start_date_written": "25.3.1863", "end_date_written": "3.10.1941", "status": "", "source": 114, "references": null, "notes": null, "text": [47204, 47205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93012, "fields": {"name": "Czetz", "review": false, "start_date": "1822-06-08", "end_date": "1904-09-06", "start_date_written": "8.6.1822", "end_date_written": "6.9.1904", "status": "", "source": 116, "references": null, "notes": null, "text": [47206, 47207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93013, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93014, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93015, "fields": {"name": "Czikann", "review": false, "start_date": "1789-07-10", "end_date": "1855-06-10", "start_date_written": "10.7.1789", "end_date_written": "10.6.1855", "status": "", "source": 117, "references": null, "notes": null, "text": [47208, 47209], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93016, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93017, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93018, "fields": {"name": "Clam-Gallas", "review": false, "start_date": "1805-03-11", "end_date": "1891-03-17", "start_date_written": "11.3.1805", "end_date_written": "17.3.1891", "status": "", "source": 108, "references": null, "notes": null, "text": [47210, 47211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93021, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1826-06-15", "end_date": "1887-06-05", "start_date_written": "15.6.1826", "end_date_written": "5.6.1887", "status": "", "source": 109, "references": null, "notes": null, "text": [47212, 47213], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93022, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93023, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93024, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1863-01-01", "end_date": "1932-03-07", "start_date_written": "1.1.1863", "end_date_written": "7.3.1932", "status": "", "source": 110, "references": null, "notes": null, "text": [47214, 47215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93025, "fields": {"name": "Clam (Grein)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93026, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93027, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93028, "fields": {"name": "Claus", "review": false, "start_date": "1835-01-02", "end_date": "1899-01-18", "start_date_written": "2.1.1835", "end_date_written": "18.1.1899", "status": "", "source": 111, "references": null, "notes": null, "text": [47216, 47217], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93029, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93030, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93031, "fields": {"name": "Conze", "review": false, "start_date": "1831-12-10", "end_date": "1914-07-19", "start_date_written": "10.12.1831", "end_date_written": "19.7.1914", "status": "", "source": 112, "references": null, "notes": null, "text": [47218, 47219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93032, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93033, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93034, "fields": {"name": "Costenoble", "review": false, "start_date": "1769-12-25", "end_date": "1837-08-28", "start_date_written": "25.12.1769", "end_date_written": "28.8.1837", "status": "", "source": 113, "references": null, "notes": null, "text": [47220, 47221], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93035, "fields": {"name": "Herford, Westfalen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93036, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93037, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93044, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1846-03-21", "end_date": "1914-10-16", "start_date_written": "21.3.1846", "end_date_written": "16.10.1914", "status": "", "source": 103, "references": null, "notes": null, "text": [47226, 47227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93045, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93046, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93047, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1834-11-29", "end_date": "1902-11-24", "start_date_written": "29.11.1834", "end_date_written": "24.11.1902", "status": "", "source": 104, "references": null, "notes": null, "text": [47228, 47229], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93048, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93049, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93050, "fields": {"name": "\u010cerven\u00fd", "review": false, "start_date": "1819-09-27", "end_date": "1896-01-19", "start_date_written": "27.9.1819", "end_date_written": "19.1.1896", "status": "", "source": 105, "references": null, "notes": null, "text": [47230, 47231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93051, "fields": {"name": "Praha-Dube\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93054, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93055, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93056, "fields": {"name": "Charlemont", "review": false, "start_date": "1850-03-18", "end_date": "1939-03-18", "start_date_written": "18.3.1850", "end_date_written": "18.3.1939", "status": "", "source": 106, "references": null, "notes": null, "text": [47232, 47233], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93057, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93058, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93059, "fields": {"name": "Chlumczansk\u00fd", "review": false, "start_date": "1749-11-15", "end_date": "1830-06-14", "start_date_written": "15.11.1749", "end_date_written": "14.6.1830", "status": "", "source": 107, "references": null, "notes": null, "text": [47234, 47235], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93060, "fields": {"name": "Ho\u0161tice, kr. Jiho\u010desk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93063, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93064, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93065, "fields": {"name": "Dumba", "review": false, "start_date": "1856-06-17", "end_date": "1947-01-06", "start_date_written": "17.6.1856", "end_date_written": "6.1.1947", "status": "", "source": 121, "references": null, "notes": null, "text": [47236, 47237], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93066, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93067, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93068, "fields": {"name": "Doderer", "review": false, "start_date": "1825-01-02", "end_date": "1900-05-13", "start_date_written": "2.1.1825", "end_date_written": "13.5.1900", "status": "", "source": 120, "references": null, "notes": null, "text": [47238, 47239], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93069, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93070, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93071, "fields": {"name": "Defregger", "review": false, "start_date": "1835-04-30", "end_date": "1921-01-02", "start_date_written": "30.4.1835", "end_date_written": "2.1.1921", "status": "", "source": 118, "references": null, "notes": null, "text": [47240, 47241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93072, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93073, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93074, "fields": {"name": "Dengel", "review": false, "start_date": "1872-06-22", "end_date": "1947-09-09", "start_date_written": "22.6.1872", "end_date_written": "9.9.1947", "status": "", "source": 119, "references": null, "notes": null, "text": [47242, 47243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93075, "fields": {"name": "Elbigenalp-Untergiblen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93078, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93079, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93136, "fields": {"name": "Holovsky", "review": false, "start_date": "1917-04-29", "end_date": "1933-07-03", "start_date_written": "29.4.1917", "end_date_written": "3.7.1933", "status": "", "source": 122, "references": null, "notes": null, "text": [47276, 47277], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93137, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93138, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93328, "fields": {"name": "Lorenz", "review": false, "start_date": "1859-04-13", "end_date": "1945-03-25", "start_date_written": "13.4.1859", "end_date_written": "25.3.1945", "status": "", "source": 134, "references": null, "notes": null, "text": [47384, 47385], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93329, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93330, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93337, "fields": {"name": "L\u00f6wy", "review": false, "start_date": "1851-09-14", "end_date": "1905-12-27", "start_date_written": "14.9.1851", "end_date_written": "27.12.1905", "status": "", "source": 133, "references": null, "notes": null, "text": [47388, 47389], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93338, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93339, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93352, "fields": {"name": "Lobmeyr", "review": false, "start_date": "1792-03-17", "end_date": "1855-05-08", "start_date_written": "17.3.1792", "end_date_written": "8.5.1855", "status": "", "source": 132, "references": null, "notes": null, "text": [47394, 47395], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93353, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93354, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93366, "fields": {"name": "Lichtblau", "review": false, "start_date": "1844-05-17", "end_date": "1908-05-10", "start_date_written": "17.5.1844", "end_date_written": "10.5.1908", "status": "", "source": 130, "references": null, "notes": null, "text": [47402, 47403], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93367, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93368, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93369, "fields": {"name": "Lichtblau", "review": false, "start_date": "1875-02-25", "end_date": "1935-12-19", "start_date_written": "25.2.1875", "end_date_written": "19.12.1935", "status": "", "source": 131, "references": null, "notes": null, "text": [47404, 47405], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93370, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93371, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93378, "fields": {"name": "Leitgeb", "review": false, "start_date": "1835-10-20", "end_date": "1888-04-05", "start_date_written": "20.10.1835", "end_date_written": "5.4.1888", "status": "", "source": 128, "references": null, "notes": null, "text": [47410, 47411], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93379, "fields": {"name": "Portendorf, Bez. Klagenfurt Land", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93382, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93383, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93387, "fields": {"name": "Lenhoss\u00e9k", "review": false, "start_date": "1773-05-11", "end_date": "1840-02-11", "start_date_written": "11.5.1773", "end_date_written": "11.2.1840", "status": "", "source": 129, "references": null, "notes": null, "text": [47414, 47415], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93388, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93389, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93393, "fields": {"name": "Lefler", "review": false, "start_date": "1863-11-07", "end_date": "1919-03-14", "start_date_written": "7.11.1863", "end_date_written": "14.3.1919", "status": "", "source": 125, "references": null, "notes": null, "text": [47418, 47419], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93394, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93395, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93396, "fields": {"name": "Leichter", "review": false, "start_date": "1895-08-20", "end_date": "1942-03-17", "start_date_written": "20.8.1895", "end_date_written": "17.3.1942", "status": "", "source": 126, "references": null, "notes": null, "text": [47420, 47421], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93397, "fields": {"name": "KZ Ravensbr\u00fcck, Brandenburg", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93398, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93399, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93400, "fields": {"name": "Leidesdorf", "review": false, "start_date": "1810-09-25", "end_date": "1876-01-19", "start_date_written": "25.9.1810", "end_date_written": "19.1.1876", "status": "", "source": 127, "references": null, "notes": null, "text": [47422, 47423], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93401, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93402, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93409, "fields": {"name": "Lapaine", "review": false, "start_date": "1843-02-05", "end_date": "1923-02-21", "start_date_written": "5.2.1843", "end_date_written": "21.2.1923", "status": "", "source": 124, "references": null, "notes": null, "text": [47428, 47429], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93410, "fields": {"name": "Vojsko, sr. Gorica", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93413, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93414, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93415, "fields": {"name": "Langer-Schroll", "review": false, "start_date": "1850-10-02", "end_date": "1926-11-09", "start_date_written": "2.10.1850", "end_date_written": "9.11.1926", "status": "", "source": 123, "references": null, "notes": null, "text": [47430, 47431], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93417, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93418, "fields": {"name": "M\u00fcller", "review": false, "start_date": "1874-07-08", "end_date": "1941-12-09", "start_date_written": "8.7.1874", "end_date_written": "9.12.1941", "status": "", "source": 144, "references": null, "notes": null, "text": [47432, 47433], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93419, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93420, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93442, "fields": {"name": "M\u00f6rl", "review": false, "start_date": "1812-10-16", "end_date": "1868-01-11", "start_date_written": "16.10.1812", "end_date_written": "11.1.1868", "status": "", "source": 143, "references": null, "notes": null, "text": [47446, 47447], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93443, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93444, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93445, "fields": {"name": "Millosicz", "review": false, "start_date": "1819-10-18", "end_date": "1890-07-24", "start_date_written": "18.10.1819", "end_date_written": "24.7.1890", "status": "", "source": 142, "references": null, "notes": null, "text": [47448, 47449], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93446, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93447, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93448, "fields": {"name": "Miklosich", "review": false, "start_date": "1813-11-20", "end_date": "1891-03-07", "start_date_written": "20.11.1813", "end_date_written": "7.3.1891", "status": "", "source": 141, "references": null, "notes": null, "text": [47450, 47451], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93449, "fields": {"name": "Radomer\u0161\u010dak, sr. Murska Sobota", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93452, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93453, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93469, "fields": {"name": "Meithner", "review": false, "start_date": "1892-05-27", "end_date": "1942-12-13", "start_date_written": "27.5.1892", "end_date_written": "13.12.1942", "status": "", "source": 140, "references": null, "notes": null, "text": [47460, 47461], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93470, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93471, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93481, "fields": {"name": "Margulies", "review": false, "start_date": "1817-01-01", "end_date": "1880-01-01", "start_date_written": "1817", "end_date_written": "1880", "status": "", "source": 139, "references": null, "notes": null, "text": [47466, 47467], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93482, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93483, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93484, "fields": {"name": "M\u00e1nesov\u00e1", "review": false, "start_date": "1817-01-21", "end_date": null, "start_date_written": "21.1.1817", "end_date_written": "1883.6", "status": "", "source": 137, "references": null, "notes": null, "text": [47468, 47469], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93485, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93486, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93487, "fields": {"name": "M\u00e1nes", "review": false, "start_date": "1828-07-17", "end_date": "1880-08-05", "start_date_written": "17.7.1828", "end_date_written": "5.8.1880", "status": "", "source": 138, "references": null, "notes": null, "text": [47470, 47471], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93488, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93489, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93510, "fields": {"name": "Mayer", "review": false, "start_date": "1894-02-20", "end_date": "1944-07-01", "start_date_written": "20.2.1894", "end_date_written": "1.7.1944", "status": "", "source": 136, "references": null, "notes": null, "text": [47482, 47483], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93511, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93512, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93513, "fields": {"name": "Mahl-Schedl von Alpenburg", "review": false, "start_date": "1806-10-27", "end_date": "1873-04-01", "start_date_written": "27.10.1806", "end_date_written": "1.4.1873", "status": "", "source": 135, "references": null, "notes": null, "text": [47484, 47485], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93514, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93515, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93516, "fields": {"name": "Nov\u00e1\u010dek", "review": false, "start_date": "1860-04-07", "end_date": "1929-08-12", "start_date_written": "7.4.1860", "end_date_written": "12.8.1929", "status": "", "source": 145, "references": null, "notes": null, "text": [47486, 47487], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93517, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93518, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93540, "fields": {"name": "Ortmann", "review": false, "start_date": "1874-03-10", "end_date": "1939-11-22", "start_date_written": "10.3.1874", "end_date_written": "22.11.1939", "status": "", "source": 147, "references": null, "notes": null, "text": [47502, 47503], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93541, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93542, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93546, "fields": {"name": "Oellacher", "review": false, "start_date": "1804-02-16", "end_date": "1880-08-16", "start_date_written": "16.2.1804", "end_date_written": "16.8.1880", "status": "", "source": 146, "references": null, "notes": null, "text": [47506, 47507], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93547, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93548, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93561, "fields": {"name": "Poljanec", "review": false, "start_date": "1872-09-23", "end_date": "1944-08-08", "start_date_written": "23.9.1872", "end_date_written": "8.8.1944", "status": "", "source": 151, "references": null, "notes": null, "text": [47516, 47517], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93562, "fields": {"name": "Bre\u017eice, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93565, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93566, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93573, "fields": {"name": "Petzold", "review": false, "start_date": "1859-11-26", "end_date": "1932-07-15", "start_date_written": "26.11.1859", "end_date_written": "15.7.1932", "status": "", "source": 150, "references": null, "notes": null, "text": [47522, 47523], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93574, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93575, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93588, "fields": {"name": "Peithner von Lichtenfels", "review": false, "start_date": "1833-11-18", "end_date": "1913-01-22", "start_date_written": "18.11.1833", "end_date_written": "22.1.1913", "status": "", "source": 149, "references": null, "notes": null, "text": [47530, 47531], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93589, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93590, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93600, "fields": {"name": "Patera", "review": false, "start_date": "1819-07-11", "end_date": "1894-06-26", "start_date_written": "11.7.1819", "end_date_written": "26.6.1894", "status": "", "source": 148, "references": null, "notes": null, "text": [47536, 47537], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93601, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93602, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93609, "fields": {"name": "Rumpler", "review": false, "start_date": "1771-02-03", "end_date": "1846-03-17", "start_date_written": "3.2.1771", "end_date_written": "17.3.1846", "status": "", "source": 158, "references": null, "notes": null, "text": [47540, 47541], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93610, "fields": {"name": "Seekirchen a. Wallersee", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93613, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93614, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93615, "fields": {"name": "Rotter", "review": false, "start_date": "1868-11-30", "end_date": "1945-09-18", "start_date_written": "30.11.1868", "end_date_written": "18.9.1945", "status": "", "source": 157, "references": null, "notes": null, "text": [47542, 47543], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93616, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93617, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93639, "fields": {"name": "Revertera von Salandra", "review": false, "start_date": "1827-01-21", "end_date": "1904-04-28", "start_date_written": "21.1.1827", "end_date_written": "28.4.1904", "status": "", "source": 156, "references": null, "notes": null, "text": [47556, 47557], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93640, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93641, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93642, "fields": {"name": "Reichenberger", "review": false, "start_date": "1770-11-24", "end_date": "1854-10-26", "start_date_written": "24.11.1770", "end_date_written": "26.10.1854", "status": "", "source": 154, "references": null, "notes": null, "text": [47558, 47559], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93643, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93644, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93645, "fields": {"name": "Reiser", "review": false, "start_date": "1861-12-21", "end_date": "1936-03-31", "start_date_written": "21.12.1861", "end_date_written": "31.3.1936", "status": "", "source": 155, "references": null, "notes": null, "text": [47560, 47561], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93646, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93647, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93651, "fields": {"name": "Randa", "review": false, "start_date": "1874-05-24", "end_date": "1941-08-13", "start_date_written": "24.5.1874", "end_date_written": "13.8.1941", "status": "", "source": 153, "references": null, "notes": null, "text": [47564, 47565], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93652, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93653, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93654, "fields": {"name": "Radakovi\u010d", "review": false, "start_date": "1866-04-25", "end_date": "1934-08-15", "start_date_written": "25.4.1866", "end_date_written": "15.8.1934", "status": "", "source": 152, "references": null, "notes": null, "text": [47566, 47567], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93655, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93656, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93657, "fields": {"name": "Szigligeti", "review": false, "start_date": "1814-03-08", "end_date": "1878-01-19", "start_date_written": "8.3.1814", "end_date_written": "19.1.1878", "status": "", "source": 194, "references": null, "notes": null, "text": [47568, 47569], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93658, "fields": {"name": "Oradea-Olosig, jud. Bihor", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93661, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93662, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93663, "fields": {"name": "Szurmay von Uzsok", "review": false, "start_date": "1860-12-19", "end_date": "1945-03-26", "start_date_written": "19.12.1860", "end_date_written": "26.3.1945", "status": "", "source": 195, "references": null, "notes": null, "text": [47570, 47571], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93664, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93665, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93678, "fields": {"name": "St\u00fclz", "review": false, "start_date": "1799-02-23", "end_date": "1872-06-28", "start_date_written": "23.2.1799", "end_date_written": "28.6.1872", "status": "", "source": 193, "references": null, "notes": null, "text": [47580, 47581], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93679, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93680, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93684, "fields": {"name": "Stowasser", "review": false, "start_date": "1887-10-21", "end_date": "1934-02-19", "start_date_written": "21.10.1887", "end_date_written": "19.2.1934", "status": "", "source": 192, "references": null, "notes": null, "text": [47584, 47585], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93685, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93686, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93702, "fields": {"name": "Steindler", "review": false, "start_date": "1879-10-28", "end_date": "1933-12-21", "start_date_written": "28.10.1879", "end_date_written": "21.12.1933", "status": "", "source": 190, "references": null, "notes": null, "text": [47594, 47595], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93703, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93704, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93705, "fields": {"name": "Stein", "review": false, "start_date": "1891-09-19", "end_date": "1945-02-25", "start_date_written": "19.9.1891", "end_date_written": "25.2.1945", "status": "", "source": 191, "references": null, "notes": null, "text": [47596, 47597], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93706, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93707, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93714, "fields": {"name": "Stariha", "review": false, "start_date": "1845-05-12", "end_date": "1915-12-15", "start_date_written": "12.5.1845", "end_date_written": "15.12.1915", "status": "", "source": 189, "references": null, "notes": null, "text": [47602, 47603], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93715, "fields": {"name": "Sadinja vas, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93718, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93719, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93748, "fields": {"name": "\u0160njari\u0107", "review": false, "start_date": "1851-06-22", "end_date": "1930-01-28", "start_date_written": "22.6.1851", "end_date_written": "28.1.1930", "status": "", "source": 188, "references": null, "notes": null, "text": [47614, 47615], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93749, "fields": {"name": "\u010canak, sr. Gospi\u0107", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93752, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93753, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93779, "fields": {"name": "Sichulski", "review": false, "start_date": "1879-01-17", "end_date": "1942-11-06", "start_date_written": "17.1.1879", "end_date_written": "6.11.1942", "status": "", "source": 187, "references": null, "notes": null, "text": [47626, 47627], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93780, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93781, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93785, "fields": {"name": "Settari", "review": false, "start_date": "1841-10-04", "end_date": "1905-01-29", "start_date_written": "4.10.1841", "end_date_written": "29.1.1905", "status": "", "source": 186, "references": null, "notes": null, "text": [47630, 47631], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93786, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93787, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93791, "fields": {"name": "Sehnal", "review": false, "start_date": "1851-12-22", "end_date": "1910-09-12", "start_date_written": "22.12.1851", "end_date_written": "12.9.1910", "status": "", "source": 185, "references": null, "notes": null, "text": [47634, 47635], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93792, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93793, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93800, "fields": {"name": "Schwartz", "review": false, "start_date": "1852-02-28", "end_date": "1929-09-15", "start_date_written": "28.2.1852", "end_date_written": "15.9.1929", "status": "", "source": 181, "references": null, "notes": null, "text": [47640, 47641], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93801, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93802, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93803, "fields": {"name": "Schwarz", "review": false, "start_date": "1840-11-16", "end_date": "1903-12-28", "start_date_written": "16.11.1840", "end_date_written": "28.12.1903", "status": "", "source": 182, "references": null, "notes": null, "text": [47642, 47643], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93804, "fields": {"name": "\u0160umperk-Temenice, kr. Olomouck\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93807, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93808, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93809, "fields": {"name": "Schwarz", "review": false, "start_date": "1811-11-06", "end_date": "1879-05-07", "start_date_written": "6.11.1811", "end_date_written": "7.5.1879", "status": "", "source": 183, "references": null, "notes": null, "text": [47644, 47645], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93810, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93811, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93815, "fields": {"name": "Schweitzer", "review": false, "start_date": "1815-02-01", "end_date": "1896-07-09", "start_date_written": "1.2.1815", "end_date_written": "9.7.1896", "status": "", "source": 184, "references": null, "notes": null, "text": [47648, 47649], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93816, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93817, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93818, "fields": {"name": "Schwabl", "review": false, "start_date": "1854-06-29", "end_date": "1923-04-16", "start_date_written": "29.6.1854", "end_date_written": "16.4.1923", "status": "", "source": 180, "references": null, "notes": null, "text": [47650, 47651], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93819, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93820, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93836, "fields": {"name": "Schu\u00ebcker", "review": false, "start_date": "1860-11-16", "end_date": "1911-11-09", "start_date_written": "16.11.1860", "end_date_written": "9.11.1911", "status": "", "source": 179, "references": null, "notes": null, "text": [47660, 47661], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93837, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93838, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93839, "fields": {"name": "Schr\u00f6dl", "review": false, "start_date": "1841-07-07", "end_date": "1908-12-05", "start_date_written": "7.7.1841", "end_date_written": "5.12.1908", "status": "", "source": 178, "references": null, "notes": null, "text": [47662, 47663], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93841, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93854, "fields": {"name": "Schreyer", "review": false, "start_date": "1876-12-09", "end_date": "1950-04-14", "start_date_written": "9.12.1876", "end_date_written": "14.4.1950", "status": "", "source": 177, "references": null, "notes": null, "text": [47672, 47673], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93855, "fields": {"name": "B\u0159idli\u010dn\u00e1, kr. Moravskoslezsk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93858, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93859, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93863, "fields": {"name": "Scholz", "review": false, "start_date": "1819-08-20", "end_date": "1902-05-19", "start_date_written": "20.8.1819", "end_date_written": "19.5.1902", "status": "", "source": 175, "references": null, "notes": null, "text": [47676, 47677], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93864, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93865, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93866, "fields": {"name": "Schrammel", "review": false, "start_date": "1850-05-22", "end_date": "1893-06-17", "start_date_written": "22.5.1850", "end_date_written": "17.6.1893", "status": "", "source": 176, "references": null, "notes": null, "text": [47678, 47679], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93867, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93868, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93878, "fields": {"name": "Scholl", "review": false, "start_date": "1805-01-01", "end_date": "1884-12-12", "start_date_written": "1805", "end_date_written": "12.12.1884", "status": "", "source": 174, "references": null, "notes": null, "text": [47684, 47685], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93879, "fields": {"name": "Regio oder Rea (?)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93880, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93881, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93891, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1804-06-30", "end_date": "1880-12-19", "start_date_written": "30.6.1804", "end_date_written": "19.12.1880", "status": "", "source": 172, "references": null, "notes": null, "text": [47688, 47689], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93892, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93893, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93894, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1863-09-12", "end_date": "1930-03-09", "start_date_written": "12.9.1863", "end_date_written": "9.3.1930", "status": "", "source": 173, "references": null, "notes": null, "text": [47690, 47691], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93895, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93896, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93900, "fields": {"name": "Schnitzler", "review": false, "start_date": "1865-07-13", "end_date": "1939-06-29", "start_date_written": "13.7.1865", "end_date_written": "29.6.1939", "status": "", "source": 169, "references": null, "notes": null, "text": [47694, 47695], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93901, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93902, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93903, "fields": {"name": "Schober", "review": false, "start_date": "1856-12-15", "end_date": "1917-03-07", "start_date_written": "15.12.1856", "end_date_written": "7.3.1917", "status": "", "source": 170, "references": null, "notes": null, "text": [47696, 47697], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93905, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93909, "fields": {"name": "Schoeller", "review": false, "start_date": "1826-10-05", "end_date": "1889-06-25", "start_date_written": "5.10.1826", "end_date_written": "25.6.1889", "status": "", "source": 171, "references": null, "notes": null, "text": [47700, 47701], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93910, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93911, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93921, "fields": {"name": "Schmutzler", "review": false, "start_date": "1864-03-29", "end_date": "1940-06-20", "start_date_written": "29.3.1864", "end_date_written": "20.6.1940", "status": "", "source": 168, "references": null, "notes": null, "text": [47706, 47707], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93922, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93923, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93933, "fields": {"name": "Schmidt", "review": false, "start_date": "1904-03-04", "end_date": "1942-11-16", "start_date_written": "4.3.1904", "end_date_written": "16.11.1942", "status": "", "source": 167, "references": null, "notes": null, "text": [47712, 47713], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93934, "fields": {"name": "Davydivka, obl. \u010cernivci", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93937, "fields": {"name": "Girenbad b. Hinwil, Kanton Z\u00fcrich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93938, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93939, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93940, "fields": {"name": "Schmidt", "review": false, "start_date": "1826-12-09", "end_date": "1892-03-28", "start_date_written": "9.12.1826", "end_date_written": "28.3.1892", "status": "", "source": 166, "references": null, "notes": null, "text": [47714, 47715], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93941, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93942, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93946, "fields": {"name": "Schmal", "review": false, "start_date": "1844-09-23", "end_date": "1900-12-24", "start_date_written": "23.9.1844", "end_date_written": "24.12.1900", "status": "", "source": 164, "references": null, "notes": null, "text": [47718, 47719], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93947, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93948, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93955, "fields": {"name": "Schmidt-Beauchez", "review": false, "start_date": "1848-06-06", "end_date": "1912-12-14", "start_date_written": "6.6.1848", "end_date_written": "14.12.1912", "status": "", "source": 165, "references": null, "notes": null, "text": [47724, 47725], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93956, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93957, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93958, "fields": {"name": "Schindler", "review": false, "start_date": "1835-06-23", "end_date": "1911-02-22", "start_date_written": "23.6.1835", "end_date_written": "22.2.1911", "status": "", "source": 163, "references": null, "notes": null, "text": [47726, 47727], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93959, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93960, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93961, "fields": {"name": "Scheu", "review": false, "start_date": "1841-09-15", "end_date": "1904-10-12", "start_date_written": "15.9.1841", "end_date_written": "12.10.1904", "status": "", "source": 161, "references": null, "notes": null, "text": [47728, 47729], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93962, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93963, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93964, "fields": {"name": "Schikaneder", "review": false, "start_date": "1855-02-27", "end_date": "1924-11-15", "start_date_written": "27.2.1855", "end_date_written": "15.11.1924", "status": "", "source": 162, "references": null, "notes": null, "text": [47730, 47731], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93965, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93966, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93967, "fields": {"name": "Schell", "review": false, "start_date": "1892-12-19", "end_date": "1945-06-02", "start_date_written": "19.12.1892", "end_date_written": "2.6.1945", "status": "", "source": 159, "references": null, "notes": null, "text": [47732, 47733], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93968, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93969, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93970, "fields": {"name": "Schenk", "review": false, "start_date": "1840-08-23", "end_date": "1902-08-17", "start_date_written": "23.8.1840", "end_date_written": "17.8.1902", "status": "", "source": 160, "references": null, "notes": null, "text": [47734, 47735], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93971, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93972, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93988, "fields": {"name": "T\u00f6lgyessy", "review": false, "start_date": "1853-05-01", "end_date": "1920-02-02", "start_date_written": "1.5.1853", "end_date_written": "2.2.1920", "status": "", "source": 201, "references": null, "notes": null, "text": [47746, 47747], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93989, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93990, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93991, "fields": {"name": "Thun und Hohenstein", "review": false, "start_date": "1763-03-28", "end_date": "1818-10-09", "start_date_written": "28.3.1763", "end_date_written": "9.10.1818", "status": "", "source": 200, "references": null, "notes": null, "text": [47748, 47749], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93992, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93993, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94003, "fields": {"name": "Teschenberg", "review": false, "start_date": "1836-05-21", "end_date": "1886-02-25", "start_date_written": "21.5.1836", "end_date_written": "25.2.1886", "status": "", "source": 197, "references": null, "notes": null, "text": [47754, 47755], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94006, "fields": {"name": "Tetmajer", "review": false, "start_date": "1865-02-12", "end_date": "1940-01-18", "start_date_written": "12.2.1865", "end_date_written": "18.1.1940", "status": "", "source": 198, "references": null, "notes": null, "text": [47756, 47757], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94007, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94008, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94009, "fields": {"name": "Teuber", "review": false, "start_date": "1877-05-11", "end_date": "1943-02-03", "start_date_written": "11.5.1877", "end_date_written": "3.2.1943", "status": "", "source": 199, "references": null, "notes": null, "text": [47758, 47759], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94018, "fields": {"name": "Tauber", "review": false, "start_date": "1891-05-16", "end_date": "1948-01-08", "start_date_written": "16.5.1891", "end_date_written": "8.1.1948", "status": "", "source": 196, "references": null, "notes": null, "text": [47764, 47765], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94102, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpunkt des Realismus u*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94103, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpuncte des Realismus *. - 1884-85", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94104, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Die Grundzu\u0308ge der Aristotelischen Psychologie. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94105, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpuncte des Realismus *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94120, "fields": {"name": "Hegel, Carl: Die Ordnungen der Gerechtigkeit in der florentinischen Republik. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94121, "fields": {"name": "Hegel, Georg W.: Vorlesungen u\u0308ber die Philosophie der Geschichte. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94122, "fields": {"name": "Hegel, Carl: U\u0308ber den historischen Werth der a\u0308lteren Dante-Commentare. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94123, "fields": {"name": "Hegel, Carl: Sta\u0308dte und Gilden der germanischen Vo\u0308lker im Mittelalter. - 1891", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94124, "fields": {"name": "Vorlesungen u\u0308ber die Philosophie der Geschichte. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94125, "fields": {"name": "Hegel, Carl: Die deutsche Sache und die deutschen Hochschulen: Rede am 4. November 1870. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94126, "fields": {"name": "Hegel, Carl: Die Chronik des Dino Compagni. - 1875", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94127, "fields": {"name": "Hegel, Carl: Die Entstehung des deutschen Sta\u0308dtewesens. - 1898", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94128, "fields": {"name": "Hegel, Carl: Geschichte der meklenburgischen Landsta\u0308nde bis z. J. 1555. - 1856", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94129, "fields": {"name": "Hegel, Carl: Geschichte der Sta\u0308dteverfassung von Italien seit der Zeit der ro\u0308mischen Herr*. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94131, "fields": {"name": "Herbart, Johann M.: Aufrichtige Gedanken von dem Unterrichte kleiner Kinder, vornemlich i*. - 1738", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94132, "fields": {"name": "Herbart, Johann M.: De notitia linguae Hebraicae necessario et facile comparanda. - 1737", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94133, "fields": {"name": "Herbart, Johann M.: Unvorgreifliche Gedanken von Verbesserung der bey Erlernung der Latei*. - 1741", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94134, "fields": {"name": "Herbart, Johann M.: An Christus tentatorem suum statim noverit, nec ne, paucis disquirit *. - 1738", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94135, "fields": {"name": "Herbart, Johann M.: Kurtzer Entwurff von den vornehmsten Quellen des Verderbens der Jugend. - 1736", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94136, "fields": {"name": "Herbart, Johann M.: Thomam incredulum resurrectionis Christi certissimum testem producit *. - 1740", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94137, "fields": {"name": "Herbart, Johann M.: Sendschreiben von den gewo\u0308hnlichen Trostgru\u0308nden bey dem fru\u0308hzeitigen *. - [ca. 1740]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94138, "fields": {"name": "Herbart, Johann Michael: De magis aegyptiacis. - 1741.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94139, "fields": {"name": "Herbart, Johann M.: Tritissimum illud: conjugia sunt fatalia, denuo tritum dissertatione *. - 1736", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94140, "fields": {"name": "Herbart, Johann M.: Trauer-Rede ... u\u0308ber den Verlust Friderichs V, Erbko\u0308niges zu Da\u0308nnemar*. - 1766", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94141, "fields": {"name": "Herbart, Johann M.: Kurzer Erweis, da\u00df alle Studierende eine Historische Erkenntni\u00df von g*. - 1740", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94160, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94161, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94162, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94163, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94164, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94165, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94166, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94167, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94168, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94169, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94170, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94171, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94174, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94175, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94247, "fields": {"name": "Grundlinien der Psychologie. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94248, "fields": {"name": "Psychologie der Raumwahrnehmung des Auges. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94249, "fields": {"name": "Hundert psychologische Schulversuche mit Angabe der Apparate. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94250, "fields": {"name": "Ho\u0308fler, Alois: Hundert psychologische Schulversuche mit Angabe der Apparate", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94251, "fields": {"name": "Grundzu\u0308ge der allgemeinen A\u0308sthetik. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94307, "fields": {"name": "Westermarck, Edward A.: The history of human marriage. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94308, "fields": {"name": "Westermarck, Edward A.: Ritual and belief in Morocco. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94309, "fields": {"name": "Westermarck, Edward A.: The Origin and development of the moral ideas", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94310, "fields": {"name": "Numelin, Ragnar: The Wandering Spirit. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94311, "fields": {"name": "Westermarck, Edward A.: Marriage Ceremonies in Marocco. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94312, "fields": {"name": "Westermarck, Edward A.: The Future of mariage in western civilisation. - 1937", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94313, "fields": {"name": "Balfour, Henry: Anthropological essays. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94314, "fields": {"name": "Westermarck, Edward A.: Geschichte der menschlichen Ehe. - 1893", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94315, "fields": {"name": "Westermarck, Edward A.: Ursprung und Entwicklung der Moralbegriffe", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94323, "fields": {"name": "Bartos\u030c, Frantis\u030cek M.: Litera\u0301rni C\u030cinnost M. Jakoubka ze Str\u030cibra. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94324, "fields": {"name": "Soupis rukopis\u00b0u Na\u0301rodni\u0301ho Musea v Praze. - 1926 -", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94351, "fields": {"name": "Psychologische Untersuchungen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94352, "fields": {"name": "Hauptpuncte der Logik. - 1806", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94353, "fields": {"name": "Pedagogia generale dedotta dal fine dell'educazione", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94354, "fields": {"name": "Hauptpuncte der Logik. - 1808", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94355, "fields": {"name": "Analytische Beleuchtung des Naturrechts und der Moral ... - 1896", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94356, "fields": {"name": "Gespra\u0308che u\u0308ber das Bo\u0308se.... - 1817", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94357, "fields": {"name": "U\u0308ber die Unangreifbarkeit der Schellingischen Lehre. - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94358, "fields": {"name": "Pedagogia generale", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94359, "fields": {"name": "Pisma pedagogiczne", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94360, "fields": {"name": "Allgemeine practische Philosophie. - 1808", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94361, "fields": {"name": "Erinnerung an die Go\u0308ttingische Katastrophe im Jahre 1837. - 1842", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94362, "fields": {"name": "De attentionis mensura causisque primariis. - 1822", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94433, "fields": {"name": "Schleicher, August: Sprachvergleichende Untersuchungen [Bd. II: \"Linguistische...\"]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94434, "fields": {"name": "Schleicher, August: Die Deutsche Sprache. - 1879", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94435, "fields": {"name": "Indogermanische Chrestomathie. - 1869", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94436, "fields": {"name": "Schleicher, August: La the\u0301orie de Darwin et la science du langage. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94437, "fields": {"name": "Schleicher, August: U\u0308ber die Bedeutung der Sprache fu\u0308r die Naturgeschichte des Menschen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94438, "fields": {"name": "Schleicher, August: Die Deutsche Sprache. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94439, "fields": {"name": "Schleicher, August: Die Darwinsche Theorie und die Sprachwissenschaft. - 1863", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94440, "fields": {"name": "Litauische Ma\u0308rchen, Sprichworte, Ra\u0308tsel und Lieder. - 1857", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94441, "fields": {"name": "Schleicher, August: Compendium der vergleichenden Grammatik der Indogermanischen Sprachen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94442, "fields": {"name": "Schleicher, August: Compendium der vergleichenden Grammatik der Indogermanischen Sprachen. - 1876", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94822, "fields": {"name": "Der Aufstieg der Begabten. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94823, "fields": {"name": "Der deutsche Klassizismus und das Bildungswesen der Gegenwart. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94824, "fields": {"name": "Der jugendliche Mensch . - 1932", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94825, "fields": {"name": "Lebensformen. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94826, "fields": {"name": "Lebenserfahrung. - 1945", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94827, "fields": {"name": "Psychologie des Jugendalters. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94828, "fields": {"name": "Der Bildungswert der Heimatkunde. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94829, "fields": {"name": "Psychologie des Jugendalters. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94830, "fields": {"name": "Psychologie des Jugendalters. - 1924", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94831, "fields": {"name": "Weltfro\u0308mmigkeit. - 1941", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94885, "fields": {"name": "Kleinere Schriften zur Pa\u0308dagogik. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94886, "fields": {"name": "Fro\u0308bel, Friedrich W.: Briefwechsel mit Kindern. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94887, "fields": {"name": "Das Verma\u0308chtnis Friedrich Fro\u0308bels an unsere Zeit. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94888, "fields": {"name": "Fro\u0308bel, Friedrich W.: Menschenerziehung. - [1927]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94889, "fields": {"name": "Fro\u0308bel, Friedrich W.: An unser deutsches Volk!. - 1820", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94890, "fields": {"name": "Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkunst. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94891, "fields": {"name": "Fro\u0308bel, Friedrich W.: Friedrich Fro\u0308bel, der Mensch, Denker und Erzieher. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94892, "fields": {"name": "Menschenerziehung. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94893, "fields": {"name": "Fro\u0308bel, Friedrich W.: Kleinere Schriften zur Pa\u0308dagogik. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94894, "fields": {"name": "Fro\u0308bel, Friedrich W.: Friedrich Fro\u0308bel und die Muhme Schmidt. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94895, "fields": {"name": "An unser deutsches Volk!. - 1820", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94896, "fields": {"name": "Fro\u0308bel, Friedrich W.: Das Verma\u0308chtnis Friedrich Fro\u0308bels an unsere Zeit. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94897, "fields": {"name": "Friedrich Fro\u0308bel, der Mensch, Denker und Erzieher. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94898, "fields": {"name": "Menschenerziehung. - [1927]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94899, "fields": {"name": "Fro\u0308bel, Friedrich W.: Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkunst. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94900, "fields": {"name": "Briefwechsel mit Kindern. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94901, "fields": {"name": "Friedrich Fro\u0308bel und die Muhme Schmidt. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94902, "fields": {"name": "Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkuns*. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94903, "fields": {"name": "Fro\u0308bel, Friedrich W.: Menschenerziehung. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94904, "fields": {"name": "Fro\u0308bel, Friedrich W.: Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkuns*. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95024, "fields": {"name": "Aesthetik. - 1858-1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95025, "fields": {"name": "Philosophische Propaedeutik. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95026, "fields": {"name": "Leibnitz und Herbart. - 1849", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95027, "fields": {"name": "Herbart, Johann F.: Ungedruckte Briefe von und an Herbart. - 1877", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95028, "fields": {"name": "Das Rechtsprinzip bei Leibnitz. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95029, "fields": {"name": "Studien und Kritiken zur Philosophie und Aesthetik. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95030, "fields": {"name": "Guerillaskrieg. - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95043, "fields": {"name": "Ennius, Quintus: Ennianae poesis reliquiae. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95044, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1885", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95045, "fields": {"name": "Ennius, Quintus: Poesis reliquiae. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95046, "fields": {"name": "M. Tullii Ciceronis de legibus libri", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95047, "fields": {"name": "De arte poetica liber", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95048, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95049, "fields": {"name": "Plautus, Titus M.: Menaechmi. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95050, "fields": {"name": "Vahlen, Johannes: In M. Terentii Varronis saturarum Menippearum reliquias coniectanea. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95051, "fields": {"name": "Vahlen, Johannes: Lorenzo Valla. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95052, "fields": {"name": "Lachmann, Karl: Briefe an Moritz Haupt. - 1892", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95053, "fields": {"name": "Naevius, Cnaeus: De bello Punico. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95054, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1879", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95123, "fields": {"name": "Die wichtigsten philosophischen Fachausdru\u0308cke in historischer Anordnung. - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95124, "fields": {"name": "Pa\u0308dagogische Vortra\u0308ge u\u0308ber die Hebung der geistigen Tha\u0308tigkeit durch den *. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95125, "fields": {"name": "Seidenberger, Johann B.: Grundlinien idealer Weltanschauung. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95126, "fields": {"name": "Aristoteles als Pa\u0308dagog und Didaktiker. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95127, "fields": {"name": "Die Wissenschaft vom Gesichtspunkte der katholischen Wahrheit. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95128, "fields": {"name": "Die soziale Aufgabe der ho\u0308heren Schulen. - 1891", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95129, "fields": {"name": "Aus Ho\u0308rsaal und Schulstube. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95130, "fields": {"name": "Pythagoreische Erziehungsweisheit. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95131, "fields": {"name": "Geschichte des Idealismus. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95156, "fields": {"name": "Kru\u0301dy, Gyula: Ady Endre e\u0301jszaka\u0301i. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95157, "fields": {"name": "Kru\u0301dy, Gyula: Munkai", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95158, "fields": {"name": "Kru\u0301dy, Gyula: Magyar Ko\u0308zta\u0300rsasa\u0300g almanachja. - 1988", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95159, "fields": {"name": "Kru\u0301dy, Gyula: Festeu\u0301 kira\u0301ly. - o. J.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95160, "fields": {"name": "Kru\u0301dy, Gyula: A has ezeregye\u0301jszaka\u0301ja. - [1990]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95161, "fields": {"name": "Kru\u0301dy, Gyula: Va\u0301logatott novella\u0301k. - 1990", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95162, "fields": {"name": "Kru\u0301dy, Gyula: Aranyke\u0301zutcai sze\u0301p napok. - 1978", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95163, "fields": {"name": "Kru\u0301dy, Gyula: A magyar jakobinnsok. - [um 1930]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95164, "fields": {"name": "Kru\u0301dy, Gyula: Az elso\u0308 Habsburg. - [um 1930]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95397, "fields": {"name": "Notes sur Paris. - 1883", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95398, "fields": {"name": "Notes sur l'Angleterre. - 1872", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95399, "fields": {"name": "Du suffrage universel et de la manie\u0301re de voter. - 1872", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95400, "fields": {"name": "Philosophie der Kunst", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95401, "fields": {"name": "E\u0301tienne Mayran. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95402, "fields": {"name": "De l'ide\u0301al dans l'art. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95403, "fields": {"name": "Graindorge, Fre\u0301de\u0301ric T. [Pseud.]: La politique ale\u0301atoire. - [1915]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95404, "fields": {"name": "Philosophie de l'art", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95405, "fields": {"name": "Nouveaux essais de critique et d'histoire. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95406, "fields": {"name": "Derniers essais de critique et d'histoire. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95407, "fields": {"name": "Essais de critique et d'histoire. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95582, "fields": {"name": "Volkssagen aus Vorarlberg. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95583, "fields": {"name": "Volkssagen aus Voralberg. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95584, "fields": {"name": "Beitra\u0308ge zur deutschen Mythologie. - 1862", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95596, "fields": {"name": "Beobachtungen u\u0308ber das Gefu\u0308hl des Scho\u0308nen und Erhabenen. - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95597, "fields": {"name": "Die Religion innerhalb der Grenzen der blossen Vernunft. - 1869", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95598, "fields": {"name": "Beobachtungen u\u0308ber das Gefu\u0308hl des Scho\u0308nen und Erhabenen. - 1766", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95599, "fields": {"name": "Kritik der Urteilskraft. - 1790 [u. o\u0308.]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95600, "fields": {"name": "Gesammelte Schriften", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95601, "fields": {"name": "Metaphysische Anfangsgru\u0308nde der Naturwissenschaft. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95602, "fields": {"name": "Die Religion innerhalb der Grenzen der blo\u00dfen Vernunft. - 1794", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95603, "fields": {"name": "Die Religion innerhalb der Grenzen der blossen Vernunft. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95604, "fields": {"name": "Die Religion innerhalb der Grenzen der blo\u00dfen Vernunft. - 1793", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95847, "fields": {"name": "Das Pestalozzische Institut an das Publikum. - 1811", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95848, "fields": {"name": "Pestalozzi's Erziehungsunternehmung im Verha\u0308ltni\u00df zur Zeitkultur. - 1812", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95867, "fields": {"name": "Bernheim, Ernst: Lehrbuch der historischen Methode. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95868, "fields": {"name": "Bernheim, Ernst: Die ungenu\u0308gende Ausdrucksfa\u0308higkeit der Studierenden. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95869, "fields": {"name": "Bernheim, Ernst: Die gefa\u0308hrdete Stellung unserer deutschen Universita\u0308ten. - 1899", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95870, "fields": {"name": "Bernheim, Ernst: Lehrbuch der historischen Methode. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95871, "fields": {"name": "Bernheim, Ernst: Einleitung in die Geschichtswissenschaft. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95872, "fields": {"name": "Bernheim, Ernst: Der Universita\u0308tsunterricht und die Erfordernisse der Gegenwart. - 1898", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95873, "fields": {"name": "Bernheim, Ernst: Julius von Pflugk - Harttung. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95874, "fields": {"name": "Bernheim, Ernst: Geschichtswissenschaft und Erkenntnisstheorie. - 1900 ca.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95875, "fields": {"name": "Bernheim, Ernst: Mittelalterliche Zeitanschauungen in ihrem Einfluss auf Politik und Gesc*. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95876, "fields": {"name": "Bernheim, Ernst: Geschichtsforschung und Geschichtsphilosophie. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95893, "fields": {"name": "Lucubratio theologico-moralis circa praecipuum moralitatis systema de conscientia et actibus humanis. - 1747", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95929, "fields": {"name": "Einige Bemerkungen u\u0308ber die Composition des Sophokleischen Philoktet. - 1893", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95930, "fields": {"name": "Das Ko\u0308nigreich Polen vor dem Kriege <1815-1914>. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95931, "fields": {"name": "Janicki, Klemens: Clementis Janicii Carmina ed., praefatione instr., annot. ill. Ludovicu*. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95932, "fields": {"name": "Balkan und naher Orient. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95949, "fields": {"name": "Meyer, Kuno: The instructions of King Cormac mac Airt. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95950, "fields": {"name": "Meyer, Kuno: The death-tales of the Ulster heroes. - 1906", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95951, "fields": {"name": "Selections from ancient Irish poetry. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95952, "fields": {"name": "Meyer, Kuno: The Triads of Ireland. - 1906", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95953, "fields": {"name": "Meyer, Kuno: Learning in Ireland in the fifth century and the transmission of letters. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95954, "fields": {"name": "Meyer, Kuno: Fianaigecht. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95955, "fields": {"name": "Meyer, Kuno: Betha Colma\u0301in maic Lu\u0301acha\u0301in. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95956, "fields": {"name": "Peredur ab Efrawe. - 1887", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95957, "fields": {"name": "The Voyage of Bran Son of Febal to the Land of the Living", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96143, "fields": {"name": "Chronicon Fuchsio-Lupino-Oltardinum sive Annales Hungarici et Transsilvanici", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96144, "fields": {"name": "Aktenma\u0308ssige Darstellung der ungarischen u. siebenbu\u0308rgischen Landtags-*. - 1866", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96145, "fields": {"name": "Bearb. von: Statuten der allgemeinen Kronsta\u0308dter Sparcasse. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96146, "fields": {"name": "Schriftsteller-Lexikon oder biographisch-litera\u0308rische Denk-Bla\u0308tter der Siebenbu\u0308rger Deutschen. - 1868-", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96208, "fields": {"name": "Schuster, Mauriz: Tibull Studien. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96209, "fields": {"name": "Kappelmacher, Alfred: Die Literatur der R\u00f6mer bis zur Karolingerzeit. - 1926-34", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96210, "fields": {"name": "Plinius Caecilius Secundus, Gaius: Epistularum libri novem. - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96211, "fields": {"name": "Schuster, Mauriz: De C. Sollii Apollinaris Sidonii imitationibus studiisque Horatianis. - 1905/06", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96221, "fields": {"name": "Quintilianus, Marcus F.: Institutionis oratoriae libri XII.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96222, "fields": {"name": "Radermacher, Ludwig: Mythos und Sage bei den Griechen. - [1943]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96223, "fields": {"name": "\"Fr\u00f6sche\"", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96224, "fields": {"name": "Radermacher, Ludwig: Das Jenseits im Mythos der Hellenen. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96225, "fields": {"name": "Qui dicitur de elocutione libellus", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96226, "fields": {"name": "Radermacher, Ludwig: Mythos und Sage bei den Griechen. - 1938", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96458, "fields": {"name": "Harmonia sanctorum quatuor Evangeliorum. - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96459, "fields": {"name": "R\u00f6mischer Katechismus. - 1765", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96460, "fields": {"name": "Ars metrica ad stylum elegiacum P. Ovidii Nasonis. - 1755", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96461, "fields": {"name": "Gloria Filiorum Patres Eorum. - 1748", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96462, "fields": {"name": "Monumenta veteris Ecclesiae Brixinensis. - 1765", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96463, "fields": {"name": "Catechismus Romanus abbreviatus. - 1770 - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96464, "fields": {"name": "Aetas millenaria Ecclesiae Aguntinae in Norico.. - 1772", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96465, "fields": {"name": "Ars metrica ad stylum elegiacum P. Ovidii Nasonis plurimis exemplis ... - 1748", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96466, "fields": {"name": "Annales Ecclesiae Sabionensis. - 1760 - 1767", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96467, "fields": {"name": "Praktischer Unterricht f\u00fcr seine Dorfschullehrer und Pfarrkinder. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96620, "fields": {"name": "Manin, Daniele: Venezia 1848-1849. - 1877", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96621, "fields": {"name": "Manin, Daniele: Epistolario politico. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96622, "fields": {"name": "Manin, Daniele: Della Veneta Giurisprudenza civile, mercantile e criminale. - 1848", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96623, "fields": {"name": "Manin, Daniele: Venise 1848-1849. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96728, "fields": {"name": "Intelligenz und Wille. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96729, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96730, "fields": {"name": "\u00dcber Institute f\u00fcr Jugendkunde und die Gr\u00fcndung eines Instituts f\u00fcr Jugen*. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96731, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96732, "fields": {"name": "Die Entstehung der ersten Wortbedeutungen beim Kinde. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96733, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96734, "fields": {"name": "P\u00e4dagogisch-psychologische Forschungen. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96735, "fields": {"name": "Pedagogia experimental. - 1960", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96736, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96737, "fields": {"name": "System der \u00c4sthetik. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96738, "fields": {"name": "Die Sprache des Kindes. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96740, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96741, "fields": {"name": "Die Entstehung der ersten Wortbedeutungen beim Kinde. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96742, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96743, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96744, "fields": {"name": "Pedagogia experimental. - 1960", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96745, "fields": {"name": "P\u00e4dagogisch-psychologische Forschungen. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96746, "fields": {"name": "Intelligenz und Wille. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96747, "fields": {"name": "Die Sprache des Kindes. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96748, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96749, "fields": {"name": "System der \u00c4sthetik. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96750, "fields": {"name": "\u00dcber Institute f\u00fcr Jugendkunde und die Gr\u00fcndung eines Instituts f\u00fcr Jugen*. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96758, "fields": {"name": "Laudivius : Laudini Eovitis hierosolymitani ad Franciscum Beltrandum ... - 1511", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96759, "fields": {"name": "Magni Turci, i.e. Mahometi Secundi, Turcarum Imperatoris, Epistolae. - 1680", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96813, "fields": {"name": "Geschichte des Mittelalters. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96814, "fields": {"name": "Bedeutende M\u00e4nner d\u00fcrens. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96815, "fields": {"name": "Forschungen zur geschichte Ludwigs des Bayern. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96816, "fields": {"name": "Festschrift zum goldenen Jubil\u00e4um des katholischen Gesellen-Vereins in Neuss. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96817, "fields": {"name": "Die Bulle Ne praetereat und die Reconciliationsverhandlungen Ludwigs des Bayers mit dem Papste Johann XXII. - 1885", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96858, "fields": {"name": "Salzburg Und Theile Von Baiern Und \u00d6sterreich. - 1807", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96859, "fields": {"name": "Schlacht bey Biberach. - s.a. [1813]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96860, "fields": {"name": "Plan zur \u00dcbersicht der Kriegsbegebenheiten zwischen der Lahn ... - [1813]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96861, "fields": {"name": "M\u00fcnchen mit Seinen Umgebungen. - [ca. 1840]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96862, "fields": {"name": "Schlacht bey Biberach am zweiten October 1796. - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96863, "fields": {"name": "Neueste General-Post- [und] Strassen-Karte der Oesterreichischen Monarchie. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96864, "fields": {"name": "Plan zur \u00dcbersicht der Kriegsbegebenheiten zwischen der Lahn ... - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96865, "fields": {"name": "Charte von Oesterreich Ob Der Enns. - 1802", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96947, "fields": {"name": "Obermaier, Hugo: Las Pinturas rupestres del Barranco de Valltorta . - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96948, "fields": {"name": "Obermaier, Hugo: Yacimiento prehist\u00f3rico de las Carolinas . - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96949, "fields": {"name": "Obermaier, Hugo: Los Glaciares cuaternarios de la Sierra del Guadarrama. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96950, "fields": {"name": "Obermaier, Hugo: Fossil Man in Spain. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96951, "fields": {"name": "Obermaier, Hugo: Estudio de los Glaciares de los Picos de Europa. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96952, "fields": {"name": "Obermaier, Hugo: Los Glaciares cuaternarios de Sierra Nevada. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96953, "fields": {"name": "Obermaier, Hugo: El hombre f\u00f3sil. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96954, "fields": {"name": "Obermaier, Hugo: El dolmen de Matarrubilla . - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96955, "fields": {"name": "Obermaier, Hugo: Contribuci\u00f3n al estudio del Glaciarismo cuaternario de la Sierra de Gredos. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96956, "fields": {"name": "Obermaier, Hugo: La Cueva del Buxu . - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97430, "fields": {"name": "\u00d6MV - OMV. - 1998", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97529, "fields": {"name": "R\u00fcbezahl. - 1970", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97530, "fields": {"name": "Wie die Welt entdeckt wurde. - 1968", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97531, "fields": {"name": "Das @goldene Spyri-Buch. - 1966", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97532, "fields": {"name": "Heidi. - 1965", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97533, "fields": {"name": "Die @sch\u00f6nsten M\u00e4rchen. - 1967", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97534, "fields": {"name": "Kinder- und Hausm\u00e4rchen. - 2002", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97578, "fields": {"name": "Europ\u00e4ische Integration und die Vereinigten Staaten von Amerika", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97592, "fields": {"name": "Jaroszewicz, Piotr: Przerywam milczenie .... - 1991", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97593, "fields": {"name": "Gierek & Jaroszewicz zeznaj\u0105. - 1990", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97617, "fields": {"name": "Zastosowanie metody Kowalowa w wielkim przemy\u015ble chemicznym", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97623, "fields": {"name": "Neue Wege zur wirtschaftlichen Gestaltung des Bahnbetriebes", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97657, "fields": {"name": "Der @neue Weg der Selbst\u00e4ndigen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97707, "fields": {"name": "Die @Sozialversicherung der Heimatvertriebenen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97723, "fields": {"name": "Kultur- und Sittengeschichte des nieder\u00f6sterreichischen Dorfes. - 1953", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97753, "fields": {"name": "Die @Werksteinindustrie in Niederdonau", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97790, "fields": {"name": "Die @\u00f6ffentlich-gemeinn\u00fctzige Sph\u00e4re des Bankwesens im nationalsozialistischen Staat", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97834, "fields": {"name": "Als die Nacht verging. - 1955", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97849, "fields": {"name": "M\u00fctterliche Schmertzen der unter dem Cre\u00fctz h\u00f6chst betr\u00fcbt stehender Mutter Jesu Mariae. - 1717", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97884, "fields": {"name": "Grundz\u00fcge der Volkswirtschaftslehre. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97888, "fields": {"name": "Die @Wirtschaft und Industrie Irans", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97896, "fields": {"name": "Die @Altesunterst\u00fctzung und die Jugendeinstellung", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97933, "fields": {"name": "Sonderpostmarke 50 Jahre \u00f6sterreichischer St\u00e4dtebund", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97943, "fields": {"name": "Zagoskin, Michail N.: Izbrannoe. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97944, "fields": {"name": "Semenov, Vladimir S.: Aleksandr Gercen. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97945, "fields": {"name": "Leskov, Nikolaj S.: Zachudalyj rod. - 1985", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97976, "fields": {"name": "Wolf, Hugo: [Manuel Venegas ]. - 1986", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97977, "fields": {"name": "Wolf, Hugo: [Spanisches Liederbuch / Ausw.]. - \u00a91978", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97986, "fields": {"name": "Die @Qualit\u00e4t des Lebens verbessern", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98006, "fields": {"name": "Aus Wilhelm von Tegetthoff's Nachlass. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98024, "fields": {"name": "\u00dcber das Verh\u00e4ltnis von Wace's Roman de Brut zu seiner Quelle, der Historia regum Britanniae des Gottfried von Monmouth", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98116, "fields": {"name": "wien", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98183, "fields": {"name": "Lange, Ludwig: Reiseberichte aus Griechenland. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98184, "fields": {"name": "Lange, Ludwig: Original-Ansichten der vornehmsten St\u00e4dte in Deutschland. - 1832 - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98185, "fields": {"name": "Lange, Ludwig: Die geschichtliche Entwicklung des Bewegungsbegriffes und ihr voraussich*. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98237, "fields": {"name": "Anselm Feuerbachs Briefe an seine Mutter. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98296, "fields": {"name": "Laurent, Paul M.: Histoire de l'empereur Napol\u00e9on. - 1843", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98297, "fields": {"name": "LaFontaine, Jean de: Fables choisies de LaFontaine. - 1818", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98298, "fields": {"name": "Laurent, Paul M.: Histoire de l'empereur Napol\u00e9on. - 1839", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98299, "fields": {"name": "Zw\u00f6lf Stahlstiche zu der Geschichte Napoleons. - 1839", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98300, "fields": {"name": "Laurent, Paul M.: Geschichte des Kaisers Napoleon. - 1840", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98301, "fields": {"name": "Vernet, Horace: Ru\u00dfland. - 1856", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98348, "fields": {"name": "Bryant, William C.: Poems. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98551, "fields": {"name": "Hess, Heinrich: Die Fresco-Gem\u00e4lde der K\u00f6niglichen Allerheiligen Hofkapelle zu M\u00fcnchen. - 1837", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98569, "fields": {"name": "Spahn, Martin: Philipp Veit. - 1901", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98570, "fields": {"name": "Schlegel, Dorothea von: Dorothea v. Schlegel geb. Mendelssohn und deren S\u00f6hne Johannes *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98579, "fields": {"name": "Raffaello : Le Logge di Rafaele nel Vaticano", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98580, "fields": {"name": "Raffaello : VII tabulae actorum apostolicorum p.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98581, "fields": {"name": "Apuleius : Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98582, "fields": {"name": "Raffaello : Le Loggie di Raffaello nel Vaticano. - [1772 - 1776]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98583, "fields": {"name": "Buonarroti, Michel A.: Gedichte. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98584, "fields": {"name": "Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98585, "fields": {"name": "Dorigny, Nicolas: Psyches et Amoris nuptiae ac fabula. - 1693", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98586, "fields": {"name": "Ill. zu: Apuleius : Amor und Psyche. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98587, "fields": {"name": "Apuleius Madaurensis, Lucius: Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98588, "fields": {"name": "Palaestra amoris dicata Veneri", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98604, "fields": {"name": "Waldm\u00fcller, Ferdinand G.: Bilder und Erlebnisse. - 1920 ca.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98605, "fields": {"name": "Waldm\u00fcller, Ferdinand G.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98606, "fields": {"name": "Ferdinand Georg Waldm\u00fcller zum 200. Geburtstag. - 1993", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98696, "fields": {"name": "Overbeck, Friedrich: Friedrich Overbeck's Triumph der Religion in den K\u00fcnsten. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98697, "fields": {"name": "Overbeck, Friedrich: Jesus amator parvulorum. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98714, "fields": {"name": "(Graf) Hans Wilczek erz\u00e4hlt seinen Enkeln Erinnerungen ... - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98722, "fields": {"name": "Briefe. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98723, "fields": {"name": "Studien zur Gorgo. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98724, "fields": {"name": "Aus meinem Leben 1859-1888. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98725, "fields": {"name": "Wilhelm : Meine Vorfahren. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98726, "fields": {"name": "Trauer und Treue. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98727, "fields": {"name": "Kaiserreden. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98728, "fields": {"name": "Wilhelm : Studien zur Gorgo. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98729, "fields": {"name": "Oncken, Wilhelm: Unser Heldenkaiser. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98730, "fields": {"name": "Meine Vorfahren. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98731, "fields": {"name": "Vergleichende Geschichtstabellen von 1878 bis zum*. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98732, "fields": {"name": "Mack, Eugen: Das Rottweiler Steuerbuch von 1441. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98733, "fields": {"name": "Wilhelm : Briefe. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98734, "fields": {"name": "Klages, Ernst: Heil, Kaiser, Dir!", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98735, "fields": {"name": "Wilhelm : Vergleichende Geschichtstabellen von 1878 bis zum*. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98736, "fields": {"name": "Wilhelm : Aus meinem Leben 1859-1888. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98737, "fields": {"name": "Wilhelm : Kaiserreden. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98886, "fields": {"name": "An die Gantze Christenheit Ein Hochwichtige Frag ... - 1620", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98891, "fields": {"name": "Feldz\u00fcge in Ungarn und den angr\u00e4nzenden Provinzen. - 1788", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98892, "fields": {"name": "L'operazioni militari fatte in Ungaria (1683-1694). - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98893, "fields": {"name": "Des Grafen Veterani Feldz\u00fcge in Ungarn .\u0324 von 1683 - 1694. - 1788", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98922, "fields": {"name": "Zim\u0101m al-\u0121an\u0101 al-mu\u1e6drib fi n-na\u1e93m as-s\u0101\u02bfir f\u012b aq\u0101\u1e63\u012b al-ma\u0121rib. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98923, "fields": {"name": "Tar\u0101\u01f5im ri\u01f5\u0101l. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98924, "fields": {"name": "Arabische und persische Handschriften. - [1921]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98925, "fields": {"name": "Biographien von Gew\u00e4hrm\u00e4nnern des Ibn Is\u1e25\u00e2g, haupts\u00e4chlich aus a\u1e0f-\u1e0eahab\u00ee. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98980, "fields": {"name": "Der @\u00e4gyptische Joseph", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98990, "fields": {"name": "HJerinn sind begriffen vier Buecher von menschlicher Proportion durch Albrechten Duerer ... 1528. (VD16 ZV 23128)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98991, "fields": {"name": "Albrecht D\u00fcrer und Wilibald Pirkheimer. - 1828", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98992, "fields": {"name": "Diurnale seu liber precum. - 1514", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98993, "fields": {"name": "Alberti Dureri clarissimi pictoris et Geometrae de Sym\u0303etria partium in rectis formis ... 1532. (VD16 D 2860)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98994, "fields": {"name": "Holzschnitte. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98995, "fields": {"name": "Unterweisung der Messung mit dem Zirkel und Richtscheit. - 1538", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98996, "fields": {"name": "Institutiones geometricae. - 1535", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98997, "fields": {"name": "Elementorum geometricorum libri. - 1606", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98998, "fields": {"name": "Birgitta : Regula sancti salvatoris. 1517. (VD16 B 5594)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98999, "fields": {"name": "M\u0101 Sh\u0101 All\u0101h al-Mi\u1e63r\u012b: MESSAHALAH DE SCIENTIA MOTVS ORBIS ... [Ed. stud. (Ioann.Stabii ... )][\u00dcbers. v. Gerardus ... 1504. (VD16 M 1326)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99000, "fields": {"name": "Hjeri\u00f1 sind begriffen vier biicher von menschlicher Proportion durch Albrechten Duerer von ... 1528. (VD16 D 2859)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99001, "fields": {"name": "Brant, Sebastian: Nauis stultifera a domino sebastiano Brant prim\u0169 edificata: \\[et] lepidissimis teutonice lingue ... 1506. (VD16 B 7078)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99002, "fields": {"name": "Elementorum geometricorum libri. - 1532", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99003, "fields": {"name": "Maximilian I. : Oratio ad su\u0169 \\[pro...]ri\u0169 angel\u0169. DEus \\[pro...]itius esto mihi peccatori. Et sis mihi custos ... 1514. (VD16 M 1657)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99004, "fields": {"name": "Icones Sacrae. - 1604", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99005, "fields": {"name": "Schwalbe, Benedikt: EPITOME IN DIVAE PARTHENICES MARIAE HISTORIAM AB ALBERTO DVRERO NORICO PER FIGVRAS DIGES TAM ... 1511. (VD16 S 4585)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99006, "fields": {"name": "Apocalipsis c\u0169 figuris [von Albrecht D\u00fcrer]. 1511. (VD16 B 5248)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99007, "fields": {"name": "Vier b\u00fccher von menschlicher Proportion. - 1528", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99008, "fields": {"name": "Schwalbe, Benedikt: Passio domini nostri Jesu. ex hieronymo Paduano. Dominico Mancino. Sedulio. et Baptista ... 1511. (VD16 S 4587)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99009, "fields": {"name": "Opera. - 1604", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99075, "fields": {"name": "In memoriam. - 1873", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99092, "fields": {"name": "F\u00fcnf Dichtungen. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99093, "fields": {"name": "Scheffel, Joseph V. von: Gaudeamus!. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99094, "fields": {"name": "Scheffel, Joseph V. von: Frau Aventiure. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99095, "fields": {"name": "Gaudeamus!. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99096, "fields": {"name": "Der Trompeter von S\u00e4kkingen. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99097, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99098, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99099, "fields": {"name": "Scheffel, Joseph V. von: Juniperus. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99100, "fields": {"name": "Frau Aventiure. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99101, "fields": {"name": "Das Gabelbachlied. - [1900]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99102, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99103, "fields": {"name": "Ekkehard. - 1855", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99104, "fields": {"name": "Juniperus. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99105, "fields": {"name": "Scheffel, Joseph V. von: Ekkehard. - 1855", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99106, "fields": {"name": "Scheffel, Joseph V. von: Das Gabelbachlied. - [1900]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99107, "fields": {"name": "Das Grosse Fass zu Heidelberg. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99108, "fields": {"name": "Scheffel, Joseph V. von: F\u00fcnf Dichtungen. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99109, "fields": {"name": "Scheffel, Joseph V. von: Das Grosse Fass zu Heidelberg. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99110, "fields": {"name": "Der Trompeter von S\u00e4kkingen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99156, "fields": {"name": "Faust", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99336, "fields": {"name": "Souscription \u00e0 la gravure repr\u00e9sentant le portrait en pied de M. David. - [ca. 1810]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99337, "fields": {"name": "Le Tableau des Sabines, expos\u00e9 publiquement au Palais National des Sciences et des Arts. - Ca. 1790", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99352, "fields": {"name": "Hamilton, William: Collection of Engravings from ancient Vases. - 1791 - 1795", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99353, "fields": {"name": "Soltau, Dietrich W.: Reineke der Fuchs. - 1830", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99354, "fields": {"name": "Hamilton, William: Collection of engravings from ancient Vases of pure Greek workmanship *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99355, "fields": {"name": "Tischbein, Johann H.: Homer nach Antiken gezeichnet. - 1801 - 1821", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99356, "fields": {"name": "Tischbein, Johann H.: Figures d'Hom\u00e8re dessin\u00e9es d'apr\u00e8s l'antique. - 1801", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99357, "fields": {"name": "B\u00f6ttiger, Carl A.: Umrisse griechischer Gem\u00e4lde auf antiken i. J. 1789 u. 1790 in Campani*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99358, "fields": {"name": "Tischbein, Johann H.: Homer nach Antiken gezeichnet", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99369, "fields": {"name": "Museum \u00e9trusque de Lucien Bonaparte, prince de Carpino. Fouilles de 1828 \u00e0 1829. Vases *. - 1829", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99370, "fields": {"name": "Bonaparte, Lucien: R\u00e9volution de brumaire, ou relation des principaux \u00e9v\u00e9venments des *. - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99371, "fields": {"name": "Bonaparte, Lucien: M\u00e9moires de Lucien Bonaparte prince de Canino. - 1836", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99372, "fields": {"name": "Bonaparte, Lucien: Charlemagne ou l'\u00e9glise d\u00e9livr\u00e9e", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99373, "fields": {"name": "Museum Etrusque de Lucien Bonaparte Prince de Canino. - 1829", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99374, "fields": {"name": "Bonaparte, Lucien: Charle Magne ou l'Eglise delivr\u00e9e. - 1815", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99375, "fields": {"name": "Bonaparte, Lucien: La verit\u00e9 sur les Cent-Jours. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99376, "fields": {"name": "Bonaparte, Lucien: M\u00e9moires de Lucien Bonaparte prince de Canino", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99377, "fields": {"name": "Bonaparte, Lucien: La v\u00e9rit\u00e9 sur les cent-jours. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99378, "fields": {"name": "Bonaparte, Lucien: Discours prononc\u00e9 dans le temple de Mars. - [1800]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99416, "fields": {"name": "Erinnerungen an Ernst von Lasaulx. - 1861", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99417, "fields": {"name": "Adam, Albrecht: Aus dem Leben eines Schlachtenmalers. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99418, "fields": {"name": "Geschichte der altdeutschen Dichtkunst in Bayern. - 1862", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99419, "fields": {"name": "Geschichte der deutschen Literatur. - 1853", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99420, "fields": {"name": "Die Entwicklung des deutschen Theaters im Mittelalter und das Ammerg*. - 1861", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99421, "fields": {"name": "Lebenserinnerungen eines 90j\u00e4hr. Altm\u00fcncheners. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99422, "fields": {"name": "Kaiser Ludwig der Bayer und sein Stift zu Ettal. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99423, "fields": {"name": "Franz Graf Pocci. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99591, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99744, "fields": {"name": "\u00dcber die Geschwindigkeit der Hydrolyse der Hexafluoride von Schwefel, Selen und Tellur", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99841, "fields": {"name": "Kolloidchemie. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99842, "fields": {"name": "\u00dcber Kolloidchemie unter bes. Ber\u00fccksichtigung d. anorg. Kolloide .... - 1935", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99843, "fields": {"name": "Kolloidchemie. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99844, "fields": {"name": "Das kolloide Gold. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99845, "fields": {"name": "Kurzer Leitfaden der technischen Gasanalyse. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99846, "fields": {"name": "Zur Erkenntnis der Kolloide. - 1905", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99847, "fields": {"name": "Zur Erkenntnis der Kolloide. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99848, "fields": {"name": "Kolloidchemie. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99849, "fields": {"name": "Kolloidchemie. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99850, "fields": {"name": "Kolloidchemie. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.source", "pk": 1, "fields": {"orig_filename": "Geographiedaten.xlsx", "indexed": false, "pubinfo": "Export of \u00d6BL geo db (3.2016)", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 102, "fields": {"orig_filename": "Bahr_Hermann_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f.", "author": "", "orig_id": 1405476}}, {"model": "metainfo.source", "pk": 103, "fields": {"orig_filename": "Celakovsky_Jaromir_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416946}}, {"model": "metainfo.source", "pk": 104, "fields": {"orig_filename": "Celakovsky_Ladislav_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416947}}, {"model": "metainfo.source", "pk": 105, "fields": {"orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416953}}, {"model": "metainfo.source", "pk": 106, "fields": {"orig_filename": "Charlemont_Hugo_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417029}}, {"model": "metainfo.source", "pk": 107, "fields": {"orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417140}}, {"model": "metainfo.source", "pk": 108, "fields": {"orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417315}}, {"model": "metainfo.source", "pk": 109, "fields": {"orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417317}}, {"model": "metainfo.source", "pk": 110, "fields": {"orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417316}}, {"model": "metainfo.source", "pk": 111, "fields": {"orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417320}}, {"model": "metainfo.source", "pk": 112, "fields": {"orig_filename": "Conze_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f.", "author": "", "orig_id": 1417417}}, {"model": "metainfo.source", "pk": 113, "fields": {"orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417431}}, {"model": "metainfo.source", "pk": 114, "fields": {"orig_filename": "Czerny_Adalbert_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417613}}, {"model": "metainfo.source", "pk": 116, "fields": {"orig_filename": "Czetz_Johann_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f.", "author": "", "orig_id": 1417689}}, {"model": "metainfo.source", "pk": 117, "fields": {"orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417691}}, {"model": "metainfo.source", "pk": 118, "fields": {"orig_filename": "Defregger_Franz_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417167}}, {"model": "metainfo.source", "pk": 119, "fields": {"orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417262}}, {"model": "metainfo.source", "pk": 120, "fields": {"orig_filename": "Doderer_Wilhelm_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421589}}, {"model": "metainfo.source", "pk": 121, "fields": {"orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422065}}, {"model": "metainfo.source", "pk": 122, "fields": {"orig_filename": "Holovsky_Hilde_1917_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417020}}, {"model": "metainfo.source", "pk": 123, "fields": {"orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412571}}, {"model": "metainfo.source", "pk": 124, "fields": {"orig_filename": "Lapaine_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f.", "author": "", "orig_id": 1412681}}, {"model": "metainfo.source", "pk": 125, "fields": {"orig_filename": "Lefler_Heinrich_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413578}}, {"model": "metainfo.source", "pk": 126, "fields": {"orig_filename": "Leichter_Kaethe_1895_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413749}}, {"model": "metainfo.source", "pk": 127, "fields": {"orig_filename": "Leidesdorf_Franz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f.", "author": "", "orig_id": 1413751}}, {"model": "metainfo.source", "pk": 128, "fields": {"orig_filename": "Leitgeb_Hubert_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f.", "author": "", "orig_id": 1413852}}, {"model": "metainfo.source", "pk": 129, "fields": {"orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412686}}, {"model": "metainfo.source", "pk": 130, "fields": {"orig_filename": "Lichtblau_Adolf_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411908}}, {"model": "metainfo.source", "pk": 131, "fields": {"orig_filename": "Lichtblau_Ludwig_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f.", "author": "", "orig_id": 1411907}}, {"model": "metainfo.source", "pk": 132, "fields": {"orig_filename": "Lobmeyr_Josef_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263", "author": "", "orig_id": 1411542}}, {"model": "metainfo.source", "pk": 133, "fields": {"orig_filename": "Loewy_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297", "author": "", "orig_id": 1411913}}, {"model": "metainfo.source", "pk": 134, "fields": {"orig_filename": "Lorenz_Heinrich_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316", "author": "", "orig_id": 1412111}}, {"model": "metainfo.source", "pk": 135, "fields": {"orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f.", "author": "", "orig_id": 1411846}}, {"model": "metainfo.source", "pk": 136, "fields": {"orig_filename": "Maier_Karl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412133}}, {"model": "metainfo.source", "pk": 137, "fields": {"orig_filename": "Manesova_Amalie_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f.", "author": "", "orig_id": 1409111}}, {"model": "metainfo.source", "pk": 138, "fields": {"orig_filename": "Manes_Quido_1828_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409109}}, {"model": "metainfo.source", "pk": 139, "fields": {"orig_filename": "Margulies_Berl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1409490}}, {"model": "metainfo.source", "pk": 140, "fields": {"orig_filename": "Meithner_Karl_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f.", "author": "", "orig_id": 1413879}}, {"model": "metainfo.source", "pk": 141, "fields": {"orig_filename": "Miklosich_Franz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f.", "author": "", "orig_id": 1413368}}, {"model": "metainfo.source", "pk": 142, "fields": {"orig_filename": "Millosicz_Georg_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f.", "author": "", "orig_id": 1413706}}, {"model": "metainfo.source", "pk": 143, "fields": {"orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412553}}, {"model": "metainfo.source", "pk": 144, "fields": {"orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413568}}, {"model": "metainfo.source", "pk": 145, "fields": {"orig_filename": "Novacek_Rudolf_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f.", "author": "", "orig_id": 1408134}}, {"model": "metainfo.source", "pk": 146, "fields": {"orig_filename": "Oellacher_Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408688}}, {"model": "metainfo.source", "pk": 147, "fields": {"orig_filename": "Ortmann_Rudolf_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409161}}, {"model": "metainfo.source", "pk": 148, "fields": {"orig_filename": "Patera_Adolf_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f.", "author": "", "orig_id": 1408720}}, {"model": "metainfo.source", "pk": 149, "fields": {"orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f.", "author": "", "orig_id": 1409360}}, {"model": "metainfo.source", "pk": 150, "fields": {"orig_filename": "Petzold_Emil_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407914}}, {"model": "metainfo.source", "pk": 151, "fields": {"orig_filename": "Poljanec_Leopold_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410619}}, {"model": "metainfo.source", "pk": 152, "fields": {"orig_filename": "Radakovic_Michael_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f.", "author": "", "orig_id": 1409702}}, {"model": "metainfo.source", "pk": 153, "fields": {"orig_filename": "Randa_Maximilian_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411", "author": "", "orig_id": 1410086}}, {"model": "metainfo.source", "pk": 154, "fields": {"orig_filename": "Reichenberger_Andreas_1770_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f.", "author": "", "orig_id": 1406805}}, {"model": "metainfo.source", "pk": 155, "fields": {"orig_filename": "Reiser_Othmar_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406978}}, {"model": "metainfo.source", "pk": 156, "fields": {"orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f.", "author": "", "orig_id": 1407193}}, {"model": "metainfo.source", "pk": 157, "fields": {"orig_filename": "Rotter_Johann_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f.", "author": "", "orig_id": 1407684}}, {"model": "metainfo.source", "pk": 158, "fields": {"orig_filename": "Rumpler_Matthias_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327", "author": "", "orig_id": 1407832}}, {"model": "metainfo.source", "pk": 159, "fields": {"orig_filename": "Schell_Karl_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f.", "author": "", "orig_id": 1406179}}, {"model": "metainfo.source", "pk": 160, "fields": {"orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f.", "author": "", "orig_id": 1406202}}, {"model": "metainfo.source", "pk": 161, "fields": {"orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f.", "author": "", "orig_id": 1406044}}, {"model": "metainfo.source", "pk": 162, "fields": {"orig_filename": "Schikaneder_Jakub_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f.", "author": "", "orig_id": 1406374}}, {"model": "metainfo.source", "pk": 163, "fields": {"orig_filename": "Schindler_Josef_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153", "author": "", "orig_id": 1406252}}, {"model": "metainfo.source", "pk": 164, "fields": {"orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406496}}, {"model": "metainfo.source", "pk": 165, "fields": {"orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f.", "author": "", "orig_id": 1406721}}, {"model": "metainfo.source", "pk": 166, "fields": {"orig_filename": "Schmid_Anton_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f.", "author": "", "orig_id": 1406531}}, {"model": "metainfo.source", "pk": 167, "fields": {"orig_filename": "Schmid_Joseph_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f.", "author": "", "orig_id": 1406597}}, {"model": "metainfo.source", "pk": 168, "fields": {"orig_filename": "Schmutzler_Leopold_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f.", "author": "", "orig_id": 1406623}}, {"model": "metainfo.source", "pk": 169, "fields": {"orig_filename": "Schnitzler_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f.", "author": "", "orig_id": 1406896}}, {"model": "metainfo.source", "pk": 170, "fields": {"orig_filename": "Schober_Alfred_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f.", "author": "", "orig_id": 1406912}}, {"model": "metainfo.source", "pk": 171, "fields": {"orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405414}}, {"model": "metainfo.source", "pk": 172, "fields": {"orig_filename": "Schoenberger_Adolf_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405629}}, {"model": "metainfo.source", "pk": 173, "fields": {"orig_filename": "Schoenberger_Benno_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405634}}, {"model": "metainfo.source", "pk": 174, "fields": {"orig_filename": "Scholl_Joseph_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f.", "author": "", "orig_id": 1412321}}, {"model": "metainfo.source", "pk": 175, "fields": {"orig_filename": "Scholz_Franz_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412411}}, {"model": "metainfo.source", "pk": 176, "fields": {"orig_filename": "Schrammel_Johann_1850_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff.", "author": "", "orig_id": 1411222}}, {"model": "metainfo.source", "pk": 177, "fields": {"orig_filename": "Schreyer_Johann_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411681}}, {"model": "metainfo.source", "pk": 178, "fields": {"orig_filename": "Schroedl_Leopold_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236", "author": "", "orig_id": 1411777}}, {"model": "metainfo.source", "pk": 179, "fields": {"orig_filename": "Schuecker_Edmund_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f.", "author": "", "orig_id": 1412171}}, {"model": "metainfo.source", "pk": 180, "fields": {"orig_filename": "Schwabl_Franz_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f.", "author": "", "orig_id": 1420210}}, {"model": "metainfo.source", "pk": 181, "fields": {"orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f.", "author": "", "orig_id": 1420456}}, {"model": "metainfo.source", "pk": 182, "fields": {"orig_filename": "Schwarz_Johann_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439", "author": "", "orig_id": 1420439}}, {"model": "metainfo.source", "pk": 183, "fields": {"orig_filename": "Schwarz_Kaspar_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445", "author": "", "orig_id": 1420450}}, {"model": "metainfo.source", "pk": 184, "fields": {"orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f.", "author": "", "orig_id": 1439729}}, {"model": "metainfo.source", "pk": 185, "fields": {"orig_filename": "Sehnal_Eugen_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f.", "author": "", "orig_id": 1439478}}, {"model": "metainfo.source", "pk": 186, "fields": {"orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197", "author": "", "orig_id": 1450886}}, {"model": "metainfo.source", "pk": 187, "fields": {"orig_filename": "Sichulski_Kazimierz_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223", "author": "", "orig_id": 1450008}}, {"model": "metainfo.source", "pk": 188, "fields": {"orig_filename": "Snjaric_Lukas_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384", "author": "", "orig_id": 1457373}}, {"model": "metainfo.source", "pk": 189, "fields": {"orig_filename": "Stariha_Janez-Nep_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105", "author": "", "orig_id": 1428070}}, {"model": "metainfo.source", "pk": 190, "fields": {"orig_filename": "Steindler_Olga_1879_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f.", "author": "", "orig_id": 1430730}}, {"model": "metainfo.source", "pk": 191, "fields": {"orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149", "author": "", "orig_id": 1428363}}, {"model": "metainfo.source", "pk": 192, "fields": {"orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f.", "author": "", "orig_id": 1434284}}, {"model": "metainfo.source", "pk": 193, "fields": {"orig_filename": "Stuelz_Jodok_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443", "author": "", "orig_id": 1433097}}, {"model": "metainfo.source", "pk": 194, "fields": {"orig_filename": "Szigligeti_Ede_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154", "author": "", "orig_id": 1434706}}, {"model": "metainfo.source", "pk": 195, "fields": {"orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178", "author": "", "orig_id": 1435139}}, {"model": "metainfo.source", "pk": 196, "fields": {"orig_filename": "Tauber_Richard_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff.", "author": "", "orig_id": 1422288}}, {"model": "metainfo.source", "pk": 197, "fields": {"orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257", "author": "", "orig_id": 1424387}}, {"model": "metainfo.source", "pk": 198, "fields": {"orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 2047416}}, {"model": "metainfo.source", "pk": 199, "fields": {"orig_filename": "Teuber_Emmerich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f.", "author": "", "orig_id": 1448255}}, {"model": "metainfo.source", "pk": 200, "fields": {"orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f.", "author": "", "orig_id": 1424667}}, {"model": "metainfo.source", "pk": 201, "fields": {"orig_filename": "Toelgyessy_Artur_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1458532}}, {"model": "metainfo.source", "pk": 202, "fields": {"orig_filename": "Novotny_Johann_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408236}}, {"model": "metainfo.source", "pk": 203, "fields": {"orig_filename": "Konrath_Matthias_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415528}}, {"model": "metainfo.source", "pk": 204, "fields": {"orig_filename": "Schreyer_Albert_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222", "author": "", "orig_id": 1411613}}, {"model": "metainfo.source", "pk": 205, "fields": {"orig_filename": "Tafatscher_Franz_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 185f.", "author": "", "orig_id": 1458119}}, {"model": "metainfo.source", "pk": 206, "fields": {"orig_filename": "Schoen_Karl_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38", "author": "", "orig_id": 1405460}}, {"model": "metainfo.source", "pk": 207, "fields": {"orig_filename": "Leonardi_Demetrio_1796_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142f.", "author": "", "orig_id": 1412785}}, {"model": "metainfo.source", "pk": 208, "fields": {"orig_filename": "Seyler_Joseph-Anton_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 211", "author": "", "orig_id": 1450963}}, {"model": "metainfo.source", "pk": 209, "fields": {"orig_filename": "Lobisser_Switbert_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257f.", "author": "", "orig_id": 1411455}}, {"model": "metainfo.source", "pk": 210, "fields": {"orig_filename": "Oesterreicher_Tobias_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408703}}, {"model": "metainfo.source", "pk": 211, "fields": {"orig_filename": "Schoefft_August_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 14", "author": "", "orig_id": 1405401}}, {"model": "metainfo.source", "pk": 212, "fields": {"orig_filename": "Slanc_Karel_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348", "author": "", "orig_id": 1459134}}, {"model": "metainfo.source", "pk": 213, "fields": {"orig_filename": "Bruckner_Anton_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117ff.", "author": "", "orig_id": 1420614}}, {"model": "metainfo.source", "pk": 214, "fields": {"orig_filename": "Bettelheim_Anton_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78f.", "author": "", "orig_id": 1418603}}, {"model": "metainfo.source", "pk": 215, "fields": {"orig_filename": "Resch_Franz_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84", "author": "", "orig_id": 1407002}}, {"model": "metainfo.source", "pk": 216, "fields": {"orig_filename": "Schmid_Josef_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275", "author": "", "orig_id": 1406594}}, {"model": "metainfo.source", "pk": 217, "fields": {"orig_filename": "Schrey-Redlwerth_Robert_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220", "author": "", "orig_id": 1411607}}, {"model": "metainfo.source", "pk": 218, "fields": {"orig_filename": "Szalay_Imre_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109f.", "author": "", "orig_id": 1434929}}, {"model": "metainfo.source", "pk": 219, "fields": {"orig_filename": "Nicoladoni_Karl_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 113", "author": "", "orig_id": 1408941}}, {"model": "metainfo.source", "pk": 220, "fields": {"orig_filename": "Schmelkes_Gottfried_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 232", "author": "", "orig_id": 1406508}}, {"model": "metainfo.source", "pk": 221, "fields": {"orig_filename": "Melzer_Raimund_1808_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412625}}, {"model": "metainfo.source", "pk": 222, "fields": {"orig_filename": "Schumann_Richard_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 367f.", "author": "", "orig_id": 1419960}}, {"model": "metainfo.source", "pk": 223, "fields": {"orig_filename": "Kovachich_Jozsef-Miklos_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416438}}, {"model": "metainfo.source", "pk": 224, "fields": {"orig_filename": "Kanya_Kalman_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414424}}, {"model": "metainfo.source", "pk": 225, "fields": {"orig_filename": "Mueller-Reichenstein_Franz-Josef_1742_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431", "author": "", "orig_id": 1413644}}, {"model": "metainfo.source", "pk": 226, "fields": {"orig_filename": "Todesco_Moritz_1816_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 364", "author": "", "orig_id": 1423650}}, {"model": "metainfo.source", "pk": 227, "fields": {"orig_filename": "Schmutzer_Philipp-Maximilian_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 350f.", "author": "", "orig_id": 1406711}}, {"model": "metainfo.source", "pk": 228, "fields": {"orig_filename": "Luger_Engelbert_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356", "author": "", "orig_id": 1411114}}, {"model": "metainfo.source", "pk": 229, "fields": {"orig_filename": "Levec_Vladimir_1877_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411633}}, {"model": "metainfo.source", "pk": 230, "fields": {"orig_filename": "Marchesi_Pompeo_1789_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409376}}, {"model": "metainfo.source", "pk": 231, "fields": {"orig_filename": "Schubert-Soldern_Zdenko_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278f.", "author": "", "orig_id": 1412151}}, {"model": "metainfo.source", "pk": 232, "fields": {"orig_filename": "Komaromy_Ferenc_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415419}}, {"model": "metainfo.source", "pk": 233, "fields": {"orig_filename": "Schmid_Josef-Alois_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 277f.", "author": "", "orig_id": 1406404}}, {"model": "metainfo.source", "pk": 234, "fields": {"orig_filename": "Foglar_Ludwig_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421447}}, {"model": "metainfo.source", "pk": 235, "fields": {"orig_filename": "Schwarzenberg_Johann-Ii_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13", "author": "", "orig_id": 1439586}}, {"model": "metainfo.source", "pk": 236, "fields": {"orig_filename": "Rienoessl_Heinrich_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156", "author": "", "orig_id": 1407336}}, {"model": "metainfo.source", "pk": 237, "fields": {"orig_filename": "Koszta_Jozsef_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157", "author": "", "orig_id": 1416337}}, {"model": "metainfo.source", "pk": 238, "fields": {"orig_filename": "Schulz_Ferdinand_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 345", "author": "", "orig_id": 1419820}}, {"model": "metainfo.source", "pk": 239, "fields": {"orig_filename": "Grosz_Wilhelm_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419394}}, {"model": "metainfo.source", "pk": 240, "fields": {"orig_filename": "Schoen_Anton_1782_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 30", "author": "", "orig_id": 1405445}}, {"model": "metainfo.source", "pk": 241, "fields": {"orig_filename": "Lelli_Giovanni-Batt_1827_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412507}}, {"model": "metainfo.source", "pk": 242, "fields": {"orig_filename": "Hermann_Heinrich_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286f.", "author": "", "orig_id": 1420735}}, {"model": "metainfo.source", "pk": 243, "fields": {"orig_filename": "Perathoner_Anton_1864_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408094}}, {"model": "metainfo.source", "pk": 244, "fields": {"orig_filename": "Steiger-Amstein_Anton-David_1755_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 145", "author": "", "orig_id": 1428303}}, {"model": "metainfo.source", "pk": 245, "fields": {"orig_filename": "Lorinser_Karl-Ignaz_1796_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412207}}, {"model": "metainfo.source", "pk": 246, "fields": {"orig_filename": "Kofler_Ephraim_1811_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416314}}, {"model": "metainfo.source", "pk": 247, "fields": {"orig_filename": "Kunesch_Adalbert_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415762}}, {"model": "metainfo.source", "pk": 248, "fields": {"orig_filename": "Leybold_Heinrich-Gustav-Adolf_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411807}}, {"model": "metainfo.source", "pk": 249, "fields": {"orig_filename": "Kautsky_Hans_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415121}}, {"model": "metainfo.source", "pk": 250, "fields": {"orig_filename": "Rodler_Walther_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197", "author": "", "orig_id": 1407341}}, {"model": "metainfo.source", "pk": 251, "fields": {"orig_filename": "Tadra_Ferdinand_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 184f.", "author": "", "orig_id": 1422350}}, {"model": "metainfo.source", "pk": 252, "fields": {"orig_filename": "Jelinek_Hugo_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414241}}, {"model": "metainfo.source", "pk": 253, "fields": {"orig_filename": "Lunacek_Vladimir_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369f.", "author": "", "orig_id": 1411298}}, {"model": "metainfo.source", "pk": 254, "fields": {"orig_filename": "Krzisch_Josef-Friedrich_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308f.", "author": "", "orig_id": 1416645}}, {"model": "metainfo.source", "pk": 255, "fields": {"orig_filename": "Roller_Julius_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226", "author": "", "orig_id": 1407462}}, {"model": "metainfo.source", "pk": 256, "fields": {"orig_filename": "Marco_Josef_1781_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409382}}, {"model": "metainfo.source", "pk": 257, "fields": {"orig_filename": "Innerkofler_Veit_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37f.", "author": "", "orig_id": 1414586}}, {"model": "metainfo.source", "pk": 258, "fields": {"orig_filename": "Jaklic_Fran_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63f.", "author": "", "orig_id": 1414992}}, {"model": "metainfo.source", "pk": 259, "fields": {"orig_filename": "Gerl_Thaddaeus_1774_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421767}}, {"model": "metainfo.source", "pk": 260, "fields": {"orig_filename": "Schroeer_Rudolf_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411782}}, {"model": "metainfo.source", "pk": 261, "fields": {"orig_filename": "Schuster_Gustav_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 386f.", "author": "", "orig_id": 1420053}}, {"model": "metainfo.source", "pk": 262, "fields": {"orig_filename": "Tisza-Borosjenoe_Kalman_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 356f.", "author": "", "orig_id": 1423923}}, {"model": "metainfo.source", "pk": 263, "fields": {"orig_filename": "Stadler_Toni_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 76", "author": "", "orig_id": 1428975}}, {"model": "metainfo.source", "pk": 264, "fields": {"orig_filename": "Karvasy_Agoston_1809_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414782}}, {"model": "metainfo.source", "pk": 265, "fields": {"orig_filename": "Nagy-Somlyo_Franz_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410851}}, {"model": "metainfo.source", "pk": 266, "fields": {"orig_filename": "Soxhlet_Eugen__1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438506}}, {"model": "metainfo.source", "pk": 267, "fields": {"orig_filename": "Steller_Johann_1768_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 203f.", "author": "", "orig_id": 1429692}}, {"model": "metainfo.source", "pk": 268, "fields": {"orig_filename": "Perkonig_Josef-Friedrich_1890_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1470836}}, {"model": "metainfo.source", "pk": 269, "fields": {"orig_filename": "Malonyay_Dezsoe_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409008}}, {"model": "metainfo.source", "pk": 270, "fields": {"orig_filename": "Klemm_Joseph-Ferdinand_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396f.", "author": "", "orig_id": 1419193}}, {"model": "metainfo.source", "pk": 271, "fields": {"orig_filename": "Csorich-Monte-Creto_Anton_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417520}}, {"model": "metainfo.source", "pk": 272, "fields": {"orig_filename": "Gebauer_Franz-Xaver_1784_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421573}}, {"model": "metainfo.source", "pk": 273, "fields": {"orig_filename": "Rosmini-Serbati_Antonio_1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 259f.", "author": "", "orig_id": 1407594}}, {"model": "metainfo.source", "pk": 274, "fields": {"orig_filename": "Hetz_Anton_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417179}}, {"model": "metainfo.source", "pk": 275, "fields": {"orig_filename": "Strickner_Andreas_1863_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402", "author": "", "orig_id": 1432936}}, {"model": "metainfo.source", "pk": 276, "fields": {"orig_filename": "Schoeller_Gustav_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405411}}, {"model": "metainfo.source", "pk": 277, "fields": {"orig_filename": "Kurowski_Marie_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415936}}, {"model": "metainfo.source", "pk": 278, "fields": {"orig_filename": "Sorgato_Antonio_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431", "author": "", "orig_id": 1468243}}, {"model": "metainfo.source", "pk": 279, "fields": {"orig_filename": "Seuffert_Bernhard-Joseph-Luther_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198f.", "author": "", "orig_id": 1450890}}, {"model": "metainfo.source", "pk": 280, "fields": {"orig_filename": "Froehlich_Friedrich-Wilhelm_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420792}}, {"model": "metainfo.source", "pk": 281, "fields": {"orig_filename": "Meder_Eduard_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182f.", "author": "", "orig_id": 1413614}}, {"model": "metainfo.source", "pk": 282, "fields": {"orig_filename": "Kapaun_Franz_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218f.", "author": "", "orig_id": 1414426}}, {"model": "metainfo.source", "pk": 283, "fields": {"orig_filename": "Schlier_Johann-Ev_1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 204f.", "author": "", "orig_id": 1406456}}, {"model": "metainfo.source", "pk": 284, "fields": {"orig_filename": "Hauser_Franz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418597}}, {"model": "metainfo.source", "pk": 285, "fields": {"orig_filename": "Szabo_Endre_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 99", "author": "", "orig_id": 1455287}}, {"model": "metainfo.source", "pk": 286, "fields": {"orig_filename": "Beyschlag_Otto_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420077}}, {"model": "metainfo.source", "pk": 287, "fields": {"orig_filename": "Stubenberg_Joseph_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 436f.", "author": "", "orig_id": 1432740}}, {"model": "metainfo.source", "pk": 288, "fields": {"orig_filename": "Scholz-Benneburg_Franz_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 135f.", "author": "", "orig_id": 1412425}}, {"model": "metainfo.source", "pk": 289, "fields": {"orig_filename": "Haswell_John_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 206f.", "author": "", "orig_id": 1418485}}, {"model": "metainfo.source", "pk": 290, "fields": {"orig_filename": "Kaessmayer_Moriz_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169f.", "author": "", "orig_id": 1415115}}, {"model": "metainfo.source", "pk": 291, "fields": {"orig_filename": "Skoff_Primus_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327", "author": "", "orig_id": 1458861}}, {"model": "metainfo.source", "pk": 292, "fields": {"orig_filename": "Schrecker_Maximilian_1857_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 184", "author": "", "orig_id": 1411315}}, {"model": "metainfo.source", "pk": 293, "fields": {"orig_filename": "Motloch_Theodor_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413202}}, {"model": "metainfo.source", "pk": 294, "fields": {"orig_filename": "Kubitschek_Wilhelm_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 314f.", "author": "", "orig_id": 1415287}}, {"model": "metainfo.source", "pk": 295, "fields": {"orig_filename": "Neuhauser_Albert_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85f.", "author": "", "orig_id": 1408658}}, {"model": "metainfo.source", "pk": 296, "fields": {"orig_filename": "Spielmann_Alois_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1426788}}, {"model": "metainfo.source", "pk": 297, "fields": {"orig_filename": "Kolarsky_Antonin_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416518}}, {"model": "metainfo.source", "pk": 298, "fields": {"orig_filename": "Hessen-Homburg_Friedrich-Joseph-Ludwig-Karl-August_1769_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417099}}, {"model": "metainfo.source", "pk": 299, "fields": {"orig_filename": "Skene_Alfred_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 320f.", "author": "", "orig_id": 1458777}}, {"model": "metainfo.source", "pk": 300, "fields": {"orig_filename": "Linder_Josef_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412383}}, {"model": "metainfo.source", "pk": 301, "fields": {"orig_filename": "Schmedes_Erik_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 229", "author": "", "orig_id": 1406502}}, {"model": "metainfo.source", "pk": 302, "fields": {"orig_filename": "Brunner_Eduard_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420629}}, {"model": "metainfo.source", "pk": 303, "fields": {"orig_filename": "Salvagnini_Enrico_1836_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 397", "author": "", "orig_id": 1407933}}, {"model": "metainfo.source", "pk": 304, "fields": {"orig_filename": "Fernkorn_Anton-Dominik_1813_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420952}}, {"model": "metainfo.source", "pk": 305, "fields": {"orig_filename": "Marburg_Otto_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409302}}, {"model": "metainfo.source", "pk": 306, "fields": {"orig_filename": "Polic_Ladislav_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410605}}, {"model": "metainfo.source", "pk": 307, "fields": {"orig_filename": "Kudelka_Josef_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415369}}, {"model": "metainfo.source", "pk": 308, "fields": {"orig_filename": "Oss_Domenico_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 258f.", "author": "", "orig_id": 1409240}}, {"model": "metainfo.source", "pk": 309, "fields": {"orig_filename": "Perko_Ivan-Andrej_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408195}}, {"model": "metainfo.source", "pk": 310, "fields": {"orig_filename": "Groebner_Josef-Mathias_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419070}}, {"model": "metainfo.source", "pk": 311, "fields": {"orig_filename": "Hofmann_Paul_1798_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416823}}, {"model": "metainfo.source", "pk": 312, "fields": {"orig_filename": "Kaan-Albest_Jindrich_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161f.", "author": "", "orig_id": 1415021}}, {"model": "metainfo.source", "pk": 313, "fields": {"orig_filename": "Schweiger-Lerchenfeld_Amand_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 40f.", "author": "", "orig_id": 1439716}}, {"model": "metainfo.source", "pk": 314, "fields": {"orig_filename": "Kudernatsch_Vinzenz_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415370}}, {"model": "metainfo.source", "pk": 315, "fields": {"orig_filename": "Berlepsch_Franz_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74f.", "author": "", "orig_id": 1421210}}, {"model": "metainfo.source", "pk": 316, "fields": {"orig_filename": "Reichel_Karl-Anton_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29f.", "author": "", "orig_id": 1406800}}, {"model": "metainfo.source", "pk": 317, "fields": {"orig_filename": "Lavos_Josef_1807_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413046}}, {"model": "metainfo.source", "pk": 318, "fields": {"orig_filename": "Hecke_Ludwig_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234", "author": "", "orig_id": 1417361}}, {"model": "metainfo.source", "pk": 319, "fields": {"orig_filename": "Stolba_Josef_1846_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 310", "author": "", "orig_id": 1431030}}, {"model": "metainfo.source", "pk": 320, "fields": {"orig_filename": "Putzker_Albrecht_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349", "author": "", "orig_id": 1409516}}, {"model": "metainfo.source", "pk": 321, "fields": {"orig_filename": "Babukic_Vjekoslav_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420828}}, {"model": "metainfo.source", "pk": 322, "fields": {"orig_filename": "Sonndorfer_Rudolf_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 420", "author": "", "orig_id": 1438691}}, {"model": "metainfo.source", "pk": 323, "fields": {"orig_filename": "Ivekovic_Franjo_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48f.", "author": "", "orig_id": 1414757}}, {"model": "metainfo.source", "pk": 324, "fields": {"orig_filename": "Phillips_George_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 45", "author": "", "orig_id": 1410402}}, {"model": "metainfo.source", "pk": 325, "fields": {"orig_filename": "Pokorny_Alois_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160", "author": "", "orig_id": 1410349}}, {"model": "metainfo.source", "pk": 326, "fields": {"orig_filename": "Sauter_Anton-Eleutherius_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 445f.", "author": "", "orig_id": 1408043}}, {"model": "metainfo.source", "pk": 327, "fields": {"orig_filename": "Schwoiser_Eduard_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66", "author": "", "orig_id": 1440116}}, {"model": "metainfo.source", "pk": 328, "fields": {"orig_filename": "Kralik-Meyrswalden_Wilhelm_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 200", "author": "", "orig_id": 1415353}}, {"model": "metainfo.source", "pk": 329, "fields": {"orig_filename": "Moses_Leopold_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390f.", "author": "", "orig_id": 1413190}}, {"model": "metainfo.source", "pk": 330, "fields": {"orig_filename": "Meindl_Konrad_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195", "author": "", "orig_id": 1413790}}, {"model": "metainfo.source", "pk": 331, "fields": {"orig_filename": "Moser_Alois_1905_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385", "author": "", "orig_id": 1413107}}, {"model": "metainfo.source", "pk": 332, "fields": {"orig_filename": "Fuegner_Heinrich_1822_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420975}}, {"model": "metainfo.source", "pk": 333, "fields": {"orig_filename": "Kober_Leo_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411344}}, {"model": "metainfo.source", "pk": 334, "fields": {"orig_filename": "Martinez_August_1794_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 116f.", "author": "", "orig_id": 1408480}}, {"model": "metainfo.source", "pk": 335, "fields": {"orig_filename": "Mniszek-Tchorznicki_Aleksander_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332", "author": "", "orig_id": 1412459}}, {"model": "metainfo.source", "pk": 336, "fields": {"orig_filename": "Goldhammer_Leo_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23", "author": "", "orig_id": 1418348}}, {"model": "metainfo.source", "pk": 337, "fields": {"orig_filename": "Bruck_Karl-Ludwig_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420612}}, {"model": "metainfo.source", "pk": 338, "fields": {"orig_filename": "Rieger_Roman_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151f.", "author": "", "orig_id": 1407324}}, {"model": "metainfo.source", "pk": 339, "fields": {"orig_filename": "Lauer_Joseph_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48", "author": "", "orig_id": 1412961}}, {"model": "metainfo.source", "pk": 340, "fields": {"orig_filename": "Litta-Visconti-Arese_Giulio-Renato_1763_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250", "author": "", "orig_id": 1411369}}, {"model": "metainfo.source", "pk": 341, "fields": {"orig_filename": "Maier_Franz_1814_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422", "author": "", "orig_id": 1411953}}, {"model": "metainfo.source", "pk": 342, "fields": {"orig_filename": "Egg_Josef_1820_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420938}}, {"model": "metainfo.source", "pk": 343, "fields": {"orig_filename": "Schoenfeld_Adolf_1828_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 70", "author": "", "orig_id": 1405787}}, {"model": "metainfo.source", "pk": 344, "fields": {"orig_filename": "Schroeder_Artur_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 228f.", "author": "", "orig_id": 1411696}}, {"model": "metainfo.source", "pk": 345, "fields": {"orig_filename": "Merk_Josef_1795_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230", "author": "", "orig_id": 1412730}}, {"model": "metainfo.source", "pk": 346, "fields": {"orig_filename": "Kun_Bertalan_1817_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346f.", "author": "", "orig_id": 1415748}}, {"model": "metainfo.source", "pk": 347, "fields": {"orig_filename": "Hauser_Anton_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418595}}, {"model": "metainfo.source", "pk": 348, "fields": {"orig_filename": "Hron_Karl_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417591}}, {"model": "metainfo.source", "pk": 349, "fields": {"orig_filename": "Tepina_Lovro_1882_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 251", "author": "", "orig_id": 2168097}}, {"model": "metainfo.source", "pk": 350, "fields": {"orig_filename": "Herrmann_Leopold-Franz_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416984}}, {"model": "metainfo.source", "pk": 351, "fields": {"orig_filename": "Pakies_Jozef-Henryk_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 293f.", "author": "", "orig_id": 1408168}}, {"model": "metainfo.source", "pk": 352, "fields": {"orig_filename": "Korn_Maximilian_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129f.", "author": "", "orig_id": 1411921}}, {"model": "metainfo.source", "pk": 353, "fields": {"orig_filename": "Caffi_Francesco_1778_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416761}}, {"model": "metainfo.source", "pk": 354, "fields": {"orig_filename": "Nizalowski_Franciszek_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409217}}, {"model": "metainfo.source", "pk": 355, "fields": {"orig_filename": "Hoenig_Franz_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417932}}, {"model": "metainfo.source", "pk": 356, "fields": {"orig_filename": "Presl_Jan-Svatopluk_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 267", "author": "", "orig_id": 1410065}}, {"model": "metainfo.source", "pk": 357, "fields": {"orig_filename": "Spagnoli_Antonio_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 445", "author": "", "orig_id": 1426809}}, {"model": "metainfo.source", "pk": 358, "fields": {"orig_filename": "Eberhart_Ernest_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422159}}, {"model": "metainfo.source", "pk": 359, "fields": {"orig_filename": "Meixner_Paul-Hermann_1891_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206", "author": "", "orig_id": 1413886}}, {"model": "metainfo.source", "pk": 360, "fields": {"orig_filename": "Kalic_Dimitrije-Mita_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414094}}, {"model": "metainfo.source", "pk": 361, "fields": {"orig_filename": "Gappmayr_Peter_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421371}}, {"model": "metainfo.source", "pk": 362, "fields": {"orig_filename": "Kirchl_Adolf_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414721}}, {"model": "metainfo.source", "pk": 363, "fields": {"orig_filename": "Szarnovszky_Ferenc_1863_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 118f.", "author": "", "orig_id": 1435900}}, {"model": "metainfo.source", "pk": 364, "fields": {"orig_filename": "Silberer_Franz_1871_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 260f.", "author": "", "orig_id": 1458072}}, {"model": "metainfo.source", "pk": 365, "fields": {"orig_filename": "Schwarzenberg-Czerny_Franciszek_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 26", "author": "", "orig_id": 1439602}}, {"model": "metainfo.source", "pk": 366, "fields": {"orig_filename": "Sestak_Adalbert_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 196", "author": "", "orig_id": 1450884}}, {"model": "metainfo.source", "pk": 367, "fields": {"orig_filename": "Okunevskyj_Jaroslaw_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408868}}, {"model": "metainfo.source", "pk": 368, "fields": {"orig_filename": "Perathoner_Johann_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411f.", "author": "", "orig_id": 1408095}}, {"model": "metainfo.source", "pk": 369, "fields": {"orig_filename": "Hebbel_Christian-Friedrich_1813_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229ff.", "author": "", "orig_id": 1417352}}, {"model": "metainfo.source", "pk": 370, "fields": {"orig_filename": "Frank_Gustav_1807_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421643}}, {"model": "metainfo.source", "pk": 371, "fields": {"orig_filename": "Gams_Eduard_1874_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421281}}, {"model": "metainfo.source", "pk": 372, "fields": {"orig_filename": "Perini_Carlo_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 420f.", "author": "", "orig_id": 1408191}}, {"model": "metainfo.source", "pk": 373, "fields": {"orig_filename": "Morandell_Josef-Valentin_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 366", "author": "", "orig_id": 1412840}}, {"model": "metainfo.source", "pk": 374, "fields": {"orig_filename": "Barak_Josef_1833_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405703}}, {"model": "metainfo.source", "pk": 375, "fields": {"orig_filename": "Leitenberger_Franz_1761_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 112", "author": "", "orig_id": 1413844}}, {"model": "metainfo.source", "pk": 376, "fields": {"orig_filename": "Kovacs_Edgar_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416446}}, {"model": "metainfo.source", "pk": 377, "fields": {"orig_filename": "Jakab_Elek_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414926}}, {"model": "metainfo.source", "pk": 378, "fields": {"orig_filename": "Steyskal_Karl-Franz_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245", "author": "", "orig_id": 1429359}}, {"model": "metainfo.source", "pk": 379, "fields": {"orig_filename": "Seefehlner_Egon-Ewald_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 97f.", "author": "", "orig_id": 1439335}}, {"model": "metainfo.source", "pk": 380, "fields": {"orig_filename": "Klein_Franz_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378", "author": "", "orig_id": 1418778}}, {"model": "metainfo.source", "pk": 381, "fields": {"orig_filename": "Soxhlet_Franz_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 438", "author": "", "orig_id": 1438508}}, {"model": "metainfo.source", "pk": 382, "fields": {"orig_filename": "Krenner_Jozsef-Sandor_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416013}}, {"model": "metainfo.source", "pk": 383, "fields": {"orig_filename": "Sava_Karl_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447", "author": "", "orig_id": 1408046}}, {"model": "metainfo.source", "pk": 384, "fields": {"orig_filename": "Halban_Hans_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157f.", "author": "", "orig_id": 1419254}}, {"model": "metainfo.source", "pk": 385, "fields": {"orig_filename": "Kowarz_Wilhelm-Maria_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416610}}, {"model": "metainfo.source", "pk": 386, "fields": {"orig_filename": "Herzfelder_Henriette_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417077}}, {"model": "metainfo.source", "pk": 387, "fields": {"orig_filename": "Stoessl_Otto_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298", "author": "", "orig_id": 1431896}}, {"model": "metainfo.source", "pk": 388, "fields": {"orig_filename": "Issleib_Ludwig_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414744}}, {"model": "metainfo.source", "pk": 389, "fields": {"orig_filename": "Lindenthaler_Michael_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412382}}, {"model": "metainfo.source", "pk": 390, "fields": {"orig_filename": "Spitzer_Josef-Anton_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 40f.", "author": "", "orig_id": 1429173}}, {"model": "metainfo.source", "pk": 391, "fields": {"orig_filename": "Krauss_Hans-Nikolaus_1861_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415723}}, {"model": "metainfo.source", "pk": 392, "fields": {"orig_filename": "Luksch_Richard-Joseph_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 367", "author": "", "orig_id": 1411289}}, {"model": "metainfo.source", "pk": 393, "fields": {"orig_filename": "Hatvany-Deutsch_Josef_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418493}}, {"model": "metainfo.source", "pk": 394, "fields": {"orig_filename": "Oberziner_Lodovico_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408585}}, {"model": "metainfo.source", "pk": 395, "fields": {"orig_filename": "Hausotter_Johann_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418680}}, {"model": "metainfo.source", "pk": 396, "fields": {"orig_filename": "Thornton_Jonathan_1776_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311", "author": "", "orig_id": 2264957}}, {"model": "metainfo.source", "pk": 397, "fields": {"orig_filename": "Thoroczkai-Wigand_Ede_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311f.", "author": "", "orig_id": 2175396}}, {"model": "metainfo.source", "pk": 398, "fields": {"orig_filename": "Thorsch_Alexander_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 312f.", "author": "", "orig_id": 1424538}}, {"model": "metainfo.source", "pk": 399, "fields": {"orig_filename": "Thorsch_Alphons_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313", "author": "", "orig_id": 1414481}}, {"model": "metainfo.source", "pk": 400, "fields": {"orig_filename": "Thorsch_David_1832_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313", "author": "", "orig_id": 2247326}}, {"model": "metainfo.source", "pk": 401, "fields": {"orig_filename": "Thorsch_Ernestine_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 2281795}}, {"model": "metainfo.source", "pk": 402, "fields": {"orig_filename": "Thorsch_Koppelmann_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313f.", "author": "", "orig_id": 2262624}}, {"model": "metainfo.source", "pk": 403, "fields": {"orig_filename": "Thorsch_Otto_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 1424541}}, {"model": "metainfo.source", "pk": 404, "fields": {"orig_filename": "Thorsch_Philipp_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 1424542}}, {"model": "metainfo.source", "pk": 405, "fields": {"orig_filename": "Thuemen_Felix_1839_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314f.", "author": "", "orig_id": 1424543}}, {"model": "metainfo.source", "pk": 406, "fields": {"orig_filename": "Thuerheim_Andreas-Joseph_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 315f.", "author": "", "orig_id": 1424545}}, {"model": "metainfo.source", "pk": 407, "fields": {"orig_filename": "Thuerheim_Louise_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 316", "author": "", "orig_id": 1424546}}, {"model": "metainfo.source", "pk": 408, "fields": {"orig_filename": "Thugut_Franz-Maria_1736_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 316f.", "author": "", "orig_id": 1424578}}, {"model": "metainfo.source", "pk": 409, "fields": {"orig_filename": "Thuille_Ludwig_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 317f.", "author": "", "orig_id": 1424581}}, {"model": "metainfo.source", "pk": 410, "fields": {"orig_filename": "Thullie_Maksymilian-Marceli_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 318f.", "author": "", "orig_id": 1424583}}, {"model": "metainfo.source", "pk": 411, "fields": {"orig_filename": "Thumser_Viktor_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320", "author": "", "orig_id": 1424631}}, {"model": "metainfo.source", "pk": 412, "fields": {"orig_filename": "Thum_Anton_1788_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 319", "author": "", "orig_id": 1424586}}, {"model": "metainfo.source", "pk": 413, "fields": {"orig_filename": "Thum_Theodor_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 319f.", "author": "", "orig_id": 1449321}}, {"model": "metainfo.source", "pk": 414, "fields": {"orig_filename": "Thun-Hohenstein-Salm-Reifferscheid_Christiane_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 329f.", "author": "", "orig_id": 1423753}}, {"model": "metainfo.source", "pk": 415, "fields": {"orig_filename": "Thun-Hohenstein-Salm-Reifferscheid_Oswald_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 330f.", "author": "", "orig_id": 1423714}}, {"model": "metainfo.source", "pk": 416, "fields": {"orig_filename": "Thun-Hohenstein_Franz-Anton_1809_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 323f.", "author": "", "orig_id": 1424114}}, {"model": "metainfo.source", "pk": 417, "fields": {"orig_filename": "Thun-Hohenstein_Franz_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 321f.", "author": "", "orig_id": 1424013}}, {"model": "metainfo.source", "pk": 418, "fields": {"orig_filename": "Thun-Hohenstein_Franz_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 322f.", "author": "", "orig_id": 1424117}}, {"model": "metainfo.source", "pk": 419, "fields": {"orig_filename": "Thun-Hohenstein_Friedrich_1810_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 324", "author": "", "orig_id": 1424118}}, {"model": "metainfo.source", "pk": 420, "fields": {"orig_filename": "Thun-Hohenstein_Galeazzo-Maria-Fra_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 324f.", "author": "", "orig_id": 1424153}}, {"model": "metainfo.source", "pk": 421, "fields": {"orig_filename": "Thun-Hohenstein_Guido_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 325", "author": "", "orig_id": 1424154}}, {"model": "metainfo.source", "pk": 422, "fields": {"orig_filename": "Thun-Hohenstein_Jaroslav_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 325f.", "author": "", "orig_id": 1443096}}, {"model": "metainfo.source", "pk": 423, "fields": {"orig_filename": "Thun-Hohenstein_Karl_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 326", "author": "", "orig_id": 1456388}}, {"model": "metainfo.source", "pk": 424, "fields": {"orig_filename": "Thun-Hohenstein_Leopold-Leonhard_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 327f.", "author": "", "orig_id": 1424149}}, {"model": "metainfo.source", "pk": 425, "fields": {"orig_filename": "Thun-Hohenstein_Leo_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 326f.", "author": "", "orig_id": 1424159}}, {"model": "metainfo.source", "pk": 426, "fields": {"orig_filename": "Thun-Hohenstein_Maximilian_1887_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 328f.", "author": "", "orig_id": 1424560}}, {"model": "metainfo.source", "pk": 427, "fields": {"orig_filename": "Thun-Hohenstein_Sigmund_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 329", "author": "", "orig_id": 1423752}}, {"model": "metainfo.source", "pk": 428, "fields": {"orig_filename": "Thurn-Taxis_Alexander_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331", "author": "", "orig_id": 1448599}}, {"model": "metainfo.source", "pk": 429, "fields": {"orig_filename": "Thurn-Taxis_Emerich_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331", "author": "", "orig_id": 1423762}}, {"model": "metainfo.source", "pk": 430, "fields": {"orig_filename": "Thurn-Taxis_Friedrich-Hannibal_1799_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331f.", "author": "", "orig_id": 1423763}}, {"model": "metainfo.source", "pk": 431, "fields": {"orig_filename": "Thurn-Taxis_Wilhelm_1801_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 332", "author": "", "orig_id": 1423811}}, {"model": "metainfo.source", "pk": 432, "fields": {"orig_filename": "Thurn-Valsassina-Como-Vercelli_Georg_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 333", "author": "", "orig_id": 1423860}}, {"model": "metainfo.source", "pk": 433, "fields": {"orig_filename": "Thurn-Valsassina_Gustav_1836_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 332f.", "author": "", "orig_id": 1423816}}, {"model": "metainfo.source", "pk": 434, "fields": {"orig_filename": "Thurnes_Heinrich_1833_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 333f.", "author": "", "orig_id": 1447456}}, {"model": "metainfo.source", "pk": 435, "fields": {"orig_filename": "Thurneyssen_Friedrich_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 334", "author": "", "orig_id": 1423866}}, {"model": "metainfo.source", "pk": 436, "fields": {"orig_filename": "Thurnher_Johann_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 334f.", "author": "", "orig_id": 1423869}}, {"model": "metainfo.source", "pk": 437, "fields": {"orig_filename": "Thurnher_Martin_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 335", "author": "", "orig_id": 1423870}}, {"model": "metainfo.source", "pk": 438, "fields": {"orig_filename": "Thurwieser_Peter-Karl_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 335f.", "author": "", "orig_id": 1423912}}, {"model": "metainfo.source", "pk": 439, "fields": {"orig_filename": "Thury_Zoltan_1870_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 336", "author": "", "orig_id": 2195847}}, {"model": "metainfo.source", "pk": 440, "fields": {"orig_filename": "Tichatschek_Joseph-Alois_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 336f.", "author": "", "orig_id": 1423956}}, {"model": "metainfo.source", "pk": 441, "fields": {"orig_filename": "Tichy_Hans_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 337f.", "author": "", "orig_id": 1423411}}, {"model": "metainfo.source", "pk": 442, "fields": {"orig_filename": "Tichy_Karol-Maria-Jozef_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 338", "author": "", "orig_id": 2166155}}, {"model": "metainfo.source", "pk": 443, "fields": {"orig_filename": "Tieber_Ben_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 338f.", "author": "", "orig_id": 1415068}}, {"model": "metainfo.source", "pk": 444, "fields": {"orig_filename": "Tiefenbacher_Ludwig-E_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 339", "author": "", "orig_id": 1423439}}, {"model": "metainfo.source", "pk": 445, "fields": {"orig_filename": "Tiefenthaler_Paula_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 339f.", "author": "", "orig_id": 1423504}}, {"model": "metainfo.source", "pk": 446, "fields": {"orig_filename": "Tieftrunk_Karel_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 340", "author": "", "orig_id": 1423505}}, {"model": "metainfo.source", "pk": 447, "fields": {"orig_filename": "Tietze_Emil_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 341f.", "author": "", "orig_id": 1423546}}, {"model": "metainfo.source", "pk": 448, "fields": {"orig_filename": "Tietz_Karl_1831_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 341", "author": "", "orig_id": 1423542}}, {"model": "metainfo.source", "pk": 449, "fields": {"orig_filename": "Tihanyi_Kalman_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 342f.", "author": "", "orig_id": 2195874}}, {"model": "metainfo.source", "pk": 450, "fields": {"orig_filename": "Tihanyi_Lajos_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 343", "author": "", "orig_id": 1423577}}, {"model": "metainfo.source", "pk": 451, "fields": {"orig_filename": "Tilgner_Friedrich-Rudolf_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 343f.", "author": "", "orig_id": 1423608}}, {"model": "metainfo.source", "pk": 452, "fields": {"orig_filename": "Tilgner_Victor-Oskar_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 344f.", "author": "", "orig_id": 1423685}}, {"model": "metainfo.source", "pk": 453, "fields": {"orig_filename": "Till-Kostryn_Ernst_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 346f.", "author": "", "orig_id": 2245535}}, {"model": "metainfo.source", "pk": 454, "fields": {"orig_filename": "Tiller-Turnfort_Karl_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348", "author": "", "orig_id": 1423728}}, {"model": "metainfo.source", "pk": 455, "fields": {"orig_filename": "Tiller_Karel_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348", "author": "", "orig_id": 1423725}}, {"model": "metainfo.source", "pk": 456, "fields": {"orig_filename": "Tille_Vaclav_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 347f.", "author": "", "orig_id": 1472596}}, {"model": "metainfo.source", "pk": 457, "fields": {"orig_filename": "Till_Johann_1827_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 345f.", "author": "", "orig_id": 1447460}}, {"model": "metainfo.source", "pk": 458, "fields": {"orig_filename": "Till_Leopold_1830_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 345f.", "author": "", "orig_id": 1423718}}, {"model": "metainfo.source", "pk": 459, "fields": {"orig_filename": "Till_Vinzenz_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 346", "author": "", "orig_id": 1423720}}, {"model": "metainfo.source", "pk": 460, "fields": {"orig_filename": "Tilser_Frantisek_1825_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348f.", "author": "", "orig_id": 1455775}}, {"model": "metainfo.source", "pk": 461, "fields": {"orig_filename": "Timar_Szaniszlo_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 349", "author": "", "orig_id": 1454709}}, {"model": "metainfo.source", "pk": 462, "fields": {"orig_filename": "Timeus_Ruggero_1892_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 349f.", "author": "", "orig_id": 2168227}}, {"model": "metainfo.source", "pk": 463, "fields": {"orig_filename": "Timon-Schmerrhoff-Szedlicsna_Akos_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 350", "author": "", "orig_id": 1458903}}, {"model": "metainfo.source", "pk": 464, "fields": {"orig_filename": "Tinkhauser_Johann-Nepomuk_1787_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 351", "author": "", "orig_id": 1423820}}, {"model": "metainfo.source", "pk": 465, "fields": {"orig_filename": "Tinter-Marienwil_Wilhelm_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 351f.", "author": "", "orig_id": 1423823}}, {"model": "metainfo.source", "pk": 466, "fields": {"orig_filename": "Tinti_Karl-Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 352", "author": "", "orig_id": 1423825}}, {"model": "metainfo.source", "pk": 467, "fields": {"orig_filename": "Tiring_Victor_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353", "author": "", "orig_id": 2246184}}, {"model": "metainfo.source", "pk": 468, "fields": {"orig_filename": "Tirka_Demeter-Theodor_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353", "author": "", "orig_id": 1423831}}, {"model": "metainfo.source", "pk": 469, "fields": {"orig_filename": "Tischer_Frantisek_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354", "author": "", "orig_id": 1423873}}, {"model": "metainfo.source", "pk": 470, "fields": {"orig_filename": "Tischer_Frantisek_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353f.", "author": "", "orig_id": 1423874}}, {"model": "metainfo.source", "pk": 471, "fields": {"orig_filename": "Tischler_Ludwig_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354", "author": "", "orig_id": 1423880}}, {"model": "metainfo.source", "pk": 472, "fields": {"orig_filename": "Tiso_Jozef_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354ff.", "author": "", "orig_id": 1423884}}, {"model": "metainfo.source", "pk": 473, "fields": {"orig_filename": "Tisza-Borosjenoe-Szeged_Istvan_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 357f.", "author": "", "orig_id": 1423886}}, {"model": "metainfo.source", "pk": 474, "fields": {"orig_filename": "Titl_Anton-Emil_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 358", "author": "", "orig_id": 1423926}}, {"model": "metainfo.source", "pk": 475, "fields": {"orig_filename": "Titta_Wenzel_1863_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 359", "author": "", "orig_id": 1423928}}, {"model": "metainfo.source", "pk": 476, "fields": {"orig_filename": "Tkac_Jaroslav_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 359f.", "author": "", "orig_id": 2172718}}, {"model": "metainfo.source", "pk": 477, "fields": {"orig_filename": "Tkany_Wilhelm_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 360", "author": "", "orig_id": 1423414}}, {"model": "metainfo.source", "pk": 478, "fields": {"orig_filename": "Tluchor_Alois_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 360f.", "author": "", "orig_id": 1423416}}, {"model": "metainfo.source", "pk": 479, "fields": {"orig_filename": "Tobiasek_Stanislav_1874_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 361", "author": "", "orig_id": 1423420}}, {"model": "metainfo.source", "pk": 480, "fields": {"orig_filename": "Tobner_Adolf_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 361f.", "author": "", "orig_id": 1423449}}, {"model": "metainfo.source", "pk": 481, "fields": {"orig_filename": "Todesco_Eduard_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 362f.", "author": "", "orig_id": 1444900}}, {"model": "metainfo.source", "pk": 482, "fields": {"orig_filename": "Todesco_Hermann_1791_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 363", "author": "", "orig_id": 1423647}}, {"model": "metainfo.source", "pk": 483, "fields": {"orig_filename": "Todesco_Max_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 363f.", "author": "", "orig_id": 1423648}}, {"model": "metainfo.source", "pk": 484, "fields": {"orig_filename": "Todesco_Sophie_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 364f.", "author": "", "orig_id": 1423651}}, {"model": "metainfo.source", "pk": 485, "fields": {"orig_filename": "Toegl_Martin-Albert_1753_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 365", "author": "", "orig_id": 1423660}}, {"model": "metainfo.source", "pk": 486, "fields": {"orig_filename": "Toelg_Franz_1877_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 365f.", "author": "", "orig_id": 1430741}}, {"model": "metainfo.source", "pk": 487, "fields": {"orig_filename": "Toelk_Josef_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1423658}}, {"model": "metainfo.source", "pk": 488, "fields": {"orig_filename": "Toeltenyi_Szaniszlo_1795_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366f.", "author": "", "orig_id": 1455930}}, {"model": "metainfo.source", "pk": 489, "fields": {"orig_filename": "Toemoerkeny_Istvan_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 367f.", "author": "", "orig_id": 1458604}}, {"model": "metainfo.source", "pk": 490, "fields": {"orig_filename": "Toepler_August-Joseph_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 368", "author": "", "orig_id": 1423694}}, {"model": "metainfo.source", "pk": 491, "fields": {"orig_filename": "Toeply_Robert_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 368f.", "author": "", "orig_id": 1423697}}, {"model": "metainfo.source", "pk": 492, "fields": {"orig_filename": "Tersztyanszky-Nadas_Karl_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 255f.", "author": "", "orig_id": 1424314}}, {"model": "metainfo.source", "pk": 493, "fields": {"orig_filename": "Terzky_Karl-August_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 256", "author": "", "orig_id": 1424313}}, {"model": "metainfo.source", "pk": 494, "fields": {"orig_filename": "Tesar_Frantisek_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 256f.", "author": "", "orig_id": 1452815}}, {"model": "metainfo.source", "pk": 495, "fields": {"orig_filename": "Teschner_Richard-Heinrich_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257ff.", "author": "", "orig_id": 1424389}}, {"model": "metainfo.source", "pk": 496, "fields": {"orig_filename": "Tesla_Nikola_1856_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 259f.", "author": "", "orig_id": 1424431}}, {"model": "metainfo.source", "pk": 497, "fields": {"orig_filename": "Tesnohlidek_Rudolf_1882_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 260", "author": "", "orig_id": 2173405}}, {"model": "metainfo.source", "pk": 498, "fields": {"orig_filename": "Tessedik_Ferenc_1800_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261", "author": "", "orig_id": 1451717}}, {"model": "metainfo.source", "pk": 499, "fields": {"orig_filename": "Tessedik_Samuel-Iii_1777_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261", "author": "", "orig_id": 1451723}}, {"model": "metainfo.source", "pk": 500, "fields": {"orig_filename": "Tessedik_Samuel-Ii_1742_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 260f.", "author": "", "orig_id": 1451722}}, {"model": "metainfo.source", "pk": 501, "fields": {"orig_filename": "Tessenow_Heinrich_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261f.", "author": "", "orig_id": 1424438}}, {"model": "metainfo.source", "pk": 502, "fields": {"orig_filename": "Testa_Bartholomaeus-Iii_1804_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262", "author": "", "orig_id": 1451728}}, {"model": "metainfo.source", "pk": 503, "fields": {"orig_filename": "Testa_Heinrich_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262f.", "author": "", "orig_id": 1424467}}, {"model": "metainfo.source", "pk": 504, "fields": {"orig_filename": "Testa_Heinrich_1821_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 1451726}}, {"model": "metainfo.source", "pk": 505, "fields": {"orig_filename": "Testa_Karl_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262", "author": "", "orig_id": 1451731}}, {"model": "metainfo.source", "pk": 506, "fields": {"orig_filename": "Tetmajer_Ludwig_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263f.", "author": "", "orig_id": 1424470}}, {"model": "metainfo.source", "pk": 507, "fields": {"orig_filename": "Tetmajer_Wlodzimierz_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 264f.", "author": "", "orig_id": 2167036}}, {"model": "metainfo.source", "pk": 508, "fields": {"orig_filename": "Tettenborn_Friedrich-Karl_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 265f.", "author": "", "orig_id": 1424472}}, {"model": "metainfo.source", "pk": 509, "fields": {"orig_filename": "Teuber_Emma_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266", "author": "", "orig_id": 2171732}}, {"model": "metainfo.source", "pk": 510, "fields": {"orig_filename": "Teuber_Josef_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 267f.", "author": "", "orig_id": 1424476}}, {"model": "metainfo.source", "pk": 511, "fields": {"orig_filename": "Teuber_Maurus_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 267", "author": "", "orig_id": 2202195}}, {"model": "metainfo.source", "pk": 512, "fields": {"orig_filename": "Teuber_Moritz_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269", "author": "", "orig_id": 1424477}}, {"model": "metainfo.source", "pk": 513, "fields": {"orig_filename": "Teuber_Oskar-Karl_1852_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 268", "author": "", "orig_id": 1424478}}, {"model": "metainfo.source", "pk": 514, "fields": {"orig_filename": "Teuber_Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269", "author": "", "orig_id": 1424516}}, {"model": "metainfo.source", "pk": 515, "fields": {"orig_filename": "Teuchert-Kauffmann-Traunsteinburg_Friedrich_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 270", "author": "", "orig_id": 1424517}}, {"model": "metainfo.source", "pk": 516, "fields": {"orig_filename": "Teuchert_Friedrich_1797_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269f.", "author": "", "orig_id": 1451793}}, {"model": "metainfo.source", "pk": 517, "fields": {"orig_filename": "Teuffenbach-Tiefenbach-Masswegg_Albin_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 270f.", "author": "", "orig_id": 1424523}}, {"model": "metainfo.source", "pk": 518, "fields": {"orig_filename": "Teutsch_Friedrich_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 271", "author": "", "orig_id": 1424524}}, {"model": "metainfo.source", "pk": 519, "fields": {"orig_filename": "Teutsch_Georg-Daniel_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 271f.", "author": "", "orig_id": 1422743}}, {"model": "metainfo.source", "pk": 520, "fields": {"orig_filename": "Teweles_Heinrich_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 273f.", "author": "", "orig_id": 1424605}}, {"model": "metainfo.source", "pk": 521, "fields": {"orig_filename": "Tewele_Franz_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 272f.", "author": "", "orig_id": 1424604}}, {"model": "metainfo.source", "pk": 522, "fields": {"orig_filename": "Tewes_August_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274", "author": "", "orig_id": 1424606}}, {"model": "metainfo.source", "pk": 523, "fields": {"orig_filename": "Teyber_Anton_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274f.", "author": "", "orig_id": 1424608}}, {"model": "metainfo.source", "pk": 524, "fields": {"orig_filename": "Teyber_Eleonora_1789_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274f.", "author": "", "orig_id": 1431988}}, {"model": "metainfo.source", "pk": 525, "fields": {"orig_filename": "Teyber_Elisabeth_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 1448326}}, {"model": "metainfo.source", "pk": 526, "fields": {"orig_filename": "Teyber_Elisabeth_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275", "author": "", "orig_id": 2182812}}, {"model": "metainfo.source", "pk": 527, "fields": {"orig_filename": "Teyber_Maria-Barbara-Francisca_1750_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 2281460}}, {"model": "metainfo.source", "pk": 528, "fields": {"orig_filename": "Teyber_Therese_1760_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 1448256}}, {"model": "metainfo.source", "pk": 529, "fields": {"orig_filename": "Tezner_Friedrich_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 276", "author": "", "orig_id": 1424609}}, {"model": "metainfo.source", "pk": 530, "fields": {"orig_filename": "Thaisz_Lajos_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 276f.", "author": "", "orig_id": 2195763}}, {"model": "metainfo.source", "pk": 531, "fields": {"orig_filename": "Thalberg_Sigismund_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277", "author": "", "orig_id": 1424641}}, {"model": "metainfo.source", "pk": 532, "fields": {"orig_filename": "Thaler_Andreas_1883_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277f.", "author": "", "orig_id": 1424643}}, {"model": "metainfo.source", "pk": 533, "fields": {"orig_filename": "Thaler_Franz-Christian_1759_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 278f.", "author": "", "orig_id": 1447652}}, {"model": "metainfo.source", "pk": 534, "fields": {"orig_filename": "Thaler_Josef_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 279", "author": "", "orig_id": 1424648}}, {"model": "metainfo.source", "pk": 535, "fields": {"orig_filename": "Thaler_Karl_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 279f.", "author": "", "orig_id": 1424680}}, {"model": "metainfo.source", "pk": 536, "fields": {"orig_filename": "Thaler_Rafael_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 280", "author": "", "orig_id": 1424682}}, {"model": "metainfo.source", "pk": 537, "fields": {"orig_filename": "Thalhammer_Janos_1847_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 280f.", "author": "", "orig_id": 2200131}}, {"model": "metainfo.source", "pk": 538, "fields": {"orig_filename": "Thaller_Kathi_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281", "author": "", "orig_id": 1424048}}, {"model": "metainfo.source", "pk": 539, "fields": {"orig_filename": "Thaller_Willi_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281f.", "author": "", "orig_id": 1423997}}, {"model": "metainfo.source", "pk": 540, "fields": {"orig_filename": "Thalloczy_Lajos_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 282f.", "author": "", "orig_id": 1424091}}, {"model": "metainfo.source", "pk": 541, "fields": {"orig_filename": "Thalmayr_Franz_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 283f.", "author": "", "orig_id": 1424050}}, {"model": "metainfo.source", "pk": 542, "fields": {"orig_filename": "Thaly_Kalman_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 284", "author": "", "orig_id": 1424093}}, {"model": "metainfo.source", "pk": 543, "fields": {"orig_filename": "Thaly_Zsigmond_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 284f.", "author": "", "orig_id": 1452118}}, {"model": "metainfo.source", "pk": 544, "fields": {"orig_filename": "Tham_Karel-Ignac_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 285f.", "author": "", "orig_id": 1452120}}, {"model": "metainfo.source", "pk": 545, "fields": {"orig_filename": "Tham_Vaclav_1765_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 285f.", "author": "", "orig_id": 1424094}}, {"model": "metainfo.source", "pk": 546, "fields": {"orig_filename": "Than-Nemesapat_Karoly_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 286f.", "author": "", "orig_id": 1424131}}, {"model": "metainfo.source", "pk": 547, "fields": {"orig_filename": "Than_Mor_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 286", "author": "", "orig_id": 1424095}}, {"model": "metainfo.source", "pk": 548, "fields": {"orig_filename": "Thausing_Moriz_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 287f.", "author": "", "orig_id": 1424137}}, {"model": "metainfo.source", "pk": 549, "fields": {"orig_filename": "Theer_Adolf_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288", "author": "", "orig_id": 1424141}}, {"model": "metainfo.source", "pk": 550, "fields": {"orig_filename": "Theer_Albert_1815_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288", "author": "", "orig_id": 1424181}}, {"model": "metainfo.source", "pk": 551, "fields": {"orig_filename": "Theer_Otakar_1880_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288f.", "author": "", "orig_id": 1424182}}, {"model": "metainfo.source", "pk": 552, "fields": {"orig_filename": "Theer_Robert_1808_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 289", "author": "", "orig_id": 1424183}}, {"model": "metainfo.source", "pk": 553, "fields": {"orig_filename": "Thek-Kisnarda_Endre_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 289f.", "author": "", "orig_id": 2195823}}, {"model": "metainfo.source", "pk": 554, "fields": {"orig_filename": "Thenen_Josef_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 290", "author": "", "orig_id": 1424360}}, {"model": "metainfo.source", "pk": 555, "fields": {"orig_filename": "Thenen_Julie_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 291", "author": "", "orig_id": 1424361}}, {"model": "metainfo.source", "pk": 556, "fields": {"orig_filename": "Thern_Karl_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 291f.", "author": "", "orig_id": 1424363}}, {"model": "metainfo.source", "pk": 557, "fields": {"orig_filename": "Thern_Louis_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424392}}, {"model": "metainfo.source", "pk": 558, "fields": {"orig_filename": "Thern_Wilhelm_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424393}}, {"model": "metainfo.source", "pk": 559, "fields": {"orig_filename": "Theuer_Max_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424398}}, {"model": "metainfo.source", "pk": 560, "fields": {"orig_filename": "Thewrewk-Ponor_Emil_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292f.", "author": "", "orig_id": 1455990}}, {"model": "metainfo.source", "pk": 561, "fields": {"orig_filename": "Thewrewk-Ponor_Jozsef_1793_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 293", "author": "", "orig_id": 1456041}}, {"model": "metainfo.source", "pk": 562, "fields": {"orig_filename": "Theyer_Franz-Seraphin_1809_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 294", "author": "", "orig_id": 1424403}}, {"model": "metainfo.source", "pk": 563, "fields": {"orig_filename": "Theyer_Leopold_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 294f.", "author": "", "orig_id": 1440559}}, {"model": "metainfo.source", "pk": 564, "fields": {"orig_filename": "Theyer_Theodor_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 295", "author": "", "orig_id": 1424404}}, {"model": "metainfo.source", "pk": 565, "fields": {"orig_filename": "Theyer_Theodor_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 295", "author": "", "orig_id": 1424405}}, {"model": "metainfo.source", "pk": 566, "fields": {"orig_filename": "Thiele_Franz_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 296f.", "author": "", "orig_id": 1424448}}, {"model": "metainfo.source", "pk": 567, "fields": {"orig_filename": "Thiele_Friedrich_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 297", "author": "", "orig_id": 1424450}}, {"model": "metainfo.source", "pk": 568, "fields": {"orig_filename": "Thielisch_Johann-Christian_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 297", "author": "", "orig_id": 1424483}}, {"model": "metainfo.source", "pk": 569, "fields": {"orig_filename": "Thiel_Viktor_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 296", "author": "", "orig_id": 1424444}}, {"model": "metainfo.source", "pk": 570, "fields": {"orig_filename": "Thienemann_Otto_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 298", "author": "", "orig_id": 1424528}}, {"model": "metainfo.source", "pk": 571, "fields": {"orig_filename": "Thimig_Hugo_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 298f.", "author": "", "orig_id": 1424652}}, {"model": "metainfo.source", "pk": 572, "fields": {"orig_filename": "Thinnfeld_Ferdinand_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 299f.", "author": "", "orig_id": 1456121}}, {"model": "metainfo.source", "pk": 573, "fields": {"orig_filename": "Thirring_Gusztav-Adolf_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 300", "author": "", "orig_id": 1458897}}, {"model": "metainfo.source", "pk": 574, "fields": {"orig_filename": "Thoeni_Christian_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 301", "author": "", "orig_id": 1424103}}, {"model": "metainfo.source", "pk": 575, "fields": {"orig_filename": "Thoeny_Eduard_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 300f.", "author": "", "orig_id": 1424106}}, {"model": "metainfo.source", "pk": 576, "fields": {"orig_filename": "Thoeny_Wilhelm_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 301f.", "author": "", "orig_id": 1424107}}, {"model": "metainfo.source", "pk": 577, "fields": {"orig_filename": "Thomas_Edward_1794_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 302f.", "author": "", "orig_id": 1424197}}, {"model": "metainfo.source", "pk": 578, "fields": {"orig_filename": "Thomas_Rudolf_1895_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 303f.", "author": "", "orig_id": 2256695}}, {"model": "metainfo.source", "pk": 579, "fields": {"orig_filename": "Thomayer_Frantisek_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 304", "author": "", "orig_id": 1424209}}, {"model": "metainfo.source", "pk": 580, "fields": {"orig_filename": "Thomayer_Josef_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 304f.", "author": "", "orig_id": 1424239}}, {"model": "metainfo.source", "pk": 581, "fields": {"orig_filename": "Thome_Franz_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 305f.", "author": "", "orig_id": 1424242}}, {"model": "metainfo.source", "pk": 582, "fields": {"orig_filename": "Thommen_Achilles_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 306f.", "author": "", "orig_id": 1424246}}, {"model": "metainfo.source", "pk": 583, "fields": {"orig_filename": "Thonet_August_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308f.", "author": "", "orig_id": 1424283}}, {"model": "metainfo.source", "pk": 584, "fields": {"orig_filename": "Thonet_Jakob_1841_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309", "author": "", "orig_id": 1424288}}, {"model": "metainfo.source", "pk": 585, "fields": {"orig_filename": "Thonet_Josef_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308", "author": "", "orig_id": 1424289}}, {"model": "metainfo.source", "pk": 586, "fields": {"orig_filename": "Thonet_Michael_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 307f.", "author": "", "orig_id": 1424487}}, {"model": "metainfo.source", "pk": 587, "fields": {"orig_filename": "Thonet_Michael_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308f.", "author": "", "orig_id": 2187975}}, {"model": "metainfo.source", "pk": 588, "fields": {"orig_filename": "Thonner_Franz_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309", "author": "", "orig_id": 1424492}}, {"model": "metainfo.source", "pk": 589, "fields": {"orig_filename": "Thon_Osias_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 307", "author": "", "orig_id": 1424247}}, {"model": "metainfo.source", "pk": 590, "fields": {"orig_filename": "Thoren_Otto_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309f.", "author": "", "orig_id": 1424498}}, {"model": "metainfo.source", "pk": 591, "fields": {"orig_filename": "Thorma_Janos_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 310f.", "author": "", "orig_id": 2167112}}, {"model": "metainfo.source", "pk": 592, "fields": {"orig_filename": "Thornton_Johann_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311", "author": "", "orig_id": 1424537}}, {"model": "metainfo.source", "pk": 593, "fields": {"orig_filename": "Tangl_Eduard-Joseph_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 195f.", "author": "", "orig_id": 1422659}}, {"model": "metainfo.source", "pk": 594, "fields": {"orig_filename": "Tangl_Karlmann_1799_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 196f.", "author": "", "orig_id": 1422691}}, {"model": "metainfo.source", "pk": 595, "fields": {"orig_filename": "Tangl_Michael_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 197f.", "author": "", "orig_id": 1422692}}, {"model": "metainfo.source", "pk": 596, "fields": {"orig_filename": "Tantardini_Antonio_1829_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198", "author": "", "orig_id": 1422737}}, {"model": "metainfo.source", "pk": 597, "fields": {"orig_filename": "Tanzer_Valentin-Leopold_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198", "author": "", "orig_id": 2141313}}, {"model": "metainfo.source", "pk": 598, "fields": {"orig_filename": "Tappeiner-Tappein_Franz_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198ff.", "author": "", "orig_id": 1422782}}, {"model": "metainfo.source", "pk": 599, "fields": {"orig_filename": "Tappeiner-Tappein_Hermann_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 199f.", "author": "", "orig_id": 1422200}}, {"model": "metainfo.source", "pk": 600, "fields": {"orig_filename": "Tapper_Josef_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200", "author": "", "orig_id": 1422201}}, {"model": "metainfo.source", "pk": 601, "fields": {"orig_filename": "Tarnai_Janos_1843_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200f.", "author": "", "orig_id": 1422237}}, {"model": "metainfo.source", "pk": 602, "fields": {"orig_filename": "Tarnavschi_Teodor_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200f.", "author": "", "orig_id": 1422238}}, {"model": "metainfo.source", "pk": 603, "fields": {"orig_filename": "Tarnavschi_Vasile_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 201", "author": "", "orig_id": 1422239}}, {"model": "metainfo.source", "pk": 604, "fields": {"orig_filename": "Tarnoczy-Sprinzenberg_Bertha_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 202f.", "author": "", "orig_id": 1422241}}, {"model": "metainfo.source", "pk": 605, "fields": {"orig_filename": "Tarnoczy_Maximilian-Joseph_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 201f.", "author": "", "orig_id": 1422245}}, {"model": "metainfo.source", "pk": 606, "fields": {"orig_filename": "Tarnowski_Adam_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 203", "author": "", "orig_id": 1422272}}, {"model": "metainfo.source", "pk": 607, "fields": {"orig_filename": "Tarnowski_Jan-Dzierzyslaw_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 204", "author": "", "orig_id": 1422274}}, {"model": "metainfo.source", "pk": 608, "fields": {"orig_filename": "Tarnowski_Jan-Felix-Amor_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 203f.", "author": "", "orig_id": 1422283}}, {"model": "metainfo.source", "pk": 609, "fields": {"orig_filename": "Tarnowski_Stanislaw_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 204f.", "author": "", "orig_id": 1422311}}, {"model": "metainfo.source", "pk": 610, "fields": {"orig_filename": "Tarnowski_Wladyslaw_1836_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 205", "author": "", "orig_id": 1422312}}, {"model": "metainfo.source", "pk": 611, "fields": {"orig_filename": "Tartaruga_Ubald_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 205f.", "author": "", "orig_id": 1424428}}, {"model": "metainfo.source", "pk": 612, "fields": {"orig_filename": "Tauber_Alfred_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 207f.", "author": "", "orig_id": 1422397}}, {"model": "metainfo.source", "pk": 613, "fields": {"orig_filename": "Tauber_Anton-Richard_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 209f.", "author": "", "orig_id": 1422400}}, {"model": "metainfo.source", "pk": 614, "fields": {"orig_filename": "Tauber_Josef-Samuel_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208", "author": "", "orig_id": 1422406}}, {"model": "metainfo.source", "pk": 615, "fields": {"orig_filename": "Taubes-Lebenswarth_Johann_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 210", "author": "", "orig_id": 1422329}}, {"model": "metainfo.source", "pk": 616, "fields": {"orig_filename": "Taubes_Loebl_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 210", "author": "", "orig_id": 1422327}}, {"model": "metainfo.source", "pk": 617, "fields": {"orig_filename": "Taube_Erika_1913_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 207", "author": "", "orig_id": 1824004}}, {"model": "metainfo.source", "pk": 618, "fields": {"orig_filename": "Taub_Siegfried_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 206f.", "author": "", "orig_id": 1443032}}, {"model": "metainfo.source", "pk": 619, "fields": {"orig_filename": "Taufer_Josef_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 211", "author": "", "orig_id": 1422367}}, {"model": "metainfo.source", "pk": 620, "fields": {"orig_filename": "Tauffer_Vilmos_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 211f.", "author": "", "orig_id": 1422370}}, {"model": "metainfo.source", "pk": 621, "fields": {"orig_filename": "Taurer-Gallenstein_Anton_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 213", "author": "", "orig_id": 1422374}}, {"model": "metainfo.source", "pk": 622, "fields": {"orig_filename": "Taurer-Gallenstein_Hans_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 212f.", "author": "", "orig_id": 1422375}}, {"model": "metainfo.source", "pk": 623, "fields": {"orig_filename": "Taurer-Gallenstein_Johann-Nepomuk_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 213", "author": "", "orig_id": 1422376}}, {"model": "metainfo.source", "pk": 624, "fields": {"orig_filename": "Tausch-Gloeckelsthurn_Leopold_1858_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 214f.", "author": "", "orig_id": 1422410}}, {"model": "metainfo.source", "pk": 625, "fields": {"orig_filename": "Tauschek_Gustav_1899_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 215", "author": "", "orig_id": 1422416}}, {"model": "metainfo.source", "pk": 626, "fields": {"orig_filename": "Tauscher_Gyula-Agoston_1833_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 215f.", "author": "", "orig_id": 2210139}}, {"model": "metainfo.source", "pk": 627, "fields": {"orig_filename": "Tauschinski_Hippolyt_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 216", "author": "", "orig_id": 1424291}}, {"model": "metainfo.source", "pk": 628, "fields": {"orig_filename": "Tausch_Ignaz-Friedrich_1793_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 214", "author": "", "orig_id": 1422407}}, {"model": "metainfo.source", "pk": 629, "fields": {"orig_filename": "Tausenau_Karl_1813_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 216f.", "author": "", "orig_id": 1424295}}, {"model": "metainfo.source", "pk": 630, "fields": {"orig_filename": "Tausk_Viktor_1879_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 217f.", "author": "", "orig_id": 1424329}}, {"model": "metainfo.source", "pk": 631, "fields": {"orig_filename": "Taussig_Ervin_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 218f.", "author": "", "orig_id": 2173303}}, {"model": "metainfo.source", "pk": 632, "fields": {"orig_filename": "Taussig_Helene_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 219", "author": "", "orig_id": 1424337}}, {"model": "metainfo.source", "pk": 633, "fields": {"orig_filename": "Taussig_Otto_1879_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 219f.", "author": "", "orig_id": 1424340}}, {"model": "metainfo.source", "pk": 634, "fields": {"orig_filename": "Taussig_Sigmund_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 220f.", "author": "", "orig_id": 1424341}}, {"model": "metainfo.source", "pk": 635, "fields": {"orig_filename": "Taussig_Theodor_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 221f.", "author": "", "orig_id": 1424138}}, {"model": "metainfo.source", "pk": 636, "fields": {"orig_filename": "Tautenhayn_Ernst_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424372}}, {"model": "metainfo.source", "pk": 637, "fields": {"orig_filename": "Tautenhayn_Josef_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 222f.", "author": "", "orig_id": 1424459}}, {"model": "metainfo.source", "pk": 638, "fields": {"orig_filename": "Tautenhayn_Karl_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424460}}, {"model": "metainfo.source", "pk": 639, "fields": {"orig_filename": "Tautenhayn_Richard_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424461}}, {"model": "metainfo.source", "pk": 640, "fields": {"orig_filename": "Taux_Alois_1817_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223f.", "author": "", "orig_id": 1424463}}, {"model": "metainfo.source", "pk": 641, "fields": {"orig_filename": "Taux_Anna_1820_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224", "author": "", "orig_id": 1452531}}, {"model": "metainfo.source", "pk": 642, "fields": {"orig_filename": "Tavcar_Franja_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224f.", "author": "", "orig_id": 2167958}}, {"model": "metainfo.source", "pk": 643, "fields": {"orig_filename": "Tavcar_Ivan_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224f.", "author": "", "orig_id": 1424465}}, {"model": "metainfo.source", "pk": 644, "fields": {"orig_filename": "Tavella_Franz_1844_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 225", "author": "", "orig_id": 1424466}}, {"model": "metainfo.source", "pk": 645, "fields": {"orig_filename": "Tayerle_Rudolf_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 225f.", "author": "", "orig_id": 2202879}}, {"model": "metainfo.source", "pk": 646, "fields": {"orig_filename": "Techet_Carl_1877_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 226", "author": "", "orig_id": 1424504}}, {"model": "metainfo.source", "pk": 647, "fields": {"orig_filename": "Teclu_Nicolae_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 227", "author": "", "orig_id": 1424509}}, {"model": "metainfo.source", "pk": 648, "fields": {"orig_filename": "Tegetthoff_Karl_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 227f.", "author": "", "orig_id": 1424548}}, {"model": "metainfo.source", "pk": 649, "fields": {"orig_filename": "Tegetthoff_Wilhelm_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 228", "author": "", "orig_id": 1424549}}, {"model": "metainfo.source", "pk": 650, "fields": {"orig_filename": "Teglas_Gabor_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 228f.", "author": "", "orig_id": 1452545}}, {"model": "metainfo.source", "pk": 651, "fields": {"orig_filename": "Teichgraeber_Franz_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 229", "author": "", "orig_id": 1424354}}, {"model": "metainfo.source", "pk": 652, "fields": {"orig_filename": "Teige_Josef_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 229f.", "author": "", "orig_id": 1424559}}, {"model": "metainfo.source", "pk": 653, "fields": {"orig_filename": "Teimer-Wildau_Martin-Rochus_1778_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 230", "author": "", "orig_id": 1424588}}, {"model": "metainfo.source", "pk": 654, "fields": {"orig_filename": "Teirich_Ferdinand_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 230f.", "author": "", "orig_id": 1424592}}, {"model": "metainfo.source", "pk": 655, "fields": {"orig_filename": "Teirich_Valentin_1844_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 231f.", "author": "", "orig_id": 1424594}}, {"model": "metainfo.source", "pk": 656, "fields": {"orig_filename": "Teisseyre_Karol-Wawrzyniec_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 232", "author": "", "orig_id": 2208573}}, {"model": "metainfo.source", "pk": 657, "fields": {"orig_filename": "Telcs_Ede_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 232f.", "author": "", "orig_id": 1424599}}, {"model": "metainfo.source", "pk": 658, "fields": {"orig_filename": "Teleki-Szek_Blanka_1806_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 233f.", "author": "", "orig_id": 1424675}}, {"model": "metainfo.source", "pk": 659, "fields": {"orig_filename": "Teleki-Szek_Jozsef_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 234", "author": "", "orig_id": 1424633}}, {"model": "metainfo.source", "pk": 660, "fields": {"orig_filename": "Teleki-Szek_Juliska_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 234", "author": "", "orig_id": 1424634}}, {"model": "metainfo.source", "pk": 661, "fields": {"orig_filename": "Teleki-Szek_Laszlo_1764_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 235", "author": "", "orig_id": 1424635}}, {"model": "metainfo.source", "pk": 662, "fields": {"orig_filename": "Teleki-Szek_Laszlo_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135f.", "author": "", "orig_id": 1424679}}, {"model": "metainfo.source", "pk": 663, "fields": {"orig_filename": "Teleki-Szek_Pal_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 236f.", "author": "", "orig_id": 1424029}}, {"model": "metainfo.source", "pk": 664, "fields": {"orig_filename": "Teleki-Szek_Samuel_1739_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 237", "author": "", "orig_id": 1452681}}, {"model": "metainfo.source", "pk": 665, "fields": {"orig_filename": "Teleki-Szek_Samuel_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 238", "author": "", "orig_id": 1424024}}, {"model": "metainfo.source", "pk": 666, "fields": {"orig_filename": "Teleki-Szek_Sandor_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 238f.", "author": "", "orig_id": 1452612}}, {"model": "metainfo.source", "pk": 667, "fields": {"orig_filename": "Telepy_Gyoergy_1800_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 239f.", "author": "", "orig_id": 1452737}}, {"model": "metainfo.source", "pk": 668, "fields": {"orig_filename": "Telepy_Karoly_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 240", "author": "", "orig_id": 1424030}}, {"model": "metainfo.source", "pk": 669, "fields": {"orig_filename": "Telfner_Josef_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 240", "author": "", "orig_id": 1424032}}, {"model": "metainfo.source", "pk": 670, "fields": {"orig_filename": "Telfy_Ivan_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241", "author": "", "orig_id": 1452739}}, {"model": "metainfo.source", "pk": 671, "fields": {"orig_filename": "Teller_Alfred_1881_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241f.", "author": "", "orig_id": 2162627}}, {"model": "metainfo.source", "pk": 672, "fields": {"orig_filename": "Teller_Friedrich_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 242f.", "author": "", "orig_id": 1424038}}, {"model": "metainfo.source", "pk": 673, "fields": {"orig_filename": "Telle_Carl_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241", "author": "", "orig_id": 1424035}}, {"model": "metainfo.source", "pk": 674, "fields": {"orig_filename": "Telmann_Fritz_1873_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 243", "author": "", "orig_id": 1424075}}, {"model": "metainfo.source", "pk": 675, "fields": {"orig_filename": "Teltscher_Josef-Eduard_1801_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 243f.", "author": "", "orig_id": 1424077}}, {"model": "metainfo.source", "pk": 676, "fields": {"orig_filename": "Temesvary_Rezsoe_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 244", "author": "", "orig_id": 1454705}}, {"model": "metainfo.source", "pk": 677, "fields": {"orig_filename": "Temple_Hans_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 244f.", "author": "", "orig_id": 1424087}}, {"model": "metainfo.source", "pk": 678, "fields": {"orig_filename": "Tempsky_Karl-Friedrich-Rudolph_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 245f.", "author": "", "orig_id": 1424121}}, {"model": "metainfo.source", "pk": 679, "fields": {"orig_filename": "Tencer_Pal_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 246", "author": "", "orig_id": 1454707}}, {"model": "metainfo.source", "pk": 680, "fields": {"orig_filename": "Tendler_Franz_1790_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 246f.", "author": "", "orig_id": 1828342}}, {"model": "metainfo.source", "pk": 681, "fields": {"orig_filename": "Tendler_Franz_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 247", "author": "", "orig_id": 1424124}}, {"model": "metainfo.source", "pk": 682, "fields": {"orig_filename": "Tendler_Johann-Max_1811_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 248", "author": "", "orig_id": 1424125}}, {"model": "metainfo.source", "pk": 683, "fields": {"orig_filename": "Tendler_Johann-Patriz_1777_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 247f.", "author": "", "orig_id": 1447379}}, {"model": "metainfo.source", "pk": 684, "fields": {"orig_filename": "Tendler_Mathias_1753_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 248f.", "author": "", "orig_id": 1424130}}, {"model": "metainfo.source", "pk": 685, "fields": {"orig_filename": "Tengler_Theodor_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 249", "author": "", "orig_id": 2189010}}, {"model": "metainfo.source", "pk": 686, "fields": {"orig_filename": "Tennenbaum_Ludwig_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 249f.", "author": "", "orig_id": 1424164}}, {"model": "metainfo.source", "pk": 687, "fields": {"orig_filename": "Teodorowicz_Jozef-Teofil_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 250", "author": "", "orig_id": 1424180}}, {"model": "metainfo.source", "pk": 688, "fields": {"orig_filename": "Teply_Frantisek_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 251f.", "author": "", "orig_id": 2173349}}, {"model": "metainfo.source", "pk": 689, "fields": {"orig_filename": "Terc_Filip_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 252f.", "author": "", "orig_id": 2141244}}, {"model": "metainfo.source", "pk": 690, "fields": {"orig_filename": "Terey_Gabor_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 253", "author": "", "orig_id": 1424223}}, {"model": "metainfo.source", "pk": 691, "fields": {"orig_filename": "Terpinc_Fidelis_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 253f.", "author": "", "orig_id": 1424265}}, {"model": "metainfo.source", "pk": 692, "fields": {"orig_filename": "Terschak_Emil_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 254f.", "author": "", "orig_id": 1424268}}, {"model": "metainfo.source", "pk": 693, "fields": {"orig_filename": "Szentgyoergyi_Istvan_1842_1931.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1456743}}, {"model": "metainfo.source", "pk": 694, "fields": {"orig_filename": "Szentirmay_Elemer_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145", "author": "", "orig_id": 1459184}}, {"model": "metainfo.source", "pk": 695, "fields": {"orig_filename": "Szentkereszti-Zagon_Sigmund_1745_1823.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435288}}, {"model": "metainfo.source", "pk": 696, "fields": {"orig_filename": "Szentkiralyi-Komjatszegi_Akos_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145f.", "author": "", "orig_id": 1459185}}, {"model": "metainfo.source", "pk": 697, "fields": {"orig_filename": "Szentkiralyi-Komjatszegi_Zsigmond_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145f.", "author": "", "orig_id": 2134411}}, {"model": "metainfo.source", "pk": 698, "fields": {"orig_filename": "Szentpeteri_Jozsef_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 146", "author": "", "orig_id": 1435349}}, {"model": "metainfo.source", "pk": 699, "fields": {"orig_filename": "Szentpetery-Sajoszentpeter_Zsigmond_1798_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 146f.", "author": "", "orig_id": 1459188}}, {"model": "metainfo.source", "pk": 700, "fields": {"orig_filename": "Szeparowicz_Johann_1843_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 147", "author": "", "orig_id": 2170466}}, {"model": "metainfo.source", "pk": 701, "fields": {"orig_filename": "Szepesy_Ignac_1780_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 147f.", "author": "", "orig_id": 1434553}}, {"model": "metainfo.source", "pk": 702, "fields": {"orig_filename": "Szeps_Julius_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 148", "author": "", "orig_id": 1434560}}, {"model": "metainfo.source", "pk": 703, "fields": {"orig_filename": "Szeps_Moritz_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 148f.", "author": "", "orig_id": 1434563}}, {"model": "metainfo.source", "pk": 704, "fields": {"orig_filename": "Szeptycki-Szeptyce_Andrej_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 149f.", "author": "", "orig_id": 1434601}}, {"model": "metainfo.source", "pk": 705, "fields": {"orig_filename": "Szeptycki-Szeptyce_Jan-Kanty_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2199910}}, {"model": "metainfo.source", "pk": 706, "fields": {"orig_filename": "Szeptycki-Szeptyce_Klemens_1869_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2159182}}, {"model": "metainfo.source", "pk": 707, "fields": {"orig_filename": "Szeptycki-Szeptyce_Stanislaw_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 151", "author": "", "orig_id": 1434602}}, {"model": "metainfo.source", "pk": 708, "fields": {"orig_filename": "Szerb_Antal_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2081817}}, {"model": "metainfo.source", "pk": 709, "fields": {"orig_filename": "Szerdahelyi_Jozsef_1804_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 151f.", "author": "", "orig_id": 1434606}}, {"model": "metainfo.source", "pk": 710, "fields": {"orig_filename": "Szerdahelyi_Kalman_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 152", "author": "", "orig_id": 1434603}}, {"model": "metainfo.source", "pk": 711, "fields": {"orig_filename": "Szerelmey_Miklos_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 152f.", "author": "", "orig_id": 1434612}}, {"model": "metainfo.source", "pk": 712, "fields": {"orig_filename": "Szigeti_Imre_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1459250}}, {"model": "metainfo.source", "pk": 713, "fields": {"orig_filename": "Szigeti_Jolan_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1456899}}, {"model": "metainfo.source", "pk": 714, "fields": {"orig_filename": "Szigeti_Jozsef_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1434666}}, {"model": "metainfo.source", "pk": 715, "fields": {"orig_filename": "Szika_Jani_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154f.", "author": "", "orig_id": 1434718}}, {"model": "metainfo.source", "pk": 716, "fields": {"orig_filename": "Szilagyi-Szilagysomlo-Horogszegh_Lilla_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 157f.", "author": "", "orig_id": 1459252}}, {"model": "metainfo.source", "pk": 717, "fields": {"orig_filename": "Szilagyi-Szilagysomlo-Horogszegh_Pal_1793_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 157f.", "author": "", "orig_id": 1434827}}, {"model": "metainfo.source", "pk": 718, "fields": {"orig_filename": "Szilagyi_Dezsoe_1840_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 155f.", "author": "", "orig_id": 1434668}}, {"model": "metainfo.source", "pk": 719, "fields": {"orig_filename": "Szilagyi_Ete_1844_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 155f.", "author": "", "orig_id": 1459261}}, {"model": "metainfo.source", "pk": 720, "fields": {"orig_filename": "Szilagyi_Ferenc_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156", "author": "", "orig_id": 1434768}}, {"model": "metainfo.source", "pk": 721, "fields": {"orig_filename": "Szilagyi_Ferenc_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156", "author": "", "orig_id": 1434770}}, {"model": "metainfo.source", "pk": 722, "fields": {"orig_filename": "Szilagyi_Sandor_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156f.", "author": "", "orig_id": 1434763}}, {"model": "metainfo.source", "pk": 723, "fields": {"orig_filename": "Szilasy_Janos_1795_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158", "author": "", "orig_id": 1434836}}, {"model": "metainfo.source", "pk": 724, "fields": {"orig_filename": "Szily-Nagyszigeth_Kalman_1838_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 159f.", "author": "", "orig_id": 1434960}}, {"model": "metainfo.source", "pk": 725, "fields": {"orig_filename": "Szily-Szilsarkany_Adolf_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 160", "author": "", "orig_id": 1434894}}, {"model": "metainfo.source", "pk": 726, "fields": {"orig_filename": "Szily_Aurel_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158f.", "author": "", "orig_id": 1434898}}, {"model": "metainfo.source", "pk": 727, "fields": {"orig_filename": "Szily_Pal_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158f.", "author": "", "orig_id": 2154427}}, {"model": "metainfo.source", "pk": 728, "fields": {"orig_filename": "Szinnyei_Ferenc_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161", "author": "", "orig_id": 2163355}}, {"model": "metainfo.source", "pk": 729, "fields": {"orig_filename": "Szinnyei_Jozsef_1830_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 160f.", "author": "", "orig_id": 1434968}}, {"model": "metainfo.source", "pk": 730, "fields": {"orig_filename": "Szinnyei_Jozsef_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161", "author": "", "orig_id": 1434969}}, {"model": "metainfo.source", "pk": 731, "fields": {"orig_filename": "Szinyei-Merse_Pal_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161f.", "author": "", "orig_id": 1434971}}, {"model": "metainfo.source", "pk": 732, "fields": {"orig_filename": "Szkalnitzky_Antal_1836_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 162f.", "author": "", "orig_id": 1435037}}, {"model": "metainfo.source", "pk": 733, "fields": {"orig_filename": "Szlavy-Erkenez-Okany_Jozsef_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 163f.", "author": "", "orig_id": 1435047}}, {"model": "metainfo.source", "pk": 734, "fields": {"orig_filename": "Szmrecsanyi_Lajos_1851_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164", "author": "", "orig_id": 1457146}}, {"model": "metainfo.source", "pk": 735, "fields": {"orig_filename": "Szmrecsanyi_Pal_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164", "author": "", "orig_id": 1435108}}, {"model": "metainfo.source", "pk": 736, "fields": {"orig_filename": "Szoboszlai-Pap_Istvan_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164f.", "author": "", "orig_id": 1435113}}, {"model": "metainfo.source", "pk": 737, "fields": {"orig_filename": "Szoedy_Szilard_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 165", "author": "", "orig_id": 1432895}}, {"model": "metainfo.source", "pk": 738, "fields": {"orig_filename": "Szoegyeny-Magyarszoegyen_Zsigmond_1775_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 166f.", "author": "", "orig_id": 1435123}}, {"model": "metainfo.source", "pk": 739, "fields": {"orig_filename": "Szoegyeny-Marich-Magyarszoegyen-Szolgaegyhaza_Laszlo_1806_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 165ff.", "author": "", "orig_id": 1435121}}, {"model": "metainfo.source", "pk": 740, "fields": {"orig_filename": "Szoegyeny-Marich-Magyarszoegyen-Szolgaegyhaza_Laszlo_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 167", "author": "", "orig_id": 1435167}}, {"model": "metainfo.source", "pk": 741, "fields": {"orig_filename": "Szoelloesy-Szabo_Lajos_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 167f.", "author": "", "orig_id": 1435174}}, {"model": "metainfo.source", "pk": 742, "fields": {"orig_filename": "Szoelloesy-Szabo_Roza_1841_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 168", "author": "", "orig_id": 2252336}}, {"model": "metainfo.source", "pk": 743, "fields": {"orig_filename": "Szoenyi_Otto_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 168f.", "author": "", "orig_id": 1435177}}, {"model": "metainfo.source", "pk": 744, "fields": {"orig_filename": "Szoldatits_Ferenc_1820_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 169", "author": "", "orig_id": 1435181}}, {"model": "metainfo.source", "pk": 745, "fields": {"orig_filename": "Szold_Benjamin_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1437733}}, {"model": "metainfo.source", "pk": 746, "fields": {"orig_filename": "Szombathy_Josef_1853_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 169f.", "author": "", "orig_id": 1435419}}, {"model": "metainfo.source", "pk": 747, "fields": {"orig_filename": "Szomory_Dezsoe_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 170", "author": "", "orig_id": 2194367}}, {"model": "metainfo.source", "pk": 748, "fields": {"orig_filename": "Szontagh-Iglo-Zabar_Abraham_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 172f.", "author": "", "orig_id": 1435425}}, {"model": "metainfo.source", "pk": 749, "fields": {"orig_filename": "Szontagh-Iglo-Zabar_Pal_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 173", "author": "", "orig_id": 1457151}}, {"model": "metainfo.source", "pk": 750, "fields": {"orig_filename": "Szontagh-Iglo_Gusztav-Adolf_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 170f.", "author": "", "orig_id": 1435429}}, {"model": "metainfo.source", "pk": 751, "fields": {"orig_filename": "Szontagh-Iglo_Miklos_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 171f.", "author": "", "orig_id": 1435430}}, {"model": "metainfo.source", "pk": 752, "fields": {"orig_filename": "Szontagh-Iglo_Tamas_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 172", "author": "", "orig_id": 1457152}}, {"model": "metainfo.source", "pk": 753, "fields": {"orig_filename": "Sztavjanik_Gustav_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 173f.", "author": "", "orig_id": 1427136}}, {"model": "metainfo.source", "pk": 754, "fields": {"orig_filename": "Szterenyi-Brasso_Jozsef_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 174f.", "author": "", "orig_id": 1434791}}, {"model": "metainfo.source", "pk": 755, "fields": {"orig_filename": "Szterenyi_Hugo_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 174", "author": "", "orig_id": 1437734}}, {"model": "metainfo.source", "pk": 756, "fields": {"orig_filename": "Sztoczek_Jozsef_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 175", "author": "", "orig_id": 1434793}}, {"model": "metainfo.source", "pk": 757, "fields": {"orig_filename": "Sztupa_Andor_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 175f.", "author": "", "orig_id": 2180773}}, {"model": "metainfo.source", "pk": 758, "fields": {"orig_filename": "Szujski_Jozef_1835_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 176", "author": "", "orig_id": 1435133}}, {"model": "metainfo.source", "pk": 759, "fields": {"orig_filename": "Szulislawski_Adam_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 176f.", "author": "", "orig_id": 2194357}}, {"model": "metainfo.source", "pk": 760, "fields": {"orig_filename": "Szuper_Karoly_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 177", "author": "", "orig_id": 1457963}}, {"model": "metainfo.source", "pk": 761, "fields": {"orig_filename": "Szuppan_Zsigmond_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 177f.", "author": "", "orig_id": 1435138}}, {"model": "metainfo.source", "pk": 762, "fields": {"orig_filename": "Szvorenyi_Jozsef_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178f.", "author": "", "orig_id": 1435185}}, {"model": "metainfo.source", "pk": 763, "fields": {"orig_filename": "Szymonowicz_Grzegorz-Michal_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 179f.", "author": "", "orig_id": 1435189}}, {"model": "metainfo.source", "pk": 764, "fields": {"orig_filename": "Szymonowicz_Jan-Jakub_1740_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 179f.", "author": "", "orig_id": 1435192}}, {"model": "metainfo.source", "pk": 765, "fields": {"orig_filename": "Szymonowicz_Wladyslaw_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 180", "author": "", "orig_id": 2189328}}, {"model": "metainfo.source", "pk": 766, "fields": {"orig_filename": "Szyszylowicz_Ignaz_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 180f.", "author": "", "orig_id": 2141207}}, {"model": "metainfo.source", "pk": 767, "fields": {"orig_filename": "Taaffe_Eduard-Franz-Joseph_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 181f.", "author": "", "orig_id": 1422721}}, {"model": "metainfo.source", "pk": 768, "fields": {"orig_filename": "Taaffe_Ludwig-Patrick-Johannes_1791_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 182f.", "author": "", "orig_id": 1422724}}, {"model": "metainfo.source", "pk": 769, "fields": {"orig_filename": "Tabacchi_Odoardo_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 183", "author": "", "orig_id": 2133986}}, {"model": "metainfo.source", "pk": 770, "fields": {"orig_filename": "Taborsky_Frantisek_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 183f.", "author": "", "orig_id": 1422772}}, {"model": "metainfo.source", "pk": 771, "fields": {"orig_filename": "Taenzer_Aron-Arnold_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 185", "author": "", "orig_id": 1422391}}, {"model": "metainfo.source", "pk": 772, "fields": {"orig_filename": "Taganyi_Karoly_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 186f.", "author": "", "orig_id": 1457972}}, {"model": "metainfo.source", "pk": 773, "fields": {"orig_filename": "Taglang_Hugo_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 187f.", "author": "", "orig_id": 1422511}}, {"model": "metainfo.source", "pk": 774, "fields": {"orig_filename": "Taglicht_Israel_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188", "author": "", "orig_id": 1422513}}, {"model": "metainfo.source", "pk": 775, "fields": {"orig_filename": "Taglioni_Filippo_1777_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188f.", "author": "", "orig_id": 1452382}}, {"model": "metainfo.source", "pk": 776, "fields": {"orig_filename": "Taglioni_Marie_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188f.", "author": "", "orig_id": 1422516}}, {"model": "metainfo.source", "pk": 777, "fields": {"orig_filename": "Taglioni_Marie_1833_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 1422536}}, {"model": "metainfo.source", "pk": 778, "fields": {"orig_filename": "Taglioni_Paul_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 1422535}}, {"model": "metainfo.source", "pk": 779, "fields": {"orig_filename": "Taglioni_Salvatore_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 2252495}}, {"model": "metainfo.source", "pk": 780, "fields": {"orig_filename": "Takacs_Menyhert-Ferenc_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189f.", "author": "", "orig_id": 1457974}}, {"model": "metainfo.source", "pk": 781, "fields": {"orig_filename": "Talatzko-Gestieticz_Johann-Adam_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 191", "author": "", "orig_id": 1422576}}, {"model": "metainfo.source", "pk": 782, "fields": {"orig_filename": "Tallyai_Daniel_1760_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 191f.", "author": "", "orig_id": 1458043}}, {"model": "metainfo.source", "pk": 783, "fields": {"orig_filename": "Talowski_Teodor-Marian_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 192", "author": "", "orig_id": 1422580}}, {"model": "metainfo.source", "pk": 784, "fields": {"orig_filename": "Tal_Ernst-Peter_1888_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 190f.", "author": "", "orig_id": 1422570}}, {"model": "metainfo.source", "pk": 785, "fields": {"orig_filename": "Tamasy-Fogaras_Arpad_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 192f.", "author": "", "orig_id": 1422607}}, {"model": "metainfo.source", "pk": 786, "fields": {"orig_filename": "Tancsics_Mihaly_1799_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 193", "author": "", "orig_id": 1422734}}, {"model": "metainfo.source", "pk": 787, "fields": {"orig_filename": "Tandler-Tanningen_Joseph-Franz_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 194", "author": "", "orig_id": 1422657}}, {"model": "metainfo.source", "pk": 788, "fields": {"orig_filename": "Tandler_Josef-Jakub_1765_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 193f.", "author": "", "orig_id": 1422654}}, {"model": "metainfo.source", "pk": 789, "fields": {"orig_filename": "Tandler_Julius_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 194f.", "author": "", "orig_id": 1422655}}, {"model": "metainfo.source", "pk": 790, "fields": {"orig_filename": "Tandor_Otto_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 195", "author": "", "orig_id": 1458049}}, {"model": "metainfo.source", "pk": 791, "fields": {"orig_filename": "Syniewski_Wiktor_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 94f.", "author": "", "orig_id": 1435820}}, {"model": "metainfo.source", "pk": 792, "fields": {"orig_filename": "Syroczynski_Leon_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 95f.", "author": "", "orig_id": 2137621}}, {"model": "metainfo.source", "pk": 793, "fields": {"orig_filename": "Syrski_Szymon-Adam_1829_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 96", "author": "", "orig_id": 2027088}}, {"model": "metainfo.source", "pk": 794, "fields": {"orig_filename": "Sytko_Josef_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436012}}, {"model": "metainfo.source", "pk": 795, "fields": {"orig_filename": "Szablik_Istvan_1746_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 96f.", "author": "", "orig_id": 1455284}}, {"model": "metainfo.source", "pk": 796, "fields": {"orig_filename": "Szablya-Frischauf_Ernesztin_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 97", "author": "", "orig_id": 1433211}}, {"model": "metainfo.source", "pk": 797, "fields": {"orig_filename": "Szabo-Kisgeresd_Imre_1820_1865.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436131}}, {"model": "metainfo.source", "pk": 798, "fields": {"orig_filename": "Szaboky_Adolph_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 102f.", "author": "", "orig_id": 1435720}}, {"model": "metainfo.source", "pk": 799, "fields": {"orig_filename": "Szabolcsi_Max_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 103", "author": "", "orig_id": 1455354}}, {"model": "metainfo.source", "pk": 800, "fields": {"orig_filename": "Szabolcska_Mihaly_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 103f.", "author": "", "orig_id": 1455356}}, {"model": "metainfo.source", "pk": 801, "fields": {"orig_filename": "Szabo_Alajos_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 97f.", "author": "", "orig_id": 1436116}}, {"model": "metainfo.source", "pk": 802, "fields": {"orig_filename": "Szabo_Basilius_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 98", "author": "", "orig_id": 1436120}}, {"model": "metainfo.source", "pk": 803, "fields": {"orig_filename": "Szabo_Denes_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 101", "author": "", "orig_id": 1455289}}, {"model": "metainfo.source", "pk": 804, "fields": {"orig_filename": "Szabo_Dezsoe_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 98f.", "author": "", "orig_id": 1436126}}, {"model": "metainfo.source", "pk": 805, "fields": {"orig_filename": "Szabo_Ignacz_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436181}}, {"model": "metainfo.source", "pk": 806, "fields": {"orig_filename": "Szabo_Istvan_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100", "author": "", "orig_id": 1436364}}, {"model": "metainfo.source", "pk": 807, "fields": {"orig_filename": "Szabo_Jozsef_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100", "author": "", "orig_id": 1457039}}, {"model": "metainfo.source", "pk": 808, "fields": {"orig_filename": "Szabo_Jozsef_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100f.", "author": "", "orig_id": 1435679}}, {"model": "metainfo.source", "pk": 809, "fields": {"orig_filename": "Szabo_Karoly_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 101f.", "author": "", "orig_id": 1436421}}, {"model": "metainfo.source", "pk": 810, "fields": {"orig_filename": "Szabo_Xaver-Ferenc_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1457450}}, {"model": "metainfo.source", "pk": 811, "fields": {"orig_filename": "Szacsvay-Esztelnek_Imre_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 104f.", "author": "", "orig_id": 1455359}}, {"model": "metainfo.source", "pk": 812, "fields": {"orig_filename": "Szacsvay_Sandor_1752_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 104", "author": "", "orig_id": 1455358}}, {"model": "metainfo.source", "pk": 813, "fields": {"orig_filename": "Szadeczky-Kardoss_Gyula_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 105f.", "author": "", "orig_id": 1457456}}, {"model": "metainfo.source", "pk": 814, "fields": {"orig_filename": "Szadeczky-Kardoss_Lajos_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106", "author": "", "orig_id": 1458906}}, {"model": "metainfo.source", "pk": 815, "fields": {"orig_filename": "Szajbely_Henrik_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106", "author": "", "orig_id": 1435338}}, {"model": "metainfo.source", "pk": 816, "fields": {"orig_filename": "Szajnocha_Karol_1818_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106f.", "author": "", "orig_id": 1435784}}, {"model": "metainfo.source", "pk": 817, "fields": {"orig_filename": "Szajnocha_Wladyslaw_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 107f.", "author": "", "orig_id": 1435786}}, {"model": "metainfo.source", "pk": 818, "fields": {"orig_filename": "Szalai_Istvan_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 108", "author": "", "orig_id": 1434932}}, {"model": "metainfo.source", "pk": 819, "fields": {"orig_filename": "Szalardi_Mor_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 108f.", "author": "", "orig_id": 1435840}}, {"model": "metainfo.source", "pk": 820, "fields": {"orig_filename": "Szalay-Kemend_Imre_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 110f.", "author": "", "orig_id": 1434928}}, {"model": "metainfo.source", "pk": 821, "fields": {"orig_filename": "Szalay-Kemend_Laszlo_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 111", "author": "", "orig_id": 1434936}}, {"model": "metainfo.source", "pk": 822, "fields": {"orig_filename": "Szalay_Fruzina_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109", "author": "", "orig_id": 1457477}}, {"model": "metainfo.source", "pk": 823, "fields": {"orig_filename": "Szalay_Imre_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109f.", "author": "", "orig_id": 1434931}}, {"model": "metainfo.source", "pk": 824, "fields": {"orig_filename": "Szalay_Peter_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 110", "author": "", "orig_id": 1426792}}, {"model": "metainfo.source", "pk": 825, "fields": {"orig_filename": "Szale_Istvan_1818_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 111f.", "author": "", "orig_id": 1434939}}, {"model": "metainfo.source", "pk": 826, "fields": {"orig_filename": "Szale_Janos_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 112", "author": "", "orig_id": 1433274}}, {"model": "metainfo.source", "pk": 827, "fields": {"orig_filename": "Szamossy_Elek_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113", "author": "", "orig_id": 1435902}}, {"model": "metainfo.source", "pk": 828, "fields": {"orig_filename": "Szamossy_Laszlo_1866_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113", "author": "", "orig_id": 1433208}}, {"model": "metainfo.source", "pk": 829, "fields": {"orig_filename": "Szam_Geza_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 112f.", "author": "", "orig_id": 1457562}}, {"model": "metainfo.source", "pk": 830, "fields": {"orig_filename": "Szana_Tamas_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113f.", "author": "", "orig_id": 1435007}}, {"model": "metainfo.source", "pk": 831, "fields": {"orig_filename": "Szanto_Emil_1857_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 114", "author": "", "orig_id": 1435016}}, {"model": "metainfo.source", "pk": 832, "fields": {"orig_filename": "Szanto_Menyhert_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 114f.", "author": "", "orig_id": 1457630}}, {"model": "metainfo.source", "pk": 833, "fields": {"orig_filename": "Szanto_Simon_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 115", "author": "", "orig_id": 1435074}}, {"model": "metainfo.source", "pk": 834, "fields": {"orig_filename": "Szanto_Theodor_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 115f.", "author": "", "orig_id": 1435075}}, {"model": "metainfo.source", "pk": 835, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Franz_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 116", "author": "", "orig_id": 1435079}}, {"model": "metainfo.source", "pk": 836, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Gyula_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 116f.", "author": "", "orig_id": 1435329}}, {"model": "metainfo.source", "pk": 837, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Ladislaus_1831_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 117f.", "author": "", "orig_id": 1435269}}, {"model": "metainfo.source", "pk": 838, "fields": {"orig_filename": "Szaraniewicz_Izydor_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 118", "author": "", "orig_id": 1435332}}, {"model": "metainfo.source", "pk": 839, "fields": {"orig_filename": "Szarvady_Frigyes_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435335}}, {"model": "metainfo.source", "pk": 840, "fields": {"orig_filename": "Szarvassy_Arthur_1873_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 120", "author": "", "orig_id": 1435336}}, {"model": "metainfo.source", "pk": 841, "fields": {"orig_filename": "Szarvas_Gabor_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 119f.", "author": "", "orig_id": 1458986}}, {"model": "metainfo.source", "pk": 842, "fields": {"orig_filename": "Szaster_Antoni_1759_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 120f.", "author": "", "orig_id": 1435339}}, {"model": "metainfo.source", "pk": 843, "fields": {"orig_filename": "Szaster_Wincenty_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121", "author": "", "orig_id": 2162661}}, {"model": "metainfo.source", "pk": 844, "fields": {"orig_filename": "Szasz-Szemerja_Bela_1840_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121f.", "author": "", "orig_id": 1458987}}, {"model": "metainfo.source", "pk": 845, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1798_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122", "author": "", "orig_id": 1435390}}, {"model": "metainfo.source", "pk": 846, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122f.", "author": "", "orig_id": 1435391}}, {"model": "metainfo.source", "pk": 847, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 123", "author": "", "orig_id": 1435392}}, {"model": "metainfo.source", "pk": 848, "fields": {"orig_filename": "Szasz-Szemerja_Polixenia_1831_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122f.", "author": "", "orig_id": 1458990}}, {"model": "metainfo.source", "pk": 849, "fields": {"orig_filename": "Szaszy-Szasz_Bela_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 123f.", "author": "", "orig_id": 1457717}}, {"model": "metainfo.source", "pk": 850, "fields": {"orig_filename": "Szasz_Gyula_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121", "author": "", "orig_id": 1435389}}, {"model": "metainfo.source", "pk": 851, "fields": {"orig_filename": "Szathmary-Laczkoczy_Lujza_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 125", "author": "", "orig_id": 1435447}}, {"model": "metainfo.source", "pk": 852, "fields": {"orig_filename": "Szathmary_Pap-Karoly_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 124f.", "author": "", "orig_id": 1435405}}, {"model": "metainfo.source", "pk": 853, "fields": {"orig_filename": "Szatmari_Mor_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 125f.", "author": "", "orig_id": 1454510}}, {"model": "metainfo.source", "pk": 854, "fields": {"orig_filename": "Szczepanik_Jan_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 126f.", "author": "", "orig_id": 1434636}}, {"model": "metainfo.source", "pk": 855, "fields": {"orig_filename": "Szczepanowski_Stanislaw-Ignacy_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 127f.", "author": "", "orig_id": 1434641}}, {"model": "metainfo.source", "pk": 856, "fields": {"orig_filename": "Szczepanski_Wladislaw_1877_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128", "author": "", "orig_id": 1434644}}, {"model": "metainfo.source", "pk": 857, "fields": {"orig_filename": "Szczucki_Wincenty_1786_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128", "author": "", "orig_id": 1434646}}, {"model": "metainfo.source", "pk": 858, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Bela_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128f.", "author": "", "orig_id": 1426683}}, {"model": "metainfo.source", "pk": 859, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Ferenc_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 129f.", "author": "", "orig_id": 1434813}}, {"model": "metainfo.source", "pk": 860, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Gyula_1829_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434819}}, {"model": "metainfo.source", "pk": 861, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Imre_1825_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 130", "author": "", "orig_id": 1434876}}, {"model": "metainfo.source", "pk": 862, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Istvan_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 131f.", "author": "", "orig_id": 1434816}}, {"model": "metainfo.source", "pk": 863, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Lajos_1781_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 130", "author": "", "orig_id": 1434822}}, {"model": "metainfo.source", "pk": 864, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Lajos_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434873}}, {"model": "metainfo.source", "pk": 865, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Pal_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 132", "author": "", "orig_id": 1457730}}, {"model": "metainfo.source", "pk": 866, "fields": {"orig_filename": "Szecsen-Temerin_Antal_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 132f.", "author": "", "orig_id": 1434884}}, {"model": "metainfo.source", "pk": 867, "fields": {"orig_filename": "Szecsen-Temerin_Miklos_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 133f.", "author": "", "orig_id": 1434886}}, {"model": "metainfo.source", "pk": 868, "fields": {"orig_filename": "Szecsi_Antal_1856_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 134", "author": "", "orig_id": 1434887}}, {"model": "metainfo.source", "pk": 869, "fields": {"orig_filename": "Szekely-Adamos_Agoston_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 136", "author": "", "orig_id": 1434954}}, {"model": "metainfo.source", "pk": 870, "fields": {"orig_filename": "Szekely-Adamos_Bertalan_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135f.", "author": "", "orig_id": 1435027}}, {"model": "metainfo.source", "pk": 871, "fields": {"orig_filename": "Szekely_Ferenc_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 134f.", "author": "", "orig_id": 1434959}}, {"model": "metainfo.source", "pk": 872, "fields": {"orig_filename": "Szekely_Josef_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135", "author": "", "orig_id": 1435021}}, {"model": "metainfo.source", "pk": 873, "fields": {"orig_filename": "Szekrenyessy-Szekelyhid-Kemer_Kalman_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 136f.", "author": "", "orig_id": 1459099}}, {"model": "metainfo.source", "pk": 874, "fields": {"orig_filename": "Szekula_Mor_1839_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137", "author": "", "orig_id": 1435896}}, {"model": "metainfo.source", "pk": 875, "fields": {"orig_filename": "Szelestey_Laszlo_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137", "author": "", "orig_id": 1435094}}, {"model": "metainfo.source", "pk": 876, "fields": {"orig_filename": "Szell-Duka-Szentgyoergyvoelgy_Kalman_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137f.", "author": "", "orig_id": 1435098}}, {"model": "metainfo.source", "pk": 877, "fields": {"orig_filename": "Szemere_Bertalan_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 138f.", "author": "", "orig_id": 1435104}}, {"model": "metainfo.source", "pk": 878, "fields": {"orig_filename": "Szemere_Krisztina_1792_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140", "author": "", "orig_id": 1459175}}, {"model": "metainfo.source", "pk": 879, "fields": {"orig_filename": "Szemere_Miklos_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 139", "author": "", "orig_id": 1435153}}, {"model": "metainfo.source", "pk": 880, "fields": {"orig_filename": "Szemere_Pal_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 139f.", "author": "", "orig_id": 1435155}}, {"model": "metainfo.source", "pk": 881, "fields": {"orig_filename": "Szemler_Mihaly_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140", "author": "", "orig_id": 1435162}}, {"model": "metainfo.source", "pk": 882, "fields": {"orig_filename": "Szenczy_Ferenc_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140f.", "author": "", "orig_id": 1435224}}, {"model": "metainfo.source", "pk": 883, "fields": {"orig_filename": "Szenczy_Imre-Jozsef_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 141", "author": "", "orig_id": 1435223}}, {"model": "metainfo.source", "pk": 884, "fields": {"orig_filename": "Szende-Keresztes_Bela_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 142", "author": "", "orig_id": 1435226}}, {"model": "metainfo.source", "pk": 885, "fields": {"orig_filename": "Szende_Pal_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 141f.", "author": "", "orig_id": 1435227}}, {"model": "metainfo.source", "pk": 886, "fields": {"orig_filename": "Szendrei-Mindszent_Janos_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 142f.", "author": "", "orig_id": 1459179}}, {"model": "metainfo.source", "pk": 887, "fields": {"orig_filename": "Szendy_Arpad_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 143f.", "author": "", "orig_id": 1459180}}, {"model": "metainfo.source", "pk": 888, "fields": {"orig_filename": "Szenes_Fueloep_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 144", "author": "", "orig_id": 1433018}}, {"model": "metainfo.source", "pk": 889, "fields": {"orig_filename": "Szent-Istvanyi_Gyula_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 144f.", "author": "", "orig_id": 1435298}}, {"model": "metainfo.source", "pk": 890, "fields": {"orig_filename": "Suman_Josip_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46f.", "author": "", "orig_id": 1435792}}, {"model": "metainfo.source", "pk": 891, "fields": {"orig_filename": "Sumec_Josef_1867_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 48", "author": "", "orig_id": 1435849}}, {"model": "metainfo.source", "pk": 892, "fields": {"orig_filename": "Sumin_Jiri_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 48f.", "author": "", "orig_id": 1472593}}, {"model": "metainfo.source", "pk": 893, "fields": {"orig_filename": "Sundecic_Jovan_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 49", "author": "", "orig_id": 1435917}}, {"model": "metainfo.source", "pk": 894, "fields": {"orig_filename": "Sunstenau-Schuetzenthal_Heinrich_1780_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 49f.", "author": "", "orig_id": 1435974}}, {"model": "metainfo.source", "pk": 895, "fields": {"orig_filename": "Supan_Alexander-Georg_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 51", "author": "", "orig_id": 1432211}}, {"model": "metainfo.source", "pk": 896, "fields": {"orig_filename": "Supilo_Frano_1870_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 51f.", "author": "", "orig_id": 1436271}}, {"model": "metainfo.source", "pk": 897, "fields": {"orig_filename": "Supljikac-Vitez_Stevan_1786_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 52", "author": "", "orig_id": 1436281}}, {"model": "metainfo.source", "pk": 898, "fields": {"orig_filename": "Suppantschitsch_Johann-Anton_1785_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 54f.", "author": "", "orig_id": 1435491}}, {"model": "metainfo.source", "pk": 899, "fields": {"orig_filename": "Suppantschitsch_Richard_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 55", "author": "", "orig_id": 1937201}}, {"model": "metainfo.source", "pk": 900, "fields": {"orig_filename": "Suppantschitsch_Viktor_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 55f.", "author": "", "orig_id": 1435495}}, {"model": "metainfo.source", "pk": 901, "fields": {"orig_filename": "Suppan_Anna_1891_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436326}}, {"model": "metainfo.source", "pk": 902, "fields": {"orig_filename": "Suppan_Carl-Viktor_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 52f.", "author": "", "orig_id": 1436330}}, {"model": "metainfo.source", "pk": 903, "fields": {"orig_filename": "Suppan_Joachim_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 53", "author": "", "orig_id": 1436332}}, {"model": "metainfo.source", "pk": 904, "fields": {"orig_filename": "Suppan_Josef_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 53f.", "author": "", "orig_id": 1436213}}, {"model": "metainfo.source", "pk": 905, "fields": {"orig_filename": "Suppe_Franz_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 56f.", "author": "", "orig_id": 1432376}}, {"model": "metainfo.source", "pk": 906, "fields": {"orig_filename": "Sup_Prokop-Bartolomej_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 50f.", "author": "", "orig_id": 1435976}}, {"model": "metainfo.source", "pk": 907, "fields": {"orig_filename": "Suranyi_Janos_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435568}}, {"model": "metainfo.source", "pk": 908, "fields": {"orig_filename": "Surmin_Duro_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 57", "author": "", "orig_id": 1435569}}, {"model": "metainfo.source", "pk": 909, "fields": {"orig_filename": "Susan_Johann_1796_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 57f.", "author": "", "orig_id": 1435630}}, {"model": "metainfo.source", "pk": 910, "fields": {"orig_filename": "Suschitzky_Philipp_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 58", "author": "", "orig_id": 1454373}}, {"model": "metainfo.source", "pk": 911, "fields": {"orig_filename": "Suschitzky_Wilhelm_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 58f.", "author": "", "orig_id": 1432377}}, {"model": "metainfo.source", "pk": 912, "fields": {"orig_filename": "Susil_Frantisek_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 59", "author": "", "orig_id": 1435643}}, {"model": "metainfo.source", "pk": 913, "fields": {"orig_filename": "Suske_Ferdinand_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 59f.", "author": "", "orig_id": 1435695}}, {"model": "metainfo.source", "pk": 914, "fields": {"orig_filename": "Sussin_Mathilde_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 60", "author": "", "orig_id": 1449942}}, {"model": "metainfo.source", "pk": 915, "fields": {"orig_filename": "Susta_Josef_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 60f.", "author": "", "orig_id": 1435752}}, {"model": "metainfo.source", "pk": 916, "fields": {"orig_filename": "Susta_Josef_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 61f.", "author": "", "orig_id": 1435754}}, {"model": "metainfo.source", "pk": 917, "fields": {"orig_filename": "Susta_Vaclav_1871_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2145126}}, {"model": "metainfo.source", "pk": 918, "fields": {"orig_filename": "Sustek_Daniel_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435756}}, {"model": "metainfo.source", "pk": 919, "fields": {"orig_filename": "Sustersic_Ivan_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 62", "author": "", "orig_id": 1435765}}, {"model": "metainfo.source", "pk": 920, "fields": {"orig_filename": "Sust_Janez_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2152139}}, {"model": "metainfo.source", "pk": 921, "fields": {"orig_filename": "Sutnar_Jaroslav_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 62f.", "author": "", "orig_id": 1435809}}, {"model": "metainfo.source", "pk": 922, "fields": {"orig_filename": "Sutter_Joseph_1781_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 63", "author": "", "orig_id": 1435864}}, {"model": "metainfo.source", "pk": 923, "fields": {"orig_filename": "Suttner_Arthur-Gundaccar_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 63f.", "author": "", "orig_id": 1435868}}, {"model": "metainfo.source", "pk": 924, "fields": {"orig_filename": "Suttner_Bertha_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64f.", "author": "", "orig_id": 1431923}}, {"model": "metainfo.source", "pk": 925, "fields": {"orig_filename": "Suttner_Johann_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 65f.", "author": "", "orig_id": 1868058}}, {"model": "metainfo.source", "pk": 926, "fields": {"orig_filename": "Suttner_Karl-Gundaccar_1819_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64", "author": "", "orig_id": 1469416}}, {"model": "metainfo.source", "pk": 927, "fields": {"orig_filename": "Suttner_Marie-Louise_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64", "author": "", "orig_id": 1435928}}, {"model": "metainfo.source", "pk": 928, "fields": {"orig_filename": "Svab-Malostransky_Josef_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1437357}}, {"model": "metainfo.source", "pk": 929, "fields": {"orig_filename": "Svab_Karel_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2292637}}, {"model": "metainfo.source", "pk": 930, "fields": {"orig_filename": "Svaiczer_Gabor_1784_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 66", "author": "", "orig_id": 1436056}}, {"model": "metainfo.source", "pk": 931, "fields": {"orig_filename": "Svambera_Vaclav_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 66f.", "author": "", "orig_id": 1436058}}, {"model": "metainfo.source", "pk": 932, "fields": {"orig_filename": "Svanda-Semcic_Karel_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 67", "author": "", "orig_id": 1825501}}, {"model": "metainfo.source", "pk": 933, "fields": {"orig_filename": "Svanda-Semcic_Pavel_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 67f.", "author": "", "orig_id": 1436097}}, {"model": "metainfo.source", "pk": 934, "fields": {"orig_filename": "Svanda-Semcic_Pavel_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 2007184}}, {"model": "metainfo.source", "pk": 935, "fields": {"orig_filename": "Svatek_Josef-Jan_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 1436110}}, {"model": "metainfo.source", "pk": 936, "fields": {"orig_filename": "Svatek_Josef_1835_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 1436111}}, {"model": "metainfo.source", "pk": 937, "fields": {"orig_filename": "Svatova_Tereza_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68f.", "author": "", "orig_id": 1825456}}, {"model": "metainfo.source", "pk": 938, "fields": {"orig_filename": "Sveceny_Antonin_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 69", "author": "", "orig_id": 1436161}}, {"model": "metainfo.source", "pk": 939, "fields": {"orig_filename": "Svehla_Antonin_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 69f.", "author": "", "orig_id": 1436164}}, {"model": "metainfo.source", "pk": 940, "fields": {"orig_filename": "Svenda_Frantisek-De-Paula_1741_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 70", "author": "", "orig_id": 1436165}}, {"model": "metainfo.source", "pk": 941, "fields": {"orig_filename": "Svenk_Karel_1917_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436166}}, {"model": "metainfo.source", "pk": 942, "fields": {"orig_filename": "Svetec_Luka_1826_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71", "author": "", "orig_id": 1436171}}, {"model": "metainfo.source", "pk": 943, "fields": {"orig_filename": "Svetlin_Wilhelm_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71", "author": "", "orig_id": 1436179}}, {"model": "metainfo.source", "pk": 944, "fields": {"orig_filename": "Sviha_Karel_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71f.", "author": "", "orig_id": 1436220}}, {"model": "metainfo.source", "pk": 945, "fields": {"orig_filename": "Svitil_Johann_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 72", "author": "", "orig_id": 1436225}}, {"model": "metainfo.source", "pk": 946, "fields": {"orig_filename": "Svoboda_Adalbert_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 72f.", "author": "", "orig_id": 1436231}}, {"model": "metainfo.source", "pk": 947, "fields": {"orig_filename": "Svoboda_Anton-Dobroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 73f.", "author": "", "orig_id": 1436237}}, {"model": "metainfo.source", "pk": 948, "fields": {"orig_filename": "Svoboda_Frantisek-Jan_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 74", "author": "", "orig_id": 1436295}}, {"model": "metainfo.source", "pk": 949, "fields": {"orig_filename": "Svoboda_Frantisek-Xav_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 75", "author": "", "orig_id": 1436290}}, {"model": "metainfo.source", "pk": 950, "fields": {"orig_filename": "Svoboda_Jindrich_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 75f.", "author": "", "orig_id": 1436343}}, {"model": "metainfo.source", "pk": 951, "fields": {"orig_filename": "Svoboda_Johann_1803_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 73", "author": "", "orig_id": 1436344}}, {"model": "metainfo.source", "pk": 952, "fields": {"orig_filename": "Svoboda_Josef_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436349}}, {"model": "metainfo.source", "pk": 953, "fields": {"orig_filename": "Svoboda_Karl_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 76", "author": "", "orig_id": 1436397}}, {"model": "metainfo.source", "pk": 954, "fields": {"orig_filename": "Svoboda_Vaclav-Alois_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 76f.", "author": "", "orig_id": 1435513}}, {"model": "metainfo.source", "pk": 955, "fields": {"orig_filename": "Svoboda_Vaclav_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435511}}, {"model": "metainfo.source", "pk": 956, "fields": {"orig_filename": "Svobodova-Goldmannova_Frantiska_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 74", "author": "", "orig_id": 2169822}}, {"model": "metainfo.source", "pk": 957, "fields": {"orig_filename": "Svobodova_Ruzena_1868_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 77", "author": "", "orig_id": 1435509}}, {"model": "metainfo.source", "pk": 958, "fields": {"orig_filename": "Svozil_Josef_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 77f.", "author": "", "orig_id": 1435522}}, {"model": "metainfo.source", "pk": 959, "fields": {"orig_filename": "Swensson_Carl-Gustav_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 78f.", "author": "", "orig_id": 1435577}}, {"model": "metainfo.source", "pk": 960, "fields": {"orig_filename": "Swerts_Jan_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 79", "author": "", "orig_id": 1435578}}, {"model": "metainfo.source", "pk": 961, "fields": {"orig_filename": "Sweth_Kajetan_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 79f.", "author": "", "orig_id": 1435579}}, {"model": "metainfo.source", "pk": 962, "fields": {"orig_filename": "Swida_Franz_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 80", "author": "", "orig_id": 1440818}}, {"model": "metainfo.source", "pk": 963, "fields": {"orig_filename": "Swierkiewicz_Edward_1808_1875.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1447981}}, {"model": "metainfo.source", "pk": 964, "fields": {"orig_filename": "Swiezy_Ignaz_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 80f.", "author": "", "orig_id": 1435586}}, {"model": "metainfo.source", "pk": 965, "fields": {"orig_filename": "Swoboda_Adalbert-Constantin_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 81", "author": "", "orig_id": 1433206}}, {"model": "metainfo.source", "pk": 966, "fields": {"orig_filename": "Swoboda_Albin_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 81f.", "author": "", "orig_id": 1432917}}, {"model": "metainfo.source", "pk": 967, "fields": {"orig_filename": "Swoboda_August_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82f.", "author": "", "orig_id": 1436238}}, {"model": "metainfo.source", "pk": 968, "fields": {"orig_filename": "Swoboda_Eduard_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 83", "author": "", "orig_id": 1432379}}, {"model": "metainfo.source", "pk": 969, "fields": {"orig_filename": "Swoboda_Emerich-Alexius_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 83f.", "author": "", "orig_id": 1405674}}, {"model": "metainfo.source", "pk": 970, "fields": {"orig_filename": "Swoboda_Ernst_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 84f.", "author": "", "orig_id": 1436288}}, {"model": "metainfo.source", "pk": 971, "fields": {"orig_filename": "Swoboda_Franz_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 85", "author": "", "orig_id": 1436294}}, {"model": "metainfo.source", "pk": 972, "fields": {"orig_filename": "Swoboda_Friederike_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82", "author": "", "orig_id": 1450020}}, {"model": "metainfo.source", "pk": 973, "fields": {"orig_filename": "Swoboda_Heinrich_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 85f.", "author": "", "orig_id": 1436339}}, {"model": "metainfo.source", "pk": 974, "fields": {"orig_filename": "Swoboda_Heinrich_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 86", "author": "", "orig_id": 1436340}}, {"model": "metainfo.source", "pk": 975, "fields": {"orig_filename": "Swoboda_Josefine_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 87f.", "author": "", "orig_id": 1436396}}, {"model": "metainfo.source", "pk": 976, "fields": {"orig_filename": "Swoboda_Josef_1806_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 87", "author": "", "orig_id": 1436395}}, {"model": "metainfo.source", "pk": 977, "fields": {"orig_filename": "Swoboda_Karl_1882_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 88", "author": "", "orig_id": 1436398}}, {"model": "metainfo.source", "pk": 978, "fields": {"orig_filename": "Swoboda_Margarete_1872_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82", "author": "", "orig_id": 1436403}}, {"model": "metainfo.source", "pk": 979, "fields": {"orig_filename": "Swoboda_Rudolf_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 88f.", "author": "", "orig_id": 1435508}}, {"model": "metainfo.source", "pk": 980, "fields": {"orig_filename": "Swoboda_Rudolph_1819_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 89", "author": "", "orig_id": 1435507}}, {"model": "metainfo.source", "pk": 981, "fields": {"orig_filename": "Swoboda_Wenzel_1772_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 89f.", "author": "", "orig_id": 1435512}}, {"model": "metainfo.source", "pk": 982, "fields": {"orig_filename": "Sychra_Josef-Cyril_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90f.", "author": "", "orig_id": 2163157}}, {"model": "metainfo.source", "pk": 983, "fields": {"orig_filename": "Sychra_Matej-Josef_1776_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90", "author": "", "orig_id": 1435656}}, {"model": "metainfo.source", "pk": 984, "fields": {"orig_filename": "Sychra_Method-Lumir_1884_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91", "author": "", "orig_id": 2163168}}, {"model": "metainfo.source", "pk": 985, "fields": {"orig_filename": "Sychra_Vaclav_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90f.", "author": "", "orig_id": 1435653}}, {"model": "metainfo.source", "pk": 986, "fields": {"orig_filename": "Sykora_Karl_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91", "author": "", "orig_id": 1435767}}, {"model": "metainfo.source", "pk": 987, "fields": {"orig_filename": "Syllaba_Ladislav_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91f.", "author": "", "orig_id": 1435770}}, {"model": "metainfo.source", "pk": 988, "fields": {"orig_filename": "Sylvester_Hans_1897_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 92f.", "author": "", "orig_id": 1435774}}, {"model": "metainfo.source", "pk": 989, "fields": {"orig_filename": "Sylvester_Julius_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 93", "author": "", "orig_id": 1435948}}, {"model": "metainfo.source", "pk": 990, "fields": {"orig_filename": "Symersky_Josef_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 94", "author": "", "orig_id": 1435817}}, {"model": "metainfo.source", "pk": 991, "fields": {"orig_filename": "Sym_Igo_1896_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 93f.", "author": "", "orig_id": 1450023}}, {"model": "metainfo.source", "pk": 992, "fields": {"orig_filename": "Synek_Adolf_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2171789}}, {"model": "metainfo.source", "pk": 993, "fields": {"orig_filename": "Synek_Karel_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2292750}}, {"model": "metainfo.source", "pk": 994, "fields": {"orig_filename": "Stuermer_Karl_1792_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445f.", "author": "", "orig_id": 1433166}}, {"model": "metainfo.source", "pk": 995, "fields": {"orig_filename": "Stuerzer_Rudolf_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 446", "author": "", "orig_id": 1433167}}, {"model": "metainfo.source", "pk": 996, "fields": {"orig_filename": "Stuflesser_Ferdinand_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 446f.", "author": "", "orig_id": 1433095}}, {"model": "metainfo.source", "pk": 997, "fields": {"orig_filename": "Stukart_Moriz_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 447", "author": "", "orig_id": 1432965}}, {"model": "metainfo.source", "pk": 998, "fields": {"orig_filename": "Stulc_Vaclav_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 447f.", "author": "", "orig_id": 1433235}}, {"model": "metainfo.source", "pk": 999, "fields": {"orig_filename": "Stulli_Gioachino_1729_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 448", "author": "", "orig_id": 1433237}}, {"model": "metainfo.source", "pk": 1000, "fields": {"orig_filename": "Stulli_Luca_1772_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1", "author": "", "orig_id": 1433238}}, {"model": "metainfo.source", "pk": 1001, "fields": {"orig_filename": "Stummer-Tavarnok_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1f.", "author": "", "orig_id": 1433311}}, {"model": "metainfo.source", "pk": 1002, "fields": {"orig_filename": "Stummer-Tavarnok_August-Wilhelm_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 2", "author": "", "orig_id": 1433417}}, {"model": "metainfo.source", "pk": 1003, "fields": {"orig_filename": "Stummer-Traunfels_Josef-Mauritius_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 2f.", "author": "", "orig_id": 1433465}}, {"model": "metainfo.source", "pk": 1004, "fields": {"orig_filename": "Stummer-Traunfels_Robert_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3", "author": "", "orig_id": 1935819}}, {"model": "metainfo.source", "pk": 1005, "fields": {"orig_filename": "Stummer-Traunfels_Rudolf_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3", "author": "", "orig_id": 1433466}}, {"model": "metainfo.source", "pk": 1006, "fields": {"orig_filename": "Stummer_Karl_1825_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1f.", "author": "", "orig_id": 1433243}}, {"model": "metainfo.source", "pk": 1007, "fields": {"orig_filename": "Stumpf-Brentano_Karl-Friedrich_1829_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 4f.", "author": "", "orig_id": 1433476}}, {"model": "metainfo.source", "pk": 1008, "fields": {"orig_filename": "Stumpf_Franz_1876_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3f.", "author": "", "orig_id": 1433471}}, {"model": "metainfo.source", "pk": 1009, "fields": {"orig_filename": "Stundl_Theodor_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 5", "author": "", "orig_id": 1433524}}, {"model": "metainfo.source", "pk": 1010, "fields": {"orig_filename": "Stuparich_Carlo_1894_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 5", "author": "", "orig_id": 1433531}}, {"model": "metainfo.source", "pk": 1011, "fields": {"orig_filename": "Stuparich_Giani_1891_1961.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1978680}}, {"model": "metainfo.source", "pk": 1012, "fields": {"orig_filename": "Stupecky_Josef_1848_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6", "author": "", "orig_id": 1433533}}, {"model": "metainfo.source", "pk": 1013, "fields": {"orig_filename": "Stupka_Walter_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6", "author": "", "orig_id": 1433583}}, {"model": "metainfo.source", "pk": 1014, "fields": {"orig_filename": "Stupper_Carl_1808_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6f.", "author": "", "orig_id": 1433592}}, {"model": "metainfo.source", "pk": 1015, "fields": {"orig_filename": "Sturany_Johann_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1840197}}, {"model": "metainfo.source", "pk": 1016, "fields": {"orig_filename": "Sturany_Josef_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1840203}}, {"model": "metainfo.source", "pk": 1017, "fields": {"orig_filename": "Sturany_Moritz_1862_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1432753}}, {"model": "metainfo.source", "pk": 1018, "fields": {"orig_filename": "Sturany_Rudolf_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 11", "author": "", "orig_id": 1430742}}, {"model": "metainfo.source", "pk": 1019, "fields": {"orig_filename": "Sturm-Skrla_Egge_1894_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 15", "author": "", "orig_id": 1432929}}, {"model": "metainfo.source", "pk": 1020, "fields": {"orig_filename": "Sturm_Albert_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 11f.", "author": "", "orig_id": 1432754}}, {"model": "metainfo.source", "pk": 1021, "fields": {"orig_filename": "Sturm_Ambros_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 12", "author": "", "orig_id": 1432756}}, {"model": "metainfo.source", "pk": 1022, "fields": {"orig_filename": "Sturm_Anton_1787_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 12", "author": "", "orig_id": 1432757}}, {"model": "metainfo.source", "pk": 1023, "fields": {"orig_filename": "Sturm_Eduard_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 13", "author": "", "orig_id": 1432797}}, {"model": "metainfo.source", "pk": 1024, "fields": {"orig_filename": "Sturm_Friedrich_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 13f.", "author": "", "orig_id": 1432803}}, {"model": "metainfo.source", "pk": 1025, "fields": {"orig_filename": "Sturm_Georg_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 14", "author": "", "orig_id": 1432808}}, {"model": "metainfo.source", "pk": 1026, "fields": {"orig_filename": "Sturm_Josef_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 14f.", "author": "", "orig_id": 1432920}}, {"model": "metainfo.source", "pk": 1027, "fields": {"orig_filename": "Stursa_Jan_1880_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 15f.", "author": "", "orig_id": 1433054}}, {"model": "metainfo.source", "pk": 1028, "fields": {"orig_filename": "Stur_Dionys_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 7", "author": "", "orig_id": 1432686}}, {"model": "metainfo.source", "pk": 1029, "fields": {"orig_filename": "Stur_Jan_1895_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 7f.", "author": "", "orig_id": 1432690}}, {"model": "metainfo.source", "pk": 1030, "fields": {"orig_filename": "Stur_Karl_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 8f.", "author": "", "orig_id": 1432745}}, {"model": "metainfo.source", "pk": 1031, "fields": {"orig_filename": "Stur_Karol_1811_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9", "author": "", "orig_id": 1432696}}, {"model": "metainfo.source", "pk": 1032, "fields": {"orig_filename": "Stur_Ludovit_1815_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9f.", "author": "", "orig_id": 1432751}}, {"model": "metainfo.source", "pk": 1033, "fields": {"orig_filename": "Stur_Samuel_1789_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9", "author": "", "orig_id": 1995250}}, {"model": "metainfo.source", "pk": 1034, "fields": {"orig_filename": "Stutterheim_Alfred_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 16", "author": "", "orig_id": 1840215}}, {"model": "metainfo.source", "pk": 1035, "fields": {"orig_filename": "Stutterheim_Johann_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17", "author": "", "orig_id": 1433106}}, {"model": "metainfo.source", "pk": 1036, "fields": {"orig_filename": "Stutterheim_Joseph_1764_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 16f.", "author": "", "orig_id": 1433107}}, {"model": "metainfo.source", "pk": 1037, "fields": {"orig_filename": "Stuwer_Anton_1804_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17f.", "author": "", "orig_id": 1433111}}, {"model": "metainfo.source", "pk": 1038, "fields": {"orig_filename": "Stuwer_Anton_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17f.", "author": "", "orig_id": 1433110}}, {"model": "metainfo.source", "pk": 1039, "fields": {"orig_filename": "Stwertka_Julius_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 18", "author": "", "orig_id": 1433117}}, {"model": "metainfo.source", "pk": 1040, "fields": {"orig_filename": "Stwrtnik_Augustin-Wenzeslaus_1755_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 19", "author": "", "orig_id": 1433185}}, {"model": "metainfo.source", "pk": 1041, "fields": {"orig_filename": "Stwrtnik_Augustin_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 18f.", "author": "", "orig_id": 1433186}}, {"model": "metainfo.source", "pk": 1042, "fields": {"orig_filename": "Styblo_Bedrich_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 19f.", "author": "", "orig_id": 1825264}}, {"model": "metainfo.source", "pk": 1043, "fields": {"orig_filename": "Styka_Jan_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 20", "author": "", "orig_id": 1433194}}, {"model": "metainfo.source", "pk": 1044, "fields": {"orig_filename": "Styrsky_Jindrich_1899_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 20f.", "author": "", "orig_id": 1433196}}, {"model": "metainfo.source", "pk": 1045, "fields": {"orig_filename": "Subak_Julius_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 21f.", "author": "", "orig_id": 1433380}}, {"model": "metainfo.source", "pk": 1046, "fields": {"orig_filename": "Subert_Frantisek-Adolf_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 22f.", "author": "", "orig_id": 1433419}}, {"model": "metainfo.source", "pk": 1047, "fields": {"orig_filename": "Subic_Ivan_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 25", "author": "", "orig_id": 2162055}}, {"model": "metainfo.source", "pk": 1048, "fields": {"orig_filename": "Subic_Janez_1850_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 23", "author": "", "orig_id": 1965644}}, {"model": "metainfo.source", "pk": 1049, "fields": {"orig_filename": "Subic_Jurij_1855_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 23f.", "author": "", "orig_id": 1433429}}, {"model": "metainfo.source", "pk": 1050, "fields": {"orig_filename": "Subic_Simon_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 24", "author": "", "orig_id": 1433431}}, {"model": "metainfo.source", "pk": 1051, "fields": {"orig_filename": "Subic_Vladimir_1894_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 24f.", "author": "", "orig_id": 1980230}}, {"model": "metainfo.source", "pk": 1052, "fields": {"orig_filename": "Succovaty-Vezza_Eduard_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 25f.", "author": "", "orig_id": 1433480}}, {"model": "metainfo.source", "pk": 1053, "fields": {"orig_filename": "Sucharda_Edward_1891_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 26", "author": "", "orig_id": 2133057}}, {"model": "metainfo.source", "pk": 1054, "fields": {"orig_filename": "Sucharda_Stanislav_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 26f.", "author": "", "orig_id": 1433542}}, {"model": "metainfo.source", "pk": 1055, "fields": {"orig_filename": "Suchecki_Henryk-Ignacy_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 27", "author": "", "orig_id": 1433544}}, {"model": "metainfo.source", "pk": 1056, "fields": {"orig_filename": "Sucher_Joseph_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 27f.", "author": "", "orig_id": 1433549}}, {"model": "metainfo.source", "pk": 1057, "fields": {"orig_filename": "Sucher_Rosa_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 28", "author": "", "orig_id": 2193480}}, {"model": "metainfo.source", "pk": 1058, "fields": {"orig_filename": "Suchsland_Leopold_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 28f.", "author": "", "orig_id": 1433595}}, {"model": "metainfo.source", "pk": 1059, "fields": {"orig_filename": "Suchy_Adalbert_1783_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 29", "author": "", "orig_id": 1433283}}, {"model": "metainfo.source", "pk": 1060, "fields": {"orig_filename": "Suchy_Carl_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 29f.", "author": "", "orig_id": 1433284}}, {"model": "metainfo.source", "pk": 1061, "fields": {"orig_filename": "Suchy_Franz_1860_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 30", "author": "", "orig_id": 1433285}}, {"model": "metainfo.source", "pk": 1062, "fields": {"orig_filename": "Suck_Rosa_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 30f.", "author": "", "orig_id": 1433339}}, {"model": "metainfo.source", "pk": 1063, "fields": {"orig_filename": "Suda_Stanislav_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 31", "author": "", "orig_id": 1472590}}, {"model": "metainfo.source", "pk": 1064, "fields": {"orig_filename": "Suess-Hellrat_Friedrich_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 37", "author": "", "orig_id": 1453182}}, {"model": "metainfo.source", "pk": 1065, "fields": {"orig_filename": "Suessemilch_Gustav_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432835}}, {"model": "metainfo.source", "pk": 1066, "fields": {"orig_filename": "Suessmann_Hermann_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36f.", "author": "", "orig_id": 1435904}}, {"model": "metainfo.source", "pk": 1067, "fields": {"orig_filename": "Suess_Adolph-Heinrich_1797_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 31f.", "author": "", "orig_id": 1432723}}, {"model": "metainfo.source", "pk": 1068, "fields": {"orig_filename": "Suess_Eduard_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 32f.", "author": "", "orig_id": 1427985}}, {"model": "metainfo.source", "pk": 1069, "fields": {"orig_filename": "Suess_Franz-Eduard_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 33f.", "author": "", "orig_id": 1432724}}, {"model": "metainfo.source", "pk": 1070, "fields": {"orig_filename": "Suess_Friedrich_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 34f.", "author": "", "orig_id": 1432725}}, {"model": "metainfo.source", "pk": 1071, "fields": {"orig_filename": "Suess_Maria-Vincenz_1802_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 35", "author": "", "orig_id": 1432831}}, {"model": "metainfo.source", "pk": 1072, "fields": {"orig_filename": "Suess_Martin_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432783}}, {"model": "metainfo.source", "pk": 1073, "fields": {"orig_filename": "Suess_Nandor_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 35", "author": "", "orig_id": 1458216}}, {"model": "metainfo.source", "pk": 1074, "fields": {"orig_filename": "Suess_Walter_1905_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36", "author": "", "orig_id": 1424426}}, {"model": "metainfo.source", "pk": 1075, "fields": {"orig_filename": "Suess_Walter_1912_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36", "author": "", "orig_id": 1437731}}, {"model": "metainfo.source", "pk": 1076, "fields": {"orig_filename": "Sufflay_Milan_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 37f.", "author": "", "orig_id": 1435959}}, {"model": "metainfo.source", "pk": 1077, "fields": {"orig_filename": "Sugar_Nikolaus_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 38f.", "author": "", "orig_id": 1436138}}, {"model": "metainfo.source", "pk": 1078, "fields": {"orig_filename": "Suhajda_Ludovit-Matej_1806_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 39", "author": "", "orig_id": 1436144}}, {"model": "metainfo.source", "pk": 1079, "fields": {"orig_filename": "Suhayda_Janos_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 39f.", "author": "", "orig_id": 1436147}}, {"model": "metainfo.source", "pk": 1080, "fields": {"orig_filename": "Suida_Wilhelm_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 40", "author": "", "orig_id": 1436194}}, {"model": "metainfo.source", "pk": 1081, "fields": {"orig_filename": "Sujanszky_Anton_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 40f.", "author": "", "orig_id": 1436256}}, {"model": "metainfo.source", "pk": 1082, "fields": {"orig_filename": "Suklje_Fran_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 42", "author": "", "orig_id": 1436318}}, {"model": "metainfo.source", "pk": 1083, "fields": {"orig_filename": "Sukup_Max_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436366}}, {"model": "metainfo.source", "pk": 1084, "fields": {"orig_filename": "Suk_Josef_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 41", "author": "", "orig_id": 1436260}}, {"model": "metainfo.source", "pk": 1085, "fields": {"orig_filename": "Suk_Vaclav-Frantisek_1883_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 41f.", "author": "", "orig_id": 1825410}}, {"model": "metainfo.source", "pk": 1086, "fields": {"orig_filename": "Sulc_Otakar_1869_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 42f.", "author": "", "orig_id": 1436375}}, {"model": "metainfo.source", "pk": 1087, "fields": {"orig_filename": "Sulek_Bohuslav-Karol_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 43f.", "author": "", "orig_id": 1436379}}, {"model": "metainfo.source", "pk": 1088, "fields": {"orig_filename": "Sulek_Jan_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 43", "author": "", "orig_id": 1436381}}, {"model": "metainfo.source", "pk": 1089, "fields": {"orig_filename": "Sulke_Rudolf_1885_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2052674}}, {"model": "metainfo.source", "pk": 1090, "fields": {"orig_filename": "Sulzboeck_Amandus_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 44", "author": "", "orig_id": 1435547}}, {"model": "metainfo.source", "pk": 1091, "fields": {"orig_filename": "Sulzer_Henriette_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435551}}, {"model": "metainfo.source", "pk": 1092, "fields": {"orig_filename": "Sulzer_Joseph_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435687}}, {"model": "metainfo.source", "pk": 1093, "fields": {"orig_filename": "Sulzer_Julius_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435688}}, {"model": "metainfo.source", "pk": 1094, "fields": {"orig_filename": "Sulzer_Marie_1828_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435691}}, {"model": "metainfo.source", "pk": 1095, "fields": {"orig_filename": "Sulzer_Rudolf_1883_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435737}}, {"model": "metainfo.source", "pk": 1096, "fields": {"orig_filename": "Sulzer_Salomon_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45f.", "author": "", "orig_id": 1435738}}, {"model": "metainfo.source", "pk": 1097, "fields": {"orig_filename": "Sulzer_Sophie_1840_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435746}}, {"model": "metainfo.source", "pk": 1098, "fields": {"orig_filename": "Sumanovic_Sava_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 47f.", "author": "", "orig_id": 1999359}}, {"model": "metainfo.source", "pk": 1099, "fields": {"orig_filename": "Strele_Anton_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 396f.", "author": "", "orig_id": 1419706}}, {"model": "metainfo.source", "pk": 1100, "fields": {"orig_filename": "Strele_Georg_1861_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 397f.", "author": "", "orig_id": 1433978}}, {"model": "metainfo.source", "pk": 1101, "fields": {"orig_filename": "Strelli_Richard_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 398", "author": "", "orig_id": 1434206}}, {"model": "metainfo.source", "pk": 1102, "fields": {"orig_filename": "Stremayr_Karl_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 398f.", "author": "", "orig_id": 1434209}}, {"model": "metainfo.source", "pk": 1103, "fields": {"orig_filename": "Strepponi_Feliciano_1797_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 399", "author": "", "orig_id": 1434215}}, {"model": "metainfo.source", "pk": 1104, "fields": {"orig_filename": "Strepponi_Giuseppina_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 399", "author": "", "orig_id": 1434216}}, {"model": "metainfo.source", "pk": 1105, "fields": {"orig_filename": "Streussenberger_Franz_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400", "author": "", "orig_id": 1432934}}, {"model": "metainfo.source", "pk": 1106, "fields": {"orig_filename": "Strezek_Franz-K_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400", "author": "", "orig_id": 1434256}}, {"model": "metainfo.source", "pk": 1107, "fields": {"orig_filename": "Stricker_Robert_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400f.", "author": "", "orig_id": 1434317}}, {"model": "metainfo.source", "pk": 1108, "fields": {"orig_filename": "Stricker_Salomon_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 401f.", "author": "", "orig_id": 1434320}}, {"model": "metainfo.source", "pk": 1109, "fields": {"orig_filename": "Strickner_Anton_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402f.", "author": "", "orig_id": 1434324}}, {"model": "metainfo.source", "pk": 1110, "fields": {"orig_filename": "Strickner_Anton_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402f.", "author": "", "orig_id": 1447295}}, {"model": "metainfo.source", "pk": 1111, "fields": {"orig_filename": "Strickner_Franz_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402", "author": "", "orig_id": 2106134}}, {"model": "metainfo.source", "pk": 1112, "fields": {"orig_filename": "Strickner_Joseph-Leopold_1744_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403", "author": "", "orig_id": 1434327}}, {"model": "metainfo.source", "pk": 1113, "fields": {"orig_filename": "Strictius_Ludwig_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403", "author": "", "orig_id": 1434328}}, {"model": "metainfo.source", "pk": 1114, "fields": {"orig_filename": "Strigl_Richard_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403f.", "author": "", "orig_id": 1434392}}, {"model": "metainfo.source", "pk": 1115, "fields": {"orig_filename": "Strigl_Theres_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 404", "author": "", "orig_id": 1447651}}, {"model": "metainfo.source", "pk": 1116, "fields": {"orig_filename": "Strindberg_Frida_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 404f.", "author": "", "orig_id": 1427845}}, {"model": "metainfo.source", "pk": 1117, "fields": {"orig_filename": "Stringari_Remo_1879_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 405", "author": "", "orig_id": 1434395}}, {"model": "metainfo.source", "pk": 1118, "fields": {"orig_filename": "Strisower_Leo_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 405f.", "author": "", "orig_id": 1434396}}, {"model": "metainfo.source", "pk": 1119, "fields": {"orig_filename": "Stritar_Josip_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 406f.", "author": "", "orig_id": 1434397}}, {"model": "metainfo.source", "pk": 1120, "fields": {"orig_filename": "Stritof_Anton_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407", "author": "", "orig_id": 1825120}}, {"model": "metainfo.source", "pk": 1121, "fields": {"orig_filename": "Stritof_Niko_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407f.", "author": "", "orig_id": 1434399}}, {"model": "metainfo.source", "pk": 1122, "fields": {"orig_filename": "Stritt_Marie_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407f.", "author": "", "orig_id": 1434445}}, {"model": "metainfo.source", "pk": 1123, "fields": {"orig_filename": "Strnadt_Julius_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 409f.", "author": "", "orig_id": 1434514}}, {"model": "metainfo.source", "pk": 1124, "fields": {"orig_filename": "Strnad_Josef_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 408", "author": "", "orig_id": 1825261}}, {"model": "metainfo.source", "pk": 1125, "fields": {"orig_filename": "Strnad_Oskar_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 408f.", "author": "", "orig_id": 1434510}}, {"model": "metainfo.source", "pk": 1126, "fields": {"orig_filename": "Strobach-Kleisberg_Josef_1803_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 412", "author": "", "orig_id": 1433654}}, {"model": "metainfo.source", "pk": 1127, "fields": {"orig_filename": "Strobach_Antonin_1814_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410", "author": "", "orig_id": 1433645}}, {"model": "metainfo.source", "pk": 1128, "fields": {"orig_filename": "Strobach_Franz_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410f.", "author": "", "orig_id": 1433646}}, {"model": "metainfo.source", "pk": 1129, "fields": {"orig_filename": "Strobach_Josef-Karl_1852_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 411", "author": "", "orig_id": 1433647}}, {"model": "metainfo.source", "pk": 1130, "fields": {"orig_filename": "Strobach_Josef_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410f.", "author": "", "orig_id": 2003924}}, {"model": "metainfo.source", "pk": 1131, "fields": {"orig_filename": "Strobach_Paul_1776_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 411f.", "author": "", "orig_id": 1433650}}, {"model": "metainfo.source", "pk": 1132, "fields": {"orig_filename": "Strobach_Zdenek_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410", "author": "", "orig_id": 1433653}}, {"model": "metainfo.source", "pk": 1133, "fields": {"orig_filename": "Strobel_Peregrin_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 412f.", "author": "", "orig_id": 1433659}}, {"model": "metainfo.source", "pk": 1134, "fields": {"orig_filename": "Strobentz_Frigyes_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 413", "author": "", "orig_id": 1433703}}, {"model": "metainfo.source", "pk": 1135, "fields": {"orig_filename": "Strobl-Ravelsberg_Ferdinand_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417", "author": "", "orig_id": 1433831}}, {"model": "metainfo.source", "pk": 1136, "fields": {"orig_filename": "Strobl_Alajos_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 413f.", "author": "", "orig_id": 1433706}}, {"model": "metainfo.source", "pk": 1137, "fields": {"orig_filename": "Strobl_Gabriel_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 414f.", "author": "", "orig_id": 1430743}}, {"model": "metainfo.source", "pk": 1138, "fields": {"orig_filename": "Strobl_Johann_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 415", "author": "", "orig_id": 1433714}}, {"model": "metainfo.source", "pk": 1139, "fields": {"orig_filename": "Strobl_Joseph_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 415f.", "author": "", "orig_id": 1433715}}, {"model": "metainfo.source", "pk": 1140, "fields": {"orig_filename": "Strobl_Karl-Hans_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 416f.", "author": "", "orig_id": 1433768}}, {"model": "metainfo.source", "pk": 1141, "fields": {"orig_filename": "Strobl_Richard_1874_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417", "author": "", "orig_id": 1465412}}, {"model": "metainfo.source", "pk": 1142, "fields": {"orig_filename": "Strobl_Zsofia_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 414", "author": "", "orig_id": 1455270}}, {"model": "metainfo.source", "pk": 1143, "fields": {"orig_filename": "Stroehl_Hugo-Gerard_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417f.", "author": "", "orig_id": 1433880}}, {"model": "metainfo.source", "pk": 1144, "fields": {"orig_filename": "Stroehmer_Ludwig_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 418f.", "author": "", "orig_id": 1433881}}, {"model": "metainfo.source", "pk": 1145, "fields": {"orig_filename": "Strohal_Emil-August_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 420", "author": "", "orig_id": 1433930}}, {"model": "metainfo.source", "pk": 1146, "fields": {"orig_filename": "Strohal_Jakob_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 420f.", "author": "", "orig_id": 1433933}}, {"model": "metainfo.source", "pk": 1147, "fields": {"orig_filename": "Strohmayer_Alois_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 421", "author": "", "orig_id": 1433941}}, {"model": "metainfo.source", "pk": 1148, "fields": {"orig_filename": "Strohmayer_Anton_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 421f.", "author": "", "orig_id": 1433942}}, {"model": "metainfo.source", "pk": 1149, "fields": {"orig_filename": "Strohmayr_Otto_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 422", "author": "", "orig_id": 1433079}}, {"model": "metainfo.source", "pk": 1150, "fields": {"orig_filename": "Strohmer_Friedrich_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 422f.", "author": "", "orig_id": 1433082}}, {"model": "metainfo.source", "pk": 1151, "fields": {"orig_filename": "Stroh_Rudolf_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 419", "author": "", "orig_id": 1433886}}, {"model": "metainfo.source", "pk": 1152, "fields": {"orig_filename": "Stroh_Sebastian_1792_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 419f.", "author": "", "orig_id": 1433928}}, {"model": "metainfo.source", "pk": 1153, "fields": {"orig_filename": "Stroj_Mihael_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423", "author": "", "orig_id": 1433295}}, {"model": "metainfo.source", "pk": 1154, "fields": {"orig_filename": "Stromszky_Franz-Samuel_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423", "author": "", "orig_id": 1433159}}, {"model": "metainfo.source", "pk": 1155, "fields": {"orig_filename": "Stronski_Franciszek-Dionizij-Kaspar_1803_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423f.", "author": "", "orig_id": 1433161}}, {"model": "metainfo.source", "pk": 1156, "fields": {"orig_filename": "Strossmayer_Josip-Juraj_1815_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 425", "author": "", "orig_id": 1433228}}, {"model": "metainfo.source", "pk": 1157, "fields": {"orig_filename": "Stross_Emanuel_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433221}}, {"model": "metainfo.source", "pk": 1158, "fields": {"orig_filename": "Stross_Rudolf_1872_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433225}}, {"model": "metainfo.source", "pk": 1159, "fields": {"orig_filename": "Stross_Walter_1882_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433226}}, {"model": "metainfo.source", "pk": 1160, "fields": {"orig_filename": "Strouhal_Vincenc_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 425f.", "author": "", "orig_id": 1433232}}, {"model": "metainfo.source", "pk": 1161, "fields": {"orig_filename": "Stroupeznicka_Marie_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 426f.", "author": "", "orig_id": 1433234}}, {"model": "metainfo.source", "pk": 1162, "fields": {"orig_filename": "Stroupeznicky_Ladislav_1850_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 426f.", "author": "", "orig_id": 1433233}}, {"model": "metainfo.source", "pk": 1163, "fields": {"orig_filename": "Struber_Joseph_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 427", "author": "", "orig_id": 1433302}}, {"model": "metainfo.source", "pk": 1164, "fields": {"orig_filename": "Strucker_Jakob_1761_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 427f.", "author": "", "orig_id": 1433305}}, {"model": "metainfo.source", "pk": 1165, "fields": {"orig_filename": "Strukelj_Mihael_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 428", "author": "", "orig_id": 1433452}}, {"model": "metainfo.source", "pk": 1166, "fields": {"orig_filename": "Strupi_Simon_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 428f.", "author": "", "orig_id": 1433462}}, {"model": "metainfo.source", "pk": 1167, "fields": {"orig_filename": "Struschka_Hermann_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429", "author": "", "orig_id": 1433464}}, {"model": "metainfo.source", "pk": 1168, "fields": {"orig_filename": "Struska_Johann_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429", "author": "", "orig_id": 1433508}}, {"model": "metainfo.source", "pk": 1169, "fields": {"orig_filename": "Struszkiewicz_Jerzy_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429f.", "author": "", "orig_id": 1897706}}, {"model": "metainfo.source", "pk": 1170, "fields": {"orig_filename": "Struszkiewicz_Wladyslaw_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 430", "author": "", "orig_id": 1433509}}, {"model": "metainfo.source", "pk": 1171, "fields": {"orig_filename": "Stryjenski_Karol_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 430f.", "author": "", "orig_id": 1473826}}, {"model": "metainfo.source", "pk": 1172, "fields": {"orig_filename": "Stryjenski_Tadeusz_1849_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 431", "author": "", "orig_id": 1473825}}, {"model": "metainfo.source", "pk": 1173, "fields": {"orig_filename": "Strzelecka_Maria_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 431f.", "author": "", "orig_id": 1880578}}, {"model": "metainfo.source", "pk": 1174, "fields": {"orig_filename": "Strzelecki_Feliks-Jozef_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 432f.", "author": "", "orig_id": 1433518}}, {"model": "metainfo.source", "pk": 1175, "fields": {"orig_filename": "Strzemcha_Paul_1844_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 433", "author": "", "orig_id": 1433568}}, {"model": "metainfo.source", "pk": 1176, "fields": {"orig_filename": "Strzygowski_Franz_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 433f.", "author": "", "orig_id": 1437150}}, {"model": "metainfo.source", "pk": 1177, "fields": {"orig_filename": "Strzygowski_Josef_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 434f.", "author": "", "orig_id": 1431924}}, {"model": "metainfo.source", "pk": 1178, "fields": {"orig_filename": "Stubel_Eleonora_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1432727}}, {"model": "metainfo.source", "pk": 1179, "fields": {"orig_filename": "Stubel_Eugenie_1860_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1433574}}, {"model": "metainfo.source", "pk": 1180, "fields": {"orig_filename": "Stubel_Ludmilla-Hildegard_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 2106143}}, {"model": "metainfo.source", "pk": 1181, "fields": {"orig_filename": "Stubel_Marie_1845_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1469438}}, {"model": "metainfo.source", "pk": 1182, "fields": {"orig_filename": "Stubenberg_Anna_1821_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 436", "author": "", "orig_id": 1432733}}, {"model": "metainfo.source", "pk": 1183, "fields": {"orig_filename": "Stubenberg_Felix_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432734}}, {"model": "metainfo.source", "pk": 1184, "fields": {"orig_filename": "Stubenrauch_Leopold_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438", "author": "", "orig_id": 1432788}}, {"model": "metainfo.source", "pk": 1185, "fields": {"orig_filename": "Stubenrauch_Moriz_1811_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 437", "author": "", "orig_id": 1432789}}, {"model": "metainfo.source", "pk": 1186, "fields": {"orig_filename": "Stubenrauch_Philipp_1784_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 437f.", "author": "", "orig_id": 1432791}}, {"model": "metainfo.source", "pk": 1187, "fields": {"orig_filename": "Stuchlik_Kamil_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438", "author": "", "orig_id": 1911405}}, {"model": "metainfo.source", "pk": 1188, "fields": {"orig_filename": "Stuchlik_Konstantin_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438f.", "author": "", "orig_id": 1911393}}, {"model": "metainfo.source", "pk": 1189, "fields": {"orig_filename": "Studnicka_Alois_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 439", "author": "", "orig_id": 1433025}}, {"model": "metainfo.source", "pk": 1190, "fields": {"orig_filename": "Studnicka_Franz-Josef_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 439f.", "author": "", "orig_id": 1433027}}, {"model": "metainfo.source", "pk": 1191, "fields": {"orig_filename": "Studniczka_Franz_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 440f.", "author": "", "orig_id": 1433029}}, {"model": "metainfo.source", "pk": 1192, "fields": {"orig_filename": "Studynskyj_Kyrylo_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 441", "author": "", "orig_id": 1963747}}, {"model": "metainfo.source", "pk": 1193, "fields": {"orig_filename": "Stueber_Friedrich_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 441f.", "author": "", "orig_id": 1433093}}, {"model": "metainfo.source", "pk": 1194, "fields": {"orig_filename": "Stuedl_Johann_1839_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 442", "author": "", "orig_id": 1433094}}, {"model": "metainfo.source", "pk": 1195, "fields": {"orig_filename": "Stuelpnagel_Ernst_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 442f.", "author": "", "orig_id": 1433096}}, {"model": "metainfo.source", "pk": 1196, "fields": {"orig_filename": "Stuergkh_Josef_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443f.", "author": "", "orig_id": 1433101}}, {"model": "metainfo.source", "pk": 1197, "fields": {"orig_filename": "Stuergkh_Karl_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 444f.", "author": "", "orig_id": 1433102}}, {"model": "metainfo.source", "pk": 1198, "fields": {"orig_filename": "Stuermer_Bartholomaeus_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445", "author": "", "orig_id": 1433164}}, {"model": "metainfo.source", "pk": 1199, "fields": {"orig_filename": "Stuermer_Ignaz_1750_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445f.", "author": "", "orig_id": 1433165}}, {"model": "metainfo.source", "pk": 1200, "fields": {"orig_filename": "Strakosch-Feldringen_Georg_1898_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 351", "author": "", "orig_id": 1434485}}, {"model": "metainfo.source", "pk": 1201, "fields": {"orig_filename": "Strakosch-Feldringen_Siegfried_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 351f.", "author": "", "orig_id": 1433737}}, {"model": "metainfo.source", "pk": 1202, "fields": {"orig_filename": "Strakosch-Grassmann_Gustav_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 352f.", "author": "", "orig_id": 1433745}}, {"model": "metainfo.source", "pk": 1203, "fields": {"orig_filename": "Strakosch_Alexander_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 345f.", "author": "", "orig_id": 1434536}}, {"model": "metainfo.source", "pk": 1204, "fields": {"orig_filename": "Strakosch_Alexander_1879_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2088731}}, {"model": "metainfo.source", "pk": 1205, "fields": {"orig_filename": "Strakosch_Felix_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 346", "author": "", "orig_id": 1434546}}, {"model": "metainfo.source", "pk": 1206, "fields": {"orig_filename": "Strakosch_Ferdinand_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1981757}}, {"model": "metainfo.source", "pk": 1207, "fields": {"orig_filename": "Strakosch_Henry_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 346f.", "author": "", "orig_id": 1823700}}, {"model": "metainfo.source", "pk": 1208, "fields": {"orig_filename": "Strakosch_Irma_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 347", "author": "", "orig_id": 1449787}}, {"model": "metainfo.source", "pk": 1209, "fields": {"orig_filename": "Strakosch_Jonas_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 347f.", "author": "", "orig_id": 1433622}}, {"model": "metainfo.source", "pk": 1210, "fields": {"orig_filename": "Strakosch_Julius_1852_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 348f.", "author": "", "orig_id": 1473429}}, {"model": "metainfo.source", "pk": 1211, "fields": {"orig_filename": "Strakosch_Ludwig_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 349", "author": "", "orig_id": 1433623}}, {"model": "metainfo.source", "pk": 1212, "fields": {"orig_filename": "Strakosch_Max_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1981760}}, {"model": "metainfo.source", "pk": 1213, "fields": {"orig_filename": "Strakosch_Moriz_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 349f.", "author": "", "orig_id": 1433627}}, {"model": "metainfo.source", "pk": 1214, "fields": {"orig_filename": "Strakosch_Salomon_1795_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1433677}}, {"model": "metainfo.source", "pk": 1215, "fields": {"orig_filename": "Strakosch_Simon_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350f.", "author": "", "orig_id": 1433736}}, {"model": "metainfo.source", "pk": 1216, "fields": {"orig_filename": "Strambio_Gaetano_1752_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433907}}, {"model": "metainfo.source", "pk": 1217, "fields": {"orig_filename": "Strambio_Gaetano_1820_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433911}}, {"model": "metainfo.source", "pk": 1218, "fields": {"orig_filename": "Strambio_Giovanni_1780_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433912}}, {"model": "metainfo.source", "pk": 1219, "fields": {"orig_filename": "Strampfer_Friedrich_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 354", "author": "", "orig_id": 1433795}}, {"model": "metainfo.source", "pk": 1220, "fields": {"orig_filename": "Stranecka_Frantiska_1839_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 354f.", "author": "", "orig_id": 1825244}}, {"model": "metainfo.source", "pk": 1221, "fields": {"orig_filename": "Stranig_Albin_1908_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 355", "author": "", "orig_id": 1433802}}, {"model": "metainfo.source", "pk": 1222, "fields": {"orig_filename": "Stranik_Erwin_1898_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 355f.", "author": "", "orig_id": 1433853}}, {"model": "metainfo.source", "pk": 1223, "fields": {"orig_filename": "Stransky-Dresdenberg_Franz_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358f.", "author": "", "orig_id": 1434016}}, {"model": "metainfo.source", "pk": 1224, "fields": {"orig_filename": "Stransky_Adolf_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 356f.", "author": "", "orig_id": 1433854}}, {"model": "metainfo.source", "pk": 1225, "fields": {"orig_filename": "Stransky_Emil_1889_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 357", "author": "", "orig_id": 1427604}}, {"model": "metainfo.source", "pk": 1226, "fields": {"orig_filename": "Stransky_Felix_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 357f.", "author": "", "orig_id": 1433859}}, {"model": "metainfo.source", "pk": 1227, "fields": {"orig_filename": "Stransky_Josef_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358", "author": "", "orig_id": 1433957}}, {"model": "metainfo.source", "pk": 1228, "fields": {"orig_filename": "Stransky_Sigmund_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358", "author": "", "orig_id": 1434015}}, {"model": "metainfo.source", "pk": 1229, "fields": {"orig_filename": "Straschiripka_Johann-Bapt_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 359f.", "author": "", "orig_id": 1434024}}, {"model": "metainfo.source", "pk": 1230, "fields": {"orig_filename": "Strasoldo_Joseph-Philipp-Adam_1738_1824.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434301}}, {"model": "metainfo.source", "pk": 1231, "fields": {"orig_filename": "Strass-Hohenstraeten_Karl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 360", "author": "", "orig_id": 1434027}}, {"model": "metainfo.source", "pk": 1232, "fields": {"orig_filename": "Strasser_Alois_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 360f.", "author": "", "orig_id": 1434074}}, {"model": "metainfo.source", "pk": 1233, "fields": {"orig_filename": "Strasser_Artur_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 361", "author": "", "orig_id": 1434075}}, {"model": "metainfo.source", "pk": 1234, "fields": {"orig_filename": "Strasser_Ferdinand_1901_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 362", "author": "", "orig_id": 1434081}}, {"model": "metainfo.source", "pk": 1235, "fields": {"orig_filename": "Strasser_Gabriel_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 362", "author": "", "orig_id": 1434135}}, {"model": "metainfo.source", "pk": 1236, "fields": {"orig_filename": "Strasser_Josef_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 363f.", "author": "", "orig_id": 1434247}}, {"model": "metainfo.source", "pk": 1237, "fields": {"orig_filename": "Strasser_Josef_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 363", "author": "", "orig_id": 1445066}}, {"model": "metainfo.source", "pk": 1238, "fields": {"orig_filename": "Strasser_Pius_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 364", "author": "", "orig_id": 1434195}}, {"model": "metainfo.source", "pk": 1239, "fields": {"orig_filename": "Strassgschwandtner_Anton_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 364f.", "author": "", "orig_id": 1434246}}, {"model": "metainfo.source", "pk": 1240, "fields": {"orig_filename": "Strassmann_Marie_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 365", "author": "", "orig_id": 1434250}}, {"model": "metainfo.source", "pk": 1241, "fields": {"orig_filename": "Strassni_Fritz_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434254}}, {"model": "metainfo.source", "pk": 1242, "fields": {"orig_filename": "Strassoldo-Graffemberg_Julius-Caesar_1791_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 365f.", "author": "", "orig_id": 1434305}}, {"model": "metainfo.source", "pk": 1243, "fields": {"orig_filename": "Strassoldo-Graffemberg_Michael_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 366", "author": "", "orig_id": 1434309}}, {"model": "metainfo.source", "pk": 1244, "fields": {"orig_filename": "Strassoldo-Sotto_Giulio-Giuseppe_1771_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 366f.", "author": "", "orig_id": 1434303}}, {"model": "metainfo.source", "pk": 1245, "fields": {"orig_filename": "Straszewski_Florian_1767_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 367", "author": "", "orig_id": 1434311}}, {"model": "metainfo.source", "pk": 1246, "fields": {"orig_filename": "Straszewski_Maurycy_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 367f.", "author": "", "orig_id": 1870456}}, {"model": "metainfo.source", "pk": 1247, "fields": {"orig_filename": "Stratico_Simone-Filippo_1733_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 368", "author": "", "orig_id": 1434367}}, {"model": "metainfo.source", "pk": 1248, "fields": {"orig_filename": "Stratil_Frantisek_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 368f.", "author": "", "orig_id": 1434369}}, {"model": "metainfo.source", "pk": 1249, "fields": {"orig_filename": "Stratimirovic_Djordje_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 369", "author": "", "orig_id": 1434377}}, {"model": "metainfo.source", "pk": 1250, "fields": {"orig_filename": "Stratimirovic_Stephan_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 369f.", "author": "", "orig_id": 1434376}}, {"model": "metainfo.source", "pk": 1251, "fields": {"orig_filename": "Strattmann_Benedikt_1760_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 370", "author": "", "orig_id": 2106677}}, {"model": "metainfo.source", "pk": 1252, "fields": {"orig_filename": "Strattmann_Paul_1755_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 370", "author": "", "orig_id": 1434441}}, {"model": "metainfo.source", "pk": 1253, "fields": {"orig_filename": "Straub_Adolf_1808_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371", "author": "", "orig_id": 1434443}}, {"model": "metainfo.source", "pk": 1254, "fields": {"orig_filename": "Straub_Anton_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371", "author": "", "orig_id": 1434487}}, {"model": "metainfo.source", "pk": 1255, "fields": {"orig_filename": "Straub_Josef-Ignaz_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371f.", "author": "", "orig_id": 1434490}}, {"model": "metainfo.source", "pk": 1256, "fields": {"orig_filename": "Straucher_Benno_1854_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 372f.", "author": "", "orig_id": 1433639}}, {"model": "metainfo.source", "pk": 1257, "fields": {"orig_filename": "Strauch_Antonin_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 372", "author": "", "orig_id": 1434500}}, {"model": "metainfo.source", "pk": 1258, "fields": {"orig_filename": "Strauss_Anton_1775_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373f.", "author": "", "orig_id": 1433643}}, {"model": "metainfo.source", "pk": 1259, "fields": {"orig_filename": "Strauss_Eduard_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 374f.", "author": "", "orig_id": 1432287}}, {"model": "metainfo.source", "pk": 1260, "fields": {"orig_filename": "Strauss_Emil_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 375", "author": "", "orig_id": 1433695}}, {"model": "metainfo.source", "pk": 1261, "fields": {"orig_filename": "Strauss_Ferdinand_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 375f.", "author": "", "orig_id": 1433696}}, {"model": "metainfo.source", "pk": 1262, "fields": {"orig_filename": "Strauss_Georg_1800_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 376", "author": "", "orig_id": 1433699}}, {"model": "metainfo.source", "pk": 1263, "fields": {"orig_filename": "Strauss_Henriette_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 376f.", "author": "", "orig_id": 1425833}}, {"model": "metainfo.source", "pk": 1264, "fields": {"orig_filename": "Strauss_Johanna_1890_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 380", "author": "", "orig_id": 1981308}}, {"model": "metainfo.source", "pk": 1265, "fields": {"orig_filename": "Strauss_Johann_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 377f.", "author": "", "orig_id": 1432041}}, {"model": "metainfo.source", "pk": 1266, "fields": {"orig_filename": "Strauss_Johann_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 378f.", "author": "", "orig_id": 1432329}}, {"model": "metainfo.source", "pk": 1267, "fields": {"orig_filename": "Strauss_Johann_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 379f.", "author": "", "orig_id": 1432288}}, {"model": "metainfo.source", "pk": 1268, "fields": {"orig_filename": "Strauss_Josef_1827_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 380f.", "author": "", "orig_id": 1432330}}, {"model": "metainfo.source", "pk": 1269, "fields": {"orig_filename": "Strauss_Joseph_1793_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 381f.", "author": "", "orig_id": 1433753}}, {"model": "metainfo.source", "pk": 1270, "fields": {"orig_filename": "Strauss_Magdalena_1764_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 374", "author": "", "orig_id": 1433758}}, {"model": "metainfo.source", "pk": 1271, "fields": {"orig_filename": "Strauss_Richard_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 382f.", "author": "", "orig_id": 1433760}}, {"model": "metainfo.source", "pk": 1272, "fields": {"orig_filename": "Strauss_Siegmund_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 383", "author": "", "orig_id": 1433805}}, {"model": "metainfo.source", "pk": 1273, "fields": {"orig_filename": "Strausz_Adolf_1853_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 384", "author": "", "orig_id": 1433690}}, {"model": "metainfo.source", "pk": 1274, "fields": {"orig_filename": "Straus_Leo_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373", "author": "", "orig_id": 1433755}}, {"model": "metainfo.source", "pk": 1275, "fields": {"orig_filename": "Strazza_Giovanni_1817_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 384f.", "author": "", "orig_id": 1433814}}, {"model": "metainfo.source", "pk": 1276, "fields": {"orig_filename": "Strecker_Emil_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 385", "author": "", "orig_id": 1433872}}, {"model": "metainfo.source", "pk": 1277, "fields": {"orig_filename": "Streffleur_Valentin_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 385f.", "author": "", "orig_id": 1433921}}, {"model": "metainfo.source", "pk": 1278, "fields": {"orig_filename": "Strehl_Johann_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 386", "author": "", "orig_id": 1433975}}, {"model": "metainfo.source", "pk": 1279, "fields": {"orig_filename": "Streicher_Andreas_1761_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 386f.", "author": "", "orig_id": 1433987}}, {"model": "metainfo.source", "pk": 1280, "fields": {"orig_filename": "Streicher_Emil_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 2004805}}, {"model": "metainfo.source", "pk": 1281, "fields": {"orig_filename": "Streicher_Gustav_1873_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 387", "author": "", "orig_id": 1433984}}, {"model": "metainfo.source", "pk": 1282, "fields": {"orig_filename": "Streicher_Heinrich_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1433985}}, {"model": "metainfo.source", "pk": 1283, "fields": {"orig_filename": "Streicher_Johann-Bapt_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1432331}}, {"model": "metainfo.source", "pk": 1284, "fields": {"orig_filename": "Streicher_Joseph_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389", "author": "", "orig_id": 1434031}}, {"model": "metainfo.source", "pk": 1285, "fields": {"orig_filename": "Streicher_Karl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1434032}}, {"model": "metainfo.source", "pk": 1286, "fields": {"orig_filename": "Streicher_Nanette_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389", "author": "", "orig_id": 1434036}}, {"model": "metainfo.source", "pk": 1287, "fields": {"orig_filename": "Streicher_Theodor_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389f.", "author": "", "orig_id": 1434037}}, {"model": "metainfo.source", "pk": 1288, "fields": {"orig_filename": "Streintz_Franz_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 390", "author": "", "orig_id": 1434043}}, {"model": "metainfo.source", "pk": 1289, "fields": {"orig_filename": "Streintz_Heinrich_1848_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 390f.", "author": "", "orig_id": 1434044}}, {"model": "metainfo.source", "pk": 1290, "fields": {"orig_filename": "Streinz_Wenzel-Matern_1792_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 391", "author": "", "orig_id": 1434045}}, {"model": "metainfo.source", "pk": 1291, "fields": {"orig_filename": "Streissler_Eduard_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434086}}, {"model": "metainfo.source", "pk": 1292, "fields": {"orig_filename": "Streiter_Joseph_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393f.", "author": "", "orig_id": 1427584}}, {"model": "metainfo.source", "pk": 1293, "fields": {"orig_filename": "Streiter_Oswald_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 394", "author": "", "orig_id": 1434097}}, {"model": "metainfo.source", "pk": 1294, "fields": {"orig_filename": "Streitmann_Karl_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 394f.", "author": "", "orig_id": 1434098}}, {"model": "metainfo.source", "pk": 1295, "fields": {"orig_filename": "Streitmann_Luise_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395", "author": "", "orig_id": 1434144}}, {"model": "metainfo.source", "pk": 1296, "fields": {"orig_filename": "Streitmann_Rosa_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395", "author": "", "orig_id": 1434146}}, {"model": "metainfo.source", "pk": 1297, "fields": {"orig_filename": "Streitt_Franciszek_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395f.", "author": "", "orig_id": 1434147}}, {"model": "metainfo.source", "pk": 1298, "fields": {"orig_filename": "Streit_Andreas_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 391f.", "author": "", "orig_id": 1432333}}, {"model": "metainfo.source", "pk": 1299, "fields": {"orig_filename": "Streit_Ignaz_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393", "author": "", "orig_id": 1434090}}, {"model": "metainfo.source", "pk": 1300, "fields": {"orig_filename": "Streit_Karl_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 392f.", "author": "", "orig_id": 1434093}}, {"model": "metainfo.source", "pk": 1301, "fields": {"orig_filename": "Streit_Moriz_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393", "author": "", "orig_id": 1434094}}, {"model": "metainfo.source", "pk": 1302, "fields": {"orig_filename": "Strekelj_Karl_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 396", "author": "", "orig_id": 1434150}}, {"model": "metainfo.source", "pk": 1303, "fields": {"orig_filename": "Stohl_Lukas_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300f.", "author": "", "orig_id": 1432057}}, {"model": "metainfo.source", "pk": 1304, "fields": {"orig_filename": "Stohl_Marie_1828_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300", "author": "", "orig_id": 1896533}}, {"model": "metainfo.source", "pk": 1305, "fields": {"orig_filename": "Stohl_Michael_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 301", "author": "", "orig_id": 1431402}}, {"model": "metainfo.source", "pk": 1306, "fields": {"orig_filename": "Stohr_Franz-Heinrich-Anton_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 301f.", "author": "", "orig_id": 1431403}}, {"model": "metainfo.source", "pk": 1307, "fields": {"orig_filename": "Stoiber_Ernst_1833_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302", "author": "", "orig_id": 1431407}}, {"model": "metainfo.source", "pk": 1308, "fields": {"orig_filename": "Stoitzner_Karl_1834_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302", "author": "", "orig_id": 1431505}}, {"model": "metainfo.source", "pk": 1309, "fields": {"orig_filename": "Stoitzner_Konstantin_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302f.", "author": "", "orig_id": 1431510}}, {"model": "metainfo.source", "pk": 1310, "fields": {"orig_filename": "Stoitzner_Walter-Gottfried_1889_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 303", "author": "", "orig_id": 1431639}}, {"model": "metainfo.source", "pk": 1311, "fields": {"orig_filename": "Stojakovic_Georg_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 303f.", "author": "", "orig_id": 1431646}}, {"model": "metainfo.source", "pk": 1312, "fields": {"orig_filename": "Stojalowski_Stanislaw_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 304", "author": "", "orig_id": 1431649}}, {"model": "metainfo.source", "pk": 1313, "fields": {"orig_filename": "Stojanovic_Mijat_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 306", "author": "", "orig_id": 1431802}}, {"model": "metainfo.source", "pk": 1314, "fields": {"orig_filename": "Stojan_Antonin-Cyril_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 304f.", "author": "", "orig_id": 1431696}}, {"model": "metainfo.source", "pk": 1315, "fields": {"orig_filename": "Stojan_Betty_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 305f.", "author": "", "orig_id": 1431688}}, {"model": "metainfo.source", "pk": 1316, "fields": {"orig_filename": "Stojan_Mihael_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 306", "author": "", "orig_id": 1431743}}, {"model": "metainfo.source", "pk": 1317, "fields": {"orig_filename": "Stojowski_Michal_1763_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307", "author": "", "orig_id": 1887941}}, {"model": "metainfo.source", "pk": 1318, "fields": {"orig_filename": "Stokes_Marianne_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307", "author": "", "orig_id": 1431810}}, {"model": "metainfo.source", "pk": 1319, "fields": {"orig_filename": "Stoklasa_Julius_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307f.", "author": "", "orig_id": 1431022}}, {"model": "metainfo.source", "pk": 1320, "fields": {"orig_filename": "Stokowski_Apolinary_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 308f.", "author": "", "orig_id": 1888028}}, {"model": "metainfo.source", "pk": 1321, "fields": {"orig_filename": "Stolarczyk_Jozef_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 309", "author": "", "orig_id": 1887952}}, {"model": "metainfo.source", "pk": 1322, "fields": {"orig_filename": "Stolba_Frantisek_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 309f.", "author": "", "orig_id": 1431027}}, {"model": "metainfo.source", "pk": 1323, "fields": {"orig_filename": "Stolba_Leopold_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 310f.", "author": "", "orig_id": 1431031}}, {"model": "metainfo.source", "pk": 1324, "fields": {"orig_filename": "Stoliczka_Ferdinand_1838_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 311", "author": "", "orig_id": 1426682}}, {"model": "metainfo.source", "pk": 1325, "fields": {"orig_filename": "Stollberg_Ignaz-Georg_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 313f.", "author": "", "orig_id": 1431201}}, {"model": "metainfo.source", "pk": 1326, "fields": {"orig_filename": "Stollewerk_Nina_1825_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314", "author": "", "orig_id": 1843791}}, {"model": "metainfo.source", "pk": 1327, "fields": {"orig_filename": "Stoll_August_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 311f.", "author": "", "orig_id": 1431141}}, {"model": "metainfo.source", "pk": 1328, "fields": {"orig_filename": "Stoll_Gisela_1867_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312", "author": "", "orig_id": 1981171}}, {"model": "metainfo.source", "pk": 1329, "fields": {"orig_filename": "Stoll_Joseph-Ludwig_1777_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312f.", "author": "", "orig_id": 1449018}}, {"model": "metainfo.source", "pk": 1330, "fields": {"orig_filename": "Stoll_Karl_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312", "author": "", "orig_id": 1981167}}, {"model": "metainfo.source", "pk": 1331, "fields": {"orig_filename": "Stoll_Peter_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 313", "author": "", "orig_id": 1431199}}, {"model": "metainfo.source", "pk": 1332, "fields": {"orig_filename": "Stolovsky_Eduard_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314f.", "author": "", "orig_id": 1431433}}, {"model": "metainfo.source", "pk": 1333, "fields": {"orig_filename": "Stolovsky_Josef_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314f.", "author": "", "orig_id": 1825085}}, {"model": "metainfo.source", "pk": 1334, "fields": {"orig_filename": "Stolper_Gustav_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 315", "author": "", "orig_id": 1431470}}, {"model": "metainfo.source", "pk": 1335, "fields": {"orig_filename": "Stolzissi_Peter-Regalat_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 320", "author": "", "orig_id": 1431149}}, {"model": "metainfo.source", "pk": 1336, "fields": {"orig_filename": "Stolz_Albert_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 315f.", "author": "", "orig_id": 1431533}}, {"model": "metainfo.source", "pk": 1337, "fields": {"orig_filename": "Stolz_Eduard_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 316", "author": "", "orig_id": 1431592}}, {"model": "metainfo.source", "pk": 1338, "fields": {"orig_filename": "Stolz_Friedrich_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 316f.", "author": "", "orig_id": 1431599}}, {"model": "metainfo.source", "pk": 1339, "fields": {"orig_filename": "Stolz_Friedrich_1878_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 319", "author": "", "orig_id": 1469679}}, {"model": "metainfo.source", "pk": 1340, "fields": {"orig_filename": "Stolz_Ignaz_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 317", "author": "", "orig_id": 1431650}}, {"model": "metainfo.source", "pk": 1341, "fields": {"orig_filename": "Stolz_Josef_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 317f.", "author": "", "orig_id": 1431753}}, {"model": "metainfo.source", "pk": 1342, "fields": {"orig_filename": "Stolz_Michael_1820_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 318", "author": "", "orig_id": 1431765}}, {"model": "metainfo.source", "pk": 1343, "fields": {"orig_filename": "Stolz_Otto_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 318f.", "author": "", "orig_id": 1431812}}, {"model": "metainfo.source", "pk": 1344, "fields": {"orig_filename": "Stolz_Teresa_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 319f.", "author": "", "orig_id": 1431269}}, {"model": "metainfo.source", "pk": 1345, "fields": {"orig_filename": "Stonner_Rudolf_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 320f.", "author": "", "orig_id": 1431212}}, {"model": "metainfo.source", "pk": 1346, "fields": {"orig_filename": "Stooss_Carl_1849_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 321f.", "author": "", "orig_id": 1431214}}, {"model": "metainfo.source", "pk": 1347, "fields": {"orig_filename": "Stoos_Pavao_1806_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 321", "author": "", "orig_id": 1431218}}, {"model": "metainfo.source", "pk": 1348, "fields": {"orig_filename": "Stopczanski_Aleksander_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 322", "author": "", "orig_id": 1880446}}, {"model": "metainfo.source", "pk": 1349, "fields": {"orig_filename": "Stoppani_Antonio_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 322f.", "author": "", "orig_id": 1431271}}, {"model": "metainfo.source", "pk": 1350, "fields": {"orig_filename": "Stoppani_Johann-Bapt_1778_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 323f.", "author": "", "orig_id": 1431272}}, {"model": "metainfo.source", "pk": 1351, "fields": {"orig_filename": "Stoppel_Marzellinus_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1431273}}, {"model": "metainfo.source", "pk": 1352, "fields": {"orig_filename": "Storch_Anton-M_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1432233}}, {"model": "metainfo.source", "pk": 1353, "fields": {"orig_filename": "Storch_Anton_1843_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1431277}}, {"model": "metainfo.source", "pk": 1354, "fields": {"orig_filename": "Storch_Frantisek_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1431279}}, {"model": "metainfo.source", "pk": 1355, "fields": {"orig_filename": "Storch_Franz-De-Paula_1763_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324f.", "author": "", "orig_id": 1431281}}, {"model": "metainfo.source", "pk": 1356, "fields": {"orig_filename": "Storch_Franz-De-Paula_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 325", "author": "", "orig_id": 1433989}}, {"model": "metainfo.source", "pk": 1357, "fields": {"orig_filename": "Storch_Karel-Boleslav_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 325f.", "author": "", "orig_id": 1433991}}, {"model": "metainfo.source", "pk": 1358, "fields": {"orig_filename": "Storch_Karl_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 326", "author": "", "orig_id": 1433990}}, {"model": "metainfo.source", "pk": 1359, "fields": {"orig_filename": "Storch_Ludwig_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 326f.", "author": "", "orig_id": 1433994}}, {"model": "metainfo.source", "pk": 1360, "fields": {"orig_filename": "Storck_Josef_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 327", "author": "", "orig_id": 1433997}}, {"model": "metainfo.source", "pk": 1361, "fields": {"orig_filename": "Storek_Edwin_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 327f.", "author": "", "orig_id": 1433999}}, {"model": "metainfo.source", "pk": 1362, "fields": {"orig_filename": "Storek_Heinrich_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328", "author": "", "orig_id": 1434000}}, {"model": "metainfo.source", "pk": 1363, "fields": {"orig_filename": "Storek_Ignaz_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328", "author": "", "orig_id": 1876615}}, {"model": "metainfo.source", "pk": 1364, "fields": {"orig_filename": "Storfer_Adolf-Joseph_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328f.", "author": "", "orig_id": 1434046}}, {"model": "metainfo.source", "pk": 1365, "fields": {"orig_filename": "Storfer_Berthold_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 329f.", "author": "", "orig_id": 1415091}}, {"model": "metainfo.source", "pk": 1366, "fields": {"orig_filename": "Storno_Ferenc_1821_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 330f.", "author": "", "orig_id": 1434049}}, {"model": "metainfo.source", "pk": 1367, "fields": {"orig_filename": "Storno_Ferenc_1851_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 330f.", "author": "", "orig_id": 1455113}}, {"model": "metainfo.source", "pk": 1368, "fields": {"orig_filename": "Storno_Kalman_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331", "author": "", "orig_id": 1894422}}, {"model": "metainfo.source", "pk": 1369, "fields": {"orig_filename": "Stossich_Adolf_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331f.", "author": "", "orig_id": 1434054}}, {"model": "metainfo.source", "pk": 1370, "fields": {"orig_filename": "Stossich_Michele_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331f.", "author": "", "orig_id": 1430744}}, {"model": "metainfo.source", "pk": 1371, "fields": {"orig_filename": "Stotter_Michael_1813_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 332", "author": "", "orig_id": 1434099}}, {"model": "metainfo.source", "pk": 1372, "fields": {"orig_filename": "Stourzh_Alois_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 332f.", "author": "", "orig_id": 1434162}}, {"model": "metainfo.source", "pk": 1373, "fields": {"orig_filename": "Stourzh_Helene_1890_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1950511}}, {"model": "metainfo.source", "pk": 1374, "fields": {"orig_filename": "Stourzh_Herbert_1889_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333", "author": "", "orig_id": 1434222}}, {"model": "metainfo.source", "pk": 1375, "fields": {"orig_filename": "Stowasser_Adolf_1842_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1876595}}, {"model": "metainfo.source", "pk": 1376, "fields": {"orig_filename": "Stowasser_Anton-Rudolf_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1876587}}, {"model": "metainfo.source", "pk": 1377, "fields": {"orig_filename": "Stowasser_Ignaz_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333f.", "author": "", "orig_id": 1434281}}, {"model": "metainfo.source", "pk": 1378, "fields": {"orig_filename": "Stowasser_Ignaz_1852_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333f.", "author": "", "orig_id": 1876578}}, {"model": "metainfo.source", "pk": 1379, "fields": {"orig_filename": "Stowasser_Josef-Maria_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334", "author": "", "orig_id": 1433669}}, {"model": "metainfo.source", "pk": 1380, "fields": {"orig_filename": "Stowasser_Josef_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1449308}}, {"model": "metainfo.source", "pk": 1381, "fields": {"orig_filename": "Stowasser_Julius_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1449310}}, {"model": "metainfo.source", "pk": 1382, "fields": {"orig_filename": "Stowasser_Wenzel_1803_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1433664}}, {"model": "metainfo.source", "pk": 1383, "fields": {"orig_filename": "Stozek_Wlodzimierz-Antoni_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 336", "author": "", "orig_id": 1880463}}, {"model": "metainfo.source", "pk": 1384, "fields": {"orig_filename": "Straberger_Josef_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 336f.", "author": "", "orig_id": 1433721}}, {"model": "metainfo.source", "pk": 1385, "fields": {"orig_filename": "Strache_Eduard_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 337f.", "author": "", "orig_id": 1433774}}, {"model": "metainfo.source", "pk": 1386, "fields": {"orig_filename": "Strache_Franz-Eduard_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 338", "author": "", "orig_id": 1468682}}, {"model": "metainfo.source", "pk": 1387, "fields": {"orig_filename": "Strache_Hugo_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 338f.", "author": "", "orig_id": 1433775}}, {"model": "metainfo.source", "pk": 1388, "fields": {"orig_filename": "Strachovsky_Josef_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 339", "author": "", "orig_id": 1433783}}, {"model": "metainfo.source", "pk": 1389, "fields": {"orig_filename": "Strach_Hermann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 337", "author": "", "orig_id": 1433734}}, {"model": "metainfo.source", "pk": 1390, "fields": {"orig_filename": "Stradal_August_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 339f.", "author": "", "orig_id": 1433897}}, {"model": "metainfo.source", "pk": 1391, "fields": {"orig_filename": "Stradal_Emmy_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 340", "author": "", "orig_id": 1433902}}, {"model": "metainfo.source", "pk": 1392, "fields": {"orig_filename": "Stradal_Hildegard_1864_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 340f.", "author": "", "orig_id": 1433945}}, {"model": "metainfo.source", "pk": 1393, "fields": {"orig_filename": "Stradner_Alois_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 341", "author": "", "orig_id": 1433956}}, {"model": "metainfo.source", "pk": 1394, "fields": {"orig_filename": "Stradner_Josef_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 341", "author": "", "orig_id": 1434414}}, {"model": "metainfo.source", "pk": 1395, "fields": {"orig_filename": "Straessle_Friedrich_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342", "author": "", "orig_id": 1434418}}, {"model": "metainfo.source", "pk": 1396, "fields": {"orig_filename": "Straessle_Josef_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342", "author": "", "orig_id": 1434419}}, {"model": "metainfo.source", "pk": 1397, "fields": {"orig_filename": "Straganz_Max_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342f.", "author": "", "orig_id": 1434424}}, {"model": "metainfo.source", "pk": 1398, "fields": {"orig_filename": "Strahl_Eduard-Josef_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343", "author": "", "orig_id": 1434468}}, {"model": "metainfo.source", "pk": 1399, "fields": {"orig_filename": "Strahl_Karl-Friedrich-Josef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343", "author": "", "orig_id": 1434469}}, {"model": "metainfo.source", "pk": 1400, "fields": {"orig_filename": "Strakaty_Jan_1835_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344f.", "author": "", "orig_id": 1434482}}, {"model": "metainfo.source", "pk": 1401, "fields": {"orig_filename": "Strakaty_Karel_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 345", "author": "", "orig_id": 1434483}}, {"model": "metainfo.source", "pk": 1402, "fields": {"orig_filename": "Straka_Adolf-Vilem_1825_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343f.", "author": "", "orig_id": 1434472}}, {"model": "metainfo.source", "pk": 1403, "fields": {"orig_filename": "Straka_Gustav-Arnost_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344", "author": "", "orig_id": 1434475}}, {"model": "metainfo.source", "pk": 1404, "fields": {"orig_filename": "Straka_Josef_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344", "author": "", "orig_id": 1434477}}, {"model": "metainfo.source", "pk": 1405, "fields": {"orig_filename": "Stifft_Andreas_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256", "author": "", "orig_id": 1432243}}, {"model": "metainfo.source", "pk": 1406, "fields": {"orig_filename": "Stifft_Andreas_1819_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256f.", "author": "", "orig_id": 1432244}}, {"model": "metainfo.source", "pk": 1407, "fields": {"orig_filename": "Stifter_Adalbert_1805_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 259f.", "author": "", "orig_id": 1432253}}, {"model": "metainfo.source", "pk": 1408, "fields": {"orig_filename": "Stifter_Magnus_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 260f.", "author": "", "orig_id": 1980265}}, {"model": "metainfo.source", "pk": 1409, "fields": {"orig_filename": "Stift_Anton_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 258f.", "author": "", "orig_id": 1432247}}, {"model": "metainfo.source", "pk": 1410, "fields": {"orig_filename": "Stift_Wilhelm_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 259", "author": "", "orig_id": 1432252}}, {"model": "metainfo.source", "pk": 1411, "fields": {"orig_filename": "Stiger_Johann-Ev_1776_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 261", "author": "", "orig_id": 1432295}}, {"model": "metainfo.source", "pk": 1412, "fields": {"orig_filename": "Stiger_Joseph-Leopold_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 261f.", "author": "", "orig_id": 1432297}}, {"model": "metainfo.source", "pk": 1413, "fields": {"orig_filename": "Stigleitner_Hans_1899_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 262", "author": "", "orig_id": 1432300}}, {"model": "metainfo.source", "pk": 1414, "fields": {"orig_filename": "Stigler_Josef_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 262f.", "author": "", "orig_id": 1432301}}, {"model": "metainfo.source", "pk": 1415, "fields": {"orig_filename": "Stigler_Karl_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263", "author": "", "orig_id": 1432302}}, {"model": "metainfo.source", "pk": 1416, "fields": {"orig_filename": "Stigler_Wilhelm_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263", "author": "", "orig_id": 1473922}}, {"model": "metainfo.source", "pk": 1417, "fields": {"orig_filename": "Stiglmayr_Joseph_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263f.", "author": "", "orig_id": 1432341}}, {"model": "metainfo.source", "pk": 1418, "fields": {"orig_filename": "Stiller_Bertalan_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 264", "author": "", "orig_id": 1432346}}, {"model": "metainfo.source", "pk": 1419, "fields": {"orig_filename": "Stillfried-Rathenitz_August_1806_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265", "author": "", "orig_id": 1432347}}, {"model": "metainfo.source", "pk": 1420, "fields": {"orig_filename": "Stillfried-Rathenitz_Franz-De-Paula_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 264f.", "author": "", "orig_id": 1472854}}, {"model": "metainfo.source", "pk": 1421, "fields": {"orig_filename": "Stillfried-Rathenitz_Raimund_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265", "author": "", "orig_id": 1432390}}, {"model": "metainfo.source", "pk": 1422, "fields": {"orig_filename": "Stingeder_Franz_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265f.", "author": "", "orig_id": 1432396}}, {"model": "metainfo.source", "pk": 1423, "fields": {"orig_filename": "Stingel_Vincenz_1761_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 266", "author": "", "orig_id": 1432397}}, {"model": "metainfo.source", "pk": 1424, "fields": {"orig_filename": "Stingl_Anton_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 266f.", "author": "", "orig_id": 1449013}}, {"model": "metainfo.source", "pk": 1425, "fields": {"orig_filename": "Stingl_Hans_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267", "author": "", "orig_id": 1432402}}, {"model": "metainfo.source", "pk": 1426, "fields": {"orig_filename": "Stipcak_Leopold_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1432451}}, {"model": "metainfo.source", "pk": 1427, "fields": {"orig_filename": "Stipperger_Adolf_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267", "author": "", "orig_id": 1432456}}, {"model": "metainfo.source", "pk": 1428, "fields": {"orig_filename": "Stipperger_Bernhard_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268", "author": "", "orig_id": 1474715}}, {"model": "metainfo.source", "pk": 1429, "fields": {"orig_filename": "Stipperger_Johann-Bernhard_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268", "author": "", "orig_id": 1474716}}, {"model": "metainfo.source", "pk": 1430, "fields": {"orig_filename": "Stipperger_Johann-Ev_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267f.", "author": "", "orig_id": 1432457}}, {"model": "metainfo.source", "pk": 1431, "fields": {"orig_filename": "Stippler_Johann_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432494}}, {"model": "metainfo.source", "pk": 1432, "fields": {"orig_filename": "Stipsicz-Ternowa_Joseph_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268f.", "author": "", "orig_id": 1432500}}, {"model": "metainfo.source", "pk": 1433, "fields": {"orig_filename": "Stirba-Stirbitz_Franciszek_1780_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269", "author": "", "orig_id": 1880562}}, {"model": "metainfo.source", "pk": 1434, "fields": {"orig_filename": "Stivin_Josef_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269", "author": "", "orig_id": 1432508}}, {"model": "metainfo.source", "pk": 1435, "fields": {"orig_filename": "Stix_Edmund_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269f.", "author": "", "orig_id": 1432549}}, {"model": "metainfo.source", "pk": 1436, "fields": {"orig_filename": "Stix_Karl_1860_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 270", "author": "", "orig_id": 1432551}}, {"model": "metainfo.source", "pk": 1437, "fields": {"orig_filename": "Stobiecki_Stefan-Antoni_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 270f.", "author": "", "orig_id": 1880548}}, {"model": "metainfo.source", "pk": 1438, "fields": {"orig_filename": "Stobinski_Feliks-Leon_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271", "author": "", "orig_id": 1860838}}, {"model": "metainfo.source", "pk": 1439, "fields": {"orig_filename": "Stobinski_Feliks_1803_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271", "author": "", "orig_id": 1860851}}, {"model": "metainfo.source", "pk": 1440, "fields": {"orig_filename": "Stobnicki_Feliks_1800_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271f.", "author": "", "orig_id": 1887993}}, {"model": "metainfo.source", "pk": 1441, "fields": {"orig_filename": "Stockert_Dora_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 274f.", "author": "", "orig_id": 1432669}}, {"model": "metainfo.source", "pk": 1442, "fields": {"orig_filename": "Stockert_Franz_1822_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275", "author": "", "orig_id": 1432616}}, {"model": "metainfo.source", "pk": 1443, "fields": {"orig_filename": "Stockert_Leopold_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275", "author": "", "orig_id": 1980636}}, {"model": "metainfo.source", "pk": 1444, "fields": {"orig_filename": "Stockert_Ludwig_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275f.", "author": "", "orig_id": 1432666}}, {"model": "metainfo.source", "pk": 1445, "fields": {"orig_filename": "Stockert_Robert_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 276", "author": "", "orig_id": 1432667}}, {"model": "metainfo.source", "pk": 1446, "fields": {"orig_filename": "Stocker_Eduard_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 273f.", "author": "", "orig_id": 1432604}}, {"model": "metainfo.source", "pk": 1447, "fields": {"orig_filename": "Stocker_Leopold_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 274", "author": "", "orig_id": 1432609}}, {"model": "metainfo.source", "pk": 1448, "fields": {"orig_filename": "Stocker_Stefan_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 273f.", "author": "", "orig_id": 1432613}}, {"model": "metainfo.source", "pk": 1449, "fields": {"orig_filename": "Stockhammer_Emerich_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 276f.", "author": "", "orig_id": 1432671}}, {"model": "metainfo.source", "pk": 1450, "fields": {"orig_filename": "Stockhammer_Wolfgang_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277", "author": "", "orig_id": 1432673}}, {"model": "metainfo.source", "pk": 1451, "fields": {"orig_filename": "Stockinger_Tamas_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277", "author": "", "orig_id": 1432680}}, {"model": "metainfo.source", "pk": 1452, "fields": {"orig_filename": "Stockmann_Leopold_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278", "author": "", "orig_id": 1431824}}, {"model": "metainfo.source", "pk": 1453, "fields": {"orig_filename": "Stockmann_Nikolaus_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277f.", "author": "", "orig_id": 1431827}}, {"model": "metainfo.source", "pk": 1454, "fields": {"orig_filename": "Stockmar_Ernest-Leopold_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278", "author": "", "orig_id": 1868185}}, {"model": "metainfo.source", "pk": 1455, "fields": {"orig_filename": "Stockmayer_Siegfried_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278f.", "author": "", "orig_id": 1431825}}, {"model": "metainfo.source", "pk": 1456, "fields": {"orig_filename": "Stocky_Albin_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 279", "author": "", "orig_id": 1431828}}, {"model": "metainfo.source", "pk": 1457, "fields": {"orig_filename": "Stock_Jan_1881_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 272", "author": "", "orig_id": 1880539}}, {"model": "metainfo.source", "pk": 1458, "fields": {"orig_filename": "Stock_Norbert_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 272f.", "author": "", "orig_id": 1475250}}, {"model": "metainfo.source", "pk": 1459, "fields": {"orig_filename": "Stodola_Aurel_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 279f.", "author": "", "orig_id": 1431829}}, {"model": "metainfo.source", "pk": 1460, "fields": {"orig_filename": "Stodola_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 280", "author": "", "orig_id": 1431830}}, {"model": "metainfo.source", "pk": 1461, "fields": {"orig_filename": "Stodola_Kornel-Milan_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 280f.", "author": "", "orig_id": 1431881}}, {"model": "metainfo.source", "pk": 1462, "fields": {"orig_filename": "Stodor_Adam_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 281", "author": "", "orig_id": 1832905}}, {"model": "metainfo.source", "pk": 1463, "fields": {"orig_filename": "Stoeber_Franz-Xav_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 282", "author": "", "orig_id": 1431884}}, {"model": "metainfo.source", "pk": 1464, "fields": {"orig_filename": "Stoeber_Franz_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 281f.", "author": "", "orig_id": 1431885}}, {"model": "metainfo.source", "pk": 1465, "fields": {"orig_filename": "Stoeber_Joseph_1768_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 282f.", "author": "", "orig_id": 1431891}}, {"model": "metainfo.source", "pk": 1466, "fields": {"orig_filename": "Stoeckholzer-Hirschfeld_Josef_1805_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 283", "author": "", "orig_id": 1431936}}, {"model": "metainfo.source", "pk": 1467, "fields": {"orig_filename": "Stoeckler_Emanuel_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 285", "author": "", "orig_id": 1432096}}, {"model": "metainfo.source", "pk": 1468, "fields": {"orig_filename": "Stoeckler_Josef_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 285f.", "author": "", "orig_id": 1432097}}, {"model": "metainfo.source", "pk": 1469, "fields": {"orig_filename": "Stoeckli_Augustin_1857_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286", "author": "", "orig_id": 1432148}}, {"model": "metainfo.source", "pk": 1470, "fields": {"orig_filename": "Stoeckl_Adolf_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 283f.", "author": "", "orig_id": 1431937}}, {"model": "metainfo.source", "pk": 1471, "fields": {"orig_filename": "Stoeckl_Andreas-Franz_1834_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 284", "author": "", "orig_id": 1431938}}, {"model": "metainfo.source", "pk": 1472, "fields": {"orig_filename": "Stoeckl_Sebastian_1752_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 284f.", "author": "", "orig_id": 1432093}}, {"model": "metainfo.source", "pk": 1473, "fields": {"orig_filename": "Stoegbauer_Adam_1881_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286", "author": "", "orig_id": 1880426}}, {"model": "metainfo.source", "pk": 1474, "fields": {"orig_filename": "Stoeger-Steiner-Steinstaetten_Rudolf_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291", "author": "", "orig_id": 1432361}}, {"model": "metainfo.source", "pk": 1475, "fields": {"orig_filename": "Stoegermayer_Karl_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291", "author": "", "orig_id": 1432404}}, {"model": "metainfo.source", "pk": 1476, "fields": {"orig_filename": "Stoeger_Adolf_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287f.", "author": "", "orig_id": 1825021}}, {"model": "metainfo.source", "pk": 1477, "fields": {"orig_filename": "Stoeger_Arthur_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286f.", "author": "", "orig_id": 1432212}}, {"model": "metainfo.source", "pk": 1478, "fields": {"orig_filename": "Stoeger_Auguste_1836_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287", "author": "", "orig_id": 1432215}}, {"model": "metainfo.source", "pk": 1479, "fields": {"orig_filename": "Stoeger_Carl_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287f.", "author": "", "orig_id": 1825028}}, {"model": "metainfo.source", "pk": 1480, "fields": {"orig_filename": "Stoeger_Emilie_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288", "author": "", "orig_id": 1432255}}, {"model": "metainfo.source", "pk": 1481, "fields": {"orig_filename": "Stoeger_Johann-August_1791_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288f.", "author": "", "orig_id": 1432309}}, {"model": "metainfo.source", "pk": 1482, "fields": {"orig_filename": "Stoeger_Johann-Nep_1792_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 289", "author": "", "orig_id": 1432258}}, {"model": "metainfo.source", "pk": 1483, "fields": {"orig_filename": "Stoeger_Johanna_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288f.", "author": "", "orig_id": 1436463}}, {"model": "metainfo.source", "pk": 1484, "fields": {"orig_filename": "Stoeger_Josef_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 289f.", "author": "", "orig_id": 1432313}}, {"model": "metainfo.source", "pk": 1485, "fields": {"orig_filename": "Stoeger_Leopold_1814_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 290", "author": "", "orig_id": 1432351}}, {"model": "metainfo.source", "pk": 1486, "fields": {"orig_filename": "Stoeger_Michael-Franz_1796_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 290f.", "author": "", "orig_id": 1432356}}, {"model": "metainfo.source", "pk": 1487, "fields": {"orig_filename": "Stoehr_Adolf_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291f.", "author": "", "orig_id": 1432408}}, {"model": "metainfo.source", "pk": 1488, "fields": {"orig_filename": "Stoehr_August_1764_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 292", "author": "", "orig_id": 1432412}}, {"model": "metainfo.source", "pk": 1489, "fields": {"orig_filename": "Stoehr_Ernst_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 292f.", "author": "", "orig_id": 1432415}}, {"model": "metainfo.source", "pk": 1490, "fields": {"orig_filename": "Stoehr_Hugo_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 293f.", "author": "", "orig_id": 1432418}}, {"model": "metainfo.source", "pk": 1491, "fields": {"orig_filename": "Stoekl_Erich-Karl-Hans_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294", "author": "", "orig_id": 1432088}}, {"model": "metainfo.source", "pk": 1492, "fields": {"orig_filename": "Stoekl_Helene_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294f.", "author": "", "orig_id": 1432514}}, {"model": "metainfo.source", "pk": 1493, "fields": {"orig_filename": "Stoekl_Rudolf_1827_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294f.", "author": "", "orig_id": 1432516}}, {"model": "metainfo.source", "pk": 1494, "fields": {"orig_filename": "Stoelzle_Carl-Anton_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 295", "author": "", "orig_id": 1432567}}, {"model": "metainfo.source", "pk": 1495, "fields": {"orig_filename": "Stoelzle_Rudolf_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 295f.", "author": "", "orig_id": 1432571}}, {"model": "metainfo.source", "pk": 1496, "fields": {"orig_filename": "Stoerck_Paul_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 296", "author": "", "orig_id": 1432574}}, {"model": "metainfo.source", "pk": 1497, "fields": {"orig_filename": "Stoerk_Carl_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 296f.", "author": "", "orig_id": 1449017}}, {"model": "metainfo.source", "pk": 1498, "fields": {"orig_filename": "Stoerk_Felix-Otto_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 297", "author": "", "orig_id": 1432580}}, {"model": "metainfo.source", "pk": 1499, "fields": {"orig_filename": "Stoerk_Oskar_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 297f.", "author": "", "orig_id": 1432620}}, {"model": "metainfo.source", "pk": 1500, "fields": {"orig_filename": "Stoessl_Adolf_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298", "author": "", "orig_id": 1431849}}, {"model": "metainfo.source", "pk": 1501, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_August_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432006}}, {"model": "metainfo.source", "pk": 1502, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Emil-Richard_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298f.", "author": "", "orig_id": 1432008}}, {"model": "metainfo.source", "pk": 1503, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Maria-Josefa_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432012}}, {"model": "metainfo.source", "pk": 1504, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Peter_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432014}}, {"model": "metainfo.source", "pk": 1505, "fields": {"orig_filename": "Stohl_Franz_1799_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300", "author": "", "orig_id": 1432021}}, {"model": "metainfo.source", "pk": 1506, "fields": {"orig_filename": "Stohl_Heinrich_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300f.", "author": "", "orig_id": 1432052}}, {"model": "metainfo.source", "pk": 1507, "fields": {"orig_filename": "Stephan-Victor___1817_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 213", "author": "", "orig_id": 1428410}}, {"model": "metainfo.source", "pk": 1508, "fields": {"orig_filename": "Stephani_Albert_1810_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 213f.", "author": "", "orig_id": 1429654}}, {"model": "metainfo.source", "pk": 1509, "fields": {"orig_filename": "Stephani_Rudolf_1817_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 214", "author": "", "orig_id": 1429590}}, {"model": "metainfo.source", "pk": 1510, "fields": {"orig_filename": "Stephann_Carl_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 214f.", "author": "", "orig_id": 1429646}}, {"model": "metainfo.source", "pk": 1511, "fields": {"orig_filename": "Stephan_Martin_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212f.", "author": "", "orig_id": 1429587}}, {"model": "metainfo.source", "pk": 1512, "fields": {"orig_filename": "Stepischnegg_Jakob-Maximilian_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 215", "author": "", "orig_id": 1429752}}, {"model": "metainfo.source", "pk": 1513, "fields": {"orig_filename": "Stepnicka_Frantisek_1785_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 215f.", "author": "", "orig_id": 1429753}}, {"model": "metainfo.source", "pk": 1514, "fields": {"orig_filename": "Stepski-Doliwa_Friedrich_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 216", "author": "", "orig_id": 1430024}}, {"model": "metainfo.source", "pk": 1515, "fields": {"orig_filename": "Sterba-Boehm_Jan-Stanislav_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 216f.", "author": "", "orig_id": 1472595}}, {"model": "metainfo.source", "pk": 1516, "fields": {"orig_filename": "Sterger_Jozef_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 217", "author": "", "orig_id": 1430089}}, {"model": "metainfo.source", "pk": 1517, "fields": {"orig_filename": "Sterio_Karoly_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 217f.", "author": "", "orig_id": 1430127}}, {"model": "metainfo.source", "pk": 1518, "fields": {"orig_filename": "Sterka-Sulucz-Kerpenyes_Alexander_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219f.", "author": "", "orig_id": 1429323}}, {"model": "metainfo.source", "pk": 1519, "fields": {"orig_filename": "Sterk_Andreas-Maria_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 218", "author": "", "orig_id": 1430129}}, {"model": "metainfo.source", "pk": 1520, "fields": {"orig_filename": "Sterk_Izidor_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 218f.", "author": "", "orig_id": 1430133}}, {"model": "metainfo.source", "pk": 1521, "fields": {"orig_filename": "Sterk_Julius_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219", "author": "", "orig_id": 1429313}}, {"model": "metainfo.source", "pk": 1522, "fields": {"orig_filename": "Sterk_Wilhelm_1880_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219", "author": "", "orig_id": 1429317}}, {"model": "metainfo.source", "pk": 1523, "fields": {"orig_filename": "Stermich-Valcrociata_Anton_1798_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 220f.", "author": "", "orig_id": 1429328}}, {"model": "metainfo.source", "pk": 1524, "fields": {"orig_filename": "Stermich-Valcrociata_Nicolo_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 220f.", "author": "", "orig_id": 1429388}}, {"model": "metainfo.source", "pk": 1525, "fields": {"orig_filename": "Stermich-Valcrociata_Pietro_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221", "author": "", "orig_id": 1429389}}, {"model": "metainfo.source", "pk": 1526, "fields": {"orig_filename": "Stermich-Valcrociata_Simeone_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221", "author": "", "orig_id": 1429381}}, {"model": "metainfo.source", "pk": 1527, "fields": {"orig_filename": "Sternad_Rudolf_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230f.", "author": "", "orig_id": 1429989}}, {"model": "metainfo.source", "pk": 1528, "fields": {"orig_filename": "Sternbach_Hermann_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 231", "author": "", "orig_id": 1430034}}, {"model": "metainfo.source", "pk": 1529, "fields": {"orig_filename": "Sternbach_Ludwik_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 231f.", "author": "", "orig_id": 1845100}}, {"model": "metainfo.source", "pk": 1530, "fields": {"orig_filename": "Sternbach_Maria-Theresia_1775_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 232", "author": "", "orig_id": 1430035}}, {"model": "metainfo.source", "pk": 1531, "fields": {"orig_filename": "Sternbach_Paul-Anton-Maria_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 232f.", "author": "", "orig_id": 1430037}}, {"model": "metainfo.source", "pk": 1532, "fields": {"orig_filename": "Sternbach_Samuel-Leo_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 233", "author": "", "orig_id": 1454363}}, {"model": "metainfo.source", "pk": 1533, "fields": {"orig_filename": "Sternberg-Manderscheid_Franz-Josef_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 237", "author": "", "orig_id": 1430139}}, {"model": "metainfo.source", "pk": 1534, "fields": {"orig_filename": "Sternberg_Adalbert-Wenzel_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 233f.", "author": "", "orig_id": 1430090}}, {"model": "metainfo.source", "pk": 1535, "fields": {"orig_filename": "Sternberg_Adolf_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234", "author": "", "orig_id": 1458639}}, {"model": "metainfo.source", "pk": 1536, "fields": {"orig_filename": "Sternberg_Carl_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234f.", "author": "", "orig_id": 1430096}}, {"model": "metainfo.source", "pk": 1537, "fields": {"orig_filename": "Sternberg_Julian_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 235", "author": "", "orig_id": 1430095}}, {"model": "metainfo.source", "pk": 1538, "fields": {"orig_filename": "Sternberg_Kaspar_1761_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 235f.", "author": "", "orig_id": 1430097}}, {"model": "metainfo.source", "pk": 1539, "fields": {"orig_filename": "Sternberg_Leopold_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 236", "author": "", "orig_id": 1430098}}, {"model": "metainfo.source", "pk": 1540, "fields": {"orig_filename": "Sternberg_Maximilian_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 236f.", "author": "", "orig_id": 1430136}}, {"model": "metainfo.source", "pk": 1541, "fields": {"orig_filename": "Sternberg_Otto_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234", "author": "", "orig_id": 1822979}}, {"model": "metainfo.source", "pk": 1542, "fields": {"orig_filename": "Sterneck_Berthold_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238", "author": "", "orig_id": 1449779}}, {"model": "metainfo.source", "pk": 1543, "fields": {"orig_filename": "Sterneck_Margarethe_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238", "author": "", "orig_id": 1474852}}, {"model": "metainfo.source", "pk": 1544, "fields": {"orig_filename": "Sternen_Matej_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238f.", "author": "", "orig_id": 1429335}}, {"model": "metainfo.source", "pk": 1545, "fields": {"orig_filename": "Sterne_Felix_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 237f.", "author": "", "orig_id": 1430146}}, {"model": "metainfo.source", "pk": 1546, "fields": {"orig_filename": "Sternfeld_Jacques_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 239", "author": "", "orig_id": 1429336}}, {"model": "metainfo.source", "pk": 1547, "fields": {"orig_filename": "Sternglas_Oskar_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 239f.", "author": "", "orig_id": 1472341}}, {"model": "metainfo.source", "pk": 1548, "fields": {"orig_filename": "Stern_Alexander_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221f.", "author": "", "orig_id": 1429537}}, {"model": "metainfo.source", "pk": 1549, "fields": {"orig_filename": "Stern_Alexander_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 222", "author": "", "orig_id": 1430275}}, {"model": "metainfo.source", "pk": 1550, "fields": {"orig_filename": "Stern_Alfred_1831_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 222f.", "author": "", "orig_id": 1429539}}, {"model": "metainfo.source", "pk": 1551, "fields": {"orig_filename": "Stern_Anton_1827_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223", "author": "", "orig_id": 1429710}}, {"model": "metainfo.source", "pk": 1552, "fields": {"orig_filename": "Stern_Arthur_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223f.", "author": "", "orig_id": 1457863}}, {"model": "metainfo.source", "pk": 1553, "fields": {"orig_filename": "Stern_Bernhard_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 224", "author": "", "orig_id": 1435006}}, {"model": "metainfo.source", "pk": 1554, "fields": {"orig_filename": "Stern_Evzen_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 224f.", "author": "", "orig_id": 1429717}}, {"model": "metainfo.source", "pk": 1555, "fields": {"orig_filename": "Stern_Friedrich_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 225", "author": "", "orig_id": 1429719}}, {"model": "metainfo.source", "pk": 1556, "fields": {"orig_filename": "Stern_Hugo_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 225f.", "author": "", "orig_id": 1429766}}, {"model": "metainfo.source", "pk": 1557, "fields": {"orig_filename": "Stern_Josef_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 226", "author": "", "orig_id": 1429771}}, {"model": "metainfo.source", "pk": 1558, "fields": {"orig_filename": "Stern_Josef_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 226f.", "author": "", "orig_id": 1429882}}, {"model": "metainfo.source", "pk": 1559, "fields": {"orig_filename": "Stern_Julius-Bernhard_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228", "author": "", "orig_id": 1429818}}, {"model": "metainfo.source", "pk": 1560, "fields": {"orig_filename": "Stern_Julius_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 227", "author": "", "orig_id": 1429817}}, {"model": "metainfo.source", "pk": 1561, "fields": {"orig_filename": "Stern_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 227f.", "author": "", "orig_id": 1429819}}, {"model": "metainfo.source", "pk": 1562, "fields": {"orig_filename": "Stern_Leopold_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228", "author": "", "orig_id": 1437615}}, {"model": "metainfo.source", "pk": 1563, "fields": {"orig_filename": "Stern_Maurice-Reinhold_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228f.", "author": "", "orig_id": 1429829}}, {"model": "metainfo.source", "pk": 1564, "fields": {"orig_filename": "Stern_Max-Emanuel_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 229", "author": "", "orig_id": 1429932}}, {"model": "metainfo.source", "pk": 1565, "fields": {"orig_filename": "Stern_Richard_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 229f.", "author": "", "orig_id": 1429937}}, {"model": "metainfo.source", "pk": 1566, "fields": {"orig_filename": "Stern_Robert_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230", "author": "", "orig_id": 1429979}}, {"model": "metainfo.source", "pk": 1567, "fields": {"orig_filename": "Stern_Samuel_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230", "author": "", "orig_id": 1429985}}, {"model": "metainfo.source", "pk": 1568, "fields": {"orig_filename": "Stern_Victor_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223", "author": "", "orig_id": 1429987}}, {"model": "metainfo.source", "pk": 1569, "fields": {"orig_filename": "Sterrer_Franz_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1429624}}, {"model": "metainfo.source", "pk": 1570, "fields": {"orig_filename": "Sterrer_Josef_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1432169}}, {"model": "metainfo.source", "pk": 1571, "fields": {"orig_filename": "Sterrer_Karl_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1432171}}, {"model": "metainfo.source", "pk": 1572, "fields": {"orig_filename": "Sterzinger_Joseph-Elias_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 241", "author": "", "orig_id": 1432230}}, {"model": "metainfo.source", "pk": 1573, "fields": {"orig_filename": "Sterzinger_Othmar-Hugo_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 241f.", "author": "", "orig_id": 1432235}}, {"model": "metainfo.source", "pk": 1574, "fields": {"orig_filename": "Sterz_Vinzenz__1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240f.", "author": "", "orig_id": 1432181}}, {"model": "metainfo.source", "pk": 1575, "fields": {"orig_filename": "Steska_Viktor_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 242", "author": "", "orig_id": 1432239}}, {"model": "metainfo.source", "pk": 1576, "fields": {"orig_filename": "Stetka_Gyula_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 242f.", "author": "", "orig_id": 1455112}}, {"model": "metainfo.source", "pk": 1577, "fields": {"orig_filename": "Steub_Ludwig_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 243", "author": "", "orig_id": 1432282}}, {"model": "metainfo.source", "pk": 1578, "fields": {"orig_filename": "Steudel_Johann-Heinrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 243f.", "author": "", "orig_id": 1432283}}, {"model": "metainfo.source", "pk": 1579, "fields": {"orig_filename": "Steurer_Isidor_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 244", "author": "", "orig_id": 1432388}}, {"model": "metainfo.source", "pk": 1580, "fields": {"orig_filename": "Steurer_Leopold_1921_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 244", "author": "", "orig_id": 1432389}}, {"model": "metainfo.source", "pk": 1581, "fields": {"orig_filename": "Steyrer_Franz-Karl_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245", "author": "", "orig_id": 1432436}}, {"model": "metainfo.source", "pk": 1582, "fields": {"orig_filename": "Stiassny-Elzhaim_Felix_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1431865}}, {"model": "metainfo.source", "pk": 1583, "fields": {"orig_filename": "Stiassny_Eduard_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1432656}}, {"model": "metainfo.source", "pk": 1584, "fields": {"orig_filename": "Stiassny_Ignaz_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245f.", "author": "", "orig_id": 1433449}}, {"model": "metainfo.source", "pk": 1585, "fields": {"orig_filename": "Stiassny_Wilhelm_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 246f.", "author": "", "orig_id": 1431991}}, {"model": "metainfo.source", "pk": 1586, "fields": {"orig_filename": "Stibic_Zdenko_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1468947}}, {"model": "metainfo.source", "pk": 1587, "fields": {"orig_filename": "Stibral_Franz_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247f.", "author": "", "orig_id": 1431874}}, {"model": "metainfo.source", "pk": 1588, "fields": {"orig_filename": "Stibral_Jiri_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 248", "author": "", "orig_id": 1431877}}, {"model": "metainfo.source", "pk": 1589, "fields": {"orig_filename": "Stichlberger_Max_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 249", "author": "", "orig_id": 1431920}}, {"model": "metainfo.source", "pk": 1590, "fields": {"orig_filename": "Stich_Ignaz_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 248f.", "author": "", "orig_id": 1431879}}, {"model": "metainfo.source", "pk": 1591, "fields": {"orig_filename": "Stieber_Georg_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 249", "author": "", "orig_id": 1432037}}, {"model": "metainfo.source", "pk": 1592, "fields": {"orig_filename": "Stieber_Miloslav_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432043}}, {"model": "metainfo.source", "pk": 1593, "fields": {"orig_filename": "Stiebitz_Alois-Josef_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432077}}, {"model": "metainfo.source", "pk": 1594, "fields": {"orig_filename": "Stiebitz_Josef_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432078}}, {"model": "metainfo.source", "pk": 1595, "fields": {"orig_filename": "Stiefler_Georg_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 251f.", "author": "", "orig_id": 1432124}}, {"model": "metainfo.source", "pk": 1596, "fields": {"orig_filename": "Stiefsohn_Ignaz_1911_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 252", "author": "", "orig_id": 1432125}}, {"model": "metainfo.source", "pk": 1597, "fields": {"orig_filename": "Stief_Sebastian_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250f.", "author": "", "orig_id": 1432084}}, {"model": "metainfo.source", "pk": 1598, "fields": {"orig_filename": "Stieger_Franz_1843_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 252", "author": "", "orig_id": 1432127}}, {"model": "metainfo.source", "pk": 1599, "fields": {"orig_filename": "Stieger_Johann_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253", "author": "", "orig_id": 1432129}}, {"model": "metainfo.source", "pk": 1600, "fields": {"orig_filename": "Stiegler_Karl_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253", "author": "", "orig_id": 1432137}}, {"model": "metainfo.source", "pk": 1601, "fields": {"orig_filename": "Stieglitz_Franz-De-Paula_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253f.", "author": "", "orig_id": 1432139}}, {"model": "metainfo.source", "pk": 1602, "fields": {"orig_filename": "Stiepan_Oskar_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 254", "author": "", "orig_id": 1427648}}, {"model": "metainfo.source", "pk": 1603, "fields": {"orig_filename": "Stiepel_Heinrich-Tugendhold_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 254f.", "author": "", "orig_id": 1432187}}, {"model": "metainfo.source", "pk": 1604, "fields": {"orig_filename": "Stiepel_Wilhelm-Friedrich-Johann_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 255", "author": "", "orig_id": 1432189}}, {"model": "metainfo.source", "pk": 1605, "fields": {"orig_filename": "Stierle-Holzmeister_Josef_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256", "author": "", "orig_id": 1432195}}, {"model": "metainfo.source", "pk": 1606, "fields": {"orig_filename": "Stierle_Maria-Henrietta_1755_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 255f.", "author": "", "orig_id": 1470581}}, {"model": "metainfo.source", "pk": 1607, "fields": {"orig_filename": "Stifft-Gottlieb_Angela_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 258", "author": "", "orig_id": 1432246}}, {"model": "metainfo.source", "pk": 1608, "fields": {"orig_filename": "Stifft_Andreas-Joseph_1760_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 257f.", "author": "", "orig_id": 1432245}}, {"model": "metainfo.source", "pk": 1609, "fields": {"orig_filename": "Steiner_Julius_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172", "author": "", "orig_id": 1430397}}, {"model": "metainfo.source", "pk": 1610, "fields": {"orig_filename": "Steiner_Leopold_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 174", "author": "", "orig_id": 1430442}}, {"model": "metainfo.source", "pk": 1611, "fields": {"orig_filename": "Steiner_Ludwig_1888_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 174f.", "author": "", "orig_id": 1471203}}, {"model": "metainfo.source", "pk": 1612, "fields": {"orig_filename": "Steiner_Maximilian_1830_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 175", "author": "", "orig_id": 1430482}}, {"model": "metainfo.source", "pk": 1613, "fields": {"orig_filename": "Steiner_Maximilian_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 175f.", "author": "", "orig_id": 1430584}}, {"model": "metainfo.source", "pk": 1614, "fields": {"orig_filename": "Steiner_Melchior_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 176", "author": "", "orig_id": 1430586}}, {"model": "metainfo.source", "pk": 1615, "fields": {"orig_filename": "Steiner_Rudolf-Joseph-Lorenz_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 176f.", "author": "", "orig_id": 1430633}}, {"model": "metainfo.source", "pk": 1616, "fields": {"orig_filename": "Steiner_Sebastian_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 177f.", "author": "", "orig_id": 1430637}}, {"model": "metainfo.source", "pk": 1617, "fields": {"orig_filename": "Steiner_Siegfried_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178", "author": "", "orig_id": 1823320}}, {"model": "metainfo.source", "pk": 1618, "fields": {"orig_filename": "Steiner_Sigmund-Anton_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178f.", "author": "", "orig_id": 1430640}}, {"model": "metainfo.source", "pk": 1619, "fields": {"orig_filename": "Steiner_Sigmund_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178", "author": "", "orig_id": 1430639}}, {"model": "metainfo.source", "pk": 1620, "fields": {"orig_filename": "Steiner_Viktor_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 179", "author": "", "orig_id": 1430642}}, {"model": "metainfo.source", "pk": 1621, "fields": {"orig_filename": "Steinfeld_Franz_1750_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430312}}, {"model": "metainfo.source", "pk": 1622, "fields": {"orig_filename": "Steinfeld_Franz_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430311}}, {"model": "metainfo.source", "pk": 1623, "fields": {"orig_filename": "Steinfeld_Wilhelm_1816_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430313}}, {"model": "metainfo.source", "pk": 1624, "fields": {"orig_filename": "Steingraber_Sigmund_1837_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183f.", "author": "", "orig_id": 1430318}}, {"model": "metainfo.source", "pk": 1625, "fields": {"orig_filename": "Steinhaeusl_Otto_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 184", "author": "", "orig_id": 1430360}}, {"model": "metainfo.source", "pk": 1626, "fields": {"orig_filename": "Steinhardt_Antal_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 185", "author": "", "orig_id": 1458631}}, {"model": "metainfo.source", "pk": 1627, "fields": {"orig_filename": "Steinhard_Erich_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 184f.", "author": "", "orig_id": 1430461}}, {"model": "metainfo.source", "pk": 1628, "fields": {"orig_filename": "Steinhauser_Adolf-Maximilian_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 185f.", "author": "", "orig_id": 1430555}}, {"model": "metainfo.source", "pk": 1629, "fields": {"orig_filename": "Steinhauser_Anton_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 186", "author": "", "orig_id": 1430556}}, {"model": "metainfo.source", "pk": 1630, "fields": {"orig_filename": "Steinhauser_Anton_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 186f.", "author": "", "orig_id": 1430564}}, {"model": "metainfo.source", "pk": 1631, "fields": {"orig_filename": "Steinhauser_Josef_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187", "author": "", "orig_id": 1430664}}, {"model": "metainfo.source", "pk": 1632, "fields": {"orig_filename": "Steinhauser_Robert_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187", "author": "", "orig_id": 1430668}}, {"model": "metainfo.source", "pk": 1633, "fields": {"orig_filename": "Steinhausz_Gyula_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1430552}}, {"model": "metainfo.source", "pk": 1634, "fields": {"orig_filename": "Steinheil_Carl-August_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187f.", "author": "", "orig_id": 1430769}}, {"model": "metainfo.source", "pk": 1635, "fields": {"orig_filename": "Steinherz_Samuel_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 188", "author": "", "orig_id": 1430773}}, {"model": "metainfo.source", "pk": 1636, "fields": {"orig_filename": "Steininger_Augustin_1794_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 188f.", "author": "", "orig_id": 1430818}}, {"model": "metainfo.source", "pk": 1637, "fields": {"orig_filename": "Steininger_Johann-Nep_1856_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 189", "author": "", "orig_id": 1472588}}, {"model": "metainfo.source", "pk": 1638, "fields": {"orig_filename": "Steininger_Josef_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 189f.", "author": "", "orig_id": 1430826}}, {"model": "metainfo.source", "pk": 1639, "fields": {"orig_filename": "Steininger_Karl_1772_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190", "author": "", "orig_id": 1430829}}, {"model": "metainfo.source", "pk": 1640, "fields": {"orig_filename": "Steininger_Karl_1804_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190", "author": "", "orig_id": 1430866}}, {"model": "metainfo.source", "pk": 1641, "fields": {"orig_filename": "Steininger_Karl_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190f.", "author": "", "orig_id": 1843702}}, {"model": "metainfo.source", "pk": 1642, "fields": {"orig_filename": "Steinitz-Moser_Marie_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 192f.", "author": "", "orig_id": 1430332}}, {"model": "metainfo.source", "pk": 1643, "fields": {"orig_filename": "Steinitz_Eduard_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193", "author": "", "orig_id": 1430876}}, {"model": "metainfo.source", "pk": 1644, "fields": {"orig_filename": "Steinitz_Heinrich_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 191", "author": "", "orig_id": 1430915}}, {"model": "metainfo.source", "pk": 1645, "fields": {"orig_filename": "Steinitz_Leo_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 191f.", "author": "", "orig_id": 1430294}}, {"model": "metainfo.source", "pk": 1646, "fields": {"orig_filename": "Steinitz_Wilhelm_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 192", "author": "", "orig_id": 1414679}}, {"model": "metainfo.source", "pk": 1647, "fields": {"orig_filename": "Steinkeller_Piotr-Antoni_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193", "author": "", "orig_id": 1430337}}, {"model": "metainfo.source", "pk": 1648, "fields": {"orig_filename": "Steinkeller_Rudolf_1805_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193f.", "author": "", "orig_id": 1430339}}, {"model": "metainfo.source", "pk": 1649, "fields": {"orig_filename": "Steinko_Franz_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 194", "author": "", "orig_id": 1430343}}, {"model": "metainfo.source", "pk": 1650, "fields": {"orig_filename": "Steinlechner_Paul_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 195", "author": "", "orig_id": 1430432}}, {"model": "metainfo.source", "pk": 1651, "fields": {"orig_filename": "Steinle_Eduard-Jakob_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 194f.", "author": "", "orig_id": 1430380}}, {"model": "metainfo.source", "pk": 1652, "fields": {"orig_filename": "Steinmann_Josef-Johann_1779_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 196", "author": "", "orig_id": 1429670}}, {"model": "metainfo.source", "pk": 1653, "fields": {"orig_filename": "Steinmayr_Johann_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 196f.", "author": "", "orig_id": 1429728}}, {"model": "metainfo.source", "pk": 1654, "fields": {"orig_filename": "Steinmetzer_Franz-Xav_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197", "author": "", "orig_id": 1429836}}, {"model": "metainfo.source", "pk": 1655, "fields": {"orig_filename": "Steinringer_Ferdinand_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197", "author": "", "orig_id": 1429838}}, {"model": "metainfo.source", "pk": 1656, "fields": {"orig_filename": "Steinsberg_Moritz_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197f.", "author": "", "orig_id": 1429842}}, {"model": "metainfo.source", "pk": 1657, "fields": {"orig_filename": "Steinschneider_Hermann_1889_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 198", "author": "", "orig_id": 1429845}}, {"model": "metainfo.source", "pk": 1658, "fields": {"orig_filename": "Steinschneider_Moritz_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 198f.", "author": "", "orig_id": 1429884}}, {"model": "metainfo.source", "pk": 1659, "fields": {"orig_filename": "Steinschneider_Otto_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 199f.", "author": "", "orig_id": 1449930}}, {"model": "metainfo.source", "pk": 1660, "fields": {"orig_filename": "Steinsky_Wilhelm_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200", "author": "", "orig_id": 1429889}}, {"model": "metainfo.source", "pk": 1661, "fields": {"orig_filename": "Steinwender_Angelus_1895_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200", "author": "", "orig_id": 1429891}}, {"model": "metainfo.source", "pk": 1662, "fields": {"orig_filename": "Steinwender_Otto_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200f.", "author": "", "orig_id": 1429894}}, {"model": "metainfo.source", "pk": 1663, "fields": {"orig_filename": "Steinwenter_Arthur_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 201", "author": "", "orig_id": 1430102}}, {"model": "metainfo.source", "pk": 1664, "fields": {"orig_filename": "Stein_Alwin_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 145f.", "author": "", "orig_id": 1428310}}, {"model": "metainfo.source", "pk": 1665, "fields": {"orig_filename": "Stein_Anton-Joseph_1759_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 146", "author": "", "orig_id": 1428311}}, {"model": "metainfo.source", "pk": 1666, "fields": {"orig_filename": "Stein_Arthur_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 146f.", "author": "", "orig_id": 1428313}}, {"model": "metainfo.source", "pk": 1667, "fields": {"orig_filename": "Stein_Carl-Andreas_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 147", "author": "", "orig_id": 1428432}}, {"model": "metainfo.source", "pk": 1668, "fields": {"orig_filename": "Stein_Carl-Robert_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 147f.", "author": "", "orig_id": 1428433}}, {"model": "metainfo.source", "pk": 1669, "fields": {"orig_filename": "Stein_Conrad_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428434}}, {"model": "metainfo.source", "pk": 1670, "fields": {"orig_filename": "Stein_Emerich_1762_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428360}}, {"model": "metainfo.source", "pk": 1671, "fields": {"orig_filename": "Stein_Franz_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149f.", "author": "", "orig_id": 1428367}}, {"model": "metainfo.source", "pk": 1672, "fields": {"orig_filename": "Stein_Friedrich-Johann-Philipp-Emil_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150", "author": "", "orig_id": 1428368}}, {"model": "metainfo.source", "pk": 1673, "fields": {"orig_filename": "Stein_Helene_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156", "author": "", "orig_id": 1464855}}, {"model": "metainfo.source", "pk": 1674, "fields": {"orig_filename": "Stein_Isidor_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150f.", "author": "", "orig_id": 1470349}}, {"model": "metainfo.source", "pk": 1675, "fields": {"orig_filename": "Stein_Karl_1801_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428430}}, {"model": "metainfo.source", "pk": 1676, "fields": {"orig_filename": "Stein_Leo_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 151", "author": "", "orig_id": 1428474}}, {"model": "metainfo.source", "pk": 1677, "fields": {"orig_filename": "Stein_Lorenz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 151f.", "author": "", "orig_id": 1428476}}, {"model": "metainfo.source", "pk": 1678, "fields": {"orig_filename": "Stein_Ludwig_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 152f.", "author": "", "orig_id": 1428530}}, {"model": "metainfo.source", "pk": 1679, "fields": {"orig_filename": "Stein_Marc-Aurel_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 153", "author": "", "orig_id": 1428532}}, {"model": "metainfo.source", "pk": 1680, "fields": {"orig_filename": "Stein_Markus_1845_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 153f.", "author": "", "orig_id": 1428534}}, {"model": "metainfo.source", "pk": 1681, "fields": {"orig_filename": "Stein_Matthaeus-Andreas_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 154", "author": "", "orig_id": 1428536}}, {"model": "metainfo.source", "pk": 1682, "fields": {"orig_filename": "Stein_Maximilian_1814_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 154f.", "author": "", "orig_id": 1428537}}, {"model": "metainfo.source", "pk": 1683, "fields": {"orig_filename": "Stein_Otto_1893_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 155", "author": "", "orig_id": 1438161}}, {"model": "metainfo.source", "pk": 1684, "fields": {"orig_filename": "Stein_Richard_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 155f.", "author": "", "orig_id": 1427751}}, {"model": "metainfo.source", "pk": 1685, "fields": {"orig_filename": "Stein_Salomon_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150", "author": "", "orig_id": 1470348}}, {"model": "metainfo.source", "pk": 1686, "fields": {"orig_filename": "Stein_Viktor_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156", "author": "", "orig_id": 1427755}}, {"model": "metainfo.source", "pk": 1687, "fields": {"orig_filename": "Steiskal_Theodor_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 201f.", "author": "", "orig_id": 1429407}}, {"model": "metainfo.source", "pk": 1688, "fields": {"orig_filename": "Stejskal_Franz_1829_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 202", "author": "", "orig_id": 1429354}}, {"model": "metainfo.source", "pk": 1689, "fields": {"orig_filename": "Stejskal_Karl-Borr-Franz-Josef_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 202f.", "author": "", "orig_id": 1429356}}, {"model": "metainfo.source", "pk": 1690, "fields": {"orig_filename": "Stekel_Wilhelm_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 203", "author": "", "orig_id": 1429515}}, {"model": "metainfo.source", "pk": 1691, "fields": {"orig_filename": "Stellwag-Carion_Alois-Peter-Franz_1753_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 204", "author": "", "orig_id": 1429739}}, {"model": "metainfo.source", "pk": 1692, "fields": {"orig_filename": "Stellwag-Carion_Carl_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 204f.", "author": "", "orig_id": 1429897}}, {"model": "metainfo.source", "pk": 1693, "fields": {"orig_filename": "Stelzel_Franz_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 205", "author": "", "orig_id": 1429898}}, {"model": "metainfo.source", "pk": 1694, "fields": {"orig_filename": "Stelzhamer_Franz-Xav_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 205f.", "author": "", "orig_id": 1427194}}, {"model": "metainfo.source", "pk": 1695, "fields": {"orig_filename": "Stelzhamer_Johann-Christoph_1750_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 206f.", "author": "", "orig_id": 1429956}}, {"model": "metainfo.source", "pk": 1696, "fields": {"orig_filename": "Stelzhammer_Anton_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207", "author": "", "orig_id": 1429911}}, {"model": "metainfo.source", "pk": 1697, "fields": {"orig_filename": "Stelzhammer_Ferdinand_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207", "author": "", "orig_id": 1429951}}, {"model": "metainfo.source", "pk": 1698, "fields": {"orig_filename": "Stembera_Matej-Dobromir_1806_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207f.", "author": "", "orig_id": 1430067}}, {"model": "metainfo.source", "pk": 1699, "fields": {"orig_filename": "Stempfer_Georg_1887_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208", "author": "", "orig_id": 1429298}}, {"model": "metainfo.source", "pk": 1700, "fields": {"orig_filename": "Stenc_Jan_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208", "author": "", "orig_id": 1429310}}, {"model": "metainfo.source", "pk": 1701, "fields": {"orig_filename": "Stenner_Peter-Joseph_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208f.", "author": "", "orig_id": 1429371}}, {"model": "metainfo.source", "pk": 1702, "fields": {"orig_filename": "Stenta_Mario_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 209", "author": "", "orig_id": 1429430}}, {"model": "metainfo.source", "pk": 1703, "fields": {"orig_filename": "Stenta_Michele_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 209f.", "author": "", "orig_id": 1429431}}, {"model": "metainfo.source", "pk": 1704, "fields": {"orig_filename": "Stentrup_Ferdinand-Alois_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 210", "author": "", "orig_id": 1429434}}, {"model": "metainfo.source", "pk": 1705, "fields": {"orig_filename": "Stenzinger-Hillardt_Gabriele-Wilhelmine_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 210", "author": "", "orig_id": 1429480}}, {"model": "metainfo.source", "pk": 1706, "fields": {"orig_filename": "Stepanek_Jan-Nep_1783_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 211f.", "author": "", "orig_id": 1429526}}, {"model": "metainfo.source", "pk": 1707, "fields": {"orig_filename": "Stepanek_Karel_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212", "author": "", "orig_id": 1464125}}, {"model": "metainfo.source", "pk": 1708, "fields": {"orig_filename": "Stepankova_Antonie_1820_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212", "author": "", "orig_id": 1429521}}, {"model": "metainfo.source", "pk": 1709, "fields": {"orig_filename": "Stepan_Vaclav_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 211", "author": "", "orig_id": 1429520}}, {"model": "metainfo.source", "pk": 1710, "fields": {"orig_filename": "Staude_Franz_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119", "author": "", "orig_id": 1427785}}, {"model": "metainfo.source", "pk": 1711, "fields": {"orig_filename": "Staudigl_Gisela_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427793}}, {"model": "metainfo.source", "pk": 1712, "fields": {"orig_filename": "Staudigl_Joseph_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427792}}, {"model": "metainfo.source", "pk": 1713, "fields": {"orig_filename": "Staudigl_Joseph_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427791}}, {"model": "metainfo.source", "pk": 1714, "fields": {"orig_filename": "Staudigl_Oskar-Wilhelm_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120f.", "author": "", "orig_id": 1427837}}, {"model": "metainfo.source", "pk": 1715, "fields": {"orig_filename": "Staudigl_Rudolf_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 121f.", "author": "", "orig_id": 1427900}}, {"model": "metainfo.source", "pk": 1716, "fields": {"orig_filename": "Staud_Johann_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 117f.", "author": "", "orig_id": 1427732}}, {"model": "metainfo.source", "pk": 1717, "fields": {"orig_filename": "Staufer_Johann-Anton_1806_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123", "author": "", "orig_id": 1427960}}, {"model": "metainfo.source", "pk": 1718, "fields": {"orig_filename": "Staufer_Johann-Georg_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 122f.", "author": "", "orig_id": 1427961}}, {"model": "metainfo.source", "pk": 1719, "fields": {"orig_filename": "Stauffer_Josef_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123", "author": "", "orig_id": 1427962}}, {"model": "metainfo.source", "pk": 1720, "fields": {"orig_filename": "Stauffer_Viktor_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123f.", "author": "", "orig_id": 1427996}}, {"model": "metainfo.source", "pk": 1721, "fields": {"orig_filename": "Stauf_Ottokar_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 122", "author": "", "orig_id": 1428136}}, {"model": "metainfo.source", "pk": 1722, "fields": {"orig_filename": "Stauracz_Franz-Xav_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 124", "author": "", "orig_id": 1427998}}, {"model": "metainfo.source", "pk": 1723, "fields": {"orig_filename": "Stava_Julius_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 124f.", "author": "", "orig_id": 1453784}}, {"model": "metainfo.source", "pk": 1724, "fields": {"orig_filename": "Stawa_Franz-Anton_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 125", "author": "", "orig_id": 1428001}}, {"model": "metainfo.source", "pk": 1725, "fields": {"orig_filename": "Stecher-Sebenitz_Ferdinand-Jozef_1779_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 126f.", "author": "", "orig_id": 1428191}}, {"model": "metainfo.source", "pk": 1726, "fields": {"orig_filename": "Stecher_Franz-Anton_1814_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 126", "author": "", "orig_id": 1428014}}, {"model": "metainfo.source", "pk": 1727, "fields": {"orig_filename": "Stech_Vaclav_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 125f.", "author": "", "orig_id": 1428149}}, {"model": "metainfo.source", "pk": 1728, "fields": {"orig_filename": "Steckelmacher_Moritz_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 127", "author": "", "orig_id": 1428295}}, {"model": "metainfo.source", "pk": 1729, "fields": {"orig_filename": "Stecker_Anton_1855_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 127f.", "author": "", "orig_id": 1426641}}, {"model": "metainfo.source", "pk": 1730, "fields": {"orig_filename": "Stecker_Karel_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 128", "author": "", "orig_id": 1428297}}, {"model": "metainfo.source", "pk": 1731, "fields": {"orig_filename": "Stecker_Michael_1786_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 128f.", "author": "", "orig_id": 1428299}}, {"model": "metainfo.source", "pk": 1732, "fields": {"orig_filename": "Steczkowski_Jan-Kanty_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 129", "author": "", "orig_id": 1428346}}, {"model": "metainfo.source", "pk": 1733, "fields": {"orig_filename": "Steczkowski_Jan-Kanty_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 129f.", "author": "", "orig_id": 1428347}}, {"model": "metainfo.source", "pk": 1734, "fields": {"orig_filename": "Steczynski_Maciej-Bogusz-Zygmunt_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 130", "author": "", "orig_id": 1428349}}, {"model": "metainfo.source", "pk": 1735, "fields": {"orig_filename": "Steeb_Christian_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 130f.", "author": "", "orig_id": 1428355}}, {"model": "metainfo.source", "pk": 1736, "fields": {"orig_filename": "Steeb_Gustav_1845_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131", "author": "", "orig_id": 1463259}}, {"model": "metainfo.source", "pk": 1737, "fields": {"orig_filename": "Steeb_Johann-Bapt_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131", "author": "", "orig_id": 1428405}}, {"model": "metainfo.source", "pk": 1738, "fields": {"orig_filename": "Stefanelli_Ioan_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132", "author": "", "orig_id": 1428519}}, {"model": "metainfo.source", "pk": 1739, "fields": {"orig_filename": "Stefanik_Milan-Rastislav_1880_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 133f.", "author": "", "orig_id": 1428527}}, {"model": "metainfo.source", "pk": 1740, "fields": {"orig_filename": "Stefani_Jan_1746_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132f.", "author": "", "orig_id": 1428523}}, {"model": "metainfo.source", "pk": 1741, "fields": {"orig_filename": "Stefanovic-Vilovo_Johann_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134", "author": "", "orig_id": 1427747}}, {"model": "metainfo.source", "pk": 1742, "fields": {"orig_filename": "Stefanovic_Franjo_1879_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134", "author": "", "orig_id": 1427736}}, {"model": "metainfo.source", "pk": 1743, "fields": {"orig_filename": "Stefanowicz_Samuel-Cyrill_1755_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134f.", "author": "", "orig_id": 1427797}}, {"model": "metainfo.source", "pk": 1744, "fields": {"orig_filename": "Stefanyk_Vasyl_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 135", "author": "", "orig_id": 1427800}}, {"model": "metainfo.source", "pk": 1745, "fields": {"orig_filename": "Stefan_Christian_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131f.", "author": "", "orig_id": 1428462}}, {"model": "metainfo.source", "pk": 1746, "fields": {"orig_filename": "Stefan_Josef_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132", "author": "", "orig_id": 1428465}}, {"model": "metainfo.source", "pk": 1747, "fields": {"orig_filename": "Steffal_Vaclav_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 135f.", "author": "", "orig_id": 1427850}}, {"model": "metainfo.source", "pk": 1748, "fields": {"orig_filename": "Steffen_Karl-Emanuel_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 136", "author": "", "orig_id": 1427863}}, {"model": "metainfo.source", "pk": 1749, "fields": {"orig_filename": "Stegensek_Avgustin_1875_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 136f.", "author": "", "orig_id": 1427918}}, {"model": "metainfo.source", "pk": 1750, "fields": {"orig_filename": "Steger_Anton_1768_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 137", "author": "", "orig_id": 1427920}}, {"model": "metainfo.source", "pk": 1751, "fields": {"orig_filename": "Steger_Emil_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 137", "author": "", "orig_id": 1437608}}, {"model": "metainfo.source", "pk": 1752, "fields": {"orig_filename": "Steger_Franz_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 138", "author": "", "orig_id": 1427921}}, {"model": "metainfo.source", "pk": 1753, "fields": {"orig_filename": "Steger_Heinrich_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 138f.", "author": "", "orig_id": 1428012}}, {"model": "metainfo.source", "pk": 1754, "fields": {"orig_filename": "Steger_Joseph_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 139", "author": "", "orig_id": 1428047}}, {"model": "metainfo.source", "pk": 1755, "fields": {"orig_filename": "Stegmayer_Ferdinand_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 139f.", "author": "", "orig_id": 1428058}}, {"model": "metainfo.source", "pk": 1756, "fields": {"orig_filename": "Stegmayer_Karl_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 140", "author": "", "orig_id": 1428059}}, {"model": "metainfo.source", "pk": 1757, "fields": {"orig_filename": "Stegmayer_Matthaeus_1771_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 140", "author": "", "orig_id": 1428060}}, {"model": "metainfo.source", "pk": 1758, "fields": {"orig_filename": "Stegnar_Felix_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1428097}}, {"model": "metainfo.source", "pk": 1759, "fields": {"orig_filename": "Stehle_Adele_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1467852}}, {"model": "metainfo.source", "pk": 1760, "fields": {"orig_filename": "Stehle_Franz_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1841950}}, {"model": "metainfo.source", "pk": 1761, "fields": {"orig_filename": "Stehlik-Cenkow-Treustaett_Emanuel_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141f.", "author": "", "orig_id": 1428101}}, {"model": "metainfo.source", "pk": 1762, "fields": {"orig_filename": "Stehlin_Sebastian_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142", "author": "", "orig_id": 1428153}}, {"model": "metainfo.source", "pk": 1763, "fields": {"orig_filename": "Stehlin_Stanislaus_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142", "author": "", "orig_id": 1428154}}, {"model": "metainfo.source", "pk": 1764, "fields": {"orig_filename": "Steidele_Raphael-Johann_1737_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142f.", "author": "", "orig_id": 1428158}}, {"model": "metainfo.source", "pk": 1765, "fields": {"orig_filename": "Steidler_Josef_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 143f.", "author": "", "orig_id": 1428198}}, {"model": "metainfo.source", "pk": 1766, "fields": {"orig_filename": "Steidle_Richard_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 143", "author": "", "orig_id": 1428196}}, {"model": "metainfo.source", "pk": 1767, "fields": {"orig_filename": "Steigentesch_Ernst-August_1774_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 144", "author": "", "orig_id": 1427641}}, {"model": "metainfo.source", "pk": 1768, "fields": {"orig_filename": "Steiger_Benedikt_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 144f.", "author": "", "orig_id": 1428202}}, {"model": "metainfo.source", "pk": 1769, "fields": {"orig_filename": "Steinach_Eugen_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156f.", "author": "", "orig_id": 1427603}}, {"model": "metainfo.source", "pk": 1770, "fields": {"orig_filename": "Steinach_Simon_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 157f.", "author": "", "orig_id": 1427762}}, {"model": "metainfo.source", "pk": 1771, "fields": {"orig_filename": "Steinach_Wilhelm_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 158", "author": "", "orig_id": 1427807}}, {"model": "metainfo.source", "pk": 1772, "fields": {"orig_filename": "Steinacker_Edmund_1839_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 158f.", "author": "", "orig_id": 1428180}}, {"model": "metainfo.source", "pk": 1773, "fields": {"orig_filename": "Steinacker_Gustav-Wilhelm_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 159", "author": "", "orig_id": 1427810}}, {"model": "metainfo.source", "pk": 1774, "fields": {"orig_filename": "Steinbach_Emil_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 159f.", "author": "", "orig_id": 1427877}}, {"model": "metainfo.source", "pk": 1775, "fields": {"orig_filename": "Steinbach_Gustav_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 160", "author": "", "orig_id": 1427880}}, {"model": "metainfo.source", "pk": 1776, "fields": {"orig_filename": "Steinbach_Josef_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427884}}, {"model": "metainfo.source", "pk": 1777, "fields": {"orig_filename": "Steinbach_Josef_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 160f.", "author": "", "orig_id": 1427924}}, {"model": "metainfo.source", "pk": 1778, "fields": {"orig_filename": "Steinbach_Leopold_1904_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161", "author": "", "orig_id": 1427925}}, {"model": "metainfo.source", "pk": 1779, "fields": {"orig_filename": "Steinberger_Marianne_1887_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161", "author": "", "orig_id": 1448192}}, {"model": "metainfo.source", "pk": 1780, "fields": {"orig_filename": "Steinberger_Philipp_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161f.", "author": "", "orig_id": 1428018}}, {"model": "metainfo.source", "pk": 1781, "fields": {"orig_filename": "Steinberg_Julius_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427976}}, {"model": "metainfo.source", "pk": 1782, "fields": {"orig_filename": "Steinbrener_Johann_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 162", "author": "", "orig_id": 1430566}}, {"model": "metainfo.source", "pk": 1783, "fields": {"orig_filename": "Steinbrener_Rupert_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 162f.", "author": "", "orig_id": 1842549}}, {"model": "metainfo.source", "pk": 1784, "fields": {"orig_filename": "Steinbuechel-Rheinwall_Anton_1790_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 163", "author": "", "orig_id": 1430572}}, {"model": "metainfo.source", "pk": 1785, "fields": {"orig_filename": "Steindachner_Franz_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 164", "author": "", "orig_id": 1430623}}, {"model": "metainfo.source", "pk": 1786, "fields": {"orig_filename": "Steindl_Imre_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 164f.", "author": "", "orig_id": 1430626}}, {"model": "metainfo.source", "pk": 1787, "fields": {"orig_filename": "Steindl_Mathias-Paulus_1761_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165", "author": "", "orig_id": 1430684}}, {"model": "metainfo.source", "pk": 1788, "fields": {"orig_filename": "Steinebach_Friedrich_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166", "author": "", "orig_id": 1430733}}, {"model": "metainfo.source", "pk": 1789, "fields": {"orig_filename": "Steinegger_Ambros_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166", "author": "", "orig_id": 1430737}}, {"model": "metainfo.source", "pk": 1790, "fields": {"orig_filename": "Steinegger_Otto_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166f.", "author": "", "orig_id": 1430833}}, {"model": "metainfo.source", "pk": 1791, "fields": {"orig_filename": "Steiner-Felsburg_Albrecht_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 180", "author": "", "orig_id": 1430691}}, {"model": "metainfo.source", "pk": 1792, "fields": {"orig_filename": "Steiner-Pfungen_Eduard_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181", "author": "", "orig_id": 1430270}}, {"model": "metainfo.source", "pk": 1793, "fields": {"orig_filename": "Steiner-Pfungen_Joseph_1767_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 180f.", "author": "", "orig_id": 1430305}}, {"model": "metainfo.source", "pk": 1794, "fields": {"orig_filename": "Steiner-Pfungen_Robert-Wilhelm-Joseph_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181", "author": "", "orig_id": 1430306}}, {"model": "metainfo.source", "pk": 1795, "fields": {"orig_filename": "Steiner-Prag_Hugo_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181f.", "author": "", "orig_id": 1430307}}, {"model": "metainfo.source", "pk": 1796, "fields": {"orig_filename": "Steiner-Wischenbart_Josef_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 182f.", "author": "", "orig_id": 1430308}}, {"model": "metainfo.source", "pk": 1797, "fields": {"orig_filename": "Steiner_Agnes-Klara_1813_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 167", "author": "", "orig_id": 1430480}}, {"model": "metainfo.source", "pk": 1798, "fields": {"orig_filename": "Steiner_Bernd_1884_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 167f.", "author": "", "orig_id": 1430935}}, {"model": "metainfo.source", "pk": 1799, "fields": {"orig_filename": "Steiner_Franz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 168", "author": "", "orig_id": 1430201}}, {"model": "metainfo.source", "pk": 1800, "fields": {"orig_filename": "Steiner_Friedrich_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 168f.", "author": "", "orig_id": 1430247}}, {"model": "metainfo.source", "pk": 1801, "fields": {"orig_filename": "Steiner_Fueloep_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 169", "author": "", "orig_id": 1430630}}, {"model": "metainfo.source", "pk": 1802, "fields": {"orig_filename": "Steiner_Gabor_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 169f.", "author": "", "orig_id": 1430250}}, {"model": "metainfo.source", "pk": 1803, "fields": {"orig_filename": "Steiner_Hanna_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 170f.", "author": "", "orig_id": 1430253}}, {"model": "metainfo.source", "pk": 1804, "fields": {"orig_filename": "Steiner_Heinrich-Elchanan_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 171", "author": "", "orig_id": 1430295}}, {"model": "metainfo.source", "pk": 1805, "fields": {"orig_filename": "Steiner_Hermann_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 171f.", "author": "", "orig_id": 1842752}}, {"model": "metainfo.source", "pk": 1806, "fields": {"orig_filename": "Steiner_Johann_1833_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172f.", "author": "", "orig_id": 1430303}}, {"model": "metainfo.source", "pk": 1807, "fields": {"orig_filename": "Steiner_Josef_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 173", "author": "", "orig_id": 1430357}}, {"model": "metainfo.source", "pk": 1808, "fields": {"orig_filename": "Steiner_Jo_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172", "author": "", "orig_id": 1430388}}, {"model": "metainfo.source", "pk": 1809, "fields": {"orig_filename": "Steiner_Julius_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 173f.", "author": "", "orig_id": 1430393}}, {"model": "metainfo.source", "pk": 1810, "fields": {"orig_filename": "Steiner_Julius_1863_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 177f.", "author": "", "orig_id": 1430395}}, {"model": "metainfo.source", "pk": 1811, "fields": {"orig_filename": "Stadler_Joseph_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 74", "author": "", "orig_id": 1429027}}, {"model": "metainfo.source", "pk": 1812, "fields": {"orig_filename": "Stadler_Josip_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 74f.", "author": "", "orig_id": 1429062}}, {"model": "metainfo.source", "pk": 1813, "fields": {"orig_filename": "Stadler_Maximilian_1748_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 75f.", "author": "", "orig_id": 1429066}}, {"model": "metainfo.source", "pk": 1814, "fields": {"orig_filename": "Stadlmayr_Franz_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 76", "author": "", "orig_id": 1429149}}, {"model": "metainfo.source", "pk": 1815, "fields": {"orig_filename": "Stadl_Josef_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 70f.", "author": "", "orig_id": 1428923}}, {"model": "metainfo.source", "pk": 1816, "fields": {"orig_filename": "Stadl_Peter_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 71", "author": "", "orig_id": 1428926}}, {"model": "metainfo.source", "pk": 1817, "fields": {"orig_filename": "Stadnicki_Jan_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77", "author": "", "orig_id": 1429204}}, {"model": "metainfo.source", "pk": 1818, "fields": {"orig_filename": "Stadnicki_Kazimierz_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77", "author": "", "orig_id": 1429205}}, {"model": "metainfo.source", "pk": 1819, "fields": {"orig_filename": "Stadnicki_Stanislaw-Jan-Kanty_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77f.", "author": "", "orig_id": 1429207}}, {"model": "metainfo.source", "pk": 1820, "fields": {"orig_filename": "Staehlin_Gustav-Adolf_1816_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1429261}}, {"model": "metainfo.source", "pk": 1821, "fields": {"orig_filename": "Staehlin_Heinrich-August_1812_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1429262}}, {"model": "metainfo.source", "pk": 1822, "fields": {"orig_filename": "Staehlin_Karl_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1428570}}, {"model": "metainfo.source", "pk": 1823, "fields": {"orig_filename": "Staetter_Philipp_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78f.", "author": "", "orig_id": 1464534}}, {"model": "metainfo.source", "pk": 1824, "fields": {"orig_filename": "Staffler_Johann-Jakob_1783_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 79f.", "author": "", "orig_id": 1428662}}, {"model": "metainfo.source", "pk": 1825, "fields": {"orig_filename": "Staffler_Josef_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 80", "author": "", "orig_id": 1428664}}, {"model": "metainfo.source", "pk": 1826, "fields": {"orig_filename": "Staff_Alois_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 79", "author": "", "orig_id": 1428610}}, {"model": "metainfo.source", "pk": 1827, "fields": {"orig_filename": "Stafl_Otakar_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 80f.", "author": "", "orig_id": 1464916}}, {"model": "metainfo.source", "pk": 1828, "fields": {"orig_filename": "Stahly_Gyoergy_1809_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82", "author": "", "orig_id": 1428217}}, {"model": "metainfo.source", "pk": 1829, "fields": {"orig_filename": "Stahly_Ignacz_1787_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82", "author": "", "orig_id": 1428219}}, {"model": "metainfo.source", "pk": 1830, "fields": {"orig_filename": "Stahl_Ludwig_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 81", "author": "", "orig_id": 1428170}}, {"model": "metainfo.source", "pk": 1831, "fields": {"orig_filename": "Stahl_Philipp_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 81f.", "author": "", "orig_id": 1428174}}, {"model": "metainfo.source", "pk": 1832, "fields": {"orig_filename": "Stainer_Karl_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82f.", "author": "", "orig_id": 1448660}}, {"model": "metainfo.source", "pk": 1833, "fields": {"orig_filename": "Staininger_Michael_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 83", "author": "", "orig_id": 1428253}}, {"model": "metainfo.source", "pk": 1834, "fields": {"orig_filename": "Stalmach_Paul_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 83f.", "author": "", "orig_id": 1428316}}, {"model": "metainfo.source", "pk": 1835, "fields": {"orig_filename": "Stalzer_Hans_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 84", "author": "", "orig_id": 1428317}}, {"model": "metainfo.source", "pk": 1836, "fields": {"orig_filename": "Stalzer_Josef_1880_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 84f.", "author": "", "orig_id": 1428318}}, {"model": "metainfo.source", "pk": 1837, "fields": {"orig_filename": "Stammhammer_Josef_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 85f.", "author": "", "orig_id": 1428327}}, {"model": "metainfo.source", "pk": 1838, "fields": {"orig_filename": "Stamm_Ferdinand_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 85", "author": "", "orig_id": 1428323}}, {"model": "metainfo.source", "pk": 1839, "fields": {"orig_filename": "Stampfer_Coelestin_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 86", "author": "", "orig_id": 1428381}}, {"model": "metainfo.source", "pk": 1840, "fields": {"orig_filename": "Stampfer_Simon_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 86f.", "author": "", "orig_id": 1428387}}, {"model": "metainfo.source", "pk": 1841, "fields": {"orig_filename": "Stampfl_Josef_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 87", "author": "", "orig_id": 1428437}}, {"model": "metainfo.source", "pk": 1842, "fields": {"orig_filename": "Standfest_Franz_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88", "author": "", "orig_id": 1428446}}, {"model": "metainfo.source", "pk": 1843, "fields": {"orig_filename": "Standl_Ivan_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88", "author": "", "orig_id": 1428448}}, {"model": "metainfo.source", "pk": 1844, "fields": {"orig_filename": "Standthartner_Josef_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88f.", "author": "", "orig_id": 1428502}}, {"model": "metainfo.source", "pk": 1845, "fields": {"orig_filename": "Stand_Adolf_1870_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 87f.", "author": "", "orig_id": 1428442}}, {"model": "metainfo.source", "pk": 1846, "fields": {"orig_filename": "Stanecki_Tomasz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 89", "author": "", "orig_id": 1429203}}, {"model": "metainfo.source", "pk": 1847, "fields": {"orig_filename": "Stanek_Frantisek_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 89f.", "author": "", "orig_id": 1428451}}, {"model": "metainfo.source", "pk": 1848, "fields": {"orig_filename": "Stanek_Jan_1828_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 90", "author": "", "orig_id": 1428482}}, {"model": "metainfo.source", "pk": 1849, "fields": {"orig_filename": "Stanek_Josef_1883_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 90f.", "author": "", "orig_id": 1464803}}, {"model": "metainfo.source", "pk": 1850, "fields": {"orig_filename": "Stanek_Vaclav_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 91", "author": "", "orig_id": 1428484}}, {"model": "metainfo.source", "pk": 1851, "fields": {"orig_filename": "Stanic_Konstantin_1756_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 91f.", "author": "", "orig_id": 1427765}}, {"model": "metainfo.source", "pk": 1852, "fields": {"orig_filename": "Stanic_Valentin_1774_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 92f.", "author": "", "orig_id": 1427764}}, {"model": "metainfo.source", "pk": 1853, "fields": {"orig_filename": "Stanislawski_Jan-Grzegorz_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427773}}, {"model": "metainfo.source", "pk": 1854, "fields": {"orig_filename": "Stanke_Franz_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427777}}, {"model": "metainfo.source", "pk": 1855, "fields": {"orig_filename": "Stanke_Leopold-Franz_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427778}}, {"model": "metainfo.source", "pk": 1856, "fields": {"orig_filename": "Stankovich_Pietro-Mattia_1771_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 94f.", "author": "", "orig_id": 1428440}}, {"model": "metainfo.source", "pk": 1857, "fields": {"orig_filename": "Stankovic_Kornelije_1831_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 94", "author": "", "orig_id": 1427779}}, {"model": "metainfo.source", "pk": 1858, "fields": {"orig_filename": "Stankovsky_Josef-Jiri_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 95", "author": "", "orig_id": 1427824}}, {"model": "metainfo.source", "pk": 1859, "fields": {"orig_filename": "Stanojevic_Stanoje_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 95f.", "author": "", "orig_id": 1427825}}, {"model": "metainfo.source", "pk": 1860, "fields": {"orig_filename": "Stanonik_Franz_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 96", "author": "", "orig_id": 1427827}}, {"model": "metainfo.source", "pk": 1861, "fields": {"orig_filename": "Stapf_Johann-Josef-Anton_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 96f.", "author": "", "orig_id": 1427885}}, {"model": "metainfo.source", "pk": 1862, "fields": {"orig_filename": "Stapf_Josef_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98", "author": "", "orig_id": 1470903}}, {"model": "metainfo.source", "pk": 1863, "fields": {"orig_filename": "Stapf_Josef_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98", "author": "", "orig_id": 1470388}}, {"model": "metainfo.source", "pk": 1864, "fields": {"orig_filename": "Stapf_Joseph-Ambros_1785_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97", "author": "", "orig_id": 1427836}}, {"model": "metainfo.source", "pk": 1865, "fields": {"orig_filename": "Stapf_Joseph_1779_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97", "author": "", "orig_id": 1470387}}, {"model": "metainfo.source", "pk": 1866, "fields": {"orig_filename": "Stapf_Martin_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97f.", "author": "", "orig_id": 1427886}}, {"model": "metainfo.source", "pk": 1867, "fields": {"orig_filename": "Stapf_Otto_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98f.", "author": "", "orig_id": 1427887}}, {"model": "metainfo.source", "pk": 1868, "fields": {"orig_filename": "Stapf_Thomas_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 99", "author": "", "orig_id": 1427888}}, {"model": "metainfo.source", "pk": 1869, "fields": {"orig_filename": "Starcevic_Ante_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 99f.", "author": "", "orig_id": 1427893}}, {"model": "metainfo.source", "pk": 1870, "fields": {"orig_filename": "Starcevic_David_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100", "author": "", "orig_id": 1427894}}, {"model": "metainfo.source", "pk": 1871, "fields": {"orig_filename": "Starcevic_Mile_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100", "author": "", "orig_id": 1427895}}, {"model": "metainfo.source", "pk": 1872, "fields": {"orig_filename": "Starck_Johann-Anton_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100f.", "author": "", "orig_id": 1427938}}, {"model": "metainfo.source", "pk": 1873, "fields": {"orig_filename": "Starck_Johann-David_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 101", "author": "", "orig_id": 1427939}}, {"model": "metainfo.source", "pk": 1874, "fields": {"orig_filename": "Starek_Ludovit_1803_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102", "author": "", "orig_id": 1427982}}, {"model": "metainfo.source", "pk": 1875, "fields": {"orig_filename": "Stare_Josip_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 101", "author": "", "orig_id": 1427947}}, {"model": "metainfo.source", "pk": 1876, "fields": {"orig_filename": "Starhemberg_Anton-Gundakar_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102", "author": "", "orig_id": 1427984}}, {"model": "metainfo.source", "pk": 1877, "fields": {"orig_filename": "Starhemberg_Camillo-Heinrich_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102f.", "author": "", "orig_id": 1427986}}, {"model": "metainfo.source", "pk": 1878, "fields": {"orig_filename": "Starhemberg_Camillo-Ruediger_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103", "author": "", "orig_id": 1427987}}, {"model": "metainfo.source", "pk": 1879, "fields": {"orig_filename": "Starhemberg_Ernst-Ruediger_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103", "author": "", "orig_id": 1427989}}, {"model": "metainfo.source", "pk": 1880, "fields": {"orig_filename": "Starhemberg_Franziska_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103f.", "author": "", "orig_id": 1428027}}, {"model": "metainfo.source", "pk": 1881, "fields": {"orig_filename": "Starhemberg_Ludwig_1762_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 104f.", "author": "", "orig_id": 1428034}}, {"model": "metainfo.source", "pk": 1882, "fields": {"orig_filename": "Stark-Rungberg_Franz-Xav_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 108", "author": "", "orig_id": 1428126}}, {"model": "metainfo.source", "pk": 1883, "fields": {"orig_filename": "Starkenstein_Emil_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 109f.", "author": "", "orig_id": 1427600}}, {"model": "metainfo.source", "pk": 1884, "fields": {"orig_filename": "Starke_Friedrich_1774_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 108f.", "author": "", "orig_id": 1428129}}, {"model": "metainfo.source", "pk": 1885, "fields": {"orig_filename": "Starkl_Gottfried_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 110", "author": "", "orig_id": 1428275}}, {"model": "metainfo.source", "pk": 1886, "fields": {"orig_filename": "Stark_Adele_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105f.", "author": "", "orig_id": 1428072}}, {"model": "metainfo.source", "pk": 1887, "fields": {"orig_filename": "Stark_Franz-Anton_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 106", "author": "", "orig_id": 1428081}}, {"model": "metainfo.source", "pk": 1888, "fields": {"orig_filename": "Stark_Johannes_1794_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 106", "author": "", "orig_id": 1428083}}, {"model": "metainfo.source", "pk": 1889, "fields": {"orig_filename": "Stark_Josef-August_1782_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107", "author": "", "orig_id": 1428118}}, {"model": "metainfo.source", "pk": 1890, "fields": {"orig_filename": "Stark_Lipot_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107", "author": "", "orig_id": 1428122}}, {"model": "metainfo.source", "pk": 1891, "fields": {"orig_filename": "Stark_Simon_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107f.", "author": "", "orig_id": 1427943}}, {"model": "metainfo.source", "pk": 1892, "fields": {"orig_filename": "Starlinger_Josef_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 110f.", "author": "", "orig_id": 1428277}}, {"model": "metainfo.source", "pk": 1893, "fields": {"orig_filename": "Stary_Emanuel_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111", "author": "", "orig_id": 1428285}}, {"model": "metainfo.source", "pk": 1894, "fields": {"orig_filename": "Stary_Emanuel_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111", "author": "", "orig_id": 1428330}}, {"model": "metainfo.source", "pk": 1895, "fields": {"orig_filename": "Stary_Sigismund-Anton_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111f.", "author": "", "orig_id": 1428332}}, {"model": "metainfo.source", "pk": 1896, "fields": {"orig_filename": "Starzengruber_Josef_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112", "author": "", "orig_id": 1428334}}, {"model": "metainfo.source", "pk": 1897, "fields": {"orig_filename": "Starzer_Albert_1863_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112", "author": "", "orig_id": 1428339}}, {"model": "metainfo.source", "pk": 1898, "fields": {"orig_filename": "Starzynski_Stanislaw_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112f.", "author": "", "orig_id": 1428344}}, {"model": "metainfo.source", "pk": 1899, "fields": {"orig_filename": "Stastny_Alfons-Bohumil_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 113f.", "author": "", "orig_id": 1464123}}, {"model": "metainfo.source", "pk": 1900, "fields": {"orig_filename": "Stastny_Alfons_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 113", "author": "", "orig_id": 1428394}}, {"model": "metainfo.source", "pk": 1901, "fields": {"orig_filename": "Stastny_Bernard-Vaclav_1760_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114", "author": "", "orig_id": 1428395}}, {"model": "metainfo.source", "pk": 1902, "fields": {"orig_filename": "Stastny_Jan_1764_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114", "author": "", "orig_id": 1468140}}, {"model": "metainfo.source", "pk": 1903, "fields": {"orig_filename": "Stastny_Vladimir_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114f.", "author": "", "orig_id": 1428508}}, {"model": "metainfo.source", "pk": 1904, "fields": {"orig_filename": "Stattler_Henryk-Antoni_1834_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115", "author": "", "orig_id": 1428510}}, {"model": "metainfo.source", "pk": 1905, "fields": {"orig_filename": "Stattler_Stanislaw_1836_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115", "author": "", "orig_id": 1428512}}, {"model": "metainfo.source", "pk": 1906, "fields": {"orig_filename": "Stattler_Wojciech-Korneli_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115f.", "author": "", "orig_id": 1428509}}, {"model": "metainfo.source", "pk": 1907, "fields": {"orig_filename": "Staub_Franz_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 116", "author": "", "orig_id": 1427722}}, {"model": "metainfo.source", "pk": 1908, "fields": {"orig_filename": "Staub_Moritz_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 116f.", "author": "", "orig_id": 1427725}}, {"model": "metainfo.source", "pk": 1909, "fields": {"orig_filename": "Staudach_Emma-Antonia_1834_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 118f.", "author": "", "orig_id": 1427783}}, {"model": "metainfo.source", "pk": 1910, "fields": {"orig_filename": "Stauda_August_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 118", "author": "", "orig_id": 1427734}}, {"model": "metainfo.source", "pk": 1911, "fields": {"orig_filename": "Staudenheim_Jakob_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119", "author": "", "orig_id": 1427787}}, {"model": "metainfo.source", "pk": 1912, "fields": {"orig_filename": "Stauder_Hermann_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119f.", "author": "", "orig_id": 1430582}}, {"model": "metainfo.source", "pk": 1913, "fields": {"orig_filename": "Spies_Hermann_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 26", "author": "", "orig_id": 1426893}}, {"model": "metainfo.source", "pk": 1914, "fields": {"orig_filename": "Spillar_Jaroslav_1869_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 27", "author": "", "orig_id": 1426177}}, {"model": "metainfo.source", "pk": 1915, "fields": {"orig_filename": "Spillar_Karel_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 27f.", "author": "", "orig_id": 1429006}}, {"model": "metainfo.source", "pk": 1916, "fields": {"orig_filename": "Spiller_Philipp_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28", "author": "", "orig_id": 1426180}}, {"model": "metainfo.source", "pk": 1917, "fields": {"orig_filename": "Spina_Anton_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28", "author": "", "orig_id": 1426186}}, {"model": "metainfo.source", "pk": 1918, "fields": {"orig_filename": "Spina_Arnold_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28f.", "author": "", "orig_id": 1426187}}, {"model": "metainfo.source", "pk": 1919, "fields": {"orig_filename": "Spina_Carl-Anton_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 29", "author": "", "orig_id": 1426189}}, {"model": "metainfo.source", "pk": 1920, "fields": {"orig_filename": "Spina_Franz_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 29f.", "author": "", "orig_id": 1426188}}, {"model": "metainfo.source", "pk": 1921, "fields": {"orig_filename": "Spindler_Ervin_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30", "author": "", "orig_id": 1426235}}, {"model": "metainfo.source", "pk": 1922, "fields": {"orig_filename": "Spinka_Anna__1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30f.", "author": "", "orig_id": 1470622}}, {"model": "metainfo.source", "pk": 1923, "fields": {"orig_filename": "Spinka_Vaclav_1796_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30f.", "author": "", "orig_id": 1426244}}, {"model": "metainfo.source", "pk": 1924, "fields": {"orig_filename": "Spira_Jacob-Fritz_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 31f.", "author": "", "orig_id": 1426249}}, {"model": "metainfo.source", "pk": 1925, "fields": {"orig_filename": "Spirk_Antonin-Ferdinand_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426451}}, {"model": "metainfo.source", "pk": 1926, "fields": {"orig_filename": "Spirk_Antonin_1838_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426450}}, {"model": "metainfo.source", "pk": 1927, "fields": {"orig_filename": "Spiro_Ede_1805_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426455}}, {"model": "metainfo.source", "pk": 1928, "fields": {"orig_filename": "Spiro_Ignaz_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32f.", "author": "", "orig_id": 1426457}}, {"model": "metainfo.source", "pk": 1929, "fields": {"orig_filename": "Spiss_Cassian_1866_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 33f.", "author": "", "orig_id": 1428834}}, {"model": "metainfo.source", "pk": 1930, "fields": {"orig_filename": "Spis_Stanislaw_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 33", "author": "", "orig_id": 1428831}}, {"model": "metainfo.source", "pk": 1931, "fields": {"orig_filename": "Spitaler_Rudolf_1859_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 34f.", "author": "", "orig_id": 1428881}}, {"model": "metainfo.source", "pk": 1932, "fields": {"orig_filename": "Spitzeder_Josef_1794_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 36f.", "author": "", "orig_id": 1429037}}, {"model": "metainfo.source", "pk": 1933, "fields": {"orig_filename": "Spitzer_Alexander_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37", "author": "", "orig_id": 1429031}}, {"model": "metainfo.source", "pk": 1934, "fields": {"orig_filename": "Spitzer_Berthold_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37", "author": "", "orig_id": 1429072}}, {"model": "metainfo.source", "pk": 1935, "fields": {"orig_filename": "Spitzer_Daniel_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37f.", "author": "", "orig_id": 1429122}}, {"model": "metainfo.source", "pk": 1936, "fields": {"orig_filename": "Spitzer_Emanuel_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 38f.", "author": "", "orig_id": 1429157}}, {"model": "metainfo.source", "pk": 1937, "fields": {"orig_filename": "Spitzer_Frederic_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 39", "author": "", "orig_id": 1454350}}, {"model": "metainfo.source", "pk": 1938, "fields": {"orig_filename": "Spitzer_Friedrich-Viktor_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 39f.", "author": "", "orig_id": 1429160}}, {"model": "metainfo.source", "pk": 1939, "fields": {"orig_filename": "Spitzer_Hugo_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 40", "author": "", "orig_id": 1429168}}, {"model": "metainfo.source", "pk": 1940, "fields": {"orig_filename": "Spitzer_Leonie-Adele_1891_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 41", "author": "", "orig_id": 1437605}}, {"model": "metainfo.source", "pk": 1941, "fields": {"orig_filename": "Spitzer_Rudolf-Lothar_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 41f.", "author": "", "orig_id": 1429224}}, {"model": "metainfo.source", "pk": 1942, "fields": {"orig_filename": "Spitzer_Salomon_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 42", "author": "", "orig_id": 1454378}}, {"model": "metainfo.source", "pk": 1943, "fields": {"orig_filename": "Spitzer_Sigmund_1813_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 42f.", "author": "", "orig_id": 1429268}}, {"model": "metainfo.source", "pk": 1944, "fields": {"orig_filename": "Spitzer_Simon_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 43", "author": "", "orig_id": 1429270}}, {"model": "metainfo.source", "pk": 1945, "fields": {"orig_filename": "Spitz_Albrecht_1883_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 35", "author": "", "orig_id": 1428887}}, {"model": "metainfo.source", "pk": 1946, "fields": {"orig_filename": "Spitz_Ernst_1902_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 35f.", "author": "", "orig_id": 1428889}}, {"model": "metainfo.source", "pk": 1947, "fields": {"orig_filename": "Spitz_Heinrich-Otto_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 36", "author": "", "orig_id": 1428934}}, {"model": "metainfo.source", "pk": 1948, "fields": {"orig_filename": "Spleny-Mihaldy_Franz_1768_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1470624}}, {"model": "metainfo.source", "pk": 1949, "fields": {"orig_filename": "Spleny-Mihaldy_Gabriel_1734_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 43f.", "author": "", "orig_id": 1428583}}, {"model": "metainfo.source", "pk": 1950, "fields": {"orig_filename": "Spleny-Mihaldy_Ignaz-Pankraz-Galeaz_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1428582}}, {"model": "metainfo.source", "pk": 1951, "fields": {"orig_filename": "Spleny-Mihaldy_Ludwig_1817_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1428622}}, {"model": "metainfo.source", "pk": 1952, "fields": {"orig_filename": "Spoerlin_Michael_1784_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44f.", "author": "", "orig_id": 1428624}}, {"model": "metainfo.source", "pk": 1953, "fields": {"orig_filename": "Spoerr_Franz-Xav_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 45", "author": "", "orig_id": 1428677}}, {"model": "metainfo.source", "pk": 1954, "fields": {"orig_filename": "Spoerr_Martin_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 45f.", "author": "", "orig_id": 1428679}}, {"model": "metainfo.source", "pk": 1955, "fields": {"orig_filename": "Sponer_Andor_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 46", "author": "", "orig_id": 1428722}}, {"model": "metainfo.source", "pk": 1956, "fields": {"orig_filename": "Sporschil_Johann-Chrysostomus_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 46f.", "author": "", "orig_id": 1428851}}, {"model": "metainfo.source", "pk": 1957, "fields": {"orig_filename": "Spott_Jan_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 47", "author": "", "orig_id": 1428895}}, {"model": "metainfo.source", "pk": 1958, "fields": {"orig_filename": "Spott_Karel_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 47f.", "author": "", "orig_id": 1428896}}, {"model": "metainfo.source", "pk": 1959, "fields": {"orig_filename": "Sprecher-Bernegg_Arthur-Heinrich_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 48", "author": "", "orig_id": 1428953}}, {"model": "metainfo.source", "pk": 1960, "fields": {"orig_filename": "Sprenger_Aloys_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 49", "author": "", "orig_id": 1428997}}, {"model": "metainfo.source", "pk": 1961, "fields": {"orig_filename": "Sprenger_Paul-Eduard_1798_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 49f.", "author": "", "orig_id": 1429000}}, {"model": "metainfo.source", "pk": 1962, "fields": {"orig_filename": "Spreng_Anton_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 48f.", "author": "", "orig_id": 1428994}}, {"model": "metainfo.source", "pk": 1963, "fields": {"orig_filename": "Springer_Adalbert_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 50", "author": "", "orig_id": 1429052}}, {"model": "metainfo.source", "pk": 1964, "fields": {"orig_filename": "Springer_Adolf_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55", "author": "", "orig_id": 1469855}}, {"model": "metainfo.source", "pk": 1965, "fields": {"orig_filename": "Springer_Alfred_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429053}}, {"model": "metainfo.source", "pk": 1966, "fields": {"orig_filename": "Springer_Anton-Heinrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 50f.", "author": "", "orig_id": 1429079}}, {"model": "metainfo.source", "pk": 1967, "fields": {"orig_filename": "Springer_Franz_1791_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 51f.", "author": "", "orig_id": 1429085}}, {"model": "metainfo.source", "pk": 1968, "fields": {"orig_filename": "Springer_Gustav_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429088}}, {"model": "metainfo.source", "pk": 1969, "fields": {"orig_filename": "Springer_Gustav_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53", "author": "", "orig_id": 1429089}}, {"model": "metainfo.source", "pk": 1970, "fields": {"orig_filename": "Springer_Hermann_1845_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429090}}, {"model": "metainfo.source", "pk": 1971, "fields": {"orig_filename": "Springer_Hugo_1873_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52f.", "author": "", "orig_id": 1429133}}, {"model": "metainfo.source", "pk": 1972, "fields": {"orig_filename": "Springer_Johann_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53f.", "author": "", "orig_id": 1429136}}, {"model": "metainfo.source", "pk": 1973, "fields": {"orig_filename": "Springer_Johann_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53", "author": "", "orig_id": 1429176}}, {"model": "metainfo.source", "pk": 1974, "fields": {"orig_filename": "Springer_Max_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 54", "author": "", "orig_id": 1429184}}, {"model": "metainfo.source", "pk": 1975, "fields": {"orig_filename": "Springer_Sidonie_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 54f.", "author": "", "orig_id": 1429188}}, {"model": "metainfo.source", "pk": 1976, "fields": {"orig_filename": "Springer_Sigmund_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55", "author": "", "orig_id": 1429189}}, {"model": "metainfo.source", "pk": 1977, "fields": {"orig_filename": "Sprinzl_Josef_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55f.", "author": "", "orig_id": 1429291}}, {"model": "metainfo.source", "pk": 1978, "fields": {"orig_filename": "Sprung_Franz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 56", "author": "", "orig_id": 1428547}}, {"model": "metainfo.source", "pk": 1979, "fields": {"orig_filename": "Spurny_Athanasius-A-S-Sophia_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 56f.", "author": "", "orig_id": 1470902}}, {"model": "metainfo.source", "pk": 1980, "fields": {"orig_filename": "Spurzheim_Johann-Christoph_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57", "author": "", "orig_id": 1470900}}, {"model": "metainfo.source", "pk": 1981, "fields": {"orig_filename": "Spurzheim_Karl_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57", "author": "", "orig_id": 1428589}}, {"model": "metainfo.source", "pk": 1982, "fields": {"orig_filename": "Squarcina_Giovanni_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57f.", "author": "", "orig_id": 1428594}}, {"model": "metainfo.source", "pk": 1983, "fields": {"orig_filename": "Sramko_Paul_1743_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 58", "author": "", "orig_id": 1465729}}, {"model": "metainfo.source", "pk": 1984, "fields": {"orig_filename": "Srbik_Robert_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59f.", "author": "", "orig_id": 1428603}}, {"model": "metainfo.source", "pk": 1985, "fields": {"orig_filename": "Srbova_Anna_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 60f.", "author": "", "orig_id": 1428604}}, {"model": "metainfo.source", "pk": 1986, "fields": {"orig_filename": "Srb_Adolf_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 58f.", "author": "", "orig_id": 1429248}}, {"model": "metainfo.source", "pk": 1987, "fields": {"orig_filename": "Srb_Josef_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59", "author": "", "orig_id": 1429253}}, {"model": "metainfo.source", "pk": 1988, "fields": {"orig_filename": "Srb_Vladimir_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59", "author": "", "orig_id": 1429251}}, {"model": "metainfo.source", "pk": 1989, "fields": {"orig_filename": "Srdinko_Frantisek_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 61", "author": "", "orig_id": 1428645}}, {"model": "metainfo.source", "pk": 1990, "fields": {"orig_filename": "Srdinko_Hynek_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62", "author": "", "orig_id": 1428646}}, {"model": "metainfo.source", "pk": 1991, "fields": {"orig_filename": "Srdinko_Otakar_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 61f.", "author": "", "orig_id": 1428647}}, {"model": "metainfo.source", "pk": 1992, "fields": {"orig_filename": "Srna_Carl_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62", "author": "", "orig_id": 1428656}}, {"model": "metainfo.source", "pk": 1993, "fields": {"orig_filename": "Srobar_Vavro_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62f.", "author": "", "orig_id": 1428660}}, {"model": "metainfo.source", "pk": 1994, "fields": {"orig_filename": "Srom_Frantisek_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 63", "author": "", "orig_id": 1428747}}, {"model": "metainfo.source", "pk": 1995, "fields": {"orig_filename": "Srutek_Josef-Anton_1822_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 63f.", "author": "", "orig_id": 1428779}}, {"model": "metainfo.source", "pk": 1996, "fields": {"orig_filename": "Stabinger_Ferdinand_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64", "author": "", "orig_id": 1428788}}, {"model": "metainfo.source", "pk": 1997, "fields": {"orig_filename": "Stacherski_Antoni-Wladyslaw_1831_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 66f.", "author": "", "orig_id": 1428823}}, {"model": "metainfo.source", "pk": 1998, "fields": {"orig_filename": "Stache_Friedrich-August_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 65f.", "author": "", "orig_id": 1428792}}, {"model": "metainfo.source", "pk": 1999, "fields": {"orig_filename": "Stache_Karl-Heinrich-Hector-Guido_1833_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 66", "author": "", "orig_id": 1428822}}, {"model": "metainfo.source", "pk": 2000, "fields": {"orig_filename": "Stachiewicz_Piotr_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 67", "author": "", "orig_id": 1467159}}, {"model": "metainfo.source", "pk": 2001, "fields": {"orig_filename": "Stachowicz_Michal-Franciszek_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 67f.", "author": "", "orig_id": 1428867}}, {"model": "metainfo.source", "pk": 2002, "fields": {"orig_filename": "Stachowicz_Teodor-Baltazar_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68", "author": "", "orig_id": 1470901}}, {"model": "metainfo.source", "pk": 2003, "fields": {"orig_filename": "Stach_Friedrich_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64", "author": "", "orig_id": 1426845}}, {"model": "metainfo.source", "pk": 2004, "fields": {"orig_filename": "Stach_Vaclav_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64f.", "author": "", "orig_id": 1428789}}, {"model": "metainfo.source", "pk": 2005, "fields": {"orig_filename": "Stadion-Thannhausen_Emerich_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68", "author": "", "orig_id": 1428874}}, {"model": "metainfo.source", "pk": 2006, "fields": {"orig_filename": "Stadion-Thannhausen_Philipp-Franz_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68f.", "author": "", "orig_id": 1428877}}, {"model": "metainfo.source", "pk": 2007, "fields": {"orig_filename": "Stadion-Warthausen_Franz_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 69", "author": "", "orig_id": 1428878}}, {"model": "metainfo.source", "pk": 2008, "fields": {"orig_filename": "Stadion-Warthausen_Johann-Philipp-Karl_1763_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 69f.", "author": "", "orig_id": 1428879}}, {"model": "metainfo.source", "pk": 2009, "fields": {"orig_filename": "Stadler_Albert_1794_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 71f.", "author": "", "orig_id": 1428969}}, {"model": "metainfo.source", "pk": 2010, "fields": {"orig_filename": "Stadler_Alfred_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72", "author": "", "orig_id": 1428970}}, {"model": "metainfo.source", "pk": 2011, "fields": {"orig_filename": "Stadler_Alois-Martin_1792_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72", "author": "", "orig_id": 1428971}}, {"model": "metainfo.source", "pk": 2012, "fields": {"orig_filename": "Stadler_Arthur_1892_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72f.", "author": "", "orig_id": 1428976}}, {"model": "metainfo.source", "pk": 2013, "fields": {"orig_filename": "Stadler_Dominik_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 73", "author": "", "orig_id": 1429014}}, {"model": "metainfo.source", "pk": 2014, "fields": {"orig_filename": "Stadler_Josef_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 73f.", "author": "", "orig_id": 1429026}}, {"model": "metainfo.source", "pk": 2015, "fields": {"orig_filename": "Soretic_Theodor_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430f.", "author": "", "orig_id": 1457376}}, {"model": "metainfo.source", "pk": 2016, "fields": {"orig_filename": "Sorgato_Antonio-Maria_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431", "author": "", "orig_id": 1439094}}, {"model": "metainfo.source", "pk": 2017, "fields": {"orig_filename": "Sorgo_Josef_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431f.", "author": "", "orig_id": 1439198}}, {"model": "metainfo.source", "pk": 2018, "fields": {"orig_filename": "Sorsich-Severin_Adalbert_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432", "author": "", "orig_id": 1439214}}, {"model": "metainfo.source", "pk": 2019, "fields": {"orig_filename": "Soster_Bartolomeo_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432", "author": "", "orig_id": 1438313}}, {"model": "metainfo.source", "pk": 2020, "fields": {"orig_filename": "Soterius-Sachsenheim_Arthur_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432f.", "author": "", "orig_id": 1439215}}, {"model": "metainfo.source", "pk": 2021, "fields": {"orig_filename": "Sothen_Johann-Carl_1823_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433", "author": "", "orig_id": 1438319}}, {"model": "metainfo.source", "pk": 2022, "fields": {"orig_filename": "Sotriffer_Christian_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434", "author": "", "orig_id": 1463764}}, {"model": "metainfo.source", "pk": 2023, "fields": {"orig_filename": "Sotriffer_Johann-Jakob_1796_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433f.", "author": "", "orig_id": 1438322}}, {"model": "metainfo.source", "pk": 2024, "fields": {"orig_filename": "Sotriffer_Joseph_1802_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433f.", "author": "", "orig_id": 1463763}}, {"model": "metainfo.source", "pk": 2025, "fields": {"orig_filename": "Soucek_Stanislav_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434", "author": "", "orig_id": 1438333}}, {"model": "metainfo.source", "pk": 2026, "fields": {"orig_filename": "Soukup_Frantisek_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434f.", "author": "", "orig_id": 1438372}}, {"model": "metainfo.source", "pk": 2027, "fields": {"orig_filename": "Soulavy_Ottokar_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 435", "author": "", "orig_id": 1454266}}, {"model": "metainfo.source", "pk": 2028, "fields": {"orig_filename": "Sourek_Antonin-Vaclav_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 435f.", "author": "", "orig_id": 1438389}}, {"model": "metainfo.source", "pk": 2029, "fields": {"orig_filename": "Souvan_Ferdinand_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1456643}}, {"model": "metainfo.source", "pk": 2030, "fields": {"orig_filename": "Souvan_Ferdinand_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1464310}}, {"model": "metainfo.source", "pk": 2031, "fields": {"orig_filename": "Souvan_Franc-Ks_1799_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1438439}}, {"model": "metainfo.source", "pk": 2032, "fields": {"orig_filename": "Souvan_Franc-Ks_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1438440}}, {"model": "metainfo.source", "pk": 2033, "fields": {"orig_filename": "Sova_Antonin_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436f.", "author": "", "orig_id": 1438442}}, {"model": "metainfo.source", "pk": 2034, "fields": {"orig_filename": "Sowinski_Ignaz_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438449}}, {"model": "metainfo.source", "pk": 2035, "fields": {"orig_filename": "Soxhlet_Felix_1804_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437f.", "author": "", "orig_id": 1438507}}, {"model": "metainfo.source", "pk": 2036, "fields": {"orig_filename": "Soxhlet_Hubert__1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438509}}, {"model": "metainfo.source", "pk": 2037, "fields": {"orig_filename": "Soyfer_Jura_1912_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 438f.", "author": "", "orig_id": 1438512}}, {"model": "metainfo.source", "pk": 2038, "fields": {"orig_filename": "Soyka_Isidor_1850_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 439f.", "author": "", "orig_id": 1438514}}, {"model": "metainfo.source", "pk": 2039, "fields": {"orig_filename": "Soyka_Viktor_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440", "author": "", "orig_id": 1438519}}, {"model": "metainfo.source", "pk": 2040, "fields": {"orig_filename": "Spacek_Richard_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440", "author": "", "orig_id": 1426611}}, {"model": "metainfo.source", "pk": 2041, "fields": {"orig_filename": "Spacil_Jan_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440f.", "author": "", "orig_id": 1426615}}, {"model": "metainfo.source", "pk": 2042, "fields": {"orig_filename": "Spaengler_Alois_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 441", "author": "", "orig_id": 1426617}}, {"model": "metainfo.source", "pk": 2043, "fields": {"orig_filename": "Spaengler_Alois_1824_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 441f.", "author": "", "orig_id": 1426618}}, {"model": "metainfo.source", "pk": 2044, "fields": {"orig_filename": "Spaengler_Carl_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 442", "author": "", "orig_id": 1426702}}, {"model": "metainfo.source", "pk": 2045, "fields": {"orig_filename": "Spaengler_Ludwig_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 442f.", "author": "", "orig_id": 1426706}}, {"model": "metainfo.source", "pk": 2046, "fields": {"orig_filename": "Spaengler_Rudolf_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 443", "author": "", "orig_id": 1426707}}, {"model": "metainfo.source", "pk": 2047, "fields": {"orig_filename": "Spaeter_Carl_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 443f.", "author": "", "orig_id": 1426709}}, {"model": "metainfo.source", "pk": 2048, "fields": {"orig_filename": "Spaeth_Ernst_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 444", "author": "", "orig_id": 1426754}}, {"model": "metainfo.source", "pk": 2049, "fields": {"orig_filename": "Spaeth_Franz-Xav_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 444f.", "author": "", "orig_id": 1426755}}, {"model": "metainfo.source", "pk": 2050, "fields": {"orig_filename": "Spaeth_Josef_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 445", "author": "", "orig_id": 1426758}}, {"model": "metainfo.source", "pk": 2051, "fields": {"orig_filename": "Spala_Vaclav_1885_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 446", "author": "", "orig_id": 1426817}}, {"model": "metainfo.source", "pk": 2052, "fields": {"orig_filename": "Spalowsky_Franz_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 446f.", "author": "", "orig_id": 1448627}}, {"model": "metainfo.source", "pk": 2053, "fields": {"orig_filename": "Spandl_Hermann_1899_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 447", "author": "", "orig_id": 1458549}}, {"model": "metainfo.source", "pk": 2054, "fields": {"orig_filename": "Spannagel_Rudolf_1866_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 448", "author": "", "orig_id": 1426154}}, {"model": "metainfo.source", "pk": 2055, "fields": {"orig_filename": "Spanner_Anton-Carl_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1", "author": "", "orig_id": 1426326}}, {"model": "metainfo.source", "pk": 2056, "fields": {"orig_filename": "Spannocchi_Lelio_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1", "author": "", "orig_id": 1426334}}, {"model": "metainfo.source", "pk": 2057, "fields": {"orig_filename": "Spannocchi_Peter-Leopold_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1f.", "author": "", "orig_id": 1426336}}, {"model": "metainfo.source", "pk": 2058, "fields": {"orig_filename": "Spannring_Hubert_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 2", "author": "", "orig_id": 1426381}}, {"model": "metainfo.source", "pk": 2059, "fields": {"orig_filename": "Spann_Othmar_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 447f.", "author": "", "orig_id": 1426924}}, {"model": "metainfo.source", "pk": 2060, "fields": {"orig_filename": "Spanyik_Glycer_1781_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3", "author": "", "orig_id": 1426389}}, {"model": "metainfo.source", "pk": 2061, "fields": {"orig_filename": "Spanyik_Kornel_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3", "author": "", "orig_id": 1426391}}, {"model": "metainfo.source", "pk": 2062, "fields": {"orig_filename": "Spanyi_Bela_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 2f.", "author": "", "orig_id": 1426386}}, {"model": "metainfo.source", "pk": 2063, "fields": {"orig_filename": "Sparber_Josaphat_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3f.", "author": "", "orig_id": 1426434}}, {"model": "metainfo.source", "pk": 2064, "fields": {"orig_filename": "Spatny_Frantisek_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 4", "author": "", "orig_id": 1426487}}, {"model": "metainfo.source", "pk": 2065, "fields": {"orig_filename": "Spatzenegger_Leopold_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 4f.", "author": "", "orig_id": 1426576}}, {"model": "metainfo.source", "pk": 2066, "fields": {"orig_filename": "Spatzier_Johann-Nep-Florian_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 5", "author": "", "orig_id": 1426578}}, {"model": "metainfo.source", "pk": 2067, "fields": {"orig_filename": "Spaun_Anton_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 5f.", "author": "", "orig_id": 1426581}}, {"model": "metainfo.source", "pk": 2068, "fields": {"orig_filename": "Spaun_Franz-Anton_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 6", "author": "", "orig_id": 1426584}}, {"model": "metainfo.source", "pk": 2069, "fields": {"orig_filename": "Spaun_Hermann_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 6f.", "author": "", "orig_id": 1426586}}, {"model": "metainfo.source", "pk": 2070, "fields": {"orig_filename": "Spaun_Josef_1788_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7", "author": "", "orig_id": 1426621}}, {"model": "metainfo.source", "pk": 2071, "fields": {"orig_filename": "Spaun_Marie_1795_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7", "author": "", "orig_id": 1426627}}, {"model": "metainfo.source", "pk": 2072, "fields": {"orig_filename": "Spaun_Max_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7f.", "author": "", "orig_id": 1426629}}, {"model": "metainfo.source", "pk": 2073, "fields": {"orig_filename": "Spaur_Friedrich-Franz-Joseph_1756_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 8", "author": "", "orig_id": 1426669}}, {"model": "metainfo.source", "pk": 2074, "fields": {"orig_filename": "Spaur_Marie_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 8f.", "author": "", "orig_id": 1426625}}, {"model": "metainfo.source", "pk": 2075, "fields": {"orig_filename": "Spaur_Philipp_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9", "author": "", "orig_id": 1426714}}, {"model": "metainfo.source", "pk": 2076, "fields": {"orig_filename": "Spechtenhauser_Johann-Bapt_1760_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 10f.", "author": "", "orig_id": 1426766}}, {"model": "metainfo.source", "pk": 2077, "fields": {"orig_filename": "Specht_Josef-Anton_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9f.", "author": "", "orig_id": 1451940}}, {"model": "metainfo.source", "pk": 2078, "fields": {"orig_filename": "Specht_Richard_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 10", "author": "", "orig_id": 1426762}}, {"model": "metainfo.source", "pk": 2079, "fields": {"orig_filename": "Spech_Johann_1767_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9", "author": "", "orig_id": 1426725}}, {"model": "metainfo.source", "pk": 2080, "fields": {"orig_filename": "Speckbacher_Andreas_1798_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 11", "author": "", "orig_id": 1426771}}, {"model": "metainfo.source", "pk": 2081, "fields": {"orig_filename": "Speckbacher_Caspar_1819_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 11f.", "author": "", "orig_id": 1426772}}, {"model": "metainfo.source", "pk": 2082, "fields": {"orig_filename": "Speckbacher_Josef_1767_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 12", "author": "", "orig_id": 1426820}}, {"model": "metainfo.source", "pk": 2083, "fields": {"orig_filename": "Speckmoser_Ulrich_1781_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 12f.", "author": "", "orig_id": 1426824}}, {"model": "metainfo.source", "pk": 2084, "fields": {"orig_filename": "Specz-Ladhaza_Rudolf_1798_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 13", "author": "", "orig_id": 1426826}}, {"model": "metainfo.source", "pk": 2085, "fields": {"orig_filename": "Speidel-Haeberle_Else_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 14", "author": "", "orig_id": 1426829}}, {"model": "metainfo.source", "pk": 2086, "fields": {"orig_filename": "Speidel_Ludwig_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 13f.", "author": "", "orig_id": 1426828}}, {"model": "metainfo.source", "pk": 2087, "fields": {"orig_filename": "Speiser_Paul_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 14f.", "author": "", "orig_id": 1426873}}, {"model": "metainfo.source", "pk": 2088, "fields": {"orig_filename": "Spendou_Joseph_1757_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 15", "author": "", "orig_id": 1426878}}, {"model": "metainfo.source", "pk": 2089, "fields": {"orig_filename": "Spens-Booden_Alois_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 15f.", "author": "", "orig_id": 1426925}}, {"model": "metainfo.source", "pk": 2090, "fields": {"orig_filename": "Spens-Booden_Emanuel_1831_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 16", "author": "", "orig_id": 1437146}}, {"model": "metainfo.source", "pk": 2091, "fields": {"orig_filename": "Sperber_Hugo_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 16f.", "author": "", "orig_id": 1426935}}, {"model": "metainfo.source", "pk": 2092, "fields": {"orig_filename": "Sperk_Bernhard_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 17", "author": "", "orig_id": 1426167}}, {"model": "metainfo.source", "pk": 2093, "fields": {"orig_filename": "Speyer_Agnes_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 17f.", "author": "", "orig_id": 1426287}}, {"model": "metainfo.source", "pk": 2094, "fields": {"orig_filename": "Spezger_Carl_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18", "author": "", "orig_id": 1426284}}, {"model": "metainfo.source", "pk": 2095, "fields": {"orig_filename": "Spidlen_Frantisek_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18", "author": "", "orig_id": 1426292}}, {"model": "metainfo.source", "pk": 2096, "fields": {"orig_filename": "Spiegelfeld_Markus_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20f.", "author": "", "orig_id": 1426493}}, {"model": "metainfo.source", "pk": 2097, "fields": {"orig_filename": "Spiegel_Emil_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20", "author": "", "orig_id": 1426343}}, {"model": "metainfo.source", "pk": 2098, "fields": {"orig_filename": "Spiegel_Frigyes_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18f.", "author": "", "orig_id": 1454339}}, {"model": "metainfo.source", "pk": 2099, "fields": {"orig_filename": "Spiegel_Kaethe_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 19", "author": "", "orig_id": 1438181}}, {"model": "metainfo.source", "pk": 2100, "fields": {"orig_filename": "Spiegel_Ludwig_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 19f.", "author": "", "orig_id": 1426442}}, {"model": "metainfo.source", "pk": 2101, "fields": {"orig_filename": "Spiegel_Magda_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20", "author": "", "orig_id": 1426400}}, {"model": "metainfo.source", "pk": 2102, "fields": {"orig_filename": "Spiegl-Thurnsee_Edgar_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 21", "author": "", "orig_id": 1426342}}, {"model": "metainfo.source", "pk": 2103, "fields": {"orig_filename": "Spiegl-Thurnsee_Edgar_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 21f.", "author": "", "orig_id": 1426500}}, {"model": "metainfo.source", "pk": 2104, "fields": {"orig_filename": "Spiegler_Eduard_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 22", "author": "", "orig_id": 1426502}}, {"model": "metainfo.source", "pk": 2105, "fields": {"orig_filename": "Spielmann_Emmerich_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1469652}}, {"model": "metainfo.source", "pk": 2106, "fields": {"orig_filename": "Spielmann_Ferdinand_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1470620}}, {"model": "metainfo.source", "pk": 2107, "fields": {"orig_filename": "Spielmann_Johann_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23f.", "author": "", "orig_id": 1426840}}, {"model": "metainfo.source", "pk": 2108, "fields": {"orig_filename": "Spielmann_Julius_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 24", "author": "", "orig_id": 1426842}}, {"model": "metainfo.source", "pk": 2109, "fields": {"orig_filename": "Spielmann_Julius_1872_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 24f.", "author": "", "orig_id": 1426844}}, {"model": "metainfo.source", "pk": 2110, "fields": {"orig_filename": "Spielmann_Leopold_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25", "author": "", "orig_id": 1426884}}, {"model": "metainfo.source", "pk": 2111, "fields": {"orig_filename": "Spielmann_Melanie_1885_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25", "author": "", "orig_id": 1426886}}, {"model": "metainfo.source", "pk": 2112, "fields": {"orig_filename": "Spielmann_Rudolf_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25f.", "author": "", "orig_id": 1426889}}, {"model": "metainfo.source", "pk": 2113, "fields": {"orig_filename": "Spiess_Friedrich-Wilhelm_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 26f.", "author": "", "orig_id": 1426940}}, {"model": "metainfo.source", "pk": 2114, "fields": {"orig_filename": "Sobitschka_Coelestin_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387", "author": "", "orig_id": 1439351}}, {"model": "metainfo.source", "pk": 2115, "fields": {"orig_filename": "Sobota_Emil_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387f.", "author": "", "orig_id": 1461518}}, {"model": "metainfo.source", "pk": 2116, "fields": {"orig_filename": "Sobotka_Benedikt_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 388", "author": "", "orig_id": 1439420}}, {"model": "metainfo.source", "pk": 2117, "fields": {"orig_filename": "Sobotka_Jan_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 388f.", "author": "", "orig_id": 1439494}}, {"model": "metainfo.source", "pk": 2118, "fields": {"orig_filename": "Sobotka_Primus_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 389", "author": "", "orig_id": 1457815}}, {"model": "metainfo.source", "pk": 2119, "fields": {"orig_filename": "Sobo_Jenoe_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387", "author": "", "orig_id": 1439416}}, {"model": "metainfo.source", "pk": 2120, "fields": {"orig_filename": "Sochaniewicz_Kazimierz-Roman_1892_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 390", "author": "", "orig_id": 1438414}}, {"model": "metainfo.source", "pk": 2121, "fields": {"orig_filename": "Sochan_Pavol_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 389f.", "author": "", "orig_id": 1438413}}, {"model": "metainfo.source", "pk": 2122, "fields": {"orig_filename": "Sochor-Friedrichsthal_Eduard_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 391f.", "author": "", "orig_id": 1438472}}, {"model": "metainfo.source", "pk": 2123, "fields": {"orig_filename": "Sochor-Friedrichsthal_Eduard_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1468177}}, {"model": "metainfo.source", "pk": 2124, "fields": {"orig_filename": "Sochor-Friedrichsthal_Friedrich_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1438473}}, {"model": "metainfo.source", "pk": 2125, "fields": {"orig_filename": "Sochor_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 390f.", "author": "", "orig_id": 1457811}}, {"model": "metainfo.source", "pk": 2126, "fields": {"orig_filename": "Sochor_Vaclav_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 391", "author": "", "orig_id": 1438470}}, {"model": "metainfo.source", "pk": 2127, "fields": {"orig_filename": "Socin_Constantino_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1438475}}, {"model": "metainfo.source", "pk": 2128, "fields": {"orig_filename": "Sockl_Clara-Adelheid_1822_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 393", "author": "", "orig_id": 1438316}}, {"model": "metainfo.source", "pk": 2129, "fields": {"orig_filename": "Sockl_Theodor-Benedikt_1815_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392f.", "author": "", "orig_id": 1438477}}, {"model": "metainfo.source", "pk": 2130, "fields": {"orig_filename": "Soczynski_Karol-Teodor_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 393f.", "author": "", "orig_id": 1438478}}, {"model": "metainfo.source", "pk": 2131, "fields": {"orig_filename": "Soelder-Prakenstein_Friedrich_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394", "author": "", "orig_id": 1438485}}, {"model": "metainfo.source", "pk": 2132, "fields": {"orig_filename": "Soellner_Elisabeth_1776_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394f.", "author": "", "orig_id": 1438538}}, {"model": "metainfo.source", "pk": 2133, "fields": {"orig_filename": "Soellner_Johann_1769_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394", "author": "", "orig_id": 1461776}}, {"model": "metainfo.source", "pk": 2134, "fields": {"orig_filename": "Soeser_Ferdinand-Leopold_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395", "author": "", "orig_id": 1438546}}, {"model": "metainfo.source", "pk": 2135, "fields": {"orig_filename": "Soeser_Maximilian_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395", "author": "", "orig_id": 1438547}}, {"model": "metainfo.source", "pk": 2136, "fields": {"orig_filename": "Soffe_Emil-Ludwig_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395f.", "author": "", "orig_id": 1438551}}, {"model": "metainfo.source", "pk": 2137, "fields": {"orig_filename": "Sogni_Giuseppe_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 396", "author": "", "orig_id": 1438611}}, {"model": "metainfo.source", "pk": 2138, "fields": {"orig_filename": "Sohm_Bonifaz_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 396f.", "author": "", "orig_id": 1438619}}, {"model": "metainfo.source", "pk": 2139, "fields": {"orig_filename": "Sojer_Johannes-Kapistran_1798_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397", "author": "", "orig_id": 1438676}}, {"model": "metainfo.source", "pk": 2140, "fields": {"orig_filename": "Sojka_Jan-Erazim_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397", "author": "", "orig_id": 1438681}}, {"model": "metainfo.source", "pk": 2141, "fields": {"orig_filename": "Sojka_Mathias_1740_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397f.", "author": "", "orig_id": 1438682}}, {"model": "metainfo.source", "pk": 2142, "fields": {"orig_filename": "Sokcevic_Josip_1811_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 398", "author": "", "orig_id": 1438686}}, {"model": "metainfo.source", "pk": 2143, "fields": {"orig_filename": "Sokolar_Franz_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401", "author": "", "orig_id": 1438778}}, {"model": "metainfo.source", "pk": 2144, "fields": {"orig_filename": "Sokoltuma_Frantisek_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401", "author": "", "orig_id": 1463423}}, {"model": "metainfo.source", "pk": 2145, "fields": {"orig_filename": "Sokol_Antonin-H_1847_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 398f.", "author": "", "orig_id": 1438732}}, {"model": "metainfo.source", "pk": 2146, "fields": {"orig_filename": "Sokol_Bernardin_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399", "author": "", "orig_id": 1438733}}, {"model": "metainfo.source", "pk": 2147, "fields": {"orig_filename": "Sokol_Frantisek_1779_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399", "author": "", "orig_id": 1438734}}, {"model": "metainfo.source", "pk": 2148, "fields": {"orig_filename": "Sokol_Josef-Vendelin_1821_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399f.", "author": "", "orig_id": 1438736}}, {"model": "metainfo.source", "pk": 2149, "fields": {"orig_filename": "Sokol_Karel-Stanislav_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 400", "author": "", "orig_id": 1438738}}, {"model": "metainfo.source", "pk": 2150, "fields": {"orig_filename": "Sokol_Rudolf_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 400f.", "author": "", "orig_id": 1438739}}, {"model": "metainfo.source", "pk": 2151, "fields": {"orig_filename": "Sokopp_Johann_1913_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401f.", "author": "", "orig_id": 1438785}}, {"model": "metainfo.source", "pk": 2152, "fields": {"orig_filename": "Solc_Jindrich_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402", "author": "", "orig_id": 1438846}}, {"model": "metainfo.source", "pk": 2153, "fields": {"orig_filename": "Solc_Vaclav_1838_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402", "author": "", "orig_id": 1438847}}, {"model": "metainfo.source", "pk": 2154, "fields": {"orig_filename": "Solecki-Ostoja_Lukasz_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402f.", "author": "", "orig_id": 1438893}}, {"model": "metainfo.source", "pk": 2155, "fields": {"orig_filename": "Solerti_Luigi_1846_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 403", "author": "", "orig_id": 1438896}}, {"model": "metainfo.source", "pk": 2156, "fields": {"orig_filename": "Solin_Josef-Marcell_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 403f.", "author": "", "orig_id": 1438897}}, {"model": "metainfo.source", "pk": 2157, "fields": {"orig_filename": "Solitro_Giulio_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404", "author": "", "orig_id": 1438818}}, {"model": "metainfo.source", "pk": 2158, "fields": {"orig_filename": "Solitro_Vincenzo_1820_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404", "author": "", "orig_id": 1438820}}, {"model": "metainfo.source", "pk": 2159, "fields": {"orig_filename": "Sollinger_Johann-Paul_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404f.", "author": "", "orig_id": 1438901}}, {"model": "metainfo.source", "pk": 2160, "fields": {"orig_filename": "Solomonica_Alexander_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 405", "author": "", "orig_id": 1440865}}, {"model": "metainfo.source", "pk": 2161, "fields": {"orig_filename": "Soltesz_Andreas_1802_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 405f.", "author": "", "orig_id": 1438948}}, {"model": "metainfo.source", "pk": 2162, "fields": {"orig_filename": "Soltesz_Janos_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406", "author": "", "orig_id": 1438952}}, {"model": "metainfo.source", "pk": 2163, "fields": {"orig_filename": "Soltesz_Miksa_1830_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406", "author": "", "orig_id": 1438953}}, {"model": "metainfo.source", "pk": 2164, "fields": {"orig_filename": "Soltys_Mieczyslaw-Tadeusz_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406f.", "author": "", "orig_id": 1438960}}, {"model": "metainfo.source", "pk": 2165, "fields": {"orig_filename": "Somaini_Francesco_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 407", "author": "", "orig_id": 1438964}}, {"model": "metainfo.source", "pk": 2166, "fields": {"orig_filename": "Somerau-Beeckh_Maximilian-Joseph-Gottfried_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 408", "author": "", "orig_id": 1438430}}, {"model": "metainfo.source", "pk": 2167, "fields": {"orig_filename": "Somer_Karl_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 407f.", "author": "", "orig_id": 1438361}}, {"model": "metainfo.source", "pk": 2168, "fields": {"orig_filename": "Sommariva_Giovanni-Battista_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 409f.", "author": "", "orig_id": 1439026}}, {"model": "metainfo.source", "pk": 2169, "fields": {"orig_filename": "Sommariva_Hannibal_1755_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410", "author": "", "orig_id": 1438765}}, {"model": "metainfo.source", "pk": 2170, "fields": {"orig_filename": "Sommaruga_Erwin-Franz_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410", "author": "", "orig_id": 1439028}}, {"model": "metainfo.source", "pk": 2171, "fields": {"orig_filename": "Sommaruga_Franz-Philipp_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410f.", "author": "", "orig_id": 1439072}}, {"model": "metainfo.source", "pk": 2172, "fields": {"orig_filename": "Sommaruga_Franz-Vincenz-Emanuel_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 411f.", "author": "", "orig_id": 1439029}}, {"model": "metainfo.source", "pk": 2173, "fields": {"orig_filename": "Sommaruga_Guido_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 411", "author": "", "orig_id": 1439073}}, {"model": "metainfo.source", "pk": 2174, "fields": {"orig_filename": "Somma_Antonio_1809_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 408f.", "author": "", "orig_id": 1438813}}, {"model": "metainfo.source", "pk": 2175, "fields": {"orig_filename": "Sommerfeld_Wilhelm_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416", "author": "", "orig_id": 1438495}}, {"model": "metainfo.source", "pk": 2176, "fields": {"orig_filename": "Sommer_Emil_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 412", "author": "", "orig_id": 1439131}}, {"model": "metainfo.source", "pk": 2177, "fields": {"orig_filename": "Sommer_Franz_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 412f.", "author": "", "orig_id": 1439135}}, {"model": "metainfo.source", "pk": 2178, "fields": {"orig_filename": "Sommer_Johann-Gottfried_1783_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 413", "author": "", "orig_id": 1427491}}, {"model": "metainfo.source", "pk": 2179, "fields": {"orig_filename": "Sommer_Josef-Heinrich_1888_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 413f.", "author": "", "orig_id": 1438307}}, {"model": "metainfo.source", "pk": 2180, "fields": {"orig_filename": "Sommer_Leopold_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 414", "author": "", "orig_id": 1438363}}, {"model": "metainfo.source", "pk": 2181, "fields": {"orig_filename": "Sommer_Otakar_1885_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 414f.", "author": "", "orig_id": 1438365}}, {"model": "metainfo.source", "pk": 2182, "fields": {"orig_filename": "Sommer_Rudolf_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 415", "author": "", "orig_id": 1438425}}, {"model": "metainfo.source", "pk": 2183, "fields": {"orig_filename": "Sommer_Rudolf_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 415f.", "author": "", "orig_id": 1438426}}, {"model": "metainfo.source", "pk": 2184, "fields": {"orig_filename": "Somogyi-Csizmazia_Alexander_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1438505}}, {"model": "metainfo.source", "pk": 2185, "fields": {"orig_filename": "Somogyi-Csizmazia_Barbara_1780_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1462380}}, {"model": "metainfo.source", "pk": 2186, "fields": {"orig_filename": "Somogyi-Csizmazia_Karl_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416f.", "author": "", "orig_id": 1438556}}, {"model": "metainfo.source", "pk": 2187, "fields": {"orig_filename": "Somogyi_Ede_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416", "author": "", "orig_id": 1454261}}, {"model": "metainfo.source", "pk": 2188, "fields": {"orig_filename": "Somos_Istvan-Balint_1893_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1438560}}, {"model": "metainfo.source", "pk": 2189, "fields": {"orig_filename": "Somssich-Saard_Jozsef_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418", "author": "", "orig_id": 1438629}}, {"model": "metainfo.source", "pk": 2190, "fields": {"orig_filename": "Somssich_Miklos_1784_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418", "author": "", "orig_id": 1438568}}, {"model": "metainfo.source", "pk": 2191, "fields": {"orig_filename": "Somssich_Pal_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417f.", "author": "", "orig_id": 1438569}}, {"model": "metainfo.source", "pk": 2192, "fields": {"orig_filename": "Sondermann_Franz-Wilhelm_1787_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418f.", "author": "", "orig_id": 1438634}}, {"model": "metainfo.source", "pk": 2193, "fields": {"orig_filename": "Sonklar-Innstaedten_Karl-Albrecht_1816_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 419f.", "author": "", "orig_id": 1438638}}, {"model": "metainfo.source", "pk": 2194, "fields": {"orig_filename": "Sonnenfeld_Kurt_1893_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421", "author": "", "orig_id": 1438752}}, {"model": "metainfo.source", "pk": 2195, "fields": {"orig_filename": "Sonnenfeld_Michael_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421", "author": "", "orig_id": 1438753}}, {"model": "metainfo.source", "pk": 2196, "fields": {"orig_filename": "Sonnenfeld_Zsigmond_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421f.", "author": "", "orig_id": 1438792}}, {"model": "metainfo.source", "pk": 2197, "fields": {"orig_filename": "Sonnenfels_Joseph_1733_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 422f.", "author": "", "orig_id": 1438868}}, {"model": "metainfo.source", "pk": 2198, "fields": {"orig_filename": "Sonnenleiter_Johannes_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 423", "author": "", "orig_id": 1438796}}, {"model": "metainfo.source", "pk": 2199, "fields": {"orig_filename": "Sonnenschein_Adolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 423f.", "author": "", "orig_id": 1438797}}, {"model": "metainfo.source", "pk": 2200, "fields": {"orig_filename": "Sonnenthal_Adolf_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424", "author": "", "orig_id": 1438804}}, {"model": "metainfo.source", "pk": 2201, "fields": {"orig_filename": "Sonnenthal_Hans-Friedrich_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 425", "author": "", "orig_id": 1438850}}, {"model": "metainfo.source", "pk": 2202, "fields": {"orig_filename": "Sonnenthal_Hermine_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424", "author": "", "orig_id": 1438342}}, {"model": "metainfo.source", "pk": 2203, "fields": {"orig_filename": "Sonnenthal_Samuel_1840_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424f.", "author": "", "orig_id": 1438853}}, {"model": "metainfo.source", "pk": 2204, "fields": {"orig_filename": "Sonne_Abraham_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 420f.", "author": "", "orig_id": 1438697}}, {"model": "metainfo.source", "pk": 2205, "fields": {"orig_filename": "Sonnleithner_Ignaz_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 425f.", "author": "", "orig_id": 1438864}}, {"model": "metainfo.source", "pk": 2206, "fields": {"orig_filename": "Sonnleithner_Joseph-Ferdinand_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 426", "author": "", "orig_id": 1440796}}, {"model": "metainfo.source", "pk": 2207, "fields": {"orig_filename": "Sonnleithner_Leopold_1797_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 426f.", "author": "", "orig_id": 1438912}}, {"model": "metainfo.source", "pk": 2208, "fields": {"orig_filename": "Sonnleithner_Maximilian_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 427", "author": "", "orig_id": 1438913}}, {"model": "metainfo.source", "pk": 2209, "fields": {"orig_filename": "Sonntag_Kunes_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 427f.", "author": "", "orig_id": 1438969}}, {"model": "metainfo.source", "pk": 2210, "fields": {"orig_filename": "Sontag_Henriette_1806_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 428f.", "author": "", "orig_id": 1438976}}, {"model": "metainfo.source", "pk": 2211, "fields": {"orig_filename": "Sonzogno_Edoardo_1836_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 429", "author": "", "orig_id": 1454639}}, {"model": "metainfo.source", "pk": 2212, "fields": {"orig_filename": "Sophie_Friederike_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 429f.", "author": "", "orig_id": 1439038}}, {"model": "metainfo.source", "pk": 2213, "fields": {"orig_filename": "Sopron_Ignaz_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430", "author": "", "orig_id": 1439040}}, {"model": "metainfo.source", "pk": 2214, "fields": {"orig_filename": "Soretic_Franz-De-Paula_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430f.", "author": "", "orig_id": 1439092}}, {"model": "metainfo.source", "pk": 2215, "fields": {"orig_filename": "Skutetzky_Gustav_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459036}}, {"model": "metainfo.source", "pk": 2216, "fields": {"orig_filename": "Skutetzky_Hubert_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459039}}, {"model": "metainfo.source", "pk": 2217, "fields": {"orig_filename": "Skutetzky_Karl_1886_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342f.", "author": "", "orig_id": 1459040}}, {"model": "metainfo.source", "pk": 2218, "fields": {"orig_filename": "Skutetzky_Wilhelm_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459037}}, {"model": "metainfo.source", "pk": 2219, "fields": {"orig_filename": "Slabe_Eduard_1816_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343", "author": "", "orig_id": 1459041}}, {"model": "metainfo.source", "pk": 2220, "fields": {"orig_filename": "Sladecek_Rudolf_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343", "author": "", "orig_id": 1459042}}, {"model": "metainfo.source", "pk": 2221, "fields": {"orig_filename": "Sladek_Josef-Vaclav_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343f.", "author": "", "orig_id": 1459043}}, {"model": "metainfo.source", "pk": 2222, "fields": {"orig_filename": "Sladek_Vaclav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 344", "author": "", "orig_id": 1459044}}, {"model": "metainfo.source", "pk": 2223, "fields": {"orig_filename": "Sladkovic_Andrej_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 344f.", "author": "", "orig_id": 1459045}}, {"model": "metainfo.source", "pk": 2224, "fields": {"orig_filename": "Sladkovsky_Karel_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 345", "author": "", "orig_id": 1459049}}, {"model": "metainfo.source", "pk": 2225, "fields": {"orig_filename": "Slajmer_Eduard_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 345f.", "author": "", "orig_id": 1459122}}, {"model": "metainfo.source", "pk": 2226, "fields": {"orig_filename": "Slama_Anton_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 346", "author": "", "orig_id": 1459123}}, {"model": "metainfo.source", "pk": 2227, "fields": {"orig_filename": "Slama_Frantisek-Josef_1792_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 347", "author": "", "orig_id": 1459130}}, {"model": "metainfo.source", "pk": 2228, "fields": {"orig_filename": "Slama_Frantisek_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 346f.", "author": "", "orig_id": 1459125}}, {"model": "metainfo.source", "pk": 2229, "fields": {"orig_filename": "Slama_Franz_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 347f.", "author": "", "orig_id": 1459132}}, {"model": "metainfo.source", "pk": 2230, "fields": {"orig_filename": "Slamenik_Frantisek_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348", "author": "", "orig_id": 1459133}}, {"model": "metainfo.source", "pk": 2231, "fields": {"orig_filename": "Slansky_Ludwig_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348f.", "author": "", "orig_id": 1459135}}, {"model": "metainfo.source", "pk": 2232, "fields": {"orig_filename": "Slataper_Scipio_1888_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 349", "author": "", "orig_id": 1459136}}, {"model": "metainfo.source", "pk": 2233, "fields": {"orig_filename": "Slatin_Rudolf_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 350", "author": "", "orig_id": 1456019}}, {"model": "metainfo.source", "pk": 2234, "fields": {"orig_filename": "Slavicek_Antonin_1870_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 350f.", "author": "", "orig_id": 1459139}}, {"model": "metainfo.source", "pk": 2235, "fields": {"orig_filename": "Slavicek_Josef_1818_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 351", "author": "", "orig_id": 1459141}}, {"model": "metainfo.source", "pk": 2236, "fields": {"orig_filename": "Slavici_Ioan_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 351f.", "author": "", "orig_id": 1459142}}, {"model": "metainfo.source", "pk": 2237, "fields": {"orig_filename": "Slavik_Alfred_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 352", "author": "", "orig_id": 1459143}}, {"model": "metainfo.source", "pk": 2238, "fields": {"orig_filename": "Slavik_Antonin_1782_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1459257}}, {"model": "metainfo.source", "pk": 2239, "fields": {"orig_filename": "Slavik_Antonin_1810_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1459258}}, {"model": "metainfo.source", "pk": 2240, "fields": {"orig_filename": "Slavik_Ernst_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 352f.", "author": "", "orig_id": 1459144}}, {"model": "metainfo.source", "pk": 2241, "fields": {"orig_filename": "Slavik_Frantisek-Augustin_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353", "author": "", "orig_id": 1459260}}, {"model": "metainfo.source", "pk": 2242, "fields": {"orig_filename": "Slavik_Jan_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353", "author": "", "orig_id": 1458128}}, {"model": "metainfo.source", "pk": 2243, "fields": {"orig_filename": "Slavik_Josef_1806_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353f.", "author": "", "orig_id": 1458130}}, {"model": "metainfo.source", "pk": 2244, "fields": {"orig_filename": "Slavik_Rudolf_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1458138}}, {"model": "metainfo.source", "pk": 2245, "fields": {"orig_filename": "Slavik_Vincenz_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354f.", "author": "", "orig_id": 1458140}}, {"model": "metainfo.source", "pk": 2246, "fields": {"orig_filename": "Slavik_Vladimir_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355", "author": "", "orig_id": 1458141}}, {"model": "metainfo.source", "pk": 2247, "fields": {"orig_filename": "Slavkovsky_Karel_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355", "author": "", "orig_id": 1458144}}, {"model": "metainfo.source", "pk": 2248, "fields": {"orig_filename": "Slawikowski_Anton_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355f.", "author": "", "orig_id": 1458148}}, {"model": "metainfo.source", "pk": 2249, "fields": {"orig_filename": "Slejhar_Josef-Karel_1864_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 356", "author": "", "orig_id": 1459011}}, {"model": "metainfo.source", "pk": 2250, "fields": {"orig_filename": "Slekovec_Matej_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 356f.", "author": "", "orig_id": 1459012}}, {"model": "metainfo.source", "pk": 2251, "fields": {"orig_filename": "Slezak_Elisabeth_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 357", "author": "", "orig_id": 1456815}}, {"model": "metainfo.source", "pk": 2252, "fields": {"orig_filename": "Slezak_Leo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 357f.", "author": "", "orig_id": 1456021}}, {"model": "metainfo.source", "pk": 2253, "fields": {"orig_filename": "Slezak_Otto_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 358", "author": "", "orig_id": 1459101}}, {"model": "metainfo.source", "pk": 2254, "fields": {"orig_filename": "Sliwinski_Jan_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 358f.", "author": "", "orig_id": 1459110}}, {"model": "metainfo.source", "pk": 2255, "fields": {"orig_filename": "Sloboda_Daniel_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359", "author": "", "orig_id": 1459119}}, {"model": "metainfo.source", "pk": 2256, "fields": {"orig_filename": "Slomkowski_Franciszek_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359", "author": "", "orig_id": 1459190}}, {"model": "metainfo.source", "pk": 2257, "fields": {"orig_filename": "Slomsek_Anton-Martin_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359f.", "author": "", "orig_id": 1459191}}, {"model": "metainfo.source", "pk": 2258, "fields": {"orig_filename": "Slota_Juraj_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 360f.", "author": "", "orig_id": 1459195}}, {"model": "metainfo.source", "pk": 2259, "fields": {"orig_filename": "Slotwinski-Leliwa_Feliks_1788_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 361", "author": "", "orig_id": 1459198}}, {"model": "metainfo.source", "pk": 2260, "fields": {"orig_filename": "Slotwinski-Leliwa_Konstanty_1793_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 361f.", "author": "", "orig_id": 1459199}}, {"model": "metainfo.source", "pk": 2261, "fields": {"orig_filename": "Slovensky_Janko_1856_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362", "author": "", "orig_id": 1459205}}, {"model": "metainfo.source", "pk": 2262, "fields": {"orig_filename": "Sluka_Wilhelm-Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362", "author": "", "orig_id": 1459209}}, {"model": "metainfo.source", "pk": 2263, "fields": {"orig_filename": "Smaha_Josef_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362f.", "author": "", "orig_id": 1459268}}, {"model": "metainfo.source", "pk": 2264, "fields": {"orig_filename": "Smal-Stockyj_Stephan_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 363f.", "author": "", "orig_id": 1459272}}, {"model": "metainfo.source", "pk": 2265, "fields": {"orig_filename": "Smareglia_Antonio_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364", "author": "", "orig_id": 1459273}}, {"model": "metainfo.source", "pk": 2266, "fields": {"orig_filename": "Smarzewski_Marcin_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364", "author": "", "orig_id": 1459274}}, {"model": "metainfo.source", "pk": 2267, "fields": {"orig_filename": "Smarzewski_Seweryn_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364f.", "author": "", "orig_id": 1459275}}, {"model": "metainfo.source", "pk": 2268, "fields": {"orig_filename": "Smekal_Gustav_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 365", "author": "", "orig_id": 1457372}}, {"model": "metainfo.source", "pk": 2269, "fields": {"orig_filename": "Smeral_Bohumir_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 365f.", "author": "", "orig_id": 1459282}}, {"model": "metainfo.source", "pk": 2270, "fields": {"orig_filename": "Smetana_Augustin_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 366", "author": "", "orig_id": 1462221}}, {"model": "metainfo.source", "pk": 2271, "fields": {"orig_filename": "Smetana_Friedrich_1824_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 366ff.", "author": "", "orig_id": 1462222}}, {"model": "metainfo.source", "pk": 2272, "fields": {"orig_filename": "Smetana_Josef-Frantisek_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 368", "author": "", "orig_id": 1462224}}, {"model": "metainfo.source", "pk": 2273, "fields": {"orig_filename": "Smetana_Rudolf_1802_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 368f.", "author": "", "orig_id": 1462590}}, {"model": "metainfo.source", "pk": 2274, "fields": {"orig_filename": "Smetanka_Emil_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 369", "author": "", "orig_id": 1462225}}, {"model": "metainfo.source", "pk": 2275, "fields": {"orig_filename": "Smetazko_Moritz_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 369f.", "author": "", "orig_id": 1457481}}, {"model": "metainfo.source", "pk": 2276, "fields": {"orig_filename": "Smets_Wilhelm_1796_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411772}}, {"model": "metainfo.source", "pk": 2277, "fields": {"orig_filename": "Smiciklas_Tadija_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370", "author": "", "orig_id": 1462230}}, {"model": "metainfo.source", "pk": 2278, "fields": {"orig_filename": "Smicka_Frantisek_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370", "author": "", "orig_id": 1462231}}, {"model": "metainfo.source", "pk": 2279, "fields": {"orig_filename": "Smidek_Vladimir_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317", "author": "", "orig_id": 1406748}}, {"model": "metainfo.source", "pk": 2280, "fields": {"orig_filename": "Smid_Anton-Adam_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370f.", "author": "", "orig_id": 1462232}}, {"model": "metainfo.source", "pk": 2281, "fields": {"orig_filename": "Smigelschi_Octavian_1866_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 371f.", "author": "", "orig_id": 1462233}}, {"model": "metainfo.source", "pk": 2282, "fields": {"orig_filename": "Smital_Ottokar_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 372", "author": "", "orig_id": 1462235}}, {"model": "metainfo.source", "pk": 2283, "fields": {"orig_filename": "Smola_Josef_1764_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 372f.", "author": "", "orig_id": 1458546}}, {"model": "metainfo.source", "pk": 2284, "fields": {"orig_filename": "Smola_Josef_1805_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373", "author": "", "orig_id": 1458547}}, {"model": "metainfo.source", "pk": 2285, "fields": {"orig_filename": "Smola_Karl_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373", "author": "", "orig_id": 1458548}}, {"model": "metainfo.source", "pk": 2286, "fields": {"orig_filename": "Smolenitz-Smolk_Leonidas_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 375", "author": "", "orig_id": 1457673}}, {"model": "metainfo.source", "pk": 2287, "fields": {"orig_filename": "Smolenitz-Smolk_Maria_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 374", "author": "", "orig_id": 1457919}}, {"model": "metainfo.source", "pk": 2288, "fields": {"orig_filename": "Smolenitz-Smolk_Nikolaus_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 374f.", "author": "", "orig_id": 1457920}}, {"model": "metainfo.source", "pk": 2289, "fields": {"orig_filename": "Smolenskin_Perez_1842_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 375f.", "author": "", "orig_id": 1462239}}, {"model": "metainfo.source", "pk": 2290, "fields": {"orig_filename": "Smolensky_Max_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376", "author": "", "orig_id": 1457471}}, {"model": "metainfo.source", "pk": 2291, "fields": {"orig_filename": "Smoler_Felix_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376", "author": "", "orig_id": 1462284}}, {"model": "metainfo.source", "pk": 2292, "fields": {"orig_filename": "Smoler_Franz-Xav_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376f.", "author": "", "orig_id": 1462116}}, {"model": "metainfo.source", "pk": 2293, "fields": {"orig_filename": "Smoler_Moritz_1833_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 377", "author": "", "orig_id": 1462328}}, {"model": "metainfo.source", "pk": 2294, "fields": {"orig_filename": "Smole_Andreas_1800_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373f.", "author": "", "orig_id": 1462237}}, {"model": "metainfo.source", "pk": 2295, "fields": {"orig_filename": "Smolik_Josef_1832_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 377", "author": "", "orig_id": 1462329}}, {"model": "metainfo.source", "pk": 2296, "fields": {"orig_filename": "Smolik_Julius_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378", "author": "", "orig_id": 1462330}}, {"model": "metainfo.source", "pk": 2297, "fields": {"orig_filename": "Smolik_Rupert_1832_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378", "author": "", "orig_id": 1462331}}, {"model": "metainfo.source", "pk": 2298, "fields": {"orig_filename": "Smolka_Alois_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378f.", "author": "", "orig_id": 1462333}}, {"model": "metainfo.source", "pk": 2299, "fields": {"orig_filename": "Smolka_Franciszek-Ks_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 379f.", "author": "", "orig_id": 1458218}}, {"model": "metainfo.source", "pk": 2300, "fields": {"orig_filename": "Smolka_Franciszek_1810_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 379", "author": "", "orig_id": 1462334}}, {"model": "metainfo.source", "pk": 2301, "fields": {"orig_filename": "Smolka_Stanislaw_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380", "author": "", "orig_id": 1462335}}, {"model": "metainfo.source", "pk": 2302, "fields": {"orig_filename": "Smolle_Leo_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380", "author": "", "orig_id": 1462336}}, {"model": "metainfo.source", "pk": 2303, "fields": {"orig_filename": "Smoluchowski-Smolan_Marian-Wilhelm-Teofil_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380f.", "author": "", "orig_id": 1462337}}, {"model": "metainfo.source", "pk": 2304, "fields": {"orig_filename": "Smreczynski_Franciszek_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 381f.", "author": "", "orig_id": 1462537}}, {"model": "metainfo.source", "pk": 2305, "fields": {"orig_filename": "Smrekar_Hinko_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 382", "author": "", "orig_id": 1462338}}, {"model": "metainfo.source", "pk": 2306, "fields": {"orig_filename": "Smutny_Franz_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 382f.", "author": "", "orig_id": 1462339}}, {"model": "metainfo.source", "pk": 2307, "fields": {"orig_filename": "Smycka_Jan_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383", "author": "", "orig_id": 1462340}}, {"model": "metainfo.source", "pk": 2308, "fields": {"orig_filename": "Snajdr_Karel-Sudimir_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383", "author": "", "orig_id": 1462341}}, {"model": "metainfo.source", "pk": 2309, "fields": {"orig_filename": "Snihurskyj_Johannes_1784_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383f.", "author": "", "orig_id": 1462343}}, {"model": "metainfo.source", "pk": 2310, "fields": {"orig_filename": "Snoer_Johannes_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384f.", "author": "", "orig_id": 1462344}}, {"model": "metainfo.source", "pk": 2311, "fields": {"orig_filename": "Snopek_Frantisek_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1462345}}, {"model": "metainfo.source", "pk": 2312, "fields": {"orig_filename": "Sobek_Franz-Josef_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1439288}}, {"model": "metainfo.source", "pk": 2313, "fields": {"orig_filename": "Sobek_Johann_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1439289}}, {"model": "metainfo.source", "pk": 2314, "fields": {"orig_filename": "Sobek_Sobeslav_1897_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385f.", "author": "", "orig_id": 1439342}}, {"model": "metainfo.source", "pk": 2315, "fields": {"orig_filename": "Sobieczky_Adolf_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 386", "author": "", "orig_id": 1439349}}, {"model": "metainfo.source", "pk": 2316, "fields": {"orig_filename": "Sobitschka-Wiesenhag_Josef-Richard_1854_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 386f.", "author": "", "orig_id": 1439415}}, {"model": "metainfo.source", "pk": 2317, "fields": {"orig_filename": "Singer_Samuel_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 300", "author": "", "orig_id": 1458570}}, {"model": "metainfo.source", "pk": 2318, "fields": {"orig_filename": "Singer_Siegfried_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301", "author": "", "orig_id": 1458572}}, {"model": "metainfo.source", "pk": 2319, "fields": {"orig_filename": "Singer_Sigmund_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 300f.", "author": "", "orig_id": 1458571}}, {"model": "metainfo.source", "pk": 2320, "fields": {"orig_filename": "Singer_Simon_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458562}}, {"model": "metainfo.source", "pk": 2321, "fields": {"orig_filename": "Singer_Stephan_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301", "author": "", "orig_id": 1458573}}, {"model": "metainfo.source", "pk": 2322, "fields": {"orig_filename": "Singer_Therese_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 302", "author": "", "orig_id": 1458575}}, {"model": "metainfo.source", "pk": 2323, "fields": {"orig_filename": "Singer_Wilhelm_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301f.", "author": "", "orig_id": 1458574}}, {"model": "metainfo.source", "pk": 2324, "fields": {"orig_filename": "Singule_Rudolf_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 302f.", "author": "", "orig_id": 1458577}}, {"model": "metainfo.source", "pk": 2325, "fields": {"orig_filename": "Sinnacher_Franz-Anton_1772_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 303", "author": "", "orig_id": 1458579}}, {"model": "metainfo.source", "pk": 2326, "fields": {"orig_filename": "Sinwel_Rudolf_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 303f.", "author": "", "orig_id": 1458580}}, {"model": "metainfo.source", "pk": 2327, "fields": {"orig_filename": "Sioly_Johann_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 304", "author": "", "orig_id": 1458582}}, {"model": "metainfo.source", "pk": 2328, "fields": {"orig_filename": "Sipek-Siebeck_Karl_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305", "author": "", "orig_id": 1458586}}, {"model": "metainfo.source", "pk": 2329, "fields": {"orig_filename": "Sipek_Karel_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 304f.", "author": "", "orig_id": 1458583}}, {"model": "metainfo.source", "pk": 2330, "fields": {"orig_filename": "Sipos_Paul_1759_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305", "author": "", "orig_id": 1458587}}, {"model": "metainfo.source", "pk": 2331, "fields": {"orig_filename": "Sirk_Albert_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306f.", "author": "", "orig_id": 1458659}}, {"model": "metainfo.source", "pk": 2332, "fields": {"orig_filename": "Sir_Frantisek-Vaclav_1804_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306", "author": "", "orig_id": 1458656}}, {"model": "metainfo.source", "pk": 2333, "fields": {"orig_filename": "Sir_Frantisek_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305f.", "author": "", "orig_id": 1458588}}, {"model": "metainfo.source", "pk": 2334, "fields": {"orig_filename": "Sir_Josef_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306", "author": "", "orig_id": 1458657}}, {"model": "metainfo.source", "pk": 2335, "fields": {"orig_filename": "Sisic_Ferdo_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 307f.", "author": "", "orig_id": 1458663}}, {"model": "metainfo.source", "pk": 2336, "fields": {"orig_filename": "Sis_Frantisek_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 307", "author": "", "orig_id": 1458660}}, {"model": "metainfo.source", "pk": 2337, "fields": {"orig_filename": "Sitensky_Frantisek_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308", "author": "", "orig_id": 1458664}}, {"model": "metainfo.source", "pk": 2338, "fields": {"orig_filename": "Sittenberger_Hans_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 311f.", "author": "", "orig_id": 1458675}}, {"model": "metainfo.source", "pk": 2339, "fields": {"orig_filename": "Sitter_Karl_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 312", "author": "", "orig_id": 1458676}}, {"model": "metainfo.source", "pk": 2340, "fields": {"orig_filename": "Sitte_Camillo_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 309f.", "author": "", "orig_id": 1458669}}, {"model": "metainfo.source", "pk": 2341, "fields": {"orig_filename": "Sitte_Franz_1818_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310", "author": "", "orig_id": 1458670}}, {"model": "metainfo.source", "pk": 2342, "fields": {"orig_filename": "Sitte_Olga_1884_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310", "author": "", "orig_id": 1458671}}, {"model": "metainfo.source", "pk": 2343, "fields": {"orig_filename": "Sitte_Siegfried_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310f.", "author": "", "orig_id": 1458673}}, {"model": "metainfo.source", "pk": 2344, "fields": {"orig_filename": "Sittig_Otto_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 312f.", "author": "", "orig_id": 1458677}}, {"model": "metainfo.source", "pk": 2345, "fields": {"orig_filename": "Sitt_Anton_1819_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308f.", "author": "", "orig_id": 1458666}}, {"model": "metainfo.source", "pk": 2346, "fields": {"orig_filename": "Sitt_Anton_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 309", "author": "", "orig_id": 1458667}}, {"model": "metainfo.source", "pk": 2347, "fields": {"orig_filename": "Sitt_Hans_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308f.", "author": "", "orig_id": 1458665}}, {"model": "metainfo.source", "pk": 2348, "fields": {"orig_filename": "Siuschegg_Anton_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313", "author": "", "orig_id": 1458678}}, {"model": "metainfo.source", "pk": 2349, "fields": {"orig_filename": "Six_Michael_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313", "author": "", "orig_id": 1458679}}, {"model": "metainfo.source", "pk": 2350, "fields": {"orig_filename": "Skaba_Josef_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313f.", "author": "", "orig_id": 1458680}}, {"model": "metainfo.source", "pk": 2351, "fields": {"orig_filename": "Skakoc_Giovanni_1752_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314", "author": "", "orig_id": 1458756}}, {"model": "metainfo.source", "pk": 2352, "fields": {"orig_filename": "Skakoc_Luidj_1758_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314", "author": "", "orig_id": 1458757}}, {"model": "metainfo.source", "pk": 2353, "fields": {"orig_filename": "Skalnik_Vaclav_1776_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314f.", "author": "", "orig_id": 1455508}}, {"model": "metainfo.source", "pk": 2354, "fields": {"orig_filename": "Skalsky_Gustav-Adolf_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 315", "author": "", "orig_id": 1458760}}, {"model": "metainfo.source", "pk": 2355, "fields": {"orig_filename": "Skarbek_Aleksander-Wincenty-Jan_1874_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 315f.", "author": "", "orig_id": 1458761}}, {"model": "metainfo.source", "pk": 2356, "fields": {"orig_filename": "Skarbek_Stanislaw_1780_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 316", "author": "", "orig_id": 1458764}}, {"model": "metainfo.source", "pk": 2357, "fields": {"orig_filename": "Skarda_Jakub_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 316f.", "author": "", "orig_id": 1458765}}, {"model": "metainfo.source", "pk": 2358, "fields": {"orig_filename": "Skarda_Vaclav_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 317", "author": "", "orig_id": 1458766}}, {"model": "metainfo.source", "pk": 2359, "fields": {"orig_filename": "Skarda_Vladimir_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 317f.", "author": "", "orig_id": 1458767}}, {"model": "metainfo.source", "pk": 2360, "fields": {"orig_filename": "Skaret_Ferdinand_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 318", "author": "", "orig_id": 1458768}}, {"model": "metainfo.source", "pk": 2361, "fields": {"orig_filename": "Skarlandt_Julius_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 318", "author": "", "orig_id": 1458769}}, {"model": "metainfo.source", "pk": 2362, "fields": {"orig_filename": "Skarvan_Albert_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319", "author": "", "orig_id": 1458772}}, {"model": "metainfo.source", "pk": 2363, "fields": {"orig_filename": "Skedl_Arthur_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319f.", "author": "", "orig_id": 1458773}}, {"model": "metainfo.source", "pk": 2364, "fields": {"orig_filename": "Skedl_Josef-Michael_1818_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319f.", "author": "", "orig_id": 1458774}}, {"model": "metainfo.source", "pk": 2365, "fields": {"orig_filename": "Skene_Alfred_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 320", "author": "", "orig_id": 1458775}}, {"model": "metainfo.source", "pk": 2366, "fields": {"orig_filename": "Skene_Alfred_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321", "author": "", "orig_id": 1458779}}, {"model": "metainfo.source", "pk": 2367, "fields": {"orig_filename": "Skene_August_1829_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321", "author": "", "orig_id": 1443236}}, {"model": "metainfo.source", "pk": 2368, "fields": {"orig_filename": "Skene_Richard_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321f.", "author": "", "orig_id": 1458780}}, {"model": "metainfo.source", "pk": 2369, "fields": {"orig_filename": "Skene_Richard_1909_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321f.", "author": "", "orig_id": 1458781}}, {"model": "metainfo.source", "pk": 2370, "fields": {"orig_filename": "Skerle_August-Anton_1850_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458845}}, {"model": "metainfo.source", "pk": 2371, "fields": {"orig_filename": "Skerle_August_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458844}}, {"model": "metainfo.source", "pk": 2372, "fields": {"orig_filename": "Skerle_Mathilde-Franziska_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458846}}, {"model": "metainfo.source", "pk": 2373, "fields": {"orig_filename": "Sket_Jakob_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458847}}, {"model": "metainfo.source", "pk": 2374, "fields": {"orig_filename": "Skiba_Eduard-Wladyslaw_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322f.", "author": "", "orig_id": 1458850}}, {"model": "metainfo.source", "pk": 2375, "fields": {"orig_filename": "Skibinski_Karol_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 323", "author": "", "orig_id": 1458852}}, {"model": "metainfo.source", "pk": 2376, "fields": {"orig_filename": "Sklenarova-Mala_Otylie_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 323f.", "author": "", "orig_id": 1458853}}, {"model": "metainfo.source", "pk": 2377, "fields": {"orig_filename": "Skobel_Fryderyk-Kazimierz_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 324", "author": "", "orig_id": 1458856}}, {"model": "metainfo.source", "pk": 2378, "fields": {"orig_filename": "Skoczek_Erich_1908_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 324", "author": "", "orig_id": 1458857}}, {"model": "metainfo.source", "pk": 2379, "fields": {"orig_filename": "Skoda_Emil_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 325", "author": "", "orig_id": 1455509}}, {"model": "metainfo.source", "pk": 2380, "fields": {"orig_filename": "Skoda_Franz_1801_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 325f.", "author": "", "orig_id": 1455510}}, {"model": "metainfo.source", "pk": 2381, "fields": {"orig_filename": "Skoda_Josef_1805_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 326", "author": "", "orig_id": 1455511}}, {"model": "metainfo.source", "pk": 2382, "fields": {"orig_filename": "Skoda_Karl_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 326f.", "author": "", "orig_id": 1458860}}, {"model": "metainfo.source", "pk": 2383, "fields": {"orig_filename": "Skoda_Karl_1878_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327", "author": "", "orig_id": 1455560}}, {"model": "metainfo.source", "pk": 2384, "fields": {"orig_filename": "Skofitz_Alexander_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327f.", "author": "", "orig_id": 1458862}}, {"model": "metainfo.source", "pk": 2385, "fields": {"orig_filename": "Skomal_Emil_1853_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328", "author": "", "orig_id": 1458863}}, {"model": "metainfo.source", "pk": 2386, "fields": {"orig_filename": "Skomal_Karl_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328", "author": "", "orig_id": 1458864}}, {"model": "metainfo.source", "pk": 2387, "fields": {"orig_filename": "Skopalik_Frantisek_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328f.", "author": "", "orig_id": 1458865}}, {"model": "metainfo.source", "pk": 2388, "fields": {"orig_filename": "Skopalik_Frantisek_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 329", "author": "", "orig_id": 1458866}}, {"model": "metainfo.source", "pk": 2389, "fields": {"orig_filename": "Skopec_Jindrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 329f.", "author": "", "orig_id": 1442486}}, {"model": "metainfo.source", "pk": 2390, "fields": {"orig_filename": "Skorpil_Ferdinand_1903_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 330", "author": "", "orig_id": 1458867}}, {"model": "metainfo.source", "pk": 2391, "fields": {"orig_filename": "Skorpil_Hermenegild_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 330", "author": "", "orig_id": 1458937}}, {"model": "metainfo.source", "pk": 2392, "fields": {"orig_filename": "Skorpil_Josef_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458941}}, {"model": "metainfo.source", "pk": 2393, "fields": {"orig_filename": "Skorpil_Karel_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458938}}, {"model": "metainfo.source", "pk": 2394, "fields": {"orig_filename": "Skorpil_Vaclav_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458939}}, {"model": "metainfo.source", "pk": 2395, "fields": {"orig_filename": "Skorpil_Vladislav_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458940}}, {"model": "metainfo.source", "pk": 2396, "fields": {"orig_filename": "Skrabec_Stanislav_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331f.", "author": "", "orig_id": 1458942}}, {"model": "metainfo.source", "pk": 2397, "fields": {"orig_filename": "Skrach_Vasil_1891_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332", "author": "", "orig_id": 1458943}}, {"model": "metainfo.source", "pk": 2398, "fields": {"orig_filename": "Skramlik_Emilian_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332f.", "author": "", "orig_id": 1458945}}, {"model": "metainfo.source", "pk": 2399, "fields": {"orig_filename": "Skramlik_Jan_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332f.", "author": "", "orig_id": 1458947}}, {"model": "metainfo.source", "pk": 2400, "fields": {"orig_filename": "Skraup_Karl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 333", "author": "", "orig_id": 1458948}}, {"model": "metainfo.source", "pk": 2401, "fields": {"orig_filename": "Skraup_Zdenko-Hans_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 333f.", "author": "", "orig_id": 1456018}}, {"model": "metainfo.source", "pk": 2402, "fields": {"orig_filename": "Skrbensky-Hriste_Leo_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 334", "author": "", "orig_id": 1458950}}, {"model": "metainfo.source", "pk": 2403, "fields": {"orig_filename": "Skrejsovsky_Frantisek_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 334f.", "author": "", "orig_id": 1458951}}, {"model": "metainfo.source", "pk": 2404, "fields": {"orig_filename": "Skrejsovsky_Jan-Stanislav_1831_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335", "author": "", "orig_id": 1458952}}, {"model": "metainfo.source", "pk": 2405, "fields": {"orig_filename": "Skribanek_Joseph_1788_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335", "author": "", "orig_id": 1458953}}, {"model": "metainfo.source", "pk": 2406, "fields": {"orig_filename": "Skrivan_Antonin_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335f.", "author": "", "orig_id": 1458954}}, {"model": "metainfo.source", "pk": 2407, "fields": {"orig_filename": "Skrivan_Frantisek_1807_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 336", "author": "", "orig_id": 1458955}}, {"model": "metainfo.source", "pk": 2408, "fields": {"orig_filename": "Skrivan_Gustav_1831_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 336f.", "author": "", "orig_id": 1458956}}, {"model": "metainfo.source", "pk": 2409, "fields": {"orig_filename": "Skroup_Frantisek-Seraf_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 337", "author": "", "orig_id": 1458957}}, {"model": "metainfo.source", "pk": 2410, "fields": {"orig_filename": "Skroup_Jan-Nepomuk_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 337f.", "author": "", "orig_id": 1458958}}, {"model": "metainfo.source", "pk": 2411, "fields": {"orig_filename": "Skuhersky_Franz-Alois_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338", "author": "", "orig_id": 1458959}}, {"model": "metainfo.source", "pk": 2412, "fields": {"orig_filename": "Skuhersky_Franz-Xaver_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338", "author": "", "orig_id": 1459025}}, {"model": "metainfo.source", "pk": 2413, "fields": {"orig_filename": "Skuhersky_Rudolf_1828_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338f.", "author": "", "orig_id": 1459026}}, {"model": "metainfo.source", "pk": 2414, "fields": {"orig_filename": "Skultety_August-Horislav_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 339", "author": "", "orig_id": 1459027}}, {"model": "metainfo.source", "pk": 2415, "fields": {"orig_filename": "Skultety_Jozef_1853_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 339f.", "author": "", "orig_id": 1459030}}, {"model": "metainfo.source", "pk": 2416, "fields": {"orig_filename": "Skuppa_Josef_1823_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 340", "author": "", "orig_id": 1459031}}, {"model": "metainfo.source", "pk": 2417, "fields": {"orig_filename": "Skurawy_Edmund_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 340f.", "author": "", "orig_id": 1459032}}, {"model": "metainfo.source", "pk": 2418, "fields": {"orig_filename": "Skutecky_Dominik_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 341", "author": "", "orig_id": 1459033}}, {"model": "metainfo.source", "pk": 2419, "fields": {"orig_filename": "Skutetzky_Alexander_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 341f.", "author": "", "orig_id": 1459035}}, {"model": "metainfo.source", "pk": 2420, "fields": {"orig_filename": "Sigora-Eulenstein_Anton-Heinrich_1772_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256", "author": "", "orig_id": 1457996}}, {"model": "metainfo.source", "pk": 2421, "fields": {"orig_filename": "Siklossy-Perness_Julius_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256f.", "author": "", "orig_id": 1457997}}, {"model": "metainfo.source", "pk": 2422, "fields": {"orig_filename": "Sikora_Franz_1863_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257", "author": "", "orig_id": 1458000}}, {"model": "metainfo.source", "pk": 2423, "fields": {"orig_filename": "Sikorski_Wladyslaw-Eugeniusz_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257f.", "author": "", "orig_id": 1458001}}, {"model": "metainfo.source", "pk": 2424, "fields": {"orig_filename": "Siko_Miklos_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257", "author": "", "orig_id": 1457999}}, {"model": "metainfo.source", "pk": 2425, "fields": {"orig_filename": "Silberberg_Maximilian_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 259f.", "author": "", "orig_id": 1458068}}, {"model": "metainfo.source", "pk": 2426, "fields": {"orig_filename": "Silberbusch_David-Jeschajahu_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 260", "author": "", "orig_id": 1458071}}, {"model": "metainfo.source", "pk": 2427, "fields": {"orig_filename": "Silberer_Geza_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 261", "author": "", "orig_id": 1458073}}, {"model": "metainfo.source", "pk": 2428, "fields": {"orig_filename": "Silberer_Herbert_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 261f.", "author": "", "orig_id": 1458075}}, {"model": "metainfo.source", "pk": 2429, "fields": {"orig_filename": "Silberer_Rosa_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 262", "author": "", "orig_id": 1458076}}, {"model": "metainfo.source", "pk": 2430, "fields": {"orig_filename": "Silberer_Viktor_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 262f.", "author": "", "orig_id": 1458077}}, {"model": "metainfo.source", "pk": 2431, "fields": {"orig_filename": "Silberhuber_Anton_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 263", "author": "", "orig_id": 1458078}}, {"model": "metainfo.source", "pk": 2432, "fields": {"orig_filename": "Silbermark_Moriz-Viktor_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 263f.", "author": "", "orig_id": 1458079}}, {"model": "metainfo.source", "pk": 2433, "fields": {"orig_filename": "Silbernagl_Johann_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 264", "author": "", "orig_id": 1458080}}, {"model": "metainfo.source", "pk": 2434, "fields": {"orig_filename": "Silberstein_Adolf_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 264f.", "author": "", "orig_id": 1458081}}, {"model": "metainfo.source", "pk": 2435, "fields": {"orig_filename": "Silberstein_August_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265", "author": "", "orig_id": 1458083}}, {"model": "metainfo.source", "pk": 2436, "fields": {"orig_filename": "Silberstern_Philipp_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265", "author": "", "orig_id": 1458084}}, {"model": "metainfo.source", "pk": 2437, "fields": {"orig_filename": "Silbert_Johann-Peter_1778_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265f.", "author": "", "orig_id": 1458085}}, {"model": "metainfo.source", "pk": 2438, "fields": {"orig_filename": "Silbert_Maria_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 266", "author": "", "orig_id": 1458087}}, {"model": "metainfo.source", "pk": 2439, "fields": {"orig_filename": "Silber_Max_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 258f.", "author": "", "orig_id": 1458004}}, {"model": "metainfo.source", "pk": 2440, "fields": {"orig_filename": "Silber_Philipp_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 259", "author": "", "orig_id": 1458067}}, {"model": "metainfo.source", "pk": 2441, "fields": {"orig_filename": "Sileny_Vaclav_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 266f.", "author": "", "orig_id": 1458088}}, {"model": "metainfo.source", "pk": 2442, "fields": {"orig_filename": "Silinger_Tomas-Eduard_1866_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 267f.", "author": "", "orig_id": 1458089}}, {"model": "metainfo.source", "pk": 2443, "fields": {"orig_filename": "Siller_Franz_1893_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268", "author": "", "orig_id": 1458090}}, {"model": "metainfo.source", "pk": 2444, "fields": {"orig_filename": "Siller_Heinrich_1884_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268", "author": "", "orig_id": 1458091}}, {"model": "metainfo.source", "pk": 2445, "fields": {"orig_filename": "Siller_Josef_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268f.", "author": "", "orig_id": 1458152}}, {"model": "metainfo.source", "pk": 2446, "fields": {"orig_filename": "Silli_Giuseppe_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 269", "author": "", "orig_id": 1458154}}, {"model": "metainfo.source", "pk": 2447, "fields": {"orig_filename": "Silovic_Josip_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 269f.", "author": "", "orig_id": 1458155}}, {"model": "metainfo.source", "pk": 2448, "fields": {"orig_filename": "Silva-Tarouca_Ernst-Emanuel_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 270f.", "author": "", "orig_id": 1458157}}, {"model": "metainfo.source", "pk": 2449, "fields": {"orig_filename": "Silva-Tarouca_Franz-Josef_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 270", "author": "", "orig_id": 1458161}}, {"model": "metainfo.source", "pk": 2450, "fields": {"orig_filename": "Silvestri_Pietro_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271", "author": "", "orig_id": 1458162}}, {"model": "metainfo.source", "pk": 2451, "fields": {"orig_filename": "Silving_Bert_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271", "author": "", "orig_id": 1458163}}, {"model": "metainfo.source", "pk": 2452, "fields": {"orig_filename": "Sil_Josef_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 258", "author": "", "orig_id": 1458002}}, {"model": "metainfo.source", "pk": 2453, "fields": {"orig_filename": "Simacek_Frantisek_1834_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271f.", "author": "", "orig_id": 1458164}}, {"model": "metainfo.source", "pk": 2454, "fields": {"orig_filename": "Simacek_Josef_1837_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 272", "author": "", "orig_id": 1458165}}, {"model": "metainfo.source", "pk": 2455, "fields": {"orig_filename": "Simacek_Matej-Anastasia_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 272f.", "author": "", "orig_id": 1458166}}, {"model": "metainfo.source", "pk": 2456, "fields": {"orig_filename": "Simai_Kristof_1742_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 273", "author": "", "orig_id": 1458167}}, {"model": "metainfo.source", "pk": 2457, "fields": {"orig_filename": "Simak_Josef-Vitezslav_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 273", "author": "", "orig_id": 1458168}}, {"model": "metainfo.source", "pk": 2458, "fields": {"orig_filename": "Simandl_Franz_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274", "author": "", "orig_id": 1458173}}, {"model": "metainfo.source", "pk": 2459, "fields": {"orig_filename": "Simbschen_Joseph-Anton_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274f.", "author": "", "orig_id": 1458174}}, {"model": "metainfo.source", "pk": 2460, "fields": {"orig_filename": "Simbschen_Joseph-Karl_1781_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274f.", "author": "", "orig_id": 1458175}}, {"model": "metainfo.source", "pk": 2461, "fields": {"orig_filename": "Simbschen_Julius_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458177}}, {"model": "metainfo.source", "pk": 2462, "fields": {"orig_filename": "Simbschen_Karl_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458176}}, {"model": "metainfo.source", "pk": 2463, "fields": {"orig_filename": "Simecek_Frantisek_1842_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458251}}, {"model": "metainfo.source", "pk": 2464, "fields": {"orig_filename": "Simeoner_Archangelus_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275f.", "author": "", "orig_id": 1458252}}, {"model": "metainfo.source", "pk": 2465, "fields": {"orig_filename": "Simerka_Vaclav_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276", "author": "", "orig_id": 1458253}}, {"model": "metainfo.source", "pk": 2466, "fields": {"orig_filename": "Simic_Antun-Branko_1898_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276", "author": "", "orig_id": 1458254}}, {"model": "metainfo.source", "pk": 2467, "fields": {"orig_filename": "Simic_Pavle_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276f.", "author": "", "orig_id": 1458256}}, {"model": "metainfo.source", "pk": 2468, "fields": {"orig_filename": "Simiginowicz-Staufe_Ludwig-Adolf_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 277f.", "author": "", "orig_id": 1458258}}, {"model": "metainfo.source", "pk": 2469, "fields": {"orig_filename": "Simitsch-Hohenblum_Alfred_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278", "author": "", "orig_id": 1458260}}, {"model": "metainfo.source", "pk": 2470, "fields": {"orig_filename": "Simitsch-Hohenblum_Josef_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278", "author": "", "orig_id": 1458261}}, {"model": "metainfo.source", "pk": 2471, "fields": {"orig_filename": "Simm-Mayer_Marie_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458266}}, {"model": "metainfo.source", "pk": 2472, "fields": {"orig_filename": "Simm_Anton_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278f.", "author": "", "orig_id": 1458263}}, {"model": "metainfo.source", "pk": 2473, "fields": {"orig_filename": "Simm_Franz-Xaver_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458264}}, {"model": "metainfo.source", "pk": 2474, "fields": {"orig_filename": "Simonek-Mladatov_Josef_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 281f.", "author": "", "orig_id": 1458365}}, {"model": "metainfo.source", "pk": 2475, "fields": {"orig_filename": "Simonetti_Giovanni_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 282", "author": "", "orig_id": 1458366}}, {"model": "metainfo.source", "pk": 2476, "fields": {"orig_filename": "Simonic_Franz_1847_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 282f.", "author": "", "orig_id": 1458368}}, {"model": "metainfo.source", "pk": 2477, "fields": {"orig_filename": "Simonides_Alois_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283", "author": "", "orig_id": 1458370}}, {"model": "metainfo.source", "pk": 2478, "fields": {"orig_filename": "Simonkai_Lajos_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283", "author": "", "orig_id": 1458371}}, {"model": "metainfo.source", "pk": 2479, "fields": {"orig_filename": "Simons_Rainer_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283f.", "author": "", "orig_id": 1458372}}, {"model": "metainfo.source", "pk": 2480, "fields": {"orig_filename": "Simonyi-Semadam_Sandor_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287f.", "author": "", "orig_id": 1458383}}, {"model": "metainfo.source", "pk": 2481, "fields": {"orig_filename": "Simonyi-Vitezvar_Jozsef_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 288", "author": "", "orig_id": 1458384}}, {"model": "metainfo.source", "pk": 2482, "fields": {"orig_filename": "Simonyi-Vitezvar_Lajos_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 288f.", "author": "", "orig_id": 1458385}}, {"model": "metainfo.source", "pk": 2483, "fields": {"orig_filename": "Simonyi_Antal_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 286", "author": "", "orig_id": 1458378}}, {"model": "metainfo.source", "pk": 2484, "fields": {"orig_filename": "Simonyi_Ernoe_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 286f.", "author": "", "orig_id": 1458379}}, {"model": "metainfo.source", "pk": 2485, "fields": {"orig_filename": "Simonyi_Karoline-Johanna_1803_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287", "author": "", "orig_id": 1458380}}, {"model": "metainfo.source", "pk": 2486, "fields": {"orig_filename": "Simonyi_Zsigmond_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287", "author": "", "orig_id": 1458382}}, {"model": "metainfo.source", "pk": 2487, "fields": {"orig_filename": "Simony_Friedrich_1813_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 284", "author": "", "orig_id": 1458374}}, {"model": "metainfo.source", "pk": 2488, "fields": {"orig_filename": "Simony_Leopold_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 284f.", "author": "", "orig_id": 1458375}}, {"model": "metainfo.source", "pk": 2489, "fields": {"orig_filename": "Simony_Oskar_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 285f.", "author": "", "orig_id": 1458377}}, {"model": "metainfo.source", "pk": 2490, "fields": {"orig_filename": "Simony_Stefan_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 285", "author": "", "orig_id": 1458376}}, {"model": "metainfo.source", "pk": 2491, "fields": {"orig_filename": "Simon_Josef_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279f.", "author": "", "orig_id": 1458268}}, {"model": "metainfo.source", "pk": 2492, "fields": {"orig_filename": "Simon_Oscar_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 280", "author": "", "orig_id": 1458273}}, {"model": "metainfo.source", "pk": 2493, "fields": {"orig_filename": "Simon_Sigismund_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 280f.", "author": "", "orig_id": 1458274}}, {"model": "metainfo.source", "pk": 2494, "fields": {"orig_filename": "Simon_T-Frantisek_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 281", "author": "", "orig_id": 1458276}}, {"model": "metainfo.source", "pk": 2495, "fields": {"orig_filename": "Simor_Janos_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289", "author": "", "orig_id": 1458386}}, {"model": "metainfo.source", "pk": 2496, "fields": {"orig_filename": "Simo_Ferenc_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458267}}, {"model": "metainfo.source", "pk": 2497, "fields": {"orig_filename": "Simunich_Balthasar_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289", "author": "", "orig_id": 1458388}}, {"model": "metainfo.source", "pk": 2498, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Georg-Simon_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289f.", "author": "", "orig_id": 1458464}}, {"model": "metainfo.source", "pk": 2499, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Johann-Simon_1804_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 290", "author": "", "orig_id": 1458465}}, {"model": "metainfo.source", "pk": 2500, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Simon-Georg_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 290f.", "author": "", "orig_id": 1458466}}, {"model": "metainfo.source", "pk": 2501, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Simon-Georg_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 291", "author": "", "orig_id": 1458468}}, {"model": "metainfo.source", "pk": 2502, "fields": {"orig_filename": "Sincai_Gheorghe_1754_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 291f.", "author": "", "orig_id": 1458470}}, {"model": "metainfo.source", "pk": 2503, "fields": {"orig_filename": "Sindelar_Matthias_1903_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 292", "author": "", "orig_id": 1458471}}, {"model": "metainfo.source", "pk": 2504, "fields": {"orig_filename": "Singer_Clara__1967.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458487}}, {"model": "metainfo.source", "pk": 2505, "fields": {"orig_filename": "Singer_Edmund_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293", "author": "", "orig_id": 1458472}}, {"model": "metainfo.source", "pk": 2506, "fields": {"orig_filename": "Singer_Edmund_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293f.", "author": "", "orig_id": 1458473}}, {"model": "metainfo.source", "pk": 2507, "fields": {"orig_filename": "Singer_Emanuel_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294", "author": "", "orig_id": 1458475}}, {"model": "metainfo.source", "pk": 2508, "fields": {"orig_filename": "Singer_Emil_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294", "author": "", "orig_id": 1458476}}, {"model": "metainfo.source", "pk": 2509, "fields": {"orig_filename": "Singer_Franz-Ignaz_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294f.", "author": "", "orig_id": 1458478}}, {"model": "metainfo.source", "pk": 2510, "fields": {"orig_filename": "Singer_Friedrich_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293", "author": "", "orig_id": 1458474}}, {"model": "metainfo.source", "pk": 2511, "fields": {"orig_filename": "Singer_Gustav_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 295", "author": "", "orig_id": 1458479}}, {"model": "metainfo.source", "pk": 2512, "fields": {"orig_filename": "Singer_Heinrich-Joseph_1855_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 295f.", "author": "", "orig_id": 1458480}}, {"model": "metainfo.source", "pk": 2513, "fields": {"orig_filename": "Singer_Isidor_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 296", "author": "", "orig_id": 1458482}}, {"model": "metainfo.source", "pk": 2514, "fields": {"orig_filename": "Singer_Isidor_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 296f.", "author": "", "orig_id": 1458483}}, {"model": "metainfo.source", "pk": 2515, "fields": {"orig_filename": "Singer_Jakob_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458484}}, {"model": "metainfo.source", "pk": 2516, "fields": {"orig_filename": "Singer_Joseph_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458485}}, {"model": "metainfo.source", "pk": 2517, "fields": {"orig_filename": "Singer_Julius_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297f.", "author": "", "orig_id": 1458563}}, {"model": "metainfo.source", "pk": 2518, "fields": {"orig_filename": "Singer_Karl-Max-Friedrich_1888_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 298", "author": "", "orig_id": 1458565}}, {"model": "metainfo.source", "pk": 2519, "fields": {"orig_filename": "Singer_Ludvik_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 298f.", "author": "", "orig_id": 1458566}}, {"model": "metainfo.source", "pk": 2520, "fields": {"orig_filename": "Singer_Max_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 299", "author": "", "orig_id": 1458567}}, {"model": "metainfo.source", "pk": 2521, "fields": {"orig_filename": "Singer_Petrus-Von-Alcantara_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 299f.", "author": "", "orig_id": 1458568}}, {"model": "metainfo.source", "pk": 2522, "fields": {"orig_filename": "Seykora_Oldrich-V_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210f.", "author": "", "orig_id": 1450962}}, {"model": "metainfo.source", "pk": 2523, "fields": {"orig_filename": "Seyler_Karoly_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 211f.", "author": "", "orig_id": 1450964}}, {"model": "metainfo.source", "pk": 2524, "fields": {"orig_filename": "Seyller_Otto_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212", "author": "", "orig_id": 1450965}}, {"model": "metainfo.source", "pk": 2525, "fields": {"orig_filename": "Seyrer_Ignaz_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212", "author": "", "orig_id": 1450966}}, {"model": "metainfo.source", "pk": 2526, "fields": {"orig_filename": "Seyrl_Franz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212f.", "author": "", "orig_id": 1450967}}, {"model": "metainfo.source", "pk": 2527, "fields": {"orig_filename": "Seyrl_Rudolf_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213", "author": "", "orig_id": 1450968}}, {"model": "metainfo.source", "pk": 2528, "fields": {"orig_filename": "Seyss-Inquart_Arthur_1892_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213f.", "author": "", "orig_id": 1449992}}, {"model": "metainfo.source", "pk": 2529, "fields": {"orig_filename": "Seyss-Inquart_Richard_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 214f.", "author": "", "orig_id": 1449993}}, {"model": "metainfo.source", "pk": 2530, "fields": {"orig_filename": "Seyss_Ludwig_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213", "author": "", "orig_id": 1450969}}, {"model": "metainfo.source", "pk": 2531, "fields": {"orig_filename": "Sfetez_Giovanni_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 215", "author": "", "orig_id": 1449994}}, {"model": "metainfo.source", "pk": 2532, "fields": {"orig_filename": "Sfondrini_Achille_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 215f.", "author": "", "orig_id": 1449995}}, {"model": "metainfo.source", "pk": 2533, "fields": {"orig_filename": "Sforzi_Giuseppe_1801_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 216", "author": "", "orig_id": 1449996}}, {"model": "metainfo.source", "pk": 2534, "fields": {"orig_filename": "Shivitz_Valentin-Matthias_1828_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 216f.", "author": "", "orig_id": 1449997}}, {"model": "metainfo.source", "pk": 2535, "fields": {"orig_filename": "Siber_Alfons_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 217", "author": "", "orig_id": 1449999}}, {"model": "metainfo.source", "pk": 2536, "fields": {"orig_filename": "Siber_Franz_1751_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 217f.", "author": "", "orig_id": 1450000}}, {"model": "metainfo.source", "pk": 2537, "fields": {"orig_filename": "Siboni_Giuseppe-Vincenzo-Antonio_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 218", "author": "", "orig_id": 1450001}}, {"model": "metainfo.source", "pk": 2538, "fields": {"orig_filename": "Sicard-Sicardsburg_August_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 219f.", "author": "", "orig_id": 1450003}}, {"model": "metainfo.source", "pk": 2539, "fields": {"orig_filename": "Sicharter_Barbara_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 220f.", "author": "", "orig_id": 1450005}}, {"model": "metainfo.source", "pk": 2540, "fields": {"orig_filename": "Sicha_Anton-Jaroslav_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 220", "author": "", "orig_id": 1450004}}, {"model": "metainfo.source", "pk": 2541, "fields": {"orig_filename": "Sichrovsky_Heinrich-Joachim_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 221f.", "author": "", "orig_id": 1450006}}, {"model": "metainfo.source", "pk": 2542, "fields": {"orig_filename": "Sichrovsky_Joseph_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 222f.", "author": "", "orig_id": 1450007}}, {"model": "metainfo.source", "pk": 2543, "fields": {"orig_filename": "Sickel_Theodor_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223f.", "author": "", "orig_id": 1450009}}, {"model": "metainfo.source", "pk": 2544, "fields": {"orig_filename": "Sic_Albert-Franc_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 218f.", "author": "", "orig_id": 1450002}}, {"model": "metainfo.source", "pk": 2545, "fields": {"orig_filename": "Sidoli_Alessandro_1812_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 224f.", "author": "", "orig_id": 1450010}}, {"model": "metainfo.source", "pk": 2546, "fields": {"orig_filename": "Sidorowicz_Zygmunt_1846_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225", "author": "", "orig_id": 1450012}}, {"model": "metainfo.source", "pk": 2547, "fields": {"orig_filename": "Sidor_Andrzej_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225", "author": "", "orig_id": 1450011}}, {"model": "metainfo.source", "pk": 2548, "fields": {"orig_filename": "Siebeck_Rudolph_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225f.", "author": "", "orig_id": 1450013}}, {"model": "metainfo.source", "pk": 2549, "fields": {"orig_filename": "Siebenrock_Friedrich_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 226", "author": "", "orig_id": 1450014}}, {"model": "metainfo.source", "pk": 2550, "fields": {"orig_filename": "Sieberer_Anton_1901_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 228", "author": "", "orig_id": 1450075}}, {"model": "metainfo.source", "pk": 2551, "fields": {"orig_filename": "Sieberer_Johann_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 228f.", "author": "", "orig_id": 1450076}}, {"model": "metainfo.source", "pk": 2552, "fields": {"orig_filename": "Sieber_Ferdinand_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 226f.", "author": "", "orig_id": 1450015}}, {"model": "metainfo.source", "pk": 2553, "fields": {"orig_filename": "Sieber_Franz-Wilhelm_1789_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 227", "author": "", "orig_id": 1450016}}, {"model": "metainfo.source", "pk": 2554, "fields": {"orig_filename": "Sieber_Karl-Laurenz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 227f.", "author": "", "orig_id": 1450017}}, {"model": "metainfo.source", "pk": 2555, "fields": {"orig_filename": "Siebinger_Josef_1800_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 229", "author": "", "orig_id": 1450077}}, {"model": "metainfo.source", "pk": 2556, "fields": {"orig_filename": "Siebold_Alexander_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 229", "author": "", "orig_id": 1450078}}, {"model": "metainfo.source", "pk": 2557, "fields": {"orig_filename": "Siebold_Heinrich_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230", "author": "", "orig_id": 1450079}}, {"model": "metainfo.source", "pk": 2558, "fields": {"orig_filename": "Siedek_Oskar_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230f.", "author": "", "orig_id": 1450080}}, {"model": "metainfo.source", "pk": 2559, "fields": {"orig_filename": "Siedek_Peter-Karl_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230f.", "author": "", "orig_id": 1450081}}, {"model": "metainfo.source", "pk": 2560, "fields": {"orig_filename": "Siedek_Richard_1859_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 231", "author": "", "orig_id": 1445586}}, {"model": "metainfo.source", "pk": 2561, "fields": {"orig_filename": "Siedek_Viktor_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 231f.", "author": "", "orig_id": 1450082}}, {"model": "metainfo.source", "pk": 2562, "fields": {"orig_filename": "Sieder_Adolf_1913_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232", "author": "", "orig_id": 1450084}}, {"model": "metainfo.source", "pk": 2563, "fields": {"orig_filename": "Sieder_Josef_1918_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232", "author": "", "orig_id": 1450083}}, {"model": "metainfo.source", "pk": 2564, "fields": {"orig_filename": "Siedlecki_Michal-Marian_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232f.", "author": "", "orig_id": 1450085}}, {"model": "metainfo.source", "pk": 2565, "fields": {"orig_filename": "Siegelbaum_Leo_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236", "author": "", "orig_id": 1450092}}, {"model": "metainfo.source", "pk": 2566, "fields": {"orig_filename": "Siegele_Josef_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236f.", "author": "", "orig_id": 1450093}}, {"model": "metainfo.source", "pk": 2567, "fields": {"orig_filename": "Siegel_Carl_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234f.", "author": "", "orig_id": 1420065}}, {"model": "metainfo.source", "pk": 2568, "fields": {"orig_filename": "Siegel_Ernst_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 235", "author": "", "orig_id": 1426316}}, {"model": "metainfo.source", "pk": 2569, "fields": {"orig_filename": "Siegel_Franz_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 235f.", "author": "", "orig_id": 1450090}}, {"model": "metainfo.source", "pk": 2570, "fields": {"orig_filename": "Siegel_Heinrich_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236", "author": "", "orig_id": 1450091}}, {"model": "metainfo.source", "pk": 2571, "fields": {"orig_filename": "Sieger_Eduard_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 237", "author": "", "orig_id": 1450094}}, {"model": "metainfo.source", "pk": 2572, "fields": {"orig_filename": "Sieger_Robert_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450095}}, {"model": "metainfo.source", "pk": 2573, "fields": {"orig_filename": "Sieger_Robert_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450097}}, {"model": "metainfo.source", "pk": 2574, "fields": {"orig_filename": "Sieger_Viktor_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450096}}, {"model": "metainfo.source", "pk": 2575, "fields": {"orig_filename": "Siege_Adolf_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 233f.", "author": "", "orig_id": 1450086}}, {"model": "metainfo.source", "pk": 2576, "fields": {"orig_filename": "Siege_Gustav_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450089}}, {"model": "metainfo.source", "pk": 2577, "fields": {"orig_filename": "Siege_Ignaz_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450087}}, {"model": "metainfo.source", "pk": 2578, "fields": {"orig_filename": "Siege_Josef_1790_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450088}}, {"model": "metainfo.source", "pk": 2579, "fields": {"orig_filename": "Sieghart_Rudolf_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 239", "author": "", "orig_id": 1450098}}, {"model": "metainfo.source", "pk": 2580, "fields": {"orig_filename": "Siegler-Eberswald_Heinrich_1774_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244", "author": "", "orig_id": 1457895}}, {"model": "metainfo.source", "pk": 2581, "fields": {"orig_filename": "Siegler-Eberswald_Ida_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244f.", "author": "", "orig_id": 1427965}}, {"model": "metainfo.source", "pk": 2582, "fields": {"orig_filename": "Siegl_Carl-Ignaz_1802_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 239f.", "author": "", "orig_id": 1450099}}, {"model": "metainfo.source", "pk": 2583, "fields": {"orig_filename": "Siegl_Eduard_1831_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 240", "author": "", "orig_id": 1450100}}, {"model": "metainfo.source", "pk": 2584, "fields": {"orig_filename": "Siegl_Emil_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 240f.", "author": "", "orig_id": 1450150}}, {"model": "metainfo.source", "pk": 2585, "fields": {"orig_filename": "Siegl_Johann_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242", "author": "", "orig_id": 1457821}}, {"model": "metainfo.source", "pk": 2586, "fields": {"orig_filename": "Siegl_Johann_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241", "author": "", "orig_id": 1457819}}, {"model": "metainfo.source", "pk": 2587, "fields": {"orig_filename": "Siegl_Karl_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241f.", "author": "", "orig_id": 1457820}}, {"model": "metainfo.source", "pk": 2588, "fields": {"orig_filename": "Siegl_Karl_1851_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242", "author": "", "orig_id": 1457822}}, {"model": "metainfo.source", "pk": 2589, "fields": {"orig_filename": "Siegl_Max_1856_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242f.", "author": "", "orig_id": 1457823}}, {"model": "metainfo.source", "pk": 2590, "fields": {"orig_filename": "Siegl_Meinrad_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243", "author": "", "orig_id": 1457824}}, {"model": "metainfo.source", "pk": 2591, "fields": {"orig_filename": "Siegl_Richard_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243f.", "author": "", "orig_id": 1457893}}, {"model": "metainfo.source", "pk": 2592, "fields": {"orig_filename": "Siegl_Robert_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243f.", "author": "", "orig_id": 1457892}}, {"model": "metainfo.source", "pk": 2593, "fields": {"orig_filename": "Siegl_Robert_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241", "author": "", "orig_id": 1457818}}, {"model": "metainfo.source", "pk": 2594, "fields": {"orig_filename": "Siegl_Rudolf_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244", "author": "", "orig_id": 1457894}}, {"model": "metainfo.source", "pk": 2595, "fields": {"orig_filename": "Siegmund_Adolf_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245", "author": "", "orig_id": 1457899}}, {"model": "metainfo.source", "pk": 2596, "fields": {"orig_filename": "Siegmund_Anton_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245f.", "author": "", "orig_id": 1457900}}, {"model": "metainfo.source", "pk": 2597, "fields": {"orig_filename": "Siegmund_Ferdinand_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 246", "author": "", "orig_id": 1457902}}, {"model": "metainfo.source", "pk": 2598, "fields": {"orig_filename": "Siegmund_Franz-Florian_1785_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 247", "author": "", "orig_id": 1457906}}, {"model": "metainfo.source", "pk": 2599, "fields": {"orig_filename": "Siegmund_Franz_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 246f.", "author": "", "orig_id": 1457903}}, {"model": "metainfo.source", "pk": 2600, "fields": {"orig_filename": "Siegmund_Gustav_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248f.", "author": "", "orig_id": 1457911}}, {"model": "metainfo.source", "pk": 2601, "fields": {"orig_filename": "Siegmund_Hans_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 247f.", "author": "", "orig_id": 1457908}}, {"model": "metainfo.source", "pk": 2602, "fields": {"orig_filename": "Siegmund_Heinrich_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245f.", "author": "", "orig_id": 1457901}}, {"model": "metainfo.source", "pk": 2603, "fields": {"orig_filename": "Siegmund_Wilhelm_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248", "author": "", "orig_id": 1457909}}, {"model": "metainfo.source", "pk": 2604, "fields": {"orig_filename": "Siegmund_Wilhelm_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248f.", "author": "", "orig_id": 1457910}}, {"model": "metainfo.source", "pk": 2605, "fields": {"orig_filename": "Siegris_Emmerich_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457912}}, {"model": "metainfo.source", "pk": 2606, "fields": {"orig_filename": "Siemianowski_Franciszek-Ksawery_1811_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457914}}, {"model": "metainfo.source", "pk": 2607, "fields": {"orig_filename": "Siemianowski_Maksymilian_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457913}}, {"model": "metainfo.source", "pk": 2608, "fields": {"orig_filename": "Sierakowski_Sebastian_1743_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 250", "author": "", "orig_id": 1457915}}, {"model": "metainfo.source", "pk": 2609, "fields": {"orig_filename": "Sies_Josef-Nikolaus_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 250f.", "author": "", "orig_id": 1457916}}, {"model": "metainfo.source", "pk": 2610, "fields": {"orig_filename": "Sigerus_Emil_1854_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 251", "author": "", "orig_id": 1457981}}, {"model": "metainfo.source", "pk": 2611, "fields": {"orig_filename": "Sigerus_Peter_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 251f.", "author": "", "orig_id": 1457982}}, {"model": "metainfo.source", "pk": 2612, "fields": {"orig_filename": "Sighartner_Anton-Franz_1790_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457983}}, {"model": "metainfo.source", "pk": 2613, "fields": {"orig_filename": "Sighartner_Friedrich_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457984}}, {"model": "metainfo.source", "pk": 2614, "fields": {"orig_filename": "Sighele-Siegenfels_Lorenzo_1761_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457985}}, {"model": "metainfo.source", "pk": 2615, "fields": {"orig_filename": "Sigl_Alfred-Ludwig_1854_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 253", "author": "", "orig_id": 1457986}}, {"model": "metainfo.source", "pk": 2616, "fields": {"orig_filename": "Sigl_Georg_1811_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252f.", "author": "", "orig_id": 1416630}}, {"model": "metainfo.source", "pk": 2617, "fields": {"orig_filename": "Sigl_Josef_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 253f.", "author": "", "orig_id": 1457987}}, {"model": "metainfo.source", "pk": 2618, "fields": {"orig_filename": "Sigmund-Ilanor_Karl-Ludwig_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254f.", "author": "", "orig_id": 1457992}}, {"model": "metainfo.source", "pk": 2619, "fields": {"orig_filename": "Sigmundt_Friedrich_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 255", "author": "", "orig_id": 1457993}}, {"model": "metainfo.source", "pk": 2620, "fields": {"orig_filename": "Sigmundt_Ludwig_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 255", "author": "", "orig_id": 1457994}}, {"model": "metainfo.source", "pk": 2621, "fields": {"orig_filename": "Sigmund_Adolf_1892_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254", "author": "", "orig_id": 1457990}}, {"model": "metainfo.source", "pk": 2622, "fields": {"orig_filename": "Sigmund_Alois_1853_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254", "author": "", "orig_id": 1457991}}, {"model": "metainfo.source", "pk": 2623, "fields": {"orig_filename": "Signoroni_Bartolomeo_1797_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256", "author": "", "orig_id": 1457995}}, {"model": "metainfo.source", "pk": 2624, "fields": {"orig_filename": "Sembratowicz_Joseph_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164", "author": "", "orig_id": 1450647}}, {"model": "metainfo.source", "pk": 2625, "fields": {"orig_filename": "Sembratowicz_Sylvester_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164f.", "author": "", "orig_id": 1450648}}, {"model": "metainfo.source", "pk": 2626, "fields": {"orig_filename": "Sembrich_Marcella_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 165f.", "author": "", "orig_id": 1450649}}, {"model": "metainfo.source", "pk": 2627, "fields": {"orig_filename": "Semeleder_Friedrich-Anton_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 166", "author": "", "orig_id": 1450651}}, {"model": "metainfo.source", "pk": 2628, "fields": {"orig_filename": "Semelrock_Johann-Bapt_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 166f.", "author": "", "orig_id": 1450652}}, {"model": "metainfo.source", "pk": 2629, "fields": {"orig_filename": "Semkowicz_Aleksander_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 167", "author": "", "orig_id": 1450653}}, {"model": "metainfo.source", "pk": 2630, "fields": {"orig_filename": "Semkowicz_Wladyslaw-Jan-Aleksander_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 167f.", "author": "", "orig_id": 1450654}}, {"model": "metainfo.source", "pk": 2631, "fields": {"orig_filename": "Semmelweis_Ignaz-Philipp_1818_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 168f.", "author": "", "orig_id": 1450655}}, {"model": "metainfo.source", "pk": 2632, "fields": {"orig_filename": "Semper_Gottfried_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 169f.", "author": "", "orig_id": 1450656}}, {"model": "metainfo.source", "pk": 2633, "fields": {"orig_filename": "Semper_Hans_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 170", "author": "", "orig_id": 1450657}}, {"model": "metainfo.source", "pk": 2634, "fields": {"orig_filename": "Semsey-Semse_Gustav_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171", "author": "", "orig_id": 1450694}}, {"model": "metainfo.source", "pk": 2635, "fields": {"orig_filename": "Semsey_Andor_1833_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171", "author": "", "orig_id": 1450658}}, {"model": "metainfo.source", "pk": 2636, "fields": {"orig_filename": "Senders_Ernestine_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 172", "author": "", "orig_id": 1450697}}, {"model": "metainfo.source", "pk": 2637, "fields": {"orig_filename": "Senfelder_Leopold_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 172f.", "author": "", "orig_id": 1450698}}, {"model": "metainfo.source", "pk": 2638, "fields": {"orig_filename": "Senfft-Pilsach_Friedrich-Christian-Ludwig_1774_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 173", "author": "", "orig_id": 1450699}}, {"model": "metainfo.source", "pk": 2639, "fields": {"orig_filename": "Senft_Emanuel_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 173f.", "author": "", "orig_id": 1450701}}, {"model": "metainfo.source", "pk": 2640, "fields": {"orig_filename": "Senger_Anton_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 174", "author": "", "orig_id": 1450702}}, {"model": "metainfo.source", "pk": 2641, "fields": {"orig_filename": "Senger_Joseph_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 175", "author": "", "orig_id": 1450703}}, {"model": "metainfo.source", "pk": 2642, "fields": {"orig_filename": "Sengschmitt_Berthold_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 175", "author": "", "orig_id": 1450704}}, {"model": "metainfo.source", "pk": 2643, "fields": {"orig_filename": "Senhofer_Karl_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176", "author": "", "orig_id": 1450705}}, {"model": "metainfo.source", "pk": 2644, "fields": {"orig_filename": "Senitzer_Paul-Maria_1761_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176", "author": "", "orig_id": 1450706}}, {"model": "metainfo.source", "pk": 2645, "fields": {"orig_filename": "Senkowski_Michal-Piotr_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177", "author": "", "orig_id": 1450709}}, {"model": "metainfo.source", "pk": 2646, "fields": {"orig_filename": "Senko_Michal_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176f.", "author": "", "orig_id": 1450707}}, {"model": "metainfo.source", "pk": 2647, "fields": {"orig_filename": "Senner_Joseph-Henry_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 178", "author": "", "orig_id": 1450717}}, {"model": "metainfo.source", "pk": 2648, "fields": {"orig_filename": "Sennholz_Gustav_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 178f.", "author": "", "orig_id": 1450719}}, {"model": "metainfo.source", "pk": 2649, "fields": {"orig_filename": "Sennovitz_Adolf_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 179", "author": "", "orig_id": 1450720}}, {"model": "metainfo.source", "pk": 2650, "fields": {"orig_filename": "Sennyey-Kis-Sennye_Paul_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 179f.", "author": "", "orig_id": 1450722}}, {"model": "metainfo.source", "pk": 2651, "fields": {"orig_filename": "Senn_Franz_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177", "author": "", "orig_id": 1450711}}, {"model": "metainfo.source", "pk": 2652, "fields": {"orig_filename": "Senn_Johann-Chrysostomos_1795_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177f.", "author": "", "orig_id": 1450715}}, {"model": "metainfo.source", "pk": 2653, "fields": {"orig_filename": "Senoa_August_1838_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 180", "author": "", "orig_id": 1450759}}, {"model": "metainfo.source", "pk": 2654, "fields": {"orig_filename": "Senoa_Branko_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 180f.", "author": "", "orig_id": 1450761}}, {"model": "metainfo.source", "pk": 2655, "fields": {"orig_filename": "Senoner_Adolf_1806_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 181", "author": "", "orig_id": 1450762}}, {"model": "metainfo.source", "pk": 2656, "fields": {"orig_filename": "Senyei_Karoly_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 181f.", "author": "", "orig_id": 1450764}}, {"model": "metainfo.source", "pk": 2657, "fields": {"orig_filename": "Sen_Edo_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171f.", "author": "", "orig_id": 1450695}}, {"model": "metainfo.source", "pk": 2658, "fields": {"orig_filename": "Seovaud-Bastide_Friedrich_1759_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182", "author": "", "orig_id": 1450765}}, {"model": "metainfo.source", "pk": 2659, "fields": {"orig_filename": "Sepp_Peter-Damian_1818_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182", "author": "", "orig_id": 1450766}}, {"model": "metainfo.source", "pk": 2660, "fields": {"orig_filename": "Sequens_Franz_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182f.", "author": "", "orig_id": 1450768}}, {"model": "metainfo.source", "pk": 2661, "fields": {"orig_filename": "Seracky_Frantisek_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 183", "author": "", "orig_id": 1450769}}, {"model": "metainfo.source", "pk": 2662, "fields": {"orig_filename": "Serafini_Filippo_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 183f.", "author": "", "orig_id": 1450771}}, {"model": "metainfo.source", "pk": 2663, "fields": {"orig_filename": "Seraphin_Friedrich-Wilhelm_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 184f.", "author": "", "orig_id": 1450772}}, {"model": "metainfo.source", "pk": 2664, "fields": {"orig_filename": "Serassi_Carlo_1777_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185", "author": "", "orig_id": 1450775}}, {"model": "metainfo.source", "pk": 2665, "fields": {"orig_filename": "Serassi_Giuseppe-Il-Giovane_1750_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185", "author": "", "orig_id": 1450773}}, {"model": "metainfo.source", "pk": 2666, "fields": {"orig_filename": "Seredynski_Hipolit-August_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185f.", "author": "", "orig_id": 1450777}}, {"model": "metainfo.source", "pk": 2667, "fields": {"orig_filename": "Seredynski_Wladyslaw_1841_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186", "author": "", "orig_id": 1450779}}, {"model": "metainfo.source", "pk": 2668, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Alois_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186f.", "author": "", "orig_id": 1450813}}, {"model": "metainfo.source", "pk": 2669, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Gabriel_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186f.", "author": "", "orig_id": 1450780}}, {"model": "metainfo.source", "pk": 2670, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Otto-Johann_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 187", "author": "", "orig_id": 1450815}}, {"model": "metainfo.source", "pk": 2671, "fields": {"orig_filename": "Serko_Alfred_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 187f.", "author": "", "orig_id": 1450817}}, {"model": "metainfo.source", "pk": 2672, "fields": {"orig_filename": "Serko_Alfred_1910_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188", "author": "", "orig_id": 1450818}}, {"model": "metainfo.source", "pk": 2673, "fields": {"orig_filename": "Serly_Lajos_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188", "author": "", "orig_id": 1450819}}, {"model": "metainfo.source", "pk": 2674, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Alexandrine_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 189f.", "author": "", "orig_id": 1450824}}, {"model": "metainfo.source", "pk": 2675, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Karl-Johann-Peter_1793_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188f.", "author": "", "orig_id": 1450821}}, {"model": "metainfo.source", "pk": 2676, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Richard_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 189f.", "author": "", "orig_id": 1450822}}, {"model": "metainfo.source", "pk": 2677, "fields": {"orig_filename": "Sernec_Janko_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 190", "author": "", "orig_id": 1450826}}, {"model": "metainfo.source", "pk": 2678, "fields": {"orig_filename": "Sernec_Josip_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 190", "author": "", "orig_id": 1450827}}, {"model": "metainfo.source", "pk": 2679, "fields": {"orig_filename": "Serner_Walter_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 191", "author": "", "orig_id": 1450829}}, {"model": "metainfo.source", "pk": 2680, "fields": {"orig_filename": "Serravallo_Vittorio_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 191f.", "author": "", "orig_id": 1450831}}, {"model": "metainfo.source", "pk": 2681, "fields": {"orig_filename": "Serres-Wieczffinski_August_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 192", "author": "", "orig_id": 1450832}}, {"model": "metainfo.source", "pk": 2682, "fields": {"orig_filename": "Sersawy_Viktor_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 192f.", "author": "", "orig_id": 1450875}}, {"model": "metainfo.source", "pk": 2683, "fields": {"orig_filename": "Servaes_Franz_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 193", "author": "", "orig_id": 1450876}}, {"model": "metainfo.source", "pk": 2684, "fields": {"orig_filename": "Serwaczynski_Stanislaw_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 193f.", "author": "", "orig_id": 1450877}}, {"model": "metainfo.source", "pk": 2685, "fields": {"orig_filename": "Serwatowski_Ladislaus_1873_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194", "author": "", "orig_id": 1450879}}, {"model": "metainfo.source", "pk": 2686, "fields": {"orig_filename": "Serwatowski_Theodor-Alfred_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194", "author": "", "orig_id": 1450878}}, {"model": "metainfo.source", "pk": 2687, "fields": {"orig_filename": "Serwatowski_Walerian_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194f.", "author": "", "orig_id": 1450880}}, {"model": "metainfo.source", "pk": 2688, "fields": {"orig_filename": "Sessler-Herzinger_Viktor-Felix_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195f.", "author": "", "orig_id": 1450883}}, {"model": "metainfo.source", "pk": 2689, "fields": {"orig_filename": "Sessler_Josef_1763_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195", "author": "", "orig_id": 1450881}}, {"model": "metainfo.source", "pk": 2690, "fields": {"orig_filename": "Sessler_Max_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195", "author": "", "orig_id": 1450882}}, {"model": "metainfo.source", "pk": 2691, "fields": {"orig_filename": "Sestan_Ada_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 196f.", "author": "", "orig_id": 1450885}}, {"model": "metainfo.source", "pk": 2692, "fields": {"orig_filename": "Setzer_Franz-Xaver_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198", "author": "", "orig_id": 1450888}}, {"model": "metainfo.source", "pk": 2693, "fields": {"orig_filename": "Setznagel_Alexander_1801_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198", "author": "", "orig_id": 1450889}}, {"model": "metainfo.source", "pk": 2694, "fields": {"orig_filename": "Setz_Friedrich_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197f.", "author": "", "orig_id": 1450887}}, {"model": "metainfo.source", "pk": 2695, "fields": {"orig_filename": "Seuffert_Eduard_1819_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 199f.", "author": "", "orig_id": 1450891}}, {"model": "metainfo.source", "pk": 2696, "fields": {"orig_filename": "Seuffert_Franz-Martin_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200", "author": "", "orig_id": 1450892}}, {"model": "metainfo.source", "pk": 2697, "fields": {"orig_filename": "Seutter-Loetzen_Carl-Friedrich_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200f.", "author": "", "orig_id": 1450893}}, {"model": "metainfo.source", "pk": 2698, "fields": {"orig_filename": "Seutter-Loetzen_Eduard_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201", "author": "", "orig_id": 1450895}}, {"model": "metainfo.source", "pk": 2699, "fields": {"orig_filename": "Seutter-Loetzen_Hermann_1863_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200f.", "author": "", "orig_id": 1450894}}, {"model": "metainfo.source", "pk": 2700, "fields": {"orig_filename": "Seutter-Loetzen_Johann-Konrad_1864_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201f.", "author": "", "orig_id": 1450897}}, {"model": "metainfo.source", "pk": 2701, "fields": {"orig_filename": "Seutter-Loetzen_Ruediger_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201f.", "author": "", "orig_id": 1450896}}, {"model": "metainfo.source", "pk": 2702, "fields": {"orig_filename": "Sevcik_Frantisek_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 202", "author": "", "orig_id": 1450898}}, {"model": "metainfo.source", "pk": 2703, "fields": {"orig_filename": "Sevcik_Franz-Friedrich_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 202f.", "author": "", "orig_id": 1450899}}, {"model": "metainfo.source", "pk": 2704, "fields": {"orig_filename": "Sevcik_Otakar_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 203", "author": "", "orig_id": 1450943}}, {"model": "metainfo.source", "pk": 2705, "fields": {"orig_filename": "Sever_Albert_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 203f.", "author": "", "orig_id": 1450944}}, {"model": "metainfo.source", "pk": 2706, "fields": {"orig_filename": "Seybel_Emil_1816_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 204f.", "author": "", "orig_id": 1450946}}, {"model": "metainfo.source", "pk": 2707, "fields": {"orig_filename": "Seybel_Otto_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450947}}, {"model": "metainfo.source", "pk": 2708, "fields": {"orig_filename": "Seybel_Paul_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450948}}, {"model": "metainfo.source", "pk": 2709, "fields": {"orig_filename": "Seyczek_Lorenz_1798_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450949}}, {"model": "metainfo.source", "pk": 2710, "fields": {"orig_filename": "Seydelmann_Armin_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205f.", "author": "", "orig_id": 1450950}}, {"model": "metainfo.source", "pk": 2711, "fields": {"orig_filename": "Seydelmann_Susanne_1884_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205f.", "author": "", "orig_id": 1450951}}, {"model": "metainfo.source", "pk": 2712, "fields": {"orig_filename": "Seydler_Anton_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 207f.", "author": "", "orig_id": 1450955}}, {"model": "metainfo.source", "pk": 2713, "fields": {"orig_filename": "Seydler_August-Johann-Friedrich_1849_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 206f.", "author": "", "orig_id": 1450953}}, {"model": "metainfo.source", "pk": 2714, "fields": {"orig_filename": "Seydler_Ludwig-Carl_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 207f.", "author": "", "orig_id": 1450954}}, {"model": "metainfo.source", "pk": 2715, "fields": {"orig_filename": "Seydl_Jenoe_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 206", "author": "", "orig_id": 1450952}}, {"model": "metainfo.source", "pk": 2716, "fields": {"orig_filename": "Seyfarth_Gustaw_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208", "author": "", "orig_id": 1450956}}, {"model": "metainfo.source", "pk": 2717, "fields": {"orig_filename": "Seyfert_Bernhard_1817_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208", "author": "", "orig_id": 1450957}}, {"model": "metainfo.source", "pk": 2718, "fields": {"orig_filename": "Seyffertitz_Carl-Maria-Josef-Leopold_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208f.", "author": "", "orig_id": 1450958}}, {"model": "metainfo.source", "pk": 2719, "fields": {"orig_filename": "Seyfried_Ferdinand_1811_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210", "author": "", "orig_id": 1450961}}, {"model": "metainfo.source", "pk": 2720, "fields": {"orig_filename": "Seyfried_Ignaz_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 209f.", "author": "", "orig_id": 1450959}}, {"model": "metainfo.source", "pk": 2721, "fields": {"orig_filename": "Seyfried_Josef_1780_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210", "author": "", "orig_id": 1450960}}, {"model": "metainfo.source", "pk": 2722, "fields": {"orig_filename": "Seykora_Hugo_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435769}}, {"model": "metainfo.source", "pk": 2723, "fields": {"orig_filename": "Segvic_Matej-Marin_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114", "author": "", "orig_id": 1439477}}, {"model": "metainfo.source", "pk": 2724, "fields": {"orig_filename": "Seibt-Ringenhart_Gottfried_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 115f.", "author": "", "orig_id": 1439480}}, {"model": "metainfo.source", "pk": 2725, "fields": {"orig_filename": "Seib_Wilhelm_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 115", "author": "", "orig_id": 1439479}}, {"model": "metainfo.source", "pk": 2726, "fields": {"orig_filename": "Seidan_Thomas_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116", "author": "", "orig_id": 1439481}}, {"model": "metainfo.source", "pk": 2727, "fields": {"orig_filename": "Seidan_Wenzel_1817_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116", "author": "", "orig_id": 1439482}}, {"model": "metainfo.source", "pk": 2728, "fields": {"orig_filename": "Seidel_Gustav_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116f.", "author": "", "orig_id": 1439483}}, {"model": "metainfo.source", "pk": 2729, "fields": {"orig_filename": "Seidel_Ludwig-Wilhelm_1802_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117", "author": "", "orig_id": 1439484}}, {"model": "metainfo.source", "pk": 2730, "fields": {"orig_filename": "Seidel_Ludwig_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117", "author": "", "orig_id": 1439485}}, {"model": "metainfo.source", "pk": 2731, "fields": {"orig_filename": "Seidel_Moriz_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117f.", "author": "", "orig_id": 1439486}}, {"model": "metainfo.source", "pk": 2732, "fields": {"orig_filename": "Seidensacher_Karl_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 118", "author": "", "orig_id": 1439487}}, {"model": "metainfo.source", "pk": 2733, "fields": {"orig_filename": "Seidl-Hohenveldern_Eduard_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129", "author": "", "orig_id": 1451511}}, {"model": "metainfo.source", "pk": 2734, "fields": {"orig_filename": "Seidl-Kraus_Auguste_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 119f.", "author": "", "orig_id": 1439542}}, {"model": "metainfo.source", "pk": 2735, "fields": {"orig_filename": "Seidler-Feuchtenegg_Ernst_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 131f.", "author": "", "orig_id": 1451515}}, {"model": "metainfo.source", "pk": 2736, "fields": {"orig_filename": "Seidler-Wranitzky_Karoline_1790_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 132", "author": "", "orig_id": 1451517}}, {"model": "metainfo.source", "pk": 2737, "fields": {"orig_filename": "Seidler_Adolf_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129f.", "author": "", "orig_id": 1451512}}, {"model": "metainfo.source", "pk": 2738, "fields": {"orig_filename": "Seidler_Friedrich-Johann_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 130", "author": "", "orig_id": 1451513}}, {"model": "metainfo.source", "pk": 2739, "fields": {"orig_filename": "Seidler_Gustav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 130f.", "author": "", "orig_id": 1451514}}, {"model": "metainfo.source", "pk": 2740, "fields": {"orig_filename": "Seidlitz_Julius_1814_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 132f.", "author": "", "orig_id": 1451518}}, {"model": "metainfo.source", "pk": 2741, "fields": {"orig_filename": "Seidl_Adolf-L_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 118f.", "author": "", "orig_id": 1439540}}, {"model": "metainfo.source", "pk": 2742, "fields": {"orig_filename": "Seidl_Anton_1850_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 119f.", "author": "", "orig_id": 1439541}}, {"model": "metainfo.source", "pk": 2743, "fields": {"orig_filename": "Seidl_Carl_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 120", "author": "", "orig_id": 1439544}}, {"model": "metainfo.source", "pk": 2744, "fields": {"orig_filename": "Seidl_Emanuel_1815_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121", "author": "", "orig_id": 1451440}}, {"model": "metainfo.source", "pk": 2745, "fields": {"orig_filename": "Seidl_Ferdinand_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121", "author": "", "orig_id": 1451441}}, {"model": "metainfo.source", "pk": 2746, "fields": {"orig_filename": "Seidl_Ferdo_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121f.", "author": "", "orig_id": 1451442}}, {"model": "metainfo.source", "pk": 2747, "fields": {"orig_filename": "Seidl_Franz_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 122", "author": "", "orig_id": 1451443}}, {"model": "metainfo.source", "pk": 2748, "fields": {"orig_filename": "Seidl_Ignaz_1788_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123", "author": "", "orig_id": 1451445}}, {"model": "metainfo.source", "pk": 2749, "fields": {"orig_filename": "Seidl_Ignaz_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 122f.", "author": "", "orig_id": 1451444}}, {"model": "metainfo.source", "pk": 2750, "fields": {"orig_filename": "Seidl_Ignaz_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123f.", "author": "", "orig_id": 1451446}}, {"model": "metainfo.source", "pk": 2751, "fields": {"orig_filename": "Seidl_Ignaz_1883_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123f.", "author": "", "orig_id": 1451447}}, {"model": "metainfo.source", "pk": 2752, "fields": {"orig_filename": "Seidl_Johann-Gabriel_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 124f.", "author": "", "orig_id": 1451448}}, {"model": "metainfo.source", "pk": 2753, "fields": {"orig_filename": "Seidl_Karl_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 125", "author": "", "orig_id": 1451502}}, {"model": "metainfo.source", "pk": 2754, "fields": {"orig_filename": "Seidl_Kurt_1902_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 125f.", "author": "", "orig_id": 1451503}}, {"model": "metainfo.source", "pk": 2755, "fields": {"orig_filename": "Seidl_Max_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126", "author": "", "orig_id": 1451504}}, {"model": "metainfo.source", "pk": 2756, "fields": {"orig_filename": "Seidl_Michael_1767_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126", "author": "", "orig_id": 1451505}}, {"model": "metainfo.source", "pk": 2757, "fields": {"orig_filename": "Seidl_Siegfried_1911_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126f.", "author": "", "orig_id": 1451506}}, {"model": "metainfo.source", "pk": 2758, "fields": {"orig_filename": "Seidl_Walter_1905_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 127f.", "author": "", "orig_id": 1451507}}, {"model": "metainfo.source", "pk": 2759, "fields": {"orig_filename": "Seidl_Wenzel-Benno_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 128f.", "author": "", "orig_id": 1451509}}, {"model": "metainfo.source", "pk": 2760, "fields": {"orig_filename": "Seidl_Wenzel_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 128", "author": "", "orig_id": 1451508}}, {"model": "metainfo.source", "pk": 2761, "fields": {"orig_filename": "Seidl_Werner_1914_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129", "author": "", "orig_id": 1451510}}, {"model": "metainfo.source", "pk": 2762, "fields": {"orig_filename": "Seidmann_Karl_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 133", "author": "", "orig_id": 1451520}}, {"model": "metainfo.source", "pk": 2763, "fields": {"orig_filename": "Seidner_Wilhelm_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134", "author": "", "orig_id": 1451521}}, {"model": "metainfo.source", "pk": 2764, "fields": {"orig_filename": "Seifert_Adolf_1826_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134f.", "author": "", "orig_id": 1451523}}, {"model": "metainfo.source", "pk": 2765, "fields": {"orig_filename": "Seifert_Adolf_1902_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 135", "author": "", "orig_id": 1451524}}, {"model": "metainfo.source", "pk": 2766, "fields": {"orig_filename": "Seifert_Alfred_1850_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 135f.", "author": "", "orig_id": 1451525}}, {"model": "metainfo.source", "pk": 2767, "fields": {"orig_filename": "Seifert_Anton_1826_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136", "author": "", "orig_id": 1451526}}, {"model": "metainfo.source", "pk": 2768, "fields": {"orig_filename": "Seifert_Jakub_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136f.", "author": "", "orig_id": 1451527}}, {"model": "metainfo.source", "pk": 2769, "fields": {"orig_filename": "Seifert_Johann_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 137", "author": "", "orig_id": 1451575}}, {"model": "metainfo.source", "pk": 2770, "fields": {"orig_filename": "Seifert_Josef_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 137f.", "author": "", "orig_id": 1451576}}, {"model": "metainfo.source", "pk": 2771, "fields": {"orig_filename": "Seifert_Joseph_1808_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 138", "author": "", "orig_id": 1451577}}, {"model": "metainfo.source", "pk": 2772, "fields": {"orig_filename": "Seifert_Wenzel_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 138f.", "author": "", "orig_id": 1451578}}, {"model": "metainfo.source", "pk": 2773, "fields": {"orig_filename": "Seifman_Piotr-Stefan_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 139", "author": "", "orig_id": 1451579}}, {"model": "metainfo.source", "pk": 2774, "fields": {"orig_filename": "Seif_Theodor_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134", "author": "", "orig_id": 1451522}}, {"model": "metainfo.source", "pk": 2775, "fields": {"orig_filename": "Seigerschmied_Jozef_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 139f.", "author": "", "orig_id": 1451580}}, {"model": "metainfo.source", "pk": 2776, "fields": {"orig_filename": "Seilern-Aspang_Karl-Maximilian_1825_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451581}}, {"model": "metainfo.source", "pk": 2777, "fields": {"orig_filename": "Seiller_Alois_1833_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451582}}, {"model": "metainfo.source", "pk": 2778, "fields": {"orig_filename": "Seiller_Ernst-Kaspar_1870_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451583}}, {"model": "metainfo.source", "pk": 2779, "fields": {"orig_filename": "Seiller_Johann-Kaspar_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140f.", "author": "", "orig_id": 1451584}}, {"model": "metainfo.source", "pk": 2780, "fields": {"orig_filename": "Seiner_Franz-Josef_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 141f.", "author": "", "orig_id": 1451585}}, {"model": "metainfo.source", "pk": 2781, "fields": {"orig_filename": "Seipelt_Josepha_1815_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144", "author": "", "orig_id": 1451588}}, {"model": "metainfo.source", "pk": 2782, "fields": {"orig_filename": "Seipelt_Joseph_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 143f.", "author": "", "orig_id": 1451587}}, {"model": "metainfo.source", "pk": 2783, "fields": {"orig_filename": "Seipel_Ignaz_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 142f.", "author": "", "orig_id": 1451586}}, {"model": "metainfo.source", "pk": 2784, "fields": {"orig_filename": "Seipka_Adolf_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144", "author": "", "orig_id": 1451589}}, {"model": "metainfo.source", "pk": 2785, "fields": {"orig_filename": "Seisl_Johann_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144f.", "author": "", "orig_id": 1451590}}, {"model": "metainfo.source", "pk": 2786, "fields": {"orig_filename": "Seismit-Doda_Federico_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145", "author": "", "orig_id": 1451591}}, {"model": "metainfo.source", "pk": 2787, "fields": {"orig_filename": "Seismit-Doda_Luigi_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145", "author": "", "orig_id": 1451592}}, {"model": "metainfo.source", "pk": 2788, "fields": {"orig_filename": "Seitner_Moritz_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145f.", "author": "", "orig_id": 1451593}}, {"model": "metainfo.source", "pk": 2789, "fields": {"orig_filename": "Seitz-Treffen_Heinrich_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147", "author": "", "orig_id": 1451595}}, {"model": "metainfo.source", "pk": 2790, "fields": {"orig_filename": "Seitz_Karl_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 146f.", "author": "", "orig_id": 1451594}}, {"model": "metainfo.source", "pk": 2791, "fields": {"orig_filename": "Seivert_Gustav_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147", "author": "", "orig_id": 1451596}}, {"model": "metainfo.source", "pk": 2792, "fields": {"orig_filename": "Sejnost_Josef_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147f.", "author": "", "orig_id": 1451597}}, {"model": "metainfo.source", "pk": 2793, "fields": {"orig_filename": "Seka_Reinhard_1898_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 148", "author": "", "orig_id": 1451637}}, {"model": "metainfo.source", "pk": 2794, "fields": {"orig_filename": "Sekera_Wenzel-Johann_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 148f.", "author": "", "orig_id": 1451638}}, {"model": "metainfo.source", "pk": 2795, "fields": {"orig_filename": "Sekker_Franz_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 149", "author": "", "orig_id": 1451639}}, {"model": "metainfo.source", "pk": 2796, "fields": {"orig_filename": "Sekyra_Josef_1812_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 149f.", "author": "", "orig_id": 1451640}}, {"model": "metainfo.source", "pk": 2797, "fields": {"orig_filename": "Selb_Josef-Anton_1784_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 150", "author": "", "orig_id": 1451641}}, {"model": "metainfo.source", "pk": 2798, "fields": {"orig_filename": "Selb_Karl_1760_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 150f.", "author": "", "orig_id": 1451642}}, {"model": "metainfo.source", "pk": 2799, "fields": {"orig_filename": "Selch_Emerich_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 151", "author": "", "orig_id": 1451643}}, {"model": "metainfo.source", "pk": 2800, "fields": {"orig_filename": "Seleskowitz_Louise_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 151f.", "author": "", "orig_id": 1451644}}, {"model": "metainfo.source", "pk": 2801, "fields": {"orig_filename": "Seliger_Josef_1870_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 152", "author": "", "orig_id": 1451645}}, {"model": "metainfo.source", "pk": 2802, "fields": {"orig_filename": "Seligmann_Adalbert-Franz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 152f.", "author": "", "orig_id": 1451646}}, {"model": "metainfo.source", "pk": 2803, "fields": {"orig_filename": "Seligmann_Berthold_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153", "author": "", "orig_id": 1451647}}, {"model": "metainfo.source", "pk": 2804, "fields": {"orig_filename": "Seligmann_Franz-Romeo_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 154f.", "author": "", "orig_id": 1451650}}, {"model": "metainfo.source", "pk": 2805, "fields": {"orig_filename": "Seligmann_Franz_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153f.", "author": "", "orig_id": 1451649}}, {"model": "metainfo.source", "pk": 2806, "fields": {"orig_filename": "Seligmann_Julius_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153", "author": "", "orig_id": 1451648}}, {"model": "metainfo.source", "pk": 2807, "fields": {"orig_filename": "Seligmann_Leopold_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 155", "author": "", "orig_id": 1451651}}, {"model": "metainfo.source", "pk": 2808, "fields": {"orig_filename": "Selim_Josma_1884_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 155f.", "author": "", "orig_id": 1451653}}, {"model": "metainfo.source", "pk": 2809, "fields": {"orig_filename": "Selinger_Engelbert-Maximilian_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 156f.", "author": "", "orig_id": 1451656}}, {"model": "metainfo.source", "pk": 2810, "fields": {"orig_filename": "Seling_Emil_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 156", "author": "", "orig_id": 1451655}}, {"model": "metainfo.source", "pk": 2811, "fields": {"orig_filename": "Seljan_Mirko_1871_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157", "author": "", "orig_id": 1451658}}, {"model": "metainfo.source", "pk": 2812, "fields": {"orig_filename": "Seljan_Stjepan_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157", "author": "", "orig_id": 1451659}}, {"model": "metainfo.source", "pk": 2813, "fields": {"orig_filename": "Sellemond_Peter_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 158", "author": "", "orig_id": 1451661}}, {"model": "metainfo.source", "pk": 2814, "fields": {"orig_filename": "Sellenati_Hans_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 158f.", "author": "", "orig_id": 1450633}}, {"model": "metainfo.source", "pk": 2815, "fields": {"orig_filename": "Sellenati_Mathilde_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 159", "author": "", "orig_id": 1450634}}, {"model": "metainfo.source", "pk": 2816, "fields": {"orig_filename": "Selleny_Joseph_1824_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 159f.", "author": "", "orig_id": 1450637}}, {"model": "metainfo.source", "pk": 2817, "fields": {"orig_filename": "Selle_Friedrich_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157f.", "author": "", "orig_id": 1451660}}, {"model": "metainfo.source", "pk": 2818, "fields": {"orig_filename": "Sellmann_Franz-Seraph_1747_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 160", "author": "", "orig_id": 1450638}}, {"model": "metainfo.source", "pk": 2819, "fields": {"orig_filename": "Sellner_Joseph_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 160f.", "author": "", "orig_id": 1450639}}, {"model": "metainfo.source", "pk": 2820, "fields": {"orig_filename": "Seltsam_Ferdinand_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 161", "author": "", "orig_id": 1450640}}, {"model": "metainfo.source", "pk": 2821, "fields": {"orig_filename": "Selvatico_Pietro-Estense_1803_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 162f.", "author": "", "orig_id": 1450642}}, {"model": "metainfo.source", "pk": 2822, "fields": {"orig_filename": "Selva_Giovanni-Antonio_1751_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 161f.", "author": "", "orig_id": 1450641}}, {"model": "metainfo.source", "pk": 2823, "fields": {"orig_filename": "Sembera_Alois-Vojtech_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 163f.", "author": "", "orig_id": 1450643}}, {"model": "metainfo.source", "pk": 2824, "fields": {"orig_filename": "Sembera_Joseph_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164", "author": "", "orig_id": 1450645}}, {"model": "metainfo.source", "pk": 2825, "fields": {"orig_filename": "Semberova_Zdenka_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 163", "author": "", "orig_id": 1450644}}, {"model": "metainfo.source", "pk": 2826, "fields": {"orig_filename": "Schwing_Karel_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 63f.", "author": "", "orig_id": 1440108}}, {"model": "metainfo.source", "pk": 2827, "fields": {"orig_filename": "Schwinner_Josef_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 64f.", "author": "", "orig_id": 1440111}}, {"model": "metainfo.source", "pk": 2828, "fields": {"orig_filename": "Schwippel_Karl_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 65", "author": "", "orig_id": 1440112}}, {"model": "metainfo.source", "pk": 2829, "fields": {"orig_filename": "Schwitzer_Basilius_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 65f.", "author": "", "orig_id": 1440113}}, {"model": "metainfo.source", "pk": 2830, "fields": {"orig_filename": "Schwitzer_Berthold_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66", "author": "", "orig_id": 1440115}}, {"model": "metainfo.source", "pk": 2831, "fields": {"orig_filename": "Schwoy_Franz-Xaver_1783_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66f.", "author": "", "orig_id": 1440117}}, {"model": "metainfo.source", "pk": 2832, "fields": {"orig_filename": "Scitovsky-Nagy-Ker_Johann-Baptist_1795_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 67", "author": "", "orig_id": 1440118}}, {"model": "metainfo.source", "pk": 2833, "fields": {"orig_filename": "Scolik_Charles_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 67f.", "author": "", "orig_id": 1440120}}, {"model": "metainfo.source", "pk": 2834, "fields": {"orig_filename": "Scomparini_Eugenio_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 68f.", "author": "", "orig_id": 1440122}}, {"model": "metainfo.source", "pk": 2835, "fields": {"orig_filename": "Scopinich-Kuestenhort_Johann-Anton_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69", "author": "", "orig_id": 1440123}}, {"model": "metainfo.source", "pk": 2836, "fields": {"orig_filename": "Scrinzi-Montecroce_Giovanni-Battista_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69", "author": "", "orig_id": 1440125}}, {"model": "metainfo.source", "pk": 2837, "fields": {"orig_filename": "Scudier_Anton_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69f.", "author": "", "orig_id": 1440127}}, {"model": "metainfo.source", "pk": 2838, "fields": {"orig_filename": "Scurat_Vasyl_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 70", "author": "", "orig_id": 1440128}}, {"model": "metainfo.source", "pk": 2839, "fields": {"orig_filename": "Scutta_Andreas_1806_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 70f.", "author": "", "orig_id": 1440167}}, {"model": "metainfo.source", "pk": 2840, "fields": {"orig_filename": "Scutta_Josefine_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 71f.", "author": "", "orig_id": 1440168}}, {"model": "metainfo.source", "pk": 2841, "fields": {"orig_filename": "Seback_Vinzenz_1805_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 72", "author": "", "orig_id": 1440169}}, {"model": "metainfo.source", "pk": 2842, "fields": {"orig_filename": "Seberini_Andreas_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75", "author": "", "orig_id": 1440183}}, {"model": "metainfo.source", "pk": 2843, "fields": {"orig_filename": "Seberini_Gustav-Adolf_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 72f.", "author": "", "orig_id": 1440175}}, {"model": "metainfo.source", "pk": 2844, "fields": {"orig_filename": "Seberini_Johann-Michael_1825_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 74", "author": "", "orig_id": 1440181}}, {"model": "metainfo.source", "pk": 2845, "fields": {"orig_filename": "Seberini_Johann_1780_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 73f.", "author": "", "orig_id": 1440179}}, {"model": "metainfo.source", "pk": 2846, "fields": {"orig_filename": "Seberini_Ludwig-Sigmund_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 73", "author": "", "orig_id": 1440176}}, {"model": "metainfo.source", "pk": 2847, "fields": {"orig_filename": "Seberini_Ludwig_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 74f.", "author": "", "orig_id": 1440182}}, {"model": "metainfo.source", "pk": 2848, "fields": {"orig_filename": "Sebesta_Milos_1883_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75", "author": "", "orig_id": 1440233}}, {"model": "metainfo.source", "pk": 2849, "fields": {"orig_filename": "Sebesta_Vojtech_1844_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75f.", "author": "", "orig_id": 1440235}}, {"model": "metainfo.source", "pk": 2850, "fields": {"orig_filename": "Sebestyen_Gyula_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76", "author": "", "orig_id": 1440236}}, {"model": "metainfo.source", "pk": 2851, "fields": {"orig_filename": "Sebor_Josef_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76", "author": "", "orig_id": 1440238}}, {"model": "metainfo.source", "pk": 2852, "fields": {"orig_filename": "Sebor_Karel-Richard_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76f.", "author": "", "orig_id": 1440239}}, {"model": "metainfo.source", "pk": 2853, "fields": {"orig_filename": "Sebottendorf-Rose_Franz-Ludwig_1741_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 77f.", "author": "", "orig_id": 1440242}}, {"model": "metainfo.source", "pk": 2854, "fields": {"orig_filename": "Sebottendorf-Rose_Karl-Philipp_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 77f.", "author": "", "orig_id": 1440241}}, {"model": "metainfo.source", "pk": 2855, "fields": {"orig_filename": "Sebottendorf-Rose_Moritz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78", "author": "", "orig_id": 1440246}}, {"model": "metainfo.source", "pk": 2856, "fields": {"orig_filename": "Secco-Suardo_Gerolamo_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78f.", "author": "", "orig_id": 1439252}}, {"model": "metainfo.source", "pk": 2857, "fields": {"orig_filename": "Secco_Andrea_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78", "author": "", "orig_id": 1439251}}, {"model": "metainfo.source", "pk": 2858, "fields": {"orig_filename": "Sechter_Eduard-Engelbert_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 80", "author": "", "orig_id": 1439255}}, {"model": "metainfo.source", "pk": 2859, "fields": {"orig_filename": "Sechter_Simon_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 79f.", "author": "", "orig_id": 1439254}}, {"model": "metainfo.source", "pk": 2860, "fields": {"orig_filename": "Seckendorff-Gudent_Arthur_1845_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 80f.", "author": "", "orig_id": 1439257}}, {"model": "metainfo.source", "pk": 2861, "fields": {"orig_filename": "Secky_Franz_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 81", "author": "", "orig_id": 1439258}}, {"model": "metainfo.source", "pk": 2862, "fields": {"orig_filename": "Sedej_Francisek-Borgia_1854_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 81f.", "author": "", "orig_id": 1439259}}, {"model": "metainfo.source", "pk": 2863, "fields": {"orig_filename": "Sedelmaier_Maria-Johanna_1811_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 82f.", "author": "", "orig_id": 1439260}}, {"model": "metainfo.source", "pk": 2864, "fields": {"orig_filename": "Sederl_Josef_1813_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 83", "author": "", "orig_id": 1439261}}, {"model": "metainfo.source", "pk": 2865, "fields": {"orig_filename": "Sedlacek_August_1843_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 83f.", "author": "", "orig_id": 1439262}}, {"model": "metainfo.source", "pk": 2866, "fields": {"orig_filename": "Sedlacek_Ernestus_1796_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86", "author": "", "orig_id": 1439268}}, {"model": "metainfo.source", "pk": 2867, "fields": {"orig_filename": "Sedlacek_Franz-August_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 84", "author": "", "orig_id": 1439264}}, {"model": "metainfo.source", "pk": 2868, "fields": {"orig_filename": "Sedlacek_Jaroslav_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 84f.", "author": "", "orig_id": 1439265}}, {"model": "metainfo.source", "pk": 2869, "fields": {"orig_filename": "Sedlacek_Josef-Vojtech_1785_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 85", "author": "", "orig_id": 1439266}}, {"model": "metainfo.source", "pk": 2870, "fields": {"orig_filename": "Sedlacek_Wilhelm-Ludwig_1793_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 85f.", "author": "", "orig_id": 1439267}}, {"model": "metainfo.source", "pk": 2871, "fields": {"orig_filename": "Sedlaczek-Harkenfeld_Johann-Nepomuk_1759_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 87f.", "author": "", "orig_id": 1439272}}, {"model": "metainfo.source", "pk": 2872, "fields": {"orig_filename": "Sedlaczek_Emil-Maria_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86", "author": "", "orig_id": 1439269}}, {"model": "metainfo.source", "pk": 2873, "fields": {"orig_filename": "Sedlaczek_Stephan_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86f.", "author": "", "orig_id": 1439270}}, {"model": "metainfo.source", "pk": 2874, "fields": {"orig_filename": "Sedlaczek_Walter_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 87", "author": "", "orig_id": 1439271}}, {"model": "metainfo.source", "pk": 2875, "fields": {"orig_filename": "Sedlak_Hanns_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 88", "author": "", "orig_id": 1439273}}, {"model": "metainfo.source", "pk": 2876, "fields": {"orig_filename": "Sedlak_Jan_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 88f.", "author": "", "orig_id": 1439274}}, {"model": "metainfo.source", "pk": 2877, "fields": {"orig_filename": "Sedlak_Johann-Nepomuk_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 89f.", "author": "", "orig_id": 1439318}}, {"model": "metainfo.source", "pk": 2878, "fields": {"orig_filename": "Sedlak_Johann_1820_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 89", "author": "", "orig_id": 1439317}}, {"model": "metainfo.source", "pk": 2879, "fields": {"orig_filename": "Sedlak_Karl_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90", "author": "", "orig_id": 1439319}}, {"model": "metainfo.source", "pk": 2880, "fields": {"orig_filename": "Sedlak_Rudolf_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90", "author": "", "orig_id": 1439320}}, {"model": "metainfo.source", "pk": 2881, "fields": {"orig_filename": "Sedlak_Wenzel_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90f.", "author": "", "orig_id": 1439321}}, {"model": "metainfo.source", "pk": 2882, "fields": {"orig_filename": "Sedlitzky_Wenzel-Adalbert_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 91f.", "author": "", "orig_id": 1439323}}, {"model": "metainfo.source", "pk": 2883, "fields": {"orig_filename": "Sedlmayer_Heinrich-Stephan_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92", "author": "", "orig_id": 1439324}}, {"model": "metainfo.source", "pk": 2884, "fields": {"orig_filename": "Sedlmayer_Wilhelm_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92", "author": "", "orig_id": 1439325}}, {"model": "metainfo.source", "pk": 2885, "fields": {"orig_filename": "Sedlmayr_Ernst-Conrad_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92f.", "author": "", "orig_id": 1439326}}, {"model": "metainfo.source", "pk": 2886, "fields": {"orig_filename": "Sedlnitzky-Choltitz_Josef_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 93f.", "author": "", "orig_id": 1439327}}, {"model": "metainfo.source", "pk": 2887, "fields": {"orig_filename": "Sedlnitzky-Odrowas-Choltic_Stanislaus_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 94", "author": "", "orig_id": 1439328}}, {"model": "metainfo.source", "pk": 2888, "fields": {"orig_filename": "Sedlnitzky-Odrowaz-Choltitz_Leopold_1787_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 94f.", "author": "", "orig_id": 1439329}}, {"model": "metainfo.source", "pk": 2889, "fields": {"orig_filename": "Seeauer_Wilhelm-Desiderius_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 95", "author": "", "orig_id": 1439330}}, {"model": "metainfo.source", "pk": 2890, "fields": {"orig_filename": "Seebacher_Johann_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 95f.", "author": "", "orig_id": 1439332}}, {"model": "metainfo.source", "pk": 2891, "fields": {"orig_filename": "Seeber_Joseph_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 96", "author": "", "orig_id": 1439333}}, {"model": "metainfo.source", "pk": 2892, "fields": {"orig_filename": "Seeboeck_Philibert_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 96f.", "author": "", "orig_id": 1439334}}, {"model": "metainfo.source", "pk": 2893, "fields": {"orig_filename": "Seefelder_Richard_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 98", "author": "", "orig_id": 1439336}}, {"model": "metainfo.source", "pk": 2894, "fields": {"orig_filename": "Seefeldner_Oskar_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 98f.", "author": "", "orig_id": 1439337}}, {"model": "metainfo.source", "pk": 2895, "fields": {"orig_filename": "Seegen_Joseph_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 99", "author": "", "orig_id": 1439338}}, {"model": "metainfo.source", "pk": 2896, "fields": {"orig_filename": "Seeger_Ludwig-Eduard_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 100", "author": "", "orig_id": 1439340}}, {"model": "metainfo.source", "pk": 2897, "fields": {"orig_filename": "Seeger_Ludwig_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 99f.", "author": "", "orig_id": 1439339}}, {"model": "metainfo.source", "pk": 2898, "fields": {"orig_filename": "Seeger_Rudolf_1888_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 100f.", "author": "", "orig_id": 1439341}}, {"model": "metainfo.source", "pk": 2899, "fields": {"orig_filename": "Seeger_Theodor_1858_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101", "author": "", "orig_id": 1439391}}, {"model": "metainfo.source", "pk": 2900, "fields": {"orig_filename": "Seehofer_Therese_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101", "author": "", "orig_id": 1439393}}, {"model": "metainfo.source", "pk": 2901, "fields": {"orig_filename": "Seeland_Ferdinand-Maximilian_1821_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101f.", "author": "", "orig_id": 1439394}}, {"model": "metainfo.source", "pk": 2902, "fields": {"orig_filename": "Seeliger_Karl_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 102", "author": "", "orig_id": 1439396}}, {"model": "metainfo.source", "pk": 2903, "fields": {"orig_filename": "Seelos_Franz_1873_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 102f.", "author": "", "orig_id": 1439397}}, {"model": "metainfo.source", "pk": 2904, "fields": {"orig_filename": "Seelos_Franz_1905_1962.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103", "author": "", "orig_id": 1439400}}, {"model": "metainfo.source", "pk": 2905, "fields": {"orig_filename": "Seelos_Gottfried_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103", "author": "", "orig_id": 1439401}}, {"model": "metainfo.source", "pk": 2906, "fields": {"orig_filename": "Seelos_Gustav_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103f.", "author": "", "orig_id": 1439402}}, {"model": "metainfo.source", "pk": 2907, "fields": {"orig_filename": "Seelos_Ignaz_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 104", "author": "", "orig_id": 1439403}}, {"model": "metainfo.source", "pk": 2908, "fields": {"orig_filename": "Seemann-Treuenwart_Albin_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106", "author": "", "orig_id": 1439407}}, {"model": "metainfo.source", "pk": 2909, "fields": {"orig_filename": "Seemann-Treuenwart_Johanna_1849_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106f.", "author": "", "orig_id": 1439409}}, {"model": "metainfo.source", "pk": 2910, "fields": {"orig_filename": "Seemann-Treuenwart_Karl-Ottokar_1837_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106", "author": "", "orig_id": 1439408}}, {"model": "metainfo.source", "pk": 2911, "fields": {"orig_filename": "Seemann_Friedrich_1884_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 104f.", "author": "", "orig_id": 1439404}}, {"model": "metainfo.source", "pk": 2912, "fields": {"orig_filename": "Seemann_Herbert_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 105", "author": "", "orig_id": 1439405}}, {"model": "metainfo.source", "pk": 2913, "fields": {"orig_filename": "Seemann_Margarete_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 105f.", "author": "", "orig_id": 1439406}}, {"model": "metainfo.source", "pk": 2914, "fields": {"orig_filename": "Seemueller_Joseph_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 107", "author": "", "orig_id": 1439411}}, {"model": "metainfo.source", "pk": 2915, "fields": {"orig_filename": "Seethaler_Johann-Andreas_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 107f.", "author": "", "orig_id": 1439412}}, {"model": "metainfo.source", "pk": 2916, "fields": {"orig_filename": "Segantini_Giovanni_1858_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 108f.", "author": "", "orig_id": 1439413}}, {"model": "metainfo.source", "pk": 2917, "fields": {"orig_filename": "Segato_Girolamo_1792_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 109f.", "author": "", "orig_id": 1439414}}, {"model": "metainfo.source", "pk": 2918, "fields": {"orig_filename": "Segel_Benjamin_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 110f.", "author": "", "orig_id": 1439468}}, {"model": "metainfo.source", "pk": 2919, "fields": {"orig_filename": "Segel_Isaak_1879_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 110", "author": "", "orig_id": 1439469}}, {"model": "metainfo.source", "pk": 2920, "fields": {"orig_filename": "Segenschmid_Franz-Xaver_1839_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 111f.", "author": "", "orig_id": 1439471}}, {"model": "metainfo.source", "pk": 2921, "fields": {"orig_filename": "Segen_David_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 111", "author": "", "orig_id": 1439470}}, {"model": "metainfo.source", "pk": 2922, "fields": {"orig_filename": "Segur-Cabanac_August-Franz-Marzellus_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112", "author": "", "orig_id": 1439474}}, {"model": "metainfo.source", "pk": 2923, "fields": {"orig_filename": "Segur-Cabanac_August_1881_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112", "author": "", "orig_id": 1439473}}, {"model": "metainfo.source", "pk": 2924, "fields": {"orig_filename": "Segur-Cabanac_Viktor-Julius-Ignaz-August_1869_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112f.", "author": "", "orig_id": 1439475}}, {"model": "metainfo.source", "pk": 2925, "fields": {"orig_filename": "Segusini_Giuseppe_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 113f.", "author": "", "orig_id": 1439476}}, {"model": "metainfo.source", "pk": 2926, "fields": {"orig_filename": "Schwarz_Franz_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 433f.", "author": "", "orig_id": 1420373}}, {"model": "metainfo.source", "pk": 2927, "fields": {"orig_filename": "Schwarz_Friederike_1910_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 434f.", "author": "", "orig_id": 1420376}}, {"model": "metainfo.source", "pk": 2928, "fields": {"orig_filename": "Schwarz_Gavro_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435", "author": "", "orig_id": 1420377}}, {"model": "metainfo.source", "pk": 2929, "fields": {"orig_filename": "Schwarz_Gottfried_1877_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435", "author": "", "orig_id": 1420378}}, {"model": "metainfo.source", "pk": 2930, "fields": {"orig_filename": "Schwarz_Gyula_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435f.", "author": "", "orig_id": 1420379}}, {"model": "metainfo.source", "pk": 2931, "fields": {"orig_filename": "Schwarz_Heinrich_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 436f.", "author": "", "orig_id": 1420380}}, {"model": "metainfo.source", "pk": 2932, "fields": {"orig_filename": "Schwarz_Heinrich_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 437f.", "author": "", "orig_id": 1420381}}, {"model": "metainfo.source", "pk": 2933, "fields": {"orig_filename": "Schwarz_Ignaz_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 438", "author": "", "orig_id": 1420437}}, {"model": "metainfo.source", "pk": 2934, "fields": {"orig_filename": "Schwarz_Jakub_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 438f.", "author": "", "orig_id": 1420438}}, {"model": "metainfo.source", "pk": 2935, "fields": {"orig_filename": "Schwarz_Johann-Michael_1774_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439f.", "author": "", "orig_id": 1420440}}, {"model": "metainfo.source", "pk": 2936, "fields": {"orig_filename": "Schwarz_Josef_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 440", "author": "", "orig_id": 1420441}}, {"model": "metainfo.source", "pk": 2937, "fields": {"orig_filename": "Schwarz_Josef_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 440f.", "author": "", "orig_id": 1420442}}, {"model": "metainfo.source", "pk": 2938, "fields": {"orig_filename": "Schwarz_Julie_1798_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 444f.", "author": "", "orig_id": 1420449}}, {"model": "metainfo.source", "pk": 2939, "fields": {"orig_filename": "Schwarz_Julius-Anton_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 441", "author": "", "orig_id": 1420443}}, {"model": "metainfo.source", "pk": 2940, "fields": {"orig_filename": "Schwarz_Karel-Martin_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 441f.", "author": "", "orig_id": 1420444}}, {"model": "metainfo.source", "pk": 2941, "fields": {"orig_filename": "Schwarz_Karl-Wilhelm-Emanuel_1768_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 444f.", "author": "", "orig_id": 1420448}}, {"model": "metainfo.source", "pk": 2942, "fields": {"orig_filename": "Schwarz_Karl_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 442f.", "author": "", "orig_id": 1420445}}, {"model": "metainfo.source", "pk": 2943, "fields": {"orig_filename": "Schwarz_Karl_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 443", "author": "", "orig_id": 1420446}}, {"model": "metainfo.source", "pk": 2944, "fields": {"orig_filename": "Schwarz_Karl_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 443f.", "author": "", "orig_id": 1420447}}, {"model": "metainfo.source", "pk": 2945, "fields": {"orig_filename": "Schwarz_Kaspar_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445f.", "author": "", "orig_id": 1420451}}, {"model": "metainfo.source", "pk": 2946, "fields": {"orig_filename": "Schwarz_Lambert_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 446", "author": "", "orig_id": 1420452}}, {"model": "metainfo.source", "pk": 2947, "fields": {"orig_filename": "Schwarz_Leopold_1812_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 446f.", "author": "", "orig_id": 1420453}}, {"model": "metainfo.source", "pk": 2948, "fields": {"orig_filename": "Schwarz_Leopold_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 447", "author": "", "orig_id": 1420454}}, {"model": "metainfo.source", "pk": 2949, "fields": {"orig_filename": "Schwarz_Ljudevit_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6f.", "author": "", "orig_id": 1439460}}, {"model": "metainfo.source", "pk": 2950, "fields": {"orig_filename": "Schwarz_Ludwig-Franz_1833_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 447f.", "author": "", "orig_id": 1420455}}, {"model": "metainfo.source", "pk": 2951, "fields": {"orig_filename": "Schwarz_Marie_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 1", "author": "", "orig_id": 1439382}}, {"model": "metainfo.source", "pk": 2952, "fields": {"orig_filename": "Schwarz_Oswald_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 1f.", "author": "", "orig_id": 1439383}}, {"model": "metainfo.source", "pk": 2953, "fields": {"orig_filename": "Schwarz_Otto_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 2", "author": "", "orig_id": 1439384}}, {"model": "metainfo.source", "pk": 2954, "fields": {"orig_filename": "Schwarz_Paul_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 2f.", "author": "", "orig_id": 1439387}}, {"model": "metainfo.source", "pk": 2955, "fields": {"orig_filename": "Schwarz_Philipp_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3", "author": "", "orig_id": 1439389}}, {"model": "metainfo.source", "pk": 2956, "fields": {"orig_filename": "Schwarz_Rudolf_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3", "author": "", "orig_id": 1439390}}, {"model": "metainfo.source", "pk": 2957, "fields": {"orig_filename": "Schwarz_Rudolf_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3f.", "author": "", "orig_id": 1439445}}, {"model": "metainfo.source", "pk": 2958, "fields": {"orig_filename": "Schwarz_Sebastian_1809_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4", "author": "", "orig_id": 1439446}}, {"model": "metainfo.source", "pk": 2959, "fields": {"orig_filename": "Schwarz_Sigismund_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4f.", "author": "", "orig_id": 1439449}}, {"model": "metainfo.source", "pk": 2960, "fields": {"orig_filename": "Schwarz_Stefan_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 5f.", "author": "", "orig_id": 1439454}}, {"model": "metainfo.source", "pk": 2961, "fields": {"orig_filename": "Schwarz_Thiemo_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6", "author": "", "orig_id": 1439455}}, {"model": "metainfo.source", "pk": 2962, "fields": {"orig_filename": "Schwarz_Vilim_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6f.", "author": "", "orig_id": 1439456}}, {"model": "metainfo.source", "pk": 2963, "fields": {"orig_filename": "Schwarz_Vinzenz_1902_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 7", "author": "", "orig_id": 1439458}}, {"model": "metainfo.source", "pk": 2964, "fields": {"orig_filename": "Schwarz_Wenzel_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 7f.", "author": "", "orig_id": 1439459}}, {"model": "metainfo.source", "pk": 2965, "fields": {"orig_filename": "Schwarz_Wenzel_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 8", "author": "", "orig_id": 1439463}}, {"model": "metainfo.source", "pk": 2966, "fields": {"orig_filename": "Schwathe_Hans_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 35f.", "author": "", "orig_id": 1439666}}, {"model": "metainfo.source", "pk": 2967, "fields": {"orig_filename": "Schwayer_Adolf_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 36", "author": "", "orig_id": 1439667}}, {"model": "metainfo.source", "pk": 2968, "fields": {"orig_filename": "Schwechler_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 36f.", "author": "", "orig_id": 1439668}}, {"model": "metainfo.source", "pk": 2969, "fields": {"orig_filename": "Schwediauer_Franz-Xaver_1748_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 37", "author": "", "orig_id": 1439669}}, {"model": "metainfo.source", "pk": 2970, "fields": {"orig_filename": "Schwegel_Joseph_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 37f.", "author": "", "orig_id": 1439670}}, {"model": "metainfo.source", "pk": 2971, "fields": {"orig_filename": "Schweickhardt_Franz-Xaver-Joseph_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 38f.", "author": "", "orig_id": 1439711}}, {"model": "metainfo.source", "pk": 2972, "fields": {"orig_filename": "Schweidel_Jozsef_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 39", "author": "", "orig_id": 1439712}}, {"model": "metainfo.source", "pk": 2973, "fields": {"orig_filename": "Schweidler_Egon_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 39f.", "author": "", "orig_id": 1439713}}, {"model": "metainfo.source", "pk": 2974, "fields": {"orig_filename": "Schweiger_Alois_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 40", "author": "", "orig_id": 1439714}}, {"model": "metainfo.source", "pk": 2975, "fields": {"orig_filename": "Schweiggl_Josef_1761_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 41", "author": "", "orig_id": 1439717}}, {"model": "metainfo.source", "pk": 2976, "fields": {"orig_filename": "Schweighofer_Carl_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439723}}, {"model": "metainfo.source", "pk": 2977, "fields": {"orig_filename": "Schweighofer_Felix_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 41f.", "author": "", "orig_id": 1439718}}, {"model": "metainfo.source", "pk": 2978, "fields": {"orig_filename": "Schweighofer_Franz-Johann_1797_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 42f.", "author": "", "orig_id": 1439720}}, {"model": "metainfo.source", "pk": 2979, "fields": {"orig_filename": "Schweighofer_Gustav_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 42", "author": "", "orig_id": 1439719}}, {"model": "metainfo.source", "pk": 2980, "fields": {"orig_filename": "Schweighofer_Johann-Michael_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439721}}, {"model": "metainfo.source", "pk": 2981, "fields": {"orig_filename": "Schweighofer_Johann-Michael_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439722}}, {"model": "metainfo.source", "pk": 2982, "fields": {"orig_filename": "Schweighofer_Johann_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439724}}, {"model": "metainfo.source", "pk": 2983, "fields": {"orig_filename": "Schweighofer_Josef_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43f.", "author": "", "orig_id": 1439725}}, {"model": "metainfo.source", "pk": 2984, "fields": {"orig_filename": "Schweikart_Karl-Gottlieb_1772_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44", "author": "", "orig_id": 1439726}}, {"model": "metainfo.source", "pk": 2985, "fields": {"orig_filename": "Schweitzer_Eduard_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44", "author": "", "orig_id": 1439727}}, {"model": "metainfo.source", "pk": 2986, "fields": {"orig_filename": "Schweitzer_Josef_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45", "author": "", "orig_id": 1439731}}, {"model": "metainfo.source", "pk": 2987, "fields": {"orig_filename": "Schweizer_Albert_1884_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45f.", "author": "", "orig_id": 1439735}}, {"model": "metainfo.source", "pk": 2988, "fields": {"orig_filename": "Schweizer_Carl_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45f.", "author": "", "orig_id": 1439733}}, {"model": "metainfo.source", "pk": 2989, "fields": {"orig_filename": "Schwemminger_Heinrich_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46", "author": "", "orig_id": 1439785}}, {"model": "metainfo.source", "pk": 2990, "fields": {"orig_filename": "Schwemminger_Joseph_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46", "author": "", "orig_id": 1439787}}, {"model": "metainfo.source", "pk": 2991, "fields": {"orig_filename": "Schwendenwein-Lanauberg_August_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46f.", "author": "", "orig_id": 1439789}}, {"model": "metainfo.source", "pk": 2992, "fields": {"orig_filename": "Schwender_Carl_1839_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439793}}, {"model": "metainfo.source", "pk": 2993, "fields": {"orig_filename": "Schwender_Karl-Ludwig_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 47f.", "author": "", "orig_id": 1439790}}, {"model": "metainfo.source", "pk": 2994, "fields": {"orig_filename": "Schweninger_Carl_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439798}}, {"model": "metainfo.source", "pk": 2995, "fields": {"orig_filename": "Schweninger_Carl_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439796}}, {"model": "metainfo.source", "pk": 2996, "fields": {"orig_filename": "Schweninger_Rosa_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439797}}, {"model": "metainfo.source", "pk": 2997, "fields": {"orig_filename": "Schwenninger_Florian_1809_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48f.", "author": "", "orig_id": 1439800}}, {"model": "metainfo.source", "pk": 2998, "fields": {"orig_filename": "Schwerdfeger_Engelbert_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 50", "author": "", "orig_id": 1439805}}, {"model": "metainfo.source", "pk": 2999, "fields": {"orig_filename": "Schwerdfeger_Josef-Adolf_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 50f.", "author": "", "orig_id": 1439807}}, {"model": "metainfo.source", "pk": 3000, "fields": {"orig_filename": "Schwerdling_Johann-Nepomuk_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 51", "author": "", "orig_id": 1439808}}, {"model": "metainfo.source", "pk": 3001, "fields": {"orig_filename": "Schwerdtner_Carl-Maria_1874_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 51f.", "author": "", "orig_id": 1439809}}, {"model": "metainfo.source", "pk": 3002, "fields": {"orig_filename": "Schwerdtner_Hugo_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 52", "author": "", "orig_id": 1439810}}, {"model": "metainfo.source", "pk": 3003, "fields": {"orig_filename": "Schwerdtner_Johann_1834_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 52f.", "author": "", "orig_id": 1439857}}, {"model": "metainfo.source", "pk": 3004, "fields": {"orig_filename": "Schwert_Leopold_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53", "author": "", "orig_id": 1439859}}, {"model": "metainfo.source", "pk": 3005, "fields": {"orig_filename": "Schwerzek_Carl_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53", "author": "", "orig_id": 1439861}}, {"model": "metainfo.source", "pk": 3006, "fields": {"orig_filename": "Schwerzenbach_Carl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53f.", "author": "", "orig_id": 1439862}}, {"model": "metainfo.source", "pk": 3007, "fields": {"orig_filename": "Schwer_Hans-Arnold_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 49", "author": "", "orig_id": 1439802}}, {"model": "metainfo.source", "pk": 3008, "fields": {"orig_filename": "Schwer_Josef-Alexander_1846_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 49f.", "author": "", "orig_id": 1439803}}, {"model": "metainfo.source", "pk": 3009, "fields": {"orig_filename": "Schwetz_Johann-Baptist_1803_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 54f.", "author": "", "orig_id": 1439865}}, {"model": "metainfo.source", "pk": 3010, "fields": {"orig_filename": "Schwickert_Friedrich_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 56", "author": "", "orig_id": 1439870}}, {"model": "metainfo.source", "pk": 3011, "fields": {"orig_filename": "Schwicker_Johann-Heinrich_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 55f.", "author": "", "orig_id": 1439867}}, {"model": "metainfo.source", "pk": 3012, "fields": {"orig_filename": "Schwiedland_Eugen-Peter_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 56f.", "author": "", "orig_id": 1439871}}, {"model": "metainfo.source", "pk": 3013, "fields": {"orig_filename": "Schwienbacher_Johann_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 57", "author": "", "orig_id": 1439872}}, {"model": "metainfo.source", "pk": 3014, "fields": {"orig_filename": "Schwimmer_Ernoe-Lajos_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 57f.", "author": "", "orig_id": 1439873}}, {"model": "metainfo.source", "pk": 3015, "fields": {"orig_filename": "Schwindel_Bernhard_1787_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 63", "author": "", "orig_id": 1439928}}, {"model": "metainfo.source", "pk": 3016, "fields": {"orig_filename": "Schwind_August_1800_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 58", "author": "", "orig_id": 1439874}}, {"model": "metainfo.source", "pk": 3017, "fields": {"orig_filename": "Schwind_Ernst_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 58f.", "author": "", "orig_id": 1439875}}, {"model": "metainfo.source", "pk": 3018, "fields": {"orig_filename": "Schwind_Franz-Karl-Augustin_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 59f.", "author": "", "orig_id": 1439877}}, {"model": "metainfo.source", "pk": 3019, "fields": {"orig_filename": "Schwind_Gertrud_1878_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62", "author": "", "orig_id": 1439927}}, {"model": "metainfo.source", "pk": 3020, "fields": {"orig_filename": "Schwind_Johann-Franz_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 60", "author": "", "orig_id": 1439878}}, {"model": "metainfo.source", "pk": 3021, "fields": {"orig_filename": "Schwind_Moritz_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 60ff.", "author": "", "orig_id": 1439880}}, {"model": "metainfo.source", "pk": 3022, "fields": {"orig_filename": "Schwind_Wilhelm-August-Moritz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62", "author": "", "orig_id": 1439923}}, {"model": "metainfo.source", "pk": 3023, "fields": {"orig_filename": "Schwind_Wolfgang_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62f.", "author": "", "orig_id": 1439925}}, {"model": "metainfo.source", "pk": 3024, "fields": {"orig_filename": "Schwingshackl_Johann_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 64", "author": "", "orig_id": 1440109}}, {"model": "metainfo.source", "pk": 3025, "fields": {"orig_filename": "Schwab_Adolf_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 402", "author": "", "orig_id": 1420143}}, {"model": "metainfo.source", "pk": 3026, "fields": {"orig_filename": "Schwab_Adolph_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 402f.", "author": "", "orig_id": 1420196}}, {"model": "metainfo.source", "pk": 3027, "fields": {"orig_filename": "Schwab_Anton_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 403", "author": "", "orig_id": 1420197}}, {"model": "metainfo.source", "pk": 3028, "fields": {"orig_filename": "Schwab_Arnost_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420204}}, {"model": "metainfo.source", "pk": 3029, "fields": {"orig_filename": "Schwab_Erasmus_1831_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 403f.", "author": "", "orig_id": 1420198}}, {"model": "metainfo.source", "pk": 3030, "fields": {"orig_filename": "Schwab_Franz_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 404", "author": "", "orig_id": 1420199}}, {"model": "metainfo.source", "pk": 3031, "fields": {"orig_filename": "Schwab_Johann_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 404f.", "author": "", "orig_id": 1420200}}, {"model": "metainfo.source", "pk": 3032, "fields": {"orig_filename": "Schwab_Josef_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 405f.", "author": "", "orig_id": 1420201}}, {"model": "metainfo.source", "pk": 3033, "fields": {"orig_filename": "Schwab_Loew_1794_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420202}}, {"model": "metainfo.source", "pk": 3034, "fields": {"orig_filename": "Schwab_Vaclav_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420203}}, {"model": "metainfo.source", "pk": 3035, "fields": {"orig_filename": "Schwach_Caroline_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410", "author": "", "orig_id": 1420213}}, {"model": "metainfo.source", "pk": 3036, "fields": {"orig_filename": "Schwach_Heinrich-August_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410", "author": "", "orig_id": 1420214}}, {"model": "metainfo.source", "pk": 3037, "fields": {"orig_filename": "Schwackhoefer_Franz_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410f.", "author": "", "orig_id": 1420215}}, {"model": "metainfo.source", "pk": 3038, "fields": {"orig_filename": "Schwaerzler_Franz-Xav_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 411f.", "author": "", "orig_id": 1420216}}, {"model": "metainfo.source", "pk": 3039, "fields": {"orig_filename": "Schwager_Benedikt_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 412", "author": "", "orig_id": 1420217}}, {"model": "metainfo.source", "pk": 3040, "fields": {"orig_filename": "Schwager_Ernst-Otto_1882_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 412f.", "author": "", "orig_id": 1420218}}, {"model": "metainfo.source", "pk": 3041, "fields": {"orig_filename": "Schwager_Richard_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 413", "author": "", "orig_id": 1420219}}, {"model": "metainfo.source", "pk": 3042, "fields": {"orig_filename": "Schwagula_Ignaz_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 413f.", "author": "", "orig_id": 1420279}}, {"model": "metainfo.source", "pk": 3043, "fields": {"orig_filename": "Schwaiger_Franz_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 414", "author": "", "orig_id": 1420280}}, {"model": "metainfo.source", "pk": 3044, "fields": {"orig_filename": "Schwaiger_Hanus_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 414f.", "author": "", "orig_id": 1420281}}, {"model": "metainfo.source", "pk": 3045, "fields": {"orig_filename": "Schwaiger_Michael-Joseph_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 415", "author": "", "orig_id": 1420282}}, {"model": "metainfo.source", "pk": 3046, "fields": {"orig_filename": "Schwaighofer_Franz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 415f.", "author": "", "orig_id": 1420283}}, {"model": "metainfo.source", "pk": 3047, "fields": {"orig_filename": "Schwaighofer_Johann-Bapt_1818_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416", "author": "", "orig_id": 1420285}}, {"model": "metainfo.source", "pk": 3048, "fields": {"orig_filename": "Schwaighofer_Roman_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416", "author": "", "orig_id": 1420284}}, {"model": "metainfo.source", "pk": 3049, "fields": {"orig_filename": "Schwalm_Georg_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416f.", "author": "", "orig_id": 1420286}}, {"model": "metainfo.source", "pk": 3050, "fields": {"orig_filename": "Schwanda_Mathias_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 417", "author": "", "orig_id": 1420287}}, {"model": "metainfo.source", "pk": 3051, "fields": {"orig_filename": "Schwanenberg_Josef-Franz-Ignaz_1762_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 417f.", "author": "", "orig_id": 1420288}}, {"model": "metainfo.source", "pk": 3052, "fields": {"orig_filename": "Schwanenfeld_Sebastian_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 418", "author": "", "orig_id": 1420289}}, {"model": "metainfo.source", "pk": 3053, "fields": {"orig_filename": "Schwara_Johann_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 418f.", "author": "", "orig_id": 1420290}}, {"model": "metainfo.source", "pk": 3054, "fields": {"orig_filename": "Schwartner_Martin_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 419f.", "author": "", "orig_id": 1420291}}, {"model": "metainfo.source", "pk": 3055, "fields": {"orig_filename": "Schwarz-Hiller-Jiskor_Rudolf_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 8f.", "author": "", "orig_id": 1439465}}, {"model": "metainfo.source", "pk": 3056, "fields": {"orig_filename": "Schwarz-Karsten_Theodor_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 9", "author": "", "orig_id": 1439466}}, {"model": "metainfo.source", "pk": 3057, "fields": {"orig_filename": "Schwarz-Mohrenstern_Gustav-Franziskus-Maria_1809_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 9f.", "author": "", "orig_id": 1439525}}, {"model": "metainfo.source", "pk": 3058, "fields": {"orig_filename": "Schwarz-Mohrenstern_Johann-Jakob_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 10", "author": "", "orig_id": 1439527}}, {"model": "metainfo.source", "pk": 3059, "fields": {"orig_filename": "Schwarz-Senborn_Wilhelm_1816_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 10f.", "author": "", "orig_id": 1439532}}, {"model": "metainfo.source", "pk": 3060, "fields": {"orig_filename": "Schwarz-Waldegg_Fritz_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 11", "author": "", "orig_id": 1439533}}, {"model": "metainfo.source", "pk": 3061, "fields": {"orig_filename": "Schwarzbach_Josef_1853_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 11f.", "author": "", "orig_id": 1439537}}, {"model": "metainfo.source", "pk": 3062, "fields": {"orig_filename": "Schwarzenau_Erwin_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 12", "author": "", "orig_id": 1439538}}, {"model": "metainfo.source", "pk": 3063, "fields": {"orig_filename": "Schwarzenberger_Rupert_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 26f.", "author": "", "orig_id": 1439603}}, {"model": "metainfo.source", "pk": 3064, "fields": {"orig_filename": "Schwarzenberg_Adolf-Josef_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 12f.", "author": "", "orig_id": 1439539}}, {"model": "metainfo.source", "pk": 3065, "fields": {"orig_filename": "Schwarzenberg_Adolph_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13", "author": "", "orig_id": 1439585}}, {"model": "metainfo.source", "pk": 3066, "fields": {"orig_filename": "Schwarzenberg_Edmund_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13f.", "author": "", "orig_id": 1439587}}, {"model": "metainfo.source", "pk": 3067, "fields": {"orig_filename": "Schwarzenberg_Ernst_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 14f.", "author": "", "orig_id": 1439588}}, {"model": "metainfo.source", "pk": 3068, "fields": {"orig_filename": "Schwarzenberg_Felix_1800_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 15ff.", "author": "", "orig_id": 1439589}}, {"model": "metainfo.source", "pk": 3069, "fields": {"orig_filename": "Schwarzenberg_Felix_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 17", "author": "", "orig_id": 1439590}}, {"model": "metainfo.source", "pk": 3070, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1799_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 18f.", "author": "", "orig_id": 1439591}}, {"model": "metainfo.source", "pk": 3071, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 19f.", "author": "", "orig_id": 1439592}}, {"model": "metainfo.source", "pk": 3072, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 20f.", "author": "", "orig_id": 1439593}}, {"model": "metainfo.source", "pk": 3073, "fields": {"orig_filename": "Schwarzenberg_Johann-Adolf-Ii_1799_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 21f.", "author": "", "orig_id": 1439594}}, {"model": "metainfo.source", "pk": 3074, "fields": {"orig_filename": "Schwarzenberg_Josef-Ii_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 22", "author": "", "orig_id": 1439595}}, {"model": "metainfo.source", "pk": 3075, "fields": {"orig_filename": "Schwarzenberg_Karl-I-Philipp_1771_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 22f.", "author": "", "orig_id": 1439596}}, {"model": "metainfo.source", "pk": 3076, "fields": {"orig_filename": "Schwarzenberg_Karl-Iii_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 24", "author": "", "orig_id": 1439598}}, {"model": "metainfo.source", "pk": 3077, "fields": {"orig_filename": "Schwarzenberg_Karl-Ii_1802_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 23f.", "author": "", "orig_id": 1439597}}, {"model": "metainfo.source", "pk": 3078, "fields": {"orig_filename": "Schwarzenberg_Karl-Iv_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 24f.", "author": "", "orig_id": 1439599}}, {"model": "metainfo.source", "pk": 3079, "fields": {"orig_filename": "Schwarzenberg_Maria-Anna_1768_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 25", "author": "", "orig_id": 1439600}}, {"model": "metainfo.source", "pk": 3080, "fields": {"orig_filename": "Schwarzenberg_Maria-Karoline_1775_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 25f.", "author": "", "orig_id": 1439601}}, {"model": "metainfo.source", "pk": 3081, "fields": {"orig_filename": "Schwarzenbrunner_Bonifaz_1790_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 27", "author": "", "orig_id": 1439604}}, {"model": "metainfo.source", "pk": 3082, "fields": {"orig_filename": "Schwarzer-Babarcz_Ferenc_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29", "author": "", "orig_id": 1439652}}, {"model": "metainfo.source", "pk": 3083, "fields": {"orig_filename": "Schwarzer-Babarcz_Otto_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29f.", "author": "", "orig_id": 1439653}}, {"model": "metainfo.source", "pk": 3084, "fields": {"orig_filename": "Schwarzer-Heldenstamm_Ernst_1808_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 30f.", "author": "", "orig_id": 1439654}}, {"model": "metainfo.source", "pk": 3085, "fields": {"orig_filename": "Schwarzer-Heldenstamm_Guido_1834_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31", "author": "", "orig_id": 1439656}}, {"model": "metainfo.source", "pk": 3086, "fields": {"orig_filename": "Schwarzer_Alois_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 28", "author": "", "orig_id": 1439606}}, {"model": "metainfo.source", "pk": 3087, "fields": {"orig_filename": "Schwarzer_Franz_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 28", "author": "", "orig_id": 1439649}}, {"model": "metainfo.source", "pk": 3088, "fields": {"orig_filename": "Schwarzer_Johann_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29", "author": "", "orig_id": 1439651}}, {"model": "metainfo.source", "pk": 3089, "fields": {"orig_filename": "Schwarzgruber_Rudolf_1900_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31", "author": "", "orig_id": 1439657}}, {"model": "metainfo.source", "pk": 3090, "fields": {"orig_filename": "Schwarzinger_Johann_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31f.", "author": "", "orig_id": 1439658}}, {"model": "metainfo.source", "pk": 3091, "fields": {"orig_filename": "Schwarzinger_Josef_1848_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 32", "author": "", "orig_id": 1439659}}, {"model": "metainfo.source", "pk": 3092, "fields": {"orig_filename": "Schwarzkopf_Gustav_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 32f.", "author": "", "orig_id": 1439660}}, {"model": "metainfo.source", "pk": 3093, "fields": {"orig_filename": "Schwarzmann_David_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 33", "author": "", "orig_id": 1439661}}, {"model": "metainfo.source", "pk": 3094, "fields": {"orig_filename": "Schwarzmann_Joseph-Anton_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 33f.", "author": "", "orig_id": 1439662}}, {"model": "metainfo.source", "pk": 3095, "fields": {"orig_filename": "Schwarzwald_Eugenie_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 34f.", "author": "", "orig_id": 1439663}}, {"model": "metainfo.source", "pk": 3096, "fields": {"orig_filename": "Schwarzwald_Hermann_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 35", "author": "", "orig_id": 1439664}}, {"model": "metainfo.source", "pk": 3097, "fields": {"orig_filename": "Schwarz_Adam_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 420", "author": "", "orig_id": 1420292}}, {"model": "metainfo.source", "pk": 3098, "fields": {"orig_filename": "Schwarz_Adolf_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 420f.", "author": "", "orig_id": 1420293}}, {"model": "metainfo.source", "pk": 3099, "fields": {"orig_filename": "Schwarz_Adolf_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 421", "author": "", "orig_id": 1420294}}, {"model": "metainfo.source", "pk": 3100, "fields": {"orig_filename": "Schwarz_Adolf_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 421f.", "author": "", "orig_id": 1420295}}, {"model": "metainfo.source", "pk": 3101, "fields": {"orig_filename": "Schwarz_Adolf_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 422", "author": "", "orig_id": 1420296}}, {"model": "metainfo.source", "pk": 3102, "fields": {"orig_filename": "Schwarz_Alois_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 422f.", "author": "", "orig_id": 1420297}}, {"model": "metainfo.source", "pk": 3103, "fields": {"orig_filename": "Schwarz_Anton_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 423f.", "author": "", "orig_id": 1420298}}, {"model": "metainfo.source", "pk": 3104, "fields": {"orig_filename": "Schwarz_Anton_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424", "author": "", "orig_id": 1420299}}, {"model": "metainfo.source", "pk": 3105, "fields": {"orig_filename": "Schwarz_Anton_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424", "author": "", "orig_id": 1420300}}, {"model": "metainfo.source", "pk": 3106, "fields": {"orig_filename": "Schwarz_Anton_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424f.", "author": "", "orig_id": 1420301}}, {"model": "metainfo.source", "pk": 3107, "fields": {"orig_filename": "Schwarz_Antun_1832_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426", "author": "", "orig_id": 1420302}}, {"model": "metainfo.source", "pk": 3108, "fields": {"orig_filename": "Schwarz_Arthur-Zacharias_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426", "author": "", "orig_id": 1420303}}, {"model": "metainfo.source", "pk": 3109, "fields": {"orig_filename": "Schwarz_Arthur_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 431", "author": "", "orig_id": 1420369}}, {"model": "metainfo.source", "pk": 3110, "fields": {"orig_filename": "Schwarz_Bertha_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426f.", "author": "", "orig_id": 1420359}}, {"model": "metainfo.source", "pk": 3111, "fields": {"orig_filename": "Schwarz_Caspar-Friedrich_1881_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428", "author": "", "orig_id": 1420361}}, {"model": "metainfo.source", "pk": 3112, "fields": {"orig_filename": "Schwarz_Caspar_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 427f.", "author": "", "orig_id": 1420360}}, {"model": "metainfo.source", "pk": 3113, "fields": {"orig_filename": "Schwarz_Cornel_1774_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428", "author": "", "orig_id": 1420362}}, {"model": "metainfo.source", "pk": 3114, "fields": {"orig_filename": "Schwarz_Cornel_1813_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428f.", "author": "", "orig_id": 1420364}}, {"model": "metainfo.source", "pk": 3115, "fields": {"orig_filename": "Schwarz_David_1850_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 429f.", "author": "", "orig_id": 1420365}}, {"model": "metainfo.source", "pk": 3116, "fields": {"orig_filename": "Schwarz_Eduard_1831_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 430", "author": "", "orig_id": 1420366}}, {"model": "metainfo.source", "pk": 3117, "fields": {"orig_filename": "Schwarz_Eduard_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 430f.", "author": "", "orig_id": 1420367}}, {"model": "metainfo.source", "pk": 3118, "fields": {"orig_filename": "Schwarz_Emil_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 431", "author": "", "orig_id": 1420368}}, {"model": "metainfo.source", "pk": 3119, "fields": {"orig_filename": "Schwarz_Ernst-Matthias_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 432", "author": "", "orig_id": 1420370}}, {"model": "metainfo.source", "pk": 3120, "fields": {"orig_filename": "Schwarz_Ernst_1805_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4f.", "author": "", "orig_id": 1439450}}, {"model": "metainfo.source", "pk": 3121, "fields": {"orig_filename": "Schwarz_Ferdinand_1852_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 432f.", "author": "", "orig_id": 1420371}}, {"model": "metainfo.source", "pk": 3122, "fields": {"orig_filename": "Schwarz_Frantisek_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 433", "author": "", "orig_id": 1420372}}, {"model": "metainfo.source", "pk": 3123, "fields": {"orig_filename": "Schwarz_Franz-Sales_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 434", "author": "", "orig_id": 1420374}}, {"model": "metainfo.source", "pk": 3124, "fields": {"orig_filename": "Schulz_Benedict_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342", "author": "", "orig_id": 1419772}}, {"model": "metainfo.source", "pk": 3125, "fields": {"orig_filename": "Schulz_Bruno_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342ff.", "author": "", "orig_id": 1419817}}, {"model": "metainfo.source", "pk": 3126, "fields": {"orig_filename": "Schulz_Emil-Emanuel-Eugen_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 344", "author": "", "orig_id": 1419818}}, {"model": "metainfo.source", "pk": 3127, "fields": {"orig_filename": "Schulz_Ferdinand_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 344f.", "author": "", "orig_id": 1419819}}, {"model": "metainfo.source", "pk": 3128, "fields": {"orig_filename": "Schulz_Ferenc_1838_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 345f.", "author": "", "orig_id": 1419821}}, {"model": "metainfo.source", "pk": 3129, "fields": {"orig_filename": "Schulz_Hugo_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 346", "author": "", "orig_id": 1419822}}, {"model": "metainfo.source", "pk": 3130, "fields": {"orig_filename": "Schulz_Izydor_1881_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 346f.", "author": "", "orig_id": 1419823}}, {"model": "metainfo.source", "pk": 3131, "fields": {"orig_filename": "Schulz_Josefine_1791_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 348", "author": "", "orig_id": 1419826}}, {"model": "metainfo.source", "pk": 3132, "fields": {"orig_filename": "Schulz_Josef_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 347f.", "author": "", "orig_id": 1419825}}, {"model": "metainfo.source", "pk": 3133, "fields": {"orig_filename": "Schulz_Karel_1899_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 348f.", "author": "", "orig_id": 1419827}}, {"model": "metainfo.source", "pk": 3134, "fields": {"orig_filename": "Schulz_Katharina_1750_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 349", "author": "", "orig_id": 1419828}}, {"model": "metainfo.source", "pk": 3135, "fields": {"orig_filename": "Schulz_Leopold_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 350", "author": "", "orig_id": 1419829}}, {"model": "metainfo.source", "pk": 3136, "fields": {"orig_filename": "Schulz_Otakar-Eugen_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 350f.", "author": "", "orig_id": 1419830}}, {"model": "metainfo.source", "pk": 3137, "fields": {"orig_filename": "Schulz_Paul_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 351", "author": "", "orig_id": 1419831}}, {"model": "metainfo.source", "pk": 3138, "fields": {"orig_filename": "Schulz_Richard_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 351f.", "author": "", "orig_id": 1419832}}, {"model": "metainfo.source", "pk": 3139, "fields": {"orig_filename": "Schulz_Theodor_1815_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352", "author": "", "orig_id": 1419833}}, {"model": "metainfo.source", "pk": 3140, "fields": {"orig_filename": "Schulz_Theodor_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352", "author": "", "orig_id": 1419834}}, {"model": "metainfo.source", "pk": 3141, "fields": {"orig_filename": "Schulz_Wolfgang_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352f.", "author": "", "orig_id": 1419835}}, {"model": "metainfo.source", "pk": 3142, "fields": {"orig_filename": "Schumacher-Marienfrid_Anton_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 363f.", "author": "", "orig_id": 1419955}}, {"model": "metainfo.source", "pk": 3143, "fields": {"orig_filename": "Schumacher-Marienfrid_Eckart_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 364f.", "author": "", "orig_id": 1419956}}, {"model": "metainfo.source", "pk": 3144, "fields": {"orig_filename": "Schumacher-Marienfrid_Siegmund_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 365f.", "author": "", "orig_id": 1419957}}, {"model": "metainfo.source", "pk": 3145, "fields": {"orig_filename": "Schumacher-Taennengau_Albert_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 366", "author": "", "orig_id": 1419958}}, {"model": "metainfo.source", "pk": 3146, "fields": {"orig_filename": "Schumacher_Alois_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 358", "author": "", "orig_id": 1419889}}, {"model": "metainfo.source", "pk": 3147, "fields": {"orig_filename": "Schumacher_Andreas_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 358f.", "author": "", "orig_id": 1419895}}, {"model": "metainfo.source", "pk": 3148, "fields": {"orig_filename": "Schumacher_Casimir-Carl_1766_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 359f.", "author": "", "orig_id": 1419896}}, {"model": "metainfo.source", "pk": 3149, "fields": {"orig_filename": "Schumacher_Franz_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360", "author": "", "orig_id": 1419897}}, {"model": "metainfo.source", "pk": 3150, "fields": {"orig_filename": "Schumacher_Ignaz_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360f.", "author": "", "orig_id": 1419899}}, {"model": "metainfo.source", "pk": 3151, "fields": {"orig_filename": "Schumacher_Johann-Nep_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 361f.", "author": "", "orig_id": 1419900}}, {"model": "metainfo.source", "pk": 3152, "fields": {"orig_filename": "Schumacher_Josef_1894_1971.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360", "author": "", "orig_id": 1419898}}, {"model": "metainfo.source", "pk": 3153, "fields": {"orig_filename": "Schumacher_Oskar_1894_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 362", "author": "", "orig_id": 1419901}}, {"model": "metainfo.source", "pk": 3154, "fields": {"orig_filename": "Schumacher_Philipp_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 362f.", "author": "", "orig_id": 1419954}}, {"model": "metainfo.source", "pk": 3155, "fields": {"orig_filename": "Schumann-Heink_Ernestine_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 368f.", "author": "", "orig_id": 1419961}}, {"model": "metainfo.source", "pk": 3156, "fields": {"orig_filename": "Schumann_Carl_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 366f.", "author": "", "orig_id": 1419959}}, {"model": "metainfo.source", "pk": 3157, "fields": {"orig_filename": "Schumi_Franz_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 369", "author": "", "orig_id": 1419962}}, {"model": "metainfo.source", "pk": 3158, "fields": {"orig_filename": "Schumpeter_Joseph-Alois_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 369ff.", "author": "", "orig_id": 1419963}}, {"model": "metainfo.source", "pk": 3159, "fields": {"orig_filename": "Schunda_Jozsef_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419965}}, {"model": "metainfo.source", "pk": 3160, "fields": {"orig_filename": "Schunda_Karoly_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419966}}, {"model": "metainfo.source", "pk": 3161, "fields": {"orig_filename": "Schunda_Vencel-Jozsef_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419964}}, {"model": "metainfo.source", "pk": 3162, "fields": {"orig_filename": "Schupfer_Francesco_1833_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371f.", "author": "", "orig_id": 1419968}}, {"model": "metainfo.source", "pk": 3163, "fields": {"orig_filename": "Schuppanzigh-Frankenbach_Emanuel_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 374", "author": "", "orig_id": 1419973}}, {"model": "metainfo.source", "pk": 3164, "fields": {"orig_filename": "Schuppanzigh_Ignaz_1776_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 373f.", "author": "", "orig_id": 1419972}}, {"model": "metainfo.source", "pk": 3165, "fields": {"orig_filename": "Schuppli_Paul_1861_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 374f.", "author": "", "orig_id": 1419974}}, {"model": "metainfo.source", "pk": 3166, "fields": {"orig_filename": "Schupp_Ferdinand_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 372f.", "author": "", "orig_id": 1419970}}, {"model": "metainfo.source", "pk": 3167, "fields": {"orig_filename": "Schupp_Helena-Eleonora-Joanna_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 373", "author": "", "orig_id": 1419971}}, {"model": "metainfo.source", "pk": 3168, "fields": {"orig_filename": "Schurda_Ignaz_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 378", "author": "", "orig_id": 1420039}}, {"model": "metainfo.source", "pk": 3169, "fields": {"orig_filename": "Schurz_Anton-Xaver_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 378f.", "author": "", "orig_id": 1420040}}, {"model": "metainfo.source", "pk": 3170, "fields": {"orig_filename": "Schur_Ferdinand-August-Eduard_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 376f.", "author": "", "orig_id": 1419976}}, {"model": "metainfo.source", "pk": 3171, "fields": {"orig_filename": "Schur_Ferdinand_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 375f.", "author": "", "orig_id": 1419975}}, {"model": "metainfo.source", "pk": 3172, "fields": {"orig_filename": "Schur_Moritz_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 377f.", "author": "", "orig_id": 1420038}}, {"model": "metainfo.source", "pk": 3173, "fields": {"orig_filename": "Schuschny_Grete_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 379", "author": "", "orig_id": 1420042}}, {"model": "metainfo.source", "pk": 3174, "fields": {"orig_filename": "Schuschny_Hans_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 379f.", "author": "", "orig_id": 1420041}}, {"model": "metainfo.source", "pk": 3175, "fields": {"orig_filename": "Schuselka-Bruening_Ida_1817_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 380ff.", "author": "", "orig_id": 1420044}}, {"model": "metainfo.source", "pk": 3176, "fields": {"orig_filename": "Schuselka_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 380", "author": "", "orig_id": 1420043}}, {"model": "metainfo.source", "pk": 3177, "fields": {"orig_filename": "Schustala_Adolf_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 382", "author": "", "orig_id": 1420046}}, {"model": "metainfo.source", "pk": 3178, "fields": {"orig_filename": "Schustala_Ignaz_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 382f.", "author": "", "orig_id": 1420045}}, {"model": "metainfo.source", "pk": 3179, "fields": {"orig_filename": "Schustala_Ignaz_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 383", "author": "", "orig_id": 1420047}}, {"model": "metainfo.source", "pk": 3180, "fields": {"orig_filename": "Schusteckh-Herve_Emanuel_1750_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 383f.", "author": "", "orig_id": 1420048}}, {"model": "metainfo.source", "pk": 3181, "fields": {"orig_filename": "Schuster-Baernrode_Robert_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 398", "author": "", "orig_id": 1420133}}, {"model": "metainfo.source", "pk": 3182, "fields": {"orig_filename": "Schuster-Bonnott_Ferdinand_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 399", "author": "", "orig_id": 1420135}}, {"model": "metainfo.source", "pk": 3183, "fields": {"orig_filename": "Schuster-Bonnott_Maximilian_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 398f.", "author": "", "orig_id": 1420134}}, {"model": "metainfo.source", "pk": 3184, "fields": {"orig_filename": "Schuster-Bonnott_Rudolf_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 399f.", "author": "", "orig_id": 1420136}}, {"model": "metainfo.source", "pk": 3185, "fields": {"orig_filename": "Schuster-Herineanu_Johann_1883_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400", "author": "", "orig_id": 1420138}}, {"model": "metainfo.source", "pk": 3186, "fields": {"orig_filename": "Schustermann_Adolf_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400f.", "author": "", "orig_id": 1420137}}, {"model": "metainfo.source", "pk": 3187, "fields": {"orig_filename": "Schustermann_Josef_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400f.", "author": "", "orig_id": 1420139}}, {"model": "metainfo.source", "pk": 3188, "fields": {"orig_filename": "Schuster_Andreas_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 384", "author": "", "orig_id": 1420049}}, {"model": "metainfo.source", "pk": 3189, "fields": {"orig_filename": "Schuster_Franz_1904_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 384f.", "author": "", "orig_id": 1420050}}, {"model": "metainfo.source", "pk": 3190, "fields": {"orig_filename": "Schuster_Friedrich-Wilhelm_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 385f.", "author": "", "orig_id": 1420052}}, {"model": "metainfo.source", "pk": 3191, "fields": {"orig_filename": "Schuster_Friedrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 385", "author": "", "orig_id": 1420051}}, {"model": "metainfo.source", "pk": 3192, "fields": {"orig_filename": "Schuster_Heinrich-Maria_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 387f.", "author": "", "orig_id": 1420055}}, {"model": "metainfo.source", "pk": 3193, "fields": {"orig_filename": "Schuster_Heinrich_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 387", "author": "", "orig_id": 1420054}}, {"model": "metainfo.source", "pk": 3194, "fields": {"orig_filename": "Schuster_Ignaz_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 388f.", "author": "", "orig_id": 1420056}}, {"model": "metainfo.source", "pk": 3195, "fields": {"orig_filename": "Schuster_Janos-Konstanz_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390", "author": "", "orig_id": 1420057}}, {"model": "metainfo.source", "pk": 3196, "fields": {"orig_filename": "Schuster_Johann-Leopold_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390", "author": "", "orig_id": 1420058}}, {"model": "metainfo.source", "pk": 3197, "fields": {"orig_filename": "Schuster_Johann-Traugott_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390f.", "author": "", "orig_id": 1420059}}, {"model": "metainfo.source", "pk": 3198, "fields": {"orig_filename": "Schuster_Josef-Anton_1770_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391f.", "author": "", "orig_id": 1420120}}, {"model": "metainfo.source", "pk": 3199, "fields": {"orig_filename": "Schuster_Josef_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391", "author": "", "orig_id": 1420060}}, {"model": "metainfo.source", "pk": 3200, "fields": {"orig_filename": "Schuster_Joseph_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 392", "author": "", "orig_id": 1420121}}, {"model": "metainfo.source", "pk": 3201, "fields": {"orig_filename": "Schuster_Joseph_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 392f.", "author": "", "orig_id": 1420122}}, {"model": "metainfo.source", "pk": 3202, "fields": {"orig_filename": "Schuster_Karl-Maria_1871_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391", "author": "", "orig_id": 1420119}}, {"model": "metainfo.source", "pk": 3203, "fields": {"orig_filename": "Schuster_Konstantin_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 393", "author": "", "orig_id": 1420123}}, {"model": "metainfo.source", "pk": 3204, "fields": {"orig_filename": "Schuster_Leopoldine_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 394f.", "author": "", "orig_id": 1420125}}, {"model": "metainfo.source", "pk": 3205, "fields": {"orig_filename": "Schuster_Leopold_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 393f.", "author": "", "orig_id": 1420124}}, {"model": "metainfo.source", "pk": 3206, "fields": {"orig_filename": "Schuster_Mathias_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 395", "author": "", "orig_id": 1420126}}, {"model": "metainfo.source", "pk": 3207, "fields": {"orig_filename": "Schuster_Max_1856_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 395", "author": "", "orig_id": 1420127}}, {"model": "metainfo.source", "pk": 3208, "fields": {"orig_filename": "Schuster_Michael_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 396", "author": "", "orig_id": 1420129}}, {"model": "metainfo.source", "pk": 3209, "fields": {"orig_filename": "Schuster_Richard_1867_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 396f.", "author": "", "orig_id": 1420130}}, {"model": "metainfo.source", "pk": 3210, "fields": {"orig_filename": "Schuster_Vaclav_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 397", "author": "", "orig_id": 1420131}}, {"model": "metainfo.source", "pk": 3211, "fields": {"orig_filename": "Schuster_Valentin-J_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 397f.", "author": "", "orig_id": 1420132}}, {"model": "metainfo.source", "pk": 3212, "fields": {"orig_filename": "Schustler_Karl_1811_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401", "author": "", "orig_id": 1420142}}, {"model": "metainfo.source", "pk": 3213, "fields": {"orig_filename": "Schustler_Moritz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401", "author": "", "orig_id": 1420140}}, {"model": "metainfo.source", "pk": 3214, "fields": {"orig_filename": "Schwaab_Josef_1856_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401f.", "author": "", "orig_id": 1420141}}, {"model": "metainfo.source", "pk": 3215, "fields": {"orig_filename": "Schwabach_Erik-Ernst_1891_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407", "author": "", "orig_id": 1420205}}, {"model": "metainfo.source", "pk": 3216, "fields": {"orig_filename": "Schwabe-Waisenfreund_Carl_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 408f.", "author": "", "orig_id": 1420209}}, {"model": "metainfo.source", "pk": 3217, "fields": {"orig_filename": "Schwabe-Waisenfreund_Rudolf_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409", "author": "", "orig_id": 1420212}}, {"model": "metainfo.source", "pk": 3218, "fields": {"orig_filename": "Schwabe-Waisenfreund_Vinzenz_1783_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409", "author": "", "orig_id": 1420211}}, {"model": "metainfo.source", "pk": 3219, "fields": {"orig_filename": "Schwabe_Georg-Friedrich_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407f.", "author": "", "orig_id": 1420206}}, {"model": "metainfo.source", "pk": 3220, "fields": {"orig_filename": "Schwabe_Gustav-Adolf_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 408", "author": "", "orig_id": 1420208}}, {"model": "metainfo.source", "pk": 3221, "fields": {"orig_filename": "Schwabe_Karl-Traugott-Friedrich_1819_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407f.", "author": "", "orig_id": 1420207}}, {"model": "metainfo.source", "pk": 3222, "fields": {"orig_filename": "Schuette-Warensberg_Adolph_1777_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412267}}, {"model": "metainfo.source", "pk": 3223, "fields": {"orig_filename": "Schuettelkopf_Balthasar_1863_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298f.", "author": "", "orig_id": 1412338}}, {"model": "metainfo.source", "pk": 3224, "fields": {"orig_filename": "Schuetzenberger_Alois_1792_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 306f.", "author": "", "orig_id": 1412440}}, {"model": "metainfo.source", "pk": 3225, "fields": {"orig_filename": "Schuetzenhofer_Viktor_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307", "author": "", "orig_id": 1412441}}, {"model": "metainfo.source", "pk": 3226, "fields": {"orig_filename": "Schuetzenhofer_Viktor_1878_1961.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307", "author": "", "orig_id": 1412442}}, {"model": "metainfo.source", "pk": 3227, "fields": {"orig_filename": "Schuetze_Theodor-Reinhold_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 306", "author": "", "orig_id": 1412439}}, {"model": "metainfo.source", "pk": 3228, "fields": {"orig_filename": "Schuetz_Amalie_1803_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 299f.", "author": "", "orig_id": 1412339}}, {"model": "metainfo.source", "pk": 3229, "fields": {"orig_filename": "Schuetz_Anna-Maria_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300", "author": "", "orig_id": 1412341}}, {"model": "metainfo.source", "pk": 3230, "fields": {"orig_filename": "Schuetz_Arnold_1832_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412434}}, {"model": "metainfo.source", "pk": 3231, "fields": {"orig_filename": "Schuetz_Arthur_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 304", "author": "", "orig_id": 1412359}}, {"model": "metainfo.source", "pk": 3232, "fields": {"orig_filename": "Schuetz_Berta_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300f.", "author": "", "orig_id": 1412343}}, {"model": "metainfo.source", "pk": 3233, "fields": {"orig_filename": "Schuetz_Bertha_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412347}}, {"model": "metainfo.source", "pk": 3234, "fields": {"orig_filename": "Schuetz_Christian_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300", "author": "", "orig_id": 1412342}}, {"model": "metainfo.source", "pk": 3235, "fields": {"orig_filename": "Schuetz_Emil_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301f.", "author": "", "orig_id": 1412348}}, {"model": "metainfo.source", "pk": 3236, "fields": {"orig_filename": "Schuetz_Friedrich_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 302", "author": "", "orig_id": 1412349}}, {"model": "metainfo.source", "pk": 3237, "fields": {"orig_filename": "Schuetz_Friedrich_1894_1985.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412351}}, {"model": "metainfo.source", "pk": 3238, "fields": {"orig_filename": "Schuetz_Gustav_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 302f.", "author": "", "orig_id": 1412350}}, {"model": "metainfo.source", "pk": 3239, "fields": {"orig_filename": "Schuetz_Ignatz-Zacharias_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412354}}, {"model": "metainfo.source", "pk": 3240, "fields": {"orig_filename": "Schuetz_Jakob-Abraham_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303f.", "author": "", "orig_id": 1412358}}, {"model": "metainfo.source", "pk": 3241, "fields": {"orig_filename": "Schuetz_Julius_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412356}}, {"model": "metainfo.source", "pk": 3242, "fields": {"orig_filename": "Schuetz_Julius_1876_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 304f.", "author": "", "orig_id": 1412360}}, {"model": "metainfo.source", "pk": 3243, "fields": {"orig_filename": "Schuetz_Karl-August_1790_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 299f.", "author": "", "orig_id": 1412340}}, {"model": "metainfo.source", "pk": 3244, "fields": {"orig_filename": "Schuetz_Karl_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412361}}, {"model": "metainfo.source", "pk": 3245, "fields": {"orig_filename": "Schuetz_Karl_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412355}}, {"model": "metainfo.source", "pk": 3246, "fields": {"orig_filename": "Schuetz_Ludwig-Richard_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412362}}, {"model": "metainfo.source", "pk": 3247, "fields": {"orig_filename": "Schuetz_Ludwig_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412357}}, {"model": "metainfo.source", "pk": 3248, "fields": {"orig_filename": "Schuetz_Maria-Anna_1759_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305f.", "author": "", "orig_id": 1412435}}, {"model": "metainfo.source", "pk": 3249, "fields": {"orig_filename": "Schuetz_Otto-Heinrich_1901_1981.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412352}}, {"model": "metainfo.source", "pk": 3250, "fields": {"orig_filename": "Schuetz_Paul-J_1891_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412353}}, {"model": "metainfo.source", "pk": 3251, "fields": {"orig_filename": "Schufinsky_Victor_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307f.", "author": "", "orig_id": 1412444}}, {"model": "metainfo.source", "pk": 3252, "fields": {"orig_filename": "Schufried_Dominik_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308", "author": "", "orig_id": 1412446}}, {"model": "metainfo.source", "pk": 3253, "fields": {"orig_filename": "Schufried_Jakob_1785_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308", "author": "", "orig_id": 1412445}}, {"model": "metainfo.source", "pk": 3254, "fields": {"orig_filename": "Schuhmeier_Franz_1864_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 311f.", "author": "", "orig_id": 1412454}}, {"model": "metainfo.source", "pk": 3255, "fields": {"orig_filename": "Schuh_Adam_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308f.", "author": "", "orig_id": 1412447}}, {"model": "metainfo.source", "pk": 3256, "fields": {"orig_filename": "Schuh_Carl_1806_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 309", "author": "", "orig_id": 1412448}}, {"model": "metainfo.source", "pk": 3257, "fields": {"orig_filename": "Schuh_Franz_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 309f.", "author": "", "orig_id": 1412449}}, {"model": "metainfo.source", "pk": 3258, "fields": {"orig_filename": "Schuh_Hermine_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 310", "author": "", "orig_id": 1412450}}, {"model": "metainfo.source", "pk": 3259, "fields": {"orig_filename": "Schuh_Rudolf_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 310f.", "author": "", "orig_id": 1412451}}, {"model": "metainfo.source", "pk": 3260, "fields": {"orig_filename": "Schukic_Lazar_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 312", "author": "", "orig_id": 1412455}}, {"model": "metainfo.source", "pk": 3261, "fields": {"orig_filename": "Schukowitz_Hans_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 312f.", "author": "", "orig_id": 1412456}}, {"model": "metainfo.source", "pk": 3262, "fields": {"orig_filename": "Schulbaum_Moses_1833_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 313", "author": "", "orig_id": 1411047}}, {"model": "metainfo.source", "pk": 3263, "fields": {"orig_filename": "Schuldes_Julius_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 313f.", "author": "", "orig_id": 1411048}}, {"model": "metainfo.source", "pk": 3264, "fields": {"orig_filename": "Schulek_Frigyes_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 314f.", "author": "", "orig_id": 1411049}}, {"model": "metainfo.source", "pk": 3265, "fields": {"orig_filename": "Schulek_Vilmos_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 315f.", "author": "", "orig_id": 1411050}}, {"model": "metainfo.source", "pk": 3266, "fields": {"orig_filename": "Schulenburg_Hans-Daniel-Matthias_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316", "author": "", "orig_id": 1411051}}, {"model": "metainfo.source", "pk": 3267, "fields": {"orig_filename": "Schuler-Libloy_Friedrich_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 319f.", "author": "", "orig_id": 1411059}}, {"model": "metainfo.source", "pk": 3268, "fields": {"orig_filename": "Schuler_Carl-Franz_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316f.", "author": "", "orig_id": 1411052}}, {"model": "metainfo.source", "pk": 3269, "fields": {"orig_filename": "Schuler_Franz_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 317", "author": "", "orig_id": 1411054}}, {"model": "metainfo.source", "pk": 3270, "fields": {"orig_filename": "Schuler_Hans_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 317f.", "author": "", "orig_id": 1411055}}, {"model": "metainfo.source", "pk": 3271, "fields": {"orig_filename": "Schuler_Johann_1770_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 318", "author": "", "orig_id": 1411057}}, {"model": "metainfo.source", "pk": 3272, "fields": {"orig_filename": "Schuler_Johann_1800_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 318f.", "author": "", "orig_id": 1411056}}, {"model": "metainfo.source", "pk": 3273, "fields": {"orig_filename": "Schuler_Josef_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 319", "author": "", "orig_id": 1411058}}, {"model": "metainfo.source", "pk": 3274, "fields": {"orig_filename": "Schuler_Walter_1891_1976.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316", "author": "", "orig_id": 1411053}}, {"model": "metainfo.source", "pk": 3275, "fields": {"orig_filename": "Schulheim_Hyacinth_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 320", "author": "", "orig_id": 1411060}}, {"model": "metainfo.source", "pk": 3276, "fields": {"orig_filename": "Schulhoff_Erwin_1894_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 322f.", "author": "", "orig_id": 1411065}}, {"model": "metainfo.source", "pk": 3277, "fields": {"orig_filename": "Schulhoff_Julius_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 323", "author": "", "orig_id": 1411066}}, {"model": "metainfo.source", "pk": 3278, "fields": {"orig_filename": "Schulhof_Josef_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 320f.", "author": "", "orig_id": 1411061}}, {"model": "metainfo.source", "pk": 3279, "fields": {"orig_filename": "Schulhof_Leopold_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 321", "author": "", "orig_id": 1411063}}, {"model": "metainfo.source", "pk": 3280, "fields": {"orig_filename": "Schulhof_Stanislav_1864_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 321f.", "author": "", "orig_id": 1411064}}, {"model": "metainfo.source", "pk": 3281, "fields": {"orig_filename": "Schuller-Goetzburg_Eduard_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 330", "author": "", "orig_id": 1411158}}, {"model": "metainfo.source", "pk": 3282, "fields": {"orig_filename": "Schullern-Schrattenhofen_Anton_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 330f.", "author": "", "orig_id": 1411159}}, {"model": "metainfo.source", "pk": 3283, "fields": {"orig_filename": "Schullern-Schrattenhofen_Heinrich_1865_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 331", "author": "", "orig_id": 1411160}}, {"model": "metainfo.source", "pk": 3284, "fields": {"orig_filename": "Schullern-Schrattenhofen_Hermann_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 331f.", "author": "", "orig_id": 1411161}}, {"model": "metainfo.source", "pk": 3285, "fields": {"orig_filename": "Schullerus_Adolf_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 332f.", "author": "", "orig_id": 1411162}}, {"model": "metainfo.source", "pk": 3286, "fields": {"orig_filename": "Schullerus_Eduard_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333", "author": "", "orig_id": 1411163}}, {"model": "metainfo.source", "pk": 3287, "fields": {"orig_filename": "Schullerus_Fritz_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333f.", "author": "", "orig_id": 1411164}}, {"model": "metainfo.source", "pk": 3288, "fields": {"orig_filename": "Schullerus_Gustav-Adolf_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 334", "author": "", "orig_id": 1411166}}, {"model": "metainfo.source", "pk": 3289, "fields": {"orig_filename": "Schullerus_Pauline_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 334f.", "author": "", "orig_id": 1411236}}, {"model": "metainfo.source", "pk": 3290, "fields": {"orig_filename": "Schullerus_Trude_1889_1981.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333f.", "author": "", "orig_id": 1411165}}, {"model": "metainfo.source", "pk": 3291, "fields": {"orig_filename": "Schuller_Albert_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 323f.", "author": "", "orig_id": 1411069}}, {"model": "metainfo.source", "pk": 3292, "fields": {"orig_filename": "Schuller_Alois_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411071}}, {"model": "metainfo.source", "pk": 3293, "fields": {"orig_filename": "Schuller_Betty_1860_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 327f.", "author": "", "orig_id": 1411152}}, {"model": "metainfo.source", "pk": 3294, "fields": {"orig_filename": "Schuller_Friedrich_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411145}}, {"model": "metainfo.source", "pk": 3295, "fields": {"orig_filename": "Schuller_Georg-Adolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 325f.", "author": "", "orig_id": 1411147}}, {"model": "metainfo.source", "pk": 3296, "fields": {"orig_filename": "Schuller_Georg_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 325", "author": "", "orig_id": 1411146}}, {"model": "metainfo.source", "pk": 3297, "fields": {"orig_filename": "Schuller_Guenther_1904_1995.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411070}}, {"model": "metainfo.source", "pk": 3298, "fields": {"orig_filename": "Schuller_Gustav_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326", "author": "", "orig_id": 1411148}}, {"model": "metainfo.source", "pk": 3299, "fields": {"orig_filename": "Schuller_Hermann_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326", "author": "", "orig_id": 1411149}}, {"model": "metainfo.source", "pk": 3300, "fields": {"orig_filename": "Schuller_Johann-Karl_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326f.", "author": "", "orig_id": 1411150}}, {"model": "metainfo.source", "pk": 3301, "fields": {"orig_filename": "Schuller_Ludwig-Friedrich_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 327f.", "author": "", "orig_id": 1411151}}, {"model": "metainfo.source", "pk": 3302, "fields": {"orig_filename": "Schuller_Marie_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 328", "author": "", "orig_id": 1411153}}, {"model": "metainfo.source", "pk": 3303, "fields": {"orig_filename": "Schuller_Michael-Gottlieb_1802_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 328f.", "author": "", "orig_id": 1411154}}, {"model": "metainfo.source", "pk": 3304, "fields": {"orig_filename": "Schuller_Moriz_1825_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329", "author": "", "orig_id": 1411155}}, {"model": "metainfo.source", "pk": 3305, "fields": {"orig_filename": "Schuller_Richard_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329", "author": "", "orig_id": 1411156}}, {"model": "metainfo.source", "pk": 3306, "fields": {"orig_filename": "Schuller_Wenzel_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329f.", "author": "", "orig_id": 1411157}}, {"model": "metainfo.source", "pk": 3307, "fields": {"orig_filename": "Schuloff_Robert_1883_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 335f.", "author": "", "orig_id": 1411237}}, {"model": "metainfo.source", "pk": 3308, "fields": {"orig_filename": "Schuloff_Theodor_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 336", "author": "", "orig_id": 1411238}}, {"model": "metainfo.source", "pk": 3309, "fields": {"orig_filename": "Schulpe-Toeroekkanizsa_Georg_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 336f.", "author": "", "orig_id": 1411239}}, {"model": "metainfo.source", "pk": 3310, "fields": {"orig_filename": "Schultes_Joseph-August_1773_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 338f.", "author": "", "orig_id": 1419764}}, {"model": "metainfo.source", "pk": 3311, "fields": {"orig_filename": "Schultes_Julius-Hermann_1804_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 339f.", "author": "", "orig_id": 1419765}}, {"model": "metainfo.source", "pk": 3312, "fields": {"orig_filename": "Schultes_Sigismund_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 340", "author": "", "orig_id": 1419767}}, {"model": "metainfo.source", "pk": 3313, "fields": {"orig_filename": "Schulte_Albert_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 337", "author": "", "orig_id": 1419761}}, {"model": "metainfo.source", "pk": 3314, "fields": {"orig_filename": "Schulte_Julius_1881_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 337f.", "author": "", "orig_id": 1419763}}, {"model": "metainfo.source", "pk": 3315, "fields": {"orig_filename": "Schultheiss_Ernst_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 340f.", "author": "", "orig_id": 1419768}}, {"model": "metainfo.source", "pk": 3316, "fields": {"orig_filename": "Schultzen_Anna_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 341", "author": "", "orig_id": 1419769}}, {"model": "metainfo.source", "pk": 3317, "fields": {"orig_filename": "Schulz-Strassnitzki_Leopold-Karl_1803_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 353f.", "author": "", "orig_id": 1419838}}, {"model": "metainfo.source", "pk": 3318, "fields": {"orig_filename": "Schulzer-Mueggenburg_Stephan_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 356f.", "author": "", "orig_id": 1419886}}, {"model": "metainfo.source", "pk": 3319, "fields": {"orig_filename": "Schulze_Franz-Eilhard_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 354f.", "author": "", "orig_id": 1419884}}, {"model": "metainfo.source", "pk": 3320, "fields": {"orig_filename": "Schulze_Karoline_1745_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 355f.", "author": "", "orig_id": 1419885}}, {"model": "metainfo.source", "pk": 3321, "fields": {"orig_filename": "Schulzig_Franz-Joseph-Florian_1787_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 357", "author": "", "orig_id": 1419887}}, {"model": "metainfo.source", "pk": 3322, "fields": {"orig_filename": "Schulzova_Anezka_1868_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 357f.", "author": "", "orig_id": 1419888}}, {"model": "metainfo.source", "pk": 3323, "fields": {"orig_filename": "Schulz_Alwin_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 341f.", "author": "", "orig_id": 1419770}}, {"model": "metainfo.source", "pk": 3324, "fields": {"orig_filename": "Schulz_Antonin_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342", "author": "", "orig_id": 1419771}}, {"model": "metainfo.source", "pk": 3325, "fields": {"orig_filename": "Schroff_Emanuel-Stephan_1799_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 249f.", "author": "", "orig_id": 1411875}}, {"model": "metainfo.source", "pk": 3326, "fields": {"orig_filename": "Schroff_Karl-Damian_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 250f.", "author": "", "orig_id": 1411877}}, {"model": "metainfo.source", "pk": 3327, "fields": {"orig_filename": "Schroff_Karl_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 250", "author": "", "orig_id": 1411876}}, {"model": "metainfo.source", "pk": 3328, "fields": {"orig_filename": "Schroll_Anton_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 251f.", "author": "", "orig_id": 1411878}}, {"model": "metainfo.source", "pk": 3329, "fields": {"orig_filename": "Schroll_Beda_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 252f.", "author": "", "orig_id": 1411879}}, {"model": "metainfo.source", "pk": 3330, "fields": {"orig_filename": "Schroll_Benedict_1790_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253", "author": "", "orig_id": 1411880}}, {"model": "metainfo.source", "pk": 3331, "fields": {"orig_filename": "Schroll_Benedikt_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253", "author": "", "orig_id": 1411881}}, {"model": "metainfo.source", "pk": 3332, "fields": {"orig_filename": "Schroll_Caspar-Melchior-Balthasar_1756_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253f.", "author": "", "orig_id": 1411882}}, {"model": "metainfo.source", "pk": 3333, "fields": {"orig_filename": "Schroll_Josef_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 254", "author": "", "orig_id": 1411883}}, {"model": "metainfo.source", "pk": 3334, "fields": {"orig_filename": "Schroth_Albine_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 254f.", "author": "", "orig_id": 1411884}}, {"model": "metainfo.source", "pk": 3335, "fields": {"orig_filename": "Schroth_Alexander_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256", "author": "", "orig_id": 1411888}}, {"model": "metainfo.source", "pk": 3336, "fields": {"orig_filename": "Schroth_Andreas_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255", "author": "", "orig_id": 1411885}}, {"model": "metainfo.source", "pk": 3337, "fields": {"orig_filename": "Schroth_Emanuel_1832_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255", "author": "", "orig_id": 1411886}}, {"model": "metainfo.source", "pk": 3338, "fields": {"orig_filename": "Schroth_Eugen_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255f.", "author": "", "orig_id": 1411887}}, {"model": "metainfo.source", "pk": 3339, "fields": {"orig_filename": "Schroth_Jakob_1773_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256", "author": "", "orig_id": 1411889}}, {"model": "metainfo.source", "pk": 3340, "fields": {"orig_filename": "Schroth_Johann_1798_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256f.", "author": "", "orig_id": 1411961}}, {"model": "metainfo.source", "pk": 3341, "fields": {"orig_filename": "Schroth_Karl_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411962}}, {"model": "metainfo.source", "pk": 3342, "fields": {"orig_filename": "Schroth_Karl_1898_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411963}}, {"model": "metainfo.source", "pk": 3343, "fields": {"orig_filename": "Schrottenbach_Heinrich_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 262", "author": "", "orig_id": 1411977}}, {"model": "metainfo.source", "pk": 3344, "fields": {"orig_filename": "Schrottenbach_Heinz_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 262f.", "author": "", "orig_id": 1411978}}, {"model": "metainfo.source", "pk": 3345, "fields": {"orig_filename": "Schrotter_Ignaz_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 263", "author": "", "orig_id": 1411979}}, {"model": "metainfo.source", "pk": 3346, "fields": {"orig_filename": "Schrott_Alois_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257f.", "author": "", "orig_id": 1411965}}, {"model": "metainfo.source", "pk": 3347, "fields": {"orig_filename": "Schrott_Anton_1801_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411966}}, {"model": "metainfo.source", "pk": 3348, "fields": {"orig_filename": "Schrott_Christian_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258f.", "author": "", "orig_id": 1411969}}, {"model": "metainfo.source", "pk": 3349, "fields": {"orig_filename": "Schrott_Ferdinand_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 259", "author": "", "orig_id": 1411970}}, {"model": "metainfo.source", "pk": 3350, "fields": {"orig_filename": "Schrott_Hans_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 259f.", "author": "", "orig_id": 1411971}}, {"model": "metainfo.source", "pk": 3351, "fields": {"orig_filename": "Schrott_Jakob_1804_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 260", "author": "", "orig_id": 1411972}}, {"model": "metainfo.source", "pk": 3352, "fields": {"orig_filename": "Schrott_Josip_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 260f.", "author": "", "orig_id": 1411973}}, {"model": "metainfo.source", "pk": 3353, "fields": {"orig_filename": "Schrott_Maria_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 261", "author": "", "orig_id": 1411974}}, {"model": "metainfo.source", "pk": 3354, "fields": {"orig_filename": "Schrott_Othmar_1883_1963.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258", "author": "", "orig_id": 1411968}}, {"model": "metainfo.source", "pk": 3355, "fields": {"orig_filename": "Schrott_Vincenz_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 261f.", "author": "", "orig_id": 1411975}}, {"model": "metainfo.source", "pk": 3356, "fields": {"orig_filename": "Schrotzberg_Franz_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 263f.", "author": "", "orig_id": 1411980}}, {"model": "metainfo.source", "pk": 3357, "fields": {"orig_filename": "Schruf_Toni_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 264f.", "author": "", "orig_id": 1411981}}, {"model": "metainfo.source", "pk": 3358, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Emil_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 265f.", "author": "", "orig_id": 1411983}}, {"model": "metainfo.source", "pk": 3359, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Lothar_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 266f.", "author": "", "orig_id": 1412052}}, {"model": "metainfo.source", "pk": 3360, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Marianne_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 267", "author": "", "orig_id": 1412053}}, {"model": "metainfo.source", "pk": 3361, "fields": {"orig_filename": "Schrutka_Ignaz_1802_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 266", "author": "", "orig_id": 1411984}}, {"model": "metainfo.source", "pk": 3362, "fields": {"orig_filename": "Schrutka_Mauritius-Kanicensis_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 265", "author": "", "orig_id": 1411982}}, {"model": "metainfo.source", "pk": 3363, "fields": {"orig_filename": "Schrutz_Andreas_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 267f.", "author": "", "orig_id": 1412054}}, {"model": "metainfo.source", "pk": 3364, "fields": {"orig_filename": "Schrutz_Demetrius_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 268", "author": "", "orig_id": 1412055}}, {"model": "metainfo.source", "pk": 3365, "fields": {"orig_filename": "Schubauer_Josef_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 268f.", "author": "", "orig_id": 1412056}}, {"model": "metainfo.source", "pk": 3366, "fields": {"orig_filename": "Schubert-Soldern_Eduard-Viktor_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 277f.", "author": "", "orig_id": 1412150}}, {"model": "metainfo.source", "pk": 3367, "fields": {"orig_filename": "Schubert-Soldern_Fortunat_1867_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278f.", "author": "", "orig_id": 1412154}}, {"model": "metainfo.source", "pk": 3368, "fields": {"orig_filename": "Schubert-Soldern_Rainer_1900_1974.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 279", "author": "", "orig_id": 1412155}}, {"model": "metainfo.source", "pk": 3369, "fields": {"orig_filename": "Schubert-Soldern_Victor_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278", "author": "", "orig_id": 1412153}}, {"model": "metainfo.source", "pk": 3370, "fields": {"orig_filename": "Schubert_Andreas-Theodor_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412065}}, {"model": "metainfo.source", "pk": 3371, "fields": {"orig_filename": "Schubert_Andreas_1767_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 269f.", "author": "", "orig_id": 1412057}}, {"model": "metainfo.source", "pk": 3372, "fields": {"orig_filename": "Schubert_Andreas_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 269f.", "author": "", "orig_id": 1412058}}, {"model": "metainfo.source", "pk": 3373, "fields": {"orig_filename": "Schubert_Ferdinand-Lukas_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 270f.", "author": "", "orig_id": 1412060}}, {"model": "metainfo.source", "pk": 3374, "fields": {"orig_filename": "Schubert_Ferdinand_1824_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 270", "author": "", "orig_id": 1412059}}, {"model": "metainfo.source", "pk": 3375, "fields": {"orig_filename": "Schubert_Franz-Peter_1797_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 271ff.", "author": "", "orig_id": 1412061}}, {"model": "metainfo.source", "pk": 3376, "fields": {"orig_filename": "Schubert_Franz-Theodor_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412062}}, {"model": "metainfo.source", "pk": 3377, "fields": {"orig_filename": "Schubert_Heinrich-Karl_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274f.", "author": "", "orig_id": 1412066}}, {"model": "metainfo.source", "pk": 3378, "fields": {"orig_filename": "Schubert_Hermann_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275", "author": "", "orig_id": 1412067}}, {"model": "metainfo.source", "pk": 3379, "fields": {"orig_filename": "Schubert_Ignaz_1785_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412063}}, {"model": "metainfo.source", "pk": 3380, "fields": {"orig_filename": "Schubert_Joseph_1754_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275", "author": "", "orig_id": 1412068}}, {"model": "metainfo.source", "pk": 3381, "fields": {"orig_filename": "Schubert_Karl_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275f.", "author": "", "orig_id": 1412069}}, {"model": "metainfo.source", "pk": 3382, "fields": {"orig_filename": "Schubert_Karl_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 276", "author": "", "orig_id": 1412071}}, {"model": "metainfo.source", "pk": 3383, "fields": {"orig_filename": "Schubert_Maria-Theresia_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412064}}, {"model": "metainfo.source", "pk": 3384, "fields": {"orig_filename": "Schubert_Ottokar_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 276f.", "author": "", "orig_id": 1412072}}, {"model": "metainfo.source", "pk": 3385, "fields": {"orig_filename": "Schubert_Otto_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278", "author": "", "orig_id": 1412152}}, {"model": "metainfo.source", "pk": 3386, "fields": {"orig_filename": "Schubert_Richard_1876_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 277", "author": "", "orig_id": 1412149}}, {"model": "metainfo.source", "pk": 3387, "fields": {"orig_filename": "Schuchardt_Hugo_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 282f.", "author": "", "orig_id": 1412164}}, {"model": "metainfo.source", "pk": 3388, "fields": {"orig_filename": "Schuchart_August_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 283f.", "author": "", "orig_id": 1412165}}, {"model": "metainfo.source", "pk": 3389, "fields": {"orig_filename": "Schuchter_Joseph_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 284", "author": "", "orig_id": 1412166}}, {"model": "metainfo.source", "pk": 3390, "fields": {"orig_filename": "Schuch_Carl-Eduard_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 279f.", "author": "", "orig_id": 1412157}}, {"model": "metainfo.source", "pk": 3391, "fields": {"orig_filename": "Schuch_Clementine_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 280f.", "author": "", "orig_id": 1412158}}, {"model": "metainfo.source", "pk": 3392, "fields": {"orig_filename": "Schuch_Ernst-Gottfried_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 281", "author": "", "orig_id": 1412159}}, {"model": "metainfo.source", "pk": 3393, "fields": {"orig_filename": "Schuch_Julius-Maria-Franz_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 281f.", "author": "", "orig_id": 1412160}}, {"model": "metainfo.source", "pk": 3394, "fields": {"orig_filename": "Schuch_Leopold_1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 282", "author": "", "orig_id": 1412161}}, {"model": "metainfo.source", "pk": 3395, "fields": {"orig_filename": "Schudrich_Jakub_1906_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285", "author": "", "orig_id": 1412167}}, {"model": "metainfo.source", "pk": 3396, "fields": {"orig_filename": "Schuech-Capanema_Wilhelm_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285f.", "author": "", "orig_id": 1412169}}, {"model": "metainfo.source", "pk": 3397, "fields": {"orig_filename": "Schuecht_Franz_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286", "author": "", "orig_id": 1412170}}, {"model": "metainfo.source", "pk": 3398, "fields": {"orig_filename": "Schuech_Rochus_1788_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285f.", "author": "", "orig_id": 1412168}}, {"model": "metainfo.source", "pk": 3399, "fields": {"orig_filename": "Schuecker_Heinrich_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287", "author": "", "orig_id": 1412172}}, {"model": "metainfo.source", "pk": 3400, "fields": {"orig_filename": "Schuecker_Joseph-E_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287", "author": "", "orig_id": 1412173}}, {"model": "metainfo.source", "pk": 3401, "fields": {"orig_filename": "Schuecker_Karl_1836_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287f.", "author": "", "orig_id": 1412174}}, {"model": "metainfo.source", "pk": 3402, "fields": {"orig_filename": "Schuecker_Zdenko_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 288", "author": "", "orig_id": 1412175}}, {"model": "metainfo.source", "pk": 3403, "fields": {"orig_filename": "Schuecking_Alfred_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 288f.", "author": "", "orig_id": 1412244}}, {"model": "metainfo.source", "pk": 3404, "fields": {"orig_filename": "Schuecktanz_Anton_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289", "author": "", "orig_id": 1412246}}, {"model": "metainfo.source", "pk": 3405, "fields": {"orig_filename": "Schuecktanz_Karl_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289", "author": "", "orig_id": 1412245}}, {"model": "metainfo.source", "pk": 3406, "fields": {"orig_filename": "Schueler_Friedrich-Julius_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289f.", "author": "", "orig_id": 1412247}}, {"model": "metainfo.source", "pk": 3407, "fields": {"orig_filename": "Schueler_Max-Joseph_1818_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 290", "author": "", "orig_id": 1412248}}, {"model": "metainfo.source", "pk": 3408, "fields": {"orig_filename": "Schueller_Franz_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 290f.", "author": "", "orig_id": 1412249}}, {"model": "metainfo.source", "pk": 3409, "fields": {"orig_filename": "Schueller_Maximilian_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291", "author": "", "orig_id": 1412251}}, {"model": "metainfo.source", "pk": 3410, "fields": {"orig_filename": "Schueller_Otto-Alois_1892_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291", "author": "", "orig_id": 1412250}}, {"model": "metainfo.source", "pk": 3411, "fields": {"orig_filename": "Schuenke_Robert_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291f.", "author": "", "orig_id": 1412252}}, {"model": "metainfo.source", "pk": 3412, "fields": {"orig_filename": "Schuerer-Waldheim_Anton_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 292f.", "author": "", "orig_id": 1412254}}, {"model": "metainfo.source", "pk": 3413, "fields": {"orig_filename": "Schuerer-Waldheim_Anton_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294", "author": "", "orig_id": 1412259}}, {"model": "metainfo.source", "pk": 3414, "fields": {"orig_filename": "Schuerer-Waldheim_Fritz_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 293f.", "author": "", "orig_id": 1412256}}, {"model": "metainfo.source", "pk": 3415, "fields": {"orig_filename": "Schuerer-Waldheim_Helena_1859_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 293", "author": "", "orig_id": 1412255}}, {"model": "metainfo.source", "pk": 3416, "fields": {"orig_filename": "Schuerer-Waldheim_Ludwig_1861_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 295", "author": "", "orig_id": 1412260}}, {"model": "metainfo.source", "pk": 3417, "fields": {"orig_filename": "Schuerer-Waldheim_Max_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294", "author": "", "orig_id": 1412257}}, {"model": "metainfo.source", "pk": 3418, "fields": {"orig_filename": "Schuerer-Waldheim_Rudolf_1832_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294f.", "author": "", "orig_id": 1412258}}, {"model": "metainfo.source", "pk": 3419, "fields": {"orig_filename": "Schuerer_Franz-De-Paula_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 292", "author": "", "orig_id": 1412253}}, {"model": "metainfo.source", "pk": 3420, "fields": {"orig_filename": "Schuerff_Hans_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 295f.", "author": "", "orig_id": 1412261}}, {"model": "metainfo.source", "pk": 3421, "fields": {"orig_filename": "Schuermayer_Ignaz-Heinrich_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 296", "author": "", "orig_id": 1412262}}, {"model": "metainfo.source", "pk": 3422, "fields": {"orig_filename": "Schuessler_Rudolf_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 296f.", "author": "", "orig_id": 1412263}}, {"model": "metainfo.source", "pk": 3423, "fields": {"orig_filename": "Schuetky_Fernande_1845_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412265}}, {"model": "metainfo.source", "pk": 3424, "fields": {"orig_filename": "Schuetky_Franz-Josef_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 297f.", "author": "", "orig_id": 1412264}}, {"model": "metainfo.source", "pk": 3425, "fields": {"orig_filename": "Schuetky_Richard_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412266}}, {"model": "metainfo.source", "pk": 3426, "fields": {"orig_filename": "Schreiber_Josef_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 195", "author": "", "orig_id": 1411414}}, {"model": "metainfo.source", "pk": 3427, "fields": {"orig_filename": "Schreiber_Josef_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 195f.", "author": "", "orig_id": 1411415}}, {"model": "metainfo.source", "pk": 3428, "fields": {"orig_filename": "Schreiber_Karl_1733_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 196", "author": "", "orig_id": 1411417}}, {"model": "metainfo.source", "pk": 3429, "fields": {"orig_filename": "Schreiber_Karl_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 197", "author": "", "orig_id": 1411418}}, {"model": "metainfo.source", "pk": 3430, "fields": {"orig_filename": "Schreiber_Moses_1762_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 197f.", "author": "", "orig_id": 1411419}}, {"model": "metainfo.source", "pk": 3431, "fields": {"orig_filename": "Schreiber_Simon_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 198", "author": "", "orig_id": 1411420}}, {"model": "metainfo.source", "pk": 3432, "fields": {"orig_filename": "Schreiblmayr_Petrus_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 200f.", "author": "", "orig_id": 1411491}}, {"model": "metainfo.source", "pk": 3433, "fields": {"orig_filename": "Schreier_Maximilian_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 201f.", "author": "", "orig_id": 1411492}}, {"model": "metainfo.source", "pk": 3434, "fields": {"orig_filename": "Schreier_Maximilian_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203", "author": "", "orig_id": 1411497}}, {"model": "metainfo.source", "pk": 3435, "fields": {"orig_filename": "Schreier_Otto_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 202", "author": "", "orig_id": 1411493}}, {"model": "metainfo.source", "pk": 3436, "fields": {"orig_filename": "Schreier_Schulim_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 202f.", "author": "", "orig_id": 1411496}}, {"model": "metainfo.source", "pk": 3437, "fields": {"orig_filename": "Schreier_Theodor_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203", "author": "", "orig_id": 1411498}}, {"model": "metainfo.source", "pk": 3438, "fields": {"orig_filename": "Schreier_Uri-Schrage-Feiwel-Halevi_1819_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203f.", "author": "", "orig_id": 1411499}}, {"model": "metainfo.source", "pk": 3439, "fields": {"orig_filename": "Schreiner_Abraham_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204", "author": "", "orig_id": 1411500}}, {"model": "metainfo.source", "pk": 3440, "fields": {"orig_filename": "Schreiner_Adolf_1823_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204", "author": "", "orig_id": 1411501}}, {"model": "metainfo.source", "pk": 3441, "fields": {"orig_filename": "Schreiner_Anton_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204f.", "author": "", "orig_id": 1411503}}, {"model": "metainfo.source", "pk": 3442, "fields": {"orig_filename": "Schreiner_Emerich_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 205f.", "author": "", "orig_id": 1411504}}, {"model": "metainfo.source", "pk": 3443, "fields": {"orig_filename": "Schreiner_Franz_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 206", "author": "", "orig_id": 1411506}}, {"model": "metainfo.source", "pk": 3444, "fields": {"orig_filename": "Schreiner_Franz_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 206f.", "author": "", "orig_id": 1411507}}, {"model": "metainfo.source", "pk": 3445, "fields": {"orig_filename": "Schreiner_Friedrich-Karl-Gustav_1863_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 205f.", "author": "", "orig_id": 1411505}}, {"model": "metainfo.source", "pk": 3446, "fields": {"orig_filename": "Schreiner_Gustav-Franz-Xav_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 208f.", "author": "", "orig_id": 1411510}}, {"model": "metainfo.source", "pk": 3447, "fields": {"orig_filename": "Schreiner_Gustav_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 207", "author": "", "orig_id": 1411508}}, {"model": "metainfo.source", "pk": 3448, "fields": {"orig_filename": "Schreiner_Gustav_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 207f.", "author": "", "orig_id": 1411509}}, {"model": "metainfo.source", "pk": 3449, "fields": {"orig_filename": "Schreiner_Jakob_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 209", "author": "", "orig_id": 1411511}}, {"model": "metainfo.source", "pk": 3450, "fields": {"orig_filename": "Schreiner_Johann-Nep_1766_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 209f.", "author": "", "orig_id": 1411512}}, {"model": "metainfo.source", "pk": 3451, "fields": {"orig_filename": "Schreiner_Josef-Johann-Nep_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 210", "author": "", "orig_id": 1411513}}, {"model": "metainfo.source", "pk": 3452, "fields": {"orig_filename": "Schreiner_Karl_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 210f.", "author": "", "orig_id": 1411514}}, {"model": "metainfo.source", "pk": 3453, "fields": {"orig_filename": "Schreiner_Martin-Mordekhai_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 211", "author": "", "orig_id": 1411588}}, {"model": "metainfo.source", "pk": 3454, "fields": {"orig_filename": "Schreiner_Moriz_1824_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 211f.", "author": "", "orig_id": 1411589}}, {"model": "metainfo.source", "pk": 3455, "fields": {"orig_filename": "Schreiner_Rupert_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 212f.", "author": "", "orig_id": 1411590}}, {"model": "metainfo.source", "pk": 3456, "fields": {"orig_filename": "Schreiter_Franz-Xav_1801_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213", "author": "", "orig_id": 1411592}}, {"model": "metainfo.source", "pk": 3457, "fields": {"orig_filename": "Schreiter_Franz_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213", "author": "", "orig_id": 1411591}}, {"model": "metainfo.source", "pk": 3458, "fields": {"orig_filename": "Schreitter-Schwarzenfeld_Adolf_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213f.", "author": "", "orig_id": 1411593}}, {"model": "metainfo.source", "pk": 3459, "fields": {"orig_filename": "Schreker_Franz_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 214f.", "author": "", "orig_id": 1411594}}, {"model": "metainfo.source", "pk": 3460, "fields": {"orig_filename": "Schrems_Johann_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 215", "author": "", "orig_id": 1411595}}, {"model": "metainfo.source", "pk": 3461, "fields": {"orig_filename": "Schrenck-Notzing-Egmating_Aloys-Josef_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 216", "author": "", "orig_id": 1411596}}, {"model": "metainfo.source", "pk": 3462, "fields": {"orig_filename": "Schrenk_Anton_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217", "author": "", "orig_id": 1411598}}, {"model": "metainfo.source", "pk": 3463, "fields": {"orig_filename": "Schrenk_Franz_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 216f.", "author": "", "orig_id": 1411597}}, {"model": "metainfo.source", "pk": 3464, "fields": {"orig_filename": "Schrenk_Wenzl_1849_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217", "author": "", "orig_id": 1411599}}, {"model": "metainfo.source", "pk": 3465, "fields": {"orig_filename": "Schrenzel_Moses_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217f.", "author": "", "orig_id": 1411600}}, {"model": "metainfo.source", "pk": 3466, "fields": {"orig_filename": "Schreter_Gustav-Adolph_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 218", "author": "", "orig_id": 1411601}}, {"model": "metainfo.source", "pk": 3467, "fields": {"orig_filename": "Schretter_Georg_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 218f.", "author": "", "orig_id": 1411602}}, {"model": "metainfo.source", "pk": 3468, "fields": {"orig_filename": "Schretter_Josef_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 219", "author": "", "orig_id": 1411603}}, {"model": "metainfo.source", "pk": 3469, "fields": {"orig_filename": "Schreuer_Hans_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 219f.", "author": "", "orig_id": 1411605}}, {"model": "metainfo.source", "pk": 3470, "fields": {"orig_filename": "Schreuer_Zdenko_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220", "author": "", "orig_id": 1411606}}, {"model": "metainfo.source", "pk": 3471, "fields": {"orig_filename": "Schreyber_Franz-Sal_1796_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220f.", "author": "", "orig_id": 1411608}}, {"model": "metainfo.source", "pk": 3472, "fields": {"orig_filename": "Schreyer_Adalbert_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411610}}, {"model": "metainfo.source", "pk": 3473, "fields": {"orig_filename": "Schreyer_Adalbert_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221f.", "author": "", "orig_id": 1411609}}, {"model": "metainfo.source", "pk": 3474, "fields": {"orig_filename": "Schreyer_Alois_1859_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411611}}, {"model": "metainfo.source", "pk": 3475, "fields": {"orig_filename": "Schreyer_Friedrich_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222", "author": "", "orig_id": 1411614}}, {"model": "metainfo.source", "pk": 3476, "fields": {"orig_filename": "Schreyer_Isaac_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222f.", "author": "", "orig_id": 1411680}}, {"model": "metainfo.source", "pk": 3477, "fields": {"orig_filename": "Schreyer_Marcell_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411682}}, {"model": "metainfo.source", "pk": 3478, "fields": {"orig_filename": "Schreyer_Renata_1897_1983.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411612}}, {"model": "metainfo.source", "pk": 3479, "fields": {"orig_filename": "Schreyer_Richard_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223f.", "author": "", "orig_id": 1411683}}, {"model": "metainfo.source", "pk": 3480, "fields": {"orig_filename": "Schreyvogel_Joseph_1768_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 224f.", "author": "", "orig_id": 1411684}}, {"model": "metainfo.source", "pk": 3481, "fields": {"orig_filename": "Schriefer_Wilhelm_1865_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 225", "author": "", "orig_id": 1411685}}, {"model": "metainfo.source", "pk": 3482, "fields": {"orig_filename": "Schroeckenfux_Carl_1847_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411690}}, {"model": "metainfo.source", "pk": 3483, "fields": {"orig_filename": "Schroeckenfux_Franz-Paul_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411689}}, {"model": "metainfo.source", "pk": 3484, "fields": {"orig_filename": "Schroeckenfux_Franz_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 225f.", "author": "", "orig_id": 1411688}}, {"model": "metainfo.source", "pk": 3485, "fields": {"orig_filename": "Schroeckenfux_Gottlieb_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226f.", "author": "", "orig_id": 1411692}}, {"model": "metainfo.source", "pk": 3486, "fields": {"orig_filename": "Schroeckenfux_Michael_1848_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411691}}, {"model": "metainfo.source", "pk": 3487, "fields": {"orig_filename": "Schroeckenstein_Franz-Xav_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 227", "author": "", "orig_id": 1411693}}, {"model": "metainfo.source", "pk": 3488, "fields": {"orig_filename": "Schroeckinger-Neudenberg_Julius_1813_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 228", "author": "", "orig_id": 1411695}}, {"model": "metainfo.source", "pk": 3489, "fields": {"orig_filename": "Schroeckinger_Carl-Johann-Franz_1798_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 227", "author": "", "orig_id": 1411694}}, {"model": "metainfo.source", "pk": 3490, "fields": {"orig_filename": "Schroeder_Auguste_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411771}}, {"model": "metainfo.source", "pk": 3491, "fields": {"orig_filename": "Schroeder_Eduard-August_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 229f.", "author": "", "orig_id": 1411697}}, {"model": "metainfo.source", "pk": 3492, "fields": {"orig_filename": "Schroeder_Elisabeth_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411770}}, {"model": "metainfo.source", "pk": 3493, "fields": {"orig_filename": "Schroeder_Heinrich_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230", "author": "", "orig_id": 1411698}}, {"model": "metainfo.source", "pk": 3494, "fields": {"orig_filename": "Schroeder_Johann_1869_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230", "author": "", "orig_id": 1411699}}, {"model": "metainfo.source", "pk": 3495, "fields": {"orig_filename": "Schroeder_Julius_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230f.", "author": "", "orig_id": 1411700}}, {"model": "metainfo.source", "pk": 3496, "fields": {"orig_filename": "Schroeder_Leopold_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 231f.", "author": "", "orig_id": 1411701}}, {"model": "metainfo.source", "pk": 3497, "fields": {"orig_filename": "Schroeder_Sophie_1781_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 232ff.", "author": "", "orig_id": 1411769}}, {"model": "metainfo.source", "pk": 3498, "fields": {"orig_filename": "Schroeder_Wilhelmine_1804_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 234f.", "author": "", "orig_id": 1411773}}, {"model": "metainfo.source", "pk": 3499, "fields": {"orig_filename": "Schroedinger_Rudolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 235", "author": "", "orig_id": 1411775}}, {"model": "metainfo.source", "pk": 3500, "fields": {"orig_filename": "Schroedl_Anton_1820_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 235f.", "author": "", "orig_id": 1411776}}, {"model": "metainfo.source", "pk": 3501, "fields": {"orig_filename": "Schroedl_Norbert-Michael_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 237f.", "author": "", "orig_id": 1411779}}, {"model": "metainfo.source", "pk": 3502, "fields": {"orig_filename": "Schroedl_Norbert_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236f.", "author": "", "orig_id": 1411778}}, {"model": "metainfo.source", "pk": 3503, "fields": {"orig_filename": "Schroeer_Arnold_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 238", "author": "", "orig_id": 1411780}}, {"model": "metainfo.source", "pk": 3504, "fields": {"orig_filename": "Schroeer_Karl-Julius_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 238f.", "author": "", "orig_id": 1411781}}, {"model": "metainfo.source", "pk": 3505, "fields": {"orig_filename": "Schroeer_Robert_1856_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411783}}, {"model": "metainfo.source", "pk": 3506, "fields": {"orig_filename": "Schroeer_Therese_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411784}}, {"model": "metainfo.source", "pk": 3507, "fields": {"orig_filename": "Schroeer_Tobias-Gottfried_1791_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240f.", "author": "", "orig_id": 1411785}}, {"model": "metainfo.source", "pk": 3508, "fields": {"orig_filename": "Schroell_Josef-Anton_1820_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 242", "author": "", "orig_id": 1411787}}, {"model": "metainfo.source", "pk": 3509, "fields": {"orig_filename": "Schroeter_Carl-Josef_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411863}}, {"model": "metainfo.source", "pk": 3510, "fields": {"orig_filename": "Schroeter_Ernst-Manfred_1880_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411864}}, {"model": "metainfo.source", "pk": 3511, "fields": {"orig_filename": "Schroeter_Johann-Heinrich-Friedrich_1738_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 242f.", "author": "", "orig_id": 1411788}}, {"model": "metainfo.source", "pk": 3512, "fields": {"orig_filename": "Schroeter_Moritz_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411792}}, {"model": "metainfo.source", "pk": 3513, "fields": {"orig_filename": "Schroeter_Moriz_1813_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243f.", "author": "", "orig_id": 1411791}}, {"model": "metainfo.source", "pk": 3514, "fields": {"orig_filename": "Schroetter-Kristelli_Alfred_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 245f.", "author": "", "orig_id": 1411869}}, {"model": "metainfo.source", "pk": 3515, "fields": {"orig_filename": "Schroetter-Kristelli_Antonie_1828_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 247", "author": "", "orig_id": 1411872}}, {"model": "metainfo.source", "pk": 3516, "fields": {"orig_filename": "Schroetter-Kristelli_Anton_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 246f.", "author": "", "orig_id": 1411871}}, {"model": "metainfo.source", "pk": 3517, "fields": {"orig_filename": "Schroetter-Kristelli_Hermann_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 247f.", "author": "", "orig_id": 1411873}}, {"model": "metainfo.source", "pk": 3518, "fields": {"orig_filename": "Schroetter-Kristelli_Leopold_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 248f.", "author": "", "orig_id": 1411874}}, {"model": "metainfo.source", "pk": 3519, "fields": {"orig_filename": "Schroetter_Bernhard_1772_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411865}}, {"model": "metainfo.source", "pk": 3520, "fields": {"orig_filename": "Schroetter_Hans_1891_1965.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 246", "author": "", "orig_id": 1411870}}, {"model": "metainfo.source", "pk": 3521, "fields": {"orig_filename": "Schroetter_Hugo_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244f.", "author": "", "orig_id": 1411866}}, {"model": "metainfo.source", "pk": 3522, "fields": {"orig_filename": "Schorisch_Robert_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 142f.", "author": "", "orig_id": 1411029}}, {"model": "metainfo.source", "pk": 3523, "fields": {"orig_filename": "Schornboeck_Alois_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 144", "author": "", "orig_id": 1411032}}, {"model": "metainfo.source", "pk": 3524, "fields": {"orig_filename": "Schornstein_Max_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 144f.", "author": "", "orig_id": 1411033}}, {"model": "metainfo.source", "pk": 3525, "fields": {"orig_filename": "Schorn_Johann_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 143", "author": "", "orig_id": 1411030}}, {"model": "metainfo.source", "pk": 3526, "fields": {"orig_filename": "Schorn_Josef_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 143f.", "author": "", "orig_id": 1411031}}, {"model": "metainfo.source", "pk": 3527, "fields": {"orig_filename": "Schorr_Anshel_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 145", "author": "", "orig_id": 1411034}}, {"model": "metainfo.source", "pk": 3528, "fields": {"orig_filename": "Schorr_Mayer_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 145f.", "author": "", "orig_id": 1411035}}, {"model": "metainfo.source", "pk": 3529, "fields": {"orig_filename": "Schorr_Moses_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 146f.", "author": "", "orig_id": 1411036}}, {"model": "metainfo.source", "pk": 3530, "fields": {"orig_filename": "Schorr_Naphtali-Mendel_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147", "author": "", "orig_id": 1411038}}, {"model": "metainfo.source", "pk": 3531, "fields": {"orig_filename": "Schorr_Osias-Heschel_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147", "author": "", "orig_id": 1411037}}, {"model": "metainfo.source", "pk": 3532, "fields": {"orig_filename": "Schor_Baruch_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 141", "author": "", "orig_id": 1411026}}, {"model": "metainfo.source", "pk": 3533, "fields": {"orig_filename": "Schosberger-Tornya_Heinrich_1833_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 148", "author": "", "orig_id": 1411040}}, {"model": "metainfo.source", "pk": 3534, "fields": {"orig_filename": "Schosberger-Tornya_Sigmund_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147f.", "author": "", "orig_id": 1411039}}, {"model": "metainfo.source", "pk": 3535, "fields": {"orig_filename": "Schosberger-Tornya_Simon-Wolf_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 148f.", "author": "", "orig_id": 1411041}}, {"model": "metainfo.source", "pk": 3536, "fields": {"orig_filename": "Schossel_Andras_1824_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 149", "author": "", "orig_id": 1411042}}, {"model": "metainfo.source", "pk": 3537, "fields": {"orig_filename": "Schosser_Anton_1801_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 149f.", "author": "", "orig_id": 1411043}}, {"model": "metainfo.source", "pk": 3538, "fields": {"orig_filename": "Schottky_Julius-Max_1797_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 153f.", "author": "", "orig_id": 1411122}}, {"model": "metainfo.source", "pk": 3539, "fields": {"orig_filename": "Schottlaender_Julius_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 154f.", "author": "", "orig_id": 1411123}}, {"model": "metainfo.source", "pk": 3540, "fields": {"orig_filename": "Schott_Anselm_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 150", "author": "", "orig_id": 1411044}}, {"model": "metainfo.source", "pk": 3541, "fields": {"orig_filename": "Schott_Anton_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 150f.", "author": "", "orig_id": 1411045}}, {"model": "metainfo.source", "pk": 3542, "fields": {"orig_filename": "Schott_Ferdinand_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 151", "author": "", "orig_id": 1411046}}, {"model": "metainfo.source", "pk": 3543, "fields": {"orig_filename": "Schott_Heinrich-Wilhelm_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 152f.", "author": "", "orig_id": 1411120}}, {"model": "metainfo.source", "pk": 3544, "fields": {"orig_filename": "Schott_Heinrich_1759_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 151f.", "author": "", "orig_id": 1411119}}, {"model": "metainfo.source", "pk": 3545, "fields": {"orig_filename": "Schouppe_Alfred_1812_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 155", "author": "", "orig_id": 1411124}}, {"model": "metainfo.source", "pk": 3546, "fields": {"orig_filename": "Schowanek_Johann-Karl-Andreas_1905_1964.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 156", "author": "", "orig_id": 1411126}}, {"model": "metainfo.source", "pk": 3547, "fields": {"orig_filename": "Schowanek_Johann_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 155f.", "author": "", "orig_id": 1411125}}, {"model": "metainfo.source", "pk": 3548, "fields": {"orig_filename": "Schrader_Clemens_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 156f.", "author": "", "orig_id": 1411127}}, {"model": "metainfo.source", "pk": 3549, "fields": {"orig_filename": "Schrader_Hans_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 157f.", "author": "", "orig_id": 1411128}}, {"model": "metainfo.source", "pk": 3550, "fields": {"orig_filename": "Schraffl_Joseph_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 158f.", "author": "", "orig_id": 1411130}}, {"model": "metainfo.source", "pk": 3551, "fields": {"orig_filename": "Schramek_Emilie_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164", "author": "", "orig_id": 1411140}}, {"model": "metainfo.source", "pk": 3552, "fields": {"orig_filename": "Schramek_Johann-Josef_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164f.", "author": "", "orig_id": 1411142}}, {"model": "metainfo.source", "pk": 3553, "fields": {"orig_filename": "Schramek_Josef_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 165", "author": "", "orig_id": 1411143}}, {"model": "metainfo.source", "pk": 3554, "fields": {"orig_filename": "Schramek_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164", "author": "", "orig_id": 1411141}}, {"model": "metainfo.source", "pk": 3555, "fields": {"orig_filename": "Schramek_Max_1879_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 165f.", "author": "", "orig_id": 1411144}}, {"model": "metainfo.source", "pk": 3556, "fields": {"orig_filename": "Schraml_Carl_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 166", "author": "", "orig_id": 1411213}}, {"model": "metainfo.source", "pk": 3557, "fields": {"orig_filename": "Schraml_Franz_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 166f.", "author": "", "orig_id": 1411214}}, {"model": "metainfo.source", "pk": 3558, "fields": {"orig_filename": "Schramm-Zittau_Rudolf_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 170f.", "author": "", "orig_id": 1411220}}, {"model": "metainfo.source", "pk": 3559, "fields": {"orig_filename": "Schrammel_Anton_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171", "author": "", "orig_id": 1411221}}, {"model": "metainfo.source", "pk": 3560, "fields": {"orig_filename": "Schrammel_Joseph_1852_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171f.", "author": "", "orig_id": 1411223}}, {"model": "metainfo.source", "pk": 3561, "fields": {"orig_filename": "Schramm_Anna_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 167f.", "author": "", "orig_id": 1411215}}, {"model": "metainfo.source", "pk": 3562, "fields": {"orig_filename": "Schramm_August_1907_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 168", "author": "", "orig_id": 1411216}}, {"model": "metainfo.source", "pk": 3563, "fields": {"orig_filename": "Schramm_Hilary-Paulin_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 168f.", "author": "", "orig_id": 1411217}}, {"model": "metainfo.source", "pk": 3564, "fields": {"orig_filename": "Schramm_Johann-Heinrich_1810_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 169", "author": "", "orig_id": 1411218}}, {"model": "metainfo.source", "pk": 3565, "fields": {"orig_filename": "Schramm_Julian_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 169f.", "author": "", "orig_id": 1411219}}, {"model": "metainfo.source", "pk": 3566, "fields": {"orig_filename": "Schram_Adolf_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 159", "author": "", "orig_id": 1411131}}, {"model": "metainfo.source", "pk": 3567, "fields": {"orig_filename": "Schram_Alois-Hans_1864_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 159f.", "author": "", "orig_id": 1411132}}, {"model": "metainfo.source", "pk": 3568, "fields": {"orig_filename": "Schram_August_1843_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 160", "author": "", "orig_id": 1411133}}, {"model": "metainfo.source", "pk": 3569, "fields": {"orig_filename": "Schram_Franz-Leopold-Matthias_1758_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 160f.", "author": "", "orig_id": 1411134}}, {"model": "metainfo.source", "pk": 3570, "fields": {"orig_filename": "Schram_Josef_1831_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 161", "author": "", "orig_id": 1411135}}, {"model": "metainfo.source", "pk": 3571, "fields": {"orig_filename": "Schram_Karl_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 161f.", "author": "", "orig_id": 1411136}}, {"model": "metainfo.source", "pk": 3572, "fields": {"orig_filename": "Schram_Robert-Gustav_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 162f.", "author": "", "orig_id": 1411137}}, {"model": "metainfo.source", "pk": 3573, "fields": {"orig_filename": "Schram_Stephan_1821_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 163", "author": "", "orig_id": 1411138}}, {"model": "metainfo.source", "pk": 3574, "fields": {"orig_filename": "Schram_Wilhelm-Karl_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 163f.", "author": "", "orig_id": 1411139}}, {"model": "metainfo.source", "pk": 3575, "fields": {"orig_filename": "Schrangl_Franz_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 173", "author": "", "orig_id": 1411224}}, {"model": "metainfo.source", "pk": 3576, "fields": {"orig_filename": "Schranil_Josef_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 173f.", "author": "", "orig_id": 1411225}}, {"model": "metainfo.source", "pk": 3577, "fields": {"orig_filename": "Schranil_Wenzel_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 174", "author": "", "orig_id": 1411226}}, {"model": "metainfo.source", "pk": 3578, "fields": {"orig_filename": "Schranka_Eduard-Maria_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 177", "author": "", "orig_id": 1411231}}, {"model": "metainfo.source", "pk": 3579, "fields": {"orig_filename": "Schrank_Franz-De-Paula_1747_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 174f.", "author": "", "orig_id": 1411227}}, {"model": "metainfo.source", "pk": 3580, "fields": {"orig_filename": "Schrank_Johann-Ferdinand_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 175f.", "author": "", "orig_id": 1411228}}, {"model": "metainfo.source", "pk": 3581, "fields": {"orig_filename": "Schrank_Josef_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 176", "author": "", "orig_id": 1411229}}, {"model": "metainfo.source", "pk": 3582, "fields": {"orig_filename": "Schrank_Ludwig_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 176f.", "author": "", "orig_id": 1411230}}, {"model": "metainfo.source", "pk": 3583, "fields": {"orig_filename": "Schrantz_Alfred_1867_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 177f.", "author": "", "orig_id": 1411232}}, {"model": "metainfo.source", "pk": 3584, "fields": {"orig_filename": "Schrantz_Johann_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411304}}, {"model": "metainfo.source", "pk": 3585, "fields": {"orig_filename": "Schrantz_Otto_1871_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411233}}, {"model": "metainfo.source", "pk": 3586, "fields": {"orig_filename": "Schrantz_Wilhelm_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411235}}, {"model": "metainfo.source", "pk": 3587, "fields": {"orig_filename": "Schrattenbach_Vinzenz-Joseph_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 180f.", "author": "", "orig_id": 1411308}}, {"model": "metainfo.source", "pk": 3588, "fields": {"orig_filename": "Schratt_Johann-Chrysostomus_1773_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 179", "author": "", "orig_id": 1411306}}, {"model": "metainfo.source", "pk": 3589, "fields": {"orig_filename": "Schratt_Johann_1803_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178f.", "author": "", "orig_id": 1411305}}, {"model": "metainfo.source", "pk": 3590, "fields": {"orig_filename": "Schratt_Katharina_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 179f.", "author": "", "orig_id": 1411307}}, {"model": "metainfo.source", "pk": 3591, "fields": {"orig_filename": "Schrauf_Albrecht_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 181f.", "author": "", "orig_id": 1411309}}, {"model": "metainfo.source", "pk": 3592, "fields": {"orig_filename": "Schrauf_Karl_1835_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 182f.", "author": "", "orig_id": 1411310}}, {"model": "metainfo.source", "pk": 3593, "fields": {"orig_filename": "Schreckenthal_Hannes_1873_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183", "author": "", "orig_id": 1411312}}, {"model": "metainfo.source", "pk": 3594, "fields": {"orig_filename": "Schrecker_Ignaz-Franz_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183f.", "author": "", "orig_id": 1411314}}, {"model": "metainfo.source", "pk": 3595, "fields": {"orig_filename": "Schreck_Adam_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183", "author": "", "orig_id": 1411311}}, {"model": "metainfo.source", "pk": 3596, "fields": {"orig_filename": "Schreder_Julius-Aloysius_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 184f.", "author": "", "orig_id": 1411316}}, {"model": "metainfo.source", "pk": 3597, "fields": {"orig_filename": "Schreder_Karl_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185", "author": "", "orig_id": 1411317}}, {"model": "metainfo.source", "pk": 3598, "fields": {"orig_filename": "Schreder_Rudolf_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185", "author": "", "orig_id": 1411318}}, {"model": "metainfo.source", "pk": 3599, "fields": {"orig_filename": "Schreiber-Krieger_Adele_1871_1957.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 196", "author": "", "orig_id": 1411416}}, {"model": "metainfo.source", "pk": 3600, "fields": {"orig_filename": "Schreibers_Joseph-Ludwig_1793_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 198f.", "author": "", "orig_id": 1411421}}, {"model": "metainfo.source", "pk": 3601, "fields": {"orig_filename": "Schreibers_Karl-Franz_1775_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 199f.", "author": "", "orig_id": 1411422}}, {"model": "metainfo.source", "pk": 3602, "fields": {"orig_filename": "Schreiber_Abraham-Samuel-Benjamin-Wolf_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185f.", "author": "", "orig_id": 1411319}}, {"model": "metainfo.source", "pk": 3603, "fields": {"orig_filename": "Schreiber_Adalbert_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191", "author": "", "orig_id": 1411405}}, {"model": "metainfo.source", "pk": 3604, "fields": {"orig_filename": "Schreiber_Adolf_1881_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 186", "author": "", "orig_id": 1411320}}, {"model": "metainfo.source", "pk": 3605, "fields": {"orig_filename": "Schreiber_Alex_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411403}}, {"model": "metainfo.source", "pk": 3606, "fields": {"orig_filename": "Schreiber_Alfred_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 186f.", "author": "", "orig_id": 1411321}}, {"model": "metainfo.source", "pk": 3607, "fields": {"orig_filename": "Schreiber_August_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 187", "author": "", "orig_id": 1411322}}, {"model": "metainfo.source", "pk": 3608, "fields": {"orig_filename": "Schreiber_Bernhard_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 187f.", "author": "", "orig_id": 1411323}}, {"model": "metainfo.source", "pk": 3609, "fields": {"orig_filename": "Schreiber_Clara_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 188", "author": "", "orig_id": 1411324}}, {"model": "metainfo.source", "pk": 3610, "fields": {"orig_filename": "Schreiber_David_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 188f.", "author": "", "orig_id": 1411325}}, {"model": "metainfo.source", "pk": 3611, "fields": {"orig_filename": "Schreiber_Egid_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 189", "author": "", "orig_id": 1411326}}, {"model": "metainfo.source", "pk": 3612, "fields": {"orig_filename": "Schreiber_Emanuel_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 189f.", "author": "", "orig_id": 1411327}}, {"model": "metainfo.source", "pk": 3613, "fields": {"orig_filename": "Schreiber_Franz_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411328}}, {"model": "metainfo.source", "pk": 3614, "fields": {"orig_filename": "Schreiber_Franz_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411402}}, {"model": "metainfo.source", "pk": 3615, "fields": {"orig_filename": "Schreiber_Franz_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190f.", "author": "", "orig_id": 1411404}}, {"model": "metainfo.source", "pk": 3616, "fields": {"orig_filename": "Schreiber_Friedrich_1879_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191", "author": "", "orig_id": 1411407}}, {"model": "metainfo.source", "pk": 3617, "fields": {"orig_filename": "Schreiber_Hans_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191f.", "author": "", "orig_id": 1411408}}, {"model": "metainfo.source", "pk": 3618, "fields": {"orig_filename": "Schreiber_Heinrich_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 192f.", "author": "", "orig_id": 1411409}}, {"model": "metainfo.source", "pk": 3619, "fields": {"orig_filename": "Schreiber_Johann-Max_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194", "author": "", "orig_id": 1411412}}, {"model": "metainfo.source", "pk": 3620, "fields": {"orig_filename": "Schreiber_Johann_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 193f.", "author": "", "orig_id": 1411410}}, {"model": "metainfo.source", "pk": 3621, "fields": {"orig_filename": "Schreiber_Johann_1845_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194", "author": "", "orig_id": 1411411}}, {"model": "metainfo.source", "pk": 3622, "fields": {"orig_filename": "Schreiber_Josef_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194f.", "author": "", "orig_id": 1411413}}, {"model": "metainfo.source", "pk": 3623, "fields": {"orig_filename": "Schoenthaler_Franz_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 95", "author": "", "orig_id": 1405890}}, {"model": "metainfo.source", "pk": 3624, "fields": {"orig_filename": "Schoenthaler_Jakob_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 95f.", "author": "", "orig_id": 1405891}}, {"model": "metainfo.source", "pk": 3625, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Franz-Simon_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 97", "author": "", "orig_id": 1405893}}, {"model": "metainfo.source", "pk": 3626, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Franz_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 96f.", "author": "", "orig_id": 1405892}}, {"model": "metainfo.source", "pk": 3627, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Paul_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 97f.", "author": "", "orig_id": 1405894}}, {"model": "metainfo.source", "pk": 3628, "fields": {"orig_filename": "Schoenwisner_Stephan_1738_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 98", "author": "", "orig_id": 1405896}}, {"model": "metainfo.source", "pk": 3629, "fields": {"orig_filename": "Schoen_Bruno_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 30f.", "author": "", "orig_id": 1405446}}, {"model": "metainfo.source", "pk": 3630, "fields": {"orig_filename": "Schoen_Eduard_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 31f.", "author": "", "orig_id": 1405447}}, {"model": "metainfo.source", "pk": 3631, "fields": {"orig_filename": "Schoen_Friedrich_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 32f.", "author": "", "orig_id": 1405448}}, {"model": "metainfo.source", "pk": 3632, "fields": {"orig_filename": "Schoen_Jacob_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 33", "author": "", "orig_id": 1405452}}, {"model": "metainfo.source", "pk": 3633, "fields": {"orig_filename": "Schoen_Johann-Bapt_1841_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 34f.", "author": "", "orig_id": 1405454}}, {"model": "metainfo.source", "pk": 3634, "fields": {"orig_filename": "Schoen_Johann-Carl_1805_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 35", "author": "", "orig_id": 1405455}}, {"model": "metainfo.source", "pk": 3635, "fields": {"orig_filename": "Schoen_Johann-Georg_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 35f.", "author": "", "orig_id": 1405456}}, {"model": "metainfo.source", "pk": 3636, "fields": {"orig_filename": "Schoen_Johann_1802_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 33f.", "author": "", "orig_id": 1405453}}, {"model": "metainfo.source", "pk": 3637, "fields": {"orig_filename": "Schoen_Josef_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 36f.", "author": "", "orig_id": 1405457}}, {"model": "metainfo.source", "pk": 3638, "fields": {"orig_filename": "Schoen_Josef_1809_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 37", "author": "", "orig_id": 1405458}}, {"model": "metainfo.source", "pk": 3639, "fields": {"orig_filename": "Schoen_Josef_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 37f.", "author": "", "orig_id": 1405459}}, {"model": "metainfo.source", "pk": 3640, "fields": {"orig_filename": "Schoen_Karl_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38", "author": "", "orig_id": 1405461}}, {"model": "metainfo.source", "pk": 3641, "fields": {"orig_filename": "Schoen_Lorenz_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38f.", "author": "", "orig_id": 1405462}}, {"model": "metainfo.source", "pk": 3642, "fields": {"orig_filename": "Schoen_Luise_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405463}}, {"model": "metainfo.source", "pk": 3643, "fields": {"orig_filename": "Schoen_Moritz_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405464}}, {"model": "metainfo.source", "pk": 3644, "fields": {"orig_filename": "Schoepf-Merei_Agoston_1805_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 105", "author": "", "orig_id": 1405959}}, {"model": "metainfo.source", "pk": 3645, "fields": {"orig_filename": "Schoepfer_Aemilian_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 105ff.", "author": "", "orig_id": 1405962}}, {"model": "metainfo.source", "pk": 3646, "fields": {"orig_filename": "Schoepfer_Franz-Xav_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 107", "author": "", "orig_id": 1405963}}, {"model": "metainfo.source", "pk": 3647, "fields": {"orig_filename": "Schoepfer_Friedrich-Anton_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 107f.", "author": "", "orig_id": 1405964}}, {"model": "metainfo.source", "pk": 3648, "fields": {"orig_filename": "Schoepfer_Heinrich_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 108", "author": "", "orig_id": 1405965}}, {"model": "metainfo.source", "pk": 3649, "fields": {"orig_filename": "Schoepfer_Jakob_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 108f.", "author": "", "orig_id": 1405966}}, {"model": "metainfo.source", "pk": 3650, "fields": {"orig_filename": "Schoepfer_Mathaeus-Michael_1739_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 109", "author": "", "orig_id": 1405967}}, {"model": "metainfo.source", "pk": 3651, "fields": {"orig_filename": "Schoepfleuthner_Anton_1845_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 109f.", "author": "", "orig_id": 1405968}}, {"model": "metainfo.source", "pk": 3652, "fields": {"orig_filename": "Schoepf_Albin-Franz_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 99", "author": "", "orig_id": 1405897}}, {"model": "metainfo.source", "pk": 3653, "fields": {"orig_filename": "Schoepf_Alois_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 102", "author": "", "orig_id": 1405954}}, {"model": "metainfo.source", "pk": 3654, "fields": {"orig_filename": "Schoepf_Bertrand_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 99f.", "author": "", "orig_id": 1405898}}, {"model": "metainfo.source", "pk": 3655, "fields": {"orig_filename": "Schoepf_Franz_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100", "author": "", "orig_id": 1405899}}, {"model": "metainfo.source", "pk": 3656, "fields": {"orig_filename": "Schoepf_Heinrich_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100", "author": "", "orig_id": 1442214}}, {"model": "metainfo.source", "pk": 3657, "fields": {"orig_filename": "Schoepf_Ignaz_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100f.", "author": "", "orig_id": 1405900}}, {"model": "metainfo.source", "pk": 3658, "fields": {"orig_filename": "Schoepf_Johann-Bapt_1824_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 101f.", "author": "", "orig_id": 1405902}}, {"model": "metainfo.source", "pk": 3659, "fields": {"orig_filename": "Schoepf_Johann_1811_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 101", "author": "", "orig_id": 1405901}}, {"model": "metainfo.source", "pk": 3660, "fields": {"orig_filename": "Schoepf_Josef_1745_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 102f.", "author": "", "orig_id": 1405955}}, {"model": "metainfo.source", "pk": 3661, "fields": {"orig_filename": "Schoepf_Josef_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 103", "author": "", "orig_id": 1405956}}, {"model": "metainfo.source", "pk": 3662, "fields": {"orig_filename": "Schoepf_Joseph-Anton_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 103f.", "author": "", "orig_id": 1405957}}, {"model": "metainfo.source", "pk": 3663, "fields": {"orig_filename": "Schoepf_Lorenz_1793_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104", "author": "", "orig_id": 1405960}}, {"model": "metainfo.source", "pk": 3664, "fields": {"orig_filename": "Schoepf_Peter-Paul_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104f.", "author": "", "orig_id": 1405958}}, {"model": "metainfo.source", "pk": 3665, "fields": {"orig_filename": "Schoepf_Peter_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104", "author": "", "orig_id": 1405961}}, {"model": "metainfo.source", "pk": 3666, "fields": {"orig_filename": "Schoepl_Gustav_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 110f.", "author": "", "orig_id": 1405969}}, {"model": "metainfo.source", "pk": 3667, "fields": {"orig_filename": "Schoeppe_Karl_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 111", "author": "", "orig_id": 1405970}}, {"model": "metainfo.source", "pk": 3668, "fields": {"orig_filename": "Schoeppe_Karl_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 111f.", "author": "", "orig_id": 1405971}}, {"model": "metainfo.source", "pk": 3669, "fields": {"orig_filename": "Schoeppl_Hugo_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 112", "author": "", "orig_id": 1405972}}, {"model": "metainfo.source", "pk": 3670, "fields": {"orig_filename": "Schoesler_Joseph-Johann_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 112f.", "author": "", "orig_id": 1405973}}, {"model": "metainfo.source", "pk": 3671, "fields": {"orig_filename": "Schofka_Octavius_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 113f.", "author": "", "orig_id": 1412239}}, {"model": "metainfo.source", "pk": 3672, "fields": {"orig_filename": "Schoibl_Leopold_1786_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 114", "author": "", "orig_id": 1412240}}, {"model": "metainfo.source", "pk": 3673, "fields": {"orig_filename": "Schoiswohl_Michael_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 114f.", "author": "", "orig_id": 1412241}}, {"model": "metainfo.source", "pk": 3674, "fields": {"orig_filename": "Scholcz_Szepesi-Rudolf_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 115", "author": "", "orig_id": 1412242}}, {"model": "metainfo.source", "pk": 3675, "fields": {"orig_filename": "Scholley_Otto_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 120", "author": "", "orig_id": 1412323}}, {"model": "metainfo.source", "pk": 3676, "fields": {"orig_filename": "Schollich_Ernst_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 120f.", "author": "", "orig_id": 1412324}}, {"model": "metainfo.source", "pk": 3677, "fields": {"orig_filename": "Scholl_Emil_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 115f.", "author": "", "orig_id": 1412243}}, {"model": "metainfo.source", "pk": 3678, "fields": {"orig_filename": "Scholl_Franz_1772_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 116f.", "author": "", "orig_id": 1412318}}, {"model": "metainfo.source", "pk": 3679, "fields": {"orig_filename": "Scholl_Georg_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 117", "author": "", "orig_id": 1412319}}, {"model": "metainfo.source", "pk": 3680, "fields": {"orig_filename": "Scholl_Heinrich_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118", "author": "", "orig_id": 1412320}}, {"model": "metainfo.source", "pk": 3681, "fields": {"orig_filename": "Scholl_Roland_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 119f.", "author": "", "orig_id": 1412322}}, {"model": "metainfo.source", "pk": 3682, "fields": {"orig_filename": "Scholtys_Hans-Heinz_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 121f.", "author": "", "orig_id": 1412325}}, {"model": "metainfo.source", "pk": 3683, "fields": {"orig_filename": "Scholtz-Matheocz_Johann-Emil_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123f.", "author": "", "orig_id": 1412331}}, {"model": "metainfo.source", "pk": 3684, "fields": {"orig_filename": "Scholtz_August_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122", "author": "", "orig_id": 1412326}}, {"model": "metainfo.source", "pk": 3685, "fields": {"orig_filename": "Scholtz_Friedrich_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122", "author": "", "orig_id": 1412327}}, {"model": "metainfo.source", "pk": 3686, "fields": {"orig_filename": "Scholtz_Gustav_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122f.", "author": "", "orig_id": 1412328}}, {"model": "metainfo.source", "pk": 3687, "fields": {"orig_filename": "Scholtz_Johan_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124", "author": "", "orig_id": 1412332}}, {"model": "metainfo.source", "pk": 3688, "fields": {"orig_filename": "Scholtz_Julius_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123", "author": "", "orig_id": 1412329}}, {"model": "metainfo.source", "pk": 3689, "fields": {"orig_filename": "Scholtz_Karl-August_1799_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123f.", "author": "", "orig_id": 1412330}}, {"model": "metainfo.source", "pk": 3690, "fields": {"orig_filename": "Scholz-Zelezny_Helene_1882_1974.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130", "author": "", "orig_id": 1412417}}, {"model": "metainfo.source", "pk": 3691, "fields": {"orig_filename": "Scholz_Adolf_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124", "author": "", "orig_id": 1412333}}, {"model": "metainfo.source", "pk": 3692, "fields": {"orig_filename": "Scholz_Alois_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124f.", "author": "", "orig_id": 1412334}}, {"model": "metainfo.source", "pk": 3693, "fields": {"orig_filename": "Scholz_Auguste_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 125", "author": "", "orig_id": 1412335}}, {"model": "metainfo.source", "pk": 3694, "fields": {"orig_filename": "Scholz_Benjamin_1786_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 125f.", "author": "", "orig_id": 1412336}}, {"model": "metainfo.source", "pk": 3695, "fields": {"orig_filename": "Scholz_Eduard_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 126f.", "author": "", "orig_id": 1412337}}, {"model": "metainfo.source", "pk": 3696, "fields": {"orig_filename": "Scholz_Erhard-Hugo_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412410}}, {"model": "metainfo.source", "pk": 3697, "fields": {"orig_filename": "Scholz_Heinrich-Karl_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127f.", "author": "", "orig_id": 1412412}}, {"model": "metainfo.source", "pk": 3698, "fields": {"orig_filename": "Scholz_Josefa_1765_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 129f.", "author": "", "orig_id": 1412414}}, {"model": "metainfo.source", "pk": 3699, "fields": {"orig_filename": "Scholz_Josef_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 128f.", "author": "", "orig_id": 1412413}}, {"model": "metainfo.source", "pk": 3700, "fields": {"orig_filename": "Scholz_Leopold_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 129", "author": "", "orig_id": 1412415}}, {"model": "metainfo.source", "pk": 3701, "fields": {"orig_filename": "Scholz_Marie_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130", "author": "", "orig_id": 1412416}}, {"model": "metainfo.source", "pk": 3702, "fields": {"orig_filename": "Scholz_Maximilian_1743_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130f.", "author": "", "orig_id": 1412418}}, {"model": "metainfo.source", "pk": 3703, "fields": {"orig_filename": "Scholz_Paul_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 131", "author": "", "orig_id": 1412419}}, {"model": "metainfo.source", "pk": 3704, "fields": {"orig_filename": "Scholz_Roman_1912_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 131f.", "author": "", "orig_id": 1412420}}, {"model": "metainfo.source", "pk": 3705, "fields": {"orig_filename": "Scholz_Wenzel_1787_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 132ff.", "author": "", "orig_id": 1412421}}, {"model": "metainfo.source", "pk": 3706, "fields": {"orig_filename": "Scholz_Wilhelm_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 134", "author": "", "orig_id": 1412422}}, {"model": "metainfo.source", "pk": 3707, "fields": {"orig_filename": "Scholz_Wilhelm_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 134f.", "author": "", "orig_id": 1412423}}, {"model": "metainfo.source", "pk": 3708, "fields": {"orig_filename": "Scholz_Wilhelm_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 135", "author": "", "orig_id": 1412424}}, {"model": "metainfo.source", "pk": 3709, "fields": {"orig_filename": "Schonka_Franz-Xav_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136", "author": "", "orig_id": 1412427}}, {"model": "metainfo.source", "pk": 3710, "fields": {"orig_filename": "Schonta-Seedank_Carl_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136", "author": "", "orig_id": 1412429}}, {"model": "metainfo.source", "pk": 3711, "fields": {"orig_filename": "Schonta-Seedank_Emmerich-Zeno_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136f.", "author": "", "orig_id": 1412428}}, {"model": "metainfo.source", "pk": 3712, "fields": {"orig_filename": "Schoof_Heinrich_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 137f.", "author": "", "orig_id": 1412430}}, {"model": "metainfo.source", "pk": 3713, "fields": {"orig_filename": "Schoosleitner_Franz_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 138f.", "author": "", "orig_id": 1412431}}, {"model": "metainfo.source", "pk": 3714, "fields": {"orig_filename": "Schopf_Franz_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139", "author": "", "orig_id": 1412432}}, {"model": "metainfo.source", "pk": 3715, "fields": {"orig_filename": "Schopf_Johann-Ev_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139", "author": "", "orig_id": 1412433}}, {"model": "metainfo.source", "pk": 3716, "fields": {"orig_filename": "Schopf_Wenzel-Gustav_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139f.", "author": "", "orig_id": 1411022}}, {"model": "metainfo.source", "pk": 3717, "fields": {"orig_filename": "Schopper_Klemens-Isidor_1878_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140", "author": "", "orig_id": 1411024}}, {"model": "metainfo.source", "pk": 3718, "fields": {"orig_filename": "Schopper_Valentin_1771_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140f.", "author": "", "orig_id": 1411025}}, {"model": "metainfo.source", "pk": 3719, "fields": {"orig_filename": "Schopp_Norbert_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140", "author": "", "orig_id": 1411023}}, {"model": "metainfo.source", "pk": 3720, "fields": {"orig_filename": "Schordan_Zsigmond_1794_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 141f.", "author": "", "orig_id": 1411027}}, {"model": "metainfo.source", "pk": 3721, "fields": {"orig_filename": "Schoreys_Frantisek-Josef_1872_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 142", "author": "", "orig_id": 1411028}}, {"model": "metainfo.source", "pk": 3722, "fields": {"orig_filename": "Schoenauer_Franz_1913_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 44", "author": "", "orig_id": 1405607}}, {"model": "metainfo.source", "pk": 3723, "fields": {"orig_filename": "Schoenauer_Johann-Michael_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45", "author": "", "orig_id": 1405620}}, {"model": "metainfo.source", "pk": 3724, "fields": {"orig_filename": "Schoenauer_Johann-Nep_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45", "author": "", "orig_id": 1405621}}, {"model": "metainfo.source", "pk": 3725, "fields": {"orig_filename": "Schoenauer_Johann_1778_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 44f.", "author": "", "orig_id": 1405608}}, {"model": "metainfo.source", "pk": 3726, "fields": {"orig_filename": "Schoenauer_Magdalena_1778_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45f.", "author": "", "orig_id": 1405622}}, {"model": "metainfo.source", "pk": 3727, "fields": {"orig_filename": "Schoenauer_Otto_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 46f.", "author": "", "orig_id": 1405623}}, {"model": "metainfo.source", "pk": 3728, "fields": {"orig_filename": "Schoenau_Johann-Nep_1753_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 43f.", "author": "", "orig_id": 1405605}}, {"model": "metainfo.source", "pk": 3729, "fields": {"orig_filename": "Schoenau_Johann_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 43", "author": "", "orig_id": 1405604}}, {"model": "metainfo.source", "pk": 3730, "fields": {"orig_filename": "Schoenbach_Anton-Emanuel_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 47f.", "author": "", "orig_id": 1405624}}, {"model": "metainfo.source", "pk": 3731, "fields": {"orig_filename": "Schoenbach_Josef_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48", "author": "", "orig_id": 1405625}}, {"model": "metainfo.source", "pk": 3732, "fields": {"orig_filename": "Schoenbauer_Vinzenz_1780_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48", "author": "", "orig_id": 1405626}}, {"model": "metainfo.source", "pk": 3733, "fields": {"orig_filename": "Schoenberger_Andreas-Corsinus_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49f.", "author": "", "orig_id": 1405630}}, {"model": "metainfo.source", "pk": 3734, "fields": {"orig_filename": "Schoenberger_Anton_1830_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 50", "author": "", "orig_id": 1405631}}, {"model": "metainfo.source", "pk": 3735, "fields": {"orig_filename": "Schoenberger_Bela_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 50f.", "author": "", "orig_id": 1405632}}, {"model": "metainfo.source", "pk": 3736, "fields": {"orig_filename": "Schoenberger_Bruno_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405633}}, {"model": "metainfo.source", "pk": 3737, "fields": {"orig_filename": "Schoenberger_Franz-Anton_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51f.", "author": "", "orig_id": 1405635}}, {"model": "metainfo.source", "pk": 3738, "fields": {"orig_filename": "Schoenberger_Hugo_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52", "author": "", "orig_id": 1405638}}, {"model": "metainfo.source", "pk": 3739, "fields": {"orig_filename": "Schoenberger_Hyazinth-Maria_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52f.", "author": "", "orig_id": 1405639}}, {"model": "metainfo.source", "pk": 3740, "fields": {"orig_filename": "Schoenberger_Lorenz-Adolf_1768_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 53", "author": "", "orig_id": 1405640}}, {"model": "metainfo.source", "pk": 3741, "fields": {"orig_filename": "Schoenberger_Richard_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52", "author": "", "orig_id": 1405636}}, {"model": "metainfo.source", "pk": 3742, "fields": {"orig_filename": "Schoenberger_Victor_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 53f.", "author": "", "orig_id": 1405641}}, {"model": "metainfo.source", "pk": 3743, "fields": {"orig_filename": "Schoenberg_Adolf_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405628}}, {"model": "metainfo.source", "pk": 3744, "fields": {"orig_filename": "Schoenberg_Johann-Nep_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48f.", "author": "", "orig_id": 1405627}}, {"model": "metainfo.source", "pk": 3745, "fields": {"orig_filename": "Schoenbichler_Carl-Hans_1920_1992.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55", "author": "", "orig_id": 1405755}}, {"model": "metainfo.source", "pk": 3746, "fields": {"orig_filename": "Schoenbichler_Johann-Bapt_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 54f.", "author": "", "orig_id": 1405642}}, {"model": "metainfo.source", "pk": 3747, "fields": {"orig_filename": "Schoenbichler_Johann-Emanuel_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55", "author": "", "orig_id": 1405644}}, {"model": "metainfo.source", "pk": 3748, "fields": {"orig_filename": "Schoenbichler_Karl_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55f.", "author": "", "orig_id": 1405756}}, {"model": "metainfo.source", "pk": 3749, "fields": {"orig_filename": "Schoenbichler_Philippine_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 54", "author": "", "orig_id": 1405643}}, {"model": "metainfo.source", "pk": 3750, "fields": {"orig_filename": "Schoenborn-Buchheim_Carl-Theodor_1790_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58f.", "author": "", "orig_id": 1405762}}, {"model": "metainfo.source", "pk": 3751, "fields": {"orig_filename": "Schoenborn_Adalbert-Josef_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 56", "author": "", "orig_id": 1405757}}, {"model": "metainfo.source", "pk": 3752, "fields": {"orig_filename": "Schoenborn_Franz-De-Paula_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 56f.", "author": "", "orig_id": 1405758}}, {"model": "metainfo.source", "pk": 3753, "fields": {"orig_filename": "Schoenborn_Friedrich_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 57f.", "author": "", "orig_id": 1405759}}, {"model": "metainfo.source", "pk": 3754, "fields": {"orig_filename": "Schoenborn_Johann_1864_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58", "author": "", "orig_id": 1405761}}, {"model": "metainfo.source", "pk": 3755, "fields": {"orig_filename": "Schoenborn_Karl_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58", "author": "", "orig_id": 1405760}}, {"model": "metainfo.source", "pk": 3756, "fields": {"orig_filename": "Schoenbrunner_Franz-Xav_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60", "author": "", "orig_id": 1405767}}, {"model": "metainfo.source", "pk": 3757, "fields": {"orig_filename": "Schoenbrunner_Ignaz-Johann_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59", "author": "", "orig_id": 1405764}}, {"model": "metainfo.source", "pk": 3758, "fields": {"orig_filename": "Schoenbrunner_Josef_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59f.", "author": "", "orig_id": 1405765}}, {"model": "metainfo.source", "pk": 3759, "fields": {"orig_filename": "Schoenbrunner_Karl_1832_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60", "author": "", "orig_id": 1405766}}, {"model": "metainfo.source", "pk": 3760, "fields": {"orig_filename": "Schoenbrunn_Hugo_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59", "author": "", "orig_id": 1405763}}, {"model": "metainfo.source", "pk": 3761, "fields": {"orig_filename": "Schoenburg-Hartenstein_Alexander_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60f.", "author": "", "orig_id": 1405768}}, {"model": "metainfo.source", "pk": 3762, "fields": {"orig_filename": "Schoenburg-Hartenstein_Alois_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 61f.", "author": "", "orig_id": 1405770}}, {"model": "metainfo.source", "pk": 3763, "fields": {"orig_filename": "Schoenburg-Hartenstein_Eduard_1787_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60f.", "author": "", "orig_id": 1405769}}, {"model": "metainfo.source", "pk": 3764, "fields": {"orig_filename": "Schoenburg-Hartenstein_Johannes_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 62f.", "author": "", "orig_id": 1405771}}, {"model": "metainfo.source", "pk": 3765, "fields": {"orig_filename": "Schoendorfer_Josef_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 63", "author": "", "orig_id": 1405772}}, {"model": "metainfo.source", "pk": 3766, "fields": {"orig_filename": "Schoenecker_Dionys_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64f.", "author": "", "orig_id": 1405776}}, {"model": "metainfo.source", "pk": 3767, "fields": {"orig_filename": "Schoenecker_Eduard_1885_1963.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 65", "author": "", "orig_id": 1405777}}, {"model": "metainfo.source", "pk": 3768, "fields": {"orig_filename": "Schoenefeldt_August_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 65f.", "author": "", "orig_id": 1405778}}, {"model": "metainfo.source", "pk": 3769, "fields": {"orig_filename": "Schoenerer_Alexandrine_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 66", "author": "", "orig_id": 1405780}}, {"model": "metainfo.source", "pk": 3770, "fields": {"orig_filename": "Schoenerer_Georg_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 66ff.", "author": "", "orig_id": 1405781}}, {"model": "metainfo.source", "pk": 3771, "fields": {"orig_filename": "Schoenerer_Mathias_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 68f.", "author": "", "orig_id": 1405782}}, {"model": "metainfo.source", "pk": 3772, "fields": {"orig_filename": "Schoenermark_Ludwig_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 69", "author": "", "orig_id": 1405783}}, {"model": "metainfo.source", "pk": 3773, "fields": {"orig_filename": "Schoeney_Lazarus_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 69f.", "author": "", "orig_id": 1405786}}, {"model": "metainfo.source", "pk": 3774, "fields": {"orig_filename": "Schoene_Hermann_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 63f.", "author": "", "orig_id": 1405773}}, {"model": "metainfo.source", "pk": 3775, "fields": {"orig_filename": "Schoene_Ludwig_1845_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64", "author": "", "orig_id": 1405774}}, {"model": "metainfo.source", "pk": 3776, "fields": {"orig_filename": "Schoene_Moric_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64", "author": "", "orig_id": 1405775}}, {"model": "metainfo.source", "pk": 3777, "fields": {"orig_filename": "Schoenfeldt_Karl_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405814}}, {"model": "metainfo.source", "pk": 3778, "fields": {"orig_filename": "Schoenfeldt_Luise_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 80", "author": "", "orig_id": 1405818}}, {"model": "metainfo.source", "pk": 3779, "fields": {"orig_filename": "Schoenfeldt_Maximilian_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405817}}, {"model": "metainfo.source", "pk": 3780, "fields": {"orig_filename": "Schoenfeldt_Rudolf_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405816}}, {"model": "metainfo.source", "pk": 3781, "fields": {"orig_filename": "Schoenfeld_Anton_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 70f.", "author": "", "orig_id": 1405788}}, {"model": "metainfo.source", "pk": 3782, "fields": {"orig_filename": "Schoenfeld_August_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71", "author": "", "orig_id": 1405790}}, {"model": "metainfo.source", "pk": 3783, "fields": {"orig_filename": "Schoenfeld_Baruch_1787_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71f.", "author": "", "orig_id": 1405791}}, {"model": "metainfo.source", "pk": 3784, "fields": {"orig_filename": "Schoenfeld_Constantin_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78f.", "author": "", "orig_id": 1405813}}, {"model": "metainfo.source", "pk": 3785, "fields": {"orig_filename": "Schoenfeld_Eduard_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 72f.", "author": "", "orig_id": 1405792}}, {"model": "metainfo.source", "pk": 3786, "fields": {"orig_filename": "Schoenfeld_Franz-Julius_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405804}}, {"model": "metainfo.source", "pk": 3787, "fields": {"orig_filename": "Schoenfeld_Heinrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 73", "author": "", "orig_id": 1405793}}, {"model": "metainfo.source", "pk": 3788, "fields": {"orig_filename": "Schoenfeld_Ignaz_1778_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 73f.", "author": "", "orig_id": 1405795}}, {"model": "metainfo.source", "pk": 3789, "fields": {"orig_filename": "Schoenfeld_Johann-Ferdinand_1750_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 74f.", "author": "", "orig_id": 1405798}}, {"model": "metainfo.source", "pk": 3790, "fields": {"orig_filename": "Schoenfeld_Josef_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 75f.", "author": "", "orig_id": 1405800}}, {"model": "metainfo.source", "pk": 3791, "fields": {"orig_filename": "Schoenfeld_Karl-Emil_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 76", "author": "", "orig_id": 1405801}}, {"model": "metainfo.source", "pk": 3792, "fields": {"orig_filename": "Schoenfeld_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405806}}, {"model": "metainfo.source", "pk": 3793, "fields": {"orig_filename": "Schoenfeld_Louise_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 76f.", "author": "", "orig_id": 1405802}}, {"model": "metainfo.source", "pk": 3794, "fields": {"orig_filename": "Schoenfeld_Peter_1784_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405807}}, {"model": "metainfo.source", "pk": 3795, "fields": {"orig_filename": "Schoenfeld_Rudolf_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78", "author": "", "orig_id": 1405809}}, {"model": "metainfo.source", "pk": 3796, "fields": {"orig_filename": "Schoenfeld_Theodor_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78f.", "author": "", "orig_id": 1405811}}, {"model": "metainfo.source", "pk": 3797, "fields": {"orig_filename": "Schoenfeld_Wenzel_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71", "author": "", "orig_id": 1419669}}, {"model": "metainfo.source", "pk": 3798, "fields": {"orig_filename": "Schoenhaber-Wengerot_Heinrich_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 80f.", "author": "", "orig_id": 1405819}}, {"model": "metainfo.source", "pk": 3799, "fields": {"orig_filename": "Schoenhals_Georg_1784_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 82", "author": "", "orig_id": 1405821}}, {"model": "metainfo.source", "pk": 3800, "fields": {"orig_filename": "Schoenhals_Karl_1788_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 81f.", "author": "", "orig_id": 1405820}}, {"model": "metainfo.source", "pk": 3801, "fields": {"orig_filename": "Schoenherr_David_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 82f.", "author": "", "orig_id": 1405822}}, {"model": "metainfo.source", "pk": 3802, "fields": {"orig_filename": "Schoenherr_Gyula_1864_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 83f.", "author": "", "orig_id": 1405824}}, {"model": "metainfo.source", "pk": 3803, "fields": {"orig_filename": "Schoenherr_Joseph_1809_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 84f.", "author": "", "orig_id": 1405826}}, {"model": "metainfo.source", "pk": 3804, "fields": {"orig_filename": "Schoenherr_Karl_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 85f.", "author": "", "orig_id": 1405827}}, {"model": "metainfo.source", "pk": 3805, "fields": {"orig_filename": "Schoenhoff_Leopold_1853_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 87", "author": "", "orig_id": 1405829}}, {"model": "metainfo.source", "pk": 3806, "fields": {"orig_filename": "Schoenhof_Egon_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 86f.", "author": "", "orig_id": 1405828}}, {"model": "metainfo.source", "pk": 3807, "fields": {"orig_filename": "Schoenholz_Friedrich-Anton_1801_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 87f.", "author": "", "orig_id": 1405719}}, {"model": "metainfo.source", "pk": 3808, "fields": {"orig_filename": "Schoeninger_Franz-Xav-Leopold_1790_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 89", "author": "", "orig_id": 1405721}}, {"model": "metainfo.source", "pk": 3809, "fields": {"orig_filename": "Schoeninger_Franz-Xav_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 88f.", "author": "", "orig_id": 1405720}}, {"model": "metainfo.source", "pk": 3810, "fields": {"orig_filename": "Schoenlaub_Fidelis_1805_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 89f.", "author": "", "orig_id": 1405722}}, {"model": "metainfo.source", "pk": 3811, "fields": {"orig_filename": "Schoenmann_Josef_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 90", "author": "", "orig_id": 1405723}}, {"model": "metainfo.source", "pk": 3812, "fields": {"orig_filename": "Schoenn_Alois_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 90f.", "author": "", "orig_id": 1405724}}, {"model": "metainfo.source", "pk": 3813, "fields": {"orig_filename": "Schoenn_Ricka_1867_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 91", "author": "", "orig_id": 1405725}}, {"model": "metainfo.source", "pk": 3814, "fields": {"orig_filename": "Schoenowsky-Schoenwies_Adalbert_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 91f.", "author": "", "orig_id": 1405726}}, {"model": "metainfo.source", "pk": 3815, "fields": {"orig_filename": "Schoenowsky-Schoenwies_Maximilian_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 92f.", "author": "", "orig_id": 1405727}}, {"model": "metainfo.source", "pk": 3816, "fields": {"orig_filename": "Schoenpflug_Fritz_1900_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 93", "author": "", "orig_id": 1405886}}, {"model": "metainfo.source", "pk": 3817, "fields": {"orig_filename": "Schoenschuetz_Josef_1788_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94", "author": "", "orig_id": 1405887}}, {"model": "metainfo.source", "pk": 3818, "fields": {"orig_filename": "Schoensteiner_Friedrich_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94f.", "author": "", "orig_id": 1405889}}, {"model": "metainfo.source", "pk": 3819, "fields": {"orig_filename": "Schoenstein_Karl_1796_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94", "author": "", "orig_id": 1405888}}, {"model": "metainfo.source", "pk": 3820, "fields": {"orig_filename": "Schnitzer_Casimir_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406", "author": "", "orig_id": 1406891}}, {"model": "metainfo.source", "pk": 3821, "fields": {"orig_filename": "Schnitzer_Ignaz_1839_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406f.", "author": "", "orig_id": 1406892}}, {"model": "metainfo.source", "pk": 3822, "fields": {"orig_filename": "Schnitzer_Manuel_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 407", "author": "", "orig_id": 1407292}}, {"model": "metainfo.source", "pk": 3823, "fields": {"orig_filename": "Schnitzler_Arthur_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 407ff.", "author": "", "orig_id": 1406893}}, {"model": "metainfo.source", "pk": 3824, "fields": {"orig_filename": "Schnitzler_Ferdinand_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 409f.", "author": "", "orig_id": 1406894}}, {"model": "metainfo.source", "pk": 3825, "fields": {"orig_filename": "Schnitzler_Johann_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 410f.", "author": "", "orig_id": 1406895}}, {"model": "metainfo.source", "pk": 3826, "fields": {"orig_filename": "Schnopfhagen_Emil_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 412", "author": "", "orig_id": 1406897}}, {"model": "metainfo.source", "pk": 3827, "fields": {"orig_filename": "Schnopfhagen_Franz_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 412f.", "author": "", "orig_id": 1406898}}, {"model": "metainfo.source", "pk": 3828, "fields": {"orig_filename": "Schnopfhagen_Hans_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 413f.", "author": "", "orig_id": 1406899}}, {"model": "metainfo.source", "pk": 3829, "fields": {"orig_filename": "Schnopfhagen_Hans_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 414", "author": "", "orig_id": 1406900}}, {"model": "metainfo.source", "pk": 3830, "fields": {"orig_filename": "Schnorr-Carolsfeld_Eduard_1790_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 415", "author": "", "orig_id": 1406902}}, {"model": "metainfo.source", "pk": 3831, "fields": {"orig_filename": "Schnorr-Carolsfeld_Julius-Veit-Hans_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 414f.", "author": "", "orig_id": 1406901}}, {"model": "metainfo.source", "pk": 3832, "fields": {"orig_filename": "Schnorr-Carolsfeld_Karl_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416", "author": "", "orig_id": 1406905}}, {"model": "metainfo.source", "pk": 3833, "fields": {"orig_filename": "Schnorr-Carolsfeld_Ludwig-Ferdinand_1788_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416", "author": "", "orig_id": 1406904}}, {"model": "metainfo.source", "pk": 3834, "fields": {"orig_filename": "Schnorr-Carolsfeld_Ludwig_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 415", "author": "", "orig_id": 1406903}}, {"model": "metainfo.source", "pk": 3835, "fields": {"orig_filename": "Schnuer-Peplowski_Stanislaw_1859_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416f.", "author": "", "orig_id": 1406906}}, {"model": "metainfo.source", "pk": 3836, "fields": {"orig_filename": "Schnuerer_Franz_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 417f.", "author": "", "orig_id": 1406907}}, {"model": "metainfo.source", "pk": 3837, "fields": {"orig_filename": "Schnuerer_Josef_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 418", "author": "", "orig_id": 1406908}}, {"model": "metainfo.source", "pk": 3838, "fields": {"orig_filename": "Schnuerer_Maria-Josefa_1889_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 418f.", "author": "", "orig_id": 1406909}}, {"model": "metainfo.source", "pk": 3839, "fields": {"orig_filename": "Schnur_David_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419", "author": "", "orig_id": 1406910}}, {"model": "metainfo.source", "pk": 3840, "fields": {"orig_filename": "Schnur_Harry-C_1907_1979.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419", "author": "", "orig_id": 1406911}}, {"model": "metainfo.source", "pk": 3841, "fields": {"orig_filename": "Schoberlechner_Caecilia_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427", "author": "", "orig_id": 1406924}}, {"model": "metainfo.source", "pk": 3842, "fields": {"orig_filename": "Schoberlechner_Franz-De-Paula-Jakob_1797_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 426f.", "author": "", "orig_id": 1406921}}, {"model": "metainfo.source", "pk": 3843, "fields": {"orig_filename": "Schoberlechner_Johann-Karl_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427", "author": "", "orig_id": 1406923}}, {"model": "metainfo.source", "pk": 3844, "fields": {"orig_filename": "Schoberlechner_Sophie_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427f.", "author": "", "orig_id": 1406925}}, {"model": "metainfo.source", "pk": 3845, "fields": {"orig_filename": "Schobert_Ernst_1893_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 428", "author": "", "orig_id": 1406926}}, {"model": "metainfo.source", "pk": 3846, "fields": {"orig_filename": "Schober_Franz_1796_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 420f.", "author": "", "orig_id": 1406913}}, {"model": "metainfo.source", "pk": 3847, "fields": {"orig_filename": "Schober_Franz_1911_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 421", "author": "", "orig_id": 1406914}}, {"model": "metainfo.source", "pk": 3848, "fields": {"orig_filename": "Schober_Ildefons_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 421f.", "author": "", "orig_id": 1406915}}, {"model": "metainfo.source", "pk": 3849, "fields": {"orig_filename": "Schober_Johann-Bapt_1783_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 422f.", "author": "", "orig_id": 1406916}}, {"model": "metainfo.source", "pk": 3850, "fields": {"orig_filename": "Schober_Johannes_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 423ff.", "author": "", "orig_id": 1406918}}, {"model": "metainfo.source", "pk": 3851, "fields": {"orig_filename": "Schober_Johann_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 423", "author": "", "orig_id": 1406917}}, {"model": "metainfo.source", "pk": 3852, "fields": {"orig_filename": "Schober_Karl-Johann_1844_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 425f.", "author": "", "orig_id": 1406920}}, {"model": "metainfo.source", "pk": 3853, "fields": {"orig_filename": "Schober_Karl_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 425", "author": "", "orig_id": 1406919}}, {"model": "metainfo.source", "pk": 3854, "fields": {"orig_filename": "Schoblik_Friedrich_1901_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1", "author": "", "orig_id": 1405373}}, {"model": "metainfo.source", "pk": 3855, "fields": {"orig_filename": "Schobloch_Anton_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1", "author": "", "orig_id": 1405374}}, {"model": "metainfo.source", "pk": 3856, "fields": {"orig_filename": "Schock_Joseph_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1f.", "author": "", "orig_id": 1405375}}, {"model": "metainfo.source", "pk": 3857, "fields": {"orig_filename": "Schodel_Rozalia_1811_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 2", "author": "", "orig_id": 1405376}}, {"model": "metainfo.source", "pk": 3858, "fields": {"orig_filename": "Schoderboeck_Margaretha_1887_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 3", "author": "", "orig_id": 1405378}}, {"model": "metainfo.source", "pk": 3859, "fields": {"orig_filename": "Schoder_Joseph_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 2f.", "author": "", "orig_id": 1405377}}, {"model": "metainfo.source", "pk": 3860, "fields": {"orig_filename": "Schodterer_Engelbert_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 3f.", "author": "", "orig_id": 1405379}}, {"model": "metainfo.source", "pk": 3861, "fields": {"orig_filename": "Schodterer_Robert-Franz_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 4", "author": "", "orig_id": 1405380}}, {"model": "metainfo.source", "pk": 3862, "fields": {"orig_filename": "Schoebel_Emmanuel-Johann_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 4f.", "author": "", "orig_id": 1405381}}, {"model": "metainfo.source", "pk": 3863, "fields": {"orig_filename": "Schoebel_Johann-Paul_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5", "author": "", "orig_id": 1405382}}, {"model": "metainfo.source", "pk": 3864, "fields": {"orig_filename": "Schoeberl_Franz_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5", "author": "", "orig_id": 1405383}}, {"model": "metainfo.source", "pk": 3865, "fields": {"orig_filename": "Schoeberl_Mathias_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5f.", "author": "", "orig_id": 1405384}}, {"model": "metainfo.source", "pk": 3866, "fields": {"orig_filename": "Schoebl_Franz_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 6", "author": "", "orig_id": 1405385}}, {"model": "metainfo.source", "pk": 3867, "fields": {"orig_filename": "Schoebl_Joseph_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 6f.", "author": "", "orig_id": 1405386}}, {"model": "metainfo.source", "pk": 3868, "fields": {"orig_filename": "Schoebl_Otto_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 7f.", "author": "", "orig_id": 1405387}}, {"model": "metainfo.source", "pk": 3869, "fields": {"orig_filename": "Schoedlberger_Johann-Nepomuk_1779_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 8f.", "author": "", "orig_id": 1405391}}, {"model": "metainfo.source", "pk": 3870, "fields": {"orig_filename": "Schoedler_Franz_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 9", "author": "", "orig_id": 1405392}}, {"model": "metainfo.source", "pk": 3871, "fields": {"orig_filename": "Schoedl_Max_1834_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 8", "author": "", "orig_id": 1405390}}, {"model": "metainfo.source", "pk": 3872, "fields": {"orig_filename": "Schoefer_Eugen_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 9f.", "author": "", "orig_id": 1405393}}, {"model": "metainfo.source", "pk": 3873, "fields": {"orig_filename": "Schoefer_Johann_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 10", "author": "", "orig_id": 1405394}}, {"model": "metainfo.source", "pk": 3874, "fields": {"orig_filename": "Schoefer_Robert_1926_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1419707}}, {"model": "metainfo.source", "pk": 3875, "fields": {"orig_filename": "Schoeffel_Johann_1754_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 10f.", "author": "", "orig_id": 1405395}}, {"model": "metainfo.source", "pk": 3876, "fields": {"orig_filename": "Schoeffel_Joseph_1832_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 11f.", "author": "", "orig_id": 1405396}}, {"model": "metainfo.source", "pk": 3877, "fields": {"orig_filename": "Schoeffel_Rudolf_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 12f.", "author": "", "orig_id": 1405397}}, {"model": "metainfo.source", "pk": 3878, "fields": {"orig_filename": "Schoeffl_Josef_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 13", "author": "", "orig_id": 1405399}}, {"model": "metainfo.source", "pk": 3879, "fields": {"orig_filename": "Schoeffmann_Maria_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 13f.", "author": "", "orig_id": 1405400}}, {"model": "metainfo.source", "pk": 3880, "fields": {"orig_filename": "Schoefmann_Karl_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 14f.", "author": "", "orig_id": 1405402}}, {"model": "metainfo.source", "pk": 3881, "fields": {"orig_filename": "Schoelhammer-Schoelhaim_Johann_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 15", "author": "", "orig_id": 1405403}}, {"model": "metainfo.source", "pk": 3882, "fields": {"orig_filename": "Schoeller_Adolf-Philipp_1832_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405439}}, {"model": "metainfo.source", "pk": 3883, "fields": {"orig_filename": "Schoeller_Alexander_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 18f.", "author": "", "orig_id": 1405409}}, {"model": "metainfo.source", "pk": 3884, "fields": {"orig_filename": "Schoeller_Eduard_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405415}}, {"model": "metainfo.source", "pk": 3885, "fields": {"orig_filename": "Schoeller_Ferdinand_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 19f.", "author": "", "orig_id": 1405410}}, {"model": "metainfo.source", "pk": 3886, "fields": {"orig_filename": "Schoeller_Friedrich_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405441}}, {"model": "metainfo.source", "pk": 3887, "fields": {"orig_filename": "Schoeller_Friedrich_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405413}}, {"model": "metainfo.source", "pk": 3888, "fields": {"orig_filename": "Schoeller_Gustav_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405412}}, {"model": "metainfo.source", "pk": 3889, "fields": {"orig_filename": "Schoeller_Hans_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21f.", "author": "", "orig_id": 1405416}}, {"model": "metainfo.source", "pk": 3890, "fields": {"orig_filename": "Schoeller_Johann-Christian_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 22", "author": "", "orig_id": 1405417}}, {"model": "metainfo.source", "pk": 3891, "fields": {"orig_filename": "Schoeller_Joseph_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 22f.", "author": "", "orig_id": 1405418}}, {"model": "metainfo.source", "pk": 3892, "fields": {"orig_filename": "Schoeller_Paul-Eduard_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 23f.", "author": "", "orig_id": 1405419}}, {"model": "metainfo.source", "pk": 3893, "fields": {"orig_filename": "Schoeller_Pauline_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 24", "author": "", "orig_id": 1405430}}, {"model": "metainfo.source", "pk": 3894, "fields": {"orig_filename": "Schoeller_Philipp-Alois_1892_1977.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25f.", "author": "", "orig_id": 1405433}}, {"model": "metainfo.source", "pk": 3895, "fields": {"orig_filename": "Schoeller_Philipp-Johann_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25", "author": "", "orig_id": 1405431}}, {"model": "metainfo.source", "pk": 3896, "fields": {"orig_filename": "Schoeller_Philipp-Joseph_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25f.", "author": "", "orig_id": 1405432}}, {"model": "metainfo.source", "pk": 3897, "fields": {"orig_filename": "Schoeller_Philipp-Wilhelm_1797_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 26", "author": "", "orig_id": 1405434}}, {"model": "metainfo.source", "pk": 3898, "fields": {"orig_filename": "Schoeller_Philipp-Wilhelm_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 26f.", "author": "", "orig_id": 1405436}}, {"model": "metainfo.source", "pk": 3899, "fields": {"orig_filename": "Schoeller_Richard_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 27f.", "author": "", "orig_id": 1405437}}, {"model": "metainfo.source", "pk": 3900, "fields": {"orig_filename": "Schoeller_Robert_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405438}}, {"model": "metainfo.source", "pk": 3901, "fields": {"orig_filename": "Schoellnast_Franz_1775_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28f.", "author": "", "orig_id": 1405442}}, {"model": "metainfo.source", "pk": 3902, "fields": {"orig_filename": "Schoellnast_Johann-Bapt_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 29", "author": "", "orig_id": 1405443}}, {"model": "metainfo.source", "pk": 3903, "fields": {"orig_filename": "Schoell_Adolf_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 15f.", "author": "", "orig_id": 1405404}}, {"model": "metainfo.source", "pk": 3904, "fields": {"orig_filename": "Schoell_August_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16f.", "author": "", "orig_id": 1405407}}, {"model": "metainfo.source", "pk": 3905, "fields": {"orig_filename": "Schoell_Fritz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16", "author": "", "orig_id": 1405406}}, {"model": "metainfo.source", "pk": 3906, "fields": {"orig_filename": "Schoell_Jakob-Friedrich_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 17f.", "author": "", "orig_id": 1405408}}, {"model": "metainfo.source", "pk": 3907, "fields": {"orig_filename": "Schoell_Rudolf_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16", "author": "", "orig_id": 1405405}}, {"model": "metainfo.source", "pk": 3908, "fields": {"orig_filename": "Schoelzig_Amandus_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 29f.", "author": "", "orig_id": 1405444}}, {"model": "metainfo.source", "pk": 3909, "fields": {"orig_filename": "Schoen-Liebingen_Josef_1797_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405466}}, {"model": "metainfo.source", "pk": 3910, "fields": {"orig_filename": "Schoen-Liebingen_Ludwig_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40", "author": "", "orig_id": 1405363}}, {"model": "metainfo.source", "pk": 3911, "fields": {"orig_filename": "Schoen-Liebingen_Robert_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39f.", "author": "", "orig_id": 1405465}}, {"model": "metainfo.source", "pk": 3912, "fields": {"orig_filename": "Schoenach_Alois_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40", "author": "", "orig_id": 1405364}}, {"model": "metainfo.source", "pk": 3913, "fields": {"orig_filename": "Schoenach_Hugo_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40f.", "author": "", "orig_id": 1405365}}, {"model": "metainfo.source", "pk": 3914, "fields": {"orig_filename": "Schoenach_Ludwig_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 41", "author": "", "orig_id": 1405366}}, {"model": "metainfo.source", "pk": 3915, "fields": {"orig_filename": "Schoenaich_Franz-Xaver_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 41f.", "author": "", "orig_id": 1405367}}, {"model": "metainfo.source", "pk": 3916, "fields": {"orig_filename": "Schoenaich_Gustav_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 42f.", "author": "", "orig_id": 1405679}}, {"model": "metainfo.source", "pk": 3917, "fields": {"orig_filename": "Schnack-Herbosegg_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 356f.", "author": "", "orig_id": 1406642}}, {"model": "metainfo.source", "pk": 3918, "fields": {"orig_filename": "Schnaitmann_Thomas_1796_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 1406643}}, {"model": "metainfo.source", "pk": 3919, "fields": {"orig_filename": "Schnapper-Wimsbach_Moritz_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358f.", "author": "", "orig_id": 1406648}}, {"model": "metainfo.source", "pk": 3920, "fields": {"orig_filename": "Schnapper_Anton_1790_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 1406644}}, {"model": "metainfo.source", "pk": 3921, "fields": {"orig_filename": "Schnapper_Ber_1906_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357f.", "author": "", "orig_id": 1406645}}, {"model": "metainfo.source", "pk": 3922, "fields": {"orig_filename": "Schnapper_Maria_1800_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 2096507}}, {"model": "metainfo.source", "pk": 3923, "fields": {"orig_filename": "Schnapper_Max_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358", "author": "", "orig_id": 1406646}}, {"model": "metainfo.source", "pk": 3924, "fields": {"orig_filename": "Schnapper_Mayer-Arthur_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358", "author": "", "orig_id": 1406647}}, {"model": "metainfo.source", "pk": 3925, "fields": {"orig_filename": "Schnarf_Karl_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 359", "author": "", "orig_id": 1406649}}, {"model": "metainfo.source", "pk": 3926, "fields": {"orig_filename": "Schnattinger_Friedrich-Alexander_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406650}}, {"model": "metainfo.source", "pk": 3927, "fields": {"orig_filename": "Schnaubelt_Heinrich_1814_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406651}}, {"model": "metainfo.source", "pk": 3928, "fields": {"orig_filename": "Schnayder_Jozef_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406652}}, {"model": "metainfo.source", "pk": 3929, "fields": {"orig_filename": "Schneck_Karl_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361", "author": "", "orig_id": 1406653}}, {"model": "metainfo.source", "pk": 3930, "fields": {"orig_filename": "Schneeberger_Franz-Julius_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361f.", "author": "", "orig_id": 1406655}}, {"model": "metainfo.source", "pk": 3931, "fields": {"orig_filename": "Schneeberger_Konrad_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 362f.", "author": "", "orig_id": 1406657}}, {"model": "metainfo.source", "pk": 3932, "fields": {"orig_filename": "Schneedorfer_Leo_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 363", "author": "", "orig_id": 1406658}}, {"model": "metainfo.source", "pk": 3933, "fields": {"orig_filename": "Schneefuss_Friedrich_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 363f.", "author": "", "orig_id": 1406659}}, {"model": "metainfo.source", "pk": 3934, "fields": {"orig_filename": "Schneefuss_Wilhelm_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 364", "author": "", "orig_id": 1406660}}, {"model": "metainfo.source", "pk": 3935, "fields": {"orig_filename": "Schneegans_Ludwig_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 364f.", "author": "", "orig_id": 1406661}}, {"model": "metainfo.source", "pk": 3936, "fields": {"orig_filename": "Schneeweiss_Franz_1877_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 365f.", "author": "", "orig_id": 1406664}}, {"model": "metainfo.source", "pk": 3937, "fields": {"orig_filename": "Schneeweiss_Josef_1847_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406667}}, {"model": "metainfo.source", "pk": 3938, "fields": {"orig_filename": "Schneeweiss_Martin-Franz_1883_1965.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406665}}, {"model": "metainfo.source", "pk": 3939, "fields": {"orig_filename": "Schneeweiss_Martin_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406666}}, {"model": "metainfo.source", "pk": 3940, "fields": {"orig_filename": "Schneeweiss_Martin_1907_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366f.", "author": "", "orig_id": 1406668}}, {"model": "metainfo.source", "pk": 3941, "fields": {"orig_filename": "Schneeweiss_Robert_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367", "author": "", "orig_id": 1406669}}, {"model": "metainfo.source", "pk": 3942, "fields": {"orig_filename": "Schneeweis_Karl_1745_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 365", "author": "", "orig_id": 1406662}}, {"model": "metainfo.source", "pk": 3943, "fields": {"orig_filename": "Schnee_Emil_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361", "author": "", "orig_id": 1406654}}, {"model": "metainfo.source", "pk": 3944, "fields": {"orig_filename": "Schnegg_Alphons_1895_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367", "author": "", "orig_id": 1406670}}, {"model": "metainfo.source", "pk": 3945, "fields": {"orig_filename": "Schnehen_Max-Karl-Hugo_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367f.", "author": "", "orig_id": 1406671}}, {"model": "metainfo.source", "pk": 3946, "fields": {"orig_filename": "Schnehen_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 368", "author": "", "orig_id": 1406816}}, {"model": "metainfo.source", "pk": 3947, "fields": {"orig_filename": "Schneid-Treuenfeld_Josef_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 368f.", "author": "", "orig_id": 1406817}}, {"model": "metainfo.source", "pk": 3948, "fields": {"orig_filename": "Schneider-Arno_Josepha_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 387", "author": "", "orig_id": 1406853}}, {"model": "metainfo.source", "pk": 3949, "fields": {"orig_filename": "Schneider-Arno_Joseph_1810_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386f.", "author": "", "orig_id": 1406852}}, {"model": "metainfo.source", "pk": 3950, "fields": {"orig_filename": "Schneider-Arno_Karl_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 387f.", "author": "", "orig_id": 1406854}}, {"model": "metainfo.source", "pk": 3951, "fields": {"orig_filename": "Schneider-Arno_Karl_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 388", "author": "", "orig_id": 1406855}}, {"model": "metainfo.source", "pk": 3952, "fields": {"orig_filename": "Schneider-Arno_Ludwig_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 388f.", "author": "", "orig_id": 1406856}}, {"model": "metainfo.source", "pk": 3953, "fields": {"orig_filename": "Schneider-Manns-Au_Josef_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 389f.", "author": "", "orig_id": 1406857}}, {"model": "metainfo.source", "pk": 3954, "fields": {"orig_filename": "Schneiderhan_Franz_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 390", "author": "", "orig_id": 1406858}}, {"model": "metainfo.source", "pk": 3955, "fields": {"orig_filename": "Schneider_Alois_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 369", "author": "", "orig_id": 1406818}}, {"model": "metainfo.source", "pk": 3956, "fields": {"orig_filename": "Schneider_Anton-Andreas_1774_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 369", "author": "", "orig_id": 1406819}}, {"model": "metainfo.source", "pk": 3957, "fields": {"orig_filename": "Schneider_Antoni-Julian_1825_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 370", "author": "", "orig_id": 1406820}}, {"model": "metainfo.source", "pk": 3958, "fields": {"orig_filename": "Schneider_Artur_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 370f.", "author": "", "orig_id": 1406821}}, {"model": "metainfo.source", "pk": 3959, "fields": {"orig_filename": "Schneider_August_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 371", "author": "", "orig_id": 1406822}}, {"model": "metainfo.source", "pk": 3960, "fields": {"orig_filename": "Schneider_Carl-Samuel_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 371f.", "author": "", "orig_id": 1406823}}, {"model": "metainfo.source", "pk": 3961, "fields": {"orig_filename": "Schneider_Christian_1742_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 372f.", "author": "", "orig_id": 1406824}}, {"model": "metainfo.source", "pk": 3962, "fields": {"orig_filename": "Schneider_Constantin_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 373", "author": "", "orig_id": 1406825}}, {"model": "metainfo.source", "pk": 3963, "fields": {"orig_filename": "Schneider_Ernst_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 373f.", "author": "", "orig_id": 1406826}}, {"model": "metainfo.source", "pk": 3964, "fields": {"orig_filename": "Schneider_Ferdinand_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 374", "author": "", "orig_id": 1406827}}, {"model": "metainfo.source", "pk": 3965, "fields": {"orig_filename": "Schneider_Franz-Anton_1777_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 376", "author": "", "orig_id": 1406830}}, {"model": "metainfo.source", "pk": 3966, "fields": {"orig_filename": "Schneider_Franz-Coelestin_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 376f.", "author": "", "orig_id": 1406831}}, {"model": "metainfo.source", "pk": 3967, "fields": {"orig_filename": "Schneider_Franz-Xav_1789_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 377f.", "author": "", "orig_id": 1406832}}, {"model": "metainfo.source", "pk": 3968, "fields": {"orig_filename": "Schneider_Franz-Xav_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 378", "author": "", "orig_id": 1406833}}, {"model": "metainfo.source", "pk": 3969, "fields": {"orig_filename": "Schneider_Franz_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 374f.", "author": "", "orig_id": 1406828}}, {"model": "metainfo.source", "pk": 3970, "fields": {"orig_filename": "Schneider_Franz_1801_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 375f.", "author": "", "orig_id": 1406829}}, {"model": "metainfo.source", "pk": 3971, "fields": {"orig_filename": "Schneider_Hans_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 378f.", "author": "", "orig_id": 1406834}}, {"model": "metainfo.source", "pk": 3972, "fields": {"orig_filename": "Schneider_Hans_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379", "author": "", "orig_id": 1406835}}, {"model": "metainfo.source", "pk": 3973, "fields": {"orig_filename": "Schneider_Hermann-Josef_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379", "author": "", "orig_id": 1406836}}, {"model": "metainfo.source", "pk": 3974, "fields": {"orig_filename": "Schneider_Johann-Aloys_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 380f.", "author": "", "orig_id": 1406838}}, {"model": "metainfo.source", "pk": 3975, "fields": {"orig_filename": "Schneider_Johann-Bapt_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379f.", "author": "", "orig_id": 1406837}}, {"model": "metainfo.source", "pk": 3976, "fields": {"orig_filename": "Schneider_Josef_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 381", "author": "", "orig_id": 1406839}}, {"model": "metainfo.source", "pk": 3977, "fields": {"orig_filename": "Schneider_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 381f.", "author": "", "orig_id": 1406840}}, {"model": "metainfo.source", "pk": 3978, "fields": {"orig_filename": "Schneider_Josef_1897_1984.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406850}}, {"model": "metainfo.source", "pk": 3979, "fields": {"orig_filename": "Schneider_Julia_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382", "author": "", "orig_id": 1406841}}, {"model": "metainfo.source", "pk": 3980, "fields": {"orig_filename": "Schneider_Karl-Camillo_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382f.", "author": "", "orig_id": 1406843}}, {"model": "metainfo.source", "pk": 3981, "fields": {"orig_filename": "Schneider_Karl_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382", "author": "", "orig_id": 1406842}}, {"model": "metainfo.source", "pk": 3982, "fields": {"orig_filename": "Schneider_Ludwig_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 383f.", "author": "", "orig_id": 1406844}}, {"model": "metainfo.source", "pk": 3983, "fields": {"orig_filename": "Schneider_Max_1902_1988.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406851}}, {"model": "metainfo.source", "pk": 3984, "fields": {"orig_filename": "Schneider_Oswald_1900_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 384", "author": "", "orig_id": 1406845}}, {"model": "metainfo.source", "pk": 3985, "fields": {"orig_filename": "Schneider_Robert_1854_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 384f.", "author": "", "orig_id": 1406846}}, {"model": "metainfo.source", "pk": 3986, "fields": {"orig_filename": "Schneider_Stanislaw-Jan_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 385f.", "author": "", "orig_id": 1406848}}, {"model": "metainfo.source", "pk": 3987, "fields": {"orig_filename": "Schneider_Wilhelm_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406849}}, {"model": "metainfo.source", "pk": 3988, "fields": {"orig_filename": "Schnek_Friedrich_1900_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 390f.", "author": "", "orig_id": 1406859}}, {"model": "metainfo.source", "pk": 3989, "fields": {"orig_filename": "Schnek_Isidor_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 391f.", "author": "", "orig_id": 1406860}}, {"model": "metainfo.source", "pk": 3990, "fields": {"orig_filename": "Schnellar_Hans_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 394f.", "author": "", "orig_id": 1406866}}, {"model": "metainfo.source", "pk": 3991, "fields": {"orig_filename": "Schneller-Mohrthal_Otto_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 399f.", "author": "", "orig_id": 1406874}}, {"model": "metainfo.source", "pk": 3992, "fields": {"orig_filename": "Schneller_August_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 395", "author": "", "orig_id": 1406867}}, {"model": "metainfo.source", "pk": 3993, "fields": {"orig_filename": "Schneller_Christian_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 395f.", "author": "", "orig_id": 1406868}}, {"model": "metainfo.source", "pk": 3994, "fields": {"orig_filename": "Schneller_Istvan_1847_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 396", "author": "", "orig_id": 1406869}}, {"model": "metainfo.source", "pk": 3995, "fields": {"orig_filename": "Schneller_Josef-Anton_1796_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 396f.", "author": "", "orig_id": 1406870}}, {"model": "metainfo.source", "pk": 3996, "fields": {"orig_filename": "Schneller_Joseph_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 397", "author": "", "orig_id": 1406871}}, {"model": "metainfo.source", "pk": 3997, "fields": {"orig_filename": "Schneller_Julius-Franz-Borgias_1777_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 397f.", "author": "", "orig_id": 1406872}}, {"model": "metainfo.source", "pk": 3998, "fields": {"orig_filename": "Schneller_Karl_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 398f.", "author": "", "orig_id": 1406873}}, {"model": "metainfo.source", "pk": 3999, "fields": {"orig_filename": "Schnellinger_Josef_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 400", "author": "", "orig_id": 1406875}}, {"model": "metainfo.source", "pk": 4000, "fields": {"orig_filename": "Schnell_Friedrich_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 392", "author": "", "orig_id": 1406861}}, {"model": "metainfo.source", "pk": 4001, "fields": {"orig_filename": "Schnell_Josef_1822_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 392f.", "author": "", "orig_id": 1406862}}, {"model": "metainfo.source", "pk": 4002, "fields": {"orig_filename": "Schnell_Joseph_1822_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 393", "author": "", "orig_id": 1406863}}, {"model": "metainfo.source", "pk": 4003, "fields": {"orig_filename": "Schnell_Karl-Ernst_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 393f.", "author": "", "orig_id": 1406864}}, {"model": "metainfo.source", "pk": 4004, "fields": {"orig_filename": "Schnell_Ludwig-Franz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 394", "author": "", "orig_id": 1406865}}, {"model": "metainfo.source", "pk": 4005, "fields": {"orig_filename": "Schnepfleitner_Josef_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 400", "author": "", "orig_id": 1406876}}, {"model": "metainfo.source", "pk": 4006, "fields": {"orig_filename": "Schnerich_Alfred_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406877}}, {"model": "metainfo.source", "pk": 4007, "fields": {"orig_filename": "Schnerich_Franz-Xav_1771_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406878}}, {"model": "metainfo.source", "pk": 4008, "fields": {"orig_filename": "Schnerich_Franz-Xav_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406880}}, {"model": "metainfo.source", "pk": 4009, "fields": {"orig_filename": "Schnerich_Gotthard_1821_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401f.", "author": "", "orig_id": 1406881}}, {"model": "metainfo.source", "pk": 4010, "fields": {"orig_filename": "Schnerich_Wilhelm_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406879}}, {"model": "metainfo.source", "pk": 4011, "fields": {"orig_filename": "Schnider_August_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 402", "author": "", "orig_id": 1406882}}, {"model": "metainfo.source", "pk": 4012, "fields": {"orig_filename": "Schnierer_Alfred_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 402f.", "author": "", "orig_id": 1406883}}, {"model": "metainfo.source", "pk": 4013, "fields": {"orig_filename": "Schnierer_Julius_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 403", "author": "", "orig_id": 1406884}}, {"model": "metainfo.source", "pk": 4014, "fields": {"orig_filename": "Schnirch_Bohuslav_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 403f.", "author": "", "orig_id": 1406885}}, {"model": "metainfo.source", "pk": 4015, "fields": {"orig_filename": "Schnirch_Friedrich_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 404f.", "author": "", "orig_id": 1406886}}, {"model": "metainfo.source", "pk": 4016, "fields": {"orig_filename": "Schnirer_Friedrich_1889_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405", "author": "", "orig_id": 1406889}}, {"model": "metainfo.source", "pk": 4017, "fields": {"orig_filename": "Schnirer_Josef_1888_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405", "author": "", "orig_id": 1406888}}, {"model": "metainfo.source", "pk": 4018, "fields": {"orig_filename": "Schnirer_Moritz-Tobias_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405f.", "author": "", "orig_id": 1406887}}, {"model": "metainfo.source", "pk": 4019, "fields": {"orig_filename": "Schnitzer_Alois_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406", "author": "", "orig_id": 1406890}}, {"model": "metainfo.source", "pk": 4020, "fields": {"orig_filename": "Schmid_Leopold_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 284f.", "author": "", "orig_id": 1406419}}, {"model": "metainfo.source", "pk": 4021, "fields": {"orig_filename": "Schmid_Ludwig_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285", "author": "", "orig_id": 1406420}}, {"model": "metainfo.source", "pk": 4022, "fields": {"orig_filename": "Schmid_Ludwig_1880_1957.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285", "author": "", "orig_id": 1406421}}, {"model": "metainfo.source", "pk": 4023, "fields": {"orig_filename": "Schmid_Maria_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285f.", "author": "", "orig_id": 1406422}}, {"model": "metainfo.source", "pk": 4024, "fields": {"orig_filename": "Schmid_Martin_1775_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 286", "author": "", "orig_id": 1406423}}, {"model": "metainfo.source", "pk": 4025, "fields": {"orig_filename": "Schmid_Mathias-Andreas_1742_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 287", "author": "", "orig_id": 1406425}}, {"model": "metainfo.source", "pk": 4026, "fields": {"orig_filename": "Schmid_Mathias_1835_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 286f.", "author": "", "orig_id": 1406424}}, {"model": "metainfo.source", "pk": 4027, "fields": {"orig_filename": "Schmid_Maximilian-Florian_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 288", "author": "", "orig_id": 1406427}}, {"model": "metainfo.source", "pk": 4028, "fields": {"orig_filename": "Schmid_Maximilian_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406534}}, {"model": "metainfo.source", "pk": 4029, "fields": {"orig_filename": "Schmid_Max_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 287f.", "author": "", "orig_id": 1406426}}, {"model": "metainfo.source", "pk": 4030, "fields": {"orig_filename": "Schmid_Mieczyslaw-Henryk_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289", "author": "", "orig_id": 1406428}}, {"model": "metainfo.source", "pk": 4031, "fields": {"orig_filename": "Schmid_Moriz_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289", "author": "", "orig_id": 1406429}}, {"model": "metainfo.source", "pk": 4032, "fields": {"orig_filename": "Schmid_Nikolaus_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289f.", "author": "", "orig_id": 1406430}}, {"model": "metainfo.source", "pk": 4033, "fields": {"orig_filename": "Schmid_Oskar_1838_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 290", "author": "", "orig_id": 1406431}}, {"model": "metainfo.source", "pk": 4034, "fields": {"orig_filename": "Schmid_Oskar_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 290f.", "author": "", "orig_id": 1406432}}, {"model": "metainfo.source", "pk": 4035, "fields": {"orig_filename": "Schmid_Oskar_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 291", "author": "", "orig_id": 1406433}}, {"model": "metainfo.source", "pk": 4036, "fields": {"orig_filename": "Schmid_Otto_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 291f.", "author": "", "orig_id": 1406434}}, {"model": "metainfo.source", "pk": 4037, "fields": {"orig_filename": "Schmid_Peter_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292", "author": "", "orig_id": 1406435}}, {"model": "metainfo.source", "pk": 4038, "fields": {"orig_filename": "Schmid_Richard_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406533}}, {"model": "metainfo.source", "pk": 4039, "fields": {"orig_filename": "Schmid_Richard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292", "author": "", "orig_id": 1406436}}, {"model": "metainfo.source", "pk": 4040, "fields": {"orig_filename": "Schmid_Robert-Hans_1870_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292f.", "author": "", "orig_id": 1406437}}, {"model": "metainfo.source", "pk": 4041, "fields": {"orig_filename": "Schmid_Rudolf-Viktor_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283", "author": "", "orig_id": 1406416}}, {"model": "metainfo.source", "pk": 4042, "fields": {"orig_filename": "Schmid_Rudolf_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 293f.", "author": "", "orig_id": 1406438}}, {"model": "metainfo.source", "pk": 4043, "fields": {"orig_filename": "Schmid_Rudolf_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 294", "author": "", "orig_id": 1406439}}, {"model": "metainfo.source", "pk": 4044, "fields": {"orig_filename": "Schmid_Sandor_1855_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 294f.", "author": "", "orig_id": 1406440}}, {"model": "metainfo.source", "pk": 4045, "fields": {"orig_filename": "Schmid_Siegfried_1774_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 295f.", "author": "", "orig_id": 1406441}}, {"model": "metainfo.source", "pk": 4046, "fields": {"orig_filename": "Schmid_Sigismund_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 296", "author": "", "orig_id": 1406442}}, {"model": "metainfo.source", "pk": 4047, "fields": {"orig_filename": "Schmid_Theodor-Edmund_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406449}}, {"model": "metainfo.source", "pk": 4048, "fields": {"orig_filename": "Schmid_Theodor_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 296f.", "author": "", "orig_id": 1406443}}, {"model": "metainfo.source", "pk": 4049, "fields": {"orig_filename": "Schmid_Theodor_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 297", "author": "", "orig_id": 1406444}}, {"model": "metainfo.source", "pk": 4050, "fields": {"orig_filename": "Schmid_Valentin_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406445}}, {"model": "metainfo.source", "pk": 4051, "fields": {"orig_filename": "Schmid_Victor-Anton_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298f.", "author": "", "orig_id": 1406446}}, {"model": "metainfo.source", "pk": 4052, "fields": {"orig_filename": "Schmid_Victor-Ladislaus_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406447}}, {"model": "metainfo.source", "pk": 4053, "fields": {"orig_filename": "Schmid_Walter_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 299", "author": "", "orig_id": 1406450}}, {"model": "metainfo.source", "pk": 4054, "fields": {"orig_filename": "Schmid_Wilhelm-Joseph_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 301f.", "author": "", "orig_id": 1406715}}, {"model": "metainfo.source", "pk": 4055, "fields": {"orig_filename": "Schmid_Wilhelm-Matthaeus_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 302f.", "author": "", "orig_id": 1406716}}, {"model": "metainfo.source", "pk": 4056, "fields": {"orig_filename": "Schmid_Wilhelm_1817_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 299f.", "author": "", "orig_id": 1406451}}, {"model": "metainfo.source", "pk": 4057, "fields": {"orig_filename": "Schmid_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 300f.", "author": "", "orig_id": 1406452}}, {"model": "metainfo.source", "pk": 4058, "fields": {"orig_filename": "Schmid_Wilhelm_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 301", "author": "", "orig_id": 1406453}}, {"model": "metainfo.source", "pk": 4059, "fields": {"orig_filename": "Schmid_Wladyslaw_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 303", "author": "", "orig_id": 1406717}}, {"model": "metainfo.source", "pk": 4060, "fields": {"orig_filename": "Schmiedel_Johann-Bapt_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 328", "author": "", "orig_id": 1406607}}, {"model": "metainfo.source", "pk": 4061, "fields": {"orig_filename": "Schmieder_Pius_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 329", "author": "", "orig_id": 1406608}}, {"model": "metainfo.source", "pk": 4062, "fields": {"orig_filename": "Schmiedl_Adolph-Abraham_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 329f.", "author": "", "orig_id": 1406609}}, {"model": "metainfo.source", "pk": 4063, "fields": {"orig_filename": "Schmiedl_Georg_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 330", "author": "", "orig_id": 1406610}}, {"model": "metainfo.source", "pk": 4064, "fields": {"orig_filename": "Schmieger_Adolf-Josef_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 330f.", "author": "", "orig_id": 1406611}}, {"model": "metainfo.source", "pk": 4065, "fields": {"orig_filename": "Schmieger_Ignaz-Anton_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 331", "author": "", "orig_id": 1406612}}, {"model": "metainfo.source", "pk": 4066, "fields": {"orig_filename": "Schmieger_Wilhelm_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 331f.", "author": "", "orig_id": 1406613}}, {"model": "metainfo.source", "pk": 4067, "fields": {"orig_filename": "Schmigoz_Julius_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 332", "author": "", "orig_id": 1406614}}, {"model": "metainfo.source", "pk": 4068, "fields": {"orig_filename": "Schmilauer_Alois_1837_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 332f.", "author": "", "orig_id": 1406615}}, {"model": "metainfo.source", "pk": 4069, "fields": {"orig_filename": "Schmirger_Johann_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 333", "author": "", "orig_id": 1406616}}, {"model": "metainfo.source", "pk": 4070, "fields": {"orig_filename": "Schmirl_Hans_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 333f.", "author": "", "orig_id": 1406617}}, {"model": "metainfo.source", "pk": 4071, "fields": {"orig_filename": "Schmitson_Teutwart_1830_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 334", "author": "", "orig_id": 1406618}}, {"model": "metainfo.source", "pk": 4072, "fields": {"orig_filename": "Schmitten_Eduard_1814_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 334f.", "author": "", "orig_id": 1406619}}, {"model": "metainfo.source", "pk": 4073, "fields": {"orig_filename": "Schmitzhausen-Bruckherr-Donau_Franz_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406676}}, {"model": "metainfo.source", "pk": 4074, "fields": {"orig_filename": "Schmitzhausen_Marie_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 338f.", "author": "", "orig_id": 1406675}}, {"model": "metainfo.source", "pk": 4075, "fields": {"orig_filename": "Schmitz_Ettore_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 335f.", "author": "", "orig_id": 1406621}}, {"model": "metainfo.source", "pk": 4076, "fields": {"orig_filename": "Schmitz_Franz_1874_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 336f.", "author": "", "orig_id": 1406622}}, {"model": "metainfo.source", "pk": 4077, "fields": {"orig_filename": "Schmitz_Johann-Georg_1765_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 337", "author": "", "orig_id": 1406672}}, {"model": "metainfo.source", "pk": 4078, "fields": {"orig_filename": "Schmitz_Oskar-A-H_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 337f.", "author": "", "orig_id": 1406673}}, {"model": "metainfo.source", "pk": 4079, "fields": {"orig_filename": "Schmitz_Siegfried_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 338", "author": "", "orig_id": 1406674}}, {"model": "metainfo.source", "pk": 4080, "fields": {"orig_filename": "Schmoeger_Alois_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406677}}, {"model": "metainfo.source", "pk": 4081, "fields": {"orig_filename": "Schmoelzer_Caroline_1840_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406679}}, {"model": "metainfo.source", "pk": 4082, "fields": {"orig_filename": "Schmoelzer_Conrad_1862_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406678}}, {"model": "metainfo.source", "pk": 4083, "fields": {"orig_filename": "Schmoelzer_Hans_1856_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339f.", "author": "", "orig_id": 1406680}}, {"model": "metainfo.source", "pk": 4084, "fields": {"orig_filename": "Schmoelzer_Jakob-Eduard_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 340", "author": "", "orig_id": 1406681}}, {"model": "metainfo.source", "pk": 4085, "fields": {"orig_filename": "Schmoelzer_Josef_1821_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 340f.", "author": "", "orig_id": 1406682}}, {"model": "metainfo.source", "pk": 4086, "fields": {"orig_filename": "Schmolka_Marie_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 341f.", "author": "", "orig_id": 1406684}}, {"model": "metainfo.source", "pk": 4087, "fields": {"orig_filename": "Schmolk_Frigdian_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 341", "author": "", "orig_id": 1406683}}, {"model": "metainfo.source", "pk": 4088, "fields": {"orig_filename": "Schmoll-Eisenwerth_Karl_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 342f.", "author": "", "orig_id": 1406695}}, {"model": "metainfo.source", "pk": 4089, "fields": {"orig_filename": "Schmoll_Karl_1852_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 342", "author": "", "orig_id": 1406694}}, {"model": "metainfo.source", "pk": 4090, "fields": {"orig_filename": "Schmonn_Joseph_1785_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 343f.", "author": "", "orig_id": 1406696}}, {"model": "metainfo.source", "pk": 4091, "fields": {"orig_filename": "Schmoranzer_Josef_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 345f.", "author": "", "orig_id": 1406700}}, {"model": "metainfo.source", "pk": 4092, "fields": {"orig_filename": "Schmoranz_Frantisek_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344", "author": "", "orig_id": 1406697}}, {"model": "metainfo.source", "pk": 4093, "fields": {"orig_filename": "Schmoranz_Frantisek_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344", "author": "", "orig_id": 1406698}}, {"model": "metainfo.source", "pk": 4094, "fields": {"orig_filename": "Schmoranz_Gustav_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344f.", "author": "", "orig_id": 1406699}}, {"model": "metainfo.source", "pk": 4095, "fields": {"orig_filename": "Schmuckenschlaeger_Adolf_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406701}}, {"model": "metainfo.source", "pk": 4096, "fields": {"orig_filename": "Schmuckenschlaeger_Antonin_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406703}}, {"model": "metainfo.source", "pk": 4097, "fields": {"orig_filename": "Schmuckenschlaeger_Michael_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406702}}, {"model": "metainfo.source", "pk": 4098, "fields": {"orig_filename": "Schmueck_Franz_1797_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346f.", "author": "", "orig_id": 1406704}}, {"model": "metainfo.source", "pk": 4099, "fields": {"orig_filename": "Schmued_Ludwig_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 347", "author": "", "orig_id": 1406705}}, {"model": "metainfo.source", "pk": 4100, "fields": {"orig_filename": "Schmutzer_Alice_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 348f.", "author": "", "orig_id": 1406707}}, {"model": "metainfo.source", "pk": 4101, "fields": {"orig_filename": "Schmutzer_Anton_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 349", "author": "", "orig_id": 1406708}}, {"model": "metainfo.source", "pk": 4102, "fields": {"orig_filename": "Schmutzer_Ferdinand_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 349f.", "author": "", "orig_id": 1406709}}, {"model": "metainfo.source", "pk": 4103, "fields": {"orig_filename": "Schmutzer_Hermine_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406714}}, {"model": "metainfo.source", "pk": 4104, "fields": {"orig_filename": "Schmutzer_Philippine_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406713}}, {"model": "metainfo.source", "pk": 4105, "fields": {"orig_filename": "Schmutzer_Philipp_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 350", "author": "", "orig_id": 1406710}}, {"model": "metainfo.source", "pk": 4106, "fields": {"orig_filename": "Schmutzer_Wilhelm_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406712}}, {"model": "metainfo.source", "pk": 4107, "fields": {"orig_filename": "Schmutz_Karl_1787_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 347f.", "author": "", "orig_id": 1406706}}, {"model": "metainfo.source", "pk": 4108, "fields": {"orig_filename": "Schnabel_August_1821_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352", "author": "", "orig_id": 1406626}}, {"model": "metainfo.source", "pk": 4109, "fields": {"orig_filename": "Schnabel_Franz_1900_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1407290}}, {"model": "metainfo.source", "pk": 4110, "fields": {"orig_filename": "Schnabel_Georg-Norbert_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352", "author": "", "orig_id": 1406624}}, {"model": "metainfo.source", "pk": 4111, "fields": {"orig_filename": "Schnabel_Gottlieb_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1406625}}, {"model": "metainfo.source", "pk": 4112, "fields": {"orig_filename": "Schnabel_Hans_1902_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1407291}}, {"model": "metainfo.source", "pk": 4113, "fields": {"orig_filename": "Schnabel_Isidor_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 353f.", "author": "", "orig_id": 1406627}}, {"model": "metainfo.source", "pk": 4114, "fields": {"orig_filename": "Schnabel_Louis_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 354", "author": "", "orig_id": 1406628}}, {"model": "metainfo.source", "pk": 4115, "fields": {"orig_filename": "Schnabl_Friedrich_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 354f.", "author": "", "orig_id": 1406630}}, {"model": "metainfo.source", "pk": 4116, "fields": {"orig_filename": "Schnabl_Jacob_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406637}}, {"model": "metainfo.source", "pk": 4117, "fields": {"orig_filename": "Schnabl_Josef_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406639}}, {"model": "metainfo.source", "pk": 4118, "fields": {"orig_filename": "Schnabl_Leopold_1846_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355f.", "author": "", "orig_id": 1406640}}, {"model": "metainfo.source", "pk": 4119, "fields": {"orig_filename": "Schnabl_Leo_1870_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406638}}, {"model": "metainfo.source", "pk": 4120, "fields": {"orig_filename": "Schnabl_Moriz_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 356", "author": "", "orig_id": 1406641}}, {"model": "metainfo.source", "pk": 4121, "fields": {"orig_filename": "Schmidl_Edmund_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322", "author": "", "orig_id": 1406755}}, {"model": "metainfo.source", "pk": 4122, "fields": {"orig_filename": "Schmidl_Eduard-Adam-Gorgonius_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322f.", "author": "", "orig_id": 1406757}}, {"model": "metainfo.source", "pk": 4123, "fields": {"orig_filename": "Schmidl_Emil-C_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406758}}, {"model": "metainfo.source", "pk": 4124, "fields": {"orig_filename": "Schmidl_Julius_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322", "author": "", "orig_id": 1406756}}, {"model": "metainfo.source", "pk": 4125, "fields": {"orig_filename": "Schmidl_Ludwig_1811_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323f.", "author": "", "orig_id": 1406761}}, {"model": "metainfo.source", "pk": 4126, "fields": {"orig_filename": "Schmidl_Ludwig_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406759}}, {"model": "metainfo.source", "pk": 4127, "fields": {"orig_filename": "Schmidl_Ludwig_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 324f.", "author": "", "orig_id": 1406762}}, {"model": "metainfo.source", "pk": 4128, "fields": {"orig_filename": "Schmidl_Marianne_1890_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325", "author": "", "orig_id": 1406763}}, {"model": "metainfo.source", "pk": 4129, "fields": {"orig_filename": "Schmidl_Michael_1779_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325f.", "author": "", "orig_id": 1406598}}, {"model": "metainfo.source", "pk": 4130, "fields": {"orig_filename": "Schmidl_Rudolf-E_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406760}}, {"model": "metainfo.source", "pk": 4131, "fields": {"orig_filename": "Schmidl_Rudolf_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406603}}, {"model": "metainfo.source", "pk": 4132, "fields": {"orig_filename": "Schmidl_Rupert_1735_1788.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326", "author": "", "orig_id": 1406602}}, {"model": "metainfo.source", "pk": 4133, "fields": {"orig_filename": "Schmidl_Rupert_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326", "author": "", "orig_id": 1406601}}, {"model": "metainfo.source", "pk": 4134, "fields": {"orig_filename": "Schmidl_Wenzl-Ludwig_1811_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406604}}, {"model": "metainfo.source", "pk": 4135, "fields": {"orig_filename": "Schmidl_Wenzl_1783_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326f.", "author": "", "orig_id": 1406600}}, {"model": "metainfo.source", "pk": 4136, "fields": {"orig_filename": "Schmidl_Wilhelm_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406605}}, {"model": "metainfo.source", "pk": 4137, "fields": {"orig_filename": "Schmidtmayer_Rudolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327f.", "author": "", "orig_id": 1406606}}, {"model": "metainfo.source", "pk": 4138, "fields": {"orig_filename": "Schmid_Adalbert_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 237f.", "author": "", "orig_id": 1406522}}, {"model": "metainfo.source", "pk": 4139, "fields": {"orig_filename": "Schmid_Adalbert_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 238", "author": "", "orig_id": 1406523}}, {"model": "metainfo.source", "pk": 4140, "fields": {"orig_filename": "Schmid_Adam-August_1777_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 238f.", "author": "", "orig_id": 1406524}}, {"model": "metainfo.source", "pk": 4141, "fields": {"orig_filename": "Schmid_Agnes_1831_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 239", "author": "", "orig_id": 1406525}}, {"model": "metainfo.source", "pk": 4142, "fields": {"orig_filename": "Schmid_Albert-Eugen-Edmund_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 240", "author": "", "orig_id": 1406527}}, {"model": "metainfo.source", "pk": 4143, "fields": {"orig_filename": "Schmid_Albert_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 239f.", "author": "", "orig_id": 1406526}}, {"model": "metainfo.source", "pk": 4144, "fields": {"orig_filename": "Schmid_Alfred_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406448}}, {"model": "metainfo.source", "pk": 4145, "fields": {"orig_filename": "Schmid_Alois_1798_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 240f.", "author": "", "orig_id": 1406528}}, {"model": "metainfo.source", "pk": 4146, "fields": {"orig_filename": "Schmid_Anton_1765_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 241", "author": "", "orig_id": 1406529}}, {"model": "metainfo.source", "pk": 4147, "fields": {"orig_filename": "Schmid_Anton_1787_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 241f.", "author": "", "orig_id": 1406530}}, {"model": "metainfo.source", "pk": 4148, "fields": {"orig_filename": "Schmid_Anton_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406532}}, {"model": "metainfo.source", "pk": 4149, "fields": {"orig_filename": "Schmid_Anton_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 243", "author": "", "orig_id": 1406535}}, {"model": "metainfo.source", "pk": 4150, "fields": {"orig_filename": "Schmid_Anton_1900_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 243f.", "author": "", "orig_id": 1406536}}, {"model": "metainfo.source", "pk": 4151, "fields": {"orig_filename": "Schmid_Arnold_1903_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 244f.", "author": "", "orig_id": 1406537}}, {"model": "metainfo.source", "pk": 4152, "fields": {"orig_filename": "Schmid_Arthur_1866_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245", "author": "", "orig_id": 1406539}}, {"model": "metainfo.source", "pk": 4153, "fields": {"orig_filename": "Schmid_August_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245f.", "author": "", "orig_id": 1406540}}, {"model": "metainfo.source", "pk": 4154, "fields": {"orig_filename": "Schmid_August_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 246f.", "author": "", "orig_id": 1406541}}, {"model": "metainfo.source", "pk": 4155, "fields": {"orig_filename": "Schmid_Carl-Eugen_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 247f.", "author": "", "orig_id": 1406543}}, {"model": "metainfo.source", "pk": 4156, "fields": {"orig_filename": "Schmid_Carl-Friedrich-Heinrich_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 248f.", "author": "", "orig_id": 1406544}}, {"model": "metainfo.source", "pk": 4157, "fields": {"orig_filename": "Schmid_Carl-Jakob-Ludwig_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249", "author": "", "orig_id": 1406545}}, {"model": "metainfo.source", "pk": 4158, "fields": {"orig_filename": "Schmid_Carl-Wilhelm_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249", "author": "", "orig_id": 1406546}}, {"model": "metainfo.source", "pk": 4159, "fields": {"orig_filename": "Schmid_Carl_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 247", "author": "", "orig_id": 1406542}}, {"model": "metainfo.source", "pk": 4160, "fields": {"orig_filename": "Schmid_Cordula_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249f.", "author": "", "orig_id": 1406547}}, {"model": "metainfo.source", "pk": 4161, "fields": {"orig_filename": "Schmid_Eduard-Johann_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250f.", "author": "", "orig_id": 1406549}}, {"model": "metainfo.source", "pk": 4162, "fields": {"orig_filename": "Schmid_Eduard-Oskar_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 251f.", "author": "", "orig_id": 1406551}}, {"model": "metainfo.source", "pk": 4163, "fields": {"orig_filename": "Schmid_Eduard_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250", "author": "", "orig_id": 1406548}}, {"model": "metainfo.source", "pk": 4164, "fields": {"orig_filename": "Schmid_Erich-August_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 252", "author": "", "orig_id": 1406552}}, {"model": "metainfo.source", "pk": 4165, "fields": {"orig_filename": "Schmid_Ernst_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 252f.", "author": "", "orig_id": 1406553}}, {"model": "metainfo.source", "pk": 4166, "fields": {"orig_filename": "Schmid_Eugen-Heinrich_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 253f.", "author": "", "orig_id": 1406555}}, {"model": "metainfo.source", "pk": 4167, "fields": {"orig_filename": "Schmid_Ferdinand-Jozef_1791_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 254f.", "author": "", "orig_id": 1406557}}, {"model": "metainfo.source", "pk": 4168, "fields": {"orig_filename": "Schmid_Ferdinand_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 254", "author": "", "orig_id": 1406556}}, {"model": "metainfo.source", "pk": 4169, "fields": {"orig_filename": "Schmid_Florian_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 255f.", "author": "", "orig_id": 1406558}}, {"model": "metainfo.source", "pk": 4170, "fields": {"orig_filename": "Schmid_Franz-X-Robert_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261f.", "author": "", "orig_id": 1406568}}, {"model": "metainfo.source", "pk": 4171, "fields": {"orig_filename": "Schmid_Franz-X_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 260f.", "author": "", "orig_id": 1406565}}, {"model": "metainfo.source", "pk": 4172, "fields": {"orig_filename": "Schmid_Franz-X_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261", "author": "", "orig_id": 1406566}}, {"model": "metainfo.source", "pk": 4173, "fields": {"orig_filename": "Schmid_Franz_1764_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 256", "author": "", "orig_id": 1406559}}, {"model": "metainfo.source", "pk": 4174, "fields": {"orig_filename": "Schmid_Franz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 256f.", "author": "", "orig_id": 1406560}}, {"model": "metainfo.source", "pk": 4175, "fields": {"orig_filename": "Schmid_Franz_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 257", "author": "", "orig_id": 1406561}}, {"model": "metainfo.source", "pk": 4176, "fields": {"orig_filename": "Schmid_Franz_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 257f.", "author": "", "orig_id": 1406562}}, {"model": "metainfo.source", "pk": 4177, "fields": {"orig_filename": "Schmid_Franz_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 258", "author": "", "orig_id": 1406563}}, {"model": "metainfo.source", "pk": 4178, "fields": {"orig_filename": "Schmid_Franz_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 258ff.", "author": "", "orig_id": 1406564}}, {"model": "metainfo.source", "pk": 4179, "fields": {"orig_filename": "Schmid_Friedrich_1821_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 262", "author": "", "orig_id": 1406569}}, {"model": "metainfo.source", "pk": 4180, "fields": {"orig_filename": "Schmid_Friedrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 262ff.", "author": "", "orig_id": 1406570}}, {"model": "metainfo.source", "pk": 4181, "fields": {"orig_filename": "Schmid_Friedrich_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 264", "author": "", "orig_id": 1406571}}, {"model": "metainfo.source", "pk": 4182, "fields": {"orig_filename": "Schmid_Georg-Fidelis_1741_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 265f.", "author": "", "orig_id": 1406575}}, {"model": "metainfo.source", "pk": 4183, "fields": {"orig_filename": "Schmid_Georg_1844_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 264f.", "author": "", "orig_id": 1406573}}, {"model": "metainfo.source", "pk": 4184, "fields": {"orig_filename": "Schmid_Georg_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 265", "author": "", "orig_id": 1406574}}, {"model": "metainfo.source", "pk": 4185, "fields": {"orig_filename": "Schmid_Gustav-Johann-Leopold_1826_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 267", "author": "", "orig_id": 1406577}}, {"model": "metainfo.source", "pk": 4186, "fields": {"orig_filename": "Schmid_Gustav_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 266f.", "author": "", "orig_id": 1406576}}, {"model": "metainfo.source", "pk": 4187, "fields": {"orig_filename": "Schmid_Hans_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 267f.", "author": "", "orig_id": 1406578}}, {"model": "metainfo.source", "pk": 4188, "fields": {"orig_filename": "Schmid_Heinrich-Daniel_1805_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270f.", "author": "", "orig_id": 1406585}}, {"model": "metainfo.source", "pk": 4189, "fields": {"orig_filename": "Schmid_Heinrich_1779_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 268", "author": "", "orig_id": 1406579}}, {"model": "metainfo.source", "pk": 4190, "fields": {"orig_filename": "Schmid_Heinrich_1809_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 268f.", "author": "", "orig_id": 1406580}}, {"model": "metainfo.source", "pk": 4191, "fields": {"orig_filename": "Schmid_Heinrich_1815_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 269f.", "author": "", "orig_id": 1406581}}, {"model": "metainfo.source", "pk": 4192, "fields": {"orig_filename": "Schmid_Heinrich_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270", "author": "", "orig_id": 1406583}}, {"model": "metainfo.source", "pk": 4193, "fields": {"orig_filename": "Schmid_Heinrich_1849_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270", "author": "", "orig_id": 1406584}}, {"model": "metainfo.source", "pk": 4194, "fields": {"orig_filename": "Schmid_Henryk-Leopold_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 271f.", "author": "", "orig_id": 1406586}}, {"model": "metainfo.source", "pk": 4195, "fields": {"orig_filename": "Schmid_Hermann_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 272", "author": "", "orig_id": 1406587}}, {"model": "metainfo.source", "pk": 4196, "fields": {"orig_filename": "Schmid_Hugo_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273", "author": "", "orig_id": 1406588}}, {"model": "metainfo.source", "pk": 4197, "fields": {"orig_filename": "Schmid_Hugo_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273", "author": "", "orig_id": 1406589}}, {"model": "metainfo.source", "pk": 4198, "fields": {"orig_filename": "Schmid_Janos-Gyoergy_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273f.", "author": "", "orig_id": 1406590}}, {"model": "metainfo.source", "pk": 4199, "fields": {"orig_filename": "Schmid_Johann-Joseph_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 274f.", "author": "", "orig_id": 1406592}}, {"model": "metainfo.source", "pk": 4200, "fields": {"orig_filename": "Schmid_Johanna-Carolina_1794_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275", "author": "", "orig_id": 1406593}}, {"model": "metainfo.source", "pk": 4201, "fields": {"orig_filename": "Schmid_Johann_1776_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 269", "author": "", "orig_id": 1406582}}, {"model": "metainfo.source", "pk": 4202, "fields": {"orig_filename": "Schmid_Johann_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 274", "author": "", "orig_id": 1406591}}, {"model": "metainfo.source", "pk": 4203, "fields": {"orig_filename": "Schmid_Josef-Eduard_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 278", "author": "", "orig_id": 1406405}}, {"model": "metainfo.source", "pk": 4204, "fields": {"orig_filename": "Schmid_Josefine_1837_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 278f.", "author": "", "orig_id": 1406407}}, {"model": "metainfo.source", "pk": 4205, "fields": {"orig_filename": "Schmid_Josef_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275f.", "author": "", "orig_id": 1406595}}, {"model": "metainfo.source", "pk": 4206, "fields": {"orig_filename": "Schmid_Josef_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276", "author": "", "orig_id": 2036249}}, {"model": "metainfo.source", "pk": 4207, "fields": {"orig_filename": "Schmid_Josef_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276", "author": "", "orig_id": 1406596}}, {"model": "metainfo.source", "pk": 4208, "fields": {"orig_filename": "Schmid_Joseph_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261", "author": "", "orig_id": 1406567}}, {"model": "metainfo.source", "pk": 4209, "fields": {"orig_filename": "Schmid_Julius_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 279f.", "author": "", "orig_id": 1406408}}, {"model": "metainfo.source", "pk": 4210, "fields": {"orig_filename": "Schmid_Karl-Florian_1823_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283", "author": "", "orig_id": 1406415}}, {"model": "metainfo.source", "pk": 4211, "fields": {"orig_filename": "Schmid_Karl_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 280", "author": "", "orig_id": 1406409}}, {"model": "metainfo.source", "pk": 4212, "fields": {"orig_filename": "Schmid_Karl_1825_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 280f.", "author": "", "orig_id": 1406410}}, {"model": "metainfo.source", "pk": 4213, "fields": {"orig_filename": "Schmid_Karl_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 281", "author": "", "orig_id": 1406411}}, {"model": "metainfo.source", "pk": 4214, "fields": {"orig_filename": "Schmid_Karl_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 253", "author": "", "orig_id": 1406554}}, {"model": "metainfo.source", "pk": 4215, "fields": {"orig_filename": "Schmid_Karl_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 281f.", "author": "", "orig_id": 1406412}}, {"model": "metainfo.source", "pk": 4216, "fields": {"orig_filename": "Schmid_Karl_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 282", "author": "", "orig_id": 1406413}}, {"model": "metainfo.source", "pk": 4217, "fields": {"orig_filename": "Schmid_Karl_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 282f.", "author": "", "orig_id": 1406414}}, {"model": "metainfo.source", "pk": 4218, "fields": {"orig_filename": "Schmid_Karl_1905_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245", "author": "", "orig_id": 1406538}}, {"model": "metainfo.source", "pk": 4219, "fields": {"orig_filename": "Schmid_Koloman_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283f.", "author": "", "orig_id": 1406417}}, {"model": "metainfo.source", "pk": 4220, "fields": {"orig_filename": "Schmid_Leopold_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 284", "author": "", "orig_id": 1406418}}, {"model": "metainfo.source", "pk": 4221, "fields": {"orig_filename": "Schlinger_Katharina_1869_1954.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207", "author": "", "orig_id": 1406461}}, {"model": "metainfo.source", "pk": 4222, "fields": {"orig_filename": "Schlitter-Niedernberg_Karl_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 208f.", "author": "", "orig_id": 1406464}}, {"model": "metainfo.source", "pk": 4223, "fields": {"orig_filename": "Schlitter_Hanns_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207f.", "author": "", "orig_id": 1406462}}, {"model": "metainfo.source", "pk": 4224, "fields": {"orig_filename": "Schlitter_Johann_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 208", "author": "", "orig_id": 1406463}}, {"model": "metainfo.source", "pk": 4225, "fields": {"orig_filename": "Schloegelhofer_Edmund_1836_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 209f.", "author": "", "orig_id": 1406465}}, {"model": "metainfo.source", "pk": 4226, "fields": {"orig_filename": "Schloegelhofer_Franz_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210", "author": "", "orig_id": 1406466}}, {"model": "metainfo.source", "pk": 4227, "fields": {"orig_filename": "Schloegl_Alfons_1886_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210", "author": "", "orig_id": 1406467}}, {"model": "metainfo.source", "pk": 4228, "fields": {"orig_filename": "Schloegl_Friedrich_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210f.", "author": "", "orig_id": 1406468}}, {"model": "metainfo.source", "pk": 4229, "fields": {"orig_filename": "Schloegl_Josefine_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 211", "author": "", "orig_id": 1406469}}, {"model": "metainfo.source", "pk": 4230, "fields": {"orig_filename": "Schloegl_Nivard_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 211f.", "author": "", "orig_id": 1406470}}, {"model": "metainfo.source", "pk": 4231, "fields": {"orig_filename": "Schloenbach_Urban_1841_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 212", "author": "", "orig_id": 1406471}}, {"model": "metainfo.source", "pk": 4232, "fields": {"orig_filename": "Schloer_Alois_1805_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 213", "author": "", "orig_id": 1406472}}, {"model": "metainfo.source", "pk": 4233, "fields": {"orig_filename": "Schloessinger_Wilhelm_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 214f.", "author": "", "orig_id": 1406475}}, {"model": "metainfo.source", "pk": 4234, "fields": {"orig_filename": "Schloess_Heinrich-Edmund_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 213f.", "author": "", "orig_id": 1406473}}, {"model": "metainfo.source", "pk": 4235, "fields": {"orig_filename": "Schloess_Karl-Johann_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 214", "author": "", "orig_id": 1406474}}, {"model": "metainfo.source", "pk": 4236, "fields": {"orig_filename": "Schloffer_Alois_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 215", "author": "", "orig_id": 1406476}}, {"model": "metainfo.source", "pk": 4237, "fields": {"orig_filename": "Schloffer_Hermann-Alexander_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 215f.", "author": "", "orig_id": 1406477}}, {"model": "metainfo.source", "pk": 4238, "fields": {"orig_filename": "Schloissnigg_Johann-Nep_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 216f.", "author": "", "orig_id": 1406478}}, {"model": "metainfo.source", "pk": 4239, "fields": {"orig_filename": "Schloissnigg_Theodor-Wilhelm_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 217", "author": "", "orig_id": 1406479}}, {"model": "metainfo.source", "pk": 4240, "fields": {"orig_filename": "Schlossar_Anton_1849_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 217f.", "author": "", "orig_id": 1406480}}, {"model": "metainfo.source", "pk": 4241, "fields": {"orig_filename": "Schlossar_Viktor_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 218", "author": "", "orig_id": 1406481}}, {"model": "metainfo.source", "pk": 4242, "fields": {"orig_filename": "Schlosser-Klekovski_Josip_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 219f.", "author": "", "orig_id": 1406484}}, {"model": "metainfo.source", "pk": 4243, "fields": {"orig_filename": "Schlosser_Julius-Alwin_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 218f.", "author": "", "orig_id": 1406482}}, {"model": "metainfo.source", "pk": 4244, "fields": {"orig_filename": "Schlosser_Theodor_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 219", "author": "", "orig_id": 1406483}}, {"model": "metainfo.source", "pk": 4245, "fields": {"orig_filename": "Schlossnikel_Hieronymus_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 220", "author": "", "orig_id": 1406485}}, {"model": "metainfo.source", "pk": 4246, "fields": {"orig_filename": "Schlotterbeck_Wilhelm-Friedrich_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 220f.", "author": "", "orig_id": 1406486}}, {"model": "metainfo.source", "pk": 4247, "fields": {"orig_filename": "Schlucker_Philipp_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 221", "author": "", "orig_id": 2036478}}, {"model": "metainfo.source", "pk": 4248, "fields": {"orig_filename": "Schluga-Rastenfeld_August_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 221f.", "author": "", "orig_id": 1406487}}, {"model": "metainfo.source", "pk": 4249, "fields": {"orig_filename": "Schluga-Rastenfeld_Franz-Sales_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 222", "author": "", "orig_id": 1406488}}, {"model": "metainfo.source", "pk": 4250, "fields": {"orig_filename": "Schlumberger-Goldeck_Gustav_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 2036503}}, {"model": "metainfo.source", "pk": 4251, "fields": {"orig_filename": "Schlumberger-Goldeck_Otto_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 1422951}}, {"model": "metainfo.source", "pk": 4252, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert-Alwin_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 1406490}}, {"model": "metainfo.source", "pk": 4253, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 2036512}}, {"model": "metainfo.source", "pk": 4254, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 222f.", "author": "", "orig_id": 1406489}}, {"model": "metainfo.source", "pk": 4255, "fields": {"orig_filename": "Schlumpf_Sigmund-Franz-Joseph_1819_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223f.", "author": "", "orig_id": 1406491}}, {"model": "metainfo.source", "pk": 4256, "fields": {"orig_filename": "Schlusche_Eduard_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 224f.", "author": "", "orig_id": 1406492}}, {"model": "metainfo.source", "pk": 4257, "fields": {"orig_filename": "Schmaeck-Stregen_Emilia_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 225", "author": "", "orig_id": 1406493}}, {"model": "metainfo.source", "pk": 4258, "fields": {"orig_filename": "Schmalfuss_Anton_1821_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226f.", "author": "", "orig_id": 1406497}}, {"model": "metainfo.source", "pk": 4259, "fields": {"orig_filename": "Schmalz_Josef_1804_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 227", "author": "", "orig_id": 1406498}}, {"model": "metainfo.source", "pk": 4260, "fields": {"orig_filename": "Schmal_Adolf_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 225f.", "author": "", "orig_id": 1406494}}, {"model": "metainfo.source", "pk": 4261, "fields": {"orig_filename": "Schmal_Felix_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406495}}, {"model": "metainfo.source", "pk": 4262, "fields": {"orig_filename": "Schmarda_Anton_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 228", "author": "", "orig_id": 1406500}}, {"model": "metainfo.source", "pk": 4263, "fields": {"orig_filename": "Schmarda_Karl-Johann_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 227f.", "author": "", "orig_id": 1406499}}, {"model": "metainfo.source", "pk": 4264, "fields": {"orig_filename": "Schmarda_Ludwig-Karl_1819_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 228f.", "author": "", "orig_id": 1406501}}, {"model": "metainfo.source", "pk": 4265, "fields": {"orig_filename": "Schmeidel_Gustav_1895_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 229f.", "author": "", "orig_id": 1406503}}, {"model": "metainfo.source", "pk": 4266, "fields": {"orig_filename": "Schmeja_Edmund_1837_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 230f.", "author": "", "orig_id": 1406504}}, {"model": "metainfo.source", "pk": 4267, "fields": {"orig_filename": "Schmeja_Ernst_1868_1954.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231", "author": "", "orig_id": 1406506}}, {"model": "metainfo.source", "pk": 4268, "fields": {"orig_filename": "Schmeja_Maximilian-Karl_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231", "author": "", "orig_id": 1406505}}, {"model": "metainfo.source", "pk": 4269, "fields": {"orig_filename": "Schmelkes_Gedaljah_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231f.", "author": "", "orig_id": 1406507}}, {"model": "metainfo.source", "pk": 4270, "fields": {"orig_filename": "Schmelzer_Antonin-Stanislav_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 232f.", "author": "", "orig_id": 1406509}}, {"model": "metainfo.source", "pk": 4271, "fields": {"orig_filename": "Schmelzer_Karl_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233", "author": "", "orig_id": 1406510}}, {"model": "metainfo.source", "pk": 4272, "fields": {"orig_filename": "Schmerber_Hugo_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233f.", "author": "", "orig_id": 1406512}}, {"model": "metainfo.source", "pk": 4273, "fields": {"orig_filename": "Schmerling_Anton_1805_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234f.", "author": "", "orig_id": 1406513}}, {"model": "metainfo.source", "pk": 4274, "fields": {"orig_filename": "Schmerling_Joseph_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 235", "author": "", "orig_id": 1406516}}, {"model": "metainfo.source", "pk": 4275, "fields": {"orig_filename": "Schmerling_Moriz_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234", "author": "", "orig_id": 1406515}}, {"model": "metainfo.source", "pk": 4276, "fields": {"orig_filename": "Schmerling_Rainer_1810_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234", "author": "", "orig_id": 1406514}}, {"model": "metainfo.source", "pk": 4277, "fields": {"orig_filename": "Schmerz_Hermann_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 235f.", "author": "", "orig_id": 1406518}}, {"model": "metainfo.source", "pk": 4278, "fields": {"orig_filename": "Schmerz_Leopold_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236", "author": "", "orig_id": 1406519}}, {"model": "metainfo.source", "pk": 4279, "fields": {"orig_filename": "Schmer_Josefine_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233", "author": "", "orig_id": 1406511}}, {"model": "metainfo.source", "pk": 4280, "fields": {"orig_filename": "Schmetzer_Gustav-Julius_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236", "author": "", "orig_id": 1406520}}, {"model": "metainfo.source", "pk": 4281, "fields": {"orig_filename": "Schmeykal_Franz_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236f.", "author": "", "orig_id": 1406521}}, {"model": "metainfo.source", "pk": 4282, "fields": {"orig_filename": "Schmid-Altenheim_Konrad_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 303f.", "author": "", "orig_id": 1406718}}, {"model": "metainfo.source", "pk": 4283, "fields": {"orig_filename": "Schmid-Altenstadt_Karl-August_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 304", "author": "", "orig_id": 1406719}}, {"model": "metainfo.source", "pk": 4284, "fields": {"orig_filename": "Schmid-Altenstadt_Maximilian-Von_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 304f.", "author": "", "orig_id": 1406720}}, {"model": "metainfo.source", "pk": 4285, "fields": {"orig_filename": "Schmid-Bergenhold_Johann-Ferdinand_1786_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 306", "author": "", "orig_id": 1406722}}, {"model": "metainfo.source", "pk": 4286, "fields": {"orig_filename": "Schmid-Boneti_Hugo_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 306f.", "author": "", "orig_id": 1406723}}, {"model": "metainfo.source", "pk": 4287, "fields": {"orig_filename": "Schmid-Gasteiger_Felix_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307", "author": "", "orig_id": 1406724}}, {"model": "metainfo.source", "pk": 4288, "fields": {"orig_filename": "Schmid-Georgenegg_Albert_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307", "author": "", "orig_id": 1406725}}, {"model": "metainfo.source", "pk": 4289, "fields": {"orig_filename": "Schmid-Renner_Franz_1851_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307f.", "author": "", "orig_id": 1406726}}, {"model": "metainfo.source", "pk": 4290, "fields": {"orig_filename": "Schmid-Reutte_Ludwig_1862_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308", "author": "", "orig_id": 1406727}}, {"model": "metainfo.source", "pk": 4291, "fields": {"orig_filename": "Schmid-Schmidsfelden_Adolf_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308f.", "author": "", "orig_id": 1406728}}, {"model": "metainfo.source", "pk": 4292, "fields": {"orig_filename": "Schmid-Schmidsfelden_August_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308", "author": "", "orig_id": 1406729}}, {"model": "metainfo.source", "pk": 4293, "fields": {"orig_filename": "Schmid-Schmidsfelden_Emil-Josef-Johann_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 310", "author": "", "orig_id": 1406734}}, {"model": "metainfo.source", "pk": 4294, "fields": {"orig_filename": "Schmid-Schmidsfelden_Ferdinand-Anton_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406731}}, {"model": "metainfo.source", "pk": 4295, "fields": {"orig_filename": "Schmid-Schmidsfelden_Josef-Karl-Mathaeus_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309f.", "author": "", "orig_id": 1406733}}, {"model": "metainfo.source", "pk": 4296, "fields": {"orig_filename": "Schmid-Schmidsfelden_Josef-Karl_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406730}}, {"model": "metainfo.source", "pk": 4297, "fields": {"orig_filename": "Schmid-Schmidsfelden_Maximilian-Constantin_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406732}}, {"model": "metainfo.source", "pk": 4298, "fields": {"orig_filename": "Schmid-Schmidsfelden_Moriz_1836_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 310f.", "author": "", "orig_id": 1406735}}, {"model": "metainfo.source", "pk": 4299, "fields": {"orig_filename": "Schmid-Schmidsfelden_Victor-Johann-Bapt_1860_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 311", "author": "", "orig_id": 1406736}}, {"model": "metainfo.source", "pk": 4300, "fields": {"orig_filename": "Schmid-Schmidsfelden_Walter-Johann-Friedrich_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 311f.", "author": "", "orig_id": 1406737}}, {"model": "metainfo.source", "pk": 4301, "fields": {"orig_filename": "Schmid-Tavera_Anton_1793_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 312", "author": "", "orig_id": 1406738}}, {"model": "metainfo.source", "pk": 4302, "fields": {"orig_filename": "Schmid-Tavera_Ernst_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 312f.", "author": "", "orig_id": 1406739}}, {"model": "metainfo.source", "pk": 4303, "fields": {"orig_filename": "Schmid-Tavera_Karl_1832_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 313f.", "author": "", "orig_id": 1406740}}, {"model": "metainfo.source", "pk": 4304, "fields": {"orig_filename": "Schmid-Zabierow_Franz_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 314", "author": "", "orig_id": 1406741}}, {"model": "metainfo.source", "pk": 4305, "fields": {"orig_filename": "Schmidbauer_Lambert_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 314f.", "author": "", "orig_id": 1406742}}, {"model": "metainfo.source", "pk": 4306, "fields": {"orig_filename": "Schmidberger_Josef_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 315", "author": "", "orig_id": 1406743}}, {"model": "metainfo.source", "pk": 4307, "fields": {"orig_filename": "Schmidburg_Joseph-Camillo_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 315f.", "author": "", "orig_id": 1406744}}, {"model": "metainfo.source", "pk": 4308, "fields": {"orig_filename": "Schmidburg_Rudolf_1810_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 316", "author": "", "orig_id": 1406745}}, {"model": "metainfo.source", "pk": 4309, "fields": {"orig_filename": "Schmidek_Karl_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 316f.", "author": "", "orig_id": 1406746}}, {"model": "metainfo.source", "pk": 4310, "fields": {"orig_filename": "Schmidek_Karl_1834_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317", "author": "", "orig_id": 1406747}}, {"model": "metainfo.source", "pk": 4311, "fields": {"orig_filename": "Schmiderer_Joseph-Ignaz_1755_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317f.", "author": "", "orig_id": 1406749}}, {"model": "metainfo.source", "pk": 4312, "fields": {"orig_filename": "Schmidgruber_Anton_1837_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 318f.", "author": "", "orig_id": 1406750}}, {"model": "metainfo.source", "pk": 4313, "fields": {"orig_filename": "Schmidinger_Josef_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 319", "author": "", "orig_id": 1406751}}, {"model": "metainfo.source", "pk": 4314, "fields": {"orig_filename": "Schmidkunz_Hans_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 319f.", "author": "", "orig_id": 1406752}}, {"model": "metainfo.source", "pk": 4315, "fields": {"orig_filename": "Schmidl_Adolf_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 320f.", "author": "", "orig_id": 1406753}}, {"model": "metainfo.source", "pk": 4316, "fields": {"orig_filename": "Schmidl_Anna_1782_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325f.", "author": "", "orig_id": 1406599}}, {"model": "metainfo.source", "pk": 4317, "fields": {"orig_filename": "Schmidl_Carlo_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 321f.", "author": "", "orig_id": 1406754}}, {"model": "metainfo.source", "pk": 4318, "fields": {"orig_filename": "Schindler_Samuel_1762_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 155f.", "author": "", "orig_id": 1406258}}, {"model": "metainfo.source", "pk": 4319, "fields": {"orig_filename": "Schindler_Vinzenz-Karl_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 156", "author": "", "orig_id": 1406308}}, {"model": "metainfo.source", "pk": 4320, "fields": {"orig_filename": "Schindloecker_Eugen_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 157", "author": "", "orig_id": 1406310}}, {"model": "metainfo.source", "pk": 4321, "fields": {"orig_filename": "Schindloecker_Philipp_1753_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 157", "author": "", "orig_id": 1406311}}, {"model": "metainfo.source", "pk": 4322, "fields": {"orig_filename": "Schindloecker_Wolfgang_1789_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406312}}, {"model": "metainfo.source", "pk": 4323, "fields": {"orig_filename": "Schinko_Raimund_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406313}}, {"model": "metainfo.source", "pk": 4324, "fields": {"orig_filename": "Schinnagl_Maurus_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406314}}, {"model": "metainfo.source", "pk": 4325, "fields": {"orig_filename": "Schinzel_Josef_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158f.", "author": "", "orig_id": 1406315}}, {"model": "metainfo.source", "pk": 4326, "fields": {"orig_filename": "Schio_Almerico_1836_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 159f.", "author": "", "orig_id": 1406316}}, {"model": "metainfo.source", "pk": 4327, "fields": {"orig_filename": "Schiper_Ignacy_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 160", "author": "", "orig_id": 1406317}}, {"model": "metainfo.source", "pk": 4328, "fields": {"orig_filename": "Schipper_Jakob_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 160f.", "author": "", "orig_id": 1406318}}, {"model": "metainfo.source", "pk": 4329, "fields": {"orig_filename": "Schirkhuber_Moricz_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 161", "author": "", "orig_id": 1406319}}, {"model": "metainfo.source", "pk": 4330, "fields": {"orig_filename": "Schirmer_Adolf_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 161f.", "author": "", "orig_id": 1406320}}, {"model": "metainfo.source", "pk": 4331, "fields": {"orig_filename": "Schirmer_Friedrich_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162", "author": "", "orig_id": 1406321}}, {"model": "metainfo.source", "pk": 4332, "fields": {"orig_filename": "Schirmer_Otto_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162", "author": "", "orig_id": 1406322}}, {"model": "metainfo.source", "pk": 4333, "fields": {"orig_filename": "Schirmer_Wilhelm-Kajetan_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162f.", "author": "", "orig_id": 1406323}}, {"model": "metainfo.source", "pk": 4334, "fields": {"orig_filename": "Schirnboeck_Ferdinand_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 163", "author": "", "orig_id": 1406324}}, {"model": "metainfo.source", "pk": 4335, "fields": {"orig_filename": "Schirndinger-Schirnding_Ferdinand-Leopold_1808_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 163f.", "author": "", "orig_id": 1406325}}, {"model": "metainfo.source", "pk": 4336, "fields": {"orig_filename": "Schirnhofer_Gerhard_1819_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 164", "author": "", "orig_id": 1406326}}, {"model": "metainfo.source", "pk": 4337, "fields": {"orig_filename": "Schissel-Fleschenberg_Otmar_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 164f.", "author": "", "orig_id": 1406327}}, {"model": "metainfo.source", "pk": 4338, "fields": {"orig_filename": "Schittenhelm_Anton_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165", "author": "", "orig_id": 1406328}}, {"model": "metainfo.source", "pk": 4339, "fields": {"orig_filename": "Schitter_Balthasar_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165", "author": "", "orig_id": 1406329}}, {"model": "metainfo.source", "pk": 4340, "fields": {"orig_filename": "Schivert_Gustav-Albert_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165f.", "author": "", "orig_id": 1406330}}, {"model": "metainfo.source", "pk": 4341, "fields": {"orig_filename": "Schiviz-Schivizhoffen_Ludwig_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166", "author": "", "orig_id": 1406331}}, {"model": "metainfo.source", "pk": 4342, "fields": {"orig_filename": "Schlaeger_Antonie_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166", "author": "", "orig_id": 1406332}}, {"model": "metainfo.source", "pk": 4343, "fields": {"orig_filename": "Schlaeger_Hans_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166f.", "author": "", "orig_id": 1406333}}, {"model": "metainfo.source", "pk": 4344, "fields": {"orig_filename": "Schlagenhaufer_Friedrich_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 167", "author": "", "orig_id": 1406334}}, {"model": "metainfo.source", "pk": 4345, "fields": {"orig_filename": "Schlager_Johann-Ev_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 167f.", "author": "", "orig_id": 1406335}}, {"model": "metainfo.source", "pk": 4346, "fields": {"orig_filename": "Schlager_Ludwig_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 168f.", "author": "", "orig_id": 1406336}}, {"model": "metainfo.source", "pk": 4347, "fields": {"orig_filename": "Schlager_Marcellinus_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 169", "author": "", "orig_id": 1406337}}, {"model": "metainfo.source", "pk": 4348, "fields": {"orig_filename": "Schlaghamer_Richard_1871_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 169f.", "author": "", "orig_id": 1406338}}, {"model": "metainfo.source", "pk": 4349, "fields": {"orig_filename": "Schlangenhausen_Emma_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170", "author": "", "orig_id": 1406339}}, {"model": "metainfo.source", "pk": 4350, "fields": {"orig_filename": "Schlar_Josef_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170", "author": "", "orig_id": 1406340}}, {"model": "metainfo.source", "pk": 4351, "fields": {"orig_filename": "Schlattauer_Rudolf_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170f.", "author": "", "orig_id": 1406341}}, {"model": "metainfo.source", "pk": 4352, "fields": {"orig_filename": "Schlauch_Loerinc_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 171", "author": "", "orig_id": 1406342}}, {"model": "metainfo.source", "pk": 4353, "fields": {"orig_filename": "Schlechta-Hrochow_Friedrich-Peter-Maria-Emanuel_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 172f.", "author": "", "orig_id": 1406345}}, {"model": "metainfo.source", "pk": 4354, "fields": {"orig_filename": "Schlechta-Hrochow_Peter-Josef_1792_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 173", "author": "", "orig_id": 1406346}}, {"model": "metainfo.source", "pk": 4355, "fields": {"orig_filename": "Schlechta-Wschehrd_Franz-X-Vinzenz_1765_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 174", "author": "", "orig_id": 1406348}}, {"model": "metainfo.source", "pk": 4356, "fields": {"orig_filename": "Schlechta-Wschehrd_Franz-X_1796_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 173f.", "author": "", "orig_id": 1406347}}, {"model": "metainfo.source", "pk": 4357, "fields": {"orig_filename": "Schlechta-Wschehrd_Kamill-Franz-Karl-Adam_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 174f.", "author": "", "orig_id": 1406349}}, {"model": "metainfo.source", "pk": 4358, "fields": {"orig_filename": "Schlechta-Wschehrd_Ottokar-Maria_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 175", "author": "", "orig_id": 1406350}}, {"model": "metainfo.source", "pk": 4359, "fields": {"orig_filename": "Schlechta_Franz_1833_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 171f.", "author": "", "orig_id": 1406343}}, {"model": "metainfo.source", "pk": 4360, "fields": {"orig_filename": "Schlechta_Peter-Josef-Dominik_1765_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 172", "author": "", "orig_id": 1406344}}, {"model": "metainfo.source", "pk": 4361, "fields": {"orig_filename": "Schlechter_Josef-Dominik_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 175f.", "author": "", "orig_id": 1406351}}, {"model": "metainfo.source", "pk": 4362, "fields": {"orig_filename": "Schlechter_Karl_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 176", "author": "", "orig_id": 1406353}}, {"model": "metainfo.source", "pk": 4363, "fields": {"orig_filename": "Schlegel_Anton_1878_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 177", "author": "", "orig_id": 1406354}}, {"model": "metainfo.source", "pk": 4364, "fields": {"orig_filename": "Schlegel_Dorothea_1764_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 177f.", "author": "", "orig_id": 1406259}}, {"model": "metainfo.source", "pk": 4365, "fields": {"orig_filename": "Schlegel_Friedrich_1772_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 178f.", "author": "", "orig_id": 1406260}}, {"model": "metainfo.source", "pk": 4366, "fields": {"orig_filename": "Schlegel_Joseph_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 179f.", "author": "", "orig_id": 1406261}}, {"model": "metainfo.source", "pk": 4367, "fields": {"orig_filename": "Schlegel_Richard_1906_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 180", "author": "", "orig_id": 1406262}}, {"model": "metainfo.source", "pk": 4368, "fields": {"orig_filename": "Schlegel_Thomas_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 180f.", "author": "", "orig_id": 1406263}}, {"model": "metainfo.source", "pk": 4369, "fields": {"orig_filename": "Schleifer_Mathias-Leopold_1771_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 181", "author": "", "orig_id": 1406265}}, {"model": "metainfo.source", "pk": 4370, "fields": {"orig_filename": "Schleifer_Moriz-Leopold_1817_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 181f.", "author": "", "orig_id": 1406266}}, {"model": "metainfo.source", "pk": 4371, "fields": {"orig_filename": "Schleimer_Hans_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 182", "author": "", "orig_id": 1406267}}, {"model": "metainfo.source", "pk": 4372, "fields": {"orig_filename": "Schleindl_Franz_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 183", "author": "", "orig_id": 1406269}}, {"model": "metainfo.source", "pk": 4373, "fields": {"orig_filename": "Schleinitz_Alexandra_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 183f.", "author": "", "orig_id": 1406270}}, {"model": "metainfo.source", "pk": 4374, "fields": {"orig_filename": "Schlein_Anton-Franz_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 182f.", "author": "", "orig_id": 1406268}}, {"model": "metainfo.source", "pk": 4375, "fields": {"orig_filename": "Schleissner_Felix_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 184f.", "author": "", "orig_id": 1406272}}, {"model": "metainfo.source", "pk": 4376, "fields": {"orig_filename": "Schleiss_Franz-De-Paula_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 184", "author": "", "orig_id": 1406271}}, {"model": "metainfo.source", "pk": 4377, "fields": {"orig_filename": "Schlemmer_Anton_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185", "author": "", "orig_id": 1406273}}, {"model": "metainfo.source", "pk": 4378, "fields": {"orig_filename": "Schlemmer_Anton_1883_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185", "author": "", "orig_id": 1406274}}, {"model": "metainfo.source", "pk": 4379, "fields": {"orig_filename": "Schlemmer_Fritz_1884_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185f.", "author": "", "orig_id": 1406275}}, {"model": "metainfo.source", "pk": 4380, "fields": {"orig_filename": "Schlenk_Karl-Heinrich_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 186f.", "author": "", "orig_id": 1406276}}, {"model": "metainfo.source", "pk": 4381, "fields": {"orig_filename": "Schlenther_Paula_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188", "author": "", "orig_id": 1406278}}, {"model": "metainfo.source", "pk": 4382, "fields": {"orig_filename": "Schlenther_Paul_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 187f.", "author": "", "orig_id": 1406277}}, {"model": "metainfo.source", "pk": 4383, "fields": {"orig_filename": "Schlenz_Johann_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188", "author": "", "orig_id": 1406279}}, {"model": "metainfo.source", "pk": 4384, "fields": {"orig_filename": "Schleps_Karl_1802_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188f.", "author": "", "orig_id": 1406280}}, {"model": "metainfo.source", "pk": 4385, "fields": {"orig_filename": "Schlesinger_Akiva-Joseph_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406281}}, {"model": "metainfo.source", "pk": 4386, "fields": {"orig_filename": "Schlesinger_Anton_1853_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406282}}, {"model": "metainfo.source", "pk": 4387, "fields": {"orig_filename": "Schlesinger_Bernhard_1773_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406283}}, {"model": "metainfo.source", "pk": 4388, "fields": {"orig_filename": "Schlesinger_Guenther_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 190", "author": "", "orig_id": 1406284}}, {"model": "metainfo.source", "pk": 4389, "fields": {"orig_filename": "Schlesinger_Hans_1896_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 190f.", "author": "", "orig_id": 1406285}}, {"model": "metainfo.source", "pk": 4390, "fields": {"orig_filename": "Schlesinger_Hermann_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 191", "author": "", "orig_id": 1406286}}, {"model": "metainfo.source", "pk": 4391, "fields": {"orig_filename": "Schlesinger_Ignac_1810_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 191f.", "author": "", "orig_id": 1406287}}, {"model": "metainfo.source", "pk": 4392, "fields": {"orig_filename": "Schlesinger_Josef_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 192", "author": "", "orig_id": 1406288}}, {"model": "metainfo.source", "pk": 4393, "fields": {"orig_filename": "Schlesinger_Julie_1815_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193", "author": "", "orig_id": 1406289}}, {"model": "metainfo.source", "pk": 4394, "fields": {"orig_filename": "Schlesinger_Karl-M_1847_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 194", "author": "", "orig_id": 1406292}}, {"model": "metainfo.source", "pk": 4395, "fields": {"orig_filename": "Schlesinger_Karl_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193", "author": "", "orig_id": 1406290}}, {"model": "metainfo.source", "pk": 4396, "fields": {"orig_filename": "Schlesinger_Karl_1889_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193f.", "author": "", "orig_id": 1406291}}, {"model": "metainfo.source", "pk": 4397, "fields": {"orig_filename": "Schlesinger_Louis_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 194f.", "author": "", "orig_id": 1406293}}, {"model": "metainfo.source", "pk": 4398, "fields": {"orig_filename": "Schlesinger_Ludwig_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 195f.", "author": "", "orig_id": 1406294}}, {"model": "metainfo.source", "pk": 4399, "fields": {"orig_filename": "Schlesinger_Ludwig_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 196f.", "author": "", "orig_id": 1406295}}, {"model": "metainfo.source", "pk": 4400, "fields": {"orig_filename": "Schlesinger_Martin_1751_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 197", "author": "", "orig_id": 1406296}}, {"model": "metainfo.source", "pk": 4401, "fields": {"orig_filename": "Schlesinger_Max_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 197f.", "author": "", "orig_id": 1406297}}, {"model": "metainfo.source", "pk": 4402, "fields": {"orig_filename": "Schlesinger_Max_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 199", "author": "", "orig_id": 2036451}}, {"model": "metainfo.source", "pk": 4403, "fields": {"orig_filename": "Schlesinger_Sigmund_1811_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 198", "author": "", "orig_id": 1406298}}, {"model": "metainfo.source", "pk": 4404, "fields": {"orig_filename": "Schlesinger_Sigmund_1832_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 198f.", "author": "", "orig_id": 1406299}}, {"model": "metainfo.source", "pk": 4405, "fields": {"orig_filename": "Schlesinger_Therese_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 199f.", "author": "", "orig_id": 1406300}}, {"model": "metainfo.source", "pk": 4406, "fields": {"orig_filename": "Schlesinger_Wilhelm_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 200", "author": "", "orig_id": 1406301}}, {"model": "metainfo.source", "pk": 4407, "fields": {"orig_filename": "Schlesinger_Wilhelm_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 200f.", "author": "", "orig_id": 1406302}}, {"model": "metainfo.source", "pk": 4408, "fields": {"orig_filename": "Schlesinger_Wilhelm_1894_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 201", "author": "", "orig_id": 1406303}}, {"model": "metainfo.source", "pk": 4409, "fields": {"orig_filename": "Schleussner_Josef_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 201", "author": "", "orig_id": 1406304}}, {"model": "metainfo.source", "pk": 4410, "fields": {"orig_filename": "Schleyer-Pontemalghera_Leopold_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 202", "author": "", "orig_id": 1406305}}, {"model": "metainfo.source", "pk": 4411, "fields": {"orig_filename": "Schlichtinger_Wolfgang_1745_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 202f.", "author": "", "orig_id": 1406306}}, {"model": "metainfo.source", "pk": 4412, "fields": {"orig_filename": "Schlickinger_Max_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 204", "author": "", "orig_id": 1406455}}, {"model": "metainfo.source", "pk": 4413, "fields": {"orig_filename": "Schlick_Dominikus_1816_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 203", "author": "", "orig_id": 1406307}}, {"model": "metainfo.source", "pk": 4414, "fields": {"orig_filename": "Schlick_Moritz_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 203f.", "author": "", "orig_id": 1406454}}, {"model": "metainfo.source", "pk": 4415, "fields": {"orig_filename": "Schliessmann_Hans_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 205f.", "author": "", "orig_id": 1406457}}, {"model": "metainfo.source", "pk": 4416, "fields": {"orig_filename": "Schlik-Bassano-Weisskirchen_Maria-Elisabeth_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 206", "author": "", "orig_id": 1406458}}, {"model": "metainfo.source", "pk": 4417, "fields": {"orig_filename": "Schlimp_Karl_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 206f.", "author": "", "orig_id": 1406459}}, {"model": "metainfo.source", "pk": 4418, "fields": {"orig_filename": "Schlinger_Anton_1870_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207", "author": "", "orig_id": 1406460}}, {"model": "metainfo.source", "pk": 4419, "fields": {"orig_filename": "Schicht_Georg_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105", "author": "", "orig_id": 1406060}}, {"model": "metainfo.source", "pk": 4420, "fields": {"orig_filename": "Schicht_Georg_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105", "author": "", "orig_id": 1406061}}, {"model": "metainfo.source", "pk": 4421, "fields": {"orig_filename": "Schicht_Johann_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105f.", "author": "", "orig_id": 1406062}}, {"model": "metainfo.source", "pk": 4422, "fields": {"orig_filename": "Schicht_Josef_1880_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 106", "author": "", "orig_id": 1406063}}, {"model": "metainfo.source", "pk": 4423, "fields": {"orig_filename": "Schickedanz_Albert_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 107", "author": "", "orig_id": 1406065}}, {"model": "metainfo.source", "pk": 4424, "fields": {"orig_filename": "Schicker_Josef_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 107", "author": "", "orig_id": 1406066}}, {"model": "metainfo.source", "pk": 4425, "fields": {"orig_filename": "Schickh_Antonie_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 108", "author": "", "orig_id": 1406067}}, {"model": "metainfo.source", "pk": 4426, "fields": {"orig_filename": "Schickh_Johann-Valentin_1770_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 108f.", "author": "", "orig_id": 1406068}}, {"model": "metainfo.source", "pk": 4427, "fields": {"orig_filename": "Schickh_Josef-Kilian_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 109", "author": "", "orig_id": 1406069}}, {"model": "metainfo.source", "pk": 4428, "fields": {"orig_filename": "Schick_Moses_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 106f.", "author": "", "orig_id": 1406064}}, {"model": "metainfo.source", "pk": 4429, "fields": {"orig_filename": "Schider_Fritz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 109f.", "author": "", "orig_id": 1406070}}, {"model": "metainfo.source", "pk": 4430, "fields": {"orig_filename": "Schidlof_Arthur_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 110", "author": "", "orig_id": 1406071}}, {"model": "metainfo.source", "pk": 4431, "fields": {"orig_filename": "Schieberth_Hermann_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 110f.", "author": "", "orig_id": 1406072}}, {"model": "metainfo.source", "pk": 4432, "fields": {"orig_filename": "Schiebl_Ignac_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111", "author": "", "orig_id": 1406073}}, {"model": "metainfo.source", "pk": 4433, "fields": {"orig_filename": "Schiebl_Jaroslav_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111", "author": "", "orig_id": 1406074}}, {"model": "metainfo.source", "pk": 4434, "fields": {"orig_filename": "Schiedermayr_Johann-Bapt_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111f.", "author": "", "orig_id": 1406075}}, {"model": "metainfo.source", "pk": 4435, "fields": {"orig_filename": "Schiedermayr_Johann-Bapt_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 112", "author": "", "orig_id": 1406076}}, {"model": "metainfo.source", "pk": 4436, "fields": {"orig_filename": "Schiedermayr_Karl_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 112f.", "author": "", "orig_id": 1406077}}, {"model": "metainfo.source", "pk": 4437, "fields": {"orig_filename": "Schiefthaler_Franz_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 113", "author": "", "orig_id": 1406078}}, {"model": "metainfo.source", "pk": 4438, "fields": {"orig_filename": "Schiegl_Wilhelm_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 113f.", "author": "", "orig_id": 1406079}}, {"model": "metainfo.source", "pk": 4439, "fields": {"orig_filename": "Schiele_Egon_1890_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115ff.", "author": "", "orig_id": 1406084}}, {"model": "metainfo.source", "pk": 4440, "fields": {"orig_filename": "Schiel_Heinrich-Josef_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 114", "author": "", "orig_id": 1406080}}, {"model": "metainfo.source", "pk": 4441, "fields": {"orig_filename": "Schiel_Karl_1851_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 114f.", "author": "", "orig_id": 1406081}}, {"model": "metainfo.source", "pk": 4442, "fields": {"orig_filename": "Schiel_Samuel-Traugott_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115", "author": "", "orig_id": 1406083}}, {"model": "metainfo.source", "pk": 4443, "fields": {"orig_filename": "Schiel_Samuel_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115", "author": "", "orig_id": 1406082}}, {"model": "metainfo.source", "pk": 4444, "fields": {"orig_filename": "Schiepek_Josef_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117", "author": "", "orig_id": 1406086}}, {"model": "metainfo.source", "pk": 4445, "fields": {"orig_filename": "Schierer_Franz_1819_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117", "author": "", "orig_id": 1406087}}, {"model": "metainfo.source", "pk": 4446, "fields": {"orig_filename": "Schierl-Moorburg_Karl_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117f.", "author": "", "orig_id": 1406088}}, {"model": "metainfo.source", "pk": 4447, "fields": {"orig_filename": "Schiesler_Ignac-Jan_1782_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118", "author": "", "orig_id": 1406089}}, {"model": "metainfo.source", "pk": 4448, "fields": {"orig_filename": "Schiessl-Perstorff_Franz_1844_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118", "author": "", "orig_id": 1406090}}, {"model": "metainfo.source", "pk": 4449, "fields": {"orig_filename": "Schiessler_Sebastian-Willibald_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118f.", "author": "", "orig_id": 1406091}}, {"model": "metainfo.source", "pk": 4450, "fields": {"orig_filename": "Schiestl_Anton-Martin_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 119f.", "author": "", "orig_id": 1406356}}, {"model": "metainfo.source", "pk": 4451, "fields": {"orig_filename": "Schiestl_Anton_1808_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 119", "author": "", "orig_id": 1406355}}, {"model": "metainfo.source", "pk": 4452, "fields": {"orig_filename": "Schiestl_Leopold_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 120f.", "author": "", "orig_id": 1406357}}, {"model": "metainfo.source", "pk": 4453, "fields": {"orig_filename": "Schiestl_Matthaeus_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 121", "author": "", "orig_id": 1406358}}, {"model": "metainfo.source", "pk": 4454, "fields": {"orig_filename": "Schiffel_Adalbert_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 123f.", "author": "", "orig_id": 1406362}}, {"model": "metainfo.source", "pk": 4455, "fields": {"orig_filename": "Schifferer_Josef_1906_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124", "author": "", "orig_id": 1406364}}, {"model": "metainfo.source", "pk": 4456, "fields": {"orig_filename": "Schiffer_Anton_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124", "author": "", "orig_id": 1406363}}, {"model": "metainfo.source", "pk": 4457, "fields": {"orig_filename": "Schiffmann_Jost-Joseph-Niklas_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124f.", "author": "", "orig_id": 1406365}}, {"model": "metainfo.source", "pk": 4458, "fields": {"orig_filename": "Schiffmann_Konrad_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 125f.", "author": "", "orig_id": 1406366}}, {"model": "metainfo.source", "pk": 4459, "fields": {"orig_filename": "Schiffner_Franz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 126", "author": "", "orig_id": 1406367}}, {"model": "metainfo.source", "pk": 4460, "fields": {"orig_filename": "Schiffner_Karl_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 126f.", "author": "", "orig_id": 1406368}}, {"model": "metainfo.source", "pk": 4461, "fields": {"orig_filename": "Schiffner_Ludwig_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 127", "author": "", "orig_id": 1406369}}, {"model": "metainfo.source", "pk": 4462, "fields": {"orig_filename": "Schiffner_Viktor-Ferdinand_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 127f.", "author": "", "orig_id": 1406370}}, {"model": "metainfo.source", "pk": 4463, "fields": {"orig_filename": "Schiff_Eduard-Liberius_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 121f.", "author": "", "orig_id": 1406359}}, {"model": "metainfo.source", "pk": 4464, "fields": {"orig_filename": "Schiff_Josef_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 122", "author": "", "orig_id": 1406360}}, {"model": "metainfo.source", "pk": 4465, "fields": {"orig_filename": "Schiff_Walter_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 122f.", "author": "", "orig_id": 1406361}}, {"model": "metainfo.source", "pk": 4466, "fields": {"orig_filename": "Schifkorn_Rudolf_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 128", "author": "", "orig_id": 1406371}}, {"model": "metainfo.source", "pk": 4467, "fields": {"orig_filename": "Schikaneder_Eleonore_1751_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129", "author": "", "orig_id": 1406373}}, {"model": "metainfo.source", "pk": 4468, "fields": {"orig_filename": "Schikaneder_Karl_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 130", "author": "", "orig_id": 1406375}}, {"model": "metainfo.source", "pk": 4469, "fields": {"orig_filename": "Schik_Ignaz_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129", "author": "", "orig_id": 1406372}}, {"model": "metainfo.source", "pk": 4470, "fields": {"orig_filename": "Schildbach_Johann-Gottlieb_1765_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 131", "author": "", "orig_id": 1406378}}, {"model": "metainfo.source", "pk": 4471, "fields": {"orig_filename": "Schilder_Paul-Ferdinand_1886_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 131f.", "author": "", "orig_id": 1406379}}, {"model": "metainfo.source", "pk": 4472, "fields": {"orig_filename": "Schildkraut_Rudolf_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 132f.", "author": "", "orig_id": 1406380}}, {"model": "metainfo.source", "pk": 4473, "fields": {"orig_filename": "Schild_Theodor-Franz_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 130f.", "author": "", "orig_id": 1406376}}, {"model": "metainfo.source", "pk": 4474, "fields": {"orig_filename": "Schili_Matthaeus-Christian_1762_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 133", "author": "", "orig_id": 1406381}}, {"model": "metainfo.source", "pk": 4475, "fields": {"orig_filename": "Schiller-Szinessy_Solomon-Marcus_1820_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136f.", "author": "", "orig_id": 1406390}}, {"model": "metainfo.source", "pk": 4476, "fields": {"orig_filename": "Schiller_Franz-Ferdinand_1773_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134", "author": "", "orig_id": 1406383}}, {"model": "metainfo.source", "pk": 4477, "fields": {"orig_filename": "Schiller_Friedrich_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134", "author": "", "orig_id": 1406384}}, {"model": "metainfo.source", "pk": 4478, "fields": {"orig_filename": "Schiller_Geza_1895_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134f.", "author": "", "orig_id": 1406385}}, {"model": "metainfo.source", "pk": 4479, "fields": {"orig_filename": "Schiller_Josef_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 135", "author": "", "orig_id": 1406386}}, {"model": "metainfo.source", "pk": 4480, "fields": {"orig_filename": "Schiller_Katharina_1829_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 135f.", "author": "", "orig_id": 1406387}}, {"model": "metainfo.source", "pk": 4481, "fields": {"orig_filename": "Schiller_Salomon_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136", "author": "", "orig_id": 1406388}}, {"model": "metainfo.source", "pk": 4482, "fields": {"orig_filename": "Schiller_Siegmund_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136", "author": "", "orig_id": 1406389}}, {"model": "metainfo.source", "pk": 4483, "fields": {"orig_filename": "Schilling-Henrichau_August_1815_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 137f.", "author": "", "orig_id": 1406392}}, {"model": "metainfo.source", "pk": 4484, "fields": {"orig_filename": "Schillinger_Franz_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 138", "author": "", "orig_id": 1406393}}, {"model": "metainfo.source", "pk": 4485, "fields": {"orig_filename": "Schilling_Julius_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 137", "author": "", "orig_id": 1406391}}, {"model": "metainfo.source", "pk": 4486, "fields": {"orig_filename": "Schill_Salamon_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 133f.", "author": "", "orig_id": 1406382}}, {"model": "metainfo.source", "pk": 4487, "fields": {"orig_filename": "Schimek_Otto_1925_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 138f.", "author": "", "orig_id": 1406394}}, {"model": "metainfo.source", "pk": 4488, "fields": {"orig_filename": "Schimkowitz_Herbert_1898_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140", "author": "", "orig_id": 1406396}}, {"model": "metainfo.source", "pk": 4489, "fields": {"orig_filename": "Schimkowitz_Othmar_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140", "author": "", "orig_id": 1406397}}, {"model": "metainfo.source", "pk": 4490, "fields": {"orig_filename": "Schimko_Friedrich-Daniel_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 139f.", "author": "", "orig_id": 1406395}}, {"model": "metainfo.source", "pk": 4491, "fields": {"orig_filename": "Schimmer_Gustav-Adolph_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140f.", "author": "", "orig_id": 1406398}}, {"model": "metainfo.source", "pk": 4492, "fields": {"orig_filename": "Schimmer_Karl-August_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 141f.", "author": "", "orig_id": 1406399}}, {"model": "metainfo.source", "pk": 4493, "fields": {"orig_filename": "Schimonsky-Schimony_Emanuel_1752_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142f.", "author": "", "orig_id": 1406402}}, {"model": "metainfo.source", "pk": 4494, "fields": {"orig_filename": "Schimon_Adolf_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142", "author": "", "orig_id": 1406400}}, {"model": "metainfo.source", "pk": 4495, "fields": {"orig_filename": "Schimon_Ferdinand_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142", "author": "", "orig_id": 1406401}}, {"model": "metainfo.source", "pk": 4496, "fields": {"orig_filename": "Schimser_Johann-Bapt_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 143", "author": "", "orig_id": 1406403}}, {"model": "metainfo.source", "pk": 4497, "fields": {"orig_filename": "Schindelar_Adalbert_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 143f.", "author": "", "orig_id": 1406236}}, {"model": "metainfo.source", "pk": 4498, "fields": {"orig_filename": "Schindelka_Hugo_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144", "author": "", "orig_id": 1406237}}, {"model": "metainfo.source", "pk": 4499, "fields": {"orig_filename": "Schindler-Schindelheim_Johann-Bapt_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 156f.", "author": "", "orig_id": 1406309}}, {"model": "metainfo.source", "pk": 4500, "fields": {"orig_filename": "Schindler_Albert_1805_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144", "author": "", "orig_id": 1406238}}, {"model": "metainfo.source", "pk": 4501, "fields": {"orig_filename": "Schindler_Alexander-Julius_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144ff.", "author": "", "orig_id": 1406239}}, {"model": "metainfo.source", "pk": 4502, "fields": {"orig_filename": "Schindler_Anna-Margaretha_1892_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 146", "author": "", "orig_id": 1406240}}, {"model": "metainfo.source", "pk": 4503, "fields": {"orig_filename": "Schindler_Anton-Felix_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 146f.", "author": "", "orig_id": 1406241}}, {"model": "metainfo.source", "pk": 4504, "fields": {"orig_filename": "Schindler_Carl_1821_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 147", "author": "", "orig_id": 1406242}}, {"model": "metainfo.source", "pk": 4505, "fields": {"orig_filename": "Schindler_Cosmus_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 147f.", "author": "", "orig_id": 1406243}}, {"model": "metainfo.source", "pk": 4506, "fields": {"orig_filename": "Schindler_Emanuel_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 148", "author": "", "orig_id": 1406244}}, {"model": "metainfo.source", "pk": 4507, "fields": {"orig_filename": "Schindler_Emil-Jakob_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 148f.", "author": "", "orig_id": 1406245}}, {"model": "metainfo.source", "pk": 4508, "fields": {"orig_filename": "Schindler_Franz-Friedrich_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 149f.", "author": "", "orig_id": 1406246}}, {"model": "metainfo.source", "pk": 4509, "fields": {"orig_filename": "Schindler_Franz-Martin_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 150", "author": "", "orig_id": 1406247}}, {"model": "metainfo.source", "pk": 4510, "fields": {"orig_filename": "Schindler_Fridolin_1788_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 150f.", "author": "", "orig_id": 1406248}}, {"model": "metainfo.source", "pk": 4511, "fields": {"orig_filename": "Schindler_Friedrich-Wilhelm_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 151f.", "author": "", "orig_id": 1406249}}, {"model": "metainfo.source", "pk": 4512, "fields": {"orig_filename": "Schindler_Johann-Josef_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 152f.", "author": "", "orig_id": 1406251}}, {"model": "metainfo.source", "pk": 4513, "fields": {"orig_filename": "Schindler_Johann_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 152", "author": "", "orig_id": 1406250}}, {"model": "metainfo.source", "pk": 4514, "fields": {"orig_filename": "Schindler_Josef_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153f.", "author": "", "orig_id": 1406253}}, {"model": "metainfo.source", "pk": 4515, "fields": {"orig_filename": "Schindler_Karl_1768_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154", "author": "", "orig_id": 1406254}}, {"model": "metainfo.source", "pk": 4516, "fields": {"orig_filename": "Schindler_Michael-Norbert_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154", "author": "", "orig_id": 1406255}}, {"model": "metainfo.source", "pk": 4517, "fields": {"orig_filename": "Schindler_Robert_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154f.", "author": "", "orig_id": 1406256}}, {"model": "metainfo.source", "pk": 4518, "fields": {"orig_filename": "Schindler_Rudolf_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 155", "author": "", "orig_id": 1406257}}, {"model": "metainfo.source", "pk": 4519, "fields": {"orig_filename": "Schedle_Franz-X_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 57f.", "author": "", "orig_id": 1406140}}, {"model": "metainfo.source", "pk": 4520, "fields": {"orig_filename": "Schedy_Sandor_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58", "author": "", "orig_id": 1406150}}, {"model": "metainfo.source", "pk": 4521, "fields": {"orig_filename": "Scheel_Florus_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58", "author": "", "orig_id": 1406151}}, {"model": "metainfo.source", "pk": 4522, "fields": {"orig_filename": "Scheff-Hohentraun_Julius_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58f.", "author": "", "orig_id": 1406152}}, {"model": "metainfo.source", "pk": 4523, "fields": {"orig_filename": "Scheffer-Leonhardshoff_Johann-Evangelist_1795_1822.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431977}}, {"model": "metainfo.source", "pk": 4524, "fields": {"orig_filename": "Scheiber_Samuel-Hugo_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406155}}, {"model": "metainfo.source", "pk": 4525, "fields": {"orig_filename": "Scheibe_Friedrich-Hermann_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 59", "author": "", "orig_id": 1406153}}, {"model": "metainfo.source", "pk": 4526, "fields": {"orig_filename": "Scheibe_Theodor_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 59f.", "author": "", "orig_id": 1406154}}, {"model": "metainfo.source", "pk": 4527, "fields": {"orig_filename": "Scheibl_Susanna_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406156}}, {"model": "metainfo.source", "pk": 4528, "fields": {"orig_filename": "Scheibner_Gebhard_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406157}}, {"model": "metainfo.source", "pk": 4529, "fields": {"orig_filename": "Scheicher_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 61", "author": "", "orig_id": 1406159}}, {"model": "metainfo.source", "pk": 4530, "fields": {"orig_filename": "Scheichl_Frantisek-Ladislav_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 61f.", "author": "", "orig_id": 1406160}}, {"model": "metainfo.source", "pk": 4531, "fields": {"orig_filename": "Scheichl_Franz_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 62", "author": "", "orig_id": 1406161}}, {"model": "metainfo.source", "pk": 4532, "fields": {"orig_filename": "Scheidela_Hinko_1874_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 63", "author": "", "orig_id": 1406163}}, {"model": "metainfo.source", "pk": 4533, "fields": {"orig_filename": "Scheidlein_Georg_1747_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 63f.", "author": "", "orig_id": 1406165}}, {"model": "metainfo.source", "pk": 4534, "fields": {"orig_filename": "Scheidtenberger_Karl_1827_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 64", "author": "", "orig_id": 1406166}}, {"model": "metainfo.source", "pk": 4535, "fields": {"orig_filename": "Scheid_Georg-Adam_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 62f.", "author": "", "orig_id": 1406162}}, {"model": "metainfo.source", "pk": 4536, "fields": {"orig_filename": "Scheiger_Josef_1801_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 64f.", "author": "", "orig_id": 1406167}}, {"model": "metainfo.source", "pk": 4537, "fields": {"orig_filename": "Scheimpflug_Karl_1856_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 65", "author": "", "orig_id": 1406169}}, {"model": "metainfo.source", "pk": 4538, "fields": {"orig_filename": "Scheimpflug_Theodor_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 65f.", "author": "", "orig_id": 1406170}}, {"model": "metainfo.source", "pk": 4539, "fields": {"orig_filename": "Scheindler_August_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 67", "author": "", "orig_id": 1406172}}, {"model": "metainfo.source", "pk": 4540, "fields": {"orig_filename": "Scheiner_Andreas-Gottlieb_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 67f.", "author": "", "orig_id": 1406173}}, {"model": "metainfo.source", "pk": 4541, "fields": {"orig_filename": "Scheiner_Josef_1798_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 68", "author": "", "orig_id": 1406174}}, {"model": "metainfo.source", "pk": 4542, "fields": {"orig_filename": "Scheiner_Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 68f.", "author": "", "orig_id": 1406175}}, {"model": "metainfo.source", "pk": 4543, "fields": {"orig_filename": "Scheinpflug_Karel_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 69f.", "author": "", "orig_id": 1406176}}, {"model": "metainfo.source", "pk": 4544, "fields": {"orig_filename": "Scheint_Daniel-Gottlieb_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70", "author": "", "orig_id": 1406177}}, {"model": "metainfo.source", "pk": 4545, "fields": {"orig_filename": "Schein_Abraham-Myron_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 66f.", "author": "", "orig_id": 1406171}}, {"model": "metainfo.source", "pk": 4546, "fields": {"orig_filename": "Schellander_Irene_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71", "author": "", "orig_id": 1406180}}, {"model": "metainfo.source", "pk": 4547, "fields": {"orig_filename": "Schellander_Josef_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71", "author": "", "orig_id": 1406181}}, {"model": "metainfo.source", "pk": 4548, "fields": {"orig_filename": "Schellein_Karl_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72", "author": "", "orig_id": 1406184}}, {"model": "metainfo.source", "pk": 4549, "fields": {"orig_filename": "Scheller_Arthur_1876_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72f.", "author": "", "orig_id": 1406185}}, {"model": "metainfo.source", "pk": 4550, "fields": {"orig_filename": "Schelle_Eduard_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71f.", "author": "", "orig_id": 1406182}}, {"model": "metainfo.source", "pk": 4551, "fields": {"orig_filename": "Schelle_Ludwig-Robert_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72", "author": "", "orig_id": 1406183}}, {"model": "metainfo.source", "pk": 4552, "fields": {"orig_filename": "Schell_Anton_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70", "author": "", "orig_id": 1406178}}, {"model": "metainfo.source", "pk": 4553, "fields": {"orig_filename": "Schels_Johann-Bapt_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 73f.", "author": "", "orig_id": 1406186}}, {"model": "metainfo.source", "pk": 4554, "fields": {"orig_filename": "Schelver_Hugo_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74", "author": "", "orig_id": 1406187}}, {"model": "metainfo.source", "pk": 4555, "fields": {"orig_filename": "Schembera_Viktor-Karl_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74f.", "author": "", "orig_id": 1406189}}, {"model": "metainfo.source", "pk": 4556, "fields": {"orig_filename": "Schember_Konrad_1811_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74", "author": "", "orig_id": 1406188}}, {"model": "metainfo.source", "pk": 4557, "fields": {"orig_filename": "Schembor_Friedrich_1898_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 75", "author": "", "orig_id": 1406190}}, {"model": "metainfo.source", "pk": 4558, "fields": {"orig_filename": "Schemerl-Leythenbach_Josef-Maria_1754_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 75f.", "author": "", "orig_id": 1406191}}, {"model": "metainfo.source", "pk": 4559, "fields": {"orig_filename": "Schemua_Blasius_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 76", "author": "", "orig_id": 1406192}}, {"model": "metainfo.source", "pk": 4560, "fields": {"orig_filename": "Schemua_Johann_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 76f.", "author": "", "orig_id": 1406193}}, {"model": "metainfo.source", "pk": 4561, "fields": {"orig_filename": "Schenacher_Johann-Georg_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77", "author": "", "orig_id": 1406194}}, {"model": "metainfo.source", "pk": 4562, "fields": {"orig_filename": "Schenek-Tasnad_Istvan_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77", "author": "", "orig_id": 1406195}}, {"model": "metainfo.source", "pk": 4563, "fields": {"orig_filename": "Schenkel_Theodor_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80", "author": "", "orig_id": 1406203}}, {"model": "metainfo.source", "pk": 4564, "fields": {"orig_filename": "Schenkenbach_Friedrich_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80", "author": "", "orig_id": 1406204}}, {"model": "metainfo.source", "pk": 4565, "fields": {"orig_filename": "Schenker_Gottfried_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80f.", "author": "", "orig_id": 1406205}}, {"model": "metainfo.source", "pk": 4566, "fields": {"orig_filename": "Schenker_Heinrich_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 81f.", "author": "", "orig_id": 1406206}}, {"model": "metainfo.source", "pk": 4567, "fields": {"orig_filename": "Schenker_Martin_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82", "author": "", "orig_id": 1406207}}, {"model": "metainfo.source", "pk": 4568, "fields": {"orig_filename": "Schenkl_Adolf_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82", "author": "", "orig_id": 1406208}}, {"model": "metainfo.source", "pk": 4569, "fields": {"orig_filename": "Schenkl_Heinrich_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82f.", "author": "", "orig_id": 1406209}}, {"model": "metainfo.source", "pk": 4570, "fields": {"orig_filename": "Schenkl_Karl_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 83f.", "author": "", "orig_id": 1406210}}, {"model": "metainfo.source", "pk": 4571, "fields": {"orig_filename": "Schenk_Alois-David_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77f.", "author": "", "orig_id": 1406196}}, {"model": "metainfo.source", "pk": 4572, "fields": {"orig_filename": "Schenk_Hugo_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281", "author": "", "orig_id": 2085225}}, {"model": "metainfo.source", "pk": 4573, "fields": {"orig_filename": "Schenk_Johann-Bapt_1753_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78", "author": "", "orig_id": 1406197}}, {"model": "metainfo.source", "pk": 4574, "fields": {"orig_filename": "Schenk_Johann_1829_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78", "author": "", "orig_id": 1406198}}, {"model": "metainfo.source", "pk": 4575, "fields": {"orig_filename": "Schenk_Josef-Eduard_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78f.", "author": "", "orig_id": 1406199}}, {"model": "metainfo.source", "pk": 4576, "fields": {"orig_filename": "Schenk_Josef-Wilhelm_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79", "author": "", "orig_id": 1406200}}, {"model": "metainfo.source", "pk": 4577, "fields": {"orig_filename": "Schenk_Martin_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79", "author": "", "orig_id": 1406201}}, {"model": "metainfo.source", "pk": 4578, "fields": {"orig_filename": "Schennich_Emil-Anton_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 84f.", "author": "", "orig_id": 1406211}}, {"model": "metainfo.source", "pk": 4579, "fields": {"orig_filename": "Schenzl_Guido_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 85", "author": "", "orig_id": 1406212}}, {"model": "metainfo.source", "pk": 4580, "fields": {"orig_filename": "Scherber_Gustav_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 85f.", "author": "", "orig_id": 1406213}}, {"model": "metainfo.source", "pk": 4581, "fields": {"orig_filename": "Scherer_Augustin_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86", "author": "", "orig_id": 1406214}}, {"model": "metainfo.source", "pk": 4582, "fields": {"orig_filename": "Scherer_Franz-Wolfram_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86", "author": "", "orig_id": 1406215}}, {"model": "metainfo.source", "pk": 4583, "fields": {"orig_filename": "Scherer_Johann-Baptist-Andreas_1755_1844.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2085743}}, {"model": "metainfo.source", "pk": 4584, "fields": {"orig_filename": "Scherer_Marie_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86f.", "author": "", "orig_id": 1406216}}, {"model": "metainfo.source", "pk": 4585, "fields": {"orig_filename": "Scherer_Martin_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87", "author": "", "orig_id": 1406217}}, {"model": "metainfo.source", "pk": 4586, "fields": {"orig_filename": "Scherer_Rosa_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87", "author": "", "orig_id": 1406218}}, {"model": "metainfo.source", "pk": 4587, "fields": {"orig_filename": "Scherer_Rudolf_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87f.", "author": "", "orig_id": 1406219}}, {"model": "metainfo.source", "pk": 4588, "fields": {"orig_filename": "Scherer_Sophie_1817_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 88", "author": "", "orig_id": 1406220}}, {"model": "metainfo.source", "pk": 4589, "fields": {"orig_filename": "Scherer_Wilhelm_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 88ff.", "author": "", "orig_id": 1406221}}, {"model": "metainfo.source", "pk": 4590, "fields": {"orig_filename": "Scherfel_Aurelius-Wilhelm_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 90", "author": "", "orig_id": 1406222}}, {"model": "metainfo.source", "pk": 4591, "fields": {"orig_filename": "Scherg_Georg-Alfred_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 90f.", "author": "", "orig_id": 1406223}}, {"model": "metainfo.source", "pk": 4592, "fields": {"orig_filename": "Scherndl_Balthasar_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91", "author": "", "orig_id": 1406224}}, {"model": "metainfo.source", "pk": 4593, "fields": {"orig_filename": "Scherpe_Johann_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91", "author": "", "orig_id": 1406225}}, {"model": "metainfo.source", "pk": 4594, "fields": {"orig_filename": "Scherzer_Franz-Jakob_1743_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91f.", "author": "", "orig_id": 1406226}}, {"model": "metainfo.source", "pk": 4595, "fields": {"orig_filename": "Scherzer_Ivan_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 92", "author": "", "orig_id": 1406227}}, {"model": "metainfo.source", "pk": 4596, "fields": {"orig_filename": "Scherzer_Johann-Georg_1776_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 92f.", "author": "", "orig_id": 1406228}}, {"model": "metainfo.source", "pk": 4597, "fields": {"orig_filename": "Scherzer_Karl_1821_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 93f.", "author": "", "orig_id": 1406229}}, {"model": "metainfo.source", "pk": 4598, "fields": {"orig_filename": "Schestag_August_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 94f.", "author": "", "orig_id": 1406230}}, {"model": "metainfo.source", "pk": 4599, "fields": {"orig_filename": "Schestag_Franz_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 95", "author": "", "orig_id": 1406231}}, {"model": "metainfo.source", "pk": 4600, "fields": {"orig_filename": "Scheth-Bohuslaw_Josef-Leopold_1764_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 95f.", "author": "", "orig_id": 1406232}}, {"model": "metainfo.source", "pk": 4601, "fields": {"orig_filename": "Scheuchenstuel_Karl_1792_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 98", "author": "", "orig_id": 1406045}}, {"model": "metainfo.source", "pk": 4602, "fields": {"orig_filename": "Scheuchenstuel_Viktor_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99", "author": "", "orig_id": 1406046}}, {"model": "metainfo.source", "pk": 4603, "fields": {"orig_filename": "Scheuer_Oskar-Franz_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99", "author": "", "orig_id": 1406047}}, {"model": "metainfo.source", "pk": 4604, "fields": {"orig_filename": "Scheuthauer_Gustav_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99f.", "author": "", "orig_id": 1406048}}, {"model": "metainfo.source", "pk": 4605, "fields": {"orig_filename": "Scheu_Andreas_1844_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 96", "author": "", "orig_id": 1406233}}, {"model": "metainfo.source", "pk": 4606, "fields": {"orig_filename": "Scheu_Gustav_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 96f.", "author": "", "orig_id": 1406234}}, {"model": "metainfo.source", "pk": 4607, "fields": {"orig_filename": "Scheu_Heinrich_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97", "author": "", "orig_id": 1406235}}, {"model": "metainfo.source", "pk": 4608, "fields": {"orig_filename": "Schey-Koromla_Friedrich_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 100f.", "author": "", "orig_id": 1406049}}, {"model": "metainfo.source", "pk": 4609, "fields": {"orig_filename": "Schey-Koromla_Josef_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 101", "author": "", "orig_id": 1406050}}, {"model": "metainfo.source", "pk": 4610, "fields": {"orig_filename": "Schey-Koromla_Philipp_1798_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 101f.", "author": "", "orig_id": 1406051}}, {"model": "metainfo.source", "pk": 4611, "fields": {"orig_filename": "Scheyerer_Franz_1762_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102", "author": "", "orig_id": 1406053}}, {"model": "metainfo.source", "pk": 4612, "fields": {"orig_filename": "Scheyer_Moriz_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102", "author": "", "orig_id": 1406052}}, {"model": "metainfo.source", "pk": 4613, "fields": {"orig_filename": "Scheyrer_Ludwig_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102f.", "author": "", "orig_id": 1406054}}, {"model": "metainfo.source", "pk": 4614, "fields": {"orig_filename": "Schgraffer_Jakob-Johann_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103", "author": "", "orig_id": 1406055}}, {"model": "metainfo.source", "pk": 4615, "fields": {"orig_filename": "Schiavi_Lorenzo_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103", "author": "", "orig_id": 1406056}}, {"model": "metainfo.source", "pk": 4616, "fields": {"orig_filename": "Schiavone_Natale_1777_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103f.", "author": "", "orig_id": 1406057}}, {"model": "metainfo.source", "pk": 4617, "fields": {"orig_filename": "Schiavoni_Felice_1803_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 104", "author": "", "orig_id": 1406058}}, {"model": "metainfo.source", "pk": 4618, "fields": {"orig_filename": "Schiavuzzi_Bernardo_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 104f.", "author": "", "orig_id": 1406059}}, {"model": "metainfo.source", "pk": 4619, "fields": {"orig_filename": "Scanagatta_Francesca_1781_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 12", "author": "", "orig_id": 1405999}}, {"model": "metainfo.source", "pk": 4620, "fields": {"orig_filename": "Scanzoni-Lichtenfels_Friedrich-Wilhelm_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 12f.", "author": "", "orig_id": 1406000}}, {"model": "metainfo.source", "pk": 4621, "fields": {"orig_filename": "Scaramella_Giuseppe_1761_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 13", "author": "", "orig_id": 1406001}}, {"model": "metainfo.source", "pk": 4622, "fields": {"orig_filename": "Scaria_Emil_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 13f.", "author": "", "orig_id": 1406002}}, {"model": "metainfo.source", "pk": 4623, "fields": {"orig_filename": "Scarpa_Antonio_1752_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 14", "author": "", "orig_id": 1405903}}, {"model": "metainfo.source", "pk": 4624, "fields": {"orig_filename": "Scarpa_Iginio_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 14f.", "author": "", "orig_id": 1405904}}, {"model": "metainfo.source", "pk": 4625, "fields": {"orig_filename": "Scek_Virgilij_1889_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15", "author": "", "orig_id": 1405905}}, {"model": "metainfo.source", "pk": 4626, "fields": {"orig_filename": "Schabl_Georg_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15", "author": "", "orig_id": 1405906}}, {"model": "metainfo.source", "pk": 4627, "fields": {"orig_filename": "Schabus_Jakob_1825_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15f.", "author": "", "orig_id": 1405907}}, {"model": "metainfo.source", "pk": 4628, "fields": {"orig_filename": "Schacherl_Gustav_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16", "author": "", "orig_id": 1405908}}, {"model": "metainfo.source", "pk": 4629, "fields": {"orig_filename": "Schacherl_Gustav_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16", "author": "", "orig_id": 1405909}}, {"model": "metainfo.source", "pk": 4630, "fields": {"orig_filename": "Schacherl_Michael_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16f.", "author": "", "orig_id": 1405911}}, {"model": "metainfo.source", "pk": 4631, "fields": {"orig_filename": "Schachinger_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 17", "author": "", "orig_id": 1405910}}, {"model": "metainfo.source", "pk": 4632, "fields": {"orig_filename": "Schachinger_Norbert_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 17", "author": "", "orig_id": 1405912}}, {"model": "metainfo.source", "pk": 4633, "fields": {"orig_filename": "Schachinger_Rudolf_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18", "author": "", "orig_id": 1405913}}, {"model": "metainfo.source", "pk": 4634, "fields": {"orig_filename": "Schachleiter_Alban_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18", "author": "", "orig_id": 1405914}}, {"model": "metainfo.source", "pk": 4635, "fields": {"orig_filename": "Schachner_Friedrich_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18f.", "author": "", "orig_id": 1405915}}, {"model": "metainfo.source", "pk": 4636, "fields": {"orig_filename": "Schachner_Josef-Rudolf_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 19", "author": "", "orig_id": 1405916}}, {"model": "metainfo.source", "pk": 4637, "fields": {"orig_filename": "Schack_Adolf-Wilhelm_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 19f.", "author": "", "orig_id": 1405917}}, {"model": "metainfo.source", "pk": 4638, "fields": {"orig_filename": "Schack_Benedikt-Emanuel_1758_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 20", "author": "", "orig_id": 1405918}}, {"model": "metainfo.source", "pk": 4639, "fields": {"orig_filename": "Schack_Friedrich-Otto_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405919}}, {"model": "metainfo.source", "pk": 4640, "fields": {"orig_filename": "Schadek_Moriz_1840_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405920}}, {"model": "metainfo.source", "pk": 4641, "fields": {"orig_filename": "Schaden_Karl_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405921}}, {"model": "metainfo.source", "pk": 4642, "fields": {"orig_filename": "Schader_Alois_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21f.", "author": "", "orig_id": 1405922}}, {"model": "metainfo.source", "pk": 4643, "fields": {"orig_filename": "Schadetzky_Karl_1792_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22", "author": "", "orig_id": 1405923}}, {"model": "metainfo.source", "pk": 4644, "fields": {"orig_filename": "Schaedler_Johann-Georg_1777_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22", "author": "", "orig_id": 1405924}}, {"model": "metainfo.source", "pk": 4645, "fields": {"orig_filename": "Schaefer_Anton_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22f.", "author": "", "orig_id": 1405925}}, {"model": "metainfo.source", "pk": 4646, "fields": {"orig_filename": "Schaefer_Hugo_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 23", "author": "", "orig_id": 1405926}}, {"model": "metainfo.source", "pk": 4647, "fields": {"orig_filename": "Schaeffer-Wienwald_August_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 24", "author": "", "orig_id": 1405928}}, {"model": "metainfo.source", "pk": 4648, "fields": {"orig_filename": "Schaeffer_Georg-Sylvester_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 23f.", "author": "", "orig_id": 1405927}}, {"model": "metainfo.source", "pk": 4649, "fields": {"orig_filename": "Schaeffler_Theodor-Heinrich-Otto_1838_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 25f.", "author": "", "orig_id": 1405930}}, {"model": "metainfo.source", "pk": 4650, "fields": {"orig_filename": "Schaeffle_Albert-Eberhard-Friedrich_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 24f.", "author": "", "orig_id": 1405929}}, {"model": "metainfo.source", "pk": 4651, "fields": {"orig_filename": "Schaelzky_Robert_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 26", "author": "", "orig_id": 1405931}}, {"model": "metainfo.source", "pk": 4652, "fields": {"orig_filename": "Schaffenrath_Alois_1794_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 26f.", "author": "", "orig_id": 1405932}}, {"model": "metainfo.source", "pk": 4653, "fields": {"orig_filename": "Schaffer_Alexander_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 27", "author": "", "orig_id": 1405933}}, {"model": "metainfo.source", "pk": 4654, "fields": {"orig_filename": "Schaffer_Josef_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 27f.", "author": "", "orig_id": 1405934}}, {"model": "metainfo.source", "pk": 4655, "fields": {"orig_filename": "Schaffer_Karoly_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28", "author": "", "orig_id": 1405935}}, {"model": "metainfo.source", "pk": 4656, "fields": {"orig_filename": "Schaffgotsch_Johann-Anton-Ernst_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28", "author": "", "orig_id": 1405936}}, {"model": "metainfo.source", "pk": 4657, "fields": {"orig_filename": "Schaffgotsch_Levin-Gotthard_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28f.", "author": "", "orig_id": 1405937}}, {"model": "metainfo.source", "pk": 4658, "fields": {"orig_filename": "Schaffgotsch_Mechthild-Maria-Vom-Armen-Kinde-Jesus_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 29", "author": "", "orig_id": 1405938}}, {"model": "metainfo.source", "pk": 4659, "fields": {"orig_filename": "Schaffner_Max_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 29", "author": "", "orig_id": 1405939}}, {"model": "metainfo.source", "pk": 4660, "fields": {"orig_filename": "Schafzahl_Franz-X_1767_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30", "author": "", "orig_id": 1405940}}, {"model": "metainfo.source", "pk": 4661, "fields": {"orig_filename": "Schager-Eckartsau_Albin_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30", "author": "", "orig_id": 1405941}}, {"model": "metainfo.source", "pk": 4662, "fields": {"orig_filename": "Schalit_Leon_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30f.", "author": "", "orig_id": 1405942}}, {"model": "metainfo.source", "pk": 4663, "fields": {"orig_filename": "Schalk_Franz_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 31f.", "author": "", "orig_id": 1405943}}, {"model": "metainfo.source", "pk": 4664, "fields": {"orig_filename": "Schalk_Josef_1857_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 32", "author": "", "orig_id": 1405944}}, {"model": "metainfo.source", "pk": 4665, "fields": {"orig_filename": "Schalk_Karl_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 32f.", "author": "", "orig_id": 1405945}}, {"model": "metainfo.source", "pk": 4666, "fields": {"orig_filename": "Schall-Falkenforst_Josef_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 33", "author": "", "orig_id": 1405946}}, {"model": "metainfo.source", "pk": 4667, "fields": {"orig_filename": "Schaller_Anton-Ferdinand_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 33f.", "author": "", "orig_id": 1405947}}, {"model": "metainfo.source", "pk": 4668, "fields": {"orig_filename": "Schaller_Georg_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34", "author": "", "orig_id": 1405948}}, {"model": "metainfo.source", "pk": 4669, "fields": {"orig_filename": "Schaller_Gustav_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34", "author": "", "orig_id": 1405949}}, {"model": "metainfo.source", "pk": 4670, "fields": {"orig_filename": "Schaller_Johann-Nep_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34f.", "author": "", "orig_id": 1405950}}, {"model": "metainfo.source", "pk": 4671, "fields": {"orig_filename": "Schaller_Ludwig_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35", "author": "", "orig_id": 1405951}}, {"model": "metainfo.source", "pk": 4672, "fields": {"orig_filename": "Schallgruber_Josef-Franz_1769_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35", "author": "", "orig_id": 1405952}}, {"model": "metainfo.source", "pk": 4673, "fields": {"orig_filename": "Schamann_Franz_1876_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35f.", "author": "", "orig_id": 1405953}}, {"model": "metainfo.source", "pk": 4674, "fields": {"orig_filename": "Schamberger_Frantisek-X_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36", "author": "", "orig_id": 1406092}}, {"model": "metainfo.source", "pk": 4675, "fields": {"orig_filename": "Schamberger_Julie_1846_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36", "author": "", "orig_id": 1406093}}, {"model": "metainfo.source", "pk": 4676, "fields": {"orig_filename": "Schamschula_Rudolf_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 37f.", "author": "", "orig_id": 1406096}}, {"model": "metainfo.source", "pk": 4677, "fields": {"orig_filename": "Schams_Franz-Josef_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36f.", "author": "", "orig_id": 1406094}}, {"model": "metainfo.source", "pk": 4678, "fields": {"orig_filename": "Schams_Franz-X_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 37", "author": "", "orig_id": 1406095}}, {"model": "metainfo.source", "pk": 4679, "fields": {"orig_filename": "Schanilec_Josef_1860_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 38", "author": "", "orig_id": 1406097}}, {"model": "metainfo.source", "pk": 4680, "fields": {"orig_filename": "Schantl_Josef-Hermann_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 38f.", "author": "", "orig_id": 1406098}}, {"model": "metainfo.source", "pk": 4681, "fields": {"orig_filename": "Schanzer_Rudolf_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39", "author": "", "orig_id": 1406099}}, {"model": "metainfo.source", "pk": 4682, "fields": {"orig_filename": "Schanzer_Stanislaus_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39", "author": "", "orig_id": 1406100}}, {"model": "metainfo.source", "pk": 4683, "fields": {"orig_filename": "Schapira_Chaim-Elazar_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39f.", "author": "", "orig_id": 1406101}}, {"model": "metainfo.source", "pk": 4684, "fields": {"orig_filename": "Schapira_Meir_1887_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40", "author": "", "orig_id": 1406102}}, {"model": "metainfo.source", "pk": 4685, "fields": {"orig_filename": "Schapira_Zevi-Hirsch_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40", "author": "", "orig_id": 1406104}}, {"model": "metainfo.source", "pk": 4686, "fields": {"orig_filename": "Scharff_Anton_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41f.", "author": "", "orig_id": 1406107}}, {"model": "metainfo.source", "pk": 4687, "fields": {"orig_filename": "Scharf_Alexander_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40f.", "author": "", "orig_id": 1406103}}, {"model": "metainfo.source", "pk": 4688, "fields": {"orig_filename": "Scharf_Jakub_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41", "author": "", "orig_id": 1406105}}, {"model": "metainfo.source", "pk": 4689, "fields": {"orig_filename": "Scharf_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41", "author": "", "orig_id": 1406106}}, {"model": "metainfo.source", "pk": 4690, "fields": {"orig_filename": "Schariczer-Reny_Georg_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 42", "author": "", "orig_id": 1406108}}, {"model": "metainfo.source", "pk": 4691, "fields": {"orig_filename": "Scharizer_Rudolf_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 42f.", "author": "", "orig_id": 1406109}}, {"model": "metainfo.source", "pk": 4692, "fields": {"orig_filename": "Scharschmid-Adlertreu_Franz_1800_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43", "author": "", "orig_id": 1406110}}, {"model": "metainfo.source", "pk": 4693, "fields": {"orig_filename": "Scharschmid-Adlertreu_Maximilian_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43", "author": "", "orig_id": 1406111}}, {"model": "metainfo.source", "pk": 4694, "fields": {"orig_filename": "Schartner_Gilbert_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43f.", "author": "", "orig_id": 1406112}}, {"model": "metainfo.source", "pk": 4695, "fields": {"orig_filename": "Schaschl_Johann_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44", "author": "", "orig_id": 1406113}}, {"model": "metainfo.source", "pk": 4696, "fields": {"orig_filename": "Schaser_Johann-Georg_1792_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44", "author": "", "orig_id": 1406114}}, {"model": "metainfo.source", "pk": 4697, "fields": {"orig_filename": "Schattenfroh_Arthur_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44f.", "author": "", "orig_id": 1406115}}, {"model": "metainfo.source", "pk": 4698, "fields": {"orig_filename": "Schatzmayr_Wilhelm_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 46", "author": "", "orig_id": 1406118}}, {"model": "metainfo.source", "pk": 4699, "fields": {"orig_filename": "Schatz_Adelgott_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 45", "author": "", "orig_id": 1406116}}, {"model": "metainfo.source", "pk": 4700, "fields": {"orig_filename": "Schatz_Josef_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 45f.", "author": "", "orig_id": 1406117}}, {"model": "metainfo.source", "pk": 4701, "fields": {"orig_filename": "Schaub_Franz_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 46f.", "author": "", "orig_id": 1406119}}, {"model": "metainfo.source", "pk": 4702, "fields": {"orig_filename": "Schauenstein_Adolf_1827_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 47", "author": "", "orig_id": 1406120}}, {"model": "metainfo.source", "pk": 4703, "fields": {"orig_filename": "Schauenstein_Anton_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 47", "author": "", "orig_id": 1406121}}, {"model": "metainfo.source", "pk": 4704, "fields": {"orig_filename": "Schauenstein_Walther_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48", "author": "", "orig_id": 1406122}}, {"model": "metainfo.source", "pk": 4705, "fields": {"orig_filename": "Schauer_Antonin_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48", "author": "", "orig_id": 1406123}}, {"model": "metainfo.source", "pk": 4706, "fields": {"orig_filename": "Schauer_Hubert-Gordon_1862_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48f.", "author": "", "orig_id": 1406124}}, {"model": "metainfo.source", "pk": 4707, "fields": {"orig_filename": "Schauer_Hugo_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 49", "author": "", "orig_id": 1406125}}, {"model": "metainfo.source", "pk": 4708, "fields": {"orig_filename": "Schauer_Johann_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 49f.", "author": "", "orig_id": 1406126}}, {"model": "metainfo.source", "pk": 4709, "fields": {"orig_filename": "Schaukal_Richard_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 50f.", "author": "", "orig_id": 1406127}}, {"model": "metainfo.source", "pk": 4710, "fields": {"orig_filename": "Schaumann-Fuerstenburg_Franz_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 51f.", "author": "", "orig_id": 1406128}}, {"model": "metainfo.source", "pk": 4711, "fields": {"orig_filename": "Schaumburg_Karl_1770_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 52", "author": "", "orig_id": 1406129}}, {"model": "metainfo.source", "pk": 4712, "fields": {"orig_filename": "Schaup_Wilhelm_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 52f.", "author": "", "orig_id": 1406130}}, {"model": "metainfo.source", "pk": 4713, "fields": {"orig_filename": "Schaurhofer_August_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 53", "author": "", "orig_id": 1406131}}, {"model": "metainfo.source", "pk": 4714, "fields": {"orig_filename": "Schauta_Friedrich_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 53f.", "author": "", "orig_id": 1406132}}, {"model": "metainfo.source", "pk": 4715, "fields": {"orig_filename": "Schawerda_Karl_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 54", "author": "", "orig_id": 1406133}}, {"model": "metainfo.source", "pk": 4716, "fields": {"orig_filename": "Schebek_Edmund_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 54f.", "author": "", "orig_id": 1406134}}, {"model": "metainfo.source", "pk": 4717, "fields": {"orig_filename": "Schebek_Gabriel_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 55", "author": "", "orig_id": 1406135}}, {"model": "metainfo.source", "pk": 4718, "fields": {"orig_filename": "Schebest_Agnese_1813_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 55f.", "author": "", "orig_id": 1406136}}, {"model": "metainfo.source", "pk": 4719, "fields": {"orig_filename": "Scheck_Ferdinand_1827_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 56", "author": "", "orig_id": 1406137}}, {"model": "metainfo.source", "pk": 4720, "fields": {"orig_filename": "Scheda_Josef_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 56f.", "author": "", "orig_id": 1406138}}, {"model": "metainfo.source", "pk": 4721, "fields": {"orig_filename": "Schedius_Lajos-Janos_1768_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 57", "author": "", "orig_id": 1406139}}, {"model": "metainfo.source", "pk": 4722, "fields": {"orig_filename": "Sandrinelli_Luigi_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413", "author": "", "orig_id": 1407974}}, {"model": "metainfo.source", "pk": 4723, "fields": {"orig_filename": "Sandri_Giulio_1789_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413", "author": "", "orig_id": 1407973}}, {"model": "metainfo.source", "pk": 4724, "fields": {"orig_filename": "Sandrock_Adele_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413f.", "author": "", "orig_id": 1407975}}, {"model": "metainfo.source", "pk": 4725, "fields": {"orig_filename": "Sanguszko_Eustachy-Stanislaw_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 414f.", "author": "", "orig_id": 1407976}}, {"model": "metainfo.source", "pk": 4726, "fields": {"orig_filename": "Sanguszko_Wladyslaw-Hieronim_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 415", "author": "", "orig_id": 1407977}}, {"model": "metainfo.source", "pk": 4727, "fields": {"orig_filename": "Santel_Aleksander_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 415f.", "author": "", "orig_id": 1407979}}, {"model": "metainfo.source", "pk": 4728, "fields": {"orig_filename": "Santel_Avgusta_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416", "author": "", "orig_id": 1407980}}, {"model": "metainfo.source", "pk": 4729, "fields": {"orig_filename": "Santel_Henrietta_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416", "author": "", "orig_id": 1407981}}, {"model": "metainfo.source", "pk": 4730, "fields": {"orig_filename": "Santifaller_Maria-Christina_1904_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422698}}, {"model": "metainfo.source", "pk": 4731, "fields": {"orig_filename": "Santini_Giovanni_1787_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 417", "author": "", "orig_id": 1407983}}, {"model": "metainfo.source", "pk": 4732, "fields": {"orig_filename": "Santi_Sebastiano_1789_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416f.", "author": "", "orig_id": 1407982}}, {"model": "metainfo.source", "pk": 4733, "fields": {"orig_filename": "Santner_Johann_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 417f.", "author": "", "orig_id": 1407984}}, {"model": "metainfo.source", "pk": 4734, "fields": {"orig_filename": "Santner_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 418", "author": "", "orig_id": 1407985}}, {"model": "metainfo.source", "pk": 4735, "fields": {"orig_filename": "Santoni_Giuseppe_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 418f.", "author": "", "orig_id": 1407986}}, {"model": "metainfo.source", "pk": 4736, "fields": {"orig_filename": "Sanzin_Rudolf_1874_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 419", "author": "", "orig_id": 1407987}}, {"model": "metainfo.source", "pk": 4737, "fields": {"orig_filename": "Saphir_Moritz-Gottlieb_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 419f.", "author": "", "orig_id": 1407988}}, {"model": "metainfo.source", "pk": 4738, "fields": {"orig_filename": "Sapieha_Adam-Stanislaw_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 420f.", "author": "", "orig_id": 1407989}}, {"model": "metainfo.source", "pk": 4739, "fields": {"orig_filename": "Sapieha_Leon_1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 421", "author": "", "orig_id": 1407991}}, {"model": "metainfo.source", "pk": 4740, "fields": {"orig_filename": "Sapieha_Wladyslaw-Leon_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 421f.", "author": "", "orig_id": 1407990}}, {"model": "metainfo.source", "pk": 4741, "fields": {"orig_filename": "Sapik_Vojtech_1888_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 422", "author": "", "orig_id": 1407992}}, {"model": "metainfo.source", "pk": 4742, "fields": {"orig_filename": "Saporiti_Teresa_1763_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 422f.", "author": "", "orig_id": 1407993}}, {"model": "metainfo.source", "pk": 4743, "fields": {"orig_filename": "Sarbu_Ion_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407994}}, {"model": "metainfo.source", "pk": 4744, "fields": {"orig_filename": "Sardagna-Meanberg-Hohenstein_Carlo-Emanuele_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407995}}, {"model": "metainfo.source", "pk": 4745, "fields": {"orig_filename": "Sardagna-Meanberg-Hohenstein_Josef_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407996}}, {"model": "metainfo.source", "pk": 4746, "fields": {"orig_filename": "Sare_Jozef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423f.", "author": "", "orig_id": 1407997}}, {"model": "metainfo.source", "pk": 4747, "fields": {"orig_filename": "Sarg_Johann-Heinrich-Karl_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 424", "author": "", "orig_id": 1407998}}, {"model": "metainfo.source", "pk": 4748, "fields": {"orig_filename": "Sarkotic-Lovcen_Stefan_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 424f.", "author": "", "orig_id": 1407999}}, {"model": "metainfo.source", "pk": 4749, "fields": {"orig_filename": "Sarna_Wladyslaw_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 425f.", "author": "", "orig_id": 1408000}}, {"model": "metainfo.source", "pk": 4750, "fields": {"orig_filename": "Sarnecki_Zygmunt_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426", "author": "", "orig_id": 1408001}}, {"model": "metainfo.source", "pk": 4751, "fields": {"orig_filename": "Sarnicki_Klemens_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426", "author": "", "orig_id": 1408002}}, {"model": "metainfo.source", "pk": 4752, "fields": {"orig_filename": "Sarnthein_Ludwig_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426f.", "author": "", "orig_id": 1408003}}, {"model": "metainfo.source", "pk": 4753, "fields": {"orig_filename": "Sarosi-Poka_Lajos_1816_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427", "author": "", "orig_id": 1408004}}, {"model": "metainfo.source", "pk": 4754, "fields": {"orig_filename": "Sartorelli_Giambattista_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427", "author": "", "orig_id": 1408005}}, {"model": "metainfo.source", "pk": 4755, "fields": {"orig_filename": "Sartori-Montecroce_Tullius_1862_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 428f.", "author": "", "orig_id": 1408007}}, {"model": "metainfo.source", "pk": 4756, "fields": {"orig_filename": "Sartorio_Giovanni-Guglielmo_1789_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429", "author": "", "orig_id": 1408008}}, {"model": "metainfo.source", "pk": 4757, "fields": {"orig_filename": "Sartori_Franz_1782_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427f.", "author": "", "orig_id": 1408006}}, {"model": "metainfo.source", "pk": 4758, "fields": {"orig_filename": "Sartory_Dominikus-A-Jesu-Maria_1809_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429", "author": "", "orig_id": 1408009}}, {"model": "metainfo.source", "pk": 4759, "fields": {"orig_filename": "Sartory_Johann_1759_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429f.", "author": "", "orig_id": 1408010}}, {"model": "metainfo.source", "pk": 4760, "fields": {"orig_filename": "Sartory_Josefa_1771_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 430f.", "author": "", "orig_id": 1408011}}, {"model": "metainfo.source", "pk": 4761, "fields": {"orig_filename": "Sarvary_Pal_1765_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431", "author": "", "orig_id": 1408012}}, {"model": "metainfo.source", "pk": 4762, "fields": {"orig_filename": "Saselj_Ivan-Feliks_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431", "author": "", "orig_id": 1408013}}, {"model": "metainfo.source", "pk": 4763, "fields": {"orig_filename": "Sasinek_Frantisek_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431f.", "author": "", "orig_id": 1408014}}, {"model": "metainfo.source", "pk": 4764, "fields": {"orig_filename": "Saska_Leo-Frantisek_1832_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 432", "author": "", "orig_id": 1408015}}, {"model": "metainfo.source", "pk": 4765, "fields": {"orig_filename": "Saskevyc_Markijan_1811_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 432f.", "author": "", "orig_id": 1408016}}, {"model": "metainfo.source", "pk": 4766, "fields": {"orig_filename": "Sasko_Martin_1807_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 433", "author": "", "orig_id": 1408018}}, {"model": "metainfo.source", "pk": 4767, "fields": {"orig_filename": "Sasku_Karoly_1806_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 433f.", "author": "", "orig_id": 1408017}}, {"model": "metainfo.source", "pk": 4768, "fields": {"orig_filename": "Sassmann_Hanns_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434", "author": "", "orig_id": 1408019}}, {"model": "metainfo.source", "pk": 4769, "fields": {"orig_filename": "Satke_Otto_1898_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434", "author": "", "orig_id": 1408020}}, {"model": "metainfo.source", "pk": 4770, "fields": {"orig_filename": "Satter_Gustav_1832_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434f.", "author": "", "orig_id": 1408021}}, {"model": "metainfo.source", "pk": 4771, "fields": {"orig_filename": "Sattler_Hubert_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 435", "author": "", "orig_id": 1408022}}, {"model": "metainfo.source", "pk": 4772, "fields": {"orig_filename": "Sattler_Johann-Michael_1786_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 435f.", "author": "", "orig_id": 1408023}}, {"model": "metainfo.source", "pk": 4773, "fields": {"orig_filename": "Sattler_Josef-Ignaz_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 436", "author": "", "orig_id": 1408024}}, {"model": "metainfo.source", "pk": 4774, "fields": {"orig_filename": "Sattner_Hugolin_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 436f.", "author": "", "orig_id": 1408025}}, {"model": "metainfo.source", "pk": 4775, "fields": {"orig_filename": "Saturnik_Theodor_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 437", "author": "", "orig_id": 1408026}}, {"model": "metainfo.source", "pk": 4776, "fields": {"orig_filename": "Saudek_Emil_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 437", "author": "", "orig_id": 1408027}}, {"model": "metainfo.source", "pk": 4777, "fields": {"orig_filename": "Saudek_Robert_1880_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 438", "author": "", "orig_id": 1408028}}, {"model": "metainfo.source", "pk": 4778, "fields": {"orig_filename": "Sauer-Aichried_Emil-Georg_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 442f.", "author": "", "orig_id": 1408037}}, {"model": "metainfo.source", "pk": 4779, "fields": {"orig_filename": "Sauer-Csaky-Nordendorf_Eugen_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 443", "author": "", "orig_id": 1408038}}, {"model": "metainfo.source", "pk": 4780, "fields": {"orig_filename": "Sauer_August_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 438f.", "author": "", "orig_id": 1408029}}, {"model": "metainfo.source", "pk": 4781, "fields": {"orig_filename": "Sauer_Edmund_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 439f.", "author": "", "orig_id": 1408030}}, {"model": "metainfo.source", "pk": 4782, "fields": {"orig_filename": "Sauer_Georg_1802_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440", "author": "", "orig_id": 1408031}}, {"model": "metainfo.source", "pk": 4783, "fields": {"orig_filename": "Sauer_Ignac_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440", "author": "", "orig_id": 1408032}}, {"model": "metainfo.source", "pk": 4784, "fields": {"orig_filename": "Sauer_Ignaz_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440f.", "author": "", "orig_id": 1408033}}, {"model": "metainfo.source", "pk": 4785, "fields": {"orig_filename": "Sauer_Julius_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 441", "author": "", "orig_id": 1408034}}, {"model": "metainfo.source", "pk": 4786, "fields": {"orig_filename": "Sauer_Karl_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 441f.", "author": "", "orig_id": 1408035}}, {"model": "metainfo.source", "pk": 4787, "fields": {"orig_filename": "Sauer_Wilhelm_1892_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 442", "author": "", "orig_id": 1408036}}, {"model": "metainfo.source", "pk": 4788, "fields": {"orig_filename": "Saulich_Angelo_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 444", "author": "", "orig_id": 1408040}}, {"model": "metainfo.source", "pk": 4789, "fields": {"orig_filename": "Saul_Friedrich-Karl-Theodor_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 443f.", "author": "", "orig_id": 1408039}}, {"model": "metainfo.source", "pk": 4790, "fields": {"orig_filename": "Saurau_Franz-Josef_1760_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 444f.", "author": "", "orig_id": 1408041}}, {"model": "metainfo.source", "pk": 4791, "fields": {"orig_filename": "Sauter_Andreas_1802_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 445", "author": "", "orig_id": 1408042}}, {"model": "metainfo.source", "pk": 4792, "fields": {"orig_filename": "Sauter_Benedikt_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 446", "author": "", "orig_id": 1408044}}, {"model": "metainfo.source", "pk": 4793, "fields": {"orig_filename": "Sauter_Ferdinand_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 446f.", "author": "", "orig_id": 1408045}}, {"model": "metainfo.source", "pk": 4794, "fields": {"orig_filename": "Savart_Louis_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447", "author": "", "orig_id": 1408047}}, {"model": "metainfo.source", "pk": 4795, "fields": {"orig_filename": "Savic_Gavro_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447f.", "author": "", "orig_id": 1408049}}, {"model": "metainfo.source", "pk": 4796, "fields": {"orig_filename": "Savic_Tonka_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 448", "author": "", "orig_id": 1408050}}, {"model": "metainfo.source", "pk": 4797, "fields": {"orig_filename": "Savic_Zarko_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 448", "author": "", "orig_id": 1408051}}, {"model": "metainfo.source", "pk": 4798, "fields": {"orig_filename": "Savinsek_Slavko_1897_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1", "author": "", "orig_id": 1405974}}, {"model": "metainfo.source", "pk": 4799, "fields": {"orig_filename": "Savio_Franz-Leopold_1801_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1", "author": "", "orig_id": 1405975}}, {"model": "metainfo.source", "pk": 4800, "fields": {"orig_filename": "Savits_Jocza_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1f.", "author": "", "orig_id": 1405976}}, {"model": "metainfo.source", "pk": 4801, "fields": {"orig_filename": "Sawczynski_Henryk_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 2", "author": "", "orig_id": 1405977}}, {"model": "metainfo.source", "pk": 4802, "fields": {"orig_filename": "Sawczynski_Zygmunt_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 2f.", "author": "", "orig_id": 1405978}}, {"model": "metainfo.source", "pk": 4803, "fields": {"orig_filename": "Sawicki-Stella_Jan_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 4", "author": "", "orig_id": 1405982}}, {"model": "metainfo.source", "pk": 4804, "fields": {"orig_filename": "Sawicki_Edward_1833_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3", "author": "", "orig_id": 1405979}}, {"model": "metainfo.source", "pk": 4805, "fields": {"orig_filename": "Sawicki_Karl-Nikolaus_1792_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3", "author": "", "orig_id": 1405980}}, {"model": "metainfo.source", "pk": 4806, "fields": {"orig_filename": "Sawicki_Ludomir_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3f.", "author": "", "orig_id": 1405981}}, {"model": "metainfo.source", "pk": 4807, "fields": {"orig_filename": "Sawiczewski_Florian_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 4f.", "author": "", "orig_id": 1405983}}, {"model": "metainfo.source", "pk": 4808, "fields": {"orig_filename": "Sawiczewski_Julian-Jozef_1795_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5", "author": "", "orig_id": 1405984}}, {"model": "metainfo.source", "pk": 4809, "fields": {"orig_filename": "Saxeneder_Josef_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 6f.", "author": "", "orig_id": 1405987}}, {"model": "metainfo.source", "pk": 4810, "fields": {"orig_filename": "Saxl_Friedrich_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7", "author": "", "orig_id": 1405988}}, {"model": "metainfo.source", "pk": 4811, "fields": {"orig_filename": "Saxl_Ignaz_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7", "author": "", "orig_id": 1405989}}, {"model": "metainfo.source", "pk": 4812, "fields": {"orig_filename": "Saxl_Maximilian_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7f.", "author": "", "orig_id": 1405990}}, {"model": "metainfo.source", "pk": 4813, "fields": {"orig_filename": "Saxl_Paul_1880_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 8", "author": "", "orig_id": 1405991}}, {"model": "metainfo.source", "pk": 4814, "fields": {"orig_filename": "Sax_Emanuel-Hans_1857_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5", "author": "", "orig_id": 1406984}}, {"model": "metainfo.source", "pk": 4815, "fields": {"orig_filename": "Sax_Emil_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5f.", "author": "", "orig_id": 1405985}}, {"model": "metainfo.source", "pk": 4816, "fields": {"orig_filename": "Sax_Josef_1761_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 6", "author": "", "orig_id": 1405986}}, {"model": "metainfo.source", "pk": 4817, "fields": {"orig_filename": "Sbiera_Ion-Gheorghe_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 8f.", "author": "", "orig_id": 1405992}}, {"model": "metainfo.source", "pk": 4818, "fields": {"orig_filename": "Sbiera_Radu_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9", "author": "", "orig_id": 1405993}}, {"model": "metainfo.source", "pk": 4819, "fields": {"orig_filename": "Sbrizaj_Ivan_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9", "author": "", "orig_id": 1405994}}, {"model": "metainfo.source", "pk": 4820, "fields": {"orig_filename": "Scala_Arthur_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9f.", "author": "", "orig_id": 1405995}}, {"model": "metainfo.source", "pk": 4821, "fields": {"orig_filename": "Scala_Ferdinand_1866_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 10", "author": "", "orig_id": 1405996}}, {"model": "metainfo.source", "pk": 4822, "fields": {"orig_filename": "Scala_Rudolf_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 10f.", "author": "", "orig_id": 1405997}}, {"model": "metainfo.source", "pk": 4823, "fields": {"orig_filename": "Scalvini_Giovita_1791_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 11f.", "author": "", "orig_id": 1405998}}, {"model": "metainfo.source", "pk": 4824, "fields": {"orig_filename": "Sachse-Rothenberg_Friedrich_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370", "author": "", "orig_id": 1407818}}, {"model": "metainfo.source", "pk": 4825, "fields": {"orig_filename": "Sachsel_Siegmund_1873_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370", "author": "", "orig_id": 1407819}}, {"model": "metainfo.source", "pk": 4826, "fields": {"orig_filename": "Sachsen-Coburg-Gotha_Ferdinand-August-Georg_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370f.", "author": "", "orig_id": 1407820}}, {"model": "metainfo.source", "pk": 4827, "fields": {"orig_filename": "Sachsen-Coburg-Gotha_Ferdinand-Philipp_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 371", "author": "", "orig_id": 1407822}}, {"model": "metainfo.source", "pk": 4828, "fields": {"orig_filename": "Sachs_Moriz_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369", "author": "", "orig_id": 1407815}}, {"model": "metainfo.source", "pk": 4829, "fields": {"orig_filename": "Sacken_Adolf_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 371f.", "author": "", "orig_id": 1407824}}, {"model": "metainfo.source", "pk": 4830, "fields": {"orig_filename": "Sacken_Eduard_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 372f.", "author": "", "orig_id": 1407730}}, {"model": "metainfo.source", "pk": 4831, "fields": {"orig_filename": "Sadger_Isidor_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373", "author": "", "orig_id": 1407731}}, {"model": "metainfo.source", "pk": 4832, "fields": {"orig_filename": "Sadil_Meinrad_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373", "author": "", "orig_id": 1407732}}, {"model": "metainfo.source", "pk": 4833, "fields": {"orig_filename": "Sadleder_Karl_1883_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373f.", "author": "", "orig_id": 1407733}}, {"model": "metainfo.source", "pk": 4834, "fields": {"orig_filename": "Sadler_Josef_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374", "author": "", "orig_id": 1407734}}, {"model": "metainfo.source", "pk": 4835, "fields": {"orig_filename": "Sadlowski_Wladyslaw_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374", "author": "", "orig_id": 1407736}}, {"model": "metainfo.source", "pk": 4836, "fields": {"orig_filename": "Sadowski_Jan-Nep_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374f.", "author": "", "orig_id": 1407737}}, {"model": "metainfo.source", "pk": 4837, "fields": {"orig_filename": "Safarik_Pavel-Josef_1795_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 375f.", "author": "", "orig_id": 1407738}}, {"model": "metainfo.source", "pk": 4838, "fields": {"orig_filename": "Safarik_Vojtech_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 376", "author": "", "orig_id": 1407739}}, {"model": "metainfo.source", "pk": 4839, "fields": {"orig_filename": "Saff_Vojtech-Eduard_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 376f.", "author": "", "orig_id": 1407740}}, {"model": "metainfo.source", "pk": 4840, "fields": {"orig_filename": "Safranek_Frantisek_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377", "author": "", "orig_id": 1407741}}, {"model": "metainfo.source", "pk": 4841, "fields": {"orig_filename": "Safranek_Jan_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377", "author": "", "orig_id": 1407742}}, {"model": "metainfo.source", "pk": 4842, "fields": {"orig_filename": "Sagredo_Agostino_1798_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377f.", "author": "", "orig_id": 1407743}}, {"model": "metainfo.source", "pk": 4843, "fields": {"orig_filename": "Saguna_Andreiu_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 378", "author": "", "orig_id": 1407745}}, {"model": "metainfo.source", "pk": 4844, "fields": {"orig_filename": "Sahla_Richard_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379", "author": "", "orig_id": 1407746}}, {"model": "metainfo.source", "pk": 4845, "fields": {"orig_filename": "Sahulka_Johann_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379", "author": "", "orig_id": 1407747}}, {"model": "metainfo.source", "pk": 4846, "fields": {"orig_filename": "Sailer_Franz_1792_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379f.", "author": "", "orig_id": 1407748}}, {"model": "metainfo.source", "pk": 4847, "fields": {"orig_filename": "Sailer_Josef_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380", "author": "", "orig_id": 1407750}}, {"model": "metainfo.source", "pk": 4848, "fields": {"orig_filename": "Sailer_Leopold_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380", "author": "", "orig_id": 1407751}}, {"model": "metainfo.source", "pk": 4849, "fields": {"orig_filename": "Saint-Julien-Wallsee_Klemens_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407753}}, {"model": "metainfo.source", "pk": 4850, "fields": {"orig_filename": "Sain_Isidoro_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380f.", "author": "", "orig_id": 1407752}}, {"model": "metainfo.source", "pk": 4851, "fields": {"orig_filename": "Sajevic_Aleksandar_1843_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407754}}, {"model": "metainfo.source", "pk": 4852, "fields": {"orig_filename": "Sajevic_Ivana_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407755}}, {"model": "metainfo.source", "pk": 4853, "fields": {"orig_filename": "Sakser_Frank_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381f.", "author": "", "orig_id": 1407756}}, {"model": "metainfo.source", "pk": 4854, "fields": {"orig_filename": "Salaba_August_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382", "author": "", "orig_id": 1407757}}, {"model": "metainfo.source", "pk": 4855, "fields": {"orig_filename": "Salaba_Josef_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382", "author": "", "orig_id": 1407758}}, {"model": "metainfo.source", "pk": 4856, "fields": {"orig_filename": "Salamon_Ferenc_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382f.", "author": "", "orig_id": 1407759}}, {"model": "metainfo.source", "pk": 4857, "fields": {"orig_filename": "Salamon_Jozsef_1790_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 383", "author": "", "orig_id": 1407760}}, {"model": "metainfo.source", "pk": 4858, "fields": {"orig_filename": "Salata_Francesco_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 383f.", "author": "", "orig_id": 1407761}}, {"model": "metainfo.source", "pk": 4859, "fields": {"orig_filename": "Salcher_Josef_1861_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 384", "author": "", "orig_id": 1407763}}, {"model": "metainfo.source", "pk": 4860, "fields": {"orig_filename": "Salcher_Mathias_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 384", "author": "", "orig_id": 1407764}}, {"model": "metainfo.source", "pk": 4861, "fields": {"orig_filename": "Salcher_Robert_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385", "author": "", "orig_id": 1407765}}, {"model": "metainfo.source", "pk": 4862, "fields": {"orig_filename": "Salcher_Rudolf_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385", "author": "", "orig_id": 1407766}}, {"model": "metainfo.source", "pk": 4863, "fields": {"orig_filename": "Salda_Frantisek-X_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385f.", "author": "", "orig_id": 1407767}}, {"model": "metainfo.source", "pk": 4864, "fields": {"orig_filename": "Salghetti-Drioli_Franjo_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 386", "author": "", "orig_id": 1407768}}, {"model": "metainfo.source", "pk": 4865, "fields": {"orig_filename": "Salgo_Jakab_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 386f.", "author": "", "orig_id": 1407769}}, {"model": "metainfo.source", "pk": 4866, "fields": {"orig_filename": "Salieri_Antonio_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 387", "author": "", "orig_id": 1407770}}, {"model": "metainfo.source", "pk": 4867, "fields": {"orig_filename": "Salis-Samaden_Karl_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 387f.", "author": "", "orig_id": 1407771}}, {"model": "metainfo.source", "pk": 4868, "fields": {"orig_filename": "Salis-Seewis_Johann-Ulrich_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 388", "author": "", "orig_id": 1407772}}, {"model": "metainfo.source", "pk": 4869, "fields": {"orig_filename": "Salis-Soglio_Daniel_1826_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 388f.", "author": "", "orig_id": 1407773}}, {"model": "metainfo.source", "pk": 4870, "fields": {"orig_filename": "Salkind_Alexander_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389", "author": "", "orig_id": 1407774}}, {"model": "metainfo.source", "pk": 4871, "fields": {"orig_filename": "Sallinger_Richard_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389", "author": "", "orig_id": 1407775}}, {"model": "metainfo.source", "pk": 4872, "fields": {"orig_filename": "Sallmayer_Hermann-Karl_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389f.", "author": "", "orig_id": 1407776}}, {"model": "metainfo.source", "pk": 4873, "fields": {"orig_filename": "Salm-Reifferscheidt_Franz-X_1749_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 390f.", "author": "", "orig_id": 1407919}}, {"model": "metainfo.source", "pk": 4874, "fields": {"orig_filename": "Salm-Reifferscheidt_Hugo-Franz_1776_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 391", "author": "", "orig_id": 1407920}}, {"model": "metainfo.source", "pk": 4875, "fields": {"orig_filename": "Salm-Reifferscheidt_Hugo-Karl-Eduard_1803_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 391f.", "author": "", "orig_id": 1407921}}, {"model": "metainfo.source", "pk": 4876, "fields": {"orig_filename": "Salmen_Franz-Josef_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392", "author": "", "orig_id": 1407922}}, {"model": "metainfo.source", "pk": 4877, "fields": {"orig_filename": "Salmini_Vittorio_1832_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392", "author": "", "orig_id": 1407923}}, {"model": "metainfo.source", "pk": 4878, "fields": {"orig_filename": "Salomon-Friedberg_Emanuel_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 393", "author": "", "orig_id": 1407925}}, {"model": "metainfo.source", "pk": 4879, "fields": {"orig_filename": "Salomoni_Filippo_1801_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 393f.", "author": "", "orig_id": 1407926}}, {"model": "metainfo.source", "pk": 4880, "fields": {"orig_filename": "Salomon_Johann-Michael_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392f.", "author": "", "orig_id": 1407924}}, {"model": "metainfo.source", "pk": 4881, "fields": {"orig_filename": "Saloni_Aleksander_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394", "author": "", "orig_id": 1407927}}, {"model": "metainfo.source", "pk": 4882, "fields": {"orig_filename": "Saloun_Ladislav-Jan_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394", "author": "", "orig_id": 1407928}}, {"model": "metainfo.source", "pk": 4883, "fields": {"orig_filename": "Salten_Felix_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394f.", "author": "", "orig_id": 1407929}}, {"model": "metainfo.source", "pk": 4884, "fields": {"orig_filename": "Salus_Hugo_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 395f.", "author": "", "orig_id": 1407930}}, {"model": "metainfo.source", "pk": 4885, "fields": {"orig_filename": "Salvadori_Giovanni-Batt_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 396f.", "author": "", "orig_id": 1407932}}, {"model": "metainfo.source", "pk": 4886, "fields": {"orig_filename": "Salva_Karol_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 396", "author": "", "orig_id": 1407931}}, {"model": "metainfo.source", "pk": 4887, "fields": {"orig_filename": "Salviati_Antonio_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 398", "author": "", "orig_id": 1407935}}, {"model": "metainfo.source", "pk": 4888, "fields": {"orig_filename": "Salvi_Luigi-Matteo_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 397f.", "author": "", "orig_id": 1407934}}, {"model": "metainfo.source", "pk": 4889, "fields": {"orig_filename": "Salvotti-Eichenkraft-Bindeburg_Anton_1789_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 398f.", "author": "", "orig_id": 1407936}}, {"model": "metainfo.source", "pk": 4890, "fields": {"orig_filename": "Salzbacher_Josef_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 399", "author": "", "orig_id": 1407937}}, {"model": "metainfo.source", "pk": 4891, "fields": {"orig_filename": "Salzer_Anselm_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 399f.", "author": "", "orig_id": 1407938}}, {"model": "metainfo.source", "pk": 4892, "fields": {"orig_filename": "Salzer_Franz_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400", "author": "", "orig_id": 1407939}}, {"model": "metainfo.source", "pk": 4893, "fields": {"orig_filename": "Salzer_Friedrich-Franz_1827_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400", "author": "", "orig_id": 1407940}}, {"model": "metainfo.source", "pk": 4894, "fields": {"orig_filename": "Salzer_Johann_1840_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400f.", "author": "", "orig_id": 1407941}}, {"model": "metainfo.source", "pk": 4895, "fields": {"orig_filename": "Salzer_Josef_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 401", "author": "", "orig_id": 1407942}}, {"model": "metainfo.source", "pk": 4896, "fields": {"orig_filename": "Salzer_Matthaeus-Kaspar_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 401f.", "author": "", "orig_id": 1407943}}, {"model": "metainfo.source", "pk": 4897, "fields": {"orig_filename": "Salzer_Robert-Karl_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402", "author": "", "orig_id": 1407944}}, {"model": "metainfo.source", "pk": 4898, "fields": {"orig_filename": "Salzgeber_Peter_1789_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402", "author": "", "orig_id": 1407945}}, {"model": "metainfo.source", "pk": 4899, "fields": {"orig_filename": "Salzmann_Johann_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402f.", "author": "", "orig_id": 1407946}}, {"model": "metainfo.source", "pk": 4900, "fields": {"orig_filename": "Salzmann_Josef_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403", "author": "", "orig_id": 1407947}}, {"model": "metainfo.source", "pk": 4901, "fields": {"orig_filename": "Salzmann_Karl-Aubert_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403", "author": "", "orig_id": 1407948}}, {"model": "metainfo.source", "pk": 4902, "fields": {"orig_filename": "Salzmann_Karl-Gottfried_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403f.", "author": "", "orig_id": 1407949}}, {"model": "metainfo.source", "pk": 4903, "fields": {"orig_filename": "Samalik_Josef_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404f.", "author": "", "orig_id": 1407953}}, {"model": "metainfo.source", "pk": 4904, "fields": {"orig_filename": "Samal_Jan_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404", "author": "", "orig_id": 1407951}}, {"model": "metainfo.source", "pk": 4905, "fields": {"orig_filename": "Samal_Premysl_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404", "author": "", "orig_id": 1407952}}, {"model": "metainfo.source", "pk": 4906, "fields": {"orig_filename": "Samanek_Vaclav_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407954}}, {"model": "metainfo.source", "pk": 4907, "fields": {"orig_filename": "Samanek_Vinzenz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407955}}, {"model": "metainfo.source", "pk": 4908, "fields": {"orig_filename": "Samarjay_Karl_1821_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407956}}, {"model": "metainfo.source", "pk": 4909, "fields": {"orig_filename": "Samassa_Albert_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405f.", "author": "", "orig_id": 1407957}}, {"model": "metainfo.source", "pk": 4910, "fields": {"orig_filename": "Samassa_Anton_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 406", "author": "", "orig_id": 1407958}}, {"model": "metainfo.source", "pk": 4911, "fields": {"orig_filename": "Samassa_Jozsef_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 406f.", "author": "", "orig_id": 1407959}}, {"model": "metainfo.source", "pk": 4912, "fields": {"orig_filename": "Samassa_Max_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 407", "author": "", "orig_id": 1407960}}, {"model": "metainfo.source", "pk": 4913, "fields": {"orig_filename": "Samassa_Paul_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 407f.", "author": "", "orig_id": 1407961}}, {"model": "metainfo.source", "pk": 4914, "fields": {"orig_filename": "Samec_Janko_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408", "author": "", "orig_id": 1407962}}, {"model": "metainfo.source", "pk": 4915, "fields": {"orig_filename": "Samek_Frantisek_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408", "author": "", "orig_id": 1407963}}, {"model": "metainfo.source", "pk": 4916, "fields": {"orig_filename": "Samelson_Szymon_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408f.", "author": "", "orig_id": 1407964}}, {"model": "metainfo.source", "pk": 4917, "fields": {"orig_filename": "Sames_Josef_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 409", "author": "", "orig_id": 1409581}}, {"model": "metainfo.source", "pk": 4918, "fields": {"orig_filename": "Samhaber_Edward_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 409f.", "author": "", "orig_id": 1407965}}, {"model": "metainfo.source", "pk": 4919, "fields": {"orig_filename": "Sammern-Frankenegg_Ferdinand_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 410", "author": "", "orig_id": 1407966}}, {"model": "metainfo.source", "pk": 4920, "fields": {"orig_filename": "Samolewicz_Zygmunt_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 410f.", "author": "", "orig_id": 1407967}}, {"model": "metainfo.source", "pk": 4921, "fields": {"orig_filename": "Sanda_Frantisek_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411", "author": "", "orig_id": 1407968}}, {"model": "metainfo.source", "pk": 4922, "fields": {"orig_filename": "Sander_Fritz_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411", "author": "", "orig_id": 1407969}}, {"model": "metainfo.source", "pk": 4923, "fields": {"orig_filename": "Sander_Hermann_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411f.", "author": "", "orig_id": 1407970}}, {"model": "metainfo.source", "pk": 4924, "fields": {"orig_filename": "Sandner_Anton_1906_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 412", "author": "", "orig_id": 1407971}}, {"model": "metainfo.source", "pk": 4925, "fields": {"orig_filename": "Sandor-Szlavnicza_Moric_1805_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 412f.", "author": "", "orig_id": 1407972}}, {"model": "metainfo.source", "pk": 4926, "fields": {"orig_filename": "Rumpler_Edmund_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325f.", "author": "", "orig_id": 1407830}}, {"model": "metainfo.source", "pk": 4927, "fields": {"orig_filename": "Rumpler_Franz_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 326f.", "author": "", "orig_id": 1407831}}, {"model": "metainfo.source", "pk": 4928, "fields": {"orig_filename": "Rumy_Karl-Georg_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327f.", "author": "", "orig_id": 1407833}}, {"model": "metainfo.source", "pk": 4929, "fields": {"orig_filename": "Rungaldier_Ignaz_1799_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328", "author": "", "orig_id": 1407834}}, {"model": "metainfo.source", "pk": 4930, "fields": {"orig_filename": "Runk_Franz-Ferdinand_1764_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328", "author": "", "orig_id": 1407835}}, {"model": "metainfo.source", "pk": 4931, "fields": {"orig_filename": "Rupertsberger_Matthias_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328f.", "author": "", "orig_id": 1407836}}, {"model": "metainfo.source", "pk": 4932, "fields": {"orig_filename": "Rupnik_Carlo-Vigilio_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329", "author": "", "orig_id": 1407837}}, {"model": "metainfo.source", "pk": 4933, "fields": {"orig_filename": "Rupp-Nyilhegy_Jakab_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329f.", "author": "", "orig_id": 1407839}}, {"model": "metainfo.source", "pk": 4934, "fields": {"orig_filename": "Ruppeldt_Milos_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330", "author": "", "orig_id": 1407840}}, {"model": "metainfo.source", "pk": 4935, "fields": {"orig_filename": "Ruppert_Karl_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330", "author": "", "orig_id": 1407841}}, {"model": "metainfo.source", "pk": 4936, "fields": {"orig_filename": "Rupprecht_Johann-Bapt_1776_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330f.", "author": "", "orig_id": 1407842}}, {"model": "metainfo.source", "pk": 4937, "fields": {"orig_filename": "Rupp_Mathilde_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329", "author": "", "orig_id": 1407838}}, {"model": "metainfo.source", "pk": 4938, "fields": {"orig_filename": "Rusca_Marco_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331", "author": "", "orig_id": 1407844}}, {"model": "metainfo.source", "pk": 4939, "fields": {"orig_filename": "Ruschka_Franz_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331f.", "author": "", "orig_id": 1407845}}, {"model": "metainfo.source", "pk": 4940, "fields": {"orig_filename": "Rusjan_Edvard_1886_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 332", "author": "", "orig_id": 1407846}}, {"model": "metainfo.source", "pk": 4941, "fields": {"orig_filename": "Russegger_Josef_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 334f.", "author": "", "orig_id": 1407851}}, {"model": "metainfo.source", "pk": 4942, "fields": {"orig_filename": "Russ_Karl_1779_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 332f.", "author": "", "orig_id": 1407847}}, {"model": "metainfo.source", "pk": 4943, "fields": {"orig_filename": "Russ_Leander_1809_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 333", "author": "", "orig_id": 1407848}}, {"model": "metainfo.source", "pk": 4944, "fields": {"orig_filename": "Russ_Robert_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 333f.", "author": "", "orig_id": 1407849}}, {"model": "metainfo.source", "pk": 4945, "fields": {"orig_filename": "Russ_Viktor-Wilhelm_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 334", "author": "", "orig_id": 1407850}}, {"model": "metainfo.source", "pk": 4946, "fields": {"orig_filename": "Ruston_Joseph-John-I_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 336", "author": "", "orig_id": 1407854}}, {"model": "metainfo.source", "pk": 4947, "fields": {"orig_filename": "Rust_Johann-Heinrich_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 335f.", "author": "", "orig_id": 1407853}}, {"model": "metainfo.source", "pk": 4948, "fields": {"orig_filename": "Rust_Johann-Nep_1775_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 335", "author": "", "orig_id": 1407852}}, {"model": "metainfo.source", "pk": 4949, "fields": {"orig_filename": "Ruszkowska_Helena_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 336f.", "author": "", "orig_id": 1407855}}, {"model": "metainfo.source", "pk": 4950, "fields": {"orig_filename": "Rus_Joze_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331", "author": "", "orig_id": 1407843}}, {"model": "metainfo.source", "pk": 4951, "fields": {"orig_filename": "Rutar_Simon_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337", "author": "", "orig_id": 1407856}}, {"model": "metainfo.source", "pk": 4952, "fields": {"orig_filename": "Rutha_Heinrich_1897_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337", "author": "", "orig_id": 1407857}}, {"model": "metainfo.source", "pk": 4953, "fields": {"orig_filename": "Ruthner_Anton_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337f.", "author": "", "orig_id": 1407858}}, {"model": "metainfo.source", "pk": 4954, "fields": {"orig_filename": "Rutkowski_Maksymilian_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 338", "author": "", "orig_id": 1407859}}, {"model": "metainfo.source", "pk": 4955, "fields": {"orig_filename": "Rutowski_Tadeusz_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 338f.", "author": "", "orig_id": 1407860}}, {"model": "metainfo.source", "pk": 4956, "fields": {"orig_filename": "Rutra_Arthur-Ernst_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 339", "author": "", "orig_id": 1407861}}, {"model": "metainfo.source", "pk": 4957, "fields": {"orig_filename": "Ruttenstein_Konstanze_1835_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 339f.", "author": "", "orig_id": 1407862}}, {"model": "metainfo.source", "pk": 4958, "fields": {"orig_filename": "Ruttenstock_Jakob_1776_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 340", "author": "", "orig_id": 1407863}}, {"model": "metainfo.source", "pk": 4959, "fields": {"orig_filename": "Ruttin_Erich_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 340f.", "author": "", "orig_id": 1407864}}, {"model": "metainfo.source", "pk": 4960, "fields": {"orig_filename": "Rutzky-Brennau_Andreas_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341", "author": "", "orig_id": 1407866}}, {"model": "metainfo.source", "pk": 4961, "fields": {"orig_filename": "Rutz_Benno_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341", "author": "", "orig_id": 1407865}}, {"model": "metainfo.source", "pk": 4962, "fields": {"orig_filename": "Ruvarac_Dimitrije_1842_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341f.", "author": "", "orig_id": 1407867}}, {"model": "metainfo.source", "pk": 4963, "fields": {"orig_filename": "Ruvarac_Ilarion_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342", "author": "", "orig_id": 1407868}}, {"model": "metainfo.source", "pk": 4964, "fields": {"orig_filename": "Ruzicka-Strozzi_Marija_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 345", "author": "", "orig_id": 1407712}}, {"model": "metainfo.source", "pk": 4965, "fields": {"orig_filename": "Ruzicka_Alois_1849_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342", "author": "", "orig_id": 1407869}}, {"model": "metainfo.source", "pk": 4966, "fields": {"orig_filename": "Ruzicka_Apollo_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342f.", "author": "", "orig_id": 1407870}}, {"model": "metainfo.source", "pk": 4967, "fields": {"orig_filename": "Ruzicka_Jan_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407871}}, {"model": "metainfo.source", "pk": 4968, "fields": {"orig_filename": "Ruzicka_Josef_1808_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407872}}, {"model": "metainfo.source", "pk": 4969, "fields": {"orig_filename": "Ruzicka_Leon_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407708}}, {"model": "metainfo.source", "pk": 4970, "fields": {"orig_filename": "Ruzicka_Pavel-Miroslav_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343f.", "author": "", "orig_id": 1407709}}, {"model": "metainfo.source", "pk": 4971, "fields": {"orig_filename": "Ruzicka_Vladislav_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 344", "author": "", "orig_id": 1407710}}, {"model": "metainfo.source", "pk": 4972, "fields": {"orig_filename": "Ruzicka_Wenzel_1757_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 344f.", "author": "", "orig_id": 1407711}}, {"model": "metainfo.source", "pk": 4973, "fields": {"orig_filename": "Ruziewicz_Stanislaw_1889_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 345", "author": "", "orig_id": 1407713}}, {"model": "metainfo.source", "pk": 4974, "fields": {"orig_filename": "Ruzitska_Gyoergy_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346", "author": "", "orig_id": 1407714}}, {"model": "metainfo.source", "pk": 4975, "fields": {"orig_filename": "Rybak_Otakar_1886_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347", "author": "", "orig_id": 1407718}}, {"model": "metainfo.source", "pk": 4976, "fields": {"orig_filename": "Rybarski_Roman_1887_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348", "author": "", "orig_id": 1407720}}, {"model": "metainfo.source", "pk": 4977, "fields": {"orig_filename": "Rybar_Otokar_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347f.", "author": "", "orig_id": 1407719}}, {"model": "metainfo.source", "pk": 4978, "fields": {"orig_filename": "Ryba_Jakub-Jan_1765_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346", "author": "", "orig_id": 1407715}}, {"model": "metainfo.source", "pk": 4979, "fields": {"orig_filename": "Ryba_Josef-Jakub_1795_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346f.", "author": "", "orig_id": 1407716}}, {"model": "metainfo.source", "pk": 4980, "fields": {"orig_filename": "Ryba_Vilem_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347", "author": "", "orig_id": 1407717}}, {"model": "metainfo.source", "pk": 4981, "fields": {"orig_filename": "Rybczynski_Mieczyslaw_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348", "author": "", "orig_id": 1407721}}, {"model": "metainfo.source", "pk": 4982, "fields": {"orig_filename": "Rybicka_Antonin-Frantisek_1812_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348f.", "author": "", "orig_id": 1407722}}, {"model": "metainfo.source", "pk": 4983, "fields": {"orig_filename": "Rychnovsky_Ernst_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 349", "author": "", "orig_id": 1407723}}, {"model": "metainfo.source", "pk": 4984, "fields": {"orig_filename": "Rychter_Jozef_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350", "author": "", "orig_id": 1407724}}, {"model": "metainfo.source", "pk": 4985, "fields": {"orig_filename": "Rychtrmoc_Robert_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350", "author": "", "orig_id": 1407725}}, {"model": "metainfo.source", "pk": 4986, "fields": {"orig_filename": "Rydel_Lucjan-Antoni_1870_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 351", "author": "", "orig_id": 1407727}}, {"model": "metainfo.source", "pk": 4987, "fields": {"orig_filename": "Rydel_Lucjan_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350f.", "author": "", "orig_id": 1407726}}, {"model": "metainfo.source", "pk": 4988, "fields": {"orig_filename": "Rydygier_Ludwik_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 351f.", "author": "", "orig_id": 1407728}}, {"model": "metainfo.source", "pk": 4989, "fields": {"orig_filename": "Rydz_Edward_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352", "author": "", "orig_id": 1407729}}, {"model": "metainfo.source", "pk": 4990, "fields": {"orig_filename": "Rytir_Jaroslav_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352", "author": "", "orig_id": 1407777}}, {"model": "metainfo.source", "pk": 4991, "fields": {"orig_filename": "Ryzner_Cenek_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352f.", "author": "", "orig_id": 1407778}}, {"model": "metainfo.source", "pk": 4992, "fields": {"orig_filename": "Rzach_Alois_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 353", "author": "", "orig_id": 1407779}}, {"model": "metainfo.source", "pk": 4993, "fields": {"orig_filename": "Rzehaczek_Karl_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 353f.", "author": "", "orig_id": 1407780}}, {"model": "metainfo.source", "pk": 4994, "fields": {"orig_filename": "Rzehak_Anton_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 354", "author": "", "orig_id": 1407781}}, {"model": "metainfo.source", "pk": 4995, "fields": {"orig_filename": "Rzehak_Emil_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 354f.", "author": "", "orig_id": 1407782}}, {"model": "metainfo.source", "pk": 4996, "fields": {"orig_filename": "Rzepinski_Stanislaw_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355", "author": "", "orig_id": 1407783}}, {"model": "metainfo.source", "pk": 4997, "fields": {"orig_filename": "Rzesacz_Ernst_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355", "author": "", "orig_id": 1407784}}, {"model": "metainfo.source", "pk": 4998, "fields": {"orig_filename": "Rzesinski_Jan-Kanty_1803_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355f.", "author": "", "orig_id": 1407785}}, {"model": "metainfo.source", "pk": 4999, "fields": {"orig_filename": "Rzewuski_Leon_1808_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 356", "author": "", "orig_id": 1407786}}, {"model": "metainfo.source", "pk": 5000, "fields": {"orig_filename": "Rzewuski_Walery_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 356f.", "author": "", "orig_id": 1407787}}, {"model": "metainfo.source", "pk": 5001, "fields": {"orig_filename": "Rziha_Franz_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 357", "author": "", "orig_id": 1407788}}, {"model": "metainfo.source", "pk": 5002, "fields": {"orig_filename": "Saal_Ignaz_1761_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 357", "author": "", "orig_id": 1407789}}, {"model": "metainfo.source", "pk": 5003, "fields": {"orig_filename": "Saar_Ferdinand_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 358f.", "author": "", "orig_id": 1407790}}, {"model": "metainfo.source", "pk": 5004, "fields": {"orig_filename": "Saar_Guenther_1878_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 359", "author": "", "orig_id": 1407791}}, {"model": "metainfo.source", "pk": 5005, "fields": {"orig_filename": "Saar_Karl_1797_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 359f.", "author": "", "orig_id": 1407792}}, {"model": "metainfo.source", "pk": 5006, "fields": {"orig_filename": "Sabala-Krzeptowski_Jan_1809_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360", "author": "", "orig_id": 1407793}}, {"model": "metainfo.source", "pk": 5007, "fields": {"orig_filename": "Sabalich_Giuseppe_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360", "author": "", "orig_id": 1407794}}, {"model": "metainfo.source", "pk": 5008, "fields": {"orig_filename": "Sabathil_Rudolf_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360f.", "author": "", "orig_id": 1407795}}, {"model": "metainfo.source", "pk": 5009, "fields": {"orig_filename": "Sabic_Marin_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361", "author": "", "orig_id": 1407796}}, {"model": "metainfo.source", "pk": 5010, "fields": {"orig_filename": "Sabidussi_Hans_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361", "author": "", "orig_id": 1407797}}, {"model": "metainfo.source", "pk": 5011, "fields": {"orig_filename": "Sabina_Karel_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361f.", "author": "", "orig_id": 1407799}}, {"model": "metainfo.source", "pk": 5012, "fields": {"orig_filename": "Sablatnig_Josef_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 362", "author": "", "orig_id": 1407800}}, {"model": "metainfo.source", "pk": 5013, "fields": {"orig_filename": "Sablik_Franz_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 362f.", "author": "", "orig_id": 1407801}}, {"model": "metainfo.source", "pk": 5014, "fields": {"orig_filename": "Sabljar_Mijat_1790_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 363", "author": "", "orig_id": 1407802}}, {"model": "metainfo.source", "pk": 5015, "fields": {"orig_filename": "Sabowski_Wladyslaw_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 363f.", "author": "", "orig_id": 1407803}}, {"model": "metainfo.source", "pk": 5016, "fields": {"orig_filename": "Sabransky_Heinrich_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 364", "author": "", "orig_id": 1407804}}, {"model": "metainfo.source", "pk": 5017, "fields": {"orig_filename": "Saccardo_Pier-Andrea_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 364f.", "author": "", "orig_id": 1407805}}, {"model": "metainfo.source", "pk": 5018, "fields": {"orig_filename": "Sacchetti_Antonio_1790_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 365", "author": "", "orig_id": 1407806}}, {"model": "metainfo.source", "pk": 5019, "fields": {"orig_filename": "Sacchetti_Lorenzo_1759_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 365f.", "author": "", "orig_id": 1407807}}, {"model": "metainfo.source", "pk": 5020, "fields": {"orig_filename": "Sacher-Masoch_Leopold_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367ff.", "author": "", "orig_id": 1407813}}, {"model": "metainfo.source", "pk": 5021, "fields": {"orig_filename": "Sacher-Masoch_Wanda_1845_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1442024}}, {"model": "metainfo.source", "pk": 5022, "fields": {"orig_filename": "Sacher_Anna_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366", "author": "", "orig_id": 1407808}}, {"model": "metainfo.source", "pk": 5023, "fields": {"orig_filename": "Sacher_Eduard_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366", "author": "", "orig_id": 1407809}}, {"model": "metainfo.source", "pk": 5024, "fields": {"orig_filename": "Sacher_Eduard_1843_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366f.", "author": "", "orig_id": 1407810}}, {"model": "metainfo.source", "pk": 5025, "fields": {"orig_filename": "Sacher_Emanuel_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367", "author": "", "orig_id": 1407811}}, {"model": "metainfo.source", "pk": 5026, "fields": {"orig_filename": "Sacher_Franz_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367", "author": "", "orig_id": 1407812}}, {"model": "metainfo.source", "pk": 5027, "fields": {"orig_filename": "Sachsalber_Adolf_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369", "author": "", "orig_id": 1407816}}, {"model": "metainfo.source", "pk": 5028, "fields": {"orig_filename": "Sachse-Hofmeister_Anna_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369f.", "author": "", "orig_id": 1407817}}, {"model": "metainfo.source", "pk": 5029, "fields": {"orig_filename": "Roth_Imrich-Emanuel_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277", "author": "", "orig_id": 1407637}}, {"model": "metainfo.source", "pk": 5030, "fields": {"orig_filename": "Roth_Johann-Bapt_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277", "author": "", "orig_id": 1407638}}, {"model": "metainfo.source", "pk": 5031, "fields": {"orig_filename": "Roth_Johann_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277f.", "author": "", "orig_id": 1407639}}, {"model": "metainfo.source", "pk": 5032, "fields": {"orig_filename": "Roth_Josef_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 278f.", "author": "", "orig_id": 1407640}}, {"model": "metainfo.source", "pk": 5033, "fields": {"orig_filename": "Roth_Julius_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 279", "author": "", "orig_id": 1407641}}, {"model": "metainfo.source", "pk": 5034, "fields": {"orig_filename": "Roth_Louis_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 279f.", "author": "", "orig_id": 1407642}}, {"model": "metainfo.source", "pk": 5035, "fields": {"orig_filename": "Roth_Martin_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280", "author": "", "orig_id": 1407643}}, {"model": "metainfo.source", "pk": 5036, "fields": {"orig_filename": "Roth_Richard-Karl_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280", "author": "", "orig_id": 1407644}}, {"model": "metainfo.source", "pk": 5037, "fields": {"orig_filename": "Roth_Samuel-Lajos_1851_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280f.", "author": "", "orig_id": 1407645}}, {"model": "metainfo.source", "pk": 5038, "fields": {"orig_filename": "Roth_Stefan-Ludwig_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 281f.", "author": "", "orig_id": 1407646}}, {"model": "metainfo.source", "pk": 5039, "fields": {"orig_filename": "Roth_Viktor_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 282", "author": "", "orig_id": 1407647}}, {"model": "metainfo.source", "pk": 5040, "fields": {"orig_filename": "Rotky_Karl_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291", "author": "", "orig_id": 1407669}}, {"model": "metainfo.source", "pk": 5041, "fields": {"orig_filename": "Rottauscher-Malata_Alfred_1888_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292f.", "author": "", "orig_id": 1407675}}, {"model": "metainfo.source", "pk": 5042, "fields": {"orig_filename": "Rottauscher-Malata_Karl_1812_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293", "author": "", "orig_id": 1407676}}, {"model": "metainfo.source", "pk": 5043, "fields": {"orig_filename": "Rottauscher-Malata_Maximilian_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293", "author": "", "orig_id": 1407677}}, {"model": "metainfo.source", "pk": 5044, "fields": {"orig_filename": "Rotta_Antonio_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292", "author": "", "orig_id": 1407674}}, {"model": "metainfo.source", "pk": 5045, "fields": {"orig_filename": "Rottenberger_Friedrich-Leo_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294", "author": "", "orig_id": 1407679}}, {"model": "metainfo.source", "pk": 5046, "fields": {"orig_filename": "Rottenberger_Josef_1760_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294", "author": "", "orig_id": 1407680}}, {"model": "metainfo.source", "pk": 5047, "fields": {"orig_filename": "Rottenberg_Ludwig_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293f.", "author": "", "orig_id": 1407678}}, {"model": "metainfo.source", "pk": 5048, "fields": {"orig_filename": "Rotter_Ferdinand-Amand_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294f.", "author": "", "orig_id": 1407681}}, {"model": "metainfo.source", "pk": 5049, "fields": {"orig_filename": "Rotter_Frantisek_1831_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295", "author": "", "orig_id": 1407682}}, {"model": "metainfo.source", "pk": 5050, "fields": {"orig_filename": "Rotter_Johann-Nep_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295", "author": "", "orig_id": 1407683}}, {"model": "metainfo.source", "pk": 5051, "fields": {"orig_filename": "Rotter_Kurt_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296", "author": "", "orig_id": 1407685}}, {"model": "metainfo.source", "pk": 5052, "fields": {"orig_filename": "Rotter_Ludwig_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296", "author": "", "orig_id": 1407686}}, {"model": "metainfo.source", "pk": 5053, "fields": {"orig_filename": "Rottini_Gabriele_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296f.", "author": "", "orig_id": 1407687}}, {"model": "metainfo.source", "pk": 5054, "fields": {"orig_filename": "Rottler_Berthold_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297", "author": "", "orig_id": 1407688}}, {"model": "metainfo.source", "pk": 5055, "fields": {"orig_filename": "Rottleuthner_Wilhelm-Johann_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297", "author": "", "orig_id": 1407689}}, {"model": "metainfo.source", "pk": 5056, "fields": {"orig_filename": "Rottonara_Franz-Angelo_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297f.", "author": "", "orig_id": 1407690}}, {"model": "metainfo.source", "pk": 5057, "fields": {"orig_filename": "Rott_Hans_1858_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291f.", "author": "", "orig_id": 1407670}}, {"model": "metainfo.source", "pk": 5058, "fields": {"orig_filename": "Rott_Vincenc-Josef_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292", "author": "", "orig_id": 1407673}}, {"model": "metainfo.source", "pk": 5059, "fields": {"orig_filename": "Rouschal_Ernst_1911_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 298", "author": "", "orig_id": 1407691}}, {"model": "metainfo.source", "pk": 5060, "fields": {"orig_filename": "Rovani_Giuseppe_1818_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 298f.", "author": "", "orig_id": 1407692}}, {"model": "metainfo.source", "pk": 5061, "fields": {"orig_filename": "Rovelli_Pietro_1793_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299", "author": "", "orig_id": 1407693}}, {"model": "metainfo.source", "pk": 5062, "fields": {"orig_filename": "Rovnianek_Peter-Vitazoslav_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299", "author": "", "orig_id": 1407694}}, {"model": "metainfo.source", "pk": 5063, "fields": {"orig_filename": "Rowid_Henryk_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299f.", "author": "", "orig_id": 1407695}}, {"model": "metainfo.source", "pk": 5064, "fields": {"orig_filename": "Rowland_Wilhelm_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 300", "author": "", "orig_id": 1407696}}, {"model": "metainfo.source", "pk": 5065, "fields": {"orig_filename": "Royt_Vaclav_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 301", "author": "", "orig_id": 1407698}}, {"model": "metainfo.source", "pk": 5066, "fields": {"orig_filename": "Roy_Vladimir_1885_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 300f.", "author": "", "orig_id": 1407697}}, {"model": "metainfo.source", "pk": 5067, "fields": {"orig_filename": "Rozek_Karel_1876_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 301f.", "author": "", "orig_id": 1407699}}, {"model": "metainfo.source", "pk": 5068, "fields": {"orig_filename": "Rozenits_Demetrius_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407700}}, {"model": "metainfo.source", "pk": 5069, "fields": {"orig_filename": "Rozenits_Lukas_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407701}}, {"model": "metainfo.source", "pk": 5070, "fields": {"orig_filename": "Rozic_Antun_1787_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407702}}, {"model": "metainfo.source", "pk": 5071, "fields": {"orig_filename": "Rozic_Valentin_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302f.", "author": "", "orig_id": 1407703}}, {"model": "metainfo.source", "pk": 5072, "fields": {"orig_filename": "Rozic_Vatroslav_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303", "author": "", "orig_id": 1407704}}, {"model": "metainfo.source", "pk": 5073, "fields": {"orig_filename": "Rozkosny_Jan_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303", "author": "", "orig_id": 1407705}}, {"model": "metainfo.source", "pk": 5074, "fields": {"orig_filename": "Rozman_Jozef_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303f.", "author": "", "orig_id": 1407706}}, {"model": "metainfo.source", "pk": 5075, "fields": {"orig_filename": "Roznay_Samuel_1787_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304", "author": "", "orig_id": 1407707}}, {"model": "metainfo.source", "pk": 5076, "fields": {"orig_filename": "Rozsavoelgyi_Mark_1789_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304f.", "author": "", "orig_id": 1407514}}, {"model": "metainfo.source", "pk": 5077, "fields": {"orig_filename": "Rozsay-Murakoez_Jozsef_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305", "author": "", "orig_id": 1407515}}, {"model": "metainfo.source", "pk": 5078, "fields": {"orig_filename": "Rozsa_Sandor_1813_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304", "author": "", "orig_id": 1407513}}, {"model": "metainfo.source", "pk": 5079, "fields": {"orig_filename": "Rozvoda_Jaroslav_1869_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305", "author": "", "orig_id": 1407517}}, {"model": "metainfo.source", "pk": 5080, "fields": {"orig_filename": "Rozwadowski_Jan-Michal_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305f.", "author": "", "orig_id": 1407518}}, {"model": "metainfo.source", "pk": 5081, "fields": {"orig_filename": "Ruard_Leopold_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 306", "author": "", "orig_id": 1407519}}, {"model": "metainfo.source", "pk": 5082, "fields": {"orig_filename": "Ruault-Frappart_Louis_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 306f.", "author": "", "orig_id": 1407520}}, {"model": "metainfo.source", "pk": 5083, "fields": {"orig_filename": "Rubczynski_Witold_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 307", "author": "", "orig_id": 1407521}}, {"model": "metainfo.source", "pk": 5084, "fields": {"orig_filename": "Rubelli-Sturmfest_Ludwig_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 307f.", "author": "", "orig_id": 1407522}}, {"model": "metainfo.source", "pk": 5085, "fields": {"orig_filename": "Ruben_Christian_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308", "author": "", "orig_id": 1407523}}, {"model": "metainfo.source", "pk": 5086, "fields": {"orig_filename": "Ruben_Franz-Leo_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308", "author": "", "orig_id": 1407524}}, {"model": "metainfo.source", "pk": 5087, "fields": {"orig_filename": "Ruber_Ignaz_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308f.", "author": "", "orig_id": 1407525}}, {"model": "metainfo.source", "pk": 5088, "fields": {"orig_filename": "Rubes_Frantisek-Jaromir_1814_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 309", "author": "", "orig_id": 1407526}}, {"model": "metainfo.source", "pk": 5089, "fields": {"orig_filename": "Rubinstein_Siegmund_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310f.", "author": "", "orig_id": 1407529}}, {"model": "metainfo.source", "pk": 5090, "fields": {"orig_filename": "Rubin_David_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 309f.", "author": "", "orig_id": 1407527}}, {"model": "metainfo.source", "pk": 5091, "fields": {"orig_filename": "Rubin_Salomon_1823_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310", "author": "", "orig_id": 1407528}}, {"model": "metainfo.source", "pk": 5092, "fields": {"orig_filename": "Rubritius_Hans_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310f.", "author": "", "orig_id": 1407530}}, {"model": "metainfo.source", "pk": 5093, "fields": {"orig_filename": "Ruchinger_Giuseppe_1761_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407531}}, {"model": "metainfo.source", "pk": 5094, "fields": {"orig_filename": "Ruchinger_Giuseppe_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407532}}, {"model": "metainfo.source", "pk": 5095, "fields": {"orig_filename": "Rudas_Geroe_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311f.", "author": "", "orig_id": 1407534}}, {"model": "metainfo.source", "pk": 5096, "fields": {"orig_filename": "Ruda_Prokop_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407533}}, {"model": "metainfo.source", "pk": 5097, "fields": {"orig_filename": "Rudczinsky_Karl_1751_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 312", "author": "", "orig_id": 1407535}}, {"model": "metainfo.source", "pk": 5098, "fields": {"orig_filename": "Rudel_Olga_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 312f.", "author": "", "orig_id": 1407536}}, {"model": "metainfo.source", "pk": 5099, "fields": {"orig_filename": "Rudigier_Franz-Josef_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 313f.", "author": "", "orig_id": 1407537}}, {"model": "metainfo.source", "pk": 5100, "fields": {"orig_filename": "Rudmas_Simon_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 314", "author": "", "orig_id": 1407538}}, {"model": "metainfo.source", "pk": 5101, "fields": {"orig_filename": "Rudnay-Rudna-Divekujfalu_Alexander_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 314f.", "author": "", "orig_id": 1407539}}, {"model": "metainfo.source", "pk": 5102, "fields": {"orig_filename": "Rudolf_Alfred_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 315", "author": "", "orig_id": 1407540}}, {"model": "metainfo.source", "pk": 5103, "fields": {"orig_filename": "Rudolf_Franz-Karl-Josef_1858_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 315f.", "author": "", "orig_id": 1407541}}, {"model": "metainfo.source", "pk": 5104, "fields": {"orig_filename": "Rudolf_Johann-Josef-Rainer_1788_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 316f.", "author": "", "orig_id": 1407542}}, {"model": "metainfo.source", "pk": 5105, "fields": {"orig_filename": "Rudolph_Karl_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407543}}, {"model": "metainfo.source", "pk": 5106, "fields": {"orig_filename": "Rudorfer_Franz_1897_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407544}}, {"model": "metainfo.source", "pk": 5107, "fields": {"orig_filename": "Rudovsky_Josef_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407545}}, {"model": "metainfo.source", "pk": 5108, "fields": {"orig_filename": "Rudroff_Andreas_1744_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317f.", "author": "", "orig_id": 1407546}}, {"model": "metainfo.source", "pk": 5109, "fields": {"orig_filename": "Rudtorffer_Franz-X_1760_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 318", "author": "", "orig_id": 1409582}}, {"model": "metainfo.source", "pk": 5110, "fields": {"orig_filename": "Rudzki_Maurycy-Pius_1862_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 318f.", "author": "", "orig_id": 1409583}}, {"model": "metainfo.source", "pk": 5111, "fields": {"orig_filename": "Rueckauf_Anton_1855_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319", "author": "", "orig_id": 1409584}}, {"model": "metainfo.source", "pk": 5112, "fields": {"orig_filename": "Rueckl_Engelbert_1888_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319", "author": "", "orig_id": 1409585}}, {"model": "metainfo.source", "pk": 5113, "fields": {"orig_filename": "Rueffer_Eduard_1835_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407547}}, {"model": "metainfo.source", "pk": 5114, "fields": {"orig_filename": "Rueff_Johann_1806_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319f.", "author": "", "orig_id": 1409586}}, {"model": "metainfo.source", "pk": 5115, "fields": {"orig_filename": "Ruesch_Josef-Ignaz_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407548}}, {"model": "metainfo.source", "pk": 5116, "fields": {"orig_filename": "Ruesch_Josef-Ignaz_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407549}}, {"model": "metainfo.source", "pk": 5117, "fields": {"orig_filename": "Ruesch_Karl-Alfred_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407550}}, {"model": "metainfo.source", "pk": 5118, "fields": {"orig_filename": "Ruetgers_Guido_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407551}}, {"model": "metainfo.source", "pk": 5119, "fields": {"orig_filename": "Rufeisen_Josef_1887_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321f.", "author": "", "orig_id": 1407553}}, {"model": "metainfo.source", "pk": 5120, "fields": {"orig_filename": "Ruffini_Giovanni-Batt_1821_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322", "author": "", "orig_id": 1407554}}, {"model": "metainfo.source", "pk": 5121, "fields": {"orig_filename": "Rufinatscha_Johann_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322", "author": "", "orig_id": 1407555}}, {"model": "metainfo.source", "pk": 5122, "fields": {"orig_filename": "Ruf_Sebastian_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407552}}, {"model": "metainfo.source", "pk": 5123, "fields": {"orig_filename": "Ruge_Klara-Ottilie_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322f.", "author": "", "orig_id": 1407556}}, {"model": "metainfo.source", "pk": 5124, "fields": {"orig_filename": "Ruggera_Kamillo_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 323", "author": "", "orig_id": 1407557}}, {"model": "metainfo.source", "pk": 5125, "fields": {"orig_filename": "Ruhmann_Adolf_1832_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 323f.", "author": "", "orig_id": 1407558}}, {"model": "metainfo.source", "pk": 5126, "fields": {"orig_filename": "Rukavina_Fridrik_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407559}}, {"model": "metainfo.source", "pk": 5127, "fields": {"orig_filename": "Rulikowski-Poradow_Ludwik_1784_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407560}}, {"model": "metainfo.source", "pk": 5128, "fields": {"orig_filename": "Rumann_Jan_1876_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407825}}, {"model": "metainfo.source", "pk": 5129, "fields": {"orig_filename": "Rumbold_Karl_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324f.", "author": "", "orig_id": 1407826}}, {"model": "metainfo.source", "pk": 5130, "fields": {"orig_filename": "Rummelhardt_Karl_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325", "author": "", "orig_id": 1407827}}, {"model": "metainfo.source", "pk": 5131, "fields": {"orig_filename": "Rumpelmayer_Viktor_1830_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325", "author": "", "orig_id": 1407829}}, {"model": "metainfo.source", "pk": 5132, "fields": {"orig_filename": "Rosegger_Sepp_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 246f.", "author": "", "orig_id": 1407413}}, {"model": "metainfo.source", "pk": 5133, "fields": {"orig_filename": "Rosenbaum_Alfred_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 248", "author": "", "orig_id": 1407562}}, {"model": "metainfo.source", "pk": 5134, "fields": {"orig_filename": "Rosenbaum_Josef-Karl_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 248f.", "author": "", "orig_id": 1407563}}, {"model": "metainfo.source", "pk": 5135, "fields": {"orig_filename": "Rosenbaum_Kory-Elisabeth_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249", "author": "", "orig_id": 1407564}}, {"model": "metainfo.source", "pk": 5136, "fields": {"orig_filename": "Rosenbaum_Moses-Chaim-Litcs_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249", "author": "", "orig_id": 1407565}}, {"model": "metainfo.source", "pk": 5137, "fields": {"orig_filename": "Rosenbaum_Richard_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249f.", "author": "", "orig_id": 1407566}}, {"model": "metainfo.source", "pk": 5138, "fields": {"orig_filename": "Rosenbaum_Sigmund_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 250", "author": "", "orig_id": 1407567}}, {"model": "metainfo.source", "pk": 5139, "fields": {"orig_filename": "Rosenbaum_Therese_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 250f.", "author": "", "orig_id": 1407568}}, {"model": "metainfo.source", "pk": 5140, "fields": {"orig_filename": "Rosenberg_Karl_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251", "author": "", "orig_id": 1407569}}, {"model": "metainfo.source", "pk": 5141, "fields": {"orig_filename": "Rosenberg_Moritz_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251", "author": "", "orig_id": 1407570}}, {"model": "metainfo.source", "pk": 5142, "fields": {"orig_filename": "Rosenberg_Samuel_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251f.", "author": "", "orig_id": 1407571}}, {"model": "metainfo.source", "pk": 5143, "fields": {"orig_filename": "Rosenblatt_Alfred_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252", "author": "", "orig_id": 1407572}}, {"model": "metainfo.source", "pk": 5144, "fields": {"orig_filename": "Rosenegger_Josef_1767_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252", "author": "", "orig_id": 1407573}}, {"model": "metainfo.source", "pk": 5145, "fields": {"orig_filename": "Rosenfeld_Maurice_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252f.", "author": "", "orig_id": 1407575}}, {"model": "metainfo.source", "pk": 5146, "fields": {"orig_filename": "Rosenfeld_Viktor_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407576}}, {"model": "metainfo.source", "pk": 5147, "fields": {"orig_filename": "Rosenkranz_Wenzel-Josef_1797_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407577}}, {"model": "metainfo.source", "pk": 5148, "fields": {"orig_filename": "Rosenthal_Felix_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407578}}, {"model": "metainfo.source", "pk": 5149, "fields": {"orig_filename": "Rosenthal_Friedrich_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253f.", "author": "", "orig_id": 1407579}}, {"model": "metainfo.source", "pk": 5150, "fields": {"orig_filename": "Rosenthal_Moriz_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 254", "author": "", "orig_id": 1407580}}, {"model": "metainfo.source", "pk": 5151, "fields": {"orig_filename": "Rosenthal_Moriz_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 254f.", "author": "", "orig_id": 1407581}}, {"model": "metainfo.source", "pk": 5152, "fields": {"orig_filename": "Rosenthal_Philipp_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 255", "author": "", "orig_id": 1407582}}, {"model": "metainfo.source", "pk": 5153, "fields": {"orig_filename": "Rosenzweig-Schwannau_Vinzenz_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 255f.", "author": "", "orig_id": 1407584}}, {"model": "metainfo.source", "pk": 5154, "fields": {"orig_filename": "Rosen_Julius_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 247", "author": "", "orig_id": 1407414}}, {"model": "metainfo.source", "pk": 5155, "fields": {"orig_filename": "Roser_Franz-De-P_1779_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256", "author": "", "orig_id": 1407585}}, {"model": "metainfo.source", "pk": 5156, "fields": {"orig_filename": "Roser_Franz-Moritz_1818_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256", "author": "", "orig_id": 1407586}}, {"model": "metainfo.source", "pk": 5157, "fields": {"orig_filename": "Roser_Magdalena_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256f.", "author": "", "orig_id": 1407587}}, {"model": "metainfo.source", "pk": 5158, "fields": {"orig_filename": "Rose_Arnold-Josef_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 243f.", "author": "", "orig_id": 1407407}}, {"model": "metainfo.source", "pk": 5159, "fields": {"orig_filename": "Rose_Eduard_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244", "author": "", "orig_id": 1407408}}, {"model": "metainfo.source", "pk": 5160, "fields": {"orig_filename": "Rose_Giovanni-Luigi_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244", "author": "", "orig_id": 1407409}}, {"model": "metainfo.source", "pk": 5161, "fields": {"orig_filename": "Rose_Maksymilian_1883_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244f.", "author": "", "orig_id": 1407410}}, {"model": "metainfo.source", "pk": 5162, "fields": {"orig_filename": "Rosiwal_August_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 257", "author": "", "orig_id": 1407588}}, {"model": "metainfo.source", "pk": 5163, "fields": {"orig_filename": "Roskiewicz_Johann_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 257", "author": "", "orig_id": 1407589}}, {"model": "metainfo.source", "pk": 5164, "fields": {"orig_filename": "Roskoff_Georg-Gustav_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258", "author": "", "orig_id": 1407590}}, {"model": "metainfo.source", "pk": 5165, "fields": {"orig_filename": "Roskot_Jan-Krtitel_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258", "author": "", "orig_id": 1407591}}, {"model": "metainfo.source", "pk": 5166, "fields": {"orig_filename": "Roskovanyi-Roskovany_Agoston_1807_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258f.", "author": "", "orig_id": 1407592}}, {"model": "metainfo.source", "pk": 5167, "fields": {"orig_filename": "Rosner_Aleksander_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260", "author": "", "orig_id": 1407595}}, {"model": "metainfo.source", "pk": 5168, "fields": {"orig_filename": "Rosner_Antoni_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260", "author": "", "orig_id": 1407596}}, {"model": "metainfo.source", "pk": 5169, "fields": {"orig_filename": "Rosner_Ignacy-Juliusz_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260f.", "author": "", "orig_id": 1407597}}, {"model": "metainfo.source", "pk": 5170, "fields": {"orig_filename": "Rosner_Jehuda-Segal_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261", "author": "", "orig_id": 1407598}}, {"model": "metainfo.source", "pk": 5171, "fields": {"orig_filename": "Rosner_Leopold_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261", "author": "", "orig_id": 1407599}}, {"model": "metainfo.source", "pk": 5172, "fields": {"orig_filename": "Rosnik_Franz_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261f.", "author": "", "orig_id": 1407600}}, {"model": "metainfo.source", "pk": 5173, "fields": {"orig_filename": "Rossbacher_Rudolf_1806_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262", "author": "", "orig_id": 1409578}}, {"model": "metainfo.source", "pk": 5174, "fields": {"orig_filename": "Rossbach_Richard_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262", "author": "", "orig_id": 1407601}}, {"model": "metainfo.source", "pk": 5175, "fields": {"orig_filename": "Rossen_Ferdinand_1785_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262f.", "author": "", "orig_id": 1407602}}, {"model": "metainfo.source", "pk": 5176, "fields": {"orig_filename": "Rossetti-Scander_Domenico_1774_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263f.", "author": "", "orig_id": 1407605}}, {"model": "metainfo.source", "pk": 5177, "fields": {"orig_filename": "Rossetti_Antonio_1819_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263", "author": "", "orig_id": 1407603}}, {"model": "metainfo.source", "pk": 5178, "fields": {"orig_filename": "Rossetti_Francesco_1833_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263", "author": "", "orig_id": 1407604}}, {"model": "metainfo.source", "pk": 5179, "fields": {"orig_filename": "Rossi_Cesare_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 264f.", "author": "", "orig_id": 1407606}}, {"model": "metainfo.source", "pk": 5180, "fields": {"orig_filename": "Rossi_Gaetano_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265", "author": "", "orig_id": 1407607}}, {"model": "metainfo.source", "pk": 5181, "fields": {"orig_filename": "Rossi_Giacomo_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265", "author": "", "orig_id": 1407608}}, {"model": "metainfo.source", "pk": 5182, "fields": {"orig_filename": "Rossi_Giacomo_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265f.", "author": "", "orig_id": 1407609}}, {"model": "metainfo.source", "pk": 5183, "fields": {"orig_filename": "Rossi_Giovanni-Alvise_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266", "author": "", "orig_id": 1407610}}, {"model": "metainfo.source", "pk": 5184, "fields": {"orig_filename": "Rossi_Hugo_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266", "author": "", "orig_id": 1407611}}, {"model": "metainfo.source", "pk": 5185, "fields": {"orig_filename": "Rossi_Ljudevit_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266f.", "author": "", "orig_id": 1407612}}, {"model": "metainfo.source", "pk": 5186, "fields": {"orig_filename": "Rossi_Luigi-Maria_1819_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267", "author": "", "orig_id": 1407613}}, {"model": "metainfo.source", "pk": 5187, "fields": {"orig_filename": "Rossi_Marcello_1862_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267", "author": "", "orig_id": 1407614}}, {"model": "metainfo.source", "pk": 5188, "fields": {"orig_filename": "Rossi_Paul_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267f.", "author": "", "orig_id": 1407615}}, {"model": "metainfo.source", "pk": 5189, "fields": {"orig_filename": "Rostafinski_Jozef-Tomasz_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268f.", "author": "", "orig_id": 1407617}}, {"model": "metainfo.source", "pk": 5190, "fields": {"orig_filename": "Rosthorn_Alfons_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 269", "author": "", "orig_id": 1407618}}, {"model": "metainfo.source", "pk": 5191, "fields": {"orig_filename": "Rosthorn_Arthur_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 269f.", "author": "", "orig_id": 1407619}}, {"model": "metainfo.source", "pk": 5192, "fields": {"orig_filename": "Rosthorn_August_1789_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 270", "author": "", "orig_id": 1407620}}, {"model": "metainfo.source", "pk": 5193, "fields": {"orig_filename": "Rosthorn_Franz_1796_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 270f.", "author": "", "orig_id": 1407621}}, {"model": "metainfo.source", "pk": 5194, "fields": {"orig_filename": "Rosthorn_Josef_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 271", "author": "", "orig_id": 1407622}}, {"model": "metainfo.source", "pk": 5195, "fields": {"orig_filename": "Rosthorn_Matthaeus_1782_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 271f.", "author": "", "orig_id": 1407623}}, {"model": "metainfo.source", "pk": 5196, "fields": {"orig_filename": "Rosthorn_Oskar_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 272", "author": "", "orig_id": 1407624}}, {"model": "metainfo.source", "pk": 5197, "fields": {"orig_filename": "Rostworowski_Karol-Hubert_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 272f.", "author": "", "orig_id": 1407625}}, {"model": "metainfo.source", "pk": 5198, "fields": {"orig_filename": "Rostworowski_Michal_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273", "author": "", "orig_id": 1407626}}, {"model": "metainfo.source", "pk": 5199, "fields": {"orig_filename": "Rost_Leopold_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268", "author": "", "orig_id": 1407616}}, {"model": "metainfo.source", "pk": 5200, "fields": {"orig_filename": "Rost_Rudolf_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268", "author": "", "orig_id": 1409579}}, {"model": "metainfo.source", "pk": 5201, "fields": {"orig_filename": "Roszkowski_Julian_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273", "author": "", "orig_id": 1407627}}, {"model": "metainfo.source", "pk": 5202, "fields": {"orig_filename": "Ros_Bostjan_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407398}}, {"model": "metainfo.source", "pk": 5203, "fields": {"orig_filename": "Rota_Giuseppe_1823_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273f.", "author": "", "orig_id": 1407628}}, {"model": "metainfo.source", "pk": 5204, "fields": {"orig_filename": "Rota_Giuseppe_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274", "author": "", "orig_id": 1407629}}, {"model": "metainfo.source", "pk": 5205, "fields": {"orig_filename": "Rotenstreich_Ephraim-Fischel_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274", "author": "", "orig_id": 1407630}}, {"model": "metainfo.source", "pk": 5206, "fields": {"orig_filename": "Roth-Limanowa-Lapanow_Josef_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 282f.", "author": "", "orig_id": 1407648}}, {"model": "metainfo.source", "pk": 5207, "fields": {"orig_filename": "Roth-Pongyolok_Adolf_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283", "author": "", "orig_id": 1407649}}, {"model": "metainfo.source", "pk": 5208, "fields": {"orig_filename": "Roth-Telegd_Ludwig_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283", "author": "", "orig_id": 1407650}}, {"model": "metainfo.source", "pk": 5209, "fields": {"orig_filename": "Rothaug_Alexander_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283f.", "author": "", "orig_id": 1407651}}, {"model": "metainfo.source", "pk": 5210, "fields": {"orig_filename": "Rothauser_Therese_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284", "author": "", "orig_id": 1407652}}, {"model": "metainfo.source", "pk": 5211, "fields": {"orig_filename": "Rothberger_Karl-Julius_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284", "author": "", "orig_id": 1407653}}, {"model": "metainfo.source", "pk": 5212, "fields": {"orig_filename": "Rothblum_David_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284f.", "author": "", "orig_id": 1407654}}, {"model": "metainfo.source", "pk": 5213, "fields": {"orig_filename": "Rothenflue_Augustin_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 285f.", "author": "", "orig_id": 1407656}}, {"model": "metainfo.source", "pk": 5214, "fields": {"orig_filename": "Rothermann_Peter-Daniel_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286", "author": "", "orig_id": 1409580}}, {"model": "metainfo.source", "pk": 5215, "fields": {"orig_filename": "Rother_Karl_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286", "author": "", "orig_id": 1407657}}, {"model": "metainfo.source", "pk": 5216, "fields": {"orig_filename": "Rothe_Hermann_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 285", "author": "", "orig_id": 1407655}}, {"model": "metainfo.source", "pk": 5217, "fields": {"orig_filename": "Rothkirch-Panthen_Karl_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286f.", "author": "", "orig_id": 1407658}}, {"model": "metainfo.source", "pk": 5218, "fields": {"orig_filename": "Rothkirch-Panthen_Leonhard_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287", "author": "", "orig_id": 1407659}}, {"model": "metainfo.source", "pk": 5219, "fields": {"orig_filename": "Rothmann_Armin_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287", "author": "", "orig_id": 1407660}}, {"model": "metainfo.source", "pk": 5220, "fields": {"orig_filename": "Rothmund-Burgwall_Adolf_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 288", "author": "", "orig_id": 1407662}}, {"model": "metainfo.source", "pk": 5221, "fields": {"orig_filename": "Rothmund_Viktor_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287f.", "author": "", "orig_id": 1407661}}, {"model": "metainfo.source", "pk": 5222, "fields": {"orig_filename": "Rothschild_Albert-Salomon-Anselm_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 288", "author": "", "orig_id": 1407663}}, {"model": "metainfo.source", "pk": 5223, "fields": {"orig_filename": "Rothschild_Anselm-Salomon_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289", "author": "", "orig_id": 1407664}}, {"model": "metainfo.source", "pk": 5224, "fields": {"orig_filename": "Rothschild_Nathaniel-Mayer-Anselm_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289", "author": "", "orig_id": 1407665}}, {"model": "metainfo.source", "pk": 5225, "fields": {"orig_filename": "Rothschild_Salomon-Mayer_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289f.", "author": "", "orig_id": 1407666}}, {"model": "metainfo.source", "pk": 5226, "fields": {"orig_filename": "Rothschuetz_Emil_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 290f.", "author": "", "orig_id": 1407667}}, {"model": "metainfo.source", "pk": 5227, "fields": {"orig_filename": "Rothziegel_Leo_1892_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291", "author": "", "orig_id": 1407668}}, {"model": "metainfo.source", "pk": 5228, "fields": {"orig_filename": "Roth_Aron_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274f.", "author": "", "orig_id": 1407631}}, {"model": "metainfo.source", "pk": 5229, "fields": {"orig_filename": "Roth_August_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275", "author": "", "orig_id": 1407632}}, {"model": "metainfo.source", "pk": 5230, "fields": {"orig_filename": "Roth_Daniel_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275", "author": "", "orig_id": 1407633}}, {"model": "metainfo.source", "pk": 5231, "fields": {"orig_filename": "Roth_Franz_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275f.", "author": "", "orig_id": 1407634}}, {"model": "metainfo.source", "pk": 5232, "fields": {"orig_filename": "Roth_Georg_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 276", "author": "", "orig_id": 1407635}}, {"model": "metainfo.source", "pk": 5233, "fields": {"orig_filename": "Roth_Hieronymus_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 276f.", "author": "", "orig_id": 1407636}}, {"model": "metainfo.source", "pk": 5234, "fields": {"orig_filename": "Roemer_Karl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202f.", "author": "", "orig_id": 1407355}}, {"model": "metainfo.source", "pk": 5235, "fields": {"orig_filename": "Roeschel_Franz_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203", "author": "", "orig_id": 1407357}}, {"model": "metainfo.source", "pk": 5236, "fields": {"orig_filename": "Roesch_Ludwig_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203", "author": "", "orig_id": 1407356}}, {"model": "metainfo.source", "pk": 5237, "fields": {"orig_filename": "Roesler-Ehrenstahl_Ignaz_1765_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 205", "author": "", "orig_id": 1407362}}, {"model": "metainfo.source", "pk": 5238, "fields": {"orig_filename": "Roesler_Augustin_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203f.", "author": "", "orig_id": 1407358}}, {"model": "metainfo.source", "pk": 5239, "fields": {"orig_filename": "Roesler_Franz_1876_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204", "author": "", "orig_id": 1407359}}, {"model": "metainfo.source", "pk": 5240, "fields": {"orig_filename": "Roesler_Leonhard_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204", "author": "", "orig_id": 1407360}}, {"model": "metainfo.source", "pk": 5241, "fields": {"orig_filename": "Roesler_Robert_1836_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204f.", "author": "", "orig_id": 1407361}}, {"model": "metainfo.source", "pk": 5242, "fields": {"orig_filename": "Roesner_Karl_1804_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 205f.", "author": "", "orig_id": 1407363}}, {"model": "metainfo.source", "pk": 5243, "fields": {"orig_filename": "Roessel_Albin_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 206", "author": "", "orig_id": 1407364}}, {"model": "metainfo.source", "pk": 5244, "fields": {"orig_filename": "Roessler_Emil-Franz_1815_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 206f.", "author": "", "orig_id": 1407365}}, {"model": "metainfo.source", "pk": 5245, "fields": {"orig_filename": "Roessler_Ervin_1876_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 207", "author": "", "orig_id": 1407415}}, {"model": "metainfo.source", "pk": 5246, "fields": {"orig_filename": "Roessler_Johannes-Bapt_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 207f.", "author": "", "orig_id": 1407416}}, {"model": "metainfo.source", "pk": 5247, "fields": {"orig_filename": "Roessler_Josef_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407417}}, {"model": "metainfo.source", "pk": 5248, "fields": {"orig_filename": "Roessler_Karl_1864_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407418}}, {"model": "metainfo.source", "pk": 5249, "fields": {"orig_filename": "Roessler_Matej_1754_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407419}}, {"model": "metainfo.source", "pk": 5250, "fields": {"orig_filename": "Roessler_Mauriz_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208f.", "author": "", "orig_id": 1407420}}, {"model": "metainfo.source", "pk": 5251, "fields": {"orig_filename": "Roessler_Richard_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 209f.", "author": "", "orig_id": 1407421}}, {"model": "metainfo.source", "pk": 5252, "fields": {"orig_filename": "Roessler_Stefan_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210", "author": "", "orig_id": 1407422}}, {"model": "metainfo.source", "pk": 5253, "fields": {"orig_filename": "Roetzer_Karl_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210", "author": "", "orig_id": 1407423}}, {"model": "metainfo.source", "pk": 5254, "fields": {"orig_filename": "Roever_Heinrich_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210f.", "author": "", "orig_id": 1407424}}, {"model": "metainfo.source", "pk": 5255, "fields": {"orig_filename": "Rogala_Wojciech_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211", "author": "", "orig_id": 1407426}}, {"model": "metainfo.source", "pk": 5256, "fields": {"orig_filename": "Rogalski-Puch_Adalbert_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211", "author": "", "orig_id": 1407427}}, {"model": "metainfo.source", "pk": 5257, "fields": {"orig_filename": "Rogge_Walter_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211f.", "author": "", "orig_id": 1407428}}, {"model": "metainfo.source", "pk": 5258, "fields": {"orig_filename": "Rogosz-Ostoja_Jozef-Atanazy_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 212", "author": "", "orig_id": 1407429}}, {"model": "metainfo.source", "pk": 5259, "fields": {"orig_filename": "Rogulja_Petar_1888_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 212f.", "author": "", "orig_id": 1407430}}, {"model": "metainfo.source", "pk": 5260, "fields": {"orig_filename": "Rohan_Karel-Jan_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213", "author": "", "orig_id": 1407431}}, {"model": "metainfo.source", "pk": 5261, "fields": {"orig_filename": "Rohlena_Josef_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213", "author": "", "orig_id": 1407432}}, {"model": "metainfo.source", "pk": 5262, "fields": {"orig_filename": "Rohling_August_1839_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213f.", "author": "", "orig_id": 1407433}}, {"model": "metainfo.source", "pk": 5263, "fields": {"orig_filename": "Rohm-Hermannstaedten_Alfred_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 214", "author": "", "orig_id": 1407434}}, {"model": "metainfo.source", "pk": 5264, "fields": {"orig_filename": "Rohr-Denta_Franz_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 214f.", "author": "", "orig_id": 1407435}}, {"model": "metainfo.source", "pk": 5265, "fields": {"orig_filename": "Rohrauer_Alois_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407436}}, {"model": "metainfo.source", "pk": 5266, "fields": {"orig_filename": "Rohrbacher_Josef_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407437}}, {"model": "metainfo.source", "pk": 5267, "fields": {"orig_filename": "Rohrbacher_Josef_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407438}}, {"model": "metainfo.source", "pk": 5268, "fields": {"orig_filename": "Rohrer_Rudolf-Maria_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 216", "author": "", "orig_id": 1407440}}, {"model": "metainfo.source", "pk": 5269, "fields": {"orig_filename": "Rohrer_Rudolf_1805_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215f.", "author": "", "orig_id": 1407439}}, {"model": "metainfo.source", "pk": 5270, "fields": {"orig_filename": "Rohrman_Viljem_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 216f.", "author": "", "orig_id": 1407441}}, {"model": "metainfo.source", "pk": 5271, "fields": {"orig_filename": "Rohs_Martha_1909_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1952799}}, {"model": "metainfo.source", "pk": 5272, "fields": {"orig_filename": "Roj-Gasienica_Wojciech_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 217", "author": "", "orig_id": 1407442}}, {"model": "metainfo.source", "pk": 5273, "fields": {"orig_filename": "Rojacher_Ignaz_1844_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 217f.", "author": "", "orig_id": 1407443}}, {"model": "metainfo.source", "pk": 5274, "fields": {"orig_filename": "Rojc_Anton_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218", "author": "", "orig_id": 1407444}}, {"model": "metainfo.source", "pk": 5275, "fields": {"orig_filename": "Rojc_Milan_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218", "author": "", "orig_id": 1407445}}, {"model": "metainfo.source", "pk": 5276, "fields": {"orig_filename": "Rojina_Francisek_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218f.", "author": "", "orig_id": 1407446}}, {"model": "metainfo.source", "pk": 5277, "fields": {"orig_filename": "Rojka_Friedrich_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 219", "author": "", "orig_id": 1407447}}, {"model": "metainfo.source", "pk": 5278, "fields": {"orig_filename": "Rojko_Kaspar_1744_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 219f.", "author": "", "orig_id": 1407448}}, {"model": "metainfo.source", "pk": 5279, "fields": {"orig_filename": "Rokeach_Issachar-Dow-Baer_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220", "author": "", "orig_id": 1407449}}, {"model": "metainfo.source", "pk": 5280, "fields": {"orig_filename": "Rokeach_Schalom_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220", "author": "", "orig_id": 1407450}}, {"model": "metainfo.source", "pk": 5281, "fields": {"orig_filename": "Rokitansky_Friedrich-Karl_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220f.", "author": "", "orig_id": 1407451}}, {"model": "metainfo.source", "pk": 5282, "fields": {"orig_filename": "Rokitansky_Hans_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 221", "author": "", "orig_id": 1407452}}, {"model": "metainfo.source", "pk": 5283, "fields": {"orig_filename": "Rokitansky_Karl_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 221f.", "author": "", "orig_id": 1407453}}, {"model": "metainfo.source", "pk": 5284, "fields": {"orig_filename": "Rokitansky_Karl_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 222f.", "author": "", "orig_id": 1407454}}, {"model": "metainfo.source", "pk": 5285, "fields": {"orig_filename": "Rokos_Frantisek-Alexander_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223", "author": "", "orig_id": 1407455}}, {"model": "metainfo.source", "pk": 5286, "fields": {"orig_filename": "Roksandic_Simeon_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223", "author": "", "orig_id": 1407456}}, {"model": "metainfo.source", "pk": 5287, "fields": {"orig_filename": "Rolla_Alessandro_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224", "author": "", "orig_id": 1407458}}, {"model": "metainfo.source", "pk": 5288, "fields": {"orig_filename": "Rolleder_Anton_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224", "author": "", "orig_id": 1407459}}, {"model": "metainfo.source", "pk": 5289, "fields": {"orig_filename": "Roller_Alfred_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224ff.", "author": "", "orig_id": 1407460}}, {"model": "metainfo.source", "pk": 5290, "fields": {"orig_filename": "Roller_Josef_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226", "author": "", "orig_id": 1407461}}, {"model": "metainfo.source", "pk": 5291, "fields": {"orig_filename": "Roller_Margarete_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226f.", "author": "", "orig_id": 1407463}}, {"model": "metainfo.source", "pk": 5292, "fields": {"orig_filename": "Rollett_Alexander_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 227f.", "author": "", "orig_id": 1407464}}, {"model": "metainfo.source", "pk": 5293, "fields": {"orig_filename": "Rollett_Anton_1778_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 228", "author": "", "orig_id": 1407465}}, {"model": "metainfo.source", "pk": 5294, "fields": {"orig_filename": "Rollett_Hermann_1819_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 228f.", "author": "", "orig_id": 1407366}}, {"model": "metainfo.source", "pk": 5295, "fields": {"orig_filename": "Rollinger_Karl_1817_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 229", "author": "", "orig_id": 1407367}}, {"model": "metainfo.source", "pk": 5296, "fields": {"orig_filename": "Roll_Karl_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223f.", "author": "", "orig_id": 1407457}}, {"model": "metainfo.source", "pk": 5297, "fields": {"orig_filename": "Romako_Anton_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 229f.", "author": "", "orig_id": 1407368}}, {"model": "metainfo.source", "pk": 5298, "fields": {"orig_filename": "Romanin_Leon-Vita_1770_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230", "author": "", "orig_id": 1407369}}, {"model": "metainfo.source", "pk": 5299, "fields": {"orig_filename": "Romano-Ringe_Johann-Julius_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231", "author": "", "orig_id": 1407371}}, {"model": "metainfo.source", "pk": 5300, "fields": {"orig_filename": "Romanowski_Mieczyslaw_1833_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231", "author": "", "orig_id": 1407372}}, {"model": "metainfo.source", "pk": 5301, "fields": {"orig_filename": "Romano_Girolamo_1765_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230f.", "author": "", "orig_id": 1407370}}, {"model": "metainfo.source", "pk": 5302, "fields": {"orig_filename": "Roman_Alexandru_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230", "author": "", "orig_id": 1407374}}, {"model": "metainfo.source", "pk": 5303, "fields": {"orig_filename": "Romaszkan_Grzegorz-Jozef_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231f.", "author": "", "orig_id": 1407373}}, {"model": "metainfo.source", "pk": 5304, "fields": {"orig_filename": "Rombauer_Johann_1782_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 232", "author": "", "orig_id": 1407375}}, {"model": "metainfo.source", "pk": 5305, "fields": {"orig_filename": "Romer-Kis-Enyiczke_Stefan_1788_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233", "author": "", "orig_id": 1407378}}, {"model": "metainfo.source", "pk": 5306, "fields": {"orig_filename": "Romer_Floridus_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 232f.", "author": "", "orig_id": 1407376}}, {"model": "metainfo.source", "pk": 5307, "fields": {"orig_filename": "Romer_Johann_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233", "author": "", "orig_id": 1407377}}, {"model": "metainfo.source", "pk": 5308, "fields": {"orig_filename": "Romich_Siegfried_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233f.", "author": "", "orig_id": 1407379}}, {"model": "metainfo.source", "pk": 5309, "fields": {"orig_filename": "Romilli_Bartolomeo-Carlo_1795_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234", "author": "", "orig_id": 1407380}}, {"model": "metainfo.source", "pk": 5310, "fields": {"orig_filename": "Ronacher_Anton_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235", "author": "", "orig_id": 1407383}}, {"model": "metainfo.source", "pk": 5311, "fields": {"orig_filename": "Ronai_Janos_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235", "author": "", "orig_id": 1407404}}, {"model": "metainfo.source", "pk": 5312, "fields": {"orig_filename": "Ronay-Lipto-Ujvar_Franz-X-Gustav_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236", "author": "", "orig_id": 1407385}}, {"model": "metainfo.source", "pk": 5313, "fields": {"orig_filename": "Ronay_Jacint-Janos_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235f.", "author": "", "orig_id": 1407384}}, {"model": "metainfo.source", "pk": 5314, "fields": {"orig_filename": "Rona_Samuel_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234", "author": "", "orig_id": 1407381}}, {"model": "metainfo.source", "pk": 5315, "fields": {"orig_filename": "Rona_Zsigmond_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234f.", "author": "", "orig_id": 1407382}}, {"model": "metainfo.source", "pk": 5316, "fields": {"orig_filename": "Roncali_Leone_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236", "author": "", "orig_id": 1407386}}, {"model": "metainfo.source", "pk": 5317, "fields": {"orig_filename": "Ronconi_Domenico_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236f.", "author": "", "orig_id": 1407387}}, {"model": "metainfo.source", "pk": 5318, "fields": {"orig_filename": "Ronconi_Giorgio_1810_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237", "author": "", "orig_id": 1407388}}, {"model": "metainfo.source", "pk": 5319, "fields": {"orig_filename": "Ronconi_Giovanni-Batt_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237", "author": "", "orig_id": 1407389}}, {"model": "metainfo.source", "pk": 5320, "fields": {"orig_filename": "Roncourt_Albert_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237f.", "author": "", "orig_id": 1407390}}, {"model": "metainfo.source", "pk": 5321, "fields": {"orig_filename": "Rondolini_Lorenzo_1752_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238", "author": "", "orig_id": 1407391}}, {"model": "metainfo.source", "pk": 5322, "fields": {"orig_filename": "Ronsperger_Benedikt_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238", "author": "", "orig_id": 1407392}}, {"model": "metainfo.source", "pk": 5323, "fields": {"orig_filename": "Ronzani_Domenico_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238f.", "author": "", "orig_id": 1407393}}, {"model": "metainfo.source", "pk": 5324, "fields": {"orig_filename": "Roose_Friedrich_1767_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 239f.", "author": "", "orig_id": 1407395}}, {"model": "metainfo.source", "pk": 5325, "fields": {"orig_filename": "Roosz_Peter_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407396}}, {"model": "metainfo.source", "pk": 5326, "fields": {"orig_filename": "Roos_Emil_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 239", "author": "", "orig_id": 1407394}}, {"model": "metainfo.source", "pk": 5327, "fields": {"orig_filename": "Roretz_Albrecht_1846_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407397}}, {"model": "metainfo.source", "pk": 5328, "fields": {"orig_filename": "Rosam_Vaclav_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241", "author": "", "orig_id": 1407400}}, {"model": "metainfo.source", "pk": 5329, "fields": {"orig_filename": "Rosanes_Jakob_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241", "author": "", "orig_id": 1407401}}, {"model": "metainfo.source", "pk": 5330, "fields": {"orig_filename": "Rosas_Anton_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241f.", "author": "", "orig_id": 1407402}}, {"model": "metainfo.source", "pk": 5331, "fields": {"orig_filename": "Rosa_Costantino_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240f.", "author": "", "orig_id": 1407399}}, {"model": "metainfo.source", "pk": 5332, "fields": {"orig_filename": "Rosche_Alfred_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 242", "author": "", "orig_id": 1407403}}, {"model": "metainfo.source", "pk": 5333, "fields": {"orig_filename": "Roschmann-Hoerburg_Anton-Leopold_1777_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 242f.", "author": "", "orig_id": 1407405}}, {"model": "metainfo.source", "pk": 5334, "fields": {"orig_filename": "Rosciszewski-Junosza_Adam_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 243", "author": "", "orig_id": 1407406}}, {"model": "metainfo.source", "pk": 5335, "fields": {"orig_filename": "Rosegger_Peter_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 245f.", "author": "", "orig_id": 1407411}}, {"model": "metainfo.source", "pk": 5336, "fields": {"orig_filename": "Rosegger_Rupert_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 246", "author": "", "orig_id": 1407412}}, {"model": "metainfo.source", "pk": 5337, "fields": {"orig_filename": "Righetti_Giovanni_1766_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 161f.", "author": "", "orig_id": 1407150}}, {"model": "metainfo.source", "pk": 5338, "fields": {"orig_filename": "Righetti_Giovanni_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162", "author": "", "orig_id": 1407151}}, {"model": "metainfo.source", "pk": 5339, "fields": {"orig_filename": "Rigler_Gustav_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162", "author": "", "orig_id": 1407152}}, {"model": "metainfo.source", "pk": 5340, "fields": {"orig_filename": "Rigler_Lorenz_1815_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162f.", "author": "", "orig_id": 1407153}}, {"model": "metainfo.source", "pk": 5341, "fields": {"orig_filename": "Rigler_Peter-Paul_1796_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 163", "author": "", "orig_id": 1407154}}, {"model": "metainfo.source", "pk": 5342, "fields": {"orig_filename": "Riha_Martin_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 163f.", "author": "", "orig_id": 1407155}}, {"model": "metainfo.source", "pk": 5343, "fields": {"orig_filename": "Rihovsky_Vojtech_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 164", "author": "", "orig_id": 1407156}}, {"model": "metainfo.source", "pk": 5344, "fields": {"orig_filename": "Rilke_Rainer-Maria_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 164ff.", "author": "", "orig_id": 1407157}}, {"model": "metainfo.source", "pk": 5345, "fields": {"orig_filename": "Rill_Josef_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166", "author": "", "orig_id": 1407158}}, {"model": "metainfo.source", "pk": 5346, "fields": {"orig_filename": "Rimboeck_Karl_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166", "author": "", "orig_id": 1407159}}, {"model": "metainfo.source", "pk": 5347, "fields": {"orig_filename": "Rimely_Karoly_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166f.", "author": "", "orig_id": 1407160}}, {"model": "metainfo.source", "pk": 5348, "fields": {"orig_filename": "Rimmer_Adalbert_1818_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407161}}, {"model": "metainfo.source", "pk": 5349, "fields": {"orig_filename": "Rinaldini_Anton_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407162}}, {"model": "metainfo.source", "pk": 5350, "fields": {"orig_filename": "Rinaldini_Teodoro_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407163}}, {"model": "metainfo.source", "pk": 5351, "fields": {"orig_filename": "Rincolini_Ernst-Karl_1785_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167f.", "author": "", "orig_id": 1407164}}, {"model": "metainfo.source", "pk": 5352, "fields": {"orig_filename": "Ringelblum_Emanuel_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 168", "author": "", "orig_id": 1407165}}, {"model": "metainfo.source", "pk": 5353, "fields": {"orig_filename": "Ringelsheim_Josef_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 168f.", "author": "", "orig_id": 1407166}}, {"model": "metainfo.source", "pk": 5354, "fields": {"orig_filename": "Ringhoffer_Emanuel_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169", "author": "", "orig_id": 1407167}}, {"model": "metainfo.source", "pk": 5355, "fields": {"orig_filename": "Ringhoffer_Franz_1817_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169", "author": "", "orig_id": 1407168}}, {"model": "metainfo.source", "pk": 5356, "fields": {"orig_filename": "Ringhoffer_Franz_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169f.", "author": "", "orig_id": 1407169}}, {"model": "metainfo.source", "pk": 5357, "fields": {"orig_filename": "Ringler_Florian_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170", "author": "", "orig_id": 1407170}}, {"model": "metainfo.source", "pk": 5358, "fields": {"orig_filename": "Ringler_Karl_1826_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170", "author": "", "orig_id": 1407171}}, {"model": "metainfo.source", "pk": 5359, "fields": {"orig_filename": "Rintelen_Anton_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 171", "author": "", "orig_id": 1407173}}, {"model": "metainfo.source", "pk": 5360, "fields": {"orig_filename": "Rintelen_Anton_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 171f.", "author": "", "orig_id": 1407174}}, {"model": "metainfo.source", "pk": 5361, "fields": {"orig_filename": "Rint_Johann_1814_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170f.", "author": "", "orig_id": 1407172}}, {"model": "metainfo.source", "pk": 5362, "fields": {"orig_filename": "Riotte_Philipp-Jakob_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 172", "author": "", "orig_id": 1407175}}, {"model": "metainfo.source", "pk": 5363, "fields": {"orig_filename": "Ripamonti_Riccardo_1849_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 172f.", "author": "", "orig_id": 1407176}}, {"model": "metainfo.source", "pk": 5364, "fields": {"orig_filename": "Rippel_Johann_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173", "author": "", "orig_id": 1407177}}, {"model": "metainfo.source", "pk": 5365, "fields": {"orig_filename": "Ripper_Julius_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173", "author": "", "orig_id": 1407178}}, {"model": "metainfo.source", "pk": 5366, "fields": {"orig_filename": "Ripper_Maximilian_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173f.", "author": "", "orig_id": 1407179}}, {"model": "metainfo.source", "pk": 5367, "fields": {"orig_filename": "Rippl-Ronai_Jozsef_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174", "author": "", "orig_id": 1407181}}, {"model": "metainfo.source", "pk": 5368, "fields": {"orig_filename": "Rippl_Eugen_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174", "author": "", "orig_id": 1407180}}, {"model": "metainfo.source", "pk": 5369, "fields": {"orig_filename": "Rismondo_Giovanni_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175", "author": "", "orig_id": 1407183}}, {"model": "metainfo.source", "pk": 5370, "fields": {"orig_filename": "Riss_Josef_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175", "author": "", "orig_id": 1407184}}, {"model": "metainfo.source", "pk": 5371, "fields": {"orig_filename": "Ristori_Adelaide_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175f.", "author": "", "orig_id": 1407185}}, {"model": "metainfo.source", "pk": 5372, "fields": {"orig_filename": "Ristow_Gustav_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176", "author": "", "orig_id": 1407186}}, {"model": "metainfo.source", "pk": 5373, "fields": {"orig_filename": "Ris_Jenny_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174f.", "author": "", "orig_id": 1407182}}, {"model": "metainfo.source", "pk": 5374, "fields": {"orig_filename": "Ritt-Jaufen_August_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176", "author": "", "orig_id": 1407187}}, {"model": "metainfo.source", "pk": 5375, "fields": {"orig_filename": "Ritter-Rittersberg_Johann_1780_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 178", "author": "", "orig_id": 1407468}}, {"model": "metainfo.source", "pk": 5376, "fields": {"orig_filename": "Ritter-Rittersberg_Ludwig_1809_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 178f.", "author": "", "orig_id": 1407469}}, {"model": "metainfo.source", "pk": 5377, "fields": {"orig_filename": "Ritter-Rittershayn_Gottfried_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179", "author": "", "orig_id": 1407470}}, {"model": "metainfo.source", "pk": 5378, "fields": {"orig_filename": "Ritter-Zahony_Eugen_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179", "author": "", "orig_id": 1407471}}, {"model": "metainfo.source", "pk": 5379, "fields": {"orig_filename": "Ritter-Zahony_Hektor_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179f.", "author": "", "orig_id": 1407472}}, {"model": "metainfo.source", "pk": 5380, "fields": {"orig_filename": "Rittershausen_Hermann_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407473}}, {"model": "metainfo.source", "pk": 5381, "fields": {"orig_filename": "Ritter_Albert_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176f.", "author": "", "orig_id": 1407188}}, {"model": "metainfo.source", "pk": 5382, "fields": {"orig_filename": "Ritter_Eduard_1809_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177", "author": "", "orig_id": 1407466}}, {"model": "metainfo.source", "pk": 5383, "fields": {"orig_filename": "Ritter_Franz_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177", "author": "", "orig_id": 1409577}}, {"model": "metainfo.source", "pk": 5384, "fields": {"orig_filename": "Ritter_Josef_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177f.", "author": "", "orig_id": 1407467}}, {"model": "metainfo.source", "pk": 5385, "fields": {"orig_filename": "Rittig_Ivan_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407474}}, {"model": "metainfo.source", "pk": 5386, "fields": {"orig_filename": "Rittig_Johann_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407475}}, {"model": "metainfo.source", "pk": 5387, "fields": {"orig_filename": "Rittinger_Peter_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180f.", "author": "", "orig_id": 1407476}}, {"model": "metainfo.source", "pk": 5388, "fields": {"orig_filename": "Rittmeyer_Giulia-Cecilia_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 181", "author": "", "orig_id": 1407477}}, {"model": "metainfo.source", "pk": 5389, "fields": {"orig_filename": "Rittner_Edward_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 181f.", "author": "", "orig_id": 1407478}}, {"model": "metainfo.source", "pk": 5390, "fields": {"orig_filename": "Rittner_Rudolf_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 182f.", "author": "", "orig_id": 1407479}}, {"model": "metainfo.source", "pk": 5391, "fields": {"orig_filename": "Rittner_Thaddaeus_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 183", "author": "", "orig_id": 1407480}}, {"model": "metainfo.source", "pk": 5392, "fields": {"orig_filename": "Ritzberger_Albert_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 183f.", "author": "", "orig_id": 1407481}}, {"model": "metainfo.source", "pk": 5393, "fields": {"orig_filename": "Ritzberger_Engelbert_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184", "author": "", "orig_id": 1407483}}, {"model": "metainfo.source", "pk": 5394, "fields": {"orig_filename": "Ritzoffy_Nikola_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184", "author": "", "orig_id": 1407482}}, {"model": "metainfo.source", "pk": 5395, "fields": {"orig_filename": "Rizner_Ludovit-Vladimir_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184f.", "author": "", "orig_id": 1407484}}, {"model": "metainfo.source", "pk": 5396, "fields": {"orig_filename": "Rizy_Theobald_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 185", "author": "", "orig_id": 1407485}}, {"model": "metainfo.source", "pk": 5397, "fields": {"orig_filename": "Rizzi_Lodovico_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1941331}}, {"model": "metainfo.source", "pk": 5398, "fields": {"orig_filename": "Rizzi_Luigi_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 185f.", "author": "", "orig_id": 1407486}}, {"model": "metainfo.source", "pk": 5399, "fields": {"orig_filename": "Rizzi_Vinzenz_1816_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 186", "author": "", "orig_id": 1407487}}, {"model": "metainfo.source", "pk": 5400, "fields": {"orig_filename": "Robert_Florent_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 186f.", "author": "", "orig_id": 1407488}}, {"model": "metainfo.source", "pk": 5401, "fields": {"orig_filename": "Robert_Julius_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 187", "author": "", "orig_id": 1407489}}, {"model": "metainfo.source", "pk": 5402, "fields": {"orig_filename": "Robert_Ludwig_1792_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 187f.", "author": "", "orig_id": 1407490}}, {"model": "metainfo.source", "pk": 5403, "fields": {"orig_filename": "Robert_Richard_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188", "author": "", "orig_id": 1407491}}, {"model": "metainfo.source", "pk": 5404, "fields": {"orig_filename": "Robic_Simon_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188", "author": "", "orig_id": 1407492}}, {"model": "metainfo.source", "pk": 5405, "fields": {"orig_filename": "Robinsohn_Isaak_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 189", "author": "", "orig_id": 1407494}}, {"model": "metainfo.source", "pk": 5406, "fields": {"orig_filename": "Robinson_Adolf_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 189", "author": "", "orig_id": 1407495}}, {"model": "metainfo.source", "pk": 5407, "fields": {"orig_filename": "Robins_Adolf_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188f.", "author": "", "orig_id": 1407493}}, {"model": "metainfo.source", "pk": 5408, "fields": {"orig_filename": "Robitschek_Kurt_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 190", "author": "", "orig_id": 1407497}}, {"model": "metainfo.source", "pk": 5409, "fields": {"orig_filename": "Robitschek_Robert_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191", "author": "", "orig_id": 1407498}}, {"model": "metainfo.source", "pk": 5410, "fields": {"orig_filename": "Robitsch_Matthias_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 190", "author": "", "orig_id": 1407496}}, {"model": "metainfo.source", "pk": 5411, "fields": {"orig_filename": "Rochata_Karl_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191", "author": "", "orig_id": 1407499}}, {"model": "metainfo.source", "pk": 5412, "fields": {"orig_filename": "Rochelt_Franz_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191f.", "author": "", "orig_id": 1407500}}, {"model": "metainfo.source", "pk": 5413, "fields": {"orig_filename": "Rochleder_Friedrich_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 192", "author": "", "orig_id": 1407501}}, {"model": "metainfo.source", "pk": 5414, "fields": {"orig_filename": "Rochlitzer_Ludwig_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 192", "author": "", "orig_id": 1407502}}, {"model": "metainfo.source", "pk": 5415, "fields": {"orig_filename": "Rochowanski_Emil_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193", "author": "", "orig_id": 1407503}}, {"model": "metainfo.source", "pk": 5416, "fields": {"orig_filename": "Rodakowski_Henryk_1823_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193f.", "author": "", "orig_id": 1407505}}, {"model": "metainfo.source", "pk": 5417, "fields": {"orig_filename": "Rodakowski_Josef_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194", "author": "", "orig_id": 1407506}}, {"model": "metainfo.source", "pk": 5418, "fields": {"orig_filename": "Rodakowski_Maximilian_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194", "author": "", "orig_id": 1407507}}, {"model": "metainfo.source", "pk": 5419, "fields": {"orig_filename": "Roda_Alexander_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193", "author": "", "orig_id": 1407504}}, {"model": "metainfo.source", "pk": 5420, "fields": {"orig_filename": "Rode_Ignaz_1819_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194f.", "author": "", "orig_id": 1407508}}, {"model": "metainfo.source", "pk": 5421, "fields": {"orig_filename": "Rode_Leon_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195", "author": "", "orig_id": 1407509}}, {"model": "metainfo.source", "pk": 5422, "fields": {"orig_filename": "Rode_Walther_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195", "author": "", "orig_id": 1407510}}, {"model": "metainfo.source", "pk": 5423, "fields": {"orig_filename": "Rodich_Gabriel_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195f.", "author": "", "orig_id": 1407511}}, {"model": "metainfo.source", "pk": 5424, "fields": {"orig_filename": "Rodler_Adolf_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 196", "author": "", "orig_id": 1407512}}, {"model": "metainfo.source", "pk": 5425, "fields": {"orig_filename": "Rodler_Alfred_1861_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 196f.", "author": "", "orig_id": 1407339}}, {"model": "metainfo.source", "pk": 5426, "fields": {"orig_filename": "Rodler_Erich_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197", "author": "", "orig_id": 1407340}}, {"model": "metainfo.source", "pk": 5427, "fields": {"orig_filename": "Roebbeling_Hermann_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197f.", "author": "", "orig_id": 1407342}}, {"model": "metainfo.source", "pk": 5428, "fields": {"orig_filename": "Roebl_Klemens_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 198", "author": "", "orig_id": 1407343}}, {"model": "metainfo.source", "pk": 5429, "fields": {"orig_filename": "Roeckel_August_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 199", "author": "", "orig_id": 1407345}}, {"model": "metainfo.source", "pk": 5430, "fields": {"orig_filename": "Roeck_Istvan_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 198f.", "author": "", "orig_id": 1407344}}, {"model": "metainfo.source", "pk": 5431, "fields": {"orig_filename": "Roeder_Gustav_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 199f.", "author": "", "orig_id": 1407346}}, {"model": "metainfo.source", "pk": 5432, "fields": {"orig_filename": "Roeggl_Alois_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 200", "author": "", "orig_id": 1407347}}, {"model": "metainfo.source", "pk": 5433, "fields": {"orig_filename": "Roeggl_Josef_1781_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 200f.", "author": "", "orig_id": 1407348}}, {"model": "metainfo.source", "pk": 5434, "fields": {"orig_filename": "Roehlich_Josef_1836_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407349}}, {"model": "metainfo.source", "pk": 5435, "fields": {"orig_filename": "Roehm_Ernst-Friedrich_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407350}}, {"model": "metainfo.source", "pk": 5436, "fields": {"orig_filename": "Roell_Anton_1832_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407351}}, {"model": "metainfo.source", "pk": 5437, "fields": {"orig_filename": "Roell_Moritz-Friedrich_1818_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201f.", "author": "", "orig_id": 1407352}}, {"model": "metainfo.source", "pk": 5438, "fields": {"orig_filename": "Roell_Viktor_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202", "author": "", "orig_id": 1407353}}, {"model": "metainfo.source", "pk": 5439, "fields": {"orig_filename": "Roemer_Julius-Paul_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202", "author": "", "orig_id": 1407354}}, {"model": "metainfo.source", "pk": 5440, "fields": {"orig_filename": "Richarz_Stefan_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407243}}, {"model": "metainfo.source", "pk": 5441, "fields": {"orig_filename": "Richter-Wittbach_Gustav_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131f.", "author": "", "orig_id": 1407272}}, {"model": "metainfo.source", "pk": 5442, "fields": {"orig_filename": "Richtera_Leopold_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132", "author": "", "orig_id": 1407273}}, {"model": "metainfo.source", "pk": 5443, "fields": {"orig_filename": "Richter_Aladar_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407244}}, {"model": "metainfo.source", "pk": 5444, "fields": {"orig_filename": "Richter_Albert_1843_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407245}}, {"model": "metainfo.source", "pk": 5445, "fields": {"orig_filename": "Richter_Alexander_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120f.", "author": "", "orig_id": 1407246}}, {"model": "metainfo.source", "pk": 5446, "fields": {"orig_filename": "Richter_Anton-Josef_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121f.", "author": "", "orig_id": 1407249}}, {"model": "metainfo.source", "pk": 5447, "fields": {"orig_filename": "Richter_Anton_1805_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121", "author": "", "orig_id": 1407247}}, {"model": "metainfo.source", "pk": 5448, "fields": {"orig_filename": "Richter_Anton_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121", "author": "", "orig_id": 1407248}}, {"model": "metainfo.source", "pk": 5449, "fields": {"orig_filename": "Richter_Benedikt_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 122", "author": "", "orig_id": 1407250}}, {"model": "metainfo.source", "pk": 5450, "fields": {"orig_filename": "Richter_Eduard_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 122f.", "author": "", "orig_id": 1407251}}, {"model": "metainfo.source", "pk": 5451, "fields": {"orig_filename": "Richter_Elise_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 123f.", "author": "", "orig_id": 1407252}}, {"model": "metainfo.source", "pk": 5452, "fields": {"orig_filename": "Richter_Franz-X-Johann_1783_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 125", "author": "", "orig_id": 1407256}}, {"model": "metainfo.source", "pk": 5453, "fields": {"orig_filename": "Richter_Franz_1774_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124", "author": "", "orig_id": 1407253}}, {"model": "metainfo.source", "pk": 5454, "fields": {"orig_filename": "Richter_Franz_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124", "author": "", "orig_id": 1407254}}, {"model": "metainfo.source", "pk": 5455, "fields": {"orig_filename": "Richter_Franz_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124f.", "author": "", "orig_id": 1407255}}, {"model": "metainfo.source", "pk": 5456, "fields": {"orig_filename": "Richter_Franz_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1455961}}, {"model": "metainfo.source", "pk": 5457, "fields": {"orig_filename": "Richter_Hans_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 125f.", "author": "", "orig_id": 1407257}}, {"model": "metainfo.source", "pk": 5458, "fields": {"orig_filename": "Richter_Heinrich-Hermann_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 126f.", "author": "", "orig_id": 1407258}}, {"model": "metainfo.source", "pk": 5459, "fields": {"orig_filename": "Richter_Heinrich-Moritz_1841_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127", "author": "", "orig_id": 1407259}}, {"model": "metainfo.source", "pk": 5460, "fields": {"orig_filename": "Richter_Helene_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127", "author": "", "orig_id": 1407260}}, {"model": "metainfo.source", "pk": 5461, "fields": {"orig_filename": "Richter_Johann-Anton_1782_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127f.", "author": "", "orig_id": 1407261}}, {"model": "metainfo.source", "pk": 5462, "fields": {"orig_filename": "Richter_Johann-Julius_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 128f.", "author": "", "orig_id": 1407262}}, {"model": "metainfo.source", "pk": 5463, "fields": {"orig_filename": "Richter_Josef-Karl_1880_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407263}}, {"model": "metainfo.source", "pk": 5464, "fields": {"orig_filename": "Richter_Karl-Max_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129f.", "author": "", "orig_id": 1407266}}, {"model": "metainfo.source", "pk": 5465, "fields": {"orig_filename": "Richter_Karl-Nikolaus_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130", "author": "", "orig_id": 1407267}}, {"model": "metainfo.source", "pk": 5466, "fields": {"orig_filename": "Richter_Karl_1855_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407264}}, {"model": "metainfo.source", "pk": 5467, "fields": {"orig_filename": "Richter_Karl_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407265}}, {"model": "metainfo.source", "pk": 5468, "fields": {"orig_filename": "Richter_Paul_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130", "author": "", "orig_id": 1407268}}, {"model": "metainfo.source", "pk": 5469, "fields": {"orig_filename": "Richter_Pius_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130f.", "author": "", "orig_id": 1407269}}, {"model": "metainfo.source", "pk": 5470, "fields": {"orig_filename": "Richter_Richard_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131", "author": "", "orig_id": 1407270}}, {"model": "metainfo.source", "pk": 5471, "fields": {"orig_filename": "Richter_Wilhelm_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131", "author": "", "orig_id": 1407271}}, {"model": "metainfo.source", "pk": 5472, "fields": {"orig_filename": "Ricker_Anselm_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 133", "author": "", "orig_id": 1407277}}, {"model": "metainfo.source", "pk": 5473, "fields": {"orig_filename": "Rick_Johann-Kaspar_1808_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132", "author": "", "orig_id": 1407274}}, {"model": "metainfo.source", "pk": 5474, "fields": {"orig_filename": "Rick_Johannes_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132f.", "author": "", "orig_id": 1407275}}, {"model": "metainfo.source", "pk": 5475, "fields": {"orig_filename": "Rick_Karl_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 133", "author": "", "orig_id": 1407276}}, {"model": "metainfo.source", "pk": 5476, "fields": {"orig_filename": "Ricordi_Giovanni_1785_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 134", "author": "", "orig_id": 1407278}}, {"model": "metainfo.source", "pk": 5477, "fields": {"orig_filename": "Ridler_Johann-Wilhelm_1772_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 134f.", "author": "", "orig_id": 1407279}}, {"model": "metainfo.source", "pk": 5478, "fields": {"orig_filename": "Riedel_Andreas_1748_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 135f.", "author": "", "orig_id": 1407281}}, {"model": "metainfo.source", "pk": 5479, "fields": {"orig_filename": "Riedel_Josef-Anton_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137", "author": "", "orig_id": 1407284}}, {"model": "metainfo.source", "pk": 5480, "fields": {"orig_filename": "Riedel_Josef-Gottfried_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137f.", "author": "", "orig_id": 1407285}}, {"model": "metainfo.source", "pk": 5481, "fields": {"orig_filename": "Riedel_Josef_1816_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 136f.", "author": "", "orig_id": 1407282}}, {"model": "metainfo.source", "pk": 5482, "fields": {"orig_filename": "Riedel_Josef_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137", "author": "", "orig_id": 1407283}}, {"model": "metainfo.source", "pk": 5483, "fields": {"orig_filename": "Riedel_Wilhelm_1832_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 138", "author": "", "orig_id": 1407286}}, {"model": "metainfo.source", "pk": 5484, "fields": {"orig_filename": "Riederer-Dachsberg_Gustav_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407297}}, {"model": "metainfo.source", "pk": 5485, "fields": {"orig_filename": "Riederer_Ernst_1868_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 140f.", "author": "", "orig_id": 1407296}}, {"model": "metainfo.source", "pk": 5486, "fields": {"orig_filename": "Rieder_Alois_1836_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 138f.", "author": "", "orig_id": 1407287}}, {"model": "metainfo.source", "pk": 5487, "fields": {"orig_filename": "Rieder_Ambros-Matthias_1771_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407288}}, {"model": "metainfo.source", "pk": 5488, "fields": {"orig_filename": "Rieder_Franz_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407289}}, {"model": "metainfo.source", "pk": 5489, "fields": {"orig_filename": "Rieder_Georg_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407293}}, {"model": "metainfo.source", "pk": 5490, "fields": {"orig_filename": "Rieder_Ignaz_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139f.", "author": "", "orig_id": 1407294}}, {"model": "metainfo.source", "pk": 5491, "fields": {"orig_filename": "Rieder_Wilhelm-August_1796_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 140", "author": "", "orig_id": 1407295}}, {"model": "metainfo.source", "pk": 5492, "fields": {"orig_filename": "Riedinger_Anizet_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407298}}, {"model": "metainfo.source", "pk": 5493, "fields": {"orig_filename": "Riedinger_Hubert_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407299}}, {"model": "metainfo.source", "pk": 5494, "fields": {"orig_filename": "Riedl-Leuenstern_Josef_1786_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144f.", "author": "", "orig_id": 1407307}}, {"model": "metainfo.source", "pk": 5495, "fields": {"orig_filename": "Riedl-Riedenstein_Johann-Bapt_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 145", "author": "", "orig_id": 1407308}}, {"model": "metainfo.source", "pk": 5496, "fields": {"orig_filename": "Riedler_Alois_1850_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 145f.", "author": "", "orig_id": 1407309}}, {"model": "metainfo.source", "pk": 5497, "fields": {"orig_filename": "Riedler_Ferdinand_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407310}}, {"model": "metainfo.source", "pk": 5498, "fields": {"orig_filename": "Riedl_Franz-X_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142", "author": "", "orig_id": 1407300}}, {"model": "metainfo.source", "pk": 5499, "fields": {"orig_filename": "Riedl_Frigyes_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142", "author": "", "orig_id": 1407301}}, {"model": "metainfo.source", "pk": 5500, "fields": {"orig_filename": "Riedl_Hubert_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142f.", "author": "", "orig_id": 1407302}}, {"model": "metainfo.source", "pk": 5501, "fields": {"orig_filename": "Riedl_Johann_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 143", "author": "", "orig_id": 1407303}}, {"model": "metainfo.source", "pk": 5502, "fields": {"orig_filename": "Riedl_Richard_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 143f.", "author": "", "orig_id": 1407304}}, {"model": "metainfo.source", "pk": 5503, "fields": {"orig_filename": "Riedl_Robert_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144", "author": "", "orig_id": 1407305}}, {"model": "metainfo.source", "pk": 5504, "fields": {"orig_filename": "Riedl_Szende_1831_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144", "author": "", "orig_id": 1407306}}, {"model": "metainfo.source", "pk": 5505, "fields": {"orig_filename": "Riedmiller_Bernhard_1757_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407311}}, {"model": "metainfo.source", "pk": 5506, "fields": {"orig_filename": "Rief_Johann-Georg_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407312}}, {"model": "metainfo.source", "pk": 5507, "fields": {"orig_filename": "Rief_Josef-Cal_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146f.", "author": "", "orig_id": 1407313}}, {"model": "metainfo.source", "pk": 5508, "fields": {"orig_filename": "Rieger_August_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147", "author": "", "orig_id": 1407314}}, {"model": "metainfo.source", "pk": 5509, "fields": {"orig_filename": "Rieger_Bohuslav_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147", "author": "", "orig_id": 1407315}}, {"model": "metainfo.source", "pk": 5510, "fields": {"orig_filename": "Rieger_Eduard_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147f.", "author": "", "orig_id": 1407316}}, {"model": "metainfo.source", "pk": 5511, "fields": {"orig_filename": "Rieger_Erwin_1889_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 148", "author": "", "orig_id": 1407317}}, {"model": "metainfo.source", "pk": 5512, "fields": {"orig_filename": "Rieger_Frantisek-Ladislav_1818_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 148ff.", "author": "", "orig_id": 1407318}}, {"model": "metainfo.source", "pk": 5513, "fields": {"orig_filename": "Rieger_Franz_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150", "author": "", "orig_id": 1407319}}, {"model": "metainfo.source", "pk": 5514, "fields": {"orig_filename": "Rieger_Gottfried_1764_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150", "author": "", "orig_id": 1407320}}, {"model": "metainfo.source", "pk": 5515, "fields": {"orig_filename": "Rieger_Josef_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150f.", "author": "", "orig_id": 1407321}}, {"model": "metainfo.source", "pk": 5516, "fields": {"orig_filename": "Rieger_Josip_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151", "author": "", "orig_id": 1407322}}, {"model": "metainfo.source", "pk": 5517, "fields": {"orig_filename": "Rieger_Otto_1880_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151", "author": "", "orig_id": 1407323}}, {"model": "metainfo.source", "pk": 5518, "fields": {"orig_filename": "Riegler_Alois_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407327}}, {"model": "metainfo.source", "pk": 5519, "fields": {"orig_filename": "Riegler_Ferdinand_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407328}}, {"model": "metainfo.source", "pk": 5520, "fields": {"orig_filename": "Riegler_Gideon_1880_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407329}}, {"model": "metainfo.source", "pk": 5521, "fields": {"orig_filename": "Riegl_Alois_1858_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 152", "author": "", "orig_id": 1407325}}, {"model": "metainfo.source", "pk": 5522, "fields": {"orig_filename": "Riegl_Anton_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 152f.", "author": "", "orig_id": 1407326}}, {"model": "metainfo.source", "pk": 5523, "fields": {"orig_filename": "Riehl_Alois-Adolf_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153f.", "author": "", "orig_id": 1407330}}, {"model": "metainfo.source", "pk": 5524, "fields": {"orig_filename": "Riehl_Anton_1820_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 154", "author": "", "orig_id": 1407331}}, {"model": "metainfo.source", "pk": 5525, "fields": {"orig_filename": "Riehl_Anton_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155", "author": "", "orig_id": 1407332}}, {"model": "metainfo.source", "pk": 5526, "fields": {"orig_filename": "Riehl_Gustav_1855_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155", "author": "", "orig_id": 1407333}}, {"model": "metainfo.source", "pk": 5527, "fields": {"orig_filename": "Riehl_Josef_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155f.", "author": "", "orig_id": 1407334}}, {"model": "metainfo.source", "pk": 5528, "fields": {"orig_filename": "Riener_Martin_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156", "author": "", "orig_id": 1407335}}, {"model": "metainfo.source", "pk": 5529, "fields": {"orig_filename": "Riepl_Franz-X-Laurenz_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156f.", "author": "", "orig_id": 1407337}}, {"model": "metainfo.source", "pk": 5530, "fields": {"orig_filename": "Riesel_Mijat_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 157", "author": "", "orig_id": 1407338}}, {"model": "metainfo.source", "pk": 5531, "fields": {"orig_filename": "Riesenfeld_Hugo_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 157f.", "author": "", "orig_id": 1407140}}, {"model": "metainfo.source", "pk": 5532, "fields": {"orig_filename": "Riesenhuber_Martin_1876_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158", "author": "", "orig_id": 1407141}}, {"model": "metainfo.source", "pk": 5533, "fields": {"orig_filename": "Rieser_Michael_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158", "author": "", "orig_id": 1407142}}, {"model": "metainfo.source", "pk": 5534, "fields": {"orig_filename": "Rieszner_Valerian_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158f.", "author": "", "orig_id": 1407143}}, {"model": "metainfo.source", "pk": 5535, "fields": {"orig_filename": "Rietsch_Heinrich_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 159", "author": "", "orig_id": 1407144}}, {"model": "metainfo.source", "pk": 5536, "fields": {"orig_filename": "Rietti_Arturo_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 159f.", "author": "", "orig_id": 1407145}}, {"model": "metainfo.source", "pk": 5537, "fields": {"orig_filename": "Riewel_Hermann_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160", "author": "", "orig_id": 1407146}}, {"model": "metainfo.source", "pk": 5538, "fields": {"orig_filename": "Riezlmayr_Georg_1784_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160", "author": "", "orig_id": 1407147}}, {"model": "metainfo.source", "pk": 5539, "fields": {"orig_filename": "Rie_Therese_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 135", "author": "", "orig_id": 1407280}}, {"model": "metainfo.source", "pk": 5540, "fields": {"orig_filename": "Rigele_Alois_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160f.", "author": "", "orig_id": 1407148}}, {"model": "metainfo.source", "pk": 5541, "fields": {"orig_filename": "Rigele_Friedrich_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 161", "author": "", "orig_id": 1407149}}, {"model": "metainfo.source", "pk": 5542, "fields": {"orig_filename": "Renk_Anton_1871_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 78f.", "author": "", "orig_id": 1406990}}, {"model": "metainfo.source", "pk": 5543, "fields": {"orig_filename": "Renner_Franz_1866_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79f.", "author": "", "orig_id": 1406993}}, {"model": "metainfo.source", "pk": 5544, "fields": {"orig_filename": "Renner_Giuseppe-Federico_1784_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 80", "author": "", "orig_id": 1406994}}, {"model": "metainfo.source", "pk": 5545, "fields": {"orig_filename": "Renner_Karl_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 80f.", "author": "", "orig_id": 1406995}}, {"model": "metainfo.source", "pk": 5546, "fields": {"orig_filename": "Renner_Maria-Johanna_1775_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 81f.", "author": "", "orig_id": 1406996}}, {"model": "metainfo.source", "pk": 5547, "fields": {"orig_filename": "Renner_Viktor_1846_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 82", "author": "", "orig_id": 1406997}}, {"model": "metainfo.source", "pk": 5548, "fields": {"orig_filename": "Renn_Franz-X_1784_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79", "author": "", "orig_id": 1406991}}, {"model": "metainfo.source", "pk": 5549, "fields": {"orig_filename": "Renn_Paul_1806_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79", "author": "", "orig_id": 1406992}}, {"model": "metainfo.source", "pk": 5550, "fields": {"orig_filename": "Renz_Ernst-Jakob_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 82f.", "author": "", "orig_id": 1406998}}, {"model": "metainfo.source", "pk": 5551, "fields": {"orig_filename": "Repic_Alojzij_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 83", "author": "", "orig_id": 1406999}}, {"model": "metainfo.source", "pk": 5552, "fields": {"orig_filename": "Repta_Vasile-Vladimir_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 83f.", "author": "", "orig_id": 1407000}}, {"model": "metainfo.source", "pk": 5553, "fields": {"orig_filename": "Reschauer_Anton_1832_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85", "author": "", "orig_id": 1407004}}, {"model": "metainfo.source", "pk": 5554, "fields": {"orig_filename": "Reschauer_Heinrich_1838_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85", "author": "", "orig_id": 1407005}}, {"model": "metainfo.source", "pk": 5555, "fields": {"orig_filename": "Reschner_Martin_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85f.", "author": "", "orig_id": 1407006}}, {"model": "metainfo.source", "pk": 5556, "fields": {"orig_filename": "Resch_Josef_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84f.", "author": "", "orig_id": 1407003}}, {"model": "metainfo.source", "pk": 5557, "fields": {"orig_filename": "Resel_Johann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 86", "author": "", "orig_id": 1407007}}, {"model": "metainfo.source", "pk": 5558, "fields": {"orig_filename": "Resetar_Milan_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 86f.", "author": "", "orig_id": 1407008}}, {"model": "metainfo.source", "pk": 5559, "fields": {"orig_filename": "Resetka_Michal_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87", "author": "", "orig_id": 1407009}}, {"model": "metainfo.source", "pk": 5560, "fields": {"orig_filename": "Reslhuber_Augustin_1808_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87", "author": "", "orig_id": 1407010}}, {"model": "metainfo.source", "pk": 5561, "fields": {"orig_filename": "Resner_Rudolf_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87f.", "author": "", "orig_id": 1407011}}, {"model": "metainfo.source", "pk": 5562, "fields": {"orig_filename": "Ress-Blazkova_Vekoslava-Aloisia_1841_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88", "author": "", "orig_id": 1407012}}, {"model": "metainfo.source", "pk": 5563, "fields": {"orig_filename": "Ressel_Anton-Franz_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88", "author": "", "orig_id": 1407013}}, {"model": "metainfo.source", "pk": 5564, "fields": {"orig_filename": "Ressel_Gustav-Andreas_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88f.", "author": "", "orig_id": 1407014}}, {"model": "metainfo.source", "pk": 5565, "fields": {"orig_filename": "Ressel_Josef_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 89f.", "author": "", "orig_id": 1407015}}, {"model": "metainfo.source", "pk": 5566, "fields": {"orig_filename": "Ressel_Wilhelm_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 90", "author": "", "orig_id": 1407016}}, {"model": "metainfo.source", "pk": 5567, "fields": {"orig_filename": "Ressig_Alfred_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 90f.", "author": "", "orig_id": 1407017}}, {"model": "metainfo.source", "pk": 5568, "fields": {"orig_filename": "Ressmann_Costantino_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91", "author": "", "orig_id": 1407018}}, {"model": "metainfo.source", "pk": 5569, "fields": {"orig_filename": "Resti-Ferrari_Johann-Bapt_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91", "author": "", "orig_id": 1407019}}, {"model": "metainfo.source", "pk": 5570, "fields": {"orig_filename": "Res_Alojzij_1893_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84", "author": "", "orig_id": 1407001}}, {"model": "metainfo.source", "pk": 5571, "fields": {"orig_filename": "Rethi_Leopold_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91f.", "author": "", "orig_id": 1407020}}, {"model": "metainfo.source", "pk": 5572, "fields": {"orig_filename": "Rethy_Laszlo_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92", "author": "", "orig_id": 1407021}}, {"model": "metainfo.source", "pk": 5573, "fields": {"orig_filename": "Rethy_Mor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92", "author": "", "orig_id": 1407022}}, {"model": "metainfo.source", "pk": 5574, "fields": {"orig_filename": "Reti_Richard_1889_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92f.", "author": "", "orig_id": 1407023}}, {"model": "metainfo.source", "pk": 5575, "fields": {"orig_filename": "Rettensteiner_Werigand_1751_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93", "author": "", "orig_id": 1407024}}, {"model": "metainfo.source", "pk": 5576, "fields": {"orig_filename": "Rettich-Pirk_Sarolta_1863_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 94", "author": "", "orig_id": 1407027}}, {"model": "metainfo.source", "pk": 5577, "fields": {"orig_filename": "Rettich_Henriette_1813_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93", "author": "", "orig_id": 1407025}}, {"model": "metainfo.source", "pk": 5578, "fields": {"orig_filename": "Rettich_Julie_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93f.", "author": "", "orig_id": 1407026}}, {"model": "metainfo.source", "pk": 5579, "fields": {"orig_filename": "Rettigova_Magdalena-Dobromila_1785_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 95", "author": "", "orig_id": 1407029}}, {"model": "metainfo.source", "pk": 5580, "fields": {"orig_filename": "Rettig_Jan-Alois-Sudiprav_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 94", "author": "", "orig_id": 1407028}}, {"model": "metainfo.source", "pk": 5581, "fields": {"orig_filename": "Retzer_Josef-Friedrich_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 95f.", "author": "", "orig_id": 1407030}}, {"model": "metainfo.source", "pk": 5582, "fields": {"orig_filename": "Reuling_Wilhelm-Ludwig_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 96", "author": "", "orig_id": 1407031}}, {"model": "metainfo.source", "pk": 5583, "fields": {"orig_filename": "Reumann_Jakob_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 96", "author": "", "orig_id": 1407032}}, {"model": "metainfo.source", "pk": 5584, "fields": {"orig_filename": "Reuss-Belce_Luise_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98f.", "author": "", "orig_id": 1407037}}, {"model": "metainfo.source", "pk": 5585, "fields": {"orig_filename": "Reuss_August-Emanuel_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 97", "author": "", "orig_id": 1407033}}, {"model": "metainfo.source", "pk": 5586, "fields": {"orig_filename": "Reuss_August-Leopold_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 97", "author": "", "orig_id": 1407034}}, {"model": "metainfo.source", "pk": 5587, "fields": {"orig_filename": "Reuss_Gustav_1818_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1407035}}, {"model": "metainfo.source", "pk": 5588, "fields": {"orig_filename": "Reuss_Leopold_1775_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1407036}}, {"model": "metainfo.source", "pk": 5589, "fields": {"orig_filename": "Reuss_Leo_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1465246}}, {"model": "metainfo.source", "pk": 5590, "fields": {"orig_filename": "Reuss_Samuel_1783_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1409576}}, {"model": "metainfo.source", "pk": 5591, "fields": {"orig_filename": "Reuter_Jakob_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99", "author": "", "orig_id": 1407038}}, {"model": "metainfo.source", "pk": 5592, "fields": {"orig_filename": "Reutter-Vallone_Arthur_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99f.", "author": "", "orig_id": 1407190}}, {"model": "metainfo.source", "pk": 5593, "fields": {"orig_filename": "Reutter_Johannes_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99", "author": "", "orig_id": 1407189}}, {"model": "metainfo.source", "pk": 5594, "fields": {"orig_filename": "Revai_Mor-Janos_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100", "author": "", "orig_id": 1407191}}, {"model": "metainfo.source", "pk": 5595, "fields": {"orig_filename": "Revere_Giuseppe_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100", "author": "", "orig_id": 1407192}}, {"model": "metainfo.source", "pk": 5596, "fields": {"orig_filename": "Revesz_Imre_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 101f.", "author": "", "orig_id": 1407194}}, {"model": "metainfo.source", "pk": 5597, "fields": {"orig_filename": "Revesz_Kalman_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102", "author": "", "orig_id": 1407195}}, {"model": "metainfo.source", "pk": 5598, "fields": {"orig_filename": "Reviczky_Gyula_1855_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102", "author": "", "orig_id": 1407196}}, {"model": "metainfo.source", "pk": 5599, "fields": {"orig_filename": "Revoltella_Pasquale_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102f.", "author": "", "orig_id": 1407197}}, {"model": "metainfo.source", "pk": 5600, "fields": {"orig_filename": "Revy_Karl-Julius-Heinrich_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103", "author": "", "orig_id": 1407198}}, {"model": "metainfo.source", "pk": 5601, "fields": {"orig_filename": "Rewakowicz_Henryk_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103", "author": "", "orig_id": 1407199}}, {"model": "metainfo.source", "pk": 5602, "fields": {"orig_filename": "Reyberger_Anton_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104", "author": "", "orig_id": 1407202}}, {"model": "metainfo.source", "pk": 5603, "fields": {"orig_filename": "Reyer-Castagna_Costantino_1828_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 106f.", "author": "", "orig_id": 1407207}}, {"model": "metainfo.source", "pk": 5604, "fields": {"orig_filename": "Reyer_Carlo-Ferdinando_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104", "author": "", "orig_id": 1407203}}, {"model": "metainfo.source", "pk": 5605, "fields": {"orig_filename": "Reyer_Eduard_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104f.", "author": "", "orig_id": 1407204}}, {"model": "metainfo.source", "pk": 5606, "fields": {"orig_filename": "Reyer_Francesco-Taddeo_1760_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 105f.", "author": "", "orig_id": 1407205}}, {"model": "metainfo.source", "pk": 5607, "fields": {"orig_filename": "Reyer_Konstantin-August_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 106", "author": "", "orig_id": 1407206}}, {"model": "metainfo.source", "pk": 5608, "fields": {"orig_filename": "Reyl-Hanisch-Greifenthal_Herbert_1898_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107", "author": "", "orig_id": 1407208}}, {"model": "metainfo.source", "pk": 5609, "fields": {"orig_filename": "Reymond_Moritz_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107", "author": "", "orig_id": 1407209}}, {"model": "metainfo.source", "pk": 5610, "fields": {"orig_filename": "Rey_Mikolaj_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103f.", "author": "", "orig_id": 1407201}}, {"model": "metainfo.source", "pk": 5611, "fields": {"orig_filename": "Rezac_Frantisek-Josef_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107f.", "author": "", "orig_id": 1407210}}, {"model": "metainfo.source", "pk": 5612, "fields": {"orig_filename": "Rezbanyay_Jozsef_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 108", "author": "", "orig_id": 1407211}}, {"model": "metainfo.source", "pk": 5613, "fields": {"orig_filename": "Rezek_Antonin_1853_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 108f.", "author": "", "orig_id": 1407212}}, {"model": "metainfo.source", "pk": 5614, "fields": {"orig_filename": "Rezek_Franz_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 109", "author": "", "orig_id": 1407213}}, {"model": "metainfo.source", "pk": 5615, "fields": {"orig_filename": "Reznicek_Emil-Josef-Nikolaus_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 109f.", "author": "", "orig_id": 1407215}}, {"model": "metainfo.source", "pk": 5616, "fields": {"orig_filename": "Reznicek_Ferdinand_1868_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 110", "author": "", "orig_id": 1407216}}, {"model": "metainfo.source", "pk": 5617, "fields": {"orig_filename": "Reznicek_Josef-Jindrich_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 110f.", "author": "", "orig_id": 1407217}}, {"model": "metainfo.source", "pk": 5618, "fields": {"orig_filename": "Reznicek_Josef-Urban_1851_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111", "author": "", "orig_id": 1407218}}, {"model": "metainfo.source", "pk": 5619, "fields": {"orig_filename": "Reznicek_Vaclav_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111", "author": "", "orig_id": 1407219}}, {"model": "metainfo.source", "pk": 5620, "fields": {"orig_filename": "Rhamm_Karl_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111f.", "author": "", "orig_id": 1407220}}, {"model": "metainfo.source", "pk": 5621, "fields": {"orig_filename": "Rheden_Josef_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 112", "author": "", "orig_id": 1407221}}, {"model": "metainfo.source", "pk": 5622, "fields": {"orig_filename": "Rheinhardt_Emil-Alfons_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 112f.", "author": "", "orig_id": 1407222}}, {"model": "metainfo.source", "pk": 5623, "fields": {"orig_filename": "Rhemen-Barensfeld_Adolf_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 113", "author": "", "orig_id": 1407223}}, {"model": "metainfo.source", "pk": 5624, "fields": {"orig_filename": "Rhodokanakis_Nikolaus_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 113f.", "author": "", "orig_id": 1407224}}, {"model": "metainfo.source", "pk": 5625, "fields": {"orig_filename": "Rhomberg_Adolf_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407225}}, {"model": "metainfo.source", "pk": 5626, "fields": {"orig_filename": "Rhomberg_Franz-Martin_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407226}}, {"model": "metainfo.source", "pk": 5627, "fields": {"orig_filename": "Rhomberg_Hanno_1819_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407227}}, {"model": "metainfo.source", "pk": 5628, "fields": {"orig_filename": "Rhomberg_Johann-Josef_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114f.", "author": "", "orig_id": 1407228}}, {"model": "metainfo.source", "pk": 5629, "fields": {"orig_filename": "Rhomberg_Josef-Anton_1775_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407229}}, {"model": "metainfo.source", "pk": 5630, "fields": {"orig_filename": "Rhomberg_Josef-Anton_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407230}}, {"model": "metainfo.source", "pk": 5631, "fields": {"orig_filename": "Rhomberg_Julius_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407231}}, {"model": "metainfo.source", "pk": 5632, "fields": {"orig_filename": "Rhomberg_Lorenz_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407232}}, {"model": "metainfo.source", "pk": 5633, "fields": {"orig_filename": "Rhomberg_Wilhelm_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407233}}, {"model": "metainfo.source", "pk": 5634, "fields": {"orig_filename": "Ribarz_Rudolf_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407234}}, {"model": "metainfo.source", "pk": 5635, "fields": {"orig_filename": "Riboldi_Agostino-Gaetano_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116f.", "author": "", "orig_id": 1407235}}, {"model": "metainfo.source", "pk": 5636, "fields": {"orig_filename": "Riccabona-Reichenfels_Benedikt_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 117", "author": "", "orig_id": 1407236}}, {"model": "metainfo.source", "pk": 5637, "fields": {"orig_filename": "Riccabona-Reichenfels_Felix-Adam_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 117f.", "author": "", "orig_id": 1407237}}, {"model": "metainfo.source", "pk": 5638, "fields": {"orig_filename": "Riccabona-Reichenfels_Julius_1835_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118", "author": "", "orig_id": 1407238}}, {"model": "metainfo.source", "pk": 5639, "fields": {"orig_filename": "Ricci-Montecorona_Vittore_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 119", "author": "", "orig_id": 1407241}}, {"model": "metainfo.source", "pk": 5640, "fields": {"orig_filename": "Ricci_Federico_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118", "author": "", "orig_id": 1407239}}, {"model": "metainfo.source", "pk": 5641, "fields": {"orig_filename": "Ricci_Luigi_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118f.", "author": "", "orig_id": 1407240}}, {"model": "metainfo.source", "pk": 5642, "fields": {"orig_filename": "Richard_Frieda_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 119f.", "author": "", "orig_id": 1407242}}, {"model": "metainfo.source", "pk": 5643, "fields": {"orig_filename": "Reinelt_Carlo_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 41f.", "author": "", "orig_id": 1407107}}, {"model": "metainfo.source", "pk": 5644, "fields": {"orig_filename": "Reiner_Andreas_1760_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42", "author": "", "orig_id": 1407108}}, {"model": "metainfo.source", "pk": 5645, "fields": {"orig_filename": "Reiner_Johann-Bapt_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42", "author": "", "orig_id": 1407109}}, {"model": "metainfo.source", "pk": 5646, "fields": {"orig_filename": "Reiner_Max_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42f.", "author": "", "orig_id": 1407110}}, {"model": "metainfo.source", "pk": 5647, "fields": {"orig_filename": "Reinhardt_Heinrich_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43", "author": "", "orig_id": 1407111}}, {"model": "metainfo.source", "pk": 5648, "fields": {"orig_filename": "Reinhardt_Heinrich_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43", "author": "", "orig_id": 1409575}}, {"model": "metainfo.source", "pk": 5649, "fields": {"orig_filename": "Reinhardt_Max_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43ff.", "author": "", "orig_id": 1407112}}, {"model": "metainfo.source", "pk": 5650, "fields": {"orig_filename": "Reinhart-Thurnfels-Ferklehen_Ignaz_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407113}}, {"model": "metainfo.source", "pk": 5651, "fields": {"orig_filename": "Reinhart-Thurnfels-Ferklehen_Josef_1745_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407114}}, {"model": "metainfo.source", "pk": 5652, "fields": {"orig_filename": "Reinhold_Franz_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407115}}, {"model": "metainfo.source", "pk": 5653, "fields": {"orig_filename": "Reinhold_Friedrich-Josef_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45f.", "author": "", "orig_id": 1407117}}, {"model": "metainfo.source", "pk": 5654, "fields": {"orig_filename": "Reinhold_Friedrich-Philipp_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407118}}, {"model": "metainfo.source", "pk": 5655, "fields": {"orig_filename": "Reinhold_Friedrich_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407116}}, {"model": "metainfo.source", "pk": 5656, "fields": {"orig_filename": "Reinhold_Josef_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407119}}, {"model": "metainfo.source", "pk": 5657, "fields": {"orig_filename": "Reinhold_Josef_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407120}}, {"model": "metainfo.source", "pk": 5658, "fields": {"orig_filename": "Reinhold_Karl-Leonhard_1758_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 47", "author": "", "orig_id": 1407122}}, {"model": "metainfo.source", "pk": 5659, "fields": {"orig_filename": "Reinhold_Karl_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46f.", "author": "", "orig_id": 1407121}}, {"model": "metainfo.source", "pk": 5660, "fields": {"orig_filename": "Reininger_Franz_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 47f.", "author": "", "orig_id": 1407123}}, {"model": "metainfo.source", "pk": 5661, "fields": {"orig_filename": "Reininger_Heinrich_1860_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48", "author": "", "orig_id": 1407125}}, {"model": "metainfo.source", "pk": 5662, "fields": {"orig_filename": "Reininger_Karl_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48", "author": "", "orig_id": 1407124}}, {"model": "metainfo.source", "pk": 5663, "fields": {"orig_filename": "Reininghaus_Johann-Peter_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48f.", "author": "", "orig_id": 1407126}}, {"model": "metainfo.source", "pk": 5664, "fields": {"orig_filename": "Reinisch_Franz_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 49", "author": "", "orig_id": 1407127}}, {"model": "metainfo.source", "pk": 5665, "fields": {"orig_filename": "Reinisch_Karl-Ludwig_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 49f.", "author": "", "orig_id": 1407128}}, {"model": "metainfo.source", "pk": 5666, "fields": {"orig_filename": "Reinisch_Simon-Leo_1832_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 50f.", "author": "", "orig_id": 1407129}}, {"model": "metainfo.source", "pk": 5667, "fields": {"orig_filename": "Reinitzer_Benjamin_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51", "author": "", "orig_id": 1407130}}, {"model": "metainfo.source", "pk": 5668, "fields": {"orig_filename": "Reinitzer_Friedrich-Richard-Kornelius_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51", "author": "", "orig_id": 1407131}}, {"model": "metainfo.source", "pk": 5669, "fields": {"orig_filename": "Reinlaender_Wilhelm_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51f.", "author": "", "orig_id": 1407132}}, {"model": "metainfo.source", "pk": 5670, "fields": {"orig_filename": "Reinoehl_Rainer_1854_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407133}}, {"model": "metainfo.source", "pk": 5671, "fields": {"orig_filename": "Reinoehl_Wilhelm_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407134}}, {"model": "metainfo.source", "pk": 5672, "fields": {"orig_filename": "Reinold_Ferdinand_1885_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407135}}, {"model": "metainfo.source", "pk": 5673, "fields": {"orig_filename": "Reinsberg_Josef_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52f.", "author": "", "orig_id": 1407136}}, {"model": "metainfo.source", "pk": 5674, "fields": {"orig_filename": "Reinthaler_Johannes_1824_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53", "author": "", "orig_id": 1407137}}, {"model": "metainfo.source", "pk": 5675, "fields": {"orig_filename": "Reinthaler_Marie_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53", "author": "", "orig_id": 1407138}}, {"model": "metainfo.source", "pk": 5676, "fields": {"orig_filename": "Reisacher_Alois_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54", "author": "", "orig_id": 1406967}}, {"model": "metainfo.source", "pk": 5677, "fields": {"orig_filename": "Reischek_Andreas_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 56", "author": "", "orig_id": 1406971}}, {"model": "metainfo.source", "pk": 5678, "fields": {"orig_filename": "Reischer_Thomas_1781_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 56f.", "author": "", "orig_id": 1406973}}, {"model": "metainfo.source", "pk": 5679, "fields": {"orig_filename": "Reischl_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57", "author": "", "orig_id": 1406974}}, {"model": "metainfo.source", "pk": 5680, "fields": {"orig_filename": "Reisch_Emil_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54f.", "author": "", "orig_id": 1406968}}, {"model": "metainfo.source", "pk": 5681, "fields": {"orig_filename": "Reisch_Franz_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 55", "author": "", "orig_id": 1406969}}, {"model": "metainfo.source", "pk": 5682, "fields": {"orig_filename": "Reisch_Richard_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 55f.", "author": "", "orig_id": 1406970}}, {"model": "metainfo.source", "pk": 5683, "fields": {"orig_filename": "Reiser_Fridolin_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57", "author": "", "orig_id": 1406975}}, {"model": "metainfo.source", "pk": 5684, "fields": {"orig_filename": "Reiser_Matthaeus_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57f.", "author": "", "orig_id": 1406976}}, {"model": "metainfo.source", "pk": 5685, "fields": {"orig_filename": "Reiser_Othmar_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406977}}, {"model": "metainfo.source", "pk": 5686, "fields": {"orig_filename": "Reisich_Josef_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406985}}, {"model": "metainfo.source", "pk": 5687, "fields": {"orig_filename": "Reisinger_Franz_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58f.", "author": "", "orig_id": 1406986}}, {"model": "metainfo.source", "pk": 5688, "fields": {"orig_filename": "Reisinger_Leopold_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 59", "author": "", "orig_id": 1406987}}, {"model": "metainfo.source", "pk": 5689, "fields": {"orig_filename": "Reisinger_Wenzel-Julius_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 59f.", "author": "", "orig_id": 1406988}}, {"model": "metainfo.source", "pk": 5690, "fields": {"orig_filename": "Reissacher_Karl_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61", "author": "", "orig_id": 1407042}}, {"model": "metainfo.source", "pk": 5691, "fields": {"orig_filename": "Reissek_Siegfried_1819_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61f.", "author": "", "orig_id": 1407043}}, {"model": "metainfo.source", "pk": 5692, "fields": {"orig_filename": "Reissenberger_Karl-Friedrich_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62", "author": "", "orig_id": 1407044}}, {"model": "metainfo.source", "pk": 5693, "fields": {"orig_filename": "Reissenberger_Ludwig_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62", "author": "", "orig_id": 1407045}}, {"model": "metainfo.source", "pk": 5694, "fields": {"orig_filename": "Reisser_Christoph_1836_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62f.", "author": "", "orig_id": 1407046}}, {"model": "metainfo.source", "pk": 5695, "fields": {"orig_filename": "Reisser_Franz-De-P-Michael_1769_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63", "author": "", "orig_id": 1407047}}, {"model": "metainfo.source", "pk": 5696, "fields": {"orig_filename": "Reiss_Anton_1741_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60", "author": "", "orig_id": 1406989}}, {"model": "metainfo.source", "pk": 5697, "fields": {"orig_filename": "Reiss_Eduard_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60", "author": "", "orig_id": 1407039}}, {"model": "metainfo.source", "pk": 5698, "fields": {"orig_filename": "Reiss_Heinrich_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60f.", "author": "", "orig_id": 1407040}}, {"model": "metainfo.source", "pk": 5699, "fields": {"orig_filename": "Reiss_Wladyslaw_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61", "author": "", "orig_id": 1407041}}, {"model": "metainfo.source", "pk": 5700, "fields": {"orig_filename": "Reis_Isaak_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53f.", "author": "", "orig_id": 1407139}}, {"model": "metainfo.source", "pk": 5701, "fields": {"orig_filename": "Reis_Wiktor-Feliks_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54", "author": "", "orig_id": 1406965}}, {"model": "metainfo.source", "pk": 5702, "fields": {"orig_filename": "Reitenberger_Kaspar-Karl_1779_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63", "author": "", "orig_id": 1407048}}, {"model": "metainfo.source", "pk": 5703, "fields": {"orig_filename": "Reiterer_Ernst_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407056}}, {"model": "metainfo.source", "pk": 5704, "fields": {"orig_filename": "Reiterer_Josef_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407057}}, {"model": "metainfo.source", "pk": 5705, "fields": {"orig_filename": "Reiterer_Karl_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66f.", "author": "", "orig_id": 1407058}}, {"model": "metainfo.source", "pk": 5706, "fields": {"orig_filename": "Reiter_Franz-X_1875_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63f.", "author": "", "orig_id": 1407049}}, {"model": "metainfo.source", "pk": 5707, "fields": {"orig_filename": "Reiter_Johann-Bapt_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 64", "author": "", "orig_id": 1407050}}, {"model": "metainfo.source", "pk": 5708, "fields": {"orig_filename": "Reiter_Johannes-Maria_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 64f.", "author": "", "orig_id": 1407051}}, {"model": "metainfo.source", "pk": 5709, "fields": {"orig_filename": "Reiter_Josef_1805_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65", "author": "", "orig_id": 1407052}}, {"model": "metainfo.source", "pk": 5710, "fields": {"orig_filename": "Reiter_Josef_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65", "author": "", "orig_id": 1407053}}, {"model": "metainfo.source", "pk": 5711, "fields": {"orig_filename": "Reiter_Josef_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65f.", "author": "", "orig_id": 1407054}}, {"model": "metainfo.source", "pk": 5712, "fields": {"orig_filename": "Reiter_Matthaeus-Simon_1750_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407055}}, {"model": "metainfo.source", "pk": 5713, "fields": {"orig_filename": "Reither_Josef_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 67", "author": "", "orig_id": 1407059}}, {"model": "metainfo.source", "pk": 5714, "fields": {"orig_filename": "Reithmann_Christian_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 67f.", "author": "", "orig_id": 1407060}}, {"model": "metainfo.source", "pk": 5715, "fields": {"orig_filename": "Reithmeyer_Karl_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 68", "author": "", "orig_id": 1407061}}, {"model": "metainfo.source", "pk": 5716, "fields": {"orig_filename": "Reithoffer_Johann-Nep_1781_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 68f.", "author": "", "orig_id": 1407062}}, {"model": "metainfo.source", "pk": 5717, "fields": {"orig_filename": "Reitlechner_Gregor_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69", "author": "", "orig_id": 1407063}}, {"model": "metainfo.source", "pk": 5718, "fields": {"orig_filename": "Reitlechner_Karl_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69", "author": "", "orig_id": 1407064}}, {"model": "metainfo.source", "pk": 5719, "fields": {"orig_filename": "Reitler_Josef_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69f.", "author": "", "orig_id": 1407065}}, {"model": "metainfo.source", "pk": 5720, "fields": {"orig_filename": "Reitler_Marzellin-Adalbert_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 70", "author": "", "orig_id": 1407066}}, {"model": "metainfo.source", "pk": 5721, "fields": {"orig_filename": "Reitterer_Franz-X_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71f.", "author": "", "orig_id": 1407070}}, {"model": "metainfo.source", "pk": 5722, "fields": {"orig_filename": "Reitter_Edmund_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 70f.", "author": "", "orig_id": 1407067}}, {"model": "metainfo.source", "pk": 5723, "fields": {"orig_filename": "Reitter_Georg_1898_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71", "author": "", "orig_id": 1407068}}, {"model": "metainfo.source", "pk": 5724, "fields": {"orig_filename": "Reitter_Michael_1781_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71", "author": "", "orig_id": 1407069}}, {"model": "metainfo.source", "pk": 5725, "fields": {"orig_filename": "Reitzenbeck_Heinrich_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 72f.", "author": "", "orig_id": 1407072}}, {"model": "metainfo.source", "pk": 5726, "fields": {"orig_filename": "Reitzes_Sigmund_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407073}}, {"model": "metainfo.source", "pk": 5727, "fields": {"orig_filename": "Reitz_Konstantin_1817_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 72", "author": "", "orig_id": 1407071}}, {"model": "metainfo.source", "pk": 5728, "fields": {"orig_filename": "Reizner_Janos_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407074}}, {"model": "metainfo.source", "pk": 5729, "fields": {"orig_filename": "Rejtoe_Sandor_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407075}}, {"model": "metainfo.source", "pk": 5730, "fields": {"orig_filename": "Rejzek_Anton_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73f.", "author": "", "orig_id": 1407076}}, {"model": "metainfo.source", "pk": 5731, "fields": {"orig_filename": "Rektorzik_Franz-X_1793_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74", "author": "", "orig_id": 1407077}}, {"model": "metainfo.source", "pk": 5732, "fields": {"orig_filename": "Rella_Anton_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74", "author": "", "orig_id": 1407078}}, {"model": "metainfo.source", "pk": 5733, "fields": {"orig_filename": "Rembold_Otto_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74f.", "author": "", "orig_id": 1407079}}, {"model": "metainfo.source", "pk": 5734, "fields": {"orig_filename": "Remenyi_Antal_1825_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75", "author": "", "orig_id": 1407080}}, {"model": "metainfo.source", "pk": 5735, "fields": {"orig_filename": "Remenyi_Ede_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75", "author": "", "orig_id": 1407081}}, {"model": "metainfo.source", "pk": 5736, "fields": {"orig_filename": "Remmark_Karl_1802_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75f.", "author": "", "orig_id": 1407082}}, {"model": "metainfo.source", "pk": 5737, "fields": {"orig_filename": "Remy-Berzenkovich-Szillas_Emil-Otto_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76", "author": "", "orig_id": 1407084}}, {"model": "metainfo.source", "pk": 5738, "fields": {"orig_filename": "Remy-Berzenkovich-Szillas_Ladislaus_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76f.", "author": "", "orig_id": 1407085}}, {"model": "metainfo.source", "pk": 5739, "fields": {"orig_filename": "Remy_Ludwig-Gabriel_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76", "author": "", "orig_id": 1407083}}, {"model": "metainfo.source", "pk": 5740, "fields": {"orig_filename": "Renard_Marie_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77", "author": "", "orig_id": 1407086}}, {"model": "metainfo.source", "pk": 5741, "fields": {"orig_filename": "Rencki_Roman_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77", "author": "", "orig_id": 1407087}}, {"model": "metainfo.source", "pk": 5742, "fields": {"orig_filename": "Rendic_Ivan_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77f.", "author": "", "orig_id": 1407088}}, {"model": "metainfo.source", "pk": 5743, "fields": {"orig_filename": "Renier_Stefano-Andrea_1759_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 78", "author": "", "orig_id": 1407089}}, {"model": "metainfo.source", "pk": 5744, "fields": {"orig_filename": "Renker_Gustav_1889_1967.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1866399}}, {"model": "metainfo.source", "pk": 5745, "fields": {"orig_filename": "Rebel_Hans_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1f.", "author": "", "orig_id": 1406929}}, {"model": "metainfo.source", "pk": 5746, "fields": {"orig_filename": "Rebhann-Aspernbruck_Georg_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 2f.", "author": "", "orig_id": 1406931}}, {"model": "metainfo.source", "pk": 5747, "fields": {"orig_filename": "Rebicek_Josef_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 3", "author": "", "orig_id": 1406932}}, {"model": "metainfo.source", "pk": 5748, "fields": {"orig_filename": "Rechbauer_Karl_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 3f.", "author": "", "orig_id": 1406933}}, {"model": "metainfo.source", "pk": 5749, "fields": {"orig_filename": "Rechberg-Rothenloewen_Johann-Bernhard_1806_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 4f.", "author": "", "orig_id": 1406934}}, {"model": "metainfo.source", "pk": 5750, "fields": {"orig_filename": "Rechberger-Rechkron_Josef_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6", "author": "", "orig_id": 1406938}}, {"model": "metainfo.source", "pk": 5751, "fields": {"orig_filename": "Rechberger_Augustin_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5", "author": "", "orig_id": 1406935}}, {"model": "metainfo.source", "pk": 5752, "fields": {"orig_filename": "Rechberger_Franz_1771_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5", "author": "", "orig_id": 1406936}}, {"model": "metainfo.source", "pk": 5753, "fields": {"orig_filename": "Rechberger_Heinrich_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5f.", "author": "", "orig_id": 1406937}}, {"model": "metainfo.source", "pk": 5754, "fields": {"orig_filename": "Reckendorfer_Ferdinand_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6", "author": "", "orig_id": 1406939}}, {"model": "metainfo.source", "pk": 5755, "fields": {"orig_filename": "Recsei_Viktor_1858_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6f.", "author": "", "orig_id": 1406940}}, {"model": "metainfo.source", "pk": 5756, "fields": {"orig_filename": "Recsy_Emil_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7", "author": "", "orig_id": 1406941}}, {"model": "metainfo.source", "pk": 5757, "fields": {"orig_filename": "Reden_Alexander_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7", "author": "", "orig_id": 1829257}}, {"model": "metainfo.source", "pk": 5758, "fields": {"orig_filename": "Redler_Ferdinand_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8f.", "author": "", "orig_id": 1406946}}, {"model": "metainfo.source", "pk": 5759, "fields": {"orig_filename": "Redler_Karoline-Maria_1883_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9", "author": "", "orig_id": 1406947}}, {"model": "metainfo.source", "pk": 5760, "fields": {"orig_filename": "Redlich-Redensbruck_Otto_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 12f.", "author": "", "orig_id": 1406954}}, {"model": "metainfo.source", "pk": 5761, "fields": {"orig_filename": "Redlich_Emil_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9", "author": "", "orig_id": 1406948}}, {"model": "metainfo.source", "pk": 5762, "fields": {"orig_filename": "Redlich_Friedrich_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9f.", "author": "", "orig_id": 1406949}}, {"model": "metainfo.source", "pk": 5763, "fields": {"orig_filename": "Redlich_Josef_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 10f.", "author": "", "orig_id": 1406950}}, {"model": "metainfo.source", "pk": 5764, "fields": {"orig_filename": "Redlich_Karl-August_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11", "author": "", "orig_id": 1406952}}, {"model": "metainfo.source", "pk": 5765, "fields": {"orig_filename": "Redlich_Karl_1860_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11", "author": "", "orig_id": 1406951}}, {"model": "metainfo.source", "pk": 5766, "fields": {"orig_filename": "Redlich_Oswald_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11f.", "author": "", "orig_id": 1406953}}, {"model": "metainfo.source", "pk": 5767, "fields": {"orig_filename": "Redl_Alfred_1864_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7f.", "author": "", "orig_id": 1406942}}, {"model": "metainfo.source", "pk": 5768, "fields": {"orig_filename": "Redl_Alois_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406943}}, {"model": "metainfo.source", "pk": 5769, "fields": {"orig_filename": "Redl_Johann_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406944}}, {"model": "metainfo.source", "pk": 5770, "fields": {"orig_filename": "Redl_Josef_1774_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406945}}, {"model": "metainfo.source", "pk": 5771, "fields": {"orig_filename": "Redtenbacher_Ferdinand-Jakob_1809_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 13", "author": "", "orig_id": 1406955}}, {"model": "metainfo.source", "pk": 5772, "fields": {"orig_filename": "Redtenbacher_Josef_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 13f.", "author": "", "orig_id": 1406956}}, {"model": "metainfo.source", "pk": 5773, "fields": {"orig_filename": "Redtenbacher_Josef_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14", "author": "", "orig_id": 1406957}}, {"model": "metainfo.source", "pk": 5774, "fields": {"orig_filename": "Redtenbacher_Leo_1845_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14", "author": "", "orig_id": 1406958}}, {"model": "metainfo.source", "pk": 5775, "fields": {"orig_filename": "Redtenbacher_Ludwig_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14f.", "author": "", "orig_id": 1406959}}, {"model": "metainfo.source", "pk": 5776, "fields": {"orig_filename": "Redtenbacher_Simon_1844_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406960}}, {"model": "metainfo.source", "pk": 5777, "fields": {"orig_filename": "Ree_Luis_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406961}}, {"model": "metainfo.source", "pk": 5778, "fields": {"orig_filename": "Regeczi_Josef_1851_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406962}}, {"model": "metainfo.source", "pk": 5779, "fields": {"orig_filename": "Regenhart_Alois_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 16", "author": "", "orig_id": 1406964}}, {"model": "metainfo.source", "pk": 5780, "fields": {"orig_filename": "Regenhart_Alois_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 16f.", "author": "", "orig_id": 1406764}}, {"model": "metainfo.source", "pk": 5781, "fields": {"orig_filename": "Regensdorff_Carlo_1792_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17", "author": "", "orig_id": 1406765}}, {"model": "metainfo.source", "pk": 5782, "fields": {"orig_filename": "Regenspursky-Regeny_Karl_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17", "author": "", "orig_id": 1406766}}, {"model": "metainfo.source", "pk": 5783, "fields": {"orig_filename": "Regen_Johann_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15f.", "author": "", "orig_id": 1406963}}, {"model": "metainfo.source", "pk": 5784, "fields": {"orig_filename": "Reger_Tadeusz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17f.", "author": "", "orig_id": 1406767}}, {"model": "metainfo.source", "pk": 5785, "fields": {"orig_filename": "Reggio_Isacco-Samuele_1784_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 18", "author": "", "orig_id": 1406768}}, {"model": "metainfo.source", "pk": 5786, "fields": {"orig_filename": "Regli_Adalbert_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 18f.", "author": "", "orig_id": 1406769}}, {"model": "metainfo.source", "pk": 5787, "fields": {"orig_filename": "Regner-Bleyleben_Oktavian_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19", "author": "", "orig_id": 1406771}}, {"model": "metainfo.source", "pk": 5788, "fields": {"orig_filename": "Regner_Josef_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19", "author": "", "orig_id": 1406770}}, {"model": "metainfo.source", "pk": 5789, "fields": {"orig_filename": "Reguly_Antal_1819_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19f.", "author": "", "orig_id": 1406772}}, {"model": "metainfo.source", "pk": 5790, "fields": {"orig_filename": "Rehakova_Anna_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21", "author": "", "orig_id": 1406778}}, {"model": "metainfo.source", "pk": 5791, "fields": {"orig_filename": "Rehak_Gejza_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406775}}, {"model": "metainfo.source", "pk": 5792, "fields": {"orig_filename": "Rehak_Jan_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20f.", "author": "", "orig_id": 1406776}}, {"model": "metainfo.source", "pk": 5793, "fields": {"orig_filename": "Rehak_Stanislav_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21", "author": "", "orig_id": 1406777}}, {"model": "metainfo.source", "pk": 5794, "fields": {"orig_filename": "Rehatschek_Anton_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21f.", "author": "", "orig_id": 1406779}}, {"model": "metainfo.source", "pk": 5795, "fields": {"orig_filename": "Rehman_Antoni_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 22", "author": "", "orig_id": 1406780}}, {"model": "metainfo.source", "pk": 5796, "fields": {"orig_filename": "Rehor_Karl_1906_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 22f.", "author": "", "orig_id": 1406781}}, {"model": "metainfo.source", "pk": 5797, "fields": {"orig_filename": "Rehrl_Franz_1890_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23", "author": "", "orig_id": 1406782}}, {"model": "metainfo.source", "pk": 5798, "fields": {"orig_filename": "Rehrl_Kaspar_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23", "author": "", "orig_id": 1406783}}, {"model": "metainfo.source", "pk": 5799, "fields": {"orig_filename": "Reh_Franz_1861_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406773}}, {"model": "metainfo.source", "pk": 5800, "fields": {"orig_filename": "Reh_Karl-Christian_1888_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406774}}, {"model": "metainfo.source", "pk": 5801, "fields": {"orig_filename": "Reibmayr_Albert_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23f.", "author": "", "orig_id": 1406784}}, {"model": "metainfo.source", "pk": 5802, "fields": {"orig_filename": "Reichardt_Alexander_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27f.", "author": "", "orig_id": 1406795}}, {"model": "metainfo.source", "pk": 5803, "fields": {"orig_filename": "Reichardt_Heinrich-Wilhelm_1835_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 28", "author": "", "orig_id": 1406796}}, {"model": "metainfo.source", "pk": 5804, "fields": {"orig_filename": "Reicha_Anton-Josef_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27", "author": "", "orig_id": 1406794}}, {"model": "metainfo.source", "pk": 5805, "fields": {"orig_filename": "Reichelt_Johann_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 30f.", "author": "", "orig_id": 1406802}}, {"model": "metainfo.source", "pk": 5806, "fields": {"orig_filename": "Reichel_Anton_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 28f.", "author": "", "orig_id": 1406797}}, {"model": "metainfo.source", "pk": 5807, "fields": {"orig_filename": "Reichel_Heinrich_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29", "author": "", "orig_id": 1406798}}, {"model": "metainfo.source", "pk": 5808, "fields": {"orig_filename": "Reichel_Josef_1819_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29", "author": "", "orig_id": 1406799}}, {"model": "metainfo.source", "pk": 5809, "fields": {"orig_filename": "Reichel_Wolfgang_1858_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 30", "author": "", "orig_id": 1406801}}, {"model": "metainfo.source", "pk": 5810, "fields": {"orig_filename": "Reichenbach_Karl-Ludwig_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31", "author": "", "orig_id": 1406803}}, {"model": "metainfo.source", "pk": 5811, "fields": {"orig_filename": "Reichenberger_Hugo_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 32", "author": "", "orig_id": 1406806}}, {"model": "metainfo.source", "pk": 5812, "fields": {"orig_filename": "Reichenberg_Franz_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31", "author": "", "orig_id": 1406804}}, {"model": "metainfo.source", "pk": 5813, "fields": {"orig_filename": "Reichert_Adam_1853_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406809}}, {"model": "metainfo.source", "pk": 5814, "fields": {"orig_filename": "Reichert_Heinrich_1801_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406810}}, {"model": "metainfo.source", "pk": 5815, "fields": {"orig_filename": "Reichert_Heinz_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33f.", "author": "", "orig_id": 1406811}}, {"model": "metainfo.source", "pk": 5816, "fields": {"orig_filename": "Reichert_Karl-Friedrich-Wilhelm_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 34f.", "author": "", "orig_id": 1406813}}, {"model": "metainfo.source", "pk": 5817, "fields": {"orig_filename": "Reichert_Karl_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 34", "author": "", "orig_id": 1406812}}, {"model": "metainfo.source", "pk": 5818, "fields": {"orig_filename": "Reichert_Vaclav_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35", "author": "", "orig_id": 1406814}}, {"model": "metainfo.source", "pk": 5819, "fields": {"orig_filename": "Reicher_Emanuel_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 32f.", "author": "", "orig_id": 1406807}}, {"model": "metainfo.source", "pk": 5820, "fields": {"orig_filename": "Reicher_Heinrich_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406808}}, {"model": "metainfo.source", "pk": 5821, "fields": {"orig_filename": "Reichhart_Gottfried_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35", "author": "", "orig_id": 1406815}}, {"model": "metainfo.source", "pk": 5822, "fields": {"orig_filename": "Reichlin-Meldegg_Wilhelm_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36", "author": "", "orig_id": 1407092}}, {"model": "metainfo.source", "pk": 5823, "fields": {"orig_filename": "Reichl_Josef_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35f.", "author": "", "orig_id": 1407090}}, {"model": "metainfo.source", "pk": 5824, "fields": {"orig_filename": "Reichl_Josef_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36", "author": "", "orig_id": 1407091}}, {"model": "metainfo.source", "pk": 5825, "fields": {"orig_filename": "Reichmann_Theodor_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36f.", "author": "", "orig_id": 1407093}}, {"model": "metainfo.source", "pk": 5826, "fields": {"orig_filename": "Reichstadt_Napoleon-Franz-Karl_1811_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 37", "author": "", "orig_id": 1407094}}, {"model": "metainfo.source", "pk": 5827, "fields": {"orig_filename": "Reichwein_Leopold_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 37f.", "author": "", "orig_id": 1407095}}, {"model": "metainfo.source", "pk": 5828, "fields": {"orig_filename": "Reich_Eduard_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 24", "author": "", "orig_id": 1406785}}, {"model": "metainfo.source", "pk": 5829, "fields": {"orig_filename": "Reich_Emil_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 24f.", "author": "", "orig_id": 1406786}}, {"model": "metainfo.source", "pk": 5830, "fields": {"orig_filename": "Reich_Ignac_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25", "author": "", "orig_id": 1406787}}, {"model": "metainfo.source", "pk": 5831, "fields": {"orig_filename": "Reich_Jakob_1838_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25", "author": "", "orig_id": 1406788}}, {"model": "metainfo.source", "pk": 5832, "fields": {"orig_filename": "Reich_Leon_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25f.", "author": "", "orig_id": 1406789}}, {"model": "metainfo.source", "pk": 5833, "fields": {"orig_filename": "Reich_Max_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26", "author": "", "orig_id": 1406791}}, {"model": "metainfo.source", "pk": 5834, "fields": {"orig_filename": "Reich_Moritz_1831_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26", "author": "", "orig_id": 1406792}}, {"model": "metainfo.source", "pk": 5835, "fields": {"orig_filename": "Reich_Theodor_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26f.", "author": "", "orig_id": 1406793}}, {"model": "metainfo.source", "pk": 5836, "fields": {"orig_filename": "Reider_Simon_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407096}}, {"model": "metainfo.source", "pk": 5837, "fields": {"orig_filename": "Reidinger_Anton_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407097}}, {"model": "metainfo.source", "pk": 5838, "fields": {"orig_filename": "Reiffenstein_Gottlieb-Benjamin_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407098}}, {"model": "metainfo.source", "pk": 5839, "fields": {"orig_filename": "Reifner_Vinzenz_1878_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38f.", "author": "", "orig_id": 1407099}}, {"model": "metainfo.source", "pk": 5840, "fields": {"orig_filename": "Reifschneider_Konrad_1909_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39", "author": "", "orig_id": 1407100}}, {"model": "metainfo.source", "pk": 5841, "fields": {"orig_filename": "Reilly_Franz-Johann-Josef_1766_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39f.", "author": "", "orig_id": 1407102}}, {"model": "metainfo.source", "pk": 5842, "fields": {"orig_filename": "Reil_Johann-Anton-Friedrich_1773_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39", "author": "", "orig_id": 1407101}}, {"model": "metainfo.source", "pk": 5843, "fields": {"orig_filename": "Reimann_Martin_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40", "author": "", "orig_id": 1407104}}, {"model": "metainfo.source", "pk": 5844, "fields": {"orig_filename": "Reimers_Georg_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40f.", "author": "", "orig_id": 1407105}}, {"model": "metainfo.source", "pk": 5845, "fields": {"orig_filename": "Reim_Johann-Vinzenz_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40", "author": "", "orig_id": 1407103}}, {"model": "metainfo.source", "pk": 5846, "fields": {"orig_filename": "Reindl_Johann-Bapt_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 41", "author": "", "orig_id": 1407106}}, {"model": "metainfo.source", "pk": 5847, "fields": {"orig_filename": "Randa_Antonin_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 410f.", "author": "", "orig_id": 1410085}}, {"model": "metainfo.source", "pk": 5848, "fields": {"orig_filename": "Randegger_Alberto-Iginio_1880_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412", "author": "", "orig_id": 1410088}}, {"model": "metainfo.source", "pk": 5849, "fields": {"orig_filename": "Randegger_Alberto_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411f.", "author": "", "orig_id": 1410087}}, {"model": "metainfo.source", "pk": 5850, "fields": {"orig_filename": "Randegger_Mayer_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412", "author": "", "orig_id": 1410089}}, {"model": "metainfo.source", "pk": 5851, "fields": {"orig_filename": "Randhartinger_Benedikt_1802_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412f.", "author": "", "orig_id": 1410090}}, {"model": "metainfo.source", "pk": 5852, "fields": {"orig_filename": "Randolf_Josef_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413", "author": "", "orig_id": 1410091}}, {"model": "metainfo.source", "pk": 5853, "fields": {"orig_filename": "Ranftl_Johann-Ev_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413", "author": "", "orig_id": 1410092}}, {"model": "metainfo.source", "pk": 5854, "fields": {"orig_filename": "Ranftl_Matthias-Johann_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413f.", "author": "", "orig_id": 1410093}}, {"model": "metainfo.source", "pk": 5855, "fields": {"orig_filename": "Ranggetiner_Christian_1833_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 414", "author": "", "orig_id": 1410094}}, {"model": "metainfo.source", "pk": 5856, "fields": {"orig_filename": "Rankl_Richard_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416", "author": "", "orig_id": 1410099}}, {"model": "metainfo.source", "pk": 5857, "fields": {"orig_filename": "Rank_Josef_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 414f.", "author": "", "orig_id": 1410096}}, {"model": "metainfo.source", "pk": 5858, "fields": {"orig_filename": "Rank_Josef_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 415", "author": "", "orig_id": 1410097}}, {"model": "metainfo.source", "pk": 5859, "fields": {"orig_filename": "Rank_Otto_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 415f.", "author": "", "orig_id": 1410098}}, {"model": "metainfo.source", "pk": 5860, "fields": {"orig_filename": "Rannicher_Jakob_1823_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416", "author": "", "orig_id": 1410174}}, {"model": "metainfo.source", "pk": 5861, "fields": {"orig_filename": "Ranolder_Janos_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416f.", "author": "", "orig_id": 1410175}}, {"model": "metainfo.source", "pk": 5862, "fields": {"orig_filename": "Ransonnet-Villez_Eugen_1838_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417", "author": "", "orig_id": 1410176}}, {"model": "metainfo.source", "pk": 5863, "fields": {"orig_filename": "Ranzenberger_Hugo_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417", "author": "", "orig_id": 1410177}}, {"model": "metainfo.source", "pk": 5864, "fields": {"orig_filename": "Ranzenhofer_Adolf_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417f.", "author": "", "orig_id": 1410178}}, {"model": "metainfo.source", "pk": 5865, "fields": {"orig_filename": "Ranzi_Egon_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 418", "author": "", "orig_id": 1410179}}, {"model": "metainfo.source", "pk": 5866, "fields": {"orig_filename": "Ranzoni_Emerich_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 418f.", "author": "", "orig_id": 1410180}}, {"model": "metainfo.source", "pk": 5867, "fields": {"orig_filename": "Ranzoni_Gustav_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 419", "author": "", "orig_id": 1410181}}, {"model": "metainfo.source", "pk": 5868, "fields": {"orig_filename": "Rapaics_Raimund_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 419f.", "author": "", "orig_id": 1410182}}, {"model": "metainfo.source", "pk": 5869, "fields": {"orig_filename": "Rapoc_Fran_1842_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420", "author": "", "orig_id": 1410183}}, {"model": "metainfo.source", "pk": 5870, "fields": {"orig_filename": "Rapoldi_Martin_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420", "author": "", "orig_id": 1410184}}, {"model": "metainfo.source", "pk": 5871, "fields": {"orig_filename": "Rapoport-Porada_Arnold-Chaim_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 422f.", "author": "", "orig_id": 1410190}}, {"model": "metainfo.source", "pk": 5872, "fields": {"orig_filename": "Rapoport_Benjamin-Zeeb-Wolf-Hakohen_1754_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420f.", "author": "", "orig_id": 1410185}}, {"model": "metainfo.source", "pk": 5873, "fields": {"orig_filename": "Rapoport_Mordche-W_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421", "author": "", "orig_id": 1410186}}, {"model": "metainfo.source", "pk": 5874, "fields": {"orig_filename": "Rapoport_Moriz_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421", "author": "", "orig_id": 1410187}}, {"model": "metainfo.source", "pk": 5875, "fields": {"orig_filename": "Rapoport_Salomon-Juda-Loeb_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421f.", "author": "", "orig_id": 1410188}}, {"model": "metainfo.source", "pk": 5876, "fields": {"orig_filename": "Rapoport_Samuel_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 422", "author": "", "orig_id": 1410189}}, {"model": "metainfo.source", "pk": 5877, "fields": {"orig_filename": "Rapp-Heidenburg_Franz_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424", "author": "", "orig_id": 1410194}}, {"model": "metainfo.source", "pk": 5878, "fields": {"orig_filename": "Rappel_Jakob_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424", "author": "", "orig_id": 1410195}}, {"model": "metainfo.source", "pk": 5879, "fields": {"orig_filename": "Rappoldi_Eduard_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425", "author": "", "orig_id": 1410197}}, {"model": "metainfo.source", "pk": 5880, "fields": {"orig_filename": "Rappoldi_Laura_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425", "author": "", "orig_id": 1410198}}, {"model": "metainfo.source", "pk": 5881, "fields": {"orig_filename": "Rappold_Ferdinand_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424f.", "author": "", "orig_id": 1410196}}, {"model": "metainfo.source", "pk": 5882, "fields": {"orig_filename": "Rapp_Johann_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423", "author": "", "orig_id": 1410191}}, {"model": "metainfo.source", "pk": 5883, "fields": {"orig_filename": "Rapp_Josef_1780_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423", "author": "", "orig_id": 1410192}}, {"model": "metainfo.source", "pk": 5884, "fields": {"orig_filename": "Rapp_Ludwig_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423f.", "author": "", "orig_id": 1410193}}, {"model": "metainfo.source", "pk": 5885, "fields": {"orig_filename": "Raschke_Hermann_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425f.", "author": "", "orig_id": 1410273}}, {"model": "metainfo.source", "pk": 5886, "fields": {"orig_filename": "Raschke_Rudolf_1923_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426", "author": "", "orig_id": 1410274}}, {"model": "metainfo.source", "pk": 5887, "fields": {"orig_filename": "Rasim_Otto_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426", "author": "", "orig_id": 1410275}}, {"model": "metainfo.source", "pk": 5888, "fields": {"orig_filename": "Rasin_Alois_1867_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426f.", "author": "", "orig_id": 1410276}}, {"model": "metainfo.source", "pk": 5889, "fields": {"orig_filename": "Raskaj_Slava_1877_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 427", "author": "", "orig_id": 1410277}}, {"model": "metainfo.source", "pk": 5890, "fields": {"orig_filename": "Rastic_Daniel_1794_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410280}}, {"model": "metainfo.source", "pk": 5891, "fields": {"orig_filename": "Rast_August_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 427f.", "author": "", "orig_id": 1410278}}, {"model": "metainfo.source", "pk": 5892, "fields": {"orig_filename": "Rast_Ferdinand-Gregor_1808_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410279}}, {"model": "metainfo.source", "pk": 5893, "fields": {"orig_filename": "Rataj_Jan_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428f.", "author": "", "orig_id": 1410284}}, {"model": "metainfo.source", "pk": 5894, "fields": {"orig_filename": "Rataj_Maciej_1884_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429", "author": "", "orig_id": 1410285}}, {"model": "metainfo.source", "pk": 5895, "fields": {"orig_filename": "Rathausky_Johann_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431f.", "author": "", "orig_id": 1410293}}, {"model": "metainfo.source", "pk": 5896, "fields": {"orig_filename": "Rathay_Emerich_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 432", "author": "", "orig_id": 1410294}}, {"model": "metainfo.source", "pk": 5897, "fields": {"orig_filename": "Rathner_Wilhelmine_1863_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 432", "author": "", "orig_id": 1410295}}, {"model": "metainfo.source", "pk": 5898, "fields": {"orig_filename": "Rathofer_Augustin_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410296}}, {"model": "metainfo.source", "pk": 5899, "fields": {"orig_filename": "Rath_Gyoergy_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429", "author": "", "orig_id": 1410286}}, {"model": "metainfo.source", "pk": 5900, "fields": {"orig_filename": "Rath_Heinrich_1792_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429f.", "author": "", "orig_id": 1410287}}, {"model": "metainfo.source", "pk": 5901, "fields": {"orig_filename": "Rath_Josef_1772_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410288}}, {"model": "metainfo.source", "pk": 5902, "fields": {"orig_filename": "Rath_Karoly_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410289}}, {"model": "metainfo.source", "pk": 5903, "fields": {"orig_filename": "Rath_Karoly_1829_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410290}}, {"model": "metainfo.source", "pk": 5904, "fields": {"orig_filename": "Rath_Mor_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431", "author": "", "orig_id": 1410291}}, {"model": "metainfo.source", "pk": 5905, "fields": {"orig_filename": "Rath_Zoltan_1863_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431", "author": "", "orig_id": 1410292}}, {"model": "metainfo.source", "pk": 5906, "fields": {"orig_filename": "Ratini_Luigi_1880_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410297}}, {"model": "metainfo.source", "pk": 5907, "fields": {"orig_filename": "Ratiu_Ioan_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410373}}, {"model": "metainfo.source", "pk": 5908, "fields": {"orig_filename": "Ratzenberger_Franz_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434", "author": "", "orig_id": 1410376}}, {"model": "metainfo.source", "pk": 5909, "fields": {"orig_filename": "Ratzenhofer_Gustav_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434f.", "author": "", "orig_id": 1410377}}, {"model": "metainfo.source", "pk": 5910, "fields": {"orig_filename": "Ratz_Alfred_1882_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433f.", "author": "", "orig_id": 1410374}}, {"model": "metainfo.source", "pk": 5911, "fields": {"orig_filename": "Ratz_Johann-Kaspar_1786_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434", "author": "", "orig_id": 1410375}}, {"model": "metainfo.source", "pk": 5912, "fields": {"orig_filename": "Rat_Gherasim_1793_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410282}}, {"model": "metainfo.source", "pk": 5913, "fields": {"orig_filename": "Rauber_Eugen-Siegfried_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 435", "author": "", "orig_id": 1410378}}, {"model": "metainfo.source", "pk": 5914, "fields": {"orig_filename": "Rauchberg_Heinrich_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437f.", "author": "", "orig_id": 1410385}}, {"model": "metainfo.source", "pk": 5915, "fields": {"orig_filename": "Rauchinger_Heinrich_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438", "author": "", "orig_id": 1410386}}, {"model": "metainfo.source", "pk": 5916, "fields": {"orig_filename": "Rauch_Anton_1801_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 435", "author": "", "orig_id": 1410379}}, {"model": "metainfo.source", "pk": 5917, "fields": {"orig_filename": "Rauch_Felizian_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436", "author": "", "orig_id": 1410380}}, {"model": "metainfo.source", "pk": 5918, "fields": {"orig_filename": "Rauch_Johann_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436", "author": "", "orig_id": 1410381}}, {"model": "metainfo.source", "pk": 5919, "fields": {"orig_filename": "Rauch_Josef_1765_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436f.", "author": "", "orig_id": 1410382}}, {"model": "metainfo.source", "pk": 5920, "fields": {"orig_filename": "Rauch_Levin_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437", "author": "", "orig_id": 1410383}}, {"model": "metainfo.source", "pk": 5921, "fields": {"orig_filename": "Rauch_Pavao_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437", "author": "", "orig_id": 1410384}}, {"model": "metainfo.source", "pk": 5922, "fields": {"orig_filename": "Rauhofer_Josef_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438f.", "author": "", "orig_id": 1410388}}, {"model": "metainfo.source", "pk": 5923, "fields": {"orig_filename": "Rauh_Johann_1803_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438", "author": "", "orig_id": 1410387}}, {"model": "metainfo.source", "pk": 5924, "fields": {"orig_filename": "Raunegger_Ferdinand_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 439", "author": "", "orig_id": 1410389}}, {"model": "metainfo.source", "pk": 5925, "fields": {"orig_filename": "Raunicher_Matteo_1776_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 439f.", "author": "", "orig_id": 1410390}}, {"model": "metainfo.source", "pk": 5926, "fields": {"orig_filename": "Raupenstrauch_Gustav-Adolf_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 440", "author": "", "orig_id": 1410391}}, {"model": "metainfo.source", "pk": 5927, "fields": {"orig_filename": "Rausar_Josef-Zdenek_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 440f.", "author": "", "orig_id": 1410392}}, {"model": "metainfo.source", "pk": 5928, "fields": {"orig_filename": "Rausch-Traubenberg_Franz_1743_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441", "author": "", "orig_id": 1410394}}, {"model": "metainfo.source", "pk": 5929, "fields": {"orig_filename": "Rauscher-Stainberg_Ernst_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443f.", "author": "", "orig_id": 1410470}}, {"model": "metainfo.source", "pk": 5930, "fields": {"orig_filename": "Rauscher_Jakob_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441f.", "author": "", "orig_id": 1410395}}, {"model": "metainfo.source", "pk": 5931, "fields": {"orig_filename": "Rauscher_Josef-Othmar_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 442f.", "author": "", "orig_id": 1410467}}, {"model": "metainfo.source", "pk": 5932, "fields": {"orig_filename": "Rauscher_Michael_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443", "author": "", "orig_id": 1410468}}, {"model": "metainfo.source", "pk": 5933, "fields": {"orig_filename": "Rauscher_Robert_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443", "author": "", "orig_id": 1410469}}, {"model": "metainfo.source", "pk": 5934, "fields": {"orig_filename": "Rausch_Karl_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441", "author": "", "orig_id": 1410393}}, {"model": "metainfo.source", "pk": 5935, "fields": {"orig_filename": "Rautenkranz_Josef-Frantisek-Miloslav_1776_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 444", "author": "", "orig_id": 1410471}}, {"model": "metainfo.source", "pk": 5936, "fields": {"orig_filename": "Rauter_Johann-Bapt-Albin_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 444f.", "author": "", "orig_id": 1410472}}, {"model": "metainfo.source", "pk": 5937, "fields": {"orig_filename": "Ravnikar_Matevz_1802_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445", "author": "", "orig_id": 1410473}}, {"model": "metainfo.source", "pk": 5938, "fields": {"orig_filename": "Raymann_Adolf_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446", "author": "", "orig_id": 1410476}}, {"model": "metainfo.source", "pk": 5939, "fields": {"orig_filename": "Rayman_Bohuslav_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445f.", "author": "", "orig_id": 1410475}}, {"model": "metainfo.source", "pk": 5940, "fields": {"orig_filename": "Ray_Pietro_1773_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445", "author": "", "orig_id": 1410474}}, {"model": "metainfo.source", "pk": 5941, "fields": {"orig_filename": "Razga_Pal_1798_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446f.", "author": "", "orig_id": 1410478}}, {"model": "metainfo.source", "pk": 5942, "fields": {"orig_filename": "Razlag_Radoslav-Jakob_1826_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 447", "author": "", "orig_id": 1410479}}, {"model": "metainfo.source", "pk": 5943, "fields": {"orig_filename": "Razumovsky_Andreas_1752_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 447f.", "author": "", "orig_id": 1410480}}, {"model": "metainfo.source", "pk": 5944, "fields": {"orig_filename": "Razumovsky_Gregor_1759_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 448", "author": "", "orig_id": 1410481}}, {"model": "metainfo.source", "pk": 5945, "fields": {"orig_filename": "Razun_Matej_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 448", "author": "", "orig_id": 1410482}}, {"model": "metainfo.source", "pk": 5946, "fields": {"orig_filename": "Razus_Martin_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1", "author": "", "orig_id": 1406927}}, {"model": "metainfo.source", "pk": 5947, "fields": {"orig_filename": "Raz_Arnost_1884_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446", "author": "", "orig_id": 1410477}}, {"model": "metainfo.source", "pk": 5948, "fields": {"orig_filename": "Reali_Giuseppe-Maria_1799_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1", "author": "", "orig_id": 1406928}}, {"model": "metainfo.source", "pk": 5949, "fields": {"orig_filename": "Rebell_Josef_1787_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 2", "author": "", "orig_id": 1406930}}, {"model": "metainfo.source", "pk": 5950, "fields": {"orig_filename": "Raday-Rada_Gedeon_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369", "author": "", "orig_id": 1409705}}, {"model": "metainfo.source", "pk": 5951, "fields": {"orig_filename": "Raday-Rada_Gedeon_1841_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369", "author": "", "orig_id": 1409706}}, {"model": "metainfo.source", "pk": 5952, "fields": {"orig_filename": "Radek_Karl-Bernhardovic_1885_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369f.", "author": "", "orig_id": 1409707}}, {"model": "metainfo.source", "pk": 5953, "fields": {"orig_filename": "Rademacher_Paul_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 370", "author": "", "orig_id": 1409708}}, {"model": "metainfo.source", "pk": 5954, "fields": {"orig_filename": "Radetzky-Radetz_Johann-Josef-Wenzel_1766_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 370f.", "author": "", "orig_id": 1409709}}, {"model": "metainfo.source", "pk": 5955, "fields": {"orig_filename": "Radicevic_Bozidar_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 373f.", "author": "", "orig_id": 1409713}}, {"model": "metainfo.source", "pk": 5956, "fields": {"orig_filename": "Radicevic_Branko_1824_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374", "author": "", "orig_id": 1409714}}, {"model": "metainfo.source", "pk": 5957, "fields": {"orig_filename": "Radics_Peter-Paul_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374", "author": "", "orig_id": 1409715}}, {"model": "metainfo.source", "pk": 5958, "fields": {"orig_filename": "Radic_Antun_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 372", "author": "", "orig_id": 1409711}}, {"model": "metainfo.source", "pk": 5959, "fields": {"orig_filename": "Radic_Stjepan_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 372f.", "author": "", "orig_id": 1409712}}, {"model": "metainfo.source", "pk": 5960, "fields": {"orig_filename": "Radimsky_Vaclav_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374f.", "author": "", "orig_id": 1409716}}, {"model": "metainfo.source", "pk": 5961, "fields": {"orig_filename": "Radimsky_Vaclav_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375", "author": "", "orig_id": 1409717}}, {"model": "metainfo.source", "pk": 5962, "fields": {"orig_filename": "Radimsky_Wenzel_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375", "author": "", "orig_id": 1409718}}, {"model": "metainfo.source", "pk": 5963, "fields": {"orig_filename": "Radinger-Radinghofen_Karl_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 376f.", "author": "", "orig_id": 1409720}}, {"model": "metainfo.source", "pk": 5964, "fields": {"orig_filename": "Radinger_Johann_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375f.", "author": "", "orig_id": 1409719}}, {"model": "metainfo.source", "pk": 5965, "fields": {"orig_filename": "Radivojevich_Paul_1759_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377", "author": "", "orig_id": 1409721}}, {"model": "metainfo.source", "pk": 5966, "fields": {"orig_filename": "Radi_Lorenzo_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 371f.", "author": "", "orig_id": 1409710}}, {"model": "metainfo.source", "pk": 5967, "fields": {"orig_filename": "Radler_Friedrich-Johann_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 378f.", "author": "", "orig_id": 1409795}}, {"model": "metainfo.source", "pk": 5968, "fields": {"orig_filename": "Radlinsky_Andrej-Ludovit_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 379", "author": "", "orig_id": 1409796}}, {"model": "metainfo.source", "pk": 5969, "fields": {"orig_filename": "Radl_Anton_1774_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377", "author": "", "orig_id": 1409722}}, {"model": "metainfo.source", "pk": 5970, "fields": {"orig_filename": "Radl_Emanuel_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377f.", "author": "", "orig_id": 1409723}}, {"model": "metainfo.source", "pk": 5971, "fields": {"orig_filename": "Radnitzky_August_1810_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 379", "author": "", "orig_id": 1409797}}, {"model": "metainfo.source", "pk": 5972, "fields": {"orig_filename": "Radnitzky_Franz_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409798}}, {"model": "metainfo.source", "pk": 5973, "fields": {"orig_filename": "Radnitzky_Karl_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409799}}, {"model": "metainfo.source", "pk": 5974, "fields": {"orig_filename": "Rado-Hilgermann_Laura_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380f.", "author": "", "orig_id": 1409801}}, {"model": "metainfo.source", "pk": 5975, "fields": {"orig_filename": "Rado-Szent-Martony_Gedeon_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381", "author": "", "orig_id": 1409802}}, {"model": "metainfo.source", "pk": 5976, "fields": {"orig_filename": "Rados_Gusztav_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381", "author": "", "orig_id": 1409803}}, {"model": "metainfo.source", "pk": 5977, "fields": {"orig_filename": "Rado_Antal_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409800}}, {"model": "metainfo.source", "pk": 5978, "fields": {"orig_filename": "Radvanszky-Radvany-Sajokaza_Bela_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381f.", "author": "", "orig_id": 1409804}}, {"model": "metainfo.source", "pk": 5979, "fields": {"orig_filename": "Radwanski_Feliks-Pius_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 382f.", "author": "", "orig_id": 1409806}}, {"model": "metainfo.source", "pk": 5980, "fields": {"orig_filename": "Radwanski_Feliks_1789_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 382", "author": "", "orig_id": 1409805}}, {"model": "metainfo.source", "pk": 5981, "fields": {"orig_filename": "Radzikowski-Eljasz_Jan-Kanty-Walery_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 383", "author": "", "orig_id": 1409807}}, {"model": "metainfo.source", "pk": 5982, "fields": {"orig_filename": "Radzikowski-Eljasz_Stanislaw-Wojciech_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 383f.", "author": "", "orig_id": 1409808}}, {"model": "metainfo.source", "pk": 5983, "fields": {"orig_filename": "Radziminski-Luba_Zygmunt_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 384", "author": "", "orig_id": 1409809}}, {"model": "metainfo.source", "pk": 5984, "fields": {"orig_filename": "Radziszewski_Bronislaw_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 384", "author": "", "orig_id": 1409810}}, {"model": "metainfo.source", "pk": 5985, "fields": {"orig_filename": "Radziwonski_Jan_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409811}}, {"model": "metainfo.source", "pk": 5986, "fields": {"orig_filename": "Rad_Jakob-Christof_1799_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 366f.", "author": "", "orig_id": 1409633}}, {"model": "metainfo.source", "pk": 5987, "fields": {"orig_filename": "Raedler_Karl-Robert_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409812}}, {"model": "metainfo.source", "pk": 5988, "fields": {"orig_filename": "Raedlhammer_Karl_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409813}}, {"model": "metainfo.source", "pk": 5989, "fields": {"orig_filename": "Raevskij_Michail-Fedorovic_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385f.", "author": "", "orig_id": 1409814}}, {"model": "metainfo.source", "pk": 5990, "fields": {"orig_filename": "Rafacz_Jozef_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 386", "author": "", "orig_id": 1409815}}, {"model": "metainfo.source", "pk": 5991, "fields": {"orig_filename": "Rafael_Franz-X_1816_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 386f.", "author": "", "orig_id": 1409816}}, {"model": "metainfo.source", "pk": 5992, "fields": {"orig_filename": "Rafes_Moses_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387", "author": "", "orig_id": 1409817}}, {"model": "metainfo.source", "pk": 5993, "fields": {"orig_filename": "Raffalt_Ignaz_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387", "author": "", "orig_id": 1409886}}, {"model": "metainfo.source", "pk": 5994, "fields": {"orig_filename": "Raffalt_Johann-Gualbert_1836_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387f.", "author": "", "orig_id": 1409887}}, {"model": "metainfo.source", "pk": 5995, "fields": {"orig_filename": "Raffay_Leopold_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388", "author": "", "orig_id": 1409888}}, {"model": "metainfo.source", "pk": 5996, "fields": {"orig_filename": "Raffay_Sandor_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388", "author": "", "orig_id": 1409745}}, {"model": "metainfo.source", "pk": 5997, "fields": {"orig_filename": "Raffeiner_Emanuel_1881_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388f.", "author": "", "orig_id": 1409889}}, {"model": "metainfo.source", "pk": 5998, "fields": {"orig_filename": "Raffeiner_Johann-Stefan_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 389", "author": "", "orig_id": 1409890}}, {"model": "metainfo.source", "pk": 5999, "fields": {"orig_filename": "Raffelsberger_Franz_1793_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 389f.", "author": "", "orig_id": 1409891}}, {"model": "metainfo.source", "pk": 6000, "fields": {"orig_filename": "Raffl_Franz_1775_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390", "author": "", "orig_id": 1409892}}, {"model": "metainfo.source", "pk": 6001, "fields": {"orig_filename": "Raffl_Johannes_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390", "author": "", "orig_id": 1409893}}, {"model": "metainfo.source", "pk": 6002, "fields": {"orig_filename": "Rahl_Karl-Heinrich_1779_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409895}}, {"model": "metainfo.source", "pk": 6003, "fields": {"orig_filename": "Rahl_Karl_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390f.", "author": "", "orig_id": 1409894}}, {"model": "metainfo.source", "pk": 6004, "fields": {"orig_filename": "Raicevich_Massimiliano-Roberto_1878_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409897}}, {"model": "metainfo.source", "pk": 6005, "fields": {"orig_filename": "Raic_Bozidar_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409896}}, {"model": "metainfo.source", "pk": 6006, "fields": {"orig_filename": "Raimann_Emil_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409898}}, {"model": "metainfo.source", "pk": 6007, "fields": {"orig_filename": "Raimann_Franz_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409899}}, {"model": "metainfo.source", "pk": 6008, "fields": {"orig_filename": "Raimann_Johann-Nep_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409900}}, {"model": "metainfo.source", "pk": 6009, "fields": {"orig_filename": "Raimann_Rudolf_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392f.", "author": "", "orig_id": 1409901}}, {"model": "metainfo.source", "pk": 6010, "fields": {"orig_filename": "Raimondi_Antonio_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 393", "author": "", "orig_id": 1409902}}, {"model": "metainfo.source", "pk": 6011, "fields": {"orig_filename": "Raimondi_Lorenz_1752_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 393f.", "author": "", "orig_id": 1409903}}, {"model": "metainfo.source", "pk": 6012, "fields": {"orig_filename": "Raimund_Ferdinand_1790_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 394f.", "author": "", "orig_id": 1409904}}, {"model": "metainfo.source", "pk": 6013, "fields": {"orig_filename": "Rainer-Ferdinand___1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 395f.", "author": "", "orig_id": 1409905}}, {"model": "metainfo.source", "pk": 6014, "fields": {"orig_filename": "Rainer-Harbach_Hans_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398f.", "author": "", "orig_id": 1409982}}, {"model": "metainfo.source", "pk": 6015, "fields": {"orig_filename": "Rainer-Josef___1783_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 396", "author": "", "orig_id": 1409906}}, {"model": "metainfo.source", "pk": 6016, "fields": {"orig_filename": "Rainer_Johann-Georg_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 396", "author": "", "orig_id": 1409907}}, {"model": "metainfo.source", "pk": 6017, "fields": {"orig_filename": "Rainer_Josef_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397", "author": "", "orig_id": 1409908}}, {"model": "metainfo.source", "pk": 6018, "fields": {"orig_filename": "Rainer_Ludwig_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397", "author": "", "orig_id": 1409909}}, {"model": "metainfo.source", "pk": 6019, "fields": {"orig_filename": "Rainer_Oskar_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397f.", "author": "", "orig_id": 1409910}}, {"model": "metainfo.source", "pk": 6020, "fields": {"orig_filename": "Rainer_Paul_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398", "author": "", "orig_id": 1409980}}, {"model": "metainfo.source", "pk": 6021, "fields": {"orig_filename": "Rainer_Virgil_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398", "author": "", "orig_id": 1409981}}, {"model": "metainfo.source", "pk": 6022, "fields": {"orig_filename": "Rainoldi_Paul_1781_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 399f.", "author": "", "orig_id": 1409984}}, {"model": "metainfo.source", "pk": 6023, "fields": {"orig_filename": "Rainold_Karl-Eduard_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 399", "author": "", "orig_id": 1409983}}, {"model": "metainfo.source", "pk": 6024, "fields": {"orig_filename": "Raisp-Caliga_Erwin_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400", "author": "", "orig_id": 1409986}}, {"model": "metainfo.source", "pk": 6025, "fields": {"orig_filename": "Rais_Karel-Vaclav_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400", "author": "", "orig_id": 1409985}}, {"model": "metainfo.source", "pk": 6026, "fields": {"orig_filename": "Rajacic-Brinski_Josif_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400f.", "author": "", "orig_id": 1409987}}, {"model": "metainfo.source", "pk": 6027, "fields": {"orig_filename": "Rajkovic_Djordje_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401", "author": "", "orig_id": 1409988}}, {"model": "metainfo.source", "pk": 6028, "fields": {"orig_filename": "Rajman_Franz-Josef_1762_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401", "author": "", "orig_id": 1409989}}, {"model": "metainfo.source", "pk": 6029, "fields": {"orig_filename": "Rakic_Vikentije_1750_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409991}}, {"model": "metainfo.source", "pk": 6030, "fields": {"orig_filename": "Rakosi-Mindszent_Jenoe_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402f.", "author": "", "orig_id": 1409994}}, {"model": "metainfo.source", "pk": 6031, "fields": {"orig_filename": "Rakosi_Szidi_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409992}}, {"model": "metainfo.source", "pk": 6032, "fields": {"orig_filename": "Rakosi_Viktor_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409993}}, {"model": "metainfo.source", "pk": 6033, "fields": {"orig_filename": "Rakous_Vojtech_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 403", "author": "", "orig_id": 1409995}}, {"model": "metainfo.source", "pk": 6034, "fields": {"orig_filename": "Rakovac_Dragutin_1813_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 403f.", "author": "", "orig_id": 1409996}}, {"model": "metainfo.source", "pk": 6035, "fields": {"orig_filename": "Rakovszky-Nagyrako-Nagyselmecz_Adalbert_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404", "author": "", "orig_id": 1409997}}, {"model": "metainfo.source", "pk": 6036, "fields": {"orig_filename": "Rakowianu_Robert_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404", "author": "", "orig_id": 1409998}}, {"model": "metainfo.source", "pk": 6037, "fields": {"orig_filename": "Rakowitsch_Adolf_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404f.", "author": "", "orig_id": 1409999}}, {"model": "metainfo.source", "pk": 6038, "fields": {"orig_filename": "Rakusch_Julius_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410000}}, {"model": "metainfo.source", "pk": 6039, "fields": {"orig_filename": "Rak_Jan_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401f.", "author": "", "orig_id": 1409990}}, {"model": "metainfo.source", "pk": 6040, "fields": {"orig_filename": "Ralli_Cimone_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410001}}, {"model": "metainfo.source", "pk": 6041, "fields": {"orig_filename": "Ralli_Paolo_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410002}}, {"model": "metainfo.source", "pk": 6042, "fields": {"orig_filename": "Ramberg_Arthur-Georg_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406", "author": "", "orig_id": 1410074}}, {"model": "metainfo.source", "pk": 6043, "fields": {"orig_filename": "Ramberg_August_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406", "author": "", "orig_id": 1410075}}, {"model": "metainfo.source", "pk": 6044, "fields": {"orig_filename": "Ramberg_Hermann_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406f.", "author": "", "orig_id": 1410076}}, {"model": "metainfo.source", "pk": 6045, "fields": {"orig_filename": "Ramek_Rudolf_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 407", "author": "", "orig_id": 1410077}}, {"model": "metainfo.source", "pk": 6046, "fields": {"orig_filename": "Ramello_Luigi_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 407f.", "author": "", "orig_id": 1410078}}, {"model": "metainfo.source", "pk": 6047, "fields": {"orig_filename": "Ramelmayr_Adam_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408", "author": "", "orig_id": 1410079}}, {"model": "metainfo.source", "pk": 6048, "fields": {"orig_filename": "Ramming-Riedkirchen_Wilhelm_1815_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408", "author": "", "orig_id": 1410080}}, {"model": "metainfo.source", "pk": 6049, "fields": {"orig_filename": "Ramsauer_Ernst_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408f.", "author": "", "orig_id": 1410081}}, {"model": "metainfo.source", "pk": 6050, "fields": {"orig_filename": "Ramsauer_Johann-Georg_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 409", "author": "", "orig_id": 1410082}}, {"model": "metainfo.source", "pk": 6051, "fields": {"orig_filename": "Ramult_Stefan-Samuel_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 409f.", "author": "", "orig_id": 1410083}}, {"model": "metainfo.source", "pk": 6052, "fields": {"orig_filename": "Ramus_Pierre_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 410", "author": "", "orig_id": 1410084}}, {"model": "metainfo.source", "pk": 6053, "fields": {"orig_filename": "Pulgher_Domenico_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410746}}, {"model": "metainfo.source", "pk": 6054, "fields": {"orig_filename": "Pulic_Juraj_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410816}}, {"model": "metainfo.source", "pk": 6055, "fields": {"orig_filename": "Pulitzer_Josef_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330f.", "author": "", "orig_id": 1410817}}, {"model": "metainfo.source", "pk": 6056, "fields": {"orig_filename": "Pulkrabek_Josef_1887_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 331", "author": "", "orig_id": 1410818}}, {"model": "metainfo.source", "pk": 6057, "fields": {"orig_filename": "Pulle_Leopoldo_1835_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 331f.", "author": "", "orig_id": 1410819}}, {"model": "metainfo.source", "pk": 6058, "fields": {"orig_filename": "Pulszky-Cselfalva-Lubocz_Agost_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 332", "author": "", "orig_id": 1410820}}, {"model": "metainfo.source", "pk": 6059, "fields": {"orig_filename": "Pulszky-Cselfalva-Lubocz_Ferenc_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 332f.", "author": "", "orig_id": 1410821}}, {"model": "metainfo.source", "pk": 6060, "fields": {"orig_filename": "Pult_Simeon_1740_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333", "author": "", "orig_id": 1410822}}, {"model": "metainfo.source", "pk": 6061, "fields": {"orig_filename": "Puluj_Johann_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333", "author": "", "orig_id": 1410823}}, {"model": "metainfo.source", "pk": 6062, "fields": {"orig_filename": "Pulz_Ludwig_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333f.", "author": "", "orig_id": 1410824}}, {"model": "metainfo.source", "pk": 6063, "fields": {"orig_filename": "Pummerer_Anton-Georg_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334", "author": "", "orig_id": 1410825}}, {"model": "metainfo.source", "pk": 6064, "fields": {"orig_filename": "Pumnul_Aron_1818_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334", "author": "", "orig_id": 1410826}}, {"model": "metainfo.source", "pk": 6065, "fields": {"orig_filename": "Pungur_Gyula_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334f.", "author": "", "orig_id": 1410827}}, {"model": "metainfo.source", "pk": 6066, "fields": {"orig_filename": "Puntar_Josip_1884_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 335", "author": "", "orig_id": 1410828}}, {"model": "metainfo.source", "pk": 6067, "fields": {"orig_filename": "Puntigam_Anton_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 335f.", "author": "", "orig_id": 1410829}}, {"model": "metainfo.source", "pk": 6068, "fields": {"orig_filename": "Puntschart_Paul_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336", "author": "", "orig_id": 1410830}}, {"model": "metainfo.source", "pk": 6069, "fields": {"orig_filename": "Puntschart_Valentin_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336", "author": "", "orig_id": 1410831}}, {"model": "metainfo.source", "pk": 6070, "fields": {"orig_filename": "Pupin_Michael-Idvorsky_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336f.", "author": "", "orig_id": 1410832}}, {"model": "metainfo.source", "pk": 6071, "fields": {"orig_filename": "Pupovac_Dominik_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337", "author": "", "orig_id": 1410833}}, {"model": "metainfo.source", "pk": 6072, "fields": {"orig_filename": "Pupp_Julius_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337", "author": "", "orig_id": 1410834}}, {"model": "metainfo.source", "pk": 6073, "fields": {"orig_filename": "Purger_Johann-Bapt_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337f.", "author": "", "orig_id": 1410835}}, {"model": "metainfo.source", "pk": 6074, "fields": {"orig_filename": "Purkarthofer_Matthias_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338", "author": "", "orig_id": 1410836}}, {"model": "metainfo.source", "pk": 6075, "fields": {"orig_filename": "Purkyne_Cyrill_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338", "author": "", "orig_id": 1410837}}, {"model": "metainfo.source", "pk": 6076, "fields": {"orig_filename": "Purkyne_Emanuel_1831_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338f.", "author": "", "orig_id": 1410838}}, {"model": "metainfo.source", "pk": 6077, "fields": {"orig_filename": "Purkyne_Jan-Ev_1787_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 339", "author": "", "orig_id": 1410905}}, {"model": "metainfo.source", "pk": 6078, "fields": {"orig_filename": "Purkyne_Josef-Heinrich_1793_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 339f.", "author": "", "orig_id": 1410906}}, {"model": "metainfo.source", "pk": 6079, "fields": {"orig_filename": "Purkyne_Karel_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340", "author": "", "orig_id": 1410907}}, {"model": "metainfo.source", "pk": 6080, "fields": {"orig_filename": "Purschka_Norbert_1813_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340", "author": "", "orig_id": 1410908}}, {"model": "metainfo.source", "pk": 6081, "fields": {"orig_filename": "Purtscheller_Ludwig_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340f.", "author": "", "orig_id": 1410910}}, {"model": "metainfo.source", "pk": 6082, "fields": {"orig_filename": "Purtscher-Eschenburg_Franz-X_1768_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342", "author": "", "orig_id": 1410913}}, {"model": "metainfo.source", "pk": 6083, "fields": {"orig_filename": "Purtscher_Adolf_1819_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 341", "author": "", "orig_id": 1410911}}, {"model": "metainfo.source", "pk": 6084, "fields": {"orig_filename": "Purtscher_Othmar_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 341f.", "author": "", "orig_id": 1410912}}, {"model": "metainfo.source", "pk": 6085, "fields": {"orig_filename": "Puscariu_Emil_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342", "author": "", "orig_id": 1410914}}, {"model": "metainfo.source", "pk": 6086, "fields": {"orig_filename": "Puscariu_Sextil_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342f.", "author": "", "orig_id": 1410915}}, {"model": "metainfo.source", "pk": 6087, "fields": {"orig_filename": "Puschi_Alberto_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343", "author": "", "orig_id": 1410917}}, {"model": "metainfo.source", "pk": 6088, "fields": {"orig_filename": "Puschl_Karl_1825_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343f.", "author": "", "orig_id": 1410918}}, {"model": "metainfo.source", "pk": 6089, "fields": {"orig_filename": "Puschl_Leopold_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 344", "author": "", "orig_id": 1410919}}, {"model": "metainfo.source", "pk": 6090, "fields": {"orig_filename": "Puschmann_Theodor_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 344", "author": "", "orig_id": 1410920}}, {"model": "metainfo.source", "pk": 6091, "fields": {"orig_filename": "Pusch_Karl_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343", "author": "", "orig_id": 1410916}}, {"model": "metainfo.source", "pk": 6092, "fields": {"orig_filename": "Puskas-Ditro_Tivadar_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345", "author": "", "orig_id": 1410921}}, {"model": "metainfo.source", "pk": 6093, "fields": {"orig_filename": "Pusswald_Karl_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345", "author": "", "orig_id": 1410922}}, {"model": "metainfo.source", "pk": 6094, "fields": {"orig_filename": "Puszet_Ludwik_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345f.", "author": "", "orig_id": 1410923}}, {"model": "metainfo.source", "pk": 6095, "fields": {"orig_filename": "Puthon_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 346", "author": "", "orig_id": 1410924}}, {"model": "metainfo.source", "pk": 6096, "fields": {"orig_filename": "Putick_Viljem_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 346f.", "author": "", "orig_id": 1410926}}, {"model": "metainfo.source", "pk": 6097, "fields": {"orig_filename": "Putinati_Alessandro_1801_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410927}}, {"model": "metainfo.source", "pk": 6098, "fields": {"orig_filename": "Putinati_Francesco_1775_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410928}}, {"model": "metainfo.source", "pk": 6099, "fields": {"orig_filename": "Putzer-Reibegg_Johann_1801_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348f.", "author": "", "orig_id": 1409515}}, {"model": "metainfo.source", "pk": 6100, "fields": {"orig_filename": "Putz_Franz_1873_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410929}}, {"model": "metainfo.source", "pk": 6101, "fields": {"orig_filename": "Putz_Gottlieb_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347f.", "author": "", "orig_id": 1410930}}, {"model": "metainfo.source", "pk": 6102, "fields": {"orig_filename": "Putz_Josef_1877_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348", "author": "", "orig_id": 1410931}}, {"model": "metainfo.source", "pk": 6103, "fields": {"orig_filename": "Putz_Leo_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348", "author": "", "orig_id": 1409514}}, {"model": "metainfo.source", "pk": 6104, "fields": {"orig_filename": "Puzyna_Jan_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349", "author": "", "orig_id": 1409517}}, {"model": "metainfo.source", "pk": 6105, "fields": {"orig_filename": "Puzyna_Jozef_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349f.", "author": "", "orig_id": 1409518}}, {"model": "metainfo.source", "pk": 6106, "fields": {"orig_filename": "Pyrker-Felsoe-Eoer_Johann-Ladislaus_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 350", "author": "", "orig_id": 1409519}}, {"model": "metainfo.source", "pk": 6107, "fields": {"orig_filename": "Quadrat_Bernhard_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 350f.", "author": "", "orig_id": 1409520}}, {"model": "metainfo.source", "pk": 6108, "fields": {"orig_filename": "Quadrio_Maurizio_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351f.", "author": "", "orig_id": 1409523}}, {"model": "metainfo.source", "pk": 6109, "fields": {"orig_filename": "Quadri_Antonio_1776_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351", "author": "", "orig_id": 1409521}}, {"model": "metainfo.source", "pk": 6110, "fields": {"orig_filename": "Quadri_Giovanni-Batt_1780_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351", "author": "", "orig_id": 1409522}}, {"model": "metainfo.source", "pk": 6111, "fields": {"orig_filename": "Quarenghi_Giacomo-Antonio-Domenico_1744_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 352", "author": "", "orig_id": 1409524}}, {"model": "metainfo.source", "pk": 6112, "fields": {"orig_filename": "Quarenghi_Guglielmo_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 352f.", "author": "", "orig_id": 1409525}}, {"model": "metainfo.source", "pk": 6113, "fields": {"orig_filename": "Quast_Johann-Zacharias_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 353", "author": "", "orig_id": 1409526}}, {"model": "metainfo.source", "pk": 6114, "fields": {"orig_filename": "Querena_Lattanzio_1768_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 353f.", "author": "", "orig_id": 1409527}}, {"model": "metainfo.source", "pk": 6115, "fields": {"orig_filename": "Querini-Stampalia_Giovanni_1799_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354", "author": "", "orig_id": 1409528}}, {"model": "metainfo.source", "pk": 6116, "fields": {"orig_filename": "Quidenus_Franz_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354", "author": "", "orig_id": 1409529}}, {"model": "metainfo.source", "pk": 6117, "fields": {"orig_filename": "Quiquerez-Beaujeu_Ferdo_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355", "author": "", "orig_id": 1409531}}, {"model": "metainfo.source", "pk": 6118, "fields": {"orig_filename": "Quiquerez_Hermann_1849_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354f.", "author": "", "orig_id": 1409530}}, {"model": "metainfo.source", "pk": 6119, "fields": {"orig_filename": "Quittner_Rudolf_1872_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355", "author": "", "orig_id": 1409532}}, {"model": "metainfo.source", "pk": 6120, "fields": {"orig_filename": "Raab-Rabenau_Karl_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357", "author": "", "orig_id": 1409538}}, {"model": "metainfo.source", "pk": 6121, "fields": {"orig_filename": "Raabe_Josef-Ludwig_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357f.", "author": "", "orig_id": 1409539}}, {"model": "metainfo.source", "pk": 6122, "fields": {"orig_filename": "Raabe_Karl-August_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358", "author": "", "orig_id": 1409610}}, {"model": "metainfo.source", "pk": 6123, "fields": {"orig_filename": "Raabl-Werner_Heinrich_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358", "author": "", "orig_id": 1409611}}, {"model": "metainfo.source", "pk": 6124, "fields": {"orig_filename": "Raab_Franz_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355f.", "author": "", "orig_id": 1409533}}, {"model": "metainfo.source", "pk": 6125, "fields": {"orig_filename": "Raab_Georg-Martin-Ignaz_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356", "author": "", "orig_id": 1409534}}, {"model": "metainfo.source", "pk": 6126, "fields": {"orig_filename": "Raab_Isidor_1826_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356", "author": "", "orig_id": 1409535}}, {"model": "metainfo.source", "pk": 6127, "fields": {"orig_filename": "Raab_Johann_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356f.", "author": "", "orig_id": 1409536}}, {"model": "metainfo.source", "pk": 6128, "fields": {"orig_filename": "Raab_Josef_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357", "author": "", "orig_id": 1409537}}, {"model": "metainfo.source", "pk": 6129, "fields": {"orig_filename": "Rabboni_Giuseppe_1800_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409613}}, {"model": "metainfo.source", "pk": 6130, "fields": {"orig_filename": "Rabeder_Simon_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409614}}, {"model": "metainfo.source", "pk": 6131, "fields": {"orig_filename": "Rabensteiner_Augustin_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409615}}, {"model": "metainfo.source", "pk": 6132, "fields": {"orig_filename": "Rabensteiner_Eduard_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359f.", "author": "", "orig_id": 1409616}}, {"model": "metainfo.source", "pk": 6133, "fields": {"orig_filename": "Rabl_Hans_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 360", "author": "", "orig_id": 1409617}}, {"model": "metainfo.source", "pk": 6134, "fields": {"orig_filename": "Rabl_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 360f.", "author": "", "orig_id": 1409618}}, {"model": "metainfo.source", "pk": 6135, "fields": {"orig_filename": "Rabl_Karl_1787_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361", "author": "", "orig_id": 1409744}}, {"model": "metainfo.source", "pk": 6136, "fields": {"orig_filename": "Rabl_Karl_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361", "author": "", "orig_id": 1409619}}, {"model": "metainfo.source", "pk": 6137, "fields": {"orig_filename": "Rabl_Walter_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361f.", "author": "", "orig_id": 1409620}}, {"model": "metainfo.source", "pk": 6138, "fields": {"orig_filename": "Rab_Vaclav_1804_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358f.", "author": "", "orig_id": 1409612}}, {"model": "metainfo.source", "pk": 6139, "fields": {"orig_filename": "Racchetti_Alessandro_1789_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409621}}, {"model": "metainfo.source", "pk": 6140, "fields": {"orig_filename": "Racchetti_Vincenzo_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409622}}, {"model": "metainfo.source", "pk": 6141, "fields": {"orig_filename": "Racek_Adolf_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409623}}, {"model": "metainfo.source", "pk": 6142, "fields": {"orig_filename": "Rachmann_Wilhelm_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362f.", "author": "", "orig_id": 1409624}}, {"model": "metainfo.source", "pk": 6143, "fields": {"orig_filename": "Raciborski_Aleksander_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 363", "author": "", "orig_id": 1409625}}, {"model": "metainfo.source", "pk": 6144, "fields": {"orig_filename": "Raciborski_Marian_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 363f.", "author": "", "orig_id": 1409626}}, {"model": "metainfo.source", "pk": 6145, "fields": {"orig_filename": "Racic_Josip_1885_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 364", "author": "", "orig_id": 1409627}}, {"model": "metainfo.source", "pk": 6146, "fields": {"orig_filename": "Racki_Franjo_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 364f.", "author": "", "orig_id": 1409628}}, {"model": "metainfo.source", "pk": 6147, "fields": {"orig_filename": "Raczynski_Jan-Rudolf_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 366", "author": "", "orig_id": 1409632}}, {"model": "metainfo.source", "pk": 6148, "fields": {"orig_filename": "Racz_Kalman_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365", "author": "", "orig_id": 1409629}}, {"model": "metainfo.source", "pk": 6149, "fields": {"orig_filename": "Racz_Karoly_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365", "author": "", "orig_id": 1409630}}, {"model": "metainfo.source", "pk": 6150, "fields": {"orig_filename": "Racz_Lajos_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365f.", "author": "", "orig_id": 1409631}}, {"model": "metainfo.source", "pk": 6151, "fields": {"orig_filename": "Radacsi_Gyoergy_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367", "author": "", "orig_id": 1409700}}, {"model": "metainfo.source", "pk": 6152, "fields": {"orig_filename": "Radaelli_Giuseppe_1833_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367", "author": "", "orig_id": 1409701}}, {"model": "metainfo.source", "pk": 6153, "fields": {"orig_filename": "Radakovics_Jozsef_1823_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 368", "author": "", "orig_id": 1409703}}, {"model": "metainfo.source", "pk": 6154, "fields": {"orig_filename": "Raday-Rada_Gedeon_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 368f.", "author": "", "orig_id": 1409704}}, {"model": "metainfo.source", "pk": 6155, "fields": {"orig_filename": "Prochaska_Frantisek-X_1740_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410364}}, {"model": "metainfo.source", "pk": 6156, "fields": {"orig_filename": "Prochaska_Frantisek_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292f.", "author": "", "orig_id": 1410365}}, {"model": "metainfo.source", "pk": 6157, "fields": {"orig_filename": "Prochaska_Frantisek_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 293", "author": "", "orig_id": 1410366}}, {"model": "metainfo.source", "pk": 6158, "fields": {"orig_filename": "Prochaska_Frantisek_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 293f.", "author": "", "orig_id": 1410367}}, {"model": "metainfo.source", "pk": 6159, "fields": {"orig_filename": "Prochaska_Georg_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294", "author": "", "orig_id": 1410368}}, {"model": "metainfo.source", "pk": 6160, "fields": {"orig_filename": "Prochaska_Ignaz-Josef_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294", "author": "", "orig_id": 1409743}}, {"model": "metainfo.source", "pk": 6161, "fields": {"orig_filename": "Prochaska_Josef-Vladimir_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294f.", "author": "", "orig_id": 1410369}}, {"model": "metainfo.source", "pk": 6162, "fields": {"orig_filename": "Prochaska_Julius_1859_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295", "author": "", "orig_id": 1410370}}, {"model": "metainfo.source", "pk": 6163, "fields": {"orig_filename": "Prochaska_Julius_1863_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295", "author": "", "orig_id": 1410371}}, {"model": "metainfo.source", "pk": 6164, "fields": {"orig_filename": "Prochaska_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295f.", "author": "", "orig_id": 1410372}}, {"model": "metainfo.source", "pk": 6165, "fields": {"orig_filename": "Prochaska_Ludevit_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 296", "author": "", "orig_id": 1410443}}, {"model": "metainfo.source", "pk": 6166, "fields": {"orig_filename": "Prochaska_Ottokar_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 296f.", "author": "", "orig_id": 1410444}}, {"model": "metainfo.source", "pk": 6167, "fields": {"orig_filename": "Prochaska_Ottokar_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297", "author": "", "orig_id": 1410445}}, {"model": "metainfo.source", "pk": 6168, "fields": {"orig_filename": "Prochaska_Robert_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297", "author": "", "orig_id": 1410446}}, {"model": "metainfo.source", "pk": 6169, "fields": {"orig_filename": "Prochaska_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297f.", "author": "", "orig_id": 1410447}}, {"model": "metainfo.source", "pk": 6170, "fields": {"orig_filename": "Proch_Heinrich_1809_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 290f.", "author": "", "orig_id": 1410359}}, {"model": "metainfo.source", "pk": 6171, "fields": {"orig_filename": "Prockner_Franz-Kajetan_1783_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298", "author": "", "orig_id": 1410449}}, {"model": "metainfo.source", "pk": 6172, "fields": {"orig_filename": "Procksch_Rudolf_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298f.", "author": "", "orig_id": 1410450}}, {"model": "metainfo.source", "pk": 6173, "fields": {"orig_filename": "Prodan_Ivo_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299", "author": "", "orig_id": 1410451}}, {"model": "metainfo.source", "pk": 6174, "fields": {"orig_filename": "Prodinger_Hans_1887_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299", "author": "", "orig_id": 1410452}}, {"model": "metainfo.source", "pk": 6175, "fields": {"orig_filename": "Prodinger_Karl_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299f.", "author": "", "orig_id": 1410453}}, {"model": "metainfo.source", "pk": 6176, "fields": {"orig_filename": "Proell_Karl_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300", "author": "", "orig_id": 1410454}}, {"model": "metainfo.source", "pk": 6177, "fields": {"orig_filename": "Proell_Laurenz_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300", "author": "", "orig_id": 1410455}}, {"model": "metainfo.source", "pk": 6178, "fields": {"orig_filename": "Profeld_Hubert_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300f.", "author": "", "orig_id": 1410456}}, {"model": "metainfo.source", "pk": 6179, "fields": {"orig_filename": "Prokesch-Osten_Anton_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 301f.", "author": "", "orig_id": 1410457}}, {"model": "metainfo.source", "pk": 6180, "fields": {"orig_filename": "Prokop_August_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302", "author": "", "orig_id": 1410460}}, {"model": "metainfo.source", "pk": 6181, "fields": {"orig_filename": "Prokop_Josef_1898_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302", "author": "", "orig_id": 1410461}}, {"model": "metainfo.source", "pk": 6182, "fields": {"orig_filename": "Prokosch_Anton_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302f.", "author": "", "orig_id": 1410462}}, {"model": "metainfo.source", "pk": 6183, "fields": {"orig_filename": "Prokosch_Eduard_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 303", "author": "", "orig_id": 1410463}}, {"model": "metainfo.source", "pk": 6184, "fields": {"orig_filename": "Proksch_Anton_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 303", "author": "", "orig_id": 1410464}}, {"model": "metainfo.source", "pk": 6185, "fields": {"orig_filename": "Proksch_Johann-Karl_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 303f.", "author": "", "orig_id": 1410465}}, {"model": "metainfo.source", "pk": 6186, "fields": {"orig_filename": "Proksch_Josef_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304", "author": "", "orig_id": 1410466}}, {"model": "metainfo.source", "pk": 6187, "fields": {"orig_filename": "Proksch_Josef_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304", "author": "", "orig_id": 1410535}}, {"model": "metainfo.source", "pk": 6188, "fields": {"orig_filename": "Promberger_Johann_1779_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305", "author": "", "orig_id": 1410537}}, {"model": "metainfo.source", "pk": 6189, "fields": {"orig_filename": "Promberger_Johann_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305", "author": "", "orig_id": 1410538}}, {"model": "metainfo.source", "pk": 6190, "fields": {"orig_filename": "Promber_Adolf_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304f.", "author": "", "orig_id": 1410536}}, {"model": "metainfo.source", "pk": 6191, "fields": {"orig_filename": "Pronay-Totprona-Blatnica_Gabor_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305f.", "author": "", "orig_id": 1410539}}, {"model": "metainfo.source", "pk": 6192, "fields": {"orig_filename": "Proschek_Ignaz_1827_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306", "author": "", "orig_id": 1410540}}, {"model": "metainfo.source", "pk": 6193, "fields": {"orig_filename": "Proschko_Franz-Isidor_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306", "author": "", "orig_id": 1410541}}, {"model": "metainfo.source", "pk": 6194, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Emanuel_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306f.", "author": "", "orig_id": 1410542}}, {"model": "metainfo.source", "pk": 6195, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Emanuel_1849_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 307f.", "author": "", "orig_id": 1410543}}, {"model": "metainfo.source", "pk": 6196, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Maximilian_1851_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308", "author": "", "orig_id": 1410544}}, {"model": "metainfo.source", "pk": 6197, "fields": {"orig_filename": "Prosniz_Adolf_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308", "author": "", "orig_id": 1410545}}, {"model": "metainfo.source", "pk": 6198, "fields": {"orig_filename": "Prost_Josef_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308f.", "author": "", "orig_id": 1410546}}, {"model": "metainfo.source", "pk": 6199, "fields": {"orig_filename": "Provazek-Lanov_Stanislaus_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 309", "author": "", "orig_id": 1410547}}, {"model": "metainfo.source", "pk": 6200, "fields": {"orig_filename": "Provaznik_Anatol_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 309f.", "author": "", "orig_id": 1410548}}, {"model": "metainfo.source", "pk": 6201, "fields": {"orig_filename": "Prucha_Jindrich_1886_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 310", "author": "", "orig_id": 1410549}}, {"model": "metainfo.source", "pk": 6202, "fields": {"orig_filename": "Pruckner_Karoline_1832_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 310", "author": "", "orig_id": 1410550}}, {"model": "metainfo.source", "pk": 6203, "fields": {"orig_filename": "Pruenster_Georg_1774_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410551}}, {"model": "metainfo.source", "pk": 6204, "fields": {"orig_filename": "Pruenster_Johann_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410552}}, {"model": "metainfo.source", "pk": 6205, "fields": {"orig_filename": "Prueschenk-Lindenhoven_Otto_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410553}}, {"model": "metainfo.source", "pk": 6206, "fields": {"orig_filename": "Pruewer_Julius_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311f.", "author": "", "orig_id": 1410554}}, {"model": "metainfo.source", "pk": 6207, "fields": {"orig_filename": "Prugger_Franz-Sales_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312", "author": "", "orig_id": 1410555}}, {"model": "metainfo.source", "pk": 6208, "fields": {"orig_filename": "Prusak_Josef_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312", "author": "", "orig_id": 1410556}}, {"model": "metainfo.source", "pk": 6209, "fields": {"orig_filename": "Prutscher_Otto_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312f.", "author": "", "orig_id": 1410557}}, {"model": "metainfo.source", "pk": 6210, "fields": {"orig_filename": "Pruzsinszky_Pal_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313", "author": "", "orig_id": 1410558}}, {"model": "metainfo.source", "pk": 6211, "fields": {"orig_filename": "Prybila_Karl_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313", "author": "", "orig_id": 1410626}}, {"model": "metainfo.source", "pk": 6212, "fields": {"orig_filename": "Prylinski_Tomasz_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313f.", "author": "", "orig_id": 1410627}}, {"model": "metainfo.source", "pk": 6213, "fields": {"orig_filename": "Przedak-Burgwehr_Karl_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314", "author": "", "orig_id": 1410629}}, {"model": "metainfo.source", "pk": 6214, "fields": {"orig_filename": "Przedak_Aladar-Guido_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314", "author": "", "orig_id": 1410628}}, {"model": "metainfo.source", "pk": 6215, "fields": {"orig_filename": "Przibram-Gladona_Ludwig_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 315", "author": "", "orig_id": 1410631}}, {"model": "metainfo.source", "pk": 6216, "fields": {"orig_filename": "Przibram_Hans-Leo_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314f.", "author": "", "orig_id": 1410630}}, {"model": "metainfo.source", "pk": 6217, "fields": {"orig_filename": "Przybyszewski_Stanislaw_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 315f.", "author": "", "orig_id": 1410632}}, {"model": "metainfo.source", "pk": 6218, "fields": {"orig_filename": "Przychocki_Gustaw-Edward_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 316", "author": "", "orig_id": 1410633}}, {"model": "metainfo.source", "pk": 6219, "fields": {"orig_filename": "Przylecki_Stanislaw_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 316f.", "author": "", "orig_id": 1410634}}, {"model": "metainfo.source", "pk": 6220, "fields": {"orig_filename": "Pschorn_Karl_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317", "author": "", "orig_id": 1410635}}, {"model": "metainfo.source", "pk": 6221, "fields": {"orig_filename": "Psenner_Anton_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317", "author": "", "orig_id": 1410636}}, {"model": "metainfo.source", "pk": 6222, "fields": {"orig_filename": "Psenner_Josef_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317f.", "author": "", "orig_id": 1410637}}, {"model": "metainfo.source", "pk": 6223, "fields": {"orig_filename": "Psenner_Ludwig_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318", "author": "", "orig_id": 1410638}}, {"model": "metainfo.source", "pk": 6224, "fields": {"orig_filename": "Psensky_Felix_1897_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318", "author": "", "orig_id": 1410639}}, {"model": "metainfo.source", "pk": 6225, "fields": {"orig_filename": "Pserhofer_Arthur_1873_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318f.", "author": "", "orig_id": 1410640}}, {"model": "metainfo.source", "pk": 6226, "fields": {"orig_filename": "Pstross_Frantisek-Vaclav_1823_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319", "author": "", "orig_id": 1410641}}, {"model": "metainfo.source", "pk": 6227, "fields": {"orig_filename": "Ptasnik_Jan_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319", "author": "", "orig_id": 1410642}}, {"model": "metainfo.source", "pk": 6228, "fields": {"orig_filename": "Pucelj_Ivan_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 320", "author": "", "orig_id": 1410644}}, {"model": "metainfo.source", "pk": 6229, "fields": {"orig_filename": "Puchalski_Stanislaus_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321", "author": "", "orig_id": 1410646}}, {"model": "metainfo.source", "pk": 6230, "fields": {"orig_filename": "Pucherna_Antonin_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321", "author": "", "orig_id": 1410648}}, {"model": "metainfo.source", "pk": 6231, "fields": {"orig_filename": "Pucherna_Eduard_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321f.", "author": "", "orig_id": 1410649}}, {"model": "metainfo.source", "pk": 6232, "fields": {"orig_filename": "Pucherna_Wilhelm_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322", "author": "", "orig_id": 1410722}}, {"model": "metainfo.source", "pk": 6233, "fields": {"orig_filename": "Puchinger_Erwin_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322", "author": "", "orig_id": 1410723}}, {"model": "metainfo.source", "pk": 6234, "fields": {"orig_filename": "Puchmayr_Franz_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322f.", "author": "", "orig_id": 1410724}}, {"model": "metainfo.source", "pk": 6235, "fields": {"orig_filename": "Puchner_Karl_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323", "author": "", "orig_id": 1410725}}, {"model": "metainfo.source", "pk": 6236, "fields": {"orig_filename": "Puchta_Anton_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323", "author": "", "orig_id": 1410726}}, {"model": "metainfo.source", "pk": 6237, "fields": {"orig_filename": "Puch_Johann_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 320f.", "author": "", "orig_id": 1410645}}, {"model": "metainfo.source", "pk": 6238, "fields": {"orig_filename": "Pucic_Medo_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323f.", "author": "", "orig_id": 1410727}}, {"model": "metainfo.source", "pk": 6239, "fields": {"orig_filename": "Pucic_Niko_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324", "author": "", "orig_id": 1410728}}, {"model": "metainfo.source", "pk": 6240, "fields": {"orig_filename": "Puc_Dinko_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319f.", "author": "", "orig_id": 1410643}}, {"model": "metainfo.source", "pk": 6241, "fields": {"orig_filename": "Puecher-Passavalli_Luigi_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324", "author": "", "orig_id": 1410729}}, {"model": "metainfo.source", "pk": 6242, "fields": {"orig_filename": "Puechler_Benedikt_1797_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324f.", "author": "", "orig_id": 1410730}}, {"model": "metainfo.source", "pk": 6243, "fields": {"orig_filename": "Puellacher_Leopold-Josef_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325", "author": "", "orig_id": 1410731}}, {"model": "metainfo.source", "pk": 6244, "fields": {"orig_filename": "Puempel_Petrus_1772_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325", "author": "", "orig_id": 1410732}}, {"model": "metainfo.source", "pk": 6245, "fields": {"orig_filename": "Puercker-Puerkhain_Vinzenz_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325f.", "author": "", "orig_id": 1410733}}, {"model": "metainfo.source", "pk": 6246, "fields": {"orig_filename": "Puerstinger_Josef_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326", "author": "", "orig_id": 1410734}}, {"model": "metainfo.source", "pk": 6247, "fields": {"orig_filename": "Puerthner_Johann-Karl_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326", "author": "", "orig_id": 1410735}}, {"model": "metainfo.source", "pk": 6248, "fields": {"orig_filename": "Puettner_Josef-Karl-Bartholomaeus_1821_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326f.", "author": "", "orig_id": 1410736}}, {"model": "metainfo.source", "pk": 6249, "fields": {"orig_filename": "Puff_Ferdinand_1809_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327", "author": "", "orig_id": 1410737}}, {"model": "metainfo.source", "pk": 6250, "fields": {"orig_filename": "Puff_Rudolf-Gustav_1808_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327", "author": "", "orig_id": 1410738}}, {"model": "metainfo.source", "pk": 6251, "fields": {"orig_filename": "Pugelj_Milan_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327f.", "author": "", "orig_id": 1410739}}, {"model": "metainfo.source", "pk": 6252, "fields": {"orig_filename": "Puhallo-Brlog_Paul_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 328", "author": "", "orig_id": 1410740}}, {"model": "metainfo.source", "pk": 6253, "fields": {"orig_filename": "Puhar_Janez-Avgustin_1814_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 328f.", "author": "", "orig_id": 1410741}}, {"model": "metainfo.source", "pk": 6254, "fields": {"orig_filename": "Pukanszky_Bela_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410742}}, {"model": "metainfo.source", "pk": 6255, "fields": {"orig_filename": "Puksec_Ema_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410743}}, {"model": "metainfo.source", "pk": 6256, "fields": {"orig_filename": "Puky-Bizak_Akos_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410744}}, {"model": "metainfo.source", "pk": 6257, "fields": {"orig_filename": "Puky-Bizak_Miklos_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410745}}, {"model": "metainfo.source", "pk": 6258, "fields": {"orig_filename": "Preidl-Hassenbrunn_Franz_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 254f.", "author": "", "orig_id": 1409964}}, {"model": "metainfo.source", "pk": 6259, "fields": {"orig_filename": "Preindlsberger-Preindlsperg_Josef_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255", "author": "", "orig_id": 1409966}}, {"model": "metainfo.source", "pk": 6260, "fields": {"orig_filename": "Preindlsberger-Preindlsperg_Milena_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255f.", "author": "", "orig_id": 1409967}}, {"model": "metainfo.source", "pk": 6261, "fields": {"orig_filename": "Preindl_Ferdinand_1881_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2086599}}, {"model": "metainfo.source", "pk": 6262, "fields": {"orig_filename": "Preindl_Josef_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255", "author": "", "orig_id": 1409965}}, {"model": "metainfo.source", "pk": 6263, "fields": {"orig_filename": "Preisegger_Ignaz_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409970}}, {"model": "metainfo.source", "pk": 6264, "fields": {"orig_filename": "Preisinger_Josef_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256f.", "author": "", "orig_id": 1409971}}, {"model": "metainfo.source", "pk": 6265, "fields": {"orig_filename": "Preisler_Jan_1872_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257", "author": "", "orig_id": 1409972}}, {"model": "metainfo.source", "pk": 6266, "fields": {"orig_filename": "Preissig_Vojtech_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258f.", "author": "", "orig_id": 1409976}}, {"model": "metainfo.source", "pk": 6267, "fields": {"orig_filename": "Preissler_Ferdinand_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259", "author": "", "orig_id": 1409978}}, {"model": "metainfo.source", "pk": 6268, "fields": {"orig_filename": "Preissler_Oskar_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259", "author": "", "orig_id": 1409979}}, {"model": "metainfo.source", "pk": 6269, "fields": {"orig_filename": "Preissmann_Ernest_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259f.", "author": "", "orig_id": 1410049}}, {"model": "metainfo.source", "pk": 6270, "fields": {"orig_filename": "Preissova_Gabriela_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 260", "author": "", "orig_id": 1410050}}, {"model": "metainfo.source", "pk": 6271, "fields": {"orig_filename": "Preiss_Balthasar_1765_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257", "author": "", "orig_id": 1409973}}, {"model": "metainfo.source", "pk": 6272, "fields": {"orig_filename": "Preiss_Jaroslav_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257f.", "author": "", "orig_id": 1409974}}, {"model": "metainfo.source", "pk": 6273, "fields": {"orig_filename": "Preiss_Kornelius_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258", "author": "", "orig_id": 1409975}}, {"model": "metainfo.source", "pk": 6274, "fields": {"orig_filename": "Preiss_Rudolf_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258", "author": "", "orig_id": 1409977}}, {"model": "metainfo.source", "pk": 6275, "fields": {"orig_filename": "Preisz_Hugo_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 260f.", "author": "", "orig_id": 1410051}}, {"model": "metainfo.source", "pk": 6276, "fields": {"orig_filename": "Preis_Karel_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409968}}, {"model": "metainfo.source", "pk": 6277, "fields": {"orig_filename": "Preis_Karl_1913_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409969}}, {"model": "metainfo.source", "pk": 6278, "fields": {"orig_filename": "Prejac_Djuro_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261", "author": "", "orig_id": 1410052}}, {"model": "metainfo.source", "pk": 6279, "fields": {"orig_filename": "Preleuthner_Johann_1807_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261", "author": "", "orig_id": 1410053}}, {"model": "metainfo.source", "pk": 6280, "fields": {"orig_filename": "Prelog_Matija_1813_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261f.", "author": "", "orig_id": 1410054}}, {"model": "metainfo.source", "pk": 6281, "fields": {"orig_filename": "Prelog_Milan_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262", "author": "", "orig_id": 1410055}}, {"model": "metainfo.source", "pk": 6282, "fields": {"orig_filename": "Premerstein_Anton_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262f.", "author": "", "orig_id": 1410057}}, {"model": "metainfo.source", "pk": 6283, "fields": {"orig_filename": "Premrou_Josip_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 263", "author": "", "orig_id": 1410058}}, {"model": "metainfo.source", "pk": 6284, "fields": {"orig_filename": "Prem_Simon_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262", "author": "", "orig_id": 1410056}}, {"model": "metainfo.source", "pk": 6285, "fields": {"orig_filename": "Prendel_Viktor-Anton-Franz_1766_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 263f.", "author": "", "orig_id": 1410059}}, {"model": "metainfo.source", "pk": 6286, "fields": {"orig_filename": "Prenninger_Karl_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264", "author": "", "orig_id": 1410060}}, {"model": "metainfo.source", "pk": 6287, "fields": {"orig_filename": "Prepeluh_Albin_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264", "author": "", "orig_id": 1410061}}, {"model": "metainfo.source", "pk": 6288, "fields": {"orig_filename": "Preradovic_Petar_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264f.", "author": "", "orig_id": 1410062}}, {"model": "metainfo.source", "pk": 6289, "fields": {"orig_filename": "Preradovic_Zora_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 265f.", "author": "", "orig_id": 1410063}}, {"model": "metainfo.source", "pk": 6290, "fields": {"orig_filename": "Preseren_France_1800_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 266f.", "author": "", "orig_id": 1410064}}, {"model": "metainfo.source", "pk": 6291, "fields": {"orig_filename": "Presl_Karel-Borivoj_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 267f.", "author": "", "orig_id": 1410066}}, {"model": "metainfo.source", "pk": 6292, "fields": {"orig_filename": "Pressburger_Richard_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410067}}, {"model": "metainfo.source", "pk": 6293, "fields": {"orig_filename": "Pressel_Wilhelm_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410068}}, {"model": "metainfo.source", "pk": 6294, "fields": {"orig_filename": "Presuhn_August_1841_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410069}}, {"model": "metainfo.source", "pk": 6295, "fields": {"orig_filename": "Pretis-Cagnodo_Sisinio_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268f.", "author": "", "orig_id": 1410070}}, {"model": "metainfo.source", "pk": 6296, "fields": {"orig_filename": "Pretsch_Paul_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 269", "author": "", "orig_id": 1410071}}, {"model": "metainfo.source", "pk": 6297, "fields": {"orig_filename": "Prettner_Johann_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 269f.", "author": "", "orig_id": 1410072}}, {"model": "metainfo.source", "pk": 6298, "fields": {"orig_filename": "Prettner_Matej_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410073}}, {"model": "metainfo.source", "pk": 6299, "fields": {"orig_filename": "Pretz-Proetzenberg_Josef_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410149}}, {"model": "metainfo.source", "pk": 6300, "fields": {"orig_filename": "Preussler_Robert_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 271f.", "author": "", "orig_id": 1410153}}, {"model": "metainfo.source", "pk": 6301, "fields": {"orig_filename": "Preuss_Arthur_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270f.", "author": "", "orig_id": 1410151}}, {"model": "metainfo.source", "pk": 6302, "fields": {"orig_filename": "Preuss_Paul_1886_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 271", "author": "", "orig_id": 1410152}}, {"model": "metainfo.source", "pk": 6303, "fields": {"orig_filename": "Preu_Ignaz_1788_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410150}}, {"model": "metainfo.source", "pk": 6304, "fields": {"orig_filename": "Preyer_Gottfried_1807_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 272f.", "author": "", "orig_id": 1410155}}, {"model": "metainfo.source", "pk": 6305, "fields": {"orig_filename": "Preyer_Hermann_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273", "author": "", "orig_id": 1410156}}, {"model": "metainfo.source", "pk": 6306, "fields": {"orig_filename": "Preyer_Johann-Nep_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273", "author": "", "orig_id": 1410157}}, {"model": "metainfo.source", "pk": 6307, "fields": {"orig_filename": "Preysz_Moric_1829_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273f.", "author": "", "orig_id": 1410158}}, {"model": "metainfo.source", "pk": 6308, "fields": {"orig_filename": "Prey_Adalbert_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 272", "author": "", "orig_id": 1410154}}, {"model": "metainfo.source", "pk": 6309, "fields": {"orig_filename": "Pribicevic_Svetozar_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 274", "author": "", "orig_id": 1410160}}, {"model": "metainfo.source", "pk": 6310, "fields": {"orig_filename": "Pribram_Alfred-Francis_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275", "author": "", "orig_id": 1410162}}, {"model": "metainfo.source", "pk": 6311, "fields": {"orig_filename": "Pribram_Alfred_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 274f.", "author": "", "orig_id": 1410161}}, {"model": "metainfo.source", "pk": 6312, "fields": {"orig_filename": "Pribram_Ernst-August_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275", "author": "", "orig_id": 1410163}}, {"model": "metainfo.source", "pk": 6313, "fields": {"orig_filename": "Pribram_Hugo_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275f.", "author": "", "orig_id": 1410164}}, {"model": "metainfo.source", "pk": 6314, "fields": {"orig_filename": "Pribram_Richard_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276", "author": "", "orig_id": 1410165}}, {"model": "metainfo.source", "pk": 6315, "fields": {"orig_filename": "Pribyl_Leo-Eugen_1848_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276", "author": "", "orig_id": 1410166}}, {"model": "metainfo.source", "pk": 6316, "fields": {"orig_filename": "Price_Julius_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276f.", "author": "", "orig_id": 1410167}}, {"model": "metainfo.source", "pk": 6317, "fields": {"orig_filename": "Priebsch_Josef_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277", "author": "", "orig_id": 1410168}}, {"model": "metainfo.source", "pk": 6318, "fields": {"orig_filename": "Priebsch_Robert_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277", "author": "", "orig_id": 1410169}}, {"model": "metainfo.source", "pk": 6319, "fields": {"orig_filename": "Prielle_Kornelia_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277f.", "author": "", "orig_id": 1410170}}, {"model": "metainfo.source", "pk": 6320, "fields": {"orig_filename": "Priessnitz_Vinzenz_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278", "author": "", "orig_id": 1410171}}, {"model": "metainfo.source", "pk": 6321, "fields": {"orig_filename": "Prihoda_Eduard_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278", "author": "", "orig_id": 1410172}}, {"model": "metainfo.source", "pk": 6322, "fields": {"orig_filename": "Prihonsky_Franz_1788_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278f.", "author": "", "orig_id": 1410173}}, {"model": "metainfo.source", "pk": 6323, "fields": {"orig_filename": "Prijatelj_Ivan_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 279", "author": "", "orig_id": 1410248}}, {"model": "metainfo.source", "pk": 6324, "fields": {"orig_filename": "Prikryl_Ondrej_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410249}}, {"model": "metainfo.source", "pk": 6325, "fields": {"orig_filename": "Prill_Karl_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410250}}, {"model": "metainfo.source", "pk": 6326, "fields": {"orig_filename": "Primavesi-Primamonte_Viktor_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280f.", "author": "", "orig_id": 1410252}}, {"model": "metainfo.source", "pk": 6327, "fields": {"orig_filename": "Primavesi_Eduard_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410251}}, {"model": "metainfo.source", "pk": 6328, "fields": {"orig_filename": "Primic_Janez-Nep_1785_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 281", "author": "", "orig_id": 1410253}}, {"model": "metainfo.source", "pk": 6329, "fields": {"orig_filename": "Primisser_Alois_1796_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 281f.", "author": "", "orig_id": 1410254}}, {"model": "metainfo.source", "pk": 6330, "fields": {"orig_filename": "Primisser_Johann-Bapt_1739_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282", "author": "", "orig_id": 1410255}}, {"model": "metainfo.source", "pk": 6331, "fields": {"orig_filename": "Prina_Luigi_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282", "author": "", "orig_id": 1410256}}, {"model": "metainfo.source", "pk": 6332, "fields": {"orig_filename": "Princip_Gavrilo_1894_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282f.", "author": "", "orig_id": 1410257}}, {"model": "metainfo.source", "pk": 6333, "fields": {"orig_filename": "Prinzhofer_August_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410262}}, {"model": "metainfo.source", "pk": 6334, "fields": {"orig_filename": "Prinzinger_August_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284f.", "author": "", "orig_id": 1410263}}, {"model": "metainfo.source", "pk": 6335, "fields": {"orig_filename": "Prinzinger_August_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285", "author": "", "orig_id": 1410264}}, {"model": "metainfo.source", "pk": 6336, "fields": {"orig_filename": "Prinzinger_Heinrich_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285", "author": "", "orig_id": 1410265}}, {"model": "metainfo.source", "pk": 6337, "fields": {"orig_filename": "Prinz_Franz_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 283", "author": "", "orig_id": 1410258}}, {"model": "metainfo.source", "pk": 6338, "fields": {"orig_filename": "Prinz_Karl-Ludwig_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410260}}, {"model": "metainfo.source", "pk": 6339, "fields": {"orig_filename": "Prinz_Karl_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 283f.", "author": "", "orig_id": 1410259}}, {"model": "metainfo.source", "pk": 6340, "fields": {"orig_filename": "Prinz_Moriz_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410261}}, {"model": "metainfo.source", "pk": 6341, "fields": {"orig_filename": "Prisching_Franz_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285f.", "author": "", "orig_id": 1410266}}, {"model": "metainfo.source", "pk": 6342, "fields": {"orig_filename": "Pritz_Franz-X_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 286", "author": "", "orig_id": 1410267}}, {"model": "metainfo.source", "pk": 6343, "fields": {"orig_filename": "Privoznik_Eduard_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 286f.", "author": "", "orig_id": 1410268}}, {"model": "metainfo.source", "pk": 6344, "fields": {"orig_filename": "Prix_Johann-Nep_1836_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410269}}, {"model": "metainfo.source", "pk": 6345, "fields": {"orig_filename": "Probizer_Guido_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410271}}, {"model": "metainfo.source", "pk": 6346, "fields": {"orig_filename": "Proboscht_Josef-Wenzel_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410272}}, {"model": "metainfo.source", "pk": 6347, "fields": {"orig_filename": "Probstner-Neulublau-Jakubjan_Andreas-Julius_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410356}}, {"model": "metainfo.source", "pk": 6348, "fields": {"orig_filename": "Probstner-Neulublau-Jakubjan_Arthur-Napoleon_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289f.", "author": "", "orig_id": 1410357}}, {"model": "metainfo.source", "pk": 6349, "fields": {"orig_filename": "Probst_Jakob_1791_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287f.", "author": "", "orig_id": 1410350}}, {"model": "metainfo.source", "pk": 6350, "fields": {"orig_filename": "Probst_Johann-Eugen_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 288", "author": "", "orig_id": 1410352}}, {"model": "metainfo.source", "pk": 6351, "fields": {"orig_filename": "Probst_Johann-Nep_1756_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 288", "author": "", "orig_id": 1410351}}, {"model": "metainfo.source", "pk": 6352, "fields": {"orig_filename": "Probst_Josef-Benedikt_1773_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410354}}, {"model": "metainfo.source", "pk": 6353, "fields": {"orig_filename": "Probst_Josef_1808_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410353}}, {"model": "metainfo.source", "pk": 6354, "fields": {"orig_filename": "Probst_Karl_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410355}}, {"model": "metainfo.source", "pk": 6355, "fields": {"orig_filename": "Probszt-Ohstorff_Emil_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 290", "author": "", "orig_id": 1410358}}, {"model": "metainfo.source", "pk": 6356, "fields": {"orig_filename": "Prochaska-Muehlkampf_Alois_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298", "author": "", "orig_id": 1410448}}, {"model": "metainfo.source", "pk": 6357, "fields": {"orig_filename": "Prochaska_Antonin_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 291f.", "author": "", "orig_id": 1410361}}, {"model": "metainfo.source", "pk": 6358, "fields": {"orig_filename": "Prochaska_Antoni_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 291", "author": "", "orig_id": 1410360}}, {"model": "metainfo.source", "pk": 6359, "fields": {"orig_filename": "Prochaska_Arnost_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410362}}, {"model": "metainfo.source", "pk": 6360, "fields": {"orig_filename": "Prochaska_Emil_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410363}}, {"model": "metainfo.source", "pk": 6361, "fields": {"orig_filename": "Posch_Alois_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216", "author": "", "orig_id": 1409500}}, {"model": "metainfo.source", "pk": 6362, "fields": {"orig_filename": "Posch_Andreas_1770_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216", "author": "", "orig_id": 1409501}}, {"model": "metainfo.source", "pk": 6363, "fields": {"orig_filename": "Posch_Eduard-Roman_1856_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216f.", "author": "", "orig_id": 1409502}}, {"model": "metainfo.source", "pk": 6364, "fields": {"orig_filename": "Posch_Josef_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 217", "author": "", "orig_id": 1409503}}, {"model": "metainfo.source", "pk": 6365, "fields": {"orig_filename": "Posch_Leonhard_1750_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 217f.", "author": "", "orig_id": 1409504}}, {"model": "metainfo.source", "pk": 6366, "fields": {"orig_filename": "Posch_Marie_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409505}}, {"model": "metainfo.source", "pk": 6367, "fields": {"orig_filename": "Posch_Rudolf_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409506}}, {"model": "metainfo.source", "pk": 6368, "fields": {"orig_filename": "Posener_Johann-Paul_1793_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219", "author": "", "orig_id": 1409509}}, {"model": "metainfo.source", "pk": 6369, "fields": {"orig_filename": "Posepny_Franz_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219", "author": "", "orig_id": 1409510}}, {"model": "metainfo.source", "pk": 6370, "fields": {"orig_filename": "Posewitz_Samuel_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219f.", "author": "", "orig_id": 1409511}}, {"model": "metainfo.source", "pk": 6371, "fields": {"orig_filename": "Posewitz_Theodor_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409512}}, {"model": "metainfo.source", "pk": 6372, "fields": {"orig_filename": "Posilovic_Josip-Juraj_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409513}}, {"model": "metainfo.source", "pk": 6373, "fields": {"orig_filename": "Posonyi_Alexander_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409587}}, {"model": "metainfo.source", "pk": 6374, "fields": {"orig_filename": "Pospichal_Eduard-Ludvik_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220f.", "author": "", "orig_id": 1409588}}, {"model": "metainfo.source", "pk": 6375, "fields": {"orig_filename": "Pospisil_Josef_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409590}}, {"model": "metainfo.source", "pk": 6376, "fields": {"orig_filename": "Pospisil_Kristian-Eduard_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409591}}, {"model": "metainfo.source", "pk": 6377, "fields": {"orig_filename": "Pospisil_Vilem_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409592}}, {"model": "metainfo.source", "pk": 6378, "fields": {"orig_filename": "Possanner-Ehrenthal_Bruno_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221f.", "author": "", "orig_id": 1409593}}, {"model": "metainfo.source", "pk": 6379, "fields": {"orig_filename": "Possanner-Ehrenthal_Ernst_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409594}}, {"model": "metainfo.source", "pk": 6380, "fields": {"orig_filename": "Possanner-Ehrenthal_Gabriele_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409595}}, {"model": "metainfo.source", "pk": 6381, "fields": {"orig_filename": "Posselt-Csorich_Anton_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 223", "author": "", "orig_id": 1409598}}, {"model": "metainfo.source", "pk": 6382, "fields": {"orig_filename": "Posselt_Adolf-Heinrich_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409596}}, {"model": "metainfo.source", "pk": 6383, "fields": {"orig_filename": "Posselt_Kajetan_1809_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222f.", "author": "", "orig_id": 1409597}}, {"model": "metainfo.source", "pk": 6384, "fields": {"orig_filename": "Possinger-Choborski_Ludwig_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 223f.", "author": "", "orig_id": 1409599}}, {"model": "metainfo.source", "pk": 6385, "fields": {"orig_filename": "Posta_Bela_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409600}}, {"model": "metainfo.source", "pk": 6386, "fields": {"orig_filename": "Postelt_Alois_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409601}}, {"model": "metainfo.source", "pk": 6387, "fields": {"orig_filename": "Postinger_Carlo-Teodoro_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409602}}, {"model": "metainfo.source", "pk": 6388, "fields": {"orig_filename": "Postl_Karel_1769_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224f.", "author": "", "orig_id": 1409603}}, {"model": "metainfo.source", "pk": 6389, "fields": {"orig_filename": "Postl_Karl_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 225f.", "author": "", "orig_id": 1409604}}, {"model": "metainfo.source", "pk": 6390, "fields": {"orig_filename": "Postolka_August_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 226", "author": "", "orig_id": 1409605}}, {"model": "metainfo.source", "pk": 6391, "fields": {"orig_filename": "Potier-Echelles_Rudolf_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 226f.", "author": "", "orig_id": 1409606}}, {"model": "metainfo.source", "pk": 6392, "fields": {"orig_filename": "Potiorek_Oskar_1853_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 227", "author": "", "orig_id": 1409607}}, {"model": "metainfo.source", "pk": 6393, "fields": {"orig_filename": "Potkanski_Jan-Nep-Karol_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 227f.", "author": "", "orig_id": 1409608}}, {"model": "metainfo.source", "pk": 6394, "fields": {"orig_filename": "Potlis_Michael_1812_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 228", "author": "", "orig_id": 1409609}}, {"model": "metainfo.source", "pk": 6395, "fields": {"orig_filename": "Potocka_Katarzyna_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 228f.", "author": "", "orig_id": 1409678}}, {"model": "metainfo.source", "pk": 6396, "fields": {"orig_filename": "Potocka_Zofia_1790_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229", "author": "", "orig_id": 1409679}}, {"model": "metainfo.source", "pk": 6397, "fields": {"orig_filename": "Potocki_Adam_1822_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229", "author": "", "orig_id": 1409680}}, {"model": "metainfo.source", "pk": 6398, "fields": {"orig_filename": "Potocki_Alfred_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229f.", "author": "", "orig_id": 1409681}}, {"model": "metainfo.source", "pk": 6399, "fields": {"orig_filename": "Potocki_Alfred_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 230", "author": "", "orig_id": 1409682}}, {"model": "metainfo.source", "pk": 6400, "fields": {"orig_filename": "Potocki_Andrzej_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 230f.", "author": "", "orig_id": 1409683}}, {"model": "metainfo.source", "pk": 6401, "fields": {"orig_filename": "Potocki_Artur-Stanislaw_1787_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231", "author": "", "orig_id": 1409685}}, {"model": "metainfo.source", "pk": 6402, "fields": {"orig_filename": "Potocki_Artur_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231", "author": "", "orig_id": 1409684}}, {"model": "metainfo.source", "pk": 6403, "fields": {"orig_filename": "Potocnik_Blaz_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231f.", "author": "", "orig_id": 1409686}}, {"model": "metainfo.source", "pk": 6404, "fields": {"orig_filename": "Potocnik_Hermann_1892_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232", "author": "", "orig_id": 1409687}}, {"model": "metainfo.source", "pk": 6405, "fields": {"orig_filename": "Potocnik_Janez_1749_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232", "author": "", "orig_id": 1409688}}, {"model": "metainfo.source", "pk": 6406, "fields": {"orig_filename": "Potocnjak_Franko_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232f.", "author": "", "orig_id": 1409689}}, {"model": "metainfo.source", "pk": 6407, "fields": {"orig_filename": "Potoczek_Jan_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233", "author": "", "orig_id": 1409690}}, {"model": "metainfo.source", "pk": 6408, "fields": {"orig_filename": "Potoczek_Stanislaw_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233", "author": "", "orig_id": 1409691}}, {"model": "metainfo.source", "pk": 6409, "fields": {"orig_filename": "Potpeschnigg_Heinrich_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233f.", "author": "", "orig_id": 1409692}}, {"model": "metainfo.source", "pk": 6410, "fields": {"orig_filename": "Pottenburg_Nikolaus_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409695}}, {"model": "metainfo.source", "pk": 6411, "fields": {"orig_filename": "Pott_August_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409693}}, {"model": "metainfo.source", "pk": 6412, "fields": {"orig_filename": "Pott_Emil_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409694}}, {"model": "metainfo.source", "pk": 6413, "fields": {"orig_filename": "Potyka_Hugo_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235", "author": "", "orig_id": 1409696}}, {"model": "metainfo.source", "pk": 6414, "fields": {"orig_filename": "Povoden_Simon_1753_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235", "author": "", "orig_id": 1409697}}, {"model": "metainfo.source", "pk": 6415, "fields": {"orig_filename": "Povse_Franc_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235f.", "author": "", "orig_id": 1409698}}, {"model": "metainfo.source", "pk": 6416, "fields": {"orig_filename": "Powidaj_Ludwik_1830_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409699}}, {"model": "metainfo.source", "pk": 6417, "fields": {"orig_filename": "Pozdech_Josef_1811_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409773}}, {"model": "metainfo.source", "pk": 6418, "fields": {"orig_filename": "Pozzi_Giovanni_1769_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409774}}, {"model": "metainfo.source", "pk": 6419, "fields": {"orig_filename": "Pracher_Franz_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409775}}, {"model": "metainfo.source", "pk": 6420, "fields": {"orig_filename": "Prachner_Vaclav_1784_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236f.", "author": "", "orig_id": 1409776}}, {"model": "metainfo.source", "pk": 6421, "fields": {"orig_filename": "Prade_Heinrich_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 237", "author": "", "orig_id": 1409777}}, {"model": "metainfo.source", "pk": 6422, "fields": {"orig_filename": "Praeuscher_Hermann_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 237f.", "author": "", "orig_id": 1409778}}, {"model": "metainfo.source", "pk": 6423, "fields": {"orig_filename": "Prager_Albert_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409779}}, {"model": "metainfo.source", "pk": 6424, "fields": {"orig_filename": "Prager_Olga_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409780}}, {"model": "metainfo.source", "pk": 6425, "fields": {"orig_filename": "Prandstetter_Ignaz_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409781}}, {"model": "metainfo.source", "pk": 6426, "fields": {"orig_filename": "Prantl_Jakob-Isidor_1772_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409782}}, {"model": "metainfo.source", "pk": 6427, "fields": {"orig_filename": "Prantl_Therese_1839_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239", "author": "", "orig_id": 1409783}}, {"model": "metainfo.source", "pk": 6428, "fields": {"orig_filename": "Prantner_Ferdinand_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239", "author": "", "orig_id": 1409784}}, {"model": "metainfo.source", "pk": 6429, "fields": {"orig_filename": "Praprotnik_Andrej_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239f.", "author": "", "orig_id": 1409785}}, {"model": "metainfo.source", "pk": 6430, "fields": {"orig_filename": "Praprotnik_Franc_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240", "author": "", "orig_id": 1409786}}, {"model": "metainfo.source", "pk": 6431, "fields": {"orig_filename": "Praschniker_Kamillo_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 241f.", "author": "", "orig_id": 1409789}}, {"model": "metainfo.source", "pk": 6432, "fields": {"orig_filename": "Prasch_Adolf_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240", "author": "", "orig_id": 1409787}}, {"model": "metainfo.source", "pk": 6433, "fields": {"orig_filename": "Prasch_Alois_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240f.", "author": "", "orig_id": 1409788}}, {"model": "metainfo.source", "pk": 6434, "fields": {"orig_filename": "Prasek_Justin-V_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242", "author": "", "orig_id": 1409790}}, {"model": "metainfo.source", "pk": 6435, "fields": {"orig_filename": "Prasek_Karel_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242", "author": "", "orig_id": 1409791}}, {"model": "metainfo.source", "pk": 6436, "fields": {"orig_filename": "Prasek_Vincenc_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242f.", "author": "", "orig_id": 1409792}}, {"model": "metainfo.source", "pk": 6437, "fields": {"orig_filename": "Prasil_Wilhelm-Wenzel_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 243", "author": "", "orig_id": 1409793}}, {"model": "metainfo.source", "pk": 6438, "fields": {"orig_filename": "Prasnikar_Alois_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 243f.", "author": "", "orig_id": 1409794}}, {"model": "metainfo.source", "pk": 6439, "fields": {"orig_filename": "Prati_Eugenio_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 244", "author": "", "orig_id": 1409865}}, {"model": "metainfo.source", "pk": 6440, "fields": {"orig_filename": "Prati_Giovanni_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 244f.", "author": "", "orig_id": 1409866}}, {"model": "metainfo.source", "pk": 6441, "fields": {"orig_filename": "Prati_Romualdo_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 245", "author": "", "orig_id": 1409867}}, {"model": "metainfo.source", "pk": 6442, "fields": {"orig_filename": "Pratobevera-Wiesborn_Adolf_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246f.", "author": "", "orig_id": 1409871}}, {"model": "metainfo.source", "pk": 6443, "fields": {"orig_filename": "Pratobevera-Wiesborn_Karl-Josef_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247", "author": "", "orig_id": 1409872}}, {"model": "metainfo.source", "pk": 6444, "fields": {"orig_filename": "Pratobevera_Eduard_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246", "author": "", "orig_id": 1409869}}, {"model": "metainfo.source", "pk": 6445, "fields": {"orig_filename": "Pratobevera_Katharina_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246", "author": "", "orig_id": 1409870}}, {"model": "metainfo.source", "pk": 6446, "fields": {"orig_filename": "Prato_Giovanni_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 245f.", "author": "", "orig_id": 1409868}}, {"model": "metainfo.source", "pk": 6447, "fields": {"orig_filename": "Prattes_Markus_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247", "author": "", "orig_id": 1409873}}, {"model": "metainfo.source", "pk": 6448, "fields": {"orig_filename": "Prausnitz_Wilhelm_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248", "author": "", "orig_id": 1409876}}, {"model": "metainfo.source", "pk": 6449, "fields": {"orig_filename": "Praus_Josip_1829_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247f.", "author": "", "orig_id": 1409874}}, {"model": "metainfo.source", "pk": 6450, "fields": {"orig_filename": "Prawdik-Maehrau_Franz_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248", "author": "", "orig_id": 1409877}}, {"model": "metainfo.source", "pk": 6451, "fields": {"orig_filename": "Praxmarer_Josef_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248f.", "author": "", "orig_id": 1409878}}, {"model": "metainfo.source", "pk": 6452, "fields": {"orig_filename": "Prazakova_Klara_1891_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250", "author": "", "orig_id": 1409882}}, {"model": "metainfo.source", "pk": 6453, "fields": {"orig_filename": "Prazak_Alois_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 249", "author": "", "orig_id": 1409879}}, {"model": "metainfo.source", "pk": 6454, "fields": {"orig_filename": "Prazak_Jiri_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 249f.", "author": "", "orig_id": 1409880}}, {"model": "metainfo.source", "pk": 6455, "fields": {"orig_filename": "Prazak_Ottokar_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250", "author": "", "orig_id": 1409881}}, {"model": "metainfo.source", "pk": 6456, "fields": {"orig_filename": "Prazmowski_Adam_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250f.", "author": "", "orig_id": 1409883}}, {"model": "metainfo.source", "pk": 6457, "fields": {"orig_filename": "Prazner_Marian_1746_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251", "author": "", "orig_id": 1409884}}, {"model": "metainfo.source", "pk": 6458, "fields": {"orig_filename": "Precan_Leopold_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251", "author": "", "orig_id": 1409885}}, {"model": "metainfo.source", "pk": 6459, "fields": {"orig_filename": "Prechtler_Johann-Otto_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 252f.", "author": "", "orig_id": 1409959}}, {"model": "metainfo.source", "pk": 6460, "fields": {"orig_filename": "Prechtl_Johann-Josef_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251f.", "author": "", "orig_id": 1409958}}, {"model": "metainfo.source", "pk": 6461, "fields": {"orig_filename": "Predelli_Riccardo_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253", "author": "", "orig_id": 1409960}}, {"model": "metainfo.source", "pk": 6462, "fields": {"orig_filename": "Preen_Hugo_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253", "author": "", "orig_id": 1409961}}, {"model": "metainfo.source", "pk": 6463, "fields": {"orig_filename": "Pregant_Johann_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253f.", "author": "", "orig_id": 1409962}}, {"model": "metainfo.source", "pk": 6464, "fields": {"orig_filename": "Pregl_Fritz_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 254", "author": "", "orig_id": 1409963}}, {"model": "metainfo.source", "pk": 6465, "fields": {"orig_filename": "Poller_Kaspar_1783_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410625}}, {"model": "metainfo.source", "pk": 6466, "fields": {"orig_filename": "Poller_Magdalena_1786_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 183", "author": "", "orig_id": 1410696}}, {"model": "metainfo.source", "pk": 6467, "fields": {"orig_filename": "Pollet_Johann_1814_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 183", "author": "", "orig_id": 1410697}}, {"model": "metainfo.source", "pk": 6468, "fields": {"orig_filename": "Polley_Karl_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410698}}, {"model": "metainfo.source", "pk": 6469, "fields": {"orig_filename": "Pollhammer_Josef_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410699}}, {"model": "metainfo.source", "pk": 6470, "fields": {"orig_filename": "Polliack_Giovanni_1903_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410704}}, {"model": "metainfo.source", "pk": 6471, "fields": {"orig_filename": "Pollini_Ciro_1782_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185f.", "author": "", "orig_id": 1410705}}, {"model": "metainfo.source", "pk": 6472, "fields": {"orig_filename": "Pollini_Franz_1762_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410706}}, {"model": "metainfo.source", "pk": 6473, "fields": {"orig_filename": "Pollitzer_Adolf_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410707}}, {"model": "metainfo.source", "pk": 6474, "fields": {"orig_filename": "Polli_Carlo_1894_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410700}}, {"model": "metainfo.source", "pk": 6475, "fields": {"orig_filename": "Polli_Edoardo_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184f.", "author": "", "orig_id": 1410701}}, {"model": "metainfo.source", "pk": 6476, "fields": {"orig_filename": "Polli_Giorgio_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410702}}, {"model": "metainfo.source", "pk": 6477, "fields": {"orig_filename": "Polli_Giovanni_1826_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410703}}, {"model": "metainfo.source", "pk": 6478, "fields": {"orig_filename": "Polonyi_Geza_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410708}}, {"model": "metainfo.source", "pk": 6479, "fields": {"orig_filename": "Polsterer_Adalbert-Johann_1798_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410709}}, {"model": "metainfo.source", "pk": 6480, "fields": {"orig_filename": "Polsterer_Rudolf_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410710}}, {"model": "metainfo.source", "pk": 6481, "fields": {"orig_filename": "Polt_Johann-Josef_1775_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410711}}, {"model": "metainfo.source", "pk": 6482, "fields": {"orig_filename": "Polya_Jakab_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187f.", "author": "", "orig_id": 1410712}}, {"model": "metainfo.source", "pk": 6483, "fields": {"orig_filename": "Polya_Jozsef_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188", "author": "", "orig_id": 1410713}}, {"model": "metainfo.source", "pk": 6484, "fields": {"orig_filename": "Polzelli_Alois-Anton_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188", "author": "", "orig_id": 1410714}}, {"model": "metainfo.source", "pk": 6485, "fields": {"orig_filename": "Polzelli_Luigia_1760_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188f.", "author": "", "orig_id": 1410715}}, {"model": "metainfo.source", "pk": 6486, "fields": {"orig_filename": "Polzer-Hoditz-Wolframitz_Arthur_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189", "author": "", "orig_id": 1410717}}, {"model": "metainfo.source", "pk": 6487, "fields": {"orig_filename": "Polzer_Aurelius_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189", "author": "", "orig_id": 1410716}}, {"model": "metainfo.source", "pk": 6488, "fields": {"orig_filename": "Pomeranz_Caesar_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189f.", "author": "", "orig_id": 1410718}}, {"model": "metainfo.source", "pk": 6489, "fields": {"orig_filename": "Pomiankowski_Josef_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190", "author": "", "orig_id": 1410719}}, {"model": "metainfo.source", "pk": 6490, "fields": {"orig_filename": "Pommer_Gustav-Adolf_1851_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190", "author": "", "orig_id": 1410720}}, {"model": "metainfo.source", "pk": 6491, "fields": {"orig_filename": "Pommer_Josef_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190f.", "author": "", "orig_id": 1410721}}, {"model": "metainfo.source", "pk": 6492, "fields": {"orig_filename": "Pompery_Janos_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191", "author": "", "orig_id": 1410795}}, {"model": "metainfo.source", "pk": 6493, "fields": {"orig_filename": "Pomutiu_George_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191", "author": "", "orig_id": 1410796}}, {"model": "metainfo.source", "pk": 6494, "fields": {"orig_filename": "Ponchielli_Amilcare_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191f.", "author": "", "orig_id": 1410797}}, {"model": "metainfo.source", "pk": 6495, "fields": {"orig_filename": "Ponebsek_Janko_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410798}}, {"model": "metainfo.source", "pk": 6496, "fields": {"orig_filename": "Pongracz-Szent-Miklos-Ovar_Arthur_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410799}}, {"model": "metainfo.source", "pk": 6497, "fields": {"orig_filename": "Pongratz_Josef_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410800}}, {"model": "metainfo.source", "pk": 6498, "fields": {"orig_filename": "Pongratz_Karl_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410801}}, {"model": "metainfo.source", "pk": 6499, "fields": {"orig_filename": "Ponheimer_Kilian_1757_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410802}}, {"model": "metainfo.source", "pk": 6500, "fields": {"orig_filename": "Pontini_Friedrich_1874_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410803}}, {"model": "metainfo.source", "pk": 6501, "fields": {"orig_filename": "Pontz-Engelshofen_Kandidus_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193f.", "author": "", "orig_id": 1410804}}, {"model": "metainfo.source", "pk": 6502, "fields": {"orig_filename": "Pop-Martian_Dionisie_1829_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194", "author": "", "orig_id": 1410806}}, {"model": "metainfo.source", "pk": 6503, "fields": {"orig_filename": "Poparic_Bare_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194f.", "author": "", "orig_id": 1410807}}, {"model": "metainfo.source", "pk": 6504, "fields": {"orig_filename": "Popea_Nicolae_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410808}}, {"model": "metainfo.source", "pk": 6505, "fields": {"orig_filename": "Popelka_Augustin_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410809}}, {"model": "metainfo.source", "pk": 6506, "fields": {"orig_filename": "Popelka_Rudolf_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410810}}, {"model": "metainfo.source", "pk": 6507, "fields": {"orig_filename": "Popeller_Johann_1816_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195f.", "author": "", "orig_id": 1410811}}, {"model": "metainfo.source", "pk": 6508, "fields": {"orig_filename": "Popescu_Ioan_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410812}}, {"model": "metainfo.source", "pk": 6509, "fields": {"orig_filename": "Popescu_Nicolae_1835_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410813}}, {"model": "metainfo.source", "pk": 6510, "fields": {"orig_filename": "Popielski_Leon_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197", "author": "", "orig_id": 1410882}}, {"model": "metainfo.source", "pk": 6511, "fields": {"orig_filename": "Popiel_Jan_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410815}}, {"model": "metainfo.source", "pk": 6512, "fields": {"orig_filename": "Popiel_Pawel_1807_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196f.", "author": "", "orig_id": 1410814}}, {"model": "metainfo.source", "pk": 6513, "fields": {"orig_filename": "Popovici-Barcianu_Daniil_1847_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199", "author": "", "orig_id": 1410889}}, {"model": "metainfo.source", "pk": 6514, "fields": {"orig_filename": "Popovici-Barcianu_Sava_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199f.", "author": "", "orig_id": 1410890}}, {"model": "metainfo.source", "pk": 6515, "fields": {"orig_filename": "Popovici_Aurel-Constantin_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198f.", "author": "", "orig_id": 1410887}}, {"model": "metainfo.source", "pk": 6516, "fields": {"orig_filename": "Popovici_Gheorghe_1863_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199", "author": "", "orig_id": 1410888}}, {"model": "metainfo.source", "pk": 6517, "fields": {"orig_filename": "Popovics_Sandor_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 200", "author": "", "orig_id": 1410891}}, {"model": "metainfo.source", "pk": 6518, "fields": {"orig_filename": "Popovic_Aca_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197", "author": "", "orig_id": 1410883}}, {"model": "metainfo.source", "pk": 6519, "fields": {"orig_filename": "Popovic_Jovan-Sterija_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197f.", "author": "", "orig_id": 1410884}}, {"model": "metainfo.source", "pk": 6520, "fields": {"orig_filename": "Popovic_Mita_1841_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198", "author": "", "orig_id": 1410885}}, {"model": "metainfo.source", "pk": 6521, "fields": {"orig_filename": "Popovic_Stevan_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198", "author": "", "orig_id": 1410886}}, {"model": "metainfo.source", "pk": 6522, "fields": {"orig_filename": "Popper-Podhragy_Leopold_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410904}}, {"model": "metainfo.source", "pk": 6523, "fields": {"orig_filename": "Popper_David_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 204", "author": "", "orig_id": 1410900}}, {"model": "metainfo.source", "pk": 6524, "fields": {"orig_filename": "Popper_Josef_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 205", "author": "", "orig_id": 1410901}}, {"model": "metainfo.source", "pk": 6525, "fields": {"orig_filename": "Popper_Siegfried_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 205f.", "author": "", "orig_id": 1410902}}, {"model": "metainfo.source", "pk": 6526, "fields": {"orig_filename": "Popper_Wilhelm_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410903}}, {"model": "metainfo.source", "pk": 6527, "fields": {"orig_filename": "Poppinger_Karl_1902_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410980}}, {"model": "metainfo.source", "pk": 6528, "fields": {"orig_filename": "Popp_Adelheid_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 200f.", "author": "", "orig_id": 1410892}}, {"model": "metainfo.source", "pk": 6529, "fields": {"orig_filename": "Popp_Arnost-Bruno_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 201", "author": "", "orig_id": 1410893}}, {"model": "metainfo.source", "pk": 6530, "fields": {"orig_filename": "Popp_Augustin_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 201f.", "author": "", "orig_id": 1410894}}, {"model": "metainfo.source", "pk": 6531, "fields": {"orig_filename": "Popp_Julius_1849_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 202", "author": "", "orig_id": 1410895}}, {"model": "metainfo.source", "pk": 6532, "fields": {"orig_filename": "Popp_Leonidas_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 202f.", "author": "", "orig_id": 1410896}}, {"model": "metainfo.source", "pk": 6533, "fields": {"orig_filename": "Popp_Mihai_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203", "author": "", "orig_id": 1410897}}, {"model": "metainfo.source", "pk": 6534, "fields": {"orig_filename": "Popp_Vasile_1789_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203", "author": "", "orig_id": 1410898}}, {"model": "metainfo.source", "pk": 6535, "fields": {"orig_filename": "Popp_Wilhelm_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203f.", "author": "", "orig_id": 1410899}}, {"model": "metainfo.source", "pk": 6536, "fields": {"orig_filename": "Pop_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194", "author": "", "orig_id": 1410805}}, {"model": "metainfo.source", "pk": 6537, "fields": {"orig_filename": "Porak-Varna_Ernst_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 207", "author": "", "orig_id": 1410982}}, {"model": "metainfo.source", "pk": 6538, "fields": {"orig_filename": "Porcia_Franz_1753_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 207", "author": "", "orig_id": 1410983}}, {"model": "metainfo.source", "pk": 6539, "fields": {"orig_filename": "Porcius_Florian_1816_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410984}}, {"model": "metainfo.source", "pk": 6540, "fields": {"orig_filename": "Pordes_Friedrich_1890_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410985}}, {"model": "metainfo.source", "pk": 6541, "fields": {"orig_filename": "Porges-Portheim_Eduard_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410990}}, {"model": "metainfo.source", "pk": 6542, "fields": {"orig_filename": "Porges-Portheim_Juda-Leopold_1785_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410991}}, {"model": "metainfo.source", "pk": 6543, "fields": {"orig_filename": "Porges-Portheim_Max_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209f.", "author": "", "orig_id": 1410992}}, {"model": "metainfo.source", "pk": 6544, "fields": {"orig_filename": "Porges-Portheim_Moses_1781_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210", "author": "", "orig_id": 1410993}}, {"model": "metainfo.source", "pk": 6545, "fields": {"orig_filename": "Porges_Edmund_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410986}}, {"model": "metainfo.source", "pk": 6546, "fields": {"orig_filename": "Porges_Heinrich_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208f.", "author": "", "orig_id": 1410987}}, {"model": "metainfo.source", "pk": 6547, "fields": {"orig_filename": "Porges_Nathan_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410988}}, {"model": "metainfo.source", "pk": 6548, "fields": {"orig_filename": "Porges_Philipp_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410989}}, {"model": "metainfo.source", "pk": 6549, "fields": {"orig_filename": "Porro-Lambertenghi_Giulio_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211", "author": "", "orig_id": 1410996}}, {"model": "metainfo.source", "pk": 6550, "fields": {"orig_filename": "Porro_Edoardo_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210f.", "author": "", "orig_id": 1410995}}, {"model": "metainfo.source", "pk": 6551, "fields": {"orig_filename": "Porr_Arthur_1872_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210", "author": "", "orig_id": 1410994}}, {"model": "metainfo.source", "pk": 6552, "fields": {"orig_filename": "Porsch_Josef_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211", "author": "", "orig_id": 1410997}}, {"model": "metainfo.source", "pk": 6553, "fields": {"orig_filename": "Porta_Carlo_1775_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211f.", "author": "", "orig_id": 1410998}}, {"model": "metainfo.source", "pk": 6554, "fields": {"orig_filename": "Porta_Luigi_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 212", "author": "", "orig_id": 1410999}}, {"model": "metainfo.source", "pk": 6555, "fields": {"orig_filename": "Porta_Pietro_1832_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 212f.", "author": "", "orig_id": 1411000}}, {"model": "metainfo.source", "pk": 6556, "fields": {"orig_filename": "Portele_Karl_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213", "author": "", "orig_id": 1411001}}, {"model": "metainfo.source", "pk": 6557, "fields": {"orig_filename": "Portenschlag-Ledermayer_Franz_1772_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213", "author": "", "orig_id": 1411002}}, {"model": "metainfo.source", "pk": 6558, "fields": {"orig_filename": "Porth_Wenzel_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213f.", "author": "", "orig_id": 1409491}}, {"model": "metainfo.source", "pk": 6559, "fields": {"orig_filename": "Portugall_Ferdinand_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214", "author": "", "orig_id": 1409492}}, {"model": "metainfo.source", "pk": 6560, "fields": {"orig_filename": "Porubsky_Josef_1811_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214", "author": "", "orig_id": 1409493}}, {"model": "metainfo.source", "pk": 6561, "fields": {"orig_filename": "Porumbescu_Ciprian_1853_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214f.", "author": "", "orig_id": 1409494}}, {"model": "metainfo.source", "pk": 6562, "fields": {"orig_filename": "Porumbescu_Iraclie_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409495}}, {"model": "metainfo.source", "pk": 6563, "fields": {"orig_filename": "Porzer_Josef_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409496}}, {"model": "metainfo.source", "pk": 6564, "fields": {"orig_filename": "Porzsolt_Kalman_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409497}}, {"model": "metainfo.source", "pk": 6565, "fields": {"orig_filename": "Por_Antal_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206f.", "author": "", "orig_id": 1410981}}, {"model": "metainfo.source", "pk": 6566, "fields": {"orig_filename": "Posa_Lajos_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215f.", "author": "", "orig_id": 1409498}}, {"model": "metainfo.source", "pk": 6567, "fields": {"orig_filename": "Poschacher-Arelshoeh_Johann-Wilhelm_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218f.", "author": "", "orig_id": 1409508}}, {"model": "metainfo.source", "pk": 6568, "fields": {"orig_filename": "Poschacher_Anton_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409507}}, {"model": "metainfo.source", "pk": 6569, "fields": {"orig_filename": "Poettickh-Pettenegg_Eduard-Gaston_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 148f.", "author": "", "orig_id": 1410236}}, {"model": "metainfo.source", "pk": 6570, "fields": {"orig_filename": "Poetting-Persing_Gustav_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410237}}, {"model": "metainfo.source", "pk": 6571, "fields": {"orig_filename": "Poetting-Persing_Karl_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410238}}, {"model": "metainfo.source", "pk": 6572, "fields": {"orig_filename": "Poetzelberger_Robert_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410239}}, {"model": "metainfo.source", "pk": 6573, "fields": {"orig_filename": "Poetzl_Eduard_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149f.", "author": "", "orig_id": 1410240}}, {"model": "metainfo.source", "pk": 6574, "fields": {"orig_filename": "Pogacar_Janez-Zlatoust_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150", "author": "", "orig_id": 1410241}}, {"model": "metainfo.source", "pk": 6575, "fields": {"orig_filename": "Pogacnik_Franz_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150", "author": "", "orig_id": 1410243}}, {"model": "metainfo.source", "pk": 6576, "fields": {"orig_filename": "Pogacnik_Jozef_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150f.", "author": "", "orig_id": 1410242}}, {"model": "metainfo.source", "pk": 6577, "fields": {"orig_filename": "Pogatscher_Alois_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151", "author": "", "orig_id": 1410244}}, {"model": "metainfo.source", "pk": 6578, "fields": {"orig_filename": "Pogatscher_Heinrich_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151", "author": "", "orig_id": 1410245}}, {"model": "metainfo.source", "pk": 6579, "fields": {"orig_filename": "Pogatscher_Rudolf_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151f.", "author": "", "orig_id": 1410246}}, {"model": "metainfo.source", "pk": 6580, "fields": {"orig_filename": "Pogatschnig_Valentin_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410247}}, {"model": "metainfo.source", "pk": 6581, "fields": {"orig_filename": "Poggi_Cesare_1802_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410324}}, {"model": "metainfo.source", "pk": 6582, "fields": {"orig_filename": "Pogna_Giovanni_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410325}}, {"model": "metainfo.source", "pk": 6583, "fields": {"orig_filename": "Pogna_Giuseppe_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410326}}, {"model": "metainfo.source", "pk": 6584, "fields": {"orig_filename": "Pogranyi-Nagy_Geza_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153", "author": "", "orig_id": 1410327}}, {"model": "metainfo.source", "pk": 6585, "fields": {"orig_filename": "Pohl-Meiser_Viktoria_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 157", "author": "", "orig_id": 1410339}}, {"model": "metainfo.source", "pk": 6586, "fields": {"orig_filename": "Pohler_Amand_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 157f.", "author": "", "orig_id": 1410340}}, {"model": "metainfo.source", "pk": 6587, "fields": {"orig_filename": "Pohlig_Johannes_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410341}}, {"model": "metainfo.source", "pk": 6588, "fields": {"orig_filename": "Pohlig_Karl_1858_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410342}}, {"model": "metainfo.source", "pk": 6589, "fields": {"orig_filename": "Pohl_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153", "author": "", "orig_id": 1410328}}, {"model": "metainfo.source", "pk": 6590, "fields": {"orig_filename": "Pohl_Johann-Emanuel_1782_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154", "author": "", "orig_id": 1410330}}, {"model": "metainfo.source", "pk": 6591, "fields": {"orig_filename": "Pohl_Johann-Franz_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154", "author": "", "orig_id": 1410331}}, {"model": "metainfo.source", "pk": 6592, "fields": {"orig_filename": "Pohl_Johann_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153f.", "author": "", "orig_id": 1410329}}, {"model": "metainfo.source", "pk": 6593, "fields": {"orig_filename": "Pohl_Josef_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154f.", "author": "", "orig_id": 1410332}}, {"model": "metainfo.source", "pk": 6594, "fields": {"orig_filename": "Pohl_Julius_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155", "author": "", "orig_id": 1410333}}, {"model": "metainfo.source", "pk": 6595, "fields": {"orig_filename": "Pohl_Karl-Ferdinand_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155", "author": "", "orig_id": 1410334}}, {"model": "metainfo.source", "pk": 6596, "fields": {"orig_filename": "Pohl_Max_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155f.", "author": "", "orig_id": 1410335}}, {"model": "metainfo.source", "pk": 6597, "fields": {"orig_filename": "Pohl_Robert_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 156", "author": "", "orig_id": 1410336}}, {"model": "metainfo.source", "pk": 6598, "fields": {"orig_filename": "Pohl_Wenzel_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 156f.", "author": "", "orig_id": 1410337}}, {"model": "metainfo.source", "pk": 6599, "fields": {"orig_filename": "Pohnert_Karl_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410343}}, {"model": "metainfo.source", "pk": 6600, "fields": {"orig_filename": "Pojatzi_Florian_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158f.", "author": "", "orig_id": 1410344}}, {"model": "metainfo.source", "pk": 6601, "fields": {"orig_filename": "Poklukar_Josip_1837_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159", "author": "", "orig_id": 1410345}}, {"model": "metainfo.source", "pk": 6602, "fields": {"orig_filename": "Pokoly_Jozsef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159", "author": "", "orig_id": 1410346}}, {"model": "metainfo.source", "pk": 6603, "fields": {"orig_filename": "Pokorny-Fuerstenschild_Alois_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410428}}, {"model": "metainfo.source", "pk": 6604, "fields": {"orig_filename": "Pokorny_Adalbert_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160", "author": "", "orig_id": 1410348}}, {"model": "metainfo.source", "pk": 6605, "fields": {"orig_filename": "Pokorny_Alois_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160f.", "author": "", "orig_id": 1410420}}, {"model": "metainfo.source", "pk": 6606, "fields": {"orig_filename": "Pokorny_Emanuel_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 161", "author": "", "orig_id": 1410421}}, {"model": "metainfo.source", "pk": 6607, "fields": {"orig_filename": "Pokorny_Franz_1797_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 161f.", "author": "", "orig_id": 1410422}}, {"model": "metainfo.source", "pk": 6608, "fields": {"orig_filename": "Pokorny_Johann_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162", "author": "", "orig_id": 1410423}}, {"model": "metainfo.source", "pk": 6609, "fields": {"orig_filename": "Pokorny_Josef-Vaclav_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162", "author": "", "orig_id": 1410424}}, {"model": "metainfo.source", "pk": 6610, "fields": {"orig_filename": "Pokorny_Rudolf_1853_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162f.", "author": "", "orig_id": 1410425}}, {"model": "metainfo.source", "pk": 6611, "fields": {"orig_filename": "Pokorny_Rudolf_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410426}}, {"model": "metainfo.source", "pk": 6612, "fields": {"orig_filename": "Pokorny_Wilhelm_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410427}}, {"model": "metainfo.source", "pk": 6613, "fields": {"orig_filename": "Pokorn_Franc_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159f.", "author": "", "orig_id": 1410347}}, {"model": "metainfo.source", "pk": 6614, "fields": {"orig_filename": "Pokutynski_Filip_1829_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163f.", "author": "", "orig_id": 1410429}}, {"model": "metainfo.source", "pk": 6615, "fields": {"orig_filename": "Pokutynski_Jozef_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 164", "author": "", "orig_id": 1410430}}, {"model": "metainfo.source", "pk": 6616, "fields": {"orig_filename": "Pol-Pollenburg_Wincenty_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 164f.", "author": "", "orig_id": 1410431}}, {"model": "metainfo.source", "pk": 6617, "fields": {"orig_filename": "Polacco_Luigi_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165", "author": "", "orig_id": 1410432}}, {"model": "metainfo.source", "pk": 6618, "fields": {"orig_filename": "Polacek_Karel_1892_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165", "author": "", "orig_id": 1410433}}, {"model": "metainfo.source", "pk": 6619, "fields": {"orig_filename": "Polaczek_Stanislaw-Karol_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165f.", "author": "", "orig_id": 1410434}}, {"model": "metainfo.source", "pk": 6620, "fields": {"orig_filename": "Polaczkowna_Helena_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410435}}, {"model": "metainfo.source", "pk": 6621, "fields": {"orig_filename": "Polak-Klumberg_Alexander_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410527}}, {"model": "metainfo.source", "pk": 6622, "fields": {"orig_filename": "Polak-Parnau_Bernhard_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410528}}, {"model": "metainfo.source", "pk": 6623, "fields": {"orig_filename": "Polak-Parnegg_Leopold_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410529}}, {"model": "metainfo.source", "pk": 6624, "fields": {"orig_filename": "Polak-Rudin_Adolf_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174f.", "author": "", "orig_id": 1410530}}, {"model": "metainfo.source", "pk": 6625, "fields": {"orig_filename": "Polak_Antal_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410436}}, {"model": "metainfo.source", "pk": 6626, "fields": {"orig_filename": "Polak_Chaim_1834_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410437}}, {"model": "metainfo.source", "pk": 6627, "fields": {"orig_filename": "Polak_David-Rudolf_1814_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166f.", "author": "", "orig_id": 1410438}}, {"model": "metainfo.source", "pk": 6628, "fields": {"orig_filename": "Polak_Ernst_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 167", "author": "", "orig_id": 1410439}}, {"model": "metainfo.source", "pk": 6629, "fields": {"orig_filename": "Polak_Ferdinande_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 167f.", "author": "", "orig_id": 1410440}}, {"model": "metainfo.source", "pk": 6630, "fields": {"orig_filename": "Polak_Friedrich_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 168", "author": "", "orig_id": 1410441}}, {"model": "metainfo.source", "pk": 6631, "fields": {"orig_filename": "Polak_Gustav_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 168f.", "author": "", "orig_id": 1410442}}, {"model": "metainfo.source", "pk": 6632, "fields": {"orig_filename": "Polak_Heinrich_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 169", "author": "", "orig_id": 1410511}}, {"model": "metainfo.source", "pk": 6633, "fields": {"orig_filename": "Polak_Irma_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 169f.", "author": "", "orig_id": 1410512}}, {"model": "metainfo.source", "pk": 6634, "fields": {"orig_filename": "Polak_Jacques_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410513}}, {"model": "metainfo.source", "pk": 6635, "fields": {"orig_filename": "Polak_Jakob-Eduard_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410514}}, {"model": "metainfo.source", "pk": 6636, "fields": {"orig_filename": "Polak_Joachim_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410515}}, {"model": "metainfo.source", "pk": 6637, "fields": {"orig_filename": "Polak_Josef_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410516}}, {"model": "metainfo.source", "pk": 6638, "fields": {"orig_filename": "Polak_Julius_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410517}}, {"model": "metainfo.source", "pk": 6639, "fields": {"orig_filename": "Polak_Lazar_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410518}}, {"model": "metainfo.source", "pk": 6640, "fields": {"orig_filename": "Polak_Leo_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410519}}, {"model": "metainfo.source", "pk": 6641, "fields": {"orig_filename": "Polak_Mihaly_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410520}}, {"model": "metainfo.source", "pk": 6642, "fields": {"orig_filename": "Polak_Miksa_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410521}}, {"model": "metainfo.source", "pk": 6643, "fields": {"orig_filename": "Polak_Otto_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410522}}, {"model": "metainfo.source", "pk": 6644, "fields": {"orig_filename": "Polak_Rudolf_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172f.", "author": "", "orig_id": 1410523}}, {"model": "metainfo.source", "pk": 6645, "fields": {"orig_filename": "Polak_Viljem_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173", "author": "", "orig_id": 1410524}}, {"model": "metainfo.source", "pk": 6646, "fields": {"orig_filename": "Polak_Vinzenz_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173", "author": "", "orig_id": 1410525}}, {"model": "metainfo.source", "pk": 6647, "fields": {"orig_filename": "Polak_Wilhelm-Johann_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173f.", "author": "", "orig_id": 1410526}}, {"model": "metainfo.source", "pk": 6648, "fields": {"orig_filename": "Polansky_Stanislaus_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 175", "author": "", "orig_id": 1410531}}, {"model": "metainfo.source", "pk": 6649, "fields": {"orig_filename": "Polek_Johann_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 175f.", "author": "", "orig_id": 1410532}}, {"model": "metainfo.source", "pk": 6650, "fields": {"orig_filename": "Polesini_Gian-Paolo_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410533}}, {"model": "metainfo.source", "pk": 6651, "fields": {"orig_filename": "Polic-Kamov_Janko_1886_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410607}}, {"model": "metainfo.source", "pk": 6652, "fields": {"orig_filename": "Polic_Martin_1850_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176f.", "author": "", "orig_id": 1410606}}, {"model": "metainfo.source", "pk": 6653, "fields": {"orig_filename": "Polikeit_Karl_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410608}}, {"model": "metainfo.source", "pk": 6654, "fields": {"orig_filename": "Polit-Desancic_Mihailo_1833_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410609}}, {"model": "metainfo.source", "pk": 6655, "fields": {"orig_filename": "Politeo_Dinko_1854_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178", "author": "", "orig_id": 1410610}}, {"model": "metainfo.source", "pk": 6656, "fields": {"orig_filename": "Politeo_Giorgio_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178", "author": "", "orig_id": 1410611}}, {"model": "metainfo.source", "pk": 6657, "fields": {"orig_filename": "Politi_Odorico_1785_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178f.", "author": "", "orig_id": 1410612}}, {"model": "metainfo.source", "pk": 6658, "fields": {"orig_filename": "Politzer-Csapo_Zsigmond_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180", "author": "", "orig_id": 1410615}}, {"model": "metainfo.source", "pk": 6659, "fields": {"orig_filename": "Politzer_Adam_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 179", "author": "", "orig_id": 1410613}}, {"model": "metainfo.source", "pk": 6660, "fields": {"orig_filename": "Politzer_Leopold-Maximilian_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 179f.", "author": "", "orig_id": 1410614}}, {"model": "metainfo.source", "pk": 6661, "fields": {"orig_filename": "Polivka_Jiri_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180", "author": "", "orig_id": 1410616}}, {"model": "metainfo.source", "pk": 6662, "fields": {"orig_filename": "Polivka_Vladimir_1896_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180f.", "author": "", "orig_id": 1410617}}, {"model": "metainfo.source", "pk": 6663, "fields": {"orig_filename": "Poli_Baldassarre_1795_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410534}}, {"model": "metainfo.source", "pk": 6664, "fields": {"orig_filename": "Poljak_Izidor_1883_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410618}}, {"model": "metainfo.source", "pk": 6665, "fields": {"orig_filename": "Poljanec_Ljudmila_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181f.", "author": "", "orig_id": 1410620}}, {"model": "metainfo.source", "pk": 6666, "fields": {"orig_filename": "Poljanec_Vinko_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410621}}, {"model": "metainfo.source", "pk": 6667, "fields": {"orig_filename": "Polka_Anna_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410622}}, {"model": "metainfo.source", "pk": 6668, "fields": {"orig_filename": "Pollanetz_Josef_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410623}}, {"model": "metainfo.source", "pk": 6669, "fields": {"orig_filename": "Poller_Alfons_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182f.", "author": "", "orig_id": 1410624}}, {"model": "metainfo.source", "pk": 6670, "fields": {"orig_filename": "Plank_Josef_1815_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115f.", "author": "", "orig_id": 1409840}}, {"model": "metainfo.source", "pk": 6671, "fields": {"orig_filename": "Planner-Plann_Julius_1827_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409842}}, {"model": "metainfo.source", "pk": 6672, "fields": {"orig_filename": "Plantan_Ivan_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409843}}, {"model": "metainfo.source", "pk": 6673, "fields": {"orig_filename": "Plappart-Frauenberg_Joachim-Friedrich_1753_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116f.", "author": "", "orig_id": 1409844}}, {"model": "metainfo.source", "pk": 6674, "fields": {"orig_filename": "Plappart-Leenheer_Anton_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409845}}, {"model": "metainfo.source", "pk": 6675, "fields": {"orig_filename": "Plappart-Leenheer_August_1836_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409846}}, {"model": "metainfo.source", "pk": 6676, "fields": {"orig_filename": "Plaschkes_Leopold_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409847}}, {"model": "metainfo.source", "pk": 6677, "fields": {"orig_filename": "Plaseller_Josef_1812_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117f.", "author": "", "orig_id": 1409848}}, {"model": "metainfo.source", "pk": 6678, "fields": {"orig_filename": "Plass_Karl_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409849}}, {"model": "metainfo.source", "pk": 6679, "fields": {"orig_filename": "Plattensteiner_Christian_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409851}}, {"model": "metainfo.source", "pk": 6680, "fields": {"orig_filename": "Platter_Julius_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409852}}, {"model": "metainfo.source", "pk": 6681, "fields": {"orig_filename": "Platte_August_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409850}}, {"model": "metainfo.source", "pk": 6682, "fields": {"orig_filename": "Plattner_Albert_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409853}}, {"model": "metainfo.source", "pk": 6683, "fields": {"orig_filename": "Plattner_Christian_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409854}}, {"model": "metainfo.source", "pk": 6684, "fields": {"orig_filename": "Plattner_Franz_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409855}}, {"model": "metainfo.source", "pk": 6685, "fields": {"orig_filename": "Plattner_Johann_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119f.", "author": "", "orig_id": 1409856}}, {"model": "metainfo.source", "pk": 6686, "fields": {"orig_filename": "Platzer_Ignac-Michael_1757_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409858}}, {"model": "metainfo.source", "pk": 6687, "fields": {"orig_filename": "Platzer_Robert_1831_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409859}}, {"model": "metainfo.source", "pk": 6688, "fields": {"orig_filename": "Plauert_Arno_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409860}}, {"model": "metainfo.source", "pk": 6689, "fields": {"orig_filename": "Plechacek_Aloisia_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121", "author": "", "orig_id": 1409862}}, {"model": "metainfo.source", "pk": 6690, "fields": {"orig_filename": "Plech_Johann_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120f.", "author": "", "orig_id": 1409861}}, {"model": "metainfo.source", "pk": 6691, "fields": {"orig_filename": "Plecnik_Janez_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121", "author": "", "orig_id": 1409863}}, {"model": "metainfo.source", "pk": 6692, "fields": {"orig_filename": "Pleischl_Adolf-Martin_1787_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121f.", "author": "", "orig_id": 1409864}}, {"model": "metainfo.source", "pk": 6693, "fields": {"orig_filename": "Plemel_Valentin_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122", "author": "", "orig_id": 1409935}}, {"model": "metainfo.source", "pk": 6694, "fields": {"orig_filename": "Plenciz_Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122", "author": "", "orig_id": 1409937}}, {"model": "metainfo.source", "pk": 6695, "fields": {"orig_filename": "Plener_Ernst_1841_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122f.", "author": "", "orig_id": 1409938}}, {"model": "metainfo.source", "pk": 6696, "fields": {"orig_filename": "Plener_Ignaz_1810_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123", "author": "", "orig_id": 1409939}}, {"model": "metainfo.source", "pk": 6697, "fields": {"orig_filename": "Plenker_Theodor_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123", "author": "", "orig_id": 1409940}}, {"model": "metainfo.source", "pk": 6698, "fields": {"orig_filename": "Plentzner-Scharneck_Gustav_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123f.", "author": "", "orig_id": 1409941}}, {"model": "metainfo.source", "pk": 6699, "fields": {"orig_filename": "Pleschner-Eichstett_Eduard_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409943}}, {"model": "metainfo.source", "pk": 6700, "fields": {"orig_filename": "Pleschner_Hans-Gallus_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409942}}, {"model": "metainfo.source", "pk": 6701, "fields": {"orig_filename": "Plesser_Alois_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124f.", "author": "", "orig_id": 1409945}}, {"model": "metainfo.source", "pk": 6702, "fields": {"orig_filename": "Plessing_Rudolf_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409946}}, {"model": "metainfo.source", "pk": 6703, "fields": {"orig_filename": "Pless_Franz_1819_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409944}}, {"model": "metainfo.source", "pk": 6704, "fields": {"orig_filename": "Plestenjak_Jan_1899_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409947}}, {"model": "metainfo.source", "pk": 6705, "fields": {"orig_filename": "Pletersnik_Maks_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409948}}, {"model": "metainfo.source", "pk": 6706, "fields": {"orig_filename": "Pletz_Josef_1788_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125f.", "author": "", "orig_id": 1409949}}, {"model": "metainfo.source", "pk": 6707, "fields": {"orig_filename": "Pleyel_Ignaz-Josef_1757_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 126", "author": "", "orig_id": 1409950}}, {"model": "metainfo.source", "pk": 6708, "fields": {"orig_filename": "Pleyer_Kleophas_1898_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 126f.", "author": "", "orig_id": 1409951}}, {"model": "metainfo.source", "pk": 6709, "fields": {"orig_filename": "Plichta_Soma_1832_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 127", "author": "", "orig_id": 1409952}}, {"model": "metainfo.source", "pk": 6710, "fields": {"orig_filename": "Pliveric_Josip_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 127", "author": "", "orig_id": 1409953}}, {"model": "metainfo.source", "pk": 6711, "fields": {"orig_filename": "Ploechl_Josef_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409954}}, {"model": "metainfo.source", "pk": 6712, "fields": {"orig_filename": "Ploehn_Robert_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409955}}, {"model": "metainfo.source", "pk": 6713, "fields": {"orig_filename": "Ploessl_Simon_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409956}}, {"model": "metainfo.source", "pk": 6714, "fields": {"orig_filename": "Ploj_Miroslav_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128f.", "author": "", "orig_id": 1409957}}, {"model": "metainfo.source", "pk": 6715, "fields": {"orig_filename": "Ploner_Innozenz_1865_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410026}}, {"model": "metainfo.source", "pk": 6716, "fields": {"orig_filename": "Ploner_Josef_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410027}}, {"model": "metainfo.source", "pk": 6717, "fields": {"orig_filename": "Plosz_Pal_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410028}}, {"model": "metainfo.source", "pk": 6718, "fields": {"orig_filename": "Plosz_Sandor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129f.", "author": "", "orig_id": 1410029}}, {"model": "metainfo.source", "pk": 6719, "fields": {"orig_filename": "Pluhar_Ladislav_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410030}}, {"model": "metainfo.source", "pk": 6720, "fields": {"orig_filename": "Pluskal_Frantisek_1811_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410031}}, {"model": "metainfo.source", "pk": 6721, "fields": {"orig_filename": "Poche_Adolf_1811_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410032}}, {"model": "metainfo.source", "pk": 6722, "fields": {"orig_filename": "Pockstaller_Pirmin_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131f.", "author": "", "orig_id": 1410036}}, {"model": "metainfo.source", "pk": 6723, "fields": {"orig_filename": "Pock_Alexander_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130f.", "author": "", "orig_id": 1410033}}, {"model": "metainfo.source", "pk": 6724, "fields": {"orig_filename": "Pock_Friedrich_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131", "author": "", "orig_id": 1410034}}, {"model": "metainfo.source", "pk": 6725, "fields": {"orig_filename": "Pock_Julius_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131", "author": "", "orig_id": 1410035}}, {"model": "metainfo.source", "pk": 6726, "fields": {"orig_filename": "Pocta_Filip_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410037}}, {"model": "metainfo.source", "pk": 6727, "fields": {"orig_filename": "Podaubsky_Eugen_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410038}}, {"model": "metainfo.source", "pk": 6728, "fields": {"orig_filename": "Podhajsky_Alois_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410040}}, {"model": "metainfo.source", "pk": 6729, "fields": {"orig_filename": "Podhajsky_Vincenc_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132f.", "author": "", "orig_id": 1410041}}, {"model": "metainfo.source", "pk": 6730, "fields": {"orig_filename": "Podhorsky_Katharina_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133", "author": "", "orig_id": 1410042}}, {"model": "metainfo.source", "pk": 6731, "fields": {"orig_filename": "Podhradsky_Josef_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133", "author": "", "orig_id": 1410043}}, {"model": "metainfo.source", "pk": 6732, "fields": {"orig_filename": "Podhradsky_Josef_1823_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133f.", "author": "", "orig_id": 1410044}}, {"model": "metainfo.source", "pk": 6733, "fields": {"orig_filename": "Podkonitzky_Adam_1750_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 134", "author": "", "orig_id": 1410045}}, {"model": "metainfo.source", "pk": 6734, "fields": {"orig_filename": "Podlaha_Antonin_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 134f.", "author": "", "orig_id": 1410046}}, {"model": "metainfo.source", "pk": 6735, "fields": {"orig_filename": "Podlewski_Walerian_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135", "author": "", "orig_id": 1410047}}, {"model": "metainfo.source", "pk": 6736, "fields": {"orig_filename": "Podlipny_Jan_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135", "author": "", "orig_id": 1410048}}, {"model": "metainfo.source", "pk": 6737, "fields": {"orig_filename": "Podlipska_Sofie_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135f.", "author": "", "orig_id": 1410126}}, {"model": "metainfo.source", "pk": 6738, "fields": {"orig_filename": "Podlipsky_Josef_1816_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 136", "author": "", "orig_id": 1410127}}, {"model": "metainfo.source", "pk": 6739, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Frigyes_1824_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 136f.", "author": "", "orig_id": 1410128}}, {"model": "metainfo.source", "pk": 6740, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Geza_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410129}}, {"model": "metainfo.source", "pk": 6741, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Jozsef_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410130}}, {"model": "metainfo.source", "pk": 6742, "fields": {"orig_filename": "Podraczky_Josef_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410131}}, {"model": "metainfo.source", "pk": 6743, "fields": {"orig_filename": "Poech_Franz-Josef_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137f.", "author": "", "orig_id": 1410132}}, {"model": "metainfo.source", "pk": 6744, "fields": {"orig_filename": "Poech_Rudolf_1870_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 138f.", "author": "", "orig_id": 1410133}}, {"model": "metainfo.source", "pk": 6745, "fields": {"orig_filename": "Poeck_Friedrich_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 139", "author": "", "orig_id": 1410134}}, {"model": "metainfo.source", "pk": 6746, "fields": {"orig_filename": "Poeck_Gregor_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 139f.", "author": "", "orig_id": 1410135}}, {"model": "metainfo.source", "pk": 6747, "fields": {"orig_filename": "Poeder_Franz_1779_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140", "author": "", "orig_id": 1410136}}, {"model": "metainfo.source", "pk": 6748, "fields": {"orig_filename": "Poehacker_Leopold_1782_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140", "author": "", "orig_id": 1410137}}, {"model": "metainfo.source", "pk": 6749, "fields": {"orig_filename": "Poehnl_Hans_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140f.", "author": "", "orig_id": 1410138}}, {"model": "metainfo.source", "pk": 6750, "fields": {"orig_filename": "Poelleritzer_Leopold_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410141}}, {"model": "metainfo.source", "pk": 6751, "fields": {"orig_filename": "Poellnitz_Ernst_1813_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410142}}, {"model": "metainfo.source", "pk": 6752, "fields": {"orig_filename": "Poell_Alfred_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410139}}, {"model": "metainfo.source", "pk": 6753, "fields": {"orig_filename": "Poell_Josef_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410140}}, {"model": "metainfo.source", "pk": 6754, "fields": {"orig_filename": "Poelt-Poeltenberg_Ernst_1807_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410144}}, {"model": "metainfo.source", "pk": 6755, "fields": {"orig_filename": "Poelt_Klara_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410143}}, {"model": "metainfo.source", "pk": 6756, "fields": {"orig_filename": "Poelzer_Amalie_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410145}}, {"model": "metainfo.source", "pk": 6757, "fields": {"orig_filename": "Poelzer_Johann_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143", "author": "", "orig_id": 1410146}}, {"model": "metainfo.source", "pk": 6758, "fields": {"orig_filename": "Poelzl_Franz-Xaver_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143", "author": "", "orig_id": 1410147}}, {"model": "metainfo.source", "pk": 6759, "fields": {"orig_filename": "Poenninger_Franz_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143f.", "author": "", "orig_id": 1410148}}, {"model": "metainfo.source", "pk": 6760, "fields": {"orig_filename": "Poenninger_Laurenz_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410222}}, {"model": "metainfo.source", "pk": 6761, "fields": {"orig_filename": "Poerner_Josef_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410223}}, {"model": "metainfo.source", "pk": 6762, "fields": {"orig_filename": "Poeschl_Alexander_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410224}}, {"model": "metainfo.source", "pk": 6763, "fields": {"orig_filename": "Poeschl_Josef_1794_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144f.", "author": "", "orig_id": 1410225}}, {"model": "metainfo.source", "pk": 6764, "fields": {"orig_filename": "Poeschl_Rudolf_1852_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145", "author": "", "orig_id": 1410226}}, {"model": "metainfo.source", "pk": 6765, "fields": {"orig_filename": "Poeschl_Viktor_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145", "author": "", "orig_id": 1410227}}, {"model": "metainfo.source", "pk": 6766, "fields": {"orig_filename": "Poesinger_Bernhard_1877_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145f.", "author": "", "orig_id": 1410228}}, {"model": "metainfo.source", "pk": 6767, "fields": {"orig_filename": "Poesinger_Rudolf_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410229}}, {"model": "metainfo.source", "pk": 6768, "fields": {"orig_filename": "Poessinger_Franz-Alexander_1767_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410230}}, {"model": "metainfo.source", "pk": 6769, "fields": {"orig_filename": "Poessl_Wilhelm_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410231}}, {"model": "metainfo.source", "pk": 6770, "fields": {"orig_filename": "Poestion_Josef-Calasanz_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 147", "author": "", "orig_id": 1410233}}, {"model": "metainfo.source", "pk": 6771, "fields": {"orig_filename": "Poestion_Josef_1741_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146f.", "author": "", "orig_id": 1410232}}, {"model": "metainfo.source", "pk": 6772, "fields": {"orig_filename": "Poetsch_Ignaz-Sigismund_1823_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 148", "author": "", "orig_id": 1410235}}, {"model": "metainfo.source", "pk": 6773, "fields": {"orig_filename": "Poetsch_Ignaz_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 147f.", "author": "", "orig_id": 1410234}}, {"model": "metainfo.source", "pk": 6774, "fields": {"orig_filename": "Pinkas_Ladislav_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410793}}, {"model": "metainfo.source", "pk": 6775, "fields": {"orig_filename": "Pinkas_Sobeslav-Hippolyt_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410794}}, {"model": "metainfo.source", "pk": 6776, "fields": {"orig_filename": "Pino-Friedenthal_Arthur-Georg_1843_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410860}}, {"model": "metainfo.source", "pk": 6777, "fields": {"orig_filename": "Pino-Friedenthal_Felix-Maria_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84f.", "author": "", "orig_id": 1410861}}, {"model": "metainfo.source", "pk": 6778, "fields": {"orig_filename": "Pinsker_Simcha_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 85f.", "author": "", "orig_id": 1410863}}, {"model": "metainfo.source", "pk": 6779, "fields": {"orig_filename": "Pins_Emil_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 85", "author": "", "orig_id": 1410862}}, {"model": "metainfo.source", "pk": 6780, "fields": {"orig_filename": "Pintaric_Fortunat_1798_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410866}}, {"model": "metainfo.source", "pk": 6781, "fields": {"orig_filename": "Pintar_Lovro_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410864}}, {"model": "metainfo.source", "pk": 6782, "fields": {"orig_filename": "Pintar_Luka_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410865}}, {"model": "metainfo.source", "pk": 6783, "fields": {"orig_filename": "Pintner_Theodor_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86f.", "author": "", "orig_id": 1410867}}, {"model": "metainfo.source", "pk": 6784, "fields": {"orig_filename": "Piotrowski_Gustaw_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87", "author": "", "orig_id": 1410868}}, {"model": "metainfo.source", "pk": 6785, "fields": {"orig_filename": "Piotrowski_Gustaw_1863_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87", "author": "", "orig_id": 1410869}}, {"model": "metainfo.source", "pk": 6786, "fields": {"orig_filename": "Pipitz_Franz_1815_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87f.", "author": "", "orig_id": 1410870}}, {"model": "metainfo.source", "pk": 6787, "fields": {"orig_filename": "Pipitz_Josef_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 88", "author": "", "orig_id": 1410871}}, {"model": "metainfo.source", "pk": 6788, "fields": {"orig_filename": "Pippich_Karel_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 88f.", "author": "", "orig_id": 1410872}}, {"model": "metainfo.source", "pk": 6789, "fields": {"orig_filename": "Pippich_Karl_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410873}}, {"model": "metainfo.source", "pk": 6790, "fields": {"orig_filename": "Pirchala_Emerich_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410877}}, {"model": "metainfo.source", "pk": 6791, "fields": {"orig_filename": "Pirchan_Emil_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410878}}, {"model": "metainfo.source", "pk": 6792, "fields": {"orig_filename": "Pirchegger_Anton_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410879}}, {"model": "metainfo.source", "pk": 6793, "fields": {"orig_filename": "Pirchegger_Simon_1889_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90f.", "author": "", "orig_id": 1410880}}, {"model": "metainfo.source", "pk": 6794, "fields": {"orig_filename": "Pirchl_Johann-Rudolf_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 91", "author": "", "orig_id": 1410881}}, {"model": "metainfo.source", "pk": 6795, "fields": {"orig_filename": "Pirckmayer_Friedrich_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 91f.", "author": "", "orig_id": 1410955}}, {"model": "metainfo.source", "pk": 6796, "fields": {"orig_filename": "Pirc_Alojzij_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410874}}, {"model": "metainfo.source", "pk": 6797, "fields": {"orig_filename": "Pirc_Ciril_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410875}}, {"model": "metainfo.source", "pk": 6798, "fields": {"orig_filename": "Pirc_Franc_1785_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89f.", "author": "", "orig_id": 1410876}}, {"model": "metainfo.source", "pk": 6799, "fields": {"orig_filename": "Piret-Bihain_Eugen_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410956}}, {"model": "metainfo.source", "pk": 6800, "fields": {"orig_filename": "Pirhalla_Martin_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410957}}, {"model": "metainfo.source", "pk": 6801, "fields": {"orig_filename": "Piringer_Benedikt_1775_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410958}}, {"model": "metainfo.source", "pk": 6802, "fields": {"orig_filename": "Piringer_Ferdinand_1780_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92f.", "author": "", "orig_id": 1410959}}, {"model": "metainfo.source", "pk": 6803, "fields": {"orig_filename": "Piringer_Josef-Friedrich_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410960}}, {"model": "metainfo.source", "pk": 6804, "fields": {"orig_filename": "Piringer_Michael_1763_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410961}}, {"model": "metainfo.source", "pk": 6805, "fields": {"orig_filename": "Piringer_Otto_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410962}}, {"model": "metainfo.source", "pk": 6806, "fields": {"orig_filename": "Pirjevec_Avgust_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93f.", "author": "", "orig_id": 1410963}}, {"model": "metainfo.source", "pk": 6807, "fields": {"orig_filename": "Pirker_Max_1886_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410964}}, {"model": "metainfo.source", "pk": 6808, "fields": {"orig_filename": "Pirkhert_Eduard-Max_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410965}}, {"model": "metainfo.source", "pk": 6809, "fields": {"orig_filename": "Pirko_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410966}}, {"model": "metainfo.source", "pk": 6810, "fields": {"orig_filename": "Pirnat_Niko_1903_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94f.", "author": "", "orig_id": 1410967}}, {"model": "metainfo.source", "pk": 6811, "fields": {"orig_filename": "Pirner_Maxmilian_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 95", "author": "", "orig_id": 1410968}}, {"model": "metainfo.source", "pk": 6812, "fields": {"orig_filename": "Pirquet-Cesenatico_Klemens_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 95f.", "author": "", "orig_id": 1410969}}, {"model": "metainfo.source", "pk": 6813, "fields": {"orig_filename": "Pirsch_Adolf_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410970}}, {"model": "metainfo.source", "pk": 6814, "fields": {"orig_filename": "Piscalar_Alois-Urban_1817_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410971}}, {"model": "metainfo.source", "pk": 6815, "fields": {"orig_filename": "Piscel_Antonio_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410972}}, {"model": "metainfo.source", "pk": 6816, "fields": {"orig_filename": "Pischek_Johann_1814_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410973}}, {"model": "metainfo.source", "pk": 6817, "fields": {"orig_filename": "Pischinger_Karl_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410974}}, {"model": "metainfo.source", "pk": 6818, "fields": {"orig_filename": "Pischinger_Oskar_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410975}}, {"model": "metainfo.source", "pk": 6819, "fields": {"orig_filename": "Pischitz_Georg_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97f.", "author": "", "orig_id": 1410976}}, {"model": "metainfo.source", "pk": 6820, "fields": {"orig_filename": "Pischl_Franz_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410977}}, {"model": "metainfo.source", "pk": 6821, "fields": {"orig_filename": "Pischof_Alfred_1882_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410978}}, {"model": "metainfo.source", "pk": 6822, "fields": {"orig_filename": "Pischof_Matthias_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410979}}, {"model": "metainfo.source", "pk": 6823, "fields": {"orig_filename": "Piskacek_Ludwig_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99", "author": "", "orig_id": 1409566}}, {"model": "metainfo.source", "pk": 6824, "fields": {"orig_filename": "Piskac_Bedrich_1898_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98f.", "author": "", "orig_id": 1409565}}, {"model": "metainfo.source", "pk": 6825, "fields": {"orig_filename": "Pisko_Franz-Josef_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99", "author": "", "orig_id": 1409567}}, {"model": "metainfo.source", "pk": 6826, "fields": {"orig_filename": "Pisko_Ignaz_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99f.", "author": "", "orig_id": 1409568}}, {"model": "metainfo.source", "pk": 6827, "fields": {"orig_filename": "Pisko_Oskar_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 100", "author": "", "orig_id": 1409569}}, {"model": "metainfo.source", "pk": 6828, "fields": {"orig_filename": "Pisling_Theophil_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 100f.", "author": "", "orig_id": 1409570}}, {"model": "metainfo.source", "pk": 6829, "fields": {"orig_filename": "Pistek_Franciszek_1786_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409655}}, {"model": "metainfo.source", "pk": 6830, "fields": {"orig_filename": "Pistor_Betty_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409656}}, {"model": "metainfo.source", "pk": 6831, "fields": {"orig_filename": "Pistor_Felix_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409657}}, {"model": "metainfo.source", "pk": 6832, "fields": {"orig_filename": "Pistor_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409658}}, {"model": "metainfo.source", "pk": 6833, "fields": {"orig_filename": "Pisztory_Mor_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409659}}, {"model": "metainfo.source", "pk": 6834, "fields": {"orig_filename": "Pitacco_Giorgio_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409660}}, {"model": "metainfo.source", "pk": 6835, "fields": {"orig_filename": "Pitha_Franz_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102f.", "author": "", "orig_id": 1409661}}, {"model": "metainfo.source", "pk": 6836, "fields": {"orig_filename": "Pitha_Vaclav_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103", "author": "", "orig_id": 1409662}}, {"model": "metainfo.source", "pk": 6837, "fields": {"orig_filename": "Pitner_Franz_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103", "author": "", "orig_id": 1409663}}, {"model": "metainfo.source", "pk": 6838, "fields": {"orig_filename": "Pitner_Maximilian_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103f.", "author": "", "orig_id": 1409664}}, {"model": "metainfo.source", "pk": 6839, "fields": {"orig_filename": "Pitra_Franz_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104", "author": "", "orig_id": 1409665}}, {"model": "metainfo.source", "pk": 6840, "fields": {"orig_filename": "Pitreich_Anton_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104", "author": "", "orig_id": 1409666}}, {"model": "metainfo.source", "pk": 6841, "fields": {"orig_filename": "Pitreich_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104f.", "author": "", "orig_id": 1409667}}, {"model": "metainfo.source", "pk": 6842, "fields": {"orig_filename": "Pitreich_Heinrich_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105", "author": "", "orig_id": 1409668}}, {"model": "metainfo.source", "pk": 6843, "fields": {"orig_filename": "Pitreich_Maximilian_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105", "author": "", "orig_id": 1409669}}, {"model": "metainfo.source", "pk": 6844, "fields": {"orig_filename": "Pitsch_Karl-Franz_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105f.", "author": "", "orig_id": 1409670}}, {"model": "metainfo.source", "pk": 6845, "fields": {"orig_filename": "Pittani_Antonio_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106", "author": "", "orig_id": 1409671}}, {"model": "metainfo.source", "pk": 6846, "fields": {"orig_filename": "Pittel_Adolf_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106", "author": "", "orig_id": 1409741}}, {"model": "metainfo.source", "pk": 6847, "fields": {"orig_filename": "Pittel_Heinrich_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106f.", "author": "", "orig_id": 1409672}}, {"model": "metainfo.source", "pk": 6848, "fields": {"orig_filename": "Pitteri_Riccardo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107", "author": "", "orig_id": 1409673}}, {"model": "metainfo.source", "pk": 6849, "fields": {"orig_filename": "Pittermann_Emil-Artur_1885_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107", "author": "", "orig_id": 1409674}}, {"model": "metainfo.source", "pk": 6850, "fields": {"orig_filename": "Pittner_Anton_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107f.", "author": "", "orig_id": 1409675}}, {"model": "metainfo.source", "pk": 6851, "fields": {"orig_filename": "Pittner_Wilhelm_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409676}}, {"model": "metainfo.source", "pk": 6852, "fields": {"orig_filename": "Pittoni_Valentino_1872_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409677}}, {"model": "metainfo.source", "pk": 6853, "fields": {"orig_filename": "Pitzer_Martin_1803_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409749}}, {"model": "metainfo.source", "pk": 6854, "fields": {"orig_filename": "Pitzinger_Franz_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108f.", "author": "", "orig_id": 1409750}}, {"model": "metainfo.source", "pk": 6855, "fields": {"orig_filename": "Piuariu-Molnar_Ioan_1749_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109", "author": "", "orig_id": 1409751}}, {"model": "metainfo.source", "pk": 6856, "fields": {"orig_filename": "Piva_Giovanni_1798_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109", "author": "", "orig_id": 1409752}}, {"model": "metainfo.source", "pk": 6857, "fields": {"orig_filename": "Pivko_Ljudevit_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109f.", "author": "", "orig_id": 1409753}}, {"model": "metainfo.source", "pk": 6858, "fields": {"orig_filename": "Pivoda_Frantisek_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110", "author": "", "orig_id": 1409754}}, {"model": "metainfo.source", "pk": 6859, "fields": {"orig_filename": "Pixis_Friedrich-Wilhelm_1785_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110", "author": "", "orig_id": 1409755}}, {"model": "metainfo.source", "pk": 6860, "fields": {"orig_filename": "Pixis_Theodor_1831_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110f.", "author": "", "orig_id": 1409756}}, {"model": "metainfo.source", "pk": 6861, "fields": {"orig_filename": "Pizzamano_Josef_1809_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111", "author": "", "orig_id": 1409757}}, {"model": "metainfo.source", "pk": 6862, "fields": {"orig_filename": "Pizzighelli_Giuseppe_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111", "author": "", "orig_id": 1409758}}, {"model": "metainfo.source", "pk": 6863, "fields": {"orig_filename": "Pizzini-Daltofonte_Antonio_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111f.", "author": "", "orig_id": 1409759}}, {"model": "metainfo.source", "pk": 6864, "fields": {"orig_filename": "Placek_Boleslav_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112", "author": "", "orig_id": 1409760}}, {"model": "metainfo.source", "pk": 6865, "fields": {"orig_filename": "Placek_Frantisek_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112", "author": "", "orig_id": 1409761}}, {"model": "metainfo.source", "pk": 6866, "fields": {"orig_filename": "Plachutta_Josef_1827_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112f.", "author": "", "orig_id": 1409762}}, {"model": "metainfo.source", "pk": 6867, "fields": {"orig_filename": "Plachy_Antonin_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409763}}, {"model": "metainfo.source", "pk": 6868, "fields": {"orig_filename": "Plachy_Vaclav_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409764}}, {"model": "metainfo.source", "pk": 6869, "fields": {"orig_filename": "Plaichinger_Karl_1880_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409765}}, {"model": "metainfo.source", "pk": 6870, "fields": {"orig_filename": "Plaichinger_Mathilde_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409766}}, {"model": "metainfo.source", "pk": 6871, "fields": {"orig_filename": "Plakolm_Johann_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409767}}, {"model": "metainfo.source", "pk": 6872, "fields": {"orig_filename": "Plancic_Juraj_1899_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409768}}, {"model": "metainfo.source", "pk": 6873, "fields": {"orig_filename": "Planck-Planckburg_Franz_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114f.", "author": "", "orig_id": 1409769}}, {"model": "metainfo.source", "pk": 6874, "fields": {"orig_filename": "Planck-Planckburg_Karl-Franz_1833_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409770}}, {"model": "metainfo.source", "pk": 6875, "fields": {"orig_filename": "Planckh_Viktor_1904_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409771}}, {"model": "metainfo.source", "pk": 6876, "fields": {"orig_filename": "Plankensteiner_Arnold_1824_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409841}}, {"model": "metainfo.source", "pk": 6877, "fields": {"orig_filename": "Plank_Beda_1741_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409772}}, {"model": "metainfo.source", "pk": 6878, "fields": {"orig_filename": "Piazza_Saulle_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410414}}, {"model": "metainfo.source", "pk": 6879, "fields": {"orig_filename": "Piaz_Giovanni-Battista_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48f.", "author": "", "orig_id": 1410412}}, {"model": "metainfo.source", "pk": 6880, "fields": {"orig_filename": "Pia_Julius_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 46", "author": "", "orig_id": 1410404}}, {"model": "metainfo.source", "pk": 6881, "fields": {"orig_filename": "Picciola_Giuseppe_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49f.", "author": "", "orig_id": 1410416}}, {"model": "metainfo.source", "pk": 6882, "fields": {"orig_filename": "Piccoli_Giorgio_1840_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50", "author": "", "orig_id": 1410417}}, {"model": "metainfo.source", "pk": 6883, "fields": {"orig_filename": "Picek_Vaclav-Jaromir_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50", "author": "", "orig_id": 1410418}}, {"model": "metainfo.source", "pk": 6884, "fields": {"orig_filename": "Pichelmayer_Karl_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50f.", "author": "", "orig_id": 1410419}}, {"model": "metainfo.source", "pk": 6885, "fields": {"orig_filename": "Pichler-Rautenkar_Adolf_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59", "author": "", "orig_id": 1410506}}, {"model": "metainfo.source", "pk": 6886, "fields": {"orig_filename": "Pichler_Anton-Andreas_1770_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52", "author": "", "orig_id": 1410489}}, {"model": "metainfo.source", "pk": 6887, "fields": {"orig_filename": "Pichler_Anton_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52", "author": "", "orig_id": 1410488}}, {"model": "metainfo.source", "pk": 6888, "fields": {"orig_filename": "Pichler_Elisabeth_1783_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52f.", "author": "", "orig_id": 1410490}}, {"model": "metainfo.source", "pk": 6889, "fields": {"orig_filename": "Pichler_Franz_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 53f.", "author": "", "orig_id": 1410491}}, {"model": "metainfo.source", "pk": 6890, "fields": {"orig_filename": "Pichler_Franz_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54", "author": "", "orig_id": 1410492}}, {"model": "metainfo.source", "pk": 6891, "fields": {"orig_filename": "Pichler_Friedrich_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54", "author": "", "orig_id": 1410493}}, {"model": "metainfo.source", "pk": 6892, "fields": {"orig_filename": "Pichler_Johann_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54f.", "author": "", "orig_id": 1410494}}, {"model": "metainfo.source", "pk": 6893, "fields": {"orig_filename": "Pichler_Johann_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55", "author": "", "orig_id": 1410495}}, {"model": "metainfo.source", "pk": 6894, "fields": {"orig_filename": "Pichler_Josef_1765_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55", "author": "", "orig_id": 1410496}}, {"model": "metainfo.source", "pk": 6895, "fields": {"orig_filename": "Pichler_Josef_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55f.", "author": "", "orig_id": 1410497}}, {"model": "metainfo.source", "pk": 6896, "fields": {"orig_filename": "Pichler_Karl_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 56", "author": "", "orig_id": 1410498}}, {"model": "metainfo.source", "pk": 6897, "fields": {"orig_filename": "Pichler_Karoline_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 56f.", "author": "", "orig_id": 1410499}}, {"model": "metainfo.source", "pk": 6898, "fields": {"orig_filename": "Pichler_Kasper_1796_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410500}}, {"model": "metainfo.source", "pk": 6899, "fields": {"orig_filename": "Pichler_Kletus_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410501}}, {"model": "metainfo.source", "pk": 6900, "fields": {"orig_filename": "Pichler_Luigi_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410502}}, {"model": "metainfo.source", "pk": 6901, "fields": {"orig_filename": "Pichler_Maximilian_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57f.", "author": "", "orig_id": 1410503}}, {"model": "metainfo.source", "pk": 6902, "fields": {"orig_filename": "Pichler_Rudolf_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58", "author": "", "orig_id": 1410504}}, {"model": "metainfo.source", "pk": 6903, "fields": {"orig_filename": "Pichler_Thomas_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58", "author": "", "orig_id": 1409740}}, {"model": "metainfo.source", "pk": 6904, "fields": {"orig_filename": "Pichler_Wilhelm_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58f.", "author": "", "orig_id": 1410505}}, {"model": "metainfo.source", "pk": 6905, "fields": {"orig_filename": "Pichlova_Frantiska_1811_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59", "author": "", "orig_id": 1410507}}, {"model": "metainfo.source", "pk": 6906, "fields": {"orig_filename": "Pichl_Alois-Ludwig_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 51", "author": "", "orig_id": 1410486}}, {"model": "metainfo.source", "pk": 6907, "fields": {"orig_filename": "Pichl_Josef-Bojislav_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 51f.", "author": "", "orig_id": 1410487}}, {"model": "metainfo.source", "pk": 6908, "fields": {"orig_filename": "Pickert_Karl_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410589}}, {"model": "metainfo.source", "pk": 6909, "fields": {"orig_filename": "Pickl-Witkenberg_Wilhelm_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410590}}, {"model": "metainfo.source", "pk": 6910, "fields": {"orig_filename": "Pick_Adolfo_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59f.", "author": "", "orig_id": 1410508}}, {"model": "metainfo.source", "pk": 6911, "fields": {"orig_filename": "Pick_Alois_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60", "author": "", "orig_id": 1410509}}, {"model": "metainfo.source", "pk": 6912, "fields": {"orig_filename": "Pick_Arnold_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60", "author": "", "orig_id": 1410510}}, {"model": "metainfo.source", "pk": 6913, "fields": {"orig_filename": "Pick_Friedrich_1867_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60f.", "author": "", "orig_id": 1410581}}, {"model": "metainfo.source", "pk": 6914, "fields": {"orig_filename": "Pick_Georg-Alexander_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61", "author": "", "orig_id": 1410582}}, {"model": "metainfo.source", "pk": 6915, "fields": {"orig_filename": "Pick_Gustav_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61", "author": "", "orig_id": 1410583}}, {"model": "metainfo.source", "pk": 6916, "fields": {"orig_filename": "Pick_Karl_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61f.", "author": "", "orig_id": 1410585}}, {"model": "metainfo.source", "pk": 6917, "fields": {"orig_filename": "Pick_Otto_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62", "author": "", "orig_id": 1410586}}, {"model": "metainfo.source", "pk": 6918, "fields": {"orig_filename": "Pick_Philipp-Josef_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62", "author": "", "orig_id": 1410587}}, {"model": "metainfo.source", "pk": 6919, "fields": {"orig_filename": "Pick_Walter_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62f.", "author": "", "orig_id": 1410588}}, {"model": "metainfo.source", "pk": 6920, "fields": {"orig_filename": "Picman_Josip_1904_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410591}}, {"model": "metainfo.source", "pk": 6921, "fields": {"orig_filename": "Pic_Josef-Ladislav_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410415}}, {"model": "metainfo.source", "pk": 6922, "fields": {"orig_filename": "Pidoll-Quintenbach_Michael_1851_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63f.", "author": "", "orig_id": 1410592}}, {"model": "metainfo.source", "pk": 6923, "fields": {"orig_filename": "Piekosinski_Franciszek_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 64", "author": "", "orig_id": 1410593}}, {"model": "metainfo.source", "pk": 6924, "fields": {"orig_filename": "Pielsticker_Ludwig_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 64", "author": "", "orig_id": 1410594}}, {"model": "metainfo.source", "pk": 6925, "fields": {"orig_filename": "Pieniazek_Czeslaw-Teofil_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65", "author": "", "orig_id": 1410595}}, {"model": "metainfo.source", "pk": 6926, "fields": {"orig_filename": "Pieniazek_Przemyslaw-Wiktor_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65", "author": "", "orig_id": 1410596}}, {"model": "metainfo.source", "pk": 6927, "fields": {"orig_filename": "Pienkowski_Stefan-Kazimierz_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65f.", "author": "", "orig_id": 1410597}}, {"model": "metainfo.source", "pk": 6928, "fields": {"orig_filename": "Piepenhagen_August_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66", "author": "", "orig_id": 1410598}}, {"model": "metainfo.source", "pk": 6929, "fields": {"orig_filename": "Pierling_Jakob_1784_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66", "author": "", "orig_id": 1410599}}, {"model": "metainfo.source", "pk": 6930, "fields": {"orig_filename": "Pierre_Viktor_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66f.", "author": "", "orig_id": 1410600}}, {"model": "metainfo.source", "pk": 6931, "fields": {"orig_filename": "Pierus_Theodor_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67", "author": "", "orig_id": 1410601}}, {"model": "metainfo.source", "pk": 6932, "fields": {"orig_filename": "Pierwipfl_Michael-Wolfgang_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67", "author": "", "orig_id": 1410602}}, {"model": "metainfo.source", "pk": 6933, "fields": {"orig_filename": "Piessinger_Maximilian_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67f.", "author": "", "orig_id": 1410603}}, {"model": "metainfo.source", "pk": 6934, "fields": {"orig_filename": "Pietak_Leonard_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410604}}, {"model": "metainfo.source", "pk": 6935, "fields": {"orig_filename": "Pietor_Ambro_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410673}}, {"model": "metainfo.source", "pk": 6936, "fields": {"orig_filename": "Pietruski_Oktaw_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410674}}, {"model": "metainfo.source", "pk": 6937, "fields": {"orig_filename": "Pietruski_Stanislaw-Konstanty_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68f.", "author": "", "orig_id": 1410675}}, {"model": "metainfo.source", "pk": 6938, "fields": {"orig_filename": "Pietrzikowsky_Eduard_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69", "author": "", "orig_id": 1410676}}, {"model": "metainfo.source", "pk": 6939, "fields": {"orig_filename": "Pietschmann_Adolf_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69", "author": "", "orig_id": 1410677}}, {"model": "metainfo.source", "pk": 6940, "fields": {"orig_filename": "Piette-Rivage_Prosper_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69f.", "author": "", "orig_id": 1410678}}, {"model": "metainfo.source", "pk": 6941, "fields": {"orig_filename": "Piette-Rivage_Prosper_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70", "author": "", "orig_id": 1410679}}, {"model": "metainfo.source", "pk": 6942, "fields": {"orig_filename": "Pietznigg_Franz_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70", "author": "", "orig_id": 1410680}}, {"model": "metainfo.source", "pk": 6943, "fields": {"orig_filename": "Piffl_Friedrich_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70f.", "author": "", "orig_id": 1410681}}, {"model": "metainfo.source", "pk": 6944, "fields": {"orig_filename": "Piffl_Otto_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71", "author": "", "orig_id": 1410682}}, {"model": "metainfo.source", "pk": 6945, "fields": {"orig_filename": "Piffrader_Johann_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71", "author": "", "orig_id": 1410683}}, {"model": "metainfo.source", "pk": 6946, "fields": {"orig_filename": "Piger_Johann_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410685}}, {"model": "metainfo.source", "pk": 6947, "fields": {"orig_filename": "Pig_Franz-Anton_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71f.", "author": "", "orig_id": 1410684}}, {"model": "metainfo.source", "pk": 6948, "fields": {"orig_filename": "Pikhart_Antonin_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410687}}, {"model": "metainfo.source", "pk": 6949, "fields": {"orig_filename": "Piksa_Maria-Samuela_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410688}}, {"model": "metainfo.source", "pk": 6950, "fields": {"orig_filename": "Pik_Franciszek_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410686}}, {"model": "metainfo.source", "pk": 6951, "fields": {"orig_filename": "Pilarski_Valentin-Kasimir_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74", "author": "", "orig_id": 1410692}}, {"model": "metainfo.source", "pk": 6952, "fields": {"orig_filename": "Pilar_Djuro_1846_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72f.", "author": "", "orig_id": 1410689}}, {"model": "metainfo.source", "pk": 6953, "fields": {"orig_filename": "Pilar_Ivo_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 73", "author": "", "orig_id": 1410690}}, {"model": "metainfo.source", "pk": 6954, "fields": {"orig_filename": "Pilar_Martin_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 73", "author": "", "orig_id": 1410691}}, {"model": "metainfo.source", "pk": 6955, "fields": {"orig_filename": "Pilat_Josef-Anton_1782_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74", "author": "", "orig_id": 1410693}}, {"model": "metainfo.source", "pk": 6956, "fields": {"orig_filename": "Pilat_Roman_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74f.", "author": "", "orig_id": 1410694}}, {"model": "metainfo.source", "pk": 6957, "fields": {"orig_filename": "Pilat_Tadeusz_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 75", "author": "", "orig_id": 1410695}}, {"model": "metainfo.source", "pk": 6958, "fields": {"orig_filename": "Pilat_Wladyslaw_1857_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 75f.", "author": "", "orig_id": 1410769}}, {"model": "metainfo.source", "pk": 6959, "fields": {"orig_filename": "Pilhal_Karl_1822_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410770}}, {"model": "metainfo.source", "pk": 6960, "fields": {"orig_filename": "Pillepic-Lippahora_Rudolf_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410772}}, {"model": "metainfo.source", "pk": 6961, "fields": {"orig_filename": "Pillepich_Pietro_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76f.", "author": "", "orig_id": 1410773}}, {"model": "metainfo.source", "pk": 6962, "fields": {"orig_filename": "Pillersdorff_Franz_1786_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77", "author": "", "orig_id": 1410775}}, {"model": "metainfo.source", "pk": 6963, "fields": {"orig_filename": "Piller_Piotr_1801_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77", "author": "", "orig_id": 1410774}}, {"model": "metainfo.source", "pk": 6964, "fields": {"orig_filename": "Pillewizer_Emerich_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77f.", "author": "", "orig_id": 1410776}}, {"model": "metainfo.source", "pk": 6965, "fields": {"orig_filename": "Pillewizer_Michaela_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410777}}, {"model": "metainfo.source", "pk": 6966, "fields": {"orig_filename": "Pillwax_Johann_1814_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410778}}, {"model": "metainfo.source", "pk": 6967, "fields": {"orig_filename": "Pillwax_Viktor-Josef_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410779}}, {"model": "metainfo.source", "pk": 6968, "fields": {"orig_filename": "Pillwein_Benedikt_1779_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78f.", "author": "", "orig_id": 1410780}}, {"model": "metainfo.source", "pk": 6969, "fields": {"orig_filename": "Pill_Karl-Emanuel_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410771}}, {"model": "metainfo.source", "pk": 6970, "fields": {"orig_filename": "Piltz_Jan_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 79", "author": "", "orig_id": 1410781}}, {"model": "metainfo.source", "pk": 6971, "fields": {"orig_filename": "Pilz_Vinzenz_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 79f.", "author": "", "orig_id": 1410782}}, {"model": "metainfo.source", "pk": 6972, "fields": {"orig_filename": "Pinali_Vincenzo_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80", "author": "", "orig_id": 1410783}}, {"model": "metainfo.source", "pk": 6973, "fields": {"orig_filename": "Pincherle_Salvatore_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80", "author": "", "orig_id": 1410784}}, {"model": "metainfo.source", "pk": 6974, "fields": {"orig_filename": "Pindter_Emil-Friedrich_1836_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80f.", "author": "", "orig_id": 1410785}}, {"model": "metainfo.source", "pk": 6975, "fields": {"orig_filename": "Pineles_Friedrich_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 81", "author": "", "orig_id": 1410786}}, {"model": "metainfo.source", "pk": 6976, "fields": {"orig_filename": "Pineles_Hirsch-Mendel_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 81f.", "author": "", "orig_id": 1410787}}, {"model": "metainfo.source", "pk": 6977, "fields": {"orig_filename": "Pineles_Samuel_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82", "author": "", "orig_id": 1410788}}, {"model": "metainfo.source", "pk": 6978, "fields": {"orig_filename": "Pineles_Stanislaus_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82", "author": "", "orig_id": 1410789}}, {"model": "metainfo.source", "pk": 6979, "fields": {"orig_filename": "Pinggera_Johann_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82f.", "author": "", "orig_id": 1410790}}, {"model": "metainfo.source", "pk": 6980, "fields": {"orig_filename": "Pininski_Leon_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 83", "author": "", "orig_id": 1410791}}, {"model": "metainfo.source", "pk": 6981, "fields": {"orig_filename": "Pinkas_Adolf-Maria_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 83f.", "author": "", "orig_id": 1410792}}, {"model": "metainfo.source", "pk": 6982, "fields": {"orig_filename": "Petter_Franz-Xaver_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12f.", "author": "", "orig_id": 1409739}}, {"model": "metainfo.source", "pk": 6983, "fields": {"orig_filename": "Petter_Theodor-Josef_1822_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407902}}, {"model": "metainfo.source", "pk": 6984, "fields": {"orig_filename": "Pettko_Jan_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14", "author": "", "orig_id": 1407906}}, {"model": "metainfo.source", "pk": 6985, "fields": {"orig_filename": "Petz-Hohenrhode_Eduard_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407910}}, {"model": "metainfo.source", "pk": 6986, "fields": {"orig_filename": "Petzer-Rasenheim_Anton_1794_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407911}}, {"model": "metainfo.source", "pk": 6987, "fields": {"orig_filename": "Petzmayer_Johann_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407912}}, {"model": "metainfo.source", "pk": 6988, "fields": {"orig_filename": "Petzold_Alfons_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 16f.", "author": "", "orig_id": 1407913}}, {"model": "metainfo.source", "pk": 6989, "fields": {"orig_filename": "Petzold_Marie_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407915}}, {"model": "metainfo.source", "pk": 6990, "fields": {"orig_filename": "Petzval_Josef-Maximilian_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17f.", "author": "", "orig_id": 1407916}}, {"model": "metainfo.source", "pk": 6991, "fields": {"orig_filename": "Petzval_Otto_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 18f.", "author": "", "orig_id": 1407917}}, {"model": "metainfo.source", "pk": 6992, "fields": {"orig_filename": "Petz_Anton_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14", "author": "", "orig_id": 1407907}}, {"model": "metainfo.source", "pk": 6993, "fields": {"orig_filename": "Petz_Gedeon_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14f.", "author": "", "orig_id": 1407908}}, {"model": "metainfo.source", "pk": 6994, "fields": {"orig_filename": "Petz_Josef_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407909}}, {"model": "metainfo.source", "pk": 6995, "fields": {"orig_filename": "Peucker_Karl_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19", "author": "", "orig_id": 1407918}}, {"model": "metainfo.source", "pk": 6996, "fields": {"orig_filename": "Peutlschmid_Robert_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19", "author": "", "orig_id": 1410100}}, {"model": "metainfo.source", "pk": 6997, "fields": {"orig_filename": "Pewny_Josef_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19f.", "author": "", "orig_id": 1410101}}, {"model": "metainfo.source", "pk": 6998, "fields": {"orig_filename": "Peyerle_Wilhelm_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410102}}, {"model": "metainfo.source", "pk": 6999, "fields": {"orig_filename": "Peyfuss_Karl-Johann_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410103}}, {"model": "metainfo.source", "pk": 7000, "fields": {"orig_filename": "Peyrer-Heimstaett_Karl_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410104}}, {"model": "metainfo.source", "pk": 7001, "fields": {"orig_filename": "Peyritsch_Johann-Josef_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20f.", "author": "", "orig_id": 1410105}}, {"model": "metainfo.source", "pk": 7002, "fields": {"orig_filename": "Pezolt_Georg_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 21", "author": "", "orig_id": 1410106}}, {"model": "metainfo.source", "pk": 7003, "fields": {"orig_filename": "Pezolt_Ludwig_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 21f.", "author": "", "orig_id": 1410107}}, {"model": "metainfo.source", "pk": 7004, "fields": {"orig_filename": "Pezzey_August_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410108}}, {"model": "metainfo.source", "pk": 7005, "fields": {"orig_filename": "Pezzey_August_1875_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410109}}, {"model": "metainfo.source", "pk": 7006, "fields": {"orig_filename": "Pezzicar_Francesco_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410112}}, {"model": "metainfo.source", "pk": 7007, "fields": {"orig_filename": "Pezzi_Francesco_1781_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410110}}, {"model": "metainfo.source", "pk": 7008, "fields": {"orig_filename": "Pezzi_Pietro_1757_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410111}}, {"model": "metainfo.source", "pk": 7009, "fields": {"orig_filename": "Pezzl_Johann_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22f.", "author": "", "orig_id": 1410113}}, {"model": "metainfo.source", "pk": 7010, "fields": {"orig_filename": "Pfaffinger_Michaela_1862_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24", "author": "", "orig_id": 1410117}}, {"model": "metainfo.source", "pk": 7011, "fields": {"orig_filename": "Pfaff_Annetta_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 23", "author": "", "orig_id": 1410114}}, {"model": "metainfo.source", "pk": 7012, "fields": {"orig_filename": "Pfaff_Ivo_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 23f.", "author": "", "orig_id": 1410115}}, {"model": "metainfo.source", "pk": 7013, "fields": {"orig_filename": "Pfaff_Wilhelm_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24", "author": "", "orig_id": 1410116}}, {"model": "metainfo.source", "pk": 7014, "fields": {"orig_filename": "Pfanhauser_Wilhelm_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24f.", "author": "", "orig_id": 1410118}}, {"model": "metainfo.source", "pk": 7015, "fields": {"orig_filename": "Pfanner_Franz_1825_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 25", "author": "", "orig_id": 1410119}}, {"model": "metainfo.source", "pk": 7016, "fields": {"orig_filename": "Pfannl_Heinrich_1870_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 25f.", "author": "", "orig_id": 1410120}}, {"model": "metainfo.source", "pk": 7017, "fields": {"orig_filename": "Pfaundler-Hadermur_Leopold_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 26f.", "author": "", "orig_id": 1410122}}, {"model": "metainfo.source", "pk": 7018, "fields": {"orig_filename": "Pfaundler-Hadermur_Meinhard_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 27", "author": "", "orig_id": 1410123}}, {"model": "metainfo.source", "pk": 7019, "fields": {"orig_filename": "Pfaundler-Sternfeld_Alois_1765_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 27f.", "author": "", "orig_id": 1410124}}, {"model": "metainfo.source", "pk": 7020, "fields": {"orig_filename": "Pfaundler-Sternfeld_Johann-Georg_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28", "author": "", "orig_id": 1410125}}, {"model": "metainfo.source", "pk": 7021, "fields": {"orig_filename": "Pfaundler_Ignaz-Johann_1808_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 26", "author": "", "orig_id": 1410121}}, {"model": "metainfo.source", "pk": 7022, "fields": {"orig_filename": "Pfausler_Peter-Paul_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28", "author": "", "orig_id": 1410199}}, {"model": "metainfo.source", "pk": 7023, "fields": {"orig_filename": "Pfefferle_Josef_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410202}}, {"model": "metainfo.source", "pk": 7024, "fields": {"orig_filename": "Pfeffer_Karl_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28f.", "author": "", "orig_id": 1410200}}, {"model": "metainfo.source", "pk": 7025, "fields": {"orig_filename": "Pfeffer_Rudolf_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410201}}, {"model": "metainfo.source", "pk": 7026, "fields": {"orig_filename": "Pfeifer-Forstheim_Johann_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35", "author": "", "orig_id": 1410219}}, {"model": "metainfo.source", "pk": 7027, "fields": {"orig_filename": "Pfeifer-Julienfels_Ferdinand_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35", "author": "", "orig_id": 1410220}}, {"model": "metainfo.source", "pk": 7028, "fields": {"orig_filename": "Pfeifer-Wellheim_Ferdinand_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35f.", "author": "", "orig_id": 1410221}}, {"model": "metainfo.source", "pk": 7029, "fields": {"orig_filename": "Pfeifer-Wellheim_Heinrich_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36", "author": "", "orig_id": 1410298}}, {"model": "metainfo.source", "pk": 7030, "fields": {"orig_filename": "Pfeifer_Anselm_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410203}}, {"model": "metainfo.source", "pk": 7031, "fields": {"orig_filename": "Pfeifer_Franz-Julius_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 30f.", "author": "", "orig_id": 1410205}}, {"model": "metainfo.source", "pk": 7032, "fields": {"orig_filename": "Pfeifer_Franz_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29f.", "author": "", "orig_id": 1410204}}, {"model": "metainfo.source", "pk": 7033, "fields": {"orig_filename": "Pfeifer_Heinrich_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31", "author": "", "orig_id": 1410206}}, {"model": "metainfo.source", "pk": 7034, "fields": {"orig_filename": "Pfeifer_Hermann_1877_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31", "author": "", "orig_id": 1410207}}, {"model": "metainfo.source", "pk": 7035, "fields": {"orig_filename": "Pfeifer_Ida_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31f.", "author": "", "orig_id": 1410208}}, {"model": "metainfo.source", "pk": 7036, "fields": {"orig_filename": "Pfeifer_Johann_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32", "author": "", "orig_id": 1410209}}, {"model": "metainfo.source", "pk": 7037, "fields": {"orig_filename": "Pfeifer_Josef-Anton_1776_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32f.", "author": "", "orig_id": 1410211}}, {"model": "metainfo.source", "pk": 7038, "fields": {"orig_filename": "Pfeifer_Josef_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32", "author": "", "orig_id": 1410210}}, {"model": "metainfo.source", "pk": 7039, "fields": {"orig_filename": "Pfeifer_Josip_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33", "author": "", "orig_id": 1410212}}, {"model": "metainfo.source", "pk": 7040, "fields": {"orig_filename": "Pfeifer_Julius-Anton_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410215}}, {"model": "metainfo.source", "pk": 7041, "fields": {"orig_filename": "Pfeifer_Juliusz_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410216}}, {"model": "metainfo.source", "pk": 7042, "fields": {"orig_filename": "Pfeifer_Julius_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33", "author": "", "orig_id": 1410213}}, {"model": "metainfo.source", "pk": 7043, "fields": {"orig_filename": "Pfeifer_Julius_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33f.", "author": "", "orig_id": 1410214}}, {"model": "metainfo.source", "pk": 7044, "fields": {"orig_filename": "Pfeifer_Karl-Hermann_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410217}}, {"model": "metainfo.source", "pk": 7045, "fields": {"orig_filename": "Pfeifer_Theodor_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34f.", "author": "", "orig_id": 1410218}}, {"model": "metainfo.source", "pk": 7046, "fields": {"orig_filename": "Pfeiffenberger_Karl-Gottlieb_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36", "author": "", "orig_id": 1410299}}, {"model": "metainfo.source", "pk": 7047, "fields": {"orig_filename": "Pfersche_Emil_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36f.", "author": "", "orig_id": 1410300}}, {"model": "metainfo.source", "pk": 7048, "fields": {"orig_filename": "Pferschy_Karl_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410301}}, {"model": "metainfo.source", "pk": 7049, "fields": {"orig_filename": "Pfersmann-Eichthal_Alois_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410302}}, {"model": "metainfo.source", "pk": 7050, "fields": {"orig_filename": "Pfest_Leopold-Ladislaus_1769_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410303}}, {"model": "metainfo.source", "pk": 7051, "fields": {"orig_filename": "Pfiffer_Karl_1805_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37f.", "author": "", "orig_id": 1410304}}, {"model": "metainfo.source", "pk": 7052, "fields": {"orig_filename": "Pfiffer_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410305}}, {"model": "metainfo.source", "pk": 7053, "fields": {"orig_filename": "Pfisterer_Ferdinand_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410306}}, {"model": "metainfo.source", "pk": 7054, "fields": {"orig_filename": "Pfistermeister_Karl_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410307}}, {"model": "metainfo.source", "pk": 7055, "fields": {"orig_filename": "Pfizmaier_August_1808_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38f.", "author": "", "orig_id": 1410308}}, {"model": "metainfo.source", "pk": 7056, "fields": {"orig_filename": "Pflanzer-Baltin_Karl_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 39", "author": "", "orig_id": 1410309}}, {"model": "metainfo.source", "pk": 7057, "fields": {"orig_filename": "Pflanzl_Otto_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 39f.", "author": "", "orig_id": 1410310}}, {"model": "metainfo.source", "pk": 7058, "fields": {"orig_filename": "Pfleger-Wertenau_Anton_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410311}}, {"model": "metainfo.source", "pk": 7059, "fields": {"orig_filename": "Pfluegl_Albert_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410312}}, {"model": "metainfo.source", "pk": 7060, "fields": {"orig_filename": "Pfluger_Josef_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40f.", "author": "", "orig_id": 1410314}}, {"model": "metainfo.source", "pk": 7061, "fields": {"orig_filename": "Pflug_Ottokar_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410313}}, {"model": "metainfo.source", "pk": 7062, "fields": {"orig_filename": "Pfohl_Ferdinand_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41", "author": "", "orig_id": 1410315}}, {"model": "metainfo.source", "pk": 7063, "fields": {"orig_filename": "Pfretzschner_Norbert_1817_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41", "author": "", "orig_id": 1410316}}, {"model": "metainfo.source", "pk": 7064, "fields": {"orig_filename": "Pfretzschner_Norbert_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41f.", "author": "", "orig_id": 1410317}}, {"model": "metainfo.source", "pk": 7065, "fields": {"orig_filename": "Pfundheller_Josef_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410319}}, {"model": "metainfo.source", "pk": 7066, "fields": {"orig_filename": "Pfund_Alois_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410318}}, {"model": "metainfo.source", "pk": 7067, "fields": {"orig_filename": "Pfurtscheller_Michael_1776_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410320}}, {"model": "metainfo.source", "pk": 7068, "fields": {"orig_filename": "Pfusterschmid-Hardtenstein_Karl_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410322}}, {"model": "metainfo.source", "pk": 7069, "fields": {"orig_filename": "Philippi_Josef_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43", "author": "", "orig_id": 1410398}}, {"model": "metainfo.source", "pk": 7070, "fields": {"orig_filename": "Philippovich-Philippsberg_Eugen_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43f.", "author": "", "orig_id": 1410399}}, {"model": "metainfo.source", "pk": 7071, "fields": {"orig_filename": "Philippovich-Philippsberg_Franz_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 44", "author": "", "orig_id": 1410400}}, {"model": "metainfo.source", "pk": 7072, "fields": {"orig_filename": "Philippovich-Philippsberg_Josef_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 44f.", "author": "", "orig_id": 1410401}}, {"model": "metainfo.source", "pk": 7073, "fields": {"orig_filename": "Philipp_Karl_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42f.", "author": "", "orig_id": 1410323}}, {"model": "metainfo.source", "pk": 7074, "fields": {"orig_filename": "Philipp_Peter_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43", "author": "", "orig_id": 1410396}}, {"model": "metainfo.source", "pk": 7075, "fields": {"orig_filename": "Phleps_Artur_1881_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 45f.", "author": "", "orig_id": 1410403}}, {"model": "metainfo.source", "pk": 7076, "fields": {"orig_filename": "Pian_Antonio_1784_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 46f.", "author": "", "orig_id": 1410405}}, {"model": "metainfo.source", "pk": 7077, "fields": {"orig_filename": "Pian_Giovanni_1813_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47", "author": "", "orig_id": 1410407}}, {"model": "metainfo.source", "pk": 7078, "fields": {"orig_filename": "Piasecki_Eugeniusz_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47", "author": "", "orig_id": 1410408}}, {"model": "metainfo.source", "pk": 7079, "fields": {"orig_filename": "Piatkiewicz_Ludwik_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47f.", "author": "", "orig_id": 1410409}}, {"model": "metainfo.source", "pk": 7080, "fields": {"orig_filename": "Piatnik_Ferdinand_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48", "author": "", "orig_id": 1410410}}, {"model": "metainfo.source", "pk": 7081, "fields": {"orig_filename": "Piave_Francesco-Maria_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48", "author": "", "orig_id": 1410411}}, {"model": "metainfo.source", "pk": 7082, "fields": {"orig_filename": "Piazza_Giulio_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410413}}, {"model": "metainfo.source", "pk": 7083, "fields": {"orig_filename": "Peroutka_Emanuel_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408282}}, {"model": "metainfo.source", "pk": 7084, "fields": {"orig_filename": "Persa_Alois_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408283}}, {"model": "metainfo.source", "pk": 7085, "fields": {"orig_filename": "Perthaler_Johann_1816_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429f.", "author": "", "orig_id": 1408284}}, {"model": "metainfo.source", "pk": 7086, "fields": {"orig_filename": "Perthaler_Karoline-Josefa-Ottilia_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430", "author": "", "orig_id": 1408285}}, {"model": "metainfo.source", "pk": 7087, "fields": {"orig_filename": "Pertik_Otto_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430", "author": "", "orig_id": 1408286}}, {"model": "metainfo.source", "pk": 7088, "fields": {"orig_filename": "Pertile_Antonio_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430f.", "author": "", "orig_id": 1408287}}, {"model": "metainfo.source", "pk": 7089, "fields": {"orig_filename": "Pertile_Giambattista_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 431", "author": "", "orig_id": 1408288}}, {"model": "metainfo.source", "pk": 7090, "fields": {"orig_filename": "Pertsch_Matteo_1769_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 431f.", "author": "", "orig_id": 1408289}}, {"model": "metainfo.source", "pk": 7091, "fields": {"orig_filename": "Perugia_Alberto-Moise_1843_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432", "author": "", "orig_id": 1408290}}, {"model": "metainfo.source", "pk": 7092, "fields": {"orig_filename": "Perusek_Harvey-Gregory_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432", "author": "", "orig_id": 1408291}}, {"model": "metainfo.source", "pk": 7093, "fields": {"orig_filename": "Perusek_Rajko_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432f.", "author": "", "orig_id": 1408354}}, {"model": "metainfo.source", "pk": 7094, "fields": {"orig_filename": "Perutz_Alfred_1885_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408355}}, {"model": "metainfo.source", "pk": 7095, "fields": {"orig_filename": "Peruzzini_Giovanni_1815_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408358}}, {"model": "metainfo.source", "pk": 7096, "fields": {"orig_filename": "Peruzzi_Franc_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408356}}, {"model": "metainfo.source", "pk": 7097, "fields": {"orig_filename": "Peruzzi_Svitoslav-Mihael_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408357}}, {"model": "metainfo.source", "pk": 7098, "fields": {"orig_filename": "Pervanoglu_Pietro_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408359}}, {"model": "metainfo.source", "pk": 7099, "fields": {"orig_filename": "Pesamosca_Osvaldo_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408360}}, {"model": "metainfo.source", "pk": 7100, "fields": {"orig_filename": "Pesante_Antonio_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408361}}, {"model": "metainfo.source", "pk": 7101, "fields": {"orig_filename": "Pesante_Giovanni_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408362}}, {"model": "metainfo.source", "pk": 7102, "fields": {"orig_filename": "Peschka_Franz_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434f.", "author": "", "orig_id": 1408363}}, {"model": "metainfo.source", "pk": 7103, "fields": {"orig_filename": "Peschka_Gustav-Adolf-Viktor_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435", "author": "", "orig_id": 1408364}}, {"model": "metainfo.source", "pk": 7104, "fields": {"orig_filename": "Peschka_Heinrich-Stefan_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435", "author": "", "orig_id": 1408365}}, {"model": "metainfo.source", "pk": 7105, "fields": {"orig_filename": "Peschka_Minna_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435f.", "author": "", "orig_id": 1408366}}, {"model": "metainfo.source", "pk": 7106, "fields": {"orig_filename": "Peschke_Julius-Paul_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408367}}, {"model": "metainfo.source", "pk": 7107, "fields": {"orig_filename": "Pesendorfer_Friedrich-Josef_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408368}}, {"model": "metainfo.source", "pk": 7108, "fields": {"orig_filename": "Pesendorfer_Josef_1791_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408369}}, {"model": "metainfo.source", "pk": 7109, "fields": {"orig_filename": "Pesina_Matej_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408370}}, {"model": "metainfo.source", "pk": 7110, "fields": {"orig_filename": "Pesjak_Luiza_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408371}}, {"model": "metainfo.source", "pk": 7111, "fields": {"orig_filename": "Pesjak_Mihael_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408372}}, {"model": "metainfo.source", "pk": 7112, "fields": {"orig_filename": "Peska_Bedrich_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408375}}, {"model": "metainfo.source", "pk": 7113, "fields": {"orig_filename": "Pessic-Koschnadol_Maximilian_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437f.", "author": "", "orig_id": 1408376}}, {"model": "metainfo.source", "pk": 7114, "fields": {"orig_filename": "Pesta_Karl_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438", "author": "", "orig_id": 1408377}}, {"model": "metainfo.source", "pk": 7115, "fields": {"orig_filename": "Pesty_Frigyes_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438", "author": "", "orig_id": 1408448}}, {"model": "metainfo.source", "pk": 7116, "fields": {"orig_filename": "Petak_Vaclav_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438f.", "author": "", "orig_id": 1408449}}, {"model": "metainfo.source", "pk": 7117, "fields": {"orig_filename": "Peteani-Steinberg_Arthur_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408451}}, {"model": "metainfo.source", "pk": 7118, "fields": {"orig_filename": "Peteani_Antonio_1789_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408450}}, {"model": "metainfo.source", "pk": 7119, "fields": {"orig_filename": "Petenyi_Salamon-Janos_1799_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408452}}, {"model": "metainfo.source", "pk": 7120, "fields": {"orig_filename": "Peter-Ferdinand__1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439f.", "author": "", "orig_id": 1408453}}, {"model": "metainfo.source", "pk": 7121, "fields": {"orig_filename": "Petera_Franz-Xaver-Bohuslav_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408457}}, {"model": "metainfo.source", "pk": 7122, "fields": {"orig_filename": "Peterfi_Karoly_1790_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408458}}, {"model": "metainfo.source", "pk": 7123, "fields": {"orig_filename": "Peterfy_Jenoe_1850_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408459}}, {"model": "metainfo.source", "pk": 7124, "fields": {"orig_filename": "Peterka_Otto_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441f.", "author": "", "orig_id": 1408460}}, {"model": "metainfo.source", "pk": 7125, "fields": {"orig_filename": "Peterka_Rudolf_1894_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442", "author": "", "orig_id": 1408461}}, {"model": "metainfo.source", "pk": 7126, "fields": {"orig_filename": "Peterlini_Dominik-Josef_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442", "author": "", "orig_id": 1408462}}, {"model": "metainfo.source", "pk": 7127, "fields": {"orig_filename": "Peterlongo_Johann_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442f.", "author": "", "orig_id": 1408463}}, {"model": "metainfo.source", "pk": 7128, "fields": {"orig_filename": "Petermandl_Anton_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 443", "author": "", "orig_id": 1408464}}, {"model": "metainfo.source", "pk": 7129, "fields": {"orig_filename": "Petermann_Helene_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 443f.", "author": "", "orig_id": 1408465}}, {"model": "metainfo.source", "pk": 7130, "fields": {"orig_filename": "Petermann_Reinhard-E_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408466}}, {"model": "metainfo.source", "pk": 7131, "fields": {"orig_filename": "Peterseim_Marcin_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445", "author": "", "orig_id": 1408470}}, {"model": "metainfo.source", "pk": 7132, "fields": {"orig_filename": "Petersilka_Karl_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445", "author": "", "orig_id": 1408542}}, {"model": "metainfo.source", "pk": 7133, "fields": {"orig_filename": "Peters_Guido_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408467}}, {"model": "metainfo.source", "pk": 7134, "fields": {"orig_filename": "Peters_Ignaz_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408468}}, {"model": "metainfo.source", "pk": 7135, "fields": {"orig_filename": "Peters_Karl-Ferdinand_1825_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444f.", "author": "", "orig_id": 1408469}}, {"model": "metainfo.source", "pk": 7136, "fields": {"orig_filename": "Peter_Emanuel-Thomas_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408454}}, {"model": "metainfo.source", "pk": 7137, "fields": {"orig_filename": "Peter_Franz_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408455}}, {"model": "metainfo.source", "pk": 7138, "fields": {"orig_filename": "Peter_Johann-Wenzel_1745_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408456}}, {"model": "metainfo.source", "pk": 7139, "fields": {"orig_filename": "Pethe-Kisszanto_Ferenc_1763_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445f.", "author": "", "orig_id": 1408543}}, {"model": "metainfo.source", "pk": 7140, "fields": {"orig_filename": "Pethes_Imre_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 446", "author": "", "orig_id": 1408544}}, {"model": "metainfo.source", "pk": 7141, "fields": {"orig_filename": "Petkovsek_Jozef_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 447", "author": "", "orig_id": 1408546}}, {"model": "metainfo.source", "pk": 7142, "fields": {"orig_filename": "Petko_Koloman_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 446f.", "author": "", "orig_id": 1408545}}, {"model": "metainfo.source", "pk": 7143, "fields": {"orig_filename": "Petoefi_Sandor_1823_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 447f.", "author": "", "orig_id": 1408547}}, {"model": "metainfo.source", "pk": 7144, "fields": {"orig_filename": "Petra-Petrescu_Nicolae_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 448", "author": "", "orig_id": 1408549}}, {"model": "metainfo.source", "pk": 7145, "fields": {"orig_filename": "Petracic_Franjo_1833_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408052}}, {"model": "metainfo.source", "pk": 7146, "fields": {"orig_filename": "Petrak_Alois_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408053}}, {"model": "metainfo.source", "pk": 7147, "fields": {"orig_filename": "Petranovic_Bozidar_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408054}}, {"model": "metainfo.source", "pk": 7148, "fields": {"orig_filename": "Petraschek_Karl_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2", "author": "", "orig_id": 1408056}}, {"model": "metainfo.source", "pk": 7149, "fields": {"orig_filename": "Petrasch_Konrad_1807_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408055}}, {"model": "metainfo.source", "pk": 7150, "fields": {"orig_filename": "Petrass_Ilona_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2", "author": "", "orig_id": 1408057}}, {"model": "metainfo.source", "pk": 7151, "fields": {"orig_filename": "Petravic_Ante_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2f.", "author": "", "orig_id": 1408058}}, {"model": "metainfo.source", "pk": 7152, "fields": {"orig_filename": "Petricevic_Georg_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4", "author": "", "orig_id": 1407874}}, {"model": "metainfo.source", "pk": 7153, "fields": {"orig_filename": "Petrichevich-Horvath-Szeplak_Lazar_1807_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4f.", "author": "", "orig_id": 1407875}}, {"model": "metainfo.source", "pk": 7154, "fields": {"orig_filename": "Petric_Ante_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4", "author": "", "orig_id": 1407873}}, {"model": "metainfo.source", "pk": 7155, "fields": {"orig_filename": "Petrikovich_Jan_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407878}}, {"model": "metainfo.source", "pk": 7156, "fields": {"orig_filename": "Petrik_Geza_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407876}}, {"model": "metainfo.source", "pk": 7157, "fields": {"orig_filename": "Petrik_Lajos_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407877}}, {"model": "metainfo.source", "pk": 7158, "fields": {"orig_filename": "Petrina_Franz-Adam_1799_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5f.", "author": "", "orig_id": 1407879}}, {"model": "metainfo.source", "pk": 7159, "fields": {"orig_filename": "Petrina_Theodor_1842_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407880}}, {"model": "metainfo.source", "pk": 7160, "fields": {"orig_filename": "Petrino_Alexander_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407881}}, {"model": "metainfo.source", "pk": 7161, "fields": {"orig_filename": "Petrivalsky_Julius_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407882}}, {"model": "metainfo.source", "pk": 7162, "fields": {"orig_filename": "Petri_Bernhard_1767_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3", "author": "", "orig_id": 1408059}}, {"model": "metainfo.source", "pk": 7163, "fields": {"orig_filename": "Petri_Elek_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3", "author": "", "orig_id": 1408060}}, {"model": "metainfo.source", "pk": 7164, "fields": {"orig_filename": "Petri_Karl_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3f.", "author": "", "orig_id": 1408061}}, {"model": "metainfo.source", "pk": 7165, "fields": {"orig_filename": "Petrlik_Kristian_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6f.", "author": "", "orig_id": 1407883}}, {"model": "metainfo.source", "pk": 7166, "fields": {"orig_filename": "Petrovic_Leo_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407884}}, {"model": "metainfo.source", "pk": 7167, "fields": {"orig_filename": "Petrovits_Demeter_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407886}}, {"model": "metainfo.source", "pk": 7168, "fields": {"orig_filename": "Petrovits_Ladislaus-Eugen_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407887}}, {"model": "metainfo.source", "pk": 7169, "fields": {"orig_filename": "Petrusevyc_Anton_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7f.", "author": "", "orig_id": 1407888}}, {"model": "metainfo.source", "pk": 7170, "fields": {"orig_filename": "Petruska_Franz_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8", "author": "", "orig_id": 1407889}}, {"model": "metainfo.source", "pk": 7171, "fields": {"orig_filename": "Petr_Vaclav_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 448", "author": "", "orig_id": 1408548}}, {"model": "metainfo.source", "pk": 7172, "fields": {"orig_filename": "Petschacher_Michael-Alexander_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8", "author": "", "orig_id": 1407890}}, {"model": "metainfo.source", "pk": 7173, "fields": {"orig_filename": "Petschek_Georg_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8f.", "author": "", "orig_id": 1407891}}, {"model": "metainfo.source", "pk": 7174, "fields": {"orig_filename": "Petschek_Ignaz_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 9", "author": "", "orig_id": 1407892}}, {"model": "metainfo.source", "pk": 7175, "fields": {"orig_filename": "Petschek_Julius_1856_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 9f.", "author": "", "orig_id": 1407893}}, {"model": "metainfo.source", "pk": 7176, "fields": {"orig_filename": "Petschenig_Michael_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10", "author": "", "orig_id": 1407894}}, {"model": "metainfo.source", "pk": 7177, "fields": {"orig_filename": "Petschnig_Emil_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10", "author": "", "orig_id": 1407895}}, {"model": "metainfo.source", "pk": 7178, "fields": {"orig_filename": "Petschnig_Johann_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10f.", "author": "", "orig_id": 1407896}}, {"model": "metainfo.source", "pk": 7179, "fields": {"orig_filename": "Pettenkofer_August_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 11", "author": "", "orig_id": 1407898}}, {"model": "metainfo.source", "pk": 7180, "fields": {"orig_filename": "Pettera_Guenter_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407903}}, {"model": "metainfo.source", "pk": 7181, "fields": {"orig_filename": "Pettersch_Karl-Hugo_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13f.", "author": "", "orig_id": 1407905}}, {"model": "metainfo.source", "pk": 7182, "fields": {"orig_filename": "Petters_Vilem_1826_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407904}}, {"model": "metainfo.source", "pk": 7183, "fields": {"orig_filename": "Petter_Alexander_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 11", "author": "", "orig_id": 1407899}}, {"model": "metainfo.source", "pk": 7184, "fields": {"orig_filename": "Petter_Anton_1781_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1407900}}, {"model": "metainfo.source", "pk": 7185, "fields": {"orig_filename": "Petter_August_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1407901}}, {"model": "metainfo.source", "pk": 7186, "fields": {"orig_filename": "Petter_Franz-Josef_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1409738}}, {"model": "metainfo.source", "pk": 7187, "fields": {"orig_filename": "Pejacsevich-Veroecze_Julian_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409364}}, {"model": "metainfo.source", "pk": 7188, "fields": {"orig_filename": "Pejacsevich-Veroecze_Ladislav_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409365}}, {"model": "metainfo.source", "pk": 7189, "fields": {"orig_filename": "Pejacsevich-Veroecze_Nikolaus_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394f.", "author": "", "orig_id": 1409366}}, {"model": "metainfo.source", "pk": 7190, "fields": {"orig_filename": "Pejacsevich-Veroecze_Teodor_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395", "author": "", "orig_id": 1409367}}, {"model": "metainfo.source", "pk": 7191, "fields": {"orig_filename": "Pejko_Juraj_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395", "author": "", "orig_id": 1409368}}, {"model": "metainfo.source", "pk": 7192, "fields": {"orig_filename": "Pekarek_Josef_1899_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397", "author": "", "orig_id": 1409370}}, {"model": "metainfo.source", "pk": 7193, "fields": {"orig_filename": "Pekar_Josef_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395ff.", "author": "", "orig_id": 1409369}}, {"model": "metainfo.source", "pk": 7194, "fields": {"orig_filename": "Pelczar_Jozef-Sebastian_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397f.", "author": "", "orig_id": 1409372}}, {"model": "metainfo.source", "pk": 7195, "fields": {"orig_filename": "Pelc_Hynek_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397", "author": "", "orig_id": 1409371}}, {"model": "metainfo.source", "pk": 7196, "fields": {"orig_filename": "Peles_Julian_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398", "author": "", "orig_id": 1409440}}, {"model": "metainfo.source", "pk": 7197, "fields": {"orig_filename": "Pelican_Heinrich_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398", "author": "", "orig_id": 1409441}}, {"model": "metainfo.source", "pk": 7198, "fields": {"orig_filename": "Pelikan-Plauenwald_Josef_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399", "author": "", "orig_id": 1409443}}, {"model": "metainfo.source", "pk": 7199, "fields": {"orig_filename": "Pelikan_Anton_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398f.", "author": "", "orig_id": 1409442}}, {"model": "metainfo.source", "pk": 7200, "fields": {"orig_filename": "Pellegrini_Francesco_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399", "author": "", "orig_id": 1409444}}, {"model": "metainfo.source", "pk": 7201, "fields": {"orig_filename": "Pellegrini_Gaetano_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399f.", "author": "", "orig_id": 1409445}}, {"model": "metainfo.source", "pk": 7202, "fields": {"orig_filename": "Pellegrini_Giulio_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400", "author": "", "orig_id": 1409446}}, {"model": "metainfo.source", "pk": 7203, "fields": {"orig_filename": "Pellico_Silvio_1789_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400", "author": "", "orig_id": 1409447}}, {"model": "metainfo.source", "pk": 7204, "fields": {"orig_filename": "Pellis_Ugo_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400f.", "author": "", "orig_id": 1409448}}, {"model": "metainfo.source", "pk": 7205, "fields": {"orig_filename": "Pelzel-Pelzeln_August_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 401f.", "author": "", "orig_id": 1409450}}, {"model": "metainfo.source", "pk": 7206, "fields": {"orig_filename": "Pelzel-Pelzeln_Marie_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 402", "author": "", "orig_id": 1409451}}, {"model": "metainfo.source", "pk": 7207, "fields": {"orig_filename": "Pelzel-Staffalo_Henriette_1877_1962.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258", "author": "", "orig_id": 1411967}}, {"model": "metainfo.source", "pk": 7208, "fields": {"orig_filename": "Pelz_Karel_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 401", "author": "", "orig_id": 1409449}}, {"model": "metainfo.source", "pk": 7209, "fields": {"orig_filename": "Pembaur_Josef_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 402f.", "author": "", "orig_id": 1409452}}, {"model": "metainfo.source", "pk": 7210, "fields": {"orig_filename": "Pembaur_Josef_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 403", "author": "", "orig_id": 1409453}}, {"model": "metainfo.source", "pk": 7211, "fields": {"orig_filename": "Pembaur_Karl-Maria_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 403f.", "author": "", "orig_id": 1409454}}, {"model": "metainfo.source", "pk": 7212, "fields": {"orig_filename": "Penck_Albrecht_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 404", "author": "", "orig_id": 1409455}}, {"model": "metainfo.source", "pk": 7213, "fields": {"orig_filename": "Pendl_Emanuel_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 404f.", "author": "", "orig_id": 1409456}}, {"model": "metainfo.source", "pk": 7214, "fields": {"orig_filename": "Pendl_Erwin_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405", "author": "", "orig_id": 1409457}}, {"model": "metainfo.source", "pk": 7215, "fields": {"orig_filename": "Pendl_Franz-Xaver_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405", "author": "", "orig_id": 1409458}}, {"model": "metainfo.source", "pk": 7216, "fields": {"orig_filename": "Pendl_Johann_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405f.", "author": "", "orig_id": 1409459}}, {"model": "metainfo.source", "pk": 7217, "fields": {"orig_filename": "Penecke_Karl-Alfons_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406", "author": "", "orig_id": 1409460}}, {"model": "metainfo.source", "pk": 7218, "fields": {"orig_filename": "Pengg-Auheim_Johann_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406f.", "author": "", "orig_id": 1409462}}, {"model": "metainfo.source", "pk": 7219, "fields": {"orig_filename": "Pengg-Auheim_Johann_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 407", "author": "", "orig_id": 1409463}}, {"model": "metainfo.source", "pk": 7220, "fields": {"orig_filename": "Pengg_Aegyd_1788_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406", "author": "", "orig_id": 1409461}}, {"model": "metainfo.source", "pk": 7221, "fields": {"orig_filename": "Penic_Dujam_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 407f.", "author": "", "orig_id": 1409464}}, {"model": "metainfo.source", "pk": 7222, "fields": {"orig_filename": "Penizek_Josef_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408", "author": "", "orig_id": 1409465}}, {"model": "metainfo.source", "pk": 7223, "fields": {"orig_filename": "Penka_Ignacy-Jozef_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408", "author": "", "orig_id": 1413143}}, {"model": "metainfo.source", "pk": 7224, "fields": {"orig_filename": "Penkler_Josef_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408f.", "author": "", "orig_id": 1409466}}, {"model": "metainfo.source", "pk": 7225, "fields": {"orig_filename": "Penn_Heinrich-Moritz_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 409", "author": "", "orig_id": 1408087}}, {"model": "metainfo.source", "pk": 7226, "fields": {"orig_filename": "Penn_Josef_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 409f.", "author": "", "orig_id": 1408088}}, {"model": "metainfo.source", "pk": 7227, "fields": {"orig_filename": "Penther_Arnold_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410", "author": "", "orig_id": 1408089}}, {"model": "metainfo.source", "pk": 7228, "fields": {"orig_filename": "Penther_Daniel_1837_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410", "author": "", "orig_id": 1408090}}, {"model": "metainfo.source", "pk": 7229, "fields": {"orig_filename": "Penzig-Franz_Edgar_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408093}}, {"model": "metainfo.source", "pk": 7230, "fields": {"orig_filename": "Penz_Alois_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410f.", "author": "", "orig_id": 1408091}}, {"model": "metainfo.source", "pk": 7231, "fields": {"orig_filename": "Penz_Ludwig_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408092}}, {"model": "metainfo.source", "pk": 7232, "fields": {"orig_filename": "Perathoner_Julius_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408096}}, {"model": "metainfo.source", "pk": 7233, "fields": {"orig_filename": "Percevic-Odavna_Franz_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408098}}, {"model": "metainfo.source", "pk": 7234, "fields": {"orig_filename": "Perczel-Bonyhad_Bela_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408099}}, {"model": "metainfo.source", "pk": 7235, "fields": {"orig_filename": "Perczel-Bonyhad_Dezsoe_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412f.", "author": "", "orig_id": 1408100}}, {"model": "metainfo.source", "pk": 7236, "fields": {"orig_filename": "Perczel-Bonyhad_Miklos_1812_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413", "author": "", "orig_id": 1408101}}, {"model": "metainfo.source", "pk": 7237, "fields": {"orig_filename": "Perczel-Bonyhad_Mor_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413", "author": "", "orig_id": 1408102}}, {"model": "metainfo.source", "pk": 7238, "fields": {"orig_filename": "Peregriny_Elek_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413f.", "author": "", "orig_id": 1408104}}, {"model": "metainfo.source", "pk": 7239, "fields": {"orig_filename": "Pereira-Arnstein_Henriette_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 414", "author": "", "orig_id": 1408106}}, {"model": "metainfo.source", "pk": 7240, "fields": {"orig_filename": "Pereira-Arnstein_Ludwig_1803_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 414f.", "author": "", "orig_id": 1408107}}, {"model": "metainfo.source", "pk": 7241, "fields": {"orig_filename": "Pereira-Arnstein_Viktor_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415", "author": "", "orig_id": 1408108}}, {"model": "metainfo.source", "pk": 7242, "fields": {"orig_filename": "Perek_Vaclav_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415", "author": "", "orig_id": 1408109}}, {"model": "metainfo.source", "pk": 7243, "fields": {"orig_filename": "Perels_Emil_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415f.", "author": "", "orig_id": 1408110}}, {"model": "metainfo.source", "pk": 7244, "fields": {"orig_filename": "Perenyi_Zsigmond_1783_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408111}}, {"model": "metainfo.source", "pk": 7245, "fields": {"orig_filename": "Peretti_Luigi_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408112}}, {"model": "metainfo.source", "pk": 7246, "fields": {"orig_filename": "Perez_Paolo_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408177}}, {"model": "metainfo.source", "pk": 7247, "fields": {"orig_filename": "Pergelt_Anton_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416f.", "author": "", "orig_id": 1408178}}, {"model": "metainfo.source", "pk": 7248, "fields": {"orig_filename": "Pergen_Anton_1799_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408179}}, {"model": "metainfo.source", "pk": 7249, "fields": {"orig_filename": "Perger-Pergenau_Heinrich_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408186}}, {"model": "metainfo.source", "pk": 7250, "fields": {"orig_filename": "Perger_Anton_1809_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408180}}, {"model": "metainfo.source", "pk": 7251, "fields": {"orig_filename": "Perger_Hugo_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408181}}, {"model": "metainfo.source", "pk": 7252, "fields": {"orig_filename": "Perger_Janos_1791_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417f.", "author": "", "orig_id": 1408182}}, {"model": "metainfo.source", "pk": 7253, "fields": {"orig_filename": "Perger_Janos_1819_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418", "author": "", "orig_id": 1408183}}, {"model": "metainfo.source", "pk": 7254, "fields": {"orig_filename": "Perger_Richard_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418", "author": "", "orig_id": 1408184}}, {"model": "metainfo.source", "pk": 7255, "fields": {"orig_filename": "Perger_Sigmund-Ferdinand_1778_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418f.", "author": "", "orig_id": 1408185}}, {"model": "metainfo.source", "pk": 7256, "fields": {"orig_filename": "Perhauz_Giovanni_1854_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408187}}, {"model": "metainfo.source", "pk": 7257, "fields": {"orig_filename": "Perinello_Carlo_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408188}}, {"model": "metainfo.source", "pk": 7258, "fields": {"orig_filename": "Perinet_Joachim_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419f.", "author": "", "orig_id": 1408189}}, {"model": "metainfo.source", "pk": 7259, "fields": {"orig_filename": "Perini_Agostino_1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 420", "author": "", "orig_id": 1408190}}, {"model": "metainfo.source", "pk": 7260, "fields": {"orig_filename": "Perini_Quintilio_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421", "author": "", "orig_id": 1408192}}, {"model": "metainfo.source", "pk": 7261, "fields": {"orig_filename": "Perkmann_Robert_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421", "author": "", "orig_id": 1408193}}, {"model": "metainfo.source", "pk": 7262, "fields": {"orig_filename": "Perkmann_Rochus_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421f.", "author": "", "orig_id": 1408194}}, {"model": "metainfo.source", "pk": 7263, "fields": {"orig_filename": "Perko-Greiffenbuehl_Josef_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408196}}, {"model": "metainfo.source", "pk": 7264, "fields": {"orig_filename": "Perkovac_Ivan_1826_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408197}}, {"model": "metainfo.source", "pk": 7265, "fields": {"orig_filename": "Perktold_Josef-Anton_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422f.", "author": "", "orig_id": 1408198}}, {"model": "metainfo.source", "pk": 7266, "fields": {"orig_filename": "Perl-Hildrichsburg_Ferdinand_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408202}}, {"model": "metainfo.source", "pk": 7267, "fields": {"orig_filename": "Perlath-Kaltenburg_Josef-Anton_1756_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408266}}, {"model": "metainfo.source", "pk": 7268, "fields": {"orig_filename": "Perlberger_Leo_1890_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408267}}, {"model": "metainfo.source", "pk": 7269, "fields": {"orig_filename": "Perles_Josef_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424f.", "author": "", "orig_id": 1408268}}, {"model": "metainfo.source", "pk": 7270, "fields": {"orig_filename": "Perles_Moritz_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425", "author": "", "orig_id": 1408269}}, {"model": "metainfo.source", "pk": 7271, "fields": {"orig_filename": "Perlis_Julius_1880_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425", "author": "", "orig_id": 1408270}}, {"model": "metainfo.source", "pk": 7272, "fields": {"orig_filename": "Perlmutter_Izsak_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425f.", "author": "", "orig_id": 1408271}}, {"model": "metainfo.source", "pk": 7273, "fields": {"orig_filename": "Perls_Armin_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408272}}, {"model": "metainfo.source", "pk": 7274, "fields": {"orig_filename": "Perl_Henriette_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423", "author": "", "orig_id": 1408199}}, {"model": "metainfo.source", "pk": 7275, "fields": {"orig_filename": "Perl_Karl_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423", "author": "", "orig_id": 1408200}}, {"model": "metainfo.source", "pk": 7276, "fields": {"orig_filename": "Perl_Moriz_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423f.", "author": "", "orig_id": 1408201}}, {"model": "metainfo.source", "pk": 7277, "fields": {"orig_filename": "Perneder_Franz_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408273}}, {"model": "metainfo.source", "pk": 7278, "fields": {"orig_filename": "Pernerstorfer_Engelbert_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427", "author": "", "orig_id": 1408276}}, {"model": "metainfo.source", "pk": 7279, "fields": {"orig_filename": "Perner_Jan_1815_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408274}}, {"model": "metainfo.source", "pk": 7280, "fields": {"orig_filename": "Perner_Jaroslav_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426f.", "author": "", "orig_id": 1408275}}, {"model": "metainfo.source", "pk": 7281, "fields": {"orig_filename": "Pernhart_Markus_1824_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427", "author": "", "orig_id": 1408277}}, {"model": "metainfo.source", "pk": 7282, "fields": {"orig_filename": "Pernlochner_Franz_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427f.", "author": "", "orig_id": 1408278}}, {"model": "metainfo.source", "pk": 7283, "fields": {"orig_filename": "Pernstein_Matthias_1795_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 428", "author": "", "orig_id": 1408279}}, {"model": "metainfo.source", "pk": 7284, "fields": {"orig_filename": "Perntner_Josef-Maria_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 428f.", "author": "", "orig_id": 1408280}}, {"model": "metainfo.source", "pk": 7285, "fields": {"orig_filename": "Pernwerth-Baernstein_Wilhelm_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408281}}, {"model": "metainfo.source", "pk": 7286, "fields": {"orig_filename": "Pautsch_Fryderyk_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 357f.", "author": "", "orig_id": 1408903}}, {"model": "metainfo.source", "pk": 7287, "fields": {"orig_filename": "Pavai-Vajna_Gabriel_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358", "author": "", "orig_id": 1408904}}, {"model": "metainfo.source", "pk": 7288, "fields": {"orig_filename": "Pavani_Eugenio_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358", "author": "", "orig_id": 1408905}}, {"model": "metainfo.source", "pk": 7289, "fields": {"orig_filename": "Pavec_Anton_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358f.", "author": "", "orig_id": 1408906}}, {"model": "metainfo.source", "pk": 7290, "fields": {"orig_filename": "Pavek_Ludwig_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359", "author": "", "orig_id": 1408907}}, {"model": "metainfo.source", "pk": 7291, "fields": {"orig_filename": "Pavelic_Milan_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408981}}, {"model": "metainfo.source", "pk": 7292, "fields": {"orig_filename": "Pavellic_Georg_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408982}}, {"model": "metainfo.source", "pk": 7293, "fields": {"orig_filename": "Pavel_Avgust_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359", "author": "", "orig_id": 1408978}}, {"model": "metainfo.source", "pk": 7294, "fields": {"orig_filename": "Pavel_Janos_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359f.", "author": "", "orig_id": 1408979}}, {"model": "metainfo.source", "pk": 7295, "fields": {"orig_filename": "Pavel_Raphael_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408980}}, {"model": "metainfo.source", "pk": 7296, "fields": {"orig_filename": "Pavic_Armin_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360f.", "author": "", "orig_id": 1408983}}, {"model": "metainfo.source", "pk": 7297, "fields": {"orig_filename": "Pavic_Josip_1887_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361", "author": "", "orig_id": 1408984}}, {"model": "metainfo.source", "pk": 7298, "fields": {"orig_filename": "Pavic_Matija_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361", "author": "", "orig_id": 1408985}}, {"model": "metainfo.source", "pk": 7299, "fields": {"orig_filename": "Pavissich_Luigi-Cesare_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361f.", "author": "", "orig_id": 1408986}}, {"model": "metainfo.source", "pk": 7300, "fields": {"orig_filename": "Pavlicek_Antonin_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362", "author": "", "orig_id": 1408987}}, {"model": "metainfo.source", "pk": 7301, "fields": {"orig_filename": "Pavlikov_Theophil_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362", "author": "", "orig_id": 1408988}}, {"model": "metainfo.source", "pk": 7302, "fields": {"orig_filename": "Pavlinovic_Mihovil_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363", "author": "", "orig_id": 1408991}}, {"model": "metainfo.source", "pk": 7303, "fields": {"orig_filename": "Pavlin_Alfonz_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362f.", "author": "", "orig_id": 1408989}}, {"model": "metainfo.source", "pk": 7304, "fields": {"orig_filename": "Pavlin_Franc_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363", "author": "", "orig_id": 1408990}}, {"model": "metainfo.source", "pk": 7305, "fields": {"orig_filename": "Pavlis_Jan_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363f.", "author": "", "orig_id": 1408992}}, {"model": "metainfo.source", "pk": 7306, "fields": {"orig_filename": "Pavlis_Johann_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408993}}, {"model": "metainfo.source", "pk": 7307, "fields": {"orig_filename": "Pavlovic_Stevan_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408994}}, {"model": "metainfo.source", "pk": 7308, "fields": {"orig_filename": "Pavlovic_Teodor_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408995}}, {"model": "metainfo.source", "pk": 7309, "fields": {"orig_filename": "Pavlovyc_Oleksandr_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408996}}, {"model": "metainfo.source", "pk": 7310, "fields": {"orig_filename": "Pavlu_Bohdan_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364f.", "author": "", "orig_id": 1409066}}, {"model": "metainfo.source", "pk": 7311, "fields": {"orig_filename": "Pavlyk_Mychajlo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 365", "author": "", "orig_id": 1409067}}, {"model": "metainfo.source", "pk": 7312, "fields": {"orig_filename": "Paweck_Heinrich_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 365f.", "author": "", "orig_id": 1409068}}, {"model": "metainfo.source", "pk": 7313, "fields": {"orig_filename": "Pawel_Jaroslaus_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 366", "author": "", "orig_id": 1409069}}, {"model": "metainfo.source", "pk": 7314, "fields": {"orig_filename": "Pawlewski_Bronislaw_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 366f.", "author": "", "orig_id": 1409070}}, {"model": "metainfo.source", "pk": 7315, "fields": {"orig_filename": "Pawlikowski_Jan-Gwalbert_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 368f.", "author": "", "orig_id": 1409075}}, {"model": "metainfo.source", "pk": 7316, "fields": {"orig_filename": "Pawlikowski_Jozef-Benedykt_1770_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369", "author": "", "orig_id": 1409076}}, {"model": "metainfo.source", "pk": 7317, "fields": {"orig_filename": "Pawlikowski_Jozef-Gwalbert_1793_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369", "author": "", "orig_id": 1409077}}, {"model": "metainfo.source", "pk": 7318, "fields": {"orig_filename": "Pawlikowski_Mieczyslaw-Gwalbert-Henryk_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369f.", "author": "", "orig_id": 1409078}}, {"model": "metainfo.source", "pk": 7319, "fields": {"orig_filename": "Pawlikowski_Tadeusz_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 370f.", "author": "", "orig_id": 1409079}}, {"model": "metainfo.source", "pk": 7320, "fields": {"orig_filename": "Pawlik_Franz_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367", "author": "", "orig_id": 1409071}}, {"model": "metainfo.source", "pk": 7321, "fields": {"orig_filename": "Pawlik_Karel_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367", "author": "", "orig_id": 1409072}}, {"model": "metainfo.source", "pk": 7322, "fields": {"orig_filename": "Pawlik_Oswald_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367f.", "author": "", "orig_id": 1409073}}, {"model": "metainfo.source", "pk": 7323, "fields": {"orig_filename": "Pawlik_Stefan_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 368", "author": "", "orig_id": 1409074}}, {"model": "metainfo.source", "pk": 7324, "fields": {"orig_filename": "Pawlitschek_Alfred-Guntram_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371", "author": "", "orig_id": 1409080}}, {"model": "metainfo.source", "pk": 7325, "fields": {"orig_filename": "Pawlowicz_Edward_1815_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371", "author": "", "orig_id": 1409081}}, {"model": "metainfo.source", "pk": 7326, "fields": {"orig_filename": "Pawlowski-Jaroslaw_Alexander_1830_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372", "author": "", "orig_id": 1409084}}, {"model": "metainfo.source", "pk": 7327, "fields": {"orig_filename": "Pawlowski_Franciszek_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371f.", "author": "", "orig_id": 1409082}}, {"model": "metainfo.source", "pk": 7328, "fields": {"orig_filename": "Pawlowski_Johann_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372", "author": "", "orig_id": 1409083}}, {"model": "metainfo.source", "pk": 7329, "fields": {"orig_filename": "Pax_Ferdinand-Albin_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372f.", "author": "", "orig_id": 1409085}}, {"model": "metainfo.source", "pk": 7330, "fields": {"orig_filename": "Pax_Johann_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409086}}, {"model": "metainfo.source", "pk": 7331, "fields": {"orig_filename": "Payer-Thurn_Rudolf_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 375f.", "author": "", "orig_id": 1409166}}, {"model": "metainfo.source", "pk": 7332, "fields": {"orig_filename": "Payer_Anton_1853_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409087}}, {"model": "metainfo.source", "pk": 7333, "fields": {"orig_filename": "Payer_Ernst_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409088}}, {"model": "metainfo.source", "pk": 7334, "fields": {"orig_filename": "Payer_Hieronymus_1787_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373f.", "author": "", "orig_id": 1409089}}, {"model": "metainfo.source", "pk": 7335, "fields": {"orig_filename": "Payer_Hugo_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374", "author": "", "orig_id": 1409163}}, {"model": "metainfo.source", "pk": 7336, "fields": {"orig_filename": "Payer_Janez_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374", "author": "", "orig_id": 1409164}}, {"model": "metainfo.source", "pk": 7337, "fields": {"orig_filename": "Payer_Julius_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374f.", "author": "", "orig_id": 1409165}}, {"model": "metainfo.source", "pk": 7338, "fields": {"orig_filename": "Payr_Artur_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 376f.", "author": "", "orig_id": 1409167}}, {"model": "metainfo.source", "pk": 7339, "fields": {"orig_filename": "Payr_Erwin_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 377", "author": "", "orig_id": 1409168}}, {"model": "metainfo.source", "pk": 7340, "fields": {"orig_filename": "Payr_Karl_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 377f.", "author": "", "orig_id": 1409169}}, {"model": "metainfo.source", "pk": 7341, "fields": {"orig_filename": "Payr_Sandor_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378", "author": "", "orig_id": 1409170}}, {"model": "metainfo.source", "pk": 7342, "fields": {"orig_filename": "Pazaurek_Gustav-Edmund_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378", "author": "", "orig_id": 1409171}}, {"model": "metainfo.source", "pk": 7343, "fields": {"orig_filename": "Pazmandi-Horvat_Endre_1778_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379", "author": "", "orig_id": 1409173}}, {"model": "metainfo.source", "pk": 7344, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379", "author": "", "orig_id": 1409174}}, {"model": "metainfo.source", "pk": 7345, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1816_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379f.", "author": "", "orig_id": 1409175}}, {"model": "metainfo.source", "pk": 7346, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409176}}, {"model": "metainfo.source", "pk": 7347, "fields": {"orig_filename": "Pazman_Josip_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378f.", "author": "", "orig_id": 1409172}}, {"model": "metainfo.source", "pk": 7348, "fields": {"orig_filename": "Pazourek_Josef_1862_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409177}}, {"model": "metainfo.source", "pk": 7349, "fields": {"orig_filename": "Pazze_Pietro-Augusto_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409178}}, {"model": "metainfo.source", "pk": 7350, "fields": {"orig_filename": "Pebal_Leopold_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409179}}, {"model": "metainfo.source", "pk": 7351, "fields": {"orig_filename": "Pecchio-Weitenfeld_Adolf_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409180}}, {"model": "metainfo.source", "pk": 7352, "fields": {"orig_filename": "Pechacek_Franz-Martin_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409256}}, {"model": "metainfo.source", "pk": 7353, "fields": {"orig_filename": "Pechacek_Franz-Xaver_1793_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409257}}, {"model": "metainfo.source", "pk": 7354, "fields": {"orig_filename": "Pechan-Praegenberg_Franz_1830_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409258}}, {"model": "metainfo.source", "pk": 7355, "fields": {"orig_filename": "Pechany_Adolf_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382f.", "author": "", "orig_id": 1409259}}, {"model": "metainfo.source", "pk": 7356, "fields": {"orig_filename": "Peche_Dagobert_1887_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 383", "author": "", "orig_id": 1409260}}, {"model": "metainfo.source", "pk": 7357, "fields": {"orig_filename": "Peche_Ernest_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 383", "author": "", "orig_id": 1409261}}, {"model": "metainfo.source", "pk": 7358, "fields": {"orig_filename": "Peche_Ferdinand_1820_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384", "author": "", "orig_id": 1409262}}, {"model": "metainfo.source", "pk": 7359, "fields": {"orig_filename": "Peche_Karl_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384", "author": "", "orig_id": 1409263}}, {"model": "metainfo.source", "pk": 7360, "fields": {"orig_filename": "Pechmann-Massen_Eduard_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384f.", "author": "", "orig_id": 1409264}}, {"model": "metainfo.source", "pk": 7361, "fields": {"orig_filename": "Pechova_Alzbeta_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385", "author": "", "orig_id": 1409265}}, {"model": "metainfo.source", "pk": 7362, "fields": {"orig_filename": "Pechy-Pechujfalu_Tamas_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385", "author": "", "orig_id": 1409266}}, {"model": "metainfo.source", "pk": 7363, "fields": {"orig_filename": "Pech_Antal_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409181}}, {"model": "metainfo.source", "pk": 7364, "fields": {"orig_filename": "Pech_Jozsef_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381f.", "author": "", "orig_id": 1409182}}, {"model": "metainfo.source", "pk": 7365, "fields": {"orig_filename": "Pecirka_Ferdinand-Otokar_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385f.", "author": "", "orig_id": 1409267}}, {"model": "metainfo.source", "pk": 7366, "fields": {"orig_filename": "Pecirka_Josef_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409268}}, {"model": "metainfo.source", "pk": 7367, "fields": {"orig_filename": "Peckary_Karl_1848_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409272}}, {"model": "metainfo.source", "pk": 7368, "fields": {"orig_filename": "Pecka_Josef-Boleslav_1849_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409271}}, {"model": "metainfo.source", "pk": 7369, "fields": {"orig_filename": "Peck_Edmund-Anton_1830_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409269}}, {"model": "metainfo.source", "pk": 7370, "fields": {"orig_filename": "Peck_Philipp_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409270}}, {"model": "metainfo.source", "pk": 7371, "fields": {"orig_filename": "Peczely_Jozsef_1789_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387f.", "author": "", "orig_id": 1409274}}, {"model": "metainfo.source", "pk": 7372, "fields": {"orig_filename": "Pecz_Vilmos_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409273}}, {"model": "metainfo.source", "pk": 7373, "fields": {"orig_filename": "Pederzolli_Giuseppe_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409275}}, {"model": "metainfo.source", "pk": 7374, "fields": {"orig_filename": "Pedrotti_Giovanni_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409276}}, {"model": "metainfo.source", "pk": 7375, "fields": {"orig_filename": "Peer-Egerthal_Josef-Johann_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389", "author": "", "orig_id": 1409352}}, {"model": "metainfo.source", "pk": 7376, "fields": {"orig_filename": "Peer_Heinrich_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409277}}, {"model": "metainfo.source", "pk": 7377, "fields": {"orig_filename": "Peer_Johann-Paul_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389", "author": "", "orig_id": 1409278}}, {"model": "metainfo.source", "pk": 7378, "fields": {"orig_filename": "Peez_Alexander-Ernst_1829_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389f.", "author": "", "orig_id": 1409353}}, {"model": "metainfo.source", "pk": 7379, "fields": {"orig_filename": "Pegger_Johann_1850_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 390", "author": "", "orig_id": 1409354}}, {"model": "metainfo.source", "pk": 7380, "fields": {"orig_filename": "Peham_Heinrich_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 390f.", "author": "", "orig_id": 1409355}}, {"model": "metainfo.source", "pk": 7381, "fields": {"orig_filename": "Pehersdorfer_Anna_1849_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391", "author": "", "orig_id": 1409356}}, {"model": "metainfo.source", "pk": 7382, "fields": {"orig_filename": "Pehr_Franz_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391", "author": "", "orig_id": 1409357}}, {"model": "metainfo.source", "pk": 7383, "fields": {"orig_filename": "Peinlich_Richard_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391f.", "author": "", "orig_id": 1409358}}, {"model": "metainfo.source", "pk": 7384, "fields": {"orig_filename": "Peisker_Johannes_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392", "author": "", "orig_id": 1409359}}, {"model": "metainfo.source", "pk": 7385, "fields": {"orig_filename": "Peithner-Lichtenfels_Rudolf_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 393", "author": "", "orig_id": 1409361}}, {"model": "metainfo.source", "pk": 7386, "fields": {"orig_filename": "Peithner-Lichtenfels_Thaddaeus_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 393f.", "author": "", "orig_id": 1409362}}, {"model": "metainfo.source", "pk": 7387, "fields": {"orig_filename": "Peitler_Antal-Jozsef_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409363}}, {"model": "metainfo.source", "pk": 7388, "fields": {"orig_filename": "Paradis_Maria-Theresia_1759_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323f.", "author": "", "orig_id": 1408530}}, {"model": "metainfo.source", "pk": 7389, "fields": {"orig_filename": "Parapat_Janez_1838_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324", "author": "", "orig_id": 1408531}}, {"model": "metainfo.source", "pk": 7390, "fields": {"orig_filename": "Parenski_Stanislaw_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324", "author": "", "orig_id": 1408532}}, {"model": "metainfo.source", "pk": 7391, "fields": {"orig_filename": "Parente_Aron-Isak_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324f.", "author": "", "orig_id": 1408533}}, {"model": "metainfo.source", "pk": 7392, "fields": {"orig_filename": "Parente_Marco_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408534}}, {"model": "metainfo.source", "pk": 7393, "fields": {"orig_filename": "Pargfrider_Josef-Gottfried_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408535}}, {"model": "metainfo.source", "pk": 7394, "fields": {"orig_filename": "Parin_Gino_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325f.", "author": "", "orig_id": 1408537}}, {"model": "metainfo.source", "pk": 7395, "fields": {"orig_filename": "Parisini_Emil_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326", "author": "", "orig_id": 1408539}}, {"model": "metainfo.source", "pk": 7396, "fields": {"orig_filename": "Parisi_Giuseppe_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326", "author": "", "orig_id": 1408538}}, {"model": "metainfo.source", "pk": 7397, "fields": {"orig_filename": "Pari_Anton-Giuseppe_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408536}}, {"model": "metainfo.source", "pk": 7398, "fields": {"orig_filename": "Parmann_Oskar_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327", "author": "", "orig_id": 1408541}}, {"model": "metainfo.source", "pk": 7399, "fields": {"orig_filename": "Parma_Viktor_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326f.", "author": "", "orig_id": 1408540}}, {"model": "metainfo.source", "pk": 7400, "fields": {"orig_filename": "Parrot_Jakob_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327", "author": "", "orig_id": 1408608}}, {"model": "metainfo.source", "pk": 7401, "fields": {"orig_filename": "Parschalk_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327f.", "author": "", "orig_id": 1408609}}, {"model": "metainfo.source", "pk": 7402, "fields": {"orig_filename": "Partsch_Anton_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328", "author": "", "orig_id": 1408610}}, {"model": "metainfo.source", "pk": 7403, "fields": {"orig_filename": "Partsch_Franz-Xaver_1760_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328", "author": "", "orig_id": 1408611}}, {"model": "metainfo.source", "pk": 7404, "fields": {"orig_filename": "Partsch_Paul-Maria_1791_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328f.", "author": "", "orig_id": 1408612}}, {"model": "metainfo.source", "pk": 7405, "fields": {"orig_filename": "Parttart_Alois_1841_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329", "author": "", "orig_id": 1408613}}, {"model": "metainfo.source", "pk": 7406, "fields": {"orig_filename": "Parvy-Kis-Konya_Sandor_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329", "author": "", "orig_id": 1408614}}, {"model": "metainfo.source", "pk": 7407, "fields": {"orig_filename": "Pasaric_Josip_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329f.", "author": "", "orig_id": 1408615}}, {"model": "metainfo.source", "pk": 7408, "fields": {"orig_filename": "Pascher-Osserburg_Karl_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330f.", "author": "", "orig_id": 1408618}}, {"model": "metainfo.source", "pk": 7409, "fields": {"orig_filename": "Pascher_Adolf_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330", "author": "", "orig_id": 1408616}}, {"model": "metainfo.source", "pk": 7410, "fields": {"orig_filename": "Pascher_Johann_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330", "author": "", "orig_id": 1408617}}, {"model": "metainfo.source", "pk": 7411, "fields": {"orig_filename": "Paschkis_Heinrich_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408619}}, {"model": "metainfo.source", "pk": 7412, "fields": {"orig_filename": "Pascolato_Alessandro_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408620}}, {"model": "metainfo.source", "pk": 7413, "fields": {"orig_filename": "Pascoletto_Hadrian_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408621}}, {"model": "metainfo.source", "pk": 7414, "fields": {"orig_filename": "Pascotini-Ehrenfels_Carlo_1797_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1408622}}, {"model": "metainfo.source", "pk": 7415, "fields": {"orig_filename": "Pascotini-Ehrenfels_Giovanni_1761_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1408623}}, {"model": "metainfo.source", "pk": 7416, "fields": {"orig_filename": "Pascutti_Antonio_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1471927}}, {"model": "metainfo.source", "pk": 7417, "fields": {"orig_filename": "Pasini_Lodovico_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332f.", "author": "", "orig_id": 1408624}}, {"model": "metainfo.source", "pk": 7418, "fields": {"orig_filename": "Pasini_Valentino_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 333", "author": "", "orig_id": 1408625}}, {"model": "metainfo.source", "pk": 7419, "fields": {"orig_filename": "Paska_Josef_1828_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 333f.", "author": "", "orig_id": 1408626}}, {"model": "metainfo.source", "pk": 7420, "fields": {"orig_filename": "Paskovits_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408627}}, {"model": "metainfo.source", "pk": 7421, "fields": {"orig_filename": "Pasqualati-Osterberg_Amalia_1818_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408628}}, {"model": "metainfo.source", "pk": 7422, "fields": {"orig_filename": "Pasqualigo-Sacchi_Giuseppe_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335", "author": "", "orig_id": 1408630}}, {"model": "metainfo.source", "pk": 7423, "fields": {"orig_filename": "Pasqualigo_Nicolo_1770_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408629}}, {"model": "metainfo.source", "pk": 7424, "fields": {"orig_filename": "Pasquich_Johann_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335", "author": "", "orig_id": 1408631}}, {"model": "metainfo.source", "pk": 7425, "fields": {"orig_filename": "Passini_Johann_1798_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335f.", "author": "", "orig_id": 1408705}}, {"model": "metainfo.source", "pk": 7426, "fields": {"orig_filename": "Passini_Ludwig-Johann_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336", "author": "", "orig_id": 1408706}}, {"model": "metainfo.source", "pk": 7427, "fields": {"orig_filename": "Passy_Anton_1788_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336", "author": "", "orig_id": 1408707}}, {"model": "metainfo.source", "pk": 7428, "fields": {"orig_filename": "Pasta_Giuditta-Maria-Costanza_1797_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336f.", "author": "", "orig_id": 1408708}}, {"model": "metainfo.source", "pk": 7429, "fields": {"orig_filename": "Pasteiner_Gyula_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 337", "author": "", "orig_id": 1408709}}, {"model": "metainfo.source", "pk": 7430, "fields": {"orig_filename": "Pastor-Camperfelden_Ludwig_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338", "author": "", "orig_id": 1408711}}, {"model": "metainfo.source", "pk": 7431, "fields": {"orig_filename": "Pastor_Leon_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 337", "author": "", "orig_id": 1408710}}, {"model": "metainfo.source", "pk": 7432, "fields": {"orig_filename": "Pastree_Julius_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338", "author": "", "orig_id": 1408712}}, {"model": "metainfo.source", "pk": 7433, "fields": {"orig_filename": "Pastrnek_Frantisek_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338f.", "author": "", "orig_id": 1408713}}, {"model": "metainfo.source", "pk": 7434, "fields": {"orig_filename": "Paszkowski_Leon_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339", "author": "", "orig_id": 1408714}}, {"model": "metainfo.source", "pk": 7435, "fields": {"orig_filename": "Paszthory_Emerich_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339", "author": "", "orig_id": 1408715}}, {"model": "metainfo.source", "pk": 7436, "fields": {"orig_filename": "Patay_Janos_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339f.", "author": "", "orig_id": 1408716}}, {"model": "metainfo.source", "pk": 7437, "fields": {"orig_filename": "Patek_Karl_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408717}}, {"model": "metainfo.source", "pk": 7438, "fields": {"orig_filename": "Patera_Adolf_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 341", "author": "", "orig_id": 1408721}}, {"model": "metainfo.source", "pk": 7439, "fields": {"orig_filename": "Patera_Lothar_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 341f.", "author": "", "orig_id": 1408722}}, {"model": "metainfo.source", "pk": 7440, "fields": {"orig_filename": "Pater_Arpad_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408718}}, {"model": "metainfo.source", "pk": 7441, "fields": {"orig_filename": "Pater_Bela_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408719}}, {"model": "metainfo.source", "pk": 7442, "fields": {"orig_filename": "Patigler_Josef_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342", "author": "", "orig_id": 1408723}}, {"model": "metainfo.source", "pk": 7443, "fields": {"orig_filename": "Patiss_Georg_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342", "author": "", "orig_id": 1408724}}, {"model": "metainfo.source", "pk": 7444, "fields": {"orig_filename": "Patrcka_Michal-Silorad_1787_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342f.", "author": "", "orig_id": 1408725}}, {"model": "metainfo.source", "pk": 7445, "fields": {"orig_filename": "Patruban_Karl_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343", "author": "", "orig_id": 1408726}}, {"model": "metainfo.source", "pk": 7446, "fields": {"orig_filename": "Patscheider_Albuin-Maria_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344", "author": "", "orig_id": 1408797}}, {"model": "metainfo.source", "pk": 7447, "fields": {"orig_filename": "Patsch_Josef_1786_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343", "author": "", "orig_id": 1408727}}, {"model": "metainfo.source", "pk": 7448, "fields": {"orig_filename": "Patsch_Karl_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343f.", "author": "", "orig_id": 1408728}}, {"model": "metainfo.source", "pk": 7449, "fields": {"orig_filename": "Pattai_Robert_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344", "author": "", "orig_id": 1408798}}, {"model": "metainfo.source", "pk": 7450, "fields": {"orig_filename": "Patuzzi_Gaetano-Lionello_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344f.", "author": "", "orig_id": 1408799}}, {"model": "metainfo.source", "pk": 7451, "fields": {"orig_filename": "Patzak_Franz_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408800}}, {"model": "metainfo.source", "pk": 7452, "fields": {"orig_filename": "Patzke_Edmund_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408801}}, {"model": "metainfo.source", "pk": 7453, "fields": {"orig_filename": "Paudler_Amand_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408802}}, {"model": "metainfo.source", "pk": 7454, "fields": {"orig_filename": "Pauer_Ernst_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346", "author": "", "orig_id": 1408803}}, {"model": "metainfo.source", "pk": 7455, "fields": {"orig_filename": "Pauer_Franz_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346", "author": "", "orig_id": 1408804}}, {"model": "metainfo.source", "pk": 7456, "fields": {"orig_filename": "Pauer_Janos_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346f.", "author": "", "orig_id": 1408805}}, {"model": "metainfo.source", "pk": 7457, "fields": {"orig_filename": "Pauer_Josef-Chrysostomus_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347", "author": "", "orig_id": 1408806}}, {"model": "metainfo.source", "pk": 7458, "fields": {"orig_filename": "Paukert-Hohenfranken_Johann_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408809}}, {"model": "metainfo.source", "pk": 7459, "fields": {"orig_filename": "Paukert_Franz_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347f.", "author": "", "orig_id": 1408808}}, {"model": "metainfo.source", "pk": 7460, "fields": {"orig_filename": "Pauker_Wolfgang_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347", "author": "", "orig_id": 1408807}}, {"model": "metainfo.source", "pk": 7461, "fields": {"orig_filename": "Paulal_Karl_1879_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348f.", "author": "", "orig_id": 1408813}}, {"model": "metainfo.source", "pk": 7462, "fields": {"orig_filename": "Paulay_Ede_1836_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349", "author": "", "orig_id": 1408814}}, {"model": "metainfo.source", "pk": 7463, "fields": {"orig_filename": "Pauler_Gyula_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349", "author": "", "orig_id": 1408815}}, {"model": "metainfo.source", "pk": 7464, "fields": {"orig_filename": "Pauler_Tivadar_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349f.", "author": "", "orig_id": 1408816}}, {"model": "metainfo.source", "pk": 7465, "fields": {"orig_filename": "Paulick_Friedrich-Georg_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 350f.", "author": "", "orig_id": 1408818}}, {"model": "metainfo.source", "pk": 7466, "fields": {"orig_filename": "Paulik_Janos_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 351", "author": "", "orig_id": 1408819}}, {"model": "metainfo.source", "pk": 7467, "fields": {"orig_filename": "Pauliny-Toth_Viliam_1826_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352f.", "author": "", "orig_id": 1408888}}, {"model": "metainfo.source", "pk": 7468, "fields": {"orig_filename": "Pauliny_Jakob-Josef_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 351f.", "author": "", "orig_id": 1408820}}, {"model": "metainfo.source", "pk": 7469, "fields": {"orig_filename": "Pauliny_Ladislav_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352", "author": "", "orig_id": 1408886}}, {"model": "metainfo.source", "pk": 7470, "fields": {"orig_filename": "Pauliny_Sigismund_1750_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352", "author": "", "orig_id": 1408887}}, {"model": "metainfo.source", "pk": 7471, "fields": {"orig_filename": "Paulitschke_Philipp_1854_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 353f.", "author": "", "orig_id": 1408890}}, {"model": "metainfo.source", "pk": 7472, "fields": {"orig_filename": "Paulitsch_Michael_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 353", "author": "", "orig_id": 1408889}}, {"model": "metainfo.source", "pk": 7473, "fields": {"orig_filename": "Pauli_Hertha_1906_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412346}}, {"model": "metainfo.source", "pk": 7474, "fields": {"orig_filename": "Pauli_Ignacy-Jakub_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 350", "author": "", "orig_id": 1408817}}, {"model": "metainfo.source", "pk": 7475, "fields": {"orig_filename": "Pauli_Wolfgang-Ernst_1900_1958.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412345}}, {"model": "metainfo.source", "pk": 7476, "fields": {"orig_filename": "Pauli_Wolfgang-Josef_1869_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300f.", "author": "", "orig_id": 1412344}}, {"model": "metainfo.source", "pk": 7477, "fields": {"orig_filename": "Paulmichl_Alois_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408891}}, {"model": "metainfo.source", "pk": 7478, "fields": {"orig_filename": "Paulmichl_Karl_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408892}}, {"model": "metainfo.source", "pk": 7479, "fields": {"orig_filename": "Paulucci-Roncole_Hamilcar_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408893}}, {"model": "metainfo.source", "pk": 7480, "fields": {"orig_filename": "Pauly_Max_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408894}}, {"model": "metainfo.source", "pk": 7481, "fields": {"orig_filename": "Paul_Gustav_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408810}}, {"model": "metainfo.source", "pk": 7482, "fields": {"orig_filename": "Paul_Ludwig_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408811}}, {"model": "metainfo.source", "pk": 7483, "fields": {"orig_filename": "Paumgartner_Johann_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354f.", "author": "", "orig_id": 1408895}}, {"model": "metainfo.source", "pk": 7484, "fields": {"orig_filename": "Paumgartner_Rosa_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 355", "author": "", "orig_id": 1408896}}, {"model": "metainfo.source", "pk": 7485, "fields": {"orig_filename": "Paumgartten_Franz-Xaver_1811_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 355f.", "author": "", "orig_id": 1408897}}, {"model": "metainfo.source", "pk": 7486, "fields": {"orig_filename": "Paungarten_Emma_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408898}}, {"model": "metainfo.source", "pk": 7487, "fields": {"orig_filename": "Paur_Emil_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408899}}, {"model": "metainfo.source", "pk": 7488, "fields": {"orig_filename": "Paur_Ignaz_1778_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408900}}, {"model": "metainfo.source", "pk": 7489, "fields": {"orig_filename": "Paur_Ivan_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356f.", "author": "", "orig_id": 1408901}}, {"model": "metainfo.source", "pk": 7490, "fields": {"orig_filename": "Pausinger_Franz-August_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 357", "author": "", "orig_id": 1408902}}, {"model": "metainfo.source", "pk": 7491, "fields": {"orig_filename": "Pagani_Giovanni-Battista_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 287", "author": "", "orig_id": 1408080}}, {"model": "metainfo.source", "pk": 7492, "fields": {"orig_filename": "Pagay_Hans_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288", "author": "", "orig_id": 1408082}}, {"model": "metainfo.source", "pk": 7493, "fields": {"orig_filename": "Pagello_Pietro_1807_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288", "author": "", "orig_id": 1408083}}, {"model": "metainfo.source", "pk": 7494, "fields": {"orig_filename": "Paget_Charles-Octavius_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288f.", "author": "", "orig_id": 1408084}}, {"model": "metainfo.source", "pk": 7495, "fields": {"orig_filename": "Paget_Frederick_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408085}}, {"model": "metainfo.source", "pk": 7496, "fields": {"orig_filename": "Pagliaruzzi_Josip_1859_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408086}}, {"model": "metainfo.source", "pk": 7497, "fields": {"orig_filename": "Pagnini_Silvio_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408155}}, {"model": "metainfo.source", "pk": 7498, "fields": {"orig_filename": "Paic_Josef_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289f.", "author": "", "orig_id": 1408156}}, {"model": "metainfo.source", "pk": 7499, "fields": {"orig_filename": "Pailler_Wilhelm_1838_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408157}}, {"model": "metainfo.source", "pk": 7500, "fields": {"orig_filename": "Paini_Carlo_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408158}}, {"model": "metainfo.source", "pk": 7501, "fields": {"orig_filename": "Paintl_Paul_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408159}}, {"model": "metainfo.source", "pk": 7502, "fields": {"orig_filename": "Paintner_Michael-Anton_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290f.", "author": "", "orig_id": 1408160}}, {"model": "metainfo.source", "pk": 7503, "fields": {"orig_filename": "Pajer_Robert_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291", "author": "", "orig_id": 1408161}}, {"model": "metainfo.source", "pk": 7504, "fields": {"orig_filename": "Pajgert_Adam_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291", "author": "", "orig_id": 1408162}}, {"model": "metainfo.source", "pk": 7505, "fields": {"orig_filename": "Pajgert_Jozef_1799_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291f.", "author": "", "orig_id": 1408163}}, {"model": "metainfo.source", "pk": 7506, "fields": {"orig_filename": "Pajk_Johann_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292", "author": "", "orig_id": 1408164}}, {"model": "metainfo.source", "pk": 7507, "fields": {"orig_filename": "Pajk_Pavlina_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292", "author": "", "orig_id": 1408165}}, {"model": "metainfo.source", "pk": 7508, "fields": {"orig_filename": "Pajor_Sandor_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292f.", "author": "", "orig_id": 1408166}}, {"model": "metainfo.source", "pk": 7509, "fields": {"orig_filename": "Pakh_Albert_1823_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 293", "author": "", "orig_id": 1408167}}, {"model": "metainfo.source", "pk": 7510, "fields": {"orig_filename": "Palacky_Frantisek_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 294ff.", "author": "", "orig_id": 1408170}}, {"model": "metainfo.source", "pk": 7511, "fields": {"orig_filename": "Palacky_Jan_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 296", "author": "", "orig_id": 1408171}}, {"model": "metainfo.source", "pk": 7512, "fields": {"orig_filename": "Palarik_Jan_1822_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 296f.", "author": "", "orig_id": 1408172}}, {"model": "metainfo.source", "pk": 7513, "fields": {"orig_filename": "Palasthy-Palasth-Keczihocz_Pal_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297", "author": "", "orig_id": 1408173}}, {"model": "metainfo.source", "pk": 7514, "fields": {"orig_filename": "Paldus_Josef_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297", "author": "", "orig_id": 1408174}}, {"model": "metainfo.source", "pk": 7515, "fields": {"orig_filename": "Paleocapa_Pietro_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297f.", "author": "", "orig_id": 1408175}}, {"model": "metainfo.source", "pk": 7516, "fields": {"orig_filename": "Paletz_Emanuel_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298", "author": "", "orig_id": 1408176}}, {"model": "metainfo.source", "pk": 7517, "fields": {"orig_filename": "Palffi-Tarcsafalva_Janos_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298", "author": "", "orig_id": 1408246}}, {"model": "metainfo.source", "pk": 7518, "fields": {"orig_filename": "Palffy-Erdoed_Ferdinand_1774_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 299", "author": "", "orig_id": 1408248}}, {"model": "metainfo.source", "pk": 7519, "fields": {"orig_filename": "Palffy-Erdoed_Lipot_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 299f.", "author": "", "orig_id": 1408249}}, {"model": "metainfo.source", "pk": 7520, "fields": {"orig_filename": "Palffy-Erdoed_Moriz_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 300", "author": "", "orig_id": 1408250}}, {"model": "metainfo.source", "pk": 7521, "fields": {"orig_filename": "Palffy_Albert_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298f.", "author": "", "orig_id": 1408247}}, {"model": "metainfo.source", "pk": 7522, "fields": {"orig_filename": "Palisa_Johann_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 300f.", "author": "", "orig_id": 1408251}}, {"model": "metainfo.source", "pk": 7523, "fields": {"orig_filename": "Palkovic_Jiri_1769_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 301", "author": "", "orig_id": 1408252}}, {"model": "metainfo.source", "pk": 7524, "fields": {"orig_filename": "Palkovic_Juraj_1763_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 301f.", "author": "", "orig_id": 1408253}}, {"model": "metainfo.source", "pk": 7525, "fields": {"orig_filename": "Pallavicini_Alfred_1848_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302f.", "author": "", "orig_id": 1408256}}, {"model": "metainfo.source", "pk": 7526, "fields": {"orig_filename": "Pallavicini_Janos_1848_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 303", "author": "", "orig_id": 1408257}}, {"model": "metainfo.source", "pk": 7527, "fields": {"orig_filename": "Palla_Anton_1836_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302", "author": "", "orig_id": 1408254}}, {"model": "metainfo.source", "pk": 7528, "fields": {"orig_filename": "Palla_Eduard_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302", "author": "", "orig_id": 1408255}}, {"model": "metainfo.source", "pk": 7529, "fields": {"orig_filename": "Pallenberg_Max_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 303f.", "author": "", "orig_id": 1408258}}, {"model": "metainfo.source", "pk": 7530, "fields": {"orig_filename": "Palles_Georg_1753_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 304", "author": "", "orig_id": 1408259}}, {"model": "metainfo.source", "pk": 7531, "fields": {"orig_filename": "Pallhuber_Johann_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 304f.", "author": "", "orig_id": 1408260}}, {"model": "metainfo.source", "pk": 7532, "fields": {"orig_filename": "Palliardi_Jaroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408261}}, {"model": "metainfo.source", "pk": 7533, "fields": {"orig_filename": "Palmer_Georg_1796_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 71f.", "author": "", "orig_id": 1430970}}, {"model": "metainfo.source", "pk": 7534, "fields": {"orig_filename": "Palme_Elias_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408263}}, {"model": "metainfo.source", "pk": 7535, "fields": {"orig_filename": "Palme_Franz-Friedrich_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305f.", "author": "", "orig_id": 1408264}}, {"model": "metainfo.source", "pk": 7536, "fields": {"orig_filename": "Palme_Ignaz-Samuel_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306", "author": "", "orig_id": 1408265}}, {"model": "metainfo.source", "pk": 7537, "fields": {"orig_filename": "Palmovic_Andrija_1847_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306", "author": "", "orig_id": 1408332}}, {"model": "metainfo.source", "pk": 7538, "fields": {"orig_filename": "Palm_Josef_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408262}}, {"model": "metainfo.source", "pk": 7539, "fields": {"orig_filename": "Palsovic_Anton_1771_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306f.", "author": "", "orig_id": 1408333}}, {"model": "metainfo.source", "pk": 7540, "fields": {"orig_filename": "Paltauf_Arnold_1860_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 307", "author": "", "orig_id": 1408334}}, {"model": "metainfo.source", "pk": 7541, "fields": {"orig_filename": "Paltauf_Richard_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 307f.", "author": "", "orig_id": 1408335}}, {"model": "metainfo.source", "pk": 7542, "fields": {"orig_filename": "Palugyay-Nagypalugya-Bodafalva_Imre_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408336}}, {"model": "metainfo.source", "pk": 7543, "fields": {"orig_filename": "Pal_Jakob_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 294", "author": "", "orig_id": 1408169}}, {"model": "metainfo.source", "pk": 7544, "fields": {"orig_filename": "Pamer_Fritz-Egon_1900_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408337}}, {"model": "metainfo.source", "pk": 7545, "fields": {"orig_filename": "Pammer_Bruno_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408338}}, {"model": "metainfo.source", "pk": 7546, "fields": {"orig_filename": "Pammer_Maximilian_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308f.", "author": "", "orig_id": 1408339}}, {"model": "metainfo.source", "pk": 7547, "fields": {"orig_filename": "Pancera_Gabriele_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309", "author": "", "orig_id": 1408340}}, {"model": "metainfo.source", "pk": 7548, "fields": {"orig_filename": "Pancic_Josif_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309", "author": "", "orig_id": 1408341}}, {"model": "metainfo.source", "pk": 7549, "fields": {"orig_filename": "Panciera_Valentino_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309f.", "author": "", "orig_id": 1408342}}, {"model": "metainfo.source", "pk": 7550, "fields": {"orig_filename": "Panczel-Albis_Daniel_1759_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310", "author": "", "orig_id": 1408343}}, {"model": "metainfo.source", "pk": 7551, "fields": {"orig_filename": "Pandzic_Kreso_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310", "author": "", "orig_id": 1408344}}, {"model": "metainfo.source", "pk": 7552, "fields": {"orig_filename": "Panek_Kazimierz_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310f.", "author": "", "orig_id": 1408345}}, {"model": "metainfo.source", "pk": 7553, "fields": {"orig_filename": "Paneth_Josef_1857_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311", "author": "", "orig_id": 1408347}}, {"model": "metainfo.source", "pk": 7554, "fields": {"orig_filename": "Panet_Ezechiel_1783_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311", "author": "", "orig_id": 1408346}}, {"model": "metainfo.source", "pk": 7555, "fields": {"orig_filename": "Pangerl_Franz_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311f.", "author": "", "orig_id": 1408348}}, {"model": "metainfo.source", "pk": 7556, "fields": {"orig_filename": "Pangerl_Matthias_1834_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312", "author": "", "orig_id": 1408349}}, {"model": "metainfo.source", "pk": 7557, "fields": {"orig_filename": "Panhans_Franz_1869_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312", "author": "", "orig_id": 1408350}}, {"model": "metainfo.source", "pk": 7558, "fields": {"orig_filename": "Panholzer_Arthur_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312f.", "author": "", "orig_id": 1408351}}, {"model": "metainfo.source", "pk": 7559, "fields": {"orig_filename": "Panholzer_Johann_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408352}}, {"model": "metainfo.source", "pk": 7560, "fields": {"orig_filename": "Panizza_Augusto_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408353}}, {"model": "metainfo.source", "pk": 7561, "fields": {"orig_filename": "Panizza_Bartolomeo_1785_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408425}}, {"model": "metainfo.source", "pk": 7562, "fields": {"orig_filename": "Panizza_Bernardino_1827_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313f.", "author": "", "orig_id": 1408426}}, {"model": "metainfo.source", "pk": 7563, "fields": {"orig_filename": "Panizza_Giovanni-Battista_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314", "author": "", "orig_id": 1408427}}, {"model": "metainfo.source", "pk": 7564, "fields": {"orig_filename": "Pankowski_Kazimierz_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314", "author": "", "orig_id": 1408429}}, {"model": "metainfo.source", "pk": 7565, "fields": {"orig_filename": "Pankowski_Mieczyslaw_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314f.", "author": "", "orig_id": 1408430}}, {"model": "metainfo.source", "pk": 7566, "fields": {"orig_filename": "Pannasch_Anton_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315", "author": "", "orig_id": 1408431}}, {"model": "metainfo.source", "pk": 7567, "fields": {"orig_filename": "Panny_Josef_1794_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315", "author": "", "orig_id": 1408432}}, {"model": "metainfo.source", "pk": 7568, "fields": {"orig_filename": "Panschab_Justin_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315f.", "author": "", "orig_id": 1408433}}, {"model": "metainfo.source", "pk": 7569, "fields": {"orig_filename": "Pantocsek_Jozef_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316", "author": "", "orig_id": 1408434}}, {"model": "metainfo.source", "pk": 7570, "fields": {"orig_filename": "Pantocsek_Leo-Valent_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316", "author": "", "orig_id": 1408435}}, {"model": "metainfo.source", "pk": 7571, "fields": {"orig_filename": "Pantucek_Ferdinand_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316f.", "author": "", "orig_id": 1408436}}, {"model": "metainfo.source", "pk": 7572, "fields": {"orig_filename": "Pantz_Anton_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317", "author": "", "orig_id": 1408437}}, {"model": "metainfo.source", "pk": 7573, "fields": {"orig_filename": "Panwitz_Friedrich-Wilhelm_1788_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317", "author": "", "orig_id": 1408438}}, {"model": "metainfo.source", "pk": 7574, "fields": {"orig_filename": "Panyrek_Duchoslav_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317f.", "author": "", "orig_id": 1408439}}, {"model": "metainfo.source", "pk": 7575, "fields": {"orig_filename": "Panzer_Friedrich_1876_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408440}}, {"model": "metainfo.source", "pk": 7576, "fields": {"orig_filename": "Panzl_Johann_1786_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408441}}, {"model": "metainfo.source", "pk": 7577, "fields": {"orig_filename": "Paoletti_Antonio-Ermolao_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408442}}, {"model": "metainfo.source", "pk": 7578, "fields": {"orig_filename": "Paoli_Francesco_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318f.", "author": "", "orig_id": 1408444}}, {"model": "metainfo.source", "pk": 7579, "fields": {"orig_filename": "Papadopoli-Aldobrandini_Nicolo_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408519}}, {"model": "metainfo.source", "pk": 7580, "fields": {"orig_filename": "Papadopoli_Antonio_1815_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319f.", "author": "", "orig_id": 1408518}}, {"model": "metainfo.source", "pk": 7581, "fields": {"orig_filename": "Papaleoni_Giuseppe_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408520}}, {"model": "metainfo.source", "pk": 7582, "fields": {"orig_filename": "Papay_Samuel_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408521}}, {"model": "metainfo.source", "pk": 7583, "fields": {"orig_filename": "Papee_Fryderyk_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321", "author": "", "orig_id": 1408522}}, {"model": "metainfo.source", "pk": 7584, "fields": {"orig_filename": "Papic_Josip_1881_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321", "author": "", "orig_id": 1408523}}, {"model": "metainfo.source", "pk": 7585, "fields": {"orig_filename": "Papin_Heinrich_1786_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321f.", "author": "", "orig_id": 1408524}}, {"model": "metainfo.source", "pk": 7586, "fields": {"orig_filename": "Papiu-Ilarian_Alexandru_1827_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 322", "author": "", "orig_id": 1408525}}, {"model": "metainfo.source", "pk": 7587, "fields": {"orig_filename": "Papp-Keresztes_Miklos_1837_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 322f.", "author": "", "orig_id": 1408526}}, {"model": "metainfo.source", "pk": 7588, "fields": {"orig_filename": "Pappafava_Vladimiro_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408527}}, {"model": "metainfo.source", "pk": 7589, "fields": {"orig_filename": "Pappenheim_Martin_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408528}}, {"model": "metainfo.source", "pk": 7590, "fields": {"orig_filename": "Pap_Gabor_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408445}}, {"model": "metainfo.source", "pk": 7591, "fields": {"orig_filename": "Pap_Istvan_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408446}}, {"model": "metainfo.source", "pk": 7592, "fields": {"orig_filename": "Pap_Istvan_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408447}}, {"model": "metainfo.source", "pk": 7593, "fields": {"orig_filename": "Paradeiser_Wenzel_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408529}}, {"model": "metainfo.source", "pk": 7594, "fields": {"orig_filename": "Ornstein_Zwi-Hirsch__1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249", "author": "", "orig_id": 1409147}}, {"model": "metainfo.source", "pk": 7595, "fields": {"orig_filename": "Oroszhegyi-Szabo_Jozsa_1822_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249f.", "author": "", "orig_id": 1409148}}, {"model": "metainfo.source", "pk": 7596, "fields": {"orig_filename": "Orozen_Fran_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250", "author": "", "orig_id": 1409149}}, {"model": "metainfo.source", "pk": 7597, "fields": {"orig_filename": "Orozen_Ignaz_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250", "author": "", "orig_id": 1412811}}, {"model": "metainfo.source", "pk": 7598, "fields": {"orig_filename": "Orsini-Rosenberg_Felix_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252", "author": "", "orig_id": 1409152}}, {"model": "metainfo.source", "pk": 7599, "fields": {"orig_filename": "Orsini-Rosenberg_Franz_1761_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252", "author": "", "orig_id": 1409153}}, {"model": "metainfo.source", "pk": 7600, "fields": {"orig_filename": "Orsini-Rosenberg_Karl-Dominik-Maximilian_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252f.", "author": "", "orig_id": 1409154}}, {"model": "metainfo.source", "pk": 7601, "fields": {"orig_filename": "Orsini-Rosenberg_Maximilian_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253", "author": "", "orig_id": 1409155}}, {"model": "metainfo.source", "pk": 7602, "fields": {"orig_filename": "Orsi_Osvaldo_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250f.", "author": "", "orig_id": 1409150}}, {"model": "metainfo.source", "pk": 7603, "fields": {"orig_filename": "Orsi_Paolo_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 251f.", "author": "", "orig_id": 1409151}}, {"model": "metainfo.source", "pk": 7604, "fields": {"orig_filename": "Orszagh_Jozef_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253", "author": "", "orig_id": 1409156}}, {"model": "metainfo.source", "pk": 7605, "fields": {"orig_filename": "Orszagh_Pavol_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253f.", "author": "", "orig_id": 1409157}}, {"model": "metainfo.source", "pk": 7606, "fields": {"orig_filename": "Orth_Johann_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 254", "author": "", "orig_id": 1409158}}, {"model": "metainfo.source", "pk": 7607, "fields": {"orig_filename": "Ortmann_Anton_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 254f.", "author": "", "orig_id": 1409159}}, {"model": "metainfo.source", "pk": 7608, "fields": {"orig_filename": "Ortmann_Johann_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409160}}, {"model": "metainfo.source", "pk": 7609, "fields": {"orig_filename": "Ortner-Rodenstaett_Norbert_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256", "author": "", "orig_id": 1409233}}, {"model": "metainfo.source", "pk": 7610, "fields": {"orig_filename": "Ortner_Max_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255f.", "author": "", "orig_id": 1409162}}, {"model": "metainfo.source", "pk": 7611, "fields": {"orig_filename": "Ortner_Peter_1813_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256", "author": "", "orig_id": 1409232}}, {"model": "metainfo.source", "pk": 7612, "fields": {"orig_filename": "Ortvay_Tivadar_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256f.", "author": "", "orig_id": 1409234}}, {"model": "metainfo.source", "pk": 7613, "fields": {"orig_filename": "Ortwein_Magnus_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257", "author": "", "orig_id": 1409235}}, {"model": "metainfo.source", "pk": 7614, "fields": {"orig_filename": "Orzechowicz_Boleslaw_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257", "author": "", "orig_id": 1409236}}, {"model": "metainfo.source", "pk": 7615, "fields": {"orig_filename": "Oser_Johann_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257f.", "author": "", "orig_id": 1409237}}, {"model": "metainfo.source", "pk": 7616, "fields": {"orig_filename": "Oser_Leopold_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 258", "author": "", "orig_id": 1409238}}, {"model": "metainfo.source", "pk": 7617, "fields": {"orig_filename": "Oss-Mazzurana_Paolo_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259", "author": "", "orig_id": 1409241}}, {"model": "metainfo.source", "pk": 7618, "fields": {"orig_filename": "Ossikovszky_Josef_1844_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259", "author": "", "orig_id": 1409242}}, {"model": "metainfo.source", "pk": 7619, "fields": {"orig_filename": "Ossolinska_Ludwika-Roza_1797_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259f.", "author": "", "orig_id": 1409243}}, {"model": "metainfo.source", "pk": 7620, "fields": {"orig_filename": "Ossolinski_Jozef-Maksymilian_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260", "author": "", "orig_id": 1409244}}, {"model": "metainfo.source", "pk": 7621, "fields": {"orig_filename": "Ostapcuk_Jacko_1873_1959.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260", "author": "", "orig_id": 1409245}}, {"model": "metainfo.source", "pk": 7622, "fields": {"orig_filename": "Ostaszewski-Baranski_Kazimierz-Piotr_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260f.", "author": "", "orig_id": 1409247}}, {"model": "metainfo.source", "pk": 7623, "fields": {"orig_filename": "Osterc_Slavko_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261", "author": "", "orig_id": 1409249}}, {"model": "metainfo.source", "pk": 7624, "fields": {"orig_filename": "Osterlamm_Ernest_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261", "author": "", "orig_id": 1409250}}, {"model": "metainfo.source", "pk": 7625, "fields": {"orig_filename": "Ostermayer_Adolf_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261f.", "author": "", "orig_id": 1409251}}, {"model": "metainfo.source", "pk": 7626, "fields": {"orig_filename": "Osternacher_Johann_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 262f.", "author": "", "orig_id": 1409252}}, {"model": "metainfo.source", "pk": 7627, "fields": {"orig_filename": "Ostojic_Tihomir_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263", "author": "", "orig_id": 1409253}}, {"model": "metainfo.source", "pk": 7628, "fields": {"orig_filename": "Ostrcil_Anton_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263", "author": "", "orig_id": 1409254}}, {"model": "metainfo.source", "pk": 7629, "fields": {"orig_filename": "Ostrcil_Otakar_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263f.", "author": "", "orig_id": 1409255}}, {"model": "metainfo.source", "pk": 7630, "fields": {"orig_filename": "Ostrozynski_Wladyslaw_1857_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 264", "author": "", "orig_id": 1409329}}, {"model": "metainfo.source", "pk": 7631, "fields": {"orig_filename": "Osullivan-Grass_Elisabeth-Charlotte_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 264f.", "author": "", "orig_id": 1409330}}, {"model": "metainfo.source", "pk": 7632, "fields": {"orig_filename": "Osvald_Frantisek-Richard_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 265", "author": "", "orig_id": 1409331}}, {"model": "metainfo.source", "pk": 7633, "fields": {"orig_filename": "Oswald_Franz_1790_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 265f.", "author": "", "orig_id": 1409332}}, {"model": "metainfo.source", "pk": 7634, "fields": {"orig_filename": "Osztenburg_Julius_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266", "author": "", "orig_id": 1409333}}, {"model": "metainfo.source", "pk": 7635, "fields": {"orig_filename": "Otremba_Karol-Fryderyk-August_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266", "author": "", "orig_id": 1409334}}, {"model": "metainfo.source", "pk": 7636, "fields": {"orig_filename": "Ottava_Ignac_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268", "author": "", "orig_id": 1409339}}, {"model": "metainfo.source", "pk": 7637, "fields": {"orig_filename": "Ottel_Klemens_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268", "author": "", "orig_id": 1409340}}, {"model": "metainfo.source", "pk": 7638, "fields": {"orig_filename": "Ottendorfer_Oswald_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268f.", "author": "", "orig_id": 1409341}}, {"model": "metainfo.source", "pk": 7639, "fields": {"orig_filename": "Ottenfels-Gschwind_Franz_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 269", "author": "", "orig_id": 1412812}}, {"model": "metainfo.source", "pk": 7640, "fields": {"orig_filename": "Ottenthaler-Ottenthal_Emil_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 269f.", "author": "", "orig_id": 1409342}}, {"model": "metainfo.source", "pk": 7641, "fields": {"orig_filename": "Ottenthaler-Ottenthal_Kaspar_1780_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 270", "author": "", "orig_id": 1409343}}, {"model": "metainfo.source", "pk": 7642, "fields": {"orig_filename": "Otto-Kirchberg_Anton_1760_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409347}}, {"model": "metainfo.source", "pk": 7643, "fields": {"orig_filename": "Otto-Ottenfeld_Maximilian_1777_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409348}}, {"model": "metainfo.source", "pk": 7644, "fields": {"orig_filename": "Otto_Jan_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 271", "author": "", "orig_id": 1409345}}, {"model": "metainfo.source", "pk": 7645, "fields": {"orig_filename": "Otto_Johann-Karl-Theodor_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 271", "author": "", "orig_id": 1409346}}, {"model": "metainfo.source", "pk": 7646, "fields": {"orig_filename": "Otto__1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 270f.", "author": "", "orig_id": 1409344}}, {"model": "metainfo.source", "pk": 7647, "fields": {"orig_filename": "Ott_Adolf_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266f.", "author": "", "orig_id": 1409335}}, {"model": "metainfo.source", "pk": 7648, "fields": {"orig_filename": "Ott_Emil_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267", "author": "", "orig_id": 1409336}}, {"model": "metainfo.source", "pk": 7649, "fields": {"orig_filename": "Ott_Josef-Friedrich_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267", "author": "", "orig_id": 1409337}}, {"model": "metainfo.source", "pk": 7650, "fields": {"orig_filename": "Ott_Karl_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267f.", "author": "", "orig_id": 1409338}}, {"model": "metainfo.source", "pk": 7651, "fields": {"orig_filename": "Ovari_Kelemen_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409349}}, {"model": "metainfo.source", "pk": 7652, "fields": {"orig_filename": "Ovary_Lipot_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272f.", "author": "", "orig_id": 1409350}}, {"model": "metainfo.source", "pk": 7653, "fields": {"orig_filename": "Ozarkevyc_Ivan_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 273", "author": "", "orig_id": 1409417}}, {"model": "metainfo.source", "pk": 7654, "fields": {"orig_filename": "Ozegovic-Barlabasevec-Bela_Metel_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409419}}, {"model": "metainfo.source", "pk": 7655, "fields": {"orig_filename": "Ozegovic-Barlabasevec_Mirko_1775_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 273", "author": "", "orig_id": 1409418}}, {"model": "metainfo.source", "pk": 7656, "fields": {"orig_filename": "Ozlberger_Karl_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409420}}, {"model": "metainfo.source", "pk": 7657, "fields": {"orig_filename": "Ozvald_Karel_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409421}}, {"model": "metainfo.source", "pk": 7658, "fields": {"orig_filename": "Paal_Karl_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274f.", "author": "", "orig_id": 1409422}}, {"model": "metainfo.source", "pk": 7659, "fields": {"orig_filename": "Paal_Laszlo_1846_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275", "author": "", "orig_id": 1409423}}, {"model": "metainfo.source", "pk": 7660, "fields": {"orig_filename": "Paar_Alois_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275", "author": "", "orig_id": 1409424}}, {"model": "metainfo.source", "pk": 7661, "fields": {"orig_filename": "Paar_Eduard_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275f.", "author": "", "orig_id": 1409425}}, {"model": "metainfo.source", "pk": 7662, "fields": {"orig_filename": "Paar_Hermann_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409426}}, {"model": "metainfo.source", "pk": 7663, "fields": {"orig_filename": "Paasdorfer_Leopold_1856_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409427}}, {"model": "metainfo.source", "pk": 7664, "fields": {"orig_filename": "Pabisch_Franz-Josef_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409428}}, {"model": "metainfo.source", "pk": 7665, "fields": {"orig_filename": "Pablasek_Matthias_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276f.", "author": "", "orig_id": 1409429}}, {"model": "metainfo.source", "pk": 7666, "fields": {"orig_filename": "Pabst_Heinrich-Wilhelm_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 277", "author": "", "orig_id": 1409430}}, {"model": "metainfo.source", "pk": 7667, "fields": {"orig_filename": "Pabst_Johann-Heinrich_1785_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278", "author": "", "orig_id": 1409432}}, {"model": "metainfo.source", "pk": 7668, "fields": {"orig_filename": "Pabst_Johann_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 277f.", "author": "", "orig_id": 1409431}}, {"model": "metainfo.source", "pk": 7669, "fields": {"orig_filename": "Pacak_Bedrich_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278", "author": "", "orig_id": 1409433}}, {"model": "metainfo.source", "pk": 7670, "fields": {"orig_filename": "Pacal_Franz_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278f.", "author": "", "orig_id": 1409434}}, {"model": "metainfo.source", "pk": 7671, "fields": {"orig_filename": "Pacchioni_Giovanni_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409435}}, {"model": "metainfo.source", "pk": 7672, "fields": {"orig_filename": "Pace-Friedensberg_Anton_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409436}}, {"model": "metainfo.source", "pk": 7673, "fields": {"orig_filename": "Pacher-Theinburg_Gustav_1839_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281", "author": "", "orig_id": 1408063}}, {"model": "metainfo.source", "pk": 7674, "fields": {"orig_filename": "Pacher-Theinburg_Johann-Martin_1772_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281", "author": "", "orig_id": 1408064}}, {"model": "metainfo.source", "pk": 7675, "fields": {"orig_filename": "Pacher-Theinburg_Paul_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281f.", "author": "", "orig_id": 1408065}}, {"model": "metainfo.source", "pk": 7676, "fields": {"orig_filename": "Pacher_Anton_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409437}}, {"model": "metainfo.source", "pk": 7677, "fields": {"orig_filename": "Pacher_David_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279f.", "author": "", "orig_id": 1409438}}, {"model": "metainfo.source", "pk": 7678, "fields": {"orig_filename": "Pacher_Josef-Adalbert_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 280", "author": "", "orig_id": 1409439}}, {"model": "metainfo.source", "pk": 7679, "fields": {"orig_filename": "Pacher_Raphael_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 280", "author": "", "orig_id": 1408062}}, {"model": "metainfo.source", "pk": 7680, "fields": {"orig_filename": "Pachinger_Anton-Maximilian_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 282", "author": "", "orig_id": 1408066}}, {"model": "metainfo.source", "pk": 7681, "fields": {"orig_filename": "Pachler_Faust_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 282f.", "author": "", "orig_id": 1408067}}, {"model": "metainfo.source", "pk": 7682, "fields": {"orig_filename": "Pachler_Marie-Leopoldine_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283", "author": "", "orig_id": 1408068}}, {"model": "metainfo.source", "pk": 7683, "fields": {"orig_filename": "Pachmann_Theodor_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283", "author": "", "orig_id": 1408069}}, {"model": "metainfo.source", "pk": 7684, "fields": {"orig_filename": "Pachner-Eggenstorf_Anton_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283f.", "author": "", "orig_id": 1408070}}, {"model": "metainfo.source", "pk": 7685, "fields": {"orig_filename": "Pachta-Rayhofen_Johann-Josef-Philipp_1723_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284", "author": "", "orig_id": 1408071}}, {"model": "metainfo.source", "pk": 7686, "fields": {"orig_filename": "Pacic_Jovan_1771_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284", "author": "", "orig_id": 1408072}}, {"model": "metainfo.source", "pk": 7687, "fields": {"orig_filename": "Packeny-Kilstaedten_Friedrich_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284f.", "author": "", "orig_id": 1408073}}, {"model": "metainfo.source", "pk": 7688, "fields": {"orig_filename": "Pacold_Jiri_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408074}}, {"model": "metainfo.source", "pk": 7689, "fields": {"orig_filename": "Padiaur_Karl_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408075}}, {"model": "metainfo.source", "pk": 7690, "fields": {"orig_filename": "Padovan_Giglio_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408076}}, {"model": "metainfo.source", "pk": 7691, "fields": {"orig_filename": "Padovan_Guglielmo_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285f.", "author": "", "orig_id": 1408077}}, {"model": "metainfo.source", "pk": 7692, "fields": {"orig_filename": "Pagaczewski_Julian_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 286", "author": "", "orig_id": 1408078}}, {"model": "metainfo.source", "pk": 7693, "fields": {"orig_filename": "Paganetti_Gustav_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 286f.", "author": "", "orig_id": 1408079}}, {"model": "metainfo.source", "pk": 7694, "fields": {"orig_filename": "Pagani-Cesa_Giuseppe-Urbano_1757_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 287f.", "author": "", "orig_id": 1408081}}, {"model": "metainfo.source", "pk": 7695, "fields": {"orig_filename": "Oeri-Fueloep_Gabor_1739_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210f.", "author": "", "orig_id": 1408697}}, {"model": "metainfo.source", "pk": 7696, "fields": {"orig_filename": "Oerley_Leopold_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 211", "author": "", "orig_id": 1408698}}, {"model": "metainfo.source", "pk": 7697, "fields": {"orig_filename": "Oerley_Robert_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 211f.", "author": "", "orig_id": 1408699}}, {"model": "metainfo.source", "pk": 7698, "fields": {"orig_filename": "Oer_Franz_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210", "author": "", "orig_id": 1408695}}, {"model": "metainfo.source", "pk": 7699, "fields": {"orig_filename": "Oesterlein_Nikolaus-Johannes_1841_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 212f.", "author": "", "orig_id": 1408701}}, {"model": "metainfo.source", "pk": 7700, "fields": {"orig_filename": "Oesterlein_Nikolaus_1804_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 212", "author": "", "orig_id": 1408700}}, {"model": "metainfo.source", "pk": 7701, "fields": {"orig_filename": "Oesterreich_Franz_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408702}}, {"model": "metainfo.source", "pk": 7702, "fields": {"orig_filename": "Oettel_Karl_1767_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408704}}, {"model": "metainfo.source", "pk": 7703, "fields": {"orig_filename": "Oettinger_Jozef_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213f.", "author": "", "orig_id": 1408774}}, {"model": "metainfo.source", "pk": 7704, "fields": {"orig_filename": "Oettl_Johann_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 214", "author": "", "orig_id": 1408775}}, {"model": "metainfo.source", "pk": 7705, "fields": {"orig_filename": "Oetvoes_Agoston_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 214", "author": "", "orig_id": 1408776}}, {"model": "metainfo.source", "pk": 7706, "fields": {"orig_filename": "Ofenheim-Ponteuxin_Viktor_1820_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 215", "author": "", "orig_id": 1408777}}, {"model": "metainfo.source", "pk": 7707, "fields": {"orig_filename": "Offermann_Karl_1792_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 215f.", "author": "", "orig_id": 1408778}}, {"model": "metainfo.source", "pk": 7708, "fields": {"orig_filename": "Offermann_Karl_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408779}}, {"model": "metainfo.source", "pk": 7709, "fields": {"orig_filename": "Offermann_Karl_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408780}}, {"model": "metainfo.source", "pk": 7710, "fields": {"orig_filename": "Offermann_Theodor_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408781}}, {"model": "metainfo.source", "pk": 7711, "fields": {"orig_filename": "Offner_Johann-Michael_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216f.", "author": "", "orig_id": 1408782}}, {"model": "metainfo.source", "pk": 7712, "fields": {"orig_filename": "Ofner_Hermann_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217", "author": "", "orig_id": 1408783}}, {"model": "metainfo.source", "pk": 7713, "fields": {"orig_filename": "Ofner_Johann_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217", "author": "", "orig_id": 1408784}}, {"model": "metainfo.source", "pk": 7714, "fields": {"orig_filename": "Ofner_Julius_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217f.", "author": "", "orig_id": 1408785}}, {"model": "metainfo.source", "pk": 7715, "fields": {"orig_filename": "Ogrinec_Josip_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 218", "author": "", "orig_id": 1408786}}, {"model": "metainfo.source", "pk": 7716, "fields": {"orig_filename": "Ogrizovic_Milan_1877_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 218f.", "author": "", "orig_id": 1408787}}, {"model": "metainfo.source", "pk": 7717, "fields": {"orig_filename": "Oheral_Jan_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 219", "author": "", "orig_id": 1408788}}, {"model": "metainfo.source", "pk": 7718, "fields": {"orig_filename": "Ohligs_Bernhard-Wilhelm_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 219f.", "author": "", "orig_id": 1408789}}, {"model": "metainfo.source", "pk": 7719, "fields": {"orig_filename": "Ohmann_Friedrich_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 220", "author": "", "orig_id": 1408790}}, {"model": "metainfo.source", "pk": 7720, "fields": {"orig_filename": "Ohonovskyj_Omeljan-Mychajlovyc_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 220f.", "author": "", "orig_id": 1408791}}, {"model": "metainfo.source", "pk": 7721, "fields": {"orig_filename": "Ohorn_Anton_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 221", "author": "", "orig_id": 1408792}}, {"model": "metainfo.source", "pk": 7722, "fields": {"orig_filename": "Ohrfandl_Heinrich-Karl_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 221f.", "author": "", "orig_id": 1408793}}, {"model": "metainfo.source", "pk": 7723, "fields": {"orig_filename": "Ohrwalder_Josef_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222", "author": "", "orig_id": 1408794}}, {"model": "metainfo.source", "pk": 7724, "fields": {"orig_filename": "Oitzinger_Anton_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222", "author": "", "orig_id": 1408795}}, {"model": "metainfo.source", "pk": 7725, "fields": {"orig_filename": "Okon_Eugeniusz_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222f.", "author": "", "orig_id": 1408796}}, {"model": "metainfo.source", "pk": 7726, "fields": {"orig_filename": "Okretic_Ivan_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408866}}, {"model": "metainfo.source", "pk": 7727, "fields": {"orig_filename": "Okrugic_Ilija_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408867}}, {"model": "metainfo.source", "pk": 7728, "fields": {"orig_filename": "Okunevskyj_Theophil_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223f.", "author": "", "orig_id": 1408869}}, {"model": "metainfo.source", "pk": 7729, "fields": {"orig_filename": "Olah_Gusztav_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224", "author": "", "orig_id": 1408870}}, {"model": "metainfo.source", "pk": 7730, "fields": {"orig_filename": "Olariu_Iuliu-Iosif_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224", "author": "", "orig_id": 1408871}}, {"model": "metainfo.source", "pk": 7731, "fields": {"orig_filename": "Olbrich_Josef-Maria_1867_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224ff.", "author": "", "orig_id": 1408872}}, {"model": "metainfo.source", "pk": 7732, "fields": {"orig_filename": "Oldenburg_Elimar-Anton-Guenther-Friedrich_1844_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226", "author": "", "orig_id": 1408874}}, {"model": "metainfo.source", "pk": 7733, "fields": {"orig_filename": "Oldenburg_Rudolf_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226", "author": "", "orig_id": 1408873}}, {"model": "metainfo.source", "pk": 7734, "fields": {"orig_filename": "Olearski_Kazimierz_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226f.", "author": "", "orig_id": 1408875}}, {"model": "metainfo.source", "pk": 7735, "fields": {"orig_filename": "Olesnyckyj_Evhen_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 227", "author": "", "orig_id": 1408876}}, {"model": "metainfo.source", "pk": 7736, "fields": {"orig_filename": "Olexik_Paul_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 227f.", "author": "", "orig_id": 1408877}}, {"model": "metainfo.source", "pk": 7737, "fields": {"orig_filename": "Oliva_Giovanni_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228", "author": "", "orig_id": 1408878}}, {"model": "metainfo.source", "pk": 7738, "fields": {"orig_filename": "Olschowy_Julius_1862_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228", "author": "", "orig_id": 1408879}}, {"model": "metainfo.source", "pk": 7739, "fields": {"orig_filename": "Olszewski_Karol-Stanislaw_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228f.", "author": "", "orig_id": 1408880}}, {"model": "metainfo.source", "pk": 7740, "fields": {"orig_filename": "Olszewski_Michal_1868_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 229", "author": "", "orig_id": 1408881}}, {"model": "metainfo.source", "pk": 7741, "fields": {"orig_filename": "Olynch-Town_Karl_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230", "author": "", "orig_id": 1408883}}, {"model": "metainfo.source", "pk": 7742, "fields": {"orig_filename": "Omerza_Franc_1885_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230", "author": "", "orig_id": 1408884}}, {"model": "metainfo.source", "pk": 7743, "fields": {"orig_filename": "Onciul_Dimitrie_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230f.", "author": "", "orig_id": 1408885}}, {"model": "metainfo.source", "pk": 7744, "fields": {"orig_filename": "Onciul_Isidor_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408955}}, {"model": "metainfo.source", "pk": 7745, "fields": {"orig_filename": "Ondricek_Frantisek_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408956}}, {"model": "metainfo.source", "pk": 7746, "fields": {"orig_filename": "Ondrusek_Frantisek_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408957}}, {"model": "metainfo.source", "pk": 7747, "fields": {"orig_filename": "Onken_Karl-Eduard_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231f.", "author": "", "orig_id": 1408958}}, {"model": "metainfo.source", "pk": 7748, "fields": {"orig_filename": "Onodi_Adolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232", "author": "", "orig_id": 1408959}}, {"model": "metainfo.source", "pk": 7749, "fields": {"orig_filename": "Ontl_August_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232", "author": "", "orig_id": 1408960}}, {"model": "metainfo.source", "pk": 7750, "fields": {"orig_filename": "Opeka_Mihael_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232f.", "author": "", "orig_id": 1408961}}, {"model": "metainfo.source", "pk": 7751, "fields": {"orig_filename": "Opel_Kamillo_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 233", "author": "", "orig_id": 1408962}}, {"model": "metainfo.source", "pk": 7752, "fields": {"orig_filename": "Opitz_Ambros_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 233f.", "author": "", "orig_id": 1408963}}, {"model": "metainfo.source", "pk": 7753, "fields": {"orig_filename": "Opitz_Coelestinus_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234", "author": "", "orig_id": 1408964}}, {"model": "metainfo.source", "pk": 7754, "fields": {"orig_filename": "Opitz_Heinrich_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234", "author": "", "orig_id": 1408965}}, {"model": "metainfo.source", "pk": 7755, "fields": {"orig_filename": "Opiz_Georg-Emanuel_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234f.", "author": "", "orig_id": 1408966}}, {"model": "metainfo.source", "pk": 7756, "fields": {"orig_filename": "Opiz_Philipp-Maximilian_1787_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235", "author": "", "orig_id": 1408967}}, {"model": "metainfo.source", "pk": 7757, "fields": {"orig_filename": "Opolski_Stanislaw_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235", "author": "", "orig_id": 1408968}}, {"model": "metainfo.source", "pk": 7758, "fields": {"orig_filename": "Opolsky_Jan_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235f.", "author": "", "orig_id": 1408969}}, {"model": "metainfo.source", "pk": 7759, "fields": {"orig_filename": "Oppenheimer_Felix-Hermann_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238", "author": "", "orig_id": 1408976}}, {"model": "metainfo.source", "pk": 7760, "fields": {"orig_filename": "Oppenheim_Adolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236", "author": "", "orig_id": 1408970}}, {"model": "metainfo.source", "pk": 7761, "fields": {"orig_filename": "Oppenheim_David_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236", "author": "", "orig_id": 1408971}}, {"model": "metainfo.source", "pk": 7762, "fields": {"orig_filename": "Oppenheim_Joachim_1832_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236f.", "author": "", "orig_id": 1408972}}, {"model": "metainfo.source", "pk": 7763, "fields": {"orig_filename": "Oppenheim_Josef_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 237", "author": "", "orig_id": 1408973}}, {"model": "metainfo.source", "pk": 7764, "fields": {"orig_filename": "Oppenheim_Moritz_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 237", "author": "", "orig_id": 1408974}}, {"model": "metainfo.source", "pk": 7765, "fields": {"orig_filename": "Oppenheim_Samuel_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238", "author": "", "orig_id": 1408975}}, {"model": "metainfo.source", "pk": 7766, "fields": {"orig_filename": "Oppolzer_Egon_1869_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238f.", "author": "", "orig_id": 1408977}}, {"model": "metainfo.source", "pk": 7767, "fields": {"orig_filename": "Oppolzer_Johann_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 239", "author": "", "orig_id": 1409043}}, {"model": "metainfo.source", "pk": 7768, "fields": {"orig_filename": "Oppolzer_Theodor_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 239f.", "author": "", "orig_id": 1409044}}, {"model": "metainfo.source", "pk": 7769, "fields": {"orig_filename": "Opydo_Franciszek_1856_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 240", "author": "", "orig_id": 1409046}}, {"model": "metainfo.source", "pk": 7770, "fields": {"orig_filename": "Orazen_Ivan_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 240f.", "author": "", "orig_id": 1409045}}, {"model": "metainfo.source", "pk": 7771, "fields": {"orig_filename": "Orban-Lengyelfalva_Balazs_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241", "author": "", "orig_id": 1409047}}, {"model": "metainfo.source", "pk": 7772, "fields": {"orig_filename": "Orbok-Koekoesd_Mor_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241f.", "author": "", "orig_id": 1409049}}, {"model": "metainfo.source", "pk": 7773, "fields": {"orig_filename": "Orbok_Lorand_1884_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241", "author": "", "orig_id": 1409048}}, {"model": "metainfo.source", "pk": 7774, "fields": {"orig_filename": "Orczy-Orczi_Bela_1822_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409050}}, {"model": "metainfo.source", "pk": 7775, "fields": {"orig_filename": "Ordody-Ordod_Lajos_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409051}}, {"model": "metainfo.source", "pk": 7776, "fields": {"orig_filename": "Ordody-Ordod_Pal_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409052}}, {"model": "metainfo.source", "pk": 7777, "fields": {"orig_filename": "Orefici_Francesco_1771_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409053}}, {"model": "metainfo.source", "pk": 7778, "fields": {"orig_filename": "Orel_Dobroslav_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243", "author": "", "orig_id": 1409054}}, {"model": "metainfo.source", "pk": 7779, "fields": {"orig_filename": "Orel_Eduard_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243", "author": "", "orig_id": 1409055}}, {"model": "metainfo.source", "pk": 7780, "fields": {"orig_filename": "Orel_Eduard_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243f.", "author": "", "orig_id": 1409056}}, {"model": "metainfo.source", "pk": 7781, "fields": {"orig_filename": "Orel_Johann_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244", "author": "", "orig_id": 1409057}}, {"model": "metainfo.source", "pk": 7782, "fields": {"orig_filename": "Orel_Josef_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244", "author": "", "orig_id": 1409058}}, {"model": "metainfo.source", "pk": 7783, "fields": {"orig_filename": "Orel_Walther_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244f.", "author": "", "orig_id": 1409059}}, {"model": "metainfo.source", "pk": 7784, "fields": {"orig_filename": "Orges_Hermann_1821_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245", "author": "", "orig_id": 1409060}}, {"model": "metainfo.source", "pk": 7785, "fields": {"orig_filename": "Orgler_Flavian_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245", "author": "", "orig_id": 1409061}}, {"model": "metainfo.source", "pk": 7786, "fields": {"orig_filename": "Orlai-Petrich_Soma_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245f.", "author": "", "orig_id": 1409062}}, {"model": "metainfo.source", "pk": 7787, "fields": {"orig_filename": "Orlandini_Giovanni_1804_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246", "author": "", "orig_id": 1409063}}, {"model": "metainfo.source", "pk": 7788, "fields": {"orig_filename": "Orlay_Janos_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246", "author": "", "orig_id": 1409064}}, {"model": "metainfo.source", "pk": 7789, "fields": {"orig_filename": "Orliczek_Alois_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246f.", "author": "", "orig_id": 1409065}}, {"model": "metainfo.source", "pk": 7790, "fields": {"orig_filename": "Orlik_Emil_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 247", "author": "", "orig_id": 1409140}}, {"model": "metainfo.source", "pk": 7791, "fields": {"orig_filename": "Ormis_Samuel_1824_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 247f.", "author": "", "orig_id": 1409141}}, {"model": "metainfo.source", "pk": 7792, "fields": {"orig_filename": "Ormody-Ormod_Vilmos_1838_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409142}}, {"model": "metainfo.source", "pk": 7793, "fields": {"orig_filename": "Ormos-Csicser_Zsigmond_1813_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409143}}, {"model": "metainfo.source", "pk": 7794, "fields": {"orig_filename": "Ornig_Josef_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409144}}, {"model": "metainfo.source", "pk": 7795, "fields": {"orig_filename": "Ornstein_Jakob-Meschulam_1775_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248f.", "author": "", "orig_id": 1409145}}, {"model": "metainfo.source", "pk": 7796, "fields": {"orig_filename": "Ornstein_Moses_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249", "author": "", "orig_id": 1409146}}, {"model": "metainfo.source", "pk": 7797, "fields": {"orig_filename": "Nuckowski_Jan_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175f.", "author": "", "orig_id": 1408315}}, {"model": "metainfo.source", "pk": 7798, "fields": {"orig_filename": "Nuechtern_August_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 176", "author": "", "orig_id": 1408316}}, {"model": "metainfo.source", "pk": 7799, "fields": {"orig_filename": "Nuell_Eduard_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 176f.", "author": "", "orig_id": 1408317}}, {"model": "metainfo.source", "pk": 7800, "fields": {"orig_filename": "Nuic_Andjeo_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408319}}, {"model": "metainfo.source", "pk": 7801, "fields": {"orig_filename": "Nuic_Arkandjeo_1896_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408318}}, {"model": "metainfo.source", "pk": 7802, "fields": {"orig_filename": "Nunnenmacher-Roellfeld_Ludwig_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408320}}, {"model": "metainfo.source", "pk": 7803, "fields": {"orig_filename": "Nusbaum-Hilarowicz_Jozef_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178", "author": "", "orig_id": 1408321}}, {"model": "metainfo.source", "pk": 7804, "fields": {"orig_filename": "Nussbaumer_Michael_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178", "author": "", "orig_id": 1408322}}, {"model": "metainfo.source", "pk": 7805, "fields": {"orig_filename": "Nussbaumer_Otto_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178f.", "author": "", "orig_id": 1408323}}, {"model": "metainfo.source", "pk": 7806, "fields": {"orig_filename": "Nussbaumer_Thiemo_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408324}}, {"model": "metainfo.source", "pk": 7807, "fields": {"orig_filename": "Nusshard_Franz-Willibald_1785_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408325}}, {"model": "metainfo.source", "pk": 7808, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Adolf_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408326}}, {"model": "metainfo.source", "pk": 7809, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Albert_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179f.", "author": "", "orig_id": 1408327}}, {"model": "metainfo.source", "pk": 7810, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Antal_1803_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180", "author": "", "orig_id": 1408328}}, {"model": "metainfo.source", "pk": 7811, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Jenoe_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180", "author": "", "orig_id": 1408329}}, {"model": "metainfo.source", "pk": 7812, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Pal_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180f.", "author": "", "orig_id": 1408330}}, {"model": "metainfo.source", "pk": 7813, "fields": {"orig_filename": "Nydrle_Antonin_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181", "author": "", "orig_id": 1408331}}, {"model": "metainfo.source", "pk": 7814, "fields": {"orig_filename": "Nyiri-Szekely_Alexander_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181", "author": "", "orig_id": 1408400}}, {"model": "metainfo.source", "pk": 7815, "fields": {"orig_filename": "Nyiry_Istvan_1776_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181f.", "author": "", "orig_id": 1408401}}, {"model": "metainfo.source", "pk": 7816, "fields": {"orig_filename": "Nyulassy_Anton_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182", "author": "", "orig_id": 1408402}}, {"model": "metainfo.source", "pk": 7817, "fields": {"orig_filename": "Obach_Theobald_1843_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182", "author": "", "orig_id": 1408403}}, {"model": "metainfo.source", "pk": 7818, "fields": {"orig_filename": "Obalinski_Alfred_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182f.", "author": "", "orig_id": 1408404}}, {"model": "metainfo.source", "pk": 7819, "fields": {"orig_filename": "Obentraut_Adolf_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 183", "author": "", "orig_id": 1408405}}, {"model": "metainfo.source", "pk": 7820, "fields": {"orig_filename": "Obentraut_Johann-Karl_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 183f.", "author": "", "orig_id": 1408406}}, {"model": "metainfo.source", "pk": 7821, "fields": {"orig_filename": "Oberascher_Emmerich_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184", "author": "", "orig_id": 1408407}}, {"model": "metainfo.source", "pk": 7822, "fields": {"orig_filename": "Oberdank_Wilhelm_1858_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184", "author": "", "orig_id": 1408409}}, {"model": "metainfo.source", "pk": 7823, "fields": {"orig_filename": "Oberegger_Matthaeus_1829_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184f.", "author": "", "orig_id": 1408410}}, {"model": "metainfo.source", "pk": 7824, "fields": {"orig_filename": "Oberer_Franz_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408411}}, {"model": "metainfo.source", "pk": 7825, "fields": {"orig_filename": "Oberforcher_Josef_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408412}}, {"model": "metainfo.source", "pk": 7826, "fields": {"orig_filename": "Oberhauser_Rudolf_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408413}}, {"model": "metainfo.source", "pk": 7827, "fields": {"orig_filename": "Oberhummer_Eugen_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185f.", "author": "", "orig_id": 1408414}}, {"model": "metainfo.source", "pk": 7828, "fields": {"orig_filename": "Oberkamp_Rudolf_1825_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 186", "author": "", "orig_id": 1408415}}, {"model": "metainfo.source", "pk": 7829, "fields": {"orig_filename": "Oberkofler_Anton_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 186f.", "author": "", "orig_id": 1408416}}, {"model": "metainfo.source", "pk": 7830, "fields": {"orig_filename": "Oberlaender_Alfred_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408417}}, {"model": "metainfo.source", "pk": 7831, "fields": {"orig_filename": "Oberlaender_Moritz-Jakob_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408418}}, {"model": "metainfo.source", "pk": 7832, "fields": {"orig_filename": "Oberleithner_Karl_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408419}}, {"model": "metainfo.source", "pk": 7833, "fields": {"orig_filename": "Oberleithner_Max_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408420}}, {"model": "metainfo.source", "pk": 7834, "fields": {"orig_filename": "Oberleitner_Andreas_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408421}}, {"model": "metainfo.source", "pk": 7835, "fields": {"orig_filename": "Oberleitner_Franz_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408422}}, {"model": "metainfo.source", "pk": 7836, "fields": {"orig_filename": "Oberleitner_Karl_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188f.", "author": "", "orig_id": 1408423}}, {"model": "metainfo.source", "pk": 7837, "fields": {"orig_filename": "Oberlercher_Paul-Gabriel_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 189", "author": "", "orig_id": 1408424}}, {"model": "metainfo.source", "pk": 7838, "fields": {"orig_filename": "Obermayer-Marnach_Kamillo_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191", "author": "", "orig_id": 1408497}}, {"model": "metainfo.source", "pk": 7839, "fields": {"orig_filename": "Obermayer-Rechtsinn_Wilhelm_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191", "author": "", "orig_id": 1408498}}, {"model": "metainfo.source", "pk": 7840, "fields": {"orig_filename": "Obermayer_Albert_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 189f.", "author": "", "orig_id": 1408492}}, {"model": "metainfo.source", "pk": 7841, "fields": {"orig_filename": "Obermayer_August_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190", "author": "", "orig_id": 1408493}}, {"model": "metainfo.source", "pk": 7842, "fields": {"orig_filename": "Obermayer_Friedrich_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190", "author": "", "orig_id": 1408494}}, {"model": "metainfo.source", "pk": 7843, "fields": {"orig_filename": "Obermayer_Peter-Eugen_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190f.", "author": "", "orig_id": 1408495}}, {"model": "metainfo.source", "pk": 7844, "fields": {"orig_filename": "Obermueller_Ignaz_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191f.", "author": "", "orig_id": 1408499}}, {"model": "metainfo.source", "pk": 7845, "fields": {"orig_filename": "Obermuellner_Adolf_1833_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 192", "author": "", "orig_id": 1408500}}, {"model": "metainfo.source", "pk": 7846, "fields": {"orig_filename": "Oberndorfer_Johann_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 192", "author": "", "orig_id": 1408502}}, {"model": "metainfo.source", "pk": 7847, "fields": {"orig_filename": "Obernyik_Karoly_1814_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408503}}, {"model": "metainfo.source", "pk": 7848, "fields": {"orig_filename": "Oberparleiter_Ignaz_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408504}}, {"model": "metainfo.source", "pk": 7849, "fields": {"orig_filename": "Oberrauch_Heinrich_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408505}}, {"model": "metainfo.source", "pk": 7850, "fields": {"orig_filename": "Oberschall_Adolf_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193f.", "author": "", "orig_id": 1408506}}, {"model": "metainfo.source", "pk": 7851, "fields": {"orig_filename": "Oberschall_Pal_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194", "author": "", "orig_id": 1408507}}, {"model": "metainfo.source", "pk": 7852, "fields": {"orig_filename": "Obersteiner_Heinrich_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194", "author": "", "orig_id": 1408508}}, {"model": "metainfo.source", "pk": 7853, "fields": {"orig_filename": "Obersteiner_Johann_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194f.", "author": "", "orig_id": 1408509}}, {"model": "metainfo.source", "pk": 7854, "fields": {"orig_filename": "Obersteiner_Ludwig_1899_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195", "author": "", "orig_id": 1408510}}, {"model": "metainfo.source", "pk": 7855, "fields": {"orig_filename": "Oberstolz_Rudolf_1865_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195", "author": "", "orig_id": 1408511}}, {"model": "metainfo.source", "pk": 7856, "fields": {"orig_filename": "Obertimpfler_Karl_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 196", "author": "", "orig_id": 1408513}}, {"model": "metainfo.source", "pk": 7857, "fields": {"orig_filename": "Obert_Franz_1828_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195f.", "author": "", "orig_id": 1408512}}, {"model": "metainfo.source", "pk": 7858, "fields": {"orig_filename": "Oberwalder_Jakob_1829_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 196f.", "author": "", "orig_id": 1408514}}, {"model": "metainfo.source", "pk": 7859, "fields": {"orig_filename": "Oberwalder_Oskar_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197", "author": "", "orig_id": 1408515}}, {"model": "metainfo.source", "pk": 7860, "fields": {"orig_filename": "Oberwalder_Thomas_1858_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197", "author": "", "orig_id": 1408516}}, {"model": "metainfo.source", "pk": 7861, "fields": {"orig_filename": "Oberweis_Josef_1826_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197f.", "author": "", "orig_id": 1408517}}, {"model": "metainfo.source", "pk": 7862, "fields": {"orig_filename": "Oberziner_Giovanni-Amennone_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408584}}, {"model": "metainfo.source", "pk": 7863, "fields": {"orig_filename": "Obhlidal_Thomas_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408586}}, {"model": "metainfo.source", "pk": 7864, "fields": {"orig_filename": "Oblak_Vatroslav_1864_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198f.", "author": "", "orig_id": 1408587}}, {"model": "metainfo.source", "pk": 7865, "fields": {"orig_filename": "Obminski_Tadeusz_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 199f.", "author": "", "orig_id": 1408588}}, {"model": "metainfo.source", "pk": 7866, "fields": {"orig_filename": "Oborny_Adolf_1840_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200", "author": "", "orig_id": 1408589}}, {"model": "metainfo.source", "pk": 7867, "fields": {"orig_filename": "Obrist_Johann-Georg_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200", "author": "", "orig_id": 1408591}}, {"model": "metainfo.source", "pk": 7868, "fields": {"orig_filename": "Obrist_Walther_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200f.", "author": "", "orig_id": 1408592}}, {"model": "metainfo.source", "pk": 7869, "fields": {"orig_filename": "Obrovsky_Jakub_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201", "author": "", "orig_id": 1408593}}, {"model": "metainfo.source", "pk": 7870, "fields": {"orig_filename": "Obruca_Rudolf_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201", "author": "", "orig_id": 1412810}}, {"model": "metainfo.source", "pk": 7871, "fields": {"orig_filename": "Obrzut_Andrzej_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201f.", "author": "", "orig_id": 1408594}}, {"model": "metainfo.source", "pk": 7872, "fields": {"orig_filename": "Obweger_Jakob_1857_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408595}}, {"model": "metainfo.source", "pk": 7873, "fields": {"orig_filename": "Obwexer_Paul_1828_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408596}}, {"model": "metainfo.source", "pk": 7874, "fields": {"orig_filename": "Obwurzer_Herbert_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408597}}, {"model": "metainfo.source", "pk": 7875, "fields": {"orig_filename": "Ochenkowski_Wladyslaw_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202f.", "author": "", "orig_id": 1408598}}, {"model": "metainfo.source", "pk": 7876, "fields": {"orig_filename": "Ochrymovyc_Ksenofont_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 203", "author": "", "orig_id": 1408599}}, {"model": "metainfo.source", "pk": 7877, "fields": {"orig_filename": "Ochsenheimer_Ferdinand_1767_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 203f.", "author": "", "orig_id": 1408600}}, {"model": "metainfo.source", "pk": 7878, "fields": {"orig_filename": "Ochsenheimer_Friedrich_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204", "author": "", "orig_id": 1408601}}, {"model": "metainfo.source", "pk": 7879, "fields": {"orig_filename": "Ocsvay_Ferenc_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204", "author": "", "orig_id": 1408602}}, {"model": "metainfo.source", "pk": 7880, "fields": {"orig_filename": "Odehnal_Franz_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204f.", "author": "", "orig_id": 1408603}}, {"model": "metainfo.source", "pk": 7881, "fields": {"orig_filename": "Odelga_Adolf_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408604}}, {"model": "metainfo.source", "pk": 7882, "fields": {"orig_filename": "Odescalchi_Artur_1836_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408605}}, {"model": "metainfo.source", "pk": 7883, "fields": {"orig_filename": "Odkolek-Ujezd_Adolf_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408606}}, {"model": "metainfo.source", "pk": 7884, "fields": {"orig_filename": "Odonell-Tyrconell_Heinrich-Lamoral_1802_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205f.", "author": "", "orig_id": 1408607}}, {"model": "metainfo.source", "pk": 7885, "fields": {"orig_filename": "Odonell-Tyrconell_Maximilian-Karl_1812_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 206", "author": "", "orig_id": 1408682}}, {"model": "metainfo.source", "pk": 7886, "fields": {"orig_filename": "Odry-Pacser_Lehel_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 206f.", "author": "", "orig_id": 1408683}}, {"model": "metainfo.source", "pk": 7887, "fields": {"orig_filename": "Odrzywolski_Kazimierz_1860_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408684}}, {"model": "metainfo.source", "pk": 7888, "fields": {"orig_filename": "Odvalil_Frantisek_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408685}}, {"model": "metainfo.source", "pk": 7889, "fields": {"orig_filename": "Oehri_Franz-Josef_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408686}}, {"model": "metainfo.source", "pk": 7890, "fields": {"orig_filename": "Oekroess_Balint_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207f.", "author": "", "orig_id": 1408687}}, {"model": "metainfo.source", "pk": 7891, "fields": {"orig_filename": "Oellacher_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408689}}, {"model": "metainfo.source", "pk": 7892, "fields": {"orig_filename": "Oelwein_Arthur_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208f.", "author": "", "orig_id": 1408690}}, {"model": "metainfo.source", "pk": 7893, "fields": {"orig_filename": "Oelzelt-Newin_Anton_1817_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408693}}, {"model": "metainfo.source", "pk": 7894, "fields": {"orig_filename": "Oelzelt-Newin_Anton_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209f.", "author": "", "orig_id": 1408694}}, {"model": "metainfo.source", "pk": 7895, "fields": {"orig_filename": "Oelz_Josef-Anton_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408692}}, {"model": "metainfo.source", "pk": 7896, "fields": {"orig_filename": "Oelz_Josef_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408691}}, {"model": "metainfo.source", "pk": 7897, "fields": {"orig_filename": "Oereg_Janos_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210", "author": "", "orig_id": 1408696}}, {"model": "metainfo.source", "pk": 7898, "fields": {"orig_filename": "Njegovan_Maximilian_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137f.", "author": "", "orig_id": 1409218}}, {"model": "metainfo.source", "pk": 7899, "fields": {"orig_filename": "Njegovan_Viktor_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138", "author": "", "orig_id": 1409219}}, {"model": "metainfo.source", "pk": 7900, "fields": {"orig_filename": "Nobel_Edmund_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138", "author": "", "orig_id": 1409220}}, {"model": "metainfo.source", "pk": 7901, "fields": {"orig_filename": "Nobel_Josef_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138f.", "author": "", "orig_id": 1409221}}, {"model": "metainfo.source", "pk": 7902, "fields": {"orig_filename": "Nobile_Carlo_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 139", "author": "", "orig_id": 1409222}}, {"model": "metainfo.source", "pk": 7903, "fields": {"orig_filename": "Nobile_Peter_1774_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 139f.", "author": "", "orig_id": 1409223}}, {"model": "metainfo.source", "pk": 7904, "fields": {"orig_filename": "Nobili_Johann_1798_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 140f.", "author": "", "orig_id": 1409224}}, {"model": "metainfo.source", "pk": 7905, "fields": {"orig_filename": "Nobl_Gabor_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409225}}, {"model": "metainfo.source", "pk": 7906, "fields": {"orig_filename": "Nodilo_Natko_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409226}}, {"model": "metainfo.source", "pk": 7907, "fields": {"orig_filename": "Noe-Nordberg_Karl-Gustav_1798_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142f.", "author": "", "orig_id": 1409231}}, {"model": "metainfo.source", "pk": 7908, "fields": {"orig_filename": "Noerdling_Wilhelm_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143", "author": "", "orig_id": 1409304}}, {"model": "metainfo.source", "pk": 7909, "fields": {"orig_filename": "Noesslboeck_Ignaz_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143", "author": "", "orig_id": 1409305}}, {"model": "metainfo.source", "pk": 7910, "fields": {"orig_filename": "Noetel_Louis_1837_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143f.", "author": "", "orig_id": 1409306}}, {"model": "metainfo.source", "pk": 7911, "fields": {"orig_filename": "Noetzl_Karl-Philipp_1789_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409307}}, {"model": "metainfo.source", "pk": 7912, "fields": {"orig_filename": "Noe_Franz_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409227}}, {"model": "metainfo.source", "pk": 7913, "fields": {"orig_filename": "Noe_Heinrich_1835_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409229}}, {"model": "metainfo.source", "pk": 7914, "fields": {"orig_filename": "Noe_Heinrich_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409228}}, {"model": "metainfo.source", "pk": 7915, "fields": {"orig_filename": "Noe_Oskar_1872_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409230}}, {"model": "metainfo.source", "pk": 7916, "fields": {"orig_filename": "Nogall_Johann_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409308}}, {"model": "metainfo.source", "pk": 7917, "fields": {"orig_filename": "Noggler_Anselm_1872_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409309}}, {"model": "metainfo.source", "pk": 7918, "fields": {"orig_filename": "Noggler_Anton_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144f.", "author": "", "orig_id": 1409310}}, {"model": "metainfo.source", "pk": 7919, "fields": {"orig_filename": "Noldin_Hieronymus_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 145", "author": "", "orig_id": 1409311}}, {"model": "metainfo.source", "pk": 7920, "fields": {"orig_filename": "Noldin_Josef_1888_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 145f.", "author": "", "orig_id": 1409312}}, {"model": "metainfo.source", "pk": 7921, "fields": {"orig_filename": "Nolli_Josip_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 146", "author": "", "orig_id": 1409313}}, {"model": "metainfo.source", "pk": 7922, "fields": {"orig_filename": "Noltsch_Wenzel-Ottokar_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 146f.", "author": "", "orig_id": 1409314}}, {"model": "metainfo.source", "pk": 7923, "fields": {"orig_filename": "Noorden_Karl_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 147", "author": "", "orig_id": 1409315}}, {"model": "metainfo.source", "pk": 7924, "fields": {"orig_filename": "Noot_Hugo_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 147f.", "author": "", "orig_id": 1409316}}, {"model": "metainfo.source", "pk": 7925, "fields": {"orig_filename": "Nopcsa-Felsoeszilvas_Franz_1815_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148", "author": "", "orig_id": 1409318}}, {"model": "metainfo.source", "pk": 7926, "fields": {"orig_filename": "Nopcsa-Felsoeszilvas_Franz_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148", "author": "", "orig_id": 1409317}}, {"model": "metainfo.source", "pk": 7927, "fields": {"orig_filename": "Norbert_Karl_1893_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148f.", "author": "", "orig_id": 1409319}}, {"model": "metainfo.source", "pk": 7928, "fields": {"orig_filename": "Nordau_Max_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 149f.", "author": "", "orig_id": 1409321}}, {"model": "metainfo.source", "pk": 7929, "fields": {"orig_filename": "Nordio_Enrico_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 150", "author": "", "orig_id": 1409322}}, {"model": "metainfo.source", "pk": 7930, "fields": {"orig_filename": "Nordmann_Johann_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 150f.", "author": "", "orig_id": 1409323}}, {"model": "metainfo.source", "pk": 7931, "fields": {"orig_filename": "Nord_Wilhelm_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 149", "author": "", "orig_id": 1409320}}, {"model": "metainfo.source", "pk": 7932, "fields": {"orig_filename": "Noren_Heinrich-Suso-Johannes_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151", "author": "", "orig_id": 1409324}}, {"model": "metainfo.source", "pk": 7933, "fields": {"orig_filename": "Norini_Emil_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151", "author": "", "orig_id": 1409325}}, {"model": "metainfo.source", "pk": 7934, "fields": {"orig_filename": "Norman-Neruda_Ludwig_1864_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151f.", "author": "", "orig_id": 1409327}}, {"model": "metainfo.source", "pk": 7935, "fields": {"orig_filename": "Normann-Friedenfels_Eduard_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152", "author": "", "orig_id": 1409395}}, {"model": "metainfo.source", "pk": 7936, "fields": {"orig_filename": "Norst_Anton_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152", "author": "", "orig_id": 1409396}}, {"model": "metainfo.source", "pk": 7937, "fields": {"orig_filename": "Nosievici_Stefan_1833_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152f.", "author": "", "orig_id": 1409397}}, {"model": "metainfo.source", "pk": 7938, "fields": {"orig_filename": "Nosinich_Johann_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153", "author": "", "orig_id": 1409398}}, {"model": "metainfo.source", "pk": 7939, "fields": {"orig_filename": "Noska_Franz_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153", "author": "", "orig_id": 1409399}}, {"model": "metainfo.source", "pk": 7940, "fields": {"orig_filename": "Nossberger_Adolf_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153f.", "author": "", "orig_id": 1409400}}, {"model": "metainfo.source", "pk": 7941, "fields": {"orig_filename": "Nossberger_Ferdinand_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154", "author": "", "orig_id": 1409401}}, {"model": "metainfo.source", "pk": 7942, "fields": {"orig_filename": "Nossek_Meinrad_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154", "author": "", "orig_id": 1409402}}, {"model": "metainfo.source", "pk": 7943, "fields": {"orig_filename": "Nossig_Alfred_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154f.", "author": "", "orig_id": 1409403}}, {"model": "metainfo.source", "pk": 7944, "fields": {"orig_filename": "Nostitz-Rieneck_Albert-Franz_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155", "author": "", "orig_id": 1409405}}, {"model": "metainfo.source", "pk": 7945, "fields": {"orig_filename": "Nostitz-Rieneck_Albert_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155", "author": "", "orig_id": 1409404}}, {"model": "metainfo.source", "pk": 7946, "fields": {"orig_filename": "Nostitz-Rieneck_Erwein-Felix-Maria_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155f.", "author": "", "orig_id": 1409406}}, {"model": "metainfo.source", "pk": 7947, "fields": {"orig_filename": "Nostitz-Rieneck_Hermann_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 156", "author": "", "orig_id": 1409407}}, {"model": "metainfo.source", "pk": 7948, "fields": {"orig_filename": "Nostitz-Rieneck_Johann_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 156", "author": "", "orig_id": 1409408}}, {"model": "metainfo.source", "pk": 7949, "fields": {"orig_filename": "Nostitz-Rieneck_Karl-Erwein_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409409}}, {"model": "metainfo.source", "pk": 7950, "fields": {"orig_filename": "Nostitz-Rieneck_Robert_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409410}}, {"model": "metainfo.source", "pk": 7951, "fields": {"orig_filename": "Noszlopy_Gaspar_1822_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409411}}, {"model": "metainfo.source", "pk": 7952, "fields": {"orig_filename": "Nothnagel_Hermann_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 158", "author": "", "orig_id": 1409413}}, {"model": "metainfo.source", "pk": 7953, "fields": {"orig_filename": "Noth_Friedrich-Julius_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157f.", "author": "", "orig_id": 1409412}}, {"model": "metainfo.source", "pk": 7954, "fields": {"orig_filename": "Nottebohm_Martin-Gustav_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 158f.", "author": "", "orig_id": 1409414}}, {"model": "metainfo.source", "pk": 7955, "fields": {"orig_filename": "Notz_Eugen_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159", "author": "", "orig_id": 1409415}}, {"model": "metainfo.source", "pk": 7956, "fields": {"orig_filename": "Nouseul_Johann_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159", "author": "", "orig_id": 1409416}}, {"model": "metainfo.source", "pk": 7957, "fields": {"orig_filename": "Novacek_Vojtech-Jaromir_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408135}}, {"model": "metainfo.source", "pk": 7958, "fields": {"orig_filename": "Novak-Arienti_Guido_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 168f.", "author": "", "orig_id": 1408229}}, {"model": "metainfo.source", "pk": 7959, "fields": {"orig_filename": "Novakova_Tereza_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169", "author": "", "orig_id": 1408230}}, {"model": "metainfo.source", "pk": 7960, "fields": {"orig_filename": "Novakovic_Stefan__1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169", "author": "", "orig_id": 1408231}}, {"model": "metainfo.source", "pk": 7961, "fields": {"orig_filename": "Novak_Anton_1848_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408136}}, {"model": "metainfo.source", "pk": 7962, "fields": {"orig_filename": "Novak_Anton_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408137}}, {"model": "metainfo.source", "pk": 7963, "fields": {"orig_filename": "Novak_Arne_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161", "author": "", "orig_id": 1408138}}, {"model": "metainfo.source", "pk": 7964, "fields": {"orig_filename": "Novak_Ernst_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161", "author": "", "orig_id": 1408139}}, {"model": "metainfo.source", "pk": 7965, "fields": {"orig_filename": "Novak_Ernst_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161f.", "author": "", "orig_id": 1408140}}, {"model": "metainfo.source", "pk": 7966, "fields": {"orig_filename": "Novak_Franc_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162", "author": "", "orig_id": 1408142}}, {"model": "metainfo.source", "pk": 7967, "fields": {"orig_filename": "Novak_Fran_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162", "author": "", "orig_id": 1408141}}, {"model": "metainfo.source", "pk": 7968, "fields": {"orig_filename": "Novak_Gustav_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162f.", "author": "", "orig_id": 1408143}}, {"model": "metainfo.source", "pk": 7969, "fields": {"orig_filename": "Novak_Jan-Bedrich_1872_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 163", "author": "", "orig_id": 1408144}}, {"model": "metainfo.source", "pk": 7970, "fields": {"orig_filename": "Novak_Jan-Vaclav_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 163f.", "author": "", "orig_id": 1408145}}, {"model": "metainfo.source", "pk": 7971, "fields": {"orig_filename": "Novak_Janez_1756_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408146}}, {"model": "metainfo.source", "pk": 7972, "fields": {"orig_filename": "Novak_Johann_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408147}}, {"model": "metainfo.source", "pk": 7973, "fields": {"orig_filename": "Novak_Josef_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408148}}, {"model": "metainfo.source", "pk": 7974, "fields": {"orig_filename": "Novak_Josef_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408149}}, {"model": "metainfo.source", "pk": 7975, "fields": {"orig_filename": "Novak_Josip_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408150}}, {"model": "metainfo.source", "pk": 7976, "fields": {"orig_filename": "Novak_Julian_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408151}}, {"model": "metainfo.source", "pk": 7977, "fields": {"orig_filename": "Novak_Karl-Friedrich_1882_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165f.", "author": "", "orig_id": 1408152}}, {"model": "metainfo.source", "pk": 7978, "fields": {"orig_filename": "Novak_Lajos_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166", "author": "", "orig_id": 1408153}}, {"model": "metainfo.source", "pk": 7979, "fields": {"orig_filename": "Novak_Peter_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166", "author": "", "orig_id": 1408154}}, {"model": "metainfo.source", "pk": 7980, "fields": {"orig_filename": "Novak_Robert_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166f.", "author": "", "orig_id": 1408225}}, {"model": "metainfo.source", "pk": 7981, "fields": {"orig_filename": "Novak_Vilko_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 167", "author": "", "orig_id": 1408226}}, {"model": "metainfo.source", "pk": 7982, "fields": {"orig_filename": "Novak_Vitezslav_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 167f.", "author": "", "orig_id": 1408227}}, {"model": "metainfo.source", "pk": 7983, "fields": {"orig_filename": "Novak_Vjenceslav_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 168", "author": "", "orig_id": 1408228}}, {"model": "metainfo.source", "pk": 7984, "fields": {"orig_filename": "Novic_Otocanin-Joksim_1806_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169f.", "author": "", "orig_id": 1408232}}, {"model": "metainfo.source", "pk": 7985, "fields": {"orig_filename": "Novotny_Aurel_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170", "author": "", "orig_id": 1408233}}, {"model": "metainfo.source", "pk": 7986, "fields": {"orig_filename": "Novotny_Eduard_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170", "author": "", "orig_id": 1408234}}, {"model": "metainfo.source", "pk": 7987, "fields": {"orig_filename": "Novotny_Jindrich_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170f.", "author": "", "orig_id": 1408235}}, {"model": "metainfo.source", "pk": 7988, "fields": {"orig_filename": "Novotny_Karl_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408237}}, {"model": "metainfo.source", "pk": 7989, "fields": {"orig_filename": "Novotny_Stjepan_1833_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408238}}, {"model": "metainfo.source", "pk": 7990, "fields": {"orig_filename": "Novotny_Theodor_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408239}}, {"model": "metainfo.source", "pk": 7991, "fields": {"orig_filename": "Novotny_Vaclav_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172", "author": "", "orig_id": 1408240}}, {"model": "metainfo.source", "pk": 7992, "fields": {"orig_filename": "Novotny_Walter_1920_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172", "author": "", "orig_id": 1408241}}, {"model": "metainfo.source", "pk": 7993, "fields": {"orig_filename": "Novy_Franz_1900_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172f.", "author": "", "orig_id": 1408242}}, {"model": "metainfo.source", "pk": 7994, "fields": {"orig_filename": "Nowaczynski_Adolf_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 173", "author": "", "orig_id": 1408243}}, {"model": "metainfo.source", "pk": 7995, "fields": {"orig_filename": "Nowakowski_Jan_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 173f.", "author": "", "orig_id": 1408244}}, {"model": "metainfo.source", "pk": 7996, "fields": {"orig_filename": "Nowakowski_Waclaw_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 174", "author": "", "orig_id": 1408245}}, {"model": "metainfo.source", "pk": 7997, "fields": {"orig_filename": "Nowicki-Sila_Maksymilian_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175", "author": "", "orig_id": 1408313}}, {"model": "metainfo.source", "pk": 7998, "fields": {"orig_filename": "Nowicki_Franciszek-Henryk_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 174f.", "author": "", "orig_id": 1408312}}, {"model": "metainfo.source", "pk": 7999, "fields": {"orig_filename": "Nuchten_Josef_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175", "author": "", "orig_id": 1408314}}, {"model": "metainfo.source", "pk": 8000, "fields": {"orig_filename": "Neuner_Jakob-Anton_1806_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408843}}, {"model": "metainfo.source", "pk": 8001, "fields": {"orig_filename": "Neuner_Johann_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408844}}, {"model": "metainfo.source", "pk": 8002, "fields": {"orig_filename": "Neupauer_Franz-Xaver_1753_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408845}}, {"model": "metainfo.source", "pk": 8003, "fields": {"orig_filename": "Neurath_Anna_1877_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101f.", "author": "", "orig_id": 1408846}}, {"model": "metainfo.source", "pk": 8004, "fields": {"orig_filename": "Neurath_Otto_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 102f.", "author": "", "orig_id": 1408847}}, {"model": "metainfo.source", "pk": 8005, "fields": {"orig_filename": "Neurath_Wilhelm_1840_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 103", "author": "", "orig_id": 1408848}}, {"model": "metainfo.source", "pk": 8006, "fields": {"orig_filename": "Neureiter_Ferdinand_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 103f.", "author": "", "orig_id": 1408849}}, {"model": "metainfo.source", "pk": 8007, "fields": {"orig_filename": "Neureiter_Michael_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104", "author": "", "orig_id": 1408850}}, {"model": "metainfo.source", "pk": 8008, "fields": {"orig_filename": "Neureutter_Bohdan_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104", "author": "", "orig_id": 1408851}}, {"model": "metainfo.source", "pk": 8009, "fields": {"orig_filename": "Neusser_Edmund_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104f.", "author": "", "orig_id": 1408853}}, {"model": "metainfo.source", "pk": 8010, "fields": {"orig_filename": "Neusser_Karl_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105", "author": "", "orig_id": 1408854}}, {"model": "metainfo.source", "pk": 8011, "fields": {"orig_filename": "Neustaedter-Stuermer_Odo_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105f.", "author": "", "orig_id": 1408856}}, {"model": "metainfo.source", "pk": 8012, "fields": {"orig_filename": "Neustaedter_Josef_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105", "author": "", "orig_id": 1408855}}, {"model": "metainfo.source", "pk": 8013, "fields": {"orig_filename": "Neuwall_Albert_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 106", "author": "", "orig_id": 1408857}}, {"model": "metainfo.source", "pk": 8014, "fields": {"orig_filename": "Neuwirth-Neufels_Theodor_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408864}}, {"model": "metainfo.source", "pk": 8015, "fields": {"orig_filename": "Neuwirth_August_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 106f.", "author": "", "orig_id": 1408859}}, {"model": "metainfo.source", "pk": 8016, "fields": {"orig_filename": "Neuwirth_Josef_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 107", "author": "", "orig_id": 1408860}}, {"model": "metainfo.source", "pk": 8017, "fields": {"orig_filename": "Neuwirth_Josef_1855_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 107f.", "author": "", "orig_id": 1408861}}, {"model": "metainfo.source", "pk": 8018, "fields": {"orig_filename": "Neuwirth_Rosa_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408862}}, {"model": "metainfo.source", "pk": 8019, "fields": {"orig_filename": "Neuwirth_Viktor_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408863}}, {"model": "metainfo.source", "pk": 8020, "fields": {"orig_filename": "Nevinny_Josef_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108f.", "author": "", "orig_id": 1408865}}, {"model": "metainfo.source", "pk": 8021, "fields": {"orig_filename": "Nevole_Milan_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 109", "author": "", "orig_id": 1408930}}, {"model": "metainfo.source", "pk": 8022, "fields": {"orig_filename": "Nevy_Laszlo_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 109f.", "author": "", "orig_id": 1408931}}, {"model": "metainfo.source", "pk": 8023, "fields": {"orig_filename": "Newald_Johann_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408932}}, {"model": "metainfo.source", "pk": 8024, "fields": {"orig_filename": "Newald_Julius_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408933}}, {"model": "metainfo.source", "pk": 8025, "fields": {"orig_filename": "Neydhart_Josef_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 111", "author": "", "orig_id": 1412809}}, {"model": "metainfo.source", "pk": 8026, "fields": {"orig_filename": "Ney_David_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408934}}, {"model": "metainfo.source", "pk": 8027, "fields": {"orig_filename": "Ney_Ferenc_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110f.", "author": "", "orig_id": 1408935}}, {"model": "metainfo.source", "pk": 8028, "fields": {"orig_filename": "Nickerl_Franz-Anton_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 111f.", "author": "", "orig_id": 1408937}}, {"model": "metainfo.source", "pk": 8029, "fields": {"orig_filename": "Nickerl_Ottokar_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112", "author": "", "orig_id": 1408938}}, {"model": "metainfo.source", "pk": 8030, "fields": {"orig_filename": "Nickl-Oppavar_Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112", "author": "", "orig_id": 1408939}}, {"model": "metainfo.source", "pk": 8031, "fields": {"orig_filename": "Nicoara_Moise_1784_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112f.", "author": "", "orig_id": 1408940}}, {"model": "metainfo.source", "pk": 8032, "fields": {"orig_filename": "Nicolodi_Aurelio_1894_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 113f.", "author": "", "orig_id": 1408942}}, {"model": "metainfo.source", "pk": 8033, "fields": {"orig_filename": "Nicolussi_Paolaz-Simon_1852_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114", "author": "", "orig_id": 1408943}}, {"model": "metainfo.source", "pk": 8034, "fields": {"orig_filename": "Nida-Ruemelin_Wilhelm_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114", "author": "", "orig_id": 1408944}}, {"model": "metainfo.source", "pk": 8035, "fields": {"orig_filename": "Nidecki_Tomasz-Napoleon_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114f.", "author": "", "orig_id": 1408945}}, {"model": "metainfo.source", "pk": 8036, "fields": {"orig_filename": "Niebauer_Anton_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 115", "author": "", "orig_id": 1408946}}, {"model": "metainfo.source", "pk": 8037, "fields": {"orig_filename": "Niederegger_Alois_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 115f.", "author": "", "orig_id": 1408947}}, {"model": "metainfo.source", "pk": 8038, "fields": {"orig_filename": "Niedergesaess_Robert_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 116", "author": "", "orig_id": 1408948}}, {"model": "metainfo.source", "pk": 8039, "fields": {"orig_filename": "Niederist_Josef_1809_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 116f.", "author": "", "orig_id": 1408949}}, {"model": "metainfo.source", "pk": 8040, "fields": {"orig_filename": "Niederle_Jindrich_1840_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 117", "author": "", "orig_id": 1408950}}, {"model": "metainfo.source", "pk": 8041, "fields": {"orig_filename": "Niederle_Lubor_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 117f.", "author": "", "orig_id": 1408951}}, {"model": "metainfo.source", "pk": 8042, "fields": {"orig_filename": "Niedermaier_Franz-Xaver_1864_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408952}}, {"model": "metainfo.source", "pk": 8043, "fields": {"orig_filename": "Niedermaier_Matthias_1750_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408953}}, {"model": "metainfo.source", "pk": 8044, "fields": {"orig_filename": "Niedermann_Johann_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408954}}, {"model": "metainfo.source", "pk": 8045, "fields": {"orig_filename": "Niederwieser_Johann_1853_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409021}}, {"model": "metainfo.source", "pk": 8046, "fields": {"orig_filename": "Niedrist_Arsenius_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409022}}, {"model": "metainfo.source", "pk": 8047, "fields": {"orig_filename": "Niedrist_Karl-Anton_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409023}}, {"model": "metainfo.source", "pk": 8048, "fields": {"orig_filename": "Niedzialkowska_Wiktoria_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119f.", "author": "", "orig_id": 1409024}}, {"model": "metainfo.source", "pk": 8049, "fields": {"orig_filename": "Niedzialkowski_Janusz_1848_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409025}}, {"model": "metainfo.source", "pk": 8050, "fields": {"orig_filename": "Niedzielski_Julian_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409026}}, {"model": "metainfo.source", "pk": 8051, "fields": {"orig_filename": "Niedzielski_Stanislaw_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409027}}, {"model": "metainfo.source", "pk": 8052, "fields": {"orig_filename": "Niedzwiecki_Zygmunt_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120f.", "author": "", "orig_id": 1409028}}, {"model": "metainfo.source", "pk": 8053, "fields": {"orig_filename": "Niedzwiedzki_Julian_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121", "author": "", "orig_id": 1409029}}, {"model": "metainfo.source", "pk": 8054, "fields": {"orig_filename": "Niemann_Georg_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121", "author": "", "orig_id": 1409030}}, {"model": "metainfo.source", "pk": 8055, "fields": {"orig_filename": "Niembsch-Strehlenau_Nikolaus-Franz_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121f.", "author": "", "orig_id": 1409031}}, {"model": "metainfo.source", "pk": 8056, "fields": {"orig_filename": "Niementowski_Stefan_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 122f.", "author": "", "orig_id": 1409032}}, {"model": "metainfo.source", "pk": 8057, "fields": {"orig_filename": "Niemetschek_Franz_1766_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123", "author": "", "orig_id": 1409033}}, {"model": "metainfo.source", "pk": 8058, "fields": {"orig_filename": "Niemilowicz_Wladyslaw_1863_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123", "author": "", "orig_id": 1409034}}, {"model": "metainfo.source", "pk": 8059, "fields": {"orig_filename": "Niemirower_Jakub-Izaak_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123f.", "author": "", "orig_id": 1409035}}, {"model": "metainfo.source", "pk": 8060, "fields": {"orig_filename": "Niemtschik_Rudolf_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409036}}, {"model": "metainfo.source", "pk": 8061, "fields": {"orig_filename": "Nierhaus_Karl_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409037}}, {"model": "metainfo.source", "pk": 8062, "fields": {"orig_filename": "Niernsee_Rudolf_1810_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409038}}, {"model": "metainfo.source", "pk": 8063, "fields": {"orig_filename": "Niese_Johanna_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124f.", "author": "", "orig_id": 1409039}}, {"model": "metainfo.source", "pk": 8064, "fields": {"orig_filename": "Niesiolowski-Niesiolowice_Viktor_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 125f.", "author": "", "orig_id": 1409040}}, {"model": "metainfo.source", "pk": 8065, "fields": {"orig_filename": "Niessl-Mayendorf_Gustav_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 126f.", "author": "", "orig_id": 1409041}}, {"model": "metainfo.source", "pk": 8066, "fields": {"orig_filename": "Niessner_Moritz_1898_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409042}}, {"model": "metainfo.source", "pk": 8067, "fields": {"orig_filename": "Niewiadomski_Stanislaw_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409116}}, {"model": "metainfo.source", "pk": 8068, "fields": {"orig_filename": "Nigg_Josef_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409117}}, {"model": "metainfo.source", "pk": 8069, "fields": {"orig_filename": "Nigg_Marianne_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127f.", "author": "", "orig_id": 1409118}}, {"model": "metainfo.source", "pk": 8070, "fields": {"orig_filename": "Niglutsch_Josef_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409119}}, {"model": "metainfo.source", "pk": 8071, "fields": {"orig_filename": "Nigrin_Vela_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409120}}, {"model": "metainfo.source", "pk": 8072, "fields": {"orig_filename": "Nikisch_Arthur_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409121}}, {"model": "metainfo.source", "pk": 8073, "fields": {"orig_filename": "Nikitsch-Boulles-Estenau_Paul_1878_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409122}}, {"model": "metainfo.source", "pk": 8074, "fields": {"orig_filename": "Niklas_Valentin_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409123}}, {"model": "metainfo.source", "pk": 8075, "fields": {"orig_filename": "Nikodem_Arthur_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409124}}, {"model": "metainfo.source", "pk": 8076, "fields": {"orig_filename": "Nikolajevic_Djordje_1807_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130", "author": "", "orig_id": 1409126}}, {"model": "metainfo.source", "pk": 8077, "fields": {"orig_filename": "Nikola_Josef_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129f.", "author": "", "orig_id": 1409125}}, {"model": "metainfo.source", "pk": 8078, "fields": {"orig_filename": "Nikoletti_Angela_1905_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130", "author": "", "orig_id": 1409127}}, {"model": "metainfo.source", "pk": 8079, "fields": {"orig_filename": "Nikolics_Sandor_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409132}}, {"model": "metainfo.source", "pk": 8080, "fields": {"orig_filename": "Nikolic_Atanasije_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130f.", "author": "", "orig_id": 1409128}}, {"model": "metainfo.source", "pk": 8081, "fields": {"orig_filename": "Nikolic_Isidor_1805_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409129}}, {"model": "metainfo.source", "pk": 8082, "fields": {"orig_filename": "Nikolic_Sergije_1816_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409130}}, {"model": "metainfo.source", "pk": 8083, "fields": {"orig_filename": "Nikolic_Vladimir_1829_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409131}}, {"model": "metainfo.source", "pk": 8084, "fields": {"orig_filename": "Nikolowsky_Anton_1855_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131f.", "author": "", "orig_id": 1409133}}, {"model": "metainfo.source", "pk": 8085, "fields": {"orig_filename": "Nilles_Nikolaus_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 132", "author": "", "orig_id": 1409134}}, {"model": "metainfo.source", "pk": 8086, "fields": {"orig_filename": "Ninni_Alessandro-Pericle_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 132f.", "author": "", "orig_id": 1409135}}, {"model": "metainfo.source", "pk": 8087, "fields": {"orig_filename": "Nippel-Weyerheim_Franz-Xaver_1787_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133", "author": "", "orig_id": 1409136}}, {"model": "metainfo.source", "pk": 8088, "fields": {"orig_filename": "Nischler_Franz-Xaver_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133", "author": "", "orig_id": 1409137}}, {"model": "metainfo.source", "pk": 8089, "fields": {"orig_filename": "Nisius_Johann_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133f.", "author": "", "orig_id": 1409138}}, {"model": "metainfo.source", "pk": 8090, "fields": {"orig_filename": "Nissel_Franz_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 134", "author": "", "orig_id": 1409139}}, {"model": "metainfo.source", "pk": 8091, "fields": {"orig_filename": "Nissen_Konstanze_1762_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 134f.", "author": "", "orig_id": 1409207}}, {"model": "metainfo.source", "pk": 8092, "fields": {"orig_filename": "Nissl_Anton_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135", "author": "", "orig_id": 1409208}}, {"model": "metainfo.source", "pk": 8093, "fields": {"orig_filename": "Nissl_Franz_1771_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135", "author": "", "orig_id": 1409209}}, {"model": "metainfo.source", "pk": 8094, "fields": {"orig_filename": "Nissl_Franz_1852_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135f.", "author": "", "orig_id": 1409210}}, {"model": "metainfo.source", "pk": 8095, "fields": {"orig_filename": "Nitsche-Hohenplan_Friedrich_1835_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136", "author": "", "orig_id": 1409212}}, {"model": "metainfo.source", "pk": 8096, "fields": {"orig_filename": "Nitsche_Johannes-Josef-Friedrich_1759_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136", "author": "", "orig_id": 1409211}}, {"model": "metainfo.source", "pk": 8097, "fields": {"orig_filename": "Nitschner_Josef_1805_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136f.", "author": "", "orig_id": 1409213}}, {"model": "metainfo.source", "pk": 8098, "fields": {"orig_filename": "Nittel_Anton_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409214}}, {"model": "metainfo.source", "pk": 8099, "fields": {"orig_filename": "Nittner_Eduard_1885_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409215}}, {"model": "metainfo.source", "pk": 8100, "fields": {"orig_filename": "Nitzelberger_Moritz_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409216}}, {"model": "metainfo.source", "pk": 8101, "fields": {"orig_filename": "Nemes-Janoshalma_Marcell_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409828}}, {"model": "metainfo.source", "pk": 8102, "fields": {"orig_filename": "Nemethy-Nemetfalva_August_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409833}}, {"model": "metainfo.source", "pk": 8103, "fields": {"orig_filename": "Nemethy_Geza_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66", "author": "", "orig_id": 1409829}}, {"model": "metainfo.source", "pk": 8104, "fields": {"orig_filename": "Nemethy_Johann_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66", "author": "", "orig_id": 1409830}}, {"model": "metainfo.source", "pk": 8105, "fields": {"orig_filename": "Nemethy_Josef_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66f.", "author": "", "orig_id": 1409831}}, {"model": "metainfo.source", "pk": 8106, "fields": {"orig_filename": "Nemethy_Karoly_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409832}}, {"model": "metainfo.source", "pk": 8107, "fields": {"orig_filename": "Nemetschek-Foehren_Heinrich_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409834}}, {"model": "metainfo.source", "pk": 8108, "fields": {"orig_filename": "Nemetz_Andreas_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409835}}, {"model": "metainfo.source", "pk": 8109, "fields": {"orig_filename": "Nendtvich_Karoly-Miksa_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409836}}, {"model": "metainfo.source", "pk": 8110, "fields": {"orig_filename": "Nentwich_Josef_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409837}}, {"model": "metainfo.source", "pk": 8111, "fields": {"orig_filename": "Nentwich_Milo_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68f.", "author": "", "orig_id": 1409838}}, {"model": "metainfo.source", "pk": 8112, "fields": {"orig_filename": "Nepalleck_Wilhelm-Friedrich_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409839}}, {"model": "metainfo.source", "pk": 8113, "fields": {"orig_filename": "Nerat_Miha_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409911}}, {"model": "metainfo.source", "pk": 8114, "fields": {"orig_filename": "Neruda_Franz_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409912}}, {"model": "metainfo.source", "pk": 8115, "fields": {"orig_filename": "Neruda_Jan_1834_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69f.", "author": "", "orig_id": 1409913}}, {"model": "metainfo.source", "pk": 8116, "fields": {"orig_filename": "Neruda_Wilma_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 70", "author": "", "orig_id": 1409914}}, {"model": "metainfo.source", "pk": 8117, "fields": {"orig_filename": "Nerz_Ludwig_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 70f.", "author": "", "orig_id": 1409915}}, {"model": "metainfo.source", "pk": 8118, "fields": {"orig_filename": "Neseni_Robert_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71", "author": "", "orig_id": 1409916}}, {"model": "metainfo.source", "pk": 8119, "fields": {"orig_filename": "Nesper_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71", "author": "", "orig_id": 1409918}}, {"model": "metainfo.source", "pk": 8120, "fields": {"orig_filename": "Nesselthaler_Andreas_1746_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72", "author": "", "orig_id": 1409921}}, {"model": "metainfo.source", "pk": 8121, "fields": {"orig_filename": "Nessel_Eduard_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71f.", "author": "", "orig_id": 1409919}}, {"model": "metainfo.source", "pk": 8122, "fields": {"orig_filename": "Nessel_Franz_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72", "author": "", "orig_id": 1409920}}, {"model": "metainfo.source", "pk": 8123, "fields": {"orig_filename": "Nessler_Nikolaus_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72f.", "author": "", "orig_id": 1409922}}, {"model": "metainfo.source", "pk": 8124, "fields": {"orig_filename": "Nestlehner_Alphons_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409923}}, {"model": "metainfo.source", "pk": 8125, "fields": {"orig_filename": "Nestler_Johann-Karl_1783_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409924}}, {"model": "metainfo.source", "pk": 8126, "fields": {"orig_filename": "Nestorovic_Uros-Stefan_1765_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409925}}, {"model": "metainfo.source", "pk": 8127, "fields": {"orig_filename": "Nestroy_Johann_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73ff.", "author": "", "orig_id": 1409926}}, {"model": "metainfo.source", "pk": 8128, "fields": {"orig_filename": "Nesvera_Josef_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 75", "author": "", "orig_id": 1409927}}, {"model": "metainfo.source", "pk": 8129, "fields": {"orig_filename": "Netoliczka_Eugen_1825_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 75f.", "author": "", "orig_id": 1409928}}, {"model": "metainfo.source", "pk": 8130, "fields": {"orig_filename": "Netoliczka_Oskar-Franz-Josef_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76", "author": "", "orig_id": 1409929}}, {"model": "metainfo.source", "pk": 8131, "fields": {"orig_filename": "Netolitzky_August_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76", "author": "", "orig_id": 1409930}}, {"model": "metainfo.source", "pk": 8132, "fields": {"orig_filename": "Netolitzky_Friedrich_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76f.", "author": "", "orig_id": 1409931}}, {"model": "metainfo.source", "pk": 8133, "fields": {"orig_filename": "Netolitzky_Julius_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 77", "author": "", "orig_id": 1409932}}, {"model": "metainfo.source", "pk": 8134, "fields": {"orig_filename": "Netuschill_Josef_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 77", "author": "", "orig_id": 1409933}}, {"model": "metainfo.source", "pk": 8135, "fields": {"orig_filename": "Netzer_Johann-Josef_1808_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 78", "author": "", "orig_id": 1409934}}, {"model": "metainfo.source", "pk": 8136, "fields": {"orig_filename": "Neubauer_Adolf_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 78f.", "author": "", "orig_id": 1410003}}, {"model": "metainfo.source", "pk": 8137, "fields": {"orig_filename": "Neubauer_Gustav-Adolf_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79", "author": "", "orig_id": 1410005}}, {"model": "metainfo.source", "pk": 8138, "fields": {"orig_filename": "Neubauer_Johann_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79", "author": "", "orig_id": 1410006}}, {"model": "metainfo.source", "pk": 8139, "fields": {"orig_filename": "Neubauer_Josef_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79f.", "author": "", "orig_id": 1410007}}, {"model": "metainfo.source", "pk": 8140, "fields": {"orig_filename": "Neubauer_Maximilian-Hermann_1879_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80", "author": "", "orig_id": 1410008}}, {"model": "metainfo.source", "pk": 8141, "fields": {"orig_filename": "Neubauer_Rudolf-Vinzenz_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80f.", "author": "", "orig_id": 1410010}}, {"model": "metainfo.source", "pk": 8142, "fields": {"orig_filename": "Neubauer_Rudolf_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80", "author": "", "orig_id": 1410009}}, {"model": "metainfo.source", "pk": 8143, "fields": {"orig_filename": "Neuberger_Rudolf_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410013}}, {"model": "metainfo.source", "pk": 8144, "fields": {"orig_filename": "Neuber_August_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 81", "author": "", "orig_id": 1410011}}, {"model": "metainfo.source", "pk": 8145, "fields": {"orig_filename": "Neuber_Wilhelm_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 81f.", "author": "", "orig_id": 1410012}}, {"model": "metainfo.source", "pk": 8146, "fields": {"orig_filename": "Neuboeck_Peter_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410014}}, {"model": "metainfo.source", "pk": 8147, "fields": {"orig_filename": "Neuburger_Otto_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410015}}, {"model": "metainfo.source", "pk": 8148, "fields": {"orig_filename": "Neuda_Max_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82f.", "author": "", "orig_id": 1410016}}, {"model": "metainfo.source", "pk": 8149, "fields": {"orig_filename": "Neudeck_Andreas_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410017}}, {"model": "metainfo.source", "pk": 8150, "fields": {"orig_filename": "Neudoerfer_Ignaz-Josef_1825_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410018}}, {"model": "metainfo.source", "pk": 8151, "fields": {"orig_filename": "Neuerer_Gottfried_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410019}}, {"model": "metainfo.source", "pk": 8152, "fields": {"orig_filename": "Neufeld_Eugen_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83f.", "author": "", "orig_id": 1410020}}, {"model": "metainfo.source", "pk": 8153, "fields": {"orig_filename": "Neugart_Trudpert_1742_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84", "author": "", "orig_id": 1410021}}, {"model": "metainfo.source", "pk": 8154, "fields": {"orig_filename": "Neugebauer-Aszod_Laszlo_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84f.", "author": "", "orig_id": 1410023}}, {"model": "metainfo.source", "pk": 8155, "fields": {"orig_filename": "Neugebauer_Josef_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84", "author": "", "orig_id": 1410022}}, {"model": "metainfo.source", "pk": 8156, "fields": {"orig_filename": "Neugeboren_Daniel-Georg_1759_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1410024}}, {"model": "metainfo.source", "pk": 8157, "fields": {"orig_filename": "Neugeboren_Johann-Ludwig_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1410025}}, {"model": "metainfo.source", "pk": 8158, "fields": {"orig_filename": "Neugeboren_Karl_1789_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1408656}}, {"model": "metainfo.source", "pk": 8159, "fields": {"orig_filename": "Neuhauser_Franz_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86", "author": "", "orig_id": 1408659}}, {"model": "metainfo.source", "pk": 8160, "fields": {"orig_filename": "Neuhofer_Franz-Karl_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86", "author": "", "orig_id": 1408660}}, {"model": "metainfo.source", "pk": 8161, "fields": {"orig_filename": "Neuhold-Neuholdau_Johann_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86f.", "author": "", "orig_id": 1408661}}, {"model": "metainfo.source", "pk": 8162, "fields": {"orig_filename": "Neukomm_Sigismund_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87", "author": "", "orig_id": 1408662}}, {"model": "metainfo.source", "pk": 8163, "fields": {"orig_filename": "Neuling_Vinzenz_1795_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87", "author": "", "orig_id": 1408663}}, {"model": "metainfo.source", "pk": 8164, "fields": {"orig_filename": "Neumaier_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87f.", "author": "", "orig_id": 1408664}}, {"model": "metainfo.source", "pk": 8165, "fields": {"orig_filename": "Neumaier_Melchior_1845_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 88", "author": "", "orig_id": 1408665}}, {"model": "metainfo.source", "pk": 8166, "fields": {"orig_filename": "Neumaier_Rudolf_1887_1977.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454874}}, {"model": "metainfo.source", "pk": 8167, "fields": {"orig_filename": "Neumaier_Vinzenz_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 88f.", "author": "", "orig_id": 1408666}}, {"model": "metainfo.source", "pk": 8168, "fields": {"orig_filename": "Neumann-Ditterswaldt_Adolf_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 96", "author": "", "orig_id": 1408763}}, {"model": "metainfo.source", "pk": 8169, "fields": {"orig_filename": "Neumann-Heilwart_Isidor_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 96f.", "author": "", "orig_id": 1408764}}, {"model": "metainfo.source", "pk": 8170, "fields": {"orig_filename": "Neumann-Heilwart_Paul_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97", "author": "", "orig_id": 1408765}}, {"model": "metainfo.source", "pk": 8171, "fields": {"orig_filename": "Neumann-Hethars_Heinrich_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97", "author": "", "orig_id": 1408766}}, {"model": "metainfo.source", "pk": 8172, "fields": {"orig_filename": "Neumann-Spallart_Anatol_1872_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97f.", "author": "", "orig_id": 1408768}}, {"model": "metainfo.source", "pk": 8173, "fields": {"orig_filename": "Neumann-Spallart_Franz-Xaver_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 98", "author": "", "orig_id": 1408769}}, {"model": "metainfo.source", "pk": 8174, "fields": {"orig_filename": "Neumann-Spallart_Josef-Franz_1797_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 98f.", "author": "", "orig_id": 1408770}}, {"model": "metainfo.source", "pk": 8175, "fields": {"orig_filename": "Neumann-Spallart_Julius_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 99", "author": "", "orig_id": 1408771}}, {"model": "metainfo.source", "pk": 8176, "fields": {"orig_filename": "Neumann_Alexander_1856_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89", "author": "", "orig_id": 1408667}}, {"model": "metainfo.source", "pk": 8177, "fields": {"orig_filename": "Neumann_Alois_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89", "author": "", "orig_id": 1408668}}, {"model": "metainfo.source", "pk": 8178, "fields": {"orig_filename": "Neumann_Angelo_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89f.", "author": "", "orig_id": 1408669}}, {"model": "metainfo.source", "pk": 8179, "fields": {"orig_filename": "Neumann_Anna-Maria_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408670}}, {"model": "metainfo.source", "pk": 8180, "fields": {"orig_filename": "Neumann_August_1879_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408671}}, {"model": "metainfo.source", "pk": 8181, "fields": {"orig_filename": "Neumann_Dragutin_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408672}}, {"model": "metainfo.source", "pk": 8182, "fields": {"orig_filename": "Neumann_Frantisek_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408673}}, {"model": "metainfo.source", "pk": 8183, "fields": {"orig_filename": "Neumann_Franz_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90f.", "author": "", "orig_id": 1408674}}, {"model": "metainfo.source", "pk": 8184, "fields": {"orig_filename": "Neumann_Franz_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91", "author": "", "orig_id": 1408675}}, {"model": "metainfo.source", "pk": 8185, "fields": {"orig_filename": "Neumann_Johann-Christian_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91", "author": "", "orig_id": 1408676}}, {"model": "metainfo.source", "pk": 8186, "fields": {"orig_filename": "Neumann_Johann-Philipp_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91f.", "author": "", "orig_id": 1408677}}, {"model": "metainfo.source", "pk": 8187, "fields": {"orig_filename": "Neumann_Johannes_1811_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408678}}, {"model": "metainfo.source", "pk": 8188, "fields": {"orig_filename": "Neumann_Josef_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408679}}, {"model": "metainfo.source", "pk": 8189, "fields": {"orig_filename": "Neumann_Josef_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408680}}, {"model": "metainfo.source", "pk": 8190, "fields": {"orig_filename": "Neumann_Julius_1827_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92f.", "author": "", "orig_id": 1408681}}, {"model": "metainfo.source", "pk": 8191, "fields": {"orig_filename": "Neumann_Julius_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408754}}, {"model": "metainfo.source", "pk": 8192, "fields": {"orig_filename": "Neumann_Karl-August_1771_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408755}}, {"model": "metainfo.source", "pk": 8193, "fields": {"orig_filename": "Neumann_Karl-Eugen_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408756}}, {"model": "metainfo.source", "pk": 8194, "fields": {"orig_filename": "Neumann_Karoly_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93f.", "author": "", "orig_id": 1408757}}, {"model": "metainfo.source", "pk": 8195, "fields": {"orig_filename": "Neumann_Leopold_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 94", "author": "", "orig_id": 1408760}}, {"model": "metainfo.source", "pk": 8196, "fields": {"orig_filename": "Neumann_Stanislav_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 94f.", "author": "", "orig_id": 1408758}}, {"model": "metainfo.source", "pk": 8197, "fields": {"orig_filename": "Neumann_Wenzel_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95", "author": "", "orig_id": 1408759}}, {"model": "metainfo.source", "pk": 8198, "fields": {"orig_filename": "Neumann_Wilhelm-Anton_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95f.", "author": "", "orig_id": 1408762}}, {"model": "metainfo.source", "pk": 8199, "fields": {"orig_filename": "Neumann_Wilhelm_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95", "author": "", "orig_id": 1408761}}, {"model": "metainfo.source", "pk": 8200, "fields": {"orig_filename": "Neumark_David_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 99f.", "author": "", "orig_id": 1408772}}, {"model": "metainfo.source", "pk": 8201, "fields": {"orig_filename": "Neumueller_Anton_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 100", "author": "", "orig_id": 1408773}}, {"model": "metainfo.source", "pk": 8202, "fields": {"orig_filename": "Neuner_Christoph_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 100f.", "author": "", "orig_id": 1408842}}, {"model": "metainfo.source", "pk": 8203, "fields": {"orig_filename": "Nagy_Paul_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410765}}, {"model": "metainfo.source", "pk": 8204, "fields": {"orig_filename": "Nagy_Peter_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410766}}, {"model": "metainfo.source", "pk": 8205, "fields": {"orig_filename": "Nagy_Samuel_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410767}}, {"model": "metainfo.source", "pk": 8206, "fields": {"orig_filename": "Nagy_Zsigmond_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410768}}, {"model": "metainfo.source", "pk": 8207, "fields": {"orig_filename": "Najmajer_Marie_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30f.", "author": "", "orig_id": 1410854}}, {"model": "metainfo.source", "pk": 8208, "fields": {"orig_filename": "Nakic_Filip-Franjo_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410855}}, {"model": "metainfo.source", "pk": 8209, "fields": {"orig_filename": "Nakovic_Mihovil_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410857}}, {"model": "metainfo.source", "pk": 8210, "fields": {"orig_filename": "Nako_Antonije_1817_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410856}}, {"model": "metainfo.source", "pk": 8211, "fields": {"orig_filename": "Namias_Giacinto_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31f.", "author": "", "orig_id": 1410858}}, {"model": "metainfo.source", "pk": 8212, "fields": {"orig_filename": "Napadiewicz-Wieckowski_Edward_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32", "author": "", "orig_id": 1410859}}, {"model": "metainfo.source", "pk": 8213, "fields": {"orig_filename": "Napadiewicz-Wieckowski_Mikolaj_1779_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32", "author": "", "orig_id": 1410932}}, {"model": "metainfo.source", "pk": 8214, "fields": {"orig_filename": "Napotnik_Michael_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32f.", "author": "", "orig_id": 1410933}}, {"model": "metainfo.source", "pk": 8215, "fields": {"orig_filename": "Napp_Cyrill_1792_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33", "author": "", "orig_id": 1410934}}, {"model": "metainfo.source", "pk": 8216, "fields": {"orig_filename": "Napravil_Friedrich_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33", "author": "", "orig_id": 1410935}}, {"model": "metainfo.source", "pk": 8217, "fields": {"orig_filename": "Napravnik_Eduard_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33f.", "author": "", "orig_id": 1410936}}, {"model": "metainfo.source", "pk": 8218, "fields": {"orig_filename": "Naprstek_Vojta_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34", "author": "", "orig_id": 1410937}}, {"model": "metainfo.source", "pk": 8219, "fields": {"orig_filename": "Narajewski_Stanislaw_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34", "author": "", "orig_id": 1410938}}, {"model": "metainfo.source", "pk": 8220, "fields": {"orig_filename": "Narath_Albert_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34f.", "author": "", "orig_id": 1410939}}, {"model": "metainfo.source", "pk": 8221, "fields": {"orig_filename": "Nardin_Julij_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35", "author": "", "orig_id": 1410942}}, {"model": "metainfo.source", "pk": 8222, "fields": {"orig_filename": "Nardi_Francesco_1808_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35", "author": "", "orig_id": 1410941}}, {"model": "metainfo.source", "pk": 8223, "fields": {"orig_filename": "Nardo_Giandomenico_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35f.", "author": "", "orig_id": 1410943}}, {"model": "metainfo.source", "pk": 8224, "fields": {"orig_filename": "Naschberger_Andreas_1843_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36", "author": "", "orig_id": 1410945}}, {"model": "metainfo.source", "pk": 8225, "fields": {"orig_filename": "Nascher_Eduard_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36", "author": "", "orig_id": 1410946}}, {"model": "metainfo.source", "pk": 8226, "fields": {"orig_filename": "Naske_Alois_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36f.", "author": "", "orig_id": 1410947}}, {"model": "metainfo.source", "pk": 8227, "fields": {"orig_filename": "Naske_Emilie_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410948}}, {"model": "metainfo.source", "pk": 8228, "fields": {"orig_filename": "Naswetter_Emil_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410949}}, {"model": "metainfo.source", "pk": 8229, "fields": {"orig_filename": "Natanson_Wladyslaw_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410950}}, {"model": "metainfo.source", "pk": 8230, "fields": {"orig_filename": "Nathan_Arturo_1891_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38", "author": "", "orig_id": 1410951}}, {"model": "metainfo.source", "pk": 8231, "fields": {"orig_filename": "Natonek_Josef_1813_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38", "author": "", "orig_id": 1410952}}, {"model": "metainfo.source", "pk": 8232, "fields": {"orig_filename": "Natorp_Maria-Anna_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38f.", "author": "", "orig_id": 1410953}}, {"model": "metainfo.source", "pk": 8233, "fields": {"orig_filename": "Natosevic_Djordje_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39", "author": "", "orig_id": 1409540}}, {"model": "metainfo.source", "pk": 8234, "fields": {"orig_filename": "Natterer_Johann-August_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 40f.", "author": "", "orig_id": 1409543}}, {"model": "metainfo.source", "pk": 8235, "fields": {"orig_filename": "Natterer_Johann_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39f.", "author": "", "orig_id": 1409542}}, {"model": "metainfo.source", "pk": 8236, "fields": {"orig_filename": "Natterer_Josef_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41", "author": "", "orig_id": 1409544}}, {"model": "metainfo.source", "pk": 8237, "fields": {"orig_filename": "Natterer_Konrad_1860_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41", "author": "", "orig_id": 1409545}}, {"model": "metainfo.source", "pk": 8238, "fields": {"orig_filename": "Natter_Heinrich_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39", "author": "", "orig_id": 1409541}}, {"model": "metainfo.source", "pk": 8239, "fields": {"orig_filename": "Natzler_Leopold_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41f.", "author": "", "orig_id": 1409546}}, {"model": "metainfo.source", "pk": 8240, "fields": {"orig_filename": "Natzler_Siegmund_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 42", "author": "", "orig_id": 1409547}}, {"model": "metainfo.source", "pk": 8241, "fields": {"orig_filename": "Naufock_Albert_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 42f.", "author": "", "orig_id": 1409548}}, {"model": "metainfo.source", "pk": 8242, "fields": {"orig_filename": "Nauheimer_Stefanie_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 43", "author": "", "orig_id": 1409549}}, {"model": "metainfo.source", "pk": 8243, "fields": {"orig_filename": "Navarini_Octavius_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44f.", "author": "", "orig_id": 1409554}}, {"model": "metainfo.source", "pk": 8244, "fields": {"orig_filename": "Nava_Alexander_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 43f.", "author": "", "orig_id": 1409550}}, {"model": "metainfo.source", "pk": 8245, "fields": {"orig_filename": "Nava_Antonio-Maria_1755_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409551}}, {"model": "metainfo.source", "pk": 8246, "fields": {"orig_filename": "Nava_Davide_1813_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409552}}, {"model": "metainfo.source", "pk": 8247, "fields": {"orig_filename": "Nava_Gabrio-Maria_1758_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409553}}, {"model": "metainfo.source", "pk": 8248, "fields": {"orig_filename": "Nave_Johann_1831_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45", "author": "", "orig_id": 1409555}}, {"model": "metainfo.source", "pk": 8249, "fields": {"orig_filename": "Navratil-Szalok_Imre_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47f.", "author": "", "orig_id": 1409563}}, {"model": "metainfo.source", "pk": 8250, "fields": {"orig_filename": "Navratil_Ivan_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45f.", "author": "", "orig_id": 1409557}}, {"model": "metainfo.source", "pk": 8251, "fields": {"orig_filename": "Navratil_Johann_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 46", "author": "", "orig_id": 1409558}}, {"model": "metainfo.source", "pk": 8252, "fields": {"orig_filename": "Navratil_Josef_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 46f.", "author": "", "orig_id": 1409559}}, {"model": "metainfo.source", "pk": 8253, "fields": {"orig_filename": "Navratil_Karel_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409560}}, {"model": "metainfo.source", "pk": 8254, "fields": {"orig_filename": "Navratil_Karl_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409561}}, {"model": "metainfo.source", "pk": 8255, "fields": {"orig_filename": "Navratil_Michal_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409562}}, {"model": "metainfo.source", "pk": 8256, "fields": {"orig_filename": "Navrat_Vinzenz_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45", "author": "", "orig_id": 1409556}}, {"model": "metainfo.source", "pk": 8257, "fields": {"orig_filename": "Navrockyj_Volodymyr_1847_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48", "author": "", "orig_id": 1409564}}, {"model": "metainfo.source", "pk": 8258, "fields": {"orig_filename": "Nawiasky_Eduard_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48", "author": "", "orig_id": 1409634}}, {"model": "metainfo.source", "pk": 8259, "fields": {"orig_filename": "Nazari_Giovan-Battista_1791_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48f.", "author": "", "orig_id": 1409635}}, {"model": "metainfo.source", "pk": 8260, "fields": {"orig_filename": "Nebehay_Gustav_1881_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49", "author": "", "orig_id": 1409636}}, {"model": "metainfo.source", "pk": 8261, "fields": {"orig_filename": "Nebesky_Jan_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49", "author": "", "orig_id": 1409637}}, {"model": "metainfo.source", "pk": 8262, "fields": {"orig_filename": "Nebesky_Vaclav-Bolemir_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49f.", "author": "", "orig_id": 1409638}}, {"model": "metainfo.source", "pk": 8263, "fields": {"orig_filename": "Nebuschka_Franz-Josef_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409639}}, {"model": "metainfo.source", "pk": 8264, "fields": {"orig_filename": "Necasek_Frantisek_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409640}}, {"model": "metainfo.source", "pk": 8265, "fields": {"orig_filename": "Nechansky_Arnold_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409641}}, {"model": "metainfo.source", "pk": 8266, "fields": {"orig_filename": "Necker_Moritz_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50f.", "author": "", "orig_id": 1409642}}, {"model": "metainfo.source", "pk": 8267, "fields": {"orig_filename": "Neckheim_Hans_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51", "author": "", "orig_id": 1409643}}, {"model": "metainfo.source", "pk": 8268, "fields": {"orig_filename": "Necsey_Istvan_1870_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51", "author": "", "orig_id": 1409644}}, {"model": "metainfo.source", "pk": 8269, "fields": {"orig_filename": "Nedbal_Oskar_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51f.", "author": "", "orig_id": 1409645}}, {"model": "metainfo.source", "pk": 8270, "fields": {"orig_filename": "Nedeljko_Fran_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52", "author": "", "orig_id": 1409646}}, {"model": "metainfo.source", "pk": 8271, "fields": {"orig_filename": "Nedelkowitsch_Ernst_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52", "author": "", "orig_id": 1409647}}, {"model": "metainfo.source", "pk": 8272, "fields": {"orig_filename": "Neder_Emil_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52f.", "author": "", "orig_id": 1409648}}, {"model": "metainfo.source", "pk": 8273, "fields": {"orig_filename": "Neder_Johann-Michael_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53", "author": "", "orig_id": 1409649}}, {"model": "metainfo.source", "pk": 8274, "fields": {"orig_filename": "Nedic_Martin_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53", "author": "", "orig_id": 1409650}}, {"model": "metainfo.source", "pk": 8275, "fields": {"orig_filename": "Nedoma_Jan_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53f.", "author": "", "orig_id": 1409651}}, {"model": "metainfo.source", "pk": 8276, "fields": {"orig_filename": "Nedopil_Leopold_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409652}}, {"model": "metainfo.source", "pk": 8277, "fields": {"orig_filename": "Nedopil_Mauric_1847_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409653}}, {"model": "metainfo.source", "pk": 8278, "fields": {"orig_filename": "Nedved_Anton_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409654}}, {"model": "metainfo.source", "pk": 8279, "fields": {"orig_filename": "Nedved_Milos_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54f.", "author": "", "orig_id": 1409724}}, {"model": "metainfo.source", "pk": 8280, "fields": {"orig_filename": "Neeb_Johann-Philipp_1806_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 55", "author": "", "orig_id": 1409725}}, {"model": "metainfo.source", "pk": 8281, "fields": {"orig_filename": "Neefe_Hermann-Josef_1790_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 55f.", "author": "", "orig_id": 1409726}}, {"model": "metainfo.source", "pk": 8282, "fields": {"orig_filename": "Neelmeyer_Ludwig_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1409727}}, {"model": "metainfo.source", "pk": 8283, "fields": {"orig_filename": "Neffat_Anton_1893_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1409728}}, {"model": "metainfo.source", "pk": 8284, "fields": {"orig_filename": "Neffzern_Karl_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1412808}}, {"model": "metainfo.source", "pk": 8285, "fields": {"orig_filename": "Negrelli-Moldelbe_Alois_1799_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56f.", "author": "", "orig_id": 1409729}}, {"model": "metainfo.source", "pk": 8286, "fields": {"orig_filename": "Negri_Cristoforo_1808_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 57f.", "author": "", "orig_id": 1409730}}, {"model": "metainfo.source", "pk": 8287, "fields": {"orig_filename": "Negri_Gaetano_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 58f.", "author": "", "orig_id": 1409731}}, {"model": "metainfo.source", "pk": 8288, "fields": {"orig_filename": "Negri_Giambattista_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59", "author": "", "orig_id": 1409732}}, {"model": "metainfo.source", "pk": 8289, "fields": {"orig_filename": "Negyesy_Laszlo_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59", "author": "", "orig_id": 1409733}}, {"model": "metainfo.source", "pk": 8290, "fields": {"orig_filename": "Nehajev_Milutin_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59f.", "author": "", "orig_id": 1409734}}, {"model": "metainfo.source", "pk": 8291, "fields": {"orig_filename": "Nehr_Alexander_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60", "author": "", "orig_id": 1409735}}, {"model": "metainfo.source", "pk": 8292, "fields": {"orig_filename": "Nehr_Johann-Josef_1757_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60", "author": "", "orig_id": 1409736}}, {"model": "metainfo.source", "pk": 8293, "fields": {"orig_filename": "Neidhart_Alois_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60f.", "author": "", "orig_id": 1409737}}, {"model": "metainfo.source", "pk": 8294, "fields": {"orig_filename": "Neidl_Franz_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61", "author": "", "orig_id": 1409746}}, {"model": "metainfo.source", "pk": 8295, "fields": {"orig_filename": "Neidl_Johann-Josef_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61", "author": "", "orig_id": 1409747}}, {"model": "metainfo.source", "pk": 8296, "fields": {"orig_filename": "Neilreich_August_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61f.", "author": "", "orig_id": 1409748}}, {"model": "metainfo.source", "pk": 8297, "fields": {"orig_filename": "Nejebse_Johann_1809_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409818}}, {"model": "metainfo.source", "pk": 8298, "fields": {"orig_filename": "Nejedly_Jan_1776_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409819}}, {"model": "metainfo.source", "pk": 8299, "fields": {"orig_filename": "Nejedly_Vojtech_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409820}}, {"model": "metainfo.source", "pk": 8300, "fields": {"orig_filename": "Nell-Nellenburg-Damenacker_Franz-Anton-Maria_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62f.", "author": "", "orig_id": 1409821}}, {"model": "metainfo.source", "pk": 8301, "fields": {"orig_filename": "Nemcic-Gostovinski_Antun_1816_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 63", "author": "", "orig_id": 1409822}}, {"model": "metainfo.source", "pk": 8302, "fields": {"orig_filename": "Nemcova_Bozena_1820_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 63f.", "author": "", "orig_id": 1409823}}, {"model": "metainfo.source", "pk": 8303, "fields": {"orig_filename": "Nemecek_Johann_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 64", "author": "", "orig_id": 1409824}}, {"model": "metainfo.source", "pk": 8304, "fields": {"orig_filename": "Nemecic-Bihacgrad_Josef_1832_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 64f.", "author": "", "orig_id": 1409825}}, {"model": "metainfo.source", "pk": 8305, "fields": {"orig_filename": "Nemecky_Daniel-Mathias_1762_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409826}}, {"model": "metainfo.source", "pk": 8306, "fields": {"orig_filename": "Nemenyi_Imre_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409827}}, {"model": "metainfo.source", "pk": 8307, "fields": {"orig_filename": "Munih_Andrej_1875_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413743}}, {"model": "metainfo.source", "pk": 8308, "fields": {"orig_filename": "Munkacsi_Albert_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441f.", "author": "", "orig_id": 1413745}}, {"model": "metainfo.source", "pk": 8309, "fields": {"orig_filename": "Munkacsi_Bernat_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 442", "author": "", "orig_id": 1413746}}, {"model": "metainfo.source", "pk": 8310, "fields": {"orig_filename": "Munkacsy_Mihaly_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 442f.", "author": "", "orig_id": 1413747}}, {"model": "metainfo.source", "pk": 8311, "fields": {"orig_filename": "Munk_Adolf_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413744}}, {"model": "metainfo.source", "pk": 8312, "fields": {"orig_filename": "Munsch_Josef_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 443", "author": "", "orig_id": 1413748}}, {"model": "metainfo.source", "pk": 8313, "fields": {"orig_filename": "Munsch_Leopold_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 443f.", "author": "", "orig_id": 1413820}}, {"model": "metainfo.source", "pk": 8314, "fields": {"orig_filename": "Munyay_Antal_1787_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413821}}, {"model": "metainfo.source", "pk": 8315, "fields": {"orig_filename": "Muratti_Giusto_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413823}}, {"model": "metainfo.source", "pk": 8316, "fields": {"orig_filename": "Muratti_Spartaco_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444f.", "author": "", "orig_id": 1413824}}, {"model": "metainfo.source", "pk": 8317, "fields": {"orig_filename": "Murat_Marko_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413822}}, {"model": "metainfo.source", "pk": 8318, "fields": {"orig_filename": "Muresan_Andrei_1816_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413825}}, {"model": "metainfo.source", "pk": 8319, "fields": {"orig_filename": "Muresianu_Iacob_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413826}}, {"model": "metainfo.source", "pk": 8320, "fields": {"orig_filename": "Murgas_Josef_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413827}}, {"model": "metainfo.source", "pk": 8321, "fields": {"orig_filename": "Murgu_Eftimie_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445f.", "author": "", "orig_id": 1413828}}, {"model": "metainfo.source", "pk": 8322, "fields": {"orig_filename": "Murko_Anton_1809_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446", "author": "", "orig_id": 1413829}}, {"model": "metainfo.source", "pk": 8323, "fields": {"orig_filename": "Murnik_Ivan_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446f.", "author": "", "orig_id": 1413831}}, {"model": "metainfo.source", "pk": 8324, "fields": {"orig_filename": "Murnik_Othmar_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447", "author": "", "orig_id": 1413832}}, {"model": "metainfo.source", "pk": 8325, "fields": {"orig_filename": "Murnik_Rado_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447", "author": "", "orig_id": 1413833}}, {"model": "metainfo.source", "pk": 8326, "fields": {"orig_filename": "Murn_Josip_1879_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446", "author": "", "orig_id": 1413830}}, {"model": "metainfo.source", "pk": 8327, "fields": {"orig_filename": "Murr_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447f.", "author": "", "orig_id": 1413834}}, {"model": "metainfo.source", "pk": 8328, "fields": {"orig_filename": "Mursec_Jozef_1807_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 448", "author": "", "orig_id": 1413835}}, {"model": "metainfo.source", "pk": 8329, "fields": {"orig_filename": "Musger_August_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 448", "author": "", "orig_id": 1413836}}, {"model": "metainfo.source", "pk": 8330, "fields": {"orig_filename": "Musicki_Lukijan_1777_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1", "author": "", "orig_id": 1410484}}, {"model": "metainfo.source", "pk": 8331, "fields": {"orig_filename": "Music_August_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1", "author": "", "orig_id": 1410483}}, {"model": "metainfo.source", "pk": 8332, "fields": {"orig_filename": "Musil_Alois_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1f.", "author": "", "orig_id": 1410485}}, {"model": "metainfo.source", "pk": 8333, "fields": {"orig_filename": "Musil_Robert_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 2f.", "author": "", "orig_id": 1410559}}, {"model": "metainfo.source", "pk": 8334, "fields": {"orig_filename": "Mussafia_Adolf_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 3f.", "author": "", "orig_id": 1410560}}, {"model": "metainfo.source", "pk": 8335, "fields": {"orig_filename": "Mussoni_Cajetan_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 4", "author": "", "orig_id": 1410561}}, {"model": "metainfo.source", "pk": 8336, "fields": {"orig_filename": "Musulin-Gomirje_Alexander_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 4f.", "author": "", "orig_id": 1410562}}, {"model": "metainfo.source", "pk": 8337, "fields": {"orig_filename": "Muszynski-Arenhort_Oskar_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5", "author": "", "orig_id": 1410563}}, {"model": "metainfo.source", "pk": 8338, "fields": {"orig_filename": "Muther_Ludwig_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410566}}, {"model": "metainfo.source", "pk": 8339, "fields": {"orig_filename": "Muth_Peter_1784_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5", "author": "", "orig_id": 1410564}}, {"model": "metainfo.source", "pk": 8340, "fields": {"orig_filename": "Muth_Richard_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5f.", "author": "", "orig_id": 1410565}}, {"model": "metainfo.source", "pk": 8341, "fields": {"orig_filename": "Mutinelli_Giambattista_1747_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410567}}, {"model": "metainfo.source", "pk": 8342, "fields": {"orig_filename": "Mutschlechner_Anton_1795_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410568}}, {"model": "metainfo.source", "pk": 8343, "fields": {"orig_filename": "Mutschlechner_Josef_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6f.", "author": "", "orig_id": 1410569}}, {"model": "metainfo.source", "pk": 8344, "fields": {"orig_filename": "Muzakova_Johanka_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 7", "author": "", "orig_id": 1410570}}, {"model": "metainfo.source", "pk": 8345, "fields": {"orig_filename": "Muzik_Augustin-Eugen_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 7f.", "author": "", "orig_id": 1410571}}, {"model": "metainfo.source", "pk": 8346, "fields": {"orig_filename": "Mycielski_Franciszek_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 8", "author": "", "orig_id": 1410572}}, {"model": "metainfo.source", "pk": 8347, "fields": {"orig_filename": "Mycielski_Jerzy_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 8", "author": "", "orig_id": 1410573}}, {"model": "metainfo.source", "pk": 8348, "fields": {"orig_filename": "Myrbach-Rheinfeld_Felician_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9", "author": "", "orig_id": 1410574}}, {"model": "metainfo.source", "pk": 8349, "fields": {"orig_filename": "Myrbach-Rheinfeld_Franz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9", "author": "", "orig_id": 1410575}}, {"model": "metainfo.source", "pk": 8350, "fields": {"orig_filename": "Myrdacz_Gustav_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9f.", "author": "", "orig_id": 1410576}}, {"model": "metainfo.source", "pk": 8351, "fields": {"orig_filename": "Myrdacz_Paul_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10", "author": "", "orig_id": 1410577}}, {"model": "metainfo.source", "pk": 8352, "fields": {"orig_filename": "Myskovszky_Viktor_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10", "author": "", "orig_id": 1410578}}, {"model": "metainfo.source", "pk": 8353, "fields": {"orig_filename": "Myslbek_Josef-Vaclav_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10f.", "author": "", "orig_id": 1410579}}, {"model": "metainfo.source", "pk": 8354, "fields": {"orig_filename": "Myslbek_Karel_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 11f.", "author": "", "orig_id": 1410580}}, {"model": "metainfo.source", "pk": 8355, "fields": {"orig_filename": "Mytteis_Viktor_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 12", "author": "", "orig_id": 1410650}}, {"model": "metainfo.source", "pk": 8356, "fields": {"orig_filename": "Naaff_Anton_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 12f.", "author": "", "orig_id": 1410651}}, {"model": "metainfo.source", "pk": 8357, "fields": {"orig_filename": "Nabergoj_Ivan_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 13", "author": "", "orig_id": 1410652}}, {"model": "metainfo.source", "pk": 8358, "fields": {"orig_filename": "Nabielak_Ludwik_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 13f.", "author": "", "orig_id": 1410653}}, {"model": "metainfo.source", "pk": 8359, "fields": {"orig_filename": "Naccari_Fortunato-Luigi_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14", "author": "", "orig_id": 1410654}}, {"model": "metainfo.source", "pk": 8360, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Ferenc_1801_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14", "author": "", "orig_id": 1410655}}, {"model": "metainfo.source", "pk": 8361, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Lipot_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14f.", "author": "", "orig_id": 1410656}}, {"model": "metainfo.source", "pk": 8362, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Mihaly_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410657}}, {"model": "metainfo.source", "pk": 8363, "fields": {"orig_filename": "Nadaskay_Bela_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410658}}, {"model": "metainfo.source", "pk": 8364, "fields": {"orig_filename": "Nadaskay_Lajos_1816_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410659}}, {"model": "metainfo.source", "pk": 8365, "fields": {"orig_filename": "Nadherny_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15f.", "author": "", "orig_id": 1410660}}, {"model": "metainfo.source", "pk": 8366, "fields": {"orig_filename": "Nadherny_Ignaz_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410661}}, {"model": "metainfo.source", "pk": 8367, "fields": {"orig_filename": "Nadherny_Johann_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410662}}, {"model": "metainfo.source", "pk": 8368, "fields": {"orig_filename": "Nadler_Gustav-Adolf_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410663}}, {"model": "metainfo.source", "pk": 8369, "fields": {"orig_filename": "Nadler_Johann-Friedrich-Ernst_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16f.", "author": "", "orig_id": 1410664}}, {"model": "metainfo.source", "pk": 8370, "fields": {"orig_filename": "Nadler_Robert_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17", "author": "", "orig_id": 1410665}}, {"model": "metainfo.source", "pk": 8371, "fields": {"orig_filename": "Nadlisek-Bartol_Marica_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17", "author": "", "orig_id": 1410666}}, {"model": "metainfo.source", "pk": 8372, "fields": {"orig_filename": "Nadolski_Otto_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17f.", "author": "", "orig_id": 1410667}}, {"model": "metainfo.source", "pk": 8373, "fields": {"orig_filename": "Naegle_August_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410668}}, {"model": "metainfo.source", "pk": 8374, "fields": {"orig_filename": "Nagele_Hugo_1880_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19", "author": "", "orig_id": 1410747}}, {"model": "metainfo.source", "pk": 8375, "fields": {"orig_filename": "Nagel_Ignaz_1831_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410669}}, {"model": "metainfo.source", "pk": 8376, "fields": {"orig_filename": "Nagel_Leo_1835_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410670}}, {"model": "metainfo.source", "pk": 8377, "fields": {"orig_filename": "Nagel_Robert-Siegfried_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18f.", "author": "", "orig_id": 1410671}}, {"model": "metainfo.source", "pk": 8378, "fields": {"orig_filename": "Nagel_Rudolf_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19", "author": "", "orig_id": 1410672}}, {"model": "metainfo.source", "pk": 8379, "fields": {"orig_filename": "Nagiller_Matthaeus_1815_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19f.", "author": "", "orig_id": 1410748}}, {"model": "metainfo.source", "pk": 8380, "fields": {"orig_filename": "Nagl_Alfred_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20", "author": "", "orig_id": 1410749}}, {"model": "metainfo.source", "pk": 8381, "fields": {"orig_filename": "Nagl_Erasmus_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20", "author": "", "orig_id": 1410750}}, {"model": "metainfo.source", "pk": 8382, "fields": {"orig_filename": "Nagl_Franz-Xaver_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20f.", "author": "", "orig_id": 1410751}}, {"model": "metainfo.source", "pk": 8383, "fields": {"orig_filename": "Nagl_Johann-Willibald_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21", "author": "", "orig_id": 1410752}}, {"model": "metainfo.source", "pk": 8384, "fields": {"orig_filename": "Nagnzaun_Albert_1777_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21", "author": "", "orig_id": 1410753}}, {"model": "metainfo.source", "pk": 8385, "fields": {"orig_filename": "Nagnzaun_Michael_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21f.", "author": "", "orig_id": 1410754}}, {"model": "metainfo.source", "pk": 8386, "fields": {"orig_filename": "Nagy-Alsoszopor_Imre_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25f.", "author": "", "orig_id": 1410839}}, {"model": "metainfo.source", "pk": 8387, "fields": {"orig_filename": "Nagy-Alsoszopor_Ladislaus_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 26", "author": "", "orig_id": 1410840}}, {"model": "metainfo.source", "pk": 8388, "fields": {"orig_filename": "Nagy-Felsoebuek_Pal_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 26f.", "author": "", "orig_id": 1410841}}, {"model": "metainfo.source", "pk": 8389, "fields": {"orig_filename": "Nagy-Felsoeeoer_Ernoe_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 27", "author": "", "orig_id": 1410842}}, {"model": "metainfo.source", "pk": 8390, "fields": {"orig_filename": "Nagy-Felsoegyoer_Ivan_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 27", "author": "", "orig_id": 1410843}}, {"model": "metainfo.source", "pk": 8391, "fields": {"orig_filename": "Nagy-Kaal_Elek_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410844}}, {"model": "metainfo.source", "pk": 8392, "fields": {"orig_filename": "Nagy-Nagyrev_Sandor_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410845}}, {"model": "metainfo.source", "pk": 8393, "fields": {"orig_filename": "Nagy-Sandor_Jozsef_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410846}}, {"model": "metainfo.source", "pk": 8394, "fields": {"orig_filename": "Nagy-Tasnad_Gyula_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28f.", "author": "", "orig_id": 1410847}}, {"model": "metainfo.source", "pk": 8395, "fields": {"orig_filename": "Nagy-Toeboer-Ethe_Adalbert_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410848}}, {"model": "metainfo.source", "pk": 8396, "fields": {"orig_filename": "Nagy-Toeboer-Ethe_Karl_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410849}}, {"model": "metainfo.source", "pk": 8397, "fields": {"orig_filename": "Nagy-Ueroegd_Miklos_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410850}}, {"model": "metainfo.source", "pk": 8398, "fields": {"orig_filename": "Nagy-Versegh_Ferenc_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30", "author": "", "orig_id": 1410852}}, {"model": "metainfo.source", "pk": 8399, "fields": {"orig_filename": "Nagyvathy_Janos_1755_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30", "author": "", "orig_id": 1410853}}, {"model": "metainfo.source", "pk": 8400, "fields": {"orig_filename": "Nagy_Aleksander_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410755}}, {"model": "metainfo.source", "pk": 8401, "fields": {"orig_filename": "Nagy_Dezsoe-Balint_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410756}}, {"model": "metainfo.source", "pk": 8402, "fields": {"orig_filename": "Nagy_Geza_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410757}}, {"model": "metainfo.source", "pk": 8403, "fields": {"orig_filename": "Nagy_Gusztav_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410758}}, {"model": "metainfo.source", "pk": 8404, "fields": {"orig_filename": "Nagy_Ignac_1810_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410759}}, {"model": "metainfo.source", "pk": 8405, "fields": {"orig_filename": "Nagy_Janos_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410760}}, {"model": "metainfo.source", "pk": 8406, "fields": {"orig_filename": "Nagy_Jozsef_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410761}}, {"model": "metainfo.source", "pk": 8407, "fields": {"orig_filename": "Nagy_Karoly_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23f.", "author": "", "orig_id": 1410762}}, {"model": "metainfo.source", "pk": 8408, "fields": {"orig_filename": "Nagy_Martin_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410763}}, {"model": "metainfo.source", "pk": 8409, "fields": {"orig_filename": "Nagy_Mihaly_1788_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410764}}, {"model": "metainfo.source", "pk": 8410, "fields": {"orig_filename": "Muehlmann_Josef_1805_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413378}}, {"model": "metainfo.source", "pk": 8411, "fields": {"orig_filename": "Muehlvenzl_Josef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406f.", "author": "", "orig_id": 1413379}}, {"model": "metainfo.source", "pk": 8412, "fields": {"orig_filename": "Muehringer_Elise_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407", "author": "", "orig_id": 1413380}}, {"model": "metainfo.source", "pk": 8413, "fields": {"orig_filename": "Muellendorff_Julius_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407", "author": "", "orig_id": 1413381}}, {"model": "metainfo.source", "pk": 8414, "fields": {"orig_filename": "Mueller-Elblein_Arthur_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413638}}, {"model": "metainfo.source", "pk": 8415, "fields": {"orig_filename": "Mueller-Guttenbrunn_Herbert_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413639}}, {"model": "metainfo.source", "pk": 8416, "fields": {"orig_filename": "Mueller-Martini_Johanna_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413640}}, {"model": "metainfo.source", "pk": 8417, "fields": {"orig_filename": "Mueller-Martini_Otto_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413641}}, {"model": "metainfo.source", "pk": 8418, "fields": {"orig_filename": "Mueller-Muehlwerth_Alexander_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413642}}, {"model": "metainfo.source", "pk": 8419, "fields": {"orig_filename": "Mueller-Nitterdorf_Adam_1779_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430f.", "author": "", "orig_id": 1413643}}, {"model": "metainfo.source", "pk": 8420, "fields": {"orig_filename": "Mueller-Roghoj_Heinrich_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431", "author": "", "orig_id": 1413645}}, {"model": "metainfo.source", "pk": 8421, "fields": {"orig_filename": "Mueller-Szentgyoergy_Kalman_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431f.", "author": "", "orig_id": 1413646}}, {"model": "metainfo.source", "pk": 8422, "fields": {"orig_filename": "Mueller-Thomamuehl_Wenzel_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432", "author": "", "orig_id": 1413647}}, {"model": "metainfo.source", "pk": 8423, "fields": {"orig_filename": "Mueller_Adam_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407f.", "author": "", "orig_id": 1413382}}, {"model": "metainfo.source", "pk": 8424, "fields": {"orig_filename": "Mueller_Adolf_1801_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 408", "author": "", "orig_id": 1413383}}, {"model": "metainfo.source", "pk": 8425, "fields": {"orig_filename": "Mueller_Anton_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 408f.", "author": "", "orig_id": 1413384}}, {"model": "metainfo.source", "pk": 8426, "fields": {"orig_filename": "Mueller_Anton_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409", "author": "", "orig_id": 1413386}}, {"model": "metainfo.source", "pk": 8427, "fields": {"orig_filename": "Mueller_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409", "author": "", "orig_id": 1413385}}, {"model": "metainfo.source", "pk": 8428, "fields": {"orig_filename": "Mueller_Christian-Leo_1799_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409f.", "author": "", "orig_id": 1413387}}, {"model": "metainfo.source", "pk": 8429, "fields": {"orig_filename": "Mueller_David-Heinrich_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 410f.", "author": "", "orig_id": 1413388}}, {"model": "metainfo.source", "pk": 8430, "fields": {"orig_filename": "Mueller_Emil_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411", "author": "", "orig_id": 1413389}}, {"model": "metainfo.source", "pk": 8431, "fields": {"orig_filename": "Mueller_Ernest_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411", "author": "", "orig_id": 1413390}}, {"model": "metainfo.source", "pk": 8432, "fields": {"orig_filename": "Mueller_Ernst_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411f.", "author": "", "orig_id": 1413391}}, {"model": "metainfo.source", "pk": 8433, "fields": {"orig_filename": "Mueller_Erwin_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412", "author": "", "orig_id": 1413392}}, {"model": "metainfo.source", "pk": 8434, "fields": {"orig_filename": "Mueller_Franz-Anton_1817_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412f.", "author": "", "orig_id": 1413394}}, {"model": "metainfo.source", "pk": 8435, "fields": {"orig_filename": "Mueller_Franz-Josef_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 413", "author": "", "orig_id": 1413458}}, {"model": "metainfo.source", "pk": 8436, "fields": {"orig_filename": "Mueller_Franz-Xaver_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 413f.", "author": "", "orig_id": 1413459}}, {"model": "metainfo.source", "pk": 8437, "fields": {"orig_filename": "Mueller_Franz_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412", "author": "", "orig_id": 1413393}}, {"model": "metainfo.source", "pk": 8438, "fields": {"orig_filename": "Mueller_Friedrich-Josef_1768_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243", "author": "", "orig_id": 1411789}}, {"model": "metainfo.source", "pk": 8439, "fields": {"orig_filename": "Mueller_Friedrich_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414", "author": "", "orig_id": 1413460}}, {"model": "metainfo.source", "pk": 8440, "fields": {"orig_filename": "Mueller_Friedrich_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414", "author": "", "orig_id": 1413461}}, {"model": "metainfo.source", "pk": 8441, "fields": {"orig_filename": "Mueller_Friedrich_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414f.", "author": "", "orig_id": 1413462}}, {"model": "metainfo.source", "pk": 8442, "fields": {"orig_filename": "Mueller_Friedrich_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415", "author": "", "orig_id": 1413463}}, {"model": "metainfo.source", "pk": 8443, "fields": {"orig_filename": "Mueller_Georg_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415", "author": "", "orig_id": 1413464}}, {"model": "metainfo.source", "pk": 8444, "fields": {"orig_filename": "Mueller_Georg_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415f.", "author": "", "orig_id": 1413465}}, {"model": "metainfo.source", "pk": 8445, "fields": {"orig_filename": "Mueller_Gregor_1842_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416", "author": "", "orig_id": 1413466}}, {"model": "metainfo.source", "pk": 8446, "fields": {"orig_filename": "Mueller_Gustav_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416", "author": "", "orig_id": 1413467}}, {"model": "metainfo.source", "pk": 8447, "fields": {"orig_filename": "Mueller_Hans_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416f.", "author": "", "orig_id": 1413468}}, {"model": "metainfo.source", "pk": 8448, "fields": {"orig_filename": "Mueller_Hans_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 417", "author": "", "orig_id": 1413469}}, {"model": "metainfo.source", "pk": 8449, "fields": {"orig_filename": "Mueller_Hermann-Franz_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 417f.", "author": "", "orig_id": 1413470}}, {"model": "metainfo.source", "pk": 8450, "fields": {"orig_filename": "Mueller_Jan-Bohuslav_1823_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418", "author": "", "orig_id": 1413471}}, {"model": "metainfo.source", "pk": 8451, "fields": {"orig_filename": "Mueller_Joel_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418", "author": "", "orig_id": 1413472}}, {"model": "metainfo.source", "pk": 8452, "fields": {"orig_filename": "Mueller_Johann-Georg_1822_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413476}}, {"model": "metainfo.source", "pk": 8453, "fields": {"orig_filename": "Mueller_Johann-Jakob_1780_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419f.", "author": "", "orig_id": 1413477}}, {"model": "metainfo.source", "pk": 8454, "fields": {"orig_filename": "Mueller_Johann_1799_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418f.", "author": "", "orig_id": 1413473}}, {"model": "metainfo.source", "pk": 8455, "fields": {"orig_filename": "Mueller_Johann_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413474}}, {"model": "metainfo.source", "pk": 8456, "fields": {"orig_filename": "Mueller_Johann_1832_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413475}}, {"model": "metainfo.source", "pk": 8457, "fields": {"orig_filename": "Mueller_Josef-Ferdinand_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 421f.", "author": "", "orig_id": 1413546}}, {"model": "metainfo.source", "pk": 8458, "fields": {"orig_filename": "Mueller_Josef-Franz_1811_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413547}}, {"model": "metainfo.source", "pk": 8459, "fields": {"orig_filename": "Mueller_Josefa-Hortensia_1766_1807.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243", "author": "", "orig_id": 1411790}}, {"model": "metainfo.source", "pk": 8460, "fields": {"orig_filename": "Mueller_Josef_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420", "author": "", "orig_id": 1413478}}, {"model": "metainfo.source", "pk": 8461, "fields": {"orig_filename": "Mueller_Josef_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420", "author": "", "orig_id": 1413479}}, {"model": "metainfo.source", "pk": 8462, "fields": {"orig_filename": "Mueller_Josef_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420f.", "author": "", "orig_id": 1413480}}, {"model": "metainfo.source", "pk": 8463, "fields": {"orig_filename": "Mueller_Josef_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 421", "author": "", "orig_id": 1413481}}, {"model": "metainfo.source", "pk": 8464, "fields": {"orig_filename": "Mueller_Karl_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413548}}, {"model": "metainfo.source", "pk": 8465, "fields": {"orig_filename": "Mueller_Laurentius_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413549}}, {"model": "metainfo.source", "pk": 8466, "fields": {"orig_filename": "Mueller_Leopold-Karl_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 423f.", "author": "", "orig_id": 1413553}}, {"model": "metainfo.source", "pk": 8467, "fields": {"orig_filename": "Mueller_Leopold_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422f.", "author": "", "orig_id": 1413551}}, {"model": "metainfo.source", "pk": 8468, "fields": {"orig_filename": "Mueller_Leopold_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 423", "author": "", "orig_id": 1413552}}, {"model": "metainfo.source", "pk": 8469, "fields": {"orig_filename": "Mueller_Marie_1847_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413554}}, {"model": "metainfo.source", "pk": 8470, "fields": {"orig_filename": "Mueller_Otto_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413555}}, {"model": "metainfo.source", "pk": 8471, "fields": {"orig_filename": "Mueller_Otto_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413556}}, {"model": "metainfo.source", "pk": 8472, "fields": {"orig_filename": "Mueller_Paul_1895_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413557}}, {"model": "metainfo.source", "pk": 8473, "fields": {"orig_filename": "Mueller_Richard_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413558}}, {"model": "metainfo.source", "pk": 8474, "fields": {"orig_filename": "Mueller_Richard_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413559}}, {"model": "metainfo.source", "pk": 8475, "fields": {"orig_filename": "Mueller_Robert_1887_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426", "author": "", "orig_id": 1413560}}, {"model": "metainfo.source", "pk": 8476, "fields": {"orig_filename": "Mueller_Rudolf_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426", "author": "", "orig_id": 1413561}}, {"model": "metainfo.source", "pk": 8477, "fields": {"orig_filename": "Mueller_Rudolf_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426f.", "author": "", "orig_id": 1413562}}, {"model": "metainfo.source", "pk": 8478, "fields": {"orig_filename": "Mueller_Rudolf_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 427", "author": "", "orig_id": 1413563}}, {"model": "metainfo.source", "pk": 8479, "fields": {"orig_filename": "Mueller_Sophie_1803_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 427", "author": "", "orig_id": 1413564}}, {"model": "metainfo.source", "pk": 8480, "fields": {"orig_filename": "Mueller_Therese_1791_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428", "author": "", "orig_id": 1413565}}, {"model": "metainfo.source", "pk": 8481, "fields": {"orig_filename": "Mueller_Wenzel_1759_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428", "author": "", "orig_id": 1413566}}, {"model": "metainfo.source", "pk": 8482, "fields": {"orig_filename": "Mueller_Willibald_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428f.", "author": "", "orig_id": 1413567}}, {"model": "metainfo.source", "pk": 8483, "fields": {"orig_filename": "Mueller_Zeno_1818_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413569}}, {"model": "metainfo.source", "pk": 8484, "fields": {"orig_filename": "Muellner_Alfons_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432", "author": "", "orig_id": 1413648}}, {"model": "metainfo.source", "pk": 8485, "fields": {"orig_filename": "Muellner_Karl_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432f.", "author": "", "orig_id": 1413649}}, {"model": "metainfo.source", "pk": 8486, "fields": {"orig_filename": "Muellner_Laurenz_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433", "author": "", "orig_id": 1413650}}, {"model": "metainfo.source", "pk": 8487, "fields": {"orig_filename": "Muellner_Matthias_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433", "author": "", "orig_id": 1413651}}, {"model": "metainfo.source", "pk": 8488, "fields": {"orig_filename": "Muench-Bellinghausen_Anton-Rudolf_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433f.", "author": "", "orig_id": 1413652}}, {"model": "metainfo.source", "pk": 8489, "fields": {"orig_filename": "Muench-Bellinghausen_Eligius-Franz-Josef_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 434", "author": "", "orig_id": 1413653}}, {"model": "metainfo.source", "pk": 8490, "fields": {"orig_filename": "Muench-Bellinghausen_Joachim_1786_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 434f.", "author": "", "orig_id": 1413654}}, {"model": "metainfo.source", "pk": 8491, "fields": {"orig_filename": "Muendel-Feldberg_Josef_1829_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435", "author": "", "orig_id": 1413655}}, {"model": "metainfo.source", "pk": 8492, "fields": {"orig_filename": "Muenichsdorfer_Friedrich_1828_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435", "author": "", "orig_id": 1413656}}, {"model": "metainfo.source", "pk": 8493, "fields": {"orig_filename": "Muennich-Janosvoelgy_Adolf-Gustav_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413658}}, {"model": "metainfo.source", "pk": 8494, "fields": {"orig_filename": "Muennich-Janosvoelgy_Aurel-Adolf_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413659}}, {"model": "metainfo.source", "pk": 8495, "fields": {"orig_filename": "Muennich-Janosvoelgy_Koloman-Bela-Julius_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413727}}, {"model": "metainfo.source", "pk": 8496, "fields": {"orig_filename": "Muennich_Alexander_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435f.", "author": "", "orig_id": 1413657}}, {"model": "metainfo.source", "pk": 8497, "fields": {"orig_filename": "Muensterberg_Rudolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413728}}, {"model": "metainfo.source", "pk": 8498, "fields": {"orig_filename": "Muenzberg_Johann-Josef_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437f.", "author": "", "orig_id": 1413732}}, {"model": "metainfo.source", "pk": 8499, "fields": {"orig_filename": "Muenz_Bernhard_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436f.", "author": "", "orig_id": 1413729}}, {"model": "metainfo.source", "pk": 8500, "fields": {"orig_filename": "Muenz_Sigmund_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437", "author": "", "orig_id": 1413730}}, {"model": "metainfo.source", "pk": 8501, "fields": {"orig_filename": "Muenz_Wilhelm_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437", "author": "", "orig_id": 1413731}}, {"model": "metainfo.source", "pk": 8502, "fields": {"orig_filename": "Mugna_Pietro_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438", "author": "", "orig_id": 1413733}}, {"model": "metainfo.source", "pk": 8503, "fields": {"orig_filename": "Muhic_Pavao_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438", "author": "", "orig_id": 1413734}}, {"model": "metainfo.source", "pk": 8504, "fields": {"orig_filename": "Muhr_Michael_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438f.", "author": "", "orig_id": 1413735}}, {"model": "metainfo.source", "pk": 8505, "fields": {"orig_filename": "Mulley_Oskar_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413737}}, {"model": "metainfo.source", "pk": 8506, "fields": {"orig_filename": "Mulle_Julius_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413736}}, {"model": "metainfo.source", "pk": 8507, "fields": {"orig_filename": "Mully-Oppenried_Robert_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413738}}, {"model": "metainfo.source", "pk": 8508, "fields": {"orig_filename": "Munding_Hans_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 440", "author": "", "orig_id": 1413739}}, {"model": "metainfo.source", "pk": 8509, "fields": {"orig_filename": "Mundy_Jaromir_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 440f.", "author": "", "orig_id": 1413741}}, {"model": "metainfo.source", "pk": 8510, "fields": {"orig_filename": "Munganast_Emil_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413742}}, {"model": "metainfo.source", "pk": 8511, "fields": {"orig_filename": "Moriggl_Alois_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372f.", "author": "", "orig_id": 1412930}}, {"model": "metainfo.source", "pk": 8512, "fields": {"orig_filename": "Moriggl_Augustin_1816_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373", "author": "", "orig_id": 1412931}}, {"model": "metainfo.source", "pk": 8513, "fields": {"orig_filename": "Moriggl_Josef_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373", "author": "", "orig_id": 1412932}}, {"model": "metainfo.source", "pk": 8514, "fields": {"orig_filename": "Moriggl_Simon_1817_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373f.", "author": "", "orig_id": 1412933}}, {"model": "metainfo.source", "pk": 8515, "fields": {"orig_filename": "Moritsch_Anton_1851_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374", "author": "", "orig_id": 1412934}}, {"model": "metainfo.source", "pk": 8516, "fields": {"orig_filename": "Moro-Lin_Angelo_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 376", "author": "", "orig_id": 1413009}}, {"model": "metainfo.source", "pk": 8517, "fields": {"orig_filename": "Moroder_Franz_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 376f.", "author": "", "orig_id": 1413010}}, {"model": "metainfo.source", "pk": 8518, "fields": {"orig_filename": "Moroder_Josef-Theodor_1846_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413011}}, {"model": "metainfo.source", "pk": 8519, "fields": {"orig_filename": "Moroder_Rudolf_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413012}}, {"model": "metainfo.source", "pk": 8520, "fields": {"orig_filename": "Moroder_Wilhelm_1877_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413013}}, {"model": "metainfo.source", "pk": 8521, "fields": {"orig_filename": "Morosini_Nikolaus_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413014}}, {"model": "metainfo.source", "pk": 8522, "fields": {"orig_filename": "Morozewicz_Jozef-Marian_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377f.", "author": "", "orig_id": 1413015}}, {"model": "metainfo.source", "pk": 8523, "fields": {"orig_filename": "Moro_Eduard_1790_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374", "author": "", "orig_id": 1412935}}, {"model": "metainfo.source", "pk": 8524, "fields": {"orig_filename": "Moro_Franz_1782_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374f.", "author": "", "orig_id": 1412936}}, {"model": "metainfo.source", "pk": 8525, "fields": {"orig_filename": "Moro_Max_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375", "author": "", "orig_id": 1412937}}, {"model": "metainfo.source", "pk": 8526, "fields": {"orig_filename": "Moro_Oswin_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375", "author": "", "orig_id": 1412938}}, {"model": "metainfo.source", "pk": 8527, "fields": {"orig_filename": "Moro_Thomas_1786_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375f.", "author": "", "orig_id": 1413008}}, {"model": "metainfo.source", "pk": 8528, "fields": {"orig_filename": "Morpurgo_Alessandro_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 378", "author": "", "orig_id": 1413016}}, {"model": "metainfo.source", "pk": 8529, "fields": {"orig_filename": "Morpurgo_Benedetto_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 378f.", "author": "", "orig_id": 1413017}}, {"model": "metainfo.source", "pk": 8530, "fields": {"orig_filename": "Morpurgo_Elio_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379", "author": "", "orig_id": 1413018}}, {"model": "metainfo.source", "pk": 8531, "fields": {"orig_filename": "Morpurgo_Emilio_1836_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379", "author": "", "orig_id": 1413019}}, {"model": "metainfo.source", "pk": 8532, "fields": {"orig_filename": "Morpurgo_Giuseppe-Lazzaro_1759_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380", "author": "", "orig_id": 1413021}}, {"model": "metainfo.source", "pk": 8533, "fields": {"orig_filename": "Morpurgo_Giuseppe_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379f.", "author": "", "orig_id": 1413020}}, {"model": "metainfo.source", "pk": 8534, "fields": {"orig_filename": "Morpurgo_Guido_1868_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380", "author": "", "orig_id": 1413022}}, {"model": "metainfo.source", "pk": 8535, "fields": {"orig_filename": "Morpurgo_Rahel_1790_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380f.", "author": "", "orig_id": 1413023}}, {"model": "metainfo.source", "pk": 8536, "fields": {"orig_filename": "Morpurgo_Salomone_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413024}}, {"model": "metainfo.source", "pk": 8537, "fields": {"orig_filename": "Morres_Wilhelm_1849_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413026}}, {"model": "metainfo.source", "pk": 8538, "fields": {"orig_filename": "Morre_Karl_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413025}}, {"model": "metainfo.source", "pk": 8539, "fields": {"orig_filename": "Morsolin_Bernardo_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381f.", "author": "", "orig_id": 1413027}}, {"model": "metainfo.source", "pk": 8540, "fields": {"orig_filename": "Morstadt_Vincenc_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413028}}, {"model": "metainfo.source", "pk": 8541, "fields": {"orig_filename": "Morvay_Gyoezoe_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413029}}, {"model": "metainfo.source", "pk": 8542, "fields": {"orig_filename": "Mor_Giuseppe_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364f.", "author": "", "orig_id": 1412836}}, {"model": "metainfo.source", "pk": 8543, "fields": {"orig_filename": "Moscheles_Ignaz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f.", "author": "", "orig_id": 1413099}}, {"model": "metainfo.source", "pk": 8544, "fields": {"orig_filename": "Moschen_Lamberto_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 383", "author": "", "orig_id": 1413100}}, {"model": "metainfo.source", "pk": 8545, "fields": {"orig_filename": "Mosche_Alfonz_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413030}}, {"model": "metainfo.source", "pk": 8546, "fields": {"orig_filename": "Moschini_Giannantonio_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 383f.", "author": "", "orig_id": 1413101}}, {"model": "metainfo.source", "pk": 8547, "fields": {"orig_filename": "Moscon_Anton-Albert_1783_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413102}}, {"model": "metainfo.source", "pk": 8548, "fields": {"orig_filename": "Moscotto_Giovanni_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413103}}, {"model": "metainfo.source", "pk": 8549, "fields": {"orig_filename": "Mosel_Ignaz-Franz_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413104}}, {"model": "metainfo.source", "pk": 8550, "fields": {"orig_filename": "Mosel_Katharina_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413105}}, {"model": "metainfo.source", "pk": 8551, "fields": {"orig_filename": "Mosenthal_Salomon-Hermann_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385", "author": "", "orig_id": 1413106}}, {"model": "metainfo.source", "pk": 8552, "fields": {"orig_filename": "Moser-Mossbruch_Ignaz_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413189}}, {"model": "metainfo.source", "pk": 8553, "fields": {"orig_filename": "Moser_Anton_1872_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385f.", "author": "", "orig_id": 1413108}}, {"model": "metainfo.source", "pk": 8554, "fields": {"orig_filename": "Moser_Bedrich_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413109}}, {"model": "metainfo.source", "pk": 8555, "fields": {"orig_filename": "Moser_Emil_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413110}}, {"model": "metainfo.source", "pk": 8556, "fields": {"orig_filename": "Moser_Ernst-Christian_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413111}}, {"model": "metainfo.source", "pk": 8557, "fields": {"orig_filename": "Moser_Franz-Josef_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386f.", "author": "", "orig_id": 1413112}}, {"model": "metainfo.source", "pk": 8558, "fields": {"orig_filename": "Moser_James_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413114}}, {"model": "metainfo.source", "pk": 8559, "fields": {"orig_filename": "Moser_Josef_1779_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413116}}, {"model": "metainfo.source", "pk": 8560, "fields": {"orig_filename": "Moser_Josef_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413117}}, {"model": "metainfo.source", "pk": 8561, "fields": {"orig_filename": "Moser_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387f.", "author": "", "orig_id": 1413118}}, {"model": "metainfo.source", "pk": 8562, "fields": {"orig_filename": "Moser_Karl_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388", "author": "", "orig_id": 1413119}}, {"model": "metainfo.source", "pk": 8563, "fields": {"orig_filename": "Moser_Karl_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388", "author": "", "orig_id": 1413120}}, {"model": "metainfo.source", "pk": 8564, "fields": {"orig_filename": "Moser_Koloman_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388f.", "author": "", "orig_id": 1413121}}, {"model": "metainfo.source", "pk": 8565, "fields": {"orig_filename": "Moser_Ludwig-Karl_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389", "author": "", "orig_id": 1413123}}, {"model": "metainfo.source", "pk": 8566, "fields": {"orig_filename": "Moser_Ludwig_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389", "author": "", "orig_id": 1413122}}, {"model": "metainfo.source", "pk": 8567, "fields": {"orig_filename": "Moser_Maria-Anna_1756_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389f.", "author": "", "orig_id": 1413124}}, {"model": "metainfo.source", "pk": 8568, "fields": {"orig_filename": "Moser_Paul_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413187}}, {"model": "metainfo.source", "pk": 8569, "fields": {"orig_filename": "Moser_Richard_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413188}}, {"model": "metainfo.source", "pk": 8570, "fields": {"orig_filename": "Mosetig-Moorhof_Albert_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 391", "author": "", "orig_id": 1413191}}, {"model": "metainfo.source", "pk": 8571, "fields": {"orig_filename": "Moshamer_Franz-Josef_1800_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 391f.", "author": "", "orig_id": 1413192}}, {"model": "metainfo.source", "pk": 8572, "fields": {"orig_filename": "Mosing_Guido-Konrad_1824_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392", "author": "", "orig_id": 1413195}}, {"model": "metainfo.source", "pk": 8573, "fields": {"orig_filename": "Mosinski-Zagrabvar_Adolf_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392", "author": "", "orig_id": 1413196}}, {"model": "metainfo.source", "pk": 8574, "fields": {"orig_filename": "Moskopp_Kaspar_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392f.", "author": "", "orig_id": 1413197}}, {"model": "metainfo.source", "pk": 8575, "fields": {"orig_filename": "Mosner_Frantisek_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413198}}, {"model": "metainfo.source", "pk": 8576, "fields": {"orig_filename": "Mossbach_Leopold_1735_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413200}}, {"model": "metainfo.source", "pk": 8577, "fields": {"orig_filename": "Mossig_Johann_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413201}}, {"model": "metainfo.source", "pk": 8578, "fields": {"orig_filename": "Mottl-Standhartner_Henriette_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394", "author": "", "orig_id": 1413204}}, {"model": "metainfo.source", "pk": 8579, "fields": {"orig_filename": "Mottl_Felix_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393f.", "author": "", "orig_id": 1413203}}, {"model": "metainfo.source", "pk": 8580, "fields": {"orig_filename": "Moudra_Pavla_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394", "author": "", "orig_id": 1413205}}, {"model": "metainfo.source", "pk": 8581, "fields": {"orig_filename": "Mourek_Vaclav-Emanuel_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394f.", "author": "", "orig_id": 1413206}}, {"model": "metainfo.source", "pk": 8582, "fields": {"orig_filename": "Moy-Sons_Karl-Ernest_1799_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 395", "author": "", "orig_id": 1413207}}, {"model": "metainfo.source", "pk": 8583, "fields": {"orig_filename": "Moysa-Rosochacki_Stefan_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 395", "author": "", "orig_id": 1413208}}, {"model": "metainfo.source", "pk": 8584, "fields": {"orig_filename": "Moyzes_Mikulas_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396", "author": "", "orig_id": 1413280}}, {"model": "metainfo.source", "pk": 8585, "fields": {"orig_filename": "Moyzes_Stefan_1797_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396", "author": "", "orig_id": 1413210}}, {"model": "metainfo.source", "pk": 8586, "fields": {"orig_filename": "Mozart_Franz-Xaver-Wolfgang_1791_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396f.", "author": "", "orig_id": 1413281}}, {"model": "metainfo.source", "pk": 8587, "fields": {"orig_filename": "Mozart_Joseph_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397", "author": "", "orig_id": 1413282}}, {"model": "metainfo.source", "pk": 8588, "fields": {"orig_filename": "Mozart_Maria-Anna_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397", "author": "", "orig_id": 1413283}}, {"model": "metainfo.source", "pk": 8589, "fields": {"orig_filename": "Mracek_Franz_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397f.", "author": "", "orig_id": 1413284}}, {"model": "metainfo.source", "pk": 8590, "fields": {"orig_filename": "Mraczek_Joseph-Gustav_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413285}}, {"model": "metainfo.source", "pk": 8591, "fields": {"orig_filename": "Mrazovic_Avram_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413287}}, {"model": "metainfo.source", "pk": 8592, "fields": {"orig_filename": "Mrazovic_Ladislav_1849_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413288}}, {"model": "metainfo.source", "pk": 8593, "fields": {"orig_filename": "Mrazovic_Matija_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413289}}, {"model": "metainfo.source", "pk": 8594, "fields": {"orig_filename": "Mraz_Josef_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413286}}, {"model": "metainfo.source", "pk": 8595, "fields": {"orig_filename": "Mrstik_Alois_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413290}}, {"model": "metainfo.source", "pk": 8596, "fields": {"orig_filename": "Mrstik_Vilem_1863_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400", "author": "", "orig_id": 1413291}}, {"model": "metainfo.source", "pk": 8597, "fields": {"orig_filename": "Muchar-Ried_Albert_1786_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 402f.", "author": "", "orig_id": 1413296}}, {"model": "metainfo.source", "pk": 8598, "fields": {"orig_filename": "Mucha_Alfons_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 401f.", "author": "", "orig_id": 1413294}}, {"model": "metainfo.source", "pk": 8599, "fields": {"orig_filename": "Mucha_Viktor_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 402", "author": "", "orig_id": 1413295}}, {"model": "metainfo.source", "pk": 8600, "fields": {"orig_filename": "Much_Matthaeus_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400", "author": "", "orig_id": 1413292}}, {"model": "metainfo.source", "pk": 8601, "fields": {"orig_filename": "Much_Rudolf_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400f.", "author": "", "orig_id": 1413293}}, {"model": "metainfo.source", "pk": 8602, "fields": {"orig_filename": "Muczkowski_Jozef-Jakub_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 403f.", "author": "", "orig_id": 1413298}}, {"model": "metainfo.source", "pk": 8603, "fields": {"orig_filename": "Muczkowski_Jozef_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 403", "author": "", "orig_id": 1413297}}, {"model": "metainfo.source", "pk": 8604, "fields": {"orig_filename": "Mudrich_Andreas_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413299}}, {"model": "metainfo.source", "pk": 8605, "fields": {"orig_filename": "Mudrony_Soma_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413300}}, {"model": "metainfo.source", "pk": 8606, "fields": {"orig_filename": "Mueck_Alfred_1912_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413371}}, {"model": "metainfo.source", "pk": 8607, "fields": {"orig_filename": "Mueck_Marie_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404f.", "author": "", "orig_id": 1413372}}, {"model": "metainfo.source", "pk": 8608, "fields": {"orig_filename": "Mueck_Maximilian_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 405", "author": "", "orig_id": 1413373}}, {"model": "metainfo.source", "pk": 8609, "fields": {"orig_filename": "Muehlbacher_Engelbert_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 405f.", "author": "", "orig_id": 1413374}}, {"model": "metainfo.source", "pk": 8610, "fields": {"orig_filename": "Muehlbacher_Josef_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413375}}, {"model": "metainfo.source", "pk": 8611, "fields": {"orig_filename": "Muehlberger_Karl_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413376}}, {"model": "metainfo.source", "pk": 8612, "fields": {"orig_filename": "Moedlinger_Josef_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338", "author": "", "orig_id": 1412548}}, {"model": "metainfo.source", "pk": 8613, "fields": {"orig_filename": "Moeller_Josef_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338f.", "author": "", "orig_id": 1412549}}, {"model": "metainfo.source", "pk": 8614, "fields": {"orig_filename": "Moeltner_Zeno_1852_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339", "author": "", "orig_id": 1412550}}, {"model": "metainfo.source", "pk": 8615, "fields": {"orig_filename": "Moering_Karl_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339", "author": "", "orig_id": 1412551}}, {"model": "metainfo.source", "pk": 8616, "fields": {"orig_filename": "Moerk-Moerkenstein_Alexander_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339f.", "author": "", "orig_id": 1412552}}, {"model": "metainfo.source", "pk": 8617, "fields": {"orig_filename": "Moerth_Johann_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412554}}, {"model": "metainfo.source", "pk": 8618, "fields": {"orig_filename": "Moerzinger_Johann_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412555}}, {"model": "metainfo.source", "pk": 8619, "fields": {"orig_filename": "Moeser_Karl_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340f.", "author": "", "orig_id": 1412556}}, {"model": "metainfo.source", "pk": 8620, "fields": {"orig_filename": "Moeser_Wilfried_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341", "author": "", "orig_id": 1412557}}, {"model": "metainfo.source", "pk": 8621, "fields": {"orig_filename": "Moessl_Johannes-Chrysostomus_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341", "author": "", "orig_id": 1412558}}, {"model": "metainfo.source", "pk": 8622, "fields": {"orig_filename": "Moessl_Roman_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341f.", "author": "", "orig_id": 1412559}}, {"model": "metainfo.source", "pk": 8623, "fields": {"orig_filename": "Moessmer_Josef_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412560}}, {"model": "metainfo.source", "pk": 8624, "fields": {"orig_filename": "Moga_Johann_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412561}}, {"model": "metainfo.source", "pk": 8625, "fields": {"orig_filename": "Moga_Vasile_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412562}}, {"model": "metainfo.source", "pk": 8626, "fields": {"orig_filename": "Moggioli_Umberto_1886_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342f.", "author": "", "orig_id": 1412563}}, {"model": "metainfo.source", "pk": 8627, "fields": {"orig_filename": "Mohaupt_Franz_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412564}}, {"model": "metainfo.source", "pk": 8628, "fields": {"orig_filename": "Mohl_Adolf_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412565}}, {"model": "metainfo.source", "pk": 8629, "fields": {"orig_filename": "Mohn_Ludwig_1797_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412566}}, {"model": "metainfo.source", "pk": 8630, "fields": {"orig_filename": "Mohorovicic_Andrija_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343f.", "author": "", "orig_id": 1412567}}, {"model": "metainfo.source", "pk": 8631, "fields": {"orig_filename": "Mohr_Abraham-Mendel_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 344", "author": "", "orig_id": 1412568}}, {"model": "metainfo.source", "pk": 8632, "fields": {"orig_filename": "Mohr_Josef_1792_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 344f.", "author": "", "orig_id": 1412569}}, {"model": "metainfo.source", "pk": 8633, "fields": {"orig_filename": "Mohs_Friedrich_1773_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 345", "author": "", "orig_id": 1412570}}, {"model": "metainfo.source", "pk": 8634, "fields": {"orig_filename": "Mohylnyckyj_Antin-Ljubyc_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 345f.", "author": "", "orig_id": 1412637}}, {"model": "metainfo.source", "pk": 8635, "fields": {"orig_filename": "Moise_Giovanni_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 346", "author": "", "orig_id": 1412638}}, {"model": "metainfo.source", "pk": 8636, "fields": {"orig_filename": "Moissi_Alexander_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 346f.", "author": "", "orig_id": 1412639}}, {"model": "metainfo.source", "pk": 8637, "fields": {"orig_filename": "Mojsisovics-Mojsvar_August_1848_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 347", "author": "", "orig_id": 1412640}}, {"model": "metainfo.source", "pk": 8638, "fields": {"orig_filename": "Mojsisovics-Mojsvar_Georg_1799_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 247f.", "author": "", "orig_id": 1412641}}, {"model": "metainfo.source", "pk": 8639, "fields": {"orig_filename": "Mojsisovics-Mojsvar_Johann-August-Edmund_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 348f.", "author": "", "orig_id": 1412642}}, {"model": "metainfo.source", "pk": 8640, "fields": {"orig_filename": "Moklowski_Kazimierz_1869_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349", "author": "", "orig_id": 1412643}}, {"model": "metainfo.source", "pk": 8641, "fields": {"orig_filename": "Mokry_Endre_1827_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349", "author": "", "orig_id": 1412644}}, {"model": "metainfo.source", "pk": 8642, "fields": {"orig_filename": "Mokry_Otakar_1853_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349f.", "author": "", "orig_id": 1412645}}, {"model": "metainfo.source", "pk": 8643, "fields": {"orig_filename": "Mokry_Samuel_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412646}}, {"model": "metainfo.source", "pk": 8644, "fields": {"orig_filename": "Molden_Berthold_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412647}}, {"model": "metainfo.source", "pk": 8645, "fields": {"orig_filename": "Moldovan_Gergely_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412648}}, {"model": "metainfo.source", "pk": 8646, "fields": {"orig_filename": "Moldovan_Ioan-Micu_1833_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350f.", "author": "", "orig_id": 1412649}}, {"model": "metainfo.source", "pk": 8647, "fields": {"orig_filename": "Molin_Johann_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351", "author": "", "orig_id": 1412650}}, {"model": "metainfo.source", "pk": 8648, "fields": {"orig_filename": "Molisch_Hans_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351", "author": "", "orig_id": 1412651}}, {"model": "metainfo.source", "pk": 8649, "fields": {"orig_filename": "Molitor_Simon_1766_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351f.", "author": "", "orig_id": 1412652}}, {"model": "metainfo.source", "pk": 8650, "fields": {"orig_filename": "Mollinary-Monte-Pastello_Anton_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 354f.", "author": "", "orig_id": 1412732}}, {"model": "metainfo.source", "pk": 8651, "fields": {"orig_filename": "Mollo_Tranquillo_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355", "author": "", "orig_id": 1412733}}, {"model": "metainfo.source", "pk": 8652, "fields": {"orig_filename": "Moll_Franz_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352", "author": "", "orig_id": 1412653}}, {"model": "metainfo.source", "pk": 8653, "fields": {"orig_filename": "Moll_Franz_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352", "author": "", "orig_id": 1412654}}, {"model": "metainfo.source", "pk": 8654, "fields": {"orig_filename": "Moll_Johann_1797_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352f.", "author": "", "orig_id": 1412655}}, {"model": "metainfo.source", "pk": 8655, "fields": {"orig_filename": "Moll_Karl-Ehrenbert_1760_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 353f.", "author": "", "orig_id": 1412657}}, {"model": "metainfo.source", "pk": 8656, "fields": {"orig_filename": "Moll_Karl_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 353", "author": "", "orig_id": 1412656}}, {"model": "metainfo.source", "pk": 8657, "fields": {"orig_filename": "Moll_Leopold_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 354", "author": "", "orig_id": 1412658}}, {"model": "metainfo.source", "pk": 8658, "fields": {"orig_filename": "Molnar-Kapos_Viktor_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357f.", "author": "", "orig_id": 1412743}}, {"model": "metainfo.source", "pk": 8659, "fields": {"orig_filename": "Molnar_Aladar_1839_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355", "author": "", "orig_id": 1412734}}, {"model": "metainfo.source", "pk": 8660, "fields": {"orig_filename": "Molnar_Antal_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355f.", "author": "", "orig_id": 1412735}}, {"model": "metainfo.source", "pk": 8661, "fields": {"orig_filename": "Molnar_Daniel-Bohumil_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412736}}, {"model": "metainfo.source", "pk": 8662, "fields": {"orig_filename": "Molnar_Daniel-Bohumil_1856_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412737}}, {"model": "metainfo.source", "pk": 8663, "fields": {"orig_filename": "Molnar_Gyoergy_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412738}}, {"model": "metainfo.source", "pk": 8664, "fields": {"orig_filename": "Molnar_Janos_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412740}}, {"model": "metainfo.source", "pk": 8665, "fields": {"orig_filename": "Molnar_Jan_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356f.", "author": "", "orig_id": 1412739}}, {"model": "metainfo.source", "pk": 8666, "fields": {"orig_filename": "Molnar_Jozsef_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412741}}, {"model": "metainfo.source", "pk": 8667, "fields": {"orig_filename": "Molnar_Laszlo_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412742}}, {"model": "metainfo.source", "pk": 8668, "fields": {"orig_filename": "Moltke_Maximlian-Leopold_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358", "author": "", "orig_id": 1412744}}, {"model": "metainfo.source", "pk": 8669, "fields": {"orig_filename": "Mondel_Friedrich_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358", "author": "", "orig_id": 1412745}}, {"model": "metainfo.source", "pk": 8670, "fields": {"orig_filename": "Mone_Albert_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358f.", "author": "", "orig_id": 1412746}}, {"model": "metainfo.source", "pk": 8671, "fields": {"orig_filename": "Monico_Jacopo_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412748}}, {"model": "metainfo.source", "pk": 8672, "fields": {"orig_filename": "Monschein_Johanna_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1980867}}, {"model": "metainfo.source", "pk": 8673, "fields": {"orig_filename": "Monsorno_Gian-Maria_1768_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412749}}, {"model": "metainfo.source", "pk": 8674, "fields": {"orig_filename": "Montag_Antonie_1835_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412750}}, {"model": "metainfo.source", "pk": 8675, "fields": {"orig_filename": "Montecuccoli-Erri_Rudolf_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359f.", "author": "", "orig_id": 1412751}}, {"model": "metainfo.source", "pk": 8676, "fields": {"orig_filename": "Montecuccoli-Laderchi_Albert_1802_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 360", "author": "", "orig_id": 1412752}}, {"model": "metainfo.source", "pk": 8677, "fields": {"orig_filename": "Montel-Treuenfest_Johannes_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 360f.", "author": "", "orig_id": 1412753}}, {"model": "metainfo.source", "pk": 8678, "fields": {"orig_filename": "Montenuovo_Alfred_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 361", "author": "", "orig_id": 1412754}}, {"model": "metainfo.source", "pk": 8679, "fields": {"orig_filename": "Montenuovo_Wilhelm-Albrecht_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 361f.", "author": "", "orig_id": 1412825}}, {"model": "metainfo.source", "pk": 8680, "fields": {"orig_filename": "Monti_Alessandro_1818_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362", "author": "", "orig_id": 1412826}}, {"model": "metainfo.source", "pk": 8681, "fields": {"orig_filename": "Monti_Alois_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362", "author": "", "orig_id": 1412827}}, {"model": "metainfo.source", "pk": 8682, "fields": {"orig_filename": "Monti_Lovro_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362f.", "author": "", "orig_id": 1412828}}, {"model": "metainfo.source", "pk": 8683, "fields": {"orig_filename": "Montleart_Wilhelmine_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412829}}, {"model": "metainfo.source", "pk": 8684, "fields": {"orig_filename": "Montlong_Oskar_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412830}}, {"model": "metainfo.source", "pk": 8685, "fields": {"orig_filename": "Montluisant_Bruno_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412831}}, {"model": "metainfo.source", "pk": 8686, "fields": {"orig_filename": "Montluisant_Johann_1768_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363f.", "author": "", "orig_id": 1412832}}, {"model": "metainfo.source", "pk": 8687, "fields": {"orig_filename": "Moor-Felsoeoer_Anna_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412833}}, {"model": "metainfo.source", "pk": 8688, "fields": {"orig_filename": "Moosbrugger_Gebhard_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412834}}, {"model": "metainfo.source", "pk": 8689, "fields": {"orig_filename": "Moosmann_Franz-Xaver_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412835}}, {"model": "metainfo.source", "pk": 8690, "fields": {"orig_filename": "Mor-Sunnegg-Morberg_Therese_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365", "author": "", "orig_id": 1412837}}, {"model": "metainfo.source", "pk": 8691, "fields": {"orig_filename": "Mor-Sunnegg-Morberg_Viktor-Max_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365", "author": "", "orig_id": 1412838}}, {"model": "metainfo.source", "pk": 8692, "fields": {"orig_filename": "Moraczewski_Jedrzej-Edward_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365f.", "author": "", "orig_id": 1412839}}, {"model": "metainfo.source", "pk": 8693, "fields": {"orig_filename": "Morariu-Andrievici_Constantin_1835_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367", "author": "", "orig_id": 1412843}}, {"model": "metainfo.source", "pk": 8694, "fields": {"orig_filename": "Morariu-Andrievici_Silvestru_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367f.", "author": "", "orig_id": 1412844}}, {"model": "metainfo.source", "pk": 8695, "fields": {"orig_filename": "Morariu_Constantin_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 366f.", "author": "", "orig_id": 1412841}}, {"model": "metainfo.source", "pk": 8696, "fields": {"orig_filename": "Morariu_Victor_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367", "author": "", "orig_id": 1412842}}, {"model": "metainfo.source", "pk": 8697, "fields": {"orig_filename": "Moravcsik_Ernoe-Emil_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412845}}, {"model": "metainfo.source", "pk": 8698, "fields": {"orig_filename": "Morawetz-Klienfeld_Otto_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412915}}, {"model": "metainfo.source", "pk": 8699, "fields": {"orig_filename": "Morawitz_Karl_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412916}}, {"model": "metainfo.source", "pk": 8700, "fields": {"orig_filename": "Morawitz_Moritz_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412917}}, {"model": "metainfo.source", "pk": 8701, "fields": {"orig_filename": "Morawski_Kazimierz_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412918}}, {"model": "metainfo.source", "pk": 8702, "fields": {"orig_filename": "Morawski_Marian_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412919}}, {"model": "metainfo.source", "pk": 8703, "fields": {"orig_filename": "Morawski_Seweryn-Antoni_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369f.", "author": "", "orig_id": 1412920}}, {"model": "metainfo.source", "pk": 8704, "fields": {"orig_filename": "Morawski_Szczesny_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370", "author": "", "orig_id": 1412921}}, {"model": "metainfo.source", "pk": 8705, "fields": {"orig_filename": "Morawski_Theodor_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370", "author": "", "orig_id": 1412922}}, {"model": "metainfo.source", "pk": 8706, "fields": {"orig_filename": "Morawski_Zdzislaw_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370f.", "author": "", "orig_id": 1412923}}, {"model": "metainfo.source", "pk": 8707, "fields": {"orig_filename": "Moreau_Karl_1758_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371", "author": "", "orig_id": 1412924}}, {"model": "metainfo.source", "pk": 8708, "fields": {"orig_filename": "Moreau_Nikolaus_1805_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371", "author": "", "orig_id": 1412925}}, {"model": "metainfo.source", "pk": 8709, "fields": {"orig_filename": "Morelli_Giovanni_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371f.", "author": "", "orig_id": 1412926}}, {"model": "metainfo.source", "pk": 8710, "fields": {"orig_filename": "Morelli_Gusztav_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412927}}, {"model": "metainfo.source", "pk": 8711, "fields": {"orig_filename": "Morelly_Franz_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412928}}, {"model": "metainfo.source", "pk": 8712, "fields": {"orig_filename": "Morgenbesser_Aleksander_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412929}}, {"model": "metainfo.source", "pk": 8713, "fields": {"orig_filename": "Miller-Aichholz_August_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303f.", "author": "", "orig_id": 1413633}}, {"model": "metainfo.source", "pk": 8714, "fields": {"orig_filename": "Miller-Aichholz_Josef-Maria_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 304", "author": "", "orig_id": 1413634}}, {"model": "metainfo.source", "pk": 8715, "fields": {"orig_filename": "Miller-Aichholz_Viktor_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 304f.", "author": "", "orig_id": 1413635}}, {"model": "metainfo.source", "pk": 8716, "fields": {"orig_filename": "Miller-Aichholz_Vinzenz_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 305", "author": "", "orig_id": 1411336}}, {"model": "metainfo.source", "pk": 8717, "fields": {"orig_filename": "Miller-Hauenfels_Albert_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 305f.", "author": "", "orig_id": 1413636}}, {"model": "metainfo.source", "pk": 8718, "fields": {"orig_filename": "Milleret_Jozef_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306", "author": "", "orig_id": 1413637}}, {"model": "metainfo.source", "pk": 8719, "fields": {"orig_filename": "Miller_Jakob-Ferdinand_1749_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 302f.", "author": "", "orig_id": 1413629}}, {"model": "metainfo.source", "pk": 8720, "fields": {"orig_filename": "Miller_Josef-Georg_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413630}}, {"model": "metainfo.source", "pk": 8721, "fields": {"orig_filename": "Miller_Josef-Kassian_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413631}}, {"model": "metainfo.source", "pk": 8722, "fields": {"orig_filename": "Miller_Martin_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413632}}, {"model": "metainfo.source", "pk": 8723, "fields": {"orig_filename": "Millesi_Johann-Matthias_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306", "author": "", "orig_id": 1413703}}, {"model": "metainfo.source", "pk": 8724, "fields": {"orig_filename": "Mille_Ernst_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300", "author": "", "orig_id": 1413623}}, {"model": "metainfo.source", "pk": 8725, "fields": {"orig_filename": "Millinkovic_Theodor_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306f.", "author": "", "orig_id": 1413704}}, {"model": "metainfo.source", "pk": 8726, "fields": {"orig_filename": "Milloecker_Karl_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307", "author": "", "orig_id": 1413705}}, {"model": "metainfo.source", "pk": 8727, "fields": {"orig_filename": "Milobar_Fran_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308", "author": "", "orig_id": 1413707}}, {"model": "metainfo.source", "pk": 8728, "fields": {"orig_filename": "Milosevic_Josip_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308", "author": "", "orig_id": 1413709}}, {"model": "metainfo.source", "pk": 8729, "fields": {"orig_filename": "Milota_Albert_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308f.", "author": "", "orig_id": 1413710}}, {"model": "metainfo.source", "pk": 8730, "fields": {"orig_filename": "Milski_Aleksander_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413712}}, {"model": "metainfo.source", "pk": 8731, "fields": {"orig_filename": "Miltner_Frantisek-Karel_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413713}}, {"model": "metainfo.source", "pk": 8732, "fields": {"orig_filename": "Miltner_Jan-Bohuslav_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413714}}, {"model": "metainfo.source", "pk": 8733, "fields": {"orig_filename": "Miltner_Jindrich-Otakar_1828_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413715}}, {"model": "metainfo.source", "pk": 8734, "fields": {"orig_filename": "Minarelli-Fitzgerald_Alexander_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309f.", "author": "", "orig_id": 1413716}}, {"model": "metainfo.source", "pk": 8735, "fields": {"orig_filename": "Minarik_Stanislav_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 310", "author": "", "orig_id": 1413717}}, {"model": "metainfo.source", "pk": 8736, "fields": {"orig_filename": "Mingazzi-Modigliano_Eduard_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 310f.", "author": "", "orig_id": 1413718}}, {"model": "metainfo.source", "pk": 8737, "fields": {"orig_filename": "Minichthaler_Joseph_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413719}}, {"model": "metainfo.source", "pk": 8738, "fields": {"orig_filename": "Miniussi_Lorenzo_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413720}}, {"model": "metainfo.source", "pk": 8739, "fields": {"orig_filename": "Mink_Therese_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413721}}, {"model": "metainfo.source", "pk": 8740, "fields": {"orig_filename": "Minor_Jakob_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311f.", "author": "", "orig_id": 1413722}}, {"model": "metainfo.source", "pk": 8741, "fields": {"orig_filename": "Minutillo_Franz_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 312f.", "author": "", "orig_id": 1413723}}, {"model": "metainfo.source", "pk": 8742, "fields": {"orig_filename": "Miodonski_Adam-Stefan_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 313", "author": "", "orig_id": 1413724}}, {"model": "metainfo.source", "pk": 8743, "fields": {"orig_filename": "Mioni_Ugo_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 313f.", "author": "", "orig_id": 1413725}}, {"model": "metainfo.source", "pk": 8744, "fields": {"orig_filename": "Mirani_Johann-Heinrich_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314", "author": "", "orig_id": 1413726}}, {"model": "metainfo.source", "pk": 8745, "fields": {"orig_filename": "Mirani_Therese_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314", "author": "", "orig_id": 1413796}}, {"model": "metainfo.source", "pk": 8746, "fields": {"orig_filename": "Mircse-Baratos_Janos_1834_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314f.", "author": "", "orig_id": 1413797}}, {"model": "metainfo.source", "pk": 8747, "fields": {"orig_filename": "Miricka_August_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413798}}, {"model": "metainfo.source", "pk": 8748, "fields": {"orig_filename": "Mirijovsky_Emanuel_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413799}}, {"model": "metainfo.source", "pk": 8749, "fields": {"orig_filename": "Mirtl_Franz_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413800}}, {"model": "metainfo.source", "pk": 8750, "fields": {"orig_filename": "Misar_Olga_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2186744}}, {"model": "metainfo.source", "pk": 8751, "fields": {"orig_filename": "Mischler_Ernst_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315f.", "author": "", "orig_id": 1413801}}, {"model": "metainfo.source", "pk": 8752, "fields": {"orig_filename": "Misel_Jadwiga-Helena_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 316f.", "author": "", "orig_id": 1413802}}, {"model": "metainfo.source", "pk": 8753, "fields": {"orig_filename": "Mises_Herman_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 317", "author": "", "orig_id": 1413804}}, {"model": "metainfo.source", "pk": 8754, "fields": {"orig_filename": "Mises_Majer-Jerachmiel_1801_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 317f.", "author": "", "orig_id": 1413806}}, {"model": "metainfo.source", "pk": 8755, "fields": {"orig_filename": "Misic_Alojzije_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318", "author": "", "orig_id": 1413808}}, {"model": "metainfo.source", "pk": 8756, "fields": {"orig_filename": "Misik_Stefan_1843_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318", "author": "", "orig_id": 1413809}}, {"model": "metainfo.source", "pk": 8757, "fields": {"orig_filename": "Misiolek_Leon_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318f.", "author": "", "orig_id": 1413810}}, {"model": "metainfo.source", "pk": 8758, "fields": {"orig_filename": "Miskatovic_Josip_1836_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319", "author": "", "orig_id": 1413811}}, {"model": "metainfo.source", "pk": 8759, "fields": {"orig_filename": "Miskov_Andjeo-Marija_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319", "author": "", "orig_id": 1411340}}, {"model": "metainfo.source", "pk": 8760, "fields": {"orig_filename": "Mislej_Jozef-Peter_1761_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319f.", "author": "", "orig_id": 1413812}}, {"model": "metainfo.source", "pk": 8761, "fields": {"orig_filename": "Missia_Jakob_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413813}}, {"model": "metainfo.source", "pk": 8762, "fields": {"orig_filename": "Missong_Alexander_1837_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413815}}, {"model": "metainfo.source", "pk": 8763, "fields": {"orig_filename": "Misson_Josef_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413814}}, {"model": "metainfo.source", "pk": 8764, "fields": {"orig_filename": "Mitis_Georg_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320f.", "author": "", "orig_id": 1413816}}, {"model": "metainfo.source", "pk": 8765, "fields": {"orig_filename": "Mitis_Heinrich_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321", "author": "", "orig_id": 1413817}}, {"model": "metainfo.source", "pk": 8766, "fields": {"orig_filename": "Mitis_Ignaz_1771_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321", "author": "", "orig_id": 1413818}}, {"model": "metainfo.source", "pk": 8767, "fields": {"orig_filename": "Mitis_Silvio_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321f.", "author": "", "orig_id": 1413819}}, {"model": "metainfo.source", "pk": 8768, "fields": {"orig_filename": "Mitlacher_Wilhelm_1872_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322", "author": "", "orig_id": 1413887}}, {"model": "metainfo.source", "pk": 8769, "fields": {"orig_filename": "Mitrofanovici_Vasile_1831_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322", "author": "", "orig_id": 1413888}}, {"model": "metainfo.source", "pk": 8770, "fields": {"orig_filename": "Mitrovics_Gyula_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413890}}, {"model": "metainfo.source", "pk": 8771, "fields": {"orig_filename": "Mitrovic_Andro_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322f.", "author": "", "orig_id": 1413889}}, {"model": "metainfo.source", "pk": 8772, "fields": {"orig_filename": "Mitrovsky_Milan-Thomka_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413891}}, {"model": "metainfo.source", "pk": 8773, "fields": {"orig_filename": "Mitscha-Maerheim_Josef_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413892}}, {"model": "metainfo.source", "pk": 8774, "fields": {"orig_filename": "Mitteis_Heinrich_1889_1952.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1462886}}, {"model": "metainfo.source", "pk": 8775, "fields": {"orig_filename": "Mitteis_Ludwig_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323f.", "author": "", "orig_id": 1413893}}, {"model": "metainfo.source", "pk": 8776, "fields": {"orig_filename": "Mittell_Karl-Josef_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324", "author": "", "orig_id": 1413894}}, {"model": "metainfo.source", "pk": 8777, "fields": {"orig_filename": "Mitterberger_Karl-Philipp_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324f.", "author": "", "orig_id": 1413895}}, {"model": "metainfo.source", "pk": 8778, "fields": {"orig_filename": "Mitterer_Franz-Xaver_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324f.", "author": "", "orig_id": 1411339}}, {"model": "metainfo.source", "pk": 8779, "fields": {"orig_filename": "Mitterer_Ignaz_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 325", "author": "", "orig_id": 1413896}}, {"model": "metainfo.source", "pk": 8780, "fields": {"orig_filename": "Mitterhofer_Leopold_1761_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 325f.", "author": "", "orig_id": 1413897}}, {"model": "metainfo.source", "pk": 8781, "fields": {"orig_filename": "Mitterhofer_Peter_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 326", "author": "", "orig_id": 1413898}}, {"model": "metainfo.source", "pk": 8782, "fields": {"orig_filename": "Mitterrutzner_Johannes-Chrysostomus_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 326f.", "author": "", "orig_id": 1413899}}, {"model": "metainfo.source", "pk": 8783, "fields": {"orig_filename": "Mitterwurzer_Anton-Friedrich_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 327", "author": "", "orig_id": 1413900}}, {"model": "metainfo.source", "pk": 8784, "fields": {"orig_filename": "Mitterwurzer_Anton-Georg_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 327f.", "author": "", "orig_id": 1413901}}, {"model": "metainfo.source", "pk": 8785, "fields": {"orig_filename": "Mitterwurzer_Wilhelmine_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 328", "author": "", "orig_id": 1413902}}, {"model": "metainfo.source", "pk": 8786, "fields": {"orig_filename": "Mittler_Johann_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 328", "author": "", "orig_id": 1413903}}, {"model": "metainfo.source", "pk": 8787, "fields": {"orig_filename": "Mittrowsky-Mittrowitz-Nemischl_Anton-Friedrich_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413904}}, {"model": "metainfo.source", "pk": 8788, "fields": {"orig_filename": "Mittrowsky-Mittrowitz-Nemischl_Josef_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413905}}, {"model": "metainfo.source", "pk": 8789, "fields": {"orig_filename": "Mitzka_Franz-Xaver_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413906}}, {"model": "metainfo.source", "pk": 8790, "fields": {"orig_filename": "Mladenovic_Georg_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329f.", "author": "", "orig_id": 1413907}}, {"model": "metainfo.source", "pk": 8791, "fields": {"orig_filename": "Mlakar_Ivan_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330", "author": "", "orig_id": 1413908}}, {"model": "metainfo.source", "pk": 8792, "fields": {"orig_filename": "Mlcoch_Melichar_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330", "author": "", "orig_id": 1413909}}, {"model": "metainfo.source", "pk": 8793, "fields": {"orig_filename": "Mlodnicka_Wanda_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330f.", "author": "", "orig_id": 1413910}}, {"model": "metainfo.source", "pk": 8794, "fields": {"orig_filename": "Mlodnicki_Karol_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 331", "author": "", "orig_id": 1412457}}, {"model": "metainfo.source", "pk": 8795, "fields": {"orig_filename": "Mlynek_Ludwik_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 331f.", "author": "", "orig_id": 1412458}}, {"model": "metainfo.source", "pk": 8796, "fields": {"orig_filename": "Moar_Francesco_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332", "author": "", "orig_id": 1412460}}, {"model": "metainfo.source", "pk": 8797, "fields": {"orig_filename": "Mochnacki_Bazyli_1777_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332f.", "author": "", "orig_id": 1412461}}, {"model": "metainfo.source", "pk": 8798, "fields": {"orig_filename": "Mochnacki_Edmund_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333", "author": "", "orig_id": 1412462}}, {"model": "metainfo.source", "pk": 8799, "fields": {"orig_filename": "Mocker_Ferdinand_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333", "author": "", "orig_id": 1412463}}, {"model": "metainfo.source", "pk": 8800, "fields": {"orig_filename": "Mocker_Josef_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333f.", "author": "", "orig_id": 1412464}}, {"model": "metainfo.source", "pk": 8801, "fields": {"orig_filename": "Mocko_Jan_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334", "author": "", "orig_id": 1412465}}, {"model": "metainfo.source", "pk": 8802, "fields": {"orig_filename": "Mocnik_Franz_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334", "author": "", "orig_id": 1412466}}, {"model": "metainfo.source", "pk": 8803, "fields": {"orig_filename": "Mocsary-Bocsar_Lajos_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335", "author": "", "orig_id": 1412468}}, {"model": "metainfo.source", "pk": 8804, "fields": {"orig_filename": "Mocsary_Sandor_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334f.", "author": "", "orig_id": 1412467}}, {"model": "metainfo.source", "pk": 8805, "fields": {"orig_filename": "Moczik_Felizian-Josef_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335", "author": "", "orig_id": 1412469}}, {"model": "metainfo.source", "pk": 8806, "fields": {"orig_filename": "Modell_Elisabeth_1820_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335f.", "author": "", "orig_id": 1412470}}, {"model": "metainfo.source", "pk": 8807, "fields": {"orig_filename": "Modena_Giacomo_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 336", "author": "", "orig_id": 1412471}}, {"model": "metainfo.source", "pk": 8808, "fields": {"orig_filename": "Modena_Gustavo_1803_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 336f.", "author": "", "orig_id": 1412472}}, {"model": "metainfo.source", "pk": 8809, "fields": {"orig_filename": "Modl_Josef_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412473}}, {"model": "metainfo.source", "pk": 8810, "fields": {"orig_filename": "Modl_Viktoria_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412474}}, {"model": "metainfo.source", "pk": 8811, "fields": {"orig_filename": "Modrinjak_Stefan_1774_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412475}}, {"model": "metainfo.source", "pk": 8812, "fields": {"orig_filename": "Moeckeln_Karl_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337f.", "author": "", "orig_id": 1412477}}, {"model": "metainfo.source", "pk": 8813, "fields": {"orig_filename": "Moeckesch_Martin-Samuel_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338", "author": "", "orig_id": 1412478}}, {"model": "metainfo.source", "pk": 8814, "fields": {"orig_filename": "Micholitsch_Adalbert_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265", "author": "", "orig_id": 1413179}}, {"model": "metainfo.source", "pk": 8815, "fields": {"orig_filename": "Micklitz_Julius_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 266", "author": "", "orig_id": 1413181}}, {"model": "metainfo.source", "pk": 8816, "fields": {"orig_filename": "Micklitz_Robert_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 266f.", "author": "", "orig_id": 1413182}}, {"model": "metainfo.source", "pk": 8817, "fields": {"orig_filename": "Micklitz_Theodor_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 267", "author": "", "orig_id": 1413183}}, {"model": "metainfo.source", "pk": 8818, "fields": {"orig_filename": "Mickl_Johann_1893_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265f.", "author": "", "orig_id": 1413180}}, {"model": "metainfo.source", "pk": 8819, "fields": {"orig_filename": "Micskey_Imre_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 267f.", "author": "", "orig_id": 1413184}}, {"model": "metainfo.source", "pk": 8820, "fields": {"orig_filename": "Miczynski_Kazimierz_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268", "author": "", "orig_id": 1413185}}, {"model": "metainfo.source", "pk": 8821, "fields": {"orig_filename": "Midelburg_Leopold_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268", "author": "", "orig_id": 1413186}}, {"model": "metainfo.source", "pk": 8822, "fields": {"orig_filename": "Mielichhofer_Alphons_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268f.", "author": "", "orig_id": 1413258}}, {"model": "metainfo.source", "pk": 8823, "fields": {"orig_filename": "Mielichhofer_Ludwig_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269", "author": "", "orig_id": 1413259}}, {"model": "metainfo.source", "pk": 8824, "fields": {"orig_filename": "Mielichhofer_Mathias_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269", "author": "", "orig_id": 1413260}}, {"model": "metainfo.source", "pk": 8825, "fields": {"orig_filename": "Mieroszewski_Stanislaw_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269f.", "author": "", "orig_id": 1413261}}, {"model": "metainfo.source", "pk": 8826, "fields": {"orig_filename": "Miesbach_Alois_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 270f.", "author": "", "orig_id": 1413262}}, {"model": "metainfo.source", "pk": 8827, "fields": {"orig_filename": "Mieses_Fabius_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 271", "author": "", "orig_id": 1413263}}, {"model": "metainfo.source", "pk": 8828, "fields": {"orig_filename": "Mieses_Jehuda-Lejb_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 271f.", "author": "", "orig_id": 1413264}}, {"model": "metainfo.source", "pk": 8829, "fields": {"orig_filename": "Mieses_Mathias_1885_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413265}}, {"model": "metainfo.source", "pk": 8830, "fields": {"orig_filename": "Miesowicz_Erwin_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413266}}, {"model": "metainfo.source", "pk": 8831, "fields": {"orig_filename": "Miessl-Treuenstadt_Felix_1778_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413268}}, {"model": "metainfo.source", "pk": 8832, "fields": {"orig_filename": "Miess_Friedrich_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413267}}, {"model": "metainfo.source", "pk": 8833, "fields": {"orig_filename": "Miethke_Otto-Maria_1881_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413269}}, {"model": "metainfo.source", "pk": 8834, "fields": {"orig_filename": "Mietzl-Stende_August_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413270}}, {"model": "metainfo.source", "pk": 8835, "fields": {"orig_filename": "Migerka_Franz_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413271}}, {"model": "metainfo.source", "pk": 8836, "fields": {"orig_filename": "Migerka_Helene_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413272}}, {"model": "metainfo.source", "pk": 8837, "fields": {"orig_filename": "Migerka_Katharina_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413273}}, {"model": "metainfo.source", "pk": 8838, "fields": {"orig_filename": "Migotti_Adolf_1850_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413274}}, {"model": "metainfo.source", "pk": 8839, "fields": {"orig_filename": "Mihacevic_Lovro_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274f.", "author": "", "orig_id": 1413275}}, {"model": "metainfo.source", "pk": 8840, "fields": {"orig_filename": "Mihalik-Hernadszurdok_Jozsef_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275", "author": "", "orig_id": 1413276}}, {"model": "metainfo.source", "pk": 8841, "fields": {"orig_filename": "Mihalik-Madunycz_Janos_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275", "author": "", "orig_id": 1413277}}, {"model": "metainfo.source", "pk": 8842, "fields": {"orig_filename": "Mihaljevic_Benko_1768_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275f.", "author": "", "orig_id": 1413278}}, {"model": "metainfo.source", "pk": 8843, "fields": {"orig_filename": "Mihaljevic_Michael_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413279}}, {"model": "metainfo.source", "pk": 8844, "fields": {"orig_filename": "Mihalkovics_Geza_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413349}}, {"model": "metainfo.source", "pk": 8845, "fields": {"orig_filename": "Mihalovich_Oedoen_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413353}}, {"model": "metainfo.source", "pk": 8846, "fields": {"orig_filename": "Mihalovic_Antun_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413350}}, {"model": "metainfo.source", "pk": 8847, "fields": {"orig_filename": "Mihalovic_Josip_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276f.", "author": "", "orig_id": 1413351}}, {"model": "metainfo.source", "pk": 8848, "fields": {"orig_filename": "Mihalyfi_Akos_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413354}}, {"model": "metainfo.source", "pk": 8849, "fields": {"orig_filename": "Mihalyfi_Karoly_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413355}}, {"model": "metainfo.source", "pk": 8850, "fields": {"orig_filename": "Mihalyi-Boegoez_Karoly_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277f.", "author": "", "orig_id": 1413356}}, {"model": "metainfo.source", "pk": 8851, "fields": {"orig_filename": "Mihanovic-Frankenhardt_Karl_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278", "author": "", "orig_id": 1413357}}, {"model": "metainfo.source", "pk": 8852, "fields": {"orig_filename": "Mihanovic-Petropoljski_Antun_1796_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278", "author": "", "orig_id": 1413358}}, {"model": "metainfo.source", "pk": 8853, "fields": {"orig_filename": "Mihevc_Ignacij_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278f.", "author": "", "orig_id": 1413359}}, {"model": "metainfo.source", "pk": 8854, "fields": {"orig_filename": "Mihicic_Milica_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 279", "author": "", "orig_id": 1413360}}, {"model": "metainfo.source", "pk": 8855, "fields": {"orig_filename": "Mikan_Johann-Christian_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280", "author": "", "orig_id": 1413363}}, {"model": "metainfo.source", "pk": 8856, "fields": {"orig_filename": "Mika_Sandor_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280", "author": "", "orig_id": 1413362}}, {"model": "metainfo.source", "pk": 8857, "fields": {"orig_filename": "Mikes-Zabola_Kelemen_1820_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281", "author": "", "orig_id": 1413365}}, {"model": "metainfo.source", "pk": 8858, "fields": {"orig_filename": "Mikes_Adolf_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280f.", "author": "", "orig_id": 1413364}}, {"model": "metainfo.source", "pk": 8859, "fields": {"orig_filename": "Miklavec_Peter_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281", "author": "", "orig_id": 1413366}}, {"model": "metainfo.source", "pk": 8860, "fields": {"orig_filename": "Miklossy_Josef_1792_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 282", "author": "", "orig_id": 1413369}}, {"model": "metainfo.source", "pk": 8861, "fields": {"orig_filename": "Miklosy_Istvan_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283", "author": "", "orig_id": 1413370}}, {"model": "metainfo.source", "pk": 8862, "fields": {"orig_filename": "Miklousic_Tomas_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283", "author": "", "orig_id": 1413436}}, {"model": "metainfo.source", "pk": 8863, "fields": {"orig_filename": "Miko-Hidveg_Imre_1805_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283f.", "author": "", "orig_id": 1413437}}, {"model": "metainfo.source", "pk": 8864, "fields": {"orig_filename": "Mikolasch_Karol-Henryk_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284", "author": "", "orig_id": 1413438}}, {"model": "metainfo.source", "pk": 8865, "fields": {"orig_filename": "Mikosch_Karl_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284", "author": "", "orig_id": 1413439}}, {"model": "metainfo.source", "pk": 8866, "fields": {"orig_filename": "Mikovec_Ferdinand-Bretislav_1826_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284f.", "author": "", "orig_id": 1413440}}, {"model": "metainfo.source", "pk": 8867, "fields": {"orig_filename": "Mikovics_Robert_1852_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285", "author": "", "orig_id": 1413441}}, {"model": "metainfo.source", "pk": 8868, "fields": {"orig_filename": "Mikscha_Ferdinand_1829_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413444}}, {"model": "metainfo.source", "pk": 8869, "fields": {"orig_filename": "Mikschowsky_Franz_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413445}}, {"model": "metainfo.source", "pk": 8870, "fields": {"orig_filename": "Miksch_Hans_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285", "author": "", "orig_id": 1413442}}, {"model": "metainfo.source", "pk": 8871, "fields": {"orig_filename": "Miksch_Johann-Alois_1765_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285f.", "author": "", "orig_id": 1413443}}, {"model": "metainfo.source", "pk": 8872, "fields": {"orig_filename": "Mikse_Mikolas_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413446}}, {"model": "metainfo.source", "pk": 8873, "fields": {"orig_filename": "Miksicek_Matej_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413447}}, {"model": "metainfo.source", "pk": 8874, "fields": {"orig_filename": "Mikszath_Kalman_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286f.", "author": "", "orig_id": 1413448}}, {"model": "metainfo.source", "pk": 8875, "fields": {"orig_filename": "Mikulas_Josef_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 287f.", "author": "", "orig_id": 1413449}}, {"model": "metainfo.source", "pk": 8876, "fields": {"orig_filename": "Mikulicz-Radecki_Johann_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288f.", "author": "", "orig_id": 1413452}}, {"model": "metainfo.source", "pk": 8877, "fields": {"orig_filename": "Mikulicz-Radecki_Valerian_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289", "author": "", "orig_id": 1413453}}, {"model": "metainfo.source", "pk": 8878, "fields": {"orig_filename": "Mikulic_Martin_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288", "author": "", "orig_id": 1413451}}, {"model": "metainfo.source", "pk": 8879, "fields": {"orig_filename": "Mikuli_Karl_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288", "author": "", "orig_id": 1413450}}, {"model": "metainfo.source", "pk": 8880, "fields": {"orig_filename": "Mikulowski-Pomorski_Jozef_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289", "author": "", "orig_id": 1413454}}, {"model": "metainfo.source", "pk": 8881, "fields": {"orig_filename": "Mik_Josef_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 279f.", "author": "", "orig_id": 1413361}}, {"model": "metainfo.source", "pk": 8882, "fields": {"orig_filename": "Miladinovic_Milena_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289f.", "author": "", "orig_id": 1413455}}, {"model": "metainfo.source", "pk": 8883, "fields": {"orig_filename": "Milakovic_Josip_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290", "author": "", "orig_id": 1413456}}, {"model": "metainfo.source", "pk": 8884, "fields": {"orig_filename": "Milanes_Wolfgang_1767_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290f.", "author": "", "orig_id": 1413526}}, {"model": "metainfo.source", "pk": 8885, "fields": {"orig_filename": "Milan_Adele_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290", "author": "", "orig_id": 1413457}}, {"model": "metainfo.source", "pk": 8886, "fields": {"orig_filename": "Milasinovic_Franjo_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291", "author": "", "orig_id": 1413527}}, {"model": "metainfo.source", "pk": 8887, "fields": {"orig_filename": "Milaszewski_Adam_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291", "author": "", "orig_id": 1413528}}, {"model": "metainfo.source", "pk": 8888, "fields": {"orig_filename": "Milcetic_Ivan_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291f.", "author": "", "orig_id": 1413529}}, {"model": "metainfo.source", "pk": 8889, "fields": {"orig_filename": "Milcinovic_Andrija_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292", "author": "", "orig_id": 1413530}}, {"model": "metainfo.source", "pk": 8890, "fields": {"orig_filename": "Milcinski_Fran_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292", "author": "", "orig_id": 1413531}}, {"model": "metainfo.source", "pk": 8891, "fields": {"orig_filename": "Milder-Hauptmann_Anna-Pauline_1785_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 294", "author": "", "orig_id": 1413535}}, {"model": "metainfo.source", "pk": 8892, "fields": {"orig_filename": "Milde_Hugo_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292f.", "author": "", "orig_id": 1413532}}, {"model": "metainfo.source", "pk": 8893, "fields": {"orig_filename": "Milde_Johann_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 293", "author": "", "orig_id": 1413533}}, {"model": "metainfo.source", "pk": 8894, "fields": {"orig_filename": "Milde_Vinzenz-Eduard_1777_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 293f.", "author": "", "orig_id": 1413534}}, {"model": "metainfo.source", "pk": 8895, "fields": {"orig_filename": "Mildner_Moritz_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 294f.", "author": "", "orig_id": 1413536}}, {"model": "metainfo.source", "pk": 8896, "fields": {"orig_filename": "Mildschuh_Vilibald_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413537}}, {"model": "metainfo.source", "pk": 8897, "fields": {"orig_filename": "Miler_Ferdo-Zivko_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413538}}, {"model": "metainfo.source", "pk": 8898, "fields": {"orig_filename": "Mileta_Jeronim_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413539}}, {"model": "metainfo.source", "pk": 8899, "fields": {"orig_filename": "Miletic_Ambro_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295f.", "author": "", "orig_id": 1413540}}, {"model": "metainfo.source", "pk": 8900, "fields": {"orig_filename": "Miletic_Stjepan_1868_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296", "author": "", "orig_id": 1413541}}, {"model": "metainfo.source", "pk": 8901, "fields": {"orig_filename": "Miletic_Svetozar_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296", "author": "", "orig_id": 1413542}}, {"model": "metainfo.source", "pk": 8902, "fields": {"orig_filename": "Milewski_Jozef_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296f.", "author": "", "orig_id": 1413543}}, {"model": "metainfo.source", "pk": 8903, "fields": {"orig_filename": "Milicevic_Franjo_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297f.", "author": "", "orig_id": 1413617}}, {"model": "metainfo.source", "pk": 8904, "fields": {"orig_filename": "Milic_Jozef-Rudolf_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297", "author": "", "orig_id": 1413544}}, {"model": "metainfo.source", "pk": 8905, "fields": {"orig_filename": "Milic_Vicko_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297", "author": "", "orig_id": 1413545}}, {"model": "metainfo.source", "pk": 8906, "fields": {"orig_filename": "Milinovic_Simun_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 298", "author": "", "orig_id": 1413618}}, {"model": "metainfo.source", "pk": 8907, "fields": {"orig_filename": "Militzer_Hermann_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 298f.", "author": "", "orig_id": 1413619}}, {"model": "metainfo.source", "pk": 8908, "fields": {"orig_filename": "Millanich_Alois_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299", "author": "", "orig_id": 1413620}}, {"model": "metainfo.source", "pk": 8909, "fields": {"orig_filename": "Millard_Edward_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299", "author": "", "orig_id": 1413621}}, {"model": "metainfo.source", "pk": 8910, "fields": {"orig_filename": "Millauer_Franz-Xaver_1784_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299f.", "author": "", "orig_id": 1413622}}, {"model": "metainfo.source", "pk": 8911, "fields": {"orig_filename": "Milleker_Felix_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300", "author": "", "orig_id": 1413624}}, {"model": "metainfo.source", "pk": 8912, "fields": {"orig_filename": "Millemoth_Anton_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300f.", "author": "", "orig_id": 1413625}}, {"model": "metainfo.source", "pk": 8913, "fields": {"orig_filename": "Millenkovich_Benno_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301", "author": "", "orig_id": 1413626}}, {"model": "metainfo.source", "pk": 8914, "fields": {"orig_filename": "Millenkovich_Max_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301", "author": "", "orig_id": 1413627}}, {"model": "metainfo.source", "pk": 8915, "fields": {"orig_filename": "Millenkovich_Stefan_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301f.", "author": "", "orig_id": 1413628}}, {"model": "metainfo.source", "pk": 8916, "fields": {"orig_filename": "Merkl-Reinsee_Jakob_1814_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412803}}, {"model": "metainfo.source", "pk": 8917, "fields": {"orig_filename": "Merklas_Wenzel_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231f.", "author": "", "orig_id": 1412804}}, {"model": "metainfo.source", "pk": 8918, "fields": {"orig_filename": "Merkle_Meinrad_1781_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412805}}, {"model": "metainfo.source", "pk": 8919, "fields": {"orig_filename": "Merkl_Adolf-Julius_1890_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1469550}}, {"model": "metainfo.source", "pk": 8920, "fields": {"orig_filename": "Merkl_Rudolf_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412802}}, {"model": "metainfo.source", "pk": 8921, "fields": {"orig_filename": "Merkt_Eduard_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412806}}, {"model": "metainfo.source", "pk": 8922, "fields": {"orig_filename": "Merk_Ludwig_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230f.", "author": "", "orig_id": 1412731}}, {"model": "metainfo.source", "pk": 8923, "fields": {"orig_filename": "Merlato_Gaetano_1807_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412807}}, {"model": "metainfo.source", "pk": 8924, "fields": {"orig_filename": "Merlet_Alexander-Erwin_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412813}}, {"model": "metainfo.source", "pk": 8925, "fields": {"orig_filename": "Merlitschek_Rita_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412814}}, {"model": "metainfo.source", "pk": 8926, "fields": {"orig_filename": "Merode_Karl_1853_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412815}}, {"model": "metainfo.source", "pk": 8927, "fields": {"orig_filename": "Mersich_Johann_1862_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234", "author": "", "orig_id": 1412817}}, {"model": "metainfo.source", "pk": 8928, "fields": {"orig_filename": "Mersich_Martin_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234", "author": "", "orig_id": 1412818}}, {"model": "metainfo.source", "pk": 8929, "fields": {"orig_filename": "Mersich_Matthaeus_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234f.", "author": "", "orig_id": 1412819}}, {"model": "metainfo.source", "pk": 8930, "fields": {"orig_filename": "Mersi_Andreas_1779_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412816}}, {"model": "metainfo.source", "pk": 8931, "fields": {"orig_filename": "Merta_Anton_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412820}}, {"model": "metainfo.source", "pk": 8932, "fields": {"orig_filename": "Merta_Emanuel_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412821}}, {"model": "metainfo.source", "pk": 8933, "fields": {"orig_filename": "Mertens_Franz_1840_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412823}}, {"model": "metainfo.source", "pk": 8934, "fields": {"orig_filename": "Mertens_Heinrich_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412824}}, {"model": "metainfo.source", "pk": 8935, "fields": {"orig_filename": "Mertens_Karl_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412890}}, {"model": "metainfo.source", "pk": 8936, "fields": {"orig_filename": "Mertens_Ludwig_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412891}}, {"model": "metainfo.source", "pk": 8937, "fields": {"orig_filename": "Merten_Eduard_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412822}}, {"model": "metainfo.source", "pk": 8938, "fields": {"orig_filename": "Mertha_Rudolf_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412893}}, {"model": "metainfo.source", "pk": 8939, "fields": {"orig_filename": "Merth_Bernhard_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236f.", "author": "", "orig_id": 1412892}}, {"model": "metainfo.source", "pk": 8940, "fields": {"orig_filename": "Mertz_Johann-Kaspar_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412894}}, {"model": "metainfo.source", "pk": 8941, "fields": {"orig_filename": "Merunowicz_Teofil_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412895}}, {"model": "metainfo.source", "pk": 8942, "fields": {"orig_filename": "Merveldt_Franz_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237f.", "author": "", "orig_id": 1412896}}, {"model": "metainfo.source", "pk": 8943, "fields": {"orig_filename": "Merwart_Karl_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238", "author": "", "orig_id": 1412897}}, {"model": "metainfo.source", "pk": 8944, "fields": {"orig_filename": "Merwart_Paul_1855_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238", "author": "", "orig_id": 1412898}}, {"model": "metainfo.source", "pk": 8945, "fields": {"orig_filename": "Merz_Alfred_1880_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238f.", "author": "", "orig_id": 1412899}}, {"model": "metainfo.source", "pk": 8946, "fields": {"orig_filename": "Meschendoerfer_Josef-Traugott_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 239", "author": "", "orig_id": 1412900}}, {"model": "metainfo.source", "pk": 8947, "fields": {"orig_filename": "Mesesnel_France_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 239f.", "author": "", "orig_id": 1412901}}, {"model": "metainfo.source", "pk": 8948, "fields": {"orig_filename": "Mesic_Matija_1826_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 240", "author": "", "orig_id": 1412902}}, {"model": "metainfo.source", "pk": 8949, "fields": {"orig_filename": "Mesk_Josef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 240f.", "author": "", "orig_id": 1412903}}, {"model": "metainfo.source", "pk": 8950, "fields": {"orig_filename": "Mesota_Ioan-G_1837_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241", "author": "", "orig_id": 1412904}}, {"model": "metainfo.source", "pk": 8951, "fields": {"orig_filename": "Messenboeck_Hubert_1887_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241", "author": "", "orig_id": 1412905}}, {"model": "metainfo.source", "pk": 8952, "fields": {"orig_filename": "Messenhauser_Wenzel-Georg_1811_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241f.", "author": "", "orig_id": 1412906}}, {"model": "metainfo.source", "pk": 8953, "fields": {"orig_filename": "Messerklinger_Johann_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242", "author": "", "orig_id": 1412908}}, {"model": "metainfo.source", "pk": 8954, "fields": {"orig_filename": "Messer_Max_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242", "author": "", "orig_id": 1412907}}, {"model": "metainfo.source", "pk": 8955, "fields": {"orig_filename": "Messmer_Alois_1822_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242f.", "author": "", "orig_id": 1412909}}, {"model": "metainfo.source", "pk": 8956, "fields": {"orig_filename": "Messner_Anton_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412910}}, {"model": "metainfo.source", "pk": 8957, "fields": {"orig_filename": "Messner_Josef_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412911}}, {"model": "metainfo.source", "pk": 8958, "fields": {"orig_filename": "Messner_Josef_1837_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412912}}, {"model": "metainfo.source", "pk": 8959, "fields": {"orig_filename": "Messner_Paul_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243f.", "author": "", "orig_id": 1412913}}, {"model": "metainfo.source", "pk": 8960, "fields": {"orig_filename": "Messner_Theresia_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 244", "author": "", "orig_id": 1412914}}, {"model": "metainfo.source", "pk": 8961, "fields": {"orig_filename": "Mestan_Franz_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 244f.", "author": "", "orig_id": 1412985}}, {"model": "metainfo.source", "pk": 8962, "fields": {"orig_filename": "Mestrozi_Paul_1771_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 245", "author": "", "orig_id": 1412986}}, {"model": "metainfo.source", "pk": 8963, "fields": {"orig_filename": "Mestrozi_Paul_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 245f.", "author": "", "orig_id": 1412987}}, {"model": "metainfo.source", "pk": 8964, "fields": {"orig_filename": "Meszaros_Lazar_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246", "author": "", "orig_id": 1412988}}, {"model": "metainfo.source", "pk": 8965, "fields": {"orig_filename": "Meszoely_Geza_1844_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246", "author": "", "orig_id": 1412989}}, {"model": "metainfo.source", "pk": 8966, "fields": {"orig_filename": "Metelko_Fran_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246f.", "author": "", "orig_id": 1412990}}, {"model": "metainfo.source", "pk": 8967, "fields": {"orig_filename": "Metianu_Ioan_1828_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247", "author": "", "orig_id": 1412991}}, {"model": "metainfo.source", "pk": 8968, "fields": {"orig_filename": "Metnitz_Gustav_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247", "author": "", "orig_id": 1412992}}, {"model": "metainfo.source", "pk": 8969, "fields": {"orig_filename": "Metschl_Karl_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247f.", "author": "", "orig_id": 1412993}}, {"model": "metainfo.source", "pk": 8970, "fields": {"orig_filename": "Mettelet_Anatol_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 248", "author": "", "orig_id": 1412994}}, {"model": "metainfo.source", "pk": 8971, "fields": {"orig_filename": "Metternich-Sandor_Pauline_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 248f.", "author": "", "orig_id": 1412995}}, {"model": "metainfo.source", "pk": 8972, "fields": {"orig_filename": "Metternich-Winneburg_Klemens-Wenzel-Lothar_1773_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 249f.", "author": "", "orig_id": 1412996}}, {"model": "metainfo.source", "pk": 8973, "fields": {"orig_filename": "Metternich-Winneburg_Richard-Klemens_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250", "author": "", "orig_id": 1412997}}, {"model": "metainfo.source", "pk": 8974, "fields": {"orig_filename": "Metz-Spondalunga_Rudolf_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250f.", "author": "", "orig_id": 1412999}}, {"model": "metainfo.source", "pk": 8975, "fields": {"orig_filename": "Metzburg_Johann_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251", "author": "", "orig_id": 1413000}}, {"model": "metainfo.source", "pk": 8976, "fields": {"orig_filename": "Metzger_Hugo_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251", "author": "", "orig_id": 1413001}}, {"model": "metainfo.source", "pk": 8977, "fields": {"orig_filename": "Metzger_Josef_1870_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251f.", "author": "", "orig_id": 1413002}}, {"model": "metainfo.source", "pk": 8978, "fields": {"orig_filename": "Metzger_Max-Josef_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252", "author": "", "orig_id": 1413003}}, {"model": "metainfo.source", "pk": 8979, "fields": {"orig_filename": "Metzler-Loewy_Pauline_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252f.", "author": "", "orig_id": 1413005}}, {"model": "metainfo.source", "pk": 8980, "fields": {"orig_filename": "Metzler_Johann-Jakob_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252", "author": "", "orig_id": 1413004}}, {"model": "metainfo.source", "pk": 8981, "fields": {"orig_filename": "Metzner_Hugo_1882_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253", "author": "", "orig_id": 1413006}}, {"model": "metainfo.source", "pk": 8982, "fields": {"orig_filename": "Metzner_Karl_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253", "author": "", "orig_id": 1413007}}, {"model": "metainfo.source", "pk": 8983, "fields": {"orig_filename": "Metz_Karl_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250", "author": "", "orig_id": 1412998}}, {"model": "metainfo.source", "pk": 8984, "fields": {"orig_filename": "Meurer_Julius_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253f.", "author": "", "orig_id": 1413077}}, {"model": "metainfo.source", "pk": 8985, "fields": {"orig_filename": "Meusburger_Karl_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 254", "author": "", "orig_id": 1413078}}, {"model": "metainfo.source", "pk": 8986, "fields": {"orig_filename": "Meyndt_Georg_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 254f.", "author": "", "orig_id": 1413079}}, {"model": "metainfo.source", "pk": 8987, "fields": {"orig_filename": "Meynert_Hermann-Guenther_1808_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 255", "author": "", "orig_id": 1413080}}, {"model": "metainfo.source", "pk": 8988, "fields": {"orig_filename": "Meynert_Theodor_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 255f.", "author": "", "orig_id": 1413081}}, {"model": "metainfo.source", "pk": 8989, "fields": {"orig_filename": "Meznik_Anton_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 256", "author": "", "orig_id": 1413082}}, {"model": "metainfo.source", "pk": 8990, "fields": {"orig_filename": "Miari_Antonio_1754_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 256", "author": "", "orig_id": 1413083}}, {"model": "metainfo.source", "pk": 8991, "fields": {"orig_filename": "Micatek_Ludovit_1874_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413084}}, {"model": "metainfo.source", "pk": 8992, "fields": {"orig_filename": "Miceu_Giuseppe_1873_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413085}}, {"model": "metainfo.source", "pk": 8993, "fields": {"orig_filename": "Michaelis_Franz_1841_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257f.", "author": "", "orig_id": 1413087}}, {"model": "metainfo.source", "pk": 8994, "fields": {"orig_filename": "Michaelis_Johann_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413088}}, {"model": "metainfo.source", "pk": 8995, "fields": {"orig_filename": "Michaelis_Ludwig-Johann_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413089}}, {"model": "metainfo.source", "pk": 8996, "fields": {"orig_filename": "Michael_Emil_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413086}}, {"model": "metainfo.source", "pk": 8997, "fields": {"orig_filename": "Michalek_Ludwig_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413090}}, {"model": "metainfo.source", "pk": 8998, "fields": {"orig_filename": "Michalitschke_Anton_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258f.", "author": "", "orig_id": 1413091}}, {"model": "metainfo.source", "pk": 8999, "fields": {"orig_filename": "Michalovich_Johann_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259", "author": "", "orig_id": 1413092}}, {"model": "metainfo.source", "pk": 9000, "fields": {"orig_filename": "Michalowski_Jozef_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259", "author": "", "orig_id": 1413093}}, {"model": "metainfo.source", "pk": 9001, "fields": {"orig_filename": "Michalowski_Piotr_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259f.", "author": "", "orig_id": 1413094}}, {"model": "metainfo.source", "pk": 9002, "fields": {"orig_filename": "Michalski_Konstanty_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 260", "author": "", "orig_id": 1413095}}, {"model": "metainfo.source", "pk": 9003, "fields": {"orig_filename": "Michalski_Michal_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 260f.", "author": "", "orig_id": 1413096}}, {"model": "metainfo.source", "pk": 9004, "fields": {"orig_filename": "Michejda_Franciszek_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261", "author": "", "orig_id": 1413097}}, {"model": "metainfo.source", "pk": 9005, "fields": {"orig_filename": "Michejda_Jan_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261", "author": "", "orig_id": 1413098}}, {"model": "metainfo.source", "pk": 9006, "fields": {"orig_filename": "Michejda_Wladyslaw_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261f.", "author": "", "orig_id": 1413166}}, {"model": "metainfo.source", "pk": 9007, "fields": {"orig_filename": "Michelazzi_Agostino_1732_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413169}}, {"model": "metainfo.source", "pk": 9008, "fields": {"orig_filename": "Michelic_Anton_1748_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413170}}, {"model": "metainfo.source", "pk": 9009, "fields": {"orig_filename": "Michelstaedter_Carlo_1887_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262f.", "author": "", "orig_id": 1413171}}, {"model": "metainfo.source", "pk": 9010, "fields": {"orig_filename": "Michel_Adalbert-Theodor_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413167}}, {"model": "metainfo.source", "pk": 9011, "fields": {"orig_filename": "Michel_Philipp-Adalbert_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413168}}, {"model": "metainfo.source", "pk": 9012, "fields": {"orig_filename": "Michetschlaeger_Heinrich_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263", "author": "", "orig_id": 1413172}}, {"model": "metainfo.source", "pk": 9013, "fields": {"orig_filename": "Micheuz_Jurij_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263", "author": "", "orig_id": 1413173}}, {"model": "metainfo.source", "pk": 9014, "fields": {"orig_filename": "Michl_Frantisek_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263f.", "author": "", "orig_id": 1413174}}, {"model": "metainfo.source", "pk": 9015, "fields": {"orig_filename": "Michl_Josef-Vaclav_1810_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264", "author": "", "orig_id": 1413175}}, {"model": "metainfo.source", "pk": 9016, "fields": {"orig_filename": "Michl_Leopold_1764_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264", "author": "", "orig_id": 1413176}}, {"model": "metainfo.source", "pk": 9017, "fields": {"orig_filename": "Michna-Watzenau_Emanuel_1772_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264f.", "author": "", "orig_id": 1413177}}, {"model": "metainfo.source", "pk": 9018, "fields": {"orig_filename": "Michnay_Andreas-Daniel_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265", "author": "", "orig_id": 1413178}}, {"model": "metainfo.source", "pk": 9019, "fields": {"orig_filename": "Meichl_Georg_1791_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193f.", "author": "", "orig_id": 1413787}}, {"model": "metainfo.source", "pk": 9020, "fields": {"orig_filename": "Meilbek_Josef_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 194", "author": "", "orig_id": 1413788}}, {"model": "metainfo.source", "pk": 9021, "fields": {"orig_filename": "Meiller_Andreas_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 194f.", "author": "", "orig_id": 1413789}}, {"model": "metainfo.source", "pk": 9022, "fields": {"orig_filename": "Meineckova_Tylda_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195", "author": "", "orig_id": 1413791}}, {"model": "metainfo.source", "pk": 9023, "fields": {"orig_filename": "Meinert_Joseph-Georg_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195f.", "author": "", "orig_id": 1413792}}, {"model": "metainfo.source", "pk": 9024, "fields": {"orig_filename": "Meingast_Adalbert-Mathias_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 196", "author": "", "orig_id": 1413793}}, {"model": "metainfo.source", "pk": 9025, "fields": {"orig_filename": "Meinl_Julius_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 196f.", "author": "", "orig_id": 1413794}}, {"model": "metainfo.source", "pk": 9026, "fields": {"orig_filename": "Meinong-Handschuchsheim_Alexius_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 197f.", "author": "", "orig_id": 1413795}}, {"model": "metainfo.source", "pk": 9027, "fields": {"orig_filename": "Meinong-Handschuchsheim_Rafael_1849_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413865}}, {"model": "metainfo.source", "pk": 9028, "fields": {"orig_filename": "Meinzinger-Meinzingen_Franz_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413866}}, {"model": "metainfo.source", "pk": 9029, "fields": {"orig_filename": "Meisels_Dow-Beer_1798_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198f.", "author": "", "orig_id": 1413868}}, {"model": "metainfo.source", "pk": 9030, "fields": {"orig_filename": "Meisel_Franz_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413867}}, {"model": "metainfo.source", "pk": 9031, "fields": {"orig_filename": "Meisl_Hugo_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 199", "author": "", "orig_id": 1413869}}, {"model": "metainfo.source", "pk": 9032, "fields": {"orig_filename": "Meisl_Karl_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 199f.", "author": "", "orig_id": 1413870}}, {"model": "metainfo.source", "pk": 9033, "fields": {"orig_filename": "Meissl_Emerich_1855_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200", "author": "", "orig_id": 1413871}}, {"model": "metainfo.source", "pk": 9034, "fields": {"orig_filename": "Meissner_Alfred_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200", "author": "", "orig_id": 1413873}}, {"model": "metainfo.source", "pk": 9035, "fields": {"orig_filename": "Meissner_Alfred_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200f.", "author": "", "orig_id": 1413872}}, {"model": "metainfo.source", "pk": 9036, "fields": {"orig_filename": "Meissner_Franziska_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 201", "author": "", "orig_id": 1413874}}, {"model": "metainfo.source", "pk": 9037, "fields": {"orig_filename": "Meissner_Johannes-Friedrich_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 201f.", "author": "", "orig_id": 1413875}}, {"model": "metainfo.source", "pk": 9038, "fields": {"orig_filename": "Meissner_Karl-Ludwig_1809_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202", "author": "", "orig_id": 1412873}}, {"model": "metainfo.source", "pk": 9039, "fields": {"orig_filename": "Meissner_Leopold-Florian_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202", "author": "", "orig_id": 1413876}}, {"model": "metainfo.source", "pk": 9040, "fields": {"orig_filename": "Meissner_Paul-Traugott_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202f.", "author": "", "orig_id": 1413877}}, {"model": "metainfo.source", "pk": 9041, "fields": {"orig_filename": "Meister_Johann_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203", "author": "", "orig_id": 1413878}}, {"model": "metainfo.source", "pk": 9042, "fields": {"orig_filename": "Meixner-Zweienstamm_Otto_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206", "author": "", "orig_id": 1412524}}, {"model": "metainfo.source", "pk": 9043, "fields": {"orig_filename": "Meixner_Adolf_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413880}}, {"model": "metainfo.source", "pk": 9044, "fields": {"orig_filename": "Meixner_Heinrich_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413881}}, {"model": "metainfo.source", "pk": 9045, "fields": {"orig_filename": "Meixner_Johann_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413882}}, {"model": "metainfo.source", "pk": 9046, "fields": {"orig_filename": "Meixner_Josef_1889_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204f.", "author": "", "orig_id": 1413883}}, {"model": "metainfo.source", "pk": 9047, "fields": {"orig_filename": "Meixner_Julius_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 205", "author": "", "orig_id": 1413884}}, {"model": "metainfo.source", "pk": 9048, "fields": {"orig_filename": "Meixner_Karl-Wilhelm_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 205f.", "author": "", "orig_id": 1413885}}, {"model": "metainfo.source", "pk": 9049, "fields": {"orig_filename": "Mejsnar_Hynek-Jaroslav_1837_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206f.", "author": "", "orig_id": 1412525}}, {"model": "metainfo.source", "pk": 9050, "fields": {"orig_filename": "Mekler_Siegfried_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 207", "author": "", "orig_id": 1412526}}, {"model": "metainfo.source", "pk": 9051, "fields": {"orig_filename": "Melan_Joseph_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 207f.", "author": "", "orig_id": 1412527}}, {"model": "metainfo.source", "pk": 9052, "fields": {"orig_filename": "Melas_Heinrich_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412528}}, {"model": "metainfo.source", "pk": 9053, "fields": {"orig_filename": "Melchiori_Josef_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412529}}, {"model": "metainfo.source", "pk": 9054, "fields": {"orig_filename": "Melczer_Gustav_1869_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412530}}, {"model": "metainfo.source", "pk": 9055, "fields": {"orig_filename": "Meletzki_Emil_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208f.", "author": "", "orig_id": 1412531}}, {"model": "metainfo.source", "pk": 9056, "fields": {"orig_filename": "Melichar_Frantisek_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209", "author": "", "orig_id": 1412533}}, {"model": "metainfo.source", "pk": 9057, "fields": {"orig_filename": "Melichar_Franz_1835_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209f.", "author": "", "orig_id": 1412534}}, {"model": "metainfo.source", "pk": 9058, "fields": {"orig_filename": "Melichar_Josef-Jaroslav_1819_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210", "author": "", "orig_id": 1412535}}, {"model": "metainfo.source", "pk": 9059, "fields": {"orig_filename": "Melichar_Leopold_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210", "author": "", "orig_id": 1412536}}, {"model": "metainfo.source", "pk": 9060, "fields": {"orig_filename": "Melicher_Ludwig-Josef_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210f.", "author": "", "orig_id": 1412537}}, {"model": "metainfo.source", "pk": 9061, "fields": {"orig_filename": "Melicher_Theophil_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211", "author": "", "orig_id": 1412538}}, {"model": "metainfo.source", "pk": 9062, "fields": {"orig_filename": "Melic_Johann_1763_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209", "author": "", "orig_id": 1412532}}, {"model": "metainfo.source", "pk": 9063, "fields": {"orig_filename": "Melingo_Achilles_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211", "author": "", "orig_id": 1412539}}, {"model": "metainfo.source", "pk": 9064, "fields": {"orig_filename": "Melion_Josef_1813_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211f.", "author": "", "orig_id": 1412540}}, {"model": "metainfo.source", "pk": 9065, "fields": {"orig_filename": "Melion_Julius_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412541}}, {"model": "metainfo.source", "pk": 9066, "fields": {"orig_filename": "Melisova_Antonie_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412543}}, {"model": "metainfo.source", "pk": 9067, "fields": {"orig_filename": "Melis_Emanuel-Anton_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412542}}, {"model": "metainfo.source", "pk": 9068, "fields": {"orig_filename": "Melkus_Dragan_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212f.", "author": "", "orig_id": 1412544}}, {"model": "metainfo.source", "pk": 9069, "fields": {"orig_filename": "Mellitzer_Georg_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214", "author": "", "orig_id": 1412616}}, {"model": "metainfo.source", "pk": 9070, "fields": {"orig_filename": "Melly_Eduard_1814_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214f.", "author": "", "orig_id": 1412617}}, {"model": "metainfo.source", "pk": 9071, "fields": {"orig_filename": "Mell_Alexander_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 213", "author": "", "orig_id": 1412545}}, {"model": "metainfo.source", "pk": 9072, "fields": {"orig_filename": "Mell_Anton_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 213f.", "author": "", "orig_id": 1412546}}, {"model": "metainfo.source", "pk": 9073, "fields": {"orig_filename": "Mell_Richard_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214", "author": "", "orig_id": 1412547}}, {"model": "metainfo.source", "pk": 9074, "fields": {"orig_filename": "Meltzl_Hugo_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215", "author": "", "orig_id": 1412618}}, {"model": "metainfo.source", "pk": 9075, "fields": {"orig_filename": "Meltzl_Oskar_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215", "author": "", "orig_id": 1412619}}, {"model": "metainfo.source", "pk": 9076, "fields": {"orig_filename": "Melzer-Orienburg_Joseph_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412626}}, {"model": "metainfo.source", "pk": 9077, "fields": {"orig_filename": "Melzer_Anton_1781_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215f.", "author": "", "orig_id": 1412620}}, {"model": "metainfo.source", "pk": 9078, "fields": {"orig_filename": "Melzer_Anton_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412621}}, {"model": "metainfo.source", "pk": 9079, "fields": {"orig_filename": "Melzer_Jakob_1782_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412622}}, {"model": "metainfo.source", "pk": 9080, "fields": {"orig_filename": "Melzer_Karl_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412623}}, {"model": "metainfo.source", "pk": 9081, "fields": {"orig_filename": "Melzer_Otto_1869_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216f.", "author": "", "orig_id": 1412624}}, {"model": "metainfo.source", "pk": 9082, "fields": {"orig_filename": "Mencik_Ferdinand_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412628}}, {"model": "metainfo.source", "pk": 9083, "fields": {"orig_filename": "Mencinger_Janez_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217f.", "author": "", "orig_id": 1412627}}, {"model": "metainfo.source", "pk": 9084, "fields": {"orig_filename": "Mencl_Josef-Branislav_1815_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 218", "author": "", "orig_id": 1412629}}, {"model": "metainfo.source", "pk": 9085, "fields": {"orig_filename": "Mendel_Gregor_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 218f.", "author": "", "orig_id": 1412630}}, {"model": "metainfo.source", "pk": 9086, "fields": {"orig_filename": "Meneghelli_Antonio-Maria_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 219", "author": "", "orig_id": 1412631}}, {"model": "metainfo.source", "pk": 9087, "fields": {"orig_filename": "Meneghini_Giuseppe_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 219f.", "author": "", "orig_id": 1412632}}, {"model": "metainfo.source", "pk": 9088, "fields": {"orig_filename": "Menevischian_Gabriel_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 220", "author": "", "orig_id": 1412633}}, {"model": "metainfo.source", "pk": 9089, "fields": {"orig_filename": "Menger_Anton_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 220f.", "author": "", "orig_id": 1412634}}, {"model": "metainfo.source", "pk": 9090, "fields": {"orig_filename": "Menger_Karl_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 221f.", "author": "", "orig_id": 1412635}}, {"model": "metainfo.source", "pk": 9091, "fields": {"orig_filename": "Menger_Max_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 222", "author": "", "orig_id": 1412636}}, {"model": "metainfo.source", "pk": 9092, "fields": {"orig_filename": "Menghin-Brezburg_Giuseppe_1786_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412708}}, {"model": "metainfo.source", "pk": 9093, "fields": {"orig_filename": "Menghin_Alois_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 222f.", "author": "", "orig_id": 1412707}}, {"model": "metainfo.source", "pk": 9094, "fields": {"orig_filename": "Menghin_Oswald_1888_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431851}}, {"model": "metainfo.source", "pk": 9095, "fields": {"orig_filename": "Mennel_Alois_1894_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1470164}}, {"model": "metainfo.source", "pk": 9096, "fields": {"orig_filename": "Mennel_Josef_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412709}}, {"model": "metainfo.source", "pk": 9097, "fields": {"orig_filename": "Mensdorff-Pouilly-Dietrichstein_Albert_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412711}}, {"model": "metainfo.source", "pk": 9098, "fields": {"orig_filename": "Mensdorff-Pouilly_Arthur_1817_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412710}}, {"model": "metainfo.source", "pk": 9099, "fields": {"orig_filename": "Mensi-Klarbach_Daniel_1781_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412712}}, {"model": "metainfo.source", "pk": 9100, "fields": {"orig_filename": "Mensi-Klarbach_Franz_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412714}}, {"model": "metainfo.source", "pk": 9101, "fields": {"orig_filename": "Mensik_Jan_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224f.", "author": "", "orig_id": 1412713}}, {"model": "metainfo.source", "pk": 9102, "fields": {"orig_filename": "Mentasti_Alois_1887_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1455889}}, {"model": "metainfo.source", "pk": 9103, "fields": {"orig_filename": "Mentovich_Ferenc_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225", "author": "", "orig_id": 1412715}}, {"model": "metainfo.source", "pk": 9104, "fields": {"orig_filename": "Menzel_Adolf_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225f.", "author": "", "orig_id": 1412717}}, {"model": "metainfo.source", "pk": 9105, "fields": {"orig_filename": "Menzel_Karl_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 226", "author": "", "orig_id": 1412718}}, {"model": "metainfo.source", "pk": 9106, "fields": {"orig_filename": "Menz_Karl_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225", "author": "", "orig_id": 1412716}}, {"model": "metainfo.source", "pk": 9107, "fields": {"orig_filename": "Meran_Anna-Maria_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 226f.", "author": "", "orig_id": 1412719}}, {"model": "metainfo.source", "pk": 9108, "fields": {"orig_filename": "Meraviglia-Crivelli_Rudolf-Johann_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412720}}, {"model": "metainfo.source", "pk": 9109, "fields": {"orig_filename": "Mercy_Heinrich_1826_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412721}}, {"model": "metainfo.source", "pk": 9110, "fields": {"orig_filename": "Merenyi_Lajos_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412722}}, {"model": "metainfo.source", "pk": 9111, "fields": {"orig_filename": "Meretta_Anna_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227f.", "author": "", "orig_id": 1412723}}, {"model": "metainfo.source", "pk": 9112, "fields": {"orig_filename": "Merey-Kapos-Mere_Kajetan_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 228", "author": "", "orig_id": 1412724}}, {"model": "metainfo.source", "pk": 9113, "fields": {"orig_filename": "Merhar_Alojzij_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 228f.", "author": "", "orig_id": 1412725}}, {"model": "metainfo.source", "pk": 9114, "fields": {"orig_filename": "Merhar_Ivan_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229", "author": "", "orig_id": 1412726}}, {"model": "metainfo.source", "pk": 9115, "fields": {"orig_filename": "Merhaut_Josef_1863_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229", "author": "", "orig_id": 1412727}}, {"model": "metainfo.source", "pk": 9116, "fields": {"orig_filename": "Meringer_Rudolf_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229f.", "author": "", "orig_id": 1412728}}, {"model": "metainfo.source", "pk": 9117, "fields": {"orig_filename": "Merizzi_Erik_1873_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230", "author": "", "orig_id": 1412729}}, {"model": "metainfo.source", "pk": 9118, "fields": {"orig_filename": "Merkel_Rudolf_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412801}}, {"model": "metainfo.source", "pk": 9119, "fields": {"orig_filename": "Maurovic_Antun_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413348}}, {"model": "metainfo.source", "pk": 9120, "fields": {"orig_filename": "Mauss_Anton_1868_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413413}}, {"model": "metainfo.source", "pk": 9121, "fields": {"orig_filename": "Mauss_Jozef_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413414}}, {"model": "metainfo.source", "pk": 9122, "fields": {"orig_filename": "Mauthner-Mauthstein_Ludwig-Wilhelm_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 163", "author": "", "orig_id": 1413423}}, {"model": "metainfo.source", "pk": 9123, "fields": {"orig_filename": "Mauthner_Eugen-Moritz_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 160", "author": "", "orig_id": 1413415}}, {"model": "metainfo.source", "pk": 9124, "fields": {"orig_filename": "Mauthner_Fritz_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 160f.", "author": "", "orig_id": 1413416}}, {"model": "metainfo.source", "pk": 9125, "fields": {"orig_filename": "Mauthner_Gustav_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 161", "author": "", "orig_id": 1413417}}, {"model": "metainfo.source", "pk": 9126, "fields": {"orig_filename": "Mauthner_Josef_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 161f.", "author": "", "orig_id": 1413418}}, {"model": "metainfo.source", "pk": 9127, "fields": {"orig_filename": "Mauthner_Julius_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162", "author": "", "orig_id": 1413419}}, {"model": "metainfo.source", "pk": 9128, "fields": {"orig_filename": "Mauthner_Ludwig_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162", "author": "", "orig_id": 1413420}}, {"model": "metainfo.source", "pk": 9129, "fields": {"orig_filename": "Mauthner_Max_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162f.", "author": "", "orig_id": 1413421}}, {"model": "metainfo.source", "pk": 9130, "fields": {"orig_filename": "Mauthner_Philipp_1835_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 163", "author": "", "orig_id": 1413422}}, {"model": "metainfo.source", "pk": 9131, "fields": {"orig_filename": "Mautner-Markhof_Adolf-Ignaz_1801_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 165f.", "author": "", "orig_id": 1413429}}, {"model": "metainfo.source", "pk": 9132, "fields": {"orig_filename": "Mautner-Markhof_Editha_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166", "author": "", "orig_id": 1413430}}, {"model": "metainfo.source", "pk": 9133, "fields": {"orig_filename": "Mautner-Markhof_Georg-Anton_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166", "author": "", "orig_id": 1413431}}, {"model": "metainfo.source", "pk": 9134, "fields": {"orig_filename": "Mautner-Markhof_Georg-Heinrich_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166f.", "author": "", "orig_id": 1413432}}, {"model": "metainfo.source", "pk": 9135, "fields": {"orig_filename": "Mautner-Markhof_Karl-Ferdinand_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167", "author": "", "orig_id": 1413433}}, {"model": "metainfo.source", "pk": 9136, "fields": {"orig_filename": "Mautner-Markhof_Manfred_1903_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1425243}}, {"model": "metainfo.source", "pk": 9137, "fields": {"orig_filename": "Mautner_Eduard_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 164", "author": "", "orig_id": 1413424}}, {"model": "metainfo.source", "pk": 9138, "fields": {"orig_filename": "Mautner_Isaac_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413425}}, {"model": "metainfo.source", "pk": 9139, "fields": {"orig_filename": "Mautner_Isidor_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413426}}, {"model": "metainfo.source", "pk": 9140, "fields": {"orig_filename": "Mautner_Konrad_1880_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413427}}, {"model": "metainfo.source", "pk": 9141, "fields": {"orig_filename": "Mautner_Stephan_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413428}}, {"model": "metainfo.source", "pk": 9142, "fields": {"orig_filename": "Mautschka_Hans_1888_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167", "author": "", "orig_id": 1413434}}, {"model": "metainfo.source", "pk": 9143, "fields": {"orig_filename": "Max-Wachstein_Emanuel_1810_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168", "author": "", "orig_id": 1413505}}, {"model": "metainfo.source", "pk": 9144, "fields": {"orig_filename": "Maximilian-Josef___1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168f.", "author": "", "orig_id": 1413507}}, {"model": "metainfo.source", "pk": 9145, "fields": {"orig_filename": "Max_Gabriel-Cornelius_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167f.", "author": "", "orig_id": 1413435}}, {"model": "metainfo.source", "pk": 9146, "fields": {"orig_filename": "Max_Josef_1804_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168", "author": "", "orig_id": 1413504}}, {"model": "metainfo.source", "pk": 9147, "fields": {"orig_filename": "Mayburger_Josef_1814_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170", "author": "", "orig_id": 1413510}}, {"model": "metainfo.source", "pk": 9148, "fields": {"orig_filename": "Maydl_Karel_1853_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170f.", "author": "", "orig_id": 1413511}}, {"model": "metainfo.source", "pk": 9149, "fields": {"orig_filename": "Maylender_Michele_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171", "author": "", "orig_id": 1413512}}, {"model": "metainfo.source", "pk": 9150, "fields": {"orig_filename": "Mayseder_Joseph_1789_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171", "author": "", "orig_id": 1413513}}, {"model": "metainfo.source", "pk": 9151, "fields": {"orig_filename": "Maytner_Alberta_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171f.", "author": "", "orig_id": 1413514}}, {"model": "metainfo.source", "pk": 9152, "fields": {"orig_filename": "Maywald_Karl_1814_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413515}}, {"model": "metainfo.source", "pk": 9153, "fields": {"orig_filename": "May_Albert-Alexis_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 169f.", "author": "", "orig_id": 1413508}}, {"model": "metainfo.source", "pk": 9154, "fields": {"orig_filename": "May_Matthias_1884_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170", "author": "", "orig_id": 1413509}}, {"model": "metainfo.source", "pk": 9155, "fields": {"orig_filename": "Mazagg_Siegfried_1902_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413516}}, {"model": "metainfo.source", "pk": 9156, "fields": {"orig_filename": "Mazanowski_Antoni_1858_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413517}}, {"model": "metainfo.source", "pk": 9157, "fields": {"orig_filename": "Mazegger_Bernard_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172f.", "author": "", "orig_id": 1413518}}, {"model": "metainfo.source", "pk": 9158, "fields": {"orig_filename": "Mazegger_Bernhard_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 173", "author": "", "orig_id": 1413519}}, {"model": "metainfo.source", "pk": 9159, "fields": {"orig_filename": "Mazelle_Eduard_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 173f.", "author": "", "orig_id": 1413520}}, {"model": "metainfo.source", "pk": 9160, "fields": {"orig_filename": "Mazgon_Anton_1812_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413521}}, {"model": "metainfo.source", "pk": 9161, "fields": {"orig_filename": "Mazuranic_Antun_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413522}}, {"model": "metainfo.source", "pk": 9162, "fields": {"orig_filename": "Mazuranic_Bogoslav_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413523}}, {"model": "metainfo.source", "pk": 9163, "fields": {"orig_filename": "Mazuranic_Fran-Vladimir_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174f.", "author": "", "orig_id": 1413524}}, {"model": "metainfo.source", "pk": 9164, "fields": {"orig_filename": "Mazuranic_Ivan_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 175f.", "author": "", "orig_id": 1413525}}, {"model": "metainfo.source", "pk": 9165, "fields": {"orig_filename": "Mazuranic_Matija_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 176", "author": "", "orig_id": 1413593}}, {"model": "metainfo.source", "pk": 9166, "fields": {"orig_filename": "Mazuranic_Vladimir_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 176", "author": "", "orig_id": 1413594}}, {"model": "metainfo.source", "pk": 9167, "fields": {"orig_filename": "Mazzetti-Roccanova_Anton_1784_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413595}}, {"model": "metainfo.source", "pk": 9168, "fields": {"orig_filename": "Mazzoleni_Paolo_1831_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413596}}, {"model": "metainfo.source", "pk": 9169, "fields": {"orig_filename": "Mazzucato_Alberto_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413597}}, {"model": "metainfo.source", "pk": 9170, "fields": {"orig_filename": "Mazzura_Lav_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177f.", "author": "", "orig_id": 1413598}}, {"model": "metainfo.source", "pk": 9171, "fields": {"orig_filename": "Mazzura_Sime_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413599}}, {"model": "metainfo.source", "pk": 9172, "fields": {"orig_filename": "Mebus_Eduard_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413600}}, {"model": "metainfo.source", "pk": 9173, "fields": {"orig_filename": "Mebus_Maximiliane_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413601}}, {"model": "metainfo.source", "pk": 9174, "fields": {"orig_filename": "Mecenseffy_Artur_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178f.", "author": "", "orig_id": 1413602}}, {"model": "metainfo.source", "pk": 9175, "fields": {"orig_filename": "Mecenseffy_Emil_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179", "author": "", "orig_id": 1413603}}, {"model": "metainfo.source", "pk": 9176, "fields": {"orig_filename": "Mecherzynski_Karol_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179", "author": "", "orig_id": 1413604}}, {"model": "metainfo.source", "pk": 9177, "fields": {"orig_filename": "Mechetti_Pietro_1777_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179f.", "author": "", "orig_id": 1413605}}, {"model": "metainfo.source", "pk": 9178, "fields": {"orig_filename": "Mechwart-Belecska_Andreas_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180", "author": "", "orig_id": 1413606}}, {"model": "metainfo.source", "pk": 9179, "fields": {"orig_filename": "Mecsery-Tsoor_Daniel_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180", "author": "", "orig_id": 1413607}}, {"model": "metainfo.source", "pk": 9180, "fields": {"orig_filename": "Mecsery-Tsoor_Karl_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180f.", "author": "", "orig_id": 1413608}}, {"model": "metainfo.source", "pk": 9181, "fields": {"orig_filename": "Medakovic_Bogdan_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181", "author": "", "orig_id": 1413609}}, {"model": "metainfo.source", "pk": 9182, "fields": {"orig_filename": "Medakovic_Danilo_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181", "author": "", "orig_id": 1413610}}, {"model": "metainfo.source", "pk": 9183, "fields": {"orig_filename": "Medek_Rudolf_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181f.", "author": "", "orig_id": 1413611}}, {"model": "metainfo.source", "pk": 9184, "fields": {"orig_filename": "Medelhammer_Albin-Johann_1776_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182", "author": "", "orig_id": 1413612}}, {"model": "metainfo.source", "pk": 9185, "fields": {"orig_filename": "Medelsky_Hermine_1884_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2008003}}, {"model": "metainfo.source", "pk": 9186, "fields": {"orig_filename": "Medelsky_Josef_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182", "author": "", "orig_id": 1413613}}, {"model": "metainfo.source", "pk": 9187, "fields": {"orig_filename": "Mederitsch_Johann_1752_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183", "author": "", "orig_id": 1413616}}, {"model": "metainfo.source", "pk": 9188, "fields": {"orig_filename": "Meder_Josef_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183", "author": "", "orig_id": 1413615}}, {"model": "metainfo.source", "pk": 9189, "fields": {"orig_filename": "Medgyes_Lajos_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183f.", "author": "", "orig_id": 1413685}}, {"model": "metainfo.source", "pk": 9190, "fields": {"orig_filename": "Medic_Danilo_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413686}}, {"model": "metainfo.source", "pk": 9191, "fields": {"orig_filename": "Medic_Mojo_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413687}}, {"model": "metainfo.source", "pk": 9192, "fields": {"orig_filename": "Medinger_Johann_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413688}}, {"model": "metainfo.source", "pk": 9193, "fields": {"orig_filename": "Medinger_Wilhelm_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184f.", "author": "", "orig_id": 1413689}}, {"model": "metainfo.source", "pk": 9194, "fields": {"orig_filename": "Medini_Milorad_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185", "author": "", "orig_id": 1413690}}, {"model": "metainfo.source", "pk": 9195, "fields": {"orig_filename": "Mediz_Emilie_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185", "author": "", "orig_id": 1413691}}, {"model": "metainfo.source", "pk": 9196, "fields": {"orig_filename": "Mediz_Karl_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185f.", "author": "", "orig_id": 1413692}}, {"model": "metainfo.source", "pk": 9197, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Alajos_1784_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186", "author": "", "orig_id": 1413693}}, {"model": "metainfo.source", "pk": 9198, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Cezar_1824_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186", "author": "", "orig_id": 1413694}}, {"model": "metainfo.source", "pk": 9199, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Denes_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186f.", "author": "", "orig_id": 1413695}}, {"model": "metainfo.source", "pk": 9200, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Laszlo_1819_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187", "author": "", "orig_id": 1413696}}, {"model": "metainfo.source", "pk": 9201, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Laszlo_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187", "author": "", "orig_id": 1413697}}, {"model": "metainfo.source", "pk": 9202, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Sandor_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187f.", "author": "", "orig_id": 1413698}}, {"model": "metainfo.source", "pk": 9203, "fields": {"orig_filename": "Medovic_Celestin_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413699}}, {"model": "metainfo.source", "pk": 9204, "fields": {"orig_filename": "Medvecky_Karl-Anton_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413700}}, {"model": "metainfo.source", "pk": 9205, "fields": {"orig_filename": "Medveczky_Frigyes_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413701}}, {"model": "metainfo.source", "pk": 9206, "fields": {"orig_filename": "Medved_Anton_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188f.", "author": "", "orig_id": 1413702}}, {"model": "metainfo.source", "pk": 9207, "fields": {"orig_filename": "Medved_Anton_1869_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 189", "author": "", "orig_id": 1413773}}, {"model": "metainfo.source", "pk": 9208, "fields": {"orig_filename": "Meeraus_Robert_1899_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 189f.", "author": "", "orig_id": 1413774}}, {"model": "metainfo.source", "pk": 9209, "fields": {"orig_filename": "Megerle-Muehlfeld_Eugen-Alexander_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190f.", "author": "", "orig_id": 1413777}}, {"model": "metainfo.source", "pk": 9210, "fields": {"orig_filename": "Megerle-Muehlfeld_Johann-Georg_1780_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413778}}, {"model": "metainfo.source", "pk": 9211, "fields": {"orig_filename": "Megerle_Julius_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190", "author": "", "orig_id": 1413775}}, {"model": "metainfo.source", "pk": 9212, "fields": {"orig_filename": "Megerle_Therese_1813_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190", "author": "", "orig_id": 1413776}}, {"model": "metainfo.source", "pk": 9213, "fields": {"orig_filename": "Megusar_Franc_1876_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413779}}, {"model": "metainfo.source", "pk": 9214, "fields": {"orig_filename": "Megyeri_Dezsoe_1857_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413780}}, {"model": "metainfo.source", "pk": 9215, "fields": {"orig_filename": "Megyeri_Karoly_1798_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191f.", "author": "", "orig_id": 1413781}}, {"model": "metainfo.source", "pk": 9216, "fields": {"orig_filename": "Mehes_Samuel_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192", "author": "", "orig_id": 1413782}}, {"model": "metainfo.source", "pk": 9217, "fields": {"orig_filename": "Mehoffer_Joseph_1786_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192", "author": "", "orig_id": 1413783}}, {"model": "metainfo.source", "pk": 9218, "fields": {"orig_filename": "Mehoffer_Jozef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192f.", "author": "", "orig_id": 1413784}}, {"model": "metainfo.source", "pk": 9219, "fields": {"orig_filename": "Mehoffer_Rudolf_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193", "author": "", "orig_id": 1413785}}, {"model": "metainfo.source", "pk": 9220, "fields": {"orig_filename": "Mehr_Robert_1886_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193", "author": "", "orig_id": 1413786}}, {"model": "metainfo.source", "pk": 9221, "fields": {"orig_filename": "Maschek-Maasburg_Michael-Friedrich_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1408573}}, {"model": "metainfo.source", "pk": 9222, "fields": {"orig_filename": "Maschek_Friedrich_1849_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1412604}}, {"model": "metainfo.source", "pk": 9223, "fields": {"orig_filename": "Maschek_Heinrich_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1408572}}, {"model": "metainfo.source", "pk": 9224, "fields": {"orig_filename": "Maschka_Josef_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27), S. 126", "author": "", "orig_id": 1467314}}, {"model": "metainfo.source", "pk": 9225, "fields": {"orig_filename": "Maschke_Hans_1853_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408575}}, {"model": "metainfo.source", "pk": 9226, "fields": {"orig_filename": "Masek_Frantisek_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408576}}, {"model": "metainfo.source", "pk": 9227, "fields": {"orig_filename": "Masek_Gaspar_1794_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408577}}, {"model": "metainfo.source", "pk": 9228, "fields": {"orig_filename": "Masek_Kamilo_1831_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126f.", "author": "", "orig_id": 1408578}}, {"model": "metainfo.source", "pk": 9229, "fields": {"orig_filename": "Masek_Karel_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 127", "author": "", "orig_id": 1408579}}, {"model": "metainfo.source", "pk": 9230, "fields": {"orig_filename": "Masek_Pavel-Lambert_1761_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 127", "author": "", "orig_id": 1408580}}, {"model": "metainfo.source", "pk": 9231, "fields": {"orig_filename": "Masek_Vincenz_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 128", "author": "", "orig_id": 1408581}}, {"model": "metainfo.source", "pk": 9232, "fields": {"orig_filename": "Maselj_Fran_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 128f.", "author": "", "orig_id": 1408582}}, {"model": "metainfo.source", "pk": 9233, "fields": {"orig_filename": "Masic_Nikola_1852_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129", "author": "", "orig_id": 1408583}}, {"model": "metainfo.source", "pk": 9234, "fields": {"orig_filename": "Masik_Emil_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129", "author": "", "orig_id": 1413054}}, {"model": "metainfo.source", "pk": 9235, "fields": {"orig_filename": "Maska_Karel-Jaroslav_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129f.", "author": "", "orig_id": 1413055}}, {"model": "metainfo.source", "pk": 9236, "fields": {"orig_filename": "Maslowski_Ludwik_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413056}}, {"model": "metainfo.source", "pk": 9237, "fields": {"orig_filename": "Masoch_Franciszek_1763_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413057}}, {"model": "metainfo.source", "pk": 9238, "fields": {"orig_filename": "Massak_Franz_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413058}}, {"model": "metainfo.source", "pk": 9239, "fields": {"orig_filename": "Massalongo_Abramo-Bartolommeo_1824_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130f.", "author": "", "orig_id": 1413059}}, {"model": "metainfo.source", "pk": 9240, "fields": {"orig_filename": "Massalongo_Caro-Benigno_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 131", "author": "", "orig_id": 1413060}}, {"model": "metainfo.source", "pk": 9241, "fields": {"orig_filename": "Massari_Julius_1845_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 131f.", "author": "", "orig_id": 1413061}}, {"model": "metainfo.source", "pk": 9242, "fields": {"orig_filename": "Mastalka_Jindrich_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413062}}, {"model": "metainfo.source", "pk": 9243, "fields": {"orig_filename": "Maszkowski_Jan_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413063}}, {"model": "metainfo.source", "pk": 9244, "fields": {"orig_filename": "Maszkowski_Karol_1830_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413064}}, {"model": "metainfo.source", "pk": 9245, "fields": {"orig_filename": "Maszkowski_Karol_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413065}}, {"model": "metainfo.source", "pk": 9246, "fields": {"orig_filename": "Maszkowski_Marceli_1837_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413066}}, {"model": "metainfo.source", "pk": 9247, "fields": {"orig_filename": "Masznyik_Endre_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413067}}, {"model": "metainfo.source", "pk": 9248, "fields": {"orig_filename": "Mataja_Emilie_1855_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133f.", "author": "", "orig_id": 1413068}}, {"model": "metainfo.source", "pk": 9249, "fields": {"orig_filename": "Mataja_Heinrich_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 134f.", "author": "", "orig_id": 1413069}}, {"model": "metainfo.source", "pk": 9250, "fields": {"orig_filename": "Mataja_Viktor_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413070}}, {"model": "metainfo.source", "pk": 9251, "fields": {"orig_filename": "Matakiewicz_Antoni_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413071}}, {"model": "metainfo.source", "pk": 9252, "fields": {"orig_filename": "Matakiewicz_Maksymilian_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413072}}, {"model": "metainfo.source", "pk": 9253, "fields": {"orig_filename": "Matas_Antun-Konstantin_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413073}}, {"model": "metainfo.source", "pk": 9254, "fields": {"orig_filename": "Matcovich_Enrico_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413074}}, {"model": "metainfo.source", "pk": 9255, "fields": {"orig_filename": "Mategczek_Eduard_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413075}}, {"model": "metainfo.source", "pk": 9256, "fields": {"orig_filename": "Matejcek_Antonin_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136f.", "author": "", "orig_id": 1413076}}, {"model": "metainfo.source", "pk": 9257, "fields": {"orig_filename": "Matejka_Bohumil_1867_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137", "author": "", "orig_id": 1413144}}, {"model": "metainfo.source", "pk": 9258, "fields": {"orig_filename": "Matejka_Josef_1879_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137", "author": "", "orig_id": 1413145}}, {"model": "metainfo.source", "pk": 9259, "fields": {"orig_filename": "Matejko_Theo_1893_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413146}}, {"model": "metainfo.source", "pk": 9260, "fields": {"orig_filename": "Matejko_Franciszek-Ksawery-Edward_1828_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137f.", "author": "", "orig_id": 1413147}}, {"model": "metainfo.source", "pk": 9261, "fields": {"orig_filename": "Matejko_Jan_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138", "author": "", "orig_id": 1413148}}, {"model": "metainfo.source", "pk": 9262, "fields": {"orig_filename": "Matejovsky_Philip-Karl_1820_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138", "author": "", "orig_id": 1413149}}, {"model": "metainfo.source", "pk": 9263, "fields": {"orig_filename": "Matek_Blaz_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138f.", "author": "", "orig_id": 1413150}}, {"model": "metainfo.source", "pk": 9264, "fields": {"orig_filename": "Materna_Amalia_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 139", "author": "", "orig_id": 1413151}}, {"model": "metainfo.source", "pk": 9265, "fields": {"orig_filename": "Materna_Rudolf_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 139f.", "author": "", "orig_id": 1413152}}, {"model": "metainfo.source", "pk": 9266, "fields": {"orig_filename": "Maternova_Pavla_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413153}}, {"model": "metainfo.source", "pk": 9267, "fields": {"orig_filename": "Mathes-Bilabruck_Karl_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413155}}, {"model": "metainfo.source", "pk": 9268, "fields": {"orig_filename": "Mathesius_Vilem_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140f.", "author": "", "orig_id": 1413156}}, {"model": "metainfo.source", "pk": 9269, "fields": {"orig_filename": "Mathes_Michael_1814_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413154}}, {"model": "metainfo.source", "pk": 9270, "fields": {"orig_filename": "Mathiowitz_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 141", "author": "", "orig_id": 1413157}}, {"model": "metainfo.source", "pk": 9271, "fields": {"orig_filename": "Mathis-Treustadt_Johann-Martin_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 141f.", "author": "", "orig_id": 1413158}}, {"model": "metainfo.source", "pk": 9272, "fields": {"orig_filename": "Maticevic_Stjepan_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142", "author": "", "orig_id": 1413160}}, {"model": "metainfo.source", "pk": 9273, "fields": {"orig_filename": "Matic_Eugen_1889_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142", "author": "", "orig_id": 1413159}}, {"model": "metainfo.source", "pk": 9274, "fields": {"orig_filename": "Matiegka_Jindrich_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142f.", "author": "", "orig_id": 1413161}}, {"model": "metainfo.source", "pk": 9275, "fields": {"orig_filename": "Matiegka_Wenzel-Thomas_1773_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413162}}, {"model": "metainfo.source", "pk": 9276, "fields": {"orig_filename": "Matijevic_Pavao_1867_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413163}}, {"model": "metainfo.source", "pk": 9277, "fields": {"orig_filename": "Matikian_Alexander_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413164}}, {"model": "metainfo.source", "pk": 9278, "fields": {"orig_filename": "Matkovic_Jakov_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143f.", "author": "", "orig_id": 1413165}}, {"model": "metainfo.source", "pk": 9279, "fields": {"orig_filename": "Matkovic_Petar_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413233}}, {"model": "metainfo.source", "pk": 9280, "fields": {"orig_filename": "Matlakowski_Wladyslaw_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413234}}, {"model": "metainfo.source", "pk": 9281, "fields": {"orig_filename": "Matlekovits_Sandor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413235}}, {"model": "metainfo.source", "pk": 9282, "fields": {"orig_filename": "Matosch_Anton_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 145", "author": "", "orig_id": 1413237}}, {"model": "metainfo.source", "pk": 9283, "fields": {"orig_filename": "Matos_Antun-Gustav_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144f.", "author": "", "orig_id": 1413236}}, {"model": "metainfo.source", "pk": 9284, "fields": {"orig_filename": "Matouschek_Franz_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 145f.", "author": "", "orig_id": 1413238}}, {"model": "metainfo.source", "pk": 9285, "fields": {"orig_filename": "Matousek_Josef_1840_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146", "author": "", "orig_id": 1413239}}, {"model": "metainfo.source", "pk": 9286, "fields": {"orig_filename": "Matousek_Josef_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146", "author": "", "orig_id": 1413240}}, {"model": "metainfo.source", "pk": 9287, "fields": {"orig_filename": "Matras_Franz-Eduard_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146f.", "author": "", "orig_id": 1413241}}, {"model": "metainfo.source", "pk": 9288, "fields": {"orig_filename": "Matras_Josef_1832_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 147", "author": "", "orig_id": 1413242}}, {"model": "metainfo.source", "pk": 9289, "fields": {"orig_filename": "Matscheg_Anton_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 148", "author": "", "orig_id": 1413244}}, {"model": "metainfo.source", "pk": 9290, "fields": {"orig_filename": "Matscheko_Michael_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 148", "author": "", "orig_id": 1413245}}, {"model": "metainfo.source", "pk": 9291, "fields": {"orig_filename": "Matschnig_Eleonore_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413246}}, {"model": "metainfo.source", "pk": 9292, "fields": {"orig_filename": "Matsch_Franz_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 147f.", "author": "", "orig_id": 1413243}}, {"model": "metainfo.source", "pk": 9293, "fields": {"orig_filename": "Mattanovich_Erwin_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413249}}, {"model": "metainfo.source", "pk": 9294, "fields": {"orig_filename": "Mattanovic_Ernst_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413248}}, {"model": "metainfo.source", "pk": 9295, "fields": {"orig_filename": "Mattauschek_Emil_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413251}}, {"model": "metainfo.source", "pk": 9296, "fields": {"orig_filename": "Mattausch_Franz_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149f.", "author": "", "orig_id": 1413250}}, {"model": "metainfo.source", "pk": 9297, "fields": {"orig_filename": "Mattoni_Heinrich_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413252}}, {"model": "metainfo.source", "pk": 9298, "fields": {"orig_filename": "Mattuschka_Ignaz_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 151f.", "author": "", "orig_id": 1413255}}, {"model": "metainfo.source", "pk": 9299, "fields": {"orig_filename": "Mattus_Jaroslav_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413254}}, {"model": "metainfo.source", "pk": 9300, "fields": {"orig_filename": "Mattus_Karel_1836_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150f.", "author": "", "orig_id": 1413253}}, {"model": "metainfo.source", "pk": 9301, "fields": {"orig_filename": "Matt_Georg_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413247}}, {"model": "metainfo.source", "pk": 9302, "fields": {"orig_filename": "Matunak_Michal_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413256}}, {"model": "metainfo.source", "pk": 9303, "fields": {"orig_filename": "Matuska_Janko_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413325}}, {"model": "metainfo.source", "pk": 9304, "fields": {"orig_filename": "Matyas_Florian_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413326}}, {"model": "metainfo.source", "pk": 9305, "fields": {"orig_filename": "Matzenauer_Antonin_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152f.", "author": "", "orig_id": 1413327}}, {"model": "metainfo.source", "pk": 9306, "fields": {"orig_filename": "Matzenauer_Engelbert_1820_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153", "author": "", "orig_id": 1413328}}, {"model": "metainfo.source", "pk": 9307, "fields": {"orig_filename": "Matzenauer_Josef_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153", "author": "", "orig_id": 1413329}}, {"model": "metainfo.source", "pk": 9308, "fields": {"orig_filename": "Matzenauer_Rudolf_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153f.", "author": "", "orig_id": 1413330}}, {"model": "metainfo.source", "pk": 9309, "fields": {"orig_filename": "Matzenkopf_Franz-Xaver_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413331}}, {"model": "metainfo.source", "pk": 9310, "fields": {"orig_filename": "Matzgeller_Michael_1775_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413332}}, {"model": "metainfo.source", "pk": 9311, "fields": {"orig_filename": "Matzinger_Franz_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413333}}, {"model": "metainfo.source", "pk": 9312, "fields": {"orig_filename": "Matzinger_Stephan_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413334}}, {"model": "metainfo.source", "pk": 9313, "fields": {"orig_filename": "Matzura_Josef_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413335}}, {"model": "metainfo.source", "pk": 9314, "fields": {"orig_filename": "Mauermann_Max_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413337}}, {"model": "metainfo.source", "pk": 9315, "fields": {"orig_filename": "Mauksch_Thomas_1749_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155f.", "author": "", "orig_id": 1413338}}, {"model": "metainfo.source", "pk": 9316, "fields": {"orig_filename": "Mauler-Elisenau_Josef_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156", "author": "", "orig_id": 1413339}}, {"model": "metainfo.source", "pk": 9317, "fields": {"orig_filename": "Maupas_Petar-Dujam_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156", "author": "", "orig_id": 1413340}}, {"model": "metainfo.source", "pk": 9318, "fields": {"orig_filename": "Mauracher_Matthias_1788_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156f.", "author": "", "orig_id": 1413341}}, {"model": "metainfo.source", "pk": 9319, "fields": {"orig_filename": "Maurer_Ferdinand_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157", "author": "", "orig_id": 1413342}}, {"model": "metainfo.source", "pk": 9320, "fields": {"orig_filename": "Maurer_Franz_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157", "author": "", "orig_id": 1413343}}, {"model": "metainfo.source", "pk": 9321, "fields": {"orig_filename": "Maurer_Joseph-Karl_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413345}}, {"model": "metainfo.source", "pk": 9322, "fields": {"orig_filename": "Maurer_Joseph-Valentin_1797_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413346}}, {"model": "metainfo.source", "pk": 9323, "fields": {"orig_filename": "Maurer_Joseph_1853_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157f.", "author": "", "orig_id": 1413344}}, {"model": "metainfo.source", "pk": 9324, "fields": {"orig_filename": "Maurig-Sarnfeld_Ernst_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413347}}, {"model": "metainfo.source", "pk": 9325, "fields": {"orig_filename": "Mariassy-Markusfalva-Batizfalva_Bela_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90", "author": "", "orig_id": 1408126}}, {"model": "metainfo.source", "pk": 9326, "fields": {"orig_filename": "Mariassy-Markusfalva-Batizfalva_Janos_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90", "author": "", "orig_id": 1408128}}, {"model": "metainfo.source", "pk": 9327, "fields": {"orig_filename": "Maric_Josip_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90f.", "author": "", "orig_id": 1408127}}, {"model": "metainfo.source", "pk": 9328, "fields": {"orig_filename": "Marienburger_Georg_1751_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408131}}, {"model": "metainfo.source", "pk": 9329, "fields": {"orig_filename": "Marienburg_Georg-Friedrich_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408129}}, {"model": "metainfo.source", "pk": 9330, "fields": {"orig_filename": "Marienburg_Lukas-Joseph_1770_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408130}}, {"model": "metainfo.source", "pk": 9331, "fields": {"orig_filename": "Marijanovic_Stjepan_1794_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91f.", "author": "", "orig_id": 1408132}}, {"model": "metainfo.source", "pk": 9332, "fields": {"orig_filename": "Marik_Bohuslav_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92", "author": "", "orig_id": 1408133}}, {"model": "metainfo.source", "pk": 9333, "fields": {"orig_filename": "Marik_Frantisek_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92", "author": "", "orig_id": 1408204}}, {"model": "metainfo.source", "pk": 9334, "fields": {"orig_filename": "Marik_Vaclav_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92f.", "author": "", "orig_id": 1408203}}, {"model": "metainfo.source", "pk": 9335, "fields": {"orig_filename": "Marinelli_Ernst_1824_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408205}}, {"model": "metainfo.source", "pk": 9336, "fields": {"orig_filename": "Marinitsch_Josef_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408207}}, {"model": "metainfo.source", "pk": 9337, "fields": {"orig_filename": "Marini_Ignazio_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408206}}, {"model": "metainfo.source", "pk": 9338, "fields": {"orig_filename": "Mariot_Emil_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93f.", "author": "", "orig_id": 1408208}}, {"model": "metainfo.source", "pk": 9339, "fields": {"orig_filename": "Markbreit_Leopold_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94", "author": "", "orig_id": 1408210}}, {"model": "metainfo.source", "pk": 9340, "fields": {"orig_filename": "Markic_Mihael_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408214}}, {"model": "metainfo.source", "pk": 9341, "fields": {"orig_filename": "Markiewicz_Dominik-Jan_1761_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95f.", "author": "", "orig_id": 1408215}}, {"model": "metainfo.source", "pk": 9342, "fields": {"orig_filename": "Markiewicz_Roman_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96", "author": "", "orig_id": 1408216}}, {"model": "metainfo.source", "pk": 9343, "fields": {"orig_filename": "Marki_Anton_1759_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94f.", "author": "", "orig_id": 1408211}}, {"model": "metainfo.source", "pk": 9344, "fields": {"orig_filename": "Marki_Samuel_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408212}}, {"model": "metainfo.source", "pk": 9345, "fields": {"orig_filename": "Marki_Sandor_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408213}}, {"model": "metainfo.source", "pk": 9346, "fields": {"orig_filename": "Markl_Andreas_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96", "author": "", "orig_id": 1408217}}, {"model": "metainfo.source", "pk": 9347, "fields": {"orig_filename": "Markl_Bohumil_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96f.", "author": "", "orig_id": 1408218}}, {"model": "metainfo.source", "pk": 9348, "fields": {"orig_filename": "Markl_Moritz_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408219}}, {"model": "metainfo.source", "pk": 9349, "fields": {"orig_filename": "Markovic-Adamov_Pavle_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98f.", "author": "", "orig_id": 1408292}}, {"model": "metainfo.source", "pk": 9350, "fields": {"orig_filename": "Markovic_Franjo_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408222}}, {"model": "metainfo.source", "pk": 9351, "fields": {"orig_filename": "Markovic_Ivan_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408223}}, {"model": "metainfo.source", "pk": 9352, "fields": {"orig_filename": "Markovic_Marijan_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408224}}, {"model": "metainfo.source", "pk": 9353, "fields": {"orig_filename": "Markovits_Adalbert_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 99", "author": "", "orig_id": 1408293}}, {"model": "metainfo.source", "pk": 9354, "fields": {"orig_filename": "Markovits_Ivan-Theodor_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 99f.", "author": "", "orig_id": 1408294}}, {"model": "metainfo.source", "pk": 9355, "fields": {"orig_filename": "Markowicz_Artur_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100", "author": "", "orig_id": 1408295}}, {"model": "metainfo.source", "pk": 9356, "fields": {"orig_filename": "Markowski_Jozef_1860_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100", "author": "", "orig_id": 1408296}}, {"model": "metainfo.source", "pk": 9357, "fields": {"orig_filename": "Markowski_Jozef_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100f.", "author": "", "orig_id": 1466818}}, {"model": "metainfo.source", "pk": 9358, "fields": {"orig_filename": "Markowsky_August-Maria_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 101", "author": "", "orig_id": 1408297}}, {"model": "metainfo.source", "pk": 9359, "fields": {"orig_filename": "Marko_Karoly_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408220}}, {"model": "metainfo.source", "pk": 9360, "fields": {"orig_filename": "Marko_Miklos_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408221}}, {"model": "metainfo.source", "pk": 9361, "fields": {"orig_filename": "Marktanner-Turneretscher_Gottlieb_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 101f.", "author": "", "orig_id": 1408298}}, {"model": "metainfo.source", "pk": 9362, "fields": {"orig_filename": "Markusovszky_Lajos_1815_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408303}}, {"model": "metainfo.source", "pk": 9363, "fields": {"orig_filename": "Markusovszky_Samuel_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408304}}, {"model": "metainfo.source", "pk": 9364, "fields": {"orig_filename": "Markus_Adalbert_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408299}}, {"model": "metainfo.source", "pk": 9365, "fields": {"orig_filename": "Markus_Emilia_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408300}}, {"model": "metainfo.source", "pk": 9366, "fields": {"orig_filename": "Markus_Jordan-Kajetan_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408301}}, {"model": "metainfo.source", "pk": 9367, "fields": {"orig_filename": "Markus_Jozsef_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408302}}, {"model": "metainfo.source", "pk": 9368, "fields": {"orig_filename": "Mark_Abraham-Jakob_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94", "author": "", "orig_id": 1408209}}, {"model": "metainfo.source", "pk": 9369, "fields": {"orig_filename": "Marlin_Josef_1824_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103f.", "author": "", "orig_id": 1408305}}, {"model": "metainfo.source", "pk": 9370, "fields": {"orig_filename": "Marmorek_Alexander_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 104", "author": "", "orig_id": 1408306}}, {"model": "metainfo.source", "pk": 9371, "fields": {"orig_filename": "Marmorek_Oskar_1863_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 104f.", "author": "", "orig_id": 1408307}}, {"model": "metainfo.source", "pk": 9372, "fields": {"orig_filename": "Marno-Eichenhorst_Adolf_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105f.", "author": "", "orig_id": 1408310}}, {"model": "metainfo.source", "pk": 9373, "fields": {"orig_filename": "Marno_Ernst_1844_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105", "author": "", "orig_id": 1408309}}, {"model": "metainfo.source", "pk": 9374, "fields": {"orig_filename": "Marn_Josip_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105", "author": "", "orig_id": 1408308}}, {"model": "metainfo.source", "pk": 9375, "fields": {"orig_filename": "Maroicic-Madonna-Monte_Ambros-Georg-Wilhelm_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106", "author": "", "orig_id": 1408311}}, {"model": "metainfo.source", "pk": 9376, "fields": {"orig_filename": "Maroicic-Madonna-Monte_Josef_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106", "author": "", "orig_id": 1408378}}, {"model": "metainfo.source", "pk": 9377, "fields": {"orig_filename": "Marold_Ludek_1865_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106f.", "author": "", "orig_id": 1408379}}, {"model": "metainfo.source", "pk": 9378, "fields": {"orig_filename": "Maroli_Rudolf-Johann-Emil_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107", "author": "", "orig_id": 1408380}}, {"model": "metainfo.source", "pk": 9379, "fields": {"orig_filename": "Marothy-Soltesova_Elena_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107", "author": "", "orig_id": 1408381}}, {"model": "metainfo.source", "pk": 9380, "fields": {"orig_filename": "Marovich_Anna_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107f.", "author": "", "orig_id": 1408382}}, {"model": "metainfo.source", "pk": 9381, "fields": {"orig_filename": "Marquart_Friedrich_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408383}}, {"model": "metainfo.source", "pk": 9382, "fields": {"orig_filename": "Marsal-Petrovsky_Gustav_1862_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408385}}, {"model": "metainfo.source", "pk": 9383, "fields": {"orig_filename": "Marsano_Wilhelm_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109", "author": "", "orig_id": 1408387}}, {"model": "metainfo.source", "pk": 9384, "fields": {"orig_filename": "Marsan_Robert_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108f.", "author": "", "orig_id": 1408386}}, {"model": "metainfo.source", "pk": 9385, "fields": {"orig_filename": "Marschalko_Johann_1818_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109", "author": "", "orig_id": 1408388}}, {"model": "metainfo.source", "pk": 9386, "fields": {"orig_filename": "Marschall_Godfried_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109f.", "author": "", "orig_id": 1408389}}, {"model": "metainfo.source", "pk": 9387, "fields": {"orig_filename": "Marschan_Josef-Wilhelm_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110", "author": "", "orig_id": 1408390}}, {"model": "metainfo.source", "pk": 9388, "fields": {"orig_filename": "Marschner_Franz-Ludwig_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110", "author": "", "orig_id": 1408391}}, {"model": "metainfo.source", "pk": 9389, "fields": {"orig_filename": "Marschner_Franz-Vinzenz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110f.", "author": "", "orig_id": 1408392}}, {"model": "metainfo.source", "pk": 9390, "fields": {"orig_filename": "Marschner_Robert-Anton_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408393}}, {"model": "metainfo.source", "pk": 9391, "fields": {"orig_filename": "Marsilli_Francesco-Antonio_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408395}}, {"model": "metainfo.source", "pk": 9392, "fields": {"orig_filename": "Marsoner_Rudolf_1899_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408394}}, {"model": "metainfo.source", "pk": 9393, "fields": {"orig_filename": "Mars_Antoni_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408384}}, {"model": "metainfo.source", "pk": 9394, "fields": {"orig_filename": "Marterer_Ferdinand_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112", "author": "", "orig_id": 1408397}}, {"model": "metainfo.source", "pk": 9395, "fields": {"orig_filename": "Martic_Grgo_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112", "author": "", "orig_id": 1408398}}, {"model": "metainfo.source", "pk": 9396, "fields": {"orig_filename": "Martinak_Eduard_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114f.", "author": "", "orig_id": 1408474}}, {"model": "metainfo.source", "pk": 9397, "fields": {"orig_filename": "Martinak_Heinrich_1826_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115", "author": "", "orig_id": 1408475}}, {"model": "metainfo.source", "pk": 9398, "fields": {"orig_filename": "Martinek_Robert_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115", "author": "", "orig_id": 1408476}}, {"model": "metainfo.source", "pk": 9399, "fields": {"orig_filename": "Martinelli_Louise_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115f.", "author": "", "orig_id": 1408477}}, {"model": "metainfo.source", "pk": 9400, "fields": {"orig_filename": "Martinelli_Ludwig_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 116", "author": "", "orig_id": 1408478}}, {"model": "metainfo.source", "pk": 9401, "fields": {"orig_filename": "Martinez_August_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 117", "author": "", "orig_id": 1408479}}, {"model": "metainfo.source", "pk": 9402, "fields": {"orig_filename": "Martini_Karl-Wilhelm_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 117", "author": "", "orig_id": 1408481}}, {"model": "metainfo.source", "pk": 9403, "fields": {"orig_filename": "Martinu_Jan_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408482}}, {"model": "metainfo.source", "pk": 9404, "fields": {"orig_filename": "Martiny-Malastow_Hugo_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408484}}, {"model": "metainfo.source", "pk": 9405, "fields": {"orig_filename": "Martiny_Koloman_1864_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408483}}, {"model": "metainfo.source", "pk": 9406, "fields": {"orig_filename": "Martin_Anton_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112f.", "author": "", "orig_id": 1408399}}, {"model": "metainfo.source", "pk": 9407, "fields": {"orig_filename": "Martin_Franz_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 113f.", "author": "", "orig_id": 1408471}}, {"model": "metainfo.source", "pk": 9408, "fields": {"orig_filename": "Martin_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114", "author": "", "orig_id": 1408472}}, {"model": "metainfo.source", "pk": 9409, "fields": {"orig_filename": "Martin_Lajos_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114", "author": "", "orig_id": 1408473}}, {"model": "metainfo.source", "pk": 9410, "fields": {"orig_filename": "Martius_Anton_1794_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118f.", "author": "", "orig_id": 1408485}}, {"model": "metainfo.source", "pk": 9411, "fields": {"orig_filename": "Marton-Zsarolyan-Mand_Istvan_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119", "author": "", "orig_id": 1408486}}, {"model": "metainfo.source", "pk": 9412, "fields": {"orig_filename": "Martovyc_Les_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119", "author": "", "orig_id": 1408487}}, {"model": "metainfo.source", "pk": 9413, "fields": {"orig_filename": "Marty_Anton_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119f.", "author": "", "orig_id": 1408488}}, {"model": "metainfo.source", "pk": 9414, "fields": {"orig_filename": "Marun_Lujo_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120", "author": "", "orig_id": 1408489}}, {"model": "metainfo.source", "pk": 9415, "fields": {"orig_filename": "Marussig_Anton_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120", "author": "", "orig_id": 1408490}}, {"model": "metainfo.source", "pk": 9416, "fields": {"orig_filename": "Marx-Marxberg_Wilhelm_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 121f.", "author": "", "orig_id": 1408563}}, {"model": "metainfo.source", "pk": 9417, "fields": {"orig_filename": "Marx_Anton-Maria_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120f.", "author": "", "orig_id": 1408491}}, {"model": "metainfo.source", "pk": 9418, "fields": {"orig_filename": "Marx_Friedrich_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 121", "author": "", "orig_id": 1408562}}, {"model": "metainfo.source", "pk": 9419, "fields": {"orig_filename": "Maryanski_Walery-Ostoya_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408564}}, {"model": "metainfo.source", "pk": 9420, "fields": {"orig_filename": "Marzani-Stainhof-Neuhaus_Carlo_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408565}}, {"model": "metainfo.source", "pk": 9421, "fields": {"orig_filename": "Marzari-Pencati_Giuseppe_1779_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408566}}, {"model": "metainfo.source", "pk": 9422, "fields": {"orig_filename": "Marzik_Thomas_1810_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122f.", "author": "", "orig_id": 1408567}}, {"model": "metainfo.source", "pk": 9423, "fields": {"orig_filename": "Masaidek_Franz-Friedrich_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123", "author": "", "orig_id": 1408568}}, {"model": "metainfo.source", "pk": 9424, "fields": {"orig_filename": "Masaryk_Herbert_1880_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123", "author": "", "orig_id": 1408569}}, {"model": "metainfo.source", "pk": 9425, "fields": {"orig_filename": "Masaryk_Thomas_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123f.", "author": "", "orig_id": 1408570}}, {"model": "metainfo.source", "pk": 9426, "fields": {"orig_filename": "Maschat_Josef_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 124", "author": "", "orig_id": 1408571}}, {"model": "metainfo.source", "pk": 9427, "fields": {"orig_filename": "Mannagetta-Lerchenau_Johann-Wilhelm_1785_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56", "author": "", "orig_id": 1409192}}, {"model": "metainfo.source", "pk": 9428, "fields": {"orig_filename": "Manner_Josef_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56", "author": "", "orig_id": 1409193}}, {"model": "metainfo.source", "pk": 9429, "fields": {"orig_filename": "Mannheimer_Isak-Noa_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56f.", "author": "", "orig_id": 1409194}}, {"model": "metainfo.source", "pk": 9430, "fields": {"orig_filename": "Mannlicher_Ferdinand_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 57f.", "author": "", "orig_id": 1409196}}, {"model": "metainfo.source", "pk": 9431, "fields": {"orig_filename": "Mannl_Oswald_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 57", "author": "", "orig_id": 1409195}}, {"model": "metainfo.source", "pk": 9432, "fields": {"orig_filename": "Mannsbarth_Franz_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 58", "author": "", "orig_id": 1409197}}, {"model": "metainfo.source", "pk": 9433, "fields": {"orig_filename": "Mannsfeld_Hieronymus_1842_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 58f.", "author": "", "orig_id": 1409198}}, {"model": "metainfo.source", "pk": 9434, "fields": {"orig_filename": "Mann_Jakob_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409188}}, {"model": "metainfo.source", "pk": 9435, "fields": {"orig_filename": "Mann_Maurycy_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54f.", "author": "", "orig_id": 1409189}}, {"model": "metainfo.source", "pk": 9436, "fields": {"orig_filename": "Mann_Oskar_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 55", "author": "", "orig_id": 1409190}}, {"model": "metainfo.source", "pk": 9437, "fields": {"orig_filename": "Manojlovic_Gavro_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59", "author": "", "orig_id": 1409199}}, {"model": "metainfo.source", "pk": 9438, "fields": {"orig_filename": "Manojlovic_Michael_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59", "author": "", "orig_id": 1409200}}, {"model": "metainfo.source", "pk": 9439, "fields": {"orig_filename": "Manojlovic_Svetozar_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59f.", "author": "", "orig_id": 1409201}}, {"model": "metainfo.source", "pk": 9440, "fields": {"orig_filename": "Manowarda-Jana_Eberhard_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409202}}, {"model": "metainfo.source", "pk": 9441, "fields": {"orig_filename": "Manowarda-Jana_Josef_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409203}}, {"model": "metainfo.source", "pk": 9442, "fields": {"orig_filename": "Manschgo_Johann_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409205}}, {"model": "metainfo.source", "pk": 9443, "fields": {"orig_filename": "Mansch_Philipp_1838_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409204}}, {"model": "metainfo.source", "pk": 9444, "fields": {"orig_filename": "Mansfeld_August-Heinrich_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409206}}, {"model": "metainfo.source", "pk": 9445, "fields": {"orig_filename": "Mansfeld_Heinrich-Josef_1785_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409279}}, {"model": "metainfo.source", "pk": 9446, "fields": {"orig_filename": "Mansfeld_Josef_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409280}}, {"model": "metainfo.source", "pk": 9447, "fields": {"orig_filename": "Mansfeld_Moritz_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61f.", "author": "", "orig_id": 1409281}}, {"model": "metainfo.source", "pk": 9448, "fields": {"orig_filename": "Mantler_August_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409282}}, {"model": "metainfo.source", "pk": 9449, "fields": {"orig_filename": "Mantler_Heinrich_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409283}}, {"model": "metainfo.source", "pk": 9450, "fields": {"orig_filename": "Mantuani_Josef_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409284}}, {"model": "metainfo.source", "pk": 9451, "fields": {"orig_filename": "Manussi-Montesole_Alfred_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62f.", "author": "", "orig_id": 1409285}}, {"model": "metainfo.source", "pk": 9452, "fields": {"orig_filename": "Manussi-Montesole_Ferdinand-Karl_1809_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63", "author": "", "orig_id": 1409287}}, {"model": "metainfo.source", "pk": 9453, "fields": {"orig_filename": "Manussi-Montesole_Ferdinand_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63", "author": "", "orig_id": 1409286}}, {"model": "metainfo.source", "pk": 9454, "fields": {"orig_filename": "Manz-Mariensee_Anton_1757_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63f.", "author": "", "orig_id": 1409288}}, {"model": "metainfo.source", "pk": 9455, "fields": {"orig_filename": "Manz-Mariensee_Vinzenz_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409289}}, {"model": "metainfo.source", "pk": 9456, "fields": {"orig_filename": "Manzer_Josef-Dionys_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409290}}, {"model": "metainfo.source", "pk": 9457, "fields": {"orig_filename": "Manzer_Robert_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409291}}, {"model": "metainfo.source", "pk": 9458, "fields": {"orig_filename": "Manzoni_Alessandro_1785_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64f.", "author": "", "orig_id": 1409292}}, {"model": "metainfo.source", "pk": 9459, "fields": {"orig_filename": "Marak_Julius_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 65f.", "author": "", "orig_id": 1409293}}, {"model": "metainfo.source", "pk": 9460, "fields": {"orig_filename": "Marasca_Pietro_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66", "author": "", "orig_id": 1409295}}, {"model": "metainfo.source", "pk": 9461, "fields": {"orig_filename": "Marasse_Mieczyslaw_1840_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66f.", "author": "", "orig_id": 1409296}}, {"model": "metainfo.source", "pk": 9462, "fields": {"orig_filename": "Marastoni_Jakab_1804_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409297}}, {"model": "metainfo.source", "pk": 9463, "fields": {"orig_filename": "Marastoni_Josef_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409298}}, {"model": "metainfo.source", "pk": 9464, "fields": {"orig_filename": "Maras_Raimund_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66", "author": "", "orig_id": 1409294}}, {"model": "metainfo.source", "pk": 9465, "fields": {"orig_filename": "Maratka_Josef_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67f.", "author": "", "orig_id": 1409300}}, {"model": "metainfo.source", "pk": 9466, "fields": {"orig_filename": "Marat_Franz_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409299}}, {"model": "metainfo.source", "pk": 9467, "fields": {"orig_filename": "Marbach_Adolf_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409301}}, {"model": "metainfo.source", "pk": 9468, "fields": {"orig_filename": "Marcantellj-Serravalle_Bernhard_1755_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409303}}, {"model": "metainfo.source", "pk": 9469, "fields": {"orig_filename": "Marceljic_Josip_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68f.", "author": "", "orig_id": 1409373}}, {"model": "metainfo.source", "pk": 9470, "fields": {"orig_filename": "Marcher_Matthias_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409374}}, {"model": "metainfo.source", "pk": 9471, "fields": {"orig_filename": "Marchesetti_Carlo_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409375}}, {"model": "metainfo.source", "pk": 9472, "fields": {"orig_filename": "Marchetti_Prospero_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 71", "author": "", "orig_id": 1409379}}, {"model": "metainfo.source", "pk": 9473, "fields": {"orig_filename": "Marchet_Arthur_1892_1980.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1467303}}, {"model": "metainfo.source", "pk": 9474, "fields": {"orig_filename": "Marchet_Gustav_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 70", "author": "", "orig_id": 1409377}}, {"model": "metainfo.source", "pk": 9475, "fields": {"orig_filename": "Marchet_Julius_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 70f.", "author": "", "orig_id": 1409378}}, {"model": "metainfo.source", "pk": 9476, "fields": {"orig_filename": "Marchlewski_Leon-Pawel_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 71f.", "author": "", "orig_id": 1409380}}, {"model": "metainfo.source", "pk": 9477, "fields": {"orig_filename": "Marchwicki_Zdzislaw_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409381}}, {"model": "metainfo.source", "pk": 9478, "fields": {"orig_filename": "Marcolini_Francesco-Maria_1779_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409383}}, {"model": "metainfo.source", "pk": 9479, "fields": {"orig_filename": "Marconi_Leonard_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409384}}, {"model": "metainfo.source", "pk": 9480, "fields": {"orig_filename": "Marcus_Siegfried_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72f.", "author": "", "orig_id": 1409385}}, {"model": "metainfo.source", "pk": 9481, "fields": {"orig_filename": "Marczali_Henrik_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 73", "author": "", "orig_id": 1409386}}, {"model": "metainfo.source", "pk": 9482, "fields": {"orig_filename": "Mardetschlaeger_Franz_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74", "author": "", "orig_id": 1409387}}, {"model": "metainfo.source", "pk": 9483, "fields": {"orig_filename": "Mareck_Alois-Titus_1819_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74", "author": "", "orig_id": 1409388}}, {"model": "metainfo.source", "pk": 9484, "fields": {"orig_filename": "Mareda_Wenzel-Franz_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74f.", "author": "", "orig_id": 1409389}}, {"model": "metainfo.source", "pk": 9485, "fields": {"orig_filename": "Marek_Antonin_1785_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75", "author": "", "orig_id": 1409390}}, {"model": "metainfo.source", "pk": 9486, "fields": {"orig_filename": "Marek_Ferdinand_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75", "author": "", "orig_id": 1409391}}, {"model": "metainfo.source", "pk": 9487, "fields": {"orig_filename": "Marek_Jan-Jindrich_1803_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75f.", "author": "", "orig_id": 1409392}}, {"model": "metainfo.source", "pk": 9488, "fields": {"orig_filename": "Marek_Karl_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76", "author": "", "orig_id": 1409393}}, {"model": "metainfo.source", "pk": 9489, "fields": {"orig_filename": "Marek_Ludvik-Bohumil_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76", "author": "", "orig_id": 1409394}}, {"model": "metainfo.source", "pk": 9490, "fields": {"orig_filename": "Marek_Zygmunt_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76f.", "author": "", "orig_id": 1409467}}, {"model": "metainfo.source", "pk": 9491, "fields": {"orig_filename": "Marenzeller_Edmund-Oskar_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77", "author": "", "orig_id": 1409468}}, {"model": "metainfo.source", "pk": 9492, "fields": {"orig_filename": "Marenzeller_Emil_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77", "author": "", "orig_id": 1409469}}, {"model": "metainfo.source", "pk": 9493, "fields": {"orig_filename": "Marenzeller_Matthias_1765_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77f.", "author": "", "orig_id": 1409470}}, {"model": "metainfo.source", "pk": 9494, "fields": {"orig_filename": "Marenzi_Franz_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 78", "author": "", "orig_id": 1409471}}, {"model": "metainfo.source", "pk": 9495, "fields": {"orig_filename": "Marenzi_Franz_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 78f.", "author": "", "orig_id": 1409472}}, {"model": "metainfo.source", "pk": 9496, "fields": {"orig_filename": "Mareschall-Bieberstein_Wenzel-Philipp-Leopold_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 81", "author": "", "orig_id": 1409479}}, {"model": "metainfo.source", "pk": 9497, "fields": {"orig_filename": "Maresch_Johann_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80", "author": "", "orig_id": 1409476}}, {"model": "metainfo.source", "pk": 9498, "fields": {"orig_filename": "Maresch_Otto_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80", "author": "", "orig_id": 1409477}}, {"model": "metainfo.source", "pk": 9499, "fields": {"orig_filename": "Maresch_Rudolf_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80f.", "author": "", "orig_id": 1409478}}, {"model": "metainfo.source", "pk": 9500, "fields": {"orig_filename": "Mares_Bohumil_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79", "author": "", "orig_id": 1409473}}, {"model": "metainfo.source", "pk": 9501, "fields": {"orig_filename": "Mares_Frantisek_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79", "author": "", "orig_id": 1409474}}, {"model": "metainfo.source", "pk": 9502, "fields": {"orig_filename": "Mares_Frantisek_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79f.", "author": "", "orig_id": 1409475}}, {"model": "metainfo.source", "pk": 9503, "fields": {"orig_filename": "Mareta_Hugo_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 81f.", "author": "", "orig_id": 1409480}}, {"model": "metainfo.source", "pk": 9504, "fields": {"orig_filename": "Maretich-Riv-Alpon_Eduard_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82", "author": "", "orig_id": 1409483}}, {"model": "metainfo.source", "pk": 9505, "fields": {"orig_filename": "Maretich-Riv-Alpon_Gedeon_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82", "author": "", "orig_id": 1409481}}, {"model": "metainfo.source", "pk": 9506, "fields": {"orig_filename": "Maretzek_Max_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82f.", "author": "", "orig_id": 1409482}}, {"model": "metainfo.source", "pk": 9507, "fields": {"orig_filename": "Margelik_Franz_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409484}}, {"model": "metainfo.source", "pk": 9508, "fields": {"orig_filename": "Margocsy_Jozsef_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409486}}, {"model": "metainfo.source", "pk": 9509, "fields": {"orig_filename": "Margosches_Max_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83f.", "author": "", "orig_id": 1409487}}, {"model": "metainfo.source", "pk": 9510, "fields": {"orig_filename": "Margo_Tivadar_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409485}}, {"model": "metainfo.source", "pk": 9511, "fields": {"orig_filename": "Margreiter_Jakob_1762_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 84", "author": "", "orig_id": 1409488}}, {"model": "metainfo.source", "pk": 9512, "fields": {"orig_filename": "Margules_Max_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 84f.", "author": "", "orig_id": 1409489}}, {"model": "metainfo.source", "pk": 9513, "fields": {"orig_filename": "Margulies_Otto_1899_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1408113}}, {"model": "metainfo.source", "pk": 9514, "fields": {"orig_filename": "Margulies_Samuel-Hersch_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1408114}}, {"model": "metainfo.source", "pk": 9515, "fields": {"orig_filename": "Margutti_Albert_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85f.", "author": "", "orig_id": 1408115}}, {"model": "metainfo.source", "pk": 9516, "fields": {"orig_filename": "Maria-Anna__1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86", "author": "", "orig_id": 1408116}}, {"model": "metainfo.source", "pk": 9517, "fields": {"orig_filename": "Maria-Charlotte__1840_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86", "author": "", "orig_id": 1408117}}, {"model": "metainfo.source", "pk": 9518, "fields": {"orig_filename": "Maria-Christina__1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86f.", "author": "", "orig_id": 1408118}}, {"model": "metainfo.source", "pk": 9519, "fields": {"orig_filename": "Maria-Dorothea___1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 87", "author": "", "orig_id": 1408119}}, {"model": "metainfo.source", "pk": 9520, "fields": {"orig_filename": "Maria-Louise__1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 87f.", "author": "", "orig_id": 1408120}}, {"model": "metainfo.source", "pk": 9521, "fields": {"orig_filename": "Maria-Ludovica__1787_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 88f.", "author": "", "orig_id": 1408121}}, {"model": "metainfo.source", "pk": 9522, "fields": {"orig_filename": "Maria-Theresia__1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408122}}, {"model": "metainfo.source", "pk": 9523, "fields": {"orig_filename": "Maria-Valerie___1868_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408123}}, {"model": "metainfo.source", "pk": 9524, "fields": {"orig_filename": "Mariacher_Stephan_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408124}}, {"model": "metainfo.source", "pk": 9525, "fields": {"orig_filename": "Marian_Simion-Florea_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89f.", "author": "", "orig_id": 1408125}}, {"model": "metainfo.source", "pk": 9526, "fields": {"orig_filename": "Mailath-Szekhely_Gyoergy_1786_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19f.", "author": "", "orig_id": 1408750}}, {"model": "metainfo.source", "pk": 9527, "fields": {"orig_filename": "Mailath-Szekhely_Gyoergy_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20", "author": "", "orig_id": 1408751}}, {"model": "metainfo.source", "pk": 9528, "fields": {"orig_filename": "Mailath-Szekhely_Janos_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20", "author": "", "orig_id": 1408752}}, {"model": "metainfo.source", "pk": 9529, "fields": {"orig_filename": "Mailhac_Pauline-Rebekka_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20f.", "author": "", "orig_id": 1408753}}, {"model": "metainfo.source", "pk": 9530, "fields": {"orig_filename": "Maiorescu_Ioan_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 21f.", "author": "", "orig_id": 1408822}}, {"model": "metainfo.source", "pk": 9531, "fields": {"orig_filename": "Maior_Petru_1761_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 21", "author": "", "orig_id": 1408821}}, {"model": "metainfo.source", "pk": 9532, "fields": {"orig_filename": "Maischberger_Thomas_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 22", "author": "", "orig_id": 1408823}}, {"model": "metainfo.source", "pk": 9533, "fields": {"orig_filename": "Maister_Rudolf_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 22f.", "author": "", "orig_id": 1408824}}, {"model": "metainfo.source", "pk": 9534, "fields": {"orig_filename": "Maitisch_Ferdinand_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23", "author": "", "orig_id": 1408825}}, {"model": "metainfo.source", "pk": 9535, "fields": {"orig_filename": "Maixner_Emerich_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23", "author": "", "orig_id": 1408826}}, {"model": "metainfo.source", "pk": 9536, "fields": {"orig_filename": "Maixner_Franjo_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23f.", "author": "", "orig_id": 1408827}}, {"model": "metainfo.source", "pk": 9537, "fields": {"orig_filename": "Maixner_Petr_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 24", "author": "", "orig_id": 1408828}}, {"model": "metainfo.source", "pk": 9538, "fields": {"orig_filename": "Mai_Angelo_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 415f.", "author": "", "orig_id": 1411858}}, {"model": "metainfo.source", "pk": 9539, "fields": {"orig_filename": "Majaron_Danilo_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25", "author": "", "orig_id": 1408830}}, {"model": "metainfo.source", "pk": 9540, "fields": {"orig_filename": "Majar_Matija_1809_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 24f.", "author": "", "orig_id": 1408829}}, {"model": "metainfo.source", "pk": 9541, "fields": {"orig_filename": "Majcen_Juraj_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25", "author": "", "orig_id": 1408831}}, {"model": "metainfo.source", "pk": 9542, "fields": {"orig_filename": "Majchrowicz_Franciszek_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25f.", "author": "", "orig_id": 1408832}}, {"model": "metainfo.source", "pk": 9543, "fields": {"orig_filename": "Majdic_Peter_1823_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26", "author": "", "orig_id": 1408833}}, {"model": "metainfo.source", "pk": 9544, "fields": {"orig_filename": "Majernik_Cyprian_1909_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 27f.", "author": "", "orig_id": 1408837}}, {"model": "metainfo.source", "pk": 9545, "fields": {"orig_filename": "Majersky_Adalbert_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28", "author": "", "orig_id": 1408838}}, {"model": "metainfo.source", "pk": 9546, "fields": {"orig_filename": "Majer_Antonin_1826_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26", "author": "", "orig_id": 1408834}}, {"model": "metainfo.source", "pk": 9547, "fields": {"orig_filename": "Majer_Jozef_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26f.", "author": "", "orig_id": 1408835}}, {"model": "metainfo.source", "pk": 9548, "fields": {"orig_filename": "Majer_Stephan_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 27", "author": "", "orig_id": 1408836}}, {"model": "metainfo.source", "pk": 9549, "fields": {"orig_filename": "Majewski_Bronislaw_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28", "author": "", "orig_id": 1408839}}, {"model": "metainfo.source", "pk": 9550, "fields": {"orig_filename": "Majewski_Stefan_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28f.", "author": "", "orig_id": 1408840}}, {"model": "metainfo.source", "pk": 9551, "fields": {"orig_filename": "Majic_Anto_1877_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408841}}, {"model": "metainfo.source", "pk": 9552, "fields": {"orig_filename": "Majlath-Szekhely_Bela_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408908}}, {"model": "metainfo.source", "pk": 9553, "fields": {"orig_filename": "Majunke_Gedeon_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408909}}, {"model": "metainfo.source", "pk": 9554, "fields": {"orig_filename": "Makart_Hans_1840_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29ff.", "author": "", "orig_id": 1408910}}, {"model": "metainfo.source", "pk": 9555, "fields": {"orig_filename": "Makovej_Osyp_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31", "author": "", "orig_id": 1408911}}, {"model": "metainfo.source", "pk": 9556, "fields": {"orig_filename": "Makovicky_Dusan_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31", "author": "", "orig_id": 1408912}}, {"model": "metainfo.source", "pk": 9557, "fields": {"orig_filename": "Makowsky_Alexander_1833_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31f.", "author": "", "orig_id": 1408913}}, {"model": "metainfo.source", "pk": 9558, "fields": {"orig_filename": "Malavasic_Franc_1818_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32", "author": "", "orig_id": 1408914}}, {"model": "metainfo.source", "pk": 9559, "fields": {"orig_filename": "Malcher_Adolfine_1858_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32", "author": "", "orig_id": 1408915}}, {"model": "metainfo.source", "pk": 9560, "fields": {"orig_filename": "Malczewski-Tarnawa_Julius_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 33", "author": "", "orig_id": 1408917}}, {"model": "metainfo.source", "pk": 9561, "fields": {"orig_filename": "Malczewski_Jacek_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32f.", "author": "", "orig_id": 1408916}}, {"model": "metainfo.source", "pk": 9562, "fields": {"orig_filename": "Malecki_Antoni_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 33f.", "author": "", "orig_id": 1408918}}, {"model": "metainfo.source", "pk": 9563, "fields": {"orig_filename": "Malek-Werthenfels_Franz_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408919}}, {"model": "metainfo.source", "pk": 9564, "fields": {"orig_filename": "Malfatti-Monteregio_Johann_1775_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35", "author": "", "orig_id": 1408924}}, {"model": "metainfo.source", "pk": 9565, "fields": {"orig_filename": "Malfatti-Rohrenbach-Dezza_Leopold_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35f.", "author": "", "orig_id": 1408925}}, {"model": "metainfo.source", "pk": 9566, "fields": {"orig_filename": "Malfatti_Alois_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408920}}, {"model": "metainfo.source", "pk": 9567, "fields": {"orig_filename": "Malfatti_Andrea_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408921}}, {"model": "metainfo.source", "pk": 9568, "fields": {"orig_filename": "Malfatti_Emanuele_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34f.", "author": "", "orig_id": 1408922}}, {"model": "metainfo.source", "pk": 9569, "fields": {"orig_filename": "Malfatti_Valeriano_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35", "author": "", "orig_id": 1408923}}, {"model": "metainfo.source", "pk": 9570, "fields": {"orig_filename": "Malinescu_Vasile_1817_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408926}}, {"model": "metainfo.source", "pk": 9571, "fields": {"orig_filename": "Malinowski_Lucjan_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408927}}, {"model": "metainfo.source", "pk": 9572, "fields": {"orig_filename": "Malinsky_Frantisek_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408928}}, {"model": "metainfo.source", "pk": 9573, "fields": {"orig_filename": "Malinsky_Josef_1752_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408929}}, {"model": "metainfo.source", "pk": 9574, "fields": {"orig_filename": "Malirova_Helena_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408997}}, {"model": "metainfo.source", "pk": 9575, "fields": {"orig_filename": "Maliwa_Edmund_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408998}}, {"model": "metainfo.source", "pk": 9576, "fields": {"orig_filename": "Malkowski_Andrzej_1889_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38", "author": "", "orig_id": 1408999}}, {"model": "metainfo.source", "pk": 9577, "fields": {"orig_filename": "Mallinger_Mathilde_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38f.", "author": "", "orig_id": 1409001}}, {"model": "metainfo.source", "pk": 9578, "fields": {"orig_filename": "Mallin_Ivo_1853_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38", "author": "", "orig_id": 1409000}}, {"model": "metainfo.source", "pk": 9579, "fields": {"orig_filename": "Mallitsch_Ferdinand_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409002}}, {"model": "metainfo.source", "pk": 9580, "fields": {"orig_filename": "Mallner-Marsegg_Hermann_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409003}}, {"model": "metainfo.source", "pk": 9581, "fields": {"orig_filename": "Mally-Dusarov_Jan_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39f.", "author": "", "orig_id": 1409005}}, {"model": "metainfo.source", "pk": 9582, "fields": {"orig_filename": "Mally_Ernst_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409004}}, {"model": "metainfo.source", "pk": 9583, "fields": {"orig_filename": "Malmer_Martin_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409006}}, {"model": "metainfo.source", "pk": 9584, "fields": {"orig_filename": "Maloch_Antonin-Vankomil_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409007}}, {"model": "metainfo.source", "pk": 9585, "fields": {"orig_filename": "Malovrh_Miroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40f.", "author": "", "orig_id": 1409009}}, {"model": "metainfo.source", "pk": 9586, "fields": {"orig_filename": "Malter_Henry_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41", "author": "", "orig_id": 1409010}}, {"model": "metainfo.source", "pk": 9587, "fields": {"orig_filename": "Maltz-Maltenau_Karl-Ludwig_1788_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41", "author": "", "orig_id": 1409011}}, {"model": "metainfo.source", "pk": 9588, "fields": {"orig_filename": "Maly-Vevanovic_Vinzenz_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44", "author": "", "orig_id": 1409017}}, {"model": "metainfo.source", "pk": 9589, "fields": {"orig_filename": "Maly_Franz_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41f.", "author": "", "orig_id": 1409012}}, {"model": "metainfo.source", "pk": 9590, "fields": {"orig_filename": "Maly_Jakub_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 42", "author": "", "orig_id": 1409013}}, {"model": "metainfo.source", "pk": 9591, "fields": {"orig_filename": "Maly_Jiri_1899_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 42f.", "author": "", "orig_id": 1409014}}, {"model": "metainfo.source", "pk": 9592, "fields": {"orig_filename": "Maly_Joseph-Karl_1797_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 43", "author": "", "orig_id": 1409015}}, {"model": "metainfo.source", "pk": 9593, "fields": {"orig_filename": "Maly_Richard_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 43f.", "author": "", "orig_id": 1409016}}, {"model": "metainfo.source", "pk": 9594, "fields": {"orig_filename": "Mampe_Emma_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44", "author": "", "orig_id": 1409018}}, {"model": "metainfo.source", "pk": 9595, "fields": {"orig_filename": "Mamroth_Fedor_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44f.", "author": "", "orig_id": 1409019}}, {"model": "metainfo.source", "pk": 9596, "fields": {"orig_filename": "Mamula_Lazarus_1795_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45", "author": "", "orig_id": 1409020}}, {"model": "metainfo.source", "pk": 9597, "fields": {"orig_filename": "Manci_Filippo_1836_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45", "author": "", "orig_id": 1409090}}, {"model": "metainfo.source", "pk": 9598, "fields": {"orig_filename": "Manci_Sigismondo_1734_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45f.", "author": "", "orig_id": 1409091}}, {"model": "metainfo.source", "pk": 9599, "fields": {"orig_filename": "Mandell_Ludwig_1784_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409093}}, {"model": "metainfo.source", "pk": 9600, "fields": {"orig_filename": "Mandel_Cyril_1873_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409092}}, {"model": "metainfo.source", "pk": 9601, "fields": {"orig_filename": "Mandic_Antun_1740_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409094}}, {"model": "metainfo.source", "pk": 9602, "fields": {"orig_filename": "Mandic_Matko_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409095}}, {"model": "metainfo.source", "pk": 9603, "fields": {"orig_filename": "Mandler_Ernst_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409102}}, {"model": "metainfo.source", "pk": 9604, "fields": {"orig_filename": "Mandlick_August_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409103}}, {"model": "metainfo.source", "pk": 9605, "fields": {"orig_filename": "Mandl_Albert_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46f.", "author": "", "orig_id": 1409096}}, {"model": "metainfo.source", "pk": 9606, "fields": {"orig_filename": "Mandl_Ignaz_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47", "author": "", "orig_id": 1409097}}, {"model": "metainfo.source", "pk": 9607, "fields": {"orig_filename": "Mandl_Johannes_1899_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47", "author": "", "orig_id": 1409098}}, {"model": "metainfo.source", "pk": 9608, "fields": {"orig_filename": "Mandl_Julius_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47f.", "author": "", "orig_id": 1409099}}, {"model": "metainfo.source", "pk": 9609, "fields": {"orig_filename": "Mandl_Leopold_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409100}}, {"model": "metainfo.source", "pk": 9610, "fields": {"orig_filename": "Mandl_Richard_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409101}}, {"model": "metainfo.source", "pk": 9611, "fields": {"orig_filename": "Mandrovic_Adam_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409104}}, {"model": "metainfo.source", "pk": 9612, "fields": {"orig_filename": "Mandyczewski_Eusebius_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409105}}, {"model": "metainfo.source", "pk": 9613, "fields": {"orig_filename": "Mandyczewski_Konstantin_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409106}}, {"model": "metainfo.source", "pk": 9614, "fields": {"orig_filename": "Manes_Antonin_1784_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49f.", "author": "", "orig_id": 1409107}}, {"model": "metainfo.source", "pk": 9615, "fields": {"orig_filename": "Manes_Josef_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 50f.", "author": "", "orig_id": 1409108}}, {"model": "metainfo.source", "pk": 9616, "fields": {"orig_filename": "Manes_Vaclav_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409110}}, {"model": "metainfo.source", "pk": 9617, "fields": {"orig_filename": "Manfredini_Luigi_1771_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409112}}, {"model": "metainfo.source", "pk": 9618, "fields": {"orig_filename": "Manfroni-Manfort_Moriz_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409114}}, {"model": "metainfo.source", "pk": 9619, "fields": {"orig_filename": "Manfroni_Mario_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409113}}, {"model": "metainfo.source", "pk": 9620, "fields": {"orig_filename": "Mangra_Vasile_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53", "author": "", "orig_id": 1409183}}, {"model": "metainfo.source", "pk": 9621, "fields": {"orig_filename": "Mang_Hermann_1883_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52f.", "author": "", "orig_id": 1409115}}, {"model": "metainfo.source", "pk": 9622, "fields": {"orig_filename": "Maniecki_Wojciech_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53", "author": "", "orig_id": 1409184}}, {"model": "metainfo.source", "pk": 9623, "fields": {"orig_filename": "Maniu_Vasile_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53f.", "author": "", "orig_id": 1409185}}, {"model": "metainfo.source", "pk": 9624, "fields": {"orig_filename": "Mankowski_Antoni_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409186}}, {"model": "metainfo.source", "pk": 9625, "fields": {"orig_filename": "Mankowski_Boleslaw_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409187}}, {"model": "metainfo.source", "pk": 9626, "fields": {"orig_filename": "Mannaberg_Julius_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 55", "author": "", "orig_id": 1409191}}, {"model": "metainfo.source", "pk": 9627, "fields": {"orig_filename": "Maier_Alexius_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416f.", "author": "", "orig_id": 1411861}}, {"model": "metainfo.source", "pk": 9628, "fields": {"orig_filename": "Maier_Ambros_1849_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411862}}, {"model": "metainfo.source", "pk": 9629, "fields": {"orig_filename": "Maier_Angela_1807_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411935}}, {"model": "metainfo.source", "pk": 9630, "fields": {"orig_filename": "Maier_Antonio_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418f.", "author": "", "orig_id": 1411940}}, {"model": "metainfo.source", "pk": 9631, "fields": {"orig_filename": "Maier_Anton_1776_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411936}}, {"model": "metainfo.source", "pk": 9632, "fields": {"orig_filename": "Maier_Anton_1780_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417f.", "author": "", "orig_id": 1411937}}, {"model": "metainfo.source", "pk": 9633, "fields": {"orig_filename": "Maier_Anton_1838_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418", "author": "", "orig_id": 1411938}}, {"model": "metainfo.source", "pk": 9634, "fields": {"orig_filename": "Maier_Anton_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418", "author": "", "orig_id": 1411939}}, {"model": "metainfo.source", "pk": 9635, "fields": {"orig_filename": "Maier_August-Georg_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411941}}, {"model": "metainfo.source", "pk": 9636, "fields": {"orig_filename": "Maier_August-Konrad_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411942}}, {"model": "metainfo.source", "pk": 9637, "fields": {"orig_filename": "Maier_Christian_1812_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411943}}, {"model": "metainfo.source", "pk": 9638, "fields": {"orig_filename": "Maier_Dominik_1809_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419f.", "author": "", "orig_id": 1411944}}, {"model": "metainfo.source", "pk": 9639, "fields": {"orig_filename": "Maier_Edgar_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420", "author": "", "orig_id": 1411945}}, {"model": "metainfo.source", "pk": 9640, "fields": {"orig_filename": "Maier_Emil_1822_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420", "author": "", "orig_id": 1411946}}, {"model": "metainfo.source", "pk": 9641, "fields": {"orig_filename": "Maier_Emil_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420f.", "author": "", "orig_id": 1411947}}, {"model": "metainfo.source", "pk": 9642, "fields": {"orig_filename": "Maier_Endre_1859_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411948}}, {"model": "metainfo.source", "pk": 9643, "fields": {"orig_filename": "Maier_Erich-August_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411949}}, {"model": "metainfo.source", "pk": 9644, "fields": {"orig_filename": "Maier_Ernst_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411950}}, {"model": "metainfo.source", "pk": 9645, "fields": {"orig_filename": "Maier_Ernst_1839_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421f.", "author": "", "orig_id": 1411951}}, {"model": "metainfo.source", "pk": 9646, "fields": {"orig_filename": "Maier_Ferdinand_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422", "author": "", "orig_id": 1411952}}, {"model": "metainfo.source", "pk": 9647, "fields": {"orig_filename": "Maier_Franz-Martin_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423f.", "author": "", "orig_id": 1411957}}, {"model": "metainfo.source", "pk": 9648, "fields": {"orig_filename": "Maier_Franz-Xaver_1756_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411958}}, {"model": "metainfo.source", "pk": 9649, "fields": {"orig_filename": "Maier_Franz_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422f.", "author": "", "orig_id": 1411954}}, {"model": "metainfo.source", "pk": 9650, "fields": {"orig_filename": "Maier_Franz_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423", "author": "", "orig_id": 1411955}}, {"model": "metainfo.source", "pk": 9651, "fields": {"orig_filename": "Maier_Franz_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423", "author": "", "orig_id": 1411956}}, {"model": "metainfo.source", "pk": 9652, "fields": {"orig_filename": "Maier_Friedrich_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411959}}, {"model": "metainfo.source", "pk": 9653, "fields": {"orig_filename": "Maier_Friedrich_1887_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411960}}, {"model": "metainfo.source", "pk": 9654, "fields": {"orig_filename": "Maier_Fritz-Franz_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424f.", "author": "", "orig_id": 1412029}}, {"model": "metainfo.source", "pk": 9655, "fields": {"orig_filename": "Maier_Georg_1768_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425", "author": "", "orig_id": 1412030}}, {"model": "metainfo.source", "pk": 9656, "fields": {"orig_filename": "Maier_Giovanni_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425", "author": "", "orig_id": 1412031}}, {"model": "metainfo.source", "pk": 9657, "fields": {"orig_filename": "Maier_Guido_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425f.", "author": "", "orig_id": 1412032}}, {"model": "metainfo.source", "pk": 9658, "fields": {"orig_filename": "Maier_Gustav_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 426", "author": "", "orig_id": 1412033}}, {"model": "metainfo.source", "pk": 9659, "fields": {"orig_filename": "Maier_Hans-Horst_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 426f.", "author": "", "orig_id": 1412034}}, {"model": "metainfo.source", "pk": 9660, "fields": {"orig_filename": "Maier_Hans-Leopold_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 427", "author": "", "orig_id": 1412038}}, {"model": "metainfo.source", "pk": 9661, "fields": {"orig_filename": "Maier_Hans-Paul_1872_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 427f.", "author": "", "orig_id": 1412039}}, {"model": "metainfo.source", "pk": 9662, "fields": {"orig_filename": "Maier_Heinrich_1908_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428", "author": "", "orig_id": 1412040}}, {"model": "metainfo.source", "pk": 9663, "fields": {"orig_filename": "Maier_Ignaz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428", "author": "", "orig_id": 1412041}}, {"model": "metainfo.source", "pk": 9664, "fields": {"orig_filename": "Maier_Jaroslav_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428f.", "author": "", "orig_id": 1412042}}, {"model": "metainfo.source", "pk": 9665, "fields": {"orig_filename": "Maier_Johann-Alexius_1778_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430", "author": "", "orig_id": 1412047}}, {"model": "metainfo.source", "pk": 9666, "fields": {"orig_filename": "Maier_Johann-Alois_1801_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430f.", "author": "", "orig_id": 1412048}}, {"model": "metainfo.source", "pk": 9667, "fields": {"orig_filename": "Maier_Johann-Georg_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412049}}, {"model": "metainfo.source", "pk": 9668, "fields": {"orig_filename": "Maier_Johann-Georg_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412050}}, {"model": "metainfo.source", "pk": 9669, "fields": {"orig_filename": "Maier_Johann-Georg_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412051}}, {"model": "metainfo.source", "pk": 9670, "fields": {"orig_filename": "Maier_Johann-Georg_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431f.", "author": "", "orig_id": 1412122}}, {"model": "metainfo.source", "pk": 9671, "fields": {"orig_filename": "Maier_Johann_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429", "author": "", "orig_id": 1412043}}, {"model": "metainfo.source", "pk": 9672, "fields": {"orig_filename": "Maier_Johann_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429", "author": "", "orig_id": 1412044}}, {"model": "metainfo.source", "pk": 9673, "fields": {"orig_filename": "Maier_Johann_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429f.", "author": "", "orig_id": 1412045}}, {"model": "metainfo.source", "pk": 9674, "fields": {"orig_filename": "Maier_Johann_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430", "author": "", "orig_id": 1412046}}, {"model": "metainfo.source", "pk": 9675, "fields": {"orig_filename": "Maier_Josef_1791_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432", "author": "", "orig_id": 1412123}}, {"model": "metainfo.source", "pk": 9676, "fields": {"orig_filename": "Maier_Josef_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432f.", "author": "", "orig_id": 1420358}}, {"model": "metainfo.source", "pk": 9677, "fields": {"orig_filename": "Maier_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432", "author": "", "orig_id": 1420357}}, {"model": "metainfo.source", "pk": 9678, "fields": {"orig_filename": "Maier_Josef_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433", "author": "", "orig_id": 1412124}}, {"model": "metainfo.source", "pk": 9679, "fields": {"orig_filename": "Maier_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433", "author": "", "orig_id": 1412125}}, {"model": "metainfo.source", "pk": 9680, "fields": {"orig_filename": "Maier_Julius_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433f.", "author": "", "orig_id": 1412126}}, {"model": "metainfo.source", "pk": 9681, "fields": {"orig_filename": "Maier_Karl-Ernst_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412134}}, {"model": "metainfo.source", "pk": 9682, "fields": {"orig_filename": "Maier_Karl_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412127}}, {"model": "metainfo.source", "pk": 9683, "fields": {"orig_filename": "Maier_Karl_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412128}}, {"model": "metainfo.source", "pk": 9684, "fields": {"orig_filename": "Maier_Karl_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412129}}, {"model": "metainfo.source", "pk": 9685, "fields": {"orig_filename": "Maier_Karl_1855_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435", "author": "", "orig_id": 1412130}}, {"model": "metainfo.source", "pk": 9686, "fields": {"orig_filename": "Maier_Karl_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435", "author": "", "orig_id": 1412132}}, {"model": "metainfo.source", "pk": 9687, "fields": {"orig_filename": "Maier_Karl_1876_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435f.", "author": "", "orig_id": 1412131}}, {"model": "metainfo.source", "pk": 9688, "fields": {"orig_filename": "Maier_Lambert_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436f.", "author": "", "orig_id": 1412135}}, {"model": "metainfo.source", "pk": 9689, "fields": {"orig_filename": "Maier_Laurenz_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412137}}, {"model": "metainfo.source", "pk": 9690, "fields": {"orig_filename": "Maier_Leopold_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412136}}, {"model": "metainfo.source", "pk": 9691, "fields": {"orig_filename": "Maier_Leopold_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412138}}, {"model": "metainfo.source", "pk": 9692, "fields": {"orig_filename": "Maier_Ludwig_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412139}}, {"model": "metainfo.source", "pk": 9693, "fields": {"orig_filename": "Maier_Ludwig_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437f.", "author": "", "orig_id": 1412140}}, {"model": "metainfo.source", "pk": 9694, "fields": {"orig_filename": "Maier_Martin_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412141}}, {"model": "metainfo.source", "pk": 9695, "fields": {"orig_filename": "Maier_Mauricio_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412142}}, {"model": "metainfo.source", "pk": 9696, "fields": {"orig_filename": "Maier_Maximilian_1848_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438f.", "author": "", "orig_id": 1412144}}, {"model": "metainfo.source", "pk": 9697, "fields": {"orig_filename": "Maier_Max_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412143}}, {"model": "metainfo.source", "pk": 9698, "fields": {"orig_filename": "Maier_Michael_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 439", "author": "", "orig_id": 1412145}}, {"model": "metainfo.source", "pk": 9699, "fields": {"orig_filename": "Maier_Michael_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 439f.", "author": "", "orig_id": 1412146}}, {"model": "metainfo.source", "pk": 9700, "fields": {"orig_filename": "Maier_Oskar_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 440f.", "author": "", "orig_id": 1412147}}, {"model": "metainfo.source", "pk": 9701, "fields": {"orig_filename": "Maier_Philipp-Benitius_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441", "author": "", "orig_id": 1412223}}, {"model": "metainfo.source", "pk": 9702, "fields": {"orig_filename": "Maier_Philipp_1799_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441", "author": "", "orig_id": 1412148}}, {"model": "metainfo.source", "pk": 9703, "fields": {"orig_filename": "Maier_Richard_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441f.", "author": "", "orig_id": 1412224}}, {"model": "metainfo.source", "pk": 9704, "fields": {"orig_filename": "Maier_Robert-Alois_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412228}}, {"model": "metainfo.source", "pk": 9705, "fields": {"orig_filename": "Maier_Robert_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 443", "author": "", "orig_id": 1412226}}, {"model": "metainfo.source", "pk": 9706, "fields": {"orig_filename": "Maier_Robert_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 442f.", "author": "", "orig_id": 1412225}}, {"model": "metainfo.source", "pk": 9707, "fields": {"orig_filename": "Maier_Robert_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 443", "author": "", "orig_id": 1412227}}, {"model": "metainfo.source", "pk": 9708, "fields": {"orig_filename": "Maier_Rudolf_1837_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412229}}, {"model": "metainfo.source", "pk": 9709, "fields": {"orig_filename": "Maier_Rudolf_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412230}}, {"model": "metainfo.source", "pk": 9710, "fields": {"orig_filename": "Maier_Rudolf_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412231}}, {"model": "metainfo.source", "pk": 9711, "fields": {"orig_filename": "Maier_Rudolf_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444f.", "author": "", "orig_id": 1412232}}, {"model": "metainfo.source", "pk": 9712, "fields": {"orig_filename": "Maier_Rupert_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445", "author": "", "orig_id": 1412233}}, {"model": "metainfo.source", "pk": 9713, "fields": {"orig_filename": "Maier_Salesius_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445", "author": "", "orig_id": 1412234}}, {"model": "metainfo.source", "pk": 9714, "fields": {"orig_filename": "Maier_Salomon_1835_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445f.", "author": "", "orig_id": 1412235}}, {"model": "metainfo.source", "pk": 9715, "fields": {"orig_filename": "Maier_Sebastian_1773_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446", "author": "", "orig_id": 1412236}}, {"model": "metainfo.source", "pk": 9716, "fields": {"orig_filename": "Maier_Sebastian_1845_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446", "author": "", "orig_id": 1412237}}, {"model": "metainfo.source", "pk": 9717, "fields": {"orig_filename": "Maier_Siegmund_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446f.", "author": "", "orig_id": 1412238}}, {"model": "metainfo.source", "pk": 9718, "fields": {"orig_filename": "Maier_Sigmund_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 447", "author": "", "orig_id": 1412035}}, {"model": "metainfo.source", "pk": 9719, "fields": {"orig_filename": "Maier_Simon-Martin_1788_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 448", "author": "", "orig_id": 1412037}}, {"model": "metainfo.source", "pk": 9720, "fields": {"orig_filename": "Maier_Simon_1779_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 448", "author": "", "orig_id": 1412036}}, {"model": "metainfo.source", "pk": 9721, "fields": {"orig_filename": "Maier_Stefan_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1", "author": "", "orig_id": 1408550}}, {"model": "metainfo.source", "pk": 9722, "fields": {"orig_filename": "Maier_Tadeas_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1", "author": "", "orig_id": 1408551}}, {"model": "metainfo.source", "pk": 9723, "fields": {"orig_filename": "Maier_Theodor-Heinrich_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2", "author": "", "orig_id": 1408553}}, {"model": "metainfo.source", "pk": 9724, "fields": {"orig_filename": "Maier_Theodor_1788_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1f.", "author": "", "orig_id": 1408552}}, {"model": "metainfo.source", "pk": 9725, "fields": {"orig_filename": "Maier_Walther_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2", "author": "", "orig_id": 1408554}}, {"model": "metainfo.source", "pk": 9726, "fields": {"orig_filename": "Maier_Wilhelm_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2f.", "author": "", "orig_id": 1408555}}, {"model": "metainfo.source", "pk": 9727, "fields": {"orig_filename": "Maier_Wolf_1776_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408556}}, {"model": "metainfo.source", "pk": 9728, "fields": {"orig_filename": "Mailath-Szekhely_Antal_1801_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408747}}, {"model": "metainfo.source", "pk": 9729, "fields": {"orig_filename": "Mailath-Szekhely_Gusztav-Karoly_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408749}}, {"model": "metainfo.source", "pk": 9730, "fields": {"orig_filename": "Madarasz_Viktor_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 397", "author": "", "orig_id": 1411662}}, {"model": "metainfo.source", "pk": 9731, "fields": {"orig_filename": "Maderspach_Karoly_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399", "author": "", "orig_id": 1411669}}, {"model": "metainfo.source", "pk": 9732, "fields": {"orig_filename": "Madersperger_Josef_1768_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399f.", "author": "", "orig_id": 1411670}}, {"model": "metainfo.source", "pk": 9733, "fields": {"orig_filename": "Mader_Eduard_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411664}}, {"model": "metainfo.source", "pk": 9734, "fields": {"orig_filename": "Mader_Georg_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411665}}, {"model": "metainfo.source", "pk": 9735, "fields": {"orig_filename": "Mader_Johann_1796_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411666}}, {"model": "metainfo.source", "pk": 9736, "fields": {"orig_filename": "Mader_Linus_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398f.", "author": "", "orig_id": 1411667}}, {"model": "metainfo.source", "pk": 9737, "fields": {"orig_filename": "Mader_Raoul_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399", "author": "", "orig_id": 1411668}}, {"model": "metainfo.source", "pk": 9738, "fields": {"orig_filename": "Madeyski-Poray_Stanislaw-Jerzy_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400f.", "author": "", "orig_id": 1411674}}, {"model": "metainfo.source", "pk": 9739, "fields": {"orig_filename": "Madeyski_Antoni_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411671}}, {"model": "metainfo.source", "pk": 9740, "fields": {"orig_filename": "Madeyski_Edward_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411672}}, {"model": "metainfo.source", "pk": 9741, "fields": {"orig_filename": "Madeyski_Marceli_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411673}}, {"model": "metainfo.source", "pk": 9742, "fields": {"orig_filename": "Madjera_Karl-Gustav-Adolf_1828_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 401", "author": "", "orig_id": 1411675}}, {"model": "metainfo.source", "pk": 9743, "fields": {"orig_filename": "Madjera_Wolfgang_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 401f.", "author": "", "orig_id": 1411676}}, {"model": "metainfo.source", "pk": 9744, "fields": {"orig_filename": "Madlener_Andreas_1844_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411678}}, {"model": "metainfo.source", "pk": 9745, "fields": {"orig_filename": "Madlener_Johann_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411679}}, {"model": "metainfo.source", "pk": 9746, "fields": {"orig_filename": "Madl_Karel_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411677}}, {"model": "metainfo.source", "pk": 9747, "fields": {"orig_filename": "Madonizza_Antonio_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402f.", "author": "", "orig_id": 1411746}}, {"model": "metainfo.source", "pk": 9748, "fields": {"orig_filename": "Madurowicz_Maurycy_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 403", "author": "", "orig_id": 1411747}}, {"model": "metainfo.source", "pk": 9749, "fields": {"orig_filename": "Madva_Franz_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 403", "author": "", "orig_id": 1411748}}, {"model": "metainfo.source", "pk": 9750, "fields": {"orig_filename": "Maehler_Willibrord-Josef_1787_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404", "author": "", "orig_id": 1411749}}, {"model": "metainfo.source", "pk": 9751, "fields": {"orig_filename": "Maelzel_Johann_1772_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404", "author": "", "orig_id": 1411750}}, {"model": "metainfo.source", "pk": 9752, "fields": {"orig_filename": "Maendl-Bughardt_Maximilian_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404f.", "author": "", "orig_id": 1411751}}, {"model": "metainfo.source", "pk": 9753, "fields": {"orig_filename": "Maetzler_Anton_1780_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411753}}, {"model": "metainfo.source", "pk": 9754, "fields": {"orig_filename": "Maffei_Andrea_1798_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411754}}, {"model": "metainfo.source", "pk": 9755, "fields": {"orig_filename": "Maffei_Giuseppe_1775_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411755}}, {"model": "metainfo.source", "pk": 9756, "fields": {"orig_filename": "Magarasevic_Georgije_1793_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405f.", "author": "", "orig_id": 1411756}}, {"model": "metainfo.source", "pk": 9757, "fields": {"orig_filename": "Magda_Pal_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406", "author": "", "orig_id": 1411757}}, {"model": "metainfo.source", "pk": 9758, "fields": {"orig_filename": "Magdeburg_Johann_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406", "author": "", "orig_id": 1411758}}, {"model": "metainfo.source", "pk": 9759, "fields": {"orig_filename": "Magdeburg_Karl_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406f.", "author": "", "orig_id": 1411759}}, {"model": "metainfo.source", "pk": 9760, "fields": {"orig_filename": "Magerstein_Vinzenz-Theodor_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407f.", "author": "", "orig_id": 1411763}}, {"model": "metainfo.source", "pk": 9761, "fields": {"orig_filename": "Mager_Alois_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411760}}, {"model": "metainfo.source", "pk": 9762, "fields": {"orig_filename": "Mager_Anton_1762_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411761}}, {"model": "metainfo.source", "pk": 9763, "fields": {"orig_filename": "Mager_Wilhelm_1871_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411762}}, {"model": "metainfo.source", "pk": 9764, "fields": {"orig_filename": "Mages-Kompillan_Alois_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411764}}, {"model": "metainfo.source", "pk": 9765, "fields": {"orig_filename": "Mages-Kompillan_Maria_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411765}}, {"model": "metainfo.source", "pk": 9766, "fields": {"orig_filename": "Magg_Julius_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411766}}, {"model": "metainfo.source", "pk": 9767, "fields": {"orig_filename": "Magg_Julius_1884_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408f.", "author": "", "orig_id": 1411767}}, {"model": "metainfo.source", "pk": 9768, "fields": {"orig_filename": "Magnuszewski_Dominik_1810_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411768}}, {"model": "metainfo.source", "pk": 9769, "fields": {"orig_filename": "Magocsy-Dietz_Sandor_1855_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411841}}, {"model": "metainfo.source", "pk": 9770, "fields": {"orig_filename": "Magolic_Srecko_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411842}}, {"model": "metainfo.source", "pk": 9771, "fields": {"orig_filename": "Magrini_Antonio_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409f.", "author": "", "orig_id": 1411843}}, {"model": "metainfo.source", "pk": 9772, "fields": {"orig_filename": "Magyar-Oetoemoes_Laszlo_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410", "author": "", "orig_id": 1411845}}, {"model": "metainfo.source", "pk": 9773, "fields": {"orig_filename": "Magyar_Emmerich_1847_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410", "author": "", "orig_id": 1411844}}, {"model": "metainfo.source", "pk": 9774, "fields": {"orig_filename": "Mahler_Ede_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 411", "author": "", "orig_id": 1411847}}, {"model": "metainfo.source", "pk": 9775, "fields": {"orig_filename": "Mahler_Gustav_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 411f.", "author": "", "orig_id": 1411848}}, {"model": "metainfo.source", "pk": 9776, "fields": {"orig_filename": "Mahlknecht_Edmund_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 412f.", "author": "", "orig_id": 1411849}}, {"model": "metainfo.source", "pk": 9777, "fields": {"orig_filename": "Mahlknecht_Johann-Dominik_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411850}}, {"model": "metainfo.source", "pk": 9778, "fields": {"orig_filename": "Mahlknecht_Josef-Anton_1827_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411851}}, {"model": "metainfo.source", "pk": 9779, "fields": {"orig_filename": "Mahlknecht_Karl_1810_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411852}}, {"model": "metainfo.source", "pk": 9780, "fields": {"orig_filename": "Mahnic_Anton_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413f.", "author": "", "orig_id": 1411853}}, {"model": "metainfo.source", "pk": 9781, "fields": {"orig_filename": "Mahnke_Karl_1764_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414", "author": "", "orig_id": 1411854}}, {"model": "metainfo.source", "pk": 9782, "fields": {"orig_filename": "Mahorcig_Josef_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414", "author": "", "orig_id": 1411855}}, {"model": "metainfo.source", "pk": 9783, "fields": {"orig_filename": "Mahr_Gustav_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414f.", "author": "", "orig_id": 1411856}}, {"model": "metainfo.source", "pk": 9784, "fields": {"orig_filename": "Mahr_Jakob-Franz_1800_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 415", "author": "", "orig_id": 1411857}}, {"model": "metainfo.source", "pk": 9785, "fields": {"orig_filename": "Maier-Ahrdorff_Eduard_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408557}}, {"model": "metainfo.source", "pk": 9786, "fields": {"orig_filename": "Maier-Graefe_Julius_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408558}}, {"model": "metainfo.source", "pk": 9787, "fields": {"orig_filename": "Maier-Gravenegg_Josef_1780_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3f.", "author": "", "orig_id": 1408559}}, {"model": "metainfo.source", "pk": 9788, "fields": {"orig_filename": "Maier-Gunthof_Albert_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4", "author": "", "orig_id": 1408560}}, {"model": "metainfo.source", "pk": 9789, "fields": {"orig_filename": "Maier-Harting_Robert_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4", "author": "", "orig_id": 1408561}}, {"model": "metainfo.source", "pk": 9790, "fields": {"orig_filename": "Maier-Loewenschwerdt_Franz-Xaver_1794_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4f.", "author": "", "orig_id": 1408632}}, {"model": "metainfo.source", "pk": 9791, "fields": {"orig_filename": "Maier-Luebke_Wilhelm_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5", "author": "", "orig_id": 1408633}}, {"model": "metainfo.source", "pk": 9792, "fields": {"orig_filename": "Maier-Marnegg_Edmund_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5", "author": "", "orig_id": 1408634}}, {"model": "metainfo.source", "pk": 9793, "fields": {"orig_filename": "Maier-Mayrau_Kajetan_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5f.", "author": "", "orig_id": 1408635}}, {"model": "metainfo.source", "pk": 9794, "fields": {"orig_filename": "Maier-Melnhof_Franz_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 6f.", "author": "", "orig_id": 1408636}}, {"model": "metainfo.source", "pk": 9795, "fields": {"orig_filename": "Maier-Melnhof_Franz_1854_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7", "author": "", "orig_id": 1408637}}, {"model": "metainfo.source", "pk": 9796, "fields": {"orig_filename": "Maier-Melnhof_Karl_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7", "author": "", "orig_id": 1408638}}, {"model": "metainfo.source", "pk": 9797, "fields": {"orig_filename": "Maier-Montearabico_Anton_1824_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7f.", "author": "", "orig_id": 1408639}}, {"model": "metainfo.source", "pk": 9798, "fields": {"orig_filename": "Maier-Tenneburg_Felix_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408640}}, {"model": "metainfo.source", "pk": 9799, "fields": {"orig_filename": "Maier-Wallerstain-Ahrdorff_Maximilian_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408641}}, {"model": "metainfo.source", "pk": 9800, "fields": {"orig_filename": "Maierecker_Franz_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408642}}, {"model": "metainfo.source", "pk": 9801, "fields": {"orig_filename": "Maiereder_Julius_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9", "author": "", "orig_id": 1408643}}, {"model": "metainfo.source", "pk": 9802, "fields": {"orig_filename": "Maiereder_Karl_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9", "author": "", "orig_id": 1408644}}, {"model": "metainfo.source", "pk": 9803, "fields": {"orig_filename": "Maiereder_Rosa_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9f.", "author": "", "orig_id": 1408645}}, {"model": "metainfo.source", "pk": 9804, "fields": {"orig_filename": "Maiereder_Rudolf_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 10f.", "author": "", "orig_id": 1408646}}, {"model": "metainfo.source", "pk": 9805, "fields": {"orig_filename": "Maierhofen-Koburg-Anger_Stephan_1751_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408647}}, {"model": "metainfo.source", "pk": 9806, "fields": {"orig_filename": "Maierhofen-Koburg-Anger_Virgil_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408648}}, {"model": "metainfo.source", "pk": 9807, "fields": {"orig_filename": "Maierhofer-Gruenbuehel_Ferdinand_1798_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408737}}, {"model": "metainfo.source", "pk": 9808, "fields": {"orig_filename": "Maierhofer_Adolf_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408649}}, {"model": "metainfo.source", "pk": 9809, "fields": {"orig_filename": "Maierhofer_Bernhard_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11f.", "author": "", "orig_id": 1408650}}, {"model": "metainfo.source", "pk": 9810, "fields": {"orig_filename": "Maierhofer_Franz_1822_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 12", "author": "", "orig_id": 1408651}}, {"model": "metainfo.source", "pk": 9811, "fields": {"orig_filename": "Maierhofer_Franz_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 12f.", "author": "", "orig_id": 1408652}}, {"model": "metainfo.source", "pk": 9812, "fields": {"orig_filename": "Maierhofer_Gottfried_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13", "author": "", "orig_id": 1408653}}, {"model": "metainfo.source", "pk": 9813, "fields": {"orig_filename": "Maierhofer_Johann_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13", "author": "", "orig_id": 1408654}}, {"model": "metainfo.source", "pk": 9814, "fields": {"orig_filename": "Maierhofer_Johann_1787_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13f.", "author": "", "orig_id": 1408655}}, {"model": "metainfo.source", "pk": 9815, "fields": {"orig_filename": "Maierhofer_Josef_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14", "author": "", "orig_id": 1408729}}, {"model": "metainfo.source", "pk": 9816, "fields": {"orig_filename": "Maierhofer_Josef_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14", "author": "", "orig_id": 1408730}}, {"model": "metainfo.source", "pk": 9817, "fields": {"orig_filename": "Maierhofer_Karl-Wilhelm_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408733}}, {"model": "metainfo.source", "pk": 9818, "fields": {"orig_filename": "Maierhofer_Karl_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14f.", "author": "", "orig_id": 1408731}}, {"model": "metainfo.source", "pk": 9819, "fields": {"orig_filename": "Maierhofer_Karl_1837_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408732}}, {"model": "metainfo.source", "pk": 9820, "fields": {"orig_filename": "Maierhofer_Max_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408734}}, {"model": "metainfo.source", "pk": 9821, "fields": {"orig_filename": "Maierhofer_Sebastian_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15f.", "author": "", "orig_id": 1408735}}, {"model": "metainfo.source", "pk": 9822, "fields": {"orig_filename": "Maierhofer_Theodor_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408736}}, {"model": "metainfo.source", "pk": 9823, "fields": {"orig_filename": "Maierhoffer-Vedropolje_Eberhard_1870_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16f.", "author": "", "orig_id": 1408739}}, {"model": "metainfo.source", "pk": 9824, "fields": {"orig_filename": "Maierhoffer_Wilhelm_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408738}}, {"model": "metainfo.source", "pk": 9825, "fields": {"orig_filename": "Maierink_Gustav_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 17", "author": "", "orig_id": 1408740}}, {"model": "metainfo.source", "pk": 9826, "fields": {"orig_filename": "Maierl_Anton_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 17f.", "author": "", "orig_id": 1408741}}, {"model": "metainfo.source", "pk": 9827, "fields": {"orig_filename": "Maiern-Hohenberg_Gottfried_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 18f.", "author": "", "orig_id": 1408743}}, {"model": "metainfo.source", "pk": 9828, "fields": {"orig_filename": "Maiern_Franz-Ferdinand_1799_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 18", "author": "", "orig_id": 1408742}}, {"model": "metainfo.source", "pk": 9829, "fields": {"orig_filename": "Maiers_Karl_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408746}}, {"model": "metainfo.source", "pk": 9830, "fields": {"orig_filename": "Maier_Adolf_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416", "author": "", "orig_id": 1411859}}, {"model": "metainfo.source", "pk": 9831, "fields": {"orig_filename": "Maier_Adolf_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416", "author": "", "orig_id": 1411860}}, {"model": "metainfo.source", "pk": 9832, "fields": {"orig_filename": "Lukacsy_Kristof_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362f.", "author": "", "orig_id": 1411207}}, {"model": "metainfo.source", "pk": 9833, "fields": {"orig_filename": "Lukacsy_Sandor_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411208}}, {"model": "metainfo.source", "pk": 9834, "fields": {"orig_filename": "Lukacs_Bela_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411200}}, {"model": "metainfo.source", "pk": 9835, "fields": {"orig_filename": "Lukacs_Gyoergy_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411201}}, {"model": "metainfo.source", "pk": 9836, "fields": {"orig_filename": "Lukacs_Gyoergy_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411202}}, {"model": "metainfo.source", "pk": 9837, "fields": {"orig_filename": "Lukacs_Laszlo_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361f.", "author": "", "orig_id": 1411203}}, {"model": "metainfo.source", "pk": 9838, "fields": {"orig_filename": "Lukacs_Moric_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411204}}, {"model": "metainfo.source", "pk": 9839, "fields": {"orig_filename": "Lukacs_Sandor_1822_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411205}}, {"model": "metainfo.source", "pk": 9840, "fields": {"orig_filename": "Lukasek_Josef-Vaclav_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364", "author": "", "orig_id": 1411212}}, {"model": "metainfo.source", "pk": 9841, "fields": {"orig_filename": "Lukasiewicz-Lada_Wlodzimierz_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364f.", "author": "", "orig_id": 1411283}}, {"model": "metainfo.source", "pk": 9842, "fields": {"orig_filename": "Lukasiewicz_Ignacy_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364", "author": "", "orig_id": 1411282}}, {"model": "metainfo.source", "pk": 9843, "fields": {"orig_filename": "Lukaszewicz_Leslaw_1809_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 365", "author": "", "orig_id": 1411284}}, {"model": "metainfo.source", "pk": 9844, "fields": {"orig_filename": "Lukas_Gustav_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411209}}, {"model": "metainfo.source", "pk": 9845, "fields": {"orig_filename": "Lukas_Josef_1835_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411210}}, {"model": "metainfo.source", "pk": 9846, "fields": {"orig_filename": "Lukas_Josef_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363f.", "author": "", "orig_id": 1411211}}, {"model": "metainfo.source", "pk": 9847, "fields": {"orig_filename": "Lukes_Jan-Ludevit_1824_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 365f.", "author": "", "orig_id": 1411285}}, {"model": "metainfo.source", "pk": 9848, "fields": {"orig_filename": "Lukes_Johann_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366", "author": "", "orig_id": 1411286}}, {"model": "metainfo.source", "pk": 9849, "fields": {"orig_filename": "Lukovic_Antun_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366", "author": "", "orig_id": 1411287}}, {"model": "metainfo.source", "pk": 9850, "fields": {"orig_filename": "Luksch_Josef_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366f.", "author": "", "orig_id": 1411288}}, {"model": "metainfo.source", "pk": 9851, "fields": {"orig_filename": "Lulic_Ante_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 367f.", "author": "", "orig_id": 1411290}}, {"model": "metainfo.source", "pk": 9852, "fields": {"orig_filename": "Lumbe-Mallonitz_Josef-Thaddaeus_1801_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411291}}, {"model": "metainfo.source", "pk": 9853, "fields": {"orig_filename": "Lumniczer_Sandor_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411293}}, {"model": "metainfo.source", "pk": 9854, "fields": {"orig_filename": "Lumnitzer_Johann-Georg_1783_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411294}}, {"model": "metainfo.source", "pk": 9855, "fields": {"orig_filename": "Lumnitzer_Paul_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368f.", "author": "", "orig_id": 1411295}}, {"model": "metainfo.source", "pk": 9856, "fields": {"orig_filename": "Lumpe_Heinrich_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369", "author": "", "orig_id": 1411296}}, {"model": "metainfo.source", "pk": 9857, "fields": {"orig_filename": "Luntz_Erwin_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411300}}, {"model": "metainfo.source", "pk": 9858, "fields": {"orig_filename": "Luntz_Ivo_1882_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411301}}, {"model": "metainfo.source", "pk": 9859, "fields": {"orig_filename": "Luntz_Victor_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411302}}, {"model": "metainfo.source", "pk": 9860, "fields": {"orig_filename": "Lunzer_Eduard_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371", "author": "", "orig_id": 1411303}}, {"model": "metainfo.source", "pk": 9861, "fields": {"orig_filename": "Lun_Karl_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369", "author": "", "orig_id": 1411297}}, {"model": "metainfo.source", "pk": 9862, "fields": {"orig_filename": "Luppis-Rammer_Johann_1813_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371", "author": "", "orig_id": 1411379}}, {"model": "metainfo.source", "pk": 9863, "fields": {"orig_filename": "Lupul_Janko_1836_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372", "author": "", "orig_id": 1411382}}, {"model": "metainfo.source", "pk": 9864, "fields": {"orig_filename": "Lupul_Theodor_1838_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372", "author": "", "orig_id": 1411383}}, {"model": "metainfo.source", "pk": 9865, "fields": {"orig_filename": "Lupu_Florea_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371f.", "author": "", "orig_id": 1411380}}, {"model": "metainfo.source", "pk": 9866, "fields": {"orig_filename": "Luschan_Felix_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372f.", "author": "", "orig_id": 1411384}}, {"model": "metainfo.source", "pk": 9867, "fields": {"orig_filename": "Luschin-Ebengreuth_Arnold_1841_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 373f.", "author": "", "orig_id": 1411386}}, {"model": "metainfo.source", "pk": 9868, "fields": {"orig_filename": "Luschin_Franz-Xaver_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 373", "author": "", "orig_id": 1411385}}, {"model": "metainfo.source", "pk": 9869, "fields": {"orig_filename": "Lussana_Filippo_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 374", "author": "", "orig_id": 1411387}}, {"model": "metainfo.source", "pk": 9870, "fields": {"orig_filename": "Lussberger_Jakob_1813_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 374f.", "author": "", "orig_id": 1411388}}, {"model": "metainfo.source", "pk": 9871, "fields": {"orig_filename": "Lussnigg_Robert_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411389}}, {"model": "metainfo.source", "pk": 9872, "fields": {"orig_filename": "Lustgarten_Sigmund_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411390}}, {"model": "metainfo.source", "pk": 9873, "fields": {"orig_filename": "Lustig-Prean-Preanfeld-Fella_Heinrich_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376", "author": "", "orig_id": 1411393}}, {"model": "metainfo.source", "pk": 9874, "fields": {"orig_filename": "Lustig-Prean-Preanfeld_Karl_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376", "author": "", "orig_id": 1411392}}, {"model": "metainfo.source", "pk": 9875, "fields": {"orig_filename": "Lustig_Gustav_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411391}}, {"model": "metainfo.source", "pk": 9876, "fields": {"orig_filename": "Lustkandl_Wenzel_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376f.", "author": "", "orig_id": 1411394}}, {"model": "metainfo.source", "pk": 9877, "fields": {"orig_filename": "Luszczkiewicz_Wladyslaw_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 377", "author": "", "orig_id": 1411395}}, {"model": "metainfo.source", "pk": 9878, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Franz_1784_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378", "author": "", "orig_id": 1411397}}, {"model": "metainfo.source", "pk": 9879, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Karl-Anton-Josef_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378", "author": "", "orig_id": 1411398}}, {"model": "metainfo.source", "pk": 9880, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Otto_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378f.", "author": "", "orig_id": 1411399}}, {"model": "metainfo.source", "pk": 9881, "fields": {"orig_filename": "Lutter_Nandor_1820_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 377f.", "author": "", "orig_id": 1411396}}, {"model": "metainfo.source", "pk": 9882, "fields": {"orig_filename": "Luttich-Luttichheim_Eduard_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379", "author": "", "orig_id": 1411401}}, {"model": "metainfo.source", "pk": 9883, "fields": {"orig_filename": "Luttich_Mila_1872_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2185402}}, {"model": "metainfo.source", "pk": 9884, "fields": {"orig_filename": "Lutti_Vincenzo_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379", "author": "", "orig_id": 1411400}}, {"model": "metainfo.source", "pk": 9885, "fields": {"orig_filename": "Lutzer_Jenny_1816_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381", "author": "", "orig_id": 1411471}}, {"model": "metainfo.source", "pk": 9886, "fields": {"orig_filename": "Lutz_Andreas_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379f.", "author": "", "orig_id": 1411466}}, {"model": "metainfo.source", "pk": 9887, "fields": {"orig_filename": "Lutz_Ernst_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411467}}, {"model": "metainfo.source", "pk": 9888, "fields": {"orig_filename": "Lutz_Franz-Xaver_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411468}}, {"model": "metainfo.source", "pk": 9889, "fields": {"orig_filename": "Lutz_Josef-Anton_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411469}}, {"model": "metainfo.source", "pk": 9890, "fields": {"orig_filename": "Lutz_Josef-Fidelis-Sebastian_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380f.", "author": "", "orig_id": 1411470}}, {"model": "metainfo.source", "pk": 9891, "fields": {"orig_filename": "Luxardo_Eugen_1867_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382", "author": "", "orig_id": 1411474}}, {"model": "metainfo.source", "pk": 9892, "fields": {"orig_filename": "Lux_Anton_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381", "author": "", "orig_id": 1411472}}, {"model": "metainfo.source", "pk": 9893, "fields": {"orig_filename": "Lux_Josef-August_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381f.", "author": "", "orig_id": 1411473}}, {"model": "metainfo.source", "pk": 9894, "fields": {"orig_filename": "Luze_Karl_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382", "author": "", "orig_id": 1411475}}, {"model": "metainfo.source", "pk": 9895, "fields": {"orig_filename": "Luzzatto_Filosseno_1829_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382f.", "author": "", "orig_id": 1411476}}, {"model": "metainfo.source", "pk": 9896, "fields": {"orig_filename": "Luzzatto_Samuel-David_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 383", "author": "", "orig_id": 1411477}}, {"model": "metainfo.source", "pk": 9897, "fields": {"orig_filename": "Maager_Carl_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 383f.", "author": "", "orig_id": 1411478}}, {"model": "metainfo.source", "pk": 9898, "fields": {"orig_filename": "Maassen_Friedrich-Bernhard_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384f.", "author": "", "orig_id": 1411483}}, {"model": "metainfo.source", "pk": 9899, "fields": {"orig_filename": "Maass_Alois-Simon_1758_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411480}}, {"model": "metainfo.source", "pk": 9900, "fields": {"orig_filename": "Maass_Ferdinand_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411481}}, {"model": "metainfo.source", "pk": 9901, "fields": {"orig_filename": "Maass_Friedrich-Otto_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411482}}, {"model": "metainfo.source", "pk": 9902, "fields": {"orig_filename": "Macalik-Ivanobran_Josef_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 385", "author": "", "orig_id": 1411484}}, {"model": "metainfo.source", "pk": 9903, "fields": {"orig_filename": "Macan_Jakub-Rafael_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 385f.", "author": "", "orig_id": 1411485}}, {"model": "metainfo.source", "pk": 9904, "fields": {"orig_filename": "Macasy_Gustav_1871_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386", "author": "", "orig_id": 1411486}}, {"model": "metainfo.source", "pk": 9905, "fields": {"orig_filename": "Macca_Antonio_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386", "author": "", "orig_id": 1411487}}, {"model": "metainfo.source", "pk": 9906, "fields": {"orig_filename": "Macchio_Karl_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387", "author": "", "orig_id": 1411489}}, {"model": "metainfo.source", "pk": 9907, "fields": {"orig_filename": "Macchi_Mauro_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386f.", "author": "", "orig_id": 1411488}}, {"model": "metainfo.source", "pk": 9908, "fields": {"orig_filename": "Macek_Antonin_1872_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387", "author": "", "orig_id": 1411490}}, {"model": "metainfo.source", "pk": 9909, "fields": {"orig_filename": "Macelariu_Ilie_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387f.", "author": "", "orig_id": 1411568}}, {"model": "metainfo.source", "pk": 9910, "fields": {"orig_filename": "Machacek_Simeon-Karel_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390f.", "author": "", "orig_id": 1411573}}, {"model": "metainfo.source", "pk": 9911, "fields": {"orig_filename": "Machac_Ladislav_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390", "author": "", "orig_id": 1411574}}, {"model": "metainfo.source", "pk": 9912, "fields": {"orig_filename": "Machalski_Maksymilian_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391", "author": "", "orig_id": 1411576}}, {"model": "metainfo.source", "pk": 9913, "fields": {"orig_filename": "Machal_Jan_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391", "author": "", "orig_id": 1411575}}, {"model": "metainfo.source", "pk": 9914, "fields": {"orig_filename": "Machanek_Ignaz_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391f.", "author": "", "orig_id": 1411577}}, {"model": "metainfo.source", "pk": 9915, "fields": {"orig_filename": "Machar_Josef-Svatopluk_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 392f.", "author": "", "orig_id": 1411578}}, {"model": "metainfo.source", "pk": 9916, "fields": {"orig_filename": "Macha_Karel-Hynek_1810_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390", "author": "", "orig_id": 1411572}}, {"model": "metainfo.source", "pk": 9917, "fields": {"orig_filename": "Machek_Antonin_1775_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393", "author": "", "orig_id": 1411579}}, {"model": "metainfo.source", "pk": 9918, "fields": {"orig_filename": "Machek_Emanuel_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393", "author": "", "orig_id": 1411580}}, {"model": "metainfo.source", "pk": 9919, "fields": {"orig_filename": "Machek_Ernst_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393f.", "author": "", "orig_id": 1411581}}, {"model": "metainfo.source", "pk": 9920, "fields": {"orig_filename": "Macher_Matthias_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394", "author": "", "orig_id": 1411582}}, {"model": "metainfo.source", "pk": 9921, "fields": {"orig_filename": "Macher_Maximilian_1882_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394", "author": "", "orig_id": 1411583}}, {"model": "metainfo.source", "pk": 9922, "fields": {"orig_filename": "Machold_Joseph_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394f.", "author": "", "orig_id": 1411584}}, {"model": "metainfo.source", "pk": 9923, "fields": {"orig_filename": "Mach_Edmund_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 388", "author": "", "orig_id": 1411569}}, {"model": "metainfo.source", "pk": 9924, "fields": {"orig_filename": "Mach_Ernst_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 388f.", "author": "", "orig_id": 1411570}}, {"model": "metainfo.source", "pk": 9925, "fields": {"orig_filename": "Mach_Franz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 389f.", "author": "", "orig_id": 1411571}}, {"model": "metainfo.source", "pk": 9926, "fields": {"orig_filename": "Maciejowski_Ignacy_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395", "author": "", "orig_id": 1411585}}, {"model": "metainfo.source", "pk": 9927, "fields": {"orig_filename": "Mack_Jozsef_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395", "author": "", "orig_id": 1411586}}, {"model": "metainfo.source", "pk": 9928, "fields": {"orig_filename": "Mack_Karl_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395f.", "author": "", "orig_id": 1411587}}, {"model": "metainfo.source", "pk": 9929, "fields": {"orig_filename": "Macun_Ivan_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411658}}, {"model": "metainfo.source", "pk": 9930, "fields": {"orig_filename": "Maczka_Jozef_1888_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411659}}, {"model": "metainfo.source", "pk": 9931, "fields": {"orig_filename": "Maczynski_Jozef_1807_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411660}}, {"model": "metainfo.source", "pk": 9932, "fields": {"orig_filename": "Madach_Imre_1823_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396f.", "author": "", "orig_id": 1411661}}, {"model": "metainfo.source", "pk": 9933, "fields": {"orig_filename": "Madarasz-Kisfalud_Laszlo_1811_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 397f.", "author": "", "orig_id": 1411663}}, {"model": "metainfo.source", "pk": 9934, "fields": {"orig_filename": "Loss_Giuseppe_1831_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412221}}, {"model": "metainfo.source", "pk": 9935, "fields": {"orig_filename": "Lostak_Jan_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412222}}, {"model": "metainfo.source", "pk": 9936, "fields": {"orig_filename": "Los_Jan_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325f.", "author": "", "orig_id": 1412212}}, {"model": "metainfo.source", "pk": 9937, "fields": {"orig_filename": "Lotheissen_Ferdinand_1833_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329f.", "author": "", "orig_id": 1412293}}, {"model": "metainfo.source", "pk": 9938, "fields": {"orig_filename": "Lotheissen_Georg_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330", "author": "", "orig_id": 1412294}}, {"model": "metainfo.source", "pk": 9939, "fields": {"orig_filename": "Lothringen_Karl-Eugen_1751_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330", "author": "", "orig_id": 1412295}}, {"model": "metainfo.source", "pk": 9940, "fields": {"orig_filename": "Lotti-Santa_Marcella_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412299}}, {"model": "metainfo.source", "pk": 9941, "fields": {"orig_filename": "Lott_Franz-Karl_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330f.", "author": "", "orig_id": 1412296}}, {"model": "metainfo.source", "pk": 9942, "fields": {"orig_filename": "Lott_Gustav-Christian_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412297}}, {"model": "metainfo.source", "pk": 9943, "fields": {"orig_filename": "Lott_Julius_1836_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412298}}, {"model": "metainfo.source", "pk": 9944, "fields": {"orig_filename": "Lotz_Karoly_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332", "author": "", "orig_id": 1412300}}, {"model": "metainfo.source", "pk": 9945, "fields": {"orig_filename": "Lotz_Wilhelm_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332", "author": "", "orig_id": 1412301}}, {"model": "metainfo.source", "pk": 9946, "fields": {"orig_filename": "Louis-Wawel_Jozef_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332f.", "author": "", "orig_id": 1412302}}, {"model": "metainfo.source", "pk": 9947, "fields": {"orig_filename": "Lovassy_Andor_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412303}}, {"model": "metainfo.source", "pk": 9948, "fields": {"orig_filename": "Lovassy_Laszlo_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412304}}, {"model": "metainfo.source", "pk": 9949, "fields": {"orig_filename": "Lovassy_Sandor_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412305}}, {"model": "metainfo.source", "pk": 9950, "fields": {"orig_filename": "Lovati_Teodoro_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412306}}, {"model": "metainfo.source", "pk": 9951, "fields": {"orig_filename": "Loverini_Ponziano_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412307}}, {"model": "metainfo.source", "pk": 9952, "fields": {"orig_filename": "Lovetto_Karl_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412308}}, {"model": "metainfo.source", "pk": 9953, "fields": {"orig_filename": "Lovich_Adam_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412309}}, {"model": "metainfo.source", "pk": 9954, "fields": {"orig_filename": "Lovisato_Domenico_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334f.", "author": "", "orig_id": 1412310}}, {"model": "metainfo.source", "pk": 9955, "fields": {"orig_filename": "Lovrencic_Jakob_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412311}}, {"model": "metainfo.source", "pk": 9956, "fields": {"orig_filename": "Lowag_Josef_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412312}}, {"model": "metainfo.source", "pk": 9957, "fields": {"orig_filename": "Loyp_Joseph_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412313}}, {"model": "metainfo.source", "pk": 9958, "fields": {"orig_filename": "Lozica_Ivan_1910_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412314}}, {"model": "metainfo.source", "pk": 9959, "fields": {"orig_filename": "Lozinski_Bronislaw_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335f.", "author": "", "orig_id": 1412315}}, {"model": "metainfo.source", "pk": 9960, "fields": {"orig_filename": "Lozinski_Walery_1837_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336", "author": "", "orig_id": 1412316}}, {"model": "metainfo.source", "pk": 9961, "fields": {"orig_filename": "Lozinski_Wladyslaw_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336", "author": "", "orig_id": 1412317}}, {"model": "metainfo.source", "pk": 9962, "fields": {"orig_filename": "Lozovina_Vinko_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336f.", "author": "", "orig_id": 1412387}}, {"model": "metainfo.source", "pk": 9963, "fields": {"orig_filename": "Lozynskyj_Josyp_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412388}}, {"model": "metainfo.source", "pk": 9964, "fields": {"orig_filename": "Lozynskyj_Mychajlo_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412389}}, {"model": "metainfo.source", "pk": 9965, "fields": {"orig_filename": "Luber_Ludwig_1813_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412390}}, {"model": "metainfo.source", "pk": 9966, "fields": {"orig_filename": "Lubinski_Rudolf_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412391}}, {"model": "metainfo.source", "pk": 9967, "fields": {"orig_filename": "Lubomirski_Henryk_1777_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412392}}, {"model": "metainfo.source", "pk": 9968, "fields": {"orig_filename": "Lubomirski_Jerzy_1817_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412393}}, {"model": "metainfo.source", "pk": 9969, "fields": {"orig_filename": "Lubomirski_Kazimierz_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412394}}, {"model": "metainfo.source", "pk": 9970, "fields": {"orig_filename": "Lubrich_Agost_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338f.", "author": "", "orig_id": 1412395}}, {"model": "metainfo.source", "pk": 9971, "fields": {"orig_filename": "Lucam_Anna_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339", "author": "", "orig_id": 1412396}}, {"model": "metainfo.source", "pk": 9972, "fields": {"orig_filename": "Lucam_Carl_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339", "author": "", "orig_id": 1412397}}, {"model": "metainfo.source", "pk": 9973, "fields": {"orig_filename": "Lucam_Wilhelm_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339f.", "author": "", "orig_id": 1412398}}, {"model": "metainfo.source", "pk": 9974, "fields": {"orig_filename": "Lucas_Carl-Wilhelm_1803_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340", "author": "", "orig_id": 1412399}}, {"model": "metainfo.source", "pk": 9975, "fields": {"orig_filename": "Lucatello_Luigi_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340", "author": "", "orig_id": 1412400}}, {"model": "metainfo.source", "pk": 9976, "fields": {"orig_filename": "Luccardi_Vincenzo_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412402}}, {"model": "metainfo.source", "pk": 9977, "fields": {"orig_filename": "Lucca_Pauline_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340f.", "author": "", "orig_id": 1412401}}, {"model": "metainfo.source", "pk": 9978, "fields": {"orig_filename": "Lucerna_Eduard_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412403}}, {"model": "metainfo.source", "pk": 9979, "fields": {"orig_filename": "Luchner_Oskar-Friedrich_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412404}}, {"model": "metainfo.source", "pk": 9980, "fields": {"orig_filename": "Luciani_Tommaso_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341f.", "author": "", "orig_id": 1412405}}, {"model": "metainfo.source", "pk": 9981, "fields": {"orig_filename": "Lucich_Geza_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 342", "author": "", "orig_id": 1412406}}, {"model": "metainfo.source", "pk": 9982, "fields": {"orig_filename": "Luckaj_Mychajlo_1789_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343", "author": "", "orig_id": 1412408}}, {"model": "metainfo.source", "pk": 9983, "fields": {"orig_filename": "Lucka_Emil_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 342f.", "author": "", "orig_id": 1412407}}, {"model": "metainfo.source", "pk": 9984, "fields": {"orig_filename": "Luckhardt_Fritz_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343", "author": "", "orig_id": 1412409}}, {"model": "metainfo.source", "pk": 9985, "fields": {"orig_filename": "Luckmann_Joseph_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343f.", "author": "", "orig_id": 1411003}}, {"model": "metainfo.source", "pk": 9986, "fields": {"orig_filename": "Luckmann_Karl_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344", "author": "", "orig_id": 1411004}}, {"model": "metainfo.source", "pk": 9987, "fields": {"orig_filename": "Luckmann_Lambert-Carl_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344", "author": "", "orig_id": 1411005}}, {"model": "metainfo.source", "pk": 9988, "fields": {"orig_filename": "Ludescher_Beat_1777_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344f.", "author": "", "orig_id": 1411006}}, {"model": "metainfo.source", "pk": 9989, "fields": {"orig_filename": "Ludewig_Anton-Edmund_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411007}}, {"model": "metainfo.source", "pk": 9990, "fields": {"orig_filename": "Ludig_Emanuel_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411008}}, {"model": "metainfo.source", "pk": 9991, "fields": {"orig_filename": "Ludolf_Emanuel_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411009}}, {"model": "metainfo.source", "pk": 9992, "fields": {"orig_filename": "Ludvigh_Janos_1812_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345f.", "author": "", "orig_id": 1411010}}, {"model": "metainfo.source", "pk": 9993, "fields": {"orig_filename": "Ludvigh_Samuel_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346", "author": "", "orig_id": 1411011}}, {"model": "metainfo.source", "pk": 9994, "fields": {"orig_filename": "Ludvik_Josef-Myslimir_1796_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346", "author": "", "orig_id": 1411012}}, {"model": "metainfo.source", "pk": 9995, "fields": {"orig_filename": "Ludwig_Alfred_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346f.", "author": "", "orig_id": 1411013}}, {"model": "metainfo.source", "pk": 9996, "fields": {"orig_filename": "Ludwig_Bernhard-Hieronymus_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347", "author": "", "orig_id": 1411015}}, {"model": "metainfo.source", "pk": 9997, "fields": {"orig_filename": "Ludwig_Bernhard_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347", "author": "", "orig_id": 1411014}}, {"model": "metainfo.source", "pk": 9998, "fields": {"orig_filename": "Ludwig_Ernst_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347f.", "author": "", "orig_id": 1411016}}, {"model": "metainfo.source", "pk": 9999, "fields": {"orig_filename": "Ludwig_Franz-Josef_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411017}}, {"model": "metainfo.source", "pk": 10000, "fields": {"orig_filename": "Ludwig_Franz-Xaver_1868_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411018}}, {"model": "metainfo.source", "pk": 10001, "fields": {"orig_filename": "Ludwig_Georg_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411020}}, {"model": "metainfo.source", "pk": 10002, "fields": {"orig_filename": "Ludwig_Hermann-Wilhelm_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349", "author": "", "orig_id": 1411094}}, {"model": "metainfo.source", "pk": 10003, "fields": {"orig_filename": "Ludwig_Hermann_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348f.", "author": "", "orig_id": 1411021}}, {"model": "metainfo.source", "pk": 10004, "fields": {"orig_filename": "Ludwig_Joseph-Anton_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349", "author": "", "orig_id": 1411095}}, {"model": "metainfo.source", "pk": 10005, "fields": {"orig_filename": "Ludwig_Karl_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349f.", "author": "", "orig_id": 1411096}}, {"model": "metainfo.source", "pk": 10006, "fields": {"orig_filename": "Ludwig_Karl_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350", "author": "", "orig_id": 1411097}}, {"model": "metainfo.source", "pk": 10007, "fields": {"orig_filename": "Ludwig_Karl_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350", "author": "", "orig_id": 1411098}}, {"model": "metainfo.source", "pk": 10008, "fields": {"orig_filename": "Ludwig_Salvator_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350f.", "author": "", "orig_id": 1411099}}, {"model": "metainfo.source", "pk": 10009, "fields": {"orig_filename": "Ludwig_Viktor_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351", "author": "", "orig_id": 1411100}}, {"model": "metainfo.source", "pk": 10010, "fields": {"orig_filename": "Ludwik_Kamill_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351", "author": "", "orig_id": 1411101}}, {"model": "metainfo.source", "pk": 10011, "fields": {"orig_filename": "Ludwik_Paul_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351f.", "author": "", "orig_id": 1411102}}, {"model": "metainfo.source", "pk": 10012, "fields": {"orig_filename": "Lueger_Karl_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 352f.", "author": "", "orig_id": 1411103}}, {"model": "metainfo.source", "pk": 10013, "fields": {"orig_filename": "Luenemann_Erich_1881_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353", "author": "", "orig_id": 1411104}}, {"model": "metainfo.source", "pk": 10014, "fields": {"orig_filename": "Luessner_Moritz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353", "author": "", "orig_id": 1411105}}, {"model": "metainfo.source", "pk": 10015, "fields": {"orig_filename": "Luetgendorff-Leinburg_Ferdinand_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353f.", "author": "", "orig_id": 1411106}}, {"model": "metainfo.source", "pk": 10016, "fields": {"orig_filename": "Luetgendorff-Leinburg_Otto-Gottfried_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411107}}, {"model": "metainfo.source", "pk": 10017, "fields": {"orig_filename": "Luetgendorff-Leinburg_Willibald-Leo_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411108}}, {"model": "metainfo.source", "pk": 10018, "fields": {"orig_filename": "Luetzow_Franz_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411109}}, {"model": "metainfo.source", "pk": 10019, "fields": {"orig_filename": "Luetzow_Heinrich_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354f.", "author": "", "orig_id": 1411110}}, {"model": "metainfo.source", "pk": 10020, "fields": {"orig_filename": "Luetzow_Karl_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355", "author": "", "orig_id": 1411111}}, {"model": "metainfo.source", "pk": 10021, "fields": {"orig_filename": "Lugert_Josef_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356f.", "author": "", "orig_id": 1411116}}, {"model": "metainfo.source", "pk": 10022, "fields": {"orig_filename": "Luger_Alfred_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355", "author": "", "orig_id": 1411112}}, {"model": "metainfo.source", "pk": 10023, "fields": {"orig_filename": "Luger_Alphons_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355f.", "author": "", "orig_id": 1411113}}, {"model": "metainfo.source", "pk": 10024, "fields": {"orig_filename": "Luger_Georg_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356", "author": "", "orig_id": 1411115}}, {"model": "metainfo.source", "pk": 10025, "fields": {"orig_filename": "Luggin_Hans_1863_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 357", "author": "", "orig_id": 1411117}}, {"model": "metainfo.source", "pk": 10026, "fields": {"orig_filename": "Luggin_Josef_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 357f.", "author": "", "orig_id": 1411118}}, {"model": "metainfo.source", "pk": 10027, "fields": {"orig_filename": "Lugnani_Giuseppe_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411191}}, {"model": "metainfo.source", "pk": 10028, "fields": {"orig_filename": "Lugossy_Jozsef_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411192}}, {"model": "metainfo.source", "pk": 10029, "fields": {"orig_filename": "Luh_Heinrich_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411193}}, {"model": "metainfo.source", "pk": 10030, "fields": {"orig_filename": "Luick_Karl_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358f.", "author": "", "orig_id": 1411194}}, {"model": "metainfo.source", "pk": 10031, "fields": {"orig_filename": "Luithlen_Friedrich_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 359", "author": "", "orig_id": 1411195}}, {"model": "metainfo.source", "pk": 10032, "fields": {"orig_filename": "Luithlen_Hugo_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 359f.", "author": "", "orig_id": 1411196}}, {"model": "metainfo.source", "pk": 10033, "fields": {"orig_filename": "Luithlen_Marie_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360", "author": "", "orig_id": 1411197}}, {"model": "metainfo.source", "pk": 10034, "fields": {"orig_filename": "Luithlen_Martha_1866_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360", "author": "", "orig_id": 1411198}}, {"model": "metainfo.source", "pk": 10035, "fields": {"orig_filename": "Lukachich-Somorja_Geza_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360f.", "author": "", "orig_id": 1411199}}, {"model": "metainfo.source", "pk": 10036, "fields": {"orig_filename": "Lukacsy_Imre_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411206}}, {"model": "metainfo.source", "pk": 10037, "fields": {"orig_filename": "Loewinger_Cilli_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 294f.", "author": "", "orig_id": 1411836}}, {"model": "metainfo.source", "pk": 10038, "fields": {"orig_filename": "Loewit_Moritz_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 295", "author": "", "orig_id": 1411837}}, {"model": "metainfo.source", "pk": 10039, "fields": {"orig_filename": "Loewl-Lenkenthal_Ferdinand_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 295f.", "author": "", "orig_id": 1411838}}, {"model": "metainfo.source", "pk": 10040, "fields": {"orig_filename": "Loewy_Albert_1816_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411839}}, {"model": "metainfo.source", "pk": 10041, "fields": {"orig_filename": "Loewy_Antonie_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411840}}, {"model": "metainfo.source", "pk": 10042, "fields": {"orig_filename": "Loewy_Emanuel_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411911}}, {"model": "metainfo.source", "pk": 10043, "fields": {"orig_filename": "Loewy_Josef_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296f.", "author": "", "orig_id": 1411912}}, {"model": "metainfo.source", "pk": 10044, "fields": {"orig_filename": "Loewy_Moritz_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297f.", "author": "", "orig_id": 1411914}}, {"model": "metainfo.source", "pk": 10045, "fields": {"orig_filename": "Loewy_Siegfried_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298", "author": "", "orig_id": 1411915}}, {"model": "metainfo.source", "pk": 10046, "fields": {"orig_filename": "Loew_Georg_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411734}}, {"model": "metainfo.source", "pk": 10047, "fields": {"orig_filename": "Loew_Immanuel_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411735}}, {"model": "metainfo.source", "pk": 10048, "fields": {"orig_filename": "Loew_Joseph_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283f.", "author": "", "orig_id": 1411736}}, {"model": "metainfo.source", "pk": 10049, "fields": {"orig_filename": "Loew_Karl_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 284", "author": "", "orig_id": 1411737}}, {"model": "metainfo.source", "pk": 10050, "fields": {"orig_filename": "Loew_Konrad_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 284f.", "author": "", "orig_id": 1411738}}, {"model": "metainfo.source", "pk": 10051, "fields": {"orig_filename": "Loew_Leopold_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 285", "author": "", "orig_id": 1411739}}, {"model": "metainfo.source", "pk": 10052, "fields": {"orig_filename": "Loew_Moritz_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 285f.", "author": "", "orig_id": 1411740}}, {"model": "metainfo.source", "pk": 10053, "fields": {"orig_filename": "Loew_Philipp_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411742}}, {"model": "metainfo.source", "pk": 10054, "fields": {"orig_filename": "Loew_Philip_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411741}}, {"model": "metainfo.source", "pk": 10055, "fields": {"orig_filename": "Loew_Tobias_1844_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411743}}, {"model": "metainfo.source", "pk": 10056, "fields": {"orig_filename": "Loew_Wilhelm_1812_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411744}}, {"model": "metainfo.source", "pk": 10057, "fields": {"orig_filename": "Logothetti_Hugo_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298", "author": "", "orig_id": 1411916}}, {"model": "metainfo.source", "pk": 10058, "fields": {"orig_filename": "Lohan_Robert_1884_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298f.", "author": "", "orig_id": 1411917}}, {"model": "metainfo.source", "pk": 10059, "fields": {"orig_filename": "Lohner_Heinrich_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299", "author": "", "orig_id": 1411918}}, {"model": "metainfo.source", "pk": 10060, "fields": {"orig_filename": "Lohner_Jakob_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299", "author": "", "orig_id": 1411919}}, {"model": "metainfo.source", "pk": 10061, "fields": {"orig_filename": "Lohner_Ludwig_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299f.", "author": "", "orig_id": 1411920}}, {"model": "metainfo.source", "pk": 10062, "fields": {"orig_filename": "Lohninger_Joseph_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 300", "author": "", "orig_id": 1411922}}, {"model": "metainfo.source", "pk": 10063, "fields": {"orig_filename": "Lohr_Otto_1847_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 300f.", "author": "", "orig_id": 1411923}}, {"model": "metainfo.source", "pk": 10064, "fields": {"orig_filename": "Lohsing_Ernst_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301", "author": "", "orig_id": 1411924}}, {"model": "metainfo.source", "pk": 10065, "fields": {"orig_filename": "Lohwag_Ernst_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301", "author": "", "orig_id": 1411925}}, {"model": "metainfo.source", "pk": 10066, "fields": {"orig_filename": "Lohwag_Heinrich_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301f.", "author": "", "orig_id": 1411926}}, {"model": "metainfo.source", "pk": 10067, "fields": {"orig_filename": "Loidl_Karl_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411927}}, {"model": "metainfo.source", "pk": 10068, "fields": {"orig_filename": "Loidol_Oddo_1858_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411928}}, {"model": "metainfo.source", "pk": 10069, "fields": {"orig_filename": "Loimann_Gustav_1853_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411929}}, {"model": "metainfo.source", "pk": 10070, "fields": {"orig_filename": "Loinger_Vitus_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302f.", "author": "", "orig_id": 1411930}}, {"model": "metainfo.source", "pk": 10071, "fields": {"orig_filename": "Lojko-Tisovsky_August_1843_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303", "author": "", "orig_id": 1411931}}, {"model": "metainfo.source", "pk": 10072, "fields": {"orig_filename": "Lokar_Anton_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303", "author": "", "orig_id": 1411932}}, {"model": "metainfo.source", "pk": 10073, "fields": {"orig_filename": "Lolek_Stanislav_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303f.", "author": "", "orig_id": 1411933}}, {"model": "metainfo.source", "pk": 10074, "fields": {"orig_filename": "Lolli_Eude_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1411934}}, {"model": "metainfo.source", "pk": 10075, "fields": {"orig_filename": "Lombardini_Alexander_1851_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1412008}}, {"model": "metainfo.source", "pk": 10076, "fields": {"orig_filename": "Lombardini_Elia_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1412009}}, {"model": "metainfo.source", "pk": 10077, "fields": {"orig_filename": "Lombroso_Ezechia-Marco_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1412010}}, {"model": "metainfo.source", "pk": 10078, "fields": {"orig_filename": "Lomnicki_Jaroslaw-Ludomir_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305", "author": "", "orig_id": 1412011}}, {"model": "metainfo.source", "pk": 10079, "fields": {"orig_filename": "Lomnicki_Marian_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305", "author": "", "orig_id": 1412012}}, {"model": "metainfo.source", "pk": 10080, "fields": {"orig_filename": "Longhi_Giuseppe_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305f.", "author": "", "orig_id": 1412013}}, {"model": "metainfo.source", "pk": 10081, "fields": {"orig_filename": "Longo_Emanuele_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306", "author": "", "orig_id": 1412014}}, {"model": "metainfo.source", "pk": 10082, "fields": {"orig_filename": "Lonkay_Antal_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306", "author": "", "orig_id": 1412015}}, {"model": "metainfo.source", "pk": 10083, "fields": {"orig_filename": "Lonovics_Jozsef_1793_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306f.", "author": "", "orig_id": 1412016}}, {"model": "metainfo.source", "pk": 10084, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Albert_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307", "author": "", "orig_id": 1412017}}, {"model": "metainfo.source", "pk": 10085, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Gabor_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307", "author": "", "orig_id": 1412018}}, {"model": "metainfo.source", "pk": 10086, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Menyhert_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307f.", "author": "", "orig_id": 1412019}}, {"model": "metainfo.source", "pk": 10087, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Stephanie_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308", "author": "", "orig_id": 1412020}}, {"model": "metainfo.source", "pk": 10088, "fields": {"orig_filename": "Lonza_Antonio_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308", "author": "", "orig_id": 1412021}}, {"model": "metainfo.source", "pk": 10089, "fields": {"orig_filename": "Loosey_Karl-Friedrich_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412028}}, {"model": "metainfo.source", "pk": 10090, "fields": {"orig_filename": "Loos_Adolf_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308f.", "author": "", "orig_id": 1412022}}, {"model": "metainfo.source", "pk": 10091, "fields": {"orig_filename": "Loos_Friedrich_1797_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 309f.", "author": "", "orig_id": 1412023}}, {"model": "metainfo.source", "pk": 10092, "fields": {"orig_filename": "Loos_Johann_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310", "author": "", "orig_id": 1412024}}, {"model": "metainfo.source", "pk": 10093, "fields": {"orig_filename": "Loos_Josef_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310", "author": "", "orig_id": 1412025}}, {"model": "metainfo.source", "pk": 10094, "fields": {"orig_filename": "Loos_Kurt-Camillo_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310f.", "author": "", "orig_id": 1412026}}, {"model": "metainfo.source", "pk": 10095, "fields": {"orig_filename": "Loos_Lina_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412027}}, {"model": "metainfo.source", "pk": 10096, "fields": {"orig_filename": "Lopasic_Dusan_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412100}}, {"model": "metainfo.source", "pk": 10097, "fields": {"orig_filename": "Lopasic_Radoslav_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412101}}, {"model": "metainfo.source", "pk": 10098, "fields": {"orig_filename": "Lorantfi_Antal_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412102}}, {"model": "metainfo.source", "pk": 10099, "fields": {"orig_filename": "Lorber_Franz_1846_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412103}}, {"model": "metainfo.source", "pk": 10100, "fields": {"orig_filename": "Lorber_Jakob_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312f.", "author": "", "orig_id": 1412104}}, {"model": "metainfo.source", "pk": 10101, "fields": {"orig_filename": "Lorens_Carl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 313", "author": "", "orig_id": 1412105}}, {"model": "metainfo.source", "pk": 10102, "fields": {"orig_filename": "Lorentz-Langendorf_Johann-Ludwig_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 313f.", "author": "", "orig_id": 1412106}}, {"model": "metainfo.source", "pk": 10103, "fields": {"orig_filename": "Lorenz-Liburnau_Josef-Roman_1825_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 319f.", "author": "", "orig_id": 1412119}}, {"model": "metainfo.source", "pk": 10104, "fields": {"orig_filename": "Lorenz-Liburnau_Ludwig_1856_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 320f.", "author": "", "orig_id": 1412120}}, {"model": "metainfo.source", "pk": 10105, "fields": {"orig_filename": "Lorenzetti_Giuseppe_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412121}}, {"model": "metainfo.source", "pk": 10106, "fields": {"orig_filename": "Lorenzi_Bartolomeo_1732_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412198}}, {"model": "metainfo.source", "pk": 10107, "fields": {"orig_filename": "Lorenzoni_Antonio_1755_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412199}}, {"model": "metainfo.source", "pk": 10108, "fields": {"orig_filename": "Lorenzoni_Franz_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322", "author": "", "orig_id": 1412200}}, {"model": "metainfo.source", "pk": 10109, "fields": {"orig_filename": "Lorenzoni_Giovanni_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322", "author": "", "orig_id": 1412201}}, {"model": "metainfo.source", "pk": 10110, "fields": {"orig_filename": "Lorenzoni_Giuseppe_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322f.", "author": "", "orig_id": 1412202}}, {"model": "metainfo.source", "pk": 10111, "fields": {"orig_filename": "Lorenzutti_Lorenzo_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 323", "author": "", "orig_id": 1412203}}, {"model": "metainfo.source", "pk": 10112, "fields": {"orig_filename": "Lorenz_Adolf_1854_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 314f.", "author": "", "orig_id": 1412107}}, {"model": "metainfo.source", "pk": 10113, "fields": {"orig_filename": "Lorenz_Alfred-Ottokar_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315", "author": "", "orig_id": 1412108}}, {"model": "metainfo.source", "pk": 10114, "fields": {"orig_filename": "Lorenz_Emil_1889_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1461233}}, {"model": "metainfo.source", "pk": 10115, "fields": {"orig_filename": "Lorenz_Franz_1803_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315", "author": "", "orig_id": 1412109}}, {"model": "metainfo.source", "pk": 10116, "fields": {"orig_filename": "Lorenz_Hans_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315f.", "author": "", "orig_id": 1412110}}, {"model": "metainfo.source", "pk": 10117, "fields": {"orig_filename": "Lorenz_Johann-Jakob_1807_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317", "author": "", "orig_id": 1412113}}, {"model": "metainfo.source", "pk": 10118, "fields": {"orig_filename": "Lorenz_Johann_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316f.", "author": "", "orig_id": 1412112}}, {"model": "metainfo.source", "pk": 10119, "fields": {"orig_filename": "Lorenz_Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317", "author": "", "orig_id": 1412114}}, {"model": "metainfo.source", "pk": 10120, "fields": {"orig_filename": "Lorenz_Karl_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317f.", "author": "", "orig_id": 1412115}}, {"model": "metainfo.source", "pk": 10121, "fields": {"orig_filename": "Lorenz_Martin_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 318", "author": "", "orig_id": 1412116}}, {"model": "metainfo.source", "pk": 10122, "fields": {"orig_filename": "Lorenz_Ottokar_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 318f.", "author": "", "orig_id": 1412117}}, {"model": "metainfo.source", "pk": 10123, "fields": {"orig_filename": "Lorenz_Richard_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 319", "author": "", "orig_id": 1412118}}, {"model": "metainfo.source", "pk": 10124, "fields": {"orig_filename": "Lorinser_Friedrich-Wilhelm_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 323f.", "author": "", "orig_id": 1412204}}, {"model": "metainfo.source", "pk": 10125, "fields": {"orig_filename": "Lorinser_Gisela_1856_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412205}}, {"model": "metainfo.source", "pk": 10126, "fields": {"orig_filename": "Lorinser_Gustav_1811_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412206}}, {"model": "metainfo.source", "pk": 10127, "fields": {"orig_filename": "Loritz_Urban_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324f.", "author": "", "orig_id": 1412208}}, {"model": "metainfo.source", "pk": 10128, "fields": {"orig_filename": "Lorkovic_Blaz_1839_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325", "author": "", "orig_id": 1412209}}, {"model": "metainfo.source", "pk": 10129, "fields": {"orig_filename": "Lorkovic_Ivan_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325", "author": "", "orig_id": 1412210}}, {"model": "metainfo.source", "pk": 10130, "fields": {"orig_filename": "Los-Grotkow_Wlodzimierz-Adam-Aleksander_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326", "author": "", "orig_id": 1412213}}, {"model": "metainfo.source", "pk": 10131, "fields": {"orig_filename": "Losa_Vaclav_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326", "author": "", "orig_id": 1412214}}, {"model": "metainfo.source", "pk": 10132, "fields": {"orig_filename": "Loschmidt_Johann-Josef_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326f.", "author": "", "orig_id": 1412215}}, {"model": "metainfo.source", "pk": 10133, "fields": {"orig_filename": "Loserth_Johann_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 328f.", "author": "", "orig_id": 1412218}}, {"model": "metainfo.source", "pk": 10134, "fields": {"orig_filename": "Losert_Benedikt_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 327f.", "author": "", "orig_id": 1412217}}, {"model": "metainfo.source", "pk": 10135, "fields": {"orig_filename": "Loser_Franz_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 327", "author": "", "orig_id": 1412216}}, {"model": "metainfo.source", "pk": 10136, "fields": {"orig_filename": "Loskay_Gabriel_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412219}}, {"model": "metainfo.source", "pk": 10137, "fields": {"orig_filename": "Losonczy_Laszlo_1812_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412220}}, {"model": "metainfo.source", "pk": 10138, "fields": {"orig_filename": "Littrow_Hermann_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251", "author": "", "orig_id": 1411372}}, {"model": "metainfo.source", "pk": 10139, "fields": {"orig_filename": "Littrow_Joseph-Johann_1781_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251f.", "author": "", "orig_id": 1411373}}, {"model": "metainfo.source", "pk": 10140, "fields": {"orig_filename": "Littrow_Karl-Ludwig_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 252f.", "author": "", "orig_id": 1411374}}, {"model": "metainfo.source", "pk": 10141, "fields": {"orig_filename": "Litzelhofen_Eduard_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253", "author": "", "orig_id": 1411375}}, {"model": "metainfo.source", "pk": 10142, "fields": {"orig_filename": "Livadic-Wiesner_Branimir_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253", "author": "", "orig_id": 1411376}}, {"model": "metainfo.source", "pk": 10143, "fields": {"orig_filename": "Livadic-Wiesner_Ferdo_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253f.", "author": "", "orig_id": 1411444}}, {"model": "metainfo.source", "pk": 10144, "fields": {"orig_filename": "Liverati_Giovanni_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254", "author": "", "orig_id": 1411445}}, {"model": "metainfo.source", "pk": 10145, "fields": {"orig_filename": "Liznar_Josef_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254", "author": "", "orig_id": 1411447}}, {"model": "metainfo.source", "pk": 10146, "fields": {"orig_filename": "Ljubibratic_Mico_1839_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254f.", "author": "", "orig_id": 1411446}}, {"model": "metainfo.source", "pk": 10147, "fields": {"orig_filename": "Ljubic_Sime_1822_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 255", "author": "", "orig_id": 1411448}}, {"model": "metainfo.source", "pk": 10148, "fields": {"orig_filename": "Ljubisa_Stjepan-Mitrov_1824_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 255f.", "author": "", "orig_id": 1411449}}, {"model": "metainfo.source", "pk": 10149, "fields": {"orig_filename": "Ljubsa_Matija_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411450}}, {"model": "metainfo.source", "pk": 10150, "fields": {"orig_filename": "Lobarzewski_Hiacynt-Jan_1818_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411451}}, {"model": "metainfo.source", "pk": 10151, "fields": {"orig_filename": "Lobenstock_Heinrich_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411452}}, {"model": "metainfo.source", "pk": 10152, "fields": {"orig_filename": "Lobeski_Felicjan_1815_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257", "author": "", "orig_id": 1411453}}, {"model": "metainfo.source", "pk": 10153, "fields": {"orig_filename": "Lobinger_Karl_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257", "author": "", "orig_id": 1411454}}, {"model": "metainfo.source", "pk": 10154, "fields": {"orig_filename": "Lobkowitz_Anton-Isidor_1773_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258", "author": "", "orig_id": 1411456}}, {"model": "metainfo.source", "pk": 10155, "fields": {"orig_filename": "Lobkowitz_Ferdinand_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258", "author": "", "orig_id": 1411457}}, {"model": "metainfo.source", "pk": 10156, "fields": {"orig_filename": "Lobkowitz_Ferdinand_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258f.", "author": "", "orig_id": 1411458}}, {"model": "metainfo.source", "pk": 10157, "fields": {"orig_filename": "Lobkowitz_Georg-Christian_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 259f.", "author": "", "orig_id": 1411459}}, {"model": "metainfo.source", "pk": 10158, "fields": {"orig_filename": "Lobkowitz_Johann_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260", "author": "", "orig_id": 1411460}}, {"model": "metainfo.source", "pk": 10159, "fields": {"orig_filename": "Lobkowitz_Josef-Franz-Maximilian_1772_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260f.", "author": "", "orig_id": 1411462}}, {"model": "metainfo.source", "pk": 10160, "fields": {"orig_filename": "Lobkowitz_Josef-Franz_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260", "author": "", "orig_id": 1411461}}, {"model": "metainfo.source", "pk": 10161, "fields": {"orig_filename": "Lobkowitz_Karl-Johann-Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 261", "author": "", "orig_id": 1411463}}, {"model": "metainfo.source", "pk": 10162, "fields": {"orig_filename": "Lobkowitz_Rudolf_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262", "author": "", "orig_id": 1411464}}, {"model": "metainfo.source", "pk": 10163, "fields": {"orig_filename": "Lobkowitz_Zdenko_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262", "author": "", "orig_id": 1411465}}, {"model": "metainfo.source", "pk": 10164, "fields": {"orig_filename": "Lobmayer_Antun_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262f.", "author": "", "orig_id": 1411541}}, {"model": "metainfo.source", "pk": 10165, "fields": {"orig_filename": "Lobmeyr_Ludwig_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263f.", "author": "", "orig_id": 1411543}}, {"model": "metainfo.source", "pk": 10166, "fields": {"orig_filename": "Lobos_Ignacy_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411544}}, {"model": "metainfo.source", "pk": 10167, "fields": {"orig_filename": "Locatelli-Milesi_Giuseppe_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411549}}, {"model": "metainfo.source", "pk": 10168, "fields": {"orig_filename": "Locatelli_Giacomo_1756_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411545}}, {"model": "metainfo.source", "pk": 10169, "fields": {"orig_filename": "Locatelli_Gian-Francesco_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411546}}, {"model": "metainfo.source", "pk": 10170, "fields": {"orig_filename": "Locatelli_Pasino_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264f.", "author": "", "orig_id": 1411547}}, {"model": "metainfo.source", "pk": 10171, "fields": {"orig_filename": "Locatelli_Tommaso_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411548}}, {"model": "metainfo.source", "pk": 10172, "fields": {"orig_filename": "Locella_Guglielmo_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411550}}, {"model": "metainfo.source", "pk": 10173, "fields": {"orig_filename": "Lochau_Viktor-Albrecht_1765_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411551}}, {"model": "metainfo.source", "pk": 10174, "fields": {"orig_filename": "Lochis_Carlo_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411552}}, {"model": "metainfo.source", "pk": 10175, "fields": {"orig_filename": "Lochis_Guglielmo_1789_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411553}}, {"model": "metainfo.source", "pk": 10176, "fields": {"orig_filename": "Lochner_Johann_1756_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411554}}, {"model": "metainfo.source", "pk": 10177, "fields": {"orig_filename": "Locker_Anton_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266f.", "author": "", "orig_id": 1411555}}, {"model": "metainfo.source", "pk": 10178, "fields": {"orig_filename": "Loczka_Jozsef_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267", "author": "", "orig_id": 1411556}}, {"model": "metainfo.source", "pk": 10179, "fields": {"orig_filename": "Loczy_Lajos_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267", "author": "", "orig_id": 1411557}}, {"model": "metainfo.source", "pk": 10180, "fields": {"orig_filename": "Loder_Matthaeus_1781_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268", "author": "", "orig_id": 1411559}}, {"model": "metainfo.source", "pk": 10181, "fields": {"orig_filename": "Lode_Alois_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267f.", "author": "", "orig_id": 1411558}}, {"model": "metainfo.source", "pk": 10182, "fields": {"orig_filename": "Lodi_Emanuele_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268", "author": "", "orig_id": 1411560}}, {"model": "metainfo.source", "pk": 10183, "fields": {"orig_filename": "Lodrini_Antonio_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268f.", "author": "", "orig_id": 1411561}}, {"model": "metainfo.source", "pk": 10184, "fields": {"orig_filename": "Lodron-Laterano_Caspar_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411562}}, {"model": "metainfo.source", "pk": 10185, "fields": {"orig_filename": "Lodron-Laterano_Konstantin_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411563}}, {"model": "metainfo.source", "pk": 10186, "fields": {"orig_filename": "Loebisch_Wilhelm-Franz_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411564}}, {"model": "metainfo.source", "pk": 10187, "fields": {"orig_filename": "Loebl-Tauernstorff_Johann_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270f.", "author": "", "orig_id": 1411567}}, {"model": "metainfo.source", "pk": 10188, "fields": {"orig_filename": "Loebl_Emil_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270", "author": "", "orig_id": 1411565}}, {"model": "metainfo.source", "pk": 10189, "fields": {"orig_filename": "Loebl_Hermann_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270", "author": "", "orig_id": 1411566}}, {"model": "metainfo.source", "pk": 10190, "fields": {"orig_filename": "Loeffler_Alexander_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 271f.", "author": "", "orig_id": 1411637}}, {"model": "metainfo.source", "pk": 10191, "fields": {"orig_filename": "Loeffler_Karl_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272", "author": "", "orig_id": 1411638}}, {"model": "metainfo.source", "pk": 10192, "fields": {"orig_filename": "Loeffler_Leopold_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272", "author": "", "orig_id": 1411639}}, {"model": "metainfo.source", "pk": 10193, "fields": {"orig_filename": "Loeff_Anton_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 271", "author": "", "orig_id": 1411636}}, {"model": "metainfo.source", "pk": 10194, "fields": {"orig_filename": "Loefler_Franz_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272f.", "author": "", "orig_id": 1411640}}, {"model": "metainfo.source", "pk": 10195, "fields": {"orig_filename": "Loeger_Anton_1813_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 273", "author": "", "orig_id": 1411641}}, {"model": "metainfo.source", "pk": 10196, "fields": {"orig_filename": "Loeherer_Andor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 273f.", "author": "", "orig_id": 1411642}}, {"model": "metainfo.source", "pk": 10197, "fields": {"orig_filename": "Loehner_Fritz_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274", "author": "", "orig_id": 1411643}}, {"model": "metainfo.source", "pk": 10198, "fields": {"orig_filename": "Loehner_Hermann_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274", "author": "", "orig_id": 1411644}}, {"model": "metainfo.source", "pk": 10199, "fields": {"orig_filename": "Loehner_Josef_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274f.", "author": "", "orig_id": 1411645}}, {"model": "metainfo.source", "pk": 10200, "fields": {"orig_filename": "Loehner_Ludwig_1812_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 275", "author": "", "orig_id": 1411646}}, {"model": "metainfo.source", "pk": 10201, "fields": {"orig_filename": "Loehneysen_Hilbert_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 275f.", "author": "", "orig_id": 1411647}}, {"model": "metainfo.source", "pk": 10202, "fields": {"orig_filename": "Loehr_Alexander_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 276", "author": "", "orig_id": 1411648}}, {"model": "metainfo.source", "pk": 10203, "fields": {"orig_filename": "Loehr_August_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 276f.", "author": "", "orig_id": 1411649}}, {"model": "metainfo.source", "pk": 10204, "fields": {"orig_filename": "Loehr_Grete_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 277", "author": "", "orig_id": 1411650}}, {"model": "metainfo.source", "pk": 10205, "fields": {"orig_filename": "Loehr_Moritz_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 277f.", "author": "", "orig_id": 1411651}}, {"model": "metainfo.source", "pk": 10206, "fields": {"orig_filename": "Loenhart_Ferenc_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278", "author": "", "orig_id": 1411652}}, {"model": "metainfo.source", "pk": 10207, "fields": {"orig_filename": "Loerenthey_Imre_1867_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278", "author": "", "orig_id": 1411653}}, {"model": "metainfo.source", "pk": 10208, "fields": {"orig_filename": "Loescher_Leopoldine_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279", "author": "", "orig_id": 1411656}}, {"model": "metainfo.source", "pk": 10209, "fields": {"orig_filename": "Loesche_Karl-David-Georg_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278f.", "author": "", "orig_id": 1411654}}, {"model": "metainfo.source", "pk": 10210, "fields": {"orig_filename": "Loesche_Naema_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279", "author": "", "orig_id": 1411655}}, {"model": "metainfo.source", "pk": 10211, "fields": {"orig_filename": "Loeschner_Joseph-Wilhelm_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279f.", "author": "", "orig_id": 1411657}}, {"model": "metainfo.source", "pk": 10212, "fields": {"orig_filename": "Loeschner_Richard_1879_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 280", "author": "", "orig_id": 1411725}}, {"model": "metainfo.source", "pk": 10213, "fields": {"orig_filename": "Loeschnigg_Hans_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281", "author": "", "orig_id": 1411727}}, {"model": "metainfo.source", "pk": 10214, "fields": {"orig_filename": "Loeschnig_Josef_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 280f.", "author": "", "orig_id": 1411726}}, {"model": "metainfo.source", "pk": 10215, "fields": {"orig_filename": "Loessl_Franz-Xaver_1801_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281", "author": "", "orig_id": 1411728}}, {"model": "metainfo.source", "pk": 10216, "fields": {"orig_filename": "Loessl_Friedrich_1817_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281f.", "author": "", "orig_id": 1411729}}, {"model": "metainfo.source", "pk": 10217, "fields": {"orig_filename": "Loessl_Rudolf_1872_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282", "author": "", "orig_id": 1411730}}, {"model": "metainfo.source", "pk": 10218, "fields": {"orig_filename": "Loete_Jozsef_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282", "author": "", "orig_id": 1411731}}, {"model": "metainfo.source", "pk": 10219, "fields": {"orig_filename": "Loevenstein_Jan_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282f.", "author": "", "orig_id": 1411732}}, {"model": "metainfo.source", "pk": 10220, "fields": {"orig_filename": "Loevey_Klara_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411733}}, {"model": "metainfo.source", "pk": 10221, "fields": {"orig_filename": "Loewenbach_Georg_1872_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291", "author": "", "orig_id": 1411827}}, {"model": "metainfo.source", "pk": 10222, "fields": {"orig_filename": "Loewenfeld-Russ_Johann_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291", "author": "", "orig_id": 1411828}}, {"model": "metainfo.source", "pk": 10223, "fields": {"orig_filename": "Loewenstein-Opoka_Nathan_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292", "author": "", "orig_id": 1411831}}, {"model": "metainfo.source", "pk": 10224, "fields": {"orig_filename": "Loewenstein_Ernst_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291f.", "author": "", "orig_id": 1411829}}, {"model": "metainfo.source", "pk": 10225, "fields": {"orig_filename": "Loewenstein_Moritz_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292", "author": "", "orig_id": 1411830}}, {"model": "metainfo.source", "pk": 10226, "fields": {"orig_filename": "Loewenthal_Jakob_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292f.", "author": "", "orig_id": 1411832}}, {"model": "metainfo.source", "pk": 10227, "fields": {"orig_filename": "Loewenthal_Johann_1803_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 293", "author": "", "orig_id": 1411833}}, {"model": "metainfo.source", "pk": 10228, "fields": {"orig_filename": "Loewenthal_Max_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 293f.", "author": "", "orig_id": 1411834}}, {"model": "metainfo.source", "pk": 10229, "fields": {"orig_filename": "Loewenthal_Sophie_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 294", "author": "", "orig_id": 1411835}}, {"model": "metainfo.source", "pk": 10230, "fields": {"orig_filename": "Loewe_Alexander_1808_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286f.", "author": "", "orig_id": 1411745}}, {"model": "metainfo.source", "pk": 10231, "fields": {"orig_filename": "Loewe_Anna_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 287", "author": "", "orig_id": 1411819}}, {"model": "metainfo.source", "pk": 10232, "fields": {"orig_filename": "Loewe_Ferdinand_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 287", "author": "", "orig_id": 1411820}}, {"model": "metainfo.source", "pk": 10233, "fields": {"orig_filename": "Loewe_Gustav_1865_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 288", "author": "", "orig_id": 1411821}}, {"model": "metainfo.source", "pk": 10234, "fields": {"orig_filename": "Loewe_Johann-Heinrich_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 288", "author": "", "orig_id": 1411822}}, {"model": "metainfo.source", "pk": 10235, "fields": {"orig_filename": "Loewe_Julie-Sophie_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 289", "author": "", "orig_id": 1411823}}, {"model": "metainfo.source", "pk": 10236, "fields": {"orig_filename": "Loewe_Ludwig_1794_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 289f.", "author": "", "orig_id": 1411824}}, {"model": "metainfo.source", "pk": 10237, "fields": {"orig_filename": "Loewe_Sophie-Johanna_1815_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 290", "author": "", "orig_id": 1411825}}, {"model": "metainfo.source", "pk": 10238, "fields": {"orig_filename": "Loewe_Theodor_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 290f.", "author": "", "orig_id": 1411826}}, {"model": "metainfo.source", "pk": 10239, "fields": {"orig_filename": "Limbourg_Maximilian_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216f.", "author": "", "orig_id": 1412372}}, {"model": "metainfo.source", "pk": 10240, "fields": {"orig_filename": "Linberger_Istvan_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412373}}, {"model": "metainfo.source", "pk": 10241, "fields": {"orig_filename": "Lindau_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 218f.", "author": "", "orig_id": 1412378}}, {"model": "metainfo.source", "pk": 10242, "fields": {"orig_filename": "Linda_Josef_1789_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 218", "author": "", "orig_id": 1412377}}, {"model": "metainfo.source", "pk": 10243, "fields": {"orig_filename": "Lindenau_Karl-Friedrich_1746_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219", "author": "", "orig_id": 1412380}}, {"model": "metainfo.source", "pk": 10244, "fields": {"orig_filename": "Lindenthal_Gustav_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219f.", "author": "", "orig_id": 1412381}}, {"model": "metainfo.source", "pk": 10245, "fields": {"orig_filename": "Linden_Joseph-Sigmund_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219", "author": "", "orig_id": 1412379}}, {"model": "metainfo.source", "pk": 10246, "fields": {"orig_filename": "Linder_Karl_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412384}}, {"model": "metainfo.source", "pk": 10247, "fields": {"orig_filename": "Lindheim_Alfred_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220f.", "author": "", "orig_id": 1412385}}, {"model": "metainfo.source", "pk": 10248, "fields": {"orig_filename": "Lindheim_Hermann-Dietrich_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 221", "author": "", "orig_id": 1412386}}, {"model": "metainfo.source", "pk": 10249, "fields": {"orig_filename": "Lindheim_Wilhelm_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 221", "author": "", "orig_id": 1411072}}, {"model": "metainfo.source", "pk": 10250, "fields": {"orig_filename": "Lindner_Anton-Friedrich_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222", "author": "", "orig_id": 1411074}}, {"model": "metainfo.source", "pk": 10251, "fields": {"orig_filename": "Lindner_Anton_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222", "author": "", "orig_id": 1411073}}, {"model": "metainfo.source", "pk": 10252, "fields": {"orig_filename": "Lindner_Ernst_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222f.", "author": "", "orig_id": 1411075}}, {"model": "metainfo.source", "pk": 10253, "fields": {"orig_filename": "Lindner_Gustav_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411076}}, {"model": "metainfo.source", "pk": 10254, "fields": {"orig_filename": "Lindner_Karl_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411077}}, {"model": "metainfo.source", "pk": 10255, "fields": {"orig_filename": "Lindner_Pirmin_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411078}}, {"model": "metainfo.source", "pk": 10256, "fields": {"orig_filename": "Lind_Eduard_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412374}}, {"model": "metainfo.source", "pk": 10257, "fields": {"orig_filename": "Lind_Emil_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412375}}, {"model": "metainfo.source", "pk": 10258, "fields": {"orig_filename": "Lind_Karl_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217f.", "author": "", "orig_id": 1412376}}, {"model": "metainfo.source", "pk": 10259, "fields": {"orig_filename": "Lingiardi_Giovanni-Batt_1765_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223f.", "author": "", "orig_id": 1411079}}, {"model": "metainfo.source", "pk": 10260, "fields": {"orig_filename": "Linhart_Emil_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411080}}, {"model": "metainfo.source", "pk": 10261, "fields": {"orig_filename": "Linhart_Gyoergy_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411081}}, {"model": "metainfo.source", "pk": 10262, "fields": {"orig_filename": "Linhart_Karel_1882_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411082}}, {"model": "metainfo.source", "pk": 10263, "fields": {"orig_filename": "Link-Dessauer_Antonie_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411087}}, {"model": "metainfo.source", "pk": 10264, "fields": {"orig_filename": "Linke-Crawford_Frank_1893_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 227f.", "author": "", "orig_id": 1411092}}, {"model": "metainfo.source", "pk": 10265, "fields": {"orig_filename": "Linke_Franz_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411088}}, {"model": "metainfo.source", "pk": 10266, "fields": {"orig_filename": "Linke_Friedrich_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411089}}, {"model": "metainfo.source", "pk": 10267, "fields": {"orig_filename": "Linke_Joseph_1783_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226f.", "author": "", "orig_id": 1411090}}, {"model": "metainfo.source", "pk": 10268, "fields": {"orig_filename": "Linke_Karl_1884_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 227", "author": "", "orig_id": 1411091}}, {"model": "metainfo.source", "pk": 10269, "fields": {"orig_filename": "Links_Rudolf_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411093}}, {"model": "metainfo.source", "pk": 10270, "fields": {"orig_filename": "Link_Adolf_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224f.", "author": "", "orig_id": 1411083}}, {"model": "metainfo.source", "pk": 10271, "fields": {"orig_filename": "Link_Anton_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225", "author": "", "orig_id": 1411084}}, {"model": "metainfo.source", "pk": 10272, "fields": {"orig_filename": "Link_Augustin_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225", "author": "", "orig_id": 1411085}}, {"model": "metainfo.source", "pk": 10273, "fields": {"orig_filename": "Link_Leopold_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225f.", "author": "", "orig_id": 1411086}}, {"model": "metainfo.source", "pk": 10274, "fields": {"orig_filename": "Linnemann_Eduard_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411167}}, {"model": "metainfo.source", "pk": 10275, "fields": {"orig_filename": "Linnert_Gustav_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411168}}, {"model": "metainfo.source", "pk": 10276, "fields": {"orig_filename": "Linsbauer_Karl_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228f.", "author": "", "orig_id": 1411169}}, {"model": "metainfo.source", "pk": 10277, "fields": {"orig_filename": "Linsbauer_Ludwig_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229", "author": "", "orig_id": 1411170}}, {"model": "metainfo.source", "pk": 10278, "fields": {"orig_filename": "Linsmeier_Anton_1840_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229", "author": "", "orig_id": 1411171}}, {"model": "metainfo.source", "pk": 10279, "fields": {"orig_filename": "Linzbauer_Franz-Xaver_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229f.", "author": "", "orig_id": 1411172}}, {"model": "metainfo.source", "pk": 10280, "fields": {"orig_filename": "Linzinger_Ludwig_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230", "author": "", "orig_id": 1411173}}, {"model": "metainfo.source", "pk": 10281, "fields": {"orig_filename": "Lioy_Paolo_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230", "author": "", "orig_id": 1411174}}, {"model": "metainfo.source", "pk": 10282, "fields": {"orig_filename": "Lipcsey-Bilke_Adam_1864_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230f.", "author": "", "orig_id": 1411175}}, {"model": "metainfo.source", "pk": 10283, "fields": {"orig_filename": "Lipiner_Siegfried_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231", "author": "", "orig_id": 1411177}}, {"model": "metainfo.source", "pk": 10284, "fields": {"orig_filename": "Lipinski_Hipolit_1846_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231", "author": "", "orig_id": 1411178}}, {"model": "metainfo.source", "pk": 10285, "fields": {"orig_filename": "Lipinski_Karl-Joseph_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231f.", "author": "", "orig_id": 1411179}}, {"model": "metainfo.source", "pk": 10286, "fields": {"orig_filename": "Lipinski_Kazimierz_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 232", "author": "", "orig_id": 1411180}}, {"model": "metainfo.source", "pk": 10287, "fields": {"orig_filename": "Lipold_Marko-Vincenc_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 232", "author": "", "orig_id": 1411181}}, {"model": "metainfo.source", "pk": 10288, "fields": {"orig_filename": "Liposcak_Anton_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233", "author": "", "orig_id": 1411182}}, {"model": "metainfo.source", "pk": 10289, "fields": {"orig_filename": "Lipovniczky-Lipovnok_Istvan_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233", "author": "", "orig_id": 1411183}}, {"model": "metainfo.source", "pk": 10290, "fields": {"orig_filename": "Lipparini_Lodovico_1800_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411186}}, {"model": "metainfo.source", "pk": 10291, "fields": {"orig_filename": "Lippay-Zombor_Gaspar_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234f.", "author": "", "orig_id": 1411188}}, {"model": "metainfo.source", "pk": 10292, "fields": {"orig_filename": "Lippay_Bartholomaeus-Dominik_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411187}}, {"model": "metainfo.source", "pk": 10293, "fields": {"orig_filename": "Lippert-Granberg_Josef-Erwin_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236", "author": "", "orig_id": 1411260}}, {"model": "metainfo.source", "pk": 10294, "fields": {"orig_filename": "Lippert-Granberg_Josephine_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236", "author": "", "orig_id": 1411261}}, {"model": "metainfo.source", "pk": 10295, "fields": {"orig_filename": "Lippert_Christian_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235", "author": "", "orig_id": 1411189}}, {"model": "metainfo.source", "pk": 10296, "fields": {"orig_filename": "Lippert_Josef_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235", "author": "", "orig_id": 1411190}}, {"model": "metainfo.source", "pk": 10297, "fields": {"orig_filename": "Lippert_Julius_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235f.", "author": "", "orig_id": 1411259}}, {"model": "metainfo.source", "pk": 10298, "fields": {"orig_filename": "Lippich-Korong_Elek_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1416637}}, {"model": "metainfo.source", "pk": 10299, "fields": {"orig_filename": "Lippich-Lindburg_Friedrich_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1411264}}, {"model": "metainfo.source", "pk": 10300, "fields": {"orig_filename": "Lippich_Ferdinand_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236f.", "author": "", "orig_id": 1411262}}, {"model": "metainfo.source", "pk": 10301, "fields": {"orig_filename": "Lippich_Franz-Wilhelm_1799_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1411263}}, {"model": "metainfo.source", "pk": 10302, "fields": {"orig_filename": "Lippitt_Mathilde-Maria-Floriana_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237f.", "author": "", "orig_id": 1411265}}, {"model": "metainfo.source", "pk": 10303, "fields": {"orig_filename": "Lippmann_Edmund-Oscar_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 238", "author": "", "orig_id": 1411266}}, {"model": "metainfo.source", "pk": 10304, "fields": {"orig_filename": "Lippmann_Eduard_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 238f.", "author": "", "orig_id": 1411267}}, {"model": "metainfo.source", "pk": 10305, "fields": {"orig_filename": "Lippmann_Friedrich_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 239", "author": "", "orig_id": 1411268}}, {"model": "metainfo.source", "pk": 10306, "fields": {"orig_filename": "Lippowitz_Jakob_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 239", "author": "", "orig_id": 1411269}}, {"model": "metainfo.source", "pk": 10307, "fields": {"orig_filename": "Lipp_Eduard_1831_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233f.", "author": "", "orig_id": 1411184}}, {"model": "metainfo.source", "pk": 10308, "fields": {"orig_filename": "Lipp_Vilmos_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411185}}, {"model": "metainfo.source", "pk": 10309, "fields": {"orig_filename": "Lipschuetz_Benjamin_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411270}}, {"model": "metainfo.source", "pk": 10310, "fields": {"orig_filename": "Lipschuetz_Elieser-Meir_1879_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411271}}, {"model": "metainfo.source", "pk": 10311, "fields": {"orig_filename": "Lipschuetz_Leopold_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411272}}, {"model": "metainfo.source", "pk": 10312, "fields": {"orig_filename": "Lipszky-Szedlicsna_Janos_1766_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240f.", "author": "", "orig_id": 1411273}}, {"model": "metainfo.source", "pk": 10313, "fields": {"orig_filename": "Lipthay-Kisfalud_Antal_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241", "author": "", "orig_id": 1411274}}, {"model": "metainfo.source", "pk": 10314, "fields": {"orig_filename": "Lipthay-Kisfalud_Sandor_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241", "author": "", "orig_id": 1411275}}, {"model": "metainfo.source", "pk": 10315, "fields": {"orig_filename": "Lisinski_Vatroslav_1819_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241f.", "author": "", "orig_id": 1411276}}, {"model": "metainfo.source", "pk": 10316, "fields": {"orig_filename": "Liska_Antonin_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242", "author": "", "orig_id": 1411277}}, {"model": "metainfo.source", "pk": 10317, "fields": {"orig_filename": "Liska_Emanuel-Krescenc_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242", "author": "", "orig_id": 1411278}}, {"model": "metainfo.source", "pk": 10318, "fields": {"orig_filename": "Liske_Ksawery_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242f.", "author": "", "orig_id": 1411279}}, {"model": "metainfo.source", "pk": 10319, "fields": {"orig_filename": "Lissauer_Ernst_1882_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243", "author": "", "orig_id": 1411281}}, {"model": "metainfo.source", "pk": 10320, "fields": {"orig_filename": "Lissa_Jakob__1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243", "author": "", "orig_id": 1411280}}, {"model": "metainfo.source", "pk": 10321, "fields": {"orig_filename": "Lissoni_Andrea_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243f.", "author": "", "orig_id": 1411353}}, {"model": "metainfo.source", "pk": 10322, "fields": {"orig_filename": "Lissoni_Antonio_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244", "author": "", "orig_id": 1411354}}, {"model": "metainfo.source", "pk": 10323, "fields": {"orig_filename": "List_Camillo_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244", "author": "", "orig_id": 1411355}}, {"model": "metainfo.source", "pk": 10324, "fields": {"orig_filename": "List_Franz_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244f.", "author": "", "orig_id": 1411356}}, {"model": "metainfo.source", "pk": 10325, "fields": {"orig_filename": "List_Guido_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 245", "author": "", "orig_id": 1411357}}, {"model": "metainfo.source", "pk": 10326, "fields": {"orig_filename": "List_Rosa_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 245", "author": "", "orig_id": 1411358}}, {"model": "metainfo.source", "pk": 10327, "fields": {"orig_filename": "List_Wilhelm_1864_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411359}}, {"model": "metainfo.source", "pk": 10328, "fields": {"orig_filename": "Liszkay_Gustav_1843_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411360}}, {"model": "metainfo.source", "pk": 10329, "fields": {"orig_filename": "Liszkay_Jozsef_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411361}}, {"model": "metainfo.source", "pk": 10330, "fields": {"orig_filename": "Liszt_Anton-Joseph_1863_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246f.", "author": "", "orig_id": 1411362}}, {"model": "metainfo.source", "pk": 10331, "fields": {"orig_filename": "Liszt_Eduard_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247", "author": "", "orig_id": 1411363}}, {"model": "metainfo.source", "pk": 10332, "fields": {"orig_filename": "Liszt_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f.", "author": "", "orig_id": 1411364}}, {"model": "metainfo.source", "pk": 10333, "fields": {"orig_filename": "Liszt_Franz_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 248f.", "author": "", "orig_id": 1411365}}, {"model": "metainfo.source", "pk": 10334, "fields": {"orig_filename": "Litschauer_Karl-Josef_1830_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249", "author": "", "orig_id": 1411366}}, {"model": "metainfo.source", "pk": 10335, "fields": {"orig_filename": "Litschauer_Lajos_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249", "author": "", "orig_id": 1416635}}, {"model": "metainfo.source", "pk": 10336, "fields": {"orig_filename": "Litschauer_Lajos_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249f.", "author": "", "orig_id": 1411367}}, {"model": "metainfo.source", "pk": 10337, "fields": {"orig_filename": "Litta_Pompeo_1781_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250", "author": "", "orig_id": 1411368}}, {"model": "metainfo.source", "pk": 10338, "fields": {"orig_filename": "Littrow_Auguste_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250f.", "author": "", "orig_id": 1411370}}, {"model": "metainfo.source", "pk": 10339, "fields": {"orig_filename": "Littrow_Franz_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251", "author": "", "orig_id": 1411371}}, {"model": "metainfo.source", "pk": 10340, "fields": {"orig_filename": "Lichtenstadt_Johann_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411990}}, {"model": "metainfo.source", "pk": 10341, "fields": {"orig_filename": "Lichtensteiner_Meinrad_1759_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411992}}, {"model": "metainfo.source", "pk": 10342, "fields": {"orig_filename": "Lichtenstein_Ferenc-Lajos_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411991}}, {"model": "metainfo.source", "pk": 10343, "fields": {"orig_filename": "Lichtenstern_Ludwig_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411993}}, {"model": "metainfo.source", "pk": 10344, "fields": {"orig_filename": "Lichtenstern_Richard_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411994}}, {"model": "metainfo.source", "pk": 10345, "fields": {"orig_filename": "Lichtenstern_Wilhelm_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411995}}, {"model": "metainfo.source", "pk": 10346, "fields": {"orig_filename": "Lichtenthal_Peter_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411996}}, {"model": "metainfo.source", "pk": 10347, "fields": {"orig_filename": "Lichtwitz_Leopold_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188f.", "author": "", "orig_id": 1411997}}, {"model": "metainfo.source", "pk": 10348, "fields": {"orig_filename": "Licht_Ferdinand_1748_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183f.", "author": "", "orig_id": 1411905}}, {"model": "metainfo.source", "pk": 10349, "fields": {"orig_filename": "Licht_Stephan_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411906}}, {"model": "metainfo.source", "pk": 10350, "fields": {"orig_filename": "Lickl_Aegidius-Karl_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1411998}}, {"model": "metainfo.source", "pk": 10351, "fields": {"orig_filename": "Lickl_Johann-Georg_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1411999}}, {"model": "metainfo.source", "pk": 10352, "fields": {"orig_filename": "Lickl_Karl-Georg_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1412000}}, {"model": "metainfo.source", "pk": 10353, "fields": {"orig_filename": "Lidl_Johann_1787_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1412001}}, {"model": "metainfo.source", "pk": 10354, "fields": {"orig_filename": "Lidl_Josef_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189f.", "author": "", "orig_id": 1412002}}, {"model": "metainfo.source", "pk": 10355, "fields": {"orig_filename": "Lidmansky_Adelbert-Josef_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412003}}, {"model": "metainfo.source", "pk": 10356, "fields": {"orig_filename": "Lieban_Julius_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190f.", "author": "", "orig_id": 1412006}}, {"model": "metainfo.source", "pk": 10357, "fields": {"orig_filename": "Liebbald_Beni_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412007}}, {"model": "metainfo.source", "pk": 10358, "fields": {"orig_filename": "Liebbald_Julius-Thomas_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412075}}, {"model": "metainfo.source", "pk": 10359, "fields": {"orig_filename": "Liebe-Kreutzner_Joseph_1830_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412076}}, {"model": "metainfo.source", "pk": 10360, "fields": {"orig_filename": "Liebel_Ignaz_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191f.", "author": "", "orig_id": 1412077}}, {"model": "metainfo.source", "pk": 10361, "fields": {"orig_filename": "Liebenberg-Zsittin_Adolf_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 193f.", "author": "", "orig_id": 1412083}}, {"model": "metainfo.source", "pk": 10362, "fields": {"orig_filename": "Liebener-Monte-Cristallo_Leonhard_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194", "author": "", "orig_id": 1412084}}, {"model": "metainfo.source", "pk": 10363, "fields": {"orig_filename": "Liebenwein_Josef-Richard_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194", "author": "", "orig_id": 1412085}}, {"model": "metainfo.source", "pk": 10364, "fields": {"orig_filename": "Liebenwein_Maximilian_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194f.", "author": "", "orig_id": 1412086}}, {"model": "metainfo.source", "pk": 10365, "fields": {"orig_filename": "Lieben_Adolf_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412078}}, {"model": "metainfo.source", "pk": 10366, "fields": {"orig_filename": "Lieben_Koppelmann_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412079}}, {"model": "metainfo.source", "pk": 10367, "fields": {"orig_filename": "Lieben_Leopold_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412080}}, {"model": "metainfo.source", "pk": 10368, "fields": {"orig_filename": "Lieben_Robert_1878_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 193", "author": "", "orig_id": 1412081}}, {"model": "metainfo.source", "pk": 10369, "fields": {"orig_filename": "Lieben_Salomon-Hugo_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 193", "author": "", "orig_id": 1412082}}, {"model": "metainfo.source", "pk": 10370, "fields": {"orig_filename": "Liebermann-Szentloerinc_Leo_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 196", "author": "", "orig_id": 1412090}}, {"model": "metainfo.source", "pk": 10371, "fields": {"orig_filename": "Liebermann_Herman_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195f.", "author": "", "orig_id": 1412089}}, {"model": "metainfo.source", "pk": 10372, "fields": {"orig_filename": "Liebert_Franz_1814_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 196f.", "author": "", "orig_id": 1412091}}, {"model": "metainfo.source", "pk": 10373, "fields": {"orig_filename": "Lieberzeit_Anna_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412092}}, {"model": "metainfo.source", "pk": 10374, "fields": {"orig_filename": "Lieber_August_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195", "author": "", "orig_id": 1412087}}, {"model": "metainfo.source", "pk": 10375, "fields": {"orig_filename": "Lieber_Georg-Diethelm_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195", "author": "", "orig_id": 1412088}}, {"model": "metainfo.source", "pk": 10376, "fields": {"orig_filename": "Liebhardt_Ida_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412093}}, {"model": "metainfo.source", "pk": 10377, "fields": {"orig_filename": "Liebhardt_Ignaz_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412094}}, {"model": "metainfo.source", "pk": 10378, "fields": {"orig_filename": "Liebhardt_Luise_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412095}}, {"model": "metainfo.source", "pk": 10379, "fields": {"orig_filename": "Liebich_Christoph_1783_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197f.", "author": "", "orig_id": 1412096}}, {"model": "metainfo.source", "pk": 10380, "fields": {"orig_filename": "Liebich_Johann-Carl_1773_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198", "author": "", "orig_id": 1412097}}, {"model": "metainfo.source", "pk": 10381, "fields": {"orig_filename": "Liebieg_Franz_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198", "author": "", "orig_id": 1412099}}, {"model": "metainfo.source", "pk": 10382, "fields": {"orig_filename": "Liebieg_Franz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198f.", "author": "", "orig_id": 1412176}}, {"model": "metainfo.source", "pk": 10383, "fields": {"orig_filename": "Liebieg_Heinrich_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199", "author": "", "orig_id": 1412098}}, {"model": "metainfo.source", "pk": 10384, "fields": {"orig_filename": "Liebieg_Johann_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199", "author": "", "orig_id": 1412177}}, {"model": "metainfo.source", "pk": 10385, "fields": {"orig_filename": "Liebisch_Joachim_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199f.", "author": "", "orig_id": 1412178}}, {"model": "metainfo.source", "pk": 10386, "fields": {"orig_filename": "Liebisch_Rudolf_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412179}}, {"model": "metainfo.source", "pk": 10387, "fields": {"orig_filename": "Liebleitner_Karl_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200f.", "author": "", "orig_id": 1412182}}, {"model": "metainfo.source", "pk": 10388, "fields": {"orig_filename": "Liebl_Franz-Alois_1760_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412180}}, {"model": "metainfo.source", "pk": 10389, "fields": {"orig_filename": "Liebl_Hans_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412181}}, {"model": "metainfo.source", "pk": 10390, "fields": {"orig_filename": "Liebscher_Adolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412183}}, {"model": "metainfo.source", "pk": 10391, "fields": {"orig_filename": "Liebscher_Karel_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412184}}, {"model": "metainfo.source", "pk": 10392, "fields": {"orig_filename": "Liebstoeckl_Hans_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412185}}, {"model": "metainfo.source", "pk": 10393, "fields": {"orig_filename": "Liebus_Adalbert_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201f.", "author": "", "orig_id": 1412186}}, {"model": "metainfo.source", "pk": 10394, "fields": {"orig_filename": "Lieb_Josef_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412004}}, {"model": "metainfo.source", "pk": 10395, "fields": {"orig_filename": "Lieb_Leopold_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412005}}, {"model": "metainfo.source", "pk": 10396, "fields": {"orig_filename": "Liechtenberg-Mordaxt-Schneeberg_Arthur_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202", "author": "", "orig_id": 1412187}}, {"model": "metainfo.source", "pk": 10397, "fields": {"orig_filename": "Liechtenberg-Schneeberg_Nikolaus_1789_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202", "author": "", "orig_id": 1412188}}, {"model": "metainfo.source", "pk": 10398, "fields": {"orig_filename": "Liechtenstein_Alfred_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202f.", "author": "", "orig_id": 1412189}}, {"model": "metainfo.source", "pk": 10399, "fields": {"orig_filename": "Liechtenstein_Aloys_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 203", "author": "", "orig_id": 1412190}}, {"model": "metainfo.source", "pk": 10400, "fields": {"orig_filename": "Liechtenstein_Aloys_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 203f.", "author": "", "orig_id": 1412191}}, {"model": "metainfo.source", "pk": 10401, "fields": {"orig_filename": "Liechtenstein_Franz_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 204", "author": "", "orig_id": 1412192}}, {"model": "metainfo.source", "pk": 10402, "fields": {"orig_filename": "Liechtenstein_Franz_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 204f.", "author": "", "orig_id": 1412193}}, {"model": "metainfo.source", "pk": 10403, "fields": {"orig_filename": "Liechtenstein_Friedrich_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 205", "author": "", "orig_id": 1412194}}, {"model": "metainfo.source", "pk": 10404, "fields": {"orig_filename": "Liechtenstein_Johann_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 205f.", "author": "", "orig_id": 1412195}}, {"model": "metainfo.source", "pk": 10405, "fields": {"orig_filename": "Liechtenstein_Karl_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 206", "author": "", "orig_id": 1412196}}, {"model": "metainfo.source", "pk": 10406, "fields": {"orig_filename": "Liechtenstein_Rudolf_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 206f.", "author": "", "orig_id": 1412197}}, {"model": "metainfo.source", "pk": 10407, "fields": {"orig_filename": "Liechtenstern_Joseph-Marx_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207", "author": "", "orig_id": 1412268}}, {"model": "metainfo.source", "pk": 10408, "fields": {"orig_filename": "Liedeck_Georg_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207", "author": "", "orig_id": 1412269}}, {"model": "metainfo.source", "pk": 10409, "fields": {"orig_filename": "Liedemann_Martin_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207f.", "author": "", "orig_id": 1412270}}, {"model": "metainfo.source", "pk": 10410, "fields": {"orig_filename": "Lieder_Friedrich-Johann-Gottlieb_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1412271}}, {"model": "metainfo.source", "pk": 10411, "fields": {"orig_filename": "Liedtke_Marie_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1412272}}, {"model": "metainfo.source", "pk": 10412, "fields": {"orig_filename": "Liegel_Emanuel_1859_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1416636}}, {"model": "metainfo.source", "pk": 10413, "fields": {"orig_filename": "Liegel_Georg_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208f.", "author": "", "orig_id": 1412273}}, {"model": "metainfo.source", "pk": 10414, "fields": {"orig_filename": "Lieger_Paulus_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209", "author": "", "orig_id": 1412274}}, {"model": "metainfo.source", "pk": 10415, "fields": {"orig_filename": "Liegler_Leopold_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209", "author": "", "orig_id": 1412275}}, {"model": "metainfo.source", "pk": 10416, "fields": {"orig_filename": "Lielegg_Andreas_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209f.", "author": "", "orig_id": 1412276}}, {"model": "metainfo.source", "pk": 10417, "fields": {"orig_filename": "Lienbacher_Georg_1822_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412277}}, {"model": "metainfo.source", "pk": 10418, "fields": {"orig_filename": "Lienbacher_Matthias_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412278}}, {"model": "metainfo.source", "pk": 10419, "fields": {"orig_filename": "Lierheimer_Bernhard_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412280}}, {"model": "metainfo.source", "pk": 10420, "fields": {"orig_filename": "Lier_Jan_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412279}}, {"model": "metainfo.source", "pk": 10421, "fields": {"orig_filename": "Lieschnigg_Karl_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412281}}, {"model": "metainfo.source", "pk": 10422, "fields": {"orig_filename": "Liewehr_Fred_1909_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426543}}, {"model": "metainfo.source", "pk": 10423, "fields": {"orig_filename": "Liezen-Mayer_Sandor_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412282}}, {"model": "metainfo.source", "pk": 10424, "fields": {"orig_filename": "Liftl_Franz_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412283}}, {"model": "metainfo.source", "pk": 10425, "fields": {"orig_filename": "Ligeti_Antal_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211f.", "author": "", "orig_id": 1412284}}, {"model": "metainfo.source", "pk": 10426, "fields": {"orig_filename": "Ligges_Georg_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412285}}, {"model": "metainfo.source", "pk": 10427, "fields": {"orig_filename": "Liharzik_Franz_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412286}}, {"model": "metainfo.source", "pk": 10428, "fields": {"orig_filename": "Liharzik_Franz_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412287}}, {"model": "metainfo.source", "pk": 10429, "fields": {"orig_filename": "Lihotzky_Erwin_1887_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212f.", "author": "", "orig_id": 1412288}}, {"model": "metainfo.source", "pk": 10430, "fields": {"orig_filename": "Likavetz_Joseph-Kal_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213", "author": "", "orig_id": 1412289}}, {"model": "metainfo.source", "pk": 10431, "fields": {"orig_filename": "Likoser-Sprengbrueck_Josef_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213", "author": "", "orig_id": 1412290}}, {"model": "metainfo.source", "pk": 10432, "fields": {"orig_filename": "Lilek_Emilijan_1851_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213f.", "author": "", "orig_id": 1412291}}, {"model": "metainfo.source", "pk": 10433, "fields": {"orig_filename": "Lilia-Westegg_Karl_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412292}}, {"model": "metainfo.source", "pk": 10434, "fields": {"orig_filename": "Lilien_Efraim_1874_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412364}}, {"model": "metainfo.source", "pk": 10435, "fields": {"orig_filename": "Lilien_Maximilian_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412365}}, {"model": "metainfo.source", "pk": 10436, "fields": {"orig_filename": "Lilie_Adolf_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412363}}, {"model": "metainfo.source", "pk": 10437, "fields": {"orig_filename": "Lill-Lilienbach_Karl_1798_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 215", "author": "", "orig_id": 1412367}}, {"model": "metainfo.source", "pk": 10438, "fields": {"orig_filename": "Lill_Eduard_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214f.", "author": "", "orig_id": 1412366}}, {"model": "metainfo.source", "pk": 10439, "fields": {"orig_filename": "Limanowski_Boleslaw_1835_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 215f.", "author": "", "orig_id": 1412368}}, {"model": "metainfo.source", "pk": 10440, "fields": {"orig_filename": "Limbacher_Rudolf_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412369}}, {"model": "metainfo.source", "pk": 10441, "fields": {"orig_filename": "Limbeck-Lilienau_Max_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412370}}, {"model": "metainfo.source", "pk": 10442, "fields": {"orig_filename": "Limbeck-Lilienau_Rudolf_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412371}}, {"model": "metainfo.source", "pk": 10443, "fields": {"orig_filename": "Leseticky_Vojtech_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155", "author": "", "orig_id": 1412972}}, {"model": "metainfo.source", "pk": 10444, "fields": {"orig_filename": "Lesic_Matilda_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155", "author": "", "orig_id": 1412973}}, {"model": "metainfo.source", "pk": 10445, "fields": {"orig_filename": "Lesic_Toso_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155f.", "author": "", "orig_id": 1412974}}, {"model": "metainfo.source", "pk": 10446, "fields": {"orig_filename": "Leska_Stepan_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156", "author": "", "orig_id": 1412975}}, {"model": "metainfo.source", "pk": 10447, "fields": {"orig_filename": "Leskovar_Janko_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156", "author": "", "orig_id": 1412976}}, {"model": "metainfo.source", "pk": 10448, "fields": {"orig_filename": "Leskovec_Anton_1891_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156f.", "author": "", "orig_id": 1412977}}, {"model": "metainfo.source", "pk": 10449, "fields": {"orig_filename": "Lesonitzky_Otto_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412978}}, {"model": "metainfo.source", "pk": 10450, "fields": {"orig_filename": "Lessel_Franciszek_1780_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412979}}, {"model": "metainfo.source", "pk": 10451, "fields": {"orig_filename": "Lessenyey_Franz_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412980}}, {"model": "metainfo.source", "pk": 10452, "fields": {"orig_filename": "Lessiak_Primus_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157f.", "author": "", "orig_id": 1412981}}, {"model": "metainfo.source", "pk": 10453, "fields": {"orig_filename": "Lestocq_Hermann_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158", "author": "", "orig_id": 1412982}}, {"model": "metainfo.source", "pk": 10454, "fields": {"orig_filename": "Leszai-Fogaras_Daniel_1798_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158", "author": "", "orig_id": 1412983}}, {"model": "metainfo.source", "pk": 10455, "fields": {"orig_filename": "Leth_Julius-Johann-Bapt_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158f.", "author": "", "orig_id": 1412984}}, {"model": "metainfo.source", "pk": 10456, "fields": {"orig_filename": "Leth_Karl_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411615}}, {"model": "metainfo.source", "pk": 10457, "fields": {"orig_filename": "Letowski_Ludwik_1786_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411616}}, {"model": "metainfo.source", "pk": 10458, "fields": {"orig_filename": "Letsch_Louis_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411617}}, {"model": "metainfo.source", "pk": 10459, "fields": {"orig_filename": "Letteris_Meirha-Levi_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159f.", "author": "", "orig_id": 1411618}}, {"model": "metainfo.source", "pk": 10460, "fields": {"orig_filename": "Leuchert_Eduard_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 160", "author": "", "orig_id": 1411619}}, {"model": "metainfo.source", "pk": 10461, "fields": {"orig_filename": "Leuchs_Kurt_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 160f.", "author": "", "orig_id": 1411620}}, {"model": "metainfo.source", "pk": 10462, "fields": {"orig_filename": "Leutelt_Gustav_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 161", "author": "", "orig_id": 1411621}}, {"model": "metainfo.source", "pk": 10463, "fields": {"orig_filename": "Leutner_Karl_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 161f.", "author": "", "orig_id": 1411622}}, {"model": "metainfo.source", "pk": 10464, "fields": {"orig_filename": "Leuzendorf-Campo-Santa-Lucia_Arthur_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411623}}, {"model": "metainfo.source", "pk": 10465, "fields": {"orig_filename": "Levar_Ivan_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411624}}, {"model": "metainfo.source", "pk": 10466, "fields": {"orig_filename": "Levati_Ambrogio_1790_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411625}}, {"model": "metainfo.source", "pk": 10467, "fields": {"orig_filename": "Levay-Kistelek_Henrik_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163f.", "author": "", "orig_id": 1411630}}, {"model": "metainfo.source", "pk": 10468, "fields": {"orig_filename": "Levay-Kistelek_Lajos_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 164", "author": "", "orig_id": 1411631}}, {"model": "metainfo.source", "pk": 10469, "fields": {"orig_filename": "Levay_Imre_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162f.", "author": "", "orig_id": 1411626}}, {"model": "metainfo.source", "pk": 10470, "fields": {"orig_filename": "Levay_Jozsef_1825_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411627}}, {"model": "metainfo.source", "pk": 10471, "fields": {"orig_filename": "Levay_Lajos_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411628}}, {"model": "metainfo.source", "pk": 10472, "fields": {"orig_filename": "Levay_Mihaly_1862_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411629}}, {"model": "metainfo.source", "pk": 10473, "fields": {"orig_filename": "Levec_Fran_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 164", "author": "", "orig_id": 1411632}}, {"model": "metainfo.source", "pk": 10474, "fields": {"orig_filename": "Levetzow_Karl-Michael_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411634}}, {"model": "metainfo.source", "pk": 10475, "fields": {"orig_filename": "Levi-Civita_Giacomo_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411705}}, {"model": "metainfo.source", "pk": 10476, "fields": {"orig_filename": "Levicnik_Jernej_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411706}}, {"model": "metainfo.source", "pk": 10477, "fields": {"orig_filename": "Levicnik_Jozef_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411707}}, {"model": "metainfo.source", "pk": 10478, "fields": {"orig_filename": "Levitschnigg-Glomberg_Heinrich_1810_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166f.", "author": "", "orig_id": 1411708}}, {"model": "metainfo.source", "pk": 10479, "fields": {"orig_filename": "Levi_Angelo_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411635}}, {"model": "metainfo.source", "pk": 10480, "fields": {"orig_filename": "Levi_Moise-Giuseppe_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411703}}, {"model": "metainfo.source", "pk": 10481, "fields": {"orig_filename": "Levi_Samuele__1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165f.", "author": "", "orig_id": 1411704}}, {"model": "metainfo.source", "pk": 10482, "fields": {"orig_filename": "Levnaic-Iwanski-Iwanina_Nikolaus_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 167", "author": "", "orig_id": 1411709}}, {"model": "metainfo.source", "pk": 10483, "fields": {"orig_filename": "Levstik_Fran_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 167f.", "author": "", "orig_id": 1411710}}, {"model": "metainfo.source", "pk": 10484, "fields": {"orig_filename": "Levyckyj_Josyp_1801_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411713}}, {"model": "metainfo.source", "pk": 10485, "fields": {"orig_filename": "Levyckyj_Volodymyr_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411714}}, {"model": "metainfo.source", "pk": 10486, "fields": {"orig_filename": "Levy_Louis-Eduard_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 168", "author": "", "orig_id": 1411711}}, {"model": "metainfo.source", "pk": 10487, "fields": {"orig_filename": "Levy_Vaclav_1820_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 168f.", "author": "", "orig_id": 1411712}}, {"model": "metainfo.source", "pk": 10488, "fields": {"orig_filename": "Lewandowski_Rudolf_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411715}}, {"model": "metainfo.source", "pk": 10489, "fields": {"orig_filename": "Lewandowski_Stanislaus-Roman_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169f.", "author": "", "orig_id": 1411716}}, {"model": "metainfo.source", "pk": 10490, "fields": {"orig_filename": "Lewartow-Lewartowski_Heinrich_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411717}}, {"model": "metainfo.source", "pk": 10491, "fields": {"orig_filename": "Lewicki_Anatol_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411718}}, {"model": "metainfo.source", "pk": 10492, "fields": {"orig_filename": "Lewicki_Antoni_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411719}}, {"model": "metainfo.source", "pk": 10493, "fields": {"orig_filename": "Lewicki_Leonidas_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411720}}, {"model": "metainfo.source", "pk": 10494, "fields": {"orig_filename": "Lewicki_Michael_1774_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411721}}, {"model": "metainfo.source", "pk": 10495, "fields": {"orig_filename": "Lewinger_Ernst_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171f.", "author": "", "orig_id": 1411723}}, {"model": "metainfo.source", "pk": 10496, "fields": {"orig_filename": "Lewinsky-Precheisen_Olga_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173", "author": "", "orig_id": 1411794}}, {"model": "metainfo.source", "pk": 10497, "fields": {"orig_filename": "Lewinsky_Josef_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 172", "author": "", "orig_id": 1411724}}, {"model": "metainfo.source", "pk": 10498, "fields": {"orig_filename": "Lewinsky_Josef_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 172f.", "author": "", "orig_id": 1411793}}, {"model": "metainfo.source", "pk": 10499, "fields": {"orig_filename": "Lewin_Jakab_1828_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411722}}, {"model": "metainfo.source", "pk": 10500, "fields": {"orig_filename": "Lewohl_Karl_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173", "author": "", "orig_id": 1411795}}, {"model": "metainfo.source", "pk": 10501, "fields": {"orig_filename": "Lewy_Eduard-Constantin_1796_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411797}}, {"model": "metainfo.source", "pk": 10502, "fields": {"orig_filename": "Lewy_Eduard_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173f.", "author": "", "orig_id": 1411796}}, {"model": "metainfo.source", "pk": 10503, "fields": {"orig_filename": "Lewy_Gustav_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411798}}, {"model": "metainfo.source", "pk": 10504, "fields": {"orig_filename": "Lexa-Aehrenthal_Johann-Bapt_1777_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175", "author": "", "orig_id": 1411803}}, {"model": "metainfo.source", "pk": 10505, "fields": {"orig_filename": "Lexa_Josef_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174f.", "author": "", "orig_id": 1411801}}, {"model": "metainfo.source", "pk": 10506, "fields": {"orig_filename": "Lexer_Matthias_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175", "author": "", "orig_id": 1411804}}, {"model": "metainfo.source", "pk": 10507, "fields": {"orig_filename": "Lex_Franz_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411799}}, {"model": "metainfo.source", "pk": 10508, "fields": {"orig_filename": "Lex_Gabriel_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411800}}, {"model": "metainfo.source", "pk": 10509, "fields": {"orig_filename": "Leybold_Eduard-Friedrich_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411806}}, {"model": "metainfo.source", "pk": 10510, "fields": {"orig_filename": "Leybold_Johann-Friedrich_1755_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411808}}, {"model": "metainfo.source", "pk": 10511, "fields": {"orig_filename": "Leybold_Karl-Jakob-Theodor_1786_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176f.", "author": "", "orig_id": 1411809}}, {"model": "metainfo.source", "pk": 10512, "fields": {"orig_filename": "Leybold_Rudolf-Moritz_1806_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177", "author": "", "orig_id": 1411810}}, {"model": "metainfo.source", "pk": 10513, "fields": {"orig_filename": "Leydolt_Franz_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177", "author": "", "orig_id": 1411811}}, {"model": "metainfo.source", "pk": 10514, "fields": {"orig_filename": "Leykam_Anatol_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177f.", "author": "", "orig_id": 1411812}}, {"model": "metainfo.source", "pk": 10515, "fields": {"orig_filename": "Leykam_Andreas_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411813}}, {"model": "metainfo.source", "pk": 10516, "fields": {"orig_filename": "Leyrer_Rudolf_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411814}}, {"model": "metainfo.source", "pk": 10517, "fields": {"orig_filename": "Ley_Erhard_1753_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175f.", "author": "", "orig_id": 1411805}}, {"model": "metainfo.source", "pk": 10518, "fields": {"orig_filename": "Lhota_Antonin_1812_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411815}}, {"model": "metainfo.source", "pk": 10519, "fields": {"orig_filename": "Lhota_Jan-Nep_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179", "author": "", "orig_id": 1411816}}, {"model": "metainfo.source", "pk": 10520, "fields": {"orig_filename": "Lhotsky_Bohuslav_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179", "author": "", "orig_id": 1411817}}, {"model": "metainfo.source", "pk": 10521, "fields": {"orig_filename": "Lhotsky_Jan_1800_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179f.", "author": "", "orig_id": 1411818}}, {"model": "metainfo.source", "pk": 10522, "fields": {"orig_filename": "Lhotzky_Alphons_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411890}}, {"model": "metainfo.source", "pk": 10523, "fields": {"orig_filename": "Libansky_Josef_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411891}}, {"model": "metainfo.source", "pk": 10524, "fields": {"orig_filename": "Libay_Karoly-Lajos_1816_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411892}}, {"model": "metainfo.source", "pk": 10525, "fields": {"orig_filename": "Libay_Samuel_1782_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180f.", "author": "", "orig_id": 1411893}}, {"model": "metainfo.source", "pk": 10526, "fields": {"orig_filename": "Libenyi_Janos_1831_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411894}}, {"model": "metainfo.source", "pk": 10527, "fields": {"orig_filename": "Liberali_Giulio-Angelo_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411896}}, {"model": "metainfo.source", "pk": 10528, "fields": {"orig_filename": "Libera_Anna-Barbara_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411895}}, {"model": "metainfo.source", "pk": 10529, "fields": {"orig_filename": "Libesny_Kurt_1892_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411897}}, {"model": "metainfo.source", "pk": 10530, "fields": {"orig_filename": "Libitzky_Leopold_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411898}}, {"model": "metainfo.source", "pk": 10531, "fields": {"orig_filename": "Lichard_Daniel_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411899}}, {"model": "metainfo.source", "pk": 10532, "fields": {"orig_filename": "Lichard_Milan_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411900}}, {"model": "metainfo.source", "pk": 10533, "fields": {"orig_filename": "Lichner_Pal_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182f.", "author": "", "orig_id": 1411901}}, {"model": "metainfo.source", "pk": 10534, "fields": {"orig_filename": "Lichnowsky_Eduard-Maria_1789_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183", "author": "", "orig_id": 1411903}}, {"model": "metainfo.source", "pk": 10535, "fields": {"orig_filename": "Lichnowsky_Wilhelm_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183", "author": "", "orig_id": 1411904}}, {"model": "metainfo.source", "pk": 10536, "fields": {"orig_filename": "Lichtblau_Stephan_1753_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411909}}, {"model": "metainfo.source", "pk": 10537, "fields": {"orig_filename": "Lichtenberg_Emil_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411910}}, {"model": "metainfo.source", "pk": 10538, "fields": {"orig_filename": "Lichtenberg_Reinhold_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411985}}, {"model": "metainfo.source", "pk": 10539, "fields": {"orig_filename": "Lichtenecker_Karl_1882_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185f.", "author": "", "orig_id": 1411986}}, {"model": "metainfo.source", "pk": 10540, "fields": {"orig_filename": "Lichtenecker_Norbert_1897_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411987}}, {"model": "metainfo.source", "pk": 10541, "fields": {"orig_filename": "Lichtenegger_Sepp_1909_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411988}}, {"model": "metainfo.source", "pk": 10542, "fields": {"orig_filename": "Lichtenheld_Adolf_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411989}}, {"model": "metainfo.source", "pk": 10543, "fields": {"orig_filename": "Lemach_Anton-Karl_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122f.", "author": "", "orig_id": 1412508}}, {"model": "metainfo.source", "pk": 10544, "fields": {"orig_filename": "Lemaic-Pasan-Brdo_Georg_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123", "author": "", "orig_id": 1412509}}, {"model": "metainfo.source", "pk": 10545, "fields": {"orig_filename": "Lemayer_Karl_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123", "author": "", "orig_id": 1412510}}, {"model": "metainfo.source", "pk": 10546, "fields": {"orig_filename": "Lemberger_Heinrich_1813_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124", "author": "", "orig_id": 1412512}}, {"model": "metainfo.source", "pk": 10547, "fields": {"orig_filename": "Lemberg_Eduard_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123f.", "author": "", "orig_id": 1412511}}, {"model": "metainfo.source", "pk": 10548, "fields": {"orig_filename": "Lemmermayer_Fritz_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124", "author": "", "orig_id": 1412513}}, {"model": "metainfo.source", "pk": 10549, "fields": {"orig_filename": "Lemoch_Ignaz_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124f.", "author": "", "orig_id": 1412514}}, {"model": "metainfo.source", "pk": 10550, "fields": {"orig_filename": "Lemoch_Johann-Nep_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412515}}, {"model": "metainfo.source", "pk": 10551, "fields": {"orig_filename": "Lemoch_Josef_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412516}}, {"model": "metainfo.source", "pk": 10552, "fields": {"orig_filename": "Lemoch_Vincenz_1792_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412517}}, {"model": "metainfo.source", "pk": 10553, "fields": {"orig_filename": "Lemonnier_Anton_1819_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412518}}, {"model": "metainfo.source", "pk": 10554, "fields": {"orig_filename": "Lemonnier_Theodor_1826_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412519}}, {"model": "metainfo.source", "pk": 10555, "fields": {"orig_filename": "Lempicki_Zygmunt_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412520}}, {"model": "metainfo.source", "pk": 10556, "fields": {"orig_filename": "Lenarcic_Andrija_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412521}}, {"model": "metainfo.source", "pk": 10557, "fields": {"orig_filename": "Lenard_Philipp-Eduard-Anton_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 127", "author": "", "orig_id": 1412522}}, {"model": "metainfo.source", "pk": 10558, "fields": {"orig_filename": "Lencses_Antal-Jozsef_1797_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 127f.", "author": "", "orig_id": 1412594}}, {"model": "metainfo.source", "pk": 10559, "fields": {"orig_filename": "Lencz_Oedoen_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128", "author": "", "orig_id": 1412595}}, {"model": "metainfo.source", "pk": 10560, "fields": {"orig_filename": "Lendecke_Gustav_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128", "author": "", "orig_id": 1412596}}, {"model": "metainfo.source", "pk": 10561, "fields": {"orig_filename": "Lendlmayer-Lendenfeld_Robert_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 129", "author": "", "orig_id": 1412598}}, {"model": "metainfo.source", "pk": 10562, "fields": {"orig_filename": "Lendl_Adolf_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128f.", "author": "", "orig_id": 1412597}}, {"model": "metainfo.source", "pk": 10563, "fields": {"orig_filename": "Lendovsek_Josip_1854_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 129f.", "author": "", "orig_id": 1412599}}, {"model": "metainfo.source", "pk": 10564, "fields": {"orig_filename": "Lendovsek_Mihael_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130", "author": "", "orig_id": 1412600}}, {"model": "metainfo.source", "pk": 10565, "fields": {"orig_filename": "Lendvai_Erwin_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130", "author": "", "orig_id": 1412601}}, {"model": "metainfo.source", "pk": 10566, "fields": {"orig_filename": "Lendvay-Fancsy_Ilka_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412606}}, {"model": "metainfo.source", "pk": 10567, "fields": {"orig_filename": "Lendvay-Hivatal_Aniko_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412607}}, {"model": "metainfo.source", "pk": 10568, "fields": {"orig_filename": "Lendvay_Benoe_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130f.", "author": "", "orig_id": 1412602}}, {"model": "metainfo.source", "pk": 10569, "fields": {"orig_filename": "Lendvay_Marton_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412603}}, {"model": "metainfo.source", "pk": 10570, "fields": {"orig_filename": "Lendvay_Marton_1830_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412605}}, {"model": "metainfo.source", "pk": 10571, "fields": {"orig_filename": "Lenecek_Ottokar_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131f.", "author": "", "orig_id": 1412608}}, {"model": "metainfo.source", "pk": 10572, "fields": {"orig_filename": "Lener_Josef_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412609}}, {"model": "metainfo.source", "pk": 10573, "fields": {"orig_filename": "Lener_Justinian_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412610}}, {"model": "metainfo.source", "pk": 10574, "fields": {"orig_filename": "Lengnick_Artur_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412611}}, {"model": "metainfo.source", "pk": 10575, "fields": {"orig_filename": "Lengsteiner_Josef_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412612}}, {"model": "metainfo.source", "pk": 10576, "fields": {"orig_filename": "Lengyel-Ebesfalva_Bela_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133", "author": "", "orig_id": 1412614}}, {"model": "metainfo.source", "pk": 10577, "fields": {"orig_filename": "Lengyel-Szakallosfalva_Nikolaus_1802_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133", "author": "", "orig_id": 1412615}}, {"model": "metainfo.source", "pk": 10578, "fields": {"orig_filename": "Lengyel_Jozsef_1770_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132f.", "author": "", "orig_id": 1412613}}, {"model": "metainfo.source", "pk": 10579, "fields": {"orig_filename": "Lenhard_Johann_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133f.", "author": "", "orig_id": 1412682}}, {"model": "metainfo.source", "pk": 10580, "fields": {"orig_filename": "Lenhossek_Jozsef_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 134", "author": "", "orig_id": 1412684}}, {"model": "metainfo.source", "pk": 10581, "fields": {"orig_filename": "Lenhossek_Mihaly_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 134", "author": "", "orig_id": 1412685}}, {"model": "metainfo.source", "pk": 10582, "fields": {"orig_filename": "Lenisch_Johanna_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412687}}, {"model": "metainfo.source", "pk": 10583, "fields": {"orig_filename": "Lenk-Burgheim-Gansheim_Heinrich_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412689}}, {"model": "metainfo.source", "pk": 10584, "fields": {"orig_filename": "Lenk-Treuenfeld_Ignaz_1766_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135f.", "author": "", "orig_id": 1412690}}, {"model": "metainfo.source", "pk": 10585, "fields": {"orig_filename": "Lenk-Wolfsberg_Rudolf_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136", "author": "", "orig_id": 1412691}}, {"model": "metainfo.source", "pk": 10586, "fields": {"orig_filename": "Lenk-Wolfsberg_Wilhelm_1809_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136", "author": "", "orig_id": 1412692}}, {"model": "metainfo.source", "pk": 10587, "fields": {"orig_filename": "Lenkei_Samuel_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136f.", "author": "", "orig_id": 1412693}}, {"model": "metainfo.source", "pk": 10588, "fields": {"orig_filename": "Lenkey_Janos_1807_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137", "author": "", "orig_id": 1412694}}, {"model": "metainfo.source", "pk": 10589, "fields": {"orig_filename": "Lenk_Friedrich-Andreas_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412688}}, {"model": "metainfo.source", "pk": 10590, "fields": {"orig_filename": "Lenoble-Edlersberg_Josef_1749_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137", "author": "", "orig_id": 1412695}}, {"model": "metainfo.source", "pk": 10591, "fields": {"orig_filename": "Lentl_Johann-Nep_1756_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137f.", "author": "", "orig_id": 1412696}}, {"model": "metainfo.source", "pk": 10592, "fields": {"orig_filename": "Lentner_Ferdinand_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 138", "author": "", "orig_id": 1412697}}, {"model": "metainfo.source", "pk": 10593, "fields": {"orig_filename": "Lentner_Josef-Friedrich_1814_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 138", "author": "", "orig_id": 1412698}}, {"model": "metainfo.source", "pk": 10594, "fields": {"orig_filename": "Lentulaj_Mirko_1774_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1412699}}, {"model": "metainfo.source", "pk": 10595, "fields": {"orig_filename": "Lenz_Alfred_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1416077}}, {"model": "metainfo.source", "pk": 10596, "fields": {"orig_filename": "Lenz_Antonin_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1412700}}, {"model": "metainfo.source", "pk": 10597, "fields": {"orig_filename": "Lenz_Maximilian_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139f.", "author": "", "orig_id": 1412701}}, {"model": "metainfo.source", "pk": 10598, "fields": {"orig_filename": "Lenz_Oskar_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 140", "author": "", "orig_id": 1412702}}, {"model": "metainfo.source", "pk": 10599, "fields": {"orig_filename": "Leobner_Heinrich_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412704}}, {"model": "metainfo.source", "pk": 10600, "fields": {"orig_filename": "Leonardi_Giuseppe_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412786}}, {"model": "metainfo.source", "pk": 10601, "fields": {"orig_filename": "Leonardi_Pietro_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412787}}, {"model": "metainfo.source", "pk": 10602, "fields": {"orig_filename": "Leonhardt_Andreas_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144", "author": "", "orig_id": 1412790}}, {"model": "metainfo.source", "pk": 10603, "fields": {"orig_filename": "Leonhardt_Gustav_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144", "author": "", "orig_id": 1412791}}, {"model": "metainfo.source", "pk": 10604, "fields": {"orig_filename": "Leonhardt_Johann_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144f.", "author": "", "orig_id": 1412792}}, {"model": "metainfo.source", "pk": 10605, "fields": {"orig_filename": "Leonhard_Daniel-Joseph_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412788}}, {"model": "metainfo.source", "pk": 10606, "fields": {"orig_filename": "Leonhard_Johann-Michael_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143f.", "author": "", "orig_id": 1412789}}, {"model": "metainfo.source", "pk": 10607, "fields": {"orig_filename": "Leon_Friedrich-Vinzenz_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412705}}, {"model": "metainfo.source", "pk": 10608, "fields": {"orig_filename": "Leon_Gottlieb_1757_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412779}}, {"model": "metainfo.source", "pk": 10609, "fields": {"orig_filename": "Leon_Gustav_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141f.", "author": "", "orig_id": 1412780}}, {"model": "metainfo.source", "pk": 10610, "fields": {"orig_filename": "Leon_Johann-Barthlmae_1802_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142", "author": "", "orig_id": 1412781}}, {"model": "metainfo.source", "pk": 10611, "fields": {"orig_filename": "Leon_Raimund_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142", "author": "", "orig_id": 1412782}}, {"model": "metainfo.source", "pk": 10612, "fields": {"orig_filename": "Leopold-Salvator___1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 146", "author": "", "orig_id": 1412795}}, {"model": "metainfo.source", "pk": 10613, "fields": {"orig_filename": "Leopolder_Johann_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 146f.", "author": "", "orig_id": 1412796}}, {"model": "metainfo.source", "pk": 10614, "fields": {"orig_filename": "Leopoldine__1797_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 147", "author": "", "orig_id": 1412797}}, {"model": "metainfo.source", "pk": 10615, "fields": {"orig_filename": "Leopold__1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 145", "author": "", "orig_id": 1412793}}, {"model": "metainfo.source", "pk": 10616, "fields": {"orig_filename": "Leopold__1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 145f.", "author": "", "orig_id": 1412794}}, {"model": "metainfo.source", "pk": 10617, "fields": {"orig_filename": "Leoster_Leopold-Heinrich_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 147f.", "author": "", "orig_id": 1412874}}, {"model": "metainfo.source", "pk": 10618, "fields": {"orig_filename": "Leo_Juliusz_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 140f.", "author": "", "orig_id": 1412703}}, {"model": "metainfo.source", "pk": 10619, "fields": {"orig_filename": "Lepar_Frantisek_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148", "author": "", "orig_id": 1412875}}, {"model": "metainfo.source", "pk": 10620, "fields": {"orig_filename": "Lepkowski_Jozef_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148", "author": "", "orig_id": 1412876}}, {"model": "metainfo.source", "pk": 10621, "fields": {"orig_filename": "Lepkyj_Bohdan-Sylvestrovyc_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148f.", "author": "", "orig_id": 1412877}}, {"model": "metainfo.source", "pk": 10622, "fields": {"orig_filename": "Leppin_Paul_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412878}}, {"model": "metainfo.source", "pk": 10623, "fields": {"orig_filename": "Lepsenyi_Miklos-Jozsef_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412879}}, {"model": "metainfo.source", "pk": 10624, "fields": {"orig_filename": "Lepszy_Leonard_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412880}}, {"model": "metainfo.source", "pk": 10625, "fields": {"orig_filename": "Lepuschuetz_Johann_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412881}}, {"model": "metainfo.source", "pk": 10626, "fields": {"orig_filename": "Lercher_Ludwig_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 152f.", "author": "", "orig_id": 1412889}}, {"model": "metainfo.source", "pk": 10627, "fields": {"orig_filename": "Lerch_Egon_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412882}}, {"model": "metainfo.source", "pk": 10628, "fields": {"orig_filename": "Lerch_Friedrich_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412883}}, {"model": "metainfo.source", "pk": 10629, "fields": {"orig_filename": "Lerch_Johann-Alexander_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150f.", "author": "", "orig_id": 1412884}}, {"model": "metainfo.source", "pk": 10630, "fields": {"orig_filename": "Lerch_Joseph-Udo_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151", "author": "", "orig_id": 1412885}}, {"model": "metainfo.source", "pk": 10631, "fields": {"orig_filename": "Lerch_Matyas_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151", "author": "", "orig_id": 1412886}}, {"model": "metainfo.source", "pk": 10632, "fields": {"orig_filename": "Lerch_Theodor_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151f.", "author": "", "orig_id": 1412887}}, {"model": "metainfo.source", "pk": 10633, "fields": {"orig_filename": "Lerch_Wenzel_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 152", "author": "", "orig_id": 1412888}}, {"model": "metainfo.source", "pk": 10634, "fields": {"orig_filename": "Lergetporer_Alois_1786_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153", "author": "", "orig_id": 1412963}}, {"model": "metainfo.source", "pk": 10635, "fields": {"orig_filename": "Lergetporer_Peter-Nikolaus_1749_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153", "author": "", "orig_id": 1412964}}, {"model": "metainfo.source", "pk": 10636, "fields": {"orig_filename": "Lerman_Dragutin_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153f.", "author": "", "orig_id": 1412965}}, {"model": "metainfo.source", "pk": 10637, "fields": {"orig_filename": "Leschanowsky_Lothar_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412966}}, {"model": "metainfo.source", "pk": 10638, "fields": {"orig_filename": "Leschen_Wilhelm_1781_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412967}}, {"model": "metainfo.source", "pk": 10639, "fields": {"orig_filename": "Leschetitzky_Theodor_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412968}}, {"model": "metainfo.source", "pk": 10640, "fields": {"orig_filename": "Leschinger_Karl-Konrad_1866_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412969}}, {"model": "metainfo.source", "pk": 10641, "fields": {"orig_filename": "Leser_Gratian_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412971}}, {"model": "metainfo.source", "pk": 10642, "fields": {"orig_filename": "Leser_Ludwig_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154f.", "author": "", "orig_id": 1412970}}, {"model": "metainfo.source", "pk": 10643, "fields": {"orig_filename": "Ledochowski_Mieczyslaw_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87f.", "author": "", "orig_id": 1413571}}, {"model": "metainfo.source", "pk": 10644, "fields": {"orig_filename": "Ledochowski_Timotheus_1792_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 88", "author": "", "orig_id": 1413572}}, {"model": "metainfo.source", "pk": 10645, "fields": {"orig_filename": "Ledochowski_Wladimir_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 88f.", "author": "", "orig_id": 1413573}}, {"model": "metainfo.source", "pk": 10646, "fields": {"orig_filename": "Leeb_Josef-Anton_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89", "author": "", "orig_id": 1413574}}, {"model": "metainfo.source", "pk": 10647, "fields": {"orig_filename": "Leeb_Willibald_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89", "author": "", "orig_id": 1413575}}, {"model": "metainfo.source", "pk": 10648, "fields": {"orig_filename": "Leeder_Karl_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89f.", "author": "", "orig_id": 1413576}}, {"model": "metainfo.source", "pk": 10649, "fields": {"orig_filename": "Lefler_Franz_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413577}}, {"model": "metainfo.source", "pk": 10650, "fields": {"orig_filename": "Legay-Lierfels_Albert_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90f.", "author": "", "orig_id": 1413579}}, {"model": "metainfo.source", "pk": 10651, "fields": {"orig_filename": "Legeditsch_Ignaz_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91", "author": "", "orig_id": 1413580}}, {"model": "metainfo.source", "pk": 10652, "fields": {"orig_filename": "Leger_Karel_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91", "author": "", "orig_id": 1413581}}, {"model": "metainfo.source", "pk": 10653, "fields": {"orig_filename": "Legler_Friedrich_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91f.", "author": "", "orig_id": 1413582}}, {"model": "metainfo.source", "pk": 10654, "fields": {"orig_filename": "Legnani_Rinaldo-Luigi_1790_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413583}}, {"model": "metainfo.source", "pk": 10655, "fields": {"orig_filename": "Legnazzi-Dossi_Alessandro_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413585}}, {"model": "metainfo.source", "pk": 10656, "fields": {"orig_filename": "Legnazzi_Enrico-Nestore_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413584}}, {"model": "metainfo.source", "pk": 10657, "fields": {"orig_filename": "Legrady_Karoly_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92f.", "author": "", "orig_id": 1413586}}, {"model": "metainfo.source", "pk": 10658, "fields": {"orig_filename": "Lehar_Franz_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413587}}, {"model": "metainfo.source", "pk": 10659, "fields": {"orig_filename": "Lehar_Franz_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413588}}, {"model": "metainfo.source", "pk": 10660, "fields": {"orig_filename": "Lehmann-Haupt_Carl_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 96f.", "author": "", "orig_id": 1413665}}, {"model": "metainfo.source", "pk": 10661, "fields": {"orig_filename": "Lehmann_Adolf_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413589}}, {"model": "metainfo.source", "pk": 10662, "fields": {"orig_filename": "Lehmann_Franz-Kaspar_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413591}}, {"model": "metainfo.source", "pk": 10663, "fields": {"orig_filename": "Lehmann_Georg_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413590}}, {"model": "metainfo.source", "pk": 10664, "fields": {"orig_filename": "Lehmann_Guido_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413592}}, {"model": "metainfo.source", "pk": 10665, "fields": {"orig_filename": "Lehmann_Heinrich_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413660}}, {"model": "metainfo.source", "pk": 10666, "fields": {"orig_filename": "Lehmann_Josef_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95", "author": "", "orig_id": 1413661}}, {"model": "metainfo.source", "pk": 10667, "fields": {"orig_filename": "Lehmann_Lilli_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95", "author": "", "orig_id": 1413662}}, {"model": "metainfo.source", "pk": 10668, "fields": {"orig_filename": "Lehmann_Moritz_1819_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95f.", "author": "", "orig_id": 1413663}}, {"model": "metainfo.source", "pk": 10669, "fields": {"orig_filename": "Lehmann_Otto_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 96", "author": "", "orig_id": 1413664}}, {"model": "metainfo.source", "pk": 10670, "fields": {"orig_filename": "Lehne-Lehnsheim_Gustav_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97", "author": "", "orig_id": 1413666}}, {"model": "metainfo.source", "pk": 10671, "fields": {"orig_filename": "Lehnert_Joseph_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413674}}, {"model": "metainfo.source", "pk": 10672, "fields": {"orig_filename": "Lehner_Elise_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97", "author": "", "orig_id": 1413667}}, {"model": "metainfo.source", "pk": 10673, "fields": {"orig_filename": "Lehner_Ferdinand_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97f.", "author": "", "orig_id": 1413668}}, {"model": "metainfo.source", "pk": 10674, "fields": {"orig_filename": "Lehner_Franz-De-Paula_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413669}}, {"model": "metainfo.source", "pk": 10675, "fields": {"orig_filename": "Lehner_Franz-Xaver_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413670}}, {"model": "metainfo.source", "pk": 10676, "fields": {"orig_filename": "Lehner_Josef_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413671}}, {"model": "metainfo.source", "pk": 10677, "fields": {"orig_filename": "Lehner_Rudolf-Julius_1883_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413673}}, {"model": "metainfo.source", "pk": 10678, "fields": {"orig_filename": "Lehner_Rudolf_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98f.", "author": "", "orig_id": 1413672}}, {"model": "metainfo.source", "pk": 10679, "fields": {"orig_filename": "Lehoczky_Tivadar_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413675}}, {"model": "metainfo.source", "pk": 10680, "fields": {"orig_filename": "Lehr_Albert_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413676}}, {"model": "metainfo.source", "pk": 10681, "fields": {"orig_filename": "Lehr_Zsigmond_1841_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413677}}, {"model": "metainfo.source", "pk": 10682, "fields": {"orig_filename": "Leibenfrost_Franz-Heinrich_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100f.", "author": "", "orig_id": 1413679}}, {"model": "metainfo.source", "pk": 10683, "fields": {"orig_filename": "Leibenfrost_Franz_1790_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413678}}, {"model": "metainfo.source", "pk": 10684, "fields": {"orig_filename": "Leibenfrost_Hermann_1844_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 101", "author": "", "orig_id": 1413680}}, {"model": "metainfo.source", "pk": 10685, "fields": {"orig_filename": "Leibitzer_Johann_1763_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 101", "author": "", "orig_id": 1413681}}, {"model": "metainfo.source", "pk": 10686, "fields": {"orig_filename": "Leicht_Ferdinand_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1416076}}, {"model": "metainfo.source", "pk": 10687, "fields": {"orig_filename": "Leicht_Hans_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1413682}}, {"model": "metainfo.source", "pk": 10688, "fields": {"orig_filename": "Leicht_Michele_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1413683}}, {"model": "metainfo.source", "pk": 10689, "fields": {"orig_filename": "Leicht_Wilhelm_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102f.", "author": "", "orig_id": 1413684}}, {"model": "metainfo.source", "pk": 10690, "fields": {"orig_filename": "Leidenfrost_Robert_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413750}}, {"model": "metainfo.source", "pk": 10691, "fields": {"orig_filename": "Leidesdorfer-Neuwall_Markus_1753_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105", "author": "", "orig_id": 1413756}}, {"model": "metainfo.source", "pk": 10692, "fields": {"orig_filename": "Leidesdorf_Franz-Emil_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104", "author": "", "orig_id": 1413752}}, {"model": "metainfo.source", "pk": 10693, "fields": {"orig_filename": "Leidesdorf_Leopold-Franz_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104", "author": "", "orig_id": 1413753}}, {"model": "metainfo.source", "pk": 10694, "fields": {"orig_filename": "Leidesdorf_Maximilian-Joseph_1787_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105", "author": "", "orig_id": 1413755}}, {"model": "metainfo.source", "pk": 10695, "fields": {"orig_filename": "Leidesdorf_Maximilian_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104f.", "author": "", "orig_id": 1413754}}, {"model": "metainfo.source", "pk": 10696, "fields": {"orig_filename": "Leidler_Rudolf_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 106", "author": "", "orig_id": 1413758}}, {"model": "metainfo.source", "pk": 10697, "fields": {"orig_filename": "Leidl_Karl_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105f.", "author": "", "orig_id": 1413757}}, {"model": "metainfo.source", "pk": 10698, "fields": {"orig_filename": "Leifer_Franz_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 106", "author": "", "orig_id": 1413759}}, {"model": "metainfo.source", "pk": 10699, "fields": {"orig_filename": "Leifer_Therese_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 107", "author": "", "orig_id": 1413760}}, {"model": "metainfo.source", "pk": 10700, "fields": {"orig_filename": "Leifhelm_Hans_1891_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 107f.", "author": "", "orig_id": 1413761}}, {"model": "metainfo.source", "pk": 10701, "fields": {"orig_filename": "Leigheb_Giovanni_1812_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413763}}, {"model": "metainfo.source", "pk": 10702, "fields": {"orig_filename": "Leimdoerfer_David_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413764}}, {"model": "metainfo.source", "pk": 10703, "fields": {"orig_filename": "Leiner_Carl_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413765}}, {"model": "metainfo.source", "pk": 10704, "fields": {"orig_filename": "Leiningen-Westerburg_Karl_1819_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108f.", "author": "", "orig_id": 1413766}}, {"model": "metainfo.source", "pk": 10705, "fields": {"orig_filename": "Leinner_Anton_1813_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413767}}, {"model": "metainfo.source", "pk": 10706, "fields": {"orig_filename": "Leipziger_Vilmos_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413768}}, {"model": "metainfo.source", "pk": 10707, "fields": {"orig_filename": "Leis-Paschbach_Anton_1777_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413769}}, {"model": "metainfo.source", "pk": 10708, "fields": {"orig_filename": "Leisching_Eduard_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109f.", "author": "", "orig_id": 1413770}}, {"model": "metainfo.source", "pk": 10709, "fields": {"orig_filename": "Leisching_Julius_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110", "author": "", "orig_id": 1413771}}, {"model": "metainfo.source", "pk": 10710, "fields": {"orig_filename": "Leisek_Friedrich_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110", "author": "", "orig_id": 1413772}}, {"model": "metainfo.source", "pk": 10711, "fields": {"orig_filename": "Leisek_Georg_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110f.", "author": "", "orig_id": 1413841}}, {"model": "metainfo.source", "pk": 10712, "fields": {"orig_filename": "Leiss_Hans_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 111", "author": "", "orig_id": 1413842}}, {"model": "metainfo.source", "pk": 10713, "fields": {"orig_filename": "Leistler_Carl_1805_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 111f.", "author": "", "orig_id": 1413843}}, {"model": "metainfo.source", "pk": 10714, "fields": {"orig_filename": "Leitenberger_Friedrich-Franz-Josef_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113", "author": "", "orig_id": 1413846}}, {"model": "metainfo.source", "pk": 10715, "fields": {"orig_filename": "Leitenberger_Friedrich_1801_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 112", "author": "", "orig_id": 1413845}}, {"model": "metainfo.source", "pk": 10716, "fields": {"orig_filename": "Leitenberger_Friedrich_1862_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113", "author": "", "orig_id": 1416075}}, {"model": "metainfo.source", "pk": 10717, "fields": {"orig_filename": "Leitenberger_Karl_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113f.", "author": "", "orig_id": 1413847}}, {"model": "metainfo.source", "pk": 10718, "fields": {"orig_filename": "Leiter-Lososina_Anton_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413849}}, {"model": "metainfo.source", "pk": 10719, "fields": {"orig_filename": "Leitermayer_Alexander_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413850}}, {"model": "metainfo.source", "pk": 10720, "fields": {"orig_filename": "Leiter_Josef_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413848}}, {"model": "metainfo.source", "pk": 10721, "fields": {"orig_filename": "Leitgeb_Hans_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413851}}, {"model": "metainfo.source", "pk": 10722, "fields": {"orig_filename": "Leitgeb_Lorenz_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 115", "author": "", "orig_id": 1413853}}, {"model": "metainfo.source", "pk": 10723, "fields": {"orig_filename": "Leithe_Friedrich_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 115", "author": "", "orig_id": 1413854}}, {"model": "metainfo.source", "pk": 10724, "fields": {"orig_filename": "Leithner_Eduard_1815_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116", "author": "", "orig_id": 1413855}}, {"model": "metainfo.source", "pk": 10725, "fields": {"orig_filename": "Leithner_Ernst_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116", "author": "", "orig_id": 1413856}}, {"model": "metainfo.source", "pk": 10726, "fields": {"orig_filename": "Leithner_Hermann_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116f.", "author": "", "orig_id": 1413857}}, {"model": "metainfo.source", "pk": 10727, "fields": {"orig_filename": "Leithner_Josef_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413858}}, {"model": "metainfo.source", "pk": 10728, "fields": {"orig_filename": "Leitich_Albert_1869_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413859}}, {"model": "metainfo.source", "pk": 10729, "fields": {"orig_filename": "Leitner_Alois_1876_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413860}}, {"model": "metainfo.source", "pk": 10730, "fields": {"orig_filename": "Leitner_Emanuel_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117f.", "author": "", "orig_id": 1413861}}, {"model": "metainfo.source", "pk": 10731, "fields": {"orig_filename": "Leitner_Franz_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 118", "author": "", "orig_id": 1413862}}, {"model": "metainfo.source", "pk": 10732, "fields": {"orig_filename": "Leitner_Friedrich_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 118f.", "author": "", "orig_id": 1413863}}, {"model": "metainfo.source", "pk": 10733, "fields": {"orig_filename": "Leitner_Gottlieb-William_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119", "author": "", "orig_id": 1413864}}, {"model": "metainfo.source", "pk": 10734, "fields": {"orig_filename": "Leitner_Johann-Georg_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119", "author": "", "orig_id": 1412500}}, {"model": "metainfo.source", "pk": 10735, "fields": {"orig_filename": "Leitner_Karl-Gottfried_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119f.", "author": "", "orig_id": 1412501}}, {"model": "metainfo.source", "pk": 10736, "fields": {"orig_filename": "Leitner_Quirin_1834_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 120f.", "author": "", "orig_id": 1412502}}, {"model": "metainfo.source", "pk": 10737, "fields": {"orig_filename": "Leitz_Heinrich-Friedrich_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 121", "author": "", "orig_id": 1412503}}, {"model": "metainfo.source", "pk": 10738, "fields": {"orig_filename": "Leixner-Gruenberg_Othmar_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 121", "author": "", "orig_id": 1412504}}, {"model": "metainfo.source", "pk": 10739, "fields": {"orig_filename": "Leixner-Gruenberg_Otto_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412505}}, {"model": "metainfo.source", "pk": 10740, "fields": {"orig_filename": "Lejet_Nicolas_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412506}}, {"model": "metainfo.source", "pk": 10741, "fields": {"orig_filename": "Laxa_Wladimir_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54", "author": "", "orig_id": 1413049}}, {"model": "metainfo.source", "pk": 10742, "fields": {"orig_filename": "Layer_Leopold_1752_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54f.", "author": "", "orig_id": 1413051}}, {"model": "metainfo.source", "pk": 10743, "fields": {"orig_filename": "Layer_Max_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 55", "author": "", "orig_id": 1413052}}, {"model": "metainfo.source", "pk": 10744, "fields": {"orig_filename": "Layer_Michael_1796_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 55f.", "author": "", "orig_id": 1413053}}, {"model": "metainfo.source", "pk": 10745, "fields": {"orig_filename": "Lay_Srecko_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54", "author": "", "orig_id": 1413050}}, {"model": "metainfo.source", "pk": 10746, "fields": {"orig_filename": "Lazansky-Bukowa_Leopold_1808_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413125}}, {"model": "metainfo.source", "pk": 10747, "fields": {"orig_filename": "Lazansky-Bukowa_Procop_1771_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413126}}, {"model": "metainfo.source", "pk": 10748, "fields": {"orig_filename": "Lazar-Szarhegy_Gyoergy_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413133}}, {"model": "metainfo.source", "pk": 10749, "fields": {"orig_filename": "Lazar-Szarhegy_Jozsef_1782_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413134}}, {"model": "metainfo.source", "pk": 10750, "fields": {"orig_filename": "Lazar-Szarhegy_Kalman_1827_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413135}}, {"model": "metainfo.source", "pk": 10751, "fields": {"orig_filename": "Lazar-Szarhegy_Laszlo_1780_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413136}}, {"model": "metainfo.source", "pk": 10752, "fields": {"orig_filename": "Lazar-Szarhegy_Miklos_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413137}}, {"model": "metainfo.source", "pk": 10753, "fields": {"orig_filename": "Lazara_Francesco_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413138}}, {"model": "metainfo.source", "pk": 10754, "fields": {"orig_filename": "Lazara_Giovanni_1744_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413212}}, {"model": "metainfo.source", "pk": 10755, "fields": {"orig_filename": "Lazarich-Lindaro_Josef_1784_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413213}}, {"model": "metainfo.source", "pk": 10756, "fields": {"orig_filename": "Lazarini_Giacomo-Lodovico_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413214}}, {"model": "metainfo.source", "pk": 10757, "fields": {"orig_filename": "Lazarini_Josef-Philibert_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413215}}, {"model": "metainfo.source", "pk": 10758, "fields": {"orig_filename": "Lazari_Vincenzo_1823_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59f.", "author": "", "orig_id": 1413211}}, {"model": "metainfo.source", "pk": 10759, "fields": {"orig_filename": "Lazarski_Jozef_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413216}}, {"model": "metainfo.source", "pk": 10760, "fields": {"orig_filename": "Lazarski_Stanislaw_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413217}}, {"model": "metainfo.source", "pk": 10761, "fields": {"orig_filename": "Lazar_Auguste_1887_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436976}}, {"model": "metainfo.source", "pk": 10762, "fields": {"orig_filename": "Lazar_Erwin_1877_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413127}}, {"model": "metainfo.source", "pk": 10763, "fields": {"orig_filename": "Lazar_Gheorghe_1779_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413128}}, {"model": "metainfo.source", "pk": 10764, "fields": {"orig_filename": "Lazar_Gyula_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413129}}, {"model": "metainfo.source", "pk": 10765, "fields": {"orig_filename": "Lazar_Istvan_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413130}}, {"model": "metainfo.source", "pk": 10766, "fields": {"orig_filename": "Lazar_Maria_1895_1948.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1449979}}, {"model": "metainfo.source", "pk": 10767, "fields": {"orig_filename": "Lazar_Pal-L_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413131}}, {"model": "metainfo.source", "pk": 10768, "fields": {"orig_filename": "Lazar_Vilmos_1815_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57f.", "author": "", "orig_id": 1413132}}, {"model": "metainfo.source", "pk": 10769, "fields": {"orig_filename": "Lazzarini_Giuseppe-Edgardo_1832_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 62", "author": "", "orig_id": 1413220}}, {"model": "metainfo.source", "pk": 10770, "fields": {"orig_filename": "Lazzari_Francesco_1791_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413218}}, {"model": "metainfo.source", "pk": 10771, "fields": {"orig_filename": "Lazzari_Silvio_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61f.", "author": "", "orig_id": 1413219}}, {"model": "metainfo.source", "pk": 10772, "fields": {"orig_filename": "Lazzati_Antonio_1821_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 62f.", "author": "", "orig_id": 1413221}}, {"model": "metainfo.source", "pk": 10773, "fields": {"orig_filename": "Lebeau_Aurel_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63", "author": "", "orig_id": 1413223}}, {"model": "metainfo.source", "pk": 10774, "fields": {"orig_filename": "Lebeda_Anton-Vinzenz_1797_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63f.", "author": "", "orig_id": 1413224}}, {"model": "metainfo.source", "pk": 10775, "fields": {"orig_filename": "Lebeda_Anton-Vinzenz_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 64", "author": "", "orig_id": 1413225}}, {"model": "metainfo.source", "pk": 10776, "fields": {"orig_filename": "Lebeda_Ferdinand_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 64f.", "author": "", "orig_id": 1413226}}, {"model": "metainfo.source", "pk": 10777, "fields": {"orig_filename": "Lebeda_Otakar_1877_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65", "author": "", "orig_id": 1413227}}, {"model": "metainfo.source", "pk": 10778, "fields": {"orig_filename": "Lebenhart_Filip_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65", "author": "", "orig_id": 1413228}}, {"model": "metainfo.source", "pk": 10779, "fields": {"orig_filename": "Leberl_Hans_1871_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413230}}, {"model": "metainfo.source", "pk": 10780, "fields": {"orig_filename": "Leber_Max_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65f.", "author": "", "orig_id": 1413229}}, {"model": "metainfo.source", "pk": 10781, "fields": {"orig_filename": "Lebiedzki_Eduard_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413231}}, {"model": "metainfo.source", "pk": 10782, "fields": {"orig_filename": "Lebinger_Norbert_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413232}}, {"model": "metainfo.source", "pk": 10783, "fields": {"orig_filename": "Lebmacher_Carl_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66f.", "author": "", "orig_id": 1413301}}, {"model": "metainfo.source", "pk": 10784, "fields": {"orig_filename": "Lebouton_Alois_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 67", "author": "", "orig_id": 1413302}}, {"model": "metainfo.source", "pk": 10785, "fields": {"orig_filename": "Lebschy_Dominik_1799_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 67f.", "author": "", "orig_id": 1413303}}, {"model": "metainfo.source", "pk": 10786, "fields": {"orig_filename": "Lebstueck_Maria_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413304}}, {"model": "metainfo.source", "pk": 10787, "fields": {"orig_filename": "Lebzeltern_Josef_1781_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413306}}, {"model": "metainfo.source", "pk": 10788, "fields": {"orig_filename": "Lebzeltern_Ludwig_1774_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 69", "author": "", "orig_id": 1413307}}, {"model": "metainfo.source", "pk": 10789, "fields": {"orig_filename": "Lebzelter_Viktor_1889_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413305}}, {"model": "metainfo.source", "pk": 10790, "fields": {"orig_filename": "Leb_Josef_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63", "author": "", "orig_id": 1413222}}, {"model": "metainfo.source", "pk": 10791, "fields": {"orig_filename": "Lecca_Constantin_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 69f.", "author": "", "orig_id": 1413308}}, {"model": "metainfo.source", "pk": 10792, "fields": {"orig_filename": "Lecher_Ernst_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 70", "author": "", "orig_id": 1413309}}, {"model": "metainfo.source", "pk": 10793, "fields": {"orig_filename": "Lecher_Helene_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 70f.", "author": "", "orig_id": 1413310}}, {"model": "metainfo.source", "pk": 10794, "fields": {"orig_filename": "Lecher_Otto_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413311}}, {"model": "metainfo.source", "pk": 10795, "fields": {"orig_filename": "Lecher_Zacharias-Konrad_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413312}}, {"model": "metainfo.source", "pk": 10796, "fields": {"orig_filename": "Lechi_Angelo_1769_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413313}}, {"model": "metainfo.source", "pk": 10797, "fields": {"orig_filename": "Lechi_Giacomo_1768_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71f.", "author": "", "orig_id": 1413314}}, {"model": "metainfo.source", "pk": 10798, "fields": {"orig_filename": "Lechi_Giuseppe_1766_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 72", "author": "", "orig_id": 1413315}}, {"model": "metainfo.source", "pk": 10799, "fields": {"orig_filename": "Lechi_Luigi_1786_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 72f.", "author": "", "orig_id": 1413316}}, {"model": "metainfo.source", "pk": 10800, "fields": {"orig_filename": "Lechi_Teodoro_1778_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 73", "author": "", "orig_id": 1413317}}, {"model": "metainfo.source", "pk": 10801, "fields": {"orig_filename": "Lechleitner_Franz_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 73f.", "author": "", "orig_id": 1413318}}, {"model": "metainfo.source", "pk": 10802, "fields": {"orig_filename": "Lechleitner_Johannes-Bapt_1764_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74", "author": "", "orig_id": 1413319}}, {"model": "metainfo.source", "pk": 10803, "fields": {"orig_filename": "Lechleitner_Robert_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74", "author": "", "orig_id": 1413320}}, {"model": "metainfo.source", "pk": 10804, "fields": {"orig_filename": "Lechleitner_Wilhelm_1779_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74f.", "author": "", "orig_id": 1413321}}, {"model": "metainfo.source", "pk": 10805, "fields": {"orig_filename": "Lechner_Agost_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75", "author": "", "orig_id": 1413322}}, {"model": "metainfo.source", "pk": 10806, "fields": {"orig_filename": "Lechner_Anton_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75", "author": "", "orig_id": 1413323}}, {"model": "metainfo.source", "pk": 10807, "fields": {"orig_filename": "Lechner_Franziska_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76", "author": "", "orig_id": 1413395}}, {"model": "metainfo.source", "pk": 10808, "fields": {"orig_filename": "Lechner_Franz_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75f.", "author": "", "orig_id": 1413324}}, {"model": "metainfo.source", "pk": 10809, "fields": {"orig_filename": "Lechner_Gyula_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76", "author": "", "orig_id": 1413396}}, {"model": "metainfo.source", "pk": 10810, "fields": {"orig_filename": "Lechner_Johann_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76f.", "author": "", "orig_id": 1413397}}, {"model": "metainfo.source", "pk": 10811, "fields": {"orig_filename": "Lechner_Karl_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413398}}, {"model": "metainfo.source", "pk": 10812, "fields": {"orig_filename": "Lechner_Karoly_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413399}}, {"model": "metainfo.source", "pk": 10813, "fields": {"orig_filename": "Lechner_Lajos_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413400}}, {"model": "metainfo.source", "pk": 10814, "fields": {"orig_filename": "Lechner_Ludwig_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77f.", "author": "", "orig_id": 1413401}}, {"model": "metainfo.source", "pk": 10815, "fields": {"orig_filename": "Lechner_Michael_1785_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78", "author": "", "orig_id": 1413402}}, {"model": "metainfo.source", "pk": 10816, "fields": {"orig_filename": "Lechner_Oedoen_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78", "author": "", "orig_id": 1413403}}, {"model": "metainfo.source", "pk": 10817, "fields": {"orig_filename": "Lechthaler_Josef_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78f.", "author": "", "orig_id": 1413404}}, {"model": "metainfo.source", "pk": 10818, "fields": {"orig_filename": "Leciejewski_Jan_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 79", "author": "", "orig_id": 1413405}}, {"model": "metainfo.source", "pk": 10819, "fields": {"orig_filename": "Leddihn_Adolph_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 79", "author": "", "orig_id": 1413406}}, {"model": "metainfo.source", "pk": 10820, "fields": {"orig_filename": "Ledebur-Wicheln_Johann_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80", "author": "", "orig_id": 1413407}}, {"model": "metainfo.source", "pk": 10821, "fields": {"orig_filename": "Ledererova-Seifertova_Terezie_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136f.", "author": "", "orig_id": 1451574}}, {"model": "metainfo.source", "pk": 10822, "fields": {"orig_filename": "Lederer_Abraham_1827_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81", "author": "", "orig_id": 1413484}}, {"model": "metainfo.source", "pk": 10823, "fields": {"orig_filename": "Lederer_Alexander_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81", "author": "", "orig_id": 1413486}}, {"model": "metainfo.source", "pk": 10824, "fields": {"orig_filename": "Lederer_Anton_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81f.", "author": "", "orig_id": 1413485}}, {"model": "metainfo.source", "pk": 10825, "fields": {"orig_filename": "Lederer_Bela_1860_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413487}}, {"model": "metainfo.source", "pk": 10826, "fields": {"orig_filename": "Lederer_Carl-Ramon-Soter_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413488}}, {"model": "metainfo.source", "pk": 10827, "fields": {"orig_filename": "Lederer_Eduard_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413489}}, {"model": "metainfo.source", "pk": 10828, "fields": {"orig_filename": "Lederer_Emil_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82f.", "author": "", "orig_id": 1413490}}, {"model": "metainfo.source", "pk": 10829, "fields": {"orig_filename": "Lederer_Hugo_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413491}}, {"model": "metainfo.source", "pk": 10830, "fields": {"orig_filename": "Lederer_Joachim_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413492}}, {"model": "metainfo.source", "pk": 10831, "fields": {"orig_filename": "Lederer_Karl-Joseph-Alois_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84", "author": "", "orig_id": 1413494}}, {"model": "metainfo.source", "pk": 10832, "fields": {"orig_filename": "Lederer_Karl_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413493}}, {"model": "metainfo.source", "pk": 10833, "fields": {"orig_filename": "Lederer_Leo_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84", "author": "", "orig_id": 1413495}}, {"model": "metainfo.source", "pk": 10834, "fields": {"orig_filename": "Lederer_Max_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84f.", "author": "", "orig_id": 1413496}}, {"model": "metainfo.source", "pk": 10835, "fields": {"orig_filename": "Lederer_Max_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85", "author": "", "orig_id": 1413497}}, {"model": "metainfo.source", "pk": 10836, "fields": {"orig_filename": "Lederer_Sandor_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85", "author": "", "orig_id": 1413499}}, {"model": "metainfo.source", "pk": 10837, "fields": {"orig_filename": "Ledermaier_Josef_1910_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85f.", "author": "", "orig_id": 1413498}}, {"model": "metainfo.source", "pk": 10838, "fields": {"orig_filename": "Ledersteger_Alois-Paul_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86", "author": "", "orig_id": 1413500}}, {"model": "metainfo.source", "pk": 10839, "fields": {"orig_filename": "Leder_August-Paul_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80", "author": "", "orig_id": 1413408}}, {"model": "metainfo.source", "pk": 10840, "fields": {"orig_filename": "Leder_Hans_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80f.", "author": "", "orig_id": 1413409}}, {"model": "metainfo.source", "pk": 10841, "fields": {"orig_filename": "Ledl_Artur_1878_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86", "author": "", "orig_id": 1413501}}, {"model": "metainfo.source", "pk": 10842, "fields": {"orig_filename": "Ledochowska_Maria-Theresia_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86f.", "author": "", "orig_id": 1413502}}, {"model": "metainfo.source", "pk": 10843, "fields": {"orig_filename": "Ledochowska_Maria-Ursula_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87", "author": "", "orig_id": 1413503}}, {"model": "metainfo.source", "pk": 10844, "fields": {"orig_filename": "Ledochowski_Antoni_1755_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87", "author": "", "orig_id": 1413570}}, {"model": "metainfo.source", "pk": 10845, "fields": {"orig_filename": "Lany_Karel-Bohuslav_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412667}}, {"model": "metainfo.source", "pk": 10846, "fields": {"orig_filename": "Lany_Karel-Eduard_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19f.", "author": "", "orig_id": 1412668}}, {"model": "metainfo.source", "pk": 10847, "fields": {"orig_filename": "Lanza_Frano_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21f.", "author": "", "orig_id": 1412674}}, {"model": "metainfo.source", "pk": 10848, "fields": {"orig_filename": "Lanzedelly_August_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412675}}, {"model": "metainfo.source", "pk": 10849, "fields": {"orig_filename": "Lanzedelly_Josef_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412676}}, {"model": "metainfo.source", "pk": 10850, "fields": {"orig_filename": "Lanzedelly_Josef_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412677}}, {"model": "metainfo.source", "pk": 10851, "fields": {"orig_filename": "Lanzedelly_Karl_1815_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22f.", "author": "", "orig_id": 1412678}}, {"model": "metainfo.source", "pk": 10852, "fields": {"orig_filename": "Lanzendoerfer_Ferdinand_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23", "author": "", "orig_id": 1412679}}, {"model": "metainfo.source", "pk": 10853, "fields": {"orig_filename": "Lanzinger_Hubert_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23", "author": "", "orig_id": 1412680}}, {"model": "metainfo.source", "pk": 10854, "fields": {"orig_filename": "Lanz_Engelbert_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21", "author": "", "orig_id": 1412672}}, {"model": "metainfo.source", "pk": 10855, "fields": {"orig_filename": "Lanz_Katharina_1771_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21", "author": "", "orig_id": 1412673}}, {"model": "metainfo.source", "pk": 10856, "fields": {"orig_filename": "Lapajne_Ivan_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24", "author": "", "orig_id": 1412755}}, {"model": "metainfo.source", "pk": 10857, "fields": {"orig_filename": "Lapajne_Stanko_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24", "author": "", "orig_id": 1412756}}, {"model": "metainfo.source", "pk": 10858, "fields": {"orig_filename": "Lapinski_Teofil_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24f.", "author": "", "orig_id": 1412757}}, {"model": "metainfo.source", "pk": 10859, "fields": {"orig_filename": "Lapp_Daniel_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 25", "author": "", "orig_id": 1412758}}, {"model": "metainfo.source", "pk": 10860, "fields": {"orig_filename": "Lapp_Friedrich-August_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 25f.", "author": "", "orig_id": 1412759}}, {"model": "metainfo.source", "pk": 10861, "fields": {"orig_filename": "Lapsinszky_Janos_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412760}}, {"model": "metainfo.source", "pk": 10862, "fields": {"orig_filename": "Larber_Giovanni_1786_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412761}}, {"model": "metainfo.source", "pk": 10863, "fields": {"orig_filename": "Larch_Hans_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412762}}, {"model": "metainfo.source", "pk": 10864, "fields": {"orig_filename": "Lardschneider_Archangelus-Ciampac_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26f.", "author": "", "orig_id": 1412763}}, {"model": "metainfo.source", "pk": 10865, "fields": {"orig_filename": "Larisch-Moennich_Heinrich_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 27f.", "author": "", "orig_id": 1412765}}, {"model": "metainfo.source", "pk": 10866, "fields": {"orig_filename": "Larisch-Moennich_Johann_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28", "author": "", "orig_id": 1412766}}, {"model": "metainfo.source", "pk": 10867, "fields": {"orig_filename": "Larisch_Rudolf_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 27", "author": "", "orig_id": 1412764}}, {"model": "metainfo.source", "pk": 10868, "fields": {"orig_filename": "Laroche_Jakob_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28", "author": "", "orig_id": 1412767}}, {"model": "metainfo.source", "pk": 10869, "fields": {"orig_filename": "Laroche_Karl_1794_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28f.", "author": "", "orig_id": 1412768}}, {"model": "metainfo.source", "pk": 10870, "fields": {"orig_filename": "Laroche_Michael-Johann_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 29", "author": "", "orig_id": 1412769}}, {"model": "metainfo.source", "pk": 10871, "fields": {"orig_filename": "Larwin_Hans_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 29f.", "author": "", "orig_id": 1412770}}, {"model": "metainfo.source", "pk": 10872, "fields": {"orig_filename": "Laschan-Moorland_Anton_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412774}}, {"model": "metainfo.source", "pk": 10873, "fields": {"orig_filename": "Laschan-Solstein_Ignaz_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30f.", "author": "", "orig_id": 1412773}}, {"model": "metainfo.source", "pk": 10874, "fields": {"orig_filename": "Laschitzer_Simon_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31", "author": "", "orig_id": 1412775}}, {"model": "metainfo.source", "pk": 10875, "fields": {"orig_filename": "Lasch_Richard_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412771}}, {"model": "metainfo.source", "pk": 10876, "fields": {"orig_filename": "Lasch_Simon_1796_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412772}}, {"model": "metainfo.source", "pk": 10877, "fields": {"orig_filename": "Lascny-Folkusfalva_Katharina_1789_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31", "author": "", "orig_id": 1412776}}, {"model": "metainfo.source", "pk": 10878, "fields": {"orig_filename": "Laser_Simon-Menachem_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31f.", "author": "", "orig_id": 1412777}}, {"model": "metainfo.source", "pk": 10879, "fields": {"orig_filename": "Lasinio_Basilio_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32", "author": "", "orig_id": 1412778}}, {"model": "metainfo.source", "pk": 10880, "fields": {"orig_filename": "Lasinio_Carlo_1759_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32", "author": "", "orig_id": 1412846}}, {"model": "metainfo.source", "pk": 10881, "fields": {"orig_filename": "Laska_Gustav_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 33", "author": "", "orig_id": 1412848}}, {"model": "metainfo.source", "pk": 10882, "fields": {"orig_filename": "Laska_Julius_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 33f.", "author": "", "orig_id": 1412849}}, {"model": "metainfo.source", "pk": 10883, "fields": {"orig_filename": "Lask_Emil_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32f.", "author": "", "orig_id": 1412847}}, {"model": "metainfo.source", "pk": 10884, "fields": {"orig_filename": "Lasocki_Zygmunt_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34", "author": "", "orig_id": 1412850}}, {"model": "metainfo.source", "pk": 10885, "fields": {"orig_filename": "Lassel_Matthias_1760_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34", "author": "", "orig_id": 1412851}}, {"model": "metainfo.source", "pk": 10886, "fields": {"orig_filename": "Lassel_Rudolf_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34f.", "author": "", "orig_id": 1412852}}, {"model": "metainfo.source", "pk": 10887, "fields": {"orig_filename": "Lasser-Zollheim_Johann-Bapt_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35", "author": "", "orig_id": 1412853}}, {"model": "metainfo.source", "pk": 10888, "fields": {"orig_filename": "Lasser-Zollheim_Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35", "author": "", "orig_id": 1412854}}, {"model": "metainfo.source", "pk": 10889, "fields": {"orig_filename": "Lassu_Istvan_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35f.", "author": "", "orig_id": 1412855}}, {"model": "metainfo.source", "pk": 10890, "fields": {"orig_filename": "Lastovka_Karel_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412859}}, {"model": "metainfo.source", "pk": 10891, "fields": {"orig_filename": "Last_Adolf_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36", "author": "", "orig_id": 1412856}}, {"model": "metainfo.source", "pk": 10892, "fields": {"orig_filename": "Last_Albert_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36", "author": "", "orig_id": 1412857}}, {"model": "metainfo.source", "pk": 10893, "fields": {"orig_filename": "Last_Isaak_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36f.", "author": "", "orig_id": 1412858}}, {"model": "metainfo.source", "pk": 10894, "fields": {"orig_filename": "Laszlo-Lombos_Fueloep-Elek_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37f.", "author": "", "orig_id": 1412862}}, {"model": "metainfo.source", "pk": 10895, "fields": {"orig_filename": "Laszlo_Jozsef_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412861}}, {"model": "metainfo.source", "pk": 10896, "fields": {"orig_filename": "Laszowski_Emilij_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412863}}, {"model": "metainfo.source", "pk": 10897, "fields": {"orig_filename": "Lasz_Samu_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412860}}, {"model": "metainfo.source", "pk": 10898, "fields": {"orig_filename": "Latabar_Endre_1812_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412864}}, {"model": "metainfo.source", "pk": 10899, "fields": {"orig_filename": "Latabar_Kalman_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412865}}, {"model": "metainfo.source", "pk": 10900, "fields": {"orig_filename": "Latas_Omer_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38f.", "author": "", "orig_id": 1412866}}, {"model": "metainfo.source", "pk": 10901, "fields": {"orig_filename": "Latkoczy_Mihaly_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39", "author": "", "orig_id": 1412867}}, {"model": "metainfo.source", "pk": 10902, "fields": {"orig_filename": "Latkowski_Jozef_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39", "author": "", "orig_id": 1412868}}, {"model": "metainfo.source", "pk": 10903, "fields": {"orig_filename": "Latour-Thurmburg_Josef_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39f.", "author": "", "orig_id": 1412869}}, {"model": "metainfo.source", "pk": 10904, "fields": {"orig_filename": "Latour-Voivre_Elvine_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412870}}, {"model": "metainfo.source", "pk": 10905, "fields": {"orig_filename": "Latschenberger_Johann_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412939}}, {"model": "metainfo.source", "pk": 10906, "fields": {"orig_filename": "Latscher-Lauendorf_Julius_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412942}}, {"model": "metainfo.source", "pk": 10907, "fields": {"orig_filename": "Latscher_Johann_1840_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412940}}, {"model": "metainfo.source", "pk": 10908, "fields": {"orig_filename": "Latscher_Viktor_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40f.", "author": "", "orig_id": 1412941}}, {"model": "metainfo.source", "pk": 10909, "fields": {"orig_filename": "Latschka_Adam_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412943}}, {"model": "metainfo.source", "pk": 10910, "fields": {"orig_filename": "Latterer-Lintenburg_Adolf-Constantin_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412944}}, {"model": "metainfo.source", "pk": 10911, "fields": {"orig_filename": "Latterer-Lintenburg_Joseph-Johann_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42", "author": "", "orig_id": 1412945}}, {"model": "metainfo.source", "pk": 10912, "fields": {"orig_filename": "Lattermann_Christoph_1753_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42", "author": "", "orig_id": 1412946}}, {"model": "metainfo.source", "pk": 10913, "fields": {"orig_filename": "Lattes_Elia_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42f.", "author": "", "orig_id": 1412947}}, {"model": "metainfo.source", "pk": 10914, "fields": {"orig_filename": "Latzel_Robert_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43", "author": "", "orig_id": 1412948}}, {"model": "metainfo.source", "pk": 10915, "fields": {"orig_filename": "Latzina_Francisco_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43", "author": "", "orig_id": 1412949}}, {"model": "metainfo.source", "pk": 10916, "fields": {"orig_filename": "Latzko_Adolph-Andreas_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43f.", "author": "", "orig_id": 1412950}}, {"model": "metainfo.source", "pk": 10917, "fields": {"orig_filename": "Latzko_Wilhelm_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44", "author": "", "orig_id": 1412951}}, {"model": "metainfo.source", "pk": 10918, "fields": {"orig_filename": "Laube_Gustav-Carl_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44f.", "author": "", "orig_id": 1412953}}, {"model": "metainfo.source", "pk": 10919, "fields": {"orig_filename": "Laube_Heinrich_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 45f.", "author": "", "orig_id": 1412954}}, {"model": "metainfo.source", "pk": 10920, "fields": {"orig_filename": "Laube_Iduna_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46", "author": "", "orig_id": 1412955}}, {"model": "metainfo.source", "pk": 10921, "fields": {"orig_filename": "Laube_Josef_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46", "author": "", "orig_id": 1412956}}, {"model": "metainfo.source", "pk": 10922, "fields": {"orig_filename": "Laubheimer_Otto_1882_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46f.", "author": "", "orig_id": 1412957}}, {"model": "metainfo.source", "pk": 10923, "fields": {"orig_filename": "Laub_Ferdinand_1832_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44", "author": "", "orig_id": 1412952}}, {"model": "metainfo.source", "pk": 10924, "fields": {"orig_filename": "Lauche_Wilhelm_1859_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 47", "author": "", "orig_id": 1412958}}, {"model": "metainfo.source", "pk": 10925, "fields": {"orig_filename": "Lauda_Ernst_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2082311}}, {"model": "metainfo.source", "pk": 10926, "fields": {"orig_filename": "Lauda_Richard_1873_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 47f.", "author": "", "orig_id": 1412959}}, {"model": "metainfo.source", "pk": 10927, "fields": {"orig_filename": "Laudi_Vitale_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48", "author": "", "orig_id": 1412960}}, {"model": "metainfo.source", "pk": 10928, "fields": {"orig_filename": "Lauer_Joseph_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48f.", "author": "", "orig_id": 1412962}}, {"model": "metainfo.source", "pk": 10929, "fields": {"orig_filename": "Laufberger_Ferdinand-Julius-Wilhelm_1829_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49", "author": "", "orig_id": 1413031}}, {"model": "metainfo.source", "pk": 10930, "fields": {"orig_filename": "Laufenauer_Karoly_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49", "author": "", "orig_id": 1413032}}, {"model": "metainfo.source", "pk": 10931, "fields": {"orig_filename": "Lauka_Gusztav_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49f.", "author": "", "orig_id": 1413033}}, {"model": "metainfo.source", "pk": 10932, "fields": {"orig_filename": "Laurencin-Darmond_Ferdinand-Peter_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413034}}, {"model": "metainfo.source", "pk": 10933, "fields": {"orig_filename": "Laurenzi_Ludwig_1788_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413035}}, {"model": "metainfo.source", "pk": 10934, "fields": {"orig_filename": "Laurin_Franz-Xaver_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413036}}, {"model": "metainfo.source", "pk": 10935, "fields": {"orig_filename": "Laurin_Giambattista_1793_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413037}}, {"model": "metainfo.source", "pk": 10936, "fields": {"orig_filename": "Laurin_Vaclav_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413038}}, {"model": "metainfo.source", "pk": 10937, "fields": {"orig_filename": "Lauska_Franz_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51f.", "author": "", "orig_id": 1413040}}, {"model": "metainfo.source", "pk": 10938, "fields": {"orig_filename": "Laus_Heinrich_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413039}}, {"model": "metainfo.source", "pk": 10939, "fields": {"orig_filename": "Lautenburg_Sigmund_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413041}}, {"model": "metainfo.source", "pk": 10940, "fields": {"orig_filename": "Lauterer_Jakob_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413042}}, {"model": "metainfo.source", "pk": 10941, "fields": {"orig_filename": "Lauzil_Karl_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52f.", "author": "", "orig_id": 1413044}}, {"model": "metainfo.source", "pk": 10942, "fields": {"orig_filename": "Lauzi_Giovanni_1800_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413043}}, {"model": "metainfo.source", "pk": 10943, "fields": {"orig_filename": "Lavaggi_Gaspare_1849_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413045}}, {"model": "metainfo.source", "pk": 10944, "fields": {"orig_filename": "Lavotta_Jan_1764_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413047}}, {"model": "metainfo.source", "pk": 10945, "fields": {"orig_filename": "Lavric_Karel_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53f.", "author": "", "orig_id": 1413048}}, {"model": "metainfo.source", "pk": 10946, "fields": {"orig_filename": "Landriani_Giuseppe_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415316}}, {"model": "metainfo.source", "pk": 10947, "fields": {"orig_filename": "Landriani_Paolo_1757_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415317}}, {"model": "metainfo.source", "pk": 10948, "fields": {"orig_filename": "Landsberger-Freideck_Adolf_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432f.", "author": "", "orig_id": 1415318}}, {"model": "metainfo.source", "pk": 10949, "fields": {"orig_filename": "Landsteiner_Karl-Borr_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 434f.", "author": "", "orig_id": 1415389}}, {"model": "metainfo.source", "pk": 10950, "fields": {"orig_filename": "Landsteiner_Karl_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 433f.", "author": "", "orig_id": 1415319}}, {"model": "metainfo.source", "pk": 10951, "fields": {"orig_filename": "Landwehr-Pragenau_Ottokar_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 435", "author": "", "orig_id": 1415390}}, {"model": "metainfo.source", "pk": 10952, "fields": {"orig_filename": "Landy_Friedrich-Ludwig_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 435f.", "author": "", "orig_id": 1415391}}, {"model": "metainfo.source", "pk": 10953, "fields": {"orig_filename": "Laner-Orsova_Victor_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415394}}, {"model": "metainfo.source", "pk": 10954, "fields": {"orig_filename": "Laner_Albino_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415392}}, {"model": "metainfo.source", "pk": 10955, "fields": {"orig_filename": "Laner_Georg_1778_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415393}}, {"model": "metainfo.source", "pk": 10956, "fields": {"orig_filename": "Lanfranchi_Luigi_1782_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436f.", "author": "", "orig_id": 1415395}}, {"model": "metainfo.source", "pk": 10957, "fields": {"orig_filename": "Lanfranconi_Enea-Grazioso_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437", "author": "", "orig_id": 1415396}}, {"model": "metainfo.source", "pk": 10958, "fields": {"orig_filename": "Lanfrey_Anton_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437", "author": "", "orig_id": 1415397}}, {"model": "metainfo.source", "pk": 10959, "fields": {"orig_filename": "Lang-Csanakfalva_Lajos_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 445", "author": "", "orig_id": 1415488}}, {"model": "metainfo.source", "pk": 10960, "fields": {"orig_filename": "Lang-Hanstadt_Johannes-Nep_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 445f.", "author": "", "orig_id": 1415489}}, {"model": "metainfo.source", "pk": 10961, "fields": {"orig_filename": "Langauer_Franz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446", "author": "", "orig_id": 1415490}}, {"model": "metainfo.source", "pk": 10962, "fields": {"orig_filename": "Lange-Burgenkron_Emil_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413837}}, {"model": "metainfo.source", "pk": 10963, "fields": {"orig_filename": "Lange-Burgenkron_Peter-Traugott_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413838}}, {"model": "metainfo.source", "pk": 10964, "fields": {"orig_filename": "Langenau_Eduard-George-Wilhelm_1787_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413839}}, {"model": "metainfo.source", "pk": 10965, "fields": {"orig_filename": "Langenau_Ferdinand_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1f.", "author": "", "orig_id": 1413840}}, {"model": "metainfo.source", "pk": 10966, "fields": {"orig_filename": "Langenau_Friedrich-Karl-Gustav_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2", "author": "", "orig_id": 1412479}}, {"model": "metainfo.source", "pk": 10967, "fields": {"orig_filename": "Langenbacher_Ferdinand_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2", "author": "", "orig_id": 1412480}}, {"model": "metainfo.source", "pk": 10968, "fields": {"orig_filename": "Langenbacher_Johann_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2f.", "author": "", "orig_id": 1412481}}, {"model": "metainfo.source", "pk": 10969, "fields": {"orig_filename": "Langer-Edenberg_Karl_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 8", "author": "", "orig_id": 1412496}}, {"model": "metainfo.source", "pk": 10970, "fields": {"orig_filename": "Langer-Koningshoykt_Albert_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 8f.", "author": "", "orig_id": 1412497}}, {"model": "metainfo.source", "pk": 10971, "fields": {"orig_filename": "Langer-Langenrode_Hermann_1875_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412498}}, {"model": "metainfo.source", "pk": 10972, "fields": {"orig_filename": "Langer-Lannsperg_Carl-Edmund_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412499}}, {"model": "metainfo.source", "pk": 10973, "fields": {"orig_filename": "Langer_Angela_1886_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 3", "author": "", "orig_id": 1412482}}, {"model": "metainfo.source", "pk": 10974, "fields": {"orig_filename": "Langer_Anton_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 3f.", "author": "", "orig_id": 1412483}}, {"model": "metainfo.source", "pk": 10975, "fields": {"orig_filename": "Langer_Eduard_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 4", "author": "", "orig_id": 1412484}}, {"model": "metainfo.source", "pk": 10976, "fields": {"orig_filename": "Langer_Jiri_1894_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 4f.", "author": "", "orig_id": 1412485}}, {"model": "metainfo.source", "pk": 10977, "fields": {"orig_filename": "Langer_Johann_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5", "author": "", "orig_id": 1412486}}, {"model": "metainfo.source", "pk": 10978, "fields": {"orig_filename": "Langer_Johann_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5", "author": "", "orig_id": 1412487}}, {"model": "metainfo.source", "pk": 10979, "fields": {"orig_filename": "Langer_Josef-Jaroslav_1806_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6", "author": "", "orig_id": 1412489}}, {"model": "metainfo.source", "pk": 10980, "fields": {"orig_filename": "Langer_Josef_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5f.", "author": "", "orig_id": 1412488}}, {"model": "metainfo.source", "pk": 10981, "fields": {"orig_filename": "Langer_Karl_1863_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6", "author": "", "orig_id": 1412490}}, {"model": "metainfo.source", "pk": 10982, "fields": {"orig_filename": "Langer_Robert_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6f.", "author": "", "orig_id": 1412493}}, {"model": "metainfo.source", "pk": 10983, "fields": {"orig_filename": "Langer_Rudolf_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412491}}, {"model": "metainfo.source", "pk": 10984, "fields": {"orig_filename": "Langer_Siegfried_1857_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412492}}, {"model": "metainfo.source", "pk": 10985, "fields": {"orig_filename": "Langer_Theodor_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412494}}, {"model": "metainfo.source", "pk": 10986, "fields": {"orig_filename": "Langer_Theodor_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7f.", "author": "", "orig_id": 1412495}}, {"model": "metainfo.source", "pk": 10987, "fields": {"orig_filename": "Lange_Aloysia-Maria-Antonia_1758_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446", "author": "", "orig_id": 1415491}}, {"model": "metainfo.source", "pk": 10988, "fields": {"orig_filename": "Lange_Antoni_1779_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446f.", "author": "", "orig_id": 1415492}}, {"model": "metainfo.source", "pk": 10989, "fields": {"orig_filename": "Lange_Conrad_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447", "author": "", "orig_id": 1415493}}, {"model": "metainfo.source", "pk": 10990, "fields": {"orig_filename": "Lange_Fritz_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447", "author": "", "orig_id": 1415494}}, {"model": "metainfo.source", "pk": 10991, "fields": {"orig_filename": "Lange_Joseph_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447f.", "author": "", "orig_id": 1415495}}, {"model": "metainfo.source", "pk": 10992, "fields": {"orig_filename": "Lange_Otto_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415496}}, {"model": "metainfo.source", "pk": 10993, "fields": {"orig_filename": "Lange_Paul_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415497}}, {"model": "metainfo.source", "pk": 10994, "fields": {"orig_filename": "Lange_Wilhelm_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415498}}, {"model": "metainfo.source", "pk": 10995, "fields": {"orig_filename": "Langhoffer_August_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9f.", "author": "", "orig_id": 1412573}}, {"model": "metainfo.source", "pk": 10996, "fields": {"orig_filename": "Langhy_Istvan_1796_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10", "author": "", "orig_id": 1412574}}, {"model": "metainfo.source", "pk": 10997, "fields": {"orig_filename": "Langh_Boldizsar_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412572}}, {"model": "metainfo.source", "pk": 10998, "fields": {"orig_filename": "Langkammer_Karl_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10", "author": "", "orig_id": 1412575}}, {"model": "metainfo.source", "pk": 10999, "fields": {"orig_filename": "Langkammer_Marianna-Margaretha_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10f.", "author": "", "orig_id": 1412576}}, {"model": "metainfo.source", "pk": 11000, "fields": {"orig_filename": "Langl_Joseph_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 11", "author": "", "orig_id": 1412577}}, {"model": "metainfo.source", "pk": 11001, "fields": {"orig_filename": "Langmann_Philipp_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 11f.", "author": "", "orig_id": 1412578}}, {"model": "metainfo.source", "pk": 11002, "fields": {"orig_filename": "Langner_Karl_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412579}}, {"model": "metainfo.source", "pk": 11003, "fields": {"orig_filename": "Langthaler_Franz_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412580}}, {"model": "metainfo.source", "pk": 11004, "fields": {"orig_filename": "Langthaler_Johann-Bapt_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412581}}, {"model": "metainfo.source", "pk": 11005, "fields": {"orig_filename": "Langthaler_Matthias_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412582}}, {"model": "metainfo.source", "pk": 11006, "fields": {"orig_filename": "Langus_Henrika_1836_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412583}}, {"model": "metainfo.source", "pk": 11007, "fields": {"orig_filename": "Langus_Matej_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412584}}, {"model": "metainfo.source", "pk": 11008, "fields": {"orig_filename": "Langweil_Antonin_1791_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412585}}, {"model": "metainfo.source", "pk": 11009, "fields": {"orig_filename": "Lang_Adam-Janos_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437f.", "author": "", "orig_id": 1415398}}, {"model": "metainfo.source", "pk": 11010, "fields": {"orig_filename": "Lang_Adolf-Ferenc_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 438f.", "author": "", "orig_id": 1415400}}, {"model": "metainfo.source", "pk": 11011, "fields": {"orig_filename": "Lang_Adolf_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 438", "author": "", "orig_id": 1415399}}, {"model": "metainfo.source", "pk": 11012, "fields": {"orig_filename": "Lang_Alois_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 439", "author": "", "orig_id": 1415401}}, {"model": "metainfo.source", "pk": 11013, "fields": {"orig_filename": "Lang_Eduard_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 439f.", "author": "", "orig_id": 1415402}}, {"model": "metainfo.source", "pk": 11014, "fields": {"orig_filename": "Lang_Ella_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415403}}, {"model": "metainfo.source", "pk": 11015, "fields": {"orig_filename": "Lang_Franz-Xaver_1770_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415405}}, {"model": "metainfo.source", "pk": 11016, "fields": {"orig_filename": "Lang_Franz_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415404}}, {"model": "metainfo.source", "pk": 11017, "fields": {"orig_filename": "Lang_Gustav-Johann_1838_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415406}}, {"model": "metainfo.source", "pk": 11018, "fields": {"orig_filename": "Lang_Heinrich_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440f.", "author": "", "orig_id": 1415407}}, {"model": "metainfo.source", "pk": 11019, "fields": {"orig_filename": "Lang_Ignaz-Gabriel_1768_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415408}}, {"model": "metainfo.source", "pk": 11020, "fields": {"orig_filename": "Lang_Johann-Bapt-Fortunat_1775_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415411}}, {"model": "metainfo.source", "pk": 11021, "fields": {"orig_filename": "Lang_Johann-Bapt_1736_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415409}}, {"model": "metainfo.source", "pk": 11022, "fields": {"orig_filename": "Lang_Johann-Bapt_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415410}}, {"model": "metainfo.source", "pk": 11023, "fields": {"orig_filename": "Lang_Josef-Nikolaus_1776_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415412}}, {"model": "metainfo.source", "pk": 11024, "fields": {"orig_filename": "Lang_Josip_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415413}}, {"model": "metainfo.source", "pk": 11025, "fields": {"orig_filename": "Lang_Karl-Maria_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442f.", "author": "", "orig_id": 1415414}}, {"model": "metainfo.source", "pk": 11026, "fields": {"orig_filename": "Lang_Leonhard_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 443", "author": "", "orig_id": 1415485}}, {"model": "metainfo.source", "pk": 11027, "fields": {"orig_filename": "Lang_Marie_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 443f.", "author": "", "orig_id": 1415486}}, {"model": "metainfo.source", "pk": 11028, "fields": {"orig_filename": "Lang_Victor_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 444f.", "author": "", "orig_id": 1415487}}, {"model": "metainfo.source", "pk": 11029, "fields": {"orig_filename": "Lanius_Frida_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13f.", "author": "", "orig_id": 1412586}}, {"model": "metainfo.source", "pk": 11030, "fields": {"orig_filename": "Lanjus-Wellenburg_Friedrich_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14", "author": "", "orig_id": 1412587}}, {"model": "metainfo.source", "pk": 11031, "fields": {"orig_filename": "Lanjus-Wellenburg_Karl_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14", "author": "", "orig_id": 1412588}}, {"model": "metainfo.source", "pk": 11032, "fields": {"orig_filename": "Lanna_Adalbert_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14f.", "author": "", "orig_id": 1412589}}, {"model": "metainfo.source", "pk": 11033, "fields": {"orig_filename": "Lanner_Alois_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 15", "author": "", "orig_id": 1412590}}, {"model": "metainfo.source", "pk": 11034, "fields": {"orig_filename": "Lanner_Joseph_1801_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 15f.", "author": "", "orig_id": 1412591}}, {"model": "metainfo.source", "pk": 11035, "fields": {"orig_filename": "Lanner_Katharina_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 16", "author": "", "orig_id": 1412592}}, {"model": "metainfo.source", "pk": 11036, "fields": {"orig_filename": "Lanner_Thaddaeus_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 16f.", "author": "", "orig_id": 1412593}}, {"model": "metainfo.source", "pk": 11037, "fields": {"orig_filename": "Lannoy_Heinrich-Eduard-Josef_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 17", "author": "", "orig_id": 1412659}}, {"model": "metainfo.source", "pk": 11038, "fields": {"orig_filename": "Lanstjak_Pavel-Ferdinand_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 17f.", "author": "", "orig_id": 1412660}}, {"model": "metainfo.source", "pk": 11039, "fields": {"orig_filename": "Lantana_Giovanni-Battista_1793_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412661}}, {"model": "metainfo.source", "pk": 11040, "fields": {"orig_filename": "Lantner_Ferdinand_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412662}}, {"model": "metainfo.source", "pk": 11041, "fields": {"orig_filename": "Lantschner_Anton_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412663}}, {"model": "metainfo.source", "pk": 11042, "fields": {"orig_filename": "Lantschner_Georg_1772_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18f.", "author": "", "orig_id": 1412664}}, {"model": "metainfo.source", "pk": 11043, "fields": {"orig_filename": "Lantschner_Ludwig_1826_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412665}}, {"model": "metainfo.source", "pk": 11044, "fields": {"orig_filename": "Lanyi_Bertalan_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20", "author": "", "orig_id": 1412669}}, {"model": "metainfo.source", "pk": 11045, "fields": {"orig_filename": "Lanyi_Karol_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20", "author": "", "orig_id": 1412670}}, {"model": "metainfo.source", "pk": 11046, "fields": {"orig_filename": "Lanyi_Samuel_1791_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20f.", "author": "", "orig_id": 1412671}}, {"model": "metainfo.source", "pk": 11047, "fields": {"orig_filename": "Lany_Emil-Pavel_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412666}}, {"model": "metainfo.source", "pk": 11048, "fields": {"orig_filename": "Laemel_Simon_1766_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416396}}, {"model": "metainfo.source", "pk": 11049, "fields": {"orig_filename": "Laemmermayr_Ludwig_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401f.", "author": "", "orig_id": 1416397}}, {"model": "metainfo.source", "pk": 11050, "fields": {"orig_filename": "Lafar_Franz_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402", "author": "", "orig_id": 1416398}}, {"model": "metainfo.source", "pk": 11051, "fields": {"orig_filename": "Lafite_Carl_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402", "author": "", "orig_id": 1416399}}, {"model": "metainfo.source", "pk": 11052, "fields": {"orig_filename": "Lafite_Carl_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402f.", "author": "", "orig_id": 1416400}}, {"model": "metainfo.source", "pk": 11053, "fields": {"orig_filename": "Lafite_Ernst_1826_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403", "author": "", "orig_id": 1416401}}, {"model": "metainfo.source", "pk": 11054, "fields": {"orig_filename": "Laginja_Matko_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403", "author": "", "orig_id": 1416402}}, {"model": "metainfo.source", "pk": 11055, "fields": {"orig_filename": "Lahmer_Robert-Johann_1846_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416404}}, {"model": "metainfo.source", "pk": 11056, "fields": {"orig_filename": "Lahner_Gyoergy_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416475}}, {"model": "metainfo.source", "pk": 11057, "fields": {"orig_filename": "Lahner_Johann-Georg_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416476}}, {"model": "metainfo.source", "pk": 11058, "fields": {"orig_filename": "Lahner_Karl_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416477}}, {"model": "metainfo.source", "pk": 11059, "fields": {"orig_filename": "Lah_Ivan_1881_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403f.", "author": "", "orig_id": 1416403}}, {"model": "metainfo.source", "pk": 11060, "fields": {"orig_filename": "Laichter_Jan_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404f.", "author": "", "orig_id": 1416478}}, {"model": "metainfo.source", "pk": 11061, "fields": {"orig_filename": "Laichter_Josef_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405", "author": "", "orig_id": 1419389}}, {"model": "metainfo.source", "pk": 11062, "fields": {"orig_filename": "Laimegger_Josef_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405", "author": "", "orig_id": 1416479}}, {"model": "metainfo.source", "pk": 11063, "fields": {"orig_filename": "Laimer_Josef_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405f.", "author": "", "orig_id": 1416480}}, {"model": "metainfo.source", "pk": 11064, "fields": {"orig_filename": "Lainer_Alexander_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406", "author": "", "orig_id": 1416481}}, {"model": "metainfo.source", "pk": 11065, "fields": {"orig_filename": "Lair_Franz-Xaver_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406", "author": "", "orig_id": 1416482}}, {"model": "metainfo.source", "pk": 11066, "fields": {"orig_filename": "Laitner_Paul_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406f.", "author": "", "orig_id": 1416483}}, {"model": "metainfo.source", "pk": 11067, "fields": {"orig_filename": "Laizner_Josef_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416484}}, {"model": "metainfo.source", "pk": 11068, "fields": {"orig_filename": "Lakatos_Karoly_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416485}}, {"model": "metainfo.source", "pk": 11069, "fields": {"orig_filename": "Lakatos_Sandor_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416486}}, {"model": "metainfo.source", "pk": 11070, "fields": {"orig_filename": "Lakits_Ferenc_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416487}}, {"model": "metainfo.source", "pk": 11071, "fields": {"orig_filename": "Lakits_Juraj-Zigmund_1739_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407f.", "author": "", "orig_id": 1416488}}, {"model": "metainfo.source", "pk": 11072, "fields": {"orig_filename": "Laky_Janos-Demeter_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416489}}, {"model": "metainfo.source", "pk": 11073, "fields": {"orig_filename": "Lalic_Nikola_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416490}}, {"model": "metainfo.source", "pk": 11074, "fields": {"orig_filename": "Lallemand_Friedrich_1812_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416491}}, {"model": "metainfo.source", "pk": 11075, "fields": {"orig_filename": "Lallemand_Marcus-Conrad_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408f.", "author": "", "orig_id": 1416492}}, {"model": "metainfo.source", "pk": 11076, "fields": {"orig_filename": "Lallemand_Siegmund_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409", "author": "", "orig_id": 1416493}}, {"model": "metainfo.source", "pk": 11077, "fields": {"orig_filename": "Lamatsch-Warnemuende_Paul_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410", "author": "", "orig_id": 1416497}}, {"model": "metainfo.source", "pk": 11078, "fields": {"orig_filename": "Lamatsch_Johann_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410", "author": "", "orig_id": 1416496}}, {"model": "metainfo.source", "pk": 11079, "fields": {"orig_filename": "Lama_Matthias_1780_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409f.", "author": "", "orig_id": 1416495}}, {"model": "metainfo.source", "pk": 11080, "fields": {"orig_filename": "Lambel_Hans_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410f.", "author": "", "orig_id": 1416498}}, {"model": "metainfo.source", "pk": 11081, "fields": {"orig_filename": "Lamberg-Sprinzenstein_Anton-Franz-De-Paula_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412", "author": "", "orig_id": 1416569}}, {"model": "metainfo.source", "pk": 11082, "fields": {"orig_filename": "Lamberg_Carl-Raimund_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416499}}, {"model": "metainfo.source", "pk": 11083, "fields": {"orig_filename": "Lamberg_Franz-Emerich_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416567}}, {"model": "metainfo.source", "pk": 11084, "fields": {"orig_filename": "Lamberg_Hugo-Raimund_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416568}}, {"model": "metainfo.source", "pk": 11085, "fields": {"orig_filename": "Lamberti_Camille-Joseph_1747_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412f.", "author": "", "orig_id": 1416571}}, {"model": "metainfo.source", "pk": 11086, "fields": {"orig_filename": "Lamberti_Giacomo_1762_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413", "author": "", "orig_id": 1416572}}, {"model": "metainfo.source", "pk": 11087, "fields": {"orig_filename": "Lamberti_Luigi_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413", "author": "", "orig_id": 1416573}}, {"model": "metainfo.source", "pk": 11088, "fields": {"orig_filename": "Lambertz_Maximilian_1882_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1459440}}, {"model": "metainfo.source", "pk": 11089, "fields": {"orig_filename": "Lambert_Adam_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412", "author": "", "orig_id": 1416570}}, {"model": "metainfo.source", "pk": 11090, "fields": {"orig_filename": "Lambl_Johann-Bapt_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413f.", "author": "", "orig_id": 1416574}}, {"model": "metainfo.source", "pk": 11091, "fields": {"orig_filename": "Lambl_Karl_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416575}}, {"model": "metainfo.source", "pk": 11092, "fields": {"orig_filename": "Lambl_Vilem-Dusan_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416576}}, {"model": "metainfo.source", "pk": 11093, "fields": {"orig_filename": "Lamborg_Otto_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416577}}, {"model": "metainfo.source", "pk": 11094, "fields": {"orig_filename": "Lambrecht_Rudolf_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416578}}, {"model": "metainfo.source", "pk": 11095, "fields": {"orig_filename": "Lamezan-Salins_Eduard_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414f.", "author": "", "orig_id": 1416579}}, {"model": "metainfo.source", "pk": 11096, "fields": {"orig_filename": "Lamezan-Salins_Robert_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 415", "author": "", "orig_id": 1416580}}, {"model": "metainfo.source", "pk": 11097, "fields": {"orig_filename": "Lammasch_Heinrich_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 415f.", "author": "", "orig_id": 1416581}}, {"model": "metainfo.source", "pk": 11098, "fields": {"orig_filename": "Lammer_Eugen-Guido_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 416f.", "author": "", "orig_id": 1416583}}, {"model": "metainfo.source", "pk": 11099, "fields": {"orig_filename": "Lamotte-Frintropp_Franz_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 417", "author": "", "orig_id": 1416584}}, {"model": "metainfo.source", "pk": 11100, "fields": {"orig_filename": "Lampa_Anton_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 417f.", "author": "", "orig_id": 1416585}}, {"model": "metainfo.source", "pk": 11101, "fields": {"orig_filename": "Lampel_Josef_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418f.", "author": "", "orig_id": 1416587}}, {"model": "metainfo.source", "pk": 11102, "fields": {"orig_filename": "Lampertico_Fedele_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419", "author": "", "orig_id": 1416652}}, {"model": "metainfo.source", "pk": 11103, "fields": {"orig_filename": "Lampert_Carl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419", "author": "", "orig_id": 1416651}}, {"model": "metainfo.source", "pk": 11104, "fields": {"orig_filename": "Lampe_Evgen_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418", "author": "", "orig_id": 1416582}}, {"model": "metainfo.source", "pk": 11105, "fields": {"orig_filename": "Lampe_Francisek_1859_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418", "author": "", "orig_id": 1416586}}, {"model": "metainfo.source", "pk": 11106, "fields": {"orig_filename": "Lampi_Alexander_1810_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419f.", "author": "", "orig_id": 1416653}}, {"model": "metainfo.source", "pk": 11107, "fields": {"orig_filename": "Lampi_Franz-Ferdinand_1782_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 420", "author": "", "orig_id": 1416654}}, {"model": "metainfo.source", "pk": 11108, "fields": {"orig_filename": "Lampi_Johann-Bapt-Matthias_1807_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416657}}, {"model": "metainfo.source", "pk": 11109, "fields": {"orig_filename": "Lampi_Johann-Bapt_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 420", "author": "", "orig_id": 1416655}}, {"model": "metainfo.source", "pk": 11110, "fields": {"orig_filename": "Lampi_Johann-Bapt_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416656}}, {"model": "metainfo.source", "pk": 11111, "fields": {"orig_filename": "Lamprecht_Johann-Ev_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416658}}, {"model": "metainfo.source", "pk": 11112, "fields": {"orig_filename": "Lamprecht_Lukas_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421f.", "author": "", "orig_id": 1416659}}, {"model": "metainfo.source", "pk": 11113, "fields": {"orig_filename": "Lamprecht_Rudolf_1781_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416660}}, {"model": "metainfo.source", "pk": 11114, "fields": {"orig_filename": "Lampugnani_Achille_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416661}}, {"model": "metainfo.source", "pk": 11115, "fields": {"orig_filename": "Lampugnani_Alessandro__1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416662}}, {"model": "metainfo.source", "pk": 11116, "fields": {"orig_filename": "Lam_Jan-Pawel-Ferdynand_1838_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409", "author": "", "orig_id": 1416494}}, {"model": "metainfo.source", "pk": 11117, "fields": {"orig_filename": "Lancerotto_Egisto_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416663}}, {"model": "metainfo.source", "pk": 11118, "fields": {"orig_filename": "Lancetti_Vincenzo_1767_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422f.", "author": "", "orig_id": 1416664}}, {"model": "metainfo.source", "pk": 11119, "fields": {"orig_filename": "Lanckoronski-Brzezie_Karl_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423", "author": "", "orig_id": 1416665}}, {"model": "metainfo.source", "pk": 11120, "fields": {"orig_filename": "Lanczy_Gyula_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423", "author": "", "orig_id": 1416666}}, {"model": "metainfo.source", "pk": 11121, "fields": {"orig_filename": "Lanczy_Ilka_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423f.", "author": "", "orig_id": 1416667}}, {"model": "metainfo.source", "pk": 11122, "fields": {"orig_filename": "Lanczy_Leo_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416668}}, {"model": "metainfo.source", "pk": 11123, "fields": {"orig_filename": "Landauer_Robert_1908_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427", "author": "", "orig_id": 1415300}}, {"model": "metainfo.source", "pk": 11124, "fields": {"orig_filename": "Landauer_Stephan_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427f.", "author": "", "orig_id": 1415301}}, {"model": "metainfo.source", "pk": 11125, "fields": {"orig_filename": "Landau_Alajos_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416669}}, {"model": "metainfo.source", "pk": 11126, "fields": {"orig_filename": "Landau_Alfred_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416670}}, {"model": "metainfo.source", "pk": 11127, "fields": {"orig_filename": "Landau_Hermann-Joseph_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424f.", "author": "", "orig_id": 1416671}}, {"model": "metainfo.source", "pk": 11128, "fields": {"orig_filename": "Landau_Israel_1758_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416672}}, {"model": "metainfo.source", "pk": 11129, "fields": {"orig_filename": "Landau_Jehuda-Leib_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416673}}, {"model": "metainfo.source", "pk": 11130, "fields": {"orig_filename": "Landau_Jehuda-Menachem_1861_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416674}}, {"model": "metainfo.source", "pk": 11131, "fields": {"orig_filename": "Landau_Leopold_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415296}}, {"model": "metainfo.source", "pk": 11132, "fields": {"orig_filename": "Landau_Leo_1877_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425f.", "author": "", "orig_id": 1416675}}, {"model": "metainfo.source", "pk": 11133, "fields": {"orig_filename": "Landau_Leo_1878_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415295}}, {"model": "metainfo.source", "pk": 11134, "fields": {"orig_filename": "Landau_Leo_1891_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1459628}}, {"model": "metainfo.source", "pk": 11135, "fields": {"orig_filename": "Landau_Markus_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415297}}, {"model": "metainfo.source", "pk": 11136, "fields": {"orig_filename": "Landau_Max_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426f.", "author": "", "orig_id": 1415298}}, {"model": "metainfo.source", "pk": 11137, "fields": {"orig_filename": "Landau_Max_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427", "author": "", "orig_id": 1415299}}, {"model": "metainfo.source", "pk": 11138, "fields": {"orig_filename": "Landerer-Fueskut_Lajos_1800_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415302}}, {"model": "metainfo.source", "pk": 11139, "fields": {"orig_filename": "Landesberger_Adolf_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415304}}, {"model": "metainfo.source", "pk": 11140, "fields": {"orig_filename": "Landesberg_Alexander_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415303}}, {"model": "metainfo.source", "pk": 11141, "fields": {"orig_filename": "Landesmann_Heinrich_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428f.", "author": "", "orig_id": 1415305}}, {"model": "metainfo.source", "pk": 11142, "fields": {"orig_filename": "Landfras_Alois-Josef_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 429f.", "author": "", "orig_id": 1415306}}, {"model": "metainfo.source", "pk": 11143, "fields": {"orig_filename": "Landi-Pindemonte_Isotta_1750_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430", "author": "", "orig_id": 1415307}}, {"model": "metainfo.source", "pk": 11144, "fields": {"orig_filename": "Landler_Jenoe_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430", "author": "", "orig_id": 1415308}}, {"model": "metainfo.source", "pk": 11145, "fields": {"orig_filename": "Landmann_Julius_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430f.", "author": "", "orig_id": 1415309}}, {"model": "metainfo.source", "pk": 11146, "fields": {"orig_filename": "Landner_Johann-Bapt_1780_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415310}}, {"model": "metainfo.source", "pk": 11147, "fields": {"orig_filename": "Landner_Josef_1883_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415311}}, {"model": "metainfo.source", "pk": 11148, "fields": {"orig_filename": "Landriani_Alessandro_1856_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415312}}, {"model": "metainfo.source", "pk": 11149, "fields": {"orig_filename": "Landriani_Carlo_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431f.", "author": "", "orig_id": 1415313}}, {"model": "metainfo.source", "pk": 11150, "fields": {"orig_filename": "Landriani_Carlo_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415314}}, {"model": "metainfo.source", "pk": 11151, "fields": {"orig_filename": "Landriani_Gaetano_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415315}}, {"model": "metainfo.source", "pk": 11152, "fields": {"orig_filename": "Kurzbauer_Josefine_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416021}}, {"model": "metainfo.source", "pk": 11153, "fields": {"orig_filename": "Kurzova_Ruzena_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416022}}, {"model": "metainfo.source", "pk": 11154, "fields": {"orig_filename": "Kurzweil_Max_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369f.", "author": "", "orig_id": 1416023}}, {"model": "metainfo.source", "pk": 11155, "fields": {"orig_filename": "Kurzwernhart_Robert_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370", "author": "", "orig_id": 1416024}}, {"model": "metainfo.source", "pk": 11156, "fields": {"orig_filename": "Kurz_Anton_1799_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 366", "author": "", "orig_id": 1415942}}, {"model": "metainfo.source", "pk": 11157, "fields": {"orig_filename": "Kurz_Franz_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 366", "author": "", "orig_id": 1415943}}, {"model": "metainfo.source", "pk": 11158, "fields": {"orig_filename": "Kurz_Karl-Friedrich_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367", "author": "", "orig_id": 1415944}}, {"model": "metainfo.source", "pk": 11159, "fields": {"orig_filename": "Kurz_Selma_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367", "author": "", "orig_id": 1416014}}, {"model": "metainfo.source", "pk": 11160, "fields": {"orig_filename": "Kurz_Vilem_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367f.", "author": "", "orig_id": 1416015}}, {"model": "metainfo.source", "pk": 11161, "fields": {"orig_filename": "Kusar_Marcel_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370", "author": "", "orig_id": 1416025}}, {"model": "metainfo.source", "pk": 11162, "fields": {"orig_filename": "Kuschar_Rudolf_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370f.", "author": "", "orig_id": 1416026}}, {"model": "metainfo.source", "pk": 11163, "fields": {"orig_filename": "Kusdas_Rudolf_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371", "author": "", "orig_id": 1416027}}, {"model": "metainfo.source", "pk": 11164, "fields": {"orig_filename": "Kusej_Radoslav_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371", "author": "", "orig_id": 1416028}}, {"model": "metainfo.source", "pk": 11165, "fields": {"orig_filename": "Kuslan_Dragojlo_1817_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371f.", "author": "", "orig_id": 1416029}}, {"model": "metainfo.source", "pk": 11166, "fields": {"orig_filename": "Kusmanek-Burgneustaedten_Hermann_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372", "author": "", "orig_id": 1416030}}, {"model": "metainfo.source", "pk": 11167, "fields": {"orig_filename": "Kuster_Josef_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372", "author": "", "orig_id": 1416031}}, {"model": "metainfo.source", "pk": 11168, "fields": {"orig_filename": "Kusy-Dubrav_Emanuel_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373", "author": "", "orig_id": 1416033}}, {"model": "metainfo.source", "pk": 11169, "fields": {"orig_filename": "Kusy_Wolfgang_1842_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372f.", "author": "", "orig_id": 1416032}}, {"model": "metainfo.source", "pk": 11170, "fields": {"orig_filename": "Kuthy_Lajos_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373", "author": "", "orig_id": 1416034}}, {"model": "metainfo.source", "pk": 11171, "fields": {"orig_filename": "Kutiak_August-Ignaz_1881_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373f.", "author": "", "orig_id": 1416035}}, {"model": "metainfo.source", "pk": 11172, "fields": {"orig_filename": "Kutrzeba_Stanislaw_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374", "author": "", "orig_id": 1416036}}, {"model": "metainfo.source", "pk": 11173, "fields": {"orig_filename": "Kutscha-Lissberg_Ida_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374", "author": "", "orig_id": 1416037}}, {"model": "metainfo.source", "pk": 11174, "fields": {"orig_filename": "Kutschera-Woborsky_Oswald_1887_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 376", "author": "", "orig_id": 1416114}}, {"model": "metainfo.source", "pk": 11175, "fields": {"orig_filename": "Kutschera_Fritz_1883_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374f.", "author": "", "orig_id": 1416108}}, {"model": "metainfo.source", "pk": 11176, "fields": {"orig_filename": "Kutschera_Hugo_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416109}}, {"model": "metainfo.source", "pk": 11177, "fields": {"orig_filename": "Kutschera_Johann-Nep_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416110}}, {"model": "metainfo.source", "pk": 11178, "fields": {"orig_filename": "Kutschera_Richard_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416111}}, {"model": "metainfo.source", "pk": 11179, "fields": {"orig_filename": "Kutschera_Tilly_1890_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416112}}, {"model": "metainfo.source", "pk": 11180, "fields": {"orig_filename": "Kutschera_Viktor_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375f.", "author": "", "orig_id": 1416113}}, {"model": "metainfo.source", "pk": 11181, "fields": {"orig_filename": "Kutschker_Johann-Rudolf_1810_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 376f.", "author": "", "orig_id": 1416115}}, {"model": "metainfo.source", "pk": 11182, "fields": {"orig_filename": "Kuttnar_Franz-Xaver_1793_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416116}}, {"model": "metainfo.source", "pk": 11183, "fields": {"orig_filename": "Kuun-Osdola_Geza_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416117}}, {"model": "metainfo.source", "pk": 11184, "fields": {"orig_filename": "Kuun-Osdola_Kocsard_1803_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416118}}, {"model": "metainfo.source", "pk": 11185, "fields": {"orig_filename": "Kuwasseg_Josef_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377f.", "author": "", "orig_id": 1416119}}, {"model": "metainfo.source", "pk": 11186, "fields": {"orig_filename": "Kuwasseg_Karl-Josef_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378", "author": "", "orig_id": 1416120}}, {"model": "metainfo.source", "pk": 11187, "fields": {"orig_filename": "Kuwasseg_Leopold_1804_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378", "author": "", "orig_id": 1416121}}, {"model": "metainfo.source", "pk": 11188, "fields": {"orig_filename": "Kux_Johann_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378f.", "author": "", "orig_id": 1416122}}, {"model": "metainfo.source", "pk": 11189, "fields": {"orig_filename": "Kuzel_Hans_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379", "author": "", "orig_id": 1416123}}, {"model": "metainfo.source", "pk": 11190, "fields": {"orig_filename": "Kuzmanic_Ante_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379f.", "author": "", "orig_id": 1416125}}, {"model": "metainfo.source", "pk": 11191, "fields": {"orig_filename": "Kuzmanovic_Adalbert_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380", "author": "", "orig_id": 1416126}}, {"model": "metainfo.source", "pk": 11192, "fields": {"orig_filename": "Kuzmany_Karol_1806_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380", "author": "", "orig_id": 1419388}}, {"model": "metainfo.source", "pk": 11193, "fields": {"orig_filename": "Kuzma_Bohumil_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379", "author": "", "orig_id": 1416124}}, {"model": "metainfo.source", "pk": 11194, "fields": {"orig_filename": "Kuzmik_Pal_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380f.", "author": "", "orig_id": 1416127}}, {"model": "metainfo.source", "pk": 11195, "fields": {"orig_filename": "Kuzsinszky_Balint_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416128}}, {"model": "metainfo.source", "pk": 11196, "fields": {"orig_filename": "Kvacala_Jan_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416129}}, {"model": "metainfo.source", "pk": 11197, "fields": {"orig_filename": "Kvapil_Frantisek_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416198}}, {"model": "metainfo.source", "pk": 11198, "fields": {"orig_filename": "Kvapil_Jaroslav_1868_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381f.", "author": "", "orig_id": 1416199}}, {"model": "metainfo.source", "pk": 11199, "fields": {"orig_filename": "Kvassay_Jenoe_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 382f.", "author": "", "orig_id": 1416200}}, {"model": "metainfo.source", "pk": 11200, "fields": {"orig_filename": "Kvaternik_Eugen_1825_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 383", "author": "", "orig_id": 1416201}}, {"model": "metainfo.source", "pk": 11201, "fields": {"orig_filename": "Kvaternik_Slavko_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 383f.", "author": "", "orig_id": 1416202}}, {"model": "metainfo.source", "pk": 11202, "fields": {"orig_filename": "Kveder_Zofka_1878_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 384", "author": "", "orig_id": 1416203}}, {"model": "metainfo.source", "pk": 11203, "fields": {"orig_filename": "Kvet_Frantisek-Bolemir_1825_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 384", "author": "", "orig_id": 1416204}}, {"model": "metainfo.source", "pk": 11204, "fields": {"orig_filename": "Kvicala_Jan_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385", "author": "", "orig_id": 1416205}}, {"model": "metainfo.source", "pk": 11205, "fields": {"orig_filename": "Kwapil_Johann_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385", "author": "", "orig_id": 1416206}}, {"model": "metainfo.source", "pk": 11206, "fields": {"orig_filename": "Kwaysser_Marie_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385f.", "author": "", "orig_id": 1416207}}, {"model": "metainfo.source", "pk": 11207, "fields": {"orig_filename": "Kwietniewski_Kazimierz_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416208}}, {"model": "metainfo.source", "pk": 11208, "fields": {"orig_filename": "Kwisda_Adolf_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416209}}, {"model": "metainfo.source", "pk": 11209, "fields": {"orig_filename": "Kwisda_Ferdinand_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416210}}, {"model": "metainfo.source", "pk": 11210, "fields": {"orig_filename": "Kwizda-Hochstern_Franz-Johann_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386f.", "author": "", "orig_id": 1416211}}, {"model": "metainfo.source", "pk": 11211, "fields": {"orig_filename": "Kypta_Johann_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 387", "author": "", "orig_id": 1416212}}, {"model": "metainfo.source", "pk": 11212, "fields": {"orig_filename": "Kyrle_Georg_1887_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 387f.", "author": "", "orig_id": 1416213}}, {"model": "metainfo.source", "pk": 11213, "fields": {"orig_filename": "Kyrle_Josef_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 388", "author": "", "orig_id": 1416214}}, {"model": "metainfo.source", "pk": 11214, "fields": {"orig_filename": "Kyselak_Joseph_1799_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389", "author": "", "orig_id": 1416216}}, {"model": "metainfo.source", "pk": 11215, "fields": {"orig_filename": "Kysela_Frantisek_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 388f.", "author": "", "orig_id": 1416215}}, {"model": "metainfo.source", "pk": 11216, "fields": {"orig_filename": "Laaba-Rosenfeld_Menrad_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389", "author": "", "orig_id": 1416217}}, {"model": "metainfo.source", "pk": 11217, "fields": {"orig_filename": "Laban_Ferdinand_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389f.", "author": "", "orig_id": 1416218}}, {"model": "metainfo.source", "pk": 11218, "fields": {"orig_filename": "Labitzky_August_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 390", "author": "", "orig_id": 1416219}}, {"model": "metainfo.source", "pk": 11219, "fields": {"orig_filename": "Labitzky_Frantisek-Josef_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 390f.", "author": "", "orig_id": 1416287}}, {"model": "metainfo.source", "pk": 11220, "fields": {"orig_filename": "Labler_Ludvik_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416288}}, {"model": "metainfo.source", "pk": 11221, "fields": {"orig_filename": "Labler_Wladimir_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416289}}, {"model": "metainfo.source", "pk": 11222, "fields": {"orig_filename": "Laborfalvy_Roza_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391f.", "author": "", "orig_id": 1416291}}, {"model": "metainfo.source", "pk": 11223, "fields": {"orig_filename": "Labor_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416290}}, {"model": "metainfo.source", "pk": 11224, "fields": {"orig_filename": "Labus_Carlo_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416292}}, {"model": "metainfo.source", "pk": 11225, "fields": {"orig_filename": "Labus_Giovanni-Antonio_1806_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416294}}, {"model": "metainfo.source", "pk": 11226, "fields": {"orig_filename": "Labus_Giovanni_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416293}}, {"model": "metainfo.source", "pk": 11227, "fields": {"orig_filename": "Laccataris_Demeter_1798_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392f.", "author": "", "orig_id": 1416295}}, {"model": "metainfo.source", "pk": 11228, "fields": {"orig_filename": "Lacher_Karl_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393", "author": "", "orig_id": 1416297}}, {"model": "metainfo.source", "pk": 11229, "fields": {"orig_filename": "Lachmann_Friedrich_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393f.", "author": "", "orig_id": 1416298}}, {"model": "metainfo.source", "pk": 11230, "fields": {"orig_filename": "Lachmayr_Johann_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394", "author": "", "orig_id": 1416299}}, {"model": "metainfo.source", "pk": 11231, "fields": {"orig_filename": "Lachnith_Ludwig-Wenzel_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394", "author": "", "orig_id": 1416300}}, {"model": "metainfo.source", "pk": 11232, "fields": {"orig_filename": "Lachowicz_Bronislaw_1857_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394f.", "author": "", "orig_id": 1416301}}, {"model": "metainfo.source", "pk": 11233, "fields": {"orig_filename": "Lach_Friedrich_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393", "author": "", "orig_id": 1416296}}, {"model": "metainfo.source", "pk": 11234, "fields": {"orig_filename": "Lacina_Josef_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416302}}, {"model": "metainfo.source", "pk": 11235, "fields": {"orig_filename": "Lackner_Hans_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416304}}, {"model": "metainfo.source", "pk": 11236, "fields": {"orig_filename": "Lackner_Johann_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395f.", "author": "", "orig_id": 1416305}}, {"model": "metainfo.source", "pk": 11237, "fields": {"orig_filename": "Lack_Stanislaw_1876_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416303}}, {"model": "metainfo.source", "pk": 11238, "fields": {"orig_filename": "Laczai-Szabo_Jozsef_1764_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396", "author": "", "orig_id": 1416307}}, {"model": "metainfo.source", "pk": 11239, "fields": {"orig_filename": "Laczko_Dezsoe_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396", "author": "", "orig_id": 1416308}}, {"model": "metainfo.source", "pk": 11240, "fields": {"orig_filename": "Ladanyi_Gedeon_1824_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396f.", "author": "", "orig_id": 1416310}}, {"model": "metainfo.source", "pk": 11241, "fields": {"orig_filename": "Ladecky_Jan_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397", "author": "", "orig_id": 1416381}}, {"model": "metainfo.source", "pk": 11242, "fields": {"orig_filename": "Ladinig_Martin_1852_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397", "author": "", "orig_id": 1416382}}, {"model": "metainfo.source", "pk": 11243, "fields": {"orig_filename": "Ladnowski_Aleksander_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397f.", "author": "", "orig_id": 1416383}}, {"model": "metainfo.source", "pk": 11244, "fields": {"orig_filename": "Ladstaetter_Peter_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 398", "author": "", "orig_id": 1416384}}, {"model": "metainfo.source", "pk": 11245, "fields": {"orig_filename": "Ladstaetter_Peter_1816_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 398f.", "author": "", "orig_id": 1416385}}, {"model": "metainfo.source", "pk": 11246, "fields": {"orig_filename": "Ladurner_Adolf_1798_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416386}}, {"model": "metainfo.source", "pk": 11247, "fields": {"orig_filename": "Ladurner_Alois_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416387}}, {"model": "metainfo.source", "pk": 11248, "fields": {"orig_filename": "Ladurner_Anton_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416388}}, {"model": "metainfo.source", "pk": 11249, "fields": {"orig_filename": "Ladurner_Ignaz-Anton_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399f.", "author": "", "orig_id": 1416389}}, {"model": "metainfo.source", "pk": 11250, "fields": {"orig_filename": "Ladurner_Joseph-Alois_1769_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416390}}, {"model": "metainfo.source", "pk": 11251, "fields": {"orig_filename": "Ladurner_Joseph-Jacob_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416391}}, {"model": "metainfo.source", "pk": 11252, "fields": {"orig_filename": "Ladurner_Justinian_1808_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416392}}, {"model": "metainfo.source", "pk": 11253, "fields": {"orig_filename": "Ladurner_Matthias_1772_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400f.", "author": "", "orig_id": 1416393}}, {"model": "metainfo.source", "pk": 11254, "fields": {"orig_filename": "Ladziansky-Ledenyi_Julius_1903_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416394}}, {"model": "metainfo.source", "pk": 11255, "fields": {"orig_filename": "Laemel_Leopold_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416395}}, {"model": "metainfo.source", "pk": 11256, "fields": {"orig_filename": "Kuhn_Carl-Friedrich_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415571}}, {"model": "metainfo.source", "pk": 11257, "fields": {"orig_filename": "Kuhn_Dismas_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335f.", "author": "", "orig_id": 1415572}}, {"model": "metainfo.source", "pk": 11258, "fields": {"orig_filename": "Kuhn_Ernst_1859_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336", "author": "", "orig_id": 1415573}}, {"model": "metainfo.source", "pk": 11259, "fields": {"orig_filename": "Kuhn_Franz-Xaver_1888_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336", "author": "", "orig_id": 1415574}}, {"model": "metainfo.source", "pk": 11260, "fields": {"orig_filename": "Kuh_Anton_1890_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1458929}}, {"model": "metainfo.source", "pk": 11261, "fields": {"orig_filename": "Kuh_David_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 332f.", "author": "", "orig_id": 1415564}}, {"model": "metainfo.source", "pk": 11262, "fields": {"orig_filename": "Kuh_Emil_1828_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333", "author": "", "orig_id": 1415565}}, {"model": "metainfo.source", "pk": 11263, "fields": {"orig_filename": "Kujundzic_Kosta_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337", "author": "", "orig_id": 1415577}}, {"model": "metainfo.source", "pk": 11264, "fields": {"orig_filename": "Kukovic_Josip_1782_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415651}}, {"model": "metainfo.source", "pk": 11265, "fields": {"orig_filename": "Kukucin_Martin_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415652}}, {"model": "metainfo.source", "pk": 11266, "fields": {"orig_filename": "Kukula_Otakar_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415653}}, {"model": "metainfo.source", "pk": 11267, "fields": {"orig_filename": "Kukula_Richard-Cornelius_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339", "author": "", "orig_id": 1415655}}, {"model": "metainfo.source", "pk": 11268, "fields": {"orig_filename": "Kukula_Richard_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339", "author": "", "orig_id": 1415654}}, {"model": "metainfo.source", "pk": 11269, "fields": {"orig_filename": "Kukuljevic-Sakcinski_Ivan_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339f.", "author": "", "orig_id": 1415656}}, {"model": "metainfo.source", "pk": 11270, "fields": {"orig_filename": "Kuk_Karl_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337f.", "author": "", "orig_id": 1415578}}, {"model": "metainfo.source", "pk": 11271, "fields": {"orig_filename": "Kuk_Wladimir_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415650}}, {"model": "metainfo.source", "pk": 11272, "fields": {"orig_filename": "Kulczycki_Ludwik_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 340", "author": "", "orig_id": 1415657}}, {"model": "metainfo.source", "pk": 11273, "fields": {"orig_filename": "Kulda_Benes-Metod_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 340f.", "author": "", "orig_id": 1415658}}, {"model": "metainfo.source", "pk": 11274, "fields": {"orig_filename": "Kulik_Jakob-Philipp_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341", "author": "", "orig_id": 1415659}}, {"model": "metainfo.source", "pk": 11275, "fields": {"orig_filename": "Kulisch_Max_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341", "author": "", "orig_id": 1415660}}, {"model": "metainfo.source", "pk": 11276, "fields": {"orig_filename": "Kulka_Adolf_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341f.", "author": "", "orig_id": 1415661}}, {"model": "metainfo.source", "pk": 11277, "fields": {"orig_filename": "Kulka_Georg_1897_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342", "author": "", "orig_id": 1415662}}, {"model": "metainfo.source", "pk": 11278, "fields": {"orig_filename": "Kulka_Leopoldine_1872_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342", "author": "", "orig_id": 1415663}}, {"model": "metainfo.source", "pk": 11279, "fields": {"orig_filename": "Kulke_Eduard_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342f.", "author": "", "orig_id": 1415664}}, {"model": "metainfo.source", "pk": 11280, "fields": {"orig_filename": "Kulmer_Franjo_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415665}}, {"model": "metainfo.source", "pk": 11281, "fields": {"orig_filename": "Kulmer_Friedrich_1814_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415666}}, {"model": "metainfo.source", "pk": 11282, "fields": {"orig_filename": "Kulovec_Fran-S_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415667}}, {"model": "metainfo.source", "pk": 11283, "fields": {"orig_filename": "Kulp-Trolcov_Vojtech_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343f.", "author": "", "orig_id": 1415668}}, {"model": "metainfo.source", "pk": 11284, "fields": {"orig_filename": "Kulstrunk_Franz_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415669}}, {"model": "metainfo.source", "pk": 11285, "fields": {"orig_filename": "Kultsar_Istvan_1760_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415670}}, {"model": "metainfo.source", "pk": 11286, "fields": {"orig_filename": "Kumaniecki_Kazimierz-Wladyslaw_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415671}}, {"model": "metainfo.source", "pk": 11287, "fields": {"orig_filename": "Kumar_Josef-August_1789_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344f.", "author": "", "orig_id": 1415742}}, {"model": "metainfo.source", "pk": 11288, "fields": {"orig_filename": "Kumicic_Eugen_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 345", "author": "", "orig_id": 1415744}}, {"model": "metainfo.source", "pk": 11289, "fields": {"orig_filename": "Kummer-Falkenfehd_Heinrich_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346", "author": "", "orig_id": 1415746}}, {"model": "metainfo.source", "pk": 11290, "fields": {"orig_filename": "Kummer_Karl-Ferdinand_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 345f.", "author": "", "orig_id": 1415745}}, {"model": "metainfo.source", "pk": 11291, "fields": {"orig_filename": "Kumpf_Johann-Gottfried_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346", "author": "", "orig_id": 1415747}}, {"model": "metainfo.source", "pk": 11292, "fields": {"orig_filename": "Kuna_Franz_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415750}}, {"model": "metainfo.source", "pk": 11293, "fields": {"orig_filename": "Kuncze_Leo_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415753}}, {"model": "metainfo.source", "pk": 11294, "fields": {"orig_filename": "Kuncz_Adolf-Josef_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347f.", "author": "", "orig_id": 1415752}}, {"model": "metainfo.source", "pk": 11295, "fields": {"orig_filename": "Kunc_Matija_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415751}}, {"model": "metainfo.source", "pk": 11296, "fields": {"orig_filename": "Kundegraber_Michael_1844_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415754}}, {"model": "metainfo.source", "pk": 11297, "fields": {"orig_filename": "Kundek_Josip_1809_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415755}}, {"model": "metainfo.source", "pk": 11298, "fields": {"orig_filename": "Kundigraber_Hermann_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 349", "author": "", "orig_id": 1415757}}, {"model": "metainfo.source", "pk": 11299, "fields": {"orig_filename": "Kundi_Julius_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415756}}, {"model": "metainfo.source", "pk": 11300, "fields": {"orig_filename": "Kundmann_Karl_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 349f.", "author": "", "orig_id": 1415758}}, {"model": "metainfo.source", "pk": 11301, "fields": {"orig_filename": "Kundrat-Lueftenfeld_Josef_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 350f.", "author": "", "orig_id": 1415760}}, {"model": "metainfo.source", "pk": 11302, "fields": {"orig_filename": "Kundrat_Johann_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 350", "author": "", "orig_id": 1415759}}, {"model": "metainfo.source", "pk": 11303, "fields": {"orig_filename": "Kunerth_Johann-Leopold_1784_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415761}}, {"model": "metainfo.source", "pk": 11304, "fields": {"orig_filename": "Kunike_Adolf-Friedrich_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415831}}, {"model": "metainfo.source", "pk": 11305, "fields": {"orig_filename": "Kunitsch_Michael_1765_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352", "author": "", "orig_id": 1415833}}, {"model": "metainfo.source", "pk": 11306, "fields": {"orig_filename": "Kunits_Ludwig-Maria_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351f.", "author": "", "orig_id": 1415832}}, {"model": "metainfo.source", "pk": 11307, "fields": {"orig_filename": "Kunitzer_Moses_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352", "author": "", "orig_id": 1415834}}, {"model": "metainfo.source", "pk": 11308, "fields": {"orig_filename": "Kunos_Ignac_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352f.", "author": "", "orig_id": 1415835}}, {"model": "metainfo.source", "pk": 11309, "fields": {"orig_filename": "Kunsic_Ivan_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415836}}, {"model": "metainfo.source", "pk": 11310, "fields": {"orig_filename": "Kunst_Karl_1895_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415837}}, {"model": "metainfo.source", "pk": 11311, "fields": {"orig_filename": "Kunszt_Josef_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415838}}, {"model": "metainfo.source", "pk": 11312, "fields": {"orig_filename": "Kuntschak_Abund_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353f.", "author": "", "orig_id": 1415839}}, {"model": "metainfo.source", "pk": 11313, "fields": {"orig_filename": "Kunwald_Ernst_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415840}}, {"model": "metainfo.source", "pk": 11314, "fields": {"orig_filename": "Kunwald_Gottfried_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415841}}, {"model": "metainfo.source", "pk": 11315, "fields": {"orig_filename": "Kuny_Domokos_1754_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415842}}, {"model": "metainfo.source", "pk": 11316, "fields": {"orig_filename": "Kunzek-Lichton_August_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357", "author": "", "orig_id": 1415851}}, {"model": "metainfo.source", "pk": 11317, "fields": {"orig_filename": "Kunze_Wilhelm_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356f.", "author": "", "orig_id": 1415850}}, {"model": "metainfo.source", "pk": 11318, "fields": {"orig_filename": "Kunz_Anton-Thomas_1756_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354f.", "author": "", "orig_id": 1415843}}, {"model": "metainfo.source", "pk": 11319, "fields": {"orig_filename": "Kunz_Carlo_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415844}}, {"model": "metainfo.source", "pk": 11320, "fields": {"orig_filename": "Kunz_Eduard_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1442472}}, {"model": "metainfo.source", "pk": 11321, "fields": {"orig_filename": "Kunz_Gottfried_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415845}}, {"model": "metainfo.source", "pk": 11322, "fields": {"orig_filename": "Kunz_Johann-Karl-Kassian_1832_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415846}}, {"model": "metainfo.source", "pk": 11323, "fields": {"orig_filename": "Kunz_Josef_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355f.", "author": "", "orig_id": 1415847}}, {"model": "metainfo.source", "pk": 11324, "fields": {"orig_filename": "Kunz_Ludwig-Adam_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356", "author": "", "orig_id": 1415848}}, {"model": "metainfo.source", "pk": 11325, "fields": {"orig_filename": "Kunz_Otto_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356", "author": "", "orig_id": 1415849}}, {"model": "metainfo.source", "pk": 11326, "fields": {"orig_filename": "Kun_Frantisek_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415749}}, {"model": "metainfo.source", "pk": 11327, "fields": {"orig_filename": "Kupcok_Samuel_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357", "author": "", "orig_id": 1415852}}, {"model": "metainfo.source", "pk": 11328, "fields": {"orig_filename": "Kupelwieser_Franz_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357f.", "author": "", "orig_id": 1415853}}, {"model": "metainfo.source", "pk": 11329, "fields": {"orig_filename": "Kupelwieser_Hans_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 358", "author": "", "orig_id": 1415854}}, {"model": "metainfo.source", "pk": 11330, "fields": {"orig_filename": "Kupelwieser_Karl_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 359", "author": "", "orig_id": 1415855}}, {"model": "metainfo.source", "pk": 11331, "fields": {"orig_filename": "Kupelwieser_Leopold_1796_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 359f.", "author": "", "orig_id": 1415921}}, {"model": "metainfo.source", "pk": 11332, "fields": {"orig_filename": "Kupelwieser_Paul_1843_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 360", "author": "", "orig_id": 1411495}}, {"model": "metainfo.source", "pk": 11333, "fields": {"orig_filename": "Kupfer-Berger_Ludmilla_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415923}}, {"model": "metainfo.source", "pk": 11334, "fields": {"orig_filename": "Kupfer-Gomansky_Caesarine_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415924}}, {"model": "metainfo.source", "pk": 11335, "fields": {"orig_filename": "Kupfer_Johann-Michael_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 360f.", "author": "", "orig_id": 1415922}}, {"model": "metainfo.source", "pk": 11336, "fields": {"orig_filename": "Kupka_Josef_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415925}}, {"model": "metainfo.source", "pk": 11337, "fields": {"orig_filename": "Kupka_Peter-Friedrich_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361f.", "author": "", "orig_id": 1415926}}, {"model": "metainfo.source", "pk": 11338, "fields": {"orig_filename": "Kuppa_Josef_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415927}}, {"model": "metainfo.source", "pk": 11339, "fields": {"orig_filename": "Kuppe_Rudolf_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415928}}, {"model": "metainfo.source", "pk": 11340, "fields": {"orig_filename": "Kurak_Frantisek_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415929}}, {"model": "metainfo.source", "pk": 11341, "fields": {"orig_filename": "Kuralt_Franjo_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415930}}, {"model": "metainfo.source", "pk": 11342, "fields": {"orig_filename": "Kuranda_Felix_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362f.", "author": "", "orig_id": 1415931}}, {"model": "metainfo.source", "pk": 11343, "fields": {"orig_filename": "Kuranda_Ignaz_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 363", "author": "", "orig_id": 1415932}}, {"model": "metainfo.source", "pk": 11344, "fields": {"orig_filename": "Kurelac_Fran_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 363f.", "author": "", "orig_id": 1415933}}, {"model": "metainfo.source", "pk": 11345, "fields": {"orig_filename": "Kurka_Adalbert-Josef_1785_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415934}}, {"model": "metainfo.source", "pk": 11346, "fields": {"orig_filename": "Kurlaender-Kornfeld_Franz-August_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415935}}, {"model": "metainfo.source", "pk": 11347, "fields": {"orig_filename": "Kurrein_Adolf_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364f.", "author": "", "orig_id": 1415937}}, {"model": "metainfo.source", "pk": 11348, "fields": {"orig_filename": "Kurth_Betty_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415938}}, {"model": "metainfo.source", "pk": 11349, "fields": {"orig_filename": "Kurth_Ernst_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415939}}, {"model": "metainfo.source", "pk": 11350, "fields": {"orig_filename": "Kurtz_Arthur_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415940}}, {"model": "metainfo.source", "pk": 11351, "fields": {"orig_filename": "Kurtz_August_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365f.", "author": "", "orig_id": 1415941}}, {"model": "metainfo.source", "pk": 11352, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Franz_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416016}}, {"model": "metainfo.source", "pk": 11353, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Ludwig_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416017}}, {"model": "metainfo.source", "pk": 11354, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Patritius-Cajetan-Franz_1758_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416018}}, {"model": "metainfo.source", "pk": 11355, "fields": {"orig_filename": "Kurzawa_Anton_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368f.", "author": "", "orig_id": 1416019}}, {"model": "metainfo.source", "pk": 11356, "fields": {"orig_filename": "Kurzbauer_Hans-Eduard_1840_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416020}}, {"model": "metainfo.source", "pk": 11357, "fields": {"orig_filename": "Kruis_Karl_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302", "author": "", "orig_id": 1416555}}, {"model": "metainfo.source", "pk": 11358, "fields": {"orig_filename": "Krukowski_Joseph_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302f.", "author": "", "orig_id": 1416556}}, {"model": "metainfo.source", "pk": 11359, "fields": {"orig_filename": "Krumholz_Ferdinand_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303", "author": "", "orig_id": 1416557}}, {"model": "metainfo.source", "pk": 11360, "fields": {"orig_filename": "Krumpholz_Johann_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303", "author": "", "orig_id": 1416559}}, {"model": "metainfo.source", "pk": 11361, "fields": {"orig_filename": "Krupka_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303f.", "author": "", "orig_id": 1416560}}, {"model": "metainfo.source", "pk": 11362, "fields": {"orig_filename": "Krupp_Arthur_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 304", "author": "", "orig_id": 1416561}}, {"model": "metainfo.source", "pk": 11363, "fields": {"orig_filename": "Krupp_Hermann_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 304f.", "author": "", "orig_id": 1416562}}, {"model": "metainfo.source", "pk": 11364, "fields": {"orig_filename": "Kruselnyckyj_Antin-Volodyslavovyc_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416564}}, {"model": "metainfo.source", "pk": 11365, "fields": {"orig_filename": "Kruselnyckyj_Ivan-Antonovyc_1905_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416565}}, {"model": "metainfo.source", "pk": 11366, "fields": {"orig_filename": "Krus_Franz_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 305f.", "author": "", "orig_id": 1416563}}, {"model": "metainfo.source", "pk": 11367, "fields": {"orig_filename": "Kruzik_Anton_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416566}}, {"model": "metainfo.source", "pk": 11368, "fields": {"orig_filename": "Krycinski_Walerian_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306f.", "author": "", "orig_id": 1416638}}, {"model": "metainfo.source", "pk": 11369, "fields": {"orig_filename": "Krystin_Jaroslav_1892_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416639}}, {"model": "metainfo.source", "pk": 11370, "fields": {"orig_filename": "Krystufek_Frantisek-X_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416640}}, {"model": "metainfo.source", "pk": 11371, "fields": {"orig_filename": "Krystufek_Jan-Miloslav_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416641}}, {"model": "metainfo.source", "pk": 11372, "fields": {"orig_filename": "Krzeczunowicz_Kornel_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307f.", "author": "", "orig_id": 1416642}}, {"model": "metainfo.source", "pk": 11373, "fields": {"orig_filename": "Krzesz_Mecina-Jozef_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308", "author": "", "orig_id": 1416643}}, {"model": "metainfo.source", "pk": 11374, "fields": {"orig_filename": "Krzic_Anton_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308", "author": "", "orig_id": 1416644}}, {"model": "metainfo.source", "pk": 11375, "fields": {"orig_filename": "Krziz_August-Karl_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309", "author": "", "orig_id": 1416646}}, {"model": "metainfo.source", "pk": 11376, "fields": {"orig_filename": "Krzyzanowski_Stanislaw_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309", "author": "", "orig_id": 1416647}}, {"model": "metainfo.source", "pk": 11377, "fields": {"orig_filename": "Kubala_Ludwig_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309f.", "author": "", "orig_id": 1416648}}, {"model": "metainfo.source", "pk": 11378, "fields": {"orig_filename": "Kubani_Ludovit_1830_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1416649}}, {"model": "metainfo.source", "pk": 11379, "fields": {"orig_filename": "Kubelik_Jan_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1416650}}, {"model": "metainfo.source", "pk": 11380, "fields": {"orig_filename": "Kubelka_August_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1415275}}, {"model": "metainfo.source", "pk": 11381, "fields": {"orig_filename": "Kubena_Heinrich_1855_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310f.", "author": "", "orig_id": 1415276}}, {"model": "metainfo.source", "pk": 11382, "fields": {"orig_filename": "Kubicek_Emanuel_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415277}}, {"model": "metainfo.source", "pk": 11383, "fields": {"orig_filename": "Kubiena_Friedrich_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415278}}, {"model": "metainfo.source", "pk": 11384, "fields": {"orig_filename": "Kubik_Julius_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415279}}, {"model": "metainfo.source", "pk": 11385, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Agoston_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311f.", "author": "", "orig_id": 1415280}}, {"model": "metainfo.source", "pk": 11386, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Ferenc_1796_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415281}}, {"model": "metainfo.source", "pk": 11387, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Ferenc_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415282}}, {"model": "metainfo.source", "pk": 11388, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Lajos_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415283}}, {"model": "metainfo.source", "pk": 11389, "fields": {"orig_filename": "Kubinzky_Emil_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312f.", "author": "", "orig_id": 1415284}}, {"model": "metainfo.source", "pk": 11390, "fields": {"orig_filename": "Kubista_Bohumil_1884_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 313", "author": "", "orig_id": 1415285}}, {"model": "metainfo.source", "pk": 11391, "fields": {"orig_filename": "Kubitschek_Rudolf_1895_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 313f.", "author": "", "orig_id": 1415286}}, {"model": "metainfo.source", "pk": 11392, "fields": {"orig_filename": "Kubitza_Oskar_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315", "author": "", "orig_id": 1415288}}, {"model": "metainfo.source", "pk": 11393, "fields": {"orig_filename": "Kubr_Stanislav_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315", "author": "", "orig_id": 1415289}}, {"model": "metainfo.source", "pk": 11394, "fields": {"orig_filename": "Kucera_Bohumil_1874_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315f.", "author": "", "orig_id": 1415290}}, {"model": "metainfo.source", "pk": 11395, "fields": {"orig_filename": "Kucera_Frantisek_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316", "author": "", "orig_id": 1415291}}, {"model": "metainfo.source", "pk": 11396, "fields": {"orig_filename": "Kucera_Jan-Jakub_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316f.", "author": "", "orig_id": 1415293}}, {"model": "metainfo.source", "pk": 11397, "fields": {"orig_filename": "Kucera_Jan_1838_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316", "author": "", "orig_id": 1415292}}, {"model": "metainfo.source", "pk": 11398, "fields": {"orig_filename": "Kucera_Karel_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1419223}}, {"model": "metainfo.source", "pk": 11399, "fields": {"orig_filename": "Kucera_Oton_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415294}}, {"model": "metainfo.source", "pk": 11400, "fields": {"orig_filename": "Kucera_Pavel_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415365}}, {"model": "metainfo.source", "pk": 11401, "fields": {"orig_filename": "Kuchar_Johann-Bapt_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415366}}, {"model": "metainfo.source", "pk": 11402, "fields": {"orig_filename": "Kucher_Josef_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317f.", "author": "", "orig_id": 1415367}}, {"model": "metainfo.source", "pk": 11403, "fields": {"orig_filename": "Kuchynka_Vojtech_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415368}}, {"model": "metainfo.source", "pk": 11404, "fields": {"orig_filename": "Kudler_Joseph_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318f.", "author": "", "orig_id": 1415371}}, {"model": "metainfo.source", "pk": 11405, "fields": {"orig_filename": "Kudlich_Hans_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 319", "author": "", "orig_id": 1415372}}, {"model": "metainfo.source", "pk": 11406, "fields": {"orig_filename": "Kudriaffsky_Euphemia_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 319f.", "author": "", "orig_id": 1415373}}, {"model": "metainfo.source", "pk": 11407, "fields": {"orig_filename": "Kudriaffsky_Johann_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415374}}, {"model": "metainfo.source", "pk": 11408, "fields": {"orig_filename": "Kuebeck-Kuebau_Blanche_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415375}}, {"model": "metainfo.source", "pk": 11409, "fields": {"orig_filename": "Kuebeck-Kuebau_Guido_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415376}}, {"model": "metainfo.source", "pk": 11410, "fields": {"orig_filename": "Kuebeck-Kuebau_Karl-Friedrich_1780_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320f.", "author": "", "orig_id": 1415377}}, {"model": "metainfo.source", "pk": 11411, "fields": {"orig_filename": "Kuefstein_Franz_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415378}}, {"model": "metainfo.source", "pk": 11412, "fields": {"orig_filename": "Kuefstein_Johann-Ferdinand_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415379}}, {"model": "metainfo.source", "pk": 11413, "fields": {"orig_filename": "Kuefstein_Karl_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415380}}, {"model": "metainfo.source", "pk": 11414, "fields": {"orig_filename": "Kuehlbrandt_Ernst_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415381}}, {"model": "metainfo.source", "pk": 11415, "fields": {"orig_filename": "Kuehnelt_Anton_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323f.", "author": "", "orig_id": 1415388}}, {"model": "metainfo.source", "pk": 11416, "fields": {"orig_filename": "Kuehnelt_Hugo_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415463}}, {"model": "metainfo.source", "pk": 11417, "fields": {"orig_filename": "Kuehnelt_Richard_1877_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415464}}, {"model": "metainfo.source", "pk": 11418, "fields": {"orig_filename": "Kuehnel_Gustav_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323", "author": "", "orig_id": 1415386}}, {"model": "metainfo.source", "pk": 11419, "fields": {"orig_filename": "Kuehnel_Reinhold-Wilhelm_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323", "author": "", "orig_id": 1415387}}, {"model": "metainfo.source", "pk": 11420, "fields": {"orig_filename": "Kuehnert_Franz_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415465}}, {"model": "metainfo.source", "pk": 11421, "fields": {"orig_filename": "Kuehne_Ferdinand-Karl_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415384}}, {"model": "metainfo.source", "pk": 11422, "fields": {"orig_filename": "Kuehne_Karl-Ludwig-August_1845_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322f.", "author": "", "orig_id": 1415385}}, {"model": "metainfo.source", "pk": 11423, "fields": {"orig_filename": "Kuehns_Volkmar_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324f.", "author": "", "orig_id": 1415466}}, {"model": "metainfo.source", "pk": 11424, "fields": {"orig_filename": "Kuehn_Josef_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415382}}, {"model": "metainfo.source", "pk": 11425, "fields": {"orig_filename": "Kuehn_Karl-Friedrich_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415383}}, {"model": "metainfo.source", "pk": 11426, "fields": {"orig_filename": "Kuehschelm_Josef_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325", "author": "", "orig_id": 1415467}}, {"model": "metainfo.source", "pk": 11427, "fields": {"orig_filename": "Kuelfoeldi_Viktor_1844_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325", "author": "", "orig_id": 1415468}}, {"model": "metainfo.source", "pk": 11428, "fields": {"orig_filename": "Kuenburg_Gandolph_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326", "author": "", "orig_id": 1415470}}, {"model": "metainfo.source", "pk": 11429, "fields": {"orig_filename": "Kuenburg_Maria-Bertha_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326", "author": "", "orig_id": 1415471}}, {"model": "metainfo.source", "pk": 11430, "fields": {"orig_filename": "Kuenl_Pavel_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326f.", "author": "", "orig_id": 1415472}}, {"model": "metainfo.source", "pk": 11431, "fields": {"orig_filename": "Kuensberg_Sophie_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415473}}, {"model": "metainfo.source", "pk": 11432, "fields": {"orig_filename": "Kuenssberg_Eberhard_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415477}}, {"model": "metainfo.source", "pk": 11433, "fields": {"orig_filename": "Kuenzel_Robert_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415478}}, {"model": "metainfo.source", "pk": 11434, "fields": {"orig_filename": "Kuen_Alois-Heinrich_1779_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325f.", "author": "", "orig_id": 1415469}}, {"model": "metainfo.source", "pk": 11435, "fields": {"orig_filename": "Kuernberger_Ferdinand_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327f.", "author": "", "orig_id": 1415479}}, {"model": "metainfo.source", "pk": 11436, "fields": {"orig_filename": "Kuerschak_Jozsef_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 328", "author": "", "orig_id": 1415480}}, {"model": "metainfo.source", "pk": 11437, "fields": {"orig_filename": "Kuerschner_Franz_1840_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 328f.", "author": "", "orig_id": 1415481}}, {"model": "metainfo.source", "pk": 11438, "fields": {"orig_filename": "Kuersinger_Ignaz_1795_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415482}}, {"model": "metainfo.source", "pk": 11439, "fields": {"orig_filename": "Kuerzinger_Paul-Ignaz_1750_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415483}}, {"model": "metainfo.source", "pk": 11440, "fields": {"orig_filename": "Kuffner_Christoph-Johann-Anton_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415484}}, {"model": "metainfo.source", "pk": 11441, "fields": {"orig_filename": "Kuffner_Karl_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329f.", "author": "", "orig_id": 1415556}}, {"model": "metainfo.source", "pk": 11442, "fields": {"orig_filename": "Kuffner_Moritz_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330", "author": "", "orig_id": 1415557}}, {"model": "metainfo.source", "pk": 11443, "fields": {"orig_filename": "Kugler_Emil_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330", "author": "", "orig_id": 1415558}}, {"model": "metainfo.source", "pk": 11444, "fields": {"orig_filename": "Kugler_Josef_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330f.", "author": "", "orig_id": 1415559}}, {"model": "metainfo.source", "pk": 11445, "fields": {"orig_filename": "Kugler_Paul-Franz_1836_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415560}}, {"model": "metainfo.source", "pk": 11446, "fields": {"orig_filename": "Kuglmayr_Gotthard_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415561}}, {"model": "metainfo.source", "pk": 11447, "fields": {"orig_filename": "Kugstatscher-Treuensinn_Josef_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415562}}, {"model": "metainfo.source", "pk": 11448, "fields": {"orig_filename": "Kugy_Julius_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331f.", "author": "", "orig_id": 1415563}}, {"model": "metainfo.source", "pk": 11449, "fields": {"orig_filename": "Kuh-Chrobak_Paul-Robert_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333", "author": "", "orig_id": 1415566}}, {"model": "metainfo.source", "pk": 11450, "fields": {"orig_filename": "Kuhac_Franjo_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333f.", "author": "", "orig_id": 1415567}}, {"model": "metainfo.source", "pk": 11451, "fields": {"orig_filename": "Kuhar_Lovro_1893_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 334f.", "author": "", "orig_id": 1415568}}, {"model": "metainfo.source", "pk": 11452, "fields": {"orig_filename": "Kuhe_Wilhelm_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415569}}, {"model": "metainfo.source", "pk": 11453, "fields": {"orig_filename": "Kuhn-Kuhnenfeld_Franz_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336f.", "author": "", "orig_id": 1415575}}, {"model": "metainfo.source", "pk": 11454, "fields": {"orig_filename": "Kuhn-Kunietitz_Johann_1788_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337", "author": "", "orig_id": 1415576}}, {"model": "metainfo.source", "pk": 11455, "fields": {"orig_filename": "Kuhn_Andreas_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415570}}, {"model": "metainfo.source", "pk": 11456, "fields": {"orig_filename": "Kreutzer_Carl-Joseph_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 267", "author": "", "orig_id": 1416105}}, {"model": "metainfo.source", "pk": 11457, "fields": {"orig_filename": "Kreutzer_Conrad_1780_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 267f.", "author": "", "orig_id": 1416106}}, {"model": "metainfo.source", "pk": 11458, "fields": {"orig_filename": "Kreutzinger_Josef_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416107}}, {"model": "metainfo.source", "pk": 11459, "fields": {"orig_filename": "Kreuzer_Heinrich_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416174}}, {"model": "metainfo.source", "pk": 11460, "fields": {"orig_filename": "Kreuzer_Konrad_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416175}}, {"model": "metainfo.source", "pk": 11461, "fields": {"orig_filename": "Kreuzer_Vinzenz_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416176}}, {"model": "metainfo.source", "pk": 11462, "fields": {"orig_filename": "Kreysa_Eduard_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416177}}, {"model": "metainfo.source", "pk": 11463, "fields": {"orig_filename": "Krezma_Franjo_1862_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416178}}, {"model": "metainfo.source", "pk": 11464, "fields": {"orig_filename": "Kricensky_Josef-Jaroslav_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416179}}, {"model": "metainfo.source", "pk": 11465, "fields": {"orig_filename": "Kricka_Petr_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416182}}, {"model": "metainfo.source", "pk": 11466, "fields": {"orig_filename": "Krickel_Josef-Adalbert_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416183}}, {"model": "metainfo.source", "pk": 11467, "fields": {"orig_filename": "Krick_Julius_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416180}}, {"model": "metainfo.source", "pk": 11468, "fields": {"orig_filename": "Krick_Otto-Emil_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416181}}, {"model": "metainfo.source", "pk": 11469, "fields": {"orig_filename": "Kriebaum_Franz-Xaver_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416184}}, {"model": "metainfo.source", "pk": 11470, "fields": {"orig_filename": "Krieg-Hochfelden_Edith_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270f.", "author": "", "orig_id": 1416185}}, {"model": "metainfo.source", "pk": 11471, "fields": {"orig_filename": "Krieg-Hochfelden_Franz_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271", "author": "", "orig_id": 1416186}}, {"model": "metainfo.source", "pk": 11472, "fields": {"orig_filename": "Krieger_Koloman_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271", "author": "", "orig_id": 1416187}}, {"model": "metainfo.source", "pk": 11473, "fields": {"orig_filename": "Krieghammer_Edmund_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271f.", "author": "", "orig_id": 1416188}}, {"model": "metainfo.source", "pk": 11474, "fields": {"orig_filename": "Kriegs-Au_Adolf_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272", "author": "", "orig_id": 1416189}}, {"model": "metainfo.source", "pk": 11475, "fields": {"orig_filename": "Kriehuber_Friedrich_1834_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272", "author": "", "orig_id": 1416190}}, {"model": "metainfo.source", "pk": 11476, "fields": {"orig_filename": "Kriehuber_Josef_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 273f.", "author": "", "orig_id": 1416192}}, {"model": "metainfo.source", "pk": 11477, "fields": {"orig_filename": "Kriehuber_Joseph_1799_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272f.", "author": "", "orig_id": 1416191}}, {"model": "metainfo.source", "pk": 11478, "fields": {"orig_filename": "Kriesmayr_Anton_1810_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274", "author": "", "orig_id": 1416193}}, {"model": "metainfo.source", "pk": 11479, "fields": {"orig_filename": "Krimer_Wenzeslaus_1795_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274", "author": "", "orig_id": 1416194}}, {"model": "metainfo.source", "pk": 11480, "fields": {"orig_filename": "Kripp-Prunberg-Krippach_Sigmund_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274f.", "author": "", "orig_id": 1416195}}, {"model": "metainfo.source", "pk": 11481, "fields": {"orig_filename": "Krippel_Heinrich_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275", "author": "", "orig_id": 1416196}}, {"model": "metainfo.source", "pk": 11482, "fields": {"orig_filename": "Krischke_Otto_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275f.", "author": "", "orig_id": 1416266}}, {"model": "metainfo.source", "pk": 11483, "fields": {"orig_filename": "Krisch_Rudolf_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275", "author": "", "orig_id": 1416197}}, {"model": "metainfo.source", "pk": 11484, "fields": {"orig_filename": "Krismanic_Gideon_1817_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 276", "author": "", "orig_id": 1416267}}, {"model": "metainfo.source", "pk": 11485, "fields": {"orig_filename": "Krismer_Stefan_1777_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 276f.", "author": "", "orig_id": 1416268}}, {"model": "metainfo.source", "pk": 11486, "fields": {"orig_filename": "Krisper_Valentin_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277", "author": "", "orig_id": 1416269}}, {"model": "metainfo.source", "pk": 11487, "fields": {"orig_filename": "Kristan_Anton_1881_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277f.", "author": "", "orig_id": 1416271}}, {"model": "metainfo.source", "pk": 11488, "fields": {"orig_filename": "Kristijanovic_Ignjat_1796_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416272}}, {"model": "metainfo.source", "pk": 11489, "fields": {"orig_filename": "Kristinus_Karl-Raimund_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416273}}, {"model": "metainfo.source", "pk": 11490, "fields": {"orig_filename": "Kristoffy_Jozsef_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416274}}, {"model": "metainfo.source", "pk": 11491, "fields": {"orig_filename": "Krist_Josef_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277", "author": "", "orig_id": 1416270}}, {"model": "metainfo.source", "pk": 11492, "fields": {"orig_filename": "Kritek_Karl_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278f.", "author": "", "orig_id": 1416275}}, {"model": "metainfo.source", "pk": 11493, "fields": {"orig_filename": "Kriza_Janos_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416281}}, {"model": "metainfo.source", "pk": 11494, "fields": {"orig_filename": "Krizek_Vaclav_1833_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416282}}, {"model": "metainfo.source", "pk": 11495, "fields": {"orig_filename": "Krizenecky_Rudolf_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280f.", "author": "", "orig_id": 1416283}}, {"model": "metainfo.source", "pk": 11496, "fields": {"orig_filename": "Krizik_Franz_1847_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281", "author": "", "orig_id": 1416284}}, {"model": "metainfo.source", "pk": 11497, "fields": {"orig_filename": "Krizkovsky_Pavel_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 282", "author": "", "orig_id": 1416361}}, {"model": "metainfo.source", "pk": 11498, "fields": {"orig_filename": "Krizko_Bohuslav_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281", "author": "", "orig_id": 1416285}}, {"model": "metainfo.source", "pk": 11499, "fields": {"orig_filename": "Krizko_Jaromir-Vitazoslav_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281f.", "author": "", "orig_id": 1416286}}, {"model": "metainfo.source", "pk": 11500, "fields": {"orig_filename": "Krizko_Pavel_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 282", "author": "", "orig_id": 1416360}}, {"model": "metainfo.source", "pk": 11501, "fields": {"orig_filename": "Krizmanic_Ivan_1766_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416362}}, {"model": "metainfo.source", "pk": 11502, "fields": {"orig_filename": "Kriz_Arpad_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279", "author": "", "orig_id": 1416276}}, {"model": "metainfo.source", "pk": 11503, "fields": {"orig_filename": "Kriz_Ferdinand_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279", "author": "", "orig_id": 1416277}}, {"model": "metainfo.source", "pk": 11504, "fields": {"orig_filename": "Kriz_Martin_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279f.", "author": "", "orig_id": 1416278}}, {"model": "metainfo.source", "pk": 11505, "fields": {"orig_filename": "Kriz_Wenzel_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416280}}, {"model": "metainfo.source", "pk": 11506, "fields": {"orig_filename": "Krmpotic_Ivan_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416363}}, {"model": "metainfo.source", "pk": 11507, "fields": {"orig_filename": "Krnic_Bogoljub_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416364}}, {"model": "metainfo.source", "pk": 11508, "fields": {"orig_filename": "Krnic_Ivan_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416365}}, {"model": "metainfo.source", "pk": 11509, "fields": {"orig_filename": "Krnka_Karl-Sylvester_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283f.", "author": "", "orig_id": 1416366}}, {"model": "metainfo.source", "pk": 11510, "fields": {"orig_filename": "Krnka_Sylvester_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 284f.", "author": "", "orig_id": 1416367}}, {"model": "metainfo.source", "pk": 11511, "fields": {"orig_filename": "Krobath_Karl_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 285", "author": "", "orig_id": 1416368}}, {"model": "metainfo.source", "pk": 11512, "fields": {"orig_filename": "Krobatin_Alexander_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 285f.", "author": "", "orig_id": 1416369}}, {"model": "metainfo.source", "pk": 11513, "fields": {"orig_filename": "Krochmal_Nachman_1785_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416370}}, {"model": "metainfo.source", "pk": 11514, "fields": {"orig_filename": "Kroepsch_Friedrich-Anton_1806_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416372}}, {"model": "metainfo.source", "pk": 11515, "fields": {"orig_filename": "Kroepsch_Wilhelm_1807_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416371}}, {"model": "metainfo.source", "pk": 11516, "fields": {"orig_filename": "Kroess_Alois_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416373}}, {"model": "metainfo.source", "pk": 11517, "fields": {"orig_filename": "Krofta_Kamil_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 287", "author": "", "orig_id": 1416374}}, {"model": "metainfo.source", "pk": 11518, "fields": {"orig_filename": "Kroh_Josef_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416375}}, {"model": "metainfo.source", "pk": 11519, "fields": {"orig_filename": "Krolmus_Vaclav_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416376}}, {"model": "metainfo.source", "pk": 11520, "fields": {"orig_filename": "Krombholz_Anton_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416377}}, {"model": "metainfo.source", "pk": 11521, "fields": {"orig_filename": "Krombholz_Ernst_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289", "author": "", "orig_id": 1416378}}, {"model": "metainfo.source", "pk": 11522, "fields": {"orig_filename": "Krombholz_Julius-Vincenz_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289", "author": "", "orig_id": 1416379}}, {"model": "metainfo.source", "pk": 11523, "fields": {"orig_filename": "Krommer_Franz_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289f.", "author": "", "orig_id": 1416380}}, {"model": "metainfo.source", "pk": 11524, "fields": {"orig_filename": "Kronau_Friederike_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 290", "author": "", "orig_id": 1416451}}, {"model": "metainfo.source", "pk": 11525, "fields": {"orig_filename": "Kronawetter_Ferdinand_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 290f.", "author": "", "orig_id": 1416452}}, {"model": "metainfo.source", "pk": 11526, "fields": {"orig_filename": "Kronbauer_Rudolf-Jaroslav_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416453}}, {"model": "metainfo.source", "pk": 11527, "fields": {"orig_filename": "Kronberger_Franz_1810_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416454}}, {"model": "metainfo.source", "pk": 11528, "fields": {"orig_filename": "Kronberger_Karl_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416455}}, {"model": "metainfo.source", "pk": 11529, "fields": {"orig_filename": "Kronecker_Gunther_1803_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291f.", "author": "", "orig_id": 1416456}}, {"model": "metainfo.source", "pk": 11530, "fields": {"orig_filename": "Kronegger_Rudolf_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416457}}, {"model": "metainfo.source", "pk": 11531, "fields": {"orig_filename": "Kronenfels_Josef_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1419222}}, {"model": "metainfo.source", "pk": 11532, "fields": {"orig_filename": "Krones-Marchland_Franz_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 294", "author": "", "orig_id": 1416462}}, {"model": "metainfo.source", "pk": 11533, "fields": {"orig_filename": "Krones_Hilde_1910_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416458}}, {"model": "metainfo.source", "pk": 11534, "fields": {"orig_filename": "Krones_Josef-Franz_1797_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416459}}, {"model": "metainfo.source", "pk": 11535, "fields": {"orig_filename": "Krones_Ludwig_1785_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292f.", "author": "", "orig_id": 1416460}}, {"model": "metainfo.source", "pk": 11536, "fields": {"orig_filename": "Krones_Therese_1801_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 293f.", "author": "", "orig_id": 1416461}}, {"model": "metainfo.source", "pk": 11537, "fields": {"orig_filename": "Kronfeld_Adolf_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 294f.", "author": "", "orig_id": 1416463}}, {"model": "metainfo.source", "pk": 11538, "fields": {"orig_filename": "Kronfeld_Ernst-F-Moriz_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295", "author": "", "orig_id": 1416464}}, {"model": "metainfo.source", "pk": 11539, "fields": {"orig_filename": "Kronfeld_Robert_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295", "author": "", "orig_id": 1416465}}, {"model": "metainfo.source", "pk": 11540, "fields": {"orig_filename": "Kronfeld_Robert_1904_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295f.", "author": "", "orig_id": 1416466}}, {"model": "metainfo.source", "pk": 11541, "fields": {"orig_filename": "Kronfuss_Karl_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296", "author": "", "orig_id": 1416467}}, {"model": "metainfo.source", "pk": 11542, "fields": {"orig_filename": "Kronstein_August-Stefan_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296", "author": "", "orig_id": 1416468}}, {"model": "metainfo.source", "pk": 11543, "fields": {"orig_filename": "Kropatschek_Alfred_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296f.", "author": "", "orig_id": 1416469}}, {"model": "metainfo.source", "pk": 11544, "fields": {"orig_filename": "Krosch_Josef_1840_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416470}}, {"model": "metainfo.source", "pk": 11545, "fields": {"orig_filename": "Krotenthaller_Anton_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416471}}, {"model": "metainfo.source", "pk": 11546, "fields": {"orig_filename": "Krottenthaler_Karl_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416472}}, {"model": "metainfo.source", "pk": 11547, "fields": {"orig_filename": "Kroupa_Gustav_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297f.", "author": "", "orig_id": 1416473}}, {"model": "metainfo.source", "pk": 11548, "fields": {"orig_filename": "Krsic_Jovan_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 298", "author": "", "orig_id": 1416474}}, {"model": "metainfo.source", "pk": 11549, "fields": {"orig_filename": "Krsnjavi_Izidor_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 298f.", "author": "", "orig_id": 1416544}}, {"model": "metainfo.source", "pk": 11550, "fields": {"orig_filename": "Krticzka-Jaden_Hans_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299", "author": "", "orig_id": 1416545}}, {"model": "metainfo.source", "pk": 11551, "fields": {"orig_filename": "Kruczkiewicz_Bronislaw-Ignacy_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299", "author": "", "orig_id": 1416546}}, {"model": "metainfo.source", "pk": 11552, "fields": {"orig_filename": "Krueckl_Franz_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299f.", "author": "", "orig_id": 1416547}}, {"model": "metainfo.source", "pk": 11553, "fields": {"orig_filename": "Krueger_Karl-Friedrich_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 300", "author": "", "orig_id": 1416548}}, {"model": "metainfo.source", "pk": 11554, "fields": {"orig_filename": "Kruegner_Ignaz-Sales_1781_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 300", "author": "", "orig_id": 1416549}}, {"model": "metainfo.source", "pk": 11555, "fields": {"orig_filename": "Kruepl_Anton_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416550}}, {"model": "metainfo.source", "pk": 11556, "fields": {"orig_filename": "Kruesz_Karoly-Krizosztom_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416551}}, {"model": "metainfo.source", "pk": 11557, "fields": {"orig_filename": "Krufft_Nikolaus_1779_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416552}}, {"model": "metainfo.source", "pk": 11558, "fields": {"orig_filename": "Krug_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301f.", "author": "", "orig_id": 1416553}}, {"model": "metainfo.source", "pk": 11559, "fields": {"orig_filename": "Kruis_Ferdinand_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302", "author": "", "orig_id": 1416554}}, {"model": "metainfo.source", "pk": 11560, "fields": {"orig_filename": "Kraus_Friedrich_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226f.", "author": "", "orig_id": 1415649}}, {"model": "metainfo.source", "pk": 11561, "fields": {"orig_filename": "Kraus_Fritz_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 227f.", "author": "", "orig_id": 1415721}}, {"model": "metainfo.source", "pk": 11562, "fields": {"orig_filename": "Kraus_Honorius_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228f.", "author": "", "orig_id": 1415725}}, {"model": "metainfo.source", "pk": 11563, "fields": {"orig_filename": "Kraus_Jakob_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229", "author": "", "orig_id": 1415726}}, {"model": "metainfo.source", "pk": 11564, "fields": {"orig_filename": "Kraus_Johann-Wenzel_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229", "author": "", "orig_id": 1415727}}, {"model": "metainfo.source", "pk": 11565, "fields": {"orig_filename": "Kraus_Karl_1764_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229f.", "author": "", "orig_id": 1415728}}, {"model": "metainfo.source", "pk": 11566, "fields": {"orig_filename": "Kraus_Karl_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 230ff.", "author": "", "orig_id": 1415730}}, {"model": "metainfo.source", "pk": 11567, "fields": {"orig_filename": "Kraus_Konrad_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415731}}, {"model": "metainfo.source", "pk": 11568, "fields": {"orig_filename": "Kraus_Marie-Gabriele_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415732}}, {"model": "metainfo.source", "pk": 11569, "fields": {"orig_filename": "Kraus_Oskar_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415733}}, {"model": "metainfo.source", "pk": 11570, "fields": {"orig_filename": "Kraus_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 233f.", "author": "", "orig_id": 1415735}}, {"model": "metainfo.source", "pk": 11571, "fields": {"orig_filename": "Kraus_Samuel_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234", "author": "", "orig_id": 1415737}}, {"model": "metainfo.source", "pk": 11572, "fields": {"orig_filename": "Kraus_Viktor_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234f.", "author": "", "orig_id": 1415738}}, {"model": "metainfo.source", "pk": 11573, "fields": {"orig_filename": "Krauthauf_Ferdinand_1830_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415809}}, {"model": "metainfo.source", "pk": 11574, "fields": {"orig_filename": "Krautschneider_Odorich_1818_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415810}}, {"model": "metainfo.source", "pk": 11575, "fields": {"orig_filename": "Krautwald-Annau_Joseph_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236f.", "author": "", "orig_id": 1415811}}, {"model": "metainfo.source", "pk": 11576, "fields": {"orig_filename": "Krauz-Kelles_Kazimierz_1872_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 237", "author": "", "orig_id": 1415812}}, {"model": "metainfo.source", "pk": 11577, "fields": {"orig_filename": "Kravogl_Johann-Nep_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415814}}, {"model": "metainfo.source", "pk": 11578, "fields": {"orig_filename": "Kravogl_Johann_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 237f.", "author": "", "orig_id": 1415813}}, {"model": "metainfo.source", "pk": 11579, "fields": {"orig_filename": "Kravogl_Josef_1870_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415815}}, {"model": "metainfo.source", "pk": 11580, "fields": {"orig_filename": "Kravogl_Paula_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415816}}, {"model": "metainfo.source", "pk": 11581, "fields": {"orig_filename": "Krawani_August_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238f.", "author": "", "orig_id": 1415817}}, {"model": "metainfo.source", "pk": 11582, "fields": {"orig_filename": "Krcal_August_1862_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239", "author": "", "orig_id": 1415818}}, {"model": "metainfo.source", "pk": 11583, "fields": {"orig_filename": "Krcek_Franz_1869_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239", "author": "", "orig_id": 1415819}}, {"model": "metainfo.source", "pk": 11584, "fields": {"orig_filename": "Krcmar_Jan_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239f.", "author": "", "orig_id": 1415820}}, {"model": "metainfo.source", "pk": 11585, "fields": {"orig_filename": "Krcmery_August-Horislav_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240", "author": "", "orig_id": 1415821}}, {"model": "metainfo.source", "pk": 11586, "fields": {"orig_filename": "Krebs_Hans_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240", "author": "", "orig_id": 1415822}}, {"model": "metainfo.source", "pk": 11587, "fields": {"orig_filename": "Krebs_Norbert_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240ff.", "author": "", "orig_id": 1415823}}, {"model": "metainfo.source", "pk": 11588, "fields": {"orig_filename": "Krechowiecki_Adam_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415824}}, {"model": "metainfo.source", "pk": 11589, "fields": {"orig_filename": "Kreco_Pero_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415825}}, {"model": "metainfo.source", "pk": 11590, "fields": {"orig_filename": "Krehahn_Karl_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415826}}, {"model": "metainfo.source", "pk": 11591, "fields": {"orig_filename": "Kreibich_Franz-Jakob_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415827}}, {"model": "metainfo.source", "pk": 11592, "fields": {"orig_filename": "Kreibich_Hans-Robert_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415828}}, {"model": "metainfo.source", "pk": 11593, "fields": {"orig_filename": "Kreibig_Eduard_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415829}}, {"model": "metainfo.source", "pk": 11594, "fields": {"orig_filename": "Kreibig_Josef-Clemens_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415830}}, {"model": "metainfo.source", "pk": 11595, "fields": {"orig_filename": "Kreichel_Andreas_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415899}}, {"model": "metainfo.source", "pk": 11596, "fields": {"orig_filename": "Kreichgauer_Damian_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415900}}, {"model": "metainfo.source", "pk": 11597, "fields": {"orig_filename": "Kreidl_Alois_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415901}}, {"model": "metainfo.source", "pk": 11598, "fields": {"orig_filename": "Kreidl_Regina_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415902}}, {"model": "metainfo.source", "pk": 11599, "fields": {"orig_filename": "Kreil_Benno_1779_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244f.", "author": "", "orig_id": 1415903}}, {"model": "metainfo.source", "pk": 11600, "fields": {"orig_filename": "Kreil_Karl_1798_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 245", "author": "", "orig_id": 1415904}}, {"model": "metainfo.source", "pk": 11601, "fields": {"orig_filename": "Kreisler_Karl_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 245f.", "author": "", "orig_id": 1415905}}, {"model": "metainfo.source", "pk": 11602, "fields": {"orig_filename": "Kreissle-Hellborn_Heinrich_1822_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246", "author": "", "orig_id": 1415906}}, {"model": "metainfo.source", "pk": 11603, "fields": {"orig_filename": "Krejcar_Jaromir_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246", "author": "", "orig_id": 1415907}}, {"model": "metainfo.source", "pk": 11604, "fields": {"orig_filename": "Krejci_Dobroslav_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246f.", "author": "", "orig_id": 1415908}}, {"model": "metainfo.source", "pk": 11605, "fields": {"orig_filename": "Krejci_Frantisek-Vaclav_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 247", "author": "", "orig_id": 1415909}}, {"model": "metainfo.source", "pk": 11606, "fields": {"orig_filename": "Krejci_Jan_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 247f.", "author": "", "orig_id": 1415910}}, {"model": "metainfo.source", "pk": 11607, "fields": {"orig_filename": "Krejci_Jan_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415911}}, {"model": "metainfo.source", "pk": 11608, "fields": {"orig_filename": "Krejci_Joseph_1821_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415912}}, {"model": "metainfo.source", "pk": 11609, "fields": {"orig_filename": "Krejci_Peter-Franz_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415913}}, {"model": "metainfo.source", "pk": 11610, "fields": {"orig_filename": "Krejcsi_Rezsoe_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248f.", "author": "", "orig_id": 1415914}}, {"model": "metainfo.source", "pk": 11611, "fields": {"orig_filename": "Krekich-Strassoldo-Treuland_Hans_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250", "author": "", "orig_id": 1415918}}, {"model": "metainfo.source", "pk": 11612, "fields": {"orig_filename": "Krek_Gregor-Gojmir_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 249f.", "author": "", "orig_id": 1415916}}, {"model": "metainfo.source", "pk": 11613, "fields": {"orig_filename": "Krek_Gregor_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 249", "author": "", "orig_id": 1415915}}, {"model": "metainfo.source", "pk": 11614, "fields": {"orig_filename": "Krek_Janez-Ev_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250", "author": "", "orig_id": 1415917}}, {"model": "metainfo.source", "pk": 11615, "fields": {"orig_filename": "Kreljanovic-Albinoni_Ivan_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250f.", "author": "", "orig_id": 1415919}}, {"model": "metainfo.source", "pk": 11616, "fields": {"orig_filename": "Kremann_Robert_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251", "author": "", "orig_id": 1415920}}, {"model": "metainfo.source", "pk": 11617, "fields": {"orig_filename": "Kremeir_Anna_1862_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251", "author": "", "orig_id": 1415989}}, {"model": "metainfo.source", "pk": 11618, "fields": {"orig_filename": "Kremel_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251f.", "author": "", "orig_id": 1415990}}, {"model": "metainfo.source", "pk": 11619, "fields": {"orig_filename": "Kremenetzky_Johann_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 252", "author": "", "orig_id": 1415991}}, {"model": "metainfo.source", "pk": 11620, "fields": {"orig_filename": "Kremer-Auenrode_Alois-Silverius_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1415998}}, {"model": "metainfo.source", "pk": 11621, "fields": {"orig_filename": "Kremer-Auenrode_Hugo_1833_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1415999}}, {"model": "metainfo.source", "pk": 11622, "fields": {"orig_filename": "Kremer_Aleksander-August-Kazimierz_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 252f.", "author": "", "orig_id": 1415992}}, {"model": "metainfo.source", "pk": 11623, "fields": {"orig_filename": "Kremer_Alfred_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 253f.", "author": "", "orig_id": 1415993}}, {"model": "metainfo.source", "pk": 11624, "fields": {"orig_filename": "Kremer_Johann-Heinrich_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254", "author": "", "orig_id": 1415994}}, {"model": "metainfo.source", "pk": 11625, "fields": {"orig_filename": "Kremer_Jozef_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254", "author": "", "orig_id": 1415995}}, {"model": "metainfo.source", "pk": 11626, "fields": {"orig_filename": "Kremer_Karol-Roman_1812_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254f.", "author": "", "orig_id": 1415996}}, {"model": "metainfo.source", "pk": 11627, "fields": {"orig_filename": "Kremlicka_Rudolf_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1416000}}, {"model": "metainfo.source", "pk": 11628, "fields": {"orig_filename": "Krempel_Heinrich_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255f.", "author": "", "orig_id": 1416001}}, {"model": "metainfo.source", "pk": 11629, "fields": {"orig_filename": "Krempl_Anton_1790_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256", "author": "", "orig_id": 1416002}}, {"model": "metainfo.source", "pk": 11630, "fields": {"orig_filename": "Krempl_Josef_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256", "author": "", "orig_id": 1416003}}, {"model": "metainfo.source", "pk": 11631, "fields": {"orig_filename": "Kremser_Eduard_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256f.", "author": "", "orig_id": 1416004}}, {"model": "metainfo.source", "pk": 11632, "fields": {"orig_filename": "Krenek_Karl_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 257f.", "author": "", "orig_id": 1416006}}, {"model": "metainfo.source", "pk": 11633, "fields": {"orig_filename": "Krennwallner_Paul_1876_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416083}}, {"model": "metainfo.source", "pk": 11634, "fields": {"orig_filename": "Krenn_August_1908_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416007}}, {"model": "metainfo.source", "pk": 11635, "fields": {"orig_filename": "Krenn_Edmund_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416008}}, {"model": "metainfo.source", "pk": 11636, "fields": {"orig_filename": "Krenn_Franz_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416009}}, {"model": "metainfo.source", "pk": 11637, "fields": {"orig_filename": "Krenn_Karl_1908_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258f.", "author": "", "orig_id": 1416010}}, {"model": "metainfo.source", "pk": 11638, "fields": {"orig_filename": "Krenn_Leopold_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416011}}, {"model": "metainfo.source", "pk": 11639, "fields": {"orig_filename": "Krenn_Robert-Adolf_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416012}}, {"model": "metainfo.source", "pk": 11640, "fields": {"orig_filename": "Kren_Otto_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 257", "author": "", "orig_id": 1416005}}, {"model": "metainfo.source", "pk": 11641, "fields": {"orig_filename": "Krepper_Johann_1799_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416085}}, {"model": "metainfo.source", "pk": 11642, "fields": {"orig_filename": "Krepp_Ignaz_1801_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259f.", "author": "", "orig_id": 1416084}}, {"model": "metainfo.source", "pk": 11643, "fields": {"orig_filename": "Kreser_Milan_1876_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416086}}, {"model": "metainfo.source", "pk": 11644, "fields": {"orig_filename": "Kresic_Mijo_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1419221}}, {"model": "metainfo.source", "pk": 11645, "fields": {"orig_filename": "Kresnik_Franjo_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416087}}, {"model": "metainfo.source", "pk": 11646, "fields": {"orig_filename": "Kresnik_Peter_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260f.", "author": "", "orig_id": 1416088}}, {"model": "metainfo.source", "pk": 11647, "fields": {"orig_filename": "Kress-Kressenstein_Georg_1783_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416090}}, {"model": "metainfo.source", "pk": 11648, "fields": {"orig_filename": "Kress_Josef_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 261", "author": "", "orig_id": 1416089}}, {"model": "metainfo.source", "pk": 11649, "fields": {"orig_filename": "Kress_Wilhelm_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 261f.", "author": "", "orig_id": 1411494}}, {"model": "metainfo.source", "pk": 11650, "fields": {"orig_filename": "Krestin_Lazar_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416091}}, {"model": "metainfo.source", "pk": 11651, "fields": {"orig_filename": "Kresznerics_Ferenc_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416092}}, {"model": "metainfo.source", "pk": 11652, "fields": {"orig_filename": "Kretschmann_Theobald_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262f.", "author": "", "orig_id": 1416093}}, {"model": "metainfo.source", "pk": 11653, "fields": {"orig_filename": "Kretschmar_Paul-Gustav_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 263", "author": "", "orig_id": 1416094}}, {"model": "metainfo.source", "pk": 11654, "fields": {"orig_filename": "Kretschmayr_Heinrich_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 263f.", "author": "", "orig_id": 1416095}}, {"model": "metainfo.source", "pk": 11655, "fields": {"orig_filename": "Kretschy_Michael_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416096}}, {"model": "metainfo.source", "pk": 11656, "fields": {"orig_filename": "Kretzer-Immertreu_Josef_1807_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265", "author": "", "orig_id": 1416099}}, {"model": "metainfo.source", "pk": 11657, "fields": {"orig_filename": "Kretz_Leodegar_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416097}}, {"model": "metainfo.source", "pk": 11658, "fields": {"orig_filename": "Kretz_Richard_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416098}}, {"model": "metainfo.source", "pk": 11659, "fields": {"orig_filename": "Kreuter_Franz-Xaver_1842_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265", "author": "", "orig_id": 1416100}}, {"model": "metainfo.source", "pk": 11660, "fields": {"orig_filename": "Kreuter_Julius_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265f.", "author": "", "orig_id": 1416101}}, {"model": "metainfo.source", "pk": 11661, "fields": {"orig_filename": "Kreutner_Simon_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 266", "author": "", "orig_id": 1416102}}, {"model": "metainfo.source", "pk": 11662, "fields": {"orig_filename": "Kreutzberg_Karl-Josef_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 266f.", "author": "", "orig_id": 1416104}}, {"model": "metainfo.source", "pk": 11663, "fields": {"orig_filename": "Krajcik_Johann_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415272}}, {"model": "metainfo.source", "pk": 11664, "fields": {"orig_filename": "Krajner_Imre_1791_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415273}}, {"model": "metainfo.source", "pk": 11665, "fields": {"orig_filename": "Krakauer_Alexander_1866_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415274}}, {"model": "metainfo.source", "pk": 11666, "fields": {"orig_filename": "Kral-Dobra-Voda_Adalbert_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197f.", "author": "", "orig_id": 1415347}}, {"model": "metainfo.source", "pk": 11667, "fields": {"orig_filename": "Kralicek_Rudolf_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198", "author": "", "orig_id": 1415348}}, {"model": "metainfo.source", "pk": 11668, "fields": {"orig_filename": "Kralik-Meyrswalden_Mathilde_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 199", "author": "", "orig_id": 1415351}}, {"model": "metainfo.source", "pk": 11669, "fields": {"orig_filename": "Kralik-Meyrswalden_Richard_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 199f.", "author": "", "orig_id": 1415352}}, {"model": "metainfo.source", "pk": 11670, "fields": {"orig_filename": "Kralik_Emil_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198", "author": "", "orig_id": 1415349}}, {"model": "metainfo.source", "pk": 11671, "fields": {"orig_filename": "Kralik_Emil_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198f.", "author": "", "orig_id": 1415350}}, {"model": "metainfo.source", "pk": 11672, "fields": {"orig_filename": "Kralj-Milarov_Ivka_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415355}}, {"model": "metainfo.source", "pk": 11673, "fields": {"orig_filename": "Kraljevic_Andeo_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415356}}, {"model": "metainfo.source", "pk": 11674, "fields": {"orig_filename": "Kraljevic_Benedikt_1765_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415357}}, {"model": "metainfo.source", "pk": 11675, "fields": {"orig_filename": "Kraljevic_Miroslav_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415358}}, {"model": "metainfo.source", "pk": 11676, "fields": {"orig_filename": "Kraljevic_Miroslav_1885_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201f.", "author": "", "orig_id": 1415359}}, {"model": "metainfo.source", "pk": 11677, "fields": {"orig_filename": "Kralj_Ivan_1792_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 200f.", "author": "", "orig_id": 1415354}}, {"model": "metainfo.source", "pk": 11678, "fields": {"orig_filename": "Krallert_Franz_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202", "author": "", "orig_id": 1415361}}, {"model": "metainfo.source", "pk": 11679, "fields": {"orig_filename": "Krall_Jakob_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202", "author": "", "orig_id": 1415360}}, {"model": "metainfo.source", "pk": 11680, "fields": {"orig_filename": "Kral_Janko_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196f.", "author": "", "orig_id": 1415343}}, {"model": "metainfo.source", "pk": 11681, "fields": {"orig_filename": "Kral_Johann-Nep_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415345}}, {"model": "metainfo.source", "pk": 11682, "fields": {"orig_filename": "Kral_Johann_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415344}}, {"model": "metainfo.source", "pk": 11683, "fields": {"orig_filename": "Kral_Josef_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415346}}, {"model": "metainfo.source", "pk": 11684, "fields": {"orig_filename": "Kramar_Karel_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202ff.", "author": "", "orig_id": 1415362}}, {"model": "metainfo.source", "pk": 11685, "fields": {"orig_filename": "Kramberger_Ernest_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415363}}, {"model": "metainfo.source", "pk": 11686, "fields": {"orig_filename": "Kramberger_Sofija_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415364}}, {"model": "metainfo.source", "pk": 11687, "fields": {"orig_filename": "Kramer-Drauburg_Max_1891_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205f.", "author": "", "orig_id": 1415444}}, {"model": "metainfo.source", "pk": 11688, "fields": {"orig_filename": "Kramerius_Vaclav-Rodomil_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415445}}, {"model": "metainfo.source", "pk": 11689, "fields": {"orig_filename": "Kramer_Ernst_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415439}}, {"model": "metainfo.source", "pk": 11690, "fields": {"orig_filename": "Kramer_Franz_1748_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415440}}, {"model": "metainfo.source", "pk": 11691, "fields": {"orig_filename": "Kramer_Friedrich_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204f.", "author": "", "orig_id": 1415441}}, {"model": "metainfo.source", "pk": 11692, "fields": {"orig_filename": "Kramer_Hans_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205", "author": "", "orig_id": 1415442}}, {"model": "metainfo.source", "pk": 11693, "fields": {"orig_filename": "Kramer_Leopold_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205", "author": "", "orig_id": 1415443}}, {"model": "metainfo.source", "pk": 11694, "fields": {"orig_filename": "Krammer_Franz_1798_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415446}}, {"model": "metainfo.source", "pk": 11695, "fields": {"orig_filename": "Kramolin_Eduard_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415447}}, {"model": "metainfo.source", "pk": 11696, "fields": {"orig_filename": "Kramolis_Cenek_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206f.", "author": "", "orig_id": 1415448}}, {"model": "metainfo.source", "pk": 11697, "fields": {"orig_filename": "Kramsall_Emil_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207", "author": "", "orig_id": 1415449}}, {"model": "metainfo.source", "pk": 11698, "fields": {"orig_filename": "Kranewitter_Alois_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207", "author": "", "orig_id": 1415450}}, {"model": "metainfo.source", "pk": 11699, "fields": {"orig_filename": "Kranewitter_Franz_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207f.", "author": "", "orig_id": 1415451}}, {"model": "metainfo.source", "pk": 11700, "fields": {"orig_filename": "Kranewitter_Joseph_1758_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 208", "author": "", "orig_id": 1415452}}, {"model": "metainfo.source", "pk": 11701, "fields": {"orig_filename": "Kranjcevic_Silvije-Strahimir_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 208f.", "author": "", "orig_id": 1415453}}, {"model": "metainfo.source", "pk": 11702, "fields": {"orig_filename": "Kranner_Josef-Andreas_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 209", "author": "", "orig_id": 1415454}}, {"model": "metainfo.source", "pk": 11703, "fields": {"orig_filename": "Kranzler_Johann-Georg_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415457}}, {"model": "metainfo.source", "pk": 11704, "fields": {"orig_filename": "Kranzl_Johann_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415456}}, {"model": "metainfo.source", "pk": 11705, "fields": {"orig_filename": "Kranz_Ludwig_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 209f.", "author": "", "orig_id": 1415455}}, {"model": "metainfo.source", "pk": 11706, "fields": {"orig_filename": "Krapac_Ivan_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415458}}, {"model": "metainfo.source", "pk": 11707, "fields": {"orig_filename": "Krapf_Albert_1766_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210f.", "author": "", "orig_id": 1415459}}, {"model": "metainfo.source", "pk": 11708, "fields": {"orig_filename": "Krapf_Philipp-Jakob_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211", "author": "", "orig_id": 1415460}}, {"model": "metainfo.source", "pk": 11709, "fields": {"orig_filename": "Krapka_Josef_1862_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211", "author": "", "orig_id": 1415461}}, {"model": "metainfo.source", "pk": 11710, "fields": {"orig_filename": "Krasan_Franz_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211f.", "author": "", "orig_id": 1415462}}, {"model": "metainfo.source", "pk": 11711, "fields": {"orig_filename": "Krasicki_Kazimierz_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415535}}, {"model": "metainfo.source", "pk": 11712, "fields": {"orig_filename": "Krasl_Frantisek_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415536}}, {"model": "metainfo.source", "pk": 11713, "fields": {"orig_filename": "Krasnopolski_Horaz_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415537}}, {"model": "metainfo.source", "pk": 11714, "fields": {"orig_filename": "Krasny-Ergen_Arnold_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213", "author": "", "orig_id": 1415539}}, {"model": "metainfo.source", "pk": 11715, "fields": {"orig_filename": "Krasny_Frantisek_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212f.", "author": "", "orig_id": 1415538}}, {"model": "metainfo.source", "pk": 11716, "fields": {"orig_filename": "Krassberger_Sigmund_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213", "author": "", "orig_id": 1415540}}, {"model": "metainfo.source", "pk": 11717, "fields": {"orig_filename": "Krasser_Fridolin_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213f.", "author": "", "orig_id": 1415541}}, {"model": "metainfo.source", "pk": 11718, "fields": {"orig_filename": "Krassnigg_Rudolf_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214", "author": "", "orig_id": 1415542}}, {"model": "metainfo.source", "pk": 11719, "fields": {"orig_filename": "Krastel_Friedrich_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214", "author": "", "orig_id": 1415543}}, {"model": "metainfo.source", "pk": 11720, "fields": {"orig_filename": "Kratky-Baschik_Anton_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415547}}, {"model": "metainfo.source", "pk": 11721, "fields": {"orig_filename": "Kratky_Hans_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214f.", "author": "", "orig_id": 1415544}}, {"model": "metainfo.source", "pk": 11722, "fields": {"orig_filename": "Kratky_Richard_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415545}}, {"model": "metainfo.source", "pk": 11723, "fields": {"orig_filename": "Kratky_Therese_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415546}}, {"model": "metainfo.source", "pk": 11724, "fields": {"orig_filename": "Kratochvil_Augustin_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415548}}, {"model": "metainfo.source", "pk": 11725, "fields": {"orig_filename": "Kratochvil_Jaroslav_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215f.", "author": "", "orig_id": 1415549}}, {"model": "metainfo.source", "pk": 11726, "fields": {"orig_filename": "Kratochvil_Josef_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216", "author": "", "orig_id": 1415550}}, {"model": "metainfo.source", "pk": 11727, "fields": {"orig_filename": "Kratochvil_Vaclav_1861_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216", "author": "", "orig_id": 1415551}}, {"model": "metainfo.source", "pk": 11728, "fields": {"orig_filename": "Kratschmer-Forstburg_Florian_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216f.", "author": "", "orig_id": 1415552}}, {"model": "metainfo.source", "pk": 11729, "fields": {"orig_filename": "Kratter_Franz_1758_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217", "author": "", "orig_id": 1415553}}, {"model": "metainfo.source", "pk": 11730, "fields": {"orig_filename": "Kratter_Franz_1760_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217", "author": "", "orig_id": 1415554}}, {"model": "metainfo.source", "pk": 11731, "fields": {"orig_filename": "Kratter_Julius_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217f.", "author": "", "orig_id": 1415555}}, {"model": "metainfo.source", "pk": 11732, "fields": {"orig_filename": "Krattner_Karl_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 218", "author": "", "orig_id": 1415626}}, {"model": "metainfo.source", "pk": 11733, "fields": {"orig_filename": "Kratzer_Karl_1827_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415629}}, {"model": "metainfo.source", "pk": 11734, "fields": {"orig_filename": "Kratzl_Karl_1852_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415630}}, {"model": "metainfo.source", "pk": 11735, "fields": {"orig_filename": "Kratzmann_Ernst_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219f.", "author": "", "orig_id": 1415631}}, {"model": "metainfo.source", "pk": 11736, "fields": {"orig_filename": "Kratzmann_Karl-Gustav-Philipp_1812_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220", "author": "", "orig_id": 1415632}}, {"model": "metainfo.source", "pk": 11737, "fields": {"orig_filename": "Kratzwall_Franz_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220", "author": "", "orig_id": 1415633}}, {"model": "metainfo.source", "pk": 11738, "fields": {"orig_filename": "Kratz_Anna_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 218f.", "author": "", "orig_id": 1415627}}, {"model": "metainfo.source", "pk": 11739, "fields": {"orig_filename": "Kratz_Josefine_1876_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415628}}, {"model": "metainfo.source", "pk": 11740, "fields": {"orig_filename": "Kraus-Elislago_Anton-Joseph_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 235", "author": "", "orig_id": 1415739}}, {"model": "metainfo.source", "pk": 11741, "fields": {"orig_filename": "Kraus-Elislago_Heinrich_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 235", "author": "", "orig_id": 1415740}}, {"model": "metainfo.source", "pk": 11742, "fields": {"orig_filename": "Krause_Otto-Hermann_1870_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415741}}, {"model": "metainfo.source", "pk": 11743, "fields": {"orig_filename": "Kraushaar_Karl_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415808}}, {"model": "metainfo.source", "pk": 11744, "fields": {"orig_filename": "Krauss_Franz_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226", "author": "", "orig_id": 1415647}}, {"model": "metainfo.source", "pk": 11745, "fields": {"orig_filename": "Krauss_Franz_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226", "author": "", "orig_id": 1415648}}, {"model": "metainfo.source", "pk": 11746, "fields": {"orig_filename": "Krauss_Gustav-Johannes_1864_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415722}}, {"model": "metainfo.source", "pk": 11747, "fields": {"orig_filename": "Krauss_Helene_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415724}}, {"model": "metainfo.source", "pk": 11748, "fields": {"orig_filename": "Krauss_Karl_1789_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 230", "author": "", "orig_id": 1415729}}, {"model": "metainfo.source", "pk": 11749, "fields": {"orig_filename": "Krauss_Philipp_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232f.", "author": "", "orig_id": 1415734}}, {"model": "metainfo.source", "pk": 11750, "fields": {"orig_filename": "Krauss_Rudolf_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234", "author": "", "orig_id": 1415736}}, {"model": "metainfo.source", "pk": 11751, "fields": {"orig_filename": "Kraus_Alfred_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220f.", "author": "", "orig_id": 1415634}}, {"model": "metainfo.source", "pk": 11752, "fields": {"orig_filename": "Kraus_Alfred_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 221f.", "author": "", "orig_id": 1415635}}, {"model": "metainfo.source", "pk": 11753, "fields": {"orig_filename": "Kraus_Alois_1840_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1415636}}, {"model": "metainfo.source", "pk": 11754, "fields": {"orig_filename": "Kraus_August_1812_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222", "author": "", "orig_id": 1415637}}, {"model": "metainfo.source", "pk": 11755, "fields": {"orig_filename": "Kraus_Clementine_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222", "author": "", "orig_id": 1415638}}, {"model": "metainfo.source", "pk": 11756, "fields": {"orig_filename": "Kraus_Eduard_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222f.", "author": "", "orig_id": 1415639}}, {"model": "metainfo.source", "pk": 11757, "fields": {"orig_filename": "Kraus_Emil_1897_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 223", "author": "", "orig_id": 1415640}}, {"model": "metainfo.source", "pk": 11758, "fields": {"orig_filename": "Kraus_Ernst-Wilhelm_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 223f.", "author": "", "orig_id": 1415641}}, {"model": "metainfo.source", "pk": 11759, "fields": {"orig_filename": "Kraus_Felix_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 224", "author": "", "orig_id": 1415642}}, {"model": "metainfo.source", "pk": 11760, "fields": {"orig_filename": "Kraus_Felix_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 224f.", "author": "", "orig_id": 1415643}}, {"model": "metainfo.source", "pk": 11761, "fields": {"orig_filename": "Kraus_Felix_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225", "author": "", "orig_id": 1415644}}, {"model": "metainfo.source", "pk": 11762, "fields": {"orig_filename": "Kraus_Ferdinand_1848_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225", "author": "", "orig_id": 1415645}}, {"model": "metainfo.source", "pk": 11763, "fields": {"orig_filename": "Kraus_Franz_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225f.", "author": "", "orig_id": 1415646}}, {"model": "metainfo.source", "pk": 11764, "fields": {"orig_filename": "Kraus_Friedrich-Salomon_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 227", "author": "", "orig_id": 1415720}}, {"model": "metainfo.source", "pk": 11765, "fields": {"orig_filename": "Kovacevic_Ferdo_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416436}}, {"model": "metainfo.source", "pk": 11766, "fields": {"orig_filename": "Kovacevic_Milovan_1905_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166f.", "author": "", "orig_id": 1416437}}, {"model": "metainfo.source", "pk": 11767, "fields": {"orig_filename": "Kovachich_Marton-Gyoergy_1744_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416439}}, {"model": "metainfo.source", "pk": 11768, "fields": {"orig_filename": "Kovacic_Ante_1854_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416440}}, {"model": "metainfo.source", "pk": 11769, "fields": {"orig_filename": "Kovacic_Fran_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167f.", "author": "", "orig_id": 1416441}}, {"model": "metainfo.source", "pk": 11770, "fields": {"orig_filename": "Kovacic_Ivan_1913_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 168", "author": "", "orig_id": 1416442}}, {"model": "metainfo.source", "pk": 11771, "fields": {"orig_filename": "Kovacic_Viktor_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 168", "author": "", "orig_id": 1416443}}, {"model": "metainfo.source", "pk": 11772, "fields": {"orig_filename": "Kovacs-Erdoetelek_Jozsef_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416534}}, {"model": "metainfo.source", "pk": 11773, "fields": {"orig_filename": "Kovacs-Kevehaza_Gyula_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416535}}, {"model": "metainfo.source", "pk": 11774, "fields": {"orig_filename": "Kovacs-Martiny_Paul-Gabriel_1782_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416536}}, {"model": "metainfo.source", "pk": 11775, "fields": {"orig_filename": "Kovacs-Nagyajta_Istvan_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416537}}, {"model": "metainfo.source", "pk": 11776, "fields": {"orig_filename": "Kovacs-Sebestyen_Endre_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416538}}, {"model": "metainfo.source", "pk": 11777, "fields": {"orig_filename": "Kovacs_Albert_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416444}}, {"model": "metainfo.source", "pk": 11778, "fields": {"orig_filename": "Kovacs_August_1747_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416445}}, {"model": "metainfo.source", "pk": 11779, "fields": {"orig_filename": "Kovacs_Friedrich_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169f.", "author": "", "orig_id": 1416447}}, {"model": "metainfo.source", "pk": 11780, "fields": {"orig_filename": "Kovacs_Gyula_1815_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416448}}, {"model": "metainfo.source", "pk": 11781, "fields": {"orig_filename": "Kovacs_Josef_1799_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416449}}, {"model": "metainfo.source", "pk": 11782, "fields": {"orig_filename": "Kovacs_Karel_1880_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416450}}, {"model": "metainfo.source", "pk": 11783, "fields": {"orig_filename": "Kovacs_Lajos_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170f.", "author": "", "orig_id": 1416524}}, {"model": "metainfo.source", "pk": 11784, "fields": {"orig_filename": "Kovacs_Markus-Anton_1815_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416526}}, {"model": "metainfo.source", "pk": 11785, "fields": {"orig_filename": "Kovacs_Markus_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416525}}, {"model": "metainfo.source", "pk": 11786, "fields": {"orig_filename": "Kovacs_Matyas_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416527}}, {"model": "metainfo.source", "pk": 11787, "fields": {"orig_filename": "Kovacs_Mihaly_1768_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416528}}, {"model": "metainfo.source", "pk": 11788, "fields": {"orig_filename": "Kovacs_Mihaly_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416529}}, {"model": "metainfo.source", "pk": 11789, "fields": {"orig_filename": "Kovacs_Oedoen_1844_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416530}}, {"model": "metainfo.source", "pk": 11790, "fields": {"orig_filename": "Kovacs_Pal_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416531}}, {"model": "metainfo.source", "pk": 11791, "fields": {"orig_filename": "Kovacs_Pal_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416532}}, {"model": "metainfo.source", "pk": 11792, "fields": {"orig_filename": "Kovacs_Pal_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172f.", "author": "", "orig_id": 1416533}}, {"model": "metainfo.source", "pk": 11793, "fields": {"orig_filename": "Kovarik_Frantisek_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416540}}, {"model": "metainfo.source", "pk": 11794, "fields": {"orig_filename": "Kovarovic_Karel_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416541}}, {"model": "metainfo.source", "pk": 11795, "fields": {"orig_filename": "Kovar_Emanuel_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416539}}, {"model": "metainfo.source", "pk": 11796, "fields": {"orig_filename": "Kowalczyk_Johann_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174f.", "author": "", "orig_id": 1416542}}, {"model": "metainfo.source", "pk": 11797, "fields": {"orig_filename": "Kowarzik_Josef_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416611}}, {"model": "metainfo.source", "pk": 11798, "fields": {"orig_filename": "Kowarzik_Rudolf_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175f.", "author": "", "orig_id": 1416612}}, {"model": "metainfo.source", "pk": 11799, "fields": {"orig_filename": "Kowarz_Ferdinand_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416543}}, {"model": "metainfo.source", "pk": 11800, "fields": {"orig_filename": "Koydl_Theodor_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416613}}, {"model": "metainfo.source", "pk": 11801, "fields": {"orig_filename": "Kozacek_Joseph_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416614}}, {"model": "metainfo.source", "pk": 11802, "fields": {"orig_filename": "Kozakiewicz_Antoni_1841_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416616}}, {"model": "metainfo.source", "pk": 11803, "fields": {"orig_filename": "Kozak_Jevhen_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416615}}, {"model": "metainfo.source", "pk": 11804, "fields": {"orig_filename": "Kozanek_Jan_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176f.", "author": "", "orig_id": 1416617}}, {"model": "metainfo.source", "pk": 11805, "fields": {"orig_filename": "Kozarac_Ivan_1885_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416618}}, {"model": "metainfo.source", "pk": 11806, "fields": {"orig_filename": "Kozarac_Josip_1858_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416619}}, {"model": "metainfo.source", "pk": 11807, "fields": {"orig_filename": "Kozarcanin_Ivo_1911_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416620}}, {"model": "metainfo.source", "pk": 11808, "fields": {"orig_filename": "Kozelj_Matija_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177f.", "author": "", "orig_id": 1416621}}, {"model": "metainfo.source", "pk": 11809, "fields": {"orig_filename": "Kozeluch_Katharina_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178", "author": "", "orig_id": 1416622}}, {"model": "metainfo.source", "pk": 11810, "fields": {"orig_filename": "Kozeluch_Leopold-Anton_1747_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178", "author": "", "orig_id": 1416623}}, {"model": "metainfo.source", "pk": 11811, "fields": {"orig_filename": "Kozenn_Blasius_1821_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178f.", "author": "", "orig_id": 1416624}}, {"model": "metainfo.source", "pk": 11812, "fields": {"orig_filename": "Kozicki_Wladyslaw_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416625}}, {"model": "metainfo.source", "pk": 11813, "fields": {"orig_filename": "Kozics_Franz_1864_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416626}}, {"model": "metainfo.source", "pk": 11814, "fields": {"orig_filename": "Koziebrodzki_Wladyslaw-Bolesta_1839_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416627}}, {"model": "metainfo.source", "pk": 11815, "fields": {"orig_filename": "Kozina_Alexander_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416628}}, {"model": "metainfo.source", "pk": 11816, "fields": {"orig_filename": "Kozisek_Josef_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416629}}, {"model": "metainfo.source", "pk": 11817, "fields": {"orig_filename": "Kozlowski_Wlodzimierz_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416700}}, {"model": "metainfo.source", "pk": 11818, "fields": {"orig_filename": "Kozlowski_Zygmunt-Bolesta_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180f.", "author": "", "orig_id": 1416701}}, {"model": "metainfo.source", "pk": 11819, "fields": {"orig_filename": "Kozma_Andor_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181", "author": "", "orig_id": 1416702}}, {"model": "metainfo.source", "pk": 11820, "fields": {"orig_filename": "Kozmian_Stanislaw_1836_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181", "author": "", "orig_id": 1416703}}, {"model": "metainfo.source", "pk": 11821, "fields": {"orig_filename": "Kozubowski_Antoni_1805_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181f.", "author": "", "orig_id": 1416704}}, {"model": "metainfo.source", "pk": 11822, "fields": {"orig_filename": "Kraal_Josef_1887_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416705}}, {"model": "metainfo.source", "pk": 11823, "fields": {"orig_filename": "Kracher_Ferdinand_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416706}}, {"model": "metainfo.source", "pk": 11824, "fields": {"orig_filename": "Kracher_Joseph-Mathias_1752_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416707}}, {"model": "metainfo.source", "pk": 11825, "fields": {"orig_filename": "Krackowizer_Ernst_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182f.", "author": "", "orig_id": 1416708}}, {"model": "metainfo.source", "pk": 11826, "fields": {"orig_filename": "Krackowizer_Ferdinand_1844_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183", "author": "", "orig_id": 1416709}}, {"model": "metainfo.source", "pk": 11827, "fields": {"orig_filename": "Krackowizer_Ferdinand_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183", "author": "", "orig_id": 1416710}}, {"model": "metainfo.source", "pk": 11828, "fields": {"orig_filename": "Krackowizer_Franz-Stefan_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183f.", "author": "", "orig_id": 1416711}}, {"model": "metainfo.source", "pk": 11829, "fields": {"orig_filename": "Krackowizer_Hermann_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416712}}, {"model": "metainfo.source", "pk": 11830, "fields": {"orig_filename": "Kraegel_Ernst-Josef_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416713}}, {"model": "metainfo.source", "pk": 11831, "fields": {"orig_filename": "Kraehmer_Caroline_1794_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416714}}, {"model": "metainfo.source", "pk": 11832, "fields": {"orig_filename": "Kraehmer_Johann-Ernst_1795_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184f.", "author": "", "orig_id": 1416715}}, {"model": "metainfo.source", "pk": 11833, "fields": {"orig_filename": "Kraelitz-Greifenhorst_Friedrich-Johann_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185", "author": "", "orig_id": 1416716}}, {"model": "metainfo.source", "pk": 11834, "fields": {"orig_filename": "Kraemer-Widl_Marie_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 186", "author": "", "orig_id": 1416720}}, {"model": "metainfo.source", "pk": 11835, "fields": {"orig_filename": "Kraemer_August_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185", "author": "", "orig_id": 1416717}}, {"model": "metainfo.source", "pk": 11836, "fields": {"orig_filename": "Kraemer_Johann-Viktor_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185f.", "author": "", "orig_id": 1416718}}, {"model": "metainfo.source", "pk": 11837, "fields": {"orig_filename": "Kraemer_Richard_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 186", "author": "", "orig_id": 1416719}}, {"model": "metainfo.source", "pk": 11838, "fields": {"orig_filename": "Kraenzl_Josef-Leopold_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416721}}, {"model": "metainfo.source", "pk": 11839, "fields": {"orig_filename": "Kraenzl_Susanne_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416722}}, {"model": "metainfo.source", "pk": 11840, "fields": {"orig_filename": "Krafft-Ebing_Richard_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 190f.", "author": "", "orig_id": 1415253}}, {"model": "metainfo.source", "pk": 11841, "fields": {"orig_filename": "Krafft_Albrecht_1816_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416723}}, {"model": "metainfo.source", "pk": 11842, "fields": {"orig_filename": "Krafft_Barbara_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187f.", "author": "", "orig_id": 1416724}}, {"model": "metainfo.source", "pk": 11843, "fields": {"orig_filename": "Krafft_Guido_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 188", "author": "", "orig_id": 1415249}}, {"model": "metainfo.source", "pk": 11844, "fields": {"orig_filename": "Krafft_Johann-Peter_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 188f.", "author": "", "orig_id": 1415250}}, {"model": "metainfo.source", "pk": 11845, "fields": {"orig_filename": "Krafft_Josef_1786_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 189f.", "author": "", "orig_id": 1415251}}, {"model": "metainfo.source", "pk": 11846, "fields": {"orig_filename": "Krafft_Marie_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 190", "author": "", "orig_id": 1415252}}, {"model": "metainfo.source", "pk": 11847, "fields": {"orig_filename": "Kraftel_Richard_1860_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415262}}, {"model": "metainfo.source", "pk": 11848, "fields": {"orig_filename": "Kraft_Alois_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415254}}, {"model": "metainfo.source", "pk": 11849, "fields": {"orig_filename": "Kraft_Amalie_1840_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415255}}, {"model": "metainfo.source", "pk": 11850, "fields": {"orig_filename": "Kraft_Anton_1752_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415256}}, {"model": "metainfo.source", "pk": 11851, "fields": {"orig_filename": "Kraft_August_1891_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1456200}}, {"model": "metainfo.source", "pk": 11852, "fields": {"orig_filename": "Kraft_Emil_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191f.", "author": "", "orig_id": 1415257}}, {"model": "metainfo.source", "pk": 11853, "fields": {"orig_filename": "Kraft_Josef_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415258}}, {"model": "metainfo.source", "pk": 11854, "fields": {"orig_filename": "Kraft_Karl_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415259}}, {"model": "metainfo.source", "pk": 11855, "fields": {"orig_filename": "Kraft_Maximilian_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415260}}, {"model": "metainfo.source", "pk": 11856, "fields": {"orig_filename": "Kraft_Nikolaus_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415261}}, {"model": "metainfo.source", "pk": 11857, "fields": {"orig_filename": "Krahl_Ernst-August_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415263}}, {"model": "metainfo.source", "pk": 11858, "fields": {"orig_filename": "Krahl_Karl_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415264}}, {"model": "metainfo.source", "pk": 11859, "fields": {"orig_filename": "Krahuletz_Johann_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193f.", "author": "", "orig_id": 1415265}}, {"model": "metainfo.source", "pk": 11860, "fields": {"orig_filename": "Kraigher-Porges_Josepha_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415266}}, {"model": "metainfo.source", "pk": 11861, "fields": {"orig_filename": "Krainer_Paul_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415267}}, {"model": "metainfo.source", "pk": 11862, "fields": {"orig_filename": "Krainski_Maurycy_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415268}}, {"model": "metainfo.source", "pk": 11863, "fields": {"orig_filename": "Krainz_Johann_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194f.", "author": "", "orig_id": 1415269}}, {"model": "metainfo.source", "pk": 11864, "fields": {"orig_filename": "Krainz_Josef_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 195", "author": "", "orig_id": 1415270}}, {"model": "metainfo.source", "pk": 11865, "fields": {"orig_filename": "Krainz_Wilfried_1895_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 195f.", "author": "", "orig_id": 1415271}}, {"model": "metainfo.source", "pk": 11866, "fields": {"orig_filename": "Korn_Johann-Michael_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129", "author": "", "orig_id": 1415885}}, {"model": "metainfo.source", "pk": 11867, "fields": {"orig_filename": "Korn_Philipp-Anton_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415886}}, {"model": "metainfo.source", "pk": 11868, "fields": {"orig_filename": "Korn_Wenzel_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415887}}, {"model": "metainfo.source", "pk": 11869, "fields": {"orig_filename": "Korn_Wilhelmine_1786_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415888}}, {"model": "metainfo.source", "pk": 11870, "fields": {"orig_filename": "Korolija_Mirko_1886_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415971}}, {"model": "metainfo.source", "pk": 11871, "fields": {"orig_filename": "Korompay_Adolf_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415972}}, {"model": "metainfo.source", "pk": 11872, "fields": {"orig_filename": "Korompay_Gustav_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415973}}, {"model": "metainfo.source", "pk": 11873, "fields": {"orig_filename": "Korosec_Anton_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135f.", "author": "", "orig_id": 1415974}}, {"model": "metainfo.source", "pk": 11874, "fields": {"orig_filename": "Korper-Marienwerth_Karl_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 136", "author": "", "orig_id": 1415975}}, {"model": "metainfo.source", "pk": 11875, "fields": {"orig_filename": "Korponay-Komonka_Janos_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415976}}, {"model": "metainfo.source", "pk": 11876, "fields": {"orig_filename": "Korschann_Franz_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415977}}, {"model": "metainfo.source", "pk": 11877, "fields": {"orig_filename": "Korschann_Karl_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415978}}, {"model": "metainfo.source", "pk": 11878, "fields": {"orig_filename": "Korschann_Rudolf_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415979}}, {"model": "metainfo.source", "pk": 11879, "fields": {"orig_filename": "Kortleitner_Franz-Xaver_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137f.", "author": "", "orig_id": 1415980}}, {"model": "metainfo.source", "pk": 11880, "fields": {"orig_filename": "Kortschak_Johann_1849_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415981}}, {"model": "metainfo.source", "pk": 11881, "fields": {"orig_filename": "Kortz_Paul_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415982}}, {"model": "metainfo.source", "pk": 11882, "fields": {"orig_filename": "Korytko_Emil_1813_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415983}}, {"model": "metainfo.source", "pk": 11883, "fields": {"orig_filename": "Korytowski_Wiltold_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138f.", "author": "", "orig_id": 1415984}}, {"model": "metainfo.source", "pk": 11884, "fields": {"orig_filename": "Korzeniowski_Jozef_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 139", "author": "", "orig_id": 1415985}}, {"model": "metainfo.source", "pk": 11885, "fields": {"orig_filename": "Kosarek_Adolf_1830_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140", "author": "", "orig_id": 1415988}}, {"model": "metainfo.source", "pk": 11886, "fields": {"orig_filename": "Kosar_Franc_1823_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140", "author": "", "orig_id": 1415987}}, {"model": "metainfo.source", "pk": 11887, "fields": {"orig_filename": "Koscak_Ivan_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140f.", "author": "", "orig_id": 1416064}}, {"model": "metainfo.source", "pk": 11888, "fields": {"orig_filename": "Koscevic_Vjekoslav_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416065}}, {"model": "metainfo.source", "pk": 11889, "fields": {"orig_filename": "Koschat_Thomas_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141f.", "author": "", "orig_id": 1416079}}, {"model": "metainfo.source", "pk": 11890, "fields": {"orig_filename": "Koschich_Tobias-Karl_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142", "author": "", "orig_id": 1416080}}, {"model": "metainfo.source", "pk": 11891, "fields": {"orig_filename": "Koschier_Hans_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142", "author": "", "orig_id": 1416081}}, {"model": "metainfo.source", "pk": 11892, "fields": {"orig_filename": "Koschier_Laurenz_1804_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142f.", "author": "", "orig_id": 1416082}}, {"model": "metainfo.source", "pk": 11893, "fields": {"orig_filename": "Kosch_Franz_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416066}}, {"model": "metainfo.source", "pk": 11894, "fields": {"orig_filename": "Kosch_Josef_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416078}}, {"model": "metainfo.source", "pk": 11895, "fields": {"orig_filename": "Kosegarten_Wilhelm_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143", "author": "", "orig_id": 1416153}}, {"model": "metainfo.source", "pk": 11896, "fields": {"orig_filename": "Kosek_Josef_1780_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143", "author": "", "orig_id": 1416155}}, {"model": "metainfo.source", "pk": 11897, "fields": {"orig_filename": "Kosel_Hermann-Clemens_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143f.", "author": "", "orig_id": 1416156}}, {"model": "metainfo.source", "pk": 11898, "fields": {"orig_filename": "Kosel_Mansuet-Johann_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144", "author": "", "orig_id": 1416157}}, {"model": "metainfo.source", "pk": 11899, "fields": {"orig_filename": "Kosic_Baldo_1829_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144", "author": "", "orig_id": 1416158}}, {"model": "metainfo.source", "pk": 11900, "fields": {"orig_filename": "Kosier_Ljubomir_1897_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144f.", "author": "", "orig_id": 1416159}}, {"model": "metainfo.source", "pk": 11901, "fields": {"orig_filename": "Kosina_Jan-Ev_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416160}}, {"model": "metainfo.source", "pk": 11902, "fields": {"orig_filename": "Kosinski_Wladyslaw_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416161}}, {"model": "metainfo.source", "pk": 11903, "fields": {"orig_filename": "Kosir_Franc_1906_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416162}}, {"model": "metainfo.source", "pk": 11904, "fields": {"orig_filename": "Kosir_Pavel_1878_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145f.", "author": "", "orig_id": 1416164}}, {"model": "metainfo.source", "pk": 11905, "fields": {"orig_filename": "Kosjek_Gustav_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416165}}, {"model": "metainfo.source", "pk": 11906, "fields": {"orig_filename": "Kosler_Franz-Xaver_1864_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416166}}, {"model": "metainfo.source", "pk": 11907, "fields": {"orig_filename": "Kosler_Josef_1822_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416167}}, {"model": "metainfo.source", "pk": 11908, "fields": {"orig_filename": "Kosler_Peter_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146f.", "author": "", "orig_id": 1416168}}, {"model": "metainfo.source", "pk": 11909, "fields": {"orig_filename": "Kosmac_Jurij_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147", "author": "", "orig_id": 1416169}}, {"model": "metainfo.source", "pk": 11910, "fields": {"orig_filename": "Kosmak_Vaclav_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147", "author": "", "orig_id": 1416170}}, {"model": "metainfo.source", "pk": 11911, "fields": {"orig_filename": "Kosovel_Srecko_1904_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147f.", "author": "", "orig_id": 1416171}}, {"model": "metainfo.source", "pk": 11912, "fields": {"orig_filename": "Kossak_Juliusz-Fortunat_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149", "author": "", "orig_id": 1416243}}, {"model": "metainfo.source", "pk": 11913, "fields": {"orig_filename": "Kossak_Karl-Ludwig_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149", "author": "", "orig_id": 1416244}}, {"model": "metainfo.source", "pk": 11914, "fields": {"orig_filename": "Kossak_Leon_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149f.", "author": "", "orig_id": 1416245}}, {"model": "metainfo.source", "pk": 11915, "fields": {"orig_filename": "Kossak_Wojciech_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 150", "author": "", "orig_id": 1416246}}, {"model": "metainfo.source", "pk": 11916, "fields": {"orig_filename": "Kossmat_Franz_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 150f.", "author": "", "orig_id": 1416247}}, {"model": "metainfo.source", "pk": 11917, "fields": {"orig_filename": "Kossovich_Karoly_1803_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416248}}, {"model": "metainfo.source", "pk": 11918, "fields": {"orig_filename": "Kossowicz_Alexander_1874_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416249}}, {"model": "metainfo.source", "pk": 11919, "fields": {"orig_filename": "Kossowski_Henryk_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416250}}, {"model": "metainfo.source", "pk": 11920, "fields": {"orig_filename": "Kossuth-Udvard-Kossut_Ferenc_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151f.", "author": "", "orig_id": 1416251}}, {"model": "metainfo.source", "pk": 11921, "fields": {"orig_filename": "Kossuth-Udvard-Kossut_Lajos_1802_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 152f.", "author": "", "orig_id": 1416252}}, {"model": "metainfo.source", "pk": 11922, "fields": {"orig_filename": "Koss_Karl_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 148", "author": "", "orig_id": 1416172}}, {"model": "metainfo.source", "pk": 11923, "fields": {"orig_filename": "Koss_Rudolf_1884_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 148f.", "author": "", "orig_id": 1416173}}, {"model": "metainfo.source", "pk": 11924, "fields": {"orig_filename": "Kostanecki_Kazimierz_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 153f.", "author": "", "orig_id": 1416253}}, {"model": "metainfo.source", "pk": 11925, "fields": {"orig_filename": "Kostelecky_Vincenz-Franz_1801_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154", "author": "", "orig_id": 1416254}}, {"model": "metainfo.source", "pk": 11926, "fields": {"orig_filename": "Kostersitz-Marenhorst_Karl_1839_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154f.", "author": "", "orig_id": 1416256}}, {"model": "metainfo.source", "pk": 11927, "fields": {"orig_filename": "Kostersitz_Ubald_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154", "author": "", "orig_id": 1416255}}, {"model": "metainfo.source", "pk": 11928, "fields": {"orig_filename": "Kostetzky_Dominik_1753_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155", "author": "", "orig_id": 1416257}}, {"model": "metainfo.source", "pk": 11929, "fields": {"orig_filename": "Kostial_Ivan_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155", "author": "", "orig_id": 1416258}}, {"model": "metainfo.source", "pk": 11930, "fields": {"orig_filename": "Kostic_Lazar_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155f.", "author": "", "orig_id": 1416259}}, {"model": "metainfo.source", "pk": 11931, "fields": {"orig_filename": "Kostic_Milan_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416260}}, {"model": "metainfo.source", "pk": 11932, "fields": {"orig_filename": "Kostin-Kolakiewicz_Adrienne_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416261}}, {"model": "metainfo.source", "pk": 11933, "fields": {"orig_filename": "Kostlivy_Stanislav_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416262}}, {"model": "metainfo.source", "pk": 11934, "fields": {"orig_filename": "Kostner_Alois_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416263}}, {"model": "metainfo.source", "pk": 11935, "fields": {"orig_filename": "Kostrencic_Ivan_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156f.", "author": "", "orig_id": 1416264}}, {"model": "metainfo.source", "pk": 11936, "fields": {"orig_filename": "Kosutany_Tamas_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157", "author": "", "orig_id": 1416265}}, {"model": "metainfo.source", "pk": 11937, "fields": {"orig_filename": "Kosztka_Tivadar_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157f.", "author": "", "orig_id": 1416338}}, {"model": "metainfo.source", "pk": 11938, "fields": {"orig_filename": "Kos_Franc_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 139f.", "author": "", "orig_id": 1415986}}, {"model": "metainfo.source", "pk": 11939, "fields": {"orig_filename": "Kotarbinski_Jozef_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 158", "author": "", "orig_id": 1416339}}, {"model": "metainfo.source", "pk": 11940, "fields": {"orig_filename": "Kotera_Jan_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 158f.", "author": "", "orig_id": 1416340}}, {"model": "metainfo.source", "pk": 11941, "fields": {"orig_filename": "Kothgasser_Anton_1769_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 159", "author": "", "orig_id": 1416341}}, {"model": "metainfo.source", "pk": 11942, "fields": {"orig_filename": "Kotlar_Vaclav_1871_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416342}}, {"model": "metainfo.source", "pk": 11943, "fields": {"orig_filename": "Kotschy_Heinrich-Joh-Gottfried_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416343}}, {"model": "metainfo.source", "pk": 11944, "fields": {"orig_filename": "Kotschy_Theodor_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416344}}, {"model": "metainfo.source", "pk": 11945, "fields": {"orig_filename": "Kotsis_Aleksander_1836_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160f.", "author": "", "orig_id": 1416345}}, {"model": "metainfo.source", "pk": 11946, "fields": {"orig_filename": "Kotsmich_Vojtech_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416346}}, {"model": "metainfo.source", "pk": 11947, "fields": {"orig_filename": "Kottaun_Leopold_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416349}}, {"model": "metainfo.source", "pk": 11948, "fields": {"orig_filename": "Kotterba_Karl_1800_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161f.", "author": "", "orig_id": 1416350}}, {"model": "metainfo.source", "pk": 11949, "fields": {"orig_filename": "Kottie_Johann-Nep_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162", "author": "", "orig_id": 1416351}}, {"model": "metainfo.source", "pk": 11950, "fields": {"orig_filename": "Kottulinsky-Kottulin_Adalbert_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162", "author": "", "orig_id": 1416352}}, {"model": "metainfo.source", "pk": 11951, "fields": {"orig_filename": "Kott_Frantisek-Bedrich_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416347}}, {"model": "metainfo.source", "pk": 11952, "fields": {"orig_filename": "Kott_Frantisek-Stepan_1825_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416348}}, {"model": "metainfo.source", "pk": 11953, "fields": {"orig_filename": "Kotula_Rudolf_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162f.", "author": "", "orig_id": 1416353}}, {"model": "metainfo.source", "pk": 11954, "fields": {"orig_filename": "Kotzian_Josef-Maria_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416355}}, {"model": "metainfo.source", "pk": 11955, "fields": {"orig_filename": "Kotzian_Josef_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416354}}, {"model": "metainfo.source", "pk": 11956, "fields": {"orig_filename": "Kotz_Hedwig_1899_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2091921}}, {"model": "metainfo.source", "pk": 11957, "fields": {"orig_filename": "Koubek_Jan-Pravoslav_1805_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416356}}, {"model": "metainfo.source", "pk": 11958, "fields": {"orig_filename": "Koudela-Jelinkov_Josef_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163f.", "author": "", "orig_id": 1416357}}, {"model": "metainfo.source", "pk": 11959, "fields": {"orig_filename": "Koudelka_Alfred_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 164", "author": "", "orig_id": 1416358}}, {"model": "metainfo.source", "pk": 11960, "fields": {"orig_filename": "Koudelka_Joseph_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 164f.", "author": "", "orig_id": 1416359}}, {"model": "metainfo.source", "pk": 11961, "fields": {"orig_filename": "Koudelka_Pauline_1806_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416429}}, {"model": "metainfo.source", "pk": 11962, "fields": {"orig_filename": "Koukl_Antonin_1860_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416430}}, {"model": "metainfo.source", "pk": 11963, "fields": {"orig_filename": "Koula_Jan_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416431}}, {"model": "metainfo.source", "pk": 11964, "fields": {"orig_filename": "Koumas_Konstantin-Michael_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165f.", "author": "", "orig_id": 1416432}}, {"model": "metainfo.source", "pk": 11965, "fields": {"orig_filename": "Kounic_Vaclav_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416433}}, {"model": "metainfo.source", "pk": 11966, "fields": {"orig_filename": "Kounitzky_Franz_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416434}}, {"model": "metainfo.source", "pk": 11967, "fields": {"orig_filename": "Kovacevic_Andrija_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416435}}, {"model": "metainfo.source", "pk": 11968, "fields": {"orig_filename": "Kompert_Leopold_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104", "author": "", "orig_id": 1415510}}, {"model": "metainfo.source", "pk": 11969, "fields": {"orig_filename": "Kompert_Marie_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104", "author": "", "orig_id": 1415511}}, {"model": "metainfo.source", "pk": 11970, "fields": {"orig_filename": "Komzak_Karl_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104f.", "author": "", "orig_id": 1415512}}, {"model": "metainfo.source", "pk": 11971, "fields": {"orig_filename": "Koncz_Jozsef_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415514}}, {"model": "metainfo.source", "pk": 11972, "fields": {"orig_filename": "Konek_Sandor_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415515}}, {"model": "metainfo.source", "pk": 11973, "fields": {"orig_filename": "Konhaeuser_Franz_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415516}}, {"model": "metainfo.source", "pk": 11974, "fields": {"orig_filename": "Konicek_Oldrich_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105f.", "author": "", "orig_id": 1415517}}, {"model": "metainfo.source", "pk": 11975, "fields": {"orig_filename": "Koniuszko_Waclaw_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106", "author": "", "orig_id": 1415518}}, {"model": "metainfo.source", "pk": 11976, "fields": {"orig_filename": "Konkoly-Thege_Miklos_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106", "author": "", "orig_id": 1415519}}, {"model": "metainfo.source", "pk": 11977, "fields": {"orig_filename": "Konopa_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106f.", "author": "", "orig_id": 1415520}}, {"model": "metainfo.source", "pk": 11978, "fields": {"orig_filename": "Konopnicka_Maria_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415521}}, {"model": "metainfo.source", "pk": 11979, "fields": {"orig_filename": "Konrad_Heinrich_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415522}}, {"model": "metainfo.source", "pk": 11980, "fields": {"orig_filename": "Konrad_Johann_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415523}}, {"model": "metainfo.source", "pk": 11981, "fields": {"orig_filename": "Konrad_Josef-Deograt_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107f.", "author": "", "orig_id": 1415524}}, {"model": "metainfo.source", "pk": 11982, "fields": {"orig_filename": "Konrad_Karel_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415525}}, {"model": "metainfo.source", "pk": 11983, "fields": {"orig_filename": "Konrad_Karl_1874_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415526}}, {"model": "metainfo.source", "pk": 11984, "fields": {"orig_filename": "Konried_Julius_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108f.", "author": "", "orig_id": 1415529}}, {"model": "metainfo.source", "pk": 11985, "fields": {"orig_filename": "Konsek_Valentin_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415531}}, {"model": "metainfo.source", "pk": 11986, "fields": {"orig_filename": "Konstantin_Frieda_1884_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415532}}, {"model": "metainfo.source", "pk": 11987, "fields": {"orig_filename": "Kontak_Antun_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415605}}, {"model": "metainfo.source", "pk": 11988, "fields": {"orig_filename": "Konta_Ignaz_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415534}}, {"model": "metainfo.source", "pk": 11989, "fields": {"orig_filename": "Konti_Isidor_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415606}}, {"model": "metainfo.source", "pk": 11990, "fields": {"orig_filename": "Kontschnigg_Peter_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415607}}, {"model": "metainfo.source", "pk": 11991, "fields": {"orig_filename": "Kontski_Antoni_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415608}}, {"model": "metainfo.source", "pk": 11992, "fields": {"orig_filename": "Kontski_Karel_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110f.", "author": "", "orig_id": 1415609}}, {"model": "metainfo.source", "pk": 11993, "fields": {"orig_filename": "Kont_Ignac_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415533}}, {"model": "metainfo.source", "pk": 11994, "fields": {"orig_filename": "Konupek_Jan_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415610}}, {"model": "metainfo.source", "pk": 11995, "fields": {"orig_filename": "Konyi_Mano_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415611}}, {"model": "metainfo.source", "pk": 11996, "fields": {"orig_filename": "Kopacsy_Jozsef_1775_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112", "author": "", "orig_id": 1415614}}, {"model": "metainfo.source", "pk": 11997, "fields": {"orig_filename": "Kopac_Josip_1863_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415613}}, {"model": "metainfo.source", "pk": 11998, "fields": {"orig_filename": "Kopajtic_Sigismund_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112", "author": "", "orig_id": 1415615}}, {"model": "metainfo.source", "pk": 11999, "fields": {"orig_filename": "Kopallik_Franz_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415618}}, {"model": "metainfo.source", "pk": 12000, "fields": {"orig_filename": "Kopallik_Joseph_1849_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415619}}, {"model": "metainfo.source", "pk": 12001, "fields": {"orig_filename": "Kopal_Karl_1788_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112f.", "author": "", "orig_id": 1415616}}, {"model": "metainfo.source", "pk": 12002, "fields": {"orig_filename": "Kopal_Leopold_1785_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415617}}, {"model": "metainfo.source", "pk": 12003, "fields": {"orig_filename": "Kopatsch_Johann_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113f.", "author": "", "orig_id": 1415620}}, {"model": "metainfo.source", "pk": 12004, "fields": {"orig_filename": "Kopecky_Matej_1775_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114", "author": "", "orig_id": 1415621}}, {"model": "metainfo.source", "pk": 12005, "fields": {"orig_filename": "Kopecky_Otakar_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114", "author": "", "orig_id": 1415622}}, {"model": "metainfo.source", "pk": 12006, "fields": {"orig_filename": "Kopernicki_Izydor_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114f.", "author": "", "orig_id": 1415623}}, {"model": "metainfo.source", "pk": 12007, "fields": {"orig_filename": "Kopetzky_Franz-Johann_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415625}}, {"model": "metainfo.source", "pk": 12008, "fields": {"orig_filename": "Kopetzky_Olga_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415698}}, {"model": "metainfo.source", "pk": 12009, "fields": {"orig_filename": "Kopetz_Wenzel-Gustav_1782_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415624}}, {"model": "metainfo.source", "pk": 12010, "fields": {"orig_filename": "Kopff_Johann-Vincenz_1763_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415699}}, {"model": "metainfo.source", "pk": 12011, "fields": {"orig_filename": "Kopff_Wiktor_1805_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115f.", "author": "", "orig_id": 1415700}}, {"model": "metainfo.source", "pk": 12012, "fields": {"orig_filename": "Kopfinger-Trebbienau_Eugen_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 116", "author": "", "orig_id": 1415701}}, {"model": "metainfo.source", "pk": 12013, "fields": {"orig_filename": "Kopitar_Bartholomaeus_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 116f.", "author": "", "orig_id": 1415702}}, {"model": "metainfo.source", "pk": 12014, "fields": {"orig_filename": "Kopko_Petro-Maksymovyc_1886_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117", "author": "", "orig_id": 1415703}}, {"model": "metainfo.source", "pk": 12015, "fields": {"orig_filename": "Koplenig_Hilde_1904_2002.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1437316}}, {"model": "metainfo.source", "pk": 12016, "fields": {"orig_filename": "Kopler_Leopold_1881_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117", "author": "", "orig_id": 1415704}}, {"model": "metainfo.source", "pk": 12017, "fields": {"orig_filename": "Koplhuber_Leopold_1763_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117f.", "author": "", "orig_id": 1415705}}, {"model": "metainfo.source", "pk": 12018, "fields": {"orig_filename": "Koppay_Josef-Arpad_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415709}}, {"model": "metainfo.source", "pk": 12019, "fields": {"orig_filename": "Koppel_Gustav_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415710}}, {"model": "metainfo.source", "pk": 12020, "fields": {"orig_filename": "Koppel_Hans_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415711}}, {"model": "metainfo.source", "pk": 12021, "fields": {"orig_filename": "Koppensteiner_Anton-Michael_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119f.", "author": "", "orig_id": 1415712}}, {"model": "metainfo.source", "pk": 12022, "fields": {"orig_filename": "Koppitz_Rudolf_1884_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415713}}, {"model": "metainfo.source", "pk": 12023, "fields": {"orig_filename": "Koppmann_Adolf_1781_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415715}}, {"model": "metainfo.source", "pk": 12024, "fields": {"orig_filename": "Kopp_Georg_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118", "author": "", "orig_id": 1415706}}, {"model": "metainfo.source", "pk": 12025, "fields": {"orig_filename": "Kopp_Hermann_1863_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118", "author": "", "orig_id": 1415707}}, {"model": "metainfo.source", "pk": 12026, "fields": {"orig_filename": "Kopp_Josef_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118f.", "author": "", "orig_id": 1415708}}, {"model": "metainfo.source", "pk": 12027, "fields": {"orig_filename": "Koprivnik_Janez_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415716}}, {"model": "metainfo.source", "pk": 12028, "fields": {"orig_filename": "Kopstein_Regina_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415717}}, {"model": "metainfo.source", "pk": 12029, "fields": {"orig_filename": "Korac_Vitomir_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120f.", "author": "", "orig_id": 1415718}}, {"model": "metainfo.source", "pk": 12030, "fields": {"orig_filename": "Korajac_Vilim_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415719}}, {"model": "metainfo.source", "pk": 12031, "fields": {"orig_filename": "Koralt_Franz_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415788}}, {"model": "metainfo.source", "pk": 12032, "fields": {"orig_filename": "Koranyi_Frigyes_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415790}}, {"model": "metainfo.source", "pk": 12033, "fields": {"orig_filename": "Koranyi_Sandor_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415791}}, {"model": "metainfo.source", "pk": 12034, "fields": {"orig_filename": "Koran_Josef-Jan_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415789}}, {"model": "metainfo.source", "pk": 12035, "fields": {"orig_filename": "Korb-Weidenheim_Karl_1836_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122f.", "author": "", "orig_id": 1415793}}, {"model": "metainfo.source", "pk": 12036, "fields": {"orig_filename": "Korber-Korborn_Gregor-Norbert_1749_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123", "author": "", "orig_id": 1415794}}, {"model": "metainfo.source", "pk": 12037, "fields": {"orig_filename": "Korbuly_Johann_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123", "author": "", "orig_id": 1415795}}, {"model": "metainfo.source", "pk": 12038, "fields": {"orig_filename": "Korb_Floris-Nandor_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415792}}, {"model": "metainfo.source", "pk": 12039, "fields": {"orig_filename": "Korcian_Benedikt_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123f.", "author": "", "orig_id": 1415796}}, {"model": "metainfo.source", "pk": 12040, "fields": {"orig_filename": "Korczynski_Anton_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124", "author": "", "orig_id": 1415798}}, {"model": "metainfo.source", "pk": 12041, "fields": {"orig_filename": "Korczynski_Edward_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124", "author": "", "orig_id": 1415799}}, {"model": "metainfo.source", "pk": 12042, "fields": {"orig_filename": "Kordac_Franz_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124f.", "author": "", "orig_id": 1415800}}, {"model": "metainfo.source", "pk": 12043, "fields": {"orig_filename": "Kordelic_Karel_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415801}}, {"model": "metainfo.source", "pk": 12044, "fields": {"orig_filename": "Kordes_Leopold_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415802}}, {"model": "metainfo.source", "pk": 12045, "fields": {"orig_filename": "Kordon_Fridolin_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415803}}, {"model": "metainfo.source", "pk": 12046, "fields": {"orig_filename": "Korecki_Leon_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125f.", "author": "", "orig_id": 1415804}}, {"model": "metainfo.source", "pk": 12047, "fields": {"orig_filename": "Korenic_Stjepan_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415805}}, {"model": "metainfo.source", "pk": 12048, "fields": {"orig_filename": "Korensky_Franz_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415806}}, {"model": "metainfo.source", "pk": 12049, "fields": {"orig_filename": "Korensky_Josef_1847_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415807}}, {"model": "metainfo.source", "pk": 12050, "fields": {"orig_filename": "Korinek_Frantisek-Branislav_1831_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126f.", "author": "", "orig_id": 1415878}}, {"model": "metainfo.source", "pk": 12051, "fields": {"orig_filename": "Korinek_Josef-Miloslav_1899_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 127", "author": "", "orig_id": 1415879}}, {"model": "metainfo.source", "pk": 12052, "fields": {"orig_filename": "Koristka_Karel-Frantisek-Edvard_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 127f.", "author": "", "orig_id": 1415880}}, {"model": "metainfo.source", "pk": 12053, "fields": {"orig_filename": "Koritschoner_Franz_1892_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128", "author": "", "orig_id": 1415881}}, {"model": "metainfo.source", "pk": 12054, "fields": {"orig_filename": "Korizmics_Laszlo_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128", "author": "", "orig_id": 1415882}}, {"model": "metainfo.source", "pk": 12055, "fields": {"orig_filename": "Korlevic_Antun_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128f.", "author": "", "orig_id": 1415883}}, {"model": "metainfo.source", "pk": 12056, "fields": {"orig_filename": "Korn-Korningen_Victor_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415889}}, {"model": "metainfo.source", "pk": 12057, "fields": {"orig_filename": "Kornauth_Hans_1851_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130f.", "author": "", "orig_id": 1415890}}, {"model": "metainfo.source", "pk": 12058, "fields": {"orig_filename": "Kornberger_Richard_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415891}}, {"model": "metainfo.source", "pk": 12059, "fields": {"orig_filename": "Korner_Philipp-Thaddaeus_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415892}}, {"model": "metainfo.source", "pk": 12060, "fields": {"orig_filename": "Kornfeld_Aron_1795_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415893}}, {"model": "metainfo.source", "pk": 12061, "fields": {"orig_filename": "Kornfeld_Paul_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131f.", "author": "", "orig_id": 1415894}}, {"model": "metainfo.source", "pk": 12062, "fields": {"orig_filename": "Kornfeld_Siegmund_1852_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415895}}, {"model": "metainfo.source", "pk": 12063, "fields": {"orig_filename": "Kornfeld_Siegmund_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415896}}, {"model": "metainfo.source", "pk": 12064, "fields": {"orig_filename": "Korngold_Julius-Leopold_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415897}}, {"model": "metainfo.source", "pk": 12065, "fields": {"orig_filename": "Kornhaeusel_Josef-Georg_1782_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132f.", "author": "", "orig_id": 1415898}}, {"model": "metainfo.source", "pk": 12066, "fields": {"orig_filename": "Kornheisl_Franz_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 133", "author": "", "orig_id": 1415966}}, {"model": "metainfo.source", "pk": 12067, "fields": {"orig_filename": "Kornhuber_Andreas_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 133f.", "author": "", "orig_id": 1415967}}, {"model": "metainfo.source", "pk": 12068, "fields": {"orig_filename": "Kornitzer_Alois_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 134", "author": "", "orig_id": 1415969}}, {"model": "metainfo.source", "pk": 12069, "fields": {"orig_filename": "Korntheuer_Friedrich-Josef_1779_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 134f.", "author": "", "orig_id": 1415970}}, {"model": "metainfo.source", "pk": 12070, "fields": {"orig_filename": "Korn_Alfred_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129", "author": "", "orig_id": 1415884}}, {"model": "metainfo.source", "pk": 12071, "fields": {"orig_filename": "Kolar_Heinrich_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71f.", "author": "", "orig_id": 1416512}}, {"model": "metainfo.source", "pk": 12072, "fields": {"orig_filename": "Kolar_Josef-Jiri_1812_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72", "author": "", "orig_id": 1416514}}, {"model": "metainfo.source", "pk": 12073, "fields": {"orig_filename": "Kolar_Josef_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72", "author": "", "orig_id": 1416513}}, {"model": "metainfo.source", "pk": 12074, "fields": {"orig_filename": "Kolatschek_Julius_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416519}}, {"model": "metainfo.source", "pk": 12075, "fields": {"orig_filename": "Kola_Richard_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70f.", "author": "", "orig_id": 1416507}}, {"model": "metainfo.source", "pk": 12076, "fields": {"orig_filename": "Kolbany_Paul_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416589}}, {"model": "metainfo.source", "pk": 12077, "fields": {"orig_filename": "Kolbenhayer_Ferenc_1840_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416593}}, {"model": "metainfo.source", "pk": 12078, "fields": {"orig_filename": "Kolbenheyer_Gyula_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416594}}, {"model": "metainfo.source", "pk": 12079, "fields": {"orig_filename": "Kolbenheyer_Karl_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77", "author": "", "orig_id": 1416595}}, {"model": "metainfo.source", "pk": 12080, "fields": {"orig_filename": "Kolbenheyer_Moric_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77", "author": "", "orig_id": 1416596}}, {"model": "metainfo.source", "pk": 12081, "fields": {"orig_filename": "Kolbenschlag_Friedrich_1869_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77f.", "author": "", "orig_id": 1416597}}, {"model": "metainfo.source", "pk": 12082, "fields": {"orig_filename": "Kolbensteiner_Wilhelm_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78", "author": "", "orig_id": 1416598}}, {"model": "metainfo.source", "pk": 12083, "fields": {"orig_filename": "Kolben_Emil_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416592}}, {"model": "metainfo.source", "pk": 12084, "fields": {"orig_filename": "Kolberg_Joseph_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78", "author": "", "orig_id": 1416599}}, {"model": "metainfo.source", "pk": 12085, "fields": {"orig_filename": "Kolberg_Oskar-Henryk_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78f.", "author": "", "orig_id": 1416600}}, {"model": "metainfo.source", "pk": 12086, "fields": {"orig_filename": "Kolbe_Friedrich_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416590}}, {"model": "metainfo.source", "pk": 12087, "fields": {"orig_filename": "Kolbe_Josef_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75f.", "author": "", "orig_id": 1416591}}, {"model": "metainfo.source", "pk": 12088, "fields": {"orig_filename": "Kolb_Alexis_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73f.", "author": "", "orig_id": 1416520}}, {"model": "metainfo.source", "pk": 12089, "fields": {"orig_filename": "Kolb_Alois_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74", "author": "", "orig_id": 1416521}}, {"model": "metainfo.source", "pk": 12090, "fields": {"orig_filename": "Kolb_Johann-Georg_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74", "author": "", "orig_id": 1416522}}, {"model": "metainfo.source", "pk": 12091, "fields": {"orig_filename": "Kolb_Josef_1843_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74f.", "author": "", "orig_id": 1416523}}, {"model": "metainfo.source", "pk": 12092, "fields": {"orig_filename": "Kolb_Viktor_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416588}}, {"model": "metainfo.source", "pk": 12093, "fields": {"orig_filename": "Kolder_Josef_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416601}}, {"model": "metainfo.source", "pk": 12094, "fields": {"orig_filename": "Kolenc_Anton_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416602}}, {"model": "metainfo.source", "pk": 12095, "fields": {"orig_filename": "Kolesovsky_Zikmund-Michael_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416603}}, {"model": "metainfo.source", "pk": 12096, "fields": {"orig_filename": "Kolessa_Filaret-Mychajlovyc_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79f.", "author": "", "orig_id": 1416604}}, {"model": "metainfo.source", "pk": 12097, "fields": {"orig_filename": "Kolessa_Oleksandr-Mychajlovyc_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 80", "author": "", "orig_id": 1416605}}, {"model": "metainfo.source", "pk": 12098, "fields": {"orig_filename": "Kolig_Anton_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 80f.", "author": "", "orig_id": 1416606}}, {"model": "metainfo.source", "pk": 12099, "fields": {"orig_filename": "Koliha_Jan_1890_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 81f.", "author": "", "orig_id": 1416607}}, {"model": "metainfo.source", "pk": 12100, "fields": {"orig_filename": "Kolischer_Emil_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82f.", "author": "", "orig_id": 1416677}}, {"model": "metainfo.source", "pk": 12101, "fields": {"orig_filename": "Kolisch_Ignaz_1837_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416608}}, {"model": "metainfo.source", "pk": 12102, "fields": {"orig_filename": "Kolisch_Rudolf_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416609}}, {"model": "metainfo.source", "pk": 12103, "fields": {"orig_filename": "Kolisch_Sigmund_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416676}}, {"model": "metainfo.source", "pk": 12104, "fields": {"orig_filename": "Kolisko_Alexander_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 83", "author": "", "orig_id": 1416678}}, {"model": "metainfo.source", "pk": 12105, "fields": {"orig_filename": "Kolisko_Eugen_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 2 (15.03.2013)", "author": "", "orig_id": 1441213}}, {"model": "metainfo.source", "pk": 12106, "fields": {"orig_filename": "Kolisko_Hans_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416680}}, {"model": "metainfo.source", "pk": 12107, "fields": {"orig_filename": "Kolisko_Rudolf_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416679}}, {"model": "metainfo.source", "pk": 12108, "fields": {"orig_filename": "Kolland_Engelbert_1827_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416682}}, {"model": "metainfo.source", "pk": 12109, "fields": {"orig_filename": "Kollanyi_Ferenc_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84f.", "author": "", "orig_id": 1416683}}, {"model": "metainfo.source", "pk": 12110, "fields": {"orig_filename": "Kollarz_Adolf_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86", "author": "", "orig_id": 1416686}}, {"model": "metainfo.source", "pk": 12111, "fields": {"orig_filename": "Kollarz_Franz_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86", "author": "", "orig_id": 1416687}}, {"model": "metainfo.source", "pk": 12112, "fields": {"orig_filename": "Kollarz_Friedrich_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86f.", "author": "", "orig_id": 1416688}}, {"model": "metainfo.source", "pk": 12113, "fields": {"orig_filename": "Kollar_Jan_1793_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 85", "author": "", "orig_id": 1416684}}, {"model": "metainfo.source", "pk": 12114, "fields": {"orig_filename": "Kollar_Vincenz_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 85f.", "author": "", "orig_id": 1416685}}, {"model": "metainfo.source", "pk": 12115, "fields": {"orig_filename": "Kollert_Viktor_1887_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1416699}}, {"model": "metainfo.source", "pk": 12116, "fields": {"orig_filename": "Koller_Alexander_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87", "author": "", "orig_id": 1416689}}, {"model": "metainfo.source", "pk": 12117, "fields": {"orig_filename": "Koller_Benedikt-Joseph-Maria_1767_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87", "author": "", "orig_id": 1416690}}, {"model": "metainfo.source", "pk": 12118, "fields": {"orig_filename": "Koller_Bronislawa_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87f.", "author": "", "orig_id": 1416691}}, {"model": "metainfo.source", "pk": 12119, "fields": {"orig_filename": "Koller_Franz_1767_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416692}}, {"model": "metainfo.source", "pk": 12120, "fields": {"orig_filename": "Koller_Josef_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416693}}, {"model": "metainfo.source", "pk": 12121, "fields": {"orig_filename": "Koller_Karl_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416694}}, {"model": "metainfo.source", "pk": 12122, "fields": {"orig_filename": "Koller_Marian_1792_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88f.", "author": "", "orig_id": 1416695}}, {"model": "metainfo.source", "pk": 12123, "fields": {"orig_filename": "Koller_Oswald_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 89", "author": "", "orig_id": 1416696}}, {"model": "metainfo.source", "pk": 12124, "fields": {"orig_filename": "Koller_Rudolf_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 89f.", "author": "", "orig_id": 1416697}}, {"model": "metainfo.source", "pk": 12125, "fields": {"orig_filename": "Koller_Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1416698}}, {"model": "metainfo.source", "pk": 12126, "fields": {"orig_filename": "Kolletschka_Jakob_1803_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1415320}}, {"model": "metainfo.source", "pk": 12127, "fields": {"orig_filename": "Kollmaneck_Ferdinand_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90f.", "author": "", "orig_id": 1415321}}, {"model": "metainfo.source", "pk": 12128, "fields": {"orig_filename": "Kollmann_Hynek_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91", "author": "", "orig_id": 1415322}}, {"model": "metainfo.source", "pk": 12129, "fields": {"orig_filename": "Kollmann_Ignaz_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91", "author": "", "orig_id": 1415323}}, {"model": "metainfo.source", "pk": 12130, "fields": {"orig_filename": "Kollmann_Robert_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91f.", "author": "", "orig_id": 1415324}}, {"model": "metainfo.source", "pk": 12131, "fields": {"orig_filename": "Kollonits-Kollegrad_Maximilian_1761_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92", "author": "", "orig_id": 1415325}}, {"model": "metainfo.source", "pk": 12132, "fields": {"orig_filename": "Koll_Franz_1894_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416681}}, {"model": "metainfo.source", "pk": 12133, "fields": {"orig_filename": "Kolman_Karel_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415328}}, {"model": "metainfo.source", "pk": 12134, "fields": {"orig_filename": "Kolmar_Edmund_1841_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415329}}, {"model": "metainfo.source", "pk": 12135, "fields": {"orig_filename": "Kolmar_Jozsef_1769_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415330}}, {"model": "metainfo.source", "pk": 12136, "fields": {"orig_filename": "Kolmer_Gustav_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415331}}, {"model": "metainfo.source", "pk": 12137, "fields": {"orig_filename": "Kolmer_Walter_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93f.", "author": "", "orig_id": 1415332}}, {"model": "metainfo.source", "pk": 12138, "fields": {"orig_filename": "Kolm_Berta_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92", "author": "", "orig_id": 1415326}}, {"model": "metainfo.source", "pk": 12139, "fields": {"orig_filename": "Kolm_Gustav-Anton_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92f.", "author": "", "orig_id": 1415327}}, {"model": "metainfo.source", "pk": 12140, "fields": {"orig_filename": "Kolodziejczyk_Edmund_1888_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 94", "author": "", "orig_id": 1415333}}, {"model": "metainfo.source", "pk": 12141, "fields": {"orig_filename": "Kolodziejski_Walery_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 94f.", "author": "", "orig_id": 1415334}}, {"model": "metainfo.source", "pk": 12142, "fields": {"orig_filename": "Kolombatovic_Juraj_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415335}}, {"model": "metainfo.source", "pk": 12143, "fields": {"orig_filename": "Kolossvary_Sandor_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415336}}, {"model": "metainfo.source", "pk": 12144, "fields": {"orig_filename": "Kolosvary_Sandor_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415337}}, {"model": "metainfo.source", "pk": 12145, "fields": {"orig_filename": "Kolowrat-Krakowsky_Alexander-Josef_1886_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95f.", "author": "", "orig_id": 1415338}}, {"model": "metainfo.source", "pk": 12146, "fields": {"orig_filename": "Kolowrat-Krakowsky_Alois-Joseph_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 96", "author": "", "orig_id": 1415339}}, {"model": "metainfo.source", "pk": 12147, "fields": {"orig_filename": "Kolowrat-Krakowsky_Johann-Nep-Karl_1748_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 96", "author": "", "orig_id": 1415340}}, {"model": "metainfo.source", "pk": 12148, "fields": {"orig_filename": "Kolowrat-Krakowsky_Leopold_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97", "author": "", "orig_id": 1415341}}, {"model": "metainfo.source", "pk": 12149, "fields": {"orig_filename": "Kolowrat-Liebsteinsky_Franz-Anton_1778_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97", "author": "", "orig_id": 1415342}}, {"model": "metainfo.source", "pk": 12150, "fields": {"orig_filename": "Kolowrat-Liebsteinsky_Vinzenz-Maria_1750_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97f.", "author": "", "orig_id": 1415415}}, {"model": "metainfo.source", "pk": 12151, "fields": {"orig_filename": "Kolp_Engelbert_1840_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415416}}, {"model": "metainfo.source", "pk": 12152, "fields": {"orig_filename": "Komarek_Franz-Xaver_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415417}}, {"model": "metainfo.source", "pk": 12153, "fields": {"orig_filename": "Komaromy_Andras_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415418}}, {"model": "metainfo.source", "pk": 12154, "fields": {"orig_filename": "Komatar_Franc_1875_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98f.", "author": "", "orig_id": 1415420}}, {"model": "metainfo.source", "pk": 12155, "fields": {"orig_filename": "Komauer_Edwin_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99", "author": "", "orig_id": 1415421}}, {"model": "metainfo.source", "pk": 12156, "fields": {"orig_filename": "Komenda_Anton_1795_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99", "author": "", "orig_id": 1415422}}, {"model": "metainfo.source", "pk": 12157, "fields": {"orig_filename": "Komers-Lindenbach_Camillo_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100", "author": "", "orig_id": 1415424}}, {"model": "metainfo.source", "pk": 12158, "fields": {"orig_filename": "Komers-Lindenbach_Emanuel-Heinrich_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100", "author": "", "orig_id": 1415425}}, {"model": "metainfo.source", "pk": 12159, "fields": {"orig_filename": "Komers-Lindenbach_Karl-Eduard_1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100f.", "author": "", "orig_id": 1415426}}, {"model": "metainfo.source", "pk": 12160, "fields": {"orig_filename": "Komers_Anton-Emanuel_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99f.", "author": "", "orig_id": 1415423}}, {"model": "metainfo.source", "pk": 12161, "fields": {"orig_filename": "Kometer_Bartholomaeus_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415427}}, {"model": "metainfo.source", "pk": 12162, "fields": {"orig_filename": "Kometer_Franz-Michael_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415428}}, {"model": "metainfo.source", "pk": 12163, "fields": {"orig_filename": "Kometer_Johann-Ev_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415429}}, {"model": "metainfo.source", "pk": 12164, "fields": {"orig_filename": "Komjathy_Jenoe_1858_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101f.", "author": "", "orig_id": 1415430}}, {"model": "metainfo.source", "pk": 12165, "fields": {"orig_filename": "Komlossy_Ferenc_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415431}}, {"model": "metainfo.source", "pk": 12166, "fields": {"orig_filename": "Komlossy_Ida_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415432}}, {"model": "metainfo.source", "pk": 12167, "fields": {"orig_filename": "Komlosy_Franz_1817_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415433}}, {"model": "metainfo.source", "pk": 12168, "fields": {"orig_filename": "Komm_Ferdinand_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102f.", "author": "", "orig_id": 1415434}}, {"model": "metainfo.source", "pk": 12169, "fields": {"orig_filename": "Komorowski_Stephan-Julius-Maria_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415435}}, {"model": "metainfo.source", "pk": 12170, "fields": {"orig_filename": "Komorzynski_Johann_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415436}}, {"model": "metainfo.source", "pk": 12171, "fields": {"orig_filename": "Komorzynski_Ludwig_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415437}}, {"model": "metainfo.source", "pk": 12172, "fields": {"orig_filename": "Kompatscher_Andreas_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103f.", "author": "", "orig_id": 1415438}}, {"model": "metainfo.source", "pk": 12173, "fields": {"orig_filename": "Koennen-Horak-Hoehenkampf_Ludwig_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41f.", "author": "", "orig_id": 1416135}}, {"model": "metainfo.source", "pk": 12174, "fields": {"orig_filename": "Koenyoeki_Jozsef_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416136}}, {"model": "metainfo.source", "pk": 12175, "fields": {"orig_filename": "Koenyves-Toth_Mihaly_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416137}}, {"model": "metainfo.source", "pk": 12176, "fields": {"orig_filename": "Koepfle_Josef-Anton_1757_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416138}}, {"model": "metainfo.source", "pk": 12177, "fields": {"orig_filename": "Koepl_Robert_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42f.", "author": "", "orig_id": 1416139}}, {"model": "metainfo.source", "pk": 12178, "fields": {"orig_filename": "Koepp-Felsenthal_Anton_1766_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416140}}, {"model": "metainfo.source", "pk": 12179, "fields": {"orig_filename": "Koepp-Felsenthal_Rudolf_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416141}}, {"model": "metainfo.source", "pk": 12180, "fields": {"orig_filename": "Koeppel_Karl_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416142}}, {"model": "metainfo.source", "pk": 12181, "fields": {"orig_filename": "Koeppner_Karl_1871_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416143}}, {"model": "metainfo.source", "pk": 12182, "fields": {"orig_filename": "Koerber-Horwitz_Grete_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46", "author": "", "orig_id": 1416149}}, {"model": "metainfo.source", "pk": 12183, "fields": {"orig_filename": "Koerber_Ernest_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 44f.", "author": "", "orig_id": 1416144}}, {"model": "metainfo.source", "pk": 12184, "fields": {"orig_filename": "Koerber_Karl_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416145}}, {"model": "metainfo.source", "pk": 12185, "fields": {"orig_filename": "Koerber_Marie_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416146}}, {"model": "metainfo.source", "pk": 12186, "fields": {"orig_filename": "Koerber_Otto_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416147}}, {"model": "metainfo.source", "pk": 12187, "fields": {"orig_filename": "Koerber_Philipp_1812_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45f.", "author": "", "orig_id": 1416148}}, {"model": "metainfo.source", "pk": 12188, "fields": {"orig_filename": "Koerbler_Djuro_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46", "author": "", "orig_id": 1416150}}, {"model": "metainfo.source", "pk": 12189, "fields": {"orig_filename": "Koerner_Eduard_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46f.", "author": "", "orig_id": 1416151}}, {"model": "metainfo.source", "pk": 12190, "fields": {"orig_filename": "Koerner_Josef_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47", "author": "", "orig_id": 1416152}}, {"model": "metainfo.source", "pk": 12191, "fields": {"orig_filename": "Koerner_Moritz_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47", "author": "", "orig_id": 1416220}}, {"model": "metainfo.source", "pk": 12192, "fields": {"orig_filename": "Koernyei_Janos_1831_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47f.", "author": "", "orig_id": 1416221}}, {"model": "metainfo.source", "pk": 12193, "fields": {"orig_filename": "Koeroesfoei-Kriesch_Aladar_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 48", "author": "", "orig_id": 1416222}}, {"model": "metainfo.source", "pk": 12194, "fields": {"orig_filename": "Koeroesi-Csoma_Sandor_1784_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49", "author": "", "orig_id": 1416224}}, {"model": "metainfo.source", "pk": 12195, "fields": {"orig_filename": "Koeroesi_Josef_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 48", "author": "", "orig_id": 1416223}}, {"model": "metainfo.source", "pk": 12196, "fields": {"orig_filename": "Koeroesy-Szanto_Josef_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49", "author": "", "orig_id": 1416225}}, {"model": "metainfo.source", "pk": 12197, "fields": {"orig_filename": "Koerschner_Leander_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49f.", "author": "", "orig_id": 1416226}}, {"model": "metainfo.source", "pk": 12198, "fields": {"orig_filename": "Koessler_Hans_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50", "author": "", "orig_id": 1416227}}, {"model": "metainfo.source", "pk": 12199, "fields": {"orig_filename": "Koessler_Kornelius_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50", "author": "", "orig_id": 1416228}}, {"model": "metainfo.source", "pk": 12200, "fields": {"orig_filename": "Koessler_Ludwig_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50f.", "author": "", "orig_id": 1416229}}, {"model": "metainfo.source", "pk": 12201, "fields": {"orig_filename": "Koester_Alexander_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416230}}, {"model": "metainfo.source", "pk": 12202, "fields": {"orig_filename": "Koestinger_Franz_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416231}}, {"model": "metainfo.source", "pk": 12203, "fields": {"orig_filename": "Koestler_Hugo_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416232}}, {"model": "metainfo.source", "pk": 12204, "fields": {"orig_filename": "Koestlin_August_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51f.", "author": "", "orig_id": 1416233}}, {"model": "metainfo.source", "pk": 12205, "fields": {"orig_filename": "Koeszegi-Brandl_Gusztav_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416234}}, {"model": "metainfo.source", "pk": 12206, "fields": {"orig_filename": "Koeteles_Samuel_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416235}}, {"model": "metainfo.source", "pk": 12207, "fields": {"orig_filename": "Koettstorfer_Josef_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416236}}, {"model": "metainfo.source", "pk": 12208, "fields": {"orig_filename": "Koevary_Laszlo_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52f.", "author": "", "orig_id": 1416237}}, {"model": "metainfo.source", "pk": 12209, "fields": {"orig_filename": "Koever_Lajos_1825_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53", "author": "", "orig_id": 1416238}}, {"model": "metainfo.source", "pk": 12210, "fields": {"orig_filename": "Koevesligethy_Rado_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53", "author": "", "orig_id": 1416240}}, {"model": "metainfo.source", "pk": 12211, "fields": {"orig_filename": "Koevess-Koevesshaza_Hermann_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53f.", "author": "", "orig_id": 1416241}}, {"model": "metainfo.source", "pk": 12212, "fields": {"orig_filename": "Koevy_Sandor_1763_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 54", "author": "", "orig_id": 1416242}}, {"model": "metainfo.source", "pk": 12213, "fields": {"orig_filename": "Koffler_Jozef_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 54", "author": "", "orig_id": 1416311}}, {"model": "metainfo.source", "pk": 12214, "fields": {"orig_filename": "Kofler_Adelheid_1889_1985.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2080799}}, {"model": "metainfo.source", "pk": 12215, "fields": {"orig_filename": "Kofler_Albertine_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416312}}, {"model": "metainfo.source", "pk": 12216, "fields": {"orig_filename": "Kofler_Anton_1855_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416313}}, {"model": "metainfo.source", "pk": 12217, "fields": {"orig_filename": "Kofler_Irenaeus_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416315}}, {"model": "metainfo.source", "pk": 12218, "fields": {"orig_filename": "Kofler_Johann-Ev_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416316}}, {"model": "metainfo.source", "pk": 12219, "fields": {"orig_filename": "Kofler_Johann-Nep_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416317}}, {"model": "metainfo.source", "pk": 12220, "fields": {"orig_filename": "Kofler_Leo_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416318}}, {"model": "metainfo.source", "pk": 12221, "fields": {"orig_filename": "Kofler_Nikolaus_1776_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416319}}, {"model": "metainfo.source", "pk": 12222, "fields": {"orig_filename": "Kofler_Oswald_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57f.", "author": "", "orig_id": 1416320}}, {"model": "metainfo.source", "pk": 12223, "fields": {"orig_filename": "Kofler_Wilhelmine_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416321}}, {"model": "metainfo.source", "pk": 12224, "fields": {"orig_filename": "Kogerer_Heinrich_1819_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416322}}, {"model": "metainfo.source", "pk": 12225, "fields": {"orig_filename": "Koglbauer_Br-Benno_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416324}}, {"model": "metainfo.source", "pk": 12226, "fields": {"orig_filename": "Kogler_Ferdinand_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57f.", "author": "", "orig_id": 1416326}}, {"model": "metainfo.source", "pk": 12227, "fields": {"orig_filename": "Kogler_Michael_1763_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58", "author": "", "orig_id": 1416327}}, {"model": "metainfo.source", "pk": 12228, "fields": {"orig_filename": "Koglgruber_Cajetan_1817_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58", "author": "", "orig_id": 1416328}}, {"model": "metainfo.source", "pk": 12229, "fields": {"orig_filename": "Kogl_Karol-Bernard_1763_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416323}}, {"model": "metainfo.source", "pk": 12230, "fields": {"orig_filename": "Koharic_Janko_1877_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58f.", "author": "", "orig_id": 1416329}}, {"model": "metainfo.source", "pk": 12231, "fields": {"orig_filename": "Kohen_Giambattista_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416330}}, {"model": "metainfo.source", "pk": 12232, "fields": {"orig_filename": "Kohen_Sidonie_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416331}}, {"model": "metainfo.source", "pk": 12233, "fields": {"orig_filename": "Kohl-Kohlenegg_Leonhard_1834_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60f.", "author": "", "orig_id": 1416336}}, {"model": "metainfo.source", "pk": 12234, "fields": {"orig_filename": "Kohl-Kohlenegg_Lorenz_1783_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61", "author": "", "orig_id": 1416405}}, {"model": "metainfo.source", "pk": 12235, "fields": {"orig_filename": "Kohlenberg_Josef_1796_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61", "author": "", "orig_id": 1416406}}, {"model": "metainfo.source", "pk": 12236, "fields": {"orig_filename": "Kohler_Johann-Michael_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62", "author": "", "orig_id": 1416408}}, {"model": "metainfo.source", "pk": 12237, "fields": {"orig_filename": "Kohler_Johann_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61f.", "author": "", "orig_id": 1416407}}, {"model": "metainfo.source", "pk": 12238, "fields": {"orig_filename": "Kohler_Karl-Felix_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62", "author": "", "orig_id": 1416409}}, {"model": "metainfo.source", "pk": 12239, "fields": {"orig_filename": "Kohlfuerst_Ludwig_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62f.", "author": "", "orig_id": 1416410}}, {"model": "metainfo.source", "pk": 12240, "fields": {"orig_filename": "Kohlgruber_Josef_1783_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63", "author": "", "orig_id": 1416411}}, {"model": "metainfo.source", "pk": 12241, "fields": {"orig_filename": "Kohlmayer_Paul_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63", "author": "", "orig_id": 1416412}}, {"model": "metainfo.source", "pk": 12242, "fields": {"orig_filename": "Kohlmuenzer_Ernst_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63f.", "author": "", "orig_id": 1416413}}, {"model": "metainfo.source", "pk": 12243, "fields": {"orig_filename": "Kohlrausch_Otto_1842_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64", "author": "", "orig_id": 1416414}}, {"model": "metainfo.source", "pk": 12244, "fields": {"orig_filename": "Kohlruss_Alfred_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64", "author": "", "orig_id": 1416415}}, {"model": "metainfo.source", "pk": 12245, "fields": {"orig_filename": "Kohl_Emil_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416332}}, {"model": "metainfo.source", "pk": 12246, "fields": {"orig_filename": "Kohl_Franz-Friedrich_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59f.", "author": "", "orig_id": 1416333}}, {"model": "metainfo.source", "pk": 12247, "fields": {"orig_filename": "Kohl_Josef_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60", "author": "", "orig_id": 1416334}}, {"model": "metainfo.source", "pk": 12248, "fields": {"orig_filename": "Kohl_Ludwig_1746_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60", "author": "", "orig_id": 1416335}}, {"model": "metainfo.source", "pk": 12249, "fields": {"orig_filename": "Kohn_Abraham_1807_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64f.", "author": "", "orig_id": 1416416}}, {"model": "metainfo.source", "pk": 12250, "fields": {"orig_filename": "Kohn_Edmund_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416417}}, {"model": "metainfo.source", "pk": 12251, "fields": {"orig_filename": "Kohn_Gustav_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416419}}, {"model": "metainfo.source", "pk": 12252, "fields": {"orig_filename": "Kohn_Gustav_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416420}}, {"model": "metainfo.source", "pk": 12253, "fields": {"orig_filename": "Kohn_Josef_1804_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65f.", "author": "", "orig_id": 1416421}}, {"model": "metainfo.source", "pk": 12254, "fields": {"orig_filename": "Kohn_Josef_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66", "author": "", "orig_id": 1416422}}, {"model": "metainfo.source", "pk": 12255, "fields": {"orig_filename": "Kohn_Karl-Ferdinand_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66", "author": "", "orig_id": 1416423}}, {"model": "metainfo.source", "pk": 12256, "fields": {"orig_filename": "Kohn_Salomon_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66f.", "author": "", "orig_id": 1416424}}, {"model": "metainfo.source", "pk": 12257, "fields": {"orig_filename": "Kohn_Samuel_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416425}}, {"model": "metainfo.source", "pk": 12258, "fields": {"orig_filename": "Kohn_Theodor_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416426}}, {"model": "metainfo.source", "pk": 12259, "fields": {"orig_filename": "Kohrl_Ludwig_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416427}}, {"model": "metainfo.source", "pk": 12260, "fields": {"orig_filename": "Kohut_Adolf_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67f.", "author": "", "orig_id": 1416428}}, {"model": "metainfo.source", "pk": 12261, "fields": {"orig_filename": "Kohut_Alexander_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 68", "author": "", "orig_id": 1416500}}, {"model": "metainfo.source", "pk": 12262, "fields": {"orig_filename": "Koiner_Simon_1921_1994.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1427092}}, {"model": "metainfo.source", "pk": 12263, "fields": {"orig_filename": "Kojovic_Antun_1751_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416501}}, {"model": "metainfo.source", "pk": 12264, "fields": {"orig_filename": "Kokeil_Friedrich_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416502}}, {"model": "metainfo.source", "pk": 12265, "fields": {"orig_filename": "Kokesch_Oser_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416503}}, {"model": "metainfo.source", "pk": 12266, "fields": {"orig_filename": "Kokol_Karl_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70", "author": "", "orig_id": 1416505}}, {"model": "metainfo.source", "pk": 12267, "fields": {"orig_filename": "Kokotovic_Nikola_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70", "author": "", "orig_id": 1416506}}, {"model": "metainfo.source", "pk": 12268, "fields": {"orig_filename": "Koko_Demeter_1891_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69f.", "author": "", "orig_id": 1416504}}, {"model": "metainfo.source", "pk": 12269, "fields": {"orig_filename": "Kolacek_Frantisek_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416508}}, {"model": "metainfo.source", "pk": 12270, "fields": {"orig_filename": "Kolacek_Frantisek_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416509}}, {"model": "metainfo.source", "pk": 12271, "fields": {"orig_filename": "Kolander_Vatroslav_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416510}}, {"model": "metainfo.source", "pk": 12272, "fields": {"orig_filename": "Kolaric-Kisur_Rudolf_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416516}}, {"model": "metainfo.source", "pk": 12273, "fields": {"orig_filename": "Kolaric_Mirko_1850_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72f.", "author": "", "orig_id": 1416515}}, {"model": "metainfo.source", "pk": 12274, "fields": {"orig_filename": "Kolarovic_Dimitrije_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416517}}, {"model": "metainfo.source", "pk": 12275, "fields": {"orig_filename": "Kocevar_Stefan_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411438}}, {"model": "metainfo.source", "pk": 12276, "fields": {"orig_filename": "Koch-Langentreu_Adolf_1829_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411537}}, {"model": "metainfo.source", "pk": 12277, "fields": {"orig_filename": "Koch-Langentreu_Fr-Caecilia_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411538}}, {"model": "metainfo.source", "pk": 12278, "fields": {"orig_filename": "Koch-Langentreu_Josef_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411539}}, {"model": "metainfo.source", "pk": 12279, "fields": {"orig_filename": "Koch-Sternfeld_Josef-Judas-Thadd-Ernest_1778_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20f.", "author": "", "orig_id": 1411540}}, {"model": "metainfo.source", "pk": 12280, "fields": {"orig_filename": "Koch-Thanheimb_Josef_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21", "author": "", "orig_id": 1415856}}, {"model": "metainfo.source", "pk": 12281, "fields": {"orig_filename": "Kochanowski-Korwinau_Alfred_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415859}}, {"model": "metainfo.source", "pk": 12282, "fields": {"orig_filename": "Kochanowski-Stawczan_Anton_1817_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415860}}, {"model": "metainfo.source", "pk": 12283, "fields": {"orig_filename": "Kochanowski_Hieronim_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21", "author": "", "orig_id": 1415857}}, {"model": "metainfo.source", "pk": 12284, "fields": {"orig_filename": "Kochanowski_Roman_1856_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21f.", "author": "", "orig_id": 1415858}}, {"model": "metainfo.source", "pk": 12285, "fields": {"orig_filename": "Kochmann_Leopold_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415861}}, {"model": "metainfo.source", "pk": 12286, "fields": {"orig_filename": "Kochmeister_Friedrich_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22f.", "author": "", "orig_id": 1415862}}, {"model": "metainfo.source", "pk": 12287, "fields": {"orig_filename": "Koch_Alois_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12f.", "author": "", "orig_id": 1411439}}, {"model": "metainfo.source", "pk": 12288, "fields": {"orig_filename": "Koch_Antal_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13", "author": "", "orig_id": 1411440}}, {"model": "metainfo.source", "pk": 12289, "fields": {"orig_filename": "Koch_Augustin_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13", "author": "", "orig_id": 1411441}}, {"model": "metainfo.source", "pk": 12290, "fields": {"orig_filename": "Koch_Carl-Matthias_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13f.", "author": "", "orig_id": 1411442}}, {"model": "metainfo.source", "pk": 12291, "fields": {"orig_filename": "Koch_Ciril-Metod_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411443}}, {"model": "metainfo.source", "pk": 12292, "fields": {"orig_filename": "Koch_Ernest_1755_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411515}}, {"model": "metainfo.source", "pk": 12293, "fields": {"orig_filename": "Koch_Felix_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411516}}, {"model": "metainfo.source", "pk": 12294, "fields": {"orig_filename": "Koch_Ferdo_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14f.", "author": "", "orig_id": 1411517}}, {"model": "metainfo.source", "pk": 12295, "fields": {"orig_filename": "Koch_Franz_1832_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411518}}, {"model": "metainfo.source", "pk": 12296, "fields": {"orig_filename": "Koch_Franz_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411519}}, {"model": "metainfo.source", "pk": 12297, "fields": {"orig_filename": "Koch_Gaudentius_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411520}}, {"model": "metainfo.source", "pk": 12298, "fields": {"orig_filename": "Koch_Gustav-Adolf_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15f.", "author": "", "orig_id": 1411521}}, {"model": "metainfo.source", "pk": 12299, "fields": {"orig_filename": "Koch_Heinrich_1781_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16", "author": "", "orig_id": 1411522}}, {"model": "metainfo.source", "pk": 12300, "fields": {"orig_filename": "Koch_Jakob-Ernst-Iii_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17", "author": "", "orig_id": 1411527}}, {"model": "metainfo.source", "pk": 12301, "fields": {"orig_filename": "Koch_Jakob-Ernst-Ii_1836_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17", "author": "", "orig_id": 1411526}}, {"model": "metainfo.source", "pk": 12302, "fields": {"orig_filename": "Koch_Jakob-Ernst-I_1797_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16f.", "author": "", "orig_id": 1411524}}, {"model": "metainfo.source", "pk": 12303, "fields": {"orig_filename": "Koch_Jakob_1744_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16", "author": "", "orig_id": 1411523}}, {"model": "metainfo.source", "pk": 12304, "fields": {"orig_filename": "Koch_Josef-Anton_1768_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17f.", "author": "", "orig_id": 1411528}}, {"model": "metainfo.source", "pk": 12305, "fields": {"orig_filename": "Koch_Josef-Friedrich_1838_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411529}}, {"model": "metainfo.source", "pk": 12306, "fields": {"orig_filename": "Koch_Karl-Wilhelm_1785_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411531}}, {"model": "metainfo.source", "pk": 12307, "fields": {"orig_filename": "Koch_Karl__.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411530}}, {"model": "metainfo.source", "pk": 12308, "fields": {"orig_filename": "Koch_Leopold_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18f.", "author": "", "orig_id": 1411532}}, {"model": "metainfo.source", "pk": 12309, "fields": {"orig_filename": "Koch_Ludwig_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 19", "author": "", "orig_id": 1411533}}, {"model": "metainfo.source", "pk": 12310, "fields": {"orig_filename": "Koch_Matthias_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 19f.", "author": "", "orig_id": 1411534}}, {"model": "metainfo.source", "pk": 12311, "fields": {"orig_filename": "Koch_Stephan_1772_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411536}}, {"model": "metainfo.source", "pk": 12312, "fields": {"orig_filename": "Kociancic_Stefan_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23f.", "author": "", "orig_id": 1415866}}, {"model": "metainfo.source", "pk": 12313, "fields": {"orig_filename": "Kocian_Jaroslav_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415863}}, {"model": "metainfo.source", "pk": 12314, "fields": {"orig_filename": "Kocian_Quido_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415864}}, {"model": "metainfo.source", "pk": 12315, "fields": {"orig_filename": "Kocian_Samuel_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415865}}, {"model": "metainfo.source", "pk": 12316, "fields": {"orig_filename": "Kocic_Petar_1877_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415867}}, {"model": "metainfo.source", "pk": 12317, "fields": {"orig_filename": "Kocijancic_Josip_1849_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415868}}, {"model": "metainfo.source", "pk": 12318, "fields": {"orig_filename": "Kock-Gothenfels_Josef_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415869}}, {"model": "metainfo.source", "pk": 12319, "fields": {"orig_filename": "Koczirz_Adolf_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415870}}, {"model": "metainfo.source", "pk": 12320, "fields": {"orig_filename": "Koczynski_Stefan_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415871}}, {"model": "metainfo.source", "pk": 12321, "fields": {"orig_filename": "Kodermann_Zoelestin_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415873}}, {"model": "metainfo.source", "pk": 12322, "fields": {"orig_filename": "Koder_Anton_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415872}}, {"model": "metainfo.source", "pk": 12323, "fields": {"orig_filename": "Kodolitsch-Neuweinsberg-Khag_Oswald_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415876}}, {"model": "metainfo.source", "pk": 12324, "fields": {"orig_filename": "Kodolitsch_Alphons_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25f.", "author": "", "orig_id": 1415874}}, {"model": "metainfo.source", "pk": 12325, "fields": {"orig_filename": "Kodolitsch_Theodor_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415875}}, {"model": "metainfo.source", "pk": 12326, "fields": {"orig_filename": "Kodweiss_Friedrich_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415877}}, {"model": "metainfo.source", "pk": 12327, "fields": {"orig_filename": "Kodym_Filip-Stanislav_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26f.", "author": "", "orig_id": 1415945}}, {"model": "metainfo.source", "pk": 12328, "fields": {"orig_filename": "Kodym_Frantisek_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 27", "author": "", "orig_id": 1415946}}, {"model": "metainfo.source", "pk": 12329, "fields": {"orig_filename": "Koechel_Ludwig_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 27f.", "author": "", "orig_id": 1415947}}, {"model": "metainfo.source", "pk": 12330, "fields": {"orig_filename": "Koechert_Alexander-Emanuel_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415948}}, {"model": "metainfo.source", "pk": 12331, "fields": {"orig_filename": "Koechler_Johann_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415949}}, {"model": "metainfo.source", "pk": 12332, "fields": {"orig_filename": "Koechlin_Heinrich_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415950}}, {"model": "metainfo.source", "pk": 12333, "fields": {"orig_filename": "Koechlin_Karl_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28f.", "author": "", "orig_id": 1415951}}, {"model": "metainfo.source", "pk": 12334, "fields": {"orig_filename": "Koechlin_Rudolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29", "author": "", "orig_id": 1415952}}, {"model": "metainfo.source", "pk": 12335, "fields": {"orig_filename": "Koeck-Gmeiner_Maria_1878_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 30f.", "author": "", "orig_id": 1415956}}, {"model": "metainfo.source", "pk": 12336, "fields": {"orig_filename": "Koeck_Georg_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29", "author": "", "orig_id": 1415953}}, {"model": "metainfo.source", "pk": 12337, "fields": {"orig_filename": "Koeck_Gustav_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29f.", "author": "", "orig_id": 1415954}}, {"model": "metainfo.source", "pk": 12338, "fields": {"orig_filename": "Koeck_Michael_1760_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 30", "author": "", "orig_id": 1415955}}, {"model": "metainfo.source", "pk": 12339, "fields": {"orig_filename": "Koeferl_Josef_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415957}}, {"model": "metainfo.source", "pk": 12340, "fields": {"orig_filename": "Koeffinger_Johann-Paul_1786_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415958}}, {"model": "metainfo.source", "pk": 12341, "fields": {"orig_filename": "Koegl_Josef-Sebastian_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415959}}, {"model": "metainfo.source", "pk": 12342, "fields": {"orig_filename": "Koehler-Damwehr_Else_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31f.", "author": "", "orig_id": 1415961}}, {"model": "metainfo.source", "pk": 12343, "fields": {"orig_filename": "Koehler_Josef_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415960}}, {"model": "metainfo.source", "pk": 12344, "fields": {"orig_filename": "Koelbel_Karl_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415962}}, {"model": "metainfo.source", "pk": 12345, "fields": {"orig_filename": "Koelbl_Anton_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415963}}, {"model": "metainfo.source", "pk": 12346, "fields": {"orig_filename": "Koelbl_Walter_1891_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415964}}, {"model": "metainfo.source", "pk": 12347, "fields": {"orig_filename": "Koelcsey_Ferenc_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32f.", "author": "", "orig_id": 1415965}}, {"model": "metainfo.source", "pk": 12348, "fields": {"orig_filename": "Koelgen_Ferdinand_1824_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416038}}, {"model": "metainfo.source", "pk": 12349, "fields": {"orig_filename": "Koelloe_Miklos_1861_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416040}}, {"model": "metainfo.source", "pk": 12350, "fields": {"orig_filename": "Koell_Karl_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416039}}, {"model": "metainfo.source", "pk": 12351, "fields": {"orig_filename": "Koelmel_Anton_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33f.", "author": "", "orig_id": 1416041}}, {"model": "metainfo.source", "pk": 12352, "fields": {"orig_filename": "Koemm_Johann-Nep_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416042}}, {"model": "metainfo.source", "pk": 12353, "fields": {"orig_filename": "Koenig-Karsthof_Adolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38f.", "author": "", "orig_id": 1416057}}, {"model": "metainfo.source", "pk": 12354, "fields": {"orig_filename": "Koenig-Lorinser_Minna_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416058}}, {"model": "metainfo.source", "pk": 12355, "fields": {"orig_filename": "Koenigsberger_Friedrich_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416060}}, {"model": "metainfo.source", "pk": 12356, "fields": {"orig_filename": "Koenigsberg_Alfred_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416059}}, {"model": "metainfo.source", "pk": 12357, "fields": {"orig_filename": "Koenigsbrun-Schaup_Franz-Joseph_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416061}}, {"model": "metainfo.source", "pk": 12358, "fields": {"orig_filename": "Koenigsbrunn_Artur_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416062}}, {"model": "metainfo.source", "pk": 12359, "fields": {"orig_filename": "Koenigsbrunn_Hermann_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416063}}, {"model": "metainfo.source", "pk": 12360, "fields": {"orig_filename": "Koenigsegg-Aulendorf_Alfred_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416130}}, {"model": "metainfo.source", "pk": 12361, "fields": {"orig_filename": "Koenigshofer_Karl_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40f.", "author": "", "orig_id": 1416131}}, {"model": "metainfo.source", "pk": 12362, "fields": {"orig_filename": "Koenigstein_Leopold_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416132}}, {"model": "metainfo.source", "pk": 12363, "fields": {"orig_filename": "Koenigswarter_Jonas_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416133}}, {"model": "metainfo.source", "pk": 12364, "fields": {"orig_filename": "Koenigswarter_Moriz_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416134}}, {"model": "metainfo.source", "pk": 12365, "fields": {"orig_filename": "Koenig_Friedrich_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416043}}, {"model": "metainfo.source", "pk": 12366, "fields": {"orig_filename": "Koenig_Friedrich_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416044}}, {"model": "metainfo.source", "pk": 12367, "fields": {"orig_filename": "Koenig_Gustav-Adolf_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 35", "author": "", "orig_id": 1416046}}, {"model": "metainfo.source", "pk": 12368, "fields": {"orig_filename": "Koenig_Gustav_1825_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34f.", "author": "", "orig_id": 1416045}}, {"model": "metainfo.source", "pk": 12369, "fields": {"orig_filename": "Koenig_Gyula_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 35f.", "author": "", "orig_id": 1416047}}, {"model": "metainfo.source", "pk": 12370, "fields": {"orig_filename": "Koenig_Johann-Paul_1790_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36", "author": "", "orig_id": 1416048}}, {"model": "metainfo.source", "pk": 12371, "fields": {"orig_filename": "Koenig_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36", "author": "", "orig_id": 1416049}}, {"model": "metainfo.source", "pk": 12372, "fields": {"orig_filename": "Koenig_Karl_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36f.", "author": "", "orig_id": 1416050}}, {"model": "metainfo.source", "pk": 12373, "fields": {"orig_filename": "Koenig_Karol_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416051}}, {"model": "metainfo.source", "pk": 12374, "fields": {"orig_filename": "Koenig_Leo_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416052}}, {"model": "metainfo.source", "pk": 12375, "fields": {"orig_filename": "Koenig_Otto_1882_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416053}}, {"model": "metainfo.source", "pk": 12376, "fields": {"orig_filename": "Koenig_Peter_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416054}}, {"model": "metainfo.source", "pk": 12377, "fields": {"orig_filename": "Koenig_Rudolf_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416055}}, {"model": "metainfo.source", "pk": 12378, "fields": {"orig_filename": "Koenig_Sophie_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416056}}, {"model": "metainfo.source", "pk": 12379, "fields": {"orig_filename": "Knapp_Johann_1778_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418509}}, {"model": "metainfo.source", "pk": 12380, "fields": {"orig_filename": "Knapp_Josef_1810_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431f.", "author": "", "orig_id": 1418510}}, {"model": "metainfo.source", "pk": 12381, "fields": {"orig_filename": "Knapp_Karl_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432", "author": "", "orig_id": 1418511}}, {"model": "metainfo.source", "pk": 12382, "fields": {"orig_filename": "Knapp_Ludwig_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432", "author": "", "orig_id": 1418512}}, {"model": "metainfo.source", "pk": 12383, "fields": {"orig_filename": "Knauer_Emil_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432f.", "author": "", "orig_id": 1418513}}, {"model": "metainfo.source", "pk": 12384, "fields": {"orig_filename": "Knauer_Friedrich-Karl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433", "author": "", "orig_id": 1418696}}, {"model": "metainfo.source", "pk": 12385, "fields": {"orig_filename": "Knauer_Vinzenz_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433", "author": "", "orig_id": 1418697}}, {"model": "metainfo.source", "pk": 12386, "fields": {"orig_filename": "Knaus_Hermann-Hubertus_1892_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1452147}}, {"model": "metainfo.source", "pk": 12387, "fields": {"orig_filename": "Knauz_Nandor_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433f.", "author": "", "orig_id": 1418698}}, {"model": "metainfo.source", "pk": 12388, "fields": {"orig_filename": "Knebelsberger_Leopold_1814_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418699}}, {"model": "metainfo.source", "pk": 12389, "fields": {"orig_filename": "Knechtl-Ostenburg_Anton_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418701}}, {"model": "metainfo.source", "pk": 12390, "fields": {"orig_filename": "Knechtl_Josef_1771_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418700}}, {"model": "metainfo.source", "pk": 12391, "fields": {"orig_filename": "Knedlhans_Jan_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434f.", "author": "", "orig_id": 1418702}}, {"model": "metainfo.source", "pk": 12392, "fields": {"orig_filename": "Kneifel_Reginald_1761_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418703}}, {"model": "metainfo.source", "pk": 12393, "fields": {"orig_filename": "Kneisel_Franz_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418704}}, {"model": "metainfo.source", "pk": 12394, "fields": {"orig_filename": "Kneissler-Maixdorf_Leodegar_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418705}}, {"model": "metainfo.source", "pk": 12395, "fields": {"orig_filename": "Knepper_Wilhelm_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435f.", "author": "", "orig_id": 1418706}}, {"model": "metainfo.source", "pk": 12396, "fields": {"orig_filename": "Kneringer_Johann-Paul_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418709}}, {"model": "metainfo.source", "pk": 12397, "fields": {"orig_filename": "Kner_Izidor_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418707}}, {"model": "metainfo.source", "pk": 12398, "fields": {"orig_filename": "Kner_Rudolf_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418708}}, {"model": "metainfo.source", "pk": 12399, "fields": {"orig_filename": "Kneschke_Martha-Th_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437", "author": "", "orig_id": 1418710}}, {"model": "metainfo.source", "pk": 12400, "fields": {"orig_filename": "Knett_Josef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437", "author": "", "orig_id": 1418711}}, {"model": "metainfo.source", "pk": 12401, "fields": {"orig_filename": "Knezevic-Szent-Helena_Vinko_1755_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438f.", "author": "", "orig_id": 1418786}}, {"model": "metainfo.source", "pk": 12402, "fields": {"orig_filename": "Knezevic_Antun_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418784}}, {"model": "metainfo.source", "pk": 12403, "fields": {"orig_filename": "Knezevic_Stevan_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418785}}, {"model": "metainfo.source", "pk": 12404, "fields": {"orig_filename": "Knezic_Josip-Kajetan_1786_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418787}}, {"model": "metainfo.source", "pk": 12405, "fields": {"orig_filename": "Knez_Anton_1856_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437f.", "author": "", "orig_id": 1418712}}, {"model": "metainfo.source", "pk": 12406, "fields": {"orig_filename": "Knez_Ivan_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418713}}, {"model": "metainfo.source", "pk": 12407, "fields": {"orig_filename": "Kniaziolucki_Severin_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418788}}, {"model": "metainfo.source", "pk": 12408, "fields": {"orig_filename": "Kniely_Konrad_1887_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418789}}, {"model": "metainfo.source", "pk": 12409, "fields": {"orig_filename": "Kniep_Julius_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439f.", "author": "", "orig_id": 1418790}}, {"model": "metainfo.source", "pk": 12410, "fields": {"orig_filename": "Knieschek_Johann_1856_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440", "author": "", "orig_id": 1418791}}, {"model": "metainfo.source", "pk": 12411, "fields": {"orig_filename": "Knipfelberger_Magnus_1747_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440", "author": "", "orig_id": 1418792}}, {"model": "metainfo.source", "pk": 12412, "fields": {"orig_filename": "Knirsch_Hans_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440f.", "author": "", "orig_id": 1418794}}, {"model": "metainfo.source", "pk": 12413, "fields": {"orig_filename": "Knitel-Stainer_Anna_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418798}}, {"model": "metainfo.source", "pk": 12414, "fields": {"orig_filename": "Knitel_Johann_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418796}}, {"model": "metainfo.source", "pk": 12415, "fields": {"orig_filename": "Knitel_Josef-Alois_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418797}}, {"model": "metainfo.source", "pk": 12416, "fields": {"orig_filename": "Knittl_Karel_1853_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441f.", "author": "", "orig_id": 1418799}}, {"model": "metainfo.source", "pk": 12417, "fields": {"orig_filename": "Knittl_Michael_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418800}}, {"model": "metainfo.source", "pk": 12418, "fields": {"orig_filename": "Knize_Frantisek-Max_1784_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418801}}, {"model": "metainfo.source", "pk": 12419, "fields": {"orig_filename": "Knize_Therese_1782_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418802}}, {"model": "metainfo.source", "pk": 12420, "fields": {"orig_filename": "Knoblehar_Ignacij_1819_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442f.", "author": "", "orig_id": 1418868}}, {"model": "metainfo.source", "pk": 12421, "fields": {"orig_filename": "Knobloch_Johann-Wenzel_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 443", "author": "", "orig_id": 1418869}}, {"model": "metainfo.source", "pk": 12422, "fields": {"orig_filename": "Knoch_Gottlieb_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 443", "author": "", "orig_id": 1418870}}, {"model": "metainfo.source", "pk": 12423, "fields": {"orig_filename": "Knoch_Philipp_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418871}}, {"model": "metainfo.source", "pk": 12424, "fields": {"orig_filename": "Knoebel_Robert_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418873}}, {"model": "metainfo.source", "pk": 12425, "fields": {"orig_filename": "Knoechel_Franz_1839_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418875}}, {"model": "metainfo.source", "pk": 12426, "fields": {"orig_filename": "Knoechel_Franz_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418874}}, {"model": "metainfo.source", "pk": 12427, "fields": {"orig_filename": "Knoechl_Hans_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444f.", "author": "", "orig_id": 1418877}}, {"model": "metainfo.source", "pk": 12428, "fields": {"orig_filename": "Knoefel_Robert_1834_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445", "author": "", "orig_id": 1418878}}, {"model": "metainfo.source", "pk": 12429, "fields": {"orig_filename": "Knoefler_Josef_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445", "author": "", "orig_id": 1418879}}, {"model": "metainfo.source", "pk": 12430, "fields": {"orig_filename": "Knoell_Pius_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445f.", "author": "", "orig_id": 1418880}}, {"model": "metainfo.source", "pk": 12431, "fields": {"orig_filename": "Knoepfelmacher_Wilhelm_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418881}}, {"model": "metainfo.source", "pk": 12432, "fields": {"orig_filename": "Knoepfler_Alois_1827_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418882}}, {"model": "metainfo.source", "pk": 12433, "fields": {"orig_filename": "Knoerlein_Josef_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418883}}, {"model": "metainfo.source", "pk": 12434, "fields": {"orig_filename": "Knoflach_Augustin_1783_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418884}}, {"model": "metainfo.source", "pk": 12435, "fields": {"orig_filename": "Knoflach_Johann-Cap_1779_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446f.", "author": "", "orig_id": 1418885}}, {"model": "metainfo.source", "pk": 12436, "fields": {"orig_filename": "Knoller_Richard_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 448", "author": "", "orig_id": 1418962}}, {"model": "metainfo.source", "pk": 12437, "fields": {"orig_filename": "Knoll_Albert_1796_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418888}}, {"model": "metainfo.source", "pk": 12438, "fields": {"orig_filename": "Knoll_Joseph-Leonhard_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418890}}, {"model": "metainfo.source", "pk": 12439, "fields": {"orig_filename": "Knoll_Petar_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418891}}, {"model": "metainfo.source", "pk": 12440, "fields": {"orig_filename": "Knoll_Philipp_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447f.", "author": "", "orig_id": 1418959}}, {"model": "metainfo.source", "pk": 12441, "fields": {"orig_filename": "Knoll_Rudolf_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 448", "author": "", "orig_id": 1418960}}, {"model": "metainfo.source", "pk": 12442, "fields": {"orig_filename": "Knolz_Joseph-Johann_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1", "author": "", "orig_id": 1411240}}, {"model": "metainfo.source", "pk": 12443, "fields": {"orig_filename": "Knopf_Carl-Benno-Rudolf_1874_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1", "author": "", "orig_id": 1411241}}, {"model": "metainfo.source", "pk": 12444, "fields": {"orig_filename": "Knopp-Kirchwald_Norbert_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2", "author": "", "orig_id": 1411243}}, {"model": "metainfo.source", "pk": 12445, "fields": {"orig_filename": "Knopp_Jozsef_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1f.", "author": "", "orig_id": 1411242}}, {"model": "metainfo.source", "pk": 12446, "fields": {"orig_filename": "Knorr_Josefine_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2", "author": "", "orig_id": 1411244}}, {"model": "metainfo.source", "pk": 12447, "fields": {"orig_filename": "Knothe_Franz_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2f.", "author": "", "orig_id": 1411245}}, {"model": "metainfo.source", "pk": 12448, "fields": {"orig_filename": "Knotz_Alfred_1845_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411246}}, {"model": "metainfo.source", "pk": 12449, "fields": {"orig_filename": "Knuepfer_Benes_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411247}}, {"model": "metainfo.source", "pk": 12450, "fields": {"orig_filename": "Kobald_Engelbert_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411250}}, {"model": "metainfo.source", "pk": 12451, "fields": {"orig_filename": "Kobald_Franz_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411251}}, {"model": "metainfo.source", "pk": 12452, "fields": {"orig_filename": "Kobal_France_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3f.", "author": "", "orig_id": 1411249}}, {"model": "metainfo.source", "pk": 12453, "fields": {"orig_filename": "Koban_Anton_1875_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411252}}, {"model": "metainfo.source", "pk": 12454, "fields": {"orig_filename": "Kobatsch_Rudolf_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4f.", "author": "", "orig_id": 1411253}}, {"model": "metainfo.source", "pk": 12455, "fields": {"orig_filename": "Kobbe_Johann_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411254}}, {"model": "metainfo.source", "pk": 12456, "fields": {"orig_filename": "Kobelkoff_Nikolaus_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5f.", "author": "", "orig_id": 1411257}}, {"model": "metainfo.source", "pk": 12457, "fields": {"orig_filename": "Koberwein_Elisabeth_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411347}}, {"model": "metainfo.source", "pk": 12458, "fields": {"orig_filename": "Koberwein_Joseph_1774_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411348}}, {"model": "metainfo.source", "pk": 12459, "fields": {"orig_filename": "Koberwein_Sophie_1783_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7f.", "author": "", "orig_id": 1411349}}, {"model": "metainfo.source", "pk": 12460, "fields": {"orig_filename": "Kober_Franz_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 6", "author": "", "orig_id": 1411342}}, {"model": "metainfo.source", "pk": 12461, "fields": {"orig_filename": "Kober_Guido_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 6", "author": "", "orig_id": 1411343}}, {"model": "metainfo.source", "pk": 12462, "fields": {"orig_filename": "Kober_Maximilian_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411345}}, {"model": "metainfo.source", "pk": 12463, "fields": {"orig_filename": "Kobes_Karl_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8", "author": "", "orig_id": 1411350}}, {"model": "metainfo.source", "pk": 12464, "fields": {"orig_filename": "Kobe_Julius_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411255}}, {"model": "metainfo.source", "pk": 12465, "fields": {"orig_filename": "Kobe_Jurij_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411256}}, {"model": "metainfo.source", "pk": 12466, "fields": {"orig_filename": "Kobierski_Carl_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8", "author": "", "orig_id": 1411351}}, {"model": "metainfo.source", "pk": 12467, "fields": {"orig_filename": "Kobilca_Ivana_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8f.", "author": "", "orig_id": 1411352}}, {"model": "metainfo.source", "pk": 12468, "fields": {"orig_filename": "Koblar_Anton_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9", "author": "", "orig_id": 1411424}}, {"model": "metainfo.source", "pk": 12469, "fields": {"orig_filename": "Kobler_Andreas_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9", "author": "", "orig_id": 1411425}}, {"model": "metainfo.source", "pk": 12470, "fields": {"orig_filename": "Kobler_Franz_1882_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465580}}, {"model": "metainfo.source", "pk": 12471, "fields": {"orig_filename": "Kobler_Giovanni_1811_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9f.", "author": "", "orig_id": 1411426}}, {"model": "metainfo.source", "pk": 12472, "fields": {"orig_filename": "Koblic_Jindrich_1876_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411427}}, {"model": "metainfo.source", "pk": 12473, "fields": {"orig_filename": "Kobliska_Alois_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411428}}, {"model": "metainfo.source", "pk": 12474, "fields": {"orig_filename": "Koblitz-Willmburg_Johann-Ludwig_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411430}}, {"model": "metainfo.source", "pk": 12475, "fields": {"orig_filename": "Koblitz-Willmburg_Johann_1818_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411429}}, {"model": "metainfo.source", "pk": 12476, "fields": {"orig_filename": "Kobylicza_Lucian_1803_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10f.", "author": "", "orig_id": 1411431}}, {"model": "metainfo.source", "pk": 12477, "fields": {"orig_filename": "Kobyljanska_Olga_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411432}}, {"model": "metainfo.source", "pk": 12478, "fields": {"orig_filename": "Kobyljanskyj_Anton_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411433}}, {"model": "metainfo.source", "pk": 12479, "fields": {"orig_filename": "Kob_Anton_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411248}}, {"model": "metainfo.source", "pk": 12480, "fields": {"orig_filename": "Koca_Djuro_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411434}}, {"model": "metainfo.source", "pk": 12481, "fields": {"orig_filename": "Kocbek_Fran_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411435}}, {"model": "metainfo.source", "pk": 12482, "fields": {"orig_filename": "Kocevar_Ferdo_1833_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411437}}, {"model": "metainfo.source", "pk": 12483, "fields": {"orig_filename": "Klier_Karl-Maria_1888_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419281}}, {"model": "metainfo.source", "pk": 12484, "fields": {"orig_filename": "Klietmann_Alfred_1884_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419282}}, {"model": "metainfo.source", "pk": 12485, "fields": {"orig_filename": "Klika_Josef_1833_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419284}}, {"model": "metainfo.source", "pk": 12486, "fields": {"orig_filename": "Klimann_Thomas_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405f.", "author": "", "orig_id": 1419289}}, {"model": "metainfo.source", "pk": 12487, "fields": {"orig_filename": "Klima_Anton_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404f.", "author": "", "orig_id": 1419285}}, {"model": "metainfo.source", "pk": 12488, "fields": {"orig_filename": "Klima_Jiri-Vaclav_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419286}}, {"model": "metainfo.source", "pk": 12489, "fields": {"orig_filename": "Klima_Josef_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419287}}, {"model": "metainfo.source", "pk": 12490, "fields": {"orig_filename": "Klima_Ladislav_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419288}}, {"model": "metainfo.source", "pk": 12491, "fields": {"orig_filename": "Kliment_Josef_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419290}}, {"model": "metainfo.source", "pk": 12492, "fields": {"orig_filename": "Kliment_Leopold_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419291}}, {"model": "metainfo.source", "pk": 12493, "fields": {"orig_filename": "Kliment_Vaclav_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419292}}, {"model": "metainfo.source", "pk": 12494, "fields": {"orig_filename": "Klimesch_Johann-Matthaeus_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419354}}, {"model": "metainfo.source", "pk": 12495, "fields": {"orig_filename": "Klimesch_Josef_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419356}}, {"model": "metainfo.source", "pk": 12496, "fields": {"orig_filename": "Klimesch_Philipp_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406f.", "author": "", "orig_id": 1419357}}, {"model": "metainfo.source", "pk": 12497, "fields": {"orig_filename": "Klimke_Friedrich_1878_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419358}}, {"model": "metainfo.source", "pk": 12498, "fields": {"orig_filename": "Klimm_Mihaly_1851_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419359}}, {"model": "metainfo.source", "pk": 12499, "fields": {"orig_filename": "Klimont_Isidor_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419360}}, {"model": "metainfo.source", "pk": 12500, "fields": {"orig_filename": "Klimsch_Edgar_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407f.", "author": "", "orig_id": 1419361}}, {"model": "metainfo.source", "pk": 12501, "fields": {"orig_filename": "Klimsch_Ferdinand-Karl_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408", "author": "", "orig_id": 1419362}}, {"model": "metainfo.source", "pk": 12502, "fields": {"orig_filename": "Klimsch_Robert_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408", "author": "", "orig_id": 1419364}}, {"model": "metainfo.source", "pk": 12503, "fields": {"orig_filename": "Klimt_Ernst_1864_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408f.", "author": "", "orig_id": 1419365}}, {"model": "metainfo.source", "pk": 12504, "fields": {"orig_filename": "Klimt_Georg_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 409", "author": "", "orig_id": 1419366}}, {"model": "metainfo.source", "pk": 12505, "fields": {"orig_filename": "Klimt_Gustav_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 409f.", "author": "", "orig_id": 1419367}}, {"model": "metainfo.source", "pk": 12506, "fields": {"orig_filename": "Klineberger_Bohdan_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 410", "author": "", "orig_id": 1419368}}, {"model": "metainfo.source", "pk": 12507, "fields": {"orig_filename": "Klingatsch_Adolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 410", "author": "", "orig_id": 1419369}}, {"model": "metainfo.source", "pk": 12508, "fields": {"orig_filename": "Klinger_Heinrich_1896_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411", "author": "", "orig_id": 1419371}}, {"model": "metainfo.source", "pk": 12509, "fields": {"orig_filename": "Klinger_Richard_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411", "author": "", "orig_id": 1419372}}, {"model": "metainfo.source", "pk": 12510, "fields": {"orig_filename": "Klingler_Eduard_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411f.", "author": "", "orig_id": 1419440}}, {"model": "metainfo.source", "pk": 12511, "fields": {"orig_filename": "Klingmann_Philipp_1762_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419441}}, {"model": "metainfo.source", "pk": 12512, "fields": {"orig_filename": "Klingspor_Guido_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419442}}, {"model": "metainfo.source", "pk": 12513, "fields": {"orig_filename": "Klinkosch_Carl_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419443}}, {"model": "metainfo.source", "pk": 12514, "fields": {"orig_filename": "Klinkosch_Josef-Carl_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419444}}, {"model": "metainfo.source", "pk": 12515, "fields": {"orig_filename": "Klinkowstroem_Alphons_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412f.", "author": "", "orig_id": 1420902}}, {"model": "metainfo.source", "pk": 12516, "fields": {"orig_filename": "Klinkowstroem_Friedrich-August_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413", "author": "", "orig_id": 1419445}}, {"model": "metainfo.source", "pk": 12517, "fields": {"orig_filename": "Klinkowstroem_Josef_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413", "author": "", "orig_id": 1419446}}, {"model": "metainfo.source", "pk": 12518, "fields": {"orig_filename": "Klinkowstroem_Max_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413f.", "author": "", "orig_id": 1419447}}, {"model": "metainfo.source", "pk": 12519, "fields": {"orig_filename": "Klir_Antonin_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414", "author": "", "orig_id": 1419448}}, {"model": "metainfo.source", "pk": 12520, "fields": {"orig_filename": "Klischnigg_Eduard_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414", "author": "", "orig_id": 1419449}}, {"model": "metainfo.source", "pk": 12521, "fields": {"orig_filename": "Klitsch_Wilhelm_1882_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414f.", "author": "", "orig_id": 1419451}}, {"model": "metainfo.source", "pk": 12522, "fields": {"orig_filename": "Kloboucek_Josef_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419455}}, {"model": "metainfo.source", "pk": 12523, "fields": {"orig_filename": "Klobucar_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419456}}, {"model": "metainfo.source", "pk": 12524, "fields": {"orig_filename": "Klobusiczky-Klobusicz_Peter_1752_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416f.", "author": "", "orig_id": 1419549}}, {"model": "metainfo.source", "pk": 12525, "fields": {"orig_filename": "Klobus_Hugo_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419457}}, {"model": "metainfo.source", "pk": 12526, "fields": {"orig_filename": "Klob_Friedrich_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415", "author": "", "orig_id": 1419452}}, {"model": "metainfo.source", "pk": 12527, "fields": {"orig_filename": "Klob_Julius_1831_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415", "author": "", "orig_id": 1413139}}, {"model": "metainfo.source", "pk": 12528, "fields": {"orig_filename": "Klob_Karl-Maria_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415f.", "author": "", "orig_id": 1419453}}, {"model": "metainfo.source", "pk": 12529, "fields": {"orig_filename": "Klob_Otto_1876_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419454}}, {"model": "metainfo.source", "pk": 12530, "fields": {"orig_filename": "Klocker_Johann_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419550}}, {"model": "metainfo.source", "pk": 12531, "fields": {"orig_filename": "Klodic-Sabladoski_Anton_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419551}}, {"model": "metainfo.source", "pk": 12532, "fields": {"orig_filename": "Klodzinski_Adam_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419552}}, {"model": "metainfo.source", "pk": 12533, "fields": {"orig_filename": "Kloeckner_Gustav_1814_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417f.", "author": "", "orig_id": 1419553}}, {"model": "metainfo.source", "pk": 12534, "fields": {"orig_filename": "Kloepfer_Hans_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418", "author": "", "orig_id": 1419554}}, {"model": "metainfo.source", "pk": 12535, "fields": {"orig_filename": "Klofac_Vaclav_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418", "author": "", "orig_id": 1419555}}, {"model": "metainfo.source", "pk": 12536, "fields": {"orig_filename": "Kloiber_Franz_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418f.", "author": "", "orig_id": 1419556}}, {"model": "metainfo.source", "pk": 12537, "fields": {"orig_filename": "Klopfer_Karl-Eduard_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 419", "author": "", "orig_id": 1418237}}, {"model": "metainfo.source", "pk": 12538, "fields": {"orig_filename": "Klopp_Onno_1822_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 419", "author": "", "orig_id": 1418238}}, {"model": "metainfo.source", "pk": 12539, "fields": {"orig_filename": "Klopp_Wiard_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418239}}, {"model": "metainfo.source", "pk": 12540, "fields": {"orig_filename": "Klopstein-Ennsbruck_Joseph_1763_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418240}}, {"model": "metainfo.source", "pk": 12541, "fields": {"orig_filename": "Klose_Antonin-Jaroslav_1861_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418241}}, {"model": "metainfo.source", "pk": 12542, "fields": {"orig_filename": "Klose_Olivier_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418242}}, {"model": "metainfo.source", "pk": 12543, "fields": {"orig_filename": "Kloss_Joseph-Ferdinand_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418243}}, {"model": "metainfo.source", "pk": 12544, "fields": {"orig_filename": "Kloss_Richard_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418244}}, {"model": "metainfo.source", "pk": 12545, "fields": {"orig_filename": "Klostermann_Karl_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418245}}, {"model": "metainfo.source", "pk": 12546, "fields": {"orig_filename": "Klotz_Edmund_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418246}}, {"model": "metainfo.source", "pk": 12547, "fields": {"orig_filename": "Klotz_Gottlieb_1780_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418247}}, {"model": "metainfo.source", "pk": 12548, "fields": {"orig_filename": "Klotz_Hermann_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421f.", "author": "", "orig_id": 1418248}}, {"model": "metainfo.source", "pk": 12549, "fields": {"orig_filename": "Klotz_Magdalena_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418249}}, {"model": "metainfo.source", "pk": 12550, "fields": {"orig_filename": "Kloucek_Celda_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418250}}, {"model": "metainfo.source", "pk": 12551, "fields": {"orig_filename": "Kluch_Joseph_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418251}}, {"model": "metainfo.source", "pk": 12552, "fields": {"orig_filename": "Kluczenko_Basil_1844_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418252}}, {"model": "metainfo.source", "pk": 12553, "fields": {"orig_filename": "Klueger_Karl_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422f.", "author": "", "orig_id": 1418253}}, {"model": "metainfo.source", "pk": 12554, "fields": {"orig_filename": "Klug-Klugenwald_Sigmund_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418330}}, {"model": "metainfo.source", "pk": 12555, "fields": {"orig_filename": "Kluger-Teschenburg_Adolf_1830_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424", "author": "", "orig_id": 1418333}}, {"model": "metainfo.source", "pk": 12556, "fields": {"orig_filename": "Kluger_Josef_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418331}}, {"model": "metainfo.source", "pk": 12557, "fields": {"orig_filename": "Kluger_Salomon-B-Jehudah-Ahron_1783_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423f.", "author": "", "orig_id": 1418332}}, {"model": "metainfo.source", "pk": 12558, "fields": {"orig_filename": "Klug_Alfred_1883_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418254}}, {"model": "metainfo.source", "pk": 12559, "fields": {"orig_filename": "Klug_Nandor_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418255}}, {"model": "metainfo.source", "pk": 12560, "fields": {"orig_filename": "Kluibenschedl_Alois_1772_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424", "author": "", "orig_id": 1418334}}, {"model": "metainfo.source", "pk": 12561, "fields": {"orig_filename": "Kluibenschedl_Heinrich_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424f.", "author": "", "orig_id": 1418336}}, {"model": "metainfo.source", "pk": 12562, "fields": {"orig_filename": "Klumpar_Jan-Kvetoslav_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418338}}, {"model": "metainfo.source", "pk": 12563, "fields": {"orig_filename": "Klun_Karl_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418339}}, {"model": "metainfo.source", "pk": 12564, "fields": {"orig_filename": "Klun_Vinzenz-Ferrer_1823_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418340}}, {"model": "metainfo.source", "pk": 12565, "fields": {"orig_filename": "Klusacek_Karel-Ladislav_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425f.", "author": "", "orig_id": 1418341}}, {"model": "metainfo.source", "pk": 12566, "fields": {"orig_filename": "Klusemann_Erich_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418342}}, {"model": "metainfo.source", "pk": 12567, "fields": {"orig_filename": "Klusemann_Otto-Karl-Heinrich_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418343}}, {"model": "metainfo.source", "pk": 12568, "fields": {"orig_filename": "Klutschak_Franz_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418344}}, {"model": "metainfo.source", "pk": 12569, "fields": {"orig_filename": "Klvana_Josef_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426f.", "author": "", "orig_id": 1418417}}, {"model": "metainfo.source", "pk": 12570, "fields": {"orig_filename": "Kment_Adele_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418418}}, {"model": "metainfo.source", "pk": 12571, "fields": {"orig_filename": "Kmetitsch_Agnes_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418420}}, {"model": "metainfo.source", "pk": 12572, "fields": {"orig_filename": "Kmety_Gyoergy_1813_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427f.", "author": "", "orig_id": 1418422}}, {"model": "metainfo.source", "pk": 12573, "fields": {"orig_filename": "Kmet_Andrej_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418419}}, {"model": "metainfo.source", "pk": 12574, "fields": {"orig_filename": "Kminek-Szedlo_Johann_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418423}}, {"model": "metainfo.source", "pk": 12575, "fields": {"orig_filename": "Kmoch_Frantisek_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418424}}, {"model": "metainfo.source", "pk": 12576, "fields": {"orig_filename": "Kmosko_Mihaly_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418426}}, {"model": "metainfo.source", "pk": 12577, "fields": {"orig_filename": "Knaack_Wilhelm_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428f.", "author": "", "orig_id": 1418427}}, {"model": "metainfo.source", "pk": 12578, "fields": {"orig_filename": "Knabl_Hermann_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418428}}, {"model": "metainfo.source", "pk": 12579, "fields": {"orig_filename": "Knabl_Josef_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418429}}, {"model": "metainfo.source", "pk": 12580, "fields": {"orig_filename": "Knabl_Richard_1789_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418430}}, {"model": "metainfo.source", "pk": 12581, "fields": {"orig_filename": "Knafelc_Alojzij_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418432}}, {"model": "metainfo.source", "pk": 12582, "fields": {"orig_filename": "Knaffl-Lenz-Fohnsdorf_Karl_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418434}}, {"model": "metainfo.source", "pk": 12583, "fields": {"orig_filename": "Knaffl-Lenz_Johann-Felix_1769_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418433}}, {"model": "metainfo.source", "pk": 12584, "fields": {"orig_filename": "Knaflic_Josip_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430f.", "author": "", "orig_id": 1418435}}, {"model": "metainfo.source", "pk": 12585, "fields": {"orig_filename": "Knajsl_Matej_1805_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418507}}, {"model": "metainfo.source", "pk": 12586, "fields": {"orig_filename": "Knapp_Blasius_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418508}}, {"model": "metainfo.source", "pk": 12587, "fields": {"orig_filename": "Klebs_Theodor-Albrecht-Edwin_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 374", "author": "", "orig_id": 1418763}}, {"model": "metainfo.source", "pk": 12588, "fields": {"orig_filename": "Klecanda_Jan_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418764}}, {"model": "metainfo.source", "pk": 12589, "fields": {"orig_filename": "Kleczynski_Johann-Bapt_1756_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418765}}, {"model": "metainfo.source", "pk": 12590, "fields": {"orig_filename": "Kleemann_Therese-Marie_1820_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418767}}, {"model": "metainfo.source", "pk": 12591, "fields": {"orig_filename": "Klee_Hermann_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418766}}, {"model": "metainfo.source", "pk": 12592, "fields": {"orig_filename": "Kleibel_Anton_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375f.", "author": "", "orig_id": 1418769}}, {"model": "metainfo.source", "pk": 12593, "fields": {"orig_filename": "Kleiber_Karl_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418770}}, {"model": "metainfo.source", "pk": 12594, "fields": {"orig_filename": "Klein-Ehrenwalten_August_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418943}}, {"model": "metainfo.source", "pk": 12595, "fields": {"orig_filename": "Klein-Rhoden_Rudolf_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418944}}, {"model": "metainfo.source", "pk": 12596, "fields": {"orig_filename": "Kleinert_Josef-Edgar_1859_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387", "author": "", "orig_id": 1418947}}, {"model": "metainfo.source", "pk": 12597, "fields": {"orig_filename": "Kleinert_Karl-Erasmus_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387", "author": "", "orig_id": 1418948}}, {"model": "metainfo.source", "pk": 12598, "fields": {"orig_filename": "Kleiner_Oskar_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418945}}, {"model": "metainfo.source", "pk": 12599, "fields": {"orig_filename": "Kleiner_Viktor_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386f.", "author": "", "orig_id": 1418946}}, {"model": "metainfo.source", "pk": 12600, "fields": {"orig_filename": "Kleinfercher_Johann_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387f.", "author": "", "orig_id": 1418949}}, {"model": "metainfo.source", "pk": 12601, "fields": {"orig_filename": "Kleinhans_Edmund_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388", "author": "", "orig_id": 1418950}}, {"model": "metainfo.source", "pk": 12602, "fields": {"orig_filename": "Kleinhans_Friedrich_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388", "author": "", "orig_id": 1418951}}, {"model": "metainfo.source", "pk": 12603, "fields": {"orig_filename": "Kleinhans_Josef-Barth_1774_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388f.", "author": "", "orig_id": 1418952}}, {"model": "metainfo.source", "pk": 12604, "fields": {"orig_filename": "Kleinheinz_Franz-Xaver_1765_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1418953}}, {"model": "metainfo.source", "pk": 12605, "fields": {"orig_filename": "Kleinmayr_Ferdinand-Josef_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1419031}}, {"model": "metainfo.source", "pk": 12606, "fields": {"orig_filename": "Kleinmayr_Ferdinand_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1419032}}, {"model": "metainfo.source", "pk": 12607, "fields": {"orig_filename": "Kleinmayr_Ferdo_1881_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419033}}, {"model": "metainfo.source", "pk": 12608, "fields": {"orig_filename": "Kleinmayr_Ignaz_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419035}}, {"model": "metainfo.source", "pk": 12609, "fields": {"orig_filename": "Kleinmayr_Ignaz_1830_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419036}}, {"model": "metainfo.source", "pk": 12610, "fields": {"orig_filename": "Kleinmayr_Julij_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390f.", "author": "", "orig_id": 1419038}}, {"model": "metainfo.source", "pk": 12611, "fields": {"orig_filename": "Kleinoscheg_Anton_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 391", "author": "", "orig_id": 1419039}}, {"model": "metainfo.source", "pk": 12612, "fields": {"orig_filename": "Kleinoscheg_Max_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 391f.", "author": "", "orig_id": 1419040}}, {"model": "metainfo.source", "pk": 12613, "fields": {"orig_filename": "Kleinpeter_Johann_1869_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419041}}, {"model": "metainfo.source", "pk": 12614, "fields": {"orig_filename": "Kleinschmid_Friedrich-August_1749_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419042}}, {"model": "metainfo.source", "pk": 12615, "fields": {"orig_filename": "Kleinsorg_Raphael_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419044}}, {"model": "metainfo.source", "pk": 12616, "fields": {"orig_filename": "Kleinwaechter_Alois_1807_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419114}}, {"model": "metainfo.source", "pk": 12617, "fields": {"orig_filename": "Kleinwaechter_Friedrich_1838_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392f.", "author": "", "orig_id": 1419112}}, {"model": "metainfo.source", "pk": 12618, "fields": {"orig_filename": "Kleinwaechter_Ludwig_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419115}}, {"model": "metainfo.source", "pk": 12619, "fields": {"orig_filename": "Klein_Adolf_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418771}}, {"model": "metainfo.source", "pk": 12620, "fields": {"orig_filename": "Klein_Adolf_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418772}}, {"model": "metainfo.source", "pk": 12621, "fields": {"orig_filename": "Klein_Anton_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376f.", "author": "", "orig_id": 1418773}}, {"model": "metainfo.source", "pk": 12622, "fields": {"orig_filename": "Klein_Anton_1830_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418774}}, {"model": "metainfo.source", "pk": 12623, "fields": {"orig_filename": "Klein_Arthur_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418775}}, {"model": "metainfo.source", "pk": 12624, "fields": {"orig_filename": "Klein_Edward-Emanuel_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418776}}, {"model": "metainfo.source", "pk": 12625, "fields": {"orig_filename": "Klein_Franz_1777_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377f.", "author": "", "orig_id": 1418777}}, {"model": "metainfo.source", "pk": 12626, "fields": {"orig_filename": "Klein_Franz_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378", "author": "", "orig_id": 1418779}}, {"model": "metainfo.source", "pk": 12627, "fields": {"orig_filename": "Klein_Franz_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378f.", "author": "", "orig_id": 1418780}}, {"model": "metainfo.source", "pk": 12628, "fields": {"orig_filename": "Klein_Gisela_1873_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454295}}, {"model": "metainfo.source", "pk": 12629, "fields": {"orig_filename": "Klein_Gyula_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 379f.", "author": "", "orig_id": 1418781}}, {"model": "metainfo.source", "pk": 12630, "fields": {"orig_filename": "Klein_Heinrich_1756_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418782}}, {"model": "metainfo.source", "pk": 12631, "fields": {"orig_filename": "Klein_Hubert_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418849}}, {"model": "metainfo.source", "pk": 12632, "fields": {"orig_filename": "Klein_Hugo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418850}}, {"model": "metainfo.source", "pk": 12633, "fields": {"orig_filename": "Klein_Hugo_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418851}}, {"model": "metainfo.source", "pk": 12634, "fields": {"orig_filename": "Klein_Johann-Adam_1792_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418852}}, {"model": "metainfo.source", "pk": 12635, "fields": {"orig_filename": "Klein_Johann-Ev_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418853}}, {"model": "metainfo.source", "pk": 12636, "fields": {"orig_filename": "Klein_Johann-Samuel_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381f.", "author": "", "orig_id": 1418854}}, {"model": "metainfo.source", "pk": 12637, "fields": {"orig_filename": "Klein_Johann-Wilhelm_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 382", "author": "", "orig_id": 1418855}}, {"model": "metainfo.source", "pk": 12638, "fields": {"orig_filename": "Klein_Josef_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383", "author": "", "orig_id": 1418857}}, {"model": "metainfo.source", "pk": 12639, "fields": {"orig_filename": "Klein_Joseph_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 382f.", "author": "", "orig_id": 1418856}}, {"model": "metainfo.source", "pk": 12640, "fields": {"orig_filename": "Klein_Julius-Leopold_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383", "author": "", "orig_id": 1418858}}, {"model": "metainfo.source", "pk": 12641, "fields": {"orig_filename": "Klein_Ludwig_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383f.", "author": "", "orig_id": 1418859}}, {"model": "metainfo.source", "pk": 12642, "fields": {"orig_filename": "Klein_Martin_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418860}}, {"model": "metainfo.source", "pk": 12643, "fields": {"orig_filename": "Klein_Max_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418861}}, {"model": "metainfo.source", "pk": 12644, "fields": {"orig_filename": "Klein_Norbert_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418862}}, {"model": "metainfo.source", "pk": 12645, "fields": {"orig_filename": "Klein_Regine_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418865}}, {"model": "metainfo.source", "pk": 12646, "fields": {"orig_filename": "Klein_Salomon_1845_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418867}}, {"model": "metainfo.source", "pk": 12647, "fields": {"orig_filename": "Klein_Samuel_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418939}}, {"model": "metainfo.source", "pk": 12648, "fields": {"orig_filename": "Klein_Thomas_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418940}}, {"model": "metainfo.source", "pk": 12649, "fields": {"orig_filename": "Klein_Wilhelm_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385f.", "author": "", "orig_id": 1418941}}, {"model": "metainfo.source", "pk": 12650, "fields": {"orig_filename": "Kleiss_Herbert_1930_2000.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1434435}}, {"model": "metainfo.source", "pk": 12651, "fields": {"orig_filename": "Klekler_Pauline_1876_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419118}}, {"model": "metainfo.source", "pk": 12652, "fields": {"orig_filename": "Klekl_Jozef_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419116}}, {"model": "metainfo.source", "pk": 12653, "fields": {"orig_filename": "Klekl_Jozef_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419117}}, {"model": "metainfo.source", "pk": 12654, "fields": {"orig_filename": "Klemencic_Ferdinand_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419120}}, {"model": "metainfo.source", "pk": 12655, "fields": {"orig_filename": "Klemencic_Ignaz_1853_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419121}}, {"model": "metainfo.source", "pk": 12656, "fields": {"orig_filename": "Klemencic_Igo_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394f.", "author": "", "orig_id": 1419122}}, {"model": "metainfo.source", "pk": 12657, "fields": {"orig_filename": "Klemensiewicz_Edmund_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419124}}, {"model": "metainfo.source", "pk": 12658, "fields": {"orig_filename": "Klemensiewicz_Rudolf_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419125}}, {"model": "metainfo.source", "pk": 12659, "fields": {"orig_filename": "Klemensiewicz_Zygmunt_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395f.", "author": "", "orig_id": 1419126}}, {"model": "metainfo.source", "pk": 12660, "fields": {"orig_filename": "Klemens_Josef-Bozetech_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419123}}, {"model": "metainfo.source", "pk": 12661, "fields": {"orig_filename": "Klement_Vaclav_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419127}}, {"model": "metainfo.source", "pk": 12662, "fields": {"orig_filename": "Klemme_Josef-Ludwig_1861_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419194}}, {"model": "metainfo.source", "pk": 12663, "fields": {"orig_filename": "Klemm_Friedrich_1795_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419128}}, {"model": "metainfo.source", "pk": 12664, "fields": {"orig_filename": "Klemm_Josef_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419129}}, {"model": "metainfo.source", "pk": 12665, "fields": {"orig_filename": "Klemt_Agathon_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419195}}, {"model": "metainfo.source", "pk": 12666, "fields": {"orig_filename": "Klenau-Janowitz_Johann_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419196}}, {"model": "metainfo.source", "pk": 12667, "fields": {"orig_filename": "Klepsch-Roden_Eduard_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419197}}, {"model": "metainfo.source", "pk": 12668, "fields": {"orig_filename": "Klesheim_Anton_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397f.", "author": "", "orig_id": 1419198}}, {"model": "metainfo.source", "pk": 12669, "fields": {"orig_filename": "Kletler_Bruno_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398", "author": "", "orig_id": 1419199}}, {"model": "metainfo.source", "pk": 12670, "fields": {"orig_filename": "Kletzinsky_Vinzenz_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398", "author": "", "orig_id": 1419200}}, {"model": "metainfo.source", "pk": 12671, "fields": {"orig_filename": "Kletzl_Otto_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398f.", "author": "", "orig_id": 1419201}}, {"model": "metainfo.source", "pk": 12672, "fields": {"orig_filename": "Kleutgen_Joseph-Wilhelm-Karl_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 399", "author": "", "orig_id": 1419202}}, {"model": "metainfo.source", "pk": 12673, "fields": {"orig_filename": "Kleyle_Franz-Joachim_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 399f.", "author": "", "orig_id": 1419203}}, {"model": "metainfo.source", "pk": 12674, "fields": {"orig_filename": "Kleyle_Karl_1812_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 400", "author": "", "orig_id": 1419204}}, {"model": "metainfo.source", "pk": 12675, "fields": {"orig_filename": "Klicka_Josef_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419206}}, {"model": "metainfo.source", "pk": 12676, "fields": {"orig_filename": "Klicman_Ladislav_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419207}}, {"model": "metainfo.source", "pk": 12677, "fields": {"orig_filename": "Klicpera_Ivan_1845_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419208}}, {"model": "metainfo.source", "pk": 12678, "fields": {"orig_filename": "Klicpera_Vaclav-Kliment_1792_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401f.", "author": "", "orig_id": 1419210}}, {"model": "metainfo.source", "pk": 12679, "fields": {"orig_filename": "Klic_Karel_1841_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 400f.", "author": "", "orig_id": 1419205}}, {"model": "metainfo.source", "pk": 12680, "fields": {"orig_filename": "Klieba_Michael_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419211}}, {"model": "metainfo.source", "pk": 12681, "fields": {"orig_filename": "Kliebenschaedl_Johann-Josef_1811_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419212}}, {"model": "metainfo.source", "pk": 12682, "fields": {"orig_filename": "Kliebert_Karl_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419275}}, {"model": "metainfo.source", "pk": 12683, "fields": {"orig_filename": "Klieber_Eduard_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419273}}, {"model": "metainfo.source", "pk": 12684, "fields": {"orig_filename": "Klieber_Josef_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402f.", "author": "", "orig_id": 1419274}}, {"model": "metainfo.source", "pk": 12685, "fields": {"orig_filename": "Kliegl_Jozsef_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419276}}, {"model": "metainfo.source", "pk": 12686, "fields": {"orig_filename": "Klier_Cenek_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419277}}, {"model": "metainfo.source", "pk": 12687, "fields": {"orig_filename": "Klier_Franz_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419279}}, {"model": "metainfo.source", "pk": 12688, "fields": {"orig_filename": "Klier_Jakob_1790_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403f.", "author": "", "orig_id": 1419280}}, {"model": "metainfo.source", "pk": 12689, "fields": {"orig_filename": "Kirchsteiger_Hans_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414732}}, {"model": "metainfo.source", "pk": 12690, "fields": {"orig_filename": "Kirch_Franz_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337f.", "author": "", "orig_id": 1414649}}, {"model": "metainfo.source", "pk": 12691, "fields": {"orig_filename": "Kirnbauer-Erzstaett_Johann_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414733}}, {"model": "metainfo.source", "pk": 12692, "fields": {"orig_filename": "Kirnbauer-Erzstaett_Philipp_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414734}}, {"model": "metainfo.source", "pk": 12693, "fields": {"orig_filename": "Kirnig_Alois_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343f.", "author": "", "orig_id": 1414735}}, {"model": "metainfo.source", "pk": 12694, "fields": {"orig_filename": "Kirpal_Alfred_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414800}}, {"model": "metainfo.source", "pk": 12695, "fields": {"orig_filename": "Kirschner_Aloisia_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 345f.", "author": "", "orig_id": 1414805}}, {"model": "metainfo.source", "pk": 12696, "fields": {"orig_filename": "Kirschner_Cornelius_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346", "author": "", "orig_id": 1414806}}, {"model": "metainfo.source", "pk": 12697, "fields": {"orig_filename": "Kirschner_Ferdinand_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414807}}, {"model": "metainfo.source", "pk": 12698, "fields": {"orig_filename": "Kirsch_Arnold_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414801}}, {"model": "metainfo.source", "pk": 12699, "fields": {"orig_filename": "Kirsch_August_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414802}}, {"model": "metainfo.source", "pk": 12700, "fields": {"orig_filename": "Kirsch_Bernhard_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344f.", "author": "", "orig_id": 1414803}}, {"model": "metainfo.source", "pk": 12701, "fields": {"orig_filename": "Kirsch_Otto_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 345", "author": "", "orig_id": 1414804}}, {"model": "metainfo.source", "pk": 12702, "fields": {"orig_filename": "Kirstein_August_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346f.", "author": "", "orig_id": 1414809}}, {"model": "metainfo.source", "pk": 12703, "fields": {"orig_filename": "Kirste_Johann-Otto-Ferdinand_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346", "author": "", "orig_id": 1414808}}, {"model": "metainfo.source", "pk": 12704, "fields": {"orig_filename": "Kisa_Anton-Karl_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 347", "author": "", "orig_id": 1414810}}, {"model": "metainfo.source", "pk": 12705, "fields": {"orig_filename": "Kisch_Alexander_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 347f.", "author": "", "orig_id": 1414811}}, {"model": "metainfo.source", "pk": 12706, "fields": {"orig_filename": "Kisch_Egon_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 348f.", "author": "", "orig_id": 1414812}}, {"model": "metainfo.source", "pk": 12707, "fields": {"orig_filename": "Kisch_Enoch-Heinrich_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 349", "author": "", "orig_id": 1414813}}, {"model": "metainfo.source", "pk": 12708, "fields": {"orig_filename": "Kisch_Gustav-Oswald_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 349f.", "author": "", "orig_id": 1414814}}, {"model": "metainfo.source", "pk": 12709, "fields": {"orig_filename": "Kisch_Wilhelm-Maximilian_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414815}}, {"model": "metainfo.source", "pk": 12710, "fields": {"orig_filename": "Kiseljak_Mara_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414816}}, {"model": "metainfo.source", "pk": 12711, "fields": {"orig_filename": "Kiseljak_Marije_1883_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414817}}, {"model": "metainfo.source", "pk": 12712, "fields": {"orig_filename": "Kiseljak_Vladimir_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414818}}, {"model": "metainfo.source", "pk": 12713, "fields": {"orig_filename": "Kisfaludy_Karoly_1788_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350f.", "author": "", "orig_id": 1414819}}, {"model": "metainfo.source", "pk": 12714, "fields": {"orig_filename": "Kisfaludy_Sandor_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351", "author": "", "orig_id": 1414820}}, {"model": "metainfo.source", "pk": 12715, "fields": {"orig_filename": "Kisic_Vinko_1879_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351", "author": "", "orig_id": 1414888}}, {"model": "metainfo.source", "pk": 12716, "fields": {"orig_filename": "Kisielewski_Jan-August_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351f.", "author": "", "orig_id": 1414889}}, {"model": "metainfo.source", "pk": 12717, "fields": {"orig_filename": "Kispatic_Mijo_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352", "author": "", "orig_id": 1414890}}, {"model": "metainfo.source", "pk": 12718, "fields": {"orig_filename": "Kiss-Ittebe-Elemer_Ernoe_1800_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414980}}, {"model": "metainfo.source", "pk": 12719, "fields": {"orig_filename": "Kiss-Nemesker_Miklos_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414981}}, {"model": "metainfo.source", "pk": 12720, "fields": {"orig_filename": "Kissling_Adolf_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356f.", "author": "", "orig_id": 1414982}}, {"model": "metainfo.source", "pk": 12721, "fields": {"orig_filename": "Kissner-Scheurich_Babette_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 357", "author": "", "orig_id": 1414983}}, {"model": "metainfo.source", "pk": 12722, "fields": {"orig_filename": "Kiss_Aron_1815_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352", "author": "", "orig_id": 1414891}}, {"model": "metainfo.source", "pk": 12723, "fields": {"orig_filename": "Kiss_Aron_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352f.", "author": "", "orig_id": 1414892}}, {"model": "metainfo.source", "pk": 12724, "fields": {"orig_filename": "Kiss_Balint_1772_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414893}}, {"model": "metainfo.source", "pk": 12725, "fields": {"orig_filename": "Kiss_Balint_1802_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414894}}, {"model": "metainfo.source", "pk": 12726, "fields": {"orig_filename": "Kiss_Ferenc_1862_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414895}}, {"model": "metainfo.source", "pk": 12727, "fields": {"orig_filename": "Kiss_Franz_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414896}}, {"model": "metainfo.source", "pk": 12728, "fields": {"orig_filename": "Kiss_Gyoergy_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353f.", "author": "", "orig_id": 1414898}}, {"model": "metainfo.source", "pk": 12729, "fields": {"orig_filename": "Kiss_Istvan_1857_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354", "author": "", "orig_id": 1414899}}, {"model": "metainfo.source", "pk": 12730, "fields": {"orig_filename": "Kiss_Janos_1770_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354", "author": "", "orig_id": 1414900}}, {"model": "metainfo.source", "pk": 12731, "fields": {"orig_filename": "Kiss_Janos_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354f.", "author": "", "orig_id": 1414901}}, {"model": "metainfo.source", "pk": 12732, "fields": {"orig_filename": "Kiss_Josef_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414902}}, {"model": "metainfo.source", "pk": 12733, "fields": {"orig_filename": "Kiss_Jozsef_1765_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414903}}, {"model": "metainfo.source", "pk": 12734, "fields": {"orig_filename": "Kiss_Jozsef_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414975}}, {"model": "metainfo.source", "pk": 12735, "fields": {"orig_filename": "Kiss_Kalman_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414976}}, {"model": "metainfo.source", "pk": 12736, "fields": {"orig_filename": "Kiss_Karoly_1793_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355f.", "author": "", "orig_id": 1414977}}, {"model": "metainfo.source", "pk": 12737, "fields": {"orig_filename": "Kiss_Karoly_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414978}}, {"model": "metainfo.source", "pk": 12738, "fields": {"orig_filename": "Kitaibel_Paul_1757_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 357f.", "author": "", "orig_id": 1414222}}, {"model": "metainfo.source", "pk": 12739, "fields": {"orig_filename": "Kitir_Joseph_1867_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358", "author": "", "orig_id": 1414223}}, {"model": "metainfo.source", "pk": 12740, "fields": {"orig_filename": "Kitschelt_Lothar_1910_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358", "author": "", "orig_id": 1414224}}, {"model": "metainfo.source", "pk": 12741, "fields": {"orig_filename": "Kittel_Anton__1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358f.", "author": "", "orig_id": 1414225}}, {"model": "metainfo.source", "pk": 12742, "fields": {"orig_filename": "Kittel_Gerhard_1888_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 359", "author": "", "orig_id": 1414226}}, {"model": "metainfo.source", "pk": 12743, "fields": {"orig_filename": "Kittl_Ernst_1854_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 359f.", "author": "", "orig_id": 1414228}}, {"model": "metainfo.source", "pk": 12744, "fields": {"orig_filename": "Kittl_Johann-Friedrich_1806_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 360", "author": "", "orig_id": 1414229}}, {"model": "metainfo.source", "pk": 12745, "fields": {"orig_filename": "Kittner_Alexander_1809_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 360", "author": "", "orig_id": 1414230}}, {"model": "metainfo.source", "pk": 12746, "fields": {"orig_filename": "Kittner_Patriz_1809_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414231}}, {"model": "metainfo.source", "pk": 12747, "fields": {"orig_filename": "Kitzler_Otto_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414232}}, {"model": "metainfo.source", "pk": 12748, "fields": {"orig_filename": "Kiurina_Berta_1888_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414233}}, {"model": "metainfo.source", "pk": 12749, "fields": {"orig_filename": "Kiuver_Stephan-Agontz_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414234}}, {"model": "metainfo.source", "pk": 12750, "fields": {"orig_filename": "Kiwisch-Rotterau_Franz_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361f.", "author": "", "orig_id": 1414235}}, {"model": "metainfo.source", "pk": 12751, "fields": {"orig_filename": "Klaar_Alfred_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 362", "author": "", "orig_id": 1414236}}, {"model": "metainfo.source", "pk": 12752, "fields": {"orig_filename": "Klacel_Matous_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 362f.", "author": "", "orig_id": 1414237}}, {"model": "metainfo.source", "pk": 12753, "fields": {"orig_filename": "Klaczko_Julian_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414238}}, {"model": "metainfo.source", "pk": 12754, "fields": {"orig_filename": "Kladivo_Bohumil_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414239}}, {"model": "metainfo.source", "pk": 12755, "fields": {"orig_filename": "Klaeger_Emil_1880_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414240}}, {"model": "metainfo.source", "pk": 12756, "fields": {"orig_filename": "Klaehr_Franziska_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363f.", "author": "", "orig_id": 1414304}}, {"model": "metainfo.source", "pk": 12757, "fields": {"orig_filename": "Klafsky_Katharina_1855_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 364", "author": "", "orig_id": 1414305}}, {"model": "metainfo.source", "pk": 12758, "fields": {"orig_filename": "Klahs_Ignatz_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 364f.", "author": "", "orig_id": 1414306}}, {"model": "metainfo.source", "pk": 12759, "fields": {"orig_filename": "Klaic_Franjo_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365", "author": "", "orig_id": 1414307}}, {"model": "metainfo.source", "pk": 12760, "fields": {"orig_filename": "Klaic_Miho_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365", "author": "", "orig_id": 1414308}}, {"model": "metainfo.source", "pk": 12761, "fields": {"orig_filename": "Klaic_Vjekoslav_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365f.", "author": "", "orig_id": 1414309}}, {"model": "metainfo.source", "pk": 12762, "fields": {"orig_filename": "Klajic_Jovan_1815_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414310}}, {"model": "metainfo.source", "pk": 12763, "fields": {"orig_filename": "Klama_Odilo_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414311}}, {"model": "metainfo.source", "pk": 12764, "fields": {"orig_filename": "Klammer_Nicolaus_1769_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414312}}, {"model": "metainfo.source", "pk": 12765, "fields": {"orig_filename": "Klammer_Richard_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414313}}, {"model": "metainfo.source", "pk": 12766, "fields": {"orig_filename": "Klang_Heinrich-Adalbert_1875_1954.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454721}}, {"model": "metainfo.source", "pk": 12767, "fields": {"orig_filename": "Klang_James_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366f.", "author": "", "orig_id": 1414314}}, {"model": "metainfo.source", "pk": 12768, "fields": {"orig_filename": "Klapalek_Frantisek_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367", "author": "", "orig_id": 1414315}}, {"model": "metainfo.source", "pk": 12769, "fields": {"orig_filename": "Klapeer_Anton_1770_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367", "author": "", "orig_id": 1414316}}, {"model": "metainfo.source", "pk": 12770, "fields": {"orig_filename": "Klapka_Georg_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367f.", "author": "", "orig_id": 1414317}}, {"model": "metainfo.source", "pk": 12771, "fields": {"orig_filename": "Klapp_Michael_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 368", "author": "", "orig_id": 1414318}}, {"model": "metainfo.source", "pk": 12772, "fields": {"orig_filename": "Klapsia_Heinrich_1907_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 368f.", "author": "", "orig_id": 1414319}}, {"model": "metainfo.source", "pk": 12773, "fields": {"orig_filename": "Klar_Alois_1763_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369", "author": "", "orig_id": 1414320}}, {"model": "metainfo.source", "pk": 12774, "fields": {"orig_filename": "Klar_Christoph_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369", "author": "", "orig_id": 1414321}}, {"model": "metainfo.source", "pk": 12775, "fields": {"orig_filename": "Klar_Paul-Alois_1801_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369f.", "author": "", "orig_id": 1414322}}, {"model": "metainfo.source", "pk": 12776, "fields": {"orig_filename": "Klar_Rudolf-Maria_1845_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414387}}, {"model": "metainfo.source", "pk": 12777, "fields": {"orig_filename": "Klastersky_Antonin_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414386}}, {"model": "metainfo.source", "pk": 12778, "fields": {"orig_filename": "Klatscher_Alfred_1858_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414388}}, {"model": "metainfo.source", "pk": 12779, "fields": {"orig_filename": "Klaudi_Josef_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414389}}, {"model": "metainfo.source", "pk": 12780, "fields": {"orig_filename": "Klaudy_Karel-Leopold_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370f.", "author": "", "orig_id": 1414390}}, {"model": "metainfo.source", "pk": 12781, "fields": {"orig_filename": "Klausberger_Maria-Leopoldine_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371f.", "author": "", "orig_id": 1414394}}, {"model": "metainfo.source", "pk": 12782, "fields": {"orig_filename": "Klausner_Hubert_1892_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372", "author": "", "orig_id": 1414395}}, {"model": "metainfo.source", "pk": 12783, "fields": {"orig_filename": "Klaus_Johannes_1847_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414391}}, {"model": "metainfo.source", "pk": 12784, "fields": {"orig_filename": "Klaus_Josef_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414393}}, {"model": "metainfo.source", "pk": 12785, "fields": {"orig_filename": "Klaus_Raimund_1812_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414392}}, {"model": "metainfo.source", "pk": 12786, "fields": {"orig_filename": "Klauzal_Gabor_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372", "author": "", "orig_id": 1414396}}, {"model": "metainfo.source", "pk": 12787, "fields": {"orig_filename": "Klauzal_Imre_1799_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372f.", "author": "", "orig_id": 1414397}}, {"model": "metainfo.source", "pk": 12788, "fields": {"orig_filename": "Klavik_Frantisek-Josef_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414398}}, {"model": "metainfo.source", "pk": 12789, "fields": {"orig_filename": "Klavzar_Ernest_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414399}}, {"model": "metainfo.source", "pk": 12790, "fields": {"orig_filename": "Klebelsberg-Thumburg_Franz_1774_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414400}}, {"model": "metainfo.source", "pk": 12791, "fields": {"orig_filename": "Klebelsberg-Thumburg_Hieronymus_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373f.", "author": "", "orig_id": 1414401}}, {"model": "metainfo.source", "pk": 12792, "fields": {"orig_filename": "Klebelsberg-Thumburg_Jakob-Philipp_1749_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 374", "author": "", "orig_id": 1414402}}, {"model": "metainfo.source", "pk": 12793, "fields": {"orig_filename": "Kettner_Adolf_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414298}}, {"model": "metainfo.source", "pk": 12794, "fields": {"orig_filename": "Kettner_Ferdinand_1779_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414299}}, {"model": "metainfo.source", "pk": 12795, "fields": {"orig_filename": "Kezdi-Kovacs_Laszlo_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414300}}, {"model": "metainfo.source", "pk": 12796, "fields": {"orig_filename": "Khackhl_Thomas_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314f.", "author": "", "orig_id": 1414301}}, {"model": "metainfo.source", "pk": 12797, "fields": {"orig_filename": "Khautz-Eulenthal_Karl_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 315", "author": "", "orig_id": 1414303}}, {"model": "metainfo.source", "pk": 12798, "fields": {"orig_filename": "Khayll_Alois_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 315f.", "author": "", "orig_id": 1414366}}, {"model": "metainfo.source", "pk": 12799, "fields": {"orig_filename": "Khayll_Josef_1781_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414367}}, {"model": "metainfo.source", "pk": 12800, "fields": {"orig_filename": "Kheil_Karel-Petr_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414369}}, {"model": "metainfo.source", "pk": 12801, "fields": {"orig_filename": "Kheil_Karel-Petr_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414368}}, {"model": "metainfo.source", "pk": 12802, "fields": {"orig_filename": "Kherndl_Antal_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414370}}, {"model": "metainfo.source", "pk": 12803, "fields": {"orig_filename": "Khevenhueller-Metsch_Rudolf_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316f.", "author": "", "orig_id": 1414371}}, {"model": "metainfo.source", "pk": 12804, "fields": {"orig_filename": "Khittel-Westhort_Jaroslav_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414373}}, {"model": "metainfo.source", "pk": 12805, "fields": {"orig_filename": "Khittel_Rudolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414372}}, {"model": "metainfo.source", "pk": 12806, "fields": {"orig_filename": "Khoss-Sternegg_August_1819_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414374}}, {"model": "metainfo.source", "pk": 12807, "fields": {"orig_filename": "Khoss-Sternegg_Johann_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414375}}, {"model": "metainfo.source", "pk": 12808, "fields": {"orig_filename": "Khoss-Sternegg_Josef_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317f.", "author": "", "orig_id": 1414376}}, {"model": "metainfo.source", "pk": 12809, "fields": {"orig_filename": "Khuen-Hedervary_Karoly_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414378}}, {"model": "metainfo.source", "pk": 12810, "fields": {"orig_filename": "Khuenberg_Sophie_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414379}}, {"model": "metainfo.source", "pk": 12811, "fields": {"orig_filename": "Khuenl_Jacob-Rudolph_1775_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318f.", "author": "", "orig_id": 1414380}}, {"model": "metainfo.source", "pk": 12812, "fields": {"orig_filename": "Khuen_Theodor-Franz-Maria_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414377}}, {"model": "metainfo.source", "pk": 12813, "fields": {"orig_filename": "Khuepach-Ried-Zimmerlehen-Haslburg_Viktor_1859_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414381}}, {"model": "metainfo.source", "pk": 12814, "fields": {"orig_filename": "Khull-Kholwald_Ferdinand_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414382}}, {"model": "metainfo.source", "pk": 12815, "fields": {"orig_filename": "Kicinski_Bruno_1796_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414383}}, {"model": "metainfo.source", "pk": 12816, "fields": {"orig_filename": "Kickh_Clemens_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320", "author": "", "orig_id": 1414385}}, {"model": "metainfo.source", "pk": 12817, "fields": {"orig_filename": "Kick_Friedrich_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320", "author": "", "orig_id": 1414384}}, {"model": "metainfo.source", "pk": 12818, "fields": {"orig_filename": "Kidric_Franc_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320f.", "author": "", "orig_id": 1414446}}, {"model": "metainfo.source", "pk": 12819, "fields": {"orig_filename": "Kiechl_Johann_1804_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414447}}, {"model": "metainfo.source", "pk": 12820, "fields": {"orig_filename": "Kiechl_Josef_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414448}}, {"model": "metainfo.source", "pk": 12821, "fields": {"orig_filename": "Kiechl_Josef_1807_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414449}}, {"model": "metainfo.source", "pk": 12822, "fields": {"orig_filename": "Kiedron_Jozef_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321f.", "author": "", "orig_id": 1414450}}, {"model": "metainfo.source", "pk": 12823, "fields": {"orig_filename": "Kielmansegge_Alexander_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322", "author": "", "orig_id": 1414452}}, {"model": "metainfo.source", "pk": 12824, "fields": {"orig_filename": "Kielmansegg_Erich_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322", "author": "", "orig_id": 1414451}}, {"model": "metainfo.source", "pk": 12825, "fields": {"orig_filename": "Kiem_Martin_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322f.", "author": "", "orig_id": 1414453}}, {"model": "metainfo.source", "pk": 12826, "fields": {"orig_filename": "Kienast_Friedrich-August_1853_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414454}}, {"model": "metainfo.source", "pk": 12827, "fields": {"orig_filename": "Kiendl_Anton_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414458}}, {"model": "metainfo.source", "pk": 12828, "fields": {"orig_filename": "Kiener_Franz_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414460}}, {"model": "metainfo.source", "pk": 12829, "fields": {"orig_filename": "Kiene_Kurt_1891_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414459}}, {"model": "metainfo.source", "pk": 12830, "fields": {"orig_filename": "Kieninger_Johann-Georg_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323f.", "author": "", "orig_id": 1414461}}, {"model": "metainfo.source", "pk": 12831, "fields": {"orig_filename": "Kienmayer_Michael_1755_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414462}}, {"model": "metainfo.source", "pk": 12832, "fields": {"orig_filename": "Kienreich_Franz-Xaver_1806_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414463}}, {"model": "metainfo.source", "pk": 12833, "fields": {"orig_filename": "Kienreich_Johann-Nep-Andreas_1759_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414464}}, {"model": "metainfo.source", "pk": 12834, "fields": {"orig_filename": "Kienzl_Hermann_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324f.", "author": "", "orig_id": 1414465}}, {"model": "metainfo.source", "pk": 12835, "fields": {"orig_filename": "Kienzl_Josef_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 325", "author": "", "orig_id": 1414466}}, {"model": "metainfo.source", "pk": 12836, "fields": {"orig_filename": "Kienzl_Wilhelm_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 325f.", "author": "", "orig_id": 1414538}}, {"model": "metainfo.source", "pk": 12837, "fields": {"orig_filename": "Kienzl_Wilhelm_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 326", "author": "", "orig_id": 1414539}}, {"model": "metainfo.source", "pk": 12838, "fields": {"orig_filename": "Kierschner_Eduard_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 326f.", "author": "", "orig_id": 1414540}}, {"model": "metainfo.source", "pk": 12839, "fields": {"orig_filename": "Kierschner_Franz_1833_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414541}}, {"model": "metainfo.source", "pk": 12840, "fields": {"orig_filename": "Kiesewetter-Wiesenbrunn_Irene_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414544}}, {"model": "metainfo.source", "pk": 12841, "fields": {"orig_filename": "Kiesewetter-Wiesenbrunn_Raphael-Georg_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327f.", "author": "", "orig_id": 1414545}}, {"model": "metainfo.source", "pk": 12842, "fields": {"orig_filename": "Kiesling_Daniel_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414546}}, {"model": "metainfo.source", "pk": 12843, "fields": {"orig_filename": "Kiesling_Leopold_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414547}}, {"model": "metainfo.source", "pk": 12844, "fields": {"orig_filename": "Kiesslich_Anton_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414548}}, {"model": "metainfo.source", "pk": 12845, "fields": {"orig_filename": "Kiessling_Franz-Xaver_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329", "author": "", "orig_id": 1414549}}, {"model": "metainfo.source", "pk": 12846, "fields": {"orig_filename": "Kiessling_Johann-Tobias_1742_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329", "author": "", "orig_id": 1414550}}, {"model": "metainfo.source", "pk": 12847, "fields": {"orig_filename": "Kies_Heinrich_1778_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414542}}, {"model": "metainfo.source", "pk": 12848, "fields": {"orig_filename": "Kikic_Hasan_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329f.", "author": "", "orig_id": 1414552}}, {"model": "metainfo.source", "pk": 12849, "fields": {"orig_filename": "Kilanyi_Ludwig_1819_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414553}}, {"model": "metainfo.source", "pk": 12850, "fields": {"orig_filename": "Kilanyi_Therese_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414554}}, {"model": "metainfo.source", "pk": 12851, "fields": {"orig_filename": "Kilenyi_Janos_1805_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414555}}, {"model": "metainfo.source", "pk": 12852, "fields": {"orig_filename": "Kilian-Gayrsperg_Franz-Xaver_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414556}}, {"model": "metainfo.source", "pk": 12853, "fields": {"orig_filename": "Kimmel_Fidelis_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414557}}, {"model": "metainfo.source", "pk": 12854, "fields": {"orig_filename": "Kimnach_Ladislaus_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414558}}, {"model": "metainfo.source", "pk": 12855, "fields": {"orig_filename": "Kindermann_Rudolf_1897_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414560}}, {"model": "metainfo.source", "pk": 12856, "fields": {"orig_filename": "Kindinger_Eduard_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414561}}, {"model": "metainfo.source", "pk": 12857, "fields": {"orig_filename": "Kindinger_Ignaz_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414632}}, {"model": "metainfo.source", "pk": 12858, "fields": {"orig_filename": "Kind_Alexander_1890_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414559}}, {"model": "metainfo.source", "pk": 12859, "fields": {"orig_filename": "Kininger_Vincenz-Georg_1767_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331f.", "author": "", "orig_id": 1414633}}, {"model": "metainfo.source", "pk": 12860, "fields": {"orig_filename": "Kink_Anton_1820_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 332", "author": "", "orig_id": 1414634}}, {"model": "metainfo.source", "pk": 12861, "fields": {"orig_filename": "Kink_Franz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 332f.", "author": "", "orig_id": 1414635}}, {"model": "metainfo.source", "pk": 12862, "fields": {"orig_filename": "Kink_Julius_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 333", "author": "", "orig_id": 1414636}}, {"model": "metainfo.source", "pk": 12863, "fields": {"orig_filename": "Kink_Martin_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 333f.", "author": "", "orig_id": 1414637}}, {"model": "metainfo.source", "pk": 12864, "fields": {"orig_filename": "Kink_Rudolf_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 334", "author": "", "orig_id": 1414638}}, {"model": "metainfo.source", "pk": 12865, "fields": {"orig_filename": "Kinsele-Eckberg_Josef_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 334f.", "author": "", "orig_id": 1414639}}, {"model": "metainfo.source", "pk": 12866, "fields": {"orig_filename": "Kinsky-Wchinitz-Tettau_Carl_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414640}}, {"model": "metainfo.source", "pk": 12867, "fields": {"orig_filename": "Kinsky-Wchinitz-Tettau_Christian_1777_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414641}}, {"model": "metainfo.source", "pk": 12868, "fields": {"orig_filename": "Kinter_Maurus_1842_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414642}}, {"model": "metainfo.source", "pk": 12869, "fields": {"orig_filename": "Kinzel_Josef_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336", "author": "", "orig_id": 1414644}}, {"model": "metainfo.source", "pk": 12870, "fields": {"orig_filename": "Kinzer_Karl_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336", "author": "", "orig_id": 1414645}}, {"model": "metainfo.source", "pk": 12871, "fields": {"orig_filename": "Kinzl_Josef_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336f.", "author": "", "orig_id": 1414646}}, {"model": "metainfo.source", "pk": 12872, "fields": {"orig_filename": "Kinz_Ferdinand_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335f.", "author": "", "orig_id": 1414643}}, {"model": "metainfo.source", "pk": 12873, "fields": {"orig_filename": "Kirac_Luka_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337", "author": "", "orig_id": 1414647}}, {"model": "metainfo.source", "pk": 12874, "fields": {"orig_filename": "Kiralyi_Pal_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337", "author": "", "orig_id": 1414648}}, {"model": "metainfo.source", "pk": 12875, "fields": {"orig_filename": "Kirchbach-Lauterbach_Johann_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414650}}, {"model": "metainfo.source", "pk": 12876, "fields": {"orig_filename": "Kirchbach-Lauterbach_Karl_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414651}}, {"model": "metainfo.source", "pk": 12877, "fields": {"orig_filename": "Kirchberger_Johann-Ev_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414652}}, {"model": "metainfo.source", "pk": 12878, "fields": {"orig_filename": "Kirchebner_Anton-Alois_1823_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338f.", "author": "", "orig_id": 1414653}}, {"model": "metainfo.source", "pk": 12879, "fields": {"orig_filename": "Kirchebner_Franz-Xaver_1736_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414715}}, {"model": "metainfo.source", "pk": 12880, "fields": {"orig_filename": "Kirchebner_Peter-Paul_1812_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414716}}, {"model": "metainfo.source", "pk": 12881, "fields": {"orig_filename": "Kirchenberger_Salomon_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414717}}, {"model": "metainfo.source", "pk": 12882, "fields": {"orig_filename": "Kirchgaesser-Rheinhoven_Julius_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414718}}, {"model": "metainfo.source", "pk": 12883, "fields": {"orig_filename": "Kirchhammer_Alexander_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339f.", "author": "", "orig_id": 1414719}}, {"model": "metainfo.source", "pk": 12884, "fields": {"orig_filename": "Kirchhoffer_Rudolf_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414720}}, {"model": "metainfo.source", "pk": 12885, "fields": {"orig_filename": "Kirchlechner_Alfons_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414722}}, {"model": "metainfo.source", "pk": 12886, "fields": {"orig_filename": "Kirchlehner_Ferenc_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340f.", "author": "", "orig_id": 1414723}}, {"model": "metainfo.source", "pk": 12887, "fields": {"orig_filename": "Kirchmayer_Wincenty-Marcin-Kanty_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414724}}, {"model": "metainfo.source", "pk": 12888, "fields": {"orig_filename": "Kirchmayr_Hermann_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414725}}, {"model": "metainfo.source", "pk": 12889, "fields": {"orig_filename": "Kirchner_Hermann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414726}}, {"model": "metainfo.source", "pk": 12890, "fields": {"orig_filename": "Kirchner_Johann-Carl_1821_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341f.", "author": "", "orig_id": 1414727}}, {"model": "metainfo.source", "pk": 12891, "fields": {"orig_filename": "Kirchner_Leopold-Anton_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414728}}, {"model": "metainfo.source", "pk": 12892, "fields": {"orig_filename": "Kirchner_Raphael_1875_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414729}}, {"model": "metainfo.source", "pk": 12893, "fields": {"orig_filename": "Kirchner_Theodor_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414730}}, {"model": "metainfo.source", "pk": 12894, "fields": {"orig_filename": "Kirchsberg_Ernestine_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342f.", "author": "", "orig_id": 1414731}}, {"model": "metainfo.source", "pk": 12895, "fields": {"orig_filename": "Keil-Eichenthurn_Othmar_1888_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282f.", "author": "", "orig_id": 1415218}}, {"model": "metainfo.source", "pk": 12896, "fields": {"orig_filename": "Keil_Anton_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281f.", "author": "", "orig_id": 1415215}}, {"model": "metainfo.source", "pk": 12897, "fields": {"orig_filename": "Keil_Franz_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282", "author": "", "orig_id": 1415216}}, {"model": "metainfo.source", "pk": 12898, "fields": {"orig_filename": "Keil_Franz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282", "author": "", "orig_id": 1415217}}, {"model": "metainfo.source", "pk": 12899, "fields": {"orig_filename": "Keim_Franz_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 283", "author": "", "orig_id": 1415219}}, {"model": "metainfo.source", "pk": 12900, "fields": {"orig_filename": "Keintzel_Georg_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 283f.", "author": "", "orig_id": 1415220}}, {"model": "metainfo.source", "pk": 12901, "fields": {"orig_filename": "Keissler_Karl_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415221}}, {"model": "metainfo.source", "pk": 12902, "fields": {"orig_filename": "Keiter_Ernst_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415222}}, {"model": "metainfo.source", "pk": 12903, "fields": {"orig_filename": "Keitler_Heinrich_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415223}}, {"model": "metainfo.source", "pk": 12904, "fields": {"orig_filename": "Keki_Richard_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415224}}, {"model": "metainfo.source", "pk": 12905, "fields": {"orig_filename": "Kelbetz_Ludwig_1905_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284f.", "author": "", "orig_id": 1415225}}, {"model": "metainfo.source", "pk": 12906, "fields": {"orig_filename": "Kelemen_Imre_1746_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1415226}}, {"model": "metainfo.source", "pk": 12907, "fields": {"orig_filename": "Keler_Albert-Paul_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1413935}}, {"model": "metainfo.source", "pk": 12908, "fields": {"orig_filename": "Keleti_Gusztav-Frigyes_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1413936}}, {"model": "metainfo.source", "pk": 12909, "fields": {"orig_filename": "Keleti_Karoly_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285f.", "author": "", "orig_id": 1413937}}, {"model": "metainfo.source", "pk": 12910, "fields": {"orig_filename": "Kellermann_Georg_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413951}}, {"model": "metainfo.source", "pk": 12911, "fields": {"orig_filename": "Keller_Alfred_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286f.", "author": "", "orig_id": 1413941}}, {"model": "metainfo.source", "pk": 12912, "fields": {"orig_filename": "Keller_Franz-Carl_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287", "author": "", "orig_id": 1413942}}, {"model": "metainfo.source", "pk": 12913, "fields": {"orig_filename": "Keller_Gustav_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287", "author": "", "orig_id": 1413943}}, {"model": "metainfo.source", "pk": 12914, "fields": {"orig_filename": "Keller_Heinrich_1866_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287f.", "author": "", "orig_id": 1413944}}, {"model": "metainfo.source", "pk": 12915, "fields": {"orig_filename": "Keller_Karl-Ludwig-Adam_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 288", "author": "", "orig_id": 1413945}}, {"model": "metainfo.source", "pk": 12916, "fields": {"orig_filename": "Keller_Konstantin_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413946}}, {"model": "metainfo.source", "pk": 12917, "fields": {"orig_filename": "Keller_Otto_1838_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413947}}, {"model": "metainfo.source", "pk": 12918, "fields": {"orig_filename": "Keller_Otto_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413948}}, {"model": "metainfo.source", "pk": 12919, "fields": {"orig_filename": "Keller_Rosa_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413949}}, {"model": "metainfo.source", "pk": 12920, "fields": {"orig_filename": "Keller_Seraphin_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413950}}, {"model": "metainfo.source", "pk": 12921, "fields": {"orig_filename": "Kelle_Carl_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286", "author": "", "orig_id": 1413938}}, {"model": "metainfo.source", "pk": 12922, "fields": {"orig_filename": "Kelle_Johann_1828_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286", "author": "", "orig_id": 1413939}}, {"model": "metainfo.source", "pk": 12923, "fields": {"orig_filename": "Kellner-Koellenstein_Friedrich-Marcus_1802_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 291", "author": "", "orig_id": 1413954}}, {"model": "metainfo.source", "pk": 12924, "fields": {"orig_filename": "Kellner_Karl_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413952}}, {"model": "metainfo.source", "pk": 12925, "fields": {"orig_filename": "Kellner_Leon_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290f.", "author": "", "orig_id": 1413953}}, {"model": "metainfo.source", "pk": 12926, "fields": {"orig_filename": "Kelsen_Hans_1881_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1452604}}, {"model": "metainfo.source", "pk": 12927, "fields": {"orig_filename": "Kematmueller_Heinrich-Nikolaus_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 291f.", "author": "", "orig_id": 1413955}}, {"model": "metainfo.source", "pk": 12928, "fields": {"orig_filename": "Kemenater_Peter-Johann_1783_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1413956}}, {"model": "metainfo.source", "pk": 12929, "fields": {"orig_filename": "Kemendy_Jenoe_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1413957}}, {"model": "metainfo.source", "pk": 12930, "fields": {"orig_filename": "Kemeny_Jozsef_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1414028}}, {"model": "metainfo.source", "pk": 12931, "fields": {"orig_filename": "Kemeny_Zsigmond_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292f.", "author": "", "orig_id": 1414029}}, {"model": "metainfo.source", "pk": 12932, "fields": {"orig_filename": "Kempen-Fichtenstamm_Johann-Franz_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414030}}, {"model": "metainfo.source", "pk": 12933, "fields": {"orig_filename": "Kempf_Julije_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414031}}, {"model": "metainfo.source", "pk": 12934, "fields": {"orig_filename": "Kenda_Josip_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414032}}, {"model": "metainfo.source", "pk": 12935, "fields": {"orig_filename": "Kenda_Josip_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293f.", "author": "", "orig_id": 1414033}}, {"model": "metainfo.source", "pk": 12936, "fields": {"orig_filename": "Kende_Oskar_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414034}}, {"model": "metainfo.source", "pk": 12937, "fields": {"orig_filename": "Kendler_Rudolf_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414037}}, {"model": "metainfo.source", "pk": 12938, "fields": {"orig_filename": "Kengelac_Emilijan_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414038}}, {"model": "metainfo.source", "pk": 12939, "fields": {"orig_filename": "Kengelac_Pavao_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414039}}, {"model": "metainfo.source", "pk": 12940, "fields": {"orig_filename": "Kenner_Anton_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294f.", "author": "", "orig_id": 1414040}}, {"model": "metainfo.source", "pk": 12941, "fields": {"orig_filename": "Kenner_Friedrich_1834_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 295", "author": "", "orig_id": 1414041}}, {"model": "metainfo.source", "pk": 12942, "fields": {"orig_filename": "Kenner_Joseph_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 295f.", "author": "", "orig_id": 1414042}}, {"model": "metainfo.source", "pk": 12943, "fields": {"orig_filename": "Kennessey_Bela_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414043}}, {"model": "metainfo.source", "pk": 12944, "fields": {"orig_filename": "Kepka_Karel-Hugo_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414044}}, {"model": "metainfo.source", "pk": 12945, "fields": {"orig_filename": "Keppler_Zoelestin_1784_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414045}}, {"model": "metainfo.source", "pk": 12946, "fields": {"orig_filename": "Kepplinger_Josef_1849_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414046}}, {"model": "metainfo.source", "pk": 12947, "fields": {"orig_filename": "Kerausch_Josef_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296f.", "author": "", "orig_id": 1414047}}, {"model": "metainfo.source", "pk": 12948, "fields": {"orig_filename": "Kerber_Erwin_1891_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297", "author": "", "orig_id": 1414048}}, {"model": "metainfo.source", "pk": 12949, "fields": {"orig_filename": "Kerber_Hermann_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297", "author": "", "orig_id": 1414115}}, {"model": "metainfo.source", "pk": 12950, "fields": {"orig_filename": "Kerchnawe_Hugo_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297f.", "author": "", "orig_id": 1414116}}, {"model": "metainfo.source", "pk": 12951, "fields": {"orig_filename": "Kerekes_Ferenc_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298", "author": "", "orig_id": 1414117}}, {"model": "metainfo.source", "pk": 12952, "fields": {"orig_filename": "Kerer_Johann_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298", "author": "", "orig_id": 1414118}}, {"model": "metainfo.source", "pk": 12953, "fields": {"orig_filename": "Keresztes_Jozsef_1846_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298f.", "author": "", "orig_id": 1414119}}, {"model": "metainfo.source", "pk": 12954, "fields": {"orig_filename": "Kerhart_Oldrich_1895_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414120}}, {"model": "metainfo.source", "pk": 12955, "fields": {"orig_filename": "Kerkapoly_Karoly_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414121}}, {"model": "metainfo.source", "pk": 12956, "fields": {"orig_filename": "Kerl_Wilhelm_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414122}}, {"model": "metainfo.source", "pk": 12957, "fields": {"orig_filename": "Kermauner_Fritz_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299f.", "author": "", "orig_id": 1414123}}, {"model": "metainfo.source", "pk": 12958, "fields": {"orig_filename": "Kermavner_Valentin_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414125}}, {"model": "metainfo.source", "pk": 12959, "fields": {"orig_filename": "Kern-Kernburg_Josef-Theodor_1785_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302", "author": "", "orig_id": 1414133}}, {"model": "metainfo.source", "pk": 12960, "fields": {"orig_filename": "Kerner-Marilaun_Anton_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302ff.", "author": "", "orig_id": 1414201}}, {"model": "metainfo.source", "pk": 12961, "fields": {"orig_filename": "Kerner-Marilaun_Fritz_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304", "author": "", "orig_id": 1414202}}, {"model": "metainfo.source", "pk": 12962, "fields": {"orig_filename": "Kerner_Josef-Anton_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302", "author": "", "orig_id": 1414200}}, {"model": "metainfo.source", "pk": 12963, "fields": {"orig_filename": "Kernic_Anka_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304", "author": "", "orig_id": 1414203}}, {"model": "metainfo.source", "pk": 12964, "fields": {"orig_filename": "Kernic_Beatrix_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304f.", "author": "", "orig_id": 1414204}}, {"model": "metainfo.source", "pk": 12965, "fields": {"orig_filename": "Kernstock_Ernst_1852_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 305", "author": "", "orig_id": 1414205}}, {"model": "metainfo.source", "pk": 12966, "fields": {"orig_filename": "Kernstock_Ottokar_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 305f.", "author": "", "orig_id": 1414206}}, {"model": "metainfo.source", "pk": 12967, "fields": {"orig_filename": "Kern_Adolf_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414126}}, {"model": "metainfo.source", "pk": 12968, "fields": {"orig_filename": "Kern_Hermann_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414127}}, {"model": "metainfo.source", "pk": 12969, "fields": {"orig_filename": "Kern_Josef_1790_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414128}}, {"model": "metainfo.source", "pk": 12970, "fields": {"orig_filename": "Kern_Josef_1856_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301", "author": "", "orig_id": 1414129}}, {"model": "metainfo.source", "pk": 12971, "fields": {"orig_filename": "Kern_Matthaeus_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301", "author": "", "orig_id": 1414131}}, {"model": "metainfo.source", "pk": 12972, "fields": {"orig_filename": "Kern_Vinzenz_1760_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301f.", "author": "", "orig_id": 1414132}}, {"model": "metainfo.source", "pk": 12973, "fields": {"orig_filename": "Kerpely-Krassai_Antal_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306", "author": "", "orig_id": 1414208}}, {"model": "metainfo.source", "pk": 12974, "fields": {"orig_filename": "Kerpely-Krassai_Anton_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306f.", "author": "", "orig_id": 1414209}}, {"model": "metainfo.source", "pk": 12975, "fields": {"orig_filename": "Kerpel_Leopold_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306", "author": "", "orig_id": 1414207}}, {"model": "metainfo.source", "pk": 12976, "fields": {"orig_filename": "Kerpen_Wilhelm_1741_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414210}}, {"model": "metainfo.source", "pk": 12977, "fields": {"orig_filename": "Kerschbaumer_Anton_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307f.", "author": "", "orig_id": 1414213}}, {"model": "metainfo.source", "pk": 12978, "fields": {"orig_filename": "Kerschbaumer_Richard_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308", "author": "", "orig_id": 1414214}}, {"model": "metainfo.source", "pk": 12979, "fields": {"orig_filename": "Kerschbaumer_Rosa_1854_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308", "author": "", "orig_id": 1414215}}, {"model": "metainfo.source", "pk": 12980, "fields": {"orig_filename": "Kerschbaum_Hans_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414212}}, {"model": "metainfo.source", "pk": 12981, "fields": {"orig_filename": "Kerschner_Ludwig_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308f.", "author": "", "orig_id": 1414216}}, {"model": "metainfo.source", "pk": 12982, "fields": {"orig_filename": "Kersch_Ferenc_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414211}}, {"model": "metainfo.source", "pk": 12983, "fields": {"orig_filename": "Kersnik_Janko_1852_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414217}}, {"model": "metainfo.source", "pk": 12984, "fields": {"orig_filename": "Kerstan_Karl-Ludwig-Ferdinand_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414218}}, {"model": "metainfo.source", "pk": 12985, "fields": {"orig_filename": "Kertbeny_Imre-Maria_1825_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414219}}, {"model": "metainfo.source", "pk": 12986, "fields": {"orig_filename": "Kertesz_Adolf_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309f.", "author": "", "orig_id": 1414285}}, {"model": "metainfo.source", "pk": 12987, "fields": {"orig_filename": "Kesanski_Jovan_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414286}}, {"model": "metainfo.source", "pk": 12988, "fields": {"orig_filename": "Keschmann_Anton_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414287}}, {"model": "metainfo.source", "pk": 12989, "fields": {"orig_filename": "Kessel_Johannes_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414288}}, {"model": "metainfo.source", "pk": 12990, "fields": {"orig_filename": "Kessler_Engelbert_1834_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311", "author": "", "orig_id": 1414289}}, {"model": "metainfo.source", "pk": 12991, "fields": {"orig_filename": "Kesslitz_Wilhelm_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311", "author": "", "orig_id": 1414290}}, {"model": "metainfo.source", "pk": 12992, "fields": {"orig_filename": "Kestercanek_Franjo_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311f.", "author": "", "orig_id": 1414291}}, {"model": "metainfo.source", "pk": 12993, "fields": {"orig_filename": "Kestler_Martin_1808_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312", "author": "", "orig_id": 1414292}}, {"model": "metainfo.source", "pk": 12994, "fields": {"orig_filename": "Kestranek_Paul_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312", "author": "", "orig_id": 1414293}}, {"model": "metainfo.source", "pk": 12995, "fields": {"orig_filename": "Ketly-Csurgo_Karoly_1839_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312f.", "author": "", "orig_id": 1414294}}, {"model": "metainfo.source", "pk": 12996, "fields": {"orig_filename": "Ketrzynski_Wojciech_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 313", "author": "", "orig_id": 1414295}}, {"model": "metainfo.source", "pk": 12997, "fields": {"orig_filename": "Kettel_Johann-Georg_1789_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414297}}, {"model": "metainfo.source", "pk": 12998, "fields": {"orig_filename": "Kette_Dragotin_1876_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 313f.", "author": "", "orig_id": 1414296}}, {"model": "metainfo.source", "pk": 12999, "fields": {"orig_filename": "Kaserer_Josef_1842_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414791}}, {"model": "metainfo.source", "pk": 13000, "fields": {"orig_filename": "Kaserer_Philipp_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414792}}, {"model": "metainfo.source", "pk": 13001, "fields": {"orig_filename": "Kaser_Kurt_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414788}}, {"model": "metainfo.source", "pk": 13002, "fields": {"orig_filename": "Kaser_Ludwig_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251f.", "author": "", "orig_id": 1414789}}, {"model": "metainfo.source", "pk": 13003, "fields": {"orig_filename": "Kashmann_Guiseppe_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414794}}, {"model": "metainfo.source", "pk": 13004, "fields": {"orig_filename": "Kaska_Franz_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252f.", "author": "", "orig_id": 1414795}}, {"model": "metainfo.source", "pk": 13005, "fields": {"orig_filename": "Kaska_Jan_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414796}}, {"model": "metainfo.source", "pk": 13006, "fields": {"orig_filename": "Kasparides_Eduard_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253f.", "author": "", "orig_id": 1414867}}, {"model": "metainfo.source", "pk": 13007, "fields": {"orig_filename": "Kaspar_Adolf_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414798}}, {"model": "metainfo.source", "pk": 13008, "fields": {"orig_filename": "Kaspar_Fritz_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414799}}, {"model": "metainfo.source", "pk": 13009, "fields": {"orig_filename": "Kasperowski_Adam_1792_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254f.", "author": "", "orig_id": 1414870}}, {"model": "metainfo.source", "pk": 13010, "fields": {"orig_filename": "Kasper_Adolf_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254", "author": "", "orig_id": 1414868}}, {"model": "metainfo.source", "pk": 13011, "fields": {"orig_filename": "Kasper_Ludwig_1893_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254", "author": "", "orig_id": 1414869}}, {"model": "metainfo.source", "pk": 13012, "fields": {"orig_filename": "Kaspret_Anton_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 255", "author": "", "orig_id": 1414871}}, {"model": "metainfo.source", "pk": 13013, "fields": {"orig_filename": "Kasprowicz_Jan_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 255f.", "author": "", "orig_id": 1414872}}, {"model": "metainfo.source", "pk": 13014, "fields": {"orig_filename": "Kasprowicz_Kajetan_1858_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414873}}, {"model": "metainfo.source", "pk": 13015, "fields": {"orig_filename": "Kasselik_Ferenc_1800_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414874}}, {"model": "metainfo.source", "pk": 13016, "fields": {"orig_filename": "Kassin_Josef_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414875}}, {"model": "metainfo.source", "pk": 13017, "fields": {"orig_filename": "Kassowitz-Cvijic_Antonija_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414878}}, {"model": "metainfo.source", "pk": 13018, "fields": {"orig_filename": "Kassowitz_Emilie_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414876}}, {"model": "metainfo.source", "pk": 13019, "fields": {"orig_filename": "Kassowitz_Max_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256f.", "author": "", "orig_id": 1414877}}, {"model": "metainfo.source", "pk": 13020, "fields": {"orig_filename": "Kast-Ebelsberg_Michael_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414879}}, {"model": "metainfo.source", "pk": 13021, "fields": {"orig_filename": "Kastelic_Jakob_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414880}}, {"model": "metainfo.source", "pk": 13022, "fields": {"orig_filename": "Kastelic_Miha_1796_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257f.", "author": "", "orig_id": 1414881}}, {"model": "metainfo.source", "pk": 13023, "fields": {"orig_filename": "Kastil_Alfred_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414882}}, {"model": "metainfo.source", "pk": 13024, "fields": {"orig_filename": "Kastlunger_Peter_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414883}}, {"model": "metainfo.source", "pk": 13025, "fields": {"orig_filename": "Kastner-Michalitschke_Else_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 260", "author": "", "orig_id": 1414956}}, {"model": "metainfo.source", "pk": 13026, "fields": {"orig_filename": "Kastner_Alfred_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414884}}, {"model": "metainfo.source", "pk": 13027, "fields": {"orig_filename": "Kastner_Eduard-Fedor_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258f.", "author": "", "orig_id": 1414885}}, {"model": "metainfo.source", "pk": 13028, "fields": {"orig_filename": "Kastner_Emerich_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414886}}, {"model": "metainfo.source", "pk": 13029, "fields": {"orig_filename": "Kastner_Johann-Ev_1772_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414887}}, {"model": "metainfo.source", "pk": 13030, "fields": {"orig_filename": "Kastner_Josef_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414953}}, {"model": "metainfo.source", "pk": 13031, "fields": {"orig_filename": "Kastner_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414954}}, {"model": "metainfo.source", "pk": 13032, "fields": {"orig_filename": "Kastner_Karl_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259f.", "author": "", "orig_id": 1414955}}, {"model": "metainfo.source", "pk": 13033, "fields": {"orig_filename": "Kasumovic_Ivan_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 260f.", "author": "", "orig_id": 1414957}}, {"model": "metainfo.source", "pk": 13034, "fields": {"orig_filename": "Kasznica_Jozef_1834_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414958}}, {"model": "metainfo.source", "pk": 13035, "fields": {"orig_filename": "Kas_Igo_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414783}}, {"model": "metainfo.source", "pk": 13036, "fields": {"orig_filename": "Katalinic_Ivan_1779_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414959}}, {"model": "metainfo.source", "pk": 13037, "fields": {"orig_filename": "Katancic_Matija-Petar_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414960}}, {"model": "metainfo.source", "pk": 13038, "fields": {"orig_filename": "Katerdjian_Josef_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261f.", "author": "", "orig_id": 1414961}}, {"model": "metainfo.source", "pk": 13039, "fields": {"orig_filename": "Katholicky_Marie_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262", "author": "", "orig_id": 1414962}}, {"model": "metainfo.source", "pk": 13040, "fields": {"orig_filename": "Kathrein_Theodor_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262", "author": "", "orig_id": 1414963}}, {"model": "metainfo.source", "pk": 13041, "fields": {"orig_filename": "Katona_Jozsef_1791_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262f.", "author": "", "orig_id": 1414964}}, {"model": "metainfo.source", "pk": 13042, "fields": {"orig_filename": "Katscher_Berta_1860_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414965}}, {"model": "metainfo.source", "pk": 13043, "fields": {"orig_filename": "Katscher_Leopold_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414966}}, {"model": "metainfo.source", "pk": 13044, "fields": {"orig_filename": "Katscher_Max_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414967}}, {"model": "metainfo.source", "pk": 13045, "fields": {"orig_filename": "Katschthaler_Eduard_1857_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263f.", "author": "", "orig_id": 1414968}}, {"model": "metainfo.source", "pk": 13046, "fields": {"orig_filename": "Katschthaler_Johann-Bapt_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414969}}, {"model": "metainfo.source", "pk": 13047, "fields": {"orig_filename": "Katunaric_Ante_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414970}}, {"model": "metainfo.source", "pk": 13048, "fields": {"orig_filename": "Katuric_Mihajlo_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414971}}, {"model": "metainfo.source", "pk": 13049, "fields": {"orig_filename": "Katzenellenbogen_Oskar_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265", "author": "", "orig_id": 1414973}}, {"model": "metainfo.source", "pk": 13050, "fields": {"orig_filename": "Katzer_Anton_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265", "author": "", "orig_id": 1414974}}, {"model": "metainfo.source", "pk": 13051, "fields": {"orig_filename": "Katzer_Friedrich-Xaver_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415035}}, {"model": "metainfo.source", "pk": 13052, "fields": {"orig_filename": "Katzer_Friedrich_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265f.", "author": "", "orig_id": 1415034}}, {"model": "metainfo.source", "pk": 13053, "fields": {"orig_filename": "Katzer_Ignaz_1785_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415036}}, {"model": "metainfo.source", "pk": 13054, "fields": {"orig_filename": "Katzinger_Franz-Sal_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415037}}, {"model": "metainfo.source", "pk": 13055, "fields": {"orig_filename": "Katzler_Vinzenz_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266f.", "author": "", "orig_id": 1415038}}, {"model": "metainfo.source", "pk": 13056, "fields": {"orig_filename": "Katzmayr_Richard_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415039}}, {"model": "metainfo.source", "pk": 13057, "fields": {"orig_filename": "Katzung_Rudolf_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415040}}, {"model": "metainfo.source", "pk": 13058, "fields": {"orig_filename": "Katz_Hermann_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264f.", "author": "", "orig_id": 1414972}}, {"model": "metainfo.source", "pk": 13059, "fields": {"orig_filename": "Kaucic_Fridolin_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415041}}, {"model": "metainfo.source", "pk": 13060, "fields": {"orig_filename": "Kauders_Otto_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267f.", "author": "", "orig_id": 1415042}}, {"model": "metainfo.source", "pk": 13061, "fields": {"orig_filename": "Kauer_Anton_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 268", "author": "", "orig_id": 1415043}}, {"model": "metainfo.source", "pk": 13062, "fields": {"orig_filename": "Kauer_Ferdinand_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 268f.", "author": "", "orig_id": 1415044}}, {"model": "metainfo.source", "pk": 13063, "fields": {"orig_filename": "Kauer_Robert_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269", "author": "", "orig_id": 1415045}}, {"model": "metainfo.source", "pk": 13064, "fields": {"orig_filename": "Kauffung_Richard_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269", "author": "", "orig_id": 1415046}}, {"model": "metainfo.source", "pk": 13065, "fields": {"orig_filename": "Kaufmann_Adolf_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269f.", "author": "", "orig_id": 1415047}}, {"model": "metainfo.source", "pk": 13066, "fields": {"orig_filename": "Kaufmann_David_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270", "author": "", "orig_id": 1415048}}, {"model": "metainfo.source", "pk": 13067, "fields": {"orig_filename": "Kaufmann_Eugenie_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270", "author": "", "orig_id": 1415049}}, {"model": "metainfo.source", "pk": 13068, "fields": {"orig_filename": "Kaufmann_Felix_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270f.", "author": "", "orig_id": 1415050}}, {"model": "metainfo.source", "pk": 13069, "fields": {"orig_filename": "Kaufmann_Isidor_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 271", "author": "", "orig_id": 1415051}}, {"model": "metainfo.source", "pk": 13070, "fields": {"orig_filename": "Kaufmann_Johann-Peter_1764_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 271f.", "author": "", "orig_id": 1415052}}, {"model": "metainfo.source", "pk": 13071, "fields": {"orig_filename": "Kaufmann_Rudolf_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415053}}, {"model": "metainfo.source", "pk": 13072, "fields": {"orig_filename": "Kaulich_Josef_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415054}}, {"model": "metainfo.source", "pk": 13073, "fields": {"orig_filename": "Kaulich_Wilhelm_1833_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415055}}, {"model": "metainfo.source", "pk": 13074, "fields": {"orig_filename": "Kauperz_Johann-Veit_1741_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273", "author": "", "orig_id": 1415117}}, {"model": "metainfo.source", "pk": 13075, "fields": {"orig_filename": "Kaup_Ignaz_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272f.", "author": "", "orig_id": 1415056}}, {"model": "metainfo.source", "pk": 13076, "fields": {"orig_filename": "Kauser_Jozsef_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273", "author": "", "orig_id": 1415118}}, {"model": "metainfo.source", "pk": 13077, "fields": {"orig_filename": "Kautsch_Heinrich_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273f.", "author": "", "orig_id": 1415119}}, {"model": "metainfo.source", "pk": 13078, "fields": {"orig_filename": "Kautsch_Jakob_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415120}}, {"model": "metainfo.source", "pk": 13079, "fields": {"orig_filename": "Kautsky_Jan_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415124}}, {"model": "metainfo.source", "pk": 13080, "fields": {"orig_filename": "Kautsky_Karl_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274f.", "author": "", "orig_id": 1415122}}, {"model": "metainfo.source", "pk": 13081, "fields": {"orig_filename": "Kautsky_Wilhelmine_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 275f.", "author": "", "orig_id": 1415123}}, {"model": "metainfo.source", "pk": 13082, "fields": {"orig_filename": "Kautz_Gyula_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415125}}, {"model": "metainfo.source", "pk": 13083, "fields": {"orig_filename": "Kavan_Frantisek_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415126}}, {"model": "metainfo.source", "pk": 13084, "fields": {"orig_filename": "Kavcic_Andrej_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415127}}, {"model": "metainfo.source", "pk": 13085, "fields": {"orig_filename": "Kavcic_Jakob_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276f.", "author": "", "orig_id": 1415128}}, {"model": "metainfo.source", "pk": 13086, "fields": {"orig_filename": "Kavcic_Matija_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415129}}, {"model": "metainfo.source", "pk": 13087, "fields": {"orig_filename": "Kavcnik_Ivan_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415130}}, {"model": "metainfo.source", "pk": 13088, "fields": {"orig_filename": "Kaym_Franz_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415131}}, {"model": "metainfo.source", "pk": 13089, "fields": {"orig_filename": "Kayser_Karl-Gangolf_1837_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277f.", "author": "", "orig_id": 1415132}}, {"model": "metainfo.source", "pk": 13090, "fields": {"orig_filename": "Kazali_Pasko-Antun_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278", "author": "", "orig_id": 1415133}}, {"model": "metainfo.source", "pk": 13091, "fields": {"orig_filename": "Kazinczy_Ferenc_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278", "author": "", "orig_id": 1415134}}, {"model": "metainfo.source", "pk": 13092, "fields": {"orig_filename": "Kazinczy_Gabor_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278f.", "author": "", "orig_id": 1415135}}, {"model": "metainfo.source", "pk": 13093, "fields": {"orig_filename": "Kaznacic_Antun_1784_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279", "author": "", "orig_id": 1415205}}, {"model": "metainfo.source", "pk": 13094, "fields": {"orig_filename": "Kaznacic_Ivan-August_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279", "author": "", "orig_id": 1415206}}, {"model": "metainfo.source", "pk": 13095, "fields": {"orig_filename": "Kecskemethy-Csapo_Istvan_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280", "author": "", "orig_id": 1415208}}, {"model": "metainfo.source", "pk": 13096, "fields": {"orig_filename": "Kecskemethy_Aurel_1827_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279f.", "author": "", "orig_id": 1415207}}, {"model": "metainfo.source", "pk": 13097, "fields": {"orig_filename": "Kedzior_Andrzej_1851_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280", "author": "", "orig_id": 1415209}}, {"model": "metainfo.source", "pk": 13098, "fields": {"orig_filename": "Keess_Stephan_1774_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415211}}, {"model": "metainfo.source", "pk": 13099, "fields": {"orig_filename": "Kees_Georg_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280f.", "author": "", "orig_id": 1415210}}, {"model": "metainfo.source", "pk": 13100, "fields": {"orig_filename": "Keglevich-Buzin_Gabor_1784_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415212}}, {"model": "metainfo.source", "pk": 13101, "fields": {"orig_filename": "Keglevich-Buzin_Istvan_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415213}}, {"model": "metainfo.source", "pk": 13102, "fields": {"orig_filename": "Keiblinger_Ignaz_1797_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415214}}, {"model": "metainfo.source", "pk": 13103, "fields": {"orig_filename": "Kanitz_Luise_1908_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1440187}}, {"model": "metainfo.source", "pk": 13104, "fields": {"orig_filename": "Kanitz_Otto-Felix_1894_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414360}}, {"model": "metainfo.source", "pk": 13105, "fields": {"orig_filename": "Kanka_Daniel_1776_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414361}}, {"model": "metainfo.source", "pk": 13106, "fields": {"orig_filename": "Kanka_Johann-Nep_1772_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414362}}, {"model": "metainfo.source", "pk": 13107, "fields": {"orig_filename": "Kanne_Friedrich-August_1778_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217", "author": "", "orig_id": 1414364}}, {"model": "metainfo.source", "pk": 13108, "fields": {"orig_filename": "Kann_August_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216f.", "author": "", "orig_id": 1414363}}, {"model": "metainfo.source", "pk": 13109, "fields": {"orig_filename": "Kanski_Mikolaj_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217", "author": "", "orig_id": 1414365}}, {"model": "metainfo.source", "pk": 13110, "fields": {"orig_filename": "Kantner_Karl_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217f.", "author": "", "orig_id": 1414422}}, {"model": "metainfo.source", "pk": 13111, "fields": {"orig_filename": "Kantor_Georg_1893_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414423}}, {"model": "metainfo.source", "pk": 13112, "fields": {"orig_filename": "Kanyaro_Ferenc_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414425}}, {"model": "metainfo.source", "pk": 13113, "fields": {"orig_filename": "Kapeller_Josef_1796_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414427}}, {"model": "metainfo.source", "pk": 13114, "fields": {"orig_filename": "Kapeller_Karl_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414428}}, {"model": "metainfo.source", "pk": 13115, "fields": {"orig_filename": "Kapferer_Johann-Peter_1820_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414429}}, {"model": "metainfo.source", "pk": 13116, "fields": {"orig_filename": "Kapferer_Josef-Simon_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219f.", "author": "", "orig_id": 1414430}}, {"model": "metainfo.source", "pk": 13117, "fields": {"orig_filename": "Kapferer_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220", "author": "", "orig_id": 1414431}}, {"model": "metainfo.source", "pk": 13118, "fields": {"orig_filename": "Kapff_Franziska_1849_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220", "author": "", "orig_id": 1414432}}, {"model": "metainfo.source", "pk": 13119, "fields": {"orig_filename": "Kapic_Juraj_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220f.", "author": "", "orig_id": 1414433}}, {"model": "metainfo.source", "pk": 13120, "fields": {"orig_filename": "Kaplan_Rosina_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 221", "author": "", "orig_id": 1414434}}, {"model": "metainfo.source", "pk": 13121, "fields": {"orig_filename": "Kaplan_Viktor_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 221f.", "author": "", "orig_id": 1414435}}, {"model": "metainfo.source", "pk": 13122, "fields": {"orig_filename": "Kaposi_Moritz_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 222", "author": "", "orig_id": 1414436}}, {"model": "metainfo.source", "pk": 13123, "fields": {"orig_filename": "Kappel-Savenau_Karl-Maria_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224", "author": "", "orig_id": 1414440}}, {"model": "metainfo.source", "pk": 13124, "fields": {"orig_filename": "Kappel-Savenau_Vincenz-Ludwig_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224", "author": "", "orig_id": 1414441}}, {"model": "metainfo.source", "pk": 13125, "fields": {"orig_filename": "Kappelmacher_Alfred_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224f.", "author": "", "orig_id": 1414442}}, {"model": "metainfo.source", "pk": 13126, "fields": {"orig_filename": "Kappel_Fritz_1895_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 223", "author": "", "orig_id": 1414439}}, {"model": "metainfo.source", "pk": 13127, "fields": {"orig_filename": "Kapper_Anton_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 225", "author": "", "orig_id": 1414443}}, {"model": "metainfo.source", "pk": 13128, "fields": {"orig_filename": "Kapper_Siegfried_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 225", "author": "", "orig_id": 1414444}}, {"model": "metainfo.source", "pk": 13129, "fields": {"orig_filename": "Kappler_Adolf_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414445}}, {"model": "metainfo.source", "pk": 13130, "fields": {"orig_filename": "Kapp_Gisbert_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 222f.", "author": "", "orig_id": 1414437}}, {"model": "metainfo.source", "pk": 13131, "fields": {"orig_filename": "Kapp_Gustav_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 223", "author": "", "orig_id": 1414438}}, {"model": "metainfo.source", "pk": 13132, "fields": {"orig_filename": "Kapral_Vaclav_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414518}}, {"model": "metainfo.source", "pk": 13133, "fields": {"orig_filename": "Kapras_Jan_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414519}}, {"model": "metainfo.source", "pk": 13134, "fields": {"orig_filename": "Kapri_Mathilde_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414520}}, {"model": "metainfo.source", "pk": 13135, "fields": {"orig_filename": "Kapri_Rudolf_1887_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226f.", "author": "", "orig_id": 1414521}}, {"model": "metainfo.source", "pk": 13136, "fields": {"orig_filename": "Kapsamer_Georg_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 227", "author": "", "orig_id": 1414522}}, {"model": "metainfo.source", "pk": 13137, "fields": {"orig_filename": "Kapsch_Georg_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 227f.", "author": "", "orig_id": 1414523}}, {"model": "metainfo.source", "pk": 13138, "fields": {"orig_filename": "Kapuscinski_Jozef_1818_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 228", "author": "", "orig_id": 1414524}}, {"model": "metainfo.source", "pk": 13139, "fields": {"orig_filename": "Karabacek_Joseph_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 228f.", "author": "", "orig_id": 1414525}}, {"model": "metainfo.source", "pk": 13140, "fields": {"orig_filename": "Karacson_Mihaly_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229", "author": "", "orig_id": 1414527}}, {"model": "metainfo.source", "pk": 13141, "fields": {"orig_filename": "Karacs_Ferenc_1770_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229", "author": "", "orig_id": 1414526}}, {"model": "metainfo.source", "pk": 13142, "fields": {"orig_filename": "Karadzic_Vuk-Stefanovic_1787_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229f.", "author": "", "orig_id": 1414528}}, {"model": "metainfo.source", "pk": 13143, "fields": {"orig_filename": "Karafiat_Jan_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230", "author": "", "orig_id": 1414529}}, {"model": "metainfo.source", "pk": 13144, "fields": {"orig_filename": "Karajan_Max-Theodor_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230", "author": "", "orig_id": 1414530}}, {"model": "metainfo.source", "pk": 13145, "fields": {"orig_filename": "Karajan_Theodor-Georg_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230f.", "author": "", "orig_id": 1414531}}, {"model": "metainfo.source", "pk": 13146, "fields": {"orig_filename": "Karaman_Luka_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 231", "author": "", "orig_id": 1414532}}, {"model": "metainfo.source", "pk": 13147, "fields": {"orig_filename": "Karasek_Josef_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232", "author": "", "orig_id": 1414534}}, {"model": "metainfo.source", "pk": 13148, "fields": {"orig_filename": "Karas_Vjekoslav_1829_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 231f.", "author": "", "orig_id": 1414533}}, {"model": "metainfo.source", "pk": 13149, "fields": {"orig_filename": "Karbowiak_Antoni_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232", "author": "", "orig_id": 1414535}}, {"model": "metainfo.source", "pk": 13150, "fields": {"orig_filename": "Karczag_Wilhelm_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232f.", "author": "", "orig_id": 1414536}}, {"model": "metainfo.source", "pk": 13151, "fields": {"orig_filename": "Kardos_Gyula_1857_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414537}}, {"model": "metainfo.source", "pk": 13152, "fields": {"orig_filename": "Kardos_Janos_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414611}}, {"model": "metainfo.source", "pk": 13153, "fields": {"orig_filename": "Kareis_Josef_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414612}}, {"model": "metainfo.source", "pk": 13154, "fields": {"orig_filename": "Karell_Ludwig_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414615}}, {"model": "metainfo.source", "pk": 13155, "fields": {"orig_filename": "Karel_Eduard_1861_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414613}}, {"model": "metainfo.source", "pk": 13156, "fields": {"orig_filename": "Karel_Rudolf_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233f.", "author": "", "orig_id": 1414614}}, {"model": "metainfo.source", "pk": 13157, "fields": {"orig_filename": "Karger_Adolf_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414617}}, {"model": "metainfo.source", "pk": 13158, "fields": {"orig_filename": "Karger_Karl_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234f.", "author": "", "orig_id": 1414618}}, {"model": "metainfo.source", "pk": 13159, "fields": {"orig_filename": "Kargl_Franz_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414619}}, {"model": "metainfo.source", "pk": 13160, "fields": {"orig_filename": "Karg_Anton_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414616}}, {"model": "metainfo.source", "pk": 13161, "fields": {"orig_filename": "Karika_Janos_1808_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414620}}, {"model": "metainfo.source", "pk": 13162, "fields": {"orig_filename": "Karinger_Anton_1829_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414621}}, {"model": "metainfo.source", "pk": 13163, "fields": {"orig_filename": "Karl-Ludwig_Joseph-Maria_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 240", "author": "", "orig_id": 1414626}}, {"model": "metainfo.source", "pk": 13164, "fields": {"orig_filename": "Karlic_Petar_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 240f.", "author": "", "orig_id": 1414627}}, {"model": "metainfo.source", "pk": 13165, "fields": {"orig_filename": "Karlik_Berta-Emilie_1904_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1451679}}, {"model": "metainfo.source", "pk": 13166, "fields": {"orig_filename": "Karlik_Hanus_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241", "author": "", "orig_id": 1414628}}, {"model": "metainfo.source", "pk": 13167, "fields": {"orig_filename": "Karlik_Johann_1807_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241", "author": "", "orig_id": 1414629}}, {"model": "metainfo.source", "pk": 13168, "fields": {"orig_filename": "Karlinsky_Anton-Hans_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242", "author": "", "orig_id": 1414691}}, {"model": "metainfo.source", "pk": 13169, "fields": {"orig_filename": "Karlin_Alma-Maximiliana_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241f.", "author": "", "orig_id": 1414630}}, {"model": "metainfo.source", "pk": 13170, "fields": {"orig_filename": "Karlin_Andrej_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242", "author": "", "orig_id": 1414631}}, {"model": "metainfo.source", "pk": 13171, "fields": {"orig_filename": "Karlon_Alois_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242f.", "author": "", "orig_id": 1414692}}, {"model": "metainfo.source", "pk": 13172, "fields": {"orig_filename": "Karlon_Johann_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414693}}, {"model": "metainfo.source", "pk": 13173, "fields": {"orig_filename": "Karlovszky_Bertalan_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414694}}, {"model": "metainfo.source", "pk": 13174, "fields": {"orig_filename": "Karl_Alexander_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235f.", "author": "", "orig_id": 1414622}}, {"model": "metainfo.source", "pk": 13175, "fields": {"orig_filename": "Karl_Franz-Joseph_1887_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 236ff.", "author": "", "orig_id": 1414623}}, {"model": "metainfo.source", "pk": 13176, "fields": {"orig_filename": "Karl_Heinrich-Ernst_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 239", "author": "", "orig_id": 1414624}}, {"model": "metainfo.source", "pk": 13177, "fields": {"orig_filename": "Karl_Ludwig_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 239f.", "author": "", "orig_id": 1414625}}, {"model": "metainfo.source", "pk": 13178, "fields": {"orig_filename": "Karman_Mor_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414695}}, {"model": "metainfo.source", "pk": 13179, "fields": {"orig_filename": "Karmarsch_Karl_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243f.", "author": "", "orig_id": 1414696}}, {"model": "metainfo.source", "pk": 13180, "fields": {"orig_filename": "Karner_Lambert_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 244", "author": "", "orig_id": 1414697}}, {"model": "metainfo.source", "pk": 13181, "fields": {"orig_filename": "Karner_Leopold_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 244f.", "author": "", "orig_id": 1414698}}, {"model": "metainfo.source", "pk": 13182, "fields": {"orig_filename": "Karny_Heinrich-Hugo_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414699}}, {"model": "metainfo.source", "pk": 13183, "fields": {"orig_filename": "Karoline-Auguste__1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414701}}, {"model": "metainfo.source", "pk": 13184, "fields": {"orig_filename": "Karolyi_Alajos_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414702}}, {"model": "metainfo.source", "pk": 13185, "fields": {"orig_filename": "Karolyi_Arpad_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414703}}, {"model": "metainfo.source", "pk": 13186, "fields": {"orig_filename": "Karolyi_Gyoergy_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414704}}, {"model": "metainfo.source", "pk": 13187, "fields": {"orig_filename": "Karolyi_Istvan_1797_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414705}}, {"model": "metainfo.source", "pk": 13188, "fields": {"orig_filename": "Karolyi_Sandor_1831_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414706}}, {"model": "metainfo.source", "pk": 13189, "fields": {"orig_filename": "Karo_Ezechiel_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414700}}, {"model": "metainfo.source", "pk": 13190, "fields": {"orig_filename": "Karpath_Ludwig_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414707}}, {"model": "metainfo.source", "pk": 13191, "fields": {"orig_filename": "Karpaty_Rudolf_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414708}}, {"model": "metainfo.source", "pk": 13192, "fields": {"orig_filename": "Karpeles_Georges_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247f.", "author": "", "orig_id": 1414709}}, {"model": "metainfo.source", "pk": 13193, "fields": {"orig_filename": "Karpeles_Gustav_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248", "author": "", "orig_id": 1414710}}, {"model": "metainfo.source", "pk": 13194, "fields": {"orig_filename": "Karpellus_Adolf_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248", "author": "", "orig_id": 1414711}}, {"model": "metainfo.source", "pk": 13195, "fields": {"orig_filename": "Karpf_Fritz_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248f.", "author": "", "orig_id": 1414712}}, {"model": "metainfo.source", "pk": 13196, "fields": {"orig_filename": "Karplus_Johann-Paul_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249", "author": "", "orig_id": 1414713}}, {"model": "metainfo.source", "pk": 13197, "fields": {"orig_filename": "Karrer_Felix_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249", "author": "", "orig_id": 1414714}}, {"model": "metainfo.source", "pk": 13198, "fields": {"orig_filename": "Karsay-Teth_Sandor_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249f.", "author": "", "orig_id": 1414778}}, {"model": "metainfo.source", "pk": 13199, "fields": {"orig_filename": "Karst-Karstenwerth_Franz_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414779}}, {"model": "metainfo.source", "pk": 13200, "fields": {"orig_filename": "Kartsch_Josef_1811_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414780}}, {"model": "metainfo.source", "pk": 13201, "fields": {"orig_filename": "Karvaly_Maurus_1860_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414781}}, {"model": "metainfo.source", "pk": 13202, "fields": {"orig_filename": "Kasalovsky_Josef_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414784}}, {"model": "metainfo.source", "pk": 13203, "fields": {"orig_filename": "Kasapinovic_Svetislav_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414785}}, {"model": "metainfo.source", "pk": 13204, "fields": {"orig_filename": "Kaschnitz-Weinberg_Julius_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414787}}, {"model": "metainfo.source", "pk": 13205, "fields": {"orig_filename": "Kaiser_Karl_1873_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183f.", "author": "", "orig_id": 1413930}}, {"model": "metainfo.source", "pk": 13206, "fields": {"orig_filename": "Kaiser_Karl_1914_1999.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2089969}}, {"model": "metainfo.source", "pk": 13207, "fields": {"orig_filename": "Kaiser_Koloman_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413931}}, {"model": "metainfo.source", "pk": 13208, "fields": {"orig_filename": "Kaiser_Ludwig_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413932}}, {"model": "metainfo.source", "pk": 13209, "fields": {"orig_filename": "Kaiser_Philipp_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413933}}, {"model": "metainfo.source", "pk": 13210, "fields": {"orig_filename": "Kaizl_Josef_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 185f.", "author": "", "orig_id": 1414012}}, {"model": "metainfo.source", "pk": 13211, "fields": {"orig_filename": "Kakonyi-Csep-Kakony_Franz_1762_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186", "author": "", "orig_id": 1414013}}, {"model": "metainfo.source", "pk": 13212, "fields": {"orig_filename": "Kalac_Ante_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186", "author": "", "orig_id": 1414014}}, {"model": "metainfo.source", "pk": 13213, "fields": {"orig_filename": "Kalan_Andrej_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186f.", "author": "", "orig_id": 1414015}}, {"model": "metainfo.source", "pk": 13214, "fields": {"orig_filename": "Kalbeck_Florian_1920_1996.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419671}}, {"model": "metainfo.source", "pk": 13215, "fields": {"orig_filename": "Kalbeck_Max_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 187", "author": "", "orig_id": 1414016}}, {"model": "metainfo.source", "pk": 13216, "fields": {"orig_filename": "Kalbeck_Paul-Johannes_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 187f.", "author": "", "orig_id": 1414017}}, {"model": "metainfo.source", "pk": 13217, "fields": {"orig_filename": "Kalbrunner_Hermann-Josef_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188", "author": "", "orig_id": 1414018}}, {"model": "metainfo.source", "pk": 13218, "fields": {"orig_filename": "Kalchbrenner_Karl_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188", "author": "", "orig_id": 1414019}}, {"model": "metainfo.source", "pk": 13219, "fields": {"orig_filename": "Kalchegger-Kalchberg_Franz_1807_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188f.", "author": "", "orig_id": 1414020}}, {"model": "metainfo.source", "pk": 13220, "fields": {"orig_filename": "Kalchegger-Kalchberg_Johann_1765_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 189f.", "author": "", "orig_id": 1414021}}, {"model": "metainfo.source", "pk": 13221, "fields": {"orig_filename": "Kalchegger-Kalchberg_Josef_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 190f.", "author": "", "orig_id": 1414022}}, {"model": "metainfo.source", "pk": 13222, "fields": {"orig_filename": "Kalchegger-Kalchberg_Wilhelm_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414023}}, {"model": "metainfo.source", "pk": 13223, "fields": {"orig_filename": "Kalcher_Anton_1800_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414024}}, {"model": "metainfo.source", "pk": 13224, "fields": {"orig_filename": "Kalcher_Severin_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414025}}, {"model": "metainfo.source", "pk": 13225, "fields": {"orig_filename": "Kaldy_Adam_1763_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191f.", "author": "", "orig_id": 1414026}}, {"model": "metainfo.source", "pk": 13226, "fields": {"orig_filename": "Kalemkiar_Gregoris_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414027}}, {"model": "metainfo.source", "pk": 13227, "fields": {"orig_filename": "Kalicki_Bernard_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414095}}, {"model": "metainfo.source", "pk": 13228, "fields": {"orig_filename": "Kalina-Jaethenstein_Mathias_1772_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193", "author": "", "orig_id": 1414097}}, {"model": "metainfo.source", "pk": 13229, "fields": {"orig_filename": "Kalina_Antoni_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193", "author": "", "orig_id": 1414096}}, {"model": "metainfo.source", "pk": 13230, "fields": {"orig_filename": "Kalinka_Ernst_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193f.", "author": "", "orig_id": 1414098}}, {"model": "metainfo.source", "pk": 13231, "fields": {"orig_filename": "Kalinka_Walerian_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 194", "author": "", "orig_id": 1414099}}, {"model": "metainfo.source", "pk": 13232, "fields": {"orig_filename": "Kalister_Janez-Nep_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 194f.", "author": "", "orig_id": 1414100}}, {"model": "metainfo.source", "pk": 13233, "fields": {"orig_filename": "Kaliwoda_Franz_1820_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414101}}, {"model": "metainfo.source", "pk": 13234, "fields": {"orig_filename": "Kalkum_Maurus_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414102}}, {"model": "metainfo.source", "pk": 13235, "fields": {"orig_filename": "Kallab_Ferdinand-Viktor_1847_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414103}}, {"model": "metainfo.source", "pk": 13236, "fields": {"orig_filename": "Kallab_Wolfgang_1875_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195f.", "author": "", "orig_id": 1414104}}, {"model": "metainfo.source", "pk": 13237, "fields": {"orig_filename": "Kallay-Nagy-Kallo_Beni_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196", "author": "", "orig_id": 1414106}}, {"model": "metainfo.source", "pk": 13238, "fields": {"orig_filename": "Kallay_Oedoen_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196", "author": "", "orig_id": 1414105}}, {"model": "metainfo.source", "pk": 13239, "fields": {"orig_filename": "Kallenbach_Jozef_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196f.", "author": "", "orig_id": 1414107}}, {"model": "metainfo.source", "pk": 13240, "fields": {"orig_filename": "Kaller_Adolf_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414108}}, {"model": "metainfo.source", "pk": 13241, "fields": {"orig_filename": "Kalliauer_Anton-Christoph_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414109}}, {"model": "metainfo.source", "pk": 13242, "fields": {"orig_filename": "Kallina-Urbanow_Alois_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414112}}, {"model": "metainfo.source", "pk": 13243, "fields": {"orig_filename": "Kallina_Anna_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414110}}, {"model": "metainfo.source", "pk": 13244, "fields": {"orig_filename": "Kallina_Maurus_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197f.", "author": "", "orig_id": 1414111}}, {"model": "metainfo.source", "pk": 13245, "fields": {"orig_filename": "Kallir_Ludwig_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414113}}, {"model": "metainfo.source", "pk": 13246, "fields": {"orig_filename": "Kalliwoda_Johann-Wenzel_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414114}}, {"model": "metainfo.source", "pk": 13247, "fields": {"orig_filename": "Kallos_Ede_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414178}}, {"model": "metainfo.source", "pk": 13248, "fields": {"orig_filename": "Kalmann_Wilhelm_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414180}}, {"model": "metainfo.source", "pk": 13249, "fields": {"orig_filename": "Kalman_Farkas_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414179}}, {"model": "metainfo.source", "pk": 13250, "fields": {"orig_filename": "Kalmar_Elsa_1876_1956.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414181}}, {"model": "metainfo.source", "pk": 13251, "fields": {"orig_filename": "Kalmsteiner_Johann_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199f.", "author": "", "orig_id": 1414182}}, {"model": "metainfo.source", "pk": 13252, "fields": {"orig_filename": "Kalnoky-Koeroespatak_Gustav-Sigmund_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 200", "author": "", "orig_id": 1414183}}, {"model": "metainfo.source", "pk": 13253, "fields": {"orig_filename": "Kalny_Heribertus_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 200f.", "author": "", "orig_id": 1414184}}, {"model": "metainfo.source", "pk": 13254, "fields": {"orig_filename": "Kalousek_Josef_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201", "author": "", "orig_id": 1414185}}, {"model": "metainfo.source", "pk": 13255, "fields": {"orig_filename": "Kalousek_Vratislav_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201", "author": "", "orig_id": 1414186}}, {"model": "metainfo.source", "pk": 13256, "fields": {"orig_filename": "Kalser-Maasfeld_Franz_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414188}}, {"model": "metainfo.source", "pk": 13257, "fields": {"orig_filename": "Kalser_Leo_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201f.", "author": "", "orig_id": 1414187}}, {"model": "metainfo.source", "pk": 13258, "fields": {"orig_filename": "Kaltenbaeck_Johann-Paul_1804_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414189}}, {"model": "metainfo.source", "pk": 13259, "fields": {"orig_filename": "Kaltenboeck_Bodo_1893_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414190}}, {"model": "metainfo.source", "pk": 13260, "fields": {"orig_filename": "Kaltenbrunner_Ernst_1903_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202f.", "author": "", "orig_id": 1414191}}, {"model": "metainfo.source", "pk": 13261, "fields": {"orig_filename": "Kaltenbrunner_Ferdinand_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 203", "author": "", "orig_id": 1414192}}, {"model": "metainfo.source", "pk": 13262, "fields": {"orig_filename": "Kaltenbrunner_Karl-Adam_1804_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 203f.", "author": "", "orig_id": 1414193}}, {"model": "metainfo.source", "pk": 13263, "fields": {"orig_filename": "Kaltenegger-Riedhorst_Friedrich_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204f.", "author": "", "orig_id": 1414196}}, {"model": "metainfo.source", "pk": 13264, "fields": {"orig_filename": "Kaltenegger_Leonidas_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204", "author": "", "orig_id": 1414195}}, {"model": "metainfo.source", "pk": 13265, "fields": {"orig_filename": "Kaltenegger_Leo_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204", "author": "", "orig_id": 1414194}}, {"model": "metainfo.source", "pk": 13266, "fields": {"orig_filename": "Kaltenhauser_Franziska_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 205", "author": "", "orig_id": 1414197}}, {"model": "metainfo.source", "pk": 13267, "fields": {"orig_filename": "Kaltneker-Wallkampf_Hans_1895_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 205f.", "author": "", "orig_id": 1414198}}, {"model": "metainfo.source", "pk": 13268, "fields": {"orig_filename": "Kaltner_Balthasar_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414199}}, {"model": "metainfo.source", "pk": 13269, "fields": {"orig_filename": "Kaltner_Josef_1757_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414264}}, {"model": "metainfo.source", "pk": 13270, "fields": {"orig_filename": "Kaluza_Augustin_1776_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414265}}, {"model": "metainfo.source", "pk": 13271, "fields": {"orig_filename": "Kalvoda_Alois_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414266}}, {"model": "metainfo.source", "pk": 13272, "fields": {"orig_filename": "Kalvoda_Josef_1874_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414267}}, {"model": "metainfo.source", "pk": 13273, "fields": {"orig_filename": "Kamenarovic_Pavao_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414268}}, {"model": "metainfo.source", "pk": 13274, "fields": {"orig_filename": "Kamieniobrodzki_Alfred_1844_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414269}}, {"model": "metainfo.source", "pk": 13275, "fields": {"orig_filename": "Kamienski_Maciej_1734_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414270}}, {"model": "metainfo.source", "pk": 13276, "fields": {"orig_filename": "Kaminka_Aharon_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207f.", "author": "", "orig_id": 1414271}}, {"model": "metainfo.source", "pk": 13277, "fields": {"orig_filename": "Kaminski_Ignacy_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414272}}, {"model": "metainfo.source", "pk": 13278, "fields": {"orig_filename": "Kaminski_Jan-Nep_1777_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414273}}, {"model": "metainfo.source", "pk": 13279, "fields": {"orig_filename": "Kaminski_Kazimierz_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414274}}, {"model": "metainfo.source", "pk": 13280, "fields": {"orig_filename": "Kamitz_Reinhard_1907_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426666}}, {"model": "metainfo.source", "pk": 13281, "fields": {"orig_filename": "Kamler_Heinrich_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208f.", "author": "", "orig_id": 1414275}}, {"model": "metainfo.source", "pk": 13282, "fields": {"orig_filename": "Kamler_Heinrich_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414276}}, {"model": "metainfo.source", "pk": 13283, "fields": {"orig_filename": "Kammerer_Emil_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414277}}, {"model": "metainfo.source", "pk": 13284, "fields": {"orig_filename": "Kammerer_Gustav_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414278}}, {"model": "metainfo.source", "pk": 13285, "fields": {"orig_filename": "Kammerer_Paul_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209f.", "author": "", "orig_id": 1414279}}, {"model": "metainfo.source", "pk": 13286, "fields": {"orig_filename": "Kamniker_Franz_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 210", "author": "", "orig_id": 1414280}}, {"model": "metainfo.source", "pk": 13287, "fields": {"orig_filename": "Kamocki_Stanislaw_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 210f.", "author": "", "orig_id": 1414281}}, {"model": "metainfo.source", "pk": 13288, "fields": {"orig_filename": "Kamory_Samuel_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414282}}, {"model": "metainfo.source", "pk": 13289, "fields": {"orig_filename": "Kampelik_Frantisek-Cyril_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414283}}, {"model": "metainfo.source", "pk": 13290, "fields": {"orig_filename": "Kampf_Karl-Heinrich_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414284}}, {"model": "metainfo.source", "pk": 13291, "fields": {"orig_filename": "Kampmann-Freund_Johanna_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414347}}, {"model": "metainfo.source", "pk": 13292, "fields": {"orig_filename": "Kampmann_Karl_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211f.", "author": "", "orig_id": 1414346}}, {"model": "metainfo.source", "pk": 13293, "fields": {"orig_filename": "Kancnik_Andrej_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414348}}, {"model": "metainfo.source", "pk": 13294, "fields": {"orig_filename": "Kandelsdorfer_Karl_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414349}}, {"model": "metainfo.source", "pk": 13295, "fields": {"orig_filename": "Kandler_Franz-Sales_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212f.", "author": "", "orig_id": 1414350}}, {"model": "metainfo.source", "pk": 13296, "fields": {"orig_filename": "Kandler_Peter_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 213", "author": "", "orig_id": 1414351}}, {"model": "metainfo.source", "pk": 13297, "fields": {"orig_filename": "Kandler_Wilhelm_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 213f.", "author": "", "orig_id": 1414352}}, {"model": "metainfo.source", "pk": 13298, "fields": {"orig_filename": "Kando_Kalman_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422556}}, {"model": "metainfo.source", "pk": 13299, "fields": {"orig_filename": "Kanera-Tynbrugg_Josef_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414353}}, {"model": "metainfo.source", "pk": 13300, "fields": {"orig_filename": "Kangel_Anton_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414354}}, {"model": "metainfo.source", "pk": 13301, "fields": {"orig_filename": "Kangrga_Jovan_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414355}}, {"model": "metainfo.source", "pk": 13302, "fields": {"orig_filename": "Kaniak_Karl_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414356}}, {"model": "metainfo.source", "pk": 13303, "fields": {"orig_filename": "Kanik_Franz_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214f.", "author": "", "orig_id": 1414357}}, {"model": "metainfo.source", "pk": 13304, "fields": {"orig_filename": "Kanitz_August_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 215", "author": "", "orig_id": 1414358}}, {"model": "metainfo.source", "pk": 13305, "fields": {"orig_filename": "Kanitz_Ernst_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1439279}}, {"model": "metainfo.source", "pk": 13306, "fields": {"orig_filename": "Kanitz_Felix-Philipp_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 215f.", "author": "", "orig_id": 1414359}}, {"model": "metainfo.source", "pk": 13307, "fields": {"orig_filename": "Jurende_Karl-Josef_1780_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155f.", "author": "", "orig_id": 1414942}}, {"model": "metainfo.source", "pk": 13308, "fields": {"orig_filename": "Jurenka_Hugo_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156", "author": "", "orig_id": 1414943}}, {"model": "metainfo.source", "pk": 13309, "fields": {"orig_filename": "Jurinac_Adolfo_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156", "author": "", "orig_id": 1414944}}, {"model": "metainfo.source", "pk": 13310, "fields": {"orig_filename": "Juritsch_Georg_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156f.", "author": "", "orig_id": 1414945}}, {"model": "metainfo.source", "pk": 13311, "fields": {"orig_filename": "Jurjevic-Tuol_Josef_1785_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414946}}, {"model": "metainfo.source", "pk": 13312, "fields": {"orig_filename": "Jurkovic_Ivan_1893_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414947}}, {"model": "metainfo.source", "pk": 13313, "fields": {"orig_filename": "Jurkovic_Janko_1827_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414948}}, {"model": "metainfo.source", "pk": 13314, "fields": {"orig_filename": "Jury_Hugo_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157f.", "author": "", "orig_id": 1414949}}, {"model": "metainfo.source", "pk": 13315, "fields": {"orig_filename": "Jussel_Anton_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414950}}, {"model": "metainfo.source", "pk": 13316, "fields": {"orig_filename": "Juster_Heinrich_1876_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158f.", "author": "", "orig_id": 1415011}}, {"model": "metainfo.source", "pk": 13317, "fields": {"orig_filename": "Justh_Gyula_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415012}}, {"model": "metainfo.source", "pk": 13318, "fields": {"orig_filename": "Justh_Zsigmond_1863_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415013}}, {"model": "metainfo.source", "pk": 13319, "fields": {"orig_filename": "Justin_Rajko_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415014}}, {"model": "metainfo.source", "pk": 13320, "fields": {"orig_filename": "Just_Eduard-Alexander_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414951}}, {"model": "metainfo.source", "pk": 13321, "fields": {"orig_filename": "Just_Karl_1808_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414952}}, {"model": "metainfo.source", "pk": 13322, "fields": {"orig_filename": "Juvancic_Friderik_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160", "author": "", "orig_id": 1415016}}, {"model": "metainfo.source", "pk": 13323, "fields": {"orig_filename": "Juvan_Franz_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159f.", "author": "", "orig_id": 1415015}}, {"model": "metainfo.source", "pk": 13324, "fields": {"orig_filename": "Kaan-Albest_Julius_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415022}}, {"model": "metainfo.source", "pk": 13325, "fields": {"orig_filename": "Kaan-Albest_Samuel-Heinrich_1776_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415023}}, {"model": "metainfo.source", "pk": 13326, "fields": {"orig_filename": "Kaan_Arthur_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160", "author": "", "orig_id": 1415017}}, {"model": "metainfo.source", "pk": 13327, "fields": {"orig_filename": "Kaan_Eduard_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160f.", "author": "", "orig_id": 1415018}}, {"model": "metainfo.source", "pk": 13328, "fields": {"orig_filename": "Kaan_Ernst-Robert_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161", "author": "", "orig_id": 1415019}}, {"model": "metainfo.source", "pk": 13329, "fields": {"orig_filename": "Kaan_Wilhelm_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161", "author": "", "orig_id": 1415020}}, {"model": "metainfo.source", "pk": 13330, "fields": {"orig_filename": "Kabasta_Oswald_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415024}}, {"model": "metainfo.source", "pk": 13331, "fields": {"orig_filename": "Kabat_Maurycy_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162f.", "author": "", "orig_id": 1415025}}, {"model": "metainfo.source", "pk": 13332, "fields": {"orig_filename": "Kabelik_Jan_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415026}}, {"model": "metainfo.source", "pk": 13333, "fields": {"orig_filename": "Kablik_Josephine_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415027}}, {"model": "metainfo.source", "pk": 13334, "fields": {"orig_filename": "Kacanski_Vladislav-Stevan_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415028}}, {"model": "metainfo.source", "pk": 13335, "fields": {"orig_filename": "Kachler_Georg_1764_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415029}}, {"model": "metainfo.source", "pk": 13336, "fields": {"orig_filename": "Kachler_Josef_1847_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163f.", "author": "", "orig_id": 1415030}}, {"model": "metainfo.source", "pk": 13337, "fields": {"orig_filename": "Kachler_Michael_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415031}}, {"model": "metainfo.source", "pk": 13338, "fields": {"orig_filename": "Kachler_Peter_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415032}}, {"model": "metainfo.source", "pk": 13339, "fields": {"orig_filename": "Kaczkowski_Zygmunt_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415033}}, {"model": "metainfo.source", "pk": 13340, "fields": {"orig_filename": "Kadelburg_Gustav_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164f.", "author": "", "orig_id": 1415094}}, {"model": "metainfo.source", "pk": 13341, "fields": {"orig_filename": "Kadelburg_Heinrich_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415095}}, {"model": "metainfo.source", "pk": 13342, "fields": {"orig_filename": "Kaderavek_Johann-Eugen_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415096}}, {"model": "metainfo.source", "pk": 13343, "fields": {"orig_filename": "Kaderschafka_Karl_1893_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415097}}, {"model": "metainfo.source", "pk": 13344, "fields": {"orig_filename": "Kadich-Pferd_Hans_1864_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415098}}, {"model": "metainfo.source", "pk": 13345, "fields": {"orig_filename": "Kadich-Pferd_Heinrich_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165f.", "author": "", "orig_id": 1415099}}, {"model": "metainfo.source", "pk": 13346, "fields": {"orig_filename": "Kadlcak_Josef_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166", "author": "", "orig_id": 1415100}}, {"model": "metainfo.source", "pk": 13347, "fields": {"orig_filename": "Kadlcik_Franz-Bretislav_1847_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166", "author": "", "orig_id": 1415101}}, {"model": "metainfo.source", "pk": 13348, "fields": {"orig_filename": "Kadlec_Karel_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166f.", "author": "", "orig_id": 1415102}}, {"model": "metainfo.source", "pk": 13349, "fields": {"orig_filename": "Kadlik_Franz_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415103}}, {"model": "metainfo.source", "pk": 13350, "fields": {"orig_filename": "Kadmon_Stella_1902_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1430492}}, {"model": "metainfo.source", "pk": 13351, "fields": {"orig_filename": "Kadrnozka_Leo_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415104}}, {"model": "metainfo.source", "pk": 13352, "fields": {"orig_filename": "Kaefer_Viktor_1799_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415105}}, {"model": "metainfo.source", "pk": 13353, "fields": {"orig_filename": "Kaempf_Moritz_1835_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167f.", "author": "", "orig_id": 1415106}}, {"model": "metainfo.source", "pk": 13354, "fields": {"orig_filename": "Kaempf_Saul-Isaac_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415107}}, {"model": "metainfo.source", "pk": 13355, "fields": {"orig_filename": "Kaergling_Johann-Tobias_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415108}}, {"model": "metainfo.source", "pk": 13356, "fields": {"orig_filename": "Kaerle_Johann_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415109}}, {"model": "metainfo.source", "pk": 13357, "fields": {"orig_filename": "Kaerle_Josef_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168f.", "author": "", "orig_id": 1420791}}, {"model": "metainfo.source", "pk": 13358, "fields": {"orig_filename": "Kaesebacher_Alois_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415110}}, {"model": "metainfo.source", "pk": 13359, "fields": {"orig_filename": "Kaesmayer_Karl_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415111}}, {"model": "metainfo.source", "pk": 13360, "fields": {"orig_filename": "Kaessmann_Franz_1751_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415112}}, {"model": "metainfo.source", "pk": 13361, "fields": {"orig_filename": "Kaessmann_Josef_1784_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415113}}, {"model": "metainfo.source", "pk": 13362, "fields": {"orig_filename": "Kaestner_Josef-Viktor_1828_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415181}}, {"model": "metainfo.source", "pk": 13363, "fields": {"orig_filename": "Kafka_Bohumil_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415182}}, {"model": "metainfo.source", "pk": 13364, "fields": {"orig_filename": "Kafka_Eduard-Michael_1864_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415183}}, {"model": "metainfo.source", "pk": 13365, "fields": {"orig_filename": "Kafka_Franz_1883_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170f.", "author": "", "orig_id": 1415184}}, {"model": "metainfo.source", "pk": 13366, "fields": {"orig_filename": "Kafka_Heinrich_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 171", "author": "", "orig_id": 1415185}}, {"model": "metainfo.source", "pk": 13367, "fields": {"orig_filename": "Kafka_Johann-Nep_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 171f.", "author": "", "orig_id": 1415186}}, {"model": "metainfo.source", "pk": 13368, "fields": {"orig_filename": "Kafka_Josef_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415187}}, {"model": "metainfo.source", "pk": 13369, "fields": {"orig_filename": "Kafka_Josef_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415188}}, {"model": "metainfo.source", "pk": 13370, "fields": {"orig_filename": "Kaftan_Johann_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415189}}, {"model": "metainfo.source", "pk": 13371, "fields": {"orig_filename": "Kager-Mayregg_Karl_1819_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415190}}, {"model": "metainfo.source", "pk": 13372, "fields": {"orig_filename": "Kager-Paugger-Groebner_Hugo_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172f.", "author": "", "orig_id": 1415191}}, {"model": "metainfo.source", "pk": 13373, "fields": {"orig_filename": "Kagerbauer_Peter_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173", "author": "", "orig_id": 1415192}}, {"model": "metainfo.source", "pk": 13374, "fields": {"orig_filename": "Kahane_Arthur_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173", "author": "", "orig_id": 1415193}}, {"model": "metainfo.source", "pk": 13375, "fields": {"orig_filename": "Kahler_Eugen_1882_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174", "author": "", "orig_id": 1415195}}, {"model": "metainfo.source", "pk": 13376, "fields": {"orig_filename": "Kahler_Karl_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174", "author": "", "orig_id": 1415196}}, {"model": "metainfo.source", "pk": 13377, "fields": {"orig_filename": "Kahler_Otto_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174f.", "author": "", "orig_id": 1415197}}, {"model": "metainfo.source", "pk": 13378, "fields": {"orig_filename": "Kahler_Otto_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175", "author": "", "orig_id": 1415198}}, {"model": "metainfo.source", "pk": 13379, "fields": {"orig_filename": "Kahl_Fr-Gerhard-Maria_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173f.", "author": "", "orig_id": 1415194}}, {"model": "metainfo.source", "pk": 13380, "fields": {"orig_filename": "Kahn_Josef_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175", "author": "", "orig_id": 1415199}}, {"model": "metainfo.source", "pk": 13381, "fields": {"orig_filename": "Kahrer_Max_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415201}}, {"model": "metainfo.source", "pk": 13382, "fields": {"orig_filename": "Kahr_Heinrich_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175f.", "author": "", "orig_id": 1415200}}, {"model": "metainfo.source", "pk": 13383, "fields": {"orig_filename": "Kailan_Anton_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415202}}, {"model": "metainfo.source", "pk": 13384, "fields": {"orig_filename": "Kailer-Kaltenfels_Karl_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415203}}, {"model": "metainfo.source", "pk": 13385, "fields": {"orig_filename": "Kaindlstorfer_Johann_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 177f.", "author": "", "orig_id": 1413912}}, {"model": "metainfo.source", "pk": 13386, "fields": {"orig_filename": "Kaindl_Raimund-Friedrich_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 177", "author": "", "orig_id": 1413911}}, {"model": "metainfo.source", "pk": 13387, "fields": {"orig_filename": "Kainersdorfer_Johann-Matthias_1778_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178", "author": "", "orig_id": 1413913}}, {"model": "metainfo.source", "pk": 13388, "fields": {"orig_filename": "Kainradl_Leo_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178", "author": "", "orig_id": 1413914}}, {"model": "metainfo.source", "pk": 13389, "fields": {"orig_filename": "Kainz-Holland_Marianne_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413917}}, {"model": "metainfo.source", "pk": 13390, "fields": {"orig_filename": "Kainz-Prause_Clothilde-Emilie_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413918}}, {"model": "metainfo.source", "pk": 13391, "fields": {"orig_filename": "Kainzbauer_Ludwig_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413919}}, {"model": "metainfo.source", "pk": 13392, "fields": {"orig_filename": "Kainz_Josef-Gottfried-Ignaz_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178f.", "author": "", "orig_id": 1413915}}, {"model": "metainfo.source", "pk": 13393, "fields": {"orig_filename": "Kainz_Josef-Wolfgang_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 179f.", "author": "", "orig_id": 1413916}}, {"model": "metainfo.source", "pk": 13394, "fields": {"orig_filename": "Kain_Johann_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176f.", "author": "", "orig_id": 1415204}}, {"model": "metainfo.source", "pk": 13395, "fields": {"orig_filename": "Kaiser-Falkenthal_Ignaz_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413934}}, {"model": "metainfo.source", "pk": 13396, "fields": {"orig_filename": "Kaiser-Herbst_Carl_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1414008}}, {"model": "metainfo.source", "pk": 13397, "fields": {"orig_filename": "Kaiser-Trauenstern_Felix-Josef_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184f.", "author": "", "orig_id": 1414009}}, {"model": "metainfo.source", "pk": 13398, "fields": {"orig_filename": "Kaiserfeld_Moriz_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 185", "author": "", "orig_id": 1414010}}, {"model": "metainfo.source", "pk": 13399, "fields": {"orig_filename": "Kaiser_Alexander_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413920}}, {"model": "metainfo.source", "pk": 13400, "fields": {"orig_filename": "Kaiser_Anton_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180f.", "author": "", "orig_id": 1413921}}, {"model": "metainfo.source", "pk": 13401, "fields": {"orig_filename": "Kaiser_August_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413922}}, {"model": "metainfo.source", "pk": 13402, "fields": {"orig_filename": "Kaiser_Eduard_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413923}}, {"model": "metainfo.source", "pk": 13403, "fields": {"orig_filename": "Kaiser_Eduard_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413924}}, {"model": "metainfo.source", "pk": 13404, "fields": {"orig_filename": "Kaiser_Friedrich_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181f.", "author": "", "orig_id": 1413925}}, {"model": "metainfo.source", "pk": 13405, "fields": {"orig_filename": "Kaiser_Johann-Nep_1792_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 182", "author": "", "orig_id": 1413926}}, {"model": "metainfo.source", "pk": 13406, "fields": {"orig_filename": "Kaiser_Josef-Franz-Xaver_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 182f.", "author": "", "orig_id": 1413927}}, {"model": "metainfo.source", "pk": 13407, "fields": {"orig_filename": "Kaiser_Josef-Maria_1824_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183", "author": "", "orig_id": 1413928}}, {"model": "metainfo.source", "pk": 13408, "fields": {"orig_filename": "Kaiser_Julius_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183", "author": "", "orig_id": 1413929}}, {"model": "metainfo.source", "pk": 13409, "fields": {"orig_filename": "John_Amand_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414506}}, {"model": "metainfo.source", "pk": 13410, "fields": {"orig_filename": "John_Charles_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414507}}, {"model": "metainfo.source", "pk": 13411, "fields": {"orig_filename": "John_Franz_1815_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124f.", "author": "", "orig_id": 1414508}}, {"model": "metainfo.source", "pk": 13412, "fields": {"orig_filename": "John_Friedrich_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 125", "author": "", "orig_id": 1414510}}, {"model": "metainfo.source", "pk": 13413, "fields": {"orig_filename": "John_Friedrich_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 125", "author": "", "orig_id": 1414509}}, {"model": "metainfo.source", "pk": 13414, "fields": {"orig_filename": "John_Hanns_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414511}}, {"model": "metainfo.source", "pk": 13415, "fields": {"orig_filename": "John_Vinzenz_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414512}}, {"model": "metainfo.source", "pk": 13416, "fields": {"orig_filename": "John_Wilhelm_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414513}}, {"model": "metainfo.source", "pk": 13417, "fields": {"orig_filename": "Jokai_Mor_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 127", "author": "", "orig_id": 1414515}}, {"model": "metainfo.source", "pk": 13418, "fields": {"orig_filename": "Jokely_Janos_1826_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 127", "author": "", "orig_id": 1414587}}, {"model": "metainfo.source", "pk": 13419, "fields": {"orig_filename": "Jokl_Norbert_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414588}}, {"model": "metainfo.source", "pk": 13420, "fields": {"orig_filename": "Jolles_Adolf_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414589}}, {"model": "metainfo.source", "pk": 13421, "fields": {"orig_filename": "Joly_Ferdinand_1765_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414590}}, {"model": "metainfo.source", "pk": 13422, "fields": {"orig_filename": "Jonak-Freyenwald_Gustav_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414592}}, {"model": "metainfo.source", "pk": 13423, "fields": {"orig_filename": "Jonak_Eberhard-Antonin_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128f.", "author": "", "orig_id": 1414591}}, {"model": "metainfo.source", "pk": 13424, "fields": {"orig_filename": "Joo_Istvan_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414593}}, {"model": "metainfo.source", "pk": 13425, "fields": {"orig_filename": "Joppi_Vincenzo_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414594}}, {"model": "metainfo.source", "pk": 13426, "fields": {"orig_filename": "Jordan-Rozwadowski-Gross-Rozwadow_Thaddaeus_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132f.", "author": "", "orig_id": 1414604}}, {"model": "metainfo.source", "pk": 13427, "fields": {"orig_filename": "Jordan_Eduard_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414595}}, {"model": "metainfo.source", "pk": 13428, "fields": {"orig_filename": "Jordan_Franz-Sylvester_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129f.", "author": "", "orig_id": 1414596}}, {"model": "metainfo.source", "pk": 13429, "fields": {"orig_filename": "Jordan_Franz-Xaver_1741_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 130", "author": "", "orig_id": 1414597}}, {"model": "metainfo.source", "pk": 13430, "fields": {"orig_filename": "Jordan_Henryk_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 130f.", "author": "", "orig_id": 1414598}}, {"model": "metainfo.source", "pk": 13431, "fields": {"orig_filename": "Jordan_Jan-Petr_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131", "author": "", "orig_id": 1414599}}, {"model": "metainfo.source", "pk": 13432, "fields": {"orig_filename": "Jordan_Josef_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131", "author": "", "orig_id": 1414600}}, {"model": "metainfo.source", "pk": 13433, "fields": {"orig_filename": "Jordan_Karl_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131f.", "author": "", "orig_id": 1414601}}, {"model": "metainfo.source", "pk": 13434, "fields": {"orig_filename": "Jordan_Peter_1751_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132", "author": "", "orig_id": 1414602}}, {"model": "metainfo.source", "pk": 13435, "fields": {"orig_filename": "Jordan_Richard_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132", "author": "", "orig_id": 1414603}}, {"model": "metainfo.source", "pk": 13436, "fields": {"orig_filename": "Jorgovanic_Richard_1853_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414605}}, {"model": "metainfo.source", "pk": 13437, "fields": {"orig_filename": "Jorkasch-Koch_Adolf_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414606}}, {"model": "metainfo.source", "pk": 13438, "fields": {"orig_filename": "Jorkasch-Koch_Adolf_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414607}}, {"model": "metainfo.source", "pk": 13439, "fields": {"orig_filename": "Josch_Eduard_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414608}}, {"model": "metainfo.source", "pk": 13440, "fields": {"orig_filename": "Joseffy_Rafael_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133f.", "author": "", "orig_id": 1414609}}, {"model": "metainfo.source", "pk": 13441, "fields": {"orig_filename": "Josephy_Gustav_1820_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135f.", "author": "", "orig_id": 1414680}}, {"model": "metainfo.source", "pk": 13442, "fields": {"orig_filename": "Josephy_Gustav_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136", "author": "", "orig_id": 1414681}}, {"model": "metainfo.source", "pk": 13443, "fields": {"orig_filename": "Joseph_Anton-Johann_1776_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 134", "author": "", "orig_id": 1414610}}, {"model": "metainfo.source", "pk": 13444, "fields": {"orig_filename": "Joseph_Carl-Ludwig_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 134f.", "author": "", "orig_id": 1414676}}, {"model": "metainfo.source", "pk": 13445, "fields": {"orig_filename": "Joseph_Ferdinand-Salvator_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135", "author": "", "orig_id": 1414677}}, {"model": "metainfo.source", "pk": 13446, "fields": {"orig_filename": "Joseph_Heinrich_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135", "author": "", "orig_id": 1414678}}, {"model": "metainfo.source", "pk": 13447, "fields": {"orig_filename": "Josika-Branyicska_Miklos_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136", "author": "", "orig_id": 1414682}}, {"model": "metainfo.source", "pk": 13448, "fields": {"orig_filename": "Josika-Branyicska_Samu_1805_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136f.", "author": "", "orig_id": 1414683}}, {"model": "metainfo.source", "pk": 13449, "fields": {"orig_filename": "Joss_Marcus_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137", "author": "", "orig_id": 1414684}}, {"model": "metainfo.source", "pk": 13450, "fields": {"orig_filename": "Jovanovic-Batut_Milan_1847_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138f.", "author": "", "orig_id": 1414758}}, {"model": "metainfo.source", "pk": 13451, "fields": {"orig_filename": "Jovanovic_Anastas_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137", "author": "", "orig_id": 1414685}}, {"model": "metainfo.source", "pk": 13452, "fields": {"orig_filename": "Jovanovic_Jovan_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137f.", "author": "", "orig_id": 1414686}}, {"model": "metainfo.source", "pk": 13453, "fields": {"orig_filename": "Jovanovic_Kosta_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414687}}, {"model": "metainfo.source", "pk": 13454, "fields": {"orig_filename": "Jovanovic_Milan_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414688}}, {"model": "metainfo.source", "pk": 13455, "fields": {"orig_filename": "Jovanovic_Stephan_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414689}}, {"model": "metainfo.source", "pk": 13456, "fields": {"orig_filename": "Jovanovic_Tosa_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414690}}, {"model": "metainfo.source", "pk": 13457, "fields": {"orig_filename": "Jovic_Spiridon_1801_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139", "author": "", "orig_id": 1414759}}, {"model": "metainfo.source", "pk": 13458, "fields": {"orig_filename": "Jozeffy_Pal_1775_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139", "author": "", "orig_id": 1414760}}, {"model": "metainfo.source", "pk": 13459, "fields": {"orig_filename": "Jozefovic_Oskar_1890_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139f.", "author": "", "orig_id": 1414761}}, {"model": "metainfo.source", "pk": 13460, "fields": {"orig_filename": "Juch_Emma-Antonia-Johanna_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140", "author": "", "orig_id": 1414762}}, {"model": "metainfo.source", "pk": 13461, "fields": {"orig_filename": "Juch_Ernst_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140", "author": "", "orig_id": 1414763}}, {"model": "metainfo.source", "pk": 13462, "fields": {"orig_filename": "Juda_Adele_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141", "author": "", "orig_id": 1414765}}, {"model": "metainfo.source", "pk": 13463, "fields": {"orig_filename": "Juda_Albin_1848_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141", "author": "", "orig_id": 1414766}}, {"model": "metainfo.source", "pk": 13464, "fields": {"orig_filename": "Jud_Roman_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140f.", "author": "", "orig_id": 1414764}}, {"model": "metainfo.source", "pk": 13465, "fields": {"orig_filename": "Juelg_Bernhard_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141f.", "author": "", "orig_id": 1414767}}, {"model": "metainfo.source", "pk": 13466, "fields": {"orig_filename": "Juellig_Max_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414768}}, {"model": "metainfo.source", "pk": 13467, "fields": {"orig_filename": "Juenger_Vinzenz_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414769}}, {"model": "metainfo.source", "pk": 13468, "fields": {"orig_filename": "Jueptner-Jonstorff_Hans_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414770}}, {"model": "metainfo.source", "pk": 13469, "fields": {"orig_filename": "Juestel_Josef-Alois_1765_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142f.", "author": "", "orig_id": 1414771}}, {"model": "metainfo.source", "pk": 13470, "fields": {"orig_filename": "Juethner_Julius_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 143f.", "author": "", "orig_id": 1414772}}, {"model": "metainfo.source", "pk": 13471, "fields": {"orig_filename": "Juettner_Josef_1775_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414773}}, {"model": "metainfo.source", "pk": 13472, "fields": {"orig_filename": "Juffinger_Georg_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414774}}, {"model": "metainfo.source", "pk": 13473, "fields": {"orig_filename": "Juffinger_Michael_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414775}}, {"model": "metainfo.source", "pk": 13474, "fields": {"orig_filename": "Jugenicz-Boldoghegy_Anton_1773_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414777}}, {"model": "metainfo.source", "pk": 13475, "fields": {"orig_filename": "Jugoviz_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414843}}, {"model": "metainfo.source", "pk": 13476, "fields": {"orig_filename": "Jug_Klement_1898_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414776}}, {"model": "metainfo.source", "pk": 13477, "fields": {"orig_filename": "Juhasz_Karl_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414844}}, {"model": "metainfo.source", "pk": 13478, "fields": {"orig_filename": "Jukel_Karl_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414845}}, {"model": "metainfo.source", "pk": 13479, "fields": {"orig_filename": "Jukic_Ante_1873_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414846}}, {"model": "metainfo.source", "pk": 13480, "fields": {"orig_filename": "Jukic_Ivan-Franjo_1818_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414847}}, {"model": "metainfo.source", "pk": 13481, "fields": {"orig_filename": "Julisch_Hermine_1850_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414848}}, {"model": "metainfo.source", "pk": 13482, "fields": {"orig_filename": "Julius_Paul_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414849}}, {"model": "metainfo.source", "pk": 13483, "fields": {"orig_filename": "Jummerspach_Fritz_1878_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146f.", "author": "", "orig_id": 1414850}}, {"model": "metainfo.source", "pk": 13484, "fields": {"orig_filename": "Junck_Karl_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414851}}, {"model": "metainfo.source", "pk": 13485, "fields": {"orig_filename": "Jungbauer_Gustav_1886_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149", "author": "", "orig_id": 1414858}}, {"model": "metainfo.source", "pk": 13486, "fields": {"orig_filename": "Jungbauer_Raimund_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149", "author": "", "orig_id": 1414859}}, {"model": "metainfo.source", "pk": 13487, "fields": {"orig_filename": "Junger_Franz_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149f.", "author": "", "orig_id": 1414860}}, {"model": "metainfo.source", "pk": 13488, "fields": {"orig_filename": "Junger_Michael_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414861}}, {"model": "metainfo.source", "pk": 13489, "fields": {"orig_filename": "Jungl_Anton_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414862}}, {"model": "metainfo.source", "pk": 13490, "fields": {"orig_filename": "Jungmair_Rudolf_1813_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414863}}, {"model": "metainfo.source", "pk": 13491, "fields": {"orig_filename": "Jungmann_Albert_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414864}}, {"model": "metainfo.source", "pk": 13492, "fields": {"orig_filename": "Jungmann_Anton-Johann_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150f.", "author": "", "orig_id": 1414865}}, {"model": "metainfo.source", "pk": 13493, "fields": {"orig_filename": "Jungmann_Flora_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414866}}, {"model": "metainfo.source", "pk": 13494, "fields": {"orig_filename": "Jungmann_Jan_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414928}}, {"model": "metainfo.source", "pk": 13495, "fields": {"orig_filename": "Jungmann_Josef_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414929}}, {"model": "metainfo.source", "pk": 13496, "fields": {"orig_filename": "Jungmann_Josef_1830_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414930}}, {"model": "metainfo.source", "pk": 13497, "fields": {"orig_filename": "Jungwirth_Adalbert_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151f.", "author": "", "orig_id": 1414931}}, {"model": "metainfo.source", "pk": 13498, "fields": {"orig_filename": "Jungwirth_Josef_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152", "author": "", "orig_id": 1414932}}, {"model": "metainfo.source", "pk": 13499, "fields": {"orig_filename": "Jung_Amand_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414852}}, {"model": "metainfo.source", "pk": 13500, "fields": {"orig_filename": "Jung_Edmund_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414853}}, {"model": "metainfo.source", "pk": 13501, "fields": {"orig_filename": "Jung_Giuseppe_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147f.", "author": "", "orig_id": 1414854}}, {"model": "metainfo.source", "pk": 13502, "fields": {"orig_filename": "Jung_Julius_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148", "author": "", "orig_id": 1414855}}, {"model": "metainfo.source", "pk": 13503, "fields": {"orig_filename": "Jung_Moriz_1885_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148", "author": "", "orig_id": 1414856}}, {"model": "metainfo.source", "pk": 13504, "fields": {"orig_filename": "Jung_Rudolf_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148f.", "author": "", "orig_id": 1414857}}, {"model": "metainfo.source", "pk": 13505, "fields": {"orig_filename": "Junker_Christian_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 153", "author": "", "orig_id": 1414935}}, {"model": "metainfo.source", "pk": 13506, "fields": {"orig_filename": "Junker_Karl_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 153f.", "author": "", "orig_id": 1414936}}, {"model": "metainfo.source", "pk": 13507, "fields": {"orig_filename": "Junk_Rudolf_1880_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152", "author": "", "orig_id": 1414933}}, {"model": "metainfo.source", "pk": 13508, "fields": {"orig_filename": "Junk_Viktor_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152f.", "author": "", "orig_id": 1414934}}, {"model": "metainfo.source", "pk": 13509, "fields": {"orig_filename": "Juranyi_Lajos_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154", "author": "", "orig_id": 1414937}}, {"model": "metainfo.source", "pk": 13510, "fields": {"orig_filename": "Juraschek_Franz_1849_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154", "author": "", "orig_id": 1414938}}, {"model": "metainfo.source", "pk": 13511, "fields": {"orig_filename": "Juratzka_Jakob_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154f.", "author": "", "orig_id": 1414939}}, {"model": "metainfo.source", "pk": 13512, "fields": {"orig_filename": "Jurcic_Josip_1844_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155", "author": "", "orig_id": 1414940}}, {"model": "metainfo.source", "pk": 13513, "fields": {"orig_filename": "Jurek_Wilhelm-August_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155", "author": "", "orig_id": 1414941}}, {"model": "metainfo.source", "pk": 13514, "fields": {"orig_filename": "Jeglic_Anton-Bonaventura_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92f.", "author": "", "orig_id": 1414091}}, {"model": "metainfo.source", "pk": 13515, "fields": {"orig_filename": "Jehle_Ludwig_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93", "author": "", "orig_id": 1414092}}, {"model": "metainfo.source", "pk": 13516, "fields": {"orig_filename": "Jehly_Georg_1848_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93", "author": "", "orig_id": 1414093}}, {"model": "metainfo.source", "pk": 13517, "fields": {"orig_filename": "Jehly_Jacob_1854_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93f.", "author": "", "orig_id": 1414156}}, {"model": "metainfo.source", "pk": 13518, "fields": {"orig_filename": "Jeiteles_Eleonore_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414157}}, {"model": "metainfo.source", "pk": 13519, "fields": {"orig_filename": "Jeitteles_Adalbert_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414158}}, {"model": "metainfo.source", "pk": 13520, "fields": {"orig_filename": "Jeitteles_Alois-Isidor_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414159}}, {"model": "metainfo.source", "pk": 13521, "fields": {"orig_filename": "Jeitteles_Andreas-Ludwig_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414160}}, {"model": "metainfo.source", "pk": 13522, "fields": {"orig_filename": "Jeitteles_Isaac_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94f.", "author": "", "orig_id": 1414161}}, {"model": "metainfo.source", "pk": 13523, "fields": {"orig_filename": "Jeitteles_Ludwig-Heinrich_1830_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95", "author": "", "orig_id": 1414162}}, {"model": "metainfo.source", "pk": 13524, "fields": {"orig_filename": "Jeitteles_Richard_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95", "author": "", "orig_id": 1414163}}, {"model": "metainfo.source", "pk": 13525, "fields": {"orig_filename": "Jekelfalussy-Jekelfalus-Margitfalva_Josef_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95f.", "author": "", "orig_id": 1414164}}, {"model": "metainfo.source", "pk": 13526, "fields": {"orig_filename": "Jekelfalussy-Jekelfalus-Margitfalva_Ludwig_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414165}}, {"model": "metainfo.source", "pk": 13527, "fields": {"orig_filename": "Jelacic-Buzim_Josef_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 99f.", "author": "", "orig_id": 1414245}}, {"model": "metainfo.source", "pk": 13528, "fields": {"orig_filename": "Jelenic_Julijan_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414169}}, {"model": "metainfo.source", "pk": 13529, "fields": {"orig_filename": "Jelenko_Siegfried_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414170}}, {"model": "metainfo.source", "pk": 13530, "fields": {"orig_filename": "Jelenska_Irma_1852_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414171}}, {"model": "metainfo.source", "pk": 13531, "fields": {"orig_filename": "Jelen_Alois_1801_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414168}}, {"model": "metainfo.source", "pk": 13532, "fields": {"orig_filename": "Jele_Albert_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414166}}, {"model": "metainfo.source", "pk": 13533, "fields": {"orig_filename": "Jele_Kaspar_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414167}}, {"model": "metainfo.source", "pk": 13534, "fields": {"orig_filename": "Jelic_Luka_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414173}}, {"model": "metainfo.source", "pk": 13535, "fields": {"orig_filename": "Jelinek_Alfons_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414174}}, {"model": "metainfo.source", "pk": 13536, "fields": {"orig_filename": "Jelinek_Edmund_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414175}}, {"model": "metainfo.source", "pk": 13537, "fields": {"orig_filename": "Jelinek_Franz-Xaver_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414177}}, {"model": "metainfo.source", "pk": 13538, "fields": {"orig_filename": "Jelinek_Franz_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414176}}, {"model": "metainfo.source", "pk": 13539, "fields": {"orig_filename": "Jelinek_Josef_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414242}}, {"model": "metainfo.source", "pk": 13540, "fields": {"orig_filename": "Jelinek_Karl_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98f.", "author": "", "orig_id": 1414243}}, {"model": "metainfo.source", "pk": 13541, "fields": {"orig_filename": "Jelinek_Wilhelm_1845_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 99", "author": "", "orig_id": 1414244}}, {"model": "metainfo.source", "pk": 13542, "fields": {"orig_filename": "Jellinek-Mercedes_Emil_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414253}}, {"model": "metainfo.source", "pk": 13543, "fields": {"orig_filename": "Jellinek_Adolf_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 100f.", "author": "", "orig_id": 1414246}}, {"model": "metainfo.source", "pk": 13544, "fields": {"orig_filename": "Jellinek_Camilla_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 101", "author": "", "orig_id": 1414247}}, {"model": "metainfo.source", "pk": 13545, "fields": {"orig_filename": "Jellinek_Georg_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 101f.", "author": "", "orig_id": 1414248}}, {"model": "metainfo.source", "pk": 13546, "fields": {"orig_filename": "Jellinek_Hermann_1822_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102", "author": "", "orig_id": 1414249}}, {"model": "metainfo.source", "pk": 13547, "fields": {"orig_filename": "Jellinek_Max-Hermann_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102", "author": "", "orig_id": 1414250}}, {"model": "metainfo.source", "pk": 13548, "fields": {"orig_filename": "Jellinek_Moritz_1828_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102f.", "author": "", "orig_id": 1414251}}, {"model": "metainfo.source", "pk": 13549, "fields": {"orig_filename": "Jellinek_Oskar_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414252}}, {"model": "metainfo.source", "pk": 13550, "fields": {"orig_filename": "Jelovsek_Ernestine_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414254}}, {"model": "metainfo.source", "pk": 13551, "fields": {"orig_filename": "Jendrassik_Ernoe_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103f.", "author": "", "orig_id": 1414255}}, {"model": "metainfo.source", "pk": 13552, "fields": {"orig_filename": "Jendrassik_Jenoe-Lipot-Andras_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1414256}}, {"model": "metainfo.source", "pk": 13553, "fields": {"orig_filename": "Jenewein_Felix_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1421744}}, {"model": "metainfo.source", "pk": 13554, "fields": {"orig_filename": "Jenger_Johann-Baptist_1792_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1414257}}, {"model": "metainfo.source", "pk": 13555, "fields": {"orig_filename": "Jenikowsky_Franz_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104f.", "author": "", "orig_id": 1414258}}, {"model": "metainfo.source", "pk": 13556, "fields": {"orig_filename": "Jenke_Heinrich_1823_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105", "author": "", "orig_id": 1414259}}, {"model": "metainfo.source", "pk": 13557, "fields": {"orig_filename": "Jenko_Davorin_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105", "author": "", "orig_id": 1414260}}, {"model": "metainfo.source", "pk": 13558, "fields": {"orig_filename": "Jenko_Simon_1835_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105f.", "author": "", "orig_id": 1414261}}, {"model": "metainfo.source", "pk": 13559, "fields": {"orig_filename": "Jenny_Karl_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 106", "author": "", "orig_id": 1414262}}, {"model": "metainfo.source", "pk": 13560, "fields": {"orig_filename": "Jenny_Melchior_1785_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 106f.", "author": "", "orig_id": 1414263}}, {"model": "metainfo.source", "pk": 13561, "fields": {"orig_filename": "Jenny_Rudolf-Christoph_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107", "author": "", "orig_id": 1414323}}, {"model": "metainfo.source", "pk": 13562, "fields": {"orig_filename": "Jenny_Samuel_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107", "author": "", "orig_id": 1414324}}, {"model": "metainfo.source", "pk": 13563, "fields": {"orig_filename": "Jentsch_August_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107f.", "author": "", "orig_id": 1414325}}, {"model": "metainfo.source", "pk": 13564, "fields": {"orig_filename": "Jentzsch_Robert-Bruno_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108", "author": "", "orig_id": 1414326}}, {"model": "metainfo.source", "pk": 13565, "fields": {"orig_filename": "Jenull_Johann_1773_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108", "author": "", "orig_id": 1414327}}, {"model": "metainfo.source", "pk": 13566, "fields": {"orig_filename": "Jenull_Sebastian_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108f.", "author": "", "orig_id": 1414328}}, {"model": "metainfo.source", "pk": 13567, "fields": {"orig_filename": "Jerabek_Frantisek-Venceslav_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414329}}, {"model": "metainfo.source", "pk": 13568, "fields": {"orig_filename": "Jerabek_Vaclav_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414330}}, {"model": "metainfo.source", "pk": 13569, "fields": {"orig_filename": "Jeraj_Franciska_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414331}}, {"model": "metainfo.source", "pk": 13570, "fields": {"orig_filename": "Jeran_Luka_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109f.", "author": "", "orig_id": 1414332}}, {"model": "metainfo.source", "pk": 13571, "fields": {"orig_filename": "Jeremias_Bohuslav_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414334}}, {"model": "metainfo.source", "pk": 13572, "fields": {"orig_filename": "Jeremias_Jaroslav_1889_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414335}}, {"model": "metainfo.source", "pk": 13573, "fields": {"orig_filename": "Jergitsch_Ferdinand_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414336}}, {"model": "metainfo.source", "pk": 13574, "fields": {"orig_filename": "Jerisa_Fran_1829_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414337}}, {"model": "metainfo.source", "pk": 13575, "fields": {"orig_filename": "Jerney_Janos_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110f.", "author": "", "orig_id": 1414338}}, {"model": "metainfo.source", "pk": 13576, "fields": {"orig_filename": "Jerusalem_Wilhelm_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 111", "author": "", "orig_id": 1414339}}, {"model": "metainfo.source", "pk": 13577, "fields": {"orig_filename": "Jesenko_Fran_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 111f.", "author": "", "orig_id": 1414340}}, {"model": "metainfo.source", "pk": 13578, "fields": {"orig_filename": "Jesenko_Janez_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414341}}, {"model": "metainfo.source", "pk": 13579, "fields": {"orig_filename": "Jesenska_Ruzena_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414342}}, {"model": "metainfo.source", "pk": 13580, "fields": {"orig_filename": "Jessen_Asmus-Christian_1835_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414343}}, {"model": "metainfo.source", "pk": 13581, "fields": {"orig_filename": "Jessernigg_Gabriel_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414344}}, {"model": "metainfo.source", "pk": 13582, "fields": {"orig_filename": "Jettel-Ettenach_Emil_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112f.", "author": "", "orig_id": 1414404}}, {"model": "metainfo.source", "pk": 13583, "fields": {"orig_filename": "Jettel_Wladimir_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414403}}, {"model": "metainfo.source", "pk": 13584, "fields": {"orig_filename": "Jettmar_Rudolf_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 113", "author": "", "orig_id": 1414405}}, {"model": "metainfo.source", "pk": 13585, "fields": {"orig_filename": "Jezbera_Frantisek-Jan_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 113", "author": "", "orig_id": 1414406}}, {"model": "metainfo.source", "pk": 13586, "fields": {"orig_filename": "Jezek_Jan_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414407}}, {"model": "metainfo.source", "pk": 13587, "fields": {"orig_filename": "Jicinsky_Ferdinand_1846_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414408}}, {"model": "metainfo.source", "pk": 13588, "fields": {"orig_filename": "Jicinsky_Karl_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414409}}, {"model": "metainfo.source", "pk": 13589, "fields": {"orig_filename": "Jihn-Solwegen_Friedrich_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414410}}, {"model": "metainfo.source", "pk": 13590, "fields": {"orig_filename": "Jiranek_Milos_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414411}}, {"model": "metainfo.source", "pk": 13591, "fields": {"orig_filename": "Jirani_Otakar_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114f.", "author": "", "orig_id": 1414412}}, {"model": "metainfo.source", "pk": 13592, "fields": {"orig_filename": "Jirasek_Alois_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 115", "author": "", "orig_id": 1414413}}, {"model": "metainfo.source", "pk": 13593, "fields": {"orig_filename": "Jirecek-Samokov_Hermenegild_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117", "author": "", "orig_id": 1414416}}, {"model": "metainfo.source", "pk": 13594, "fields": {"orig_filename": "Jirecek_Josef-Konstantin_1854_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 116f.", "author": "", "orig_id": 1414415}}, {"model": "metainfo.source", "pk": 13595, "fields": {"orig_filename": "Jirecek_Josef_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 115f.", "author": "", "orig_id": 1414414}}, {"model": "metainfo.source", "pk": 13596, "fields": {"orig_filename": "Jirousek_Anton_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117", "author": "", "orig_id": 1414417}}, {"model": "metainfo.source", "pk": 13597, "fields": {"orig_filename": "Jirsik_Johann-Valerian_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117f.", "author": "", "orig_id": 1414418}}, {"model": "metainfo.source", "pk": 13598, "fields": {"orig_filename": "Jirus_Bohuslav_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118", "author": "", "orig_id": 1414419}}, {"model": "metainfo.source", "pk": 13599, "fields": {"orig_filename": "Joachim_Amalie_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118", "author": "", "orig_id": 1414420}}, {"model": "metainfo.source", "pk": 13600, "fields": {"orig_filename": "Joachim_Josef_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118f.", "author": "", "orig_id": 1414421}}, {"model": "metainfo.source", "pk": 13601, "fields": {"orig_filename": "Joanovic_Djordje_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414491}}, {"model": "metainfo.source", "pk": 13602, "fields": {"orig_filename": "Jobst_Carl_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414493}}, {"model": "metainfo.source", "pk": 13603, "fields": {"orig_filename": "Jobst_Franz_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119f.", "author": "", "orig_id": 1414494}}, {"model": "metainfo.source", "pk": 13604, "fields": {"orig_filename": "Job_Ignjat_1895_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414492}}, {"model": "metainfo.source", "pk": 13605, "fields": {"orig_filename": "Jochum_Josef-Anton_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 120", "author": "", "orig_id": 1414495}}, {"model": "metainfo.source", "pk": 13606, "fields": {"orig_filename": "Jodl_Friedrich_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 120f.", "author": "", "orig_id": 1414496}}, {"model": "metainfo.source", "pk": 13607, "fields": {"orig_filename": "Jodl_Margarete_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414497}}, {"model": "metainfo.source", "pk": 13608, "fields": {"orig_filename": "Joelson_Robert_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414498}}, {"model": "metainfo.source", "pk": 13609, "fields": {"orig_filename": "Joendl_Johann-Philipp_1782_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414499}}, {"model": "metainfo.source", "pk": 13610, "fields": {"orig_filename": "Joers_Paul_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121f.", "author": "", "orig_id": 1414500}}, {"model": "metainfo.source", "pk": 13611, "fields": {"orig_filename": "Johanny_Erich-Adolf_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123", "author": "", "orig_id": 1414502}}, {"model": "metainfo.source", "pk": 13612, "fields": {"orig_filename": "Johanny_Lothar_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123", "author": "", "orig_id": 1414503}}, {"model": "metainfo.source", "pk": 13613, "fields": {"orig_filename": "Johann_Bapt-Joseph-Fabian-Sebastian_1782_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 122f.", "author": "", "orig_id": 1414501}}, {"model": "metainfo.source", "pk": 13614, "fields": {"orig_filename": "Joherl_Ignaz-Heinrich_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123f.", "author": "", "orig_id": 1414504}}, {"model": "metainfo.source", "pk": 13615, "fields": {"orig_filename": "John-Johnesberg_Conrad-Heinrich_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126f.", "author": "", "orig_id": 1414514}}, {"model": "metainfo.source", "pk": 13616, "fields": {"orig_filename": "John_Alois_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414505}}, {"model": "metainfo.source", "pk": 13617, "fields": {"orig_filename": "Jaksch_Amalie_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414996}}, {"model": "metainfo.source", "pk": 13618, "fields": {"orig_filename": "Jaksch_Friedrich_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414997}}, {"model": "metainfo.source", "pk": 13619, "fields": {"orig_filename": "Jaksch_Josef_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414998}}, {"model": "metainfo.source", "pk": 13620, "fields": {"orig_filename": "Jaksic_Djuro_1832_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415003}}, {"model": "metainfo.source", "pk": 13621, "fields": {"orig_filename": "Jaksi_Josef_1874_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66f.", "author": "", "orig_id": 1415002}}, {"model": "metainfo.source", "pk": 13622, "fields": {"orig_filename": "Jakubec_Jan_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415004}}, {"model": "metainfo.source", "pk": 13623, "fields": {"orig_filename": "Jalowetz_Eduard_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415005}}, {"model": "metainfo.source", "pk": 13624, "fields": {"orig_filename": "Jama_Matija_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67f.", "author": "", "orig_id": 1415006}}, {"model": "metainfo.source", "pk": 13625, "fields": {"orig_filename": "Jambor_Pal_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68", "author": "", "orig_id": 1415007}}, {"model": "metainfo.source", "pk": 13626, "fields": {"orig_filename": "Jambrisak_Marija_1847_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68", "author": "", "orig_id": 1415008}}, {"model": "metainfo.source", "pk": 13627, "fields": {"orig_filename": "Jamrich_Maria-Helene_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68f.", "author": "", "orig_id": 1415009}}, {"model": "metainfo.source", "pk": 13628, "fields": {"orig_filename": "Jamsek_Franc_1840_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415073}}, {"model": "metainfo.source", "pk": 13629, "fields": {"orig_filename": "Janacek_Leos_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415075}}, {"model": "metainfo.source", "pk": 13630, "fields": {"orig_filename": "Janauschek_Franziska-Magdalena_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69f.", "author": "", "orig_id": 1415076}}, {"model": "metainfo.source", "pk": 13631, "fields": {"orig_filename": "Janauschek_Leopold_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70", "author": "", "orig_id": 1415077}}, {"model": "metainfo.source", "pk": 13632, "fields": {"orig_filename": "Janauschek_Wilhelm-Raphael_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70", "author": "", "orig_id": 1415078}}, {"model": "metainfo.source", "pk": 13633, "fields": {"orig_filename": "Jancso_Benedek_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70f.", "author": "", "orig_id": 1415079}}, {"model": "metainfo.source", "pk": 13634, "fields": {"orig_filename": "Jancso_Gyoergy_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415080}}, {"model": "metainfo.source", "pk": 13635, "fields": {"orig_filename": "Jandera_Joseph-Ladislaus_1776_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415081}}, {"model": "metainfo.source", "pk": 13636, "fields": {"orig_filename": "Jandrisevits_Peter_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415082}}, {"model": "metainfo.source", "pk": 13637, "fields": {"orig_filename": "Janecek_Gustav_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415083}}, {"model": "metainfo.source", "pk": 13638, "fields": {"orig_filename": "Janecka_Josef_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415084}}, {"model": "metainfo.source", "pk": 13639, "fields": {"orig_filename": "Janezic_Anton_1828_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415085}}, {"model": "metainfo.source", "pk": 13640, "fields": {"orig_filename": "Janiczek_Wladimir_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415086}}, {"model": "metainfo.source", "pk": 13641, "fields": {"orig_filename": "Janisch_Antonie_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415087}}, {"model": "metainfo.source", "pk": 13642, "fields": {"orig_filename": "Janisch_Eduard_1868_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72f.", "author": "", "orig_id": 1415088}}, {"model": "metainfo.source", "pk": 13643, "fields": {"orig_filename": "Janiss_Johann_1808_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73", "author": "", "orig_id": 1415089}}, {"model": "metainfo.source", "pk": 13644, "fields": {"orig_filename": "Janitschek_Maria_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73", "author": "", "orig_id": 1415092}}, {"model": "metainfo.source", "pk": 13645, "fields": {"orig_filename": "Janka-Bulcs_Viktor_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74", "author": "", "orig_id": 1415156}}, {"model": "metainfo.source", "pk": 13646, "fields": {"orig_filename": "Janka_Gabriel_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73f.", "author": "", "orig_id": 1415093}}, {"model": "metainfo.source", "pk": 13647, "fields": {"orig_filename": "Jankovich_Miklos_1773_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415159}}, {"model": "metainfo.source", "pk": 13648, "fields": {"orig_filename": "Jankovits_Julius_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415160}}, {"model": "metainfo.source", "pk": 13649, "fields": {"orig_filename": "Janko_Josef_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74", "author": "", "orig_id": 1415157}}, {"model": "metainfo.source", "pk": 13650, "fields": {"orig_filename": "Janko_Paul_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74f.", "author": "", "orig_id": 1415158}}, {"model": "metainfo.source", "pk": 13651, "fields": {"orig_filename": "Jannitti_August_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415161}}, {"model": "metainfo.source", "pk": 13652, "fields": {"orig_filename": "Janosik_Jan_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415163}}, {"model": "metainfo.source", "pk": 13653, "fields": {"orig_filename": "Janosi_Bela_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415162}}, {"model": "metainfo.source", "pk": 13654, "fields": {"orig_filename": "Janovsky_Jaroslav_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75f.", "author": "", "orig_id": 1415164}}, {"model": "metainfo.source", "pk": 13655, "fields": {"orig_filename": "Janovsky_Vitezslav_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415165}}, {"model": "metainfo.source", "pk": 13656, "fields": {"orig_filename": "Jansa_Leopold_1795_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415166}}, {"model": "metainfo.source", "pk": 13657, "fields": {"orig_filename": "Jansa_Wenzel_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415167}}, {"model": "metainfo.source", "pk": 13658, "fields": {"orig_filename": "Janscheck_Valentin_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415168}}, {"model": "metainfo.source", "pk": 13659, "fields": {"orig_filename": "Janschitz_Eduard_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76f.", "author": "", "orig_id": 1415169}}, {"model": "metainfo.source", "pk": 13660, "fields": {"orig_filename": "Jansky_Jan_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77", "author": "", "orig_id": 1415170}}, {"model": "metainfo.source", "pk": 13661, "fields": {"orig_filename": "Jantsch_Franz_1898_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77", "author": "", "orig_id": 1415171}}, {"model": "metainfo.source", "pk": 13662, "fields": {"orig_filename": "Jantsch_Heinrich_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77f.", "author": "", "orig_id": 1415172}}, {"model": "metainfo.source", "pk": 13663, "fields": {"orig_filename": "Januschke_Johann_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415173}}, {"model": "metainfo.source", "pk": 13664, "fields": {"orig_filename": "Januschowsky_Georgine_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415174}}, {"model": "metainfo.source", "pk": 13665, "fields": {"orig_filename": "Janusic_Jurislav_1881_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415175}}, {"model": "metainfo.source", "pk": 13666, "fields": {"orig_filename": "Jan_Giorgio_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415074}}, {"model": "metainfo.source", "pk": 13667, "fields": {"orig_filename": "Jaques-Dalcroze_Emile_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79", "author": "", "orig_id": 1415177}}, {"model": "metainfo.source", "pk": 13668, "fields": {"orig_filename": "Jaques_Heinrich_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415176}}, {"model": "metainfo.source", "pk": 13669, "fields": {"orig_filename": "Jara_Johann_1900_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79", "author": "", "orig_id": 1415178}}, {"model": "metainfo.source", "pk": 13670, "fields": {"orig_filename": "Jarcke_Karl-Ernst_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80", "author": "", "orig_id": 1415180}}, {"model": "metainfo.source", "pk": 13671, "fields": {"orig_filename": "Jarc_Miran_1900_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79f.", "author": "", "orig_id": 1415179}}, {"model": "metainfo.source", "pk": 13672, "fields": {"orig_filename": "Jaresch_Johann_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80", "author": "", "orig_id": 1413983}}, {"model": "metainfo.source", "pk": 13673, "fields": {"orig_filename": "Jarisch_Adolf_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80f.", "author": "", "orig_id": 1413984}}, {"model": "metainfo.source", "pk": 13674, "fields": {"orig_filename": "Jarisch_Anton-Hieronymus_1818_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413985}}, {"model": "metainfo.source", "pk": 13675, "fields": {"orig_filename": "Jarl-Sakellarios_Karin_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413987}}, {"model": "metainfo.source", "pk": 13676, "fields": {"orig_filename": "Jarl_Otto_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413986}}, {"model": "metainfo.source", "pk": 13677, "fields": {"orig_filename": "Jarmund_Stanislaw_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81f.", "author": "", "orig_id": 1413988}}, {"model": "metainfo.source", "pk": 13678, "fields": {"orig_filename": "Jarnevic_Dragojla_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413989}}, {"model": "metainfo.source", "pk": 13679, "fields": {"orig_filename": "Jarnik_Jan-Urban_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413990}}, {"model": "metainfo.source", "pk": 13680, "fields": {"orig_filename": "Jarnik_Urban_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413991}}, {"model": "metainfo.source", "pk": 13681, "fields": {"orig_filename": "Jarno_Georg_1868_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82f.", "author": "", "orig_id": 1413992}}, {"model": "metainfo.source", "pk": 13682, "fields": {"orig_filename": "Jarno_Josef_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83", "author": "", "orig_id": 1413994}}, {"model": "metainfo.source", "pk": 13683, "fields": {"orig_filename": "Jaronek_Bohumir_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83", "author": "", "orig_id": 1413995}}, {"model": "metainfo.source", "pk": 13684, "fields": {"orig_filename": "Jarosch_Joseph_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83f.", "author": "", "orig_id": 1413996}}, {"model": "metainfo.source", "pk": 13685, "fields": {"orig_filename": "Jarycevskyj_Sylvestr_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413997}}, {"model": "metainfo.source", "pk": 13686, "fields": {"orig_filename": "Jarz_Konrad_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413998}}, {"model": "metainfo.source", "pk": 13687, "fields": {"orig_filename": "Jaschke_Franz_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413999}}, {"model": "metainfo.source", "pk": 13688, "fields": {"orig_filename": "Jaschke_Franz_1862_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84f.", "author": "", "orig_id": 1414000}}, {"model": "metainfo.source", "pk": 13689, "fields": {"orig_filename": "Jaskewitz_Josef-Franz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414001}}, {"model": "metainfo.source", "pk": 13690, "fields": {"orig_filename": "Jasper_Friedrich_1847_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414002}}, {"model": "metainfo.source", "pk": 13691, "fields": {"orig_filename": "Jasper_Viktor_1848_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414003}}, {"model": "metainfo.source", "pk": 13692, "fields": {"orig_filename": "Jassnueger_Johann-Nep_1766_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85f.", "author": "", "orig_id": 1414004}}, {"model": "metainfo.source", "pk": 13693, "fields": {"orig_filename": "Jaszai_Marie_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414005}}, {"model": "metainfo.source", "pk": 13694, "fields": {"orig_filename": "Jaszai_Samu_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414006}}, {"model": "metainfo.source", "pk": 13695, "fields": {"orig_filename": "Jaszay_Pal_1809_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414007}}, {"model": "metainfo.source", "pk": 13696, "fields": {"orig_filename": "Jaszowski_Stanislaw_1803_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414072}}, {"model": "metainfo.source", "pk": 13697, "fields": {"orig_filename": "Jauernig_Jakob_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414073}}, {"model": "metainfo.source", "pk": 13698, "fields": {"orig_filename": "Jaumann_Gustav_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414074}}, {"model": "metainfo.source", "pk": 13699, "fields": {"orig_filename": "Jauner-Schroffenegg_August_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414077}}, {"model": "metainfo.source", "pk": 13700, "fields": {"orig_filename": "Jauner_Franz_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414075}}, {"model": "metainfo.source", "pk": 13701, "fields": {"orig_filename": "Jauner_Heinrich_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414076}}, {"model": "metainfo.source", "pk": 13702, "fields": {"orig_filename": "Jautz_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87f.", "author": "", "orig_id": 1414078}}, {"model": "metainfo.source", "pk": 13703, "fields": {"orig_filename": "Javornik_Placidus_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421745}}, {"model": "metainfo.source", "pk": 13704, "fields": {"orig_filename": "Javorskij_Julian-A_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421819}}, {"model": "metainfo.source", "pk": 13705, "fields": {"orig_filename": "Javurek_Karl_1815_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421820}}, {"model": "metainfo.source", "pk": 13706, "fields": {"orig_filename": "Jaworski_Apolinary_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421821}}, {"model": "metainfo.source", "pk": 13707, "fields": {"orig_filename": "Jaworski_Franciszek_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89", "author": "", "orig_id": 1421822}}, {"model": "metainfo.source", "pk": 13708, "fields": {"orig_filename": "Jaworski_Wladyslaw-Leopold_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89", "author": "", "orig_id": 1421823}}, {"model": "metainfo.source", "pk": 13709, "fields": {"orig_filename": "Jax_Johann_1842_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89f.", "author": "", "orig_id": 1421824}}, {"model": "metainfo.source", "pk": 13710, "fields": {"orig_filename": "Jebacin_Anton_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414080}}, {"model": "metainfo.source", "pk": 13711, "fields": {"orig_filename": "Jeblinger_Raimund_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414081}}, {"model": "metainfo.source", "pk": 13712, "fields": {"orig_filename": "Jeckel_Fortunat_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414082}}, {"model": "metainfo.source", "pk": 13713, "fields": {"orig_filename": "Jeczmieniowski_Karl_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414083}}, {"model": "metainfo.source", "pk": 13714, "fields": {"orig_filename": "Jedek_Karl_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90f.", "author": "", "orig_id": 1414084}}, {"model": "metainfo.source", "pk": 13715, "fields": {"orig_filename": "Jedina-Palombini_Leopold_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414086}}, {"model": "metainfo.source", "pk": 13716, "fields": {"orig_filename": "Jedina_Hermann_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414085}}, {"model": "metainfo.source", "pk": 13717, "fields": {"orig_filename": "Jedlicka_Bohdan_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414087}}, {"model": "metainfo.source", "pk": 13718, "fields": {"orig_filename": "Jedlicka_Rudolf_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414088}}, {"model": "metainfo.source", "pk": 13719, "fields": {"orig_filename": "Jedlik_Anyos_1800_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414089}}, {"model": "metainfo.source", "pk": 13720, "fields": {"orig_filename": "Jedrzejowicz_Adam_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414090}}, {"model": "metainfo.source", "pk": 13721, "fields": {"orig_filename": "Innerkofler_Josef-I_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414582}}, {"model": "metainfo.source", "pk": 13722, "fields": {"orig_filename": "Innerkofler_Michael-Ii_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414584}}, {"model": "metainfo.source", "pk": 13723, "fields": {"orig_filename": "Innerkofler_Michael-I_1844_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414583}}, {"model": "metainfo.source", "pk": 13724, "fields": {"orig_filename": "Innerkofler_Sepp_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414585}}, {"model": "metainfo.source", "pk": 13725, "fields": {"orig_filename": "Insam_Johann_1775_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414654}}, {"model": "metainfo.source", "pk": 13726, "fields": {"orig_filename": "Inthaler_Daniel_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414656}}, {"model": "metainfo.source", "pk": 13727, "fields": {"orig_filename": "Inthal_Kaspar_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414655}}, {"model": "metainfo.source", "pk": 13728, "fields": {"orig_filename": "Inwald-Waldtreu_Josef_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38f.", "author": "", "orig_id": 1414657}}, {"model": "metainfo.source", "pk": 13729, "fields": {"orig_filename": "Inzaghi_Karl_1777_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 39", "author": "", "orig_id": 1414658}}, {"model": "metainfo.source", "pk": 13730, "fields": {"orig_filename": "Ipavic_Benjamin_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 39", "author": "", "orig_id": 1414659}}, {"model": "metainfo.source", "pk": 13731, "fields": {"orig_filename": "Ipavic_Gustav_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414660}}, {"model": "metainfo.source", "pk": 13732, "fields": {"orig_filename": "Ipavic_Josip_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414661}}, {"model": "metainfo.source", "pk": 13733, "fields": {"orig_filename": "Ipold_Rudolf_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414662}}, {"model": "metainfo.source", "pk": 13734, "fields": {"orig_filename": "Ippen_Josef-A_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414663}}, {"model": "metainfo.source", "pk": 13735, "fields": {"orig_filename": "Ippen_Theodor_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40f.", "author": "", "orig_id": 1414664}}, {"model": "metainfo.source", "pk": 13736, "fields": {"orig_filename": "Ipsen_Carl_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414665}}, {"model": "metainfo.source", "pk": 13737, "fields": {"orig_filename": "Iranyi_Daniel_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414666}}, {"model": "metainfo.source", "pk": 13738, "fields": {"orig_filename": "Irasky_Jakob_1766_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414667}}, {"model": "metainfo.source", "pk": 13739, "fields": {"orig_filename": "Irinyi_Janos_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41f.", "author": "", "orig_id": 1414668}}, {"model": "metainfo.source", "pk": 13740, "fields": {"orig_filename": "Irinyi_Jozsef_1822_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414669}}, {"model": "metainfo.source", "pk": 13741, "fields": {"orig_filename": "Irmann_Heinrich-Otto_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414670}}, {"model": "metainfo.source", "pk": 13742, "fields": {"orig_filename": "Irmler_Heinrich_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414671}}, {"model": "metainfo.source", "pk": 13743, "fields": {"orig_filename": "Irresberger_Carl-Caspar_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414672}}, {"model": "metainfo.source", "pk": 13744, "fields": {"orig_filename": "Irsay_Arthur_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42f.", "author": "", "orig_id": 1414673}}, {"model": "metainfo.source", "pk": 13745, "fields": {"orig_filename": "Irschik_Magda_1841_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414674}}, {"model": "metainfo.source", "pk": 13746, "fields": {"orig_filename": "Isbary_Rudolf-Friedrich-Ernst_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414675}}, {"model": "metainfo.source", "pk": 13747, "fields": {"orig_filename": "Isenflamm_Carl_1775_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414736}}, {"model": "metainfo.source", "pk": 13748, "fields": {"orig_filename": "Isfordink-Kostnitz_Johann-Nep_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43f.", "author": "", "orig_id": 1414737}}, {"model": "metainfo.source", "pk": 13749, "fields": {"orig_filename": "Iska_Franz_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414738}}, {"model": "metainfo.source", "pk": 13750, "fields": {"orig_filename": "Iskierski_Julius_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414739}}, {"model": "metainfo.source", "pk": 13751, "fields": {"orig_filename": "Israel_Daniel_1859_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414740}}, {"model": "metainfo.source", "pk": 13752, "fields": {"orig_filename": "Issaakowicz_Isaak_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44f.", "author": "", "orig_id": 1414741}}, {"model": "metainfo.source", "pk": 13753, "fields": {"orig_filename": "Isser-Gaudententhurn_Johanna_1802_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414742}}, {"model": "metainfo.source", "pk": 13754, "fields": {"orig_filename": "Isser-Gaudententhurn_Max_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414743}}, {"model": "metainfo.source", "pk": 13755, "fields": {"orig_filename": "Issler_Richard_1842_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45f.", "author": "", "orig_id": 1414745}}, {"model": "metainfo.source", "pk": 13756, "fields": {"orig_filename": "Istoczy_Geza_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414746}}, {"model": "metainfo.source", "pk": 13757, "fields": {"orig_filename": "Istvanffi-Csikmadefalva_Gyula_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414747}}, {"model": "metainfo.source", "pk": 13758, "fields": {"orig_filename": "Itzinger_Karl_1888_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414748}}, {"model": "metainfo.source", "pk": 13759, "fields": {"orig_filename": "Ivakic_Joza_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46f.", "author": "", "orig_id": 1414749}}, {"model": "metainfo.source", "pk": 13760, "fields": {"orig_filename": "Ivancan_Ljudevit_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414750}}, {"model": "metainfo.source", "pk": 13761, "fields": {"orig_filename": "Ivanisevic_Frano_1863_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414751}}, {"model": "metainfo.source", "pk": 13762, "fields": {"orig_filename": "Ivanka_Imre_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414752}}, {"model": "metainfo.source", "pk": 13763, "fields": {"orig_filename": "Ivanovic_Katarina_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47f.", "author": "", "orig_id": 1414753}}, {"model": "metainfo.source", "pk": 13764, "fields": {"orig_filename": "Ivanyi_Oedoen_1854_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414754}}, {"model": "metainfo.source", "pk": 13765, "fields": {"orig_filename": "Ivcic_Simon_1759_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414755}}, {"model": "metainfo.source", "pk": 13766, "fields": {"orig_filename": "Ivekovic_Ciril-M_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414756}}, {"model": "metainfo.source", "pk": 13767, "fields": {"orig_filename": "Ivekovic_Oton_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414821}}, {"model": "metainfo.source", "pk": 13768, "fields": {"orig_filename": "Ivicevic_Stjepan_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414823}}, {"model": "metainfo.source", "pk": 13769, "fields": {"orig_filename": "Ivic_Aleksa_1881_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414822}}, {"model": "metainfo.source", "pk": 13770, "fields": {"orig_filename": "Ivkanec_Tomislav_1844_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49f.", "author": "", "orig_id": 1414824}}, {"model": "metainfo.source", "pk": 13771, "fields": {"orig_filename": "Izso_Miklos_1831_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50", "author": "", "orig_id": 1414825}}, {"model": "metainfo.source", "pk": 13772, "fields": {"orig_filename": "Jablanczy_Julius_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50", "author": "", "orig_id": 1414826}}, {"model": "metainfo.source", "pk": 13773, "fields": {"orig_filename": "Jablonowski_Karl_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50f.", "author": "", "orig_id": 1414827}}, {"model": "metainfo.source", "pk": 13774, "fields": {"orig_filename": "Jabornegg-Altenfels_Michael-Franz_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51", "author": "", "orig_id": 1414828}}, {"model": "metainfo.source", "pk": 13775, "fields": {"orig_filename": "Jabornegg-Gamsenegg-Moderndorf_Markus_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51", "author": "", "orig_id": 1414829}}, {"model": "metainfo.source", "pk": 13776, "fields": {"orig_filename": "Jachimowicz_Theodor_1800_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51f.", "author": "", "orig_id": 1414830}}, {"model": "metainfo.source", "pk": 13777, "fields": {"orig_filename": "Jacob_Josef_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52", "author": "", "orig_id": 1414831}}, {"model": "metainfo.source", "pk": 13778, "fields": {"orig_filename": "Jacquin_Joseph-Franz_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52", "author": "", "orig_id": 1414832}}, {"model": "metainfo.source", "pk": 13779, "fields": {"orig_filename": "Jacquin_Nicolaus-Joseph_1727_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52f.", "author": "", "orig_id": 1414833}}, {"model": "metainfo.source", "pk": 13780, "fields": {"orig_filename": "Jaeckel_Josef_1778_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53", "author": "", "orig_id": 1414834}}, {"model": "metainfo.source", "pk": 13781, "fields": {"orig_filename": "Jaeger-Jaxthal_Eduard_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57f.", "author": "", "orig_id": 1414911}}, {"model": "metainfo.source", "pk": 13782, "fields": {"orig_filename": "Jaeger-Jaxthal_Friedrich_1784_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 58", "author": "", "orig_id": 1414912}}, {"model": "metainfo.source", "pk": 13783, "fields": {"orig_filename": "Jaeger_Adolf_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53", "author": "", "orig_id": 1414835}}, {"model": "metainfo.source", "pk": 13784, "fields": {"orig_filename": "Jaeger_Albert_1801_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53f.", "author": "", "orig_id": 1414836}}, {"model": "metainfo.source", "pk": 13785, "fields": {"orig_filename": "Jaeger_Alderich_1746_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54", "author": "", "orig_id": 1414837}}, {"model": "metainfo.source", "pk": 13786, "fields": {"orig_filename": "Jaeger_Anna_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54", "author": "", "orig_id": 1414838}}, {"model": "metainfo.source", "pk": 13787, "fields": {"orig_filename": "Jaeger_Ferdinand_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54f.", "author": "", "orig_id": 1414839}}, {"model": "metainfo.source", "pk": 13788, "fields": {"orig_filename": "Jaeger_Franz_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414840}}, {"model": "metainfo.source", "pk": 13789, "fields": {"orig_filename": "Jaeger_Franz_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414841}}, {"model": "metainfo.source", "pk": 13790, "fields": {"orig_filename": "Jaeger_Gustav-Maria_1835_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 56", "author": "", "orig_id": 1414906}}, {"model": "metainfo.source", "pk": 13791, "fields": {"orig_filename": "Jaeger_Gustav_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414904}}, {"model": "metainfo.source", "pk": 13792, "fields": {"orig_filename": "Jaeger_Gustav_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55f.", "author": "", "orig_id": 1414905}}, {"model": "metainfo.source", "pk": 13793, "fields": {"orig_filename": "Jaeger_Karl_1836_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 56f.", "author": "", "orig_id": 1414907}}, {"model": "metainfo.source", "pk": 13794, "fields": {"orig_filename": "Jaeger_Matthias_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414908}}, {"model": "metainfo.source", "pk": 13795, "fields": {"orig_filename": "Jaeger_Robert_1890_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414909}}, {"model": "metainfo.source", "pk": 13796, "fields": {"orig_filename": "Jaeger_Vital_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414910}}, {"model": "metainfo.source", "pk": 13797, "fields": {"orig_filename": "Jaekel_Franz-Josef_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 58f.", "author": "", "orig_id": 1414913}}, {"model": "metainfo.source", "pk": 13798, "fields": {"orig_filename": "Jaell_Alfred_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414914}}, {"model": "metainfo.source", "pk": 13799, "fields": {"orig_filename": "Jaffe_Max_1845_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414915}}, {"model": "metainfo.source", "pk": 13800, "fields": {"orig_filename": "Jagemann_Carl_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2179610}}, {"model": "metainfo.source", "pk": 13801, "fields": {"orig_filename": "Jager_Francis_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414916}}, {"model": "metainfo.source", "pk": 13802, "fields": {"orig_filename": "Jagic_Vatroslav_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59f.", "author": "", "orig_id": 1414917}}, {"model": "metainfo.source", "pk": 13803, "fields": {"orig_filename": "Jahne_Ludwig_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62f.", "author": "", "orig_id": 1414925}}, {"model": "metainfo.source", "pk": 13804, "fields": {"orig_filename": "Jahn_Alois_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 60", "author": "", "orig_id": 1414918}}, {"model": "metainfo.source", "pk": 13805, "fields": {"orig_filename": "Jahn_Gustav_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 60f.", "author": "", "orig_id": 1414919}}, {"model": "metainfo.source", "pk": 13806, "fields": {"orig_filename": "Jahn_Gustav_1879_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 61", "author": "", "orig_id": 1414920}}, {"model": "metainfo.source", "pk": 13807, "fields": {"orig_filename": "Jahn_Jaroslav-Jilji_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 61f.", "author": "", "orig_id": 1414921}}, {"model": "metainfo.source", "pk": 13808, "fields": {"orig_filename": "Jahn_Jilji-Vratislav_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414922}}, {"model": "metainfo.source", "pk": 13809, "fields": {"orig_filename": "Jahn_Marie_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414923}}, {"model": "metainfo.source", "pk": 13810, "fields": {"orig_filename": "Jahn_Wilhelm_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414924}}, {"model": "metainfo.source", "pk": 13811, "fields": {"orig_filename": "Jakesch_Alexander_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414927}}, {"model": "metainfo.source", "pk": 13812, "fields": {"orig_filename": "Jakesch_Heinrich_1867_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414990}}, {"model": "metainfo.source", "pk": 13813, "fields": {"orig_filename": "Jakitsch_Richard_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414991}}, {"model": "metainfo.source", "pk": 13814, "fields": {"orig_filename": "Jakob-Herminenthal_Wilhelm_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64", "author": "", "orig_id": 1414993}}, {"model": "metainfo.source", "pk": 13815, "fields": {"orig_filename": "Jakobey_Karoly_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64", "author": "", "orig_id": 1414994}}, {"model": "metainfo.source", "pk": 13816, "fields": {"orig_filename": "Jakopic_Richard_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64f.", "author": "", "orig_id": 1414995}}, {"model": "metainfo.source", "pk": 13817, "fields": {"orig_filename": "Jaksch-Wartenhorst_Anton_1810_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65f.", "author": "", "orig_id": 1414999}}, {"model": "metainfo.source", "pk": 13818, "fields": {"orig_filename": "Jaksch-Wartenhorst_August_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66", "author": "", "orig_id": 1415000}}, {"model": "metainfo.source", "pk": 13819, "fields": {"orig_filename": "Jaksch-Wartenhorst_Rudolf_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66", "author": "", "orig_id": 1415001}}, {"model": "metainfo.source", "pk": 13820, "fields": {"orig_filename": "Hummelauer_Franz_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415603}}, {"model": "metainfo.source", "pk": 13821, "fields": {"orig_filename": "Hummel_Carl_1769_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8f.", "author": "", "orig_id": 1415596}}, {"model": "metainfo.source", "pk": 13822, "fields": {"orig_filename": "Hummel_Christian_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9", "author": "", "orig_id": 1415597}}, {"model": "metainfo.source", "pk": 13823, "fields": {"orig_filename": "Hummel_Johann-Ludwig_1754_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9", "author": "", "orig_id": 1415598}}, {"model": "metainfo.source", "pk": 13824, "fields": {"orig_filename": "Hummel_Johann-Nep_1778_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9f.", "author": "", "orig_id": 1415599}}, {"model": "metainfo.source", "pk": 13825, "fields": {"orig_filename": "Hummel_Joseph-Friedrich_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415600}}, {"model": "metainfo.source", "pk": 13826, "fields": {"orig_filename": "Hummel_Karl_1801_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415601}}, {"model": "metainfo.source", "pk": 13827, "fields": {"orig_filename": "Hummel_Luise_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415602}}, {"model": "metainfo.source", "pk": 13828, "fields": {"orig_filename": "Hummer_Andre_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10f.", "author": "", "orig_id": 1415604}}, {"model": "metainfo.source", "pk": 13829, "fields": {"orig_filename": "Hunanian_Leontius_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415673}}, {"model": "metainfo.source", "pk": 13830, "fields": {"orig_filename": "Huna_Ludwig_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415672}}, {"model": "metainfo.source", "pk": 13831, "fields": {"orig_filename": "Hundertpfund_Liberat_1806_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415674}}, {"model": "metainfo.source", "pk": 13832, "fields": {"orig_filename": "Hunfalvy_Johann_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11f.", "author": "", "orig_id": 1415675}}, {"model": "metainfo.source", "pk": 13833, "fields": {"orig_filename": "Hunfalvy_Paul_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415676}}, {"model": "metainfo.source", "pk": 13834, "fields": {"orig_filename": "Hunglinger_Andreas-Magnus_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415677}}, {"model": "metainfo.source", "pk": 13835, "fields": {"orig_filename": "Hunold_Balthasar_1828_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415678}}, {"model": "metainfo.source", "pk": 13836, "fields": {"orig_filename": "Hupfauf_Johann-Peregrin_1856_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12f.", "author": "", "orig_id": 1415679}}, {"model": "metainfo.source", "pk": 13837, "fields": {"orig_filename": "Hupfer_Karl_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13", "author": "", "orig_id": 1415680}}, {"model": "metainfo.source", "pk": 13838, "fields": {"orig_filename": "Hupka_Joseph_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13", "author": "", "orig_id": 1415681}}, {"model": "metainfo.source", "pk": 13839, "fields": {"orig_filename": "Huppert_Karl-Hugo_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13f.", "author": "", "orig_id": 1415682}}, {"model": "metainfo.source", "pk": 13840, "fields": {"orig_filename": "Hurdalek_Josef-Franz_1746_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14", "author": "", "orig_id": 1415683}}, {"model": "metainfo.source", "pk": 13841, "fields": {"orig_filename": "Hurter-Ammann_Franz_1824_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14f.", "author": "", "orig_id": 1415685}}, {"model": "metainfo.source", "pk": 13842, "fields": {"orig_filename": "Hurter-Ammann_Friedrich-Emanuel_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14", "author": "", "orig_id": 1415684}}, {"model": "metainfo.source", "pk": 13843, "fields": {"orig_filename": "Hurter-Ammann_Heinrich_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15", "author": "", "orig_id": 1415686}}, {"model": "metainfo.source", "pk": 13844, "fields": {"orig_filename": "Hurter-Ammann_Hugo_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15", "author": "", "orig_id": 1415687}}, {"model": "metainfo.source", "pk": 13845, "fields": {"orig_filename": "Husnik_Jakob_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15f.", "author": "", "orig_id": 1415688}}, {"model": "metainfo.source", "pk": 13846, "fields": {"orig_filename": "Hussak_Eugen_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16", "author": "", "orig_id": 1415690}}, {"model": "metainfo.source", "pk": 13847, "fields": {"orig_filename": "Hussarek-Heinlein_Max_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16f.", "author": "", "orig_id": 1415691}}, {"model": "metainfo.source", "pk": 13848, "fields": {"orig_filename": "Husserl_Edmund_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 17f.", "author": "", "orig_id": 1415692}}, {"model": "metainfo.source", "pk": 13849, "fields": {"orig_filename": "Hussian_Raphael-Ferdinand_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415693}}, {"model": "metainfo.source", "pk": 13850, "fields": {"orig_filename": "Huss_Karl_1761_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16", "author": "", "orig_id": 1415689}}, {"model": "metainfo.source", "pk": 13851, "fields": {"orig_filename": "Huter_Andreas_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415695}}, {"model": "metainfo.source", "pk": 13852, "fields": {"orig_filename": "Huter_Josef-Franz_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415696}}, {"model": "metainfo.source", "pk": 13853, "fields": {"orig_filename": "Huter_Josef_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415694}}, {"model": "metainfo.source", "pk": 13854, "fields": {"orig_filename": "Huter_Rupert_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415697}}, {"model": "metainfo.source", "pk": 13855, "fields": {"orig_filename": "Hutschenreiter_Viktor-Max_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415763}}, {"model": "metainfo.source", "pk": 13856, "fields": {"orig_filename": "Huttary_Josef_1842_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415764}}, {"model": "metainfo.source", "pk": 13857, "fields": {"orig_filename": "Hutterer_Johann_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415767}}, {"model": "metainfo.source", "pk": 13858, "fields": {"orig_filename": "Hutterstrasser-Scheidl_Lili_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415769}}, {"model": "metainfo.source", "pk": 13859, "fields": {"orig_filename": "Hutterstrasser_Carl_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415768}}, {"model": "metainfo.source", "pk": 13860, "fields": {"orig_filename": "Hutter_Josef_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415765}}, {"model": "metainfo.source", "pk": 13861, "fields": {"orig_filename": "Hutter_Theodor_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19f.", "author": "", "orig_id": 1415766}}, {"model": "metainfo.source", "pk": 13862, "fields": {"orig_filename": "Huwyler_Hugo_1878_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415770}}, {"model": "metainfo.source", "pk": 13863, "fields": {"orig_filename": "Huyer_Reinhold_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20f.", "author": "", "orig_id": 1415771}}, {"model": "metainfo.source", "pk": 13864, "fields": {"orig_filename": "Huyn_Johann-Karl_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415772}}, {"model": "metainfo.source", "pk": 13865, "fields": {"orig_filename": "Huyn_Karl-Georg_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415773}}, {"model": "metainfo.source", "pk": 13866, "fields": {"orig_filename": "Huyn_Paul_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415774}}, {"model": "metainfo.source", "pk": 13867, "fields": {"orig_filename": "Hyam_Johann_1733_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21f.", "author": "", "orig_id": 1415775}}, {"model": "metainfo.source", "pk": 13868, "fields": {"orig_filename": "Hybes_Josef_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2173843}}, {"model": "metainfo.source", "pk": 13869, "fields": {"orig_filename": "Hybler_Wenzel_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22", "author": "", "orig_id": 1415776}}, {"model": "metainfo.source", "pk": 13870, "fields": {"orig_filename": "Hye-Glunek_Anton-Josef_1807_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22", "author": "", "orig_id": 1415777}}, {"model": "metainfo.source", "pk": 13871, "fields": {"orig_filename": "Hynais_Vojtech_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22f.", "author": "", "orig_id": 1415778}}, {"model": "metainfo.source", "pk": 13872, "fields": {"orig_filename": "Hyrtl_Auguste_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23", "author": "", "orig_id": 1415779}}, {"model": "metainfo.source", "pk": 13873, "fields": {"orig_filename": "Hyrtl_Jakob_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23", "author": "", "orig_id": 1415780}}, {"model": "metainfo.source", "pk": 13874, "fields": {"orig_filename": "Hyrtl_Josef_1810_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23f.", "author": "", "orig_id": 1415781}}, {"model": "metainfo.source", "pk": 13875, "fields": {"orig_filename": "Hysel_Franz-Eduard_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 24f.", "author": "", "orig_id": 1415782}}, {"model": "metainfo.source", "pk": 13876, "fields": {"orig_filename": "Ibach_Alfred_1902_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415783}}, {"model": "metainfo.source", "pk": 13877, "fields": {"orig_filename": "Ibler_Janko_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415785}}, {"model": "metainfo.source", "pk": 13878, "fields": {"orig_filename": "Ibl_Franz_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415784}}, {"model": "metainfo.source", "pk": 13879, "fields": {"orig_filename": "Ichhaeuser_Josef_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25f.", "author": "", "orig_id": 1415786}}, {"model": "metainfo.source", "pk": 13880, "fields": {"orig_filename": "Iellico_Giuseppe_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1415787}}, {"model": "metainfo.source", "pk": 13881, "fields": {"orig_filename": "Igel_Benzion_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1414467}}, {"model": "metainfo.source", "pk": 13882, "fields": {"orig_filename": "Igler_Gustav_1842_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1414468}}, {"model": "metainfo.source", "pk": 13883, "fields": {"orig_filename": "Ignjatovic_Jakov_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26f.", "author": "", "orig_id": 1414469}}, {"model": "metainfo.source", "pk": 13884, "fields": {"orig_filename": "Ihasz_Daniel_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414470}}, {"model": "metainfo.source", "pk": 13885, "fields": {"orig_filename": "Ilesic_Fran_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414471}}, {"model": "metainfo.source", "pk": 13886, "fields": {"orig_filename": "Ilg_Albert_1847_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414472}}, {"model": "metainfo.source", "pk": 13887, "fields": {"orig_filename": "Ilg_Johann-Georg_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27f.", "author": "", "orig_id": 1414473}}, {"model": "metainfo.source", "pk": 13888, "fields": {"orig_filename": "Ilic-Oriovcanin_Luka_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414474}}, {"model": "metainfo.source", "pk": 13889, "fields": {"orig_filename": "Ilijasevic_Stjepan_1814_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414475}}, {"model": "metainfo.source", "pk": 13890, "fields": {"orig_filename": "Ilijic_Stjepko_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414476}}, {"model": "metainfo.source", "pk": 13891, "fields": {"orig_filename": "Illem_Franz-Josef-Georg_1865_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414477}}, {"model": "metainfo.source", "pk": 13892, "fields": {"orig_filename": "Illing_Vilma_1871_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28f.", "author": "", "orig_id": 1414478}}, {"model": "metainfo.source", "pk": 13893, "fields": {"orig_filename": "Illitsch_Alexander_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414479}}, {"model": "metainfo.source", "pk": 13894, "fields": {"orig_filename": "Illmer_Hans_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414482}}, {"model": "metainfo.source", "pk": 13895, "fields": {"orig_filename": "Illner_Karl_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414483}}, {"model": "metainfo.source", "pk": 13896, "fields": {"orig_filename": "Ilmer_Andreas_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414480}}, {"model": "metainfo.source", "pk": 13897, "fields": {"orig_filename": "Ilosvay-Nagy-Ilosva_Lajos_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29f.", "author": "", "orig_id": 1414484}}, {"model": "metainfo.source", "pk": 13898, "fields": {"orig_filename": "Ilwof_Franz_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30", "author": "", "orig_id": 1414485}}, {"model": "metainfo.source", "pk": 13899, "fields": {"orig_filename": "Imendoerffer_Benno_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30", "author": "", "orig_id": 1414486}}, {"model": "metainfo.source", "pk": 13900, "fields": {"orig_filename": "Imre_Sandor_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30f.", "author": "", "orig_id": 1414487}}, {"model": "metainfo.source", "pk": 13901, "fields": {"orig_filename": "Inama-Sternegg_Fanny_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414490}}, {"model": "metainfo.source", "pk": 13902, "fields": {"orig_filename": "Inama-Sternegg_Johann-Paul_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 32", "author": "", "orig_id": 1414562}}, {"model": "metainfo.source", "pk": 13903, "fields": {"orig_filename": "Inama-Sternegg_Karl-Theodor_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414564}}, {"model": "metainfo.source", "pk": 13904, "fields": {"orig_filename": "Inama-Sternegg_Karl_1871_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 32", "author": "", "orig_id": 1414563}}, {"model": "metainfo.source", "pk": 13905, "fields": {"orig_filename": "Inama_Adalbert_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414488}}, {"model": "metainfo.source", "pk": 13906, "fields": {"orig_filename": "Inama_Vigilio_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414489}}, {"model": "metainfo.source", "pk": 13907, "fields": {"orig_filename": "Inauen_Andreas_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 33", "author": "", "orig_id": 1414565}}, {"model": "metainfo.source", "pk": 13908, "fields": {"orig_filename": "Indra_Alois_1849_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 33f.", "author": "", "orig_id": 1414566}}, {"model": "metainfo.source", "pk": 13909, "fields": {"orig_filename": "Inffeld_Adolf_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414567}}, {"model": "metainfo.source", "pk": 13910, "fields": {"orig_filename": "Ingarden_Roman_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414568}}, {"model": "metainfo.source", "pk": 13911, "fields": {"orig_filename": "Ingerle_Rudolf-F_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414569}}, {"model": "metainfo.source", "pk": 13912, "fields": {"orig_filename": "Inghirami_Giovanni_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34f.", "author": "", "orig_id": 1414570}}, {"model": "metainfo.source", "pk": 13913, "fields": {"orig_filename": "Ingigian_Lukas_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414571}}, {"model": "metainfo.source", "pk": 13914, "fields": {"orig_filename": "Ingwer_Isidor_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414572}}, {"model": "metainfo.source", "pk": 13915, "fields": {"orig_filename": "Inlaender_Ludwig_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414573}}, {"model": "metainfo.source", "pk": 13916, "fields": {"orig_filename": "Innerhofer_Franz_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414574}}, {"model": "metainfo.source", "pk": 13917, "fields": {"orig_filename": "Innerhofer_Franz_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414576}}, {"model": "metainfo.source", "pk": 13918, "fields": {"orig_filename": "Innerhofer_Franz_1884_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414575}}, {"model": "metainfo.source", "pk": 13919, "fields": {"orig_filename": "Innerhofer_Johann_1837_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414577}}, {"model": "metainfo.source", "pk": 13920, "fields": {"orig_filename": "Innerkofler_Adolf_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414578}}, {"model": "metainfo.source", "pk": 13921, "fields": {"orig_filename": "Innerkofler_Christian_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414579}}, {"model": "metainfo.source", "pk": 13922, "fields": {"orig_filename": "Innerkofler_Franz_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414580}}, {"model": "metainfo.source", "pk": 13923, "fields": {"orig_filename": "Innerkofler_Johann-Jakob_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414581}}, {"model": "metainfo.source", "pk": 13924, "fields": {"orig_filename": "Horvat_Rudolf_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417397}}, {"model": "metainfo.source", "pk": 13925, "fields": {"orig_filename": "Horvat_Stephan_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417398}}, {"model": "metainfo.source", "pk": 13926, "fields": {"orig_filename": "Horwitz_Karl_1884_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431f.", "author": "", "orig_id": 1417407}}, {"model": "metainfo.source", "pk": 13927, "fields": {"orig_filename": "Horwitz_Willibald_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417409}}, {"model": "metainfo.source", "pk": 13928, "fields": {"orig_filename": "Horzalka_Johann_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417410}}, {"model": "metainfo.source", "pk": 13929, "fields": {"orig_filename": "Horzeyschy_Kaethe_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417411}}, {"model": "metainfo.source", "pk": 13930, "fields": {"orig_filename": "Hoschek_Fritz_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417482}}, {"model": "metainfo.source", "pk": 13931, "fields": {"orig_filename": "Hoschna_Karl_1876_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417484}}, {"model": "metainfo.source", "pk": 13932, "fields": {"orig_filename": "Hoser_Josef-Karl-Eduard_1770_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432f.", "author": "", "orig_id": 1417485}}, {"model": "metainfo.source", "pk": 13933, "fields": {"orig_filename": "Hossinger_Julius_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433", "author": "", "orig_id": 1417486}}, {"model": "metainfo.source", "pk": 13934, "fields": {"orig_filename": "Hossner_Josef_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433", "author": "", "orig_id": 1417487}}, {"model": "metainfo.source", "pk": 13935, "fields": {"orig_filename": "Hostasch_Josef_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417489}}, {"model": "metainfo.source", "pk": 13936, "fields": {"orig_filename": "Hostinsky_Otakar_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417491}}, {"model": "metainfo.source", "pk": 13937, "fields": {"orig_filename": "Host_Nicolaus-Thomas_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433f.", "author": "", "orig_id": 1417488}}, {"model": "metainfo.source", "pk": 13938, "fields": {"orig_filename": "Hotze_Friedrich_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417492}}, {"model": "metainfo.source", "pk": 13939, "fields": {"orig_filename": "Houdek_Vitezslav_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434f.", "author": "", "orig_id": 1417493}}, {"model": "metainfo.source", "pk": 13940, "fields": {"orig_filename": "Hovorka-Zderas_Oskar_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417495}}, {"model": "metainfo.source", "pk": 13941, "fields": {"orig_filename": "Hoyos-Sprinzenstein_Johann-Ernst_1779_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417497}}, {"model": "metainfo.source", "pk": 13942, "fields": {"orig_filename": "Hoyos-Sprinzenstein_Rudolf_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417498}}, {"model": "metainfo.source", "pk": 13943, "fields": {"orig_filename": "Hoyos_Alexander_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417496}}, {"model": "metainfo.source", "pk": 13944, "fields": {"orig_filename": "Hozhevar_Johann_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417499}}, {"model": "metainfo.source", "pk": 13945, "fields": {"orig_filename": "Hrabak_Josef_1833_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435f.", "author": "", "orig_id": 1417500}}, {"model": "metainfo.source", "pk": 13946, "fields": {"orig_filename": "Hrabovsky-Hrabova_Johann_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417501}}, {"model": "metainfo.source", "pk": 13947, "fields": {"orig_filename": "Hrachowina_Karl_1845_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417503}}, {"model": "metainfo.source", "pk": 13948, "fields": {"orig_filename": "Hrach_Ferdinand_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417502}}, {"model": "metainfo.source", "pk": 13949, "fields": {"orig_filename": "Hradeczky_Hermann_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436f.", "author": "", "orig_id": 1417504}}, {"model": "metainfo.source", "pk": 13950, "fields": {"orig_filename": "Hradeczky_Johann-Nep_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417575}}, {"model": "metainfo.source", "pk": 13951, "fields": {"orig_filename": "Hranilovic-Cvetasin_Hinko_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417577}}, {"model": "metainfo.source", "pk": 13952, "fields": {"orig_filename": "Hranilovic_Jovan_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417576}}, {"model": "metainfo.source", "pk": 13953, "fields": {"orig_filename": "Hrdina_Josef-Leopold_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417578}}, {"model": "metainfo.source", "pk": 13954, "fields": {"orig_filename": "Hrdlicka_Ales_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437f.", "author": "", "orig_id": 1417579}}, {"model": "metainfo.source", "pk": 13955, "fields": {"orig_filename": "Hreljanovic_Ivo_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 438", "author": "", "orig_id": 1417580}}, {"model": "metainfo.source", "pk": 13956, "fields": {"orig_filename": "Hren_Jakob_1830_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 438f.", "author": "", "orig_id": 1417581}}, {"model": "metainfo.source", "pk": 13957, "fields": {"orig_filename": "Hribar_Ivan_1851_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417582}}, {"model": "metainfo.source", "pk": 13958, "fields": {"orig_filename": "Hrimaly_Adalbert_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417583}}, {"model": "metainfo.source", "pk": 13959, "fields": {"orig_filename": "Hrncir_Thomas_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417584}}, {"model": "metainfo.source", "pk": 13960, "fields": {"orig_filename": "Hrnczyrz_Emma_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417585}}, {"model": "metainfo.source", "pk": 13961, "fields": {"orig_filename": "Hrodegh_Anton_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439f.", "author": "", "orig_id": 1417586}}, {"model": "metainfo.source", "pk": 13962, "fields": {"orig_filename": "Hromada_Anton_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417587}}, {"model": "metainfo.source", "pk": 13963, "fields": {"orig_filename": "Hromatko_Johann-Nep-Norbert_1783_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417590}}, {"model": "metainfo.source", "pk": 13964, "fields": {"orig_filename": "Hrovat_Ladislav_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440f.", "author": "", "orig_id": 1417592}}, {"model": "metainfo.source", "pk": 13965, "fields": {"orig_filename": "Hruby_Sergius-Josef_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2033381}}, {"model": "metainfo.source", "pk": 13966, "fields": {"orig_filename": "Hruschauer_Franz_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417593}}, {"model": "metainfo.source", "pk": 13967, "fields": {"orig_filename": "Hruschka_Annie_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417594}}, {"model": "metainfo.source", "pk": 13968, "fields": {"orig_filename": "Hruschka_Ella_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417595}}, {"model": "metainfo.source", "pk": 13969, "fields": {"orig_filename": "Hrussoczy_Marie_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417596}}, {"model": "metainfo.source", "pk": 13970, "fields": {"orig_filename": "Hruza_Ernst_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417597}}, {"model": "metainfo.source", "pk": 13971, "fields": {"orig_filename": "Hubad_Franc_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441f.", "author": "", "orig_id": 1417664}}, {"model": "metainfo.source", "pk": 13972, "fields": {"orig_filename": "Hubad_Matej_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417665}}, {"model": "metainfo.source", "pk": 13973, "fields": {"orig_filename": "Hubay_Jenoe_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417666}}, {"model": "metainfo.source", "pk": 13974, "fields": {"orig_filename": "Huber-Penig_Johann_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417680}}, {"model": "metainfo.source", "pk": 13975, "fields": {"orig_filename": "Huber-Penig_Paul_1771_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417681}}, {"model": "metainfo.source", "pk": 13976, "fields": {"orig_filename": "Huberman_Bronislav_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445f.", "author": "", "orig_id": 1417682}}, {"model": "metainfo.source", "pk": 13977, "fields": {"orig_filename": "Hubert_Josef_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417683}}, {"model": "metainfo.source", "pk": 13978, "fields": {"orig_filename": "Huber_Adolf_1874_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417667}}, {"model": "metainfo.source", "pk": 13979, "fields": {"orig_filename": "Huber_Alfons_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442f.", "author": "", "orig_id": 1417668}}, {"model": "metainfo.source", "pk": 13980, "fields": {"orig_filename": "Huber_Antonie_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443", "author": "", "orig_id": 1417670}}, {"model": "metainfo.source", "pk": 13981, "fields": {"orig_filename": "Huber_Anton_1768_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443", "author": "", "orig_id": 1417669}}, {"model": "metainfo.source", "pk": 13982, "fields": {"orig_filename": "Huber_Carl-Rudolf_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443f.", "author": "", "orig_id": 1417671}}, {"model": "metainfo.source", "pk": 13983, "fields": {"orig_filename": "Huber_Christian-Wilhelm_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417672}}, {"model": "metainfo.source", "pk": 13984, "fields": {"orig_filename": "Huber_Josef_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417673}}, {"model": "metainfo.source", "pk": 13985, "fields": {"orig_filename": "Huber_Josef_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417674}}, {"model": "metainfo.source", "pk": 13986, "fields": {"orig_filename": "Huber_Josef_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417675}}, {"model": "metainfo.source", "pk": 13987, "fields": {"orig_filename": "Huber_Leopold_1766_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417676}}, {"model": "metainfo.source", "pk": 13988, "fields": {"orig_filename": "Huber_Maximilian_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417677}}, {"model": "metainfo.source", "pk": 13989, "fields": {"orig_filename": "Huber_Nikolaus_1833_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417678}}, {"model": "metainfo.source", "pk": 13990, "fields": {"orig_filename": "Hudak_Ede-Agost_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417684}}, {"model": "metainfo.source", "pk": 13991, "fields": {"orig_filename": "Hudecek_Antonin_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417686}}, {"model": "metainfo.source", "pk": 13992, "fields": {"orig_filename": "Hudec_Jozef_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417685}}, {"model": "metainfo.source", "pk": 13993, "fields": {"orig_filename": "Hudelist_Josef_1759_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446f.", "author": "", "orig_id": 1417687}}, {"model": "metainfo.source", "pk": 13994, "fields": {"orig_filename": "Hudetz_Josef_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417758}}, {"model": "metainfo.source", "pk": 13995, "fields": {"orig_filename": "Hueber_Anton_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1453704}}, {"model": "metainfo.source", "pk": 13996, "fields": {"orig_filename": "Hueber_Hans_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417759}}, {"model": "metainfo.source", "pk": 13997, "fields": {"orig_filename": "Hueber_Johann-Nep_1802_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1420822}}, {"model": "metainfo.source", "pk": 13998, "fields": {"orig_filename": "Huebler_Franz_1770_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415500}}, {"model": "metainfo.source", "pk": 13999, "fields": {"orig_filename": "Huebl_Albert_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417760}}, {"model": "metainfo.source", "pk": 14000, "fields": {"orig_filename": "Huebl_Arthur_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447f.", "author": "", "orig_id": 1417761}}, {"model": "metainfo.source", "pk": 14001, "fields": {"orig_filename": "Huebl_Harald-Hans_1913_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 448", "author": "", "orig_id": 1417762}}, {"model": "metainfo.source", "pk": 14002, "fields": {"orig_filename": "Huebl_Heinrich_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415499}}, {"model": "metainfo.source", "pk": 14003, "fields": {"orig_filename": "Huebmer_Georg_1755_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415501}}, {"model": "metainfo.source", "pk": 14004, "fields": {"orig_filename": "Huebner_Anastasius_1789_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1f.", "author": "", "orig_id": 1415502}}, {"model": "metainfo.source", "pk": 14005, "fields": {"orig_filename": "Huebner_Josef-Alexander_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415503}}, {"model": "metainfo.source", "pk": 14006, "fields": {"orig_filename": "Huebner_Ludwig_1839_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415504}}, {"model": "metainfo.source", "pk": 14007, "fields": {"orig_filename": "Huebner_Maria_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415505}}, {"model": "metainfo.source", "pk": 14008, "fields": {"orig_filename": "Huebsch_Adolph_1830_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2f.", "author": "", "orig_id": 1415506}}, {"model": "metainfo.source", "pk": 14009, "fields": {"orig_filename": "Huegel_Carl-Alexander_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415507}}, {"model": "metainfo.source", "pk": 14010, "fields": {"orig_filename": "Huegel_Clemens-Wenzel_1792_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415508}}, {"model": "metainfo.source", "pk": 14011, "fields": {"orig_filename": "Huegel_Eduard_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415509}}, {"model": "metainfo.source", "pk": 14012, "fields": {"orig_filename": "Huelgerth_Heribert_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3f.", "author": "", "orig_id": 1415579}}, {"model": "metainfo.source", "pk": 14013, "fields": {"orig_filename": "Huelgerth_Ludwig_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4", "author": "", "orig_id": 1415580}}, {"model": "metainfo.source", "pk": 14014, "fields": {"orig_filename": "Huemer_Georg_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4", "author": "", "orig_id": 1415581}}, {"model": "metainfo.source", "pk": 14015, "fields": {"orig_filename": "Huemer_Hans_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4f.", "author": "", "orig_id": 1415582}}, {"model": "metainfo.source", "pk": 14016, "fields": {"orig_filename": "Huemer_Johann_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5", "author": "", "orig_id": 1415583}}, {"model": "metainfo.source", "pk": 14017, "fields": {"orig_filename": "Huerth_Theobald_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5", "author": "", "orig_id": 1415584}}, {"model": "metainfo.source", "pk": 14018, "fields": {"orig_filename": "Huesing_Georg_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5f.", "author": "", "orig_id": 1415585}}, {"model": "metainfo.source", "pk": 14019, "fields": {"orig_filename": "Hueter_Heinrich_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6", "author": "", "orig_id": 1415586}}, {"model": "metainfo.source", "pk": 14020, "fields": {"orig_filename": "Huettenbrenner_Anselm_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6", "author": "", "orig_id": 1415587}}, {"model": "metainfo.source", "pk": 14021, "fields": {"orig_filename": "Huettenbrenner_Erich_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6f.", "author": "", "orig_id": 1415588}}, {"model": "metainfo.source", "pk": 14022, "fields": {"orig_filename": "Huetter_Elias_1774_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 7", "author": "", "orig_id": 1415589}}, {"model": "metainfo.source", "pk": 14023, "fields": {"orig_filename": "Huetter_Emil_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 7", "author": "", "orig_id": 1415590}}, {"model": "metainfo.source", "pk": 14024, "fields": {"orig_filename": "Hugelmann_Karl_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415591}}, {"model": "metainfo.source", "pk": 14025, "fields": {"orig_filename": "Hula_Anton_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415594}}, {"model": "metainfo.source", "pk": 14026, "fields": {"orig_filename": "Hula_Eduard_1862_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415595}}, {"model": "metainfo.source", "pk": 14027, "fields": {"orig_filename": "Hollitzer_Carl_1831_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417011}}, {"model": "metainfo.source", "pk": 14028, "fields": {"orig_filename": "Hollosy_Justinian_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417015}}, {"model": "metainfo.source", "pk": 14029, "fields": {"orig_filename": "Hollosy_Simon_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417016}}, {"model": "metainfo.source", "pk": 14030, "fields": {"orig_filename": "Hollos_Laszlo_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403f.", "author": "", "orig_id": 1417014}}, {"model": "metainfo.source", "pk": 14031, "fields": {"orig_filename": "Hollo_Barnabas_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417012}}, {"model": "metainfo.source", "pk": 14032, "fields": {"orig_filename": "Hollo_Ludwig_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417013}}, {"model": "metainfo.source", "pk": 14033, "fields": {"orig_filename": "Hollpein_Heinrich_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417017}}, {"model": "metainfo.source", "pk": 14034, "fields": {"orig_filename": "Hollschek_Karl_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417018}}, {"model": "metainfo.source", "pk": 14035, "fields": {"orig_filename": "Holly_Jan_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404f.", "author": "", "orig_id": 1417019}}, {"model": "metainfo.source", "pk": 14036, "fields": {"orig_filename": "Holl_Lukas_1903_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417006}}, {"model": "metainfo.source", "pk": 14037, "fields": {"orig_filename": "Holl_Moritz_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417007}}, {"model": "metainfo.source", "pk": 14038, "fields": {"orig_filename": "Holtei_Luise_1800_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417021}}, {"model": "metainfo.source", "pk": 14039, "fields": {"orig_filename": "Holter_Markus_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417022}}, {"model": "metainfo.source", "pk": 14040, "fields": {"orig_filename": "Holter_Wenzel_1827_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405f.", "author": "", "orig_id": 1417023}}, {"model": "metainfo.source", "pk": 14041, "fields": {"orig_filename": "Holuby_Josef-Ludwig_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406f.", "author": "", "orig_id": 1417027}}, {"model": "metainfo.source", "pk": 14042, "fields": {"orig_filename": "Holub_Emil_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417024}}, {"model": "metainfo.source", "pk": 14043, "fields": {"orig_filename": "Holub_Georg_1861_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417025}}, {"model": "metainfo.source", "pk": 14044, "fields": {"orig_filename": "Holub_Karl_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417026}}, {"model": "metainfo.source", "pk": 14045, "fields": {"orig_filename": "Holy_Josef_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417101}}, {"model": "metainfo.source", "pk": 14046, "fields": {"orig_filename": "Holzapfel_Joseph_1815_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417103}}, {"model": "metainfo.source", "pk": 14047, "fields": {"orig_filename": "Holzapfel_Rudolf-Maria_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407f.", "author": "", "orig_id": 1417104}}, {"model": "metainfo.source", "pk": 14048, "fields": {"orig_filename": "Holzer_Joseph_1824_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408", "author": "", "orig_id": 1417105}}, {"model": "metainfo.source", "pk": 14049, "fields": {"orig_filename": "Holzgethan_Georg_1799_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408", "author": "", "orig_id": 1417106}}, {"model": "metainfo.source", "pk": 14050, "fields": {"orig_filename": "Holzgethan_Ludwig_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408f.", "author": "", "orig_id": 1417107}}, {"model": "metainfo.source", "pk": 14051, "fields": {"orig_filename": "Holzhammer_Josef_1850_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 409", "author": "", "orig_id": 1417108}}, {"model": "metainfo.source", "pk": 14052, "fields": {"orig_filename": "Holzhausen_Adolf_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 409", "author": "", "orig_id": 1417109}}, {"model": "metainfo.source", "pk": 14053, "fields": {"orig_filename": "Holzhausen_Fritz_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1417110}}, {"model": "metainfo.source", "pk": 14054, "fields": {"orig_filename": "Holzinger-Janaburg_Ferdinand_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1417111}}, {"model": "metainfo.source", "pk": 14055, "fields": {"orig_filename": "Holzinger-Weidich_Carl_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410f.", "author": "", "orig_id": 1417112}}, {"model": "metainfo.source", "pk": 14056, "fields": {"orig_filename": "Holzinger_Rudolf_1898_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1420820}}, {"model": "metainfo.source", "pk": 14057, "fields": {"orig_filename": "Holzknecht-Hort_Robert_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417114}}, {"model": "metainfo.source", "pk": 14058, "fields": {"orig_filename": "Holzknecht_Guido_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417113}}, {"model": "metainfo.source", "pk": 14059, "fields": {"orig_filename": "Holzmann_Michael_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417115}}, {"model": "metainfo.source", "pk": 14060, "fields": {"orig_filename": "Holz_Vatroslav_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417102}}, {"model": "metainfo.source", "pk": 14061, "fields": {"orig_filename": "Homann-Herimberg_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411f.", "author": "", "orig_id": 1417116}}, {"model": "metainfo.source", "pk": 14062, "fields": {"orig_filename": "Homberg_Herz_1749_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417117}}, {"model": "metainfo.source", "pk": 14063, "fields": {"orig_filename": "Homma_Hans_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417118}}, {"model": "metainfo.source", "pk": 14064, "fields": {"orig_filename": "Homolatsch_Josef_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417119}}, {"model": "metainfo.source", "pk": 14065, "fields": {"orig_filename": "Homolka_Benno_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412f.", "author": "", "orig_id": 1417120}}, {"model": "metainfo.source", "pk": 14066, "fields": {"orig_filename": "Honauer_Franz_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417121}}, {"model": "metainfo.source", "pk": 14067, "fields": {"orig_filename": "Honeder_Karl_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417122}}, {"model": "metainfo.source", "pk": 14068, "fields": {"orig_filename": "Honigberger_Johann-Martin_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417123}}, {"model": "metainfo.source", "pk": 14069, "fields": {"orig_filename": "Hontschik_Henriette_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413f.", "author": "", "orig_id": 1417124}}, {"model": "metainfo.source", "pk": 14070, "fields": {"orig_filename": "Hoor-Horocz_Karl_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414", "author": "", "orig_id": 1417125}}, {"model": "metainfo.source", "pk": 14071, "fields": {"orig_filename": "Hopfen_Franz_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414", "author": "", "orig_id": 1417196}}, {"model": "metainfo.source", "pk": 14072, "fields": {"orig_filename": "Hopffer_Albert_1854_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414f.", "author": "", "orig_id": 1417197}}, {"model": "metainfo.source", "pk": 14073, "fields": {"orig_filename": "Hopfgartner_Karl_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417198}}, {"model": "metainfo.source", "pk": 14074, "fields": {"orig_filename": "Hopfner_Friedrich_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417199}}, {"model": "metainfo.source", "pk": 14075, "fields": {"orig_filename": "Hopfner_Isidor_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417200}}, {"model": "metainfo.source", "pk": 14076, "fields": {"orig_filename": "Hopfner_Theodor_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415f.", "author": "", "orig_id": 1417201}}, {"model": "metainfo.source", "pk": 14077, "fields": {"orig_filename": "Hoppe_Alfred_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416f.", "author": "", "orig_id": 1417204}}, {"model": "metainfo.source", "pk": 14078, "fields": {"orig_filename": "Hoppe_Paul_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417205}}, {"model": "metainfo.source", "pk": 14079, "fields": {"orig_filename": "Hopp_Franz_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416", "author": "", "orig_id": 1417202}}, {"model": "metainfo.source", "pk": 14080, "fields": {"orig_filename": "Hopp_Friedrich-Ernst_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416", "author": "", "orig_id": 1417203}}, {"model": "metainfo.source", "pk": 14081, "fields": {"orig_filename": "Horak_Eduard_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417207}}, {"model": "metainfo.source", "pk": 14082, "fields": {"orig_filename": "Horak_Johann-Nep_1815_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417208}}, {"model": "metainfo.source", "pk": 14083, "fields": {"orig_filename": "Horak_Wenzel-Emanuel_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417f.", "author": "", "orig_id": 1417209}}, {"model": "metainfo.source", "pk": 14084, "fields": {"orig_filename": "Horanszky_Nandor_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418", "author": "", "orig_id": 1417210}}, {"model": "metainfo.source", "pk": 14085, "fields": {"orig_filename": "Horawitz_Adalbert_1840_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418", "author": "", "orig_id": 1417211}}, {"model": "metainfo.source", "pk": 14086, "fields": {"orig_filename": "Hora_Engelbert_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417206}}, {"model": "metainfo.source", "pk": 14087, "fields": {"orig_filename": "Horbaczewski_Johann_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418f.", "author": "", "orig_id": 1417212}}, {"model": "metainfo.source", "pk": 14088, "fields": {"orig_filename": "Horcicka_Adalbert_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417213}}, {"model": "metainfo.source", "pk": 14089, "fields": {"orig_filename": "Horcicka_Franz_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417214}}, {"model": "metainfo.source", "pk": 14090, "fields": {"orig_filename": "Horky_Josef_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417215}}, {"model": "metainfo.source", "pk": 14091, "fields": {"orig_filename": "Hormayr-Hortenburg_Josef_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419ff.", "author": "", "orig_id": 1417216}}, {"model": "metainfo.source", "pk": 14092, "fields": {"orig_filename": "Hormuzaki_Constantin_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417217}}, {"model": "metainfo.source", "pk": 14093, "fields": {"orig_filename": "Hormuzaki_Eudoxius_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417289}}, {"model": "metainfo.source", "pk": 14094, "fields": {"orig_filename": "Hornbostel_August-Gottlieb_1786_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422", "author": "", "orig_id": 1417293}}, {"model": "metainfo.source", "pk": 14095, "fields": {"orig_filename": "Hornbostel_Carl_1825_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422f.", "author": "", "orig_id": 1417294}}, {"model": "metainfo.source", "pk": 14096, "fields": {"orig_filename": "Hornbostel_Christian-Georg_1778_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417295}}, {"model": "metainfo.source", "pk": 14097, "fields": {"orig_filename": "Hornbostel_Erich_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417296}}, {"model": "metainfo.source", "pk": 14098, "fields": {"orig_filename": "Hornbostel_Helene_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417297}}, {"model": "metainfo.source", "pk": 14099, "fields": {"orig_filename": "Hornbostel_Theodor-Friedrich_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423f.", "author": "", "orig_id": 1417298}}, {"model": "metainfo.source", "pk": 14100, "fields": {"orig_filename": "Horner_Johann_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417299}}, {"model": "metainfo.source", "pk": 14101, "fields": {"orig_filename": "Hornich_Karl_1852_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417300}}, {"model": "metainfo.source", "pk": 14102, "fields": {"orig_filename": "Hornich_Rudolf_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417301}}, {"model": "metainfo.source", "pk": 14103, "fields": {"orig_filename": "Hornig_Johann_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424f.", "author": "", "orig_id": 1417302}}, {"model": "metainfo.source", "pk": 14104, "fields": {"orig_filename": "Hornischer_Fanni_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417303}}, {"model": "metainfo.source", "pk": 14105, "fields": {"orig_filename": "Hornoeck_Franz-Xaver_1751_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417304}}, {"model": "metainfo.source", "pk": 14106, "fields": {"orig_filename": "Hornstein_Karl_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417305}}, {"model": "metainfo.source", "pk": 14107, "fields": {"orig_filename": "Horn_Johann-Philipp_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417290}}, {"model": "metainfo.source", "pk": 14108, "fields": {"orig_filename": "Horn_Kamillo_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421f.", "author": "", "orig_id": 1417291}}, {"model": "metainfo.source", "pk": 14109, "fields": {"orig_filename": "Horn_Uffo-Daniel_1817_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422", "author": "", "orig_id": 1417292}}, {"model": "metainfo.source", "pk": 14110, "fields": {"orig_filename": "Horowitz_Lazar_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425f.", "author": "", "orig_id": 1417306}}, {"model": "metainfo.source", "pk": 14111, "fields": {"orig_filename": "Horowitz_Leopold_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417307}}, {"model": "metainfo.source", "pk": 14112, "fields": {"orig_filename": "Horowitz_Samuel_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417308}}, {"model": "metainfo.source", "pk": 14113, "fields": {"orig_filename": "Horschelt_Friedrich_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417309}}, {"model": "metainfo.source", "pk": 14114, "fields": {"orig_filename": "Horschinek_Anton_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426f.", "author": "", "orig_id": 1417310}}, {"model": "metainfo.source", "pk": 14115, "fields": {"orig_filename": "Horsetzky-Hornthal_Adolf_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 427", "author": "", "orig_id": 1417311}}, {"model": "metainfo.source", "pk": 14116, "fields": {"orig_filename": "Horsetzky-Hornthal_Ernst_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 427f.", "author": "", "orig_id": 1417312}}, {"model": "metainfo.source", "pk": 14117, "fields": {"orig_filename": "Horsetzky-Hornthal_Karl_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428", "author": "", "orig_id": 1417313}}, {"model": "metainfo.source", "pk": 14118, "fields": {"orig_filename": "Horsetzky-Hornthal_Melanie_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428", "author": "", "orig_id": 1417314}}, {"model": "metainfo.source", "pk": 14119, "fields": {"orig_filename": "Horsky-Horskysfeld_Franz_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428f.", "author": "", "orig_id": 1417389}}, {"model": "metainfo.source", "pk": 14120, "fields": {"orig_filename": "Horst_Franz_1862_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417391}}, {"model": "metainfo.source", "pk": 14121, "fields": {"orig_filename": "Horst_Julius_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417393}}, {"model": "metainfo.source", "pk": 14122, "fields": {"orig_filename": "Hortis_Attilio_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417394}}, {"model": "metainfo.source", "pk": 14123, "fields": {"orig_filename": "Horvat-Gottlieb_Anka_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417399}}, {"model": "metainfo.source", "pk": 14124, "fields": {"orig_filename": "Horvath_Cyrill_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417401}}, {"model": "metainfo.source", "pk": 14125, "fields": {"orig_filename": "Horvath_Geza_1847_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430f.", "author": "", "orig_id": 1417402}}, {"model": "metainfo.source", "pk": 14126, "fields": {"orig_filename": "Horvath_Michael_1809_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431", "author": "", "orig_id": 1417405}}, {"model": "metainfo.source", "pk": 14127, "fields": {"orig_filename": "Horvath_Oedoen_1901_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431", "author": "", "orig_id": 1417406}}, {"model": "metainfo.source", "pk": 14128, "fields": {"orig_filename": "Horvat_Franjo_1876_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417395}}, {"model": "metainfo.source", "pk": 14129, "fields": {"orig_filename": "Horvat_Karlo_1874_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429f.", "author": "", "orig_id": 1417396}}, {"model": "metainfo.source", "pk": 14130, "fields": {"orig_filename": "Hofbauer_Ferdinand_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418100}}, {"model": "metainfo.source", "pk": 14131, "fields": {"orig_filename": "Hofbauer_Josef_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418101}}, {"model": "metainfo.source", "pk": 14132, "fields": {"orig_filename": "Hofbauer_Josef_1886_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418102}}, {"model": "metainfo.source", "pk": 14133, "fields": {"orig_filename": "Hofbauer_Karl_1829_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418103}}, {"model": "metainfo.source", "pk": 14134, "fields": {"orig_filename": "Hofbauer_Klemens-Maria_1751_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371f.", "author": "", "orig_id": 1418104}}, {"model": "metainfo.source", "pk": 14135, "fields": {"orig_filename": "Hofbauer_Louis_1889_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372", "author": "", "orig_id": 1418105}}, {"model": "metainfo.source", "pk": 14136, "fields": {"orig_filename": "Hofbauer_Ludwig_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372", "author": "", "orig_id": 1418106}}, {"model": "metainfo.source", "pk": 14137, "fields": {"orig_filename": "Hofer_Franz_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372f.", "author": "", "orig_id": 1418107}}, {"model": "metainfo.source", "pk": 14138, "fields": {"orig_filename": "Hofer_Franz_1885_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418108}}, {"model": "metainfo.source", "pk": 14139, "fields": {"orig_filename": "Hofer_Gottfried_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418109}}, {"model": "metainfo.source", "pk": 14140, "fields": {"orig_filename": "Hofer_Ignaz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418110}}, {"model": "metainfo.source", "pk": 14141, "fields": {"orig_filename": "Hofer_Johann_1757_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418111}}, {"model": "metainfo.source", "pk": 14142, "fields": {"orig_filename": "Hofer_Josef_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373f.", "author": "", "orig_id": 1418112}}, {"model": "metainfo.source", "pk": 14143, "fields": {"orig_filename": "Hofer_Josef_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418113}}, {"model": "metainfo.source", "pk": 14144, "fields": {"orig_filename": "Hofer_Joseph-Anton_1742_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418114}}, {"model": "metainfo.source", "pk": 14145, "fields": {"orig_filename": "Hofer_Josepha_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418115}}, {"model": "metainfo.source", "pk": 14146, "fields": {"orig_filename": "Hofer_Otto_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418116}}, {"model": "metainfo.source", "pk": 14147, "fields": {"orig_filename": "Hofer_Sigi_1878_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436644}}, {"model": "metainfo.source", "pk": 14148, "fields": {"orig_filename": "Hoffer_Eduard_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418118}}, {"model": "metainfo.source", "pk": 14149, "fields": {"orig_filename": "Hoffer_Johann_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418119}}, {"model": "metainfo.source", "pk": 14150, "fields": {"orig_filename": "Hoffer_Karl_1824_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418120}}, {"model": "metainfo.source", "pk": 14151, "fields": {"orig_filename": "Hoffinger_Johann-Bapt_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418121}}, {"model": "metainfo.source", "pk": 14152, "fields": {"orig_filename": "Hoffmann-Canstein_Olga_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 379f.", "author": "", "orig_id": 1416731}}, {"model": "metainfo.source", "pk": 14153, "fields": {"orig_filename": "Hoffmann_Cajetan_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418122}}, {"model": "metainfo.source", "pk": 14154, "fields": {"orig_filename": "Hoffmann_Camill_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418123}}, {"model": "metainfo.source", "pk": 14155, "fields": {"orig_filename": "Hoffmann_Emanuel_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418124}}, {"model": "metainfo.source", "pk": 14156, "fields": {"orig_filename": "Hoffmann_Johann-Peter_1764_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377", "author": "", "orig_id": 1418126}}, {"model": "metainfo.source", "pk": 14157, "fields": {"orig_filename": "Hoffmann_Johann_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376f.", "author": "", "orig_id": 1418125}}, {"model": "metainfo.source", "pk": 14158, "fields": {"orig_filename": "Hoffmann_Josef-Raimund_1823_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416726}}, {"model": "metainfo.source", "pk": 14159, "fields": {"orig_filename": "Hoffmann_Josef_1831_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377", "author": "", "orig_id": 1418127}}, {"model": "metainfo.source", "pk": 14160, "fields": {"orig_filename": "Hoffmann_Josef_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377f.", "author": "", "orig_id": 1416725}}, {"model": "metainfo.source", "pk": 14161, "fields": {"orig_filename": "Hoffmann_Karl_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416727}}, {"model": "metainfo.source", "pk": 14162, "fields": {"orig_filename": "Hoffmann_Nina_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416728}}, {"model": "metainfo.source", "pk": 14163, "fields": {"orig_filename": "Hoffmann_Richard-Adolf_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378f.", "author": "", "orig_id": 1416729}}, {"model": "metainfo.source", "pk": 14164, "fields": {"orig_filename": "Hoffmann_Robert_1835_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 379", "author": "", "orig_id": 1416730}}, {"model": "metainfo.source", "pk": 14165, "fields": {"orig_filename": "Hofmann-Aspernburg_Edmund_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416824}}, {"model": "metainfo.source", "pk": 14166, "fields": {"orig_filename": "Hofmann-Hofmannsthal_Hugo_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 385ff.", "author": "", "orig_id": 1416825}}, {"model": "metainfo.source", "pk": 14167, "fields": {"orig_filename": "Hofmann-Hofmannsthal_Isaak-Loew_1759_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416826}}, {"model": "metainfo.source", "pk": 14168, "fields": {"orig_filename": "Hofmann-Wellenhof_Viktor_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416827}}, {"model": "metainfo.source", "pk": 14169, "fields": {"orig_filename": "Hofmann_Adolf_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416732}}, {"model": "metainfo.source", "pk": 14170, "fields": {"orig_filename": "Hofmann_Anton-Adalbert_1881_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416733}}, {"model": "metainfo.source", "pk": 14171, "fields": {"orig_filename": "Hofmann_Eduard_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416734}}, {"model": "metainfo.source", "pk": 14172, "fields": {"orig_filename": "Hofmann_Emil_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380f.", "author": "", "orig_id": 1416735}}, {"model": "metainfo.source", "pk": 14173, "fields": {"orig_filename": "Hofmann_Franz-Bruno_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416737}}, {"model": "metainfo.source", "pk": 14174, "fields": {"orig_filename": "Hofmann_Franz_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416736}}, {"model": "metainfo.source", "pk": 14175, "fields": {"orig_filename": "Hofmann_Josef_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416738}}, {"model": "metainfo.source", "pk": 14176, "fields": {"orig_filename": "Hofmann_Joseph-Anton-Vincenz_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381f.", "author": "", "orig_id": 1416739}}, {"model": "metainfo.source", "pk": 14177, "fields": {"orig_filename": "Hofmann_Julius_1840_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416740}}, {"model": "metainfo.source", "pk": 14178, "fields": {"orig_filename": "Hofmann_Karl-Berthold_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382f.", "author": "", "orig_id": 1416744}}, {"model": "metainfo.source", "pk": 14179, "fields": {"orig_filename": "Hofmann_Karl_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416741}}, {"model": "metainfo.source", "pk": 14180, "fields": {"orig_filename": "Hofmann_Karl_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416742}}, {"model": "metainfo.source", "pk": 14181, "fields": {"orig_filename": "Hofmann_Karl_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416743}}, {"model": "metainfo.source", "pk": 14182, "fields": {"orig_filename": "Hofmann_Kleophas_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 383", "author": "", "orig_id": 1416745}}, {"model": "metainfo.source", "pk": 14183, "fields": {"orig_filename": "Hofmann_Leopold_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 383f.", "author": "", "orig_id": 1416746}}, {"model": "metainfo.source", "pk": 14184, "fields": {"orig_filename": "Hofmann_Martha_1895_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1449603}}, {"model": "metainfo.source", "pk": 14185, "fields": {"orig_filename": "Hofmann_Michael_1860_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416747}}, {"model": "metainfo.source", "pk": 14186, "fields": {"orig_filename": "Hofmann_Ottokar_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416822}}, {"model": "metainfo.source", "pk": 14187, "fields": {"orig_filename": "Hofmeister_Franz_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416829}}, {"model": "metainfo.source", "pk": 14188, "fields": {"orig_filename": "Hofmokl_Johann-Eduard_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387f.", "author": "", "orig_id": 1416830}}, {"model": "metainfo.source", "pk": 14189, "fields": {"orig_filename": "Hofner_Otto_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388", "author": "", "orig_id": 1416831}}, {"model": "metainfo.source", "pk": 14190, "fields": {"orig_filename": "Hofstaedter_Gotthard_1826_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388", "author": "", "orig_id": 1416832}}, {"model": "metainfo.source", "pk": 14191, "fields": {"orig_filename": "Hofzinser_Johann-Nep_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388f.", "author": "", "orig_id": 1416834}}, {"model": "metainfo.source", "pk": 14192, "fields": {"orig_filename": "Hoheisel_Konrad_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389", "author": "", "orig_id": 1416833}}, {"model": "metainfo.source", "pk": 14193, "fields": {"orig_filename": "Hoheisel_Marie_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389", "author": "", "orig_id": 1416835}}, {"model": "metainfo.source", "pk": 14194, "fields": {"orig_filename": "Hohenberger_Franz_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389f.", "author": "", "orig_id": 1416837}}, {"model": "metainfo.source", "pk": 14195, "fields": {"orig_filename": "Hohenbruck_Priska_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390", "author": "", "orig_id": 1416838}}, {"model": "metainfo.source", "pk": 14196, "fields": {"orig_filename": "Hohenbuehel_Ludwig_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390", "author": "", "orig_id": 1416839}}, {"model": "metainfo.source", "pk": 14197, "fields": {"orig_filename": "Hohenegger_Agapit_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390f.", "author": "", "orig_id": 1416840}}, {"model": "metainfo.source", "pk": 14198, "fields": {"orig_filename": "Hohenegger_Ludwig_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391", "author": "", "orig_id": 1416841}}, {"model": "metainfo.source", "pk": 14199, "fields": {"orig_filename": "Hohenfels-Berger_Stella_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391", "author": "", "orig_id": 1416842}}, {"model": "metainfo.source", "pk": 14200, "fields": {"orig_filename": "Hohenleitner_Fridolin_1883_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391f.", "author": "", "orig_id": 1416844}}, {"model": "metainfo.source", "pk": 14201, "fields": {"orig_filename": "Hohenlohe-Ingelfingen_Friedrich-Karl-Wilhelm_1752_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392", "author": "", "orig_id": 1416845}}, {"model": "metainfo.source", "pk": 14202, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Gottfried_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392", "author": "", "orig_id": 1416911}}, {"model": "metainfo.source", "pk": 14203, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konrad_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392f.", "author": "", "orig_id": 1416912}}, {"model": "metainfo.source", "pk": 14204, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konstantin_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 393f.", "author": "", "orig_id": 1416913}}, {"model": "metainfo.source", "pk": 14205, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konstantin_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 394", "author": "", "orig_id": 1416914}}, {"model": "metainfo.source", "pk": 14206, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Marie_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 394f.", "author": "", "orig_id": 1416915}}, {"model": "metainfo.source", "pk": 14207, "fields": {"orig_filename": "Hohenlohe-Waldenburg-Schillingsfuerst_Alexander_1794_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 395", "author": "", "orig_id": 1416916}}, {"model": "metainfo.source", "pk": 14208, "fields": {"orig_filename": "Hohenwart_Franz-Josef-Hannibal_1771_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 395f.", "author": "", "orig_id": 1416917}}, {"model": "metainfo.source", "pk": 14209, "fields": {"orig_filename": "Hohenwart_Karl-Sigmund_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 396", "author": "", "orig_id": 1416918}}, {"model": "metainfo.source", "pk": 14210, "fields": {"orig_filename": "Hohenwart_Sigismund_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 396f.", "author": "", "orig_id": 1416919}}, {"model": "metainfo.source", "pk": 14211, "fields": {"orig_filename": "Hohenwart_Sigmund-Anton_1730_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 397", "author": "", "orig_id": 1416920}}, {"model": "metainfo.source", "pk": 14212, "fields": {"orig_filename": "Hohenzollern-Hechingen_Friedrich-Franz-Xaver_1757_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 397f.", "author": "", "orig_id": 1416921}}, {"model": "metainfo.source", "pk": 14213, "fields": {"orig_filename": "Hohlbaum_Alois_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416922}}, {"model": "metainfo.source", "pk": 14214, "fields": {"orig_filename": "Hohler_Emmerich-Thomas_1781_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416923}}, {"model": "metainfo.source", "pk": 14215, "fields": {"orig_filename": "Hohlfeld_Dora_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416924}}, {"model": "metainfo.source", "pk": 14216, "fields": {"orig_filename": "Hoic_Ivan_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416925}}, {"model": "metainfo.source", "pk": 14217, "fields": {"orig_filename": "Holarek_Emil_1867_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398f.", "author": "", "orig_id": 1416926}}, {"model": "metainfo.source", "pk": 14218, "fields": {"orig_filename": "Holaus_Maximilian_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399", "author": "", "orig_id": 1416928}}, {"model": "metainfo.source", "pk": 14219, "fields": {"orig_filename": "Holaus_Simon_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399", "author": "", "orig_id": 1416927}}, {"model": "metainfo.source", "pk": 14220, "fields": {"orig_filename": "Holbein-Holbeinsberg_Franz-Ignaz_1779_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399f.", "author": "", "orig_id": 1416929}}, {"model": "metainfo.source", "pk": 14221, "fields": {"orig_filename": "Holczabek_Johann-Wilhelm_1843_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1420823}}, {"model": "metainfo.source", "pk": 14222, "fields": {"orig_filename": "Holenia_Romuald_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416930}}, {"model": "metainfo.source", "pk": 14223, "fields": {"orig_filename": "Holetschek_Johann_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416931}}, {"model": "metainfo.source", "pk": 14224, "fields": {"orig_filename": "Holitscher_Arthur_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416932}}, {"model": "metainfo.source", "pk": 14225, "fields": {"orig_filename": "Holitscher_Philipp_1822_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1416933}}, {"model": "metainfo.source", "pk": 14226, "fields": {"orig_filename": "Holjac_Janko_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417005}}, {"model": "metainfo.source", "pk": 14227, "fields": {"orig_filename": "Hollederer_Johann_1783_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401f.", "author": "", "orig_id": 1417008}}, {"model": "metainfo.source", "pk": 14228, "fields": {"orig_filename": "Hollenstein_Stephanie_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 402", "author": "", "orig_id": 1417009}}, {"model": "metainfo.source", "pk": 14229, "fields": {"orig_filename": "Holler_Anton_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 402f.", "author": "", "orig_id": 1417010}}, {"model": "metainfo.source", "pk": 14230, "fields": {"orig_filename": "Hollitzer_Carl-Leopold_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1420821}}, {"model": "metainfo.source", "pk": 14231, "fields": {"orig_filename": "Hitzl_Franz-De-Paula_1738_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339", "author": "", "orig_id": 1417733}}, {"model": "metainfo.source", "pk": 14232, "fields": {"orig_filename": "Hladnik_Franz_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339f.", "author": "", "orig_id": 1417734}}, {"model": "metainfo.source", "pk": 14233, "fields": {"orig_filename": "Hladnik_Ignaz_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417735}}, {"model": "metainfo.source", "pk": 14234, "fields": {"orig_filename": "Hlasiwetz_Heinrich_1825_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417736}}, {"model": "metainfo.source", "pk": 14235, "fields": {"orig_filename": "Hlatky_Eduard_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417737}}, {"model": "metainfo.source", "pk": 14236, "fields": {"orig_filename": "Hlavacek_Anton_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417739}}, {"model": "metainfo.source", "pk": 14237, "fields": {"orig_filename": "Hlava_Jaroslav_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417738}}, {"model": "metainfo.source", "pk": 14238, "fields": {"orig_filename": "Hlavka_Josef_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417740}}, {"model": "metainfo.source", "pk": 14239, "fields": {"orig_filename": "Hlawaczek_Eduard_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341f.", "author": "", "orig_id": 1417741}}, {"model": "metainfo.source", "pk": 14240, "fields": {"orig_filename": "Hlawati_Franz_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417742}}, {"model": "metainfo.source", "pk": 14241, "fields": {"orig_filename": "Hlawatsch_Karl-Ignatz_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128091}}, {"model": "metainfo.source", "pk": 14242, "fields": {"orig_filename": "Hlawatsch_Karl_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2053932}}, {"model": "metainfo.source", "pk": 14243, "fields": {"orig_filename": "Hlawatsch_Rudolf-Karl-Ferdinand_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128097}}, {"model": "metainfo.source", "pk": 14244, "fields": {"orig_filename": "Hocevar_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417743}}, {"model": "metainfo.source", "pk": 14245, "fields": {"orig_filename": "Hoch-Mueller_Joseph-Anton_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417745}}, {"model": "metainfo.source", "pk": 14246, "fields": {"orig_filename": "Hocheder_Johann-Karl_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417746}}, {"model": "metainfo.source", "pk": 14247, "fields": {"orig_filename": "Hochegger_Franz_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417747}}, {"model": "metainfo.source", "pk": 14248, "fields": {"orig_filename": "Hochegger_Rudolf_1862_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417748}}, {"model": "metainfo.source", "pk": 14249, "fields": {"orig_filename": "Hochenegg_Carl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343f.", "author": "", "orig_id": 1417749}}, {"model": "metainfo.source", "pk": 14250, "fields": {"orig_filename": "Hochenegg_Julius_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344", "author": "", "orig_id": 1417750}}, {"model": "metainfo.source", "pk": 14251, "fields": {"orig_filename": "Hochsinger_Carl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344", "author": "", "orig_id": 1417751}}, {"model": "metainfo.source", "pk": 14252, "fields": {"orig_filename": "Hochstetter_Carl-Christian_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344f.", "author": "", "orig_id": 1417752}}, {"model": "metainfo.source", "pk": 14253, "fields": {"orig_filename": "Hochstetter_Ferdinand_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 345", "author": "", "orig_id": 1417753}}, {"model": "metainfo.source", "pk": 14254, "fields": {"orig_filename": "Hochstetter_Heinrich_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 345f.", "author": "", "orig_id": 1417754}}, {"model": "metainfo.source", "pk": 14255, "fields": {"orig_filename": "Hoch_Karl_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417744}}, {"model": "metainfo.source", "pk": 14256, "fields": {"orig_filename": "Hockauf_Josef_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417824}}, {"model": "metainfo.source", "pk": 14257, "fields": {"orig_filename": "Hock_Alexander_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417755}}, {"model": "metainfo.source", "pk": 14258, "fields": {"orig_filename": "Hock_Carl_1808_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417756}}, {"model": "metainfo.source", "pk": 14259, "fields": {"orig_filename": "Hock_Friedrich_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417757}}, {"model": "metainfo.source", "pk": 14260, "fields": {"orig_filename": "Hock_Jakob_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346f.", "author": "", "orig_id": 1417821}}, {"model": "metainfo.source", "pk": 14261, "fields": {"orig_filename": "Hock_Johann_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417822}}, {"model": "metainfo.source", "pk": 14262, "fields": {"orig_filename": "Hock_Stefan_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417823}}, {"model": "metainfo.source", "pk": 14263, "fields": {"orig_filename": "Hodek_Gustav_1832_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417825}}, {"model": "metainfo.source", "pk": 14264, "fields": {"orig_filename": "Hoebarth_Franz_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347f.", "author": "", "orig_id": 1417826}}, {"model": "metainfo.source", "pk": 14265, "fields": {"orig_filename": "Hoechle_Johann-Bapt_1754_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348", "author": "", "orig_id": 1417828}}, {"model": "metainfo.source", "pk": 14266, "fields": {"orig_filename": "Hoechle_Leopold_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348", "author": "", "orig_id": 1417829}}, {"model": "metainfo.source", "pk": 14267, "fields": {"orig_filename": "Hoechsmann_Johannes_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348f.", "author": "", "orig_id": 1417831}}, {"model": "metainfo.source", "pk": 14268, "fields": {"orig_filename": "Hoeck_Franz_1749_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417833}}, {"model": "metainfo.source", "pk": 14269, "fields": {"orig_filename": "Hoedl_Bonaventura-Constantin_1776_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417834}}, {"model": "metainfo.source", "pk": 14270, "fields": {"orig_filename": "Hoedl_Roman-Josef_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417835}}, {"model": "metainfo.source", "pk": 14271, "fields": {"orig_filename": "Hoefele_Stephan_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350", "author": "", "orig_id": 1417839}}, {"model": "metainfo.source", "pk": 14272, "fields": {"orig_filename": "Hoefel_Bernhard_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417836}}, {"model": "metainfo.source", "pk": 14273, "fields": {"orig_filename": "Hoefel_Blasius_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349f.", "author": "", "orig_id": 1417837}}, {"model": "metainfo.source", "pk": 14274, "fields": {"orig_filename": "Hoefel_Johann-Nepomuk_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350", "author": "", "orig_id": 1417838}}, {"model": "metainfo.source", "pk": 14275, "fields": {"orig_filename": "Hoefer-Feldsturm_Franz_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351", "author": "", "orig_id": 1417840}}, {"model": "metainfo.source", "pk": 14276, "fields": {"orig_filename": "Hoefer-Heimhalt_Hans_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351f.", "author": "", "orig_id": 1417843}}, {"model": "metainfo.source", "pk": 14277, "fields": {"orig_filename": "Hoefer_Josef_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350f.", "author": "", "orig_id": 1417841}}, {"model": "metainfo.source", "pk": 14278, "fields": {"orig_filename": "Hoefer_Mathias_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351", "author": "", "orig_id": 1417842}}, {"model": "metainfo.source", "pk": 14279, "fields": {"orig_filename": "Hoefken-Hattingsheim_Rudolf_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353", "author": "", "orig_id": 1417845}}, {"model": "metainfo.source", "pk": 14280, "fields": {"orig_filename": "Hoefken_Gustav_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 352f.", "author": "", "orig_id": 1417844}}, {"model": "metainfo.source", "pk": 14281, "fields": {"orig_filename": "Hoefler_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353", "author": "", "orig_id": 1417846}}, {"model": "metainfo.source", "pk": 14282, "fields": {"orig_filename": "Hoefler_Karl-Adolf-Constantin_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353f.", "author": "", "orig_id": 1417908}}, {"model": "metainfo.source", "pk": 14283, "fields": {"orig_filename": "Hoefner_Gabriel_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 354f.", "author": "", "orig_id": 1417909}}, {"model": "metainfo.source", "pk": 14284, "fields": {"orig_filename": "Hoegelmueller_Georg_1770_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356", "author": "", "orig_id": 1417913}}, {"model": "metainfo.source", "pk": 14285, "fields": {"orig_filename": "Hoegel_Hugo_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355", "author": "", "orig_id": 1417910}}, {"model": "metainfo.source", "pk": 14286, "fields": {"orig_filename": "Hoegel_Johann-Bapt_1820_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355", "author": "", "orig_id": 1417911}}, {"model": "metainfo.source", "pk": 14287, "fields": {"orig_filename": "Hoegel_Wilhelmine_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355f.", "author": "", "orig_id": 1417912}}, {"model": "metainfo.source", "pk": 14288, "fields": {"orig_filename": "Hoeger_Joseph_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356", "author": "", "orig_id": 1417914}}, {"model": "metainfo.source", "pk": 14289, "fields": {"orig_filename": "Hoeger_Karl_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356f.", "author": "", "orig_id": 1417915}}, {"model": "metainfo.source", "pk": 14290, "fields": {"orig_filename": "Hoegler_Anton_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417916}}, {"model": "metainfo.source", "pk": 14291, "fields": {"orig_filename": "Hoegler_Franz_1802_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417917}}, {"model": "metainfo.source", "pk": 14292, "fields": {"orig_filename": "Hoegyes_Andreas_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417918}}, {"model": "metainfo.source", "pk": 14293, "fields": {"orig_filename": "Hoehnel_Franz_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357f.", "author": "", "orig_id": 1417919}}, {"model": "metainfo.source", "pk": 14294, "fields": {"orig_filename": "Hoehnel_Friedrich-Romilo_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358", "author": "", "orig_id": 1417920}}, {"model": "metainfo.source", "pk": 14295, "fields": {"orig_filename": "Hoehnel_Ludwig_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358", "author": "", "orig_id": 1417921}}, {"model": "metainfo.source", "pk": 14296, "fields": {"orig_filename": "Hoehnel_Wilhelm-Gotthelf_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358f.", "author": "", "orig_id": 1417922}}, {"model": "metainfo.source", "pk": 14297, "fields": {"orig_filename": "Hoelder_Alfred_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417923}}, {"model": "metainfo.source", "pk": 14298, "fields": {"orig_filename": "Hoellersberger_Robert_1924_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417924}}, {"model": "metainfo.source", "pk": 14299, "fields": {"orig_filename": "Hoelzel_Adolf_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417925}}, {"model": "metainfo.source", "pk": 14300, "fields": {"orig_filename": "Hoelzel_Eduard_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359f.", "author": "", "orig_id": 1417926}}, {"model": "metainfo.source", "pk": 14301, "fields": {"orig_filename": "Hoelzel_Gustav_1813_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417927}}, {"model": "metainfo.source", "pk": 14302, "fields": {"orig_filename": "Hoelzlhuber_Franz_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417929}}, {"model": "metainfo.source", "pk": 14303, "fields": {"orig_filename": "Hoelzl_Josef_1809_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417928}}, {"model": "metainfo.source", "pk": 14304, "fields": {"orig_filename": "Hoenig-Greil_Auguste_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418002}}, {"model": "metainfo.source", "pk": 14305, "fields": {"orig_filename": "Hoenig-Hoenigsberg_Benedikt_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418004}}, {"model": "metainfo.source", "pk": 14306, "fields": {"orig_filename": "Hoenig-Hoenigsberg_Erich_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418005}}, {"model": "metainfo.source", "pk": 14307, "fields": {"orig_filename": "Hoenigl_Dominik_1833_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362f.", "author": "", "orig_id": 1418006}}, {"model": "metainfo.source", "pk": 14308, "fields": {"orig_filename": "Hoenigschmid_Otto_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363", "author": "", "orig_id": 1418007}}, {"model": "metainfo.source", "pk": 14309, "fields": {"orig_filename": "Hoenigswald_Richard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363", "author": "", "orig_id": 1418008}}, {"model": "metainfo.source", "pk": 14310, "fields": {"orig_filename": "Hoenig_Franz_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417931}}, {"model": "metainfo.source", "pk": 14311, "fields": {"orig_filename": "Hoenig_Ignaz_1828_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417933}}, {"model": "metainfo.source", "pk": 14312, "fields": {"orig_filename": "Hoenig_Max_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361f.", "author": "", "orig_id": 1417934}}, {"model": "metainfo.source", "pk": 14313, "fields": {"orig_filename": "Hoen_Maximilian_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360f.", "author": "", "orig_id": 1417930}}, {"model": "metainfo.source", "pk": 14314, "fields": {"orig_filename": "Hoepler-Hermingen_Erwein_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363f.", "author": "", "orig_id": 1418009}}, {"model": "metainfo.source", "pk": 14315, "fields": {"orig_filename": "Hoerbiger_Alois_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 364", "author": "", "orig_id": 1418010}}, {"model": "metainfo.source", "pk": 14316, "fields": {"orig_filename": "Hoerbiger_Hanns_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 364f.", "author": "", "orig_id": 1418012}}, {"model": "metainfo.source", "pk": 14317, "fields": {"orig_filename": "Hoerfarter_Matthaeus_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418013}}, {"model": "metainfo.source", "pk": 14318, "fields": {"orig_filename": "Hoerhager_Josef_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418014}}, {"model": "metainfo.source", "pk": 14319, "fields": {"orig_filename": "Hoermann-Hoerbach_Angelika_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 366", "author": "", "orig_id": 1418017}}, {"model": "metainfo.source", "pk": 14320, "fields": {"orig_filename": "Hoermann-Hoerbach_Ludwig_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 366f.", "author": "", "orig_id": 1418018}}, {"model": "metainfo.source", "pk": 14321, "fields": {"orig_filename": "Hoermann-Hoerbach_Theodor_1840_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367", "author": "", "orig_id": 1418019}}, {"model": "metainfo.source", "pk": 14322, "fields": {"orig_filename": "Hoermann-Hoerbach_Walther_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367", "author": "", "orig_id": 1418020}}, {"model": "metainfo.source", "pk": 14323, "fields": {"orig_filename": "Hoermann_Konstantin_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418015}}, {"model": "metainfo.source", "pk": 14324, "fields": {"orig_filename": "Hoermann_Leopold_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365f.", "author": "", "orig_id": 1418016}}, {"model": "metainfo.source", "pk": 14325, "fields": {"orig_filename": "Hoernes_Hermann_1858_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367f.", "author": "", "orig_id": 1418021}}, {"model": "metainfo.source", "pk": 14326, "fields": {"orig_filename": "Hoernes_Moriz_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 368", "author": "", "orig_id": 1418022}}, {"model": "metainfo.source", "pk": 14327, "fields": {"orig_filename": "Hoernes_Moriz_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 368f.", "author": "", "orig_id": 1418023}}, {"model": "metainfo.source", "pk": 14328, "fields": {"orig_filename": "Hoernes_Rudolf_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 369f.", "author": "", "orig_id": 1418024}}, {"model": "metainfo.source", "pk": 14329, "fields": {"orig_filename": "Hoertnagl_Hans_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418025}}, {"model": "metainfo.source", "pk": 14330, "fields": {"orig_filename": "Hoerwarter_Joseph-Eugen_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418026}}, {"model": "metainfo.source", "pk": 14331, "fields": {"orig_filename": "Hoesslinger_Guido_1871_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418027}}, {"model": "metainfo.source", "pk": 14332, "fields": {"orig_filename": "Hoetzl_Josef_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370f.", "author": "", "orig_id": 1418028}}, {"model": "metainfo.source", "pk": 14333, "fields": {"orig_filename": "Heyer-Rosenfeld_Friedrich_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417192}}, {"model": "metainfo.source", "pk": 14334, "fields": {"orig_filename": "Heyl_Johann-Adolf_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417193}}, {"model": "metainfo.source", "pk": 14335, "fields": {"orig_filename": "Heyne_Wilhelm_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310f.", "author": "", "orig_id": 1417194}}, {"model": "metainfo.source", "pk": 14336, "fields": {"orig_filename": "Heyssler_Moritz_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311", "author": "", "orig_id": 1417265}}, {"model": "metainfo.source", "pk": 14337, "fields": {"orig_filename": "Hey_Hans-Erwin_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417191}}, {"model": "metainfo.source", "pk": 14338, "fields": {"orig_filename": "Hibler_Emanuel_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311", "author": "", "orig_id": 1417266}}, {"model": "metainfo.source", "pk": 14339, "fields": {"orig_filename": "Hibsch_Josef-Emanuel_1852_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311f.", "author": "", "orig_id": 1417267}}, {"model": "metainfo.source", "pk": 14340, "fields": {"orig_filename": "Hickel_Karl_1811_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417268}}, {"model": "metainfo.source", "pk": 14341, "fields": {"orig_filename": "Hickmann_Anton-Leo_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417269}}, {"model": "metainfo.source", "pk": 14342, "fields": {"orig_filename": "Hidja_Georg-Anton_1752_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417270}}, {"model": "metainfo.source", "pk": 14343, "fields": {"orig_filename": "Hieber_Karlmann_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312f.", "author": "", "orig_id": 1417271}}, {"model": "metainfo.source", "pk": 14344, "fields": {"orig_filename": "Hiebl_Josef-Ferdinand_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417272}}, {"model": "metainfo.source", "pk": 14345, "fields": {"orig_filename": "Hiebsch_Herbert_1905_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417273}}, {"model": "metainfo.source", "pk": 14346, "fields": {"orig_filename": "Hiebsch_Josef_1854_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417274}}, {"model": "metainfo.source", "pk": 14347, "fields": {"orig_filename": "Hieke_Wenzel_1852_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417275}}, {"model": "metainfo.source", "pk": 14348, "fields": {"orig_filename": "Hiermann_Franz_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313f.", "author": "", "orig_id": 1417276}}, {"model": "metainfo.source", "pk": 14349, "fields": {"orig_filename": "Hieronimus_Otto_1879_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1451374}}, {"model": "metainfo.source", "pk": 14350, "fields": {"orig_filename": "Hieronymi_Karl_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417277}}, {"model": "metainfo.source", "pk": 14351, "fields": {"orig_filename": "Hieser_Otto_1850_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417278}}, {"model": "metainfo.source", "pk": 14352, "fields": {"orig_filename": "Hietzinger_Karl-Bernhard_1786_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417279}}, {"model": "metainfo.source", "pk": 14353, "fields": {"orig_filename": "Hilbert_Kamill_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417283}}, {"model": "metainfo.source", "pk": 14354, "fields": {"orig_filename": "Hilber_Vincenz_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314f.", "author": "", "orig_id": 1417282}}, {"model": "metainfo.source", "pk": 14355, "fields": {"orig_filename": "Hilchenbach_Karl-Wilhelm_1749_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417284}}, {"model": "metainfo.source", "pk": 14356, "fields": {"orig_filename": "Hildebrand_Richard_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417286}}, {"model": "metainfo.source", "pk": 14357, "fields": {"orig_filename": "Hildenbrand_Franz-Xaver_1789_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315f.", "author": "", "orig_id": 1417287}}, {"model": "metainfo.source", "pk": 14358, "fields": {"orig_filename": "Hildenbrand_Valentin-Johann_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417288}}, {"model": "metainfo.source", "pk": 14359, "fields": {"orig_filename": "Hildwein_Alois_1789_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417365}}, {"model": "metainfo.source", "pk": 14360, "fields": {"orig_filename": "Hild_Josef_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417285}}, {"model": "metainfo.source", "pk": 14361, "fields": {"orig_filename": "Hilgenreiner_Karl_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417366}}, {"model": "metainfo.source", "pk": 14362, "fields": {"orig_filename": "Hillebrand_Karl_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417368}}, {"model": "metainfo.source", "pk": 14363, "fields": {"orig_filename": "Hilleprandt_Franz_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417369}}, {"model": "metainfo.source", "pk": 14364, "fields": {"orig_filename": "Hiller_Johann_1748_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417370}}, {"model": "metainfo.source", "pk": 14365, "fields": {"orig_filename": "Hiller_Karl_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317f.", "author": "", "orig_id": 1417371}}, {"model": "metainfo.source", "pk": 14366, "fields": {"orig_filename": "Hille_Augustin-Bartholomaeus_1786_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316f.", "author": "", "orig_id": 1417367}}, {"model": "metainfo.source", "pk": 14367, "fields": {"orig_filename": "Hillischer_Hermann-Theodor_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318", "author": "", "orig_id": 1417373}}, {"model": "metainfo.source", "pk": 14368, "fields": {"orig_filename": "Hillischer_Josef-Hermann_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318", "author": "", "orig_id": 1417374}}, {"model": "metainfo.source", "pk": 14369, "fields": {"orig_filename": "Hilpert_Helmut_1923_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318f.", "author": "", "orig_id": 1417375}}, {"model": "metainfo.source", "pk": 14370, "fields": {"orig_filename": "Hilscher_Josef-Emanuel_1806_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417376}}, {"model": "metainfo.source", "pk": 14371, "fields": {"orig_filename": "Hilscher_Karl_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417377}}, {"model": "metainfo.source", "pk": 14372, "fields": {"orig_filename": "Hilzer_Peter-Ignatz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417378}}, {"model": "metainfo.source", "pk": 14373, "fields": {"orig_filename": "Himmel-Agisburg_Heinrich_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417380}}, {"model": "metainfo.source", "pk": 14374, "fields": {"orig_filename": "Himmelbauer_Alfred_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319f.", "author": "", "orig_id": 1417381}}, {"model": "metainfo.source", "pk": 14375, "fields": {"orig_filename": "Himmelbauer_Franz_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417382}}, {"model": "metainfo.source", "pk": 14376, "fields": {"orig_filename": "Himmelbauer_Michael_1829_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417383}}, {"model": "metainfo.source", "pk": 14377, "fields": {"orig_filename": "Himmelbaur_Marietta_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417384}}, {"model": "metainfo.source", "pk": 14378, "fields": {"orig_filename": "Himmelbaur_Wolfgang_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320f.", "author": "", "orig_id": 1417385}}, {"model": "metainfo.source", "pk": 14379, "fields": {"orig_filename": "Himsl_Ferdinand_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321", "author": "", "orig_id": 1417386}}, {"model": "metainfo.source", "pk": 14380, "fields": {"orig_filename": "Hingenau_Otto-Bernhard-Gottlieb_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321", "author": "", "orig_id": 1417387}}, {"model": "metainfo.source", "pk": 14381, "fields": {"orig_filename": "Hinke_Johann_1837_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321f.", "author": "", "orig_id": 1417388}}, {"model": "metainfo.source", "pk": 14382, "fields": {"orig_filename": "Hinkovic_Hinko_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417457}}, {"model": "metainfo.source", "pk": 14383, "fields": {"orig_filename": "Hinsenkamp_Therese_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417459}}, {"model": "metainfo.source", "pk": 14384, "fields": {"orig_filename": "Hinterberger_Friedrich_1826_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417460}}, {"model": "metainfo.source", "pk": 14385, "fields": {"orig_filename": "Hinterberger_Hugo_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322f.", "author": "", "orig_id": 1417461}}, {"model": "metainfo.source", "pk": 14386, "fields": {"orig_filename": "Hinterhuber_Georg_1768_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417462}}, {"model": "metainfo.source", "pk": 14387, "fields": {"orig_filename": "Hinterhuber_Julius_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417464}}, {"model": "metainfo.source", "pk": 14388, "fields": {"orig_filename": "Hinterhuber_Rudolf_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417465}}, {"model": "metainfo.source", "pk": 14389, "fields": {"orig_filename": "Hinterlechner_Fulgentius_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417466}}, {"model": "metainfo.source", "pk": 14390, "fields": {"orig_filename": "Hinterlechner_Karl_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323f.", "author": "", "orig_id": 1417467}}, {"model": "metainfo.source", "pk": 14391, "fields": {"orig_filename": "Hinterleithner_Josef_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 324", "author": "", "orig_id": 1417468}}, {"model": "metainfo.source", "pk": 14392, "fields": {"orig_filename": "Hinteroecker_Johann-Nep_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 324f.", "author": "", "orig_id": 1417469}}, {"model": "metainfo.source", "pk": 14393, "fields": {"orig_filename": "Hinterschweiger_Ludwig_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325", "author": "", "orig_id": 1417471}}, {"model": "metainfo.source", "pk": 14394, "fields": {"orig_filename": "Hinterstoisser_Franz_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325", "author": "", "orig_id": 1417472}}, {"model": "metainfo.source", "pk": 14395, "fields": {"orig_filename": "Hinterstoisser_Hermann-Joseph_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325f.", "author": "", "orig_id": 1417474}}, {"model": "metainfo.source", "pk": 14396, "fields": {"orig_filename": "Hinterstoisser_Joseph-Carl_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326", "author": "", "orig_id": 1417475}}, {"model": "metainfo.source", "pk": 14397, "fields": {"orig_filename": "Hinterwaldner_Johann-Max_1844_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326", "author": "", "orig_id": 1417476}}, {"model": "metainfo.source", "pk": 14398, "fields": {"orig_filename": "Hinterwaldner_Josef_1833_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326f.", "author": "", "orig_id": 1417477}}, {"model": "metainfo.source", "pk": 14399, "fields": {"orig_filename": "Hintner_Johann_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417478}}, {"model": "metainfo.source", "pk": 14400, "fields": {"orig_filename": "Hintner_Michael_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417479}}, {"model": "metainfo.source", "pk": 14401, "fields": {"orig_filename": "Hintner_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417480}}, {"model": "metainfo.source", "pk": 14402, "fields": {"orig_filename": "Hintraeger_Moritz_1831_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417481}}, {"model": "metainfo.source", "pk": 14403, "fields": {"orig_filename": "Hiptmair_Mathias_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327f.", "author": "", "orig_id": 1417552}}, {"model": "metainfo.source", "pk": 14404, "fields": {"orig_filename": "Hirc_Dragutin_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417553}}, {"model": "metainfo.source", "pk": 14405, "fields": {"orig_filename": "Hirc_Miroslav_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417554}}, {"model": "metainfo.source", "pk": 14406, "fields": {"orig_filename": "Hiremy-Hirschl_Adolf_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417556}}, {"model": "metainfo.source", "pk": 14407, "fields": {"orig_filename": "Hirn_Ferdinand_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328f.", "author": "", "orig_id": 1417557}}, {"model": "metainfo.source", "pk": 14408, "fields": {"orig_filename": "Hirn_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329", "author": "", "orig_id": 1417558}}, {"model": "metainfo.source", "pk": 14409, "fields": {"orig_filename": "Hirschberg_Aleksander_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331f.", "author": "", "orig_id": 1417566}}, {"model": "metainfo.source", "pk": 14410, "fields": {"orig_filename": "Hirschberg_Marie_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332", "author": "", "orig_id": 1417567}}, {"model": "metainfo.source", "pk": 14411, "fields": {"orig_filename": "Hirschfeld_Leo_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332", "author": "", "orig_id": 1417568}}, {"model": "metainfo.source", "pk": 14412, "fields": {"orig_filename": "Hirschfeld_Otto_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332f.", "author": "", "orig_id": 1417569}}, {"model": "metainfo.source", "pk": 14413, "fields": {"orig_filename": "Hirschfeld_Robert_1857_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333", "author": "", "orig_id": 1417570}}, {"model": "metainfo.source", "pk": 14414, "fields": {"orig_filename": "Hirschfeld_Viktor_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333", "author": "", "orig_id": 1417571}}, {"model": "metainfo.source", "pk": 14415, "fields": {"orig_filename": "Hirschhaeuter_Joseph_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333f.", "author": "", "orig_id": 1417572}}, {"model": "metainfo.source", "pk": 14416, "fields": {"orig_filename": "Hirschler_Anna_1846_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334", "author": "", "orig_id": 1417574}}, {"model": "metainfo.source", "pk": 14417, "fields": {"orig_filename": "Hirschler_Ignaz_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334f.", "author": "", "orig_id": 1417642}}, {"model": "metainfo.source", "pk": 14418, "fields": {"orig_filename": "Hirschl_Josef-Adolf_1865_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334", "author": "", "orig_id": 1417573}}, {"model": "metainfo.source", "pk": 14419, "fields": {"orig_filename": "Hirsch_Arnold_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329", "author": "", "orig_id": 1417559}}, {"model": "metainfo.source", "pk": 14420, "fields": {"orig_filename": "Hirsch_Hans_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329f.", "author": "", "orig_id": 1417560}}, {"model": "metainfo.source", "pk": 14421, "fields": {"orig_filename": "Hirsch_Helene_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 330", "author": "", "orig_id": 1417561}}, {"model": "metainfo.source", "pk": 14422, "fields": {"orig_filename": "Hirsch_Karl_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 330f.", "author": "", "orig_id": 1417562}}, {"model": "metainfo.source", "pk": 14423, "fields": {"orig_filename": "Hirsch_Moritz_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417563}}, {"model": "metainfo.source", "pk": 14424, "fields": {"orig_filename": "Hirsch_Oskar_1877_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417564}}, {"model": "metainfo.source", "pk": 14425, "fields": {"orig_filename": "Hirsch_Rudolf_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417565}}, {"model": "metainfo.source", "pk": 14426, "fields": {"orig_filename": "Hirtenfeld_Jaromir_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335", "author": "", "orig_id": 1417644}}, {"model": "metainfo.source", "pk": 14427, "fields": {"orig_filename": "Hirt_Max_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335", "author": "", "orig_id": 1417643}}, {"model": "metainfo.source", "pk": 14428, "fields": {"orig_filename": "Hitler_Adolf_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335ff.", "author": "", "orig_id": 1417646}}, {"model": "metainfo.source", "pk": 14429, "fields": {"orig_filename": "Hitschmann_Fritz_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 337", "author": "", "orig_id": 1417647}}, {"model": "metainfo.source", "pk": 14430, "fields": {"orig_filename": "Hitschmann_Hugo-Heinrich_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 337f.", "author": "", "orig_id": 1417648}}, {"model": "metainfo.source", "pk": 14431, "fields": {"orig_filename": "Hitschmann_Maximilian_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417649}}, {"model": "metainfo.source", "pk": 14432, "fields": {"orig_filename": "Hittmair_Anton_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417650}}, {"model": "metainfo.source", "pk": 14433, "fields": {"orig_filename": "Hittmair_Rudolf_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417662}}, {"model": "metainfo.source", "pk": 14434, "fields": {"orig_filename": "Hittmair_Rudolf_1889_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338f.", "author": "", "orig_id": 1417663}}, {"model": "metainfo.source", "pk": 14435, "fields": {"orig_filename": "Hitzenthaler_Anton_1750_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339", "author": "", "orig_id": 1417732}}, {"model": "metainfo.source", "pk": 14436, "fields": {"orig_filename": "Hering_Ewald_1834_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416815}}, {"model": "metainfo.source", "pk": 14437, "fields": {"orig_filename": "Hering_Ewald_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416816}}, {"model": "metainfo.source", "pk": 14438, "fields": {"orig_filename": "Heritsch_Franz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283f.", "author": "", "orig_id": 1416817}}, {"model": "metainfo.source", "pk": 14439, "fields": {"orig_filename": "Herkner_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416818}}, {"model": "metainfo.source", "pk": 14440, "fields": {"orig_filename": "Herloss_Karl_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416819}}, {"model": "metainfo.source", "pk": 14441, "fields": {"orig_filename": "Hermann-Hermannsthal_Franz_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416898}}, {"model": "metainfo.source", "pk": 14442, "fields": {"orig_filename": "Hermann_Albert_1864_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285", "author": "", "orig_id": 1416891}}, {"model": "metainfo.source", "pk": 14443, "fields": {"orig_filename": "Hermann_August-Gustav_1828_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285", "author": "", "orig_id": 1416892}}, {"model": "metainfo.source", "pk": 14444, "fields": {"orig_filename": "Hermann_Benedikt-Franz-Johann_1755_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285f.", "author": "", "orig_id": 1416893}}, {"model": "metainfo.source", "pk": 14445, "fields": {"orig_filename": "Hermann_Franz_1827_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286", "author": "", "orig_id": 1420733}}, {"model": "metainfo.source", "pk": 14446, "fields": {"orig_filename": "Hermann_Friedrich_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286", "author": "", "orig_id": 1420734}}, {"model": "metainfo.source", "pk": 14447, "fields": {"orig_filename": "Hermann_Hugo_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287", "author": "", "orig_id": 1420736}}, {"model": "metainfo.source", "pk": 14448, "fields": {"orig_filename": "Hermann_Johann_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287", "author": "", "orig_id": 1420737}}, {"model": "metainfo.source", "pk": 14449, "fields": {"orig_filename": "Hermann_Johann_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287f.", "author": "", "orig_id": 1420738}}, {"model": "metainfo.source", "pk": 14450, "fields": {"orig_filename": "Hermann_Josef_1817_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416894}}, {"model": "metainfo.source", "pk": 14451, "fields": {"orig_filename": "Hermann_Julius_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416895}}, {"model": "metainfo.source", "pk": 14452, "fields": {"orig_filename": "Hermann_Leo_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416896}}, {"model": "metainfo.source", "pk": 14453, "fields": {"orig_filename": "Hermann_Richard_1872_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416897}}, {"model": "metainfo.source", "pk": 14454, "fields": {"orig_filename": "Herman_Jan_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416821}}, {"model": "metainfo.source", "pk": 14455, "fields": {"orig_filename": "Herman_Otto_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284f.", "author": "", "orig_id": 1416890}}, {"model": "metainfo.source", "pk": 14456, "fields": {"orig_filename": "Herndl_Franz_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416899}}, {"model": "metainfo.source", "pk": 14457, "fields": {"orig_filename": "Hernler_Franz_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416900}}, {"model": "metainfo.source", "pk": 14458, "fields": {"orig_filename": "Herold_Franz_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416901}}, {"model": "metainfo.source", "pk": 14459, "fields": {"orig_filename": "Herold_Jiri_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416902}}, {"model": "metainfo.source", "pk": 14460, "fields": {"orig_filename": "Herold_Josef_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416903}}, {"model": "metainfo.source", "pk": 14461, "fields": {"orig_filename": "Herold_Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289f.", "author": "", "orig_id": 1416904}}, {"model": "metainfo.source", "pk": 14462, "fields": {"orig_filename": "Herrenburg-Tuczek_Leopoldine_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416906}}, {"model": "metainfo.source", "pk": 14463, "fields": {"orig_filename": "Herring_Johann_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416907}}, {"model": "metainfo.source", "pk": 14464, "fields": {"orig_filename": "Herrmann-Herrnritt_Rudolf_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416985}}, {"model": "metainfo.source", "pk": 14465, "fields": {"orig_filename": "Herrmann_Anton_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290f.", "author": "", "orig_id": 1416908}}, {"model": "metainfo.source", "pk": 14466, "fields": {"orig_filename": "Herrmann_August_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416909}}, {"model": "metainfo.source", "pk": 14467, "fields": {"orig_filename": "Herrmann_Edmund_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416910}}, {"model": "metainfo.source", "pk": 14468, "fields": {"orig_filename": "Herrmann_Emanuel_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416981}}, {"model": "metainfo.source", "pk": 14469, "fields": {"orig_filename": "Herrmann_Fritz_1903_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291f.", "author": "", "orig_id": 1416982}}, {"model": "metainfo.source", "pk": 14470, "fields": {"orig_filename": "Herrmann_Karl_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416983}}, {"model": "metainfo.source", "pk": 14471, "fields": {"orig_filename": "Herrnheiser_Isidor_1861_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292f.", "author": "", "orig_id": 1416986}}, {"model": "metainfo.source", "pk": 14472, "fields": {"orig_filename": "Herr_Josef-Philipp_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416905}}, {"model": "metainfo.source", "pk": 14473, "fields": {"orig_filename": "Herschel_Otto_1871_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416988}}, {"model": "metainfo.source", "pk": 14474, "fields": {"orig_filename": "Hertle_Josef_1871_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416989}}, {"model": "metainfo.source", "pk": 14475, "fields": {"orig_filename": "Hertzka_Emil_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416990}}, {"model": "metainfo.source", "pk": 14476, "fields": {"orig_filename": "Hertzka_Jella_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293f.", "author": "", "orig_id": 1416991}}, {"model": "metainfo.source", "pk": 14477, "fields": {"orig_filename": "Hertzka_Julius_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294", "author": "", "orig_id": 1416992}}, {"model": "metainfo.source", "pk": 14478, "fields": {"orig_filename": "Hertzka_Theodor_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294", "author": "", "orig_id": 1416993}}, {"model": "metainfo.source", "pk": 14479, "fields": {"orig_filename": "Herz-Rodenau_Johann-Jakob_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1416999}}, {"model": "metainfo.source", "pk": 14480, "fields": {"orig_filename": "Herzberg-Fraenkel_Leo_1827_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1417000}}, {"model": "metainfo.source", "pk": 14481, "fields": {"orig_filename": "Herzberg-Fraenkel_Sigmund_1857_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1420732}}, {"model": "metainfo.source", "pk": 14482, "fields": {"orig_filename": "Herzenskron_Hermann-Josef_1789_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1417001}}, {"model": "metainfo.source", "pk": 14483, "fields": {"orig_filename": "Herzenskron_Viktor_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296f.", "author": "", "orig_id": 1417002}}, {"model": "metainfo.source", "pk": 14484, "fields": {"orig_filename": "Herzfeld_Adolf_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297", "author": "", "orig_id": 1417003}}, {"model": "metainfo.source", "pk": 14485, "fields": {"orig_filename": "Herzfeld_Karl-August_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297", "author": "", "orig_id": 1417004}}, {"model": "metainfo.source", "pk": 14486, "fields": {"orig_filename": "Herzfeld_Marie_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297f.", "author": "", "orig_id": 1417075}}, {"model": "metainfo.source", "pk": 14487, "fields": {"orig_filename": "Herzfeld_Victor_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417076}}, {"model": "metainfo.source", "pk": 14488, "fields": {"orig_filename": "Herzig_Josef_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417078}}, {"model": "metainfo.source", "pk": 14489, "fields": {"orig_filename": "Herzinger_Anton_1763_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417079}}, {"model": "metainfo.source", "pk": 14490, "fields": {"orig_filename": "Herzka_Siegmund_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417080}}, {"model": "metainfo.source", "pk": 14491, "fields": {"orig_filename": "Herzlieb_Franz_1797_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417083}}, {"model": "metainfo.source", "pk": 14492, "fields": {"orig_filename": "Herzl_Sigmund_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298f.", "author": "", "orig_id": 1417081}}, {"model": "metainfo.source", "pk": 14493, "fields": {"orig_filename": "Herzl_Theodor_1860_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 299f.", "author": "", "orig_id": 1417082}}, {"model": "metainfo.source", "pk": 14494, "fields": {"orig_filename": "Herzmann_Josef_1859_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417084}}, {"model": "metainfo.source", "pk": 14495, "fields": {"orig_filename": "Herzmansky_August_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417085}}, {"model": "metainfo.source", "pk": 14496, "fields": {"orig_filename": "Herzmansky_Bernhard_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300f.", "author": "", "orig_id": 1417086}}, {"model": "metainfo.source", "pk": 14497, "fields": {"orig_filename": "Herzogenberg_Heinrich_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302", "author": "", "orig_id": 1417090}}, {"model": "metainfo.source", "pk": 14498, "fields": {"orig_filename": "Herzog_David_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1414793}}, {"model": "metainfo.source", "pk": 14499, "fields": {"orig_filename": "Herzog_Jakob_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1417087}}, {"model": "metainfo.source", "pk": 14500, "fields": {"orig_filename": "Herzog_Katharina_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1417088}}, {"model": "metainfo.source", "pk": 14501, "fields": {"orig_filename": "Herzog_Reginald-Oliver_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301f.", "author": "", "orig_id": 1417089}}, {"model": "metainfo.source", "pk": 14502, "fields": {"orig_filename": "Herz_Eugen_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294f.", "author": "", "orig_id": 1416994}}, {"model": "metainfo.source", "pk": 14503, "fields": {"orig_filename": "Herz_Fritz_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416995}}, {"model": "metainfo.source", "pk": 14504, "fields": {"orig_filename": "Herz_Heinrich_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416996}}, {"model": "metainfo.source", "pk": 14505, "fields": {"orig_filename": "Herz_Maximilian_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416997}}, {"model": "metainfo.source", "pk": 14506, "fields": {"orig_filename": "Herz_Norbert_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295f.", "author": "", "orig_id": 1416998}}, {"model": "metainfo.source", "pk": 14507, "fields": {"orig_filename": "Heschl_Richard-Ladislaus_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302f.", "author": "", "orig_id": 1417092}}, {"model": "metainfo.source", "pk": 14508, "fields": {"orig_filename": "Hesch_Wilhelm_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302", "author": "", "orig_id": 1417091}}, {"model": "metainfo.source", "pk": 14509, "fields": {"orig_filename": "Hesse-Wartegg_Ernst_1854_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417097}}, {"model": "metainfo.source", "pk": 14510, "fields": {"orig_filename": "Hessen-Homburg_Ferdinand-Heinrich_1783_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417098}}, {"model": "metainfo.source", "pk": 14511, "fields": {"orig_filename": "Hessen-Homburg_Gustav-Adolph-Friedrich_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417100}}, {"model": "metainfo.source", "pk": 14512, "fields": {"orig_filename": "Hessen-Homburg_Philipp-August-Friedrich_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417171}}, {"model": "metainfo.source", "pk": 14513, "fields": {"orig_filename": "Hessen-Rhein_Alexander-Ludwig-Georg-Friedrich-Emil_1823_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305f.", "author": "", "orig_id": 1417172}}, {"model": "metainfo.source", "pk": 14514, "fields": {"orig_filename": "Hessen-Rhein_Emil-Maximilian-Leopold-August-Karl_1790_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417173}}, {"model": "metainfo.source", "pk": 14515, "fields": {"orig_filename": "Hessler_Ferdinand_1803_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417175}}, {"model": "metainfo.source", "pk": 14516, "fields": {"orig_filename": "Hessl_Gustav-August_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417174}}, {"model": "metainfo.source", "pk": 14517, "fields": {"orig_filename": "Hess_Bruno_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 303", "author": "", "orig_id": 1417093}}, {"model": "metainfo.source", "pk": 14518, "fields": {"orig_filename": "Hess_Heinrich_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 304", "author": "", "orig_id": 1417095}}, {"model": "metainfo.source", "pk": 14519, "fields": {"orig_filename": "Hess_Heinrich_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 303f.", "author": "", "orig_id": 1417094}}, {"model": "metainfo.source", "pk": 14520, "fields": {"orig_filename": "Hess_Philipp_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 304f.", "author": "", "orig_id": 1417096}}, {"model": "metainfo.source", "pk": 14521, "fields": {"orig_filename": "Hetschko_Alfred_1854_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417176}}, {"model": "metainfo.source", "pk": 14522, "fields": {"orig_filename": "Hetsey_Alice_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417177}}, {"model": "metainfo.source", "pk": 14523, "fields": {"orig_filename": "Hettwer_Emil_1847_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417178}}, {"model": "metainfo.source", "pk": 14524, "fields": {"orig_filename": "Hetzenauer_Michael_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417180}}, {"model": "metainfo.source", "pk": 14525, "fields": {"orig_filename": "Hetzendorf-Hohenberg_Johann-Ferdinand_1732_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307f.", "author": "", "orig_id": 1417181}}, {"model": "metainfo.source", "pk": 14526, "fields": {"orig_filename": "Heubach_Hans-Heinrich_1890_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308", "author": "", "orig_id": 1417182}}, {"model": "metainfo.source", "pk": 14527, "fields": {"orig_filename": "Heuberger_Leopold_1786_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308", "author": "", "orig_id": 1417183}}, {"model": "metainfo.source", "pk": 14528, "fields": {"orig_filename": "Heuberger_Richard-Franz-Joseph_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308f.", "author": "", "orig_id": 1417184}}, {"model": "metainfo.source", "pk": 14529, "fields": {"orig_filename": "Heuffel_Johann_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417185}}, {"model": "metainfo.source", "pk": 14530, "fields": {"orig_filename": "Heurteur_Nikolaus_1781_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417187}}, {"model": "metainfo.source", "pk": 14531, "fields": {"orig_filename": "Heussenstamm-Heissenstein-Graefenhausen_Theodor_1801_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417188}}, {"model": "metainfo.source", "pk": 14532, "fields": {"orig_filename": "Heveroch_Antonin_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309f.", "author": "", "orig_id": 1417189}}, {"model": "metainfo.source", "pk": 14533, "fields": {"orig_filename": "Hevesi_Ludwig_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417190}}, {"model": "metainfo.source", "pk": 14534, "fields": {"orig_filename": "Hejda_Wilhelm_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417731}}, {"model": "metainfo.source", "pk": 14535, "fields": {"orig_filename": "Helcelet_Johann_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417801}}, {"model": "metainfo.source", "pk": 14536, "fields": {"orig_filename": "Helcel_Antoni-Zygmunt_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254f.", "author": "", "orig_id": 1417800}}, {"model": "metainfo.source", "pk": 14537, "fields": {"orig_filename": "Held_Johann-Theobald_1773_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417802}}, {"model": "metainfo.source", "pk": 14538, "fields": {"orig_filename": "Held_Leo_1874_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417803}}, {"model": "metainfo.source", "pk": 14539, "fields": {"orig_filename": "Held_Ludwig_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417804}}, {"model": "metainfo.source", "pk": 14540, "fields": {"orig_filename": "Helfenstein_Alois_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417805}}, {"model": "metainfo.source", "pk": 14541, "fields": {"orig_filename": "Helferstorfer_Othmar_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256", "author": "", "orig_id": 1417807}}, {"model": "metainfo.source", "pk": 14542, "fields": {"orig_filename": "Helfert_Joseph-Alexander_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256f.", "author": "", "orig_id": 1417809}}, {"model": "metainfo.source", "pk": 14543, "fields": {"orig_filename": "Helfert_Joseph_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256", "author": "", "orig_id": 1417808}}, {"model": "metainfo.source", "pk": 14544, "fields": {"orig_filename": "Helfert_Vladimir_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 257", "author": "", "orig_id": 1417810}}, {"model": "metainfo.source", "pk": 14545, "fields": {"orig_filename": "Helfer_Johann-Wilhelm_1810_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417806}}, {"model": "metainfo.source", "pk": 14546, "fields": {"orig_filename": "Hellenbach_Lazar_1827_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417814}}, {"model": "metainfo.source", "pk": 14547, "fields": {"orig_filename": "Hellensteiner_Emma_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417815}}, {"model": "metainfo.source", "pk": 14548, "fields": {"orig_filename": "Heller-Hellwald_Friedrich-Anton_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417897}}, {"model": "metainfo.source", "pk": 14549, "fields": {"orig_filename": "Heller-Hellwald_Friedrich-Jakob_1798_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417898}}, {"model": "metainfo.source", "pk": 14550, "fields": {"orig_filename": "Heller-Ostersetzer_Hermine_1874_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417900}}, {"model": "metainfo.source", "pk": 14551, "fields": {"orig_filename": "Heller_Eduard_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417816}}, {"model": "metainfo.source", "pk": 14552, "fields": {"orig_filename": "Heller_Gustav_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417817}}, {"model": "metainfo.source", "pk": 14553, "fields": {"orig_filename": "Heller_Hermann-Vinzenz_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417818}}, {"model": "metainfo.source", "pk": 14554, "fields": {"orig_filename": "Heller_Isidor_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417819}}, {"model": "metainfo.source", "pk": 14555, "fields": {"orig_filename": "Heller_Johann-Florian_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259f.", "author": "", "orig_id": 1417820}}, {"model": "metainfo.source", "pk": 14556, "fields": {"orig_filename": "Heller_Josef_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417887}}, {"model": "metainfo.source", "pk": 14557, "fields": {"orig_filename": "Heller_Josef_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417888}}, {"model": "metainfo.source", "pk": 14558, "fields": {"orig_filename": "Heller_Kamill_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417889}}, {"model": "metainfo.source", "pk": 14559, "fields": {"orig_filename": "Heller_Karl-Bartholomaeus_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260f.", "author": "", "orig_id": 1417891}}, {"model": "metainfo.source", "pk": 14560, "fields": {"orig_filename": "Heller_Karl-Maria_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417892}}, {"model": "metainfo.source", "pk": 14561, "fields": {"orig_filename": "Heller_Kurt_1898_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417893}}, {"model": "metainfo.source", "pk": 14562, "fields": {"orig_filename": "Heller_Prokop-Benedikt_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417894}}, {"model": "metainfo.source", "pk": 14563, "fields": {"orig_filename": "Heller_Seligmann_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261f.", "author": "", "orig_id": 1417895}}, {"model": "metainfo.source", "pk": 14564, "fields": {"orig_filename": "Heller_Simon_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417896}}, {"model": "metainfo.source", "pk": 14565, "fields": {"orig_filename": "Helletsgruber_Anton_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262f.", "author": "", "orig_id": 1417901}}, {"model": "metainfo.source", "pk": 14566, "fields": {"orig_filename": "Hellich_Bohuslav_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417903}}, {"model": "metainfo.source", "pk": 14567, "fields": {"orig_filename": "Hellich_Josef-Adalbert_1807_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417904}}, {"model": "metainfo.source", "pk": 14568, "fields": {"orig_filename": "Hellmann_Alois-Philipp_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417905}}, {"model": "metainfo.source", "pk": 14569, "fields": {"orig_filename": "Hellmann_Heinrich_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417906}}, {"model": "metainfo.source", "pk": 14570, "fields": {"orig_filename": "Hellmann_Jakob_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417978}}, {"model": "metainfo.source", "pk": 14571, "fields": {"orig_filename": "Hellmayr_Carl-Eduard_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263f.", "author": "", "orig_id": 1417979}}, {"model": "metainfo.source", "pk": 14572, "fields": {"orig_filename": "Hellmer_Edmund_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 264f.", "author": "", "orig_id": 1417980}}, {"model": "metainfo.source", "pk": 14573, "fields": {"orig_filename": "Hellmer_Edmund_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417981}}, {"model": "metainfo.source", "pk": 14574, "fields": {"orig_filename": "Hellmer_Johann-Karl_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417982}}, {"model": "metainfo.source", "pk": 14575, "fields": {"orig_filename": "Hellmesberger_Ferdinand_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417983}}, {"model": "metainfo.source", "pk": 14576, "fields": {"orig_filename": "Hellmesberger_Georg_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265f.", "author": "", "orig_id": 1417984}}, {"model": "metainfo.source", "pk": 14577, "fields": {"orig_filename": "Hellmesberger_Georg_1830_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266", "author": "", "orig_id": 1417985}}, {"model": "metainfo.source", "pk": 14578, "fields": {"orig_filename": "Hellmesberger_Joseph_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266", "author": "", "orig_id": 1417987}}, {"model": "metainfo.source", "pk": 14579, "fields": {"orig_filename": "Hellwag_Konrad-Wilhelm_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266f.", "author": "", "orig_id": 1417988}}, {"model": "metainfo.source", "pk": 14580, "fields": {"orig_filename": "Hellweger_Franz_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267", "author": "", "orig_id": 1417989}}, {"model": "metainfo.source", "pk": 14581, "fields": {"orig_filename": "Hellweger_Michael_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267", "author": "", "orig_id": 1417990}}, {"model": "metainfo.source", "pk": 14582, "fields": {"orig_filename": "Helly_Carl_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267f.", "author": "", "orig_id": 1417991}}, {"model": "metainfo.source", "pk": 14583, "fields": {"orig_filename": "Hell_Gustav_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417811}}, {"model": "metainfo.source", "pk": 14584, "fields": {"orig_filename": "Hell_Josef_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417812}}, {"model": "metainfo.source", "pk": 14585, "fields": {"orig_filename": "Helmer_Gilbert_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268f.", "author": "", "orig_id": 1417995}}, {"model": "metainfo.source", "pk": 14586, "fields": {"orig_filename": "Helmer_Hermann_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417996}}, {"model": "metainfo.source", "pk": 14587, "fields": {"orig_filename": "Helmhacker_Rudolf_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269", "author": "", "orig_id": 1417997}}, {"model": "metainfo.source", "pk": 14588, "fields": {"orig_filename": "Helmreichen-Brunnfeld_Virgil_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269", "author": "", "orig_id": 1417998}}, {"model": "metainfo.source", "pk": 14589, "fields": {"orig_filename": "Helm_Joseph-Alois_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417992}}, {"model": "metainfo.source", "pk": 14590, "fields": {"orig_filename": "Helm_Theodor_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417993}}, {"model": "metainfo.source", "pk": 14591, "fields": {"orig_filename": "Helm_Theodor_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417994}}, {"model": "metainfo.source", "pk": 14592, "fields": {"orig_filename": "Hemala_Franz_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269f.", "author": "", "orig_id": 1417999}}, {"model": "metainfo.source", "pk": 14593, "fields": {"orig_filename": "Hemerlein_Karl_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270", "author": "", "orig_id": 1418000}}, {"model": "metainfo.source", "pk": 14594, "fields": {"orig_filename": "Hemmelmayr-Augustenfeld_Franz-Josef_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270", "author": "", "orig_id": 1418001}}, {"model": "metainfo.source", "pk": 14595, "fields": {"orig_filename": "Hempel_Gustav_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270f.", "author": "", "orig_id": 1418075}}, {"model": "metainfo.source", "pk": 14596, "fields": {"orig_filename": "Hempel_Josef_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 271", "author": "", "orig_id": 1418076}}, {"model": "metainfo.source", "pk": 14597, "fields": {"orig_filename": "Hempt_Adolf_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2178551}}, {"model": "metainfo.source", "pk": 14598, "fields": {"orig_filename": "Henckel-Donnersmarck_Hugo_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 271f.", "author": "", "orig_id": 1418077}}, {"model": "metainfo.source", "pk": 14599, "fields": {"orig_filename": "Hendel_Friedrich_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418078}}, {"model": "metainfo.source", "pk": 14600, "fields": {"orig_filename": "Hendel_Maximilian_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418079}}, {"model": "metainfo.source", "pk": 14601, "fields": {"orig_filename": "Hengelmueller-Hengervar_Ladislaus_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418080}}, {"model": "metainfo.source", "pk": 14602, "fields": {"orig_filename": "Hengst_Oswald_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418081}}, {"model": "metainfo.source", "pk": 14603, "fields": {"orig_filename": "Henikstein_Alfred_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418082}}, {"model": "metainfo.source", "pk": 14604, "fields": {"orig_filename": "Henneberg_Hugo_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418083}}, {"model": "metainfo.source", "pk": 14605, "fields": {"orig_filename": "Henneberg_Johann-Bapt_1769_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273f.", "author": "", "orig_id": 1418084}}, {"model": "metainfo.source", "pk": 14606, "fields": {"orig_filename": "Henning_Gottfried-Wilhelm_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418085}}, {"model": "metainfo.source", "pk": 14607, "fields": {"orig_filename": "Henning_Karl_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418086}}, {"model": "metainfo.source", "pk": 14608, "fields": {"orig_filename": "Henning_Roland_1896_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418087}}, {"model": "metainfo.source", "pk": 14609, "fields": {"orig_filename": "Henning_Theodor_1897_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418088}}, {"model": "metainfo.source", "pk": 14610, "fields": {"orig_filename": "Henrich_Josef_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418089}}, {"model": "metainfo.source", "pk": 14611, "fields": {"orig_filename": "Henschel_Gustav_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418091}}, {"model": "metainfo.source", "pk": 14612, "fields": {"orig_filename": "Hensler_Karl-Friedrich_1759_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418092}}, {"model": "metainfo.source", "pk": 14613, "fields": {"orig_filename": "Henszlmann_Emerich_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275f.", "author": "", "orig_id": 1418093}}, {"model": "metainfo.source", "pk": 14614, "fields": {"orig_filename": "Hentzi-Arthurm_Heinrich_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276", "author": "", "orig_id": 1418094}}, {"model": "metainfo.source", "pk": 14615, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Anton-Seraphin_1767_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276", "author": "", "orig_id": 1418095}}, {"model": "metainfo.source", "pk": 14616, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Hans_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276f.", "author": "", "orig_id": 1418096}}, {"model": "metainfo.source", "pk": 14617, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Josef_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 277", "author": "", "orig_id": 1418097}}, {"model": "metainfo.source", "pk": 14618, "fields": {"orig_filename": "Herbeck_Johann_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 277f.", "author": "", "orig_id": 1418098}}, {"model": "metainfo.source", "pk": 14619, "fields": {"orig_filename": "Herbert-Kerchnawe_Ernst_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416800}}, {"model": "metainfo.source", "pk": 14620, "fields": {"orig_filename": "Herberth_Carl_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416801}}, {"model": "metainfo.source", "pk": 14621, "fields": {"orig_filename": "Herbert_Albin_1787_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278", "author": "", "orig_id": 1418099}}, {"model": "metainfo.source", "pk": 14622, "fields": {"orig_filename": "Herbert_Franz-Paul_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278f.", "author": "", "orig_id": 1416798}}, {"model": "metainfo.source", "pk": 14623, "fields": {"orig_filename": "Herbert_Franz_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278", "author": "", "orig_id": 1416797}}, {"model": "metainfo.source", "pk": 14624, "fields": {"orig_filename": "Herbich_Franz_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416802}}, {"model": "metainfo.source", "pk": 14625, "fields": {"orig_filename": "Herbich_Franz_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279f.", "author": "", "orig_id": 1416803}}, {"model": "metainfo.source", "pk": 14626, "fields": {"orig_filename": "Herbsthoffer_Peter-Rudolf-Karl_1821_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416806}}, {"model": "metainfo.source", "pk": 14627, "fields": {"orig_filename": "Herbst_Eduard_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 280f.", "author": "", "orig_id": 1416804}}, {"model": "metainfo.source", "pk": 14628, "fields": {"orig_filename": "Herbst_Friederike_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416805}}, {"model": "metainfo.source", "pk": 14629, "fields": {"orig_filename": "Herczel_Emanuel_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416807}}, {"model": "metainfo.source", "pk": 14630, "fields": {"orig_filename": "Herdlicka_Theodor_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416808}}, {"model": "metainfo.source", "pk": 14631, "fields": {"orig_filename": "Herdtle_Hermann_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416809}}, {"model": "metainfo.source", "pk": 14632, "fields": {"orig_filename": "Herfurth_Franz-Karl_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416810}}, {"model": "metainfo.source", "pk": 14633, "fields": {"orig_filename": "Hergesel_Franz_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416811}}, {"model": "metainfo.source", "pk": 14634, "fields": {"orig_filename": "Herget_Anton_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416812}}, {"model": "metainfo.source", "pk": 14635, "fields": {"orig_filename": "Herget_Oskar_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416813}}, {"model": "metainfo.source", "pk": 14636, "fields": {"orig_filename": "Heric_Matija_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416814}}, {"model": "metainfo.source", "pk": 14637, "fields": {"orig_filename": "Hawel_Rudolf_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224f.", "author": "", "orig_id": 1418692}}, {"model": "metainfo.source", "pk": 14638, "fields": {"orig_filename": "Haydecker_Sebastian_1789_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1417340}}, {"model": "metainfo.source", "pk": 14639, "fields": {"orig_filename": "Haydinger_Franz_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225f.", "author": "", "orig_id": 1417341}}, {"model": "metainfo.source", "pk": 14640, "fields": {"orig_filename": "Hayd_Karl_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1418695}}, {"model": "metainfo.source", "pk": 14641, "fields": {"orig_filename": "Hayek_August_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226", "author": "", "orig_id": 1417342}}, {"model": "metainfo.source", "pk": 14642, "fields": {"orig_filename": "Hayek_Gustav_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226", "author": "", "orig_id": 1417343}}, {"model": "metainfo.source", "pk": 14643, "fields": {"orig_filename": "Hayek_Hermann_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226f.", "author": "", "orig_id": 1417345}}, {"model": "metainfo.source", "pk": 14644, "fields": {"orig_filename": "Haymerle_Franz-Josef_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227", "author": "", "orig_id": 1417346}}, {"model": "metainfo.source", "pk": 14645, "fields": {"orig_filename": "Haymerle_Heinrich_1828_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227", "author": "", "orig_id": 1417347}}, {"model": "metainfo.source", "pk": 14646, "fields": {"orig_filename": "Haynald_Ludwig_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227f.", "author": "", "orig_id": 1417348}}, {"model": "metainfo.source", "pk": 14647, "fields": {"orig_filename": "Haynau_Julius-Jacob_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 228f.", "author": "", "orig_id": 1417349}}, {"model": "metainfo.source", "pk": 14648, "fields": {"orig_filename": "Hazslinszky-Hazslin_Friedrich-August_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229", "author": "", "orig_id": 1417350}}, {"model": "metainfo.source", "pk": 14649, "fields": {"orig_filename": "Hazura_Karl_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229", "author": "", "orig_id": 1417351}}, {"model": "metainfo.source", "pk": 14650, "fields": {"orig_filename": "Heberdey_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 231", "author": "", "orig_id": 1417353}}, {"model": "metainfo.source", "pk": 14651, "fields": {"orig_filename": "Heberle_Therese_1805_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417354}}, {"model": "metainfo.source", "pk": 14652, "fields": {"orig_filename": "Hebra_Ferdinand_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417355}}, {"model": "metainfo.source", "pk": 14653, "fields": {"orig_filename": "Hebra_Hans_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417356}}, {"model": "metainfo.source", "pk": 14654, "fields": {"orig_filename": "Hechenblaikner_Ingenuin_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232f.", "author": "", "orig_id": 1417357}}, {"model": "metainfo.source", "pk": 14655, "fields": {"orig_filename": "Hechenbleikner_Louis_1893_1983.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441921}}, {"model": "metainfo.source", "pk": 14656, "fields": {"orig_filename": "Hecht_Adolf_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417358}}, {"model": "metainfo.source", "pk": 14657, "fields": {"orig_filename": "Hecht_Karl-Wilhelm_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417359}}, {"model": "metainfo.source", "pk": 14658, "fields": {"orig_filename": "Hecht_Victor_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417360}}, {"model": "metainfo.source", "pk": 14659, "fields": {"orig_filename": "Heckel_Johann-Jakob_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234f.", "author": "", "orig_id": 1417363}}, {"model": "metainfo.source", "pk": 14660, "fields": {"orig_filename": "Heckel_Karl-Ferdinand_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417436}}, {"model": "metainfo.source", "pk": 14661, "fields": {"orig_filename": "Heckenast_Gustav_1811_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417437}}, {"model": "metainfo.source", "pk": 14662, "fields": {"orig_filename": "Hecke_Wenzel_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234", "author": "", "orig_id": 1417362}}, {"model": "metainfo.source", "pk": 14663, "fields": {"orig_filename": "Hedrich_Franz_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417438}}, {"model": "metainfo.source", "pk": 14664, "fields": {"orig_filename": "Hedwig_Johann-Lukas_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417439}}, {"model": "metainfo.source", "pk": 14665, "fields": {"orig_filename": "Heeger_Ernst_1783_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417440}}, {"model": "metainfo.source", "pk": 14666, "fields": {"orig_filename": "Heeger_Viktor_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417441}}, {"model": "metainfo.source", "pk": 14667, "fields": {"orig_filename": "Heffter-Hohenburg_Johann-Ignaz_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417443}}, {"model": "metainfo.source", "pk": 14668, "fields": {"orig_filename": "Hefft_Anton_1815_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417442}}, {"model": "metainfo.source", "pk": 14669, "fields": {"orig_filename": "Hefter_Gustav_1871_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417444}}, {"model": "metainfo.source", "pk": 14670, "fields": {"orig_filename": "Hegedues-Eoer_Joseph-Franz_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417446}}, {"model": "metainfo.source", "pk": 14671, "fields": {"orig_filename": "Hegedues_Alexander_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236f.", "author": "", "orig_id": 1417445}}, {"model": "metainfo.source", "pk": 14672, "fields": {"orig_filename": "Hegele_Maximilian_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417447}}, {"model": "metainfo.source", "pk": 14673, "fields": {"orig_filename": "Hegemann_Otmar_1869_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417448}}, {"model": "metainfo.source", "pk": 14674, "fields": {"orig_filename": "Hegenbarth_Emanuel-Franz_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237f.", "author": "", "orig_id": 1417450}}, {"model": "metainfo.source", "pk": 14675, "fields": {"orig_filename": "Hegenbarth_Ernst_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417451}}, {"model": "metainfo.source", "pk": 14676, "fields": {"orig_filename": "Hegenbart_Fritz_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417449}}, {"model": "metainfo.source", "pk": 14677, "fields": {"orig_filename": "Heger-Gasser_Eugenie_1866_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417529}}, {"model": "metainfo.source", "pk": 14678, "fields": {"orig_filename": "Heger_Franz_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417452}}, {"model": "metainfo.source", "pk": 14679, "fields": {"orig_filename": "Heger_Franz_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417527}}, {"model": "metainfo.source", "pk": 14680, "fields": {"orig_filename": "Heger_Hans_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239", "author": "", "orig_id": 1417453}}, {"model": "metainfo.source", "pk": 14681, "fields": {"orig_filename": "Heger_Hilde_1899_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2057065}}, {"model": "metainfo.source", "pk": 14682, "fields": {"orig_filename": "Heger_Ignaz-Jakob_1808_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239f.", "author": "", "orig_id": 1417528}}, {"model": "metainfo.source", "pk": 14683, "fields": {"orig_filename": "Heger_Ignaz_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239", "author": "", "orig_id": 1417455}}, {"model": "metainfo.source", "pk": 14684, "fields": {"orig_filename": "Heicke_Joseph_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417530}}, {"model": "metainfo.source", "pk": 14685, "fields": {"orig_filename": "Heideloff_Josef_1747_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417533}}, {"model": "metainfo.source", "pk": 14686, "fields": {"orig_filename": "Heidenreich_Josef-Cal_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417534}}, {"model": "metainfo.source", "pk": 14687, "fields": {"orig_filename": "Heiderich_Franz_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 243", "author": "", "orig_id": 1417541}}, {"model": "metainfo.source", "pk": 14688, "fields": {"orig_filename": "Heider_Adolf_1858_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417535}}, {"model": "metainfo.source", "pk": 14689, "fields": {"orig_filename": "Heider_Arthur_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417536}}, {"model": "metainfo.source", "pk": 14690, "fields": {"orig_filename": "Heider_Gustav_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417537}}, {"model": "metainfo.source", "pk": 14691, "fields": {"orig_filename": "Heider_Karl_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241f.", "author": "", "orig_id": 1417538}}, {"model": "metainfo.source", "pk": 14692, "fields": {"orig_filename": "Heider_Moriz_1816_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 242", "author": "", "orig_id": 1417539}}, {"model": "metainfo.source", "pk": 14693, "fields": {"orig_filename": "Heider_Paul_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 242f.", "author": "", "orig_id": 1417540}}, {"model": "metainfo.source", "pk": 14694, "fields": {"orig_filename": "Heidler-Heilborn_Karl_1792_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 243f.", "author": "", "orig_id": 1417542}}, {"model": "metainfo.source", "pk": 14695, "fields": {"orig_filename": "Heidmann_Alberich_1808_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417543}}, {"model": "metainfo.source", "pk": 14696, "fields": {"orig_filename": "Heidmann_Johann-Anton_1772_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417544}}, {"model": "metainfo.source", "pk": 14697, "fields": {"orig_filename": "Heid_Nicolaus_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417532}}, {"model": "metainfo.source", "pk": 14698, "fields": {"orig_filename": "Heigl_Fritz_1895_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417545}}, {"model": "metainfo.source", "pk": 14699, "fields": {"orig_filename": "Heigl_Paul_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1464354}}, {"model": "metainfo.source", "pk": 14700, "fields": {"orig_filename": "Heilinger_Alois_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1419004}}, {"model": "metainfo.source", "pk": 14701, "fields": {"orig_filename": "Heilmann_Albert_1832_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417548}}, {"model": "metainfo.source", "pk": 14702, "fields": {"orig_filename": "Heilmann_Anton_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244f.", "author": "", "orig_id": 1417549}}, {"model": "metainfo.source", "pk": 14703, "fields": {"orig_filename": "Heim-San-Martino-Carso_Geza_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417550}}, {"model": "metainfo.source", "pk": 14704, "fields": {"orig_filename": "Heimel_Marie-Sidonie_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417619}}, {"model": "metainfo.source", "pk": 14705, "fields": {"orig_filename": "Heimerl_Anton_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417621}}, {"model": "metainfo.source", "pk": 14706, "fields": {"orig_filename": "Heinbucher-Bikessy_Joseph_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246f.", "author": "", "orig_id": 1417627}}, {"model": "metainfo.source", "pk": 14707, "fields": {"orig_filename": "Heinefetter_Clara_1816_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247f.", "author": "", "orig_id": 1417632}}, {"model": "metainfo.source", "pk": 14708, "fields": {"orig_filename": "Heine_Albert_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417628}}, {"model": "metainfo.source", "pk": 14709, "fields": {"orig_filename": "Heine_Ferdinand_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417629}}, {"model": "metainfo.source", "pk": 14710, "fields": {"orig_filename": "Heine_Karl-Wilhelm_1838_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417630}}, {"model": "metainfo.source", "pk": 14711, "fields": {"orig_filename": "Heinl_Franz_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417634}}, {"model": "metainfo.source", "pk": 14712, "fields": {"orig_filename": "Heinricher_Emil_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 250", "author": "", "orig_id": 1417713}}, {"model": "metainfo.source", "pk": 14713, "fields": {"orig_filename": "Heinrich_Albin_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417635}}, {"model": "metainfo.source", "pk": 14714, "fields": {"orig_filename": "Heinrich_Anton-Philipp_1781_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248f.", "author": "", "orig_id": 1417638}}, {"model": "metainfo.source", "pk": 14715, "fields": {"orig_filename": "Heinrich_Anton_1830_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417637}}, {"model": "metainfo.source", "pk": 14716, "fields": {"orig_filename": "Heinrich_August_1794_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249", "author": "", "orig_id": 1417639}}, {"model": "metainfo.source", "pk": 14717, "fields": {"orig_filename": "Heinrich_Gustav_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417640}}, {"model": "metainfo.source", "pk": 14718, "fields": {"orig_filename": "Heinrich_Johann-Josef-Karl_1737_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249", "author": "", "orig_id": 1417711}}, {"model": "metainfo.source", "pk": 14719, "fields": {"orig_filename": "Heinrich_Josef_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249f.", "author": "", "orig_id": 1417712}}, {"model": "metainfo.source", "pk": 14720, "fields": {"orig_filename": "Heintl_Franz_1769_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 250f.", "author": "", "orig_id": 1417714}}, {"model": "metainfo.source", "pk": 14721, "fields": {"orig_filename": "Heintschel-Heinegg_Hanns-Georg_1919_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417715}}, {"model": "metainfo.source", "pk": 14722, "fields": {"orig_filename": "Heinzelmann_Johannes_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252", "author": "", "orig_id": 1417720}}, {"model": "metainfo.source", "pk": 14723, "fields": {"orig_filename": "Heinzel_Richard_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252", "author": "", "orig_id": 1417719}}, {"model": "metainfo.source", "pk": 14724, "fields": {"orig_filename": "Heinz_Julius_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417716}}, {"model": "metainfo.source", "pk": 14725, "fields": {"orig_filename": "Heinz_Rudolf_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417717}}, {"model": "metainfo.source", "pk": 14726, "fields": {"orig_filename": "Heinz_Sebastian_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251f.", "author": "", "orig_id": 1417718}}, {"model": "metainfo.source", "pk": 14727, "fields": {"orig_filename": "Hein_Alois-Raimund_1852_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245f.", "author": "", "orig_id": 1417623}}, {"model": "metainfo.source", "pk": 14728, "fields": {"orig_filename": "Hein_Franz_1808_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417624}}, {"model": "metainfo.source", "pk": 14729, "fields": {"orig_filename": "Hein_Sigmund_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417625}}, {"model": "metainfo.source", "pk": 14730, "fields": {"orig_filename": "Hein_Wilhelm_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417626}}, {"model": "metainfo.source", "pk": 14731, "fields": {"orig_filename": "Heischmann_Eugen_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252f.", "author": "", "orig_id": 1417722}}, {"model": "metainfo.source", "pk": 14732, "fields": {"orig_filename": "Heisinger_Adolf-Johann-Bapt_1808_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417723}}, {"model": "metainfo.source", "pk": 14733, "fields": {"orig_filename": "Heissl_Ernst_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417726}}, {"model": "metainfo.source", "pk": 14734, "fields": {"orig_filename": "Heiss_Berta_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417725}}, {"model": "metainfo.source", "pk": 14735, "fields": {"orig_filename": "Heitler_Moritz_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417727}}, {"model": "metainfo.source", "pk": 14736, "fields": {"orig_filename": "Heitzler_Karl_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417728}}, {"model": "metainfo.source", "pk": 14737, "fields": {"orig_filename": "Heitzmann_Julius_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417729}}, {"model": "metainfo.source", "pk": 14738, "fields": {"orig_filename": "Heitzmann_Karl_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417730}}, {"model": "metainfo.source", "pk": 14739, "fields": {"orig_filename": "Hartmann_Friedrich_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418321}}, {"model": "metainfo.source", "pk": 14740, "fields": {"orig_filename": "Hartmann_Friedrich_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418322}}, {"model": "metainfo.source", "pk": 14741, "fields": {"orig_filename": "Hartmann_Helene_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418323}}, {"model": "metainfo.source", "pk": 14742, "fields": {"orig_filename": "Hartmann_Karl_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418324}}, {"model": "metainfo.source", "pk": 14743, "fields": {"orig_filename": "Hartmann_Ludo-Moritz_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195f.", "author": "", "orig_id": 1418325}}, {"model": "metainfo.source", "pk": 14744, "fields": {"orig_filename": "Hartmann_Moritz_1821_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 196f.", "author": "", "orig_id": 1418326}}, {"model": "metainfo.source", "pk": 14745, "fields": {"orig_filename": "Hartmann_Philipp-Karl_1773_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418327}}, {"model": "metainfo.source", "pk": 14746, "fields": {"orig_filename": "Hartmayr_Joseph_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197f.", "author": "", "orig_id": 1418392}}, {"model": "metainfo.source", "pk": 14747, "fields": {"orig_filename": "Hartung_Ernst_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418393}}, {"model": "metainfo.source", "pk": 14748, "fields": {"orig_filename": "Harum_Peter_1825_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418394}}, {"model": "metainfo.source", "pk": 14749, "fields": {"orig_filename": "Haschek_Eduard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198f.", "author": "", "orig_id": 1418396}}, {"model": "metainfo.source", "pk": 14750, "fields": {"orig_filename": "Haschka_Lorenz-Leopold_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418397}}, {"model": "metainfo.source", "pk": 14751, "fields": {"orig_filename": "Haschowec_Ferdinand_1902_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418398}}, {"model": "metainfo.source", "pk": 14752, "fields": {"orig_filename": "Hasch_Karl_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418395}}, {"model": "metainfo.source", "pk": 14753, "fields": {"orig_filename": "Hasek_Jaroslav_1883_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418399}}, {"model": "metainfo.source", "pk": 14754, "fields": {"orig_filename": "Haselbach_Volkmar_1909_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2091927}}, {"model": "metainfo.source", "pk": 14755, "fields": {"orig_filename": "Hasenauer_Carl_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418400}}, {"model": "metainfo.source", "pk": 14756, "fields": {"orig_filename": "Hasenhut_Anton_1766_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200", "author": "", "orig_id": 1418401}}, {"model": "metainfo.source", "pk": 14757, "fields": {"orig_filename": "Hasenhut_Martina-Pauline_1809_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200", "author": "", "orig_id": 1418402}}, {"model": "metainfo.source", "pk": 14758, "fields": {"orig_filename": "Hasenoehrl_Friedrich_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200f.", "author": "", "orig_id": 1418403}}, {"model": "metainfo.source", "pk": 14759, "fields": {"orig_filename": "Hasenoehrl_Viktor_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 201", "author": "", "orig_id": 1418404}}, {"model": "metainfo.source", "pk": 14760, "fields": {"orig_filename": "Haskovec_Ladislav_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 201", "author": "", "orig_id": 1418405}}, {"model": "metainfo.source", "pk": 14761, "fields": {"orig_filename": "Hasler_Karel_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2171664}}, {"model": "metainfo.source", "pk": 14762, "fields": {"orig_filename": "Haslinger_Tobias_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418406}}, {"model": "metainfo.source", "pk": 14763, "fields": {"orig_filename": "Haslroither_Gerhard_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418407}}, {"model": "metainfo.source", "pk": 14764, "fields": {"orig_filename": "Hasner-Artha_Josef_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418408}}, {"model": "metainfo.source", "pk": 14765, "fields": {"orig_filename": "Hasner-Artha_Leopold_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202f.", "author": "", "orig_id": 1418409}}, {"model": "metainfo.source", "pk": 14766, "fields": {"orig_filename": "Hasnik_Josef_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 203", "author": "", "orig_id": 1418410}}, {"model": "metainfo.source", "pk": 14767, "fields": {"orig_filename": "Haspinger_Joachim_1776_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 203f.", "author": "", "orig_id": 1418411}}, {"model": "metainfo.source", "pk": 14768, "fields": {"orig_filename": "Hassack_Karl_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418412}}, {"model": "metainfo.source", "pk": 14769, "fields": {"orig_filename": "Hasselt-Barth_Anna-Maria-Wilhelmine_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418413}}, {"model": "metainfo.source", "pk": 14770, "fields": {"orig_filename": "Hasslinger-Hassingen_Johann-Nepomuk_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418414}}, {"model": "metainfo.source", "pk": 14771, "fields": {"orig_filename": "Hasslwander_Friedrich_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418415}}, {"model": "metainfo.source", "pk": 14772, "fields": {"orig_filename": "Hasslwander_Joseph_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204f.", "author": "", "orig_id": 1418416}}, {"model": "metainfo.source", "pk": 14773, "fields": {"orig_filename": "Hasslwanter_Johann_1805_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205", "author": "", "orig_id": 1418482}}, {"model": "metainfo.source", "pk": 14774, "fields": {"orig_filename": "Hassmann_Karl-Ludwig_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205", "author": "", "orig_id": 1418483}}, {"model": "metainfo.source", "pk": 14775, "fields": {"orig_filename": "Hassreiter_Josef_1845_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205f.", "author": "", "orig_id": 1418484}}, {"model": "metainfo.source", "pk": 14776, "fields": {"orig_filename": "Hatheyer_Franz-Sales_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207", "author": "", "orig_id": 1418486}}, {"model": "metainfo.source", "pk": 14777, "fields": {"orig_filename": "Hatle_Eduard_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207", "author": "", "orig_id": 1418487}}, {"model": "metainfo.source", "pk": 14778, "fields": {"orig_filename": "Hatschek_Berthold_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207f.", "author": "", "orig_id": 1418488}}, {"model": "metainfo.source", "pk": 14779, "fields": {"orig_filename": "Hatschek_Ludwig_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208", "author": "", "orig_id": 1418489}}, {"model": "metainfo.source", "pk": 14780, "fields": {"orig_filename": "Hattala_Martin_1821_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208", "author": "", "orig_id": 1418490}}, {"model": "metainfo.source", "pk": 14781, "fields": {"orig_filename": "Hattler_Franz_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208f.", "author": "", "orig_id": 1418491}}, {"model": "metainfo.source", "pk": 14782, "fields": {"orig_filename": "Hatvany-Deutsch_Alexander_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418492}}, {"model": "metainfo.source", "pk": 14783, "fields": {"orig_filename": "Hauberrisser_Georg-Joseph_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418495}}, {"model": "metainfo.source", "pk": 14784, "fields": {"orig_filename": "Hauberrisser_Georg_1781_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418494}}, {"model": "metainfo.source", "pk": 14785, "fields": {"orig_filename": "Haubner_Matthaeus_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209f.", "author": "", "orig_id": 1418496}}, {"model": "metainfo.source", "pk": 14786, "fields": {"orig_filename": "Hauck_Ferdinand_1845_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418497}}, {"model": "metainfo.source", "pk": 14787, "fields": {"orig_filename": "Haudek_Martin_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418498}}, {"model": "metainfo.source", "pk": 14788, "fields": {"orig_filename": "Hauder_Franz_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418499}}, {"model": "metainfo.source", "pk": 14789, "fields": {"orig_filename": "Hauer_Franz_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 211", "author": "", "orig_id": 1418500}}, {"model": "metainfo.source", "pk": 14790, "fields": {"orig_filename": "Hauer_Johann-Georg_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 211f.", "author": "", "orig_id": 1418501}}, {"model": "metainfo.source", "pk": 14791, "fields": {"orig_filename": "Hauer_Joseph_1778_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418502}}, {"model": "metainfo.source", "pk": 14792, "fields": {"orig_filename": "Hauer_Julius_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418503}}, {"model": "metainfo.source", "pk": 14793, "fields": {"orig_filename": "Hauer_Karl_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418504}}, {"model": "metainfo.source", "pk": 14794, "fields": {"orig_filename": "Hauffe_Leopold_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212f.", "author": "", "orig_id": 1418505}}, {"model": "metainfo.source", "pk": 14795, "fields": {"orig_filename": "Hauger_Georg_1792_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418506}}, {"model": "metainfo.source", "pk": 14796, "fields": {"orig_filename": "Haugwitz_Eugen-Wilhelm_1777_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418577}}, {"model": "metainfo.source", "pk": 14797, "fields": {"orig_filename": "Hauke_Franz_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418578}}, {"model": "metainfo.source", "pk": 14798, "fields": {"orig_filename": "Hauler_Edmund_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213f.", "author": "", "orig_id": 1418579}}, {"model": "metainfo.source", "pk": 14799, "fields": {"orig_filename": "Hauler_Johann_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 214", "author": "", "orig_id": 1418580}}, {"model": "metainfo.source", "pk": 14800, "fields": {"orig_filename": "Haulik-Varallya_Georg_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 214f.", "author": "", "orig_id": 1418581}}, {"model": "metainfo.source", "pk": 14801, "fields": {"orig_filename": "Haunold_Karl-Franz-Emanuel_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418582}}, {"model": "metainfo.source", "pk": 14802, "fields": {"orig_filename": "Hauptfleisch_Johann_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418585}}, {"model": "metainfo.source", "pk": 14803, "fields": {"orig_filename": "Hauptmann_Franc_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418586}}, {"model": "metainfo.source", "pk": 14804, "fields": {"orig_filename": "Hauptmann_Lorenz_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215f.", "author": "", "orig_id": 1418587}}, {"model": "metainfo.source", "pk": 14805, "fields": {"orig_filename": "Haupt_Josef_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418583}}, {"model": "metainfo.source", "pk": 14806, "fields": {"orig_filename": "Haupt_Karl_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418584}}, {"model": "metainfo.source", "pk": 14807, "fields": {"orig_filename": "Hauschka_Vinzenz_1766_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216", "author": "", "orig_id": 1418589}}, {"model": "metainfo.source", "pk": 14808, "fields": {"orig_filename": "Hauschner_Auguste_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216f.", "author": "", "orig_id": 1418590}}, {"model": "metainfo.source", "pk": 14809, "fields": {"orig_filename": "Hausegger_Friedrich_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418591}}, {"model": "metainfo.source", "pk": 14810, "fields": {"orig_filename": "Hausegger_Siegmund_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418592}}, {"model": "metainfo.source", "pk": 14811, "fields": {"orig_filename": "Hauser_Alois_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418593}}, {"model": "metainfo.source", "pk": 14812, "fields": {"orig_filename": "Hauser_Anna_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418594}}, {"model": "metainfo.source", "pk": 14813, "fields": {"orig_filename": "Hauser_Eduard_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418596}}, {"model": "metainfo.source", "pk": 14814, "fields": {"orig_filename": "Hauser_Franz_1799_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418598}}, {"model": "metainfo.source", "pk": 14815, "fields": {"orig_filename": "Hauser_Johann-Nepomuk_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218f.", "author": "", "orig_id": 1418599}}, {"model": "metainfo.source", "pk": 14816, "fields": {"orig_filename": "Hauser_Karl_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 219", "author": "", "orig_id": 1418600}}, {"model": "metainfo.source", "pk": 14817, "fields": {"orig_filename": "Hauser_Miska_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 219f.", "author": "", "orig_id": 1418601}}, {"model": "metainfo.source", "pk": 14818, "fields": {"orig_filename": "Hauser_Otto_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 220", "author": "", "orig_id": 1418602}}, {"model": "metainfo.source", "pk": 14819, "fields": {"orig_filename": "Hauser_Paul_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 220f.", "author": "", "orig_id": 1418672}}, {"model": "metainfo.source", "pk": 14820, "fields": {"orig_filename": "Hauslab_Franz_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 221", "author": "", "orig_id": 1418673}}, {"model": "metainfo.source", "pk": 14821, "fields": {"orig_filename": "Hauslab_Franz_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 221", "author": "", "orig_id": 1418674}}, {"model": "metainfo.source", "pk": 14822, "fields": {"orig_filename": "Hausleithner_Rudolf_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418675}}, {"model": "metainfo.source", "pk": 14823, "fields": {"orig_filename": "Hausmann_Franz_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418676}}, {"model": "metainfo.source", "pk": 14824, "fields": {"orig_filename": "Hausmann_Friedrich_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1451381}}, {"model": "metainfo.source", "pk": 14825, "fields": {"orig_filename": "Hausmann_Vaclav-Vlastimil_1850_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418677}}, {"model": "metainfo.source", "pk": 14826, "fields": {"orig_filename": "Hausmann_Walter_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418678}}, {"model": "metainfo.source", "pk": 14827, "fields": {"orig_filename": "Hausner_Otto_1827_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222f.", "author": "", "orig_id": 1418679}}, {"model": "metainfo.source", "pk": 14828, "fields": {"orig_filename": "Haussmann_Franziska-Maria-Elisabeth_1818_1853.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2186811}}, {"model": "metainfo.source", "pk": 14829, "fields": {"orig_filename": "Hauswirth_Ernest_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418681}}, {"model": "metainfo.source", "pk": 14830, "fields": {"orig_filename": "Haus_Anton_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216", "author": "", "orig_id": 1418588}}, {"model": "metainfo.source", "pk": 14831, "fields": {"orig_filename": "Hauthaler_Willibald_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418683}}, {"model": "metainfo.source", "pk": 14832, "fields": {"orig_filename": "Havelec_Josef_1816_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418685}}, {"model": "metainfo.source", "pk": 14833, "fields": {"orig_filename": "Havlicek_Hans_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418687}}, {"model": "metainfo.source", "pk": 14834, "fields": {"orig_filename": "Havlicek_Karel_1821_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418688}}, {"model": "metainfo.source", "pk": 14835, "fields": {"orig_filename": "Havlicek_Vinzenz_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418690}}, {"model": "metainfo.source", "pk": 14836, "fields": {"orig_filename": "Havranek_Friedrich_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418691}}, {"model": "metainfo.source", "pk": 14837, "fields": {"orig_filename": "Hawelka_Friedrich_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1418694}}, {"model": "metainfo.source", "pk": 14838, "fields": {"orig_filename": "Haltrich_Josef_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419341}}, {"model": "metainfo.source", "pk": 14839, "fields": {"orig_filename": "Hamber_Edmund_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1457859}}, {"model": "metainfo.source", "pk": 14840, "fields": {"orig_filename": "Hamburger_Julius_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419342}}, {"model": "metainfo.source", "pk": 14841, "fields": {"orig_filename": "Hamburger_Rudolf_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419343}}, {"model": "metainfo.source", "pk": 14842, "fields": {"orig_filename": "Hamerle_Andreas_1837_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163f.", "author": "", "orig_id": 1419344}}, {"model": "metainfo.source", "pk": 14843, "fields": {"orig_filename": "Hamernik_Josef_1810_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419346}}, {"model": "metainfo.source", "pk": 14844, "fields": {"orig_filename": "Hamik_Anton-Josef_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1447869}}, {"model": "metainfo.source", "pk": 14845, "fields": {"orig_filename": "Hammel_Rudolf_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164f.", "author": "", "orig_id": 1419349}}, {"model": "metainfo.source", "pk": 14846, "fields": {"orig_filename": "Hammer-Purgstall_Joseph_1774_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165ff.", "author": "", "orig_id": 1419353}}, {"model": "metainfo.source", "pk": 14847, "fields": {"orig_filename": "Hammerle_Alois-Josef_1820_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419419}}, {"model": "metainfo.source", "pk": 14848, "fields": {"orig_filename": "Hammerling_Rupert_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168ff.", "author": "", "orig_id": 1419420}}, {"model": "metainfo.source", "pk": 14849, "fields": {"orig_filename": "Hammerl_Benedikt_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419417}}, {"model": "metainfo.source", "pk": 14850, "fields": {"orig_filename": "Hammerl_Hermann_1853_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419418}}, {"model": "metainfo.source", "pk": 14851, "fields": {"orig_filename": "Hammerschlag_Albert_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419421}}, {"model": "metainfo.source", "pk": 14852, "fields": {"orig_filename": "Hammerschlag_Peter_1902_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419422}}, {"model": "metainfo.source", "pk": 14853, "fields": {"orig_filename": "Hammerschmidt_Karl-Eduard_1801_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419423}}, {"model": "metainfo.source", "pk": 14854, "fields": {"orig_filename": "Hammerstein-Equord_Hans_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170f.", "author": "", "orig_id": 1419424}}, {"model": "metainfo.source", "pk": 14855, "fields": {"orig_filename": "Hammer_Hans_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419350}}, {"model": "metainfo.source", "pk": 14856, "fields": {"orig_filename": "Hammer_Wilhelm-Arthur_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419352}}, {"model": "metainfo.source", "pk": 14857, "fields": {"orig_filename": "Hammer_Wilhelm_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419351}}, {"model": "metainfo.source", "pk": 14858, "fields": {"orig_filename": "Hamme_Eduard-Voitus_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419348}}, {"model": "metainfo.source", "pk": 14859, "fields": {"orig_filename": "Hamm_Wilhelm-Philipp_1820_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419347}}, {"model": "metainfo.source", "pk": 14860, "fields": {"orig_filename": "Hampel_Franz_1834_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419426}}, {"model": "metainfo.source", "pk": 14861, "fields": {"orig_filename": "Hampel_Hans_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419427}}, {"model": "metainfo.source", "pk": 14862, "fields": {"orig_filename": "Hampel_Josef_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419428}}, {"model": "metainfo.source", "pk": 14863, "fields": {"orig_filename": "Hampel_Sigmund-Walter_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171f.", "author": "", "orig_id": 1419429}}, {"model": "metainfo.source", "pk": 14864, "fields": {"orig_filename": "Hampel_Theodor_1802_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419430}}, {"model": "metainfo.source", "pk": 14865, "fields": {"orig_filename": "Hamperl_Roland_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1420726}}, {"model": "metainfo.source", "pk": 14866, "fields": {"orig_filename": "Hampl-Haupolter_Emma_1897_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419431}}, {"model": "metainfo.source", "pk": 14867, "fields": {"orig_filename": "Hamza_Johann_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419432}}, {"model": "metainfo.source", "pk": 14868, "fields": {"orig_filename": "Hanak_Anton_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172f.", "author": "", "orig_id": 1419433}}, {"model": "metainfo.source", "pk": 14869, "fields": {"orig_filename": "Hanaman_Franjo_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173", "author": "", "orig_id": 1419434}}, {"model": "metainfo.source", "pk": 14870, "fields": {"orig_filename": "Hanausek_Eduard_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173", "author": "", "orig_id": 1419435}}, {"model": "metainfo.source", "pk": 14871, "fields": {"orig_filename": "Hanausek_Gustav_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173f.", "author": "", "orig_id": 1419436}}, {"model": "metainfo.source", "pk": 14872, "fields": {"orig_filename": "Hanausek_Thomas-Franz_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 174", "author": "", "orig_id": 1419437}}, {"model": "metainfo.source", "pk": 14873, "fields": {"orig_filename": "Handel-Mazzetti_Eduard_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175", "author": "", "orig_id": 1419511}}, {"model": "metainfo.source", "pk": 14874, "fields": {"orig_filename": "Handel-Mazzetti_Heinrich_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175f.", "author": "", "orig_id": 1419512}}, {"model": "metainfo.source", "pk": 14875, "fields": {"orig_filename": "Handel-Mazzetti_Viktor_1844_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419513}}, {"model": "metainfo.source", "pk": 14876, "fields": {"orig_filename": "Handel_Erasmus_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 174f.", "author": "", "orig_id": 1419438}}, {"model": "metainfo.source", "pk": 14877, "fields": {"orig_filename": "Handel_Rudolf_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175", "author": "", "orig_id": 1419439}}, {"model": "metainfo.source", "pk": 14878, "fields": {"orig_filename": "Handle_Augustin_1774_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419514}}, {"model": "metainfo.source", "pk": 14879, "fields": {"orig_filename": "Handlirsch_Adam_1864_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419515}}, {"model": "metainfo.source", "pk": 14880, "fields": {"orig_filename": "Handlirsch_Anton_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176f.", "author": "", "orig_id": 1419516}}, {"model": "metainfo.source", "pk": 14881, "fields": {"orig_filename": "Handloss_Karl_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177", "author": "", "orig_id": 1419517}}, {"model": "metainfo.source", "pk": 14882, "fields": {"orig_filename": "Handmann_Ludwig-Paul_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177", "author": "", "orig_id": 1419518}}, {"model": "metainfo.source", "pk": 14883, "fields": {"orig_filename": "Handmann_Rudolf_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177f.", "author": "", "orig_id": 1419519}}, {"model": "metainfo.source", "pk": 14884, "fields": {"orig_filename": "Hanf_Blasius_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178", "author": "", "orig_id": 1419520}}, {"model": "metainfo.source", "pk": 14885, "fields": {"orig_filename": "Hango_Hermann_1861_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178", "author": "", "orig_id": 1419521}}, {"model": "metainfo.source", "pk": 14886, "fields": {"orig_filename": "Hanka_Vaclav_1791_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178f.", "author": "", "orig_id": 1419522}}, {"model": "metainfo.source", "pk": 14887, "fields": {"orig_filename": "Hanke_Viktor_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419523}}, {"model": "metainfo.source", "pk": 14888, "fields": {"orig_filename": "Hannack_Josef_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419527}}, {"model": "metainfo.source", "pk": 14889, "fields": {"orig_filename": "Hannak_Emanuel_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419528}}, {"model": "metainfo.source", "pk": 14890, "fields": {"orig_filename": "Hanni_Lucius_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419529}}, {"model": "metainfo.source", "pk": 14891, "fields": {"orig_filename": "Hann_Franz-Gustav_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419524}}, {"model": "metainfo.source", "pk": 14892, "fields": {"orig_filename": "Hann_Georg_1897_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419525}}, {"model": "metainfo.source", "pk": 14893, "fields": {"orig_filename": "Hann_Julius_1839_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179f.", "author": "", "orig_id": 1419526}}, {"model": "metainfo.source", "pk": 14894, "fields": {"orig_filename": "Hanrieder_Norbert_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419530}}, {"model": "metainfo.source", "pk": 14895, "fields": {"orig_filename": "Hansch_Anton_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419532}}, {"model": "metainfo.source", "pk": 14896, "fields": {"orig_filename": "Hansel_Vincenz_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419533}}, {"model": "metainfo.source", "pk": 14897, "fields": {"orig_filename": "Hansen_Theophil_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419534}}, {"model": "metainfo.source", "pk": 14898, "fields": {"orig_filename": "Hanser_Laurentius_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1419535}}, {"model": "metainfo.source", "pk": 14899, "fields": {"orig_filename": "Hansgirg_Anton_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1419536}}, {"model": "metainfo.source", "pk": 14900, "fields": {"orig_filename": "Hansgirg_Karl-Viktor_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1418213}}, {"model": "metainfo.source", "pk": 14901, "fields": {"orig_filename": "Hanslick_Eduard_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183f.", "author": "", "orig_id": 1418214}}, {"model": "metainfo.source", "pk": 14902, "fields": {"orig_filename": "Hantken-Prudnik_Miksa_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184", "author": "", "orig_id": 1418215}}, {"model": "metainfo.source", "pk": 14903, "fields": {"orig_filename": "Hanusch_Alois_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184", "author": "", "orig_id": 1418216}}, {"model": "metainfo.source", "pk": 14904, "fields": {"orig_filename": "Hanusch_Ferdinand_1866_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184f.", "author": "", "orig_id": 1418217}}, {"model": "metainfo.source", "pk": 14905, "fields": {"orig_filename": "Hanusch_Ignaz-Jan_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 185f.", "author": "", "orig_id": 1418218}}, {"model": "metainfo.source", "pk": 14906, "fields": {"orig_filename": "Harambasic_August_1861_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418220}}, {"model": "metainfo.source", "pk": 14907, "fields": {"orig_filename": "Harasser_Georg_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418221}}, {"model": "metainfo.source", "pk": 14908, "fields": {"orig_filename": "Harasser_Urban_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418222}}, {"model": "metainfo.source", "pk": 14909, "fields": {"orig_filename": "Hardegg_Johann-Anton-Leonhard_1773_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418223}}, {"model": "metainfo.source", "pk": 14910, "fields": {"orig_filename": "Hardegg_Johann-Heinrich_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186f.", "author": "", "orig_id": 1418224}}, {"model": "metainfo.source", "pk": 14911, "fields": {"orig_filename": "Hardter_Andreas_1780_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187", "author": "", "orig_id": 1418225}}, {"model": "metainfo.source", "pk": 14912, "fields": {"orig_filename": "Hardtmuth_Joseph_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187", "author": "", "orig_id": 1418226}}, {"model": "metainfo.source", "pk": 14913, "fields": {"orig_filename": "Hardy_John-George_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188", "author": "", "orig_id": 1418228}}, {"model": "metainfo.source", "pk": 14914, "fields": {"orig_filename": "Hardy_John_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187f.", "author": "", "orig_id": 1418227}}, {"model": "metainfo.source", "pk": 14915, "fields": {"orig_filename": "Haring_Johann_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188f.", "author": "", "orig_id": 1418230}}, {"model": "metainfo.source", "pk": 14916, "fields": {"orig_filename": "Hari_Paul_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188", "author": "", "orig_id": 1418229}}, {"model": "metainfo.source", "pk": 14917, "fields": {"orig_filename": "Harlfinger_Richard_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418232}}, {"model": "metainfo.source", "pk": 14918, "fields": {"orig_filename": "Harl_Johann-Paul_1772_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418231}}, {"model": "metainfo.source", "pk": 14919, "fields": {"orig_filename": "Harmati_Sandor_1892_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418233}}, {"model": "metainfo.source", "pk": 14920, "fields": {"orig_filename": "Harmer_Leopold_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189f.", "author": "", "orig_id": 1418234}}, {"model": "metainfo.source", "pk": 14921, "fields": {"orig_filename": "Harnisch_Johann-Baptist_1777_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418235}}, {"model": "metainfo.source", "pk": 14922, "fields": {"orig_filename": "Harpf_Adolf_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418236}}, {"model": "metainfo.source", "pk": 14923, "fields": {"orig_filename": "Harpf_August_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418304}}, {"model": "metainfo.source", "pk": 14924, "fields": {"orig_filename": "Harpner_Gustav_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418305}}, {"model": "metainfo.source", "pk": 14925, "fields": {"orig_filename": "Harrach_Johann-Nepomuk_1828_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190f.", "author": "", "orig_id": 1418306}}, {"model": "metainfo.source", "pk": 14926, "fields": {"orig_filename": "Harrach_Karl-Borr_1761_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191", "author": "", "orig_id": 1418307}}, {"model": "metainfo.source", "pk": 14927, "fields": {"orig_filename": "Harras-Harrasowsky_Philipp_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191", "author": "", "orig_id": 1418308}}, {"model": "metainfo.source", "pk": 14928, "fields": {"orig_filename": "Harrer_Ignaz_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191f.", "author": "", "orig_id": 1418309}}, {"model": "metainfo.source", "pk": 14929, "fields": {"orig_filename": "Hartauer_Andreas_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418310}}, {"model": "metainfo.source", "pk": 14930, "fields": {"orig_filename": "Hartel_Wilhelm_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418311}}, {"model": "metainfo.source", "pk": 14931, "fields": {"orig_filename": "Hartenthal_Mathilde_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418312}}, {"model": "metainfo.source", "pk": 14932, "fields": {"orig_filename": "Hartig_Franz_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193", "author": "", "orig_id": 1418313}}, {"model": "metainfo.source", "pk": 14933, "fields": {"orig_filename": "Hartinger_Anton_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193", "author": "", "orig_id": 1418314}}, {"model": "metainfo.source", "pk": 14934, "fields": {"orig_filename": "Hartlieb-Wallthor_Karl-Vinzenz_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194f.", "author": "", "orig_id": 1418319}}, {"model": "metainfo.source", "pk": 14935, "fields": {"orig_filename": "Hartl_Hans_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193f.", "author": "", "orig_id": 1418315}}, {"model": "metainfo.source", "pk": 14936, "fields": {"orig_filename": "Hartl_Heinrich_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418316}}, {"model": "metainfo.source", "pk": 14937, "fields": {"orig_filename": "Hartl_Vinzenz_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418317}}, {"model": "metainfo.source", "pk": 14938, "fields": {"orig_filename": "Hartl_Wenzel_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418318}}, {"model": "metainfo.source", "pk": 14939, "fields": {"orig_filename": "Hartmann-Franzenshuld_Ernst_1840_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418328}}, {"model": "metainfo.source", "pk": 14940, "fields": {"orig_filename": "Hartmann-Franzenshuld_Johann_1764_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418391}}, {"model": "metainfo.source", "pk": 14941, "fields": {"orig_filename": "Hartmann_Ernst_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418320}}, {"model": "metainfo.source", "pk": 14942, "fields": {"orig_filename": "Hadzic_Osman-Nuri_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418927}}, {"model": "metainfo.source", "pk": 14943, "fields": {"orig_filename": "Haeckel_Anton__.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418929}}, {"model": "metainfo.source", "pk": 14944, "fields": {"orig_filename": "Haecker_Ludwig-Friedrich_1822_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418930}}, {"model": "metainfo.source", "pk": 14945, "fields": {"orig_filename": "Haefele_Engelhard_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418931}}, {"model": "metainfo.source", "pk": 14946, "fields": {"orig_filename": "Haehnel_Amalie_1806_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418932}}, {"model": "metainfo.source", "pk": 14947, "fields": {"orig_filename": "Haemmerle_Baptist_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418933}}, {"model": "metainfo.source", "pk": 14948, "fields": {"orig_filename": "Haemmerle_Casimir_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418934}}, {"model": "metainfo.source", "pk": 14949, "fields": {"orig_filename": "Haemmerle_Franz-Martin_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135f.", "author": "", "orig_id": 1418935}}, {"model": "metainfo.source", "pk": 14950, "fields": {"orig_filename": "Haemmerle_Martin_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418936}}, {"model": "metainfo.source", "pk": 14951, "fields": {"orig_filename": "Haemmerle_Otto_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418937}}, {"model": "metainfo.source", "pk": 14952, "fields": {"orig_filename": "Haemmerle_Theodor_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418938}}, {"model": "metainfo.source", "pk": 14953, "fields": {"orig_filename": "Haemmerle_Victor_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136f.", "author": "", "orig_id": 1419005}}, {"model": "metainfo.source", "pk": 14954, "fields": {"orig_filename": "Haenisch_Aloys_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 137", "author": "", "orig_id": 1419006}}, {"model": "metainfo.source", "pk": 14955, "fields": {"orig_filename": "Haenke_Thaddaeus-Peregrinus_1761_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 137f.", "author": "", "orig_id": 1419007}}, {"model": "metainfo.source", "pk": 14956, "fields": {"orig_filename": "Haensel_Peter_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419008}}, {"model": "metainfo.source", "pk": 14957, "fields": {"orig_filename": "Haerdtl_Eduard_1861_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419009}}, {"model": "metainfo.source", "pk": 14958, "fields": {"orig_filename": "Haerdtl_Guido_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419010}}, {"model": "metainfo.source", "pk": 14959, "fields": {"orig_filename": "Haerdtl_Hugo_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138f.", "author": "", "orig_id": 1419011}}, {"model": "metainfo.source", "pk": 14960, "fields": {"orig_filename": "Haerdtl_Josef_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419012}}, {"model": "metainfo.source", "pk": 14961, "fields": {"orig_filename": "Haerdtl_Karl_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419013}}, {"model": "metainfo.source", "pk": 14962, "fields": {"orig_filename": "Haettenschwiller_Joseph_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419014}}, {"model": "metainfo.source", "pk": 14963, "fields": {"orig_filename": "Haeusle_Johann-Michael_1809_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419015}}, {"model": "metainfo.source", "pk": 14964, "fields": {"orig_filename": "Haeusle_Joseph_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139f.", "author": "", "orig_id": 1419016}}, {"model": "metainfo.source", "pk": 14965, "fields": {"orig_filename": "Haeussermann_Reinhold_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140", "author": "", "orig_id": 1419017}}, {"model": "metainfo.source", "pk": 14966, "fields": {"orig_filename": "Hafferl_Franz-Anton_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140", "author": "", "orig_id": 1419019}}, {"model": "metainfo.source", "pk": 14967, "fields": {"orig_filename": "Hafferl_Josef-Heinrich_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140f.", "author": "", "orig_id": 1419020}}, {"model": "metainfo.source", "pk": 14968, "fields": {"orig_filename": "Haffner_August-Otto-Wilhelm_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141", "author": "", "orig_id": 1419021}}, {"model": "metainfo.source", "pk": 14969, "fields": {"orig_filename": "Haffner_Karl_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141", "author": "", "orig_id": 1419023}}, {"model": "metainfo.source", "pk": 14970, "fields": {"orig_filename": "Hafner_Josef_1799_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141f.", "author": "", "orig_id": 1419024}}, {"model": "metainfo.source", "pk": 14971, "fields": {"orig_filename": "Hafner_Josef_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142", "author": "", "orig_id": 1419025}}, {"model": "metainfo.source", "pk": 14972, "fields": {"orig_filename": "Hafner_Karl_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142", "author": "", "orig_id": 1419026}}, {"model": "metainfo.source", "pk": 14973, "fields": {"orig_filename": "Hafner_Karl_1905_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142f.", "author": "", "orig_id": 1419027}}, {"model": "metainfo.source", "pk": 14974, "fields": {"orig_filename": "Hagenauer_Arnold_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419094}}, {"model": "metainfo.source", "pk": 14975, "fields": {"orig_filename": "Hagenhofer_Franz_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419095}}, {"model": "metainfo.source", "pk": 14976, "fields": {"orig_filename": "Hagen_Johann-Georg_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419028}}, {"model": "metainfo.source", "pk": 14977, "fields": {"orig_filename": "Hagen_Kaspar_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419090}}, {"model": "metainfo.source", "pk": 14978, "fields": {"orig_filename": "Hagen_Ludwig_1824_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419091}}, {"model": "metainfo.source", "pk": 14979, "fields": {"orig_filename": "Hagen_Martin_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143f.", "author": "", "orig_id": 1419092}}, {"model": "metainfo.source", "pk": 14980, "fields": {"orig_filename": "Hagen_Theodor_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419093}}, {"model": "metainfo.source", "pk": 14981, "fields": {"orig_filename": "Hager-Allentsteig_Franz_1750_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145", "author": "", "orig_id": 1419101}}, {"model": "metainfo.source", "pk": 14982, "fields": {"orig_filename": "Hager_Edmund_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144f.", "author": "", "orig_id": 1419098}}, {"model": "metainfo.source", "pk": 14983, "fields": {"orig_filename": "Hager_Evermod_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145", "author": "", "orig_id": 1419099}}, {"model": "metainfo.source", "pk": 14984, "fields": {"orig_filename": "Hagin_Heinrich_1875_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145f.", "author": "", "orig_id": 1419102}}, {"model": "metainfo.source", "pk": 14985, "fields": {"orig_filename": "Hagleitner_Kaspar-Benedikt_1779_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 146", "author": "", "orig_id": 1419103}}, {"model": "metainfo.source", "pk": 14986, "fields": {"orig_filename": "Hagn_Theoderich_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 146", "author": "", "orig_id": 1419104}}, {"model": "metainfo.source", "pk": 14987, "fields": {"orig_filename": "Hahnekamp_Georg_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419108}}, {"model": "metainfo.source", "pk": 14988, "fields": {"orig_filename": "Hahn_Hans_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419105}}, {"model": "metainfo.source", "pk": 14989, "fields": {"orig_filename": "Hahn_Johann-Georg_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419106}}, {"model": "metainfo.source", "pk": 14990, "fields": {"orig_filename": "Haibel_Jakob_1762_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147f.", "author": "", "orig_id": 1419109}}, {"model": "metainfo.source", "pk": 14991, "fields": {"orig_filename": "Haibel_Sophie_1767_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419110}}, {"model": "metainfo.source", "pk": 14992, "fields": {"orig_filename": "Haidacher_Sebastian_1866_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149", "author": "", "orig_id": 1419171}}, {"model": "metainfo.source", "pk": 14993, "fields": {"orig_filename": "Haidegger_Wendelin_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149", "author": "", "orig_id": 1419172}}, {"model": "metainfo.source", "pk": 14994, "fields": {"orig_filename": "Haider_Franz_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149f.", "author": "", "orig_id": 1419173}}, {"model": "metainfo.source", "pk": 14995, "fields": {"orig_filename": "Haidinger_Wilhelm_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419174}}, {"model": "metainfo.source", "pk": 14996, "fields": {"orig_filename": "Haid_Franz_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419168}}, {"model": "metainfo.source", "pk": 14997, "fields": {"orig_filename": "Haid_Josef-Anton_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419169}}, {"model": "metainfo.source", "pk": 14998, "fields": {"orig_filename": "Haid_Kassian_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148f.", "author": "", "orig_id": 1419170}}, {"model": "metainfo.source", "pk": 14999, "fields": {"orig_filename": "Haimann_Giuseppe_1828_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419175}}, {"model": "metainfo.source", "pk": 15000, "fields": {"orig_filename": "Haimberger_Anton_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419176}}, {"model": "metainfo.source", "pk": 15001, "fields": {"orig_filename": "Haimerl_Franz-Xaver_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150f.", "author": "", "orig_id": 1419177}}, {"model": "metainfo.source", "pk": 15002, "fields": {"orig_filename": "Haindl_Anton-Franz_1803_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151", "author": "", "orig_id": 1419179}}, {"model": "metainfo.source", "pk": 15003, "fields": {"orig_filename": "Hainisch_Anton_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151f.", "author": "", "orig_id": 1419181}}, {"model": "metainfo.source", "pk": 15004, "fields": {"orig_filename": "Hainisch_Marianne_1839_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 152", "author": "", "orig_id": 1419182}}, {"model": "metainfo.source", "pk": 15005, "fields": {"orig_filename": "Hainisch_Michael_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 152f.", "author": "", "orig_id": 1419183}}, {"model": "metainfo.source", "pk": 15006, "fields": {"orig_filename": "Hainmueller_Otto_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 153", "author": "", "orig_id": 1419184}}, {"model": "metainfo.source", "pk": 15007, "fields": {"orig_filename": "Hain_Joseph_1809_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151", "author": "", "orig_id": 1419178}}, {"model": "metainfo.source", "pk": 15008, "fields": {"orig_filename": "Haiszler_Georg_1761_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 153", "author": "", "orig_id": 1419185}}, {"model": "metainfo.source", "pk": 15009, "fields": {"orig_filename": "Haitinger_Ludwig-Camillo_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 154", "author": "", "orig_id": 1419186}}, {"model": "metainfo.source", "pk": 15010, "fields": {"orig_filename": "Haitinger_Max_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 154f.", "author": "", "orig_id": 1419187}}, {"model": "metainfo.source", "pk": 15011, "fields": {"orig_filename": "Haizinger_Amalie_1800_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419188}}, {"model": "metainfo.source", "pk": 15012, "fields": {"orig_filename": "Haizinger_Anton_1796_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419189}}, {"model": "metainfo.source", "pk": 15013, "fields": {"orig_filename": "Hajdrih_Anton_1842_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419190}}, {"model": "metainfo.source", "pk": 15014, "fields": {"orig_filename": "Hajek_Markusz_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419191}}, {"model": "metainfo.source", "pk": 15015, "fields": {"orig_filename": "Hajek_Salomon_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155f.", "author": "", "orig_id": 1419192}}, {"model": "metainfo.source", "pk": 15016, "fields": {"orig_filename": "Hajnik_Emerich_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419247}}, {"model": "metainfo.source", "pk": 15017, "fields": {"orig_filename": "Hajnis_Frantisek_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419248}}, {"model": "metainfo.source", "pk": 15018, "fields": {"orig_filename": "Hakman_Eugen_1794_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419249}}, {"model": "metainfo.source", "pk": 15019, "fields": {"orig_filename": "Halacsy_Eugen_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419250}}, {"model": "metainfo.source", "pk": 15020, "fields": {"orig_filename": "Halasz_Emerich_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156f.", "author": "", "orig_id": 1419251}}, {"model": "metainfo.source", "pk": 15021, "fields": {"orig_filename": "Halauska_Ludwig_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157", "author": "", "orig_id": 1419252}}, {"model": "metainfo.source", "pk": 15022, "fields": {"orig_filename": "Halban_Alfred_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157", "author": "", "orig_id": 1419253}}, {"model": "metainfo.source", "pk": 15023, "fields": {"orig_filename": "Halban_Josef_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419255}}, {"model": "metainfo.source", "pk": 15024, "fields": {"orig_filename": "Halban_Leo_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419256}}, {"model": "metainfo.source", "pk": 15025, "fields": {"orig_filename": "Halberstam_Sophie_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419258}}, {"model": "metainfo.source", "pk": 15026, "fields": {"orig_filename": "Halbherr_Bernardino_1844_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158f.", "author": "", "orig_id": 1419259}}, {"model": "metainfo.source", "pk": 15027, "fields": {"orig_filename": "Halbherr_Federico_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419263}}, {"model": "metainfo.source", "pk": 15028, "fields": {"orig_filename": "Halbhuber-Festwill_Anton_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419264}}, {"model": "metainfo.source", "pk": 15029, "fields": {"orig_filename": "Halbig_Andreas_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419265}}, {"model": "metainfo.source", "pk": 15030, "fields": {"orig_filename": "Halek_Vitezlav_1835_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159f.", "author": "", "orig_id": 1419266}}, {"model": "metainfo.source", "pk": 15031, "fields": {"orig_filename": "Halirsch_Friedrich-Ludwig_1802_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419268}}, {"model": "metainfo.source", "pk": 15032, "fields": {"orig_filename": "Halir_Karl_1859_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419267}}, {"model": "metainfo.source", "pk": 15033, "fields": {"orig_filename": "Hallaschka_Cassian_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419270}}, {"model": "metainfo.source", "pk": 15034, "fields": {"orig_filename": "Halla_Joseph_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419269}}, {"model": "metainfo.source", "pk": 15035, "fields": {"orig_filename": "Hallenstein_Konrad-Adolf_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419272}}, {"model": "metainfo.source", "pk": 15036, "fields": {"orig_filename": "Haller-Hallenburg_Cezar_1822_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419331}}, {"model": "metainfo.source", "pk": 15037, "fields": {"orig_filename": "Haller_Franz_1796_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419329}}, {"model": "metainfo.source", "pk": 15038, "fields": {"orig_filename": "Haller_Johann-Ev_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419330}}, {"model": "metainfo.source", "pk": 15039, "fields": {"orig_filename": "Hallmayer_Viktorin_1831_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419332}}, {"model": "metainfo.source", "pk": 15040, "fields": {"orig_filename": "Hallwich_Hermann_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161f.", "author": "", "orig_id": 1419333}}, {"model": "metainfo.source", "pk": 15041, "fields": {"orig_filename": "Halm_Anton_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162", "author": "", "orig_id": 1419334}}, {"model": "metainfo.source", "pk": 15042, "fields": {"orig_filename": "Halter_Josef_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162", "author": "", "orig_id": 1419338}}, {"model": "metainfo.source", "pk": 15043, "fields": {"orig_filename": "Halter_Rudolf_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162f.", "author": "", "orig_id": 1419339}}, {"model": "metainfo.source", "pk": 15044, "fields": {"orig_filename": "Haltmeyer_Georg_1803_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419340}}, {"model": "metainfo.source", "pk": 15045, "fields": {"orig_filename": "Gura_Eugen_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418481}}, {"model": "metainfo.source", "pk": 15046, "fields": {"orig_filename": "Guritzer_Johann_1897_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1448064}}, {"model": "metainfo.source", "pk": 15047, "fields": {"orig_filename": "Gurk_Eduard_1801_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108f.", "author": "", "orig_id": 1418553}}, {"model": "metainfo.source", "pk": 15048, "fields": {"orig_filename": "Gurlitt_Ludwig_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418554}}, {"model": "metainfo.source", "pk": 15049, "fields": {"orig_filename": "Gurlitt_Wilhelm_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418555}}, {"model": "metainfo.source", "pk": 15050, "fields": {"orig_filename": "Gurschner_Alice_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418556}}, {"model": "metainfo.source", "pk": 15051, "fields": {"orig_filename": "Gurschner_Emil_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418557}}, {"model": "metainfo.source", "pk": 15052, "fields": {"orig_filename": "Guschelbauer_Edmund_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109f.", "author": "", "orig_id": 1418558}}, {"model": "metainfo.source", "pk": 15053, "fields": {"orig_filename": "Guseck-Glankirchen_Oskar_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110", "author": "", "orig_id": 1418559}}, {"model": "metainfo.source", "pk": 15054, "fields": {"orig_filename": "Gussenbauer_Karl_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110", "author": "", "orig_id": 1418560}}, {"model": "metainfo.source", "pk": 15055, "fields": {"orig_filename": "Gustermann_Anton-Wilhelm_1750_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110f.", "author": "", "orig_id": 1418561}}, {"model": "metainfo.source", "pk": 15056, "fields": {"orig_filename": "Guth-Jarkovsky_Jiri-Stanislav_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418562}}, {"model": "metainfo.source", "pk": 15057, "fields": {"orig_filename": "Gutheil-Schoder_Marie_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418563}}, {"model": "metainfo.source", "pk": 15058, "fields": {"orig_filename": "Gutjahr_Franz-Seraph_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418564}}, {"model": "metainfo.source", "pk": 15059, "fields": {"orig_filename": "Gutmann_Max_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111f.", "author": "", "orig_id": 1418565}}, {"model": "metainfo.source", "pk": 15060, "fields": {"orig_filename": "Gutmann_Wilhelm_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418566}}, {"model": "metainfo.source", "pk": 15061, "fields": {"orig_filename": "Guttenberg_Adolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418567}}, {"model": "metainfo.source", "pk": 15062, "fields": {"orig_filename": "Guttenberg_Emil_1841_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418568}}, {"model": "metainfo.source", "pk": 15063, "fields": {"orig_filename": "Guttmann_Leopoldine_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112f.", "author": "", "orig_id": 1418569}}, {"model": "metainfo.source", "pk": 15064, "fields": {"orig_filename": "Guttmann_Oskar_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418570}}, {"model": "metainfo.source", "pk": 15065, "fields": {"orig_filename": "Gutwinski_Roman_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418571}}, {"model": "metainfo.source", "pk": 15066, "fields": {"orig_filename": "Guzman_Albert_1841_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418572}}, {"model": "metainfo.source", "pk": 15067, "fields": {"orig_filename": "Gwercher_Hans_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418573}}, {"model": "metainfo.source", "pk": 15068, "fields": {"orig_filename": "Gwinner_Robert_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418574}}, {"model": "metainfo.source", "pk": 15069, "fields": {"orig_filename": "Gyarmathi_Samuel_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418575}}, {"model": "metainfo.source", "pk": 15070, "fields": {"orig_filename": "Gyoery-Nadudvar_Arpad_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113f.", "author": "", "orig_id": 1418576}}, {"model": "metainfo.source", "pk": 15071, "fields": {"orig_filename": "Gyrowetz_Adalbert_1763_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114", "author": "", "orig_id": 1418647}}, {"model": "metainfo.source", "pk": 15072, "fields": {"orig_filename": "Gyulai-Maros-Nemeth-Nadaska_Franz_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114f.", "author": "", "orig_id": 1418649}}, {"model": "metainfo.source", "pk": 15073, "fields": {"orig_filename": "Gyulai-Maros-Nemeth-Nadaska_Ignaz_1765_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418650}}, {"model": "metainfo.source", "pk": 15074, "fields": {"orig_filename": "Gyulai_Paul_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114", "author": "", "orig_id": 1418648}}, {"model": "metainfo.source", "pk": 15075, "fields": {"orig_filename": "Haader_Hermine_1885_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418651}}, {"model": "metainfo.source", "pk": 15076, "fields": {"orig_filename": "Haagn_Julius_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418653}}, {"model": "metainfo.source", "pk": 15077, "fields": {"orig_filename": "Haag_Joseph_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418652}}, {"model": "metainfo.source", "pk": 15078, "fields": {"orig_filename": "Haanen_Cecil_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418656}}, {"model": "metainfo.source", "pk": 15079, "fields": {"orig_filename": "Haanen_Remi_1812_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418657}}, {"model": "metainfo.source", "pk": 15080, "fields": {"orig_filename": "Haan_Friedrich_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115f.", "author": "", "orig_id": 1418654}}, {"model": "metainfo.source", "pk": 15081, "fields": {"orig_filename": "Haan_Mathias-Wilhelm_1737_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418655}}, {"model": "metainfo.source", "pk": 15082, "fields": {"orig_filename": "Haardt-Hartenthurn_Vinzenz_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116f.", "author": "", "orig_id": 1418658}}, {"model": "metainfo.source", "pk": 15083, "fields": {"orig_filename": "Haas-Teppichen_Eduard_1827_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418669}}, {"model": "metainfo.source", "pk": 15084, "fields": {"orig_filename": "Haase_Adolf-Theodor_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418670}}, {"model": "metainfo.source", "pk": 15085, "fields": {"orig_filename": "Haase_Josef-Ludwig_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418671}}, {"model": "metainfo.source", "pk": 15086, "fields": {"orig_filename": "Haase_Ludwig_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120f.", "author": "", "orig_id": 1418740}}, {"model": "metainfo.source", "pk": 15087, "fields": {"orig_filename": "Haase_Theodor-Karl_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 121", "author": "", "orig_id": 1418741}}, {"model": "metainfo.source", "pk": 15088, "fields": {"orig_filename": "Haase_Wolfgang_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 121f.", "author": "", "orig_id": 1418742}}, {"model": "metainfo.source", "pk": 15089, "fields": {"orig_filename": "Haas_Alois_1805_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117", "author": "", "orig_id": 1418659}}, {"model": "metainfo.source", "pk": 15090, "fields": {"orig_filename": "Haas_Arthur-Erich_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117", "author": "", "orig_id": 1418660}}, {"model": "metainfo.source", "pk": 15091, "fields": {"orig_filename": "Haas_Georg-Emanuel_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117f.", "author": "", "orig_id": 1418661}}, {"model": "metainfo.source", "pk": 15092, "fields": {"orig_filename": "Haas_Hermann_1846_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418662}}, {"model": "metainfo.source", "pk": 15093, "fields": {"orig_filename": "Haas_Karl_1825_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418663}}, {"model": "metainfo.source", "pk": 15094, "fields": {"orig_filename": "Haas_Michael_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418664}}, {"model": "metainfo.source", "pk": 15095, "fields": {"orig_filename": "Haas_Paul_1899_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118f.", "author": "", "orig_id": 1418665}}, {"model": "metainfo.source", "pk": 15096, "fields": {"orig_filename": "Haas_Philipp_1791_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 119", "author": "", "orig_id": 1418666}}, {"model": "metainfo.source", "pk": 15097, "fields": {"orig_filename": "Haas_Rudolf_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 119", "author": "", "orig_id": 1418667}}, {"model": "metainfo.source", "pk": 15098, "fields": {"orig_filename": "Haas_Rudolf_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418668}}, {"model": "metainfo.source", "pk": 15099, "fields": {"orig_filename": "Habart_Johann_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418744}}, {"model": "metainfo.source", "pk": 15100, "fields": {"orig_filename": "Habel-Malinski_Eduard_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418745}}, {"model": "metainfo.source", "pk": 15101, "fields": {"orig_filename": "Haber-Linsberg_Louis_1804_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418746}}, {"model": "metainfo.source", "pk": 15102, "fields": {"orig_filename": "Haberda_Albin_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122f.", "author": "", "orig_id": 1418747}}, {"model": "metainfo.source", "pk": 15103, "fields": {"orig_filename": "Haberditzl_Franz-Martin_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418748}}, {"model": "metainfo.source", "pk": 15104, "fields": {"orig_filename": "Haberer-Kremshohenstein_Theodor_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418750}}, {"model": "metainfo.source", "pk": 15105, "fields": {"orig_filename": "Haberer_Ludwig_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418749}}, {"model": "metainfo.source", "pk": 15106, "fields": {"orig_filename": "Haberlandt_Edith_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124", "author": "", "orig_id": 1418752}}, {"model": "metainfo.source", "pk": 15107, "fields": {"orig_filename": "Haberlandt_Friedrich_1826_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124", "author": "", "orig_id": 1418753}}, {"model": "metainfo.source", "pk": 15108, "fields": {"orig_filename": "Haberlandt_Gottlieb_1854_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124f.", "author": "", "orig_id": 1418754}}, {"model": "metainfo.source", "pk": 15109, "fields": {"orig_filename": "Haberlandt_Herbert-Eduard_1904_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2005234}}, {"model": "metainfo.source", "pk": 15110, "fields": {"orig_filename": "Haberlandt_Ludwig_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125", "author": "", "orig_id": 1418755}}, {"model": "metainfo.source", "pk": 15111, "fields": {"orig_filename": "Haberlandt_Michael_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125", "author": "", "orig_id": 1418756}}, {"model": "metainfo.source", "pk": 15112, "fields": {"orig_filename": "Haberler_Franz_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418758}}, {"model": "metainfo.source", "pk": 15113, "fields": {"orig_filename": "Haberle_Karl-Konstantin_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125f.", "author": "", "orig_id": 1418757}}, {"model": "metainfo.source", "pk": 15114, "fields": {"orig_filename": "Haberl_Gotthard-Johannes_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123f.", "author": "", "orig_id": 1418751}}, {"model": "metainfo.source", "pk": 15115, "fields": {"orig_filename": "Habermann_Franz_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2005581}}, {"model": "metainfo.source", "pk": 15116, "fields": {"orig_filename": "Habermann_Johann-Ev_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418759}}, {"model": "metainfo.source", "pk": 15117, "fields": {"orig_filename": "Habermann_Josef_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418760}}, {"model": "metainfo.source", "pk": 15118, "fields": {"orig_filename": "Habermann_Peter_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126f.", "author": "", "orig_id": 1418761}}, {"model": "metainfo.source", "pk": 15119, "fields": {"orig_filename": "Habermayer_Christoph_1768_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418762}}, {"model": "metainfo.source", "pk": 15120, "fields": {"orig_filename": "Habert_Johann-Ev_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418825}}, {"model": "metainfo.source", "pk": 15121, "fields": {"orig_filename": "Haberzettl_Erna_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145075}}, {"model": "metainfo.source", "pk": 15122, "fields": {"orig_filename": "Habe_Hans_1911_1977.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443985}}, {"model": "metainfo.source", "pk": 15123, "fields": {"orig_filename": "Habich_Otto_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418826}}, {"model": "metainfo.source", "pk": 15124, "fields": {"orig_filename": "Habietinek_Karl_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418827}}, {"model": "metainfo.source", "pk": 15125, "fields": {"orig_filename": "Hablawetz_August-Egon_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127f.", "author": "", "orig_id": 1418828}}, {"model": "metainfo.source", "pk": 15126, "fields": {"orig_filename": "Haboeck_Franz_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418829}}, {"model": "metainfo.source", "pk": 15127, "fields": {"orig_filename": "Habrda_Johann_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418830}}, {"model": "metainfo.source", "pk": 15128, "fields": {"orig_filename": "Habrmann_Gustav_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418831}}, {"model": "metainfo.source", "pk": 15129, "fields": {"orig_filename": "Habtmann_Georg-Johann_1784_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418832}}, {"model": "metainfo.source", "pk": 15130, "fields": {"orig_filename": "Hackelberg-Landau_Karl_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130", "author": "", "orig_id": 1418838}}, {"model": "metainfo.source", "pk": 15131, "fields": {"orig_filename": "Hackel_Anton_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129f.", "author": "", "orig_id": 1418836}}, {"model": "metainfo.source", "pk": 15132, "fields": {"orig_filename": "Hackel_Eduard_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130", "author": "", "orig_id": 1418837}}, {"model": "metainfo.source", "pk": 15133, "fields": {"orig_filename": "Hacker_Aemilius_1870_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130f.", "author": "", "orig_id": 1418839}}, {"model": "metainfo.source", "pk": 15134, "fields": {"orig_filename": "Hacker_Benedikt_1769_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 131", "author": "", "orig_id": 1418915}}, {"model": "metainfo.source", "pk": 15135, "fields": {"orig_filename": "Hacker_Viktor_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 131f.", "author": "", "orig_id": 1418916}}, {"model": "metainfo.source", "pk": 15136, "fields": {"orig_filename": "Hackher-Hart_Franz-Xaver_1764_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418917}}, {"model": "metainfo.source", "pk": 15137, "fields": {"orig_filename": "Hackhofer_Josef_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418918}}, {"model": "metainfo.source", "pk": 15138, "fields": {"orig_filename": "Hacksteiner_Johann_1770_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418919}}, {"model": "metainfo.source", "pk": 15139, "fields": {"orig_filename": "Hackstock_Karl_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418920}}, {"model": "metainfo.source", "pk": 15140, "fields": {"orig_filename": "Hack_Josefine_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129", "author": "", "orig_id": 1418835}}, {"model": "metainfo.source", "pk": 15141, "fields": {"orig_filename": "Hack_Josef_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129", "author": "", "orig_id": 1418834}}, {"model": "metainfo.source", "pk": 15142, "fields": {"orig_filename": "Hacquet-Motte_Belsazar_1739_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132f.", "author": "", "orig_id": 1418921}}, {"model": "metainfo.source", "pk": 15143, "fields": {"orig_filename": "Hac_Rudolf_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128f.", "author": "", "orig_id": 1418833}}, {"model": "metainfo.source", "pk": 15144, "fields": {"orig_filename": "Hadaczek_Karl_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133", "author": "", "orig_id": 1418922}}, {"model": "metainfo.source", "pk": 15145, "fields": {"orig_filename": "Haderlap_Lipe_1849_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133", "author": "", "orig_id": 1418923}}, {"model": "metainfo.source", "pk": 15146, "fields": {"orig_filename": "Hadik-Futak_Johann_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133f.", "author": "", "orig_id": 1418924}}, {"model": "metainfo.source", "pk": 15147, "fields": {"orig_filename": "Hadwiger_Alois_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418925}}, {"model": "metainfo.source", "pk": 15148, "fields": {"orig_filename": "Hadwiger_Viktor_1878_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418926}}, {"model": "metainfo.source", "pk": 15149, "fields": {"orig_filename": "Gruden_Josip-Valentin_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419493}}, {"model": "metainfo.source", "pk": 15150, "fields": {"orig_filename": "Grueber_Paul_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419494}}, {"model": "metainfo.source", "pk": 15151, "fields": {"orig_filename": "Gruebl_Raimund_1847_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419495}}, {"model": "metainfo.source", "pk": 15152, "fields": {"orig_filename": "Gruenbaum_Caroline_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419501}}, {"model": "metainfo.source", "pk": 15153, "fields": {"orig_filename": "Gruenbaum_Fritz_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419502}}, {"model": "metainfo.source", "pk": 15154, "fields": {"orig_filename": "Gruenbaum_Johann-Christoph_1785_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419503}}, {"model": "metainfo.source", "pk": 15155, "fields": {"orig_filename": "Gruenbaum_Lorenz_1791_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419504}}, {"model": "metainfo.source", "pk": 15156, "fields": {"orig_filename": "Gruenbeck_Heinrich_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419506}}, {"model": "metainfo.source", "pk": 15157, "fields": {"orig_filename": "Gruenberger_Alfred_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88f.", "author": "", "orig_id": 1419509}}, {"model": "metainfo.source", "pk": 15158, "fields": {"orig_filename": "Gruenberg_Johanna_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88", "author": "", "orig_id": 1419507}}, {"model": "metainfo.source", "pk": 15159, "fields": {"orig_filename": "Gruenberg_Karl_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88", "author": "", "orig_id": 1419508}}, {"model": "metainfo.source", "pk": 15160, "fields": {"orig_filename": "Gruendorf_Karl_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1419510}}, {"model": "metainfo.source", "pk": 15161, "fields": {"orig_filename": "Gruenert_Max_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418194}}, {"model": "metainfo.source", "pk": 15162, "fields": {"orig_filename": "Gruener_Joseph-Sebastian_1780_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418192}}, {"model": "metainfo.source", "pk": 15163, "fields": {"orig_filename": "Gruener_Karl-Franz_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418193}}, {"model": "metainfo.source", "pk": 15164, "fields": {"orig_filename": "Gruenewald_Alfred_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418195}}, {"model": "metainfo.source", "pk": 15165, "fields": {"orig_filename": "Gruenfeld_Alfred_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418196}}, {"model": "metainfo.source", "pk": 15166, "fields": {"orig_filename": "Gruenfeld_Heinrich_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418197}}, {"model": "metainfo.source", "pk": 15167, "fields": {"orig_filename": "Gruenfeld_Josef_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418198}}, {"model": "metainfo.source", "pk": 15168, "fields": {"orig_filename": "Gruenfeld_Paul-Stefan_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418199}}, {"model": "metainfo.source", "pk": 15169, "fields": {"orig_filename": "Gruenfeld_Sophie_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418200}}, {"model": "metainfo.source", "pk": 15170, "fields": {"orig_filename": "Gruenhut_Karl-Samuel_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90f.", "author": "", "orig_id": 1418201}}, {"model": "metainfo.source", "pk": 15171, "fields": {"orig_filename": "Grueninger_Franz-Xaver_1790_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418202}}, {"model": "metainfo.source", "pk": 15172, "fields": {"orig_filename": "Gruenne_Karl_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418203}}, {"model": "metainfo.source", "pk": 15173, "fields": {"orig_filename": "Gruenne_Philipp-Ferdinand_1762_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418204}}, {"model": "metainfo.source", "pk": 15174, "fields": {"orig_filename": "Gruenwald-Zerkovitz_Sidonie_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92f.", "author": "", "orig_id": 1418209}}, {"model": "metainfo.source", "pk": 15175, "fields": {"orig_filename": "Gruenwald_Anton-Adalbert_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418205}}, {"model": "metainfo.source", "pk": 15176, "fields": {"orig_filename": "Gruenwald_Anton-Karl_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418206}}, {"model": "metainfo.source", "pk": 15177, "fields": {"orig_filename": "Gruenwald_Bela_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418207}}, {"model": "metainfo.source", "pk": 15178, "fields": {"orig_filename": "Gruenwald_Josef_1876_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418208}}, {"model": "metainfo.source", "pk": 15179, "fields": {"orig_filename": "Gruen_Adolf_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419496}}, {"model": "metainfo.source", "pk": 15180, "fields": {"orig_filename": "Gruen_Dionys_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419498}}, {"model": "metainfo.source", "pk": 15181, "fields": {"orig_filename": "Gruen_Jakob-Moritz_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86f.", "author": "", "orig_id": 1419499}}, {"model": "metainfo.source", "pk": 15182, "fields": {"orig_filename": "Gruen_Johann-Nep_1751_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419500}}, {"model": "metainfo.source", "pk": 15183, "fields": {"orig_filename": "Gruessner_Anton_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418210}}, {"model": "metainfo.source", "pk": 15184, "fields": {"orig_filename": "Gruhenberg_Myra_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373", "author": "", "orig_id": 1451693}}, {"model": "metainfo.source", "pk": 15185, "fields": {"orig_filename": "Grundmann_Franz_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418212}}, {"model": "metainfo.source", "pk": 15186, "fields": {"orig_filename": "Grund_Alfred_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418211}}, {"model": "metainfo.source", "pk": 15187, "fields": {"orig_filename": "Gruner_Ferdinand_1873_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93f.", "author": "", "orig_id": 1418280}}, {"model": "metainfo.source", "pk": 15188, "fields": {"orig_filename": "Grunow_Albert_1826_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 94", "author": "", "orig_id": 1418281}}, {"model": "metainfo.source", "pk": 15189, "fields": {"orig_filename": "Gruntzel_Josef_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 94f.", "author": "", "orig_id": 1418282}}, {"model": "metainfo.source", "pk": 15190, "fields": {"orig_filename": "Gruscha_Anton-Josef_1820_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418283}}, {"model": "metainfo.source", "pk": 15191, "fields": {"orig_filename": "Gruss_Anton_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418284}}, {"model": "metainfo.source", "pk": 15192, "fields": {"orig_filename": "Gruss_Johann_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418285}}, {"model": "metainfo.source", "pk": 15193, "fields": {"orig_filename": "Grutsch_Franz-Xaver_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418287}}, {"model": "metainfo.source", "pk": 15194, "fields": {"orig_filename": "Grutsch_Franz_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418286}}, {"model": "metainfo.source", "pk": 15195, "fields": {"orig_filename": "Grysar_Karl-Josef_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418288}}, {"model": "metainfo.source", "pk": 15196, "fields": {"orig_filename": "Grzybowski_Jozef_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418289}}, {"model": "metainfo.source", "pk": 15197, "fields": {"orig_filename": "Gsaller_Carl_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418290}}, {"model": "metainfo.source", "pk": 15198, "fields": {"orig_filename": "Gschiel_Jakob_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418291}}, {"model": "metainfo.source", "pk": 15199, "fields": {"orig_filename": "Gschliesser_Ilka_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418292}}, {"model": "metainfo.source", "pk": 15200, "fields": {"orig_filename": "Gschwandner_Robert_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418293}}, {"model": "metainfo.source", "pk": 15201, "fields": {"orig_filename": "Gschwandner_Sigismund_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97f.", "author": "", "orig_id": 1418294}}, {"model": "metainfo.source", "pk": 15202, "fields": {"orig_filename": "Gschwari_Coelestin_1823_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418295}}, {"model": "metainfo.source", "pk": 15203, "fields": {"orig_filename": "Gsellhofer_Karl_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418298}}, {"model": "metainfo.source", "pk": 15204, "fields": {"orig_filename": "Gsell_Benedikt_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418296}}, {"model": "metainfo.source", "pk": 15205, "fields": {"orig_filename": "Gsell_Friedrich-Jakob_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418297}}, {"model": "metainfo.source", "pk": 15206, "fields": {"orig_filename": "Gspan_Johann-Chrys_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418300}}, {"model": "metainfo.source", "pk": 15207, "fields": {"orig_filename": "Gspan_Peter-Erasmus_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98f.", "author": "", "orig_id": 1418299}}, {"model": "metainfo.source", "pk": 15208, "fields": {"orig_filename": "Gstirner_Adolf_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418301}}, {"model": "metainfo.source", "pk": 15209, "fields": {"orig_filename": "Gstrein_Alois_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418302}}, {"model": "metainfo.source", "pk": 15210, "fields": {"orig_filename": "Gsur_Karl-Friedrich_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418303}}, {"model": "metainfo.source", "pk": 15211, "fields": {"orig_filename": "Gubin_Richard_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99f.", "author": "", "orig_id": 1418366}}, {"model": "metainfo.source", "pk": 15212, "fields": {"orig_filename": "Guby_Rudolf_1888_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418367}}, {"model": "metainfo.source", "pk": 15213, "fields": {"orig_filename": "Gudenus_Leopold_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418369}}, {"model": "metainfo.source", "pk": 15214, "fields": {"orig_filename": "Guedemann_Moritz_1835_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418371}}, {"model": "metainfo.source", "pk": 15215, "fields": {"orig_filename": "Guede_Julius_1885_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2086589}}, {"model": "metainfo.source", "pk": 15216, "fields": {"orig_filename": "Guem_Johann-Franz_1755_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418373}}, {"model": "metainfo.source", "pk": 15217, "fields": {"orig_filename": "Guenther_Anton_1783_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100f.", "author": "", "orig_id": 1418372}}, {"model": "metainfo.source", "pk": 15218, "fields": {"orig_filename": "Guenther_Anton_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418374}}, {"model": "metainfo.source", "pk": 15219, "fields": {"orig_filename": "Guenther_Georg_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418375}}, {"model": "metainfo.source", "pk": 15220, "fields": {"orig_filename": "Guenther_Gustav_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418376}}, {"model": "metainfo.source", "pk": 15221, "fields": {"orig_filename": "Guenther_Otto_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101f.", "author": "", "orig_id": 1418377}}, {"model": "metainfo.source", "pk": 15222, "fields": {"orig_filename": "Guentner_Franz-Xaver_1790_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418378}}, {"model": "metainfo.source", "pk": 15223, "fields": {"orig_filename": "Guentner_Wenzel_1820_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418379}}, {"model": "metainfo.source", "pk": 15224, "fields": {"orig_filename": "Guenzl_Marie_1896_1983.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2085186}}, {"model": "metainfo.source", "pk": 15225, "fields": {"orig_filename": "Guerke_Norbert_1904_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418380}}, {"model": "metainfo.source", "pk": 15226, "fields": {"orig_filename": "Guertler_Alfred_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102f.", "author": "", "orig_id": 1418381}}, {"model": "metainfo.source", "pk": 15227, "fields": {"orig_filename": "Guertler_Hermann_1887_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418382}}, {"model": "metainfo.source", "pk": 15228, "fields": {"orig_filename": "Guertler_Josef_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418383}}, {"model": "metainfo.source", "pk": 15229, "fields": {"orig_filename": "Guerzoni_Giuseppe_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418384}}, {"model": "metainfo.source", "pk": 15230, "fields": {"orig_filename": "Guetl_Edmund_1879_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103f.", "author": "", "orig_id": 1418385}}, {"model": "metainfo.source", "pk": 15231, "fields": {"orig_filename": "Guettenberger_Heinrich_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418386}}, {"model": "metainfo.source", "pk": 15232, "fields": {"orig_filename": "Gufler_Josef_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418387}}, {"model": "metainfo.source", "pk": 15233, "fields": {"orig_filename": "Gugenbichler_Franz_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418388}}, {"model": "metainfo.source", "pk": 15234, "fields": {"orig_filename": "Guggenberg-Riedhofen_Athanasius_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418464}}, {"model": "metainfo.source", "pk": 15235, "fields": {"orig_filename": "Guggenberg-Riedhofen_Otto_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418465}}, {"model": "metainfo.source", "pk": 15236, "fields": {"orig_filename": "Guggenberger_Adolf_1896_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418466}}, {"model": "metainfo.source", "pk": 15237, "fields": {"orig_filename": "Gugg_Anton_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104f.", "author": "", "orig_id": 1418463}}, {"model": "metainfo.source", "pk": 15238, "fields": {"orig_filename": "Gugitz_Gustav_1836_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418467}}, {"model": "metainfo.source", "pk": 15239, "fields": {"orig_filename": "Guglia_Eugen_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105f.", "author": "", "orig_id": 1418468}}, {"model": "metainfo.source", "pk": 15240, "fields": {"orig_filename": "Guicciardi_Giulietta_1784_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418469}}, {"model": "metainfo.source", "pk": 15241, "fields": {"orig_filename": "Gulbransson_Grete_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418470}}, {"model": "metainfo.source", "pk": 15242, "fields": {"orig_filename": "Gull_Josef_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418471}}, {"model": "metainfo.source", "pk": 15243, "fields": {"orig_filename": "Gumplowicz_Ludwig_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106f.", "author": "", "orig_id": 1418472}}, {"model": "metainfo.source", "pk": 15244, "fields": {"orig_filename": "Gumplowicz_Maximilian-Ernest_1864_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418473}}, {"model": "metainfo.source", "pk": 15245, "fields": {"orig_filename": "Gundling_Julius_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418474}}, {"model": "metainfo.source", "pk": 15246, "fields": {"orig_filename": "Gunert_Herma_1905_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418475}}, {"model": "metainfo.source", "pk": 15247, "fields": {"orig_filename": "Gunesch_Adele_1832_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418476}}, {"model": "metainfo.source", "pk": 15248, "fields": {"orig_filename": "Gungl_Joseph_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418477}}, {"model": "metainfo.source", "pk": 15249, "fields": {"orig_filename": "Gung_L_Johann_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1440651}}, {"model": "metainfo.source", "pk": 15250, "fields": {"orig_filename": "Gunolt_August_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107f.", "author": "", "orig_id": 1418478}}, {"model": "metainfo.source", "pk": 15251, "fields": {"orig_filename": "Gunz_Gustav-Georg_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418479}}, {"model": "metainfo.source", "pk": 15252, "fields": {"orig_filename": "Guppenberger_Lambert_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418480}}, {"model": "metainfo.source", "pk": 15253, "fields": {"orig_filename": "Greussing_Paul_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418913}}, {"model": "metainfo.source", "pk": 15254, "fields": {"orig_filename": "Greuter_Josef_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58f.", "author": "", "orig_id": 1418914}}, {"model": "metainfo.source", "pk": 15255, "fields": {"orig_filename": "Greutter_Franz_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418981}}, {"model": "metainfo.source", "pk": 15256, "fields": {"orig_filename": "Grevenberg_Julius_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418982}}, {"model": "metainfo.source", "pk": 15257, "fields": {"orig_filename": "Grey-Stipek_Valerie_1845_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418983}}, {"model": "metainfo.source", "pk": 15258, "fields": {"orig_filename": "Grienberger_Theodor_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418984}}, {"model": "metainfo.source", "pk": 15259, "fields": {"orig_filename": "Griepenkerl_Christian_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59f.", "author": "", "orig_id": 1418985}}, {"model": "metainfo.source", "pk": 15260, "fields": {"orig_filename": "Griesbach_Karl-Ludolf_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418988}}, {"model": "metainfo.source", "pk": 15261, "fields": {"orig_filename": "Griessl_Rupert_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418989}}, {"model": "metainfo.source", "pk": 15262, "fields": {"orig_filename": "Grieszelich_Ernst-Ludwig_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61", "author": "", "orig_id": 1418990}}, {"model": "metainfo.source", "pk": 15263, "fields": {"orig_filename": "Gries_Franz_1760_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418986}}, {"model": "metainfo.source", "pk": 15264, "fields": {"orig_filename": "Gries_Johann-Ev_1808_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418987}}, {"model": "metainfo.source", "pk": 15265, "fields": {"orig_filename": "Grillmayr_Johann-E-C_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61", "author": "", "orig_id": 1418991}}, {"model": "metainfo.source", "pk": 15266, "fields": {"orig_filename": "Grillparzer_Franz_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61ff.", "author": "", "orig_id": 1418992}}, {"model": "metainfo.source", "pk": 15267, "fields": {"orig_filename": "Grimmich_Virgil_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418996}}, {"model": "metainfo.source", "pk": 15268, "fields": {"orig_filename": "Grimm_Ferdinand_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 63", "author": "", "orig_id": 1418993}}, {"model": "metainfo.source", "pk": 15269, "fields": {"orig_filename": "Grimm_Hugo_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 63f.", "author": "", "orig_id": 1418994}}, {"model": "metainfo.source", "pk": 15270, "fields": {"orig_filename": "Grimm_Leo_1889_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418995}}, {"model": "metainfo.source", "pk": 15271, "fields": {"orig_filename": "Grimus-Grimburg_Rudolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418997}}, {"model": "metainfo.source", "pk": 15272, "fields": {"orig_filename": "Grinner_Josef_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418998}}, {"model": "metainfo.source", "pk": 15273, "fields": {"orig_filename": "Grisar_Hartmann_1845_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64f.", "author": "", "orig_id": 1418999}}, {"model": "metainfo.source", "pk": 15274, "fields": {"orig_filename": "Grisi_Carlotta_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419000}}, {"model": "metainfo.source", "pk": 15275, "fields": {"orig_filename": "Grisi_Giulia_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419001}}, {"model": "metainfo.source", "pk": 15276, "fields": {"orig_filename": "Grissemann_Hans_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419002}}, {"model": "metainfo.source", "pk": 15277, "fields": {"orig_filename": "Grobben_Karl_1854_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65f.", "author": "", "orig_id": 1419003}}, {"model": "metainfo.source", "pk": 15278, "fields": {"orig_filename": "Grocholski_Kazimierz_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419067}}, {"model": "metainfo.source", "pk": 15279, "fields": {"orig_filename": "Groder_Virgil_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419068}}, {"model": "metainfo.source", "pk": 15280, "fields": {"orig_filename": "Groeben_August_1828_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419069}}, {"model": "metainfo.source", "pk": 15281, "fields": {"orig_filename": "Groeger_Adolf_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419071}}, {"model": "metainfo.source", "pk": 15282, "fields": {"orig_filename": "Groeger_Florian_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419072}}, {"model": "metainfo.source", "pk": 15283, "fields": {"orig_filename": "Groeger_Max_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419073}}, {"model": "metainfo.source", "pk": 15284, "fields": {"orig_filename": "Groesser_Matthaeus_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67f.", "author": "", "orig_id": 1419074}}, {"model": "metainfo.source", "pk": 15285, "fields": {"orig_filename": "Groessl_Wenzel_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419075}}, {"model": "metainfo.source", "pk": 15286, "fields": {"orig_filename": "Grohar_Ivan_1867_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419077}}, {"model": "metainfo.source", "pk": 15287, "fields": {"orig_filename": "Grohmann_Adolf_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68f.", "author": "", "orig_id": 1419078}}, {"model": "metainfo.source", "pk": 15288, "fields": {"orig_filename": "Grohmann_Carl_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 69", "author": "", "orig_id": 1419079}}, {"model": "metainfo.source", "pk": 15289, "fields": {"orig_filename": "Grohmann_Eduard_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 69f.", "author": "", "orig_id": 1419080}}, {"model": "metainfo.source", "pk": 15290, "fields": {"orig_filename": "Grohmann_Joseph_1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70", "author": "", "orig_id": 1419081}}, {"model": "metainfo.source", "pk": 15291, "fields": {"orig_filename": "Grohmann_Paul_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70", "author": "", "orig_id": 1419082}}, {"model": "metainfo.source", "pk": 15292, "fields": {"orig_filename": "Grohs-Fligely_Anton_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70f.", "author": "", "orig_id": 1419083}}, {"model": "metainfo.source", "pk": 15293, "fields": {"orig_filename": "Groh_Jakob_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419076}}, {"model": "metainfo.source", "pk": 15294, "fields": {"orig_filename": "Grolig_Moriz_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419084}}, {"model": "metainfo.source", "pk": 15295, "fields": {"orig_filename": "Groller-Mildensee_Maximilian_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419087}}, {"model": "metainfo.source", "pk": 15296, "fields": {"orig_filename": "Groll_Andreas_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419085}}, {"model": "metainfo.source", "pk": 15297, "fields": {"orig_filename": "Gronemann_Karoline_1869_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71f.", "author": "", "orig_id": 1419088}}, {"model": "metainfo.source", "pk": 15298, "fields": {"orig_filename": "Groner_Anton_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419089}}, {"model": "metainfo.source", "pk": 15299, "fields": {"orig_filename": "Groner_Auguste_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419149}}, {"model": "metainfo.source", "pk": 15300, "fields": {"orig_filename": "Groner_Richard_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419150}}, {"model": "metainfo.source", "pk": 15301, "fields": {"orig_filename": "Groppenberger-Bergenstamm_Alois_1754_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419151}}, {"model": "metainfo.source", "pk": 15302, "fields": {"orig_filename": "Gross-Hoffinger_Anton-Johann_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 76f.", "author": "", "orig_id": 1419166}}, {"model": "metainfo.source", "pk": 15303, "fields": {"orig_filename": "Grossbauer-Waldstaett_Franz_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419167}}, {"model": "metainfo.source", "pk": 15304, "fields": {"orig_filename": "Grossberg_Mimi_1905_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420526}}, {"model": "metainfo.source", "pk": 15305, "fields": {"orig_filename": "Grossberg_Norbert_1903_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1423092}}, {"model": "metainfo.source", "pk": 15306, "fields": {"orig_filename": "Grosschmid_Benjamin_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419391}}, {"model": "metainfo.source", "pk": 15307, "fields": {"orig_filename": "Grosse_Andreas_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419324}}, {"model": "metainfo.source", "pk": 15308, "fields": {"orig_filename": "Grossich_Antonio_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419326}}, {"model": "metainfo.source", "pk": 15309, "fields": {"orig_filename": "Grossi_Tommaso_1791_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419325}}, {"model": "metainfo.source", "pk": 15310, "fields": {"orig_filename": "Grossmann_Michael_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77f.", "author": "", "orig_id": 1419327}}, {"model": "metainfo.source", "pk": 15311, "fields": {"orig_filename": "Grossmann_Stefan_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419390}}, {"model": "metainfo.source", "pk": 15312, "fields": {"orig_filename": "Gross_Benedikt_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72f.", "author": "", "orig_id": 1419153}}, {"model": "metainfo.source", "pk": 15313, "fields": {"orig_filename": "Gross_Ferdinand_1848_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419154}}, {"model": "metainfo.source", "pk": 15314, "fields": {"orig_filename": "Gross_Franz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419155}}, {"model": "metainfo.source", "pk": 15315, "fields": {"orig_filename": "Gross_Gustav-Robert_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73f.", "author": "", "orig_id": 1419157}}, {"model": "metainfo.source", "pk": 15316, "fields": {"orig_filename": "Gross_Gustav_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419156}}, {"model": "metainfo.source", "pk": 15317, "fields": {"orig_filename": "Gross_Hanns_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74", "author": "", "orig_id": 1419158}}, {"model": "metainfo.source", "pk": 15318, "fields": {"orig_filename": "Gross_Heinrich_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74", "author": "", "orig_id": 1419159}}, {"model": "metainfo.source", "pk": 15319, "fields": {"orig_filename": "Gross_Josef_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419160}}, {"model": "metainfo.source", "pk": 15320, "fields": {"orig_filename": "Gross_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74f.", "author": "", "orig_id": 1419161}}, {"model": "metainfo.source", "pk": 15321, "fields": {"orig_filename": "Gross_Julius_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75", "author": "", "orig_id": 1419162}}, {"model": "metainfo.source", "pk": 15322, "fields": {"orig_filename": "Gross_Karl_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75", "author": "", "orig_id": 1419163}}, {"model": "metainfo.source", "pk": 15323, "fields": {"orig_filename": "Gross_Lothar_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75f.", "author": "", "orig_id": 1419164}}, {"model": "metainfo.source", "pk": 15324, "fields": {"orig_filename": "Gross_Otto_1877_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1449030}}, {"model": "metainfo.source", "pk": 15325, "fields": {"orig_filename": "Gross_Wilhelm_1886_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 76", "author": "", "orig_id": 1419165}}, {"model": "metainfo.source", "pk": 15326, "fields": {"orig_filename": "Grosz_Karl_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419392}}, {"model": "metainfo.source", "pk": 15327, "fields": {"orig_filename": "Grosz_Siegfried_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419393}}, {"model": "metainfo.source", "pk": 15328, "fields": {"orig_filename": "Grottger_Artur_1837_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419395}}, {"model": "metainfo.source", "pk": 15329, "fields": {"orig_filename": "Gruber-Gleichenberg_Franz_1886_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419488}}, {"model": "metainfo.source", "pk": 15330, "fields": {"orig_filename": "Gruber-Menninger_Ignaz_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84f.", "author": "", "orig_id": 1419489}}, {"model": "metainfo.source", "pk": 15331, "fields": {"orig_filename": "Gruber_Alois_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419397}}, {"model": "metainfo.source", "pk": 15332, "fields": {"orig_filename": "Gruber_Augustin-Josef_1763_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419398}}, {"model": "metainfo.source", "pk": 15333, "fields": {"orig_filename": "Gruber_Dane_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419399}}, {"model": "metainfo.source", "pk": 15334, "fields": {"orig_filename": "Gruber_Franz-Xaver_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80f.", "author": "", "orig_id": 1419401}}, {"model": "metainfo.source", "pk": 15335, "fields": {"orig_filename": "Gruber_Franz-Xaver_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419402}}, {"model": "metainfo.source", "pk": 15336, "fields": {"orig_filename": "Gruber_Franz-Xaver_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419403}}, {"model": "metainfo.source", "pk": 15337, "fields": {"orig_filename": "Gruber_Franz_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419400}}, {"model": "metainfo.source", "pk": 15338, "fields": {"orig_filename": "Gruber_Hans_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419404}}, {"model": "metainfo.source", "pk": 15339, "fields": {"orig_filename": "Gruber_Hans_1879_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419405}}, {"model": "metainfo.source", "pk": 15340, "fields": {"orig_filename": "Gruber_Hermann_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81f.", "author": "", "orig_id": 1419406}}, {"model": "metainfo.source", "pk": 15341, "fields": {"orig_filename": "Gruber_Ignaz_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419407}}, {"model": "metainfo.source", "pk": 15342, "fields": {"orig_filename": "Gruber_Jakob_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419408}}, {"model": "metainfo.source", "pk": 15343, "fields": {"orig_filename": "Gruber_Josef_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419409}}, {"model": "metainfo.source", "pk": 15344, "fields": {"orig_filename": "Gruber_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419410}}, {"model": "metainfo.source", "pk": 15345, "fields": {"orig_filename": "Gruber_Josef_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82f.", "author": "", "orig_id": 1419411}}, {"model": "metainfo.source", "pk": 15346, "fields": {"orig_filename": "Gruber_Max_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419412}}, {"model": "metainfo.source", "pk": 15347, "fields": {"orig_filename": "Gruber_Oswald_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419413}}, {"model": "metainfo.source", "pk": 15348, "fields": {"orig_filename": "Gruber_Peter_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419414}}, {"model": "metainfo.source", "pk": 15349, "fields": {"orig_filename": "Gruber_Rudolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419415}}, {"model": "metainfo.source", "pk": 15350, "fields": {"orig_filename": "Gruber_Stanislaus_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419416}}, {"model": "metainfo.source", "pk": 15351, "fields": {"orig_filename": "Gruber_Wenzel_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1421081}}, {"model": "metainfo.source", "pk": 15352, "fields": {"orig_filename": "Grube_August-Wilhelm_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419396}}, {"model": "metainfo.source", "pk": 15353, "fields": {"orig_filename": "Grubhofer_Tony_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419490}}, {"model": "metainfo.source", "pk": 15354, "fields": {"orig_filename": "Gruby_David_1810_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419491}}, {"model": "metainfo.source", "pk": 15355, "fields": {"orig_filename": "Gruden_Igo_1893_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419492}}, {"model": "metainfo.source", "pk": 15356, "fields": {"orig_filename": "Gornik_Friedrich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418454}}, {"model": "metainfo.source", "pk": 15357, "fields": {"orig_filename": "Gorove_Stefan_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418455}}, {"model": "metainfo.source", "pk": 15358, "fields": {"orig_filename": "Gorski_Anton_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33f.", "author": "", "orig_id": 1418456}}, {"model": "metainfo.source", "pk": 15359, "fields": {"orig_filename": "Gortani_Luigi_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418457}}, {"model": "metainfo.source", "pk": 15360, "fields": {"orig_filename": "Gorup-Besanez_Eugen-Franz_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418458}}, {"model": "metainfo.source", "pk": 15361, "fields": {"orig_filename": "Gorup-Besanez_Ferdinand-Johann_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418530}}, {"model": "metainfo.source", "pk": 15362, "fields": {"orig_filename": "Gorup-Slavinjski_Josip_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418531}}, {"model": "metainfo.source", "pk": 15363, "fields": {"orig_filename": "Gorzkowski-Gorzkow_Karl_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418533}}, {"model": "metainfo.source", "pk": 15364, "fields": {"orig_filename": "Gorzkowski_Ludwik-Jedrzej_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34f.", "author": "", "orig_id": 1418532}}, {"model": "metainfo.source", "pk": 15365, "fields": {"orig_filename": "Goslar_Julian-Maciej_1820_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418534}}, {"model": "metainfo.source", "pk": 15366, "fields": {"orig_filename": "Gossmann_Friederike_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418535}}, {"model": "metainfo.source", "pk": 15367, "fields": {"orig_filename": "Gostincar_Josip_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418536}}, {"model": "metainfo.source", "pk": 15368, "fields": {"orig_filename": "Gostkowski_Roman_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35f.", "author": "", "orig_id": 1418537}}, {"model": "metainfo.source", "pk": 15369, "fields": {"orig_filename": "Goszczynski_Seweryn_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418538}}, {"model": "metainfo.source", "pk": 15370, "fields": {"orig_filename": "Gothard_Eugen_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418539}}, {"model": "metainfo.source", "pk": 15371, "fields": {"orig_filename": "Gottdank_Josepha_1792_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418540}}, {"model": "metainfo.source", "pk": 15372, "fields": {"orig_filename": "Gotthilf-Miskolczy_Ernst_1865_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418541}}, {"model": "metainfo.source", "pk": 15373, "fields": {"orig_filename": "Gottlieb_Anna_1774_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418542}}, {"model": "metainfo.source", "pk": 15374, "fields": {"orig_filename": "Gottlieb_Johann_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418543}}, {"model": "metainfo.source", "pk": 15375, "fields": {"orig_filename": "Gottsleben_Ludwig_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418544}}, {"model": "metainfo.source", "pk": 15376, "fields": {"orig_filename": "Govekar_Fran_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418545}}, {"model": "metainfo.source", "pk": 15377, "fields": {"orig_filename": "Govekar_Minka_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37f.", "author": "", "orig_id": 1418546}}, {"model": "metainfo.source", "pk": 15378, "fields": {"orig_filename": "Govrik_Gregor_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418547}}, {"model": "metainfo.source", "pk": 15379, "fields": {"orig_filename": "Graber_Hermann-Veit_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418548}}, {"model": "metainfo.source", "pk": 15380, "fields": {"orig_filename": "Graber_Vitus_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418549}}, {"model": "metainfo.source", "pk": 15381, "fields": {"orig_filename": "Grabherr_Josef_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38f.", "author": "", "orig_id": 1418550}}, {"model": "metainfo.source", "pk": 15382, "fields": {"orig_filename": "Grabmann_Martin_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39", "author": "", "orig_id": 1418551}}, {"model": "metainfo.source", "pk": 15383, "fields": {"orig_filename": "Grabmayr-Angerheim_Georg_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39", "author": "", "orig_id": 1418552}}, {"model": "metainfo.source", "pk": 15384, "fields": {"orig_filename": "Grabmayr-Angerheim_Karl_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39f.", "author": "", "orig_id": 1418623}}, {"model": "metainfo.source", "pk": 15385, "fields": {"orig_filename": "Grabner_Leopold_1802_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40", "author": "", "orig_id": 1418624}}, {"model": "metainfo.source", "pk": 15386, "fields": {"orig_filename": "Grabowski_Ambrozy_1782_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40", "author": "", "orig_id": 1418625}}, {"model": "metainfo.source", "pk": 15387, "fields": {"orig_filename": "Grabowski_Lucjan-Kazimierz_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40f.", "author": "", "orig_id": 1418626}}, {"model": "metainfo.source", "pk": 15388, "fields": {"orig_filename": "Grabrijan_Jurij_1800_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41", "author": "", "orig_id": 1418627}}, {"model": "metainfo.source", "pk": 15389, "fields": {"orig_filename": "Grabski_Stanislaw_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41", "author": "", "orig_id": 1418628}}, {"model": "metainfo.source", "pk": 15390, "fields": {"orig_filename": "Gradenigo_Giuseppe_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41f.", "author": "", "orig_id": 1418629}}, {"model": "metainfo.source", "pk": 15391, "fields": {"orig_filename": "Gradl_Heinrich_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418630}}, {"model": "metainfo.source", "pk": 15392, "fields": {"orig_filename": "Graedener_Hermann_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418631}}, {"model": "metainfo.source", "pk": 15393, "fields": {"orig_filename": "Graeffer_Franz_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42f.", "author": "", "orig_id": 1418633}}, {"model": "metainfo.source", "pk": 15394, "fields": {"orig_filename": "Graeffe_Eduard_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418632}}, {"model": "metainfo.source", "pk": 15395, "fields": {"orig_filename": "Graener_Paul_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418634}}, {"model": "metainfo.source", "pk": 15396, "fields": {"orig_filename": "Graenzer_Josef_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418635}}, {"model": "metainfo.source", "pk": 15397, "fields": {"orig_filename": "Graf-Gaderthurn_Friedrich_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418643}}, {"model": "metainfo.source", "pk": 15398, "fields": {"orig_filename": "Grafenauer_Franc_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45f.", "author": "", "orig_id": 1418646}}, {"model": "metainfo.source", "pk": 15399, "fields": {"orig_filename": "Grafe_Felix_1888_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418644}}, {"model": "metainfo.source", "pk": 15400, "fields": {"orig_filename": "Grafe_Viktor_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418645}}, {"model": "metainfo.source", "pk": 15401, "fields": {"orig_filename": "Graff-Pancsova_Ludwig_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418715}}, {"model": "metainfo.source", "pk": 15402, "fields": {"orig_filename": "Graff_Kasimir-Romuald_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418714}}, {"model": "metainfo.source", "pk": 15403, "fields": {"orig_filename": "Graf_Alexander_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418636}}, {"model": "metainfo.source", "pk": 15404, "fields": {"orig_filename": "Graf_Antonie_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418637}}, {"model": "metainfo.source", "pk": 15405, "fields": {"orig_filename": "Graf_Ferdinand_1907_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1434635}}, {"model": "metainfo.source", "pk": 15406, "fields": {"orig_filename": "Graf_Franz_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43f.", "author": "", "orig_id": 1418638}}, {"model": "metainfo.source", "pk": 15407, "fields": {"orig_filename": "Graf_Josef_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44", "author": "", "orig_id": 1418639}}, {"model": "metainfo.source", "pk": 15408, "fields": {"orig_filename": "Graf_Ludwig-Ferdinand_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44", "author": "", "orig_id": 1418640}}, {"model": "metainfo.source", "pk": 15409, "fields": {"orig_filename": "Graf_Rainer_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44f.", "author": "", "orig_id": 1418641}}, {"model": "metainfo.source", "pk": 15410, "fields": {"orig_filename": "Graf_Siegmund_1801_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418642}}, {"model": "metainfo.source", "pk": 15411, "fields": {"orig_filename": "Grahor_Janko_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418716}}, {"model": "metainfo.source", "pk": 15412, "fields": {"orig_filename": "Grailich_Josef_1829_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46f.", "author": "", "orig_id": 1418717}}, {"model": "metainfo.source", "pk": 15413, "fields": {"orig_filename": "Grandauer_Josef_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418718}}, {"model": "metainfo.source", "pk": 15414, "fields": {"orig_filename": "Granichstaedten-Czerva_Otto_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418720}}, {"model": "metainfo.source", "pk": 15415, "fields": {"orig_filename": "Granichstaedten_Bruno-Bernhard_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418719}}, {"model": "metainfo.source", "pk": 15416, "fields": {"orig_filename": "Granitsch_Georg_1833_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418721}}, {"model": "metainfo.source", "pk": 15417, "fields": {"orig_filename": "Grasberger_Hans_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418723}}, {"model": "metainfo.source", "pk": 15418, "fields": {"orig_filename": "Grasboeck_Theobald_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418724}}, {"model": "metainfo.source", "pk": 15419, "fields": {"orig_filename": "Graser_Karl_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418725}}, {"model": "metainfo.source", "pk": 15420, "fields": {"orig_filename": "Grassauer_Ferdinand_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418735}}, {"model": "metainfo.source", "pk": 15421, "fields": {"orig_filename": "Grasselli_Peter_1841_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418736}}, {"model": "metainfo.source", "pk": 15422, "fields": {"orig_filename": "Grassini_Giuseppina_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418737}}, {"model": "metainfo.source", "pk": 15423, "fields": {"orig_filename": "Grassl-Rechten_Ignaz_1795_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418738}}, {"model": "metainfo.source", "pk": 15424, "fields": {"orig_filename": "Grass_Franz-Xaver_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418734}}, {"model": "metainfo.source", "pk": 15425, "fields": {"orig_filename": "Gras_Otto_1864_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47f.", "author": "", "orig_id": 1418722}}, {"model": "metainfo.source", "pk": 15426, "fields": {"orig_filename": "Grauert_Wilhelm-Heinrich_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50", "author": "", "orig_id": 1418804}}, {"model": "metainfo.source", "pk": 15427, "fields": {"orig_filename": "Grauer_Rudolf_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50", "author": "", "orig_id": 1418803}}, {"model": "metainfo.source", "pk": 15428, "fields": {"orig_filename": "Graus_Johann_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50f.", "author": "", "orig_id": 1418805}}, {"model": "metainfo.source", "pk": 15429, "fields": {"orig_filename": "Grau_August_1863_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49f.", "author": "", "orig_id": 1418739}}, {"model": "metainfo.source", "pk": 15430, "fields": {"orig_filename": "Grebmer-Wolfsthurn_Eduard_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 51", "author": "", "orig_id": 1418807}}, {"model": "metainfo.source", "pk": 15431, "fields": {"orig_filename": "Gredler_Andreas_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 51f.", "author": "", "orig_id": 1418809}}, {"model": "metainfo.source", "pk": 15432, "fields": {"orig_filename": "Gredler_Ludwig_1831_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52", "author": "", "orig_id": 1418811}}, {"model": "metainfo.source", "pk": 15433, "fields": {"orig_filename": "Gredler_Vinzenz-Maria_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52", "author": "", "orig_id": 1418813}}, {"model": "metainfo.source", "pk": 15434, "fields": {"orig_filename": "Grefe_Conrad_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52f.", "author": "", "orig_id": 1418814}}, {"model": "metainfo.source", "pk": 15435, "fields": {"orig_filename": "Gregorcic_Anton_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418818}}, {"model": "metainfo.source", "pk": 15436, "fields": {"orig_filename": "Gregorcic_Simon_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418819}}, {"model": "metainfo.source", "pk": 15437, "fields": {"orig_filename": "Gregorig_Josef_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418821}}, {"model": "metainfo.source", "pk": 15438, "fields": {"orig_filename": "Gregorin_Gustav_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418822}}, {"model": "metainfo.source", "pk": 15439, "fields": {"orig_filename": "Gregoritsch_Anton_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418823}}, {"model": "metainfo.source", "pk": 15440, "fields": {"orig_filename": "Gregori_Ferdinand_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53f.", "author": "", "orig_id": 1418820}}, {"model": "metainfo.source", "pk": 15441, "fields": {"orig_filename": "Gregor_Hans_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418815}}, {"model": "metainfo.source", "pk": 15442, "fields": {"orig_filename": "Gregor_Nora_1901_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418816}}, {"model": "metainfo.source", "pk": 15443, "fields": {"orig_filename": "Gregr_Eduard_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418892}}, {"model": "metainfo.source", "pk": 15444, "fields": {"orig_filename": "Gregr_Julius_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54f.", "author": "", "orig_id": 1418894}}, {"model": "metainfo.source", "pk": 15445, "fields": {"orig_filename": "Greguss_Agost_1825_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418895}}, {"model": "metainfo.source", "pk": 15446, "fields": {"orig_filename": "Greiderer_Sebastian_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418897}}, {"model": "metainfo.source", "pk": 15447, "fields": {"orig_filename": "Greil_Alois_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418898}}, {"model": "metainfo.source", "pk": 15448, "fields": {"orig_filename": "Greil_Johann-Nep_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55f.", "author": "", "orig_id": 1418899}}, {"model": "metainfo.source", "pk": 15449, "fields": {"orig_filename": "Greil_Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418901}}, {"model": "metainfo.source", "pk": 15450, "fields": {"orig_filename": "Greiner_Leo_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418902}}, {"model": "metainfo.source", "pk": 15451, "fields": {"orig_filename": "Greinwald_Thomas_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418903}}, {"model": "metainfo.source", "pk": 15452, "fields": {"orig_filename": "Greinz_Christian_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418904}}, {"model": "metainfo.source", "pk": 15453, "fields": {"orig_filename": "Greinz_Hugo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56f.", "author": "", "orig_id": 1418906}}, {"model": "metainfo.source", "pk": 15454, "fields": {"orig_filename": "Greinz_Rudolf-Heinrich_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57", "author": "", "orig_id": 1418907}}, {"model": "metainfo.source", "pk": 15455, "fields": {"orig_filename": "Greipl_Rudolf_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57", "author": "", "orig_id": 1418908}}, {"model": "metainfo.source", "pk": 15456, "fields": {"orig_filename": "Greisinger_Gustav-Adolf_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57f.", "author": "", "orig_id": 1418909}}, {"model": "metainfo.source", "pk": 15457, "fields": {"orig_filename": "Gremblich_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418910}}, {"model": "metainfo.source", "pk": 15458, "fields": {"orig_filename": "Grengg_Karl_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418911}}, {"model": "metainfo.source", "pk": 15459, "fields": {"orig_filename": "Grenser_Alfred_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418912}}, {"model": "metainfo.source", "pk": 15460, "fields": {"orig_filename": "Glatz_Jakob_1776_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419478}}, {"model": "metainfo.source", "pk": 15461, "fields": {"orig_filename": "Glatz_Sebastian_1837_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419479}}, {"model": "metainfo.source", "pk": 15462, "fields": {"orig_filename": "Glawatsch_Franz_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419480}}, {"model": "metainfo.source", "pk": 15463, "fields": {"orig_filename": "Glax_Heinrich_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419481}}, {"model": "metainfo.source", "pk": 15464, "fields": {"orig_filename": "Glax_Julius_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5f.", "author": "", "orig_id": 1419482}}, {"model": "metainfo.source", "pk": 15465, "fields": {"orig_filename": "Gleich_Josef-Alois_1772_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6", "author": "", "orig_id": 1419483}}, {"model": "metainfo.source", "pk": 15466, "fields": {"orig_filename": "Gleispach_Johann-Nepomuk_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6", "author": "", "orig_id": 1419484}}, {"model": "metainfo.source", "pk": 15467, "fields": {"orig_filename": "Gleispach_Karl-Josef_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6f.", "author": "", "orig_id": 1419485}}, {"model": "metainfo.source", "pk": 15468, "fields": {"orig_filename": "Gleispach_Wenzeslaus_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 7f.", "author": "", "orig_id": 1419486}}, {"model": "metainfo.source", "pk": 15469, "fields": {"orig_filename": "Gliber_Jakob_1825_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419487}}, {"model": "metainfo.source", "pk": 15470, "fields": {"orig_filename": "Glickh_Rudolf_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419557}}, {"model": "metainfo.source", "pk": 15471, "fields": {"orig_filename": "Gloeckel_Leopoldine_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419558}}, {"model": "metainfo.source", "pk": 15472, "fields": {"orig_filename": "Gloeckel_Otto_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8f.", "author": "", "orig_id": 1419559}}, {"model": "metainfo.source", "pk": 15473, "fields": {"orig_filename": "Gloeckner_Berta_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 9", "author": "", "orig_id": 1419560}}, {"model": "metainfo.source", "pk": 15474, "fields": {"orig_filename": "Gloeggl_Franz-Xaver_1764_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 9f.", "author": "", "orig_id": 1419561}}, {"model": "metainfo.source", "pk": 15475, "fields": {"orig_filename": "Glonar_Joza_1885_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419562}}, {"model": "metainfo.source", "pk": 15476, "fields": {"orig_filename": "Glondys_Viktor_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419564}}, {"model": "metainfo.source", "pk": 15477, "fields": {"orig_filename": "Gloning_Kajetan-Alois_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419565}}, {"model": "metainfo.source", "pk": 15478, "fields": {"orig_filename": "Gloria_Andrea_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419566}}, {"model": "metainfo.source", "pk": 15479, "fields": {"orig_filename": "Glossy_Karl_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419568}}, {"model": "metainfo.source", "pk": 15480, "fields": {"orig_filename": "Gloss_Ludwig_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10f.", "author": "", "orig_id": 1419567}}, {"model": "metainfo.source", "pk": 15481, "fields": {"orig_filename": "Glowacki_Julius_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419569}}, {"model": "metainfo.source", "pk": 15482, "fields": {"orig_filename": "Glowacki_Sylvia_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419571}}, {"model": "metainfo.source", "pk": 15483, "fields": {"orig_filename": "Glueckselig_Gustav-Thormod_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12", "author": "", "orig_id": 1419574}}, {"model": "metainfo.source", "pk": 15484, "fields": {"orig_filename": "Gluecksmann_Heinrich_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12f.", "author": "", "orig_id": 1419575}}, {"model": "metainfo.source", "pk": 15485, "fields": {"orig_filename": "Glueck_Babette-Elisabeth_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11f.", "author": "", "orig_id": 1419572}}, {"model": "metainfo.source", "pk": 15486, "fields": {"orig_filename": "Glueck_Heinrich_1889_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12", "author": "", "orig_id": 1419573}}, {"model": "metainfo.source", "pk": 15487, "fields": {"orig_filename": "Gmeiner_Franz-X_1752_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1418173}}, {"model": "metainfo.source", "pk": 15488, "fields": {"orig_filename": "Gmeiner_Josef-Anton_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1421076}}, {"model": "metainfo.source", "pk": 15489, "fields": {"orig_filename": "Gnad_Ernst_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1418182}}, {"model": "metainfo.source", "pk": 15490, "fields": {"orig_filename": "Gnirs_Anton_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13f.", "author": "", "orig_id": 1418183}}, {"model": "metainfo.source", "pk": 15491, "fields": {"orig_filename": "Godai_Anton_1863_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418184}}, {"model": "metainfo.source", "pk": 15492, "fields": {"orig_filename": "Godebski_Franciszek-Ksawery_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418185}}, {"model": "metainfo.source", "pk": 15493, "fields": {"orig_filename": "Godeffroy_Richard_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418186}}, {"model": "metainfo.source", "pk": 15494, "fields": {"orig_filename": "Godina_Josip-Verdelski_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418187}}, {"model": "metainfo.source", "pk": 15495, "fields": {"orig_filename": "Godlewski_Emil_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418188}}, {"model": "metainfo.source", "pk": 15496, "fields": {"orig_filename": "Godlewski_Karl_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418189}}, {"model": "metainfo.source", "pk": 15497, "fields": {"orig_filename": "Godlewski_Tadeusz_1878_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418190}}, {"model": "metainfo.source", "pk": 15498, "fields": {"orig_filename": "Goebel_Carl_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418191}}, {"model": "metainfo.source", "pk": 15499, "fields": {"orig_filename": "Goelis_Leopold-Anton_1764_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15f.", "author": "", "orig_id": 1418256}}, {"model": "metainfo.source", "pk": 15500, "fields": {"orig_filename": "Goellerich_August_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 16", "author": "", "orig_id": 1418257}}, {"model": "metainfo.source", "pk": 15501, "fields": {"orig_filename": "Goelsdorf_Karl_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 16f.", "author": "", "orig_id": 1418258}}, {"model": "metainfo.source", "pk": 15502, "fields": {"orig_filename": "Goelsdorf_Louis-Adolf_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418259}}, {"model": "metainfo.source", "pk": 15503, "fields": {"orig_filename": "Goepfert_Eduard_1836_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418260}}, {"model": "metainfo.source", "pk": 15504, "fields": {"orig_filename": "Goergey-Goergoe-Toporcz_Arthur_1818_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418261}}, {"model": "metainfo.source", "pk": 15505, "fields": {"orig_filename": "Goerner_Karl_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17f.", "author": "", "orig_id": 1418262}}, {"model": "metainfo.source", "pk": 15506, "fields": {"orig_filename": "Goess_Anton_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18", "author": "", "orig_id": 1418263}}, {"model": "metainfo.source", "pk": 15507, "fields": {"orig_filename": "Goess_Leopold_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18", "author": "", "orig_id": 1421077}}, {"model": "metainfo.source", "pk": 15508, "fields": {"orig_filename": "Goess_Peter_1774_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18f.", "author": "", "orig_id": 1418264}}, {"model": "metainfo.source", "pk": 15509, "fields": {"orig_filename": "Goess_Zeno-Vinzenz_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19", "author": "", "orig_id": 1418265}}, {"model": "metainfo.source", "pk": 15510, "fields": {"orig_filename": "Goestl_Fran_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2192062}}, {"model": "metainfo.source", "pk": 15511, "fields": {"orig_filename": "Goethe_Hermann_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19f.", "author": "", "orig_id": 1418267}}, {"model": "metainfo.source", "pk": 15512, "fields": {"orig_filename": "Goeth_Georg_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19", "author": "", "orig_id": 1418266}}, {"model": "metainfo.source", "pk": 15513, "fields": {"orig_filename": "Goetz_Josef_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418269}}, {"model": "metainfo.source", "pk": 15514, "fields": {"orig_filename": "Goglia-Zlota-Lipa_Ferdinand_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418270}}, {"model": "metainfo.source", "pk": 15515, "fields": {"orig_filename": "Gohren_Karl-Theodor_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418271}}, {"model": "metainfo.source", "pk": 15516, "fields": {"orig_filename": "Goiginger_Ludwig_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20f.", "author": "", "orig_id": 1418272}}, {"model": "metainfo.source", "pk": 15517, "fields": {"orig_filename": "Golant_Nathan_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418273}}, {"model": "metainfo.source", "pk": 15518, "fields": {"orig_filename": "Goldbach-Sulittaborn_Anton_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418275}}, {"model": "metainfo.source", "pk": 15519, "fields": {"orig_filename": "Goldbacher_Alois_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418276}}, {"model": "metainfo.source", "pk": 15520, "fields": {"orig_filename": "Goldbacher_Gregor_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21f.", "author": "", "orig_id": 1418277}}, {"model": "metainfo.source", "pk": 15521, "fields": {"orig_filename": "Goldbaum_Wilhelm_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418278}}, {"model": "metainfo.source", "pk": 15522, "fields": {"orig_filename": "Goldberger_Richard_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418279}}, {"model": "metainfo.source", "pk": 15523, "fields": {"orig_filename": "Goldegg_Hugo_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418345}}, {"model": "metainfo.source", "pk": 15524, "fields": {"orig_filename": "Goldemund_Heinrich_1863_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418346}}, {"model": "metainfo.source", "pk": 15525, "fields": {"orig_filename": "Goldenthal_Jakob_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22f.", "author": "", "orig_id": 1418347}}, {"model": "metainfo.source", "pk": 15526, "fields": {"orig_filename": "Goldhann_Ludwig_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23", "author": "", "orig_id": 1418349}}, {"model": "metainfo.source", "pk": 15527, "fields": {"orig_filename": "Goldmann_Arthur_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418352}}, {"model": "metainfo.source", "pk": 15528, "fields": {"orig_filename": "Goldmann_Emil_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418353}}, {"model": "metainfo.source", "pk": 15529, "fields": {"orig_filename": "Goldmann_Paul_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24f.", "author": "", "orig_id": 1418354}}, {"model": "metainfo.source", "pk": 15530, "fields": {"orig_filename": "Goldman_Bernard_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418351}}, {"model": "metainfo.source", "pk": 15531, "fields": {"orig_filename": "Goldman_Salome_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23f.", "author": "", "orig_id": 1418350}}, {"model": "metainfo.source", "pk": 15532, "fields": {"orig_filename": "Goldmark_Karl_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418355}}, {"model": "metainfo.source", "pk": 15533, "fields": {"orig_filename": "Goldscheider_Adalbert_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418357}}, {"model": "metainfo.source", "pk": 15534, "fields": {"orig_filename": "Goldscheid_Rudolf_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418356}}, {"model": "metainfo.source", "pk": 15535, "fields": {"orig_filename": "Goldschmidt_Adalbert_1848_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25f.", "author": "", "orig_id": 1418358}}, {"model": "metainfo.source", "pk": 15536, "fields": {"orig_filename": "Goldschmidt_Heinrich-Jacob_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418359}}, {"model": "metainfo.source", "pk": 15537, "fields": {"orig_filename": "Goldschmidt_Hermann_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418360}}, {"model": "metainfo.source", "pk": 15538, "fields": {"orig_filename": "Goldschmidt_Waldemar_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147103}}, {"model": "metainfo.source", "pk": 15539, "fields": {"orig_filename": "Goldschmiedt_Guido_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418361}}, {"model": "metainfo.source", "pk": 15540, "fields": {"orig_filename": "Goldzieher_Ignaz_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26f.", "author": "", "orig_id": 1418362}}, {"model": "metainfo.source", "pk": 15541, "fields": {"orig_filename": "Goldzieher_Vilmos_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 27", "author": "", "orig_id": 1418363}}, {"model": "metainfo.source", "pk": 15542, "fields": {"orig_filename": "Gold_Josef_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418274}}, {"model": "metainfo.source", "pk": 15543, "fields": {"orig_filename": "Goller_Franz-Wenzel_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418436}}, {"model": "metainfo.source", "pk": 15544, "fields": {"orig_filename": "Gollner-Goldnenfels_Alois_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418437}}, {"model": "metainfo.source", "pk": 15545, "fields": {"orig_filename": "Gollob_Heinrich_1886_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418438}}, {"model": "metainfo.source", "pk": 15546, "fields": {"orig_filename": "Goll_Ernst_1887_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 27", "author": "", "orig_id": 1421078}}, {"model": "metainfo.source", "pk": 15547, "fields": {"orig_filename": "Goll_Jaroslav_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418364}}, {"model": "metainfo.source", "pk": 15548, "fields": {"orig_filename": "Goll_Josef_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418365}}, {"model": "metainfo.source", "pk": 15549, "fields": {"orig_filename": "Goltsch_Franz_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28f.", "author": "", "orig_id": 1418440}}, {"model": "metainfo.source", "pk": 15550, "fields": {"orig_filename": "Goltz_Alexander-Demetrius_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 29", "author": "", "orig_id": 1418441}}, {"model": "metainfo.source", "pk": 15551, "fields": {"orig_filename": "Goluchowski_Agenor-Maria-Adam_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 29f.", "author": "", "orig_id": 1418442}}, {"model": "metainfo.source", "pk": 15552, "fields": {"orig_filename": "Goluchowski_Agenor-Romuald-Onufr_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 30", "author": "", "orig_id": 1418443}}, {"model": "metainfo.source", "pk": 15553, "fields": {"orig_filename": "Gomperz_Heinrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 30f.", "author": "", "orig_id": 1418444}}, {"model": "metainfo.source", "pk": 15554, "fields": {"orig_filename": "Gomperz_Julius_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31", "author": "", "orig_id": 1418445}}, {"model": "metainfo.source", "pk": 15555, "fields": {"orig_filename": "Gomperz_Max_1822_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31", "author": "", "orig_id": 1418446}}, {"model": "metainfo.source", "pk": 15556, "fields": {"orig_filename": "Gomperz_Theodor_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31f.", "author": "", "orig_id": 1418447}}, {"model": "metainfo.source", "pk": 15557, "fields": {"orig_filename": "Gondrecourt_Leopold_1816_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418448}}, {"model": "metainfo.source", "pk": 15558, "fields": {"orig_filename": "Gooss_Karl_1814_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418449}}, {"model": "metainfo.source", "pk": 15559, "fields": {"orig_filename": "Gooss_Karl_1844_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418450}}, {"model": "metainfo.source", "pk": 15560, "fields": {"orig_filename": "Gopcevic_Spiridon_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418451}}, {"model": "metainfo.source", "pk": 15561, "fields": {"orig_filename": "Gordon_Marie_1812_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32f.", "author": "", "orig_id": 1418452}}, {"model": "metainfo.source", "pk": 15562, "fields": {"orig_filename": "Gorjanovic-Kramberger_Dragutin_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418453}}, {"model": "metainfo.source", "pk": 15563, "fields": {"orig_filename": "Geringer_Philipp_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421761}}, {"model": "metainfo.source", "pk": 15564, "fields": {"orig_filename": "Gerisch_Eduard_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421763}}, {"model": "metainfo.source", "pk": 15565, "fields": {"orig_filename": "Gerle_Wilhelm-Adolf_1783_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426f.", "author": "", "orig_id": 1421768}}, {"model": "metainfo.source", "pk": 15566, "fields": {"orig_filename": "Gerl_Franz_1764_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421764}}, {"model": "metainfo.source", "pk": 15567, "fields": {"orig_filename": "Gerl_Gustav_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421765}}, {"model": "metainfo.source", "pk": 15568, "fields": {"orig_filename": "Gerl_Peter_1796_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421766}}, {"model": "metainfo.source", "pk": 15569, "fields": {"orig_filename": "German_Ludomir_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421842}}, {"model": "metainfo.source", "pk": 15570, "fields": {"orig_filename": "Germela_Raimund_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421843}}, {"model": "metainfo.source", "pk": 15571, "fields": {"orig_filename": "Germonik_Ludwig_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421844}}, {"model": "metainfo.source", "pk": 15572, "fields": {"orig_filename": "Gernerth_Emmerich_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421845}}, {"model": "metainfo.source", "pk": 15573, "fields": {"orig_filename": "Gerold_Carl_1783_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427f.", "author": "", "orig_id": 1421846}}, {"model": "metainfo.source", "pk": 15574, "fields": {"orig_filename": "Gerold_Moriz_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428", "author": "", "orig_id": 1421847}}, {"model": "metainfo.source", "pk": 15575, "fields": {"orig_filename": "Gerold_Rosa_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428", "author": "", "orig_id": 1421848}}, {"model": "metainfo.source", "pk": 15576, "fields": {"orig_filename": "Gerstaecker-Simplon_Wenzel_1786_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421850}}, {"model": "metainfo.source", "pk": 15577, "fields": {"orig_filename": "Gerstel-Ucken_Gustav_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421851}}, {"model": "metainfo.source", "pk": 15578, "fields": {"orig_filename": "Gerster-Gardini_Etelka_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421854}}, {"model": "metainfo.source", "pk": 15579, "fields": {"orig_filename": "Gerster_Gerold_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421852}}, {"model": "metainfo.source", "pk": 15580, "fields": {"orig_filename": "Gerster_Thomas_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421853}}, {"model": "metainfo.source", "pk": 15581, "fields": {"orig_filename": "Gerstl_Richard_1883_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429f.", "author": "", "orig_id": 1421855}}, {"model": "metainfo.source", "pk": 15582, "fields": {"orig_filename": "Gerstmeyer_Josef_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421856}}, {"model": "metainfo.source", "pk": 15583, "fields": {"orig_filename": "Gerstner_Anton_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421857}}, {"model": "metainfo.source", "pk": 15584, "fields": {"orig_filename": "Gerstner_Franz-Anton_1796_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421859}}, {"model": "metainfo.source", "pk": 15585, "fields": {"orig_filename": "Gerstner_Franz-Joseph_1756_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430f.", "author": "", "orig_id": 1421860}}, {"model": "metainfo.source", "pk": 15586, "fields": {"orig_filename": "Gerstner_Franz_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421858}}, {"model": "metainfo.source", "pk": 15587, "fields": {"orig_filename": "Gerstner_Hans_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421861}}, {"model": "metainfo.source", "pk": 15588, "fields": {"orig_filename": "Gerst_Johann_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428f.", "author": "", "orig_id": 1421849}}, {"model": "metainfo.source", "pk": 15589, "fields": {"orig_filename": "Gersuny_Robert_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421862}}, {"model": "metainfo.source", "pk": 15590, "fields": {"orig_filename": "Gesselbauer_Otto_1852_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421863}}, {"model": "metainfo.source", "pk": 15591, "fields": {"orig_filename": "Gessmann_Albert_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421864}}, {"model": "metainfo.source", "pk": 15592, "fields": {"orig_filename": "Gessner_Hubert_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421865}}, {"model": "metainfo.source", "pk": 15593, "fields": {"orig_filename": "Gestrin_Franc_1865_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421938}}, {"model": "metainfo.source", "pk": 15594, "fields": {"orig_filename": "Getzner_Christian_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432f.", "author": "", "orig_id": 1421939}}, {"model": "metainfo.source", "pk": 15595, "fields": {"orig_filename": "Gevay_Anton_1796_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421940}}, {"model": "metainfo.source", "pk": 15596, "fields": {"orig_filename": "Gewey_Franz-Xaver-Karl_1764_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421941}}, {"model": "metainfo.source", "pk": 15597, "fields": {"orig_filename": "Geyer_August-Johann_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421942}}, {"model": "metainfo.source", "pk": 15598, "fields": {"orig_filename": "Geyer_Eberhard_1899_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433f.", "author": "", "orig_id": 1421943}}, {"model": "metainfo.source", "pk": 15599, "fields": {"orig_filename": "Geyer_Georg_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 434", "author": "", "orig_id": 1421944}}, {"model": "metainfo.source", "pk": 15600, "fields": {"orig_filename": "Geyer_Rudolf_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 434f.", "author": "", "orig_id": 1421945}}, {"model": "metainfo.source", "pk": 15601, "fields": {"orig_filename": "Geyling_Carl_1814_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421946}}, {"model": "metainfo.source", "pk": 15602, "fields": {"orig_filename": "Geyling_Josef_1799_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421947}}, {"model": "metainfo.source", "pk": 15603, "fields": {"orig_filename": "Geyling_Margarete_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421948}}, {"model": "metainfo.source", "pk": 15604, "fields": {"orig_filename": "Geyling_Rudolf_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421949}}, {"model": "metainfo.source", "pk": 15605, "fields": {"orig_filename": "Geymueller_Heinrich_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435f.", "author": "", "orig_id": 1421950}}, {"model": "metainfo.source", "pk": 15606, "fields": {"orig_filename": "Geymueller_Johann-Heinrich_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421951}}, {"model": "metainfo.source", "pk": 15607, "fields": {"orig_filename": "Gfoellner_Hans_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421952}}, {"model": "metainfo.source", "pk": 15608, "fields": {"orig_filename": "Gfoellner_Johannes-Maria_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421953}}, {"model": "metainfo.source", "pk": 15609, "fields": {"orig_filename": "Ghega_Karl_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436f.", "author": "", "orig_id": 1421954}}, {"model": "metainfo.source", "pk": 15610, "fields": {"orig_filename": "Gheri_Max_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437", "author": "", "orig_id": 1421955}}, {"model": "metainfo.source", "pk": 15611, "fields": {"orig_filename": "Ghon_Anton_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437", "author": "", "orig_id": 1421956}}, {"model": "metainfo.source", "pk": 15612, "fields": {"orig_filename": "Ghon_Carl_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437f.", "author": "", "orig_id": 1421957}}, {"model": "metainfo.source", "pk": 15613, "fields": {"orig_filename": "Ghyczy_Koloman_1808_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1420117}}, {"model": "metainfo.source", "pk": 15614, "fields": {"orig_filename": "Ghyczy_Paul_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421958}}, {"model": "metainfo.source", "pk": 15615, "fields": {"orig_filename": "Giacomini_Giacomo-Andrea_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421959}}, {"model": "metainfo.source", "pk": 15616, "fields": {"orig_filename": "Giamgy_Philipp_1819_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421960}}, {"model": "metainfo.source", "pk": 15617, "fields": {"orig_filename": "Gierach_Erich-Clemens_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438f.", "author": "", "orig_id": 1421961}}, {"model": "metainfo.source", "pk": 15618, "fields": {"orig_filename": "Giesl-Gieslingen_Wladimir_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 439", "author": "", "orig_id": 1421962}}, {"model": "metainfo.source", "pk": 15619, "fields": {"orig_filename": "Giesswein_Alexander_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 439f.", "author": "", "orig_id": 1422031}}, {"model": "metainfo.source", "pk": 15620, "fields": {"orig_filename": "Gigola_Giovanni-Battista_1769_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422032}}, {"model": "metainfo.source", "pk": 15621, "fields": {"orig_filename": "Gilewski_Karol_1832_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422033}}, {"model": "metainfo.source", "pk": 15622, "fields": {"orig_filename": "Giller_Agaton_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422034}}, {"model": "metainfo.source", "pk": 15623, "fields": {"orig_filename": "Gillmayr_Karl_1888_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440f.", "author": "", "orig_id": 1422035}}, {"model": "metainfo.source", "pk": 15624, "fields": {"orig_filename": "Gilm-Rosenegg_Hermann_1812_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 441", "author": "", "orig_id": 1422036}}, {"model": "metainfo.source", "pk": 15625, "fields": {"orig_filename": "Gindely_Anton_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 441f.", "author": "", "orig_id": 1422037}}, {"model": "metainfo.source", "pk": 15626, "fields": {"orig_filename": "Giner_Johann_1756_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422038}}, {"model": "metainfo.source", "pk": 15627, "fields": {"orig_filename": "Ginovszky_Josef_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422039}}, {"model": "metainfo.source", "pk": 15628, "fields": {"orig_filename": "Gintl_Heinrich-Eduard_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422040}}, {"model": "metainfo.source", "pk": 15629, "fields": {"orig_filename": "Gintl_Julius-Wilhelm_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 443f.", "author": "", "orig_id": 1422043}}, {"model": "metainfo.source", "pk": 15630, "fields": {"orig_filename": "Gintl_Wilhelm-Friedrich_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442f.", "author": "", "orig_id": 1422041}}, {"model": "metainfo.source", "pk": 15631, "fields": {"orig_filename": "Gintl_Wilhelm-Heinrich_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 443", "author": "", "orig_id": 1422042}}, {"model": "metainfo.source", "pk": 15632, "fields": {"orig_filename": "Ginzberger_August_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422044}}, {"model": "metainfo.source", "pk": 15633, "fields": {"orig_filename": "Ginzel_Friedrich-Karl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422047}}, {"model": "metainfo.source", "pk": 15634, "fields": {"orig_filename": "Ginzel_Hubert_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422045}}, {"model": "metainfo.source", "pk": 15635, "fields": {"orig_filename": "Ginzel_Jakob_1792_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422046}}, {"model": "metainfo.source", "pk": 15636, "fields": {"orig_filename": "Ginzkey_Ignaz_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422048}}, {"model": "metainfo.source", "pk": 15637, "fields": {"orig_filename": "Gioia_Melchiorre_1767_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422049}}, {"model": "metainfo.source", "pk": 15638, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Gottfried_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422051}}, {"model": "metainfo.source", "pk": 15639, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Ignaz_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445f.", "author": "", "orig_id": 1422052}}, {"model": "metainfo.source", "pk": 15640, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Joseph_1784_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422053}}, {"model": "metainfo.source", "pk": 15641, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Karl_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422054}}, {"model": "metainfo.source", "pk": 15642, "fields": {"orig_filename": "Giovanelli-Gerstburg_Benedikt_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422050}}, {"model": "metainfo.source", "pk": 15643, "fields": {"orig_filename": "Girardi_Alexander_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422123}}, {"model": "metainfo.source", "pk": 15644, "fields": {"orig_filename": "Giskra_Karl_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446f.", "author": "", "orig_id": 1422125}}, {"model": "metainfo.source", "pk": 15645, "fields": {"orig_filename": "Gissendorf_Karl_1825_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422126}}, {"model": "metainfo.source", "pk": 15646, "fields": {"orig_filename": "Gitlbauer_Michael_1847_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422127}}, {"model": "metainfo.source", "pk": 15647, "fields": {"orig_filename": "Gitschthaler_Anton_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422128}}, {"model": "metainfo.source", "pk": 15648, "fields": {"orig_filename": "Giugno_Karl_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447f.", "author": "", "orig_id": 1422129}}, {"model": "metainfo.source", "pk": 15649, "fields": {"orig_filename": "Giussani_Carlo_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422130}}, {"model": "metainfo.source", "pk": 15650, "fields": {"orig_filename": "Glabinski_Stanislaw_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422131}}, {"model": "metainfo.source", "pk": 15651, "fields": {"orig_filename": "Glader_Kosmas_1863_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422132}}, {"model": "metainfo.source", "pk": 15652, "fields": {"orig_filename": "Glaeser_Franz_1798_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422133}}, {"model": "metainfo.source", "pk": 15653, "fields": {"orig_filename": "Glaessner_Arthur_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1", "author": "", "orig_id": 1418964}}, {"model": "metainfo.source", "pk": 15654, "fields": {"orig_filename": "Glaise-Horstenau_Edmund_1882_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1", "author": "", "orig_id": 1418965}}, {"model": "metainfo.source", "pk": 15655, "fields": {"orig_filename": "Glanz-Eicha_Egon_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418967}}, {"model": "metainfo.source", "pk": 15656, "fields": {"orig_filename": "Glanz-Eicha_Hugo_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418968}}, {"model": "metainfo.source", "pk": 15657, "fields": {"orig_filename": "Glanz_Joseph_1795_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1f.", "author": "", "orig_id": 1418966}}, {"model": "metainfo.source", "pk": 15658, "fields": {"orig_filename": "Glaser_Arthur_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1419471}}, {"model": "metainfo.source", "pk": 15659, "fields": {"orig_filename": "Glaser_Eduard_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2f.", "author": "", "orig_id": 1419472}}, {"model": "metainfo.source", "pk": 15660, "fields": {"orig_filename": "Glaser_Erhard_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 3", "author": "", "orig_id": 1419473}}, {"model": "metainfo.source", "pk": 15661, "fields": {"orig_filename": "Glaser_Julius_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 3f.", "author": "", "orig_id": 1419474}}, {"model": "metainfo.source", "pk": 15662, "fields": {"orig_filename": "Glaser_Karel_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4", "author": "", "orig_id": 1419475}}, {"model": "metainfo.source", "pk": 15663, "fields": {"orig_filename": "Glaser_Konrad_1903_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4", "author": "", "orig_id": 1419476}}, {"model": "metainfo.source", "pk": 15664, "fields": {"orig_filename": "Glaser_Rudolf_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4f.", "author": "", "orig_id": 1419477}}, {"model": "metainfo.source", "pk": 15665, "fields": {"orig_filename": "Glas_Franz_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418970}}, {"model": "metainfo.source", "pk": 15666, "fields": {"orig_filename": "Gartner_Anton_1817_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421451}}, {"model": "metainfo.source", "pk": 15667, "fields": {"orig_filename": "Gartner_Anton_1820_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421452}}, {"model": "metainfo.source", "pk": 15668, "fields": {"orig_filename": "Gartner_Hermine_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421453}}, {"model": "metainfo.source", "pk": 15669, "fields": {"orig_filename": "Gartner_Josef_1796_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421454}}, {"model": "metainfo.source", "pk": 15670, "fields": {"orig_filename": "Gartner_Theodor_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404f.", "author": "", "orig_id": 1421455}}, {"model": "metainfo.source", "pk": 15671, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Erasmus_1788_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421456}}, {"model": "metainfo.source", "pk": 15672, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Karl_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421457}}, {"model": "metainfo.source", "pk": 15673, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Peter_1774_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421458}}, {"model": "metainfo.source", "pk": 15674, "fields": {"orig_filename": "Gasiorowski_Napoleon-Jan_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405f.", "author": "", "orig_id": 1421459}}, {"model": "metainfo.source", "pk": 15675, "fields": {"orig_filename": "Gasser-Valhorn_Josef_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421466}}, {"model": "metainfo.source", "pk": 15676, "fields": {"orig_filename": "Gasser_Georg_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421460}}, {"model": "metainfo.source", "pk": 15677, "fields": {"orig_filename": "Gasser_Gregor_1868_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421461}}, {"model": "metainfo.source", "pk": 15678, "fields": {"orig_filename": "Gasser_Hanns_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421462}}, {"model": "metainfo.source", "pk": 15679, "fields": {"orig_filename": "Gasser_Johann_1847_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421463}}, {"model": "metainfo.source", "pk": 15680, "fields": {"orig_filename": "Gasser_Vinzenz-Ferrer_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421465}}, {"model": "metainfo.source", "pk": 15681, "fields": {"orig_filename": "Gasser_Vinzenz_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406f.", "author": "", "orig_id": 1421464}}, {"model": "metainfo.source", "pk": 15682, "fields": {"orig_filename": "Gassner_Andreas_1776_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407f.", "author": "", "orig_id": 1421468}}, {"model": "metainfo.source", "pk": 15683, "fields": {"orig_filename": "Gassner_Andreas_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421469}}, {"model": "metainfo.source", "pk": 15684, "fields": {"orig_filename": "Gassner_Andre_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421467}}, {"model": "metainfo.source", "pk": 15685, "fields": {"orig_filename": "Gassner_Anton_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421470}}, {"model": "metainfo.source", "pk": 15686, "fields": {"orig_filename": "Gassner_Ferdinand-Simon_1798_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421472}}, {"model": "metainfo.source", "pk": 15687, "fields": {"orig_filename": "Gassner_Ferdinand_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421471}}, {"model": "metainfo.source", "pk": 15688, "fields": {"orig_filename": "Gassner_Franz-Josef_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421473}}, {"model": "metainfo.source", "pk": 15689, "fields": {"orig_filename": "Gassner_Guido_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408f.", "author": "", "orig_id": 1421474}}, {"model": "metainfo.source", "pk": 15690, "fields": {"orig_filename": "Gassner_Heinrich_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421475}}, {"model": "metainfo.source", "pk": 15691, "fields": {"orig_filename": "Gassner_Johann_1821_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421476}}, {"model": "metainfo.source", "pk": 15692, "fields": {"orig_filename": "Gassner_Julius_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421477}}, {"model": "metainfo.source", "pk": 15693, "fields": {"orig_filename": "Gassner_Michael_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421554}}, {"model": "metainfo.source", "pk": 15694, "fields": {"orig_filename": "Gassner_Theodor_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409f.", "author": "", "orig_id": 1421555}}, {"model": "metainfo.source", "pk": 15695, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Albert-Josef_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421556}}, {"model": "metainfo.source", "pk": 15696, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Anton-Franz_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421557}}, {"model": "metainfo.source", "pk": 15697, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Erich_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421558}}, {"model": "metainfo.source", "pk": 15698, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Gustav_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421559}}, {"model": "metainfo.source", "pk": 15699, "fields": {"orig_filename": "Gatscher_Emanuel_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421560}}, {"model": "metainfo.source", "pk": 15700, "fields": {"orig_filename": "Gatterer_Hilarius_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421561}}, {"model": "metainfo.source", "pk": 15701, "fields": {"orig_filename": "Gatterer_Michael_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410f.", "author": "", "orig_id": 1421562}}, {"model": "metainfo.source", "pk": 15702, "fields": {"orig_filename": "Gauby_Joseph_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411", "author": "", "orig_id": 1421563}}, {"model": "metainfo.source", "pk": 15703, "fields": {"orig_filename": "Gauermann_Friedrich_1807_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411", "author": "", "orig_id": 1421564}}, {"model": "metainfo.source", "pk": 15704, "fields": {"orig_filename": "Gauermann_Jakob_1773_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411f.", "author": "", "orig_id": 1421565}}, {"model": "metainfo.source", "pk": 15705, "fields": {"orig_filename": "Gaugl_Josef_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420104}}, {"model": "metainfo.source", "pk": 15706, "fields": {"orig_filename": "Gaulhofer_Karl_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420107}}, {"model": "metainfo.source", "pk": 15707, "fields": {"orig_filename": "Gaul_Franz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420105}}, {"model": "metainfo.source", "pk": 15708, "fields": {"orig_filename": "Gaul_Franz_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420106}}, {"model": "metainfo.source", "pk": 15709, "fields": {"orig_filename": "Gaul_Gustav_1836_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420113}}, {"model": "metainfo.source", "pk": 15710, "fields": {"orig_filename": "Gaunersdorfer_Johann_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420108}}, {"model": "metainfo.source", "pk": 15711, "fields": {"orig_filename": "Gaupmann_Rudolf_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420109}}, {"model": "metainfo.source", "pk": 15712, "fields": {"orig_filename": "Gaupmann_Rudolf_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420110}}, {"model": "metainfo.source", "pk": 15713, "fields": {"orig_filename": "Gause_Wilhelm_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420111}}, {"model": "metainfo.source", "pk": 15714, "fields": {"orig_filename": "Gautsch-Frankenthurn_Paul_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413f.", "author": "", "orig_id": 1420112}}, {"model": "metainfo.source", "pk": 15715, "fields": {"orig_filename": "Gavasini_Alois_1759_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421566}}, {"model": "metainfo.source", "pk": 15716, "fields": {"orig_filename": "Gavazzi_Artur_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421567}}, {"model": "metainfo.source", "pk": 15717, "fields": {"orig_filename": "Gawalewicz_Marian_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421568}}, {"model": "metainfo.source", "pk": 15718, "fields": {"orig_filename": "Gawalowski_Anton-Karl-Wilhelm_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421569}}, {"model": "metainfo.source", "pk": 15719, "fields": {"orig_filename": "Gawalowski_Karl-Wilhelm_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421570}}, {"model": "metainfo.source", "pk": 15720, "fields": {"orig_filename": "Gawelek_Franciszek_1884_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421571}}, {"model": "metainfo.source", "pk": 15721, "fields": {"orig_filename": "Gebauer-Fuelnegg_Erich_1901_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421575}}, {"model": "metainfo.source", "pk": 15722, "fields": {"orig_filename": "Gebauerova_Marie_1869_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421576}}, {"model": "metainfo.source", "pk": 15723, "fields": {"orig_filename": "Gebauer_Anton-Karl_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421572}}, {"model": "metainfo.source", "pk": 15724, "fields": {"orig_filename": "Gebauer_Jan_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421574}}, {"model": "metainfo.source", "pk": 15725, "fields": {"orig_filename": "Gebbel_Franz_1835_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415f.", "author": "", "orig_id": 1421577}}, {"model": "metainfo.source", "pk": 15726, "fields": {"orig_filename": "Gebhardt_Lajos_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421648}}, {"model": "metainfo.source", "pk": 15727, "fields": {"orig_filename": "Gebhart_Andreas_1881_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421649}}, {"model": "metainfo.source", "pk": 15728, "fields": {"orig_filename": "Geczy_Stefan_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421650}}, {"model": "metainfo.source", "pk": 15729, "fields": {"orig_filename": "Gegenbauer_Leopold_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416f.", "author": "", "orig_id": 1421651}}, {"model": "metainfo.source", "pk": 15730, "fields": {"orig_filename": "Gegenbauer_Viktor_1884_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421652}}, {"model": "metainfo.source", "pk": 15731, "fields": {"orig_filename": "Gehmacher_Friedrich_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421653}}, {"model": "metainfo.source", "pk": 15732, "fields": {"orig_filename": "Geiger_Andreas_1773_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421654}}, {"model": "metainfo.source", "pk": 15733, "fields": {"orig_filename": "Geiger_Joseph_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421655}}, {"model": "metainfo.source", "pk": 15734, "fields": {"orig_filename": "Geiger_Karl-Josef_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417f.", "author": "", "orig_id": 1421656}}, {"model": "metainfo.source", "pk": 15735, "fields": {"orig_filename": "Geiger_Peter-Johann-Nepomuk_1805_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421657}}, {"model": "metainfo.source", "pk": 15736, "fields": {"orig_filename": "Geissler_Ludwig_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421658}}, {"model": "metainfo.source", "pk": 15737, "fields": {"orig_filename": "Geistinger_Marie_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421659}}, {"model": "metainfo.source", "pk": 15738, "fields": {"orig_filename": "Geitler-Armingen_Josef_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421661}}, {"model": "metainfo.source", "pk": 15739, "fields": {"orig_filename": "Geitler_Leopold-Vaclav_1847_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418f.", "author": "", "orig_id": 1421660}}, {"model": "metainfo.source", "pk": 15740, "fields": {"orig_filename": "Gelber_Adolf_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421662}}, {"model": "metainfo.source", "pk": 15741, "fields": {"orig_filename": "Gelbhaus_Sigmund-Josua-Samuel_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421663}}, {"model": "metainfo.source", "pk": 15742, "fields": {"orig_filename": "Gelcich_Eugen_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421664}}, {"model": "metainfo.source", "pk": 15743, "fields": {"orig_filename": "Geldern-Egmond-Arcen_Gustav_1837_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419f.", "author": "", "orig_id": 1421665}}, {"model": "metainfo.source", "pk": 15744, "fields": {"orig_filename": "Gelinek_Joseph_1758_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421666}}, {"model": "metainfo.source", "pk": 15745, "fields": {"orig_filename": "Gelleri_Moritz_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421668}}, {"model": "metainfo.source", "pk": 15746, "fields": {"orig_filename": "Gellert_Grete_1879_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421669}}, {"model": "metainfo.source", "pk": 15747, "fields": {"orig_filename": "Geller_Leo_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421667}}, {"model": "metainfo.source", "pk": 15748, "fields": {"orig_filename": "Gelmi_Enrico_1855_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421670}}, {"model": "metainfo.source", "pk": 15749, "fields": {"orig_filename": "Geltch_Johann-Friedrich_1815_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421671}}, {"model": "metainfo.source", "pk": 15750, "fields": {"orig_filename": "Genczik_August_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421672}}, {"model": "metainfo.source", "pk": 15751, "fields": {"orig_filename": "Genee_Franz-Friedrich-Richard_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421673}}, {"model": "metainfo.source", "pk": 15752, "fields": {"orig_filename": "Genersich_Anton_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421746}}, {"model": "metainfo.source", "pk": 15753, "fields": {"orig_filename": "Genersich_Christian_1759_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421747}}, {"model": "metainfo.source", "pk": 15754, "fields": {"orig_filename": "Genersich_Johann_1761_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421748}}, {"model": "metainfo.source", "pk": 15755, "fields": {"orig_filename": "Genersich_Samuel_1768_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421749}}, {"model": "metainfo.source", "pk": 15756, "fields": {"orig_filename": "Gentz_Friedrich_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422ff.", "author": "", "orig_id": 1421750}}, {"model": "metainfo.source", "pk": 15757, "fields": {"orig_filename": "Gentz_Josef_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421751}}, {"model": "metainfo.source", "pk": 15758, "fields": {"orig_filename": "Georgievics_Georg_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421753}}, {"model": "metainfo.source", "pk": 15759, "fields": {"orig_filename": "Georgi_Friedrich-Robert_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421752}}, {"model": "metainfo.source", "pk": 15760, "fields": {"orig_filename": "Geppert_Anton_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424f.", "author": "", "orig_id": 1421755}}, {"model": "metainfo.source", "pk": 15761, "fields": {"orig_filename": "Geppert_Menrad_1770_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421758}}, {"model": "metainfo.source", "pk": 15762, "fields": {"orig_filename": "Gepp_Jakob_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421754}}, {"model": "metainfo.source", "pk": 15763, "fields": {"orig_filename": "Gerba_Raimund_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421756}}, {"model": "metainfo.source", "pk": 15764, "fields": {"orig_filename": "Gerbic_Fran_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421757}}, {"model": "metainfo.source", "pk": 15765, "fields": {"orig_filename": "Gerhardinger_Hermann_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421759}}, {"model": "metainfo.source", "pk": 15766, "fields": {"orig_filename": "Gericke_Wilhelm_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425f.", "author": "", "orig_id": 1421760}}, {"model": "metainfo.source", "pk": 15767, "fields": {"orig_filename": "Geringer-Oedenberg_Gabriel_1758_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421762}}, {"model": "metainfo.source", "pk": 15768, "fields": {"orig_filename": "Fuehrer_Robert_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420976}}, {"model": "metainfo.source", "pk": 15769, "fields": {"orig_filename": "Fuehrich_Josef_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380f.", "author": "", "orig_id": 1420977}}, {"model": "metainfo.source", "pk": 15770, "fields": {"orig_filename": "Fuehrich_Maximilian_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420978}}, {"model": "metainfo.source", "pk": 15771, "fields": {"orig_filename": "Fueloep-Miller_Rene_1891_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1435277}}, {"model": "metainfo.source", "pk": 15772, "fields": {"orig_filename": "Fuerst_Johann_1825_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420979}}, {"model": "metainfo.source", "pk": 15773, "fields": {"orig_filename": "Fuerst_Rudolf_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420980}}, {"model": "metainfo.source", "pk": 15774, "fields": {"orig_filename": "Fuerth_Emil_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381f.", "author": "", "orig_id": 1420981}}, {"model": "metainfo.source", "pk": 15775, "fields": {"orig_filename": "Fuerth_Jaro_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2029584}}, {"model": "metainfo.source", "pk": 15776, "fields": {"orig_filename": "Fuerth_Otto_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420982}}, {"model": "metainfo.source", "pk": 15777, "fields": {"orig_filename": "Fuester_Anton_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420983}}, {"model": "metainfo.source", "pk": 15778, "fields": {"orig_filename": "Fuetscher_Lorenz_1894_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420984}}, {"model": "metainfo.source", "pk": 15779, "fields": {"orig_filename": "Fugger_Eberhard_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382f.", "author": "", "orig_id": 1420985}}, {"model": "metainfo.source", "pk": 15780, "fields": {"orig_filename": "Fumagalli_Adolfo_1828_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420986}}, {"model": "metainfo.source", "pk": 15781, "fields": {"orig_filename": "Funk_Salomon_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420987}}, {"model": "metainfo.source", "pk": 15782, "fields": {"orig_filename": "Funtek_Anton_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420988}}, {"model": "metainfo.source", "pk": 15783, "fields": {"orig_filename": "Furtwaengler_Philipp-Friedrich-Pius_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420989}}, {"model": "metainfo.source", "pk": 15784, "fields": {"orig_filename": "Fussenegger_Ernst_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1421068}}, {"model": "metainfo.source", "pk": 15785, "fields": {"orig_filename": "Fuss_Heinrich_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420990}}, {"model": "metainfo.source", "pk": 15786, "fields": {"orig_filename": "Fuss_Johann-Ev_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420991}}, {"model": "metainfo.source", "pk": 15787, "fields": {"orig_filename": "Fuss_Karl_1817_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420992}}, {"model": "metainfo.source", "pk": 15788, "fields": {"orig_filename": "Fuss_Michael_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1421067}}, {"model": "metainfo.source", "pk": 15789, "fields": {"orig_filename": "Gaal_Eugen_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421069}}, {"model": "metainfo.source", "pk": 15790, "fields": {"orig_filename": "Gaal_Georg_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421070}}, {"model": "metainfo.source", "pk": 15791, "fields": {"orig_filename": "Gaal_Jozsef_1811_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421071}}, {"model": "metainfo.source", "pk": 15792, "fields": {"orig_filename": "Gabaglio_Antonio_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421072}}, {"model": "metainfo.source", "pk": 15793, "fields": {"orig_filename": "Gabelli_Antonio_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421074}}, {"model": "metainfo.source", "pk": 15794, "fields": {"orig_filename": "Gabel_Heinrich_1873_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421073}}, {"model": "metainfo.source", "pk": 15795, "fields": {"orig_filename": "Gaber_Hans_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421075}}, {"model": "metainfo.source", "pk": 15796, "fields": {"orig_filename": "Gabillon_Ludwig_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421082}}, {"model": "metainfo.source", "pk": 15797, "fields": {"orig_filename": "Gablenz_Ludwig_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386f.", "author": "", "orig_id": 1421084}}, {"model": "metainfo.source", "pk": 15798, "fields": {"orig_filename": "Gabler_Joseph_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 387", "author": "", "orig_id": 1421085}}, {"model": "metainfo.source", "pk": 15799, "fields": {"orig_filename": "Gabler_Wilhelm_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421086}}, {"model": "metainfo.source", "pk": 15800, "fields": {"orig_filename": "Gabl_Alois_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421083}}, {"model": "metainfo.source", "pk": 15801, "fields": {"orig_filename": "Gabriely_Adolf_1829_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421087}}, {"model": "metainfo.source", "pk": 15802, "fields": {"orig_filename": "Gabrscek_Andrej_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421165}}, {"model": "metainfo.source", "pk": 15803, "fields": {"orig_filename": "Gaddi_Paolo_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421166}}, {"model": "metainfo.source", "pk": 15804, "fields": {"orig_filename": "Gaehrich_Wenzel_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421168}}, {"model": "metainfo.source", "pk": 15805, "fields": {"orig_filename": "Gaensbacher_Johann-Bapt_1778_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388f.", "author": "", "orig_id": 1421167}}, {"model": "metainfo.source", "pk": 15806, "fields": {"orig_filename": "Gaensbacher_Josef_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421169}}, {"model": "metainfo.source", "pk": 15807, "fields": {"orig_filename": "Gaertner_Corbinian_1751_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421170}}, {"model": "metainfo.source", "pk": 15808, "fields": {"orig_filename": "Gaertner_Friedrich_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421171}}, {"model": "metainfo.source", "pk": 15809, "fields": {"orig_filename": "Gaertner_Gustav_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389f.", "author": "", "orig_id": 1421172}}, {"model": "metainfo.source", "pk": 15810, "fields": {"orig_filename": "Gaertner_Nikolas_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390", "author": "", "orig_id": 1421173}}, {"model": "metainfo.source", "pk": 15811, "fields": {"orig_filename": "Gaertner_Wilhelm_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390", "author": "", "orig_id": 1421174}}, {"model": "metainfo.source", "pk": 15812, "fields": {"orig_filename": "Gagern_Friedrich_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390f.", "author": "", "orig_id": 1421175}}, {"model": "metainfo.source", "pk": 15813, "fields": {"orig_filename": "Gagern_Max-Ludwig_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 391f.", "author": "", "orig_id": 1421176}}, {"model": "metainfo.source", "pk": 15814, "fields": {"orig_filename": "Gaheis_Alexander_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421177}}, {"model": "metainfo.source", "pk": 15815, "fields": {"orig_filename": "Gaigher_Horatius_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421179}}, {"model": "metainfo.source", "pk": 15816, "fields": {"orig_filename": "Gaisberger_Joseph_1792_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421178}}, {"model": "metainfo.source", "pk": 15817, "fields": {"orig_filename": "Gaj_Ljudevit_1809_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421180}}, {"model": "metainfo.source", "pk": 15818, "fields": {"orig_filename": "Galehr_Fridolin_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421181}}, {"model": "metainfo.source", "pk": 15819, "fields": {"orig_filename": "Galgotzy_Anton_1837_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421182}}, {"model": "metainfo.source", "pk": 15820, "fields": {"orig_filename": "Galicz_Jan_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421183}}, {"model": "metainfo.source", "pk": 15821, "fields": {"orig_filename": "Gallenberg_Wenzel-Robert_1783_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421263}}, {"model": "metainfo.source", "pk": 15822, "fields": {"orig_filename": "Gallenga_Antonio_1812_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421187}}, {"model": "metainfo.source", "pk": 15823, "fields": {"orig_filename": "Gallenstein_Meinrad_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394f.", "author": "", "orig_id": 1421264}}, {"model": "metainfo.source", "pk": 15824, "fields": {"orig_filename": "Gallesio_Giorgio_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421265}}, {"model": "metainfo.source", "pk": 15825, "fields": {"orig_filename": "Galle_Ernst_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421186}}, {"model": "metainfo.source", "pk": 15826, "fields": {"orig_filename": "Gallina_Josef-Wilhelm_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421266}}, {"model": "metainfo.source", "pk": 15827, "fields": {"orig_filename": "Gallini_Stefano_1756_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421267}}, {"model": "metainfo.source", "pk": 15828, "fields": {"orig_filename": "Galliny_Florentine_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421268}}, {"model": "metainfo.source", "pk": 15829, "fields": {"orig_filename": "Gallmeyer_Josefine_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395f.", "author": "", "orig_id": 1421269}}, {"model": "metainfo.source", "pk": 15830, "fields": {"orig_filename": "Gallois_Franz_1770_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421270}}, {"model": "metainfo.source", "pk": 15831, "fields": {"orig_filename": "Gallois_Ludwig_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421271}}, {"model": "metainfo.source", "pk": 15832, "fields": {"orig_filename": "Gallois_Moritz_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421272}}, {"model": "metainfo.source", "pk": 15833, "fields": {"orig_filename": "Gall_Johann_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393f.", "author": "", "orig_id": 1421184}}, {"model": "metainfo.source", "pk": 15834, "fields": {"orig_filename": "Gall_Josef_1820_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421185}}, {"model": "metainfo.source", "pk": 15835, "fields": {"orig_filename": "Galovic_Franjo_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421274}}, {"model": "metainfo.source", "pk": 15836, "fields": {"orig_filename": "Galston_Gottfried_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421275}}, {"model": "metainfo.source", "pk": 15837, "fields": {"orig_filename": "Galura_Bernhard_1764_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396f.", "author": "", "orig_id": 1421276}}, {"model": "metainfo.source", "pk": 15838, "fields": {"orig_filename": "Galvagni_Peter-Cav_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421277}}, {"model": "metainfo.source", "pk": 15839, "fields": {"orig_filename": "Galvani_Giovanni_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421278}}, {"model": "metainfo.source", "pk": 15840, "fields": {"orig_filename": "Gamerith_Franz_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421279}}, {"model": "metainfo.source", "pk": 15841, "fields": {"orig_filename": "Gamerith_Walther_1903_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397f.", "author": "", "orig_id": 1421280}}, {"model": "metainfo.source", "pk": 15842, "fields": {"orig_filename": "Ganahl_Arnold_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421282}}, {"model": "metainfo.source", "pk": 15843, "fields": {"orig_filename": "Ganahl_Carl_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421283}}, {"model": "metainfo.source", "pk": 15844, "fields": {"orig_filename": "Ganahl_Carl_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421284}}, {"model": "metainfo.source", "pk": 15845, "fields": {"orig_filename": "Ganahl_Johann-Josef_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421286}}, {"model": "metainfo.source", "pk": 15846, "fields": {"orig_filename": "Ganahl_Johann_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398f.", "author": "", "orig_id": 1421285}}, {"model": "metainfo.source", "pk": 15847, "fields": {"orig_filename": "Ganahl_Karl-Hans_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421287}}, {"model": "metainfo.source", "pk": 15848, "fields": {"orig_filename": "Ganahl_Rudolf_1833_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421288}}, {"model": "metainfo.source", "pk": 15849, "fields": {"orig_filename": "Gander_Hieronymus_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399f.", "author": "", "orig_id": 1421358}}, {"model": "metainfo.source", "pk": 15850, "fields": {"orig_filename": "Ganghofner_Friedrich_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421359}}, {"model": "metainfo.source", "pk": 15851, "fields": {"orig_filename": "Ganglbauer_Coelestin-Josef_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400f.", "author": "", "orig_id": 1421363}}, {"model": "metainfo.source", "pk": 15852, "fields": {"orig_filename": "Ganglbauer_Ludwig_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421364}}, {"model": "metainfo.source", "pk": 15853, "fields": {"orig_filename": "Ganglberger_Johann-Wilhelm_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421365}}, {"model": "metainfo.source", "pk": 15854, "fields": {"orig_filename": "Gangl_Alojz_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421360}}, {"model": "metainfo.source", "pk": 15855, "fields": {"orig_filename": "Gangl_Josef_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1420103}}, {"model": "metainfo.source", "pk": 15856, "fields": {"orig_filename": "Gangl_Josef_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421361}}, {"model": "metainfo.source", "pk": 15857, "fields": {"orig_filename": "Gangl_Virgil_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421362}}, {"model": "metainfo.source", "pk": 15858, "fields": {"orig_filename": "Ganner_Anton-Maria_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421366}}, {"model": "metainfo.source", "pk": 15859, "fields": {"orig_filename": "Gans-Ludassy_Julius_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401f.", "author": "", "orig_id": 1421367}}, {"model": "metainfo.source", "pk": 15860, "fields": {"orig_filename": "Gans-Ludassy_Moritz_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421368}}, {"model": "metainfo.source", "pk": 15861, "fields": {"orig_filename": "Ganser_Anton_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421369}}, {"model": "metainfo.source", "pk": 15862, "fields": {"orig_filename": "Gans_Johann_1886_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444515}}, {"model": "metainfo.source", "pk": 15863, "fields": {"orig_filename": "Ganz_Abraham_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421370}}, {"model": "metainfo.source", "pk": 15864, "fields": {"orig_filename": "Garay_Janos_1812_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402f.", "author": "", "orig_id": 1421372}}, {"model": "metainfo.source", "pk": 15865, "fields": {"orig_filename": "Garber_Josef_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421378}}, {"model": "metainfo.source", "pk": 15866, "fields": {"orig_filename": "Gardonyi_Geza_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421379}}, {"model": "metainfo.source", "pk": 15867, "fields": {"orig_filename": "Gareis_Anton_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421380}}, {"model": "metainfo.source", "pk": 15868, "fields": {"orig_filename": "Garger_Ernst_1892_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421381}}, {"model": "metainfo.source", "pk": 15869, "fields": {"orig_filename": "Garovaglio_Santo_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403f.", "author": "", "orig_id": 1421382}}, {"model": "metainfo.source", "pk": 15870, "fields": {"orig_filename": "Freuensfeld_Josip_1861_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422011}}, {"model": "metainfo.source", "pk": 15871, "fields": {"orig_filename": "Freundlich_Elisabeth_1906_2001.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1435143}}, {"model": "metainfo.source", "pk": 15872, "fields": {"orig_filename": "Freundlich_Emmi_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422015}}, {"model": "metainfo.source", "pk": 15873, "fields": {"orig_filename": "Freund_August_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422012}}, {"model": "metainfo.source", "pk": 15874, "fields": {"orig_filename": "Freund_Georg_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358f.", "author": "", "orig_id": 1422013}}, {"model": "metainfo.source", "pk": 15875, "fields": {"orig_filename": "Freund_Leopold_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422014}}, {"model": "metainfo.source", "pk": 15876, "fields": {"orig_filename": "Freyer_Heinrich_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422020}}, {"model": "metainfo.source", "pk": 15877, "fields": {"orig_filename": "Freyn_Joseph-Franz_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422021}}, {"model": "metainfo.source", "pk": 15878, "fields": {"orig_filename": "Freyssmuth_Josef_1786_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422022}}, {"model": "metainfo.source", "pk": 15879, "fields": {"orig_filename": "Freytag_Gustav_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422023}}, {"model": "metainfo.source", "pk": 15880, "fields": {"orig_filename": "Frey_Anton_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422016}}, {"model": "metainfo.source", "pk": 15881, "fields": {"orig_filename": "Frey_Friedrich_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422017}}, {"model": "metainfo.source", "pk": 15882, "fields": {"orig_filename": "Frey_Johanna_1867_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359f.", "author": "", "orig_id": 1422018}}, {"model": "metainfo.source", "pk": 15883, "fields": {"orig_filename": "Frey_Wilhelm_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422019}}, {"model": "metainfo.source", "pk": 15884, "fields": {"orig_filename": "Friberth_Karl_1736_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422024}}, {"model": "metainfo.source", "pk": 15885, "fields": {"orig_filename": "Frick_Karl_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422026}}, {"model": "metainfo.source", "pk": 15886, "fields": {"orig_filename": "Frida_Emil_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422027}}, {"model": "metainfo.source", "pk": 15887, "fields": {"orig_filename": "Frieberger_Gustav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422028}}, {"model": "metainfo.source", "pk": 15888, "fields": {"orig_filename": "Friedell_Egon_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362", "author": "", "orig_id": 1422030}}, {"model": "metainfo.source", "pk": 15889, "fields": {"orig_filename": "Friedinger_Karl_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362", "author": "", "orig_id": 1422100}}, {"model": "metainfo.source", "pk": 15890, "fields": {"orig_filename": "Friedjung_Heinrich_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362f.", "author": "", "orig_id": 1422101}}, {"model": "metainfo.source", "pk": 15891, "fields": {"orig_filename": "Friedjung_Josef-K_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422102}}, {"model": "metainfo.source", "pk": 15892, "fields": {"orig_filename": "Friedlaender-Malheim_Friedrich_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422108}}, {"model": "metainfo.source", "pk": 15893, "fields": {"orig_filename": "Friedlaender_Adolf-A_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363f.", "author": "", "orig_id": 1422105}}, {"model": "metainfo.source", "pk": 15894, "fields": {"orig_filename": "Friedlaender_Max_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422106}}, {"model": "metainfo.source", "pk": 15895, "fields": {"orig_filename": "Friedlaender_Paul_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422107}}, {"model": "metainfo.source", "pk": 15896, "fields": {"orig_filename": "Friedl_Richard_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422103}}, {"model": "metainfo.source", "pk": 15897, "fields": {"orig_filename": "Friedl_Theodor_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422104}}, {"model": "metainfo.source", "pk": 15898, "fields": {"orig_filename": "Friedmann_Meir_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422110}}, {"model": "metainfo.source", "pk": 15899, "fields": {"orig_filename": "Friedmann_Otto-Bernhard_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422112}}, {"model": "metainfo.source", "pk": 15900, "fields": {"orig_filename": "Friedmann_Otto_1860_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422111}}, {"model": "metainfo.source", "pk": 15901, "fields": {"orig_filename": "Friedmann_Siegwart_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365f.", "author": "", "orig_id": 1422113}}, {"model": "metainfo.source", "pk": 15902, "fields": {"orig_filename": "Friedman_Ignaz_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364f.", "author": "", "orig_id": 1422109}}, {"model": "metainfo.source", "pk": 15903, "fields": {"orig_filename": "Friedrichsthal_Emanuel_1809_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422118}}, {"model": "metainfo.source", "pk": 15904, "fields": {"orig_filename": "Friedrich_Ferdinand-Leopold_1821_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422114}}, {"model": "metainfo.source", "pk": 15905, "fields": {"orig_filename": "Friedrich_Karl_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422116}}, {"model": "metainfo.source", "pk": 15906, "fields": {"orig_filename": "Friedrich_Maria-Albrecht_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422115}}, {"model": "metainfo.source", "pk": 15907, "fields": {"orig_filename": "Friedwagner_Matthias_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366f.", "author": "", "orig_id": 1422119}}, {"model": "metainfo.source", "pk": 15908, "fields": {"orig_filename": "Fried_Alfred-Hermann_1864_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361f.", "author": "", "orig_id": 1422029}}, {"model": "metainfo.source", "pk": 15909, "fields": {"orig_filename": "Fries-Skene_Alfred_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422121}}, {"model": "metainfo.source", "pk": 15910, "fields": {"orig_filename": "Friesach_Karl_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422122}}, {"model": "metainfo.source", "pk": 15911, "fields": {"orig_filename": "Friese_Carl-Adolph_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367f.", "author": "", "orig_id": 1420701}}, {"model": "metainfo.source", "pk": 15912, "fields": {"orig_filename": "Friese_Carl_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1420700}}, {"model": "metainfo.source", "pk": 15913, "fields": {"orig_filename": "Friess_Gottfried_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420702}}, {"model": "metainfo.source", "pk": 15914, "fields": {"orig_filename": "Fries_Moritz-Christian_1777_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422120}}, {"model": "metainfo.source", "pk": 15915, "fields": {"orig_filename": "Frimberger_Johann-Georg_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420703}}, {"model": "metainfo.source", "pk": 15916, "fields": {"orig_filename": "Frimmel-Traisenau_Theodor_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420704}}, {"model": "metainfo.source", "pk": 15917, "fields": {"orig_filename": "Frimont-Palota_Johann-Maria_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368f.", "author": "", "orig_id": 1420705}}, {"model": "metainfo.source", "pk": 15918, "fields": {"orig_filename": "Frind_Anton-Ludwig_1823_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420706}}, {"model": "metainfo.source", "pk": 15919, "fields": {"orig_filename": "Frind_Wenzel-Anton_1843_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420707}}, {"model": "metainfo.source", "pk": 15920, "fields": {"orig_filename": "Frint_Jakob_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420708}}, {"model": "metainfo.source", "pk": 15921, "fields": {"orig_filename": "Frischauer_Berthold_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420711}}, {"model": "metainfo.source", "pk": 15922, "fields": {"orig_filename": "Frischauf_Johannes_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420712}}, {"model": "metainfo.source", "pk": 15923, "fields": {"orig_filename": "Frisch_Anton_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420709}}, {"model": "metainfo.source", "pk": 15924, "fields": {"orig_filename": "Frisch_Hans_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369f.", "author": "", "orig_id": 1420710}}, {"model": "metainfo.source", "pk": 15925, "fields": {"orig_filename": "Fritsch_Anton_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420713}}, {"model": "metainfo.source", "pk": 15926, "fields": {"orig_filename": "Fritsch_Carl_1812_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370f.", "author": "", "orig_id": 1420714}}, {"model": "metainfo.source", "pk": 15927, "fields": {"orig_filename": "Fritsch_Johann_1849_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420715}}, {"model": "metainfo.source", "pk": 15928, "fields": {"orig_filename": "Fritsch_Karl_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420716}}, {"model": "metainfo.source", "pk": 15929, "fields": {"orig_filename": "Fritsch_Karl_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420717}}, {"model": "metainfo.source", "pk": 15930, "fields": {"orig_filename": "Frivaldszky_Emmerich_1799_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371f.", "author": "", "orig_id": 1420718}}, {"model": "metainfo.source", "pk": 15931, "fields": {"orig_filename": "Frivaldszky_Johann_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420719}}, {"model": "metainfo.source", "pk": 15932, "fields": {"orig_filename": "Frodl_Karl_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420720}}, {"model": "metainfo.source", "pk": 15933, "fields": {"orig_filename": "Froehlich_Barbara_1797_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420723}}, {"model": "metainfo.source", "pk": 15934, "fields": {"orig_filename": "Froehlich_Georg_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372f.", "author": "", "orig_id": 1420793}}, {"model": "metainfo.source", "pk": 15935, "fields": {"orig_filename": "Froehlich_Isidor_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420794}}, {"model": "metainfo.source", "pk": 15936, "fields": {"orig_filename": "Froehlich_Josephine_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420795}}, {"model": "metainfo.source", "pk": 15937, "fields": {"orig_filename": "Froehlich_Katharina_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420796}}, {"model": "metainfo.source", "pk": 15938, "fields": {"orig_filename": "Froehlich_Maria-Anna_1793_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420722}}, {"model": "metainfo.source", "pk": 15939, "fields": {"orig_filename": "Froeschel_Berthold-Ignaz_1813_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420797}}, {"model": "metainfo.source", "pk": 15940, "fields": {"orig_filename": "Froeschl_Karl_1848_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420798}}, {"model": "metainfo.source", "pk": 15941, "fields": {"orig_filename": "Frohner_Johann_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128072}}, {"model": "metainfo.source", "pk": 15942, "fields": {"orig_filename": "Fromm_Emil_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373f.", "author": "", "orig_id": 1420799}}, {"model": "metainfo.source", "pk": 15943, "fields": {"orig_filename": "Fromm_Karl-Josef_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420800}}, {"model": "metainfo.source", "pk": 15944, "fields": {"orig_filename": "Fronius_Franz-Friedrich_1829_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420801}}, {"model": "metainfo.source", "pk": 15945, "fields": {"orig_filename": "Fronius_Karl-Josef_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420802}}, {"model": "metainfo.source", "pk": 15946, "fields": {"orig_filename": "Fronz_Emil_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420803}}, {"model": "metainfo.source", "pk": 15947, "fields": {"orig_filename": "Fronz_Oskar_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374f.", "author": "", "orig_id": 1420804}}, {"model": "metainfo.source", "pk": 15948, "fields": {"orig_filename": "Fronz_Richard_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420805}}, {"model": "metainfo.source", "pk": 15949, "fields": {"orig_filename": "Froon-Kirchrath_Josef_1740_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420806}}, {"model": "metainfo.source", "pk": 15950, "fields": {"orig_filename": "Fruehling_Carl_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420807}}, {"model": "metainfo.source", "pk": 15951, "fields": {"orig_filename": "Fruehwald_Ferdinand_1854_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420808}}, {"model": "metainfo.source", "pk": 15952, "fields": {"orig_filename": "Fruehwald_Wilhelm-Theodor_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420809}}, {"model": "metainfo.source", "pk": 15953, "fields": {"orig_filename": "Fruehwirth_Andreas_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375f.", "author": "", "orig_id": 1420810}}, {"model": "metainfo.source", "pk": 15954, "fields": {"orig_filename": "Fruwirth_Carl_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420811}}, {"model": "metainfo.source", "pk": 15955, "fields": {"orig_filename": "Fruwirt_Ferdinand_1812_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420812}}, {"model": "metainfo.source", "pk": 15956, "fields": {"orig_filename": "Fruwirt_Ferdinand_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420813}}, {"model": "metainfo.source", "pk": 15957, "fields": {"orig_filename": "Frydmann-Prawy_Marcell_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376f.", "author": "", "orig_id": 1420883}}, {"model": "metainfo.source", "pk": 15958, "fields": {"orig_filename": "Fuchs_Adalbert_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420884}}, {"model": "metainfo.source", "pk": 15959, "fields": {"orig_filename": "Fuchs_Adalbert_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420885}}, {"model": "metainfo.source", "pk": 15960, "fields": {"orig_filename": "Fuchs_Adalbert_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420886}}, {"model": "metainfo.source", "pk": 15961, "fields": {"orig_filename": "Fuchs_Alfred_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420887}}, {"model": "metainfo.source", "pk": 15962, "fields": {"orig_filename": "Fuchs_Ernst_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420888}}, {"model": "metainfo.source", "pk": 15963, "fields": {"orig_filename": "Fuchs_Franz-Xaver_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420889}}, {"model": "metainfo.source", "pk": 15964, "fields": {"orig_filename": "Fuchs_Georg_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420890}}, {"model": "metainfo.source", "pk": 15965, "fields": {"orig_filename": "Fuchs_Johann-Nepomuk_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420892}}, {"model": "metainfo.source", "pk": 15966, "fields": {"orig_filename": "Fuchs_Johann-Nep_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378f.", "author": "", "orig_id": 1420891}}, {"model": "metainfo.source", "pk": 15967, "fields": {"orig_filename": "Fuchs_Robert_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420893}}, {"model": "metainfo.source", "pk": 15968, "fields": {"orig_filename": "Fuchs_Siegmund_1859_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379", "author": "", "orig_id": 1420894}}, {"model": "metainfo.source", "pk": 15969, "fields": {"orig_filename": "Fuchs_Theodor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379", "author": "", "orig_id": 1420895}}, {"model": "metainfo.source", "pk": 15970, "fields": {"orig_filename": "Fuchs_Viktor_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379f.", "author": "", "orig_id": 1420896}}, {"model": "metainfo.source", "pk": 15971, "fields": {"orig_filename": "Fuchs_Wilhelm_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420897}}, {"model": "metainfo.source", "pk": 15972, "fields": {"orig_filename": "Fueger_Heinrich-Friedrich_1751_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420898}}, {"model": "metainfo.source", "pk": 15973, "fields": {"orig_filename": "Foetterle_Franz_1823_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421445}}, {"model": "metainfo.source", "pk": 15974, "fields": {"orig_filename": "Fogarasi_Johann_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421446}}, {"model": "metainfo.source", "pk": 15975, "fields": {"orig_filename": "Folliot-Crenneville_Franz_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421449}}, {"model": "metainfo.source", "pk": 15976, "fields": {"orig_filename": "Folliot-Crenneville_Ludwig-Karl_1765_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421450}}, {"model": "metainfo.source", "pk": 15977, "fields": {"orig_filename": "Foll_Ferdinand_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334f.", "author": "", "orig_id": 1421448}}, {"model": "metainfo.source", "pk": 15978, "fields": {"orig_filename": "Folnegovic_Fran_1848_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421529}}, {"model": "metainfo.source", "pk": 15979, "fields": {"orig_filename": "Folnesics_Hans_1886_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421530}}, {"model": "metainfo.source", "pk": 15980, "fields": {"orig_filename": "Folnesics_Josef_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421531}}, {"model": "metainfo.source", "pk": 15981, "fields": {"orig_filename": "Fonck_Leopold_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421532}}, {"model": "metainfo.source", "pk": 15982, "fields": {"orig_filename": "Forchheimer_Philipp_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421533}}, {"model": "metainfo.source", "pk": 15983, "fields": {"orig_filename": "Forescu_Maria_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444597}}, {"model": "metainfo.source", "pk": 15984, "fields": {"orig_filename": "Foresti_Johann-Baptist_1776_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421535}}, {"model": "metainfo.source", "pk": 15985, "fields": {"orig_filename": "Forgach_Anton_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421536}}, {"model": "metainfo.source", "pk": 15986, "fields": {"orig_filename": "Formanek_Eduard_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336f.", "author": "", "orig_id": 1421537}}, {"model": "metainfo.source", "pk": 15987, "fields": {"orig_filename": "Formanek_Jaroslav_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421538}}, {"model": "metainfo.source", "pk": 15988, "fields": {"orig_filename": "Formanek_Romuald_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421539}}, {"model": "metainfo.source", "pk": 15989, "fields": {"orig_filename": "Formey_Alfred_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421540}}, {"model": "metainfo.source", "pk": 15990, "fields": {"orig_filename": "Forschneritsch_Alfred-Eduard_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421541}}, {"model": "metainfo.source", "pk": 15991, "fields": {"orig_filename": "Forst-Battaglia_Otto_1889_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444316}}, {"model": "metainfo.source", "pk": 15992, "fields": {"orig_filename": "Forster-Brandt_Ellen_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421547}}, {"model": "metainfo.source", "pk": 15993, "fields": {"orig_filename": "Forster_Adolf-Emanuel_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421544}}, {"model": "metainfo.source", "pk": 15994, "fields": {"orig_filename": "Forster_Joseph_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337f.", "author": "", "orig_id": 1421545}}, {"model": "metainfo.source", "pk": 15995, "fields": {"orig_filename": "Forster_Zdenko_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421546}}, {"model": "metainfo.source", "pk": 15996, "fields": {"orig_filename": "Forstner_August_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421548}}, {"model": "metainfo.source", "pk": 15997, "fields": {"orig_filename": "Forstner_Leopold_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421549}}, {"model": "metainfo.source", "pk": 15998, "fields": {"orig_filename": "Forti_Franz-Anton_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421551}}, {"model": "metainfo.source", "pk": 15999, "fields": {"orig_filename": "Fort_Josef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338f.", "author": "", "orig_id": 1421550}}, {"model": "metainfo.source", "pk": 16000, "fields": {"orig_filename": "Fossek_Wilhelm_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421552}}, {"model": "metainfo.source", "pk": 16001, "fields": {"orig_filename": "Fossel_Viktor_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421553}}, {"model": "metainfo.source", "pk": 16002, "fields": {"orig_filename": "Foullon-Norbeeck_Heinrich_1850_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421623}}, {"model": "metainfo.source", "pk": 16003, "fields": {"orig_filename": "Fournier_Antonie_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421625}}, {"model": "metainfo.source", "pk": 16004, "fields": {"orig_filename": "Fournier_August_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421626}}, {"model": "metainfo.source", "pk": 16005, "fields": {"orig_filename": "Fraenkel_Alexander_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421627}}, {"model": "metainfo.source", "pk": 16006, "fields": {"orig_filename": "Fraenkel_Sigmund_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421628}}, {"model": "metainfo.source", "pk": 16007, "fields": {"orig_filename": "Fraenkel_Wilhelm_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421629}}, {"model": "metainfo.source", "pk": 16008, "fields": {"orig_filename": "Fraenzl_Friedrich_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421630}}, {"model": "metainfo.source", "pk": 16009, "fields": {"orig_filename": "Fraknoi_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421631}}, {"model": "metainfo.source", "pk": 16010, "fields": {"orig_filename": "Francesconi_Hermenegild_1795_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341f.", "author": "", "orig_id": 1421633}}, {"model": "metainfo.source", "pk": 16011, "fields": {"orig_filename": "France_Raoul-H_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421632}}, {"model": "metainfo.source", "pk": 16012, "fields": {"orig_filename": "Franchetti_Fortunata_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421634}}, {"model": "metainfo.source", "pk": 16013, "fields": {"orig_filename": "Francillo-Kaufmann_Hedwig_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421635}}, {"model": "metainfo.source", "pk": 16014, "fields": {"orig_filename": "Franckel_Adolf_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421638}}, {"model": "metainfo.source", "pk": 16015, "fields": {"orig_filename": "Franck_Carl-Heinrich_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421636}}, {"model": "metainfo.source", "pk": 16016, "fields": {"orig_filename": "Franck_Karl_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421637}}, {"model": "metainfo.source", "pk": 16017, "fields": {"orig_filename": "Franges-Mihanovic_Robert_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342f.", "author": "", "orig_id": 1421640}}, {"model": "metainfo.source", "pk": 16018, "fields": {"orig_filename": "Franges_Otto_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421639}}, {"model": "metainfo.source", "pk": 16019, "fields": {"orig_filename": "Frankel_Zacharias_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421729}}, {"model": "metainfo.source", "pk": 16020, "fields": {"orig_filename": "Frankenberger_Johann_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421730}}, {"model": "metainfo.source", "pk": 16021, "fields": {"orig_filename": "Franke_Ivan_1841_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421728}}, {"model": "metainfo.source", "pk": 16022, "fields": {"orig_filename": "Frankfurter_Salomon_1856_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421825}}, {"model": "metainfo.source", "pk": 16023, "fields": {"orig_filename": "Frankl-Gruen_Adolf_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421828}}, {"model": "metainfo.source", "pk": 16024, "fields": {"orig_filename": "Frankl-Hochwart_Lothar_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421829}}, {"model": "metainfo.source", "pk": 16025, "fields": {"orig_filename": "Frankl-Hochwart_Ludwig-August_1810_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421830}}, {"model": "metainfo.source", "pk": 16026, "fields": {"orig_filename": "Frankl_Katharina_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421826}}, {"model": "metainfo.source", "pk": 16027, "fields": {"orig_filename": "Frankl_Pinkas-Fritz_1848_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421827}}, {"model": "metainfo.source", "pk": 16028, "fields": {"orig_filename": "Franko_Ivan_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421831}}, {"model": "metainfo.source", "pk": 16029, "fields": {"orig_filename": "Frank_Eduard_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421641}}, {"model": "metainfo.source", "pk": 16030, "fields": {"orig_filename": "Frank_Ernst_1847_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421642}}, {"model": "metainfo.source", "pk": 16031, "fields": {"orig_filename": "Frank_Gustav-Wilhelm_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421645}}, {"model": "metainfo.source", "pk": 16032, "fields": {"orig_filename": "Frank_Hans_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421646}}, {"model": "metainfo.source", "pk": 16033, "fields": {"orig_filename": "Frank_Johann-Peter_1745_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421647}}, {"model": "metainfo.source", "pk": 16034, "fields": {"orig_filename": "Frank_Josip_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421721}}, {"model": "metainfo.source", "pk": 16035, "fields": {"orig_filename": "Frank_Liborius_1848_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421723}}, {"model": "metainfo.source", "pk": 16036, "fields": {"orig_filename": "Frank_Otto_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421724}}, {"model": "metainfo.source", "pk": 16037, "fields": {"orig_filename": "Frank_Peter-Anton_1746_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344f.", "author": "", "orig_id": 1421725}}, {"model": "metainfo.source", "pk": 16038, "fields": {"orig_filename": "Frank_Rudolf_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421726}}, {"model": "metainfo.source", "pk": 16039, "fields": {"orig_filename": "Frank_Rudolf_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421727}}, {"model": "metainfo.source", "pk": 16040, "fields": {"orig_filename": "Franz-Ferdinand___1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 350f.", "author": "", "orig_id": 1421838}}, {"model": "metainfo.source", "pk": 16041, "fields": {"orig_filename": "Franz-Joseph__1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 351f.", "author": "", "orig_id": 1421839}}, {"model": "metainfo.source", "pk": 16042, "fields": {"orig_filename": "Franz-Karl__1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421840}}, {"model": "metainfo.source", "pk": 16043, "fields": {"orig_filename": "Franz-Salvator__1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421841}}, {"model": "metainfo.source", "pk": 16044, "fields": {"orig_filename": "Franzelin_Johannes-B_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421914}}, {"model": "metainfo.source", "pk": 16045, "fields": {"orig_filename": "Franzisci_Franz_1825_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421915}}, {"model": "metainfo.source", "pk": 16046, "fields": {"orig_filename": "Franzos_Karl-Emil_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353f.", "author": "", "orig_id": 1421917}}, {"model": "metainfo.source", "pk": 16047, "fields": {"orig_filename": "Franz_Ferdinand-Geminian_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 350", "author": "", "orig_id": 1421837}}, {"model": "metainfo.source", "pk": 16048, "fields": {"orig_filename": "Franz_Gottfried_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348", "author": "", "orig_id": 1421833}}, {"model": "metainfo.source", "pk": 16049, "fields": {"orig_filename": "Franz_Joseph-Carl-Ambros-Stanislaus_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 349f.", "author": "", "orig_id": 1421836}}, {"model": "metainfo.source", "pk": 16050, "fields": {"orig_filename": "Franz_Rudolf_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348", "author": "", "orig_id": 1421834}}, {"model": "metainfo.source", "pk": 16051, "fields": {"orig_filename": "Franz__1768_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348f.", "author": "", "orig_id": 1421835}}, {"model": "metainfo.source", "pk": 16052, "fields": {"orig_filename": "Frass_Rudolf_1880_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421919}}, {"model": "metainfo.source", "pk": 16053, "fields": {"orig_filename": "Frast_Johannes_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421920}}, {"model": "metainfo.source", "pk": 16054, "fields": {"orig_filename": "Frauendorfer_Marie_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421921}}, {"model": "metainfo.source", "pk": 16055, "fields": {"orig_filename": "Frauenfeld_Eduard_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421922}}, {"model": "metainfo.source", "pk": 16056, "fields": {"orig_filename": "Frauenfeld_Georg_1807_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354f.", "author": "", "orig_id": 1421923}}, {"model": "metainfo.source", "pk": 16057, "fields": {"orig_filename": "Fraungruber_Hans_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421924}}, {"model": "metainfo.source", "pk": 16058, "fields": {"orig_filename": "Fraus-Wagner_Arrigo_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421925}}, {"model": "metainfo.source", "pk": 16059, "fields": {"orig_filename": "Frauscher_Karl_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421926}}, {"model": "metainfo.source", "pk": 16060, "fields": {"orig_filename": "Frauscher_Moritz_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421927}}, {"model": "metainfo.source", "pk": 16061, "fields": {"orig_filename": "Fraydt-Fraydenegg_Otto_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421928}}, {"model": "metainfo.source", "pk": 16062, "fields": {"orig_filename": "Fredro_Aleksander_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355f.", "author": "", "orig_id": 1421929}}, {"model": "metainfo.source", "pk": 16063, "fields": {"orig_filename": "Fredro_Jan-Aleksander_1829_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421930}}, {"model": "metainfo.source", "pk": 16064, "fields": {"orig_filename": "Freh_Wilhelm_1910_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2128803}}, {"model": "metainfo.source", "pk": 16065, "fields": {"orig_filename": "Freiberger_Gustav_1853_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421931}}, {"model": "metainfo.source", "pk": 16066, "fields": {"orig_filename": "Freinademetz_Joseph_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421932}}, {"model": "metainfo.source", "pk": 16067, "fields": {"orig_filename": "Freindaller_Franz-Seraph-Jos_1753_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421933}}, {"model": "metainfo.source", "pk": 16068, "fields": {"orig_filename": "Freissauff-Neudegg_Felix_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357", "author": "", "orig_id": 1421934}}, {"model": "metainfo.source", "pk": 16069, "fields": {"orig_filename": "Frenzel_Karl_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357", "author": "", "orig_id": 1421935}}, {"model": "metainfo.source", "pk": 16070, "fields": {"orig_filename": "Freudenreich_Dragutin_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1421937}}, {"model": "metainfo.source", "pk": 16071, "fields": {"orig_filename": "Freudenreich_Josip_1827_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422010}}, {"model": "metainfo.source", "pk": 16072, "fields": {"orig_filename": "Freud_Anton-Walter_1921_2004.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128065}}, {"model": "metainfo.source", "pk": 16073, "fields": {"orig_filename": "Freud_Sigmund_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357f.", "author": "", "orig_id": 1421936}}, {"model": "metainfo.source", "pk": 16074, "fields": {"orig_filename": "Filek-Wittinghausen_Egid_1874_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421055}}, {"model": "metainfo.source", "pk": 16075, "fields": {"orig_filename": "Filipovic_Ivan_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421056}}, {"model": "metainfo.source", "pk": 16076, "fields": {"orig_filename": "Fillunger_Johann_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314f.", "author": "", "orig_id": 1421058}}, {"model": "metainfo.source", "pk": 16077, "fields": {"orig_filename": "Fillunger_Marie_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421059}}, {"model": "metainfo.source", "pk": 16078, "fields": {"orig_filename": "Fillunger_Paul_1883_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421060}}, {"model": "metainfo.source", "pk": 16079, "fields": {"orig_filename": "Filtsch_Johann_1753_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421061}}, {"model": "metainfo.source", "pk": 16080, "fields": {"orig_filename": "Filtsch_Karl_1830_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421062}}, {"model": "metainfo.source", "pk": 16081, "fields": {"orig_filename": "Filzer_Hans_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421064}}, {"model": "metainfo.source", "pk": 16082, "fields": {"orig_filename": "Filz_Fidelis_1777_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315f.", "author": "", "orig_id": 1421063}}, {"model": "metainfo.source", "pk": 16083, "fields": {"orig_filename": "Finaczy_Ernst_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421065}}, {"model": "metainfo.source", "pk": 16084, "fields": {"orig_filename": "Findeisen_Julius_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421066}}, {"model": "metainfo.source", "pk": 16085, "fields": {"orig_filename": "Finger_Alfred_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421140}}, {"model": "metainfo.source", "pk": 16086, "fields": {"orig_filename": "Finger_August_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421141}}, {"model": "metainfo.source", "pk": 16087, "fields": {"orig_filename": "Finger_Ernst_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316f.", "author": "", "orig_id": 1421142}}, {"model": "metainfo.source", "pk": 16088, "fields": {"orig_filename": "Finger_Josef_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421143}}, {"model": "metainfo.source", "pk": 16089, "fields": {"orig_filename": "Finger_Julius_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421144}}, {"model": "metainfo.source", "pk": 16090, "fields": {"orig_filename": "Finkel_Ludwig-Michal-Emanuel_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421149}}, {"model": "metainfo.source", "pk": 16091, "fields": {"orig_filename": "Fink_Anton-Barnabas_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421146}}, {"model": "metainfo.source", "pk": 16092, "fields": {"orig_filename": "Fink_Anton_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421145}}, {"model": "metainfo.source", "pk": 16093, "fields": {"orig_filename": "Fink_Jodok_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317f.", "author": "", "orig_id": 1421147}}, {"model": "metainfo.source", "pk": 16094, "fields": {"orig_filename": "Fink_Josef-Alois_1796_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421148}}, {"model": "metainfo.source", "pk": 16095, "fields": {"orig_filename": "Firnhaber_Friedrich_1818_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421150}}, {"model": "metainfo.source", "pk": 16096, "fields": {"orig_filename": "Firtsch_Georg_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421151}}, {"model": "metainfo.source", "pk": 16097, "fields": {"orig_filename": "Fischbach_Johann_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421152}}, {"model": "metainfo.source", "pk": 16098, "fields": {"orig_filename": "Fischel_Alfred_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421154}}, {"model": "metainfo.source", "pk": 16099, "fields": {"orig_filename": "Fischel_Alfred_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421153}}, {"model": "metainfo.source", "pk": 16100, "fields": {"orig_filename": "Fischel_David-Gabriel_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421155}}, {"model": "metainfo.source", "pk": 16101, "fields": {"orig_filename": "Fischel_Ernst_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421156}}, {"model": "metainfo.source", "pk": 16102, "fields": {"orig_filename": "Fischer-Ankern_Anton_1812_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421252}}, {"model": "metainfo.source", "pk": 16103, "fields": {"orig_filename": "Fischer-Roesslerstamm_Franz_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421253}}, {"model": "metainfo.source", "pk": 16104, "fields": {"orig_filename": "Fischer-Roesslerstamm_Josef-Emanuel_1787_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421254}}, {"model": "metainfo.source", "pk": 16105, "fields": {"orig_filename": "Fischer-Zickhartsburg_Friedrich_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421255}}, {"model": "metainfo.source", "pk": 16106, "fields": {"orig_filename": "Fischer_Albert_1830_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421157}}, {"model": "metainfo.source", "pk": 16107, "fields": {"orig_filename": "Fischer_Alois_1796_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319f.", "author": "", "orig_id": 1421158}}, {"model": "metainfo.source", "pk": 16108, "fields": {"orig_filename": "Fischer_Berthold_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421159}}, {"model": "metainfo.source", "pk": 16109, "fields": {"orig_filename": "Fischer_Christian_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421161}}, {"model": "metainfo.source", "pk": 16110, "fields": {"orig_filename": "Fischer_Cyrill_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421160}}, {"model": "metainfo.source", "pk": 16111, "fields": {"orig_filename": "Fischer_Daniel_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421162}}, {"model": "metainfo.source", "pk": 16112, "fields": {"orig_filename": "Fischer_Eduard_1846_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320f.", "author": "", "orig_id": 1421163}}, {"model": "metainfo.source", "pk": 16113, "fields": {"orig_filename": "Fischer_Eduard_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421164}}, {"model": "metainfo.source", "pk": 16114, "fields": {"orig_filename": "Fischer_Engelbert_1833_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421237}}, {"model": "metainfo.source", "pk": 16115, "fields": {"orig_filename": "Fischer_Felix_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421238}}, {"model": "metainfo.source", "pk": 16116, "fields": {"orig_filename": "Fischer_Franz_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421239}}, {"model": "metainfo.source", "pk": 16117, "fields": {"orig_filename": "Fischer_Friedrich_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421240}}, {"model": "metainfo.source", "pk": 16118, "fields": {"orig_filename": "Fischer_Friedrich_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421241}}, {"model": "metainfo.source", "pk": 16119, "fields": {"orig_filename": "Fischer_Jacob_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321f.", "author": "", "orig_id": 1421242}}, {"model": "metainfo.source", "pk": 16120, "fields": {"orig_filename": "Fischer_Johann-Conrad_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421243}}, {"model": "metainfo.source", "pk": 16121, "fields": {"orig_filename": "Fischer_Johann-Martin_1740_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421244}}, {"model": "metainfo.source", "pk": 16122, "fields": {"orig_filename": "Fischer_Josef_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421245}}, {"model": "metainfo.source", "pk": 16123, "fields": {"orig_filename": "Fischer_Joseph_1780_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322f.", "author": "", "orig_id": 1421246}}, {"model": "metainfo.source", "pk": 16124, "fields": {"orig_filename": "Fischer_Karl-Wilhelm_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421247}}, {"model": "metainfo.source", "pk": 16125, "fields": {"orig_filename": "Fischer_Lorenz-Maximilian_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421248}}, {"model": "metainfo.source", "pk": 16126, "fields": {"orig_filename": "Fischer_Ludwig_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421249}}, {"model": "metainfo.source", "pk": 16127, "fields": {"orig_filename": "Fischer_Rudolf_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323f.", "author": "", "orig_id": 1421250}}, {"model": "metainfo.source", "pk": 16128, "fields": {"orig_filename": "Fischer_Sigmund-Caspar_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2172531}}, {"model": "metainfo.source", "pk": 16129, "fields": {"orig_filename": "Fischer_Wilhelm_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421251}}, {"model": "metainfo.source", "pk": 16130, "fields": {"orig_filename": "Fischhof_Adolf_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421256}}, {"model": "metainfo.source", "pk": 16131, "fields": {"orig_filename": "Fischhof_Joseph_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421257}}, {"model": "metainfo.source", "pk": 16132, "fields": {"orig_filename": "Fischnaler_Konrad_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325f.", "author": "", "orig_id": 1421258}}, {"model": "metainfo.source", "pk": 16133, "fields": {"orig_filename": "Fitzinger_Franz_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421259}}, {"model": "metainfo.source", "pk": 16134, "fields": {"orig_filename": "Fitzinger_Leopold-Joseph_1802_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421260}}, {"model": "metainfo.source", "pk": 16135, "fields": {"orig_filename": "Fitzner_Rudolf_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421261}}, {"model": "metainfo.source", "pk": 16136, "fields": {"orig_filename": "Fjord_Olaf_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2269398}}, {"model": "metainfo.source", "pk": 16137, "fields": {"orig_filename": "Flach_Jozef_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421262}}, {"model": "metainfo.source", "pk": 16138, "fields": {"orig_filename": "Flajsman_Jurij_1818_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421335}}, {"model": "metainfo.source", "pk": 16139, "fields": {"orig_filename": "Flatt-Alfoeld_Karl_1853_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326f.", "author": "", "orig_id": 1421336}}, {"model": "metainfo.source", "pk": 16140, "fields": {"orig_filename": "Flattich_Wilhelm_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421337}}, {"model": "metainfo.source", "pk": 16141, "fields": {"orig_filename": "Flatz_Gebhard_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421338}}, {"model": "metainfo.source", "pk": 16142, "fields": {"orig_filename": "Flechner_Pauline_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421339}}, {"model": "metainfo.source", "pk": 16143, "fields": {"orig_filename": "Fleckh_Johann-Anton_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421340}}, {"model": "metainfo.source", "pk": 16144, "fields": {"orig_filename": "Fleischer-Eichenkranz_Ferdinand_1777_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421343}}, {"model": "metainfo.source", "pk": 16145, "fields": {"orig_filename": "Fleischer_Anton_1845_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421341}}, {"model": "metainfo.source", "pk": 16146, "fields": {"orig_filename": "Fleischer_Max_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421342}}, {"model": "metainfo.source", "pk": 16147, "fields": {"orig_filename": "Fleischhacker_Robert_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1445120}}, {"model": "metainfo.source", "pk": 16148, "fields": {"orig_filename": "Fleischl-Marxow_Ernst_1846_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421344}}, {"model": "metainfo.source", "pk": 16149, "fields": {"orig_filename": "Fleischmann_Andreas_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421345}}, {"model": "metainfo.source", "pk": 16150, "fields": {"orig_filename": "Fleischmann_Benno_1906_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328f.", "author": "", "orig_id": 1421346}}, {"model": "metainfo.source", "pk": 16151, "fields": {"orig_filename": "Fleischmann_Leo_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421347}}, {"model": "metainfo.source", "pk": 16152, "fields": {"orig_filename": "Fleischner_Josef_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421348}}, {"model": "metainfo.source", "pk": 16153, "fields": {"orig_filename": "Fleissner_Hans_1881_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421349}}, {"model": "metainfo.source", "pk": 16154, "fields": {"orig_filename": "Flesch_Carl_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421350}}, {"model": "metainfo.source", "pk": 16155, "fields": {"orig_filename": "Fleszar_Albin-Jan_1888_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329f.", "author": "", "orig_id": 1421351}}, {"model": "metainfo.source", "pk": 16156, "fields": {"orig_filename": "Fligely_August_1810_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421352}}, {"model": "metainfo.source", "pk": 16157, "fields": {"orig_filename": "Flir_Alois-Kasimir_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421353}}, {"model": "metainfo.source", "pk": 16158, "fields": {"orig_filename": "Flis_Janez_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421354}}, {"model": "metainfo.source", "pk": 16159, "fields": {"orig_filename": "Floderer_Wilhelm_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421355}}, {"model": "metainfo.source", "pk": 16160, "fields": {"orig_filename": "Floeck_Oswald_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421356}}, {"model": "metainfo.source", "pk": 16161, "fields": {"orig_filename": "Florschuetz_Josip_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330f.", "author": "", "orig_id": 1421357}}, {"model": "metainfo.source", "pk": 16162, "fields": {"orig_filename": "Fluck-Leidenkron_Josef-Bruno_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421431}}, {"model": "metainfo.source", "pk": 16163, "fields": {"orig_filename": "Fluck-Leidenkron_Moriz-Bruno_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421430}}, {"model": "metainfo.source", "pk": 16164, "fields": {"orig_filename": "Flunk_Matthias_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421432}}, {"model": "metainfo.source", "pk": 16165, "fields": {"orig_filename": "Fodor_Joseph_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331f.", "author": "", "orig_id": 1421433}}, {"model": "metainfo.source", "pk": 16166, "fields": {"orig_filename": "Foelseis_Josef_1760_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421434}}, {"model": "metainfo.source", "pk": 16167, "fields": {"orig_filename": "Foerstel_Gertrude_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421435}}, {"model": "metainfo.source", "pk": 16168, "fields": {"orig_filename": "Foerster-Lauterer_Berta_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421442}}, {"model": "metainfo.source", "pk": 16169, "fields": {"orig_filename": "Foerster-Streffleur_Rudolf_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333f.", "author": "", "orig_id": 1421443}}, {"model": "metainfo.source", "pk": 16170, "fields": {"orig_filename": "Foerster_Anton_1837_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421436}}, {"model": "metainfo.source", "pk": 16171, "fields": {"orig_filename": "Foerster_August_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421437}}, {"model": "metainfo.source", "pk": 16172, "fields": {"orig_filename": "Foerster_Emil_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332f.", "author": "", "orig_id": 1421438}}, {"model": "metainfo.source", "pk": 16173, "fields": {"orig_filename": "Foerster_Florentine_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421439}}, {"model": "metainfo.source", "pk": 16174, "fields": {"orig_filename": "Foerster_Ludwig-Christian-Friedrich_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421440}}, {"model": "metainfo.source", "pk": 16175, "fields": {"orig_filename": "Foerster_Wendelin_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421441}}, {"model": "metainfo.source", "pk": 16176, "fields": {"orig_filename": "Foest-Monshoff_Rudolf_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421444}}, {"model": "metainfo.source", "pk": 16177, "fields": {"orig_filename": "Feid_Joseph_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420682}}, {"model": "metainfo.source", "pk": 16178, "fields": {"orig_filename": "Feifalik_Julius_1833_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290f.", "author": "", "orig_id": 1420683}}, {"model": "metainfo.source", "pk": 16179, "fields": {"orig_filename": "Feigel_Longin_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420684}}, {"model": "metainfo.source", "pk": 16180, "fields": {"orig_filename": "Feigerle_Ignaz_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420685}}, {"model": "metainfo.source", "pk": 16181, "fields": {"orig_filename": "Feigl_Hans_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420686}}, {"model": "metainfo.source", "pk": 16182, "fields": {"orig_filename": "Feilmoser_Andreas_1777_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291f.", "author": "", "orig_id": 1420688}}, {"model": "metainfo.source", "pk": 16183, "fields": {"orig_filename": "Feil_Joseph_1811_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420687}}, {"model": "metainfo.source", "pk": 16184, "fields": {"orig_filename": "Feine_Paul_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420690}}, {"model": "metainfo.source", "pk": 16185, "fields": {"orig_filename": "Fein_Johann_1864_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420689}}, {"model": "metainfo.source", "pk": 16186, "fields": {"orig_filename": "Feistmantel_Franz_1786_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420691}}, {"model": "metainfo.source", "pk": 16187, "fields": {"orig_filename": "Feistmantel_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420692}}, {"model": "metainfo.source", "pk": 16188, "fields": {"orig_filename": "Feistmantel_Karl_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292f.", "author": "", "orig_id": 1420693}}, {"model": "metainfo.source", "pk": 16189, "fields": {"orig_filename": "Feistmantel_Ottokar_1848_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420694}}, {"model": "metainfo.source", "pk": 16190, "fields": {"orig_filename": "Feistmantel_Rudolf_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420695}}, {"model": "metainfo.source", "pk": 16191, "fields": {"orig_filename": "Feitler_Siegmund_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420696}}, {"model": "metainfo.source", "pk": 16192, "fields": {"orig_filename": "Fejerpataky_Ladislaus_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293f.", "author": "", "orig_id": 1420698}}, {"model": "metainfo.source", "pk": 16193, "fields": {"orig_filename": "Fejervary-Komlos-Keresztes_Geza_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420699}}, {"model": "metainfo.source", "pk": 16194, "fields": {"orig_filename": "Fejer_Georg_1766_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420697}}, {"model": "metainfo.source", "pk": 16195, "fields": {"orig_filename": "Fekonja_Andrej_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420768}}, {"model": "metainfo.source", "pk": 16196, "fields": {"orig_filename": "Fekonja_Roman_1868_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420769}}, {"model": "metainfo.source", "pk": 16197, "fields": {"orig_filename": "Felbinger_Franz_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420770}}, {"model": "metainfo.source", "pk": 16198, "fields": {"orig_filename": "Felderer_Hieronymus_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420775}}, {"model": "metainfo.source", "pk": 16199, "fields": {"orig_filename": "Felder_Cajetan_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294f.", "author": "", "orig_id": 1420772}}, {"model": "metainfo.source", "pk": 16200, "fields": {"orig_filename": "Felder_Franz-Michael_1839_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420773}}, {"model": "metainfo.source", "pk": 16201, "fields": {"orig_filename": "Felder_Rudolf_1842_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420774}}, {"model": "metainfo.source", "pk": 16202, "fields": {"orig_filename": "Feldhammer_Jacob_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2029476}}, {"model": "metainfo.source", "pk": 16203, "fields": {"orig_filename": "Feldkircher_Josef_1812_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295f.", "author": "", "orig_id": 1420776}}, {"model": "metainfo.source", "pk": 16204, "fields": {"orig_filename": "Feldmann_Leopold_1802_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420778}}, {"model": "metainfo.source", "pk": 16205, "fields": {"orig_filename": "Feldman_Wilhelm_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420777}}, {"model": "metainfo.source", "pk": 16206, "fields": {"orig_filename": "Feldner_Gundisalvus_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420779}}, {"model": "metainfo.source", "pk": 16207, "fields": {"orig_filename": "Felgel-Farnholz_Anton_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420780}}, {"model": "metainfo.source", "pk": 16208, "fields": {"orig_filename": "Felix_Eugen_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420782}}, {"model": "metainfo.source", "pk": 16209, "fields": {"orig_filename": "Felix_Herbert_1908_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147891}}, {"model": "metainfo.source", "pk": 16210, "fields": {"orig_filename": "Fellinger_Johann-Georg_1781_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296f.", "author": "", "orig_id": 1420783}}, {"model": "metainfo.source", "pk": 16211, "fields": {"orig_filename": "Fellner-Feldegg_Christoph_1789_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420787}}, {"model": "metainfo.source", "pk": 16212, "fields": {"orig_filename": "Fellner-Feldegg_Ferdinand_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420788}}, {"model": "metainfo.source", "pk": 16213, "fields": {"orig_filename": "Fellner_Ferdinand-I_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420784}}, {"model": "metainfo.source", "pk": 16214, "fields": {"orig_filename": "Fellner_Ferdinand-Ii_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420785}}, {"model": "metainfo.source", "pk": 16215, "fields": {"orig_filename": "Fellner_Michael-Ignaz_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420786}}, {"model": "metainfo.source", "pk": 16216, "fields": {"orig_filename": "Felmayer_Franz_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420789}}, {"model": "metainfo.source", "pk": 16217, "fields": {"orig_filename": "Felner_Koloman_1750_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420861}}, {"model": "metainfo.source", "pk": 16218, "fields": {"orig_filename": "Felsenreich_Anton_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420862}}, {"model": "metainfo.source", "pk": 16219, "fields": {"orig_filename": "Fendi_Peter_1796_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420863}}, {"model": "metainfo.source", "pk": 16220, "fields": {"orig_filename": "Fenner-Fenneberg_Daniel_1820_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420864}}, {"model": "metainfo.source", "pk": 16221, "fields": {"orig_filename": "Fenyes_Alexius_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298f.", "author": "", "orig_id": 1420865}}, {"model": "metainfo.source", "pk": 16222, "fields": {"orig_filename": "Fenyi_Julius_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299", "author": "", "orig_id": 1420866}}, {"model": "metainfo.source", "pk": 16223, "fields": {"orig_filename": "Fenzl_Eduard_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299", "author": "", "orig_id": 1420867}}, {"model": "metainfo.source", "pk": 16224, "fields": {"orig_filename": "Ferdinand-Maximilian___1832_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300f.", "author": "", "orig_id": 1420872}}, {"model": "metainfo.source", "pk": 16225, "fields": {"orig_filename": "Ferdinand_I_1793_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299f.", "author": "", "orig_id": 1420869}}, {"model": "metainfo.source", "pk": 16226, "fields": {"orig_filename": "Ferdinand_Karl-Josef_1781_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300", "author": "", "orig_id": 1420871}}, {"model": "metainfo.source", "pk": 16227, "fields": {"orig_filename": "Ferdinand__1769_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300", "author": "", "orig_id": 1420870}}, {"model": "metainfo.source", "pk": 16228, "fields": {"orig_filename": "Ferenczi_Zoltan_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 301", "author": "", "orig_id": 1420873}}, {"model": "metainfo.source", "pk": 16229, "fields": {"orig_filename": "Ferenczy_Franz_1835_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 301f.", "author": "", "orig_id": 1420874}}, {"model": "metainfo.source", "pk": 16230, "fields": {"orig_filename": "Ferenczy_Ida_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420875}}, {"model": "metainfo.source", "pk": 16231, "fields": {"orig_filename": "Ferenczy_Josef_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420877}}, {"model": "metainfo.source", "pk": 16232, "fields": {"orig_filename": "Ferenczy_Jose_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420876}}, {"model": "metainfo.source", "pk": 16233, "fields": {"orig_filename": "Ferenczy_Karl_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420878}}, {"model": "metainfo.source", "pk": 16234, "fields": {"orig_filename": "Ferenczy_Stefan_1792_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420879}}, {"model": "metainfo.source", "pk": 16235, "fields": {"orig_filename": "Ferk_Franz_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420880}}, {"model": "metainfo.source", "pk": 16236, "fields": {"orig_filename": "Fermendzin_Eusebije_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420881}}, {"model": "metainfo.source", "pk": 16237, "fields": {"orig_filename": "Fernau_Albert_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420882}}, {"model": "metainfo.source", "pk": 16238, "fields": {"orig_filename": "Ferrari_Emil_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420953}}, {"model": "metainfo.source", "pk": 16239, "fields": {"orig_filename": "Ferstel_Heinrich_1828_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303f.", "author": "", "orig_id": 1420954}}, {"model": "metainfo.source", "pk": 16240, "fields": {"orig_filename": "Ferstel_Max_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 304", "author": "", "orig_id": 1420955}}, {"model": "metainfo.source", "pk": 16241, "fields": {"orig_filename": "Fessler_Ignaz-Aurel_1756_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 304f.", "author": "", "orig_id": 1420956}}, {"model": "metainfo.source", "pk": 16242, "fields": {"orig_filename": "Fessler_Johann-Bapt_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420957}}, {"model": "metainfo.source", "pk": 16243, "fields": {"orig_filename": "Fessler_Josef_1813_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420958}}, {"model": "metainfo.source", "pk": 16244, "fields": {"orig_filename": "Festerburg_Gerard-Edward_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420961}}, {"model": "metainfo.source", "pk": 16245, "fields": {"orig_filename": "Festetics_Georg_1755_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420962}}, {"model": "metainfo.source", "pk": 16246, "fields": {"orig_filename": "Fest_Bernhard_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420959}}, {"model": "metainfo.source", "pk": 16247, "fields": {"orig_filename": "Fest_Emerich_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305f.", "author": "", "orig_id": 1420960}}, {"model": "metainfo.source", "pk": 16248, "fields": {"orig_filename": "Feszl_Friedrich_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420963}}, {"model": "metainfo.source", "pk": 16249, "fields": {"orig_filename": "Feszty_Arpad_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420964}}, {"model": "metainfo.source", "pk": 16250, "fields": {"orig_filename": "Feuchtersleben_Ernst_1806_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306f.", "author": "", "orig_id": 1420965}}, {"model": "metainfo.source", "pk": 16251, "fields": {"orig_filename": "Feuchtwang_David_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420966}}, {"model": "metainfo.source", "pk": 16252, "fields": {"orig_filename": "Feuer_Nathanael_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420967}}, {"model": "metainfo.source", "pk": 16253, "fields": {"orig_filename": "Fey_Emil_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420968}}, {"model": "metainfo.source", "pk": 16254, "fields": {"orig_filename": "Fiala_Eduard_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307f.", "author": "", "orig_id": 1420969}}, {"model": "metainfo.source", "pk": 16255, "fields": {"orig_filename": "Fiala_Franz_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420970}}, {"model": "metainfo.source", "pk": 16256, "fields": {"orig_filename": "Fiala_Hans_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420971}}, {"model": "metainfo.source", "pk": 16257, "fields": {"orig_filename": "Fibich_Stanislaw_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420972}}, {"model": "metainfo.source", "pk": 16258, "fields": {"orig_filename": "Fibich_Zdenek_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420973}}, {"model": "metainfo.source", "pk": 16259, "fields": {"orig_filename": "Fichtl_Franz_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308f.", "author": "", "orig_id": 1421042}}, {"model": "metainfo.source", "pk": 16260, "fields": {"orig_filename": "Fichtner_Carl_1805_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309", "author": "", "orig_id": 1421044}}, {"model": "metainfo.source", "pk": 16261, "fields": {"orig_filename": "Fickert_Auguste_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 310", "author": "", "orig_id": 1421047}}, {"model": "metainfo.source", "pk": 16262, "fields": {"orig_filename": "Ficker_Adolph_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309", "author": "", "orig_id": 1421045}}, {"model": "metainfo.source", "pk": 16263, "fields": {"orig_filename": "Ficker_Julius_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309f.", "author": "", "orig_id": 1421046}}, {"model": "metainfo.source", "pk": 16264, "fields": {"orig_filename": "Ficquelmont_Karl-Ludwig_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 310f.", "author": "", "orig_id": 1421048}}, {"model": "metainfo.source", "pk": 16265, "fields": {"orig_filename": "Fieber_Franz-Xaver_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421050}}, {"model": "metainfo.source", "pk": 16266, "fields": {"orig_filename": "Fiedler_Bernhard_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421051}}, {"model": "metainfo.source", "pk": 16267, "fields": {"orig_filename": "Fiedler_Bruno_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311f.", "author": "", "orig_id": 1421052}}, {"model": "metainfo.source", "pk": 16268, "fields": {"orig_filename": "Fiedler_Josef_1819_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420023}}, {"model": "metainfo.source", "pk": 16269, "fields": {"orig_filename": "Fiedler_Karl-Borromaeus_1817_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421049}}, {"model": "metainfo.source", "pk": 16270, "fields": {"orig_filename": "Fiedler_Tadeusz_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420024}}, {"model": "metainfo.source", "pk": 16271, "fields": {"orig_filename": "Fierich_Franciszek-Ksawery_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420025}}, {"model": "metainfo.source", "pk": 16272, "fields": {"orig_filename": "Fierich_Maurycy_1856_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420026}}, {"model": "metainfo.source", "pk": 16273, "fields": {"orig_filename": "Fierlinger_Julius_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312f.", "author": "", "orig_id": 1420027}}, {"model": "metainfo.source", "pk": 16274, "fields": {"orig_filename": "Figdor_Albert_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420028}}, {"model": "metainfo.source", "pk": 16275, "fields": {"orig_filename": "Figdor_Wilhelm_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420029}}, {"model": "metainfo.source", "pk": 16276, "fields": {"orig_filename": "Figuly_Ignaz-Karl_1807_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420030}}, {"model": "metainfo.source", "pk": 16277, "fields": {"orig_filename": "Fijalek_Jan-Nepomucen_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313f.", "author": "", "orig_id": 1420031}}, {"model": "metainfo.source", "pk": 16278, "fields": {"orig_filename": "Fijan_Andrija_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421053}}, {"model": "metainfo.source", "pk": 16279, "fields": {"orig_filename": "Filarszky_Nandor_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421054}}, {"model": "metainfo.source", "pk": 16280, "fields": {"orig_filename": "Esterhazy_Paul-Iii-Anton_1786_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421890}}, {"model": "metainfo.source", "pk": 16281, "fields": {"orig_filename": "Estermann_Josef_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269f.", "author": "", "orig_id": 1421891}}, {"model": "metainfo.source", "pk": 16282, "fields": {"orig_filename": "Estreicher_Alois-Raphael_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421892}}, {"model": "metainfo.source", "pk": 16283, "fields": {"orig_filename": "Estreicher_Karl-Josef_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421893}}, {"model": "metainfo.source", "pk": 16284, "fields": {"orig_filename": "Estreicher_Stanislaus_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421894}}, {"model": "metainfo.source", "pk": 16285, "fields": {"orig_filename": "Eterovic_Karlo_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421895}}, {"model": "metainfo.source", "pk": 16286, "fields": {"orig_filename": "Ethofer_Rosa_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270f.", "author": "", "orig_id": 1421896}}, {"model": "metainfo.source", "pk": 16287, "fields": {"orig_filename": "Ethofer_Theodor-Josef_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421897}}, {"model": "metainfo.source", "pk": 16288, "fields": {"orig_filename": "Etienne_Michael_1827_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421898}}, {"model": "metainfo.source", "pk": 16289, "fields": {"orig_filename": "Etrich_Igo_1879_1967.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1442254}}, {"model": "metainfo.source", "pk": 16290, "fields": {"orig_filename": "Ettel_Bonaventura_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421899}}, {"model": "metainfo.source", "pk": 16291, "fields": {"orig_filename": "Ettenreich_Christian-Josef_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421900}}, {"model": "metainfo.source", "pk": 16292, "fields": {"orig_filename": "Ettinger_Josef_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421902}}, {"model": "metainfo.source", "pk": 16293, "fields": {"orig_filename": "Ettingshausen_Andreas_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271f.", "author": "", "orig_id": 1421903}}, {"model": "metainfo.source", "pk": 16294, "fields": {"orig_filename": "Ettingshausen_Constantin_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272", "author": "", "orig_id": 1421904}}, {"model": "metainfo.source", "pk": 16295, "fields": {"orig_filename": "Etti_Karl_1825_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421901}}, {"model": "metainfo.source", "pk": 16296, "fields": {"orig_filename": "Ettmayer-Adelsburg_Karl_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272", "author": "", "orig_id": 1421905}}, {"model": "metainfo.source", "pk": 16297, "fields": {"orig_filename": "Etzelt-Loewenfels_Josef_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421907}}, {"model": "metainfo.source", "pk": 16298, "fields": {"orig_filename": "Etzel_Karl_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272f.", "author": "", "orig_id": 1421906}}, {"model": "metainfo.source", "pk": 16299, "fields": {"orig_filename": "Eugling_Max_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421908}}, {"model": "metainfo.source", "pk": 16300, "fields": {"orig_filename": "Eurich_Friedrich-Emanuel_1772_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421909}}, {"model": "metainfo.source", "pk": 16301, "fields": {"orig_filename": "Evers_Carl_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421910}}, {"model": "metainfo.source", "pk": 16302, "fields": {"orig_filename": "Ewald_Carl_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273f.", "author": "", "orig_id": 1421911}}, {"model": "metainfo.source", "pk": 16303, "fields": {"orig_filename": "Exl_Ferdinand_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274", "author": "", "orig_id": 1421913}}, {"model": "metainfo.source", "pk": 16304, "fields": {"orig_filename": "Exner-Ewarten_Alfred_1875_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421991}}, {"model": "metainfo.source", "pk": 16305, "fields": {"orig_filename": "Exner-Ewarten_Felix-Maria_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276f.", "author": "", "orig_id": 1421992}}, {"model": "metainfo.source", "pk": 16306, "fields": {"orig_filename": "Exner-Ewarten_Sigmund_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421993}}, {"model": "metainfo.source", "pk": 16307, "fields": {"orig_filename": "Exner_Adolf_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274", "author": "", "orig_id": 1421985}}, {"model": "metainfo.source", "pk": 16308, "fields": {"orig_filename": "Exner_Emilie_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274f.", "author": "", "orig_id": 1421986}}, {"model": "metainfo.source", "pk": 16309, "fields": {"orig_filename": "Exner_Franz-Serafin_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 275f.", "author": "", "orig_id": 1421988}}, {"model": "metainfo.source", "pk": 16310, "fields": {"orig_filename": "Exner_Franz_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 275", "author": "", "orig_id": 1421987}}, {"model": "metainfo.source", "pk": 16311, "fields": {"orig_filename": "Exner_Karl_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421989}}, {"model": "metainfo.source", "pk": 16312, "fields": {"orig_filename": "Exner_Wilhelm-Franz_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421990}}, {"model": "metainfo.source", "pk": 16313, "fields": {"orig_filename": "Eybler_Joseph_1765_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421995}}, {"model": "metainfo.source", "pk": 16314, "fields": {"orig_filename": "Eybl_Franz_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421994}}, {"model": "metainfo.source", "pk": 16315, "fields": {"orig_filename": "Eybner_Otto_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277f.", "author": "", "orig_id": 1421996}}, {"model": "metainfo.source", "pk": 16316, "fields": {"orig_filename": "Eyrl-Waldgries-Liebenaich_Georg_1849_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421997}}, {"model": "metainfo.source", "pk": 16317, "fields": {"orig_filename": "Eysler_Edmund_1874_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421998}}, {"model": "metainfo.source", "pk": 16318, "fields": {"orig_filename": "Eyssen_Vinzenz_1760_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278f.", "author": "", "orig_id": 1422000}}, {"model": "metainfo.source", "pk": 16319, "fields": {"orig_filename": "Fabbroni_Giovanni-Valentino-Mattia_1752_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422001}}, {"model": "metainfo.source", "pk": 16320, "fields": {"orig_filename": "Faber_Moritz_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422002}}, {"model": "metainfo.source", "pk": 16321, "fields": {"orig_filename": "Fabian_Oskar_1846_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422003}}, {"model": "metainfo.source", "pk": 16322, "fields": {"orig_filename": "Fabini_Johann-Gottlieb_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422004}}, {"model": "metainfo.source", "pk": 16323, "fields": {"orig_filename": "Fabini_Joseph-Samuel_1794_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279f.", "author": "", "orig_id": 1422007}}, {"model": "metainfo.source", "pk": 16324, "fields": {"orig_filename": "Fabini_Ludwig_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422005}}, {"model": "metainfo.source", "pk": 16325, "fields": {"orig_filename": "Fabini_Theodor_1828_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422006}}, {"model": "metainfo.source", "pk": 16326, "fields": {"orig_filename": "Fabinyi_Rudolf_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422008}}, {"model": "metainfo.source", "pk": 16327, "fields": {"orig_filename": "Fabjancic_Vladislav_1894_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422009}}, {"model": "metainfo.source", "pk": 16328, "fields": {"orig_filename": "Fabricius_Otto_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422075}}, {"model": "metainfo.source", "pk": 16329, "fields": {"orig_filename": "Fabris_Anton_1792_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422076}}, {"model": "metainfo.source", "pk": 16330, "fields": {"orig_filename": "Fabritius_Karl_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422077}}, {"model": "metainfo.source", "pk": 16331, "fields": {"orig_filename": "Facchini_Francesco_1788_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422078}}, {"model": "metainfo.source", "pk": 16332, "fields": {"orig_filename": "Fadrusz_Johann_1858_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422079}}, {"model": "metainfo.source", "pk": 16333, "fields": {"orig_filename": "Faerber_Heinrich_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422080}}, {"model": "metainfo.source", "pk": 16334, "fields": {"orig_filename": "Faerber_Meir-Marcell_1908_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465441}}, {"model": "metainfo.source", "pk": 16335, "fields": {"orig_filename": "Fahrbach_Josef_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422081}}, {"model": "metainfo.source", "pk": 16336, "fields": {"orig_filename": "Fahrbach_Philipp_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422082}}, {"model": "metainfo.source", "pk": 16337, "fields": {"orig_filename": "Fahringer_Josef_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422083}}, {"model": "metainfo.source", "pk": 16338, "fields": {"orig_filename": "Fahrngruber_Johannes_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422084}}, {"model": "metainfo.source", "pk": 16339, "fields": {"orig_filename": "Faistauer_Anton_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422085}}, {"model": "metainfo.source", "pk": 16340, "fields": {"orig_filename": "Fajgelj_Danilo_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282f.", "author": "", "orig_id": 1422086}}, {"model": "metainfo.source", "pk": 16341, "fields": {"orig_filename": "Fajkmajer_Karl_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422087}}, {"model": "metainfo.source", "pk": 16342, "fields": {"orig_filename": "Faktor_Emil_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422088}}, {"model": "metainfo.source", "pk": 16343, "fields": {"orig_filename": "Faktor_Franz-Josef_1861_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422089}}, {"model": "metainfo.source", "pk": 16344, "fields": {"orig_filename": "Falat_Julian_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422090}}, {"model": "metainfo.source", "pk": 16345, "fields": {"orig_filename": "Falb_Rudolf_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422091}}, {"model": "metainfo.source", "pk": 16346, "fields": {"orig_filename": "Falke-Lilienstein_Hans_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284f.", "author": "", "orig_id": 1422096}}, {"model": "metainfo.source", "pk": 16347, "fields": {"orig_filename": "Falkenhayn_Julius_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422097}}, {"model": "metainfo.source", "pk": 16348, "fields": {"orig_filename": "Falke_Jakob_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422094}}, {"model": "metainfo.source", "pk": 16349, "fields": {"orig_filename": "Falke_Otto_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422095}}, {"model": "metainfo.source", "pk": 16350, "fields": {"orig_filename": "Falkner_Julie_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422098}}, {"model": "metainfo.source", "pk": 16351, "fields": {"orig_filename": "Falk_Maximilian_1828_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422092}}, {"model": "metainfo.source", "pk": 16352, "fields": {"orig_filename": "Falk_Norbert_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422093}}, {"model": "metainfo.source", "pk": 16353, "fields": {"orig_filename": "Faller_Nikola_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422165}}, {"model": "metainfo.source", "pk": 16354, "fields": {"orig_filename": "Fallmann_Engelbert_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422166}}, {"model": "metainfo.source", "pk": 16355, "fields": {"orig_filename": "Fallmerayer_Jakob-Philipp_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285f.", "author": "", "orig_id": 1422167}}, {"model": "metainfo.source", "pk": 16356, "fields": {"orig_filename": "Fallon_Ludwig-August_1776_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 286f.", "author": "", "orig_id": 1422168}}, {"model": "metainfo.source", "pk": 16357, "fields": {"orig_filename": "Fall_Leo_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422099}}, {"model": "metainfo.source", "pk": 16358, "fields": {"orig_filename": "Falta_Wilhelm_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422169}}, {"model": "metainfo.source", "pk": 16359, "fields": {"orig_filename": "Faltis_Evelyn_1890_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422170}}, {"model": "metainfo.source", "pk": 16360, "fields": {"orig_filename": "Faltis_Johann_1796_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422171}}, {"model": "metainfo.source", "pk": 16361, "fields": {"orig_filename": "Fancev_Franjo_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422172}}, {"model": "metainfo.source", "pk": 16362, "fields": {"orig_filename": "Fanderlik_Joseph_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422173}}, {"model": "metainfo.source", "pk": 16363, "fields": {"orig_filename": "Fangor_Andrzej_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422174}}, {"model": "metainfo.source", "pk": 16364, "fields": {"orig_filename": "Farga_Franz_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287f.", "author": "", "orig_id": 1422175}}, {"model": "metainfo.source", "pk": 16365, "fields": {"orig_filename": "Farkas-Boeloen_Alexander_1795_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422177}}, {"model": "metainfo.source", "pk": 16366, "fields": {"orig_filename": "Farkas_Julius_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422176}}, {"model": "metainfo.source", "pk": 16367, "fields": {"orig_filename": "Farsky_Franz_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422178}}, {"model": "metainfo.source", "pk": 16368, "fields": {"orig_filename": "Fassbender_Eugen_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1446406}}, {"model": "metainfo.source", "pk": 16369, "fields": {"orig_filename": "Fassel_Hirsch-Baer_1802_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422179}}, {"model": "metainfo.source", "pk": 16370, "fields": {"orig_filename": "Fasser_Rosa_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422180}}, {"model": "metainfo.source", "pk": 16371, "fields": {"orig_filename": "Fatur_Lea_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422181}}, {"model": "metainfo.source", "pk": 16372, "fields": {"orig_filename": "Faulmann_Karl_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422182}}, {"model": "metainfo.source", "pk": 16373, "fields": {"orig_filename": "Fautz_Ludwig_1811_1880.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 3 (15.11.2014)", "author": "", "orig_id": 2247938}}, {"model": "metainfo.source", "pk": 16374, "fields": {"orig_filename": "Fay_Andreas_1786_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422183}}, {"model": "metainfo.source", "pk": 16375, "fields": {"orig_filename": "Fazekas_Michael_1766_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422184}}, {"model": "metainfo.source", "pk": 16376, "fields": {"orig_filename": "Federhofer_Karl_1885_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2082341}}, {"model": "metainfo.source", "pk": 16377, "fields": {"orig_filename": "Federler_Aloys_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422185}}, {"model": "metainfo.source", "pk": 16378, "fields": {"orig_filename": "Federn_Josef_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422186}}, {"model": "metainfo.source", "pk": 16379, "fields": {"orig_filename": "Federowicz_Ignacy_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420677}}, {"model": "metainfo.source", "pk": 16380, "fields": {"orig_filename": "Federowicz_Wladyslaw-Walenty_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420679}}, {"model": "metainfo.source", "pk": 16381, "fields": {"orig_filename": "Fedorowicz_Adam_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420678}}, {"model": "metainfo.source", "pk": 16382, "fields": {"orig_filename": "Feichter_Michael_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420680}}, {"model": "metainfo.source", "pk": 16383, "fields": {"orig_filename": "Feichtinger_Johann-Nep_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420681}}, {"model": "metainfo.source", "pk": 16384, "fields": {"orig_filename": "Endlicher_Stephan-Ladislaus_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 249", "author": "", "orig_id": 1421502}}, {"model": "metainfo.source", "pk": 16385, "fields": {"orig_filename": "Endl_Friedrich_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248f.", "author": "", "orig_id": 1421429}}, {"model": "metainfo.source", "pk": 16386, "fields": {"orig_filename": "Endrici_Coelestin_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 249f.", "author": "", "orig_id": 1421503}}, {"model": "metainfo.source", "pk": 16387, "fields": {"orig_filename": "Endroedy_Alexander_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421504}}, {"model": "metainfo.source", "pk": 16388, "fields": {"orig_filename": "Engehausen_Christine_1817_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421505}}, {"model": "metainfo.source", "pk": 16389, "fields": {"orig_filename": "Engel-Mainfelden_August_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421509}}, {"model": "metainfo.source", "pk": 16390, "fields": {"orig_filename": "Engelbrecht_August_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421510}}, {"model": "metainfo.source", "pk": 16391, "fields": {"orig_filename": "Engelhart_Josef_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421511}}, {"model": "metainfo.source", "pk": 16392, "fields": {"orig_filename": "Engelmann_Eduard_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251f.", "author": "", "orig_id": 1421512}}, {"model": "metainfo.source", "pk": 16393, "fields": {"orig_filename": "Engelmann_Eduard_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421513}}, {"model": "metainfo.source", "pk": 16394, "fields": {"orig_filename": "Engel_Franz_1898_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446234}}, {"model": "metainfo.source", "pk": 16395, "fields": {"orig_filename": "Engel_Friedrich_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421506}}, {"model": "metainfo.source", "pk": 16396, "fields": {"orig_filename": "Engel_Jakob-Karl_1821_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421507}}, {"model": "metainfo.source", "pk": 16397, "fields": {"orig_filename": "Engel_Josef_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421508}}, {"model": "metainfo.source", "pk": 16398, "fields": {"orig_filename": "Engel_Paul_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446243}}, {"model": "metainfo.source", "pk": 16399, "fields": {"orig_filename": "Engerth_Eduard_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421515}}, {"model": "metainfo.source", "pk": 16400, "fields": {"orig_filename": "Engerth_Erasmus_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421516}}, {"model": "metainfo.source", "pk": 16401, "fields": {"orig_filename": "Engerth_Wilhelm_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421517}}, {"model": "metainfo.source", "pk": 16402, "fields": {"orig_filename": "Engeszer_Matyas_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421518}}, {"model": "metainfo.source", "pk": 16403, "fields": {"orig_filename": "Englaender_Richard_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421522}}, {"model": "metainfo.source", "pk": 16404, "fields": {"orig_filename": "Englaender_Richard_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421523}}, {"model": "metainfo.source", "pk": 16405, "fields": {"orig_filename": "Englaender_Sigmund_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421524}}, {"model": "metainfo.source", "pk": 16406, "fields": {"orig_filename": "Englisch_Johann_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421525}}, {"model": "metainfo.source", "pk": 16407, "fields": {"orig_filename": "Englisch_Josef_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253f.", "author": "", "orig_id": 1421526}}, {"model": "metainfo.source", "pk": 16408, "fields": {"orig_filename": "Englmann_Franz-Wilhelm_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421527}}, {"model": "metainfo.source", "pk": 16409, "fields": {"orig_filename": "Engl_Hugo_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421520}}, {"model": "metainfo.source", "pk": 16410, "fields": {"orig_filename": "Engl_Johann-Ev_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421521}}, {"model": "metainfo.source", "pk": 16411, "fields": {"orig_filename": "Enk-Burg_Karl-Maria_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421528}}, {"model": "metainfo.source", "pk": 16412, "fields": {"orig_filename": "Enk-Burg_Michael_1788_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421599}}, {"model": "metainfo.source", "pk": 16413, "fields": {"orig_filename": "Ennemoser_Josef_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254f.", "author": "", "orig_id": 1421600}}, {"model": "metainfo.source", "pk": 16414, "fields": {"orig_filename": "Ens_Faustin_1782_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421602}}, {"model": "metainfo.source", "pk": 16415, "fields": {"orig_filename": "Entz_Geza_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421603}}, {"model": "metainfo.source", "pk": 16416, "fields": {"orig_filename": "Enzenberg_Artur_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421604}}, {"model": "metainfo.source", "pk": 16417, "fields": {"orig_filename": "Enzenberg_Franz-Josef_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255f.", "author": "", "orig_id": 1421605}}, {"model": "metainfo.source", "pk": 16418, "fields": {"orig_filename": "Enzensperger_Bernhard_1788_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421606}}, {"model": "metainfo.source", "pk": 16419, "fields": {"orig_filename": "Enzensperger_Victor_1867_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421607}}, {"model": "metainfo.source", "pk": 16420, "fields": {"orig_filename": "Eoetvoes_Joseph_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421608}}, {"model": "metainfo.source", "pk": 16421, "fields": {"orig_filename": "Eoetvoes_Karl_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256f.", "author": "", "orig_id": 1421609}}, {"model": "metainfo.source", "pk": 16422, "fields": {"orig_filename": "Eoetvoes_Roland_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421610}}, {"model": "metainfo.source", "pk": 16423, "fields": {"orig_filename": "Eppich_Franz_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421611}}, {"model": "metainfo.source", "pk": 16424, "fields": {"orig_filename": "Eppich_Josef_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421612}}, {"model": "metainfo.source", "pk": 16425, "fields": {"orig_filename": "Eppinger_Hans_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257f.", "author": "", "orig_id": 1421613}}, {"model": "metainfo.source", "pk": 16426, "fields": {"orig_filename": "Eppinger_Hans_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421614}}, {"model": "metainfo.source", "pk": 16427, "fields": {"orig_filename": "Eppstein_Julius_1846_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421615}}, {"model": "metainfo.source", "pk": 16428, "fields": {"orig_filename": "Epstein_Alexander_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421616}}, {"model": "metainfo.source", "pk": 16429, "fields": {"orig_filename": "Epstein_Alois_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421617}}, {"model": "metainfo.source", "pk": 16430, "fields": {"orig_filename": "Epstein_Jehudo_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421618}}, {"model": "metainfo.source", "pk": 16431, "fields": {"orig_filename": "Epstein_Julius_1832_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421619}}, {"model": "metainfo.source", "pk": 16432, "fields": {"orig_filename": "Epstein_Moritz_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421620}}, {"model": "metainfo.source", "pk": 16433, "fields": {"orig_filename": "Epstein_Richard_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421621}}, {"model": "metainfo.source", "pk": 16434, "fields": {"orig_filename": "Erbach-Schoenberg_Karl-Eugen_1732_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421622}}, {"model": "metainfo.source", "pk": 16435, "fields": {"orig_filename": "Erban_Franz_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421697}}, {"model": "metainfo.source", "pk": 16436, "fields": {"orig_filename": "Erben_Anton_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421698}}, {"model": "metainfo.source", "pk": 16437, "fields": {"orig_filename": "Erben_Josef_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421699}}, {"model": "metainfo.source", "pk": 16438, "fields": {"orig_filename": "Erben_Karl-Jaromir_1811_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421700}}, {"model": "metainfo.source", "pk": 16439, "fields": {"orig_filename": "Erben_Wilhelm_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421701}}, {"model": "metainfo.source", "pk": 16440, "fields": {"orig_filename": "Erdelyi_Johann_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260f.", "author": "", "orig_id": 1421702}}, {"model": "metainfo.source", "pk": 16441, "fields": {"orig_filename": "Erdheim_Jakob_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421703}}, {"model": "metainfo.source", "pk": 16442, "fields": {"orig_filename": "Erdinger_Anton_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421704}}, {"model": "metainfo.source", "pk": 16443, "fields": {"orig_filename": "Erdinger_Karl_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421705}}, {"model": "metainfo.source", "pk": 16444, "fields": {"orig_filename": "Erdoedy_Helene_1831_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421706}}, {"model": "metainfo.source", "pk": 16445, "fields": {"orig_filename": "Erhard_Andreas_1791_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421707}}, {"model": "metainfo.source", "pk": 16446, "fields": {"orig_filename": "Erhard_Ludwig_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421708}}, {"model": "metainfo.source", "pk": 16447, "fields": {"orig_filename": "Erhartt_Antonie_1826_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421709}}, {"model": "metainfo.source", "pk": 16448, "fields": {"orig_filename": "Erhartt_Louise_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421710}}, {"model": "metainfo.source", "pk": 16449, "fields": {"orig_filename": "Erich_Maria_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421711}}, {"model": "metainfo.source", "pk": 16450, "fields": {"orig_filename": "Erjavec_Fran_1834_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262f.", "author": "", "orig_id": 1421712}}, {"model": "metainfo.source", "pk": 16451, "fields": {"orig_filename": "Erkel_Elek_1843_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421713}}, {"model": "metainfo.source", "pk": 16452, "fields": {"orig_filename": "Erkel_Ferenc_1810_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421714}}, {"model": "metainfo.source", "pk": 16453, "fields": {"orig_filename": "Erkel_Gyula_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421715}}, {"model": "metainfo.source", "pk": 16454, "fields": {"orig_filename": "Erkel_Sandor_1846_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421716}}, {"model": "metainfo.source", "pk": 16455, "fields": {"orig_filename": "Erker_Josef_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421717}}, {"model": "metainfo.source", "pk": 16456, "fields": {"orig_filename": "Erler_Franz-Christoph_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421720}}, {"model": "metainfo.source", "pk": 16457, "fields": {"orig_filename": "Erl_Anton_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263f.", "author": "", "orig_id": 1421718}}, {"model": "metainfo.source", "pk": 16458, "fields": {"orig_filename": "Erl_Joseph_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421719}}, {"model": "metainfo.source", "pk": 16459, "fields": {"orig_filename": "Ernest_Ludwig-Stefan_1826_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421793}}, {"model": "metainfo.source", "pk": 16460, "fields": {"orig_filename": "Ernst_Else_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145473}}, {"model": "metainfo.source", "pk": 16461, "fields": {"orig_filename": "Ernst_Heinrich-Wilhelm_1814_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421794}}, {"model": "metainfo.source", "pk": 16462, "fields": {"orig_filename": "Ernst_Karl_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421795}}, {"model": "metainfo.source", "pk": 16463, "fields": {"orig_filename": "Ernst_Leopold_1808_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421796}}, {"model": "metainfo.source", "pk": 16464, "fields": {"orig_filename": "Ernst_Marcin_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421797}}, {"model": "metainfo.source", "pk": 16465, "fields": {"orig_filename": "Ernst_Rodolphe_1854_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421798}}, {"model": "metainfo.source", "pk": 16466, "fields": {"orig_filename": "Ernst_Wilhelm_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421799}}, {"model": "metainfo.source", "pk": 16467, "fields": {"orig_filename": "Eroess_Gyula_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421800}}, {"model": "metainfo.source", "pk": 16468, "fields": {"orig_filename": "Errera_Ugo_1843_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421801}}, {"model": "metainfo.source", "pk": 16469, "fields": {"orig_filename": "Ersin_Alois_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421802}}, {"model": "metainfo.source", "pk": 16470, "fields": {"orig_filename": "Ertler_Bruno_1889_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421805}}, {"model": "metainfo.source", "pk": 16471, "fields": {"orig_filename": "Ertl_Dominik_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421803}}, {"model": "metainfo.source", "pk": 16472, "fields": {"orig_filename": "Ertl_Emil_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421804}}, {"model": "metainfo.source", "pk": 16473, "fields": {"orig_filename": "Ertl_Moriz_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420824}}, {"model": "metainfo.source", "pk": 16474, "fields": {"orig_filename": "Ertmann_Dorothea_1781_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421806}}, {"model": "metainfo.source", "pk": 16475, "fields": {"orig_filename": "Erwein_Josef_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266f.", "author": "", "orig_id": 1421807}}, {"model": "metainfo.source", "pk": 16476, "fields": {"orig_filename": "Escherich_Gustav_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421809}}, {"model": "metainfo.source", "pk": 16477, "fields": {"orig_filename": "Escherich_Katharina_1855_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421810}}, {"model": "metainfo.source", "pk": 16478, "fields": {"orig_filename": "Escherich_Theodor_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421811}}, {"model": "metainfo.source", "pk": 16479, "fields": {"orig_filename": "Eschig_Maximilian_1872_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421812}}, {"model": "metainfo.source", "pk": 16480, "fields": {"orig_filename": "Esch_Mathilde_1820_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421808}}, {"model": "metainfo.source", "pk": 16481, "fields": {"orig_filename": "Esders_Stefan_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421813}}, {"model": "metainfo.source", "pk": 16482, "fields": {"orig_filename": "Eskeles_Bernhard_1754_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421814}}, {"model": "metainfo.source", "pk": 16483, "fields": {"orig_filename": "Esser_Heinrich-Joseph_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421815}}, {"model": "metainfo.source", "pk": 16484, "fields": {"orig_filename": "Essigmann_Alois_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268f.", "author": "", "orig_id": 1421816}}, {"model": "metainfo.source", "pk": 16485, "fields": {"orig_filename": "Esslair_Ferdinand_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421817}}, {"model": "metainfo.source", "pk": 16486, "fields": {"orig_filename": "Estegar_Wartan-Joseph_1843_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421818}}, {"model": "metainfo.source", "pk": 16487, "fields": {"orig_filename": "Esterhazy_Moriz_1807_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421888}}, {"model": "metainfo.source", "pk": 16488, "fields": {"orig_filename": "Esterhazy_Nikolaus-Ii_1765_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421889}}, {"model": "metainfo.source", "pk": 16489, "fields": {"orig_filename": "Ehrhard_Albert-Josef-Maria_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 228", "author": "", "orig_id": 1421036}}, {"model": "metainfo.source", "pk": 16490, "fields": {"orig_filename": "Ehrhart-Ehrhartstein_Johann-Nep_1779_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421038}}, {"model": "metainfo.source", "pk": 16491, "fields": {"orig_filename": "Ehrhart_Vincenz_1823_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 228", "author": "", "orig_id": 1421037}}, {"model": "metainfo.source", "pk": 16492, "fields": {"orig_filename": "Ehrlich_Adolf_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421039}}, {"model": "metainfo.source", "pk": 16493, "fields": {"orig_filename": "Ehrlich_Eugen_1862_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421040}}, {"model": "metainfo.source", "pk": 16494, "fields": {"orig_filename": "Ehrlich_Franz-Karl_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421041}}, {"model": "metainfo.source", "pk": 16495, "fields": {"orig_filename": "Ehrlich_Heinrich_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229f.", "author": "", "orig_id": 1421116}}, {"model": "metainfo.source", "pk": 16496, "fields": {"orig_filename": "Ehrlich_Johann-Nep_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421118}}, {"model": "metainfo.source", "pk": 16497, "fields": {"orig_filename": "Ehrlich_Johann_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421117}}, {"model": "metainfo.source", "pk": 16498, "fields": {"orig_filename": "Ehrlich_Josef-Ruben_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421119}}, {"model": "metainfo.source", "pk": 16499, "fields": {"orig_filename": "Ehrlich_Lambert_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421120}}, {"model": "metainfo.source", "pk": 16500, "fields": {"orig_filename": "Ehrlich_Martin_1871_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421121}}, {"model": "metainfo.source", "pk": 16501, "fields": {"orig_filename": "Ehrlich_Sigmund_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230f.", "author": "", "orig_id": 1421122}}, {"model": "metainfo.source", "pk": 16502, "fields": {"orig_filename": "Ehrlich_Urban_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421123}}, {"model": "metainfo.source", "pk": 16503, "fields": {"orig_filename": "Ehrmann_Camillo_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421124}}, {"model": "metainfo.source", "pk": 16504, "fields": {"orig_filename": "Ehrmann_Martin_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421125}}, {"model": "metainfo.source", "pk": 16505, "fields": {"orig_filename": "Ehrmann_Salomon_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421126}}, {"model": "metainfo.source", "pk": 16506, "fields": {"orig_filename": "Eibenschuetz_Siegmund_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421127}}, {"model": "metainfo.source", "pk": 16507, "fields": {"orig_filename": "Eichberger_Josef_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231f.", "author": "", "orig_id": 1421128}}, {"model": "metainfo.source", "pk": 16508, "fields": {"orig_filename": "Eichert_Franz_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232", "author": "", "orig_id": 1421129}}, {"model": "metainfo.source", "pk": 16509, "fields": {"orig_filename": "Eichhorn_Ambros_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232", "author": "", "orig_id": 1421130}}, {"model": "metainfo.source", "pk": 16510, "fields": {"orig_filename": "Eichhorn_Rudolf_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232f.", "author": "", "orig_id": 1421131}}, {"model": "metainfo.source", "pk": 16511, "fields": {"orig_filename": "Eichler-Eichkron_Wilhelm_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421134}}, {"model": "metainfo.source", "pk": 16512, "fields": {"orig_filename": "Eichler_Ferdinand_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421132}}, {"model": "metainfo.source", "pk": 16513, "fields": {"orig_filename": "Eichler_Hermann_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421133}}, {"model": "metainfo.source", "pk": 16514, "fields": {"orig_filename": "Eichmann_Carl-Julius_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421135}}, {"model": "metainfo.source", "pk": 16515, "fields": {"orig_filename": "Eigl_Josef_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233f.", "author": "", "orig_id": 1421136}}, {"model": "metainfo.source", "pk": 16516, "fields": {"orig_filename": "Eigner_Moriz_1822_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421137}}, {"model": "metainfo.source", "pk": 16517, "fields": {"orig_filename": "Einfalt_Martin_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421138}}, {"model": "metainfo.source", "pk": 16518, "fields": {"orig_filename": "Einoedshofer_Julius_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421139}}, {"model": "metainfo.source", "pk": 16519, "fields": {"orig_filename": "Einsle_Anton_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421212}}, {"model": "metainfo.source", "pk": 16520, "fields": {"orig_filename": "Einspieler_Andrej_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234f.", "author": "", "orig_id": 1421213}}, {"model": "metainfo.source", "pk": 16521, "fields": {"orig_filename": "Einspieler_Lambert_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421214}}, {"model": "metainfo.source", "pk": 16522, "fields": {"orig_filename": "Einspinner_August_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421215}}, {"model": "metainfo.source", "pk": 16523, "fields": {"orig_filename": "Eipeldauer_Franz_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421216}}, {"model": "metainfo.source", "pk": 16524, "fields": {"orig_filename": "Eisath_Georg_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235f.", "author": "", "orig_id": 1421217}}, {"model": "metainfo.source", "pk": 16525, "fields": {"orig_filename": "Eiselsberg_Anton_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421218}}, {"model": "metainfo.source", "pk": 16526, "fields": {"orig_filename": "Eiselt_Jan-Bohumil_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421219}}, {"model": "metainfo.source", "pk": 16527, "fields": {"orig_filename": "Eisenbach_Heinrich_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421220}}, {"model": "metainfo.source", "pk": 16528, "fields": {"orig_filename": "Eisenberger_Severyn_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236f.", "author": "", "orig_id": 1421222}}, {"model": "metainfo.source", "pk": 16529, "fields": {"orig_filename": "Eisenberg_Ludwig-Julius_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421221}}, {"model": "metainfo.source", "pk": 16530, "fields": {"orig_filename": "Eisendle_Richard_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421223}}, {"model": "metainfo.source", "pk": 16531, "fields": {"orig_filename": "Eisenhuth_Djuro_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421224}}, {"model": "metainfo.source", "pk": 16532, "fields": {"orig_filename": "Eisenmenger_August_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421225}}, {"model": "metainfo.source", "pk": 16533, "fields": {"orig_filename": "Eisenmenger_Viktor_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421226}}, {"model": "metainfo.source", "pk": 16534, "fields": {"orig_filename": "Eisenstecken_Josef_1779_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421227}}, {"model": "metainfo.source", "pk": 16535, "fields": {"orig_filename": "Eisenstein_Arthur_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237f.", "author": "", "orig_id": 1421228}}, {"model": "metainfo.source", "pk": 16536, "fields": {"orig_filename": "Eiser_Anton_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421229}}, {"model": "metainfo.source", "pk": 16537, "fields": {"orig_filename": "Eisler-Terramare_Georg_1889_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421236}}, {"model": "metainfo.source", "pk": 16538, "fields": {"orig_filename": "Eisler_Arnold_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421230}}, {"model": "metainfo.source", "pk": 16539, "fields": {"orig_filename": "Eisler_Athanas_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421231}}, {"model": "metainfo.source", "pk": 16540, "fields": {"orig_filename": "Eisler_Fritz_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421232}}, {"model": "metainfo.source", "pk": 16541, "fields": {"orig_filename": "Eisler_Max_1855_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421233}}, {"model": "metainfo.source", "pk": 16542, "fields": {"orig_filename": "Eisler_Max_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421234}}, {"model": "metainfo.source", "pk": 16543, "fields": {"orig_filename": "Eisler_Rudolf_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238f.", "author": "", "orig_id": 1421235}}, {"model": "metainfo.source", "pk": 16544, "fields": {"orig_filename": "Eissner_Franz-Xaver_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421310}}, {"model": "metainfo.source", "pk": 16545, "fields": {"orig_filename": "Eisvogel_Gregor_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421311}}, {"model": "metainfo.source", "pk": 16546, "fields": {"orig_filename": "Eitelberger-Edelberg_Jeanette_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421312}}, {"model": "metainfo.source", "pk": 16547, "fields": {"orig_filename": "Eitelberger-Edelberg_Rudolf_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239f.", "author": "", "orig_id": 1421313}}, {"model": "metainfo.source", "pk": 16548, "fields": {"orig_filename": "Eitl_Franz-Vincenz_1800_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421315}}, {"model": "metainfo.source", "pk": 16549, "fields": {"orig_filename": "Eitner_Wilhelm_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421314}}, {"model": "metainfo.source", "pk": 16550, "fields": {"orig_filename": "Ekert_Franz_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421317}}, {"model": "metainfo.source", "pk": 16551, "fields": {"orig_filename": "Ekert_Karl_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421318}}, {"model": "metainfo.source", "pk": 16552, "fields": {"orig_filename": "Eker_Albert_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421316}}, {"model": "metainfo.source", "pk": 16553, "fields": {"orig_filename": "Ekielski_Wladyslaw_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421319}}, {"model": "metainfo.source", "pk": 16554, "fields": {"orig_filename": "Ekstein_Otto_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421320}}, {"model": "metainfo.source", "pk": 16555, "fields": {"orig_filename": "Elbogen_Friedrich_1854_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421321}}, {"model": "metainfo.source", "pk": 16556, "fields": {"orig_filename": "Eldersch_Matthias_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421322}}, {"model": "metainfo.source", "pk": 16557, "fields": {"orig_filename": "Eliatschek-Siebenburg_Wenzel_1779_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241f.", "author": "", "orig_id": 1421323}}, {"model": "metainfo.source", "pk": 16558, "fields": {"orig_filename": "Elisabeth_Amalie-Eugenie_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421325}}, {"model": "metainfo.source", "pk": 16559, "fields": {"orig_filename": "Elizza_Elise_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421326}}, {"model": "metainfo.source", "pk": 16560, "fields": {"orig_filename": "Ellend_Bernhard_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421327}}, {"model": "metainfo.source", "pk": 16561, "fields": {"orig_filename": "Ellert_Gerhart_1900_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1427195}}, {"model": "metainfo.source", "pk": 16562, "fields": {"orig_filename": "Eller_Louis_1820_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242f.", "author": "", "orig_id": 1421328}}, {"model": "metainfo.source", "pk": 16563, "fields": {"orig_filename": "Ellinger_Joseph_1814_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421329}}, {"model": "metainfo.source", "pk": 16564, "fields": {"orig_filename": "Ellison-Nidlef_Otto_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421330}}, {"model": "metainfo.source", "pk": 16565, "fields": {"orig_filename": "Ellissen_Hubert_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421331}}, {"model": "metainfo.source", "pk": 16566, "fields": {"orig_filename": "Ellmaurer_Josef_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421332}}, {"model": "metainfo.source", "pk": 16567, "fields": {"orig_filename": "Elmayer-Vestenbrugg_Rudolf_1881_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427613}}, {"model": "metainfo.source", "pk": 16568, "fields": {"orig_filename": "Elschnig_Marietta_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243f.", "author": "", "orig_id": 1421333}}, {"model": "metainfo.source", "pk": 16569, "fields": {"orig_filename": "Elssler_Franziska_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421407}}, {"model": "metainfo.source", "pk": 16570, "fields": {"orig_filename": "Elssler_Johann-Florian_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421334}}, {"model": "metainfo.source", "pk": 16571, "fields": {"orig_filename": "Elssler_Theresia_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421408}}, {"model": "metainfo.source", "pk": 16572, "fields": {"orig_filename": "Elterlein_Johann-Georg_1806_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421409}}, {"model": "metainfo.source", "pk": 16573, "fields": {"orig_filename": "Elze_Ludwig-Theodor_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421410}}, {"model": "metainfo.source", "pk": 16574, "fields": {"orig_filename": "Elzholz_Adolf_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421411}}, {"model": "metainfo.source", "pk": 16575, "fields": {"orig_filename": "Embel_Franz-Xaver_1770_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421412}}, {"model": "metainfo.source", "pk": 16576, "fields": {"orig_filename": "Emich_Friedrich_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421413}}, {"model": "metainfo.source", "pk": 16577, "fields": {"orig_filename": "Emich_Gustav_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421414}}, {"model": "metainfo.source", "pk": 16578, "fields": {"orig_filename": "Eminger_Joseph-Wilhelm_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421415}}, {"model": "metainfo.source", "pk": 16579, "fields": {"orig_filename": "Emler_Bonaventura_1831_1862.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446156}}, {"model": "metainfo.source", "pk": 16580, "fields": {"orig_filename": "Emler_Josef_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245f.", "author": "", "orig_id": 1421416}}, {"model": "metainfo.source", "pk": 16581, "fields": {"orig_filename": "Emmer_Johannes_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421417}}, {"model": "metainfo.source", "pk": 16582, "fields": {"orig_filename": "Emminger_Josef_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421419}}, {"model": "metainfo.source", "pk": 16583, "fields": {"orig_filename": "Emperger_Friedrich-Ignaz_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421421}}, {"model": "metainfo.source", "pk": 16584, "fields": {"orig_filename": "Emperger_Vinzenz-Benedikt_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421420}}, {"model": "metainfo.source", "pk": 16585, "fields": {"orig_filename": "Enderes_Aglaia_1836_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247f.", "author": "", "orig_id": 1421425}}, {"model": "metainfo.source", "pk": 16586, "fields": {"orig_filename": "Enderes_Bruno_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421426}}, {"model": "metainfo.source", "pk": 16587, "fields": {"orig_filename": "Enderlen_Eugen_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421427}}, {"model": "metainfo.source", "pk": 16588, "fields": {"orig_filename": "Enders_Johann-Nep_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421428}}, {"model": "metainfo.source", "pk": 16589, "fields": {"orig_filename": "Ender_Eduard_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421422}}, {"model": "metainfo.source", "pk": 16590, "fields": {"orig_filename": "Ender_Johann-Nepomuk_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421423}}, {"model": "metainfo.source", "pk": 16591, "fields": {"orig_filename": "Ender_Thomas_1793_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421424}}, {"model": "metainfo.source", "pk": 16592, "fields": {"orig_filename": "Dunin-Borkowski_Josef_1809_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422143}}, {"model": "metainfo.source", "pk": 16593, "fields": {"orig_filename": "Dunkler_Gaudentius-Andreas_1746_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422144}}, {"model": "metainfo.source", "pk": 16594, "fields": {"orig_filename": "Durdik_Josef_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422145}}, {"model": "metainfo.source", "pk": 16595, "fields": {"orig_filename": "Durig_Josef_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422146}}, {"model": "metainfo.source", "pk": 16596, "fields": {"orig_filename": "Dustmann-Meyer_Marie-Louise_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205f.", "author": "", "orig_id": 1422147}}, {"model": "metainfo.source", "pk": 16597, "fields": {"orig_filename": "Dutczynski_Eduard_1823_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1421981}}, {"model": "metainfo.source", "pk": 16598, "fields": {"orig_filename": "Dutczynski_Irma_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1421982}}, {"model": "metainfo.source", "pk": 16599, "fields": {"orig_filename": "Duval-Dampierre_Quirin_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1422148}}, {"model": "metainfo.source", "pk": 16600, "fields": {"orig_filename": "Dvorak_Anton_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1422150}}, {"model": "metainfo.source", "pk": 16601, "fields": {"orig_filename": "Dvorak_Max_1874_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206f.", "author": "", "orig_id": 1422151}}, {"model": "metainfo.source", "pk": 16602, "fields": {"orig_filename": "Dvorak_Xaver_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422152}}, {"model": "metainfo.source", "pk": 16603, "fields": {"orig_filename": "Dworaczek_Wilhelm_1873_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422153}}, {"model": "metainfo.source", "pk": 16604, "fields": {"orig_filename": "Dyk_Viktor_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422154}}, {"model": "metainfo.source", "pk": 16605, "fields": {"orig_filename": "Dzieduszycki_Maurycy_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422155}}, {"model": "metainfo.source", "pk": 16606, "fields": {"orig_filename": "Ebenhoch_Alfred_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422156}}, {"model": "metainfo.source", "pk": 16607, "fields": {"orig_filename": "Ebenspanger_Johannes_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422157}}, {"model": "metainfo.source", "pk": 16608, "fields": {"orig_filename": "Eberhard_Otto_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422158}}, {"model": "metainfo.source", "pk": 16609, "fields": {"orig_filename": "Eberle_Josef_1845_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422162}}, {"model": "metainfo.source", "pk": 16610, "fields": {"orig_filename": "Eberle_Joseph_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208f.", "author": "", "orig_id": 1422161}}, {"model": "metainfo.source", "pk": 16611, "fields": {"orig_filename": "Eberl_Raimund_1766_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422160}}, {"model": "metainfo.source", "pk": 16612, "fields": {"orig_filename": "Ebermann_Leo_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422163}}, {"model": "metainfo.source", "pk": 16613, "fields": {"orig_filename": "Ebersberg_Joseph-Sigmund_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422164}}, {"model": "metainfo.source", "pk": 16614, "fields": {"orig_filename": "Ebersberg_Julius-Carl_1831_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1420745}}, {"model": "metainfo.source", "pk": 16615, "fields": {"orig_filename": "Ebersberg_Ottokar-Franz_1833_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1420746}}, {"model": "metainfo.source", "pk": 16616, "fields": {"orig_filename": "Ebert_Anton_1845_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209f.", "author": "", "orig_id": 1420747}}, {"model": "metainfo.source", "pk": 16617, "fields": {"orig_filename": "Ebert_Karl-Egon_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420748}}, {"model": "metainfo.source", "pk": 16618, "fields": {"orig_filename": "Ebert_Ludwig_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420749}}, {"model": "metainfo.source", "pk": 16619, "fields": {"orig_filename": "Eble_Burkhard_1799_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420750}}, {"model": "metainfo.source", "pk": 16620, "fields": {"orig_filename": "Ebner-Eschenbach_Marie_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 211f.", "author": "", "orig_id": 1420754}}, {"model": "metainfo.source", "pk": 16621, "fields": {"orig_filename": "Ebner-Eschenbach_Moritz_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212", "author": "", "orig_id": 1420755}}, {"model": "metainfo.source", "pk": 16622, "fields": {"orig_filename": "Ebner-Rofenstein_Johann-Nep_1790_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212", "author": "", "orig_id": 1420756}}, {"model": "metainfo.source", "pk": 16623, "fields": {"orig_filename": "Ebner-Rofenstein_Viktor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212f.", "author": "", "orig_id": 1420757}}, {"model": "metainfo.source", "pk": 16624, "fields": {"orig_filename": "Ebner_Ferdinand_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420751}}, {"model": "metainfo.source", "pk": 16625, "fields": {"orig_filename": "Ebner_Karl_1811_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210f.", "author": "", "orig_id": 1420752}}, {"model": "metainfo.source", "pk": 16626, "fields": {"orig_filename": "Ebner_Karl_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 211", "author": "", "orig_id": 1420753}}, {"model": "metainfo.source", "pk": 16627, "fields": {"orig_filename": "Eckardt_Karl-Paul_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420758}}, {"model": "metainfo.source", "pk": 16628, "fields": {"orig_filename": "Eckardt_Ludwig_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420759}}, {"model": "metainfo.source", "pk": 16629, "fields": {"orig_filename": "Eckardt_Siegfried-Gotthilf_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420760}}, {"model": "metainfo.source", "pk": 16630, "fields": {"orig_filename": "Eckel_Hermann_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213f.", "author": "", "orig_id": 1420761}}, {"model": "metainfo.source", "pk": 16631, "fields": {"orig_filename": "Eckert_Karl-Anton-Florian_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420763}}, {"model": "metainfo.source", "pk": 16632, "fields": {"orig_filename": "Ecker_Johann-Matth-Alex_1766_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420762}}, {"model": "metainfo.source", "pk": 16633, "fields": {"orig_filename": "Eckhardt_Franz_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420764}}, {"model": "metainfo.source", "pk": 16634, "fields": {"orig_filename": "Eckinger_Johann-Nep_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420765}}, {"model": "metainfo.source", "pk": 16635, "fields": {"orig_filename": "Eckl_Georg_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420766}}, {"model": "metainfo.source", "pk": 16636, "fields": {"orig_filename": "Eckstein_Gustav_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214f.", "author": "", "orig_id": 1420767}}, {"model": "metainfo.source", "pk": 16637, "fields": {"orig_filename": "Economo-San-Serff_Constantin_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420836}}, {"model": "metainfo.source", "pk": 16638, "fields": {"orig_filename": "Edelsheim-Gyulai_Leopold-Wilhelm_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420837}}, {"model": "metainfo.source", "pk": 16639, "fields": {"orig_filename": "Eder_Franz-Albert_1818_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420838}}, {"model": "metainfo.source", "pk": 16640, "fields": {"orig_filename": "Eder_Gustav_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215f.", "author": "", "orig_id": 1420839}}, {"model": "metainfo.source", "pk": 16641, "fields": {"orig_filename": "Eder_Hans_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420840}}, {"model": "metainfo.source", "pk": 16642, "fields": {"orig_filename": "Eder_Josef-Maria_1855_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420843}}, {"model": "metainfo.source", "pk": 16643, "fields": {"orig_filename": "Eder_Josef_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420841}}, {"model": "metainfo.source", "pk": 16644, "fields": {"orig_filename": "Eder_Josef_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420842}}, {"model": "metainfo.source", "pk": 16645, "fields": {"orig_filename": "Eder_Josephine_1816_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216f.", "author": "", "orig_id": 1420844}}, {"model": "metainfo.source", "pk": 16646, "fields": {"orig_filename": "Eder_Leopold_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420845}}, {"model": "metainfo.source", "pk": 16647, "fields": {"orig_filename": "Eder_Robert_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420846}}, {"model": "metainfo.source", "pk": 16648, "fields": {"orig_filename": "Eder_Wilhelm_1780_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420847}}, {"model": "metainfo.source", "pk": 16649, "fields": {"orig_filename": "Edlauer_Franz_1798_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420848}}, {"model": "metainfo.source", "pk": 16650, "fields": {"orig_filename": "Edlbacher_Joseph_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420849}}, {"model": "metainfo.source", "pk": 16651, "fields": {"orig_filename": "Edlbacher_Ludwig_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420850}}, {"model": "metainfo.source", "pk": 16652, "fields": {"orig_filename": "Edlbacher_Maximilian-Josef-Augustin_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420851}}, {"model": "metainfo.source", "pk": 16653, "fields": {"orig_filename": "Edler_Karl-Erdmann_1844_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420852}}, {"model": "metainfo.source", "pk": 16654, "fields": {"orig_filename": "Edlmann_Ernst_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420853}}, {"model": "metainfo.source", "pk": 16655, "fields": {"orig_filename": "Edlmann_Leopold_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420854}}, {"model": "metainfo.source", "pk": 16656, "fields": {"orig_filename": "Egarter_Ferdinand_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218f.", "author": "", "orig_id": 1420855}}, {"model": "metainfo.source", "pk": 16657, "fields": {"orig_filename": "Egerer_Gislar_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420933}}, {"model": "metainfo.source", "pk": 16658, "fields": {"orig_filename": "Egerer_Petrus_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219f.", "author": "", "orig_id": 1420934}}, {"model": "metainfo.source", "pk": 16659, "fields": {"orig_filename": "Egermann_Friedrich_1777_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420935}}, {"model": "metainfo.source", "pk": 16660, "fields": {"orig_filename": "Egersdorfer_Alexander_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420936}}, {"model": "metainfo.source", "pk": 16661, "fields": {"orig_filename": "Eger_Alexander_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420856}}, {"model": "metainfo.source", "pk": 16662, "fields": {"orig_filename": "Eger_Ferdinand_1868_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420932}}, {"model": "metainfo.source", "pk": 16663, "fields": {"orig_filename": "Eger_Paul_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442992}}, {"model": "metainfo.source", "pk": 16664, "fields": {"orig_filename": "Egger-Lienz_Albin_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 224f.", "author": "", "orig_id": 1421020}}, {"model": "metainfo.source", "pk": 16665, "fields": {"orig_filename": "Egger-Moellwald_Alois_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421021}}, {"model": "metainfo.source", "pk": 16666, "fields": {"orig_filename": "Egger_Bela_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221", "author": "", "orig_id": 1420939}}, {"model": "metainfo.source", "pk": 16667, "fields": {"orig_filename": "Egger_Berthold_1852_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221", "author": "", "orig_id": 1420940}}, {"model": "metainfo.source", "pk": 16668, "fields": {"orig_filename": "Egger_Ernst_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221f.", "author": "", "orig_id": 1420941}}, {"model": "metainfo.source", "pk": 16669, "fields": {"orig_filename": "Egger_Ferdinand_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420942}}, {"model": "metainfo.source", "pk": 16670, "fields": {"orig_filename": "Egger_Franz-Joh-Nep_1768_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420944}}, {"model": "metainfo.source", "pk": 16671, "fields": {"orig_filename": "Egger_Franz_1765_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420943}}, {"model": "metainfo.source", "pk": 16672, "fields": {"orig_filename": "Egger_Franz_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222f.", "author": "", "orig_id": 1420946}}, {"model": "metainfo.source", "pk": 16673, "fields": {"orig_filename": "Egger_Franz_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420947}}, {"model": "metainfo.source", "pk": 16674, "fields": {"orig_filename": "Egger_Hermann_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420948}}, {"model": "metainfo.source", "pk": 16675, "fields": {"orig_filename": "Egger_Johann-Bapt_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420949}}, {"model": "metainfo.source", "pk": 16676, "fields": {"orig_filename": "Egger_Johann-Georg_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223f.", "author": "", "orig_id": 1420950}}, {"model": "metainfo.source", "pk": 16677, "fields": {"orig_filename": "Egger_Josef_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 224", "author": "", "orig_id": 1420951}}, {"model": "metainfo.source", "pk": 16678, "fields": {"orig_filename": "Egg_Franz_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420937}}, {"model": "metainfo.source", "pk": 16679, "fields": {"orig_filename": "Egner_Marie_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421022}}, {"model": "metainfo.source", "pk": 16680, "fields": {"orig_filename": "Egressy_Beni_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421023}}, {"model": "metainfo.source", "pk": 16681, "fields": {"orig_filename": "Egressy_Gabor_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225f.", "author": "", "orig_id": 1421024}}, {"model": "metainfo.source", "pk": 16682, "fields": {"orig_filename": "Ehmann_Helene_1910_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145466}}, {"model": "metainfo.source", "pk": 16683, "fields": {"orig_filename": "Ehnn_Bertha_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421026}}, {"model": "metainfo.source", "pk": 16684, "fields": {"orig_filename": "Ehrbar_Friedrich_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421027}}, {"model": "metainfo.source", "pk": 16685, "fields": {"orig_filename": "Ehrenberger_Josef_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421028}}, {"model": "metainfo.source", "pk": 16686, "fields": {"orig_filename": "Ehrenberg_Kurt_1896_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442592}}, {"model": "metainfo.source", "pk": 16687, "fields": {"orig_filename": "Ehrenfeld_Richard_1877_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421029}}, {"model": "metainfo.source", "pk": 16688, "fields": {"orig_filename": "Ehrenfels_Christian_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226f.", "author": "", "orig_id": 1421030}}, {"model": "metainfo.source", "pk": 16689, "fields": {"orig_filename": "Ehrenhofer_Walther-Edmund_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421031}}, {"model": "metainfo.source", "pk": 16690, "fields": {"orig_filename": "Ehrenreich_Max-Leopold_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421032}}, {"model": "metainfo.source", "pk": 16691, "fields": {"orig_filename": "Ehrenstein_Albert_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421033}}, {"model": "metainfo.source", "pk": 16692, "fields": {"orig_filename": "Ehrenstein_Louise_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421034}}, {"model": "metainfo.source", "pk": 16693, "fields": {"orig_filename": "Ehrenzweig_Armin_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227f.", "author": "", "orig_id": 1421035}}, {"model": "metainfo.source", "pk": 16694, "fields": {"orig_filename": "Doczy_Ludwig_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421588}}, {"model": "metainfo.source", "pk": 16695, "fields": {"orig_filename": "Doebler_Ludwig_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421590}}, {"model": "metainfo.source", "pk": 16696, "fields": {"orig_filename": "Doebrentei_Gabriel_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421591}}, {"model": "metainfo.source", "pk": 16697, "fields": {"orig_filename": "Doell-Gruenheim_Karl_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421592}}, {"model": "metainfo.source", "pk": 16698, "fields": {"orig_filename": "Doeller_Johann_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190f.", "author": "", "orig_id": 1421593}}, {"model": "metainfo.source", "pk": 16699, "fields": {"orig_filename": "Doelter-Cisterich_Cornelius_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421594}}, {"model": "metainfo.source", "pk": 16700, "fields": {"orig_filename": "Doepfner_Josef_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421595}}, {"model": "metainfo.source", "pk": 16701, "fields": {"orig_filename": "Doerfl_Rudolf_1855_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421596}}, {"model": "metainfo.source", "pk": 16702, "fields": {"orig_filename": "Doernhoeffer_Friedrich_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421598}}, {"model": "metainfo.source", "pk": 16703, "fields": {"orig_filename": "Doerr_August_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191f.", "author": "", "orig_id": 1421674}}, {"model": "metainfo.source", "pk": 16704, "fields": {"orig_filename": "Doery-Jobbahaza_Josef_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421675}}, {"model": "metainfo.source", "pk": 16705, "fields": {"orig_filename": "Dolch_Moritz_1887_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421676}}, {"model": "metainfo.source", "pk": 16706, "fields": {"orig_filename": "Dollfuss_Engelbert_1892_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421677}}, {"model": "metainfo.source", "pk": 16707, "fields": {"orig_filename": "Dolliner_Georg_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421678}}, {"model": "metainfo.source", "pk": 16708, "fields": {"orig_filename": "Dolliner_Thomas_1760_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421679}}, {"model": "metainfo.source", "pk": 16709, "fields": {"orig_filename": "Dollmayr_Hermann_1865_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421680}}, {"model": "metainfo.source", "pk": 16710, "fields": {"orig_filename": "Domanig-Roll_Roman-Cornelius_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421683}}, {"model": "metainfo.source", "pk": 16711, "fields": {"orig_filename": "Domanig_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421681}}, {"model": "metainfo.source", "pk": 16712, "fields": {"orig_filename": "Domanig_Marie_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421682}}, {"model": "metainfo.source", "pk": 16713, "fields": {"orig_filename": "Domaszewski_Alfred_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421684}}, {"model": "metainfo.source", "pk": 16714, "fields": {"orig_filename": "Dombrowski_Ernst_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421685}}, {"model": "metainfo.source", "pk": 16715, "fields": {"orig_filename": "Domes_Franz_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421686}}, {"model": "metainfo.source", "pk": 16716, "fields": {"orig_filename": "Domin_Franjo-Josip_1754_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421687}}, {"model": "metainfo.source", "pk": 16717, "fields": {"orig_filename": "Domjanic_Dragutin_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421688}}, {"model": "metainfo.source", "pk": 16718, "fields": {"orig_filename": "Domokos_Josef_1762_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421689}}, {"model": "metainfo.source", "pk": 16719, "fields": {"orig_filename": "Donabaum_Josef_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421690}}, {"model": "metainfo.source", "pk": 16720, "fields": {"orig_filename": "Donath_Eduard_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421693}}, {"model": "metainfo.source", "pk": 16721, "fields": {"orig_filename": "Donath_Julius_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421694}}, {"model": "metainfo.source", "pk": 16722, "fields": {"orig_filename": "Donat_Johann-Daniel_1744_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421691}}, {"model": "metainfo.source", "pk": 16723, "fields": {"orig_filename": "Donat_Josef_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194f.", "author": "", "orig_id": 1421692}}, {"model": "metainfo.source", "pk": 16724, "fields": {"orig_filename": "Donegani-Stilfserberg_Carlo_1775_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421695}}, {"model": "metainfo.source", "pk": 16725, "fields": {"orig_filename": "Donin_Ludwig_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421696}}, {"model": "metainfo.source", "pk": 16726, "fields": {"orig_filename": "Donizetti_Gaetano_1797_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421769}}, {"model": "metainfo.source", "pk": 16727, "fields": {"orig_filename": "Donizetti_Giuseppe_1788_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421770}}, {"model": "metainfo.source", "pk": 16728, "fields": {"orig_filename": "Dont_Jakob_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421771}}, {"model": "metainfo.source", "pk": 16729, "fields": {"orig_filename": "Doppelbauer_Franz-Maria_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421772}}, {"model": "metainfo.source", "pk": 16730, "fields": {"orig_filename": "Doppler_Adolf_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421773}}, {"model": "metainfo.source", "pk": 16731, "fields": {"orig_filename": "Doppler_Adolf_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421774}}, {"model": "metainfo.source", "pk": 16732, "fields": {"orig_filename": "Doppler_Christian_1803_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421775}}, {"model": "metainfo.source", "pk": 16733, "fields": {"orig_filename": "Doppler_Franz_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421776}}, {"model": "metainfo.source", "pk": 16734, "fields": {"orig_filename": "Doppler_Karl_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421777}}, {"model": "metainfo.source", "pk": 16735, "fields": {"orig_filename": "Dormus-Kilianshausen_Josef_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421779}}, {"model": "metainfo.source", "pk": 16736, "fields": {"orig_filename": "Dormus_Georg_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421778}}, {"model": "metainfo.source", "pk": 16737, "fields": {"orig_filename": "Dorner_Johann-Konrad_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421781}}, {"model": "metainfo.source", "pk": 16738, "fields": {"orig_filename": "Dorner_Peter_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421782}}, {"model": "metainfo.source", "pk": 16739, "fields": {"orig_filename": "Dostal-Lutinov_Karl_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421783}}, {"model": "metainfo.source", "pk": 16740, "fields": {"orig_filename": "Doublier_Othmar_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421784}}, {"model": "metainfo.source", "pk": 16741, "fields": {"orig_filename": "Dovsky_Beatrice_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421785}}, {"model": "metainfo.source", "pk": 16742, "fields": {"orig_filename": "Draexler_Karl-Ferdinand_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421786}}, {"model": "metainfo.source", "pk": 16743, "fields": {"orig_filename": "Drasche-Wartinberg_Heinrich_1811_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421788}}, {"model": "metainfo.source", "pk": 16744, "fields": {"orig_filename": "Drasche-Wartinberg_Richard_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421789}}, {"model": "metainfo.source", "pk": 16745, "fields": {"orig_filename": "Drasche_Anton_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197f.", "author": "", "orig_id": 1421787}}, {"model": "metainfo.source", "pk": 16746, "fields": {"orig_filename": "Draskovic-Trakoscan_Johann_1770_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421790}}, {"model": "metainfo.source", "pk": 16747, "fields": {"orig_filename": "Draxler_Josef_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421791}}, {"model": "metainfo.source", "pk": 16748, "fields": {"orig_filename": "Drbal_Mathias-Amos_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421792}}, {"model": "metainfo.source", "pk": 16749, "fields": {"orig_filename": "Drdla_Franz_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421866}}, {"model": "metainfo.source", "pk": 16750, "fields": {"orig_filename": "Drechsel_Anton_1751_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421867}}, {"model": "metainfo.source", "pk": 16751, "fields": {"orig_filename": "Drechsler_Josef_1782_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421868}}, {"model": "metainfo.source", "pk": 16752, "fields": {"orig_filename": "Drechsler_Karl_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421869}}, {"model": "metainfo.source", "pk": 16753, "fields": {"orig_filename": "Dreger_Moritz_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421870}}, {"model": "metainfo.source", "pk": 16754, "fields": {"orig_filename": "Dreger_Tom_1868_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1419946}}, {"model": "metainfo.source", "pk": 16755, "fields": {"orig_filename": "Dreher_Anton_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421963}}, {"model": "metainfo.source", "pk": 16756, "fields": {"orig_filename": "Dreher_Anton_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199f.", "author": "", "orig_id": 1421964}}, {"model": "metainfo.source", "pk": 16757, "fields": {"orig_filename": "Dreher_Franz-Anton_1736_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421965}}, {"model": "metainfo.source", "pk": 16758, "fields": {"orig_filename": "Drescher_Karl-Wilhelm_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421966}}, {"model": "metainfo.source", "pk": 16759, "fields": {"orig_filename": "Dressery_Wilhelm_1770_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421967}}, {"model": "metainfo.source", "pk": 16760, "fields": {"orig_filename": "Dressler_Raphael_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421968}}, {"model": "metainfo.source", "pk": 16761, "fields": {"orig_filename": "Drexel_Johann_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421969}}, {"model": "metainfo.source", "pk": 16762, "fields": {"orig_filename": "Drexler_Anton_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1442907}}, {"model": "metainfo.source", "pk": 16763, "fields": {"orig_filename": "Drexler_Josef_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2256452}}, {"model": "metainfo.source", "pk": 16764, "fields": {"orig_filename": "Drexler_Karl_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421970}}, {"model": "metainfo.source", "pk": 16765, "fields": {"orig_filename": "Dreyer-Iller_Johann-Traugott_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200f.", "author": "", "orig_id": 1421971}}, {"model": "metainfo.source", "pk": 16766, "fields": {"orig_filename": "Dreyschock_Alexander_1818_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421972}}, {"model": "metainfo.source", "pk": 16767, "fields": {"orig_filename": "Drha_Anton_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421973}}, {"model": "metainfo.source", "pk": 16768, "fields": {"orig_filename": "Drossbach_Paul_1866_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421974}}, {"model": "metainfo.source", "pk": 16769, "fields": {"orig_filename": "Drtina_Frantisek_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421975}}, {"model": "metainfo.source", "pk": 16770, "fields": {"orig_filename": "Druskowitz_Helene_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421976}}, {"model": "metainfo.source", "pk": 16771, "fields": {"orig_filename": "Dubsky-Trebomyslice_Viktor_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421977}}, {"model": "metainfo.source", "pk": 16772, "fields": {"orig_filename": "Duchek_Albert_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421978}}, {"model": "metainfo.source", "pk": 16773, "fields": {"orig_filename": "Dudik_Beda_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201f.", "author": "", "orig_id": 1421983}}, {"model": "metainfo.source", "pk": 16774, "fields": {"orig_filename": "Duell_Alois-Franz_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1421984}}, {"model": "metainfo.source", "pk": 16775, "fields": {"orig_filename": "Duerauer_Franz-Josef_1854_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422055}}, {"model": "metainfo.source", "pk": 16776, "fields": {"orig_filename": "Duerlinger_Josef_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422056}}, {"model": "metainfo.source", "pk": 16777, "fields": {"orig_filename": "Duerrnberger_Adolf_1838_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422057}}, {"model": "metainfo.source", "pk": 16778, "fields": {"orig_filename": "Duftschmid_Johann_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422058}}, {"model": "metainfo.source", "pk": 16779, "fields": {"orig_filename": "Duftschmid_Kaspar_1767_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422059}}, {"model": "metainfo.source", "pk": 16780, "fields": {"orig_filename": "Dugonics_Andreas_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422060}}, {"model": "metainfo.source", "pk": 16781, "fields": {"orig_filename": "Duhm_Julius_1885_1955.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443109}}, {"model": "metainfo.source", "pk": 16782, "fields": {"orig_filename": "Duile_Josef_1776_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202f.", "author": "", "orig_id": 1422061}}, {"model": "metainfo.source", "pk": 16783, "fields": {"orig_filename": "Duka-Kadar_Friedrich_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422062}}, {"model": "metainfo.source", "pk": 16784, "fields": {"orig_filename": "Dukes_Leopold_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422063}}, {"model": "metainfo.source", "pk": 16785, "fields": {"orig_filename": "Duller_Eduard_1809_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422064}}, {"model": "metainfo.source", "pk": 16786, "fields": {"orig_filename": "Dumba_Nikolaus_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422066}}, {"model": "metainfo.source", "pk": 16787, "fields": {"orig_filename": "Dumreicher-Oesterreicher_Armand_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203f.", "author": "", "orig_id": 1422067}}, {"model": "metainfo.source", "pk": 16788, "fields": {"orig_filename": "Dumreicher-Oesterreicher_Johann_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422068}}, {"model": "metainfo.source", "pk": 16789, "fields": {"orig_filename": "Dunaiszky_Ladislaus_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422069}}, {"model": "metainfo.source", "pk": 16790, "fields": {"orig_filename": "Dunaiszky_Laurentius_1784_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422070}}, {"model": "metainfo.source", "pk": 16791, "fields": {"orig_filename": "Dunajewski_Albin_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422071}}, {"model": "metainfo.source", "pk": 16792, "fields": {"orig_filename": "Dunajewski_Julian_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204f.", "author": "", "orig_id": 1422072}}, {"model": "metainfo.source", "pk": 16793, "fields": {"orig_filename": "Dungel_Adalbert_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422073}}, {"model": "metainfo.source", "pk": 16794, "fields": {"orig_filename": "Dunin-Borkowski_Alexander_1811_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422074}}, {"model": "metainfo.source", "pk": 16795, "fields": {"orig_filename": "Deininger_Julius_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1443709}}, {"model": "metainfo.source", "pk": 16796, "fields": {"orig_filename": "Del-Pero_Bartholomaeus_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417250}}, {"model": "metainfo.source", "pk": 16797, "fields": {"orig_filename": "Dela-Croze_Johann-Nepomuk_1736_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417244}}, {"model": "metainfo.source", "pk": 16798, "fields": {"orig_filename": "Delci_Angelo-Maria_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417245}}, {"model": "metainfo.source", "pk": 16799, "fields": {"orig_filename": "Delhaes_Istvan_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417246}}, {"model": "metainfo.source", "pk": 16800, "fields": {"orig_filename": "Dellatorre-Valsassina_Michael_1757_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175f.", "author": "", "orig_id": 1417247}}, {"model": "metainfo.source", "pk": 16801, "fields": {"orig_filename": "Dellegrazie_Marie-Eugenie_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417248}}, {"model": "metainfo.source", "pk": 16802, "fields": {"orig_filename": "Delmont_Josef_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417249}}, {"model": "metainfo.source", "pk": 16803, "fields": {"orig_filename": "Delrio_Josef-Giannatassio_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417251}}, {"model": "metainfo.source", "pk": 16804, "fields": {"orig_filename": "Delug_Alois_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417252}}, {"model": "metainfo.source", "pk": 16805, "fields": {"orig_filename": "Delvert_Christian_1803_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176f.", "author": "", "orig_id": 1417253}}, {"model": "metainfo.source", "pk": 16806, "fields": {"orig_filename": "Demagri_Egidius_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417254}}, {"model": "metainfo.source", "pk": 16807, "fields": {"orig_filename": "Dembinski_Henryk_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417255}}, {"model": "metainfo.source", "pk": 16808, "fields": {"orig_filename": "Demelius_Ernst_1859_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417257}}, {"model": "metainfo.source", "pk": 16809, "fields": {"orig_filename": "Demelius_Gustav_1831_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417258}}, {"model": "metainfo.source", "pk": 16810, "fields": {"orig_filename": "Demel_Hans_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417256}}, {"model": "metainfo.source", "pk": 16811, "fields": {"orig_filename": "Demeter_Dimitrija_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177f.", "author": "", "orig_id": 1417259}}, {"model": "metainfo.source", "pk": 16812, "fields": {"orig_filename": "Demian_Johann-Andreas_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417260}}, {"model": "metainfo.source", "pk": 16813, "fields": {"orig_filename": "Demuth_Leopold_1860_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417261}}, {"model": "metainfo.source", "pk": 16814, "fields": {"orig_filename": "Denifle_Heinrich-Suso_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417263}}, {"model": "metainfo.source", "pk": 16815, "fields": {"orig_filename": "Derencin_Marijan_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417264}}, {"model": "metainfo.source", "pk": 16816, "fields": {"orig_filename": "Deri_Max_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1426849}}, {"model": "metainfo.source", "pk": 16817, "fields": {"orig_filename": "Dermota_Anton_1876_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178f.", "author": "", "orig_id": 1421289}}, {"model": "metainfo.source", "pk": 16818, "fields": {"orig_filename": "Derschatta_Julius_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421290}}, {"model": "metainfo.source", "pk": 16819, "fields": {"orig_filename": "Dery_Juliane_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421291}}, {"model": "metainfo.source", "pk": 16820, "fields": {"orig_filename": "Dery_Rosa_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421292}}, {"model": "metainfo.source", "pk": 16821, "fields": {"orig_filename": "Desanti_Angelo_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421293}}, {"model": "metainfo.source", "pk": 16822, "fields": {"orig_filename": "Deschmann_Karl_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421294}}, {"model": "metainfo.source", "pk": 16823, "fields": {"orig_filename": "Desfours-Montville-Athienville_Franz-Josef_1765_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421295}}, {"model": "metainfo.source", "pk": 16824, "fields": {"orig_filename": "Desimoni_Albert_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421296}}, {"model": "metainfo.source", "pk": 16825, "fields": {"orig_filename": "Desquilles_Joseph_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421297}}, {"model": "metainfo.source", "pk": 16826, "fields": {"orig_filename": "Dessauer_Josef_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421298}}, {"model": "metainfo.source", "pk": 16827, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Aurel_1808_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421299}}, {"model": "metainfo.source", "pk": 16828, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Emil_1814_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421300}}, {"model": "metainfo.source", "pk": 16829, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Josef_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421301}}, {"model": "metainfo.source", "pk": 16830, "fields": {"orig_filename": "Dessoff_Felix-Otto_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180f.", "author": "", "orig_id": 1421302}}, {"model": "metainfo.source", "pk": 16831, "fields": {"orig_filename": "Destinn_Emmy_1878_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421303}}, {"model": "metainfo.source", "pk": 16832, "fields": {"orig_filename": "Detela_Franz_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421304}}, {"model": "metainfo.source", "pk": 16833, "fields": {"orig_filename": "Detraux_Ludwig_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421305}}, {"model": "metainfo.source", "pk": 16834, "fields": {"orig_filename": "Detraux_Maximilian_1766_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421306}}, {"model": "metainfo.source", "pk": 16835, "fields": {"orig_filename": "Deubler_Konrad_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421307}}, {"model": "metainfo.source", "pk": 16836, "fields": {"orig_filename": "Deutelmoser_Ferdinand_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421308}}, {"model": "metainfo.source", "pk": 16837, "fields": {"orig_filename": "Deutsch-German_Alfred_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444413}}, {"model": "metainfo.source", "pk": 16838, "fields": {"orig_filename": "Deutsch_Karl_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421309}}, {"model": "metainfo.source", "pk": 16839, "fields": {"orig_filename": "Deutsch_Poldi_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181f.", "author": "", "orig_id": 1421383}}, {"model": "metainfo.source", "pk": 16840, "fields": {"orig_filename": "Devaulx_Karl_1776_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421384}}, {"model": "metainfo.source", "pk": 16841, "fields": {"orig_filename": "Devaux_Thierry_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421385}}, {"model": "metainfo.source", "pk": 16842, "fields": {"orig_filename": "Devrient-Reinhold_Babette_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421388}}, {"model": "metainfo.source", "pk": 16843, "fields": {"orig_filename": "Devrient_Max_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421387}}, {"model": "metainfo.source", "pk": 16844, "fields": {"orig_filename": "Dewez_Josef-Wilhelm_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421389}}, {"model": "metainfo.source", "pk": 16845, "fields": {"orig_filename": "Deym-Stritez_Franz_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421390}}, {"model": "metainfo.source", "pk": 16846, "fields": {"orig_filename": "Dezelic_Velimir_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182f.", "author": "", "orig_id": 1421391}}, {"model": "metainfo.source", "pk": 16847, "fields": {"orig_filename": "Dezman_Milivoj_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421392}}, {"model": "metainfo.source", "pk": 16848, "fields": {"orig_filename": "Diabelli_Anton_1781_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421393}}, {"model": "metainfo.source", "pk": 16849, "fields": {"orig_filename": "Diamant_Paul-Joseph_1887_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2133940}}, {"model": "metainfo.source", "pk": 16850, "fields": {"orig_filename": "Dickmann-Secherau_Eugen_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421397}}, {"model": "metainfo.source", "pk": 16851, "fields": {"orig_filename": "Dick_Rudolf_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421396}}, {"model": "metainfo.source", "pk": 16852, "fields": {"orig_filename": "Diedo_Antonio_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421399}}, {"model": "metainfo.source", "pk": 16853, "fields": {"orig_filename": "Diemer_Josef_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183f.", "author": "", "orig_id": 1421400}}, {"model": "metainfo.source", "pk": 16854, "fields": {"orig_filename": "Diem_Karl_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421398}}, {"model": "metainfo.source", "pk": 16855, "fields": {"orig_filename": "Diener_Carl_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421401}}, {"model": "metainfo.source", "pk": 16856, "fields": {"orig_filename": "Dierzer-Traunthal_Josef_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421402}}, {"model": "metainfo.source", "pk": 16857, "fields": {"orig_filename": "Diesing_Karl-Moriz_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421403}}, {"model": "metainfo.source", "pk": 16858, "fields": {"orig_filename": "Dietl_Gottlieb_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421404}}, {"model": "metainfo.source", "pk": 16859, "fields": {"orig_filename": "Dietmann_Leopold_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184f.", "author": "", "orig_id": 1421405}}, {"model": "metainfo.source", "pk": 16860, "fields": {"orig_filename": "Dietrich-Hermannberg_Emanuel_1772_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421478}}, {"model": "metainfo.source", "pk": 16861, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Alexander_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421479}}, {"model": "metainfo.source", "pk": 16862, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Franz-Josef_1767_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421480}}, {"model": "metainfo.source", "pk": 16863, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Moritz-I-Josef-Johann_1775_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421481}}, {"model": "metainfo.source", "pk": 16864, "fields": {"orig_filename": "Dietrich_Georg_1891_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421406}}, {"model": "metainfo.source", "pk": 16865, "fields": {"orig_filename": "Dietz_Max_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421482}}, {"model": "metainfo.source", "pk": 16866, "fields": {"orig_filename": "Dimitz_August_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421483}}, {"model": "metainfo.source", "pk": 16867, "fields": {"orig_filename": "Dimitz_Ludwig_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185f.", "author": "", "orig_id": 1421484}}, {"model": "metainfo.source", "pk": 16868, "fields": {"orig_filename": "Dimmer_Friedrich_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186", "author": "", "orig_id": 1421485}}, {"model": "metainfo.source", "pk": 16869, "fields": {"orig_filename": "Dingelstedt_Franz_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421486}}, {"model": "metainfo.source", "pk": 16870, "fields": {"orig_filename": "Dipauli_Andreas_1761_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186", "author": "", "orig_id": 1421487}}, {"model": "metainfo.source", "pk": 16871, "fields": {"orig_filename": "Dipauli_Josef_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186f.", "author": "", "orig_id": 1421488}}, {"model": "metainfo.source", "pk": 16872, "fields": {"orig_filename": "Dirmoser_Oswald_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421489}}, {"model": "metainfo.source", "pk": 16873, "fields": {"orig_filename": "Dirmoser_Richard_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421490}}, {"model": "metainfo.source", "pk": 16874, "fields": {"orig_filename": "Dirnboeck-Schulz_Jenny_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421492}}, {"model": "metainfo.source", "pk": 16875, "fields": {"orig_filename": "Dirnboeck_Jakob_1809_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421491}}, {"model": "metainfo.source", "pk": 16876, "fields": {"orig_filename": "Ditmar_Karl-Rudolf_1798_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421493}}, {"model": "metainfo.source", "pk": 16877, "fields": {"orig_filename": "Ditscheiner_Adolf-Gustav_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421494}}, {"model": "metainfo.source", "pk": 16878, "fields": {"orig_filename": "Ditscheiner_Leander_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421495}}, {"model": "metainfo.source", "pk": 16879, "fields": {"orig_filename": "Dittel_Leopold_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187f.", "author": "", "orig_id": 1421496}}, {"model": "metainfo.source", "pk": 16880, "fields": {"orig_filename": "Dittel_Leopold_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421497}}, {"model": "metainfo.source", "pk": 16881, "fields": {"orig_filename": "Dittes_Christian-Friedrich_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421498}}, {"model": "metainfo.source", "pk": 16882, "fields": {"orig_filename": "Dittes_Paul_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1413412}}, {"model": "metainfo.source", "pk": 16883, "fields": {"orig_filename": "Dittler_Emil_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2005213}}, {"model": "metainfo.source", "pk": 16884, "fields": {"orig_filename": "Dittmarsch_Karl_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421499}}, {"model": "metainfo.source", "pk": 16885, "fields": {"orig_filename": "Dittrich_Franz_1815_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421500}}, {"model": "metainfo.source", "pk": 16886, "fields": {"orig_filename": "Dittrich_Josef_1794_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421501}}, {"model": "metainfo.source", "pk": 16887, "fields": {"orig_filename": "Dlabacz_Gottfried-Johann_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421578}}, {"model": "metainfo.source", "pk": 16888, "fields": {"orig_filename": "Dlustus_Ljuboje_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188f.", "author": "", "orig_id": 1421579}}, {"model": "metainfo.source", "pk": 16889, "fields": {"orig_filename": "Dobernig_Johann-Wolfgang_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421580}}, {"model": "metainfo.source", "pk": 16890, "fields": {"orig_filename": "Dobiaschofsky_Franz-Joseph_1818_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421581}}, {"model": "metainfo.source", "pk": 16891, "fields": {"orig_filename": "Doblhoff-Dier_Anton_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421582}}, {"model": "metainfo.source", "pk": 16892, "fields": {"orig_filename": "Doblhoff-Dier_Josef_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421583}}, {"model": "metainfo.source", "pk": 16893, "fields": {"orig_filename": "Doblhoff-Dier_Karl_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421584}}, {"model": "metainfo.source", "pk": 16894, "fields": {"orig_filename": "Dobrila_Juraj_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421585}}, {"model": "metainfo.source", "pk": 16895, "fields": {"orig_filename": "Dobrovsky_Josef_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189f.", "author": "", "orig_id": 1421586}}, {"model": "metainfo.source", "pk": 16896, "fields": {"orig_filename": "Dobrzensky-Dobrzenitz_Anton_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421587}}, {"model": "metainfo.source", "pk": 16897, "fields": {"orig_filename": "Czako_Siegmund_1820_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417601}}, {"model": "metainfo.source", "pk": 16898, "fields": {"orig_filename": "Czant_Hermann_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417602}}, {"model": "metainfo.source", "pk": 16899, "fields": {"orig_filename": "Czapek_Friedrich_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417603}}, {"model": "metainfo.source", "pk": 16900, "fields": {"orig_filename": "Czapka-Winstetten_Ignaz_1791_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417604}}, {"model": "metainfo.source", "pk": 16901, "fields": {"orig_filename": "Czartoryski_Adam-Kasimir_1734_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160f.", "author": "", "orig_id": 1417605}}, {"model": "metainfo.source", "pk": 16902, "fields": {"orig_filename": "Czedik-Bruendelsberg-Eysenberg_Alois_1830_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417606}}, {"model": "metainfo.source", "pk": 16903, "fields": {"orig_filename": "Czermak_Franz_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417607}}, {"model": "metainfo.source", "pk": 16904, "fields": {"orig_filename": "Czermak_Jaroslav_1831_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417608}}, {"model": "metainfo.source", "pk": 16905, "fields": {"orig_filename": "Czermak_Johann-Nep_1828_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417609}}, {"model": "metainfo.source", "pk": 16906, "fields": {"orig_filename": "Czermak_Joseph-Julius_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1443916}}, {"model": "metainfo.source", "pk": 16907, "fields": {"orig_filename": "Czermak_Joseph_1825_1872.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2254768}}, {"model": "metainfo.source", "pk": 16908, "fields": {"orig_filename": "Czernin_Johann-Rudolf_1757_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417610}}, {"model": "metainfo.source", "pk": 16909, "fields": {"orig_filename": "Czernin_Ottokar_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417611}}, {"model": "metainfo.source", "pk": 16910, "fields": {"orig_filename": "Czernits_Franz_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417612}}, {"model": "metainfo.source", "pk": 16911, "fields": {"orig_filename": "Czerny_Albin_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417614}}, {"model": "metainfo.source", "pk": 16912, "fields": {"orig_filename": "Czerny_Franz_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417616}}, {"model": "metainfo.source", "pk": 16913, "fields": {"orig_filename": "Czerny_Karl_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417617}}, {"model": "metainfo.source", "pk": 16914, "fields": {"orig_filename": "Czerny_Vinzenz_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417618}}, {"model": "metainfo.source", "pk": 16915, "fields": {"orig_filename": "Czerwenka_Bernhard-Franz_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417688}}, {"model": "metainfo.source", "pk": 16916, "fields": {"orig_filename": "Czibulka_Alfons_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417690}}, {"model": "metainfo.source", "pk": 16917, "fields": {"orig_filename": "Cziraky_Anton-Moses_1772_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417692}}, {"model": "metainfo.source", "pk": 16918, "fields": {"orig_filename": "Czizek_Johann-Bapt_1806_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417693}}, {"model": "metainfo.source", "pk": 16919, "fields": {"orig_filename": "Czoernig-Czernhausen_Karl_1804_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417694}}, {"model": "metainfo.source", "pk": 16920, "fields": {"orig_filename": "Czoernig-Czernhausen_Walter_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164f.", "author": "", "orig_id": 1417695}}, {"model": "metainfo.source", "pk": 16921, "fields": {"orig_filename": "Czuber_Emanuel_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417696}}, {"model": "metainfo.source", "pk": 16922, "fields": {"orig_filename": "Czuczor_Gregor_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417697}}, {"model": "metainfo.source", "pk": 16923, "fields": {"orig_filename": "Czyhlarz_Karl_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417698}}, {"model": "metainfo.source", "pk": 16924, "fields": {"orig_filename": "Czyzewicz_Adam-Zygmunt_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2194443}}, {"model": "metainfo.source", "pk": 16925, "fields": {"orig_filename": "Dabancourt-Franqueville_Franz-Xaver_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416969}}, {"model": "metainfo.source", "pk": 16926, "fields": {"orig_filename": "Dachler_Anton_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416970}}, {"model": "metainfo.source", "pk": 16927, "fields": {"orig_filename": "Dachs_Josef_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416971}}, {"model": "metainfo.source", "pk": 16928, "fields": {"orig_filename": "Daeubler_Theodor_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416972}}, {"model": "metainfo.source", "pk": 16929, "fields": {"orig_filename": "Dafert-Sensel-Timmer_Franz_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416973}}, {"model": "metainfo.source", "pk": 16930, "fields": {"orig_filename": "Daffinger_Moritz-Michael_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416974}}, {"model": "metainfo.source", "pk": 16931, "fields": {"orig_filename": "Dahlen-Orlaburg_Hermann_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166f.", "author": "", "orig_id": 1416975}}, {"model": "metainfo.source", "pk": 16932, "fields": {"orig_filename": "Dahlerup-Birch_Hans_1790_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416976}}, {"model": "metainfo.source", "pk": 16933, "fields": {"orig_filename": "Dajnko_Peter_1787_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416977}}, {"model": "metainfo.source", "pk": 16934, "fields": {"orig_filename": "Dalberg_Friedrich_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416978}}, {"model": "metainfo.source", "pk": 16935, "fields": {"orig_filename": "Dallacqua_Cesare_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416979}}, {"model": "metainfo.source", "pk": 16936, "fields": {"orig_filename": "Dallago_Carl_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416980}}, {"model": "metainfo.source", "pk": 16937, "fields": {"orig_filename": "Dallatorre_Karl-Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1417050}}, {"model": "metainfo.source", "pk": 16938, "fields": {"orig_filename": "Dallinger_Alfred_1926_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1428087}}, {"model": "metainfo.source", "pk": 16939, "fields": {"orig_filename": "Dallocca_Sophie_1807_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 426f.", "author": "", "orig_id": 1406922}}, {"model": "metainfo.source", "pk": 16940, "fields": {"orig_filename": "Dallongaro_Francesco_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167f.", "author": "", "orig_id": 1417051}}, {"model": "metainfo.source", "pk": 16941, "fields": {"orig_filename": "Damboeck_Ludwig_1798_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417052}}, {"model": "metainfo.source", "pk": 16942, "fields": {"orig_filename": "Damianitsch_Martin_1807_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417054}}, {"model": "metainfo.source", "pk": 16943, "fields": {"orig_filename": "Damian_Josef_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417053}}, {"model": "metainfo.source", "pk": 16944, "fields": {"orig_filename": "Damjanich_Johann_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417055}}, {"model": "metainfo.source", "pk": 16945, "fields": {"orig_filename": "Dandreis-Beausson_Josef-Julius_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417056}}, {"model": "metainfo.source", "pk": 16946, "fields": {"orig_filename": "Danegger_Josef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417057}}, {"model": "metainfo.source", "pk": 16947, "fields": {"orig_filename": "Danei_Josef_1782_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417058}}, {"model": "metainfo.source", "pk": 16948, "fields": {"orig_filename": "Dangelmeier_Emil_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417059}}, {"model": "metainfo.source", "pk": 16949, "fields": {"orig_filename": "Danhauser_Josef_1805_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168f.", "author": "", "orig_id": 1417060}}, {"model": "metainfo.source", "pk": 16950, "fields": {"orig_filename": "Danhelovsky_Konstantin_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417061}}, {"model": "metainfo.source", "pk": 16951, "fields": {"orig_filename": "Dani-Gyarmata-Magyar-Cseke_Blasius_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417062}}, {"model": "metainfo.source", "pk": 16952, "fields": {"orig_filename": "Dankl-Krasnik_Viktor_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417063}}, {"model": "metainfo.source", "pk": 16953, "fields": {"orig_filename": "Danko_Josef-Karl_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417064}}, {"model": "metainfo.source", "pk": 16954, "fields": {"orig_filename": "Danno_Josef_1742_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417065}}, {"model": "metainfo.source", "pk": 16955, "fields": {"orig_filename": "Dantoni_Antonio_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169f.", "author": "", "orig_id": 1417066}}, {"model": "metainfo.source", "pk": 16956, "fields": {"orig_filename": "Dantscher-Kollersberg_Theodor_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417067}}, {"model": "metainfo.source", "pk": 16957, "fields": {"orig_filename": "Danzer_Alfons_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417068}}, {"model": "metainfo.source", "pk": 16958, "fields": {"orig_filename": "Daranyi_Ignaz_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417070}}, {"model": "metainfo.source", "pk": 16959, "fields": {"orig_filename": "Darnaut-Fix_Hugo_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417071}}, {"model": "metainfo.source", "pk": 16960, "fields": {"orig_filename": "Daspre-Hoobreuk_Konstantin_1787_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417072}}, {"model": "metainfo.source", "pk": 16961, "fields": {"orig_filename": "Daublebsky-Sterneck-Ehrenstein_Jakob_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1430148}}, {"model": "metainfo.source", "pk": 16962, "fields": {"orig_filename": "Daublebsky-Sterneck_Maximilian_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417074}}, {"model": "metainfo.source", "pk": 16963, "fields": {"orig_filename": "Daublebsky-Sterneck_Moritz_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417146}}, {"model": "metainfo.source", "pk": 16964, "fields": {"orig_filename": "Daublebsky-Sterneck_Robert_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417147}}, {"model": "metainfo.source", "pk": 16965, "fields": {"orig_filename": "Daub_Hermann_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170f.", "author": "", "orig_id": 1417073}}, {"model": "metainfo.source", "pk": 16966, "fields": {"orig_filename": "Dauthage_Adolf_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417148}}, {"model": "metainfo.source", "pk": 16967, "fields": {"orig_filename": "David_Jakob-Julius_1859_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417149}}, {"model": "metainfo.source", "pk": 16968, "fields": {"orig_filename": "David_Martin-Alois_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417150}}, {"model": "metainfo.source", "pk": 16969, "fields": {"orig_filename": "David_Werner_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417151}}, {"model": "metainfo.source", "pk": 16970, "fields": {"orig_filename": "Deak-Ebner_Ludwig_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417153}}, {"model": "metainfo.source", "pk": 16971, "fields": {"orig_filename": "Deak_Franz_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417152}}, {"model": "metainfo.source", "pk": 16972, "fields": {"orig_filename": "Deball_Leo-Anton-Karl_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417154}}, {"model": "metainfo.source", "pk": 16973, "fields": {"orig_filename": "Debaut_Franz_1745_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417155}}, {"model": "metainfo.source", "pk": 16974, "fields": {"orig_filename": "Debois_Ferdinand_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417156}}, {"model": "metainfo.source", "pk": 16975, "fields": {"orig_filename": "Debrois-Bruyck_Karl_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417157}}, {"model": "metainfo.source", "pk": 16976, "fields": {"orig_filename": "Decarli_Bruno_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250f.", "author": "", "orig_id": 1406550}}, {"model": "metainfo.source", "pk": 16977, "fields": {"orig_filename": "Decker_Gabriel_1821_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417158}}, {"model": "metainfo.source", "pk": 16978, "fields": {"orig_filename": "Decker_Georg_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417159}}, {"model": "metainfo.source", "pk": 16979, "fields": {"orig_filename": "Decker_Johann-Stephan_1784_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417160}}, {"model": "metainfo.source", "pk": 16980, "fields": {"orig_filename": "Decsey_Alexander_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417161}}, {"model": "metainfo.source", "pk": 16981, "fields": {"orig_filename": "Decsey_Ernst_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417162}}, {"model": "metainfo.source", "pk": 16982, "fields": {"orig_filename": "Dedekind_Alexander_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417163}}, {"model": "metainfo.source", "pk": 16983, "fields": {"orig_filename": "Dedic_Paul_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173f.", "author": "", "orig_id": 1417164}}, {"model": "metainfo.source", "pk": 16984, "fields": {"orig_filename": "Dedovic_Martin_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417165}}, {"model": "metainfo.source", "pk": 16985, "fields": {"orig_filename": "Defabris_Giuseppe_1790_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417166}}, {"model": "metainfo.source", "pk": 16986, "fields": {"orig_filename": "Degen-Elsenau_Josef-Vinzenz_1762_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417169}}, {"model": "metainfo.source", "pk": 16987, "fields": {"orig_filename": "Degenfeld-Schonburg_August_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174f.", "author": "", "orig_id": 1417170}}, {"model": "metainfo.source", "pk": 16988, "fields": {"orig_filename": "Degenfeld-Schonburg_Friedrich_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417241}}, {"model": "metainfo.source", "pk": 16989, "fields": {"orig_filename": "Degen_Jakob_1760_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417168}}, {"model": "metainfo.source", "pk": 16990, "fields": {"orig_filename": "Degner_Erich-Wolfgang_1858_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417242}}, {"model": "metainfo.source", "pk": 16991, "fields": {"orig_filename": "Dehne_August_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443704}}, {"model": "metainfo.source", "pk": 16992, "fields": {"orig_filename": "Deil_Eugen_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1419883}}, {"model": "metainfo.source", "pk": 16993, "fields": {"orig_filename": "Deinhard-Deinhardstein_Johann-Ludwig_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417243}}, {"model": "metainfo.source", "pk": 16994, "fields": {"orig_filename": "Chmelensky_Ladislav_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417220}}, {"model": "metainfo.source", "pk": 16995, "fields": {"orig_filename": "Chmel_Adam-Matthias_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417144}}, {"model": "metainfo.source", "pk": 16996, "fields": {"orig_filename": "Chmel_Josef_1798_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417145}}, {"model": "metainfo.source", "pk": 16997, "fields": {"orig_filename": "Chocholousek_Prokop_1819_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417221}}, {"model": "metainfo.source", "pk": 16998, "fields": {"orig_filename": "Chodounsky_Karl_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417222}}, {"model": "metainfo.source", "pk": 16999, "fields": {"orig_filename": "Cholewa_Josip_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2192006}}, {"model": "metainfo.source", "pk": 17000, "fields": {"orig_filename": "Chorherr_Franz-Xaver_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417223}}, {"model": "metainfo.source", "pk": 17001, "fields": {"orig_filename": "Chorinsky_Karl_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1419882}}, {"model": "metainfo.source", "pk": 17002, "fields": {"orig_filename": "Chotek_Johann-Rud_1749_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417224}}, {"model": "metainfo.source", "pk": 17003, "fields": {"orig_filename": "Chotek_Karl_1783_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417225}}, {"model": "metainfo.source", "pk": 17004, "fields": {"orig_filename": "Chotek_Sophie_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417226}}, {"model": "metainfo.source", "pk": 17005, "fields": {"orig_filename": "Christ-Ehrenblueh_Josef_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417228}}, {"model": "metainfo.source", "pk": 17006, "fields": {"orig_filename": "Christel_Franz_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417229}}, {"model": "metainfo.source", "pk": 17007, "fields": {"orig_filename": "Christen_Wilhelm_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417231}}, {"model": "metainfo.source", "pk": 17008, "fields": {"orig_filename": "Christians_Mady_1896_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2167471}}, {"model": "metainfo.source", "pk": 17009, "fields": {"orig_filename": "Christomanos_Konstantin_1867_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417232}}, {"model": "metainfo.source", "pk": 17010, "fields": {"orig_filename": "Christomanos_Theodor_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417233}}, {"model": "metainfo.source", "pk": 17011, "fields": {"orig_filename": "Christ_Josef-Anton_1744_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417227}}, {"model": "metainfo.source", "pk": 17012, "fields": {"orig_filename": "Chrobak_Rudolf_1843_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417234}}, {"model": "metainfo.source", "pk": 17013, "fields": {"orig_filename": "Chroust_Anton_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147f.", "author": "", "orig_id": 1417235}}, {"model": "metainfo.source", "pk": 17014, "fields": {"orig_filename": "Chvostek_Franz_1835_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417236}}, {"model": "metainfo.source", "pk": 17015, "fields": {"orig_filename": "Chvostek_Franz_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417237}}, {"model": "metainfo.source", "pk": 17016, "fields": {"orig_filename": "Cicognara_Leopoldo_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417239}}, {"model": "metainfo.source", "pk": 17017, "fields": {"orig_filename": "Cicogna_Emanuele-Antonio_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417238}}, {"model": "metainfo.source", "pk": 17018, "fields": {"orig_filename": "Cikos-Sesija_Bela_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417240}}, {"model": "metainfo.source", "pk": 17019, "fields": {"orig_filename": "Cingr_Petr_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2173829}}, {"model": "metainfo.source", "pk": 17020, "fields": {"orig_filename": "Clary-Aldringen_Manfred_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417318}}, {"model": "metainfo.source", "pk": 17021, "fields": {"orig_filename": "Clar_Conrad_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1441329}}, {"model": "metainfo.source", "pk": 17022, "fields": {"orig_filename": "Clar_Franz_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1441328}}, {"model": "metainfo.source", "pk": 17023, "fields": {"orig_filename": "Clement_Franz_1780_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417321}}, {"model": "metainfo.source", "pk": 17024, "fields": {"orig_filename": "Coch_Georg-Theodor_1842_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1419881}}, {"model": "metainfo.source", "pk": 17025, "fields": {"orig_filename": "Coghetti_Francesco_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417322}}, {"model": "metainfo.source", "pk": 17026, "fields": {"orig_filename": "Cohn_Heinrich_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417323}}, {"model": "metainfo.source", "pk": 17027, "fields": {"orig_filename": "Cokor_Istvan_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417324}}, {"model": "metainfo.source", "pk": 17028, "fields": {"orig_filename": "Colard_Hermann_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417325}}, {"model": "metainfo.source", "pk": 17029, "fields": {"orig_filename": "Colerus-Geldern_Egmont_1888_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417326}}, {"model": "metainfo.source", "pk": 17030, "fields": {"orig_filename": "Colerus-Geldern_Emil_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417327}}, {"model": "metainfo.source", "pk": 17031, "fields": {"orig_filename": "Collenbach_Gabriel_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150f.", "author": "", "orig_id": 1417328}}, {"model": "metainfo.source", "pk": 17032, "fields": {"orig_filename": "Collery_Eduard_1790_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417329}}, {"model": "metainfo.source", "pk": 17033, "fields": {"orig_filename": "Collin_Matthaeus_1779_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417330}}, {"model": "metainfo.source", "pk": 17034, "fields": {"orig_filename": "Collmann_Alfred_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417331}}, {"model": "metainfo.source", "pk": 17035, "fields": {"orig_filename": "Colloredo-Mannsfeld_Ferdinand_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417332}}, {"model": "metainfo.source", "pk": 17036, "fields": {"orig_filename": "Colloredo-Mannsfeld_Hieronymus_1775_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417333}}, {"model": "metainfo.source", "pk": 17037, "fields": {"orig_filename": "Colloredo-Mels-Wallsee_Joseph_1735_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417334}}, {"model": "metainfo.source", "pk": 17038, "fields": {"orig_filename": "Colloredo-Mels-Wallsee_Wenzel-Joseph_1738_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417335}}, {"model": "metainfo.source", "pk": 17039, "fields": {"orig_filename": "Comerio_Agostino_1784_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417336}}, {"model": "metainfo.source", "pk": 17040, "fields": {"orig_filename": "Comolli_Giovanni-Battista_1775_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417337}}, {"model": "metainfo.source", "pk": 17041, "fields": {"orig_filename": "Conconi_Mauro_1815_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417338}}, {"model": "metainfo.source", "pk": 17042, "fields": {"orig_filename": "Conegliano_Emanuele_1749_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417339}}, {"model": "metainfo.source", "pk": 17043, "fields": {"orig_filename": "Conn_Leopold_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417412}}, {"model": "metainfo.source", "pk": 17044, "fields": {"orig_filename": "Conrad-Eybesfeld_Siegmund_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153", "author": "", "orig_id": 1417414}}, {"model": "metainfo.source", "pk": 17045, "fields": {"orig_filename": "Conrad-Hoetzendorf_Franz_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153", "author": "", "orig_id": 1417415}}, {"model": "metainfo.source", "pk": 17046, "fields": {"orig_filename": "Conrad_Otto_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152f.", "author": "", "orig_id": 1417413}}, {"model": "metainfo.source", "pk": 17047, "fields": {"orig_filename": "Cop_Matija_1797_1835.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417418}}, {"model": "metainfo.source", "pk": 17048, "fields": {"orig_filename": "Corda_August-Karl-Josef_1805_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154", "author": "", "orig_id": 1417419}}, {"model": "metainfo.source", "pk": 17049, "fields": {"orig_filename": "Coreth_Emerich_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154", "author": "", "orig_id": 1417420}}, {"model": "metainfo.source", "pk": 17050, "fields": {"orig_filename": "Cornelius_Hans-Peter_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154f.", "author": "", "orig_id": 1417421}}, {"model": "metainfo.source", "pk": 17051, "fields": {"orig_filename": "Cornet_Julius_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417422}}, {"model": "metainfo.source", "pk": 17052, "fields": {"orig_filename": "Cornova_Ignaz_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417423}}, {"model": "metainfo.source", "pk": 17053, "fields": {"orig_filename": "Coronini-Cronberg_Franz_1830_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417424}}, {"model": "metainfo.source", "pk": 17054, "fields": {"orig_filename": "Coronini-Cronberg_Johann-Baptist_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417425}}, {"model": "metainfo.source", "pk": 17055, "fields": {"orig_filename": "Coronini-Cronberg_Karl_1818_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417426}}, {"model": "metainfo.source", "pk": 17056, "fields": {"orig_filename": "Correr_Teodoro_1750_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417427}}, {"model": "metainfo.source", "pk": 17057, "fields": {"orig_filename": "Costa_Karl_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417428}}, {"model": "metainfo.source", "pk": 17058, "fields": {"orig_filename": "Costenoble_Johanna_1777_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417429}}, {"model": "metainfo.source", "pk": 17059, "fields": {"orig_filename": "Costenoble_Karl_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417430}}, {"model": "metainfo.source", "pk": 17060, "fields": {"orig_filename": "Coudenhove_Karl-Maria_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417432}}, {"model": "metainfo.source", "pk": 17061, "fields": {"orig_filename": "Coudenhove_Maximilian_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417433}}, {"model": "metainfo.source", "pk": 17062, "fields": {"orig_filename": "Coumont_Eduard_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417434}}, {"model": "metainfo.source", "pk": 17063, "fields": {"orig_filename": "Crivelli_Antonio_1783_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417435}}, {"model": "metainfo.source", "pk": 17064, "fields": {"orig_filename": "Crncic_Menci-Klement_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417505}}, {"model": "metainfo.source", "pk": 17065, "fields": {"orig_filename": "Cronbach_Else_1879_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156f.", "author": "", "orig_id": 1417506}}, {"model": "metainfo.source", "pk": 17066, "fields": {"orig_filename": "Crophius-Kaisersieg_Ludwig_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417507}}, {"model": "metainfo.source", "pk": 17067, "fields": {"orig_filename": "Cruewell_Gottlieb-August_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417508}}, {"model": "metainfo.source", "pk": 17068, "fields": {"orig_filename": "Crusius_Christian_1758_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417509}}, {"model": "metainfo.source", "pk": 17069, "fields": {"orig_filename": "Csanki_Deszoe_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417510}}, {"model": "metainfo.source", "pk": 17070, "fields": {"orig_filename": "Csaplovics-Jescenova_Johann_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417511}}, {"model": "metainfo.source", "pk": 17071, "fields": {"orig_filename": "Csemegi_Karl_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417512}}, {"model": "metainfo.source", "pk": 17072, "fields": {"orig_filename": "Csengery_Anton_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157f.", "author": "", "orig_id": 1417513}}, {"model": "metainfo.source", "pk": 17073, "fields": {"orig_filename": "Csermak_Anton_1771_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417514}}, {"model": "metainfo.source", "pk": 17074, "fields": {"orig_filename": "Csiky_Gregor_1842_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417515}}, {"model": "metainfo.source", "pk": 17075, "fields": {"orig_filename": "Csillag_Rosa_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417516}}, {"model": "metainfo.source", "pk": 17076, "fields": {"orig_filename": "Csivich-Rohr_Ignaz_1752_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417517}}, {"model": "metainfo.source", "pk": 17077, "fields": {"orig_filename": "Csokor_Franz-Theodor_1885_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438139}}, {"model": "metainfo.source", "pk": 17078, "fields": {"orig_filename": "Csok_Stephan_1865_1961.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417518}}, {"model": "metainfo.source", "pk": 17079, "fields": {"orig_filename": "Csonka_Janos_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1910690}}, {"model": "metainfo.source", "pk": 17080, "fields": {"orig_filename": "Csorich-Monte-Creto_Alexander-Franz_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417519}}, {"model": "metainfo.source", "pk": 17081, "fields": {"orig_filename": "Cuka_Jakov_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417521}}, {"model": "metainfo.source", "pk": 17082, "fields": {"orig_filename": "Culoz_Karl_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417522}}, {"model": "metainfo.source", "pk": 17083, "fields": {"orig_filename": "Cumberland_Ernst-August_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417523}}, {"model": "metainfo.source", "pk": 17084, "fields": {"orig_filename": "Cuntz_Otto_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417524}}, {"model": "metainfo.source", "pk": 17085, "fields": {"orig_filename": "Cupr_Frantisek_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417525}}, {"model": "metainfo.source", "pk": 17086, "fields": {"orig_filename": "Curinaldi_Alois_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417526}}, {"model": "metainfo.source", "pk": 17087, "fields": {"orig_filename": "Cuscoleca_Julius_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159f.", "author": "", "orig_id": 1417598}}, {"model": "metainfo.source", "pk": 17088, "fields": {"orig_filename": "Cuvaj_Anton_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417599}}, {"model": "metainfo.source", "pk": 17089, "fields": {"orig_filename": "Cvijic_Jovan_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417600}}, {"model": "metainfo.source", "pk": 17090, "fields": {"orig_filename": "Burrian_Karl_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419746}}, {"model": "metainfo.source", "pk": 17091, "fields": {"orig_filename": "Burstyn_Gunther_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419747}}, {"model": "metainfo.source", "pk": 17092, "fields": {"orig_filename": "Buschmann_Alfred_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419748}}, {"model": "metainfo.source", "pk": 17093, "fields": {"orig_filename": "Buschmann_Dina_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419749}}, {"model": "metainfo.source", "pk": 17094, "fields": {"orig_filename": "Buschmann_Gotthard_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130f.", "author": "", "orig_id": 1419750}}, {"model": "metainfo.source", "pk": 17095, "fields": {"orig_filename": "Busson_Arnold_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419751}}, {"model": "metainfo.source", "pk": 17096, "fields": {"orig_filename": "Busson_Paul_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419752}}, {"model": "metainfo.source", "pk": 17097, "fields": {"orig_filename": "Buttlar-Moscon_Alfred_1898_1972.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442839}}, {"model": "metainfo.source", "pk": 17098, "fields": {"orig_filename": "Buttlar_Auguste_1796_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419753}}, {"model": "metainfo.source", "pk": 17099, "fields": {"orig_filename": "Buwa_Johann_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419754}}, {"model": "metainfo.source", "pk": 17100, "fields": {"orig_filename": "Buzzi_Andreas_1779_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419799}}, {"model": "metainfo.source", "pk": 17101, "fields": {"orig_filename": "Bylandt-Rheidt_Artur-Maximilian_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131f.", "author": "", "orig_id": 1419801}}, {"model": "metainfo.source", "pk": 17102, "fields": {"orig_filename": "Bylandt-Rheidt_Artur_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419800}}, {"model": "metainfo.source", "pk": 17103, "fields": {"orig_filename": "Byloff_Fritz_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1419802}}, {"model": "metainfo.source", "pk": 17104, "fields": {"orig_filename": "Caboga_Bernhard_1785_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416758}}, {"model": "metainfo.source", "pk": 17105, "fields": {"orig_filename": "Cackovic_Miroslav_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416759}}, {"model": "metainfo.source", "pk": 17106, "fields": {"orig_filename": "Cada_Frantisek_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416760}}, {"model": "metainfo.source", "pk": 17107, "fields": {"orig_filename": "Cagnola_Luigi_1762_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132f.", "author": "", "orig_id": 1416762}}, {"model": "metainfo.source", "pk": 17108, "fields": {"orig_filename": "Cagnoni_Antonio_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416763}}, {"model": "metainfo.source", "pk": 17109, "fields": {"orig_filename": "Calafati_Theodor_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416764}}, {"model": "metainfo.source", "pk": 17110, "fields": {"orig_filename": "Calegari_Antonio_1757_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416765}}, {"model": "metainfo.source", "pk": 17111, "fields": {"orig_filename": "Calice_Heinrich_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416766}}, {"model": "metainfo.source", "pk": 17112, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Friedrich_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416767}}, {"model": "metainfo.source", "pk": 17113, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Guido_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416768}}, {"model": "metainfo.source", "pk": 17114, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Karl_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133f.", "author": "", "orig_id": 1416769}}, {"model": "metainfo.source", "pk": 17115, "fields": {"orig_filename": "Camesina_Albert_1806_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416770}}, {"model": "metainfo.source", "pk": 17116, "fields": {"orig_filename": "Campana-Spluegenberg_Anton_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416771}}, {"model": "metainfo.source", "pk": 17117, "fields": {"orig_filename": "Canal-Malabaila_Josef-Emanuel_1745_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416772}}, {"model": "metainfo.source", "pk": 17118, "fields": {"orig_filename": "Canal_Gilbert_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1419870}}, {"model": "metainfo.source", "pk": 17119, "fields": {"orig_filename": "Canaval_Michael-Franz_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416846}}, {"model": "metainfo.source", "pk": 17120, "fields": {"orig_filename": "Canaval_Richard_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416847}}, {"model": "metainfo.source", "pk": 17121, "fields": {"orig_filename": "Canciani_Alfonso_1863_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416848}}, {"model": "metainfo.source", "pk": 17122, "fields": {"orig_filename": "Canestrini_Giovanni_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416849}}, {"model": "metainfo.source", "pk": 17123, "fields": {"orig_filename": "Cankar_Ivan_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416850}}, {"model": "metainfo.source", "pk": 17124, "fields": {"orig_filename": "Canova_Antonio_1757_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416851}}, {"model": "metainfo.source", "pk": 17125, "fields": {"orig_filename": "Cantani_Arnaldo_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416852}}, {"model": "metainfo.source", "pk": 17126, "fields": {"orig_filename": "Cantor_Matthias_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135f.", "author": "", "orig_id": 1416853}}, {"model": "metainfo.source", "pk": 17127, "fields": {"orig_filename": "Cantu_Cesare_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416854}}, {"model": "metainfo.source", "pk": 17128, "fields": {"orig_filename": "Capek-Chod_Karel-Matej_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416856}}, {"model": "metainfo.source", "pk": 17129, "fields": {"orig_filename": "Capek_Karel_1890_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416855}}, {"model": "metainfo.source", "pk": 17130, "fields": {"orig_filename": "Capelari_Friedrich_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416857}}, {"model": "metainfo.source", "pk": 17131, "fields": {"orig_filename": "Capilleri_Wilhelm_1834_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416858}}, {"model": "metainfo.source", "pk": 17132, "fields": {"orig_filename": "Carabelli-Lunkaszprie_Georg_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416860}}, {"model": "metainfo.source", "pk": 17133, "fields": {"orig_filename": "Carcano_Giulio_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136f.", "author": "", "orig_id": 1416861}}, {"model": "metainfo.source", "pk": 17134, "fields": {"orig_filename": "Carlini_Francesco_1783_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416864}}, {"model": "metainfo.source", "pk": 17135, "fields": {"orig_filename": "Carneri_Bartholomaeus_1821_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416865}}, {"model": "metainfo.source", "pk": 17136, "fields": {"orig_filename": "Carrer_Luigi_1801_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416866}}, {"model": "metainfo.source", "pk": 17137, "fields": {"orig_filename": "Carro_Johann_1770_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416867}}, {"model": "metainfo.source", "pk": 17138, "fields": {"orig_filename": "Cartellieri_Wilhelm_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416868}}, {"model": "metainfo.source", "pk": 17139, "fields": {"orig_filename": "Car_Lazar_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416859}}, {"model": "metainfo.source", "pk": 17140, "fields": {"orig_filename": "Casati_Gabrio_1798_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416869}}, {"model": "metainfo.source", "pk": 17141, "fields": {"orig_filename": "Cassinone_Alexander_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137f.", "author": "", "orig_id": 1416870}}, {"model": "metainfo.source", "pk": 17142, "fields": {"orig_filename": "Castelli_Ignaz-Franz_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416871}}, {"model": "metainfo.source", "pk": 17143, "fields": {"orig_filename": "Castiglione_Johann_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416934}}, {"model": "metainfo.source", "pk": 17144, "fields": {"orig_filename": "Cathrein_Alois_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416935}}, {"model": "metainfo.source", "pk": 17145, "fields": {"orig_filename": "Catinelli_Maximilian_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416936}}, {"model": "metainfo.source", "pk": 17146, "fields": {"orig_filename": "Catty_Adolf_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416937}}, {"model": "metainfo.source", "pk": 17147, "fields": {"orig_filename": "Caucig_Franz_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138f.", "author": "", "orig_id": 1416938}}, {"model": "metainfo.source", "pk": 17148, "fields": {"orig_filename": "Cavar_Alfred_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416939}}, {"model": "metainfo.source", "pk": 17149, "fields": {"orig_filename": "Cazan_Dominik_1755_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416940}}, {"model": "metainfo.source", "pk": 17150, "fields": {"orig_filename": "Cebotari_Maria_1910_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416941}}, {"model": "metainfo.source", "pk": 17151, "fields": {"orig_filename": "Cech_Svatopluk_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416942}}, {"model": "metainfo.source", "pk": 17152, "fields": {"orig_filename": "Cegnar_Franz_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416943}}, {"model": "metainfo.source", "pk": 17153, "fields": {"orig_filename": "Ceipek_Josef_1844_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416944}}, {"model": "metainfo.source", "pk": 17154, "fields": {"orig_filename": "Celakovsky_Frantisek-Lad_1799_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139f.", "author": "", "orig_id": 1416945}}, {"model": "metainfo.source", "pk": 17155, "fields": {"orig_filename": "Celestin_Franz_1843_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416948}}, {"model": "metainfo.source", "pk": 17156, "fields": {"orig_filename": "Cermak_Wilhelm_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416949}}, {"model": "metainfo.source", "pk": 17157, "fields": {"orig_filename": "Cerny_Thomas_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416950}}, {"model": "metainfo.source", "pk": 17158, "fields": {"orig_filename": "Cerri_Caecilie_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416951}}, {"model": "metainfo.source", "pk": 17159, "fields": {"orig_filename": "Cerri_Cajetan_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140f.", "author": "", "orig_id": 1416952}}, {"model": "metainfo.source", "pk": 17160, "fields": {"orig_filename": "Cesari_Antonio_1760_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416954}}, {"model": "metainfo.source", "pk": 17161, "fields": {"orig_filename": "Cevapovic_Gregor_1786_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416955}}, {"model": "metainfo.source", "pk": 17162, "fields": {"orig_filename": "Chadt_Josef_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416956}}, {"model": "metainfo.source", "pk": 17163, "fields": {"orig_filename": "Chajes_Hirsch-Perez_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416957}}, {"model": "metainfo.source", "pk": 17164, "fields": {"orig_filename": "Chalupka_Samo_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417028}}, {"model": "metainfo.source", "pk": 17165, "fields": {"orig_filename": "Chasteler-Courcelles_Johann-Gabriel_1763_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141f.", "author": "", "orig_id": 1417031}}, {"model": "metainfo.source", "pk": 17166, "fields": {"orig_filename": "Chavanne_Irene_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417032}}, {"model": "metainfo.source", "pk": 17167, "fields": {"orig_filename": "Chavanne_Josef_1846_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417033}}, {"model": "metainfo.source", "pk": 17168, "fields": {"orig_filename": "Chezy_Wilhelm-Theodor_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417034}}, {"model": "metainfo.source", "pk": 17169, "fields": {"orig_filename": "Chiari_Arthur_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417035}}, {"model": "metainfo.source", "pk": 17170, "fields": {"orig_filename": "Chiari_Hans_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417036}}, {"model": "metainfo.source", "pk": 17171, "fields": {"orig_filename": "Chiari_Johann-Bapt_1817_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417037}}, {"model": "metainfo.source", "pk": 17172, "fields": {"orig_filename": "Chiari_Josef_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417038}}, {"model": "metainfo.source", "pk": 17173, "fields": {"orig_filename": "Chiari_Karl_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142f.", "author": "", "orig_id": 1417039}}, {"model": "metainfo.source", "pk": 17174, "fields": {"orig_filename": "Chiari_Max_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417040}}, {"model": "metainfo.source", "pk": 17175, "fields": {"orig_filename": "Chiari_Ottokar_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417041}}, {"model": "metainfo.source", "pk": 17176, "fields": {"orig_filename": "Chiavacci_Vinzenz_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417042}}, {"model": "metainfo.source", "pk": 17177, "fields": {"orig_filename": "Chimani-Mannberg_Anton_1768_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417135}}, {"model": "metainfo.source", "pk": 17178, "fields": {"orig_filename": "Chimani_Leopold_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417134}}, {"model": "metainfo.source", "pk": 17179, "fields": {"orig_filename": "Chiolich-Loewensberg_Hermann_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417136}}, {"model": "metainfo.source", "pk": 17180, "fields": {"orig_filename": "Chittussi_Anton_1847_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417137}}, {"model": "metainfo.source", "pk": 17181, "fields": {"orig_filename": "Chledowski_Kasimir_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417138}}, {"model": "metainfo.source", "pk": 17182, "fields": {"orig_filename": "Chlumecky_Johann_1834_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417141}}, {"model": "metainfo.source", "pk": 17183, "fields": {"orig_filename": "Chlumecky_Leopold_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144f.", "author": "", "orig_id": 1417142}}, {"model": "metainfo.source", "pk": 17184, "fields": {"orig_filename": "Chlumecky_Peter_1825_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417143}}, {"model": "metainfo.source", "pk": 17185, "fields": {"orig_filename": "Chmelarz_Eduard_1847_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417218}}, {"model": "metainfo.source", "pk": 17186, "fields": {"orig_filename": "Chmelensky_Josef-Krasoslav_1800_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145f.", "author": "", "orig_id": 1417219}}, {"model": "metainfo.source", "pk": 17187, "fields": {"orig_filename": "Brik_Johann-Emanuel_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420549}}, {"model": "metainfo.source", "pk": 17188, "fields": {"orig_filename": "Brioschi_Anton_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420550}}, {"model": "metainfo.source", "pk": 17189, "fields": {"orig_filename": "Brioschi_Francesco_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420551}}, {"model": "metainfo.source", "pk": 17190, "fields": {"orig_filename": "Brioschi_Karl_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420552}}, {"model": "metainfo.source", "pk": 17191, "fields": {"orig_filename": "Brioschi_Othmar_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420553}}, {"model": "metainfo.source", "pk": 17192, "fields": {"orig_filename": "Brlic-Mazuranic_Ivana_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420556}}, {"model": "metainfo.source", "pk": 17193, "fields": {"orig_filename": "Brlic_Andrija-Torkvat_1826_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420554}}, {"model": "metainfo.source", "pk": 17194, "fields": {"orig_filename": "Brlic_Ignjat-Alojzije_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420555}}, {"model": "metainfo.source", "pk": 17195, "fields": {"orig_filename": "Brociner_Marco_1852_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420557}}, {"model": "metainfo.source", "pk": 17196, "fields": {"orig_filename": "Brocky_Karl_1807_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420558}}, {"model": "metainfo.source", "pk": 17197, "fields": {"orig_filename": "Broda_Rudolf_1880_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420559}}, {"model": "metainfo.source", "pk": 17198, "fields": {"orig_filename": "Brody_Alexander_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115f.", "author": "", "orig_id": 1420560}}, {"model": "metainfo.source", "pk": 17199, "fields": {"orig_filename": "Brodzinski_Kazimierz_1791_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420605}}, {"model": "metainfo.source", "pk": 17200, "fields": {"orig_filename": "Bronner_Ferdinand_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420606}}, {"model": "metainfo.source", "pk": 17201, "fields": {"orig_filename": "Brosch-Aarenau_Alexander_1870_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420608}}, {"model": "metainfo.source", "pk": 17202, "fields": {"orig_filename": "Brosch-Aarenau_Theodor_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116f.", "author": "", "orig_id": 1420609}}, {"model": "metainfo.source", "pk": 17203, "fields": {"orig_filename": "Brosch_Moritz_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420607}}, {"model": "metainfo.source", "pk": 17204, "fields": {"orig_filename": "Brotanek_Rudolf_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420610}}, {"model": "metainfo.source", "pk": 17205, "fields": {"orig_filename": "Brozik_Wenzel_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420611}}, {"model": "metainfo.source", "pk": 17206, "fields": {"orig_filename": "Bruckner_Anton_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420615}}, {"model": "metainfo.source", "pk": 17207, "fields": {"orig_filename": "Bruckner_Ferdinand_1891_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422506}}, {"model": "metainfo.source", "pk": 17208, "fields": {"orig_filename": "Bruck_Karl-Ludwig_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420613}}, {"model": "metainfo.source", "pk": 17209, "fields": {"orig_filename": "Bruech_Oskar_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420616}}, {"model": "metainfo.source", "pk": 17210, "fields": {"orig_filename": "Bruecke_Ernst-Theodor_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420618}}, {"model": "metainfo.source", "pk": 17211, "fields": {"orig_filename": "Bruecke_Ernst-Wilhelm_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420617}}, {"model": "metainfo.source", "pk": 17212, "fields": {"orig_filename": "Brueckner_Alexander_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119f.", "author": "", "orig_id": 1420619}}, {"model": "metainfo.source", "pk": 17213, "fields": {"orig_filename": "Brueckner_Eduard_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420620}}, {"model": "metainfo.source", "pk": 17214, "fields": {"orig_filename": "Bruehl_Karl-Bernhard_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420621}}, {"model": "metainfo.source", "pk": 17215, "fields": {"orig_filename": "Bruell_Ignaz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420622}}, {"model": "metainfo.source", "pk": 17216, "fields": {"orig_filename": "Bruerovic_Marko_1770_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420623}}, {"model": "metainfo.source", "pk": 17217, "fields": {"orig_filename": "Brumowski_Godwin_1889_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420352}}, {"model": "metainfo.source", "pk": 17218, "fields": {"orig_filename": "Brunetti-Pisano_August_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420624}}, {"model": "metainfo.source", "pk": 17219, "fields": {"orig_filename": "Brunlechner_August_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420625}}, {"model": "metainfo.source", "pk": 17220, "fields": {"orig_filename": "Brunmeyer_Andreas_1762_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420626}}, {"model": "metainfo.source", "pk": 17221, "fields": {"orig_filename": "Brunnenmeister_Emil_1854_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420627}}, {"model": "metainfo.source", "pk": 17222, "fields": {"orig_filename": "Brunner_Armin_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420628}}, {"model": "metainfo.source", "pk": 17223, "fields": {"orig_filename": "Brunner_Heinrich_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1419618}}, {"model": "metainfo.source", "pk": 17224, "fields": {"orig_filename": "Brunner_Moritz_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1419619}}, {"model": "metainfo.source", "pk": 17225, "fields": {"orig_filename": "Brunner_Sebastian_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121f.", "author": "", "orig_id": 1419620}}, {"model": "metainfo.source", "pk": 17226, "fields": {"orig_filename": "Brunner_Vratislav_1886_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419621}}, {"model": "metainfo.source", "pk": 17227, "fields": {"orig_filename": "Brunsmid_Josef_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419622}}, {"model": "metainfo.source", "pk": 17228, "fields": {"orig_filename": "Brunsvick_Therese_1775_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419623}}, {"model": "metainfo.source", "pk": 17229, "fields": {"orig_filename": "Bruzek_Anton_1915_2003.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1994566}}, {"model": "metainfo.source", "pk": 17230, "fields": {"orig_filename": "Bryk_Philipp_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419624}}, {"model": "metainfo.source", "pk": 17231, "fields": {"orig_filename": "Bubak_Franz_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1420334}}, {"model": "metainfo.source", "pk": 17232, "fields": {"orig_filename": "Bubna-Littitz_Ferdinand_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1420335}}, {"model": "metainfo.source", "pk": 17233, "fields": {"orig_filename": "Buchbinder_Bernhard_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419625}}, {"model": "metainfo.source", "pk": 17234, "fields": {"orig_filename": "Bucher_Bruno_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419626}}, {"model": "metainfo.source", "pk": 17235, "fields": {"orig_filename": "Buchholtz_Franz-Bernhard_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419627}}, {"model": "metainfo.source", "pk": 17236, "fields": {"orig_filename": "Buchmayer_Anton-Alois_1770_1851.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419629}}, {"model": "metainfo.source", "pk": 17237, "fields": {"orig_filename": "Buchowiecki_Josef_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419630}}, {"model": "metainfo.source", "pk": 17238, "fields": {"orig_filename": "Buchta_Richard_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419631}}, {"model": "metainfo.source", "pk": 17239, "fields": {"orig_filename": "Buchwald_Salomon_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2093311}}, {"model": "metainfo.source", "pk": 17240, "fields": {"orig_filename": "Buconjic_Paskal_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419632}}, {"model": "metainfo.source", "pk": 17241, "fields": {"orig_filename": "Budau_Artur_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123f.", "author": "", "orig_id": 1419633}}, {"model": "metainfo.source", "pk": 17242, "fields": {"orig_filename": "Buday-Bator_Ignaz_1764_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419634}}, {"model": "metainfo.source", "pk": 17243, "fields": {"orig_filename": "Budenz_Josef_1836_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419635}}, {"model": "metainfo.source", "pk": 17244, "fields": {"orig_filename": "Bude_Leopold_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1420511}}, {"model": "metainfo.source", "pk": 17245, "fields": {"orig_filename": "Budik_Peter_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419636}}, {"model": "metainfo.source", "pk": 17246, "fields": {"orig_filename": "Budinszky_Alexander_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419675}}, {"model": "metainfo.source", "pk": 17247, "fields": {"orig_filename": "Budmani_Pero_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419676}}, {"model": "metainfo.source", "pk": 17248, "fields": {"orig_filename": "Bueche_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419677}}, {"model": "metainfo.source", "pk": 17249, "fields": {"orig_filename": "Buedinger_Max_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124f.", "author": "", "orig_id": 1419678}}, {"model": "metainfo.source", "pk": 17250, "fields": {"orig_filename": "Buehler_Georg_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419679}}, {"model": "metainfo.source", "pk": 17251, "fields": {"orig_filename": "Buelow-Wendhausen_Paula_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419680}}, {"model": "metainfo.source", "pk": 17252, "fields": {"orig_filename": "Bueltemeyer_Heinrich_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419681}}, {"model": "metainfo.source", "pk": 17253, "fields": {"orig_filename": "Buenker_Johann-Reinhard_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419682}}, {"model": "metainfo.source", "pk": 17254, "fields": {"orig_filename": "Buerde-Ney_Jenny_1824_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419683}}, {"model": "metainfo.source", "pk": 17255, "fields": {"orig_filename": "Buerg_Johann-Tobias_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125f.", "author": "", "orig_id": 1419684}}, {"model": "metainfo.source", "pk": 17256, "fields": {"orig_filename": "Bukovac_Vlaho_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419685}}, {"model": "metainfo.source", "pk": 17257, "fields": {"orig_filename": "Bukovics-Kis-Alacska_Emmerich_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419686}}, {"model": "metainfo.source", "pk": 17258, "fields": {"orig_filename": "Bukovics-Kis-Alacska_Karl_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419869}}, {"model": "metainfo.source", "pk": 17259, "fields": {"orig_filename": "Bukowski-Stolzenburg_Gejza_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2005227}}, {"model": "metainfo.source", "pk": 17260, "fields": {"orig_filename": "Bulat_Gajo_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419687}}, {"model": "metainfo.source", "pk": 17261, "fields": {"orig_filename": "Bulic_Frane_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419688}}, {"model": "metainfo.source", "pk": 17262, "fields": {"orig_filename": "Buol-Bernburg_Marie_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126f.", "author": "", "orig_id": 1419689}}, {"model": "metainfo.source", "pk": 17263, "fields": {"orig_filename": "Buol-Schauenstein_Johann-Rud_1763_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419690}}, {"model": "metainfo.source", "pk": 17264, "fields": {"orig_filename": "Buol-Schauenstein_Karl-Ferdinand_1797_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419691}}, {"model": "metainfo.source", "pk": 17265, "fields": {"orig_filename": "Buquoi-Longueval_Georg-Franz-August_1781_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419692}}, {"model": "metainfo.source", "pk": 17266, "fields": {"orig_filename": "Buquoy_Ferdinand_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420633}}, {"model": "metainfo.source", "pk": 17267, "fields": {"orig_filename": "Buratovich_Ivan-Santiago_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419693}}, {"model": "metainfo.source", "pk": 17268, "fields": {"orig_filename": "Burckhardt_Max-Eugen_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419694}}, {"model": "metainfo.source", "pk": 17269, "fields": {"orig_filename": "Burde_Johann-Karl_1744_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127f.", "author": "", "orig_id": 1419695}}, {"model": "metainfo.source", "pk": 17270, "fields": {"orig_filename": "Burde_Josef-Karl_1779_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419731}}, {"model": "metainfo.source", "pk": 17271, "fields": {"orig_filename": "Buresch_Karl_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1415797}}, {"model": "metainfo.source", "pk": 17272, "fields": {"orig_filename": "Burgauner_Johann_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419735}}, {"model": "metainfo.source", "pk": 17273, "fields": {"orig_filename": "Burger_Franz_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419736}}, {"model": "metainfo.source", "pk": 17274, "fields": {"orig_filename": "Burger_Friedrich-Moritz_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128f.", "author": "", "orig_id": 1419738}}, {"model": "metainfo.source", "pk": 17275, "fields": {"orig_filename": "Burger_Johann_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419739}}, {"model": "metainfo.source", "pk": 17276, "fields": {"orig_filename": "Burger_Leopold_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419740}}, {"model": "metainfo.source", "pk": 17277, "fields": {"orig_filename": "Burger_Max_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420639}}, {"model": "metainfo.source", "pk": 17278, "fields": {"orig_filename": "Burger_Wilhelm-J_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1420640}}, {"model": "metainfo.source", "pk": 17279, "fields": {"orig_filename": "Burghart_Hermann_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419741}}, {"model": "metainfo.source", "pk": 17280, "fields": {"orig_filename": "Burghauser_Wolfgang_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419742}}, {"model": "metainfo.source", "pk": 17281, "fields": {"orig_filename": "Burg_Adam_1797_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419732}}, {"model": "metainfo.source", "pk": 17282, "fields": {"orig_filename": "Burg_Anton_1767_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419733}}, {"model": "metainfo.source", "pk": 17283, "fields": {"orig_filename": "Burg_Ferdinand_1868_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419734}}, {"model": "metainfo.source", "pk": 17284, "fields": {"orig_filename": "Burian-Rajecz_Stefan_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419743}}, {"model": "metainfo.source", "pk": 17285, "fields": {"orig_filename": "Burits-Pournay_Johann_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129f.", "author": "", "orig_id": 1419744}}, {"model": "metainfo.source", "pk": 17286, "fields": {"orig_filename": "Burjan_Hildegard_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419745}}, {"model": "metainfo.source", "pk": 17287, "fields": {"orig_filename": "Bolyai-Bolya_Johann_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420323}}, {"model": "metainfo.source", "pk": 17288, "fields": {"orig_filename": "Bolyai-Bolya_Wolfgang_1775_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420324}}, {"model": "metainfo.source", "pk": 17289, "fields": {"orig_filename": "Bolzano_Bernhard_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100f.", "author": "", "orig_id": 1421395}}, {"model": "metainfo.source", "pk": 17290, "fields": {"orig_filename": "Bolza_Eugenie_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420325}}, {"model": "metainfo.source", "pk": 17291, "fields": {"orig_filename": "Bombelles_Karl-Albert_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420326}}, {"model": "metainfo.source", "pk": 17292, "fields": {"orig_filename": "Bombelles_Ludwig-Philipp_1780_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420327}}, {"model": "metainfo.source", "pk": 17293, "fields": {"orig_filename": "Bondi_Emanuel_1820_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1421876}}, {"model": "metainfo.source", "pk": 17294, "fields": {"orig_filename": "Bondi_Gustav_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1462462}}, {"model": "metainfo.source", "pk": 17295, "fields": {"orig_filename": "Bondy_Ottilie_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420328}}, {"model": "metainfo.source", "pk": 17296, "fields": {"orig_filename": "Bonelli_Karl_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420329}}, {"model": "metainfo.source", "pk": 17297, "fields": {"orig_filename": "Bonitz_Hermann_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101f.", "author": "", "orig_id": 1420330}}, {"model": "metainfo.source", "pk": 17298, "fields": {"orig_filename": "Bonn_Ferdinand_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1421883}}, {"model": "metainfo.source", "pk": 17299, "fields": {"orig_filename": "Boos_Franz_1753_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420331}}, {"model": "metainfo.source", "pk": 17300, "fields": {"orig_filename": "Bordoni_Antonio_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420332}}, {"model": "metainfo.source", "pk": 17301, "fields": {"orig_filename": "Boricky_Emanuel_1840_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420333}}, {"model": "metainfo.source", "pk": 17302, "fields": {"orig_filename": "Borkowski_Karl_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1421644}}, {"model": "metainfo.source", "pk": 17303, "fields": {"orig_filename": "Bormann_Eugen_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102f.", "author": "", "orig_id": 1421732}}, {"model": "metainfo.source", "pk": 17304, "fields": {"orig_filename": "Borochow_Leo_1881_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420336}}, {"model": "metainfo.source", "pk": 17305, "fields": {"orig_filename": "Boroevic-Bojna_Svetozar_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1421736}}, {"model": "metainfo.source", "pk": 17306, "fields": {"orig_filename": "Borsos_Josef_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420337}}, {"model": "metainfo.source", "pk": 17307, "fields": {"orig_filename": "Bor_Jan_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2059532}}, {"model": "metainfo.source", "pk": 17308, "fields": {"orig_filename": "Boschek_Anna_1874_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1416154}}, {"model": "metainfo.source", "pk": 17309, "fields": {"orig_filename": "Boschetti_Viktor_1871_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1422136}}, {"model": "metainfo.source", "pk": 17310, "fields": {"orig_filename": "Bosetti_Hermine_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420338}}, {"model": "metainfo.source", "pk": 17311, "fields": {"orig_filename": "Bosshart-Demergel_Marie_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1422141}}, {"model": "metainfo.source", "pk": 17312, "fields": {"orig_filename": "Bossler_Marie_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103f.", "author": "", "orig_id": 1420725}}, {"model": "metainfo.source", "pk": 17313, "fields": {"orig_filename": "Botgorschek_Karoline_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420339}}, {"model": "metainfo.source", "pk": 17314, "fields": {"orig_filename": "Botic_Luka_1830_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420729}}, {"model": "metainfo.source", "pk": 17315, "fields": {"orig_filename": "Botstiber_Hugo_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420727}}, {"model": "metainfo.source", "pk": 17316, "fields": {"orig_filename": "Boue_Ami_1794_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420393}}, {"model": "metainfo.source", "pk": 17317, "fields": {"orig_filename": "Bourguignon-Baumberg_Anton_1766_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420394}}, {"model": "metainfo.source", "pk": 17318, "fields": {"orig_filename": "Bowitsch_Ludwig_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420395}}, {"model": "metainfo.source", "pk": 17319, "fields": {"orig_filename": "Boxberg_Ernst_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420396}}, {"model": "metainfo.source", "pk": 17320, "fields": {"orig_filename": "Bozdech_Emanuel_1841_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420397}}, {"model": "metainfo.source", "pk": 17321, "fields": {"orig_filename": "Bozek_Josef_1782_1835.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1910665}}, {"model": "metainfo.source", "pk": 17322, "fields": {"orig_filename": "Bozek_Romuald_1814_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1461303}}, {"model": "metainfo.source", "pk": 17323, "fields": {"orig_filename": "Brabee_Ewald_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104f.", "author": "", "orig_id": 1420819}}, {"model": "metainfo.source", "pk": 17324, "fields": {"orig_filename": "Brachelli_Hugo-Franz_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420398}}, {"model": "metainfo.source", "pk": 17325, "fields": {"orig_filename": "Bradaczek_Max_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420399}}, {"model": "metainfo.source", "pk": 17326, "fields": {"orig_filename": "Bradsky_Wenzel-Theodor_1833_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420400}}, {"model": "metainfo.source", "pk": 17327, "fields": {"orig_filename": "Brady_Thomas_1752_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420401}}, {"model": "metainfo.source", "pk": 17328, "fields": {"orig_filename": "Braf_Albin_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420402}}, {"model": "metainfo.source", "pk": 17329, "fields": {"orig_filename": "Brahms_Johannes_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105f.", "author": "", "orig_id": 1420403}}, {"model": "metainfo.source", "pk": 17330, "fields": {"orig_filename": "Brakl_Franz-Josef_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106", "author": "", "orig_id": 1420404}}, {"model": "metainfo.source", "pk": 17331, "fields": {"orig_filename": "Brandeis_Friedrich_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106f.", "author": "", "orig_id": 1420405}}, {"model": "metainfo.source", "pk": 17332, "fields": {"orig_filename": "Brandis_Clemens-Franz_1798_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420406}}, {"model": "metainfo.source", "pk": 17333, "fields": {"orig_filename": "Brandis_Otto_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420407}}, {"model": "metainfo.source", "pk": 17334, "fields": {"orig_filename": "Brandl_Alois_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420408}}, {"model": "metainfo.source", "pk": 17335, "fields": {"orig_filename": "Brandl_Leopold_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1405543}}, {"model": "metainfo.source", "pk": 17336, "fields": {"orig_filename": "Brandl_Vinzenz_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420409}}, {"model": "metainfo.source", "pk": 17337, "fields": {"orig_filename": "Brandner_Konrad_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419872}}, {"model": "metainfo.source", "pk": 17338, "fields": {"orig_filename": "Brandstetter_Hans_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1411019}}, {"model": "metainfo.source", "pk": 17339, "fields": {"orig_filename": "Brandt_Marianne_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107f.", "author": "", "orig_id": 1420411}}, {"model": "metainfo.source", "pk": 17340, "fields": {"orig_filename": "Brand_Michael_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106", "author": "", "orig_id": 1419868}}, {"model": "metainfo.source", "pk": 17341, "fields": {"orig_filename": "Brassloff_Stephan_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1888623}}, {"model": "metainfo.source", "pk": 17342, "fields": {"orig_filename": "Brauer_Friedrich-Moritz_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420412}}, {"model": "metainfo.source", "pk": 17343, "fields": {"orig_filename": "Braumueller_Wilhelm_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420413}}, {"model": "metainfo.source", "pk": 17344, "fields": {"orig_filename": "Braun-Braunthal_Karl-Johann_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108f.", "author": "", "orig_id": 1420468}}, {"model": "metainfo.source", "pk": 17345, "fields": {"orig_filename": "Braun-Fernwald_Karl_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420469}}, {"model": "metainfo.source", "pk": 17346, "fields": {"orig_filename": "Brauner_Franz-August_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420471}}, {"model": "metainfo.source", "pk": 17347, "fields": {"orig_filename": "Braune_Franz-Anton_1766_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420470}}, {"model": "metainfo.source", "pk": 17348, "fields": {"orig_filename": "Braunhofer_Anton-Georg_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162336}}, {"model": "metainfo.source", "pk": 17349, "fields": {"orig_filename": "Braun_Adolph_1819_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420414}}, {"model": "metainfo.source", "pk": 17350, "fields": {"orig_filename": "Braun_Gustav_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420415}}, {"model": "metainfo.source", "pk": 17351, "fields": {"orig_filename": "Braun_Ludwig_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419952}}, {"model": "metainfo.source", "pk": 17352, "fields": {"orig_filename": "Braun_Peter_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420466}}, {"model": "metainfo.source", "pk": 17353, "fields": {"orig_filename": "Braun_Theodor_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420467}}, {"model": "metainfo.source", "pk": 17354, "fields": {"orig_filename": "Brausewetter_Viktor_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420472}}, {"model": "metainfo.source", "pk": 17355, "fields": {"orig_filename": "Brdlik_Karl_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420473}}, {"model": "metainfo.source", "pk": 17356, "fields": {"orig_filename": "Brecht_Walther_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109f.", "author": "", "orig_id": 1420474}}, {"model": "metainfo.source", "pk": 17357, "fields": {"orig_filename": "Breden_Christiane_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420476}}, {"model": "metainfo.source", "pk": 17358, "fields": {"orig_filename": "Brede_Auguste_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420475}}, {"model": "metainfo.source", "pk": 17359, "fields": {"orig_filename": "Bree_Malvine_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420477}}, {"model": "metainfo.source", "pk": 17360, "fields": {"orig_filename": "Breidler_Johann_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2058108}}, {"model": "metainfo.source", "pk": 17361, "fields": {"orig_filename": "Breidwieser_Theodor_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420478}}, {"model": "metainfo.source", "pk": 17362, "fields": {"orig_filename": "Breisach_Wilhelm_1812_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420479}}, {"model": "metainfo.source", "pk": 17363, "fields": {"orig_filename": "Breisky_August_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420480}}, {"model": "metainfo.source", "pk": 17364, "fields": {"orig_filename": "Breisky_Walter_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110f.", "author": "", "orig_id": 1420481}}, {"model": "metainfo.source", "pk": 17365, "fields": {"orig_filename": "Breitenlohner_Jakob_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420483}}, {"model": "metainfo.source", "pk": 17366, "fields": {"orig_filename": "Breithaupt_Wilhelm_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420484}}, {"model": "metainfo.source", "pk": 17367, "fields": {"orig_filename": "Breitner_Anton_1858_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420485}}, {"model": "metainfo.source", "pk": 17368, "fields": {"orig_filename": "Breitner_Hugo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420486}}, {"model": "metainfo.source", "pk": 17369, "fields": {"orig_filename": "Breitner_Josef_1864_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1421080}}, {"model": "metainfo.source", "pk": 17370, "fields": {"orig_filename": "Breit_Franz_1827_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420482}}, {"model": "metainfo.source", "pk": 17371, "fields": {"orig_filename": "Brejc_Janko_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2156144}}, {"model": "metainfo.source", "pk": 17372, "fields": {"orig_filename": "Brell_Heinrich_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111f.", "author": "", "orig_id": 1420487}}, {"model": "metainfo.source", "pk": 17373, "fields": {"orig_filename": "Bremser_Johann_1767_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420488}}, {"model": "metainfo.source", "pk": 17374, "fields": {"orig_filename": "Brenek_Anton_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420118}}, {"model": "metainfo.source", "pk": 17375, "fields": {"orig_filename": "Brenner-Felsach_Ignaz_1772_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420538}}, {"model": "metainfo.source", "pk": 17376, "fields": {"orig_filename": "Brenner_Adam_1800_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420490}}, {"model": "metainfo.source", "pk": 17377, "fields": {"orig_filename": "Brenner_Anton_1896_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444231}}, {"model": "metainfo.source", "pk": 17378, "fields": {"orig_filename": "Brentano_Franz_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420539}}, {"model": "metainfo.source", "pk": 17379, "fields": {"orig_filename": "Bresadola_Giacomo_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2), S. 112f.", "author": "", "orig_id": 1895501}}, {"model": "metainfo.source", "pk": 17380, "fields": {"orig_filename": "Brestel_Rudolf_1816_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420541}}, {"model": "metainfo.source", "pk": 17381, "fields": {"orig_filename": "Bretholz_Berthold_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420542}}, {"model": "metainfo.source", "pk": 17382, "fields": {"orig_filename": "Bretschneider_Artur_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1464994}}, {"model": "metainfo.source", "pk": 17383, "fields": {"orig_filename": "Bretschneider_Friedrich_1770_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420543}}, {"model": "metainfo.source", "pk": 17384, "fields": {"orig_filename": "Brettauer_Josef_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420544}}, {"model": "metainfo.source", "pk": 17385, "fields": {"orig_filename": "Breuer_Georg_1907_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2057464}}, {"model": "metainfo.source", "pk": 17386, "fields": {"orig_filename": "Breuer_Josef_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113f.", "author": "", "orig_id": 1420545}}, {"model": "metainfo.source", "pk": 17387, "fields": {"orig_filename": "Breuer_Katharina_1883_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1469458}}, {"model": "metainfo.source", "pk": 17388, "fields": {"orig_filename": "Brevillier_Ludwig_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420546}}, {"model": "metainfo.source", "pk": 17389, "fields": {"orig_filename": "Breymann_Karl_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420547}}, {"model": "metainfo.source", "pk": 17390, "fields": {"orig_filename": "Brezina_Otokar_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420548}}, {"model": "metainfo.source", "pk": 17391, "fields": {"orig_filename": "Bischof_Marie_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420160}}, {"model": "metainfo.source", "pk": 17392, "fields": {"orig_filename": "Bissingen-Nippenburg_Ferdinand-Ernst-Maria_1749_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420163}}, {"model": "metainfo.source", "pk": 17393, "fields": {"orig_filename": "Bitterl-Tessenberg_Maximilian_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420162}}, {"model": "metainfo.source", "pk": 17394, "fields": {"orig_filename": "Bitterlich_Eduard_1833_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420161}}, {"model": "metainfo.source", "pk": 17395, "fields": {"orig_filename": "Bitterlich_Hans_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419464}}, {"model": "metainfo.source", "pk": 17396, "fields": {"orig_filename": "Bittner_Adam_1777_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420164}}, {"model": "metainfo.source", "pk": 17397, "fields": {"orig_filename": "Bittner_Alexander_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420165}}, {"model": "metainfo.source", "pk": 17398, "fields": {"orig_filename": "Bittner_Anton_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419465}}, {"model": "metainfo.source", "pk": 17399, "fields": {"orig_filename": "Bittner_Franz_1867_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88f.", "author": "", "orig_id": 1420166}}, {"model": "metainfo.source", "pk": 17400, "fields": {"orig_filename": "Bittner_Josef_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162607}}, {"model": "metainfo.source", "pk": 17401, "fields": {"orig_filename": "Bittner_Julius_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1419467}}, {"model": "metainfo.source", "pk": 17402, "fields": {"orig_filename": "Bittner_Karl_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1419468}}, {"model": "metainfo.source", "pk": 17403, "fields": {"orig_filename": "Bittner_Ludwig_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1420167}}, {"model": "metainfo.source", "pk": 17404, "fields": {"orig_filename": "Bittner_Maximilian_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89f.", "author": "", "orig_id": 1420168}}, {"model": "metainfo.source", "pk": 17405, "fields": {"orig_filename": "Bizonfy_Franz_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1419570}}, {"model": "metainfo.source", "pk": 17406, "fields": {"orig_filename": "Bizzarro_Paolo_1813_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420169}}, {"model": "metainfo.source", "pk": 17407, "fields": {"orig_filename": "Bjelik_Emmerich_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1418174}}, {"model": "metainfo.source", "pk": 17408, "fields": {"orig_filename": "Blaas_Eugen_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420170}}, {"model": "metainfo.source", "pk": 17409, "fields": {"orig_filename": "Blaas_Josef_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1418177}}, {"model": "metainfo.source", "pk": 17410, "fields": {"orig_filename": "Blaas_Julius_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420171}}, {"model": "metainfo.source", "pk": 17411, "fields": {"orig_filename": "Blaas_Karl_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90f.", "author": "", "orig_id": 1418178}}, {"model": "metainfo.source", "pk": 17412, "fields": {"orig_filename": "Blagoevich_Emmerich_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420172}}, {"model": "metainfo.source", "pk": 17413, "fields": {"orig_filename": "Blahak_Josef_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420174}}, {"model": "metainfo.source", "pk": 17414, "fields": {"orig_filename": "Blaha_Luise_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420173}}, {"model": "metainfo.source", "pk": 17415, "fields": {"orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418730}}, {"model": "metainfo.source", "pk": 17416, "fields": {"orig_filename": "Blamauer_Adolf-Albin_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418732}}, {"model": "metainfo.source", "pk": 17417, "fields": {"orig_filename": "Blank_Johann-Konrad_1757_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418812}}, {"model": "metainfo.source", "pk": 17418, "fields": {"orig_filename": "Blaschke-Zwernikkirchen_Philipp_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420175}}, {"model": "metainfo.source", "pk": 17419, "fields": {"orig_filename": "Blasel_Karl_1831_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91f.", "author": "", "orig_id": 1418733}}, {"model": "metainfo.source", "pk": 17420, "fields": {"orig_filename": "Blaskovics_Johann_1777_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420230}}, {"model": "metainfo.source", "pk": 17421, "fields": {"orig_filename": "Blathy_Otto-Titusz_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1426353}}, {"model": "metainfo.source", "pk": 17422, "fields": {"orig_filename": "Blattl_Christian_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1419232}}, {"model": "metainfo.source", "pk": 17423, "fields": {"orig_filename": "Blau_Tina_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419235}}, {"model": "metainfo.source", "pk": 17424, "fields": {"orig_filename": "Blau_Marietta_1894_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436882}}, {"model": "metainfo.source", "pk": 17425, "fields": {"orig_filename": "Blazekovic_Karl_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420232}}, {"model": "metainfo.source", "pk": 17426, "fields": {"orig_filename": "Blechner_Heinrich_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420233}}, {"model": "metainfo.source", "pk": 17427, "fields": {"orig_filename": "Blechschmidt_Anton_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92f.", "author": "", "orig_id": 1420234}}, {"model": "metainfo.source", "pk": 17428, "fields": {"orig_filename": "Bleckmann_Johann-Heinrich_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1419240}}, {"model": "metainfo.source", "pk": 17429, "fields": {"orig_filename": "Bleibtreu_Sigismund_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1420235}}, {"model": "metainfo.source", "pk": 17430, "fields": {"orig_filename": "Bleiweis-Trsteniski_Janez_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1419244}}, {"model": "metainfo.source", "pk": 17431, "fields": {"orig_filename": "Bleiweis-Trsteniski_Karel_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2191999}}, {"model": "metainfo.source", "pk": 17432, "fields": {"orig_filename": "Bleyer_Jakob_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419245}}, {"model": "metainfo.source", "pk": 17433, "fields": {"orig_filename": "Bliemetzrieder_Placidus-Franz_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1420236}}, {"model": "metainfo.source", "pk": 17434, "fields": {"orig_filename": "Bloch_Chajim_1881_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444933}}, {"model": "metainfo.source", "pk": 17435, "fields": {"orig_filename": "Blodek_Wilhelm_1834_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93f.", "author": "", "orig_id": 1419317}}, {"model": "metainfo.source", "pk": 17436, "fields": {"orig_filename": "Blodig_Hermann_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420237}}, {"model": "metainfo.source", "pk": 17437, "fields": {"orig_filename": "Blome_Gustav_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1419321}}, {"model": "metainfo.source", "pk": 17438, "fields": {"orig_filename": "Bluemelhuber_Michael_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1419323}}, {"model": "metainfo.source", "pk": 17439, "fields": {"orig_filename": "Bluemel_Franz_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1405518}}, {"model": "metainfo.source", "pk": 17440, "fields": {"orig_filename": "Blumberger_Friedrich_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420238}}, {"model": "metainfo.source", "pk": 17441, "fields": {"orig_filename": "Blumenbach-Wabruschek_Wenzel-Karl-Wolfgang_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1418840}}, {"model": "metainfo.source", "pk": 17442, "fields": {"orig_filename": "Blumenthal_Josef_1782_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420240}}, {"model": "metainfo.source", "pk": 17443, "fields": {"orig_filename": "Blume_Ludwig_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420239}}, {"model": "metainfo.source", "pk": 17444, "fields": {"orig_filename": "Bobek_Hans_1903_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444215}}, {"model": "metainfo.source", "pk": 17445, "fields": {"orig_filename": "Bobies_Carl-August_1898_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2164739}}, {"model": "metainfo.source", "pk": 17446, "fields": {"orig_filename": "Bobies_Franz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420241}}, {"model": "metainfo.source", "pk": 17447, "fields": {"orig_filename": "Bobrzynski_Michael_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1419022}}, {"model": "metainfo.source", "pk": 17448, "fields": {"orig_filename": "Bockenheimer-Bockenheim_Franz_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420242}}, {"model": "metainfo.source", "pk": 17449, "fields": {"orig_filename": "Bocklet_Karl-Maria_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420243}}, {"model": "metainfo.source", "pk": 17450, "fields": {"orig_filename": "Bock_Emil_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1418686}}, {"model": "metainfo.source", "pk": 17451, "fields": {"orig_filename": "Boczek_Anton_1802_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1419107}}, {"model": "metainfo.source", "pk": 17452, "fields": {"orig_filename": "Bodemer_Jakob_1777_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420244}}, {"model": "metainfo.source", "pk": 17453, "fields": {"orig_filename": "Bodingbauer_Karl_1903_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1417456}}, {"model": "metainfo.source", "pk": 17454, "fields": {"orig_filename": "Boeck_Rupert_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420245}}, {"model": "metainfo.source", "pk": 17455, "fields": {"orig_filename": "Boeheim_Wendelin_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95f.", "author": "", "orig_id": 1420246}}, {"model": "metainfo.source", "pk": 17456, "fields": {"orig_filename": "Boehler_Albert_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417546}}, {"model": "metainfo.source", "pk": 17457, "fields": {"orig_filename": "Boehler_Friedrich_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420247}}, {"model": "metainfo.source", "pk": 17458, "fields": {"orig_filename": "Boehm-Bawerk_Eugen_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417379}}, {"model": "metainfo.source", "pk": 17459, "fields": {"orig_filename": "Boehm-Boehmersheim_August_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417458}}, {"model": "metainfo.source", "pk": 17460, "fields": {"orig_filename": "Boehm-Boehmersheim_Karl_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417463}}, {"model": "metainfo.source", "pk": 17461, "fields": {"orig_filename": "Boehm-Ermolli_Eduard_1856_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97f.", "author": "", "orig_id": 1417473}}, {"model": "metainfo.source", "pk": 17462, "fields": {"orig_filename": "Boehmerle_Emil_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2267399}}, {"model": "metainfo.source", "pk": 17463, "fields": {"orig_filename": "Boehmerle_Karl_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2267403}}, {"model": "metainfo.source", "pk": 17464, "fields": {"orig_filename": "Boehm_Camillo_1828_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417636}}, {"model": "metainfo.source", "pk": 17465, "fields": {"orig_filename": "Boehm_Johann_1774_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420248}}, {"model": "metainfo.source", "pk": 17466, "fields": {"orig_filename": "Boehm_Josef-Georg_1807_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417890}}, {"model": "metainfo.source", "pk": 17467, "fields": {"orig_filename": "Boehm_Josef_1841_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420250}}, {"model": "metainfo.source", "pk": 17468, "fields": {"orig_filename": "Boehm_Joseph-Anton_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417724}}, {"model": "metainfo.source", "pk": 17469, "fields": {"orig_filename": "Boehm_Joseph-Daniel_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420251}}, {"model": "metainfo.source", "pk": 17470, "fields": {"orig_filename": "Boehm_Joseph_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420249}}, {"model": "metainfo.source", "pk": 17471, "fields": {"orig_filename": "Boehm_Karl_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1420253}}, {"model": "metainfo.source", "pk": 17472, "fields": {"orig_filename": "Boehm_Sir-Joseph-Edgar_1834_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420252}}, {"model": "metainfo.source", "pk": 17473, "fields": {"orig_filename": "Boeriu-Polichna_Johann_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420255}}, {"model": "metainfo.source", "pk": 17474, "fields": {"orig_filename": "Boer_Johann-Lukas_1751_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420254}}, {"model": "metainfo.source", "pk": 17475, "fields": {"orig_filename": "Boesendorfer_Ignaz_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420315}}, {"model": "metainfo.source", "pk": 17476, "fields": {"orig_filename": "Boesendorfer_Ludwig_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1417832}}, {"model": "metainfo.source", "pk": 17477, "fields": {"orig_filename": "Bogdan-Sturmbruck_Josef_1769_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420316}}, {"model": "metainfo.source", "pk": 17478, "fields": {"orig_filename": "Bogensberger_Gustav_1838_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420317}}, {"model": "metainfo.source", "pk": 17479, "fields": {"orig_filename": "Bogisic_Valtazar_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420318}}, {"model": "metainfo.source", "pk": 17480, "fields": {"orig_filename": "Bognar_Friederike_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417400}}, {"model": "metainfo.source", "pk": 17481, "fields": {"orig_filename": "Bogovic_Mirko_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417404}}, {"model": "metainfo.source", "pk": 17482, "fields": {"orig_filename": "Boguslawski_Adalbert_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1420319}}, {"model": "metainfo.source", "pk": 17483, "fields": {"orig_filename": "Bohatsch_Ottokar-Zdenko_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1994039}}, {"model": "metainfo.source", "pk": 17484, "fields": {"orig_filename": "Bohdal_Anton-Matthaeus_1900_2008.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193599}}, {"model": "metainfo.source", "pk": 17485, "fields": {"orig_filename": "Bohdal_Matthaeus_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162616}}, {"model": "metainfo.source", "pk": 17486, "fields": {"orig_filename": "Bohrmann_Marianne_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417045}}, {"model": "metainfo.source", "pk": 17487, "fields": {"orig_filename": "Bohr_Oskar_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1418144}}, {"model": "metainfo.source", "pk": 17488, "fields": {"orig_filename": "Bohutinsky_Anton_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2056777}}, {"model": "metainfo.source", "pk": 17489, "fields": {"orig_filename": "Bojer_Wenzlaus_1797_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420320}}, {"model": "metainfo.source", "pk": 17490, "fields": {"orig_filename": "Bojko_Jakob_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1420321}}, {"model": "metainfo.source", "pk": 17491, "fields": {"orig_filename": "Bolfras_Arthur_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417128}}, {"model": "metainfo.source", "pk": 17492, "fields": {"orig_filename": "Boller_Anton_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420322}}, {"model": "metainfo.source", "pk": 17493, "fields": {"orig_filename": "Boltzmann_Ludwig_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1411332}}, {"model": "metainfo.source", "pk": 17494, "fields": {"orig_filename": "Bernard_Hans_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419993}}, {"model": "metainfo.source", "pk": 17495, "fields": {"orig_filename": "Bernard_Karl-Ambros_1808_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418954}}, {"model": "metainfo.source", "pk": 17496, "fields": {"orig_filename": "Bernard_Karl-Josef_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419994}}, {"model": "metainfo.source", "pk": 17497, "fields": {"orig_filename": "Bernatzik_Edmund_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75f.", "author": "", "orig_id": 1419030}}, {"model": "metainfo.source", "pk": 17498, "fields": {"orig_filename": "Bernatzik_Wenzel_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419034}}, {"model": "metainfo.source", "pk": 17499, "fields": {"orig_filename": "Bernatzik_Wilhelm_1853_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419037}}, {"model": "metainfo.source", "pk": 17500, "fields": {"orig_filename": "Bernay-Favancourt_Julius-Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419995}}, {"model": "metainfo.source", "pk": 17501, "fields": {"orig_filename": "Bernbrunn_Karl_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419113}}, {"model": "metainfo.source", "pk": 17502, "fields": {"orig_filename": "Berndl_Florian_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419278}}, {"model": "metainfo.source", "pk": 17503, "fields": {"orig_filename": "Bernheimer_Stefan_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419539}}, {"model": "metainfo.source", "pk": 17504, "fields": {"orig_filename": "Bernheimer_Walter-Ernst_1892_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419996}}, {"model": "metainfo.source", "pk": 17505, "fields": {"orig_filename": "Bernstein-Porges_Elsa_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419542}}, {"model": "metainfo.source", "pk": 17506, "fields": {"orig_filename": "Bernstein_Heinrich_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76f.", "author": "", "orig_id": 1419997}}, {"model": "metainfo.source", "pk": 17507, "fields": {"orig_filename": "Bernt_Ferdinand_1876_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419545}}, {"model": "metainfo.source", "pk": 17508, "fields": {"orig_filename": "Bernt_Johann-Josef_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419998}}, {"model": "metainfo.source", "pk": 17509, "fields": {"orig_filename": "Berres-Perez_Joseph_1821_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419548}}, {"model": "metainfo.source", "pk": 17510, "fields": {"orig_filename": "Berres_Josef_1796_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419999}}, {"model": "metainfo.source", "pk": 17511, "fields": {"orig_filename": "Bersina-Siegenthal_Heinrich_1762_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1420000}}, {"model": "metainfo.source", "pk": 17512, "fields": {"orig_filename": "Bertalanffy_Ludwig_1901_1972.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444456}}, {"model": "metainfo.source", "pk": 17513, "fields": {"orig_filename": "Bertalan_Arpad_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1420001}}, {"model": "metainfo.source", "pk": 17514, "fields": {"orig_filename": "Berte_Heinrich_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1405372}}, {"model": "metainfo.source", "pk": 17515, "fields": {"orig_filename": "Bertha_Hans_1901_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444457}}, {"model": "metainfo.source", "pk": 17516, "fields": {"orig_filename": "Berwerth_Friedrich-Martin_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77f.", "author": "", "orig_id": 1418518}}, {"model": "metainfo.source", "pk": 17517, "fields": {"orig_filename": "Berzeviczy-Berzevicze-Kakas-Lomnitz_Albert_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420002}}, {"model": "metainfo.source", "pk": 17518, "fields": {"orig_filename": "Berzeviczy_Albert_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420003}}, {"model": "metainfo.source", "pk": 17519, "fields": {"orig_filename": "Besan_Karl_1773_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420004}}, {"model": "metainfo.source", "pk": 17520, "fields": {"orig_filename": "Beschorner_Alexander-Markus_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420005}}, {"model": "metainfo.source", "pk": 17521, "fields": {"orig_filename": "Besel_Guido_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1418523}}, {"model": "metainfo.source", "pk": 17522, "fields": {"orig_filename": "Beskiba_Josef_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420006}}, {"model": "metainfo.source", "pk": 17523, "fields": {"orig_filename": "Beth_Marianne_1890_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443429}}, {"model": "metainfo.source", "pk": 17524, "fields": {"orig_filename": "Bettauer_Hugo_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1418529}}, {"model": "metainfo.source", "pk": 17525, "fields": {"orig_filename": "Bettelheim-Gabillon_Helene_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418605}}, {"model": "metainfo.source", "pk": 17526, "fields": {"orig_filename": "Bettelheim_Bruno_1903_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443434}}, {"model": "metainfo.source", "pk": 17527, "fields": {"orig_filename": "Bettelheim_Jakob_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418604}}, {"model": "metainfo.source", "pk": 17528, "fields": {"orig_filename": "Bettelheim_Karoline_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1420007}}, {"model": "metainfo.source", "pk": 17529, "fields": {"orig_filename": "Beurle_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418607}}, {"model": "metainfo.source", "pk": 17530, "fields": {"orig_filename": "Beust_Friedrich-Ferdinand_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79f.", "author": "", "orig_id": 1418609}}, {"model": "metainfo.source", "pk": 17531, "fields": {"orig_filename": "Beust_Friedrich-Konstantin_1806_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420009}}, {"model": "metainfo.source", "pk": 17532, "fields": {"orig_filename": "Beyer_Johann_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420011}}, {"model": "metainfo.source", "pk": 17533, "fields": {"orig_filename": "Beyer_Josef_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1418613}}, {"model": "metainfo.source", "pk": 17534, "fields": {"orig_filename": "Beyer_Rudolf_1810_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420012}}, {"model": "metainfo.source", "pk": 17535, "fields": {"orig_filename": "Beyfuss_Hermann_1857_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420075}}, {"model": "metainfo.source", "pk": 17536, "fields": {"orig_filename": "Beykow_Johann-Maria_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420076}}, {"model": "metainfo.source", "pk": 17537, "fields": {"orig_filename": "Beysteiner_Elisabeth_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1418618}}, {"model": "metainfo.source", "pk": 17538, "fields": {"orig_filename": "Bezecny_Josef_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420078}}, {"model": "metainfo.source", "pk": 17539, "fields": {"orig_filename": "Bianchi_Friedrich_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1419867}}, {"model": "metainfo.source", "pk": 17540, "fields": {"orig_filename": "Bianchi_Vinzenz-Ferrerius-Friedrich_1768_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420079}}, {"model": "metainfo.source", "pk": 17541, "fields": {"orig_filename": "Biankini_Juraj_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420080}}, {"model": "metainfo.source", "pk": 17542, "fields": {"orig_filename": "Bibl_Andreas_1797_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420081}}, {"model": "metainfo.source", "pk": 17543, "fields": {"orig_filename": "Bibl_Rudolf_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420082}}, {"model": "metainfo.source", "pk": 17544, "fields": {"orig_filename": "Bibl_Viktor_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1418961}}, {"model": "metainfo.source", "pk": 17545, "fields": {"orig_filename": "Bickell_Gustav_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1418971}}, {"model": "metainfo.source", "pk": 17546, "fields": {"orig_filename": "Bick_Josef_1880_1952.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1428751}}, {"model": "metainfo.source", "pk": 17547, "fields": {"orig_filename": "Bidlo_Jaroslav_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81f.", "author": "", "orig_id": 1420083}}, {"model": "metainfo.source", "pk": 17548, "fields": {"orig_filename": "Bidschof_Friedrich_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1912351}}, {"model": "metainfo.source", "pk": 17549, "fields": {"orig_filename": "Bieber_Friedrich-Julius_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1418973}}, {"model": "metainfo.source", "pk": 17550, "fields": {"orig_filename": "Bieber_Karl-Augustinus_1903_1996.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1418972}}, {"model": "metainfo.source", "pk": 17551, "fields": {"orig_filename": "Biebl_Rudolf_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420084}}, {"model": "metainfo.source", "pk": 17552, "fields": {"orig_filename": "Biedermann_Felix_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420085}}, {"model": "metainfo.source", "pk": 17553, "fields": {"orig_filename": "Biedermann_Hermann-Ignaz_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420086}}, {"model": "metainfo.source", "pk": 17554, "fields": {"orig_filename": "Biedermann_Johann-Baptist_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420087}}, {"model": "metainfo.source", "pk": 17555, "fields": {"orig_filename": "Biegeleben_Ludwig-Maximilian_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82f.", "author": "", "orig_id": 1419048}}, {"model": "metainfo.source", "pk": 17556, "fields": {"orig_filename": "Biela_Wilhelm_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419053}}, {"model": "metainfo.source", "pk": 17557, "fields": {"orig_filename": "Bielohlawek_Hermann_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419054}}, {"model": "metainfo.source", "pk": 17558, "fields": {"orig_filename": "Bielz_Eduard-Albrecht_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419056}}, {"model": "metainfo.source", "pk": 17559, "fields": {"orig_filename": "Bielz_Michael_1787_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419057}}, {"model": "metainfo.source", "pk": 17560, "fields": {"orig_filename": "Bienefeld-Loewenkron_Wilhelm_1776_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1420088}}, {"model": "metainfo.source", "pk": 17561, "fields": {"orig_filename": "Bienenfeld_Elsa_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1414897}}, {"model": "metainfo.source", "pk": 17562, "fields": {"orig_filename": "Bienenstein_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419061}}, {"model": "metainfo.source", "pk": 17563, "fields": {"orig_filename": "Bienerth-Schmerling_Richard_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83f.", "author": "", "orig_id": 1419065}}, {"model": "metainfo.source", "pk": 17564, "fields": {"orig_filename": "Bierbaum_Matthias_1916_1995.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1445960}}, {"model": "metainfo.source", "pk": 17565, "fields": {"orig_filename": "Biermann_Otto_1858_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1420089}}, {"model": "metainfo.source", "pk": 17566, "fields": {"orig_filename": "Bignio_Louis_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419138}}, {"model": "metainfo.source", "pk": 17567, "fields": {"orig_filename": "Bigot-Saint-Quentin_Karl_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419139}}, {"model": "metainfo.source", "pk": 17568, "fields": {"orig_filename": "Bilek_Franz_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419144}}, {"model": "metainfo.source", "pk": 17569, "fields": {"orig_filename": "Bilgeri_Georg_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419147}}, {"model": "metainfo.source", "pk": 17570, "fields": {"orig_filename": "Bilinski_Leon_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84f.", "author": "", "orig_id": 1405542}}, {"model": "metainfo.source", "pk": 17571, "fields": {"orig_filename": "Billroth_Theodor-Christian_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1419216}}, {"model": "metainfo.source", "pk": 17572, "fields": {"orig_filename": "Bill_Teddy_1900_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2195799}}, {"model": "metainfo.source", "pk": 17573, "fields": {"orig_filename": "Binder-Falbusch_Wilhelm_1779_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420092}}, {"model": "metainfo.source", "pk": 17574, "fields": {"orig_filename": "Binder-Kriegelstein_Franz_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85f.", "author": "", "orig_id": 1420093}}, {"model": "metainfo.source", "pk": 17575, "fields": {"orig_filename": "Binder-Kriegelstein_Friedrich_1775_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420094}}, {"model": "metainfo.source", "pk": 17576, "fields": {"orig_filename": "Binder-Kriegelstein_Karl_1869_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420151}}, {"model": "metainfo.source", "pk": 17577, "fields": {"orig_filename": "Binder_Anton_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1419225}}, {"model": "metainfo.source", "pk": 17578, "fields": {"orig_filename": "Binder_Georg-Paul_1784_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420090}}, {"model": "metainfo.source", "pk": 17579, "fields": {"orig_filename": "Binder_Joseph_1805_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420091}}, {"model": "metainfo.source", "pk": 17580, "fields": {"orig_filename": "Binder_Matthaeus-Josef_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419295}}, {"model": "metainfo.source", "pk": 17581, "fields": {"orig_filename": "Binz_Johann-Georg_1748_1824.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419299}}, {"model": "metainfo.source", "pk": 17582, "fields": {"orig_filename": "Birago_Karl_1792_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420152}}, {"model": "metainfo.source", "pk": 17583, "fields": {"orig_filename": "Birkle_Suitbert_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86f.", "author": "", "orig_id": 1420155}}, {"model": "metainfo.source", "pk": 17584, "fields": {"orig_filename": "Birk_Alfred_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419303}}, {"model": "metainfo.source", "pk": 17585, "fields": {"orig_filename": "Birk_Ernst_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420153}}, {"model": "metainfo.source", "pk": 17586, "fields": {"orig_filename": "Birk_Karl_1887_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128051}}, {"model": "metainfo.source", "pk": 17587, "fields": {"orig_filename": "Birnbaum_Ferdinand_1892_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420156}}, {"model": "metainfo.source", "pk": 17588, "fields": {"orig_filename": "Birnbaum_Nathan_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1419307}}, {"model": "metainfo.source", "pk": 17589, "fields": {"orig_filename": "Biro-Csik-Palfalva_Johann_1784_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420158}}, {"model": "metainfo.source", "pk": 17590, "fields": {"orig_filename": "Biro_Josef_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420157}}, {"model": "metainfo.source", "pk": 17591, "fields": {"orig_filename": "Bisching_Anton_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420159}}, {"model": "metainfo.source", "pk": 17592, "fields": {"orig_filename": "Bischoff-Altenstern_Ignaz-Rudolf_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419379}}, {"model": "metainfo.source", "pk": 17593, "fields": {"orig_filename": "Bischoff-Klammstein_Friedrich_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419381}}, {"model": "metainfo.source", "pk": 17594, "fields": {"orig_filename": "Bischoff_Ferdinand_1826_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1419377}}, {"model": "metainfo.source", "pk": 17595, "fields": {"orig_filename": "Beck_Max-Wladimir_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406036}}, {"model": "metainfo.source", "pk": 17596, "fields": {"orig_filename": "Beck_Wilhelm_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1421096}}, {"model": "metainfo.source", "pk": 17597, "fields": {"orig_filename": "Becsey-Volta_Stefan_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421100}}, {"model": "metainfo.source", "pk": 17598, "fields": {"orig_filename": "Becvarovsky_Anton-Felix_1754_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421101}}, {"model": "metainfo.source", "pk": 17599, "fields": {"orig_filename": "Becziczka_Ambros_1780_1861.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1406147}}, {"model": "metainfo.source", "pk": 17600, "fields": {"orig_filename": "Bedeus-Scharberg_Josef_1783_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421102}}, {"model": "metainfo.source", "pk": 17601, "fields": {"orig_filename": "Beer-Hofmann_Richard_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64", "author": "", "orig_id": 1406632}}, {"model": "metainfo.source", "pk": 17602, "fields": {"orig_filename": "Beer_Adolf_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406687}}, {"model": "metainfo.source", "pk": 17603, "fields": {"orig_filename": "Beer_Alois_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1428815}}, {"model": "metainfo.source", "pk": 17604, "fields": {"orig_filename": "Beer_Georg-Josef_1763_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63f.", "author": "", "orig_id": 1421104}}, {"model": "metainfo.source", "pk": 17605, "fields": {"orig_filename": "Beer_Max-Josef_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64", "author": "", "orig_id": 1421105}}, {"model": "metainfo.source", "pk": 17606, "fields": {"orig_filename": "Beer_Rudolf_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1406629}}, {"model": "metainfo.source", "pk": 17607, "fields": {"orig_filename": "Beer_Theodor_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1833661}}, {"model": "metainfo.source", "pk": 17608, "fields": {"orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f.", "author": "", "orig_id": 1406636}}, {"model": "metainfo.source", "pk": 17609, "fields": {"orig_filename": "Beetz_Wilhelm_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2001781}}, {"model": "metainfo.source", "pk": 17610, "fields": {"orig_filename": "Begovic_Milan_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1421106}}, {"model": "metainfo.source", "pk": 17611, "fields": {"orig_filename": "Behounek_Frantisek_1898_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443974}}, {"model": "metainfo.source", "pk": 17612, "fields": {"orig_filename": "Behrend-Brandt_Magdalena_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1421107}}, {"model": "metainfo.source", "pk": 17613, "fields": {"orig_filename": "Behrens_Peter_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162569}}, {"model": "metainfo.source", "pk": 17614, "fields": {"orig_filename": "Behsel_Anton_1781_1838.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1406981}}, {"model": "metainfo.source", "pk": 17615, "fields": {"orig_filename": "Beichl_Karl_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1406982}}, {"model": "metainfo.source", "pk": 17616, "fields": {"orig_filename": "Beidtel_Ignaz_1783_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65f.", "author": "", "orig_id": 1407798}}, {"model": "metainfo.source", "pk": 17617, "fields": {"orig_filename": "Beigel_Hugo-Georg_1897_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465168}}, {"model": "metainfo.source", "pk": 17618, "fields": {"orig_filename": "Beinl-Bienenburg_Anton_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1421108}}, {"model": "metainfo.source", "pk": 17619, "fields": {"orig_filename": "Beitzke_Hermann_1875_1953.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443982}}, {"model": "metainfo.source", "pk": 17620, "fields": {"orig_filename": "Bekessy_Imre_1887_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443986}}, {"model": "metainfo.source", "pk": 17621, "fields": {"orig_filename": "Bekk_Adolf_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1407749}}, {"model": "metainfo.source", "pk": 17622, "fields": {"orig_filename": "Belar_Albin_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1410321}}, {"model": "metainfo.source", "pk": 17623, "fields": {"orig_filename": "Belcredi_Ekbert_1816_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1421109}}, {"model": "metainfo.source", "pk": 17624, "fields": {"orig_filename": "Belcredi_Richard_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1410397}}, {"model": "metainfo.source", "pk": 17625, "fields": {"orig_filename": "Bellac_Paul_1891_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2050650}}, {"model": "metainfo.source", "pk": 17626, "fields": {"orig_filename": "Bella_Johann-Levoslav_1843_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1409574}}, {"model": "metainfo.source", "pk": 17627, "fields": {"orig_filename": "Bellegarde_Heinrich_1756_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66f.", "author": "", "orig_id": 1421110}}, {"model": "metainfo.source", "pk": 17628, "fields": {"orig_filename": "Belli_Giuseppe_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421111}}, {"model": "metainfo.source", "pk": 17629, "fields": {"orig_filename": "Bellmond-Adlerhorst_Anton_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1415060}}, {"model": "metainfo.source", "pk": 17630, "fields": {"orig_filename": "Belohlav_Josef_1882_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2006103}}, {"model": "metainfo.source", "pk": 17631, "fields": {"orig_filename": "Belrupt-Tissac_Karl_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421112}}, {"model": "metainfo.source", "pk": 17632, "fields": {"orig_filename": "Beltrami_Giovanni_1777_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421113}}, {"model": "metainfo.source", "pk": 17633, "fields": {"orig_filename": "Belzoni_Giovanni-Batt_1778_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421114}}, {"model": "metainfo.source", "pk": 17634, "fields": {"orig_filename": "Bem_Josef_1795_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1415067}}, {"model": "metainfo.source", "pk": 17635, "fields": {"orig_filename": "Benak_Franz_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421115}}, {"model": "metainfo.source", "pk": 17636, "fields": {"orig_filename": "Benatzky_Ralph_1884_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444045}}, {"model": "metainfo.source", "pk": 17637, "fields": {"orig_filename": "Benda_Gustav_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415136}}, {"model": "metainfo.source", "pk": 17638, "fields": {"orig_filename": "Bendel_Josef_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415139}}, {"model": "metainfo.source", "pk": 17639, "fields": {"orig_filename": "Bendl_Karl_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421188}}, {"model": "metainfo.source", "pk": 17640, "fields": {"orig_filename": "Benedek-Felsoe-Eoer_Ludwig_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415144}}, {"model": "metainfo.source", "pk": 17641, "fields": {"orig_filename": "Benedek_Alexander_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421190}}, {"model": "metainfo.source", "pk": 17642, "fields": {"orig_filename": "Benedetti_Thomas_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415145}}, {"model": "metainfo.source", "pk": 17643, "fields": {"orig_filename": "Benedikt_Edmund_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68f.", "author": "", "orig_id": 1415146}}, {"model": "metainfo.source", "pk": 17644, "fields": {"orig_filename": "Benedikt_Moritz_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415149}}, {"model": "metainfo.source", "pk": 17645, "fields": {"orig_filename": "Benedikt_Moritz_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415150}}, {"model": "metainfo.source", "pk": 17646, "fields": {"orig_filename": "Benedikt_Rudolf_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421191}}, {"model": "metainfo.source", "pk": 17647, "fields": {"orig_filename": "Benesch_Ladislaus_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415230}}, {"model": "metainfo.source", "pk": 17648, "fields": {"orig_filename": "Bene_Franz_1775_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421189}}, {"model": "metainfo.source", "pk": 17649, "fields": {"orig_filename": "Benigni-Mildenberg_Josef-Heinrich_1782_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421193}}, {"model": "metainfo.source", "pk": 17650, "fields": {"orig_filename": "Benigni_Siegmund_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421192}}, {"model": "metainfo.source", "pk": 17651, "fields": {"orig_filename": "Benkert_Karl-Maria_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1415237}}, {"model": "metainfo.source", "pk": 17652, "fields": {"orig_filename": "Benke_Hermann_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1990819}}, {"model": "metainfo.source", "pk": 17653, "fields": {"orig_filename": "Benkoe_Samuel_1743_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421194}}, {"model": "metainfo.source", "pk": 17654, "fields": {"orig_filename": "Benk_Johannes_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415234}}, {"model": "metainfo.source", "pk": 17655, "fields": {"orig_filename": "Benndorf_Friedrich-August-Otto_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1415241}}, {"model": "metainfo.source", "pk": 17656, "fields": {"orig_filename": "Benndorf_Hans_1870_1953.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444057}}, {"model": "metainfo.source", "pk": 17657, "fields": {"orig_filename": "Bentheim-Steinfurt_Wilhelm-Friedrich_1782_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421195}}, {"model": "metainfo.source", "pk": 17658, "fields": {"orig_filename": "Benz-Albkron_Robert-Joseph_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1428245}}, {"model": "metainfo.source", "pk": 17659, "fields": {"orig_filename": "Berchet_Giovanni_1783_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421196}}, {"model": "metainfo.source", "pk": 17660, "fields": {"orig_filename": "Berchtold-Ungarschitz_Friedrich_1781_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421197}}, {"model": "metainfo.source", "pk": 17661, "fields": {"orig_filename": "Berchtold_Leopold_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71", "author": "", "orig_id": 1413961}}, {"model": "metainfo.source", "pk": 17662, "fields": {"orig_filename": "Bercic_Ivan_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71", "author": "", "orig_id": 1421198}}, {"model": "metainfo.source", "pk": 17663, "fields": {"orig_filename": "Bergauer_Josef_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1421200}}, {"model": "metainfo.source", "pk": 17664, "fields": {"orig_filename": "Berger-Pleisse_Johann-Nepomuk_1768_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414054}}, {"model": "metainfo.source", "pk": 17665, "fields": {"orig_filename": "Berger-Stubenberg_Mathilde_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421203}}, {"model": "metainfo.source", "pk": 17666, "fields": {"orig_filename": "Berger_Alfred_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413977}}, {"model": "metainfo.source", "pk": 17667, "fields": {"orig_filename": "Berger_Alfred_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2059070}}, {"model": "metainfo.source", "pk": 17668, "fields": {"orig_filename": "Berger_Artur_1892_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444261}}, {"model": "metainfo.source", "pk": 17669, "fields": {"orig_filename": "Berger_Franz_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414050}}, {"model": "metainfo.source", "pk": 17670, "fields": {"orig_filename": "Berger_Franz_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162582}}, {"model": "metainfo.source", "pk": 17671, "fields": {"orig_filename": "Berger_Johann-Nepomuk_1816_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414057}}, {"model": "metainfo.source", "pk": 17672, "fields": {"orig_filename": "Berger_Josef_1898_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1862324}}, {"model": "metainfo.source", "pk": 17673, "fields": {"orig_filename": "Berger_Julius-Victor_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414058}}, {"model": "metainfo.source", "pk": 17674, "fields": {"orig_filename": "Berger_Rudolf_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72f.", "author": "", "orig_id": 1421201}}, {"model": "metainfo.source", "pk": 17675, "fields": {"orig_filename": "Berger_Thaddaeus_1774_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414064}}, {"model": "metainfo.source", "pk": 17676, "fields": {"orig_filename": "Berghofer_Amandus_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421204}}, {"model": "metainfo.source", "pk": 17677, "fields": {"orig_filename": "Berghold_Alexander_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421205}}, {"model": "metainfo.source", "pk": 17678, "fields": {"orig_filename": "Bergleitner_Johann_1774_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421206}}, {"model": "metainfo.source", "pk": 17679, "fields": {"orig_filename": "Bergler_Hans_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414136}}, {"model": "metainfo.source", "pk": 17680, "fields": {"orig_filename": "Bergler_Josef_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421207}}, {"model": "metainfo.source", "pk": 17681, "fields": {"orig_filename": "Bergmann_Ernst_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414137}}, {"model": "metainfo.source", "pk": 17682, "fields": {"orig_filename": "Bergmann_Hermann_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414138}}, {"model": "metainfo.source", "pk": 17683, "fields": {"orig_filename": "Bergmann_Josef_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1405613}}, {"model": "metainfo.source", "pk": 17684, "fields": {"orig_filename": "Bergmann_Josef_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1421208}}, {"model": "metainfo.source", "pk": 17685, "fields": {"orig_filename": "Bergmayr_Ignaz-Franz_1784_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1421209}}, {"model": "metainfo.source", "pk": 17686, "fields": {"orig_filename": "Bergmeister_Hermann_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414143}}, {"model": "metainfo.source", "pk": 17687, "fields": {"orig_filename": "Berg_Alban_1885_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71f.", "author": "", "orig_id": 1413964}}, {"model": "metainfo.source", "pk": 17688, "fields": {"orig_filename": "Berg_Armin_1883_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436577}}, {"model": "metainfo.source", "pk": 17689, "fields": {"orig_filename": "Berks_Marie_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414153}}, {"model": "metainfo.source", "pk": 17690, "fields": {"orig_filename": "Berla_Alois_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414221}}, {"model": "metainfo.source", "pk": 17691, "fields": {"orig_filename": "Berlepsch_Maria-Goswina_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418768}}, {"model": "metainfo.source", "pk": 17692, "fields": {"orig_filename": "Berliner_Egon_1923_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128029}}, {"model": "metainfo.source", "pk": 17693, "fields": {"orig_filename": "Bermann_Jeremias_1770_1855.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004092}}, {"model": "metainfo.source", "pk": 17694, "fields": {"orig_filename": "Bermann_Joseph_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1418864}}, {"model": "metainfo.source", "pk": 17695, "fields": {"orig_filename": "Bermann_Moritz_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418866}}, {"model": "metainfo.source", "pk": 17696, "fields": {"orig_filename": "Bermanschlaeger_Ludwig_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1421211}}, {"model": "metainfo.source", "pk": 17697, "fields": {"orig_filename": "Bernacki_Ludwig_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419992}}, {"model": "metainfo.source", "pk": 17698, "fields": {"orig_filename": "Barnay_Ludwig_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50f.", "author": "", "orig_id": 1405594}}, {"model": "metainfo.source", "pk": 17699, "fields": {"orig_filename": "Baron_Arthur_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004260}}, {"model": "metainfo.source", "pk": 17700, "fields": {"orig_filename": "Baross-Bellus_Gabor_1848_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2256297}}, {"model": "metainfo.source", "pk": 17701, "fields": {"orig_filename": "Baroti-Szabo_David_1739_1819.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1468792}}, {"model": "metainfo.source", "pk": 17702, "fields": {"orig_filename": "Barry_Alfred_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405598}}, {"model": "metainfo.source", "pk": 17703, "fields": {"orig_filename": "Barsescu_Agathe_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420995}}, {"model": "metainfo.source", "pk": 17704, "fields": {"orig_filename": "Barta_Richard_1911_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444180}}, {"model": "metainfo.source", "pk": 17705, "fields": {"orig_filename": "Barth-Barthenau_Ludwig_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405652}}, {"model": "metainfo.source", "pk": 17706, "fields": {"orig_filename": "Barth-Barthenheim_Johann-Bapt_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420997}}, {"model": "metainfo.source", "pk": 17707, "fields": {"orig_filename": "Bartholemy_Peter_1771_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420998}}, {"model": "metainfo.source", "pk": 17708, "fields": {"orig_filename": "Barth_Gustav_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420996}}, {"model": "metainfo.source", "pk": 17709, "fields": {"orig_filename": "Barth_Josef_1745_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405650}}, {"model": "metainfo.source", "pk": 17710, "fields": {"orig_filename": "Barth_Otto_1876_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1405651}}, {"model": "metainfo.source", "pk": 17711, "fields": {"orig_filename": "Bartl_Johann_1765_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420999}}, {"model": "metainfo.source", "pk": 17712, "fields": {"orig_filename": "Bartmann_Simon-Wilhelm_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51f.", "author": "", "orig_id": 1405656}}, {"model": "metainfo.source", "pk": 17713, "fields": {"orig_filename": "Bartsch_Adam-J_1757_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421000}}, {"model": "metainfo.source", "pk": 17714, "fields": {"orig_filename": "Bartsch_Friedrich-Josef-Adam_1798_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421001}}, {"model": "metainfo.source", "pk": 17715, "fields": {"orig_filename": "Barvir_Alois_1899_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444249}}, {"model": "metainfo.source", "pk": 17716, "fields": {"orig_filename": "Barvitius_Anton-Viktor_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421002}}, {"model": "metainfo.source", "pk": 17717, "fields": {"orig_filename": "Barvitius_Viktor_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405668}}, {"model": "metainfo.source", "pk": 17718, "fields": {"orig_filename": "Barwig_Franz_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405669}}, {"model": "metainfo.source", "pk": 17719, "fields": {"orig_filename": "Basaricek_Stefan_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421003}}, {"model": "metainfo.source", "pk": 17720, "fields": {"orig_filename": "Basch_Felix_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1458840}}, {"model": "metainfo.source", "pk": 17721, "fields": {"orig_filename": "Basch_Samuel_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405673}}, {"model": "metainfo.source", "pk": 17722, "fields": {"orig_filename": "Bassi_Fernando_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421004}}, {"model": "metainfo.source", "pk": 17723, "fields": {"orig_filename": "Bassi_Luigi_1776_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52f.", "author": "", "orig_id": 1421005}}, {"model": "metainfo.source", "pk": 17724, "fields": {"orig_filename": "Bast_Gerhard_1911_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1469815}}, {"model": "metainfo.source", "pk": 17725, "fields": {"orig_filename": "Bata_Thomas_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405808}}, {"model": "metainfo.source", "pk": 17726, "fields": {"orig_filename": "Batka_Richard_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405815}}, {"model": "metainfo.source", "pk": 17727, "fields": {"orig_filename": "Bato_Ludwig_1886_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2059179}}, {"model": "metainfo.source", "pk": 17728, "fields": {"orig_filename": "Batthyany-Nemetujvar_Lajos_1807_1849.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1405834}}, {"model": "metainfo.source", "pk": 17729, "fields": {"orig_filename": "Batthyany-Strattmann_Ladislaus_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1421006}}, {"model": "metainfo.source", "pk": 17730, "fields": {"orig_filename": "Batthyany_Franziska_1802_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405832}}, {"model": "metainfo.source", "pk": 17731, "fields": {"orig_filename": "Battisti_Cesare_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53f.", "author": "", "orig_id": 1405836}}, {"model": "metainfo.source", "pk": 17732, "fields": {"orig_filename": "Bauchinger_Matthaeus_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405838}}, {"model": "metainfo.source", "pk": 17733, "fields": {"orig_filename": "Baudiss_Leo_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405840}}, {"model": "metainfo.source", "pk": 17734, "fields": {"orig_filename": "Baudius_Karl-Friedrich_1796_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1421007}}, {"model": "metainfo.source", "pk": 17735, "fields": {"orig_filename": "Bauernfeld_Eduard_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56f.", "author": "", "orig_id": 1405876}}, {"model": "metainfo.source", "pk": 17736, "fields": {"orig_filename": "Bauernschmid_Karl-Eduard_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1421013}}, {"model": "metainfo.source", "pk": 17737, "fields": {"orig_filename": "Bauer_Adolf_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405844}}, {"model": "metainfo.source", "pk": 17738, "fields": {"orig_filename": "Bauer_Alexander_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405845}}, {"model": "metainfo.source", "pk": 17739, "fields": {"orig_filename": "Bauer_Anton_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54f.", "author": "", "orig_id": 1405847}}, {"model": "metainfo.source", "pk": 17740, "fields": {"orig_filename": "Bauer_Bruno_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004327}}, {"model": "metainfo.source", "pk": 17741, "fields": {"orig_filename": "Bauer_Ferdinand-Lukas_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405854}}, {"model": "metainfo.source", "pk": 17742, "fields": {"orig_filename": "Bauer_Ferdinand_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1421008}}, {"model": "metainfo.source", "pk": 17743, "fields": {"orig_filename": "Bauer_Franz-Andreas_1758_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405855}}, {"model": "metainfo.source", "pk": 17744, "fields": {"orig_filename": "Bauer_Franz-Salesius_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405856}}, {"model": "metainfo.source", "pk": 17745, "fields": {"orig_filename": "Bauer_Franz_1798_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1421009}}, {"model": "metainfo.source", "pk": 17746, "fields": {"orig_filename": "Bauer_Harald_1901_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444373}}, {"model": "metainfo.source", "pk": 17747, "fields": {"orig_filename": "Bauer_Johann_1889_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1467779}}, {"model": "metainfo.source", "pk": 17748, "fields": {"orig_filename": "Bauer_Josef_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55f.", "author": "", "orig_id": 1421010}}, {"model": "metainfo.source", "pk": 17749, "fields": {"orig_filename": "Bauer_Julius_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1421011}}, {"model": "metainfo.source", "pk": 17750, "fields": {"orig_filename": "Bauer_Leopold_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405865}}, {"model": "metainfo.source", "pk": 17751, "fields": {"orig_filename": "Bauer_Otto-Heinrich_1900_1991.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2116484}}, {"model": "metainfo.source", "pk": 17752, "fields": {"orig_filename": "Bauer_Otto_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1405869}}, {"model": "metainfo.source", "pk": 17753, "fields": {"orig_filename": "Bauer_Stefan_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1421012}}, {"model": "metainfo.source", "pk": 17754, "fields": {"orig_filename": "Baumann-Koryto_Josef_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57f.", "author": "", "orig_id": 1421015}}, {"model": "metainfo.source", "pk": 17755, "fields": {"orig_filename": "Baumann_Alexander-Moritz_1814_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405877}}, {"model": "metainfo.source", "pk": 17756, "fields": {"orig_filename": "Baumann_Friedrich_1763_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1421014}}, {"model": "metainfo.source", "pk": 17757, "fields": {"orig_filename": "Baumann_Ludwig_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405882}}, {"model": "metainfo.source", "pk": 17758, "fields": {"orig_filename": "Baumann_Oskar_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405716}}, {"model": "metainfo.source", "pk": 17759, "fields": {"orig_filename": "Baumayer_Marie_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421016}}, {"model": "metainfo.source", "pk": 17760, "fields": {"orig_filename": "Baumberg_Antonie_1859_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405717}}, {"model": "metainfo.source", "pk": 17761, "fields": {"orig_filename": "Baumfeld_Rudolf-Lothar_1903_1988.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004277}}, {"model": "metainfo.source", "pk": 17762, "fields": {"orig_filename": "Baumgarten_Amand_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405718}}, {"model": "metainfo.source", "pk": 17763, "fields": {"orig_filename": "Baumgarten_Anton_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2052596}}, {"model": "metainfo.source", "pk": 17764, "fields": {"orig_filename": "Baumgarten_Wilhelm_1885_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004165}}, {"model": "metainfo.source", "pk": 17765, "fields": {"orig_filename": "Baumgartner_Andreas_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405676}}, {"model": "metainfo.source", "pk": 17766, "fields": {"orig_filename": "Baumgartner_Karl_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421088}}, {"model": "metainfo.source", "pk": 17767, "fields": {"orig_filename": "Baumrucker-Robelswald_Josef_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421089}}, {"model": "metainfo.source", "pk": 17768, "fields": {"orig_filename": "Baumueller_Bernhard_1827_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405742}}, {"model": "metainfo.source", "pk": 17769, "fields": {"orig_filename": "Baum_Oskar_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2283471}}, {"model": "metainfo.source", "pk": 17770, "fields": {"orig_filename": "Bayer-Buerck_Marie_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406014}}, {"model": "metainfo.source", "pk": 17771, "fields": {"orig_filename": "Bayer_Franz-Rudolf_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405753}}, {"model": "metainfo.source", "pk": 17772, "fields": {"orig_filename": "Bayer_Josef-August_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406009}}, {"model": "metainfo.source", "pk": 17773, "fields": {"orig_filename": "Bayer_Josef_1827_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58f.", "author": "", "orig_id": 1406006}}, {"model": "metainfo.source", "pk": 17774, "fields": {"orig_filename": "Bayer_Josef_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1405369}}, {"model": "metainfo.source", "pk": 17775, "fields": {"orig_filename": "Bayer_Josef_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406008}}, {"model": "metainfo.source", "pk": 17776, "fields": {"orig_filename": "Bayer_Karl-Emmerich-Robert_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406012}}, {"model": "metainfo.source", "pk": 17777, "fields": {"orig_filename": "Bayer_Karl-Josef_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406011}}, {"model": "metainfo.source", "pk": 17778, "fields": {"orig_filename": "Bazzini_Antonio_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59f.", "author": "", "orig_id": 1421091}}, {"model": "metainfo.source", "pk": 17779, "fields": {"orig_filename": "Beaulieu-Marconnay_Jean-Pierre_1725_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421093}}, {"model": "metainfo.source", "pk": 17780, "fields": {"orig_filename": "Becher_Alfred-Julius_1803_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406022}}, {"model": "metainfo.source", "pk": 17781, "fields": {"orig_filename": "Becher_Siegfried_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406023}}, {"model": "metainfo.source", "pk": 17782, "fields": {"orig_filename": "Bechtold_Philipp-Christoph_1747_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421094}}, {"model": "metainfo.source", "pk": 17783, "fields": {"orig_filename": "Bechtolsheim_Anton_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406025}}, {"model": "metainfo.source", "pk": 17784, "fields": {"orig_filename": "Beck-Mannagetta-Lerchenau_Guenther_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1421097}}, {"model": "metainfo.source", "pk": 17785, "fields": {"orig_filename": "Beck-Mannagetta_Peter_1917_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1432469}}, {"model": "metainfo.source", "pk": 17786, "fields": {"orig_filename": "Beck-Rzikowsky_Friedrich_1830_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61f.", "author": "", "orig_id": 1406041}}, {"model": "metainfo.source", "pk": 17787, "fields": {"orig_filename": "Becker_Ludwig_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1421099}}, {"model": "metainfo.source", "pk": 17788, "fields": {"orig_filename": "Becker_Moritz-Alois_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1405885}}, {"model": "metainfo.source", "pk": 17789, "fields": {"orig_filename": "Becker_Paul_1910_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443740}}, {"model": "metainfo.source", "pk": 17790, "fields": {"orig_filename": "Becke_Franz-Karl_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1405675}}, {"model": "metainfo.source", "pk": 17791, "fields": {"orig_filename": "Becke_Friedrich-Johann-Karl_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1421098}}, {"model": "metainfo.source", "pk": 17792, "fields": {"orig_filename": "Beckh-Widmannstetter_Leopold_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406143}}, {"model": "metainfo.source", "pk": 17793, "fields": {"orig_filename": "Beckh-Widmanstaetten_Alois_1753_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62f.", "author": "", "orig_id": 1406142}}, {"model": "metainfo.source", "pk": 17794, "fields": {"orig_filename": "Beckmann_Friedrich_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406144}}, {"model": "metainfo.source", "pk": 17795, "fields": {"orig_filename": "Beck_Friedrich_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406028}}, {"model": "metainfo.source", "pk": 17796, "fields": {"orig_filename": "Beck_Friedrich_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421095}}, {"model": "metainfo.source", "pk": 17797, "fields": {"orig_filename": "Beck_Guido_1903_1988.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1452317}}, {"model": "metainfo.source", "pk": 17798, "fields": {"orig_filename": "Beck_Johann-Nep_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60f.", "author": "", "orig_id": 1406032}}, {"model": "metainfo.source", "pk": 17799, "fields": {"orig_filename": "Beck_Karl-Isidor_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406034}}, {"model": "metainfo.source", "pk": 17800, "fields": {"orig_filename": "Beck_Karl_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406033}}, {"model": "metainfo.source", "pk": 17801, "fields": {"orig_filename": "Augustin_Vinzenz_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416884}}, {"model": "metainfo.source", "pk": 17802, "fields": {"orig_filename": "Auinger_Mathias_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2264764}}, {"model": "metainfo.source", "pk": 17803, "fields": {"orig_filename": "Auracher-Aurach_Josef-Christian_1756_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416885}}, {"model": "metainfo.source", "pk": 17804, "fields": {"orig_filename": "Aurednickova_Anna_1873_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2167716}}, {"model": "metainfo.source", "pk": 17805, "fields": {"orig_filename": "Ausch_Karl-Michael_1893_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441859}}, {"model": "metainfo.source", "pk": 17806, "fields": {"orig_filename": "Auspitz_Heinrich_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416886}}, {"model": "metainfo.source", "pk": 17807, "fields": {"orig_filename": "Auspitz_Rudolf_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416887}}, {"model": "metainfo.source", "pk": 17808, "fields": {"orig_filename": "Ausserer_Carl_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416888}}, {"model": "metainfo.source", "pk": 17809, "fields": {"orig_filename": "Ausserer_Carl_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416889}}, {"model": "metainfo.source", "pk": 17810, "fields": {"orig_filename": "Ausserlechner_Gereon_1904_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468713}}, {"model": "metainfo.source", "pk": 17811, "fields": {"orig_filename": "Austerlitz_Friedrich_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416958}}, {"model": "metainfo.source", "pk": 17812, "fields": {"orig_filename": "Autsch_Angela_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468715}}, {"model": "metainfo.source", "pk": 17813, "fields": {"orig_filename": "Avancini_Giustiniano_1807_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416959}}, {"model": "metainfo.source", "pk": 17814, "fields": {"orig_filename": "Avanzini_Giuseppe_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416960}}, {"model": "metainfo.source", "pk": 17815, "fields": {"orig_filename": "Avanzo_Dominik_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416961}}, {"model": "metainfo.source", "pk": 17816, "fields": {"orig_filename": "Axentowicz_Theodor_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38f.", "author": "", "orig_id": 1416962}}, {"model": "metainfo.source", "pk": 17817, "fields": {"orig_filename": "Axmann_Ferdinand_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416963}}, {"model": "metainfo.source", "pk": 17818, "fields": {"orig_filename": "Axmann_Josef_1793_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416964}}, {"model": "metainfo.source", "pk": 17819, "fields": {"orig_filename": "Axmann_Julius_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416965}}, {"model": "metainfo.source", "pk": 17820, "fields": {"orig_filename": "Ayrenhoff_Cornelius-Hermann_1733_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416966}}, {"model": "metainfo.source", "pk": 17821, "fields": {"orig_filename": "Azarian_Aristakes_1782_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416967}}, {"model": "metainfo.source", "pk": 17822, "fields": {"orig_filename": "Azbe_Anton_1862_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416968}}, {"model": "metainfo.source", "pk": 17823, "fields": {"orig_filename": "Baar_Hugo_1873_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405521}}, {"model": "metainfo.source", "pk": 17824, "fields": {"orig_filename": "Baar_Jindrich_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420825}}, {"model": "metainfo.source", "pk": 17825, "fields": {"orig_filename": "Babak_Edward_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420826}}, {"model": "metainfo.source", "pk": 17826, "fields": {"orig_filename": "Babik_Adeodatus_1738_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420827}}, {"model": "metainfo.source", "pk": 17827, "fields": {"orig_filename": "Bacher_Eduard_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405549}}, {"model": "metainfo.source", "pk": 17828, "fields": {"orig_filename": "Bacher_Rudolf_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405540}}, {"model": "metainfo.source", "pk": 17829, "fields": {"orig_filename": "Bachinger_Franz_1892_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1405556}}, {"model": "metainfo.source", "pk": 17830, "fields": {"orig_filename": "Bachlechner_Gregor_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2025081}}, {"model": "metainfo.source", "pk": 17831, "fields": {"orig_filename": "Bachlechner_Josef_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405557}}, {"model": "metainfo.source", "pk": 17832, "fields": {"orig_filename": "Bachmann_Adolf_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405560}}, {"model": "metainfo.source", "pk": 17833, "fields": {"orig_filename": "Bachmann_Eugen_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41f.", "author": "", "orig_id": 1420829}}, {"model": "metainfo.source", "pk": 17834, "fields": {"orig_filename": "Bachmann_Hermann_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1405561}}, {"model": "metainfo.source", "pk": 17835, "fields": {"orig_filename": "Bachmann_Luise_1903_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1440405}}, {"model": "metainfo.source", "pk": 17836, "fields": {"orig_filename": "Bachofen-Echt_Karl-Adolf_1830_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41f.", "author": "", "orig_id": 1405565}}, {"model": "metainfo.source", "pk": 17837, "fields": {"orig_filename": "Bachrach_Adolf_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405566}}, {"model": "metainfo.source", "pk": 17838, "fields": {"orig_filename": "Bachrich_Sigmund_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405567}}, {"model": "metainfo.source", "pk": 17839, "fields": {"orig_filename": "Bach_Alexander_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405534}}, {"model": "metainfo.source", "pk": 17840, "fields": {"orig_filename": "Bach_Eduard_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405537}}, {"model": "metainfo.source", "pk": 17841, "fields": {"orig_filename": "Bach_Emilie_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405538}}, {"model": "metainfo.source", "pk": 17842, "fields": {"orig_filename": "Bach_Friedrich_1817_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405544}}, {"model": "metainfo.source", "pk": 17843, "fields": {"orig_filename": "Bach_Otto_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405548}}, {"model": "metainfo.source", "pk": 17844, "fields": {"orig_filename": "Bach_Theodor-Karl_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405547}}, {"model": "metainfo.source", "pk": 17845, "fields": {"orig_filename": "Bacquehem_Olivier_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405573}}, {"model": "metainfo.source", "pk": 17846, "fields": {"orig_filename": "Bacsanyi_Gabriele_1775_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1420830}}, {"model": "metainfo.source", "pk": 17847, "fields": {"orig_filename": "Badaj_Alexander_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1420831}}, {"model": "metainfo.source", "pk": 17848, "fields": {"orig_filename": "Badeni_Kasimir-Felix_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42f.", "author": "", "orig_id": 1405579}}, {"model": "metainfo.source", "pk": 17849, "fields": {"orig_filename": "Baer-Frisell_Christine_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43", "author": "", "orig_id": 1420832}}, {"model": "metainfo.source", "pk": 17850, "fields": {"orig_filename": "Baernreither_Josef-Maria_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43", "author": "", "orig_id": 1405471}}, {"model": "metainfo.source", "pk": 17851, "fields": {"orig_filename": "Baeuerle_Adolf_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43f.", "author": "", "orig_id": 1405472}}, {"model": "metainfo.source", "pk": 17852, "fields": {"orig_filename": "Baeuerle_Friederike_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420833}}, {"model": "metainfo.source", "pk": 17853, "fields": {"orig_filename": "Baeuerle_Katharina_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44", "author": "", "orig_id": 1405473}}, {"model": "metainfo.source", "pk": 17854, "fields": {"orig_filename": "Bahr-Mildenburg_Anna_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1405541}}, {"model": "metainfo.source", "pk": 17855, "fields": {"orig_filename": "Bahr_Alois_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1405475}}, {"model": "metainfo.source", "pk": 17856, "fields": {"orig_filename": "Baillet-Latour_Theodor_1780_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420835}}, {"model": "metainfo.source", "pk": 17857, "fields": {"orig_filename": "Baillet-Latour_Vinzenz_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1405479}}, {"model": "metainfo.source", "pk": 17858, "fields": {"orig_filename": "Bail_Oskar_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420834}}, {"model": "metainfo.source", "pk": 17859, "fields": {"orig_filename": "Bakalar_Johann-M_1857_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420903}}, {"model": "metainfo.source", "pk": 17860, "fields": {"orig_filename": "Bakody_Theodor_1825_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420904}}, {"model": "metainfo.source", "pk": 17861, "fields": {"orig_filename": "Bakonyi_Emmerich_1768_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45f.", "author": "", "orig_id": 1420905}}, {"model": "metainfo.source", "pk": 17862, "fields": {"orig_filename": "Balajthy_Robert_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420906}}, {"model": "metainfo.source", "pk": 17863, "fields": {"orig_filename": "Balassa_Johann_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420907}}, {"model": "metainfo.source", "pk": 17864, "fields": {"orig_filename": "Balassa_Konstantin_1795_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420908}}, {"model": "metainfo.source", "pk": 17865, "fields": {"orig_filename": "Balatka_Hans_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1405492}}, {"model": "metainfo.source", "pk": 17866, "fields": {"orig_filename": "Balbi_Adrian_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420909}}, {"model": "metainfo.source", "pk": 17867, "fields": {"orig_filename": "Baldacci_Anton-Maximilian_1762_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1405496}}, {"model": "metainfo.source", "pk": 17868, "fields": {"orig_filename": "Ballagi_Moriz_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46f.", "author": "", "orig_id": 1420910}}, {"model": "metainfo.source", "pk": 17869, "fields": {"orig_filename": "Balling_Karl-Josef-Napoleon_1805_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420911}}, {"model": "metainfo.source", "pk": 17870, "fields": {"orig_filename": "Balucki_Michael_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420912}}, {"model": "metainfo.source", "pk": 17871, "fields": {"orig_filename": "Bamberger_Eugen_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1405680}}, {"model": "metainfo.source", "pk": 17872, "fields": {"orig_filename": "Bamberger_Heinrich_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1405682}}, {"model": "metainfo.source", "pk": 17873, "fields": {"orig_filename": "Bamberger_Max_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47f.", "author": "", "orig_id": 1420914}}, {"model": "metainfo.source", "pk": 17874, "fields": {"orig_filename": "Bamberg_Josef_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420913}}, {"model": "metainfo.source", "pk": 17875, "fields": {"orig_filename": "Bancalari_Gustav_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420915}}, {"model": "metainfo.source", "pk": 17876, "fields": {"orig_filename": "Bandl_Ludwig_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1421079}}, {"model": "metainfo.source", "pk": 17877, "fields": {"orig_filename": "Bandrowski_Alexander_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420917}}, {"model": "metainfo.source", "pk": 17878, "fields": {"orig_filename": "Band_Moritz_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420916}}, {"model": "metainfo.source", "pk": 17879, "fields": {"orig_filename": "Banffy-Losoncz_Dezsoe_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405689}}, {"model": "metainfo.source", "pk": 17880, "fields": {"orig_filename": "Banhans_Anton_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405691}}, {"model": "metainfo.source", "pk": 17881, "fields": {"orig_filename": "Banhans_Karl_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405693}}, {"model": "metainfo.source", "pk": 17882, "fields": {"orig_filename": "Banki_Donat_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405695}}, {"model": "metainfo.source", "pk": 17883, "fields": {"orig_filename": "Barabas_Nikolaus_1810_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48f.", "author": "", "orig_id": 1420918}}, {"model": "metainfo.source", "pk": 17884, "fields": {"orig_filename": "Barach-Rappaport_Karl-Siegmund_1834_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1420919}}, {"model": "metainfo.source", "pk": 17885, "fields": {"orig_filename": "Barach_Moritz_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405584}}, {"model": "metainfo.source", "pk": 17886, "fields": {"orig_filename": "Barach_Rosa_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1414455}}, {"model": "metainfo.source", "pk": 17887, "fields": {"orig_filename": "Barac_Milutin_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405701}}, {"model": "metainfo.source", "pk": 17888, "fields": {"orig_filename": "Baraga_Friedrich-Irenaeus_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405702}}, {"model": "metainfo.source", "pk": 17889, "fields": {"orig_filename": "Barany_Robert_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1405704}}, {"model": "metainfo.source", "pk": 17890, "fields": {"orig_filename": "Barazetti_Sophie_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1420920}}, {"model": "metainfo.source", "pk": 17891, "fields": {"orig_filename": "Barbacovi_Franz-Virgil_1738_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49f.", "author": "", "orig_id": 1405709}}, {"model": "metainfo.source", "pk": 17892, "fields": {"orig_filename": "Barbaczy_Josef_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420921}}, {"model": "metainfo.source", "pk": 17893, "fields": {"orig_filename": "Barbisch_Hans_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420922}}, {"model": "metainfo.source", "pk": 17894, "fields": {"orig_filename": "Barb_Alphons-Augustinus_1901_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444036}}, {"model": "metainfo.source", "pk": 17895, "fields": {"orig_filename": "Barco_Josef_1798_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420923}}, {"model": "metainfo.source", "pk": 17896, "fields": {"orig_filename": "Bardach-Chlumberg_Hans_1897_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420924}}, {"model": "metainfo.source", "pk": 17897, "fields": {"orig_filename": "Barenyi_Bela_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444040}}, {"model": "metainfo.source", "pk": 17898, "fields": {"orig_filename": "Bareuther_Ernst_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420925}}, {"model": "metainfo.source", "pk": 17899, "fields": {"orig_filename": "Barion-Zellthal_Matthias_1785_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420926}}, {"model": "metainfo.source", "pk": 17900, "fields": {"orig_filename": "Barkany_Marie_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420993}}, {"model": "metainfo.source", "pk": 17901, "fields": {"orig_filename": "Barle_Janko_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420994}}, {"model": "metainfo.source", "pk": 17902, "fields": {"orig_filename": "Antoniewicz_Johann_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417972}}, {"model": "metainfo.source", "pk": 17903, "fields": {"orig_filename": "Antoniewicz_Karl_1807_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417973}}, {"model": "metainfo.source", "pk": 17904, "fields": {"orig_filename": "Antonius_Otto_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417974}}, {"model": "metainfo.source", "pk": 17905, "fields": {"orig_filename": "Anton_Ferdinand_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24f.", "author": "", "orig_id": 1417968}}, {"model": "metainfo.source", "pk": 17906, "fields": {"orig_filename": "Anton_Gabriel_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417969}}, {"model": "metainfo.source", "pk": 17907, "fields": {"orig_filename": "Anton_Viktor_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417970}}, {"model": "metainfo.source", "pk": 17908, "fields": {"orig_filename": "Anyz_Josef_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417976}}, {"model": "metainfo.source", "pk": 17909, "fields": {"orig_filename": "Anzengruber_Johann_1810_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417977}}, {"model": "metainfo.source", "pk": 17910, "fields": {"orig_filename": "Anzengruber_Karl_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25f.", "author": "", "orig_id": 1418052}}, {"model": "metainfo.source", "pk": 17911, "fields": {"orig_filename": "Anzengruber_Ludwig_1839_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418053}}, {"model": "metainfo.source", "pk": 17912, "fields": {"orig_filename": "Anzoletti_Marco_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418054}}, {"model": "metainfo.source", "pk": 17913, "fields": {"orig_filename": "Anzoletti_Patrizius_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418055}}, {"model": "metainfo.source", "pk": 17914, "fields": {"orig_filename": "Appel_Christian_1785_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418056}}, {"model": "metainfo.source", "pk": 17915, "fields": {"orig_filename": "Appel_Johann-Nep_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418057}}, {"model": "metainfo.source", "pk": 17916, "fields": {"orig_filename": "Appel_Josef-Franz_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418058}}, {"model": "metainfo.source", "pk": 17917, "fields": {"orig_filename": "Appel_Michael-Ludwig-E_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26f.", "author": "", "orig_id": 1418059}}, {"model": "metainfo.source", "pk": 17918, "fields": {"orig_filename": "Appel_Wilhelm_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418060}}, {"model": "metainfo.source", "pk": 17919, "fields": {"orig_filename": "Appiani_Andreas_1754_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418061}}, {"model": "metainfo.source", "pk": 17920, "fields": {"orig_filename": "Apponyi_Albert_1846_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418062}}, {"model": "metainfo.source", "pk": 17921, "fields": {"orig_filename": "Apponyi_Alexander_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418063}}, {"model": "metainfo.source", "pk": 17922, "fields": {"orig_filename": "Apponyi_Georg_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418064}}, {"model": "metainfo.source", "pk": 17923, "fields": {"orig_filename": "Aptowitzer_Victor_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418065}}, {"model": "metainfo.source", "pk": 17924, "fields": {"orig_filename": "Arany_Johann_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27f.", "author": "", "orig_id": 1418066}}, {"model": "metainfo.source", "pk": 17925, "fields": {"orig_filename": "Arbes_Jakub_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418067}}, {"model": "metainfo.source", "pk": 17926, "fields": {"orig_filename": "Arbter_Arthur_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418069}}, {"model": "metainfo.source", "pk": 17927, "fields": {"orig_filename": "Arbter_Emil_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418068}}, {"model": "metainfo.source", "pk": 17928, "fields": {"orig_filename": "Arendt_Ekkehard_1892_1954.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2028980}}, {"model": "metainfo.source", "pk": 17929, "fields": {"orig_filename": "Argenteau_Eugen_1741_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418070}}, {"model": "metainfo.source", "pk": 17930, "fields": {"orig_filename": "Arici_Cesare_1785_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418071}}, {"model": "metainfo.source", "pk": 17931, "fields": {"orig_filename": "Arigi_Julius_1895_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441907}}, {"model": "metainfo.source", "pk": 17932, "fields": {"orig_filename": "Arleth_Erich_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418072}}, {"model": "metainfo.source", "pk": 17933, "fields": {"orig_filename": "Arlt_Ferdinand_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418073}}, {"model": "metainfo.source", "pk": 17934, "fields": {"orig_filename": "Arnau_Karl_1843_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418074}}, {"model": "metainfo.source", "pk": 17935, "fields": {"orig_filename": "Arnberger_Erik_1917_1987.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441954}}, {"model": "metainfo.source", "pk": 17936, "fields": {"orig_filename": "Arndts-Arnesberg_Karl-Ludwig_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418155}}, {"model": "metainfo.source", "pk": 17937, "fields": {"orig_filename": "Arndt_Johannes_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28f.", "author": "", "orig_id": 1418154}}, {"model": "metainfo.source", "pk": 17938, "fields": {"orig_filename": "Arneth_Alfred_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418156}}, {"model": "metainfo.source", "pk": 17939, "fields": {"orig_filename": "Arneth_Josef-Cal_1791_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418157}}, {"model": "metainfo.source", "pk": 17940, "fields": {"orig_filename": "Arneth_Michael_1771_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418158}}, {"model": "metainfo.source", "pk": 17941, "fields": {"orig_filename": "Arnim_Hans_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29f.", "author": "", "orig_id": 1418159}}, {"model": "metainfo.source", "pk": 17942, "fields": {"orig_filename": "Arnold_Djuro_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418160}}, {"model": "metainfo.source", "pk": 17943, "fields": {"orig_filename": "Arnold_Josef_1788_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418161}}, {"model": "metainfo.source", "pk": 17944, "fields": {"orig_filename": "Arnold_Josef_1823_1862.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193497}}, {"model": "metainfo.source", "pk": 17945, "fields": {"orig_filename": "Arnold_Robert-Franz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418162}}, {"model": "metainfo.source", "pk": 17946, "fields": {"orig_filename": "Arnsburg_Ludwig_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418163}}, {"model": "metainfo.source", "pk": 17947, "fields": {"orig_filename": "Arnsburg_Marie_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418164}}, {"model": "metainfo.source", "pk": 17948, "fields": {"orig_filename": "Arrigoni_Anton_1788_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418165}}, {"model": "metainfo.source", "pk": 17949, "fields": {"orig_filename": "Arrivabene_Ferdinand_1770_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418166}}, {"model": "metainfo.source", "pk": 17950, "fields": {"orig_filename": "Artaria_Domenico_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30f.", "author": "", "orig_id": 1418167}}, {"model": "metainfo.source", "pk": 17951, "fields": {"orig_filename": "Arthaber_Gustav-Adolf_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418168}}, {"model": "metainfo.source", "pk": 17952, "fields": {"orig_filename": "Arthaber_Rudolf_1795_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418169}}, {"model": "metainfo.source", "pk": 17953, "fields": {"orig_filename": "Artmann_Emil-Wilhelm_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2003990}}, {"model": "metainfo.source", "pk": 17954, "fields": {"orig_filename": "Artmann_Ferdinand_1830_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418170}}, {"model": "metainfo.source", "pk": 17955, "fields": {"orig_filename": "Artner_Therese_1772_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418171}}, {"model": "metainfo.source", "pk": 17956, "fields": {"orig_filename": "Arz-Straussenburg_Arthur_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418172}}, {"model": "metainfo.source", "pk": 17957, "fields": {"orig_filename": "Arzberger_Friedrich_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31f.", "author": "", "orig_id": 1416773}}, {"model": "metainfo.source", "pk": 17958, "fields": {"orig_filename": "Arzberger_Johann_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416774}}, {"model": "metainfo.source", "pk": 17959, "fields": {"orig_filename": "Arzberger_Moriz_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416775}}, {"model": "metainfo.source", "pk": 17960, "fields": {"orig_filename": "Asboth_Oszkar_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2264594}}, {"model": "metainfo.source", "pk": 17961, "fields": {"orig_filename": "Aschauer-Achenrain-Lichtenthurn_Josef_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416776}}, {"model": "metainfo.source", "pk": 17962, "fields": {"orig_filename": "Aschbach_Josef_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416777}}, {"model": "metainfo.source", "pk": 17963, "fields": {"orig_filename": "Ascher_Anton_1820_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416778}}, {"model": "metainfo.source", "pk": 17964, "fields": {"orig_filename": "Ascher_Franzi_1910_1991.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441445}}, {"model": "metainfo.source", "pk": 17965, "fields": {"orig_filename": "Ascher_Leo_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441446}}, {"model": "metainfo.source", "pk": 17966, "fields": {"orig_filename": "Ascoli_Graziadio-Isaia_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416779}}, {"model": "metainfo.source", "pk": 17967, "fields": {"orig_filename": "Askerc_Anton_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416780}}, {"model": "metainfo.source", "pk": 17968, "fields": {"orig_filename": "Aslan_Raoul_1886_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1430338}}, {"model": "metainfo.source", "pk": 17969, "fields": {"orig_filename": "Asnyk_Adam_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416781}}, {"model": "metainfo.source", "pk": 17970, "fields": {"orig_filename": "Assemani_Simone_1752_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416783}}, {"model": "metainfo.source", "pk": 17971, "fields": {"orig_filename": "Assmayer_Ignaz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416784}}, {"model": "metainfo.source", "pk": 17972, "fields": {"orig_filename": "Asson_Michelangelo_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416785}}, {"model": "metainfo.source", "pk": 17973, "fields": {"orig_filename": "Attems-Petzenstein_Heinrich_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416788}}, {"model": "metainfo.source", "pk": 17974, "fields": {"orig_filename": "Attems_Alexander_1814_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416786}}, {"model": "metainfo.source", "pk": 17975, "fields": {"orig_filename": "Attems_Ferdinand-Maria_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416787}}, {"model": "metainfo.source", "pk": 17976, "fields": {"orig_filename": "Attems_Ignaz-Maria_1774_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416789}}, {"model": "metainfo.source", "pk": 17977, "fields": {"orig_filename": "Attems_Ottokar-Maria_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1469022}}, {"model": "metainfo.source", "pk": 17978, "fields": {"orig_filename": "Attlmayer_Richard-Isidor_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416790}}, {"model": "metainfo.source", "pk": 17979, "fields": {"orig_filename": "Attomyr_Joseph_1807_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416791}}, {"model": "metainfo.source", "pk": 17980, "fields": {"orig_filename": "Atzwanger_Hugo_1883_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1429374}}, {"model": "metainfo.source", "pk": 17981, "fields": {"orig_filename": "Atzwanger_Peter-Paul_1888_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441750}}, {"model": "metainfo.source", "pk": 17982, "fields": {"orig_filename": "Atz_Karl_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416792}}, {"model": "metainfo.source", "pk": 17983, "fields": {"orig_filename": "Auckenthaler_Engelbert_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416793}}, {"model": "metainfo.source", "pk": 17984, "fields": {"orig_filename": "Auckenthaler_Josef_1769_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416794}}, {"model": "metainfo.source", "pk": 17985, "fields": {"orig_filename": "Auer-Welsbach_Alois_1813_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34f.", "author": "", "orig_id": 1416796}}, {"model": "metainfo.source", "pk": 17986, "fields": {"orig_filename": "Auer-Welsbach_Karl_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416872}}, {"model": "metainfo.source", "pk": 17987, "fields": {"orig_filename": "Auerhan_Jan_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1992581}}, {"model": "metainfo.source", "pk": 17988, "fields": {"orig_filename": "Auernhammer_Josepha-Barbara_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447288}}, {"model": "metainfo.source", "pk": 17989, "fields": {"orig_filename": "Auernheimer_Raoul_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416873}}, {"model": "metainfo.source", "pk": 17990, "fields": {"orig_filename": "Auersperg_Adolf_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416874}}, {"model": "metainfo.source", "pk": 17991, "fields": {"orig_filename": "Auersperg_Anton-Alexander_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35f.", "author": "", "orig_id": 1416875}}, {"model": "metainfo.source", "pk": 17992, "fields": {"orig_filename": "Auersperg_Gottfried-Leopold_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416876}}, {"model": "metainfo.source", "pk": 17993, "fields": {"orig_filename": "Auersperg_Johann-Baptist_1745_1816.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468711}}, {"model": "metainfo.source", "pk": 17994, "fields": {"orig_filename": "Auersperg_Karl-Wilhelm_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416877}}, {"model": "metainfo.source", "pk": 17995, "fields": {"orig_filename": "Auersperg_Leopold_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416878}}, {"model": "metainfo.source", "pk": 17996, "fields": {"orig_filename": "Auersperg_Maximilian_1771_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416879}}, {"model": "metainfo.source", "pk": 17997, "fields": {"orig_filename": "Auer_Erich_1923_2004.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441801}}, {"model": "metainfo.source", "pk": 17998, "fields": {"orig_filename": "Auer_Hans-Wilhelm_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004022}}, {"model": "metainfo.source", "pk": 17999, "fields": {"orig_filename": "Auer_Leopold_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416795}}, {"model": "metainfo.source", "pk": 18000, "fields": {"orig_filename": "Auffenberg-Komarow_Moritz_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416880}}, {"model": "metainfo.source", "pk": 18001, "fields": {"orig_filename": "Augenfeld_Alois_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004028}}, {"model": "metainfo.source", "pk": 18002, "fields": {"orig_filename": "Augenfeld_Felix_1893_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004033}}, {"model": "metainfo.source", "pk": 18003, "fields": {"orig_filename": "August-Auenfels_Georg_1773_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416881}}, {"model": "metainfo.source", "pk": 18004, "fields": {"orig_filename": "Augustin_Ferdinand_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416883}}, {"model": "metainfo.source", "pk": 18005, "fields": {"orig_filename": "Augustin_Frantisek_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1992594}}, {"model": "metainfo.source", "pk": 18006, "fields": {"orig_filename": "Albini_Srecko_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418129}}, {"model": "metainfo.source", "pk": 18007, "fields": {"orig_filename": "Albori_Eugen_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418131}}, {"model": "metainfo.source", "pk": 18008, "fields": {"orig_filename": "Albrecht_Friedrich-Rudolf_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12f.", "author": "", "orig_id": 1418132}}, {"model": "metainfo.source", "pk": 18009, "fields": {"orig_filename": "Albrecht_Heinrich_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418133}}, {"model": "metainfo.source", "pk": 18010, "fields": {"orig_filename": "Albrecht_Hermine_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418134}}, {"model": "metainfo.source", "pk": 18011, "fields": {"orig_filename": "Albrecht_Josef_1888_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438986}}, {"model": "metainfo.source", "pk": 18012, "fields": {"orig_filename": "Albrecht_Kasimir_1738_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418135}}, {"model": "metainfo.source", "pk": 18013, "fields": {"orig_filename": "Albrizzi-Teotochi_Isabella_1760_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418136}}, {"model": "metainfo.source", "pk": 18014, "fields": {"orig_filename": "Aleardi_Aleardo_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418137}}, {"model": "metainfo.source", "pk": 18015, "fields": {"orig_filename": "Aleksic_Nikola_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418138}}, {"model": "metainfo.source", "pk": 18016, "fields": {"orig_filename": "Alemann_Wilhelm_1798_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418139}}, {"model": "metainfo.source", "pk": 18017, "fields": {"orig_filename": "Ales_Mikulas_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418145}}, {"model": "metainfo.source", "pk": 18018, "fields": {"orig_filename": "Alexander_Gustav_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418147}}, {"model": "metainfo.source", "pk": 18019, "fields": {"orig_filename": "Alexander__1857_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418146}}, {"model": "metainfo.source", "pk": 18020, "fields": {"orig_filename": "Alexandrovic_Ljubomir_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418148}}, {"model": "metainfo.source", "pk": 18021, "fields": {"orig_filename": "Algyogyi_Hermann_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2089510}}, {"model": "metainfo.source", "pk": 18022, "fields": {"orig_filename": "Alle_Moriz_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418149}}, {"model": "metainfo.source", "pk": 18023, "fields": {"orig_filename": "Allram_Adele_1826_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1418152}}, {"model": "metainfo.source", "pk": 18024, "fields": {"orig_filename": "Allram_Josef_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1418153}}, {"model": "metainfo.source", "pk": 18025, "fields": {"orig_filename": "Alma_Marian_1860_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416748}}, {"model": "metainfo.source", "pk": 18026, "fields": {"orig_filename": "Alphons_Theodor_1860_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416749}}, {"model": "metainfo.source", "pk": 18027, "fields": {"orig_filename": "Alram_Hieronymus-Josef_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416750}}, {"model": "metainfo.source", "pk": 18028, "fields": {"orig_filename": "Alscher_Otto_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416751}}, {"model": "metainfo.source", "pk": 18029, "fields": {"orig_filename": "Alschinger_Andreas_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416752}}, {"model": "metainfo.source", "pk": 18030, "fields": {"orig_filename": "Altenweisel_Josef_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1416757}}, {"model": "metainfo.source", "pk": 18031, "fields": {"orig_filename": "Alter-Waltrecht_Rudolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417699}}, {"model": "metainfo.source", "pk": 18032, "fields": {"orig_filename": "Altmann_Adolf_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447709}}, {"model": "metainfo.source", "pk": 18033, "fields": {"orig_filename": "Altmann_Anton_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417701}}, {"model": "metainfo.source", "pk": 18034, "fields": {"orig_filename": "Altmann_Josef-Hermann_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417702}}, {"model": "metainfo.source", "pk": 18035, "fields": {"orig_filename": "Altman_Josef_1777_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417700}}, {"model": "metainfo.source", "pk": 18036, "fields": {"orig_filename": "Altmuetter_Georg_1787_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16f.", "author": "", "orig_id": 1417703}}, {"model": "metainfo.source", "pk": 18037, "fields": {"orig_filename": "Altmutter_Franz_1745_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417704}}, {"model": "metainfo.source", "pk": 18038, "fields": {"orig_filename": "Altmutter_Placidus-Jakob_1780_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417705}}, {"model": "metainfo.source", "pk": 18039, "fields": {"orig_filename": "Alton_Johann-Baptist_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417706}}, {"model": "metainfo.source", "pk": 18040, "fields": {"orig_filename": "Altschul_Elias_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417707}}, {"model": "metainfo.source", "pk": 18041, "fields": {"orig_filename": "Altwirth_Heinrich_1868_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417708}}, {"model": "metainfo.source", "pk": 18042, "fields": {"orig_filename": "Alt_Franz_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416753}}, {"model": "metainfo.source", "pk": 18043, "fields": {"orig_filename": "Alt_Jakob_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15f.", "author": "", "orig_id": 1416754}}, {"model": "metainfo.source", "pk": 18044, "fields": {"orig_filename": "Alt_Rudolf_1812_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416755}}, {"model": "metainfo.source", "pk": 18045, "fields": {"orig_filename": "Amade_August_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417709}}, {"model": "metainfo.source", "pk": 18046, "fields": {"orig_filename": "Amade_Thaddaeus_1783_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417710}}, {"model": "metainfo.source", "pk": 18047, "fields": {"orig_filename": "Amann_Johann_1765_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417780}}, {"model": "metainfo.source", "pk": 18048, "fields": {"orig_filename": "Amann_Paul_1884_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441439}}, {"model": "metainfo.source", "pk": 18049, "fields": {"orig_filename": "Amati_Carlo_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417781}}, {"model": "metainfo.source", "pk": 18050, "fields": {"orig_filename": "Ambrosi_Gustinus_1893_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1439170}}, {"model": "metainfo.source", "pk": 18051, "fields": {"orig_filename": "Ambros_August-Wilhelm_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17f.", "author": "", "orig_id": 1417782}}, {"model": "metainfo.source", "pk": 18052, "fields": {"orig_filename": "Ambros_Josef_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417783}}, {"model": "metainfo.source", "pk": 18053, "fields": {"orig_filename": "Ambrozy-Migazzi_Istvan_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1824042}}, {"model": "metainfo.source", "pk": 18054, "fields": {"orig_filename": "Ambschell_Anton_1751_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417784}}, {"model": "metainfo.source", "pk": 18055, "fields": {"orig_filename": "Amerling_Friedrich_1803_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417785}}, {"model": "metainfo.source", "pk": 18056, "fields": {"orig_filename": "Amerling_Karel-Slavoj_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417786}}, {"model": "metainfo.source", "pk": 18057, "fields": {"orig_filename": "Ameseder_Eduard_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417787}}, {"model": "metainfo.source", "pk": 18058, "fields": {"orig_filename": "Ammann_Hartmann_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417788}}, {"model": "metainfo.source", "pk": 18059, "fields": {"orig_filename": "Amonn_Marius_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417791}}, {"model": "metainfo.source", "pk": 18060, "fields": {"orig_filename": "Amon_Anton_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18f.", "author": "", "orig_id": 1417789}}, {"model": "metainfo.source", "pk": 18061, "fields": {"orig_filename": "Amon_Johann-Franz_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417790}}, {"model": "metainfo.source", "pk": 18062, "fields": {"orig_filename": "Ampferer_Otto_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417792}}, {"model": "metainfo.source", "pk": 18063, "fields": {"orig_filename": "Amrus_Milan_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417793}}, {"model": "metainfo.source", "pk": 18064, "fields": {"orig_filename": "Amschl_Sepp_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417794}}, {"model": "metainfo.source", "pk": 18065, "fields": {"orig_filename": "Amster_Moritz_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417795}}, {"model": "metainfo.source", "pk": 18066, "fields": {"orig_filename": "An-Der-Lan-Hochbrunn_Hartmann_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417799}}, {"model": "metainfo.source", "pk": 18067, "fields": {"orig_filename": "Anczyc_Siegmund_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417796}}, {"model": "metainfo.source", "pk": 18068, "fields": {"orig_filename": "Anczyc_Wladislaw-Ludwig_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417797}}, {"model": "metainfo.source", "pk": 18069, "fields": {"orig_filename": "Anderle_Alois_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417867}}, {"model": "metainfo.source", "pk": 18070, "fields": {"orig_filename": "Anderle_Josef_1881_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2025324}}, {"model": "metainfo.source", "pk": 18071, "fields": {"orig_filename": "Anderloni_Pietro_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417868}}, {"model": "metainfo.source", "pk": 18072, "fields": {"orig_filename": "Andersag_Michael_1799_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417870}}, {"model": "metainfo.source", "pk": 18073, "fields": {"orig_filename": "Anders_Josef_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417869}}, {"model": "metainfo.source", "pk": 18074, "fields": {"orig_filename": "Andics_Hellmut_1922_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420663}}, {"model": "metainfo.source", "pk": 18075, "fields": {"orig_filename": "Andrassy_Julius_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20f.", "author": "", "orig_id": 1417871}}, {"model": "metainfo.source", "pk": 18076, "fields": {"orig_filename": "Andrassy_Julius_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417872}}, {"model": "metainfo.source", "pk": 18077, "fields": {"orig_filename": "Andreas_Michael_1762_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417874}}, {"model": "metainfo.source", "pk": 18078, "fields": {"orig_filename": "Andree-Eysn_Marie_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421999}}, {"model": "metainfo.source", "pk": 18079, "fields": {"orig_filename": "Andres_Leopold_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417876}}, {"model": "metainfo.source", "pk": 18080, "fields": {"orig_filename": "Andre_Emil_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417873}}, {"model": "metainfo.source", "pk": 18081, "fields": {"orig_filename": "Andrian-Werburg_Ferdinand_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21f.", "author": "", "orig_id": 1417877}}, {"model": "metainfo.source", "pk": 18082, "fields": {"orig_filename": "Andrian-Werburg_Leopold_1875_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426151}}, {"model": "metainfo.source", "pk": 18083, "fields": {"orig_filename": "Andrian-Werburg_Viktor_1813_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417878}}, {"model": "metainfo.source", "pk": 18084, "fields": {"orig_filename": "Andrlik_Karl_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417879}}, {"model": "metainfo.source", "pk": 18085, "fields": {"orig_filename": "Anelli_Angelo_1761_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417880}}, {"model": "metainfo.source", "pk": 18086, "fields": {"orig_filename": "Angel-Katan_Anny_1898_1992.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1451379}}, {"model": "metainfo.source", "pk": 18087, "fields": {"orig_filename": "Angeler_Josef_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417881}}, {"model": "metainfo.source", "pk": 18088, "fields": {"orig_filename": "Angeli_Heinrich_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417882}}, {"model": "metainfo.source", "pk": 18089, "fields": {"orig_filename": "Angeli_Moriz_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22f.", "author": "", "orig_id": 1417883}}, {"model": "metainfo.source", "pk": 18090, "fields": {"orig_filename": "Angerer_Eduard_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1419864}}, {"model": "metainfo.source", "pk": 18091, "fields": {"orig_filename": "Angerer_Hans_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417884}}, {"model": "metainfo.source", "pk": 18092, "fields": {"orig_filename": "Angerer_Karl_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417885}}, {"model": "metainfo.source", "pk": 18093, "fields": {"orig_filename": "Angerer_Ludwig_1827_1879.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1461160}}, {"model": "metainfo.source", "pk": 18094, "fields": {"orig_filename": "Angerer_Victor_1839_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1909856}}, {"model": "metainfo.source", "pk": 18095, "fields": {"orig_filename": "Angjelovic_Albert_1820_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417886}}, {"model": "metainfo.source", "pk": 18096, "fields": {"orig_filename": "Angyal_David_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417956}}, {"model": "metainfo.source", "pk": 18097, "fields": {"orig_filename": "Ankershofen_Gottlieb_1795_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23f.", "author": "", "orig_id": 1417958}}, {"model": "metainfo.source", "pk": 18098, "fields": {"orig_filename": "Anker_Mathias-Josef_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417957}}, {"model": "metainfo.source", "pk": 18099, "fields": {"orig_filename": "Ankwicz_Andreas-Ludwig_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417959}}, {"model": "metainfo.source", "pk": 18100, "fields": {"orig_filename": "Anrather_Karl_1861_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417960}}, {"model": "metainfo.source", "pk": 18101, "fields": {"orig_filename": "Anreiter_Alois_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417961}}, {"model": "metainfo.source", "pk": 18102, "fields": {"orig_filename": "Anschuetz_Auguste_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417962}}, {"model": "metainfo.source", "pk": 18103, "fields": {"orig_filename": "Anschuetz_Eduard_1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417963}}, {"model": "metainfo.source", "pk": 18104, "fields": {"orig_filename": "Anschuetz_Heinrich_1785_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417964}}, {"model": "metainfo.source", "pk": 18105, "fields": {"orig_filename": "Anthofer_Karl_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417965}}, {"model": "metainfo.source", "pk": 18106, "fields": {"orig_filename": "Anthony-Siegenfeld_Alfred_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417966}}, {"model": "metainfo.source", "pk": 18107, "fields": {"orig_filename": "Antoine_Franz-De-Paula_1768_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417967}}, {"model": "metainfo.source", "pk": 18108, "fields": {"orig_filename": "Antoine_Franz-De-Paula_1815_1886.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1823997}}, {"model": "metainfo.source", "pk": 18109, "fields": {"orig_filename": "Antoncic_Anton_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417971}}, {"model": "metainfo.source", "pk": 18110, "fields": {"orig_filename": "Abeles_Armin_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2103840}}, {"model": "metainfo.source", "pk": 18111, "fields": {"orig_filename": "Abeles_Otto_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441402}}, {"model": "metainfo.source", "pk": 18112, "fields": {"orig_filename": "Abel_Franz_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1419807}}, {"model": "metainfo.source", "pk": 18113, "fields": {"orig_filename": "Abel_Friedrich_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193586}}, {"model": "metainfo.source", "pk": 18114, "fields": {"orig_filename": "Abel_Heinrich_1843_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417764}}, {"model": "metainfo.source", "pk": 18115, "fields": {"orig_filename": "Abel_Josef_1764_1818.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417765}}, {"model": "metainfo.source", "pk": 18116, "fields": {"orig_filename": "Abel_Lothar_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417766}}, {"model": "metainfo.source", "pk": 18117, "fields": {"orig_filename": "Abel_Ludwig_1811_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1993664}}, {"model": "metainfo.source", "pk": 18118, "fields": {"orig_filename": "Abel_Othenio_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417767}}, {"model": "metainfo.source", "pk": 18119, "fields": {"orig_filename": "Abel_Rudolf_1831_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193591}}, {"model": "metainfo.source", "pk": 18120, "fields": {"orig_filename": "Abendroth_Irene_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417768}}, {"model": "metainfo.source", "pk": 18121, "fields": {"orig_filename": "Abensperg-Traun_Hugo_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417769}}, {"model": "metainfo.source", "pk": 18122, "fields": {"orig_filename": "Abensperg-Traun_Otto-Ehrenreich_1848_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431726}}, {"model": "metainfo.source", "pk": 18123, "fields": {"orig_filename": "Aberle_Karl_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417770}}, {"model": "metainfo.source", "pk": 18124, "fields": {"orig_filename": "Aberle_Matthias_1784_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417771}}, {"model": "metainfo.source", "pk": 18125, "fields": {"orig_filename": "Abertolli_Ferdinand_1781_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417773}}, {"model": "metainfo.source", "pk": 18126, "fields": {"orig_filename": "Abert_Josef_1832_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417772}}, {"model": "metainfo.source", "pk": 18127, "fields": {"orig_filename": "Abrahamowicz_David_1839_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417775}}, {"model": "metainfo.source", "pk": 18128, "fields": {"orig_filename": "Abraham_Wladislaw_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2f.", "author": "", "orig_id": 1417774}}, {"model": "metainfo.source", "pk": 18129, "fields": {"orig_filename": "Abramovicz-Adelburg_Eduard_1804_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417777}}, {"model": "metainfo.source", "pk": 18130, "fields": {"orig_filename": "Abramovicz_Bronislaw_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417776}}, {"model": "metainfo.source", "pk": 18131, "fields": {"orig_filename": "Abranyi_Emil_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417778}}, {"model": "metainfo.source", "pk": 18132, "fields": {"orig_filename": "Abranyi_Kornel_1822_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417779}}, {"model": "metainfo.source", "pk": 18133, "fields": {"orig_filename": "Abranyi_Kornel_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417847}}, {"model": "metainfo.source", "pk": 18134, "fields": {"orig_filename": "Absenger_Anton_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417848}}, {"model": "metainfo.source", "pk": 18135, "fields": {"orig_filename": "Absolon_Karel_1877_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438583}}, {"model": "metainfo.source", "pk": 18136, "fields": {"orig_filename": "Abt_Anton_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417849}}, {"model": "metainfo.source", "pk": 18137, "fields": {"orig_filename": "Acerbi_Enrico_1785_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417850}}, {"model": "metainfo.source", "pk": 18138, "fields": {"orig_filename": "Acerbi_Giuseppe_1773_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417851}}, {"model": "metainfo.source", "pk": 18139, "fields": {"orig_filename": "Achazel_Matthias_1779_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3f.", "author": "", "orig_id": 1417852}}, {"model": "metainfo.source", "pk": 18140, "fields": {"orig_filename": "Achleuthner_Leonhard_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417853}}, {"model": "metainfo.source", "pk": 18141, "fields": {"orig_filename": "Ackerl_Johann_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431400}}, {"model": "metainfo.source", "pk": 18142, "fields": {"orig_filename": "Ackermann_Leopold_1771_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417854}}, {"model": "metainfo.source", "pk": 18143, "fields": {"orig_filename": "Ackner_Johann-Michael_1782_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417855}}, {"model": "metainfo.source", "pk": 18144, "fields": {"orig_filename": "Adamberger_Antonie_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417858}}, {"model": "metainfo.source", "pk": 18145, "fields": {"orig_filename": "Adamczik_Josef_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417859}}, {"model": "metainfo.source", "pk": 18146, "fields": {"orig_filename": "Adamek_Bohumil_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417860}}, {"model": "metainfo.source", "pk": 18147, "fields": {"orig_filename": "Adamek_Karel-Vaclav_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2147988}}, {"model": "metainfo.source", "pk": 18148, "fields": {"orig_filename": "Adamek_Karel_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417863}}, {"model": "metainfo.source", "pk": 18149, "fields": {"orig_filename": "Adametz_Karoline_1879_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1451307}}, {"model": "metainfo.source", "pk": 18150, "fields": {"orig_filename": "Adametz_Leopold_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417861}}, {"model": "metainfo.source", "pk": 18151, "fields": {"orig_filename": "Adamic_Emil_1877_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417862}}, {"model": "metainfo.source", "pk": 18152, "fields": {"orig_filename": "Adamkiewicz_Albert_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417864}}, {"model": "metainfo.source", "pk": 18153, "fields": {"orig_filename": "Adamovic_Lujo_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417865}}, {"model": "metainfo.source", "pk": 18154, "fields": {"orig_filename": "Adams_John-Quincy_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417866}}, {"model": "metainfo.source", "pk": 18155, "fields": {"orig_filename": "Adam_Heinrich_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417856}}, {"model": "metainfo.source", "pk": 18156, "fields": {"orig_filename": "Adam_Karl_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431473}}, {"model": "metainfo.source", "pk": 18157, "fields": {"orig_filename": "Adam_Walter_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417857}}, {"model": "metainfo.source", "pk": 18158, "fields": {"orig_filename": "Adelburg_August_1830_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417936}}, {"model": "metainfo.source", "pk": 18159, "fields": {"orig_filename": "Adler_Alfred_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417937}}, {"model": "metainfo.source", "pk": 18160, "fields": {"orig_filename": "Adler_Emanuel_1873_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417938}}, {"model": "metainfo.source", "pk": 18161, "fields": {"orig_filename": "Adler_Emma_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431442}}, {"model": "metainfo.source", "pk": 18162, "fields": {"orig_filename": "Adler_Eugen_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417939}}, {"model": "metainfo.source", "pk": 18163, "fields": {"orig_filename": "Adler_Felix_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431187}}, {"model": "metainfo.source", "pk": 18164, "fields": {"orig_filename": "Adler_Friedrich_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417940}}, {"model": "metainfo.source", "pk": 18165, "fields": {"orig_filename": "Adler_Guido_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6f.", "author": "", "orig_id": 1417941}}, {"model": "metainfo.source", "pk": 18166, "fields": {"orig_filename": "Adler_Karl_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417942}}, {"model": "metainfo.source", "pk": 18167, "fields": {"orig_filename": "Adler_Max_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417943}}, {"model": "metainfo.source", "pk": 18168, "fields": {"orig_filename": "Adler_Sigmund_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417944}}, {"model": "metainfo.source", "pk": 18169, "fields": {"orig_filename": "Adler_Viktor_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7f.", "author": "", "orig_id": 1417945}}, {"model": "metainfo.source", "pk": 18170, "fields": {"orig_filename": "Adler_Vinzenz_1826_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417946}}, {"model": "metainfo.source", "pk": 18171, "fields": {"orig_filename": "Adlmueller_Fred_1909_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438762}}, {"model": "metainfo.source", "pk": 18172, "fields": {"orig_filename": "Adolf_Helen_1895_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1431418}}, {"model": "metainfo.source", "pk": 18173, "fields": {"orig_filename": "Adolph_Karl_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417947}}, {"model": "metainfo.source", "pk": 18174, "fields": {"orig_filename": "Adrian-Dussek_Eduard_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417949}}, {"model": "metainfo.source", "pk": 18175, "fields": {"orig_filename": "Adrian_Karl_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417948}}, {"model": "metainfo.source", "pk": 18176, "fields": {"orig_filename": "Adrowitzer_Alfred_1916_1982.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1438806}}, {"model": "metainfo.source", "pk": 18177, "fields": {"orig_filename": "Ady_Andreas_1877_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417950}}, {"model": "metainfo.source", "pk": 18178, "fields": {"orig_filename": "Aehrenthal_Aloys_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8f.", "author": "", "orig_id": 1417951}}, {"model": "metainfo.source", "pk": 18179, "fields": {"orig_filename": "Aelschker_Edmund_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417952}}, {"model": "metainfo.source", "pk": 18180, "fields": {"orig_filename": "Afritsch_Anton_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417953}}, {"model": "metainfo.source", "pk": 18181, "fields": {"orig_filename": "Aglietti_Francesco_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417954}}, {"model": "metainfo.source", "pk": 18182, "fields": {"orig_filename": "Aglio_Agostino_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417955}}, {"model": "metainfo.source", "pk": 18183, "fields": {"orig_filename": "Agnoletto_Angelo_1743_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418029}}, {"model": "metainfo.source", "pk": 18184, "fields": {"orig_filename": "Agricola_Karl_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418030}}, {"model": "metainfo.source", "pk": 18185, "fields": {"orig_filename": "Ahna_Eleonore_1838_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418031}}, {"model": "metainfo.source", "pk": 18186, "fields": {"orig_filename": "Ahna_Heinrich_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418032}}, {"model": "metainfo.source", "pk": 18187, "fields": {"orig_filename": "Ahrer_Jacob_1888_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447275}}, {"model": "metainfo.source", "pk": 18188, "fields": {"orig_filename": "Aichelberg_Ludwig_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418033}}, {"model": "metainfo.source", "pk": 18189, "fields": {"orig_filename": "Aichelburg-Labia_Leopold_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418035}}, {"model": "metainfo.source", "pk": 18190, "fields": {"orig_filename": "Aichelburg_Eugen_1862_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418034}}, {"model": "metainfo.source", "pk": 18191, "fields": {"orig_filename": "Aichen_Josef_1745_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418036}}, {"model": "metainfo.source", "pk": 18192, "fields": {"orig_filename": "Aicher_Anton_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418037}}, {"model": "metainfo.source", "pk": 18193, "fields": {"orig_filename": "Aichhorn_Sigmund_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2254324}}, {"model": "metainfo.source", "pk": 18194, "fields": {"orig_filename": "Aichinger_Hermann_1885_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438873}}, {"model": "metainfo.source", "pk": 18195, "fields": {"orig_filename": "Aichinger_Hermann_1917_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438876}}, {"model": "metainfo.source", "pk": 18196, "fields": {"orig_filename": "Aichinger_Johann-Ev_1805_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418038}}, {"model": "metainfo.source", "pk": 18197, "fields": {"orig_filename": "Aichner_Simon_1818_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418039}}, {"model": "metainfo.source", "pk": 18198, "fields": {"orig_filename": "Aigner_Franz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10f.", "author": "", "orig_id": 1418040}}, {"model": "metainfo.source", "pk": 18199, "fields": {"orig_filename": "Aigner_Josef-Matthias_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418041}}, {"model": "metainfo.source", "pk": 18200, "fields": {"orig_filename": "Aigner_Michael_1805_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418042}}, {"model": "metainfo.source", "pk": 18201, "fields": {"orig_filename": "Ainhauser_Maria-Alberta-Eugenia_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1469933}}, {"model": "metainfo.source", "pk": 18202, "fields": {"orig_filename": "Ainmiller_Heinrich_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418043}}, {"model": "metainfo.source", "pk": 18203, "fields": {"orig_filename": "Ajdukiewicz_Siegmund_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418044}}, {"model": "metainfo.source", "pk": 18204, "fields": {"orig_filename": "Ajdukiewicz_Thaddaeus_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418045}}, {"model": "metainfo.source", "pk": 18205, "fields": {"orig_filename": "Albach_Joseph-Stanislaus_1795_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418046}}, {"model": "metainfo.source", "pk": 18206, "fields": {"orig_filename": "Albach_Julius_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418047}}, {"model": "metainfo.source", "pk": 18207, "fields": {"orig_filename": "Alber-Glanstaetten_August_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11f.", "author": "", "orig_id": 1418048}}, {"model": "metainfo.source", "pk": 18208, "fields": {"orig_filename": "Albertolli_Giocondo_1742_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418128}}, {"model": "metainfo.source", "pk": 18209, "fields": {"orig_filename": "Albert_August_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418049}}, {"model": "metainfo.source", "pk": 18210, "fields": {"orig_filename": "Albert_Eduard_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418050}}, {"model": "metainfo.source", "pk": 18211, "fields": {"orig_filename": "Albert_Michael_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418051}}, {"model": "metainfo.source", "pk": 18212, "fields": {"orig_filename": "Albieri_Pavel_1861_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147985}}, {"model": "metainfo.source", "pk": 18213, "fields": {"orig_filename": "Tschermak-Seysenegg_Gustav_1836_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 484f.", "author": "", "orig_id": 1425768}}, {"model": "metainfo.source", "pk": 18214, "fields": {"orig_filename": "Tschernich_Franz-Rudolf_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 485f.", "author": "", "orig_id": 1868111}}, {"model": "metainfo.source", "pk": 18215, "fields": {"orig_filename": "Tschiderer-Gleifheim_Ernst_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 486f.", "author": "", "orig_id": 1425806}}, {"model": "metainfo.source", "pk": 18216, "fields": {"orig_filename": "Tschiderer-Gleifheim_Johann-Nepomuk_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 486f.", "author": "", "orig_id": 1425807}}, {"model": "metainfo.source", "pk": 18217, "fields": {"orig_filename": "Tschinkel_Anton_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 487", "author": "", "orig_id": 1449391}}, {"model": "metainfo.source", "pk": 18218, "fields": {"orig_filename": "Tschinkel_August_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 487f.", "author": "", "orig_id": 1449390}}, {"model": "metainfo.source", "pk": 18219, "fields": {"orig_filename": "Tschinkel_Emanuel_1814_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488", "author": "", "orig_id": 1425811}}, {"model": "metainfo.source", "pk": 18220, "fields": {"orig_filename": "Tschinkel_Hans_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488f.", "author": "", "orig_id": 1445281}}, {"model": "metainfo.source", "pk": 18221, "fields": {"orig_filename": "Tschinkel_Theodor_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488", "author": "", "orig_id": 2298522}}, {"model": "metainfo.source", "pk": 18222, "fields": {"orig_filename": "Tschinkel_Wilhelm_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 489", "author": "", "orig_id": 2292498}}, {"model": "metainfo.source", "pk": 18223, "fields": {"orig_filename": "Tschoell_Johann-Valentin_1749_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 489f.", "author": "", "orig_id": 1425813}}, {"model": "metainfo.source", "pk": 18224, "fields": {"orig_filename": "Tschoepe_Emanuel_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 490f.", "author": "", "orig_id": 1425814}}, {"model": "metainfo.source", "pk": 18225, "fields": {"orig_filename": "Tschofenig_Gisela_1917_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 491", "author": "", "orig_id": 1425818}}, {"model": "metainfo.source", "pk": 18226, "fields": {"orig_filename": "Tschudi_Hugo_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 491f.", "author": "", "orig_id": 1425855}}, {"model": "metainfo.source", "pk": 18227, "fields": {"orig_filename": "Tschudi_Johann-Jakob_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 492f.", "author": "", "orig_id": 1425858}}, {"model": "metainfo.source", "pk": 18228, "fields": {"orig_filename": "Tschuggmall_Christian-Josef_1785_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 493f.", "author": "", "orig_id": 1425860}}, {"model": "metainfo.source", "pk": 18229, "fields": {"orig_filename": "Tschulik_Emanuel-Louis_1819_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 493f.", "author": "", "orig_id": 1425863}}, {"model": "metainfo.source", "pk": 18230, "fields": {"orig_filename": "Tschuppik_Friedrich_1816_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 494f.", "author": "", "orig_id": 2294062}}, {"model": "metainfo.source", "pk": 18231, "fields": {"orig_filename": "Tschuppik_Karl_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 495f.", "author": "", "orig_id": 1425864}}, {"model": "metainfo.source", "pk": 18232, "fields": {"orig_filename": "Tschurtschenthaler-Helmheim_Anton-Alois_1815_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 497", "author": "", "orig_id": 1425909}}, {"model": "metainfo.source", "pk": 18233, "fields": {"orig_filename": "Tschurtschenthaler-Helmheim_Heinrich_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 497f.", "author": "", "orig_id": 2264192}}, {"model": "metainfo.source", "pk": 18234, "fields": {"orig_filename": "Tschurtschenthaler_Johann_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 496", "author": "", "orig_id": 1425910}}, {"model": "metainfo.source", "pk": 18235, "fields": {"orig_filename": "Tschurtschenthaler_Paul_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 496f.", "author": "", "orig_id": 1425913}}, {"model": "metainfo.source", "pk": 18236, "fields": {"orig_filename": "Tschusi-Schmidhoffen_Viktor_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 498f.", "author": "", "orig_id": 1425916}}, {"model": "metainfo.source", "pk": 18237, "fields": {"orig_filename": "Tucek_Vincenc_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 499", "author": "", "orig_id": 1425953}}, {"model": "metainfo.source", "pk": 18238, "fields": {"orig_filename": "Tucny_Alois_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 499f.", "author": "", "orig_id": 2206927}}, {"model": "metainfo.source", "pk": 18239, "fields": {"orig_filename": "Tuczek_Anton_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 500", "author": "", "orig_id": 1455589}}, {"model": "metainfo.source", "pk": 18240, "fields": {"orig_filename": "Tuedoes_Istvan_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 500f.", "author": "", "orig_id": 1458424}}, {"model": "metainfo.source", "pk": 18241, "fields": {"orig_filename": "Tuerckheim-Altdorf_Friedrich-Rudolf_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 501f.", "author": "", "orig_id": 2264216}}, {"model": "metainfo.source", "pk": 18242, "fields": {"orig_filename": "Tuerck_Ludwig_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 501", "author": "", "orig_id": 1425957}}, {"model": "metainfo.source", "pk": 18243, "fields": {"orig_filename": "Tuerkel_Siegfried-Karl_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 504f.", "author": "", "orig_id": 1425475}}, {"model": "metainfo.source", "pk": 18244, "fields": {"orig_filename": "Tuerkheim-Geisslern_Ludwig-Johann-Nepomuk_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 505f.", "author": "", "orig_id": 1455594}}, {"model": "metainfo.source", "pk": 18245, "fields": {"orig_filename": "Tuerkheim_Ludwig_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 505f.", "author": "", "orig_id": 1425994}}, {"model": "metainfo.source", "pk": 18246, "fields": {"orig_filename": "Tuerk_Eduard_1852_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 402", "author": "", "orig_id": 1425962}}, {"model": "metainfo.source", "pk": 18247, "fields": {"orig_filename": "Tuerk_Johann-Baptist_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 502f.", "author": "", "orig_id": 1425987}}, {"model": "metainfo.source", "pk": 18248, "fields": {"orig_filename": "Tuerk_Karl_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 504", "author": "", "orig_id": 1425989}}, {"model": "metainfo.source", "pk": 18249, "fields": {"orig_filename": "Tuerk_Wilhelm_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 503f.", "author": "", "orig_id": 1425992}}, {"model": "metainfo.source", "pk": 18250, "fields": {"orig_filename": "Tuerr_Istvan_1825_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 506", "author": "", "orig_id": 1429094}}, {"model": "metainfo.source", "pk": 18251, "fields": {"orig_filename": "Tuka_Vojtech_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 506f.", "author": "", "orig_id": 1425998}}, {"model": "metainfo.source", "pk": 18252, "fields": {"orig_filename": "Tulka_Josef_1846_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 507f.", "author": "", "orig_id": 2167733}}, {"model": "metainfo.source", "pk": 18253, "fields": {"orig_filename": "Tullinger_Bertha_1861_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509", "author": "", "orig_id": 2293250}}, {"model": "metainfo.source", "pk": 18254, "fields": {"orig_filename": "Tullinger_Moritz_1866_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509", "author": "", "orig_id": 2269989}}, {"model": "metainfo.source", "pk": 18255, "fields": {"orig_filename": "Tullinger_Paula_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 508f.", "author": "", "orig_id": 1450315}}, {"model": "metainfo.source", "pk": 18256, "fields": {"orig_filename": "Tull_Oedoen_1870_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 508", "author": "", "orig_id": 1425999}}, {"model": "metainfo.source", "pk": 18257, "fields": {"orig_filename": "Tuma_Henrik_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509f.", "author": "", "orig_id": 1426003}}, {"model": "metainfo.source", "pk": 18258, "fields": {"orig_filename": "Tuma_Josef_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 510f.", "author": "", "orig_id": 1426027}}, {"model": "metainfo.source", "pk": 18259, "fields": {"orig_filename": "Tuma_Karel_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 511f.", "author": "", "orig_id": 1426028}}, {"model": "metainfo.source", "pk": 18260, "fields": {"orig_filename": "Tumova_Marie_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 512", "author": "", "orig_id": 2293165}}, {"model": "metainfo.source", "pk": 18261, "fields": {"orig_filename": "Trapp_Werner_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 426f.", "author": "", "orig_id": 1456014}}, {"model": "metainfo.source", "pk": 18262, "fields": {"orig_filename": "Trassler_Adolph-Karl_1793_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1456087}}, {"model": "metainfo.source", "pk": 18263, "fields": {"orig_filename": "Trassler_Johann-Baptist_1787_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1426130}}, {"model": "metainfo.source", "pk": 18264, "fields": {"orig_filename": "Trassler_Joseph-Georg_1759_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1426131}}, {"model": "metainfo.source", "pk": 18265, "fields": {"orig_filename": "Trattinnick_Carl_1801_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 428f.", "author": "", "orig_id": 1456090}}, {"model": "metainfo.source", "pk": 18266, "fields": {"orig_filename": "Trattinnick_Leopold_1764_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 428f.", "author": "", "orig_id": 1426136}}, {"model": "metainfo.source", "pk": 18267, "fields": {"orig_filename": "Trattner-Karolyi-Karolypaty-Vasvar_Istvan_1794_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 2200824}}, {"model": "metainfo.source", "pk": 18268, "fields": {"orig_filename": "Trattner-Petroza_Janos-Tamas_1789_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 1458430}}, {"model": "metainfo.source", "pk": 18269, "fields": {"orig_filename": "Trattner-Petroza_Matyas_1745_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 2200701}}, {"model": "metainfo.source", "pk": 18270, "fields": {"orig_filename": "Traub_Hugo_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 431", "author": "", "orig_id": 2206758}}, {"model": "metainfo.source", "pk": 18271, "fields": {"orig_filename": "Traunfellner_Alois_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 431f.", "author": "", "orig_id": 1425576}}, {"model": "metainfo.source", "pk": 18272, "fields": {"orig_filename": "Traunsteiner_Joseph_1798_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 432f.", "author": "", "orig_id": 1447654}}, {"model": "metainfo.source", "pk": 18273, "fields": {"orig_filename": "Trausch_Joseph-Karl_1842_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433", "author": "", "orig_id": 2201126}}, {"model": "metainfo.source", "pk": 18274, "fields": {"orig_filename": "Trausch_Joseph_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433", "author": "", "orig_id": 1425612}}, {"model": "metainfo.source", "pk": 18275, "fields": {"orig_filename": "Trautenberger_Gustav-Gottlieb_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 434f.", "author": "", "orig_id": 1425619}}, {"model": "metainfo.source", "pk": 18276, "fields": {"orig_filename": "Trautmann_Leopold_1766_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 435", "author": "", "orig_id": 1425661}}, {"model": "metainfo.source", "pk": 18277, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Ferdinand_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 435f.", "author": "", "orig_id": 1425669}}, {"model": "metainfo.source", "pk": 18278, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Ferdinand_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 436f.", "author": "", "orig_id": 1425667}}, {"model": "metainfo.source", "pk": 18279, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Josef_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 437f.", "author": "", "orig_id": 1456083}}, {"model": "metainfo.source", "pk": 18280, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Joseph-Ferdinand_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 437", "author": "", "orig_id": 1425705}}, {"model": "metainfo.source", "pk": 18281, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Maria-Thaddaeus_1761_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 438", "author": "", "orig_id": 1425708}}, {"model": "metainfo.source", "pk": 18282, "fields": {"orig_filename": "Traut_Karl_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433f.", "author": "", "orig_id": 1425618}}, {"model": "metainfo.source", "pk": 18283, "fields": {"orig_filename": "Trauzl_Isidor_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 438f.", "author": "", "orig_id": 1425712}}, {"model": "metainfo.source", "pk": 18284, "fields": {"orig_filename": "Trau_Carl_1811_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429f.", "author": "", "orig_id": 1425482}}, {"model": "metainfo.source", "pk": 18285, "fields": {"orig_filename": "Trau_Franz_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 430", "author": "", "orig_id": 1425481}}, {"model": "metainfo.source", "pk": 18286, "fields": {"orig_filename": "Trau_Franz_1881_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 430f.", "author": "", "orig_id": 1453314}}, {"model": "metainfo.source", "pk": 18287, "fields": {"orig_filename": "Trcka_Anton-Josef_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 439f.", "author": "", "orig_id": 1425749}}, {"model": "metainfo.source", "pk": 18288, "fields": {"orig_filename": "Trebitsch-Lincoln_Ignatius-Timothy_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 442f.", "author": "", "orig_id": 1425791}}, {"model": "metainfo.source", "pk": 18289, "fields": {"orig_filename": "Trebitsch_Arthur_1880_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1425752}}, {"model": "metainfo.source", "pk": 18290, "fields": {"orig_filename": "Trebitsch_Leopold_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1414302}}, {"model": "metainfo.source", "pk": 18291, "fields": {"orig_filename": "Trebitsch_Nehemias_1779_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441", "author": "", "orig_id": 1425753}}, {"model": "metainfo.source", "pk": 18292, "fields": {"orig_filename": "Trebitsch_Oscar_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1453718}}, {"model": "metainfo.source", "pk": 18293, "fields": {"orig_filename": "Trebitsch_Rudolf_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441f.", "author": "", "orig_id": 1425755}}, {"model": "metainfo.source", "pk": 18294, "fields": {"orig_filename": "Trebitsch_Sigmund_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441", "author": "", "orig_id": 2286076}}, {"model": "metainfo.source", "pk": 18295, "fields": {"orig_filename": "Treffer_Georg_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 443f.", "author": "", "orig_id": 1425795}}, {"model": "metainfo.source", "pk": 18296, "fields": {"orig_filename": "Trefort_Agoston_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 444", "author": "", "orig_id": 1425880}}, {"model": "metainfo.source", "pk": 18297, "fields": {"orig_filename": "Treiber_Josef_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 444f.", "author": "", "orig_id": 1426138}}, {"model": "metainfo.source", "pk": 18298, "fields": {"orig_filename": "Treitl_Josef_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 445f.", "author": "", "orig_id": 1426146}}, {"model": "metainfo.source", "pk": 18299, "fields": {"orig_filename": "Treitschke_Georg-Friedrich_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 446f.", "author": "", "orig_id": 1426147}}, {"model": "metainfo.source", "pk": 18300, "fields": {"orig_filename": "Treitschke_Magdalena_1788_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 447", "author": "", "orig_id": 1456216}}, {"model": "metainfo.source", "pk": 18301, "fields": {"orig_filename": "Treitz_Vaclav_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 447f.", "author": "", "orig_id": 1447929}}, {"model": "metainfo.source", "pk": 18302, "fields": {"orig_filename": "Tremler_Karoline-Wilhelmine_1791_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 449", "author": "", "orig_id": 2279028}}, {"model": "metainfo.source", "pk": 18303, "fields": {"orig_filename": "Tremler_Wenzel_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 448f.", "author": "", "orig_id": 1425442}}, {"model": "metainfo.source", "pk": 18304, "fields": {"orig_filename": "Treml_Friedrich_1816_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 448", "author": "", "orig_id": 1425440}}, {"model": "metainfo.source", "pk": 18305, "fields": {"orig_filename": "Tremmel_Ludwig_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 449f.", "author": "", "orig_id": 1450307}}, {"model": "metainfo.source", "pk": 18306, "fields": {"orig_filename": "Trenkler_Anton-Gustav_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 450", "author": "", "orig_id": 1425490}}, {"model": "metainfo.source", "pk": 18307, "fields": {"orig_filename": "Trenkwalder_Dominik_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 452f.", "author": "", "orig_id": 1425537}}, {"model": "metainfo.source", "pk": 18308, "fields": {"orig_filename": "Trenkwald_Hermann_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 450f.", "author": "", "orig_id": 1425493}}, {"model": "metainfo.source", "pk": 18309, "fields": {"orig_filename": "Trenkwald_Josef-Mathias_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 451f.", "author": "", "orig_id": 1425494}}, {"model": "metainfo.source", "pk": 18310, "fields": {"orig_filename": "Trentini_Albert_1878_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 453", "author": "", "orig_id": 1424334}}, {"model": "metainfo.source", "pk": 18311, "fields": {"orig_filename": "Trentsensky_Josef_1794_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454", "author": "", "orig_id": 1448566}}, {"model": "metainfo.source", "pk": 18312, "fields": {"orig_filename": "Trentsensky_Mathias_1790_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454", "author": "", "orig_id": 1425582}}, {"model": "metainfo.source", "pk": 18313, "fields": {"orig_filename": "Treo_Dragotin_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454f.", "author": "", "orig_id": 2169212}}, {"model": "metainfo.source", "pk": 18314, "fields": {"orig_filename": "Treo_Wilhelm_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 455", "author": "", "orig_id": 2169408}}, {"model": "metainfo.source", "pk": 18315, "fields": {"orig_filename": "Tresic-Pavicic_Ante_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 455f.", "author": "", "orig_id": 2047431}}, {"model": "metainfo.source", "pk": 18316, "fields": {"orig_filename": "Treuinfels_Leo-Maria_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 456f.", "author": "", "orig_id": 1425674}}, {"model": "metainfo.source", "pk": 18317, "fields": {"orig_filename": "Treumann_Karl_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 457f.", "author": "", "orig_id": 1425676}}, {"model": "metainfo.source", "pk": 18318, "fields": {"orig_filename": "Treumann_Louis_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 458f.", "author": "", "orig_id": 1425677}}, {"model": "metainfo.source", "pk": 18319, "fields": {"orig_filename": "Treusch-Buttlar-Brandenfels_Oskar_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 459", "author": "", "orig_id": 1425678}}, {"model": "metainfo.source", "pk": 18320, "fields": {"orig_filename": "Treval_Emil_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 459f.", "author": "", "orig_id": 2174359}}, {"model": "metainfo.source", "pk": 18321, "fields": {"orig_filename": "Treves_Emilio_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 460f.", "author": "", "orig_id": 1456353}}, {"model": "metainfo.source", "pk": 18322, "fields": {"orig_filename": "Treves_Sabato-Graziadio_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461", "author": "", "orig_id": 1456359}}, {"model": "metainfo.source", "pk": 18323, "fields": {"orig_filename": "Trevisanato_Giuseppe-Luigi_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461", "author": "", "orig_id": 1425719}}, {"model": "metainfo.source", "pk": 18324, "fields": {"orig_filename": "Triebensee_Henriette_1819_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 462f.", "author": "", "orig_id": 2298411}}, {"model": "metainfo.source", "pk": 18325, "fields": {"orig_filename": "Triebensee_Josef_1772_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 462f.", "author": "", "orig_id": 1456419}}, {"model": "metainfo.source", "pk": 18326, "fields": {"orig_filename": "Trieb_Siegfried-Karl_1899_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461f.", "author": "", "orig_id": 1447848}}, {"model": "metainfo.source", "pk": 18327, "fields": {"orig_filename": "Trientl_Adolf_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463", "author": "", "orig_id": 1425842}}, {"model": "metainfo.source", "pk": 18328, "fields": {"orig_filename": "Trientl_Tobias_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463", "author": "", "orig_id": 1425843}}, {"model": "metainfo.source", "pk": 18329, "fields": {"orig_filename": "Triesnecker_Franz-De-Paula_1745_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463f.", "author": "", "orig_id": 1425848}}, {"model": "metainfo.source", "pk": 18330, "fields": {"orig_filename": "Triulzi_Anton_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 464f.", "author": "", "orig_id": 1456429}}, {"model": "metainfo.source", "pk": 18331, "fields": {"orig_filename": "Triulzi_Anton_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 465", "author": "", "orig_id": 1425895}}, {"model": "metainfo.source", "pk": 18332, "fields": {"orig_filename": "Trnina_Milka_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 465f.", "author": "", "orig_id": 1434342}}, {"model": "metainfo.source", "pk": 18333, "fields": {"orig_filename": "Trnka-Laberon_Ottokar_1871_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 466f.", "author": "", "orig_id": 1425903}}, {"model": "metainfo.source", "pk": 18334, "fields": {"orig_filename": "Trnka_Frantisek-Dobromysl_1798_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 466", "author": "", "orig_id": 2174389}}, {"model": "metainfo.source", "pk": 18335, "fields": {"orig_filename": "Trnobransky_Vaclav-Vilem_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 467", "author": "", "orig_id": 2174401}}, {"model": "metainfo.source", "pk": 18336, "fields": {"orig_filename": "Trojan-Bylanfeld_Frantisek-Bretislav_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 468f.", "author": "", "orig_id": 1455400}}, {"model": "metainfo.source", "pk": 18337, "fields": {"orig_filename": "Trojan_Alois-Pravoslav_1815_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 467f.", "author": "", "orig_id": 1426057}}, {"model": "metainfo.source", "pk": 18338, "fields": {"orig_filename": "Troll-Borostyani_Irma_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 469f.", "author": "", "orig_id": 1426062}}, {"model": "metainfo.source", "pk": 18339, "fields": {"orig_filename": "Trollmann-Lovcenberg_Ignaz_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 470", "author": "", "orig_id": 1426097}}, {"model": "metainfo.source", "pk": 18340, "fields": {"orig_filename": "Tropp_Neumann_1873_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 470f.", "author": "", "orig_id": 2202201}}, {"model": "metainfo.source", "pk": 18341, "fields": {"orig_filename": "Tropsch_Rudolf_1870_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 471f.", "author": "", "orig_id": 1426101}}, {"model": "metainfo.source", "pk": 18342, "fields": {"orig_filename": "Trops_Stjepan_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 471", "author": "", "orig_id": 1448671}}, {"model": "metainfo.source", "pk": 18343, "fields": {"orig_filename": "Troskow_Rudolf_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 472", "author": "", "orig_id": 1423808}}, {"model": "metainfo.source", "pk": 18344, "fields": {"orig_filename": "Trost_Johann_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 472f.", "author": "", "orig_id": 1426104}}, {"model": "metainfo.source", "pk": 18345, "fields": {"orig_filename": "Trotter_Camillo_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 473", "author": "", "orig_id": 1426108}}, {"model": "metainfo.source", "pk": 18346, "fields": {"orig_filename": "Trstenjak_Anton_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 473f.", "author": "", "orig_id": 1425452}}, {"model": "metainfo.source", "pk": 18347, "fields": {"orig_filename": "Trstenjak_Davorin_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 474", "author": "", "orig_id": 1425453}}, {"model": "metainfo.source", "pk": 18348, "fields": {"orig_filename": "Trstenjak_Davorin_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 474f.", "author": "", "orig_id": 2169524}}, {"model": "metainfo.source", "pk": 18349, "fields": {"orig_filename": "Trubetzkoy_Nikolaj-Sergeevic_1890_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 475f.", "author": "", "orig_id": 1425456}}, {"model": "metainfo.source", "pk": 18350, "fields": {"orig_filename": "Truchsess-Waldburg-Zeil_Maria-Walburga_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 476", "author": "", "orig_id": 1425458}}, {"model": "metainfo.source", "pk": 18351, "fields": {"orig_filename": "Truhlar_Antonin_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 476f.", "author": "", "orig_id": 1425631}}, {"model": "metainfo.source", "pk": 18352, "fields": {"orig_filename": "Truhlar_Josef_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 477f.", "author": "", "orig_id": 1425632}}, {"model": "metainfo.source", "pk": 18353, "fields": {"orig_filename": "Trumbic_Ante_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 478", "author": "", "orig_id": 1425633}}, {"model": "metainfo.source", "pk": 18354, "fields": {"orig_filename": "Truxa_Celestina_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 478f.", "author": "", "orig_id": 1425640}}, {"model": "metainfo.source", "pk": 18355, "fields": {"orig_filename": "Truxa_Hans-Maria_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 479f.", "author": "", "orig_id": 1425641}}, {"model": "metainfo.source", "pk": 18356, "fields": {"orig_filename": "Trylovskyj_Kyrylo_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 480", "author": "", "orig_id": 1425643}}, {"model": "metainfo.source", "pk": 18357, "fields": {"orig_filename": "Tschabuschnigg_Adolf-Ignatz_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 480f.", "author": "", "orig_id": 1425683}}, {"model": "metainfo.source", "pk": 18358, "fields": {"orig_filename": "Tschager_Josef_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 481f.", "author": "", "orig_id": 1425685}}, {"model": "metainfo.source", "pk": 18359, "fields": {"orig_filename": "Tschallener_Johann-Nikolaus_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 482", "author": "", "orig_id": 1425687}}, {"model": "metainfo.source", "pk": 18360, "fields": {"orig_filename": "Tschampa_Franziska_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 482f.", "author": "", "orig_id": 1455528}}, {"model": "metainfo.source", "pk": 18361, "fields": {"orig_filename": "Tschapeck_Hippolyt_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 483", "author": "", "orig_id": 1468335}}, {"model": "metainfo.source", "pk": 18362, "fields": {"orig_filename": "Tschebull_Anton_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 483f.", "author": "", "orig_id": 1825316}}, {"model": "metainfo.source", "pk": 18363, "fields": {"orig_filename": "Toepper_Andreas_1786_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 369f.", "author": "", "orig_id": 1423699}}, {"model": "metainfo.source", "pk": 18364, "fields": {"orig_filename": "Toerley-Csantaver_Jozsef_1858_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 370", "author": "", "orig_id": 2195987}}, {"model": "metainfo.source", "pk": 18365, "fields": {"orig_filename": "Toeroek-Csaford-Jobbahaza_Janos_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 372ff.", "author": "", "orig_id": 1423733}}, {"model": "metainfo.source", "pk": 18366, "fields": {"orig_filename": "Toeroek-Nemescso_Ignac_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 373", "author": "", "orig_id": 1456066}}, {"model": "metainfo.source", "pk": 18367, "fields": {"orig_filename": "Toeroek-Ponor_Aurel_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 373f.", "author": "", "orig_id": 1423730}}, {"model": "metainfo.source", "pk": 18368, "fields": {"orig_filename": "Toeroek_Gyula_1888_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 370f.", "author": "", "orig_id": 2196008}}, {"model": "metainfo.source", "pk": 18369, "fields": {"orig_filename": "Toeroek_Lajos_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 371f.", "author": "", "orig_id": 1454773}}, {"model": "metainfo.source", "pk": 18370, "fields": {"orig_filename": "Toeroek_Pal_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 372", "author": "", "orig_id": 1423737}}, {"model": "metainfo.source", "pk": 18371, "fields": {"orig_filename": "Toery_Emil_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374", "author": "", "orig_id": 1458609}}, {"model": "metainfo.source", "pk": 18372, "fields": {"orig_filename": "Toery_Gusztav_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374", "author": "", "orig_id": 1423739}}, {"model": "metainfo.source", "pk": 18373, "fields": {"orig_filename": "Tofan_George_1880_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374f.", "author": "", "orig_id": 1423740}}, {"model": "metainfo.source", "pk": 18374, "fields": {"orig_filename": "Toggenburg_Georg-Otto_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 375f.", "author": "", "orig_id": 1423776}}, {"model": "metainfo.source", "pk": 18375, "fields": {"orig_filename": "Toldt_Carl_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 376", "author": "", "orig_id": 1423783}}, {"model": "metainfo.source", "pk": 18376, "fields": {"orig_filename": "Toldy_Ferenc_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 376f.", "author": "", "orig_id": 1423784}}, {"model": "metainfo.source", "pk": 18377, "fields": {"orig_filename": "Tollinger_Johann_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 377f.", "author": "", "orig_id": 1423834}}, {"model": "metainfo.source", "pk": 18378, "fields": {"orig_filename": "Tolloczko_Stanislaw-Karol_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 378f.", "author": "", "orig_id": 2239184}}, {"model": "metainfo.source", "pk": 18379, "fields": {"orig_filename": "Tolman_Bretislav_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 379", "author": "", "orig_id": 2206609}}, {"model": "metainfo.source", "pk": 18380, "fields": {"orig_filename": "Tolnai_Lajos_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 379f.", "author": "", "orig_id": 2202613}}, {"model": "metainfo.source", "pk": 18381, "fields": {"orig_filename": "Tolnai_Simon_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 380f.", "author": "", "orig_id": 1454771}}, {"model": "metainfo.source", "pk": 18382, "fields": {"orig_filename": "Tolomei_Giampaolo_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381", "author": "", "orig_id": 1456146}}, {"model": "metainfo.source", "pk": 18383, "fields": {"orig_filename": "Toman_Aleksander_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381f.", "author": "", "orig_id": 2168393}}, {"model": "metainfo.source", "pk": 18384, "fields": {"orig_filename": "Toman_Hugo_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 382f.", "author": "", "orig_id": 1423839}}, {"model": "metainfo.source", "pk": 18385, "fields": {"orig_filename": "Toman_Josipina_1833_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 383", "author": "", "orig_id": 1423840}}, {"model": "metainfo.source", "pk": 18386, "fields": {"orig_filename": "Toman_Karel_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 383f.", "author": "", "orig_id": 1444353}}, {"model": "metainfo.source", "pk": 18387, "fields": {"orig_filename": "Toman_Lovro_1827_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 384f.", "author": "", "orig_id": 1423841}}, {"model": "metainfo.source", "pk": 18388, "fields": {"orig_filename": "Tomaschek-Stradowa_Johann-Adolf_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 387f.", "author": "", "orig_id": 1423939}}, {"model": "metainfo.source", "pk": 18389, "fields": {"orig_filename": "Tomaschek_Anton_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 358", "author": "", "orig_id": 1442935}}, {"model": "metainfo.source", "pk": 18390, "fields": {"orig_filename": "Tomaschek_Ignaz_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 385f.", "author": "", "orig_id": 1888528}}, {"model": "metainfo.source", "pk": 18391, "fields": {"orig_filename": "Tomaschek_Karl_1828_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 386f.", "author": "", "orig_id": 1423895}}, {"model": "metainfo.source", "pk": 18392, "fields": {"orig_filename": "Tomaschek_Wilhelm_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 387", "author": "", "orig_id": 1423457}}, {"model": "metainfo.source", "pk": 18393, "fields": {"orig_filename": "Tomasek_Frantisek_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 388", "author": "", "orig_id": 1423459}}, {"model": "metainfo.source", "pk": 18394, "fields": {"orig_filename": "Tomasek_Vaclav-Jan_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 388f.", "author": "", "orig_id": 1423894}}, {"model": "metainfo.source", "pk": 18395, "fields": {"orig_filename": "Tomaselli_Carl_1809_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 389f.", "author": "", "orig_id": 1447920}}, {"model": "metainfo.source", "pk": 18396, "fields": {"orig_filename": "Tomaselli_Carl_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390", "author": "", "orig_id": 2297827}}, {"model": "metainfo.source", "pk": 18397, "fields": {"orig_filename": "Tomaselli_Franz_1801_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390f.", "author": "", "orig_id": 1423485}}, {"model": "metainfo.source", "pk": 18398, "fields": {"orig_filename": "Tomaselli_Giuseppe_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391", "author": "", "orig_id": 1423487}}, {"model": "metainfo.source", "pk": 18399, "fields": {"orig_filename": "Tomaselli_Ignaz_1812_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390f.", "author": "", "orig_id": 1423486}}, {"model": "metainfo.source", "pk": 18400, "fields": {"orig_filename": "Tomaselli_Katharina_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391", "author": "", "orig_id": 1423489}}, {"model": "metainfo.source", "pk": 18401, "fields": {"orig_filename": "Tomasic_Nikola_1864_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391f.", "author": "", "orig_id": 1423535}}, {"model": "metainfo.source", "pk": 18402, "fields": {"orig_filename": "Tomasini_Alois-Basil-Nikolaus_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 392f.", "author": "", "orig_id": 1823286}}, {"model": "metainfo.source", "pk": 18403, "fields": {"orig_filename": "Tomasini_Anton-Edmund_1775_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 392f.", "author": "", "orig_id": 1823272}}, {"model": "metainfo.source", "pk": 18404, "fields": {"orig_filename": "Tomassich_Franz-Xaver_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 393", "author": "", "orig_id": 1423534}}, {"model": "metainfo.source", "pk": 18405, "fields": {"orig_filename": "Tomaszczuk_Konstantin_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 393f.", "author": "", "orig_id": 1423555}}, {"model": "metainfo.source", "pk": 18406, "fields": {"orig_filename": "Toma_Matthias-Rudolf_1792_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381", "author": "", "orig_id": 1424146}}, {"model": "metainfo.source", "pk": 18407, "fields": {"orig_filename": "Tomcsanyi-Tomcsiny_Adam_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 394", "author": "", "orig_id": 1456262}}, {"model": "metainfo.source", "pk": 18408, "fields": {"orig_filename": "Tomec_Heinrich_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 394f.", "author": "", "orig_id": 1423558}}, {"model": "metainfo.source", "pk": 18409, "fields": {"orig_filename": "Tomek_Wacslaw-Wladiwoj_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 395f.", "author": "", "orig_id": 1423588}}, {"model": "metainfo.source", "pk": 18410, "fields": {"orig_filename": "Tomicek_Jan-Slavomir_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 396", "author": "", "orig_id": 1456267}}, {"model": "metainfo.source", "pk": 18411, "fields": {"orig_filename": "Tominc_Jozef-Jakob_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 396f.", "author": "", "orig_id": 1978736}}, {"model": "metainfo.source", "pk": 18412, "fields": {"orig_filename": "Tominsek_Fran_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 2168570}}, {"model": "metainfo.source", "pk": 18413, "fields": {"orig_filename": "Tominz_Alfredo_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 1456270}}, {"model": "metainfo.source", "pk": 18414, "fields": {"orig_filename": "Tominz_Augusto_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 1456271}}, {"model": "metainfo.source", "pk": 18415, "fields": {"orig_filename": "Tommaseo_Niccolo_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397f.", "author": "", "orig_id": 1423627}}, {"model": "metainfo.source", "pk": 18416, "fields": {"orig_filename": "Tommasini_Muzio-Giuseppe_1794_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 399f.", "author": "", "orig_id": 1456414}}, {"model": "metainfo.source", "pk": 18417, "fields": {"orig_filename": "Tommasi_Natale_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 398f.", "author": "", "orig_id": 1423527}}, {"model": "metainfo.source", "pk": 18418, "fields": {"orig_filename": "Tompa_Mihaly_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 400f.", "author": "", "orig_id": 1423664}}, {"model": "metainfo.source", "pk": 18419, "fields": {"orig_filename": "Tomsa_Frantisek-Bohumil_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 401", "author": "", "orig_id": 1456416}}, {"model": "metainfo.source", "pk": 18420, "fields": {"orig_filename": "Tomschik_Josef_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 401f.", "author": "", "orig_id": 1423788}}, {"model": "metainfo.source", "pk": 18421, "fields": {"orig_filename": "Tomsic_Anton_1842_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 402f.", "author": "", "orig_id": 1456418}}, {"model": "metainfo.source", "pk": 18422, "fields": {"orig_filename": "Tomssa_Sylvester_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 403", "author": "", "orig_id": 2199818}}, {"model": "metainfo.source", "pk": 18423, "fields": {"orig_filename": "Tonkli_Josip_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 403f.", "author": "", "orig_id": 1423846}}, {"model": "metainfo.source", "pk": 18424, "fields": {"orig_filename": "Tonkli_Nikolaj_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 404", "author": "", "orig_id": 2168757}}, {"model": "metainfo.source", "pk": 18425, "fields": {"orig_filename": "Tonner_Emanuel_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 404f.", "author": "", "orig_id": 1423848}}, {"model": "metainfo.source", "pk": 18426, "fields": {"orig_filename": "Topic_Frantisek_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405", "author": "", "orig_id": 2206716}}, {"model": "metainfo.source", "pk": 18427, "fields": {"orig_filename": "Topic_Jaroslav_1886_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405", "author": "", "orig_id": 2297892}}, {"model": "metainfo.source", "pk": 18428, "fields": {"orig_filename": "Topitz_Anton-Maria_1887_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 406", "author": "", "orig_id": 1450247}}, {"model": "metainfo.source", "pk": 18429, "fields": {"orig_filename": "Topitz_Anton_1857_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405f.", "author": "", "orig_id": 1423856}}, {"model": "metainfo.source", "pk": 18430, "fields": {"orig_filename": "Torbar_Josip_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 406f.", "author": "", "orig_id": 1423858}}, {"model": "metainfo.source", "pk": 18431, "fields": {"orig_filename": "Torggler_Erich_1899_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 407f.", "author": "", "orig_id": 1423899}}, {"model": "metainfo.source", "pk": 18432, "fields": {"orig_filename": "Torggler_Karl_1892_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 408", "author": "", "orig_id": 1423897}}, {"model": "metainfo.source", "pk": 18433, "fields": {"orig_filename": "Torma-Csicsokeresztur_Karoly_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 408f.", "author": "", "orig_id": 1455388}}, {"model": "metainfo.source", "pk": 18434, "fields": {"orig_filename": "Torma-Csicsokeresztur_Zsofia_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 409", "author": "", "orig_id": 1423902}}, {"model": "metainfo.source", "pk": 18435, "fields": {"orig_filename": "Tormay-Nadudvar_Bela_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 410", "author": "", "orig_id": 1423903}}, {"model": "metainfo.source", "pk": 18436, "fields": {"orig_filename": "Tormay_Karoly_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 409f.", "author": "", "orig_id": 1455449}}, {"model": "metainfo.source", "pk": 18437, "fields": {"orig_filename": "Tornai_Gyula_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 410f.", "author": "", "orig_id": 1454772}}, {"model": "metainfo.source", "pk": 18438, "fields": {"orig_filename": "Tornquist_Alexander_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 411", "author": "", "orig_id": 1423906}}, {"model": "metainfo.source", "pk": 18439, "fields": {"orig_filename": "Tornyai_Janos_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 412", "author": "", "orig_id": 1423905}}, {"model": "metainfo.source", "pk": 18440, "fields": {"orig_filename": "Torosiewicz_Jozef_1784_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 413", "author": "", "orig_id": 2262700}}, {"model": "metainfo.source", "pk": 18441, "fields": {"orig_filename": "Torosiewicz_Teodor_1789_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 412f.", "author": "", "orig_id": 1455457}}, {"model": "metainfo.source", "pk": 18442, "fields": {"orig_filename": "Toth-Fehergyarmat_Tihamer_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 418f.", "author": "", "orig_id": 1425778}}, {"model": "metainfo.source", "pk": 18443, "fields": {"orig_filename": "Toth_Arpad_1886_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 413f.", "author": "", "orig_id": 2195965}}, {"model": "metainfo.source", "pk": 18444, "fields": {"orig_filename": "Toth_Bela_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 414", "author": "", "orig_id": 1423988}}, {"model": "metainfo.source", "pk": 18445, "fields": {"orig_filename": "Toth_Imre_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 414f.", "author": "", "orig_id": 1458519}}, {"model": "metainfo.source", "pk": 18446, "fields": {"orig_filename": "Toth_Jozsef_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 415", "author": "", "orig_id": 1455790}}, {"model": "metainfo.source", "pk": 18447, "fields": {"orig_filename": "Toth_Kalman_1831_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 415f.", "author": "", "orig_id": 1458524}}, {"model": "metainfo.source", "pk": 18448, "fields": {"orig_filename": "Toth_Laszlo_1869_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 416", "author": "", "orig_id": 1458525}}, {"model": "metainfo.source", "pk": 18449, "fields": {"orig_filename": "Toth_Loerinc_1814_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 416f.", "author": "", "orig_id": 1425745}}, {"model": "metainfo.source", "pk": 18450, "fields": {"orig_filename": "Toth_Samuel_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 417", "author": "", "orig_id": 1458528}}, {"model": "metainfo.source", "pk": 18451, "fields": {"orig_filename": "Toth_Victor_1846_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 417f.", "author": "", "orig_id": 1425779}}, {"model": "metainfo.source", "pk": 18452, "fields": {"orig_filename": "Toth_Zoltan_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 418", "author": "", "orig_id": 2195982}}, {"model": "metainfo.source", "pk": 18453, "fields": {"orig_filename": "Touaillon_Christine_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 419", "author": "", "orig_id": 1425787}}, {"model": "metainfo.source", "pk": 18454, "fields": {"orig_filename": "Toula_Franz_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 419f.", "author": "", "orig_id": 1425788}}, {"model": "metainfo.source", "pk": 18455, "fields": {"orig_filename": "Trabert_Wilhelm_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 420f.", "author": "", "orig_id": 1425828}}, {"model": "metainfo.source", "pk": 18456, "fields": {"orig_filename": "Traeger_Richard_1895_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 421", "author": "", "orig_id": 2170094}}, {"model": "metainfo.source", "pk": 18457, "fields": {"orig_filename": "Trakl_Georg_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 421ff.", "author": "", "orig_id": 1425921}}, {"model": "metainfo.source", "pk": 18458, "fields": {"orig_filename": "Trakl_Grete_1892_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 422f.", "author": "", "orig_id": 1425922}}, {"model": "metainfo.source", "pk": 18459, "fields": {"orig_filename": "Trampler_Richard_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 423", "author": "", "orig_id": 1425926}}, {"model": "metainfo.source", "pk": 18460, "fields": {"orig_filename": "Trampota_Jan_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 423f.", "author": "", "orig_id": 2166212}}, {"model": "metainfo.source", "pk": 18461, "fields": {"orig_filename": "Trampusch_Carl-Franz_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 424", "author": "", "orig_id": 1455958}}, {"model": "metainfo.source", "pk": 18462, "fields": {"orig_filename": "Trapp_August_1836_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 425", "author": "", "orig_id": 1456012}}, {"model": "metainfo.source", "pk": 18463, "fields": {"orig_filename": "Trapp_Georg_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 424f.", "author": "", "orig_id": 1426046}}, {"model": "metainfo.source", "pk": 18464, "fields": {"orig_filename": "Trapp_Hede_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 425f.", "author": "", "orig_id": 1426079}}, {"model": "metainfo.source", "pk": 18465, "fields": {"orig_filename": "Frigessi-Rattalma-Nobile_Arnoldo_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301248}}, {"model": "metainfo.source", "pk": 18466, "fields": {"orig_filename": "Fuchs_Hans-Maria_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1445636}}, {"model": "metainfo.source", "pk": 18467, "fields": {"orig_filename": "Fuchs_Patriz_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301462}}, {"model": "metainfo.source", "pk": 18468, "fields": {"orig_filename": "Fucik_Julius_1872_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1444491}}, {"model": "metainfo.source", "pk": 18469, "fields": {"orig_filename": "Gross_Anton_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297475}}, {"model": "metainfo.source", "pk": 18470, "fields": {"orig_filename": "Hatschek_Julius-Karl_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419709}}, {"model": "metainfo.source", "pk": 18471, "fields": {"orig_filename": "Hermann-Otavsky_Karel_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1451569}}, {"model": "metainfo.source", "pk": 18472, "fields": {"orig_filename": "Heyrovsky_Leopold_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1451357}}, {"model": "metainfo.source", "pk": 18473, "fields": {"orig_filename": "Hottner-Grefe_Anna_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1449623}}, {"model": "metainfo.source", "pk": 18474, "fields": {"orig_filename": "Keller_Alois_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301267}}, {"model": "metainfo.source", "pk": 18475, "fields": {"orig_filename": "Keller_Josef_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2299890}}, {"model": "metainfo.source", "pk": 18476, "fields": {"orig_filename": "Kotula_Boleslaus-Andreas_1849_1898.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301277}}, {"model": "metainfo.source", "pk": 18477, "fields": {"orig_filename": "Kraskovits_Guido_1881_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2299496}}, {"model": "metainfo.source", "pk": 18478, "fields": {"orig_filename": "Mitteregger_Josef_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1462939}}, {"model": "metainfo.source", "pk": 18479, "fields": {"orig_filename": "Moser_Michael_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1465992}}, {"model": "metainfo.source", "pk": 18480, "fields": {"orig_filename": "Pozzi_Victor_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1454702}}, {"model": "metainfo.source", "pk": 18481, "fields": {"orig_filename": "Sunjic_Marian-Ivo_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1435919}}, {"model": "metainfo.source", "pk": 18482, "fields": {"orig_filename": "Suran_Gabriel_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1435567}}, {"model": "metainfo.source", "pk": 18483, "fields": {"orig_filename": "Abendroth_Mira__.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2579863}}, {"model": "metainfo.source", "pk": 18484, "fields": {"orig_filename": "Adam_Ernest_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1431401}}, {"model": "metainfo.source", "pk": 18485, "fields": {"orig_filename": "Allinger_Isidor_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1450304}}, {"model": "metainfo.source", "pk": 18486, "fields": {"orig_filename": "Ambrosi_Francesco_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1467527}}, {"model": "metainfo.source", "pk": 18487, "fields": {"orig_filename": "Amon_Chrysostomus_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1470091}}, {"model": "metainfo.source", "pk": 18488, "fields": {"orig_filename": "Arigler_Altmann_1768_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1470202}}, {"model": "metainfo.source", "pk": 18489, "fields": {"orig_filename": "Arnleitner_Friedrich_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2132462}}, {"model": "metainfo.source", "pk": 18490, "fields": {"orig_filename": "Arnold_Wincenty_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2296428}}, {"model": "metainfo.source", "pk": 18491, "fields": {"orig_filename": "Attlmayr_Aloisius_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1469023}}, {"model": "metainfo.source", "pk": 18492, "fields": {"orig_filename": "Auchentaller_Josef-Maria_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2004015}}, {"model": "metainfo.source", "pk": 18493, "fields": {"orig_filename": "Augapfel_Julius_1892_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1468712}}, {"model": "metainfo.source", "pk": 18494, "fields": {"orig_filename": "Auspitz_Leopold_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2260846}}, {"model": "metainfo.source", "pk": 18495, "fields": {"orig_filename": "Babel-Fronsberg_Franz_1773_1841.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292583}}, {"model": "metainfo.source", "pk": 18496, "fields": {"orig_filename": "Babor_Konrad_1762_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1468716}}, {"model": "metainfo.source", "pk": 18497, "fields": {"orig_filename": "Bachrich_Melly_1899_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2004312}}, {"model": "metainfo.source", "pk": 18498, "fields": {"orig_filename": "Ballaban_Karol_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2293675}}, {"model": "metainfo.source", "pk": 18499, "fields": {"orig_filename": "Balsanek_Antonin_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292773}}, {"model": "metainfo.source", "pk": 18500, "fields": {"orig_filename": "Baracz_Roman_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292656}}, {"model": "metainfo.source", "pk": 18501, "fields": {"orig_filename": "Beck_Adolf_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2281104}}, {"model": "metainfo.source", "pk": 18502, "fields": {"orig_filename": "Bednarski_Adam_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292843}}, {"model": "metainfo.source", "pk": 18503, "fields": {"orig_filename": "Belgiojoso_Cristina_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1456433}}, {"model": "metainfo.source", "pk": 18504, "fields": {"orig_filename": "Benedek-Kisbaczon_Elek_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2265242}}, {"model": "metainfo.source", "pk": 18505, "fields": {"orig_filename": "Bergmann_Hilda_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414139}}, {"model": "metainfo.source", "pk": 18506, "fields": {"orig_filename": "Bernau_Friedrich_1849_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2047856}}, {"model": "metainfo.source", "pk": 18507, "fields": {"orig_filename": "Biedermann_Julius_1833_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1459894}}, {"model": "metainfo.source", "pk": 18508, "fields": {"orig_filename": "Bikeles_Gustaw_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292554}}, {"model": "metainfo.source", "pk": 18509, "fields": {"orig_filename": "Bilczewski_Jozef_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419142}}, {"model": "metainfo.source", "pk": 18510, "fields": {"orig_filename": "Bilimek_Dominik_1813_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419213}}, {"model": "metainfo.source", "pk": 18511, "fields": {"orig_filename": "Blodig_Karl_1820_1891.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419318}}, {"model": "metainfo.source", "pk": 18512, "fields": {"orig_filename": "Boehm_August_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2267393}}, {"model": "metainfo.source", "pk": 18513, "fields": {"orig_filename": "Boernstein_Heinrich_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417661}}, {"model": "metainfo.source", "pk": 18514, "fields": {"orig_filename": "Bratu_Traian_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2265247}}, {"model": "metainfo.source", "pk": 18515, "fields": {"orig_filename": "Brittinger_Christian_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420192}}, {"model": "metainfo.source", "pk": 18516, "fields": {"orig_filename": "Brunnthaler_Josef-Georg_1871_1914.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420435}}, {"model": "metainfo.source", "pk": 18517, "fields": {"orig_filename": "Buchmueller_Anton_1782_1850.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292577}}, {"model": "metainfo.source", "pk": 18518, "fields": {"orig_filename": "Burgerstein_Alfred_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420641}}, {"model": "metainfo.source", "pk": 18519, "fields": {"orig_filename": "Burgerstein_Joseph_1813_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2300203}}, {"model": "metainfo.source", "pk": 18520, "fields": {"orig_filename": "Burgerstein_Leo_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1827303}}, {"model": "metainfo.source", "pk": 18521, "fields": {"orig_filename": "Burger_Ernst_1915_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1475339}}, {"model": "metainfo.source", "pk": 18522, "fields": {"orig_filename": "Bykowski_Juliusz-Jan_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2296282}}, {"model": "metainfo.source", "pk": 18523, "fields": {"orig_filename": "Cieslar_Adolf_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2223856}}, {"model": "metainfo.source", "pk": 18524, "fields": {"orig_filename": "Costa_Etbin-Henrik_1832_1875.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297301}}, {"model": "metainfo.source", "pk": 18525, "fields": {"orig_filename": "Czerny_Carl_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417615}}, {"model": "metainfo.source", "pk": 18526, "fields": {"orig_filename": "Dafert-Sensel-Timmer_Otto_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2079331}}, {"model": "metainfo.source", "pk": 18527, "fields": {"orig_filename": "Daublebsky-Sterneck_Robert_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1876603}}, {"model": "metainfo.source", "pk": 18528, "fields": {"orig_filename": "Dombrowski-Paproz-Kruserevice_Raoul_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2300357}}, {"model": "metainfo.source", "pk": 18529, "fields": {"orig_filename": "Fahrbach_Friedrich_1809_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2224858}}, {"model": "metainfo.source", "pk": 18530, "fields": {"orig_filename": "Fahrbach_Philipp_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1446107}}, {"model": "metainfo.source", "pk": 18531, "fields": {"orig_filename": "Fellner_Ferdinand-Iii_1872_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2295757}}, {"model": "metainfo.source", "pk": 18532, "fields": {"orig_filename": "Fischer_Leopoldine_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301445}}, {"model": "metainfo.source", "pk": 18533, "fields": {"orig_filename": "Fischer_Paul_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297369}}, {"model": "metainfo.source", "pk": 18534, "fields": {"orig_filename": "Fleischmann_Johann-Baptist_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2302168}}, {"model": "metainfo.source", "pk": 18535, "fields": {"orig_filename": "Fraenkel-Hahn_Louise_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1444776}}, {"model": "metainfo.source", "pk": 18536, "fields": {"orig_filename": "Friemel_Rudolf_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1469499}}, {"model": "metainfo.source", "pk": 18537, "fields": {"orig_filename": "Friese-Skuhra_Ernst-Robert_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2266072}}, {"model": "metainfo.source", "pk": 18538, "fields": {"orig_filename": "Tepa_Franciszek-Tomasz_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 250f.", "author": "", "orig_id": 1447985}}, {"model": "metainfo.source", "pk": 18539, "fields": {"orig_filename": "data/staribacher/staribacher_Personenliste_ms.csv", "indexed": false, "pubinfo": "File sent by Barbara Krautgartner Sep 27 2016", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 18540, "fields": {"orig_filename": "000", "indexed": false, "pubinfo": "", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 18541, "fields": {"orig_filename": "", "indexed": false, "pubinfo": "", "author": "", "orig_id": null}}, {"model": "metainfo.text", "pk": 12, "fields": {"kind": 2, "text": "seit 1992: Primorsko-goranska \u017eup.; a/Golf v. Rijeka, NO-Istrien;", "source": 1}}, {"model": "metainfo.text", "pk": 14, "fields": {"kind": 2, "text": "seit 1992: Primorsko-goranska \u017eup.; a/Golf v. Rijeka, NO-Istrien;", "source": 1}}, {"model": "metainfo.text", "pk": 59, "fields": {"kind": 2, "text": "= srez, seit 1992: Zagreba\u010dka \u017eup.; a/Save;", "source": 1}}, {"model": "metainfo.text", "pk": 173, "fields": {"kind": 2, "text": "(lt. Atl.'99 Star\u00e1 Dl. V. nicht mehr ausgewiesen), okr. Klatovy; ca. 4 km ssw Su\u0161ice, ca. 28 km ss\u00f6 Klatovy; [vgl. Biogr. \"Schell, Karl\"]", "source": 1}}, {"model": "metainfo.text", "pk": 181, "fields": {"kind": 2, "text": "= seit 1872/73: Zus.schl. v. Pest, Ofen/Buda u. Altofen/\u00d3buda;", "source": 1}}, {"model": "metainfo.text", "pk": 654, "fields": {"kind": 2, "text": "lt.K.Ku\u010da (tsch.) Umbenng 1921, 1956 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XX - Osta\u0161ov\"; ca. 3 km w. Liberec (Zentrum), a/\u00e4u\u00dfersten W-Rand der Stadt;", "source": 1}}, {"model": "metainfo.text", "pk": 784, "fields": {"kind": 2, "text": "= KG (2001: 1021 Einw.), Gem. Steindorf am Ossiacher See [Zusatz seit 1986], GerBez. Feldkirchen; 3,5 km wsw Steindorf, a/N-Ufer d. Ossiacher Sees (gg.\u00fcber Ort/Gem. u. Stift Ossiach a/d S-Seite des Sees: urspr. Gem. Glanhofen - 1894 von Steindf. abgetrennt u. in Ossiach umbenannt); [betr. Biogr. \"Dumba, Konst. Theo.\", gest. 1947]", "source": 1}}, {"model": "metainfo.text", "pk": 928, "fields": {"kind": 2, "text": "= jude\u0163; St. i. n\u00f6rdl. (rum\u00e4n.) Moldau;", "source": 1}}, {"model": "metainfo.text", "pk": 962, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 964, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 969, "fields": {"kind": 2, "text": "okr. N\u00e1chod; ca. 22 km n\u00f6 N\u00e1chod;", "source": 1}}, {"model": "metainfo.text", "pk": 971, "fields": {"kind": 2, "text": "okr. N\u00e1chod; ca. 22 km n\u00f6 N\u00e1chod;", "source": 1}}, {"model": "metainfo.text", "pk": 1011, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 1013, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 1017, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen;", "source": 1}}, {"model": "metainfo.text", "pk": 1029, "fields": {"kind": 2, "text": "obec u. okr. Hradec Kr\u00e1lov\u00e9; ca. 5 km ssw Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 1054, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; [betr. Biogr. \"Plaseller, Josef\", geb. 1812]", "source": 1}}, {"model": "metainfo.text", "pk": 1056, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen;", "source": 1}}, {"model": "metainfo.text", "pk": 1064, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1090, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1092, "fields": {"kind": 2, "text": "(seit 1990) St.Bez. (m\u011bst.obvod) Brno-st\u0159ed, (seit 1993 auch) Brno 1; ca. 2 km wsw Br\u00fcnn-Zentrum, a/d Schwarzawa (Svratka); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 1094, "fields": {"kind": 2, "text": "(seit 1990) mit 29 St.Bez.en (m\u011bstsk\u00ed \u010d\u00e1st, obvod), (seit 1993 auch) Brno 1 - 29 [vgl. K.Ku\u010da/1996, S.235/236], okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1096, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1236, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige); [betr. Biogr. \"Buol-Bernburg, Marie\", gest. 23.5.1943]", "source": 1}}, {"model": "metainfo.text", "pk": 1467, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 2030, "fields": {"kind": 2, "text": "okr. Chomutov; ca. 4 km s\u00f6 Chomutov;", "source": 1}}, {"model": "metainfo.text", "pk": 2492, "fields": {"kind": 2, "text": "ca. 7 km n\u00f6 Sf\u00e2ntu Gheorghe;", "source": 1}}, {"model": "metainfo.text", "pk": 2571, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht orthograph. (nur Betonungshilfe)];", "source": 1}}, {"model": "metainfo.text", "pk": 2603, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht nicht orthograph., nur Betonungshilfe];", "source": 1}}, {"model": "metainfo.text", "pk": 2605, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht nicht orthograph., nur Betonungshilfe];", "source": 1}}, {"model": "metainfo.text", "pk": 2675, "fields": {"kind": 2, "text": "eingem. (lt.IN) seit 1923, = Frakt. d. St.gem. Meran, prov. Bolzano/Bozen; 2,5 km n. Meran-Zentrum, w/Schlo\u00df Tirol; [betr. mehrere Biogr.: dt. gleichl. Weiler in Gem. Toblach!]", "source": 1}}, {"model": "metainfo.text", "pk": 2825, "fields": {"kind": 2, "text": "okr. \u0160umperk; ca. 6 km ssw Lou\u010dn\u00e1 nad Desnou, ca. 9 km nn\u00f6 \u0160umperk;", "source": 1}}, {"model": "metainfo.text", "pk": 2827, "fields": {"kind": 2, "text": "okr. \u0160umperk; ca. 6 km ssw Lou\u010dn\u00e1 nad Desnou, ca. 9 km nn\u00f6 \u0160umperk;", "source": 1}}, {"model": "metainfo.text", "pk": 3253, "fields": {"kind": 2, "text": "op. Maribor-Tabor (Post: Limbu\u0161), (OV'99) ob\u010d. u. upr.en. Maribor; (SlovAtl.'92) je 1 km w. Pekre (Pickerndorf) bzw. s\u00f6 Limbu\u0161 (Lembach) bzw. n\u00f6 (StreuSdlg) Vrhov Dol, ca. 6 km w. Marburg, r/d Drau; [betr. Biogr. \"Reiser Othmar\"]", "source": 1}}, {"model": "metainfo.text", "pk": 3255, "fields": {"kind": 2, "text": "op. Maribor-Tabor (Post: Limbu\u0161), (OV'99) ob\u010d. u. upr.en. Maribor; (SlovAtl.'92) je 1 km w. Pekre (Pickerndorf) bzw. s\u00f6 Limbu\u0161 (Lembach) bzw. n\u00f6 (StreuSdlg) Vrhov Dol, ca. 6 km w. Marburg, r/d Drau; [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 3300, "fields": {"kind": 2, "text": "Teil des (seit 1990) St.Bez. (m\u011bst.obvod) Brno-sever [Br\u00fcnn-Nord] (zus. mit Lesn\u00e1, Sob\u011b\u0161ice u. Teil v. \u010cern\u00e1 Pole), (seit 1993 auch) Brno 4, okr. Brno-m\u011bsto; ca. 3 km nn\u00f6 Br\u00fcnn-Zentrum;", "source": 1}}, {"model": "metainfo.text", "pk": 3504, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie; ca. 8 km nw Chrzan\u00f3w (dieses heute woj. ma\u0142opolskie), ca. 26 km \u00f6s\u00f6 Katowice (>50 km wnw Krak\u00f3w); [betr. hr/Stein, Ernst, geb. 1891 ']", "source": 1}}, {"model": "metainfo.text", "pk": 3663, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 3665, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige); [betr. Biogr. \"M\u00f6rl, Maria Th.\", geb. 1812]", "source": 1}}, {"model": "metainfo.text", "pk": 3930, "fields": {"kind": 2, "text": "St. am Kl. Szamos (Some\u015ful Mic);", "source": 1}}, {"model": "metainfo.text", "pk": 3932, "fields": {"kind": 2, "text": "St. am Kl. Szamos (Some\u015ful Mic);", "source": 1}}, {"model": "metainfo.text", "pk": 4052, "fields": {"kind": 2, "text": "= kraj (Kr\u00e1lov\u00e9hradeck\u00fd); St. a/d oberen Elbe (Labe);", "source": 1}}, {"model": "metainfo.text", "pk": 4438, "fields": {"kind": 2, "text": "St.teil seit 1954(?), okr. Hradec Kr\u00e1lov\u00e9; ca. 3 km w. Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 4453, "fields": {"kind": 2, "text": "Teil des (seit 1993) St.Bez. (m\u011bst. obvod) Brno-jih [Br\u00fcnn-S\u00fcd, seit 1993 auch Brno 7], okr. Brno-m\u011bsto; davor (ab 1990) namengebender St.Bez. \"Brno-Kom\u00e1rov\" (zus. mit 3 weiteren ehem. Gem./obec, darunter -->Horn\u00ed Her\u0161pice, dt. Obergerspitz); ca. 2 km ss\u00f6 Br\u00fcnn-Zentrum, a/d Pon\u00e1vka (vor Zus.fl. v. Schwarzawa/Svratka u. Zwittawa/Svitava); [betr. (u.a.) naw/Biogr.(innerhalb Text) \"Su\u0161il, Franti\u0161ek\": urspr. 'Kumritz (Kom\u00e1rov)']", "source": 1}}, {"model": "metainfo.text", "pk": 4512, "fields": {"kind": 2, "text": "obec Tou\u017eim, okr. Karlovy Vary; 2 km \u00f6. Koj\u0161ovice, ca. 4 km n\u00f6 Tou\u017eim, ca. 9 km w. \u017dlutice, ca. 20 km ss\u00f6 Karlovy Vary;", "source": 1}}, {"model": "metainfo.text", "pk": 4522, "fields": {"kind": 2, "text": "= srez; St. im mittleren Krain;", "source": 1}}, {"model": "metainfo.text", "pk": 4642, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 4644, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5041, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5043, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5045, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5083, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXX - Vratislavice nad Nisou\", seit 1990 (mit neuem Statut) 'm\u011bstsk\u00fd obvod\" (St.bezirk); ca. 4 km s\u00f6 Liberec (Zentrum), beidseits der Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 5085, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXX - Vratislavice nad Nisou\", seit 1990 (mit neuem Statut) 'm\u011bstsk\u00fd obvod' (St.bezirk); ca. 4 km s\u00f6 Liberec (Zentrum), beidseits der Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 5101, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-Zentrum, (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 5193, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5219, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5221, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5223, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5344, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5346, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5348, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; a/\u00f6stl. Stadtrand;", "source": 1}}, {"model": "metainfo.text", "pk": 5350, "fields": {"kind": 2, "text": "ital. St.teilname (lt. K\u00fcheb.) nach 1940, eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio); [betr. Biogr. \"Mazegger, Bernh. d.J.\", gest. 1921, (miterw./Schrott, Alois) \"Pelzel v. Staff., Henriette\", gest. 1962, allerdings schon 2-namig ab 1948]", "source": 1}}, {"model": "metainfo.text", "pk": 5352, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-(Altstadt), (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 5353, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5409, "fields": {"kind": 2, "text": "okr. Tachov; ca. 28 km \u00f6s\u00f6 Tachov;", "source": 1}}, {"model": "metainfo.text", "pk": 5576, "fields": {"kind": 2, "text": "okr. Teplice; ca. 15 km nw Teplice, a/dt.-s\u00e4chs. Grenze (8 km w. Cinovec/Zinnwald);", "source": 1}}, {"model": "metainfo.text", "pk": 5900, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. opolskie;", "source": 1}}, {"model": "metainfo.text", "pk": 6016, "fields": {"kind": 2, "text": "okr. Hradec Kr\u00e1lov\u00e9; ca. 4 km! ss\u00f6 Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 6119, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VIII - Doln\u00ed Hanychov\"; 1 km nn\u00f6 --> Horn\u00ed Hanychov, ca. 3 km sw Liberec (Zentrum); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 6173, "fields": {"kind": 2, "text": "[betr. Mpg/Biogr. \"Ambr\u00f3zy-Migazzi, Istv\u00e1n\", geb. 1869]", "source": 1}}, {"model": "metainfo.text", "pk": 6308, "fields": {"kind": 2, "text": "Teil des (seit 1993) St.Bez. (m\u011bst.obvod) Brno-jih [Br\u00fcnn-S\u00fcd] (davor ab 1990 St.Bez. \"Kom\u00e1rov\"), (seit 1993 auch) Brno 7, okr. Brno-m\u011bsto; ca. 4 km s. Br\u00fcnn-Zentrum (n/\u00f6 von Autobahnkreuzung);", "source": 1}}, {"model": "metainfo.text", "pk": 6324, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec; seit 1980 (St.teil/\u010dtvrt) \"Liberec XIX - Horn\u00ed Hanychov\"; 1 km ssw --> Doln\u00ed Hanychov, ca. 4 km sw Liberec (Zentrum); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 6350, "fields": {"kind": 2, "text": "ital. St.teilname (lt. K\u00fcheb.) nach 1940, eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio);", "source": 1}}, {"model": "metainfo.text", "pk": 6352, "fields": {"kind": 2, "text": "eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio);", "source": 1}}, {"model": "metainfo.text", "pk": 6372, "fields": {"kind": 2, "text": "(tsch.) Umbenng nach 1918; 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VII - Horn\u00ed R\u016f\u017eodol\"; ca. 2 km ss\u00f6 --> \"R\u016f\u017eodol I\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [betr. Biogr. \"Schramm Augustin, *1907\"]", "source": 1}}, {"model": "metainfo.text", "pk": 6417, "fields": {"kind": 2, "text": "Teil des (seit 1990) St.Bez. (m\u011bst.obvod) Malom\u011b\u0159ice-Ob\u0159any, (seit 1993 auch) Brno 18, okr. Brno-m\u011bsto; ca. 7 km nn\u00f6 Br\u00fcnn-Zentrum; [betr. Biogr./hr \"\u0160tastny Vladim.\", gest. 1910]", "source": 1}}, {"model": "metainfo.text", "pk": 6431, "fields": {"kind": 2, "text": "St., sw Neusiedler See;", "source": 1}}, {"model": "metainfo.text", "pk": 6491, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 6493, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 6495, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava); [betr. Biogr. \"\u0160pa\u010dek, Richard\", gest. 1925]", "source": 1}}, {"model": "metainfo.text", "pk": 6497, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 7122, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7124, "fields": {"kind": 2, "text": "okr. Hl.m. Praha, Praha 2 (Nov\u00e9 M\u011bsto); ON noch erhalten im Stra\u00dfennamen \"Podskalsk\u00e1\" (parallel zur Uferstr. zw. Nov\u00e9 M\u011bsto u. Vy\u0161ehrad); [betr. Biogr. \"Hedrich Franz\"]", "source": 1}}, {"model": "metainfo.text", "pk": 7126, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus 1 od. mehreren St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7128, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7130, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7171, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 7173, "fields": {"kind": 2, "text": "Umbenng. = ab 1920 (lt.IN schon 6. 3. 1919), = kraj u. okr.; mit 17 St.Bez.en: Star\u00e9 Mesto, Ru\u017einov (1946, fr.: Prievoz), Vraku\u0148a (1.1. 1972), Podunajsk\u00e9 Biskupice (1.1. 1972), Nov\u00e9 Mesto, Ra\u010da (1946), Vajnory (1946), Kalova Ves (seit 1944), D\u00fabravka (1946), Lama\u010d (1946), Dev\u00edn (1946), Dev\u00ednska Nov\u00e1 (1.1. 1972) Ves, Z\u00e1horsk\u00e1 Bystrica (1.1. 1972), Petr\u017ealka (1946, r/Donau), Jarovce (1.1. 1972, r/Donau), Rusovce (1.1. 1972, r/Donau) und \u010cunovo (1.1. 1972, r/Donau);", "source": 1}}, {"model": "metainfo.text", "pk": 7681, "fields": {"kind": 2, "text": "tsch. ON nach 1918, 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XI - R\u016f\u017eodol I\"; ca. 2 km nnw \"R\u016f\u017eodol II\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 7683, "fields": {"kind": 2, "text": "tsch. ON nach 1918; 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VII - Horn\u00ed R\u016f\u017eodol\"; ca. 2 km ss\u00f6 --> \"R\u016f\u017eodol I\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 7776, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XIV - Ruprechtice\"; 2,5 km n\u00f6 Liberec (Zentrum); [betr. Biogr. \"Farsk\u00fd, Franz\", geb. 'Ruppersdorf (Rup\u011bchtice, B\u00f6hmen)': diese (tsch.) Schreibw. nicht verifiz.]", "source": 1}}, {"model": "metainfo.text", "pk": 7828, "fields": {"kind": 2, "text": "Sadhora (n\u00f6rdl. des Prut), eingemeindet nach --> \u010cernivci;", "source": 1}}, {"model": "metainfo.text", "pk": 7951, "fields": {"kind": 2, "text": "= ab 1990, okr. Pezinok; ca. 15 km n\u00f6 Pre\u00dfburg; a/SO-Abhang d. Kl. Karpaten;", "source": 1}}, {"model": "metainfo.text", "pk": 7994, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; ca. 6 km wsw Lana (Ober-), ca. 11 km sw Meran, im Ultental (Val d'Ultimo);", "source": 1}}, {"model": "metainfo.text", "pk": 8138, "fields": {"kind": 2, "text": "Umbenng. ab 1955, okr. \u0160umperk; ca. 16 km w. \u0160umperk; nahe Grenze zu NO-B\u00f6hmen;", "source": 1}}, {"model": "metainfo.text", "pk": 8211, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXXI - Kr\u00e1sn\u00e1 Stud\u00e1nka\"; ca. 7 km n. Liberec (Zentrum);", "source": 1}}, {"model": "metainfo.text", "pk": 8304, "fields": {"kind": 2, "text": "[betr. naw/Biogr. \"Sue\u00df, Friedr. R.v. Heller\"]", "source": 1}}, {"model": "metainfo.text", "pk": 8727, "fields": {"kind": 2, "text": "(lt. Atl.'99 Star\u00e1 Dl. V. nicht mehr ausgewiesen), okr. Klatovy; ca. 4 km ssw Su\u0161ice, ca. 28 km ss\u00f6 Klatovy; [vgl. Biogr. \"Schell Karl\"]", "source": 1}}, {"model": "metainfo.text", "pk": 9008, "fields": {"kind": 2, "text": "ab 1.1.99: pow. Jaworzno, woj. \u015bl\u0105skie; [4 km n. Jaworzno]", "source": 1}}, {"model": "metainfo.text", "pk": 9021, "fields": {"kind": 2, "text": "Kom.H.St.; a/d Thei\u00df, gg.\u00fcber Einm\u00fcndung d. Maros;", "source": 1}}, {"model": "metainfo.text", "pk": 9235, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 9239, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie; r/d Olsa/Olza; [i. Druck fr\u00fcher i.d.R. undiff. nur \"Teschen\", k\u00fcnftig (u. in GD-DB) als heut. ON normativ der poln. Teil angef\u00fchrt: f\u00fcr einzelne Bios k\u00f6nnte auch der kleinere, j\u00fcngere (heute tsch.) St.teil -->\u010cesk\u00fd T\u011b\u0161\u00edn zutreffend sein]", "source": 1}}, {"model": "metainfo.text", "pk": 9433, "fields": {"kind": 2, "text": "= prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9434, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9461, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9463, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9646, "fields": {"kind": 2, "text": "= ab 1948 [= Umbenng.], okr. Nitra; ca. 12 km s. Neutra;", "source": 1}}, {"model": "metainfo.text", "pk": 9705, "fields": {"kind": 2, "text": "com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe (Zusatz (seit ?, nach 1964): nur f\u00fcr den Namen der (Markt) Gem. amtl. (oder auch f\u00fcr den Ort selbst?), prov. Bolzano/Bozen; ca. 13 km ssw Bozen, a/Fu\u00df des Mendel-Passes;", "source": 1}}, {"model": "metainfo.text", "pk": 9735, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-(Altstadt), (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 10129, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10131, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10133, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10135, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10138, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10186, "fields": {"kind": 2, "text": "ab 1992 Ju\u017eni-Banatski okr.; St., ca. 10 km n/d Donau, (s\u00fcdl. Banat) Vojvodina;", "source": 1}}, {"model": "metainfo.text", "pk": 10300, "fields": {"kind": 2, "text": "(lt. wiki) Getrenntschreibung seit 1997;", "source": 1}}, {"model": "metainfo.text", "pk": 10485, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie; [betr. da/Biogr. \"Sucharda, Edw. d.J.\", gest. 1947]", "source": 1}}, {"model": "metainfo.text", "pk": 10711, "fields": {"kind": 2, "text": "lt.obiger Enz.. (ukr.) auch: Znesennja; rajon L'viv; (lt. L'viv-St.plan) 2,25 km \u00f6n\u00f6 Lemberg-Zentrum, inmitten eines Landschaftsparkes a/\u00f6stl. Stadtrand", "source": 1}}, {"model": "metainfo.text", "pk": 10788, "fields": {"kind": 2, "text": "= okres; ca. 14 km w. Mor. T\u0159ebov\u00e1, St. i/Sch\u00f6nhenstgau a/d Zwittawa (Svitava);", "source": 1}}, {"model": "metainfo.text", "pk": 11195, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11196, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11197, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11198, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11199, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11200, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11203, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11204, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11205, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11206, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11207, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11210, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11211, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11214, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11215, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11218, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11219, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11220, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11221, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11222, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11223, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11224, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11225, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11226, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11227, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11228, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11229, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11230, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11231, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11234, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11235, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11236, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11237, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11238, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11239, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11240, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11241, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11242, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11243, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11244, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11245, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11246, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11249, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11250, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11251, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11252, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11253, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11254, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11255, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11256, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11257, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11258, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11259, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11260, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11261, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11262, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11263, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11266, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11269, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11270, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11271, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11272, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11275, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11278, "fields": {"kind": 236, "text": "http://www.geonames.org/maps/google_46.547_15.596.html\r\nOthmar Reiser's Geburtsort ist Hrastje, der heute Pekre heisst, und neben Maribor liegt.", "source": null}}, {"model": "metainfo.text", "pk": 11279, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11280, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11281, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11284, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11285, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11286, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11287, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11288, "fields": {"kind": 236, "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, B\u00f6hmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der b\u00f6hmische Lachovice der richtige", "source": null}}, {"model": "metainfo.text", "pk": 11289, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11290, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11291, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11292, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11293, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11294, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11299, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11300, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11301, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11302, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11303, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11304, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11305, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11308, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11311, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11312, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11313, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11314, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11317, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11318, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11319, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11320, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11321, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11322, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11323, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11324, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11325, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11326, "fields": {"kind": 236, "text": "ziemlich viele \u00d6BL labels f\u00fcr Meran!", "source": null}}, {"model": "metainfo.text", "pk": 11327, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11330, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11331, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11334, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11335, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11336, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11337, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11338, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11339, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11342, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11343, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11344, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11345, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11346, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11347, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11348, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11349, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11350, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11351, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 12155, "fields": {"kind": 130, "text": "Sohn von Joseph T. und Fortun\u00e9e Stein (urkundl.; vermutl. jedoch illegitimer Sohn von \u00bfFranz Josef F\u00fcrst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers Fran\u00e7ois Boucher und Tochter des Operns\u00e4ngers Luigi Lablache, verheiratet. \u2013 T. zog 1822 nach Wien, wo er Klavierunterricht beim Ersten Fagottisten der Hofoper, August Mittag, erhielt und das polytechn. Inst. besucht haben soll (nicht nachweisbar). In weiterer Folge stud. er bei \u00bfSimon Sechter (Theorie) und \u00bfJohann Nep. Hummel (Klavier). 1826 trat er erstmals, zun\u00e4chst in Wr. Privatzirkeln, als Pianist auf. 1830 f\u00fchrte ihn die erste Auslandstournee nach Dtld. und England, anschlie\u00dfend in andere europ. L\u00e4nder. Nach weiteren Stud. bei \u00bfIgnaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 gro\u00dfe Erfolge in Paris und triumphierte 1837\u201348 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und S\u00fcdamerika, wo er u.\u00a0a. in New York eine Klavierschule gr\u00fcndete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die n\u00e4chsten Jahre zur\u00fcckgezogen lebte. Nach Wiederaufnahme seiner Tourneen 1862 (London und Paris) ging er 1863 abermals nach Brasilien, danach schied er aus dem Konzertleben aus. Einem Brief Felix Mendelssohn-Bartholdys zufolge galt T. bis zur Jh.mitte neben \u00bfFranz v. Liszt als gr\u00f6\u00dfter Klaviervirtuose seiner Zeit. 1837 kam es zu einem \u00f6ff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle \u00d6ffentlichkeit sah Liszt als Romantiker, w\u00e4hrend der von seinem Auftreten her aristokrat. T. eher f\u00fcr ein klassizist. Musikideal stand. Auch die Qualit\u00e4t der Kompositionen beider wurde kontr\u00e4r beurteilt. Liszt bezeichnete T.s Werke in der \u201eRevue et gazette musicale de Paris\u201c als eine Mischung aus Monotonie und Unverm\u00f6gen. Die so aufgeschaukelte Rivalit\u00e4t kulminierte, als beide Musiker an einem von F\u00fcrstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Fr\u00e9d\u00e9ric Chopin und \u00bfCarl Czerny, an einer Kollektivkomposition f\u00fcr die F\u00fcrstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen \u00fcber Themen bekannter Opern dessen gr\u00f6\u00dften Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zur\u00fcck. T.s Personalstil kennzeichneten v.\u00a0a. das Hervortreten der auf beide H\u00e4nde verteilten Melodie in der Mittellage, w\u00e4hrend diese u.\u00a0a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. \u201eL\u2019Art du chant appliqu\u00e9 au piano\u201c festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosit\u00e4t, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n", "source": 531}}, {"model": "metainfo.text", "pk": 12156, "fields": {"kind": 131, "text": "Thalberg Sigismund (Fortun\u00e9 Fran\u00e7ois), Pianist und Komponist. Geb. P\u00e2quis (Gen\u00e8ve-Bains des P\u00e2quis, CH), 8.\u00a01. 1812; gest. Posillipo (Napoli, I), 27.\u00a04. 1871.", "source": 531}}, {"model": "metainfo.text", "pk": 21722, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckers; lebte ab ca. 1781 bei seinem Gro\u00dfvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurf\u00fcrstlichen Hof in Bonn t\u00e4tig war. 1787 wurde R. Fl\u00f6tist der Hofkapelle und begann zu komponieren. 1794\u201399 lebte er in Hamburg und verdiente seinen Lebensunterhalt mit Musikunterricht, ab 1799 in Paris, wo er vergeblich auf die Urauff. zweier von ihm komponierter Opern hoffte. 1802\u201308 war er in Wien und stud. u. a. bei J. Haydn, Albrechtsberger und Salieri Komposition. Ab 1808 lebte R. in Paris, ab 1818 als Prof. f\u00fcr Komposition. Als Musikp\u00e4dagoge und Theoretiker erlangte er gro\u00dfes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Sch\u00fclern geh\u00f6rten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterlie\u00df auch als Komponist ein wertvolles und umfangreiches \u0152uvre. Mit seinen 24 Bl\u00e4serquintetten schuf er die Grundlage f\u00fcr das Repertoire derartiger Kammerensembles.\n", "source": 5804}}, {"model": "metainfo.text", "pk": 21723, "fields": {"kind": 131, "text": "Reicha\u00a0(Rejcha) Anton (Anton\u00edn) Josef, Komponist und Musikp\u00e4dagoge. * Prag, 26. 2. 1770; \u2020 Paris, 28. 5. 1836.", "source": 5804}}, {"model": "metainfo.text", "pk": 27186, "fields": {"kind": 130, "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808\u201320 lebte er in Wien und stud. bei Streicher, Albrechtsberger und Salieri. M. unterrichtete selbst, auch in der besten Ges. M., dessen Ruhm als Pianist und Komponist (seine Variationen \u00fcber den Alexander-Marsch von 1815 blieben jahrzehntelang ein Pr\u00fcfstein pianist. Virtuosit\u00e4t) st\u00e4ndig wuchs, trat in Prag, Leipzig und Dresden auf. 1820 machte er ausgedehnte Reisen durch Deutschland, Holland, Belgien, Frankreich und England und hielt sich auch wieder l\u00e4nger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 \u00fcbersiedelte M. nach London und geh\u00f6rte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den f\u00fchrenden Pers\u00f6nlichkeiten des Musiklebens. 1846 \u00fcbernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der gro\u00dfen Pianisten seiner Zeit und setzte sich vor allem f\u00fcr Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des \u201eFidelio\u201c hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bem\u00fchte er sich tatkr\u00e4ftig um dessen Unterst\u00fctzung durch die Londoner Philharmonic Society.\n", "source": 8543}}, {"model": "metainfo.text", "pk": 27187, "fields": {"kind": 131, "text": "Moscheles\u00a0Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; \u2020 Leipzig, 10. 3. 1870.", "source": 8543}}, {"model": "metainfo.text", "pk": 30762, "fields": {"kind": 130, "text": "Sohn des Esterh\u00e1zyschen Verwalters Adam L. (1776\u20131827), Neffe des Vorigen, Vetter des Arztes und Schriftstellers Joseph Anton L. (s. d.) und des Folgenden; erhielt den ersten Klavierunterricht vom Vater. Im August oder September 1819 d\u00fcrfte er in Baden bei Wien erstmals \u00f6ff. aufgetreten sein. Weitere Konzerte folgten in \u00d6denburg und Pre\u00dfburg. Auf Grund des letzten (26. 11. 1820) setzten ihm ung. Magnaten ein Studienstipendium aus. Da J. N. Hummels (s. d.) Forderungen zu hoch waren, brachte der Vater den Knaben nach Wien zu C. Czerny (s. d.). Neben dessen Klavierunterricht erhielt er Unterweisung in Musiktheorie durch A. Salieri. 1822 wurde der Elfj\u00e4hrige zur Mitarbeit an A. Diabellis (s. d.) \u201eVaterl\u00e4ndischem K\u00fcnstlerverein\u201c eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er \u00f6ff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum gek\u00fc\u00dft. Der Erl\u00f6s dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die M\u00f6glichkeit zur \u00dcbersiedlung nach Paris; auf der Reise und sp\u00e4ter von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausl\u00e4nder die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., haupts\u00e4chlich nach der Methode Kalkbrenners (s. d.) fort, stud. aber Musiktheorie bei F. Paer und A. Reicha. Er blieb bis 1837 in Paris und unterrichtete in den h\u00f6chsten Kreisen. Berlioz und Paganini regten seine k\u00fcnstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem pers\u00f6nlichen Kontakt stand. 1835\u201339 lebte L. mit Gfn. Marie d\u2019Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die K\u00fcnstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzertt\u00e4tigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa f\u00fchrte. In Kiew begegnete er 1847 der F\u00fcrstin Carolyne Sayn-Wittgenstein, welche ihren Mann verlie\u00df und sich schlie\u00dflich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum gro\u00dfherzoglichen Kapellmeister in au\u00dferordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausge\u00fcbt hatte und nun in vollem Ma\u00dfe aufnahm. Seine Lebensgemeinschaft mit der F\u00fcrstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verh\u00e4ltnissen entfaltete er eine erfolgreiche k\u00fcnstler. T\u00e4tigkeit, welche in dem selbstlosen Eintreten f\u00fcr R. Wagner gipfelte. Wahrscheinlich unter dem Einflu\u00df der F\u00fcrstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither f\u00fchrte er ein unstetes und unbefriedigtes Wanderleben, kehrte f\u00fcr kurze Zeit auch nach Weimar zur\u00fcck, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fu\u00dfend, die Klaviertechnik ungeheuer ausgebaut, in Richtung auf den Orchesterklang hin, auf eine neue Gesanglichkeit vom romant. Lied her und auf die von ihm bedeutend erweiterten M\u00f6glichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilit\u00e4t des Anschlages. Nicht weniger hat L. als Komponist gewirkt, hier vor allem auf harmon. Gebiet, wegweisend aber auch in der Auslotung der techn. und formalen M\u00f6glichkeiten \u00fcberhaupt und in der Programmatik der inhaltlichen Erf\u00fcllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gr\u00fcndete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n", "source": 10332}}, {"model": "metainfo.text", "pk": 30763, "fields": {"kind": 131, "text": "Liszt\u00a0Franz von, Komponist. * Raiding, Kom. \u00d6denburg (Burgenland), 22. 10. 1811; \u2020 Bayreuth (Oberfranken), 31. 7. 1886.", "source": 10332}}, {"model": "metainfo.text", "pk": 44908, "fields": {"kind": 130, "text": "Von ihrer Mutter und t\u00fcchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male \u00f6ffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n", "source": 17415}}, {"model": "metainfo.text", "pk": 44909, "fields": {"kind": 131, "text": "Blahetka\u00a0Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; \u2020 Boulogne sur Mer, 1. 1. 1885.", "source": 17415}}, {"model": "metainfo.text", "pk": 45290, "fields": {"kind": 130, "text": "B. stammt aus einer aus dem Niederl\u00e4ndischen eingewanderten Familie, sein erster Lehrer, Chr. G. Neefe, vermittelte ihm die Kenntnis bedeutender Meisterwerke und machte publizistisch die Fachwelt auf das junge Talent aufmerksam und das Wohlwollen des Kurf\u00fcrsten Maximilian, des j\u00fcngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde f\u00fcr den weiteren \u00e4u\u00dferen Lebensweg B.s entscheidend, zumal der aus \u00d6sterr. an den K\u00f6lner Hof gekommene Graf Franz Adam Waldstein ihm die f\u00fcr die ersehnte Wr. Lehrzeit n\u00f6tige geldliche Unterst\u00fctzung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd f\u00f6rderte, wurde aber nicht sein Sch\u00fcler, da die Todeskrankheit der Mutter B.s R\u00fcckkehr forderte. Als sie am 17. 7. 1787 starb, mu\u00dfte B. nun f\u00fcr den entm\u00fcndigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurf\u00fcrstliche Hilfe nach Wien, wo er den gew\u00fcnschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schlo\u00df. Seine von da an w\u00e4hrende Bindung an Wien ist vor allem Erzh. Rudolf und den F\u00fcrsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosph\u00e4re Wiens, in der B. zunehmend Verst\u00e4ndnis als K\u00fcnstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikst\u00e4dten begehrt wurden, erfolgte oft auch widerrechtlich; B.s Kampf dagegen war nur ein Zug seiner steigenden inneren Auflehnung gegen manche Unvollkommenheiten des polit. und soz. Lebens, mit deren Problematik sich sein Gerechtigkeitssinn oft st\u00fcrmisch auseinandersetzte (s. die annullierte Widmung der\u201cEroica\u201d an Napoleon, als dieser sich zum K. kr\u00f6nen lie\u00df). Um 1800 begann sein Geh\u00f6r zu schwinden. 1815 wurde er taub. Das \u201eHeiligenst\u00e4dter Testament\u201c von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die \u00fcbermenschlichen moralischen Kr\u00e4fte, die ihn dennoch am Werk lie\u00dfen, das sich in jener Katastrophenzeit zur F\u00fclle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der fr\u00fcher als Interpret seiner Werke oder als Improvisator am Klavier und spr\u00fchender Geist gesellschaftlich brilliert hatte, immer mehr abschlo\u00df, l\u00f6sten die Freunde Oliva, Schindler und Holz jene gl\u00e4nzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste gro\u00dfe Musiker, der ein warmes Verh\u00e4ltnis zur Natur bekennt, auch hierin Haydn n\u00e4her als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als K\u00fcnder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 k\u00fcndigt sich sein Leberleiden an, das B.s sonst so robuste Gesundheit untergrub; 1826, auf dem Heimweg von einem Landaufenthalt bei seinem Bruder Johann in Gneixendorf bei Krems, \u00fcberfiel ihn eine Lungenentz\u00fcndung, zu der pl\u00f6tzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n", "source": 17608}}, {"model": "metainfo.text", "pk": 45291, "fields": {"kind": 131, "text": "Beethoven\u00a0Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; \u2020 Wien, 26. 3. 1827.", "source": 17608}}, {"model": "metainfo.text", "pk": 47030, "fields": {"kind": 130, "text": "Tochter von \u2192Adolf B\u00e4uerle und seiner ersten Frau Antonie B\u00e4uerle, geb. Egger. \u2013 B. zeigte schon in fr\u00fchester Kindheit eine Doppelbegabung f\u00fcr Musik und Sprachen, die in ihrer Erziehung sehr gef\u00f6rdert wurde. So erhielt sie Unterricht bei \u2192Carl Czerny. Dennoch beschr\u00e4nkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und \u00e4hnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Gro\u00dfbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische T\u00e4tigkeit f\u00fcr die \u201eWiener Theater-Zeitung\u201c (\u201eWiener allgemeine Theaterzeitung\u201c) ihres Vaters unter ihren Pseudonymen (auch \u201eF\u2026\u201c). B. war au\u00dferdem auch eine \u00fcberaus produktive \u00dcbersetzerin aus dem Englischen und Franz\u00f6sischen, u. a. \u00fcbertrug sie die Novelle \u201eDer Spion der vornehmen Welt\u201c von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), \u201eMi\u00df Mary, oder die Erzieherin\u201c (in: Wiener allgemeine Zeitung f\u00fcr Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und \u201eGilbert und Gilberte\u201c von Eug\u00e8ne Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), \u201eAntonie, die Tochter der Berge\u201c (ebd., 1850, Nr. 157\u2013176, 180\u2013201), \u201eDer letzte Irl\u00e4nder\u201c (ebd., 1851, Nr. 293ff.) und \u201eDie Marquise von Norville\u201c von \u00c9lie Berthet (1856), \u201eConcino Concini oder Die Tochter des Blinden\u201c (1855, 1856 Neuaufl. unter dem Titel \u201eDer Menschenj\u00e4ger oder Der Blinde\u201c) von Emanuele Gonzal\u00e8s sowie \u201eDie letzte der Feen\u201c von George Payne Rainsford James (1849). Einige dieser \u00dcbersetzungen erschienen auch im \u201eBelletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen\u201c des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der \u201eOstdeutschen Post\u201c und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift \u201eDer Salon\u201c erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, f\u00fchrte sie gemeinsam mit dem Redakteur Moritz Morl\u00e4nder (eigentlich Moriz Engl\u00e4nder) die \u201eWiener Theaterzeitung\u201c ab J\u00e4nner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. v\u00f6llig zur\u00fcckgezogen.\n", "source": 17852}}, {"model": "metainfo.text", "pk": 47031, "fields": {"kind": 131, "text": "B\u00e4uerle Friederike, Ps. Friedrich Horn, Schriftstellerin, \u00dcbersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Nieder\u00f6sterreich), 17. 7. 1896.", "source": 17852}}, {"model": "metainfo.text", "pk": 47126, "fields": {"kind": 130, "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, B\u00f6hmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zun\u00e4chst als Oboist beim Milit\u00e4r und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. \u2013 Wenzel Czernys T\u00e4tigkeit als Klavierlehrer f\u00fchrte die Familie 1791\u201395 nach Polen. So erhielt C., der bereits mit drei Jahren Klavier zu spielen begann und mit sieben seine ersten Kompositionen zu Papier brachte, den ersten Klavierunterricht auch von seinem Vater und konnte dank seiner au\u00dfergew\u00f6hnlichen Begabung bereits als Neunj\u00e4hriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung f\u00fcr C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei \u2192Ludwig van Beethoven, der ihn unverz\u00fcglich als Sch\u00fcler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Urauff\u00fchrung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere fr\u00fch, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Sch\u00fclerinnen und Sch\u00fcler waren Theodor D\u00f6hler, Stephen Heller, \u2192Sigismund Thalberg, \u2192Marie Leopoldine Blahetka, Ninette de Belleville sowie \u2192Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine \u201e\u00c9tudes d\u2019ex\u00e9cution transcendante\u201c). Auch Beethovens Neffe Karl wurde ein Sch\u00fcler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, \u2192Ignaz Moscheles\u2019 und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken f\u00fcr Klavier verbunden, die sich an Anf\u00e4nger (etwa \u201eDie Schule der Gel\u00e4ufigkeit\u201c) ebenso richten wie an bereits gereifte Pianisten (\u201eSchule des Virtuosen\u201c). Dazu kommen St\u00fccke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die gr\u00f6\u00dfte Popularit\u00e4t erlangte C.s \u201eVollst\u00e4ndige theoretisch-practische Pianoforte-Schule \u2026\u201c (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen \u0152uvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Ch\u00f6re, Ges\u00e4nge und B\u00fchnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einfl\u00fcsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten St\u00fccke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Dar\u00fcber hinaus war C. als Musiktheoretiker t\u00e4tig. Er verfasste eine \u201eSystematische Anleitung zum Fantasieren auf dem Pianoforte\u201c, z\u00e4hlte zu den ersten Editoren einer Bach-Gesamtausgabe und \u00fcbersetzte vier umfangreiche Kompositions-Traktate von \u2192Anton Reicha. 1842 schrieb C. seine Autobiographie \u201eErinnerungen aus meinem Leben\u201c. Abgesehen von einigen Reisen nach Italien und einem Aufenthalt in Frankreich (1837) sowie England verbrachte er sein gesamtes Leben in seiner Heimatstadt. Er starb als wohlhabender Mann und vermachte sein Verm\u00f6gen k\u00fcnstlerischen und wohlt\u00e4tigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n", "source": 18525}}, {"model": "metainfo.text", "pk": 47127, "fields": {"kind": 131, "text": "Czerny (\u010cern\u00fd) Carl, Pianist, P\u00e4dagoge und Komponist. Geb. Leopoldstadt, Nieder\u00f6sterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); r\u00f6m.-kath.", "source": 18525}}, {"model": "metainfo.text", "pk": 47200, "fields": {"kind": 130, "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und National\u00f6konomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Ru\u00dfland auf, war sp\u00e4ter Mitleiter der \u201eFreien B\u00fchne\u201c in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, B\u00fchnendichter und Theaterkritiker. 1909 heiratete er die gro\u00dfe Wagnerinterpretin, Hofoperns\u00e4ngerin Anna v. Mildenburg (s. u.). 1912 \u00fcbersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni\u2013November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in M\u00fcnchen. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von au\u00dfergew\u00f6hnlicher Menschenkenntnis, ein gl\u00e4nzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., geh\u00f6ren zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen \u00d6sterreich.\n", "source": 102}}, {"model": "metainfo.text", "pk": 47201, "fields": {"kind": 131, "text": "Bahr\u00a0Hermann, Dichter und Schriftsteller. * Linz (O.\u00d6.), 19. 7. 1863; \u2020 M\u00fcnchen, 14. 1. 1934.", "source": 102}}, {"model": "metainfo.text", "pk": 47204, "fields": {"kind": 130, "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt t\u00e4tig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er kl\u00e4rte die Ursachen der hohen S\u00e4uglingssterblichkeit bei k\u00fcnstlicher Ern\u00e4hrung und besch\u00e4ftigte sich eingehend mit der Tuberkulose im Kindesalter. Sp\u00e4ter lehrte er in Berlin, Stra\u00dfburg und D\u00fcsseldorf. Durch Cz., einen der Begr\u00fcnder und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine gro\u00dfe Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine f\u00fchrende Stellung in der Kinderheilkunde inne.\n", "source": 114}}, {"model": "metainfo.text", "pk": 47205, "fields": {"kind": 131, "text": "Czerny\u00a0Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; \u2020 Berlin, 3. 10. 1941.", "source": 114}}, {"model": "metainfo.text", "pk": 47206, "fields": {"kind": 130, "text": "Absolvierte die Theres, Milit. Akad., 1842\u201348 \u00f6sterr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, fl\u00fcchtete 1849 nach Deutschland und lebte von 1850\u201357 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Pr\u00e4s. Mitre machte ihn zum Chef der Sektion des milit. Ingenieurwesens. Als solcher nahm er die Karte des paraguayisch-brasilianischen Grenzgebietes von Argentinien auf. lm Krieg der Tripelallianz gegen Paraguay 1865\u201369 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa F\u00e9 nach Esperanza und plante die Festungen in den Provinzen C\u00f3rdoba, Santa F\u00e9 und Buenos Aires. 1870\u201374 Leiter des Colegio Militar; 1875\u2013 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. f\u00fcr Mathematik in Concepci\u00f3n del Uruguay. 1884 in die Pr\u00fcfungskomm. des Colegio Militar und in die Comisi\u00f3n revisadora y proyectora berufen, 1884\u201395 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n", "source": 116}}, {"model": "metainfo.text", "pk": 47207, "fields": {"kind": 131, "text": "Czetz\u00a0Johann. * Gid\u00f3falva, 8. 6. 1822; \u2020 Buenos Aires, 6. 9. 1904.", "source": 116}}, {"model": "metainfo.text", "pk": 47208, "fields": {"kind": 130, "text": "Stud. in Br\u00fcnn und Olm\u00fctz unter Leitung seines Oheims Caroni, trat 1808 in das m\u00e4hrisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekret\u00e4r bei der Obersten Justizstelle in Wien.\n", "source": 117}}, {"model": "metainfo.text", "pk": 47209, "fields": {"kind": 131, "text": "Czikann\u00a0Johann Jakob Heinrich, Beamter und Schriftsteller. * Br\u00fcnn, 10. 7. 1789; \u2020 Br\u00fcnn, 10. 6. 1855.", "source": 117}}, {"model": "metainfo.text", "pk": 47210, "fields": {"kind": 130, "text": "Sohn des Christian C.-G., trat 1826 in die Armee ein, 1839 Obst. und Rgtskmdt., 1846 GM. und Brigadier in Prag, 1848 in Mailand; k\u00e4mpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenb\u00fcrgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. Gy\u00f6rgy und Kaszon-Ujfalu; Landeskommandierender in B\u00f6hmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, k\u00e4mpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vlie\u00df; 1866 Kmdt. des 1. Armeekorps gegen Preu\u00dfen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n", "source": 108}}, {"model": "metainfo.text", "pk": 47211, "fields": {"kind": 131, "text": "Clam-Gallas\u00a0Eduard Graf, General. * Prag, 11. 3. 1805; \u2020 Wien, 17. 3. 1891.", "source": 108}}, {"model": "metainfo.text", "pk": 47212, "fields": {"kind": 130, "text": "\u00c4ltester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853\u201359 Landespr\u00e4s. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorit\u00e4t; haupts\u00e4chlich nach seinen Vorschl\u00e4gen entstand das Oktoberdiplom; F\u00fchrer der feudal-klerikal-slaw. und f\u00f6deralistischen Partei, seit 1862 nur mehr im Landtag. Er war einer der Urheber der Abstinenzpolitik der Tschechen und konzipierte 1871 die Fundamentalartikel; unter Taaffe kehrten die Tschechen 1879 in den Reichsrat zur\u00fcck und C. war wie vorher als Generalreferent des Budgets t\u00e4tig; 1884 zog er sich krankheitshalber vom \u00f6ffentlichen Leben zur\u00fcck; seit 1859 Geh. Rat, seit 1861 Pr\u00e4s. des B\u00f6hmischen Mus., Ehrenmitgl. der Kgl. B\u00f6hm. Ges. d. Wiss.\n", "source": 109}}, {"model": "metainfo.text", "pk": 47213, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; \u2020 Prag, 5. 6. 1887.", "source": 109}}, {"model": "metainfo.text", "pk": 47214, "fields": {"kind": 130, "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des F\u00fcrsten Thun F\u00fchrer der Rechten im Herrenhaus, stand hier und im b\u00f6hmischen Landtag den Tschechen nahe. Im Weltkrieg k\u00e4mpfte er an der russ. und an der italien. Front und r\u00fcckte von den Tschechen ab, als diese immer mehr auf die Zerst\u00f6rung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpr\u00e4s. Er suchte vergeblich, Vertreter aller \u00f6sterr. Nationalit\u00e4ten ins Kabinett zu berufen, um einen langfristigen Ausgleich mit Ungarn zustandezubringen, aber die Tschechen lehnten ab; er setzte das Parlament erfolglos wieder in seine Rechte ein, verstimmte die Deutschen, deren W\u00fcnsche nicht erf\u00fcllt wurden und vermochte nicht, die Tschechen, S\u00fcdslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917\u201319 Milit\u00e4rgouverneur von Montenegro. Pr\u00e4s. der Vereinigung kathol. Edelleute \u00d6sterr., Ritter des Ordens vom Goldenen Vlie\u00df, Geh. Rat und K\u00e4mmerer.\n", "source": 110}}, {"model": "metainfo.text", "pk": 47215, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; \u2020 Clam b. Grein, 7. 3. 1932.", "source": 110}}, {"model": "metainfo.text", "pk": 47216, "fields": {"kind": 130, "text": "Stud. in Marburg und Gie\u00dfen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. f\u00fcr Zoologie in W\u00fcrzburg, 1870 in G\u00f6ttingen, 1873 f\u00fcr Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gr\u00fcnder er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in G\u00f6ttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n", "source": 111}}, {"model": "metainfo.text", "pk": 47217, "fields": {"kind": 131, "text": "Claus\u00a0Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; \u2020 Wien, 18. 1. 1899.", "source": 111}}, {"model": "metainfo.text", "pk": 47218, "fields": {"kind": 130, "text": "Stud. in G\u00f6ttingen und Berlin, 1855 Dr. phil., 1857\u201360 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. f\u00fcr Arch\u00e4ologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete arch\u00e4ologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Arch\u00e4ologie, Kunstgeschichte und klass. Philologie verbindende Lehrt\u00e4tigkeit. Er begr\u00fcndete die Wr. Vorlegebl\u00e4tter, errichtete 1876 zusammen mit O. Hirschfeld das Arch\u00e4olog.-epigr. Seminar, f\u00fchrte zwei \u00f6sterr. Grabungskampagnen auf der Insel Samothrake durch, rief das gro\u00dfe Werk der Wr. Akad. d. Wiss. \u201eDie attischen Grabreliefs\u201c ins Leben und gab in 3 Heften der Denkschriften \u201eR\u00f6mische Bildwerke einheimischen Fundorts in \u00d6sterreich\u201c heraus. 1877\u201387 \u00fcbernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887\u20131905 leitete er als Gen.-Sekr. das Arch\u00e4olog. Inst. des Dt. Reiches, dem er 1903 in der R\u00f6m.-german. Komm. auch eine Zentralstelle f\u00fcr die arch\u00e4olog. Heimatforschung anschlo\u00df. In seinen beiden letzten Stellungen galten seine Arbeiten vor allem den von ihm angeregten Ausgrabungen in Pergamon und den dort gemachten Funden. C. hat die versch. Gebiete der Arch\u00e4ologie durch bahnbrechende Werke gef\u00f6rdert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n", "source": 112}}, {"model": "metainfo.text", "pk": 47219, "fields": {"kind": 131, "text": "Conze\u00a0Alexander, Arch\u00e4ologe. * Hannover, 10. 12. 1831; \u2020 Berlin, 19. 7. 1914.", "source": 112}}, {"model": "metainfo.text", "pk": 47220, "fields": {"kind": 130, "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. K\u00fcnste, hatte 1860\u201364 ein Atelier in M\u00fcnchen, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg f\u00fcr das Arsenal auszuf\u00fchren, leitete 1883 die Jubil\u00e4umsausstellung zur T\u00fcrkenbelagerung im Rathaus, stellte 1886 die st\u00e4dtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. K\u00fcnste.\n", "source": 113}}, {"model": "metainfo.text", "pk": 47221, "fields": {"kind": 131, "text": "Costenoble\u00a0Karl, Bildhauer. * Wien, 26. 11. 1837; \u2020 Wien, 20. 6. 1907.", "source": 113}}, {"model": "metainfo.text", "pk": 47226, "fields": {"kind": 130, "text": "Stud. in Prag Jus; ao. Prof. f\u00fcr Rechtsgeschichte an der Univ. Prag; Mitgl. der B\u00f6hm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des b\u00f6hm. Stadtrechtes.\n", "source": 103}}, {"model": "metainfo.text", "pk": 47227, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Jarom\u00edr, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; \u2020 Prag, 16. 10. 1914.", "source": 103}}, {"model": "metainfo.text", "pk": 47228, "fields": {"kind": 130, "text": "Sohn des Dichters Franz Ladisl. C., kam mit seinem Vater nach Breslau, wo er die unteren Klassen des kathol. Gymn. besuchte, Deutsch lernte und sein erstes Herbarium anlegte. 1849 kehrte die Familie nach Prag zur\u00fcck. Nach dem Tode des Vaters nahm sich der Physiologe Purkyne seiner an und bei ihm lernte C. auch die exakte Methode der mikroskopischen Untersuchung. Noch vor Beendigung seiner Studien erschienen die ersten botanischen Aufs\u00e4tze. Nach Vollendung der Univ. wurde er Gymnasialsupplent in Komotau, wo er die Flora des Erzgebirges kennenlernte. 1860 Kustos am Botanischen Mus. in Prag, 1863 Dr.phil., 1866 Doz. an der Prager Technik, dann Vorstand der botanischen Sektion des \u201eKomitees f\u00fcr die naturwiss. Durchforschung B\u00f6hmens\u201c und Mitgl. der \u201eB\u00f6hmischen Ges. d. Wiss.\u201c\n", "source": 104}}, {"model": "metainfo.text", "pk": 47229, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Ladislav, Botaniker. * Prag, 29. 11. 1834; \u2020 Prag, 24. 11. 1902.", "source": 104}}, {"model": "metainfo.text", "pk": 47230, "fields": {"kind": 130, "text": "Gr\u00fcndete 1842 eine Fabrik f\u00fcr Blechblasinstrumente und baute eine Anzahl versch. geformter Kontraba\u00dfinstrumente f\u00fcr die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n", "source": 105}}, {"model": "metainfo.text", "pk": 47231, "fields": {"kind": 131, "text": "Cerven\u00fd\u00a0V\u00e1clav Franti\u0161ek, Instrumentenmacher. * Dubec (B\u00f6hmen), 27. 9. 1819; \u2020 K\u00f6niggr\u00e4tz, 19. l. 1896.", "source": 105}}, {"model": "metainfo.text", "pk": 47232, "fields": {"kind": 130, "text": "Sohn des Malers Matthias Ch., befa\u00dfte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. K\u00fcnste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n", "source": 106}}, {"model": "metainfo.text", "pk": 47233, "fields": {"kind": 131, "text": "Charlemont\u00a0Hugo de, Maler. * Jamnitz, 18. 3. 1850; \u2020 Wien, 18. 3. 1939.", "source": 106}}, {"model": "metainfo.text", "pk": 47234, "fields": {"kind": 130, "text": "Stud. in Prag, 1771 Baccal., 1772 Priester, 1777 Pfarrer, 1779 Mitgl. des Prager Domkapitels, 1795 Bischof von Canea in partib., 1802 Bischof von Leitmeritz, hier als \u201eVater der Armen\u201c gepriesen, 1814 F\u00fcrsterzb. von Prag, 1815 inthronisiert. Gr\u00fcndete Schulen und Wohlt\u00e4tigkeitsanstalten.\n", "source": 107}}, {"model": "metainfo.text", "pk": 47235, "fields": {"kind": 131, "text": "Chlumczansk\u00fd\u00a0Wenzel Leopold von, Bischof. * Hostitz (B\u00f6hmen), 15. 11. 1749; \u2020 14. 6. 1830.", "source": 107}}, {"model": "metainfo.text", "pk": 47236, "fields": {"kind": 130, "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881\u201386 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollm\u00e4chtigter Min. in Belgrad, vertrat 1908 \u00d6sterr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913\u201315 a o. und bevollm\u00e4chtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der V\u00f6lkerbunds- und Friedensbewegung t\u00e4tig, Pr\u00e4s. der \u00f6sterr. V\u00f6lkerbundliga; Pazifist; Freund und F\u00f6rderer von Kunst und Wiss.\n", "source": 121}}, {"model": "metainfo.text", "pk": 47237, "fields": {"kind": 131, "text": "Dumba\u00a0Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; \u2020 Bodensdorf/Ossiachersee, 6. 1. 1947.", "source": 121}}, {"model": "metainfo.text", "pk": 47238, "fields": {"kind": 130, "text": "Stud. in Stuttgart und Berlin, arbeitete l\u00e4ngere Zeit im Atelier Siccardsburgs und Van der N\u00fclls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n", "source": 120}}, {"model": "metainfo.text", "pk": 47239, "fields": {"kind": 131, "text": "Doderer\u00a0Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; \u2020 Wien, 13. 5. 1900.", "source": 120}}, {"model": "metainfo.text", "pk": 47240, "fields": {"kind": 130, "text": "Sohn eines Bauern, zeigte fr\u00fch Interesse f\u00fcr Schnitzen und Zeichnen, aber erst nach dem Tode des Vaters gab er den Hof auf und ging 1860 nach Innsbruck, um bei Stolz die Bildschnitzerei zu erlernen. Auf dessen Rat wandte er sich der Malerei zu, ging 1862 an die Akad. in M\u00fcnchen, 1863\u201365 nach Paris, dann nach Tirol zur\u00fcck, 1867 wieder nach M\u00fcnchen, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einflu\u00df auf ihn aus\u00fcbte. 1878 Prof. an der M\u00fcnchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist au\u00dferdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten b\u00e4uerlichen Genremalerei.\n", "source": 118}}, {"model": "metainfo.text", "pk": 47241, "fields": {"kind": 131, "text": "Defregger\u00a0Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; \u2020 M\u00fcnchen, 2. 1. 1921.", "source": 118}}, {"model": "metainfo.text", "pk": 47242, "fields": {"kind": 130, "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899\u20131901 unter der Leitung von Sickel und Pastor am \u00d6sterr. Hist. Inst. in Rom, haupts\u00e4chlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917\u201346 (mit Unterbrechung von 1938\u201345) Ordinarius f\u00fcr Geschichte der Neuzeit. D., ein guter Kenner der Best\u00e4nde des Vat. Geheimarchivs, war 1929\u201338 als Nachfolger Pastors Dir. des \u00d6sterr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das \u00d6sterr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n", "source": 119}}, {"model": "metainfo.text", "pk": 47243, "fields": {"kind": 131, "text": "Dengel\u00a0Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; \u2020 Innsbruck, 9. 9. 1947.", "source": 119}}, {"model": "metainfo.text", "pk": 47276, "fields": {"kind": 130, "text": "Startete 1926 das erstemal bei einem Sch\u00fclerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen f\u00fcr M\u00e4dchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der M\u00e4dchen einen 1. und zwei 2. Pl\u00e4tze. 1929 gewann sie das Verbands-Neulings-Laufen f\u00fcr Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen f\u00fcr Damen in Innsbruck, Grummh\u00fcbel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen f\u00fcr Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Z\u00fcrich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die \u00f6sterr. Meisterschaft im Kunstlaufen f\u00fcr Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen f\u00fcr Damen in Z\u00fcrich und am Semmering. 1933 wurde sie abermals \u00f6sterr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine t\u00fcck. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein j\u00e4hes Ende.\n", "source": 122}}, {"model": "metainfo.text", "pk": 47277, "fields": {"kind": 131, "text": "Holovsky\u00a0Hilde, Kunstl\u00e4uferin. * Wien, 29. 4. 1917; \u2020 Wien, 3. 7. 1933.", "source": 122}}, {"model": "metainfo.text", "pk": 47384, "fields": {"kind": 130, "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887\u201394 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894\u20131903 Primarius an der Internen Abt. des K. Franz-Josef-Spitals und am Allg. Krankenhaus in Wien. 1901 tit. ao. Prof. an der Univ. Wien. 1903 o. Prof. f\u00fcr Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der \u00c4rzte in Wien, Mitgl. der Dt. Ges. f\u00fcr innere Med. und der Dt. Naturforscher und \u00c4rzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n", "source": 134}}, {"model": "metainfo.text", "pk": 47385, "fields": {"kind": 131, "text": "Lorenz\u00a0Heinrich, Internist. * Mies (Str\u00edbro, B\u00f6hmen), 13. 4. 1859; \u2020 Graz, 25. 3. 1945.", "source": 134}}, {"model": "metainfo.text", "pk": 47388, "fields": {"kind": 130, "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der \u201eKorrespondenz Wilhelm\u201c, die Polizei- und Hof\u00e4mter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim \u201eIllustrierten Wiener Extrablatt\u201c; 1876 war L. Kriegsberichterstatter im serb.-t\u00fcrk., 1877 im russ.-t\u00fcrk. und 1885 im bulgar.-serb. Krieg, 1878 in Bosnien. Ebenfalls als Reporter nahm L. am mazedon. Aufstand teil. Im Dienste seiner Redaktion unternahm er in den Folgejahren weite Reisen durch Europa, Nordamerika und weite Gebiete Afrikas. Am 2. 6. 1889 fuhr er mit einem Fiaker nach Paris zur Weltausst., wo ihm am 22. 6. ein triumphaler Empfang bereitet wurde. 1894 wurde er bei dem genannten Bl. stellvertretender Schriftleiter, 1898 (gem. mit J. Bauer, s.d.) Chefredakteur. L. war durch Feuilletons, Wr. Sittenschilderungen, Lokal- und Reiseberichte in weiten Kreisen bekannt geworden. Er war von wirkungsvoller Darstellungsf\u00e4higkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalit\u00e4t. Das \u201eIllustrierte Wiener Extrablatt\u201c war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des \u201eArmenvaters\u201c in seinem Bl. sowie als Viennensia-Sammler.\n", "source": 133}}, {"model": "metainfo.text", "pk": 47389, "fields": {"kind": 131, "text": "L\u00f6wy\u00a0Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (\u00dadlice, B\u00f6hmen), 14. 9. 1851; \u2020 Wien, 27. 12. 1905.", "source": 133}}, {"model": "metainfo.text", "pk": 47394, "fields": {"kind": 130, "text": "Sohn eines F\u00e4rbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und er\u00f6ffnete 1823 im 1. Bez. in der Weihburgg. einen Laden \u201eZur Kaiserin von \u00d6sterreich\u201c, 1824 einen Laden K\u00e4rntnerstr. 940, der 1844 vergr\u00f6\u00dfert wurde. 1824 wurde L. Meister und B\u00fcrger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glash\u00e4ndler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & G\u00f6rner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergr\u00f6\u00dferten Gesch\u00e4ftes vollst\u00e4ndig erneuert. L., nicht nur Glash\u00e4ndler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er h\u00e4ufig Reisen in Begleitung seiner S\u00f6hne Josef oder Ludwig unternahm), versuchte, nach franz\u00f6s. Pre\u00dfglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so da\u00df er viel franz\u00f6s. Pre\u00dfglas einf\u00fchren mu\u00dfte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenst\u00e4nde wurden nach Wien geliefert bzw. wurden auch Gegenst\u00e4nde nach L.s Entw\u00fcrfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten t\u00e4tig war, bezog Glas aus den b\u00f6hm. H\u00fctten und lie\u00df nach eigenen Mustern arbeiten. 1823\u201355 wurden Gl\u00e4ser im Biedermeierstil erzeugt. Die Fa. beteiligte sich an den Gewerbsproduktenausst. 1839 und 1845 in Wien, fertigte Spiegel und Luster an, wurde 1848 Sieger in einem Wettbewerb um die Beleuchtungseinrichtung im Palais des Vizekg. von \u00c4gypten und arbeitete f\u00fcr den Palazzo Reale in Venedig.\n", "source": 132}}, {"model": "metainfo.text", "pk": 47395, "fields": {"kind": 131, "text": "Lobmeyr\u00a0Josef, Fabrikant. * Grieskirchen (O.\u00d6.), 17. 3. 1792; \u2020 Wien, 8. 5. 1855.", "source": 132}}, {"model": "metainfo.text", "pk": 47402, "fields": {"kind": 130, "text": "Absolv. das Realgymn.; arbeitete bis 1868 f\u00fcr die Z. \u201eIllustrierte Welt\u201c, gab dann das demokrat. Bl. \u201eFreie Volksstimme\u201c heraus, war Korrespondent ausl\u00e4nd. Ztg. und begr\u00fcndete gem. mit S. Spitz 1870/71 das \u201e\u00d6sterreichisch-ungarische Volksblatt f\u00fcr Stadt und Land\u201c. Angeregt durch seine Bekanntschaft mit dem National\u00f6konomen L. v. Stein stud. er Volkswirtschaft und Statistik und gr\u00fcndete 1874 das Fachbl. \u201eGambrinus\u201c, welches gro\u00dfes Ansehen geno\u00df. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und N\u00e4hrausst. in Wien, 1904 k. Rat, Pr\u00e4s. des \u00f6sterr. Fachschriftstellerverbandes, Vizepr\u00e4s. des Reichsverbandes \u00f6sterr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n", "source": 130}}, {"model": "metainfo.text", "pk": 47403, "fields": {"kind": 131, "text": "Lichtblau\u00a0Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; \u2020 Abbazia (Opatija, Istrien), 10. 5. 1908.", "source": 130}}, {"model": "metainfo.text", "pk": 47404, "fields": {"kind": 130, "text": "Nach Absolv. der jurid. Stud. in Wien 1898 Konzipient in der k. k. Finanzprokuratur in Wien, dann Rechtspraktikant (Auskultant) beim Landesgericht Innsbruck, 1899 Richteramtspr\u00fcfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht f\u00fcr Zivilrechtssachen in Wien und 1927 Rat des Oberlandesgerichtes Wien. 1931 Vorsitzender Rat des Oberlandesgerichtes, wurde er im gleichen Jahr zum Rat des Verwaltungsgerichtshofes ernannt. L., der schon als Richter am Exekutionsgericht Wien durch seine vorz\u00fcglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich gr\u00f6\u00dfte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das \u00f6sterr. Exekutionsrecht l\u00fcckenlos erfa\u00dft und seinen Zusammenhang mit den \u00fcbrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsvertr\u00e4gen niedergelegt, tw. ber\u00fccksichtigt und dadurch die Exekutionsgrunds\u00e4tze eines gro\u00dfen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n", "source": 131}}, {"model": "metainfo.text", "pk": 47405, "fields": {"kind": 131, "text": "Lichtblau\u00a0Ludwig, Jurist. * Olm\u00fctz (Olomouc, M\u00e4hren), 25. 2. 1875; \u2020 Wien, 19. 12. 1935.", "source": 131}}, {"model": "metainfo.text", "pk": 47410, "fields": {"kind": 130, "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtspr\u00fcfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. f\u00fcr Botanik an der Univ. Graz, 1868 ao., 1869 o. Prof., 1876/77 Dekan, 1884/85 Rektor, 1873 erhielt er auch die Dion. des Botan. Gartens und die Supplierung der Lehrkanzel f\u00fcr Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begr\u00fcnder des Botan. Inst. der Univ., das gegen\u00fcber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatb\u00fccherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und T\u00fcbingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Pr\u00e4s. des Naturwiss. Ver. f\u00fcr Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Ver\u00f6ff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die \u00fcber Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbst\u00e4ndig erschienenen Werke geh\u00f6ren dazu, von denen die umfangreiche Monographie \u201eUntersuchungen \u00fcber die Lebermoose\u201c in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im K\u00e4rntner Landtag (1869\u201372) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n", "source": 128}}, {"model": "metainfo.text", "pk": 47411, "fields": {"kind": 131, "text": "Leitgeb Hubert,\u00a0Botaniker. * Portendorf b. Klagenfurt (K\u00e4rnten), 20. 10. 1835; \u2020 Graz, 5. 4. 1888 (Selbstmord).", "source": 128}}, {"model": "metainfo.text", "pk": 47414, "fields": {"kind": 130, "text": "Vater des Anatomen J\u00f3zsef v. L. (s. d.), Gro\u00dfvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Pre\u00dfburg stud. er Med. an den Univ. Wien und Pest, 1799 Dr. med. und Chirurgus des Kom. Gran. 1808 Prof. der Physiol. und der Anatomie an der Univ. Pest, 1809/10 und 1815\u201317 Dekan, 1818/19 Rektor. 1819 Prof. der Physiol. an der Univ. Wien. 1825 Statthaltereirat und Protomedicus, war er bis zu seinem Tode Dir. der Pester med. Fak. 1808 wurde er in den ung. Adelsstand erhoben. L., einer der ersten, der die Pockenimpfung in Ungarn anwandte (1799), erwarb sich auch 1831 gro\u00dfe Verdienste um die Bek\u00e4mpfung der Cholera. Er ma\u00df den psych. Vorg\u00e4ngen bei Erkrankungen und auch in der Therapie gro\u00dfe Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n", "source": 129}}, {"model": "metainfo.text", "pk": 47415, "fields": {"kind": 131, "text": "Lenhoss\u00e9k\u00a0Mih\u00e1ly Ign\u00e1c von, Physiologe. * Pre\u00dfburg, 11. 5. 1773; \u2020 Ofen (Buda, Ungarn), 11. 2. 1840.", "source": 129}}, {"model": "metainfo.text", "pk": 47418, "fields": {"kind": 130, "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen K\u00fcnste in Wien (bei Griepenkerl, s.d.) und M\u00fcnchen (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gr\u00fcndung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, M\u00e4rchen- und Landschaftsbildern, bet\u00e4tigte sich aber nach Gr\u00fcndung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einflu\u00df, mit au\u00dferordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schlo\u00df Esterhazy bei Pre\u00dfburg, Privatwohnungen der Maler Goltz und Ranzoni), B\u00fchnen- und Kost\u00fcmentw\u00fcrfe, Stickereien, F\u00e4cher, Kassetten, M\u00f6bel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60j\u00e4hrigen Regierungsjubil\u00e4um von K. Franz Joseph I. (s. d.) 1908. 1900\u201303 war er (als Vorg\u00e4nger von A. Roller) Ausstattungschef der Wr. Hofoper.\n", "source": 125}}, {"model": "metainfo.text", "pk": 47419, "fields": {"kind": 131, "text": "Lefler\u00a0Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; \u2020 Wien, 14. 3. 1919.", "source": 125}}, {"model": "metainfo.text", "pk": 47420, "fields": {"kind": 130, "text": "Tochter eines Rechtsanwaltes; stud. an den Univ. Wien und Heidelberg (M. Weber) Staatswiss., 1918 Dr.rer.pol. Nach 1918 redigierte sie in Wien die Frauenbeilage der Gewerkschaftsztg. \u201eDer Metallarbeiter\u201c und arbeitete als Sekret\u00e4rin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 \u00fcbernahm sie das Referat f\u00fcr Frauenarbeit in der Wr. Kammer f\u00fcr Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. \u201eArbeit und Wirtschaft\u201c. L., welche sich der Sozialdemokrat. Partei \u00d6sterr. angeschlossen hatte, heiratete 1921 den Redakteur der \u201eArbeiter-Zeitung\u201c Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den sp\u00e4teren Vorsitzenden der Vereinigung der Zeitungskorrespondenten bei den Vereinten Nationen. Sie bekleidete in der Bezirksorganisation Wien-Innere Stadt die Funktionen der Vorsitzenden des Bezirksbildungsausschusses und des Bezirksfrauenkomitees sowie der Obmannstellvertreterin der Bezirksorganisation. 1933 wurde sie in das Zentralfrauenkomitee der Sozialdemokrat. Partei berufen. 1934 war sie mit Otto L. eines der Gr\u00fcndungsmitgl. der illegalen Partei der \u201eRevolution\u00e4ren Sozialisten\u201c \u00d6sterr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der \u201eRevolution\u00e4ren Sozialisten\u201c. 1938 verhalf sie ihrem Mann zur Flucht ins Ausland, sie selbst wurde knapp vor der beabsichtigten Abreise verhaftet. Von Herbst 1939 bis zu ihrer Ermordung war sie im KZ Ravensbr\u00fcck.\n", "source": 126}}, {"model": "metainfo.text", "pk": 47421, "fields": {"kind": 131, "text": "Leichter\u00a0K\u00e4the, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; \u2020 Ravensbr\u00fcck (Brandenburg), 17. 3. 1942 (KZ).", "source": 126}}, {"model": "metainfo.text", "pk": 47422, "fields": {"kind": 130, "text": "Neffe des Gro\u00dfh\u00e4ndlers und Bankiers Markus Leidesdorfer v. Neuwall (s. d.); sollte Kaufmann werden, wandte sich aber gegen den Willen der Eltern dem Schauspielerberuf zu und debut. 1830 unter dem Namen Wallner in Krems. \u00dcber Bad Ischl, Wr. Neustadt, Laibach, Agram etc. kam L. 1835 nach Wien, wo er zuerst im Theater an der Wien und dann im Theater in der Leopoldstadt vorwiegend in Raimund-Rollen auftrat und besonders nach Raimunds Tod 1836, durch seine Raimunds Schauspielkunst getreu kopierende Darstellungsweise, gro\u00dfe Erfolge errang. 1839 ging er f\u00fcr zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle gr\u00f6\u00dferen St\u00e4dte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei St\u00e4dten f\u00fchrte L. auch die Dion. des Theaters. 1854 pachtete er das K\u00f6nigst\u00e4dt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Gesch\u00e4ftst\u00fcchtigkeit, seinen Flei\u00df und k\u00fcnstler. Sp\u00fcrsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerb\u00fchne erweitert hatte, bald lokale Ber\u00fchmtheit. 1864 lie\u00df er es vergr\u00f6\u00dfern und renovieren und er\u00f6ffnete es am 3. 12. als \u201eWallnertheater\u201c. Hatte er in den ersten Jahren seiner Dions.-T\u00e4tigkeit vor allem das moderne franz\u00f6s. Sittenst\u00fcck gepflegt, verwirklichte er in sp\u00e4teren Jahren mit Hilfe des Dichters D. Kalisch und seines vorz\u00fcglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gr\u00fcnden das Theater an C. Lebrun und unternahm nun einige gr\u00f6\u00dfere Reisen. Seine Reise- und Theatererlebnisse ver\u00f6ff. L., der auch Mitarbeiter der \u201eGartenlaube\u201c war, in viel gelesenen B\u00fcchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n", "source": 127}}, {"model": "metainfo.text", "pk": 47423, "fields": {"kind": 131, "text": "Leidesdorf\u00a0Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; \u2020 Nizza, 19. 1. 1876.", "source": 127}}, {"model": "metainfo.text", "pk": 47428, "fields": {"kind": 130, "text": "Bruder des Folgenden, Onkel des Juristen Stanko L. (s. d.); stud. an der Techn. Hochschule in Graz. Ab 1866 im Dienst an der Milit\u00e4rgrenze, zuerst in Temesv\u00e1r, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent f\u00fcr Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890\u201394 Sekret\u00e4r des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der \u201eVijesti\u201c (Berr.) dieses Ver. L. baute Stra\u00dfen (Ogulin\u2013Novi, Alt-Gradi\u0161ka\u2013Lipik), die Kanalisation des Jelas-Feldes und im s\u00fcd\u00f6stlichen Syrmien, Wasserleitungen f\u00fcr die St\u00e4dte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan f\u00fcr die Kanalisation von Agram etc.\n", "source": 124}}, {"model": "metainfo.text", "pk": 47429, "fields": {"kind": 131, "text": "Lapaine\u00a0Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; \u2020 Agram, 21. 2. 1923.", "source": 124}}, {"model": "metainfo.text", "pk": 47430, "fields": {"kind": 130, "text": "Tochter des Gro\u00dfindustriellen Josef v. Schroll (1821\u201391), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849\u201389), B\u00fcrgermeister der Stadt Braunau 1883\u201389, in zweiter Ehe ab 1892 mit dem Politiker und Gro\u00dfindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, \u00f6ff. Gesellschafterin der Fa. Benedikt Schrolls Sohn. Nach dem Tode Josef v. Schrolls wurden beide Schwestern Inhaberinnen der Firma, Johanna L., nach Vereinbarung, 1908 Alleininhaberin und Seniorchefin. Sie leitete die vielseitigen Industriebetriebe mit gro\u00dfer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (B\u00fcchereien, Krankenkasse, Spital etc.) f\u00fcr die bereits um die Jahrhundertwende ca. 2600 z\u00e4hlenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer L\u00e4ndchens.\n", "source": 123}}, {"model": "metainfo.text", "pk": 47431, "fields": {"kind": 131, "text": "Langer-Schroll\u00a0Johanna, Gro\u00dfindustrielle. * Braunau (Broumov, B\u00f6hmen), 2. 10. 1850; \u2020 ebenda, 9. 11. 1926.", "source": 123}}, {"model": "metainfo.text", "pk": 47432, "fields": {"kind": 130, "text": "Enkel des Freiburger Physikers J. J. M\u00fcller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van\u2019t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. M\u00fcnster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in M\u00fchlhausen, 1906 Priv.Doz. an der Univ. Basel, 1909 tit. Prof. M. wirkte ab 1911 als Leiter des anorgan.-wiss. und analyt. Laboratoriums bei den Farbenfabriken Bayer & Co. (Leverkusen), ab 1926 als Nachfolger J\u00fcptners (s. d.) als o. Prof. f\u00fcr chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich t\u00e4tig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivit\u00e4t und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefels\u00e4ure und Zement aus Gips und Ton gewann gro\u00dfe techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n", "source": 144}}, {"model": "metainfo.text", "pk": 47433, "fields": {"kind": 131, "text": "M\u00fcller\u00a0Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; \u2020 Wien, 9. 12. 1941.", "source": 144}}, {"model": "metainfo.text", "pk": 47446, "fields": {"kind": 130, "text": "Tochter eines Gutsbesitzers; kr\u00e4nkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkr\u00e4mpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so gro\u00dfes Aufsehen, da\u00df an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von G\u00f6rres, Brentano, Steinle, M\u00f6hler, D\u00f6llinger, Reisach und Ketteler besucht. 1841 \u00fcbersiedelte sie in das Tertiarinnenkloster in Kaltern. Als Mitgl. des 3. Ordens des Hl. Franziskus wurde sie seelsorglich von P. K. Soyer OFM betreut. Nach langem Leiden starb sie an Blutzersetzung. Die amtlichen Berichte \u00fcber sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n", "source": 143}}, {"model": "metainfo.text", "pk": 47447, "fields": {"kind": 131, "text": "M\u00f6rl\u00a0Maria Theresia von, Stigmatisierte. * Kaltern (S\u00fcdtirol), 16. 10. 1812; \u2020 ebenda, 11. 1. 1868.", "source": 143}}, {"model": "metainfo.text", "pk": 47448, "fields": {"kind": 130, "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer lie\u00df sich M. im Oktober 1843 als Matrose f\u00fcr die Kriegsmarine anwerben und machte 1844\u201346 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 k\u00e4mpfte er als Kmdt. eines Kanonenbootes in der Lagune, vor Ancona und bei der Blockade von Venedig. Nach verschiedenen Einschiffungen und Verwendungen in den folgenden Jahren war M. 1859 vor Lissa Kmdt. der Korvette \u201eMinerva\u201c, 1861/62 hatte er in Pola die Bauleitung der Fregatte \u201eSchwarzenberg\u201c, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapit\u00e4n mit Auszeichnung kommandierte. 1867 als Insel- und Festungskmdt. von Lissa, 1868 als Kmdt. des Seearsenals in Pola in Verwendung, unternahm M. 1869 eine Mission nach England, im Oktober dieses Jahres kommandierte er die in der Bucht von Cattaro zur Bek\u00e4mpfung des Aufstandes in S\u00fcddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871\u201383 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine gro\u00dfe administrative Begabung hatte, besa\u00df eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauauftr\u00e4gen f\u00fcr Schiffe trat er entschieden f\u00fcr die Besch\u00e4ftigung inl\u00e4nd. Firmen ein. Er war ein begeisterter Sammler klass. Altert\u00fcmer und ein bedeutender Numismatiker. Teile der \u201eSammlung Millosicz\u201c, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n", "source": 142}}, {"model": "metainfo.text", "pk": 47449, "fields": {"kind": 131, "text": "Millosicz\u00a0Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; \u2020 Leoben (Stmk.), 24. 7. 1890.", "source": 142}}, {"model": "metainfo.text", "pk": 47450, "fields": {"kind": 130, "text": "Sohn eines Weinbauern; stud. mit Hilfe seines Onkels, eines Landpfarrers, an den Gymn. in Warasdin und Marburg a. d. Drau, dann Phil. und Jus an den Univ. Graz (1838 Dr. phil.) und Wien (1841 Dr. jur.). 1837/38 suppl. er die philosoph. Lehrkanzel an der Univ. Graz und versuchte erfolglos, sich an der Univ. Innsbruck zu habil. Nach k\u00fcrzerer Praxis in Wr. Anwaltskanzleien bekam er 1844 mit Hilfe Kopitars (s. d.), der auf seine sprachliche Begabung aufmerksam geworden war, eine Amanuensisstelle an der Hofbibl. (1850 Skriptor, 1862 i. R.). 1849 wurde er ao., 1850 o. Prof. der slaw. Philol. und Literatur an der Univ. Wien, 1851/52, 1856/57 Dekan, 1854/55 Rektor, 1885 i. R. Pr\u00e4s. der Pr\u00fcfungskomm. f\u00fcr Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866\u20131869 Sekret\u00e4r der phil.-hist. Kl.), 1862 lebensl\u00e4ngliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Pr\u00e4s. des akadem. Ver. \u201eSlovenija\u201c in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zuk\u00fcnftigen \u00f6sterr. F\u00f6deration verlangte. 1849 war er slowen. Abg. beim Reichstag in Kremsier, wo er durch besonnene Haltung die Sympathie Stadions erweckte, der dann seine Ernennung zum ersten Prof. der Slawistik in \u00d6sterr. bewirkte. M., der schon im Gymn. gro\u00dfe sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einflu\u00df Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begr\u00fcnder der slaw. Philol. In der Kritik der Vergleichenden Grammatik des Sanskrit, Zend, Griech., Latein., Litau., Got. und Dt. von Bopp bewies M. 1844 die Notwendigkeit wiss. Erforschung nicht nur der von Bopp behandelten, sondern auch aller slaw. Sprachen und verfolgte unerm\u00fcdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewu\u00dftes Streben aller V\u00f6lker Europas nach einer gem. Sprache festzustellen (Neueurop\u00e4ismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkm\u00e4ler des Altslowen., wie M. irrt\u00fcmlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, M\u00e4hren und Ru\u00dfland bezeichnete, verfa\u00dfte und publ. er die \u201eVergleichende Grammatik der slavischen Sprachen\u201c. Vom Altslowen. ausgehend, analysierte er in unz\u00e4hligen Beispielen slaw. Spracherscheinungen und lie\u00df scheinbar nur das Wei\u00dfruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem \u201eeigenth\u00fcmlichen Zauber der Sprache\u201c, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdr\u00fcckte. Verh\u00e4ngnisvoll wurde ihm die von Kopitar \u00fcbernommene \u201ePannonische Theorie\u201c, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im \u00f6stlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. \u201eLexicon palaeoslovenico-graeco-latinum\u201c und das \u201eEtymologische W\u00f6rterbuch der slavischen Sprachen\u201c die bedeutendsten. Im Sinne des Neueurop\u00e4ismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begr\u00fcnder der rum\u00e4n. und alban. Philol. wurde. Er verfa\u00dfte umfangreiche Stud. \u00fcber die Mundarten und Wanderungen der Zigeuner Europas und edierte erfolgreich altkirchenslaw. Texte sowie serb. und griech. hist. Quellen. M. war auch in der Lehnwort-, Personen- und Ortsnamenforschung sowie in der Analyse der Volksepik bahnbrechend. Geringere Bedeutung haben dagegen seine mytholog. und polem. Schriften.\n", "source": 141}}, {"model": "metainfo.text", "pk": 47451, "fields": {"kind": 131, "text": "Miklosich\u00a0Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomer\u0161cak pri Ljutomeru, Unterstmk.), 20. 11. 1813; \u2020 Wien, 7. 3. 1891.", "source": 141}}, {"model": "metainfo.text", "pk": 47460, "fields": {"kind": 130, "text": "Stud. an der Exportakad. (Hochschule f\u00fcr Welthandel) in Wien, wo er die Lehramtspr\u00fcfung f\u00fcr h\u00f6here Handelsschulen und die Diplompr\u00fcfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule f\u00fcr Welthandel, 1931 Habil. f\u00fcr Betriebswirtschaftslehre an der Hochschule f\u00fcr Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. f\u00fcr Betriebswirtschaftslehre. 1938 wurde M. durch die Nationalsozialisten von der Hochschule entfernt. Nach Verhaftung (1942) und Verurteilung im selben Jahr zu sechs Jahren Zuchthaus wegen Kenntnis von verr\u00e4ter. Vorhaben und Unterlassung der Anzeige, w\u00e4hrend des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der B\u00f6rsenverkehr. Er verband in seinen Ver\u00f6ff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realit\u00e4t mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einflu\u00df von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbst\u00e4ndige Teildisziplin der Wirtschaftswiss. verstandenen Betriebswirtschaftslehre, von einer privatwirtschaftlich ausgerichteten Unternehmungslehre zu einer alle wirtschaftlichen Einheiten einer Volkswirtschaft untersuchenden Lehre, die somit auch die Haushalte einbeziehen sollte. Betriebs- und Volkswirtschaftslehre zeigen nach M. \u201eandere Seiten des wirtschaftlichen Geschehens\u201c, wobei von ersterer \u201eder Betrieb als eine mit konkreten Tatbest\u00e4nden und Aufgaben erf\u00fcllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens \u00fcberhaupt untrennbar verbunden erscheint\u201c.\n", "source": 140}}, {"model": "metainfo.text", "pk": 47461, "fields": {"kind": 131, "text": "Meithner\u00a0Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; \u2020 Wien, 13. 12. 1942.", "source": 140}}, {"model": "metainfo.text", "pk": 47466, "fields": {"kind": 130, "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der j\u00fcd. Deklassierten. Seine Lieder, die er in Gasth\u00e4usern und Sch\u00e4nken vortrug, sind von sozialen Motiven gepr\u00e4gt. Obwohl er im Zeitalter der gr\u00f6\u00dften K\u00e4mpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des j\u00fcd. Volksgesanges, W\u00f6lwel Zbarazer (Ehrenkranz), durchzog mit einigen Gef\u00e4hrten, die man als \u201eBroder-S\u00e4nger\u201c bezeichnete, Galizien, Rum\u00e4nien sowie Ru\u00dfland, wo sie seine wie auch \u00e4ltere j\u00fcd. Volkslieder vortrugen. Er war der erste der j\u00fcd. fahrenden Volkss\u00e4nger, der Vorl\u00e4ufer des modernen jidd. Theaters.\n", "source": 139}}, {"model": "metainfo.text", "pk": 47467, "fields": {"kind": 131, "text": "Margulies\u00a0Berl, Volkss\u00e4nger. * Brody (Galizien), ca. 1817; \u2020 b. Bukarest, ca. 1880.", "source": 139}}, {"model": "metainfo.text", "pk": 47468, "fields": {"kind": 130, "text": "Tochter des Malers Anton\u00edn M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Sch\u00fclerin ihres Vaters, dessen maler. Verm\u00e4chtnis sie aber nicht so selbst\u00e4ndig entfalten konnte wie ihre Br\u00fcder, welche sie materiell unterst\u00fctzen mu\u00dfte.\n", "source": 137}}, {"model": "metainfo.text", "pk": 47469, "fields": {"kind": 131, "text": "M\u00e1nesov\u00e1\u00a0Amalie, Malerin. * Prag, 21. 1. 1817; \u2020 Prag, Juni 1883.", "source": 137}}, {"model": "metainfo.text", "pk": 47470, "fields": {"kind": 130, "text": "Sohn des Malers Anton\u00edn M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ov\u00e1 (s. d.), Neffe des Folgenden; stud. 1838\u201351 an der Prager Akad. bei Tkadl\u00edk und Ruben, 1870/71 in D\u00fcsseldorf bei Vautier und begann unter dem Einflu\u00df der Akad. mit hist. Motiven in Genreart. Ab der zweiten H\u00e4lfte der 50er Jahre befa\u00dfte er sich mit volkst\u00fcmlichen Motiven, vor allem aus der Gegend von Bischofteinitz, und insbesondere mit Prager Typen. Er wurde zum bedeutendsten Vertreter der tschech. Genremalerei des 19. Jh. Seine Bilder haben intimen Zauber, sie sind durch den Sinn f\u00fcr die Atmosph\u00e4re des Milieus, durch Unmittelbarkeit, lyr. Zartheit, liebevollen Humor, manchmal durch melanchol. Klage gekennzeichnet. M. war auch ein ausgezeichneter Tiermaler, besonders von Pferden. Das zeichner. Werk nahm in seinem Schaffen einen bedeutsamen Platz ein. Auch als Illustrator t\u00e4tig, schuf er 52 Illustrationen zum 1. Tl. des Don Quichotte (1865, Holzschnitt). Mit seinem Bruder Josef M. begann er in den 50er Jahren ein Werk \u00fcber Trachtenstud. bei der l\u00e4ndlichen Bev\u00f6lkerung.\n", "source": 138}}, {"model": "metainfo.text", "pk": 47471, "fields": {"kind": 131, "text": "M\u00e1nes\u00a0Quido, Maler. * Prag, 17. 7. 1828; \u2020 Prag, 5. 8. 1880.", "source": 138}}, {"model": "metainfo.text", "pk": 47482, "fields": {"kind": 130, "text": "Sohn eines Privatiers und Handelsagenten; besuchte das Gymn. in Graz, war dann Schauspieleleve in Berlin, dramaturg. Berater am Stadttheater Innsbruck, Schauspieler, Szenenbildner und Regisseur an verschiedenen Provinzb\u00fchnen, 1917 am Residenztheater M\u00fcnchen, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehb\u00fcchern. Ab 1927 Autor bzw. Mitautor von Hollywood-Filmen; 1932 emigrierte er nach Frankreich und arbeitete in Paris mit dem Regisseur P. Czinner und der Schauspielerin E. Bergner zusammen, ab 1935 lebte er in London. Neben seiner dramaturg. T\u00e4tigkeit im Dokumentarfilmstudio von P. Rotha widmete er sich der Ausbildung von Filmautoren. Ungemein stilbildend, war M. der bedeutendste Drehbuchautor des dt. Stummfilms. Er arbeitete u. a. mit den Regisseuren R. Wiene, F. W. Murnau, L. Pick, L. Jessner und P. Czinner sowie mit den Schauspielern W. Krau\u00df, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Kl\u00f6pfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n", "source": 136}}, {"model": "metainfo.text", "pk": 47483, "fields": {"kind": 131, "text": "Mayer\u00a0Karl, Drehbuchautor. * Graz, 20. 2. 1894; \u2020 London, 1. 7. 1944.", "source": 136}}, {"model": "metainfo.text", "pk": 47484, "fields": {"kind": 130, "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Gesch\u00e4ftsf\u00fchrer gemacht. M.-S. besch\u00e4ftigte sich mit philosoph. und naturwiss. Stud., gr\u00fcndete 1829 das erste \u201eTiroler Mineralien-Comptoir\u201c und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im M\u00e4rz 1848 verfa\u00dfte er einen feurigen Aufruf \u201eA greachts Weartl von an alten Landesverteidiger an seini Mitbr\u00fcder\u201c, der gro\u00dfen Widerhall fand. Auf eigene Kosten r\u00fcstete er die 1. Innsbrucker Sch\u00fctzenkomp. aus, an deren Spitze er im Mai 1848 an die S\u00fcdfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein \u201eRadetzky-Album\u201c an (es enthielt Zeichnungen, Portr\u00e4ts, eine wertvolle Autographensmlg. etc.), welches er sp\u00e4ter dem Tiroler Landesmus. Ferdinandeum \u00fcbergab. M.-S. errichtete 1853 unter gro\u00dfem Kostenaufwand auf seinem Schlo\u00df B\u00fcchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gr\u00fcndete den 1. Arbeiterunterst\u00fctzungsver. und beteiligte sich an vielen humanit\u00e4ren Einrichtungen. 1865 verkaufte er sein Schlo\u00df und f\u00fchrte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. t\u00e4tig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen gro\u00dfe Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der \u201eTiroler Monatsbl\u00e4tter\u201c. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n", "source": 135}}, {"model": "metainfo.text", "pk": 47485, "fields": {"kind": 131, "text": "Mahl-Schedl von Alpenburg\u00a0Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Gr\u00fcnburg (O.\u00d6.), 27. 10. 1806; \u2020 Innsbruck, 1. 4. 1873.", "source": 135}}, {"model": "metainfo.text", "pk": 47486, "fields": {"kind": 130, "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882\u201385 war er Kapellmeister beim IR 74, 1885\u201390 Kapellmeister beim IR 28. N., ein sehr guter Geiger, vor allem aber ein vortrefflicher Dirigent, dem die Rgt.Musik des IR 74 ihren ausgezeichneten Ruf verdankt, war auch im Ausland mit viel Erfolg t\u00e4tig. Neben Rum\u00e4nien und Bulgarien z\u00e4hlen Holland und Belgien zu seinen wichtigsten k\u00fcnstler. Wirkungsst\u00e4tten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n", "source": 145}}, {"model": "metainfo.text", "pk": 47487, "fields": {"kind": 131, "text": "Nov\u00e1cek\u00a0Rudolf, Kapellmeister und Komponist. * Wei\u00dfkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; \u2020 Prag, 12. 8. 1929.", "source": 145}}, {"model": "metainfo.text", "pk": 47502, "fields": {"kind": 130, "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898\u20131903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904\u201319 wirkte er als Dir. am neugegr\u00fcndeten M\u00e4dchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes f\u00fcr Inneres und Unterricht t\u00e4tig, leitete ab 1922 die Abt. f\u00fcr p\u00e4dagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform f\u00fcr alle Mittelschulen folgte. Er unterst\u00fctzte bes. die Ver.-M\u00e4dchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkr\u00e4fte und f\u00f6rderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908\u201310 erster Obmann des Ver. Lyzeum.\n", "source": 147}}, {"model": "metainfo.text", "pk": 47503, "fields": {"kind": 131, "text": "Ortmann\u00a0Rudolf, P\u00e4dagoge. * Reichenberg (Liberec, B\u00f6hmen), 10. 3. 1874; \u2020 Wien, 22. 11. 1939.", "source": 147}}, {"model": "metainfo.text", "pk": 47506, "fields": {"kind": 130, "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegr\u00fcndete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832\u201337 Vorlesungen \u00fcber Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848\u201360 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfa\u00dfte zahlreiche Aufs\u00e4tze aus dem Gebiet der Chemie und hielt in Innsbruck viele popul\u00e4rwiss. Vortr\u00e4ge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur f\u00fcr techn. Chemie scheiterte aus Geldmangel (1838).\n", "source": 146}}, {"model": "metainfo.text", "pk": 47507, "fields": {"kind": 131, "text": "Oellacher\u00a0Josef, Pharmazeut. * Pre\u00dfburg, 16. 2. 1804; \u2020 Innsbruck, 16. 8. 1880.", "source": 146}}, {"model": "metainfo.text", "pk": 47516, "fields": {"kind": 130, "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtspr\u00fcfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg t\u00e4tig. 1918\u20131924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent f\u00fcr das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor f\u00fcr Geol. und Pal\u00e4ontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfa\u00dfte u. a. mehrere Schulb\u00fccher und red. ab 1932 die Z. \u201eIzvestja muzejskega dru\u0161tva za Kranjsko\u201c. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n", "source": 151}}, {"model": "metainfo.text", "pk": 47517, "fields": {"kind": 131, "text": "Poljanec\u00a0Leopold, Biologe und Schulmann. * Rann (Bre\u017eice, Unterstmk.), 23. 9. 1872; \u2020 Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944.", "source": 151}}, {"model": "metainfo.text", "pk": 47522, "fields": {"kind": 130, "text": "Stud. Germanistik und Polonistik bei R. M. Werner und R. Pilat an der Univ. Lemberg, wo er auch zu A. Sauer Verbindung hatte; 1897 Dr. phil. 1889\u201398 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903\u201309 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, t\u00e4tig. 1914 Priv. Doz., 1915\u201321 hielt er an der Univ. Lemberg Vorlesungen aus dt. Philol. und dt. Literaturgeschichte. 1918/19 war er provisor. Doz. der Germanistik an der Univ. Warschau. P. war u. a. ab 1920 w. Mitgl. der Lemberger Wiss. Ges. Als Literaturwissenschafter leistete P. auf dem Gebiet der H\u00f6lderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, h\u00f6chste Anerkennung fand.\n", "source": 150}}, {"model": "metainfo.text", "pk": 47523, "fields": {"kind": 131, "text": "Petzold\u00a0Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; \u2020 Lemberg (L\u2019viv), 15. 7. 1932.", "source": 150}}, {"model": "metainfo.text", "pk": 47530, "fields": {"kind": 130, "text": "Sohn des Philosophen Johann P. v. L. (1793\u20131866), Cousin des Folgenden, Neffe des Juristen und Politikers Thadd\u00e4us Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden K\u00fcnste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in D\u00fcsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden K\u00fcnste in Wien, an der er 1872\u20131901 als Prof. f\u00fcr Landschaftsmalerei wirkte, 1878\u201380 und 1897\u201399 Rektor. Nach seiner Pensionierung lebte er in N\u00fcrnberg und Berlin. \u00dcber pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf \u00d6l-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine \u00d6lbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Sch\u00fcler zu intensiven Naturstud. anhielt. Er beteiligte sich an den Wr. Akad.Ausst., u. a. 1858 und 1859. 1861 stellte er als Mitgl. im Wr. K\u00fcnstlerhaus aus, das ihm 1913 auch eine Ged\u00e4chtnisausst. widmete.\n", "source": 149}}, {"model": "metainfo.text", "pk": 47531, "fields": {"kind": 131, "text": "Peithner von Lichtenfels\u00a0Eduard, Maler und Radierer. * Wien, 18. 11. 1833; \u2020 Berlin, 22. 1. 1913.", "source": 149}}, {"model": "metainfo.text", "pk": 47536, "fields": {"kind": 130, "text": "Stud. 1839\u20131843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-M\u00fcnzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel f\u00fcr H\u00fctten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausr\u00fcstung der Labors betraut wurde. P. setzte die in Wien begonnenen chem. Arbeiten, u. a. Silberextraktion auf nassem Weg und Darstellung der reinen Uranverbindungen, fort; 1852 unternahm er in Joachimsthal im Auftrag der Obersten Montanverwaltung Versuche zur Verbesserung der Arbeitsmethoden und zur Auffindung neuer Verfahren bei der Verwertung einzelner Erze, deren Ergebnis die Silberextraktion unter Anwendung von unterschwefligsaurem Natron, Gewinnung von Nickel, Wismut und Kohlenoxyd, Ausscheidung des Arsens aus seinen Verbindungen in Erzen sowie die Darstellung der Uranfarben aus Pechblende waren. 1856 wurde in der Folge eine Uranaufbereitungsanlage in Joachimsthal gebaut. 1864 richtete P. in Wien das H\u00fcttenm\u00e4nn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum H\u00fcttenchemiker des gesamten \u00f6sterr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (sp\u00e4ter Vorstand des H\u00fcttenm\u00e4nn.-chem. Laboratoriums) ernannt. 1881 Oberbergrat, 1889 i. R., Hofrat. Erst durch P.s Verfahren der Urangewinnung aus Pechblende wurden die Forschungen des Ehepaars Curie erm\u00f6glicht.\n", "source": 148}}, {"model": "metainfo.text", "pk": 47537, "fields": {"kind": 131, "text": "Patera\u00a0Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; \u2020 Teschen (Cieszyn, \u00f6sterr. Schlesien), 26. 6. 1894.", "source": 148}}, {"model": "metainfo.text", "pk": 47540, "fields": {"kind": 130, "text": "Stud. ab 1782 an der Univ. Salzburg Phil. (1788 Mag.phil.), dann Theol. (1794 Dr. theol.); war nach seiner Priesterweihe (1793) als Seelsorger t\u00e4tig. 1801 wurde er Kanonikus des Kollegiatstiftes Maria Schnee, 1803 w. Konsistorialrat, 1810 Pfarrer und Dechant (damit auch Schuldistriktsinsp.) von Altenmarkt, 1832 erster Dechant des wiedererrichteten Kollegiatstiftes Seekirchen. R. ist der erste Historiograph des salzburg.-\u00f6sterr. Bildungswesens, \u00fcber das er grundlegende Beitrr. verfa\u00dfte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten \u00fcber theolog., p\u00e4dagog. und hist. Themen waren weit verbreitet.\n", "source": 158}}, {"model": "metainfo.text", "pk": 47541, "fields": {"kind": 131, "text": "Rumpler\u00a0Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; \u2020 Seekirchen (Salzburg), 17. 3. 1846.", "source": 158}}, {"model": "metainfo.text", "pk": 47542, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckermeisters; ab 1901 selbst\u00e4ndiger B\u00e4kkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912\u201325 im Wr. Gemeinderat, 1924\u201334 im Bundesrat; ab 1917 Vizepr\u00e4s., in der Folge Pr\u00e4s. des Dt.\u00f6sterr. Gewerbebundes. 1928 Kommerzialrat. R. hat mit seinen hist. Stud. wesentlichen Anteil am Aufschwung der Wr. Lokalgeschichtsschreibung in der Zwischenkriegszeit: Seine Geschichte des VII. und die des VIII. Wr. Gemeindebez. sind ebenso Standardwerke geblieben wie die gem. mit A. Schmieger verfa\u00dfte Stud. \u201eDas Ghetto in der Wiener Leopoldstadt\u201c (1926). Auch seine wertvollen Ver\u00f6ff. aus der Geschichte des Wr. B\u00e4ckergewerbes zeugen von R.s Flei\u00df im Erschlie\u00dfen von Quellenmaterial.\n", "source": 157}}, {"model": "metainfo.text", "pk": 47543, "fields": {"kind": 131, "text": "Rotter\u00a0Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; \u2020 Wien, 18. 9. 1945.", "source": 157}}, {"model": "metainfo.text", "pk": 47556, "fields": {"kind": 130, "text": "Aus urspr\u00fcnglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der nieder\u00f6sterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenk\u00fcrassieren die Feldz\u00fcge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in M\u00fcnchen, Berlin, Stuttgart, Stockholm und Paris t\u00e4tig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 K\u00e4mmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-d\u00e4n. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilko\u00e4r. f\u00fcr Schleswig-Holstein. Anschlie\u00dfend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der \u00f6sterr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Aufl\u00f6sung von kath. Kl\u00f6stern in russ. Polen, erzwungener \u00dcbertritt von unierten Christen zur Orthodoxie etc.) befa\u00dft. 1868 trat er wegen Differenzen mit Beust (s. d.) zur\u00fcck. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner ober\u00f6sterr. G\u00fcter Erlach und Tollet und wurde daneben in der \u00f6sterr. Innenpolitik au\u00dferordentlich aktiv. Er wurde 1869 als Vertreter des Gro\u00dfgrundbesitzes ober\u00f6sterr. Landtagsabg. 1885 Mitgl. der \u00f6sterr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des \u00f6sterr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Pr\u00e4lat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschl\u00fcssen des Frankfurter Katholikentages 1882 begr\u00fcndet wurde. 1888 wurde R. im ausw\u00e4rtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen w\u00e4hrend seiner Amtszeit geh\u00f6rten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren H\u00f6hepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein m\u00f6gliches Refugium in \u00d6sterr. zu gew\u00e4hren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) geno\u00df, \u00fcbte auch eine Vermittlert\u00e4tigkeit bei dessen famili\u00e4ren Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mu\u00dfte er auf Dr\u00e4ngen ung. Politiker von seinem Posten zur\u00fccktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssph\u00e4ren von Staat und Kirche in der sp\u00e4tjosefin. Zeit. Daneben war er Experte f\u00fcr die Grenzbereiche der r\u00f6m.-kath., unierten und orthodoxen Kirchen, auch f\u00fcr Ru\u00dfland und den Balkan. Obwohl f\u00fcr soziale Fragen aufgeschlossen, war er kein Sympathisant der Christlichsozialen, deren antisemit. Tendenzen er ablehnte. Vielfach geehrt und ausgezeichnet, u. a. Geh.Rat (1868), Kanzler des Leopold-Ordens und Gro\u00dfkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866\u20131951), folgte 1919 K. Karl (s. d) ins Exil.\n", "source": 156}}, {"model": "metainfo.text", "pk": 47557, "fields": {"kind": 131, "text": "Revertera von Salandra\u00a0Friedrich Graf, Diplomat und Politiker. * Lemberg (L\u2019viv), 21. 1. 1827; \u2020 Brixen (S\u00fcdtirol), 28. 4. 1904.", "source": 156}}, {"model": "metainfo.text", "pk": 47558, "fields": {"kind": 130, "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (N\u00d6) t\u00e4tig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814\u201324 Dir. des Priesterseminars, 1817\u201335 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. T\u00e4tigkeit. In zahlreichen Publ. besch\u00e4ftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine \u201ePastoral-Anweisung nach den Bed\u00fcrfnissen unsers Zeitalters\u201c, die als offizielles Vorlesebuch f\u00fcr alle \u00f6ff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einflu\u00df auf den Klerusnachwuchs. R., ein gro\u00dfer Wohlt\u00e4ter der kirchlichen Inst., z\u00e4hlte zu den ma\u00dfvollen Josefinern.\n", "source": 154}}, {"model": "metainfo.text", "pk": 47559, "fields": {"kind": 131, "text": "Reichenberger\u00a0Andreas, Theologe. * Wien, 24. 11. 1770; \u2020 Linz, 26. 10. 1854.", "source": 154}}, {"model": "metainfo.text", "pk": 47560, "fields": {"kind": 130, "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883\u201386 an der Hochschule f\u00fcr Bodenkultur in Wien, Forsting. Wirkte ab 1887 am bosn.-herzegowin. Landesmus. in Sarajevo (1913 Reg.Rat, 1919 i. R.) und organisierte die von ihm geleitete naturwiss. Abt. Ab 1926 Mitgl. des Ornitholog. Observatoriums in Laibach (Ljubljana). R.s Lebenswerk war der Ornithol. des Balkans gewidmet. Neben seiner T\u00e4tigkeit am Mus. in Sarajevo sammelte er Material f\u00fcr eine Beschreibung der V\u00f6gel der Marburger Umgebung und arbeitete bei der Aufstellung der ornitholog. Smlg. des Mus. in Marburg a. d. Drau (Maribor) mit, dem er eine Smlg. von Vogeleiern aus dem Drautal vermachte. R. wurde vielfach geehrt und ausgezeichnet, u. a. 1932 Dr. h. c. der Univ. Graz.\n", "source": 155}}, {"model": "metainfo.text", "pk": 47561, "fields": {"kind": 131, "text": "Reiser\u00a0Othmar, Ornithologe. * Wien, 21. 12. 1861; \u2020 Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936.", "source": 155}}, {"model": "metainfo.text", "pk": 47564, "fields": {"kind": 130, "text": "Sohn eines Baumwollwarenh\u00e4ndlers; wurde nach Absolv. der Techn. Milit\u00e4rakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898\u20131900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900\u201311 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914\u201316 war R. als Milit\u00e4rattach\u00e9 in Bukarest. 1916 wurde er als Obstlt. des Gen. Stabskorps zum Chef der Gen.Stabsabt. des l. Armeekmdo. und noch im selben Jahr zum Obst. des Gen. Stabskorps ernannt. Ab 1918 war R. Gen. Stabschef des XI. Korps, dann Gen. Stabschef der k. u. k. Besatzungstruppen in Rum\u00e4nien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Fl\u00fcgeladj. Kg. Ferdinands von Rum\u00e4nien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein B\u00fcndnis gegen das revolution\u00e4re Ru\u00dfland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen \u00d6sterr.-Ungarn, dem Dt. Reich, der T\u00fcrkei und Bulgarien einerseits und Rum\u00e4nien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n", "source": 153}}, {"model": "metainfo.text", "pk": 47565, "fields": {"kind": 131, "text": "Randa\u00a0Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, M\u00e4hren), 24. 5. 1874; \u2020 Czernowitz (Cernivci, Bukowina), 13. 8. 1941.", "source": 153}}, {"model": "metainfo.text", "pk": 47566, "fields": {"kind": 130, "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtspr\u00fcfung) u. a. bei Boltzmann (s. d.) und Frischauf (s. d.), dann an der Univ. Berlin Physik bei Helmholtz und Kirchhoff. In Graz war R. lange Mitgl. von A. v. Meinongs (s. d.) Philosoph. Societ\u00e4t. Er interessierte sich f\u00fcr Grenzgebiete der Mathematik und der Physik sowie f\u00fcr die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten ma\u00dfgeblich beeinflu\u00dft wurde. 1894\u201396 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. f\u00fcr theoret. Physik an der Univ. Innsbruck und Ass. K. Exners (s. d.) am Mathemat.-physikal. Inst. 1902 ao. Prof. an der Univ. Innsbruck, 1906 o. Prof. der mathemat. Physik an der Univ. Czernowitz (Cernivci), 1915 o. Prof. der theoret. Physik an der Univ. Graz, 1924/25 Dekan. R.\u2019 bedeutendste und tiefgreifendste Arbeit behandelt \u201eDie Grundlagen der Galilei-Newton\u2019schen Mechanik\u201c. Er ver\u00f6ff. auch einige wichtige experimentelle Arbeiten zur Frage der Gescho\u00dfgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895\u20131938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n", "source": 152}}, {"model": "metainfo.text", "pk": 47567, "fields": {"kind": 131, "text": "Radakovic\u00a0Michael, Physiker. * Graz, 25. 4. 1866; \u2020 Graz, 15. 8. 1934.", "source": 152}}, {"model": "metainfo.text", "pk": 47568, "fields": {"kind": 130, "text": "Nach der Schulausbildung in Gro\u00dfwardein (Oradea) und Temeswar (Timi\u00bfoara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der K\u00f6r\u00f6s. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von G\u00e1bor D\u00f6brentei (\u00bfGabriel D\u00f6brentei) am Burgtheater (Budai V\u00e1rsz\u00ednh\u00e1z) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, T\u00e4nzer und Inspizient t\u00e4tig war sowie seine ersten Theaterst\u00fccke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Sz\u00ednh\u00e1z) in Pest ein Engagement als Schauspieler (1837\u201354) und Bibliothekar (1837\u201340) und widmete sich schlie\u00dfl. der Regie (1854\u201373) sowie der Dramaturgie (1868\u201373). Ab 1865 war er Prof. und 1870\u201373 Dir. der Pester Schauspielschule. 1873 \u00fcbernahm er die Leitung des Nationaltheaters. Er f\u00f6rderte zahlreiche sp\u00e4ter bekannte Schauspieler und initiierte u.\u00a0a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. \u00fcber hundert Theaterst\u00fccke und zahlreiche Libretti, schrieb Schauspielerportr\u00e4ts (\u201eMagyar sz\u00edn\u00e9szek \u00e9letrajzai\u201c, 1878, 2.\u00a0Aufl. 1907) und \u00fcbers. u.\u00a0a. Goethes \u201eEgmont\u201c (1871) und \u201eFaust\u201c sowie Shakespeares \u201eRichard III.\u201c (1867) ins Ung. Sein dramaturg. Lehrbuch \u201eA dr\u00e1ma \u00e9s v\u00e1lfajai\u201c (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der franz\u00f6s. und Wr. B\u00fchnen und adaptierte diese meisterhaft f\u00fcr das ung. Publikum. Sowohl seine Lustspiele (\u201eR\u00f3zsa\u201c, 1840; \u201eLiliomfi\u201c, 1849; \u201eFenn az ernyo, nincsen kas\u201c, 1858, 7.\u00a0Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen (\u201eII. R\u00e1k\u00f3czi Ferenc fogs\u00e1ga\u201c, 1848; \u201eA tr\u00f3nkereso\u201c, 1868, 5.\u00a0Aufl. 1916, dt. \u201eDer Pr\u00e4tendent\u201c, 1881; \u201eStruensee\u201c, 1871) als auch seine unter dem Einfluss des Wr. Volksst\u00fccks und des franz\u00f6s. Melodramas entstandenen Volksst\u00fccke \u201eSz\u00f6k\u00f6tt katona\u201c (1843) und \u201eCig\u00e1ny\u201c (1853), mit denen er die Grundlage f\u00fcr diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgen\u00f6ss. Publikums. Ledigl. seine b\u00fcrgerl. Dramen (\u201eA lelenc\u201c, 1863; \u201eA f\u00e9ny \u00e1rnyai\u201c, 1865) und die St\u00fccke \u201eA strike\u201c (1871) sowie \u201eAz amerikai\u201c (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stie\u00dfen auf Unverst\u00e4ndnis. S. war einer der einflussreichsten Dramatiker des 19.\u00a0Jh. in Ungarn, seine St\u00fccke wurden in zahlreiche Sprachen \u00fcbers. und verfilmt (\u201eSz\u00f6k\u00f6tt katona\u201c, 1914; \u201eLiliomfi\u201c, 1916, 1954; \u201eCig\u00e1ny\u201c, 1925, 1941) und geh\u00f6ren auch heute noch zum Standardrepertoire der ung. B\u00fchnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Gro\u00dfwardein (Nagyv\u00e1radi Szigligeti Sz\u00ednh\u00e1z) sowie das Theater in Szolnok (Szigligeti Sz\u00ednh\u00e1z) sind nach ihm benannt. S. war ab 1840 k.\u00a0M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n", "source": 194}}, {"model": "metainfo.text", "pk": 47569, "fields": {"kind": 131, "text": "Szigligeti Ede (Edv\u00e1rd), bis 1834 J\u00f3zsef Szathm\u00e1ry, Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur. Geb. V\u00e1rad-Olaszi, Ungarn (Oradea-Olosig, RO), 8.\u00a03. 1814; gest. Budapest (H), 19.\u00a01. 1878; r\u00f6m.-kath.", "source": 194}}, {"model": "metainfo.text", "pk": 47570, "fields": {"kind": 130, "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Sch\u00e4fer; ab 1895 verheiratet mit Erna Szen\u00f3ner. \u2013 Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871\u201374 war S. 1882\u201384 Z\u00f6gling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887\u201389 die Kriegsschule in Wien. Seine milit\u00e4r. Laufbahn begann er 1882 als Gemeiner im Honv\u00e9d-Inf.baon.\u00a018. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k.\u00a0u.\u00a0k. Armee sowie bei der Honv\u00e9d und versah Truppendienst, u.\u00a0a. als Baon.kmdt., v.\u00a0a. in den Honv\u00e9d-Inf.rgt.\u00a04 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der F\u00fchrung der kgl. ung. Inf.div.\u00a038 betraut, an deren Spitze er \u2013 ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps \u2013 ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz k\u00e4mpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (U\u017eoc\u2019kyj pereval) in den Karpaten gegen die Russen. 1917 erfolgte seine Ernennung zum kgl. ung. Landesverteidigungsminister in Budapest (ab August Gen. der Inf.). Diesen Posten bekleidete er bis zum Austritt Ungarns aus der Realunion Ende Oktober 1918. Anfang 1919 wurde S. pensioniert, einen Monat sp\u00e4ter auf Gehei\u00df der Berinkey-Regierung in St.\u00a0Gotthard (Szentgotth\u00e1rd) interniert und w\u00e4hrend der R\u00e4terepublik gem. mit \u00bfJ\u00f3zsef Frh. Szter\u00e9nyi v. Brass\u00f3 in Budapest gefangen gehalten. Nach dem Sturz der R\u00e4terepublik war S. Ende 1919 Verbindungsoff. bei der franz\u00f6s. milit\u00e4r. Mission. 1921 wurde er endg\u00fcltig pensioniert, lebte danach in Budapest und wirkte als Milit\u00e4rschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I.\u00a0Kl., 1916 wurde er Kommandeur des Leopold-Ordens I.\u00a0Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Pr\u00e4dikat \u201evon Uzsok\u201c ausgez. S. war Inhaber des Honv\u00e9d-Inf.rgt.\u00a020 (1918), 1929 wurde er in den Vit\u00e9zi Rend (Ritterorden) aufgenommen, 1927\u201344 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n", "source": 195}}, {"model": "metainfo.text", "pk": 47571, "fields": {"kind": 131, "text": "Szurmay von Uzsok S\u00e1ndor (Alexander) Frh., Offizier und Politiker. Geb. Boks\u00e1nb\u00e1nya, Ungarn (Boc\u00bfa, RO), 19.\u00a012. 1860; gest. Budapest (H), 26.\u00a03. 1945.", "source": 195}}, {"model": "metainfo.text", "pk": 47580, "fields": {"kind": 130, "text": "Sohn eines Bauern. \u2013 Nach Besuch der Gymn. in Kempten im Allg\u00e4u, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St.\u00a0Florian ein (1823 Profe\u00df, 1824 Priesterweihe). 1824\u201343 wirkte er als Kaplan in der Stiftspfarre, 1843\u201354 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s.\u00a0d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 au\u00dferdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht \u00fcbertragen. 1859 wurde er Propst von St.\u00a0Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Versch\u00f6nerungen in der Stiftskirche, u.\u00a0a. durch L.\u00a0Kupelwieser (s.\u00a0d.), durchgef\u00fchrt. Daneben widmete sich S., von F.\u00a0Ser. Kurz (s.\u00a0d.) angeleitet, schon bald der Historiographie. Bereits 1834 geh\u00f6rte er zu den Initiatoren des sp\u00e4teren Mus. Francisco-Carolinum, red. 1839\u201344 dessen \u201eMusealblatt\u201c und arbeitete v.\u00a0a. an den ersten sechs Bde. des \u201eUrkundenbuchs des Landes ob der Enns\u201c (1852\u201372) mit; weiters befa\u00dfte er sich mit dem Leben von K.\u00a0Maximilian\u00a0I., ordnete die Archive der Stifte St.\u00a0Florian und Wilhering und verf. die Geschichte beider Kl\u00f6ster. Zudem besch\u00e4ftigte er sich mit dem Gr\u00fcnder von Stift Reichersberg, Propst Gerhoch, sowie mit Bischof Altmann von Passau, ferner landesgeschichtl. mit den Gf. von Schaunberg. S., der in regem Austausch mit Koch v. Sternfeld (s.\u00a0d.) stand, war u.\u00a0a. Mitgl. des Hist. Ver. f\u00fcr Unterfranken und Aschaffenburg (1841), des Hist. Ver. f\u00fcr die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k.\u00a0k. Reichshistoriographen. 1847 z\u00e4hlte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. t\u00e4tig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gew\u00e4hlt, wo er v.\u00a0a. mit dem kath.-reformer. Kreis um Johann Joseph v. G\u00f6rres in Verbindung stand. Auch bei den Bem\u00fchungen um die Errichtung des o\u00f6. Katholikenver. 1848 spielte S. eine f\u00fchrende Rolle. 1861\u201367 geh\u00f6rte er dem o\u00f6. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Pr\u00e4s. der O\u00f6. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n", "source": 193}}, {"model": "metainfo.text", "pk": 47581, "fields": {"kind": 131, "text": "St\u00fclz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23.\u00a02. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28.\u00a06. 1872; r\u00f6m.-kath.", "source": 193}}, {"model": "metainfo.text", "pk": 47584, "fields": {"kind": 130, "text": "Sohn von Josef Maria S. (s.\u00a0d.). \u2013 Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Sch\u00fcler O.\u00a0Redlichs (s.\u00a0d.) Geschichte an der Univ. Wien, 1910 Dr.\u00a0phil., und absolv. 1909\u201311 als ao.\u00a0Mitgl. den Kurs des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung. Noch im Juli 1911 ging er als Mitarb. an der von der Heidelberger Akad. der Wiss. und der Bad. Hist. Komm. vorbereiteten Ausg. der bad. Weist\u00fcmer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am \u00d6sterr. Hist. Inst. in Rom. Daneben war er 1913 nochmals f\u00fcr die Bad. Hist. Komm. t\u00e4tig und ordnete das gr\u00e4fl. Douglassche Archiv auf Schlo\u00df Langenstein im Hegau. 1914 trat er als Konzeptsaspirant in das HHStA ein, wurde 1915 Konzeptspraktikant und 1921 Staatsarchivar. Er ordnete das Konsulatsarchiv in Belgrad (1916), die Archive in Jaidhof bei Gf\u00f6hl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. \u00fcber die Urkundenabt. und leitete schlie\u00dfl. die Hss.abt. im HHStA. 1921\u201322 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. \u201eHistorischen Bl\u00e4tter\u201c, ab 1928 Mitgl. des Gesch\u00e4ftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien f\u00fcr Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao.\u00a0Prof. Als Medi\u00e4vist befa\u00dfte er sich mit Fragen der \u00f6sterr. Diplomatik, einschlie\u00dfl. der Kanzlei- und der Stadtb\u00fccher, sowie bes. mit Verfassungsgeschichte. Ab 1923 fungierte er als Dir. des Archivs der Stadt Wien und machte dieses zu einer anerkannten wiss. Einrichtung: Eine neue Archivordnung, die u.\u00a0a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30\u00a0Jahren umfa\u00dfte, trat 1924 in Kraft. Archivpraktika f\u00fcr Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Gl\u00f6ckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Au\u00dfenwirkung des Archivs ebenso wie die F\u00f6rderung der Geschichtsforschung, etwa durch die Begr\u00fcndung der \u201eStudien aus dem Archiv der Stadt Wien\u201c oder durch die Anregung zur Ver\u00f6ff. der \u201eUrkunden aus Wiener Grundb\u00fcchern zur Geschichte der Wiener Juden im Mittelalter\u201c (1931) durch L.\u00a0Sailer (s.\u00a0d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. f\u00fcr Geschichte der Stadt Wien gew\u00e4hlt worden, 1924\u201325 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gr\u00fcnden zur\u00fcck. 1926 Vizepr\u00e4s., begr\u00fcndete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n", "source": 192}}, {"model": "metainfo.text", "pk": 47585, "fields": {"kind": 131, "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21.\u00a010. 1887; gest. ebd., 19.\u00a02. 1934; evang.\u00a0AB.", "source": 192}}, {"model": "metainfo.text", "pk": 47594, "fields": {"kind": 130, "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24.\u00a04. 1879; gest. ebd., 4.\u00a02. 1952) verehel. Nach Absolv. des M\u00e4dchengymn. des Wr. Ver. f\u00fcr erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr.\u00a0phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtspr\u00fcfung f\u00fcr Mittelschulen ab. I.\u00a0d.\u00a0F. unterrichtete S. an einem Wr. M\u00e4dchengymn., befa\u00dfte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vortr\u00e4ge f\u00fcr die Vereinigung \u00f6sterr. Hochschuldoz. Athen\u00e4um. Ihr Engagement im Bereich der Frauenbildung und \u2013f\u00f6rderung f\u00fchrte 1907 zur Gr\u00fcndung eines M\u00e4dchengymn. in Wien\u00a02. Auf Grund ihres Strebens nach gediegener Berufsausbildung f\u00fcr begabte M\u00e4dchen aus \u00e4rmerem Haus gr\u00fcndete sie 1907 gem. mit Olly Schwarz einen Ver. f\u00fcr h\u00f6here kommerzielle Frauenbildung und die erste Handelsakad. f\u00fcr M\u00e4dchen in der Sch\u00f6nborngasse (Wien\u00a08), deren Leitung sie als erste Schuldir., die in den Staatsdienst \u00fcbernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. f\u00fcr ihre T\u00e4tigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n", "source": 190}}, {"model": "metainfo.text", "pk": 47595, "fields": {"kind": 131, "text": "Steindler Olga, verehel. Ehrenhaft-S., P\u00e4dagogin und Physikerin. Geb. Wien, 28.\u00a010. 1879; gest. ebd., 21.\u00a012. 1933.", "source": 190}}, {"model": "metainfo.text", "pk": 47596, "fields": {"kind": 130, "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s.\u00a0d.). S. besuchte 1902\u201310 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L.\u00a0M. Hartmann, W.\u00a0Kubitschek, Bormann (alle s.\u00a0d.) und Adolf Wilhelm; 1914 Dr.\u00a0phil. Nach Milit\u00e4rdienst 1915\u201317 habil. er sich 1919 an der Univ. Wien. 1927\u201329 war S. an der R\u00f6m.-German. Komm. des Dt. Arch\u00e4olog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der r\u00f6m. Kaiserzeit besch\u00e4ftigt, danach Doz. f\u00fcr Alte Geschichte an der Univ. Berlin, 1931\u201332 ao.\u00a0Prof. f\u00fcr alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G.\u00a0Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, k\u00fcndigte seine Stellung und verlie\u00df Dtld. 1932\u201334 war er, unterst\u00fctzt vom belg. Byzantinisten Henri Gr\u00e9goire, Gastprof. an der Univ. Br\u00fcssel. Nach der \u201eMachtergreifung\u201c Hitlers (s.\u00a0d.) im J\u00e4nner 1933 publ. er nur mehr auf Franz\u00f6s.; 1934\u201335 war er Gastprof. an der Catholic Univ. of America (Washington, D.\u00a0C.), 1937 wurde f\u00fcr ihn ein Lehrstuhl f\u00fcr byzantin. Geschichte an der Univ. L\u00f6wen eingerichtet. 1940 mu\u00dfte S. jedoch Belgien mit seiner Frau Jeanne (Eheschlie\u00dfung 1923) unter falschem Namen (M.\u00a0Sernet) verlassen. Trotz der \u00e4u\u00dferl. bedr\u00e4ngten Situation und dem st\u00e4ndigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd.\u00a0seiner \u201eHistoire de l\u2019\u00c9mpire byzantin\u201c, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verh\u00e4ltnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. t\u00e4tig.\n\n", "source": 191}}, {"model": "metainfo.text", "pk": 47597, "fields": {"kind": 131, "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19.\u00a09. 1891; gest. Freiburg (Fribourg, Schweiz), 25.\u00a02. 1945; aus j\u00fcd. Familie, ab 1932 r\u00f6m.-kath.", "source": 191}}, {"model": "metainfo.text", "pk": 47602, "fields": {"kind": 130, "text": "Sohn eines Kleinbauern. S. besuchte 1858\u201366 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur S\u00fcdarmee eingezogen und erhielt nach der Schlacht bei Custoza die silberne Tapferkeitsmedaille. Da er Priester werden wollte, desertierte er und kam 1867 in die USA. Zun\u00e4chst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des sp\u00e4teren Bischofs der Di\u00f6zese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der franz\u00f6s. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph\u00a0I. (s.\u00a0d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der gro\u00dfteils aus Dt.b\u00f6hmen und -ungarn bestehenden Gmd. und ab 1891 als Di\u00f6zesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Di\u00f6zese Lead, S.\u00a0D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in f\u00fcnf Jahren 23 neue Kirchen und Pfarreien. Durch \u00fcberm\u00e4\u00dfige Arbeit erkrankt, resignierte S. 1909 auf seine Di\u00f6zese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n", "source": 189}}, {"model": "metainfo.text", "pk": 47603, "fields": {"kind": 131, "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12.\u00a05. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15.\u00a012. 1915; r\u00f6m.-kath.", "source": 189}}, {"model": "metainfo.text", "pk": 47614, "fields": {"kind": 130, "text": "\u2013 Sohn eines Grenzers. \u0160. wurde 1870 aus der Rgt.-Milit\u00e4rschule in Otocac als Korporal zum Grenz-IR 1 ausgemustert; 1874 Lt. beim IR 51. 1882 nahm er als Rgt.-Adj. an der Niederschlagung der Unruhen in Bosnien-Herzegowina teil. 1897 Mjr. und Baon.-, 1899\u20131904 Erg\u00e4nzungsbez.kmdt. im bosn.- herzegowin. IR 4, um dessen Personalaufstockung er sich sehr verdient machte; 1903 Obstlt., 1906 Obst. und 1907 Kmdt. des Linien-IR 2. 1909 erhielt \u0160. das Kmdo. des Gendarmeriekorps f\u00fcr Bosnien-Herzegowina, 1911 GM. Ab September 1914 f\u00fchrte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Vi\u0161egrad aus die Verteidigung S\u00fcdostbosniens. Ende M\u00e4rz 1915 \u00fcbernahm er dort das Kmdo. der neu errichteten 59. Inf.-Truppen-Div., die im Juli 1915 an die Isonzofront verlegt wurde. Im September 1915 nach Syrmien r\u00fcckverlegt, wurde \u0160. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 \u00fcbernahm er das Kmdo. der 42. Honv\u00e9d-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zur\u00fcckgedr\u00e4ngt wurde. Im M\u00e4rz 1917 dem Gen.-Insp. der Fu\u00dftruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde \u0160. im Juli 1918 beurlaubt, knapp vor der Ver\u00f6ff. des Oktobermanifests jedoch im Oktober 1918 als Milit\u00e4rkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die s\u00fcdslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte \u0160. seine letzten Lebensjahre auf seinem Gut in Cluj.\n", "source": 188}}, {"model": "metainfo.text", "pk": 47615, "fields": {"kind": 131, "text": "\u0160njaric\u00a0Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rum\u00e4nien), 28. 1. 1930.", "source": 188}}, {"model": "metainfo.text", "pk": 47626, "fields": {"kind": 130, "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden K\u00fcnste, wo er bis 1907/08 (u. a. bei J\u00f3zef v. Mehoffer, s. d., und Leon Wycz\u00f3lkowski) Malerei stud., 1902\u201303 bildete er sich an der Kunstgewerbeschule in Wien weiter, 1904 unternahm er Stud.reisen durch Italien und Frankreich. S., der sich in Zakopane von einer Tuberkuloseerkrankung erholen mu\u00dfte, verbrachte den Winter 1904/5 bei den Huzulen, wo er Landschafts- und Genrebilder aus dem Leben der Goralen malte. In der Folge zeichnete er Karikaturen f\u00fcr die satir. Z. \u201eChochol\u201c (1902) und \u201eLiberum Veto\u201c (1903\u201305), 1904 ver\u00f6ff. er die Mappe \u201e30 Karikaturen\u201c, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. K\u00fcnstler \u201eSztuka\u201c und im selben Jahr Mitarbeiter des ber\u00fchmten Krakauer Kabaretts \u201eZielony Balonik\u201c, f\u00fcr das er die Inneneinrichtung des Caf\u00e9s und Einladungen entwarf. W\u00e4hrend dieser Zeit fertigte er auch Portr\u00e4ts, Karikaturen von bekannten K\u00fcnstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in \u00d6l mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) lie\u00df er sich im selben Jahr in Lemberg nieder. W\u00e4hrend seiner Milit\u00e4rdienstzeit (1914\u201317)zeichnete er Portr\u00e4ts und Karikaturen bedeutender Pers\u00f6nlichkeiten des Milit\u00e4rwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920\u201330 an der dortigen Schule f\u00fcr Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem \u0152uvre der hist. und religi\u00f6sen Thematik zuwandte; 1918\u201319 zeichnete er Karikaturen f\u00fcr die Z. \u201eSzczutek\u201c und 1920 f\u00fcr \u201eRzeczpospolita\u201c; ab 1930 lehrte er an der Akad. der bildenden K\u00fcnste in Krakau (Krak\u00f3w); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein \u0152uvre fand in zahlreichen in- und ausl\u00e4nd. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, M\u00fcnchen und Rom).\n", "source": 187}}, {"model": "metainfo.text", "pk": 47627, "fields": {"kind": 131, "text": "Sichulski\u00a0Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lw\u00f3w, Galizien (L\u2019viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; r\u00f6m.-kath.", "source": 187}}, {"model": "metainfo.text", "pk": 47630, "fields": {"kind": 130, "text": "Sohn eines Arztes und Hptm. der Sch\u00fctzenkompanie Ulten. S., der nach dem Willen seines Vaters urspr\u00fcngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden K\u00fcnste in M\u00fcnchen, wo er auch Privatunterricht nahm; anschlie\u00dfend \u00fcbersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. z\u00e4hlte die sp\u00e4tere dt. Kn. Auguste Viktoria zu seinen Sch\u00fclerinnen). 1889 geh\u00f6rte er zu den Gr\u00fcndungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s \u0152uvre umfa\u00dft vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurg\u00e4sten gro\u00dfen Anklang; seine Bedeutung liegt aber v. a. in der exakten Wiedergabe der damaligen topograph. Gegebenheiten, wodurch es ihm gelang, ein Zeugnis der dortigen Bausubstanz um 1900 f\u00fcr die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachla\u00df bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum pr\u00e4sentiert.\n", "source": 186}}, {"model": "metainfo.text", "pk": 47631, "fields": {"kind": 131, "text": "Settari\u00a0Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905.", "source": 186}}, {"model": "metainfo.text", "pk": 47634, "fields": {"kind": 130, "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869\u201373 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und N\u00d6 ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rath\u00e4user in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repr\u00e4sentationsbed\u00fcrfnis seiner Zeit stark entgegen kamen, pr\u00e4gte v. a. das Stadtbild von St. P\u00f6lten, wo er erstmals 1883 mit dem neobarock gepr\u00e4gten Hauptgeb\u00e4ude der Sparkasse in Erscheinung trat. Es folgten weitere Auftr\u00e4ge f\u00fcr kommunale Bauten und Amtsgeb\u00e4ude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgeb\u00e4udes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Geb\u00e4uden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begr\u00fcntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Sch\u00f6nbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgef\u00fchrt wurde. S. \u2013 auch im privaten Wohnbau t\u00e4tig \u2013 setzte in seinem \u0152uvre \u201edie Formimpulse des strengen Historismus unter dem Einflu\u00df der neueren Entwicklungen in einen dekorativen Repr\u00e4sentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verf\u00fcgung stehenden Formenapparates f\u00fcr zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden lie\u00df\u201c (W. Kitlitschka).\n", "source": 185}}, {"model": "metainfo.text", "pk": 47635, "fields": {"kind": 131, "text": "Sehnal\u00a0Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910.", "source": 185}}, {"model": "metainfo.text", "pk": 47640, "fields": {"kind": 130, "text": "Sohn des Badener Gmd.Sekret\u00e4rs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861\u201365 das Gymn. im Stift Heiligenkreuz, wo er auch S\u00e4ngerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) \u00fcbersiedelte die Familie (S. hatte zw\u00f6lf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verlie\u00df er den Orden auf Anraten seiner Oberen, die w\u00e4hrend des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 w\u00e4hrend einer Erkrankung den zweiten Vornamen \u201eMaria\u201c an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (N\u00d6) \u2013 wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als \u201ePapst von Marchegg\u201c bezeichnet wurde \u2013, 1879\u201386 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Gro\u00dfstadt kennen und antwortete 1882 mit der Gr\u00fcndung des \u201eKatholischen Lehrlings-Vereins\u201c, rief 1886 das \u201eLehrlingsasyl\u201c sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. \u201eDas christliche Handwerk\u201c (Vorl\u00e4ufer der jetzt noch erscheinenden \u201eKalasantiner-Bl\u00e4tter\u201c) heraus, 1889 baute er in F\u00fcnfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gr\u00fcndung der \u201eKongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz\u201c (\u201eKalasantiner\u201c), der ersten \u00f6sterr. M\u00e4nnerkongregation, die sich der Arbeiter und v. a. der Lehrlinge annehmen wollte. Diesem Auftrag versuchte S. durch Erziehung der Kinder und der Lehrlingsjugend in Horten, Heimen und Oratorien sowie durch Erteilung des Religionsunterrichtes in Grund- und Berufsschulen gerecht zu werden. Die Gemeinschaft sollte dar\u00fcber hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken \u2013 sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch \u00dcbernahme von Pfarren in Arbeitervierteln der St\u00e4dte. Weitere begleitende Gr\u00fcndungen waren: Marian. Arbeitersodalit\u00e4t, Herz Jesu-Arbeiter-Oratorium, Frauenwohlt\u00e4tigkeitsver., Mariazellerver. und Muttergottesbund. 1897\u20131926 wurden weitere elf Niederlassungen der Kongregation (u. a. auch 1902 in Budapest) errichtet. Sein soziales Engagement hat S. auch in die Tagespolitik eingreifen lassen: Er forderte z. B. die Arbeiter zur Gr\u00fcndung von Selbstschutzund Bildungsverb\u00e4nden auf und unterst\u00fctzte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder \u00f6ff. Kontroverse zur\u00fcck. Kardinal Piffl (s. d.), der ihn freundschaftl. unterst\u00fctzte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den \u201eArbeiterapostel\u201c. Dem 1949 er\u00f6ffneten Seligsprechungsproze\u00df folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.\u2019 kirchl. Gedenktag ist der 17. September.\n", "source": 181}}, {"model": "metainfo.text", "pk": 47641, "fields": {"kind": 131, "text": "Schwartz\u00a0\u2014 P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (N\u00d6), 28. 2. 1852; gest. Wien, 15. 9. 1929.", "source": 181}}, {"model": "metainfo.text", "pk": 47642, "fields": {"kind": 130, "text": "Sohn eines M\u00fcllers. Nach dem Besuch des Gymn. in Olm\u00fctz (Olomouc) 1854\u201362 stud. S. von 1862\u201367 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtspr\u00fcfung ablegte. Ab 1865 war er Mitgl. des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschlo\u00df. 1867 trat S. als Stud.Pr\u00e4fekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (\u017datec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zur\u00fcck, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Au\u00dfer als Gymn.Lehrer wirkte S. auch als Fachpr\u00fcfer an der Konsularakad. Wiss. besch\u00e4ftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und \u00fcbersichtl. Darstellungsweise auszeichnen.\n", "source": 182}}, {"model": "metainfo.text", "pk": 47643, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, M\u00e4hren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903.", "source": 182}}, {"model": "metainfo.text", "pk": 47644, "fields": {"kind": 130, "text": "Sohn des Zwirnh\u00e4ndlers Franz Sales S.; Bruder von Sebastian S., Onkel des Priesters Josef S., des Caspar und des Franz Sales S. (alle s. d.). S. besuchte das Gymn. in Linz und Kremsm\u00fcnster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und er\u00f6ffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er au\u00dferdem eine F\u00e4rberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige H\u00e4user in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den o\u00f6. Landtag gew\u00e4hlt, dem er dann auch 1861\u201379 angeh\u00f6ren sollte und in dem er als Obmann-Stellv. des Stra\u00dfenausschusses fungierte. 1864\u201373 Bgm. von Freistadt, erwarb er sich Verdienste um das Kommunalwesen, etwa durch die Errichtung der Stadtsparkasse (1866), deren 1. Dion.Vorstand er wurde. Bes. Augenmerk legte er auf die Entwicklung des st\u00e4dt. Schulwesens, zu dessen Entwicklung er ma\u00dfgebl. beitrug. So initiierte S. die Errichtung des 1867 er\u00f6ffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. gef\u00fchrt werden durfte, und richtete ferner, nach dem R\u00fcckzug der Piaristen, 1871 eine Knabenvolksschule ein. Au\u00dferdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freist\u00e4dter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n", "source": 183}}, {"model": "metainfo.text", "pk": 47645, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Kaspar, Politiker und Kaufmann. Geb. Lasberg (O\u00d6), 6. 11. 1811; gest. Freistadt (O\u00d6), 7. 5. 1879.", "source": 183}}, {"model": "metainfo.text", "pk": 47648, "fields": {"kind": 130, "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Nei\u00dfe stud. S. 1834\u201336 in Breslau (Wroclaw) und 1836\u201337 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Nei\u00dfe, 1839 in Breslau und dort im selben Jahr Referendar. S. war befreundet mit den schles. Dichtern Joseph v. Eichendorff und Friedrich v. Sallet und bereits 1836 in Berlin Mitgl. des Literatenver. \u201eDer Tunnel \u00fcber der Spree\u201c und des j\u00fcngeren Berliner Dichterver. Er bet\u00e4tigte sich journalist. vorwiegend als Theaterkritiker (\u201eTheater-Figaro\u201c, \u201eBreslauer Zeitung\u201c 1840ff.), war nach seiner R\u00fcckkehr nach Breslau 1840\u201348 ausschlie\u00dfl. f\u00fcr die Presse t\u00e4tig und wurde Mitarbeiter auch ausw\u00e4rtiger Z. (u. a. \u201eBerliner Figaro\u201c, \u201eBerliner Modenspiegel\u201c, \u201eDer Gesellschafter\u201c, \u201eDer Pilot\u201c). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des \u201eBreslauer Volks-Kalenders\u201c (bzw. \u201eDeutscher Volkskalender\u201c). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. \u201eBestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844\u201c (60 Aufs\u00e4tze, 1844), in der er die M\u00f6glichkeiten journalist. Arbeit nach Ma\u00dfgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als f\u00fcr \u00f6sterr. Verh\u00e4ltnisse bes. geeigneten Ztg.Red. aus, der geschickt zwischen den Anliegen der Autoren und der Forderungen der Zensur im Sinne Sedlnitzkys v. Choltitz (s. d.) zu vermitteln verstand. Nach Wien geholt, \u00fcbernahm S., der von Hebbel (s. d.) und Stifter gesch\u00e4tzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer T\u00e4tigkeit in der Red. der \u201ePresse\u201c, 1849, ab 1850 als verantwortl. Red. die \u201eWiener Zeitung\u201c, die in der Zeit seiner T\u00e4tigkeit um die zus\u00e4tzl. Organe \u201eAbendblatt\u201c (1852\u201357), \u201e\u00d6sterreichische Bl\u00e4tter f\u00fcr Literatur und Kunst\u201c (1852\u201357) und die \u201e\u00d6sterreichische Wochenschrift f\u00fcr Wissenschaft, Kunst und \u00f6ffentliches Leben\u201c (1863\u201365) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausl\u00e4nd. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verl\u00e4\u00dflichkeit gesch\u00e4tzt war. Zuletzt lebte er v\u00f6llig erblindet und zur\u00fcckgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anf\u00e4ngl. Bankbeamter, trat ebenfalls als Journalist hervor, sp\u00e4ter als Autor einiger Lustspiele und Schw\u00e4nke (\u201eDer Heiratsvermittler\u201c, 1886, \u201eSch\u00f6nheitspreis und Liebespreis\u201c, 1893, usw.).\n", "source": 184}}, {"model": "metainfo.text", "pk": 47649, "fields": {"kind": 131, "text": "Schweitzer\u00a0Leopold Albrecht, Journalist und Schriftsteller. Geb. Nei\u00dfe, Preu\u00dfen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (N\u00d6), 9. 7. 1896.", "source": 184}}, {"model": "metainfo.text", "pk": 47650, "fields": {"kind": 130, "text": "Nach absolv. Schulbesuch arbeitete S. zun\u00e4chst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu \u00fcbernehmen. Polit. engagiert, geh\u00f6rte er 1882\u201384 sowie 1894\u201397 dem Badener Gmd.Rat an, wo er sich v. a. f\u00fcr die Anliegen der Hauerschaft einsetzte. Bes. Verdienste um seine Heimatstadt erwarb sich S., der nach dem Tod seiner ersten Frau (1888) im selben Jahr Maria, geb. Gleichweit, ehel., bei der Bek\u00e4mpfung der Reblaus, die 1882 auch in Baden zu w\u00fcten begann. Durch das Aufpfropfen der Edelreben auf gegen den Sch\u00e4dling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weing\u00e4rten mit gro\u00dfem Erfolg angewandt hatte, konnten die Badener Weinkulturen in relativ kurzer Zeit gerettet werden. Auf Stud.Reisen nach Ungarn 1889 und 1896, in die Unterstmk. 1891 und 1898 sowie nach Kroatien 1896 verbesserte S. seine Kenntnisse, die er in Baden erfolgreich u. a. f\u00fcr seine Rebschule, in der er die angef\u00fchrte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner gro\u00dfen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom n\u00f6. Landesausschu\u00df als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Sch\u00e4dling zu unterweisen. F\u00fcr seine erfolgreiche T\u00e4tigkeit erhielt er von der Stadt Baden sowie vom Ackerbaumin. Anerkennungspreise. S., allen Neuerungen auf dem Gebiet des Weinbaus stets aufgeschlossen, entwickelte 1895 den ersten Weingartenpflug und soll 1897 die bis dahin unbekannte Neuburger Rebe eingef\u00fchrt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gr\u00fcndete er 1887 den Badener Rinderzuchtver. und besa\u00df eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte \u2013 er war Mitgl. bei mehreren Ver. \u2013, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinsch\u00e4tzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n", "source": 180}}, {"model": "metainfo.text", "pk": 47651, "fields": {"kind": 131, "text": "Schwabl\u00a0Franz, Landwirt und Weinhauer. Geb. Baden (N\u00d6), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers.", "source": 180}}, {"model": "metainfo.text", "pk": 47660, "fields": {"kind": 130, "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871\u201377 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877\u201382 Park Orchester, Amsterdam, 1882\u201383 Parlow Orchester, Hamburg, 1883\u201384 kgl. Staatskapelle Dresden. 1884\u201391 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegr\u00fcndete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mu\u00dfte er diese Stelle jedoch Oktober 1902 krankheitshalber aufgeben und zog nach Kreuznach, wo er bereits vorher Sommerkurse geleitet hatte, und widmete sich der Komposition. 1903\u201304 spielte S. im Pittsburgh Symphony Orchestra, 1904\u201309 im Philadelphia Orchestra, 1910 im Orchester der New Yorker Metropolitan Opera. S., sowohl als Orchesterspieler wie als Solist ein Virtuose von hohem Rang, gab ein noch heute verwendetes Hilfswerk f\u00fcr die Ausf\u00fchrung von schwierigen Harfenstellen in den Opern Richard Wagners heraus und wirkte auch 1903 und 1906 bei den Wagnerauff. an der Covent Garden Opera London mit. Von seinen durchwegs der Harfe gewidmeten Salonst\u00fccken ist die Mazurka, op. 12, beliebt geblieben. 1890 Kammervirtuose des Hg. Ernst von Sachsen-Altenburg. Sein Bruder Heinrich S. (geb. Wien, 25. 11. 1867; gest. Boston, Mass., USA, 17. 4. 1913) stud. 1878\u201384 ebenfalls bei Anton Zamara am Wr. Konservatorium der Ges. der Musikfreunde, trat nach einer Saison beim Parlow Orchester, Hamburg, 1885 als 1. Harfenist ins Boston Symphony Orchestra ein und lehrte am Bostoner New England Conservatory. Er trat auch als Solist bei den Musikfestivals in Worcester (Mass.) sowie in Paris und London auf. S.s Sohn Joseph E. S. (geb. Leipzig, Sachsen/Deutschland, 19. 5. 1886; gest. Los Angeles, Ca., USA, 9. 12. 1938) stud. bei seinem Vater, 1900\u201301 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904\u201305 bzw. 1908\u201309 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911\u201313 Harfenist einer Opernges. in Boston, lehrte er 1915\u201320 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n", "source": 179}}, {"model": "metainfo.text", "pk": 47661, "fields": {"kind": 131, "text": "Schu\u00ebcker (eigentl. Schu\u00f6cker)\u00a0Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preu\u00dfen (Bad Kreuznach, Deutschland), 9. 11. 1911.", "source": 179}}, {"model": "metainfo.text", "pk": 47662, "fields": {"kind": 130, "text": "Sohn von Norbert Michael, Bruder von Norbert, Neffe von Anton S. (alle s. d.). Bedingt durch die zahlreichen Reisen seines Vaters, lernte S. bereits in fr\u00fcher Jugend zahlreiche St\u00e4dte Europas kennen. Seine ersten k\u00fcnstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der \u00dcbersiedlung seines Vaters nach Paris besuchte S. 1854/55 die Modellierklasse der Pariser Akad. Aber schon kurz darauf verlegte der Vater seinen Wohnsitz nach Frankfurt a. Main, wo S. 1855/56 vorerst Privatunterricht in Bildhauerei von dem mit seinem Vater befreundeten Eduard Schmidt von der Launitz erhielt. 1856\u201358 stud. er am St\u00e4del\u2019schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858\u201361 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 \u00fcbersiedelte er nach Wien, 1863\u201365 hielt er sich, finanziert durch ein Rom-Stipendium, in Italien auf, 1866 in Paris. Ab 1867 wieder in Wien, arbeitete S. als Mitarbeiter bei den Bildhauern Victor Tilgner und Rudolf Weyr mit, 1894\u20131908 war er Ass. an der Akad. der bildenden K\u00fcnste in Wien, wo er zeitweise die Klasse f\u00fcr Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-B\u00fcste f\u00fcr das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisb\u00fcste des Nikolaus Joseph v. Jacquin f\u00fcr die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) f\u00fcr den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschm\u00fcckung des Naturhist. Mus. in Wien mit.\n", "source": 178}}, {"model": "metainfo.text", "pk": 47663, "fields": {"kind": 131, "text": "Schr\u00f6dl\u00a0Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908.", "source": 178}}, {"model": "metainfo.text", "pk": 47672, "fields": {"kind": 130, "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olm\u00fctz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Br\u00fcnn (Brno) Maschinenbau, 1898\u20131903 an der Bauing.Schule (1905 Staatspr\u00fcfung). Zun\u00e4chst an der Br\u00fcnner Hochschule f\u00fcr einige Monate als Ass. t\u00e4tig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen gr\u00f6\u00dferen Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919\u201322), betraut. Als Baurat \u00fcbernahm er 1920 die selbst\u00e4ndige Leitung der Bauabt., die f\u00fcr die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. ma\u00dfgebl. an den von Peter Behrens und Alexander Popp geplanten Neubauten bei der Tabakfabrik in Linz (1929ff.) sowie an der Errichtung zahlreicher, in der Nachkriegszeit geschaffener Wohnhausanlagen beteiligt. Daneben publ. S.\u00fcber die Baut\u00e4tigkeit der \u00d6sterr. Tabakregie. 1930 HR, 1947 i. R.\n", "source": 177}}, {"model": "metainfo.text", "pk": 47673, "fields": {"kind": 131, "text": "Schreyer\u00a0Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravic\u00ed, M\u00e4hren (Bridlicn\u00e1, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950.", "source": 177}}, {"model": "metainfo.text", "pk": 47676, "fields": {"kind": 130, "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840\u201341 dort Med., ab 1841 an der Univ. Wien, wo er 1845 zum Dr. med. prom. wurde. Nach weiterer chirurg. Ausbildung wirkte er am Provinzialstrafhaus in Wien, ab 1856 am Filialspital des Allg. Krankenhauses in Wien II., zuletzt als dessen prov. Vorstand, ab 1858 als Primarius der IV. med. Abt. am Allg. Krankenhaus. S. machte sich um die Verwendung der 1853 in Schottland entwickelten Subkutanspritze zur Einf\u00fchrung von Medikamenten bei der Schmerzbehandlung (Injektion) verdient und stellte diese, erst in den 70er Jahren allg. angewendete Methode sowie seine Erfahrungen damit schon 1861 vor. Auch begann er sich fr\u00fch mit dem Einflu\u00df der Haft auf die Entstehung von Geistesst\u00f6rungen bei Str\u00e4flingen zu besch\u00e4ftigen. An seiner Klinik betrieb der ab 1878 dort t\u00e4tige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882\u201385 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n", "source": 175}}, {"model": "metainfo.text", "pk": 47677, "fields": {"kind": 131, "text": "Scholz\u00a0Franz, Mediziner. Geb. Moldau, B\u00f6hmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902.", "source": 175}}, {"model": "metainfo.text", "pk": 47678, "fields": {"kind": 130, "text": "Sohn des Kaspar Schram(m)el (geb. H\u00f6rmanns b. Litschau/Litschau, N\u00d6, 6. 1. 1811; gest. Langenzersdorf, N\u00d6, 20. 12. 1895) und (Eheschlie\u00dfung 1853) der Volkss\u00e4ngerin Aloisia Ernst (1829\u20131881), Bruder des Joseph S. (geb.Ottakring, N\u00d6/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833\u20131905), der, 1866 als Invalide aus dem Milit\u00e4rdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon fr\u00fch in Dorfkapellen als Klarinettist t\u00e4tig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkst\u00fcml.-musikal. Wirtshausproduktionen. S. wirkte ebenso wie sein Bruder Joseph schon als Kind bei den Auftritten des Vaters als Geiger mit (1861 gilt als Beginn ihrer \u00f6ff. T\u00e4tigkeit), doch erhielten beide \u2013 ein f\u00fcr ihre Verh\u00e4ltnisse ungew\u00f6hnl. Schritt \u2013 auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862\u201363 Violinsch\u00fcler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschlu\u00df (aus ungekl\u00e4rten Ursachen) 1866 Karl Hei\u00dflers, Joseph 1865/66 ebenfalls Sch\u00fcler Hellmesbergers. Nach dem Milit\u00e4rdienst (1866\u201372, 1870 Korporal) spielte S. in einigen \u201eNationalquartetten\u201c und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in gro\u00dfen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gr\u00fcndete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient \u2013 1869\u201371 \u2013 bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett (\u201eNu\u00dfdorfer Terzett\u201c), in dem Joseph die 1., er selbst die 2. Geige und zun\u00e4chst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Br\u00fcder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. \u201epicks\u00fc\u00dfes H\u00f6lzl\u201c) Georg D\u00e4nzer (geb.Hernals, N\u00d6/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett \u201eGebr. Schrammel, D\u00e4nzer und Strohmayer\u201c, das in dieser Besetzung bis zum Ausscheiden D\u00e4nzers Ende 1891 \u2013 Strohmayer verlie\u00df das Quartett Ende 1892 \u2013 verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schlie\u00dfl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die urspr\u00fcngl. Quartettbesetzung zur\u00fcckgegriffen. Im Wr. Musikleben spielten die \u201eSchrammeln\u201c eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu h\u00f6ren, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit \u201eNaturs\u00e4ngern\u201c, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkss\u00e4nger lie\u00dfen diese Vortr\u00e4ge zeitweise verbieten, weswegen die Br\u00fcder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. \u00c4u\u00dferst erfolgreiche Gastspielreisen f\u00fchrten das Quartett 1888 und 1889 durch Deutschland, der letzte H\u00f6hepunkt waren die t\u00e4gl. Produktionen anl\u00e4\u00dfl. der Internationalen Ausst. f\u00fcr Musik- und Theaterwesen in Wien, 1892, doch mu\u00dfte sich S. wegen seiner zunehmenden Herzkrankheit dann zur\u00fcckziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterf\u00fchrte, v\u00f6llig mittellos. Als Komponist schlo\u00df S. an seine Vorl\u00e4ufer an (so gab er 1888 3 He. \u201eAlte oesterreichische Volksmelodien \u2026\u201c heraus), seine (zu etwa 1/3 gedruckten) \u00fcber 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und M\u00e4rsche (u. a. \u201eWien bleibt Wien\u201c, 1886), Josephs bekannteste Komposition ist das Lied \u201eVindobona, du herrliche Stadt\u201c. Die \u201eSchrammeln\u201c und \u201eSchrammelmusik\u201c \u201eblieben als Begriffe f\u00fcr ein volkst\u00fcml. Ensemble und ein entsprechendes Musizieren erhalten\u201c (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorl\u00e4ufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. F\u00e4higkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch h\u00f6chste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strau\u00df.\n", "source": 176}}, {"model": "metainfo.text", "pk": 47679, "fields": {"kind": 131, "text": "Schrammel\u00a0Johann, Musiker und Komponist. Geb. Neulerchenfeld, N\u00d6 (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893.", "source": 176}}, {"model": "metainfo.text", "pk": 47684, "fields": {"kind": 130, "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine fr\u00fche Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826\u201329 an der Univ. Graz Jus, 1829 Dr. jur., und trat 1834 bei der Hof- und Kammerprokuratur als Konzeptspraktikant ein. 1836 wurde er zur Kammerprokuratur nach Lemberg (L\u2019viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) t\u00e4tig war. 1847 erfolgte seine Versetzung als Landrat zum Gef\u00e4llen-Bez.Gericht bzw. Landrecht in Tarn\u00f3w. W\u00e4hrend eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. f\u00fcr den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschu\u00df mit, f\u00fcr den er auch als Referent fungierte. Hier setzte er sich u. a. bes. f\u00fcr die Unabh\u00e4ngigkeit K\u00e4rntens ein. Weiters war S. Mitgl. der Redaktionskomm. f\u00fcr die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem \u201eZentrumklub\u201c bei und geh\u00f6rte im Dezember dieses Jahres der Reichstagsdeputation nach Olm\u00fctz (Olomouc) und Prag an. Nach der Aufl\u00f6sung des Reichstags 1849 zog sich S. aus der Politik zur\u00fcck und wurde dem n\u00f6. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Pr\u00e4s. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenb\u00fcrgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepr\u00e4s. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepr\u00e4s. des Wr. Landesgerichts ernannt. Wegen seiner geschw\u00e4chten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n", "source": 174}}, {"model": "metainfo.text", "pk": 47685, "fields": {"kind": 131, "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884.", "source": 174}}, {"model": "metainfo.text", "pk": 47688, "fields": {"kind": 130, "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbi\u00df, Vater von B\u00e9la Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. B\u00e9la Frh. v. S.). Wuchs nach dem fr\u00fchen Tod seines Vaters im Hause von Karl Gf. Gatterburg, des zweiten Gatten seiner Mutter, auf. Nach Privatunterricht trat er 1820 beim 4. Chevauxlegersrgt. in die k. Armee ein, wurde 1822 Unterlt., 1831 Oblt., 1835 Rtm. 2., 1840 1. Kl., 1846 Mjr., 1848 Obstlt., 1849 Obst., 1851 GM, 1859 FML, 1863 pensioniert, 1865 jedoch als Gendarmeriegen.Insp. reaktiviert und 1868 als Gen. der Kav. ad honores endg\u00fcltig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich w\u00e4hrend des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab \u00fcberstellt und bew\u00e4hrte sich in der Folge an verschiedenen Standorten als Brigadier. Daneben war er 1856 dem Kg. v. Griechenland, 1858 Erzhg. Karl Ferdinand bei dessen Inspektionstour zu den Landeskontingenten des Dt. Bundes zugewiesen. Im italien. Feldzug von 1859 tat er sich als Division\u00e4r beim 3. Inf.Armeekorps durch umsichtige F\u00fchrung sowie pers\u00f6nl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode f\u00fchrte er dann die Administrationsgesch\u00e4fte des Landesgendarmeriekmdo. in Lemberg (L\u2019viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de V\u00e1sonyke\u00f6 (geb. Wien, 30. 10. 1805; gest. Verona, Venetien/Italien, 9. 1. 1851), 1855 Theresia Franziska Juliana Si(e)gel (geb. Wien, 11. 3. 1827; gest. Wien, 1. 5. 1857) und 1859 Anna Scheiger (geb. Wien, 7. 7. 1820; gest. G\u00f6rz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausl\u00e4nd. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes f\u00fcr die von ihm angeregte und nach dem Feldzug von 1848/49 durchgef\u00fchrte Reorganisation der Husarenrgt. verdient.\n", "source": 172}}, {"model": "metainfo.text", "pk": 47689, "fields": {"kind": 131, "text": "Sch\u00f6nberger (Schoenberger) (Carl Friedrich)\u00a0Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorder\u00f6sterr. (Deutschland), 30. 6. 1804; gest. G\u00f6rz, G\u00f6rz-Gradisca (Gorizia, Italien), 19. 12. 1880.", "source": 172}}, {"model": "metainfo.text", "pk": 47690, "fields": {"kind": 130, "text": "Stud. 1872\u201380 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), sp\u00e4ter auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Ru\u00dfland, Deutschland, \u00d6sterr. und Belgien. 1880\u201385 lehrte er in Wien, 1886 reiste er nach Schweden und anschlie\u00dfend nach London, wo er im J\u00e4nner 1887 erstmals als Solist auftrat und sich in der Folge niederlie\u00df. S. geh\u00f6rte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, sp\u00e4ter unternahm er Konzertreisen in Europa und England, auch als Dirigent einer reisenden Opernges. Er war mit der Tochter des engl. Gen. Sir Henry Tuson verheiratet.\n", "source": 173}}, {"model": "metainfo.text", "pk": 47691, "fields": {"kind": 131, "text": "Sch\u00f6nberger\u00a0Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Gro\u00dfbritannien), 9. 3. 1930.", "source": 173}}, {"model": "metainfo.text", "pk": 47694, "fields": {"kind": 130, "text": "Sohn des Vorigen, Bruder von Arthur S., Schwager von M. Hajek (beide s. d.); mos. Stud. nach Absolv. des Akadem. Gymn. in Wien ab 1882 an der dortigen Univ. Med., u. a. bei E. Albert, Billroth, E. W. v. Br\u00fccke sowie Nothnagel (alle s. d.), und wurde 1888 zum Dr. med. prom. Seine weitere Ausbildung erhielt er 1887/88 als Aspirant an der Klinik Nothnagel, ab 1889 bei Albert, wo er 1891\u201395 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien f\u00fcr Chirurgie und wurde 1907 Tit. ao., 1927 unbesoldeter ao. Prof. 1895/96 stand er der Chirurg. Abt. an der Wr. Allg. Poliklinik vor, kam 1896 als Primarius f\u00fcr Chirurgie an das K.-Franz-Josef-Spital, 1902 an das Wiedner Krankenhaus und trat 1934 i. R. S. gestaltete die von ihm geleiteten Abt. gem\u00e4\u00df den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und ver\u00f6ff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentz\u00fcndung bzw. -katarrh, v. a. aber nat\u00fcrl. chirurg. Problemen. Als einer der ersten besch\u00e4ftigte er sich mit der operativen Behandlung der akuten Blinddarmentz\u00fcndung, propagierte umfangreiche Resektionen bei Magen- und Zw\u00f6lffingerdarmgeschw\u00fcren, erarbeitete Vorbeugungsma\u00dfnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und besch\u00e4ftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besa\u00df spr\u00fchenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch \u00f6ff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des \u00d6sterr. Verdienstordens. Durch sein Bem\u00fchen um die Diagnostik der Blinddarmentz\u00fcndung und sein entschiedenes Eintreten in Theorie und Praxis f\u00fcr umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen pers\u00f6nl. Verh\u00e4ltnis zu seinem Bruder Arthur, das in zwei von dessen erz\u00e4hler. Werken (\u201eDer blinde Geronimo und sein Bruder\u201c, \u201eFlucht in die Finsternis\u201c) Niederschlag fand.\n", "source": 169}}, {"model": "metainfo.text", "pk": 47695, "fields": {"kind": 131, "text": "Schnitzler\u00a0Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939.", "source": 169}}, {"model": "metainfo.text", "pk": 47696, "fields": {"kind": 130, "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874\u201378 an der Univ. Wien Jus, 1881 Dr. jur. 1879 trat S. beim Landesgericht Wien in den Justizdienst, wurde 1885 Bez.Gerichtsadjunkt in Wolkersdorf, 1887 in Wien-Hietzing, 1891 Gerichtsadjunkt beim Wr. Landesgericht. 1896 wechselte S. zur Staatsanwaltschaft (Substitut in Korneuburg) und war ab 1897 Staatsanwalt in Steyr, 1902 in Krems, bis er 1903 ins Justizmin. berufen wurde, wo er, 1904 Sektionsrat, 1907 Titel und Charakter eines Min.Rates, 1909 Min.Rat, 1912 zum Sektionschef avancierte. S. war an den legislativen Arbeiten des Justizmin., insbes. auf den Gebieten der Strafrechts- und der Strafproze\u00dfreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees f\u00fcr die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wof\u00fcr er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verst\u00e4ndnis f\u00fcr die Bed\u00fcrfnisse der Milit\u00e4rverwaltung \u20131877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. \u2013 brachte es mit sich, da\u00df sein Rat von den milit\u00e4r. Stellen oft in Anspruch genommen wurde; f\u00fcr seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Milit\u00e4rstrafverfahrens (Milit\u00e4rstrafproze\u00dfordnung von 1912) erhielt er 1912 das Komturkreuz des Franz Joseph-Ordens mit dem Stern. Auch die zahlreichen Kriegsstrafgesetze sind unter seiner Mitwirkung zustande gekommen. In den Aussch\u00fcssen beider H\u00e4user des Reichsrates war er sehr oft als Vertreter des Justizmin. t\u00e4tig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatspr\u00fcfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n", "source": 170}}, {"model": "metainfo.text", "pk": 47697, "fields": {"kind": 131, "text": "Schober\u00a0Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917.", "source": 170}}, {"model": "metainfo.text", "pk": 47700, "fields": {"kind": 130, "text": "Sohn von (Heinrich) Eduard v. S. (s. u.), Neffe von (Wilhelm) Alexander, Cousin von Philipp Wilhelm d. J. und Paul Eduard v. S. (alle s. d.), Schwiegervater von Armand Dumreicher v. \u00d6sterreicher (s. d.); evang. HB. S., der als Mitsch\u00f6pfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Gro\u00dfhandlungshaus \u201eAlexander Schoeller\u201c (sp\u00e4ter \u201eSchoeller & Co.\u201c) nach Wien geholt, ab 1869 \u00f6ff. Gesellschafter. Er konnte seinen Onkel bei der Weiterf\u00fchrung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und M\u00fchlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von \u201eSchoeller & Co.\u201c nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) \u00fcberging, durch die Erzeugung von Blechen und Dr\u00e4hten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene H\u00fclsenfabrik zur Produktion von Kriegsmaterial begr\u00fcndet. Im Ternitzer Werk, der \u201eTernitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.\u201c, f\u00fchrte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gr\u00fcnden nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgel\u00f6st. Wegen eines schweren Nervenleidens mu\u00dfte er die Firmenleitung zuletzt fast g\u00e4nzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard \u00fcberlassen. S. bekleidete auch eine gro\u00dfe Zahl von Verwaltungsratsstellen bei gro\u00dfen \u00f6sterr. Ind.-, Banken- und Eisenbahnunternehmungen, wie etwa bei der Bodencreditanstalt in Wien und der K. Ferdinands-Nordbahn. Am Gmd.Leben der evang. Gmd. HB in Wien aktiv beteiligt, war S. 1865\u201389 Gmd.Vertreter, 1867\u201389 auch Presbyter und betreute \u2013 wie auch schon sein Onkel \u2013 deren Verm\u00f6gensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. D\u00fcren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, N\u00d6, 18. 1. 1879), war wie etl. andere Angeh\u00f6rige der Familie S. in der Zuckerind. t\u00e4tig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterst\u00fctzung seines Bruders Alexander pachtete er 1853 die Herrschaft Edel\u00e9ny bei Miskolcz und richtete die darauf befindl. Zuckerr\u00fcbenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu k\u00e4mpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n", "source": 171}}, {"model": "metainfo.text", "pk": 47701, "fields": {"kind": 131, "text": "Schoeller\u00a0Gustav Adolph von, Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier. Geb. D\u00fcren, Preu\u00dfen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889.", "source": 171}}, {"model": "metainfo.text", "pk": 47706, "fields": {"kind": 130, "text": "Sohn eines Sattlermeisters und Gastwirts. S., der bei seinem mus. und Zeichner. begabten Vater ersten Zeichenunterricht erhielt, sollte die Marinemusikschule in Pola (Pula) besuchen, wurde aber wegen einer Augenschw\u00e4che zur\u00fcckgestellt. Daraufhin ging er nach Wien und stud. hier 1880\u201382 an der Akad. der bildenden K\u00fcnste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender K\u00fcnstler, so z. B. f\u00fcr die Z. \u201e\u00dcber Land und Meer\u201c. Als der k\u00fcnstler. Erfolg etwas nachlie\u00df, kehrte S. nach Mies zur\u00fcck, \u00fcbersiedelte aber 1895 wieder nach M\u00fcnchen, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als \u201eSalome\u201c. Sein \u0152uvre umfa\u00dft neben Portr\u00e4ts von Schauspielerinnen und span. T\u00e4nzerinnen auch Bildnisse von Mitgl. des bayer. K\u00f6nigshauses. S., der Mitgl. der M\u00fcnchner K\u00fcnstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n", "source": 168}}, {"model": "metainfo.text", "pk": 47707, "fields": {"kind": 131, "text": "Schmutzler\u00a0Leopold, Maler. Geb. Mies, B\u00f6hmen (Str\u00edbro, Tschechien), 29. 3. 1864; gest. M\u00fcnchen, Bayern (Deutschland), 20. 6. 1940.", "source": 168}}, {"model": "metainfo.text", "pk": 47712, "fields": {"kind": 130, "text": "Sohn des P\u00e4chterehepaars Wolf und Sara S., mos.; nach \u00dcbersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromer\u00ed\u017e) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922\u201323 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterst\u00fctzt von seinem Onkel und sp\u00e4terem Manager, Leo Engel, 1925\u201326 an der Hochschule f\u00fcr Musik in Berlin (Sch\u00fcler von Hermann Weissenborn) fortsetzte. Nach dem Milit\u00e4rdienst in Rum\u00e4nien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Deb\u00fct als Rundfunks\u00e4nger am 29. 3. 1929 (Vasco da Gama in Meyerbeers \u201eDie Afrikanerin\u201c), weitere Rundfunkproduktionen (Hans in Smetanas \u201eDie verkaufte Braut\u201c, Lionel in Flotows \u201eMartha\u201c), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von au\u00dferordentlicher Popularit\u00e4t \u2013 seiner geringen K\u00f6rpergr\u00f6\u00dfe wegen allerdings nur innerhalb der zu dieser Zeit aufbl\u00fchenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in \u201eDer Liebesexpress\u201c (Urauff. Berlin 1931) folgte der unerh\u00f6rte Siegeszug von \u201eEin Lied geht um die Welt\u201c (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Macht\u00fcbernahme in Deutschland wurde S., schon vorher diffamiert und angefeindet, mit Auftrittsverbot belegt und Wien immer mehr zu seinem Lebenszentrum, ab 1935 sein Wohnort. Hier wurden die n\u00e4chsten Filme \u201eWenn du jung bist, geh\u00f6rt dir die Welt\u201c, 1933, \u201eEin Stern f\u00e4llt vom Himmel\u201c, 1935, auch engl. Version, und \u201eHeut ist der sch\u00f6nste Tag in meinem Leben\u201c, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Pal\u00e4stina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937\u20131938 (mit Auftritten u. a. in der New Yorker Carnegie Hall) hervorzuheben. 1938 wieder in Wien, gab er im Herbst desselben Jahres Konzerte in Belgien und lie\u00df sich 1939 in Br\u00fcssel nieder, wo er als Rudolf in Puccinis \u201eLa Boh\u00e8me\u201c einen seiner seltenen B\u00fchnenauftritte hatte. Infolge des Kriegsverlaufs mu\u00dfte S. 1940 aus Belgien fl\u00fcchten, hielt sich in S\u00fcdfrankreich auf und gelangte 1942 unter gro\u00dfen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf v\u00f6llig mittellos. S. wurde als S\u00e4ngertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine \u2013 allerdings kleine und nicht restlos durchgebildete \u2013 lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und h\u00f6chsten Lage und ein f\u00fcr S. charakterist. \u201ewehm\u00fctiges\u201c Timbre aus.\n", "source": 167}}, {"model": "metainfo.text", "pk": 47713, "fields": {"kind": 131, "text": "Schmidt,\u00a0\u2014 Joseph S\u00e4nger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rum\u00e4nien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Z\u00fcrich (Schweiz), 16. 11. 1942.", "source": 167}}, {"model": "metainfo.text", "pk": 47714, "fields": {"kind": 130, "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Kne\u017ena (Rychnov nad Kne\u017enou) und Olm\u00fctz (Olomouc) begann S. eine kaufm\u00e4nn. Lehre in Br\u00fcnn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Gro\u00dfhandel bet\u00e4tigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gew\u00e4hlt worden war, \u00fcbernahm S. die Leitung des v\u00e4terlichen Gesch\u00e4fts in Schildberg und sp\u00e4ter gem. mit seinem \u00e4lteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papierm\u00fchle (sie galt als die \u00e4lteste der \u00d6sterr.-ung. Monarchie) und Bleiche in Gro\u00dfullersdorf und betrieb dort nach dem Ableben seines Bruders (1871) eine Papier- und Leinenerzeugung im eigenen Namen, jedoch unter der Fa. Ant. J. Schmidt u. S\u00f6hne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere f\u00fchrten zu einer neuen Bl\u00fcte dieser Papierm\u00fchle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Gro\u00dfullersdorf, eine \u2013 1917 aufgel\u00f6ste \u2013 Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige f\u00fcrstlich liechtensteinsche Mahlm\u00fchle in Olleschau (Ol\u0161any) und errichtete dort eine Fabrik f\u00fcr Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG \u00fcbernommen, die ab 1870 auch das sp\u00e4ter verbreitete Zigarettenpapier Marke \u201eOlleschau\u201c herstellte, wobei die Lieferschwierigkeiten der franz\u00f6s. Konkurrenz in den Krisenjahren 1870/71 gen\u00fctzt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olm\u00fctzer Handels- und Gewerbekammer in den m\u00e4hr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Gro\u00dfullersdorf, 1879\u201391 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegr\u00fcndeten Te\u00dfthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, sp\u00e4ter auch anderen Fragen der Landwirtschaft widmete. S. n\u00fctzte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die M\u00f6glichkeiten des erh\u00f6hten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde f\u00fcr seine wirtschaftliche und polit. T\u00e4tigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon w\u00e4hrend seiner Lebenszeit wurde die Unternehmung von seinen S\u00f6hnen Anton S. (geb. Gro\u00dfullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Gro\u00dfullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Gro\u00dfullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgef\u00fchrt. W\u00e4hrend Anton S. bis 1917 die Wr. Gesch\u00e4ftsstelle leitete, danach mit Richard die Ullersdorfer Papierm\u00fchle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einf\u00fchrte. Alle drei Br\u00fcder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizit\u00e4tswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung t\u00e4tig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908\u20131938 Kammerrat der Handels- und Gewerbekammer Olm\u00fctz.\n", "source": 166}}, {"model": "metainfo.text", "pk": 47715, "fields": {"kind": 131, "text": "\u2014 Anton Schmidt,\u00a0Fabrikant und Politiker. Geb. Schildberg, M\u00e4hren (\u0160t\u00edty, Tschechoslowakei), 9. 12. 1826; gest. Gro\u00dfullersdorf, M\u00e4hren (Velk\u00e9 Losiny, Tschechoslowakei), 28. 3. 1892.", "source": 166}}, {"model": "metainfo.text", "pk": 47718, "fields": {"kind": 130, "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete f\u00fcr Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Franz\u00f6s. Krieg teil, wurde danach Red. des \u201eWestph\u00e4lischen Grenzboten\u201c in M\u00fcnster, dann Leiter des Feuilletons und \u201eReimchronist\u201c der \u201eDeutschen Zeitung\u201c in Paris und war schlie\u00dflich ab 1880 Berichterstatter der \u201eBerliner Post\u201c; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen sp\u00e4teren Ver\u00f6ff. zugute kamen. In der Folge \u00fcbersiedelte S. nach Wien, wo er 1886 in die Red. des \u201eNeuen Wiener Tagblatts\u201c eintrat, der er bis zu seinem Tod angeh\u00f6rte. Daneben arbeitete er an mehreren Ztg. (u. a. der \u201eIllustrirten Zeitung\u201c, Leipzig) und Z. (u. a. der \u201eGartenlaube\u201c) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. \u201eMuth\u201c, 1899), Erz., M\u00e4rchen, den historisierenden Wr. Roman aus dem 15. Jh. \u201eB\u00fcrger und Studenten\u201c sowie dramat. Werke.\n", "source": 164}}, {"model": "metainfo.text", "pk": 47719, "fields": {"kind": 131, "text": "Schmal\u00a0Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preu\u00dfen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900.", "source": 164}}, {"model": "metainfo.text", "pk": 47724, "fields": {"kind": 130, "text": "Sohn eines in Frankreich t\u00e4tigen Tschechen und einer Franz\u00f6sin (geb. Beauchez), lebte er ab 1860 in B\u00f6hmen und besuchte das Akadem. Gymn. in Prag. Er wurde als aktiver Teilnehmer an Demonstrationen gegen den Justizminister Herbst (s. d.) verhaftet und wegen Hochverrats angeklagt, floh jedoch vor dem Proze\u00df nach Paris, dann 1869 nach Berlin, wo er die \u201eCorrespondance Tch\u00e8que\u201c red. W\u00e4hrend des dt.-franz\u00f6s. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zur\u00fcck und fand seinen Lebensunterhalt als Lehrer der franz\u00f6s. Sprache in Leitomischl (Litomy\u0161l), von 1873 an in Prag. Polit. geh\u00f6rte er dem radikalen Fl\u00fcgel der demokrat. Jungtschechen an, k\u00e4mpfte f\u00fcr die Einf\u00fchrung des allg. Wahlrechts und trat auch in Prager Arbeiterbll. mit Artikeln hervor. V. a. widmete er sich der Anbahnung der freundschaftl. Beziehungen zu Frankreich, f\u00fchrte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag f\u00fcr franz\u00f6s. Ztg. 1893\u201398 war er Korrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris, dann st\u00e4ndiger Mitarbeiter von \u201eLe Temps\u201c in Prag, ab 1903 Red. der erneuerten \u201eCorrespondance Tch\u00e8que\u201c. Daneben war er als \u00dcbers. franz\u00f6s. Romane und Schauspiele t\u00e4tig und verf. eine Reihe von verbreiteten Sprachlehrb\u00fcchern und Konversationsbehelfen.\n", "source": 165}}, {"model": "metainfo.text", "pk": 47725, "fields": {"kind": 131, "text": "\u2014 -Beauchez\u00a0Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, B\u00f6hmen (Praha, Tschechien), 14. 12. 1912.", "source": 165}}, {"model": "metainfo.text", "pk": 47726, "fields": {"kind": 130, "text": "Bauernsohn; stud. kath. Theol. an der Univ. Prag, 1860 Priesterweihe, 1865 Dr. theol. Ab 1862 Adjunkt an der theolog. Fak. in Prag, lernte er auf einer Stud.Reise durch Deutschland die damals namhaftesten Theologen (Hergenr\u00f6ther, Hettinger, D\u00f6llinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. f\u00fcr Kirchengeschichte an der Univ. Prag und f\u00fchrte 1878 das Fach Patrol. in den Lehrplan ein. S. war Historiograph der Fak., mehrmals Dekan und Rektor. 1882 hatte er als letzter Rektor der ungeteilten Univ. die Trennungsverhh. zu leiten. Mitgl. diverser gel. Ges., Landtagsabg. der Fraktion der verfassungstreuen Gro\u00dfgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte B\u00f6hmens. In seiner Monographie \u00fcber den Hl. Wolfgang bem\u00fchte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n", "source": 163}}, {"model": "metainfo.text", "pk": 47727, "fields": {"kind": 131, "text": "Schindler\u00a0Josef, Kirchenhistoriker. * Lachowitz (Lachovice, B\u00f6hmen), 23. 6. 1835; \u2020 Prag, 22. 2. 1911.", "source": 163}}, {"model": "metainfo.text", "pk": 47728, "fields": {"kind": 130, "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); w\u00e4hrend der Volksschulzeit S\u00e4nger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verh\u00e4ltnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien besch\u00e4ftigt; daneben stud. er am Konservatorium der Ges. der Musikfreunde Klavier bei Fischhof, Pirkhert (beide s. d.) und Franz Ramesch, Komposition bei Simon Sechter sowie Waldhorn bei Richard Lewy und lernte dort den Dirigenten H. Richter (s. d.) kennen, mit dem er zeitlebens freundschaftlich verbunden war. Ab 1865 war S. 1. Hornist am Hofburgtheater und als Musiklehrer u. a. in der Familie des Justizministers Stremayr und in der Familie Kautsky t\u00e4tig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivit\u00e4ten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Br\u00fcdern zur Arbeiterbewegung; 1868 gr\u00fcndete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das \u201eLied der Arbeit\u201c, das zur Hymne der \u00f6sterr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (h\u00e4ufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, R\u00fcckert), wobei die \u00dcbereinstimmung von textlicher und musikal. Deklamation f\u00fcr ihn sehr wesentlich war. 1872 gr\u00fcndete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste \u00f6sterr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur beh\u00f6rdlichen Einstellung 1878 war S. Red. der \u201e\u00d6sterreichischen Musikerzeitung\u201c, 1878 gr\u00fcndete er den Arbeiter-S\u00e4ngerbund Wien, den ersten \u00f6sterr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880\u201382 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem m\u00e4rchenhaften, allegor. Libretto von Albert Dulk) im sp\u00e4tromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegr\u00fcnder und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-S\u00e4ngerbundes Landstra\u00dfe, 1891 Mitbegr\u00fcnder des Verbandes der Arbeiter-Gesangver. Nieder\u00f6sterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gr\u00fcndete S. die \u201eArbeiters\u00e4nger-Zeitung\u201c, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der \u201eArbeiter-Zeitung\u201c, wobei er bem\u00fcht war, das Kunstverst\u00e4ndnis der Arbeiter zu f\u00f6rdern und ihnen die klass. und zeitgen\u00f6ss. Musik n\u00e4herzubringen. S. sah in der von ihm begr\u00fcndeten Arbeiters\u00e4ngerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung \u00fcberhaupt.\n", "source": 161}}, {"model": "metainfo.text", "pk": 47729, "fields": {"kind": 131, "text": "Scheu\u00a0Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; \u2020 Wien, 12. 10. 1904.", "source": 161}}, {"model": "metainfo.text", "pk": 47730, "fields": {"kind": 130, "text": "S. stud. 1870\u201378 an der Akad. der bildenden K\u00fcnste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885\u201390 als Ass. an der Kunstgewerbeschule in Prag bei Franti\u0161ek \u017den\u00ed\u0161ek, 1890\u20131922 war er dort als Prof. (1894 o. Prof.) f\u00fcr dekorative Malerei t\u00e4tig. 1913 Mitgl. der Tschech. Akad. der Wiss. und K\u00fcnste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, n\u00e4mlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten H\u00e4lfte der 80er Jahre wandte er sich, unter dem Einflu\u00df der westeurop. Malerei und bedingt durch die Konfrontation mit den sozialen Problemen des Alltags, Genrethemen zu, in denen Traurigkeit, Tragik und Resignation vorherrschen. In seinen melanchol. gestimmten Gem\u00e4lden der folgenden Periode verwendete er h\u00e4ufig Motive aus dem Milieu des abendlichen und n\u00e4chtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gef\u00fchlstiefe, die durch Lichteffekte bewirkt wird, aus.\n", "source": 162}}, {"model": "metainfo.text", "pk": 47731, "fields": {"kind": 131, "text": "Schikaneder\u00a0Jakub, Maler. * Prag, 27. 2. 1855; \u2020 Prag, 15. 11. 1924.", "source": 162}}, {"model": "metainfo.text", "pk": 47732, "fields": {"kind": 130, "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861\u20131919), der gem. mit seinem Onkel Sebastian S. (1844\u201389) 1885 die Holzdrahtfabrik S. & Neffe gegr\u00fcndet hatte; stud. Elektrotechnik an der H\u00f6heren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im v\u00e4terlichen Unternehmen, das Z\u00fcndholzhersteller belieferte, aber auch u. a. Jalousiest\u00e4be und Zahnstocher herstellte, und brachte es in kurzer Zeit zu gro\u00dfer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Z\u00fcndholzerzeugung nahm 1928 durch S.s Mitgr\u00fcndung des Luma-Verkaufsb\u00fcros der Z\u00fcndwarenfabriken Solo-AG Sch\u00fcttenhofen und S. & Neffe GmbH in Prag gro\u00dfen Aufschwung, Z\u00fcndh\u00f6lzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, besch\u00e4ftigte bis zu 300 Mitarbeiter. 1892\u20131938 f\u00fchrte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Ann\u00edn). Er stellte das Rohglas in einem Fabrikneubau in Langendorf her, der mit einem modernen Glasschmelzofen ausgestattet war. Das von S. erzeugte Bleikristall war nicht mehr blaustichig, sondern rein wei\u00df, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflu\u00dfte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n", "source": 159}}, {"model": "metainfo.text", "pk": 47733, "fields": {"kind": 131, "text": "Schell\u00a0Karl, Industrieller. * Langendorf (Dlouh\u00e1 Ves, B\u00f6hmen), 19. 12. 1892; \u2020 ebenda, 2. 6. 1945", "source": 159}}, {"model": "metainfo.text", "pk": 47734, "fields": {"kind": 130, "text": "Stud. 1860\u201365 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Br\u00fccke (s. d.), 1869 Priv.Doz. f\u00fcr die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. f\u00fcr Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegr\u00fcndeten Inst. f\u00fcr Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. f\u00fcr Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte gro\u00dfes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach \u00fcbers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Soci\u00e9t\u00e9 scientifique m\u00e9dicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n", "source": 160}}, {"model": "metainfo.text", "pk": 47735, "fields": {"kind": 131, "text": "Schenk\u00a0Samuel Leopold, Mediziner. * \u00dcrm\u00e9ny (Mojm\u00edrovce, Slowakei), 23. 8. 1840; \u2020 Schwanberg (Stmk.), 17. 8. 1902.", "source": 160}}, {"model": "metainfo.text", "pk": 47746, "fields": {"kind": 130, "text": "Sohn eines Finanzsekr. \u2013 Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869\u201372 an der Wr. ABK bei \u00bfKarl Mayer fort. 1872 \u00fcbersiedelte er nach M\u00fcnchen und wurde 1873 an der dortigen ABK Sch\u00fcler von S\u00e1ndor Wagner. In den Folgejahren arbeitete er als Maler in M\u00fcnchen und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878\u201381 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, sp\u00e4ter w\u00e4hlte er Themen aus der Gegend um den Balaton. 1899\u20131902 hielt er sich wieder in M\u00fcnchen auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften z\u00e4hlt, gewann 1897 den Esterh\u00e1zy-Preis, 1899 den Preis des Ung. Ver. f\u00fcr Bildende K\u00fcnste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u.\u00a0a. Luftspiegelung \u00fcber der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Gal\u00e9ria in Budapest.\n\n", "source": 201}}, {"model": "metainfo.text", "pk": 47747, "fields": {"kind": 131, "text": "T\u00f6lgyessy Art\u00far, Maler. Geb. Szegedin (Szeged, H), 1.\u00a05. 1853; gest. Budapest (H), 2.\u00a02. 1920; r\u00f6m.-kath.", "source": 201}}, {"model": "metainfo.text", "pk": 47748, "fields": {"kind": 130, "text": "S\u00fcdtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T.\u00a0u.\u00a0H. (1728\u20131788) und Josepha Gfn. v. T.\u00a0u.\u00a0H. (1741\u20131819), Cousin des F\u00fcrstbischofs von Trient Peter Vigil Gf. v. T.\u00a0u.\u00a0H. (1776\u20131780), verwandt mit F\u00fcrstbischof \u00bfLeopold Leonhard Gf. v. T.\u00a0u.\u00a0H. \u2013 T. stud. in Passau, Salzburg und Rom Theol. und empfing dort als Mitgl. des Germanicums die Priesterweihe. 1790 wurde er Kanoniker von Trient, 1794 von Salzburg, 1797 Tit.bischof von Iasus und Weihbischof von Trient (Konsekration durch Leopold Leonhard Gf. v. T.\u00a0u.\u00a0H.). Als letzter vom Trienter Domkapitel gew\u00e4hlter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T.\u00a0u.\u00a0H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k.\u00a0Investitur nicht mehr erhalten, da er Anfang 1801 vor den franz\u00f6s. Truppen zun\u00e4chst nach G\u00f6rz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich f\u00fcr den Fortbestand seines Bistums einsetzte. Er k\u00e4mpfte erfolgreich gegen die Pl\u00e4ne K. \u00bfFranz\u2019\u00a0II. (I.), der f\u00fcr Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endg\u00fcltige S\u00e4kularisierung des F\u00fcrstbistums, Kl\u00f6ster wurden aufgel\u00f6st, das Hochstift mit seinen 150.000 Einwohnern \u00d6sterr. zugeordnet. Nach dem Frieden von Pre\u00dfburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zur\u00fcckkehren, wo er in Trient eine Stadtwohnung bezog, da seine f\u00fcrstbisch\u00f6fl. Residenz, das Castello del Buonconsiglio, s\u00e4kularisiert worden war. Die staatl. \u00dcbergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bisch\u00f6fe: T. von Trient, Karl Franz Gf. v. Lodron von Brixen (Bressanone) und Karl Rudolph v. Buol-Schauenstein von Chur. Bes. Protest riefen neben den Eingriffen in das religi\u00f6se Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von di\u00f6zesanen Priesterseminaren hervor. Die drei Bisch\u00f6fe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius\u00a0VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs best\u00e4rkt. W\u00e4hrend Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bez\u00fcge gesperrt; Buol-Schauenstein wurde nach Graub\u00fcnden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerst\u00e4ndige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar w\u00e4hlen. Dieser, Franz v. Spaur, erhielt von T. die geheime Best\u00e4tigung. Die bayer. Ma\u00dfnahmen auf kirchl. Gebiet (Ver\u00e4u\u00dferung gr\u00f6\u00dferer Tle. der bisch\u00f6fl. und Kapiteldotation, S\u00e4kularisierung mehrerer Kl\u00f6ster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zur\u00fcckkehren, schwor dem neuen Machthaber 1810 in Monza den Treueeid und nahm auch am Nationalkonzil in Paris 1811 teil. Obwohl Napoleon ebenso schroff in kirchl. Belange eingriff, duldete T. dessen Klosteraufhebungen, die Einf\u00fchrung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entlie\u00df 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut \u00fcbertragen. Als das Bistum 1814 wieder an \u00d6sterr. fiel, folgte eine Zeit der Konsolidierung, einige Kl\u00f6ster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bisch\u00f6fl. Mensa, das Domkapitel und die Bischofsnomination durch den \u00f6sterr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tats\u00e4chl. in seinem Bistum residieren.\n\n", "source": 200}}, {"model": "metainfo.text", "pk": 47749, "fields": {"kind": 131, "text": "Thun und Hohenstein Emanuel Maria Gf. von, F\u00fcrstbischof. Geb. Trient, Bistum Trient (Trento, I), 28.\u00a03. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9.\u00a010. 1818 (bestattet: Dom zu Trient); r\u00f6m.-kath.", "source": 200}}, {"model": "metainfo.text", "pk": 47754, "fields": {"kind": 130, "text": "Entstammte einer 1779 in den Adelsstand erhobenen Familie. Sohn des Rtm. Wilhelm Kluger Edler v.\u00a0T. und von Johanna Kluger Edler v.\u00a0T., geb. Toth, Vater von vier Kindern, u.\u00a0a. des Juristen und \u00dcbers. Hermann Frh. v.\u00a0T. (geb.\u00a06.\u00a07. 1866; gest. Neapel/Napoli, I, 6.\u00a011. 1911); in 1.\u00a0Ehe mit Rosa Petz (geb. 1843; gest. Wien, 16.\u00a012. 1866), in 2.\u00a0Ehe ab 1870 mit Bibiana Anna Bianca (Blanche) Lucas verheiratet. \u2013 T. besuchte ab 1847 die Theresian. Akad. in Wien, wo er bis zum Abschluss seiner jurid. Stud. 1859 blieb. Danach hielt er sich zu rechtshist. Stud. ein Jahr lang in Berlin auf und trat im April 1861 als Min.-Konzepts-Adjunkt im Min. f\u00fcr Handel und Volkswirtschaft in den \u00f6sterr. Staatsdienst. Hier gelangte er sehr bald in einflussreiche Positionen: Schon Anfang der 1860er-Jahre wurde er unter \u00bfAnton v. Schmerling in das Staatsmin. berufen und der Presseleitung zugeteilt. T., leitender Mitarb. der \u201e\u00d6sterreichischen Wochenschrift\u201c (1865 eingestellt), fungierte ab 1864 als Leiter des Abendbl., ab 1865 als Chefred. der \u201eWiener Zeitung\u201c, die er bis Mitte J\u00e4nner 1871 gem. mit Georg Seuffert f\u00fchrte, und setzte in dieser Position die von \u00bfLeopold Schweitzer begonnenen Reformen fort. Ab 1867 unterstand die Ztg. infolge der Reorganisation des Presseapparats der Leitung von \u00bfFriedrich Ferdinand Gf. Beust, der der Presse weit gr\u00f6\u00dfere Aufmerksamkeit schenkte als seine Vorg\u00e4nger: Er sch\u00e4tzte sowohl T.s au\u00dferordentl. publizist. Begabung wie auch seine umfassende Bildung und v.\u00a0a. sein polit. Verst\u00e4ndnis, wodurch T. noch im selben Jahr zum Min.sekr. avancierte. Er wechselte in die Pr\u00e4sidialsektion des Gem. Min. des \u00c4u\u00dfern und des k.\u00a0Hauses und \u00fcbernahm in seiner neuen Funktion, neben seiner eigentl. T\u00e4tigkeit als Chefred., auch wichtige polit. Auftr\u00e4ge. Im April 1869 erfolgte seine Ernennung zum Sektionsrat und im Februar 1871 die zum HR bzw. Min.rat. W\u00e4hrend seiner T\u00e4tigkeit im Pressdep. (Literar. B\u00fcro) war er u.\u00a0a. Verbindungsmann zum \u201ePester Lloyd\u201c und mit der Einflussnahme auf ma\u00dfgebl. dt. Bll. beauftragt. I.\u00a0d.\u00a0F. wurde T. def. in den Dienst des Gem. Min. des \u00c4u\u00dfern und des k.\u00a0Hauses aufgenommen und \u00fcbernahm im M\u00e4rz 1872 auf Wunsch von \u00bfJulius Gf. Andr\u00e1ssy d.\u00a0\u00c4. das Referat f\u00fcr dt. Angelegenheiten. Daneben stand er dem Min. auch f\u00fcr andere publizist. Aufgaben zur Verf\u00fcgung. Im November 1876 erfolgte seine Ernennung zum ao.\u00a0Gesandten und bevollm\u00e4chtigten Minister. Nach dem R\u00fccktritt Andr\u00e1ssys (1879) r\u00fcckte T. zwar in den Hintergrund, nahm aber weiterhin regelm\u00e4\u00dfig an den (schriftl.) Delegationsverhh. zwischen beiden Reichsh\u00e4lften teil. Im Juni 1880 \u00fcbernahm er f\u00fcr kurze Zeit sowohl die Leitung des Literar. B\u00fcros als auch jene des Informationsb\u00fcros, das mit staatspolizeil. Agenden betraut war. Au\u00dferdem wurde er mit verschiedenen Inspektionsmissionen beauftragt, die ihn u.\u00a0a. nach Rom und Konstantinopel (Istanbul) f\u00fchrten. Im September 1883 wurde er zum Verbindungsmann zwischen Au\u00dfenmin. und Konsular-Akad. ernannt, die mit der Heranbildung des diplomat. Nachwuchses befasst war. T. war ab 1862 Mitgl. des Journalisten- und Schriftstellerver. \u201eConcordia\u201c (1865\u201366 Vorstandsmitgl.). 1868 Orden der Eisernen Krone III.\u00a0Kl., 1878 Kommandeur des Leopold-Ordens, 1883 Gro\u00dfkreuz des Franz Joseph-Ordens, 1879 Erhebung in den Frh.stand.\n\n", "source": 197}}, {"model": "metainfo.text", "pk": 47755, "fields": {"kind": 131, "text": "Teschenberg Ernst Maximilian Frh. von, eigentl. Kluger Frh. von T. Ernst, Journalist und Politiker. Geb. \u00d6denburg (Sopron, H), 21.\u00a05. 1836; gest. Wien, 25.\u00a02. 1886.", "source": 197}}, {"model": "metainfo.text", "pk": 47756, "fields": {"kind": 130, "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2.\u00a0Ehefrau Julia T., geb. Grabowska, Halbbruder von \u00bfWlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von \u00bfLudwig v.\u00a0T. \u2013 T. besuchte das Gymn. in Krakau (Krak\u00f3w) und stud. 1884\u201386 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889\u201393 arbeitete er als Mithrsg. der Z. \u201eKurier Polski\u201c und als Journalist der Z. \u201eTygodnik Ilustrowany\u201c, \u201eKurier Warszawski\u201c und \u201eCzas\u201c; danach war er Sekr. von Adam Krasinski und stud. mit ihm 1896 in Heidelberg. Nach 1896 lebte er in Zakopane und Krakau, ab 1918 in Warschau. T. deb\u00fct. 1886 mit lyr. Prosa und Gelegenheitsdichtung (\u201eIlla\u201c). 1888 gewann er einen Preis der Jagiellonen-Univ. f\u00fcr ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik (\u201eWiersz na uczczenie pamieci Adama Mickiewicza\u201c), und 1889 einen weiteren f\u00fcr eine Hymne auf den Schriftsteller \u00bfJ\u00f3zef Ignacy Kraszewski (\u201eNa czesc Kraszewskiego\u201c). T. galt neben \u00bfJan Kasprowicz als der popul\u00e4rste Dichter der Bewegung Junges Polen und repr\u00e4sentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtb\u00e4ndigen Ged.smlg. \u201ePoezje\u201c (1891\u20131924) erlangte er Anerkennung als bedeutender Lyriker und Autorit\u00e4t der jungpoln. Literatur. T., der sich f\u00fcr Arthur Schopenhauers und Friedrich Nietzsches Phil. begeisterte, schrieb impressionist. Natur- und Stimmungslyrik mit einer Neigung zu Pessimismus und Dekadenz, erot. Ged. und Liebeslyrik sowie Novellen und Romane mit Motiven aus dem zeitgen\u00f6ss. Leben der Boh\u00e8me. 1898 erschien der Roman \u201eAniol smierci\u201c (dt. \u201eDer Todesengel\u201c, 1899), der in dt. \u00dcbers. zuerst als Vorabdruck in der Z. \u201eAus fremden Zungen\u201c erschien, in der T. i.\u00a0d.\u00a0F. weitere Ged. ver\u00f6ff. In der f\u00fcnfb\u00e4ndigen Novellensmlg. \u201eNa skalnym Podhalu\u201c (1903\u201310, dt.sprachige Auswahl unter dem Titel \u201eAus der Tatra\u201c, 1903) verherrlichte T. Land und Leute der Hohen Tatra im Dialekt der Gegend und unter Einbeziehung tradierter Stoffe und Legenden. Bedeutend sind auch seine zwei hist. Tatra-Romane \u201eMaryna z Hrubego\u201c (1910) und \u201eJanosik Nedza Litmanowski\u201c (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. W\u00e4hrend des 1.\u00a0Weltkriegs war T. Hrsg. der Z. \u201ePraca Narodowa\u201c. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zur\u00fcckgezogen, als Dauergast im Warschauer Hotel Europejski. Von dort wurde er von den Deutschen vertrieben und starb in einem Krankenhaus. T., der 1928 den Literaturpreis der Stadt Warschau erhielt, war ab 1921 Pr\u00e4s. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literat\u00f3w Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n", "source": 198}}, {"model": "metainfo.text", "pk": 47757, "fields": {"kind": 131, "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18.\u00a01. 1940; r\u00f6m.-kath.", "source": 198}}, {"model": "metainfo.text", "pk": 47758, "fields": {"kind": 130, "text": "Sohn von \u00bfOskar Karl T. und \u00bfEmma T., Bruder von Wilhelm (genannt Willy) T.-Weckersdorf (geb. Prag, 23. 9. 1879; gest. Salzburg, Sbg., 3. 3. 1968), der sich ebenfalls um die Entwicklung des \u00f6sterr. Pfadfinderwesens verdient machte und nach dem 2. Weltkrieg als Leiter der Ind.abt. der Sbg. Landesregierung fungierte, und von Obst. Oskar (genannt Ossi) T. (geb. Prag, 21. 3. 1881; gest. Innsbruck, Tirol, 19. 4. 1943), der im Heeresmin. t\u00e4tig war und gem. mit seiner j\u00fcd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923\u20131998), Univ.-Prof. f\u00fcr Politikwiss. in Wien. \u2013 T. diente ab 1896 im 3. Tiroler J\u00e4gerrgt. \u201eKaiserj\u00e4ger\u201c, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Milit\u00e4rsachverst\u00e4ndiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des milit\u00e4r. organisierten Knabenhortverbands in der milit\u00e4r.-patriot. Jugenderziehung und -f\u00fcrsorge ein neues Bet\u00e4tigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, \u00fcbertrug er das System der Boy Scouts des engl. Begr\u00fcnders des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gr\u00fcndete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in \u00d6sterr. und die Keimzelle des von ihm initiierten \u00d6sterr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915\u201319 Reichsfeldmeister des Bundes. Aufgrund des Verm\u00f6gens seiner Frau, einer Amerikanerin, konnte \u201ePapa\u201c T. hohe Geldmittel f\u00fcr die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronl\u00e4nder vom \u00d6sterr. Pfadfinderbund wirkte T. 1918\u201320 hauptberufl. als Insp. des Verbands f\u00fcr freiwillige Jugendf\u00fcrsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendf\u00fcrsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und f\u00fcr das Rote Kreuz t\u00e4tig. Da er sich weltanschaul. mit der aufkommenden \u201eb\u00fcndischen\u201c, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zur\u00fcck, blieb aber bis 1923 Bundesfeldmeister im \u00d6sterr. Pfadfinderbund. Er unterst\u00fctzte nunmehr den religi\u00f6sen Einfluss des kath. Klerus auf die Pfadfinder-Jugendarbeit und akzeptierte den Zusammenschluss der innerhalb des Bundes bereits bestehenden kath. Pfadfinderkolonnen zum Ring der St. Georgspfadfinder; 1926 Gr\u00fcndung der kath. Jugendorganisation des \u00d6sterr. Pfadfinderkorps St. Georg, das sich relativ rasch vergr\u00f6\u00dferte. Durch die Auss\u00f6hnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei gro\u00dfe Landg\u00fcter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zur\u00fcck. 1922\u201329 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals h\u00f6chste Pfadfinderausz., den \u201eSilberwolf\u201c. Als nach dem \u201eAnschluss\u201c \u00d6sterr. alle bestehenden Jugendorganisationen aufgel\u00f6st und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in M\u00fcnchen aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die \u00f6sterr. Pfadfinder posthum 1956 ihre h\u00f6chste Ausz., den \u201eSilbernen Steinbock\u201c. T.s Bruder ", "source": 199}}, {"model": "metainfo.text", "pk": 47759, "fields": {"kind": 131, "text": "Teuber Emmerich (genannt Imre), Pfadfinderf\u00fchrer und Offizier. Geb. Prag, B\u00f6hmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; r\u00f6m.-kath.", "source": 199}}, {"model": "metainfo.text", "pk": 47764, "fields": {"kind": 130, "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn sp\u00e4ter in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. \u2013 T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher S\u00e4nger werden. Er stud. 1908\u201310 Klavier, Komposition und Orchesterdirigieren am Hoch\u2019schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm \u00bfLeopold Demuth eine Stimme \u201ewie ein Zwirnsfaden\u201c. Wegen einer Liebelei musste T. nach Freiburg im Breisgau \u00fcbersiedeln, wo er dem Gesangsp\u00e4dagogen Carl Beines begegnete, der sein gro\u00dfes Talent erkannte und ihn ausbildete. T. gab sein Operndeb\u00fct 1913 in Chemnitz als Tamino in Mozarts \u201eZauberfl\u00f6te\u201c und erhielt im selben Jahr ein Engagement an die Dresdner Hofoper, an der er bis 1918 blieb. Er wurde ein gefragter lyr. Tenor, auch da er innerhalb k\u00fcrzester Zeit Partien einzustud. vermochte (Beiname \u201eSOS-Tenor\u201c), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg \u00bfFranz Leh\u00e1r kennen, in dessen sp\u00e4ten Operetten er dann, beginnend mit \u201ePaganini\u201c (Berliner Erstauff. 1926), die m\u00e4nnl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen \u201eT.-Lieder\u201c, die als Schlager gro\u00dfe Popularit\u00e4t erlangten (\u201eDein ist mein ganzes Herz\u201c etc.). Trotz Warnungen, dass er seine Stimme f\u00fcr die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Ber\u00fchmtheit. Fr\u00fch erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der \u00d6ffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Leh\u00e1rs \u201eDas Land des L\u00e4chelns\u201c, eine Rolle, die er \u00fcber 700-mal verk\u00f6rperte. Im selben Jahr kam sein erster Film, \u201eIch glaub\u2019 nie mehr an eine Frau\u201c, in die Kinos. Die auf Dr\u00e4ngen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um gro\u00dfe Summen gebracht. Er stand weiterhin erfolgreich auf Opernb\u00fchnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im M\u00e4rz 1933 von der B\u00fchne des Berliner Admiralspalastes gebuht und auf dem Kurf\u00fcrstendamm von SA-M\u00e4nnern niedergeschlagen worden war, fl\u00fcchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schlie\u00dfl. nach Wien. Hier wurde seine Operette \u201eDer singende Traum\u201c uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in \u201eBlossom Time\u201c einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. K\u00fcnstler zum Star, der sich \u00f6ff. gegen \u00bfAdolf Hitler \u00e4u\u00dferte. Internationale Tourneen f\u00fchrten ihn nach Nord- und S\u00fcdamerika, nach S\u00fcdafrika, Asien und Australien. Nach dem \u201eAnschluss\u201c \u00d6sterr. an das Dt. Reich 1938 lebte er ausschlie\u00dfl. in England (ab 1940 engl. Staatsb\u00fcrger). Er gab Konzerte, die BBC brachte regelm\u00e4\u00dfige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette \u201eOld Chelsea\u201c. An H\u00f6chstgagen und einen aufwendigen Lebensstil gew\u00f6hnt, geriet T. im Exil jedoch in hohe Schulden. Nach Kriegsende trat er wieder international auf, hatte aber deutl. Stimmprobleme. Seinen letzten Auftritt absolv. der an Lungenkrebs Erkrankte Ende September 1947 am Royal Opera House, Covent Garden, als Don Ottavio in Mozarts \u201eDon Giovanni\u201c, wobei er besser denn je gesungen haben soll. T.s Vater ", "source": 196}}, {"model": "metainfo.text", "pk": 47765, "fields": {"kind": 131, "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, S\u00e4nger, Dirigent und Komponist. Geb. Linz (O\u00d6), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 r\u00f6m.-kath.", "source": 196}}, {"model": "metainfo.uri", "pk": 26, "fields": {"uri": "http://sws.geonames.org/3194099/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 26, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 111, "fields": {"uri": "http://sws.geonames.org/3186886/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 133, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 149, "fields": {"uri": "http://sws.geonames.org/2761369/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 183, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 258, "fields": {"uri": "http://sws.geonames.org/3078610/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 327, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 299, "fields": {"uri": "http://sws.geonames.org/3077117/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 384, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 311, "fields": {"uri": "http://sws.geonames.org/3054643/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 637, "fields": {"uri": "http://sws.geonames.org/683506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 831, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 713, "fields": {"uri": "http://sws.geonames.org/2782067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 926, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1062, "fields": {"uri": "http://sws.geonames.org/2950159/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1390, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1089, "fields": {"uri": "http://sws.geonames.org/3071961/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1424, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1112, "fields": {"uri": "http://sws.geonames.org/2781806/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1291, "fields": {"uri": "http://sws.geonames.org/2781629/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1701, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1304, "fields": {"uri": "http://sws.geonames.org/2907669/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1718, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1511, "fields": {"uri": "http://sws.geonames.org/684039/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2006, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1561, "fields": {"uri": "http://sws.geonames.org/3060972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2072, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1571, "fields": {"uri": "http://sws.geonames.org/3078577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2085, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1625, "fields": {"uri": "http://sws.geonames.org/3081368/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2161, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1631, "fields": {"uri": "http://sws.geonames.org/3181550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2170, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1651, "fields": {"uri": "http://sws.geonames.org/3074967/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2197, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1711, "fields": {"uri": "http://sws.geonames.org/711416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2281, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1856, "fields": {"uri": "http://sws.geonames.org/3435910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2489, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1939, "fields": {"uri": "http://sws.geonames.org/3181215/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2602, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2121, "fields": {"uri": "http://sws.geonames.org/710719/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2854, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2302, "fields": {"uri": "http://sws.geonames.org/3101321/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3105, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2344, "fields": {"uri": "http://sws.geonames.org/681290/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3162, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3021, "fields": {"uri": "http://sws.geonames.org/2934486/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4096, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3151, "fields": {"uri": "http://sws.geonames.org/3063762/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4269, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3518, "fields": {"uri": "http://sws.geonames.org/2778067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4767, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3599, "fields": {"uri": "http://sws.geonames.org/2779275/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4877, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3912, "fields": {"uri": "http://sws.geonames.org/677410/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5294, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3923, "fields": {"uri": "http://sws.geonames.org/2873574/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5308, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4052, "fields": {"uri": "http://sws.geonames.org/3175986/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5478, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4206, "fields": {"uri": "http://sws.geonames.org/3173577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5691, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4249, "fields": {"uri": "http://sws.geonames.org/2777972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5749, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4440, "fields": {"uri": "http://sws.geonames.org/3063197/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6004, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4676, "fields": {"uri": "http://sws.geonames.org/2910831/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6324, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4954, "fields": {"uri": "http://sws.geonames.org/2775220/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6700, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5134, "fields": {"uri": "http://sws.geonames.org/3199302/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6947, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5507, "fields": {"uri": "http://sws.geonames.org/3097333/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5631, "fields": {"uri": "http://sws.geonames.org/2772649/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7622, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5897, "fields": {"uri": "http://sws.geonames.org/2892518/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7986, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6257, "fields": {"uri": "http://sws.geonames.org/2773913/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8482, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6486, "fields": {"uri": "http://sws.geonames.org/2885679/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8798, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6838, "fields": {"uri": "http://sws.geonames.org/2773300/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9287, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6961, "fields": {"uri": "http://sws.geonames.org/3072358/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9455, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6977, "fields": {"uri": "http://sws.geonames.org/3196359/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7169, "fields": {"uri": "http://sws.geonames.org/702550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9735, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7375, "fields": {"uri": "http://sws.geonames.org/2772400/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10015, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7554, "fields": {"uri": "http://sws.geonames.org/2643743/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10265, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7936, "fields": {"uri": "http://sws.geonames.org/3195506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10793, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8262, "fields": {"uri": "http://sws.geonames.org/3064919/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11238, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8489, "fields": {"uri": "http://sws.geonames.org/3070372/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11556, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8668, "fields": {"uri": "http://sws.geonames.org/2867714/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11799, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8966, "fields": {"uri": "http://sws.geonames.org/3090436/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12211, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9363, "fields": {"uri": "http://sws.geonames.org/2990440/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12758, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9718, "fields": {"uri": "http://sws.geonames.org/3045190/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13253, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9810, "fields": {"uri": "http://sws.geonames.org/3069011/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13382, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10050, "fields": {"uri": "http://sws.geonames.org/2988507/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13714, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10247, "fields": {"uri": "http://sws.geonames.org/2854561/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13987, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10697, "fields": {"uri": "http://sws.geonames.org/3067696/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 14608, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11885, "fields": {"uri": "http://sws.geonames.org/3057304/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16242, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11932, "fields": {"uri": "http://sws.geonames.org/3167905/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16310, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12137, "fields": {"uri": "http://sws.geonames.org/3065118/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16594, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12332, "fields": {"uri": "http://sws.geonames.org/2765515/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16864, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13419, "fields": {"uri": "http://sws.geonames.org/3083848/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18374, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13438, "fields": {"uri": "http://sws.geonames.org/715429/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14028, "fields": {"uri": "http://sws.geonames.org/3165243/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19215, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14297, "fields": {"uri": "http://sws.geonames.org/3058653/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19599, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14983, "fields": {"uri": "http://sws.geonames.org/756135/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20549, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15060, "fields": {"uri": "http://sws.geonames.org/792794/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20659, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15214, "fields": {"uri": "http://sws.geonames.org/2782058/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20872, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15297, "fields": {"uri": "http://sws.geonames.org/2633767/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20988, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15896, "fields": {"uri": "http://sws.geonames.org/3064454/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 21818, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16165, "fields": {"uri": "http://sws.geonames.org/3074331/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22216, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16195, "fields": {"uri": "http://sws.geonames.org/2764112/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22259, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16238, "fields": {"uri": "http://sws.geonames.org/2762908/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22322, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16260, "fields": {"uri": "http://sws.geonames.org/2659297/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22354, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16342, "fields": {"uri": "http://sws.geonames.org/2953416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16355, "fields": {"uri": "http://sws.geonames.org/2772910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22494, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16377, "fields": {"uri": "http://sws.geonames.org/2660718/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22526, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16386, "fields": {"uri": "http://sws.geonames.org/684490/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22545, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16392, "fields": {"uri": "http://sws.geonames.org/3092742/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22558, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16398, "fields": {"uri": "http://sws.geonames.org/3164453/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22570, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19098, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24869", "domain": "apis default", "rdf_link": "", "entity": 24869, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19116, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24898", "domain": "apis default", "rdf_link": "", "entity": 24898, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19117, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24899", "domain": "apis default", "rdf_link": "", "entity": 24899, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19118, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24900", "domain": "apis default", "rdf_link": "", "entity": 24900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19123, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24908", "domain": "apis default", "rdf_link": "", "entity": 24908, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19124, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24909", "domain": "apis default", "rdf_link": "", "entity": 24909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19125, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24910", "domain": "apis default", "rdf_link": "", "entity": 24910, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19126, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24911", "domain": "apis default", "rdf_link": "", "entity": 24911, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19219, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25012", "domain": "apis default", "rdf_link": "", "entity": 25012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19232, "fields": {"uri": "http://d-nb.info/gnd/4023349-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19233, "fields": {"uri": "http://d-nb.info/gnd/4027096-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6700, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19237, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25035", "domain": "apis default", "rdf_link": "", "entity": 25035, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19242, "fields": {"uri": "http://d-nb.info/gnd/4044660-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19246, "fields": {"uri": "http://d-nb.info/gnd/4127793-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 11799, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19250, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25059", "domain": "apis default", "rdf_link": "", "entity": 25059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19251, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25060", "domain": "apis default", "rdf_link": "", "entity": 25060, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19273, "fields": {"uri": "http://d-nb.info/gnd/4008216-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19304, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25143", "domain": "apis default", "rdf_link": "", "entity": 25143, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19323, "fields": {"uri": "http://d-nb.info/gnd/4076310-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 14608, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19350, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25186", "domain": "apis default", "rdf_link": "", "entity": 25186, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19351, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25187", "domain": "apis default", "rdf_link": "", "entity": 25187, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19352, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25188", "domain": "apis default", "rdf_link": "", "entity": 25188, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19353, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25189", "domain": "apis default", "rdf_link": "", "entity": 25189, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19360, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25199", "domain": "apis default", "rdf_link": "", "entity": 25199, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19361, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25200", "domain": "apis default", "rdf_link": "", "entity": 25200, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25212", "domain": "apis default", "rdf_link": "", "entity": 25212, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25213", "domain": "apis default", "rdf_link": "", "entity": 25213, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19406, "fields": {"uri": "http://d-nb.info/gnd/4008684-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19447, "fields": {"uri": "http://d-nb.info/gnd/4038688-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 5691, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19459, "fields": {"uri": "http://d-nb.info/gnd/4265379-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1454, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19480, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25395", "domain": "apis default", "rdf_link": "", "entity": 25395, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19481, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25396", "domain": "apis default", "rdf_link": "", "entity": 25396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19482, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25397", "domain": "apis default", "rdf_link": "", "entity": 25397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19483, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25398", "domain": "apis default", "rdf_link": "", "entity": 25398, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19486, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25401", "domain": "apis default", "rdf_link": "", "entity": 25401, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19487, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25402", "domain": "apis default", "rdf_link": "", "entity": 25402, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19490, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25405", "domain": "apis default", "rdf_link": "", "entity": 25405, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19498, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25412", "domain": "apis default", "rdf_link": "", "entity": 25412, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19499, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25413", "domain": "apis default", "rdf_link": "", "entity": 25413, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19500, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25414", "domain": "apis default", "rdf_link": "", "entity": 25414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19501, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25415", "domain": "apis default", "rdf_link": "", "entity": 25415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19502, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25416", "domain": "apis default", "rdf_link": "", "entity": 25416, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19503, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25417", "domain": "apis default", "rdf_link": "", "entity": 25417, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19504, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25418", "domain": "apis default", "rdf_link": "", "entity": 25418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19505, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25419", "domain": "apis default", "rdf_link": "", "entity": 25419, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19506, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25420", "domain": "apis default", "rdf_link": "", "entity": 25420, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19507, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25421", "domain": "apis default", "rdf_link": "", "entity": 25421, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19583, "fields": {"uri": "http://d-nb.info/gnd/4021912-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25589", "domain": "apis default", "rdf_link": "", "entity": 25589, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19639, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25626", "domain": "apis default", "rdf_link": "", "entity": 25626, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19640, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25627", "domain": "apis default", "rdf_link": "", "entity": 25627, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19641, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25628", "domain": "apis default", "rdf_link": "", "entity": 25628, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19642, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25629", "domain": "apis default", "rdf_link": "", "entity": 25629, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19643, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25630", "domain": "apis default", "rdf_link": "", "entity": 25630, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19644, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25631", "domain": "apis default", "rdf_link": "", "entity": 25631, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19645, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25632", "domain": "apis default", "rdf_link": "", "entity": 25632, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19646, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25633", "domain": "apis default", "rdf_link": "", "entity": 25633, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19647, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25634", "domain": "apis default", "rdf_link": "", "entity": 25634, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19648, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25635", "domain": "apis default", "rdf_link": "", "entity": 25635, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19665, "fields": {"uri": "http://d-nb.info/gnd/4075643-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13382, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19718, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25767", "domain": "apis default", "rdf_link": "", "entity": 25767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19719, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25768", "domain": "apis default", "rdf_link": "", "entity": 25768, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19720, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25769", "domain": "apis default", "rdf_link": "", "entity": 25769, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19721, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25770", "domain": "apis default", "rdf_link": "", "entity": 25770, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19722, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25771", "domain": "apis default", "rdf_link": "", "entity": 25771, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19723, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25772", "domain": "apis default", "rdf_link": "", "entity": 25772, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19724, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25773", "domain": "apis default", "rdf_link": "", "entity": 25773, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 20488, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/27245", "domain": "apis default", "rdf_link": "", "entity": 27245, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 32623, "fields": {"uri": "http://d-nb.info/gnd/118931482", "domain": "", "rdf_link": "", "entity": 46414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 39250, "fields": {"uri": "http://d-nb.info/gnd/118785028", "domain": "", "rdf_link": "", "entity": 56248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 43650, "fields": {"uri": "http://d-nb.info/gnd/118573527", "domain": "", "rdf_link": "", "entity": 62757, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60547, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/88219", "domain": "apis default", "rdf_link": "", "entity": 88219, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60980, "fields": {"uri": "http://d-nb.info/gnd/118508288", "domain": "", "rdf_link": "", "entity": 88902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 62984, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/92412", "domain": "apis default", "rdf_link": "", "entity": 92412, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63085, "fields": {"uri": "http://d-nb.info/gnd/118677667", "domain": "", "rdf_link": "", "entity": 92603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63174, "fields": {"uri": "http://d-nb.info/gnd/118505955", "domain": "", "rdf_link": "", "entity": 93003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63178, "fields": {"uri": "http://d-nb.info/gnd/119061201", "domain": "", "rdf_link": "", "entity": 93009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63180, "fields": {"uri": "http://d-nb.info/gnd/128578998", "domain": "", "rdf_link": "", "entity": 93012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63182, "fields": {"uri": "http://d-nb.info/gnd/143930567", "domain": "", "rdf_link": "", "entity": 93015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63184, "fields": {"uri": "http://d-nb.info/gnd/136186289", "domain": "", "rdf_link": "", "entity": 93018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63186, "fields": {"uri": "http://d-nb.info/gnd/136186343", "domain": "", "rdf_link": "", "entity": 93021, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63188, "fields": {"uri": "http://d-nb.info/gnd/140067302", "domain": "", "rdf_link": "", "entity": 93024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63189, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93025", "domain": "apis default", "rdf_link": "", "entity": 93025, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63191, "fields": {"uri": "http://d-nb.info/gnd/116539585", "domain": "", "rdf_link": "", "entity": 93028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63193, "fields": {"uri": "http://d-nb.info/gnd/11666827X", "domain": "", "rdf_link": "", "entity": 93031, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63195, "fields": {"uri": "http://d-nb.info/gnd/116689234", "domain": "", "rdf_link": "", "entity": 93034, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63196, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93035", "domain": "apis default", "rdf_link": "", "entity": 93035, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63202, "fields": {"uri": "http://d-nb.info/gnd/130579122", "domain": "", "rdf_link": "", "entity": 93044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63204, "fields": {"uri": "http://d-nb.info/gnd/143681761", "domain": "", "rdf_link": "", "entity": 93047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63206, "fields": {"uri": "http://d-nb.info/gnd/117649953", "domain": "", "rdf_link": "", "entity": 93050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63207, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93051", "domain": "apis default", "rdf_link": "", "entity": 93051, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63210, "fields": {"uri": "http://d-nb.info/gnd/130132098", "domain": "", "rdf_link": "", "entity": 93056, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63212, "fields": {"uri": "http://d-nb.info/gnd/143053272", "domain": "", "rdf_link": "", "entity": 93059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63213, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93060", "domain": "apis default", "rdf_link": "", "entity": 93060, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63216, "fields": {"uri": "http://d-nb.info/gnd/118817418", "domain": "", "rdf_link": "", "entity": 93065, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63218, "fields": {"uri": "http://d-nb.info/gnd/135697719", "domain": "", "rdf_link": "", "entity": 93068, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63220, "fields": {"uri": "http://d-nb.info/gnd/118524283", "domain": "", "rdf_link": "", "entity": 93071, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63222, "fields": {"uri": "http://d-nb.info/gnd/116070935", "domain": "", "rdf_link": "", "entity": 93074, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63223, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93075", "domain": "apis default", "rdf_link": "", "entity": 93075, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63261, "fields": {"uri": "http://d-nb.info/gnd/1012030806", "domain": "", "rdf_link": "", "entity": 93136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63385, "fields": {"uri": "http://d-nb.info/gnd/117736791", "domain": "", "rdf_link": "", "entity": 93328, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63391, "fields": {"uri": "http://d-nb.info/gnd/1019267925", "domain": "", "rdf_link": "", "entity": 93337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63401, "fields": {"uri": "http://d-nb.info/gnd/136782086", "domain": "", "rdf_link": "", "entity": 93352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63411, "fields": {"uri": "http://d-nb.info/gnd/1018979573", "domain": "", "rdf_link": "", "entity": 93366, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63413, "fields": {"uri": "http://d-nb.info/gnd/1019359811", "domain": "", "rdf_link": "", "entity": 93369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63419, "fields": {"uri": "http://d-nb.info/gnd/117634816", "domain": "", "rdf_link": "", "entity": 93378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63420, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93379", "domain": "apis default", "rdf_link": "", "entity": 93379, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63425, "fields": {"uri": "http://d-nb.info/gnd/116907525", "domain": "", "rdf_link": "", "entity": 93387, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63429, "fields": {"uri": "http://d-nb.info/gnd/116856246", "domain": "", "rdf_link": "", "entity": 93393, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63431, "fields": {"uri": "http://d-nb.info/gnd/119334429", "domain": "", "rdf_link": "", "entity": 93396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63432, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93397", "domain": "apis default", "rdf_link": "", "entity": 93397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63434, "fields": {"uri": "http://d-nb.info/gnd/118806025", "domain": "", "rdf_link": "", "entity": 93400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63440, "fields": {"uri": "http://d-nb.info/gnd/1018666664", "domain": "", "rdf_link": "", "entity": 93409, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63441, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93410", "domain": "apis default", "rdf_link": "", "entity": 93410, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63444, "fields": {"uri": "http://d-nb.info/gnd/1014451833", "domain": "", "rdf_link": "", "entity": 93415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63446, "fields": {"uri": "http://d-nb.info/gnd/117612308", "domain": "", "rdf_link": "", "entity": 93418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63462, "fields": {"uri": "http://d-nb.info/gnd/118813919", "domain": "", "rdf_link": "", "entity": 93442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63464, "fields": {"uri": "http://d-nb.info/gnd/1023121581", "domain": "", "rdf_link": "", "entity": 93445, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63466, "fields": {"uri": "http://d-nb.info/gnd/119065932", "domain": "", "rdf_link": "", "entity": 93448, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63467, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93449", "domain": "apis default", "rdf_link": "", "entity": 93449, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63480, "fields": {"uri": "http://d-nb.info/gnd/1021208493", "domain": "", "rdf_link": "", "entity": 93469, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63488, "fields": {"uri": "http://d-nb.info/gnd/137341768", "domain": "", "rdf_link": "", "entity": 93481, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63490, "fields": {"uri": "http://d-nb.info/gnd/1020698381", "domain": "", "rdf_link": "", "entity": 93484, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63492, "fields": {"uri": "http://d-nb.info/gnd/1020698055", "domain": "", "rdf_link": "", "entity": 93487, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63508, "fields": {"uri": "http://d-nb.info/gnd/118732277", "domain": "", "rdf_link": "", "entity": 93510, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63510, "fields": {"uri": "http://d-nb.info/gnd/10788464X", "domain": "", "rdf_link": "", "entity": 93513, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63512, "fields": {"uri": "http://d-nb.info/gnd/134474937", "domain": "", "rdf_link": "", "entity": 93516, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63528, "fields": {"uri": "http://d-nb.info/gnd/13185545X", "domain": "", "rdf_link": "", "entity": 93540, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63532, "fields": {"uri": "http://d-nb.info/gnd/1024716082", "domain": "", "rdf_link": "", "entity": 93546, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63542, "fields": {"uri": "http://d-nb.info/gnd/1026382211", "domain": "", "rdf_link": "", "entity": 93561, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63543, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93562", "domain": "apis default", "rdf_link": "", "entity": 93562, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63550, "fields": {"uri": "http://d-nb.info/gnd/102588485X", "domain": "", "rdf_link": "", "entity": 93573, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63560, "fields": {"uri": "http://d-nb.info/gnd/130027022", "domain": "", "rdf_link": "", "entity": 93588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63568, "fields": {"uri": "http://d-nb.info/gnd/117687030", "domain": "", "rdf_link": "", "entity": 93600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63574, "fields": {"uri": "http://d-nb.info/gnd/122897897", "domain": "", "rdf_link": "", "entity": 93609, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63575, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93610", "domain": "apis default", "rdf_link": "", "entity": 93610, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63578, "fields": {"uri": "http://d-nb.info/gnd/139593128", "domain": "", "rdf_link": "", "entity": 93615, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63594, "fields": {"uri": "http://d-nb.info/gnd/139112200", "domain": "", "rdf_link": "", "entity": 93639, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63596, "fields": {"uri": "http://d-nb.info/gnd/130427012", "domain": "", "rdf_link": "", "entity": 93642, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63598, "fields": {"uri": "http://d-nb.info/gnd/117522139", "domain": "", "rdf_link": "", "entity": 93645, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63602, "fields": {"uri": "http://d-nb.info/gnd/1027427839", "domain": "", "rdf_link": "", "entity": 93651, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63604, "fields": {"uri": "http://d-nb.info/gnd/127691979", "domain": "", "rdf_link": "", "entity": 93654, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63605, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93657", "domain": "apis default", "rdf_link": "", "entity": 93657, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63606, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93658", "domain": "apis default", "rdf_link": "", "entity": 93658, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63608, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93663", "domain": "apis default", "rdf_link": "", "entity": 93663, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63613, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93678", "domain": "apis default", "rdf_link": "", "entity": 93678, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93684", "domain": "apis default", "rdf_link": "", "entity": 93684, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63627, "fields": {"uri": "http://d-nb.info/gnd/123215374", "domain": "", "rdf_link": "", "entity": 93702, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63629, "fields": {"uri": "http://d-nb.info/gnd/12899620X", "domain": "", "rdf_link": "", "entity": 93705, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63635, "fields": {"uri": "http://d-nb.info/gnd/1035683431", "domain": "", "rdf_link": "", "entity": 93714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63636, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93715", "domain": "apis default", "rdf_link": "", "entity": 93715, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63657, "fields": {"uri": "http://d-nb.info/gnd/1034850962", "domain": "", "rdf_link": "", "entity": 93748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63658, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93749", "domain": "apis default", "rdf_link": "", "entity": 93749, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63678, "fields": {"uri": "http://d-nb.info/gnd/135612411", "domain": "", "rdf_link": "", "entity": 93779, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63682, "fields": {"uri": "http://d-nb.info/gnd/1033824674", "domain": "", "rdf_link": "", "entity": 93785, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63686, "fields": {"uri": "http://d-nb.info/gnd/133833348", "domain": "", "rdf_link": "", "entity": 93791, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63692, "fields": {"uri": "http://d-nb.info/gnd/103334690X", "domain": "", "rdf_link": "", "entity": 93800, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63694, "fields": {"uri": "http://d-nb.info/gnd/128900059", "domain": "", "rdf_link": "", "entity": 93803, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63695, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93804", "domain": "apis default", "rdf_link": "", "entity": 93804, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63698, "fields": {"uri": "http://d-nb.info/gnd/1033469084", "domain": "", "rdf_link": "", "entity": 93809, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63702, "fields": {"uri": "http://d-nb.info/gnd/117409669", "domain": "", "rdf_link": "", "entity": 93815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63704, "fields": {"uri": "http://d-nb.info/gnd/1033342483", "domain": "", "rdf_link": "", "entity": 93818, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63716, "fields": {"uri": "http://d-nb.info/gnd/134516001", "domain": "", "rdf_link": "", "entity": 93836, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63718, "fields": {"uri": "http://d-nb.info/gnd/1019536594", "domain": "", "rdf_link": "", "entity": 93839, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63728, "fields": {"uri": "http://d-nb.info/gnd/103283160X", "domain": "", "rdf_link": "", "entity": 93854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63729, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93855", "domain": "apis default", "rdf_link": "", "entity": 93855, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63734, "fields": {"uri": "http://d-nb.info/gnd/103223718X", "domain": "", "rdf_link": "", "entity": 93863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63736, "fields": {"uri": "http://d-nb.info/gnd/118610643", "domain": "", "rdf_link": "", "entity": 93866, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63744, "fields": {"uri": "http://d-nb.info/gnd/1032220473", "domain": "", "rdf_link": "", "entity": 93878, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63745, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93879", "domain": "apis default", "rdf_link": "", "entity": 93879, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63753, "fields": {"uri": "http://d-nb.info/gnd/1031937358", "domain": "", "rdf_link": "", "entity": 93891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63755, "fields": {"uri": "http://d-nb.info/gnd/1031946101", "domain": "", "rdf_link": "", "entity": 93894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63759, "fields": {"uri": "http://d-nb.info/gnd/116848693", "domain": "", "rdf_link": "", "entity": 93900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63761, "fields": {"uri": "http://d-nb.info/gnd/103169420X", "domain": "", "rdf_link": "", "entity": 93903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63765, "fields": {"uri": "http://d-nb.info/gnd/137648588", "domain": "", "rdf_link": "", "entity": 93909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63773, "fields": {"uri": "http://d-nb.info/gnd/116816961", "domain": "", "rdf_link": "", "entity": 93921, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63781, "fields": {"uri": "http://d-nb.info/gnd/118759671", "domain": "", "rdf_link": "", "entity": 93933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63782, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93934", "domain": "apis default", "rdf_link": "", "entity": 93934, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63784, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93937", "domain": "apis default", "rdf_link": "", "entity": 93937, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63786, "fields": {"uri": "http://d-nb.info/gnd/103056423X", "domain": "", "rdf_link": "", "entity": 93940, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63790, "fields": {"uri": "http://d-nb.info/gnd/1030283044", "domain": "", "rdf_link": "", "entity": 93946, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63796, "fields": {"uri": "http://d-nb.info/gnd/1031146539", "domain": "", "rdf_link": "", "entity": 93955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63798, "fields": {"uri": "http://d-nb.info/gnd/139576126", "domain": "", "rdf_link": "", "entity": 93958, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63800, "fields": {"uri": "http://d-nb.info/gnd/129263761", "domain": "", "rdf_link": "", "entity": 93961, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63802, "fields": {"uri": "http://d-nb.info/gnd/121246736", "domain": "", "rdf_link": "", "entity": 93964, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63804, "fields": {"uri": "http://d-nb.info/gnd/1029738556", "domain": "", "rdf_link": "", "entity": 93967, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63806, "fields": {"uri": "http://d-nb.info/gnd/1029748209", "domain": "", "rdf_link": "", "entity": 93970, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63815, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93988", "domain": "apis default", "rdf_link": "", "entity": 93988, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63816, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93991", "domain": "apis default", "rdf_link": "", "entity": 93991, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63821, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94003", "domain": "apis default", "rdf_link": "", "entity": 94003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63822, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94006", "domain": "apis default", "rdf_link": "", "entity": 94006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63823, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94009", "domain": "apis default", "rdf_link": "", "entity": 94009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63826, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94018", "domain": "apis default", "rdf_link": "", "entity": 94018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63865, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94102", "domain": "apis default", "rdf_link": "", "entity": 94102, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63866, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94103", "domain": "apis default", "rdf_link": "", "entity": 94103, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63867, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94104", "domain": "apis default", "rdf_link": "", "entity": 94104, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63868, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94105", "domain": "apis default", "rdf_link": "", "entity": 94105, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63888, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94120", "domain": "apis default", "rdf_link": "", "entity": 94120, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63889, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94121", "domain": "apis default", "rdf_link": "", "entity": 94121, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63890, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94122", "domain": "apis default", "rdf_link": "", "entity": 94122, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63891, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94123", "domain": "apis default", "rdf_link": "", "entity": 94123, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63892, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94124", "domain": "apis default", "rdf_link": "", "entity": 94124, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63893, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94125", "domain": "apis default", "rdf_link": "", "entity": 94125, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63894, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94126", "domain": "apis default", "rdf_link": "", "entity": 94126, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63895, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94127", "domain": "apis default", "rdf_link": "", "entity": 94127, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63896, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94128", "domain": "apis default", "rdf_link": "", "entity": 94128, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63897, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94129", "domain": "apis default", "rdf_link": "", "entity": 94129, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63900, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94131", "domain": "apis default", "rdf_link": "", "entity": 94131, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63901, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94132", "domain": "apis default", "rdf_link": "", "entity": 94132, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63902, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94133", "domain": "apis default", "rdf_link": "", "entity": 94133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63903, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94134", "domain": "apis default", "rdf_link": "", "entity": 94134, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63904, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94135", "domain": "apis default", "rdf_link": "", "entity": 94135, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63905, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94136", "domain": "apis default", "rdf_link": "", "entity": 94136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63906, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94137", "domain": "apis default", "rdf_link": "", "entity": 94137, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94138", "domain": "apis default", "rdf_link": "", "entity": 94138, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63908, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94139", "domain": "apis default", "rdf_link": "", "entity": 94139, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63909, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94140", "domain": "apis default", "rdf_link": "", "entity": 94140, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63910, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94141", "domain": "apis default", "rdf_link": "", "entity": 94141, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63956, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94247", "domain": "apis default", "rdf_link": "", "entity": 94247, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63957, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94248", "domain": "apis default", "rdf_link": "", "entity": 94248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63958, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94249", "domain": "apis default", "rdf_link": "", "entity": 94249, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63959, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94250", "domain": "apis default", "rdf_link": "", "entity": 94250, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63960, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94251", "domain": "apis default", "rdf_link": "", "entity": 94251, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63999, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94307", "domain": "apis default", "rdf_link": "", "entity": 94307, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64000, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94308", "domain": "apis default", "rdf_link": "", "entity": 94308, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64001, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94309", "domain": "apis default", "rdf_link": "", "entity": 94309, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64002, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94310", "domain": "apis default", "rdf_link": "", "entity": 94310, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64003, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94311", "domain": "apis default", "rdf_link": "", "entity": 94311, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64004, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94312", "domain": "apis default", "rdf_link": "", "entity": 94312, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64005, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94313", "domain": "apis default", "rdf_link": "", "entity": 94313, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64006, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94314", "domain": "apis default", "rdf_link": "", "entity": 94314, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64007, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94315", "domain": "apis default", "rdf_link": "", "entity": 94315, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94323", "domain": "apis default", "rdf_link": "", "entity": 94323, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64013, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94324", "domain": "apis default", "rdf_link": "", "entity": 94324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64030, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94351", "domain": "apis default", "rdf_link": "", "entity": 94351, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64031, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94352", "domain": "apis default", "rdf_link": "", "entity": 94352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64032, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94353", "domain": "apis default", "rdf_link": "", "entity": 94353, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64033, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94354", "domain": "apis default", "rdf_link": "", "entity": 94354, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64034, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94355", "domain": "apis default", "rdf_link": "", "entity": 94355, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64035, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94356", "domain": "apis default", "rdf_link": "", "entity": 94356, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64036, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94357", "domain": "apis default", "rdf_link": "", "entity": 94357, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64037, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94358", "domain": "apis default", "rdf_link": "", "entity": 94358, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64038, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94359", "domain": "apis default", "rdf_link": "", "entity": 94359, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64039, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94360", "domain": "apis default", "rdf_link": "", "entity": 94360, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64040, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94361", "domain": "apis default", "rdf_link": "", "entity": 94361, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64041, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94362", "domain": "apis default", "rdf_link": "", "entity": 94362, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64084, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94433", "domain": "apis default", "rdf_link": "", "entity": 94433, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64085, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94434", "domain": "apis default", "rdf_link": "", "entity": 94434, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64086, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94435", "domain": "apis default", "rdf_link": "", "entity": 94435, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64087, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94436", "domain": "apis default", "rdf_link": "", "entity": 94436, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64088, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94437", "domain": "apis default", "rdf_link": "", "entity": 94437, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64089, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94438", "domain": "apis default", "rdf_link": "", "entity": 94438, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64090, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94439", "domain": "apis default", "rdf_link": "", "entity": 94439, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64091, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94440", "domain": "apis default", "rdf_link": "", "entity": 94440, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64092, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94441", "domain": "apis default", "rdf_link": "", "entity": 94441, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64093, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94442", "domain": "apis default", "rdf_link": "", "entity": 94442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64139, "fields": {"uri": "http://d-nb.info/gnd/4074335-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10265, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64175, "fields": {"uri": "http://d-nb.info/gnd/4035304-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64185, "fields": {"uri": "http://d-nb.info/gnd/4108914-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64201, "fields": {"uri": "http://d-nb.info/gnd/4008858-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64255, "fields": {"uri": "http://d-nb.info/gnd/4010833-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64261, "fields": {"uri": "http://d-nb.info/gnd/4073953-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9475, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64271, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94822", "domain": "apis default", "rdf_link": "", "entity": 94822, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64272, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94823", "domain": "apis default", "rdf_link": "", "entity": 94823, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64273, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94824", "domain": "apis default", "rdf_link": "", "entity": 94824, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64274, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94825", "domain": "apis default", "rdf_link": "", "entity": 94825, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64275, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94826", "domain": "apis default", "rdf_link": "", "entity": 94826, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64276, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94827", "domain": "apis default", "rdf_link": "", "entity": 94827, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64277, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94828", "domain": "apis default", "rdf_link": "", "entity": 94828, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64278, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94829", "domain": "apis default", "rdf_link": "", "entity": 94829, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64279, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94830", "domain": "apis default", "rdf_link": "", "entity": 94830, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64280, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94831", "domain": "apis default", "rdf_link": "", "entity": 94831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64318, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94885", "domain": "apis default", "rdf_link": "", "entity": 94885, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64319, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94886", "domain": "apis default", "rdf_link": "", "entity": 94886, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64320, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94887", "domain": "apis default", "rdf_link": "", "entity": 94887, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64321, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94888", "domain": "apis default", "rdf_link": "", "entity": 94888, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64322, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94889", "domain": "apis default", "rdf_link": "", "entity": 94889, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64323, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94890", "domain": "apis default", "rdf_link": "", "entity": 94890, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64324, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94891", "domain": "apis default", "rdf_link": "", "entity": 94891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64325, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94892", "domain": "apis default", "rdf_link": "", "entity": 94892, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64326, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94893", "domain": "apis default", "rdf_link": "", "entity": 94893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64327, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94894", "domain": "apis default", "rdf_link": "", "entity": 94894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64328, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94895", "domain": "apis default", "rdf_link": "", "entity": 94895, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64329, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94896", "domain": "apis default", "rdf_link": "", "entity": 94896, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64330, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94897", "domain": "apis default", "rdf_link": "", "entity": 94897, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64331, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94898", "domain": "apis default", "rdf_link": "", "entity": 94898, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64332, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94899", "domain": "apis default", "rdf_link": "", "entity": 94899, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64333, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94900", "domain": "apis default", "rdf_link": "", "entity": 94900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64334, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94901", "domain": "apis default", "rdf_link": "", "entity": 94901, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64335, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94902", "domain": "apis default", "rdf_link": "", "entity": 94902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64336, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94903", "domain": "apis default", "rdf_link": "", "entity": 94903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64337, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94904", "domain": "apis default", "rdf_link": "", "entity": 94904, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64387, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95024", "domain": "apis default", "rdf_link": "", "entity": 95024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64388, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95025", "domain": "apis default", "rdf_link": "", "entity": 95025, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64389, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95026", "domain": "apis default", "rdf_link": "", "entity": 95026, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64390, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95027", "domain": "apis default", "rdf_link": "", "entity": 95027, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64391, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95028", "domain": "apis default", "rdf_link": "", "entity": 95028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64392, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95029", "domain": "apis default", "rdf_link": "", "entity": 95029, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64393, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95030", "domain": "apis default", "rdf_link": "", "entity": 95030, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64401, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95043", "domain": "apis default", "rdf_link": "", "entity": 95043, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64402, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95044", "domain": "apis default", "rdf_link": "", "entity": 95044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64403, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95045", "domain": "apis default", "rdf_link": "", "entity": 95045, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64404, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95046", "domain": "apis default", "rdf_link": "", "entity": 95046, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64405, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95047", "domain": "apis default", "rdf_link": "", "entity": 95047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64406, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95048", "domain": "apis default", "rdf_link": "", "entity": 95048, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64407, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95049", "domain": "apis default", "rdf_link": "", "entity": 95049, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64408, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95050", "domain": "apis default", "rdf_link": "", "entity": 95050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64409, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95051", "domain": "apis default", "rdf_link": "", "entity": 95051, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64410, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95052", "domain": "apis default", "rdf_link": "", "entity": 95052, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64411, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95053", "domain": "apis default", "rdf_link": "", "entity": 95053, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64412, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95054", "domain": "apis default", "rdf_link": "", "entity": 95054, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64443, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95123", "domain": "apis default", "rdf_link": "", "entity": 95123, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64444, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95124", "domain": "apis default", "rdf_link": "", "entity": 95124, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64445, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95125", "domain": "apis default", "rdf_link": "", "entity": 95125, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64446, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95126", "domain": "apis default", "rdf_link": "", "entity": 95126, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64447, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95127", "domain": "apis default", "rdf_link": "", "entity": 95127, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64448, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95128", "domain": "apis default", "rdf_link": "", "entity": 95128, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64449, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95129", "domain": "apis default", "rdf_link": "", "entity": 95129, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64450, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95130", "domain": "apis default", "rdf_link": "", "entity": 95130, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64451, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95131", "domain": "apis default", "rdf_link": "", "entity": 95131, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64463, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95156", "domain": "apis default", "rdf_link": "", "entity": 95156, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64464, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95157", "domain": "apis default", "rdf_link": "", "entity": 95157, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64465, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95158", "domain": "apis default", "rdf_link": "", "entity": 95158, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64466, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95159", "domain": "apis default", "rdf_link": "", "entity": 95159, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64467, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95160", "domain": "apis default", "rdf_link": "", "entity": 95160, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64468, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95161", "domain": "apis default", "rdf_link": "", "entity": 95161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64469, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95162", "domain": "apis default", "rdf_link": "", "entity": 95162, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64470, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95163", "domain": "apis default", "rdf_link": "", "entity": 95163, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64471, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95164", "domain": "apis default", "rdf_link": "", "entity": 95164, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64591, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95397", "domain": "apis default", "rdf_link": "", "entity": 95397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64592, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95398", "domain": "apis default", "rdf_link": "", "entity": 95398, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64593, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95399", "domain": "apis default", "rdf_link": "", "entity": 95399, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64594, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95400", "domain": "apis default", "rdf_link": "", "entity": 95400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64595, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95401", "domain": "apis default", "rdf_link": "", "entity": 95401, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64596, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95402", "domain": "apis default", "rdf_link": "", "entity": 95402, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64597, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95403", "domain": "apis default", "rdf_link": "", "entity": 95403, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64598, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95404", "domain": "apis default", "rdf_link": "", "entity": 95404, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64599, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95405", "domain": "apis default", "rdf_link": "", "entity": 95405, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64600, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95406", "domain": "apis default", "rdf_link": "", "entity": 95406, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64601, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95407", "domain": "apis default", "rdf_link": "", "entity": 95407, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64625, "fields": {"uri": "http://d-nb.info/gnd/4075578-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13253, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64656, "fields": {"uri": "http://d-nb.info/gnd/4079048-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 20549, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64696, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95582", "domain": "apis default", "rdf_link": "", "entity": 95582, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64697, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95583", "domain": "apis default", "rdf_link": "", "entity": 95583, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64698, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95584", "domain": "apis default", "rdf_link": "", "entity": 95584, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64704, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95596", "domain": "apis default", "rdf_link": "", "entity": 95596, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64705, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95597", "domain": "apis default", "rdf_link": "", "entity": 95597, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64706, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95598", "domain": "apis default", "rdf_link": "", "entity": 95598, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64707, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95599", "domain": "apis default", "rdf_link": "", "entity": 95599, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64708, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95600", "domain": "apis default", "rdf_link": "", "entity": 95600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64709, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95601", "domain": "apis default", "rdf_link": "", "entity": 95601, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64710, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95602", "domain": "apis default", "rdf_link": "", "entity": 95602, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64711, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95603", "domain": "apis default", "rdf_link": "", "entity": 95603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64712, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95604", "domain": "apis default", "rdf_link": "", "entity": 95604, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64762, "fields": {"uri": "http://d-nb.info/gnd/4008456-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 327, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64854, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95847", "domain": "apis default", "rdf_link": "", "entity": 95847, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64855, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95848", "domain": "apis default", "rdf_link": "", "entity": 95848, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64867, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95867", "domain": "apis default", "rdf_link": "", "entity": 95867, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64868, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95868", "domain": "apis default", "rdf_link": "", "entity": 95868, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64869, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95869", "domain": "apis default", "rdf_link": "", "entity": 95869, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64870, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95870", "domain": "apis default", "rdf_link": "", "entity": 95870, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64871, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95871", "domain": "apis default", "rdf_link": "", "entity": 95871, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64872, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95872", "domain": "apis default", "rdf_link": "", "entity": 95872, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64873, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95873", "domain": "apis default", "rdf_link": "", "entity": 95873, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64874, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95874", "domain": "apis default", "rdf_link": "", "entity": 95874, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64875, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95875", "domain": "apis default", "rdf_link": "", "entity": 95875, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64876, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95876", "domain": "apis default", "rdf_link": "", "entity": 95876, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64888, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95893", "domain": "apis default", "rdf_link": "", "entity": 95893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64904, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95929", "domain": "apis default", "rdf_link": "", "entity": 95929, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64905, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95930", "domain": "apis default", "rdf_link": "", "entity": 95930, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64906, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95931", "domain": "apis default", "rdf_link": "", "entity": 95931, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95932", "domain": "apis default", "rdf_link": "", "entity": 95932, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64920, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95949", "domain": "apis default", "rdf_link": "", "entity": 95949, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64921, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95950", "domain": "apis default", "rdf_link": "", "entity": 95950, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64922, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95951", "domain": "apis default", "rdf_link": "", "entity": 95951, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64923, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95952", "domain": "apis default", "rdf_link": "", "entity": 95952, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64924, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95953", "domain": "apis default", "rdf_link": "", "entity": 95953, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64925, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95954", "domain": "apis default", "rdf_link": "", "entity": 95954, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64926, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95955", "domain": "apis default", "rdf_link": "", "entity": 95955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64927, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95956", "domain": "apis default", "rdf_link": "", "entity": 95956, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64928, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95957", "domain": "apis default", "rdf_link": "", "entity": 95957, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64958, "fields": {"uri": "http://d-nb.info/gnd/4106475-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 18400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64961, "fields": {"uri": "http://d-nb.info/gnd/4074255-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65015, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96143", "domain": "apis default", "rdf_link": "", "entity": 96143, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65016, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96144", "domain": "apis default", "rdf_link": "", "entity": 96144, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65017, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96145", "domain": "apis default", "rdf_link": "", "entity": 96145, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65018, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96146", "domain": "apis default", "rdf_link": "", "entity": 96146, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65047, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96208", "domain": "apis default", "rdf_link": "", "entity": 96208, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65048, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96209", "domain": "apis default", "rdf_link": "", "entity": 96209, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65049, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96210", "domain": "apis default", "rdf_link": "", "entity": 96210, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65050, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96211", "domain": "apis default", "rdf_link": "", "entity": 96211, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65059, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96221", "domain": "apis default", "rdf_link": "", "entity": 96221, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65060, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96222", "domain": "apis default", "rdf_link": "", "entity": 96222, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65061, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96223", "domain": "apis default", "rdf_link": "", "entity": 96223, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65062, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96224", "domain": "apis default", "rdf_link": "", "entity": 96224, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65063, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96225", "domain": "apis default", "rdf_link": "", "entity": 96225, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65064, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96226", "domain": "apis default", "rdf_link": "", "entity": 96226, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65176, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96458", "domain": "apis default", "rdf_link": "", "entity": 96458, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65177, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96459", "domain": "apis default", "rdf_link": "", "entity": 96459, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65178, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96460", "domain": "apis default", "rdf_link": "", "entity": 96460, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65179, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96461", "domain": "apis default", "rdf_link": "", "entity": 96461, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65180, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96462", "domain": "apis default", "rdf_link": "", "entity": 96462, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65181, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96463", "domain": "apis default", "rdf_link": "", "entity": 96463, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65182, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96464", "domain": "apis default", "rdf_link": "", "entity": 96464, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65183, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96465", "domain": "apis default", "rdf_link": "", "entity": 96465, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65184, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96466", "domain": "apis default", "rdf_link": "", "entity": 96466, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65185, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96467", "domain": "apis default", "rdf_link": "", "entity": 96467, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65200, "fields": {"uri": "http://d-nb.info/gnd/4033488-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9287, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65253, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96620", "domain": "apis default", "rdf_link": "", "entity": 96620, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65254, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96621", "domain": "apis default", "rdf_link": "", "entity": 96621, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65255, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96622", "domain": "apis default", "rdf_link": "", "entity": 96622, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65256, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96623", "domain": "apis default", "rdf_link": "", "entity": 96623, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65292, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96728", "domain": "apis default", "rdf_link": "", "entity": 96728, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65293, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96729", "domain": "apis default", "rdf_link": "", "entity": 96729, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65294, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96730", "domain": "apis default", "rdf_link": "", "entity": 96730, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65295, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96731", "domain": "apis default", "rdf_link": "", "entity": 96731, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65296, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96732", "domain": "apis default", "rdf_link": "", "entity": 96732, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65297, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96733", "domain": "apis default", "rdf_link": "", "entity": 96733, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65298, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96734", "domain": "apis default", "rdf_link": "", "entity": 96734, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65299, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96735", "domain": "apis default", "rdf_link": "", "entity": 96735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65300, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96736", "domain": "apis default", "rdf_link": "", "entity": 96736, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65301, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96737", "domain": "apis default", "rdf_link": "", "entity": 96737, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65302, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96738", "domain": "apis default", "rdf_link": "", "entity": 96738, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65305, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96740", "domain": "apis default", "rdf_link": "", "entity": 96740, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65306, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96741", "domain": "apis default", "rdf_link": "", "entity": 96741, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65307, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96742", "domain": "apis default", "rdf_link": "", "entity": 96742, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65308, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96743", "domain": "apis default", "rdf_link": "", "entity": 96743, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65309, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96744", "domain": "apis default", "rdf_link": "", "entity": 96744, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65310, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96745", "domain": "apis default", "rdf_link": "", "entity": 96745, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65311, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96746", "domain": "apis default", "rdf_link": "", "entity": 96746, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65312, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96747", "domain": "apis default", "rdf_link": "", "entity": 96747, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65313, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96748", "domain": "apis default", "rdf_link": "", "entity": 96748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65314, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96749", "domain": "apis default", "rdf_link": "", "entity": 96749, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65315, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96750", "domain": "apis default", "rdf_link": "", "entity": 96750, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65320, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96758", "domain": "apis default", "rdf_link": "", "entity": 96758, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65321, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96759", "domain": "apis default", "rdf_link": "", "entity": 96759, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65351, "fields": {"uri": "http://d-nb.info/gnd/4013237-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65353, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96813", "domain": "apis default", "rdf_link": "", "entity": 96813, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65354, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96814", "domain": "apis default", "rdf_link": "", "entity": 96814, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65355, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96815", "domain": "apis default", "rdf_link": "", "entity": 96815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65356, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96816", "domain": "apis default", "rdf_link": "", "entity": 96816, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65357, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96817", "domain": "apis default", "rdf_link": "", "entity": 96817, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96858", "domain": "apis default", "rdf_link": "", "entity": 96858, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96859", "domain": "apis default", "rdf_link": "", "entity": 96859, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65374, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96860", "domain": "apis default", "rdf_link": "", "entity": 96860, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65375, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96861", "domain": "apis default", "rdf_link": "", "entity": 96861, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65376, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96862", "domain": "apis default", "rdf_link": "", "entity": 96862, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65377, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96863", "domain": "apis default", "rdf_link": "", "entity": 96863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65378, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96864", "domain": "apis default", "rdf_link": "", "entity": 96864, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65379, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96865", "domain": "apis default", "rdf_link": "", "entity": 96865, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65410, "fields": {"uri": "http://d-nb.info/gnd/4071444-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 22526, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65419, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96947", "domain": "apis default", "rdf_link": "", "entity": 96947, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65420, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96948", "domain": "apis default", "rdf_link": "", "entity": 96948, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65421, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96949", "domain": "apis default", "rdf_link": "", "entity": 96949, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65422, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96950", "domain": "apis default", "rdf_link": "", "entity": 96950, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65423, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96951", "domain": "apis default", "rdf_link": "", "entity": 96951, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65424, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96952", "domain": "apis default", "rdf_link": "", "entity": 96952, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65425, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96953", "domain": "apis default", "rdf_link": "", "entity": 96953, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65426, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96954", "domain": "apis default", "rdf_link": "", "entity": 96954, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65427, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96955", "domain": "apis default", "rdf_link": "", "entity": 96955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65428, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96956", "domain": "apis default", "rdf_link": "", "entity": 96956, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65693, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97430", "domain": "apis default", "rdf_link": "", "entity": 97430, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65873, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97529", "domain": "apis default", "rdf_link": "", "entity": 97529, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65874, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97530", "domain": "apis default", "rdf_link": "", "entity": 97530, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65875, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97531", "domain": "apis default", "rdf_link": "", "entity": 97531, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65876, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97532", "domain": "apis default", "rdf_link": "", "entity": 97532, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65877, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97533", "domain": "apis default", "rdf_link": "", "entity": 97533, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65878, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97534", "domain": "apis default", "rdf_link": "", "entity": 97534, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65942, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97578", "domain": "apis default", "rdf_link": "", "entity": 97578, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65966, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97592", "domain": "apis default", "rdf_link": "", "entity": 97592, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65967, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97593", "domain": "apis default", "rdf_link": "", "entity": 97593, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66003, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97617", "domain": "apis default", "rdf_link": "", "entity": 97617, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97623", "domain": "apis default", "rdf_link": "", "entity": 97623, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66072, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97657", "domain": "apis default", "rdf_link": "", "entity": 97657, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66164, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97707", "domain": "apis default", "rdf_link": "", "entity": 97707, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66189, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97723", "domain": "apis default", "rdf_link": "", "entity": 97723, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66244, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97753", "domain": "apis default", "rdf_link": "", "entity": 97753, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66309, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97790", "domain": "apis default", "rdf_link": "", "entity": 97790, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66387, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97834", "domain": "apis default", "rdf_link": "", "entity": 97834, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66410, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97849", "domain": "apis default", "rdf_link": "", "entity": 97849, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66474, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97884", "domain": "apis default", "rdf_link": "", "entity": 97884, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66479, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97888", "domain": "apis default", "rdf_link": "", "entity": 97888, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66492, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97896", "domain": "apis default", "rdf_link": "", "entity": 97896, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66559, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97933", "domain": "apis default", "rdf_link": "", "entity": 97933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66576, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97943", "domain": "apis default", "rdf_link": "", "entity": 97943, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66577, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97944", "domain": "apis default", "rdf_link": "", "entity": 97944, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66578, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97945", "domain": "apis default", "rdf_link": "", "entity": 97945, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97976", "domain": "apis default", "rdf_link": "", "entity": 97976, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66616, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97977", "domain": "apis default", "rdf_link": "", "entity": 97977, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66629, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97986", "domain": "apis default", "rdf_link": "", "entity": 97986, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66662, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98006", "domain": "apis default", "rdf_link": "", "entity": 98006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66690, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98024", "domain": "apis default", "rdf_link": "", "entity": 98024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66856, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98183", "domain": "apis default", "rdf_link": "", "entity": 98183, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66857, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98184", "domain": "apis default", "rdf_link": "", "entity": 98184, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66858, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98185", "domain": "apis default", "rdf_link": "", "entity": 98185, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66886, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98237", "domain": "apis default", "rdf_link": "", "entity": 98237, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98296", "domain": "apis default", "rdf_link": "", "entity": 98296, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66908, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98297", "domain": "apis default", "rdf_link": "", "entity": 98297, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66909, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98298", "domain": "apis default", "rdf_link": "", "entity": 98298, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66910, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98299", "domain": "apis default", "rdf_link": "", "entity": 98299, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66911, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98300", "domain": "apis default", "rdf_link": "", "entity": 98300, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66912, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98301", "domain": "apis default", "rdf_link": "", "entity": 98301, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66935, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98348", "domain": "apis default", "rdf_link": "", "entity": 98348, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66994, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98551", "domain": "apis default", "rdf_link": "", "entity": 98551, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67004, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98569", "domain": "apis default", "rdf_link": "", "entity": 98569, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67005, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98570", "domain": "apis default", "rdf_link": "", "entity": 98570, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67008, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98579", "domain": "apis default", "rdf_link": "", "entity": 98579, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67009, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98580", "domain": "apis default", "rdf_link": "", "entity": 98580, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67010, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98581", "domain": "apis default", "rdf_link": "", "entity": 98581, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67011, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98582", "domain": "apis default", "rdf_link": "", "entity": 98582, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98583", "domain": "apis default", "rdf_link": "", "entity": 98583, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67013, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98584", "domain": "apis default", "rdf_link": "", "entity": 98584, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67014, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98585", "domain": "apis default", "rdf_link": "", "entity": 98585, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67015, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98586", "domain": "apis default", "rdf_link": "", "entity": 98586, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67016, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98587", "domain": "apis default", "rdf_link": "", "entity": 98587, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67017, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98588", "domain": "apis default", "rdf_link": "", "entity": 98588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67021, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98604", "domain": "apis default", "rdf_link": "", "entity": 98604, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67022, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98605", "domain": "apis default", "rdf_link": "", "entity": 98605, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67023, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98606", "domain": "apis default", "rdf_link": "", "entity": 98606, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67039, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98696", "domain": "apis default", "rdf_link": "", "entity": 98696, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67040, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98697", "domain": "apis default", "rdf_link": "", "entity": 98697, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67043, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98714", "domain": "apis default", "rdf_link": "", "entity": 98714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67050, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98722", "domain": "apis default", "rdf_link": "", "entity": 98722, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67051, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98723", "domain": "apis default", "rdf_link": "", "entity": 98723, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67052, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98724", "domain": "apis default", "rdf_link": "", "entity": 98724, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67053, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98725", "domain": "apis default", "rdf_link": "", "entity": 98725, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67054, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98726", "domain": "apis default", "rdf_link": "", "entity": 98726, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67055, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98727", "domain": "apis default", "rdf_link": "", "entity": 98727, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67056, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98728", "domain": "apis default", "rdf_link": "", "entity": 98728, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67057, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98729", "domain": "apis default", "rdf_link": "", "entity": 98729, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67058, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98730", "domain": "apis default", "rdf_link": "", "entity": 98730, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67059, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98731", "domain": "apis default", "rdf_link": "", "entity": 98731, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67060, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98732", "domain": "apis default", "rdf_link": "", "entity": 98732, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67061, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98733", "domain": "apis default", "rdf_link": "", "entity": 98733, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67062, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98734", "domain": "apis default", "rdf_link": "", "entity": 98734, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67063, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98735", "domain": "apis default", "rdf_link": "", "entity": 98735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67064, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98736", "domain": "apis default", "rdf_link": "", "entity": 98736, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67065, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98737", "domain": "apis default", "rdf_link": "", "entity": 98737, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67092, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98886", "domain": "apis default", "rdf_link": "", "entity": 98886, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67099, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98891", "domain": "apis default", "rdf_link": "", "entity": 98891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67100, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98892", "domain": "apis default", "rdf_link": "", "entity": 98892, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67101, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98893", "domain": "apis default", "rdf_link": "", "entity": 98893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67110, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98922", "domain": "apis default", "rdf_link": "", "entity": 98922, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67111, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98923", "domain": "apis default", "rdf_link": "", "entity": 98923, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67112, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98924", "domain": "apis default", "rdf_link": "", "entity": 98924, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67113, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98925", "domain": "apis default", "rdf_link": "", "entity": 98925, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67124, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98980", "domain": "apis default", "rdf_link": "", "entity": 98980, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67128, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98990", "domain": "apis default", "rdf_link": "", "entity": 98990, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67129, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98991", "domain": "apis default", "rdf_link": "", "entity": 98991, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67130, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98992", "domain": "apis default", "rdf_link": "", "entity": 98992, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67131, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98993", "domain": "apis default", "rdf_link": "", "entity": 98993, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67132, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98994", "domain": "apis default", "rdf_link": "", "entity": 98994, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67133, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98995", "domain": "apis default", "rdf_link": "", "entity": 98995, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67134, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98996", "domain": "apis default", "rdf_link": "", "entity": 98996, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67135, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98997", "domain": "apis default", "rdf_link": "", "entity": 98997, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67136, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98998", "domain": "apis default", "rdf_link": "", "entity": 98998, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67137, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98999", "domain": "apis default", "rdf_link": "", "entity": 98999, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67138, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99000", "domain": "apis default", "rdf_link": "", "entity": 99000, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67139, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99001", "domain": "apis default", "rdf_link": "", "entity": 99001, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67140, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99002", "domain": "apis default", "rdf_link": "", "entity": 99002, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67141, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99003", "domain": "apis default", "rdf_link": "", "entity": 99003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67142, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99004", "domain": "apis default", "rdf_link": "", "entity": 99004, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67143, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99005", "domain": "apis default", "rdf_link": "", "entity": 99005, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67144, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99006", "domain": "apis default", "rdf_link": "", "entity": 99006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67145, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99007", "domain": "apis default", "rdf_link": "", "entity": 99007, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67146, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99008", "domain": "apis default", "rdf_link": "", "entity": 99008, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67147, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99009", "domain": "apis default", "rdf_link": "", "entity": 99009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67155, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99075", "domain": "apis default", "rdf_link": "", "entity": 99075, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67158, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99092", "domain": "apis default", "rdf_link": "", "entity": 99092, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67159, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99093", "domain": "apis default", "rdf_link": "", "entity": 99093, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67160, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99094", "domain": "apis default", "rdf_link": "", "entity": 99094, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67161, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99095", "domain": "apis default", "rdf_link": "", "entity": 99095, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67162, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99096", "domain": "apis default", "rdf_link": "", "entity": 99096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67163, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99097", "domain": "apis default", "rdf_link": "", "entity": 99097, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67164, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99098", "domain": "apis default", "rdf_link": "", "entity": 99098, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67165, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99099", "domain": "apis default", "rdf_link": "", "entity": 99099, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67166, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99100", "domain": "apis default", "rdf_link": "", "entity": 99100, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67167, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99101", "domain": "apis default", "rdf_link": "", "entity": 99101, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67168, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99102", "domain": "apis default", "rdf_link": "", "entity": 99102, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67169, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99103", "domain": "apis default", "rdf_link": "", "entity": 99103, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67170, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99104", "domain": "apis default", "rdf_link": "", "entity": 99104, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67171, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99105", "domain": "apis default", "rdf_link": "", "entity": 99105, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67172, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99106", "domain": "apis default", "rdf_link": "", "entity": 99106, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67173, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99107", "domain": "apis default", "rdf_link": "", "entity": 99107, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67174, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99108", "domain": "apis default", "rdf_link": "", "entity": 99108, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67175, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99109", "domain": "apis default", "rdf_link": "", "entity": 99109, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67176, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99110", "domain": "apis default", "rdf_link": "", "entity": 99110, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67182, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99156", "domain": "apis default", "rdf_link": "", "entity": 99156, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67217, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99336", "domain": "apis default", "rdf_link": "", "entity": 99336, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67218, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99337", "domain": "apis default", "rdf_link": "", "entity": 99337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67225, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99352", "domain": "apis default", "rdf_link": "", "entity": 99352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67226, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99353", "domain": "apis default", "rdf_link": "", "entity": 99353, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67227, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99354", "domain": "apis default", "rdf_link": "", "entity": 99354, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67228, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99355", "domain": "apis default", "rdf_link": "", "entity": 99355, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67229, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99356", "domain": "apis default", "rdf_link": "", "entity": 99356, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67230, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99357", "domain": "apis default", "rdf_link": "", "entity": 99357, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67231, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99358", "domain": "apis default", "rdf_link": "", "entity": 99358, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67234, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99369", "domain": "apis default", "rdf_link": "", "entity": 99369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67235, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99370", "domain": "apis default", "rdf_link": "", "entity": 99370, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67236, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99371", "domain": "apis default", "rdf_link": "", "entity": 99371, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67237, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99372", "domain": "apis default", "rdf_link": "", "entity": 99372, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67238, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99373", "domain": "apis default", "rdf_link": "", "entity": 99373, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67239, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99374", "domain": "apis default", "rdf_link": "", "entity": 99374, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67240, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99375", "domain": "apis default", "rdf_link": "", "entity": 99375, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67241, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99376", "domain": "apis default", "rdf_link": "", "entity": 99376, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67242, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99377", "domain": "apis default", "rdf_link": "", "entity": 99377, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67243, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99378", "domain": "apis default", "rdf_link": "", "entity": 99378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67248, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99416", "domain": "apis default", "rdf_link": "", "entity": 99416, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67249, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99417", "domain": "apis default", "rdf_link": "", "entity": 99417, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67250, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99418", "domain": "apis default", "rdf_link": "", "entity": 99418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67251, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99419", "domain": "apis default", "rdf_link": "", "entity": 99419, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67252, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99420", "domain": "apis default", "rdf_link": "", "entity": 99420, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67253, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99421", "domain": "apis default", "rdf_link": "", "entity": 99421, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67254, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99422", "domain": "apis default", "rdf_link": "", "entity": 99422, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67255, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99423", "domain": "apis default", "rdf_link": "", "entity": 99423, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67343, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99744", "domain": "apis default", "rdf_link": "", "entity": 99744, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67366, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99841", "domain": "apis default", "rdf_link": "", "entity": 99841, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67367, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99842", "domain": "apis default", "rdf_link": "", "entity": 99842, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67368, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99843", "domain": "apis default", "rdf_link": "", "entity": 99843, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67369, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99844", "domain": "apis default", "rdf_link": "", "entity": 99844, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67370, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99845", "domain": "apis default", "rdf_link": "", "entity": 99845, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67371, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99846", "domain": "apis default", "rdf_link": "", "entity": 99846, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99847", "domain": "apis default", "rdf_link": "", "entity": 99847, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99848", "domain": "apis default", "rdf_link": "", "entity": 99848, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67374, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99849", "domain": "apis default", "rdf_link": "", "entity": 99849, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67375, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99850", "domain": "apis default", "rdf_link": "", "entity": 99850, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uricandidate", "pk": 3373, "fields": {"uri": "http://sws.geonames.org/3075069/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3374, "fields": {"uri": "http://sws.geonames.org/3075073/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3375, "fields": {"uri": "http://sws.geonames.org/3064955/", "confidence": 36.39077, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3376, "fields": {"uri": "http://sws.geonames.org/3064682/", "confidence": 27.023357, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3392, "fields": {"uri": "http://sws.geonames.org/8987526/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3393, "fields": {"uri": "http://sws.geonames.org/8988006/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3394, "fields": {"uri": "http://sws.geonames.org/3187442/", "confidence": 36.04053, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3427, "fields": {"uri": "http://sws.geonames.org/710232/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3428, "fields": {"uri": "http://sws.geonames.org/710234/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3429, "fields": {"uri": "http://sws.geonames.org/710242/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3430, "fields": {"uri": "http://sws.geonames.org/710241/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3431, "fields": {"uri": "http://sws.geonames.org/810113/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3432, "fields": {"uri": "http://sws.geonames.org/8468002/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3433, "fields": {"uri": "http://sws.geonames.org/710235/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3434, "fields": {"uri": "http://sws.geonames.org/710243/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3435, "fields": {"uri": "http://sws.geonames.org/697446/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3436, "fields": {"uri": "http://sws.geonames.org/687982/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "highlighter.texthigh", "pk": 1, "fields": {"title": "\u00d6BL Haupttext", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-haupttext", "project": 1}}, {"model": "highlighter.texthigh", "pk": 2, "fields": {"title": "\u00d6bl Kurzinfo", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-kurzinfo", "project": 1}}, {"model": "highlighter.annotationproject", "pk": 1, "fields": {"name": "Default", "description": "We need an annotation project for every annotation. Thus the default project."}}, {"model": "highlighter.vocabularyapi", "pk": 1, "fields": {"name": "Person Place Form", "api_endpoint": "PersonPlaceHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 2, "fields": {"name": "Person Institution Form", "api_endpoint": "PersonInstitutionHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 3, "fields": {"name": "Person Person Form", "api_endpoint": "PersonPersonHighlighterForm", "method": "l"}}, {"model": "highlighter.menuentry", "pk": 1, "fields": {"kind": "frm", "name": "Person Place Relation", "api": 1, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 2, "fields": {"kind": "frm", "name": "Person Institution Relation", "api": 2, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 3, "fields": {"kind": "frm", "name": "Person Person Relation", "api": 3, "parent": null, "project": 1}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add log entry", "content_type": 1, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change log entry", "content_type": 1, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete log entry", "content_type": 1, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can add permission", "content_type": 2, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can change permission", "content_type": 2, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can delete permission", "content_type": 2, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can add group", "content_type": 3, "codename": "add_group"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can change group", "content_type": 3, "codename": "change_group"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can delete group", "content_type": 3, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add user", "content_type": 4, "codename": "add_user"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change user", "content_type": 4, "codename": "change_user"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete user", "content_type": 4, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add content type", "content_type": 5, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change content type", "content_type": 5, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete content type", "content_type": 5, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can add session", "content_type": 6, "codename": "add_session"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can change session", "content_type": 6, "codename": "change_session"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can delete session", "content_type": 6, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can add label", "content_type": 7, "codename": "add_label"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can change label", "content_type": 7, "codename": "change_label"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can delete label", "content_type": 7, "codename": "delete_label"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add person", "content_type": 8, "codename": "add_person"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change person", "content_type": 8, "codename": "change_person"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete person", "content_type": 8, "codename": "delete_person"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add place", "content_type": 9, "codename": "add_place"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change place", "content_type": 9, "codename": "change_place"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete place", "content_type": 9, "codename": "delete_place"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can add institution", "content_type": 10, "codename": "add_institution"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can change institution", "content_type": 10, "codename": "change_institution"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can delete institution", "content_type": 10, "codename": "delete_institution"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can add event", "content_type": 11, "codename": "add_event"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can change event", "content_type": 11, "codename": "change_event"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can delete event", "content_type": 11, "codename": "delete_event"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add work", "content_type": 12, "codename": "add_work"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change work", "content_type": 12, "codename": "change_work"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete work", "content_type": 12, "codename": "delete_work"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add vocabs base class", "content_type": 13, "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change vocabs base class", "content_type": 13, "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete vocabs base class", "content_type": 13, "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can add relation base class", "content_type": 14, "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can change relation base class", "content_type": 14, "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can delete relation base class", "content_type": 14, "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can add vocabs uri", "content_type": 15, "codename": "add_vocabsuri"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can change vocabs uri", "content_type": 15, "codename": "change_vocabsuri"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can delete vocabs uri", "content_type": 15, "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add work type", "content_type": 16, "codename": "add_worktype"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change work type", "content_type": 16, "codename": "change_worktype"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete work type", "content_type": 16, "codename": "delete_worktype"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add title", "content_type": 17, "codename": "add_title"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change title", "content_type": 17, "codename": "change_title"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete title", "content_type": 17, "codename": "delete_title"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can add profession type", "content_type": 18, "codename": "add_professiontype"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can change profession type", "content_type": 18, "codename": "change_professiontype"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can delete profession type", "content_type": 18, "codename": "delete_professiontype"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can add place type", "content_type": 19, "codename": "add_placetype"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can change place type", "content_type": 19, "codename": "change_placetype"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can delete place type", "content_type": 19, "codename": "delete_placetype"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add institution type", "content_type": 20, "codename": "add_institutiontype"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change institution type", "content_type": 20, "codename": "change_institutiontype"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete institution type", "content_type": 20, "codename": "delete_institutiontype"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add event type", "content_type": 21, "codename": "add_eventtype"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change event type", "content_type": 21, "codename": "change_eventtype"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete event type", "content_type": 21, "codename": "delete_eventtype"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can add label type", "content_type": 22, "codename": "add_labeltype"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can change label type", "content_type": 22, "codename": "change_labeltype"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can delete label type", "content_type": 22, "codename": "delete_labeltype"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can add collection type", "content_type": 23, "codename": "add_collectiontype"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can change collection type", "content_type": 23, "codename": "change_collectiontype"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can delete collection type", "content_type": 23, "codename": "delete_collectiontype"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add text type", "content_type": 24, "codename": "add_texttype"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change text type", "content_type": 24, "codename": "change_texttype"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete text type", "content_type": 24, "codename": "delete_texttype"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add person person relation", "content_type": 25, "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change person person relation", "content_type": 25, "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete person person relation", "content_type": 25, "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can add person place relation", "content_type": 26, "codename": "add_personplacerelation"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can change person place relation", "content_type": 26, "codename": "change_personplacerelation"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can delete person place relation", "content_type": 26, "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can add person institution relation", "content_type": 27, "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can change person institution relation", "content_type": 27, "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can delete person institution relation", "content_type": 27, "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add person event relation", "content_type": 28, "codename": "add_personeventrelation"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change person event relation", "content_type": 28, "codename": "change_personeventrelation"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete person event relation", "content_type": 28, "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add person work relation", "content_type": 29, "codename": "add_personworkrelation"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change person work relation", "content_type": 29, "codename": "change_personworkrelation"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete person work relation", "content_type": 29, "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can add institution event relation", "content_type": 30, "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can change institution event relation", "content_type": 30, "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can delete institution event relation", "content_type": 30, "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can add institution place relation", "content_type": 31, "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can change institution place relation", "content_type": 31, "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can delete institution place relation", "content_type": 31, "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add institution institution relation", "content_type": 32, "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change institution institution relation", "content_type": 32, "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete institution institution relation", "content_type": 32, "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add place place relation", "content_type": 33, "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change place place relation", "content_type": 33, "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete place place relation", "content_type": 33, "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can add place event relation", "content_type": 34, "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can change place event relation", "content_type": 34, "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can delete place event relation", "content_type": 34, "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can add place work relation", "content_type": 35, "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can change place work relation", "content_type": 35, "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can delete place work relation", "content_type": 35, "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add event event relation", "content_type": 36, "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change event event relation", "content_type": 36, "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete event event relation", "content_type": 36, "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add event work relation", "content_type": 37, "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change event work relation", "content_type": 37, "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete event work relation", "content_type": 37, "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can add work work relation", "content_type": 38, "codename": "add_workworkrelation"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can change work work relation", "content_type": 38, "codename": "change_workworkrelation"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can delete work work relation", "content_type": 38, "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can add person person", "content_type": 39, "codename": "add_personperson"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can change person person", "content_type": 39, "codename": "change_personperson"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can delete person person", "content_type": 39, "codename": "delete_personperson"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can add person place", "content_type": 40, "codename": "add_personplace"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can change person place", "content_type": 40, "codename": "change_personplace"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can delete person place", "content_type": 40, "codename": "delete_personplace"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add person institution", "content_type": 41, "codename": "add_personinstitution"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change person institution", "content_type": 41, "codename": "change_personinstitution"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete person institution", "content_type": 41, "codename": "delete_personinstitution"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can add person event", "content_type": 42, "codename": "add_personevent"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can change person event", "content_type": 42, "codename": "change_personevent"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can delete person event", "content_type": 42, "codename": "delete_personevent"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can add person work", "content_type": 43, "codename": "add_personwork"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can change person work", "content_type": 43, "codename": "change_personwork"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can delete person work", "content_type": 43, "codename": "delete_personwork"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can add institution institution", "content_type": 44, "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can change institution institution", "content_type": 44, "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can delete institution institution", "content_type": 44, "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add institution place", "content_type": 45, "codename": "add_institutionplace"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change institution place", "content_type": 45, "codename": "change_institutionplace"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete institution place", "content_type": 45, "codename": "delete_institutionplace"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can add institution event", "content_type": 46, "codename": "add_institutionevent"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can change institution event", "content_type": 46, "codename": "change_institutionevent"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can delete institution event", "content_type": 46, "codename": "delete_institutionevent"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can add institution work", "content_type": 47, "codename": "add_institutionwork"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can change institution work", "content_type": 47, "codename": "change_institutionwork"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can delete institution work", "content_type": 47, "codename": "delete_institutionwork"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can add place place", "content_type": 48, "codename": "add_placeplace"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can change place place", "content_type": 48, "codename": "change_placeplace"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can delete place place", "content_type": 48, "codename": "delete_placeplace"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add place event", "content_type": 49, "codename": "add_placeevent"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change place event", "content_type": 49, "codename": "change_placeevent"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete place event", "content_type": 49, "codename": "delete_placeevent"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can add place work", "content_type": 50, "codename": "add_placework"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can change place work", "content_type": 50, "codename": "change_placework"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can delete place work", "content_type": 50, "codename": "delete_placework"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can add event event", "content_type": 51, "codename": "add_eventevent"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can change event event", "content_type": 51, "codename": "change_eventevent"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can delete event event", "content_type": 51, "codename": "delete_eventevent"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can add event work", "content_type": 52, "codename": "add_eventwork"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can change event work", "content_type": 52, "codename": "change_eventwork"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can delete event work", "content_type": 52, "codename": "delete_eventwork"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can add work work", "content_type": 53, "codename": "add_workwork"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can change work work", "content_type": 53, "codename": "change_workwork"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can delete work work", "content_type": 53, "codename": "delete_workwork"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can add temp entity class", "content_type": 54, "codename": "add_tempentityclass"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can change temp entity class", "content_type": 54, "codename": "change_tempentityclass"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can delete temp entity class", "content_type": 54, "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can add source", "content_type": 55, "codename": "add_source"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can change source", "content_type": 55, "codename": "change_source"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can delete source", "content_type": 55, "codename": "delete_source"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can add collection", "content_type": 56, "codename": "add_collection"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can change collection", "content_type": 56, "codename": "change_collection"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can delete collection", "content_type": 56, "codename": "delete_collection"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can add text", "content_type": 57, "codename": "add_text"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can change text", "content_type": 57, "codename": "change_text"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can delete text", "content_type": 57, "codename": "delete_text"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can add uri", "content_type": 58, "codename": "add_uri"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can change uri", "content_type": 58, "codename": "change_uri"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can delete uri", "content_type": 58, "codename": "delete_uri"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can add project", "content_type": 61, "codename": "add_project"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can change project", "content_type": 61, "codename": "change_project"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can delete project", "content_type": 61, "codename": "delete_project"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can add annotation", "content_type": 63, "codename": "add_annotation"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can change annotation", "content_type": 63, "codename": "change_annotation"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can delete annotation", "content_type": 63, "codename": "delete_annotation"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can add vocabulary api", "content_type": 64, "codename": "add_vocabularyapi"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can change vocabulary api", "content_type": 64, "codename": "change_vocabularyapi"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can delete vocabulary api", "content_type": 64, "codename": "delete_vocabularyapi"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can add menu entry", "content_type": 65, "codename": "add_menuentry"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can change menu entry", "content_type": 65, "codename": "change_menuentry"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can delete menu entry", "content_type": 65, "codename": "delete_menuentry"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can add revision", "content_type": 66, "codename": "add_revision"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can change revision", "content_type": 66, "codename": "change_revision"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can delete revision", "content_type": 66, "codename": "delete_revision"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can add version", "content_type": 67, "codename": "add_version"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can change version", "content_type": 67, "codename": "change_version"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can delete version", "content_type": 67, "codename": "delete_version"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can add uri candidate", "content_type": 68, "codename": "add_uricandidate"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can change uri candidate", "content_type": 68, "codename": "change_uricandidate"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can delete uri candidate", "content_type": 68, "codename": "delete_uricandidate"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can add vocab names", "content_type": 69, "codename": "add_vocabnames"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can change vocab names", "content_type": 69, "codename": "change_vocabnames"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can delete vocab names", "content_type": 69, "codename": "delete_vocabnames"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can add text high", "content_type": 70, "codename": "add_texthigh"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can change text high", "content_type": 70, "codename": "change_texthigh"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can delete text high", "content_type": 70, "codename": "delete_texthigh"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can add annotation project", "content_type": 71, "codename": "add_annotationproject"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can change annotation project", "content_type": 71, "codename": "change_annotationproject"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can delete annotation project", "content_type": 71, "codename": "delete_annotationproject"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can add Token", "content_type": 72, "codename": "add_token"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can change Token", "content_type": 72, "codename": "change_token"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can delete Token", "content_type": 72, "codename": "delete_token"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can add user object permission", "content_type": 73, "codename": "add_userobjectpermission"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can change user object permission", "content_type": 73, "codename": "change_userobjectpermission"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can delete user object permission", "content_type": 73, "codename": "delete_userobjectpermission"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can add group object permission", "content_type": 74, "codename": "add_groupobjectpermission"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can change group object permission", "content_type": 74, "codename": "change_groupobjectpermission"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can delete group object permission", "content_type": 74, "codename": "delete_groupobjectpermission"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "semac", "permissions": [13, 14, 15, 31, 32, 33, 28, 29, 30, 22, 23, 24, 25, 26, 27, 34, 35, 36, 187, 188, 189, 193, 194, 195, 181, 182, 183, 190, 191, 192, 19, 20, 21, 166, 167, 168, 163, 164, 165, 160, 161, 162, 169, 170, 171, 172, 173, 174, 151, 152, 153, 154, 155, 156, 136, 137, 138, 130, 131, 132, 133, 134, 135, 139, 140, 141, 124, 125, 126, 121, 122, 123, 115, 116, 117, 118, 119, 120, 127, 128, 129, 145, 146, 147, 142, 143, 144, 148, 149, 150, 157, 158, 159, 16, 17, 18, 67, 68, 69, 106, 107, 108, 61, 62, 63, 109, 110, 111, 88, 89, 90, 94, 95, 96, 91, 92, 93, 58, 59, 60, 64, 65, 66, 82, 83, 84, 79, 80, 81, 73, 74, 75, 76, 77, 78, 85, 86, 87, 100, 101, 102, 97, 98, 99, 55, 56, 57, 103, 104, 105, 52, 53, 54, 40, 41, 42, 70, 71, 72, 49, 50, 51, 37, 38, 39, 43, 44, 45, 46, 47, 48, 112, 113, 114]}}, {"model": "auth.group", "pk": 2, "fields": {"name": "apis", "permissions": []}}, {"model": "auth.group", "pk": 3, "fields": {"name": "staribacher", "permissions": []}}, {"model": "auth.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$24000$lZLlfjvJkfgl$AaPc0kM0uUiYs1Iaj8jLiZcMGjC/hqQPyt3qX+B0JFk=", "last_login": "2016-12-20T11:30:35Z", "is_superuser": true, "username": "pandorfer", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2016-04-04T11:48:13Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", "last_login": "2016-12-21T09:47:39Z", "is_superuser": true, "username": "sennierer", "first_name": "Matthias", "last_name": "Schl\u00f6gl", "email": "matthias.schloegl@oeaw.ac.at", "is_staff": true, "is_active": true, "date_joined": "2016-04-05T15:11:00Z", "groups": [2], "user_permissions": [1, 2, 3, 7, 8, 9, 4, 5, 6, 10, 11, 12, 13, 14, 15, 31, 32, 33, 28, 29, 30, 22, 23, 24, 25, 26, 27, 34, 35, 36, 187, 188, 189, 193, 194, 195, 181, 182, 183, 190, 191, 192, 19, 20, 21, 166, 167, 168, 163, 164, 165, 160, 161, 162, 169, 170, 171, 172, 173, 174, 202, 203, 204, 151, 152, 153, 154, 155, 156, 136, 137, 138, 130, 131, 132, 133, 134, 135, 139, 140, 141, 124, 125, 126, 121, 122, 123, 115, 116, 117, 118, 119, 120, 127, 128, 129, 145, 146, 147, 142, 143, 144, 148, 149, 150, 157, 158, 159, 196, 197, 198, 199, 200, 201, 16, 17, 18, 67, 68, 69, 106, 107, 108, 61, 62, 63, 109, 110, 111, 88, 89, 90, 94, 95, 96, 91, 92, 93, 58, 59, 60, 64, 65, 66, 82, 83, 84, 79, 80, 81, 73, 74, 75, 76, 77, 78, 85, 86, 87, 100, 101, 102, 97, 98, 99, 55, 56, 57, 103, 104, 105, 52, 53, 54, 40, 41, 42, 70, 71, 72, 49, 50, 51, 37, 38, 39, 43, 44, 45, 46, 47, 48, 112, 113, 114]}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1, "fields": {"name": "old entity of", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Place description \u00d6BL", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "vocabsor similar import", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "\u00d6BL place name", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "seat of a third-order administrative division (PPLA3)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "weitere Namensformen", "description": "wie im Gideon, statt alternative name", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "independent political entity (PCLI)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "populated place (PPL)", "description": "a city, town, village, or other agglomeration of buildings where people live and work", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "seat of a fourth-order administrative division (PPLA4)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "seat of a second-order administrative division (PPLA2)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "capital of a political entity (PPLC)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "seat of a first-order administrative division (PPLA)", "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 125, "fields": {"name": "test data import", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Literatur, Buch- und Zeitungswesen", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "\u00d6BL Haupttext", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "\u00d6BL Kurzinfo", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Rechtswesen und Rechtswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 133, "fields": {"name": "Rechtshistoriker und Abgeordneter", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Politik", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 135, "fields": {"name": "Naturwissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Botaniker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 137, "fields": {"name": "Wirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 138, "fields": {"name": "Instrumentenbauer", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 139, "fields": {"name": "Bildende und angewandte Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Maler", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 141, "fields": {"name": "Religionen und Theologie", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Bischof", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 143, "fields": {"name": "Milit\u00e4r", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "General", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Verwaltungsjurist und Politiker", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 146, "fields": {"name": "Verwaltung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 147, "fields": {"name": "Ministerpr\u00e4sident", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Zoologe", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Geisteswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Arch\u00e4ologe", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Musik und darstellende Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Schauspieler und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Medizin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "P\u00e4diater", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Technik", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Milit\u00e4rtechniker, Offizier und ungarischer Freiheitsk\u00e4mpfer", "description": "", "parent_class": 157, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Beamter und Fachschriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Historiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Architekt", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Diplomat", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Sport", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Eiskunstl\u00e4uferin", "description": "", "parent_class": 163, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 165, "fields": {"name": "Gro\u00dfindustrielle", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 166, "fields": {"name": "Diverse", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Bautechniker", "description": "", "parent_class": 157, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Maler und Graphiker", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Politikerin und Schriftstellerin", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Schauspieler, Theaterdirektor und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Physiologe", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Jurist", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Fabrikant", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Schriftsteller und Journalist", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Internist", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Landesverteidiger und Schriftsteller", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 177, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Malerin", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 179, "fields": {"name": "Volkss\u00e4nger", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Sozial- und Wirtschaftswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Betriebswirtschafter", "description": "", "parent_class": 180, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 182, "fields": {"name": "Slawist und Linguist", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 183, "fields": {"name": "Admiral", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Stigmatisierte", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 187, "fields": {"name": "Pharmazeut", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Unterrichtswesen", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Lehrer", "description": "", "parent_class": 188, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Montanist und Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 191, "fields": {"name": "Maler und Radierer", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Philologe und Literarhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Biologe und Lehrer", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Physiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Offizier und Diplomat", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Theologe", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Ornithologe", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Diplomat und Politiker", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Lokalhistoriker, Gewerbetreibender und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Schriftsteller und Seelsorger", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Industrieller", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Mediziner", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Komponist, Chorleiter und Musikkritiker", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Kirchenhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Journalist und Lehrer", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Fabrikant und Politiker", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "S\u00e4nger und Schauspieler", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Chirurg", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 209, "fields": {"name": "Jurist und Beamter", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Feldmarschalleutnant und Sicherheitsbeamter", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Pianist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Politiker und Jurist", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 214, "fields": {"name": "Musiker und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Bildhauer", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Harfenist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 217, "fields": {"name": "Land- und Forstwirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 218, "fields": {"name": "Landwirt und Weinhauer", "description": "", "parent_class": 217, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 219, "fields": {"name": "Ordensangeh\u00f6riger und Stifter", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 220, "fields": {"name": "Historiker und Lehrer", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 221, "fields": {"name": "Politiker und Kaufmann", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 222, "fields": {"name": "Journalist und Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Maler und Karikaturist", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Offizier", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Bischof und Missionar", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 226, "fields": {"name": "P\u00e4dagogin und Physikerin", "description": "", "parent_class": 188, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 227, "fields": {"name": "Historiker und Byzantinist", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Archivar und Historiker", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Geistlicher, Historiker und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 230, "fields": {"name": "Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Offizier und Politiker", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "S\u00e4nger, Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 233, "fields": {"name": "Journalist und Politiker", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Pfadfinderf\u00fchrer und Offizier", "description": "", "parent_class": 166, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "F\u00fcrstbischof", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 236, "fields": {"name": "Place review comments", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 371, "fields": {"name": "first-order administrative division (ADM1)", "description": "a primary administrative division of a country, such as a state in the United States", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "third-order administrative division (ADM3)", "description": "a subdivision of a second-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "fifth-order administrative division (ADM5)", "description": "a subdivision of a fourth-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Krieg", "description": "auch Revolution und B\u00fcrgerkrieg, Unterkategorie ist Schlacht", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Attentat", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 384, "fields": {"name": "Epidemie", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Verleihung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Festzug", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Kongress", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "R\u00fccktritt", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Fertigstellung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 392, "fields": {"name": "Erstauff\u00fchrung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 394, "fields": {"name": "Berufung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Abspaltung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "nahm Teil an", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "hatte als Teilnehmer", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Schlacht", "description": "", "parent_class": 380, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Friedensverhandlung", "description": "", "parent_class": 380, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "historical first-order administrative division (ADM1H)", "description": "a former first-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "author", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Publikation", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Pseudonym", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "M\u00e4dchenname", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 432, "fields": {"name": "K\u00fcnstlername", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "fourth-order administrative division (ADM4)", "description": "a subdivision of a third-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 452, "fields": {"name": "second-order administrative division (ADM2)", "description": "a subdivision of a first-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Graf", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Herzog", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 462, "fields": {"name": "Freiherr", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Erzherzog", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "K\u00f6nig", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Kaiser", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 466, "fields": {"name": "F\u00fcrst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Freiin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Freifrau", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "F\u00fcrstin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 470, "fields": {"name": "Erzherz\u00f6gin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "K\u00f6nigin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 483, "fields": {"name": "Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Pianist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "place of birth", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "place of death", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "alternative Namensform", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 598, "fields": {"name": "Name laut \u00d6BL XML", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 606, "fields": {"name": "Ehename", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Taufname", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 653, "fields": {"name": "not defined", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1750, "fields": {"name": "Pianistin", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "Komponist und Musiklehrer", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5578, "fields": {"name": "Schriftstellerin, \u00dcbersetzerin und Pianistin", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5599, "fields": {"name": "Pianist, P\u00e4dagoge und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5608, "fields": {"name": "undefined", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5702, "fields": {"name": "situated in", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 8}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5708, "fields": {"name": "is superior of", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5709, "fields": {"name": "is succeeding", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5711, "fields": {"name": "is preceding", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5729, "fields": {"name": "section of populated place (PPLX)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5741, "fields": {"name": "family member", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5742, "fields": {"name": "friend", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5743, "fields": {"name": "affiliation", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 4}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5765, "fields": {"name": "administrative division (ADMD)", "description": "an administrative division of a country, undifferentiated as to administrative level", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5772, "fields": {"name": "research dataset", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 11}}, {"model": "vocabularies.relationbaseclass", "pk": 1, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 8, "fields": {"name_reverse": "includes"}}, {"model": "vocabularies.relationbaseclass", "pk": 398, "fields": {"name_reverse": "hatte als Teilnehmer"}}, {"model": "vocabularies.relationbaseclass", "pk": 399, "fields": {"name_reverse": "nahm Teil an"}}, {"model": "vocabularies.relationbaseclass", "pk": 424, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 595, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 596, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5608, "fields": {"name_reverse": "undefined"}}, {"model": "vocabularies.relationbaseclass", "pk": 5702, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5708, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5709, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5711, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5741, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5742, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5743, "fields": {"name_reverse": ""}}, {"model": "vocabularies.worktype", "pk": 429, "fields": {}}, {"model": "vocabularies.title", "pk": 460, "fields": {"abbreviation": "Gf."}}, {"model": "vocabularies.title", "pk": 461, "fields": {"abbreviation": "Hg."}}, {"model": "vocabularies.title", "pk": 462, "fields": {"abbreviation": "Frh."}}, {"model": "vocabularies.title", "pk": 463, "fields": {"abbreviation": "Erzhg."}}, {"model": "vocabularies.title", "pk": 464, "fields": {"abbreviation": "Kg."}}, {"model": "vocabularies.title", "pk": 465, "fields": {"abbreviation": "K."}}, {"model": "vocabularies.title", "pk": 466, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 467, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 468, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 469, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 470, "fields": {"abbreviation": "Erzhgn."}}, {"model": "vocabularies.title", "pk": 474, "fields": {"abbreviation": "Kngn."}}, {"model": "vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 133, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 135, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 137, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 138, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 139, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 141, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 143, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 146, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 147, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 149, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 165, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 166, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 172, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 177, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 179, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 182, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 183, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 187, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 191, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 209, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 214, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 217, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 218, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 219, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 220, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 221, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 222, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 226, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 227, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 230, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 233, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 483, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 1750, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 2054, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5578, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5599, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "vocabularies.placetype", "pk": 11, "fields": {}}, {"model": "vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "vocabularies.placetype", "pk": 371, "fields": {}}, {"model": "vocabularies.placetype", "pk": 373, "fields": {}}, {"model": "vocabularies.placetype", "pk": 375, "fields": {}}, {"model": "vocabularies.placetype", "pk": 420, "fields": {}}, {"model": "vocabularies.placetype", "pk": 443, "fields": {}}, {"model": "vocabularies.placetype", "pk": 452, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5729, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5765, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 380, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 382, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 384, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 385, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 386, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 388, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 390, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 391, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 392, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 393, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 394, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 396, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 400, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 401, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 4, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 6, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 430, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 431, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 432, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 433, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 597, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 598, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 606, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 612, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 653, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 3, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 125, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 5772, "fields": {}}, {"model": "vocabularies.texttype", "pk": 2, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 130, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 131, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 236, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.personpersonrelation", "pk": 5608, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5741, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5742, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 595, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 596, "fields": {}}, {"model": "vocabularies.personinstitutionrelation", "pk": 5743, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 398, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 399, "fields": {}}, {"model": "vocabularies.personworkrelation", "pk": 424, "fields": {}}, {"model": "vocabularies.institutionplacerelation", "pk": 5702, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5708, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5709, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5711, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 1, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 8, "fields": {}}, {"model": "highlighter.project", "pk": 1, "fields": {"name": "highlight places", "user": 12, "description": "", "base_url": "", "store_text": false}}, {"model": "highlighter.annotation", "pk": 237, "fields": {"start": 239, "end": 250, "orig_string": "Carl Czerny", "text": 47030, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92840]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 331, "fields": {"start": 879, "end": 899, "orig_string": "Ludwig van Beethoven", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92930]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 332, "fields": {"start": 1362, "end": 1380, "orig_string": "Sigismund Thalberg", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92931]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 333, "fields": {"start": 1383, "end": 1408, "orig_string": "Marie Leopoldine Blahetka", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92932]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 334, "fields": {"start": 1439, "end": 1454, "orig_string": "Franz von Liszt", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92933]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 335, "fields": {"start": 1736, "end": 1751, "orig_string": "Ignaz Moscheles", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92934]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 336, "fields": {"start": 3031, "end": 3043, "orig_string": "Anton Reicha", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92935]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1214, "fields": {"start": 40, "end": 55, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1215, "fields": {"start": 141, "end": 151, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1216, "fields": {"start": 225, "end": 262, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1217, "fields": {"start": 354, "end": 378, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1218, "fields": {"start": 451, "end": 478, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1219, "fields": {"start": 500, "end": 508, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1220, "fields": {"start": 549, "end": 566, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1221, "fields": {"start": 650, "end": 670, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "authtoken.token", "pk": "bb650ee43b63b5e13cbac9320157b08c36099452", "fields": {"user": 12, "created": "2016-08-26T08:01:26Z"}}, {"model": "guardian.groupobjectpermission", "pk": 122, "fields": {"permission": 23, "content_type": 8, "object_pk": "93803", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 623, "fields": {"permission": 24, "content_type": 8, "object_pk": "93803", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1010, "fields": {"permission": 23, "content_type": 8, "object_pk": "93003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1012, "fields": {"permission": 23, "content_type": 8, "object_pk": "93009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1013, "fields": {"permission": 23, "content_type": 8, "object_pk": "93012", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1014, "fields": {"permission": 23, "content_type": 8, "object_pk": "93015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1015, "fields": {"permission": 23, "content_type": 8, "object_pk": "93018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1016, "fields": {"permission": 23, "content_type": 8, "object_pk": "93021", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1017, "fields": {"permission": 23, "content_type": 8, "object_pk": "93024", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1018, "fields": {"permission": 23, "content_type": 8, "object_pk": "93028", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1019, "fields": {"permission": 23, "content_type": 8, "object_pk": "93031", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1020, "fields": {"permission": 23, "content_type": 8, "object_pk": "93034", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1023, "fields": {"permission": 23, "content_type": 8, "object_pk": "93044", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1024, "fields": {"permission": 23, "content_type": 8, "object_pk": "93047", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1025, "fields": {"permission": 23, "content_type": 8, "object_pk": "93050", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1026, "fields": {"permission": 23, "content_type": 8, "object_pk": "93056", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1027, "fields": {"permission": 23, "content_type": 8, "object_pk": "93059", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1028, "fields": {"permission": 23, "content_type": 8, "object_pk": "93065", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1029, "fields": {"permission": 23, "content_type": 8, "object_pk": "93068", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1030, "fields": {"permission": 23, "content_type": 8, "object_pk": "93071", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1031, "fields": {"permission": 23, "content_type": 8, "object_pk": "93074", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1048, "fields": {"permission": 23, "content_type": 8, "object_pk": "93136", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1102, "fields": {"permission": 23, "content_type": 8, "object_pk": "93328", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1104, "fields": {"permission": 23, "content_type": 8, "object_pk": "93337", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1107, "fields": {"permission": 23, "content_type": 8, "object_pk": "93352", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1111, "fields": {"permission": 23, "content_type": 8, "object_pk": "93366", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1112, "fields": {"permission": 23, "content_type": 8, "object_pk": "93369", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1115, "fields": {"permission": 23, "content_type": 8, "object_pk": "93378", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1117, "fields": {"permission": 23, "content_type": 8, "object_pk": "93387", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1119, "fields": {"permission": 23, "content_type": 8, "object_pk": "93393", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1120, "fields": {"permission": 23, "content_type": 8, "object_pk": "93396", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1121, "fields": {"permission": 23, "content_type": 8, "object_pk": "93400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1124, "fields": {"permission": 23, "content_type": 8, "object_pk": "93409", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1125, "fields": {"permission": 23, "content_type": 8, "object_pk": "93415", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1126, "fields": {"permission": 23, "content_type": 8, "object_pk": "93418", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1133, "fields": {"permission": 23, "content_type": 8, "object_pk": "93442", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1134, "fields": {"permission": 23, "content_type": 8, "object_pk": "93445", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1135, "fields": {"permission": 23, "content_type": 8, "object_pk": "93448", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1140, "fields": {"permission": 23, "content_type": 8, "object_pk": "93469", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1143, "fields": {"permission": 23, "content_type": 8, "object_pk": "93481", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1144, "fields": {"permission": 23, "content_type": 8, "object_pk": "93484", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1145, "fields": {"permission": 23, "content_type": 8, "object_pk": "93487", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1151, "fields": {"permission": 23, "content_type": 8, "object_pk": "93510", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1152, "fields": {"permission": 23, "content_type": 8, "object_pk": "93513", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1153, "fields": {"permission": 23, "content_type": 8, "object_pk": "93516", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1161, "fields": {"permission": 23, "content_type": 8, "object_pk": "93540", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1163, "fields": {"permission": 23, "content_type": 8, "object_pk": "93546", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1168, "fields": {"permission": 23, "content_type": 8, "object_pk": "93561", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1171, "fields": {"permission": 23, "content_type": 8, "object_pk": "93573", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1175, "fields": {"permission": 23, "content_type": 8, "object_pk": "93588", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1178, "fields": {"permission": 23, "content_type": 8, "object_pk": "93600", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1180, "fields": {"permission": 23, "content_type": 8, "object_pk": "93609", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1181, "fields": {"permission": 23, "content_type": 8, "object_pk": "93615", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1188, "fields": {"permission": 23, "content_type": 8, "object_pk": "93639", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1189, "fields": {"permission": 23, "content_type": 8, "object_pk": "93642", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1190, "fields": {"permission": 23, "content_type": 8, "object_pk": "93645", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1192, "fields": {"permission": 23, "content_type": 8, "object_pk": "93651", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1193, "fields": {"permission": 23, "content_type": 8, "object_pk": "93654", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1194, "fields": {"permission": 23, "content_type": 8, "object_pk": "93657", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1195, "fields": {"permission": 23, "content_type": 8, "object_pk": "93663", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1200, "fields": {"permission": 23, "content_type": 8, "object_pk": "93678", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1202, "fields": {"permission": 23, "content_type": 8, "object_pk": "93684", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1207, "fields": {"permission": 23, "content_type": 8, "object_pk": "93702", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1208, "fields": {"permission": 23, "content_type": 8, "object_pk": "93705", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1211, "fields": {"permission": 23, "content_type": 8, "object_pk": "93714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1219, "fields": {"permission": 23, "content_type": 8, "object_pk": "93748", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1225, "fields": {"permission": 23, "content_type": 8, "object_pk": "93779", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1227, "fields": {"permission": 23, "content_type": 8, "object_pk": "93785", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1229, "fields": {"permission": 23, "content_type": 8, "object_pk": "93791", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1232, "fields": {"permission": 23, "content_type": 8, "object_pk": "93800", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1233, "fields": {"permission": 23, "content_type": 8, "object_pk": "93809", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1235, "fields": {"permission": 23, "content_type": 8, "object_pk": "93815", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1236, "fields": {"permission": 23, "content_type": 8, "object_pk": "93818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1242, "fields": {"permission": 23, "content_type": 8, "object_pk": "93836", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1243, "fields": {"permission": 23, "content_type": 8, "object_pk": "93839", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1248, "fields": {"permission": 23, "content_type": 8, "object_pk": "93854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1250, "fields": {"permission": 23, "content_type": 8, "object_pk": "93863", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1251, "fields": {"permission": 23, "content_type": 8, "object_pk": "93866", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1255, "fields": {"permission": 23, "content_type": 8, "object_pk": "93878", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1257, "fields": {"permission": 23, "content_type": 8, "object_pk": "93891", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1258, "fields": {"permission": 23, "content_type": 8, "object_pk": "93894", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1260, "fields": {"permission": 23, "content_type": 8, "object_pk": "93900", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1261, "fields": {"permission": 23, "content_type": 8, "object_pk": "93903", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1263, "fields": {"permission": 23, "content_type": 8, "object_pk": "93909", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1266, "fields": {"permission": 23, "content_type": 8, "object_pk": "93921", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1269, "fields": {"permission": 23, "content_type": 8, "object_pk": "93933", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1270, "fields": {"permission": 23, "content_type": 8, "object_pk": "93940", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1272, "fields": {"permission": 23, "content_type": 8, "object_pk": "93946", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1275, "fields": {"permission": 23, "content_type": 8, "object_pk": "93955", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1276, "fields": {"permission": 23, "content_type": 8, "object_pk": "93958", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1277, "fields": {"permission": 23, "content_type": 8, "object_pk": "93961", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1278, "fields": {"permission": 23, "content_type": 8, "object_pk": "93964", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1279, "fields": {"permission": 23, "content_type": 8, "object_pk": "93967", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1280, "fields": {"permission": 23, "content_type": 8, "object_pk": "93970", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1286, "fields": {"permission": 23, "content_type": 8, "object_pk": "93988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1287, "fields": {"permission": 23, "content_type": 8, "object_pk": "93991", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1290, "fields": {"permission": 23, "content_type": 8, "object_pk": "94003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1291, "fields": {"permission": 23, "content_type": 8, "object_pk": "94006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1292, "fields": {"permission": 23, "content_type": 8, "object_pk": "94009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1295, "fields": {"permission": 23, "content_type": 8, "object_pk": "94018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1303, "fields": {"permission": 24, "content_type": 8, "object_pk": "93003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1305, "fields": {"permission": 24, "content_type": 8, "object_pk": "93009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1306, "fields": {"permission": 24, "content_type": 8, "object_pk": "93012", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1307, "fields": {"permission": 24, "content_type": 8, "object_pk": "93015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1308, "fields": {"permission": 24, "content_type": 8, "object_pk": "93018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1309, "fields": {"permission": 24, "content_type": 8, "object_pk": "93021", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1310, "fields": {"permission": 24, "content_type": 8, "object_pk": "93024", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1311, "fields": {"permission": 24, "content_type": 8, "object_pk": "93028", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1312, "fields": {"permission": 24, "content_type": 8, "object_pk": "93031", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1313, "fields": {"permission": 24, "content_type": 8, "object_pk": "93034", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1316, "fields": {"permission": 24, "content_type": 8, "object_pk": "93044", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1317, "fields": {"permission": 24, "content_type": 8, "object_pk": "93047", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1318, "fields": {"permission": 24, "content_type": 8, "object_pk": "93050", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1319, "fields": {"permission": 24, "content_type": 8, "object_pk": "93056", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1320, "fields": {"permission": 24, "content_type": 8, "object_pk": "93059", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1321, "fields": {"permission": 24, "content_type": 8, "object_pk": "93065", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1322, "fields": {"permission": 24, "content_type": 8, "object_pk": "93068", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1323, "fields": {"permission": 24, "content_type": 8, "object_pk": "93071", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1324, "fields": {"permission": 24, "content_type": 8, "object_pk": "93074", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1341, "fields": {"permission": 24, "content_type": 8, "object_pk": "93136", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1395, "fields": {"permission": 24, "content_type": 8, "object_pk": "93328", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1397, "fields": {"permission": 24, "content_type": 8, "object_pk": "93337", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1400, "fields": {"permission": 24, "content_type": 8, "object_pk": "93352", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1404, "fields": {"permission": 24, "content_type": 8, "object_pk": "93366", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1405, "fields": {"permission": 24, "content_type": 8, "object_pk": "93369", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1408, "fields": {"permission": 24, "content_type": 8, "object_pk": "93378", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1410, "fields": {"permission": 24, "content_type": 8, "object_pk": "93387", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1412, "fields": {"permission": 24, "content_type": 8, "object_pk": "93393", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1413, "fields": {"permission": 24, "content_type": 8, "object_pk": "93396", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1414, "fields": {"permission": 24, "content_type": 8, "object_pk": "93400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1417, "fields": {"permission": 24, "content_type": 8, "object_pk": "93409", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1418, "fields": {"permission": 24, "content_type": 8, "object_pk": "93415", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1419, "fields": {"permission": 24, "content_type": 8, "object_pk": "93418", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1426, "fields": {"permission": 24, "content_type": 8, "object_pk": "93442", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1427, "fields": {"permission": 24, "content_type": 8, "object_pk": "93445", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1428, "fields": {"permission": 24, "content_type": 8, "object_pk": "93448", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1433, "fields": {"permission": 24, "content_type": 8, "object_pk": "93469", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1436, "fields": {"permission": 24, "content_type": 8, "object_pk": "93481", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1437, "fields": {"permission": 24, "content_type": 8, "object_pk": "93484", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1438, "fields": {"permission": 24, "content_type": 8, "object_pk": "93487", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1444, "fields": {"permission": 24, "content_type": 8, "object_pk": "93510", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1445, "fields": {"permission": 24, "content_type": 8, "object_pk": "93513", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1446, "fields": {"permission": 24, "content_type": 8, "object_pk": "93516", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1454, "fields": {"permission": 24, "content_type": 8, "object_pk": "93540", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1456, "fields": {"permission": 24, "content_type": 8, "object_pk": "93546", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1461, "fields": {"permission": 24, "content_type": 8, "object_pk": "93561", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1464, "fields": {"permission": 24, "content_type": 8, "object_pk": "93573", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1468, "fields": {"permission": 24, "content_type": 8, "object_pk": "93588", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1471, "fields": {"permission": 24, "content_type": 8, "object_pk": "93600", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1473, "fields": {"permission": 24, "content_type": 8, "object_pk": "93609", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1474, "fields": {"permission": 24, "content_type": 8, "object_pk": "93615", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1481, "fields": {"permission": 24, "content_type": 8, "object_pk": "93639", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1482, "fields": {"permission": 24, "content_type": 8, "object_pk": "93642", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1483, "fields": {"permission": 24, "content_type": 8, "object_pk": "93645", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1485, "fields": {"permission": 24, "content_type": 8, "object_pk": "93651", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1486, "fields": {"permission": 24, "content_type": 8, "object_pk": "93654", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1487, "fields": {"permission": 24, "content_type": 8, "object_pk": "93657", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1488, "fields": {"permission": 24, "content_type": 8, "object_pk": "93663", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1493, "fields": {"permission": 24, "content_type": 8, "object_pk": "93678", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1495, "fields": {"permission": 24, "content_type": 8, "object_pk": "93684", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1500, "fields": {"permission": 24, "content_type": 8, "object_pk": "93702", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1501, "fields": {"permission": 24, "content_type": 8, "object_pk": "93705", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1504, "fields": {"permission": 24, "content_type": 8, "object_pk": "93714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1512, "fields": {"permission": 24, "content_type": 8, "object_pk": "93748", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1518, "fields": {"permission": 24, "content_type": 8, "object_pk": "93779", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1520, "fields": {"permission": 24, "content_type": 8, "object_pk": "93785", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1522, "fields": {"permission": 24, "content_type": 8, "object_pk": "93791", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1525, "fields": {"permission": 24, "content_type": 8, "object_pk": "93800", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1526, "fields": {"permission": 24, "content_type": 8, "object_pk": "93809", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1528, "fields": {"permission": 24, "content_type": 8, "object_pk": "93815", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1529, "fields": {"permission": 24, "content_type": 8, "object_pk": "93818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1535, "fields": {"permission": 24, "content_type": 8, "object_pk": "93836", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1536, "fields": {"permission": 24, "content_type": 8, "object_pk": "93839", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1541, "fields": {"permission": 24, "content_type": 8, "object_pk": "93854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1543, "fields": {"permission": 24, "content_type": 8, "object_pk": "93863", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1544, "fields": {"permission": 24, "content_type": 8, "object_pk": "93866", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1548, "fields": {"permission": 24, "content_type": 8, "object_pk": "93878", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1550, "fields": {"permission": 24, "content_type": 8, "object_pk": "93891", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1551, "fields": {"permission": 24, "content_type": 8, "object_pk": "93894", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1553, "fields": {"permission": 24, "content_type": 8, "object_pk": "93900", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1554, "fields": {"permission": 24, "content_type": 8, "object_pk": "93903", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1556, "fields": {"permission": 24, "content_type": 8, "object_pk": "93909", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1559, "fields": {"permission": 24, "content_type": 8, "object_pk": "93921", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1562, "fields": {"permission": 24, "content_type": 8, "object_pk": "93933", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1563, "fields": {"permission": 24, "content_type": 8, "object_pk": "93940", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1565, "fields": {"permission": 24, "content_type": 8, "object_pk": "93946", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1568, "fields": {"permission": 24, "content_type": 8, "object_pk": "93955", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1569, "fields": {"permission": 24, "content_type": 8, "object_pk": "93958", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1570, "fields": {"permission": 24, "content_type": 8, "object_pk": "93961", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1571, "fields": {"permission": 24, "content_type": 8, "object_pk": "93964", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1572, "fields": {"permission": 24, "content_type": 8, "object_pk": "93967", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1573, "fields": {"permission": 24, "content_type": 8, "object_pk": "93970", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1579, "fields": {"permission": 24, "content_type": 8, "object_pk": "93988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1580, "fields": {"permission": 24, "content_type": 8, "object_pk": "93991", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1583, "fields": {"permission": 24, "content_type": 8, "object_pk": "94003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1584, "fields": {"permission": 24, "content_type": 8, "object_pk": "94006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1585, "fields": {"permission": 24, "content_type": 8, "object_pk": "94009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1588, "fields": {"permission": 24, "content_type": 8, "object_pk": "94018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 3973, "fields": {"permission": 23, "content_type": 8, "object_pk": "88902", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 4240, "fields": {"permission": 23, "content_type": 8, "object_pk": "92412", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 7515, "fields": {"permission": 24, "content_type": 8, "object_pk": "88902", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 7782, "fields": {"permission": 24, "content_type": 8, "object_pk": "92412", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 9760, "fields": {"permission": 23, "content_type": 8, "object_pk": "27245", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 13575, "fields": {"permission": 23, "content_type": 8, "object_pk": "46414", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 15601, "fields": {"permission": 23, "content_type": 8, "object_pk": "56248", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 16957, "fields": {"permission": 23, "content_type": 8, "object_pk": "62757", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 22688, "fields": {"permission": 23, "content_type": 8, "object_pk": "88219", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 23454, "fields": {"permission": 24, "content_type": 8, "object_pk": "27245", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 27269, "fields": {"permission": 24, "content_type": 8, "object_pk": "46414", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 29295, "fields": {"permission": 24, "content_type": 8, "object_pk": "56248", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 30651, "fields": {"permission": 24, "content_type": 8, "object_pk": "62757", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 36382, "fields": {"permission": 24, "content_type": 8, "object_pk": "88219", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37445, "fields": {"permission": 23, "content_type": 8, "object_pk": "92603", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37550, "fields": {"permission": 24, "content_type": 8, "object_pk": "92603", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37575, "fields": {"permission": 119, "content_type": 40, "object_pk": "98116", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37576, "fields": {"permission": 120, "content_type": 40, "object_pk": "98116", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39399, "fields": {"permission": 26, "content_type": 9, "object_pk": "26", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39454, "fields": {"permission": 26, "content_type": 9, "object_pk": "133", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39478, "fields": {"permission": 26, "content_type": 9, "object_pk": "183", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39549, "fields": {"permission": 26, "content_type": 9, "object_pk": "327", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39579, "fields": {"permission": 26, "content_type": 9, "object_pk": "384", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39588, "fields": {"permission": 26, "content_type": 9, "object_pk": "400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39822, "fields": {"permission": 26, "content_type": 9, "object_pk": "831", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39872, "fields": {"permission": 26, "content_type": 9, "object_pk": "926", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40122, "fields": {"permission": 26, "content_type": 9, "object_pk": "1390", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40142, "fields": {"permission": 26, "content_type": 9, "object_pk": "1424", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40157, "fields": {"permission": 26, "content_type": 9, "object_pk": "1454", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40292, "fields": {"permission": 26, "content_type": 9, "object_pk": "1701", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40301, "fields": {"permission": 26, "content_type": 9, "object_pk": "1718", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40454, "fields": {"permission": 26, "content_type": 9, "object_pk": "2006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40489, "fields": {"permission": 26, "content_type": 9, "object_pk": "2072", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40496, "fields": {"permission": 26, "content_type": 9, "object_pk": "2085", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40538, "fields": {"permission": 26, "content_type": 9, "object_pk": "2161", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40543, "fields": {"permission": 26, "content_type": 9, "object_pk": "2170", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40557, "fields": {"permission": 26, "content_type": 9, "object_pk": "2197", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40602, "fields": {"permission": 26, "content_type": 9, "object_pk": "2281", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40718, "fields": {"permission": 26, "content_type": 9, "object_pk": "2489", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40779, "fields": {"permission": 26, "content_type": 9, "object_pk": "2602", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40911, "fields": {"permission": 26, "content_type": 9, "object_pk": "2854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41046, "fields": {"permission": 26, "content_type": 9, "object_pk": "3105", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41076, "fields": {"permission": 26, "content_type": 9, "object_pk": "3162", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41582, "fields": {"permission": 26, "content_type": 9, "object_pk": "4096", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41674, "fields": {"permission": 26, "content_type": 9, "object_pk": "4269", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41937, "fields": {"permission": 26, "content_type": 9, "object_pk": "4767", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41997, "fields": {"permission": 26, "content_type": 9, "object_pk": "4877", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42221, "fields": {"permission": 26, "content_type": 9, "object_pk": "5294", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42228, "fields": {"permission": 26, "content_type": 9, "object_pk": "5308", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42318, "fields": {"permission": 26, "content_type": 9, "object_pk": "5478", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42436, "fields": {"permission": 26, "content_type": 9, "object_pk": "5691", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42466, "fields": {"permission": 26, "content_type": 9, "object_pk": "5749", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42602, "fields": {"permission": 26, "content_type": 9, "object_pk": "6004", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42775, "fields": {"permission": 26, "content_type": 9, "object_pk": "6324", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42985, "fields": {"permission": 26, "content_type": 9, "object_pk": "6700", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43120, "fields": {"permission": 26, "content_type": 9, "object_pk": "6947", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43396, "fields": {"permission": 26, "content_type": 9, "object_pk": "7454", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43489, "fields": {"permission": 26, "content_type": 9, "object_pk": "7622", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43690, "fields": {"permission": 26, "content_type": 9, "object_pk": "7986", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43961, "fields": {"permission": 26, "content_type": 9, "object_pk": "8482", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44131, "fields": {"permission": 26, "content_type": 9, "object_pk": "8798", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44397, "fields": {"permission": 26, "content_type": 9, "object_pk": "9287", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44489, "fields": {"permission": 26, "content_type": 9, "object_pk": "9455", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44499, "fields": {"permission": 26, "content_type": 9, "object_pk": "9475", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44638, "fields": {"permission": 26, "content_type": 9, "object_pk": "9735", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44790, "fields": {"permission": 26, "content_type": 9, "object_pk": "10015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44924, "fields": {"permission": 26, "content_type": 9, "object_pk": "10265", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45212, "fields": {"permission": 26, "content_type": 9, "object_pk": "10793", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45448, "fields": {"permission": 26, "content_type": 9, "object_pk": "11238", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45620, "fields": {"permission": 26, "content_type": 9, "object_pk": "11556", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45749, "fields": {"permission": 26, "content_type": 9, "object_pk": "11799", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45969, "fields": {"permission": 26, "content_type": 9, "object_pk": "12211", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46265, "fields": {"permission": 26, "content_type": 9, "object_pk": "12758", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46538, "fields": {"permission": 26, "content_type": 9, "object_pk": "13253", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46611, "fields": {"permission": 26, "content_type": 9, "object_pk": "13382", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46791, "fields": {"permission": 26, "content_type": 9, "object_pk": "13714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46937, "fields": {"permission": 26, "content_type": 9, "object_pk": "13987", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 47277, "fields": {"permission": 26, "content_type": 9, "object_pk": "14608", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48165, "fields": {"permission": 26, "content_type": 9, "object_pk": "16242", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48200, "fields": {"permission": 26, "content_type": 9, "object_pk": "16310", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48351, "fields": {"permission": 26, "content_type": 9, "object_pk": "16594", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48496, "fields": {"permission": 26, "content_type": 9, "object_pk": "16864", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49327, "fields": {"permission": 26, "content_type": 9, "object_pk": "18374", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49341, "fields": {"permission": 26, "content_type": 9, "object_pk": "18400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49771, "fields": {"permission": 26, "content_type": 9, "object_pk": "19215", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49976, "fields": {"permission": 26, "content_type": 9, "object_pk": "19599", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50488, "fields": {"permission": 26, "content_type": 9, "object_pk": "20549", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50550, "fields": {"permission": 26, "content_type": 9, "object_pk": "20659", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50668, "fields": {"permission": 26, "content_type": 9, "object_pk": "20872", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50731, "fields": {"permission": 26, "content_type": 9, "object_pk": "20988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51189, "fields": {"permission": 26, "content_type": 9, "object_pk": "21818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51199, "fields": {"permission": 26, "content_type": 9, "object_pk": "22216", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51204, "fields": {"permission": 26, "content_type": 9, "object_pk": "22259", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51212, "fields": {"permission": 26, "content_type": 9, "object_pk": "22322", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51215, "fields": {"permission": 26, "content_type": 9, "object_pk": "22354", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51226, "fields": {"permission": 26, "content_type": 9, "object_pk": "22475", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51230, "fields": {"permission": 26, "content_type": 9, "object_pk": "22494", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51235, "fields": {"permission": 26, "content_type": 9, "object_pk": "22526", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51239, "fields": {"permission": 26, "content_type": 9, "object_pk": "22545", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51241, "fields": {"permission": 26, "content_type": 9, "object_pk": "22558", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51244, "fields": {"permission": 26, "content_type": 9, "object_pk": "22570", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59098, "fields": {"permission": 26, "content_type": 9, "object_pk": "93025", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59099, "fields": {"permission": 26, "content_type": 9, "object_pk": "93035", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59100, "fields": {"permission": 26, "content_type": 9, "object_pk": "93051", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59102, "fields": {"permission": 26, "content_type": 9, "object_pk": "93060", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59104, "fields": {"permission": 26, "content_type": 9, "object_pk": "93075", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59141, "fields": {"permission": 26, "content_type": 9, "object_pk": "93379", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59143, "fields": {"permission": 26, "content_type": 9, "object_pk": "93397", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59144, "fields": {"permission": 26, "content_type": 9, "object_pk": "93410", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59148, "fields": {"permission": 26, "content_type": 9, "object_pk": "93449", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59158, "fields": {"permission": 26, "content_type": 9, "object_pk": "93562", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59166, "fields": {"permission": 26, "content_type": 9, "object_pk": "93610", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59170, "fields": {"permission": 26, "content_type": 9, "object_pk": "93658", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59174, "fields": {"permission": 26, "content_type": 9, "object_pk": "93715", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59181, "fields": {"permission": 26, "content_type": 9, "object_pk": "93749", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59190, "fields": {"permission": 26, "content_type": 9, "object_pk": "93804", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59192, "fields": {"permission": 26, "content_type": 9, "object_pk": "93855", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59194, "fields": {"permission": 26, "content_type": 9, "object_pk": "93879", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59203, "fields": {"permission": 26, "content_type": 9, "object_pk": "93934", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59205, "fields": {"permission": 26, "content_type": 9, "object_pk": "93937", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59391, "fields": {"permission": 122, "content_type": 41, "object_pk": "99591", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59392, "fields": {"permission": 123, "content_type": 41, "object_pk": "99591", "group": 2}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2016-04-04T13:17:57Z", "user": 11, "content_type": 10, "object_id": "18", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "15", "object_repr": "Ehrenmitglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "14", "object_repr": "Wirkliches Mitglied (w. M.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "13", "object_repr": "Korrespondierendes Mitglied im Ausland (k. M. A.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "12", "object_repr": "Korrespondierendes Mitglied im Inland (k. M. I.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2016-04-05T15:41:22Z", "user": 11, "content_type": 32, "object_id": "7", "object_repr": "ist Nachfolger von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2016-04-05T15:41:39Z", "user": 11, "content_type": 32, "object_id": "5", "object_repr": "ist Vorg\u00e4nger von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2016-04-05T15:42:02Z", "user": 11, "content_type": 32, "object_id": "8", "object_repr": "ist Teil von", "action_flag": 2, "change_message": "Changed name."}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2016-04-05T15:43:00Z", "user": 11, "content_type": 32, "object_id": "8", "object_repr": "ist Teil von", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2016-04-07T11:10:33Z", "user": 12, "content_type": 4, "object_id": "13", "object_repr": "oebl", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2016-04-07T11:11:00Z", "user": 12, "content_type": 4, "object_id": "13", "object_repr": "oebl", "action_flag": 2, "change_message": "Changed is_staff and user_permissions."}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2016-04-13T15:46:02Z", "user": 12, "content_type": 24, "object_id": "40", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2016-04-14T11:55:13Z", "user": 12, "content_type": 24, "object_id": "50", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2016-04-14T11:55:29Z", "user": 12, "content_type": 24, "object_id": "53", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2016-04-14T12:41:46Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2016-04-15T07:22:05Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2016-04-15T07:22:26Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2016-04-18T08:22:56Z", "user": 11, "content_type": 25, "object_id": "105", "object_repr": "ist Vater", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2016-04-18T08:23:07Z", "user": 11, "content_type": 25, "object_id": "106", "object_repr": "hat Vater", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "38", "object_repr": "hat Wirkliches Mitglied (w. M.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "37", "object_repr": "hat Ehrenmitglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "36", "object_repr": "hat Korrespondierendes Mitglied im Ausland (k. M. A.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "35", "object_repr": "hat Korrespondierendes Mitglied im Inland (k. M. I.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "34", "object_repr": "hat Kuratorstellvertreter(in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "33", "object_repr": "hat Pr\u00e4sident(in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "32", "object_repr": "hat Miglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "31", "object_repr": "hat Obmann/Obfrau", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2016-04-18T11:07:39Z", "user": 12, "content_type": 56, "object_id": "6", "object_repr": "testcollection 18.4", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2016-04-18T11:16:20Z", "user": 12, "content_type": 24, "object_id": "107", "object_repr": "Editlogs", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2016-04-26T09:31:21Z", "user": 12, "content_type": 26, "object_id": "44", "object_repr": "place of death", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2016-04-26T09:31:47Z", "user": 12, "content_type": 26, "object_id": "43", "object_repr": "place of birth", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2016-04-27T10:26:06Z", "user": 12, "content_type": 31, "object_id": "108", "object_repr": "located in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2016-04-28T09:03:10Z", "user": 12, "content_type": 26, "object_id": "109", "object_repr": "studied in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2016-05-02T10:05:25Z", "user": 11, "content_type": 25, "object_id": "100", "object_repr": "family member", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2016-05-02T10:07:16Z", "user": 11, "content_type": 26, "object_id": "44", "object_repr": "died in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2016-05-02T10:07:33Z", "user": 11, "content_type": 26, "object_id": "43", "object_repr": "born in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2016-05-03T09:51:29Z", "user": 12, "content_type": 24, "object_id": "110", "object_repr": "Place accuracy test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2016-05-03T11:01:33Z", "user": 12, "content_type": 40, "object_id": "23993", "object_repr": "Defregger, Franz von (studied in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2016-05-09T08:58:18Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2016-05-09T08:58:25Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2016-05-09T10:07:01Z", "user": 12, "content_type": 24, "object_id": "236", "object_repr": "Place review comments", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2016-05-09T10:10:38Z", "user": 12, "content_type": 24, "object_id": "2", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2016-05-23T07:03:50Z", "user": 12, "content_type": 27, "object_id": "279", "object_repr": "is Vizepr\u00e4sident von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2016-05-23T09:31:15Z", "user": 12, "content_type": 26, "object_id": "237", "object_repr": "wirkte in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "245", "object_repr": "Kind", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "244", "object_repr": "Eltern", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "243", "object_repr": "Vater", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "242", "object_repr": "Mutter", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2016-05-25T11:21:38Z", "user": 12, "content_type": 25, "object_id": "421", "object_repr": "Vater/Mutter", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2016-06-06T07:44:47Z", "user": 12, "content_type": 17, "object_id": "459", "object_repr": "Graf", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2016-06-06T07:45:44Z", "user": 12, "content_type": 17, "object_id": "459", "object_repr": "Graf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2016-06-21T09:34:32Z", "user": 12, "content_type": 3, "object_id": "2", "object_repr": "apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2016-06-21T09:34:54Z", "user": 12, "content_type": 4, "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 475, "fields": {"action_time": "2016-06-23T13:50:16Z", "user": 11, "content_type": 25, "object_id": "422", "object_repr": "family member", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 476, "fields": {"action_time": "2016-06-23T13:50:22Z", "user": 11, "content_type": 25, "object_id": "423", "object_repr": "friend", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2016-08-02T08:41:51Z", "user": 12, "content_type": 61, "object_id": "1", "object_repr": "highlight places", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2016-08-02T08:43:38Z", "user": 12, "content_type": 64, "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2016-08-02T08:44:13Z", "user": 12, "content_type": 65, "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2016-08-02T08:45:35Z", "user": 12, "content_type": 70, "object_id": "1", "object_repr": "\u00d6BL Haupttext", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2016-08-02T08:45:50Z", "user": 12, "content_type": 70, "object_id": "2", "object_repr": "\u00d6bl Kurzinfo", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2016-08-02T08:49:51Z", "user": 12, "content_type": 64, "object_id": "2", "object_repr": "Person Institution Form", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2016-08-02T08:50:13Z", "user": 12, "content_type": 65, "object_id": "2", "object_repr": "Person Institution Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2016-08-05T09:01:30Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "KaiserM", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2016-08-05T09:02:10Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "KaiserM", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2016-08-05T09:02:40Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2016-08-05T12:44:55Z", "user": 12, "content_type": 4, "object_id": "15", "object_repr": "JKerschner", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2016-08-05T12:45:10Z", "user": 12, "content_type": 4, "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2016-08-22T14:47:23Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2016-08-22T14:47:41Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2016-08-26T08:00:33Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2016-08-26T08:00:50Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "is_staff, is_superuser und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2016-08-26T08:01:14Z", "user": 12, "content_type": 72, "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2016-08-26T08:01:26Z", "user": 12, "content_type": 72, "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2016-09-05T08:05:05Z", "user": 12, "content_type": 4, "object_id": "18", "object_repr": "CGruber", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2016-09-05T08:05:29Z", "user": 12, "content_type": 4, "object_id": "18", "object_repr": "CGruber", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2016-09-06T10:50:39Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2016-09-06T10:51:00Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2016-09-06T14:33:23Z", "user": 12, "content_type": 25, "object_id": "5608", "object_repr": "undefined", "action_flag": 2, "change_message": "name_reverse ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2016-09-07T10:05:46Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2016-09-07T10:05:53Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2016-09-07T12:36:40Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2016-09-07T12:36:55Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2016-09-21T09:15:20Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2016-09-21T09:15:41Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2016-10-03T14:34:28Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2016-10-03T14:34:40Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "is_staff ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2016-10-03T14:34:56Z", "user": 12, "content_type": 3, "object_id": "3", "object_repr": "staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2016-10-03T14:39:11Z", "user": 12, "content_type": 3, "object_id": "3", "object_repr": "staribacher", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2016-10-03T14:39:40Z", "user": 12, "content_type": 56, "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2016-10-03T14:45:29Z", "user": 12, "content_type": 23, "object_id": "5772", "object_repr": "research dataset", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2016-10-03T14:45:47Z", "user": 12, "content_type": 56, "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "collection_type ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2016-10-03T14:47:21Z", "user": 12, "content_type": 72, "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2016-10-06T06:56:20Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2016-10-06T06:56:40Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2016-10-06T06:58:12Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2016-10-06T06:58:30Z", "user": 12, "content_type": 56, "object_id": "17", "object_repr": "Mittelalter 7.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2016-10-06T07:00:34Z", "user": 12, "content_type": 56, "object_id": "16", "object_repr": "\u00d6BL additional import missing XMLs 7.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2016-10-06T07:00:50Z", "user": 12, "content_type": 56, "object_id": "15", "object_repr": "K\u00fcnstlerhaus 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2016-10-06T07:01:03Z", "user": 12, "content_type": 56, "object_id": "11", "object_repr": "Presse 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2016-10-06T07:01:25Z", "user": 12, "content_type": 56, "object_id": "7", "object_repr": "\u00d6BL complete import test 30.8.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2016-10-06T07:01:46Z", "user": 12, "content_type": 56, "object_id": "8", "object_repr": "\u00d6BL additional import 66lfg 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2016-10-06T07:01:55Z", "user": 12, "content_type": 56, "object_id": "9", "object_repr": "\u00d6BL additional import 4online 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2016-10-06T07:31:41Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2016-10-06T07:32:15Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2016-10-07T16:13:36Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2016-10-07T16:13:56Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2016-10-07T16:14:12Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2016-10-07T16:14:34Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "BKrautgartner", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2016-10-12T12:25:02Z", "user": 12, "content_type": 4, "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2016-10-12T12:25:40Z", "user": 12, "content_type": 4, "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2016-10-12T12:27:20Z", "user": 12, "content_type": 72, "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2016-10-14T11:10:59Z", "user": 12, "content_type": 64, "object_id": "3", "object_repr": "Person Person", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2016-10-14T11:12:53Z", "user": 12, "content_type": 65, "object_id": "3", "object_repr": "Person Person Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2016-10-14T11:13:18Z", "user": 12, "content_type": 64, "object_id": "1", "object_repr": "Person Place Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2016-10-14T11:13:24Z", "user": 12, "content_type": 64, "object_id": "3", "object_repr": "Person Person Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2016-10-24T09:04:11Z", "user": 12, "content_type": 4, "object_id": "24", "object_repr": "PRumpolt", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2016-10-24T09:04:27Z", "user": 12, "content_type": 4, "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2016-10-25T10:05:10Z", "user": 12, "content_type": 71, "object_id": "1", "object_repr": "Default", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2016-12-02T15:27:02Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 830, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "4", "object_repr": "ggaenser", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 831, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "2", "object_repr": "ghoffmann", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 832, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "7", "object_repr": "imarkova", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 833, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "10", "object_repr": "jfeichtinger", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 834, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "3", "object_repr": "ngoll", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 835, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "6", "object_repr": "rburgstaller", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 836, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "5", "object_repr": "sgoellner", "action_flag": 3, "change_message": ""}}] \ No newline at end of file diff --git a/apis_core/apis_entities/fixtures/db_v5.json b/apis_core/apis_entities/fixtures/db_v5.json index 0890a61..6197401 100644 --- a/apis_core/apis_entities/fixtures/db_v5.json +++ b/apis_core/apis_entities/fixtures/db_v5.json @@ -10108,8 +10108,8 @@ { "fields": { "collection": [], - "related_personA": 92412, - "related_personB": 92603, + "related_persona": 92412, + "related_personb": 92603, "relation_type": 5608, "text": [] }, @@ -10119,8 +10119,8 @@ { "fields": { "collection": [], - "related_personA": 92603, - "related_personB": 88902, + "related_persona": 92603, + "related_personb": 88902, "relation_type": 5608, "text": [] }, @@ -10130,8 +10130,8 @@ { "fields": { "collection": [], - "related_personA": 92603, - "related_personB": 27245, + "related_persona": 92603, + "related_personb": 27245, "relation_type": 5608, "text": [] }, @@ -10141,8 +10141,8 @@ { "fields": { "collection": [], - "related_personA": 92603, - "related_personB": 88219, + "related_persona": 92603, + "related_personb": 88219, "relation_type": 5608, "text": [] }, @@ -10152,8 +10152,8 @@ { "fields": { "collection": [], - "related_personA": 92603, - "related_personB": 62757, + "related_persona": 92603, + "related_personb": 62757, "relation_type": 5608, "text": [] }, @@ -10163,8 +10163,8 @@ { "fields": { "collection": [], - "related_personA": 92603, - "related_personB": 56248, + "related_persona": 92603, + "related_personb": 56248, "relation_type": 5608, "text": [] }, @@ -10174,8 +10174,8 @@ { "fields": { "collection": [], - "related_personA": 92603, - "related_personB": 46414, + "related_persona": 92603, + "related_personb": 46414, "relation_type": 5608, "text": [] }, diff --git a/apis_core/apis_entities/fixtures/fixtures_3_5_17.json b/apis_core/apis_entities/fixtures/fixtures_3_5_17.json index 698e5c6..902c135 100644 --- a/apis_core/apis_entities/fixtures/fixtures_3_5_17.json +++ b/apis_core/apis_entities/fixtures/fixtures_3_5_17.json @@ -1 +1 @@ -[{"model": "contenttypes.contenttype", "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "labels", "model": "label"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "person"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "place"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "event"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "work"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "project"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "annotation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "vocabularyapi"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "menuentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "reversion", "model": "version"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "uricandidate"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "texthigh"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "annotationproject"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "authtoken", "model": "token"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "guardian", "model": "userobjectpermission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "guardian", "model": "groupobjectpermission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutionworkrelation"}}, {"model": "sessions.session", "pk": "0952nbb3skn1yipximadakv8bg67u2fm", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-21T15:56:15Z"}}, {"model": "sessions.session", "pk": "0ffzd5j8mj2loz7w9o63ti2vg63isgsj", "fields": {"session_data": "YjQzM2RhNWQwMjIyMjcyYWJhYTVhZjUxMWI0MjA3ZjdlYTkxMTIwYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-04-24T09:00:32Z"}}, {"model": "sessions.session", "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-12T09:16:06Z"}}, {"model": "sessions.session", "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-26T10:05:04Z"}}, {"model": "sessions.session", "pk": "0pb9zfbqg68p8dkf9il8yd1nfnet4hou", "fields": {"session_data": "YzMwNGIyNGIyYmFmNTJhZWQwZTY3YjQ2MDRmMTlmZDJmZjE5YTFlNzp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNiJdfQ==", "expire_date": "2017-05-12T11:29:11Z"}}, {"model": "sessions.session", "pk": "0yj2f7pv56w61lazsa2btsyfl3vj5ggj", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-04-18T19:28:03Z"}}, {"model": "sessions.session", "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-28T09:36:22Z"}}, {"model": "sessions.session", "pk": "17188fqkhwwemz91phd0gdgifcpuw531", "fields": {"session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==", "expire_date": "2016-12-23T14:35:05Z"}}, {"model": "sessions.session", "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn", "fields": {"session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9", "expire_date": "2016-11-10T13:45:57Z"}}, {"model": "sessions.session", "pk": "1iccsxivof263x10kvzx24cpvfuisbsi", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T10:09:36Z"}}, {"model": "sessions.session", "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T08:25:02Z"}}, {"model": "sessions.session", "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-03T06:28:05Z"}}, {"model": "sessions.session", "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-29T09:34:16Z"}}, {"model": "sessions.session", "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-17T10:44:53Z"}}, {"model": "sessions.session", "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T13:49:39Z"}}, {"model": "sessions.session", "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:08:50Z"}}, {"model": "sessions.session", "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-10T08:17:25Z"}}, {"model": "sessions.session", "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-26T14:15:06Z"}}, {"model": "sessions.session", "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:51:31Z"}}, {"model": "sessions.session", "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T13:15:39Z"}}, {"model": "sessions.session", "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-13T08:50:52Z"}}, {"model": "sessions.session", "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T15:43:29Z"}}, {"model": "sessions.session", "pk": "3f0z4r7zm0tht811km9py85tymlqp00t", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T16:42:42Z"}}, {"model": "sessions.session", "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T12:37:18Z"}}, {"model": "sessions.session", "pk": "3jko01lpmo2mga91cswnbozalltzmk3y", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-04T09:48:21Z"}}, {"model": "sessions.session", "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T07:40:34Z"}}, {"model": "sessions.session", "pk": "3rxj3sq56irbv3dsa6p238v3yni8or63", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-02-06T12:38:47Z"}}, {"model": "sessions.session", "pk": "418j45avvq5u7hb2a25lbny53jbpvs07", "fields": {"session_data": "ZmMxNjFlMmE4YWYyODI5NTk4MTJkMmQ1N2YwYjRiNjI1NWMwZDE4Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCIsIl9hdXRoX3VzZXJfaWQiOiIxNCJ9", "expire_date": "2017-01-03T15:38:05Z"}}, {"model": "sessions.session", "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-05-12T13:36:05Z"}}, {"model": "sessions.session", "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T09:34:31Z"}}, {"model": "sessions.session", "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:28:30Z"}}, {"model": "sessions.session", "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-08T08:03:34Z"}}, {"model": "sessions.session", "pk": "4n2qt23rcidnpg4kzgkda4kpex4lmfa5", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-24T13:31:41Z"}}, {"model": "sessions.session", "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-16T15:23:26Z"}}, {"model": "sessions.session", "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-26T16:58:24Z"}}, {"model": "sessions.session", "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a", "fields": {"session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=", "expire_date": "2016-03-28T08:35:56Z"}}, {"model": "sessions.session", "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:15:48Z"}}, {"model": "sessions.session", "pk": "530ad4x705b6e19mkq2p46a9hvib918m", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T10:26:56Z"}}, {"model": "sessions.session", "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-20T13:12:52Z"}}, {"model": "sessions.session", "pk": "59gq2d5fuwt2524677c8asdzlx2hnwre", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-03-24T09:19:20Z"}}, {"model": "sessions.session", "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-25T10:51:39Z"}}, {"model": "sessions.session", "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw", "fields": {"session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2016-12-29T15:38:59Z"}}, {"model": "sessions.session", "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-21T14:12:41Z"}}, {"model": "sessions.session", "pk": "5s6tkp2xjydwbep1z8iuavyf6dhbdnq9", "fields": {"session_data": "OTliNDY0YWRlNmUwOTVkOWJjNDExNDViOTBlNjFhOTZiNzkwY2JjZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjExIiwiMTAiLCI4IiwiOSIsIjEyIiwiNTEiLCI1MiIsIjQ2IiwiNDQiLCI0NSIsIjQ3IiwiNDIiLCI0MSIsIjM5IiwiNDAiLCI0MyIsIjQ5IiwiNDgiLCI1MCIsIjUzIl0sIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJhbm5vdGF0aW9uX3Byb2plY3QiOiIzIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCJdfQ==", "expire_date": "2017-04-17T10:46:44Z"}}, {"model": "sessions.session", "pk": "5vhcdmzs9c58duuxf2jky7fpdzqoz1lo", "fields": {"session_data": "ZjVjNjVmZWI5ZjE2YzU2MDViNTEzNmUxZWE0YTlhMmIzYzA5OWRmOTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCIsIl9hdXRoX3VzZXJfaWQiOiIyMyJ9", "expire_date": "2017-01-25T10:00:14Z"}}, {"model": "sessions.session", "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:22:04Z"}}, {"model": "sessions.session", "pk": "62u81vaiix78ydua95lqixfyi1d6jt1p", "fields": {"session_data": "NDJlMDI4MjUxM2I1OTVlMGY1YzZjNzc2MzE3ZjRhNTJhZGU2M2E4Mzp7InVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMTQiXSwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjQwIl0sImFubm90YXRpb25fcHJvamVjdCI6bnVsbH0=", "expire_date": "2017-04-20T08:35:44Z"}}, {"model": "sessions.session", "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-09T08:10:25Z"}}, {"model": "sessions.session", "pk": "6k16reryrvgvlux4peggv2dwnpdw018v", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-08-26T11:22:37Z"}}, {"model": "sessions.session", "pk": "6konr8g4jk3afgamkyg7p5uqq3ripype", "fields": {"session_data": "Njk3OWQwMDIzM2FmOTQyZjMyN2IzNDU2OTk5Y2Y1MDE2MWVjMDdhYTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiYW5ub3RhdGlvbl9wcm9qZWN0IjoiNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiJ9", "expire_date": "2017-02-20T11:14:29Z"}}, {"model": "sessions.session", "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429", "fields": {"session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T12:26:52Z"}}, {"model": "sessions.session", "pk": "74su7asx1chf5ug62fj4hitwaljxgkiz", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T10:59:37Z"}}, {"model": "sessions.session", "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T10:37:41Z"}}, {"model": "sessions.session", "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-08T10:43:50Z"}}, {"model": "sessions.session", "pk": "7c01s688teucprvj9wuoiuebtl8bff2d", "fields": {"session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-21T11:56:57Z"}}, {"model": "sessions.session", "pk": "7d7gd01ktm8aijqa17q84vq301a6ybus", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-17T14:27:57Z"}}, {"model": "sessions.session", "pk": "7r7v7jo8il027rwdvu3dea9lp9vg24bp", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T09:46:56Z"}}, {"model": "sessions.session", "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T11:41:48Z"}}, {"model": "sessions.session", "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-17T10:07:28Z"}}, {"model": "sessions.session", "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-06-21T12:35:35Z"}}, {"model": "sessions.session", "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T11:46:41Z"}}, {"model": "sessions.session", "pk": "8unallqs0trfk7pzslbcijnjx8j9721c", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-15T18:47:12Z"}}, {"model": "sessions.session", "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-12-14T16:16:28Z"}}, {"model": "sessions.session", "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-31T10:09:32Z"}}, {"model": "sessions.session", "pk": "8z8im2wcfj9tfbvvwixxbclbliyp6dwm", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T08:39:53Z"}}, {"model": "sessions.session", "pk": "9bc9ii4wa0d168dmatgrlqysta0wd3x8", "fields": {"session_data": "ZTlhMDFkMWVmYjNiMmYxNjU2ZDI5ODc1MDNhN2FkNjM1YjdmMDQ3NDp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-19T17:06:27Z"}}, {"model": "sessions.session", "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-12T08:26:15Z"}}, {"model": "sessions.session", "pk": "9mf1xzu1346ss0edpll2dwougyoippqv", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-01-02T13:44:56Z"}}, {"model": "sessions.session", "pk": "9nmr133amdnyjvxlc5fdq6vuul0kmm7d", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-22T09:52:23Z"}}, {"model": "sessions.session", "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-07T09:00:09Z"}}, {"model": "sessions.session", "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-11T11:10:15Z"}}, {"model": "sessions.session", "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg", "fields": {"session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2017-01-03T09:23:20Z"}}, {"model": "sessions.session", "pk": "9yu7ogy7fe8ci49tr7ohwnom17f93e8w", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-10T13:19:29Z"}}, {"model": "sessions.session", "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T14:19:29Z"}}, {"model": "sessions.session", "pk": "a3w6oc0o9czm37r9fp1w34sujjamhfko", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-03-25T09:43:24Z"}}, {"model": "sessions.session", "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-04T08:02:47Z"}}, {"model": "sessions.session", "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-20T19:21:08Z"}}, {"model": "sessions.session", "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T11:54:57Z"}}, {"model": "sessions.session", "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T07:44:25Z"}}, {"model": "sessions.session", "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T12:01:50Z"}}, {"model": "sessions.session", "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T09:47:15Z"}}, {"model": "sessions.session", "pk": "c0mebo725euvitftiukwfw6dxip0koqs", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-21T08:38:04Z"}}, {"model": "sessions.session", "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:30:05Z"}}, {"model": "sessions.session", "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-10-19T15:55:59Z"}}, {"model": "sessions.session", "pk": "ccvhxts0xm4i007yj124auwtm1102ylc", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-30T11:48:28Z"}}, {"model": "sessions.session", "pk": "ck8xdgdkdqqgbfraxhpe5w78rluhcqdb", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2017-04-11T21:35:09Z"}}, {"model": "sessions.session", "pk": "co8qi0mvm1x1zwcfmd6lw0xe9n0exs2h", "fields": {"session_data": "Nzc0ZGRlY2UzNDMyNGNhOTVjZmMyMTkwMDA0ZDhjMmE3ZDFkYmVlNDp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMSIsIjExIiwiMTIiLCIxMyIsIjE0IiwiMTUiLCIxNiIsIjE3IiwiMTgiLCIxOSIsIjIwIiwiMjEiLCIyMiIsIjIzIiwiMjQiLCIyNSJdLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-26T10:55:04Z"}}, {"model": "sessions.session", "pk": "cyjaej15ap3vpirmuoxvua3ayv13l51w", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-16T13:01:23Z"}}, {"model": "sessions.session", "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T07:52:18Z"}}, {"model": "sessions.session", "pk": "d1e3bc2mhdeaq4zehswfyi3yrz1pzkle", "fields": {"session_data": "MWU1N2QyOThmZDA0NDI1ZTI1ZWUyNzVmMTkyMmEyNWIzYmRmYjQ4NDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjExIiwiMTAiLCI4IiwiOSIsIjEyIiwiNTEiLCI1MiIsIjQ2IiwiNDQiLCI0NSIsIjQ3IiwiNDIiLCI0MSIsIjM5IiwiNDAiLCI0MyIsIjQ5IiwiNDgiLCI1MCIsIjUzIl0sIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJhbm5vdGF0aW9uX3Byb2plY3QiOiIzIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCJdfQ==", "expire_date": "2017-04-11T15:45:48Z"}}, {"model": "sessions.session", "pk": "d3ui57peh8haq74stm30y2og6mlzls1b", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-05-09T05:33:01Z"}}, {"model": "sessions.session", "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-11-07T12:37:20Z"}}, {"model": "sessions.session", "pk": "d7lbdggp0zfcu6b1lfo027oi4zk2z2si", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-03-28T19:52:26Z"}}, {"model": "sessions.session", "pk": "da9ald43zlct5w8wjy2jer4uuw1me508", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T07:57:42Z"}}, {"model": "sessions.session", "pk": "dcscnejfbv3a961j405abjewr5xb7vhi", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2017-03-23T14:08:27Z"}}, {"model": "sessions.session", "pk": "dfzo1j1p9og5ckpnj773q0bn2eehhovi", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-14T15:13:03Z"}}, {"model": "sessions.session", "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-12T19:05:43Z"}}, {"model": "sessions.session", "pk": "di0u7jcqjsh3ytgb3zllprdujmo1za2f", "fields": {"session_data": "NjUwNDUxOTE3MjM4YjNjZDVjMGJlMTA4Y2YwODViNDlkNmRkNjhhZDp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-03-15T20:40:41Z"}}, {"model": "sessions.session", "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T14:05:09Z"}}, {"model": "sessions.session", "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T08:00:35Z"}}, {"model": "sessions.session", "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-16T13:41:51Z"}}, {"model": "sessions.session", "pk": "dqj5jfcpqu0usn7e65drhcizg79ci63o", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-03T11:00:01Z"}}, {"model": "sessions.session", "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T10:15:28Z"}}, {"model": "sessions.session", "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T08:42:22Z"}}, {"model": "sessions.session", "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y", "fields": {"session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-14T11:11:40Z"}}, {"model": "sessions.session", "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-14T14:53:54Z"}}, {"model": "sessions.session", "pk": "erwufifibov75oo9c5uklkwh5itqskcj", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-27T09:07:15Z"}}, {"model": "sessions.session", "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-21T15:40:51Z"}}, {"model": "sessions.session", "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-10-26T12:38:51Z"}}, {"model": "sessions.session", "pk": "fwapxlyzximbjixj3zubqvnzfklnp5ui", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-05-06T07:40:53Z"}}, {"model": "sessions.session", "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:23Z"}}, {"model": "sessions.session", "pk": "g6nyqamxt80gdy5kh21zw4lix7reinpa", "fields": {"session_data": "YzQ3ZDViYzg3NzYwMjE3YzQwN2RkNDUyNmY2YmIzMWU0MGRjYzBkMTp7ImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-04-25T19:43:56Z"}}, {"model": "sessions.session", "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-06-08T11:35:30Z"}}, {"model": "sessions.session", "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-06-07T13:29:28Z"}}, {"model": "sessions.session", "pk": "gi62wdj66c5j78be7q372m29mv6gdora", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-28T08:16:12Z"}}, {"model": "sessions.session", "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-21T07:03:28Z"}}, {"model": "sessions.session", "pk": "gjuve267k4260hvyils2ls2496ak9z37", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T17:18:28Z"}}, {"model": "sessions.session", "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T07:59:21Z"}}, {"model": "sessions.session", "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-05T14:43:01Z"}}, {"model": "sessions.session", "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-24T08:40:28Z"}}, {"model": "sessions.session", "pk": "hh8sk14s36jb19j341qt4njqf8axfoax", "fields": {"session_data": "NWE4N2QwNWU1NDYyYjg1NDcxZDA3NTJlOGI5MDE3MDA3MjUyYjc5ZDp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2lkIjoiMjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-23T11:30:54Z"}}, {"model": "sessions.session", "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-16T08:59:39Z"}}, {"model": "sessions.session", "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-30T09:46:34Z"}}, {"model": "sessions.session", "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it", "fields": {"session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9", "expire_date": "2016-09-19T08:08:24Z"}}, {"model": "sessions.session", "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-20T06:13:45Z"}}, {"model": "sessions.session", "pk": "i26kpen4zhq9i2bg1leggk8eqgqt9k25", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-31T08:05:35Z"}}, {"model": "sessions.session", "pk": "i2vj2k3r6l6d190imgsx6bmhee8y6qx3", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T10:03:41Z"}}, {"model": "sessions.session", "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-31T14:52:42Z"}}, {"model": "sessions.session", "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T08:07:45Z"}}, {"model": "sessions.session", "pk": "i9or8sunzfkfo0ii06lqjduyf002njo4", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-04-25T11:07:58Z"}}, {"model": "sessions.session", "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-15T11:14:21Z"}}, {"model": "sessions.session", "pk": "imakeqah5lviaceijxe33lnovxbek8nu", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T16:03:56Z"}}, {"model": "sessions.session", "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-06T07:28:47Z"}}, {"model": "sessions.session", "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T13:05:08Z"}}, {"model": "sessions.session", "pk": "jf5t2tpi8u48cb3sjwrkxzy2lgohxd6p", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2017-04-17T15:51:41Z"}}, {"model": "sessions.session", "pk": "jggki1po013fup2njbdxstv7ah1hh6r9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2017-05-09T09:48:53Z"}}, {"model": "sessions.session", "pk": "jghkwi5l48e732l6senbb027s7ww69fb", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T09:49:32Z"}}, {"model": "sessions.session", "pk": "jnairlw3ayhs0yzyma48fx0r64ls41fz", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-22T11:04:12Z"}}, {"model": "sessions.session", "pk": "k9p2trwa60tikg4o4jy36c4dsdqnr95y", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-13T20:23:57Z"}}, {"model": "sessions.session", "pk": "ka3msywv1o7njsbgs3q2631094nuqclo", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-19T15:12:15Z"}}, {"model": "sessions.session", "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-05-31T10:05:18Z"}}, {"model": "sessions.session", "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-23T05:35:47Z"}}, {"model": "sessions.session", "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec", "fields": {"session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-30T19:29:46Z"}}, {"model": "sessions.session", "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-25T15:37:43Z"}}, {"model": "sessions.session", "pk": "knqvpsn88en5yygqemcw6edtg2jt8249", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T09:44:34Z"}}, {"model": "sessions.session", "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T06:27:59Z"}}, {"model": "sessions.session", "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:21:45Z"}}, {"model": "sessions.session", "pk": "le4a8wynksh1utfu4n5kz3o0tky32990", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-14T11:45:48Z"}}, {"model": "sessions.session", "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-01T14:58:57Z"}}, {"model": "sessions.session", "pk": "lvl28l9wwgox84fgmt2kpb4a60ij51vx", "fields": {"session_data": "ZWM2ZTllYjgyOTRjNjBmZTkzOWE3MjAxMzUyZDZkNzM2YjY3MTA3ZTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDhiOTU5YzYwY2ZlZDMyMmJmOTMxZmI4N2NjNDUxYTI5MzcyYmEwYSIsIl9hdXRoX3VzZXJfaWQiOiIyNSJ9", "expire_date": "2017-05-10T10:57:32Z"}}, {"model": "sessions.session", "pk": "m0v3nvlvl72v79ukvd2gfqckcgrysfjj", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-29T08:31:18Z"}}, {"model": "sessions.session", "pk": "m29eu76tn65wjyl62eru1klc0a3q8unp", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2017-04-04T14:34:25Z"}}, {"model": "sessions.session", "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-04T13:24:20Z"}}, {"model": "sessions.session", "pk": "m787xp45lpgoa269n6728z0b37p8iy1q", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:28:33Z"}}, {"model": "sessions.session", "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-19T19:17:17Z"}}, {"model": "sessions.session", "pk": "mhhkuwiygxn5m2io9ve354my9krv1jca", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T09:59:03Z"}}, {"model": "sessions.session", "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-23T16:20:25Z"}}, {"model": "sessions.session", "pk": "mp1bm60zuig6o6nui37vmxq35b9nvvcr", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-19T10:58:38Z"}}, {"model": "sessions.session", "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-23T13:26:40Z"}}, {"model": "sessions.session", "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-16T10:14:08Z"}}, {"model": "sessions.session", "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-09-14T14:54:12Z"}}, {"model": "sessions.session", "pk": "na5u7one7ewv6lwwskjw4fhd1l3nfcmn", "fields": {"session_data": "ZTlhMDFkMWVmYjNiMmYxNjU2ZDI5ODc1MDNhN2FkNjM1YjdmMDQ3NDp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-20T13:29:54Z"}}, {"model": "sessions.session", "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-22T15:22:58Z"}}, {"model": "sessions.session", "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg", "fields": {"session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=", "expire_date": "2016-04-11T20:27:35Z"}}, {"model": "sessions.session", "pk": "nry5t3cx23bpuh15iy7r4tokakqmj29v", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-23T16:10:09Z"}}, {"model": "sessions.session", "pk": "nswul70gr80dq4qwgs4di508w00uud6b", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-08T10:15:12Z"}}, {"model": "sessions.session", "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-08-24T09:07:00Z"}}, {"model": "sessions.session", "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T10:17:31Z"}}, {"model": "sessions.session", "pk": "odorbcaogkfzuupexk2zyze0ewnene46", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-08T10:29:46Z"}}, {"model": "sessions.session", "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T07:40:16Z"}}, {"model": "sessions.session", "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:49:30Z"}}, {"model": "sessions.session", "pk": "orhni0ej87m2aun2d9z9xz4c1l1lmjym", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-10T10:03:12Z"}}, {"model": "sessions.session", "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-16T07:07:44Z"}}, {"model": "sessions.session", "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T11:53:13Z"}}, {"model": "sessions.session", "pk": "ppjcwurra6scll78pl3bs269eab3nz90", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-18T21:10:11Z"}}, {"model": "sessions.session", "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf", "fields": {"session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==", "expire_date": "2016-11-24T11:13:28Z"}}, {"model": "sessions.session", "pk": "pu9debzitlp5h2npgzacuzevp3prl6d2", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T15:59:42Z"}}, {"model": "sessions.session", "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-18T11:48:29Z"}}, {"model": "sessions.session", "pk": "qd6glndlpk5s53d9azcl8m970xzp7qr7", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-04T20:54:03Z"}}, {"model": "sessions.session", "pk": "qi66ci58ybleptvfa4qenkhecsabekut", "fields": {"session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-03-28T14:27:50Z"}}, {"model": "sessions.session", "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf", "fields": {"session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==", "expire_date": "2016-12-09T16:53:29Z"}}, {"model": "sessions.session", "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-17T11:19:13Z"}}, {"model": "sessions.session", "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-20T08:48:24Z"}}, {"model": "sessions.session", "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T08:12:45Z"}}, {"model": "sessions.session", "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o", "fields": {"session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-10T07:54:55Z"}}, {"model": "sessions.session", "pk": "rx6add3n8ac1j45tvfk7g22hfiqg9189", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-26T15:21:10Z"}}, {"model": "sessions.session", "pk": "ryh7badf8sk52fnosn0im30u153w96bx", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-06-01T09:22:04Z"}}, {"model": "sessions.session", "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-17T11:25:00Z"}}, {"model": "sessions.session", "pk": "shgljfmuet4jvw3vvsjpwtbidz2ovolm", "fields": {"session_data": "ODAwZTFiNjlkZTdjNzFjNDk3ZmM5YTllMGRlMGFkNDFjOTc2MTkyMjp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ4Yjk1OWM2MGNmZWQzMjJiZjkzMWZiODdjYzQ1MWEyOTM3MmJhMGEiLCJ1c2Vyc19zaG93X2hpZ2hsaWdodGVyIjpbIjE0Il0sImFubm90YXRpb25fcHJvamVjdCI6bnVsbCwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiNDAiXSwiX2F1dGhfdXNlcl9pZCI6IjI1In0=", "expire_date": "2017-04-20T08:30:18Z"}}, {"model": "sessions.session", "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T07:10:33Z"}}, {"model": "sessions.session", "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-11-02T13:21:25Z"}}, {"model": "sessions.session", "pk": "t28pi3wijtqtgswvxoby46phnlwq97cp", "fields": {"session_data": "YzgwMDFlZjkxYTAxZDE5MDUyYTcxY2E4OTk0MmIwMjgwZTgwZDU5Nzp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdfQ==", "expire_date": "2017-05-16T16:14:45Z"}}, {"model": "sessions.session", "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-22T23:47:44Z"}}, {"model": "sessions.session", "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T09:13:02Z"}}, {"model": "sessions.session", "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T13:16:42Z"}}, {"model": "sessions.session", "pk": "tfogugs17j1nvkir89ixugemdqq25kum", "fields": {"session_data": "N2RjNjVmOTZmMzlmMTE3MzRkODk2MzVkNDkyZTQyMTU5MDA2N2EyZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQifQ==", "expire_date": "2017-04-19T14:30:19Z"}}, {"model": "sessions.session", "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-09-07T09:17:51Z"}}, {"model": "sessions.session", "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:45:55Z"}}, {"model": "sessions.session", "pk": "txw6kfzk32bxeqm21knvrf570by4v27p", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:48:36Z"}}, {"model": "sessions.session", "pk": "u3082c600jynq9qzxlc1pat4hfatkiiw", "fields": {"session_data": "MDMwNWJlZDBmODA1OThmYmQxNjE1MjMxMDEyNmQ4ZTg5MGJhOTI4ODp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJhbm5vdGF0aW9uX3Byb2plY3QiOiI2IiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsInVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMTIiXSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-04-25T13:40:05Z"}}, {"model": "sessions.session", "pk": "uesi563p5dol5hv4gjor3noj55kz8chz", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-13T08:36:52Z"}}, {"model": "sessions.session", "pk": "ulaglp8rwt152gf05ugjxsh0l7nflreg", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-27T15:38:56Z"}}, {"model": "sessions.session", "pk": "uou3pothn76iu9zi34fij69m8inc1v2s", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-05-13T08:32:22Z"}}, {"model": "sessions.session", "pk": "upxpub1wqb40yg07qnc2v9gmr5ivnx6q", "fields": {"session_data": "ZWM0ZGJlNGZiMzNmOWFjZmJiNDMwMTNjY2U0NDZlNzA5MGIzNTZjZjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjIifQ==", "expire_date": "2017-05-02T13:37:28Z"}}, {"model": "sessions.session", "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-07-05T09:34:00Z"}}, {"model": "sessions.session", "pk": "v0tb183q1hidp56w07hiihnkfphthq6x", "fields": {"session_data": "ZTUyMzMwZjQyNGVlM2E2MjEwNGFjMGQ2MmQ4MmVmYWFjZWE4OTI1OTp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCIsIjI1Il19", "expire_date": "2017-05-16T16:24:03Z"}}, {"model": "sessions.session", "pk": "vcefmjdsogtqiiym2n2pvtnn2r3ymxbv", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T11:03:56Z"}}, {"model": "sessions.session", "pk": "vd9uzj95c4gdy21oezpy5gok82tgtlnd", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T10:51:36Z"}}, {"model": "sessions.session", "pk": "vdm5gd9axckuupzwphnyibh4ltwl10in", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-10T12:53:51Z"}}, {"model": "sessions.session", "pk": "vdqbhkx8uozqoksjq28n8ze8p3kyp1mm", "fields": {"session_data": "ZTUyOGE1NDNlNmQwMDkzNDFmNDdjZTQzMzYwOWVkYzI5ODIzYmRiMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjI1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDhiOTU5YzYwY2ZlZDMyMmJmOTMxZmI4N2NjNDUxYTI5MzcyYmEwYSJ9", "expire_date": "2017-04-18T10:24:05Z"}}, {"model": "sessions.session", "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-06T09:17:34Z"}}, {"model": "sessions.session", "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20", "fields": {"session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9", "expire_date": "2016-11-25T22:11:01Z"}}, {"model": "sessions.session", "pk": "vz123od467ja9eqg3sxpjt7p28zbi1tu", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-22T13:16:36Z"}}, {"model": "sessions.session", "pk": "w854s0t1ev9t2jptzy5lgizv3o4iurxi", "fields": {"session_data": "NWJkODI2YzQ3NmRmZmNhNjlmYjFkYjE0ZDRkMDk2MDY2NGEyNzI3NTp7ImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-03-27T12:15:23Z"}}, {"model": "sessions.session", "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2016-10-19T09:11:45Z"}}, {"model": "sessions.session", "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-25T11:21:04Z"}}, {"model": "sessions.session", "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd", "fields": {"session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2016-12-19T13:49:09Z"}}, {"model": "sessions.session", "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:40:30Z"}}, {"model": "sessions.session", "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-31T09:28:51Z"}}, {"model": "sessions.session", "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-24T18:27:59Z"}}, {"model": "sessions.session", "pk": "x5z53fz318oplvc3pf9jl2xghhravlw4", "fields": {"session_data": "OTEwMWNlNTdkOTBhMzFhMzJhMjdmOWEzMGM5ODc3YWRkOGUxYjMzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6bnVsbH0=", "expire_date": "2017-01-31T08:07:16Z"}}, {"model": "sessions.session", "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-08-15T11:56:07Z"}}, {"model": "sessions.session", "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:23:30Z"}}, {"model": "sessions.session", "pk": "xeta229mvebwff8lxrg15tg92yby9l7h", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-01-03T10:42:04Z"}}, {"model": "sessions.session", "pk": "xjameie76erma5u2xcefnxiqkaydbqem", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T15:38:48Z"}}, {"model": "sessions.session", "pk": "xm7czndauhfyen0rqfy7gwasyauycs13", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-07T21:50:11Z"}}, {"model": "sessions.session", "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:41:43Z"}}, {"model": "sessions.session", "pk": "xqn4o938970paagobhs75vdj78qklbpt", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-13T06:21:47Z"}}, {"model": "sessions.session", "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g", "fields": {"session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=", "expire_date": "2016-03-28T11:24:43Z"}}, {"model": "sessions.session", "pk": "xxi2fcd8u2v0bqralv28iy7houir1oig", "fields": {"session_data": "MThiODViY2ZiZDA2MzZiNWJmZGYyZTI4ZmRhMGE5NjU4MmI2ZTQzYTp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-04-17T14:31:44Z"}}, {"model": "sessions.session", "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:59Z"}}, {"model": "sessions.session", "pk": "y0l6wk9otfe1gj48r2t88vsd85a4fgi7", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-15T10:11:05Z"}}, {"model": "sessions.session", "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T15:37:48Z"}}, {"model": "sessions.session", "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-23T09:12:20Z"}}, {"model": "sessions.session", "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-29T08:20:29Z"}}, {"model": "sessions.session", "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-21T14:11:46Z"}}, {"model": "sessions.session", "pk": "ykzz4og15rbp734i6zas54al3618ih6t", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-28T12:47:33Z"}}, {"model": "sessions.session", "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T07:23:58Z"}}, {"model": "sessions.session", "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-06-10T09:57:45Z"}}, {"model": "sessions.session", "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-29T12:27:51Z"}}, {"model": "sessions.session", "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T11:53:02Z"}}, {"model": "sessions.session", "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T13:24:18Z"}}, {"model": "sessions.session", "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:07:32Z"}}, {"model": "sessions.session", "pk": "zd89eekj8db021j20g95g8h3l2qoajg2", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-03T11:30:35Z"}}, {"model": "sessions.session", "pk": "zed35ecfw8w2jomw3tlvtr3joxg8u7qq", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-17T11:40:23Z"}}, {"model": "sessions.session", "pk": "zek5pffgnbfc047jdii8y0fxglrhlhtd", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T08:59:07Z"}}, {"model": "sessions.session", "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-07T12:20:16Z"}}, {"model": "sessions.session", "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T14:32:15Z"}}, {"model": "sessions.session", "pk": "zvmiogv4haarelrbkcxlte9w66vc74ir", "fields": {"session_data": "YmFmZTQ4NGViYzRjOThmZGU0MDRjM2I3NDAzNjYzMDFmMzZiMmY4Njp7Il9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2lkIjoiMTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-06T16:00:40Z"}}, {"model": "labels.label", "pk": 17, "fields": {"label": "Opatija", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 26}}, {"model": "labels.label", "pk": 19, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 20, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 50, "fields": {"label": "Zagreb", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 133}}, {"model": "labels.label", "pk": 51, "fields": {"label": "Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 67, "fields": {"label": "Vienna", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 183}}, {"model": "labels.label", "pk": 68, "fields": {"label": "Wien", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 108, "fields": {"label": "Brno", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 327}}, {"model": "labels.label", "pk": 109, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 118, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 121, "fields": {"label": "Budapest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 400}}, {"model": "labels.label", "pk": 122, "fields": {"label": "Budapest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 252, "fields": {"label": "Bucharest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 831}}, {"model": "labels.label", "pk": 253, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 287, "fields": {"label": "Baden bei Wien", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 926}}, {"model": "labels.label", "pk": 288, "fields": {"label": "Baden", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 926}}, {"model": "labels.label", "pk": 445, "fields": {"label": "Berlin", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1390}}, {"model": "labels.label", "pk": 446, "fields": {"label": "Berlin", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 456, "fields": {"label": "Liberec", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1424}}, {"model": "labels.label", "pk": 457, "fields": {"label": "Liberec - Osta\u0161ov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 466, "fields": {"label": "Bezau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1454}}, {"model": "labels.label", "pk": 531, "fields": {"label": "Bodensdorf, Bez. Feldkirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1701}}, {"model": "labels.label", "pk": 536, "fields": {"label": "Heilbronn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1718}}, {"model": "labels.label", "pk": 537, "fields": {"label": "Heilbronn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1718}}, {"model": "labels.label", "pk": 613, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2006}}, {"model": "labels.label", "pk": 614, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2006}}, {"model": "labels.label", "pk": 639, "fields": {"label": "Bratislava", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2072}}, {"model": "labels.label", "pk": 640, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 641, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 645, "fields": {"label": "Broumov", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2085}}, {"model": "labels.label", "pk": 646, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 647, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 669, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2161}}, {"model": "labels.label", "pk": 670, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 671, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 672, "fields": {"label": "Brixen", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2170}}, {"model": "labels.label", "pk": 673, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 680, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2197}}, {"model": "labels.label", "pk": 681, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - B\u0159ezhrad, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 693, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 694, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 697, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 704, "fields": {"label": "Brody", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2281}}, {"model": "labels.label", "pk": 705, "fields": {"label": "Brody, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2281}}, {"model": "labels.label", "pk": 713, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 714, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 715, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 716, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 757, "fields": {"label": "Buenos Aires", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2489}}, {"model": "labels.label", "pk": 759, "fields": {"label": "Buenos Aires", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2489}}, {"model": "labels.label", "pk": 760, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 761, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 789, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 870, "fields": {"label": "Chernivtsi", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2854}}, {"model": "labels.label", "pk": 871, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 876, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 944, "fields": {"label": "Cieszyn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3105}}, {"model": "labels.label", "pk": 945, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 962, "fields": {"label": "Cluj-Napoca", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3162}}, {"model": "labels.label", "pk": 963, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 1050, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 1214, "fields": {"label": "D\u00fcren", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1215, "fields": {"label": "D\u00fcren", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1268, "fields": {"label": "\u00dadlice, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4269}}, {"model": "labels.label", "pk": 1412, "fields": {"label": "Graz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1413, "fields": {"label": "Graz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1446, "fields": {"label": "Freistadt", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1447, "fields": {"label": "Freistadt", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1560, "fields": {"label": "Ghidfal\u0103u, jud. Covasna", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5294}}, {"model": "labels.label", "pk": 1565, "fields": {"label": "Marienheide", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5308}}, {"model": "labels.label", "pk": 1619, "fields": {"label": "Gorizia", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1620, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1635, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1636, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1670, "fields": {"label": "Merano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1671, "fields": {"label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1691, "fields": {"label": "Grieskirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5749}}, {"model": "labels.label", "pk": 1755, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1756, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1841, "fields": {"label": "Hanover", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1842, "fields": {"label": "Hannover", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1926, "fields": {"label": "Innsbruck", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1927, "fields": {"label": "Innsbruck", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1982, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 1983, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 2002, "fields": {"label": "Brno - Brno-sever, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2108, "fields": {"label": "Jaworzno, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7454}}, {"model": "labels.label", "pk": 2153, "fields": {"label": "Leoben", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2154, "fields": {"label": "Leoben", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2190, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2191, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2249, "fields": {"label": "Kassel", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2250, "fields": {"label": "Kassel", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2340, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2341, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2373, "fields": {"label": "Klosterneuburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8482}}, {"model": "labels.label", "pk": 2394, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2458, "fields": {"label": "Konstanz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2459, "fields": {"label": "Konstanz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2581, "fields": {"label": "Kufstein", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2582, "fields": {"label": "Kufstein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2585, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Kukleny, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2595, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2625, "fields": {"label": "Lachovice, kr. Karlovarsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9455}}, {"model": "labels.label", "pk": 2632, "fields": {"label": "Ljubljana", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2633, "fields": {"label": "Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2711, "fields": {"label": "Lviv", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2712, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2713, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2789, "fields": {"label": "Linz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2790, "fields": {"label": "Linz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2858, "fields": {"label": "City of London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2859, "fields": {"label": "London City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2860, "fields": {"label": "The City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2861, "fields": {"label": "London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2862, "fields": {"label": "London", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2927, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2928, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2929, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2951, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2952, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2963, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3022, "fields": {"label": "Maribor", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3023, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3039, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3040, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3041, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3116, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3117, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3118, "fields": {"label": "Merano (Castello di Trautmannsdorf) / Meran (Schlo\u00df Trautmannsdorf), reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3119, "fields": {"label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3120, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3121, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3158, "fields": {"label": "St\u0159\u00edbro, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 3239, "fields": {"label": "Moldava, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11556}}, {"model": "labels.label", "pk": 3324, "fields": {"label": "Munich", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3325, "fields": {"label": "M\u00fcnchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3441, "fields": {"label": "Nysa", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3442, "fields": {"label": "Nysa, woj. Opole", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3491, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Nov\u00fd Hradec Kr\u00e1lov\u00e9, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 3549, "fields": {"label": "Liberec - Doln\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3580, "fields": {"label": "Nice", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3581, "fields": {"label": "Nice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3657, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3663, "fields": {"label": "Liberec - Horn\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3671, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3672, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3681, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3697, "fields": {"label": "Brno - Malom\u011b\u0159ice-Ob\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3710, "fields": {"label": "Sopron", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3711, "fields": {"label": "Sopron, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3737, "fields": {"label": "Olomouc", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3738, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3739, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3740, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3741, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3828, "fields": {"label": "Paris", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3829, "fields": {"label": "Paris", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3901, "fields": {"label": "Petting", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13987}}, {"model": "labels.label", "pk": 4050, "fields": {"label": "Prague", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4051, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4052, "fields": {"label": "Praha, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4053, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4054, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4055, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4077, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4078, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4333, "fields": {"label": "Liberec - R\u016f\u017eodol I, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4334, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4389, "fields": {"label": "Liberec - Ruprechtice, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4415, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 4478, "fields": {"label": "Sv\u00e4t\u00fd Jur", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4479, "fields": {"label": "Sv\u00e4t\u00fd Jur, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4500, "fields": {"label": "St. Pankraz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4501, "fields": {"label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4581, "fields": {"label": "\u0160t\u00edty, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16594}}, {"model": "labels.label", "pk": 4624, "fields": {"label": "Liberec - Kr\u00e1sn\u00e1 Stud\u00e1nka, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4652, "fields": {"label": "Schwanberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16864}}, {"model": "labels.label", "pk": 4676, "fields": {"label": "Wien - Sechshaus", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 4878, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 5025, "fields": {"label": "Szczakowa, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18374}}, {"model": "labels.label", "pk": 5031, "fields": {"label": "Szeged, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 5150, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5152, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5273, "fields": {"label": "Trento", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5274, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5275, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5290, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5291, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5386, "fields": {"label": "Mojm\u00edrovce, kr. Nitra", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19599}}, {"model": "labels.label", "pk": 5411, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 5422, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 5650, "fields": {"label": "Warsaw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5651, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5652, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5653, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5654, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5655, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5656, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5677, "fields": {"label": "Bela Crkva, sr. Pan\u010devo", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20659}}, {"model": "labels.label", "pk": 5726, "fields": {"label": "Bad Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 5758, "fields": {"label": "Wisborough Green", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20988}}, {"model": "labels.label", "pk": 5809, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 5903, "fields": {"label": "L'viv - Znesinnja, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 5941, "fields": {"label": "Svitavy", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5942, "fields": {"label": "Svitavy, kr. Pardubick\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5959, "fields": {"label": "Jamnitz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22216}}, {"model": "labels.label", "pk": 5960, "fields": {"label": "Stronach (Lienz)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22259}}, {"model": "labels.label", "pk": 5961, "fields": {"label": "Nizza", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 5962, "fields": {"label": "Gr\u00fcnburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22322}}, {"model": "labels.label", "pk": 5963, "fields": {"label": "Olten", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5964, "fields": {"label": "Olten, Kt. Solothurn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5965, "fields": {"label": "Bad Kreuznach", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "labels.label", "pk": 5966, "fields": {"label": "Lasberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22494}}, {"model": "labels.label", "pk": 5967, "fields": {"label": "Fribourg", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5968, "fields": {"label": "Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5969, "fields": {"label": "Boc\u0219a", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22545}}, {"model": "labels.label", "pk": 5970, "fields": {"label": "Lud\u017amierz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22558}}, {"model": "labels.label", "pk": 5971, "fields": {"label": "Warszawa, woj. mazowieckie", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5972, "fields": {"label": "Vezzano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22570}}, {"model": "labels.label", "pk": 5973, "fields": {"label": "Vezzano", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22570}}, {"model": "labels.label", "pk": 6951, "fields": {"label": "Thalberg, Sigismund (Fortun\u00e9 Fran\u00e7ois)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 27245}}, {"model": "labels.label", "pk": 6952, "fields": {"label": "Fortun\u00e9 Fran\u00e7ois", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 27245}}, {"model": "labels.label", "pk": 7018, "fields": {"label": "Bratislava, kr. Bratislavsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 7161, "fields": {"label": "Bressanone/Brixen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 8216, "fields": {"label": "Wien (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 8588, "fields": {"label": "Bressanone", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 9187, "fields": {"label": "Merano/Meran, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 9289, "fields": {"label": "Teschen/T\u011b\u0161\u00edn/Cieszyn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 10492, "fields": {"label": "?, kr. ?", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 12551, "fields": {"label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 12706, "fields": {"label": "\u013dviv (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 13574, "fields": {"label": "Bratislava (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 13859, "fields": {"label": "Linz (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 14306, "fields": {"label": "Gorizia, reg. Friuli-Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 15282, "fields": {"label": "Reicha (Rejcha), Anton (Anton\u00edn) Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15283, "fields": {"label": "Rejcha", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15284, "fields": {"label": "Anton\u00edn Josef", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 18793, "fields": {"label": "Moscheles, Ignaz (Isaak)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 56248}}, {"model": "labels.label", "pk": 18794, "fields": {"label": "Isaak", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 56248}}, {"model": "labels.label", "pk": 20331, "fields": {"label": "Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 21059, "fields": {"label": "Liszt, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 62757}}, {"model": "labels.label", "pk": 21545, "fields": {"label": "Bressanone/Brixen, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 21609, "fields": {"label": "Praha - Mal\u00e1 Chuchle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 25058, "fields": {"label": "Praha - Horn\u00ed Po\u010dernice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 26197, "fields": {"label": "Szeged", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 27645, "fields": {"label": "Prag", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 29838, "fields": {"label": "Blahetka, Marie Leopoldine", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88219}}, {"model": "labels.label", "pk": 30089, "fields": {"label": "Beethoven, Ludwig van", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88902}}, {"model": "labels.label", "pk": 30728, "fields": {"label": "Freiburg/Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 30935, "fields": {"label": "Merano/Meran", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 31498, "fields": {"label": "St\u0159\u00edbro", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 31596, "fields": {"label": "B\u00e4uerle, Friederike; Ps. Friedrich Horn", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31597, "fields": {"label": "Friedrich Horn", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31632, "fields": {"label": "L\u2019viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 31701, "fields": {"label": "Czerny (\u010cern\u00fd), Carl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31702, "fields": {"label": "\u010cern\u00fd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31766, "fields": {"label": "Bahr, Hermann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93003}}, {"model": "labels.label", "pk": 31769, "fields": {"label": "Czerny, Adalbert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93009}}, {"model": "labels.label", "pk": 31770, "fields": {"label": "Czetz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93012}}, {"model": "labels.label", "pk": 31771, "fields": {"label": "Czikann, Johann Jakob Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93015}}, {"model": "labels.label", "pk": 31772, "fields": {"label": "Clam-Gallas, Eduard Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93018}}, {"model": "labels.label", "pk": 31773, "fields": {"label": "Clam-Martinic, Heinrich Jaroslav Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93021}}, {"model": "labels.label", "pk": 31774, "fields": {"label": "Clam-Martinic, Heinrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93024}}, {"model": "labels.label", "pk": 31775, "fields": {"label": "Claus, Karl Friedrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93028}}, {"model": "labels.label", "pk": 31776, "fields": {"label": "Conze, Alexander", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93031}}, {"model": "labels.label", "pk": 31777, "fields": {"label": "Costenoble, Karl Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93034}}, {"model": "labels.label", "pk": 31780, "fields": {"label": "\u010celakovsk\u00fd, Jarom\u00edr", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93044}}, {"model": "labels.label", "pk": 31781, "fields": {"label": "\u010celakovsk\u00fd, Ladislav", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93047}}, {"model": "labels.label", "pk": 31782, "fields": {"label": "\u010cerven\u00fd, V\u00e1clav Franti\u0161ek", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93050}}, {"model": "labels.label", "pk": 31783, "fields": {"label": "Charlemont, Hugo de", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93056}}, {"model": "labels.label", "pk": 31784, "fields": {"label": "Chlumczansk\u00fd, Wenzel Leopold von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93059}}, {"model": "labels.label", "pk": 31785, "fields": {"label": "Dumba, Konstantin Theodor", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93065}}, {"model": "labels.label", "pk": 31786, "fields": {"label": "Doderer, Wilhelm von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93068}}, {"model": "labels.label", "pk": 31787, "fields": {"label": "Defregger, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93071}}, {"model": "labels.label", "pk": 31788, "fields": {"label": "Dengel, Ignaz Philipp", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93074}}, {"model": "labels.label", "pk": 31811, "fields": {"label": "Holovsky, Hilde", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93136}}, {"model": "labels.label", "pk": 31872, "fields": {"label": "Lorenz, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93328}}, {"model": "labels.label", "pk": 31874, "fields": {"label": "L\u00f6wy, Julius; Ps. Von der Als", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31875, "fields": {"label": "Von der Als", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31879, "fields": {"label": "Lobmeyr, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93352}}, {"model": "labels.label", "pk": 31883, "fields": {"label": "Lichtblau, Adolf; Ps. A. L. Blau", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31884, "fields": {"label": "A. L. Blau", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31885, "fields": {"label": "Lichtblau, Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93369}}, {"model": "labels.label", "pk": 31888, "fields": {"label": "Leitgeb, Hubert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93378}}, {"model": "labels.label", "pk": 31890, "fields": {"label": "Lenhoss\u00e9k, Mih\u00e1ly Ign\u00e1c von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93387}}, {"model": "labels.label", "pk": 31892, "fields": {"label": "Lefler, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93393}}, {"model": "labels.label", "pk": 31893, "fields": {"label": "Leichter, K\u00e4the; geb. Pick", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31894, "fields": {"label": "Pick", "isoCode_639_3": "deu", "label_type": 612, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31895, "fields": {"label": "Leidesdorf, Franz; Ps. Wallner", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31896, "fields": {"label": "Wallner", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31899, "fields": {"label": "Lapaine, Valentin", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93409}}, {"model": "labels.label", "pk": 31900, "fields": {"label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31901, "fields": {"label": "Suida und Langer", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31902, "fields": {"label": "M\u00fcller, Wolf Johannes", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93418}}, {"model": "labels.label", "pk": 31910, "fields": {"label": "M\u00f6rl, Maria Theresia von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93442}}, {"model": "labels.label", "pk": 31911, "fields": {"label": "Millosicz, Georg Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93445}}, {"model": "labels.label", "pk": 31912, "fields": {"label": "Miklosich, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93448}}, {"model": "labels.label", "pk": 31917, "fields": {"label": "Meithner, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93469}}, {"model": "labels.label", "pk": 31920, "fields": {"label": "Margulies, Berl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93481}}, {"model": "labels.label", "pk": 31921, "fields": {"label": "M\u00e1nesov\u00e1, Amalie", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93484}}, {"model": "labels.label", "pk": 31922, "fields": {"label": "M\u00e1nes, Quido", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93487}}, {"model": "labels.label", "pk": 31928, "fields": {"label": "Mayer, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93510}}, {"model": "labels.label", "pk": 31929, "fields": {"label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31930, "fields": {"label": "Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31931, "fields": {"label": "Nov\u00e1\u010dek, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93516}}, {"model": "labels.label", "pk": 31940, "fields": {"label": "Ortmann, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93540}}, {"model": "labels.label", "pk": 31942, "fields": {"label": "Oellacher, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93546}}, {"model": "labels.label", "pk": 31947, "fields": {"label": "Poljanec, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93561}}, {"model": "labels.label", "pk": 31950, "fields": {"label": "Petzold, Emil", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93573}}, {"model": "labels.label", "pk": 31955, "fields": {"label": "Peithner von Lichtenfels, Eduard", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93588}}, {"model": "labels.label", "pk": 31958, "fields": {"label": "Patera, Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93600}}, {"model": "labels.label", "pk": 31960, "fields": {"label": "Rumpler, Matthias", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93609}}, {"model": "labels.label", "pk": 31961, "fields": {"label": "Rotter, Johann (Hans)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31962, "fields": {"label": "Hans", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31969, "fields": {"label": "Revertera von Salandra, Friedrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93639}}, {"model": "labels.label", "pk": 31970, "fields": {"label": "Reichenberger, Andreas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93642}}, {"model": "labels.label", "pk": 31971, "fields": {"label": "Reiser, Othmar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93645}}, {"model": "labels.label", "pk": 31973, "fields": {"label": "Randa, Maximilian von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93651}}, {"model": "labels.label", "pk": 31974, "fields": {"label": "Radakovi\u010d, Michael", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93654}}, {"model": "labels.label", "pk": 31975, "fields": {"label": "Szigligeti, Ede (Edv\u00e1rd); bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31976, "fields": {"label": "Edv\u00e1rd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31977, "fields": {"label": " bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 653, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31978, "fields": {"label": "Szurmay von Uzsok, S\u00e1ndor (Alexander) Frh.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31979, "fields": {"label": "Alexander Frh.", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31988, "fields": {"label": "St\u00fclz, Jodok", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93678}}, {"model": "labels.label", "pk": 31990, "fields": {"label": "Stowasser, Otto Hellmuth", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93684}}, {"model": "labels.label", "pk": 32001, "fields": {"label": "Steindler, Olga; verehel. Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32002, "fields": {"label": "Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32003, "fields": {"label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32004, "fields": {"label": "Ernest Edward Aurel", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32005, "fields": {"label": "Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32009, "fields": {"label": "Stariha, Janez Nep.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93714}}, {"model": "labels.label", "pk": 32018, "fields": {"label": "\u0160njari\u0107, Lukas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93748}}, {"model": "labels.label", "pk": 32030, "fields": {"label": "Sichulski, Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93779}}, {"model": "labels.label", "pk": 32032, "fields": {"label": "Settari, Wilhelm Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93785}}, {"model": "labels.label", "pk": 32034, "fields": {"label": "Sehnal, Eugen", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93791}}, {"model": "labels.label", "pk": 32037, "fields": {"label": "Schwartz, P. Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93800}}, {"model": "labels.label", "pk": 32038, "fields": {"label": "Schwarz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93803}}, {"model": "labels.label", "pk": 32039, "fields": {"label": "Schwarz, Kaspar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93809}}, {"model": "labels.label", "pk": 32041, "fields": {"label": "Schweitzer, Leopold Albrecht", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93815}}, {"model": "labels.label", "pk": 32042, "fields": {"label": "Schwabl, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93818}}, {"model": "labels.label", "pk": 32052, "fields": {"label": "Schu\u00ebcker, Edmund; eigentl. Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32053, "fields": {"label": "Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32054, "fields": {"label": "Schr\u00f6dl, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93839}}, {"model": "labels.label", "pk": 32059, "fields": {"label": "Schreyer, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93854}}, {"model": "labels.label", "pk": 32062, "fields": {"label": "Scholz, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93863}}, {"model": "labels.label", "pk": 32063, "fields": {"label": "Schrammel, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93866}}, {"model": "labels.label", "pk": 32067, "fields": {"label": "Scholl, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93878}}, {"model": "labels.label", "pk": 32069, "fields": {"label": "Sch\u00f6nberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32070, "fields": {"label": "Schoenberger", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32071, "fields": {"label": "Carl Friedrich Frh. von", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32072, "fields": {"label": "Sch\u00f6nberger, Benno", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93894}}, {"model": "labels.label", "pk": 32075, "fields": {"label": "Schnitzler, Julius", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93900}}, {"model": "labels.label", "pk": 32076, "fields": {"label": "Schober, Alfred", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93903}}, {"model": "labels.label", "pk": 32079, "fields": {"label": "Schoeller, Gustav Adolph von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93909}}, {"model": "labels.label", "pk": 32084, "fields": {"label": "Schmutzler, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93921}}, {"model": "labels.label", "pk": 32087, "fields": {"label": "Schmidt, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93933}}, {"model": "labels.label", "pk": 32088, "fields": {"label": "Schmidt, Anton", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93940}}, {"model": "labels.label", "pk": 32090, "fields": {"label": "Schmal, Johannes Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93946}}, {"model": "labels.label", "pk": 32094, "fields": {"label": "Schmidt-Beauchez, Louis", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93955}}, {"model": "labels.label", "pk": 32095, "fields": {"label": "Schindler, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93958}}, {"model": "labels.label", "pk": 32096, "fields": {"label": "Scheu, Josef Franz Georg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93961}}, {"model": "labels.label", "pk": 32097, "fields": {"label": "Schikaneder, Jakub", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93964}}, {"model": "labels.label", "pk": 32098, "fields": {"label": "Schell, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93967}}, {"model": "labels.label", "pk": 32099, "fields": {"label": "Schenk, Samuel Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93970}}, {"model": "labels.label", "pk": 32107, "fields": {"label": "T\u00f6lgyessy, Art\u00far", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93988}}, {"model": "labels.label", "pk": 32108, "fields": {"label": "Thun und Hohenstein, Emanuel Maria Gf. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93991}}, {"model": "labels.label", "pk": 32111, "fields": {"label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32112, "fields": {"label": "Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32113, "fields": {"label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32114, "fields": {"label": "Przerwa-Tetmajer", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32115, "fields": {"label": "Teuber, Emmerich (genannt Imre)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32116, "fields": {"label": "genannt Imre", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32119, "fields": {"label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32120, "fields": {"label": "Richard Denemy", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32121, "fields": {"label": " ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32390, "fields": {"label": "Laibach", "isoCode_639_3": "deu", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 34957, "fields": {"label": "Berlin-Friedenau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 34958, "fields": {"label": "Berlin-Gr\u00fcnau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 34959, "fields": {"label": "Berlin-Schmargendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 35289, "fields": {"label": "Maribor-Studenci, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 35292, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35364, "fields": {"label": "Praha-Dejvice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35397, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 35461, "fields": {"label": "Wien-Gumpendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35476, "fields": {"label": "Hanover, New Hampshire", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 35488, "fields": {"label": "Praha-Hole\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35492, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35543, "fields": {"label": "Bratislava-Rusovce, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 35545, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35548, "fields": {"label": "Praha-Kbely, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35559, "fields": {"label": "Szeged-Kiskundorozsma, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 35560, "fields": {"label": "Budapest-Budat\u00e9t\u00e9ny, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35569, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35570, "fields": {"label": "Praha-Zbraslav, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35598, "fields": {"label": "London-Lewisham", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 35643, "fields": {"label": "Praha-Mod\u0159any, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35665, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 35679, "fields": {"label": "Praha-Nusle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35686, "fields": {"label": "Wien-Hietzing", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35717, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35764, "fields": {"label": "Praha-Horn\u00ed Kr\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35787, "fields": {"label": "Budapest-Pestszentl\u0151rinc, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35822, "fields": {"label": "Budapest-Budafok, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35833, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35850, "fields": {"label": "\u010cernivci-Rohizna, obl. \u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 35867, "fields": {"label": "Praha-Satalice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35893, "fields": {"label": "Slanovec, sr. Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 35897, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35922, "fields": {"label": "Wien-Inzersdorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35967, "fields": {"label": "Praha-Podol\u00ed, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36010, "fields": {"label": "Ljubljana-\u0160entvid, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36068, "fields": {"label": "Ljubljana-\u0160i\u0161ka, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36086, "fields": {"label": "Sopron-B\u00e1nfalva, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 36122, "fields": {"label": "Praha-\u017di\u017ekov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36147, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36148, "fields": {"label": "M\u00fcnchen, Ld. Bayern", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 36160, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36163, "fields": {"label": "M\u00fcnchen, Ld. Bayern", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 36173, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36176, "fields": {"label": "Budapest-M\u00e1ty\u00e1sf\u00f6ld, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36182, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36185, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36187, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36188, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36195, "fields": {"label": "Maribor-Studenci, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 36226, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36238, "fields": {"label": "Praha-Podol\u00ed, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36243, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36253, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36263, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36267, "fields": {"label": "Ljubljana-\u0160entvid, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36334, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36340, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36341, "fields": {"label": "Praha-Vyso\u010dany, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36369, "fields": {"label": "Budapest-Pestszentl\u0151rinc, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36402, "fields": {"label": "Ljubljana-Toma\u010devo, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36447, "fields": {"label": "Budapest-Soroks\u00e1r, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36478, "fields": {"label": "Wien-Breitenfeld", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 36480, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36547, "fields": {"label": "Berlin-Schmargendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36567, "fields": {"label": "Berlin-Friedenau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36574, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36585, "fields": {"label": "Berlin-Gr\u00fcnau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36626, "fields": {"label": "Praha-\u017di\u017ekov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36637, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36638, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36655, "fields": {"label": "Praha-Zbraslav, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36699, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36825, "fields": {"label": "Wien-Thury", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 36875, "fields": {"label": "Praha-Satalice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36881, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36913, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 36923, "fields": {"label": "Budapest-Budafok, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36939, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36964, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36965, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36998, "fields": {"label": "Bratislava-Rusovce, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 37007, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37030, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37031, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37033, "fields": {"label": "M\u00fcnchen-Pasing", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 37079, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 37080, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37120, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37125, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37162, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37164, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37190, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37205, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 37215, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 37255, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37287, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37309, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 37325, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37333, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 37362, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37367, "fields": {"label": "Ljubljana-\u0160i\u0161ka, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 37389, "fields": {"label": "Budapest-\u00dajpest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37436, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37456, "fields": {"label": "Bad Kreuznach, Rheinland-Pfalz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "entities.person", "pk": 27245, "fields": {"first_name": "Sigismund", "gender": "male", "text": [12155, 12156], "collection": [29], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 46414, "fields": {"first_name": "Anton Josef", "gender": "male", "text": [21722, 21723], "collection": [29], "profession": [151, 188, 2054], "title": []}}, {"model": "entities.person", "pk": 56248, "fields": {"first_name": "Ignaz", "gender": "male", "text": [27186, 27187], "collection": [29], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 62757, "fields": {"first_name": "Franz von", "gender": "male", "text": [30762, 30763], "collection": [29], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 88219, "fields": {"first_name": "Marie Leopoldine", "gender": "female", "text": [44908, 44909], "collection": [29], "profession": [151, 1750], "title": []}}, {"model": "entities.person", "pk": 88902, "fields": {"first_name": "Ludwig van", "gender": "male", "text": [45290, 45291], "collection": [29], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 92412, "fields": {"first_name": "Friederike", "gender": "female", "text": [47030, 47031], "collection": [29], "profession": [128, 5578], "title": []}}, {"model": "entities.person", "pk": 92603, "fields": {"first_name": "Carl", "gender": "male", "text": [47126, 47127], "collection": [29], "profession": [151, 5599], "title": []}}, {"model": "entities.person", "pk": 93003, "fields": {"first_name": "Hermann", "gender": "male", "text": [47200, 47201], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93009, "fields": {"first_name": "Adalbert", "gender": "male", "text": [47204, 47205], "collection": [29], "profession": [154, 155], "title": []}}, {"model": "entities.person", "pk": 93012, "fields": {"first_name": "Johann", "gender": "male", "text": [47206, 47207], "collection": [29], "profession": [134, 143, 157, 158], "title": []}}, {"model": "entities.person", "pk": 93015, "fields": {"first_name": "Johann Jakob Heinrich", "gender": "male", "text": [47208, 47209], "collection": [29], "profession": [128, 146, 159], "title": []}}, {"model": "entities.person", "pk": 93018, "fields": {"first_name": "Eduard Gf.", "gender": "male", "text": [47210, 47211], "collection": [29], "profession": [143, 144], "title": []}}, {"model": "entities.person", "pk": 93021, "fields": {"first_name": "Heinrich Jaroslav Gf.", "gender": "male", "text": [47212, 47213], "collection": [29], "profession": [132, 134, 145, 146], "title": []}}, {"model": "entities.person", "pk": 93024, "fields": {"first_name": "Heinrich Gf.", "gender": "male", "text": [47214, 47215], "collection": [29], "profession": [134, 147], "title": []}}, {"model": "entities.person", "pk": 93028, "fields": {"first_name": "Karl Friedrich", "gender": "male", "text": [47216, 47217], "collection": [29], "profession": [135, 148], "title": []}}, {"model": "entities.person", "pk": 93031, "fields": {"first_name": "Alexander", "gender": "male", "text": [47218, 47219], "collection": [29], "profession": [149, 150], "title": []}}, {"model": "entities.person", "pk": 93034, "fields": {"first_name": "Karl Ludwig", "gender": "male", "text": [47220, 47221], "collection": [29], "profession": [128, 151, 152], "title": []}}, {"model": "entities.person", "pk": 93044, "fields": {"first_name": "Jarom\u00edr", "gender": "male", "text": [47226, 47227], "collection": [29], "profession": [132, 133, 134], "title": []}}, {"model": "entities.person", "pk": 93047, "fields": {"first_name": "Ladislav", "gender": "male", "text": [47228, 47229], "collection": [29], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93050, "fields": {"first_name": "V\u00e1clav Franti\u0161ek", "gender": "male", "text": [47230, 47231], "collection": [29], "profession": [137, 138], "title": []}}, {"model": "entities.person", "pk": 93056, "fields": {"first_name": "Hugo de", "gender": "male", "text": [47232, 47233], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93059, "fields": {"first_name": "Wenzel Leopold von", "gender": "male", "text": [47234, 47235], "collection": [29], "profession": [141, 142], "title": []}}, {"model": "entities.person", "pk": 93065, "fields": {"first_name": "Konstantin Theodor", "gender": "male", "text": [47236, 47237], "collection": [29], "profession": [146, 162], "title": []}}, {"model": "entities.person", "pk": 93068, "fields": {"first_name": "Wilhelm von", "gender": "male", "text": [47238, 47239], "collection": [29], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93071, "fields": {"first_name": "Franz von", "gender": "male", "text": [47240, 47241], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93074, "fields": {"first_name": "Ignaz Philipp", "gender": "male", "text": [47242, 47243], "collection": [29], "profession": [149, 160], "title": []}}, {"model": "entities.person", "pk": 93136, "fields": {"first_name": "Hilde", "gender": "female", "text": [47276, 47277], "collection": [29], "profession": [163, 164], "title": []}}, {"model": "entities.person", "pk": 93328, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47384, 47385], "collection": [29], "profession": [154, 175], "title": []}}, {"model": "entities.person", "pk": 93337, "fields": {"first_name": "Julius", "gender": "male", "text": [47388, 47389], "collection": [29], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93352, "fields": {"first_name": "Josef", "gender": "male", "text": [47394, 47395], "collection": [29], "profession": [137, 173], "title": []}}, {"model": "entities.person", "pk": 93366, "fields": {"first_name": "Adolf", "gender": "male", "text": [47402, 47403], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93369, "fields": {"first_name": "Ludwig", "gender": "male", "text": [47404, 47405], "collection": [29], "profession": [132, 172], "title": []}}, {"model": "entities.person", "pk": 93378, "fields": {"first_name": "Hubert", "gender": "male", "text": [47410, 47411], "collection": [29], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93387, "fields": {"first_name": "Mih\u00e1ly Ign\u00e1c von", "gender": "male", "text": [47414, 47415], "collection": [29], "profession": [154, 171], "title": []}}, {"model": "entities.person", "pk": 93393, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47418, 47419], "collection": [29], "profession": [139, 168], "title": []}}, {"model": "entities.person", "pk": 93396, "fields": {"first_name": "K\u00e4the", "gender": "female", "text": [47420, 47421], "collection": [29], "profession": [128, 134, 169], "title": []}}, {"model": "entities.person", "pk": 93400, "fields": {"first_name": "Franz", "gender": "male", "text": [47422, 47423], "collection": [29], "profession": [128, 151, 170], "title": []}}, {"model": "entities.person", "pk": 93409, "fields": {"first_name": "Valentin", "gender": "male", "text": [47428, 47429], "collection": [29], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93415, "fields": {"first_name": "Johanna", "gender": "female", "text": [47430, 47431], "collection": [29], "profession": [137, 165, 166], "title": []}}, {"model": "entities.person", "pk": 93418, "fields": {"first_name": "Wolf Johannes", "gender": "male", "text": [47432, 47433], "collection": [29], "profession": [135, 185], "title": []}}, {"model": "entities.person", "pk": 93442, "fields": {"first_name": "Maria Theresia von", "gender": "female", "text": [47446, 47447], "collection": [29], "profession": [141, 184], "title": []}}, {"model": "entities.person", "pk": 93445, "fields": {"first_name": "Georg Frh. von", "gender": "male", "text": [47448, 47449], "collection": [29], "profession": [143, 183], "title": []}}, {"model": "entities.person", "pk": 93448, "fields": {"first_name": "Franz von", "gender": "male", "text": [47450, 47451], "collection": [29], "profession": [134, 149, 182], "title": []}}, {"model": "entities.person", "pk": 93469, "fields": {"first_name": "Karl", "gender": "male", "text": [47460, 47461], "collection": [29], "profession": [134, 180, 181], "title": []}}, {"model": "entities.person", "pk": 93481, "fields": {"first_name": "Berl", "gender": "male", "text": [47466, 47467], "collection": [29], "profession": [151, 179], "title": []}}, {"model": "entities.person", "pk": 93484, "fields": {"first_name": "Amalie", "gender": "female", "text": [47468, 47469], "collection": [29], "profession": [139, 178], "title": []}}, {"model": "entities.person", "pk": 93487, "fields": {"first_name": "Quido", "gender": "male", "text": [47470, 47471], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93510, "fields": {"first_name": "Karl", "gender": "male", "text": [47482, 47483], "collection": [29], "profession": [128, 177], "title": []}}, {"model": "entities.person", "pk": 93513, "fields": {"first_name": "Johann Nep.", "gender": "male", "text": [47484, 47485], "collection": [29], "profession": [128, 134, 176], "title": []}}, {"model": "entities.person", "pk": 93516, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47486, 47487], "collection": [29], "profession": [151, 186], "title": []}}, {"model": "entities.person", "pk": 93540, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47502, 47503], "collection": [29], "profession": [188, 189], "title": []}}, {"model": "entities.person", "pk": 93546, "fields": {"first_name": "Josef", "gender": "male", "text": [47506, 47507], "collection": [29], "profession": [135, 187], "title": []}}, {"model": "entities.person", "pk": 93561, "fields": {"first_name": "Leopold", "gender": "male", "text": [47516, 47517], "collection": [29], "profession": [135, 188, 193], "title": []}}, {"model": "entities.person", "pk": 93573, "fields": {"first_name": "Emil", "gender": "male", "text": [47522, 47523], "collection": [29], "profession": [149, 192], "title": []}}, {"model": "entities.person", "pk": 93588, "fields": {"first_name": "Eduard", "gender": "male", "text": [47530, 47531], "collection": [29], "profession": [139, 191], "title": []}}, {"model": "entities.person", "pk": 93600, "fields": {"first_name": "Adolf", "gender": "male", "text": [47536, 47537], "collection": [29], "profession": [135, 190], "title": []}}, {"model": "entities.person", "pk": 93609, "fields": {"first_name": "Matthias", "gender": "male", "text": [47540, 47541], "collection": [29], "profession": [128, 141, 200], "title": []}}, {"model": "entities.person", "pk": 93615, "fields": {"first_name": "Johann", "gender": "male", "text": [47542, 47543], "collection": [29], "profession": [134, 137, 149, 199], "title": []}}, {"model": "entities.person", "pk": 93639, "fields": {"first_name": "Friedrich Gf.", "gender": "male", "text": [47556, 47557], "collection": [29], "profession": [134, 146, 198], "title": []}}, {"model": "entities.person", "pk": 93642, "fields": {"first_name": "Andreas", "gender": "male", "text": [47558, 47559], "collection": [29], "profession": [141, 196], "title": []}}, {"model": "entities.person", "pk": 93645, "fields": {"first_name": "Othmar", "gender": "male", "text": [47560, 47561], "collection": [29], "profession": [135, 197], "title": []}}, {"model": "entities.person", "pk": 93651, "fields": {"first_name": "Maximilian von", "gender": "male", "text": [47564, 47565], "collection": [29], "profession": [143, 146, 195], "title": []}}, {"model": "entities.person", "pk": 93654, "fields": {"first_name": "Michael", "gender": "male", "text": [47566, 47567], "collection": [29], "profession": [135, 194], "title": []}}, {"model": "entities.person", "pk": 93657, "fields": {"first_name": "Ede", "gender": "male", "text": [47568, 47569], "collection": [29], "profession": [128, 151, 230], "title": []}}, {"model": "entities.person", "pk": 93663, "fields": {"first_name": "S\u00e1ndor Frh.", "gender": "male", "text": [47570, 47571], "collection": [29], "profession": [134, 143, 231], "title": []}}, {"model": "entities.person", "pk": 93678, "fields": {"first_name": "Jodok", "gender": "male", "text": [47580, 47581], "collection": [29], "profession": [141, 149, 229], "title": []}}, {"model": "entities.person", "pk": 93684, "fields": {"first_name": "Otto Hellmuth", "gender": "male", "text": [47584, 47585], "collection": [29], "profession": [146, 149, 228], "title": []}}, {"model": "entities.person", "pk": 93702, "fields": {"first_name": "Olga", "gender": "female", "text": [47594, 47595], "collection": [29], "profession": [135, 188, 226], "title": []}}, {"model": "entities.person", "pk": 93705, "fields": {"first_name": "Ernst Edward Aurel", "gender": "male", "text": [47596, 47597], "collection": [29], "profession": [149, 227], "title": []}}, {"model": "entities.person", "pk": 93714, "fields": {"first_name": "Janez Nep.", "gender": "male", "text": [47602, 47603], "collection": [29], "profession": [141, 225], "title": []}}, {"model": "entities.person", "pk": 93748, "fields": {"first_name": "Lukas", "gender": "male", "text": [47614, 47615], "collection": [29], "profession": [143, 224], "title": []}}, {"model": "entities.person", "pk": 93779, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47626, 47627], "collection": [29], "profession": [139, 223], "title": []}}, {"model": "entities.person", "pk": 93785, "fields": {"first_name": "Wilhelm Anton Maria", "gender": "male", "text": [47630, 47631], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93791, "fields": {"first_name": "Eugen", "gender": "male", "text": [47634, 47635], "collection": [29], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93800, "fields": {"first_name": "P. Anton Maria", "gender": "male", "text": [47640, 47641], "collection": [29], "profession": [141, 219], "title": []}}, {"model": "entities.person", "pk": 93803, "fields": {"first_name": "Johann", "gender": "male", "text": [47642, 47643], "collection": [29], "profession": [149, 188, 220], "title": []}}, {"model": "entities.person", "pk": 93809, "fields": {"first_name": "Kaspar", "gender": "male", "text": [47644, 47645], "collection": [29], "profession": [134, 137, 221], "title": []}}, {"model": "entities.person", "pk": 93815, "fields": {"first_name": "Leopold Albrecht", "gender": "male", "text": [47648, 47649], "collection": [29], "profession": [128, 222], "title": []}}, {"model": "entities.person", "pk": 93818, "fields": {"first_name": "Franz", "gender": "male", "text": [47650, 47651], "collection": [29], "profession": [217, 218], "title": []}}, {"model": "entities.person", "pk": 93836, "fields": {"first_name": "Edmund", "gender": "male", "text": [47660, 47661], "collection": [29], "profession": [151, 216], "title": []}}, {"model": "entities.person", "pk": 93839, "fields": {"first_name": "Leopold", "gender": "male", "text": [47662, 47663], "collection": [29], "profession": [139, 215], "title": []}}, {"model": "entities.person", "pk": 93854, "fields": {"first_name": "Johann", "gender": "male", "text": [47672, 47673], "collection": [29], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93863, "fields": {"first_name": "Franz", "gender": "male", "text": [47676, 47677], "collection": [29], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93866, "fields": {"first_name": "Johann", "gender": "male", "text": [47678, 47679], "collection": [29], "profession": [151, 214], "title": []}}, {"model": "entities.person", "pk": 93878, "fields": {"first_name": "Joseph", "gender": "male", "text": [47684, 47685], "collection": [29], "profession": [132, 134, 213], "title": []}}, {"model": "entities.person", "pk": 93891, "fields": {"first_name": "Adolf Frh. von", "gender": "male", "text": [47688, 47689], "collection": [29], "profession": [143, 146, 211], "title": []}}, {"model": "entities.person", "pk": 93894, "fields": {"first_name": "Benno", "gender": "male", "text": [47690, 47691], "collection": [29], "profession": [151, 212], "title": []}}, {"model": "entities.person", "pk": 93900, "fields": {"first_name": "Julius", "gender": "male", "text": [47694, 47695], "collection": [29], "profession": [154, 208], "title": []}}, {"model": "entities.person", "pk": 93903, "fields": {"first_name": "Alfred", "gender": "male", "text": [47696, 47697], "collection": [29], "profession": [132, 146, 209], "title": []}}, {"model": "entities.person", "pk": 93909, "fields": {"first_name": "Gustav Adolph von", "gender": "male", "text": [47700, 47701], "collection": [29], "profession": [137, 210], "title": []}}, {"model": "entities.person", "pk": 93921, "fields": {"first_name": "Leopold", "gender": "male", "text": [47706, 47707], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93933, "fields": {"first_name": "Joseph", "gender": "male", "text": [47712, 47713], "collection": [29], "profession": [151, 207], "title": []}}, {"model": "entities.person", "pk": 93940, "fields": {"first_name": "Anton", "gender": "male", "text": [47714, 47715], "collection": [29], "profession": [134, 137, 206], "title": []}}, {"model": "entities.person", "pk": 93946, "fields": {"first_name": "Johannes Adolf", "gender": "male", "text": [47718, 47719], "collection": [29], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93955, "fields": {"first_name": "Louis", "gender": "male", "text": [47724, 47725], "collection": [29], "profession": [128, 188, 205], "title": []}}, {"model": "entities.person", "pk": 93958, "fields": {"first_name": "Josef", "gender": "male", "text": [47726, 47727], "collection": [29], "profession": [149, 204], "title": []}}, {"model": "entities.person", "pk": 93961, "fields": {"first_name": "Josef Franz Georg", "gender": "male", "text": [47728, 47729], "collection": [29], "profession": [128, 151, 203], "title": []}}, {"model": "entities.person", "pk": 93964, "fields": {"first_name": "Jakub", "gender": "male", "text": [47730, 47731], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93967, "fields": {"first_name": "Karl", "gender": "male", "text": [47732, 47733], "collection": [29], "profession": [137, 201], "title": []}}, {"model": "entities.person", "pk": 93970, "fields": {"first_name": "Samuel Leopold", "gender": "male", "text": [47734, 47735], "collection": [29], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93988, "fields": {"first_name": "Art\u00far", "gender": "male", "text": [47746, 47747], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93991, "fields": {"first_name": "Emanuel Maria Gf. von", "gender": "male", "text": [47748, 47749], "collection": [29], "profession": [141, 235], "title": []}}, {"model": "entities.person", "pk": 94003, "fields": {"first_name": "Ernst Maximilian Frh. von", "gender": "male", "text": [47754, 47755], "collection": [29], "profession": [128, 146, 233], "title": []}}, {"model": "entities.person", "pk": 94006, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47756, 47757], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 94009, "fields": {"first_name": "Emmerich", "gender": "male", "text": [47758, 47759], "collection": [29], "profession": [166, 234], "title": []}}, {"model": "entities.person", "pk": 94018, "fields": {"first_name": "Richard", "gender": "male", "text": [47764, 47765], "collection": [29], "profession": [151, 232], "title": []}}, {"model": "entities.place", "pk": 26, "fields": {"kind": 9, "lat": 45.33917, "lng": 14.30833, "text": [11225], "collection": []}}, {"model": "entities.place", "pk": 133, "fields": {"kind": 12, "lat": 45.81444, "lng": 15.97798, "text": [11275], "collection": []}}, {"model": "entities.place", "pk": 183, "fields": {"kind": 12, "lat": 48.20849, "lng": 16.37208, "text": [11203], "collection": []}}, {"model": "entities.place", "pk": 327, "fields": {"kind": 13, "lat": 49.19522, "lng": 16.60796, "text": [11259], "collection": []}}, {"model": "entities.place", "pk": 384, "fields": {"kind": 9, "lat": 49.19627, "lng": 13.50926, "text": [11284], "collection": []}}, {"model": "entities.place", "pk": 400, "fields": {"kind": 12, "lat": 47.49801, "lng": 19.03991, "text": [11223], "collection": []}}, {"model": "entities.place", "pk": 831, "fields": {"kind": 12, "lat": 44.43225, "lng": 26.10626, "text": [11242, 11243], "collection": []}}, {"model": "entities.place", "pk": 926, "fields": {"kind": 5, "lat": 48.00543, "lng": 16.23264, "text": [11313, 11314], "collection": []}}, {"model": "entities.place", "pk": 1390, "fields": {"kind": 12, "lat": 52.52437, "lng": 13.41053, "text": [11226, 11227], "collection": []}}, {"model": "entities.place", "pk": 1424, "fields": {"kind": 13, "lat": 50.76711, "lng": 15.05619, "text": [11258], "collection": []}}, {"model": "entities.place", "pk": 1454, "fields": {"kind": 5, "lat": 47.38478, "lng": 9.90139, "text": [11337, 11338], "collection": []}}, {"model": "entities.place", "pk": 1701, "fields": {"kind": 9, "lat": 46.69111, "lng": 13.97111, "text": [11271], "collection": []}}, {"model": "entities.place", "pk": 1718, "fields": {"kind": 5, "lat": 49.13995, "lng": 9.22054, "text": [11269, 11270], "collection": []}}, {"model": "entities.place", "pk": 2006, "fields": {"kind": 13, "lat": 47.75, "lng": 26.66667, "text": [11251], "collection": []}}, {"model": "entities.place", "pk": 2072, "fields": {"kind": 12, "lat": 48.14816, "lng": 17.10674, "text": [11220], "collection": []}}, {"model": "entities.place", "pk": 2085, "fields": {"kind": 9, "lat": 50.58566, "lng": 16.33181, "text": [11272], "collection": []}}, {"model": "entities.place", "pk": 2161, "fields": {"kind": 13, "lat": 51.1, "lng": 17.03333, "text": [11199], "collection": []}}, {"model": "entities.place", "pk": 2170, "fields": {"kind": 5, "lat": 46.71503, "lng": 11.65598, "text": [11279], "collection": []}}, {"model": "entities.place", "pk": 2197, "fields": {"kind": 13, "lat": 50.20923, "lng": 15.83277, "text": [11204], "collection": []}}, {"model": "entities.place", "pk": 2281, "fields": {"kind": 11, "lat": 50.08791, "lng": 25.15027, "text": [11244, 11245], "collection": []}}, {"model": "entities.place", "pk": 2489, "fields": {"kind": 12, "lat": -34.61315, "lng": -58.37723, "text": [11256, 11257], "collection": []}}, {"model": "entities.place", "pk": 2602, "fields": {"kind": 5, "lat": 46.41326, "lng": 11.24616, "text": [11252], "collection": []}}, {"model": "entities.place", "pk": 2854, "fields": {"kind": 13, "lat": 48.29149, "lng": 25.94034, "text": [11224], "collection": []}}, {"model": "entities.place", "pk": 3105, "fields": {"kind": 5, "lat": 49.75133, "lng": 18.63213, "text": [11260], "collection": []}}, {"model": "entities.place", "pk": 3162, "fields": {"kind": 13, "lat": 46.76667, "lng": 23.6, "text": [11330], "collection": []}}, {"model": "entities.place", "pk": 4096, "fields": {"kind": 5, "lat": 50.80434, "lng": 6.49299, "text": [11299, 11300], "collection": []}}, {"model": "entities.place", "pk": 4269, "fields": {"kind": 9, "lat": 50.4406, "lng": 13.45738, "text": [11231], "collection": []}}, {"model": "entities.place", "pk": 4767, "fields": {"kind": 13, "lat": 47.06667, "lng": 15.45, "text": [11210, 11211], "collection": []}}, {"model": "entities.place", "pk": 4877, "fields": {"kind": 9, "lat": 48.51103, "lng": 14.50453, "text": [11319, 11320], "collection": []}}, {"model": "entities.place", "pk": 5294, "fields": {"kind": 11, "lat": 45.9, "lng": 25.85, "text": [11246], "collection": []}}, {"model": "entities.place", "pk": 5308, "fields": {"kind": 10, "lat": 51.08317, "lng": 7.53087, "text": [11289, 11290], "collection": []}}, {"model": "entities.place", "pk": 5478, "fields": {"kind": 11, "lat": 45.94088, "lng": 13.62167, "text": [11303], "collection": []}}, {"model": "entities.place", "pk": 5691, "fields": {"kind": 5, "lat": 46.66817, "lng": 11.15953, "text": [11326], "collection": []}}, {"model": "entities.place", "pk": 5749, "fields": {"kind": 11, "lat": 48.23333, "lng": 13.83333, "text": [11229, 11230], "collection": []}}, {"model": "entities.place", "pk": 6004, "fields": {"kind": 9, "lat": 50.03197, "lng": 17.04058, "text": [11294], "collection": []}}, {"model": "entities.place", "pk": 6324, "fields": {"kind": 13, "lat": 52.37052, "lng": 9.73322, "text": [11221, 11222], "collection": []}}, {"model": "entities.place", "pk": 6700, "fields": {"kind": 13, "lat": 47.26266, "lng": 11.39454, "text": [11235, 11236], "collection": []}}, {"model": "entities.place", "pk": 6947, "fields": {"kind": 9, "lat": 46.61472, "lng": 16.08583, "text": [11278], "collection": []}}, {"model": "entities.place", "pk": 7454, "fields": {"kind": 11, "lat": 50.20528, "lng": 19.27498, "text": [11336], "collection": []}}, {"model": "entities.place", "pk": 7622, "fields": {"kind": 5, "lat": 47.3765, "lng": 15.09144, "text": [11249, 11250], "collection": []}}, {"model": "entities.place", "pk": 7986, "fields": {"kind": 11, "lat": 51.31667, "lng": 9.5, "text": [11218, 11219], "collection": []}}, {"model": "entities.place", "pk": 8482, "fields": {"kind": 5, "lat": 48.30521, "lng": 16.32522, "text": [11322, 11323], "collection": []}}, {"model": "entities.place", "pk": 8798, "fields": {"kind": 5, "lat": 47.66033, "lng": 9.17582, "text": [11301, 11302], "collection": []}}, {"model": "entities.place", "pk": 9287, "fields": {"kind": 5, "lat": 47.58333, "lng": 12.16667, "text": [11324, 11325], "collection": []}}, {"model": "entities.place", "pk": 9455, "fields": {"kind": 9, "lat": 50.08364, "lng": 13.03925, "text": [11288], "collection": []}}, {"model": "entities.place", "pk": 9475, "fields": {"kind": 12, "lat": 46.05108, "lng": 14.50513, "text": [11331], "collection": []}}, {"model": "entities.place", "pk": 9735, "fields": {"kind": 13, "lat": 49.83826, "lng": 24.02324, "text": [11263], "collection": []}}, {"model": "entities.place", "pk": 10015, "fields": {"kind": 13, "lat": 48.30639, "lng": 14.28611, "text": [11195, 11196], "collection": []}}, {"model": "entities.place", "pk": 10265, "fields": {"kind": 12, "lat": 51.50853, "lng": -0.12574, "text": [11239, 11240], "collection": []}}, {"model": "entities.place", "pk": 10793, "fields": {"kind": 13, "lat": 46.55472, "lng": 15.64667, "text": [11266], "collection": []}}, {"model": "entities.place", "pk": 11238, "fields": {"kind": 9, "lat": 49.75565, "lng": 12.997, "text": [11234], "collection": []}}, {"model": "entities.place", "pk": 11556, "fields": {"kind": 9, "lat": 50.72063, "lng": 13.65723, "text": [11308], "collection": []}}, {"model": "entities.place", "pk": 11799, "fields": {"kind": 13, "lat": 48.13743, "lng": 11.57549, "text": [11197, 11198], "collection": []}}, {"model": "entities.place", "pk": 12211, "fields": {"kind": 11, "lat": 50.47379, "lng": 17.33437, "text": [11321], "collection": []}}, {"model": "entities.place", "pk": 12758, "fields": {"kind": 11, "lat": 43.70313, "lng": 7.26608, "text": [11205], "collection": []}}, {"model": "entities.place", "pk": 13253, "fields": {"kind": 9, "lat": 47.68501, "lng": 16.59049, "text": [11344], "collection": []}}, {"model": "entities.place", "pk": 13382, "fields": {"kind": 13, "lat": 49.59552, "lng": 17.25175, "text": [11228], "collection": []}}, {"model": "entities.place", "pk": 13714, "fields": {"kind": 12, "lat": 48.85341, "lng": 2.3488, "text": [11291, 11292], "collection": []}}, {"model": "entities.place", "pk": 13987, "fields": {"kind": 10, "lat": 47.91232, "lng": 12.81512, "text": [11280, 11281], "collection": []}}, {"model": "entities.place", "pk": 14608, "fields": {"kind": 12, "lat": 50.08804, "lng": 14.42076, "text": [11200], "collection": []}}, {"model": "entities.place", "pk": 16242, "fields": {"kind": 9, "lat": 48.25216, "lng": 17.21539, "text": [11214], "collection": []}}, {"model": "entities.place", "pk": 16310, "fields": {"kind": 5, "lat": 46.586, "lng": 11.08571, "text": [11327], "collection": []}}, {"model": "entities.place", "pk": 16594, "fields": {"kind": 9, "lat": 49.96122, "lng": 16.76576, "text": [11293], "collection": []}}, {"model": "entities.place", "pk": 16864, "fields": {"kind": 5, "lat": 46.75833, "lng": 15.20833, "text": [11286, 11287], "collection": []}}, {"model": "entities.place", "pk": 18374, "fields": {"kind": 9, "lat": 50.2421, "lng": 19.30725, "text": [11241], "collection": []}}, {"model": "entities.place", "pk": 18400, "fields": {"kind": 13, "lat": 46.253, "lng": 20.14824, "text": [11351], "collection": []}}, {"model": "entities.place", "pk": 19215, "fields": {"kind": 13, "lat": 46.06787, "lng": 11.12108, "text": [11348], "collection": []}}, {"model": "entities.place", "pk": 19599, "fields": {"kind": 9, "lat": 48.20735, "lng": 18.06581, "text": [11285], "collection": []}}, {"model": "entities.place", "pk": 20549, "fields": {"kind": 12, "lat": 52.22977, "lng": 21.01178, "text": [11345], "collection": []}}, {"model": "entities.place", "pk": 20659, "fields": {"kind": 5, "lat": 44.8975, "lng": 21.41722, "text": [11255], "collection": []}}, {"model": "entities.place", "pk": 20872, "fields": {"kind": 5, "lat": 47.11547, "lng": 13.13467, "text": [11339], "collection": []}}, {"model": "entities.place", "pk": 20988, "fields": {"kind": 9, "lat": 51.02308, "lng": -0.50604, "text": [11304, 11305], "collection": []}}, {"model": "entities.place", "pk": 21818, "fields": {"kind": 9, "lat": 49.75594, "lng": 16.46829, "text": [11215], "collection": []}}, {"model": "entities.place", "pk": 22216, "fields": {"kind": 9, "lat": 49.01898, "lng": 15.56994, "text": [11206, 11207], "collection": []}}, {"model": "entities.place", "pk": 22259, "fields": {"kind": 9, "lat": 46.83333, "lng": 12.85, "text": [11261, 11262], "collection": []}}, {"model": "entities.place", "pk": 22322, "fields": {"kind": 9, "lat": 47.97234, "lng": 14.26472, "text": [11237, 11238], "collection": []}}, {"model": "entities.place", "pk": 22354, "fields": {"kind": 11, "lat": 47.34999, "lng": 7.90329, "text": [11253, 11254], "collection": []}}, {"model": "entities.place", "pk": 22475, "fields": {"kind": 5, "lat": 49.8414, "lng": 7.86713, "text": [11311, 11312], "collection": []}}, {"model": "entities.place", "pk": 22494, "fields": {"kind": 9, "lat": 48.47121, "lng": 14.54023, "text": [11317, 11318], "collection": []}}, {"model": "entities.place", "pk": 22526, "fields": {"kind": 13, "lat": 46.80237, "lng": 7.15128, "text": [11334, 11335], "collection": []}}, {"model": "entities.place", "pk": 22545, "fields": {"kind": 11, "lat": 45.37333, "lng": 21.70917, "text": [11342, 11343], "collection": []}}, {"model": "entities.place", "pk": 22558, "fields": {"kind": 9, "lat": 49.46656, "lng": 19.9825, "text": [11346, 11347], "collection": []}}, {"model": "entities.place", "pk": 22570, "fields": {"kind": 5, "lat": 46.07867, "lng": 10.99735, "text": [11349, 11350], "collection": []}}, {"model": "entities.place", "pk": 93025, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93035, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93051, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93060, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93075, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93379, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93397, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93410, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93449, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93562, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93610, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93658, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93715, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93749, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93804, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93855, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93879, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93934, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93937, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111335, "fields": {"kind": 400, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111348, "fields": {"kind": 400, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111365, "fields": {"kind": 380, "text": [], "collection": []}}, {"model": "vocabularies.vocabnames", "pk": 1, "fields": {"name": "ProfessionType"}}, {"model": "vocabularies.vocabnames", "pk": 2, "fields": {"name": "PersonPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 5, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 6, "fields": {"name": "PersonPersonRelation"}}, {"model": "vocabularies.vocabnames", "pk": 7, "fields": {"name": "TextType"}}, {"model": "vocabularies.vocabnames", "pk": 8, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 9, "fields": {"name": "InstitutionType"}}, {"model": "vocabularies.vocabnames", "pk": 10, "fields": {"name": "PlaceType"}}, {"model": "vocabularies.vocabnames", "pk": 11, "fields": {"name": "CollectionType"}}, {"model": "vocabularies.vocabnames", "pk": 12, "fields": {"name": "PlaceEventRelation"}}, {"model": "relations.personperson", "pk": 92840, "fields": {"relation_type": 5608, "related_personA": 92412, "related_personB": 92603, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92930, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 88902, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92931, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 27245, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92932, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 88219, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92933, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 62757, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92934, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 56248, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92935, "fields": {"relation_type": 5608, "related_personA": 92603, "related_personB": 46414, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46415, "fields": {"relation_type": 595, "related_person": 46414, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46416, "fields": {"relation_type": 596, "related_person": 46414, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 56249, "fields": {"relation_type": 595, "related_person": 56248, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 88904, "fields": {"relation_type": 596, "related_person": 88902, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92415, "fields": {"relation_type": 595, "related_person": 92412, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92604, "fields": {"relation_type": 595, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92605, "fields": {"relation_type": 596, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93004, "fields": {"relation_type": 595, "related_person": 93003, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93005, "fields": {"relation_type": 596, "related_person": 93003, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93010, "fields": {"relation_type": 595, "related_person": 93009, "related_place": 18374, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93011, "fields": {"relation_type": 596, "related_person": 93009, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93013, "fields": {"relation_type": 595, "related_person": 93012, "related_place": 5294, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93014, "fields": {"relation_type": 596, "related_person": 93012, "related_place": 2489, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93016, "fields": {"relation_type": 595, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93017, "fields": {"relation_type": 596, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93019, "fields": {"relation_type": 595, "related_person": 93018, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93020, "fields": {"relation_type": 596, "related_person": 93018, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93022, "fields": {"relation_type": 595, "related_person": 93021, "related_place": 16242, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93023, "fields": {"relation_type": 596, "related_person": 93021, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93026, "fields": {"relation_type": 595, "related_person": 93024, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93027, "fields": {"relation_type": 596, "related_person": 93024, "related_place": 93025, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93029, "fields": {"relation_type": 595, "related_person": 93028, "related_place": 7986, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93030, "fields": {"relation_type": 596, "related_person": 93028, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93032, "fields": {"relation_type": 595, "related_person": 93031, "related_place": 6324, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93033, "fields": {"relation_type": 596, "related_person": 93031, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93036, "fields": {"relation_type": 595, "related_person": 93034, "related_place": 93035, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93037, "fields": {"relation_type": 596, "related_person": 93034, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93045, "fields": {"relation_type": 595, "related_person": 93044, "related_place": 2161, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93046, "fields": {"relation_type": 596, "related_person": 93044, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93048, "fields": {"relation_type": 595, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93049, "fields": {"relation_type": 596, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93054, "fields": {"relation_type": 595, "related_person": 93050, "related_place": 93051, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93055, "fields": {"relation_type": 596, "related_person": 93050, "related_place": 2197, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93057, "fields": {"relation_type": 595, "related_person": 93056, "related_place": 22216, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93058, "fields": {"relation_type": 596, "related_person": 93056, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93063, "fields": {"relation_type": 595, "related_person": 93059, "related_place": 93060, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93064, "fields": {"relation_type": 596, "related_person": 93059, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93066, "fields": {"relation_type": 595, "related_person": 93065, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93067, "fields": {"relation_type": 596, "related_person": 93065, "related_place": 1701, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93069, "fields": {"relation_type": 595, "related_person": 93068, "related_place": 1718, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93070, "fields": {"relation_type": 596, "related_person": 93068, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93072, "fields": {"relation_type": 595, "related_person": 93071, "related_place": 22259, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93073, "fields": {"relation_type": 596, "related_person": 93071, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93078, "fields": {"relation_type": 595, "related_person": 93074, "related_place": 93075, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93079, "fields": {"relation_type": 596, "related_person": 93074, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93137, "fields": {"relation_type": 595, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93138, "fields": {"relation_type": 596, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93329, "fields": {"relation_type": 595, "related_person": 93328, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93330, "fields": {"relation_type": 596, "related_person": 93328, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93338, "fields": {"relation_type": 595, "related_person": 93337, "related_place": 4269, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93339, "fields": {"relation_type": 596, "related_person": 93337, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93353, "fields": {"relation_type": 595, "related_person": 93352, "related_place": 5749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93354, "fields": {"relation_type": 596, "related_person": 93352, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93367, "fields": {"relation_type": 595, "related_person": 93366, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93368, "fields": {"relation_type": 596, "related_person": 93366, "related_place": 26, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93370, "fields": {"relation_type": 595, "related_person": 93369, "related_place": 13382, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93371, "fields": {"relation_type": 596, "related_person": 93369, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93382, "fields": {"relation_type": 595, "related_person": 93378, "related_place": 93379, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93383, "fields": {"relation_type": 596, "related_person": 93378, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93388, "fields": {"relation_type": 595, "related_person": 93387, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93389, "fields": {"relation_type": 596, "related_person": 93387, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93394, "fields": {"relation_type": 595, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93395, "fields": {"relation_type": 596, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93398, "fields": {"relation_type": 595, "related_person": 93396, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93399, "fields": {"relation_type": 596, "related_person": 93396, "related_place": 93397, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93401, "fields": {"relation_type": 595, "related_person": 93400, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93402, "fields": {"relation_type": 596, "related_person": 93400, "related_place": 12758, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93413, "fields": {"relation_type": 595, "related_person": 93409, "related_place": 93410, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93414, "fields": {"relation_type": 596, "related_person": 93409, "related_place": 133, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93416, "fields": {"relation_type": 595, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93417, "fields": {"relation_type": 596, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93419, "fields": {"relation_type": 595, "related_person": 93418, "related_place": 22354, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93420, "fields": {"relation_type": 596, "related_person": 93418, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93443, "fields": {"relation_type": 595, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93444, "fields": {"relation_type": 596, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93446, "fields": {"relation_type": 595, "related_person": 93445, "related_place": 2006, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93447, "fields": {"relation_type": 596, "related_person": 93445, "related_place": 7622, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93452, "fields": {"relation_type": 595, "related_person": 93448, "related_place": 93449, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93453, "fields": {"relation_type": 596, "related_person": 93448, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93470, "fields": {"relation_type": 595, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93471, "fields": {"relation_type": 596, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93482, "fields": {"relation_type": 595, "related_person": 93481, "related_place": 2281, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93483, "fields": {"relation_type": 596, "related_person": 93481, "related_place": 831, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93485, "fields": {"relation_type": 595, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93486, "fields": {"relation_type": 596, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93488, "fields": {"relation_type": 595, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93489, "fields": {"relation_type": 596, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93511, "fields": {"relation_type": 595, "related_person": 93510, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93512, "fields": {"relation_type": 596, "related_person": 93510, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93514, "fields": {"relation_type": 595, "related_person": 93513, "related_place": 22322, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93515, "fields": {"relation_type": 596, "related_person": 93513, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93517, "fields": {"relation_type": 595, "related_person": 93516, "related_place": 20659, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93518, "fields": {"relation_type": 596, "related_person": 93516, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93541, "fields": {"relation_type": 595, "related_person": 93540, "related_place": 1424, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93542, "fields": {"relation_type": 596, "related_person": 93540, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93547, "fields": {"relation_type": 595, "related_person": 93546, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93548, "fields": {"relation_type": 596, "related_person": 93546, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93565, "fields": {"relation_type": 595, "related_person": 93561, "related_place": 93562, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93566, "fields": {"relation_type": 596, "related_person": 93561, "related_place": 10793, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93574, "fields": {"relation_type": 595, "related_person": 93573, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93575, "fields": {"relation_type": 596, "related_person": 93573, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93589, "fields": {"relation_type": 595, "related_person": 93588, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93590, "fields": {"relation_type": 596, "related_person": 93588, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93601, "fields": {"relation_type": 595, "related_person": 93600, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93602, "fields": {"relation_type": 596, "related_person": 93600, "related_place": 3105, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93613, "fields": {"relation_type": 595, "related_person": 93609, "related_place": 13987, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93614, "fields": {"relation_type": 596, "related_person": 93609, "related_place": 93610, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93616, "fields": {"relation_type": 595, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93617, "fields": {"relation_type": 596, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93640, "fields": {"relation_type": 595, "related_person": 93639, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93641, "fields": {"relation_type": 596, "related_person": 93639, "related_place": 2170, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93643, "fields": {"relation_type": 595, "related_person": 93642, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93644, "fields": {"relation_type": 596, "related_person": 93642, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93646, "fields": {"relation_type": 595, "related_person": 93645, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93647, "fields": {"relation_type": 596, "related_person": 93645, "related_place": 6947, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93652, "fields": {"relation_type": 595, "related_person": 93651, "related_place": 21818, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93653, "fields": {"relation_type": 596, "related_person": 93651, "related_place": 2854, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93655, "fields": {"relation_type": 595, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93656, "fields": {"relation_type": 596, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93661, "fields": {"relation_type": 595, "related_person": 93657, "related_place": 93658, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93662, "fields": {"relation_type": 596, "related_person": 93657, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93664, "fields": {"relation_type": 595, "related_person": 93663, "related_place": 22545, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93665, "fields": {"relation_type": 596, "related_person": 93663, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93679, "fields": {"relation_type": 595, "related_person": 93678, "related_place": 1454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93680, "fields": {"relation_type": 596, "related_person": 93678, "related_place": 20872, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93685, "fields": {"relation_type": 595, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93686, "fields": {"relation_type": 596, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93703, "fields": {"relation_type": 595, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93704, "fields": {"relation_type": 596, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93706, "fields": {"relation_type": 595, "related_person": 93705, "related_place": 7454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93707, "fields": {"relation_type": 596, "related_person": 93705, "related_place": 22526, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93718, "fields": {"relation_type": 595, "related_person": 93714, "related_place": 93715, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93719, "fields": {"relation_type": 596, "related_person": 93714, "related_place": 9475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93752, "fields": {"relation_type": 595, "related_person": 93748, "related_place": 93749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93753, "fields": {"relation_type": 596, "related_person": 93748, "related_place": 3162, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93780, "fields": {"relation_type": 595, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93781, "fields": {"relation_type": 596, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93786, "fields": {"relation_type": 595, "related_person": 93785, "related_place": 16310, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93787, "fields": {"relation_type": 596, "related_person": 93785, "related_place": 5691, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93792, "fields": {"relation_type": 595, "related_person": 93791, "related_place": 9287, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93793, "fields": {"relation_type": 596, "related_person": 93791, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93801, "fields": {"relation_type": 595, "related_person": 93800, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93802, "fields": {"relation_type": 596, "related_person": 93800, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93807, "fields": {"relation_type": 595, "related_person": 93803, "related_place": 93804, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93808, "fields": {"relation_type": 596, "related_person": 93803, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93810, "fields": {"relation_type": 595, "related_person": 93809, "related_place": 22494, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93811, "fields": {"relation_type": 596, "related_person": 93809, "related_place": 4877, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93816, "fields": {"relation_type": 595, "related_person": 93815, "related_place": 12211, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93817, "fields": {"relation_type": 596, "related_person": 93815, "related_place": 8482, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93819, "fields": {"relation_type": 595, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93820, "fields": {"relation_type": 596, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93837, "fields": {"relation_type": 595, "related_person": 93836, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93838, "fields": {"relation_type": 596, "related_person": 93836, "related_place": 22475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93840, "fields": {"relation_type": 595, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93841, "fields": {"relation_type": 596, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93858, "fields": {"relation_type": 595, "related_person": 93854, "related_place": 93855, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93859, "fields": {"relation_type": 596, "related_person": 93854, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93864, "fields": {"relation_type": 595, "related_person": 93863, "related_place": 11556, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93865, "fields": {"relation_type": 596, "related_person": 93863, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93867, "fields": {"relation_type": 595, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93868, "fields": {"relation_type": 596, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93880, "fields": {"relation_type": 595, "related_person": 93878, "related_place": 93879, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93881, "fields": {"relation_type": 596, "related_person": 93878, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93892, "fields": {"relation_type": 595, "related_person": 93891, "related_place": 8798, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93893, "fields": {"relation_type": 596, "related_person": 93891, "related_place": 5478, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93895, "fields": {"relation_type": 595, "related_person": 93894, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93896, "fields": {"relation_type": 596, "related_person": 93894, "related_place": 20988, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93901, "fields": {"relation_type": 595, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93902, "fields": {"relation_type": 596, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93904, "fields": {"relation_type": 595, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93905, "fields": {"relation_type": 596, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93910, "fields": {"relation_type": 595, "related_person": 93909, "related_place": 4096, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93911, "fields": {"relation_type": 596, "related_person": 93909, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93922, "fields": {"relation_type": 595, "related_person": 93921, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93923, "fields": {"relation_type": 596, "related_person": 93921, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93938, "fields": {"relation_type": 595, "related_person": 93933, "related_place": 93934, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93939, "fields": {"relation_type": 596, "related_person": 93933, "related_place": 93937, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93941, "fields": {"relation_type": 595, "related_person": 93940, "related_place": 16594, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93942, "fields": {"relation_type": 596, "related_person": 93940, "related_place": 6004, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93947, "fields": {"relation_type": 595, "related_person": 93946, "related_place": 5308, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93948, "fields": {"relation_type": 596, "related_person": 93946, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93956, "fields": {"relation_type": 595, "related_person": 93955, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93957, "fields": {"relation_type": 596, "related_person": 93955, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93959, "fields": {"relation_type": 595, "related_person": 93958, "related_place": 9455, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93960, "fields": {"relation_type": 596, "related_person": 93958, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93962, "fields": {"relation_type": 595, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93963, "fields": {"relation_type": 596, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93965, "fields": {"relation_type": 595, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93966, "fields": {"relation_type": 596, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93968, "fields": {"relation_type": 595, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93969, "fields": {"relation_type": 596, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93971, "fields": {"relation_type": 595, "related_person": 93970, "related_place": 19599, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93972, "fields": {"relation_type": 596, "related_person": 93970, "related_place": 16864, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93989, "fields": {"relation_type": 595, "related_person": 93988, "related_place": 18400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93990, "fields": {"relation_type": 596, "related_person": 93988, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93992, "fields": {"relation_type": 595, "related_person": 93991, "related_place": 19215, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93993, "fields": {"relation_type": 596, "related_person": 93991, "related_place": 22570, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94004, "fields": {"relation_type": 595, "related_person": 94003, "related_place": 13253, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94005, "fields": {"relation_type": 596, "related_person": 94003, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94007, "fields": {"relation_type": 595, "related_person": 94006, "related_place": 22558, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94008, "fields": {"relation_type": 596, "related_person": 94006, "related_place": 20549, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94010, "fields": {"relation_type": 595, "related_person": 94009, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94011, "fields": {"relation_type": 596, "related_person": 94009, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94019, "fields": {"relation_type": 595, "related_person": 94018, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94020, "fields": {"relation_type": 596, "related_person": 94018, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 98116, "fields": {"relation_type": 595, "related_person": null, "related_place": null, "text": [], "collection": []}}, {"model": "relations.personinstitution", "pk": 99591, "fields": {"relation_type": null, "related_person": null, "related_institution": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 26, "fields": {"name": "Opatija", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11225], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 133, "fields": {"name": "Zagreb", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11275], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 183, "fields": {"name": "Wien", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11203], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 327, "fields": {"name": "Br\u00fcnn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11259], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 384, "fields": {"name": "Dlouh\u00e1 Ves", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11284], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 400, "fields": {"name": "Budapest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11223], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 831, "fields": {"name": "Bukarest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11242, 11243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 926, "fields": {"name": "Baden", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11313, 11314], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1390, "fields": {"name": "Berlin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11226, 11227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1424, "fields": {"name": "Liberec", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11258], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1454, "fields": {"name": "Bezau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11337, 11338], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1701, "fields": {"name": "Bodensdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11271], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1718, "fields": {"name": "Heilbronn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11269, 11270], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2006, "fields": {"name": "Boto\u015fani", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11251], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2072, "fields": {"name": "Pressburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11220], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2085, "fields": {"name": "Braunau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11272], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2161, "fields": {"name": "Breslau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11199], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2170, "fields": {"name": "Brixen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11279], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2197, "fields": {"name": "K\u00f6niggr\u00e4tz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11204], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2281, "fields": {"name": "Brody", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11244, 11245], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2489, "fields": {"name": "Buenos Aires", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11256, 11257], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2602, "fields": {"name": "Kaltern an der Weinstrasse", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11252], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2854, "fields": {"name": "Tschernowitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11224], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3105, "fields": {"name": "Teschen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11260], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3162, "fields": {"name": "Klausenburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11330], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4096, "fields": {"name": "D\u00fcren", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11299, 11300], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4269, "fields": {"name": "\u00dadlice", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4767, "fields": {"name": "Graz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11210, 11211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4877, "fields": {"name": "Freistadt", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11319, 11320], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5294, "fields": {"name": "Ghidfal\u0103u", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11246], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5308, "fields": {"name": "Marienheide", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11289, 11290], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5478, "fields": {"name": "G\u00f6rz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11303], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5691, "fields": {"name": "Meran", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11326], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5749, "fields": {"name": "Grieskirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11229, 11230], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6004, "fields": {"name": "Grossullersdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11294], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6324, "fields": {"name": "Hannover", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11221, 11222], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6700, "fields": {"name": "Innsbruck", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11235, 11236], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6947, "fields": {"name": "Hrastje-Mota", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11278], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7454, "fields": {"name": "Jaworzno", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11336], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7622, "fields": {"name": "Leoben", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11249, 11250], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7986, "fields": {"name": "Cassel", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11218, 11219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8482, "fields": {"name": "Klosterneuburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11322, 11323], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8798, "fields": {"name": "Konstanz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11301, 11302], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9287, "fields": {"name": "Kufstein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11324, 11325], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9455, "fields": {"name": "Lachovice", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11288], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9475, "fields": {"name": "Ljubljana", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11331], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9735, "fields": {"name": "Lemberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11263], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10015, "fields": {"name": "Linz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11195, 11196], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10265, "fields": {"name": "London", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11239, 11240], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10793, "fields": {"name": "Marburg an der Drau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11266], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11238, "fields": {"name": "Mies", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11234], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11556, "fields": {"name": "Moldava", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11308], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11799, "fields": {"name": "M\u00fcnchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11197, 11198], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12211, "fields": {"name": "Nysa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11321], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12758, "fields": {"name": "Nizza", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13253, "fields": {"name": "Sopron", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11344], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13382, "fields": {"name": "Olm\u00fctz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11228], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13714, "fields": {"name": "Paris", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11291, 11292], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13987, "fields": {"name": "Petting", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11280, 11281], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 14608, "fields": {"name": "Prag", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11200], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16242, "fields": {"name": "Sv\u00e4t\u00fd Jur", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11214], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16310, "fields": {"name": "Sankt Pankraz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11327], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16594, "fields": {"name": "\u0160t\u00edty", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11293], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16864, "fields": {"name": "Schwanberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11286, 11287], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18374, "fields": {"name": "Szczakowa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18400, "fields": {"name": "Szegedin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11351], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19215, "fields": {"name": "Trient", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11348], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19599, "fields": {"name": "Mojm\u00edrovce", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11285], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20549, "fields": {"name": "Warschau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11345], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20659, "fields": {"name": "Wei\u00dfkirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11255], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20872, "fields": {"name": "Bad Gastein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11339], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20988, "fields": {"name": "Wisborough Green", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11304, 11305], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 21818, "fields": {"name": "Zwittau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22216, "fields": {"name": "Jamnitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11206, 11207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22259, "fields": {"name": "Stronach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11261, 11262], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22322, "fields": {"name": "Gr\u00fcnburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11237, 11238], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22354, "fields": {"name": "Olten", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11253, 11254], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22475, "fields": {"name": "Bad Kreuznach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11311, 11312], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22494, "fields": {"name": "Lasberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11317, 11318], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22526, "fields": {"name": "Freiburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11334, 11335], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22545, "fields": {"name": "Boc\u015fa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11342, 11343], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22558, "fields": {"name": "Lud\u017amierz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11346, 11347], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22570, "fields": {"name": "Vezzano", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11349, 11350], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24156, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24696, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24697, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24698, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24699, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24835, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24860, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 27245, "fields": {"name": "Thalberg", "review": false, "start_date": "1812-01-08", "end_date": "1871-04-27", "start_date_written": "8.1.1812", "end_date_written": "27.4.1871", "status": "", "source": 531, "references": null, "notes": null, "text": [12155, 12156], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 46414, "fields": {"name": "Reicha", "review": false, "start_date": "1770-02-26", "end_date": "1836-05-28", "start_date_written": "26.2.1770", "end_date_written": "28.5.1836", "status": "", "source": 5804, "references": null, "notes": null, "text": [21722, 21723], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 46415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56248, "fields": {"name": "Moscheles", "review": false, "start_date": "1794-05-23", "end_date": "1870-03-10", "start_date_written": "23.5.1794", "end_date_written": "10.3.1870", "status": "", "source": 8543, "references": null, "notes": null, "text": [27186, 27187], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 56249, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 62757, "fields": {"name": "Liszt", "review": false, "start_date": "1811-10-22", "end_date": "1886-07-31", "start_date_written": "22.10.1811", "end_date_written": "31.7.1886", "status": "", "source": 10332, "references": null, "notes": null, "text": [30762, 30763], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88219, "fields": {"name": "Blahetka", "review": false, "start_date": "1810-11-15", "end_date": "1885-01-01", "start_date_written": "15.11.1810", "end_date_written": "1.1.1885", "status": "", "source": 17415, "references": null, "notes": null, "text": [44908, 44909], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88902, "fields": {"name": "Beethoven", "review": false, "start_date": "1770-12-16", "end_date": "1827-03-26", "start_date_written": "16.12.1770", "end_date_written": "26.3.1827", "status": "", "source": 17608, "references": null, "notes": null, "text": [45290, 45291], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 91062, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92412, "fields": {"name": "B\u00e4uerle", "review": false, "start_date": "1817-12-11", "end_date": "1896-07-17", "start_date_written": "11.12.1817", "end_date_written": "17.7.1896", "status": "", "source": 17852, "references": null, "notes": null, "text": [47030, 47031], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 92415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92603, "fields": {"name": "Czerny", "review": false, "start_date": "1791-02-21", "end_date": "1857-07-15", "start_date_written": "21.2.1791", "end_date_written": "15.7.1857", "status": "", "source": 18525, "references": null, "notes": null, "text": [47126, 47127], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 92604, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92605, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92930, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92931, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92932, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92933, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92934, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92935, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93003, "fields": {"name": "Bahr", "review": false, "start_date": "1863-07-19", "end_date": "1934-01-14", "start_date_written": "19.7.1863", "end_date_written": "14.1.1934", "status": "", "source": 102, "references": null, "notes": null, "text": [47200, 47201], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93009, "fields": {"name": "Czerny", "review": false, "start_date": "1863-03-25", "end_date": "1941-10-03", "start_date_written": "25.3.1863", "end_date_written": "3.10.1941", "status": "", "source": 114, "references": null, "notes": null, "text": [47204, 47205], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93012, "fields": {"name": "Czetz", "review": false, "start_date": "1822-06-08", "end_date": "1904-09-06", "start_date_written": "8.6.1822", "end_date_written": "6.9.1904", "status": "", "source": 116, "references": null, "notes": null, "text": [47206, 47207], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93013, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93014, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93015, "fields": {"name": "Czikann", "review": false, "start_date": "1789-07-10", "end_date": "1855-06-10", "start_date_written": "10.7.1789", "end_date_written": "10.6.1855", "status": "", "source": 117, "references": null, "notes": null, "text": [47208, 47209], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93016, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93017, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93018, "fields": {"name": "Clam-Gallas", "review": false, "start_date": "1805-03-11", "end_date": "1891-03-17", "start_date_written": "11.3.1805", "end_date_written": "17.3.1891", "status": "", "source": 108, "references": null, "notes": null, "text": [47210, 47211], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93021, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1826-06-15", "end_date": "1887-06-05", "start_date_written": "15.6.1826", "end_date_written": "5.6.1887", "status": "", "source": 109, "references": null, "notes": null, "text": [47212, 47213], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93022, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93023, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93024, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1863-01-01", "end_date": "1932-03-07", "start_date_written": "1.1.1863", "end_date_written": "7.3.1932", "status": "", "source": 110, "references": null, "notes": null, "text": [47214, 47215], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93025, "fields": {"name": "Clam (Grein)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93026, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93027, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93028, "fields": {"name": "Claus", "review": false, "start_date": "1835-01-02", "end_date": "1899-01-18", "start_date_written": "2.1.1835", "end_date_written": "18.1.1899", "status": "", "source": 111, "references": null, "notes": null, "text": [47216, 47217], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93029, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93030, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93031, "fields": {"name": "Conze", "review": false, "start_date": "1831-12-10", "end_date": "1914-07-19", "start_date_written": "10.12.1831", "end_date_written": "19.7.1914", "status": "", "source": 112, "references": null, "notes": null, "text": [47218, 47219], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93032, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93033, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93034, "fields": {"name": "Costenoble", "review": false, "start_date": "1769-12-25", "end_date": "1837-08-28", "start_date_written": "25.12.1769", "end_date_written": "28.8.1837", "status": "", "source": 113, "references": null, "notes": null, "text": [47220, 47221], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93035, "fields": {"name": "Herford, Westfalen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93036, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93037, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93044, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1846-03-21", "end_date": "1914-10-16", "start_date_written": "21.3.1846", "end_date_written": "16.10.1914", "status": "", "source": 103, "references": null, "notes": null, "text": [47226, 47227], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93045, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93046, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93047, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1834-11-29", "end_date": "1902-11-24", "start_date_written": "29.11.1834", "end_date_written": "24.11.1902", "status": "", "source": 104, "references": null, "notes": null, "text": [47228, 47229], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93048, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93049, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93050, "fields": {"name": "\u010cerven\u00fd", "review": false, "start_date": "1819-09-27", "end_date": "1896-01-19", "start_date_written": "27.9.1819", "end_date_written": "19.1.1896", "status": "", "source": 105, "references": null, "notes": null, "text": [47230, 47231], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93051, "fields": {"name": "Praha-Dube\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93054, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93055, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93056, "fields": {"name": "Charlemont", "review": false, "start_date": "1850-03-18", "end_date": "1939-03-18", "start_date_written": "18.3.1850", "end_date_written": "18.3.1939", "status": "", "source": 106, "references": null, "notes": null, "text": [47232, 47233], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93057, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93058, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93059, "fields": {"name": "Chlumczansk\u00fd", "review": false, "start_date": "1749-11-15", "end_date": "1830-06-14", "start_date_written": "15.11.1749", "end_date_written": "14.6.1830", "status": "", "source": 107, "references": null, "notes": null, "text": [47234, 47235], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93060, "fields": {"name": "Ho\u0161tice, kr. Jiho\u010desk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93063, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93064, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93065, "fields": {"name": "Dumba", "review": false, "start_date": "1856-06-17", "end_date": "1947-01-06", "start_date_written": "17.6.1856", "end_date_written": "6.1.1947", "status": "", "source": 121, "references": null, "notes": null, "text": [47236, 47237], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93066, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93067, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93068, "fields": {"name": "Doderer", "review": false, "start_date": "1825-01-02", "end_date": "1900-05-13", "start_date_written": "2.1.1825", "end_date_written": "13.5.1900", "status": "", "source": 120, "references": null, "notes": null, "text": [47238, 47239], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93069, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93070, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93071, "fields": {"name": "Defregger", "review": false, "start_date": "1835-04-30", "end_date": "1921-01-02", "start_date_written": "30.4.1835", "end_date_written": "2.1.1921", "status": "", "source": 118, "references": null, "notes": null, "text": [47240, 47241], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93072, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93073, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93074, "fields": {"name": "Dengel", "review": false, "start_date": "1872-06-22", "end_date": "1947-09-09", "start_date_written": "22.6.1872", "end_date_written": "9.9.1947", "status": "", "source": 119, "references": null, "notes": null, "text": [47242, 47243], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93075, "fields": {"name": "Elbigenalp-Untergiblen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93078, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93079, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93136, "fields": {"name": "Holovsky", "review": false, "start_date": "1917-04-29", "end_date": "1933-07-03", "start_date_written": "29.4.1917", "end_date_written": "3.7.1933", "status": "", "source": 122, "references": null, "notes": null, "text": [47276, 47277], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93137, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93138, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93328, "fields": {"name": "Lorenz", "review": false, "start_date": "1859-04-13", "end_date": "1945-03-25", "start_date_written": "13.4.1859", "end_date_written": "25.3.1945", "status": "", "source": 134, "references": null, "notes": null, "text": [47384, 47385], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93329, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93330, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93337, "fields": {"name": "L\u00f6wy", "review": false, "start_date": "1851-09-14", "end_date": "1905-12-27", "start_date_written": "14.9.1851", "end_date_written": "27.12.1905", "status": "", "source": 133, "references": null, "notes": null, "text": [47388, 47389], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93338, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93339, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93352, "fields": {"name": "Lobmeyr", "review": false, "start_date": "1792-03-17", "end_date": "1855-05-08", "start_date_written": "17.3.1792", "end_date_written": "8.5.1855", "status": "", "source": 132, "references": null, "notes": null, "text": [47394, 47395], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93353, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93354, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93366, "fields": {"name": "Lichtblau", "review": false, "start_date": "1844-05-17", "end_date": "1908-05-10", "start_date_written": "17.5.1844", "end_date_written": "10.5.1908", "status": "", "source": 130, "references": null, "notes": null, "text": [47402, 47403], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93367, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93368, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93369, "fields": {"name": "Lichtblau", "review": false, "start_date": "1875-02-25", "end_date": "1935-12-19", "start_date_written": "25.2.1875", "end_date_written": "19.12.1935", "status": "", "source": 131, "references": null, "notes": null, "text": [47404, 47405], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93370, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93371, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93378, "fields": {"name": "Leitgeb", "review": false, "start_date": "1835-10-20", "end_date": "1888-04-05", "start_date_written": "20.10.1835", "end_date_written": "5.4.1888", "status": "", "source": 128, "references": null, "notes": null, "text": [47410, 47411], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93379, "fields": {"name": "Portendorf, Bez. Klagenfurt Land", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93382, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93383, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93387, "fields": {"name": "Lenhoss\u00e9k", "review": false, "start_date": "1773-05-11", "end_date": "1840-02-11", "start_date_written": "11.5.1773", "end_date_written": "11.2.1840", "status": "", "source": 129, "references": null, "notes": null, "text": [47414, 47415], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93388, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93389, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93393, "fields": {"name": "Lefler", "review": false, "start_date": "1863-11-07", "end_date": "1919-03-14", "start_date_written": "7.11.1863", "end_date_written": "14.3.1919", "status": "", "source": 125, "references": null, "notes": null, "text": [47418, 47419], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93394, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93395, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93396, "fields": {"name": "Leichter", "review": false, "start_date": "1895-08-20", "end_date": "1942-03-17", "start_date_written": "20.8.1895", "end_date_written": "17.3.1942", "status": "", "source": 126, "references": null, "notes": null, "text": [47420, 47421], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93397, "fields": {"name": "KZ Ravensbr\u00fcck, Brandenburg", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93398, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93399, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93400, "fields": {"name": "Leidesdorf", "review": false, "start_date": "1810-09-25", "end_date": "1876-01-19", "start_date_written": "25.9.1810", "end_date_written": "19.1.1876", "status": "", "source": 127, "references": null, "notes": null, "text": [47422, 47423], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93401, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93402, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93409, "fields": {"name": "Lapaine", "review": false, "start_date": "1843-02-05", "end_date": "1923-02-21", "start_date_written": "5.2.1843", "end_date_written": "21.2.1923", "status": "", "source": 124, "references": null, "notes": null, "text": [47428, 47429], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93410, "fields": {"name": "Vojsko, sr. Gorica", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93413, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93414, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93415, "fields": {"name": "Langer-Schroll", "review": false, "start_date": "1850-10-02", "end_date": "1926-11-09", "start_date_written": "2.10.1850", "end_date_written": "9.11.1926", "status": "", "source": 123, "references": null, "notes": null, "text": [47430, 47431], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93417, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93418, "fields": {"name": "M\u00fcller", "review": false, "start_date": "1874-07-08", "end_date": "1941-12-09", "start_date_written": "8.7.1874", "end_date_written": "9.12.1941", "status": "", "source": 144, "references": null, "notes": null, "text": [47432, 47433], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93419, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93420, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93442, "fields": {"name": "M\u00f6rl", "review": false, "start_date": "1812-10-16", "end_date": "1868-01-11", "start_date_written": "16.10.1812", "end_date_written": "11.1.1868", "status": "", "source": 143, "references": null, "notes": null, "text": [47446, 47447], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93443, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93444, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93445, "fields": {"name": "Millosicz", "review": false, "start_date": "1819-10-18", "end_date": "1890-07-24", "start_date_written": "18.10.1819", "end_date_written": "24.7.1890", "status": "", "source": 142, "references": null, "notes": null, "text": [47448, 47449], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93446, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93447, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93448, "fields": {"name": "Miklosich", "review": false, "start_date": "1813-11-20", "end_date": "1891-03-07", "start_date_written": "20.11.1813", "end_date_written": "7.3.1891", "status": "", "source": 141, "references": null, "notes": null, "text": [47450, 47451], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93449, "fields": {"name": "Radomer\u0161\u010dak, sr. Murska Sobota", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93452, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93453, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93469, "fields": {"name": "Meithner", "review": false, "start_date": "1892-05-27", "end_date": "1942-12-13", "start_date_written": "27.5.1892", "end_date_written": "13.12.1942", "status": "", "source": 140, "references": null, "notes": null, "text": [47460, 47461], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93470, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93471, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93481, "fields": {"name": "Margulies", "review": false, "start_date": "1817-01-01", "end_date": "1880-01-01", "start_date_written": "1817", "end_date_written": "1880", "status": "", "source": 139, "references": null, "notes": null, "text": [47466, 47467], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93482, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93483, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93484, "fields": {"name": "M\u00e1nesov\u00e1", "review": false, "start_date": "1817-01-21", "end_date": null, "start_date_written": "21.1.1817", "end_date_written": "1883.6", "status": "", "source": 137, "references": null, "notes": null, "text": [47468, 47469], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93485, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93486, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93487, "fields": {"name": "M\u00e1nes", "review": false, "start_date": "1828-07-17", "end_date": "1880-08-05", "start_date_written": "17.7.1828", "end_date_written": "5.8.1880", "status": "", "source": 138, "references": null, "notes": null, "text": [47470, 47471], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93488, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93489, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93510, "fields": {"name": "Mayer", "review": false, "start_date": "1894-02-20", "end_date": "1944-07-01", "start_date_written": "20.2.1894", "end_date_written": "1.7.1944", "status": "", "source": 136, "references": null, "notes": null, "text": [47482, 47483], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93511, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93512, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93513, "fields": {"name": "Mahl-Schedl von Alpenburg", "review": false, "start_date": "1806-10-27", "end_date": "1873-04-01", "start_date_written": "27.10.1806", "end_date_written": "1.4.1873", "status": "", "source": 135, "references": null, "notes": null, "text": [47484, 47485], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93514, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93515, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93516, "fields": {"name": "Nov\u00e1\u010dek", "review": false, "start_date": "1860-04-07", "end_date": "1929-08-12", "start_date_written": "7.4.1860", "end_date_written": "12.8.1929", "status": "", "source": 145, "references": null, "notes": null, "text": [47486, 47487], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93517, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93518, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93540, "fields": {"name": "Ortmann", "review": false, "start_date": "1874-03-10", "end_date": "1939-11-22", "start_date_written": "10.3.1874", "end_date_written": "22.11.1939", "status": "", "source": 147, "references": null, "notes": null, "text": [47502, 47503], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93541, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93542, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93546, "fields": {"name": "Oellacher", "review": false, "start_date": "1804-02-16", "end_date": "1880-08-16", "start_date_written": "16.2.1804", "end_date_written": "16.8.1880", "status": "", "source": 146, "references": null, "notes": null, "text": [47506, 47507], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93547, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93548, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93561, "fields": {"name": "Poljanec", "review": false, "start_date": "1872-09-23", "end_date": "1944-08-08", "start_date_written": "23.9.1872", "end_date_written": "8.8.1944", "status": "", "source": 151, "references": null, "notes": null, "text": [47516, 47517], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93562, "fields": {"name": "Bre\u017eice, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93565, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93566, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93573, "fields": {"name": "Petzold", "review": false, "start_date": "1859-11-26", "end_date": "1932-07-15", "start_date_written": "26.11.1859", "end_date_written": "15.7.1932", "status": "", "source": 150, "references": null, "notes": null, "text": [47522, 47523], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93574, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93575, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93588, "fields": {"name": "Peithner von Lichtenfels", "review": false, "start_date": "1833-11-18", "end_date": "1913-01-22", "start_date_written": "18.11.1833", "end_date_written": "22.1.1913", "status": "", "source": 149, "references": "", "notes": "", "text": [47530, 47531], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93589, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93590, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93600, "fields": {"name": "Patera", "review": false, "start_date": "1819-07-11", "end_date": "1894-06-26", "start_date_written": "11.7.1819", "end_date_written": "26.6.1894", "status": "", "source": 148, "references": null, "notes": null, "text": [47536, 47537], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93601, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93602, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93609, "fields": {"name": "Rumpler", "review": false, "start_date": "1771-02-03", "end_date": "1846-03-17", "start_date_written": "3.2.1771", "end_date_written": "17.3.1846", "status": "", "source": 158, "references": null, "notes": null, "text": [47540, 47541], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93610, "fields": {"name": "Seekirchen a. Wallersee", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93613, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93614, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93615, "fields": {"name": "Rotter", "review": false, "start_date": "1868-11-30", "end_date": "1945-09-18", "start_date_written": "30.11.1868", "end_date_written": "18.9.1945", "status": "", "source": 157, "references": null, "notes": null, "text": [47542, 47543], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93616, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93617, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93639, "fields": {"name": "Revertera von Salandra", "review": false, "start_date": "1827-01-21", "end_date": "1904-04-28", "start_date_written": "21.1.1827", "end_date_written": "28.4.1904", "status": "", "source": 156, "references": null, "notes": null, "text": [47556, 47557], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93640, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93641, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93642, "fields": {"name": "Reichenberger", "review": false, "start_date": "1770-11-24", "end_date": "1854-10-26", "start_date_written": "24.11.1770", "end_date_written": "26.10.1854", "status": "", "source": 154, "references": null, "notes": null, "text": [47558, 47559], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93643, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93644, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93645, "fields": {"name": "Reiser", "review": false, "start_date": "1861-12-21", "end_date": "1936-03-31", "start_date_written": "21.12.1861", "end_date_written": "31.3.1936", "status": "", "source": 155, "references": null, "notes": null, "text": [47560, 47561], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93646, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93647, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93651, "fields": {"name": "Randa", "review": false, "start_date": "1874-05-24", "end_date": "1941-08-13", "start_date_written": "24.5.1874", "end_date_written": "13.8.1941", "status": "", "source": 153, "references": null, "notes": null, "text": [47564, 47565], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93652, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93653, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93654, "fields": {"name": "Radakovi\u010d", "review": false, "start_date": "1866-04-25", "end_date": "1934-08-15", "start_date_written": "25.4.1866", "end_date_written": "15.8.1934", "status": "", "source": 152, "references": null, "notes": null, "text": [47566, 47567], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93655, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93656, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93657, "fields": {"name": "Szigligeti", "review": false, "start_date": "1814-03-08", "end_date": "1878-01-19", "start_date_written": "8.3.1814", "end_date_written": "19.1.1878", "status": "", "source": 194, "references": null, "notes": null, "text": [47568, 47569], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93658, "fields": {"name": "Oradea-Olosig, jud. Bihor", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93661, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93662, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93663, "fields": {"name": "Szurmay von Uzsok", "review": false, "start_date": "1860-12-19", "end_date": "1945-03-26", "start_date_written": "19.12.1860", "end_date_written": "26.3.1945", "status": "", "source": 195, "references": null, "notes": null, "text": [47570, 47571], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93664, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93665, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93678, "fields": {"name": "St\u00fclz", "review": false, "start_date": "1799-02-23", "end_date": "1872-06-28", "start_date_written": "23.2.1799", "end_date_written": "28.6.1872", "status": "", "source": 193, "references": null, "notes": null, "text": [47580, 47581], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93679, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93680, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93684, "fields": {"name": "Stowasser", "review": false, "start_date": "1887-10-21", "end_date": "1934-02-19", "start_date_written": "21.10.1887", "end_date_written": "19.2.1934", "status": "", "source": 192, "references": null, "notes": null, "text": [47584, 47585], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93685, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93686, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93702, "fields": {"name": "Steindler", "review": false, "start_date": "1879-10-28", "end_date": "1933-12-21", "start_date_written": "28.10.1879", "end_date_written": "21.12.1933", "status": "", "source": 190, "references": null, "notes": null, "text": [47594, 47595], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93703, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93704, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93705, "fields": {"name": "Stein", "review": false, "start_date": "1891-09-19", "end_date": "1945-02-25", "start_date_written": "19.9.1891", "end_date_written": "25.2.1945", "status": "", "source": 191, "references": null, "notes": null, "text": [47596, 47597], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93706, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93707, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93714, "fields": {"name": "Stariha", "review": false, "start_date": "1845-05-12", "end_date": "1915-12-15", "start_date_written": "12.5.1845", "end_date_written": "15.12.1915", "status": "", "source": 189, "references": null, "notes": null, "text": [47602, 47603], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93715, "fields": {"name": "Sadinja vas, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93718, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93719, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93748, "fields": {"name": "\u0160njari\u0107", "review": false, "start_date": "1851-06-22", "end_date": "1930-01-28", "start_date_written": "22.6.1851", "end_date_written": "28.1.1930", "status": "", "source": 188, "references": null, "notes": null, "text": [47614, 47615], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93749, "fields": {"name": "\u010canak, sr. Gospi\u0107", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93752, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93753, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93779, "fields": {"name": "Sichulski", "review": false, "start_date": "1879-01-17", "end_date": "1942-11-06", "start_date_written": "17.1.1879", "end_date_written": "6.11.1942", "status": "", "source": 187, "references": null, "notes": null, "text": [47626, 47627], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93780, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93781, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93785, "fields": {"name": "Settari", "review": false, "start_date": "1841-10-04", "end_date": "1905-01-29", "start_date_written": "4.10.1841", "end_date_written": "29.1.1905", "status": "", "source": 186, "references": null, "notes": null, "text": [47630, 47631], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93786, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93787, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93791, "fields": {"name": "Sehnal", "review": false, "start_date": "1851-12-22", "end_date": "1910-09-12", "start_date_written": "22.12.1851", "end_date_written": "12.9.1910", "status": "", "source": 185, "references": null, "notes": null, "text": [47634, 47635], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93792, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93793, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93800, "fields": {"name": "Schwartz", "review": false, "start_date": "1852-02-28", "end_date": "1929-09-15", "start_date_written": "28.2.1852", "end_date_written": "15.9.1929", "status": "", "source": 181, "references": null, "notes": null, "text": [47640, 47641], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93801, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93802, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93803, "fields": {"name": "Schwarz", "review": false, "start_date": "1840-11-16", "end_date": "1903-12-28", "start_date_written": "16.11.1840", "end_date_written": "28.12.1903", "status": "", "source": 182, "references": null, "notes": null, "text": [47642, 47643], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93804, "fields": {"name": "\u0160umperk-Temenice, kr. Olomouck\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93807, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93808, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93809, "fields": {"name": "Schwarz", "review": false, "start_date": "1811-11-06", "end_date": "1879-05-07", "start_date_written": "6.11.1811", "end_date_written": "7.5.1879", "status": "", "source": 183, "references": null, "notes": null, "text": [47644, 47645], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93810, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93811, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93815, "fields": {"name": "Schweitzer", "review": false, "start_date": "1815-02-01", "end_date": "1896-07-09", "start_date_written": "1.2.1815", "end_date_written": "9.7.1896", "status": "", "source": 184, "references": null, "notes": null, "text": [47648, 47649], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93816, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93817, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93818, "fields": {"name": "Schwabl", "review": false, "start_date": "1854-06-29", "end_date": "1923-04-16", "start_date_written": "29.6.1854", "end_date_written": "16.4.1923", "status": "", "source": 180, "references": null, "notes": null, "text": [47650, 47651], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93819, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93820, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93836, "fields": {"name": "Schu\u00ebcker", "review": false, "start_date": "1860-11-16", "end_date": "1911-11-09", "start_date_written": "16.11.1860", "end_date_written": "9.11.1911", "status": "", "source": 179, "references": null, "notes": null, "text": [47660, 47661], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93837, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93838, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93839, "fields": {"name": "Schr\u00f6dl", "review": false, "start_date": "1841-07-07", "end_date": "1908-12-05", "start_date_written": "7.7.1841", "end_date_written": "5.12.1908", "status": "", "source": 178, "references": null, "notes": null, "text": [47662, 47663], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93841, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93854, "fields": {"name": "Schreyer", "review": false, "start_date": "1876-12-09", "end_date": "1950-04-14", "start_date_written": "9.12.1876", "end_date_written": "14.4.1950", "status": "", "source": 177, "references": null, "notes": null, "text": [47672, 47673], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93855, "fields": {"name": "B\u0159idli\u010dn\u00e1, kr. Moravskoslezsk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93858, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93859, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93863, "fields": {"name": "Scholz", "review": false, "start_date": "1819-08-20", "end_date": "1902-05-19", "start_date_written": "20.8.1819", "end_date_written": "19.5.1902", "status": "", "source": 175, "references": null, "notes": null, "text": [47676, 47677], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93864, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93865, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93866, "fields": {"name": "Schrammel", "review": false, "start_date": "1850-05-22", "end_date": "1893-06-17", "start_date_written": "22.5.1850", "end_date_written": "17.6.1893", "status": "", "source": 176, "references": null, "notes": null, "text": [47678, 47679], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93867, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93868, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93878, "fields": {"name": "Scholl", "review": false, "start_date": "1805-01-01", "end_date": "1884-12-12", "start_date_written": "1805", "end_date_written": "12.12.1884", "status": "", "source": 174, "references": null, "notes": null, "text": [47684, 47685], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93879, "fields": {"name": "Regio oder Rea (?)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93880, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93881, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93891, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1804-06-30", "end_date": "1880-12-19", "start_date_written": "30.6.1804", "end_date_written": "19.12.1880", "status": "", "source": 172, "references": null, "notes": null, "text": [47688, 47689], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93892, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93893, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93894, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1863-09-12", "end_date": "1930-03-09", "start_date_written": "12.9.1863", "end_date_written": "9.3.1930", "status": "", "source": 173, "references": null, "notes": null, "text": [47690, 47691], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93895, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93896, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93900, "fields": {"name": "Schnitzler", "review": false, "start_date": "1865-07-13", "end_date": "1939-06-29", "start_date_written": "13.7.1865", "end_date_written": "29.6.1939", "status": "", "source": 169, "references": null, "notes": null, "text": [47694, 47695], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93901, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93902, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93903, "fields": {"name": "Schober", "review": false, "start_date": "1856-12-15", "end_date": "1917-03-07", "start_date_written": "15.12.1856", "end_date_written": "7.3.1917", "status": "", "source": 170, "references": null, "notes": null, "text": [47696, 47697], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93905, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93909, "fields": {"name": "Schoeller", "review": false, "start_date": "1826-10-05", "end_date": "1889-06-25", "start_date_written": "5.10.1826", "end_date_written": "25.6.1889", "status": "", "source": 171, "references": null, "notes": null, "text": [47700, 47701], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93910, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93911, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93921, "fields": {"name": "Schmutzler", "review": false, "start_date": "1864-03-29", "end_date": "1940-06-20", "start_date_written": "29.3.1864", "end_date_written": "20.6.1940", "status": "", "source": 168, "references": null, "notes": null, "text": [47706, 47707], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93922, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93923, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93933, "fields": {"name": "Schmidt", "review": false, "start_date": "1904-03-04", "end_date": "1942-11-16", "start_date_written": "4.3.1904", "end_date_written": "16.11.1942", "status": "", "source": 167, "references": null, "notes": null, "text": [47712, 47713], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93934, "fields": {"name": "Davydivka, obl. \u010cernivci", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93937, "fields": {"name": "Girenbad b. Hinwil, Kanton Z\u00fcrich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93938, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93939, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93940, "fields": {"name": "Schmidt", "review": false, "start_date": "1826-12-09", "end_date": "1892-03-28", "start_date_written": "9.12.1826", "end_date_written": "28.3.1892", "status": "", "source": 166, "references": null, "notes": null, "text": [47714, 47715], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93941, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93942, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93946, "fields": {"name": "Schmal", "review": false, "start_date": "1844-09-23", "end_date": "1900-12-24", "start_date_written": "23.9.1844", "end_date_written": "24.12.1900", "status": "", "source": 164, "references": null, "notes": null, "text": [47718, 47719], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93947, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93948, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93955, "fields": {"name": "Schmidt-Beauchez", "review": false, "start_date": "1848-06-06", "end_date": "1912-12-14", "start_date_written": "6.6.1848", "end_date_written": "14.12.1912", "status": "", "source": 165, "references": null, "notes": null, "text": [47724, 47725], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93956, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93957, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93958, "fields": {"name": "Schindler", "review": false, "start_date": "1835-06-23", "end_date": "1911-02-22", "start_date_written": "23.6.1835", "end_date_written": "22.2.1911", "status": "", "source": 163, "references": null, "notes": null, "text": [47726, 47727], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93959, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93960, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93961, "fields": {"name": "Scheu", "review": false, "start_date": "1841-09-15", "end_date": "1904-10-12", "start_date_written": "15.9.1841", "end_date_written": "12.10.1904", "status": "", "source": 161, "references": null, "notes": null, "text": [47728, 47729], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93962, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93963, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93964, "fields": {"name": "Schikaneder", "review": false, "start_date": "1855-02-27", "end_date": "1924-11-15", "start_date_written": "27.2.1855", "end_date_written": "15.11.1924", "status": "", "source": 162, "references": null, "notes": null, "text": [47730, 47731], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93965, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93966, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93967, "fields": {"name": "Schell", "review": false, "start_date": "1892-12-19", "end_date": "1945-06-02", "start_date_written": "19.12.1892", "end_date_written": "2.6.1945", "status": "", "source": 159, "references": null, "notes": null, "text": [47732, 47733], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93968, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93969, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93970, "fields": {"name": "Schenk", "review": false, "start_date": "1840-08-23", "end_date": "1902-08-17", "start_date_written": "23.8.1840", "end_date_written": "17.8.1902", "status": "", "source": 160, "references": null, "notes": null, "text": [47734, 47735], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93971, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93972, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93988, "fields": {"name": "T\u00f6lgyessy", "review": false, "start_date": "1853-05-01", "end_date": "1920-02-02", "start_date_written": "1.5.1853", "end_date_written": "2.2.1920", "status": "", "source": 201, "references": null, "notes": null, "text": [47746, 47747], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93989, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93990, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93991, "fields": {"name": "Thun und Hohenstein", "review": false, "start_date": "1763-03-28", "end_date": "1818-10-09", "start_date_written": "28.3.1763", "end_date_written": "9.10.1818", "status": "", "source": 200, "references": null, "notes": null, "text": [47748, 47749], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93992, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93993, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94003, "fields": {"name": "Teschenberg", "review": false, "start_date": "1836-05-21", "end_date": "1886-02-25", "start_date_written": "21.5.1836", "end_date_written": "25.2.1886", "status": "", "source": 197, "references": "", "notes": "", "text": [47754, 47755], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94006, "fields": {"name": "Tetmajer", "review": false, "start_date": "1865-02-12", "end_date": "1940-01-18", "start_date_written": "12.2.1865", "end_date_written": "18.1.1940", "status": "", "source": 198, "references": null, "notes": null, "text": [47756, 47757], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94007, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94008, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94009, "fields": {"name": "Teuber", "review": false, "start_date": "1877-05-11", "end_date": "1943-02-03", "start_date_written": "11.5.1877", "end_date_written": "3.2.1943", "status": "", "source": 199, "references": null, "notes": null, "text": [47758, 47759], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94018, "fields": {"name": "Tauber", "review": false, "start_date": "1891-05-16", "end_date": "1948-01-08", "start_date_written": "16.5.1891", "end_date_written": "8.1.1948", "status": "", "source": 196, "references": null, "notes": null, "text": [47764, 47765], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94160, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94161, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94162, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94163, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94164, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94165, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94166, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94167, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94168, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94169, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94170, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94171, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94174, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94175, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98116, "fields": {"name": "wien", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99591, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111335, "fields": {"name": "Schlacht von St. Lucia", "review": false, "start_date": "1848-05-06", "end_date": null, "start_date_written": "6.5.1848", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Schlacht_von_Santa_Lucia", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111348, "fields": {"name": "Schlacht bei K\u00f6niggr\u00e4tz", "review": false, "start_date": "1866-07-03", "end_date": null, "start_date_written": "3.7.1866", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Schlacht_bei_K%C3%B6niggr%C3%A4tz", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111365, "fields": {"name": "Zweiter Unabh\u00e4ngigkeitskrieg Italien", "review": false, "start_date": "1859-01-01", "end_date": null, "start_date_written": "1859", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Italienische_Unabh%C3%A4ngigkeitskriege#Zweiter_Unabh.C3.A4ngigkeitskrieg_.281859.29", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.source", "pk": 102, "fields": {"orig_filename": "Bahr_Hermann_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f.", "author": "", "orig_id": 1405476}}, {"model": "metainfo.source", "pk": 103, "fields": {"orig_filename": "Celakovsky_Jaromir_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416946}}, {"model": "metainfo.source", "pk": 104, "fields": {"orig_filename": "Celakovsky_Ladislav_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416947}}, {"model": "metainfo.source", "pk": 105, "fields": {"orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416953}}, {"model": "metainfo.source", "pk": 106, "fields": {"orig_filename": "Charlemont_Hugo_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417029}}, {"model": "metainfo.source", "pk": 107, "fields": {"orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417140}}, {"model": "metainfo.source", "pk": 108, "fields": {"orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417315}}, {"model": "metainfo.source", "pk": 109, "fields": {"orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417317}}, {"model": "metainfo.source", "pk": 110, "fields": {"orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417316}}, {"model": "metainfo.source", "pk": 111, "fields": {"orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417320}}, {"model": "metainfo.source", "pk": 112, "fields": {"orig_filename": "Conze_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f.", "author": "", "orig_id": 1417417}}, {"model": "metainfo.source", "pk": 113, "fields": {"orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417431}}, {"model": "metainfo.source", "pk": 114, "fields": {"orig_filename": "Czerny_Adalbert_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417613}}, {"model": "metainfo.source", "pk": 116, "fields": {"orig_filename": "Czetz_Johann_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f.", "author": "", "orig_id": 1417689}}, {"model": "metainfo.source", "pk": 117, "fields": {"orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417691}}, {"model": "metainfo.source", "pk": 118, "fields": {"orig_filename": "Defregger_Franz_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417167}}, {"model": "metainfo.source", "pk": 119, "fields": {"orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417262}}, {"model": "metainfo.source", "pk": 120, "fields": {"orig_filename": "Doderer_Wilhelm_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421589}}, {"model": "metainfo.source", "pk": 121, "fields": {"orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422065}}, {"model": "metainfo.source", "pk": 122, "fields": {"orig_filename": "Holovsky_Hilde_1917_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417020}}, {"model": "metainfo.source", "pk": 123, "fields": {"orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412571}}, {"model": "metainfo.source", "pk": 124, "fields": {"orig_filename": "Lapaine_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f.", "author": "", "orig_id": 1412681}}, {"model": "metainfo.source", "pk": 125, "fields": {"orig_filename": "Lefler_Heinrich_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413578}}, {"model": "metainfo.source", "pk": 126, "fields": {"orig_filename": "Leichter_Kaethe_1895_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413749}}, {"model": "metainfo.source", "pk": 127, "fields": {"orig_filename": "Leidesdorf_Franz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f.", "author": "", "orig_id": 1413751}}, {"model": "metainfo.source", "pk": 128, "fields": {"orig_filename": "Leitgeb_Hubert_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f.", "author": "", "orig_id": 1413852}}, {"model": "metainfo.source", "pk": 129, "fields": {"orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412686}}, {"model": "metainfo.source", "pk": 130, "fields": {"orig_filename": "Lichtblau_Adolf_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411908}}, {"model": "metainfo.source", "pk": 131, "fields": {"orig_filename": "Lichtblau_Ludwig_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f.", "author": "", "orig_id": 1411907}}, {"model": "metainfo.source", "pk": 132, "fields": {"orig_filename": "Lobmeyr_Josef_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263", "author": "", "orig_id": 1411542}}, {"model": "metainfo.source", "pk": 133, "fields": {"orig_filename": "Loewy_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297", "author": "", "orig_id": 1411913}}, {"model": "metainfo.source", "pk": 134, "fields": {"orig_filename": "Lorenz_Heinrich_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316", "author": "", "orig_id": 1412111}}, {"model": "metainfo.source", "pk": 135, "fields": {"orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f.", "author": "", "orig_id": 1411846}}, {"model": "metainfo.source", "pk": 136, "fields": {"orig_filename": "Maier_Karl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412133}}, {"model": "metainfo.source", "pk": 137, "fields": {"orig_filename": "Manesova_Amalie_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f.", "author": "", "orig_id": 1409111}}, {"model": "metainfo.source", "pk": 138, "fields": {"orig_filename": "Manes_Quido_1828_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409109}}, {"model": "metainfo.source", "pk": 139, "fields": {"orig_filename": "Margulies_Berl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1409490}}, {"model": "metainfo.source", "pk": 140, "fields": {"orig_filename": "Meithner_Karl_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f.", "author": "", "orig_id": 1413879}}, {"model": "metainfo.source", "pk": 141, "fields": {"orig_filename": "Miklosich_Franz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f.", "author": "", "orig_id": 1413368}}, {"model": "metainfo.source", "pk": 142, "fields": {"orig_filename": "Millosicz_Georg_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f.", "author": "", "orig_id": 1413706}}, {"model": "metainfo.source", "pk": 143, "fields": {"orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412553}}, {"model": "metainfo.source", "pk": 144, "fields": {"orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413568}}, {"model": "metainfo.source", "pk": 145, "fields": {"orig_filename": "Novacek_Rudolf_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f.", "author": "", "orig_id": 1408134}}, {"model": "metainfo.source", "pk": 146, "fields": {"orig_filename": "Oellacher_Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408688}}, {"model": "metainfo.source", "pk": 147, "fields": {"orig_filename": "Ortmann_Rudolf_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409161}}, {"model": "metainfo.source", "pk": 148, "fields": {"orig_filename": "Patera_Adolf_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f.", "author": "", "orig_id": 1408720}}, {"model": "metainfo.source", "pk": 149, "fields": {"orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f.", "author": "", "orig_id": 1409360}}, {"model": "metainfo.source", "pk": 150, "fields": {"orig_filename": "Petzold_Emil_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407914}}, {"model": "metainfo.source", "pk": 151, "fields": {"orig_filename": "Poljanec_Leopold_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410619}}, {"model": "metainfo.source", "pk": 152, "fields": {"orig_filename": "Radakovic_Michael_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f.", "author": "", "orig_id": 1409702}}, {"model": "metainfo.source", "pk": 153, "fields": {"orig_filename": "Randa_Maximilian_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411", "author": "", "orig_id": 1410086}}, {"model": "metainfo.source", "pk": 154, "fields": {"orig_filename": "Reichenberger_Andreas_1770_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f.", "author": "", "orig_id": 1406805}}, {"model": "metainfo.source", "pk": 155, "fields": {"orig_filename": "Reiser_Othmar_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406978}}, {"model": "metainfo.source", "pk": 156, "fields": {"orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f.", "author": "", "orig_id": 1407193}}, {"model": "metainfo.source", "pk": 157, "fields": {"orig_filename": "Rotter_Johann_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f.", "author": "", "orig_id": 1407684}}, {"model": "metainfo.source", "pk": 158, "fields": {"orig_filename": "Rumpler_Matthias_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327", "author": "", "orig_id": 1407832}}, {"model": "metainfo.source", "pk": 159, "fields": {"orig_filename": "Schell_Karl_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f.", "author": "", "orig_id": 1406179}}, {"model": "metainfo.source", "pk": 160, "fields": {"orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f.", "author": "", "orig_id": 1406202}}, {"model": "metainfo.source", "pk": 161, "fields": {"orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f.", "author": "", "orig_id": 1406044}}, {"model": "metainfo.source", "pk": 162, "fields": {"orig_filename": "Schikaneder_Jakub_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f.", "author": "", "orig_id": 1406374}}, {"model": "metainfo.source", "pk": 163, "fields": {"orig_filename": "Schindler_Josef_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153", "author": "", "orig_id": 1406252}}, {"model": "metainfo.source", "pk": 164, "fields": {"orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406496}}, {"model": "metainfo.source", "pk": 165, "fields": {"orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f.", "author": "", "orig_id": 1406721}}, {"model": "metainfo.source", "pk": 166, "fields": {"orig_filename": "Schmid_Anton_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f.", "author": "", "orig_id": 1406531}}, {"model": "metainfo.source", "pk": 167, "fields": {"orig_filename": "Schmid_Joseph_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f.", "author": "", "orig_id": 1406597}}, {"model": "metainfo.source", "pk": 168, "fields": {"orig_filename": "Schmutzler_Leopold_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f.", "author": "", "orig_id": 1406623}}, {"model": "metainfo.source", "pk": 169, "fields": {"orig_filename": "Schnitzler_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f.", "author": "", "orig_id": 1406896}}, {"model": "metainfo.source", "pk": 170, "fields": {"orig_filename": "Schober_Alfred_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f.", "author": "", "orig_id": 1406912}}, {"model": "metainfo.source", "pk": 171, "fields": {"orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405414}}, {"model": "metainfo.source", "pk": 172, "fields": {"orig_filename": "Schoenberger_Adolf_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405629}}, {"model": "metainfo.source", "pk": 173, "fields": {"orig_filename": "Schoenberger_Benno_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405634}}, {"model": "metainfo.source", "pk": 174, "fields": {"orig_filename": "Scholl_Joseph_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f.", "author": "", "orig_id": 1412321}}, {"model": "metainfo.source", "pk": 175, "fields": {"orig_filename": "Scholz_Franz_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412411}}, {"model": "metainfo.source", "pk": 176, "fields": {"orig_filename": "Schrammel_Johann_1850_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff.", "author": "", "orig_id": 1411222}}, {"model": "metainfo.source", "pk": 177, "fields": {"orig_filename": "Schreyer_Johann_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411681}}, {"model": "metainfo.source", "pk": 178, "fields": {"orig_filename": "Schroedl_Leopold_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236", "author": "", "orig_id": 1411777}}, {"model": "metainfo.source", "pk": 179, "fields": {"orig_filename": "Schuecker_Edmund_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f.", "author": "", "orig_id": 1412171}}, {"model": "metainfo.source", "pk": 180, "fields": {"orig_filename": "Schwabl_Franz_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f.", "author": "", "orig_id": 1420210}}, {"model": "metainfo.source", "pk": 181, "fields": {"orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f.", "author": "", "orig_id": 1420456}}, {"model": "metainfo.source", "pk": 182, "fields": {"orig_filename": "Schwarz_Johann_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439", "author": "", "orig_id": 1420439}}, {"model": "metainfo.source", "pk": 183, "fields": {"orig_filename": "Schwarz_Kaspar_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445", "author": "", "orig_id": 1420450}}, {"model": "metainfo.source", "pk": 184, "fields": {"orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f.", "author": "", "orig_id": 1439729}}, {"model": "metainfo.source", "pk": 185, "fields": {"orig_filename": "Sehnal_Eugen_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f.", "author": "", "orig_id": 1439478}}, {"model": "metainfo.source", "pk": 186, "fields": {"orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197", "author": "", "orig_id": 1450886}}, {"model": "metainfo.source", "pk": 187, "fields": {"orig_filename": "Sichulski_Kazimierz_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223", "author": "", "orig_id": 1450008}}, {"model": "metainfo.source", "pk": 188, "fields": {"orig_filename": "Snjaric_Lukas_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384", "author": "", "orig_id": 1457373}}, {"model": "metainfo.source", "pk": 189, "fields": {"orig_filename": "Stariha_Janez-Nep_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105", "author": "", "orig_id": 1428070}}, {"model": "metainfo.source", "pk": 190, "fields": {"orig_filename": "Steindler_Olga_1879_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f.", "author": "", "orig_id": 1430730}}, {"model": "metainfo.source", "pk": 191, "fields": {"orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149", "author": "", "orig_id": 1428363}}, {"model": "metainfo.source", "pk": 192, "fields": {"orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f.", "author": "", "orig_id": 1434284}}, {"model": "metainfo.source", "pk": 193, "fields": {"orig_filename": "Stuelz_Jodok_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443", "author": "", "orig_id": 1433097}}, {"model": "metainfo.source", "pk": 194, "fields": {"orig_filename": "Szigligeti_Ede_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154", "author": "", "orig_id": 1434706}}, {"model": "metainfo.source", "pk": 195, "fields": {"orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178", "author": "", "orig_id": 1435139}}, {"model": "metainfo.source", "pk": 196, "fields": {"orig_filename": "Tauber_Richard_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff.", "author": "", "orig_id": 1422288}}, {"model": "metainfo.source", "pk": 197, "fields": {"orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257", "author": "", "orig_id": 1424387}}, {"model": "metainfo.source", "pk": 198, "fields": {"orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 2047416}}, {"model": "metainfo.source", "pk": 199, "fields": {"orig_filename": "Teuber_Emmerich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f.", "author": "", "orig_id": 1448255}}, {"model": "metainfo.source", "pk": 200, "fields": {"orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f.", "author": "", "orig_id": 1424667}}, {"model": "metainfo.source", "pk": 201, "fields": {"orig_filename": "Toelgyessy_Artur_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1458532}}, {"model": "metainfo.source", "pk": 531, "fields": {"orig_filename": "Thalberg_Sigismund_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277", "author": "", "orig_id": 1424641}}, {"model": "metainfo.source", "pk": 5804, "fields": {"orig_filename": "Reicha_Anton-Josef_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27", "author": "", "orig_id": 1406794}}, {"model": "metainfo.source", "pk": 8543, "fields": {"orig_filename": "Moscheles_Ignaz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f.", "author": "", "orig_id": 1413099}}, {"model": "metainfo.source", "pk": 10332, "fields": {"orig_filename": "Liszt_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f.", "author": "", "orig_id": 1411364}}, {"model": "metainfo.source", "pk": 17415, "fields": {"orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418730}}, {"model": "metainfo.source", "pk": 17608, "fields": {"orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f.", "author": "", "orig_id": 1406636}}, {"model": "metainfo.source", "pk": 17852, "fields": {"orig_filename": "Baeuerle_Friederike_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420833}}, {"model": "metainfo.source", "pk": 18525, "fields": {"orig_filename": "Czerny_Carl_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417615}}, {"model": "metainfo.text", "pk": 11195, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11196, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11197, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11198, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11199, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11200, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11203, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11204, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11205, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11206, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11207, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11210, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11211, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11214, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11215, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11218, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11219, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11220, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11221, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11222, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11223, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11224, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11225, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11226, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11227, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11228, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11229, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11230, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11231, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11234, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11235, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11236, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11237, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11238, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11239, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11240, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11241, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11242, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11243, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11244, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11245, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11246, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11249, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11250, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11251, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11252, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11253, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11254, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11255, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11256, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11257, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11258, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11259, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11260, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11261, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11262, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11263, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11266, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11269, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11270, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11271, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11272, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11275, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11278, "fields": {"kind": 236, "text": "http://www.geonames.org/maps/google_46.547_15.596.html\r\nOthmar Reiser's Geburtsort ist Hrastje, der heute Pekre heisst, und neben Maribor liegt.", "source": null}}, {"model": "metainfo.text", "pk": 11279, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11280, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11281, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11284, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11285, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11286, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11287, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11288, "fields": {"kind": 236, "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, B\u00f6hmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der b\u00f6hmische Lachovice der richtige", "source": null}}, {"model": "metainfo.text", "pk": 11289, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11290, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11291, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11292, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11293, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11294, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11299, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11300, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11301, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11302, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11303, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11304, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11305, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11308, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11311, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11312, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11313, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11314, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11317, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11318, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11319, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11320, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11321, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11322, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11323, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11324, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11325, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11326, "fields": {"kind": 236, "text": "ziemlich viele \u00d6BL labels f\u00fcr Meran!", "source": null}}, {"model": "metainfo.text", "pk": 11327, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11330, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11331, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11334, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11335, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11336, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11337, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11338, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11339, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11342, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11343, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11344, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11345, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11346, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11347, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11348, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11349, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11350, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11351, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 12155, "fields": {"kind": 130, "text": "Sohn von Joseph T. und Fortun\u00e9e Stein (urkundl.; vermutl. jedoch illegitimer Sohn von \u00bfFranz Josef F\u00fcrst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers Fran\u00e7ois Boucher und Tochter des Operns\u00e4ngers Luigi Lablache, verheiratet. \u2013 T. zog 1822 nach Wien, wo er Klavierunterricht beim Ersten Fagottisten der Hofoper, August Mittag, erhielt und das polytechn. Inst. besucht haben soll (nicht nachweisbar). In weiterer Folge stud. er bei \u00bfSimon Sechter (Theorie) und \u00bfJohann Nep. Hummel (Klavier). 1826 trat er erstmals, zun\u00e4chst in Wr. Privatzirkeln, als Pianist auf. 1830 f\u00fchrte ihn die erste Auslandstournee nach Dtld. und England, anschlie\u00dfend in andere europ. L\u00e4nder. Nach weiteren Stud. bei \u00bfIgnaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 gro\u00dfe Erfolge in Paris und triumphierte 1837\u201348 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und S\u00fcdamerika, wo er u.\u00a0a. in New York eine Klavierschule gr\u00fcndete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die n\u00e4chsten Jahre zur\u00fcckgezogen lebte. Nach Wiederaufnahme seiner Tourneen 1862 (London und Paris) ging er 1863 abermals nach Brasilien, danach schied er aus dem Konzertleben aus. Einem Brief Felix Mendelssohn-Bartholdys zufolge galt T. bis zur Jh.mitte neben \u00bfFranz v. Liszt als gr\u00f6\u00dfter Klaviervirtuose seiner Zeit. 1837 kam es zu einem \u00f6ff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle \u00d6ffentlichkeit sah Liszt als Romantiker, w\u00e4hrend der von seinem Auftreten her aristokrat. T. eher f\u00fcr ein klassizist. Musikideal stand. Auch die Qualit\u00e4t der Kompositionen beider wurde kontr\u00e4r beurteilt. Liszt bezeichnete T.s Werke in der \u201eRevue et gazette musicale de Paris\u201c als eine Mischung aus Monotonie und Unverm\u00f6gen. Die so aufgeschaukelte Rivalit\u00e4t kulminierte, als beide Musiker an einem von F\u00fcrstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Fr\u00e9d\u00e9ric Chopin und \u00bfCarl Czerny, an einer Kollektivkomposition f\u00fcr die F\u00fcrstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen \u00fcber Themen bekannter Opern dessen gr\u00f6\u00dften Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zur\u00fcck. T.s Personalstil kennzeichneten v.\u00a0a. das Hervortreten der auf beide H\u00e4nde verteilten Melodie in der Mittellage, w\u00e4hrend diese u.\u00a0a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. \u201eL\u2019Art du chant appliqu\u00e9 au piano\u201c festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosit\u00e4t, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n", "source": 531}}, {"model": "metainfo.text", "pk": 12156, "fields": {"kind": 131, "text": "Thalberg Sigismund (Fortun\u00e9 Fran\u00e7ois), Pianist und Komponist. Geb. P\u00e2quis (Gen\u00e8ve-Bains des P\u00e2quis, CH), 8.\u00a01. 1812; gest. Posillipo (Napoli, I), 27.\u00a04. 1871.", "source": 531}}, {"model": "metainfo.text", "pk": 21722, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckers; lebte ab ca. 1781 bei seinem Gro\u00dfvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurf\u00fcrstlichen Hof in Bonn t\u00e4tig war. 1787 wurde R. Fl\u00f6tist der Hofkapelle und begann zu komponieren. 1794\u201399 lebte er in Hamburg und verdiente seinen Lebensunterhalt mit Musikunterricht, ab 1799 in Paris, wo er vergeblich auf die Urauff. zweier von ihm komponierter Opern hoffte. 1802\u201308 war er in Wien und stud. u. a. bei J. Haydn, Albrechtsberger und Salieri Komposition. Ab 1808 lebte R. in Paris, ab 1818 als Prof. f\u00fcr Komposition. Als Musikp\u00e4dagoge und Theoretiker erlangte er gro\u00dfes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Sch\u00fclern geh\u00f6rten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterlie\u00df auch als Komponist ein wertvolles und umfangreiches \u0152uvre. Mit seinen 24 Bl\u00e4serquintetten schuf er die Grundlage f\u00fcr das Repertoire derartiger Kammerensembles.\n", "source": 5804}}, {"model": "metainfo.text", "pk": 21723, "fields": {"kind": 131, "text": "Reicha\u00a0(Rejcha) Anton (Anton\u00edn) Josef, Komponist und Musikp\u00e4dagoge. * Prag, 26. 2. 1770; \u2020 Paris, 28. 5. 1836.", "source": 5804}}, {"model": "metainfo.text", "pk": 27186, "fields": {"kind": 130, "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808\u201320 lebte er in Wien und stud. bei Streicher, Albrechtsberger und Salieri. M. unterrichtete selbst, auch in der besten Ges. M., dessen Ruhm als Pianist und Komponist (seine Variationen \u00fcber den Alexander-Marsch von 1815 blieben jahrzehntelang ein Pr\u00fcfstein pianist. Virtuosit\u00e4t) st\u00e4ndig wuchs, trat in Prag, Leipzig und Dresden auf. 1820 machte er ausgedehnte Reisen durch Deutschland, Holland, Belgien, Frankreich und England und hielt sich auch wieder l\u00e4nger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 \u00fcbersiedelte M. nach London und geh\u00f6rte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den f\u00fchrenden Pers\u00f6nlichkeiten des Musiklebens. 1846 \u00fcbernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der gro\u00dfen Pianisten seiner Zeit und setzte sich vor allem f\u00fcr Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des \u201eFidelio\u201c hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bem\u00fchte er sich tatkr\u00e4ftig um dessen Unterst\u00fctzung durch die Londoner Philharmonic Society.\n", "source": 8543}}, {"model": "metainfo.text", "pk": 27187, "fields": {"kind": 131, "text": "Moscheles\u00a0Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; \u2020 Leipzig, 10. 3. 1870.", "source": 8543}}, {"model": "metainfo.text", "pk": 30762, "fields": {"kind": 130, "text": "Sohn des Esterh\u00e1zyschen Verwalters Adam L. (1776\u20131827), Neffe des Vorigen, Vetter des Arztes und Schriftstellers Joseph Anton L. (s. d.) und des Folgenden; erhielt den ersten Klavierunterricht vom Vater. Im August oder September 1819 d\u00fcrfte er in Baden bei Wien erstmals \u00f6ff. aufgetreten sein. Weitere Konzerte folgten in \u00d6denburg und Pre\u00dfburg. Auf Grund des letzten (26. 11. 1820) setzten ihm ung. Magnaten ein Studienstipendium aus. Da J. N. Hummels (s. d.) Forderungen zu hoch waren, brachte der Vater den Knaben nach Wien zu C. Czerny (s. d.). Neben dessen Klavierunterricht erhielt er Unterweisung in Musiktheorie durch A. Salieri. 1822 wurde der Elfj\u00e4hrige zur Mitarbeit an A. Diabellis (s. d.) \u201eVaterl\u00e4ndischem K\u00fcnstlerverein\u201c eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er \u00f6ff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum gek\u00fc\u00dft. Der Erl\u00f6s dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die M\u00f6glichkeit zur \u00dcbersiedlung nach Paris; auf der Reise und sp\u00e4ter von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausl\u00e4nder die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., haupts\u00e4chlich nach der Methode Kalkbrenners (s. d.) fort, stud. aber Musiktheorie bei F. Paer und A. Reicha. Er blieb bis 1837 in Paris und unterrichtete in den h\u00f6chsten Kreisen. Berlioz und Paganini regten seine k\u00fcnstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem pers\u00f6nlichen Kontakt stand. 1835\u201339 lebte L. mit Gfn. Marie d\u2019Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die K\u00fcnstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzertt\u00e4tigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa f\u00fchrte. In Kiew begegnete er 1847 der F\u00fcrstin Carolyne Sayn-Wittgenstein, welche ihren Mann verlie\u00df und sich schlie\u00dflich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum gro\u00dfherzoglichen Kapellmeister in au\u00dferordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausge\u00fcbt hatte und nun in vollem Ma\u00dfe aufnahm. Seine Lebensgemeinschaft mit der F\u00fcrstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verh\u00e4ltnissen entfaltete er eine erfolgreiche k\u00fcnstler. T\u00e4tigkeit, welche in dem selbstlosen Eintreten f\u00fcr R. Wagner gipfelte. Wahrscheinlich unter dem Einflu\u00df der F\u00fcrstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither f\u00fchrte er ein unstetes und unbefriedigtes Wanderleben, kehrte f\u00fcr kurze Zeit auch nach Weimar zur\u00fcck, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fu\u00dfend, die Klaviertechnik ungeheuer ausgebaut, in Richtung auf den Orchesterklang hin, auf eine neue Gesanglichkeit vom romant. Lied her und auf die von ihm bedeutend erweiterten M\u00f6glichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilit\u00e4t des Anschlages. Nicht weniger hat L. als Komponist gewirkt, hier vor allem auf harmon. Gebiet, wegweisend aber auch in der Auslotung der techn. und formalen M\u00f6glichkeiten \u00fcberhaupt und in der Programmatik der inhaltlichen Erf\u00fcllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gr\u00fcndete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n", "source": 10332}}, {"model": "metainfo.text", "pk": 30763, "fields": {"kind": 131, "text": "Liszt\u00a0Franz von, Komponist. * Raiding, Kom. \u00d6denburg (Burgenland), 22. 10. 1811; \u2020 Bayreuth (Oberfranken), 31. 7. 1886.", "source": 10332}}, {"model": "metainfo.text", "pk": 44908, "fields": {"kind": 130, "text": "Von ihrer Mutter und t\u00fcchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male \u00f6ffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n", "source": 17415}}, {"model": "metainfo.text", "pk": 44909, "fields": {"kind": 131, "text": "Blahetka\u00a0Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; \u2020 Boulogne sur Mer, 1. 1. 1885.", "source": 17415}}, {"model": "metainfo.text", "pk": 45290, "fields": {"kind": 130, "text": "B. stammt aus einer aus dem Niederl\u00e4ndischen eingewanderten Familie, sein erster Lehrer, Chr. G. Neefe, vermittelte ihm die Kenntnis bedeutender Meisterwerke und machte publizistisch die Fachwelt auf das junge Talent aufmerksam und das Wohlwollen des Kurf\u00fcrsten Maximilian, des j\u00fcngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde f\u00fcr den weiteren \u00e4u\u00dferen Lebensweg B.s entscheidend, zumal der aus \u00d6sterr. an den K\u00f6lner Hof gekommene Graf Franz Adam Waldstein ihm die f\u00fcr die ersehnte Wr. Lehrzeit n\u00f6tige geldliche Unterst\u00fctzung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd f\u00f6rderte, wurde aber nicht sein Sch\u00fcler, da die Todeskrankheit der Mutter B.s R\u00fcckkehr forderte. Als sie am 17. 7. 1787 starb, mu\u00dfte B. nun f\u00fcr den entm\u00fcndigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurf\u00fcrstliche Hilfe nach Wien, wo er den gew\u00fcnschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schlo\u00df. Seine von da an w\u00e4hrende Bindung an Wien ist vor allem Erzh. Rudolf und den F\u00fcrsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosph\u00e4re Wiens, in der B. zunehmend Verst\u00e4ndnis als K\u00fcnstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikst\u00e4dten begehrt wurden, erfolgte oft auch widerrechtlich; B.s Kampf dagegen war nur ein Zug seiner steigenden inneren Auflehnung gegen manche Unvollkommenheiten des polit. und soz. Lebens, mit deren Problematik sich sein Gerechtigkeitssinn oft st\u00fcrmisch auseinandersetzte (s. die annullierte Widmung der\u201cEroica\u201d an Napoleon, als dieser sich zum K. kr\u00f6nen lie\u00df). Um 1800 begann sein Geh\u00f6r zu schwinden. 1815 wurde er taub. Das \u201eHeiligenst\u00e4dter Testament\u201c von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die \u00fcbermenschlichen moralischen Kr\u00e4fte, die ihn dennoch am Werk lie\u00dfen, das sich in jener Katastrophenzeit zur F\u00fclle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der fr\u00fcher als Interpret seiner Werke oder als Improvisator am Klavier und spr\u00fchender Geist gesellschaftlich brilliert hatte, immer mehr abschlo\u00df, l\u00f6sten die Freunde Oliva, Schindler und Holz jene gl\u00e4nzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste gro\u00dfe Musiker, der ein warmes Verh\u00e4ltnis zur Natur bekennt, auch hierin Haydn n\u00e4her als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als K\u00fcnder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 k\u00fcndigt sich sein Leberleiden an, das B.s sonst so robuste Gesundheit untergrub; 1826, auf dem Heimweg von einem Landaufenthalt bei seinem Bruder Johann in Gneixendorf bei Krems, \u00fcberfiel ihn eine Lungenentz\u00fcndung, zu der pl\u00f6tzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n", "source": 17608}}, {"model": "metainfo.text", "pk": 45291, "fields": {"kind": 131, "text": "Beethoven\u00a0Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; \u2020 Wien, 26. 3. 1827.", "source": 17608}}, {"model": "metainfo.text", "pk": 47030, "fields": {"kind": 130, "text": "Tochter von \u2192Adolf B\u00e4uerle und seiner ersten Frau Antonie B\u00e4uerle, geb. Egger. \u2013 B. zeigte schon in fr\u00fchester Kindheit eine Doppelbegabung f\u00fcr Musik und Sprachen, die in ihrer Erziehung sehr gef\u00f6rdert wurde. So erhielt sie Unterricht bei \u2192Carl Czerny. Dennoch beschr\u00e4nkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und \u00e4hnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Gro\u00dfbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische T\u00e4tigkeit f\u00fcr die \u201eWiener Theater-Zeitung\u201c (\u201eWiener allgemeine Theaterzeitung\u201c) ihres Vaters unter ihren Pseudonymen (auch \u201eF\u2026\u201c). B. war au\u00dferdem auch eine \u00fcberaus produktive \u00dcbersetzerin aus dem Englischen und Franz\u00f6sischen, u. a. \u00fcbertrug sie die Novelle \u201eDer Spion der vornehmen Welt\u201c von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), \u201eMi\u00df Mary, oder die Erzieherin\u201c (in: Wiener allgemeine Zeitung f\u00fcr Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und \u201eGilbert und Gilberte\u201c von Eug\u00e8ne Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), \u201eAntonie, die Tochter der Berge\u201c (ebd., 1850, Nr. 157\u2013176, 180\u2013201), \u201eDer letzte Irl\u00e4nder\u201c (ebd., 1851, Nr. 293ff.) und \u201eDie Marquise von Norville\u201c von \u00c9lie Berthet (1856), \u201eConcino Concini oder Die Tochter des Blinden\u201c (1855, 1856 Neuaufl. unter dem Titel \u201eDer Menschenj\u00e4ger oder Der Blinde\u201c) von Emanuele Gonzal\u00e8s sowie \u201eDie letzte der Feen\u201c von George Payne Rainsford James (1849). Einige dieser \u00dcbersetzungen erschienen auch im \u201eBelletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen\u201c des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der \u201eOstdeutschen Post\u201c und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift \u201eDer Salon\u201c erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, f\u00fchrte sie gemeinsam mit dem Redakteur Moritz Morl\u00e4nder (eigentlich Moriz Engl\u00e4nder) die \u201eWiener Theaterzeitung\u201c ab J\u00e4nner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. v\u00f6llig zur\u00fcckgezogen.\n", "source": 17852}}, {"model": "metainfo.text", "pk": 47031, "fields": {"kind": 131, "text": "B\u00e4uerle Friederike, Ps. Friedrich Horn, Schriftstellerin, \u00dcbersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Nieder\u00f6sterreich), 17. 7. 1896.", "source": 17852}}, {"model": "metainfo.text", "pk": 47126, "fields": {"kind": 130, "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, B\u00f6hmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zun\u00e4chst als Oboist beim Milit\u00e4r und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. \u2013 Wenzel Czernys T\u00e4tigkeit als Klavierlehrer f\u00fchrte die Familie 1791\u201395 nach Polen. So erhielt C., der bereits mit drei Jahren Klavier zu spielen begann und mit sieben seine ersten Kompositionen zu Papier brachte, den ersten Klavierunterricht auch von seinem Vater und konnte dank seiner au\u00dfergew\u00f6hnlichen Begabung bereits als Neunj\u00e4hriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung f\u00fcr C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei \u2192Ludwig van Beethoven, der ihn unverz\u00fcglich als Sch\u00fcler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Urauff\u00fchrung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere fr\u00fch, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Sch\u00fclerinnen und Sch\u00fcler waren Theodor D\u00f6hler, Stephen Heller, \u2192Sigismund Thalberg, \u2192Marie Leopoldine Blahetka, Ninette de Belleville sowie \u2192Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine \u201e\u00c9tudes d\u2019ex\u00e9cution transcendante\u201c). Auch Beethovens Neffe Karl wurde ein Sch\u00fcler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, \u2192Ignaz Moscheles\u2019 und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken f\u00fcr Klavier verbunden, die sich an Anf\u00e4nger (etwa \u201eDie Schule der Gel\u00e4ufigkeit\u201c) ebenso richten wie an bereits gereifte Pianisten (\u201eSchule des Virtuosen\u201c). Dazu kommen St\u00fccke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die gr\u00f6\u00dfte Popularit\u00e4t erlangte C.s \u201eVollst\u00e4ndige theoretisch-practische Pianoforte-Schule \u2026\u201c (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen \u0152uvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Ch\u00f6re, Ges\u00e4nge und B\u00fchnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einfl\u00fcsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten St\u00fccke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Dar\u00fcber hinaus war C. als Musiktheoretiker t\u00e4tig. Er verfasste eine \u201eSystematische Anleitung zum Fantasieren auf dem Pianoforte\u201c, z\u00e4hlte zu den ersten Editoren einer Bach-Gesamtausgabe und \u00fcbersetzte vier umfangreiche Kompositions-Traktate von \u2192Anton Reicha. 1842 schrieb C. seine Autobiographie \u201eErinnerungen aus meinem Leben\u201c. Abgesehen von einigen Reisen nach Italien und einem Aufenthalt in Frankreich (1837) sowie England verbrachte er sein gesamtes Leben in seiner Heimatstadt. Er starb als wohlhabender Mann und vermachte sein Verm\u00f6gen k\u00fcnstlerischen und wohlt\u00e4tigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n", "source": 18525}}, {"model": "metainfo.text", "pk": 47127, "fields": {"kind": 131, "text": "Czerny (\u010cern\u00fd) Carl, Pianist, P\u00e4dagoge und Komponist. Geb. Leopoldstadt, Nieder\u00f6sterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); r\u00f6m.-kath.", "source": 18525}}, {"model": "metainfo.text", "pk": 47200, "fields": {"kind": 130, "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und National\u00f6konomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Ru\u00dfland auf, war sp\u00e4ter Mitleiter der \u201eFreien B\u00fchne\u201c in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, B\u00fchnendichter und Theaterkritiker. 1909 heiratete er die gro\u00dfe Wagnerinterpretin, Hofoperns\u00e4ngerin Anna v. Mildenburg (s. u.). 1912 \u00fcbersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni\u2013November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in M\u00fcnchen. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von au\u00dfergew\u00f6hnlicher Menschenkenntnis, ein gl\u00e4nzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., geh\u00f6ren zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen \u00d6sterreich.\n", "source": 102}}, {"model": "metainfo.text", "pk": 47201, "fields": {"kind": 131, "text": "Bahr\u00a0Hermann, Dichter und Schriftsteller. * Linz (O.\u00d6.), 19. 7. 1863; \u2020 M\u00fcnchen, 14. 1. 1934.", "source": 102}}, {"model": "metainfo.text", "pk": 47204, "fields": {"kind": 130, "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt t\u00e4tig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er kl\u00e4rte die Ursachen der hohen S\u00e4uglingssterblichkeit bei k\u00fcnstlicher Ern\u00e4hrung und besch\u00e4ftigte sich eingehend mit der Tuberkulose im Kindesalter. Sp\u00e4ter lehrte er in Berlin, Stra\u00dfburg und D\u00fcsseldorf. Durch Cz., einen der Begr\u00fcnder und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine gro\u00dfe Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine f\u00fchrende Stellung in der Kinderheilkunde inne.\n", "source": 114}}, {"model": "metainfo.text", "pk": 47205, "fields": {"kind": 131, "text": "Czerny\u00a0Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; \u2020 Berlin, 3. 10. 1941.", "source": 114}}, {"model": "metainfo.text", "pk": 47206, "fields": {"kind": 130, "text": "Absolvierte die Theres, Milit. Akad., 1842\u201348 \u00f6sterr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, fl\u00fcchtete 1849 nach Deutschland und lebte von 1850\u201357 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Pr\u00e4s. Mitre machte ihn zum Chef der Sektion des milit. Ingenieurwesens. Als solcher nahm er die Karte des paraguayisch-brasilianischen Grenzgebietes von Argentinien auf. lm Krieg der Tripelallianz gegen Paraguay 1865\u201369 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa F\u00e9 nach Esperanza und plante die Festungen in den Provinzen C\u00f3rdoba, Santa F\u00e9 und Buenos Aires. 1870\u201374 Leiter des Colegio Militar; 1875\u2013 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. f\u00fcr Mathematik in Concepci\u00f3n del Uruguay. 1884 in die Pr\u00fcfungskomm. des Colegio Militar und in die Comisi\u00f3n revisadora y proyectora berufen, 1884\u201395 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n", "source": 116}}, {"model": "metainfo.text", "pk": 47207, "fields": {"kind": 131, "text": "Czetz\u00a0Johann. * Gid\u00f3falva, 8. 6. 1822; \u2020 Buenos Aires, 6. 9. 1904.", "source": 116}}, {"model": "metainfo.text", "pk": 47208, "fields": {"kind": 130, "text": "Stud. in Br\u00fcnn und Olm\u00fctz unter Leitung seines Oheims Caroni, trat 1808 in das m\u00e4hrisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekret\u00e4r bei der Obersten Justizstelle in Wien.\n", "source": 117}}, {"model": "metainfo.text", "pk": 47209, "fields": {"kind": 131, "text": "Czikann\u00a0Johann Jakob Heinrich, Beamter und Schriftsteller. * Br\u00fcnn, 10. 7. 1789; \u2020 Br\u00fcnn, 10. 6. 1855.", "source": 117}}, {"model": "metainfo.text", "pk": 47210, "fields": {"kind": 130, "text": "Sohn des Christian C.-G., trat 1826 in die Armee ein, 1839 Obst. und Rgtskmdt., 1846 GM. und Brigadier in Prag, 1848 in Mailand; k\u00e4mpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenb\u00fcrgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. Gy\u00f6rgy und Kaszon-Ujfalu; Landeskommandierender in B\u00f6hmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, k\u00e4mpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vlie\u00df; 1866 Kmdt. des 1. Armeekorps gegen Preu\u00dfen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n", "source": 108}}, {"model": "metainfo.text", "pk": 47211, "fields": {"kind": 131, "text": "Clam-Gallas\u00a0Eduard Graf, General. * Prag, 11. 3. 1805; \u2020 Wien, 17. 3. 1891.", "source": 108}}, {"model": "metainfo.text", "pk": 47212, "fields": {"kind": 130, "text": "\u00c4ltester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853\u201359 Landespr\u00e4s. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorit\u00e4t; haupts\u00e4chlich nach seinen Vorschl\u00e4gen entstand das Oktoberdiplom; F\u00fchrer der feudal-klerikal-slaw. und f\u00f6deralistischen Partei, seit 1862 nur mehr im Landtag. Er war einer der Urheber der Abstinenzpolitik der Tschechen und konzipierte 1871 die Fundamentalartikel; unter Taaffe kehrten die Tschechen 1879 in den Reichsrat zur\u00fcck und C. war wie vorher als Generalreferent des Budgets t\u00e4tig; 1884 zog er sich krankheitshalber vom \u00f6ffentlichen Leben zur\u00fcck; seit 1859 Geh. Rat, seit 1861 Pr\u00e4s. des B\u00f6hmischen Mus., Ehrenmitgl. der Kgl. B\u00f6hm. Ges. d. Wiss.\n", "source": 109}}, {"model": "metainfo.text", "pk": 47213, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; \u2020 Prag, 5. 6. 1887.", "source": 109}}, {"model": "metainfo.text", "pk": 47214, "fields": {"kind": 130, "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des F\u00fcrsten Thun F\u00fchrer der Rechten im Herrenhaus, stand hier und im b\u00f6hmischen Landtag den Tschechen nahe. Im Weltkrieg k\u00e4mpfte er an der russ. und an der italien. Front und r\u00fcckte von den Tschechen ab, als diese immer mehr auf die Zerst\u00f6rung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpr\u00e4s. Er suchte vergeblich, Vertreter aller \u00f6sterr. Nationalit\u00e4ten ins Kabinett zu berufen, um einen langfristigen Ausgleich mit Ungarn zustandezubringen, aber die Tschechen lehnten ab; er setzte das Parlament erfolglos wieder in seine Rechte ein, verstimmte die Deutschen, deren W\u00fcnsche nicht erf\u00fcllt wurden und vermochte nicht, die Tschechen, S\u00fcdslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917\u201319 Milit\u00e4rgouverneur von Montenegro. Pr\u00e4s. der Vereinigung kathol. Edelleute \u00d6sterr., Ritter des Ordens vom Goldenen Vlie\u00df, Geh. Rat und K\u00e4mmerer.\n", "source": 110}}, {"model": "metainfo.text", "pk": 47215, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; \u2020 Clam b. Grein, 7. 3. 1932.", "source": 110}}, {"model": "metainfo.text", "pk": 47216, "fields": {"kind": 130, "text": "Stud. in Marburg und Gie\u00dfen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. f\u00fcr Zoologie in W\u00fcrzburg, 1870 in G\u00f6ttingen, 1873 f\u00fcr Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gr\u00fcnder er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in G\u00f6ttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n", "source": 111}}, {"model": "metainfo.text", "pk": 47217, "fields": {"kind": 131, "text": "Claus\u00a0Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; \u2020 Wien, 18. 1. 1899.", "source": 111}}, {"model": "metainfo.text", "pk": 47218, "fields": {"kind": 130, "text": "Stud. in G\u00f6ttingen und Berlin, 1855 Dr. phil., 1857\u201360 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. f\u00fcr Arch\u00e4ologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete arch\u00e4ologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Arch\u00e4ologie, Kunstgeschichte und klass. Philologie verbindende Lehrt\u00e4tigkeit. Er begr\u00fcndete die Wr. Vorlegebl\u00e4tter, errichtete 1876 zusammen mit O. Hirschfeld das Arch\u00e4olog.-epigr. Seminar, f\u00fchrte zwei \u00f6sterr. Grabungskampagnen auf der Insel Samothrake durch, rief das gro\u00dfe Werk der Wr. Akad. d. Wiss. \u201eDie attischen Grabreliefs\u201c ins Leben und gab in 3 Heften der Denkschriften \u201eR\u00f6mische Bildwerke einheimischen Fundorts in \u00d6sterreich\u201c heraus. 1877\u201387 \u00fcbernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887\u20131905 leitete er als Gen.-Sekr. das Arch\u00e4olog. Inst. des Dt. Reiches, dem er 1903 in der R\u00f6m.-german. Komm. auch eine Zentralstelle f\u00fcr die arch\u00e4olog. Heimatforschung anschlo\u00df. In seinen beiden letzten Stellungen galten seine Arbeiten vor allem den von ihm angeregten Ausgrabungen in Pergamon und den dort gemachten Funden. C. hat die versch. Gebiete der Arch\u00e4ologie durch bahnbrechende Werke gef\u00f6rdert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n", "source": 112}}, {"model": "metainfo.text", "pk": 47219, "fields": {"kind": 131, "text": "Conze\u00a0Alexander, Arch\u00e4ologe. * Hannover, 10. 12. 1831; \u2020 Berlin, 19. 7. 1914.", "source": 112}}, {"model": "metainfo.text", "pk": 47220, "fields": {"kind": 130, "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. K\u00fcnste, hatte 1860\u201364 ein Atelier in M\u00fcnchen, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg f\u00fcr das Arsenal auszuf\u00fchren, leitete 1883 die Jubil\u00e4umsausstellung zur T\u00fcrkenbelagerung im Rathaus, stellte 1886 die st\u00e4dtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. K\u00fcnste.\n", "source": 113}}, {"model": "metainfo.text", "pk": 47221, "fields": {"kind": 131, "text": "Costenoble\u00a0Karl, Bildhauer. * Wien, 26. 11. 1837; \u2020 Wien, 20. 6. 1907.", "source": 113}}, {"model": "metainfo.text", "pk": 47226, "fields": {"kind": 130, "text": "Stud. in Prag Jus; ao. Prof. f\u00fcr Rechtsgeschichte an der Univ. Prag; Mitgl. der B\u00f6hm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des b\u00f6hm. Stadtrechtes.\n", "source": 103}}, {"model": "metainfo.text", "pk": 47227, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Jarom\u00edr, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; \u2020 Prag, 16. 10. 1914.", "source": 103}}, {"model": "metainfo.text", "pk": 47228, "fields": {"kind": 130, "text": "Sohn des Dichters Franz Ladisl. C., kam mit seinem Vater nach Breslau, wo er die unteren Klassen des kathol. Gymn. besuchte, Deutsch lernte und sein erstes Herbarium anlegte. 1849 kehrte die Familie nach Prag zur\u00fcck. Nach dem Tode des Vaters nahm sich der Physiologe Purkyne seiner an und bei ihm lernte C. auch die exakte Methode der mikroskopischen Untersuchung. Noch vor Beendigung seiner Studien erschienen die ersten botanischen Aufs\u00e4tze. Nach Vollendung der Univ. wurde er Gymnasialsupplent in Komotau, wo er die Flora des Erzgebirges kennenlernte. 1860 Kustos am Botanischen Mus. in Prag, 1863 Dr.phil., 1866 Doz. an der Prager Technik, dann Vorstand der botanischen Sektion des \u201eKomitees f\u00fcr die naturwiss. Durchforschung B\u00f6hmens\u201c und Mitgl. der \u201eB\u00f6hmischen Ges. d. Wiss.\u201c\n", "source": 104}}, {"model": "metainfo.text", "pk": 47229, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Ladislav, Botaniker. * Prag, 29. 11. 1834; \u2020 Prag, 24. 11. 1902.", "source": 104}}, {"model": "metainfo.text", "pk": 47230, "fields": {"kind": 130, "text": "Gr\u00fcndete 1842 eine Fabrik f\u00fcr Blechblasinstrumente und baute eine Anzahl versch. geformter Kontraba\u00dfinstrumente f\u00fcr die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n", "source": 105}}, {"model": "metainfo.text", "pk": 47231, "fields": {"kind": 131, "text": "Cerven\u00fd\u00a0V\u00e1clav Franti\u0161ek, Instrumentenmacher. * Dubec (B\u00f6hmen), 27. 9. 1819; \u2020 K\u00f6niggr\u00e4tz, 19. l. 1896.", "source": 105}}, {"model": "metainfo.text", "pk": 47232, "fields": {"kind": 130, "text": "Sohn des Malers Matthias Ch., befa\u00dfte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. K\u00fcnste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n", "source": 106}}, {"model": "metainfo.text", "pk": 47233, "fields": {"kind": 131, "text": "Charlemont\u00a0Hugo de, Maler. * Jamnitz, 18. 3. 1850; \u2020 Wien, 18. 3. 1939.", "source": 106}}, {"model": "metainfo.text", "pk": 47234, "fields": {"kind": 130, "text": "Stud. in Prag, 1771 Baccal., 1772 Priester, 1777 Pfarrer, 1779 Mitgl. des Prager Domkapitels, 1795 Bischof von Canea in partib., 1802 Bischof von Leitmeritz, hier als \u201eVater der Armen\u201c gepriesen, 1814 F\u00fcrsterzb. von Prag, 1815 inthronisiert. Gr\u00fcndete Schulen und Wohlt\u00e4tigkeitsanstalten.\n", "source": 107}}, {"model": "metainfo.text", "pk": 47235, "fields": {"kind": 131, "text": "Chlumczansk\u00fd\u00a0Wenzel Leopold von, Bischof. * Hostitz (B\u00f6hmen), 15. 11. 1749; \u2020 14. 6. 1830.", "source": 107}}, {"model": "metainfo.text", "pk": 47236, "fields": {"kind": 130, "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881\u201386 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollm\u00e4chtigter Min. in Belgrad, vertrat 1908 \u00d6sterr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913\u201315 a o. und bevollm\u00e4chtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der V\u00f6lkerbunds- und Friedensbewegung t\u00e4tig, Pr\u00e4s. der \u00f6sterr. V\u00f6lkerbundliga; Pazifist; Freund und F\u00f6rderer von Kunst und Wiss.\n", "source": 121}}, {"model": "metainfo.text", "pk": 47237, "fields": {"kind": 131, "text": "Dumba\u00a0Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; \u2020 Bodensdorf/Ossiachersee, 6. 1. 1947.", "source": 121}}, {"model": "metainfo.text", "pk": 47238, "fields": {"kind": 130, "text": "Stud. in Stuttgart und Berlin, arbeitete l\u00e4ngere Zeit im Atelier Siccardsburgs und Van der N\u00fclls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n", "source": 120}}, {"model": "metainfo.text", "pk": 47239, "fields": {"kind": 131, "text": "Doderer\u00a0Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; \u2020 Wien, 13. 5. 1900.", "source": 120}}, {"model": "metainfo.text", "pk": 47240, "fields": {"kind": 130, "text": "Sohn eines Bauern, zeigte fr\u00fch Interesse f\u00fcr Schnitzen und Zeichnen, aber erst nach dem Tode des Vaters gab er den Hof auf und ging 1860 nach Innsbruck, um bei Stolz die Bildschnitzerei zu erlernen. Auf dessen Rat wandte er sich der Malerei zu, ging 1862 an die Akad. in M\u00fcnchen, 1863\u201365 nach Paris, dann nach Tirol zur\u00fcck, 1867 wieder nach M\u00fcnchen, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einflu\u00df auf ihn aus\u00fcbte. 1878 Prof. an der M\u00fcnchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist au\u00dferdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten b\u00e4uerlichen Genremalerei.\n", "source": 118}}, {"model": "metainfo.text", "pk": 47241, "fields": {"kind": 131, "text": "Defregger\u00a0Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; \u2020 M\u00fcnchen, 2. 1. 1921.", "source": 118}}, {"model": "metainfo.text", "pk": 47242, "fields": {"kind": 130, "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899\u20131901 unter der Leitung von Sickel und Pastor am \u00d6sterr. Hist. Inst. in Rom, haupts\u00e4chlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917\u201346 (mit Unterbrechung von 1938\u201345) Ordinarius f\u00fcr Geschichte der Neuzeit. D., ein guter Kenner der Best\u00e4nde des Vat. Geheimarchivs, war 1929\u201338 als Nachfolger Pastors Dir. des \u00d6sterr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das \u00d6sterr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n", "source": 119}}, {"model": "metainfo.text", "pk": 47243, "fields": {"kind": 131, "text": "Dengel\u00a0Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; \u2020 Innsbruck, 9. 9. 1947.", "source": 119}}, {"model": "metainfo.text", "pk": 47276, "fields": {"kind": 130, "text": "Startete 1926 das erstemal bei einem Sch\u00fclerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen f\u00fcr M\u00e4dchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der M\u00e4dchen einen 1. und zwei 2. Pl\u00e4tze. 1929 gewann sie das Verbands-Neulings-Laufen f\u00fcr Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen f\u00fcr Damen in Innsbruck, Grummh\u00fcbel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen f\u00fcr Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Z\u00fcrich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die \u00f6sterr. Meisterschaft im Kunstlaufen f\u00fcr Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen f\u00fcr Damen in Z\u00fcrich und am Semmering. 1933 wurde sie abermals \u00f6sterr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine t\u00fcck. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein j\u00e4hes Ende.\n", "source": 122}}, {"model": "metainfo.text", "pk": 47277, "fields": {"kind": 131, "text": "Holovsky\u00a0Hilde, Kunstl\u00e4uferin. * Wien, 29. 4. 1917; \u2020 Wien, 3. 7. 1933.", "source": 122}}, {"model": "metainfo.text", "pk": 47384, "fields": {"kind": 130, "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887\u201394 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894\u20131903 Primarius an der Internen Abt. des K. Franz-Josef-Spitals und am Allg. Krankenhaus in Wien. 1901 tit. ao. Prof. an der Univ. Wien. 1903 o. Prof. f\u00fcr Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der \u00c4rzte in Wien, Mitgl. der Dt. Ges. f\u00fcr innere Med. und der Dt. Naturforscher und \u00c4rzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n", "source": 134}}, {"model": "metainfo.text", "pk": 47385, "fields": {"kind": 131, "text": "Lorenz\u00a0Heinrich, Internist. * Mies (Str\u00edbro, B\u00f6hmen), 13. 4. 1859; \u2020 Graz, 25. 3. 1945.", "source": 134}}, {"model": "metainfo.text", "pk": 47388, "fields": {"kind": 130, "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der \u201eKorrespondenz Wilhelm\u201c, die Polizei- und Hof\u00e4mter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim \u201eIllustrierten Wiener Extrablatt\u201c; 1876 war L. Kriegsberichterstatter im serb.-t\u00fcrk., 1877 im russ.-t\u00fcrk. und 1885 im bulgar.-serb. Krieg, 1878 in Bosnien. Ebenfalls als Reporter nahm L. am mazedon. Aufstand teil. Im Dienste seiner Redaktion unternahm er in den Folgejahren weite Reisen durch Europa, Nordamerika und weite Gebiete Afrikas. Am 2. 6. 1889 fuhr er mit einem Fiaker nach Paris zur Weltausst., wo ihm am 22. 6. ein triumphaler Empfang bereitet wurde. 1894 wurde er bei dem genannten Bl. stellvertretender Schriftleiter, 1898 (gem. mit J. Bauer, s.d.) Chefredakteur. L. war durch Feuilletons, Wr. Sittenschilderungen, Lokal- und Reiseberichte in weiten Kreisen bekannt geworden. Er war von wirkungsvoller Darstellungsf\u00e4higkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalit\u00e4t. Das \u201eIllustrierte Wiener Extrablatt\u201c war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des \u201eArmenvaters\u201c in seinem Bl. sowie als Viennensia-Sammler.\n", "source": 133}}, {"model": "metainfo.text", "pk": 47389, "fields": {"kind": 131, "text": "L\u00f6wy\u00a0Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (\u00dadlice, B\u00f6hmen), 14. 9. 1851; \u2020 Wien, 27. 12. 1905.", "source": 133}}, {"model": "metainfo.text", "pk": 47394, "fields": {"kind": 130, "text": "Sohn eines F\u00e4rbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und er\u00f6ffnete 1823 im 1. Bez. in der Weihburgg. einen Laden \u201eZur Kaiserin von \u00d6sterreich\u201c, 1824 einen Laden K\u00e4rntnerstr. 940, der 1844 vergr\u00f6\u00dfert wurde. 1824 wurde L. Meister und B\u00fcrger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glash\u00e4ndler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & G\u00f6rner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergr\u00f6\u00dferten Gesch\u00e4ftes vollst\u00e4ndig erneuert. L., nicht nur Glash\u00e4ndler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er h\u00e4ufig Reisen in Begleitung seiner S\u00f6hne Josef oder Ludwig unternahm), versuchte, nach franz\u00f6s. Pre\u00dfglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so da\u00df er viel franz\u00f6s. Pre\u00dfglas einf\u00fchren mu\u00dfte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenst\u00e4nde wurden nach Wien geliefert bzw. wurden auch Gegenst\u00e4nde nach L.s Entw\u00fcrfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten t\u00e4tig war, bezog Glas aus den b\u00f6hm. H\u00fctten und lie\u00df nach eigenen Mustern arbeiten. 1823\u201355 wurden Gl\u00e4ser im Biedermeierstil erzeugt. Die Fa. beteiligte sich an den Gewerbsproduktenausst. 1839 und 1845 in Wien, fertigte Spiegel und Luster an, wurde 1848 Sieger in einem Wettbewerb um die Beleuchtungseinrichtung im Palais des Vizekg. von \u00c4gypten und arbeitete f\u00fcr den Palazzo Reale in Venedig.\n", "source": 132}}, {"model": "metainfo.text", "pk": 47395, "fields": {"kind": 131, "text": "Lobmeyr\u00a0Josef, Fabrikant. * Grieskirchen (O.\u00d6.), 17. 3. 1792; \u2020 Wien, 8. 5. 1855.", "source": 132}}, {"model": "metainfo.text", "pk": 47402, "fields": {"kind": 130, "text": "Absolv. das Realgymn.; arbeitete bis 1868 f\u00fcr die Z. \u201eIllustrierte Welt\u201c, gab dann das demokrat. Bl. \u201eFreie Volksstimme\u201c heraus, war Korrespondent ausl\u00e4nd. Ztg. und begr\u00fcndete gem. mit S. Spitz 1870/71 das \u201e\u00d6sterreichisch-ungarische Volksblatt f\u00fcr Stadt und Land\u201c. Angeregt durch seine Bekanntschaft mit dem National\u00f6konomen L. v. Stein stud. er Volkswirtschaft und Statistik und gr\u00fcndete 1874 das Fachbl. \u201eGambrinus\u201c, welches gro\u00dfes Ansehen geno\u00df. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und N\u00e4hrausst. in Wien, 1904 k. Rat, Pr\u00e4s. des \u00f6sterr. Fachschriftstellerverbandes, Vizepr\u00e4s. des Reichsverbandes \u00f6sterr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n", "source": 130}}, {"model": "metainfo.text", "pk": 47403, "fields": {"kind": 131, "text": "Lichtblau\u00a0Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; \u2020 Abbazia (Opatija, Istrien), 10. 5. 1908.", "source": 130}}, {"model": "metainfo.text", "pk": 47404, "fields": {"kind": 130, "text": "Nach Absolv. der jurid. Stud. in Wien 1898 Konzipient in der k. k. Finanzprokuratur in Wien, dann Rechtspraktikant (Auskultant) beim Landesgericht Innsbruck, 1899 Richteramtspr\u00fcfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht f\u00fcr Zivilrechtssachen in Wien und 1927 Rat des Oberlandesgerichtes Wien. 1931 Vorsitzender Rat des Oberlandesgerichtes, wurde er im gleichen Jahr zum Rat des Verwaltungsgerichtshofes ernannt. L., der schon als Richter am Exekutionsgericht Wien durch seine vorz\u00fcglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich gr\u00f6\u00dfte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das \u00f6sterr. Exekutionsrecht l\u00fcckenlos erfa\u00dft und seinen Zusammenhang mit den \u00fcbrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsvertr\u00e4gen niedergelegt, tw. ber\u00fccksichtigt und dadurch die Exekutionsgrunds\u00e4tze eines gro\u00dfen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n", "source": 131}}, {"model": "metainfo.text", "pk": 47405, "fields": {"kind": 131, "text": "Lichtblau\u00a0Ludwig, Jurist. * Olm\u00fctz (Olomouc, M\u00e4hren), 25. 2. 1875; \u2020 Wien, 19. 12. 1935.", "source": 131}}, {"model": "metainfo.text", "pk": 47410, "fields": {"kind": 130, "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtspr\u00fcfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. f\u00fcr Botanik an der Univ. Graz, 1868 ao., 1869 o. Prof., 1876/77 Dekan, 1884/85 Rektor, 1873 erhielt er auch die Dion. des Botan. Gartens und die Supplierung der Lehrkanzel f\u00fcr Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begr\u00fcnder des Botan. Inst. der Univ., das gegen\u00fcber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatb\u00fccherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und T\u00fcbingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Pr\u00e4s. des Naturwiss. Ver. f\u00fcr Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Ver\u00f6ff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die \u00fcber Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbst\u00e4ndig erschienenen Werke geh\u00f6ren dazu, von denen die umfangreiche Monographie \u201eUntersuchungen \u00fcber die Lebermoose\u201c in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im K\u00e4rntner Landtag (1869\u201372) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n", "source": 128}}, {"model": "metainfo.text", "pk": 47411, "fields": {"kind": 131, "text": "Leitgeb Hubert,\u00a0Botaniker. * Portendorf b. Klagenfurt (K\u00e4rnten), 20. 10. 1835; \u2020 Graz, 5. 4. 1888 (Selbstmord).", "source": 128}}, {"model": "metainfo.text", "pk": 47414, "fields": {"kind": 130, "text": "Vater des Anatomen J\u00f3zsef v. L. (s. d.), Gro\u00dfvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Pre\u00dfburg stud. er Med. an den Univ. Wien und Pest, 1799 Dr. med. und Chirurgus des Kom. Gran. 1808 Prof. der Physiol. und der Anatomie an der Univ. Pest, 1809/10 und 1815\u201317 Dekan, 1818/19 Rektor. 1819 Prof. der Physiol. an der Univ. Wien. 1825 Statthaltereirat und Protomedicus, war er bis zu seinem Tode Dir. der Pester med. Fak. 1808 wurde er in den ung. Adelsstand erhoben. L., einer der ersten, der die Pockenimpfung in Ungarn anwandte (1799), erwarb sich auch 1831 gro\u00dfe Verdienste um die Bek\u00e4mpfung der Cholera. Er ma\u00df den psych. Vorg\u00e4ngen bei Erkrankungen und auch in der Therapie gro\u00dfe Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n", "source": 129}}, {"model": "metainfo.text", "pk": 47415, "fields": {"kind": 131, "text": "Lenhoss\u00e9k\u00a0Mih\u00e1ly Ign\u00e1c von, Physiologe. * Pre\u00dfburg, 11. 5. 1773; \u2020 Ofen (Buda, Ungarn), 11. 2. 1840.", "source": 129}}, {"model": "metainfo.text", "pk": 47418, "fields": {"kind": 130, "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen K\u00fcnste in Wien (bei Griepenkerl, s.d.) und M\u00fcnchen (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gr\u00fcndung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, M\u00e4rchen- und Landschaftsbildern, bet\u00e4tigte sich aber nach Gr\u00fcndung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einflu\u00df, mit au\u00dferordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schlo\u00df Esterhazy bei Pre\u00dfburg, Privatwohnungen der Maler Goltz und Ranzoni), B\u00fchnen- und Kost\u00fcmentw\u00fcrfe, Stickereien, F\u00e4cher, Kassetten, M\u00f6bel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60j\u00e4hrigen Regierungsjubil\u00e4um von K. Franz Joseph I. (s. d.) 1908. 1900\u201303 war er (als Vorg\u00e4nger von A. Roller) Ausstattungschef der Wr. Hofoper.\n", "source": 125}}, {"model": "metainfo.text", "pk": 47419, "fields": {"kind": 131, "text": "Lefler\u00a0Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; \u2020 Wien, 14. 3. 1919.", "source": 125}}, {"model": "metainfo.text", "pk": 47420, "fields": {"kind": 130, "text": "Tochter eines Rechtsanwaltes; stud. an den Univ. Wien und Heidelberg (M. Weber) Staatswiss., 1918 Dr.rer.pol. Nach 1918 redigierte sie in Wien die Frauenbeilage der Gewerkschaftsztg. \u201eDer Metallarbeiter\u201c und arbeitete als Sekret\u00e4rin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 \u00fcbernahm sie das Referat f\u00fcr Frauenarbeit in der Wr. Kammer f\u00fcr Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. \u201eArbeit und Wirtschaft\u201c. L., welche sich der Sozialdemokrat. Partei \u00d6sterr. angeschlossen hatte, heiratete 1921 den Redakteur der \u201eArbeiter-Zeitung\u201c Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den sp\u00e4teren Vorsitzenden der Vereinigung der Zeitungskorrespondenten bei den Vereinten Nationen. Sie bekleidete in der Bezirksorganisation Wien-Innere Stadt die Funktionen der Vorsitzenden des Bezirksbildungsausschusses und des Bezirksfrauenkomitees sowie der Obmannstellvertreterin der Bezirksorganisation. 1933 wurde sie in das Zentralfrauenkomitee der Sozialdemokrat. Partei berufen. 1934 war sie mit Otto L. eines der Gr\u00fcndungsmitgl. der illegalen Partei der \u201eRevolution\u00e4ren Sozialisten\u201c \u00d6sterr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der \u201eRevolution\u00e4ren Sozialisten\u201c. 1938 verhalf sie ihrem Mann zur Flucht ins Ausland, sie selbst wurde knapp vor der beabsichtigten Abreise verhaftet. Von Herbst 1939 bis zu ihrer Ermordung war sie im KZ Ravensbr\u00fcck.\n", "source": 126}}, {"model": "metainfo.text", "pk": 47421, "fields": {"kind": 131, "text": "Leichter\u00a0K\u00e4the, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; \u2020 Ravensbr\u00fcck (Brandenburg), 17. 3. 1942 (KZ).", "source": 126}}, {"model": "metainfo.text", "pk": 47422, "fields": {"kind": 130, "text": "Neffe des Gro\u00dfh\u00e4ndlers und Bankiers Markus Leidesdorfer v. Neuwall (s. d.); sollte Kaufmann werden, wandte sich aber gegen den Willen der Eltern dem Schauspielerberuf zu und debut. 1830 unter dem Namen Wallner in Krems. \u00dcber Bad Ischl, Wr. Neustadt, Laibach, Agram etc. kam L. 1835 nach Wien, wo er zuerst im Theater an der Wien und dann im Theater in der Leopoldstadt vorwiegend in Raimund-Rollen auftrat und besonders nach Raimunds Tod 1836, durch seine Raimunds Schauspielkunst getreu kopierende Darstellungsweise, gro\u00dfe Erfolge errang. 1839 ging er f\u00fcr zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle gr\u00f6\u00dferen St\u00e4dte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei St\u00e4dten f\u00fchrte L. auch die Dion. des Theaters. 1854 pachtete er das K\u00f6nigst\u00e4dt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Gesch\u00e4ftst\u00fcchtigkeit, seinen Flei\u00df und k\u00fcnstler. Sp\u00fcrsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerb\u00fchne erweitert hatte, bald lokale Ber\u00fchmtheit. 1864 lie\u00df er es vergr\u00f6\u00dfern und renovieren und er\u00f6ffnete es am 3. 12. als \u201eWallnertheater\u201c. Hatte er in den ersten Jahren seiner Dions.-T\u00e4tigkeit vor allem das moderne franz\u00f6s. Sittenst\u00fcck gepflegt, verwirklichte er in sp\u00e4teren Jahren mit Hilfe des Dichters D. Kalisch und seines vorz\u00fcglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gr\u00fcnden das Theater an C. Lebrun und unternahm nun einige gr\u00f6\u00dfere Reisen. Seine Reise- und Theatererlebnisse ver\u00f6ff. L., der auch Mitarbeiter der \u201eGartenlaube\u201c war, in viel gelesenen B\u00fcchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n", "source": 127}}, {"model": "metainfo.text", "pk": 47423, "fields": {"kind": 131, "text": "Leidesdorf\u00a0Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; \u2020 Nizza, 19. 1. 1876.", "source": 127}}, {"model": "metainfo.text", "pk": 47428, "fields": {"kind": 130, "text": "Bruder des Folgenden, Onkel des Juristen Stanko L. (s. d.); stud. an der Techn. Hochschule in Graz. Ab 1866 im Dienst an der Milit\u00e4rgrenze, zuerst in Temesv\u00e1r, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent f\u00fcr Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890\u201394 Sekret\u00e4r des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der \u201eVijesti\u201c (Berr.) dieses Ver. L. baute Stra\u00dfen (Ogulin\u2013Novi, Alt-Gradi\u0161ka\u2013Lipik), die Kanalisation des Jelas-Feldes und im s\u00fcd\u00f6stlichen Syrmien, Wasserleitungen f\u00fcr die St\u00e4dte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan f\u00fcr die Kanalisation von Agram etc.\n", "source": 124}}, {"model": "metainfo.text", "pk": 47429, "fields": {"kind": 131, "text": "Lapaine\u00a0Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; \u2020 Agram, 21. 2. 1923.", "source": 124}}, {"model": "metainfo.text", "pk": 47430, "fields": {"kind": 130, "text": "Tochter des Gro\u00dfindustriellen Josef v. Schroll (1821\u201391), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849\u201389), B\u00fcrgermeister der Stadt Braunau 1883\u201389, in zweiter Ehe ab 1892 mit dem Politiker und Gro\u00dfindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, \u00f6ff. Gesellschafterin der Fa. Benedikt Schrolls Sohn. Nach dem Tode Josef v. Schrolls wurden beide Schwestern Inhaberinnen der Firma, Johanna L., nach Vereinbarung, 1908 Alleininhaberin und Seniorchefin. Sie leitete die vielseitigen Industriebetriebe mit gro\u00dfer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (B\u00fcchereien, Krankenkasse, Spital etc.) f\u00fcr die bereits um die Jahrhundertwende ca. 2600 z\u00e4hlenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer L\u00e4ndchens.\n", "source": 123}}, {"model": "metainfo.text", "pk": 47431, "fields": {"kind": 131, "text": "Langer-Schroll\u00a0Johanna, Gro\u00dfindustrielle. * Braunau (Broumov, B\u00f6hmen), 2. 10. 1850; \u2020 ebenda, 9. 11. 1926.", "source": 123}}, {"model": "metainfo.text", "pk": 47432, "fields": {"kind": 130, "text": "Enkel des Freiburger Physikers J. J. M\u00fcller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van\u2019t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. M\u00fcnster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in M\u00fchlhausen, 1906 Priv.Doz. an der Univ. Basel, 1909 tit. Prof. M. wirkte ab 1911 als Leiter des anorgan.-wiss. und analyt. Laboratoriums bei den Farbenfabriken Bayer & Co. (Leverkusen), ab 1926 als Nachfolger J\u00fcptners (s. d.) als o. Prof. f\u00fcr chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich t\u00e4tig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivit\u00e4t und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefels\u00e4ure und Zement aus Gips und Ton gewann gro\u00dfe techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n", "source": 144}}, {"model": "metainfo.text", "pk": 47433, "fields": {"kind": 131, "text": "M\u00fcller\u00a0Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; \u2020 Wien, 9. 12. 1941.", "source": 144}}, {"model": "metainfo.text", "pk": 47446, "fields": {"kind": 130, "text": "Tochter eines Gutsbesitzers; kr\u00e4nkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkr\u00e4mpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so gro\u00dfes Aufsehen, da\u00df an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von G\u00f6rres, Brentano, Steinle, M\u00f6hler, D\u00f6llinger, Reisach und Ketteler besucht. 1841 \u00fcbersiedelte sie in das Tertiarinnenkloster in Kaltern. Als Mitgl. des 3. Ordens des Hl. Franziskus wurde sie seelsorglich von P. K. Soyer OFM betreut. Nach langem Leiden starb sie an Blutzersetzung. Die amtlichen Berichte \u00fcber sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n", "source": 143}}, {"model": "metainfo.text", "pk": 47447, "fields": {"kind": 131, "text": "M\u00f6rl\u00a0Maria Theresia von, Stigmatisierte. * Kaltern (S\u00fcdtirol), 16. 10. 1812; \u2020 ebenda, 11. 1. 1868.", "source": 143}}, {"model": "metainfo.text", "pk": 47448, "fields": {"kind": 130, "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer lie\u00df sich M. im Oktober 1843 als Matrose f\u00fcr die Kriegsmarine anwerben und machte 1844\u201346 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 k\u00e4mpfte er als Kmdt. eines Kanonenbootes in der Lagune, vor Ancona und bei der Blockade von Venedig. Nach verschiedenen Einschiffungen und Verwendungen in den folgenden Jahren war M. 1859 vor Lissa Kmdt. der Korvette \u201eMinerva\u201c, 1861/62 hatte er in Pola die Bauleitung der Fregatte \u201eSchwarzenberg\u201c, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapit\u00e4n mit Auszeichnung kommandierte. 1867 als Insel- und Festungskmdt. von Lissa, 1868 als Kmdt. des Seearsenals in Pola in Verwendung, unternahm M. 1869 eine Mission nach England, im Oktober dieses Jahres kommandierte er die in der Bucht von Cattaro zur Bek\u00e4mpfung des Aufstandes in S\u00fcddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871\u201383 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine gro\u00dfe administrative Begabung hatte, besa\u00df eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauauftr\u00e4gen f\u00fcr Schiffe trat er entschieden f\u00fcr die Besch\u00e4ftigung inl\u00e4nd. Firmen ein. Er war ein begeisterter Sammler klass. Altert\u00fcmer und ein bedeutender Numismatiker. Teile der \u201eSammlung Millosicz\u201c, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n", "source": 142}}, {"model": "metainfo.text", "pk": 47449, "fields": {"kind": 131, "text": "Millosicz\u00a0Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; \u2020 Leoben (Stmk.), 24. 7. 1890.", "source": 142}}, {"model": "metainfo.text", "pk": 47450, "fields": {"kind": 130, "text": "Sohn eines Weinbauern; stud. mit Hilfe seines Onkels, eines Landpfarrers, an den Gymn. in Warasdin und Marburg a. d. Drau, dann Phil. und Jus an den Univ. Graz (1838 Dr. phil.) und Wien (1841 Dr. jur.). 1837/38 suppl. er die philosoph. Lehrkanzel an der Univ. Graz und versuchte erfolglos, sich an der Univ. Innsbruck zu habil. Nach k\u00fcrzerer Praxis in Wr. Anwaltskanzleien bekam er 1844 mit Hilfe Kopitars (s. d.), der auf seine sprachliche Begabung aufmerksam geworden war, eine Amanuensisstelle an der Hofbibl. (1850 Skriptor, 1862 i. R.). 1849 wurde er ao., 1850 o. Prof. der slaw. Philol. und Literatur an der Univ. Wien, 1851/52, 1856/57 Dekan, 1854/55 Rektor, 1885 i. R. Pr\u00e4s. der Pr\u00fcfungskomm. f\u00fcr Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866\u20131869 Sekret\u00e4r der phil.-hist. Kl.), 1862 lebensl\u00e4ngliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Pr\u00e4s. des akadem. Ver. \u201eSlovenija\u201c in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zuk\u00fcnftigen \u00f6sterr. F\u00f6deration verlangte. 1849 war er slowen. Abg. beim Reichstag in Kremsier, wo er durch besonnene Haltung die Sympathie Stadions erweckte, der dann seine Ernennung zum ersten Prof. der Slawistik in \u00d6sterr. bewirkte. M., der schon im Gymn. gro\u00dfe sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einflu\u00df Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begr\u00fcnder der slaw. Philol. In der Kritik der Vergleichenden Grammatik des Sanskrit, Zend, Griech., Latein., Litau., Got. und Dt. von Bopp bewies M. 1844 die Notwendigkeit wiss. Erforschung nicht nur der von Bopp behandelten, sondern auch aller slaw. Sprachen und verfolgte unerm\u00fcdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewu\u00dftes Streben aller V\u00f6lker Europas nach einer gem. Sprache festzustellen (Neueurop\u00e4ismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkm\u00e4ler des Altslowen., wie M. irrt\u00fcmlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, M\u00e4hren und Ru\u00dfland bezeichnete, verfa\u00dfte und publ. er die \u201eVergleichende Grammatik der slavischen Sprachen\u201c. Vom Altslowen. ausgehend, analysierte er in unz\u00e4hligen Beispielen slaw. Spracherscheinungen und lie\u00df scheinbar nur das Wei\u00dfruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem \u201eeigenth\u00fcmlichen Zauber der Sprache\u201c, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdr\u00fcckte. Verh\u00e4ngnisvoll wurde ihm die von Kopitar \u00fcbernommene \u201ePannonische Theorie\u201c, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im \u00f6stlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. \u201eLexicon palaeoslovenico-graeco-latinum\u201c und das \u201eEtymologische W\u00f6rterbuch der slavischen Sprachen\u201c die bedeutendsten. Im Sinne des Neueurop\u00e4ismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begr\u00fcnder der rum\u00e4n. und alban. Philol. wurde. Er verfa\u00dfte umfangreiche Stud. \u00fcber die Mundarten und Wanderungen der Zigeuner Europas und edierte erfolgreich altkirchenslaw. Texte sowie serb. und griech. hist. Quellen. M. war auch in der Lehnwort-, Personen- und Ortsnamenforschung sowie in der Analyse der Volksepik bahnbrechend. Geringere Bedeutung haben dagegen seine mytholog. und polem. Schriften.\n", "source": 141}}, {"model": "metainfo.text", "pk": 47451, "fields": {"kind": 131, "text": "Miklosich\u00a0Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomer\u0161cak pri Ljutomeru, Unterstmk.), 20. 11. 1813; \u2020 Wien, 7. 3. 1891.", "source": 141}}, {"model": "metainfo.text", "pk": 47460, "fields": {"kind": 130, "text": "Stud. an der Exportakad. (Hochschule f\u00fcr Welthandel) in Wien, wo er die Lehramtspr\u00fcfung f\u00fcr h\u00f6here Handelsschulen und die Diplompr\u00fcfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule f\u00fcr Welthandel, 1931 Habil. f\u00fcr Betriebswirtschaftslehre an der Hochschule f\u00fcr Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. f\u00fcr Betriebswirtschaftslehre. 1938 wurde M. durch die Nationalsozialisten von der Hochschule entfernt. Nach Verhaftung (1942) und Verurteilung im selben Jahr zu sechs Jahren Zuchthaus wegen Kenntnis von verr\u00e4ter. Vorhaben und Unterlassung der Anzeige, w\u00e4hrend des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der B\u00f6rsenverkehr. Er verband in seinen Ver\u00f6ff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realit\u00e4t mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einflu\u00df von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbst\u00e4ndige Teildisziplin der Wirtschaftswiss. verstandenen Betriebswirtschaftslehre, von einer privatwirtschaftlich ausgerichteten Unternehmungslehre zu einer alle wirtschaftlichen Einheiten einer Volkswirtschaft untersuchenden Lehre, die somit auch die Haushalte einbeziehen sollte. Betriebs- und Volkswirtschaftslehre zeigen nach M. \u201eandere Seiten des wirtschaftlichen Geschehens\u201c, wobei von ersterer \u201eder Betrieb als eine mit konkreten Tatbest\u00e4nden und Aufgaben erf\u00fcllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens \u00fcberhaupt untrennbar verbunden erscheint\u201c.\n", "source": 140}}, {"model": "metainfo.text", "pk": 47461, "fields": {"kind": 131, "text": "Meithner\u00a0Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; \u2020 Wien, 13. 12. 1942.", "source": 140}}, {"model": "metainfo.text", "pk": 47466, "fields": {"kind": 130, "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der j\u00fcd. Deklassierten. Seine Lieder, die er in Gasth\u00e4usern und Sch\u00e4nken vortrug, sind von sozialen Motiven gepr\u00e4gt. Obwohl er im Zeitalter der gr\u00f6\u00dften K\u00e4mpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des j\u00fcd. Volksgesanges, W\u00f6lwel Zbarazer (Ehrenkranz), durchzog mit einigen Gef\u00e4hrten, die man als \u201eBroder-S\u00e4nger\u201c bezeichnete, Galizien, Rum\u00e4nien sowie Ru\u00dfland, wo sie seine wie auch \u00e4ltere j\u00fcd. Volkslieder vortrugen. Er war der erste der j\u00fcd. fahrenden Volkss\u00e4nger, der Vorl\u00e4ufer des modernen jidd. Theaters.\n", "source": 139}}, {"model": "metainfo.text", "pk": 47467, "fields": {"kind": 131, "text": "Margulies\u00a0Berl, Volkss\u00e4nger. * Brody (Galizien), ca. 1817; \u2020 b. Bukarest, ca. 1880.", "source": 139}}, {"model": "metainfo.text", "pk": 47468, "fields": {"kind": 130, "text": "Tochter des Malers Anton\u00edn M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Sch\u00fclerin ihres Vaters, dessen maler. Verm\u00e4chtnis sie aber nicht so selbst\u00e4ndig entfalten konnte wie ihre Br\u00fcder, welche sie materiell unterst\u00fctzen mu\u00dfte.\n", "source": 137}}, {"model": "metainfo.text", "pk": 47469, "fields": {"kind": 131, "text": "M\u00e1nesov\u00e1\u00a0Amalie, Malerin. * Prag, 21. 1. 1817; \u2020 Prag, Juni 1883.", "source": 137}}, {"model": "metainfo.text", "pk": 47470, "fields": {"kind": 130, "text": "Sohn des Malers Anton\u00edn M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ov\u00e1 (s. d.), Neffe des Folgenden; stud. 1838\u201351 an der Prager Akad. bei Tkadl\u00edk und Ruben, 1870/71 in D\u00fcsseldorf bei Vautier und begann unter dem Einflu\u00df der Akad. mit hist. Motiven in Genreart. Ab der zweiten H\u00e4lfte der 50er Jahre befa\u00dfte er sich mit volkst\u00fcmlichen Motiven, vor allem aus der Gegend von Bischofteinitz, und insbesondere mit Prager Typen. Er wurde zum bedeutendsten Vertreter der tschech. Genremalerei des 19. Jh. Seine Bilder haben intimen Zauber, sie sind durch den Sinn f\u00fcr die Atmosph\u00e4re des Milieus, durch Unmittelbarkeit, lyr. Zartheit, liebevollen Humor, manchmal durch melanchol. Klage gekennzeichnet. M. war auch ein ausgezeichneter Tiermaler, besonders von Pferden. Das zeichner. Werk nahm in seinem Schaffen einen bedeutsamen Platz ein. Auch als Illustrator t\u00e4tig, schuf er 52 Illustrationen zum 1. Tl. des Don Quichotte (1865, Holzschnitt). Mit seinem Bruder Josef M. begann er in den 50er Jahren ein Werk \u00fcber Trachtenstud. bei der l\u00e4ndlichen Bev\u00f6lkerung.\n", "source": 138}}, {"model": "metainfo.text", "pk": 47471, "fields": {"kind": 131, "text": "M\u00e1nes\u00a0Quido, Maler. * Prag, 17. 7. 1828; \u2020 Prag, 5. 8. 1880.", "source": 138}}, {"model": "metainfo.text", "pk": 47482, "fields": {"kind": 130, "text": "Sohn eines Privatiers und Handelsagenten; besuchte das Gymn. in Graz, war dann Schauspieleleve in Berlin, dramaturg. Berater am Stadttheater Innsbruck, Schauspieler, Szenenbildner und Regisseur an verschiedenen Provinzb\u00fchnen, 1917 am Residenztheater M\u00fcnchen, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehb\u00fcchern. Ab 1927 Autor bzw. Mitautor von Hollywood-Filmen; 1932 emigrierte er nach Frankreich und arbeitete in Paris mit dem Regisseur P. Czinner und der Schauspielerin E. Bergner zusammen, ab 1935 lebte er in London. Neben seiner dramaturg. T\u00e4tigkeit im Dokumentarfilmstudio von P. Rotha widmete er sich der Ausbildung von Filmautoren. Ungemein stilbildend, war M. der bedeutendste Drehbuchautor des dt. Stummfilms. Er arbeitete u. a. mit den Regisseuren R. Wiene, F. W. Murnau, L. Pick, L. Jessner und P. Czinner sowie mit den Schauspielern W. Krau\u00df, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Kl\u00f6pfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n", "source": 136}}, {"model": "metainfo.text", "pk": 47483, "fields": {"kind": 131, "text": "Mayer\u00a0Karl, Drehbuchautor. * Graz, 20. 2. 1894; \u2020 London, 1. 7. 1944.", "source": 136}}, {"model": "metainfo.text", "pk": 47484, "fields": {"kind": 130, "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Gesch\u00e4ftsf\u00fchrer gemacht. M.-S. besch\u00e4ftigte sich mit philosoph. und naturwiss. Stud., gr\u00fcndete 1829 das erste \u201eTiroler Mineralien-Comptoir\u201c und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im M\u00e4rz 1848 verfa\u00dfte er einen feurigen Aufruf \u201eA greachts Weartl von an alten Landesverteidiger an seini Mitbr\u00fcder\u201c, der gro\u00dfen Widerhall fand. Auf eigene Kosten r\u00fcstete er die 1. Innsbrucker Sch\u00fctzenkomp. aus, an deren Spitze er im Mai 1848 an die S\u00fcdfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein \u201eRadetzky-Album\u201c an (es enthielt Zeichnungen, Portr\u00e4ts, eine wertvolle Autographensmlg. etc.), welches er sp\u00e4ter dem Tiroler Landesmus. Ferdinandeum \u00fcbergab. M.-S. errichtete 1853 unter gro\u00dfem Kostenaufwand auf seinem Schlo\u00df B\u00fcchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gr\u00fcndete den 1. Arbeiterunterst\u00fctzungsver. und beteiligte sich an vielen humanit\u00e4ren Einrichtungen. 1865 verkaufte er sein Schlo\u00df und f\u00fchrte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. t\u00e4tig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen gro\u00dfe Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der \u201eTiroler Monatsbl\u00e4tter\u201c. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n", "source": 135}}, {"model": "metainfo.text", "pk": 47485, "fields": {"kind": 131, "text": "Mahl-Schedl von Alpenburg\u00a0Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Gr\u00fcnburg (O.\u00d6.), 27. 10. 1806; \u2020 Innsbruck, 1. 4. 1873.", "source": 135}}, {"model": "metainfo.text", "pk": 47486, "fields": {"kind": 130, "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882\u201385 war er Kapellmeister beim IR 74, 1885\u201390 Kapellmeister beim IR 28. N., ein sehr guter Geiger, vor allem aber ein vortrefflicher Dirigent, dem die Rgt.Musik des IR 74 ihren ausgezeichneten Ruf verdankt, war auch im Ausland mit viel Erfolg t\u00e4tig. Neben Rum\u00e4nien und Bulgarien z\u00e4hlen Holland und Belgien zu seinen wichtigsten k\u00fcnstler. Wirkungsst\u00e4tten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n", "source": 145}}, {"model": "metainfo.text", "pk": 47487, "fields": {"kind": 131, "text": "Nov\u00e1cek\u00a0Rudolf, Kapellmeister und Komponist. * Wei\u00dfkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; \u2020 Prag, 12. 8. 1929.", "source": 145}}, {"model": "metainfo.text", "pk": 47502, "fields": {"kind": 130, "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898\u20131903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904\u201319 wirkte er als Dir. am neugegr\u00fcndeten M\u00e4dchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes f\u00fcr Inneres und Unterricht t\u00e4tig, leitete ab 1922 die Abt. f\u00fcr p\u00e4dagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform f\u00fcr alle Mittelschulen folgte. Er unterst\u00fctzte bes. die Ver.-M\u00e4dchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkr\u00e4fte und f\u00f6rderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908\u201310 erster Obmann des Ver. Lyzeum.\n", "source": 147}}, {"model": "metainfo.text", "pk": 47503, "fields": {"kind": 131, "text": "Ortmann\u00a0Rudolf, P\u00e4dagoge. * Reichenberg (Liberec, B\u00f6hmen), 10. 3. 1874; \u2020 Wien, 22. 11. 1939.", "source": 147}}, {"model": "metainfo.text", "pk": 47506, "fields": {"kind": 130, "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegr\u00fcndete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832\u201337 Vorlesungen \u00fcber Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848\u201360 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfa\u00dfte zahlreiche Aufs\u00e4tze aus dem Gebiet der Chemie und hielt in Innsbruck viele popul\u00e4rwiss. Vortr\u00e4ge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur f\u00fcr techn. Chemie scheiterte aus Geldmangel (1838).\n", "source": 146}}, {"model": "metainfo.text", "pk": 47507, "fields": {"kind": 131, "text": "Oellacher\u00a0Josef, Pharmazeut. * Pre\u00dfburg, 16. 2. 1804; \u2020 Innsbruck, 16. 8. 1880.", "source": 146}}, {"model": "metainfo.text", "pk": 47516, "fields": {"kind": 130, "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtspr\u00fcfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg t\u00e4tig. 1918\u20131924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent f\u00fcr das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor f\u00fcr Geol. und Pal\u00e4ontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfa\u00dfte u. a. mehrere Schulb\u00fccher und red. ab 1932 die Z. \u201eIzvestja muzejskega dru\u0161tva za Kranjsko\u201c. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n", "source": 151}}, {"model": "metainfo.text", "pk": 47517, "fields": {"kind": 131, "text": "Poljanec\u00a0Leopold, Biologe und Schulmann. * Rann (Bre\u017eice, Unterstmk.), 23. 9. 1872; \u2020 Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944.", "source": 151}}, {"model": "metainfo.text", "pk": 47522, "fields": {"kind": 130, "text": "Stud. Germanistik und Polonistik bei R. M. Werner und R. Pilat an der Univ. Lemberg, wo er auch zu A. Sauer Verbindung hatte; 1897 Dr. phil. 1889\u201398 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903\u201309 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, t\u00e4tig. 1914 Priv. Doz., 1915\u201321 hielt er an der Univ. Lemberg Vorlesungen aus dt. Philol. und dt. Literaturgeschichte. 1918/19 war er provisor. Doz. der Germanistik an der Univ. Warschau. P. war u. a. ab 1920 w. Mitgl. der Lemberger Wiss. Ges. Als Literaturwissenschafter leistete P. auf dem Gebiet der H\u00f6lderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, h\u00f6chste Anerkennung fand.\n", "source": 150}}, {"model": "metainfo.text", "pk": 47523, "fields": {"kind": 131, "text": "Petzold\u00a0Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; \u2020 Lemberg (L\u2019viv), 15. 7. 1932.", "source": 150}}, {"model": "metainfo.text", "pk": 47530, "fields": {"kind": 130, "text": "Sohn des Philosophen Johann P. v. L. (1793\u20131866), Cousin des Folgenden, Neffe des Juristen und Politikers Thadd\u00e4us Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden K\u00fcnste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in D\u00fcsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden K\u00fcnste in Wien, an der er 1872\u20131901 als Prof. f\u00fcr Landschaftsmalerei wirkte, 1878\u201380 und 1897\u201399 Rektor. Nach seiner Pensionierung lebte er in N\u00fcrnberg und Berlin. \u00dcber pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf \u00d6l-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine \u00d6lbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Sch\u00fcler zu intensiven Naturstud. anhielt. Er beteiligte sich an den Wr. Akad.Ausst., u. a. 1858 und 1859. 1861 stellte er als Mitgl. im Wr. K\u00fcnstlerhaus aus, das ihm 1913 auch eine Ged\u00e4chtnisausst. widmete.", "source": 149}}, {"model": "metainfo.text", "pk": 47531, "fields": {"kind": 131, "text": "Peithner von Lichtenfels\u00a0Eduard, Maler und Radierer. * Wien, 18. 11. 1833; \u2020 Berlin, 22. 1. 1913.", "source": 149}}, {"model": "metainfo.text", "pk": 47536, "fields": {"kind": 130, "text": "Stud. 1839\u20131843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-M\u00fcnzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel f\u00fcr H\u00fctten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausr\u00fcstung der Labors betraut wurde. P. setzte die in Wien begonnenen chem. Arbeiten, u. a. Silberextraktion auf nassem Weg und Darstellung der reinen Uranverbindungen, fort; 1852 unternahm er in Joachimsthal im Auftrag der Obersten Montanverwaltung Versuche zur Verbesserung der Arbeitsmethoden und zur Auffindung neuer Verfahren bei der Verwertung einzelner Erze, deren Ergebnis die Silberextraktion unter Anwendung von unterschwefligsaurem Natron, Gewinnung von Nickel, Wismut und Kohlenoxyd, Ausscheidung des Arsens aus seinen Verbindungen in Erzen sowie die Darstellung der Uranfarben aus Pechblende waren. 1856 wurde in der Folge eine Uranaufbereitungsanlage in Joachimsthal gebaut. 1864 richtete P. in Wien das H\u00fcttenm\u00e4nn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum H\u00fcttenchemiker des gesamten \u00f6sterr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (sp\u00e4ter Vorstand des H\u00fcttenm\u00e4nn.-chem. Laboratoriums) ernannt. 1881 Oberbergrat, 1889 i. R., Hofrat. Erst durch P.s Verfahren der Urangewinnung aus Pechblende wurden die Forschungen des Ehepaars Curie erm\u00f6glicht.\n", "source": 148}}, {"model": "metainfo.text", "pk": 47537, "fields": {"kind": 131, "text": "Patera\u00a0Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; \u2020 Teschen (Cieszyn, \u00f6sterr. Schlesien), 26. 6. 1894.", "source": 148}}, {"model": "metainfo.text", "pk": 47540, "fields": {"kind": 130, "text": "Stud. ab 1782 an der Univ. Salzburg Phil. (1788 Mag.phil.), dann Theol. (1794 Dr. theol.); war nach seiner Priesterweihe (1793) als Seelsorger t\u00e4tig. 1801 wurde er Kanonikus des Kollegiatstiftes Maria Schnee, 1803 w. Konsistorialrat, 1810 Pfarrer und Dechant (damit auch Schuldistriktsinsp.) von Altenmarkt, 1832 erster Dechant des wiedererrichteten Kollegiatstiftes Seekirchen. R. ist der erste Historiograph des salzburg.-\u00f6sterr. Bildungswesens, \u00fcber das er grundlegende Beitrr. verfa\u00dfte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten \u00fcber theolog., p\u00e4dagog. und hist. Themen waren weit verbreitet.\n", "source": 158}}, {"model": "metainfo.text", "pk": 47541, "fields": {"kind": 131, "text": "Rumpler\u00a0Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; \u2020 Seekirchen (Salzburg), 17. 3. 1846.", "source": 158}}, {"model": "metainfo.text", "pk": 47542, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckermeisters; ab 1901 selbst\u00e4ndiger B\u00e4kkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912\u201325 im Wr. Gemeinderat, 1924\u201334 im Bundesrat; ab 1917 Vizepr\u00e4s., in der Folge Pr\u00e4s. des Dt.\u00f6sterr. Gewerbebundes. 1928 Kommerzialrat. R. hat mit seinen hist. Stud. wesentlichen Anteil am Aufschwung der Wr. Lokalgeschichtsschreibung in der Zwischenkriegszeit: Seine Geschichte des VII. und die des VIII. Wr. Gemeindebez. sind ebenso Standardwerke geblieben wie die gem. mit A. Schmieger verfa\u00dfte Stud. \u201eDas Ghetto in der Wiener Leopoldstadt\u201c (1926). Auch seine wertvollen Ver\u00f6ff. aus der Geschichte des Wr. B\u00e4ckergewerbes zeugen von R.s Flei\u00df im Erschlie\u00dfen von Quellenmaterial.\n", "source": 157}}, {"model": "metainfo.text", "pk": 47543, "fields": {"kind": 131, "text": "Rotter\u00a0Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; \u2020 Wien, 18. 9. 1945.", "source": 157}}, {"model": "metainfo.text", "pk": 47556, "fields": {"kind": 130, "text": "Aus urspr\u00fcnglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der nieder\u00f6sterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenk\u00fcrassieren die Feldz\u00fcge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in M\u00fcnchen, Berlin, Stuttgart, Stockholm und Paris t\u00e4tig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 K\u00e4mmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-d\u00e4n. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilko\u00e4r. f\u00fcr Schleswig-Holstein. Anschlie\u00dfend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der \u00f6sterr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Aufl\u00f6sung von kath. Kl\u00f6stern in russ. Polen, erzwungener \u00dcbertritt von unierten Christen zur Orthodoxie etc.) befa\u00dft. 1868 trat er wegen Differenzen mit Beust (s. d.) zur\u00fcck. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner ober\u00f6sterr. G\u00fcter Erlach und Tollet und wurde daneben in der \u00f6sterr. Innenpolitik au\u00dferordentlich aktiv. Er wurde 1869 als Vertreter des Gro\u00dfgrundbesitzes ober\u00f6sterr. Landtagsabg. 1885 Mitgl. der \u00f6sterr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des \u00f6sterr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Pr\u00e4lat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschl\u00fcssen des Frankfurter Katholikentages 1882 begr\u00fcndet wurde. 1888 wurde R. im ausw\u00e4rtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen w\u00e4hrend seiner Amtszeit geh\u00f6rten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren H\u00f6hepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein m\u00f6gliches Refugium in \u00d6sterr. zu gew\u00e4hren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) geno\u00df, \u00fcbte auch eine Vermittlert\u00e4tigkeit bei dessen famili\u00e4ren Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mu\u00dfte er auf Dr\u00e4ngen ung. Politiker von seinem Posten zur\u00fccktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssph\u00e4ren von Staat und Kirche in der sp\u00e4tjosefin. Zeit. Daneben war er Experte f\u00fcr die Grenzbereiche der r\u00f6m.-kath., unierten und orthodoxen Kirchen, auch f\u00fcr Ru\u00dfland und den Balkan. Obwohl f\u00fcr soziale Fragen aufgeschlossen, war er kein Sympathisant der Christlichsozialen, deren antisemit. Tendenzen er ablehnte. Vielfach geehrt und ausgezeichnet, u. a. Geh.Rat (1868), Kanzler des Leopold-Ordens und Gro\u00dfkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866\u20131951), folgte 1919 K. Karl (s. d) ins Exil.\n", "source": 156}}, {"model": "metainfo.text", "pk": 47557, "fields": {"kind": 131, "text": "Revertera von Salandra\u00a0Friedrich Graf, Diplomat und Politiker. * Lemberg (L\u2019viv), 21. 1. 1827; \u2020 Brixen (S\u00fcdtirol), 28. 4. 1904.", "source": 156}}, {"model": "metainfo.text", "pk": 47558, "fields": {"kind": 130, "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (N\u00d6) t\u00e4tig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814\u201324 Dir. des Priesterseminars, 1817\u201335 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. T\u00e4tigkeit. In zahlreichen Publ. besch\u00e4ftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine \u201ePastoral-Anweisung nach den Bed\u00fcrfnissen unsers Zeitalters\u201c, die als offizielles Vorlesebuch f\u00fcr alle \u00f6ff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einflu\u00df auf den Klerusnachwuchs. R., ein gro\u00dfer Wohlt\u00e4ter der kirchlichen Inst., z\u00e4hlte zu den ma\u00dfvollen Josefinern.\n", "source": 154}}, {"model": "metainfo.text", "pk": 47559, "fields": {"kind": 131, "text": "Reichenberger\u00a0Andreas, Theologe. * Wien, 24. 11. 1770; \u2020 Linz, 26. 10. 1854.", "source": 154}}, {"model": "metainfo.text", "pk": 47560, "fields": {"kind": 130, "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883\u201386 an der Hochschule f\u00fcr Bodenkultur in Wien, Forsting. Wirkte ab 1887 am bosn.-herzegowin. Landesmus. in Sarajevo (1913 Reg.Rat, 1919 i. R.) und organisierte die von ihm geleitete naturwiss. Abt. Ab 1926 Mitgl. des Ornitholog. Observatoriums in Laibach (Ljubljana). R.s Lebenswerk war der Ornithol. des Balkans gewidmet. Neben seiner T\u00e4tigkeit am Mus. in Sarajevo sammelte er Material f\u00fcr eine Beschreibung der V\u00f6gel der Marburger Umgebung und arbeitete bei der Aufstellung der ornitholog. Smlg. des Mus. in Marburg a. d. Drau (Maribor) mit, dem er eine Smlg. von Vogeleiern aus dem Drautal vermachte. R. wurde vielfach geehrt und ausgezeichnet, u. a. 1932 Dr. h. c. der Univ. Graz.\n", "source": 155}}, {"model": "metainfo.text", "pk": 47561, "fields": {"kind": 131, "text": "Reiser\u00a0Othmar, Ornithologe. * Wien, 21. 12. 1861; \u2020 Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936.", "source": 155}}, {"model": "metainfo.text", "pk": 47564, "fields": {"kind": 130, "text": "Sohn eines Baumwollwarenh\u00e4ndlers; wurde nach Absolv. der Techn. Milit\u00e4rakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898\u20131900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900\u201311 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914\u201316 war R. als Milit\u00e4rattach\u00e9 in Bukarest. 1916 wurde er als Obstlt. des Gen. Stabskorps zum Chef der Gen.Stabsabt. des l. Armeekmdo. und noch im selben Jahr zum Obst. des Gen. Stabskorps ernannt. Ab 1918 war R. Gen. Stabschef des XI. Korps, dann Gen. Stabschef der k. u. k. Besatzungstruppen in Rum\u00e4nien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Fl\u00fcgeladj. Kg. Ferdinands von Rum\u00e4nien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein B\u00fcndnis gegen das revolution\u00e4re Ru\u00dfland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen \u00d6sterr.-Ungarn, dem Dt. Reich, der T\u00fcrkei und Bulgarien einerseits und Rum\u00e4nien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n", "source": 153}}, {"model": "metainfo.text", "pk": 47565, "fields": {"kind": 131, "text": "Randa\u00a0Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, M\u00e4hren), 24. 5. 1874; \u2020 Czernowitz (Cernivci, Bukowina), 13. 8. 1941.", "source": 153}}, {"model": "metainfo.text", "pk": 47566, "fields": {"kind": 130, "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtspr\u00fcfung) u. a. bei Boltzmann (s. d.) und Frischauf (s. d.), dann an der Univ. Berlin Physik bei Helmholtz und Kirchhoff. In Graz war R. lange Mitgl. von A. v. Meinongs (s. d.) Philosoph. Societ\u00e4t. Er interessierte sich f\u00fcr Grenzgebiete der Mathematik und der Physik sowie f\u00fcr die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten ma\u00dfgeblich beeinflu\u00dft wurde. 1894\u201396 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. f\u00fcr theoret. Physik an der Univ. Innsbruck und Ass. K. Exners (s. d.) am Mathemat.-physikal. Inst. 1902 ao. Prof. an der Univ. Innsbruck, 1906 o. Prof. der mathemat. Physik an der Univ. Czernowitz (Cernivci), 1915 o. Prof. der theoret. Physik an der Univ. Graz, 1924/25 Dekan. R.\u2019 bedeutendste und tiefgreifendste Arbeit behandelt \u201eDie Grundlagen der Galilei-Newton\u2019schen Mechanik\u201c. Er ver\u00f6ff. auch einige wichtige experimentelle Arbeiten zur Frage der Gescho\u00dfgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895\u20131938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n", "source": 152}}, {"model": "metainfo.text", "pk": 47567, "fields": {"kind": 131, "text": "Radakovic\u00a0Michael, Physiker. * Graz, 25. 4. 1866; \u2020 Graz, 15. 8. 1934.", "source": 152}}, {"model": "metainfo.text", "pk": 47568, "fields": {"kind": 130, "text": "Nach der Schulausbildung in Gro\u00dfwardein (Oradea) und Temeswar (Timi\u00bfoara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der K\u00f6r\u00f6s. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von G\u00e1bor D\u00f6brentei (\u00bfGabriel D\u00f6brentei) am Burgtheater (Budai V\u00e1rsz\u00ednh\u00e1z) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, T\u00e4nzer und Inspizient t\u00e4tig war sowie seine ersten Theaterst\u00fccke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Sz\u00ednh\u00e1z) in Pest ein Engagement als Schauspieler (1837\u201354) und Bibliothekar (1837\u201340) und widmete sich schlie\u00dfl. der Regie (1854\u201373) sowie der Dramaturgie (1868\u201373). Ab 1865 war er Prof. und 1870\u201373 Dir. der Pester Schauspielschule. 1873 \u00fcbernahm er die Leitung des Nationaltheaters. Er f\u00f6rderte zahlreiche sp\u00e4ter bekannte Schauspieler und initiierte u.\u00a0a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. \u00fcber hundert Theaterst\u00fccke und zahlreiche Libretti, schrieb Schauspielerportr\u00e4ts (\u201eMagyar sz\u00edn\u00e9szek \u00e9letrajzai\u201c, 1878, 2.\u00a0Aufl. 1907) und \u00fcbers. u.\u00a0a. Goethes \u201eEgmont\u201c (1871) und \u201eFaust\u201c sowie Shakespeares \u201eRichard III.\u201c (1867) ins Ung. Sein dramaturg. Lehrbuch \u201eA dr\u00e1ma \u00e9s v\u00e1lfajai\u201c (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der franz\u00f6s. und Wr. B\u00fchnen und adaptierte diese meisterhaft f\u00fcr das ung. Publikum. Sowohl seine Lustspiele (\u201eR\u00f3zsa\u201c, 1840; \u201eLiliomfi\u201c, 1849; \u201eFenn az ernyo, nincsen kas\u201c, 1858, 7.\u00a0Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen (\u201eII. R\u00e1k\u00f3czi Ferenc fogs\u00e1ga\u201c, 1848; \u201eA tr\u00f3nkereso\u201c, 1868, 5.\u00a0Aufl. 1916, dt. \u201eDer Pr\u00e4tendent\u201c, 1881; \u201eStruensee\u201c, 1871) als auch seine unter dem Einfluss des Wr. Volksst\u00fccks und des franz\u00f6s. Melodramas entstandenen Volksst\u00fccke \u201eSz\u00f6k\u00f6tt katona\u201c (1843) und \u201eCig\u00e1ny\u201c (1853), mit denen er die Grundlage f\u00fcr diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgen\u00f6ss. Publikums. Ledigl. seine b\u00fcrgerl. Dramen (\u201eA lelenc\u201c, 1863; \u201eA f\u00e9ny \u00e1rnyai\u201c, 1865) und die St\u00fccke \u201eA strike\u201c (1871) sowie \u201eAz amerikai\u201c (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stie\u00dfen auf Unverst\u00e4ndnis. S. war einer der einflussreichsten Dramatiker des 19.\u00a0Jh. in Ungarn, seine St\u00fccke wurden in zahlreiche Sprachen \u00fcbers. und verfilmt (\u201eSz\u00f6k\u00f6tt katona\u201c, 1914; \u201eLiliomfi\u201c, 1916, 1954; \u201eCig\u00e1ny\u201c, 1925, 1941) und geh\u00f6ren auch heute noch zum Standardrepertoire der ung. B\u00fchnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Gro\u00dfwardein (Nagyv\u00e1radi Szigligeti Sz\u00ednh\u00e1z) sowie das Theater in Szolnok (Szigligeti Sz\u00ednh\u00e1z) sind nach ihm benannt. S. war ab 1840 k.\u00a0M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n", "source": 194}}, {"model": "metainfo.text", "pk": 47569, "fields": {"kind": 131, "text": "Szigligeti Ede (Edv\u00e1rd), bis 1834 J\u00f3zsef Szathm\u00e1ry, Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur. Geb. V\u00e1rad-Olaszi, Ungarn (Oradea-Olosig, RO), 8.\u00a03. 1814; gest. Budapest (H), 19.\u00a01. 1878; r\u00f6m.-kath.", "source": 194}}, {"model": "metainfo.text", "pk": 47570, "fields": {"kind": 130, "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Sch\u00e4fer; ab 1895 verheiratet mit Erna Szen\u00f3ner. \u2013 Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871\u201374 war S. 1882\u201384 Z\u00f6gling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887\u201389 die Kriegsschule in Wien. Seine milit\u00e4r. Laufbahn begann er 1882 als Gemeiner im Honv\u00e9d-Inf.baon.\u00a018. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k.\u00a0u.\u00a0k. Armee sowie bei der Honv\u00e9d und versah Truppendienst, u.\u00a0a. als Baon.kmdt., v.\u00a0a. in den Honv\u00e9d-Inf.rgt.\u00a04 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der F\u00fchrung der kgl. ung. Inf.div.\u00a038 betraut, an deren Spitze er \u2013 ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps \u2013 ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz k\u00e4mpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (U\u017eoc\u2019kyj pereval) in den Karpaten gegen die Russen. 1917 erfolgte seine Ernennung zum kgl. ung. Landesverteidigungsminister in Budapest (ab August Gen. der Inf.). Diesen Posten bekleidete er bis zum Austritt Ungarns aus der Realunion Ende Oktober 1918. Anfang 1919 wurde S. pensioniert, einen Monat sp\u00e4ter auf Gehei\u00df der Berinkey-Regierung in St.\u00a0Gotthard (Szentgotth\u00e1rd) interniert und w\u00e4hrend der R\u00e4terepublik gem. mit \u00bfJ\u00f3zsef Frh. Szter\u00e9nyi v. Brass\u00f3 in Budapest gefangen gehalten. Nach dem Sturz der R\u00e4terepublik war S. Ende 1919 Verbindungsoff. bei der franz\u00f6s. milit\u00e4r. Mission. 1921 wurde er endg\u00fcltig pensioniert, lebte danach in Budapest und wirkte als Milit\u00e4rschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I.\u00a0Kl., 1916 wurde er Kommandeur des Leopold-Ordens I.\u00a0Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Pr\u00e4dikat \u201evon Uzsok\u201c ausgez. S. war Inhaber des Honv\u00e9d-Inf.rgt.\u00a020 (1918), 1929 wurde er in den Vit\u00e9zi Rend (Ritterorden) aufgenommen, 1927\u201344 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n", "source": 195}}, {"model": "metainfo.text", "pk": 47571, "fields": {"kind": 131, "text": "Szurmay von Uzsok S\u00e1ndor (Alexander) Frh., Offizier und Politiker. Geb. Boks\u00e1nb\u00e1nya, Ungarn (Boc\u00bfa, RO), 19.\u00a012. 1860; gest. Budapest (H), 26.\u00a03. 1945.", "source": 195}}, {"model": "metainfo.text", "pk": 47580, "fields": {"kind": 130, "text": "Sohn eines Bauern. \u2013 Nach Besuch der Gymn. in Kempten im Allg\u00e4u, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St.\u00a0Florian ein (1823 Profe\u00df, 1824 Priesterweihe). 1824\u201343 wirkte er als Kaplan in der Stiftspfarre, 1843\u201354 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s.\u00a0d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 au\u00dferdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht \u00fcbertragen. 1859 wurde er Propst von St.\u00a0Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Versch\u00f6nerungen in der Stiftskirche, u.\u00a0a. durch L.\u00a0Kupelwieser (s.\u00a0d.), durchgef\u00fchrt. Daneben widmete sich S., von F.\u00a0Ser. Kurz (s.\u00a0d.) angeleitet, schon bald der Historiographie. Bereits 1834 geh\u00f6rte er zu den Initiatoren des sp\u00e4teren Mus. Francisco-Carolinum, red. 1839\u201344 dessen \u201eMusealblatt\u201c und arbeitete v.\u00a0a. an den ersten sechs Bde. des \u201eUrkundenbuchs des Landes ob der Enns\u201c (1852\u201372) mit; weiters befa\u00dfte er sich mit dem Leben von K.\u00a0Maximilian\u00a0I., ordnete die Archive der Stifte St.\u00a0Florian und Wilhering und verf. die Geschichte beider Kl\u00f6ster. Zudem besch\u00e4ftigte er sich mit dem Gr\u00fcnder von Stift Reichersberg, Propst Gerhoch, sowie mit Bischof Altmann von Passau, ferner landesgeschichtl. mit den Gf. von Schaunberg. S., der in regem Austausch mit Koch v. Sternfeld (s.\u00a0d.) stand, war u.\u00a0a. Mitgl. des Hist. Ver. f\u00fcr Unterfranken und Aschaffenburg (1841), des Hist. Ver. f\u00fcr die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k.\u00a0k. Reichshistoriographen. 1847 z\u00e4hlte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. t\u00e4tig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gew\u00e4hlt, wo er v.\u00a0a. mit dem kath.-reformer. Kreis um Johann Joseph v. G\u00f6rres in Verbindung stand. Auch bei den Bem\u00fchungen um die Errichtung des o\u00f6. Katholikenver. 1848 spielte S. eine f\u00fchrende Rolle. 1861\u201367 geh\u00f6rte er dem o\u00f6. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Pr\u00e4s. der O\u00f6. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n", "source": 193}}, {"model": "metainfo.text", "pk": 47581, "fields": {"kind": 131, "text": "St\u00fclz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23.\u00a02. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28.\u00a06. 1872; r\u00f6m.-kath.", "source": 193}}, {"model": "metainfo.text", "pk": 47584, "fields": {"kind": 130, "text": "Sohn von Josef Maria S. (s.\u00a0d.). \u2013 Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Sch\u00fcler O.\u00a0Redlichs (s.\u00a0d.) Geschichte an der Univ. Wien, 1910 Dr.\u00a0phil., und absolv. 1909\u201311 als ao.\u00a0Mitgl. den Kurs des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung. Noch im Juli 1911 ging er als Mitarb. an der von der Heidelberger Akad. der Wiss. und der Bad. Hist. Komm. vorbereiteten Ausg. der bad. Weist\u00fcmer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am \u00d6sterr. Hist. Inst. in Rom. Daneben war er 1913 nochmals f\u00fcr die Bad. Hist. Komm. t\u00e4tig und ordnete das gr\u00e4fl. Douglassche Archiv auf Schlo\u00df Langenstein im Hegau. 1914 trat er als Konzeptsaspirant in das HHStA ein, wurde 1915 Konzeptspraktikant und 1921 Staatsarchivar. Er ordnete das Konsulatsarchiv in Belgrad (1916), die Archive in Jaidhof bei Gf\u00f6hl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. \u00fcber die Urkundenabt. und leitete schlie\u00dfl. die Hss.abt. im HHStA. 1921\u201322 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. \u201eHistorischen Bl\u00e4tter\u201c, ab 1928 Mitgl. des Gesch\u00e4ftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien f\u00fcr Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao.\u00a0Prof. Als Medi\u00e4vist befa\u00dfte er sich mit Fragen der \u00f6sterr. Diplomatik, einschlie\u00dfl. der Kanzlei- und der Stadtb\u00fccher, sowie bes. mit Verfassungsgeschichte. Ab 1923 fungierte er als Dir. des Archivs der Stadt Wien und machte dieses zu einer anerkannten wiss. Einrichtung: Eine neue Archivordnung, die u.\u00a0a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30\u00a0Jahren umfa\u00dfte, trat 1924 in Kraft. Archivpraktika f\u00fcr Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Gl\u00f6ckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Au\u00dfenwirkung des Archivs ebenso wie die F\u00f6rderung der Geschichtsforschung, etwa durch die Begr\u00fcndung der \u201eStudien aus dem Archiv der Stadt Wien\u201c oder durch die Anregung zur Ver\u00f6ff. der \u201eUrkunden aus Wiener Grundb\u00fcchern zur Geschichte der Wiener Juden im Mittelalter\u201c (1931) durch L.\u00a0Sailer (s.\u00a0d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. f\u00fcr Geschichte der Stadt Wien gew\u00e4hlt worden, 1924\u201325 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gr\u00fcnden zur\u00fcck. 1926 Vizepr\u00e4s., begr\u00fcndete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n", "source": 192}}, {"model": "metainfo.text", "pk": 47585, "fields": {"kind": 131, "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21.\u00a010. 1887; gest. ebd., 19.\u00a02. 1934; evang.\u00a0AB.", "source": 192}}, {"model": "metainfo.text", "pk": 47594, "fields": {"kind": 130, "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24.\u00a04. 1879; gest. ebd., 4.\u00a02. 1952) verehel. Nach Absolv. des M\u00e4dchengymn. des Wr. Ver. f\u00fcr erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr.\u00a0phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtspr\u00fcfung f\u00fcr Mittelschulen ab. I.\u00a0d.\u00a0F. unterrichtete S. an einem Wr. M\u00e4dchengymn., befa\u00dfte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vortr\u00e4ge f\u00fcr die Vereinigung \u00f6sterr. Hochschuldoz. Athen\u00e4um. Ihr Engagement im Bereich der Frauenbildung und \u2013f\u00f6rderung f\u00fchrte 1907 zur Gr\u00fcndung eines M\u00e4dchengymn. in Wien\u00a02. Auf Grund ihres Strebens nach gediegener Berufsausbildung f\u00fcr begabte M\u00e4dchen aus \u00e4rmerem Haus gr\u00fcndete sie 1907 gem. mit Olly Schwarz einen Ver. f\u00fcr h\u00f6here kommerzielle Frauenbildung und die erste Handelsakad. f\u00fcr M\u00e4dchen in der Sch\u00f6nborngasse (Wien\u00a08), deren Leitung sie als erste Schuldir., die in den Staatsdienst \u00fcbernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. f\u00fcr ihre T\u00e4tigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n", "source": 190}}, {"model": "metainfo.text", "pk": 47595, "fields": {"kind": 131, "text": "Steindler Olga, verehel. Ehrenhaft-S., P\u00e4dagogin und Physikerin. Geb. Wien, 28.\u00a010. 1879; gest. ebd., 21.\u00a012. 1933.", "source": 190}}, {"model": "metainfo.text", "pk": 47596, "fields": {"kind": 130, "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s.\u00a0d.). S. besuchte 1902\u201310 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L.\u00a0M. Hartmann, W.\u00a0Kubitschek, Bormann (alle s.\u00a0d.) und Adolf Wilhelm; 1914 Dr.\u00a0phil. Nach Milit\u00e4rdienst 1915\u201317 habil. er sich 1919 an der Univ. Wien. 1927\u201329 war S. an der R\u00f6m.-German. Komm. des Dt. Arch\u00e4olog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der r\u00f6m. Kaiserzeit besch\u00e4ftigt, danach Doz. f\u00fcr Alte Geschichte an der Univ. Berlin, 1931\u201332 ao.\u00a0Prof. f\u00fcr alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G.\u00a0Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, k\u00fcndigte seine Stellung und verlie\u00df Dtld. 1932\u201334 war er, unterst\u00fctzt vom belg. Byzantinisten Henri Gr\u00e9goire, Gastprof. an der Univ. Br\u00fcssel. Nach der \u201eMachtergreifung\u201c Hitlers (s.\u00a0d.) im J\u00e4nner 1933 publ. er nur mehr auf Franz\u00f6s.; 1934\u201335 war er Gastprof. an der Catholic Univ. of America (Washington, D.\u00a0C.), 1937 wurde f\u00fcr ihn ein Lehrstuhl f\u00fcr byzantin. Geschichte an der Univ. L\u00f6wen eingerichtet. 1940 mu\u00dfte S. jedoch Belgien mit seiner Frau Jeanne (Eheschlie\u00dfung 1923) unter falschem Namen (M.\u00a0Sernet) verlassen. Trotz der \u00e4u\u00dferl. bedr\u00e4ngten Situation und dem st\u00e4ndigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd.\u00a0seiner \u201eHistoire de l\u2019\u00c9mpire byzantin\u201c, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verh\u00e4ltnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. t\u00e4tig.\n\n", "source": 191}}, {"model": "metainfo.text", "pk": 47597, "fields": {"kind": 131, "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19.\u00a09. 1891; gest. Freiburg (Fribourg, Schweiz), 25.\u00a02. 1945; aus j\u00fcd. Familie, ab 1932 r\u00f6m.-kath.", "source": 191}}, {"model": "metainfo.text", "pk": 47602, "fields": {"kind": 130, "text": "Sohn eines Kleinbauern. S. besuchte 1858\u201366 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur S\u00fcdarmee eingezogen und erhielt nach der Schlacht bei Custoza die silberne Tapferkeitsmedaille. Da er Priester werden wollte, desertierte er und kam 1867 in die USA. Zun\u00e4chst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des sp\u00e4teren Bischofs der Di\u00f6zese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der franz\u00f6s. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph\u00a0I. (s.\u00a0d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der gro\u00dfteils aus Dt.b\u00f6hmen und -ungarn bestehenden Gmd. und ab 1891 als Di\u00f6zesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Di\u00f6zese Lead, S.\u00a0D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in f\u00fcnf Jahren 23 neue Kirchen und Pfarreien. Durch \u00fcberm\u00e4\u00dfige Arbeit erkrankt, resignierte S. 1909 auf seine Di\u00f6zese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n", "source": 189}}, {"model": "metainfo.text", "pk": 47603, "fields": {"kind": 131, "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12.\u00a05. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15.\u00a012. 1915; r\u00f6m.-kath.", "source": 189}}, {"model": "metainfo.text", "pk": 47614, "fields": {"kind": 130, "text": "\u2013 Sohn eines Grenzers. \u0160. wurde 1870 aus der Rgt.-Milit\u00e4rschule in Otocac als Korporal zum Grenz-IR 1 ausgemustert; 1874 Lt. beim IR 51. 1882 nahm er als Rgt.-Adj. an der Niederschlagung der Unruhen in Bosnien-Herzegowina teil. 1897 Mjr. und Baon.-, 1899\u20131904 Erg\u00e4nzungsbez.kmdt. im bosn.- herzegowin. IR 4, um dessen Personalaufstockung er sich sehr verdient machte; 1903 Obstlt., 1906 Obst. und 1907 Kmdt. des Linien-IR 2. 1909 erhielt \u0160. das Kmdo. des Gendarmeriekorps f\u00fcr Bosnien-Herzegowina, 1911 GM. Ab September 1914 f\u00fchrte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Vi\u0161egrad aus die Verteidigung S\u00fcdostbosniens. Ende M\u00e4rz 1915 \u00fcbernahm er dort das Kmdo. der neu errichteten 59. Inf.-Truppen-Div., die im Juli 1915 an die Isonzofront verlegt wurde. Im September 1915 nach Syrmien r\u00fcckverlegt, wurde \u0160. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 \u00fcbernahm er das Kmdo. der 42. Honv\u00e9d-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zur\u00fcckgedr\u00e4ngt wurde. Im M\u00e4rz 1917 dem Gen.-Insp. der Fu\u00dftruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde \u0160. im Juli 1918 beurlaubt, knapp vor der Ver\u00f6ff. des Oktobermanifests jedoch im Oktober 1918 als Milit\u00e4rkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die s\u00fcdslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte \u0160. seine letzten Lebensjahre auf seinem Gut in Cluj.\n", "source": 188}}, {"model": "metainfo.text", "pk": 47615, "fields": {"kind": 131, "text": "\u0160njaric\u00a0Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rum\u00e4nien), 28. 1. 1930.", "source": 188}}, {"model": "metainfo.text", "pk": 47626, "fields": {"kind": 130, "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden K\u00fcnste, wo er bis 1907/08 (u. a. bei J\u00f3zef v. Mehoffer, s. d., und Leon Wycz\u00f3lkowski) Malerei stud., 1902\u201303 bildete er sich an der Kunstgewerbeschule in Wien weiter, 1904 unternahm er Stud.reisen durch Italien und Frankreich. S., der sich in Zakopane von einer Tuberkuloseerkrankung erholen mu\u00dfte, verbrachte den Winter 1904/5 bei den Huzulen, wo er Landschafts- und Genrebilder aus dem Leben der Goralen malte. In der Folge zeichnete er Karikaturen f\u00fcr die satir. Z. \u201eChochol\u201c (1902) und \u201eLiberum Veto\u201c (1903\u201305), 1904 ver\u00f6ff. er die Mappe \u201e30 Karikaturen\u201c, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. K\u00fcnstler \u201eSztuka\u201c und im selben Jahr Mitarbeiter des ber\u00fchmten Krakauer Kabaretts \u201eZielony Balonik\u201c, f\u00fcr das er die Inneneinrichtung des Caf\u00e9s und Einladungen entwarf. W\u00e4hrend dieser Zeit fertigte er auch Portr\u00e4ts, Karikaturen von bekannten K\u00fcnstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in \u00d6l mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) lie\u00df er sich im selben Jahr in Lemberg nieder. W\u00e4hrend seiner Milit\u00e4rdienstzeit (1914\u201317)zeichnete er Portr\u00e4ts und Karikaturen bedeutender Pers\u00f6nlichkeiten des Milit\u00e4rwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920\u201330 an der dortigen Schule f\u00fcr Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem \u0152uvre der hist. und religi\u00f6sen Thematik zuwandte; 1918\u201319 zeichnete er Karikaturen f\u00fcr die Z. \u201eSzczutek\u201c und 1920 f\u00fcr \u201eRzeczpospolita\u201c; ab 1930 lehrte er an der Akad. der bildenden K\u00fcnste in Krakau (Krak\u00f3w); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein \u0152uvre fand in zahlreichen in- und ausl\u00e4nd. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, M\u00fcnchen und Rom).\n", "source": 187}}, {"model": "metainfo.text", "pk": 47627, "fields": {"kind": 131, "text": "Sichulski\u00a0Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lw\u00f3w, Galizien (L\u2019viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; r\u00f6m.-kath.", "source": 187}}, {"model": "metainfo.text", "pk": 47630, "fields": {"kind": 130, "text": "Sohn eines Arztes und Hptm. der Sch\u00fctzenkompanie Ulten. S., der nach dem Willen seines Vaters urspr\u00fcngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden K\u00fcnste in M\u00fcnchen, wo er auch Privatunterricht nahm; anschlie\u00dfend \u00fcbersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. z\u00e4hlte die sp\u00e4tere dt. Kn. Auguste Viktoria zu seinen Sch\u00fclerinnen). 1889 geh\u00f6rte er zu den Gr\u00fcndungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s \u0152uvre umfa\u00dft vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurg\u00e4sten gro\u00dfen Anklang; seine Bedeutung liegt aber v. a. in der exakten Wiedergabe der damaligen topograph. Gegebenheiten, wodurch es ihm gelang, ein Zeugnis der dortigen Bausubstanz um 1900 f\u00fcr die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachla\u00df bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum pr\u00e4sentiert.\n", "source": 186}}, {"model": "metainfo.text", "pk": 47631, "fields": {"kind": 131, "text": "Settari\u00a0Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905.", "source": 186}}, {"model": "metainfo.text", "pk": 47634, "fields": {"kind": 130, "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869\u201373 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und N\u00d6 ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rath\u00e4user in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repr\u00e4sentationsbed\u00fcrfnis seiner Zeit stark entgegen kamen, pr\u00e4gte v. a. das Stadtbild von St. P\u00f6lten, wo er erstmals 1883 mit dem neobarock gepr\u00e4gten Hauptgeb\u00e4ude der Sparkasse in Erscheinung trat. Es folgten weitere Auftr\u00e4ge f\u00fcr kommunale Bauten und Amtsgeb\u00e4ude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgeb\u00e4udes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Geb\u00e4uden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begr\u00fcntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Sch\u00f6nbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgef\u00fchrt wurde. S. \u2013 auch im privaten Wohnbau t\u00e4tig \u2013 setzte in seinem \u0152uvre \u201edie Formimpulse des strengen Historismus unter dem Einflu\u00df der neueren Entwicklungen in einen dekorativen Repr\u00e4sentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verf\u00fcgung stehenden Formenapparates f\u00fcr zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden lie\u00df\u201c (W. Kitlitschka).\n", "source": 185}}, {"model": "metainfo.text", "pk": 47635, "fields": {"kind": 131, "text": "Sehnal\u00a0Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910.", "source": 185}}, {"model": "metainfo.text", "pk": 47640, "fields": {"kind": 130, "text": "Sohn des Badener Gmd.Sekret\u00e4rs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861\u201365 das Gymn. im Stift Heiligenkreuz, wo er auch S\u00e4ngerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) \u00fcbersiedelte die Familie (S. hatte zw\u00f6lf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verlie\u00df er den Orden auf Anraten seiner Oberen, die w\u00e4hrend des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 w\u00e4hrend einer Erkrankung den zweiten Vornamen \u201eMaria\u201c an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (N\u00d6) \u2013 wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als \u201ePapst von Marchegg\u201c bezeichnet wurde \u2013, 1879\u201386 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Gro\u00dfstadt kennen und antwortete 1882 mit der Gr\u00fcndung des \u201eKatholischen Lehrlings-Vereins\u201c, rief 1886 das \u201eLehrlingsasyl\u201c sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. \u201eDas christliche Handwerk\u201c (Vorl\u00e4ufer der jetzt noch erscheinenden \u201eKalasantiner-Bl\u00e4tter\u201c) heraus, 1889 baute er in F\u00fcnfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gr\u00fcndung der \u201eKongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz\u201c (\u201eKalasantiner\u201c), der ersten \u00f6sterr. M\u00e4nnerkongregation, die sich der Arbeiter und v. a. der Lehrlinge annehmen wollte. Diesem Auftrag versuchte S. durch Erziehung der Kinder und der Lehrlingsjugend in Horten, Heimen und Oratorien sowie durch Erteilung des Religionsunterrichtes in Grund- und Berufsschulen gerecht zu werden. Die Gemeinschaft sollte dar\u00fcber hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken \u2013 sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch \u00dcbernahme von Pfarren in Arbeitervierteln der St\u00e4dte. Weitere begleitende Gr\u00fcndungen waren: Marian. Arbeitersodalit\u00e4t, Herz Jesu-Arbeiter-Oratorium, Frauenwohlt\u00e4tigkeitsver., Mariazellerver. und Muttergottesbund. 1897\u20131926 wurden weitere elf Niederlassungen der Kongregation (u. a. auch 1902 in Budapest) errichtet. Sein soziales Engagement hat S. auch in die Tagespolitik eingreifen lassen: Er forderte z. B. die Arbeiter zur Gr\u00fcndung von Selbstschutzund Bildungsverb\u00e4nden auf und unterst\u00fctzte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder \u00f6ff. Kontroverse zur\u00fcck. Kardinal Piffl (s. d.), der ihn freundschaftl. unterst\u00fctzte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den \u201eArbeiterapostel\u201c. Dem 1949 er\u00f6ffneten Seligsprechungsproze\u00df folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.\u2019 kirchl. Gedenktag ist der 17. September.\n", "source": 181}}, {"model": "metainfo.text", "pk": 47641, "fields": {"kind": 131, "text": "Schwartz\u00a0\u2014 P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (N\u00d6), 28. 2. 1852; gest. Wien, 15. 9. 1929.", "source": 181}}, {"model": "metainfo.text", "pk": 47642, "fields": {"kind": 130, "text": "Sohn eines M\u00fcllers. Nach dem Besuch des Gymn. in Olm\u00fctz (Olomouc) 1854\u201362 stud. S. von 1862\u201367 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtspr\u00fcfung ablegte. Ab 1865 war er Mitgl. des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschlo\u00df. 1867 trat S. als Stud.Pr\u00e4fekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (\u017datec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zur\u00fcck, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Au\u00dfer als Gymn.Lehrer wirkte S. auch als Fachpr\u00fcfer an der Konsularakad. Wiss. besch\u00e4ftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und \u00fcbersichtl. Darstellungsweise auszeichnen.\n", "source": 182}}, {"model": "metainfo.text", "pk": 47643, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, M\u00e4hren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903.", "source": 182}}, {"model": "metainfo.text", "pk": 47644, "fields": {"kind": 130, "text": "Sohn des Zwirnh\u00e4ndlers Franz Sales S.; Bruder von Sebastian S., Onkel des Priesters Josef S., des Caspar und des Franz Sales S. (alle s. d.). S. besuchte das Gymn. in Linz und Kremsm\u00fcnster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und er\u00f6ffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er au\u00dferdem eine F\u00e4rberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige H\u00e4user in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den o\u00f6. Landtag gew\u00e4hlt, dem er dann auch 1861\u201379 angeh\u00f6ren sollte und in dem er als Obmann-Stellv. des Stra\u00dfenausschusses fungierte. 1864\u201373 Bgm. von Freistadt, erwarb er sich Verdienste um das Kommunalwesen, etwa durch die Errichtung der Stadtsparkasse (1866), deren 1. Dion.Vorstand er wurde. Bes. Augenmerk legte er auf die Entwicklung des st\u00e4dt. Schulwesens, zu dessen Entwicklung er ma\u00dfgebl. beitrug. So initiierte S. die Errichtung des 1867 er\u00f6ffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. gef\u00fchrt werden durfte, und richtete ferner, nach dem R\u00fcckzug der Piaristen, 1871 eine Knabenvolksschule ein. Au\u00dferdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freist\u00e4dter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n", "source": 183}}, {"model": "metainfo.text", "pk": 47645, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Kaspar, Politiker und Kaufmann. Geb. Lasberg (O\u00d6), 6. 11. 1811; gest. Freistadt (O\u00d6), 7. 5. 1879.", "source": 183}}, {"model": "metainfo.text", "pk": 47648, "fields": {"kind": 130, "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Nei\u00dfe stud. S. 1834\u201336 in Breslau (Wroclaw) und 1836\u201337 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Nei\u00dfe, 1839 in Breslau und dort im selben Jahr Referendar. S. war befreundet mit den schles. Dichtern Joseph v. Eichendorff und Friedrich v. Sallet und bereits 1836 in Berlin Mitgl. des Literatenver. \u201eDer Tunnel \u00fcber der Spree\u201c und des j\u00fcngeren Berliner Dichterver. Er bet\u00e4tigte sich journalist. vorwiegend als Theaterkritiker (\u201eTheater-Figaro\u201c, \u201eBreslauer Zeitung\u201c 1840ff.), war nach seiner R\u00fcckkehr nach Breslau 1840\u201348 ausschlie\u00dfl. f\u00fcr die Presse t\u00e4tig und wurde Mitarbeiter auch ausw\u00e4rtiger Z. (u. a. \u201eBerliner Figaro\u201c, \u201eBerliner Modenspiegel\u201c, \u201eDer Gesellschafter\u201c, \u201eDer Pilot\u201c). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des \u201eBreslauer Volks-Kalenders\u201c (bzw. \u201eDeutscher Volkskalender\u201c). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. \u201eBestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844\u201c (60 Aufs\u00e4tze, 1844), in der er die M\u00f6glichkeiten journalist. Arbeit nach Ma\u00dfgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als f\u00fcr \u00f6sterr. Verh\u00e4ltnisse bes. geeigneten Ztg.Red. aus, der geschickt zwischen den Anliegen der Autoren und der Forderungen der Zensur im Sinne Sedlnitzkys v. Choltitz (s. d.) zu vermitteln verstand. Nach Wien geholt, \u00fcbernahm S., der von Hebbel (s. d.) und Stifter gesch\u00e4tzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer T\u00e4tigkeit in der Red. der \u201ePresse\u201c, 1849, ab 1850 als verantwortl. Red. die \u201eWiener Zeitung\u201c, die in der Zeit seiner T\u00e4tigkeit um die zus\u00e4tzl. Organe \u201eAbendblatt\u201c (1852\u201357), \u201e\u00d6sterreichische Bl\u00e4tter f\u00fcr Literatur und Kunst\u201c (1852\u201357) und die \u201e\u00d6sterreichische Wochenschrift f\u00fcr Wissenschaft, Kunst und \u00f6ffentliches Leben\u201c (1863\u201365) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausl\u00e4nd. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verl\u00e4\u00dflichkeit gesch\u00e4tzt war. Zuletzt lebte er v\u00f6llig erblindet und zur\u00fcckgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anf\u00e4ngl. Bankbeamter, trat ebenfalls als Journalist hervor, sp\u00e4ter als Autor einiger Lustspiele und Schw\u00e4nke (\u201eDer Heiratsvermittler\u201c, 1886, \u201eSch\u00f6nheitspreis und Liebespreis\u201c, 1893, usw.).\n", "source": 184}}, {"model": "metainfo.text", "pk": 47649, "fields": {"kind": 131, "text": "Schweitzer\u00a0Leopold Albrecht, Journalist und Schriftsteller. Geb. Nei\u00dfe, Preu\u00dfen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (N\u00d6), 9. 7. 1896.", "source": 184}}, {"model": "metainfo.text", "pk": 47650, "fields": {"kind": 130, "text": "Nach absolv. Schulbesuch arbeitete S. zun\u00e4chst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu \u00fcbernehmen. Polit. engagiert, geh\u00f6rte er 1882\u201384 sowie 1894\u201397 dem Badener Gmd.Rat an, wo er sich v. a. f\u00fcr die Anliegen der Hauerschaft einsetzte. Bes. Verdienste um seine Heimatstadt erwarb sich S., der nach dem Tod seiner ersten Frau (1888) im selben Jahr Maria, geb. Gleichweit, ehel., bei der Bek\u00e4mpfung der Reblaus, die 1882 auch in Baden zu w\u00fcten begann. Durch das Aufpfropfen der Edelreben auf gegen den Sch\u00e4dling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weing\u00e4rten mit gro\u00dfem Erfolg angewandt hatte, konnten die Badener Weinkulturen in relativ kurzer Zeit gerettet werden. Auf Stud.Reisen nach Ungarn 1889 und 1896, in die Unterstmk. 1891 und 1898 sowie nach Kroatien 1896 verbesserte S. seine Kenntnisse, die er in Baden erfolgreich u. a. f\u00fcr seine Rebschule, in der er die angef\u00fchrte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner gro\u00dfen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom n\u00f6. Landesausschu\u00df als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Sch\u00e4dling zu unterweisen. F\u00fcr seine erfolgreiche T\u00e4tigkeit erhielt er von der Stadt Baden sowie vom Ackerbaumin. Anerkennungspreise. S., allen Neuerungen auf dem Gebiet des Weinbaus stets aufgeschlossen, entwickelte 1895 den ersten Weingartenpflug und soll 1897 die bis dahin unbekannte Neuburger Rebe eingef\u00fchrt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gr\u00fcndete er 1887 den Badener Rinderzuchtver. und besa\u00df eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte \u2013 er war Mitgl. bei mehreren Ver. \u2013, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinsch\u00e4tzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n", "source": 180}}, {"model": "metainfo.text", "pk": 47651, "fields": {"kind": 131, "text": "Schwabl\u00a0Franz, Landwirt und Weinhauer. Geb. Baden (N\u00d6), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers.", "source": 180}}, {"model": "metainfo.text", "pk": 47660, "fields": {"kind": 130, "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871\u201377 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877\u201382 Park Orchester, Amsterdam, 1882\u201383 Parlow Orchester, Hamburg, 1883\u201384 kgl. Staatskapelle Dresden. 1884\u201391 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegr\u00fcndete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mu\u00dfte er diese Stelle jedoch Oktober 1902 krankheitshalber aufgeben und zog nach Kreuznach, wo er bereits vorher Sommerkurse geleitet hatte, und widmete sich der Komposition. 1903\u201304 spielte S. im Pittsburgh Symphony Orchestra, 1904\u201309 im Philadelphia Orchestra, 1910 im Orchester der New Yorker Metropolitan Opera. S., sowohl als Orchesterspieler wie als Solist ein Virtuose von hohem Rang, gab ein noch heute verwendetes Hilfswerk f\u00fcr die Ausf\u00fchrung von schwierigen Harfenstellen in den Opern Richard Wagners heraus und wirkte auch 1903 und 1906 bei den Wagnerauff. an der Covent Garden Opera London mit. Von seinen durchwegs der Harfe gewidmeten Salonst\u00fccken ist die Mazurka, op. 12, beliebt geblieben. 1890 Kammervirtuose des Hg. Ernst von Sachsen-Altenburg. Sein Bruder Heinrich S. (geb. Wien, 25. 11. 1867; gest. Boston, Mass., USA, 17. 4. 1913) stud. 1878\u201384 ebenfalls bei Anton Zamara am Wr. Konservatorium der Ges. der Musikfreunde, trat nach einer Saison beim Parlow Orchester, Hamburg, 1885 als 1. Harfenist ins Boston Symphony Orchestra ein und lehrte am Bostoner New England Conservatory. Er trat auch als Solist bei den Musikfestivals in Worcester (Mass.) sowie in Paris und London auf. S.s Sohn Joseph E. S. (geb. Leipzig, Sachsen/Deutschland, 19. 5. 1886; gest. Los Angeles, Ca., USA, 9. 12. 1938) stud. bei seinem Vater, 1900\u201301 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904\u201305 bzw. 1908\u201309 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911\u201313 Harfenist einer Opernges. in Boston, lehrte er 1915\u201320 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n", "source": 179}}, {"model": "metainfo.text", "pk": 47661, "fields": {"kind": 131, "text": "Schu\u00ebcker (eigentl. Schu\u00f6cker)\u00a0Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preu\u00dfen (Bad Kreuznach, Deutschland), 9. 11. 1911.", "source": 179}}, {"model": "metainfo.text", "pk": 47662, "fields": {"kind": 130, "text": "Sohn von Norbert Michael, Bruder von Norbert, Neffe von Anton S. (alle s. d.). Bedingt durch die zahlreichen Reisen seines Vaters, lernte S. bereits in fr\u00fcher Jugend zahlreiche St\u00e4dte Europas kennen. Seine ersten k\u00fcnstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der \u00dcbersiedlung seines Vaters nach Paris besuchte S. 1854/55 die Modellierklasse der Pariser Akad. Aber schon kurz darauf verlegte der Vater seinen Wohnsitz nach Frankfurt a. Main, wo S. 1855/56 vorerst Privatunterricht in Bildhauerei von dem mit seinem Vater befreundeten Eduard Schmidt von der Launitz erhielt. 1856\u201358 stud. er am St\u00e4del\u2019schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858\u201361 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 \u00fcbersiedelte er nach Wien, 1863\u201365 hielt er sich, finanziert durch ein Rom-Stipendium, in Italien auf, 1866 in Paris. Ab 1867 wieder in Wien, arbeitete S. als Mitarbeiter bei den Bildhauern Victor Tilgner und Rudolf Weyr mit, 1894\u20131908 war er Ass. an der Akad. der bildenden K\u00fcnste in Wien, wo er zeitweise die Klasse f\u00fcr Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-B\u00fcste f\u00fcr das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisb\u00fcste des Nikolaus Joseph v. Jacquin f\u00fcr die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) f\u00fcr den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschm\u00fcckung des Naturhist. Mus. in Wien mit.\n", "source": 178}}, {"model": "metainfo.text", "pk": 47663, "fields": {"kind": 131, "text": "Schr\u00f6dl\u00a0Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908.", "source": 178}}, {"model": "metainfo.text", "pk": 47672, "fields": {"kind": 130, "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olm\u00fctz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Br\u00fcnn (Brno) Maschinenbau, 1898\u20131903 an der Bauing.Schule (1905 Staatspr\u00fcfung). Zun\u00e4chst an der Br\u00fcnner Hochschule f\u00fcr einige Monate als Ass. t\u00e4tig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen gr\u00f6\u00dferen Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919\u201322), betraut. Als Baurat \u00fcbernahm er 1920 die selbst\u00e4ndige Leitung der Bauabt., die f\u00fcr die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. ma\u00dfgebl. an den von Peter Behrens und Alexander Popp geplanten Neubauten bei der Tabakfabrik in Linz (1929ff.) sowie an der Errichtung zahlreicher, in der Nachkriegszeit geschaffener Wohnhausanlagen beteiligt. Daneben publ. S.\u00fcber die Baut\u00e4tigkeit der \u00d6sterr. Tabakregie. 1930 HR, 1947 i. R.\n", "source": 177}}, {"model": "metainfo.text", "pk": 47673, "fields": {"kind": 131, "text": "Schreyer\u00a0Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravic\u00ed, M\u00e4hren (Bridlicn\u00e1, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950.", "source": 177}}, {"model": "metainfo.text", "pk": 47676, "fields": {"kind": 130, "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840\u201341 dort Med., ab 1841 an der Univ. Wien, wo er 1845 zum Dr. med. prom. wurde. Nach weiterer chirurg. Ausbildung wirkte er am Provinzialstrafhaus in Wien, ab 1856 am Filialspital des Allg. Krankenhauses in Wien II., zuletzt als dessen prov. Vorstand, ab 1858 als Primarius der IV. med. Abt. am Allg. Krankenhaus. S. machte sich um die Verwendung der 1853 in Schottland entwickelten Subkutanspritze zur Einf\u00fchrung von Medikamenten bei der Schmerzbehandlung (Injektion) verdient und stellte diese, erst in den 70er Jahren allg. angewendete Methode sowie seine Erfahrungen damit schon 1861 vor. Auch begann er sich fr\u00fch mit dem Einflu\u00df der Haft auf die Entstehung von Geistesst\u00f6rungen bei Str\u00e4flingen zu besch\u00e4ftigen. An seiner Klinik betrieb der ab 1878 dort t\u00e4tige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882\u201385 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n", "source": 175}}, {"model": "metainfo.text", "pk": 47677, "fields": {"kind": 131, "text": "Scholz\u00a0Franz, Mediziner. Geb. Moldau, B\u00f6hmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902.", "source": 175}}, {"model": "metainfo.text", "pk": 47678, "fields": {"kind": 130, "text": "Sohn des Kaspar Schram(m)el (geb. H\u00f6rmanns b. Litschau/Litschau, N\u00d6, 6. 1. 1811; gest. Langenzersdorf, N\u00d6, 20. 12. 1895) und (Eheschlie\u00dfung 1853) der Volkss\u00e4ngerin Aloisia Ernst (1829\u20131881), Bruder des Joseph S. (geb.Ottakring, N\u00d6/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833\u20131905), der, 1866 als Invalide aus dem Milit\u00e4rdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon fr\u00fch in Dorfkapellen als Klarinettist t\u00e4tig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkst\u00fcml.-musikal. Wirtshausproduktionen. S. wirkte ebenso wie sein Bruder Joseph schon als Kind bei den Auftritten des Vaters als Geiger mit (1861 gilt als Beginn ihrer \u00f6ff. T\u00e4tigkeit), doch erhielten beide \u2013 ein f\u00fcr ihre Verh\u00e4ltnisse ungew\u00f6hnl. Schritt \u2013 auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862\u201363 Violinsch\u00fcler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschlu\u00df (aus ungekl\u00e4rten Ursachen) 1866 Karl Hei\u00dflers, Joseph 1865/66 ebenfalls Sch\u00fcler Hellmesbergers. Nach dem Milit\u00e4rdienst (1866\u201372, 1870 Korporal) spielte S. in einigen \u201eNationalquartetten\u201c und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in gro\u00dfen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gr\u00fcndete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient \u2013 1869\u201371 \u2013 bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett (\u201eNu\u00dfdorfer Terzett\u201c), in dem Joseph die 1., er selbst die 2. Geige und zun\u00e4chst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Br\u00fcder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. \u201epicks\u00fc\u00dfes H\u00f6lzl\u201c) Georg D\u00e4nzer (geb.Hernals, N\u00d6/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett \u201eGebr. Schrammel, D\u00e4nzer und Strohmayer\u201c, das in dieser Besetzung bis zum Ausscheiden D\u00e4nzers Ende 1891 \u2013 Strohmayer verlie\u00df das Quartett Ende 1892 \u2013 verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schlie\u00dfl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die urspr\u00fcngl. Quartettbesetzung zur\u00fcckgegriffen. Im Wr. Musikleben spielten die \u201eSchrammeln\u201c eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu h\u00f6ren, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit \u201eNaturs\u00e4ngern\u201c, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkss\u00e4nger lie\u00dfen diese Vortr\u00e4ge zeitweise verbieten, weswegen die Br\u00fcder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. \u00c4u\u00dferst erfolgreiche Gastspielreisen f\u00fchrten das Quartett 1888 und 1889 durch Deutschland, der letzte H\u00f6hepunkt waren die t\u00e4gl. Produktionen anl\u00e4\u00dfl. der Internationalen Ausst. f\u00fcr Musik- und Theaterwesen in Wien, 1892, doch mu\u00dfte sich S. wegen seiner zunehmenden Herzkrankheit dann zur\u00fcckziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterf\u00fchrte, v\u00f6llig mittellos. Als Komponist schlo\u00df S. an seine Vorl\u00e4ufer an (so gab er 1888 3 He. \u201eAlte oesterreichische Volksmelodien \u2026\u201c heraus), seine (zu etwa 1/3 gedruckten) \u00fcber 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und M\u00e4rsche (u. a. \u201eWien bleibt Wien\u201c, 1886), Josephs bekannteste Komposition ist das Lied \u201eVindobona, du herrliche Stadt\u201c. Die \u201eSchrammeln\u201c und \u201eSchrammelmusik\u201c \u201eblieben als Begriffe f\u00fcr ein volkst\u00fcml. Ensemble und ein entsprechendes Musizieren erhalten\u201c (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorl\u00e4ufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. F\u00e4higkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch h\u00f6chste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strau\u00df.\n", "source": 176}}, {"model": "metainfo.text", "pk": 47679, "fields": {"kind": 131, "text": "Schrammel\u00a0Johann, Musiker und Komponist. Geb. Neulerchenfeld, N\u00d6 (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893.", "source": 176}}, {"model": "metainfo.text", "pk": 47684, "fields": {"kind": 130, "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine fr\u00fche Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826\u201329 an der Univ. Graz Jus, 1829 Dr. jur., und trat 1834 bei der Hof- und Kammerprokuratur als Konzeptspraktikant ein. 1836 wurde er zur Kammerprokuratur nach Lemberg (L\u2019viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) t\u00e4tig war. 1847 erfolgte seine Versetzung als Landrat zum Gef\u00e4llen-Bez.Gericht bzw. Landrecht in Tarn\u00f3w. W\u00e4hrend eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. f\u00fcr den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschu\u00df mit, f\u00fcr den er auch als Referent fungierte. Hier setzte er sich u. a. bes. f\u00fcr die Unabh\u00e4ngigkeit K\u00e4rntens ein. Weiters war S. Mitgl. der Redaktionskomm. f\u00fcr die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem \u201eZentrumklub\u201c bei und geh\u00f6rte im Dezember dieses Jahres der Reichstagsdeputation nach Olm\u00fctz (Olomouc) und Prag an. Nach der Aufl\u00f6sung des Reichstags 1849 zog sich S. aus der Politik zur\u00fcck und wurde dem n\u00f6. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Pr\u00e4s. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenb\u00fcrgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepr\u00e4s. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepr\u00e4s. des Wr. Landesgerichts ernannt. Wegen seiner geschw\u00e4chten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n", "source": 174}}, {"model": "metainfo.text", "pk": 47685, "fields": {"kind": 131, "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884.", "source": 174}}, {"model": "metainfo.text", "pk": 47688, "fields": {"kind": 130, "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbi\u00df, Vater von B\u00e9la Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. B\u00e9la Frh. v. S.). Wuchs nach dem fr\u00fchen Tod seines Vaters im Hause von Karl Gf. Gatterburg, des zweiten Gatten seiner Mutter, auf. Nach Privatunterricht trat er 1820 beim 4. Chevauxlegersrgt. in die k. Armee ein, wurde 1822 Unterlt., 1831 Oblt., 1835 Rtm. 2., 1840 1. Kl., 1846 Mjr., 1848 Obstlt., 1849 Obst., 1851 GM, 1859 FML, 1863 pensioniert, 1865 jedoch als Gendarmeriegen.Insp. reaktiviert und 1868 als Gen. der Kav. ad honores endg\u00fcltig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich w\u00e4hrend des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab \u00fcberstellt und bew\u00e4hrte sich in der Folge an verschiedenen Standorten als Brigadier. Daneben war er 1856 dem Kg. v. Griechenland, 1858 Erzhg. Karl Ferdinand bei dessen Inspektionstour zu den Landeskontingenten des Dt. Bundes zugewiesen. Im italien. Feldzug von 1859 tat er sich als Division\u00e4r beim 3. Inf.Armeekorps durch umsichtige F\u00fchrung sowie pers\u00f6nl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode f\u00fchrte er dann die Administrationsgesch\u00e4fte des Landesgendarmeriekmdo. in Lemberg (L\u2019viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de V\u00e1sonyke\u00f6 (geb. Wien, 30. 10. 1805; gest. Verona, Venetien/Italien, 9. 1. 1851), 1855 Theresia Franziska Juliana Si(e)gel (geb. Wien, 11. 3. 1827; gest. Wien, 1. 5. 1857) und 1859 Anna Scheiger (geb. Wien, 7. 7. 1820; gest. G\u00f6rz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausl\u00e4nd. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes f\u00fcr die von ihm angeregte und nach dem Feldzug von 1848/49 durchgef\u00fchrte Reorganisation der Husarenrgt. verdient.\n", "source": 172}}, {"model": "metainfo.text", "pk": 47689, "fields": {"kind": 131, "text": "Sch\u00f6nberger (Schoenberger) (Carl Friedrich)\u00a0Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorder\u00f6sterr. (Deutschland), 30. 6. 1804; gest. G\u00f6rz, G\u00f6rz-Gradisca (Gorizia, Italien), 19. 12. 1880.", "source": 172}}, {"model": "metainfo.text", "pk": 47690, "fields": {"kind": 130, "text": "Stud. 1872\u201380 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), sp\u00e4ter auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Ru\u00dfland, Deutschland, \u00d6sterr. und Belgien. 1880\u201385 lehrte er in Wien, 1886 reiste er nach Schweden und anschlie\u00dfend nach London, wo er im J\u00e4nner 1887 erstmals als Solist auftrat und sich in der Folge niederlie\u00df. S. geh\u00f6rte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, sp\u00e4ter unternahm er Konzertreisen in Europa und England, auch als Dirigent einer reisenden Opernges. Er war mit der Tochter des engl. Gen. Sir Henry Tuson verheiratet.\n", "source": 173}}, {"model": "metainfo.text", "pk": 47691, "fields": {"kind": 131, "text": "Sch\u00f6nberger\u00a0Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Gro\u00dfbritannien), 9. 3. 1930.", "source": 173}}, {"model": "metainfo.text", "pk": 47694, "fields": {"kind": 130, "text": "Sohn des Vorigen, Bruder von Arthur S., Schwager von M. Hajek (beide s. d.); mos. Stud. nach Absolv. des Akadem. Gymn. in Wien ab 1882 an der dortigen Univ. Med., u. a. bei E. Albert, Billroth, E. W. v. Br\u00fccke sowie Nothnagel (alle s. d.), und wurde 1888 zum Dr. med. prom. Seine weitere Ausbildung erhielt er 1887/88 als Aspirant an der Klinik Nothnagel, ab 1889 bei Albert, wo er 1891\u201395 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien f\u00fcr Chirurgie und wurde 1907 Tit. ao., 1927 unbesoldeter ao. Prof. 1895/96 stand er der Chirurg. Abt. an der Wr. Allg. Poliklinik vor, kam 1896 als Primarius f\u00fcr Chirurgie an das K.-Franz-Josef-Spital, 1902 an das Wiedner Krankenhaus und trat 1934 i. R. S. gestaltete die von ihm geleiteten Abt. gem\u00e4\u00df den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und ver\u00f6ff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentz\u00fcndung bzw. -katarrh, v. a. aber nat\u00fcrl. chirurg. Problemen. Als einer der ersten besch\u00e4ftigte er sich mit der operativen Behandlung der akuten Blinddarmentz\u00fcndung, propagierte umfangreiche Resektionen bei Magen- und Zw\u00f6lffingerdarmgeschw\u00fcren, erarbeitete Vorbeugungsma\u00dfnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und besch\u00e4ftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besa\u00df spr\u00fchenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch \u00f6ff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des \u00d6sterr. Verdienstordens. Durch sein Bem\u00fchen um die Diagnostik der Blinddarmentz\u00fcndung und sein entschiedenes Eintreten in Theorie und Praxis f\u00fcr umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen pers\u00f6nl. Verh\u00e4ltnis zu seinem Bruder Arthur, das in zwei von dessen erz\u00e4hler. Werken (\u201eDer blinde Geronimo und sein Bruder\u201c, \u201eFlucht in die Finsternis\u201c) Niederschlag fand.\n", "source": 169}}, {"model": "metainfo.text", "pk": 47695, "fields": {"kind": 131, "text": "Schnitzler\u00a0Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939.", "source": 169}}, {"model": "metainfo.text", "pk": 47696, "fields": {"kind": 130, "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874\u201378 an der Univ. Wien Jus, 1881 Dr. jur. 1879 trat S. beim Landesgericht Wien in den Justizdienst, wurde 1885 Bez.Gerichtsadjunkt in Wolkersdorf, 1887 in Wien-Hietzing, 1891 Gerichtsadjunkt beim Wr. Landesgericht. 1896 wechselte S. zur Staatsanwaltschaft (Substitut in Korneuburg) und war ab 1897 Staatsanwalt in Steyr, 1902 in Krems, bis er 1903 ins Justizmin. berufen wurde, wo er, 1904 Sektionsrat, 1907 Titel und Charakter eines Min.Rates, 1909 Min.Rat, 1912 zum Sektionschef avancierte. S. war an den legislativen Arbeiten des Justizmin., insbes. auf den Gebieten der Strafrechts- und der Strafproze\u00dfreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees f\u00fcr die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wof\u00fcr er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verst\u00e4ndnis f\u00fcr die Bed\u00fcrfnisse der Milit\u00e4rverwaltung \u20131877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. \u2013 brachte es mit sich, da\u00df sein Rat von den milit\u00e4r. Stellen oft in Anspruch genommen wurde; f\u00fcr seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Milit\u00e4rstrafverfahrens (Milit\u00e4rstrafproze\u00dfordnung von 1912) erhielt er 1912 das Komturkreuz des Franz Joseph-Ordens mit dem Stern. Auch die zahlreichen Kriegsstrafgesetze sind unter seiner Mitwirkung zustande gekommen. In den Aussch\u00fcssen beider H\u00e4user des Reichsrates war er sehr oft als Vertreter des Justizmin. t\u00e4tig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatspr\u00fcfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n", "source": 170}}, {"model": "metainfo.text", "pk": 47697, "fields": {"kind": 131, "text": "Schober\u00a0Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917.", "source": 170}}, {"model": "metainfo.text", "pk": 47700, "fields": {"kind": 130, "text": "Sohn von (Heinrich) Eduard v. S. (s. u.), Neffe von (Wilhelm) Alexander, Cousin von Philipp Wilhelm d. J. und Paul Eduard v. S. (alle s. d.), Schwiegervater von Armand Dumreicher v. \u00d6sterreicher (s. d.); evang. HB. S., der als Mitsch\u00f6pfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Gro\u00dfhandlungshaus \u201eAlexander Schoeller\u201c (sp\u00e4ter \u201eSchoeller & Co.\u201c) nach Wien geholt, ab 1869 \u00f6ff. Gesellschafter. Er konnte seinen Onkel bei der Weiterf\u00fchrung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und M\u00fchlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von \u201eSchoeller & Co.\u201c nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) \u00fcberging, durch die Erzeugung von Blechen und Dr\u00e4hten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene H\u00fclsenfabrik zur Produktion von Kriegsmaterial begr\u00fcndet. Im Ternitzer Werk, der \u201eTernitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.\u201c, f\u00fchrte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gr\u00fcnden nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgel\u00f6st. Wegen eines schweren Nervenleidens mu\u00dfte er die Firmenleitung zuletzt fast g\u00e4nzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard \u00fcberlassen. S. bekleidete auch eine gro\u00dfe Zahl von Verwaltungsratsstellen bei gro\u00dfen \u00f6sterr. Ind.-, Banken- und Eisenbahnunternehmungen, wie etwa bei der Bodencreditanstalt in Wien und der K. Ferdinands-Nordbahn. Am Gmd.Leben der evang. Gmd. HB in Wien aktiv beteiligt, war S. 1865\u201389 Gmd.Vertreter, 1867\u201389 auch Presbyter und betreute \u2013 wie auch schon sein Onkel \u2013 deren Verm\u00f6gensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. D\u00fcren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, N\u00d6, 18. 1. 1879), war wie etl. andere Angeh\u00f6rige der Familie S. in der Zuckerind. t\u00e4tig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterst\u00fctzung seines Bruders Alexander pachtete er 1853 die Herrschaft Edel\u00e9ny bei Miskolcz und richtete die darauf befindl. Zuckerr\u00fcbenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu k\u00e4mpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n", "source": 171}}, {"model": "metainfo.text", "pk": 47701, "fields": {"kind": 131, "text": "Schoeller\u00a0Gustav Adolph von, Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier. Geb. D\u00fcren, Preu\u00dfen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889.", "source": 171}}, {"model": "metainfo.text", "pk": 47706, "fields": {"kind": 130, "text": "Sohn eines Sattlermeisters und Gastwirts. S., der bei seinem mus. und Zeichner. begabten Vater ersten Zeichenunterricht erhielt, sollte die Marinemusikschule in Pola (Pula) besuchen, wurde aber wegen einer Augenschw\u00e4che zur\u00fcckgestellt. Daraufhin ging er nach Wien und stud. hier 1880\u201382 an der Akad. der bildenden K\u00fcnste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender K\u00fcnstler, so z. B. f\u00fcr die Z. \u201e\u00dcber Land und Meer\u201c. Als der k\u00fcnstler. Erfolg etwas nachlie\u00df, kehrte S. nach Mies zur\u00fcck, \u00fcbersiedelte aber 1895 wieder nach M\u00fcnchen, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als \u201eSalome\u201c. Sein \u0152uvre umfa\u00dft neben Portr\u00e4ts von Schauspielerinnen und span. T\u00e4nzerinnen auch Bildnisse von Mitgl. des bayer. K\u00f6nigshauses. S., der Mitgl. der M\u00fcnchner K\u00fcnstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n", "source": 168}}, {"model": "metainfo.text", "pk": 47707, "fields": {"kind": 131, "text": "Schmutzler\u00a0Leopold, Maler. Geb. Mies, B\u00f6hmen (Str\u00edbro, Tschechien), 29. 3. 1864; gest. M\u00fcnchen, Bayern (Deutschland), 20. 6. 1940.", "source": 168}}, {"model": "metainfo.text", "pk": 47712, "fields": {"kind": 130, "text": "Sohn des P\u00e4chterehepaars Wolf und Sara S., mos.; nach \u00dcbersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromer\u00ed\u017e) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922\u201323 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterst\u00fctzt von seinem Onkel und sp\u00e4terem Manager, Leo Engel, 1925\u201326 an der Hochschule f\u00fcr Musik in Berlin (Sch\u00fcler von Hermann Weissenborn) fortsetzte. Nach dem Milit\u00e4rdienst in Rum\u00e4nien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Deb\u00fct als Rundfunks\u00e4nger am 29. 3. 1929 (Vasco da Gama in Meyerbeers \u201eDie Afrikanerin\u201c), weitere Rundfunkproduktionen (Hans in Smetanas \u201eDie verkaufte Braut\u201c, Lionel in Flotows \u201eMartha\u201c), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von au\u00dferordentlicher Popularit\u00e4t \u2013 seiner geringen K\u00f6rpergr\u00f6\u00dfe wegen allerdings nur innerhalb der zu dieser Zeit aufbl\u00fchenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in \u201eDer Liebesexpress\u201c (Urauff. Berlin 1931) folgte der unerh\u00f6rte Siegeszug von \u201eEin Lied geht um die Welt\u201c (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Macht\u00fcbernahme in Deutschland wurde S., schon vorher diffamiert und angefeindet, mit Auftrittsverbot belegt und Wien immer mehr zu seinem Lebenszentrum, ab 1935 sein Wohnort. Hier wurden die n\u00e4chsten Filme \u201eWenn du jung bist, geh\u00f6rt dir die Welt\u201c, 1933, \u201eEin Stern f\u00e4llt vom Himmel\u201c, 1935, auch engl. Version, und \u201eHeut ist der sch\u00f6nste Tag in meinem Leben\u201c, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Pal\u00e4stina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937\u20131938 (mit Auftritten u. a. in der New Yorker Carnegie Hall) hervorzuheben. 1938 wieder in Wien, gab er im Herbst desselben Jahres Konzerte in Belgien und lie\u00df sich 1939 in Br\u00fcssel nieder, wo er als Rudolf in Puccinis \u201eLa Boh\u00e8me\u201c einen seiner seltenen B\u00fchnenauftritte hatte. Infolge des Kriegsverlaufs mu\u00dfte S. 1940 aus Belgien fl\u00fcchten, hielt sich in S\u00fcdfrankreich auf und gelangte 1942 unter gro\u00dfen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf v\u00f6llig mittellos. S. wurde als S\u00e4ngertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine \u2013 allerdings kleine und nicht restlos durchgebildete \u2013 lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und h\u00f6chsten Lage und ein f\u00fcr S. charakterist. \u201ewehm\u00fctiges\u201c Timbre aus.\n", "source": 167}}, {"model": "metainfo.text", "pk": 47713, "fields": {"kind": 131, "text": "Schmidt,\u00a0\u2014 Joseph S\u00e4nger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rum\u00e4nien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Z\u00fcrich (Schweiz), 16. 11. 1942.", "source": 167}}, {"model": "metainfo.text", "pk": 47714, "fields": {"kind": 130, "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Kne\u017ena (Rychnov nad Kne\u017enou) und Olm\u00fctz (Olomouc) begann S. eine kaufm\u00e4nn. Lehre in Br\u00fcnn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Gro\u00dfhandel bet\u00e4tigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gew\u00e4hlt worden war, \u00fcbernahm S. die Leitung des v\u00e4terlichen Gesch\u00e4fts in Schildberg und sp\u00e4ter gem. mit seinem \u00e4lteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papierm\u00fchle (sie galt als die \u00e4lteste der \u00d6sterr.-ung. Monarchie) und Bleiche in Gro\u00dfullersdorf und betrieb dort nach dem Ableben seines Bruders (1871) eine Papier- und Leinenerzeugung im eigenen Namen, jedoch unter der Fa. Ant. J. Schmidt u. S\u00f6hne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere f\u00fchrten zu einer neuen Bl\u00fcte dieser Papierm\u00fchle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Gro\u00dfullersdorf, eine \u2013 1917 aufgel\u00f6ste \u2013 Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige f\u00fcrstlich liechtensteinsche Mahlm\u00fchle in Olleschau (Ol\u0161any) und errichtete dort eine Fabrik f\u00fcr Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG \u00fcbernommen, die ab 1870 auch das sp\u00e4ter verbreitete Zigarettenpapier Marke \u201eOlleschau\u201c herstellte, wobei die Lieferschwierigkeiten der franz\u00f6s. Konkurrenz in den Krisenjahren 1870/71 gen\u00fctzt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olm\u00fctzer Handels- und Gewerbekammer in den m\u00e4hr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Gro\u00dfullersdorf, 1879\u201391 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegr\u00fcndeten Te\u00dfthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, sp\u00e4ter auch anderen Fragen der Landwirtschaft widmete. S. n\u00fctzte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die M\u00f6glichkeiten des erh\u00f6hten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde f\u00fcr seine wirtschaftliche und polit. T\u00e4tigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon w\u00e4hrend seiner Lebenszeit wurde die Unternehmung von seinen S\u00f6hnen Anton S. (geb. Gro\u00dfullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Gro\u00dfullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Gro\u00dfullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgef\u00fchrt. W\u00e4hrend Anton S. bis 1917 die Wr. Gesch\u00e4ftsstelle leitete, danach mit Richard die Ullersdorfer Papierm\u00fchle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einf\u00fchrte. Alle drei Br\u00fcder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizit\u00e4tswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung t\u00e4tig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908\u20131938 Kammerrat der Handels- und Gewerbekammer Olm\u00fctz.\n", "source": 166}}, {"model": "metainfo.text", "pk": 47715, "fields": {"kind": 131, "text": "\u2014 Anton Schmidt,\u00a0Fabrikant und Politiker. Geb. Schildberg, M\u00e4hren (\u0160t\u00edty, Tschechoslowakei), 9. 12. 1826; gest. Gro\u00dfullersdorf, M\u00e4hren (Velk\u00e9 Losiny, Tschechoslowakei), 28. 3. 1892.", "source": 166}}, {"model": "metainfo.text", "pk": 47718, "fields": {"kind": 130, "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete f\u00fcr Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Franz\u00f6s. Krieg teil, wurde danach Red. des \u201eWestph\u00e4lischen Grenzboten\u201c in M\u00fcnster, dann Leiter des Feuilletons und \u201eReimchronist\u201c der \u201eDeutschen Zeitung\u201c in Paris und war schlie\u00dflich ab 1880 Berichterstatter der \u201eBerliner Post\u201c; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen sp\u00e4teren Ver\u00f6ff. zugute kamen. In der Folge \u00fcbersiedelte S. nach Wien, wo er 1886 in die Red. des \u201eNeuen Wiener Tagblatts\u201c eintrat, der er bis zu seinem Tod angeh\u00f6rte. Daneben arbeitete er an mehreren Ztg. (u. a. der \u201eIllustrirten Zeitung\u201c, Leipzig) und Z. (u. a. der \u201eGartenlaube\u201c) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. \u201eMuth\u201c, 1899), Erz., M\u00e4rchen, den historisierenden Wr. Roman aus dem 15. Jh. \u201eB\u00fcrger und Studenten\u201c sowie dramat. Werke.\n", "source": 164}}, {"model": "metainfo.text", "pk": 47719, "fields": {"kind": 131, "text": "Schmal\u00a0Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preu\u00dfen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900.", "source": 164}}, {"model": "metainfo.text", "pk": 47724, "fields": {"kind": 130, "text": "Sohn eines in Frankreich t\u00e4tigen Tschechen und einer Franz\u00f6sin (geb. Beauchez), lebte er ab 1860 in B\u00f6hmen und besuchte das Akadem. Gymn. in Prag. Er wurde als aktiver Teilnehmer an Demonstrationen gegen den Justizminister Herbst (s. d.) verhaftet und wegen Hochverrats angeklagt, floh jedoch vor dem Proze\u00df nach Paris, dann 1869 nach Berlin, wo er die \u201eCorrespondance Tch\u00e8que\u201c red. W\u00e4hrend des dt.-franz\u00f6s. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zur\u00fcck und fand seinen Lebensunterhalt als Lehrer der franz\u00f6s. Sprache in Leitomischl (Litomy\u0161l), von 1873 an in Prag. Polit. geh\u00f6rte er dem radikalen Fl\u00fcgel der demokrat. Jungtschechen an, k\u00e4mpfte f\u00fcr die Einf\u00fchrung des allg. Wahlrechts und trat auch in Prager Arbeiterbll. mit Artikeln hervor. V. a. widmete er sich der Anbahnung der freundschaftl. Beziehungen zu Frankreich, f\u00fchrte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag f\u00fcr franz\u00f6s. Ztg. 1893\u201398 war er Korrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris, dann st\u00e4ndiger Mitarbeiter von \u201eLe Temps\u201c in Prag, ab 1903 Red. der erneuerten \u201eCorrespondance Tch\u00e8que\u201c. Daneben war er als \u00dcbers. franz\u00f6s. Romane und Schauspiele t\u00e4tig und verf. eine Reihe von verbreiteten Sprachlehrb\u00fcchern und Konversationsbehelfen.\n", "source": 165}}, {"model": "metainfo.text", "pk": 47725, "fields": {"kind": 131, "text": "\u2014 -Beauchez\u00a0Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, B\u00f6hmen (Praha, Tschechien), 14. 12. 1912.", "source": 165}}, {"model": "metainfo.text", "pk": 47726, "fields": {"kind": 130, "text": "Bauernsohn; stud. kath. Theol. an der Univ. Prag, 1860 Priesterweihe, 1865 Dr. theol. Ab 1862 Adjunkt an der theolog. Fak. in Prag, lernte er auf einer Stud.Reise durch Deutschland die damals namhaftesten Theologen (Hergenr\u00f6ther, Hettinger, D\u00f6llinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. f\u00fcr Kirchengeschichte an der Univ. Prag und f\u00fchrte 1878 das Fach Patrol. in den Lehrplan ein. S. war Historiograph der Fak., mehrmals Dekan und Rektor. 1882 hatte er als letzter Rektor der ungeteilten Univ. die Trennungsverhh. zu leiten. Mitgl. diverser gel. Ges., Landtagsabg. der Fraktion der verfassungstreuen Gro\u00dfgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte B\u00f6hmens. In seiner Monographie \u00fcber den Hl. Wolfgang bem\u00fchte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n", "source": 163}}, {"model": "metainfo.text", "pk": 47727, "fields": {"kind": 131, "text": "Schindler\u00a0Josef, Kirchenhistoriker. * Lachowitz (Lachovice, B\u00f6hmen), 23. 6. 1835; \u2020 Prag, 22. 2. 1911.", "source": 163}}, {"model": "metainfo.text", "pk": 47728, "fields": {"kind": 130, "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); w\u00e4hrend der Volksschulzeit S\u00e4nger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verh\u00e4ltnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien besch\u00e4ftigt; daneben stud. er am Konservatorium der Ges. der Musikfreunde Klavier bei Fischhof, Pirkhert (beide s. d.) und Franz Ramesch, Komposition bei Simon Sechter sowie Waldhorn bei Richard Lewy und lernte dort den Dirigenten H. Richter (s. d.) kennen, mit dem er zeitlebens freundschaftlich verbunden war. Ab 1865 war S. 1. Hornist am Hofburgtheater und als Musiklehrer u. a. in der Familie des Justizministers Stremayr und in der Familie Kautsky t\u00e4tig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivit\u00e4ten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Br\u00fcdern zur Arbeiterbewegung; 1868 gr\u00fcndete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das \u201eLied der Arbeit\u201c, das zur Hymne der \u00f6sterr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (h\u00e4ufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, R\u00fcckert), wobei die \u00dcbereinstimmung von textlicher und musikal. Deklamation f\u00fcr ihn sehr wesentlich war. 1872 gr\u00fcndete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste \u00f6sterr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur beh\u00f6rdlichen Einstellung 1878 war S. Red. der \u201e\u00d6sterreichischen Musikerzeitung\u201c, 1878 gr\u00fcndete er den Arbeiter-S\u00e4ngerbund Wien, den ersten \u00f6sterr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880\u201382 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem m\u00e4rchenhaften, allegor. Libretto von Albert Dulk) im sp\u00e4tromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegr\u00fcnder und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-S\u00e4ngerbundes Landstra\u00dfe, 1891 Mitbegr\u00fcnder des Verbandes der Arbeiter-Gesangver. Nieder\u00f6sterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gr\u00fcndete S. die \u201eArbeiters\u00e4nger-Zeitung\u201c, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der \u201eArbeiter-Zeitung\u201c, wobei er bem\u00fcht war, das Kunstverst\u00e4ndnis der Arbeiter zu f\u00f6rdern und ihnen die klass. und zeitgen\u00f6ss. Musik n\u00e4herzubringen. S. sah in der von ihm begr\u00fcndeten Arbeiters\u00e4ngerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung \u00fcberhaupt.\n", "source": 161}}, {"model": "metainfo.text", "pk": 47729, "fields": {"kind": 131, "text": "Scheu\u00a0Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; \u2020 Wien, 12. 10. 1904.", "source": 161}}, {"model": "metainfo.text", "pk": 47730, "fields": {"kind": 130, "text": "S. stud. 1870\u201378 an der Akad. der bildenden K\u00fcnste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885\u201390 als Ass. an der Kunstgewerbeschule in Prag bei Franti\u0161ek \u017den\u00ed\u0161ek, 1890\u20131922 war er dort als Prof. (1894 o. Prof.) f\u00fcr dekorative Malerei t\u00e4tig. 1913 Mitgl. der Tschech. Akad. der Wiss. und K\u00fcnste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, n\u00e4mlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten H\u00e4lfte der 80er Jahre wandte er sich, unter dem Einflu\u00df der westeurop. Malerei und bedingt durch die Konfrontation mit den sozialen Problemen des Alltags, Genrethemen zu, in denen Traurigkeit, Tragik und Resignation vorherrschen. In seinen melanchol. gestimmten Gem\u00e4lden der folgenden Periode verwendete er h\u00e4ufig Motive aus dem Milieu des abendlichen und n\u00e4chtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gef\u00fchlstiefe, die durch Lichteffekte bewirkt wird, aus.\n", "source": 162}}, {"model": "metainfo.text", "pk": 47731, "fields": {"kind": 131, "text": "Schikaneder\u00a0Jakub, Maler. * Prag, 27. 2. 1855; \u2020 Prag, 15. 11. 1924.", "source": 162}}, {"model": "metainfo.text", "pk": 47732, "fields": {"kind": 130, "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861\u20131919), der gem. mit seinem Onkel Sebastian S. (1844\u201389) 1885 die Holzdrahtfabrik S. & Neffe gegr\u00fcndet hatte; stud. Elektrotechnik an der H\u00f6heren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im v\u00e4terlichen Unternehmen, das Z\u00fcndholzhersteller belieferte, aber auch u. a. Jalousiest\u00e4be und Zahnstocher herstellte, und brachte es in kurzer Zeit zu gro\u00dfer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Z\u00fcndholzerzeugung nahm 1928 durch S.s Mitgr\u00fcndung des Luma-Verkaufsb\u00fcros der Z\u00fcndwarenfabriken Solo-AG Sch\u00fcttenhofen und S. & Neffe GmbH in Prag gro\u00dfen Aufschwung, Z\u00fcndh\u00f6lzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, besch\u00e4ftigte bis zu 300 Mitarbeiter. 1892\u20131938 f\u00fchrte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Ann\u00edn). Er stellte das Rohglas in einem Fabrikneubau in Langendorf her, der mit einem modernen Glasschmelzofen ausgestattet war. Das von S. erzeugte Bleikristall war nicht mehr blaustichig, sondern rein wei\u00df, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflu\u00dfte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n", "source": 159}}, {"model": "metainfo.text", "pk": 47733, "fields": {"kind": 131, "text": "Schell\u00a0Karl, Industrieller. * Langendorf (Dlouh\u00e1 Ves, B\u00f6hmen), 19. 12. 1892; \u2020 ebenda, 2. 6. 1945", "source": 159}}, {"model": "metainfo.text", "pk": 47734, "fields": {"kind": 130, "text": "Stud. 1860\u201365 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Br\u00fccke (s. d.), 1869 Priv.Doz. f\u00fcr die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. f\u00fcr Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegr\u00fcndeten Inst. f\u00fcr Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. f\u00fcr Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte gro\u00dfes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach \u00fcbers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Soci\u00e9t\u00e9 scientifique m\u00e9dicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n", "source": 160}}, {"model": "metainfo.text", "pk": 47735, "fields": {"kind": 131, "text": "Schenk\u00a0Samuel Leopold, Mediziner. * \u00dcrm\u00e9ny (Mojm\u00edrovce, Slowakei), 23. 8. 1840; \u2020 Schwanberg (Stmk.), 17. 8. 1902.", "source": 160}}, {"model": "metainfo.text", "pk": 47746, "fields": {"kind": 130, "text": "Sohn eines Finanzsekr. \u2013 Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869\u201372 an der Wr. ABK bei \u00bfKarl Mayer fort. 1872 \u00fcbersiedelte er nach M\u00fcnchen und wurde 1873 an der dortigen ABK Sch\u00fcler von S\u00e1ndor Wagner. In den Folgejahren arbeitete er als Maler in M\u00fcnchen und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878\u201381 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, sp\u00e4ter w\u00e4hlte er Themen aus der Gegend um den Balaton. 1899\u20131902 hielt er sich wieder in M\u00fcnchen auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften z\u00e4hlt, gewann 1897 den Esterh\u00e1zy-Preis, 1899 den Preis des Ung. Ver. f\u00fcr Bildende K\u00fcnste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u.\u00a0a. Luftspiegelung \u00fcber der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Gal\u00e9ria in Budapest.\n\n", "source": 201}}, {"model": "metainfo.text", "pk": 47747, "fields": {"kind": 131, "text": "T\u00f6lgyessy Art\u00far, Maler. Geb. Szegedin (Szeged, H), 1.\u00a05. 1853; gest. Budapest (H), 2.\u00a02. 1920; r\u00f6m.-kath.", "source": 201}}, {"model": "metainfo.text", "pk": 47748, "fields": {"kind": 130, "text": "S\u00fcdtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T.\u00a0u.\u00a0H. (1728\u20131788) und Josepha Gfn. v. T.\u00a0u.\u00a0H. (1741\u20131819), Cousin des F\u00fcrstbischofs von Trient Peter Vigil Gf. v. T.\u00a0u.\u00a0H. (1776\u20131780), verwandt mit F\u00fcrstbischof \u00bfLeopold Leonhard Gf. v. T.\u00a0u.\u00a0H. \u2013 T. stud. in Passau, Salzburg und Rom Theol. und empfing dort als Mitgl. des Germanicums die Priesterweihe. 1790 wurde er Kanoniker von Trient, 1794 von Salzburg, 1797 Tit.bischof von Iasus und Weihbischof von Trient (Konsekration durch Leopold Leonhard Gf. v. T.\u00a0u.\u00a0H.). Als letzter vom Trienter Domkapitel gew\u00e4hlter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T.\u00a0u.\u00a0H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k.\u00a0Investitur nicht mehr erhalten, da er Anfang 1801 vor den franz\u00f6s. Truppen zun\u00e4chst nach G\u00f6rz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich f\u00fcr den Fortbestand seines Bistums einsetzte. Er k\u00e4mpfte erfolgreich gegen die Pl\u00e4ne K. \u00bfFranz\u2019\u00a0II. (I.), der f\u00fcr Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endg\u00fcltige S\u00e4kularisierung des F\u00fcrstbistums, Kl\u00f6ster wurden aufgel\u00f6st, das Hochstift mit seinen 150.000 Einwohnern \u00d6sterr. zugeordnet. Nach dem Frieden von Pre\u00dfburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zur\u00fcckkehren, wo er in Trient eine Stadtwohnung bezog, da seine f\u00fcrstbisch\u00f6fl. Residenz, das Castello del Buonconsiglio, s\u00e4kularisiert worden war. Die staatl. \u00dcbergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bisch\u00f6fe: T. von Trient, Karl Franz Gf. v. Lodron von Brixen (Bressanone) und Karl Rudolph v. Buol-Schauenstein von Chur. Bes. Protest riefen neben den Eingriffen in das religi\u00f6se Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von di\u00f6zesanen Priesterseminaren hervor. Die drei Bisch\u00f6fe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius\u00a0VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs best\u00e4rkt. W\u00e4hrend Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bez\u00fcge gesperrt; Buol-Schauenstein wurde nach Graub\u00fcnden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerst\u00e4ndige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar w\u00e4hlen. Dieser, Franz v. Spaur, erhielt von T. die geheime Best\u00e4tigung. Die bayer. Ma\u00dfnahmen auf kirchl. Gebiet (Ver\u00e4u\u00dferung gr\u00f6\u00dferer Tle. der bisch\u00f6fl. und Kapiteldotation, S\u00e4kularisierung mehrerer Kl\u00f6ster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zur\u00fcckkehren, schwor dem neuen Machthaber 1810 in Monza den Treueeid und nahm auch am Nationalkonzil in Paris 1811 teil. Obwohl Napoleon ebenso schroff in kirchl. Belange eingriff, duldete T. dessen Klosteraufhebungen, die Einf\u00fchrung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entlie\u00df 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut \u00fcbertragen. Als das Bistum 1814 wieder an \u00d6sterr. fiel, folgte eine Zeit der Konsolidierung, einige Kl\u00f6ster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bisch\u00f6fl. Mensa, das Domkapitel und die Bischofsnomination durch den \u00f6sterr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tats\u00e4chl. in seinem Bistum residieren.\n\n", "source": 200}}, {"model": "metainfo.text", "pk": 47749, "fields": {"kind": 131, "text": "Thun und Hohenstein Emanuel Maria Gf. von, F\u00fcrstbischof. Geb. Trient, Bistum Trient (Trento, I), 28.\u00a03. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9.\u00a010. 1818 (bestattet: Dom zu Trient); r\u00f6m.-kath.", "source": 200}}, {"model": "metainfo.text", "pk": 47754, "fields": {"kind": 130, "text": "", "source": 197}}, {"model": "metainfo.text", "pk": 47755, "fields": {"kind": 131, "text": "", "source": 197}}, {"model": "metainfo.text", "pk": 47756, "fields": {"kind": 130, "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2.\u00a0Ehefrau Julia T., geb. Grabowska, Halbbruder von \u00bfWlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von \u00bfLudwig v.\u00a0T. \u2013 T. besuchte das Gymn. in Krakau (Krak\u00f3w) und stud. 1884\u201386 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889\u201393 arbeitete er als Mithrsg. der Z. \u201eKurier Polski\u201c und als Journalist der Z. \u201eTygodnik Ilustrowany\u201c, \u201eKurier Warszawski\u201c und \u201eCzas\u201c; danach war er Sekr. von Adam Krasinski und stud. mit ihm 1896 in Heidelberg. Nach 1896 lebte er in Zakopane und Krakau, ab 1918 in Warschau. T. deb\u00fct. 1886 mit lyr. Prosa und Gelegenheitsdichtung (\u201eIlla\u201c). 1888 gewann er einen Preis der Jagiellonen-Univ. f\u00fcr ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik (\u201eWiersz na uczczenie pamieci Adama Mickiewicza\u201c), und 1889 einen weiteren f\u00fcr eine Hymne auf den Schriftsteller \u00bfJ\u00f3zef Ignacy Kraszewski (\u201eNa czesc Kraszewskiego\u201c). T. galt neben \u00bfJan Kasprowicz als der popul\u00e4rste Dichter der Bewegung Junges Polen und repr\u00e4sentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtb\u00e4ndigen Ged.smlg. \u201ePoezje\u201c (1891\u20131924) erlangte er Anerkennung als bedeutender Lyriker und Autorit\u00e4t der jungpoln. Literatur. T., der sich f\u00fcr Arthur Schopenhauers und Friedrich Nietzsches Phil. begeisterte, schrieb impressionist. Natur- und Stimmungslyrik mit einer Neigung zu Pessimismus und Dekadenz, erot. Ged. und Liebeslyrik sowie Novellen und Romane mit Motiven aus dem zeitgen\u00f6ss. Leben der Boh\u00e8me. 1898 erschien der Roman \u201eAniol smierci\u201c (dt. \u201eDer Todesengel\u201c, 1899), der in dt. \u00dcbers. zuerst als Vorabdruck in der Z. \u201eAus fremden Zungen\u201c erschien, in der T. i.\u00a0d.\u00a0F. weitere Ged. ver\u00f6ff. In der f\u00fcnfb\u00e4ndigen Novellensmlg. \u201eNa skalnym Podhalu\u201c (1903\u201310, dt.sprachige Auswahl unter dem Titel \u201eAus der Tatra\u201c, 1903) verherrlichte T. Land und Leute der Hohen Tatra im Dialekt der Gegend und unter Einbeziehung tradierter Stoffe und Legenden. Bedeutend sind auch seine zwei hist. Tatra-Romane \u201eMaryna z Hrubego\u201c (1910) und \u201eJanosik Nedza Litmanowski\u201c (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. W\u00e4hrend des 1.\u00a0Weltkriegs war T. Hrsg. der Z. \u201ePraca Narodowa\u201c. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zur\u00fcckgezogen, als Dauergast im Warschauer Hotel Europejski. Von dort wurde er von den Deutschen vertrieben und starb in einem Krankenhaus. T., der 1928 den Literaturpreis der Stadt Warschau erhielt, war ab 1921 Pr\u00e4s. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literat\u00f3w Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n", "source": 198}}, {"model": "metainfo.text", "pk": 47757, "fields": {"kind": 131, "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18.\u00a01. 1940; r\u00f6m.-kath.", "source": 198}}, {"model": "metainfo.text", "pk": 47758, "fields": {"kind": 130, "text": "Sohn von \u00bfOskar Karl T. und \u00bfEmma T., Bruder von Wilhelm (genannt Willy) T.-Weckersdorf (geb. Prag, 23. 9. 1879; gest. Salzburg, Sbg., 3. 3. 1968), der sich ebenfalls um die Entwicklung des \u00f6sterr. Pfadfinderwesens verdient machte und nach dem 2. Weltkrieg als Leiter der Ind.abt. der Sbg. Landesregierung fungierte, und von Obst. Oskar (genannt Ossi) T. (geb. Prag, 21. 3. 1881; gest. Innsbruck, Tirol, 19. 4. 1943), der im Heeresmin. t\u00e4tig war und gem. mit seiner j\u00fcd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923\u20131998), Univ.-Prof. f\u00fcr Politikwiss. in Wien. \u2013 T. diente ab 1896 im 3. Tiroler J\u00e4gerrgt. \u201eKaiserj\u00e4ger\u201c, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Milit\u00e4rsachverst\u00e4ndiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des milit\u00e4r. organisierten Knabenhortverbands in der milit\u00e4r.-patriot. Jugenderziehung und -f\u00fcrsorge ein neues Bet\u00e4tigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, \u00fcbertrug er das System der Boy Scouts des engl. Begr\u00fcnders des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gr\u00fcndete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in \u00d6sterr. und die Keimzelle des von ihm initiierten \u00d6sterr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915\u201319 Reichsfeldmeister des Bundes. Aufgrund des Verm\u00f6gens seiner Frau, einer Amerikanerin, konnte \u201ePapa\u201c T. hohe Geldmittel f\u00fcr die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronl\u00e4nder vom \u00d6sterr. Pfadfinderbund wirkte T. 1918\u201320 hauptberufl. als Insp. des Verbands f\u00fcr freiwillige Jugendf\u00fcrsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendf\u00fcrsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und f\u00fcr das Rote Kreuz t\u00e4tig. Da er sich weltanschaul. mit der aufkommenden \u201eb\u00fcndischen\u201c, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zur\u00fcck, blieb aber bis 1923 Bundesfeldmeister im \u00d6sterr. Pfadfinderbund. Er unterst\u00fctzte nunmehr den religi\u00f6sen Einfluss des kath. Klerus auf die Pfadfinder-Jugendarbeit und akzeptierte den Zusammenschluss der innerhalb des Bundes bereits bestehenden kath. Pfadfinderkolonnen zum Ring der St. Georgspfadfinder; 1926 Gr\u00fcndung der kath. Jugendorganisation des \u00d6sterr. Pfadfinderkorps St. Georg, das sich relativ rasch vergr\u00f6\u00dferte. Durch die Auss\u00f6hnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei gro\u00dfe Landg\u00fcter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zur\u00fcck. 1922\u201329 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals h\u00f6chste Pfadfinderausz., den \u201eSilberwolf\u201c. Als nach dem \u201eAnschluss\u201c \u00d6sterr. alle bestehenden Jugendorganisationen aufgel\u00f6st und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in M\u00fcnchen aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die \u00f6sterr. Pfadfinder posthum 1956 ihre h\u00f6chste Ausz., den \u201eSilbernen Steinbock\u201c. T.s Bruder ", "source": 199}}, {"model": "metainfo.text", "pk": 47759, "fields": {"kind": 131, "text": "Teuber Emmerich (genannt Imre), Pfadfinderf\u00fchrer und Offizier. Geb. Prag, B\u00f6hmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; r\u00f6m.-kath.", "source": 199}}, {"model": "metainfo.text", "pk": 47764, "fields": {"kind": 130, "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn sp\u00e4ter in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. \u2013 T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher S\u00e4nger werden. Er stud. 1908\u201310 Klavier, Komposition und Orchesterdirigieren am Hoch\u2019schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm \u00bfLeopold Demuth eine Stimme \u201ewie ein Zwirnsfaden\u201c. Wegen einer Liebelei musste T. nach Freiburg im Breisgau \u00fcbersiedeln, wo er dem Gesangsp\u00e4dagogen Carl Beines begegnete, der sein gro\u00dfes Talent erkannte und ihn ausbildete. T. gab sein Operndeb\u00fct 1913 in Chemnitz als Tamino in Mozarts \u201eZauberfl\u00f6te\u201c und erhielt im selben Jahr ein Engagement an die Dresdner Hofoper, an der er bis 1918 blieb. Er wurde ein gefragter lyr. Tenor, auch da er innerhalb k\u00fcrzester Zeit Partien einzustud. vermochte (Beiname \u201eSOS-Tenor\u201c), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg \u00bfFranz Leh\u00e1r kennen, in dessen sp\u00e4ten Operetten er dann, beginnend mit \u201ePaganini\u201c (Berliner Erstauff. 1926), die m\u00e4nnl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen \u201eT.-Lieder\u201c, die als Schlager gro\u00dfe Popularit\u00e4t erlangten (\u201eDein ist mein ganzes Herz\u201c etc.). Trotz Warnungen, dass er seine Stimme f\u00fcr die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Ber\u00fchmtheit. Fr\u00fch erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der \u00d6ffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Leh\u00e1rs \u201eDas Land des L\u00e4chelns\u201c, eine Rolle, die er \u00fcber 700-mal verk\u00f6rperte. Im selben Jahr kam sein erster Film, \u201eIch glaub\u2019 nie mehr an eine Frau\u201c, in die Kinos. Die auf Dr\u00e4ngen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um gro\u00dfe Summen gebracht. Er stand weiterhin erfolgreich auf Opernb\u00fchnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im M\u00e4rz 1933 von der B\u00fchne des Berliner Admiralspalastes gebuht und auf dem Kurf\u00fcrstendamm von SA-M\u00e4nnern niedergeschlagen worden war, fl\u00fcchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schlie\u00dfl. nach Wien. Hier wurde seine Operette \u201eDer singende Traum\u201c uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in \u201eBlossom Time\u201c einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. K\u00fcnstler zum Star, der sich \u00f6ff. gegen \u00bfAdolf Hitler \u00e4u\u00dferte. Internationale Tourneen f\u00fchrten ihn nach Nord- und S\u00fcdamerika, nach S\u00fcdafrika, Asien und Australien. Nach dem \u201eAnschluss\u201c \u00d6sterr. an das Dt. Reich 1938 lebte er ausschlie\u00dfl. in England (ab 1940 engl. Staatsb\u00fcrger). Er gab Konzerte, die BBC brachte regelm\u00e4\u00dfige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette \u201eOld Chelsea\u201c. An H\u00f6chstgagen und einen aufwendigen Lebensstil gew\u00f6hnt, geriet T. im Exil jedoch in hohe Schulden. Nach Kriegsende trat er wieder international auf, hatte aber deutl. Stimmprobleme. Seinen letzten Auftritt absolv. der an Lungenkrebs Erkrankte Ende September 1947 am Royal Opera House, Covent Garden, als Don Ottavio in Mozarts \u201eDon Giovanni\u201c, wobei er besser denn je gesungen haben soll. T.s Vater ", "source": 196}}, {"model": "metainfo.text", "pk": 47765, "fields": {"kind": 131, "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, S\u00e4nger, Dirigent und Komponist. Geb. Linz (O\u00d6), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 r\u00f6m.-kath.", "source": 196}}, {"model": "metainfo.uri", "pk": 26, "fields": {"uri": "http://sws.geonames.org/3194099/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 26, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 111, "fields": {"uri": "http://sws.geonames.org/3186886/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 133, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 149, "fields": {"uri": "http://sws.geonames.org/2761369/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 183, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 258, "fields": {"uri": "http://sws.geonames.org/3078610/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 327, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 299, "fields": {"uri": "http://sws.geonames.org/3077117/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 384, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 311, "fields": {"uri": "http://sws.geonames.org/3054643/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 637, "fields": {"uri": "http://sws.geonames.org/683506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 831, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 713, "fields": {"uri": "http://sws.geonames.org/2782067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 926, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1062, "fields": {"uri": "http://sws.geonames.org/2950159/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1390, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1089, "fields": {"uri": "http://sws.geonames.org/3071961/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1424, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1112, "fields": {"uri": "http://sws.geonames.org/2781806/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1291, "fields": {"uri": "http://sws.geonames.org/2781629/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1701, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1304, "fields": {"uri": "http://sws.geonames.org/2907669/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1718, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1511, "fields": {"uri": "http://sws.geonames.org/684039/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2006, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1561, "fields": {"uri": "http://sws.geonames.org/3060972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2072, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1571, "fields": {"uri": "http://sws.geonames.org/3078577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2085, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1625, "fields": {"uri": "http://sws.geonames.org/3081368/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2161, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1631, "fields": {"uri": "http://sws.geonames.org/3181550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2170, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1651, "fields": {"uri": "http://sws.geonames.org/3074967/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2197, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1711, "fields": {"uri": "http://sws.geonames.org/711416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2281, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1856, "fields": {"uri": "http://sws.geonames.org/3435910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2489, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1939, "fields": {"uri": "http://sws.geonames.org/3181215/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2602, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2121, "fields": {"uri": "http://sws.geonames.org/710719/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2854, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2302, "fields": {"uri": "http://sws.geonames.org/3101321/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3105, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2344, "fields": {"uri": "http://sws.geonames.org/681290/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3162, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3021, "fields": {"uri": "http://sws.geonames.org/2934486/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4096, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3151, "fields": {"uri": "http://sws.geonames.org/3063762/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4269, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3518, "fields": {"uri": "http://sws.geonames.org/2778067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4767, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3599, "fields": {"uri": "http://sws.geonames.org/2779275/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4877, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3912, "fields": {"uri": "http://sws.geonames.org/677410/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5294, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3923, "fields": {"uri": "http://sws.geonames.org/2873574/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5308, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4052, "fields": {"uri": "http://sws.geonames.org/3175986/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5478, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4206, "fields": {"uri": "http://sws.geonames.org/3173577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5691, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4249, "fields": {"uri": "http://sws.geonames.org/2777972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5749, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4440, "fields": {"uri": "http://sws.geonames.org/3063197/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6004, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4676, "fields": {"uri": "http://sws.geonames.org/2910831/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6324, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4954, "fields": {"uri": "http://sws.geonames.org/2775220/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6700, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5134, "fields": {"uri": "http://sws.geonames.org/3199302/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6947, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5507, "fields": {"uri": "http://sws.geonames.org/3097333/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5631, "fields": {"uri": "http://sws.geonames.org/2772649/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7622, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5897, "fields": {"uri": "http://sws.geonames.org/2892518/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7986, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6257, "fields": {"uri": "http://sws.geonames.org/2773913/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8482, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6486, "fields": {"uri": "http://sws.geonames.org/2885679/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8798, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6838, "fields": {"uri": "http://sws.geonames.org/2773300/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9287, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6961, "fields": {"uri": "http://sws.geonames.org/3072358/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9455, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6977, "fields": {"uri": "http://sws.geonames.org/3196359/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7169, "fields": {"uri": "http://sws.geonames.org/702550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9735, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7375, "fields": {"uri": "http://sws.geonames.org/2772400/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10015, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7554, "fields": {"uri": "http://sws.geonames.org/2643743/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10265, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7936, "fields": {"uri": "http://sws.geonames.org/3195506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10793, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8262, "fields": {"uri": "http://sws.geonames.org/3064919/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11238, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8489, "fields": {"uri": "http://sws.geonames.org/3070372/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11556, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8668, "fields": {"uri": "http://sws.geonames.org/2867714/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11799, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8966, "fields": {"uri": "http://sws.geonames.org/3090436/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12211, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9363, "fields": {"uri": "http://sws.geonames.org/2990440/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12758, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9718, "fields": {"uri": "http://sws.geonames.org/3045190/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13253, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9810, "fields": {"uri": "http://sws.geonames.org/3069011/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13382, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10050, "fields": {"uri": "http://sws.geonames.org/2988507/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13714, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10247, "fields": {"uri": "http://sws.geonames.org/2854561/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13987, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10697, "fields": {"uri": "http://sws.geonames.org/3067696/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 14608, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11885, "fields": {"uri": "http://sws.geonames.org/3057304/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16242, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11932, "fields": {"uri": "http://sws.geonames.org/3167905/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16310, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12137, "fields": {"uri": "http://sws.geonames.org/3065118/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16594, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12332, "fields": {"uri": "http://sws.geonames.org/2765515/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16864, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13419, "fields": {"uri": "http://sws.geonames.org/3083848/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18374, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13438, "fields": {"uri": "http://sws.geonames.org/715429/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14028, "fields": {"uri": "http://sws.geonames.org/3165243/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19215, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14297, "fields": {"uri": "http://sws.geonames.org/3058653/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19599, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14983, "fields": {"uri": "http://sws.geonames.org/756135/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20549, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15060, "fields": {"uri": "http://sws.geonames.org/792794/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20659, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15214, "fields": {"uri": "http://sws.geonames.org/2782058/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20872, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15297, "fields": {"uri": "http://sws.geonames.org/2633767/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20988, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15896, "fields": {"uri": "http://sws.geonames.org/3064454/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 21818, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16165, "fields": {"uri": "http://sws.geonames.org/3074331/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22216, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16195, "fields": {"uri": "http://sws.geonames.org/2764112/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22259, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16238, "fields": {"uri": "http://sws.geonames.org/2762908/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22322, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16260, "fields": {"uri": "http://sws.geonames.org/2659297/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22354, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16342, "fields": {"uri": "http://sws.geonames.org/2953416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16355, "fields": {"uri": "http://sws.geonames.org/2772910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22494, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16377, "fields": {"uri": "http://sws.geonames.org/2660718/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22526, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16386, "fields": {"uri": "http://sws.geonames.org/684490/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22545, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16392, "fields": {"uri": "http://sws.geonames.org/3092742/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22558, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16398, "fields": {"uri": "http://sws.geonames.org/3164453/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22570, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19232, "fields": {"uri": "http://d-nb.info/gnd/4023349-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19233, "fields": {"uri": "http://d-nb.info/gnd/4027096-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6700, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19242, "fields": {"uri": "http://d-nb.info/gnd/4044660-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19246, "fields": {"uri": "http://d-nb.info/gnd/4127793-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 11799, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19273, "fields": {"uri": "http://d-nb.info/gnd/4008216-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19323, "fields": {"uri": "http://d-nb.info/gnd/4076310-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 14608, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19406, "fields": {"uri": "http://d-nb.info/gnd/4008684-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19447, "fields": {"uri": "http://d-nb.info/gnd/4038688-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 5691, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19459, "fields": {"uri": "http://d-nb.info/gnd/4265379-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1454, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19583, "fields": {"uri": "http://d-nb.info/gnd/4021912-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19665, "fields": {"uri": "http://d-nb.info/gnd/4075643-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13382, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 32623, "fields": {"uri": "http://d-nb.info/gnd/118931482", "domain": "", "rdf_link": "", "entity": 46414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 39250, "fields": {"uri": "http://d-nb.info/gnd/118785028", "domain": "", "rdf_link": "", "entity": 56248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 43650, "fields": {"uri": "http://d-nb.info/gnd/118573527", "domain": "", "rdf_link": "", "entity": 62757, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60980, "fields": {"uri": "http://d-nb.info/gnd/118508288", "domain": "", "rdf_link": "", "entity": 88902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63085, "fields": {"uri": "http://d-nb.info/gnd/118677667", "domain": "", "rdf_link": "", "entity": 92603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63174, "fields": {"uri": "http://d-nb.info/gnd/118505955", "domain": "", "rdf_link": "", "entity": 93003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63178, "fields": {"uri": "http://d-nb.info/gnd/119061201", "domain": "", "rdf_link": "", "entity": 93009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63180, "fields": {"uri": "http://d-nb.info/gnd/128578998", "domain": "", "rdf_link": "", "entity": 93012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63182, "fields": {"uri": "http://d-nb.info/gnd/143930567", "domain": "", "rdf_link": "", "entity": 93015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63184, "fields": {"uri": "http://d-nb.info/gnd/136186289", "domain": "", "rdf_link": "", "entity": 93018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63186, "fields": {"uri": "http://d-nb.info/gnd/136186343", "domain": "", "rdf_link": "", "entity": 93021, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63188, "fields": {"uri": "http://d-nb.info/gnd/140067302", "domain": "", "rdf_link": "", "entity": 93024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63191, "fields": {"uri": "http://d-nb.info/gnd/116539585", "domain": "", "rdf_link": "", "entity": 93028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63193, "fields": {"uri": "http://d-nb.info/gnd/11666827X", "domain": "", "rdf_link": "", "entity": 93031, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63195, "fields": {"uri": "http://d-nb.info/gnd/116689234", "domain": "", "rdf_link": "", "entity": 93034, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63202, "fields": {"uri": "http://d-nb.info/gnd/130579122", "domain": "", "rdf_link": "", "entity": 93044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63204, "fields": {"uri": "http://d-nb.info/gnd/143681761", "domain": "", "rdf_link": "", "entity": 93047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63206, "fields": {"uri": "http://d-nb.info/gnd/117649953", "domain": "", "rdf_link": "", "entity": 93050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63210, "fields": {"uri": "http://d-nb.info/gnd/130132098", "domain": "", "rdf_link": "", "entity": 93056, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63212, "fields": {"uri": "http://d-nb.info/gnd/143053272", "domain": "", "rdf_link": "", "entity": 93059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63216, "fields": {"uri": "http://d-nb.info/gnd/118817418", "domain": "", "rdf_link": "", "entity": 93065, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63218, "fields": {"uri": "http://d-nb.info/gnd/135697719", "domain": "", "rdf_link": "", "entity": 93068, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63220, "fields": {"uri": "http://d-nb.info/gnd/118524283", "domain": "", "rdf_link": "", "entity": 93071, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63222, "fields": {"uri": "http://d-nb.info/gnd/116070935", "domain": "", "rdf_link": "", "entity": 93074, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63261, "fields": {"uri": "http://d-nb.info/gnd/1012030806", "domain": "", "rdf_link": "", "entity": 93136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63385, "fields": {"uri": "http://d-nb.info/gnd/117736791", "domain": "", "rdf_link": "", "entity": 93328, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63391, "fields": {"uri": "http://d-nb.info/gnd/1019267925", "domain": "", "rdf_link": "", "entity": 93337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63401, "fields": {"uri": "http://d-nb.info/gnd/136782086", "domain": "", "rdf_link": "", "entity": 93352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63411, "fields": {"uri": "http://d-nb.info/gnd/1018979573", "domain": "", "rdf_link": "", "entity": 93366, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63413, "fields": {"uri": "http://d-nb.info/gnd/1019359811", "domain": "", "rdf_link": "", "entity": 93369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63419, "fields": {"uri": "http://d-nb.info/gnd/117634816", "domain": "", "rdf_link": "", "entity": 93378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63425, "fields": {"uri": "http://d-nb.info/gnd/116907525", "domain": "", "rdf_link": "", "entity": 93387, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63429, "fields": {"uri": "http://d-nb.info/gnd/116856246", "domain": "", "rdf_link": "", "entity": 93393, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63431, "fields": {"uri": "http://d-nb.info/gnd/119334429", "domain": "", "rdf_link": "", "entity": 93396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63434, "fields": {"uri": "http://d-nb.info/gnd/118806025", "domain": "", "rdf_link": "", "entity": 93400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63440, "fields": {"uri": "http://d-nb.info/gnd/1018666664", "domain": "", "rdf_link": "", "entity": 93409, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63444, "fields": {"uri": "http://d-nb.info/gnd/1014451833", "domain": "", "rdf_link": "", "entity": 93415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63446, "fields": {"uri": "http://d-nb.info/gnd/117612308", "domain": "", "rdf_link": "", "entity": 93418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63462, "fields": {"uri": "http://d-nb.info/gnd/118813919", "domain": "", "rdf_link": "", "entity": 93442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63464, "fields": {"uri": "http://d-nb.info/gnd/1023121581", "domain": "", "rdf_link": "", "entity": 93445, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63466, "fields": {"uri": "http://d-nb.info/gnd/119065932", "domain": "", "rdf_link": "", "entity": 93448, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63480, "fields": {"uri": "http://d-nb.info/gnd/1021208493", "domain": "", "rdf_link": "", "entity": 93469, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63488, "fields": {"uri": "http://d-nb.info/gnd/137341768", "domain": "", "rdf_link": "", "entity": 93481, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63490, "fields": {"uri": "http://d-nb.info/gnd/1020698381", "domain": "", "rdf_link": "", "entity": 93484, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63492, "fields": {"uri": "http://d-nb.info/gnd/1020698055", "domain": "", "rdf_link": "", "entity": 93487, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63508, "fields": {"uri": "http://d-nb.info/gnd/118732277", "domain": "", "rdf_link": "", "entity": 93510, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63510, "fields": {"uri": "http://d-nb.info/gnd/10788464X", "domain": "", "rdf_link": "", "entity": 93513, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63512, "fields": {"uri": "http://d-nb.info/gnd/134474937", "domain": "", "rdf_link": "", "entity": 93516, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63528, "fields": {"uri": "http://d-nb.info/gnd/13185545X", "domain": "", "rdf_link": "", "entity": 93540, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63532, "fields": {"uri": "http://d-nb.info/gnd/1024716082", "domain": "", "rdf_link": "", "entity": 93546, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63542, "fields": {"uri": "http://d-nb.info/gnd/1026382211", "domain": "", "rdf_link": "", "entity": 93561, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63550, "fields": {"uri": "http://d-nb.info/gnd/102588485X", "domain": "", "rdf_link": "", "entity": 93573, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63560, "fields": {"uri": "http://d-nb.info/gnd/130027022", "domain": "", "rdf_link": "", "entity": 93588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63568, "fields": {"uri": "http://d-nb.info/gnd/117687030", "domain": "", "rdf_link": "", "entity": 93600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63574, "fields": {"uri": "http://d-nb.info/gnd/122897897", "domain": "", "rdf_link": "", "entity": 93609, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63578, "fields": {"uri": "http://d-nb.info/gnd/139593128", "domain": "", "rdf_link": "", "entity": 93615, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63594, "fields": {"uri": "http://d-nb.info/gnd/139112200", "domain": "", "rdf_link": "", "entity": 93639, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63596, "fields": {"uri": "http://d-nb.info/gnd/130427012", "domain": "", "rdf_link": "", "entity": 93642, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63598, "fields": {"uri": "http://d-nb.info/gnd/117522139", "domain": "", "rdf_link": "", "entity": 93645, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63602, "fields": {"uri": "http://d-nb.info/gnd/1027427839", "domain": "", "rdf_link": "", "entity": 93651, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63604, "fields": {"uri": "http://d-nb.info/gnd/127691979", "domain": "", "rdf_link": "", "entity": 93654, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63627, "fields": {"uri": "http://d-nb.info/gnd/123215374", "domain": "", "rdf_link": "", "entity": 93702, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63629, "fields": {"uri": "http://d-nb.info/gnd/12899620X", "domain": "", "rdf_link": "", "entity": 93705, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63635, "fields": {"uri": "http://d-nb.info/gnd/1035683431", "domain": "", "rdf_link": "", "entity": 93714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63657, "fields": {"uri": "http://d-nb.info/gnd/1034850962", "domain": "", "rdf_link": "", "entity": 93748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63678, "fields": {"uri": "http://d-nb.info/gnd/135612411", "domain": "", "rdf_link": "", "entity": 93779, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63682, "fields": {"uri": "http://d-nb.info/gnd/1033824674", "domain": "", "rdf_link": "", "entity": 93785, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63686, "fields": {"uri": "http://d-nb.info/gnd/133833348", "domain": "", "rdf_link": "", "entity": 93791, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63692, "fields": {"uri": "http://d-nb.info/gnd/103334690X", "domain": "", "rdf_link": "", "entity": 93800, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63694, "fields": {"uri": "http://d-nb.info/gnd/128900059", "domain": "", "rdf_link": "", "entity": 93803, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63698, "fields": {"uri": "http://d-nb.info/gnd/1033469084", "domain": "", "rdf_link": "", "entity": 93809, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63702, "fields": {"uri": "http://d-nb.info/gnd/117409669", "domain": "", "rdf_link": "", "entity": 93815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63704, "fields": {"uri": "http://d-nb.info/gnd/1033342483", "domain": "", "rdf_link": "", "entity": 93818, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63716, "fields": {"uri": "http://d-nb.info/gnd/134516001", "domain": "", "rdf_link": "", "entity": 93836, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63718, "fields": {"uri": "http://d-nb.info/gnd/1019536594", "domain": "", "rdf_link": "", "entity": 93839, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63728, "fields": {"uri": "http://d-nb.info/gnd/103283160X", "domain": "", "rdf_link": "", "entity": 93854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63734, "fields": {"uri": "http://d-nb.info/gnd/103223718X", "domain": "", "rdf_link": "", "entity": 93863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63736, "fields": {"uri": "http://d-nb.info/gnd/118610643", "domain": "", "rdf_link": "", "entity": 93866, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63744, "fields": {"uri": "http://d-nb.info/gnd/1032220473", "domain": "", "rdf_link": "", "entity": 93878, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63753, "fields": {"uri": "http://d-nb.info/gnd/1031937358", "domain": "", "rdf_link": "", "entity": 93891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63755, "fields": {"uri": "http://d-nb.info/gnd/1031946101", "domain": "", "rdf_link": "", "entity": 93894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63759, "fields": {"uri": "http://d-nb.info/gnd/116848693", "domain": "", "rdf_link": "", "entity": 93900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63761, "fields": {"uri": "http://d-nb.info/gnd/103169420X", "domain": "", "rdf_link": "", "entity": 93903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63765, "fields": {"uri": "http://d-nb.info/gnd/137648588", "domain": "", "rdf_link": "", "entity": 93909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63773, "fields": {"uri": "http://d-nb.info/gnd/116816961", "domain": "", "rdf_link": "", "entity": 93921, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63781, "fields": {"uri": "http://d-nb.info/gnd/118759671", "domain": "", "rdf_link": "", "entity": 93933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63786, "fields": {"uri": "http://d-nb.info/gnd/103056423X", "domain": "", "rdf_link": "", "entity": 93940, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63790, "fields": {"uri": "http://d-nb.info/gnd/1030283044", "domain": "", "rdf_link": "", "entity": 93946, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63796, "fields": {"uri": "http://d-nb.info/gnd/1031146539", "domain": "", "rdf_link": "", "entity": 93955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63798, "fields": {"uri": "http://d-nb.info/gnd/139576126", "domain": "", "rdf_link": "", "entity": 93958, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63800, "fields": {"uri": "http://d-nb.info/gnd/129263761", "domain": "", "rdf_link": "", "entity": 93961, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63802, "fields": {"uri": "http://d-nb.info/gnd/121246736", "domain": "", "rdf_link": "", "entity": 93964, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63804, "fields": {"uri": "http://d-nb.info/gnd/1029738556", "domain": "", "rdf_link": "", "entity": 93967, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63806, "fields": {"uri": "http://d-nb.info/gnd/1029748209", "domain": "", "rdf_link": "", "entity": 93970, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64139, "fields": {"uri": "http://d-nb.info/gnd/4074335-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10265, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64175, "fields": {"uri": "http://d-nb.info/gnd/4035304-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64185, "fields": {"uri": "http://d-nb.info/gnd/4108914-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64201, "fields": {"uri": "http://d-nb.info/gnd/4008858-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64255, "fields": {"uri": "http://d-nb.info/gnd/4010833-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64261, "fields": {"uri": "http://d-nb.info/gnd/4073953-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9475, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64625, "fields": {"uri": "http://d-nb.info/gnd/4075578-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13253, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64656, "fields": {"uri": "http://d-nb.info/gnd/4079048-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 20549, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64762, "fields": {"uri": "http://d-nb.info/gnd/4008456-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 327, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64958, "fields": {"uri": "http://d-nb.info/gnd/4106475-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 18400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64961, "fields": {"uri": "http://d-nb.info/gnd/4074255-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65200, "fields": {"uri": "http://d-nb.info/gnd/4033488-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9287, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65351, "fields": {"uri": "http://d-nb.info/gnd/4013237-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65410, "fields": {"uri": "http://d-nb.info/gnd/4071444-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 22526, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65607, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Conrad", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65704, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Fiedler", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65759, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Gasser", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66450, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Rief", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66630, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:StaudingerRudolf", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66778, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Winkler", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66836, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Z\u00f6llner", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 68464, "fields": {"uri": "http://d-nb.info/gnd/4031235-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 8482, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 70264, "fields": {"uri": "http://d-nb.info/gnd/4029869-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 7986, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 71992, "fields": {"uri": "http://d-nb.info/gnd/4035360-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 7622, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 72191, "fields": {"uri": "http://d-nb.info/gnd/4103609-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1424, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uricandidate", "pk": 3373, "fields": {"uri": "http://sws.geonames.org/3075069/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3374, "fields": {"uri": "http://sws.geonames.org/3075073/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3375, "fields": {"uri": "http://sws.geonames.org/3064955/", "confidence": 36.39077, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3376, "fields": {"uri": "http://sws.geonames.org/3064682/", "confidence": 27.023357, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3392, "fields": {"uri": "http://sws.geonames.org/8987526/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3393, "fields": {"uri": "http://sws.geonames.org/8988006/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3394, "fields": {"uri": "http://sws.geonames.org/3187442/", "confidence": 36.04053, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3427, "fields": {"uri": "http://sws.geonames.org/710232/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3428, "fields": {"uri": "http://sws.geonames.org/710234/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3429, "fields": {"uri": "http://sws.geonames.org/710242/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3430, "fields": {"uri": "http://sws.geonames.org/710241/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3431, "fields": {"uri": "http://sws.geonames.org/810113/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3432, "fields": {"uri": "http://sws.geonames.org/8468002/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3433, "fields": {"uri": "http://sws.geonames.org/710235/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3434, "fields": {"uri": "http://sws.geonames.org/710243/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3435, "fields": {"uri": "http://sws.geonames.org/697446/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3436, "fields": {"uri": "http://sws.geonames.org/687982/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "highlighter.texthigh", "pk": 1, "fields": {"title": "\u00d6BL Haupttext", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-haupttext", "project": 1}}, {"model": "highlighter.texthigh", "pk": 2, "fields": {"title": "\u00d6bl Kurzinfo", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-kurzinfo", "project": 1}}, {"model": "highlighter.annotationproject", "pk": 1, "fields": {"name": "Default", "description": "We need an annotation project for every annotation. Thus the default project."}}, {"model": "highlighter.annotationproject", "pk": 2, "fields": {"name": "Klausenburg Agoston", "description": null}}, {"model": "highlighter.annotationproject", "pk": 3, "fields": {"name": "K\u00fcnstlerhaus Maximilian", "description": null}}, {"model": "highlighter.annotationproject", "pk": 4, "fields": {"name": "Mittelalter", "description": null}}, {"model": "highlighter.annotationproject", "pk": 5, "fields": {"name": "300 select names", "description": null}}, {"model": "highlighter.annotationproject", "pk": 6, "fields": {"name": "Gold Standard 28.3.2017", "description": ""}}, {"model": "highlighter.vocabularyapi", "pk": 1, "fields": {"name": "Person Place Form", "api_endpoint": "PersonPlaceHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 2, "fields": {"name": "Person Institution Form", "api_endpoint": "PersonInstitutionHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 3, "fields": {"name": "Person Person Form", "api_endpoint": "PersonPersonHighlighterForm", "method": "l"}}, {"model": "highlighter.menuentry", "pk": 1, "fields": {"kind": "frm", "name": "Person Place Relation", "api": 1, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 2, "fields": {"kind": "frm", "name": "Person Institution Relation", "api": 2, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 3, "fields": {"kind": "frm", "name": "Person Person Relation", "api": 3, "parent": null, "project": 1}}, {"model": "auth.permission", "fields": {"name": "Can add log entry", "content_type": ["admin", "logentry"], "codename": "add_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can change log entry", "content_type": ["admin", "logentry"], "codename": "change_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete log entry", "content_type": ["admin", "logentry"], "codename": "delete_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can add permission", "content_type": ["auth", "permission"], "codename": "add_permission"}}, {"model": "auth.permission", "fields": {"name": "Can change permission", "content_type": ["auth", "permission"], "codename": "change_permission"}}, {"model": "auth.permission", "fields": {"name": "Can delete permission", "content_type": ["auth", "permission"], "codename": "delete_permission"}}, {"model": "auth.permission", "fields": {"name": "Can add group", "content_type": ["auth", "group"], "codename": "add_group"}}, {"model": "auth.permission", "fields": {"name": "Can change group", "content_type": ["auth", "group"], "codename": "change_group"}}, {"model": "auth.permission", "fields": {"name": "Can delete group", "content_type": ["auth", "group"], "codename": "delete_group"}}, {"model": "auth.permission", "fields": {"name": "Can add user", "content_type": ["auth", "user"], "codename": "add_user"}}, {"model": "auth.permission", "fields": {"name": "Can change user", "content_type": ["auth", "user"], "codename": "change_user"}}, {"model": "auth.permission", "fields": {"name": "Can delete user", "content_type": ["auth", "user"], "codename": "delete_user"}}, {"model": "auth.permission", "fields": {"name": "Can add content type", "content_type": ["contenttypes", "contenttype"], "codename": "add_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can change content type", "content_type": ["contenttypes", "contenttype"], "codename": "change_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete content type", "content_type": ["contenttypes", "contenttype"], "codename": "delete_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can add session", "content_type": ["sessions", "session"], "codename": "add_session"}}, {"model": "auth.permission", "fields": {"name": "Can change session", "content_type": ["sessions", "session"], "codename": "change_session"}}, {"model": "auth.permission", "fields": {"name": "Can delete session", "content_type": ["sessions", "session"], "codename": "delete_session"}}, {"model": "auth.permission", "fields": {"name": "Can add label", "content_type": ["labels", "label"], "codename": "add_label"}}, {"model": "auth.permission", "fields": {"name": "Can change label", "content_type": ["labels", "label"], "codename": "change_label"}}, {"model": "auth.permission", "fields": {"name": "Can delete label", "content_type": ["labels", "label"], "codename": "delete_label"}}, {"model": "auth.permission", "fields": {"name": "Can add person", "content_type": ["entities", "person"], "codename": "add_person"}}, {"model": "auth.permission", "fields": {"name": "Can change person", "content_type": ["entities", "person"], "codename": "change_person"}}, {"model": "auth.permission", "fields": {"name": "Can delete person", "content_type": ["entities", "person"], "codename": "delete_person"}}, {"model": "auth.permission", "fields": {"name": "Can add place", "content_type": ["entities", "place"], "codename": "add_place"}}, {"model": "auth.permission", "fields": {"name": "Can change place", "content_type": ["entities", "place"], "codename": "change_place"}}, {"model": "auth.permission", "fields": {"name": "Can delete place", "content_type": ["entities", "place"], "codename": "delete_place"}}, {"model": "auth.permission", "fields": {"name": "Can add institution", "content_type": ["entities", "institution"], "codename": "add_institution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution", "content_type": ["entities", "institution"], "codename": "change_institution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution", "content_type": ["entities", "institution"], "codename": "delete_institution"}}, {"model": "auth.permission", "fields": {"name": "Can add event", "content_type": ["entities", "event"], "codename": "add_event"}}, {"model": "auth.permission", "fields": {"name": "Can change event", "content_type": ["entities", "event"], "codename": "change_event"}}, {"model": "auth.permission", "fields": {"name": "Can delete event", "content_type": ["entities", "event"], "codename": "delete_event"}}, {"model": "auth.permission", "fields": {"name": "Can add work", "content_type": ["entities", "work"], "codename": "add_work"}}, {"model": "auth.permission", "fields": {"name": "Can change work", "content_type": ["entities", "work"], "codename": "change_work"}}, {"model": "auth.permission", "fields": {"name": "Can delete work", "content_type": ["entities", "work"], "codename": "delete_work"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "add_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "change_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can add work type", "content_type": ["vocabularies", "worktype"], "codename": "add_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can change work type", "content_type": ["vocabularies", "worktype"], "codename": "change_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can delete work type", "content_type": ["vocabularies", "worktype"], "codename": "delete_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can add title", "content_type": ["vocabularies", "title"], "codename": "add_title"}}, {"model": "auth.permission", "fields": {"name": "Can change title", "content_type": ["vocabularies", "title"], "codename": "change_title"}}, {"model": "auth.permission", "fields": {"name": "Can delete title", "content_type": ["vocabularies", "title"], "codename": "delete_title"}}, {"model": "auth.permission", "fields": {"name": "Can add profession type", "content_type": ["vocabularies", "professiontype"], "codename": "add_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change profession type", "content_type": ["vocabularies", "professiontype"], "codename": "change_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete profession type", "content_type": ["vocabularies", "professiontype"], "codename": "delete_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add place type", "content_type": ["vocabularies", "placetype"], "codename": "add_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can change place type", "content_type": ["vocabularies", "placetype"], "codename": "change_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can delete place type", "content_type": ["vocabularies", "placetype"], "codename": "delete_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can add institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "add_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "change_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "delete_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add event type", "content_type": ["vocabularies", "eventtype"], "codename": "add_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can change event type", "content_type": ["vocabularies", "eventtype"], "codename": "change_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can delete event type", "content_type": ["vocabularies", "eventtype"], "codename": "delete_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can add label type", "content_type": ["vocabularies", "labeltype"], "codename": "add_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can change label type", "content_type": ["vocabularies", "labeltype"], "codename": "change_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can delete label type", "content_type": ["vocabularies", "labeltype"], "codename": "delete_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can add collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "add_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "change_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "delete_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add text type", "content_type": ["vocabularies", "texttype"], "codename": "add_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can change text type", "content_type": ["vocabularies", "texttype"], "codename": "change_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete text type", "content_type": ["vocabularies", "texttype"], "codename": "delete_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can add person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "add_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "change_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "add_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "change_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "add_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "change_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "add_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "change_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person person", "content_type": ["relations", "personperson"], "codename": "add_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can change person person", "content_type": ["relations", "personperson"], "codename": "change_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person", "content_type": ["relations", "personperson"], "codename": "delete_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can add person place", "content_type": ["relations", "personplace"], "codename": "add_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can change person place", "content_type": ["relations", "personplace"], "codename": "change_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place", "content_type": ["relations", "personplace"], "codename": "delete_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution", "content_type": ["relations", "personinstitution"], "codename": "add_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution", "content_type": ["relations", "personinstitution"], "codename": "change_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution", "content_type": ["relations", "personinstitution"], "codename": "delete_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add person event", "content_type": ["relations", "personevent"], "codename": "add_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can change person event", "content_type": ["relations", "personevent"], "codename": "change_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event", "content_type": ["relations", "personevent"], "codename": "delete_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can add person work", "content_type": ["relations", "personwork"], "codename": "add_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can change person work", "content_type": ["relations", "personwork"], "codename": "change_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work", "content_type": ["relations", "personwork"], "codename": "delete_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place", "content_type": ["relations", "institutionplace"], "codename": "add_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place", "content_type": ["relations", "institutionplace"], "codename": "change_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place", "content_type": ["relations", "institutionplace"], "codename": "delete_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event", "content_type": ["relations", "institutionevent"], "codename": "add_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event", "content_type": ["relations", "institutionevent"], "codename": "change_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event", "content_type": ["relations", "institutionevent"], "codename": "delete_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work", "content_type": ["relations", "institutionwork"], "codename": "add_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work", "content_type": ["relations", "institutionwork"], "codename": "change_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work", "content_type": ["relations", "institutionwork"], "codename": "delete_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can add place place", "content_type": ["relations", "placeplace"], "codename": "add_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can change place place", "content_type": ["relations", "placeplace"], "codename": "change_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place", "content_type": ["relations", "placeplace"], "codename": "delete_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can add place event", "content_type": ["relations", "placeevent"], "codename": "add_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can change place event", "content_type": ["relations", "placeevent"], "codename": "change_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event", "content_type": ["relations", "placeevent"], "codename": "delete_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can add place work", "content_type": ["relations", "placework"], "codename": "add_placework"}}, {"model": "auth.permission", "fields": {"name": "Can change place work", "content_type": ["relations", "placework"], "codename": "change_placework"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work", "content_type": ["relations", "placework"], "codename": "delete_placework"}}, {"model": "auth.permission", "fields": {"name": "Can add event event", "content_type": ["relations", "eventevent"], "codename": "add_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can change event event", "content_type": ["relations", "eventevent"], "codename": "change_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event", "content_type": ["relations", "eventevent"], "codename": "delete_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can add event work", "content_type": ["relations", "eventwork"], "codename": "add_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can change event work", "content_type": ["relations", "eventwork"], "codename": "change_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work", "content_type": ["relations", "eventwork"], "codename": "delete_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can add work work", "content_type": ["relations", "workwork"], "codename": "add_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can change work work", "content_type": ["relations", "workwork"], "codename": "change_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work", "content_type": ["relations", "workwork"], "codename": "delete_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can add temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "add_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can change temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "change_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can add source", "content_type": ["metainfo", "source"], "codename": "add_source"}}, {"model": "auth.permission", "fields": {"name": "Can change source", "content_type": ["metainfo", "source"], "codename": "change_source"}}, {"model": "auth.permission", "fields": {"name": "Can delete source", "content_type": ["metainfo", "source"], "codename": "delete_source"}}, {"model": "auth.permission", "fields": {"name": "Can add collection", "content_type": ["metainfo", "collection"], "codename": "add_collection"}}, {"model": "auth.permission", "fields": {"name": "Can change collection", "content_type": ["metainfo", "collection"], "codename": "change_collection"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection", "content_type": ["metainfo", "collection"], "codename": "delete_collection"}}, {"model": "auth.permission", "fields": {"name": "Can add text", "content_type": ["metainfo", "text"], "codename": "add_text"}}, {"model": "auth.permission", "fields": {"name": "Can change text", "content_type": ["metainfo", "text"], "codename": "change_text"}}, {"model": "auth.permission", "fields": {"name": "Can delete text", "content_type": ["metainfo", "text"], "codename": "delete_text"}}, {"model": "auth.permission", "fields": {"name": "Can add uri", "content_type": ["metainfo", "uri"], "codename": "add_uri"}}, {"model": "auth.permission", "fields": {"name": "Can change uri", "content_type": ["metainfo", "uri"], "codename": "change_uri"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri", "content_type": ["metainfo", "uri"], "codename": "delete_uri"}}, {"model": "auth.permission", "fields": {"name": "Can add project", "content_type": ["highlighter", "project"], "codename": "add_project"}}, {"model": "auth.permission", "fields": {"name": "Can change project", "content_type": ["highlighter", "project"], "codename": "change_project"}}, {"model": "auth.permission", "fields": {"name": "Can delete project", "content_type": ["highlighter", "project"], "codename": "delete_project"}}, {"model": "auth.permission", "fields": {"name": "Can add annotation", "content_type": ["highlighter", "annotation"], "codename": "add_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can change annotation", "content_type": ["highlighter", "annotation"], "codename": "change_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can delete annotation", "content_type": ["highlighter", "annotation"], "codename": "delete_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "add_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "change_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "delete_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can add menu entry", "content_type": ["highlighter", "menuentry"], "codename": "add_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can change menu entry", "content_type": ["highlighter", "menuentry"], "codename": "change_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete menu entry", "content_type": ["highlighter", "menuentry"], "codename": "delete_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can add revision", "content_type": ["reversion", "revision"], "codename": "add_revision"}}, {"model": "auth.permission", "fields": {"name": "Can change revision", "content_type": ["reversion", "revision"], "codename": "change_revision"}}, {"model": "auth.permission", "fields": {"name": "Can delete revision", "content_type": ["reversion", "revision"], "codename": "delete_revision"}}, {"model": "auth.permission", "fields": {"name": "Can add version", "content_type": ["reversion", "version"], "codename": "add_version"}}, {"model": "auth.permission", "fields": {"name": "Can change version", "content_type": ["reversion", "version"], "codename": "change_version"}}, {"model": "auth.permission", "fields": {"name": "Can delete version", "content_type": ["reversion", "version"], "codename": "delete_version"}}, {"model": "auth.permission", "fields": {"name": "Can add uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "add_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can change uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "change_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "delete_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can add vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "add_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can change vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "change_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "delete_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can add text high", "content_type": ["highlighter", "texthigh"], "codename": "add_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can change text high", "content_type": ["highlighter", "texthigh"], "codename": "change_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can delete text high", "content_type": ["highlighter", "texthigh"], "codename": "delete_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can add annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "add_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can change annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "change_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can delete annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "delete_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can add Token", "content_type": ["authtoken", "token"], "codename": "add_token"}}, {"model": "auth.permission", "fields": {"name": "Can change Token", "content_type": ["authtoken", "token"], "codename": "change_token"}}, {"model": "auth.permission", "fields": {"name": "Can delete Token", "content_type": ["authtoken", "token"], "codename": "delete_token"}}, {"model": "auth.permission", "fields": {"name": "Can add user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "add_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can change user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "change_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can delete user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "delete_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can add group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "add_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can change group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "change_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can delete group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "delete_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "add_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "change_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "delete_institutionworkrelation"}}, {"model": "auth.group", "fields": {"name": "semac", "permissions": [["add_contenttype", "contenttypes", "contenttype"], ["change_contenttype", "contenttypes", "contenttype"], ["delete_contenttype", "contenttypes", "contenttype"], ["add_event", "entities", "event"], ["change_event", "entities", "event"], ["delete_event", "entities", "event"], ["add_institution", "entities", "institution"], ["change_institution", "entities", "institution"], ["delete_institution", "entities", "institution"], ["add_person", "entities", "person"], ["change_person", "entities", "person"], ["delete_person", "entities", "person"], ["add_place", "entities", "place"], ["change_place", "entities", "place"], ["delete_place", "entities", "place"], ["add_work", "entities", "work"], ["change_work", "entities", "work"], ["delete_work", "entities", "work"], ["add_annotation", "highlighter", "annotation"], ["change_annotation", "highlighter", "annotation"], ["delete_annotation", "highlighter", "annotation"], ["add_menuentry", "highlighter", "menuentry"], ["change_menuentry", "highlighter", "menuentry"], ["delete_menuentry", "highlighter", "menuentry"], ["add_project", "highlighter", "project"], ["change_project", "highlighter", "project"], ["delete_project", "highlighter", "project"], ["add_vocabularyapi", "highlighter", "vocabularyapi"], ["change_vocabularyapi", "highlighter", "vocabularyapi"], ["delete_vocabularyapi", "highlighter", "vocabularyapi"], ["add_label", "labels", "label"], ["change_label", "labels", "label"], ["delete_label", "labels", "label"], ["add_collection", "metainfo", "collection"], ["change_collection", "metainfo", "collection"], ["delete_collection", "metainfo", "collection"], ["add_source", "metainfo", "source"], ["change_source", "metainfo", "source"], ["delete_source", "metainfo", "source"], ["add_tempentityclass", "metainfo", "tempentityclass"], ["change_tempentityclass", "metainfo", "tempentityclass"], ["delete_tempentityclass", "metainfo", "tempentityclass"], ["add_text", "metainfo", "text"], ["change_text", "metainfo", "text"], ["delete_text", "metainfo", "text"], ["add_uri", "metainfo", "uri"], ["change_uri", "metainfo", "uri"], ["delete_uri", "metainfo", "uri"], ["add_eventevent", "relations", "eventevent"], ["change_eventevent", "relations", "eventevent"], ["delete_eventevent", "relations", "eventevent"], ["add_eventwork", "relations", "eventwork"], ["change_eventwork", "relations", "eventwork"], ["delete_eventwork", "relations", "eventwork"], ["add_institutionevent", "relations", "institutionevent"], ["change_institutionevent", "relations", "institutionevent"], ["delete_institutionevent", "relations", "institutionevent"], ["add_institutioninstitution", "relations", "institutioninstitution"], ["change_institutioninstitution", "relations", "institutioninstitution"], ["delete_institutioninstitution", "relations", "institutioninstitution"], ["add_institutionplace", "relations", "institutionplace"], ["change_institutionplace", "relations", "institutionplace"], ["delete_institutionplace", "relations", "institutionplace"], ["add_institutionwork", "relations", "institutionwork"], ["change_institutionwork", "relations", "institutionwork"], ["delete_institutionwork", "relations", "institutionwork"], ["add_personevent", "relations", "personevent"], ["change_personevent", "relations", "personevent"], ["delete_personevent", "relations", "personevent"], ["add_personinstitution", "relations", "personinstitution"], ["change_personinstitution", "relations", "personinstitution"], ["delete_personinstitution", "relations", "personinstitution"], ["add_personperson", "relations", "personperson"], ["change_personperson", "relations", "personperson"], ["delete_personperson", "relations", "personperson"], ["add_personplace", "relations", "personplace"], ["change_personplace", "relations", "personplace"], ["delete_personplace", "relations", "personplace"], ["add_personwork", "relations", "personwork"], ["change_personwork", "relations", "personwork"], ["delete_personwork", "relations", "personwork"], ["add_placeevent", "relations", "placeevent"], ["change_placeevent", "relations", "placeevent"], ["delete_placeevent", "relations", "placeevent"], ["add_placeplace", "relations", "placeplace"], ["change_placeplace", "relations", "placeplace"], ["delete_placeplace", "relations", "placeplace"], ["add_placework", "relations", "placework"], ["change_placework", "relations", "placework"], ["delete_placework", "relations", "placework"], ["add_workwork", "relations", "workwork"], ["change_workwork", "relations", "workwork"], ["delete_workwork", "relations", "workwork"], ["add_session", "sessions", "session"], ["change_session", "sessions", "session"], ["delete_session", "sessions", "session"], ["add_collectiontype", "vocabularies", "collectiontype"], ["change_collectiontype", "vocabularies", "collectiontype"], ["delete_collectiontype", "vocabularies", "collectiontype"], ["add_eventeventrelation", "vocabularies", "eventeventrelation"], ["change_eventeventrelation", "vocabularies", "eventeventrelation"], ["delete_eventeventrelation", "vocabularies", "eventeventrelation"], ["add_eventtype", "vocabularies", "eventtype"], ["change_eventtype", "vocabularies", "eventtype"], ["delete_eventtype", "vocabularies", "eventtype"], ["add_eventworkrelation", "vocabularies", "eventworkrelation"], ["change_eventworkrelation", "vocabularies", "eventworkrelation"], ["delete_eventworkrelation", "vocabularies", "eventworkrelation"], ["add_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["change_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["delete_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["add_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["change_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["delete_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["add_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["change_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["delete_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["add_institutiontype", "vocabularies", "institutiontype"], ["change_institutiontype", "vocabularies", "institutiontype"], ["delete_institutiontype", "vocabularies", "institutiontype"], ["add_labeltype", "vocabularies", "labeltype"], ["change_labeltype", "vocabularies", "labeltype"], ["delete_labeltype", "vocabularies", "labeltype"], ["add_personeventrelation", "vocabularies", "personeventrelation"], ["change_personeventrelation", "vocabularies", "personeventrelation"], ["delete_personeventrelation", "vocabularies", "personeventrelation"], ["add_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["change_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["delete_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["add_personpersonrelation", "vocabularies", "personpersonrelation"], ["change_personpersonrelation", "vocabularies", "personpersonrelation"], ["delete_personpersonrelation", "vocabularies", "personpersonrelation"], ["add_personplacerelation", "vocabularies", "personplacerelation"], ["change_personplacerelation", "vocabularies", "personplacerelation"], ["delete_personplacerelation", "vocabularies", "personplacerelation"], ["add_personworkrelation", "vocabularies", "personworkrelation"], ["change_personworkrelation", "vocabularies", "personworkrelation"], ["delete_personworkrelation", "vocabularies", "personworkrelation"], ["add_placeeventrelation", "vocabularies", "placeeventrelation"], ["change_placeeventrelation", "vocabularies", "placeeventrelation"], ["delete_placeeventrelation", "vocabularies", "placeeventrelation"], ["add_placeplacerelation", "vocabularies", "placeplacerelation"], ["change_placeplacerelation", "vocabularies", "placeplacerelation"], ["delete_placeplacerelation", "vocabularies", "placeplacerelation"], ["add_placetype", "vocabularies", "placetype"], ["change_placetype", "vocabularies", "placetype"], ["delete_placetype", "vocabularies", "placetype"], ["add_placeworkrelation", "vocabularies", "placeworkrelation"], ["change_placeworkrelation", "vocabularies", "placeworkrelation"], ["delete_placeworkrelation", "vocabularies", "placeworkrelation"], ["add_professiontype", "vocabularies", "professiontype"], ["change_professiontype", "vocabularies", "professiontype"], ["delete_professiontype", "vocabularies", "professiontype"], ["add_relationbaseclass", "vocabularies", "relationbaseclass"], ["change_relationbaseclass", "vocabularies", "relationbaseclass"], ["delete_relationbaseclass", "vocabularies", "relationbaseclass"], ["add_texttype", "vocabularies", "texttype"], ["change_texttype", "vocabularies", "texttype"], ["delete_texttype", "vocabularies", "texttype"], ["add_title", "vocabularies", "title"], ["change_title", "vocabularies", "title"], ["delete_title", "vocabularies", "title"], ["add_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["change_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["delete_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["add_vocabsuri", "vocabularies", "vocabsuri"], ["change_vocabsuri", "vocabularies", "vocabsuri"], ["delete_vocabsuri", "vocabularies", "vocabsuri"], ["add_worktype", "vocabularies", "worktype"], ["change_worktype", "vocabularies", "worktype"], ["delete_worktype", "vocabularies", "worktype"], ["add_workworkrelation", "vocabularies", "workworkrelation"], ["change_workworkrelation", "vocabularies", "workworkrelation"], ["delete_workworkrelation", "vocabularies", "workworkrelation"]]}}, {"model": "auth.group", "fields": {"name": "apis", "permissions": []}}, {"model": "auth.group", "fields": {"name": "staribacher", "permissions": []}}, {"model": "auth.group", "fields": {"name": "Editoren Apis", "permissions": []}}, {"model": "auth.user", "fields": {"password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", "last_login": "2017-04-19T08:59:07Z", "is_superuser": true, "username": "sennierer", "first_name": "Matthias", "last_name": "Schl\u00f6gl", "email": "matthias.schloegl@oeaw.ac.at", "is_staff": true, "is_active": true, "date_joined": "2016-04-05T15:11:00Z", "groups": [["apis"], ["Editoren Apis"]], "user_permissions": [["add_logentry", "admin", "logentry"], ["change_logentry", "admin", "logentry"], ["delete_logentry", "admin", "logentry"], ["add_group", "auth", "group"], ["change_group", "auth", "group"], ["delete_group", "auth", "group"], ["add_permission", "auth", "permission"], ["change_permission", "auth", "permission"], ["delete_permission", "auth", "permission"], ["add_user", "auth", "user"], ["change_user", "auth", "user"], ["delete_user", "auth", "user"], ["add_contenttype", "contenttypes", "contenttype"], ["change_contenttype", "contenttypes", "contenttype"], ["delete_contenttype", "contenttypes", "contenttype"], ["add_event", "entities", "event"], ["change_event", "entities", "event"], ["delete_event", "entities", "event"], ["add_institution", "entities", "institution"], ["change_institution", "entities", "institution"], ["delete_institution", "entities", "institution"], ["add_person", "entities", "person"], ["change_person", "entities", "person"], ["delete_person", "entities", "person"], ["add_place", "entities", "place"], ["change_place", "entities", "place"], ["delete_place", "entities", "place"], ["add_work", "entities", "work"], ["change_work", "entities", "work"], ["delete_work", "entities", "work"], ["add_annotation", "highlighter", "annotation"], ["change_annotation", "highlighter", "annotation"], ["delete_annotation", "highlighter", "annotation"], ["add_menuentry", "highlighter", "menuentry"], ["change_menuentry", "highlighter", "menuentry"], ["delete_menuentry", "highlighter", "menuentry"], ["add_project", "highlighter", "project"], ["change_project", "highlighter", "project"], ["delete_project", "highlighter", "project"], ["add_vocabularyapi", "highlighter", "vocabularyapi"], ["change_vocabularyapi", "highlighter", "vocabularyapi"], ["delete_vocabularyapi", "highlighter", "vocabularyapi"], ["add_label", "labels", "label"], ["change_label", "labels", "label"], ["delete_label", "labels", "label"], ["add_collection", "metainfo", "collection"], ["change_collection", "metainfo", "collection"], ["delete_collection", "metainfo", "collection"], ["add_source", "metainfo", "source"], ["change_source", "metainfo", "source"], ["delete_source", "metainfo", "source"], ["add_tempentityclass", "metainfo", "tempentityclass"], ["change_tempentityclass", "metainfo", "tempentityclass"], ["delete_tempentityclass", "metainfo", "tempentityclass"], ["add_text", "metainfo", "text"], ["change_text", "metainfo", "text"], ["delete_text", "metainfo", "text"], ["add_uri", "metainfo", "uri"], ["change_uri", "metainfo", "uri"], ["delete_uri", "metainfo", "uri"], ["add_uricandidate", "metainfo", "uricandidate"], ["change_uricandidate", "metainfo", "uricandidate"], ["delete_uricandidate", "metainfo", "uricandidate"], ["add_eventevent", "relations", "eventevent"], ["change_eventevent", "relations", "eventevent"], ["delete_eventevent", "relations", "eventevent"], ["add_eventwork", "relations", "eventwork"], ["change_eventwork", "relations", "eventwork"], ["delete_eventwork", "relations", "eventwork"], ["add_institutionevent", "relations", "institutionevent"], ["change_institutionevent", "relations", "institutionevent"], ["delete_institutionevent", "relations", "institutionevent"], ["add_institutioninstitution", "relations", "institutioninstitution"], ["change_institutioninstitution", "relations", "institutioninstitution"], ["delete_institutioninstitution", "relations", "institutioninstitution"], ["add_institutionplace", "relations", "institutionplace"], ["change_institutionplace", "relations", "institutionplace"], ["delete_institutionplace", "relations", "institutionplace"], ["add_institutionwork", "relations", "institutionwork"], ["change_institutionwork", "relations", "institutionwork"], ["delete_institutionwork", "relations", "institutionwork"], ["add_personevent", "relations", "personevent"], ["change_personevent", "relations", "personevent"], ["delete_personevent", "relations", "personevent"], ["add_personinstitution", "relations", "personinstitution"], ["change_personinstitution", "relations", "personinstitution"], ["delete_personinstitution", "relations", "personinstitution"], ["add_personperson", "relations", "personperson"], ["change_personperson", "relations", "personperson"], ["delete_personperson", "relations", "personperson"], ["add_personplace", "relations", "personplace"], ["change_personplace", "relations", "personplace"], ["delete_personplace", "relations", "personplace"], ["add_personwork", "relations", "personwork"], ["change_personwork", "relations", "personwork"], ["delete_personwork", "relations", "personwork"], ["add_placeevent", "relations", "placeevent"], ["change_placeevent", "relations", "placeevent"], ["delete_placeevent", "relations", "placeevent"], ["add_placeplace", "relations", "placeplace"], ["change_placeplace", "relations", "placeplace"], ["delete_placeplace", "relations", "placeplace"], ["add_placework", "relations", "placework"], ["change_placework", "relations", "placework"], ["delete_placework", "relations", "placework"], ["add_workwork", "relations", "workwork"], ["change_workwork", "relations", "workwork"], ["delete_workwork", "relations", "workwork"], ["add_revision", "reversion", "revision"], ["change_revision", "reversion", "revision"], ["delete_revision", "reversion", "revision"], ["add_version", "reversion", "version"], ["change_version", "reversion", "version"], ["delete_version", "reversion", "version"], ["add_session", "sessions", "session"], ["change_session", "sessions", "session"], ["delete_session", "sessions", "session"], ["add_collectiontype", "vocabularies", "collectiontype"], ["change_collectiontype", "vocabularies", "collectiontype"], ["delete_collectiontype", "vocabularies", "collectiontype"], ["add_eventeventrelation", "vocabularies", "eventeventrelation"], ["change_eventeventrelation", "vocabularies", "eventeventrelation"], ["delete_eventeventrelation", "vocabularies", "eventeventrelation"], ["add_eventtype", "vocabularies", "eventtype"], ["change_eventtype", "vocabularies", "eventtype"], ["delete_eventtype", "vocabularies", "eventtype"], ["add_eventworkrelation", "vocabularies", "eventworkrelation"], ["change_eventworkrelation", "vocabularies", "eventworkrelation"], ["delete_eventworkrelation", "vocabularies", "eventworkrelation"], ["add_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["change_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["delete_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["add_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["change_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["delete_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["add_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["change_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["delete_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["add_institutiontype", "vocabularies", "institutiontype"], ["change_institutiontype", "vocabularies", "institutiontype"], ["delete_institutiontype", "vocabularies", "institutiontype"], ["add_labeltype", "vocabularies", "labeltype"], ["change_labeltype", "vocabularies", "labeltype"], ["delete_labeltype", "vocabularies", "labeltype"], ["add_personeventrelation", "vocabularies", "personeventrelation"], ["change_personeventrelation", "vocabularies", "personeventrelation"], ["delete_personeventrelation", "vocabularies", "personeventrelation"], ["add_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["change_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["delete_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["add_personpersonrelation", "vocabularies", "personpersonrelation"], ["change_personpersonrelation", "vocabularies", "personpersonrelation"], ["delete_personpersonrelation", "vocabularies", "personpersonrelation"], ["add_personplacerelation", "vocabularies", "personplacerelation"], ["change_personplacerelation", "vocabularies", "personplacerelation"], ["delete_personplacerelation", "vocabularies", "personplacerelation"], ["add_personworkrelation", "vocabularies", "personworkrelation"], ["change_personworkrelation", "vocabularies", "personworkrelation"], ["delete_personworkrelation", "vocabularies", "personworkrelation"], ["add_placeeventrelation", "vocabularies", "placeeventrelation"], ["change_placeeventrelation", "vocabularies", "placeeventrelation"], ["delete_placeeventrelation", "vocabularies", "placeeventrelation"], ["add_placeplacerelation", "vocabularies", "placeplacerelation"], ["change_placeplacerelation", "vocabularies", "placeplacerelation"], ["delete_placeplacerelation", "vocabularies", "placeplacerelation"], ["add_placetype", "vocabularies", "placetype"], ["change_placetype", "vocabularies", "placetype"], ["delete_placetype", "vocabularies", "placetype"], ["add_placeworkrelation", "vocabularies", "placeworkrelation"], ["change_placeworkrelation", "vocabularies", "placeworkrelation"], ["delete_placeworkrelation", "vocabularies", "placeworkrelation"], ["add_professiontype", "vocabularies", "professiontype"], ["change_professiontype", "vocabularies", "professiontype"], ["delete_professiontype", "vocabularies", "professiontype"], ["add_relationbaseclass", "vocabularies", "relationbaseclass"], ["change_relationbaseclass", "vocabularies", "relationbaseclass"], ["delete_relationbaseclass", "vocabularies", "relationbaseclass"], ["add_texttype", "vocabularies", "texttype"], ["change_texttype", "vocabularies", "texttype"], ["delete_texttype", "vocabularies", "texttype"], ["add_title", "vocabularies", "title"], ["change_title", "vocabularies", "title"], ["delete_title", "vocabularies", "title"], ["add_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["change_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["delete_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["add_vocabsuri", "vocabularies", "vocabsuri"], ["change_vocabsuri", "vocabularies", "vocabsuri"], ["delete_vocabsuri", "vocabularies", "vocabsuri"], ["add_worktype", "vocabularies", "worktype"], ["change_worktype", "vocabularies", "worktype"], ["delete_worktype", "vocabularies", "worktype"], ["add_workworkrelation", "vocabularies", "workworkrelation"], ["change_workworkrelation", "vocabularies", "workworkrelation"], ["delete_workworkrelation", "vocabularies", "workworkrelation"]]}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1, "fields": {"name": "old entity of", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Place description \u00d6BL", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "vocabsor similar import", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "\u00d6BL place name", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "seat of a third-order administrative division (PPLA3)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "weitere Namensformen", "description": "wie im Gideon, statt alternative name", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "independent political entity (PCLI)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "populated place (PPL)", "description": "a city, town, village, or other agglomeration of buildings where people live and work", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "seat of a fourth-order administrative division (PPLA4)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "seat of a second-order administrative division (PPLA2)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "capital of a political entity (PPLC)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "seat of a first-order administrative division (PPLA)", "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 125, "fields": {"name": "test data import", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Literatur, Buch- und Zeitungswesen", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "\u00d6BL Haupttext", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "\u00d6BL Kurzinfo", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Rechtswesen und Rechtswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 133, "fields": {"name": "Rechtshistoriker und Abgeordneter", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Politik", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 135, "fields": {"name": "Naturwissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Botaniker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 137, "fields": {"name": "Wirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 138, "fields": {"name": "Instrumentenbauer", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 139, "fields": {"name": "Bildende und angewandte Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Maler", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 141, "fields": {"name": "Religionen und Theologie", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Bischof", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 143, "fields": {"name": "Milit\u00e4r", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "General", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Verwaltungsjurist und Politiker", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 146, "fields": {"name": "Verwaltung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 147, "fields": {"name": "Ministerpr\u00e4sident", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Zoologe", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Geisteswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Arch\u00e4ologe", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Musik und darstellende Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Schauspieler und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Medizin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "P\u00e4diater", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Technik", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Milit\u00e4rtechniker, Offizier und ungarischer Freiheitsk\u00e4mpfer", "description": "", "parent_class": 157, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Beamter und Fachschriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Historiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Architekt", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Diplomat", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Sport", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Eiskunstl\u00e4uferin", "description": "", "parent_class": 163, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 165, "fields": {"name": "Gro\u00dfindustrielle", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 166, "fields": {"name": "Diverse", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Bautechniker", "description": "", "parent_class": 157, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Maler und Graphiker", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Politikerin und Schriftstellerin", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Schauspieler, Theaterdirektor und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Physiologe", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Jurist", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Fabrikant", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Schriftsteller und Journalist", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Internist", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Landesverteidiger und Schriftsteller", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 177, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Malerin", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 179, "fields": {"name": "Volkss\u00e4nger", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Sozial- und Wirtschaftswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Betriebswirtschafter", "description": "", "parent_class": 180, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 182, "fields": {"name": "Slawist und Linguist", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 183, "fields": {"name": "Admiral", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Stigmatisierte", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 187, "fields": {"name": "Pharmazeut", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Unterrichtswesen", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Lehrer", "description": "", "parent_class": 188, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Montanist und Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 191, "fields": {"name": "Maler und Radierer", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Philologe und Literarhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Biologe und Lehrer", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Physiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Offizier und Diplomat", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Theologe", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Ornithologe", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Diplomat und Politiker", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Lokalhistoriker, Gewerbetreibender und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Schriftsteller und Seelsorger", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Industrieller", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Mediziner", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Komponist, Chorleiter und Musikkritiker", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Kirchenhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Journalist und Lehrer", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Fabrikant und Politiker", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "S\u00e4nger und Schauspieler", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Chirurg", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 209, "fields": {"name": "Jurist und Beamter", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Feldmarschalleutnant und Sicherheitsbeamter", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Pianist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Politiker und Jurist", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 214, "fields": {"name": "Musiker und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Bildhauer", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Harfenist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 217, "fields": {"name": "Land- und Forstwirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 218, "fields": {"name": "Landwirt und Weinhauer", "description": "", "parent_class": 217, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 219, "fields": {"name": "Ordensangeh\u00f6riger und Stifter", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 220, "fields": {"name": "Historiker und Lehrer", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 221, "fields": {"name": "Politiker und Kaufmann", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 222, "fields": {"name": "Journalist und Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Maler und Karikaturist", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Offizier", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Bischof und Missionar", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 226, "fields": {"name": "P\u00e4dagogin und Physikerin", "description": "", "parent_class": 188, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 227, "fields": {"name": "Historiker und Byzantinist", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Archivar und Historiker", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Geistlicher, Historiker und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 230, "fields": {"name": "Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Offizier und Politiker", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "S\u00e4nger, Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 233, "fields": {"name": "Journalist und Politiker", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Pfadfinderf\u00fchrer und Offizier", "description": "", "parent_class": 166, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "F\u00fcrstbischof", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 236, "fields": {"name": "Place review comments", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 371, "fields": {"name": "first-order administrative division (ADM1)", "description": "a primary administrative division of a country, such as a state in the United States", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "third-order administrative division (ADM3)", "description": "a subdivision of a second-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "fifth-order administrative division (ADM5)", "description": "a subdivision of a fourth-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Krieg", "description": "auch Revolution und B\u00fcrgerkrieg, Unterkategorie ist Schlacht", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Attentat", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 384, "fields": {"name": "Epidemie", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Verleihung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Festzug", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Kongress", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "R\u00fccktritt", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Fertigstellung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 392, "fields": {"name": "Erstauff\u00fchrung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 394, "fields": {"name": "Berufung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Abspaltung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "nahm Teil an", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "hatte als Teilnehmer", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Schlacht", "description": "", "parent_class": 380, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Friedensverhandlung", "description": "", "parent_class": 380, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "historical first-order administrative division (ADM1H)", "description": "a former first-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "author", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Publikation", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Pseudonym", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "M\u00e4dchenname", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 432, "fields": {"name": "K\u00fcnstlername", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "fourth-order administrative division (ADM4)", "description": "a subdivision of a third-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 452, "fields": {"name": "second-order administrative division (ADM2)", "description": "a subdivision of a first-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Graf", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Herzog", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 462, "fields": {"name": "Freiherr", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Erzherzog", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "K\u00f6nig", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Kaiser", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 466, "fields": {"name": "F\u00fcrst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Freiin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Freifrau", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "F\u00fcrstin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 470, "fields": {"name": "Erzherz\u00f6gin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "K\u00f6nigin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 483, "fields": {"name": "Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Pianist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "place of birth", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "place of death", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "alternative Namensform", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 598, "fields": {"name": "Name laut \u00d6BL XML", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 606, "fields": {"name": "Ehename", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Taufname", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 653, "fields": {"name": "not defined", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1750, "fields": {"name": "Pianistin", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "Komponist und Musiklehrer", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5578, "fields": {"name": "Schriftstellerin, \u00dcbersetzerin und Pianistin", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5599, "fields": {"name": "Pianist, P\u00e4dagoge und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5608, "fields": {"name": "undefined", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5702, "fields": {"name": "situated in", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 8}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5708, "fields": {"name": "is superior of", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5709, "fields": {"name": "is succeeding", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5711, "fields": {"name": "is preceding", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5729, "fields": {"name": "section of populated place (PPLX)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5741, "fields": {"name": "family member", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5742, "fields": {"name": "friend", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5743, "fields": {"name": "affiliation", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 4}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5765, "fields": {"name": "administrative division (ADMD)", "description": "an administrative division of a country, undifferentiated as to administrative level", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5772, "fields": {"name": "research dataset", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 11}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5789, "fields": {"name": "political entity (PCL)", "description": "", "parent_class": null, "status": "can", "userAdded": null, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5808, "fields": {"name": "dependent political entity (PCLD)", "description": "", "parent_class": null, "status": "can", "userAdded": null, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5811, "fields": {"name": "Commentary Staribacher", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.relationbaseclass", "pk": 1, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 8, "fields": {"name_reverse": "includes"}}, {"model": "vocabularies.relationbaseclass", "pk": 398, "fields": {"name_reverse": "hatte als Teilnehmer"}}, {"model": "vocabularies.relationbaseclass", "pk": 399, "fields": {"name_reverse": "nahm Teil an"}}, {"model": "vocabularies.relationbaseclass", "pk": 424, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 595, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 596, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5608, "fields": {"name_reverse": "undefined"}}, {"model": "vocabularies.relationbaseclass", "pk": 5702, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5708, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5709, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5711, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5741, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5742, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5743, "fields": {"name_reverse": ""}}, {"model": "vocabularies.worktype", "pk": 429, "fields": {}}, {"model": "vocabularies.title", "pk": 460, "fields": {"abbreviation": "Gf."}}, {"model": "vocabularies.title", "pk": 461, "fields": {"abbreviation": "Hg."}}, {"model": "vocabularies.title", "pk": 462, "fields": {"abbreviation": "Frh."}}, {"model": "vocabularies.title", "pk": 463, "fields": {"abbreviation": "Erzhg."}}, {"model": "vocabularies.title", "pk": 464, "fields": {"abbreviation": "Kg."}}, {"model": "vocabularies.title", "pk": 465, "fields": {"abbreviation": "K."}}, {"model": "vocabularies.title", "pk": 466, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 467, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 468, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 469, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 470, "fields": {"abbreviation": "Erzhgn."}}, {"model": "vocabularies.title", "pk": 474, "fields": {"abbreviation": "Kngn."}}, {"model": "vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 133, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 135, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 137, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 138, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 139, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 141, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 143, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 146, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 147, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 149, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 165, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 166, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 172, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 177, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 179, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 182, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 183, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 187, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 191, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 209, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 214, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 217, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 218, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 219, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 220, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 221, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 222, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 226, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 227, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 230, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 233, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 483, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 1750, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 2054, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5578, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5599, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "vocabularies.placetype", "pk": 11, "fields": {}}, {"model": "vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "vocabularies.placetype", "pk": 371, "fields": {}}, {"model": "vocabularies.placetype", "pk": 373, "fields": {}}, {"model": "vocabularies.placetype", "pk": 375, "fields": {}}, {"model": "vocabularies.placetype", "pk": 420, "fields": {}}, {"model": "vocabularies.placetype", "pk": 443, "fields": {}}, {"model": "vocabularies.placetype", "pk": 452, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5729, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5765, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5789, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5808, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 380, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 382, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 384, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 385, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 386, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 388, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 390, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 391, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 392, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 393, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 394, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 396, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 400, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 401, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 4, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 6, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 430, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 431, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 432, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 433, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 597, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 598, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 606, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 612, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 653, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 3, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 125, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 5772, "fields": {}}, {"model": "vocabularies.texttype", "pk": 2, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 130, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 131, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 236, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 5811, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.personpersonrelation", "pk": 5608, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5741, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5742, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 595, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 596, "fields": {}}, {"model": "vocabularies.personinstitutionrelation", "pk": 5743, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 398, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 399, "fields": {}}, {"model": "vocabularies.personworkrelation", "pk": 424, "fields": {}}, {"model": "vocabularies.institutionplacerelation", "pk": 5702, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5708, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5709, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5711, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 1, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 8, "fields": {}}, {"model": "metainfo.collection", "pk": 29, "fields": {"name": "Testdata \u00d6BL", "description": "", "collection_type": null, "groups_allowed": []}}, {"model": "highlighter.project", "pk": 1, "fields": {"name": "highlight places", "user": ["sennierer"], "description": "", "base_url": "", "store_text": false}}, {"model": "highlighter.annotation", "pk": 237, "fields": {"start": 239, "end": 250, "orig_string": "Carl Czerny", "text": 47030, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92840]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 331, "fields": {"start": 879, "end": 899, "orig_string": "Ludwig van Beethoven", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92930]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 332, "fields": {"start": 1362, "end": 1380, "orig_string": "Sigismund Thalberg", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92931]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 333, "fields": {"start": 1383, "end": 1408, "orig_string": "Marie Leopoldine Blahetka", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92932]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 334, "fields": {"start": 1439, "end": 1454, "orig_string": "Franz von Liszt", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92933]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 335, "fields": {"start": 1736, "end": 1751, "orig_string": "Ignaz Moscheles", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92934]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 336, "fields": {"start": 3031, "end": 3043, "orig_string": "Anton Reicha", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92935]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1214, "fields": {"start": 40, "end": 55, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1215, "fields": {"start": 141, "end": 151, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1216, "fields": {"start": 225, "end": 262, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1217, "fields": {"start": 354, "end": 378, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1218, "fields": {"start": 451, "end": 478, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1219, "fields": {"start": 500, "end": 508, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1220, "fields": {"start": 549, "end": 566, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1221, "fields": {"start": 650, "end": 670, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "authtoken.token", "pk": "bb650ee43b63b5e13cbac9320157b08c36099452", "fields": {"user": ["sennierer"], "created": "2016-08-26T08:01:26Z"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2016-04-07T11:10:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "13", "object_repr": "oebl", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2016-04-07T11:11:00Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "13", "object_repr": "oebl", "action_flag": 2, "change_message": "Changed is_staff and user_permissions."}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2016-04-13T15:46:02Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "40", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2016-04-14T11:55:13Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "50", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2016-04-14T11:55:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "53", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2016-04-14T12:41:46Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2016-04-15T07:22:05Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2016-04-15T07:22:26Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2016-04-18T11:07:39Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "6", "object_repr": "testcollection 18.4", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2016-04-18T11:16:20Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "107", "object_repr": "Editlogs", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2016-04-26T09:31:21Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "44", "object_repr": "place of death", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2016-04-26T09:31:47Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "43", "object_repr": "place of birth", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2016-04-27T10:26:06Z", "user": ["sennierer"], "content_type": ["vocabularies", "institutionplacerelation"], "object_id": "108", "object_repr": "located in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2016-04-28T09:03:10Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "109", "object_repr": "studied in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2016-05-03T09:51:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "110", "object_repr": "Place accuracy test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2016-05-03T11:01:33Z", "user": ["sennierer"], "content_type": ["relations", "personplace"], "object_id": "23993", "object_repr": "Defregger, Franz von (studied in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2016-05-09T08:58:18Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2016-05-09T08:58:25Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2016-05-09T10:07:01Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "236", "object_repr": "Place review comments", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2016-05-09T10:10:38Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "2", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2016-05-23T07:03:50Z", "user": ["sennierer"], "content_type": ["vocabularies", "personinstitutionrelation"], "object_id": "279", "object_repr": "is Vizepr\u00e4sident von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2016-05-23T09:31:15Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "237", "object_repr": "wirkte in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "245", "object_repr": "Kind", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "244", "object_repr": "Eltern", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "243", "object_repr": "Vater", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "242", "object_repr": "Mutter", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2016-05-25T11:21:38Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "421", "object_repr": "Vater/Mutter", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2016-06-06T07:44:47Z", "user": ["sennierer"], "content_type": ["vocabularies", "title"], "object_id": "459", "object_repr": "Graf", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2016-06-06T07:45:44Z", "user": ["sennierer"], "content_type": ["vocabularies", "title"], "object_id": "459", "object_repr": "Graf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2016-06-21T09:34:32Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "2", "object_repr": "apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2016-06-21T09:34:54Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2016-08-02T08:41:51Z", "user": ["sennierer"], "content_type": ["highlighter", "project"], "object_id": "1", "object_repr": "highlight places", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2016-08-02T08:43:38Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2016-08-02T08:44:13Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2016-08-02T08:45:35Z", "user": ["sennierer"], "content_type": ["highlighter", "texthigh"], "object_id": "1", "object_repr": "\u00d6BL Haupttext", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2016-08-02T08:45:50Z", "user": ["sennierer"], "content_type": ["highlighter", "texthigh"], "object_id": "2", "object_repr": "\u00d6bl Kurzinfo", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2016-08-02T08:49:51Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "2", "object_repr": "Person Institution Form", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2016-08-02T08:50:13Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "2", "object_repr": "Person Institution Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2016-08-05T09:01:30Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "KaiserM", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2016-08-05T09:02:10Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "KaiserM", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2016-08-05T09:02:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2016-08-05T12:44:55Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2016-08-05T12:45:10Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2016-08-22T14:47:23Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2016-08-22T14:47:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2016-08-26T08:00:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2016-08-26T08:00:50Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "is_staff, is_superuser und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2016-08-26T08:01:14Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2016-08-26T08:01:26Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2016-09-05T08:05:05Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "18", "object_repr": "CGruber", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2016-09-05T08:05:29Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "18", "object_repr": "CGruber", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2016-09-06T10:50:39Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2016-09-06T10:51:00Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2016-09-06T14:33:23Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "5608", "object_repr": "undefined", "action_flag": 2, "change_message": "name_reverse ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2016-09-07T10:05:46Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2016-09-07T10:05:53Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2016-09-07T12:36:40Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2016-09-07T12:36:55Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2016-09-21T09:15:20Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2016-09-21T09:15:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2016-10-03T14:34:28Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2016-10-03T14:34:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "is_staff ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2016-10-03T14:34:56Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "3", "object_repr": "staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2016-10-03T14:39:11Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "3", "object_repr": "staribacher", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2016-10-03T14:39:40Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2016-10-03T14:45:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "collectiontype"], "object_id": "5772", "object_repr": "research dataset", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2016-10-03T14:45:47Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "collection_type ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2016-10-03T14:47:21Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2016-10-06T06:56:20Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2016-10-06T06:56:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2016-10-06T06:58:12Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2016-10-06T06:58:30Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "17", "object_repr": "Mittelalter 7.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2016-10-06T07:00:34Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "16", "object_repr": "\u00d6BL additional import missing XMLs 7.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2016-10-06T07:00:50Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "15", "object_repr": "K\u00fcnstlerhaus 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2016-10-06T07:01:03Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "11", "object_repr": "Presse 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2016-10-06T07:01:25Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "7", "object_repr": "\u00d6BL complete import test 30.8.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2016-10-06T07:01:46Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "8", "object_repr": "\u00d6BL additional import 66lfg 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2016-10-06T07:01:55Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "9", "object_repr": "\u00d6BL additional import 4online 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2016-10-06T07:31:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2016-10-06T07:32:15Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2016-10-07T16:13:36Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2016-10-07T16:13:56Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2016-10-07T16:14:12Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2016-10-07T16:14:34Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "BKrautgartner", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2016-10-12T12:25:02Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2016-10-12T12:25:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2016-10-12T12:27:20Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2016-10-14T11:10:59Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "3", "object_repr": "Person Person", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2016-10-14T11:12:53Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "3", "object_repr": "Person Person Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2016-10-14T11:13:18Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "1", "object_repr": "Person Place Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2016-10-14T11:13:24Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "3", "object_repr": "Person Person Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2016-10-24T09:04:11Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2016-10-24T09:04:27Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2016-10-25T10:05:10Z", "user": ["sennierer"], "content_type": ["highlighter", "annotationproject"], "object_id": "1", "object_repr": "Default", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2016-12-02T15:27:02Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 851, "fields": {"action_time": "2017-01-11T11:53:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 852, "fields": {"action_time": "2017-01-11T11:57:36Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "is_staff und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 853, "fields": {"action_time": "2017-01-11T11:57:58Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 854, "fields": {"action_time": "2017-01-11T12:04:57Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 855, "fields": {"action_time": "2017-01-11T12:37:10Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "23", "object_repr": "300 random select", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 856, "fields": {"action_time": "2017-01-11T12:37:13Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "22", "object_repr": "300 selec names", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 857, "fields": {"action_time": "2017-01-11T12:37:44Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "5", "object_repr": "\u00d6BL places import 6.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 858, "fields": {"action_time": "2017-01-11T12:37:51Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "4", "object_repr": "\u00d6BL test data import 9.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 859, "fields": {"action_time": "2017-01-11T12:38:00Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "1", "object_repr": "\u00d6BL places import 6.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 860, "fields": {"action_time": "2017-01-11T13:47:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 861, "fields": {"action_time": "2017-01-23T12:13:06Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 875, "fields": {"action_time": "2017-02-21T13:34:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 882, "fields": {"action_time": "2017-02-27T11:38:32Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "25", "object_repr": "Presse-Graz", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 884, "fields": {"action_time": "2017-03-07T08:29:18Z", "user": ["sennierer"], "content_type": ["vocabularies", "personinstitutionrelation"], "object_id": "5678", "object_repr": "war Lehrling", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 892, "fields": {"action_time": "2017-03-13T09:14:53Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 893, "fields": {"action_time": "2017-03-13T09:16:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 894, "fields": {"action_time": "2017-03-13T09:17:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 895, "fields": {"action_time": "2017-03-13T09:17:37Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 899, "fields": {"action_time": "2017-03-13T10:04:15Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 900, "fields": {"action_time": "2017-03-13T10:04:24Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 903, "fields": {"action_time": "2017-03-21T14:23:50Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "5811", "object_repr": "Comentary Staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 904, "fields": {"action_time": "2017-03-21T14:24:49Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "5811", "object_repr": "Commentary Staribacher", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 905, "fields": {"action_time": "2017-03-21T14:51:26Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 906, "fields": {"action_time": "2017-03-21T14:52:09Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 913, "fields": {"action_time": "2017-04-03T11:41:06Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "26", "object_repr": "Default import collection", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 916, "fields": {"action_time": "2017-04-04T10:19:05Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 917, "fields": {"action_time": "2017-04-04T10:19:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 922, "fields": {"action_time": "2017-04-11T10:29:05Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "4", "object_repr": "Editoren Apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 923, "fields": {"action_time": "2017-04-11T10:29:28Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 924, "fields": {"action_time": "2017-04-11T10:29:38Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 925, "fields": {"action_time": "2017-04-11T10:29:49Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 926, "fields": {"action_time": "2017-04-11T10:29:57Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 927, "fields": {"action_time": "2017-04-11T10:30:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 928, "fields": {"action_time": "2017-04-11T10:30:15Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 929, "fields": {"action_time": "2017-04-11T10:31:23Z", "user": ["sennierer"], "content_type": ["highlighter", "annotationproject"], "object_id": "6", "object_repr": "Gold Standard 28.3.2017", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 930, "fields": {"action_time": "2017-05-02T10:28:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}] \ No newline at end of file +[{"model": "contenttypes.contenttype", "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "labels", "model": "label"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "person"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "place"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "event"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "work"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "project"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "annotation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "vocabularyapi"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "menuentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "reversion", "model": "version"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "uricandidate"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "texthigh"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "annotationproject"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "authtoken", "model": "token"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "guardian", "model": "userobjectpermission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "guardian", "model": "groupobjectpermission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutionworkrelation"}}, {"model": "sessions.session", "pk": "0952nbb3skn1yipximadakv8bg67u2fm", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-21T15:56:15Z"}}, {"model": "sessions.session", "pk": "0ffzd5j8mj2loz7w9o63ti2vg63isgsj", "fields": {"session_data": "YjQzM2RhNWQwMjIyMjcyYWJhYTVhZjUxMWI0MjA3ZjdlYTkxMTIwYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-04-24T09:00:32Z"}}, {"model": "sessions.session", "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-12T09:16:06Z"}}, {"model": "sessions.session", "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-26T10:05:04Z"}}, {"model": "sessions.session", "pk": "0pb9zfbqg68p8dkf9il8yd1nfnet4hou", "fields": {"session_data": "YzMwNGIyNGIyYmFmNTJhZWQwZTY3YjQ2MDRmMTlmZDJmZjE5YTFlNzp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNiJdfQ==", "expire_date": "2017-05-12T11:29:11Z"}}, {"model": "sessions.session", "pk": "0yj2f7pv56w61lazsa2btsyfl3vj5ggj", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-04-18T19:28:03Z"}}, {"model": "sessions.session", "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-28T09:36:22Z"}}, {"model": "sessions.session", "pk": "17188fqkhwwemz91phd0gdgifcpuw531", "fields": {"session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==", "expire_date": "2016-12-23T14:35:05Z"}}, {"model": "sessions.session", "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn", "fields": {"session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9", "expire_date": "2016-11-10T13:45:57Z"}}, {"model": "sessions.session", "pk": "1iccsxivof263x10kvzx24cpvfuisbsi", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T10:09:36Z"}}, {"model": "sessions.session", "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T08:25:02Z"}}, {"model": "sessions.session", "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-03T06:28:05Z"}}, {"model": "sessions.session", "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-29T09:34:16Z"}}, {"model": "sessions.session", "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-17T10:44:53Z"}}, {"model": "sessions.session", "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T13:49:39Z"}}, {"model": "sessions.session", "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:08:50Z"}}, {"model": "sessions.session", "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-10T08:17:25Z"}}, {"model": "sessions.session", "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-26T14:15:06Z"}}, {"model": "sessions.session", "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:51:31Z"}}, {"model": "sessions.session", "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T13:15:39Z"}}, {"model": "sessions.session", "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-13T08:50:52Z"}}, {"model": "sessions.session", "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T15:43:29Z"}}, {"model": "sessions.session", "pk": "3f0z4r7zm0tht811km9py85tymlqp00t", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T16:42:42Z"}}, {"model": "sessions.session", "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T12:37:18Z"}}, {"model": "sessions.session", "pk": "3jko01lpmo2mga91cswnbozalltzmk3y", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-04T09:48:21Z"}}, {"model": "sessions.session", "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T07:40:34Z"}}, {"model": "sessions.session", "pk": "3rxj3sq56irbv3dsa6p238v3yni8or63", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-02-06T12:38:47Z"}}, {"model": "sessions.session", "pk": "418j45avvq5u7hb2a25lbny53jbpvs07", "fields": {"session_data": "ZmMxNjFlMmE4YWYyODI5NTk4MTJkMmQ1N2YwYjRiNjI1NWMwZDE4Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCIsIl9hdXRoX3VzZXJfaWQiOiIxNCJ9", "expire_date": "2017-01-03T15:38:05Z"}}, {"model": "sessions.session", "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-05-12T13:36:05Z"}}, {"model": "sessions.session", "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T09:34:31Z"}}, {"model": "sessions.session", "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:28:30Z"}}, {"model": "sessions.session", "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-08T08:03:34Z"}}, {"model": "sessions.session", "pk": "4n2qt23rcidnpg4kzgkda4kpex4lmfa5", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-24T13:31:41Z"}}, {"model": "sessions.session", "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-16T15:23:26Z"}}, {"model": "sessions.session", "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-26T16:58:24Z"}}, {"model": "sessions.session", "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a", "fields": {"session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=", "expire_date": "2016-03-28T08:35:56Z"}}, {"model": "sessions.session", "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:15:48Z"}}, {"model": "sessions.session", "pk": "530ad4x705b6e19mkq2p46a9hvib918m", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T10:26:56Z"}}, {"model": "sessions.session", "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-20T13:12:52Z"}}, {"model": "sessions.session", "pk": "59gq2d5fuwt2524677c8asdzlx2hnwre", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-03-24T09:19:20Z"}}, {"model": "sessions.session", "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-25T10:51:39Z"}}, {"model": "sessions.session", "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw", "fields": {"session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2016-12-29T15:38:59Z"}}, {"model": "sessions.session", "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-21T14:12:41Z"}}, {"model": "sessions.session", "pk": "5s6tkp2xjydwbep1z8iuavyf6dhbdnq9", "fields": {"session_data": "OTliNDY0YWRlNmUwOTVkOWJjNDExNDViOTBlNjFhOTZiNzkwY2JjZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjExIiwiMTAiLCI4IiwiOSIsIjEyIiwiNTEiLCI1MiIsIjQ2IiwiNDQiLCI0NSIsIjQ3IiwiNDIiLCI0MSIsIjM5IiwiNDAiLCI0MyIsIjQ5IiwiNDgiLCI1MCIsIjUzIl0sIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJhbm5vdGF0aW9uX3Byb2plY3QiOiIzIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCJdfQ==", "expire_date": "2017-04-17T10:46:44Z"}}, {"model": "sessions.session", "pk": "5vhcdmzs9c58duuxf2jky7fpdzqoz1lo", "fields": {"session_data": "ZjVjNjVmZWI5ZjE2YzU2MDViNTEzNmUxZWE0YTlhMmIzYzA5OWRmOTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCIsIl9hdXRoX3VzZXJfaWQiOiIyMyJ9", "expire_date": "2017-01-25T10:00:14Z"}}, {"model": "sessions.session", "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:22:04Z"}}, {"model": "sessions.session", "pk": "62u81vaiix78ydua95lqixfyi1d6jt1p", "fields": {"session_data": "NDJlMDI4MjUxM2I1OTVlMGY1YzZjNzc2MzE3ZjRhNTJhZGU2M2E4Mzp7InVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMTQiXSwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjQwIl0sImFubm90YXRpb25fcHJvamVjdCI6bnVsbH0=", "expire_date": "2017-04-20T08:35:44Z"}}, {"model": "sessions.session", "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-09T08:10:25Z"}}, {"model": "sessions.session", "pk": "6k16reryrvgvlux4peggv2dwnpdw018v", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-08-26T11:22:37Z"}}, {"model": "sessions.session", "pk": "6konr8g4jk3afgamkyg7p5uqq3ripype", "fields": {"session_data": "Njk3OWQwMDIzM2FmOTQyZjMyN2IzNDU2OTk5Y2Y1MDE2MWVjMDdhYTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiYW5ub3RhdGlvbl9wcm9qZWN0IjoiNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiJ9", "expire_date": "2017-02-20T11:14:29Z"}}, {"model": "sessions.session", "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429", "fields": {"session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T12:26:52Z"}}, {"model": "sessions.session", "pk": "74su7asx1chf5ug62fj4hitwaljxgkiz", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T10:59:37Z"}}, {"model": "sessions.session", "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T10:37:41Z"}}, {"model": "sessions.session", "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-08T10:43:50Z"}}, {"model": "sessions.session", "pk": "7c01s688teucprvj9wuoiuebtl8bff2d", "fields": {"session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-21T11:56:57Z"}}, {"model": "sessions.session", "pk": "7d7gd01ktm8aijqa17q84vq301a6ybus", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-17T14:27:57Z"}}, {"model": "sessions.session", "pk": "7r7v7jo8il027rwdvu3dea9lp9vg24bp", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T09:46:56Z"}}, {"model": "sessions.session", "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T11:41:48Z"}}, {"model": "sessions.session", "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-17T10:07:28Z"}}, {"model": "sessions.session", "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-06-21T12:35:35Z"}}, {"model": "sessions.session", "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T11:46:41Z"}}, {"model": "sessions.session", "pk": "8unallqs0trfk7pzslbcijnjx8j9721c", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-15T18:47:12Z"}}, {"model": "sessions.session", "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-12-14T16:16:28Z"}}, {"model": "sessions.session", "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-31T10:09:32Z"}}, {"model": "sessions.session", "pk": "8z8im2wcfj9tfbvvwixxbclbliyp6dwm", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T08:39:53Z"}}, {"model": "sessions.session", "pk": "9bc9ii4wa0d168dmatgrlqysta0wd3x8", "fields": {"session_data": "ZTlhMDFkMWVmYjNiMmYxNjU2ZDI5ODc1MDNhN2FkNjM1YjdmMDQ3NDp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-19T17:06:27Z"}}, {"model": "sessions.session", "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-12T08:26:15Z"}}, {"model": "sessions.session", "pk": "9mf1xzu1346ss0edpll2dwougyoippqv", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-01-02T13:44:56Z"}}, {"model": "sessions.session", "pk": "9nmr133amdnyjvxlc5fdq6vuul0kmm7d", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-22T09:52:23Z"}}, {"model": "sessions.session", "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-07T09:00:09Z"}}, {"model": "sessions.session", "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-11T11:10:15Z"}}, {"model": "sessions.session", "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg", "fields": {"session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2017-01-03T09:23:20Z"}}, {"model": "sessions.session", "pk": "9yu7ogy7fe8ci49tr7ohwnom17f93e8w", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-10T13:19:29Z"}}, {"model": "sessions.session", "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T14:19:29Z"}}, {"model": "sessions.session", "pk": "a3w6oc0o9czm37r9fp1w34sujjamhfko", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-03-25T09:43:24Z"}}, {"model": "sessions.session", "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-04T08:02:47Z"}}, {"model": "sessions.session", "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-20T19:21:08Z"}}, {"model": "sessions.session", "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T11:54:57Z"}}, {"model": "sessions.session", "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T07:44:25Z"}}, {"model": "sessions.session", "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T12:01:50Z"}}, {"model": "sessions.session", "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T09:47:15Z"}}, {"model": "sessions.session", "pk": "c0mebo725euvitftiukwfw6dxip0koqs", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-21T08:38:04Z"}}, {"model": "sessions.session", "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:30:05Z"}}, {"model": "sessions.session", "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-10-19T15:55:59Z"}}, {"model": "sessions.session", "pk": "ccvhxts0xm4i007yj124auwtm1102ylc", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-30T11:48:28Z"}}, {"model": "sessions.session", "pk": "ck8xdgdkdqqgbfraxhpe5w78rluhcqdb", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2017-04-11T21:35:09Z"}}, {"model": "sessions.session", "pk": "co8qi0mvm1x1zwcfmd6lw0xe9n0exs2h", "fields": {"session_data": "Nzc0ZGRlY2UzNDMyNGNhOTVjZmMyMTkwMDA0ZDhjMmE3ZDFkYmVlNDp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMSIsIjExIiwiMTIiLCIxMyIsIjE0IiwiMTUiLCIxNiIsIjE3IiwiMTgiLCIxOSIsIjIwIiwiMjEiLCIyMiIsIjIzIiwiMjQiLCIyNSJdLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-26T10:55:04Z"}}, {"model": "sessions.session", "pk": "cyjaej15ap3vpirmuoxvua3ayv13l51w", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-16T13:01:23Z"}}, {"model": "sessions.session", "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T07:52:18Z"}}, {"model": "sessions.session", "pk": "d1e3bc2mhdeaq4zehswfyi3yrz1pzkle", "fields": {"session_data": "MWU1N2QyOThmZDA0NDI1ZTI1ZWUyNzVmMTkyMmEyNWIzYmRmYjQ4NDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjExIiwiMTAiLCI4IiwiOSIsIjEyIiwiNTEiLCI1MiIsIjQ2IiwiNDQiLCI0NSIsIjQ3IiwiNDIiLCI0MSIsIjM5IiwiNDAiLCI0MyIsIjQ5IiwiNDgiLCI1MCIsIjUzIl0sIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJhbm5vdGF0aW9uX3Byb2plY3QiOiIzIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCJdfQ==", "expire_date": "2017-04-11T15:45:48Z"}}, {"model": "sessions.session", "pk": "d3ui57peh8haq74stm30y2og6mlzls1b", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-05-09T05:33:01Z"}}, {"model": "sessions.session", "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-11-07T12:37:20Z"}}, {"model": "sessions.session", "pk": "d7lbdggp0zfcu6b1lfo027oi4zk2z2si", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-03-28T19:52:26Z"}}, {"model": "sessions.session", "pk": "da9ald43zlct5w8wjy2jer4uuw1me508", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T07:57:42Z"}}, {"model": "sessions.session", "pk": "dcscnejfbv3a961j405abjewr5xb7vhi", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2017-03-23T14:08:27Z"}}, {"model": "sessions.session", "pk": "dfzo1j1p9og5ckpnj773q0bn2eehhovi", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-14T15:13:03Z"}}, {"model": "sessions.session", "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-12T19:05:43Z"}}, {"model": "sessions.session", "pk": "di0u7jcqjsh3ytgb3zllprdujmo1za2f", "fields": {"session_data": "NjUwNDUxOTE3MjM4YjNjZDVjMGJlMTA4Y2YwODViNDlkNmRkNjhhZDp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-03-15T20:40:41Z"}}, {"model": "sessions.session", "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T14:05:09Z"}}, {"model": "sessions.session", "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T08:00:35Z"}}, {"model": "sessions.session", "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-16T13:41:51Z"}}, {"model": "sessions.session", "pk": "dqj5jfcpqu0usn7e65drhcizg79ci63o", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-03T11:00:01Z"}}, {"model": "sessions.session", "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T10:15:28Z"}}, {"model": "sessions.session", "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T08:42:22Z"}}, {"model": "sessions.session", "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y", "fields": {"session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-14T11:11:40Z"}}, {"model": "sessions.session", "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-14T14:53:54Z"}}, {"model": "sessions.session", "pk": "erwufifibov75oo9c5uklkwh5itqskcj", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-27T09:07:15Z"}}, {"model": "sessions.session", "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-21T15:40:51Z"}}, {"model": "sessions.session", "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-10-26T12:38:51Z"}}, {"model": "sessions.session", "pk": "fwapxlyzximbjixj3zubqvnzfklnp5ui", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-05-06T07:40:53Z"}}, {"model": "sessions.session", "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:23Z"}}, {"model": "sessions.session", "pk": "g6nyqamxt80gdy5kh21zw4lix7reinpa", "fields": {"session_data": "YzQ3ZDViYzg3NzYwMjE3YzQwN2RkNDUyNmY2YmIzMWU0MGRjYzBkMTp7ImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-04-25T19:43:56Z"}}, {"model": "sessions.session", "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-06-08T11:35:30Z"}}, {"model": "sessions.session", "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-06-07T13:29:28Z"}}, {"model": "sessions.session", "pk": "gi62wdj66c5j78be7q372m29mv6gdora", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-28T08:16:12Z"}}, {"model": "sessions.session", "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-21T07:03:28Z"}}, {"model": "sessions.session", "pk": "gjuve267k4260hvyils2ls2496ak9z37", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T17:18:28Z"}}, {"model": "sessions.session", "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T07:59:21Z"}}, {"model": "sessions.session", "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-05T14:43:01Z"}}, {"model": "sessions.session", "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-24T08:40:28Z"}}, {"model": "sessions.session", "pk": "hh8sk14s36jb19j341qt4njqf8axfoax", "fields": {"session_data": "NWE4N2QwNWU1NDYyYjg1NDcxZDA3NTJlOGI5MDE3MDA3MjUyYjc5ZDp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2lkIjoiMjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-23T11:30:54Z"}}, {"model": "sessions.session", "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-16T08:59:39Z"}}, {"model": "sessions.session", "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-30T09:46:34Z"}}, {"model": "sessions.session", "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it", "fields": {"session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9", "expire_date": "2016-09-19T08:08:24Z"}}, {"model": "sessions.session", "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-20T06:13:45Z"}}, {"model": "sessions.session", "pk": "i26kpen4zhq9i2bg1leggk8eqgqt9k25", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-31T08:05:35Z"}}, {"model": "sessions.session", "pk": "i2vj2k3r6l6d190imgsx6bmhee8y6qx3", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T10:03:41Z"}}, {"model": "sessions.session", "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-31T14:52:42Z"}}, {"model": "sessions.session", "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T08:07:45Z"}}, {"model": "sessions.session", "pk": "i9or8sunzfkfo0ii06lqjduyf002njo4", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-04-25T11:07:58Z"}}, {"model": "sessions.session", "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-15T11:14:21Z"}}, {"model": "sessions.session", "pk": "imakeqah5lviaceijxe33lnovxbek8nu", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T16:03:56Z"}}, {"model": "sessions.session", "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-06T07:28:47Z"}}, {"model": "sessions.session", "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T13:05:08Z"}}, {"model": "sessions.session", "pk": "jf5t2tpi8u48cb3sjwrkxzy2lgohxd6p", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2017-04-17T15:51:41Z"}}, {"model": "sessions.session", "pk": "jggki1po013fup2njbdxstv7ah1hh6r9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2017-05-09T09:48:53Z"}}, {"model": "sessions.session", "pk": "jghkwi5l48e732l6senbb027s7ww69fb", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T09:49:32Z"}}, {"model": "sessions.session", "pk": "jnairlw3ayhs0yzyma48fx0r64ls41fz", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-22T11:04:12Z"}}, {"model": "sessions.session", "pk": "k9p2trwa60tikg4o4jy36c4dsdqnr95y", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-13T20:23:57Z"}}, {"model": "sessions.session", "pk": "ka3msywv1o7njsbgs3q2631094nuqclo", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-19T15:12:15Z"}}, {"model": "sessions.session", "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-05-31T10:05:18Z"}}, {"model": "sessions.session", "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-23T05:35:47Z"}}, {"model": "sessions.session", "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec", "fields": {"session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-30T19:29:46Z"}}, {"model": "sessions.session", "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-25T15:37:43Z"}}, {"model": "sessions.session", "pk": "knqvpsn88en5yygqemcw6edtg2jt8249", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T09:44:34Z"}}, {"model": "sessions.session", "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T06:27:59Z"}}, {"model": "sessions.session", "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:21:45Z"}}, {"model": "sessions.session", "pk": "le4a8wynksh1utfu4n5kz3o0tky32990", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-14T11:45:48Z"}}, {"model": "sessions.session", "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-01T14:58:57Z"}}, {"model": "sessions.session", "pk": "lvl28l9wwgox84fgmt2kpb4a60ij51vx", "fields": {"session_data": "ZWM2ZTllYjgyOTRjNjBmZTkzOWE3MjAxMzUyZDZkNzM2YjY3MTA3ZTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDhiOTU5YzYwY2ZlZDMyMmJmOTMxZmI4N2NjNDUxYTI5MzcyYmEwYSIsIl9hdXRoX3VzZXJfaWQiOiIyNSJ9", "expire_date": "2017-05-10T10:57:32Z"}}, {"model": "sessions.session", "pk": "m0v3nvlvl72v79ukvd2gfqckcgrysfjj", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-29T08:31:18Z"}}, {"model": "sessions.session", "pk": "m29eu76tn65wjyl62eru1klc0a3q8unp", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2017-04-04T14:34:25Z"}}, {"model": "sessions.session", "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-04T13:24:20Z"}}, {"model": "sessions.session", "pk": "m787xp45lpgoa269n6728z0b37p8iy1q", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:28:33Z"}}, {"model": "sessions.session", "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-19T19:17:17Z"}}, {"model": "sessions.session", "pk": "mhhkuwiygxn5m2io9ve354my9krv1jca", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T09:59:03Z"}}, {"model": "sessions.session", "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-23T16:20:25Z"}}, {"model": "sessions.session", "pk": "mp1bm60zuig6o6nui37vmxq35b9nvvcr", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-19T10:58:38Z"}}, {"model": "sessions.session", "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-23T13:26:40Z"}}, {"model": "sessions.session", "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-16T10:14:08Z"}}, {"model": "sessions.session", "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-09-14T14:54:12Z"}}, {"model": "sessions.session", "pk": "na5u7one7ewv6lwwskjw4fhd1l3nfcmn", "fields": {"session_data": "ZTlhMDFkMWVmYjNiMmYxNjU2ZDI5ODc1MDNhN2FkNjM1YjdmMDQ3NDp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-20T13:29:54Z"}}, {"model": "sessions.session", "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-22T15:22:58Z"}}, {"model": "sessions.session", "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg", "fields": {"session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=", "expire_date": "2016-04-11T20:27:35Z"}}, {"model": "sessions.session", "pk": "nry5t3cx23bpuh15iy7r4tokakqmj29v", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-23T16:10:09Z"}}, {"model": "sessions.session", "pk": "nswul70gr80dq4qwgs4di508w00uud6b", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-08T10:15:12Z"}}, {"model": "sessions.session", "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-08-24T09:07:00Z"}}, {"model": "sessions.session", "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T10:17:31Z"}}, {"model": "sessions.session", "pk": "odorbcaogkfzuupexk2zyze0ewnene46", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-08T10:29:46Z"}}, {"model": "sessions.session", "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T07:40:16Z"}}, {"model": "sessions.session", "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:49:30Z"}}, {"model": "sessions.session", "pk": "orhni0ej87m2aun2d9z9xz4c1l1lmjym", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-10T10:03:12Z"}}, {"model": "sessions.session", "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-16T07:07:44Z"}}, {"model": "sessions.session", "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T11:53:13Z"}}, {"model": "sessions.session", "pk": "ppjcwurra6scll78pl3bs269eab3nz90", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-18T21:10:11Z"}}, {"model": "sessions.session", "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf", "fields": {"session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==", "expire_date": "2016-11-24T11:13:28Z"}}, {"model": "sessions.session", "pk": "pu9debzitlp5h2npgzacuzevp3prl6d2", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T15:59:42Z"}}, {"model": "sessions.session", "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-18T11:48:29Z"}}, {"model": "sessions.session", "pk": "qd6glndlpk5s53d9azcl8m970xzp7qr7", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-04T20:54:03Z"}}, {"model": "sessions.session", "pk": "qi66ci58ybleptvfa4qenkhecsabekut", "fields": {"session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-03-28T14:27:50Z"}}, {"model": "sessions.session", "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf", "fields": {"session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==", "expire_date": "2016-12-09T16:53:29Z"}}, {"model": "sessions.session", "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-17T11:19:13Z"}}, {"model": "sessions.session", "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-20T08:48:24Z"}}, {"model": "sessions.session", "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T08:12:45Z"}}, {"model": "sessions.session", "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o", "fields": {"session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-10T07:54:55Z"}}, {"model": "sessions.session", "pk": "rx6add3n8ac1j45tvfk7g22hfiqg9189", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-26T15:21:10Z"}}, {"model": "sessions.session", "pk": "ryh7badf8sk52fnosn0im30u153w96bx", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-06-01T09:22:04Z"}}, {"model": "sessions.session", "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-17T11:25:00Z"}}, {"model": "sessions.session", "pk": "shgljfmuet4jvw3vvsjpwtbidz2ovolm", "fields": {"session_data": "ODAwZTFiNjlkZTdjNzFjNDk3ZmM5YTllMGRlMGFkNDFjOTc2MTkyMjp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ4Yjk1OWM2MGNmZWQzMjJiZjkzMWZiODdjYzQ1MWEyOTM3MmJhMGEiLCJ1c2Vyc19zaG93X2hpZ2hsaWdodGVyIjpbIjE0Il0sImFubm90YXRpb25fcHJvamVjdCI6bnVsbCwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiNDAiXSwiX2F1dGhfdXNlcl9pZCI6IjI1In0=", "expire_date": "2017-04-20T08:30:18Z"}}, {"model": "sessions.session", "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T07:10:33Z"}}, {"model": "sessions.session", "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-11-02T13:21:25Z"}}, {"model": "sessions.session", "pk": "t28pi3wijtqtgswvxoby46phnlwq97cp", "fields": {"session_data": "YzgwMDFlZjkxYTAxZDE5MDUyYTcxY2E4OTk0MmIwMjgwZTgwZDU5Nzp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdfQ==", "expire_date": "2017-05-16T16:14:45Z"}}, {"model": "sessions.session", "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-22T23:47:44Z"}}, {"model": "sessions.session", "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T09:13:02Z"}}, {"model": "sessions.session", "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T13:16:42Z"}}, {"model": "sessions.session", "pk": "tfogugs17j1nvkir89ixugemdqq25kum", "fields": {"session_data": "N2RjNjVmOTZmMzlmMTE3MzRkODk2MzVkNDkyZTQyMTU5MDA2N2EyZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQifQ==", "expire_date": "2017-04-19T14:30:19Z"}}, {"model": "sessions.session", "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-09-07T09:17:51Z"}}, {"model": "sessions.session", "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:45:55Z"}}, {"model": "sessions.session", "pk": "txw6kfzk32bxeqm21knvrf570by4v27p", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:48:36Z"}}, {"model": "sessions.session", "pk": "u3082c600jynq9qzxlc1pat4hfatkiiw", "fields": {"session_data": "MDMwNWJlZDBmODA1OThmYmQxNjE1MjMxMDEyNmQ4ZTg5MGJhOTI4ODp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJhbm5vdGF0aW9uX3Byb2plY3QiOiI2IiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsInVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMTIiXSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-04-25T13:40:05Z"}}, {"model": "sessions.session", "pk": "uesi563p5dol5hv4gjor3noj55kz8chz", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-13T08:36:52Z"}}, {"model": "sessions.session", "pk": "ulaglp8rwt152gf05ugjxsh0l7nflreg", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-27T15:38:56Z"}}, {"model": "sessions.session", "pk": "uou3pothn76iu9zi34fij69m8inc1v2s", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-05-13T08:32:22Z"}}, {"model": "sessions.session", "pk": "upxpub1wqb40yg07qnc2v9gmr5ivnx6q", "fields": {"session_data": "ZWM0ZGJlNGZiMzNmOWFjZmJiNDMwMTNjY2U0NDZlNzA5MGIzNTZjZjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjIifQ==", "expire_date": "2017-05-02T13:37:28Z"}}, {"model": "sessions.session", "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-07-05T09:34:00Z"}}, {"model": "sessions.session", "pk": "v0tb183q1hidp56w07hiihnkfphthq6x", "fields": {"session_data": "ZTUyMzMwZjQyNGVlM2E2MjEwNGFjMGQ2MmQ4MmVmYWFjZWE4OTI1OTp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCIsIjI1Il19", "expire_date": "2017-05-16T16:24:03Z"}}, {"model": "sessions.session", "pk": "vcefmjdsogtqiiym2n2pvtnn2r3ymxbv", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T11:03:56Z"}}, {"model": "sessions.session", "pk": "vd9uzj95c4gdy21oezpy5gok82tgtlnd", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T10:51:36Z"}}, {"model": "sessions.session", "pk": "vdm5gd9axckuupzwphnyibh4ltwl10in", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-10T12:53:51Z"}}, {"model": "sessions.session", "pk": "vdqbhkx8uozqoksjq28n8ze8p3kyp1mm", "fields": {"session_data": "ZTUyOGE1NDNlNmQwMDkzNDFmNDdjZTQzMzYwOWVkYzI5ODIzYmRiMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjI1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDhiOTU5YzYwY2ZlZDMyMmJmOTMxZmI4N2NjNDUxYTI5MzcyYmEwYSJ9", "expire_date": "2017-04-18T10:24:05Z"}}, {"model": "sessions.session", "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-06T09:17:34Z"}}, {"model": "sessions.session", "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20", "fields": {"session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9", "expire_date": "2016-11-25T22:11:01Z"}}, {"model": "sessions.session", "pk": "vz123od467ja9eqg3sxpjt7p28zbi1tu", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-22T13:16:36Z"}}, {"model": "sessions.session", "pk": "w854s0t1ev9t2jptzy5lgizv3o4iurxi", "fields": {"session_data": "NWJkODI2YzQ3NmRmZmNhNjlmYjFkYjE0ZDRkMDk2MDY2NGEyNzI3NTp7ImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-03-27T12:15:23Z"}}, {"model": "sessions.session", "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2016-10-19T09:11:45Z"}}, {"model": "sessions.session", "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-25T11:21:04Z"}}, {"model": "sessions.session", "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd", "fields": {"session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2016-12-19T13:49:09Z"}}, {"model": "sessions.session", "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:40:30Z"}}, {"model": "sessions.session", "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-31T09:28:51Z"}}, {"model": "sessions.session", "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-24T18:27:59Z"}}, {"model": "sessions.session", "pk": "x5z53fz318oplvc3pf9jl2xghhravlw4", "fields": {"session_data": "OTEwMWNlNTdkOTBhMzFhMzJhMjdmOWEzMGM5ODc3YWRkOGUxYjMzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6bnVsbH0=", "expire_date": "2017-01-31T08:07:16Z"}}, {"model": "sessions.session", "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-08-15T11:56:07Z"}}, {"model": "sessions.session", "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:23:30Z"}}, {"model": "sessions.session", "pk": "xeta229mvebwff8lxrg15tg92yby9l7h", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-01-03T10:42:04Z"}}, {"model": "sessions.session", "pk": "xjameie76erma5u2xcefnxiqkaydbqem", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T15:38:48Z"}}, {"model": "sessions.session", "pk": "xm7czndauhfyen0rqfy7gwasyauycs13", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-07T21:50:11Z"}}, {"model": "sessions.session", "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:41:43Z"}}, {"model": "sessions.session", "pk": "xqn4o938970paagobhs75vdj78qklbpt", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-13T06:21:47Z"}}, {"model": "sessions.session", "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g", "fields": {"session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=", "expire_date": "2016-03-28T11:24:43Z"}}, {"model": "sessions.session", "pk": "xxi2fcd8u2v0bqralv28iy7houir1oig", "fields": {"session_data": "MThiODViY2ZiZDA2MzZiNWJmZGYyZTI4ZmRhMGE5NjU4MmI2ZTQzYTp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-04-17T14:31:44Z"}}, {"model": "sessions.session", "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:59Z"}}, {"model": "sessions.session", "pk": "y0l6wk9otfe1gj48r2t88vsd85a4fgi7", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-15T10:11:05Z"}}, {"model": "sessions.session", "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T15:37:48Z"}}, {"model": "sessions.session", "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-23T09:12:20Z"}}, {"model": "sessions.session", "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-29T08:20:29Z"}}, {"model": "sessions.session", "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-21T14:11:46Z"}}, {"model": "sessions.session", "pk": "ykzz4og15rbp734i6zas54al3618ih6t", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-28T12:47:33Z"}}, {"model": "sessions.session", "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T07:23:58Z"}}, {"model": "sessions.session", "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-06-10T09:57:45Z"}}, {"model": "sessions.session", "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-29T12:27:51Z"}}, {"model": "sessions.session", "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T11:53:02Z"}}, {"model": "sessions.session", "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T13:24:18Z"}}, {"model": "sessions.session", "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:07:32Z"}}, {"model": "sessions.session", "pk": "zd89eekj8db021j20g95g8h3l2qoajg2", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-03T11:30:35Z"}}, {"model": "sessions.session", "pk": "zed35ecfw8w2jomw3tlvtr3joxg8u7qq", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-17T11:40:23Z"}}, {"model": "sessions.session", "pk": "zek5pffgnbfc047jdii8y0fxglrhlhtd", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T08:59:07Z"}}, {"model": "sessions.session", "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-07T12:20:16Z"}}, {"model": "sessions.session", "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T14:32:15Z"}}, {"model": "sessions.session", "pk": "zvmiogv4haarelrbkcxlte9w66vc74ir", "fields": {"session_data": "YmFmZTQ4NGViYzRjOThmZGU0MDRjM2I3NDAzNjYzMDFmMzZiMmY4Njp7Il9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2lkIjoiMTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-06T16:00:40Z"}}, {"model": "labels.label", "pk": 17, "fields": {"label": "Opatija", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 26}}, {"model": "labels.label", "pk": 19, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 20, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 50, "fields": {"label": "Zagreb", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 133}}, {"model": "labels.label", "pk": 51, "fields": {"label": "Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 67, "fields": {"label": "Vienna", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 183}}, {"model": "labels.label", "pk": 68, "fields": {"label": "Wien", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 108, "fields": {"label": "Brno", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 327}}, {"model": "labels.label", "pk": 109, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 118, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 121, "fields": {"label": "Budapest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 400}}, {"model": "labels.label", "pk": 122, "fields": {"label": "Budapest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 252, "fields": {"label": "Bucharest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 831}}, {"model": "labels.label", "pk": 253, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 287, "fields": {"label": "Baden bei Wien", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 926}}, {"model": "labels.label", "pk": 288, "fields": {"label": "Baden", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 926}}, {"model": "labels.label", "pk": 445, "fields": {"label": "Berlin", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1390}}, {"model": "labels.label", "pk": 446, "fields": {"label": "Berlin", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 456, "fields": {"label": "Liberec", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1424}}, {"model": "labels.label", "pk": 457, "fields": {"label": "Liberec - Osta\u0161ov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 466, "fields": {"label": "Bezau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1454}}, {"model": "labels.label", "pk": 531, "fields": {"label": "Bodensdorf, Bez. Feldkirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1701}}, {"model": "labels.label", "pk": 536, "fields": {"label": "Heilbronn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1718}}, {"model": "labels.label", "pk": 537, "fields": {"label": "Heilbronn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1718}}, {"model": "labels.label", "pk": 613, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2006}}, {"model": "labels.label", "pk": 614, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2006}}, {"model": "labels.label", "pk": 639, "fields": {"label": "Bratislava", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2072}}, {"model": "labels.label", "pk": 640, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 641, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 645, "fields": {"label": "Broumov", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2085}}, {"model": "labels.label", "pk": 646, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 647, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 669, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2161}}, {"model": "labels.label", "pk": 670, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 671, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 672, "fields": {"label": "Brixen", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2170}}, {"model": "labels.label", "pk": 673, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 680, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2197}}, {"model": "labels.label", "pk": 681, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - B\u0159ezhrad, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 693, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 694, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 697, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 704, "fields": {"label": "Brody", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2281}}, {"model": "labels.label", "pk": 705, "fields": {"label": "Brody, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2281}}, {"model": "labels.label", "pk": 713, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 714, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 715, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 716, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 757, "fields": {"label": "Buenos Aires", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2489}}, {"model": "labels.label", "pk": 759, "fields": {"label": "Buenos Aires", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2489}}, {"model": "labels.label", "pk": 760, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 761, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 789, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 870, "fields": {"label": "Chernivtsi", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2854}}, {"model": "labels.label", "pk": 871, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 876, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 944, "fields": {"label": "Cieszyn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3105}}, {"model": "labels.label", "pk": 945, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 962, "fields": {"label": "Cluj-Napoca", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3162}}, {"model": "labels.label", "pk": 963, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 1050, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 1214, "fields": {"label": "D\u00fcren", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1215, "fields": {"label": "D\u00fcren", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1268, "fields": {"label": "\u00dadlice, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4269}}, {"model": "labels.label", "pk": 1412, "fields": {"label": "Graz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1413, "fields": {"label": "Graz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1446, "fields": {"label": "Freistadt", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1447, "fields": {"label": "Freistadt", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1560, "fields": {"label": "Ghidfal\u0103u, jud. Covasna", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5294}}, {"model": "labels.label", "pk": 1565, "fields": {"label": "Marienheide", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5308}}, {"model": "labels.label", "pk": 1619, "fields": {"label": "Gorizia", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1620, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1635, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1636, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1670, "fields": {"label": "Merano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1671, "fields": {"label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1691, "fields": {"label": "Grieskirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5749}}, {"model": "labels.label", "pk": 1755, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1756, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1841, "fields": {"label": "Hanover", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1842, "fields": {"label": "Hannover", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1926, "fields": {"label": "Innsbruck", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1927, "fields": {"label": "Innsbruck", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1982, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 1983, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 2002, "fields": {"label": "Brno - Brno-sever, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2108, "fields": {"label": "Jaworzno, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7454}}, {"model": "labels.label", "pk": 2153, "fields": {"label": "Leoben", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2154, "fields": {"label": "Leoben", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2190, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2191, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2249, "fields": {"label": "Kassel", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2250, "fields": {"label": "Kassel", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2340, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2341, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2373, "fields": {"label": "Klosterneuburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8482}}, {"model": "labels.label", "pk": 2394, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2458, "fields": {"label": "Konstanz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2459, "fields": {"label": "Konstanz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2581, "fields": {"label": "Kufstein", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2582, "fields": {"label": "Kufstein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2585, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Kukleny, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2595, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2625, "fields": {"label": "Lachovice, kr. Karlovarsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9455}}, {"model": "labels.label", "pk": 2632, "fields": {"label": "Ljubljana", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2633, "fields": {"label": "Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2711, "fields": {"label": "Lviv", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2712, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2713, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2789, "fields": {"label": "Linz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2790, "fields": {"label": "Linz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2858, "fields": {"label": "City of London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2859, "fields": {"label": "London City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2860, "fields": {"label": "The City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2861, "fields": {"label": "London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2862, "fields": {"label": "London", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2927, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2928, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2929, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2951, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2952, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2963, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3022, "fields": {"label": "Maribor", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3023, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3039, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3040, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3041, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3116, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3117, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3118, "fields": {"label": "Merano (Castello di Trautmannsdorf) / Meran (Schlo\u00df Trautmannsdorf), reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3119, "fields": {"label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3120, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3121, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3158, "fields": {"label": "St\u0159\u00edbro, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 3239, "fields": {"label": "Moldava, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11556}}, {"model": "labels.label", "pk": 3324, "fields": {"label": "Munich", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3325, "fields": {"label": "M\u00fcnchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3441, "fields": {"label": "Nysa", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3442, "fields": {"label": "Nysa, woj. Opole", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3491, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Nov\u00fd Hradec Kr\u00e1lov\u00e9, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 3549, "fields": {"label": "Liberec - Doln\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3580, "fields": {"label": "Nice", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3581, "fields": {"label": "Nice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3657, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3663, "fields": {"label": "Liberec - Horn\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3671, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3672, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3681, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3697, "fields": {"label": "Brno - Malom\u011b\u0159ice-Ob\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3710, "fields": {"label": "Sopron", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3711, "fields": {"label": "Sopron, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3737, "fields": {"label": "Olomouc", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3738, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3739, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3740, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3741, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3828, "fields": {"label": "Paris", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3829, "fields": {"label": "Paris", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3901, "fields": {"label": "Petting", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13987}}, {"model": "labels.label", "pk": 4050, "fields": {"label": "Prague", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4051, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4052, "fields": {"label": "Praha, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4053, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4054, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4055, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4077, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4078, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4333, "fields": {"label": "Liberec - R\u016f\u017eodol I, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4334, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4389, "fields": {"label": "Liberec - Ruprechtice, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4415, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 4478, "fields": {"label": "Sv\u00e4t\u00fd Jur", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4479, "fields": {"label": "Sv\u00e4t\u00fd Jur, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4500, "fields": {"label": "St. Pankraz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4501, "fields": {"label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4581, "fields": {"label": "\u0160t\u00edty, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16594}}, {"model": "labels.label", "pk": 4624, "fields": {"label": "Liberec - Kr\u00e1sn\u00e1 Stud\u00e1nka, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4652, "fields": {"label": "Schwanberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16864}}, {"model": "labels.label", "pk": 4676, "fields": {"label": "Wien - Sechshaus", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 4878, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 5025, "fields": {"label": "Szczakowa, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18374}}, {"model": "labels.label", "pk": 5031, "fields": {"label": "Szeged, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 5150, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5152, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5273, "fields": {"label": "Trento", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5274, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5275, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5290, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5291, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5386, "fields": {"label": "Mojm\u00edrovce, kr. Nitra", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19599}}, {"model": "labels.label", "pk": 5411, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 5422, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 5650, "fields": {"label": "Warsaw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5651, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5652, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5653, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5654, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5655, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5656, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5677, "fields": {"label": "Bela Crkva, sr. Pan\u010devo", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20659}}, {"model": "labels.label", "pk": 5726, "fields": {"label": "Bad Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 5758, "fields": {"label": "Wisborough Green", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20988}}, {"model": "labels.label", "pk": 5809, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 5903, "fields": {"label": "L'viv - Znesinnja, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 5941, "fields": {"label": "Svitavy", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5942, "fields": {"label": "Svitavy, kr. Pardubick\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5959, "fields": {"label": "Jamnitz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22216}}, {"model": "labels.label", "pk": 5960, "fields": {"label": "Stronach (Lienz)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22259}}, {"model": "labels.label", "pk": 5961, "fields": {"label": "Nizza", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 5962, "fields": {"label": "Gr\u00fcnburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22322}}, {"model": "labels.label", "pk": 5963, "fields": {"label": "Olten", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5964, "fields": {"label": "Olten, Kt. Solothurn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5965, "fields": {"label": "Bad Kreuznach", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "labels.label", "pk": 5966, "fields": {"label": "Lasberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22494}}, {"model": "labels.label", "pk": 5967, "fields": {"label": "Fribourg", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5968, "fields": {"label": "Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5969, "fields": {"label": "Boc\u0219a", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22545}}, {"model": "labels.label", "pk": 5970, "fields": {"label": "Lud\u017amierz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22558}}, {"model": "labels.label", "pk": 5971, "fields": {"label": "Warszawa, woj. mazowieckie", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5972, "fields": {"label": "Vezzano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22570}}, {"model": "labels.label", "pk": 5973, "fields": {"label": "Vezzano", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22570}}, {"model": "labels.label", "pk": 6951, "fields": {"label": "Thalberg, Sigismund (Fortun\u00e9 Fran\u00e7ois)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 27245}}, {"model": "labels.label", "pk": 6952, "fields": {"label": "Fortun\u00e9 Fran\u00e7ois", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 27245}}, {"model": "labels.label", "pk": 7018, "fields": {"label": "Bratislava, kr. Bratislavsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 7161, "fields": {"label": "Bressanone/Brixen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 8216, "fields": {"label": "Wien (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 8588, "fields": {"label": "Bressanone", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 9187, "fields": {"label": "Merano/Meran, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 9289, "fields": {"label": "Teschen/T\u011b\u0161\u00edn/Cieszyn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 10492, "fields": {"label": "?, kr. ?", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 12551, "fields": {"label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 12706, "fields": {"label": "\u013dviv (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 13574, "fields": {"label": "Bratislava (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 13859, "fields": {"label": "Linz (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 14306, "fields": {"label": "Gorizia, reg. Friuli-Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 15282, "fields": {"label": "Reicha (Rejcha), Anton (Anton\u00edn) Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15283, "fields": {"label": "Rejcha", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15284, "fields": {"label": "Anton\u00edn Josef", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 18793, "fields": {"label": "Moscheles, Ignaz (Isaak)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 56248}}, {"model": "labels.label", "pk": 18794, "fields": {"label": "Isaak", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 56248}}, {"model": "labels.label", "pk": 20331, "fields": {"label": "Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 21059, "fields": {"label": "Liszt, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 62757}}, {"model": "labels.label", "pk": 21545, "fields": {"label": "Bressanone/Brixen, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 21609, "fields": {"label": "Praha - Mal\u00e1 Chuchle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 25058, "fields": {"label": "Praha - Horn\u00ed Po\u010dernice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 26197, "fields": {"label": "Szeged", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 27645, "fields": {"label": "Prag", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 29838, "fields": {"label": "Blahetka, Marie Leopoldine", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88219}}, {"model": "labels.label", "pk": 30089, "fields": {"label": "Beethoven, Ludwig van", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88902}}, {"model": "labels.label", "pk": 30728, "fields": {"label": "Freiburg/Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 30935, "fields": {"label": "Merano/Meran", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 31498, "fields": {"label": "St\u0159\u00edbro", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 31596, "fields": {"label": "B\u00e4uerle, Friederike; Ps. Friedrich Horn", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31597, "fields": {"label": "Friedrich Horn", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31632, "fields": {"label": "L\u2019viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 31701, "fields": {"label": "Czerny (\u010cern\u00fd), Carl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31702, "fields": {"label": "\u010cern\u00fd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31766, "fields": {"label": "Bahr, Hermann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93003}}, {"model": "labels.label", "pk": 31769, "fields": {"label": "Czerny, Adalbert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93009}}, {"model": "labels.label", "pk": 31770, "fields": {"label": "Czetz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93012}}, {"model": "labels.label", "pk": 31771, "fields": {"label": "Czikann, Johann Jakob Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93015}}, {"model": "labels.label", "pk": 31772, "fields": {"label": "Clam-Gallas, Eduard Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93018}}, {"model": "labels.label", "pk": 31773, "fields": {"label": "Clam-Martinic, Heinrich Jaroslav Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93021}}, {"model": "labels.label", "pk": 31774, "fields": {"label": "Clam-Martinic, Heinrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93024}}, {"model": "labels.label", "pk": 31775, "fields": {"label": "Claus, Karl Friedrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93028}}, {"model": "labels.label", "pk": 31776, "fields": {"label": "Conze, Alexander", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93031}}, {"model": "labels.label", "pk": 31777, "fields": {"label": "Costenoble, Karl Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93034}}, {"model": "labels.label", "pk": 31780, "fields": {"label": "\u010celakovsk\u00fd, Jarom\u00edr", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93044}}, {"model": "labels.label", "pk": 31781, "fields": {"label": "\u010celakovsk\u00fd, Ladislav", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93047}}, {"model": "labels.label", "pk": 31782, "fields": {"label": "\u010cerven\u00fd, V\u00e1clav Franti\u0161ek", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93050}}, {"model": "labels.label", "pk": 31783, "fields": {"label": "Charlemont, Hugo de", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93056}}, {"model": "labels.label", "pk": 31784, "fields": {"label": "Chlumczansk\u00fd, Wenzel Leopold von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93059}}, {"model": "labels.label", "pk": 31785, "fields": {"label": "Dumba, Konstantin Theodor", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93065}}, {"model": "labels.label", "pk": 31786, "fields": {"label": "Doderer, Wilhelm von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93068}}, {"model": "labels.label", "pk": 31787, "fields": {"label": "Defregger, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93071}}, {"model": "labels.label", "pk": 31788, "fields": {"label": "Dengel, Ignaz Philipp", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93074}}, {"model": "labels.label", "pk": 31811, "fields": {"label": "Holovsky, Hilde", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93136}}, {"model": "labels.label", "pk": 31872, "fields": {"label": "Lorenz, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93328}}, {"model": "labels.label", "pk": 31874, "fields": {"label": "L\u00f6wy, Julius; Ps. Von der Als", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31875, "fields": {"label": "Von der Als", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31879, "fields": {"label": "Lobmeyr, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93352}}, {"model": "labels.label", "pk": 31883, "fields": {"label": "Lichtblau, Adolf; Ps. A. L. Blau", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31884, "fields": {"label": "A. L. Blau", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31885, "fields": {"label": "Lichtblau, Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93369}}, {"model": "labels.label", "pk": 31888, "fields": {"label": "Leitgeb, Hubert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93378}}, {"model": "labels.label", "pk": 31890, "fields": {"label": "Lenhoss\u00e9k, Mih\u00e1ly Ign\u00e1c von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93387}}, {"model": "labels.label", "pk": 31892, "fields": {"label": "Lefler, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93393}}, {"model": "labels.label", "pk": 31893, "fields": {"label": "Leichter, K\u00e4the; geb. Pick", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31894, "fields": {"label": "Pick", "isoCode_639_3": "deu", "label_type": 612, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31895, "fields": {"label": "Leidesdorf, Franz; Ps. Wallner", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31896, "fields": {"label": "Wallner", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31899, "fields": {"label": "Lapaine, Valentin", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93409}}, {"model": "labels.label", "pk": 31900, "fields": {"label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31901, "fields": {"label": "Suida und Langer", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31902, "fields": {"label": "M\u00fcller, Wolf Johannes", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93418}}, {"model": "labels.label", "pk": 31910, "fields": {"label": "M\u00f6rl, Maria Theresia von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93442}}, {"model": "labels.label", "pk": 31911, "fields": {"label": "Millosicz, Georg Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93445}}, {"model": "labels.label", "pk": 31912, "fields": {"label": "Miklosich, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93448}}, {"model": "labels.label", "pk": 31917, "fields": {"label": "Meithner, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93469}}, {"model": "labels.label", "pk": 31920, "fields": {"label": "Margulies, Berl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93481}}, {"model": "labels.label", "pk": 31921, "fields": {"label": "M\u00e1nesov\u00e1, Amalie", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93484}}, {"model": "labels.label", "pk": 31922, "fields": {"label": "M\u00e1nes, Quido", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93487}}, {"model": "labels.label", "pk": 31928, "fields": {"label": "Mayer, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93510}}, {"model": "labels.label", "pk": 31929, "fields": {"label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31930, "fields": {"label": "Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31931, "fields": {"label": "Nov\u00e1\u010dek, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93516}}, {"model": "labels.label", "pk": 31940, "fields": {"label": "Ortmann, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93540}}, {"model": "labels.label", "pk": 31942, "fields": {"label": "Oellacher, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93546}}, {"model": "labels.label", "pk": 31947, "fields": {"label": "Poljanec, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93561}}, {"model": "labels.label", "pk": 31950, "fields": {"label": "Petzold, Emil", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93573}}, {"model": "labels.label", "pk": 31955, "fields": {"label": "Peithner von Lichtenfels, Eduard", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93588}}, {"model": "labels.label", "pk": 31958, "fields": {"label": "Patera, Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93600}}, {"model": "labels.label", "pk": 31960, "fields": {"label": "Rumpler, Matthias", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93609}}, {"model": "labels.label", "pk": 31961, "fields": {"label": "Rotter, Johann (Hans)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31962, "fields": {"label": "Hans", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31969, "fields": {"label": "Revertera von Salandra, Friedrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93639}}, {"model": "labels.label", "pk": 31970, "fields": {"label": "Reichenberger, Andreas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93642}}, {"model": "labels.label", "pk": 31971, "fields": {"label": "Reiser, Othmar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93645}}, {"model": "labels.label", "pk": 31973, "fields": {"label": "Randa, Maximilian von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93651}}, {"model": "labels.label", "pk": 31974, "fields": {"label": "Radakovi\u010d, Michael", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93654}}, {"model": "labels.label", "pk": 31975, "fields": {"label": "Szigligeti, Ede (Edv\u00e1rd); bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31976, "fields": {"label": "Edv\u00e1rd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31977, "fields": {"label": " bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 653, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31978, "fields": {"label": "Szurmay von Uzsok, S\u00e1ndor (Alexander) Frh.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31979, "fields": {"label": "Alexander Frh.", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31988, "fields": {"label": "St\u00fclz, Jodok", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93678}}, {"model": "labels.label", "pk": 31990, "fields": {"label": "Stowasser, Otto Hellmuth", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93684}}, {"model": "labels.label", "pk": 32001, "fields": {"label": "Steindler, Olga; verehel. Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32002, "fields": {"label": "Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32003, "fields": {"label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32004, "fields": {"label": "Ernest Edward Aurel", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32005, "fields": {"label": "Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32009, "fields": {"label": "Stariha, Janez Nep.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93714}}, {"model": "labels.label", "pk": 32018, "fields": {"label": "\u0160njari\u0107, Lukas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93748}}, {"model": "labels.label", "pk": 32030, "fields": {"label": "Sichulski, Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93779}}, {"model": "labels.label", "pk": 32032, "fields": {"label": "Settari, Wilhelm Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93785}}, {"model": "labels.label", "pk": 32034, "fields": {"label": "Sehnal, Eugen", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93791}}, {"model": "labels.label", "pk": 32037, "fields": {"label": "Schwartz, P. Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93800}}, {"model": "labels.label", "pk": 32038, "fields": {"label": "Schwarz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93803}}, {"model": "labels.label", "pk": 32039, "fields": {"label": "Schwarz, Kaspar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93809}}, {"model": "labels.label", "pk": 32041, "fields": {"label": "Schweitzer, Leopold Albrecht", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93815}}, {"model": "labels.label", "pk": 32042, "fields": {"label": "Schwabl, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93818}}, {"model": "labels.label", "pk": 32052, "fields": {"label": "Schu\u00ebcker, Edmund; eigentl. Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32053, "fields": {"label": "Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32054, "fields": {"label": "Schr\u00f6dl, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93839}}, {"model": "labels.label", "pk": 32059, "fields": {"label": "Schreyer, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93854}}, {"model": "labels.label", "pk": 32062, "fields": {"label": "Scholz, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93863}}, {"model": "labels.label", "pk": 32063, "fields": {"label": "Schrammel, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93866}}, {"model": "labels.label", "pk": 32067, "fields": {"label": "Scholl, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93878}}, {"model": "labels.label", "pk": 32069, "fields": {"label": "Sch\u00f6nberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32070, "fields": {"label": "Schoenberger", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32071, "fields": {"label": "Carl Friedrich Frh. von", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32072, "fields": {"label": "Sch\u00f6nberger, Benno", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93894}}, {"model": "labels.label", "pk": 32075, "fields": {"label": "Schnitzler, Julius", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93900}}, {"model": "labels.label", "pk": 32076, "fields": {"label": "Schober, Alfred", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93903}}, {"model": "labels.label", "pk": 32079, "fields": {"label": "Schoeller, Gustav Adolph von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93909}}, {"model": "labels.label", "pk": 32084, "fields": {"label": "Schmutzler, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93921}}, {"model": "labels.label", "pk": 32087, "fields": {"label": "Schmidt, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93933}}, {"model": "labels.label", "pk": 32088, "fields": {"label": "Schmidt, Anton", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93940}}, {"model": "labels.label", "pk": 32090, "fields": {"label": "Schmal, Johannes Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93946}}, {"model": "labels.label", "pk": 32094, "fields": {"label": "Schmidt-Beauchez, Louis", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93955}}, {"model": "labels.label", "pk": 32095, "fields": {"label": "Schindler, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93958}}, {"model": "labels.label", "pk": 32096, "fields": {"label": "Scheu, Josef Franz Georg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93961}}, {"model": "labels.label", "pk": 32097, "fields": {"label": "Schikaneder, Jakub", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93964}}, {"model": "labels.label", "pk": 32098, "fields": {"label": "Schell, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93967}}, {"model": "labels.label", "pk": 32099, "fields": {"label": "Schenk, Samuel Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93970}}, {"model": "labels.label", "pk": 32107, "fields": {"label": "T\u00f6lgyessy, Art\u00far", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93988}}, {"model": "labels.label", "pk": 32108, "fields": {"label": "Thun und Hohenstein, Emanuel Maria Gf. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93991}}, {"model": "labels.label", "pk": 32111, "fields": {"label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32112, "fields": {"label": "Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32113, "fields": {"label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32114, "fields": {"label": "Przerwa-Tetmajer", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32115, "fields": {"label": "Teuber, Emmerich (genannt Imre)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32116, "fields": {"label": "genannt Imre", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32119, "fields": {"label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32120, "fields": {"label": "Richard Denemy", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32121, "fields": {"label": " ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32390, "fields": {"label": "Laibach", "isoCode_639_3": "deu", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 34957, "fields": {"label": "Berlin-Friedenau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 34958, "fields": {"label": "Berlin-Gr\u00fcnau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 34959, "fields": {"label": "Berlin-Schmargendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 35289, "fields": {"label": "Maribor-Studenci, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 35292, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35364, "fields": {"label": "Praha-Dejvice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35397, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 35461, "fields": {"label": "Wien-Gumpendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35476, "fields": {"label": "Hanover, New Hampshire", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 35488, "fields": {"label": "Praha-Hole\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35492, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35543, "fields": {"label": "Bratislava-Rusovce, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 35545, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35548, "fields": {"label": "Praha-Kbely, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35559, "fields": {"label": "Szeged-Kiskundorozsma, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 35560, "fields": {"label": "Budapest-Budat\u00e9t\u00e9ny, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35569, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35570, "fields": {"label": "Praha-Zbraslav, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35598, "fields": {"label": "London-Lewisham", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 35643, "fields": {"label": "Praha-Mod\u0159any, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35665, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 35679, "fields": {"label": "Praha-Nusle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35686, "fields": {"label": "Wien-Hietzing", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35717, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35764, "fields": {"label": "Praha-Horn\u00ed Kr\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35787, "fields": {"label": "Budapest-Pestszentl\u0151rinc, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35822, "fields": {"label": "Budapest-Budafok, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35833, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35850, "fields": {"label": "\u010cernivci-Rohizna, obl. \u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 35867, "fields": {"label": "Praha-Satalice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35893, "fields": {"label": "Slanovec, sr. Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 35897, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35922, "fields": {"label": "Wien-Inzersdorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35967, "fields": {"label": "Praha-Podol\u00ed, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36010, "fields": {"label": "Ljubljana-\u0160entvid, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36068, "fields": {"label": "Ljubljana-\u0160i\u0161ka, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36086, "fields": {"label": "Sopron-B\u00e1nfalva, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 36122, "fields": {"label": "Praha-\u017di\u017ekov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36147, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36148, "fields": {"label": "M\u00fcnchen, Ld. Bayern", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 36160, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36163, "fields": {"label": "M\u00fcnchen, Ld. Bayern", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 36173, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36176, "fields": {"label": "Budapest-M\u00e1ty\u00e1sf\u00f6ld, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36182, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36185, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36187, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36188, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36195, "fields": {"label": "Maribor-Studenci, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 36226, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36238, "fields": {"label": "Praha-Podol\u00ed, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36243, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36253, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36263, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36267, "fields": {"label": "Ljubljana-\u0160entvid, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36334, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36340, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36341, "fields": {"label": "Praha-Vyso\u010dany, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36369, "fields": {"label": "Budapest-Pestszentl\u0151rinc, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36402, "fields": {"label": "Ljubljana-Toma\u010devo, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36447, "fields": {"label": "Budapest-Soroks\u00e1r, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36478, "fields": {"label": "Wien-Breitenfeld", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 36480, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36547, "fields": {"label": "Berlin-Schmargendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36567, "fields": {"label": "Berlin-Friedenau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36574, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36585, "fields": {"label": "Berlin-Gr\u00fcnau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36626, "fields": {"label": "Praha-\u017di\u017ekov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36637, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36638, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36655, "fields": {"label": "Praha-Zbraslav, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36699, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36825, "fields": {"label": "Wien-Thury", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 36875, "fields": {"label": "Praha-Satalice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36881, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36913, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 36923, "fields": {"label": "Budapest-Budafok, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36939, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36964, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36965, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36998, "fields": {"label": "Bratislava-Rusovce, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 37007, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37030, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37031, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37033, "fields": {"label": "M\u00fcnchen-Pasing", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 37079, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 37080, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37120, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37125, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37162, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37164, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37190, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37205, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 37215, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 37255, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37287, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37309, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 37325, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37333, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 37362, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37367, "fields": {"label": "Ljubljana-\u0160i\u0161ka, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 37389, "fields": {"label": "Budapest-\u00dajpest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37436, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37456, "fields": {"label": "Bad Kreuznach, Rheinland-Pfalz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "entities.person", "pk": 27245, "fields": {"first_name": "Sigismund", "gender": "male", "text": [12155, 12156], "collection": [29], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 46414, "fields": {"first_name": "Anton Josef", "gender": "male", "text": [21722, 21723], "collection": [29], "profession": [151, 188, 2054], "title": []}}, {"model": "entities.person", "pk": 56248, "fields": {"first_name": "Ignaz", "gender": "male", "text": [27186, 27187], "collection": [29], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 62757, "fields": {"first_name": "Franz von", "gender": "male", "text": [30762, 30763], "collection": [29], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 88219, "fields": {"first_name": "Marie Leopoldine", "gender": "female", "text": [44908, 44909], "collection": [29], "profession": [151, 1750], "title": []}}, {"model": "entities.person", "pk": 88902, "fields": {"first_name": "Ludwig van", "gender": "male", "text": [45290, 45291], "collection": [29], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 92412, "fields": {"first_name": "Friederike", "gender": "female", "text": [47030, 47031], "collection": [29], "profession": [128, 5578], "title": []}}, {"model": "entities.person", "pk": 92603, "fields": {"first_name": "Carl", "gender": "male", "text": [47126, 47127], "collection": [29], "profession": [151, 5599], "title": []}}, {"model": "entities.person", "pk": 93003, "fields": {"first_name": "Hermann", "gender": "male", "text": [47200, 47201], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93009, "fields": {"first_name": "Adalbert", "gender": "male", "text": [47204, 47205], "collection": [29], "profession": [154, 155], "title": []}}, {"model": "entities.person", "pk": 93012, "fields": {"first_name": "Johann", "gender": "male", "text": [47206, 47207], "collection": [29], "profession": [134, 143, 157, 158], "title": []}}, {"model": "entities.person", "pk": 93015, "fields": {"first_name": "Johann Jakob Heinrich", "gender": "male", "text": [47208, 47209], "collection": [29], "profession": [128, 146, 159], "title": []}}, {"model": "entities.person", "pk": 93018, "fields": {"first_name": "Eduard Gf.", "gender": "male", "text": [47210, 47211], "collection": [29], "profession": [143, 144], "title": []}}, {"model": "entities.person", "pk": 93021, "fields": {"first_name": "Heinrich Jaroslav Gf.", "gender": "male", "text": [47212, 47213], "collection": [29], "profession": [132, 134, 145, 146], "title": []}}, {"model": "entities.person", "pk": 93024, "fields": {"first_name": "Heinrich Gf.", "gender": "male", "text": [47214, 47215], "collection": [29], "profession": [134, 147], "title": []}}, {"model": "entities.person", "pk": 93028, "fields": {"first_name": "Karl Friedrich", "gender": "male", "text": [47216, 47217], "collection": [29], "profession": [135, 148], "title": []}}, {"model": "entities.person", "pk": 93031, "fields": {"first_name": "Alexander", "gender": "male", "text": [47218, 47219], "collection": [29], "profession": [149, 150], "title": []}}, {"model": "entities.person", "pk": 93034, "fields": {"first_name": "Karl Ludwig", "gender": "male", "text": [47220, 47221], "collection": [29], "profession": [128, 151, 152], "title": []}}, {"model": "entities.person", "pk": 93044, "fields": {"first_name": "Jarom\u00edr", "gender": "male", "text": [47226, 47227], "collection": [29], "profession": [132, 133, 134], "title": []}}, {"model": "entities.person", "pk": 93047, "fields": {"first_name": "Ladislav", "gender": "male", "text": [47228, 47229], "collection": [29], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93050, "fields": {"first_name": "V\u00e1clav Franti\u0161ek", "gender": "male", "text": [47230, 47231], "collection": [29], "profession": [137, 138], "title": []}}, {"model": "entities.person", "pk": 93056, "fields": {"first_name": "Hugo de", "gender": "male", "text": [47232, 47233], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93059, "fields": {"first_name": "Wenzel Leopold von", "gender": "male", "text": [47234, 47235], "collection": [29], "profession": [141, 142], "title": []}}, {"model": "entities.person", "pk": 93065, "fields": {"first_name": "Konstantin Theodor", "gender": "male", "text": [47236, 47237], "collection": [29], "profession": [146, 162], "title": []}}, {"model": "entities.person", "pk": 93068, "fields": {"first_name": "Wilhelm von", "gender": "male", "text": [47238, 47239], "collection": [29], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93071, "fields": {"first_name": "Franz von", "gender": "male", "text": [47240, 47241], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93074, "fields": {"first_name": "Ignaz Philipp", "gender": "male", "text": [47242, 47243], "collection": [29], "profession": [149, 160], "title": []}}, {"model": "entities.person", "pk": 93136, "fields": {"first_name": "Hilde", "gender": "female", "text": [47276, 47277], "collection": [29], "profession": [163, 164], "title": []}}, {"model": "entities.person", "pk": 93328, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47384, 47385], "collection": [29], "profession": [154, 175], "title": []}}, {"model": "entities.person", "pk": 93337, "fields": {"first_name": "Julius", "gender": "male", "text": [47388, 47389], "collection": [29], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93352, "fields": {"first_name": "Josef", "gender": "male", "text": [47394, 47395], "collection": [29], "profession": [137, 173], "title": []}}, {"model": "entities.person", "pk": 93366, "fields": {"first_name": "Adolf", "gender": "male", "text": [47402, 47403], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93369, "fields": {"first_name": "Ludwig", "gender": "male", "text": [47404, 47405], "collection": [29], "profession": [132, 172], "title": []}}, {"model": "entities.person", "pk": 93378, "fields": {"first_name": "Hubert", "gender": "male", "text": [47410, 47411], "collection": [29], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93387, "fields": {"first_name": "Mih\u00e1ly Ign\u00e1c von", "gender": "male", "text": [47414, 47415], "collection": [29], "profession": [154, 171], "title": []}}, {"model": "entities.person", "pk": 93393, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47418, 47419], "collection": [29], "profession": [139, 168], "title": []}}, {"model": "entities.person", "pk": 93396, "fields": {"first_name": "K\u00e4the", "gender": "female", "text": [47420, 47421], "collection": [29], "profession": [128, 134, 169], "title": []}}, {"model": "entities.person", "pk": 93400, "fields": {"first_name": "Franz", "gender": "male", "text": [47422, 47423], "collection": [29], "profession": [128, 151, 170], "title": []}}, {"model": "entities.person", "pk": 93409, "fields": {"first_name": "Valentin", "gender": "male", "text": [47428, 47429], "collection": [29], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93415, "fields": {"first_name": "Johanna", "gender": "female", "text": [47430, 47431], "collection": [29], "profession": [137, 165, 166], "title": []}}, {"model": "entities.person", "pk": 93418, "fields": {"first_name": "Wolf Johannes", "gender": "male", "text": [47432, 47433], "collection": [29], "profession": [135, 185], "title": []}}, {"model": "entities.person", "pk": 93442, "fields": {"first_name": "Maria Theresia von", "gender": "female", "text": [47446, 47447], "collection": [29], "profession": [141, 184], "title": []}}, {"model": "entities.person", "pk": 93445, "fields": {"first_name": "Georg Frh. von", "gender": "male", "text": [47448, 47449], "collection": [29], "profession": [143, 183], "title": []}}, {"model": "entities.person", "pk": 93448, "fields": {"first_name": "Franz von", "gender": "male", "text": [47450, 47451], "collection": [29], "profession": [134, 149, 182], "title": []}}, {"model": "entities.person", "pk": 93469, "fields": {"first_name": "Karl", "gender": "male", "text": [47460, 47461], "collection": [29], "profession": [134, 180, 181], "title": []}}, {"model": "entities.person", "pk": 93481, "fields": {"first_name": "Berl", "gender": "male", "text": [47466, 47467], "collection": [29], "profession": [151, 179], "title": []}}, {"model": "entities.person", "pk": 93484, "fields": {"first_name": "Amalie", "gender": "female", "text": [47468, 47469], "collection": [29], "profession": [139, 178], "title": []}}, {"model": "entities.person", "pk": 93487, "fields": {"first_name": "Quido", "gender": "male", "text": [47470, 47471], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93510, "fields": {"first_name": "Karl", "gender": "male", "text": [47482, 47483], "collection": [29], "profession": [128, 177], "title": []}}, {"model": "entities.person", "pk": 93513, "fields": {"first_name": "Johann Nep.", "gender": "male", "text": [47484, 47485], "collection": [29], "profession": [128, 134, 176], "title": []}}, {"model": "entities.person", "pk": 93516, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47486, 47487], "collection": [29], "profession": [151, 186], "title": []}}, {"model": "entities.person", "pk": 93540, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47502, 47503], "collection": [29], "profession": [188, 189], "title": []}}, {"model": "entities.person", "pk": 93546, "fields": {"first_name": "Josef", "gender": "male", "text": [47506, 47507], "collection": [29], "profession": [135, 187], "title": []}}, {"model": "entities.person", "pk": 93561, "fields": {"first_name": "Leopold", "gender": "male", "text": [47516, 47517], "collection": [29], "profession": [135, 188, 193], "title": []}}, {"model": "entities.person", "pk": 93573, "fields": {"first_name": "Emil", "gender": "male", "text": [47522, 47523], "collection": [29], "profession": [149, 192], "title": []}}, {"model": "entities.person", "pk": 93588, "fields": {"first_name": "Eduard", "gender": "male", "text": [47530, 47531], "collection": [29], "profession": [139, 191], "title": []}}, {"model": "entities.person", "pk": 93600, "fields": {"first_name": "Adolf", "gender": "male", "text": [47536, 47537], "collection": [29], "profession": [135, 190], "title": []}}, {"model": "entities.person", "pk": 93609, "fields": {"first_name": "Matthias", "gender": "male", "text": [47540, 47541], "collection": [29], "profession": [128, 141, 200], "title": []}}, {"model": "entities.person", "pk": 93615, "fields": {"first_name": "Johann", "gender": "male", "text": [47542, 47543], "collection": [29], "profession": [134, 137, 149, 199], "title": []}}, {"model": "entities.person", "pk": 93639, "fields": {"first_name": "Friedrich Gf.", "gender": "male", "text": [47556, 47557], "collection": [29], "profession": [134, 146, 198], "title": []}}, {"model": "entities.person", "pk": 93642, "fields": {"first_name": "Andreas", "gender": "male", "text": [47558, 47559], "collection": [29], "profession": [141, 196], "title": []}}, {"model": "entities.person", "pk": 93645, "fields": {"first_name": "Othmar", "gender": "male", "text": [47560, 47561], "collection": [29], "profession": [135, 197], "title": []}}, {"model": "entities.person", "pk": 93651, "fields": {"first_name": "Maximilian von", "gender": "male", "text": [47564, 47565], "collection": [29], "profession": [143, 146, 195], "title": []}}, {"model": "entities.person", "pk": 93654, "fields": {"first_name": "Michael", "gender": "male", "text": [47566, 47567], "collection": [29], "profession": [135, 194], "title": []}}, {"model": "entities.person", "pk": 93657, "fields": {"first_name": "Ede", "gender": "male", "text": [47568, 47569], "collection": [29], "profession": [128, 151, 230], "title": []}}, {"model": "entities.person", "pk": 93663, "fields": {"first_name": "S\u00e1ndor Frh.", "gender": "male", "text": [47570, 47571], "collection": [29], "profession": [134, 143, 231], "title": []}}, {"model": "entities.person", "pk": 93678, "fields": {"first_name": "Jodok", "gender": "male", "text": [47580, 47581], "collection": [29], "profession": [141, 149, 229], "title": []}}, {"model": "entities.person", "pk": 93684, "fields": {"first_name": "Otto Hellmuth", "gender": "male", "text": [47584, 47585], "collection": [29], "profession": [146, 149, 228], "title": []}}, {"model": "entities.person", "pk": 93702, "fields": {"first_name": "Olga", "gender": "female", "text": [47594, 47595], "collection": [29], "profession": [135, 188, 226], "title": []}}, {"model": "entities.person", "pk": 93705, "fields": {"first_name": "Ernst Edward Aurel", "gender": "male", "text": [47596, 47597], "collection": [29], "profession": [149, 227], "title": []}}, {"model": "entities.person", "pk": 93714, "fields": {"first_name": "Janez Nep.", "gender": "male", "text": [47602, 47603], "collection": [29], "profession": [141, 225], "title": []}}, {"model": "entities.person", "pk": 93748, "fields": {"first_name": "Lukas", "gender": "male", "text": [47614, 47615], "collection": [29], "profession": [143, 224], "title": []}}, {"model": "entities.person", "pk": 93779, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47626, 47627], "collection": [29], "profession": [139, 223], "title": []}}, {"model": "entities.person", "pk": 93785, "fields": {"first_name": "Wilhelm Anton Maria", "gender": "male", "text": [47630, 47631], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93791, "fields": {"first_name": "Eugen", "gender": "male", "text": [47634, 47635], "collection": [29], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93800, "fields": {"first_name": "P. Anton Maria", "gender": "male", "text": [47640, 47641], "collection": [29], "profession": [141, 219], "title": []}}, {"model": "entities.person", "pk": 93803, "fields": {"first_name": "Johann", "gender": "male", "text": [47642, 47643], "collection": [29], "profession": [149, 188, 220], "title": []}}, {"model": "entities.person", "pk": 93809, "fields": {"first_name": "Kaspar", "gender": "male", "text": [47644, 47645], "collection": [29], "profession": [134, 137, 221], "title": []}}, {"model": "entities.person", "pk": 93815, "fields": {"first_name": "Leopold Albrecht", "gender": "male", "text": [47648, 47649], "collection": [29], "profession": [128, 222], "title": []}}, {"model": "entities.person", "pk": 93818, "fields": {"first_name": "Franz", "gender": "male", "text": [47650, 47651], "collection": [29], "profession": [217, 218], "title": []}}, {"model": "entities.person", "pk": 93836, "fields": {"first_name": "Edmund", "gender": "male", "text": [47660, 47661], "collection": [29], "profession": [151, 216], "title": []}}, {"model": "entities.person", "pk": 93839, "fields": {"first_name": "Leopold", "gender": "male", "text": [47662, 47663], "collection": [29], "profession": [139, 215], "title": []}}, {"model": "entities.person", "pk": 93854, "fields": {"first_name": "Johann", "gender": "male", "text": [47672, 47673], "collection": [29], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93863, "fields": {"first_name": "Franz", "gender": "male", "text": [47676, 47677], "collection": [29], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93866, "fields": {"first_name": "Johann", "gender": "male", "text": [47678, 47679], "collection": [29], "profession": [151, 214], "title": []}}, {"model": "entities.person", "pk": 93878, "fields": {"first_name": "Joseph", "gender": "male", "text": [47684, 47685], "collection": [29], "profession": [132, 134, 213], "title": []}}, {"model": "entities.person", "pk": 93891, "fields": {"first_name": "Adolf Frh. von", "gender": "male", "text": [47688, 47689], "collection": [29], "profession": [143, 146, 211], "title": []}}, {"model": "entities.person", "pk": 93894, "fields": {"first_name": "Benno", "gender": "male", "text": [47690, 47691], "collection": [29], "profession": [151, 212], "title": []}}, {"model": "entities.person", "pk": 93900, "fields": {"first_name": "Julius", "gender": "male", "text": [47694, 47695], "collection": [29], "profession": [154, 208], "title": []}}, {"model": "entities.person", "pk": 93903, "fields": {"first_name": "Alfred", "gender": "male", "text": [47696, 47697], "collection": [29], "profession": [132, 146, 209], "title": []}}, {"model": "entities.person", "pk": 93909, "fields": {"first_name": "Gustav Adolph von", "gender": "male", "text": [47700, 47701], "collection": [29], "profession": [137, 210], "title": []}}, {"model": "entities.person", "pk": 93921, "fields": {"first_name": "Leopold", "gender": "male", "text": [47706, 47707], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93933, "fields": {"first_name": "Joseph", "gender": "male", "text": [47712, 47713], "collection": [29], "profession": [151, 207], "title": []}}, {"model": "entities.person", "pk": 93940, "fields": {"first_name": "Anton", "gender": "male", "text": [47714, 47715], "collection": [29], "profession": [134, 137, 206], "title": []}}, {"model": "entities.person", "pk": 93946, "fields": {"first_name": "Johannes Adolf", "gender": "male", "text": [47718, 47719], "collection": [29], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93955, "fields": {"first_name": "Louis", "gender": "male", "text": [47724, 47725], "collection": [29], "profession": [128, 188, 205], "title": []}}, {"model": "entities.person", "pk": 93958, "fields": {"first_name": "Josef", "gender": "male", "text": [47726, 47727], "collection": [29], "profession": [149, 204], "title": []}}, {"model": "entities.person", "pk": 93961, "fields": {"first_name": "Josef Franz Georg", "gender": "male", "text": [47728, 47729], "collection": [29], "profession": [128, 151, 203], "title": []}}, {"model": "entities.person", "pk": 93964, "fields": {"first_name": "Jakub", "gender": "male", "text": [47730, 47731], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93967, "fields": {"first_name": "Karl", "gender": "male", "text": [47732, 47733], "collection": [29], "profession": [137, 201], "title": []}}, {"model": "entities.person", "pk": 93970, "fields": {"first_name": "Samuel Leopold", "gender": "male", "text": [47734, 47735], "collection": [29], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93988, "fields": {"first_name": "Art\u00far", "gender": "male", "text": [47746, 47747], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93991, "fields": {"first_name": "Emanuel Maria Gf. von", "gender": "male", "text": [47748, 47749], "collection": [29], "profession": [141, 235], "title": []}}, {"model": "entities.person", "pk": 94003, "fields": {"first_name": "Ernst Maximilian Frh. von", "gender": "male", "text": [47754, 47755], "collection": [29], "profession": [128, 146, 233], "title": []}}, {"model": "entities.person", "pk": 94006, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47756, 47757], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 94009, "fields": {"first_name": "Emmerich", "gender": "male", "text": [47758, 47759], "collection": [29], "profession": [166, 234], "title": []}}, {"model": "entities.person", "pk": 94018, "fields": {"first_name": "Richard", "gender": "male", "text": [47764, 47765], "collection": [29], "profession": [151, 232], "title": []}}, {"model": "entities.place", "pk": 26, "fields": {"kind": 9, "lat": 45.33917, "lng": 14.30833, "text": [11225], "collection": []}}, {"model": "entities.place", "pk": 133, "fields": {"kind": 12, "lat": 45.81444, "lng": 15.97798, "text": [11275], "collection": []}}, {"model": "entities.place", "pk": 183, "fields": {"kind": 12, "lat": 48.20849, "lng": 16.37208, "text": [11203], "collection": []}}, {"model": "entities.place", "pk": 327, "fields": {"kind": 13, "lat": 49.19522, "lng": 16.60796, "text": [11259], "collection": []}}, {"model": "entities.place", "pk": 384, "fields": {"kind": 9, "lat": 49.19627, "lng": 13.50926, "text": [11284], "collection": []}}, {"model": "entities.place", "pk": 400, "fields": {"kind": 12, "lat": 47.49801, "lng": 19.03991, "text": [11223], "collection": []}}, {"model": "entities.place", "pk": 831, "fields": {"kind": 12, "lat": 44.43225, "lng": 26.10626, "text": [11242, 11243], "collection": []}}, {"model": "entities.place", "pk": 926, "fields": {"kind": 5, "lat": 48.00543, "lng": 16.23264, "text": [11313, 11314], "collection": []}}, {"model": "entities.place", "pk": 1390, "fields": {"kind": 12, "lat": 52.52437, "lng": 13.41053, "text": [11226, 11227], "collection": []}}, {"model": "entities.place", "pk": 1424, "fields": {"kind": 13, "lat": 50.76711, "lng": 15.05619, "text": [11258], "collection": []}}, {"model": "entities.place", "pk": 1454, "fields": {"kind": 5, "lat": 47.38478, "lng": 9.90139, "text": [11337, 11338], "collection": []}}, {"model": "entities.place", "pk": 1701, "fields": {"kind": 9, "lat": 46.69111, "lng": 13.97111, "text": [11271], "collection": []}}, {"model": "entities.place", "pk": 1718, "fields": {"kind": 5, "lat": 49.13995, "lng": 9.22054, "text": [11269, 11270], "collection": []}}, {"model": "entities.place", "pk": 2006, "fields": {"kind": 13, "lat": 47.75, "lng": 26.66667, "text": [11251], "collection": []}}, {"model": "entities.place", "pk": 2072, "fields": {"kind": 12, "lat": 48.14816, "lng": 17.10674, "text": [11220], "collection": []}}, {"model": "entities.place", "pk": 2085, "fields": {"kind": 9, "lat": 50.58566, "lng": 16.33181, "text": [11272], "collection": []}}, {"model": "entities.place", "pk": 2161, "fields": {"kind": 13, "lat": 51.1, "lng": 17.03333, "text": [11199], "collection": []}}, {"model": "entities.place", "pk": 2170, "fields": {"kind": 5, "lat": 46.71503, "lng": 11.65598, "text": [11279], "collection": []}}, {"model": "entities.place", "pk": 2197, "fields": {"kind": 13, "lat": 50.20923, "lng": 15.83277, "text": [11204], "collection": []}}, {"model": "entities.place", "pk": 2281, "fields": {"kind": 11, "lat": 50.08791, "lng": 25.15027, "text": [11244, 11245], "collection": []}}, {"model": "entities.place", "pk": 2489, "fields": {"kind": 12, "lat": -34.61315, "lng": -58.37723, "text": [11256, 11257], "collection": []}}, {"model": "entities.place", "pk": 2602, "fields": {"kind": 5, "lat": 46.41326, "lng": 11.24616, "text": [11252], "collection": []}}, {"model": "entities.place", "pk": 2854, "fields": {"kind": 13, "lat": 48.29149, "lng": 25.94034, "text": [11224], "collection": []}}, {"model": "entities.place", "pk": 3105, "fields": {"kind": 5, "lat": 49.75133, "lng": 18.63213, "text": [11260], "collection": []}}, {"model": "entities.place", "pk": 3162, "fields": {"kind": 13, "lat": 46.76667, "lng": 23.6, "text": [11330], "collection": []}}, {"model": "entities.place", "pk": 4096, "fields": {"kind": 5, "lat": 50.80434, "lng": 6.49299, "text": [11299, 11300], "collection": []}}, {"model": "entities.place", "pk": 4269, "fields": {"kind": 9, "lat": 50.4406, "lng": 13.45738, "text": [11231], "collection": []}}, {"model": "entities.place", "pk": 4767, "fields": {"kind": 13, "lat": 47.06667, "lng": 15.45, "text": [11210, 11211], "collection": []}}, {"model": "entities.place", "pk": 4877, "fields": {"kind": 9, "lat": 48.51103, "lng": 14.50453, "text": [11319, 11320], "collection": []}}, {"model": "entities.place", "pk": 5294, "fields": {"kind": 11, "lat": 45.9, "lng": 25.85, "text": [11246], "collection": []}}, {"model": "entities.place", "pk": 5308, "fields": {"kind": 10, "lat": 51.08317, "lng": 7.53087, "text": [11289, 11290], "collection": []}}, {"model": "entities.place", "pk": 5478, "fields": {"kind": 11, "lat": 45.94088, "lng": 13.62167, "text": [11303], "collection": []}}, {"model": "entities.place", "pk": 5691, "fields": {"kind": 5, "lat": 46.66817, "lng": 11.15953, "text": [11326], "collection": []}}, {"model": "entities.place", "pk": 5749, "fields": {"kind": 11, "lat": 48.23333, "lng": 13.83333, "text": [11229, 11230], "collection": []}}, {"model": "entities.place", "pk": 6004, "fields": {"kind": 9, "lat": 50.03197, "lng": 17.04058, "text": [11294], "collection": []}}, {"model": "entities.place", "pk": 6324, "fields": {"kind": 13, "lat": 52.37052, "lng": 9.73322, "text": [11221, 11222], "collection": []}}, {"model": "entities.place", "pk": 6700, "fields": {"kind": 13, "lat": 47.26266, "lng": 11.39454, "text": [11235, 11236], "collection": []}}, {"model": "entities.place", "pk": 6947, "fields": {"kind": 9, "lat": 46.61472, "lng": 16.08583, "text": [11278], "collection": []}}, {"model": "entities.place", "pk": 7454, "fields": {"kind": 11, "lat": 50.20528, "lng": 19.27498, "text": [11336], "collection": []}}, {"model": "entities.place", "pk": 7622, "fields": {"kind": 5, "lat": 47.3765, "lng": 15.09144, "text": [11249, 11250], "collection": []}}, {"model": "entities.place", "pk": 7986, "fields": {"kind": 11, "lat": 51.31667, "lng": 9.5, "text": [11218, 11219], "collection": []}}, {"model": "entities.place", "pk": 8482, "fields": {"kind": 5, "lat": 48.30521, "lng": 16.32522, "text": [11322, 11323], "collection": []}}, {"model": "entities.place", "pk": 8798, "fields": {"kind": 5, "lat": 47.66033, "lng": 9.17582, "text": [11301, 11302], "collection": []}}, {"model": "entities.place", "pk": 9287, "fields": {"kind": 5, "lat": 47.58333, "lng": 12.16667, "text": [11324, 11325], "collection": []}}, {"model": "entities.place", "pk": 9455, "fields": {"kind": 9, "lat": 50.08364, "lng": 13.03925, "text": [11288], "collection": []}}, {"model": "entities.place", "pk": 9475, "fields": {"kind": 12, "lat": 46.05108, "lng": 14.50513, "text": [11331], "collection": []}}, {"model": "entities.place", "pk": 9735, "fields": {"kind": 13, "lat": 49.83826, "lng": 24.02324, "text": [11263], "collection": []}}, {"model": "entities.place", "pk": 10015, "fields": {"kind": 13, "lat": 48.30639, "lng": 14.28611, "text": [11195, 11196], "collection": []}}, {"model": "entities.place", "pk": 10265, "fields": {"kind": 12, "lat": 51.50853, "lng": -0.12574, "text": [11239, 11240], "collection": []}}, {"model": "entities.place", "pk": 10793, "fields": {"kind": 13, "lat": 46.55472, "lng": 15.64667, "text": [11266], "collection": []}}, {"model": "entities.place", "pk": 11238, "fields": {"kind": 9, "lat": 49.75565, "lng": 12.997, "text": [11234], "collection": []}}, {"model": "entities.place", "pk": 11556, "fields": {"kind": 9, "lat": 50.72063, "lng": 13.65723, "text": [11308], "collection": []}}, {"model": "entities.place", "pk": 11799, "fields": {"kind": 13, "lat": 48.13743, "lng": 11.57549, "text": [11197, 11198], "collection": []}}, {"model": "entities.place", "pk": 12211, "fields": {"kind": 11, "lat": 50.47379, "lng": 17.33437, "text": [11321], "collection": []}}, {"model": "entities.place", "pk": 12758, "fields": {"kind": 11, "lat": 43.70313, "lng": 7.26608, "text": [11205], "collection": []}}, {"model": "entities.place", "pk": 13253, "fields": {"kind": 9, "lat": 47.68501, "lng": 16.59049, "text": [11344], "collection": []}}, {"model": "entities.place", "pk": 13382, "fields": {"kind": 13, "lat": 49.59552, "lng": 17.25175, "text": [11228], "collection": []}}, {"model": "entities.place", "pk": 13714, "fields": {"kind": 12, "lat": 48.85341, "lng": 2.3488, "text": [11291, 11292], "collection": []}}, {"model": "entities.place", "pk": 13987, "fields": {"kind": 10, "lat": 47.91232, "lng": 12.81512, "text": [11280, 11281], "collection": []}}, {"model": "entities.place", "pk": 14608, "fields": {"kind": 12, "lat": 50.08804, "lng": 14.42076, "text": [11200], "collection": []}}, {"model": "entities.place", "pk": 16242, "fields": {"kind": 9, "lat": 48.25216, "lng": 17.21539, "text": [11214], "collection": []}}, {"model": "entities.place", "pk": 16310, "fields": {"kind": 5, "lat": 46.586, "lng": 11.08571, "text": [11327], "collection": []}}, {"model": "entities.place", "pk": 16594, "fields": {"kind": 9, "lat": 49.96122, "lng": 16.76576, "text": [11293], "collection": []}}, {"model": "entities.place", "pk": 16864, "fields": {"kind": 5, "lat": 46.75833, "lng": 15.20833, "text": [11286, 11287], "collection": []}}, {"model": "entities.place", "pk": 18374, "fields": {"kind": 9, "lat": 50.2421, "lng": 19.30725, "text": [11241], "collection": []}}, {"model": "entities.place", "pk": 18400, "fields": {"kind": 13, "lat": 46.253, "lng": 20.14824, "text": [11351], "collection": []}}, {"model": "entities.place", "pk": 19215, "fields": {"kind": 13, "lat": 46.06787, "lng": 11.12108, "text": [11348], "collection": []}}, {"model": "entities.place", "pk": 19599, "fields": {"kind": 9, "lat": 48.20735, "lng": 18.06581, "text": [11285], "collection": []}}, {"model": "entities.place", "pk": 20549, "fields": {"kind": 12, "lat": 52.22977, "lng": 21.01178, "text": [11345], "collection": []}}, {"model": "entities.place", "pk": 20659, "fields": {"kind": 5, "lat": 44.8975, "lng": 21.41722, "text": [11255], "collection": []}}, {"model": "entities.place", "pk": 20872, "fields": {"kind": 5, "lat": 47.11547, "lng": 13.13467, "text": [11339], "collection": []}}, {"model": "entities.place", "pk": 20988, "fields": {"kind": 9, "lat": 51.02308, "lng": -0.50604, "text": [11304, 11305], "collection": []}}, {"model": "entities.place", "pk": 21818, "fields": {"kind": 9, "lat": 49.75594, "lng": 16.46829, "text": [11215], "collection": []}}, {"model": "entities.place", "pk": 22216, "fields": {"kind": 9, "lat": 49.01898, "lng": 15.56994, "text": [11206, 11207], "collection": []}}, {"model": "entities.place", "pk": 22259, "fields": {"kind": 9, "lat": 46.83333, "lng": 12.85, "text": [11261, 11262], "collection": []}}, {"model": "entities.place", "pk": 22322, "fields": {"kind": 9, "lat": 47.97234, "lng": 14.26472, "text": [11237, 11238], "collection": []}}, {"model": "entities.place", "pk": 22354, "fields": {"kind": 11, "lat": 47.34999, "lng": 7.90329, "text": [11253, 11254], "collection": []}}, {"model": "entities.place", "pk": 22475, "fields": {"kind": 5, "lat": 49.8414, "lng": 7.86713, "text": [11311, 11312], "collection": []}}, {"model": "entities.place", "pk": 22494, "fields": {"kind": 9, "lat": 48.47121, "lng": 14.54023, "text": [11317, 11318], "collection": []}}, {"model": "entities.place", "pk": 22526, "fields": {"kind": 13, "lat": 46.80237, "lng": 7.15128, "text": [11334, 11335], "collection": []}}, {"model": "entities.place", "pk": 22545, "fields": {"kind": 11, "lat": 45.37333, "lng": 21.70917, "text": [11342, 11343], "collection": []}}, {"model": "entities.place", "pk": 22558, "fields": {"kind": 9, "lat": 49.46656, "lng": 19.9825, "text": [11346, 11347], "collection": []}}, {"model": "entities.place", "pk": 22570, "fields": {"kind": 5, "lat": 46.07867, "lng": 10.99735, "text": [11349, 11350], "collection": []}}, {"model": "entities.place", "pk": 93025, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93035, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93051, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93060, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93075, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93379, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93397, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93410, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93449, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93562, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93610, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93658, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93715, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93749, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93804, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93855, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93879, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93934, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93937, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111335, "fields": {"kind": 400, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111348, "fields": {"kind": 400, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111365, "fields": {"kind": 380, "text": [], "collection": []}}, {"model": "vocabularies.vocabnames", "pk": 1, "fields": {"name": "ProfessionType"}}, {"model": "vocabularies.vocabnames", "pk": 2, "fields": {"name": "PersonPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 5, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 6, "fields": {"name": "PersonPersonRelation"}}, {"model": "vocabularies.vocabnames", "pk": 7, "fields": {"name": "TextType"}}, {"model": "vocabularies.vocabnames", "pk": 8, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 9, "fields": {"name": "InstitutionType"}}, {"model": "vocabularies.vocabnames", "pk": 10, "fields": {"name": "PlaceType"}}, {"model": "vocabularies.vocabnames", "pk": 11, "fields": {"name": "CollectionType"}}, {"model": "vocabularies.vocabnames", "pk": 12, "fields": {"name": "PlaceEventRelation"}}, {"model": "relations.personperson", "pk": 92840, "fields": {"relation_type": 5608, "related_persona": 92412, "related_personb": 92603, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92930, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88902, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92931, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 27245, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92932, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88219, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92933, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 62757, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92934, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 56248, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92935, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 46414, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46415, "fields": {"relation_type": 595, "related_person": 46414, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46416, "fields": {"relation_type": 596, "related_person": 46414, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 56249, "fields": {"relation_type": 595, "related_person": 56248, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 88904, "fields": {"relation_type": 596, "related_person": 88902, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92415, "fields": {"relation_type": 595, "related_person": 92412, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92604, "fields": {"relation_type": 595, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92605, "fields": {"relation_type": 596, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93004, "fields": {"relation_type": 595, "related_person": 93003, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93005, "fields": {"relation_type": 596, "related_person": 93003, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93010, "fields": {"relation_type": 595, "related_person": 93009, "related_place": 18374, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93011, "fields": {"relation_type": 596, "related_person": 93009, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93013, "fields": {"relation_type": 595, "related_person": 93012, "related_place": 5294, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93014, "fields": {"relation_type": 596, "related_person": 93012, "related_place": 2489, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93016, "fields": {"relation_type": 595, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93017, "fields": {"relation_type": 596, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93019, "fields": {"relation_type": 595, "related_person": 93018, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93020, "fields": {"relation_type": 596, "related_person": 93018, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93022, "fields": {"relation_type": 595, "related_person": 93021, "related_place": 16242, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93023, "fields": {"relation_type": 596, "related_person": 93021, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93026, "fields": {"relation_type": 595, "related_person": 93024, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93027, "fields": {"relation_type": 596, "related_person": 93024, "related_place": 93025, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93029, "fields": {"relation_type": 595, "related_person": 93028, "related_place": 7986, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93030, "fields": {"relation_type": 596, "related_person": 93028, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93032, "fields": {"relation_type": 595, "related_person": 93031, "related_place": 6324, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93033, "fields": {"relation_type": 596, "related_person": 93031, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93036, "fields": {"relation_type": 595, "related_person": 93034, "related_place": 93035, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93037, "fields": {"relation_type": 596, "related_person": 93034, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93045, "fields": {"relation_type": 595, "related_person": 93044, "related_place": 2161, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93046, "fields": {"relation_type": 596, "related_person": 93044, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93048, "fields": {"relation_type": 595, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93049, "fields": {"relation_type": 596, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93054, "fields": {"relation_type": 595, "related_person": 93050, "related_place": 93051, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93055, "fields": {"relation_type": 596, "related_person": 93050, "related_place": 2197, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93057, "fields": {"relation_type": 595, "related_person": 93056, "related_place": 22216, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93058, "fields": {"relation_type": 596, "related_person": 93056, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93063, "fields": {"relation_type": 595, "related_person": 93059, "related_place": 93060, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93064, "fields": {"relation_type": 596, "related_person": 93059, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93066, "fields": {"relation_type": 595, "related_person": 93065, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93067, "fields": {"relation_type": 596, "related_person": 93065, "related_place": 1701, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93069, "fields": {"relation_type": 595, "related_person": 93068, "related_place": 1718, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93070, "fields": {"relation_type": 596, "related_person": 93068, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93072, "fields": {"relation_type": 595, "related_person": 93071, "related_place": 22259, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93073, "fields": {"relation_type": 596, "related_person": 93071, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93078, "fields": {"relation_type": 595, "related_person": 93074, "related_place": 93075, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93079, "fields": {"relation_type": 596, "related_person": 93074, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93137, "fields": {"relation_type": 595, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93138, "fields": {"relation_type": 596, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93329, "fields": {"relation_type": 595, "related_person": 93328, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93330, "fields": {"relation_type": 596, "related_person": 93328, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93338, "fields": {"relation_type": 595, "related_person": 93337, "related_place": 4269, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93339, "fields": {"relation_type": 596, "related_person": 93337, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93353, "fields": {"relation_type": 595, "related_person": 93352, "related_place": 5749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93354, "fields": {"relation_type": 596, "related_person": 93352, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93367, "fields": {"relation_type": 595, "related_person": 93366, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93368, "fields": {"relation_type": 596, "related_person": 93366, "related_place": 26, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93370, "fields": {"relation_type": 595, "related_person": 93369, "related_place": 13382, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93371, "fields": {"relation_type": 596, "related_person": 93369, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93382, "fields": {"relation_type": 595, "related_person": 93378, "related_place": 93379, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93383, "fields": {"relation_type": 596, "related_person": 93378, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93388, "fields": {"relation_type": 595, "related_person": 93387, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93389, "fields": {"relation_type": 596, "related_person": 93387, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93394, "fields": {"relation_type": 595, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93395, "fields": {"relation_type": 596, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93398, "fields": {"relation_type": 595, "related_person": 93396, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93399, "fields": {"relation_type": 596, "related_person": 93396, "related_place": 93397, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93401, "fields": {"relation_type": 595, "related_person": 93400, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93402, "fields": {"relation_type": 596, "related_person": 93400, "related_place": 12758, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93413, "fields": {"relation_type": 595, "related_person": 93409, "related_place": 93410, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93414, "fields": {"relation_type": 596, "related_person": 93409, "related_place": 133, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93416, "fields": {"relation_type": 595, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93417, "fields": {"relation_type": 596, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93419, "fields": {"relation_type": 595, "related_person": 93418, "related_place": 22354, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93420, "fields": {"relation_type": 596, "related_person": 93418, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93443, "fields": {"relation_type": 595, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93444, "fields": {"relation_type": 596, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93446, "fields": {"relation_type": 595, "related_person": 93445, "related_place": 2006, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93447, "fields": {"relation_type": 596, "related_person": 93445, "related_place": 7622, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93452, "fields": {"relation_type": 595, "related_person": 93448, "related_place": 93449, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93453, "fields": {"relation_type": 596, "related_person": 93448, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93470, "fields": {"relation_type": 595, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93471, "fields": {"relation_type": 596, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93482, "fields": {"relation_type": 595, "related_person": 93481, "related_place": 2281, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93483, "fields": {"relation_type": 596, "related_person": 93481, "related_place": 831, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93485, "fields": {"relation_type": 595, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93486, "fields": {"relation_type": 596, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93488, "fields": {"relation_type": 595, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93489, "fields": {"relation_type": 596, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93511, "fields": {"relation_type": 595, "related_person": 93510, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93512, "fields": {"relation_type": 596, "related_person": 93510, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93514, "fields": {"relation_type": 595, "related_person": 93513, "related_place": 22322, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93515, "fields": {"relation_type": 596, "related_person": 93513, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93517, "fields": {"relation_type": 595, "related_person": 93516, "related_place": 20659, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93518, "fields": {"relation_type": 596, "related_person": 93516, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93541, "fields": {"relation_type": 595, "related_person": 93540, "related_place": 1424, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93542, "fields": {"relation_type": 596, "related_person": 93540, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93547, "fields": {"relation_type": 595, "related_person": 93546, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93548, "fields": {"relation_type": 596, "related_person": 93546, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93565, "fields": {"relation_type": 595, "related_person": 93561, "related_place": 93562, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93566, "fields": {"relation_type": 596, "related_person": 93561, "related_place": 10793, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93574, "fields": {"relation_type": 595, "related_person": 93573, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93575, "fields": {"relation_type": 596, "related_person": 93573, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93589, "fields": {"relation_type": 595, "related_person": 93588, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93590, "fields": {"relation_type": 596, "related_person": 93588, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93601, "fields": {"relation_type": 595, "related_person": 93600, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93602, "fields": {"relation_type": 596, "related_person": 93600, "related_place": 3105, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93613, "fields": {"relation_type": 595, "related_person": 93609, "related_place": 13987, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93614, "fields": {"relation_type": 596, "related_person": 93609, "related_place": 93610, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93616, "fields": {"relation_type": 595, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93617, "fields": {"relation_type": 596, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93640, "fields": {"relation_type": 595, "related_person": 93639, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93641, "fields": {"relation_type": 596, "related_person": 93639, "related_place": 2170, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93643, "fields": {"relation_type": 595, "related_person": 93642, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93644, "fields": {"relation_type": 596, "related_person": 93642, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93646, "fields": {"relation_type": 595, "related_person": 93645, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93647, "fields": {"relation_type": 596, "related_person": 93645, "related_place": 6947, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93652, "fields": {"relation_type": 595, "related_person": 93651, "related_place": 21818, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93653, "fields": {"relation_type": 596, "related_person": 93651, "related_place": 2854, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93655, "fields": {"relation_type": 595, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93656, "fields": {"relation_type": 596, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93661, "fields": {"relation_type": 595, "related_person": 93657, "related_place": 93658, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93662, "fields": {"relation_type": 596, "related_person": 93657, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93664, "fields": {"relation_type": 595, "related_person": 93663, "related_place": 22545, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93665, "fields": {"relation_type": 596, "related_person": 93663, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93679, "fields": {"relation_type": 595, "related_person": 93678, "related_place": 1454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93680, "fields": {"relation_type": 596, "related_person": 93678, "related_place": 20872, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93685, "fields": {"relation_type": 595, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93686, "fields": {"relation_type": 596, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93703, "fields": {"relation_type": 595, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93704, "fields": {"relation_type": 596, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93706, "fields": {"relation_type": 595, "related_person": 93705, "related_place": 7454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93707, "fields": {"relation_type": 596, "related_person": 93705, "related_place": 22526, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93718, "fields": {"relation_type": 595, "related_person": 93714, "related_place": 93715, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93719, "fields": {"relation_type": 596, "related_person": 93714, "related_place": 9475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93752, "fields": {"relation_type": 595, "related_person": 93748, "related_place": 93749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93753, "fields": {"relation_type": 596, "related_person": 93748, "related_place": 3162, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93780, "fields": {"relation_type": 595, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93781, "fields": {"relation_type": 596, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93786, "fields": {"relation_type": 595, "related_person": 93785, "related_place": 16310, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93787, "fields": {"relation_type": 596, "related_person": 93785, "related_place": 5691, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93792, "fields": {"relation_type": 595, "related_person": 93791, "related_place": 9287, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93793, "fields": {"relation_type": 596, "related_person": 93791, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93801, "fields": {"relation_type": 595, "related_person": 93800, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93802, "fields": {"relation_type": 596, "related_person": 93800, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93807, "fields": {"relation_type": 595, "related_person": 93803, "related_place": 93804, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93808, "fields": {"relation_type": 596, "related_person": 93803, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93810, "fields": {"relation_type": 595, "related_person": 93809, "related_place": 22494, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93811, "fields": {"relation_type": 596, "related_person": 93809, "related_place": 4877, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93816, "fields": {"relation_type": 595, "related_person": 93815, "related_place": 12211, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93817, "fields": {"relation_type": 596, "related_person": 93815, "related_place": 8482, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93819, "fields": {"relation_type": 595, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93820, "fields": {"relation_type": 596, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93837, "fields": {"relation_type": 595, "related_person": 93836, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93838, "fields": {"relation_type": 596, "related_person": 93836, "related_place": 22475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93840, "fields": {"relation_type": 595, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93841, "fields": {"relation_type": 596, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93858, "fields": {"relation_type": 595, "related_person": 93854, "related_place": 93855, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93859, "fields": {"relation_type": 596, "related_person": 93854, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93864, "fields": {"relation_type": 595, "related_person": 93863, "related_place": 11556, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93865, "fields": {"relation_type": 596, "related_person": 93863, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93867, "fields": {"relation_type": 595, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93868, "fields": {"relation_type": 596, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93880, "fields": {"relation_type": 595, "related_person": 93878, "related_place": 93879, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93881, "fields": {"relation_type": 596, "related_person": 93878, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93892, "fields": {"relation_type": 595, "related_person": 93891, "related_place": 8798, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93893, "fields": {"relation_type": 596, "related_person": 93891, "related_place": 5478, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93895, "fields": {"relation_type": 595, "related_person": 93894, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93896, "fields": {"relation_type": 596, "related_person": 93894, "related_place": 20988, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93901, "fields": {"relation_type": 595, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93902, "fields": {"relation_type": 596, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93904, "fields": {"relation_type": 595, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93905, "fields": {"relation_type": 596, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93910, "fields": {"relation_type": 595, "related_person": 93909, "related_place": 4096, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93911, "fields": {"relation_type": 596, "related_person": 93909, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93922, "fields": {"relation_type": 595, "related_person": 93921, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93923, "fields": {"relation_type": 596, "related_person": 93921, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93938, "fields": {"relation_type": 595, "related_person": 93933, "related_place": 93934, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93939, "fields": {"relation_type": 596, "related_person": 93933, "related_place": 93937, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93941, "fields": {"relation_type": 595, "related_person": 93940, "related_place": 16594, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93942, "fields": {"relation_type": 596, "related_person": 93940, "related_place": 6004, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93947, "fields": {"relation_type": 595, "related_person": 93946, "related_place": 5308, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93948, "fields": {"relation_type": 596, "related_person": 93946, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93956, "fields": {"relation_type": 595, "related_person": 93955, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93957, "fields": {"relation_type": 596, "related_person": 93955, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93959, "fields": {"relation_type": 595, "related_person": 93958, "related_place": 9455, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93960, "fields": {"relation_type": 596, "related_person": 93958, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93962, "fields": {"relation_type": 595, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93963, "fields": {"relation_type": 596, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93965, "fields": {"relation_type": 595, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93966, "fields": {"relation_type": 596, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93968, "fields": {"relation_type": 595, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93969, "fields": {"relation_type": 596, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93971, "fields": {"relation_type": 595, "related_person": 93970, "related_place": 19599, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93972, "fields": {"relation_type": 596, "related_person": 93970, "related_place": 16864, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93989, "fields": {"relation_type": 595, "related_person": 93988, "related_place": 18400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93990, "fields": {"relation_type": 596, "related_person": 93988, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93992, "fields": {"relation_type": 595, "related_person": 93991, "related_place": 19215, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93993, "fields": {"relation_type": 596, "related_person": 93991, "related_place": 22570, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94004, "fields": {"relation_type": 595, "related_person": 94003, "related_place": 13253, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94005, "fields": {"relation_type": 596, "related_person": 94003, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94007, "fields": {"relation_type": 595, "related_person": 94006, "related_place": 22558, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94008, "fields": {"relation_type": 596, "related_person": 94006, "related_place": 20549, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94010, "fields": {"relation_type": 595, "related_person": 94009, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94011, "fields": {"relation_type": 596, "related_person": 94009, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94019, "fields": {"relation_type": 595, "related_person": 94018, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94020, "fields": {"relation_type": 596, "related_person": 94018, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 98116, "fields": {"relation_type": 595, "related_person": null, "related_place": null, "text": [], "collection": []}}, {"model": "relations.personinstitution", "pk": 99591, "fields": {"relation_type": null, "related_person": null, "related_institution": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 26, "fields": {"name": "Opatija", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11225], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 133, "fields": {"name": "Zagreb", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11275], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 183, "fields": {"name": "Wien", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11203], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 327, "fields": {"name": "Br\u00fcnn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11259], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 384, "fields": {"name": "Dlouh\u00e1 Ves", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11284], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 400, "fields": {"name": "Budapest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11223], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 831, "fields": {"name": "Bukarest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11242, 11243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 926, "fields": {"name": "Baden", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11313, 11314], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1390, "fields": {"name": "Berlin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11226, 11227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1424, "fields": {"name": "Liberec", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11258], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1454, "fields": {"name": "Bezau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11337, 11338], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1701, "fields": {"name": "Bodensdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11271], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1718, "fields": {"name": "Heilbronn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11269, 11270], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2006, "fields": {"name": "Boto\u015fani", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11251], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2072, "fields": {"name": "Pressburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11220], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2085, "fields": {"name": "Braunau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11272], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2161, "fields": {"name": "Breslau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11199], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2170, "fields": {"name": "Brixen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11279], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2197, "fields": {"name": "K\u00f6niggr\u00e4tz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11204], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2281, "fields": {"name": "Brody", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11244, 11245], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2489, "fields": {"name": "Buenos Aires", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11256, 11257], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2602, "fields": {"name": "Kaltern an der Weinstrasse", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11252], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2854, "fields": {"name": "Tschernowitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11224], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3105, "fields": {"name": "Teschen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11260], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3162, "fields": {"name": "Klausenburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11330], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4096, "fields": {"name": "D\u00fcren", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11299, 11300], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4269, "fields": {"name": "\u00dadlice", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4767, "fields": {"name": "Graz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11210, 11211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4877, "fields": {"name": "Freistadt", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11319, 11320], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5294, "fields": {"name": "Ghidfal\u0103u", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11246], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5308, "fields": {"name": "Marienheide", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11289, 11290], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5478, "fields": {"name": "G\u00f6rz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11303], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5691, "fields": {"name": "Meran", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11326], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5749, "fields": {"name": "Grieskirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11229, 11230], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6004, "fields": {"name": "Grossullersdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11294], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6324, "fields": {"name": "Hannover", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11221, 11222], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6700, "fields": {"name": "Innsbruck", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11235, 11236], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6947, "fields": {"name": "Hrastje-Mota", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11278], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7454, "fields": {"name": "Jaworzno", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11336], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7622, "fields": {"name": "Leoben", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11249, 11250], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7986, "fields": {"name": "Cassel", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11218, 11219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8482, "fields": {"name": "Klosterneuburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11322, 11323], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8798, "fields": {"name": "Konstanz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11301, 11302], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9287, "fields": {"name": "Kufstein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11324, 11325], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9455, "fields": {"name": "Lachovice", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11288], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9475, "fields": {"name": "Ljubljana", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11331], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9735, "fields": {"name": "Lemberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11263], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10015, "fields": {"name": "Linz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11195, 11196], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10265, "fields": {"name": "London", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11239, 11240], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10793, "fields": {"name": "Marburg an der Drau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11266], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11238, "fields": {"name": "Mies", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11234], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11556, "fields": {"name": "Moldava", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11308], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11799, "fields": {"name": "M\u00fcnchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11197, 11198], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12211, "fields": {"name": "Nysa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11321], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12758, "fields": {"name": "Nizza", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13253, "fields": {"name": "Sopron", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11344], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13382, "fields": {"name": "Olm\u00fctz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11228], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13714, "fields": {"name": "Paris", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11291, 11292], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13987, "fields": {"name": "Petting", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11280, 11281], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 14608, "fields": {"name": "Prag", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11200], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16242, "fields": {"name": "Sv\u00e4t\u00fd Jur", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11214], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16310, "fields": {"name": "Sankt Pankraz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11327], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16594, "fields": {"name": "\u0160t\u00edty", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11293], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16864, "fields": {"name": "Schwanberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11286, 11287], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18374, "fields": {"name": "Szczakowa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18400, "fields": {"name": "Szegedin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11351], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19215, "fields": {"name": "Trient", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11348], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19599, "fields": {"name": "Mojm\u00edrovce", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11285], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20549, "fields": {"name": "Warschau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11345], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20659, "fields": {"name": "Wei\u00dfkirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11255], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20872, "fields": {"name": "Bad Gastein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11339], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20988, "fields": {"name": "Wisborough Green", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11304, 11305], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 21818, "fields": {"name": "Zwittau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22216, "fields": {"name": "Jamnitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11206, 11207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22259, "fields": {"name": "Stronach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11261, 11262], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22322, "fields": {"name": "Gr\u00fcnburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11237, 11238], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22354, "fields": {"name": "Olten", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11253, 11254], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22475, "fields": {"name": "Bad Kreuznach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11311, 11312], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22494, "fields": {"name": "Lasberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11317, 11318], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22526, "fields": {"name": "Freiburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11334, 11335], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22545, "fields": {"name": "Boc\u015fa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11342, 11343], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22558, "fields": {"name": "Lud\u017amierz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11346, 11347], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22570, "fields": {"name": "Vezzano", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11349, 11350], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24156, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24696, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24697, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24698, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24699, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24835, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24860, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 27245, "fields": {"name": "Thalberg", "review": false, "start_date": "1812-01-08", "end_date": "1871-04-27", "start_date_written": "8.1.1812", "end_date_written": "27.4.1871", "status": "", "source": 531, "references": null, "notes": null, "text": [12155, 12156], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 46414, "fields": {"name": "Reicha", "review": false, "start_date": "1770-02-26", "end_date": "1836-05-28", "start_date_written": "26.2.1770", "end_date_written": "28.5.1836", "status": "", "source": 5804, "references": null, "notes": null, "text": [21722, 21723], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 46415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56248, "fields": {"name": "Moscheles", "review": false, "start_date": "1794-05-23", "end_date": "1870-03-10", "start_date_written": "23.5.1794", "end_date_written": "10.3.1870", "status": "", "source": 8543, "references": null, "notes": null, "text": [27186, 27187], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 56249, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 62757, "fields": {"name": "Liszt", "review": false, "start_date": "1811-10-22", "end_date": "1886-07-31", "start_date_written": "22.10.1811", "end_date_written": "31.7.1886", "status": "", "source": 10332, "references": null, "notes": null, "text": [30762, 30763], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88219, "fields": {"name": "Blahetka", "review": false, "start_date": "1810-11-15", "end_date": "1885-01-01", "start_date_written": "15.11.1810", "end_date_written": "1.1.1885", "status": "", "source": 17415, "references": null, "notes": null, "text": [44908, 44909], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88902, "fields": {"name": "Beethoven", "review": false, "start_date": "1770-12-16", "end_date": "1827-03-26", "start_date_written": "16.12.1770", "end_date_written": "26.3.1827", "status": "", "source": 17608, "references": null, "notes": null, "text": [45290, 45291], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 91062, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92412, "fields": {"name": "B\u00e4uerle", "review": false, "start_date": "1817-12-11", "end_date": "1896-07-17", "start_date_written": "11.12.1817", "end_date_written": "17.7.1896", "status": "", "source": 17852, "references": null, "notes": null, "text": [47030, 47031], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 92415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92603, "fields": {"name": "Czerny", "review": false, "start_date": "1791-02-21", "end_date": "1857-07-15", "start_date_written": "21.2.1791", "end_date_written": "15.7.1857", "status": "", "source": 18525, "references": null, "notes": null, "text": [47126, 47127], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 92604, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92605, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92930, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92931, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92932, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92933, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92934, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92935, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93003, "fields": {"name": "Bahr", "review": false, "start_date": "1863-07-19", "end_date": "1934-01-14", "start_date_written": "19.7.1863", "end_date_written": "14.1.1934", "status": "", "source": 102, "references": null, "notes": null, "text": [47200, 47201], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93009, "fields": {"name": "Czerny", "review": false, "start_date": "1863-03-25", "end_date": "1941-10-03", "start_date_written": "25.3.1863", "end_date_written": "3.10.1941", "status": "", "source": 114, "references": null, "notes": null, "text": [47204, 47205], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93012, "fields": {"name": "Czetz", "review": false, "start_date": "1822-06-08", "end_date": "1904-09-06", "start_date_written": "8.6.1822", "end_date_written": "6.9.1904", "status": "", "source": 116, "references": null, "notes": null, "text": [47206, 47207], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93013, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93014, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93015, "fields": {"name": "Czikann", "review": false, "start_date": "1789-07-10", "end_date": "1855-06-10", "start_date_written": "10.7.1789", "end_date_written": "10.6.1855", "status": "", "source": 117, "references": null, "notes": null, "text": [47208, 47209], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93016, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93017, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93018, "fields": {"name": "Clam-Gallas", "review": false, "start_date": "1805-03-11", "end_date": "1891-03-17", "start_date_written": "11.3.1805", "end_date_written": "17.3.1891", "status": "", "source": 108, "references": null, "notes": null, "text": [47210, 47211], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93021, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1826-06-15", "end_date": "1887-06-05", "start_date_written": "15.6.1826", "end_date_written": "5.6.1887", "status": "", "source": 109, "references": null, "notes": null, "text": [47212, 47213], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93022, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93023, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93024, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1863-01-01", "end_date": "1932-03-07", "start_date_written": "1.1.1863", "end_date_written": "7.3.1932", "status": "", "source": 110, "references": null, "notes": null, "text": [47214, 47215], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93025, "fields": {"name": "Clam (Grein)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93026, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93027, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93028, "fields": {"name": "Claus", "review": false, "start_date": "1835-01-02", "end_date": "1899-01-18", "start_date_written": "2.1.1835", "end_date_written": "18.1.1899", "status": "", "source": 111, "references": null, "notes": null, "text": [47216, 47217], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93029, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93030, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93031, "fields": {"name": "Conze", "review": false, "start_date": "1831-12-10", "end_date": "1914-07-19", "start_date_written": "10.12.1831", "end_date_written": "19.7.1914", "status": "", "source": 112, "references": null, "notes": null, "text": [47218, 47219], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93032, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93033, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93034, "fields": {"name": "Costenoble", "review": false, "start_date": "1769-12-25", "end_date": "1837-08-28", "start_date_written": "25.12.1769", "end_date_written": "28.8.1837", "status": "", "source": 113, "references": null, "notes": null, "text": [47220, 47221], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93035, "fields": {"name": "Herford, Westfalen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93036, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93037, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93044, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1846-03-21", "end_date": "1914-10-16", "start_date_written": "21.3.1846", "end_date_written": "16.10.1914", "status": "", "source": 103, "references": null, "notes": null, "text": [47226, 47227], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93045, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93046, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93047, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1834-11-29", "end_date": "1902-11-24", "start_date_written": "29.11.1834", "end_date_written": "24.11.1902", "status": "", "source": 104, "references": null, "notes": null, "text": [47228, 47229], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93048, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93049, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93050, "fields": {"name": "\u010cerven\u00fd", "review": false, "start_date": "1819-09-27", "end_date": "1896-01-19", "start_date_written": "27.9.1819", "end_date_written": "19.1.1896", "status": "", "source": 105, "references": null, "notes": null, "text": [47230, 47231], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93051, "fields": {"name": "Praha-Dube\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93054, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93055, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93056, "fields": {"name": "Charlemont", "review": false, "start_date": "1850-03-18", "end_date": "1939-03-18", "start_date_written": "18.3.1850", "end_date_written": "18.3.1939", "status": "", "source": 106, "references": null, "notes": null, "text": [47232, 47233], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93057, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93058, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93059, "fields": {"name": "Chlumczansk\u00fd", "review": false, "start_date": "1749-11-15", "end_date": "1830-06-14", "start_date_written": "15.11.1749", "end_date_written": "14.6.1830", "status": "", "source": 107, "references": null, "notes": null, "text": [47234, 47235], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93060, "fields": {"name": "Ho\u0161tice, kr. Jiho\u010desk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93063, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93064, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93065, "fields": {"name": "Dumba", "review": false, "start_date": "1856-06-17", "end_date": "1947-01-06", "start_date_written": "17.6.1856", "end_date_written": "6.1.1947", "status": "", "source": 121, "references": null, "notes": null, "text": [47236, 47237], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93066, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93067, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93068, "fields": {"name": "Doderer", "review": false, "start_date": "1825-01-02", "end_date": "1900-05-13", "start_date_written": "2.1.1825", "end_date_written": "13.5.1900", "status": "", "source": 120, "references": null, "notes": null, "text": [47238, 47239], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93069, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93070, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93071, "fields": {"name": "Defregger", "review": false, "start_date": "1835-04-30", "end_date": "1921-01-02", "start_date_written": "30.4.1835", "end_date_written": "2.1.1921", "status": "", "source": 118, "references": null, "notes": null, "text": [47240, 47241], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93072, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93073, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93074, "fields": {"name": "Dengel", "review": false, "start_date": "1872-06-22", "end_date": "1947-09-09", "start_date_written": "22.6.1872", "end_date_written": "9.9.1947", "status": "", "source": 119, "references": null, "notes": null, "text": [47242, 47243], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93075, "fields": {"name": "Elbigenalp-Untergiblen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93078, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93079, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93136, "fields": {"name": "Holovsky", "review": false, "start_date": "1917-04-29", "end_date": "1933-07-03", "start_date_written": "29.4.1917", "end_date_written": "3.7.1933", "status": "", "source": 122, "references": null, "notes": null, "text": [47276, 47277], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93137, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93138, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93328, "fields": {"name": "Lorenz", "review": false, "start_date": "1859-04-13", "end_date": "1945-03-25", "start_date_written": "13.4.1859", "end_date_written": "25.3.1945", "status": "", "source": 134, "references": null, "notes": null, "text": [47384, 47385], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93329, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93330, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93337, "fields": {"name": "L\u00f6wy", "review": false, "start_date": "1851-09-14", "end_date": "1905-12-27", "start_date_written": "14.9.1851", "end_date_written": "27.12.1905", "status": "", "source": 133, "references": null, "notes": null, "text": [47388, 47389], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93338, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93339, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93352, "fields": {"name": "Lobmeyr", "review": false, "start_date": "1792-03-17", "end_date": "1855-05-08", "start_date_written": "17.3.1792", "end_date_written": "8.5.1855", "status": "", "source": 132, "references": null, "notes": null, "text": [47394, 47395], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93353, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93354, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93366, "fields": {"name": "Lichtblau", "review": false, "start_date": "1844-05-17", "end_date": "1908-05-10", "start_date_written": "17.5.1844", "end_date_written": "10.5.1908", "status": "", "source": 130, "references": null, "notes": null, "text": [47402, 47403], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93367, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93368, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93369, "fields": {"name": "Lichtblau", "review": false, "start_date": "1875-02-25", "end_date": "1935-12-19", "start_date_written": "25.2.1875", "end_date_written": "19.12.1935", "status": "", "source": 131, "references": null, "notes": null, "text": [47404, 47405], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93370, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93371, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93378, "fields": {"name": "Leitgeb", "review": false, "start_date": "1835-10-20", "end_date": "1888-04-05", "start_date_written": "20.10.1835", "end_date_written": "5.4.1888", "status": "", "source": 128, "references": null, "notes": null, "text": [47410, 47411], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93379, "fields": {"name": "Portendorf, Bez. Klagenfurt Land", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93382, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93383, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93387, "fields": {"name": "Lenhoss\u00e9k", "review": false, "start_date": "1773-05-11", "end_date": "1840-02-11", "start_date_written": "11.5.1773", "end_date_written": "11.2.1840", "status": "", "source": 129, "references": null, "notes": null, "text": [47414, 47415], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93388, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93389, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93393, "fields": {"name": "Lefler", "review": false, "start_date": "1863-11-07", "end_date": "1919-03-14", "start_date_written": "7.11.1863", "end_date_written": "14.3.1919", "status": "", "source": 125, "references": null, "notes": null, "text": [47418, 47419], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93394, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93395, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93396, "fields": {"name": "Leichter", "review": false, "start_date": "1895-08-20", "end_date": "1942-03-17", "start_date_written": "20.8.1895", "end_date_written": "17.3.1942", "status": "", "source": 126, "references": null, "notes": null, "text": [47420, 47421], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93397, "fields": {"name": "KZ Ravensbr\u00fcck, Brandenburg", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93398, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93399, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93400, "fields": {"name": "Leidesdorf", "review": false, "start_date": "1810-09-25", "end_date": "1876-01-19", "start_date_written": "25.9.1810", "end_date_written": "19.1.1876", "status": "", "source": 127, "references": null, "notes": null, "text": [47422, 47423], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93401, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93402, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93409, "fields": {"name": "Lapaine", "review": false, "start_date": "1843-02-05", "end_date": "1923-02-21", "start_date_written": "5.2.1843", "end_date_written": "21.2.1923", "status": "", "source": 124, "references": null, "notes": null, "text": [47428, 47429], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93410, "fields": {"name": "Vojsko, sr. Gorica", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93413, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93414, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93415, "fields": {"name": "Langer-Schroll", "review": false, "start_date": "1850-10-02", "end_date": "1926-11-09", "start_date_written": "2.10.1850", "end_date_written": "9.11.1926", "status": "", "source": 123, "references": null, "notes": null, "text": [47430, 47431], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93417, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93418, "fields": {"name": "M\u00fcller", "review": false, "start_date": "1874-07-08", "end_date": "1941-12-09", "start_date_written": "8.7.1874", "end_date_written": "9.12.1941", "status": "", "source": 144, "references": null, "notes": null, "text": [47432, 47433], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93419, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93420, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93442, "fields": {"name": "M\u00f6rl", "review": false, "start_date": "1812-10-16", "end_date": "1868-01-11", "start_date_written": "16.10.1812", "end_date_written": "11.1.1868", "status": "", "source": 143, "references": null, "notes": null, "text": [47446, 47447], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93443, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93444, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93445, "fields": {"name": "Millosicz", "review": false, "start_date": "1819-10-18", "end_date": "1890-07-24", "start_date_written": "18.10.1819", "end_date_written": "24.7.1890", "status": "", "source": 142, "references": null, "notes": null, "text": [47448, 47449], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93446, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93447, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93448, "fields": {"name": "Miklosich", "review": false, "start_date": "1813-11-20", "end_date": "1891-03-07", "start_date_written": "20.11.1813", "end_date_written": "7.3.1891", "status": "", "source": 141, "references": null, "notes": null, "text": [47450, 47451], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93449, "fields": {"name": "Radomer\u0161\u010dak, sr. Murska Sobota", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93452, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93453, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93469, "fields": {"name": "Meithner", "review": false, "start_date": "1892-05-27", "end_date": "1942-12-13", "start_date_written": "27.5.1892", "end_date_written": "13.12.1942", "status": "", "source": 140, "references": null, "notes": null, "text": [47460, 47461], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93470, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93471, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93481, "fields": {"name": "Margulies", "review": false, "start_date": "1817-01-01", "end_date": "1880-01-01", "start_date_written": "1817", "end_date_written": "1880", "status": "", "source": 139, "references": null, "notes": null, "text": [47466, 47467], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93482, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93483, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93484, "fields": {"name": "M\u00e1nesov\u00e1", "review": false, "start_date": "1817-01-21", "end_date": null, "start_date_written": "21.1.1817", "end_date_written": "1883.6", "status": "", "source": 137, "references": null, "notes": null, "text": [47468, 47469], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93485, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93486, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93487, "fields": {"name": "M\u00e1nes", "review": false, "start_date": "1828-07-17", "end_date": "1880-08-05", "start_date_written": "17.7.1828", "end_date_written": "5.8.1880", "status": "", "source": 138, "references": null, "notes": null, "text": [47470, 47471], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93488, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93489, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93510, "fields": {"name": "Mayer", "review": false, "start_date": "1894-02-20", "end_date": "1944-07-01", "start_date_written": "20.2.1894", "end_date_written": "1.7.1944", "status": "", "source": 136, "references": null, "notes": null, "text": [47482, 47483], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93511, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93512, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93513, "fields": {"name": "Mahl-Schedl von Alpenburg", "review": false, "start_date": "1806-10-27", "end_date": "1873-04-01", "start_date_written": "27.10.1806", "end_date_written": "1.4.1873", "status": "", "source": 135, "references": null, "notes": null, "text": [47484, 47485], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93514, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93515, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93516, "fields": {"name": "Nov\u00e1\u010dek", "review": false, "start_date": "1860-04-07", "end_date": "1929-08-12", "start_date_written": "7.4.1860", "end_date_written": "12.8.1929", "status": "", "source": 145, "references": null, "notes": null, "text": [47486, 47487], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93517, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93518, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93540, "fields": {"name": "Ortmann", "review": false, "start_date": "1874-03-10", "end_date": "1939-11-22", "start_date_written": "10.3.1874", "end_date_written": "22.11.1939", "status": "", "source": 147, "references": null, "notes": null, "text": [47502, 47503], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93541, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93542, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93546, "fields": {"name": "Oellacher", "review": false, "start_date": "1804-02-16", "end_date": "1880-08-16", "start_date_written": "16.2.1804", "end_date_written": "16.8.1880", "status": "", "source": 146, "references": null, "notes": null, "text": [47506, 47507], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93547, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93548, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93561, "fields": {"name": "Poljanec", "review": false, "start_date": "1872-09-23", "end_date": "1944-08-08", "start_date_written": "23.9.1872", "end_date_written": "8.8.1944", "status": "", "source": 151, "references": null, "notes": null, "text": [47516, 47517], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93562, "fields": {"name": "Bre\u017eice, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93565, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93566, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93573, "fields": {"name": "Petzold", "review": false, "start_date": "1859-11-26", "end_date": "1932-07-15", "start_date_written": "26.11.1859", "end_date_written": "15.7.1932", "status": "", "source": 150, "references": null, "notes": null, "text": [47522, 47523], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93574, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93575, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93588, "fields": {"name": "Peithner von Lichtenfels", "review": false, "start_date": "1833-11-18", "end_date": "1913-01-22", "start_date_written": "18.11.1833", "end_date_written": "22.1.1913", "status": "", "source": 149, "references": "", "notes": "", "text": [47530, 47531], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93589, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93590, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93600, "fields": {"name": "Patera", "review": false, "start_date": "1819-07-11", "end_date": "1894-06-26", "start_date_written": "11.7.1819", "end_date_written": "26.6.1894", "status": "", "source": 148, "references": null, "notes": null, "text": [47536, 47537], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93601, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93602, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93609, "fields": {"name": "Rumpler", "review": false, "start_date": "1771-02-03", "end_date": "1846-03-17", "start_date_written": "3.2.1771", "end_date_written": "17.3.1846", "status": "", "source": 158, "references": null, "notes": null, "text": [47540, 47541], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93610, "fields": {"name": "Seekirchen a. Wallersee", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93613, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93614, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93615, "fields": {"name": "Rotter", "review": false, "start_date": "1868-11-30", "end_date": "1945-09-18", "start_date_written": "30.11.1868", "end_date_written": "18.9.1945", "status": "", "source": 157, "references": null, "notes": null, "text": [47542, 47543], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93616, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93617, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93639, "fields": {"name": "Revertera von Salandra", "review": false, "start_date": "1827-01-21", "end_date": "1904-04-28", "start_date_written": "21.1.1827", "end_date_written": "28.4.1904", "status": "", "source": 156, "references": null, "notes": null, "text": [47556, 47557], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93640, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93641, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93642, "fields": {"name": "Reichenberger", "review": false, "start_date": "1770-11-24", "end_date": "1854-10-26", "start_date_written": "24.11.1770", "end_date_written": "26.10.1854", "status": "", "source": 154, "references": null, "notes": null, "text": [47558, 47559], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93643, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93644, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93645, "fields": {"name": "Reiser", "review": false, "start_date": "1861-12-21", "end_date": "1936-03-31", "start_date_written": "21.12.1861", "end_date_written": "31.3.1936", "status": "", "source": 155, "references": null, "notes": null, "text": [47560, 47561], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93646, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93647, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93651, "fields": {"name": "Randa", "review": false, "start_date": "1874-05-24", "end_date": "1941-08-13", "start_date_written": "24.5.1874", "end_date_written": "13.8.1941", "status": "", "source": 153, "references": null, "notes": null, "text": [47564, 47565], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93652, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93653, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93654, "fields": {"name": "Radakovi\u010d", "review": false, "start_date": "1866-04-25", "end_date": "1934-08-15", "start_date_written": "25.4.1866", "end_date_written": "15.8.1934", "status": "", "source": 152, "references": null, "notes": null, "text": [47566, 47567], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93655, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93656, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93657, "fields": {"name": "Szigligeti", "review": false, "start_date": "1814-03-08", "end_date": "1878-01-19", "start_date_written": "8.3.1814", "end_date_written": "19.1.1878", "status": "", "source": 194, "references": null, "notes": null, "text": [47568, 47569], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93658, "fields": {"name": "Oradea-Olosig, jud. Bihor", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93661, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93662, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93663, "fields": {"name": "Szurmay von Uzsok", "review": false, "start_date": "1860-12-19", "end_date": "1945-03-26", "start_date_written": "19.12.1860", "end_date_written": "26.3.1945", "status": "", "source": 195, "references": null, "notes": null, "text": [47570, 47571], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93664, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93665, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93678, "fields": {"name": "St\u00fclz", "review": false, "start_date": "1799-02-23", "end_date": "1872-06-28", "start_date_written": "23.2.1799", "end_date_written": "28.6.1872", "status": "", "source": 193, "references": null, "notes": null, "text": [47580, 47581], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93679, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93680, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93684, "fields": {"name": "Stowasser", "review": false, "start_date": "1887-10-21", "end_date": "1934-02-19", "start_date_written": "21.10.1887", "end_date_written": "19.2.1934", "status": "", "source": 192, "references": null, "notes": null, "text": [47584, 47585], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93685, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93686, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93702, "fields": {"name": "Steindler", "review": false, "start_date": "1879-10-28", "end_date": "1933-12-21", "start_date_written": "28.10.1879", "end_date_written": "21.12.1933", "status": "", "source": 190, "references": null, "notes": null, "text": [47594, 47595], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93703, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93704, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93705, "fields": {"name": "Stein", "review": false, "start_date": "1891-09-19", "end_date": "1945-02-25", "start_date_written": "19.9.1891", "end_date_written": "25.2.1945", "status": "", "source": 191, "references": null, "notes": null, "text": [47596, 47597], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93706, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93707, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93714, "fields": {"name": "Stariha", "review": false, "start_date": "1845-05-12", "end_date": "1915-12-15", "start_date_written": "12.5.1845", "end_date_written": "15.12.1915", "status": "", "source": 189, "references": null, "notes": null, "text": [47602, 47603], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93715, "fields": {"name": "Sadinja vas, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93718, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93719, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93748, "fields": {"name": "\u0160njari\u0107", "review": false, "start_date": "1851-06-22", "end_date": "1930-01-28", "start_date_written": "22.6.1851", "end_date_written": "28.1.1930", "status": "", "source": 188, "references": null, "notes": null, "text": [47614, 47615], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93749, "fields": {"name": "\u010canak, sr. Gospi\u0107", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93752, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93753, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93779, "fields": {"name": "Sichulski", "review": false, "start_date": "1879-01-17", "end_date": "1942-11-06", "start_date_written": "17.1.1879", "end_date_written": "6.11.1942", "status": "", "source": 187, "references": null, "notes": null, "text": [47626, 47627], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93780, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93781, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93785, "fields": {"name": "Settari", "review": false, "start_date": "1841-10-04", "end_date": "1905-01-29", "start_date_written": "4.10.1841", "end_date_written": "29.1.1905", "status": "", "source": 186, "references": null, "notes": null, "text": [47630, 47631], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93786, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93787, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93791, "fields": {"name": "Sehnal", "review": false, "start_date": "1851-12-22", "end_date": "1910-09-12", "start_date_written": "22.12.1851", "end_date_written": "12.9.1910", "status": "", "source": 185, "references": null, "notes": null, "text": [47634, 47635], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93792, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93793, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93800, "fields": {"name": "Schwartz", "review": false, "start_date": "1852-02-28", "end_date": "1929-09-15", "start_date_written": "28.2.1852", "end_date_written": "15.9.1929", "status": "", "source": 181, "references": null, "notes": null, "text": [47640, 47641], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93801, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93802, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93803, "fields": {"name": "Schwarz", "review": false, "start_date": "1840-11-16", "end_date": "1903-12-28", "start_date_written": "16.11.1840", "end_date_written": "28.12.1903", "status": "", "source": 182, "references": null, "notes": null, "text": [47642, 47643], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93804, "fields": {"name": "\u0160umperk-Temenice, kr. Olomouck\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93807, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93808, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93809, "fields": {"name": "Schwarz", "review": false, "start_date": "1811-11-06", "end_date": "1879-05-07", "start_date_written": "6.11.1811", "end_date_written": "7.5.1879", "status": "", "source": 183, "references": null, "notes": null, "text": [47644, 47645], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93810, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93811, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93815, "fields": {"name": "Schweitzer", "review": false, "start_date": "1815-02-01", "end_date": "1896-07-09", "start_date_written": "1.2.1815", "end_date_written": "9.7.1896", "status": "", "source": 184, "references": null, "notes": null, "text": [47648, 47649], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93816, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93817, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93818, "fields": {"name": "Schwabl", "review": false, "start_date": "1854-06-29", "end_date": "1923-04-16", "start_date_written": "29.6.1854", "end_date_written": "16.4.1923", "status": "", "source": 180, "references": null, "notes": null, "text": [47650, 47651], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93819, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93820, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93836, "fields": {"name": "Schu\u00ebcker", "review": false, "start_date": "1860-11-16", "end_date": "1911-11-09", "start_date_written": "16.11.1860", "end_date_written": "9.11.1911", "status": "", "source": 179, "references": null, "notes": null, "text": [47660, 47661], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93837, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93838, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93839, "fields": {"name": "Schr\u00f6dl", "review": false, "start_date": "1841-07-07", "end_date": "1908-12-05", "start_date_written": "7.7.1841", "end_date_written": "5.12.1908", "status": "", "source": 178, "references": null, "notes": null, "text": [47662, 47663], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93841, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93854, "fields": {"name": "Schreyer", "review": false, "start_date": "1876-12-09", "end_date": "1950-04-14", "start_date_written": "9.12.1876", "end_date_written": "14.4.1950", "status": "", "source": 177, "references": null, "notes": null, "text": [47672, 47673], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93855, "fields": {"name": "B\u0159idli\u010dn\u00e1, kr. Moravskoslezsk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93858, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93859, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93863, "fields": {"name": "Scholz", "review": false, "start_date": "1819-08-20", "end_date": "1902-05-19", "start_date_written": "20.8.1819", "end_date_written": "19.5.1902", "status": "", "source": 175, "references": null, "notes": null, "text": [47676, 47677], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93864, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93865, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93866, "fields": {"name": "Schrammel", "review": false, "start_date": "1850-05-22", "end_date": "1893-06-17", "start_date_written": "22.5.1850", "end_date_written": "17.6.1893", "status": "", "source": 176, "references": null, "notes": null, "text": [47678, 47679], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93867, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93868, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93878, "fields": {"name": "Scholl", "review": false, "start_date": "1805-01-01", "end_date": "1884-12-12", "start_date_written": "1805", "end_date_written": "12.12.1884", "status": "", "source": 174, "references": null, "notes": null, "text": [47684, 47685], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93879, "fields": {"name": "Regio oder Rea (?)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93880, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93881, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93891, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1804-06-30", "end_date": "1880-12-19", "start_date_written": "30.6.1804", "end_date_written": "19.12.1880", "status": "", "source": 172, "references": null, "notes": null, "text": [47688, 47689], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93892, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93893, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93894, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1863-09-12", "end_date": "1930-03-09", "start_date_written": "12.9.1863", "end_date_written": "9.3.1930", "status": "", "source": 173, "references": null, "notes": null, "text": [47690, 47691], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93895, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93896, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93900, "fields": {"name": "Schnitzler", "review": false, "start_date": "1865-07-13", "end_date": "1939-06-29", "start_date_written": "13.7.1865", "end_date_written": "29.6.1939", "status": "", "source": 169, "references": null, "notes": null, "text": [47694, 47695], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93901, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93902, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93903, "fields": {"name": "Schober", "review": false, "start_date": "1856-12-15", "end_date": "1917-03-07", "start_date_written": "15.12.1856", "end_date_written": "7.3.1917", "status": "", "source": 170, "references": null, "notes": null, "text": [47696, 47697], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93905, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93909, "fields": {"name": "Schoeller", "review": false, "start_date": "1826-10-05", "end_date": "1889-06-25", "start_date_written": "5.10.1826", "end_date_written": "25.6.1889", "status": "", "source": 171, "references": null, "notes": null, "text": [47700, 47701], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93910, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93911, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93921, "fields": {"name": "Schmutzler", "review": false, "start_date": "1864-03-29", "end_date": "1940-06-20", "start_date_written": "29.3.1864", "end_date_written": "20.6.1940", "status": "", "source": 168, "references": null, "notes": null, "text": [47706, 47707], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93922, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93923, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93933, "fields": {"name": "Schmidt", "review": false, "start_date": "1904-03-04", "end_date": "1942-11-16", "start_date_written": "4.3.1904", "end_date_written": "16.11.1942", "status": "", "source": 167, "references": null, "notes": null, "text": [47712, 47713], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93934, "fields": {"name": "Davydivka, obl. \u010cernivci", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93937, "fields": {"name": "Girenbad b. Hinwil, Kanton Z\u00fcrich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93938, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93939, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93940, "fields": {"name": "Schmidt", "review": false, "start_date": "1826-12-09", "end_date": "1892-03-28", "start_date_written": "9.12.1826", "end_date_written": "28.3.1892", "status": "", "source": 166, "references": null, "notes": null, "text": [47714, 47715], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93941, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93942, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93946, "fields": {"name": "Schmal", "review": false, "start_date": "1844-09-23", "end_date": "1900-12-24", "start_date_written": "23.9.1844", "end_date_written": "24.12.1900", "status": "", "source": 164, "references": null, "notes": null, "text": [47718, 47719], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93947, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93948, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93955, "fields": {"name": "Schmidt-Beauchez", "review": false, "start_date": "1848-06-06", "end_date": "1912-12-14", "start_date_written": "6.6.1848", "end_date_written": "14.12.1912", "status": "", "source": 165, "references": null, "notes": null, "text": [47724, 47725], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93956, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93957, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93958, "fields": {"name": "Schindler", "review": false, "start_date": "1835-06-23", "end_date": "1911-02-22", "start_date_written": "23.6.1835", "end_date_written": "22.2.1911", "status": "", "source": 163, "references": null, "notes": null, "text": [47726, 47727], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93959, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93960, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93961, "fields": {"name": "Scheu", "review": false, "start_date": "1841-09-15", "end_date": "1904-10-12", "start_date_written": "15.9.1841", "end_date_written": "12.10.1904", "status": "", "source": 161, "references": null, "notes": null, "text": [47728, 47729], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93962, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93963, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93964, "fields": {"name": "Schikaneder", "review": false, "start_date": "1855-02-27", "end_date": "1924-11-15", "start_date_written": "27.2.1855", "end_date_written": "15.11.1924", "status": "", "source": 162, "references": null, "notes": null, "text": [47730, 47731], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93965, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93966, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93967, "fields": {"name": "Schell", "review": false, "start_date": "1892-12-19", "end_date": "1945-06-02", "start_date_written": "19.12.1892", "end_date_written": "2.6.1945", "status": "", "source": 159, "references": null, "notes": null, "text": [47732, 47733], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93968, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93969, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93970, "fields": {"name": "Schenk", "review": false, "start_date": "1840-08-23", "end_date": "1902-08-17", "start_date_written": "23.8.1840", "end_date_written": "17.8.1902", "status": "", "source": 160, "references": null, "notes": null, "text": [47734, 47735], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93971, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93972, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93988, "fields": {"name": "T\u00f6lgyessy", "review": false, "start_date": "1853-05-01", "end_date": "1920-02-02", "start_date_written": "1.5.1853", "end_date_written": "2.2.1920", "status": "", "source": 201, "references": null, "notes": null, "text": [47746, 47747], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93989, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93990, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93991, "fields": {"name": "Thun und Hohenstein", "review": false, "start_date": "1763-03-28", "end_date": "1818-10-09", "start_date_written": "28.3.1763", "end_date_written": "9.10.1818", "status": "", "source": 200, "references": null, "notes": null, "text": [47748, 47749], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93992, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93993, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94003, "fields": {"name": "Teschenberg", "review": false, "start_date": "1836-05-21", "end_date": "1886-02-25", "start_date_written": "21.5.1836", "end_date_written": "25.2.1886", "status": "", "source": 197, "references": "", "notes": "", "text": [47754, 47755], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94006, "fields": {"name": "Tetmajer", "review": false, "start_date": "1865-02-12", "end_date": "1940-01-18", "start_date_written": "12.2.1865", "end_date_written": "18.1.1940", "status": "", "source": 198, "references": null, "notes": null, "text": [47756, 47757], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94007, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94008, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94009, "fields": {"name": "Teuber", "review": false, "start_date": "1877-05-11", "end_date": "1943-02-03", "start_date_written": "11.5.1877", "end_date_written": "3.2.1943", "status": "", "source": 199, "references": null, "notes": null, "text": [47758, 47759], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94018, "fields": {"name": "Tauber", "review": false, "start_date": "1891-05-16", "end_date": "1948-01-08", "start_date_written": "16.5.1891", "end_date_written": "8.1.1948", "status": "", "source": 196, "references": null, "notes": null, "text": [47764, 47765], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94160, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94161, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94162, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94163, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94164, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94165, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94166, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94167, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94168, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94169, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94170, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94171, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94174, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94175, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98116, "fields": {"name": "wien", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99591, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111335, "fields": {"name": "Schlacht von St. Lucia", "review": false, "start_date": "1848-05-06", "end_date": null, "start_date_written": "6.5.1848", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Schlacht_von_Santa_Lucia", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111348, "fields": {"name": "Schlacht bei K\u00f6niggr\u00e4tz", "review": false, "start_date": "1866-07-03", "end_date": null, "start_date_written": "3.7.1866", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Schlacht_bei_K%C3%B6niggr%C3%A4tz", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111365, "fields": {"name": "Zweiter Unabh\u00e4ngigkeitskrieg Italien", "review": false, "start_date": "1859-01-01", "end_date": null, "start_date_written": "1859", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Italienische_Unabh%C3%A4ngigkeitskriege#Zweiter_Unabh.C3.A4ngigkeitskrieg_.281859.29", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.source", "pk": 102, "fields": {"orig_filename": "Bahr_Hermann_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f.", "author": "", "orig_id": 1405476}}, {"model": "metainfo.source", "pk": 103, "fields": {"orig_filename": "Celakovsky_Jaromir_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416946}}, {"model": "metainfo.source", "pk": 104, "fields": {"orig_filename": "Celakovsky_Ladislav_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416947}}, {"model": "metainfo.source", "pk": 105, "fields": {"orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416953}}, {"model": "metainfo.source", "pk": 106, "fields": {"orig_filename": "Charlemont_Hugo_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417029}}, {"model": "metainfo.source", "pk": 107, "fields": {"orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417140}}, {"model": "metainfo.source", "pk": 108, "fields": {"orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417315}}, {"model": "metainfo.source", "pk": 109, "fields": {"orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417317}}, {"model": "metainfo.source", "pk": 110, "fields": {"orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417316}}, {"model": "metainfo.source", "pk": 111, "fields": {"orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417320}}, {"model": "metainfo.source", "pk": 112, "fields": {"orig_filename": "Conze_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f.", "author": "", "orig_id": 1417417}}, {"model": "metainfo.source", "pk": 113, "fields": {"orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417431}}, {"model": "metainfo.source", "pk": 114, "fields": {"orig_filename": "Czerny_Adalbert_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417613}}, {"model": "metainfo.source", "pk": 116, "fields": {"orig_filename": "Czetz_Johann_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f.", "author": "", "orig_id": 1417689}}, {"model": "metainfo.source", "pk": 117, "fields": {"orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417691}}, {"model": "metainfo.source", "pk": 118, "fields": {"orig_filename": "Defregger_Franz_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417167}}, {"model": "metainfo.source", "pk": 119, "fields": {"orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417262}}, {"model": "metainfo.source", "pk": 120, "fields": {"orig_filename": "Doderer_Wilhelm_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421589}}, {"model": "metainfo.source", "pk": 121, "fields": {"orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422065}}, {"model": "metainfo.source", "pk": 122, "fields": {"orig_filename": "Holovsky_Hilde_1917_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417020}}, {"model": "metainfo.source", "pk": 123, "fields": {"orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412571}}, {"model": "metainfo.source", "pk": 124, "fields": {"orig_filename": "Lapaine_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f.", "author": "", "orig_id": 1412681}}, {"model": "metainfo.source", "pk": 125, "fields": {"orig_filename": "Lefler_Heinrich_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413578}}, {"model": "metainfo.source", "pk": 126, "fields": {"orig_filename": "Leichter_Kaethe_1895_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413749}}, {"model": "metainfo.source", "pk": 127, "fields": {"orig_filename": "Leidesdorf_Franz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f.", "author": "", "orig_id": 1413751}}, {"model": "metainfo.source", "pk": 128, "fields": {"orig_filename": "Leitgeb_Hubert_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f.", "author": "", "orig_id": 1413852}}, {"model": "metainfo.source", "pk": 129, "fields": {"orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412686}}, {"model": "metainfo.source", "pk": 130, "fields": {"orig_filename": "Lichtblau_Adolf_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411908}}, {"model": "metainfo.source", "pk": 131, "fields": {"orig_filename": "Lichtblau_Ludwig_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f.", "author": "", "orig_id": 1411907}}, {"model": "metainfo.source", "pk": 132, "fields": {"orig_filename": "Lobmeyr_Josef_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263", "author": "", "orig_id": 1411542}}, {"model": "metainfo.source", "pk": 133, "fields": {"orig_filename": "Loewy_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297", "author": "", "orig_id": 1411913}}, {"model": "metainfo.source", "pk": 134, "fields": {"orig_filename": "Lorenz_Heinrich_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316", "author": "", "orig_id": 1412111}}, {"model": "metainfo.source", "pk": 135, "fields": {"orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f.", "author": "", "orig_id": 1411846}}, {"model": "metainfo.source", "pk": 136, "fields": {"orig_filename": "Maier_Karl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412133}}, {"model": "metainfo.source", "pk": 137, "fields": {"orig_filename": "Manesova_Amalie_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f.", "author": "", "orig_id": 1409111}}, {"model": "metainfo.source", "pk": 138, "fields": {"orig_filename": "Manes_Quido_1828_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409109}}, {"model": "metainfo.source", "pk": 139, "fields": {"orig_filename": "Margulies_Berl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1409490}}, {"model": "metainfo.source", "pk": 140, "fields": {"orig_filename": "Meithner_Karl_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f.", "author": "", "orig_id": 1413879}}, {"model": "metainfo.source", "pk": 141, "fields": {"orig_filename": "Miklosich_Franz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f.", "author": "", "orig_id": 1413368}}, {"model": "metainfo.source", "pk": 142, "fields": {"orig_filename": "Millosicz_Georg_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f.", "author": "", "orig_id": 1413706}}, {"model": "metainfo.source", "pk": 143, "fields": {"orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412553}}, {"model": "metainfo.source", "pk": 144, "fields": {"orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413568}}, {"model": "metainfo.source", "pk": 145, "fields": {"orig_filename": "Novacek_Rudolf_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f.", "author": "", "orig_id": 1408134}}, {"model": "metainfo.source", "pk": 146, "fields": {"orig_filename": "Oellacher_Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408688}}, {"model": "metainfo.source", "pk": 147, "fields": {"orig_filename": "Ortmann_Rudolf_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409161}}, {"model": "metainfo.source", "pk": 148, "fields": {"orig_filename": "Patera_Adolf_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f.", "author": "", "orig_id": 1408720}}, {"model": "metainfo.source", "pk": 149, "fields": {"orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f.", "author": "", "orig_id": 1409360}}, {"model": "metainfo.source", "pk": 150, "fields": {"orig_filename": "Petzold_Emil_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407914}}, {"model": "metainfo.source", "pk": 151, "fields": {"orig_filename": "Poljanec_Leopold_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410619}}, {"model": "metainfo.source", "pk": 152, "fields": {"orig_filename": "Radakovic_Michael_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f.", "author": "", "orig_id": 1409702}}, {"model": "metainfo.source", "pk": 153, "fields": {"orig_filename": "Randa_Maximilian_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411", "author": "", "orig_id": 1410086}}, {"model": "metainfo.source", "pk": 154, "fields": {"orig_filename": "Reichenberger_Andreas_1770_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f.", "author": "", "orig_id": 1406805}}, {"model": "metainfo.source", "pk": 155, "fields": {"orig_filename": "Reiser_Othmar_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406978}}, {"model": "metainfo.source", "pk": 156, "fields": {"orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f.", "author": "", "orig_id": 1407193}}, {"model": "metainfo.source", "pk": 157, "fields": {"orig_filename": "Rotter_Johann_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f.", "author": "", "orig_id": 1407684}}, {"model": "metainfo.source", "pk": 158, "fields": {"orig_filename": "Rumpler_Matthias_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327", "author": "", "orig_id": 1407832}}, {"model": "metainfo.source", "pk": 159, "fields": {"orig_filename": "Schell_Karl_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f.", "author": "", "orig_id": 1406179}}, {"model": "metainfo.source", "pk": 160, "fields": {"orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f.", "author": "", "orig_id": 1406202}}, {"model": "metainfo.source", "pk": 161, "fields": {"orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f.", "author": "", "orig_id": 1406044}}, {"model": "metainfo.source", "pk": 162, "fields": {"orig_filename": "Schikaneder_Jakub_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f.", "author": "", "orig_id": 1406374}}, {"model": "metainfo.source", "pk": 163, "fields": {"orig_filename": "Schindler_Josef_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153", "author": "", "orig_id": 1406252}}, {"model": "metainfo.source", "pk": 164, "fields": {"orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406496}}, {"model": "metainfo.source", "pk": 165, "fields": {"orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f.", "author": "", "orig_id": 1406721}}, {"model": "metainfo.source", "pk": 166, "fields": {"orig_filename": "Schmid_Anton_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f.", "author": "", "orig_id": 1406531}}, {"model": "metainfo.source", "pk": 167, "fields": {"orig_filename": "Schmid_Joseph_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f.", "author": "", "orig_id": 1406597}}, {"model": "metainfo.source", "pk": 168, "fields": {"orig_filename": "Schmutzler_Leopold_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f.", "author": "", "orig_id": 1406623}}, {"model": "metainfo.source", "pk": 169, "fields": {"orig_filename": "Schnitzler_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f.", "author": "", "orig_id": 1406896}}, {"model": "metainfo.source", "pk": 170, "fields": {"orig_filename": "Schober_Alfred_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f.", "author": "", "orig_id": 1406912}}, {"model": "metainfo.source", "pk": 171, "fields": {"orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405414}}, {"model": "metainfo.source", "pk": 172, "fields": {"orig_filename": "Schoenberger_Adolf_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405629}}, {"model": "metainfo.source", "pk": 173, "fields": {"orig_filename": "Schoenberger_Benno_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405634}}, {"model": "metainfo.source", "pk": 174, "fields": {"orig_filename": "Scholl_Joseph_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f.", "author": "", "orig_id": 1412321}}, {"model": "metainfo.source", "pk": 175, "fields": {"orig_filename": "Scholz_Franz_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412411}}, {"model": "metainfo.source", "pk": 176, "fields": {"orig_filename": "Schrammel_Johann_1850_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff.", "author": "", "orig_id": 1411222}}, {"model": "metainfo.source", "pk": 177, "fields": {"orig_filename": "Schreyer_Johann_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411681}}, {"model": "metainfo.source", "pk": 178, "fields": {"orig_filename": "Schroedl_Leopold_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236", "author": "", "orig_id": 1411777}}, {"model": "metainfo.source", "pk": 179, "fields": {"orig_filename": "Schuecker_Edmund_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f.", "author": "", "orig_id": 1412171}}, {"model": "metainfo.source", "pk": 180, "fields": {"orig_filename": "Schwabl_Franz_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f.", "author": "", "orig_id": 1420210}}, {"model": "metainfo.source", "pk": 181, "fields": {"orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f.", "author": "", "orig_id": 1420456}}, {"model": "metainfo.source", "pk": 182, "fields": {"orig_filename": "Schwarz_Johann_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439", "author": "", "orig_id": 1420439}}, {"model": "metainfo.source", "pk": 183, "fields": {"orig_filename": "Schwarz_Kaspar_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445", "author": "", "orig_id": 1420450}}, {"model": "metainfo.source", "pk": 184, "fields": {"orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f.", "author": "", "orig_id": 1439729}}, {"model": "metainfo.source", "pk": 185, "fields": {"orig_filename": "Sehnal_Eugen_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f.", "author": "", "orig_id": 1439478}}, {"model": "metainfo.source", "pk": 186, "fields": {"orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197", "author": "", "orig_id": 1450886}}, {"model": "metainfo.source", "pk": 187, "fields": {"orig_filename": "Sichulski_Kazimierz_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223", "author": "", "orig_id": 1450008}}, {"model": "metainfo.source", "pk": 188, "fields": {"orig_filename": "Snjaric_Lukas_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384", "author": "", "orig_id": 1457373}}, {"model": "metainfo.source", "pk": 189, "fields": {"orig_filename": "Stariha_Janez-Nep_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105", "author": "", "orig_id": 1428070}}, {"model": "metainfo.source", "pk": 190, "fields": {"orig_filename": "Steindler_Olga_1879_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f.", "author": "", "orig_id": 1430730}}, {"model": "metainfo.source", "pk": 191, "fields": {"orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149", "author": "", "orig_id": 1428363}}, {"model": "metainfo.source", "pk": 192, "fields": {"orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f.", "author": "", "orig_id": 1434284}}, {"model": "metainfo.source", "pk": 193, "fields": {"orig_filename": "Stuelz_Jodok_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443", "author": "", "orig_id": 1433097}}, {"model": "metainfo.source", "pk": 194, "fields": {"orig_filename": "Szigligeti_Ede_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154", "author": "", "orig_id": 1434706}}, {"model": "metainfo.source", "pk": 195, "fields": {"orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178", "author": "", "orig_id": 1435139}}, {"model": "metainfo.source", "pk": 196, "fields": {"orig_filename": "Tauber_Richard_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff.", "author": "", "orig_id": 1422288}}, {"model": "metainfo.source", "pk": 197, "fields": {"orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257", "author": "", "orig_id": 1424387}}, {"model": "metainfo.source", "pk": 198, "fields": {"orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 2047416}}, {"model": "metainfo.source", "pk": 199, "fields": {"orig_filename": "Teuber_Emmerich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f.", "author": "", "orig_id": 1448255}}, {"model": "metainfo.source", "pk": 200, "fields": {"orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f.", "author": "", "orig_id": 1424667}}, {"model": "metainfo.source", "pk": 201, "fields": {"orig_filename": "Toelgyessy_Artur_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1458532}}, {"model": "metainfo.source", "pk": 531, "fields": {"orig_filename": "Thalberg_Sigismund_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277", "author": "", "orig_id": 1424641}}, {"model": "metainfo.source", "pk": 5804, "fields": {"orig_filename": "Reicha_Anton-Josef_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27", "author": "", "orig_id": 1406794}}, {"model": "metainfo.source", "pk": 8543, "fields": {"orig_filename": "Moscheles_Ignaz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f.", "author": "", "orig_id": 1413099}}, {"model": "metainfo.source", "pk": 10332, "fields": {"orig_filename": "Liszt_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f.", "author": "", "orig_id": 1411364}}, {"model": "metainfo.source", "pk": 17415, "fields": {"orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418730}}, {"model": "metainfo.source", "pk": 17608, "fields": {"orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f.", "author": "", "orig_id": 1406636}}, {"model": "metainfo.source", "pk": 17852, "fields": {"orig_filename": "Baeuerle_Friederike_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420833}}, {"model": "metainfo.source", "pk": 18525, "fields": {"orig_filename": "Czerny_Carl_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417615}}, {"model": "metainfo.text", "pk": 11195, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11196, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11197, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11198, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11199, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11200, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11203, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11204, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11205, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11206, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11207, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11210, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11211, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11214, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11215, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11218, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11219, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11220, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11221, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11222, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11223, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11224, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11225, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11226, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11227, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11228, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11229, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11230, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11231, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11234, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11235, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11236, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11237, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11238, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11239, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11240, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11241, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11242, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11243, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11244, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11245, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11246, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11249, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11250, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11251, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11252, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11253, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11254, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11255, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11256, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11257, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11258, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11259, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11260, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11261, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11262, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11263, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11266, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11269, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11270, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11271, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11272, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11275, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11278, "fields": {"kind": 236, "text": "http://www.geonames.org/maps/google_46.547_15.596.html\r\nOthmar Reiser's Geburtsort ist Hrastje, der heute Pekre heisst, und neben Maribor liegt.", "source": null}}, {"model": "metainfo.text", "pk": 11279, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11280, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11281, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11284, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11285, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11286, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11287, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11288, "fields": {"kind": 236, "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, B\u00f6hmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der b\u00f6hmische Lachovice der richtige", "source": null}}, {"model": "metainfo.text", "pk": 11289, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11290, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11291, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11292, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11293, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11294, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11299, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11300, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11301, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11302, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11303, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11304, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11305, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11308, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11311, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11312, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11313, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11314, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11317, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11318, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11319, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11320, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11321, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11322, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11323, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11324, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11325, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11326, "fields": {"kind": 236, "text": "ziemlich viele \u00d6BL labels f\u00fcr Meran!", "source": null}}, {"model": "metainfo.text", "pk": 11327, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11330, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11331, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11334, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11335, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11336, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11337, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11338, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11339, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11342, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11343, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11344, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11345, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11346, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11347, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11348, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11349, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11350, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11351, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 12155, "fields": {"kind": 130, "text": "Sohn von Joseph T. und Fortun\u00e9e Stein (urkundl.; vermutl. jedoch illegitimer Sohn von \u00bfFranz Josef F\u00fcrst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers Fran\u00e7ois Boucher und Tochter des Operns\u00e4ngers Luigi Lablache, verheiratet. \u2013 T. zog 1822 nach Wien, wo er Klavierunterricht beim Ersten Fagottisten der Hofoper, August Mittag, erhielt und das polytechn. Inst. besucht haben soll (nicht nachweisbar). In weiterer Folge stud. er bei \u00bfSimon Sechter (Theorie) und \u00bfJohann Nep. Hummel (Klavier). 1826 trat er erstmals, zun\u00e4chst in Wr. Privatzirkeln, als Pianist auf. 1830 f\u00fchrte ihn die erste Auslandstournee nach Dtld. und England, anschlie\u00dfend in andere europ. L\u00e4nder. Nach weiteren Stud. bei \u00bfIgnaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 gro\u00dfe Erfolge in Paris und triumphierte 1837\u201348 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und S\u00fcdamerika, wo er u.\u00a0a. in New York eine Klavierschule gr\u00fcndete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die n\u00e4chsten Jahre zur\u00fcckgezogen lebte. Nach Wiederaufnahme seiner Tourneen 1862 (London und Paris) ging er 1863 abermals nach Brasilien, danach schied er aus dem Konzertleben aus. Einem Brief Felix Mendelssohn-Bartholdys zufolge galt T. bis zur Jh.mitte neben \u00bfFranz v. Liszt als gr\u00f6\u00dfter Klaviervirtuose seiner Zeit. 1837 kam es zu einem \u00f6ff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle \u00d6ffentlichkeit sah Liszt als Romantiker, w\u00e4hrend der von seinem Auftreten her aristokrat. T. eher f\u00fcr ein klassizist. Musikideal stand. Auch die Qualit\u00e4t der Kompositionen beider wurde kontr\u00e4r beurteilt. Liszt bezeichnete T.s Werke in der \u201eRevue et gazette musicale de Paris\u201c als eine Mischung aus Monotonie und Unverm\u00f6gen. Die so aufgeschaukelte Rivalit\u00e4t kulminierte, als beide Musiker an einem von F\u00fcrstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Fr\u00e9d\u00e9ric Chopin und \u00bfCarl Czerny, an einer Kollektivkomposition f\u00fcr die F\u00fcrstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen \u00fcber Themen bekannter Opern dessen gr\u00f6\u00dften Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zur\u00fcck. T.s Personalstil kennzeichneten v.\u00a0a. das Hervortreten der auf beide H\u00e4nde verteilten Melodie in der Mittellage, w\u00e4hrend diese u.\u00a0a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. \u201eL\u2019Art du chant appliqu\u00e9 au piano\u201c festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosit\u00e4t, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n", "source": 531}}, {"model": "metainfo.text", "pk": 12156, "fields": {"kind": 131, "text": "Thalberg Sigismund (Fortun\u00e9 Fran\u00e7ois), Pianist und Komponist. Geb. P\u00e2quis (Gen\u00e8ve-Bains des P\u00e2quis, CH), 8.\u00a01. 1812; gest. Posillipo (Napoli, I), 27.\u00a04. 1871.", "source": 531}}, {"model": "metainfo.text", "pk": 21722, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckers; lebte ab ca. 1781 bei seinem Gro\u00dfvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurf\u00fcrstlichen Hof in Bonn t\u00e4tig war. 1787 wurde R. Fl\u00f6tist der Hofkapelle und begann zu komponieren. 1794\u201399 lebte er in Hamburg und verdiente seinen Lebensunterhalt mit Musikunterricht, ab 1799 in Paris, wo er vergeblich auf die Urauff. zweier von ihm komponierter Opern hoffte. 1802\u201308 war er in Wien und stud. u. a. bei J. Haydn, Albrechtsberger und Salieri Komposition. Ab 1808 lebte R. in Paris, ab 1818 als Prof. f\u00fcr Komposition. Als Musikp\u00e4dagoge und Theoretiker erlangte er gro\u00dfes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Sch\u00fclern geh\u00f6rten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterlie\u00df auch als Komponist ein wertvolles und umfangreiches \u0152uvre. Mit seinen 24 Bl\u00e4serquintetten schuf er die Grundlage f\u00fcr das Repertoire derartiger Kammerensembles.\n", "source": 5804}}, {"model": "metainfo.text", "pk": 21723, "fields": {"kind": 131, "text": "Reicha\u00a0(Rejcha) Anton (Anton\u00edn) Josef, Komponist und Musikp\u00e4dagoge. * Prag, 26. 2. 1770; \u2020 Paris, 28. 5. 1836.", "source": 5804}}, {"model": "metainfo.text", "pk": 27186, "fields": {"kind": 130, "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808\u201320 lebte er in Wien und stud. bei Streicher, Albrechtsberger und Salieri. M. unterrichtete selbst, auch in der besten Ges. M., dessen Ruhm als Pianist und Komponist (seine Variationen \u00fcber den Alexander-Marsch von 1815 blieben jahrzehntelang ein Pr\u00fcfstein pianist. Virtuosit\u00e4t) st\u00e4ndig wuchs, trat in Prag, Leipzig und Dresden auf. 1820 machte er ausgedehnte Reisen durch Deutschland, Holland, Belgien, Frankreich und England und hielt sich auch wieder l\u00e4nger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 \u00fcbersiedelte M. nach London und geh\u00f6rte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den f\u00fchrenden Pers\u00f6nlichkeiten des Musiklebens. 1846 \u00fcbernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der gro\u00dfen Pianisten seiner Zeit und setzte sich vor allem f\u00fcr Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des \u201eFidelio\u201c hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bem\u00fchte er sich tatkr\u00e4ftig um dessen Unterst\u00fctzung durch die Londoner Philharmonic Society.\n", "source": 8543}}, {"model": "metainfo.text", "pk": 27187, "fields": {"kind": 131, "text": "Moscheles\u00a0Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; \u2020 Leipzig, 10. 3. 1870.", "source": 8543}}, {"model": "metainfo.text", "pk": 30762, "fields": {"kind": 130, "text": "Sohn des Esterh\u00e1zyschen Verwalters Adam L. (1776\u20131827), Neffe des Vorigen, Vetter des Arztes und Schriftstellers Joseph Anton L. (s. d.) und des Folgenden; erhielt den ersten Klavierunterricht vom Vater. Im August oder September 1819 d\u00fcrfte er in Baden bei Wien erstmals \u00f6ff. aufgetreten sein. Weitere Konzerte folgten in \u00d6denburg und Pre\u00dfburg. Auf Grund des letzten (26. 11. 1820) setzten ihm ung. Magnaten ein Studienstipendium aus. Da J. N. Hummels (s. d.) Forderungen zu hoch waren, brachte der Vater den Knaben nach Wien zu C. Czerny (s. d.). Neben dessen Klavierunterricht erhielt er Unterweisung in Musiktheorie durch A. Salieri. 1822 wurde der Elfj\u00e4hrige zur Mitarbeit an A. Diabellis (s. d.) \u201eVaterl\u00e4ndischem K\u00fcnstlerverein\u201c eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er \u00f6ff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum gek\u00fc\u00dft. Der Erl\u00f6s dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die M\u00f6glichkeit zur \u00dcbersiedlung nach Paris; auf der Reise und sp\u00e4ter von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausl\u00e4nder die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., haupts\u00e4chlich nach der Methode Kalkbrenners (s. d.) fort, stud. aber Musiktheorie bei F. Paer und A. Reicha. Er blieb bis 1837 in Paris und unterrichtete in den h\u00f6chsten Kreisen. Berlioz und Paganini regten seine k\u00fcnstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem pers\u00f6nlichen Kontakt stand. 1835\u201339 lebte L. mit Gfn. Marie d\u2019Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die K\u00fcnstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzertt\u00e4tigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa f\u00fchrte. In Kiew begegnete er 1847 der F\u00fcrstin Carolyne Sayn-Wittgenstein, welche ihren Mann verlie\u00df und sich schlie\u00dflich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum gro\u00dfherzoglichen Kapellmeister in au\u00dferordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausge\u00fcbt hatte und nun in vollem Ma\u00dfe aufnahm. Seine Lebensgemeinschaft mit der F\u00fcrstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verh\u00e4ltnissen entfaltete er eine erfolgreiche k\u00fcnstler. T\u00e4tigkeit, welche in dem selbstlosen Eintreten f\u00fcr R. Wagner gipfelte. Wahrscheinlich unter dem Einflu\u00df der F\u00fcrstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither f\u00fchrte er ein unstetes und unbefriedigtes Wanderleben, kehrte f\u00fcr kurze Zeit auch nach Weimar zur\u00fcck, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fu\u00dfend, die Klaviertechnik ungeheuer ausgebaut, in Richtung auf den Orchesterklang hin, auf eine neue Gesanglichkeit vom romant. Lied her und auf die von ihm bedeutend erweiterten M\u00f6glichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilit\u00e4t des Anschlages. Nicht weniger hat L. als Komponist gewirkt, hier vor allem auf harmon. Gebiet, wegweisend aber auch in der Auslotung der techn. und formalen M\u00f6glichkeiten \u00fcberhaupt und in der Programmatik der inhaltlichen Erf\u00fcllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gr\u00fcndete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n", "source": 10332}}, {"model": "metainfo.text", "pk": 30763, "fields": {"kind": 131, "text": "Liszt\u00a0Franz von, Komponist. * Raiding, Kom. \u00d6denburg (Burgenland), 22. 10. 1811; \u2020 Bayreuth (Oberfranken), 31. 7. 1886.", "source": 10332}}, {"model": "metainfo.text", "pk": 44908, "fields": {"kind": 130, "text": "Von ihrer Mutter und t\u00fcchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male \u00f6ffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n", "source": 17415}}, {"model": "metainfo.text", "pk": 44909, "fields": {"kind": 131, "text": "Blahetka\u00a0Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; \u2020 Boulogne sur Mer, 1. 1. 1885.", "source": 17415}}, {"model": "metainfo.text", "pk": 45290, "fields": {"kind": 130, "text": "B. stammt aus einer aus dem Niederl\u00e4ndischen eingewanderten Familie, sein erster Lehrer, Chr. G. Neefe, vermittelte ihm die Kenntnis bedeutender Meisterwerke und machte publizistisch die Fachwelt auf das junge Talent aufmerksam und das Wohlwollen des Kurf\u00fcrsten Maximilian, des j\u00fcngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde f\u00fcr den weiteren \u00e4u\u00dferen Lebensweg B.s entscheidend, zumal der aus \u00d6sterr. an den K\u00f6lner Hof gekommene Graf Franz Adam Waldstein ihm die f\u00fcr die ersehnte Wr. Lehrzeit n\u00f6tige geldliche Unterst\u00fctzung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd f\u00f6rderte, wurde aber nicht sein Sch\u00fcler, da die Todeskrankheit der Mutter B.s R\u00fcckkehr forderte. Als sie am 17. 7. 1787 starb, mu\u00dfte B. nun f\u00fcr den entm\u00fcndigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurf\u00fcrstliche Hilfe nach Wien, wo er den gew\u00fcnschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schlo\u00df. Seine von da an w\u00e4hrende Bindung an Wien ist vor allem Erzh. Rudolf und den F\u00fcrsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosph\u00e4re Wiens, in der B. zunehmend Verst\u00e4ndnis als K\u00fcnstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikst\u00e4dten begehrt wurden, erfolgte oft auch widerrechtlich; B.s Kampf dagegen war nur ein Zug seiner steigenden inneren Auflehnung gegen manche Unvollkommenheiten des polit. und soz. Lebens, mit deren Problematik sich sein Gerechtigkeitssinn oft st\u00fcrmisch auseinandersetzte (s. die annullierte Widmung der\u201cEroica\u201d an Napoleon, als dieser sich zum K. kr\u00f6nen lie\u00df). Um 1800 begann sein Geh\u00f6r zu schwinden. 1815 wurde er taub. Das \u201eHeiligenst\u00e4dter Testament\u201c von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die \u00fcbermenschlichen moralischen Kr\u00e4fte, die ihn dennoch am Werk lie\u00dfen, das sich in jener Katastrophenzeit zur F\u00fclle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der fr\u00fcher als Interpret seiner Werke oder als Improvisator am Klavier und spr\u00fchender Geist gesellschaftlich brilliert hatte, immer mehr abschlo\u00df, l\u00f6sten die Freunde Oliva, Schindler und Holz jene gl\u00e4nzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste gro\u00dfe Musiker, der ein warmes Verh\u00e4ltnis zur Natur bekennt, auch hierin Haydn n\u00e4her als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als K\u00fcnder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 k\u00fcndigt sich sein Leberleiden an, das B.s sonst so robuste Gesundheit untergrub; 1826, auf dem Heimweg von einem Landaufenthalt bei seinem Bruder Johann in Gneixendorf bei Krems, \u00fcberfiel ihn eine Lungenentz\u00fcndung, zu der pl\u00f6tzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n", "source": 17608}}, {"model": "metainfo.text", "pk": 45291, "fields": {"kind": 131, "text": "Beethoven\u00a0Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; \u2020 Wien, 26. 3. 1827.", "source": 17608}}, {"model": "metainfo.text", "pk": 47030, "fields": {"kind": 130, "text": "Tochter von \u2192Adolf B\u00e4uerle und seiner ersten Frau Antonie B\u00e4uerle, geb. Egger. \u2013 B. zeigte schon in fr\u00fchester Kindheit eine Doppelbegabung f\u00fcr Musik und Sprachen, die in ihrer Erziehung sehr gef\u00f6rdert wurde. So erhielt sie Unterricht bei \u2192Carl Czerny. Dennoch beschr\u00e4nkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und \u00e4hnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Gro\u00dfbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische T\u00e4tigkeit f\u00fcr die \u201eWiener Theater-Zeitung\u201c (\u201eWiener allgemeine Theaterzeitung\u201c) ihres Vaters unter ihren Pseudonymen (auch \u201eF\u2026\u201c). B. war au\u00dferdem auch eine \u00fcberaus produktive \u00dcbersetzerin aus dem Englischen und Franz\u00f6sischen, u. a. \u00fcbertrug sie die Novelle \u201eDer Spion der vornehmen Welt\u201c von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), \u201eMi\u00df Mary, oder die Erzieherin\u201c (in: Wiener allgemeine Zeitung f\u00fcr Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und \u201eGilbert und Gilberte\u201c von Eug\u00e8ne Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), \u201eAntonie, die Tochter der Berge\u201c (ebd., 1850, Nr. 157\u2013176, 180\u2013201), \u201eDer letzte Irl\u00e4nder\u201c (ebd., 1851, Nr. 293ff.) und \u201eDie Marquise von Norville\u201c von \u00c9lie Berthet (1856), \u201eConcino Concini oder Die Tochter des Blinden\u201c (1855, 1856 Neuaufl. unter dem Titel \u201eDer Menschenj\u00e4ger oder Der Blinde\u201c) von Emanuele Gonzal\u00e8s sowie \u201eDie letzte der Feen\u201c von George Payne Rainsford James (1849). Einige dieser \u00dcbersetzungen erschienen auch im \u201eBelletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen\u201c des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der \u201eOstdeutschen Post\u201c und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift \u201eDer Salon\u201c erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, f\u00fchrte sie gemeinsam mit dem Redakteur Moritz Morl\u00e4nder (eigentlich Moriz Engl\u00e4nder) die \u201eWiener Theaterzeitung\u201c ab J\u00e4nner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. v\u00f6llig zur\u00fcckgezogen.\n", "source": 17852}}, {"model": "metainfo.text", "pk": 47031, "fields": {"kind": 131, "text": "B\u00e4uerle Friederike, Ps. Friedrich Horn, Schriftstellerin, \u00dcbersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Nieder\u00f6sterreich), 17. 7. 1896.", "source": 17852}}, {"model": "metainfo.text", "pk": 47126, "fields": {"kind": 130, "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, B\u00f6hmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zun\u00e4chst als Oboist beim Milit\u00e4r und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. \u2013 Wenzel Czernys T\u00e4tigkeit als Klavierlehrer f\u00fchrte die Familie 1791\u201395 nach Polen. So erhielt C., der bereits mit drei Jahren Klavier zu spielen begann und mit sieben seine ersten Kompositionen zu Papier brachte, den ersten Klavierunterricht auch von seinem Vater und konnte dank seiner au\u00dfergew\u00f6hnlichen Begabung bereits als Neunj\u00e4hriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung f\u00fcr C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei \u2192Ludwig van Beethoven, der ihn unverz\u00fcglich als Sch\u00fcler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Urauff\u00fchrung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere fr\u00fch, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Sch\u00fclerinnen und Sch\u00fcler waren Theodor D\u00f6hler, Stephen Heller, \u2192Sigismund Thalberg, \u2192Marie Leopoldine Blahetka, Ninette de Belleville sowie \u2192Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine \u201e\u00c9tudes d\u2019ex\u00e9cution transcendante\u201c). Auch Beethovens Neffe Karl wurde ein Sch\u00fcler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, \u2192Ignaz Moscheles\u2019 und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken f\u00fcr Klavier verbunden, die sich an Anf\u00e4nger (etwa \u201eDie Schule der Gel\u00e4ufigkeit\u201c) ebenso richten wie an bereits gereifte Pianisten (\u201eSchule des Virtuosen\u201c). Dazu kommen St\u00fccke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die gr\u00f6\u00dfte Popularit\u00e4t erlangte C.s \u201eVollst\u00e4ndige theoretisch-practische Pianoforte-Schule \u2026\u201c (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen \u0152uvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Ch\u00f6re, Ges\u00e4nge und B\u00fchnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einfl\u00fcsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten St\u00fccke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Dar\u00fcber hinaus war C. als Musiktheoretiker t\u00e4tig. Er verfasste eine \u201eSystematische Anleitung zum Fantasieren auf dem Pianoforte\u201c, z\u00e4hlte zu den ersten Editoren einer Bach-Gesamtausgabe und \u00fcbersetzte vier umfangreiche Kompositions-Traktate von \u2192Anton Reicha. 1842 schrieb C. seine Autobiographie \u201eErinnerungen aus meinem Leben\u201c. Abgesehen von einigen Reisen nach Italien und einem Aufenthalt in Frankreich (1837) sowie England verbrachte er sein gesamtes Leben in seiner Heimatstadt. Er starb als wohlhabender Mann und vermachte sein Verm\u00f6gen k\u00fcnstlerischen und wohlt\u00e4tigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n", "source": 18525}}, {"model": "metainfo.text", "pk": 47127, "fields": {"kind": 131, "text": "Czerny (\u010cern\u00fd) Carl, Pianist, P\u00e4dagoge und Komponist. Geb. Leopoldstadt, Nieder\u00f6sterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); r\u00f6m.-kath.", "source": 18525}}, {"model": "metainfo.text", "pk": 47200, "fields": {"kind": 130, "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und National\u00f6konomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Ru\u00dfland auf, war sp\u00e4ter Mitleiter der \u201eFreien B\u00fchne\u201c in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, B\u00fchnendichter und Theaterkritiker. 1909 heiratete er die gro\u00dfe Wagnerinterpretin, Hofoperns\u00e4ngerin Anna v. Mildenburg (s. u.). 1912 \u00fcbersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni\u2013November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in M\u00fcnchen. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von au\u00dfergew\u00f6hnlicher Menschenkenntnis, ein gl\u00e4nzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., geh\u00f6ren zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen \u00d6sterreich.\n", "source": 102}}, {"model": "metainfo.text", "pk": 47201, "fields": {"kind": 131, "text": "Bahr\u00a0Hermann, Dichter und Schriftsteller. * Linz (O.\u00d6.), 19. 7. 1863; \u2020 M\u00fcnchen, 14. 1. 1934.", "source": 102}}, {"model": "metainfo.text", "pk": 47204, "fields": {"kind": 130, "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt t\u00e4tig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er kl\u00e4rte die Ursachen der hohen S\u00e4uglingssterblichkeit bei k\u00fcnstlicher Ern\u00e4hrung und besch\u00e4ftigte sich eingehend mit der Tuberkulose im Kindesalter. Sp\u00e4ter lehrte er in Berlin, Stra\u00dfburg und D\u00fcsseldorf. Durch Cz., einen der Begr\u00fcnder und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine gro\u00dfe Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine f\u00fchrende Stellung in der Kinderheilkunde inne.\n", "source": 114}}, {"model": "metainfo.text", "pk": 47205, "fields": {"kind": 131, "text": "Czerny\u00a0Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; \u2020 Berlin, 3. 10. 1941.", "source": 114}}, {"model": "metainfo.text", "pk": 47206, "fields": {"kind": 130, "text": "Absolvierte die Theres, Milit. Akad., 1842\u201348 \u00f6sterr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, fl\u00fcchtete 1849 nach Deutschland und lebte von 1850\u201357 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Pr\u00e4s. Mitre machte ihn zum Chef der Sektion des milit. Ingenieurwesens. Als solcher nahm er die Karte des paraguayisch-brasilianischen Grenzgebietes von Argentinien auf. lm Krieg der Tripelallianz gegen Paraguay 1865\u201369 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa F\u00e9 nach Esperanza und plante die Festungen in den Provinzen C\u00f3rdoba, Santa F\u00e9 und Buenos Aires. 1870\u201374 Leiter des Colegio Militar; 1875\u2013 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. f\u00fcr Mathematik in Concepci\u00f3n del Uruguay. 1884 in die Pr\u00fcfungskomm. des Colegio Militar und in die Comisi\u00f3n revisadora y proyectora berufen, 1884\u201395 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n", "source": 116}}, {"model": "metainfo.text", "pk": 47207, "fields": {"kind": 131, "text": "Czetz\u00a0Johann. * Gid\u00f3falva, 8. 6. 1822; \u2020 Buenos Aires, 6. 9. 1904.", "source": 116}}, {"model": "metainfo.text", "pk": 47208, "fields": {"kind": 130, "text": "Stud. in Br\u00fcnn und Olm\u00fctz unter Leitung seines Oheims Caroni, trat 1808 in das m\u00e4hrisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekret\u00e4r bei der Obersten Justizstelle in Wien.\n", "source": 117}}, {"model": "metainfo.text", "pk": 47209, "fields": {"kind": 131, "text": "Czikann\u00a0Johann Jakob Heinrich, Beamter und Schriftsteller. * Br\u00fcnn, 10. 7. 1789; \u2020 Br\u00fcnn, 10. 6. 1855.", "source": 117}}, {"model": "metainfo.text", "pk": 47210, "fields": {"kind": 130, "text": "Sohn des Christian C.-G., trat 1826 in die Armee ein, 1839 Obst. und Rgtskmdt., 1846 GM. und Brigadier in Prag, 1848 in Mailand; k\u00e4mpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenb\u00fcrgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. Gy\u00f6rgy und Kaszon-Ujfalu; Landeskommandierender in B\u00f6hmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, k\u00e4mpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vlie\u00df; 1866 Kmdt. des 1. Armeekorps gegen Preu\u00dfen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n", "source": 108}}, {"model": "metainfo.text", "pk": 47211, "fields": {"kind": 131, "text": "Clam-Gallas\u00a0Eduard Graf, General. * Prag, 11. 3. 1805; \u2020 Wien, 17. 3. 1891.", "source": 108}}, {"model": "metainfo.text", "pk": 47212, "fields": {"kind": 130, "text": "\u00c4ltester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853\u201359 Landespr\u00e4s. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorit\u00e4t; haupts\u00e4chlich nach seinen Vorschl\u00e4gen entstand das Oktoberdiplom; F\u00fchrer der feudal-klerikal-slaw. und f\u00f6deralistischen Partei, seit 1862 nur mehr im Landtag. Er war einer der Urheber der Abstinenzpolitik der Tschechen und konzipierte 1871 die Fundamentalartikel; unter Taaffe kehrten die Tschechen 1879 in den Reichsrat zur\u00fcck und C. war wie vorher als Generalreferent des Budgets t\u00e4tig; 1884 zog er sich krankheitshalber vom \u00f6ffentlichen Leben zur\u00fcck; seit 1859 Geh. Rat, seit 1861 Pr\u00e4s. des B\u00f6hmischen Mus., Ehrenmitgl. der Kgl. B\u00f6hm. Ges. d. Wiss.\n", "source": 109}}, {"model": "metainfo.text", "pk": 47213, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; \u2020 Prag, 5. 6. 1887.", "source": 109}}, {"model": "metainfo.text", "pk": 47214, "fields": {"kind": 130, "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des F\u00fcrsten Thun F\u00fchrer der Rechten im Herrenhaus, stand hier und im b\u00f6hmischen Landtag den Tschechen nahe. Im Weltkrieg k\u00e4mpfte er an der russ. und an der italien. Front und r\u00fcckte von den Tschechen ab, als diese immer mehr auf die Zerst\u00f6rung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpr\u00e4s. Er suchte vergeblich, Vertreter aller \u00f6sterr. Nationalit\u00e4ten ins Kabinett zu berufen, um einen langfristigen Ausgleich mit Ungarn zustandezubringen, aber die Tschechen lehnten ab; er setzte das Parlament erfolglos wieder in seine Rechte ein, verstimmte die Deutschen, deren W\u00fcnsche nicht erf\u00fcllt wurden und vermochte nicht, die Tschechen, S\u00fcdslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917\u201319 Milit\u00e4rgouverneur von Montenegro. Pr\u00e4s. der Vereinigung kathol. Edelleute \u00d6sterr., Ritter des Ordens vom Goldenen Vlie\u00df, Geh. Rat und K\u00e4mmerer.\n", "source": 110}}, {"model": "metainfo.text", "pk": 47215, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; \u2020 Clam b. Grein, 7. 3. 1932.", "source": 110}}, {"model": "metainfo.text", "pk": 47216, "fields": {"kind": 130, "text": "Stud. in Marburg und Gie\u00dfen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. f\u00fcr Zoologie in W\u00fcrzburg, 1870 in G\u00f6ttingen, 1873 f\u00fcr Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gr\u00fcnder er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in G\u00f6ttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n", "source": 111}}, {"model": "metainfo.text", "pk": 47217, "fields": {"kind": 131, "text": "Claus\u00a0Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; \u2020 Wien, 18. 1. 1899.", "source": 111}}, {"model": "metainfo.text", "pk": 47218, "fields": {"kind": 130, "text": "Stud. in G\u00f6ttingen und Berlin, 1855 Dr. phil., 1857\u201360 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. f\u00fcr Arch\u00e4ologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete arch\u00e4ologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Arch\u00e4ologie, Kunstgeschichte und klass. Philologie verbindende Lehrt\u00e4tigkeit. Er begr\u00fcndete die Wr. Vorlegebl\u00e4tter, errichtete 1876 zusammen mit O. Hirschfeld das Arch\u00e4olog.-epigr. Seminar, f\u00fchrte zwei \u00f6sterr. Grabungskampagnen auf der Insel Samothrake durch, rief das gro\u00dfe Werk der Wr. Akad. d. Wiss. \u201eDie attischen Grabreliefs\u201c ins Leben und gab in 3 Heften der Denkschriften \u201eR\u00f6mische Bildwerke einheimischen Fundorts in \u00d6sterreich\u201c heraus. 1877\u201387 \u00fcbernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887\u20131905 leitete er als Gen.-Sekr. das Arch\u00e4olog. Inst. des Dt. Reiches, dem er 1903 in der R\u00f6m.-german. Komm. auch eine Zentralstelle f\u00fcr die arch\u00e4olog. Heimatforschung anschlo\u00df. In seinen beiden letzten Stellungen galten seine Arbeiten vor allem den von ihm angeregten Ausgrabungen in Pergamon und den dort gemachten Funden. C. hat die versch. Gebiete der Arch\u00e4ologie durch bahnbrechende Werke gef\u00f6rdert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n", "source": 112}}, {"model": "metainfo.text", "pk": 47219, "fields": {"kind": 131, "text": "Conze\u00a0Alexander, Arch\u00e4ologe. * Hannover, 10. 12. 1831; \u2020 Berlin, 19. 7. 1914.", "source": 112}}, {"model": "metainfo.text", "pk": 47220, "fields": {"kind": 130, "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. K\u00fcnste, hatte 1860\u201364 ein Atelier in M\u00fcnchen, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg f\u00fcr das Arsenal auszuf\u00fchren, leitete 1883 die Jubil\u00e4umsausstellung zur T\u00fcrkenbelagerung im Rathaus, stellte 1886 die st\u00e4dtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. K\u00fcnste.\n", "source": 113}}, {"model": "metainfo.text", "pk": 47221, "fields": {"kind": 131, "text": "Costenoble\u00a0Karl, Bildhauer. * Wien, 26. 11. 1837; \u2020 Wien, 20. 6. 1907.", "source": 113}}, {"model": "metainfo.text", "pk": 47226, "fields": {"kind": 130, "text": "Stud. in Prag Jus; ao. Prof. f\u00fcr Rechtsgeschichte an der Univ. Prag; Mitgl. der B\u00f6hm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des b\u00f6hm. Stadtrechtes.\n", "source": 103}}, {"model": "metainfo.text", "pk": 47227, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Jarom\u00edr, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; \u2020 Prag, 16. 10. 1914.", "source": 103}}, {"model": "metainfo.text", "pk": 47228, "fields": {"kind": 130, "text": "Sohn des Dichters Franz Ladisl. C., kam mit seinem Vater nach Breslau, wo er die unteren Klassen des kathol. Gymn. besuchte, Deutsch lernte und sein erstes Herbarium anlegte. 1849 kehrte die Familie nach Prag zur\u00fcck. Nach dem Tode des Vaters nahm sich der Physiologe Purkyne seiner an und bei ihm lernte C. auch die exakte Methode der mikroskopischen Untersuchung. Noch vor Beendigung seiner Studien erschienen die ersten botanischen Aufs\u00e4tze. Nach Vollendung der Univ. wurde er Gymnasialsupplent in Komotau, wo er die Flora des Erzgebirges kennenlernte. 1860 Kustos am Botanischen Mus. in Prag, 1863 Dr.phil., 1866 Doz. an der Prager Technik, dann Vorstand der botanischen Sektion des \u201eKomitees f\u00fcr die naturwiss. Durchforschung B\u00f6hmens\u201c und Mitgl. der \u201eB\u00f6hmischen Ges. d. Wiss.\u201c\n", "source": 104}}, {"model": "metainfo.text", "pk": 47229, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Ladislav, Botaniker. * Prag, 29. 11. 1834; \u2020 Prag, 24. 11. 1902.", "source": 104}}, {"model": "metainfo.text", "pk": 47230, "fields": {"kind": 130, "text": "Gr\u00fcndete 1842 eine Fabrik f\u00fcr Blechblasinstrumente und baute eine Anzahl versch. geformter Kontraba\u00dfinstrumente f\u00fcr die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n", "source": 105}}, {"model": "metainfo.text", "pk": 47231, "fields": {"kind": 131, "text": "Cerven\u00fd\u00a0V\u00e1clav Franti\u0161ek, Instrumentenmacher. * Dubec (B\u00f6hmen), 27. 9. 1819; \u2020 K\u00f6niggr\u00e4tz, 19. l. 1896.", "source": 105}}, {"model": "metainfo.text", "pk": 47232, "fields": {"kind": 130, "text": "Sohn des Malers Matthias Ch., befa\u00dfte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. K\u00fcnste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n", "source": 106}}, {"model": "metainfo.text", "pk": 47233, "fields": {"kind": 131, "text": "Charlemont\u00a0Hugo de, Maler. * Jamnitz, 18. 3. 1850; \u2020 Wien, 18. 3. 1939.", "source": 106}}, {"model": "metainfo.text", "pk": 47234, "fields": {"kind": 130, "text": "Stud. in Prag, 1771 Baccal., 1772 Priester, 1777 Pfarrer, 1779 Mitgl. des Prager Domkapitels, 1795 Bischof von Canea in partib., 1802 Bischof von Leitmeritz, hier als \u201eVater der Armen\u201c gepriesen, 1814 F\u00fcrsterzb. von Prag, 1815 inthronisiert. Gr\u00fcndete Schulen und Wohlt\u00e4tigkeitsanstalten.\n", "source": 107}}, {"model": "metainfo.text", "pk": 47235, "fields": {"kind": 131, "text": "Chlumczansk\u00fd\u00a0Wenzel Leopold von, Bischof. * Hostitz (B\u00f6hmen), 15. 11. 1749; \u2020 14. 6. 1830.", "source": 107}}, {"model": "metainfo.text", "pk": 47236, "fields": {"kind": 130, "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881\u201386 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollm\u00e4chtigter Min. in Belgrad, vertrat 1908 \u00d6sterr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913\u201315 a o. und bevollm\u00e4chtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der V\u00f6lkerbunds- und Friedensbewegung t\u00e4tig, Pr\u00e4s. der \u00f6sterr. V\u00f6lkerbundliga; Pazifist; Freund und F\u00f6rderer von Kunst und Wiss.\n", "source": 121}}, {"model": "metainfo.text", "pk": 47237, "fields": {"kind": 131, "text": "Dumba\u00a0Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; \u2020 Bodensdorf/Ossiachersee, 6. 1. 1947.", "source": 121}}, {"model": "metainfo.text", "pk": 47238, "fields": {"kind": 130, "text": "Stud. in Stuttgart und Berlin, arbeitete l\u00e4ngere Zeit im Atelier Siccardsburgs und Van der N\u00fclls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n", "source": 120}}, {"model": "metainfo.text", "pk": 47239, "fields": {"kind": 131, "text": "Doderer\u00a0Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; \u2020 Wien, 13. 5. 1900.", "source": 120}}, {"model": "metainfo.text", "pk": 47240, "fields": {"kind": 130, "text": "Sohn eines Bauern, zeigte fr\u00fch Interesse f\u00fcr Schnitzen und Zeichnen, aber erst nach dem Tode des Vaters gab er den Hof auf und ging 1860 nach Innsbruck, um bei Stolz die Bildschnitzerei zu erlernen. Auf dessen Rat wandte er sich der Malerei zu, ging 1862 an die Akad. in M\u00fcnchen, 1863\u201365 nach Paris, dann nach Tirol zur\u00fcck, 1867 wieder nach M\u00fcnchen, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einflu\u00df auf ihn aus\u00fcbte. 1878 Prof. an der M\u00fcnchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist au\u00dferdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten b\u00e4uerlichen Genremalerei.\n", "source": 118}}, {"model": "metainfo.text", "pk": 47241, "fields": {"kind": 131, "text": "Defregger\u00a0Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; \u2020 M\u00fcnchen, 2. 1. 1921.", "source": 118}}, {"model": "metainfo.text", "pk": 47242, "fields": {"kind": 130, "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899\u20131901 unter der Leitung von Sickel und Pastor am \u00d6sterr. Hist. Inst. in Rom, haupts\u00e4chlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917\u201346 (mit Unterbrechung von 1938\u201345) Ordinarius f\u00fcr Geschichte der Neuzeit. D., ein guter Kenner der Best\u00e4nde des Vat. Geheimarchivs, war 1929\u201338 als Nachfolger Pastors Dir. des \u00d6sterr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das \u00d6sterr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n", "source": 119}}, {"model": "metainfo.text", "pk": 47243, "fields": {"kind": 131, "text": "Dengel\u00a0Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; \u2020 Innsbruck, 9. 9. 1947.", "source": 119}}, {"model": "metainfo.text", "pk": 47276, "fields": {"kind": 130, "text": "Startete 1926 das erstemal bei einem Sch\u00fclerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen f\u00fcr M\u00e4dchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der M\u00e4dchen einen 1. und zwei 2. Pl\u00e4tze. 1929 gewann sie das Verbands-Neulings-Laufen f\u00fcr Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen f\u00fcr Damen in Innsbruck, Grummh\u00fcbel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen f\u00fcr Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Z\u00fcrich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die \u00f6sterr. Meisterschaft im Kunstlaufen f\u00fcr Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen f\u00fcr Damen in Z\u00fcrich und am Semmering. 1933 wurde sie abermals \u00f6sterr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine t\u00fcck. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein j\u00e4hes Ende.\n", "source": 122}}, {"model": "metainfo.text", "pk": 47277, "fields": {"kind": 131, "text": "Holovsky\u00a0Hilde, Kunstl\u00e4uferin. * Wien, 29. 4. 1917; \u2020 Wien, 3. 7. 1933.", "source": 122}}, {"model": "metainfo.text", "pk": 47384, "fields": {"kind": 130, "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887\u201394 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894\u20131903 Primarius an der Internen Abt. des K. Franz-Josef-Spitals und am Allg. Krankenhaus in Wien. 1901 tit. ao. Prof. an der Univ. Wien. 1903 o. Prof. f\u00fcr Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der \u00c4rzte in Wien, Mitgl. der Dt. Ges. f\u00fcr innere Med. und der Dt. Naturforscher und \u00c4rzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n", "source": 134}}, {"model": "metainfo.text", "pk": 47385, "fields": {"kind": 131, "text": "Lorenz\u00a0Heinrich, Internist. * Mies (Str\u00edbro, B\u00f6hmen), 13. 4. 1859; \u2020 Graz, 25. 3. 1945.", "source": 134}}, {"model": "metainfo.text", "pk": 47388, "fields": {"kind": 130, "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der \u201eKorrespondenz Wilhelm\u201c, die Polizei- und Hof\u00e4mter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim \u201eIllustrierten Wiener Extrablatt\u201c; 1876 war L. Kriegsberichterstatter im serb.-t\u00fcrk., 1877 im russ.-t\u00fcrk. und 1885 im bulgar.-serb. Krieg, 1878 in Bosnien. Ebenfalls als Reporter nahm L. am mazedon. Aufstand teil. Im Dienste seiner Redaktion unternahm er in den Folgejahren weite Reisen durch Europa, Nordamerika und weite Gebiete Afrikas. Am 2. 6. 1889 fuhr er mit einem Fiaker nach Paris zur Weltausst., wo ihm am 22. 6. ein triumphaler Empfang bereitet wurde. 1894 wurde er bei dem genannten Bl. stellvertretender Schriftleiter, 1898 (gem. mit J. Bauer, s.d.) Chefredakteur. L. war durch Feuilletons, Wr. Sittenschilderungen, Lokal- und Reiseberichte in weiten Kreisen bekannt geworden. Er war von wirkungsvoller Darstellungsf\u00e4higkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalit\u00e4t. Das \u201eIllustrierte Wiener Extrablatt\u201c war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des \u201eArmenvaters\u201c in seinem Bl. sowie als Viennensia-Sammler.\n", "source": 133}}, {"model": "metainfo.text", "pk": 47389, "fields": {"kind": 131, "text": "L\u00f6wy\u00a0Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (\u00dadlice, B\u00f6hmen), 14. 9. 1851; \u2020 Wien, 27. 12. 1905.", "source": 133}}, {"model": "metainfo.text", "pk": 47394, "fields": {"kind": 130, "text": "Sohn eines F\u00e4rbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und er\u00f6ffnete 1823 im 1. Bez. in der Weihburgg. einen Laden \u201eZur Kaiserin von \u00d6sterreich\u201c, 1824 einen Laden K\u00e4rntnerstr. 940, der 1844 vergr\u00f6\u00dfert wurde. 1824 wurde L. Meister und B\u00fcrger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glash\u00e4ndler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & G\u00f6rner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergr\u00f6\u00dferten Gesch\u00e4ftes vollst\u00e4ndig erneuert. L., nicht nur Glash\u00e4ndler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er h\u00e4ufig Reisen in Begleitung seiner S\u00f6hne Josef oder Ludwig unternahm), versuchte, nach franz\u00f6s. Pre\u00dfglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so da\u00df er viel franz\u00f6s. Pre\u00dfglas einf\u00fchren mu\u00dfte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenst\u00e4nde wurden nach Wien geliefert bzw. wurden auch Gegenst\u00e4nde nach L.s Entw\u00fcrfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten t\u00e4tig war, bezog Glas aus den b\u00f6hm. H\u00fctten und lie\u00df nach eigenen Mustern arbeiten. 1823\u201355 wurden Gl\u00e4ser im Biedermeierstil erzeugt. Die Fa. beteiligte sich an den Gewerbsproduktenausst. 1839 und 1845 in Wien, fertigte Spiegel und Luster an, wurde 1848 Sieger in einem Wettbewerb um die Beleuchtungseinrichtung im Palais des Vizekg. von \u00c4gypten und arbeitete f\u00fcr den Palazzo Reale in Venedig.\n", "source": 132}}, {"model": "metainfo.text", "pk": 47395, "fields": {"kind": 131, "text": "Lobmeyr\u00a0Josef, Fabrikant. * Grieskirchen (O.\u00d6.), 17. 3. 1792; \u2020 Wien, 8. 5. 1855.", "source": 132}}, {"model": "metainfo.text", "pk": 47402, "fields": {"kind": 130, "text": "Absolv. das Realgymn.; arbeitete bis 1868 f\u00fcr die Z. \u201eIllustrierte Welt\u201c, gab dann das demokrat. Bl. \u201eFreie Volksstimme\u201c heraus, war Korrespondent ausl\u00e4nd. Ztg. und begr\u00fcndete gem. mit S. Spitz 1870/71 das \u201e\u00d6sterreichisch-ungarische Volksblatt f\u00fcr Stadt und Land\u201c. Angeregt durch seine Bekanntschaft mit dem National\u00f6konomen L. v. Stein stud. er Volkswirtschaft und Statistik und gr\u00fcndete 1874 das Fachbl. \u201eGambrinus\u201c, welches gro\u00dfes Ansehen geno\u00df. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und N\u00e4hrausst. in Wien, 1904 k. Rat, Pr\u00e4s. des \u00f6sterr. Fachschriftstellerverbandes, Vizepr\u00e4s. des Reichsverbandes \u00f6sterr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n", "source": 130}}, {"model": "metainfo.text", "pk": 47403, "fields": {"kind": 131, "text": "Lichtblau\u00a0Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; \u2020 Abbazia (Opatija, Istrien), 10. 5. 1908.", "source": 130}}, {"model": "metainfo.text", "pk": 47404, "fields": {"kind": 130, "text": "Nach Absolv. der jurid. Stud. in Wien 1898 Konzipient in der k. k. Finanzprokuratur in Wien, dann Rechtspraktikant (Auskultant) beim Landesgericht Innsbruck, 1899 Richteramtspr\u00fcfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht f\u00fcr Zivilrechtssachen in Wien und 1927 Rat des Oberlandesgerichtes Wien. 1931 Vorsitzender Rat des Oberlandesgerichtes, wurde er im gleichen Jahr zum Rat des Verwaltungsgerichtshofes ernannt. L., der schon als Richter am Exekutionsgericht Wien durch seine vorz\u00fcglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich gr\u00f6\u00dfte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das \u00f6sterr. Exekutionsrecht l\u00fcckenlos erfa\u00dft und seinen Zusammenhang mit den \u00fcbrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsvertr\u00e4gen niedergelegt, tw. ber\u00fccksichtigt und dadurch die Exekutionsgrunds\u00e4tze eines gro\u00dfen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n", "source": 131}}, {"model": "metainfo.text", "pk": 47405, "fields": {"kind": 131, "text": "Lichtblau\u00a0Ludwig, Jurist. * Olm\u00fctz (Olomouc, M\u00e4hren), 25. 2. 1875; \u2020 Wien, 19. 12. 1935.", "source": 131}}, {"model": "metainfo.text", "pk": 47410, "fields": {"kind": 130, "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtspr\u00fcfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. f\u00fcr Botanik an der Univ. Graz, 1868 ao., 1869 o. Prof., 1876/77 Dekan, 1884/85 Rektor, 1873 erhielt er auch die Dion. des Botan. Gartens und die Supplierung der Lehrkanzel f\u00fcr Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begr\u00fcnder des Botan. Inst. der Univ., das gegen\u00fcber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatb\u00fccherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und T\u00fcbingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Pr\u00e4s. des Naturwiss. Ver. f\u00fcr Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Ver\u00f6ff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die \u00fcber Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbst\u00e4ndig erschienenen Werke geh\u00f6ren dazu, von denen die umfangreiche Monographie \u201eUntersuchungen \u00fcber die Lebermoose\u201c in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im K\u00e4rntner Landtag (1869\u201372) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n", "source": 128}}, {"model": "metainfo.text", "pk": 47411, "fields": {"kind": 131, "text": "Leitgeb Hubert,\u00a0Botaniker. * Portendorf b. Klagenfurt (K\u00e4rnten), 20. 10. 1835; \u2020 Graz, 5. 4. 1888 (Selbstmord).", "source": 128}}, {"model": "metainfo.text", "pk": 47414, "fields": {"kind": 130, "text": "Vater des Anatomen J\u00f3zsef v. L. (s. d.), Gro\u00dfvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Pre\u00dfburg stud. er Med. an den Univ. Wien und Pest, 1799 Dr. med. und Chirurgus des Kom. Gran. 1808 Prof. der Physiol. und der Anatomie an der Univ. Pest, 1809/10 und 1815\u201317 Dekan, 1818/19 Rektor. 1819 Prof. der Physiol. an der Univ. Wien. 1825 Statthaltereirat und Protomedicus, war er bis zu seinem Tode Dir. der Pester med. Fak. 1808 wurde er in den ung. Adelsstand erhoben. L., einer der ersten, der die Pockenimpfung in Ungarn anwandte (1799), erwarb sich auch 1831 gro\u00dfe Verdienste um die Bek\u00e4mpfung der Cholera. Er ma\u00df den psych. Vorg\u00e4ngen bei Erkrankungen und auch in der Therapie gro\u00dfe Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n", "source": 129}}, {"model": "metainfo.text", "pk": 47415, "fields": {"kind": 131, "text": "Lenhoss\u00e9k\u00a0Mih\u00e1ly Ign\u00e1c von, Physiologe. * Pre\u00dfburg, 11. 5. 1773; \u2020 Ofen (Buda, Ungarn), 11. 2. 1840.", "source": 129}}, {"model": "metainfo.text", "pk": 47418, "fields": {"kind": 130, "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen K\u00fcnste in Wien (bei Griepenkerl, s.d.) und M\u00fcnchen (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gr\u00fcndung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, M\u00e4rchen- und Landschaftsbildern, bet\u00e4tigte sich aber nach Gr\u00fcndung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einflu\u00df, mit au\u00dferordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schlo\u00df Esterhazy bei Pre\u00dfburg, Privatwohnungen der Maler Goltz und Ranzoni), B\u00fchnen- und Kost\u00fcmentw\u00fcrfe, Stickereien, F\u00e4cher, Kassetten, M\u00f6bel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60j\u00e4hrigen Regierungsjubil\u00e4um von K. Franz Joseph I. (s. d.) 1908. 1900\u201303 war er (als Vorg\u00e4nger von A. Roller) Ausstattungschef der Wr. Hofoper.\n", "source": 125}}, {"model": "metainfo.text", "pk": 47419, "fields": {"kind": 131, "text": "Lefler\u00a0Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; \u2020 Wien, 14. 3. 1919.", "source": 125}}, {"model": "metainfo.text", "pk": 47420, "fields": {"kind": 130, "text": "Tochter eines Rechtsanwaltes; stud. an den Univ. Wien und Heidelberg (M. Weber) Staatswiss., 1918 Dr.rer.pol. Nach 1918 redigierte sie in Wien die Frauenbeilage der Gewerkschaftsztg. \u201eDer Metallarbeiter\u201c und arbeitete als Sekret\u00e4rin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 \u00fcbernahm sie das Referat f\u00fcr Frauenarbeit in der Wr. Kammer f\u00fcr Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. \u201eArbeit und Wirtschaft\u201c. L., welche sich der Sozialdemokrat. Partei \u00d6sterr. angeschlossen hatte, heiratete 1921 den Redakteur der \u201eArbeiter-Zeitung\u201c Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den sp\u00e4teren Vorsitzenden der Vereinigung der Zeitungskorrespondenten bei den Vereinten Nationen. Sie bekleidete in der Bezirksorganisation Wien-Innere Stadt die Funktionen der Vorsitzenden des Bezirksbildungsausschusses und des Bezirksfrauenkomitees sowie der Obmannstellvertreterin der Bezirksorganisation. 1933 wurde sie in das Zentralfrauenkomitee der Sozialdemokrat. Partei berufen. 1934 war sie mit Otto L. eines der Gr\u00fcndungsmitgl. der illegalen Partei der \u201eRevolution\u00e4ren Sozialisten\u201c \u00d6sterr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der \u201eRevolution\u00e4ren Sozialisten\u201c. 1938 verhalf sie ihrem Mann zur Flucht ins Ausland, sie selbst wurde knapp vor der beabsichtigten Abreise verhaftet. Von Herbst 1939 bis zu ihrer Ermordung war sie im KZ Ravensbr\u00fcck.\n", "source": 126}}, {"model": "metainfo.text", "pk": 47421, "fields": {"kind": 131, "text": "Leichter\u00a0K\u00e4the, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; \u2020 Ravensbr\u00fcck (Brandenburg), 17. 3. 1942 (KZ).", "source": 126}}, {"model": "metainfo.text", "pk": 47422, "fields": {"kind": 130, "text": "Neffe des Gro\u00dfh\u00e4ndlers und Bankiers Markus Leidesdorfer v. Neuwall (s. d.); sollte Kaufmann werden, wandte sich aber gegen den Willen der Eltern dem Schauspielerberuf zu und debut. 1830 unter dem Namen Wallner in Krems. \u00dcber Bad Ischl, Wr. Neustadt, Laibach, Agram etc. kam L. 1835 nach Wien, wo er zuerst im Theater an der Wien und dann im Theater in der Leopoldstadt vorwiegend in Raimund-Rollen auftrat und besonders nach Raimunds Tod 1836, durch seine Raimunds Schauspielkunst getreu kopierende Darstellungsweise, gro\u00dfe Erfolge errang. 1839 ging er f\u00fcr zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle gr\u00f6\u00dferen St\u00e4dte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei St\u00e4dten f\u00fchrte L. auch die Dion. des Theaters. 1854 pachtete er das K\u00f6nigst\u00e4dt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Gesch\u00e4ftst\u00fcchtigkeit, seinen Flei\u00df und k\u00fcnstler. Sp\u00fcrsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerb\u00fchne erweitert hatte, bald lokale Ber\u00fchmtheit. 1864 lie\u00df er es vergr\u00f6\u00dfern und renovieren und er\u00f6ffnete es am 3. 12. als \u201eWallnertheater\u201c. Hatte er in den ersten Jahren seiner Dions.-T\u00e4tigkeit vor allem das moderne franz\u00f6s. Sittenst\u00fcck gepflegt, verwirklichte er in sp\u00e4teren Jahren mit Hilfe des Dichters D. Kalisch und seines vorz\u00fcglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gr\u00fcnden das Theater an C. Lebrun und unternahm nun einige gr\u00f6\u00dfere Reisen. Seine Reise- und Theatererlebnisse ver\u00f6ff. L., der auch Mitarbeiter der \u201eGartenlaube\u201c war, in viel gelesenen B\u00fcchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n", "source": 127}}, {"model": "metainfo.text", "pk": 47423, "fields": {"kind": 131, "text": "Leidesdorf\u00a0Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; \u2020 Nizza, 19. 1. 1876.", "source": 127}}, {"model": "metainfo.text", "pk": 47428, "fields": {"kind": 130, "text": "Bruder des Folgenden, Onkel des Juristen Stanko L. (s. d.); stud. an der Techn. Hochschule in Graz. Ab 1866 im Dienst an der Milit\u00e4rgrenze, zuerst in Temesv\u00e1r, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent f\u00fcr Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890\u201394 Sekret\u00e4r des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der \u201eVijesti\u201c (Berr.) dieses Ver. L. baute Stra\u00dfen (Ogulin\u2013Novi, Alt-Gradi\u0161ka\u2013Lipik), die Kanalisation des Jelas-Feldes und im s\u00fcd\u00f6stlichen Syrmien, Wasserleitungen f\u00fcr die St\u00e4dte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan f\u00fcr die Kanalisation von Agram etc.\n", "source": 124}}, {"model": "metainfo.text", "pk": 47429, "fields": {"kind": 131, "text": "Lapaine\u00a0Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; \u2020 Agram, 21. 2. 1923.", "source": 124}}, {"model": "metainfo.text", "pk": 47430, "fields": {"kind": 130, "text": "Tochter des Gro\u00dfindustriellen Josef v. Schroll (1821\u201391), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849\u201389), B\u00fcrgermeister der Stadt Braunau 1883\u201389, in zweiter Ehe ab 1892 mit dem Politiker und Gro\u00dfindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, \u00f6ff. Gesellschafterin der Fa. Benedikt Schrolls Sohn. Nach dem Tode Josef v. Schrolls wurden beide Schwestern Inhaberinnen der Firma, Johanna L., nach Vereinbarung, 1908 Alleininhaberin und Seniorchefin. Sie leitete die vielseitigen Industriebetriebe mit gro\u00dfer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (B\u00fcchereien, Krankenkasse, Spital etc.) f\u00fcr die bereits um die Jahrhundertwende ca. 2600 z\u00e4hlenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer L\u00e4ndchens.\n", "source": 123}}, {"model": "metainfo.text", "pk": 47431, "fields": {"kind": 131, "text": "Langer-Schroll\u00a0Johanna, Gro\u00dfindustrielle. * Braunau (Broumov, B\u00f6hmen), 2. 10. 1850; \u2020 ebenda, 9. 11. 1926.", "source": 123}}, {"model": "metainfo.text", "pk": 47432, "fields": {"kind": 130, "text": "Enkel des Freiburger Physikers J. J. M\u00fcller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van\u2019t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. M\u00fcnster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in M\u00fchlhausen, 1906 Priv.Doz. an der Univ. Basel, 1909 tit. Prof. M. wirkte ab 1911 als Leiter des anorgan.-wiss. und analyt. Laboratoriums bei den Farbenfabriken Bayer & Co. (Leverkusen), ab 1926 als Nachfolger J\u00fcptners (s. d.) als o. Prof. f\u00fcr chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich t\u00e4tig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivit\u00e4t und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefels\u00e4ure und Zement aus Gips und Ton gewann gro\u00dfe techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n", "source": 144}}, {"model": "metainfo.text", "pk": 47433, "fields": {"kind": 131, "text": "M\u00fcller\u00a0Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; \u2020 Wien, 9. 12. 1941.", "source": 144}}, {"model": "metainfo.text", "pk": 47446, "fields": {"kind": 130, "text": "Tochter eines Gutsbesitzers; kr\u00e4nkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkr\u00e4mpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so gro\u00dfes Aufsehen, da\u00df an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von G\u00f6rres, Brentano, Steinle, M\u00f6hler, D\u00f6llinger, Reisach und Ketteler besucht. 1841 \u00fcbersiedelte sie in das Tertiarinnenkloster in Kaltern. Als Mitgl. des 3. Ordens des Hl. Franziskus wurde sie seelsorglich von P. K. Soyer OFM betreut. Nach langem Leiden starb sie an Blutzersetzung. Die amtlichen Berichte \u00fcber sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n", "source": 143}}, {"model": "metainfo.text", "pk": 47447, "fields": {"kind": 131, "text": "M\u00f6rl\u00a0Maria Theresia von, Stigmatisierte. * Kaltern (S\u00fcdtirol), 16. 10. 1812; \u2020 ebenda, 11. 1. 1868.", "source": 143}}, {"model": "metainfo.text", "pk": 47448, "fields": {"kind": 130, "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer lie\u00df sich M. im Oktober 1843 als Matrose f\u00fcr die Kriegsmarine anwerben und machte 1844\u201346 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 k\u00e4mpfte er als Kmdt. eines Kanonenbootes in der Lagune, vor Ancona und bei der Blockade von Venedig. Nach verschiedenen Einschiffungen und Verwendungen in den folgenden Jahren war M. 1859 vor Lissa Kmdt. der Korvette \u201eMinerva\u201c, 1861/62 hatte er in Pola die Bauleitung der Fregatte \u201eSchwarzenberg\u201c, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapit\u00e4n mit Auszeichnung kommandierte. 1867 als Insel- und Festungskmdt. von Lissa, 1868 als Kmdt. des Seearsenals in Pola in Verwendung, unternahm M. 1869 eine Mission nach England, im Oktober dieses Jahres kommandierte er die in der Bucht von Cattaro zur Bek\u00e4mpfung des Aufstandes in S\u00fcddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871\u201383 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine gro\u00dfe administrative Begabung hatte, besa\u00df eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauauftr\u00e4gen f\u00fcr Schiffe trat er entschieden f\u00fcr die Besch\u00e4ftigung inl\u00e4nd. Firmen ein. Er war ein begeisterter Sammler klass. Altert\u00fcmer und ein bedeutender Numismatiker. Teile der \u201eSammlung Millosicz\u201c, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n", "source": 142}}, {"model": "metainfo.text", "pk": 47449, "fields": {"kind": 131, "text": "Millosicz\u00a0Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; \u2020 Leoben (Stmk.), 24. 7. 1890.", "source": 142}}, {"model": "metainfo.text", "pk": 47450, "fields": {"kind": 130, "text": "Sohn eines Weinbauern; stud. mit Hilfe seines Onkels, eines Landpfarrers, an den Gymn. in Warasdin und Marburg a. d. Drau, dann Phil. und Jus an den Univ. Graz (1838 Dr. phil.) und Wien (1841 Dr. jur.). 1837/38 suppl. er die philosoph. Lehrkanzel an der Univ. Graz und versuchte erfolglos, sich an der Univ. Innsbruck zu habil. Nach k\u00fcrzerer Praxis in Wr. Anwaltskanzleien bekam er 1844 mit Hilfe Kopitars (s. d.), der auf seine sprachliche Begabung aufmerksam geworden war, eine Amanuensisstelle an der Hofbibl. (1850 Skriptor, 1862 i. R.). 1849 wurde er ao., 1850 o. Prof. der slaw. Philol. und Literatur an der Univ. Wien, 1851/52, 1856/57 Dekan, 1854/55 Rektor, 1885 i. R. Pr\u00e4s. der Pr\u00fcfungskomm. f\u00fcr Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866\u20131869 Sekret\u00e4r der phil.-hist. Kl.), 1862 lebensl\u00e4ngliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Pr\u00e4s. des akadem. Ver. \u201eSlovenija\u201c in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zuk\u00fcnftigen \u00f6sterr. F\u00f6deration verlangte. 1849 war er slowen. Abg. beim Reichstag in Kremsier, wo er durch besonnene Haltung die Sympathie Stadions erweckte, der dann seine Ernennung zum ersten Prof. der Slawistik in \u00d6sterr. bewirkte. M., der schon im Gymn. gro\u00dfe sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einflu\u00df Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begr\u00fcnder der slaw. Philol. In der Kritik der Vergleichenden Grammatik des Sanskrit, Zend, Griech., Latein., Litau., Got. und Dt. von Bopp bewies M. 1844 die Notwendigkeit wiss. Erforschung nicht nur der von Bopp behandelten, sondern auch aller slaw. Sprachen und verfolgte unerm\u00fcdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewu\u00dftes Streben aller V\u00f6lker Europas nach einer gem. Sprache festzustellen (Neueurop\u00e4ismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkm\u00e4ler des Altslowen., wie M. irrt\u00fcmlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, M\u00e4hren und Ru\u00dfland bezeichnete, verfa\u00dfte und publ. er die \u201eVergleichende Grammatik der slavischen Sprachen\u201c. Vom Altslowen. ausgehend, analysierte er in unz\u00e4hligen Beispielen slaw. Spracherscheinungen und lie\u00df scheinbar nur das Wei\u00dfruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem \u201eeigenth\u00fcmlichen Zauber der Sprache\u201c, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdr\u00fcckte. Verh\u00e4ngnisvoll wurde ihm die von Kopitar \u00fcbernommene \u201ePannonische Theorie\u201c, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im \u00f6stlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. \u201eLexicon palaeoslovenico-graeco-latinum\u201c und das \u201eEtymologische W\u00f6rterbuch der slavischen Sprachen\u201c die bedeutendsten. Im Sinne des Neueurop\u00e4ismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begr\u00fcnder der rum\u00e4n. und alban. Philol. wurde. Er verfa\u00dfte umfangreiche Stud. \u00fcber die Mundarten und Wanderungen der Zigeuner Europas und edierte erfolgreich altkirchenslaw. Texte sowie serb. und griech. hist. Quellen. M. war auch in der Lehnwort-, Personen- und Ortsnamenforschung sowie in der Analyse der Volksepik bahnbrechend. Geringere Bedeutung haben dagegen seine mytholog. und polem. Schriften.\n", "source": 141}}, {"model": "metainfo.text", "pk": 47451, "fields": {"kind": 131, "text": "Miklosich\u00a0Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomer\u0161cak pri Ljutomeru, Unterstmk.), 20. 11. 1813; \u2020 Wien, 7. 3. 1891.", "source": 141}}, {"model": "metainfo.text", "pk": 47460, "fields": {"kind": 130, "text": "Stud. an der Exportakad. (Hochschule f\u00fcr Welthandel) in Wien, wo er die Lehramtspr\u00fcfung f\u00fcr h\u00f6here Handelsschulen und die Diplompr\u00fcfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule f\u00fcr Welthandel, 1931 Habil. f\u00fcr Betriebswirtschaftslehre an der Hochschule f\u00fcr Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. f\u00fcr Betriebswirtschaftslehre. 1938 wurde M. durch die Nationalsozialisten von der Hochschule entfernt. Nach Verhaftung (1942) und Verurteilung im selben Jahr zu sechs Jahren Zuchthaus wegen Kenntnis von verr\u00e4ter. Vorhaben und Unterlassung der Anzeige, w\u00e4hrend des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der B\u00f6rsenverkehr. Er verband in seinen Ver\u00f6ff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realit\u00e4t mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einflu\u00df von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbst\u00e4ndige Teildisziplin der Wirtschaftswiss. verstandenen Betriebswirtschaftslehre, von einer privatwirtschaftlich ausgerichteten Unternehmungslehre zu einer alle wirtschaftlichen Einheiten einer Volkswirtschaft untersuchenden Lehre, die somit auch die Haushalte einbeziehen sollte. Betriebs- und Volkswirtschaftslehre zeigen nach M. \u201eandere Seiten des wirtschaftlichen Geschehens\u201c, wobei von ersterer \u201eder Betrieb als eine mit konkreten Tatbest\u00e4nden und Aufgaben erf\u00fcllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens \u00fcberhaupt untrennbar verbunden erscheint\u201c.\n", "source": 140}}, {"model": "metainfo.text", "pk": 47461, "fields": {"kind": 131, "text": "Meithner\u00a0Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; \u2020 Wien, 13. 12. 1942.", "source": 140}}, {"model": "metainfo.text", "pk": 47466, "fields": {"kind": 130, "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der j\u00fcd. Deklassierten. Seine Lieder, die er in Gasth\u00e4usern und Sch\u00e4nken vortrug, sind von sozialen Motiven gepr\u00e4gt. Obwohl er im Zeitalter der gr\u00f6\u00dften K\u00e4mpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des j\u00fcd. Volksgesanges, W\u00f6lwel Zbarazer (Ehrenkranz), durchzog mit einigen Gef\u00e4hrten, die man als \u201eBroder-S\u00e4nger\u201c bezeichnete, Galizien, Rum\u00e4nien sowie Ru\u00dfland, wo sie seine wie auch \u00e4ltere j\u00fcd. Volkslieder vortrugen. Er war der erste der j\u00fcd. fahrenden Volkss\u00e4nger, der Vorl\u00e4ufer des modernen jidd. Theaters.\n", "source": 139}}, {"model": "metainfo.text", "pk": 47467, "fields": {"kind": 131, "text": "Margulies\u00a0Berl, Volkss\u00e4nger. * Brody (Galizien), ca. 1817; \u2020 b. Bukarest, ca. 1880.", "source": 139}}, {"model": "metainfo.text", "pk": 47468, "fields": {"kind": 130, "text": "Tochter des Malers Anton\u00edn M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Sch\u00fclerin ihres Vaters, dessen maler. Verm\u00e4chtnis sie aber nicht so selbst\u00e4ndig entfalten konnte wie ihre Br\u00fcder, welche sie materiell unterst\u00fctzen mu\u00dfte.\n", "source": 137}}, {"model": "metainfo.text", "pk": 47469, "fields": {"kind": 131, "text": "M\u00e1nesov\u00e1\u00a0Amalie, Malerin. * Prag, 21. 1. 1817; \u2020 Prag, Juni 1883.", "source": 137}}, {"model": "metainfo.text", "pk": 47470, "fields": {"kind": 130, "text": "Sohn des Malers Anton\u00edn M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ov\u00e1 (s. d.), Neffe des Folgenden; stud. 1838\u201351 an der Prager Akad. bei Tkadl\u00edk und Ruben, 1870/71 in D\u00fcsseldorf bei Vautier und begann unter dem Einflu\u00df der Akad. mit hist. Motiven in Genreart. Ab der zweiten H\u00e4lfte der 50er Jahre befa\u00dfte er sich mit volkst\u00fcmlichen Motiven, vor allem aus der Gegend von Bischofteinitz, und insbesondere mit Prager Typen. Er wurde zum bedeutendsten Vertreter der tschech. Genremalerei des 19. Jh. Seine Bilder haben intimen Zauber, sie sind durch den Sinn f\u00fcr die Atmosph\u00e4re des Milieus, durch Unmittelbarkeit, lyr. Zartheit, liebevollen Humor, manchmal durch melanchol. Klage gekennzeichnet. M. war auch ein ausgezeichneter Tiermaler, besonders von Pferden. Das zeichner. Werk nahm in seinem Schaffen einen bedeutsamen Platz ein. Auch als Illustrator t\u00e4tig, schuf er 52 Illustrationen zum 1. Tl. des Don Quichotte (1865, Holzschnitt). Mit seinem Bruder Josef M. begann er in den 50er Jahren ein Werk \u00fcber Trachtenstud. bei der l\u00e4ndlichen Bev\u00f6lkerung.\n", "source": 138}}, {"model": "metainfo.text", "pk": 47471, "fields": {"kind": 131, "text": "M\u00e1nes\u00a0Quido, Maler. * Prag, 17. 7. 1828; \u2020 Prag, 5. 8. 1880.", "source": 138}}, {"model": "metainfo.text", "pk": 47482, "fields": {"kind": 130, "text": "Sohn eines Privatiers und Handelsagenten; besuchte das Gymn. in Graz, war dann Schauspieleleve in Berlin, dramaturg. Berater am Stadttheater Innsbruck, Schauspieler, Szenenbildner und Regisseur an verschiedenen Provinzb\u00fchnen, 1917 am Residenztheater M\u00fcnchen, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehb\u00fcchern. Ab 1927 Autor bzw. Mitautor von Hollywood-Filmen; 1932 emigrierte er nach Frankreich und arbeitete in Paris mit dem Regisseur P. Czinner und der Schauspielerin E. Bergner zusammen, ab 1935 lebte er in London. Neben seiner dramaturg. T\u00e4tigkeit im Dokumentarfilmstudio von P. Rotha widmete er sich der Ausbildung von Filmautoren. Ungemein stilbildend, war M. der bedeutendste Drehbuchautor des dt. Stummfilms. Er arbeitete u. a. mit den Regisseuren R. Wiene, F. W. Murnau, L. Pick, L. Jessner und P. Czinner sowie mit den Schauspielern W. Krau\u00df, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Kl\u00f6pfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n", "source": 136}}, {"model": "metainfo.text", "pk": 47483, "fields": {"kind": 131, "text": "Mayer\u00a0Karl, Drehbuchautor. * Graz, 20. 2. 1894; \u2020 London, 1. 7. 1944.", "source": 136}}, {"model": "metainfo.text", "pk": 47484, "fields": {"kind": 130, "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Gesch\u00e4ftsf\u00fchrer gemacht. M.-S. besch\u00e4ftigte sich mit philosoph. und naturwiss. Stud., gr\u00fcndete 1829 das erste \u201eTiroler Mineralien-Comptoir\u201c und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im M\u00e4rz 1848 verfa\u00dfte er einen feurigen Aufruf \u201eA greachts Weartl von an alten Landesverteidiger an seini Mitbr\u00fcder\u201c, der gro\u00dfen Widerhall fand. Auf eigene Kosten r\u00fcstete er die 1. Innsbrucker Sch\u00fctzenkomp. aus, an deren Spitze er im Mai 1848 an die S\u00fcdfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein \u201eRadetzky-Album\u201c an (es enthielt Zeichnungen, Portr\u00e4ts, eine wertvolle Autographensmlg. etc.), welches er sp\u00e4ter dem Tiroler Landesmus. Ferdinandeum \u00fcbergab. M.-S. errichtete 1853 unter gro\u00dfem Kostenaufwand auf seinem Schlo\u00df B\u00fcchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gr\u00fcndete den 1. Arbeiterunterst\u00fctzungsver. und beteiligte sich an vielen humanit\u00e4ren Einrichtungen. 1865 verkaufte er sein Schlo\u00df und f\u00fchrte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. t\u00e4tig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen gro\u00dfe Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der \u201eTiroler Monatsbl\u00e4tter\u201c. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n", "source": 135}}, {"model": "metainfo.text", "pk": 47485, "fields": {"kind": 131, "text": "Mahl-Schedl von Alpenburg\u00a0Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Gr\u00fcnburg (O.\u00d6.), 27. 10. 1806; \u2020 Innsbruck, 1. 4. 1873.", "source": 135}}, {"model": "metainfo.text", "pk": 47486, "fields": {"kind": 130, "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882\u201385 war er Kapellmeister beim IR 74, 1885\u201390 Kapellmeister beim IR 28. N., ein sehr guter Geiger, vor allem aber ein vortrefflicher Dirigent, dem die Rgt.Musik des IR 74 ihren ausgezeichneten Ruf verdankt, war auch im Ausland mit viel Erfolg t\u00e4tig. Neben Rum\u00e4nien und Bulgarien z\u00e4hlen Holland und Belgien zu seinen wichtigsten k\u00fcnstler. Wirkungsst\u00e4tten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n", "source": 145}}, {"model": "metainfo.text", "pk": 47487, "fields": {"kind": 131, "text": "Nov\u00e1cek\u00a0Rudolf, Kapellmeister und Komponist. * Wei\u00dfkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; \u2020 Prag, 12. 8. 1929.", "source": 145}}, {"model": "metainfo.text", "pk": 47502, "fields": {"kind": 130, "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898\u20131903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904\u201319 wirkte er als Dir. am neugegr\u00fcndeten M\u00e4dchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes f\u00fcr Inneres und Unterricht t\u00e4tig, leitete ab 1922 die Abt. f\u00fcr p\u00e4dagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform f\u00fcr alle Mittelschulen folgte. Er unterst\u00fctzte bes. die Ver.-M\u00e4dchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkr\u00e4fte und f\u00f6rderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908\u201310 erster Obmann des Ver. Lyzeum.\n", "source": 147}}, {"model": "metainfo.text", "pk": 47503, "fields": {"kind": 131, "text": "Ortmann\u00a0Rudolf, P\u00e4dagoge. * Reichenberg (Liberec, B\u00f6hmen), 10. 3. 1874; \u2020 Wien, 22. 11. 1939.", "source": 147}}, {"model": "metainfo.text", "pk": 47506, "fields": {"kind": 130, "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegr\u00fcndete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832\u201337 Vorlesungen \u00fcber Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848\u201360 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfa\u00dfte zahlreiche Aufs\u00e4tze aus dem Gebiet der Chemie und hielt in Innsbruck viele popul\u00e4rwiss. Vortr\u00e4ge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur f\u00fcr techn. Chemie scheiterte aus Geldmangel (1838).\n", "source": 146}}, {"model": "metainfo.text", "pk": 47507, "fields": {"kind": 131, "text": "Oellacher\u00a0Josef, Pharmazeut. * Pre\u00dfburg, 16. 2. 1804; \u2020 Innsbruck, 16. 8. 1880.", "source": 146}}, {"model": "metainfo.text", "pk": 47516, "fields": {"kind": 130, "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtspr\u00fcfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg t\u00e4tig. 1918\u20131924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent f\u00fcr das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor f\u00fcr Geol. und Pal\u00e4ontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfa\u00dfte u. a. mehrere Schulb\u00fccher und red. ab 1932 die Z. \u201eIzvestja muzejskega dru\u0161tva za Kranjsko\u201c. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n", "source": 151}}, {"model": "metainfo.text", "pk": 47517, "fields": {"kind": 131, "text": "Poljanec\u00a0Leopold, Biologe und Schulmann. * Rann (Bre\u017eice, Unterstmk.), 23. 9. 1872; \u2020 Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944.", "source": 151}}, {"model": "metainfo.text", "pk": 47522, "fields": {"kind": 130, "text": "Stud. Germanistik und Polonistik bei R. M. Werner und R. Pilat an der Univ. Lemberg, wo er auch zu A. Sauer Verbindung hatte; 1897 Dr. phil. 1889\u201398 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903\u201309 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, t\u00e4tig. 1914 Priv. Doz., 1915\u201321 hielt er an der Univ. Lemberg Vorlesungen aus dt. Philol. und dt. Literaturgeschichte. 1918/19 war er provisor. Doz. der Germanistik an der Univ. Warschau. P. war u. a. ab 1920 w. Mitgl. der Lemberger Wiss. Ges. Als Literaturwissenschafter leistete P. auf dem Gebiet der H\u00f6lderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, h\u00f6chste Anerkennung fand.\n", "source": 150}}, {"model": "metainfo.text", "pk": 47523, "fields": {"kind": 131, "text": "Petzold\u00a0Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; \u2020 Lemberg (L\u2019viv), 15. 7. 1932.", "source": 150}}, {"model": "metainfo.text", "pk": 47530, "fields": {"kind": 130, "text": "Sohn des Philosophen Johann P. v. L. (1793\u20131866), Cousin des Folgenden, Neffe des Juristen und Politikers Thadd\u00e4us Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden K\u00fcnste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in D\u00fcsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden K\u00fcnste in Wien, an der er 1872\u20131901 als Prof. f\u00fcr Landschaftsmalerei wirkte, 1878\u201380 und 1897\u201399 Rektor. Nach seiner Pensionierung lebte er in N\u00fcrnberg und Berlin. \u00dcber pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf \u00d6l-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine \u00d6lbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Sch\u00fcler zu intensiven Naturstud. anhielt. Er beteiligte sich an den Wr. Akad.Ausst., u. a. 1858 und 1859. 1861 stellte er als Mitgl. im Wr. K\u00fcnstlerhaus aus, das ihm 1913 auch eine Ged\u00e4chtnisausst. widmete.", "source": 149}}, {"model": "metainfo.text", "pk": 47531, "fields": {"kind": 131, "text": "Peithner von Lichtenfels\u00a0Eduard, Maler und Radierer. * Wien, 18. 11. 1833; \u2020 Berlin, 22. 1. 1913.", "source": 149}}, {"model": "metainfo.text", "pk": 47536, "fields": {"kind": 130, "text": "Stud. 1839\u20131843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-M\u00fcnzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel f\u00fcr H\u00fctten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausr\u00fcstung der Labors betraut wurde. P. setzte die in Wien begonnenen chem. Arbeiten, u. a. Silberextraktion auf nassem Weg und Darstellung der reinen Uranverbindungen, fort; 1852 unternahm er in Joachimsthal im Auftrag der Obersten Montanverwaltung Versuche zur Verbesserung der Arbeitsmethoden und zur Auffindung neuer Verfahren bei der Verwertung einzelner Erze, deren Ergebnis die Silberextraktion unter Anwendung von unterschwefligsaurem Natron, Gewinnung von Nickel, Wismut und Kohlenoxyd, Ausscheidung des Arsens aus seinen Verbindungen in Erzen sowie die Darstellung der Uranfarben aus Pechblende waren. 1856 wurde in der Folge eine Uranaufbereitungsanlage in Joachimsthal gebaut. 1864 richtete P. in Wien das H\u00fcttenm\u00e4nn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum H\u00fcttenchemiker des gesamten \u00f6sterr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (sp\u00e4ter Vorstand des H\u00fcttenm\u00e4nn.-chem. Laboratoriums) ernannt. 1881 Oberbergrat, 1889 i. R., Hofrat. Erst durch P.s Verfahren der Urangewinnung aus Pechblende wurden die Forschungen des Ehepaars Curie erm\u00f6glicht.\n", "source": 148}}, {"model": "metainfo.text", "pk": 47537, "fields": {"kind": 131, "text": "Patera\u00a0Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; \u2020 Teschen (Cieszyn, \u00f6sterr. Schlesien), 26. 6. 1894.", "source": 148}}, {"model": "metainfo.text", "pk": 47540, "fields": {"kind": 130, "text": "Stud. ab 1782 an der Univ. Salzburg Phil. (1788 Mag.phil.), dann Theol. (1794 Dr. theol.); war nach seiner Priesterweihe (1793) als Seelsorger t\u00e4tig. 1801 wurde er Kanonikus des Kollegiatstiftes Maria Schnee, 1803 w. Konsistorialrat, 1810 Pfarrer und Dechant (damit auch Schuldistriktsinsp.) von Altenmarkt, 1832 erster Dechant des wiedererrichteten Kollegiatstiftes Seekirchen. R. ist der erste Historiograph des salzburg.-\u00f6sterr. Bildungswesens, \u00fcber das er grundlegende Beitrr. verfa\u00dfte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten \u00fcber theolog., p\u00e4dagog. und hist. Themen waren weit verbreitet.\n", "source": 158}}, {"model": "metainfo.text", "pk": 47541, "fields": {"kind": 131, "text": "Rumpler\u00a0Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; \u2020 Seekirchen (Salzburg), 17. 3. 1846.", "source": 158}}, {"model": "metainfo.text", "pk": 47542, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckermeisters; ab 1901 selbst\u00e4ndiger B\u00e4kkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912\u201325 im Wr. Gemeinderat, 1924\u201334 im Bundesrat; ab 1917 Vizepr\u00e4s., in der Folge Pr\u00e4s. des Dt.\u00f6sterr. Gewerbebundes. 1928 Kommerzialrat. R. hat mit seinen hist. Stud. wesentlichen Anteil am Aufschwung der Wr. Lokalgeschichtsschreibung in der Zwischenkriegszeit: Seine Geschichte des VII. und die des VIII. Wr. Gemeindebez. sind ebenso Standardwerke geblieben wie die gem. mit A. Schmieger verfa\u00dfte Stud. \u201eDas Ghetto in der Wiener Leopoldstadt\u201c (1926). Auch seine wertvollen Ver\u00f6ff. aus der Geschichte des Wr. B\u00e4ckergewerbes zeugen von R.s Flei\u00df im Erschlie\u00dfen von Quellenmaterial.\n", "source": 157}}, {"model": "metainfo.text", "pk": 47543, "fields": {"kind": 131, "text": "Rotter\u00a0Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; \u2020 Wien, 18. 9. 1945.", "source": 157}}, {"model": "metainfo.text", "pk": 47556, "fields": {"kind": 130, "text": "Aus urspr\u00fcnglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der nieder\u00f6sterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenk\u00fcrassieren die Feldz\u00fcge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in M\u00fcnchen, Berlin, Stuttgart, Stockholm und Paris t\u00e4tig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 K\u00e4mmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-d\u00e4n. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilko\u00e4r. f\u00fcr Schleswig-Holstein. Anschlie\u00dfend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der \u00f6sterr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Aufl\u00f6sung von kath. Kl\u00f6stern in russ. Polen, erzwungener \u00dcbertritt von unierten Christen zur Orthodoxie etc.) befa\u00dft. 1868 trat er wegen Differenzen mit Beust (s. d.) zur\u00fcck. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner ober\u00f6sterr. G\u00fcter Erlach und Tollet und wurde daneben in der \u00f6sterr. Innenpolitik au\u00dferordentlich aktiv. Er wurde 1869 als Vertreter des Gro\u00dfgrundbesitzes ober\u00f6sterr. Landtagsabg. 1885 Mitgl. der \u00f6sterr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des \u00f6sterr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Pr\u00e4lat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschl\u00fcssen des Frankfurter Katholikentages 1882 begr\u00fcndet wurde. 1888 wurde R. im ausw\u00e4rtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen w\u00e4hrend seiner Amtszeit geh\u00f6rten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren H\u00f6hepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein m\u00f6gliches Refugium in \u00d6sterr. zu gew\u00e4hren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) geno\u00df, \u00fcbte auch eine Vermittlert\u00e4tigkeit bei dessen famili\u00e4ren Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mu\u00dfte er auf Dr\u00e4ngen ung. Politiker von seinem Posten zur\u00fccktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssph\u00e4ren von Staat und Kirche in der sp\u00e4tjosefin. Zeit. Daneben war er Experte f\u00fcr die Grenzbereiche der r\u00f6m.-kath., unierten und orthodoxen Kirchen, auch f\u00fcr Ru\u00dfland und den Balkan. Obwohl f\u00fcr soziale Fragen aufgeschlossen, war er kein Sympathisant der Christlichsozialen, deren antisemit. Tendenzen er ablehnte. Vielfach geehrt und ausgezeichnet, u. a. Geh.Rat (1868), Kanzler des Leopold-Ordens und Gro\u00dfkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866\u20131951), folgte 1919 K. Karl (s. d) ins Exil.\n", "source": 156}}, {"model": "metainfo.text", "pk": 47557, "fields": {"kind": 131, "text": "Revertera von Salandra\u00a0Friedrich Graf, Diplomat und Politiker. * Lemberg (L\u2019viv), 21. 1. 1827; \u2020 Brixen (S\u00fcdtirol), 28. 4. 1904.", "source": 156}}, {"model": "metainfo.text", "pk": 47558, "fields": {"kind": 130, "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (N\u00d6) t\u00e4tig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814\u201324 Dir. des Priesterseminars, 1817\u201335 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. T\u00e4tigkeit. In zahlreichen Publ. besch\u00e4ftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine \u201ePastoral-Anweisung nach den Bed\u00fcrfnissen unsers Zeitalters\u201c, die als offizielles Vorlesebuch f\u00fcr alle \u00f6ff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einflu\u00df auf den Klerusnachwuchs. R., ein gro\u00dfer Wohlt\u00e4ter der kirchlichen Inst., z\u00e4hlte zu den ma\u00dfvollen Josefinern.\n", "source": 154}}, {"model": "metainfo.text", "pk": 47559, "fields": {"kind": 131, "text": "Reichenberger\u00a0Andreas, Theologe. * Wien, 24. 11. 1770; \u2020 Linz, 26. 10. 1854.", "source": 154}}, {"model": "metainfo.text", "pk": 47560, "fields": {"kind": 130, "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883\u201386 an der Hochschule f\u00fcr Bodenkultur in Wien, Forsting. Wirkte ab 1887 am bosn.-herzegowin. Landesmus. in Sarajevo (1913 Reg.Rat, 1919 i. R.) und organisierte die von ihm geleitete naturwiss. Abt. Ab 1926 Mitgl. des Ornitholog. Observatoriums in Laibach (Ljubljana). R.s Lebenswerk war der Ornithol. des Balkans gewidmet. Neben seiner T\u00e4tigkeit am Mus. in Sarajevo sammelte er Material f\u00fcr eine Beschreibung der V\u00f6gel der Marburger Umgebung und arbeitete bei der Aufstellung der ornitholog. Smlg. des Mus. in Marburg a. d. Drau (Maribor) mit, dem er eine Smlg. von Vogeleiern aus dem Drautal vermachte. R. wurde vielfach geehrt und ausgezeichnet, u. a. 1932 Dr. h. c. der Univ. Graz.\n", "source": 155}}, {"model": "metainfo.text", "pk": 47561, "fields": {"kind": 131, "text": "Reiser\u00a0Othmar, Ornithologe. * Wien, 21. 12. 1861; \u2020 Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936.", "source": 155}}, {"model": "metainfo.text", "pk": 47564, "fields": {"kind": 130, "text": "Sohn eines Baumwollwarenh\u00e4ndlers; wurde nach Absolv. der Techn. Milit\u00e4rakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898\u20131900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900\u201311 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914\u201316 war R. als Milit\u00e4rattach\u00e9 in Bukarest. 1916 wurde er als Obstlt. des Gen. Stabskorps zum Chef der Gen.Stabsabt. des l. Armeekmdo. und noch im selben Jahr zum Obst. des Gen. Stabskorps ernannt. Ab 1918 war R. Gen. Stabschef des XI. Korps, dann Gen. Stabschef der k. u. k. Besatzungstruppen in Rum\u00e4nien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Fl\u00fcgeladj. Kg. Ferdinands von Rum\u00e4nien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein B\u00fcndnis gegen das revolution\u00e4re Ru\u00dfland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen \u00d6sterr.-Ungarn, dem Dt. Reich, der T\u00fcrkei und Bulgarien einerseits und Rum\u00e4nien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n", "source": 153}}, {"model": "metainfo.text", "pk": 47565, "fields": {"kind": 131, "text": "Randa\u00a0Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, M\u00e4hren), 24. 5. 1874; \u2020 Czernowitz (Cernivci, Bukowina), 13. 8. 1941.", "source": 153}}, {"model": "metainfo.text", "pk": 47566, "fields": {"kind": 130, "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtspr\u00fcfung) u. a. bei Boltzmann (s. d.) und Frischauf (s. d.), dann an der Univ. Berlin Physik bei Helmholtz und Kirchhoff. In Graz war R. lange Mitgl. von A. v. Meinongs (s. d.) Philosoph. Societ\u00e4t. Er interessierte sich f\u00fcr Grenzgebiete der Mathematik und der Physik sowie f\u00fcr die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten ma\u00dfgeblich beeinflu\u00dft wurde. 1894\u201396 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. f\u00fcr theoret. Physik an der Univ. Innsbruck und Ass. K. Exners (s. d.) am Mathemat.-physikal. Inst. 1902 ao. Prof. an der Univ. Innsbruck, 1906 o. Prof. der mathemat. Physik an der Univ. Czernowitz (Cernivci), 1915 o. Prof. der theoret. Physik an der Univ. Graz, 1924/25 Dekan. R.\u2019 bedeutendste und tiefgreifendste Arbeit behandelt \u201eDie Grundlagen der Galilei-Newton\u2019schen Mechanik\u201c. Er ver\u00f6ff. auch einige wichtige experimentelle Arbeiten zur Frage der Gescho\u00dfgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895\u20131938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n", "source": 152}}, {"model": "metainfo.text", "pk": 47567, "fields": {"kind": 131, "text": "Radakovic\u00a0Michael, Physiker. * Graz, 25. 4. 1866; \u2020 Graz, 15. 8. 1934.", "source": 152}}, {"model": "metainfo.text", "pk": 47568, "fields": {"kind": 130, "text": "Nach der Schulausbildung in Gro\u00dfwardein (Oradea) und Temeswar (Timi\u00bfoara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der K\u00f6r\u00f6s. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von G\u00e1bor D\u00f6brentei (\u00bfGabriel D\u00f6brentei) am Burgtheater (Budai V\u00e1rsz\u00ednh\u00e1z) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, T\u00e4nzer und Inspizient t\u00e4tig war sowie seine ersten Theaterst\u00fccke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Sz\u00ednh\u00e1z) in Pest ein Engagement als Schauspieler (1837\u201354) und Bibliothekar (1837\u201340) und widmete sich schlie\u00dfl. der Regie (1854\u201373) sowie der Dramaturgie (1868\u201373). Ab 1865 war er Prof. und 1870\u201373 Dir. der Pester Schauspielschule. 1873 \u00fcbernahm er die Leitung des Nationaltheaters. Er f\u00f6rderte zahlreiche sp\u00e4ter bekannte Schauspieler und initiierte u.\u00a0a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. \u00fcber hundert Theaterst\u00fccke und zahlreiche Libretti, schrieb Schauspielerportr\u00e4ts (\u201eMagyar sz\u00edn\u00e9szek \u00e9letrajzai\u201c, 1878, 2.\u00a0Aufl. 1907) und \u00fcbers. u.\u00a0a. Goethes \u201eEgmont\u201c (1871) und \u201eFaust\u201c sowie Shakespeares \u201eRichard III.\u201c (1867) ins Ung. Sein dramaturg. Lehrbuch \u201eA dr\u00e1ma \u00e9s v\u00e1lfajai\u201c (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der franz\u00f6s. und Wr. B\u00fchnen und adaptierte diese meisterhaft f\u00fcr das ung. Publikum. Sowohl seine Lustspiele (\u201eR\u00f3zsa\u201c, 1840; \u201eLiliomfi\u201c, 1849; \u201eFenn az ernyo, nincsen kas\u201c, 1858, 7.\u00a0Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen (\u201eII. R\u00e1k\u00f3czi Ferenc fogs\u00e1ga\u201c, 1848; \u201eA tr\u00f3nkereso\u201c, 1868, 5.\u00a0Aufl. 1916, dt. \u201eDer Pr\u00e4tendent\u201c, 1881; \u201eStruensee\u201c, 1871) als auch seine unter dem Einfluss des Wr. Volksst\u00fccks und des franz\u00f6s. Melodramas entstandenen Volksst\u00fccke \u201eSz\u00f6k\u00f6tt katona\u201c (1843) und \u201eCig\u00e1ny\u201c (1853), mit denen er die Grundlage f\u00fcr diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgen\u00f6ss. Publikums. Ledigl. seine b\u00fcrgerl. Dramen (\u201eA lelenc\u201c, 1863; \u201eA f\u00e9ny \u00e1rnyai\u201c, 1865) und die St\u00fccke \u201eA strike\u201c (1871) sowie \u201eAz amerikai\u201c (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stie\u00dfen auf Unverst\u00e4ndnis. S. war einer der einflussreichsten Dramatiker des 19.\u00a0Jh. in Ungarn, seine St\u00fccke wurden in zahlreiche Sprachen \u00fcbers. und verfilmt (\u201eSz\u00f6k\u00f6tt katona\u201c, 1914; \u201eLiliomfi\u201c, 1916, 1954; \u201eCig\u00e1ny\u201c, 1925, 1941) und geh\u00f6ren auch heute noch zum Standardrepertoire der ung. B\u00fchnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Gro\u00dfwardein (Nagyv\u00e1radi Szigligeti Sz\u00ednh\u00e1z) sowie das Theater in Szolnok (Szigligeti Sz\u00ednh\u00e1z) sind nach ihm benannt. S. war ab 1840 k.\u00a0M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n", "source": 194}}, {"model": "metainfo.text", "pk": 47569, "fields": {"kind": 131, "text": "Szigligeti Ede (Edv\u00e1rd), bis 1834 J\u00f3zsef Szathm\u00e1ry, Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur. Geb. V\u00e1rad-Olaszi, Ungarn (Oradea-Olosig, RO), 8.\u00a03. 1814; gest. Budapest (H), 19.\u00a01. 1878; r\u00f6m.-kath.", "source": 194}}, {"model": "metainfo.text", "pk": 47570, "fields": {"kind": 130, "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Sch\u00e4fer; ab 1895 verheiratet mit Erna Szen\u00f3ner. \u2013 Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871\u201374 war S. 1882\u201384 Z\u00f6gling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887\u201389 die Kriegsschule in Wien. Seine milit\u00e4r. Laufbahn begann er 1882 als Gemeiner im Honv\u00e9d-Inf.baon.\u00a018. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k.\u00a0u.\u00a0k. Armee sowie bei der Honv\u00e9d und versah Truppendienst, u.\u00a0a. als Baon.kmdt., v.\u00a0a. in den Honv\u00e9d-Inf.rgt.\u00a04 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der F\u00fchrung der kgl. ung. Inf.div.\u00a038 betraut, an deren Spitze er \u2013 ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps \u2013 ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz k\u00e4mpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (U\u017eoc\u2019kyj pereval) in den Karpaten gegen die Russen. 1917 erfolgte seine Ernennung zum kgl. ung. Landesverteidigungsminister in Budapest (ab August Gen. der Inf.). Diesen Posten bekleidete er bis zum Austritt Ungarns aus der Realunion Ende Oktober 1918. Anfang 1919 wurde S. pensioniert, einen Monat sp\u00e4ter auf Gehei\u00df der Berinkey-Regierung in St.\u00a0Gotthard (Szentgotth\u00e1rd) interniert und w\u00e4hrend der R\u00e4terepublik gem. mit \u00bfJ\u00f3zsef Frh. Szter\u00e9nyi v. Brass\u00f3 in Budapest gefangen gehalten. Nach dem Sturz der R\u00e4terepublik war S. Ende 1919 Verbindungsoff. bei der franz\u00f6s. milit\u00e4r. Mission. 1921 wurde er endg\u00fcltig pensioniert, lebte danach in Budapest und wirkte als Milit\u00e4rschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I.\u00a0Kl., 1916 wurde er Kommandeur des Leopold-Ordens I.\u00a0Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Pr\u00e4dikat \u201evon Uzsok\u201c ausgez. S. war Inhaber des Honv\u00e9d-Inf.rgt.\u00a020 (1918), 1929 wurde er in den Vit\u00e9zi Rend (Ritterorden) aufgenommen, 1927\u201344 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n", "source": 195}}, {"model": "metainfo.text", "pk": 47571, "fields": {"kind": 131, "text": "Szurmay von Uzsok S\u00e1ndor (Alexander) Frh., Offizier und Politiker. Geb. Boks\u00e1nb\u00e1nya, Ungarn (Boc\u00bfa, RO), 19.\u00a012. 1860; gest. Budapest (H), 26.\u00a03. 1945.", "source": 195}}, {"model": "metainfo.text", "pk": 47580, "fields": {"kind": 130, "text": "Sohn eines Bauern. \u2013 Nach Besuch der Gymn. in Kempten im Allg\u00e4u, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St.\u00a0Florian ein (1823 Profe\u00df, 1824 Priesterweihe). 1824\u201343 wirkte er als Kaplan in der Stiftspfarre, 1843\u201354 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s.\u00a0d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 au\u00dferdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht \u00fcbertragen. 1859 wurde er Propst von St.\u00a0Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Versch\u00f6nerungen in der Stiftskirche, u.\u00a0a. durch L.\u00a0Kupelwieser (s.\u00a0d.), durchgef\u00fchrt. Daneben widmete sich S., von F.\u00a0Ser. Kurz (s.\u00a0d.) angeleitet, schon bald der Historiographie. Bereits 1834 geh\u00f6rte er zu den Initiatoren des sp\u00e4teren Mus. Francisco-Carolinum, red. 1839\u201344 dessen \u201eMusealblatt\u201c und arbeitete v.\u00a0a. an den ersten sechs Bde. des \u201eUrkundenbuchs des Landes ob der Enns\u201c (1852\u201372) mit; weiters befa\u00dfte er sich mit dem Leben von K.\u00a0Maximilian\u00a0I., ordnete die Archive der Stifte St.\u00a0Florian und Wilhering und verf. die Geschichte beider Kl\u00f6ster. Zudem besch\u00e4ftigte er sich mit dem Gr\u00fcnder von Stift Reichersberg, Propst Gerhoch, sowie mit Bischof Altmann von Passau, ferner landesgeschichtl. mit den Gf. von Schaunberg. S., der in regem Austausch mit Koch v. Sternfeld (s.\u00a0d.) stand, war u.\u00a0a. Mitgl. des Hist. Ver. f\u00fcr Unterfranken und Aschaffenburg (1841), des Hist. Ver. f\u00fcr die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k.\u00a0k. Reichshistoriographen. 1847 z\u00e4hlte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. t\u00e4tig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gew\u00e4hlt, wo er v.\u00a0a. mit dem kath.-reformer. Kreis um Johann Joseph v. G\u00f6rres in Verbindung stand. Auch bei den Bem\u00fchungen um die Errichtung des o\u00f6. Katholikenver. 1848 spielte S. eine f\u00fchrende Rolle. 1861\u201367 geh\u00f6rte er dem o\u00f6. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Pr\u00e4s. der O\u00f6. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n", "source": 193}}, {"model": "metainfo.text", "pk": 47581, "fields": {"kind": 131, "text": "St\u00fclz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23.\u00a02. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28.\u00a06. 1872; r\u00f6m.-kath.", "source": 193}}, {"model": "metainfo.text", "pk": 47584, "fields": {"kind": 130, "text": "Sohn von Josef Maria S. (s.\u00a0d.). \u2013 Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Sch\u00fcler O.\u00a0Redlichs (s.\u00a0d.) Geschichte an der Univ. Wien, 1910 Dr.\u00a0phil., und absolv. 1909\u201311 als ao.\u00a0Mitgl. den Kurs des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung. Noch im Juli 1911 ging er als Mitarb. an der von der Heidelberger Akad. der Wiss. und der Bad. Hist. Komm. vorbereiteten Ausg. der bad. Weist\u00fcmer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am \u00d6sterr. Hist. Inst. in Rom. Daneben war er 1913 nochmals f\u00fcr die Bad. Hist. Komm. t\u00e4tig und ordnete das gr\u00e4fl. Douglassche Archiv auf Schlo\u00df Langenstein im Hegau. 1914 trat er als Konzeptsaspirant in das HHStA ein, wurde 1915 Konzeptspraktikant und 1921 Staatsarchivar. Er ordnete das Konsulatsarchiv in Belgrad (1916), die Archive in Jaidhof bei Gf\u00f6hl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. \u00fcber die Urkundenabt. und leitete schlie\u00dfl. die Hss.abt. im HHStA. 1921\u201322 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. \u201eHistorischen Bl\u00e4tter\u201c, ab 1928 Mitgl. des Gesch\u00e4ftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien f\u00fcr Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao.\u00a0Prof. Als Medi\u00e4vist befa\u00dfte er sich mit Fragen der \u00f6sterr. Diplomatik, einschlie\u00dfl. der Kanzlei- und der Stadtb\u00fccher, sowie bes. mit Verfassungsgeschichte. Ab 1923 fungierte er als Dir. des Archivs der Stadt Wien und machte dieses zu einer anerkannten wiss. Einrichtung: Eine neue Archivordnung, die u.\u00a0a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30\u00a0Jahren umfa\u00dfte, trat 1924 in Kraft. Archivpraktika f\u00fcr Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Gl\u00f6ckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Au\u00dfenwirkung des Archivs ebenso wie die F\u00f6rderung der Geschichtsforschung, etwa durch die Begr\u00fcndung der \u201eStudien aus dem Archiv der Stadt Wien\u201c oder durch die Anregung zur Ver\u00f6ff. der \u201eUrkunden aus Wiener Grundb\u00fcchern zur Geschichte der Wiener Juden im Mittelalter\u201c (1931) durch L.\u00a0Sailer (s.\u00a0d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. f\u00fcr Geschichte der Stadt Wien gew\u00e4hlt worden, 1924\u201325 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gr\u00fcnden zur\u00fcck. 1926 Vizepr\u00e4s., begr\u00fcndete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n", "source": 192}}, {"model": "metainfo.text", "pk": 47585, "fields": {"kind": 131, "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21.\u00a010. 1887; gest. ebd., 19.\u00a02. 1934; evang.\u00a0AB.", "source": 192}}, {"model": "metainfo.text", "pk": 47594, "fields": {"kind": 130, "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24.\u00a04. 1879; gest. ebd., 4.\u00a02. 1952) verehel. Nach Absolv. des M\u00e4dchengymn. des Wr. Ver. f\u00fcr erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr.\u00a0phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtspr\u00fcfung f\u00fcr Mittelschulen ab. I.\u00a0d.\u00a0F. unterrichtete S. an einem Wr. M\u00e4dchengymn., befa\u00dfte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vortr\u00e4ge f\u00fcr die Vereinigung \u00f6sterr. Hochschuldoz. Athen\u00e4um. Ihr Engagement im Bereich der Frauenbildung und \u2013f\u00f6rderung f\u00fchrte 1907 zur Gr\u00fcndung eines M\u00e4dchengymn. in Wien\u00a02. Auf Grund ihres Strebens nach gediegener Berufsausbildung f\u00fcr begabte M\u00e4dchen aus \u00e4rmerem Haus gr\u00fcndete sie 1907 gem. mit Olly Schwarz einen Ver. f\u00fcr h\u00f6here kommerzielle Frauenbildung und die erste Handelsakad. f\u00fcr M\u00e4dchen in der Sch\u00f6nborngasse (Wien\u00a08), deren Leitung sie als erste Schuldir., die in den Staatsdienst \u00fcbernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. f\u00fcr ihre T\u00e4tigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n", "source": 190}}, {"model": "metainfo.text", "pk": 47595, "fields": {"kind": 131, "text": "Steindler Olga, verehel. Ehrenhaft-S., P\u00e4dagogin und Physikerin. Geb. Wien, 28.\u00a010. 1879; gest. ebd., 21.\u00a012. 1933.", "source": 190}}, {"model": "metainfo.text", "pk": 47596, "fields": {"kind": 130, "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s.\u00a0d.). S. besuchte 1902\u201310 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L.\u00a0M. Hartmann, W.\u00a0Kubitschek, Bormann (alle s.\u00a0d.) und Adolf Wilhelm; 1914 Dr.\u00a0phil. Nach Milit\u00e4rdienst 1915\u201317 habil. er sich 1919 an der Univ. Wien. 1927\u201329 war S. an der R\u00f6m.-German. Komm. des Dt. Arch\u00e4olog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der r\u00f6m. Kaiserzeit besch\u00e4ftigt, danach Doz. f\u00fcr Alte Geschichte an der Univ. Berlin, 1931\u201332 ao.\u00a0Prof. f\u00fcr alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G.\u00a0Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, k\u00fcndigte seine Stellung und verlie\u00df Dtld. 1932\u201334 war er, unterst\u00fctzt vom belg. Byzantinisten Henri Gr\u00e9goire, Gastprof. an der Univ. Br\u00fcssel. Nach der \u201eMachtergreifung\u201c Hitlers (s.\u00a0d.) im J\u00e4nner 1933 publ. er nur mehr auf Franz\u00f6s.; 1934\u201335 war er Gastprof. an der Catholic Univ. of America (Washington, D.\u00a0C.), 1937 wurde f\u00fcr ihn ein Lehrstuhl f\u00fcr byzantin. Geschichte an der Univ. L\u00f6wen eingerichtet. 1940 mu\u00dfte S. jedoch Belgien mit seiner Frau Jeanne (Eheschlie\u00dfung 1923) unter falschem Namen (M.\u00a0Sernet) verlassen. Trotz der \u00e4u\u00dferl. bedr\u00e4ngten Situation und dem st\u00e4ndigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd.\u00a0seiner \u201eHistoire de l\u2019\u00c9mpire byzantin\u201c, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verh\u00e4ltnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. t\u00e4tig.\n\n", "source": 191}}, {"model": "metainfo.text", "pk": 47597, "fields": {"kind": 131, "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19.\u00a09. 1891; gest. Freiburg (Fribourg, Schweiz), 25.\u00a02. 1945; aus j\u00fcd. Familie, ab 1932 r\u00f6m.-kath.", "source": 191}}, {"model": "metainfo.text", "pk": 47602, "fields": {"kind": 130, "text": "Sohn eines Kleinbauern. S. besuchte 1858\u201366 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur S\u00fcdarmee eingezogen und erhielt nach der Schlacht bei Custoza die silberne Tapferkeitsmedaille. Da er Priester werden wollte, desertierte er und kam 1867 in die USA. Zun\u00e4chst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des sp\u00e4teren Bischofs der Di\u00f6zese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der franz\u00f6s. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph\u00a0I. (s.\u00a0d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der gro\u00dfteils aus Dt.b\u00f6hmen und -ungarn bestehenden Gmd. und ab 1891 als Di\u00f6zesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Di\u00f6zese Lead, S.\u00a0D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in f\u00fcnf Jahren 23 neue Kirchen und Pfarreien. Durch \u00fcberm\u00e4\u00dfige Arbeit erkrankt, resignierte S. 1909 auf seine Di\u00f6zese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n", "source": 189}}, {"model": "metainfo.text", "pk": 47603, "fields": {"kind": 131, "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12.\u00a05. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15.\u00a012. 1915; r\u00f6m.-kath.", "source": 189}}, {"model": "metainfo.text", "pk": 47614, "fields": {"kind": 130, "text": "\u2013 Sohn eines Grenzers. \u0160. wurde 1870 aus der Rgt.-Milit\u00e4rschule in Otocac als Korporal zum Grenz-IR 1 ausgemustert; 1874 Lt. beim IR 51. 1882 nahm er als Rgt.-Adj. an der Niederschlagung der Unruhen in Bosnien-Herzegowina teil. 1897 Mjr. und Baon.-, 1899\u20131904 Erg\u00e4nzungsbez.kmdt. im bosn.- herzegowin. IR 4, um dessen Personalaufstockung er sich sehr verdient machte; 1903 Obstlt., 1906 Obst. und 1907 Kmdt. des Linien-IR 2. 1909 erhielt \u0160. das Kmdo. des Gendarmeriekorps f\u00fcr Bosnien-Herzegowina, 1911 GM. Ab September 1914 f\u00fchrte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Vi\u0161egrad aus die Verteidigung S\u00fcdostbosniens. Ende M\u00e4rz 1915 \u00fcbernahm er dort das Kmdo. der neu errichteten 59. Inf.-Truppen-Div., die im Juli 1915 an die Isonzofront verlegt wurde. Im September 1915 nach Syrmien r\u00fcckverlegt, wurde \u0160. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 \u00fcbernahm er das Kmdo. der 42. Honv\u00e9d-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zur\u00fcckgedr\u00e4ngt wurde. Im M\u00e4rz 1917 dem Gen.-Insp. der Fu\u00dftruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde \u0160. im Juli 1918 beurlaubt, knapp vor der Ver\u00f6ff. des Oktobermanifests jedoch im Oktober 1918 als Milit\u00e4rkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die s\u00fcdslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte \u0160. seine letzten Lebensjahre auf seinem Gut in Cluj.\n", "source": 188}}, {"model": "metainfo.text", "pk": 47615, "fields": {"kind": 131, "text": "\u0160njaric\u00a0Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rum\u00e4nien), 28. 1. 1930.", "source": 188}}, {"model": "metainfo.text", "pk": 47626, "fields": {"kind": 130, "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden K\u00fcnste, wo er bis 1907/08 (u. a. bei J\u00f3zef v. Mehoffer, s. d., und Leon Wycz\u00f3lkowski) Malerei stud., 1902\u201303 bildete er sich an der Kunstgewerbeschule in Wien weiter, 1904 unternahm er Stud.reisen durch Italien und Frankreich. S., der sich in Zakopane von einer Tuberkuloseerkrankung erholen mu\u00dfte, verbrachte den Winter 1904/5 bei den Huzulen, wo er Landschafts- und Genrebilder aus dem Leben der Goralen malte. In der Folge zeichnete er Karikaturen f\u00fcr die satir. Z. \u201eChochol\u201c (1902) und \u201eLiberum Veto\u201c (1903\u201305), 1904 ver\u00f6ff. er die Mappe \u201e30 Karikaturen\u201c, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. K\u00fcnstler \u201eSztuka\u201c und im selben Jahr Mitarbeiter des ber\u00fchmten Krakauer Kabaretts \u201eZielony Balonik\u201c, f\u00fcr das er die Inneneinrichtung des Caf\u00e9s und Einladungen entwarf. W\u00e4hrend dieser Zeit fertigte er auch Portr\u00e4ts, Karikaturen von bekannten K\u00fcnstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in \u00d6l mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) lie\u00df er sich im selben Jahr in Lemberg nieder. W\u00e4hrend seiner Milit\u00e4rdienstzeit (1914\u201317)zeichnete er Portr\u00e4ts und Karikaturen bedeutender Pers\u00f6nlichkeiten des Milit\u00e4rwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920\u201330 an der dortigen Schule f\u00fcr Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem \u0152uvre der hist. und religi\u00f6sen Thematik zuwandte; 1918\u201319 zeichnete er Karikaturen f\u00fcr die Z. \u201eSzczutek\u201c und 1920 f\u00fcr \u201eRzeczpospolita\u201c; ab 1930 lehrte er an der Akad. der bildenden K\u00fcnste in Krakau (Krak\u00f3w); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein \u0152uvre fand in zahlreichen in- und ausl\u00e4nd. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, M\u00fcnchen und Rom).\n", "source": 187}}, {"model": "metainfo.text", "pk": 47627, "fields": {"kind": 131, "text": "Sichulski\u00a0Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lw\u00f3w, Galizien (L\u2019viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; r\u00f6m.-kath.", "source": 187}}, {"model": "metainfo.text", "pk": 47630, "fields": {"kind": 130, "text": "Sohn eines Arztes und Hptm. der Sch\u00fctzenkompanie Ulten. S., der nach dem Willen seines Vaters urspr\u00fcngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden K\u00fcnste in M\u00fcnchen, wo er auch Privatunterricht nahm; anschlie\u00dfend \u00fcbersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. z\u00e4hlte die sp\u00e4tere dt. Kn. Auguste Viktoria zu seinen Sch\u00fclerinnen). 1889 geh\u00f6rte er zu den Gr\u00fcndungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s \u0152uvre umfa\u00dft vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurg\u00e4sten gro\u00dfen Anklang; seine Bedeutung liegt aber v. a. in der exakten Wiedergabe der damaligen topograph. Gegebenheiten, wodurch es ihm gelang, ein Zeugnis der dortigen Bausubstanz um 1900 f\u00fcr die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachla\u00df bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum pr\u00e4sentiert.\n", "source": 186}}, {"model": "metainfo.text", "pk": 47631, "fields": {"kind": 131, "text": "Settari\u00a0Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905.", "source": 186}}, {"model": "metainfo.text", "pk": 47634, "fields": {"kind": 130, "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869\u201373 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und N\u00d6 ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rath\u00e4user in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repr\u00e4sentationsbed\u00fcrfnis seiner Zeit stark entgegen kamen, pr\u00e4gte v. a. das Stadtbild von St. P\u00f6lten, wo er erstmals 1883 mit dem neobarock gepr\u00e4gten Hauptgeb\u00e4ude der Sparkasse in Erscheinung trat. Es folgten weitere Auftr\u00e4ge f\u00fcr kommunale Bauten und Amtsgeb\u00e4ude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgeb\u00e4udes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Geb\u00e4uden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begr\u00fcntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Sch\u00f6nbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgef\u00fchrt wurde. S. \u2013 auch im privaten Wohnbau t\u00e4tig \u2013 setzte in seinem \u0152uvre \u201edie Formimpulse des strengen Historismus unter dem Einflu\u00df der neueren Entwicklungen in einen dekorativen Repr\u00e4sentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verf\u00fcgung stehenden Formenapparates f\u00fcr zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden lie\u00df\u201c (W. Kitlitschka).\n", "source": 185}}, {"model": "metainfo.text", "pk": 47635, "fields": {"kind": 131, "text": "Sehnal\u00a0Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910.", "source": 185}}, {"model": "metainfo.text", "pk": 47640, "fields": {"kind": 130, "text": "Sohn des Badener Gmd.Sekret\u00e4rs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861\u201365 das Gymn. im Stift Heiligenkreuz, wo er auch S\u00e4ngerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) \u00fcbersiedelte die Familie (S. hatte zw\u00f6lf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verlie\u00df er den Orden auf Anraten seiner Oberen, die w\u00e4hrend des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 w\u00e4hrend einer Erkrankung den zweiten Vornamen \u201eMaria\u201c an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (N\u00d6) \u2013 wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als \u201ePapst von Marchegg\u201c bezeichnet wurde \u2013, 1879\u201386 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Gro\u00dfstadt kennen und antwortete 1882 mit der Gr\u00fcndung des \u201eKatholischen Lehrlings-Vereins\u201c, rief 1886 das \u201eLehrlingsasyl\u201c sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. \u201eDas christliche Handwerk\u201c (Vorl\u00e4ufer der jetzt noch erscheinenden \u201eKalasantiner-Bl\u00e4tter\u201c) heraus, 1889 baute er in F\u00fcnfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gr\u00fcndung der \u201eKongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz\u201c (\u201eKalasantiner\u201c), der ersten \u00f6sterr. M\u00e4nnerkongregation, die sich der Arbeiter und v. a. der Lehrlinge annehmen wollte. Diesem Auftrag versuchte S. durch Erziehung der Kinder und der Lehrlingsjugend in Horten, Heimen und Oratorien sowie durch Erteilung des Religionsunterrichtes in Grund- und Berufsschulen gerecht zu werden. Die Gemeinschaft sollte dar\u00fcber hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken \u2013 sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch \u00dcbernahme von Pfarren in Arbeitervierteln der St\u00e4dte. Weitere begleitende Gr\u00fcndungen waren: Marian. Arbeitersodalit\u00e4t, Herz Jesu-Arbeiter-Oratorium, Frauenwohlt\u00e4tigkeitsver., Mariazellerver. und Muttergottesbund. 1897\u20131926 wurden weitere elf Niederlassungen der Kongregation (u. a. auch 1902 in Budapest) errichtet. Sein soziales Engagement hat S. auch in die Tagespolitik eingreifen lassen: Er forderte z. B. die Arbeiter zur Gr\u00fcndung von Selbstschutzund Bildungsverb\u00e4nden auf und unterst\u00fctzte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder \u00f6ff. Kontroverse zur\u00fcck. Kardinal Piffl (s. d.), der ihn freundschaftl. unterst\u00fctzte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den \u201eArbeiterapostel\u201c. Dem 1949 er\u00f6ffneten Seligsprechungsproze\u00df folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.\u2019 kirchl. Gedenktag ist der 17. September.\n", "source": 181}}, {"model": "metainfo.text", "pk": 47641, "fields": {"kind": 131, "text": "Schwartz\u00a0\u2014 P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (N\u00d6), 28. 2. 1852; gest. Wien, 15. 9. 1929.", "source": 181}}, {"model": "metainfo.text", "pk": 47642, "fields": {"kind": 130, "text": "Sohn eines M\u00fcllers. Nach dem Besuch des Gymn. in Olm\u00fctz (Olomouc) 1854\u201362 stud. S. von 1862\u201367 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtspr\u00fcfung ablegte. Ab 1865 war er Mitgl. des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschlo\u00df. 1867 trat S. als Stud.Pr\u00e4fekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (\u017datec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zur\u00fcck, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Au\u00dfer als Gymn.Lehrer wirkte S. auch als Fachpr\u00fcfer an der Konsularakad. Wiss. besch\u00e4ftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und \u00fcbersichtl. Darstellungsweise auszeichnen.\n", "source": 182}}, {"model": "metainfo.text", "pk": 47643, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, M\u00e4hren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903.", "source": 182}}, {"model": "metainfo.text", "pk": 47644, "fields": {"kind": 130, "text": "Sohn des Zwirnh\u00e4ndlers Franz Sales S.; Bruder von Sebastian S., Onkel des Priesters Josef S., des Caspar und des Franz Sales S. (alle s. d.). S. besuchte das Gymn. in Linz und Kremsm\u00fcnster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und er\u00f6ffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er au\u00dferdem eine F\u00e4rberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige H\u00e4user in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den o\u00f6. Landtag gew\u00e4hlt, dem er dann auch 1861\u201379 angeh\u00f6ren sollte und in dem er als Obmann-Stellv. des Stra\u00dfenausschusses fungierte. 1864\u201373 Bgm. von Freistadt, erwarb er sich Verdienste um das Kommunalwesen, etwa durch die Errichtung der Stadtsparkasse (1866), deren 1. Dion.Vorstand er wurde. Bes. Augenmerk legte er auf die Entwicklung des st\u00e4dt. Schulwesens, zu dessen Entwicklung er ma\u00dfgebl. beitrug. So initiierte S. die Errichtung des 1867 er\u00f6ffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. gef\u00fchrt werden durfte, und richtete ferner, nach dem R\u00fcckzug der Piaristen, 1871 eine Knabenvolksschule ein. Au\u00dferdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freist\u00e4dter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n", "source": 183}}, {"model": "metainfo.text", "pk": 47645, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Kaspar, Politiker und Kaufmann. Geb. Lasberg (O\u00d6), 6. 11. 1811; gest. Freistadt (O\u00d6), 7. 5. 1879.", "source": 183}}, {"model": "metainfo.text", "pk": 47648, "fields": {"kind": 130, "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Nei\u00dfe stud. S. 1834\u201336 in Breslau (Wroclaw) und 1836\u201337 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Nei\u00dfe, 1839 in Breslau und dort im selben Jahr Referendar. S. war befreundet mit den schles. Dichtern Joseph v. Eichendorff und Friedrich v. Sallet und bereits 1836 in Berlin Mitgl. des Literatenver. \u201eDer Tunnel \u00fcber der Spree\u201c und des j\u00fcngeren Berliner Dichterver. Er bet\u00e4tigte sich journalist. vorwiegend als Theaterkritiker (\u201eTheater-Figaro\u201c, \u201eBreslauer Zeitung\u201c 1840ff.), war nach seiner R\u00fcckkehr nach Breslau 1840\u201348 ausschlie\u00dfl. f\u00fcr die Presse t\u00e4tig und wurde Mitarbeiter auch ausw\u00e4rtiger Z. (u. a. \u201eBerliner Figaro\u201c, \u201eBerliner Modenspiegel\u201c, \u201eDer Gesellschafter\u201c, \u201eDer Pilot\u201c). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des \u201eBreslauer Volks-Kalenders\u201c (bzw. \u201eDeutscher Volkskalender\u201c). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. \u201eBestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844\u201c (60 Aufs\u00e4tze, 1844), in der er die M\u00f6glichkeiten journalist. Arbeit nach Ma\u00dfgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als f\u00fcr \u00f6sterr. Verh\u00e4ltnisse bes. geeigneten Ztg.Red. aus, der geschickt zwischen den Anliegen der Autoren und der Forderungen der Zensur im Sinne Sedlnitzkys v. Choltitz (s. d.) zu vermitteln verstand. Nach Wien geholt, \u00fcbernahm S., der von Hebbel (s. d.) und Stifter gesch\u00e4tzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer T\u00e4tigkeit in der Red. der \u201ePresse\u201c, 1849, ab 1850 als verantwortl. Red. die \u201eWiener Zeitung\u201c, die in der Zeit seiner T\u00e4tigkeit um die zus\u00e4tzl. Organe \u201eAbendblatt\u201c (1852\u201357), \u201e\u00d6sterreichische Bl\u00e4tter f\u00fcr Literatur und Kunst\u201c (1852\u201357) und die \u201e\u00d6sterreichische Wochenschrift f\u00fcr Wissenschaft, Kunst und \u00f6ffentliches Leben\u201c (1863\u201365) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausl\u00e4nd. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verl\u00e4\u00dflichkeit gesch\u00e4tzt war. Zuletzt lebte er v\u00f6llig erblindet und zur\u00fcckgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anf\u00e4ngl. Bankbeamter, trat ebenfalls als Journalist hervor, sp\u00e4ter als Autor einiger Lustspiele und Schw\u00e4nke (\u201eDer Heiratsvermittler\u201c, 1886, \u201eSch\u00f6nheitspreis und Liebespreis\u201c, 1893, usw.).\n", "source": 184}}, {"model": "metainfo.text", "pk": 47649, "fields": {"kind": 131, "text": "Schweitzer\u00a0Leopold Albrecht, Journalist und Schriftsteller. Geb. Nei\u00dfe, Preu\u00dfen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (N\u00d6), 9. 7. 1896.", "source": 184}}, {"model": "metainfo.text", "pk": 47650, "fields": {"kind": 130, "text": "Nach absolv. Schulbesuch arbeitete S. zun\u00e4chst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu \u00fcbernehmen. Polit. engagiert, geh\u00f6rte er 1882\u201384 sowie 1894\u201397 dem Badener Gmd.Rat an, wo er sich v. a. f\u00fcr die Anliegen der Hauerschaft einsetzte. Bes. Verdienste um seine Heimatstadt erwarb sich S., der nach dem Tod seiner ersten Frau (1888) im selben Jahr Maria, geb. Gleichweit, ehel., bei der Bek\u00e4mpfung der Reblaus, die 1882 auch in Baden zu w\u00fcten begann. Durch das Aufpfropfen der Edelreben auf gegen den Sch\u00e4dling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weing\u00e4rten mit gro\u00dfem Erfolg angewandt hatte, konnten die Badener Weinkulturen in relativ kurzer Zeit gerettet werden. Auf Stud.Reisen nach Ungarn 1889 und 1896, in die Unterstmk. 1891 und 1898 sowie nach Kroatien 1896 verbesserte S. seine Kenntnisse, die er in Baden erfolgreich u. a. f\u00fcr seine Rebschule, in der er die angef\u00fchrte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner gro\u00dfen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom n\u00f6. Landesausschu\u00df als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Sch\u00e4dling zu unterweisen. F\u00fcr seine erfolgreiche T\u00e4tigkeit erhielt er von der Stadt Baden sowie vom Ackerbaumin. Anerkennungspreise. S., allen Neuerungen auf dem Gebiet des Weinbaus stets aufgeschlossen, entwickelte 1895 den ersten Weingartenpflug und soll 1897 die bis dahin unbekannte Neuburger Rebe eingef\u00fchrt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gr\u00fcndete er 1887 den Badener Rinderzuchtver. und besa\u00df eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte \u2013 er war Mitgl. bei mehreren Ver. \u2013, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinsch\u00e4tzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n", "source": 180}}, {"model": "metainfo.text", "pk": 47651, "fields": {"kind": 131, "text": "Schwabl\u00a0Franz, Landwirt und Weinhauer. Geb. Baden (N\u00d6), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers.", "source": 180}}, {"model": "metainfo.text", "pk": 47660, "fields": {"kind": 130, "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871\u201377 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877\u201382 Park Orchester, Amsterdam, 1882\u201383 Parlow Orchester, Hamburg, 1883\u201384 kgl. Staatskapelle Dresden. 1884\u201391 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegr\u00fcndete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mu\u00dfte er diese Stelle jedoch Oktober 1902 krankheitshalber aufgeben und zog nach Kreuznach, wo er bereits vorher Sommerkurse geleitet hatte, und widmete sich der Komposition. 1903\u201304 spielte S. im Pittsburgh Symphony Orchestra, 1904\u201309 im Philadelphia Orchestra, 1910 im Orchester der New Yorker Metropolitan Opera. S., sowohl als Orchesterspieler wie als Solist ein Virtuose von hohem Rang, gab ein noch heute verwendetes Hilfswerk f\u00fcr die Ausf\u00fchrung von schwierigen Harfenstellen in den Opern Richard Wagners heraus und wirkte auch 1903 und 1906 bei den Wagnerauff. an der Covent Garden Opera London mit. Von seinen durchwegs der Harfe gewidmeten Salonst\u00fccken ist die Mazurka, op. 12, beliebt geblieben. 1890 Kammervirtuose des Hg. Ernst von Sachsen-Altenburg. Sein Bruder Heinrich S. (geb. Wien, 25. 11. 1867; gest. Boston, Mass., USA, 17. 4. 1913) stud. 1878\u201384 ebenfalls bei Anton Zamara am Wr. Konservatorium der Ges. der Musikfreunde, trat nach einer Saison beim Parlow Orchester, Hamburg, 1885 als 1. Harfenist ins Boston Symphony Orchestra ein und lehrte am Bostoner New England Conservatory. Er trat auch als Solist bei den Musikfestivals in Worcester (Mass.) sowie in Paris und London auf. S.s Sohn Joseph E. S. (geb. Leipzig, Sachsen/Deutschland, 19. 5. 1886; gest. Los Angeles, Ca., USA, 9. 12. 1938) stud. bei seinem Vater, 1900\u201301 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904\u201305 bzw. 1908\u201309 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911\u201313 Harfenist einer Opernges. in Boston, lehrte er 1915\u201320 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n", "source": 179}}, {"model": "metainfo.text", "pk": 47661, "fields": {"kind": 131, "text": "Schu\u00ebcker (eigentl. Schu\u00f6cker)\u00a0Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preu\u00dfen (Bad Kreuznach, Deutschland), 9. 11. 1911.", "source": 179}}, {"model": "metainfo.text", "pk": 47662, "fields": {"kind": 130, "text": "Sohn von Norbert Michael, Bruder von Norbert, Neffe von Anton S. (alle s. d.). Bedingt durch die zahlreichen Reisen seines Vaters, lernte S. bereits in fr\u00fcher Jugend zahlreiche St\u00e4dte Europas kennen. Seine ersten k\u00fcnstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der \u00dcbersiedlung seines Vaters nach Paris besuchte S. 1854/55 die Modellierklasse der Pariser Akad. Aber schon kurz darauf verlegte der Vater seinen Wohnsitz nach Frankfurt a. Main, wo S. 1855/56 vorerst Privatunterricht in Bildhauerei von dem mit seinem Vater befreundeten Eduard Schmidt von der Launitz erhielt. 1856\u201358 stud. er am St\u00e4del\u2019schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858\u201361 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 \u00fcbersiedelte er nach Wien, 1863\u201365 hielt er sich, finanziert durch ein Rom-Stipendium, in Italien auf, 1866 in Paris. Ab 1867 wieder in Wien, arbeitete S. als Mitarbeiter bei den Bildhauern Victor Tilgner und Rudolf Weyr mit, 1894\u20131908 war er Ass. an der Akad. der bildenden K\u00fcnste in Wien, wo er zeitweise die Klasse f\u00fcr Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-B\u00fcste f\u00fcr das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisb\u00fcste des Nikolaus Joseph v. Jacquin f\u00fcr die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) f\u00fcr den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschm\u00fcckung des Naturhist. Mus. in Wien mit.\n", "source": 178}}, {"model": "metainfo.text", "pk": 47663, "fields": {"kind": 131, "text": "Schr\u00f6dl\u00a0Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908.", "source": 178}}, {"model": "metainfo.text", "pk": 47672, "fields": {"kind": 130, "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olm\u00fctz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Br\u00fcnn (Brno) Maschinenbau, 1898\u20131903 an der Bauing.Schule (1905 Staatspr\u00fcfung). Zun\u00e4chst an der Br\u00fcnner Hochschule f\u00fcr einige Monate als Ass. t\u00e4tig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen gr\u00f6\u00dferen Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919\u201322), betraut. Als Baurat \u00fcbernahm er 1920 die selbst\u00e4ndige Leitung der Bauabt., die f\u00fcr die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. ma\u00dfgebl. an den von Peter Behrens und Alexander Popp geplanten Neubauten bei der Tabakfabrik in Linz (1929ff.) sowie an der Errichtung zahlreicher, in der Nachkriegszeit geschaffener Wohnhausanlagen beteiligt. Daneben publ. S.\u00fcber die Baut\u00e4tigkeit der \u00d6sterr. Tabakregie. 1930 HR, 1947 i. R.\n", "source": 177}}, {"model": "metainfo.text", "pk": 47673, "fields": {"kind": 131, "text": "Schreyer\u00a0Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravic\u00ed, M\u00e4hren (Bridlicn\u00e1, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950.", "source": 177}}, {"model": "metainfo.text", "pk": 47676, "fields": {"kind": 130, "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840\u201341 dort Med., ab 1841 an der Univ. Wien, wo er 1845 zum Dr. med. prom. wurde. Nach weiterer chirurg. Ausbildung wirkte er am Provinzialstrafhaus in Wien, ab 1856 am Filialspital des Allg. Krankenhauses in Wien II., zuletzt als dessen prov. Vorstand, ab 1858 als Primarius der IV. med. Abt. am Allg. Krankenhaus. S. machte sich um die Verwendung der 1853 in Schottland entwickelten Subkutanspritze zur Einf\u00fchrung von Medikamenten bei der Schmerzbehandlung (Injektion) verdient und stellte diese, erst in den 70er Jahren allg. angewendete Methode sowie seine Erfahrungen damit schon 1861 vor. Auch begann er sich fr\u00fch mit dem Einflu\u00df der Haft auf die Entstehung von Geistesst\u00f6rungen bei Str\u00e4flingen zu besch\u00e4ftigen. An seiner Klinik betrieb der ab 1878 dort t\u00e4tige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882\u201385 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n", "source": 175}}, {"model": "metainfo.text", "pk": 47677, "fields": {"kind": 131, "text": "Scholz\u00a0Franz, Mediziner. Geb. Moldau, B\u00f6hmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902.", "source": 175}}, {"model": "metainfo.text", "pk": 47678, "fields": {"kind": 130, "text": "Sohn des Kaspar Schram(m)el (geb. H\u00f6rmanns b. Litschau/Litschau, N\u00d6, 6. 1. 1811; gest. Langenzersdorf, N\u00d6, 20. 12. 1895) und (Eheschlie\u00dfung 1853) der Volkss\u00e4ngerin Aloisia Ernst (1829\u20131881), Bruder des Joseph S. (geb.Ottakring, N\u00d6/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833\u20131905), der, 1866 als Invalide aus dem Milit\u00e4rdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon fr\u00fch in Dorfkapellen als Klarinettist t\u00e4tig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkst\u00fcml.-musikal. Wirtshausproduktionen. S. wirkte ebenso wie sein Bruder Joseph schon als Kind bei den Auftritten des Vaters als Geiger mit (1861 gilt als Beginn ihrer \u00f6ff. T\u00e4tigkeit), doch erhielten beide \u2013 ein f\u00fcr ihre Verh\u00e4ltnisse ungew\u00f6hnl. Schritt \u2013 auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862\u201363 Violinsch\u00fcler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschlu\u00df (aus ungekl\u00e4rten Ursachen) 1866 Karl Hei\u00dflers, Joseph 1865/66 ebenfalls Sch\u00fcler Hellmesbergers. Nach dem Milit\u00e4rdienst (1866\u201372, 1870 Korporal) spielte S. in einigen \u201eNationalquartetten\u201c und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in gro\u00dfen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gr\u00fcndete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient \u2013 1869\u201371 \u2013 bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett (\u201eNu\u00dfdorfer Terzett\u201c), in dem Joseph die 1., er selbst die 2. Geige und zun\u00e4chst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Br\u00fcder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. \u201epicks\u00fc\u00dfes H\u00f6lzl\u201c) Georg D\u00e4nzer (geb.Hernals, N\u00d6/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett \u201eGebr. Schrammel, D\u00e4nzer und Strohmayer\u201c, das in dieser Besetzung bis zum Ausscheiden D\u00e4nzers Ende 1891 \u2013 Strohmayer verlie\u00df das Quartett Ende 1892 \u2013 verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schlie\u00dfl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die urspr\u00fcngl. Quartettbesetzung zur\u00fcckgegriffen. Im Wr. Musikleben spielten die \u201eSchrammeln\u201c eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu h\u00f6ren, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit \u201eNaturs\u00e4ngern\u201c, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkss\u00e4nger lie\u00dfen diese Vortr\u00e4ge zeitweise verbieten, weswegen die Br\u00fcder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. \u00c4u\u00dferst erfolgreiche Gastspielreisen f\u00fchrten das Quartett 1888 und 1889 durch Deutschland, der letzte H\u00f6hepunkt waren die t\u00e4gl. Produktionen anl\u00e4\u00dfl. der Internationalen Ausst. f\u00fcr Musik- und Theaterwesen in Wien, 1892, doch mu\u00dfte sich S. wegen seiner zunehmenden Herzkrankheit dann zur\u00fcckziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterf\u00fchrte, v\u00f6llig mittellos. Als Komponist schlo\u00df S. an seine Vorl\u00e4ufer an (so gab er 1888 3 He. \u201eAlte oesterreichische Volksmelodien \u2026\u201c heraus), seine (zu etwa 1/3 gedruckten) \u00fcber 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und M\u00e4rsche (u. a. \u201eWien bleibt Wien\u201c, 1886), Josephs bekannteste Komposition ist das Lied \u201eVindobona, du herrliche Stadt\u201c. Die \u201eSchrammeln\u201c und \u201eSchrammelmusik\u201c \u201eblieben als Begriffe f\u00fcr ein volkst\u00fcml. Ensemble und ein entsprechendes Musizieren erhalten\u201c (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorl\u00e4ufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. F\u00e4higkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch h\u00f6chste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strau\u00df.\n", "source": 176}}, {"model": "metainfo.text", "pk": 47679, "fields": {"kind": 131, "text": "Schrammel\u00a0Johann, Musiker und Komponist. Geb. Neulerchenfeld, N\u00d6 (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893.", "source": 176}}, {"model": "metainfo.text", "pk": 47684, "fields": {"kind": 130, "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine fr\u00fche Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826\u201329 an der Univ. Graz Jus, 1829 Dr. jur., und trat 1834 bei der Hof- und Kammerprokuratur als Konzeptspraktikant ein. 1836 wurde er zur Kammerprokuratur nach Lemberg (L\u2019viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) t\u00e4tig war. 1847 erfolgte seine Versetzung als Landrat zum Gef\u00e4llen-Bez.Gericht bzw. Landrecht in Tarn\u00f3w. W\u00e4hrend eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. f\u00fcr den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschu\u00df mit, f\u00fcr den er auch als Referent fungierte. Hier setzte er sich u. a. bes. f\u00fcr die Unabh\u00e4ngigkeit K\u00e4rntens ein. Weiters war S. Mitgl. der Redaktionskomm. f\u00fcr die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem \u201eZentrumklub\u201c bei und geh\u00f6rte im Dezember dieses Jahres der Reichstagsdeputation nach Olm\u00fctz (Olomouc) und Prag an. Nach der Aufl\u00f6sung des Reichstags 1849 zog sich S. aus der Politik zur\u00fcck und wurde dem n\u00f6. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Pr\u00e4s. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenb\u00fcrgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepr\u00e4s. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepr\u00e4s. des Wr. Landesgerichts ernannt. Wegen seiner geschw\u00e4chten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n", "source": 174}}, {"model": "metainfo.text", "pk": 47685, "fields": {"kind": 131, "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884.", "source": 174}}, {"model": "metainfo.text", "pk": 47688, "fields": {"kind": 130, "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbi\u00df, Vater von B\u00e9la Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. B\u00e9la Frh. v. S.). Wuchs nach dem fr\u00fchen Tod seines Vaters im Hause von Karl Gf. Gatterburg, des zweiten Gatten seiner Mutter, auf. Nach Privatunterricht trat er 1820 beim 4. Chevauxlegersrgt. in die k. Armee ein, wurde 1822 Unterlt., 1831 Oblt., 1835 Rtm. 2., 1840 1. Kl., 1846 Mjr., 1848 Obstlt., 1849 Obst., 1851 GM, 1859 FML, 1863 pensioniert, 1865 jedoch als Gendarmeriegen.Insp. reaktiviert und 1868 als Gen. der Kav. ad honores endg\u00fcltig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich w\u00e4hrend des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab \u00fcberstellt und bew\u00e4hrte sich in der Folge an verschiedenen Standorten als Brigadier. Daneben war er 1856 dem Kg. v. Griechenland, 1858 Erzhg. Karl Ferdinand bei dessen Inspektionstour zu den Landeskontingenten des Dt. Bundes zugewiesen. Im italien. Feldzug von 1859 tat er sich als Division\u00e4r beim 3. Inf.Armeekorps durch umsichtige F\u00fchrung sowie pers\u00f6nl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode f\u00fchrte er dann die Administrationsgesch\u00e4fte des Landesgendarmeriekmdo. in Lemberg (L\u2019viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de V\u00e1sonyke\u00f6 (geb. Wien, 30. 10. 1805; gest. Verona, Venetien/Italien, 9. 1. 1851), 1855 Theresia Franziska Juliana Si(e)gel (geb. Wien, 11. 3. 1827; gest. Wien, 1. 5. 1857) und 1859 Anna Scheiger (geb. Wien, 7. 7. 1820; gest. G\u00f6rz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausl\u00e4nd. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes f\u00fcr die von ihm angeregte und nach dem Feldzug von 1848/49 durchgef\u00fchrte Reorganisation der Husarenrgt. verdient.\n", "source": 172}}, {"model": "metainfo.text", "pk": 47689, "fields": {"kind": 131, "text": "Sch\u00f6nberger (Schoenberger) (Carl Friedrich)\u00a0Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorder\u00f6sterr. (Deutschland), 30. 6. 1804; gest. G\u00f6rz, G\u00f6rz-Gradisca (Gorizia, Italien), 19. 12. 1880.", "source": 172}}, {"model": "metainfo.text", "pk": 47690, "fields": {"kind": 130, "text": "Stud. 1872\u201380 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), sp\u00e4ter auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Ru\u00dfland, Deutschland, \u00d6sterr. und Belgien. 1880\u201385 lehrte er in Wien, 1886 reiste er nach Schweden und anschlie\u00dfend nach London, wo er im J\u00e4nner 1887 erstmals als Solist auftrat und sich in der Folge niederlie\u00df. S. geh\u00f6rte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, sp\u00e4ter unternahm er Konzertreisen in Europa und England, auch als Dirigent einer reisenden Opernges. Er war mit der Tochter des engl. Gen. Sir Henry Tuson verheiratet.\n", "source": 173}}, {"model": "metainfo.text", "pk": 47691, "fields": {"kind": 131, "text": "Sch\u00f6nberger\u00a0Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Gro\u00dfbritannien), 9. 3. 1930.", "source": 173}}, {"model": "metainfo.text", "pk": 47694, "fields": {"kind": 130, "text": "Sohn des Vorigen, Bruder von Arthur S., Schwager von M. Hajek (beide s. d.); mos. Stud. nach Absolv. des Akadem. Gymn. in Wien ab 1882 an der dortigen Univ. Med., u. a. bei E. Albert, Billroth, E. W. v. Br\u00fccke sowie Nothnagel (alle s. d.), und wurde 1888 zum Dr. med. prom. Seine weitere Ausbildung erhielt er 1887/88 als Aspirant an der Klinik Nothnagel, ab 1889 bei Albert, wo er 1891\u201395 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien f\u00fcr Chirurgie und wurde 1907 Tit. ao., 1927 unbesoldeter ao. Prof. 1895/96 stand er der Chirurg. Abt. an der Wr. Allg. Poliklinik vor, kam 1896 als Primarius f\u00fcr Chirurgie an das K.-Franz-Josef-Spital, 1902 an das Wiedner Krankenhaus und trat 1934 i. R. S. gestaltete die von ihm geleiteten Abt. gem\u00e4\u00df den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und ver\u00f6ff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentz\u00fcndung bzw. -katarrh, v. a. aber nat\u00fcrl. chirurg. Problemen. Als einer der ersten besch\u00e4ftigte er sich mit der operativen Behandlung der akuten Blinddarmentz\u00fcndung, propagierte umfangreiche Resektionen bei Magen- und Zw\u00f6lffingerdarmgeschw\u00fcren, erarbeitete Vorbeugungsma\u00dfnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und besch\u00e4ftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besa\u00df spr\u00fchenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch \u00f6ff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des \u00d6sterr. Verdienstordens. Durch sein Bem\u00fchen um die Diagnostik der Blinddarmentz\u00fcndung und sein entschiedenes Eintreten in Theorie und Praxis f\u00fcr umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen pers\u00f6nl. Verh\u00e4ltnis zu seinem Bruder Arthur, das in zwei von dessen erz\u00e4hler. Werken (\u201eDer blinde Geronimo und sein Bruder\u201c, \u201eFlucht in die Finsternis\u201c) Niederschlag fand.\n", "source": 169}}, {"model": "metainfo.text", "pk": 47695, "fields": {"kind": 131, "text": "Schnitzler\u00a0Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939.", "source": 169}}, {"model": "metainfo.text", "pk": 47696, "fields": {"kind": 130, "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874\u201378 an der Univ. Wien Jus, 1881 Dr. jur. 1879 trat S. beim Landesgericht Wien in den Justizdienst, wurde 1885 Bez.Gerichtsadjunkt in Wolkersdorf, 1887 in Wien-Hietzing, 1891 Gerichtsadjunkt beim Wr. Landesgericht. 1896 wechselte S. zur Staatsanwaltschaft (Substitut in Korneuburg) und war ab 1897 Staatsanwalt in Steyr, 1902 in Krems, bis er 1903 ins Justizmin. berufen wurde, wo er, 1904 Sektionsrat, 1907 Titel und Charakter eines Min.Rates, 1909 Min.Rat, 1912 zum Sektionschef avancierte. S. war an den legislativen Arbeiten des Justizmin., insbes. auf den Gebieten der Strafrechts- und der Strafproze\u00dfreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees f\u00fcr die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wof\u00fcr er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verst\u00e4ndnis f\u00fcr die Bed\u00fcrfnisse der Milit\u00e4rverwaltung \u20131877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. \u2013 brachte es mit sich, da\u00df sein Rat von den milit\u00e4r. Stellen oft in Anspruch genommen wurde; f\u00fcr seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Milit\u00e4rstrafverfahrens (Milit\u00e4rstrafproze\u00dfordnung von 1912) erhielt er 1912 das Komturkreuz des Franz Joseph-Ordens mit dem Stern. Auch die zahlreichen Kriegsstrafgesetze sind unter seiner Mitwirkung zustande gekommen. In den Aussch\u00fcssen beider H\u00e4user des Reichsrates war er sehr oft als Vertreter des Justizmin. t\u00e4tig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatspr\u00fcfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n", "source": 170}}, {"model": "metainfo.text", "pk": 47697, "fields": {"kind": 131, "text": "Schober\u00a0Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917.", "source": 170}}, {"model": "metainfo.text", "pk": 47700, "fields": {"kind": 130, "text": "Sohn von (Heinrich) Eduard v. S. (s. u.), Neffe von (Wilhelm) Alexander, Cousin von Philipp Wilhelm d. J. und Paul Eduard v. S. (alle s. d.), Schwiegervater von Armand Dumreicher v. \u00d6sterreicher (s. d.); evang. HB. S., der als Mitsch\u00f6pfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Gro\u00dfhandlungshaus \u201eAlexander Schoeller\u201c (sp\u00e4ter \u201eSchoeller & Co.\u201c) nach Wien geholt, ab 1869 \u00f6ff. Gesellschafter. Er konnte seinen Onkel bei der Weiterf\u00fchrung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und M\u00fchlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von \u201eSchoeller & Co.\u201c nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) \u00fcberging, durch die Erzeugung von Blechen und Dr\u00e4hten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene H\u00fclsenfabrik zur Produktion von Kriegsmaterial begr\u00fcndet. Im Ternitzer Werk, der \u201eTernitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.\u201c, f\u00fchrte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gr\u00fcnden nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgel\u00f6st. Wegen eines schweren Nervenleidens mu\u00dfte er die Firmenleitung zuletzt fast g\u00e4nzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard \u00fcberlassen. S. bekleidete auch eine gro\u00dfe Zahl von Verwaltungsratsstellen bei gro\u00dfen \u00f6sterr. Ind.-, Banken- und Eisenbahnunternehmungen, wie etwa bei der Bodencreditanstalt in Wien und der K. Ferdinands-Nordbahn. Am Gmd.Leben der evang. Gmd. HB in Wien aktiv beteiligt, war S. 1865\u201389 Gmd.Vertreter, 1867\u201389 auch Presbyter und betreute \u2013 wie auch schon sein Onkel \u2013 deren Verm\u00f6gensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. D\u00fcren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, N\u00d6, 18. 1. 1879), war wie etl. andere Angeh\u00f6rige der Familie S. in der Zuckerind. t\u00e4tig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterst\u00fctzung seines Bruders Alexander pachtete er 1853 die Herrschaft Edel\u00e9ny bei Miskolcz und richtete die darauf befindl. Zuckerr\u00fcbenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu k\u00e4mpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n", "source": 171}}, {"model": "metainfo.text", "pk": 47701, "fields": {"kind": 131, "text": "Schoeller\u00a0Gustav Adolph von, Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier. Geb. D\u00fcren, Preu\u00dfen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889.", "source": 171}}, {"model": "metainfo.text", "pk": 47706, "fields": {"kind": 130, "text": "Sohn eines Sattlermeisters und Gastwirts. S., der bei seinem mus. und Zeichner. begabten Vater ersten Zeichenunterricht erhielt, sollte die Marinemusikschule in Pola (Pula) besuchen, wurde aber wegen einer Augenschw\u00e4che zur\u00fcckgestellt. Daraufhin ging er nach Wien und stud. hier 1880\u201382 an der Akad. der bildenden K\u00fcnste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender K\u00fcnstler, so z. B. f\u00fcr die Z. \u201e\u00dcber Land und Meer\u201c. Als der k\u00fcnstler. Erfolg etwas nachlie\u00df, kehrte S. nach Mies zur\u00fcck, \u00fcbersiedelte aber 1895 wieder nach M\u00fcnchen, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als \u201eSalome\u201c. Sein \u0152uvre umfa\u00dft neben Portr\u00e4ts von Schauspielerinnen und span. T\u00e4nzerinnen auch Bildnisse von Mitgl. des bayer. K\u00f6nigshauses. S., der Mitgl. der M\u00fcnchner K\u00fcnstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n", "source": 168}}, {"model": "metainfo.text", "pk": 47707, "fields": {"kind": 131, "text": "Schmutzler\u00a0Leopold, Maler. Geb. Mies, B\u00f6hmen (Str\u00edbro, Tschechien), 29. 3. 1864; gest. M\u00fcnchen, Bayern (Deutschland), 20. 6. 1940.", "source": 168}}, {"model": "metainfo.text", "pk": 47712, "fields": {"kind": 130, "text": "Sohn des P\u00e4chterehepaars Wolf und Sara S., mos.; nach \u00dcbersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromer\u00ed\u017e) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922\u201323 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterst\u00fctzt von seinem Onkel und sp\u00e4terem Manager, Leo Engel, 1925\u201326 an der Hochschule f\u00fcr Musik in Berlin (Sch\u00fcler von Hermann Weissenborn) fortsetzte. Nach dem Milit\u00e4rdienst in Rum\u00e4nien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Deb\u00fct als Rundfunks\u00e4nger am 29. 3. 1929 (Vasco da Gama in Meyerbeers \u201eDie Afrikanerin\u201c), weitere Rundfunkproduktionen (Hans in Smetanas \u201eDie verkaufte Braut\u201c, Lionel in Flotows \u201eMartha\u201c), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von au\u00dferordentlicher Popularit\u00e4t \u2013 seiner geringen K\u00f6rpergr\u00f6\u00dfe wegen allerdings nur innerhalb der zu dieser Zeit aufbl\u00fchenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in \u201eDer Liebesexpress\u201c (Urauff. Berlin 1931) folgte der unerh\u00f6rte Siegeszug von \u201eEin Lied geht um die Welt\u201c (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Macht\u00fcbernahme in Deutschland wurde S., schon vorher diffamiert und angefeindet, mit Auftrittsverbot belegt und Wien immer mehr zu seinem Lebenszentrum, ab 1935 sein Wohnort. Hier wurden die n\u00e4chsten Filme \u201eWenn du jung bist, geh\u00f6rt dir die Welt\u201c, 1933, \u201eEin Stern f\u00e4llt vom Himmel\u201c, 1935, auch engl. Version, und \u201eHeut ist der sch\u00f6nste Tag in meinem Leben\u201c, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Pal\u00e4stina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937\u20131938 (mit Auftritten u. a. in der New Yorker Carnegie Hall) hervorzuheben. 1938 wieder in Wien, gab er im Herbst desselben Jahres Konzerte in Belgien und lie\u00df sich 1939 in Br\u00fcssel nieder, wo er als Rudolf in Puccinis \u201eLa Boh\u00e8me\u201c einen seiner seltenen B\u00fchnenauftritte hatte. Infolge des Kriegsverlaufs mu\u00dfte S. 1940 aus Belgien fl\u00fcchten, hielt sich in S\u00fcdfrankreich auf und gelangte 1942 unter gro\u00dfen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf v\u00f6llig mittellos. S. wurde als S\u00e4ngertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine \u2013 allerdings kleine und nicht restlos durchgebildete \u2013 lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und h\u00f6chsten Lage und ein f\u00fcr S. charakterist. \u201ewehm\u00fctiges\u201c Timbre aus.\n", "source": 167}}, {"model": "metainfo.text", "pk": 47713, "fields": {"kind": 131, "text": "Schmidt,\u00a0\u2014 Joseph S\u00e4nger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rum\u00e4nien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Z\u00fcrich (Schweiz), 16. 11. 1942.", "source": 167}}, {"model": "metainfo.text", "pk": 47714, "fields": {"kind": 130, "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Kne\u017ena (Rychnov nad Kne\u017enou) und Olm\u00fctz (Olomouc) begann S. eine kaufm\u00e4nn. Lehre in Br\u00fcnn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Gro\u00dfhandel bet\u00e4tigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gew\u00e4hlt worden war, \u00fcbernahm S. die Leitung des v\u00e4terlichen Gesch\u00e4fts in Schildberg und sp\u00e4ter gem. mit seinem \u00e4lteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papierm\u00fchle (sie galt als die \u00e4lteste der \u00d6sterr.-ung. Monarchie) und Bleiche in Gro\u00dfullersdorf und betrieb dort nach dem Ableben seines Bruders (1871) eine Papier- und Leinenerzeugung im eigenen Namen, jedoch unter der Fa. Ant. J. Schmidt u. S\u00f6hne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere f\u00fchrten zu einer neuen Bl\u00fcte dieser Papierm\u00fchle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Gro\u00dfullersdorf, eine \u2013 1917 aufgel\u00f6ste \u2013 Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige f\u00fcrstlich liechtensteinsche Mahlm\u00fchle in Olleschau (Ol\u0161any) und errichtete dort eine Fabrik f\u00fcr Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG \u00fcbernommen, die ab 1870 auch das sp\u00e4ter verbreitete Zigarettenpapier Marke \u201eOlleschau\u201c herstellte, wobei die Lieferschwierigkeiten der franz\u00f6s. Konkurrenz in den Krisenjahren 1870/71 gen\u00fctzt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olm\u00fctzer Handels- und Gewerbekammer in den m\u00e4hr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Gro\u00dfullersdorf, 1879\u201391 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegr\u00fcndeten Te\u00dfthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, sp\u00e4ter auch anderen Fragen der Landwirtschaft widmete. S. n\u00fctzte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die M\u00f6glichkeiten des erh\u00f6hten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde f\u00fcr seine wirtschaftliche und polit. T\u00e4tigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon w\u00e4hrend seiner Lebenszeit wurde die Unternehmung von seinen S\u00f6hnen Anton S. (geb. Gro\u00dfullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Gro\u00dfullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Gro\u00dfullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgef\u00fchrt. W\u00e4hrend Anton S. bis 1917 die Wr. Gesch\u00e4ftsstelle leitete, danach mit Richard die Ullersdorfer Papierm\u00fchle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einf\u00fchrte. Alle drei Br\u00fcder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizit\u00e4tswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung t\u00e4tig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908\u20131938 Kammerrat der Handels- und Gewerbekammer Olm\u00fctz.\n", "source": 166}}, {"model": "metainfo.text", "pk": 47715, "fields": {"kind": 131, "text": "\u2014 Anton Schmidt,\u00a0Fabrikant und Politiker. Geb. Schildberg, M\u00e4hren (\u0160t\u00edty, Tschechoslowakei), 9. 12. 1826; gest. Gro\u00dfullersdorf, M\u00e4hren (Velk\u00e9 Losiny, Tschechoslowakei), 28. 3. 1892.", "source": 166}}, {"model": "metainfo.text", "pk": 47718, "fields": {"kind": 130, "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete f\u00fcr Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Franz\u00f6s. Krieg teil, wurde danach Red. des \u201eWestph\u00e4lischen Grenzboten\u201c in M\u00fcnster, dann Leiter des Feuilletons und \u201eReimchronist\u201c der \u201eDeutschen Zeitung\u201c in Paris und war schlie\u00dflich ab 1880 Berichterstatter der \u201eBerliner Post\u201c; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen sp\u00e4teren Ver\u00f6ff. zugute kamen. In der Folge \u00fcbersiedelte S. nach Wien, wo er 1886 in die Red. des \u201eNeuen Wiener Tagblatts\u201c eintrat, der er bis zu seinem Tod angeh\u00f6rte. Daneben arbeitete er an mehreren Ztg. (u. a. der \u201eIllustrirten Zeitung\u201c, Leipzig) und Z. (u. a. der \u201eGartenlaube\u201c) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. \u201eMuth\u201c, 1899), Erz., M\u00e4rchen, den historisierenden Wr. Roman aus dem 15. Jh. \u201eB\u00fcrger und Studenten\u201c sowie dramat. Werke.\n", "source": 164}}, {"model": "metainfo.text", "pk": 47719, "fields": {"kind": 131, "text": "Schmal\u00a0Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preu\u00dfen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900.", "source": 164}}, {"model": "metainfo.text", "pk": 47724, "fields": {"kind": 130, "text": "Sohn eines in Frankreich t\u00e4tigen Tschechen und einer Franz\u00f6sin (geb. Beauchez), lebte er ab 1860 in B\u00f6hmen und besuchte das Akadem. Gymn. in Prag. Er wurde als aktiver Teilnehmer an Demonstrationen gegen den Justizminister Herbst (s. d.) verhaftet und wegen Hochverrats angeklagt, floh jedoch vor dem Proze\u00df nach Paris, dann 1869 nach Berlin, wo er die \u201eCorrespondance Tch\u00e8que\u201c red. W\u00e4hrend des dt.-franz\u00f6s. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zur\u00fcck und fand seinen Lebensunterhalt als Lehrer der franz\u00f6s. Sprache in Leitomischl (Litomy\u0161l), von 1873 an in Prag. Polit. geh\u00f6rte er dem radikalen Fl\u00fcgel der demokrat. Jungtschechen an, k\u00e4mpfte f\u00fcr die Einf\u00fchrung des allg. Wahlrechts und trat auch in Prager Arbeiterbll. mit Artikeln hervor. V. a. widmete er sich der Anbahnung der freundschaftl. Beziehungen zu Frankreich, f\u00fchrte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag f\u00fcr franz\u00f6s. Ztg. 1893\u201398 war er Korrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris, dann st\u00e4ndiger Mitarbeiter von \u201eLe Temps\u201c in Prag, ab 1903 Red. der erneuerten \u201eCorrespondance Tch\u00e8que\u201c. Daneben war er als \u00dcbers. franz\u00f6s. Romane und Schauspiele t\u00e4tig und verf. eine Reihe von verbreiteten Sprachlehrb\u00fcchern und Konversationsbehelfen.\n", "source": 165}}, {"model": "metainfo.text", "pk": 47725, "fields": {"kind": 131, "text": "\u2014 -Beauchez\u00a0Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, B\u00f6hmen (Praha, Tschechien), 14. 12. 1912.", "source": 165}}, {"model": "metainfo.text", "pk": 47726, "fields": {"kind": 130, "text": "Bauernsohn; stud. kath. Theol. an der Univ. Prag, 1860 Priesterweihe, 1865 Dr. theol. Ab 1862 Adjunkt an der theolog. Fak. in Prag, lernte er auf einer Stud.Reise durch Deutschland die damals namhaftesten Theologen (Hergenr\u00f6ther, Hettinger, D\u00f6llinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. f\u00fcr Kirchengeschichte an der Univ. Prag und f\u00fchrte 1878 das Fach Patrol. in den Lehrplan ein. S. war Historiograph der Fak., mehrmals Dekan und Rektor. 1882 hatte er als letzter Rektor der ungeteilten Univ. die Trennungsverhh. zu leiten. Mitgl. diverser gel. Ges., Landtagsabg. der Fraktion der verfassungstreuen Gro\u00dfgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte B\u00f6hmens. In seiner Monographie \u00fcber den Hl. Wolfgang bem\u00fchte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n", "source": 163}}, {"model": "metainfo.text", "pk": 47727, "fields": {"kind": 131, "text": "Schindler\u00a0Josef, Kirchenhistoriker. * Lachowitz (Lachovice, B\u00f6hmen), 23. 6. 1835; \u2020 Prag, 22. 2. 1911.", "source": 163}}, {"model": "metainfo.text", "pk": 47728, "fields": {"kind": 130, "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); w\u00e4hrend der Volksschulzeit S\u00e4nger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verh\u00e4ltnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien besch\u00e4ftigt; daneben stud. er am Konservatorium der Ges. der Musikfreunde Klavier bei Fischhof, Pirkhert (beide s. d.) und Franz Ramesch, Komposition bei Simon Sechter sowie Waldhorn bei Richard Lewy und lernte dort den Dirigenten H. Richter (s. d.) kennen, mit dem er zeitlebens freundschaftlich verbunden war. Ab 1865 war S. 1. Hornist am Hofburgtheater und als Musiklehrer u. a. in der Familie des Justizministers Stremayr und in der Familie Kautsky t\u00e4tig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivit\u00e4ten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Br\u00fcdern zur Arbeiterbewegung; 1868 gr\u00fcndete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das \u201eLied der Arbeit\u201c, das zur Hymne der \u00f6sterr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (h\u00e4ufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, R\u00fcckert), wobei die \u00dcbereinstimmung von textlicher und musikal. Deklamation f\u00fcr ihn sehr wesentlich war. 1872 gr\u00fcndete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste \u00f6sterr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur beh\u00f6rdlichen Einstellung 1878 war S. Red. der \u201e\u00d6sterreichischen Musikerzeitung\u201c, 1878 gr\u00fcndete er den Arbeiter-S\u00e4ngerbund Wien, den ersten \u00f6sterr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880\u201382 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem m\u00e4rchenhaften, allegor. Libretto von Albert Dulk) im sp\u00e4tromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegr\u00fcnder und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-S\u00e4ngerbundes Landstra\u00dfe, 1891 Mitbegr\u00fcnder des Verbandes der Arbeiter-Gesangver. Nieder\u00f6sterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gr\u00fcndete S. die \u201eArbeiters\u00e4nger-Zeitung\u201c, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der \u201eArbeiter-Zeitung\u201c, wobei er bem\u00fcht war, das Kunstverst\u00e4ndnis der Arbeiter zu f\u00f6rdern und ihnen die klass. und zeitgen\u00f6ss. Musik n\u00e4herzubringen. S. sah in der von ihm begr\u00fcndeten Arbeiters\u00e4ngerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung \u00fcberhaupt.\n", "source": 161}}, {"model": "metainfo.text", "pk": 47729, "fields": {"kind": 131, "text": "Scheu\u00a0Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; \u2020 Wien, 12. 10. 1904.", "source": 161}}, {"model": "metainfo.text", "pk": 47730, "fields": {"kind": 130, "text": "S. stud. 1870\u201378 an der Akad. der bildenden K\u00fcnste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885\u201390 als Ass. an der Kunstgewerbeschule in Prag bei Franti\u0161ek \u017den\u00ed\u0161ek, 1890\u20131922 war er dort als Prof. (1894 o. Prof.) f\u00fcr dekorative Malerei t\u00e4tig. 1913 Mitgl. der Tschech. Akad. der Wiss. und K\u00fcnste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, n\u00e4mlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten H\u00e4lfte der 80er Jahre wandte er sich, unter dem Einflu\u00df der westeurop. Malerei und bedingt durch die Konfrontation mit den sozialen Problemen des Alltags, Genrethemen zu, in denen Traurigkeit, Tragik und Resignation vorherrschen. In seinen melanchol. gestimmten Gem\u00e4lden der folgenden Periode verwendete er h\u00e4ufig Motive aus dem Milieu des abendlichen und n\u00e4chtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gef\u00fchlstiefe, die durch Lichteffekte bewirkt wird, aus.\n", "source": 162}}, {"model": "metainfo.text", "pk": 47731, "fields": {"kind": 131, "text": "Schikaneder\u00a0Jakub, Maler. * Prag, 27. 2. 1855; \u2020 Prag, 15. 11. 1924.", "source": 162}}, {"model": "metainfo.text", "pk": 47732, "fields": {"kind": 130, "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861\u20131919), der gem. mit seinem Onkel Sebastian S. (1844\u201389) 1885 die Holzdrahtfabrik S. & Neffe gegr\u00fcndet hatte; stud. Elektrotechnik an der H\u00f6heren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im v\u00e4terlichen Unternehmen, das Z\u00fcndholzhersteller belieferte, aber auch u. a. Jalousiest\u00e4be und Zahnstocher herstellte, und brachte es in kurzer Zeit zu gro\u00dfer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Z\u00fcndholzerzeugung nahm 1928 durch S.s Mitgr\u00fcndung des Luma-Verkaufsb\u00fcros der Z\u00fcndwarenfabriken Solo-AG Sch\u00fcttenhofen und S. & Neffe GmbH in Prag gro\u00dfen Aufschwung, Z\u00fcndh\u00f6lzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, besch\u00e4ftigte bis zu 300 Mitarbeiter. 1892\u20131938 f\u00fchrte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Ann\u00edn). Er stellte das Rohglas in einem Fabrikneubau in Langendorf her, der mit einem modernen Glasschmelzofen ausgestattet war. Das von S. erzeugte Bleikristall war nicht mehr blaustichig, sondern rein wei\u00df, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflu\u00dfte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n", "source": 159}}, {"model": "metainfo.text", "pk": 47733, "fields": {"kind": 131, "text": "Schell\u00a0Karl, Industrieller. * Langendorf (Dlouh\u00e1 Ves, B\u00f6hmen), 19. 12. 1892; \u2020 ebenda, 2. 6. 1945", "source": 159}}, {"model": "metainfo.text", "pk": 47734, "fields": {"kind": 130, "text": "Stud. 1860\u201365 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Br\u00fccke (s. d.), 1869 Priv.Doz. f\u00fcr die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. f\u00fcr Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegr\u00fcndeten Inst. f\u00fcr Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. f\u00fcr Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte gro\u00dfes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach \u00fcbers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Soci\u00e9t\u00e9 scientifique m\u00e9dicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n", "source": 160}}, {"model": "metainfo.text", "pk": 47735, "fields": {"kind": 131, "text": "Schenk\u00a0Samuel Leopold, Mediziner. * \u00dcrm\u00e9ny (Mojm\u00edrovce, Slowakei), 23. 8. 1840; \u2020 Schwanberg (Stmk.), 17. 8. 1902.", "source": 160}}, {"model": "metainfo.text", "pk": 47746, "fields": {"kind": 130, "text": "Sohn eines Finanzsekr. \u2013 Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869\u201372 an der Wr. ABK bei \u00bfKarl Mayer fort. 1872 \u00fcbersiedelte er nach M\u00fcnchen und wurde 1873 an der dortigen ABK Sch\u00fcler von S\u00e1ndor Wagner. In den Folgejahren arbeitete er als Maler in M\u00fcnchen und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878\u201381 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, sp\u00e4ter w\u00e4hlte er Themen aus der Gegend um den Balaton. 1899\u20131902 hielt er sich wieder in M\u00fcnchen auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften z\u00e4hlt, gewann 1897 den Esterh\u00e1zy-Preis, 1899 den Preis des Ung. Ver. f\u00fcr Bildende K\u00fcnste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u.\u00a0a. Luftspiegelung \u00fcber der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Gal\u00e9ria in Budapest.\n\n", "source": 201}}, {"model": "metainfo.text", "pk": 47747, "fields": {"kind": 131, "text": "T\u00f6lgyessy Art\u00far, Maler. Geb. Szegedin (Szeged, H), 1.\u00a05. 1853; gest. Budapest (H), 2.\u00a02. 1920; r\u00f6m.-kath.", "source": 201}}, {"model": "metainfo.text", "pk": 47748, "fields": {"kind": 130, "text": "S\u00fcdtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T.\u00a0u.\u00a0H. (1728\u20131788) und Josepha Gfn. v. T.\u00a0u.\u00a0H. (1741\u20131819), Cousin des F\u00fcrstbischofs von Trient Peter Vigil Gf. v. T.\u00a0u.\u00a0H. (1776\u20131780), verwandt mit F\u00fcrstbischof \u00bfLeopold Leonhard Gf. v. T.\u00a0u.\u00a0H. \u2013 T. stud. in Passau, Salzburg und Rom Theol. und empfing dort als Mitgl. des Germanicums die Priesterweihe. 1790 wurde er Kanoniker von Trient, 1794 von Salzburg, 1797 Tit.bischof von Iasus und Weihbischof von Trient (Konsekration durch Leopold Leonhard Gf. v. T.\u00a0u.\u00a0H.). Als letzter vom Trienter Domkapitel gew\u00e4hlter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T.\u00a0u.\u00a0H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k.\u00a0Investitur nicht mehr erhalten, da er Anfang 1801 vor den franz\u00f6s. Truppen zun\u00e4chst nach G\u00f6rz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich f\u00fcr den Fortbestand seines Bistums einsetzte. Er k\u00e4mpfte erfolgreich gegen die Pl\u00e4ne K. \u00bfFranz\u2019\u00a0II. (I.), der f\u00fcr Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endg\u00fcltige S\u00e4kularisierung des F\u00fcrstbistums, Kl\u00f6ster wurden aufgel\u00f6st, das Hochstift mit seinen 150.000 Einwohnern \u00d6sterr. zugeordnet. Nach dem Frieden von Pre\u00dfburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zur\u00fcckkehren, wo er in Trient eine Stadtwohnung bezog, da seine f\u00fcrstbisch\u00f6fl. Residenz, das Castello del Buonconsiglio, s\u00e4kularisiert worden war. Die staatl. \u00dcbergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bisch\u00f6fe: T. von Trient, Karl Franz Gf. v. Lodron von Brixen (Bressanone) und Karl Rudolph v. Buol-Schauenstein von Chur. Bes. Protest riefen neben den Eingriffen in das religi\u00f6se Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von di\u00f6zesanen Priesterseminaren hervor. Die drei Bisch\u00f6fe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius\u00a0VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs best\u00e4rkt. W\u00e4hrend Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bez\u00fcge gesperrt; Buol-Schauenstein wurde nach Graub\u00fcnden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerst\u00e4ndige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar w\u00e4hlen. Dieser, Franz v. Spaur, erhielt von T. die geheime Best\u00e4tigung. Die bayer. Ma\u00dfnahmen auf kirchl. Gebiet (Ver\u00e4u\u00dferung gr\u00f6\u00dferer Tle. der bisch\u00f6fl. und Kapiteldotation, S\u00e4kularisierung mehrerer Kl\u00f6ster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zur\u00fcckkehren, schwor dem neuen Machthaber 1810 in Monza den Treueeid und nahm auch am Nationalkonzil in Paris 1811 teil. Obwohl Napoleon ebenso schroff in kirchl. Belange eingriff, duldete T. dessen Klosteraufhebungen, die Einf\u00fchrung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entlie\u00df 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut \u00fcbertragen. Als das Bistum 1814 wieder an \u00d6sterr. fiel, folgte eine Zeit der Konsolidierung, einige Kl\u00f6ster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bisch\u00f6fl. Mensa, das Domkapitel und die Bischofsnomination durch den \u00f6sterr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tats\u00e4chl. in seinem Bistum residieren.\n\n", "source": 200}}, {"model": "metainfo.text", "pk": 47749, "fields": {"kind": 131, "text": "Thun und Hohenstein Emanuel Maria Gf. von, F\u00fcrstbischof. Geb. Trient, Bistum Trient (Trento, I), 28.\u00a03. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9.\u00a010. 1818 (bestattet: Dom zu Trient); r\u00f6m.-kath.", "source": 200}}, {"model": "metainfo.text", "pk": 47754, "fields": {"kind": 130, "text": "", "source": 197}}, {"model": "metainfo.text", "pk": 47755, "fields": {"kind": 131, "text": "", "source": 197}}, {"model": "metainfo.text", "pk": 47756, "fields": {"kind": 130, "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2.\u00a0Ehefrau Julia T., geb. Grabowska, Halbbruder von \u00bfWlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von \u00bfLudwig v.\u00a0T. \u2013 T. besuchte das Gymn. in Krakau (Krak\u00f3w) und stud. 1884\u201386 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889\u201393 arbeitete er als Mithrsg. der Z. \u201eKurier Polski\u201c und als Journalist der Z. \u201eTygodnik Ilustrowany\u201c, \u201eKurier Warszawski\u201c und \u201eCzas\u201c; danach war er Sekr. von Adam Krasinski und stud. mit ihm 1896 in Heidelberg. Nach 1896 lebte er in Zakopane und Krakau, ab 1918 in Warschau. T. deb\u00fct. 1886 mit lyr. Prosa und Gelegenheitsdichtung (\u201eIlla\u201c). 1888 gewann er einen Preis der Jagiellonen-Univ. f\u00fcr ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik (\u201eWiersz na uczczenie pamieci Adama Mickiewicza\u201c), und 1889 einen weiteren f\u00fcr eine Hymne auf den Schriftsteller \u00bfJ\u00f3zef Ignacy Kraszewski (\u201eNa czesc Kraszewskiego\u201c). T. galt neben \u00bfJan Kasprowicz als der popul\u00e4rste Dichter der Bewegung Junges Polen und repr\u00e4sentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtb\u00e4ndigen Ged.smlg. \u201ePoezje\u201c (1891\u20131924) erlangte er Anerkennung als bedeutender Lyriker und Autorit\u00e4t der jungpoln. Literatur. T., der sich f\u00fcr Arthur Schopenhauers und Friedrich Nietzsches Phil. begeisterte, schrieb impressionist. Natur- und Stimmungslyrik mit einer Neigung zu Pessimismus und Dekadenz, erot. Ged. und Liebeslyrik sowie Novellen und Romane mit Motiven aus dem zeitgen\u00f6ss. Leben der Boh\u00e8me. 1898 erschien der Roman \u201eAniol smierci\u201c (dt. \u201eDer Todesengel\u201c, 1899), der in dt. \u00dcbers. zuerst als Vorabdruck in der Z. \u201eAus fremden Zungen\u201c erschien, in der T. i.\u00a0d.\u00a0F. weitere Ged. ver\u00f6ff. In der f\u00fcnfb\u00e4ndigen Novellensmlg. \u201eNa skalnym Podhalu\u201c (1903\u201310, dt.sprachige Auswahl unter dem Titel \u201eAus der Tatra\u201c, 1903) verherrlichte T. Land und Leute der Hohen Tatra im Dialekt der Gegend und unter Einbeziehung tradierter Stoffe und Legenden. Bedeutend sind auch seine zwei hist. Tatra-Romane \u201eMaryna z Hrubego\u201c (1910) und \u201eJanosik Nedza Litmanowski\u201c (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. W\u00e4hrend des 1.\u00a0Weltkriegs war T. Hrsg. der Z. \u201ePraca Narodowa\u201c. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zur\u00fcckgezogen, als Dauergast im Warschauer Hotel Europejski. Von dort wurde er von den Deutschen vertrieben und starb in einem Krankenhaus. T., der 1928 den Literaturpreis der Stadt Warschau erhielt, war ab 1921 Pr\u00e4s. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literat\u00f3w Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n", "source": 198}}, {"model": "metainfo.text", "pk": 47757, "fields": {"kind": 131, "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18.\u00a01. 1940; r\u00f6m.-kath.", "source": 198}}, {"model": "metainfo.text", "pk": 47758, "fields": {"kind": 130, "text": "Sohn von \u00bfOskar Karl T. und \u00bfEmma T., Bruder von Wilhelm (genannt Willy) T.-Weckersdorf (geb. Prag, 23. 9. 1879; gest. Salzburg, Sbg., 3. 3. 1968), der sich ebenfalls um die Entwicklung des \u00f6sterr. Pfadfinderwesens verdient machte und nach dem 2. Weltkrieg als Leiter der Ind.abt. der Sbg. Landesregierung fungierte, und von Obst. Oskar (genannt Ossi) T. (geb. Prag, 21. 3. 1881; gest. Innsbruck, Tirol, 19. 4. 1943), der im Heeresmin. t\u00e4tig war und gem. mit seiner j\u00fcd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923\u20131998), Univ.-Prof. f\u00fcr Politikwiss. in Wien. \u2013 T. diente ab 1896 im 3. Tiroler J\u00e4gerrgt. \u201eKaiserj\u00e4ger\u201c, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Milit\u00e4rsachverst\u00e4ndiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des milit\u00e4r. organisierten Knabenhortverbands in der milit\u00e4r.-patriot. Jugenderziehung und -f\u00fcrsorge ein neues Bet\u00e4tigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, \u00fcbertrug er das System der Boy Scouts des engl. Begr\u00fcnders des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gr\u00fcndete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in \u00d6sterr. und die Keimzelle des von ihm initiierten \u00d6sterr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915\u201319 Reichsfeldmeister des Bundes. Aufgrund des Verm\u00f6gens seiner Frau, einer Amerikanerin, konnte \u201ePapa\u201c T. hohe Geldmittel f\u00fcr die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronl\u00e4nder vom \u00d6sterr. Pfadfinderbund wirkte T. 1918\u201320 hauptberufl. als Insp. des Verbands f\u00fcr freiwillige Jugendf\u00fcrsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendf\u00fcrsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und f\u00fcr das Rote Kreuz t\u00e4tig. Da er sich weltanschaul. mit der aufkommenden \u201eb\u00fcndischen\u201c, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zur\u00fcck, blieb aber bis 1923 Bundesfeldmeister im \u00d6sterr. Pfadfinderbund. Er unterst\u00fctzte nunmehr den religi\u00f6sen Einfluss des kath. Klerus auf die Pfadfinder-Jugendarbeit und akzeptierte den Zusammenschluss der innerhalb des Bundes bereits bestehenden kath. Pfadfinderkolonnen zum Ring der St. Georgspfadfinder; 1926 Gr\u00fcndung der kath. Jugendorganisation des \u00d6sterr. Pfadfinderkorps St. Georg, das sich relativ rasch vergr\u00f6\u00dferte. Durch die Auss\u00f6hnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei gro\u00dfe Landg\u00fcter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zur\u00fcck. 1922\u201329 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals h\u00f6chste Pfadfinderausz., den \u201eSilberwolf\u201c. Als nach dem \u201eAnschluss\u201c \u00d6sterr. alle bestehenden Jugendorganisationen aufgel\u00f6st und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in M\u00fcnchen aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die \u00f6sterr. Pfadfinder posthum 1956 ihre h\u00f6chste Ausz., den \u201eSilbernen Steinbock\u201c. T.s Bruder ", "source": 199}}, {"model": "metainfo.text", "pk": 47759, "fields": {"kind": 131, "text": "Teuber Emmerich (genannt Imre), Pfadfinderf\u00fchrer und Offizier. Geb. Prag, B\u00f6hmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; r\u00f6m.-kath.", "source": 199}}, {"model": "metainfo.text", "pk": 47764, "fields": {"kind": 130, "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn sp\u00e4ter in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. \u2013 T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher S\u00e4nger werden. Er stud. 1908\u201310 Klavier, Komposition und Orchesterdirigieren am Hoch\u2019schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm \u00bfLeopold Demuth eine Stimme \u201ewie ein Zwirnsfaden\u201c. Wegen einer Liebelei musste T. nach Freiburg im Breisgau \u00fcbersiedeln, wo er dem Gesangsp\u00e4dagogen Carl Beines begegnete, der sein gro\u00dfes Talent erkannte und ihn ausbildete. T. gab sein Operndeb\u00fct 1913 in Chemnitz als Tamino in Mozarts \u201eZauberfl\u00f6te\u201c und erhielt im selben Jahr ein Engagement an die Dresdner Hofoper, an der er bis 1918 blieb. Er wurde ein gefragter lyr. Tenor, auch da er innerhalb k\u00fcrzester Zeit Partien einzustud. vermochte (Beiname \u201eSOS-Tenor\u201c), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg \u00bfFranz Leh\u00e1r kennen, in dessen sp\u00e4ten Operetten er dann, beginnend mit \u201ePaganini\u201c (Berliner Erstauff. 1926), die m\u00e4nnl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen \u201eT.-Lieder\u201c, die als Schlager gro\u00dfe Popularit\u00e4t erlangten (\u201eDein ist mein ganzes Herz\u201c etc.). Trotz Warnungen, dass er seine Stimme f\u00fcr die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Ber\u00fchmtheit. Fr\u00fch erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der \u00d6ffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Leh\u00e1rs \u201eDas Land des L\u00e4chelns\u201c, eine Rolle, die er \u00fcber 700-mal verk\u00f6rperte. Im selben Jahr kam sein erster Film, \u201eIch glaub\u2019 nie mehr an eine Frau\u201c, in die Kinos. Die auf Dr\u00e4ngen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um gro\u00dfe Summen gebracht. Er stand weiterhin erfolgreich auf Opernb\u00fchnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im M\u00e4rz 1933 von der B\u00fchne des Berliner Admiralspalastes gebuht und auf dem Kurf\u00fcrstendamm von SA-M\u00e4nnern niedergeschlagen worden war, fl\u00fcchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schlie\u00dfl. nach Wien. Hier wurde seine Operette \u201eDer singende Traum\u201c uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in \u201eBlossom Time\u201c einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. K\u00fcnstler zum Star, der sich \u00f6ff. gegen \u00bfAdolf Hitler \u00e4u\u00dferte. Internationale Tourneen f\u00fchrten ihn nach Nord- und S\u00fcdamerika, nach S\u00fcdafrika, Asien und Australien. Nach dem \u201eAnschluss\u201c \u00d6sterr. an das Dt. Reich 1938 lebte er ausschlie\u00dfl. in England (ab 1940 engl. Staatsb\u00fcrger). Er gab Konzerte, die BBC brachte regelm\u00e4\u00dfige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette \u201eOld Chelsea\u201c. An H\u00f6chstgagen und einen aufwendigen Lebensstil gew\u00f6hnt, geriet T. im Exil jedoch in hohe Schulden. Nach Kriegsende trat er wieder international auf, hatte aber deutl. Stimmprobleme. Seinen letzten Auftritt absolv. der an Lungenkrebs Erkrankte Ende September 1947 am Royal Opera House, Covent Garden, als Don Ottavio in Mozarts \u201eDon Giovanni\u201c, wobei er besser denn je gesungen haben soll. T.s Vater ", "source": 196}}, {"model": "metainfo.text", "pk": 47765, "fields": {"kind": 131, "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, S\u00e4nger, Dirigent und Komponist. Geb. Linz (O\u00d6), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 r\u00f6m.-kath.", "source": 196}}, {"model": "metainfo.uri", "pk": 26, "fields": {"uri": "http://sws.geonames.org/3194099/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 26, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 111, "fields": {"uri": "http://sws.geonames.org/3186886/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 133, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 149, "fields": {"uri": "http://sws.geonames.org/2761369/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 183, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 258, "fields": {"uri": "http://sws.geonames.org/3078610/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 327, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 299, "fields": {"uri": "http://sws.geonames.org/3077117/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 384, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 311, "fields": {"uri": "http://sws.geonames.org/3054643/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 637, "fields": {"uri": "http://sws.geonames.org/683506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 831, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 713, "fields": {"uri": "http://sws.geonames.org/2782067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 926, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1062, "fields": {"uri": "http://sws.geonames.org/2950159/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1390, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1089, "fields": {"uri": "http://sws.geonames.org/3071961/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1424, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1112, "fields": {"uri": "http://sws.geonames.org/2781806/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1291, "fields": {"uri": "http://sws.geonames.org/2781629/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1701, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1304, "fields": {"uri": "http://sws.geonames.org/2907669/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1718, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1511, "fields": {"uri": "http://sws.geonames.org/684039/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2006, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1561, "fields": {"uri": "http://sws.geonames.org/3060972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2072, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1571, "fields": {"uri": "http://sws.geonames.org/3078577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2085, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1625, "fields": {"uri": "http://sws.geonames.org/3081368/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2161, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1631, "fields": {"uri": "http://sws.geonames.org/3181550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2170, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1651, "fields": {"uri": "http://sws.geonames.org/3074967/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2197, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1711, "fields": {"uri": "http://sws.geonames.org/711416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2281, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1856, "fields": {"uri": "http://sws.geonames.org/3435910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2489, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1939, "fields": {"uri": "http://sws.geonames.org/3181215/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2602, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2121, "fields": {"uri": "http://sws.geonames.org/710719/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2854, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2302, "fields": {"uri": "http://sws.geonames.org/3101321/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3105, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2344, "fields": {"uri": "http://sws.geonames.org/681290/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3162, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3021, "fields": {"uri": "http://sws.geonames.org/2934486/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4096, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3151, "fields": {"uri": "http://sws.geonames.org/3063762/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4269, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3518, "fields": {"uri": "http://sws.geonames.org/2778067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4767, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3599, "fields": {"uri": "http://sws.geonames.org/2779275/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4877, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3912, "fields": {"uri": "http://sws.geonames.org/677410/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5294, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3923, "fields": {"uri": "http://sws.geonames.org/2873574/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5308, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4052, "fields": {"uri": "http://sws.geonames.org/3175986/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5478, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4206, "fields": {"uri": "http://sws.geonames.org/3173577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5691, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4249, "fields": {"uri": "http://sws.geonames.org/2777972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5749, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4440, "fields": {"uri": "http://sws.geonames.org/3063197/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6004, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4676, "fields": {"uri": "http://sws.geonames.org/2910831/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6324, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4954, "fields": {"uri": "http://sws.geonames.org/2775220/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6700, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5134, "fields": {"uri": "http://sws.geonames.org/3199302/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6947, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5507, "fields": {"uri": "http://sws.geonames.org/3097333/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5631, "fields": {"uri": "http://sws.geonames.org/2772649/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7622, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5897, "fields": {"uri": "http://sws.geonames.org/2892518/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7986, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6257, "fields": {"uri": "http://sws.geonames.org/2773913/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8482, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6486, "fields": {"uri": "http://sws.geonames.org/2885679/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8798, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6838, "fields": {"uri": "http://sws.geonames.org/2773300/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9287, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6961, "fields": {"uri": "http://sws.geonames.org/3072358/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9455, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6977, "fields": {"uri": "http://sws.geonames.org/3196359/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7169, "fields": {"uri": "http://sws.geonames.org/702550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9735, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7375, "fields": {"uri": "http://sws.geonames.org/2772400/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10015, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7554, "fields": {"uri": "http://sws.geonames.org/2643743/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10265, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7936, "fields": {"uri": "http://sws.geonames.org/3195506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10793, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8262, "fields": {"uri": "http://sws.geonames.org/3064919/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11238, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8489, "fields": {"uri": "http://sws.geonames.org/3070372/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11556, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8668, "fields": {"uri": "http://sws.geonames.org/2867714/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11799, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8966, "fields": {"uri": "http://sws.geonames.org/3090436/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12211, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9363, "fields": {"uri": "http://sws.geonames.org/2990440/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12758, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9718, "fields": {"uri": "http://sws.geonames.org/3045190/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13253, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9810, "fields": {"uri": "http://sws.geonames.org/3069011/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13382, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10050, "fields": {"uri": "http://sws.geonames.org/2988507/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13714, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10247, "fields": {"uri": "http://sws.geonames.org/2854561/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13987, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10697, "fields": {"uri": "http://sws.geonames.org/3067696/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 14608, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11885, "fields": {"uri": "http://sws.geonames.org/3057304/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16242, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11932, "fields": {"uri": "http://sws.geonames.org/3167905/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16310, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12137, "fields": {"uri": "http://sws.geonames.org/3065118/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16594, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12332, "fields": {"uri": "http://sws.geonames.org/2765515/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16864, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13419, "fields": {"uri": "http://sws.geonames.org/3083848/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18374, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13438, "fields": {"uri": "http://sws.geonames.org/715429/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14028, "fields": {"uri": "http://sws.geonames.org/3165243/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19215, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14297, "fields": {"uri": "http://sws.geonames.org/3058653/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19599, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14983, "fields": {"uri": "http://sws.geonames.org/756135/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20549, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15060, "fields": {"uri": "http://sws.geonames.org/792794/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20659, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15214, "fields": {"uri": "http://sws.geonames.org/2782058/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20872, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15297, "fields": {"uri": "http://sws.geonames.org/2633767/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20988, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15896, "fields": {"uri": "http://sws.geonames.org/3064454/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 21818, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16165, "fields": {"uri": "http://sws.geonames.org/3074331/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22216, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16195, "fields": {"uri": "http://sws.geonames.org/2764112/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22259, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16238, "fields": {"uri": "http://sws.geonames.org/2762908/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22322, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16260, "fields": {"uri": "http://sws.geonames.org/2659297/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22354, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16342, "fields": {"uri": "http://sws.geonames.org/2953416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16355, "fields": {"uri": "http://sws.geonames.org/2772910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22494, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16377, "fields": {"uri": "http://sws.geonames.org/2660718/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22526, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16386, "fields": {"uri": "http://sws.geonames.org/684490/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22545, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16392, "fields": {"uri": "http://sws.geonames.org/3092742/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22558, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16398, "fields": {"uri": "http://sws.geonames.org/3164453/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22570, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19232, "fields": {"uri": "http://d-nb.info/gnd/4023349-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19233, "fields": {"uri": "http://d-nb.info/gnd/4027096-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6700, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19242, "fields": {"uri": "http://d-nb.info/gnd/4044660-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19246, "fields": {"uri": "http://d-nb.info/gnd/4127793-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 11799, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19273, "fields": {"uri": "http://d-nb.info/gnd/4008216-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19323, "fields": {"uri": "http://d-nb.info/gnd/4076310-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 14608, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19406, "fields": {"uri": "http://d-nb.info/gnd/4008684-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19447, "fields": {"uri": "http://d-nb.info/gnd/4038688-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 5691, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19459, "fields": {"uri": "http://d-nb.info/gnd/4265379-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1454, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19583, "fields": {"uri": "http://d-nb.info/gnd/4021912-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19665, "fields": {"uri": "http://d-nb.info/gnd/4075643-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13382, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 32623, "fields": {"uri": "http://d-nb.info/gnd/118931482", "domain": "", "rdf_link": "", "entity": 46414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 39250, "fields": {"uri": "http://d-nb.info/gnd/118785028", "domain": "", "rdf_link": "", "entity": 56248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 43650, "fields": {"uri": "http://d-nb.info/gnd/118573527", "domain": "", "rdf_link": "", "entity": 62757, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60980, "fields": {"uri": "http://d-nb.info/gnd/118508288", "domain": "", "rdf_link": "", "entity": 88902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63085, "fields": {"uri": "http://d-nb.info/gnd/118677667", "domain": "", "rdf_link": "", "entity": 92603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63174, "fields": {"uri": "http://d-nb.info/gnd/118505955", "domain": "", "rdf_link": "", "entity": 93003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63178, "fields": {"uri": "http://d-nb.info/gnd/119061201", "domain": "", "rdf_link": "", "entity": 93009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63180, "fields": {"uri": "http://d-nb.info/gnd/128578998", "domain": "", "rdf_link": "", "entity": 93012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63182, "fields": {"uri": "http://d-nb.info/gnd/143930567", "domain": "", "rdf_link": "", "entity": 93015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63184, "fields": {"uri": "http://d-nb.info/gnd/136186289", "domain": "", "rdf_link": "", "entity": 93018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63186, "fields": {"uri": "http://d-nb.info/gnd/136186343", "domain": "", "rdf_link": "", "entity": 93021, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63188, "fields": {"uri": "http://d-nb.info/gnd/140067302", "domain": "", "rdf_link": "", "entity": 93024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63191, "fields": {"uri": "http://d-nb.info/gnd/116539585", "domain": "", "rdf_link": "", "entity": 93028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63193, "fields": {"uri": "http://d-nb.info/gnd/11666827X", "domain": "", "rdf_link": "", "entity": 93031, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63195, "fields": {"uri": "http://d-nb.info/gnd/116689234", "domain": "", "rdf_link": "", "entity": 93034, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63202, "fields": {"uri": "http://d-nb.info/gnd/130579122", "domain": "", "rdf_link": "", "entity": 93044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63204, "fields": {"uri": "http://d-nb.info/gnd/143681761", "domain": "", "rdf_link": "", "entity": 93047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63206, "fields": {"uri": "http://d-nb.info/gnd/117649953", "domain": "", "rdf_link": "", "entity": 93050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63210, "fields": {"uri": "http://d-nb.info/gnd/130132098", "domain": "", "rdf_link": "", "entity": 93056, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63212, "fields": {"uri": "http://d-nb.info/gnd/143053272", "domain": "", "rdf_link": "", "entity": 93059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63216, "fields": {"uri": "http://d-nb.info/gnd/118817418", "domain": "", "rdf_link": "", "entity": 93065, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63218, "fields": {"uri": "http://d-nb.info/gnd/135697719", "domain": "", "rdf_link": "", "entity": 93068, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63220, "fields": {"uri": "http://d-nb.info/gnd/118524283", "domain": "", "rdf_link": "", "entity": 93071, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63222, "fields": {"uri": "http://d-nb.info/gnd/116070935", "domain": "", "rdf_link": "", "entity": 93074, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63261, "fields": {"uri": "http://d-nb.info/gnd/1012030806", "domain": "", "rdf_link": "", "entity": 93136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63385, "fields": {"uri": "http://d-nb.info/gnd/117736791", "domain": "", "rdf_link": "", "entity": 93328, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63391, "fields": {"uri": "http://d-nb.info/gnd/1019267925", "domain": "", "rdf_link": "", "entity": 93337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63401, "fields": {"uri": "http://d-nb.info/gnd/136782086", "domain": "", "rdf_link": "", "entity": 93352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63411, "fields": {"uri": "http://d-nb.info/gnd/1018979573", "domain": "", "rdf_link": "", "entity": 93366, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63413, "fields": {"uri": "http://d-nb.info/gnd/1019359811", "domain": "", "rdf_link": "", "entity": 93369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63419, "fields": {"uri": "http://d-nb.info/gnd/117634816", "domain": "", "rdf_link": "", "entity": 93378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63425, "fields": {"uri": "http://d-nb.info/gnd/116907525", "domain": "", "rdf_link": "", "entity": 93387, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63429, "fields": {"uri": "http://d-nb.info/gnd/116856246", "domain": "", "rdf_link": "", "entity": 93393, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63431, "fields": {"uri": "http://d-nb.info/gnd/119334429", "domain": "", "rdf_link": "", "entity": 93396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63434, "fields": {"uri": "http://d-nb.info/gnd/118806025", "domain": "", "rdf_link": "", "entity": 93400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63440, "fields": {"uri": "http://d-nb.info/gnd/1018666664", "domain": "", "rdf_link": "", "entity": 93409, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63444, "fields": {"uri": "http://d-nb.info/gnd/1014451833", "domain": "", "rdf_link": "", "entity": 93415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63446, "fields": {"uri": "http://d-nb.info/gnd/117612308", "domain": "", "rdf_link": "", "entity": 93418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63462, "fields": {"uri": "http://d-nb.info/gnd/118813919", "domain": "", "rdf_link": "", "entity": 93442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63464, "fields": {"uri": "http://d-nb.info/gnd/1023121581", "domain": "", "rdf_link": "", "entity": 93445, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63466, "fields": {"uri": "http://d-nb.info/gnd/119065932", "domain": "", "rdf_link": "", "entity": 93448, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63480, "fields": {"uri": "http://d-nb.info/gnd/1021208493", "domain": "", "rdf_link": "", "entity": 93469, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63488, "fields": {"uri": "http://d-nb.info/gnd/137341768", "domain": "", "rdf_link": "", "entity": 93481, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63490, "fields": {"uri": "http://d-nb.info/gnd/1020698381", "domain": "", "rdf_link": "", "entity": 93484, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63492, "fields": {"uri": "http://d-nb.info/gnd/1020698055", "domain": "", "rdf_link": "", "entity": 93487, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63508, "fields": {"uri": "http://d-nb.info/gnd/118732277", "domain": "", "rdf_link": "", "entity": 93510, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63510, "fields": {"uri": "http://d-nb.info/gnd/10788464X", "domain": "", "rdf_link": "", "entity": 93513, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63512, "fields": {"uri": "http://d-nb.info/gnd/134474937", "domain": "", "rdf_link": "", "entity": 93516, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63528, "fields": {"uri": "http://d-nb.info/gnd/13185545X", "domain": "", "rdf_link": "", "entity": 93540, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63532, "fields": {"uri": "http://d-nb.info/gnd/1024716082", "domain": "", "rdf_link": "", "entity": 93546, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63542, "fields": {"uri": "http://d-nb.info/gnd/1026382211", "domain": "", "rdf_link": "", "entity": 93561, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63550, "fields": {"uri": "http://d-nb.info/gnd/102588485X", "domain": "", "rdf_link": "", "entity": 93573, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63560, "fields": {"uri": "http://d-nb.info/gnd/130027022", "domain": "", "rdf_link": "", "entity": 93588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63568, "fields": {"uri": "http://d-nb.info/gnd/117687030", "domain": "", "rdf_link": "", "entity": 93600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63574, "fields": {"uri": "http://d-nb.info/gnd/122897897", "domain": "", "rdf_link": "", "entity": 93609, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63578, "fields": {"uri": "http://d-nb.info/gnd/139593128", "domain": "", "rdf_link": "", "entity": 93615, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63594, "fields": {"uri": "http://d-nb.info/gnd/139112200", "domain": "", "rdf_link": "", "entity": 93639, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63596, "fields": {"uri": "http://d-nb.info/gnd/130427012", "domain": "", "rdf_link": "", "entity": 93642, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63598, "fields": {"uri": "http://d-nb.info/gnd/117522139", "domain": "", "rdf_link": "", "entity": 93645, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63602, "fields": {"uri": "http://d-nb.info/gnd/1027427839", "domain": "", "rdf_link": "", "entity": 93651, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63604, "fields": {"uri": "http://d-nb.info/gnd/127691979", "domain": "", "rdf_link": "", "entity": 93654, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63627, "fields": {"uri": "http://d-nb.info/gnd/123215374", "domain": "", "rdf_link": "", "entity": 93702, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63629, "fields": {"uri": "http://d-nb.info/gnd/12899620X", "domain": "", "rdf_link": "", "entity": 93705, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63635, "fields": {"uri": "http://d-nb.info/gnd/1035683431", "domain": "", "rdf_link": "", "entity": 93714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63657, "fields": {"uri": "http://d-nb.info/gnd/1034850962", "domain": "", "rdf_link": "", "entity": 93748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63678, "fields": {"uri": "http://d-nb.info/gnd/135612411", "domain": "", "rdf_link": "", "entity": 93779, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63682, "fields": {"uri": "http://d-nb.info/gnd/1033824674", "domain": "", "rdf_link": "", "entity": 93785, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63686, "fields": {"uri": "http://d-nb.info/gnd/133833348", "domain": "", "rdf_link": "", "entity": 93791, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63692, "fields": {"uri": "http://d-nb.info/gnd/103334690X", "domain": "", "rdf_link": "", "entity": 93800, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63694, "fields": {"uri": "http://d-nb.info/gnd/128900059", "domain": "", "rdf_link": "", "entity": 93803, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63698, "fields": {"uri": "http://d-nb.info/gnd/1033469084", "domain": "", "rdf_link": "", "entity": 93809, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63702, "fields": {"uri": "http://d-nb.info/gnd/117409669", "domain": "", "rdf_link": "", "entity": 93815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63704, "fields": {"uri": "http://d-nb.info/gnd/1033342483", "domain": "", "rdf_link": "", "entity": 93818, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63716, "fields": {"uri": "http://d-nb.info/gnd/134516001", "domain": "", "rdf_link": "", "entity": 93836, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63718, "fields": {"uri": "http://d-nb.info/gnd/1019536594", "domain": "", "rdf_link": "", "entity": 93839, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63728, "fields": {"uri": "http://d-nb.info/gnd/103283160X", "domain": "", "rdf_link": "", "entity": 93854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63734, "fields": {"uri": "http://d-nb.info/gnd/103223718X", "domain": "", "rdf_link": "", "entity": 93863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63736, "fields": {"uri": "http://d-nb.info/gnd/118610643", "domain": "", "rdf_link": "", "entity": 93866, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63744, "fields": {"uri": "http://d-nb.info/gnd/1032220473", "domain": "", "rdf_link": "", "entity": 93878, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63753, "fields": {"uri": "http://d-nb.info/gnd/1031937358", "domain": "", "rdf_link": "", "entity": 93891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63755, "fields": {"uri": "http://d-nb.info/gnd/1031946101", "domain": "", "rdf_link": "", "entity": 93894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63759, "fields": {"uri": "http://d-nb.info/gnd/116848693", "domain": "", "rdf_link": "", "entity": 93900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63761, "fields": {"uri": "http://d-nb.info/gnd/103169420X", "domain": "", "rdf_link": "", "entity": 93903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63765, "fields": {"uri": "http://d-nb.info/gnd/137648588", "domain": "", "rdf_link": "", "entity": 93909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63773, "fields": {"uri": "http://d-nb.info/gnd/116816961", "domain": "", "rdf_link": "", "entity": 93921, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63781, "fields": {"uri": "http://d-nb.info/gnd/118759671", "domain": "", "rdf_link": "", "entity": 93933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63786, "fields": {"uri": "http://d-nb.info/gnd/103056423X", "domain": "", "rdf_link": "", "entity": 93940, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63790, "fields": {"uri": "http://d-nb.info/gnd/1030283044", "domain": "", "rdf_link": "", "entity": 93946, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63796, "fields": {"uri": "http://d-nb.info/gnd/1031146539", "domain": "", "rdf_link": "", "entity": 93955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63798, "fields": {"uri": "http://d-nb.info/gnd/139576126", "domain": "", "rdf_link": "", "entity": 93958, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63800, "fields": {"uri": "http://d-nb.info/gnd/129263761", "domain": "", "rdf_link": "", "entity": 93961, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63802, "fields": {"uri": "http://d-nb.info/gnd/121246736", "domain": "", "rdf_link": "", "entity": 93964, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63804, "fields": {"uri": "http://d-nb.info/gnd/1029738556", "domain": "", "rdf_link": "", "entity": 93967, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63806, "fields": {"uri": "http://d-nb.info/gnd/1029748209", "domain": "", "rdf_link": "", "entity": 93970, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64139, "fields": {"uri": "http://d-nb.info/gnd/4074335-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10265, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64175, "fields": {"uri": "http://d-nb.info/gnd/4035304-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64185, "fields": {"uri": "http://d-nb.info/gnd/4108914-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64201, "fields": {"uri": "http://d-nb.info/gnd/4008858-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64255, "fields": {"uri": "http://d-nb.info/gnd/4010833-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64261, "fields": {"uri": "http://d-nb.info/gnd/4073953-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9475, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64625, "fields": {"uri": "http://d-nb.info/gnd/4075578-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13253, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64656, "fields": {"uri": "http://d-nb.info/gnd/4079048-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 20549, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64762, "fields": {"uri": "http://d-nb.info/gnd/4008456-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 327, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64958, "fields": {"uri": "http://d-nb.info/gnd/4106475-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 18400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64961, "fields": {"uri": "http://d-nb.info/gnd/4074255-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65200, "fields": {"uri": "http://d-nb.info/gnd/4033488-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9287, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65351, "fields": {"uri": "http://d-nb.info/gnd/4013237-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65410, "fields": {"uri": "http://d-nb.info/gnd/4071444-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 22526, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65607, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Conrad", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65704, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Fiedler", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65759, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Gasser", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66450, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Rief", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66630, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:StaudingerRudolf", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66778, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Winkler", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66836, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Z\u00f6llner", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 68464, "fields": {"uri": "http://d-nb.info/gnd/4031235-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 8482, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 70264, "fields": {"uri": "http://d-nb.info/gnd/4029869-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 7986, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 71992, "fields": {"uri": "http://d-nb.info/gnd/4035360-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 7622, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 72191, "fields": {"uri": "http://d-nb.info/gnd/4103609-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1424, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uricandidate", "pk": 3373, "fields": {"uri": "http://sws.geonames.org/3075069/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3374, "fields": {"uri": "http://sws.geonames.org/3075073/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3375, "fields": {"uri": "http://sws.geonames.org/3064955/", "confidence": 36.39077, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3376, "fields": {"uri": "http://sws.geonames.org/3064682/", "confidence": 27.023357, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3392, "fields": {"uri": "http://sws.geonames.org/8987526/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3393, "fields": {"uri": "http://sws.geonames.org/8988006/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3394, "fields": {"uri": "http://sws.geonames.org/3187442/", "confidence": 36.04053, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3427, "fields": {"uri": "http://sws.geonames.org/710232/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3428, "fields": {"uri": "http://sws.geonames.org/710234/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3429, "fields": {"uri": "http://sws.geonames.org/710242/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3430, "fields": {"uri": "http://sws.geonames.org/710241/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3431, "fields": {"uri": "http://sws.geonames.org/810113/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3432, "fields": {"uri": "http://sws.geonames.org/8468002/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3433, "fields": {"uri": "http://sws.geonames.org/710235/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3434, "fields": {"uri": "http://sws.geonames.org/710243/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3435, "fields": {"uri": "http://sws.geonames.org/697446/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3436, "fields": {"uri": "http://sws.geonames.org/687982/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "highlighter.texthigh", "pk": 1, "fields": {"title": "\u00d6BL Haupttext", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-haupttext", "project": 1}}, {"model": "highlighter.texthigh", "pk": 2, "fields": {"title": "\u00d6bl Kurzinfo", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-kurzinfo", "project": 1}}, {"model": "highlighter.annotationproject", "pk": 1, "fields": {"name": "Default", "description": "We need an annotation project for every annotation. Thus the default project."}}, {"model": "highlighter.annotationproject", "pk": 2, "fields": {"name": "Klausenburg Agoston", "description": null}}, {"model": "highlighter.annotationproject", "pk": 3, "fields": {"name": "K\u00fcnstlerhaus Maximilian", "description": null}}, {"model": "highlighter.annotationproject", "pk": 4, "fields": {"name": "Mittelalter", "description": null}}, {"model": "highlighter.annotationproject", "pk": 5, "fields": {"name": "300 select names", "description": null}}, {"model": "highlighter.annotationproject", "pk": 6, "fields": {"name": "Gold Standard 28.3.2017", "description": ""}}, {"model": "highlighter.vocabularyapi", "pk": 1, "fields": {"name": "Person Place Form", "api_endpoint": "PersonPlaceHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 2, "fields": {"name": "Person Institution Form", "api_endpoint": "PersonInstitutionHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 3, "fields": {"name": "Person Person Form", "api_endpoint": "PersonPersonHighlighterForm", "method": "l"}}, {"model": "highlighter.menuentry", "pk": 1, "fields": {"kind": "frm", "name": "Person Place Relation", "api": 1, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 2, "fields": {"kind": "frm", "name": "Person Institution Relation", "api": 2, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 3, "fields": {"kind": "frm", "name": "Person Person Relation", "api": 3, "parent": null, "project": 1}}, {"model": "auth.permission", "fields": {"name": "Can add log entry", "content_type": ["admin", "logentry"], "codename": "add_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can change log entry", "content_type": ["admin", "logentry"], "codename": "change_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete log entry", "content_type": ["admin", "logentry"], "codename": "delete_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can add permission", "content_type": ["auth", "permission"], "codename": "add_permission"}}, {"model": "auth.permission", "fields": {"name": "Can change permission", "content_type": ["auth", "permission"], "codename": "change_permission"}}, {"model": "auth.permission", "fields": {"name": "Can delete permission", "content_type": ["auth", "permission"], "codename": "delete_permission"}}, {"model": "auth.permission", "fields": {"name": "Can add group", "content_type": ["auth", "group"], "codename": "add_group"}}, {"model": "auth.permission", "fields": {"name": "Can change group", "content_type": ["auth", "group"], "codename": "change_group"}}, {"model": "auth.permission", "fields": {"name": "Can delete group", "content_type": ["auth", "group"], "codename": "delete_group"}}, {"model": "auth.permission", "fields": {"name": "Can add user", "content_type": ["auth", "user"], "codename": "add_user"}}, {"model": "auth.permission", "fields": {"name": "Can change user", "content_type": ["auth", "user"], "codename": "change_user"}}, {"model": "auth.permission", "fields": {"name": "Can delete user", "content_type": ["auth", "user"], "codename": "delete_user"}}, {"model": "auth.permission", "fields": {"name": "Can add content type", "content_type": ["contenttypes", "contenttype"], "codename": "add_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can change content type", "content_type": ["contenttypes", "contenttype"], "codename": "change_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete content type", "content_type": ["contenttypes", "contenttype"], "codename": "delete_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can add session", "content_type": ["sessions", "session"], "codename": "add_session"}}, {"model": "auth.permission", "fields": {"name": "Can change session", "content_type": ["sessions", "session"], "codename": "change_session"}}, {"model": "auth.permission", "fields": {"name": "Can delete session", "content_type": ["sessions", "session"], "codename": "delete_session"}}, {"model": "auth.permission", "fields": {"name": "Can add label", "content_type": ["labels", "label"], "codename": "add_label"}}, {"model": "auth.permission", "fields": {"name": "Can change label", "content_type": ["labels", "label"], "codename": "change_label"}}, {"model": "auth.permission", "fields": {"name": "Can delete label", "content_type": ["labels", "label"], "codename": "delete_label"}}, {"model": "auth.permission", "fields": {"name": "Can add person", "content_type": ["entities", "person"], "codename": "add_person"}}, {"model": "auth.permission", "fields": {"name": "Can change person", "content_type": ["entities", "person"], "codename": "change_person"}}, {"model": "auth.permission", "fields": {"name": "Can delete person", "content_type": ["entities", "person"], "codename": "delete_person"}}, {"model": "auth.permission", "fields": {"name": "Can add place", "content_type": ["entities", "place"], "codename": "add_place"}}, {"model": "auth.permission", "fields": {"name": "Can change place", "content_type": ["entities", "place"], "codename": "change_place"}}, {"model": "auth.permission", "fields": {"name": "Can delete place", "content_type": ["entities", "place"], "codename": "delete_place"}}, {"model": "auth.permission", "fields": {"name": "Can add institution", "content_type": ["entities", "institution"], "codename": "add_institution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution", "content_type": ["entities", "institution"], "codename": "change_institution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution", "content_type": ["entities", "institution"], "codename": "delete_institution"}}, {"model": "auth.permission", "fields": {"name": "Can add event", "content_type": ["entities", "event"], "codename": "add_event"}}, {"model": "auth.permission", "fields": {"name": "Can change event", "content_type": ["entities", "event"], "codename": "change_event"}}, {"model": "auth.permission", "fields": {"name": "Can delete event", "content_type": ["entities", "event"], "codename": "delete_event"}}, {"model": "auth.permission", "fields": {"name": "Can add work", "content_type": ["entities", "work"], "codename": "add_work"}}, {"model": "auth.permission", "fields": {"name": "Can change work", "content_type": ["entities", "work"], "codename": "change_work"}}, {"model": "auth.permission", "fields": {"name": "Can delete work", "content_type": ["entities", "work"], "codename": "delete_work"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "add_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "change_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can add work type", "content_type": ["vocabularies", "worktype"], "codename": "add_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can change work type", "content_type": ["vocabularies", "worktype"], "codename": "change_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can delete work type", "content_type": ["vocabularies", "worktype"], "codename": "delete_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can add title", "content_type": ["vocabularies", "title"], "codename": "add_title"}}, {"model": "auth.permission", "fields": {"name": "Can change title", "content_type": ["vocabularies", "title"], "codename": "change_title"}}, {"model": "auth.permission", "fields": {"name": "Can delete title", "content_type": ["vocabularies", "title"], "codename": "delete_title"}}, {"model": "auth.permission", "fields": {"name": "Can add profession type", "content_type": ["vocabularies", "professiontype"], "codename": "add_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change profession type", "content_type": ["vocabularies", "professiontype"], "codename": "change_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete profession type", "content_type": ["vocabularies", "professiontype"], "codename": "delete_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add place type", "content_type": ["vocabularies", "placetype"], "codename": "add_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can change place type", "content_type": ["vocabularies", "placetype"], "codename": "change_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can delete place type", "content_type": ["vocabularies", "placetype"], "codename": "delete_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can add institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "add_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "change_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "delete_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add event type", "content_type": ["vocabularies", "eventtype"], "codename": "add_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can change event type", "content_type": ["vocabularies", "eventtype"], "codename": "change_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can delete event type", "content_type": ["vocabularies", "eventtype"], "codename": "delete_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can add label type", "content_type": ["vocabularies", "labeltype"], "codename": "add_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can change label type", "content_type": ["vocabularies", "labeltype"], "codename": "change_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can delete label type", "content_type": ["vocabularies", "labeltype"], "codename": "delete_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can add collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "add_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "change_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "delete_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add text type", "content_type": ["vocabularies", "texttype"], "codename": "add_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can change text type", "content_type": ["vocabularies", "texttype"], "codename": "change_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete text type", "content_type": ["vocabularies", "texttype"], "codename": "delete_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can add person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "add_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "change_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "add_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "change_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "add_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "change_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "add_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "change_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person person", "content_type": ["relations", "personperson"], "codename": "add_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can change person person", "content_type": ["relations", "personperson"], "codename": "change_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person", "content_type": ["relations", "personperson"], "codename": "delete_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can add person place", "content_type": ["relations", "personplace"], "codename": "add_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can change person place", "content_type": ["relations", "personplace"], "codename": "change_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place", "content_type": ["relations", "personplace"], "codename": "delete_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution", "content_type": ["relations", "personinstitution"], "codename": "add_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution", "content_type": ["relations", "personinstitution"], "codename": "change_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution", "content_type": ["relations", "personinstitution"], "codename": "delete_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add person event", "content_type": ["relations", "personevent"], "codename": "add_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can change person event", "content_type": ["relations", "personevent"], "codename": "change_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event", "content_type": ["relations", "personevent"], "codename": "delete_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can add person work", "content_type": ["relations", "personwork"], "codename": "add_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can change person work", "content_type": ["relations", "personwork"], "codename": "change_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work", "content_type": ["relations", "personwork"], "codename": "delete_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place", "content_type": ["relations", "institutionplace"], "codename": "add_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place", "content_type": ["relations", "institutionplace"], "codename": "change_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place", "content_type": ["relations", "institutionplace"], "codename": "delete_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event", "content_type": ["relations", "institutionevent"], "codename": "add_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event", "content_type": ["relations", "institutionevent"], "codename": "change_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event", "content_type": ["relations", "institutionevent"], "codename": "delete_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work", "content_type": ["relations", "institutionwork"], "codename": "add_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work", "content_type": ["relations", "institutionwork"], "codename": "change_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work", "content_type": ["relations", "institutionwork"], "codename": "delete_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can add place place", "content_type": ["relations", "placeplace"], "codename": "add_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can change place place", "content_type": ["relations", "placeplace"], "codename": "change_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place", "content_type": ["relations", "placeplace"], "codename": "delete_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can add place event", "content_type": ["relations", "placeevent"], "codename": "add_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can change place event", "content_type": ["relations", "placeevent"], "codename": "change_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event", "content_type": ["relations", "placeevent"], "codename": "delete_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can add place work", "content_type": ["relations", "placework"], "codename": "add_placework"}}, {"model": "auth.permission", "fields": {"name": "Can change place work", "content_type": ["relations", "placework"], "codename": "change_placework"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work", "content_type": ["relations", "placework"], "codename": "delete_placework"}}, {"model": "auth.permission", "fields": {"name": "Can add event event", "content_type": ["relations", "eventevent"], "codename": "add_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can change event event", "content_type": ["relations", "eventevent"], "codename": "change_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event", "content_type": ["relations", "eventevent"], "codename": "delete_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can add event work", "content_type": ["relations", "eventwork"], "codename": "add_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can change event work", "content_type": ["relations", "eventwork"], "codename": "change_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work", "content_type": ["relations", "eventwork"], "codename": "delete_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can add work work", "content_type": ["relations", "workwork"], "codename": "add_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can change work work", "content_type": ["relations", "workwork"], "codename": "change_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work", "content_type": ["relations", "workwork"], "codename": "delete_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can add temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "add_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can change temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "change_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can add source", "content_type": ["metainfo", "source"], "codename": "add_source"}}, {"model": "auth.permission", "fields": {"name": "Can change source", "content_type": ["metainfo", "source"], "codename": "change_source"}}, {"model": "auth.permission", "fields": {"name": "Can delete source", "content_type": ["metainfo", "source"], "codename": "delete_source"}}, {"model": "auth.permission", "fields": {"name": "Can add collection", "content_type": ["metainfo", "collection"], "codename": "add_collection"}}, {"model": "auth.permission", "fields": {"name": "Can change collection", "content_type": ["metainfo", "collection"], "codename": "change_collection"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection", "content_type": ["metainfo", "collection"], "codename": "delete_collection"}}, {"model": "auth.permission", "fields": {"name": "Can add text", "content_type": ["metainfo", "text"], "codename": "add_text"}}, {"model": "auth.permission", "fields": {"name": "Can change text", "content_type": ["metainfo", "text"], "codename": "change_text"}}, {"model": "auth.permission", "fields": {"name": "Can delete text", "content_type": ["metainfo", "text"], "codename": "delete_text"}}, {"model": "auth.permission", "fields": {"name": "Can add uri", "content_type": ["metainfo", "uri"], "codename": "add_uri"}}, {"model": "auth.permission", "fields": {"name": "Can change uri", "content_type": ["metainfo", "uri"], "codename": "change_uri"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri", "content_type": ["metainfo", "uri"], "codename": "delete_uri"}}, {"model": "auth.permission", "fields": {"name": "Can add project", "content_type": ["highlighter", "project"], "codename": "add_project"}}, {"model": "auth.permission", "fields": {"name": "Can change project", "content_type": ["highlighter", "project"], "codename": "change_project"}}, {"model": "auth.permission", "fields": {"name": "Can delete project", "content_type": ["highlighter", "project"], "codename": "delete_project"}}, {"model": "auth.permission", "fields": {"name": "Can add annotation", "content_type": ["highlighter", "annotation"], "codename": "add_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can change annotation", "content_type": ["highlighter", "annotation"], "codename": "change_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can delete annotation", "content_type": ["highlighter", "annotation"], "codename": "delete_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "add_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "change_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "delete_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can add menu entry", "content_type": ["highlighter", "menuentry"], "codename": "add_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can change menu entry", "content_type": ["highlighter", "menuentry"], "codename": "change_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete menu entry", "content_type": ["highlighter", "menuentry"], "codename": "delete_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can add revision", "content_type": ["reversion", "revision"], "codename": "add_revision"}}, {"model": "auth.permission", "fields": {"name": "Can change revision", "content_type": ["reversion", "revision"], "codename": "change_revision"}}, {"model": "auth.permission", "fields": {"name": "Can delete revision", "content_type": ["reversion", "revision"], "codename": "delete_revision"}}, {"model": "auth.permission", "fields": {"name": "Can add version", "content_type": ["reversion", "version"], "codename": "add_version"}}, {"model": "auth.permission", "fields": {"name": "Can change version", "content_type": ["reversion", "version"], "codename": "change_version"}}, {"model": "auth.permission", "fields": {"name": "Can delete version", "content_type": ["reversion", "version"], "codename": "delete_version"}}, {"model": "auth.permission", "fields": {"name": "Can add uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "add_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can change uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "change_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "delete_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can add vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "add_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can change vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "change_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "delete_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can add text high", "content_type": ["highlighter", "texthigh"], "codename": "add_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can change text high", "content_type": ["highlighter", "texthigh"], "codename": "change_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can delete text high", "content_type": ["highlighter", "texthigh"], "codename": "delete_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can add annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "add_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can change annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "change_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can delete annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "delete_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can add Token", "content_type": ["authtoken", "token"], "codename": "add_token"}}, {"model": "auth.permission", "fields": {"name": "Can change Token", "content_type": ["authtoken", "token"], "codename": "change_token"}}, {"model": "auth.permission", "fields": {"name": "Can delete Token", "content_type": ["authtoken", "token"], "codename": "delete_token"}}, {"model": "auth.permission", "fields": {"name": "Can add user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "add_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can change user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "change_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can delete user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "delete_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can add group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "add_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can change group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "change_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can delete group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "delete_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "add_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "change_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "delete_institutionworkrelation"}}, {"model": "auth.group", "fields": {"name": "semac", "permissions": [["add_contenttype", "contenttypes", "contenttype"], ["change_contenttype", "contenttypes", "contenttype"], ["delete_contenttype", "contenttypes", "contenttype"], ["add_event", "entities", "event"], ["change_event", "entities", "event"], ["delete_event", "entities", "event"], ["add_institution", "entities", "institution"], ["change_institution", "entities", "institution"], ["delete_institution", "entities", "institution"], ["add_person", "entities", "person"], ["change_person", "entities", "person"], ["delete_person", "entities", "person"], ["add_place", "entities", "place"], ["change_place", "entities", "place"], ["delete_place", "entities", "place"], ["add_work", "entities", "work"], ["change_work", "entities", "work"], ["delete_work", "entities", "work"], ["add_annotation", "highlighter", "annotation"], ["change_annotation", "highlighter", "annotation"], ["delete_annotation", "highlighter", "annotation"], ["add_menuentry", "highlighter", "menuentry"], ["change_menuentry", "highlighter", "menuentry"], ["delete_menuentry", "highlighter", "menuentry"], ["add_project", "highlighter", "project"], ["change_project", "highlighter", "project"], ["delete_project", "highlighter", "project"], ["add_vocabularyapi", "highlighter", "vocabularyapi"], ["change_vocabularyapi", "highlighter", "vocabularyapi"], ["delete_vocabularyapi", "highlighter", "vocabularyapi"], ["add_label", "labels", "label"], ["change_label", "labels", "label"], ["delete_label", "labels", "label"], ["add_collection", "metainfo", "collection"], ["change_collection", "metainfo", "collection"], ["delete_collection", "metainfo", "collection"], ["add_source", "metainfo", "source"], ["change_source", "metainfo", "source"], ["delete_source", "metainfo", "source"], ["add_tempentityclass", "metainfo", "tempentityclass"], ["change_tempentityclass", "metainfo", "tempentityclass"], ["delete_tempentityclass", "metainfo", "tempentityclass"], ["add_text", "metainfo", "text"], ["change_text", "metainfo", "text"], ["delete_text", "metainfo", "text"], ["add_uri", "metainfo", "uri"], ["change_uri", "metainfo", "uri"], ["delete_uri", "metainfo", "uri"], ["add_eventevent", "relations", "eventevent"], ["change_eventevent", "relations", "eventevent"], ["delete_eventevent", "relations", "eventevent"], ["add_eventwork", "relations", "eventwork"], ["change_eventwork", "relations", "eventwork"], ["delete_eventwork", "relations", "eventwork"], ["add_institutionevent", "relations", "institutionevent"], ["change_institutionevent", "relations", "institutionevent"], ["delete_institutionevent", "relations", "institutionevent"], ["add_institutioninstitution", "relations", "institutioninstitution"], ["change_institutioninstitution", "relations", "institutioninstitution"], ["delete_institutioninstitution", "relations", "institutioninstitution"], ["add_institutionplace", "relations", "institutionplace"], ["change_institutionplace", "relations", "institutionplace"], ["delete_institutionplace", "relations", "institutionplace"], ["add_institutionwork", "relations", "institutionwork"], ["change_institutionwork", "relations", "institutionwork"], ["delete_institutionwork", "relations", "institutionwork"], ["add_personevent", "relations", "personevent"], ["change_personevent", "relations", "personevent"], ["delete_personevent", "relations", "personevent"], ["add_personinstitution", "relations", "personinstitution"], ["change_personinstitution", "relations", "personinstitution"], ["delete_personinstitution", "relations", "personinstitution"], ["add_personperson", "relations", "personperson"], ["change_personperson", "relations", "personperson"], ["delete_personperson", "relations", "personperson"], ["add_personplace", "relations", "personplace"], ["change_personplace", "relations", "personplace"], ["delete_personplace", "relations", "personplace"], ["add_personwork", "relations", "personwork"], ["change_personwork", "relations", "personwork"], ["delete_personwork", "relations", "personwork"], ["add_placeevent", "relations", "placeevent"], ["change_placeevent", "relations", "placeevent"], ["delete_placeevent", "relations", "placeevent"], ["add_placeplace", "relations", "placeplace"], ["change_placeplace", "relations", "placeplace"], ["delete_placeplace", "relations", "placeplace"], ["add_placework", "relations", "placework"], ["change_placework", "relations", "placework"], ["delete_placework", "relations", "placework"], ["add_workwork", "relations", "workwork"], ["change_workwork", "relations", "workwork"], ["delete_workwork", "relations", "workwork"], ["add_session", "sessions", "session"], ["change_session", "sessions", "session"], ["delete_session", "sessions", "session"], ["add_collectiontype", "vocabularies", "collectiontype"], ["change_collectiontype", "vocabularies", "collectiontype"], ["delete_collectiontype", "vocabularies", "collectiontype"], ["add_eventeventrelation", "vocabularies", "eventeventrelation"], ["change_eventeventrelation", "vocabularies", "eventeventrelation"], ["delete_eventeventrelation", "vocabularies", "eventeventrelation"], ["add_eventtype", "vocabularies", "eventtype"], ["change_eventtype", "vocabularies", "eventtype"], ["delete_eventtype", "vocabularies", "eventtype"], ["add_eventworkrelation", "vocabularies", "eventworkrelation"], ["change_eventworkrelation", "vocabularies", "eventworkrelation"], ["delete_eventworkrelation", "vocabularies", "eventworkrelation"], ["add_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["change_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["delete_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["add_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["change_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["delete_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["add_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["change_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["delete_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["add_institutiontype", "vocabularies", "institutiontype"], ["change_institutiontype", "vocabularies", "institutiontype"], ["delete_institutiontype", "vocabularies", "institutiontype"], ["add_labeltype", "vocabularies", "labeltype"], ["change_labeltype", "vocabularies", "labeltype"], ["delete_labeltype", "vocabularies", "labeltype"], ["add_personeventrelation", "vocabularies", "personeventrelation"], ["change_personeventrelation", "vocabularies", "personeventrelation"], ["delete_personeventrelation", "vocabularies", "personeventrelation"], ["add_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["change_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["delete_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["add_personpersonrelation", "vocabularies", "personpersonrelation"], ["change_personpersonrelation", "vocabularies", "personpersonrelation"], ["delete_personpersonrelation", "vocabularies", "personpersonrelation"], ["add_personplacerelation", "vocabularies", "personplacerelation"], ["change_personplacerelation", "vocabularies", "personplacerelation"], ["delete_personplacerelation", "vocabularies", "personplacerelation"], ["add_personworkrelation", "vocabularies", "personworkrelation"], ["change_personworkrelation", "vocabularies", "personworkrelation"], ["delete_personworkrelation", "vocabularies", "personworkrelation"], ["add_placeeventrelation", "vocabularies", "placeeventrelation"], ["change_placeeventrelation", "vocabularies", "placeeventrelation"], ["delete_placeeventrelation", "vocabularies", "placeeventrelation"], ["add_placeplacerelation", "vocabularies", "placeplacerelation"], ["change_placeplacerelation", "vocabularies", "placeplacerelation"], ["delete_placeplacerelation", "vocabularies", "placeplacerelation"], ["add_placetype", "vocabularies", "placetype"], ["change_placetype", "vocabularies", "placetype"], ["delete_placetype", "vocabularies", "placetype"], ["add_placeworkrelation", "vocabularies", "placeworkrelation"], ["change_placeworkrelation", "vocabularies", "placeworkrelation"], ["delete_placeworkrelation", "vocabularies", "placeworkrelation"], ["add_professiontype", "vocabularies", "professiontype"], ["change_professiontype", "vocabularies", "professiontype"], ["delete_professiontype", "vocabularies", "professiontype"], ["add_relationbaseclass", "vocabularies", "relationbaseclass"], ["change_relationbaseclass", "vocabularies", "relationbaseclass"], ["delete_relationbaseclass", "vocabularies", "relationbaseclass"], ["add_texttype", "vocabularies", "texttype"], ["change_texttype", "vocabularies", "texttype"], ["delete_texttype", "vocabularies", "texttype"], ["add_title", "vocabularies", "title"], ["change_title", "vocabularies", "title"], ["delete_title", "vocabularies", "title"], ["add_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["change_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["delete_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["add_vocabsuri", "vocabularies", "vocabsuri"], ["change_vocabsuri", "vocabularies", "vocabsuri"], ["delete_vocabsuri", "vocabularies", "vocabsuri"], ["add_worktype", "vocabularies", "worktype"], ["change_worktype", "vocabularies", "worktype"], ["delete_worktype", "vocabularies", "worktype"], ["add_workworkrelation", "vocabularies", "workworkrelation"], ["change_workworkrelation", "vocabularies", "workworkrelation"], ["delete_workworkrelation", "vocabularies", "workworkrelation"]]}}, {"model": "auth.group", "fields": {"name": "apis", "permissions": []}}, {"model": "auth.group", "fields": {"name": "staribacher", "permissions": []}}, {"model": "auth.group", "fields": {"name": "Editoren Apis", "permissions": []}}, {"model": "auth.user", "fields": {"password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", "last_login": "2017-04-19T08:59:07Z", "is_superuser": true, "username": "sennierer", "first_name": "Matthias", "last_name": "Schl\u00f6gl", "email": "matthias.schloegl@oeaw.ac.at", "is_staff": true, "is_active": true, "date_joined": "2016-04-05T15:11:00Z", "groups": [["apis"], ["Editoren Apis"]], "user_permissions": [["add_logentry", "admin", "logentry"], ["change_logentry", "admin", "logentry"], ["delete_logentry", "admin", "logentry"], ["add_group", "auth", "group"], ["change_group", "auth", "group"], ["delete_group", "auth", "group"], ["add_permission", "auth", "permission"], ["change_permission", "auth", "permission"], ["delete_permission", "auth", "permission"], ["add_user", "auth", "user"], ["change_user", "auth", "user"], ["delete_user", "auth", "user"], ["add_contenttype", "contenttypes", "contenttype"], ["change_contenttype", "contenttypes", "contenttype"], ["delete_contenttype", "contenttypes", "contenttype"], ["add_event", "entities", "event"], ["change_event", "entities", "event"], ["delete_event", "entities", "event"], ["add_institution", "entities", "institution"], ["change_institution", "entities", "institution"], ["delete_institution", "entities", "institution"], ["add_person", "entities", "person"], ["change_person", "entities", "person"], ["delete_person", "entities", "person"], ["add_place", "entities", "place"], ["change_place", "entities", "place"], ["delete_place", "entities", "place"], ["add_work", "entities", "work"], ["change_work", "entities", "work"], ["delete_work", "entities", "work"], ["add_annotation", "highlighter", "annotation"], ["change_annotation", "highlighter", "annotation"], ["delete_annotation", "highlighter", "annotation"], ["add_menuentry", "highlighter", "menuentry"], ["change_menuentry", "highlighter", "menuentry"], ["delete_menuentry", "highlighter", "menuentry"], ["add_project", "highlighter", "project"], ["change_project", "highlighter", "project"], ["delete_project", "highlighter", "project"], ["add_vocabularyapi", "highlighter", "vocabularyapi"], ["change_vocabularyapi", "highlighter", "vocabularyapi"], ["delete_vocabularyapi", "highlighter", "vocabularyapi"], ["add_label", "labels", "label"], ["change_label", "labels", "label"], ["delete_label", "labels", "label"], ["add_collection", "metainfo", "collection"], ["change_collection", "metainfo", "collection"], ["delete_collection", "metainfo", "collection"], ["add_source", "metainfo", "source"], ["change_source", "metainfo", "source"], ["delete_source", "metainfo", "source"], ["add_tempentityclass", "metainfo", "tempentityclass"], ["change_tempentityclass", "metainfo", "tempentityclass"], ["delete_tempentityclass", "metainfo", "tempentityclass"], ["add_text", "metainfo", "text"], ["change_text", "metainfo", "text"], ["delete_text", "metainfo", "text"], ["add_uri", "metainfo", "uri"], ["change_uri", "metainfo", "uri"], ["delete_uri", "metainfo", "uri"], ["add_uricandidate", "metainfo", "uricandidate"], ["change_uricandidate", "metainfo", "uricandidate"], ["delete_uricandidate", "metainfo", "uricandidate"], ["add_eventevent", "relations", "eventevent"], ["change_eventevent", "relations", "eventevent"], ["delete_eventevent", "relations", "eventevent"], ["add_eventwork", "relations", "eventwork"], ["change_eventwork", "relations", "eventwork"], ["delete_eventwork", "relations", "eventwork"], ["add_institutionevent", "relations", "institutionevent"], ["change_institutionevent", "relations", "institutionevent"], ["delete_institutionevent", "relations", "institutionevent"], ["add_institutioninstitution", "relations", "institutioninstitution"], ["change_institutioninstitution", "relations", "institutioninstitution"], ["delete_institutioninstitution", "relations", "institutioninstitution"], ["add_institutionplace", "relations", "institutionplace"], ["change_institutionplace", "relations", "institutionplace"], ["delete_institutionplace", "relations", "institutionplace"], ["add_institutionwork", "relations", "institutionwork"], ["change_institutionwork", "relations", "institutionwork"], ["delete_institutionwork", "relations", "institutionwork"], ["add_personevent", "relations", "personevent"], ["change_personevent", "relations", "personevent"], ["delete_personevent", "relations", "personevent"], ["add_personinstitution", "relations", "personinstitution"], ["change_personinstitution", "relations", "personinstitution"], ["delete_personinstitution", "relations", "personinstitution"], ["add_personperson", "relations", "personperson"], ["change_personperson", "relations", "personperson"], ["delete_personperson", "relations", "personperson"], ["add_personplace", "relations", "personplace"], ["change_personplace", "relations", "personplace"], ["delete_personplace", "relations", "personplace"], ["add_personwork", "relations", "personwork"], ["change_personwork", "relations", "personwork"], ["delete_personwork", "relations", "personwork"], ["add_placeevent", "relations", "placeevent"], ["change_placeevent", "relations", "placeevent"], ["delete_placeevent", "relations", "placeevent"], ["add_placeplace", "relations", "placeplace"], ["change_placeplace", "relations", "placeplace"], ["delete_placeplace", "relations", "placeplace"], ["add_placework", "relations", "placework"], ["change_placework", "relations", "placework"], ["delete_placework", "relations", "placework"], ["add_workwork", "relations", "workwork"], ["change_workwork", "relations", "workwork"], ["delete_workwork", "relations", "workwork"], ["add_revision", "reversion", "revision"], ["change_revision", "reversion", "revision"], ["delete_revision", "reversion", "revision"], ["add_version", "reversion", "version"], ["change_version", "reversion", "version"], ["delete_version", "reversion", "version"], ["add_session", "sessions", "session"], ["change_session", "sessions", "session"], ["delete_session", "sessions", "session"], ["add_collectiontype", "vocabularies", "collectiontype"], ["change_collectiontype", "vocabularies", "collectiontype"], ["delete_collectiontype", "vocabularies", "collectiontype"], ["add_eventeventrelation", "vocabularies", "eventeventrelation"], ["change_eventeventrelation", "vocabularies", "eventeventrelation"], ["delete_eventeventrelation", "vocabularies", "eventeventrelation"], ["add_eventtype", "vocabularies", "eventtype"], ["change_eventtype", "vocabularies", "eventtype"], ["delete_eventtype", "vocabularies", "eventtype"], ["add_eventworkrelation", "vocabularies", "eventworkrelation"], ["change_eventworkrelation", "vocabularies", "eventworkrelation"], ["delete_eventworkrelation", "vocabularies", "eventworkrelation"], ["add_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["change_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["delete_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["add_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["change_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["delete_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["add_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["change_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["delete_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["add_institutiontype", "vocabularies", "institutiontype"], ["change_institutiontype", "vocabularies", "institutiontype"], ["delete_institutiontype", "vocabularies", "institutiontype"], ["add_labeltype", "vocabularies", "labeltype"], ["change_labeltype", "vocabularies", "labeltype"], ["delete_labeltype", "vocabularies", "labeltype"], ["add_personeventrelation", "vocabularies", "personeventrelation"], ["change_personeventrelation", "vocabularies", "personeventrelation"], ["delete_personeventrelation", "vocabularies", "personeventrelation"], ["add_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["change_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["delete_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["add_personpersonrelation", "vocabularies", "personpersonrelation"], ["change_personpersonrelation", "vocabularies", "personpersonrelation"], ["delete_personpersonrelation", "vocabularies", "personpersonrelation"], ["add_personplacerelation", "vocabularies", "personplacerelation"], ["change_personplacerelation", "vocabularies", "personplacerelation"], ["delete_personplacerelation", "vocabularies", "personplacerelation"], ["add_personworkrelation", "vocabularies", "personworkrelation"], ["change_personworkrelation", "vocabularies", "personworkrelation"], ["delete_personworkrelation", "vocabularies", "personworkrelation"], ["add_placeeventrelation", "vocabularies", "placeeventrelation"], ["change_placeeventrelation", "vocabularies", "placeeventrelation"], ["delete_placeeventrelation", "vocabularies", "placeeventrelation"], ["add_placeplacerelation", "vocabularies", "placeplacerelation"], ["change_placeplacerelation", "vocabularies", "placeplacerelation"], ["delete_placeplacerelation", "vocabularies", "placeplacerelation"], ["add_placetype", "vocabularies", "placetype"], ["change_placetype", "vocabularies", "placetype"], ["delete_placetype", "vocabularies", "placetype"], ["add_placeworkrelation", "vocabularies", "placeworkrelation"], ["change_placeworkrelation", "vocabularies", "placeworkrelation"], ["delete_placeworkrelation", "vocabularies", "placeworkrelation"], ["add_professiontype", "vocabularies", "professiontype"], ["change_professiontype", "vocabularies", "professiontype"], ["delete_professiontype", "vocabularies", "professiontype"], ["add_relationbaseclass", "vocabularies", "relationbaseclass"], ["change_relationbaseclass", "vocabularies", "relationbaseclass"], ["delete_relationbaseclass", "vocabularies", "relationbaseclass"], ["add_texttype", "vocabularies", "texttype"], ["change_texttype", "vocabularies", "texttype"], ["delete_texttype", "vocabularies", "texttype"], ["add_title", "vocabularies", "title"], ["change_title", "vocabularies", "title"], ["delete_title", "vocabularies", "title"], ["add_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["change_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["delete_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["add_vocabsuri", "vocabularies", "vocabsuri"], ["change_vocabsuri", "vocabularies", "vocabsuri"], ["delete_vocabsuri", "vocabularies", "vocabsuri"], ["add_worktype", "vocabularies", "worktype"], ["change_worktype", "vocabularies", "worktype"], ["delete_worktype", "vocabularies", "worktype"], ["add_workworkrelation", "vocabularies", "workworkrelation"], ["change_workworkrelation", "vocabularies", "workworkrelation"], ["delete_workworkrelation", "vocabularies", "workworkrelation"]]}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1, "fields": {"name": "old entity of", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Place description \u00d6BL", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "vocabsor similar import", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "\u00d6BL place name", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "seat of a third-order administrative division (PPLA3)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "weitere Namensformen", "description": "wie im Gideon, statt alternative name", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "independent political entity (PCLI)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "populated place (PPL)", "description": "a city, town, village, or other agglomeration of buildings where people live and work", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "seat of a fourth-order administrative division (PPLA4)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "seat of a second-order administrative division (PPLA2)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "capital of a political entity (PPLC)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "seat of a first-order administrative division (PPLA)", "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 125, "fields": {"name": "test data import", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Literatur, Buch- und Zeitungswesen", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "\u00d6BL Haupttext", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "\u00d6BL Kurzinfo", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Rechtswesen und Rechtswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 133, "fields": {"name": "Rechtshistoriker und Abgeordneter", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Politik", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 135, "fields": {"name": "Naturwissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Botaniker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 137, "fields": {"name": "Wirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 138, "fields": {"name": "Instrumentenbauer", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 139, "fields": {"name": "Bildende und angewandte Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Maler", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 141, "fields": {"name": "Religionen und Theologie", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Bischof", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 143, "fields": {"name": "Milit\u00e4r", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "General", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Verwaltungsjurist und Politiker", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 146, "fields": {"name": "Verwaltung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 147, "fields": {"name": "Ministerpr\u00e4sident", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Zoologe", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Geisteswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Arch\u00e4ologe", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Musik und darstellende Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Schauspieler und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Medizin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "P\u00e4diater", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Technik", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Milit\u00e4rtechniker, Offizier und ungarischer Freiheitsk\u00e4mpfer", "description": "", "parent_class": 157, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Beamter und Fachschriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Historiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Architekt", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Diplomat", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Sport", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Eiskunstl\u00e4uferin", "description": "", "parent_class": 163, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 165, "fields": {"name": "Gro\u00dfindustrielle", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 166, "fields": {"name": "Diverse", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Bautechniker", "description": "", "parent_class": 157, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Maler und Graphiker", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Politikerin und Schriftstellerin", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Schauspieler, Theaterdirektor und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Physiologe", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Jurist", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Fabrikant", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Schriftsteller und Journalist", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Internist", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Landesverteidiger und Schriftsteller", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 177, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Malerin", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 179, "fields": {"name": "Volkss\u00e4nger", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Sozial- und Wirtschaftswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Betriebswirtschafter", "description": "", "parent_class": 180, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 182, "fields": {"name": "Slawist und Linguist", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 183, "fields": {"name": "Admiral", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Stigmatisierte", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 187, "fields": {"name": "Pharmazeut", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Unterrichtswesen", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Lehrer", "description": "", "parent_class": 188, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Montanist und Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 191, "fields": {"name": "Maler und Radierer", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Philologe und Literarhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Biologe und Lehrer", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Physiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Offizier und Diplomat", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Theologe", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Ornithologe", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Diplomat und Politiker", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Lokalhistoriker, Gewerbetreibender und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Schriftsteller und Seelsorger", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Industrieller", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Mediziner", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Komponist, Chorleiter und Musikkritiker", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Kirchenhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Journalist und Lehrer", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Fabrikant und Politiker", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "S\u00e4nger und Schauspieler", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Chirurg", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 209, "fields": {"name": "Jurist und Beamter", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Feldmarschalleutnant und Sicherheitsbeamter", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Pianist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Politiker und Jurist", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 214, "fields": {"name": "Musiker und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Bildhauer", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Harfenist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 217, "fields": {"name": "Land- und Forstwirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 218, "fields": {"name": "Landwirt und Weinhauer", "description": "", "parent_class": 217, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 219, "fields": {"name": "Ordensangeh\u00f6riger und Stifter", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 220, "fields": {"name": "Historiker und Lehrer", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 221, "fields": {"name": "Politiker und Kaufmann", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 222, "fields": {"name": "Journalist und Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Maler und Karikaturist", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Offizier", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Bischof und Missionar", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 226, "fields": {"name": "P\u00e4dagogin und Physikerin", "description": "", "parent_class": 188, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 227, "fields": {"name": "Historiker und Byzantinist", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Archivar und Historiker", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Geistlicher, Historiker und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 230, "fields": {"name": "Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Offizier und Politiker", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "S\u00e4nger, Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 233, "fields": {"name": "Journalist und Politiker", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Pfadfinderf\u00fchrer und Offizier", "description": "", "parent_class": 166, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "F\u00fcrstbischof", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 236, "fields": {"name": "Place review comments", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 371, "fields": {"name": "first-order administrative division (ADM1)", "description": "a primary administrative division of a country, such as a state in the United States", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "third-order administrative division (ADM3)", "description": "a subdivision of a second-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "fifth-order administrative division (ADM5)", "description": "a subdivision of a fourth-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Krieg", "description": "auch Revolution und B\u00fcrgerkrieg, Unterkategorie ist Schlacht", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Attentat", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 384, "fields": {"name": "Epidemie", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Verleihung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Festzug", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Kongress", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "R\u00fccktritt", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Fertigstellung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 392, "fields": {"name": "Erstauff\u00fchrung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 394, "fields": {"name": "Berufung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Abspaltung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "nahm Teil an", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "hatte als Teilnehmer", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Schlacht", "description": "", "parent_class": 380, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Friedensverhandlung", "description": "", "parent_class": 380, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "historical first-order administrative division (ADM1H)", "description": "a former first-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "author", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Publikation", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Pseudonym", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "M\u00e4dchenname", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 432, "fields": {"name": "K\u00fcnstlername", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "fourth-order administrative division (ADM4)", "description": "a subdivision of a third-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 452, "fields": {"name": "second-order administrative division (ADM2)", "description": "a subdivision of a first-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Graf", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Herzog", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 462, "fields": {"name": "Freiherr", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Erzherzog", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "K\u00f6nig", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Kaiser", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 466, "fields": {"name": "F\u00fcrst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Freiin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Freifrau", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "F\u00fcrstin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 470, "fields": {"name": "Erzherz\u00f6gin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "K\u00f6nigin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 483, "fields": {"name": "Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Pianist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "place of birth", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "place of death", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "alternative Namensform", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 598, "fields": {"name": "Name laut \u00d6BL XML", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 606, "fields": {"name": "Ehename", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Taufname", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 653, "fields": {"name": "not defined", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1750, "fields": {"name": "Pianistin", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "Komponist und Musiklehrer", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5578, "fields": {"name": "Schriftstellerin, \u00dcbersetzerin und Pianistin", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5599, "fields": {"name": "Pianist, P\u00e4dagoge und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5608, "fields": {"name": "undefined", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5702, "fields": {"name": "situated in", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 8}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5708, "fields": {"name": "is superior of", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5709, "fields": {"name": "is succeeding", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5711, "fields": {"name": "is preceding", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5729, "fields": {"name": "section of populated place (PPLX)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5741, "fields": {"name": "family member", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5742, "fields": {"name": "friend", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5743, "fields": {"name": "affiliation", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 4}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5765, "fields": {"name": "administrative division (ADMD)", "description": "an administrative division of a country, undifferentiated as to administrative level", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5772, "fields": {"name": "research dataset", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 11}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5789, "fields": {"name": "political entity (PCL)", "description": "", "parent_class": null, "status": "can", "userAdded": null, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5808, "fields": {"name": "dependent political entity (PCLD)", "description": "", "parent_class": null, "status": "can", "userAdded": null, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5811, "fields": {"name": "Commentary Staribacher", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.relationbaseclass", "pk": 1, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 8, "fields": {"name_reverse": "includes"}}, {"model": "vocabularies.relationbaseclass", "pk": 398, "fields": {"name_reverse": "hatte als Teilnehmer"}}, {"model": "vocabularies.relationbaseclass", "pk": 399, "fields": {"name_reverse": "nahm Teil an"}}, {"model": "vocabularies.relationbaseclass", "pk": 424, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 595, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 596, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5608, "fields": {"name_reverse": "undefined"}}, {"model": "vocabularies.relationbaseclass", "pk": 5702, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5708, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5709, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5711, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5741, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5742, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5743, "fields": {"name_reverse": ""}}, {"model": "vocabularies.worktype", "pk": 429, "fields": {}}, {"model": "vocabularies.title", "pk": 460, "fields": {"abbreviation": "Gf."}}, {"model": "vocabularies.title", "pk": 461, "fields": {"abbreviation": "Hg."}}, {"model": "vocabularies.title", "pk": 462, "fields": {"abbreviation": "Frh."}}, {"model": "vocabularies.title", "pk": 463, "fields": {"abbreviation": "Erzhg."}}, {"model": "vocabularies.title", "pk": 464, "fields": {"abbreviation": "Kg."}}, {"model": "vocabularies.title", "pk": 465, "fields": {"abbreviation": "K."}}, {"model": "vocabularies.title", "pk": 466, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 467, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 468, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 469, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 470, "fields": {"abbreviation": "Erzhgn."}}, {"model": "vocabularies.title", "pk": 474, "fields": {"abbreviation": "Kngn."}}, {"model": "vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 133, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 135, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 137, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 138, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 139, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 141, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 143, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 146, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 147, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 149, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 165, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 166, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 172, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 177, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 179, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 182, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 183, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 187, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 191, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 209, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 214, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 217, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 218, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 219, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 220, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 221, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 222, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 226, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 227, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 230, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 233, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 483, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 1750, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 2054, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5578, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5599, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "vocabularies.placetype", "pk": 11, "fields": {}}, {"model": "vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "vocabularies.placetype", "pk": 371, "fields": {}}, {"model": "vocabularies.placetype", "pk": 373, "fields": {}}, {"model": "vocabularies.placetype", "pk": 375, "fields": {}}, {"model": "vocabularies.placetype", "pk": 420, "fields": {}}, {"model": "vocabularies.placetype", "pk": 443, "fields": {}}, {"model": "vocabularies.placetype", "pk": 452, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5729, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5765, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5789, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5808, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 380, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 382, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 384, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 385, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 386, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 388, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 390, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 391, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 392, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 393, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 394, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 396, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 400, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 401, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 4, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 6, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 430, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 431, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 432, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 433, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 597, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 598, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 606, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 612, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 653, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 3, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 125, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 5772, "fields": {}}, {"model": "vocabularies.texttype", "pk": 2, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 130, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 131, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 236, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 5811, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.personpersonrelation", "pk": 5608, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5741, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5742, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 595, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 596, "fields": {}}, {"model": "vocabularies.personinstitutionrelation", "pk": 5743, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 398, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 399, "fields": {}}, {"model": "vocabularies.personworkrelation", "pk": 424, "fields": {}}, {"model": "vocabularies.institutionplacerelation", "pk": 5702, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5708, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5709, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5711, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 1, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 8, "fields": {}}, {"model": "metainfo.collection", "pk": 29, "fields": {"name": "Testdata \u00d6BL", "description": "", "collection_type": null, "groups_allowed": []}}, {"model": "highlighter.project", "pk": 1, "fields": {"name": "highlight places", "user": ["sennierer"], "description": "", "base_url": "", "store_text": false}}, {"model": "highlighter.annotation", "pk": 237, "fields": {"start": 239, "end": 250, "orig_string": "Carl Czerny", "text": 47030, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92840]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 331, "fields": {"start": 879, "end": 899, "orig_string": "Ludwig van Beethoven", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92930]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 332, "fields": {"start": 1362, "end": 1380, "orig_string": "Sigismund Thalberg", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92931]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 333, "fields": {"start": 1383, "end": 1408, "orig_string": "Marie Leopoldine Blahetka", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92932]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 334, "fields": {"start": 1439, "end": 1454, "orig_string": "Franz von Liszt", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92933]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 335, "fields": {"start": 1736, "end": 1751, "orig_string": "Ignaz Moscheles", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92934]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 336, "fields": {"start": 3031, "end": 3043, "orig_string": "Anton Reicha", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92935]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1214, "fields": {"start": 40, "end": 55, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1215, "fields": {"start": 141, "end": 151, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1216, "fields": {"start": 225, "end": 262, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1217, "fields": {"start": 354, "end": 378, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1218, "fields": {"start": 451, "end": 478, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1219, "fields": {"start": 500, "end": 508, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1220, "fields": {"start": 549, "end": 566, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1221, "fields": {"start": 650, "end": 670, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "authtoken.token", "pk": "bb650ee43b63b5e13cbac9320157b08c36099452", "fields": {"user": ["sennierer"], "created": "2016-08-26T08:01:26Z"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2016-04-07T11:10:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "13", "object_repr": "oebl", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2016-04-07T11:11:00Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "13", "object_repr": "oebl", "action_flag": 2, "change_message": "Changed is_staff and user_permissions."}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2016-04-13T15:46:02Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "40", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2016-04-14T11:55:13Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "50", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2016-04-14T11:55:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "53", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2016-04-14T12:41:46Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2016-04-15T07:22:05Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2016-04-15T07:22:26Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2016-04-18T11:07:39Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "6", "object_repr": "testcollection 18.4", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2016-04-18T11:16:20Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "107", "object_repr": "Editlogs", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2016-04-26T09:31:21Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "44", "object_repr": "place of death", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2016-04-26T09:31:47Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "43", "object_repr": "place of birth", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2016-04-27T10:26:06Z", "user": ["sennierer"], "content_type": ["vocabularies", "institutionplacerelation"], "object_id": "108", "object_repr": "located in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2016-04-28T09:03:10Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "109", "object_repr": "studied in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2016-05-03T09:51:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "110", "object_repr": "Place accuracy test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2016-05-03T11:01:33Z", "user": ["sennierer"], "content_type": ["relations", "personplace"], "object_id": "23993", "object_repr": "Defregger, Franz von (studied in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2016-05-09T08:58:18Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2016-05-09T08:58:25Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2016-05-09T10:07:01Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "236", "object_repr": "Place review comments", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2016-05-09T10:10:38Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "2", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2016-05-23T07:03:50Z", "user": ["sennierer"], "content_type": ["vocabularies", "personinstitutionrelation"], "object_id": "279", "object_repr": "is Vizepr\u00e4sident von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2016-05-23T09:31:15Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "237", "object_repr": "wirkte in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "245", "object_repr": "Kind", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "244", "object_repr": "Eltern", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "243", "object_repr": "Vater", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "242", "object_repr": "Mutter", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2016-05-25T11:21:38Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "421", "object_repr": "Vater/Mutter", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2016-06-06T07:44:47Z", "user": ["sennierer"], "content_type": ["vocabularies", "title"], "object_id": "459", "object_repr": "Graf", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2016-06-06T07:45:44Z", "user": ["sennierer"], "content_type": ["vocabularies", "title"], "object_id": "459", "object_repr": "Graf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2016-06-21T09:34:32Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "2", "object_repr": "apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2016-06-21T09:34:54Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2016-08-02T08:41:51Z", "user": ["sennierer"], "content_type": ["highlighter", "project"], "object_id": "1", "object_repr": "highlight places", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2016-08-02T08:43:38Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2016-08-02T08:44:13Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2016-08-02T08:45:35Z", "user": ["sennierer"], "content_type": ["highlighter", "texthigh"], "object_id": "1", "object_repr": "\u00d6BL Haupttext", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2016-08-02T08:45:50Z", "user": ["sennierer"], "content_type": ["highlighter", "texthigh"], "object_id": "2", "object_repr": "\u00d6bl Kurzinfo", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2016-08-02T08:49:51Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "2", "object_repr": "Person Institution Form", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2016-08-02T08:50:13Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "2", "object_repr": "Person Institution Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2016-08-05T09:01:30Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "KaiserM", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2016-08-05T09:02:10Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "KaiserM", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2016-08-05T09:02:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2016-08-05T12:44:55Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2016-08-05T12:45:10Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2016-08-22T14:47:23Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2016-08-22T14:47:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2016-08-26T08:00:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2016-08-26T08:00:50Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "is_staff, is_superuser und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2016-08-26T08:01:14Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2016-08-26T08:01:26Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2016-09-05T08:05:05Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "18", "object_repr": "CGruber", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2016-09-05T08:05:29Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "18", "object_repr": "CGruber", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2016-09-06T10:50:39Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2016-09-06T10:51:00Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2016-09-06T14:33:23Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "5608", "object_repr": "undefined", "action_flag": 2, "change_message": "name_reverse ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2016-09-07T10:05:46Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2016-09-07T10:05:53Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2016-09-07T12:36:40Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2016-09-07T12:36:55Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2016-09-21T09:15:20Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2016-09-21T09:15:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2016-10-03T14:34:28Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2016-10-03T14:34:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "is_staff ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2016-10-03T14:34:56Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "3", "object_repr": "staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2016-10-03T14:39:11Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "3", "object_repr": "staribacher", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2016-10-03T14:39:40Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2016-10-03T14:45:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "collectiontype"], "object_id": "5772", "object_repr": "research dataset", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2016-10-03T14:45:47Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "collection_type ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2016-10-03T14:47:21Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2016-10-06T06:56:20Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2016-10-06T06:56:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2016-10-06T06:58:12Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2016-10-06T06:58:30Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "17", "object_repr": "Mittelalter 7.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2016-10-06T07:00:34Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "16", "object_repr": "\u00d6BL additional import missing XMLs 7.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2016-10-06T07:00:50Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "15", "object_repr": "K\u00fcnstlerhaus 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2016-10-06T07:01:03Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "11", "object_repr": "Presse 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2016-10-06T07:01:25Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "7", "object_repr": "\u00d6BL complete import test 30.8.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2016-10-06T07:01:46Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "8", "object_repr": "\u00d6BL additional import 66lfg 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2016-10-06T07:01:55Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "9", "object_repr": "\u00d6BL additional import 4online 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2016-10-06T07:31:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2016-10-06T07:32:15Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2016-10-07T16:13:36Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2016-10-07T16:13:56Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2016-10-07T16:14:12Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2016-10-07T16:14:34Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "BKrautgartner", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2016-10-12T12:25:02Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2016-10-12T12:25:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2016-10-12T12:27:20Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2016-10-14T11:10:59Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "3", "object_repr": "Person Person", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2016-10-14T11:12:53Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "3", "object_repr": "Person Person Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2016-10-14T11:13:18Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "1", "object_repr": "Person Place Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2016-10-14T11:13:24Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "3", "object_repr": "Person Person Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2016-10-24T09:04:11Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2016-10-24T09:04:27Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2016-10-25T10:05:10Z", "user": ["sennierer"], "content_type": ["highlighter", "annotationproject"], "object_id": "1", "object_repr": "Default", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2016-12-02T15:27:02Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 851, "fields": {"action_time": "2017-01-11T11:53:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 852, "fields": {"action_time": "2017-01-11T11:57:36Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "is_staff und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 853, "fields": {"action_time": "2017-01-11T11:57:58Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 854, "fields": {"action_time": "2017-01-11T12:04:57Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 855, "fields": {"action_time": "2017-01-11T12:37:10Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "23", "object_repr": "300 random select", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 856, "fields": {"action_time": "2017-01-11T12:37:13Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "22", "object_repr": "300 selec names", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 857, "fields": {"action_time": "2017-01-11T12:37:44Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "5", "object_repr": "\u00d6BL places import 6.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 858, "fields": {"action_time": "2017-01-11T12:37:51Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "4", "object_repr": "\u00d6BL test data import 9.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 859, "fields": {"action_time": "2017-01-11T12:38:00Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "1", "object_repr": "\u00d6BL places import 6.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 860, "fields": {"action_time": "2017-01-11T13:47:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 861, "fields": {"action_time": "2017-01-23T12:13:06Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 875, "fields": {"action_time": "2017-02-21T13:34:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 882, "fields": {"action_time": "2017-02-27T11:38:32Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "25", "object_repr": "Presse-Graz", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 884, "fields": {"action_time": "2017-03-07T08:29:18Z", "user": ["sennierer"], "content_type": ["vocabularies", "personinstitutionrelation"], "object_id": "5678", "object_repr": "war Lehrling", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 892, "fields": {"action_time": "2017-03-13T09:14:53Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 893, "fields": {"action_time": "2017-03-13T09:16:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 894, "fields": {"action_time": "2017-03-13T09:17:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 895, "fields": {"action_time": "2017-03-13T09:17:37Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 899, "fields": {"action_time": "2017-03-13T10:04:15Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 900, "fields": {"action_time": "2017-03-13T10:04:24Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 903, "fields": {"action_time": "2017-03-21T14:23:50Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "5811", "object_repr": "Comentary Staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 904, "fields": {"action_time": "2017-03-21T14:24:49Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "5811", "object_repr": "Commentary Staribacher", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 905, "fields": {"action_time": "2017-03-21T14:51:26Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 906, "fields": {"action_time": "2017-03-21T14:52:09Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 913, "fields": {"action_time": "2017-04-03T11:41:06Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "26", "object_repr": "Default import collection", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 916, "fields": {"action_time": "2017-04-04T10:19:05Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 917, "fields": {"action_time": "2017-04-04T10:19:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 922, "fields": {"action_time": "2017-04-11T10:29:05Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "4", "object_repr": "Editoren Apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 923, "fields": {"action_time": "2017-04-11T10:29:28Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 924, "fields": {"action_time": "2017-04-11T10:29:38Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 925, "fields": {"action_time": "2017-04-11T10:29:49Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 926, "fields": {"action_time": "2017-04-11T10:29:57Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 927, "fields": {"action_time": "2017-04-11T10:30:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 928, "fields": {"action_time": "2017-04-11T10:30:15Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 929, "fields": {"action_time": "2017-04-11T10:31:23Z", "user": ["sennierer"], "content_type": ["highlighter", "annotationproject"], "object_id": "6", "object_repr": "Gold Standard 28.3.2017", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 930, "fields": {"action_time": "2017-05-02T10:28:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}] \ No newline at end of file diff --git a/apis_core/apis_entities/managers.py b/apis_core/apis_entities/managers.py new file mode 100644 index 0000000..ba8ea63 --- /dev/null +++ b/apis_core/apis_entities/managers.py @@ -0,0 +1,415 @@ +import warnings + +from django.core.exceptions import ObjectDoesNotExist +from django.db import connection, models +from django.db.models.constants import LOOKUP_SEP +from django.db.models.fields.related import OneToOneField, OneToOneRel +from django.db.models.query import ModelIterable, QuerySet +from django.db.models.sql.datastructures import Join + + +class InheritanceIterable(ModelIterable): + def __iter__(self): + queryset = self.queryset + iter = ModelIterable(queryset) + if getattr(queryset, 'subclasses', False): + extras = tuple(queryset.query.extra.keys()) + # sort the subclass names longest first, + # so with 'a' and 'a__b' it goes as deep as possible + subclasses = sorted(queryset.subclasses, key=len, reverse=True) + for obj in iter: + sub_obj = None + for s in subclasses: + sub_obj = queryset._get_sub_obj_recurse(obj, s) + if sub_obj: + break + if not sub_obj: + sub_obj = obj + + if getattr(queryset, '_annotated', False): + for k in queryset._annotated: + setattr(sub_obj, k, getattr(obj, k)) + + for k in extras: + setattr(sub_obj, k, getattr(obj, k)) + + yield sub_obj + else: + yield from iter + + +class InheritanceQuerySetMixin: + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self._iterable_class = InheritanceIterable + + def select_subclasses(self, *subclasses): + levels = None + calculated_subclasses = self._get_subclasses_recurse( + self.model, levels=levels) + # if none were passed in, we can just short circuit and select all + if not subclasses: + subclasses = calculated_subclasses + else: + verified_subclasses = [] + for subclass in subclasses: + # special case for passing in the same model as the queryset + # is bound against. Rather than raise an error later, we know + # we can allow this through. + if subclass is self.model: + continue + + if not isinstance(subclass, (str,)): + subclass = self._get_ancestors_path( + subclass, levels=levels) + + if subclass in calculated_subclasses: + verified_subclasses.append(subclass) + else: + raise ValueError( + '{!r} is not in the discovered subclasses, tried: {}'.format( + subclass, ', '.join(calculated_subclasses)) + ) + subclasses = verified_subclasses + + # workaround https://code.djangoproject.com/ticket/16855 + previous_select_related = self.query.select_related + if subclasses: + new_qs = self.select_related(*subclasses) + else: + new_qs = self + previous_is_dict = isinstance(previous_select_related, dict) + new_is_dict = isinstance(new_qs.query.select_related, dict) + if previous_is_dict and new_is_dict: + new_qs.query.select_related.update(previous_select_related) + new_qs.subclasses = subclasses + return new_qs + + def _chain(self, **kwargs): + update = {} + for name in ['subclasses', '_annotated']: + if hasattr(self, name): + update[name] = getattr(self, name) + + chained = super()._chain(**kwargs) + chained.__dict__.update(update) + return chained + + def _clone(self, klass=None, setup=False, **kwargs): + qs = super()._clone() + for name in ['subclasses', '_annotated']: + if hasattr(self, name): + setattr(qs, name, getattr(self, name)) + return qs + + def annotate(self, *args, **kwargs): + qset = super().annotate(*args, **kwargs) + qset._annotated = [a.default_alias for a in args] + list(kwargs.keys()) + return qset + + def _get_subclasses_recurse(self, model, levels=None): + """ + Given a Model class, find all related objects, exploring children + recursively, returning a `list` of strings representing the + relations for select_related + """ + related_objects = [ + f for f in model._meta.get_fields() + if isinstance(f, OneToOneRel)] + + rels = [ + rel for rel in related_objects + if isinstance(rel.field, OneToOneField) + and issubclass(rel.field.model, model) + and model is not rel.field.model + and rel.parent_link + ] + + subclasses = [] + if levels: + levels -= 1 + for rel in rels: + if levels or levels is None: + for subclass in self._get_subclasses_recurse( + rel.field.model, levels=levels): + subclasses.append( + rel.get_accessor_name() + LOOKUP_SEP + subclass) + subclasses.append(rel.get_accessor_name()) + return subclasses + + def _get_ancestors_path(self, model, levels=None): + """ + Serves as an opposite to _get_subclasses_recurse, instead walking from + the Model class up the Model's ancestry and constructing the desired + select_related string backwards. + """ + if not issubclass(model, self.model): + raise ValueError( + "{!r} is not a subclass of {!r}".format(model, self.model)) + + ancestry = [] + # should be a OneToOneField or None + parent_link = model._meta.get_ancestor_link(self.model) + if levels: + levels -= 1 + while parent_link is not None: + related = parent_link.remote_field + ancestry.insert(0, related.get_accessor_name()) + if levels or levels is None: + parent_model = related.model + parent_link = parent_model._meta.get_ancestor_link( + self.model) + else: + parent_link = None + return LOOKUP_SEP.join(ancestry) + + def _get_sub_obj_recurse(self, obj, s): + rel, _, s = s.partition(LOOKUP_SEP) + + try: + node = getattr(obj, rel) + except ObjectDoesNotExist: + return None + if s: + child = self._get_sub_obj_recurse(node, s) + return child + else: + return node + + def get_subclass(self, *args, **kwargs): + return self.select_subclasses().get(*args, **kwargs) + + +class InheritanceQuerySet(InheritanceQuerySetMixin, QuerySet): + def instance_of(self, *models): + """ + Fetch only objects that are instances of the provided model(s). + """ + # If we aren't already selecting the subclasess, we need + # to in order to get this to work. + + # How can we tell if we are not selecting subclasses? + + # Is it safe to just apply .select_subclasses(*models)? + + # Due to https://code.djangoproject.com/ticket/16572, we + # can't really do this for anything other than children (ie, + # no grandchildren+). + where_queries = [] + for model in models: + where_queries.append('(' + ' AND '.join([ + '"{}"."{}" IS NOT NULL'.format( + model._meta.db_table, + field.attname, # Should this be something else? + ) for field in model._meta.parents.values() + ]) + ')') + + return self.select_subclasses(*models).extra(where=[' OR '.join(where_queries)]) + + +class InheritanceManagerMixin: + _queryset_class = InheritanceQuerySet + + def get_queryset(self): + return self._queryset_class(self.model) + + def select_subclasses(self, *subclasses): + return self.get_queryset().select_subclasses(*subclasses) + + def get_subclass(self, *args, **kwargs): + return self.get_queryset().get_subclass(*args, **kwargs) + + def instance_of(self, *models): + return self.get_queryset().instance_of(*models) + + +class InheritanceManager(InheritanceManagerMixin, models.Manager): + pass + + +class QueryManagerMixin: + + def __init__(self, *args, **kwargs): + if args: + self._q = args[0] + else: + self._q = models.Q(**kwargs) + self._order_by = None + super().__init__() + + def order_by(self, *args): + self._order_by = args + return self + + def get_queryset(self): + qs = super().get_queryset().filter(self._q) + if self._order_by is not None: + return qs.order_by(*self._order_by) + return qs + + +class QueryManager(QueryManagerMixin, models.Manager): + pass + + +class SoftDeletableQuerySetMixin: + """ + QuerySet for SoftDeletableModel. Instead of removing instance sets + its ``is_removed`` field to True. + """ + + def delete(self): + """ + Soft delete objects from queryset (set their ``is_removed`` + field to True) + """ + self.update(is_removed=True) + + +class SoftDeletableQuerySet(SoftDeletableQuerySetMixin, QuerySet): + pass + + +class SoftDeletableManagerMixin: + """ + Manager that limits the queryset by default to show only not removed + instances of model. + """ + _queryset_class = SoftDeletableQuerySet + + def __init__(self, *args, _emit_deprecation_warnings=False, **kwargs): + self.emit_deprecation_warnings = _emit_deprecation_warnings + super().__init__(*args, **kwargs) + + def get_queryset(self): + """ + Return queryset limited to not removed entries. + """ + + if self.emit_deprecation_warnings: + warning_message = ( + "{0}.objects model manager will include soft-deleted objects in an " + "upcoming release; please use {0}.available_objects to continue " + "excluding soft-deleted objects. See " + "https://django-model-utils.readthedocs.io/en/stable/models.html" + "#softdeletablemodel for more information." + ).format(self.model.__class__.__name__) + warnings.warn(warning_message, DeprecationWarning) + + kwargs = {'model': self.model, 'using': self._db} + if hasattr(self, '_hints'): + kwargs['hints'] = self._hints + + return self._queryset_class(**kwargs).filter(is_removed=False) + + +class SoftDeletableManager(SoftDeletableManagerMixin, models.Manager): + pass + + +class JoinQueryset(models.QuerySet): + + def get_quoted_query(self, query): + query, params = query.sql_with_params() + + # Put additional quotes around string. + params = [ + '\'{}\''.format(p) + if isinstance(p, str) else p + for p in params + ] + + # Cast list of parameters to tuple because I got + # "not enough format characters" otherwise. + params = tuple(params) + return query % params + + def join(self, qs=None): + ''' + Join one queryset together with another using a temporary table. If + no queryset is used, it will use the current queryset and join that + to itself. + + `Join` either uses the current queryset and effectively does a self-join to + create a new limited queryset OR it uses a querset given by the user. + + The model of a given queryset needs to contain a valid foreign key to + the current queryset to perform a join. A new queryset is then created. + ''' + to_field = 'id' + + if qs: + fk = [ + fk for fk in qs.model._meta.fields + if getattr(fk, 'related_model', None) == self.model + ] + fk = fk[0] if fk else None + model_set = '{}_set'.format(self.model.__name__.lower()) + key = fk or getattr(qs.model, model_set, None) + + if not key: + raise ValueError('QuerySet is not related to current model') + + try: + fk_column = key.column + except AttributeError: + fk_column = 'id' + to_field = key.field.column + + qs = qs.only(fk_column) + # if we give a qs we need to keep the model qs to not lose anything + new_qs = self + else: + fk_column = 'id' + qs = self.only(fk_column) + new_qs = self.model.objects.all() + + TABLE_NAME = 'temp_stuff' + query = self.get_quoted_query(qs.query) + sql = ''' + DROP TABLE IF EXISTS {table_name}; + DROP INDEX IF EXISTS {table_name}_id; + CREATE TEMPORARY TABLE {table_name} AS {query}; + CREATE INDEX {table_name}_{fk_column} ON {table_name} ({fk_column}); + '''.format(table_name=TABLE_NAME, fk_column=fk_column, query=str(query)) + + with connection.cursor() as cursor: + cursor.execute(sql) + + class TempModel(models.Model): + temp_key = models.ForeignKey( + self.model, + on_delete=models.DO_NOTHING, + db_column=fk_column, + to_field=to_field + ) + + class Meta: + managed = False + db_table = TABLE_NAME + + conn = Join( + table_name=TempModel._meta.db_table, + parent_alias=new_qs.query.get_initial_alias(), + table_alias=None, + join_type='INNER JOIN', + join_field=self.model.tempmodel_set.rel, + nullable=False + ) + new_qs.query.join(conn, reuse=None) + return new_qs + + +class JoinManagerMixin: + """ + Manager that adds a method join. This method allows you to join two + querysets together. + """ + _queryset_class = JoinQueryset + + def get_queryset(self): + return self._queryset_class(model=self.model, using=self._db) + + +class JoinManager(JoinManagerMixin, models.Manager): + pass diff --git a/apis_core/apis_entities/serializers.py b/apis_core/apis_entities/serializers.py index 3891ead..92eefce 100644 --- a/apis_core/apis_entities/serializers.py +++ b/apis_core/apis_entities/serializers.py @@ -228,8 +228,8 @@ def to_representation(self, obj): rel_a = "related_" + ob_match.group(1).lower() rel_b = "related_" + ob_match.group(2).lower() if rel_a == rel_b: - rel_a += "A" - rel_b += "B" + rel_a += "a" + rel_b += "b" r = { "source": getattr(obj, rel_a).pk, "target": getattr(obj, rel_b).pk, diff --git a/apis_core/apis_entities/serializers_generic.py b/apis_core/apis_entities/serializers_generic.py index 2cf7f91..29500c0 100644 --- a/apis_core/apis_entities/serializers_generic.py +++ b/apis_core/apis_entities/serializers_generic.py @@ -74,13 +74,13 @@ def add_relations(self, obj): ).data ) else: - for t in ["A", "B"]: + for t in ["a", "b"]: for rel2 in ( getattr(obj, "related_{}{}".format(mk.lower(), t)) .all() .filter_for_user() ): - if t == "A": + if t == "a": ok = "{}B".format(mk.lower()) reverse = True else: diff --git a/apis_core/apis_entities/templates/apis_entities/institution_create.html b/apis_core/apis_entities/templates/apis_entities/institution_create.html index db21216..39a7743 100644 --- a/apis_core/apis_entities/templates/apis_entities/institution_create.html +++ b/apis_core/apis_entities/templates/apis_entities/institution_create.html @@ -144,8 +144,8 @@

{{ x.start_date }} {{ x.relation_type.name_reverse }} - {{ x.related_personA }} - reverse + {{ x.related_persona }} + reverse {% endfor %} diff --git a/apis_core/apis_entities/templates/apis_entities/person_create.html b/apis_core/apis_entities/templates/apis_entities/person_create.html index 919443b..465fa32 100644 --- a/apis_core/apis_entities/templates/apis_entities/person_create.html +++ b/apis_core/apis_entities/templates/apis_entities/person_create.html @@ -120,7 +120,7 @@

{{ x.start_date_written }} {{ x.relation_type }} - {{ x.related_personB }} + {{ x.related_personb }} {% endfor %} @@ -128,8 +128,8 @@

{{ x.start_date }} {{ x.relation_type.name_reverse }} - {{ x.related_personA }} - reverse + {{ x.related_persona }} + reverse {% endfor %} @@ -294,7 +294,7 @@

captureAutocompleteEvent('autocomplete-ort-uri'); } else { - var tab_html = ""+response.instance.start_date+""+ response.instance.relation_type +""+ response.instance.related_personB +"" + var tab_html = ""+response.instance.start_date+""+ response.instance.relation_type +""+ response.instance.related_personb +"" if ($('#tab_'+response.tab+' table').find('#perper_'+response.instance.relation_pk).length) { $('#tab_'+response.tab+' table').find('#perper_'+response.instance.relation_pk).replaceWith(tab_html); } else { diff --git a/apis_core/apis_entities/templates/apis_entities/person_create_new.html b/apis_core/apis_entities/templates/apis_entities/person_create_new.html index 7b53cef..2c2fd6a 100644 --- a/apis_core/apis_entities/templates/apis_entities/person_create_new.html +++ b/apis_core/apis_entities/templates/apis_entities/person_create_new.html @@ -165,7 +165,7 @@

captureAutocompleteEvent('autocomplete-ort-uri'); } else { - var tab_html = ""+response.instance.start_date+""+ response.instance.relation_type +""+ response.instance.related_personB +"" + var tab_html = ""+response.instance.start_date+""+ response.instance.relation_type +""+ response.instance.related_personb +"" if ($('#tab_'+response.tab+' table').find('#perper_'+response.instance.relation_pk).length) { $('#tab_'+response.tab+' table').find('#perper_'+response.instance.relation_pk).replaceWith(tab_html); } else { diff --git a/apis_core/apis_entities/views2.py b/apis_core/apis_entities/views2.py index 9dd44da..a59439d 100644 --- a/apis_core/apis_entities/views2.py +++ b/apis_core/apis_entities/views2.py @@ -46,8 +46,8 @@ def get(self, request, *args, **kwargs): title_card = "" if match[0] == match[1]: title_card = entity.title() - dict_1 = {"related_" + entity.lower() + "A": instance} - dict_2 = {"related_" + entity.lower() + "B": instance} + dict_1 = {"related_" + entity.lower() + "a": instance} + dict_2 = {"related_" + entity.lower() + "b": instance} objects = rel.objects.filter(Q(**dict_1) | Q(**dict_2)) else: if match[0].lower() == entity.lower(): diff --git a/apis_core/apis_metainfo/models.py b/apis_core/apis_metainfo/models.py index f8abd7d..ffaf00a 100644 --- a/apis_core/apis_metainfo/models.py +++ b/apis_core/apis_metainfo/models.py @@ -11,7 +11,7 @@ from django.db.models.query import QuerySet from django.urls import reverse from django.utils.functional import cached_property -# from model_utils.managers import InheritanceManager +from model_utils.managers import InheritanceManager from apis_core.apis_entities.serializers_generic import EntitySerializer from apis_core.apis_labels.models import Label @@ -68,7 +68,7 @@ class TempEntityClass(models.Model): notes = models.TextField(blank=True, null=True) published = models.BooleanField(default=False) objects = models.Manager() - # objects_inheritance = InheritanceManager() + objects_inheritance = InheritanceManager() def __str__(self): diff --git a/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py b/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py index 9979e76..6f076f3 100644 --- a/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py +++ b/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py @@ -97,13 +97,13 @@ class Migration(migrations.Migration): ), migrations.AddField( model_name='personperson', - name='related_personA', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_personB', to='apis_entities.Person'), + name='related_persona', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_personb', to='apis_entities.Person'), ), migrations.AddField( model_name='personperson', - name='related_personB', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_personA', to='apis_entities.Person'), + name='related_personb', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_persona', to='apis_entities.Person'), ), migrations.AddField( model_name='personperson', diff --git a/apis_core/apis_relations/models.py b/apis_core/apis_relations/models.py index 4ca2f7a..9797284 100644 --- a/apis_core/apis_relations/models.py +++ b/apis_core/apis_relations/models.py @@ -33,8 +33,8 @@ class Meta: def save(self, *args, **kwargs): if ( - getattr(self, self.get_related_entity_field_nameA()) is None - or getattr(self, self.get_related_entity_field_nameB()) is None + getattr(self, self.get_related_entity_field_namea()) is None + or getattr(self, self.get_related_entity_field_nameb()) is None or self.relation_type is None ): raise Exception("One or more of the necessary related models are None") @@ -46,33 +46,33 @@ def save(self, *args, **kwargs): #################################################################################################################### def __str__(self): - return "{} ({}) {}".format(self.get_related_entity_instanceA(), self.relation_type, self.get_related_entity_instanceB()) + return "{} ({}) {}".format(self.get_related_entity_instancea(), self.relation_type, self.get_related_entity_instanceb()) def get_web_object(self): - nameA = self.get_related_entity_instanceA().name - nameB = self.get_related_entity_instanceB().name + namea = self.get_related_entity_instancea().name + nameb = self.get_related_entity_instanceb().name if self.get_related_entity_classA() == Person: - nameA += ", " - if self.get_related_entity_instanceA().first_name is None: - nameA += "-" + namea += ", " + if self.get_related_entity_instancea().first_name is None: + namea += "-" else: - nameA += self.get_related_entity_instanceA().first_name + namea += self.get_related_entity_instancea().first_name if self.get_related_entity_classB() == Person: - nameB += ", " - if self.get_related_entity_instanceB().first_name is None: - nameB += "-" + nameb += ", " + if self.get_related_entity_instanceb().first_name is None: + nameb += "-" else: - nameB += self.get_related_entity_instanceB().first_name + nameb += self.get_related_entity_instanceb().first_name result = { 'relation_pk': self.pk, 'relation_type': self.relation_type.name, - self.get_related_entity_field_nameA(): nameA, - self.get_related_entity_field_nameB(): nameB, + self.get_related_entity_field_namea(): namea, + self.get_related_entity_field_nameb(): nameb, 'start_date': self.start_date_written, 'end_date': self.end_date_written} return result @@ -85,13 +85,13 @@ def get_table_dict(self, entity): and which one the related. :return: """ - if self.get_related_entity_instanceA() == entity: - rel_other_key = self.get_related_entity_field_nameB()[:-1] - rel_other_value = self.get_related_entity_instanceB() + if self.get_related_entity_instancea() == entity: + rel_other_key = self.get_related_entity_field_nameb()[:-1] + rel_other_value = self.get_related_entity_instanceb() rel_type = self.relation_type.label - elif self.get_related_entity_instanceB() == entity: - rel_other_key = self.get_related_entity_field_nameA()[:-1] - rel_other_value = self.get_related_entity_instanceA() + elif self.get_related_entity_instanceb() == entity: + rel_other_key = self.get_related_entity_field_namea()[:-1] + rel_other_value = self.get_related_entity_instancea() rel_type = self.relation_type.label_reverse else: raise Exception("Did not find corresponding entity. Wiring of current relation to current entity is faulty.") @@ -249,7 +249,7 @@ def get_relation_field_names_of_entity_class(cls, entity_class): :return: a list of relation class field names that are related to the entity class E.g. AbstractRelation.get_relation_names_of_entity_class( Person ) - -> [ personevent_set, personinstitution_set, related_personA, related_personB, personplace_set, personwork_set ] + -> [ personevent_set, personinstitution_set, related_persona, related_personb, personplace_set, personwork_set ] """ return cls._relation_field_names_of_entity_class[entity_class] @@ -274,32 +274,32 @@ def add_relation_field_name_of_entity_class(cls, relation_name, entity_class): cls._relation_field_names_of_entity_class[entity_class] = relation_names_list - def get_related_entity_instanceA(self): + def get_related_entity_instancea(self): """ This method only works on the relation instance of a given relation class. There it returns the instance of an entity on the 'A' side of the given relation instance. Note that if your IDE complains about expecting a 'str' instead of 'None' this happens because - the method 'get_related_entity_field_nameA()' is only implemented and overridden at runtime in the + the method 'get_related_entity_field_namea()' is only implemented and overridden at runtime in the function 'generate_all_fields' in the class 'EntityRelationFieldGenerator'. :return: An entity instance related to the current relation instance """ - return getattr( self, self.get_related_entity_field_nameA() ) + return getattr( self, self.get_related_entity_field_namea() ) - def get_related_entity_instanceB(self): + def get_related_entity_instanceb(self): """ This method only works on the relation instance of a given relation class. There it returns the instance of an entity on the 'B' side of the given relation instance. Note that if your IDE complains about expecting a 'str' instead of 'None' this happens because - the method 'get_related_entity_field_nameB()' is only implemented and overridden at runtime in the + the method 'get_related_entity_field_nameb()' is only implemented and overridden at runtime in the function 'generate_all_fields' in the class 'EntityRelationFieldGenerator'. :return: An entity instance related to the current relation instance """ - return getattr( self, self.get_related_entity_field_nameB() ) + return getattr( self, self.get_related_entity_field_nameb() ) @@ -326,7 +326,7 @@ def get_related_entity_classB(cls): return None @classmethod - def get_related_entity_field_nameA(cls): + def get_related_entity_field_namea(cls): """ :return: the name of the field of the A side of the current relation class or instance E.g. PersonWork -> "related_person" @@ -334,7 +334,7 @@ def get_related_entity_field_nameA(cls): return None @classmethod - def get_related_entity_field_nameB(cls): + def get_related_entity_field_nameb(cls): """ :return: the name of the field of the B side of the current relation class or instance E.g. PersonWork -> "related_work" diff --git a/apis_core/helper_functions/EntityRelationFieldGenerator.py b/apis_core/helper_functions/EntityRelationFieldGenerator.py index 961ca3e..5f28e56 100644 --- a/apis_core/helper_functions/EntityRelationFieldGenerator.py +++ b/apis_core/helper_functions/EntityRelationFieldGenerator.py @@ -17,7 +17,7 @@ def generate_all_fields(): And each of those fields are ManyToMany Managers where their django methods can be used upon, such as all() and filter() E.g. for PersonWork these fields are auto-generated: related_person, and related_work. - for PersonPerson: related_personA, and related_personB + for PersonPerson: related_persona, and related_personb :return: None """ @@ -234,12 +234,12 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): entity_class = entity_class_a - relation_field_name_a = "related_" + entity_class_name + "A" - relation_field_name_b = "related_" + entity_class_name + "B" + relation_field_name_a = "related_" + entity_class_name + "a" + relation_field_name_b = "related_" + entity_class_name + "b" # Within APIS it was manually set that from a given entity which relates to a relation containing # the same entity class twice (e.g. PersonPerson), within the given entity class the - # field's name was 'related_A', and 'related_B' (e.g. Person.related_personA). + # field's name was 'related_A', and 'related_B' (e.g. Person.related_persona). # This is not consistent with the other relation fields of a given entity # (e.g. for PersonWork, in Person and Work, it would refer to the relation via 'personwork_set'). # @@ -259,8 +259,8 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # to be a bit more consistent with other usages. So, uncomment the following once breaking parts # are identified and prepared for it. # - # relation_field_name_from_entity_a = entity_class_name * 2 + "B_set" - # relation_field_name_from_entity_b = entity_class_name * 2 + "A_set" + # relation_field_name_from_entity_a = entity_class_name * 2 + "b_set" + # relation_field_name_from_entity_b = entity_class_name * 2 + "a_set" # Create the related entity field A. models.ForeignKey( @@ -318,10 +318,10 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): ################################################################################################ # Define all the names for the ManyToMany fields generated below - field_name_to_entity_a = entity_class_name_a + "A_set" - field_name_to_entity_b = entity_class_name_b + "B_set" - field_name_to_entity_b_relationtype = entity_class_name_b + "B_relationtype_set" - field_name_to_entity_a_relationtype = entity_class_name_a + "A_relationtype_set" + field_name_to_entity_a = entity_class_name_a + "a_set" + field_name_to_entity_b = entity_class_name_b + "b_set" + field_name_to_entity_b_relationtype = entity_class_name_b + "b_relationtype_set" + field_name_to_entity_a_relationtype = entity_class_name_a + "a_relationtype_set" # Add those names already into the respective class's list of field names entity_class_a.add_related_entity_field_name(field_name_to_entity_b) @@ -338,7 +338,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): related_name=field_name_to_entity_a, blank=True, symmetrical=False, - through_fields=("related_" + entity_class_name_a + "A", "related_" + entity_class_name_b + "B") + through_fields=("related_" + entity_class_name_a + "a", "related_" + entity_class_name_b + "b") ).contribute_to_class(entity_class_a, field_name_to_entity_b) # entity A to RelationType via entity B, and RelationType back to A @@ -348,7 +348,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): related_name=field_name_to_entity_a, blank=True, symmetrical=False, - through_fields=("related_" + entity_class_name_a + "A", "relation_type") + through_fields=("related_" + entity_class_name_a + "a", "relation_type") ).contribute_to_class(entity_class_a, field_name_to_entity_b_relationtype) # entity B to RelationType via entity A, and RelationType back to B @@ -358,7 +358,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): related_name=field_name_to_entity_a_relationtype, blank=True, symmetrical=False, - through_fields=("relation_type", "related_" + entity_class_name_b + "B") + through_fields=("relation_type", "related_" + entity_class_name_b + "b") ).contribute_to_class(relationtype_class, field_name_to_entity_b) diff --git a/pmb/urls.py b/pmb/urls.py index dc0f23e..05ef52f 100644 --- a/pmb/urls.py +++ b/pmb/urls.py @@ -6,7 +6,7 @@ urlpatterns = [ path("apis/", include("apis_core.urls", namespace="apis")), - path(r"entity//", GetEntityGeneric.as_view(), name="GetEntityGenericRoot"), + path("entity//", GetEntityGeneric.as_view(), name="GetEntityGenericRoot"), path("admin/", admin.site.urls), path("arche/", include("archemd.urls")), path("", include("dumper.urls")), diff --git a/requirements.txt b/requirements.txt index f0daca5..886571e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,7 @@ django-admin-csvexport django-autocomplete-light django-crispy-forms django-extensions +django-model-utils django-tables2 djangorestframework gunicorn==20.1.0 From 51a603dbc5efa12cd1431c29d4222b06514dc08c Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 13:06:04 +0100 Subject: [PATCH 07/56] minor --- .../apis_entities/migrations/0002_auto_20200121_1227.py | 8 ++++---- .../apis_relations/migrations/0002_auto_20200121_1227.py | 8 ++++---- apis_core/apis_vocabularies/migrations/0001_initial.py | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/apis_core/apis_entities/migrations/0002_auto_20200121_1227.py b/apis_core/apis_entities/migrations/0002_auto_20200121_1227.py index 7553d9c..2bfa85f 100644 --- a/apis_core/apis_entities/migrations/0002_auto_20200121_1227.py +++ b/apis_core/apis_entities/migrations/0002_auto_20200121_1227.py @@ -207,13 +207,13 @@ class Migration(migrations.Migration): ), migrations.AddField( model_name='event', - name='eventB_relationtype_set', - field=models.ManyToManyField(blank=True, related_name='eventA_set', through='apis_relations.EventEvent', to='apis_vocabularies.EventEventRelation'), + name='eventb_relationtype_set', + field=models.ManyToManyField(blank=True, related_name='eventa_set', through='apis_relations.EventEvent', to='apis_vocabularies.EventEventRelation'), ), migrations.AddField( model_name='event', - name='eventB_set', - field=models.ManyToManyField(blank=True, related_name='eventA_set', through='apis_relations.EventEvent', to='apis_entities.Event'), + name='eventb_set', + field=models.ManyToManyField(blank=True, related_name='eventa_set', through='apis_relations.EventEvent', to='apis_entities.Event'), ), migrations.AddField( model_name='event', diff --git a/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py b/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py index 6f076f3..80292d1 100644 --- a/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py +++ b/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py @@ -217,13 +217,13 @@ class Migration(migrations.Migration): ), migrations.AddField( model_name='eventevent', - name='related_eventA', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_eventB', to='apis_entities.Event'), + name='related_eventa', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_eventb', to='apis_entities.Event'), ), migrations.AddField( model_name='eventevent', - name='related_eventB', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_eventA', to='apis_entities.Event'), + name='related_eventb', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_eventa', to='apis_entities.Event'), ), migrations.AddField( model_name='eventevent', diff --git a/apis_core/apis_vocabularies/migrations/0001_initial.py b/apis_core/apis_vocabularies/migrations/0001_initial.py index 4f0db84..3bc684e 100644 --- a/apis_core/apis_vocabularies/migrations/0001_initial.py +++ b/apis_core/apis_vocabularies/migrations/0001_initial.py @@ -142,7 +142,7 @@ class Migration(migrations.Migration): name='EventEventRelation', fields=[ ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), - ('eventB_set', models.ManyToManyField(blank=True, related_name='eventA_relationtype_set', through='apis_relations.EventEvent', to='apis_entities.Event')), + ('eventb_set', models.ManyToManyField(blank=True, related_name='eventa_relationtype_set', through='apis_relations.EventEvent', to='apis_entities.Event')), ], options={ 'abstract': False, From 1dcab11389da9221b425c9429eaf25e08af6b519 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 13:08:47 +0100 Subject: [PATCH 08/56] isoCode_639_3 -> isocode_639_3 --- apis_core/apis_entities/detail_views.py | 127 +-- apis_core/apis_entities/fixtures/db_v2.json | 2 +- apis_core/apis_entities/fixtures/db_v5.json | 756 +++++++++--------- .../fixtures/fixtures_3_5_17.json | 2 +- .../apis_entities/institution_create.html | 4 +- .../apis_entities/person_create.html | 4 +- .../apis_entities/person_create_new.html | 2 +- apis_core/apis_labels/admin.py | 2 +- apis_core/apis_labels/forms.py | 2 +- .../apis_labels/migrations/0001_initial.py | 2 +- apis_core/apis_labels/models.py | 4 +- apis_core/apis_labels/serializers.py | 2 +- apis_core/apis_relations/forms.py | 4 +- apis_core/apis_relations/tables.py | 4 +- apis_core/apis_tei/tei.py | 6 +- 15 files changed, 468 insertions(+), 455 deletions(-) diff --git a/apis_core/apis_entities/detail_views.py b/apis_core/apis_entities/detail_views.py index a728653..9f290d5 100644 --- a/apis_core/apis_entities/detail_views.py +++ b/apis_core/apis_entities/detail_views.py @@ -12,7 +12,10 @@ from apis_core.apis_labels.models import Label from apis_core.apis_metainfo.models import Uri from apis_core.apis_relations.models import AbstractRelation -from apis_core.apis_relations.tables import get_generic_relations_table, LabelTableBase # , EntityDetailViewLabelTable +from apis_core.apis_relations.tables import ( + get_generic_relations_table, + LabelTableBase, +) # , EntityDetailViewLabelTable from apis_core.helper_functions.utils import access_for_all from .models import TempEntityClass, BASE_URI from .views import get_highlighted_texts @@ -21,9 +24,8 @@ from apis_ampel.helper_functions import is_ampel_active - def get_object_from_pk_or_uri(request, pk): - """ checks if the given pk exists, if not checks if a matching apis-default uri exists + """checks if the given pk exists, if not checks if a matching apis-default uri exists and returns its entity""" try: instance = TempEntityClass.objects_inheritance.get_subclass(pk=pk) @@ -46,75 +48,89 @@ def get_object_from_pk_or_uri(request, pk): return instance - class GenericEntitiesDetailView(UserPassesTestMixin, View): - - #login_url = '/accounts/login/' + # login_url = '/accounts/login/' def test_func(self): access = access_for_all(self, viewtype="detail") return access def get(self, request, *args, **kwargs): - - entity = kwargs['entity'].lower() - pk = kwargs['pk'] + entity = kwargs["entity"].lower() + pk = kwargs["pk"] instance = get_object_from_pk_or_uri(request, pk) # print(instance.id, pk) if f"{instance.id}" == f"{pk}": pass else: return redirect(instance) - relations = AbstractRelation.get_relation_classes_of_entity_name(entity_name=entity) + relations = AbstractRelation.get_relation_classes_of_entity_name( + entity_name=entity + ) side_bar = [] for rel in relations: match = [ rel.get_related_entity_classA().__name__.lower(), - rel.get_related_entity_classB().__name__.lower() + rel.get_related_entity_classB().__name__.lower(), ] prefix = "{}{}-".format(match[0].title()[:2], match[1].title()[:2]) - table = get_generic_relations_table(relation_class=rel, entity_instance=instance, detail=True) + table = get_generic_relations_table( + relation_class=rel, entity_instance=instance, detail=True + ) if match[0] == match[1]: title_card = entity.title() - dict_1 = {'related_' + entity.lower() + 'A': instance} - dict_2 = {'related_' + entity.lower() + 'B': instance} - if 'apis_highlighter' in settings.INSTALLED_APPS: - objects = rel.objects.filter_ann_proj(request=request).filter_for_user().filter( - Q(**dict_1) | Q(**dict_2)) + dict_1 = {"related_" + entity.lower() + "a": instance} + dict_2 = {"related_" + entity.lower() + "b": instance} + if "apis_highlighter" in settings.INSTALLED_APPS: + objects = ( + rel.objects.filter_ann_proj(request=request) + .filter_for_user() + .filter(Q(**dict_1) | Q(**dict_2)) + ) else: - objects = rel.objects.filter( - Q(**dict_1) | Q(**dict_2)) - if callable(getattr(objects, 'filter_for_user', None)): + objects = rel.objects.filter(Q(**dict_1) | Q(**dict_2)) + if callable(getattr(objects, "filter_for_user", None)): objects = objects.filter_for_user() else: if match[0].lower() == entity.lower(): title_card = match[1].title() else: title_card = match[0].title() - dict_1 = {'related_' + entity.lower(): instance} - if 'apis_highlighter' in settings.INSTALLED_APPS: - objects = rel.objects.filter_ann_proj(request=request).filter_for_user().filter(**dict_1) + dict_1 = {"related_" + entity.lower(): instance} + if "apis_highlighter" in settings.INSTALLED_APPS: + objects = ( + rel.objects.filter_ann_proj(request=request) + .filter_for_user() + .filter(**dict_1) + ) else: objects = rel.objects.filter(**dict_1) - if callable(getattr(objects, 'filter_for_user', None)): + if callable(getattr(objects, "filter_for_user", None)): objects = objects.filter_for_user() tb_object = table(data=objects, prefix=prefix) - tb_object_open = request.GET.get(prefix + 'page', None) + tb_object_open = request.GET.get(prefix + "page", None) RequestConfig(request, paginate={"per_page": 10}).configure(tb_object) side_bar.append( - (title_card, tb_object, ''.join([x.title() for x in match]), tb_object_open) + ( + title_card, + tb_object, + "".join([x.title() for x in match]), + tb_object_open, + ) ) object_lod = Uri.objects.filter(entity=instance) object_texts, ann_proj_form = get_highlighted_texts(request, instance) object_labels = Label.objects.filter(temp_entity=instance) - tb_label = LabelTableBase(data=object_labels, prefix=entity.title()[:2]+'L-') - tb_label_open = request.GET.get('PL-page', None) - side_bar.append(('Label', tb_label, 'PersonLabel', tb_label_open)) + tb_label = LabelTableBase(data=object_labels, prefix=entity.title()[:2] + "L-") + tb_label_open = request.GET.get("PL-page", None) + side_bar.append(("Label", tb_label, "PersonLabel", tb_label_open)) RequestConfig(request, paginate={"per_page": 10}).configure(tb_label) - template = select_template([ - 'apis_entities/detail_views/{}_detail_generic.html'.format(entity), - 'apis_entities/detail_views/entity_detail_generic.html' - ]) + template = select_template( + [ + "apis_entities/detail_views/{}_detail_generic.html".format(entity), + "apis_entities/detail_views/entity_detail_generic.html", + ] + ) tei = getattr(settings, "APIS_TEI_TEXTS", []) if tei: tei = set(tei) & set([x.kind.name for x in instance.text.all()]) @@ -137,34 +153,31 @@ def get(self, request, *args, **kwargs): iiif_info_json = instance.name try: no_merge_labels = [ - x for x in object_labels if not x.label_type.name.startswith('Legacy') + x for x in object_labels if not x.label_type.name.startswith("Legacy") ] except AttributeError: no_merge_labels = [] - context={ - 'entity_type': entity, - 'object': instance, - 'right_card': side_bar, - 'no_merge_labels': no_merge_labels, - 'object_lables': object_labels, - 'object_texts': object_texts, - 'object_lod': object_lod, - 'tei': tei, - 'ceteicean_css': ceteicean_css, - 'ceteicean_js': ceteicean_js, - 'iiif': iiif, - 'openseadragon_js': openseadragon_js, - 'openseadragon_img': openseadragon_img, - 'iiif_field': iiif_field, - 'iiif_info_json': iiif_info_json, - 'iiif_server': iiif_server, - } + context = { + "entity_type": entity, + "object": instance, + "right_card": side_bar, + "no_merge_labels": no_merge_labels, + "object_lables": object_labels, + "object_texts": object_texts, + "object_lod": object_lod, + "tei": tei, + "ceteicean_css": ceteicean_css, + "ceteicean_js": ceteicean_js, + "iiif": iiif, + "openseadragon_js": openseadragon_js, + "openseadragon_img": openseadragon_img, + "iiif_field": iiif_field, + "iiif_info_json": iiif_info_json, + "iiif_server": iiif_server, + } if "apis_ampel" in settings.INSTALLED_APPS: context["show_ampel"] = is_ampel_active(entity) - return HttpResponse(template.render( - request=request, context=context - )) - + return HttpResponse(template.render(request=request, context=context)) # TODO __sresch__ : This seems unused. Remove it once sure @@ -174,4 +187,4 @@ def get(self, request, *args, **kwargs): # # def get_context_data(self, **kwargs): # context = super(WorkDetailView, self).get_context_data(**kwargs) -# return context \ No newline at end of file +# return context diff --git a/apis_core/apis_entities/fixtures/db_v2.json b/apis_core/apis_entities/fixtures/db_v2.json index ce18903..cbd342a 100644 --- a/apis_core/apis_entities/fixtures/db_v2.json +++ b/apis_core/apis_entities/fixtures/db_v2.json @@ -1 +1 @@ -[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "labels", "model": "label"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "entities", "model": "person"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "entities", "model": "place"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "entities", "model": "event"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "entities", "model": "work"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "highlighter", "model": "project"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "highlighter", "model": "annotation"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "highlighter", "model": "vocabularyapi"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "highlighter", "model": "menuentry"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "pk": 67, "fields": {"app_label": "reversion", "model": "version"}}, {"model": "contenttypes.contenttype", "pk": 68, "fields": {"app_label": "metainfo", "model": "uricandidate"}}, {"model": "contenttypes.contenttype", "pk": 69, "fields": {"app_label": "vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "pk": 70, "fields": {"app_label": "highlighter", "model": "texthigh"}}, {"model": "contenttypes.contenttype", "pk": 71, "fields": {"app_label": "highlighter", "model": "annotationproject"}}, {"model": "contenttypes.contenttype", "pk": 72, "fields": {"app_label": "authtoken", "model": "token"}}, {"model": "contenttypes.contenttype", "pk": 73, "fields": {"app_label": "guardian", "model": "userobjectpermission"}}, {"model": "contenttypes.contenttype", "pk": 74, "fields": {"app_label": "guardian", "model": "groupobjectpermission"}}, {"model": "sessions.session", "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-12T09:16:06Z"}}, {"model": "sessions.session", "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-26T10:05:04Z"}}, {"model": "sessions.session", "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-28T09:36:22Z"}}, {"model": "sessions.session", "pk": "17188fqkhwwemz91phd0gdgifcpuw531", "fields": {"session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==", "expire_date": "2016-12-23T14:35:05Z"}}, {"model": "sessions.session", "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn", "fields": {"session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9", "expire_date": "2016-11-10T13:45:57Z"}}, {"model": "sessions.session", "pk": "1iccsxivof263x10kvzx24cpvfuisbsi", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T10:09:36Z"}}, {"model": "sessions.session", "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T08:25:02Z"}}, {"model": "sessions.session", "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-03T06:28:05Z"}}, {"model": "sessions.session", "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-29T09:34:16Z"}}, {"model": "sessions.session", "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-17T10:44:53Z"}}, {"model": "sessions.session", "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T13:49:39Z"}}, {"model": "sessions.session", "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:08:50Z"}}, {"model": "sessions.session", "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-10T08:17:25Z"}}, {"model": "sessions.session", "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-26T14:15:06Z"}}, {"model": "sessions.session", "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:51:31Z"}}, {"model": "sessions.session", "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T13:15:39Z"}}, {"model": "sessions.session", "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-13T08:50:52Z"}}, {"model": "sessions.session", "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T15:43:29Z"}}, {"model": "sessions.session", "pk": "3f0z4r7zm0tht811km9py85tymlqp00t", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T16:42:42Z"}}, {"model": "sessions.session", "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T12:37:18Z"}}, {"model": "sessions.session", "pk": "3jko01lpmo2mga91cswnbozalltzmk3y", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-04T09:48:21Z"}}, {"model": "sessions.session", "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T07:40:34Z"}}, {"model": "sessions.session", "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-05-12T13:36:05Z"}}, {"model": "sessions.session", "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T09:34:31Z"}}, {"model": "sessions.session", "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:28:30Z"}}, {"model": "sessions.session", "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-08T08:03:34Z"}}, {"model": "sessions.session", "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-16T15:23:26Z"}}, {"model": "sessions.session", "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-26T16:58:24Z"}}, {"model": "sessions.session", "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a", "fields": {"session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=", "expire_date": "2016-03-28T08:35:56Z"}}, {"model": "sessions.session", "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:15:48Z"}}, {"model": "sessions.session", "pk": "530ad4x705b6e19mkq2p46a9hvib918m", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T10:26:56Z"}}, {"model": "sessions.session", "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-20T13:12:52Z"}}, {"model": "sessions.session", "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-25T10:51:39Z"}}, {"model": "sessions.session", "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw", "fields": {"session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2016-12-29T15:38:59Z"}}, {"model": "sessions.session", "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-21T14:12:41Z"}}, {"model": "sessions.session", "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:22:04Z"}}, {"model": "sessions.session", "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-09T08:10:25Z"}}, {"model": "sessions.session", "pk": "6k16reryrvgvlux4peggv2dwnpdw018v", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-08-26T11:22:37Z"}}, {"model": "sessions.session", "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429", "fields": {"session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T12:26:52Z"}}, {"model": "sessions.session", "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T10:37:41Z"}}, {"model": "sessions.session", "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-08T10:43:50Z"}}, {"model": "sessions.session", "pk": "7c01s688teucprvj9wuoiuebtl8bff2d", "fields": {"session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-21T11:56:57Z"}}, {"model": "sessions.session", "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T11:41:48Z"}}, {"model": "sessions.session", "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-17T10:07:28Z"}}, {"model": "sessions.session", "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-06-21T12:35:35Z"}}, {"model": "sessions.session", "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T11:46:41Z"}}, {"model": "sessions.session", "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-12-14T16:16:28Z"}}, {"model": "sessions.session", "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-31T10:09:32Z"}}, {"model": "sessions.session", "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-12T08:26:15Z"}}, {"model": "sessions.session", "pk": "9mf1xzu1346ss0edpll2dwougyoippqv", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-01-02T13:44:56Z"}}, {"model": "sessions.session", "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-07T09:00:09Z"}}, {"model": "sessions.session", "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-11T11:10:15Z"}}, {"model": "sessions.session", "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg", "fields": {"session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2017-01-03T09:23:20Z"}}, {"model": "sessions.session", "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T14:19:29Z"}}, {"model": "sessions.session", "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-04T08:02:47Z"}}, {"model": "sessions.session", "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-20T19:21:08Z"}}, {"model": "sessions.session", "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T11:54:57Z"}}, {"model": "sessions.session", "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T07:44:25Z"}}, {"model": "sessions.session", "pk": "be63mi87uoc2xmvbgcrh8w10gxmddy59", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2017-01-04T09:48:12Z"}}, {"model": "sessions.session", "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T12:01:50Z"}}, {"model": "sessions.session", "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T09:47:15Z"}}, {"model": "sessions.session", "pk": "c0mebo725euvitftiukwfw6dxip0koqs", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-21T08:38:04Z"}}, {"model": "sessions.session", "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:30:05Z"}}, {"model": "sessions.session", "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-10-19T15:55:59Z"}}, {"model": "sessions.session", "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T07:52:18Z"}}, {"model": "sessions.session", "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-11-07T12:37:20Z"}}, {"model": "sessions.session", "pk": "da9ald43zlct5w8wjy2jer4uuw1me508", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T07:57:42Z"}}, {"model": "sessions.session", "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-12T19:05:43Z"}}, {"model": "sessions.session", "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T14:05:09Z"}}, {"model": "sessions.session", "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T08:00:35Z"}}, {"model": "sessions.session", "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-16T13:41:51Z"}}, {"model": "sessions.session", "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T10:15:28Z"}}, {"model": "sessions.session", "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T08:42:22Z"}}, {"model": "sessions.session", "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y", "fields": {"session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-14T11:11:40Z"}}, {"model": "sessions.session", "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-14T14:53:54Z"}}, {"model": "sessions.session", "pk": "erwufifibov75oo9c5uklkwh5itqskcj", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-27T09:07:15Z"}}, {"model": "sessions.session", "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-21T15:40:51Z"}}, {"model": "sessions.session", "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-10-26T12:38:51Z"}}, {"model": "sessions.session", "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:23Z"}}, {"model": "sessions.session", "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-06-08T11:35:30Z"}}, {"model": "sessions.session", "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-06-07T13:29:28Z"}}, {"model": "sessions.session", "pk": "gi62wdj66c5j78be7q372m29mv6gdora", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-28T08:16:12Z"}}, {"model": "sessions.session", "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-21T07:03:28Z"}}, {"model": "sessions.session", "pk": "gjuve267k4260hvyils2ls2496ak9z37", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T17:18:28Z"}}, {"model": "sessions.session", "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T07:59:21Z"}}, {"model": "sessions.session", "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-05T14:43:01Z"}}, {"model": "sessions.session", "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-24T08:40:28Z"}}, {"model": "sessions.session", "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-16T08:59:39Z"}}, {"model": "sessions.session", "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-30T09:46:34Z"}}, {"model": "sessions.session", "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it", "fields": {"session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9", "expire_date": "2016-09-19T08:08:24Z"}}, {"model": "sessions.session", "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-20T06:13:45Z"}}, {"model": "sessions.session", "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-31T14:52:42Z"}}, {"model": "sessions.session", "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T08:07:45Z"}}, {"model": "sessions.session", "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-15T11:14:21Z"}}, {"model": "sessions.session", "pk": "imakeqah5lviaceijxe33lnovxbek8nu", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T16:03:56Z"}}, {"model": "sessions.session", "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-06T07:28:47Z"}}, {"model": "sessions.session", "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T13:05:08Z"}}, {"model": "sessions.session", "pk": "jghkwi5l48e732l6senbb027s7ww69fb", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T09:49:32Z"}}, {"model": "sessions.session", "pk": "ka3msywv1o7njsbgs3q2631094nuqclo", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-19T15:12:15Z"}}, {"model": "sessions.session", "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-05-31T10:05:18Z"}}, {"model": "sessions.session", "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-23T05:35:47Z"}}, {"model": "sessions.session", "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec", "fields": {"session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-30T19:29:46Z"}}, {"model": "sessions.session", "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-25T15:37:43Z"}}, {"model": "sessions.session", "pk": "knqvpsn88en5yygqemcw6edtg2jt8249", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T09:44:34Z"}}, {"model": "sessions.session", "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T06:27:59Z"}}, {"model": "sessions.session", "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:21:45Z"}}, {"model": "sessions.session", "pk": "le4a8wynksh1utfu4n5kz3o0tky32990", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-14T11:45:48Z"}}, {"model": "sessions.session", "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-01T14:58:57Z"}}, {"model": "sessions.session", "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-04T13:24:20Z"}}, {"model": "sessions.session", "pk": "m787xp45lpgoa269n6728z0b37p8iy1q", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:28:33Z"}}, {"model": "sessions.session", "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-19T19:17:17Z"}}, {"model": "sessions.session", "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-23T16:20:25Z"}}, {"model": "sessions.session", "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-23T13:26:40Z"}}, {"model": "sessions.session", "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-16T10:14:08Z"}}, {"model": "sessions.session", "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-09-14T14:54:12Z"}}, {"model": "sessions.session", "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-22T15:22:58Z"}}, {"model": "sessions.session", "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg", "fields": {"session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=", "expire_date": "2016-04-11T20:27:35Z"}}, {"model": "sessions.session", "pk": "nswul70gr80dq4qwgs4di508w00uud6b", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-08T10:15:12Z"}}, {"model": "sessions.session", "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-08-24T09:07:00Z"}}, {"model": "sessions.session", "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T10:17:31Z"}}, {"model": "sessions.session", "pk": "odorbcaogkfzuupexk2zyze0ewnene46", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-08T10:29:46Z"}}, {"model": "sessions.session", "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T07:40:16Z"}}, {"model": "sessions.session", "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:49:30Z"}}, {"model": "sessions.session", "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-16T07:07:44Z"}}, {"model": "sessions.session", "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T11:53:13Z"}}, {"model": "sessions.session", "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf", "fields": {"session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==", "expire_date": "2016-11-24T11:13:28Z"}}, {"model": "sessions.session", "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-18T11:48:29Z"}}, {"model": "sessions.session", "pk": "qi66ci58ybleptvfa4qenkhecsabekut", "fields": {"session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-03-28T14:27:50Z"}}, {"model": "sessions.session", "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf", "fields": {"session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==", "expire_date": "2016-12-09T16:53:29Z"}}, {"model": "sessions.session", "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-17T11:19:13Z"}}, {"model": "sessions.session", "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-20T08:48:24Z"}}, {"model": "sessions.session", "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T08:12:45Z"}}, {"model": "sessions.session", "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o", "fields": {"session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-10T07:54:55Z"}}, {"model": "sessions.session", "pk": "ryh7badf8sk52fnosn0im30u153w96bx", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-06-01T09:22:04Z"}}, {"model": "sessions.session", "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-17T11:25:00Z"}}, {"model": "sessions.session", "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T07:10:33Z"}}, {"model": "sessions.session", "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-11-02T13:21:25Z"}}, {"model": "sessions.session", "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-22T23:47:44Z"}}, {"model": "sessions.session", "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T09:13:02Z"}}, {"model": "sessions.session", "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T13:16:42Z"}}, {"model": "sessions.session", "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-09-07T09:17:51Z"}}, {"model": "sessions.session", "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:45:55Z"}}, {"model": "sessions.session", "pk": "txw6kfzk32bxeqm21knvrf570by4v27p", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:48:36Z"}}, {"model": "sessions.session", "pk": "uesi563p5dol5hv4gjor3noj55kz8chz", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-13T08:36:52Z"}}, {"model": "sessions.session", "pk": "uou3pothn76iu9zi34fij69m8inc1v2s", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-05-13T08:32:22Z"}}, {"model": "sessions.session", "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-07-05T09:34:00Z"}}, {"model": "sessions.session", "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-06T09:17:34Z"}}, {"model": "sessions.session", "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20", "fields": {"session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9", "expire_date": "2016-11-25T22:11:01Z"}}, {"model": "sessions.session", "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2016-10-19T09:11:45Z"}}, {"model": "sessions.session", "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-25T11:21:04Z"}}, {"model": "sessions.session", "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd", "fields": {"session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2016-12-19T13:49:09Z"}}, {"model": "sessions.session", "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:40:30Z"}}, {"model": "sessions.session", "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-31T09:28:51Z"}}, {"model": "sessions.session", "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-24T18:27:59Z"}}, {"model": "sessions.session", "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-08-15T11:56:07Z"}}, {"model": "sessions.session", "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:23:30Z"}}, {"model": "sessions.session", "pk": "xeta229mvebwff8lxrg15tg92yby9l7h", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-01-03T10:42:04Z"}}, {"model": "sessions.session", "pk": "xjameie76erma5u2xcefnxiqkaydbqem", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T15:38:48Z"}}, {"model": "sessions.session", "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:41:43Z"}}, {"model": "sessions.session", "pk": "xqn4o938970paagobhs75vdj78qklbpt", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-13T06:21:47Z"}}, {"model": "sessions.session", "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g", "fields": {"session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=", "expire_date": "2016-03-28T11:24:43Z"}}, {"model": "sessions.session", "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:59Z"}}, {"model": "sessions.session", "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T15:37:48Z"}}, {"model": "sessions.session", "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-23T09:12:20Z"}}, {"model": "sessions.session", "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-29T08:20:29Z"}}, {"model": "sessions.session", "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-21T14:11:46Z"}}, {"model": "sessions.session", "pk": "ykzz4og15rbp734i6zas54al3618ih6t", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-28T12:47:33Z"}}, {"model": "sessions.session", "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T07:23:58Z"}}, {"model": "sessions.session", "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-06-10T09:57:45Z"}}, {"model": "sessions.session", "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-29T12:27:51Z"}}, {"model": "sessions.session", "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T11:53:02Z"}}, {"model": "sessions.session", "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T13:24:18Z"}}, {"model": "sessions.session", "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:07:32Z"}}, {"model": "sessions.session", "pk": "zd89eekj8db021j20g95g8h3l2qoajg2", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-03T11:30:35Z"}}, {"model": "sessions.session", "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-07T12:20:16Z"}}, {"model": "sessions.session", "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T14:32:15Z"}}, {"model": "labels.label", "pk": 17, "fields": {"label": "Opatija", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 26}}, {"model": "labels.label", "pk": 19, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 20, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 50, "fields": {"label": "Zagreb", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 133}}, {"model": "labels.label", "pk": 51, "fields": {"label": "Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 67, "fields": {"label": "Vienna", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 183}}, {"model": "labels.label", "pk": 68, "fields": {"label": "Wien", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 108, "fields": {"label": "Brno", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 327}}, {"model": "labels.label", "pk": 109, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 118, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 121, "fields": {"label": "Budapest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 400}}, {"model": "labels.label", "pk": 122, "fields": {"label": "Budapest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 252, "fields": {"label": "Bucharest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 831}}, {"model": "labels.label", "pk": 253, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 287, "fields": {"label": "Baden bei Wien", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 926}}, {"model": "labels.label", "pk": 288, "fields": {"label": "Baden", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 926}}, {"model": "labels.label", "pk": 445, "fields": {"label": "Berlin", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1390}}, {"model": "labels.label", "pk": 446, "fields": {"label": "Berlin", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 456, "fields": {"label": "Liberec", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1424}}, {"model": "labels.label", "pk": 457, "fields": {"label": "Liberec - Osta\u0161ov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 466, "fields": {"label": "Bezau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1454}}, {"model": "labels.label", "pk": 531, "fields": {"label": "Bodensdorf, Bez. Feldkirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1701}}, {"model": "labels.label", "pk": 536, "fields": {"label": "Heilbronn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1718}}, {"model": "labels.label", "pk": 537, "fields": {"label": "Heilbronn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1718}}, {"model": "labels.label", "pk": 613, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2006}}, {"model": "labels.label", "pk": 614, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2006}}, {"model": "labels.label", "pk": 639, "fields": {"label": "Bratislava", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2072}}, {"model": "labels.label", "pk": 640, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 641, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 645, "fields": {"label": "Broumov", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2085}}, {"model": "labels.label", "pk": 646, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 647, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 669, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2161}}, {"model": "labels.label", "pk": 670, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 671, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 672, "fields": {"label": "Brixen", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2170}}, {"model": "labels.label", "pk": 673, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 680, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2197}}, {"model": "labels.label", "pk": 681, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - B\u0159ezhrad, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 693, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 694, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 697, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 704, "fields": {"label": "Brody", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2281}}, {"model": "labels.label", "pk": 705, "fields": {"label": "Brody, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2281}}, {"model": "labels.label", "pk": 713, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 714, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 715, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 716, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 757, "fields": {"label": "Buenos Aires", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2489}}, {"model": "labels.label", "pk": 759, "fields": {"label": "Buenos Aires", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2489}}, {"model": "labels.label", "pk": 760, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 761, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 789, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 870, "fields": {"label": "Chernivtsi", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2854}}, {"model": "labels.label", "pk": 871, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 876, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 944, "fields": {"label": "Cieszyn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3105}}, {"model": "labels.label", "pk": 945, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 962, "fields": {"label": "Cluj-Napoca", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3162}}, {"model": "labels.label", "pk": 963, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 1050, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 1214, "fields": {"label": "D\u00fcren", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1215, "fields": {"label": "D\u00fcren", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1268, "fields": {"label": "\u00dadlice, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4269}}, {"model": "labels.label", "pk": 1412, "fields": {"label": "Graz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1413, "fields": {"label": "Graz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1446, "fields": {"label": "Freistadt", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1447, "fields": {"label": "Freistadt", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1560, "fields": {"label": "Ghidfal\u0103u, jud. Covasna", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5294}}, {"model": "labels.label", "pk": 1565, "fields": {"label": "Marienheide", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5308}}, {"model": "labels.label", "pk": 1619, "fields": {"label": "Gorizia", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1620, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1635, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1636, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1670, "fields": {"label": "Merano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1671, "fields": {"label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1691, "fields": {"label": "Grieskirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5749}}, {"model": "labels.label", "pk": 1755, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1756, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1841, "fields": {"label": "Hanover", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1842, "fields": {"label": "Hannover", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1926, "fields": {"label": "Innsbruck", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1927, "fields": {"label": "Innsbruck", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1982, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 1983, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 2002, "fields": {"label": "Brno - Brno-sever, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2108, "fields": {"label": "Jaworzno, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7454}}, {"model": "labels.label", "pk": 2153, "fields": {"label": "Leoben", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2154, "fields": {"label": "Leoben", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2190, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2191, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2249, "fields": {"label": "Kassel", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2250, "fields": {"label": "Kassel", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2340, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2341, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2373, "fields": {"label": "Klosterneuburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8482}}, {"model": "labels.label", "pk": 2394, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2458, "fields": {"label": "Konstanz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2459, "fields": {"label": "Konstanz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2581, "fields": {"label": "Kufstein", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2582, "fields": {"label": "Kufstein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2585, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Kukleny, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2595, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2625, "fields": {"label": "Lachovice, kr. Karlovarsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9455}}, {"model": "labels.label", "pk": 2632, "fields": {"label": "Ljubljana", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2633, "fields": {"label": "Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2711, "fields": {"label": "Lviv", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2712, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2713, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2789, "fields": {"label": "Linz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2790, "fields": {"label": "Linz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2858, "fields": {"label": "City of London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2859, "fields": {"label": "London City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2860, "fields": {"label": "The City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2861, "fields": {"label": "London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2862, "fields": {"label": "London", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2927, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2928, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2929, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2951, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2952, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2963, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3022, "fields": {"label": "Maribor", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3023, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3039, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3040, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3041, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3116, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3117, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3118, "fields": {"label": "Merano (Castello di Trautmannsdorf) / Meran (Schlo\u00df Trautmannsdorf), reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3119, "fields": {"label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3120, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3121, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3158, "fields": {"label": "St\u0159\u00edbro, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 3239, "fields": {"label": "Moldava, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11556}}, {"model": "labels.label", "pk": 3324, "fields": {"label": "Munich", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3325, "fields": {"label": "M\u00fcnchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3441, "fields": {"label": "Nysa", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3442, "fields": {"label": "Nysa, woj. Opole", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3491, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Nov\u00fd Hradec Kr\u00e1lov\u00e9, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 3549, "fields": {"label": "Liberec - Doln\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3580, "fields": {"label": "Nice", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3581, "fields": {"label": "Nice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3657, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3663, "fields": {"label": "Liberec - Horn\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3671, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3672, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3681, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3697, "fields": {"label": "Brno - Malom\u011b\u0159ice-Ob\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3710, "fields": {"label": "Sopron", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3711, "fields": {"label": "Sopron, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3737, "fields": {"label": "Olomouc", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3738, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3739, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3740, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3741, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3828, "fields": {"label": "Paris", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3829, "fields": {"label": "Paris", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3901, "fields": {"label": "Petting", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13987}}, {"model": "labels.label", "pk": 4050, "fields": {"label": "Prague", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4051, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4052, "fields": {"label": "Praha, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4053, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4054, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4055, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4077, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4078, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4333, "fields": {"label": "Liberec - R\u016f\u017eodol I, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4334, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4389, "fields": {"label": "Liberec - Ruprechtice, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4415, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 4478, "fields": {"label": "Sv\u00e4t\u00fd Jur", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4479, "fields": {"label": "Sv\u00e4t\u00fd Jur, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4500, "fields": {"label": "St. Pankraz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4501, "fields": {"label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4581, "fields": {"label": "\u0160t\u00edty, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16594}}, {"model": "labels.label", "pk": 4624, "fields": {"label": "Liberec - Kr\u00e1sn\u00e1 Stud\u00e1nka, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4652, "fields": {"label": "Schwanberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16864}}, {"model": "labels.label", "pk": 4676, "fields": {"label": "Wien - Sechshaus", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 4878, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 5025, "fields": {"label": "Szczakowa, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18374}}, {"model": "labels.label", "pk": 5031, "fields": {"label": "Szeged, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 5150, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5152, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5273, "fields": {"label": "Trento", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5274, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5275, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5290, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5291, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5386, "fields": {"label": "Mojm\u00edrovce, kr. Nitra", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19599}}, {"model": "labels.label", "pk": 5411, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 5422, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 5650, "fields": {"label": "Warsaw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5651, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5652, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5653, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5654, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5655, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5656, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5677, "fields": {"label": "Bela Crkva, sr. Pan\u010devo", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20659}}, {"model": "labels.label", "pk": 5726, "fields": {"label": "Bad Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 5758, "fields": {"label": "Wisborough Green", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20988}}, {"model": "labels.label", "pk": 5809, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 5903, "fields": {"label": "L'viv - Znesinnja, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 5941, "fields": {"label": "Svitavy", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5942, "fields": {"label": "Svitavy, kr. Pardubick\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5959, "fields": {"label": "Jamnitz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22216}}, {"model": "labels.label", "pk": 5960, "fields": {"label": "Stronach (Lienz)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22259}}, {"model": "labels.label", "pk": 5961, "fields": {"label": "Nizza", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 5962, "fields": {"label": "Gr\u00fcnburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22322}}, {"model": "labels.label", "pk": 5963, "fields": {"label": "Olten", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5964, "fields": {"label": "Olten, Kt. Solothurn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5965, "fields": {"label": "Bad Kreuznach", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "labels.label", "pk": 5966, "fields": {"label": "Lasberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22494}}, {"model": "labels.label", "pk": 5967, "fields": {"label": "Fribourg", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5968, "fields": {"label": "Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5969, "fields": {"label": "Boc\u0219a", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22545}}, {"model": "labels.label", "pk": 5970, "fields": {"label": "Lud\u017amierz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22558}}, {"model": "labels.label", "pk": 5971, "fields": {"label": "Warszawa, woj. mazowieckie", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5972, "fields": {"label": "Vezzano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22570}}, {"model": "labels.label", "pk": 5973, "fields": {"label": "Vezzano", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22570}}, {"model": "labels.label", "pk": 6951, "fields": {"label": "Thalberg, Sigismund (Fortun\u00e9 Fran\u00e7ois)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 27245}}, {"model": "labels.label", "pk": 6952, "fields": {"label": "Fortun\u00e9 Fran\u00e7ois", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 27245}}, {"model": "labels.label", "pk": 7018, "fields": {"label": "Bratislava, kr. Bratislavsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 7161, "fields": {"label": "Bressanone/Brixen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 8216, "fields": {"label": "Wien (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 8588, "fields": {"label": "Bressanone", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 9187, "fields": {"label": "Merano/Meran, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 9289, "fields": {"label": "Teschen/T\u011b\u0161\u00edn/Cieszyn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 10492, "fields": {"label": "?, kr. ?", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 12551, "fields": {"label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 12706, "fields": {"label": "\u013dviv (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 13574, "fields": {"label": "Bratislava (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 13859, "fields": {"label": "Linz (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 14306, "fields": {"label": "Gorizia, reg. Friuli-Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 15282, "fields": {"label": "Reicha (Rejcha), Anton (Anton\u00edn) Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15283, "fields": {"label": "Rejcha", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15284, "fields": {"label": "Anton\u00edn Josef", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 18793, "fields": {"label": "Moscheles, Ignaz (Isaak)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 56248}}, {"model": "labels.label", "pk": 18794, "fields": {"label": "Isaak", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 56248}}, {"model": "labels.label", "pk": 20331, "fields": {"label": "Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 21059, "fields": {"label": "Liszt, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 62757}}, {"model": "labels.label", "pk": 21545, "fields": {"label": "Bressanone/Brixen, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 21609, "fields": {"label": "Praha - Mal\u00e1 Chuchle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 25058, "fields": {"label": "Praha - Horn\u00ed Po\u010dernice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 26197, "fields": {"label": "Szeged", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 27645, "fields": {"label": "Prag", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 29838, "fields": {"label": "Blahetka, Marie Leopoldine", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88219}}, {"model": "labels.label", "pk": 30089, "fields": {"label": "Beethoven, Ludwig van", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88902}}, {"model": "labels.label", "pk": 30728, "fields": {"label": "Freiburg/Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 30935, "fields": {"label": "Merano/Meran", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 31498, "fields": {"label": "St\u0159\u00edbro", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 31596, "fields": {"label": "B\u00e4uerle, Friederike; Ps. Friedrich Horn", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31597, "fields": {"label": "Friedrich Horn", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31632, "fields": {"label": "L\u2019viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 31701, "fields": {"label": "Czerny (\u010cern\u00fd), Carl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31702, "fields": {"label": "\u010cern\u00fd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31766, "fields": {"label": "Bahr, Hermann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93003}}, {"model": "labels.label", "pk": 31769, "fields": {"label": "Czerny, Adalbert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93009}}, {"model": "labels.label", "pk": 31770, "fields": {"label": "Czetz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93012}}, {"model": "labels.label", "pk": 31771, "fields": {"label": "Czikann, Johann Jakob Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93015}}, {"model": "labels.label", "pk": 31772, "fields": {"label": "Clam-Gallas, Eduard Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93018}}, {"model": "labels.label", "pk": 31773, "fields": {"label": "Clam-Martinic, Heinrich Jaroslav Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93021}}, {"model": "labels.label", "pk": 31774, "fields": {"label": "Clam-Martinic, Heinrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93024}}, {"model": "labels.label", "pk": 31775, "fields": {"label": "Claus, Karl Friedrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93028}}, {"model": "labels.label", "pk": 31776, "fields": {"label": "Conze, Alexander", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93031}}, {"model": "labels.label", "pk": 31777, "fields": {"label": "Costenoble, Karl Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93034}}, {"model": "labels.label", "pk": 31780, "fields": {"label": "\u010celakovsk\u00fd, Jarom\u00edr", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93044}}, {"model": "labels.label", "pk": 31781, "fields": {"label": "\u010celakovsk\u00fd, Ladislav", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93047}}, {"model": "labels.label", "pk": 31782, "fields": {"label": "\u010cerven\u00fd, V\u00e1clav Franti\u0161ek", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93050}}, {"model": "labels.label", "pk": 31783, "fields": {"label": "Charlemont, Hugo de", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93056}}, {"model": "labels.label", "pk": 31784, "fields": {"label": "Chlumczansk\u00fd, Wenzel Leopold von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93059}}, {"model": "labels.label", "pk": 31785, "fields": {"label": "Dumba, Konstantin Theodor", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93065}}, {"model": "labels.label", "pk": 31786, "fields": {"label": "Doderer, Wilhelm von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93068}}, {"model": "labels.label", "pk": 31787, "fields": {"label": "Defregger, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93071}}, {"model": "labels.label", "pk": 31788, "fields": {"label": "Dengel, Ignaz Philipp", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93074}}, {"model": "labels.label", "pk": 31811, "fields": {"label": "Holovsky, Hilde", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93136}}, {"model": "labels.label", "pk": 31872, "fields": {"label": "Lorenz, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93328}}, {"model": "labels.label", "pk": 31874, "fields": {"label": "L\u00f6wy, Julius; Ps. Von der Als", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31875, "fields": {"label": "Von der Als", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31879, "fields": {"label": "Lobmeyr, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93352}}, {"model": "labels.label", "pk": 31883, "fields": {"label": "Lichtblau, Adolf; Ps. A. L. Blau", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31884, "fields": {"label": "A. L. Blau", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31885, "fields": {"label": "Lichtblau, Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93369}}, {"model": "labels.label", "pk": 31888, "fields": {"label": "Leitgeb, Hubert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93378}}, {"model": "labels.label", "pk": 31890, "fields": {"label": "Lenhoss\u00e9k, Mih\u00e1ly Ign\u00e1c von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93387}}, {"model": "labels.label", "pk": 31892, "fields": {"label": "Lefler, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93393}}, {"model": "labels.label", "pk": 31893, "fields": {"label": "Leichter, K\u00e4the; geb. Pick", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31894, "fields": {"label": "Pick", "isoCode_639_3": "deu", "label_type": 612, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31895, "fields": {"label": "Leidesdorf, Franz; Ps. Wallner", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31896, "fields": {"label": "Wallner", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31899, "fields": {"label": "Lapaine, Valentin", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93409}}, {"model": "labels.label", "pk": 31900, "fields": {"label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31901, "fields": {"label": "Suida und Langer", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31902, "fields": {"label": "M\u00fcller, Wolf Johannes", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93418}}, {"model": "labels.label", "pk": 31910, "fields": {"label": "M\u00f6rl, Maria Theresia von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93442}}, {"model": "labels.label", "pk": 31911, "fields": {"label": "Millosicz, Georg Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93445}}, {"model": "labels.label", "pk": 31912, "fields": {"label": "Miklosich, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93448}}, {"model": "labels.label", "pk": 31917, "fields": {"label": "Meithner, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93469}}, {"model": "labels.label", "pk": 31920, "fields": {"label": "Margulies, Berl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93481}}, {"model": "labels.label", "pk": 31921, "fields": {"label": "M\u00e1nesov\u00e1, Amalie", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93484}}, {"model": "labels.label", "pk": 31922, "fields": {"label": "M\u00e1nes, Quido", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93487}}, {"model": "labels.label", "pk": 31928, "fields": {"label": "Mayer, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93510}}, {"model": "labels.label", "pk": 31929, "fields": {"label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31930, "fields": {"label": "Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31931, "fields": {"label": "Nov\u00e1\u010dek, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93516}}, {"model": "labels.label", "pk": 31940, "fields": {"label": "Ortmann, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93540}}, {"model": "labels.label", "pk": 31942, "fields": {"label": "Oellacher, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93546}}, {"model": "labels.label", "pk": 31947, "fields": {"label": "Poljanec, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93561}}, {"model": "labels.label", "pk": 31950, "fields": {"label": "Petzold, Emil", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93573}}, {"model": "labels.label", "pk": 31955, "fields": {"label": "Peithner von Lichtenfels, Eduard", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93588}}, {"model": "labels.label", "pk": 31958, "fields": {"label": "Patera, Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93600}}, {"model": "labels.label", "pk": 31960, "fields": {"label": "Rumpler, Matthias", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93609}}, {"model": "labels.label", "pk": 31961, "fields": {"label": "Rotter, Johann (Hans)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31962, "fields": {"label": "Hans", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31969, "fields": {"label": "Revertera von Salandra, Friedrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93639}}, {"model": "labels.label", "pk": 31970, "fields": {"label": "Reichenberger, Andreas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93642}}, {"model": "labels.label", "pk": 31971, "fields": {"label": "Reiser, Othmar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93645}}, {"model": "labels.label", "pk": 31973, "fields": {"label": "Randa, Maximilian von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93651}}, {"model": "labels.label", "pk": 31974, "fields": {"label": "Radakovi\u010d, Michael", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93654}}, {"model": "labels.label", "pk": 31975, "fields": {"label": "Szigligeti, Ede (Edv\u00e1rd); bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31976, "fields": {"label": "Edv\u00e1rd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31977, "fields": {"label": " bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 653, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31978, "fields": {"label": "Szurmay von Uzsok, S\u00e1ndor (Alexander) Frh.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31979, "fields": {"label": "Alexander Frh.", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31988, "fields": {"label": "St\u00fclz, Jodok", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93678}}, {"model": "labels.label", "pk": 31990, "fields": {"label": "Stowasser, Otto Hellmuth", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93684}}, {"model": "labels.label", "pk": 32001, "fields": {"label": "Steindler, Olga; verehel. Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32002, "fields": {"label": "Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32003, "fields": {"label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32004, "fields": {"label": "Ernest Edward Aurel", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32005, "fields": {"label": "Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32009, "fields": {"label": "Stariha, Janez Nep.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93714}}, {"model": "labels.label", "pk": 32018, "fields": {"label": "\u0160njari\u0107, Lukas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93748}}, {"model": "labels.label", "pk": 32030, "fields": {"label": "Sichulski, Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93779}}, {"model": "labels.label", "pk": 32032, "fields": {"label": "Settari, Wilhelm Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93785}}, {"model": "labels.label", "pk": 32034, "fields": {"label": "Sehnal, Eugen", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93791}}, {"model": "labels.label", "pk": 32037, "fields": {"label": "Schwartz, P. Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93800}}, {"model": "labels.label", "pk": 32038, "fields": {"label": "Schwarz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93803}}, {"model": "labels.label", "pk": 32039, "fields": {"label": "Schwarz, Kaspar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93809}}, {"model": "labels.label", "pk": 32041, "fields": {"label": "Schweitzer, Leopold Albrecht", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93815}}, {"model": "labels.label", "pk": 32042, "fields": {"label": "Schwabl, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93818}}, {"model": "labels.label", "pk": 32052, "fields": {"label": "Schu\u00ebcker, Edmund; eigentl. Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32053, "fields": {"label": "Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32054, "fields": {"label": "Schr\u00f6dl, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93839}}, {"model": "labels.label", "pk": 32059, "fields": {"label": "Schreyer, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93854}}, {"model": "labels.label", "pk": 32062, "fields": {"label": "Scholz, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93863}}, {"model": "labels.label", "pk": 32063, "fields": {"label": "Schrammel, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93866}}, {"model": "labels.label", "pk": 32067, "fields": {"label": "Scholl, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93878}}, {"model": "labels.label", "pk": 32069, "fields": {"label": "Sch\u00f6nberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32070, "fields": {"label": "Schoenberger", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32071, "fields": {"label": "Carl Friedrich Frh. von", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32072, "fields": {"label": "Sch\u00f6nberger, Benno", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93894}}, {"model": "labels.label", "pk": 32075, "fields": {"label": "Schnitzler, Julius", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93900}}, {"model": "labels.label", "pk": 32076, "fields": {"label": "Schober, Alfred", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93903}}, {"model": "labels.label", "pk": 32079, "fields": {"label": "Schoeller, Gustav Adolph von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93909}}, {"model": "labels.label", "pk": 32084, "fields": {"label": "Schmutzler, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93921}}, {"model": "labels.label", "pk": 32087, "fields": {"label": "Schmidt, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93933}}, {"model": "labels.label", "pk": 32088, "fields": {"label": "Schmidt, Anton", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93940}}, {"model": "labels.label", "pk": 32090, "fields": {"label": "Schmal, Johannes Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93946}}, {"model": "labels.label", "pk": 32094, "fields": {"label": "Schmidt-Beauchez, Louis", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93955}}, {"model": "labels.label", "pk": 32095, "fields": {"label": "Schindler, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93958}}, {"model": "labels.label", "pk": 32096, "fields": {"label": "Scheu, Josef Franz Georg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93961}}, {"model": "labels.label", "pk": 32097, "fields": {"label": "Schikaneder, Jakub", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93964}}, {"model": "labels.label", "pk": 32098, "fields": {"label": "Schell, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93967}}, {"model": "labels.label", "pk": 32099, "fields": {"label": "Schenk, Samuel Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93970}}, {"model": "labels.label", "pk": 32107, "fields": {"label": "T\u00f6lgyessy, Art\u00far", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93988}}, {"model": "labels.label", "pk": 32108, "fields": {"label": "Thun und Hohenstein, Emanuel Maria Gf. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93991}}, {"model": "labels.label", "pk": 32111, "fields": {"label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32112, "fields": {"label": "Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32113, "fields": {"label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32114, "fields": {"label": "Przerwa-Tetmajer", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32115, "fields": {"label": "Teuber, Emmerich (genannt Imre)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32116, "fields": {"label": "genannt Imre", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32119, "fields": {"label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32120, "fields": {"label": "Richard Denemy", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32121, "fields": {"label": " ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32390, "fields": {"label": "Laibach", "isoCode_639_3": "deu", "label_type": 6, "temp_entity": 9475}}, {"model": "entities.person", "pk": 27245, "fields": {"first_name": "Sigismund", "gender": "male", "text": [12155, 12156], "collection": [], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 46414, "fields": {"first_name": "Anton Josef", "gender": "male", "text": [21722, 21723], "collection": [], "profession": [151, 188, 2054], "title": []}}, {"model": "entities.person", "pk": 56248, "fields": {"first_name": "Ignaz", "gender": "male", "text": [27186, 27187], "collection": [], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 62757, "fields": {"first_name": "Franz von", "gender": "male", "text": [30762, 30763], "collection": [], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 88219, "fields": {"first_name": "Marie Leopoldine", "gender": "female", "text": [44908, 44909], "collection": [], "profession": [151, 1750], "title": []}}, {"model": "entities.person", "pk": 88902, "fields": {"first_name": "Ludwig van", "gender": "male", "text": [45290, 45291], "collection": [], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 92412, "fields": {"first_name": "Friederike", "gender": "female", "text": [47030, 47031], "collection": [], "profession": [128, 5578], "title": []}}, {"model": "entities.person", "pk": 92603, "fields": {"first_name": "Carl", "gender": "male", "text": [47126, 47127], "collection": [], "profession": [151, 5599], "title": []}}, {"model": "entities.person", "pk": 93003, "fields": {"first_name": "Hermann", "gender": "male", "text": [47200, 47201], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93009, "fields": {"first_name": "Adalbert", "gender": "male", "text": [47204, 47205], "collection": [], "profession": [154, 155], "title": []}}, {"model": "entities.person", "pk": 93012, "fields": {"first_name": "Johann", "gender": "male", "text": [47206, 47207], "collection": [], "profession": [134, 143, 157, 158], "title": []}}, {"model": "entities.person", "pk": 93015, "fields": {"first_name": "Johann Jakob Heinrich", "gender": "male", "text": [47208, 47209], "collection": [], "profession": [128, 146, 159], "title": []}}, {"model": "entities.person", "pk": 93018, "fields": {"first_name": "Eduard Gf.", "gender": "male", "text": [47210, 47211], "collection": [], "profession": [143, 144], "title": []}}, {"model": "entities.person", "pk": 93021, "fields": {"first_name": "Heinrich Jaroslav Gf.", "gender": "male", "text": [47212, 47213], "collection": [], "profession": [132, 134, 145, 146], "title": []}}, {"model": "entities.person", "pk": 93024, "fields": {"first_name": "Heinrich Gf.", "gender": "male", "text": [47214, 47215], "collection": [], "profession": [134, 147], "title": []}}, {"model": "entities.person", "pk": 93028, "fields": {"first_name": "Karl Friedrich", "gender": "male", "text": [47216, 47217], "collection": [], "profession": [135, 148], "title": []}}, {"model": "entities.person", "pk": 93031, "fields": {"first_name": "Alexander", "gender": "male", "text": [47218, 47219], "collection": [], "profession": [149, 150], "title": []}}, {"model": "entities.person", "pk": 93034, "fields": {"first_name": "Karl Ludwig", "gender": "male", "text": [47220, 47221], "collection": [], "profession": [128, 151, 152], "title": []}}, {"model": "entities.person", "pk": 93044, "fields": {"first_name": "Jarom\u00edr", "gender": "male", "text": [47226, 47227], "collection": [], "profession": [132, 133, 134], "title": []}}, {"model": "entities.person", "pk": 93047, "fields": {"first_name": "Ladislav", "gender": "male", "text": [47228, 47229], "collection": [], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93050, "fields": {"first_name": "V\u00e1clav Franti\u0161ek", "gender": "male", "text": [47230, 47231], "collection": [], "profession": [137, 138], "title": []}}, {"model": "entities.person", "pk": 93056, "fields": {"first_name": "Hugo de", "gender": "male", "text": [47232, 47233], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93059, "fields": {"first_name": "Wenzel Leopold von", "gender": "male", "text": [47234, 47235], "collection": [], "profession": [141, 142], "title": []}}, {"model": "entities.person", "pk": 93065, "fields": {"first_name": "Konstantin Theodor", "gender": "male", "text": [47236, 47237], "collection": [], "profession": [146, 162], "title": []}}, {"model": "entities.person", "pk": 93068, "fields": {"first_name": "Wilhelm von", "gender": "male", "text": [47238, 47239], "collection": [], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93071, "fields": {"first_name": "Franz von", "gender": "male", "text": [47240, 47241], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93074, "fields": {"first_name": "Ignaz Philipp", "gender": "male", "text": [47242, 47243], "collection": [], "profession": [149, 160], "title": []}}, {"model": "entities.person", "pk": 93136, "fields": {"first_name": "Hilde", "gender": "female", "text": [47276, 47277], "collection": [], "profession": [163, 164], "title": []}}, {"model": "entities.person", "pk": 93328, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47384, 47385], "collection": [], "profession": [154, 175], "title": []}}, {"model": "entities.person", "pk": 93337, "fields": {"first_name": "Julius", "gender": "male", "text": [47388, 47389], "collection": [], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93352, "fields": {"first_name": "Josef", "gender": "male", "text": [47394, 47395], "collection": [], "profession": [137, 173], "title": []}}, {"model": "entities.person", "pk": 93366, "fields": {"first_name": "Adolf", "gender": "male", "text": [47402, 47403], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93369, "fields": {"first_name": "Ludwig", "gender": "male", "text": [47404, 47405], "collection": [], "profession": [132, 172], "title": []}}, {"model": "entities.person", "pk": 93378, "fields": {"first_name": "Hubert", "gender": "male", "text": [47410, 47411], "collection": [], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93387, "fields": {"first_name": "Mih\u00e1ly Ign\u00e1c von", "gender": "male", "text": [47414, 47415], "collection": [], "profession": [154, 171], "title": []}}, {"model": "entities.person", "pk": 93393, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47418, 47419], "collection": [], "profession": [139, 168], "title": []}}, {"model": "entities.person", "pk": 93396, "fields": {"first_name": "K\u00e4the", "gender": "female", "text": [47420, 47421], "collection": [], "profession": [128, 134, 169], "title": []}}, {"model": "entities.person", "pk": 93400, "fields": {"first_name": "Franz", "gender": "male", "text": [47422, 47423], "collection": [], "profession": [128, 151, 170], "title": []}}, {"model": "entities.person", "pk": 93409, "fields": {"first_name": "Valentin", "gender": "male", "text": [47428, 47429], "collection": [], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93415, "fields": {"first_name": "Johanna", "gender": "female", "text": [47430, 47431], "collection": [], "profession": [137, 165, 166], "title": []}}, {"model": "entities.person", "pk": 93418, "fields": {"first_name": "Wolf Johannes", "gender": "male", "text": [47432, 47433], "collection": [], "profession": [135, 185], "title": []}}, {"model": "entities.person", "pk": 93442, "fields": {"first_name": "Maria Theresia von", "gender": "female", "text": [47446, 47447], "collection": [], "profession": [141, 184], "title": []}}, {"model": "entities.person", "pk": 93445, "fields": {"first_name": "Georg Frh. von", "gender": "male", "text": [47448, 47449], "collection": [], "profession": [143, 183], "title": []}}, {"model": "entities.person", "pk": 93448, "fields": {"first_name": "Franz von", "gender": "male", "text": [47450, 47451], "collection": [], "profession": [134, 149, 182], "title": []}}, {"model": "entities.person", "pk": 93469, "fields": {"first_name": "Karl", "gender": "male", "text": [47460, 47461], "collection": [], "profession": [134, 180, 181], "title": []}}, {"model": "entities.person", "pk": 93481, "fields": {"first_name": "Berl", "gender": "male", "text": [47466, 47467], "collection": [], "profession": [151, 179], "title": []}}, {"model": "entities.person", "pk": 93484, "fields": {"first_name": "Amalie", "gender": "female", "text": [47468, 47469], "collection": [], "profession": [139, 178], "title": []}}, {"model": "entities.person", "pk": 93487, "fields": {"first_name": "Quido", "gender": "male", "text": [47470, 47471], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93510, "fields": {"first_name": "Karl", "gender": "male", "text": [47482, 47483], "collection": [], "profession": [128, 177], "title": []}}, {"model": "entities.person", "pk": 93513, "fields": {"first_name": "Johann Nep.", "gender": "male", "text": [47484, 47485], "collection": [], "profession": [128, 134, 176], "title": []}}, {"model": "entities.person", "pk": 93516, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47486, 47487], "collection": [], "profession": [151, 186], "title": []}}, {"model": "entities.person", "pk": 93540, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47502, 47503], "collection": [], "profession": [188, 189], "title": []}}, {"model": "entities.person", "pk": 93546, "fields": {"first_name": "Josef", "gender": "male", "text": [47506, 47507], "collection": [], "profession": [135, 187], "title": []}}, {"model": "entities.person", "pk": 93561, "fields": {"first_name": "Leopold", "gender": "male", "text": [47516, 47517], "collection": [], "profession": [135, 188, 193], "title": []}}, {"model": "entities.person", "pk": 93573, "fields": {"first_name": "Emil", "gender": "male", "text": [47522, 47523], "collection": [], "profession": [149, 192], "title": []}}, {"model": "entities.person", "pk": 93588, "fields": {"first_name": "Eduard", "gender": "male", "text": [47530, 47531], "collection": [], "profession": [139, 191], "title": []}}, {"model": "entities.person", "pk": 93600, "fields": {"first_name": "Adolf", "gender": "male", "text": [47536, 47537], "collection": [], "profession": [135, 190], "title": []}}, {"model": "entities.person", "pk": 93609, "fields": {"first_name": "Matthias", "gender": "male", "text": [47540, 47541], "collection": [], "profession": [128, 141, 200], "title": []}}, {"model": "entities.person", "pk": 93615, "fields": {"first_name": "Johann", "gender": "male", "text": [47542, 47543], "collection": [], "profession": [134, 137, 149, 199], "title": []}}, {"model": "entities.person", "pk": 93639, "fields": {"first_name": "Friedrich Gf.", "gender": "male", "text": [47556, 47557], "collection": [], "profession": [134, 146, 198], "title": []}}, {"model": "entities.person", "pk": 93642, "fields": {"first_name": "Andreas", "gender": "male", "text": [47558, 47559], "collection": [], "profession": [141, 196], "title": []}}, {"model": "entities.person", "pk": 93645, "fields": {"first_name": "Othmar", "gender": "male", "text": [47560, 47561], "collection": [], "profession": [135, 197], "title": []}}, {"model": "entities.person", "pk": 93651, "fields": {"first_name": "Maximilian von", "gender": "male", "text": [47564, 47565], "collection": [], "profession": [143, 146, 195], "title": []}}, {"model": "entities.person", "pk": 93654, "fields": {"first_name": "Michael", "gender": "male", "text": [47566, 47567], "collection": [], "profession": [135, 194], "title": []}}, {"model": "entities.person", "pk": 93657, "fields": {"first_name": "Ede", "gender": "male", "text": [47568, 47569], "collection": [], "profession": [128, 151, 230], "title": []}}, {"model": "entities.person", "pk": 93663, "fields": {"first_name": "S\u00e1ndor Frh.", "gender": "male", "text": [47570, 47571], "collection": [], "profession": [134, 143, 231], "title": []}}, {"model": "entities.person", "pk": 93678, "fields": {"first_name": "Jodok", "gender": "male", "text": [47580, 47581], "collection": [], "profession": [141, 149, 229], "title": []}}, {"model": "entities.person", "pk": 93684, "fields": {"first_name": "Otto Hellmuth", "gender": "male", "text": [47584, 47585], "collection": [], "profession": [146, 149, 228], "title": []}}, {"model": "entities.person", "pk": 93702, "fields": {"first_name": "Olga", "gender": "female", "text": [47594, 47595], "collection": [], "profession": [135, 188, 226], "title": []}}, {"model": "entities.person", "pk": 93705, "fields": {"first_name": "Ernst Edward Aurel", "gender": "male", "text": [47596, 47597], "collection": [], "profession": [149, 227], "title": []}}, {"model": "entities.person", "pk": 93714, "fields": {"first_name": "Janez Nep.", "gender": "male", "text": [47602, 47603], "collection": [], "profession": [141, 225], "title": []}}, {"model": "entities.person", "pk": 93748, "fields": {"first_name": "Lukas", "gender": "male", "text": [47614, 47615], "collection": [], "profession": [143, 224], "title": []}}, {"model": "entities.person", "pk": 93779, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47626, 47627], "collection": [], "profession": [139, 223], "title": []}}, {"model": "entities.person", "pk": 93785, "fields": {"first_name": "Wilhelm Anton Maria", "gender": "male", "text": [47630, 47631], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93791, "fields": {"first_name": "Eugen", "gender": "male", "text": [47634, 47635], "collection": [], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93800, "fields": {"first_name": "P. Anton Maria", "gender": "male", "text": [47640, 47641], "collection": [], "profession": [141, 219], "title": []}}, {"model": "entities.person", "pk": 93803, "fields": {"first_name": "Johann", "gender": "male", "text": [47642, 47643], "collection": [], "profession": [149, 188, 220], "title": []}}, {"model": "entities.person", "pk": 93809, "fields": {"first_name": "Kaspar", "gender": "male", "text": [47644, 47645], "collection": [], "profession": [134, 137, 221], "title": []}}, {"model": "entities.person", "pk": 93815, "fields": {"first_name": "Leopold Albrecht", "gender": "male", "text": [47648, 47649], "collection": [], "profession": [128, 222], "title": []}}, {"model": "entities.person", "pk": 93818, "fields": {"first_name": "Franz", "gender": "male", "text": [47650, 47651], "collection": [], "profession": [217, 218], "title": []}}, {"model": "entities.person", "pk": 93836, "fields": {"first_name": "Edmund", "gender": "male", "text": [47660, 47661], "collection": [], "profession": [151, 216], "title": []}}, {"model": "entities.person", "pk": 93839, "fields": {"first_name": "Leopold", "gender": "male", "text": [47662, 47663], "collection": [], "profession": [139, 215], "title": []}}, {"model": "entities.person", "pk": 93854, "fields": {"first_name": "Johann", "gender": "male", "text": [47672, 47673], "collection": [], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93863, "fields": {"first_name": "Franz", "gender": "male", "text": [47676, 47677], "collection": [], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93866, "fields": {"first_name": "Johann", "gender": "male", "text": [47678, 47679], "collection": [], "profession": [151, 214], "title": []}}, {"model": "entities.person", "pk": 93878, "fields": {"first_name": "Joseph", "gender": "male", "text": [47684, 47685], "collection": [], "profession": [132, 134, 213], "title": []}}, {"model": "entities.person", "pk": 93891, "fields": {"first_name": "Adolf Frh. von", "gender": "male", "text": [47688, 47689], "collection": [], "profession": [143, 146, 211], "title": []}}, {"model": "entities.person", "pk": 93894, "fields": {"first_name": "Benno", "gender": "male", "text": [47690, 47691], "collection": [], "profession": [151, 212], "title": []}}, {"model": "entities.person", "pk": 93900, "fields": {"first_name": "Julius", "gender": "male", "text": [47694, 47695], "collection": [], "profession": [154, 208], "title": []}}, {"model": "entities.person", "pk": 93903, "fields": {"first_name": "Alfred", "gender": "male", "text": [47696, 47697], "collection": [], "profession": [132, 146, 209], "title": []}}, {"model": "entities.person", "pk": 93909, "fields": {"first_name": "Gustav Adolph von", "gender": "male", "text": [47700, 47701], "collection": [], "profession": [137, 210], "title": []}}, {"model": "entities.person", "pk": 93921, "fields": {"first_name": "Leopold", "gender": "male", "text": [47706, 47707], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93933, "fields": {"first_name": "Joseph", "gender": "male", "text": [47712, 47713], "collection": [], "profession": [151, 207], "title": []}}, {"model": "entities.person", "pk": 93940, "fields": {"first_name": "Anton", "gender": "male", "text": [47714, 47715], "collection": [], "profession": [134, 137, 206], "title": []}}, {"model": "entities.person", "pk": 93946, "fields": {"first_name": "Johannes Adolf", "gender": "male", "text": [47718, 47719], "collection": [], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93955, "fields": {"first_name": "Louis", "gender": "male", "text": [47724, 47725], "collection": [], "profession": [128, 188, 205], "title": []}}, {"model": "entities.person", "pk": 93958, "fields": {"first_name": "Josef", "gender": "male", "text": [47726, 47727], "collection": [], "profession": [149, 204], "title": []}}, {"model": "entities.person", "pk": 93961, "fields": {"first_name": "Josef Franz Georg", "gender": "male", "text": [47728, 47729], "collection": [], "profession": [128, 151, 203], "title": []}}, {"model": "entities.person", "pk": 93964, "fields": {"first_name": "Jakub", "gender": "male", "text": [47730, 47731], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93967, "fields": {"first_name": "Karl", "gender": "male", "text": [47732, 47733], "collection": [], "profession": [137, 201], "title": []}}, {"model": "entities.person", "pk": 93970, "fields": {"first_name": "Samuel Leopold", "gender": "male", "text": [47734, 47735], "collection": [], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93988, "fields": {"first_name": "Art\u00far", "gender": "male", "text": [47746, 47747], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93991, "fields": {"first_name": "Emanuel Maria Gf. von", "gender": "male", "text": [47748, 47749], "collection": [], "profession": [141, 235], "title": []}}, {"model": "entities.person", "pk": 94003, "fields": {"first_name": "Ernst Maximilian Frh. von", "gender": "male", "text": [47754, 47755], "collection": [], "profession": [128, 146, 233], "title": []}}, {"model": "entities.person", "pk": 94006, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47756, 47757], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 94009, "fields": {"first_name": "Emmerich", "gender": "male", "text": [47758, 47759], "collection": [], "profession": [166, 234], "title": []}}, {"model": "entities.person", "pk": 94018, "fields": {"first_name": "Richard", "gender": "male", "text": [47764, 47765], "collection": [], "profession": [151, 232], "title": []}}, {"model": "entities.place", "pk": 26, "fields": {"kind": 9, "lat": 45.33917, "lng": 14.30833, "text": [12, 14, 11225], "collection": []}}, {"model": "entities.place", "pk": 133, "fields": {"kind": 12, "lat": 45.81444, "lng": 15.97798, "text": [59, 11275], "collection": []}}, {"model": "entities.place", "pk": 183, "fields": {"kind": 12, "lat": 48.20849, "lng": 16.37208, "text": [8304, 11203], "collection": []}}, {"model": "entities.place", "pk": 327, "fields": {"kind": 13, "lat": 49.19522, "lng": 16.60796, "text": [1064, 1090, 1092, 1094, 1096, 3300, 4453, 6308, 6417, 11259], "collection": []}}, {"model": "entities.place", "pk": 384, "fields": {"kind": 9, "lat": 49.19627, "lng": 13.50926, "text": [173, 8727, 11284], "collection": []}}, {"model": "entities.place", "pk": 400, "fields": {"kind": 12, "lat": 47.49801, "lng": 19.03991, "text": [181, 11223], "collection": []}}, {"model": "entities.place", "pk": 831, "fields": {"kind": 12, "lat": 44.43225, "lng": 26.10626, "text": [11242, 11243], "collection": []}}, {"model": "entities.place", "pk": 926, "fields": {"kind": 5, "lat": 48.00543, "lng": 16.23264, "text": [11313, 11314], "collection": []}}, {"model": "entities.place", "pk": 1390, "fields": {"kind": 12, "lat": 52.52437, "lng": 13.41053, "text": [11226, 11227], "collection": []}}, {"model": "entities.place", "pk": 1424, "fields": {"kind": 13, "lat": 50.76711, "lng": 15.05619, "text": [654, 5083, 5085, 6119, 6324, 6372, 7681, 7683, 7776, 8211, 11258], "collection": []}}, {"model": "entities.place", "pk": 1454, "fields": {"kind": 5, "lat": 47.38478, "lng": 9.90139, "text": [11337, 11338], "collection": []}}, {"model": "entities.place", "pk": 1701, "fields": {"kind": 9, "lat": 46.69111, "lng": 13.97111, "text": [784, 11271], "collection": []}}, {"model": "entities.place", "pk": 1718, "fields": {"kind": 5, "lat": 49.13995, "lng": 9.22054, "text": [11269, 11270], "collection": []}}, {"model": "entities.place", "pk": 2006, "fields": {"kind": 13, "lat": 47.75, "lng": 26.66667, "text": [928, 11251], "collection": []}}, {"model": "entities.place", "pk": 2072, "fields": {"kind": 12, "lat": 48.14816, "lng": 17.10674, "text": [962, 964, 7171, 7173, 11220], "collection": []}}, {"model": "entities.place", "pk": 2085, "fields": {"kind": 9, "lat": 50.58566, "lng": 16.33181, "text": [969, 971, 11272], "collection": []}}, {"model": "entities.place", "pk": 2161, "fields": {"kind": 13, "lat": 51.1, "lng": 17.03333, "text": [1011, 1013, 10485, 11199], "collection": []}}, {"model": "entities.place", "pk": 2170, "fields": {"kind": 5, "lat": 46.71503, "lng": 11.65598, "text": [1017, 1054, 1056, 11279], "collection": []}}, {"model": "entities.place", "pk": 2197, "fields": {"kind": 13, "lat": 50.20923, "lng": 15.83277, "text": [1029, 4052, 4438, 6016, 11204], "collection": []}}, {"model": "entities.place", "pk": 2281, "fields": {"kind": 11, "lat": 50.08791, "lng": 25.15027, "text": [11244, 11245], "collection": []}}, {"model": "entities.place", "pk": 2489, "fields": {"kind": 12, "lat": -34.61315, "lng": -58.37723, "text": [11256, 11257], "collection": []}}, {"model": "entities.place", "pk": 2602, "fields": {"kind": 5, "lat": 46.41326, "lng": 11.24616, "text": [1236, 3663, 3665, 9705, 11252], "collection": []}}, {"model": "entities.place", "pk": 2854, "fields": {"kind": 13, "lat": 48.29149, "lng": 25.94034, "text": [7828, 11224], "collection": []}}, {"model": "entities.place", "pk": 3105, "fields": {"kind": 5, "lat": 49.75133, "lng": 18.63213, "text": [1467, 9235, 9239, 11260], "collection": []}}, {"model": "entities.place", "pk": 3162, "fields": {"kind": 13, "lat": 46.76667, "lng": 23.6, "text": [3930, 3932, 11330], "collection": []}}, {"model": "entities.place", "pk": 4096, "fields": {"kind": 5, "lat": 50.80434, "lng": 6.49299, "text": [11299, 11300], "collection": []}}, {"model": "entities.place", "pk": 4269, "fields": {"kind": 9, "lat": 50.4406, "lng": 13.45738, "text": [2030, 11231], "collection": []}}, {"model": "entities.place", "pk": 4767, "fields": {"kind": 13, "lat": 47.06667, "lng": 15.45, "text": [11210, 11211], "collection": []}}, {"model": "entities.place", "pk": 4877, "fields": {"kind": 9, "lat": 48.51103, "lng": 14.50453, "text": [11319, 11320], "collection": []}}, {"model": "entities.place", "pk": 5294, "fields": {"kind": 11, "lat": 45.9, "lng": 25.85, "text": [2492, 11246], "collection": []}}, {"model": "entities.place", "pk": 5308, "fields": {"kind": 10, "lat": 51.08317, "lng": 7.53087, "text": [11289, 11290], "collection": []}}, {"model": "entities.place", "pk": 5478, "fields": {"kind": 11, "lat": 45.94088, "lng": 13.62167, "text": [2571, 2603, 2605, 11303], "collection": []}}, {"model": "entities.place", "pk": 5691, "fields": {"kind": 5, "lat": 46.66817, "lng": 11.15953, "text": [2675, 5101, 5344, 5346, 5348, 5350, 5352, 5353, 6350, 6352, 9735, 11326], "collection": []}}, {"model": "entities.place", "pk": 5749, "fields": {"kind": 11, "lat": 48.23333, "lng": 13.83333, "text": [11229, 11230], "collection": []}}, {"model": "entities.place", "pk": 6004, "fields": {"kind": 9, "lat": 50.03197, "lng": 17.04058, "text": [2825, 2827, 11294], "collection": []}}, {"model": "entities.place", "pk": 6324, "fields": {"kind": 13, "lat": 52.37052, "lng": 9.73322, "text": [11221, 11222], "collection": []}}, {"model": "entities.place", "pk": 6700, "fields": {"kind": 13, "lat": 47.26266, "lng": 11.39454, "text": [11235, 11236], "collection": []}}, {"model": "entities.place", "pk": 6947, "fields": {"kind": 9, "lat": 46.61472, "lng": 16.08583, "text": [3253, 3255, 11278], "collection": []}}, {"model": "entities.place", "pk": 7454, "fields": {"kind": 11, "lat": 50.20528, "lng": 19.27498, "text": [3504, 11336], "collection": []}}, {"model": "entities.place", "pk": 7622, "fields": {"kind": 5, "lat": 47.3765, "lng": 15.09144, "text": [11249, 11250], "collection": []}}, {"model": "entities.place", "pk": 7986, "fields": {"kind": 11, "lat": 51.31667, "lng": 9.5, "text": [11218, 11219], "collection": []}}, {"model": "entities.place", "pk": 8482, "fields": {"kind": 5, "lat": 48.30521, "lng": 16.32522, "text": [11322, 11323], "collection": []}}, {"model": "entities.place", "pk": 8798, "fields": {"kind": 5, "lat": 47.66033, "lng": 9.17582, "text": [11301, 11302], "collection": []}}, {"model": "entities.place", "pk": 9287, "fields": {"kind": 5, "lat": 47.58333, "lng": 12.16667, "text": [11324, 11325], "collection": []}}, {"model": "entities.place", "pk": 9455, "fields": {"kind": 9, "lat": 50.08364, "lng": 13.03925, "text": [4512, 11288], "collection": []}}, {"model": "entities.place", "pk": 9475, "fields": {"kind": 12, "lat": 46.05108, "lng": 14.50513, "text": [4522, 11331], "collection": []}}, {"model": "entities.place", "pk": 9735, "fields": {"kind": 13, "lat": 49.83826, "lng": 24.02324, "text": [4642, 4644, 5041, 5043, 5045, 10711, 11263], "collection": []}}, {"model": "entities.place", "pk": 10015, "fields": {"kind": 13, "lat": 48.30639, "lng": 14.28611, "text": [11195, 11196], "collection": []}}, {"model": "entities.place", "pk": 10265, "fields": {"kind": 12, "lat": 51.50853, "lng": -0.12574, "text": [11239, 11240], "collection": []}}, {"model": "entities.place", "pk": 10793, "fields": {"kind": 13, "lat": 46.55472, "lng": 15.64667, "text": [5193, 5219, 5221, 5223, 11266], "collection": []}}, {"model": "entities.place", "pk": 11238, "fields": {"kind": 9, "lat": 49.75565, "lng": 12.997, "text": [5409, 11234], "collection": []}}, {"model": "entities.place", "pk": 11556, "fields": {"kind": 9, "lat": 50.72063, "lng": 13.65723, "text": [5576, 11308], "collection": []}}, {"model": "entities.place", "pk": 11799, "fields": {"kind": 13, "lat": 48.13743, "lng": 11.57549, "text": [11197, 11198], "collection": []}}, {"model": "entities.place", "pk": 12211, "fields": {"kind": 11, "lat": 50.47379, "lng": 17.33437, "text": [5900, 11321], "collection": []}}, {"model": "entities.place", "pk": 12758, "fields": {"kind": 11, "lat": 43.70313, "lng": 7.26608, "text": [6173, 11205], "collection": []}}, {"model": "entities.place", "pk": 13253, "fields": {"kind": 9, "lat": 47.68501, "lng": 16.59049, "text": [6431, 11344], "collection": []}}, {"model": "entities.place", "pk": 13382, "fields": {"kind": 13, "lat": 49.59552, "lng": 17.25175, "text": [6491, 6493, 6495, 6497, 11228], "collection": []}}, {"model": "entities.place", "pk": 13714, "fields": {"kind": 12, "lat": 48.85341, "lng": 2.3488, "text": [11291, 11292], "collection": []}}, {"model": "entities.place", "pk": 13987, "fields": {"kind": 10, "lat": 47.91232, "lng": 12.81512, "text": [11280, 11281], "collection": []}}, {"model": "entities.place", "pk": 14608, "fields": {"kind": 12, "lat": 50.08804, "lng": 14.42076, "text": [7122, 7124, 7126, 7128, 7130, 11200], "collection": []}}, {"model": "entities.place", "pk": 16242, "fields": {"kind": 9, "lat": 48.25216, "lng": 17.21539, "text": [7951, 11214], "collection": []}}, {"model": "entities.place", "pk": 16310, "fields": {"kind": 5, "lat": 46.586, "lng": 11.08571, "text": [7994, 11327], "collection": []}}, {"model": "entities.place", "pk": 16594, "fields": {"kind": 9, "lat": 49.96122, "lng": 16.76576, "text": [8138, 11293], "collection": []}}, {"model": "entities.place", "pk": 16864, "fields": {"kind": 5, "lat": 46.75833, "lng": 15.20833, "text": [11286, 11287], "collection": []}}, {"model": "entities.place", "pk": 18374, "fields": {"kind": 9, "lat": 50.2421, "lng": 19.30725, "text": [9008, 11241], "collection": []}}, {"model": "entities.place", "pk": 18400, "fields": {"kind": 13, "lat": 46.253, "lng": 20.14824, "text": [9021, 11351], "collection": []}}, {"model": "entities.place", "pk": 19215, "fields": {"kind": 13, "lat": 46.06787, "lng": 11.12108, "text": [9433, 9434, 9461, 9463, 11348], "collection": []}}, {"model": "entities.place", "pk": 19599, "fields": {"kind": 9, "lat": 48.20735, "lng": 18.06581, "text": [9646, 11285], "collection": []}}, {"model": "entities.place", "pk": 20549, "fields": {"kind": 12, "lat": 52.22977, "lng": 21.01178, "text": [10129, 10131, 10133, 10135, 10138, 11345], "collection": []}}, {"model": "entities.place", "pk": 20659, "fields": {"kind": 5, "lat": 44.8975, "lng": 21.41722, "text": [10186, 11255], "collection": []}}, {"model": "entities.place", "pk": 20872, "fields": {"kind": 5, "lat": 47.11547, "lng": 13.13467, "text": [10300, 11339], "collection": []}}, {"model": "entities.place", "pk": 20988, "fields": {"kind": 9, "lat": 51.02308, "lng": -0.50604, "text": [11304, 11305], "collection": []}}, {"model": "entities.place", "pk": 21818, "fields": {"kind": 9, "lat": 49.75594, "lng": 16.46829, "text": [10788, 11215], "collection": []}}, {"model": "entities.place", "pk": 22216, "fields": {"kind": 9, "lat": 49.01898, "lng": 15.56994, "text": [11206, 11207], "collection": []}}, {"model": "entities.place", "pk": 22259, "fields": {"kind": 9, "lat": 46.83333, "lng": 12.85, "text": [11261, 11262], "collection": []}}, {"model": "entities.place", "pk": 22322, "fields": {"kind": 9, "lat": 47.97234, "lng": 14.26472, "text": [11237, 11238], "collection": []}}, {"model": "entities.place", "pk": 22354, "fields": {"kind": 11, "lat": 47.34999, "lng": 7.90329, "text": [11253, 11254], "collection": []}}, {"model": "entities.place", "pk": 22475, "fields": {"kind": 5, "lat": 49.8414, "lng": 7.86713, "text": [11311, 11312], "collection": []}}, {"model": "entities.place", "pk": 22494, "fields": {"kind": 9, "lat": 48.47121, "lng": 14.54023, "text": [11317, 11318], "collection": []}}, {"model": "entities.place", "pk": 22526, "fields": {"kind": 13, "lat": 46.80237, "lng": 7.15128, "text": [11334, 11335], "collection": []}}, {"model": "entities.place", "pk": 22545, "fields": {"kind": 11, "lat": 45.37333, "lng": 21.70917, "text": [11342, 11343], "collection": []}}, {"model": "entities.place", "pk": 22558, "fields": {"kind": 9, "lat": 49.46656, "lng": 19.9825, "text": [11346, 11347], "collection": []}}, {"model": "entities.place", "pk": 22570, "fields": {"kind": 5, "lat": 46.07867, "lng": 10.99735, "text": [11349, 11350], "collection": []}}, {"model": "entities.place", "pk": 93025, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93035, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93051, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93060, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93075, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93379, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93397, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93410, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93449, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93562, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93610, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93658, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93715, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93749, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93804, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93855, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93879, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93934, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93937, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24869, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24898, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24899, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24900, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24908, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24909, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24910, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24911, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25012, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25035, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25059, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25060, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25143, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25186, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25187, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25188, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25189, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25199, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25200, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25212, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25213, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25395, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25396, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25397, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25398, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25401, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25402, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25405, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25412, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25413, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25414, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25415, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25416, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25417, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25418, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25419, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25420, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25421, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25589, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25626, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25627, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25628, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25629, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25630, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25631, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25632, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25633, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25634, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25635, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25767, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25768, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25769, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25770, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25771, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25772, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25773, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94102, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94103, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94104, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94105, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94120, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94121, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94122, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94123, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94124, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94125, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94126, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94127, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94128, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94129, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94131, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94132, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94133, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94134, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94135, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94136, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94137, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94138, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94139, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94140, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94141, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94247, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94248, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94249, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94250, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94251, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94307, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94308, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94309, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94310, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94311, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94312, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94313, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94314, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94315, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94323, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94324, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94351, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94352, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94353, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94354, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94355, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94356, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94357, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94358, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94359, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94360, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94361, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94362, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94433, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94434, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94435, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94436, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94437, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94438, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94439, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94440, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94441, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94442, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94822, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94823, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94824, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94825, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94826, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94827, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94828, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94829, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94830, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94831, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94885, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94886, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94887, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94888, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94889, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94890, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94891, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94892, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94894, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94895, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94896, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94897, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94898, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94899, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94900, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94901, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94902, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94903, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94904, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95024, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95025, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95026, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95027, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95028, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95029, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95030, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95043, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95044, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95045, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95046, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95047, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95048, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95049, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95050, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95051, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95052, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95053, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95054, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95123, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95124, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95125, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95126, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95127, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95128, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95129, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95130, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95131, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95156, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95157, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95158, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95159, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95160, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95161, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95162, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95163, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95164, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95397, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95398, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95399, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95400, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95401, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95402, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95403, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95404, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95405, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95406, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95407, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95582, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95583, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95584, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95596, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95597, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95598, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95599, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95600, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95601, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95602, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95603, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95604, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95847, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95848, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95867, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95868, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95869, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95870, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95871, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95872, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95873, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95874, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95875, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95876, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95929, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95930, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95931, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95932, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95949, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95950, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95951, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95952, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95953, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95954, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95955, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95956, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95957, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96143, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96144, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96145, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96146, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96208, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96209, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96210, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96211, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96221, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96222, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96223, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96224, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96225, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96226, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96458, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96459, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96460, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96461, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96462, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96463, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96464, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96465, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96466, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96467, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96620, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96621, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96622, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96623, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96728, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96729, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96730, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96731, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96732, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96733, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96734, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96735, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96736, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96737, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96738, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96740, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96741, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96742, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96743, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96744, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96745, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96746, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96747, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96748, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96749, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96750, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96758, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96759, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96813, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96814, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96815, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96816, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96817, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96858, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96859, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96860, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96861, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96862, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96863, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96864, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96865, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96947, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96948, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96949, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96950, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96951, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96952, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96953, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96954, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96955, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96956, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97430, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97529, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97530, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97531, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97532, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97533, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97534, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97578, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97592, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97593, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97617, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97623, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97657, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97707, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97723, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97753, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97790, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97834, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97849, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97884, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97888, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97896, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97933, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97943, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97944, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97945, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97976, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97977, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97986, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98006, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98024, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98183, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98184, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98185, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98237, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98296, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98297, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98298, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98299, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98300, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98301, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98348, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98551, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98569, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98570, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98579, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98580, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98581, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98582, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98583, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98584, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98585, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98586, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98587, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98588, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98604, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98605, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98606, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98696, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98697, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98714, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98722, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98723, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98724, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98725, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98726, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98727, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98728, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98729, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98730, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98731, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98732, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98733, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98734, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98735, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98736, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98737, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98886, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98891, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98892, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98922, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98923, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98924, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98925, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98980, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98990, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98991, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98992, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98993, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98994, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98995, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98996, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98997, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98998, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98999, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99000, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99001, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99002, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99003, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99004, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99005, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99006, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99007, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99008, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99009, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99075, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99092, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99093, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99094, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99095, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99096, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99097, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99098, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99099, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99100, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99101, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99102, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99103, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99104, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99105, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99106, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99107, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99108, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99109, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99110, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99156, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99336, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99337, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99352, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99353, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99354, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99355, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99356, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99357, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99358, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99369, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99370, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99371, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99372, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99373, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99374, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99375, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99376, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99377, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99378, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99416, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99417, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99418, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99419, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99420, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99421, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99422, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99423, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99744, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99841, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99842, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99843, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99844, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99845, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99846, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99847, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99848, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99849, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99850, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "vocabularies.vocabnames", "pk": 1, "fields": {"name": "ProfessionType"}}, {"model": "vocabularies.vocabnames", "pk": 2, "fields": {"name": "PersonPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 5, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 6, "fields": {"name": "PersonPersonRelation"}}, {"model": "vocabularies.vocabnames", "pk": 7, "fields": {"name": "TextType"}}, {"model": "vocabularies.vocabnames", "pk": 8, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 9, "fields": {"name": "InstitutionType"}}, {"model": "vocabularies.vocabnames", "pk": 10, "fields": {"name": "PlaceType"}}, {"model": "vocabularies.vocabnames", "pk": 11, "fields": {"name": "CollectionType"}}, {"model": "relations.personperson", "pk": 92840, "fields": {"relation_type": 5608, "related_persona": 92412, "related_personb": 92603, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92930, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88902, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92931, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 27245, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92932, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88219, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92933, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 62757, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92934, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 56248, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92935, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 46414, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46415, "fields": {"relation_type": 595, "related_person": 46414, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46416, "fields": {"relation_type": 596, "related_person": 46414, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 56249, "fields": {"relation_type": 595, "related_person": 56248, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 88904, "fields": {"relation_type": 596, "related_person": 88902, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92415, "fields": {"relation_type": 595, "related_person": 92412, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92604, "fields": {"relation_type": 595, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92605, "fields": {"relation_type": 596, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93004, "fields": {"relation_type": 595, "related_person": 93003, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93005, "fields": {"relation_type": 596, "related_person": 93003, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93010, "fields": {"relation_type": 595, "related_person": 93009, "related_place": 18374, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93011, "fields": {"relation_type": 596, "related_person": 93009, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93013, "fields": {"relation_type": 595, "related_person": 93012, "related_place": 5294, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93014, "fields": {"relation_type": 596, "related_person": 93012, "related_place": 2489, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93016, "fields": {"relation_type": 595, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93017, "fields": {"relation_type": 596, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93019, "fields": {"relation_type": 595, "related_person": 93018, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93020, "fields": {"relation_type": 596, "related_person": 93018, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93022, "fields": {"relation_type": 595, "related_person": 93021, "related_place": 16242, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93023, "fields": {"relation_type": 596, "related_person": 93021, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93026, "fields": {"relation_type": 595, "related_person": 93024, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93027, "fields": {"relation_type": 596, "related_person": 93024, "related_place": 93025, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93029, "fields": {"relation_type": 595, "related_person": 93028, "related_place": 7986, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93030, "fields": {"relation_type": 596, "related_person": 93028, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93032, "fields": {"relation_type": 595, "related_person": 93031, "related_place": 6324, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93033, "fields": {"relation_type": 596, "related_person": 93031, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93036, "fields": {"relation_type": 595, "related_person": 93034, "related_place": 93035, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93037, "fields": {"relation_type": 596, "related_person": 93034, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93045, "fields": {"relation_type": 595, "related_person": 93044, "related_place": 2161, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93046, "fields": {"relation_type": 596, "related_person": 93044, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93048, "fields": {"relation_type": 595, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93049, "fields": {"relation_type": 596, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93054, "fields": {"relation_type": 595, "related_person": 93050, "related_place": 93051, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93055, "fields": {"relation_type": 596, "related_person": 93050, "related_place": 2197, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93057, "fields": {"relation_type": 595, "related_person": 93056, "related_place": 22216, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93058, "fields": {"relation_type": 596, "related_person": 93056, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93063, "fields": {"relation_type": 595, "related_person": 93059, "related_place": 93060, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93064, "fields": {"relation_type": 596, "related_person": 93059, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93066, "fields": {"relation_type": 595, "related_person": 93065, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93067, "fields": {"relation_type": 596, "related_person": 93065, "related_place": 1701, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93069, "fields": {"relation_type": 595, "related_person": 93068, "related_place": 1718, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93070, "fields": {"relation_type": 596, "related_person": 93068, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93072, "fields": {"relation_type": 595, "related_person": 93071, "related_place": 22259, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93073, "fields": {"relation_type": 596, "related_person": 93071, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93078, "fields": {"relation_type": 595, "related_person": 93074, "related_place": 93075, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93079, "fields": {"relation_type": 596, "related_person": 93074, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93137, "fields": {"relation_type": 595, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93138, "fields": {"relation_type": 596, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93329, "fields": {"relation_type": 595, "related_person": 93328, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93330, "fields": {"relation_type": 596, "related_person": 93328, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93338, "fields": {"relation_type": 595, "related_person": 93337, "related_place": 4269, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93339, "fields": {"relation_type": 596, "related_person": 93337, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93353, "fields": {"relation_type": 595, "related_person": 93352, "related_place": 5749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93354, "fields": {"relation_type": 596, "related_person": 93352, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93367, "fields": {"relation_type": 595, "related_person": 93366, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93368, "fields": {"relation_type": 596, "related_person": 93366, "related_place": 26, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93370, "fields": {"relation_type": 595, "related_person": 93369, "related_place": 13382, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93371, "fields": {"relation_type": 596, "related_person": 93369, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93382, "fields": {"relation_type": 595, "related_person": 93378, "related_place": 93379, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93383, "fields": {"relation_type": 596, "related_person": 93378, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93388, "fields": {"relation_type": 595, "related_person": 93387, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93389, "fields": {"relation_type": 596, "related_person": 93387, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93394, "fields": {"relation_type": 595, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93395, "fields": {"relation_type": 596, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93398, "fields": {"relation_type": 595, "related_person": 93396, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93399, "fields": {"relation_type": 596, "related_person": 93396, "related_place": 93397, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93401, "fields": {"relation_type": 595, "related_person": 93400, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93402, "fields": {"relation_type": 596, "related_person": 93400, "related_place": 12758, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93413, "fields": {"relation_type": 595, "related_person": 93409, "related_place": 93410, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93414, "fields": {"relation_type": 596, "related_person": 93409, "related_place": 133, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93416, "fields": {"relation_type": 595, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93417, "fields": {"relation_type": 596, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93419, "fields": {"relation_type": 595, "related_person": 93418, "related_place": 22354, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93420, "fields": {"relation_type": 596, "related_person": 93418, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93443, "fields": {"relation_type": 595, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93444, "fields": {"relation_type": 596, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93446, "fields": {"relation_type": 595, "related_person": 93445, "related_place": 2006, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93447, "fields": {"relation_type": 596, "related_person": 93445, "related_place": 7622, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93452, "fields": {"relation_type": 595, "related_person": 93448, "related_place": 93449, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93453, "fields": {"relation_type": 596, "related_person": 93448, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93470, "fields": {"relation_type": 595, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93471, "fields": {"relation_type": 596, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93482, "fields": {"relation_type": 595, "related_person": 93481, "related_place": 2281, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93483, "fields": {"relation_type": 596, "related_person": 93481, "related_place": 831, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93485, "fields": {"relation_type": 595, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93486, "fields": {"relation_type": 596, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93488, "fields": {"relation_type": 595, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93489, "fields": {"relation_type": 596, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93511, "fields": {"relation_type": 595, "related_person": 93510, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93512, "fields": {"relation_type": 596, "related_person": 93510, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93514, "fields": {"relation_type": 595, "related_person": 93513, "related_place": 22322, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93515, "fields": {"relation_type": 596, "related_person": 93513, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93517, "fields": {"relation_type": 595, "related_person": 93516, "related_place": 20659, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93518, "fields": {"relation_type": 596, "related_person": 93516, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93541, "fields": {"relation_type": 595, "related_person": 93540, "related_place": 1424, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93542, "fields": {"relation_type": 596, "related_person": 93540, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93547, "fields": {"relation_type": 595, "related_person": 93546, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93548, "fields": {"relation_type": 596, "related_person": 93546, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93565, "fields": {"relation_type": 595, "related_person": 93561, "related_place": 93562, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93566, "fields": {"relation_type": 596, "related_person": 93561, "related_place": 10793, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93574, "fields": {"relation_type": 595, "related_person": 93573, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93575, "fields": {"relation_type": 596, "related_person": 93573, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93589, "fields": {"relation_type": 595, "related_person": 93588, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93590, "fields": {"relation_type": 596, "related_person": 93588, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93601, "fields": {"relation_type": 595, "related_person": 93600, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93602, "fields": {"relation_type": 596, "related_person": 93600, "related_place": 3105, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93613, "fields": {"relation_type": 595, "related_person": 93609, "related_place": 13987, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93614, "fields": {"relation_type": 596, "related_person": 93609, "related_place": 93610, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93616, "fields": {"relation_type": 595, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93617, "fields": {"relation_type": 596, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93640, "fields": {"relation_type": 595, "related_person": 93639, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93641, "fields": {"relation_type": 596, "related_person": 93639, "related_place": 2170, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93643, "fields": {"relation_type": 595, "related_person": 93642, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93644, "fields": {"relation_type": 596, "related_person": 93642, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93646, "fields": {"relation_type": 595, "related_person": 93645, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93647, "fields": {"relation_type": 596, "related_person": 93645, "related_place": 6947, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93652, "fields": {"relation_type": 595, "related_person": 93651, "related_place": 21818, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93653, "fields": {"relation_type": 596, "related_person": 93651, "related_place": 2854, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93655, "fields": {"relation_type": 595, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93656, "fields": {"relation_type": 596, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93661, "fields": {"relation_type": 595, "related_person": 93657, "related_place": 93658, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93662, "fields": {"relation_type": 596, "related_person": 93657, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93664, "fields": {"relation_type": 595, "related_person": 93663, "related_place": 22545, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93665, "fields": {"relation_type": 596, "related_person": 93663, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93679, "fields": {"relation_type": 595, "related_person": 93678, "related_place": 1454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93680, "fields": {"relation_type": 596, "related_person": 93678, "related_place": 20872, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93685, "fields": {"relation_type": 595, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93686, "fields": {"relation_type": 596, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93703, "fields": {"relation_type": 595, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93704, "fields": {"relation_type": 596, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93706, "fields": {"relation_type": 595, "related_person": 93705, "related_place": 7454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93707, "fields": {"relation_type": 596, "related_person": 93705, "related_place": 22526, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93718, "fields": {"relation_type": 595, "related_person": 93714, "related_place": 93715, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93719, "fields": {"relation_type": 596, "related_person": 93714, "related_place": 9475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93752, "fields": {"relation_type": 595, "related_person": 93748, "related_place": 93749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93753, "fields": {"relation_type": 596, "related_person": 93748, "related_place": 3162, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93780, "fields": {"relation_type": 595, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93781, "fields": {"relation_type": 596, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93786, "fields": {"relation_type": 595, "related_person": 93785, "related_place": 16310, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93787, "fields": {"relation_type": 596, "related_person": 93785, "related_place": 5691, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93792, "fields": {"relation_type": 595, "related_person": 93791, "related_place": 9287, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93793, "fields": {"relation_type": 596, "related_person": 93791, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93801, "fields": {"relation_type": 595, "related_person": 93800, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93802, "fields": {"relation_type": 596, "related_person": 93800, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93807, "fields": {"relation_type": 595, "related_person": 93803, "related_place": 93804, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93808, "fields": {"relation_type": 596, "related_person": 93803, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93810, "fields": {"relation_type": 595, "related_person": 93809, "related_place": 22494, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93811, "fields": {"relation_type": 596, "related_person": 93809, "related_place": 4877, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93816, "fields": {"relation_type": 595, "related_person": 93815, "related_place": 12211, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93817, "fields": {"relation_type": 596, "related_person": 93815, "related_place": 8482, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93819, "fields": {"relation_type": 595, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93820, "fields": {"relation_type": 596, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93837, "fields": {"relation_type": 595, "related_person": 93836, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93838, "fields": {"relation_type": 596, "related_person": 93836, "related_place": 22475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93840, "fields": {"relation_type": 595, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93841, "fields": {"relation_type": 596, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93858, "fields": {"relation_type": 595, "related_person": 93854, "related_place": 93855, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93859, "fields": {"relation_type": 596, "related_person": 93854, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93864, "fields": {"relation_type": 595, "related_person": 93863, "related_place": 11556, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93865, "fields": {"relation_type": 596, "related_person": 93863, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93867, "fields": {"relation_type": 595, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93868, "fields": {"relation_type": 596, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93880, "fields": {"relation_type": 595, "related_person": 93878, "related_place": 93879, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93881, "fields": {"relation_type": 596, "related_person": 93878, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93892, "fields": {"relation_type": 595, "related_person": 93891, "related_place": 8798, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93893, "fields": {"relation_type": 596, "related_person": 93891, "related_place": 5478, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93895, "fields": {"relation_type": 595, "related_person": 93894, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93896, "fields": {"relation_type": 596, "related_person": 93894, "related_place": 20988, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93901, "fields": {"relation_type": 595, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93902, "fields": {"relation_type": 596, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93904, "fields": {"relation_type": 595, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93905, "fields": {"relation_type": 596, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93910, "fields": {"relation_type": 595, "related_person": 93909, "related_place": 4096, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93911, "fields": {"relation_type": 596, "related_person": 93909, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93922, "fields": {"relation_type": 595, "related_person": 93921, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93923, "fields": {"relation_type": 596, "related_person": 93921, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93938, "fields": {"relation_type": 595, "related_person": 93933, "related_place": 93934, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93939, "fields": {"relation_type": 596, "related_person": 93933, "related_place": 93937, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93941, "fields": {"relation_type": 595, "related_person": 93940, "related_place": 16594, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93942, "fields": {"relation_type": 596, "related_person": 93940, "related_place": 6004, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93947, "fields": {"relation_type": 595, "related_person": 93946, "related_place": 5308, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93948, "fields": {"relation_type": 596, "related_person": 93946, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93956, "fields": {"relation_type": 595, "related_person": 93955, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93957, "fields": {"relation_type": 596, "related_person": 93955, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93959, "fields": {"relation_type": 595, "related_person": 93958, "related_place": 9455, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93960, "fields": {"relation_type": 596, "related_person": 93958, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93962, "fields": {"relation_type": 595, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93963, "fields": {"relation_type": 596, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93965, "fields": {"relation_type": 595, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93966, "fields": {"relation_type": 596, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93968, "fields": {"relation_type": 595, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93969, "fields": {"relation_type": 596, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93971, "fields": {"relation_type": 595, "related_person": 93970, "related_place": 19599, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93972, "fields": {"relation_type": 596, "related_person": 93970, "related_place": 16864, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93989, "fields": {"relation_type": 595, "related_person": 93988, "related_place": 18400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93990, "fields": {"relation_type": 596, "related_person": 93988, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93992, "fields": {"relation_type": 595, "related_person": 93991, "related_place": 19215, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93993, "fields": {"relation_type": 596, "related_person": 93991, "related_place": 22570, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94004, "fields": {"relation_type": 595, "related_person": 94003, "related_place": 13253, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94005, "fields": {"relation_type": 596, "related_person": 94003, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94007, "fields": {"relation_type": 595, "related_person": 94006, "related_place": 22558, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94008, "fields": {"relation_type": 596, "related_person": 94006, "related_place": 20549, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94010, "fields": {"relation_type": 595, "related_person": 94009, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94011, "fields": {"relation_type": 596, "related_person": 94009, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94019, "fields": {"relation_type": 595, "related_person": 94018, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94020, "fields": {"relation_type": 596, "related_person": 94018, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 98116, "fields": {"relation_type": 595, "related_person": null, "related_place": null, "text": [], "collection": []}}, {"model": "relations.personinstitution", "pk": 99591, "fields": {"relation_type": null, "related_person": null, "related_institution": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 26, "fields": {"name": "Opatija", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [12, 14, 11225], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 133, "fields": {"name": "Zagreb", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [59, 11275], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 183, "fields": {"name": "Wien", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [8304, 11203], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 327, "fields": {"name": "Br\u00fcnn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1064, 1090, 1092, 1094, 1096, 3300, 4453, 6308, 6417, 11259], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 384, "fields": {"name": "Dlouh\u00e1 Ves", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [173, 8727, 11284], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 400, "fields": {"name": "Budapest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [181, 11223], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 831, "fields": {"name": "Bukarest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11242, 11243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 926, "fields": {"name": "Baden", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11313, 11314], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1390, "fields": {"name": "Berlin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11226, 11227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1424, "fields": {"name": "Liberec", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [654, 5083, 5085, 6119, 6324, 6372, 7681, 7683, 7776, 8211, 11258], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1454, "fields": {"name": "Bezau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11337, 11338], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1701, "fields": {"name": "Bodensdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [784, 11271], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1718, "fields": {"name": "Heilbronn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11269, 11270], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2006, "fields": {"name": "Boto\u015fani", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [928, 11251], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2072, "fields": {"name": "Pressburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [962, 964, 7171, 7173, 11220], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2085, "fields": {"name": "Braunau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [969, 971, 11272], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2161, "fields": {"name": "Breslau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1011, 1013, 10485, 11199], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2170, "fields": {"name": "Brixen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1017, 1054, 1056, 11279], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2197, "fields": {"name": "K\u00f6niggr\u00e4tz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1029, 4052, 4438, 6016, 11204], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2281, "fields": {"name": "Brody", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11244, 11245], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2489, "fields": {"name": "Buenos Aires", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11256, 11257], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2602, "fields": {"name": "Kaltern an der Weinstrasse", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1236, 3663, 3665, 9705, 11252], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2854, "fields": {"name": "Tschernowitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7828, 11224], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3105, "fields": {"name": "Teschen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1467, 9235, 9239, 11260], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3162, "fields": {"name": "Klausenburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3930, 3932, 11330], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4096, "fields": {"name": "D\u00fcren", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11299, 11300], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4269, "fields": {"name": "\u00dadlice", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2030, 11231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4767, "fields": {"name": "Graz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11210, 11211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4877, "fields": {"name": "Freistadt", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11319, 11320], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5294, "fields": {"name": "Ghidfal\u0103u", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2492, 11246], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5308, "fields": {"name": "Marienheide", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11289, 11290], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5478, "fields": {"name": "G\u00f6rz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2571, 2603, 2605, 11303], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5691, "fields": {"name": "Meran", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2675, 5101, 5344, 5346, 5348, 5350, 5352, 5353, 6350, 6352, 9735, 11326], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5749, "fields": {"name": "Grieskirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11229, 11230], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6004, "fields": {"name": "Grossullersdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2825, 2827, 11294], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6324, "fields": {"name": "Hannover", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11221, 11222], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6700, "fields": {"name": "Innsbruck", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11235, 11236], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6947, "fields": {"name": "Hrastje-Mota", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3253, 3255, 11278], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7454, "fields": {"name": "Jaworzno", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3504, 11336], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7622, "fields": {"name": "Leoben", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11249, 11250], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7986, "fields": {"name": "Cassel", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11218, 11219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8482, "fields": {"name": "Klosterneuburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11322, 11323], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8798, "fields": {"name": "Konstanz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11301, 11302], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9287, "fields": {"name": "Kufstein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11324, 11325], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9455, "fields": {"name": "Lachovice", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4512, 11288], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9475, "fields": {"name": "Ljubljana", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4522, 11331], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9735, "fields": {"name": "Lemberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4642, 4644, 5041, 5043, 5045, 10711, 11263], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10015, "fields": {"name": "Linz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11195, 11196], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10265, "fields": {"name": "London", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11239, 11240], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10793, "fields": {"name": "Marburg an der Drau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5193, 5219, 5221, 5223, 11266], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11238, "fields": {"name": "Mies", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5409, 11234], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11556, "fields": {"name": "Moldava", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5576, 11308], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11799, "fields": {"name": "M\u00fcnchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11197, 11198], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12211, "fields": {"name": "Nysa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5900, 11321], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12758, "fields": {"name": "Nizza", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6173, 11205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13253, "fields": {"name": "Sopron", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6431, 11344], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13382, "fields": {"name": "Olm\u00fctz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6491, 6493, 6495, 6497, 11228], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13714, "fields": {"name": "Paris", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11291, 11292], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13987, "fields": {"name": "Petting", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11280, 11281], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 14608, "fields": {"name": "Prag", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7122, 7124, 7126, 7128, 7130, 11200], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16242, "fields": {"name": "Sv\u00e4t\u00fd Jur", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7951, 11214], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16310, "fields": {"name": "Sankt Pankraz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7994, 11327], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16594, "fields": {"name": "\u0160t\u00edty", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [8138, 11293], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16864, "fields": {"name": "Schwanberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11286, 11287], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18374, "fields": {"name": "Szczakowa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9008, 11241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18400, "fields": {"name": "Szegedin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9021, 11351], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19215, "fields": {"name": "Trient", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9433, 9434, 9461, 9463, 11348], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19599, "fields": {"name": "Mojm\u00edrovce", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9646, 11285], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20549, "fields": {"name": "Warschau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10129, 10131, 10133, 10135, 10138, 11345], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20659, "fields": {"name": "Wei\u00dfkirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10186, 11255], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20872, "fields": {"name": "Bad Gastein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10300, 11339], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20988, "fields": {"name": "Wisborough Green", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11304, 11305], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 21818, "fields": {"name": "Zwittau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10788, 11215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22216, "fields": {"name": "Jamnitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11206, 11207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22259, "fields": {"name": "Stronach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11261, 11262], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22322, "fields": {"name": "Gr\u00fcnburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11237, 11238], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22354, "fields": {"name": "Olten", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11253, 11254], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22475, "fields": {"name": "Bad Kreuznach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11311, 11312], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22494, "fields": {"name": "Lasberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11317, 11318], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22526, "fields": {"name": "Freiburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11334, 11335], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22545, "fields": {"name": "Boc\u015fa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11342, 11343], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22558, "fields": {"name": "Lud\u017amierz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11346, 11347], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22570, "fields": {"name": "Vezzano", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11349, 11350], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24156, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24696, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24697, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24698, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24699, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24835, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24860, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24869, "fields": {"name": "Kainz, Joseph: Der junge Kainz. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24898, "fields": {"name": "Neubauer, Carl T.: Anleitung zur qualitativen und quantitativen Analyse des Harns zum Geb*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24899, "fields": {"name": "Huppert, Hugo: Anleitung zur qualitativen und quantitativen Analyse des Harns zum Gebrauc*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24900, "fields": {"name": "Zoochemie. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24908, "fields": {"name": "Otto Heubners Lebenschronik. - 1927.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24909, "fields": {"name": "Die Luntische Erkrankung der Hirnarterien. - 1874.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24910, "fields": {"name": "Gaffky, Georg T.: U\u0308ber die Gefahren der Serumkrankheit bei der Schutzimpfung ... - 1913.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24911, "fields": {"name": "Die experimentelle Diphterie. - 1883.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25012, "fields": {"name": "Nachlass Eduard von Charlemont. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25035, "fields": {"name": "In memoriam. - 1873", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25059, "fields": {"name": "Lehrbuch der allgemeinen Metaphysik und der Metaphysik ... - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25060, "fields": {"name": "Auszug des Wissenswu\u0308rdigsten aus der Geschichte der Philosophie. - 1836", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25143, "fields": {"name": "Antoni\u0301n Ma\u0301nes", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25186, "fields": {"name": "Rowntree, Benjamin S.: Poverty. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25187, "fields": {"name": "Rowntree, Benjamin S.: Comment diminuer la mise\u0300re. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25188, "fields": {"name": "Rowntree, Benjamin S.: How the labourer lives. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25189, "fields": {"name": "Rowntree, Benjamin S.: The human Needs of labour. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25199, "fields": {"name": "Swerts, Jan: In lauwe MV C XXX werdt ghepubliceert de ordonnantie op het onderhoudt van d*. - [ca. 1870]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25200, "fields": {"name": "Swerts, Jan: De schepene bezoeken een der drie groote schoolen ingerigt VI Decembri MII*. - [ca. 1870]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25212, "fields": {"name": "Kapp, Wolfgang: Die nationalen Kreise und der Reichskanzler. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25213, "fields": {"name": "Kapp, Wolfgang: Die nationalen Kreise und der Reichskanzler. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25395, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef von: Die ku\u0308nstlichen Scha\u0308delverbildungen im Allgemeinen und zwei *. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25396, "fields": {"name": "Lenhosse\u0300k, Jo\u0301zsef von: Das veno\u0308se Convolut der Beckenho\u0308hle beim Manne. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25397, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef: Die Ausgrabungen zu Szeged-O\u0308thalom in Ungarn, namentlich die in de*. - 1884", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25398, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef: A Szeged-o\u0308thalmi a\u0301sata\u0301sokro\u0301l, ku\u0308lo\u0308no\u0308sen az felfedezett o\u030bs-magyar*. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25401, "fields": {"name": "Der feinere Bau des Nervensystems im Lichte neuester Forschungen. - 1895", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25402, "fields": {"name": "Das Problem der geschlechtsbestimmenden Ursachen. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25405, "fields": {"name": "Ein @Anfa\u0308ngerstreich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25412, "fields": {"name": "Stein, Lorenz von: Verwaltungslehre und Verwaltungsrecht (Handbuch der Verwaltungslehre)*. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25413, "fields": {"name": "Stein, Lorenz von: Verwaltungslehre und Verwaltungsrecht. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25414, "fields": {"name": "Stein, Lorenz von: Handbuch der Verwaltungslehre und des Verwaltungsrechts mit Vergleic*. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25415, "fields": {"name": "Stein, Lorenz von: Lehrbuch der Volkswirthschaft. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25416, "fields": {"name": "Stein, Lorenz von: System der Statistik, der Populationistik und der Volkswirtschaftsle*. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25417, "fields": {"name": "Stein, Lorenz von: Die staatswissenschaftliche und die landwirthschaftliche Bildung. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25418, "fields": {"name": "Stein, Lorenz von: System der Staatswissenschaft", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25419, "fields": {"name": "Stein, Lorenz von: System der Statistik, der Populationistik und der Volkswirthschaftsl*. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25420, "fields": {"name": "Stein, Lorenz von: La question de Schleswig-Holstein. - 1848", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25421, "fields": {"name": "Stein, Lorenz von: Handbuch der Verwaltungslehre und des Verwaltungsrechts mit Vergleic*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25589, "fields": {"name": "Bilder aus der Ostmark. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25626, "fields": {"name": "Geschichte der Philosophie", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25627, "fields": {"name": "Vorlesungen u\u0308ber Metaphysik mit besonderer Beziehung auf Kant. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25628, "fields": {"name": "Grundzu\u0308ge der Lehre vom Urtheil. - 1876", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25629, "fields": {"name": "Das erste Problem der Ontologie. - 1863", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25630, "fields": {"name": "Die Grundprobleme der Logik. - 1895", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25631, "fields": {"name": "Grundlinien einer Theorie des Bewu\u00dftseins. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25632, "fields": {"name": "U\u0308ber das Scho\u0308ne. - 1887", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25633, "fields": {"name": "Ueber den Utilitarianismus. - 1883", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25634, "fields": {"name": "Allgemeine Logik", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25635, "fields": {"name": "Sinn und Erkenntnis. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25767, "fields": {"name": "La Reine Hortense en Italie, en France et en Angleterre ... - 1831", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25768, "fields": {"name": "Me\u0301moires", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25769, "fields": {"name": "[Romanzen]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25770, "fields": {"name": "Re\u0301cit de mon passage en France en 1831 et des causes qui ... - 1834", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25771, "fields": {"name": "Die Ko\u0308nigin Hortensia in Italien, Frankreich und England ... - 1834", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25772, "fields": {"name": "Napole\u0301on : Lettres de Napoleon a\u0300 Jose\u0301phine pendant la premie\u0300re ... - 1833", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25773, "fields": {"name": "Campan, Jeanne L.: Correspondance ine\u0301dite de Mme. Campan avec la reine Hortense. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 27245, "fields": {"name": "Thalberg", "review": false, "start_date": "1812-01-08", "end_date": "1871-04-27", "start_date_written": "8.1.1812", "end_date_written": "27.4.1871", "status": "", "source": 531, "references": null, "notes": null, "text": [12155, 12156], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46414, "fields": {"name": "Reicha", "review": false, "start_date": "1770-02-26", "end_date": "1836-05-28", "start_date_written": "26.2.1770", "end_date_written": "28.5.1836", "status": "", "source": 5804, "references": null, "notes": null, "text": [21722, 21723], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56248, "fields": {"name": "Moscheles", "review": false, "start_date": "1794-05-23", "end_date": "1870-03-10", "start_date_written": "23.5.1794", "end_date_written": "10.3.1870", "status": "", "source": 8543, "references": null, "notes": null, "text": [27186, 27187], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56249, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 62757, "fields": {"name": "Liszt", "review": false, "start_date": "1811-10-22", "end_date": "1886-07-31", "start_date_written": "22.10.1811", "end_date_written": "31.7.1886", "status": "", "source": 10332, "references": null, "notes": null, "text": [30762, 30763], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88219, "fields": {"name": "Blahetka", "review": false, "start_date": "1810-11-15", "end_date": "1885-01-01", "start_date_written": "15.11.1810", "end_date_written": "1.1.1885", "status": "", "source": 17415, "references": null, "notes": null, "text": [44908, 44909], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88902, "fields": {"name": "Beethoven", "review": false, "start_date": "1770-12-16", "end_date": "1827-03-26", "start_date_written": "16.12.1770", "end_date_written": "26.3.1827", "status": "", "source": 17608, "references": null, "notes": null, "text": [45290, 45291], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 91062, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92412, "fields": {"name": "B\u00e4uerle", "review": false, "start_date": "1817-12-11", "end_date": "1896-07-17", "start_date_written": "11.12.1817", "end_date_written": "17.7.1896", "status": "", "source": 17852, "references": null, "notes": null, "text": [47030, 47031], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92603, "fields": {"name": "Czerny", "review": false, "start_date": "1791-02-21", "end_date": "1857-07-15", "start_date_written": "21.2.1791", "end_date_written": "15.7.1857", "status": "", "source": 18525, "references": null, "notes": null, "text": [47126, 47127], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92604, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92605, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92930, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92931, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92932, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92933, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92934, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92935, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93003, "fields": {"name": "Bahr", "review": false, "start_date": "1863-07-19", "end_date": "1934-01-14", "start_date_written": "19.7.1863", "end_date_written": "14.1.1934", "status": "", "source": 102, "references": null, "notes": null, "text": [47200, 47201], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93009, "fields": {"name": "Czerny", "review": false, "start_date": "1863-03-25", "end_date": "1941-10-03", "start_date_written": "25.3.1863", "end_date_written": "3.10.1941", "status": "", "source": 114, "references": null, "notes": null, "text": [47204, 47205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93012, "fields": {"name": "Czetz", "review": false, "start_date": "1822-06-08", "end_date": "1904-09-06", "start_date_written": "8.6.1822", "end_date_written": "6.9.1904", "status": "", "source": 116, "references": null, "notes": null, "text": [47206, 47207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93013, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93014, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93015, "fields": {"name": "Czikann", "review": false, "start_date": "1789-07-10", "end_date": "1855-06-10", "start_date_written": "10.7.1789", "end_date_written": "10.6.1855", "status": "", "source": 117, "references": null, "notes": null, "text": [47208, 47209], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93016, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93017, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93018, "fields": {"name": "Clam-Gallas", "review": false, "start_date": "1805-03-11", "end_date": "1891-03-17", "start_date_written": "11.3.1805", "end_date_written": "17.3.1891", "status": "", "source": 108, "references": null, "notes": null, "text": [47210, 47211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93021, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1826-06-15", "end_date": "1887-06-05", "start_date_written": "15.6.1826", "end_date_written": "5.6.1887", "status": "", "source": 109, "references": null, "notes": null, "text": [47212, 47213], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93022, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93023, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93024, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1863-01-01", "end_date": "1932-03-07", "start_date_written": "1.1.1863", "end_date_written": "7.3.1932", "status": "", "source": 110, "references": null, "notes": null, "text": [47214, 47215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93025, "fields": {"name": "Clam (Grein)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93026, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93027, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93028, "fields": {"name": "Claus", "review": false, "start_date": "1835-01-02", "end_date": "1899-01-18", "start_date_written": "2.1.1835", "end_date_written": "18.1.1899", "status": "", "source": 111, "references": null, "notes": null, "text": [47216, 47217], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93029, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93030, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93031, "fields": {"name": "Conze", "review": false, "start_date": "1831-12-10", "end_date": "1914-07-19", "start_date_written": "10.12.1831", "end_date_written": "19.7.1914", "status": "", "source": 112, "references": null, "notes": null, "text": [47218, 47219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93032, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93033, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93034, "fields": {"name": "Costenoble", "review": false, "start_date": "1769-12-25", "end_date": "1837-08-28", "start_date_written": "25.12.1769", "end_date_written": "28.8.1837", "status": "", "source": 113, "references": null, "notes": null, "text": [47220, 47221], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93035, "fields": {"name": "Herford, Westfalen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93036, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93037, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93044, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1846-03-21", "end_date": "1914-10-16", "start_date_written": "21.3.1846", "end_date_written": "16.10.1914", "status": "", "source": 103, "references": null, "notes": null, "text": [47226, 47227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93045, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93046, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93047, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1834-11-29", "end_date": "1902-11-24", "start_date_written": "29.11.1834", "end_date_written": "24.11.1902", "status": "", "source": 104, "references": null, "notes": null, "text": [47228, 47229], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93048, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93049, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93050, "fields": {"name": "\u010cerven\u00fd", "review": false, "start_date": "1819-09-27", "end_date": "1896-01-19", "start_date_written": "27.9.1819", "end_date_written": "19.1.1896", "status": "", "source": 105, "references": null, "notes": null, "text": [47230, 47231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93051, "fields": {"name": "Praha-Dube\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93054, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93055, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93056, "fields": {"name": "Charlemont", "review": false, "start_date": "1850-03-18", "end_date": "1939-03-18", "start_date_written": "18.3.1850", "end_date_written": "18.3.1939", "status": "", "source": 106, "references": null, "notes": null, "text": [47232, 47233], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93057, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93058, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93059, "fields": {"name": "Chlumczansk\u00fd", "review": false, "start_date": "1749-11-15", "end_date": "1830-06-14", "start_date_written": "15.11.1749", "end_date_written": "14.6.1830", "status": "", "source": 107, "references": null, "notes": null, "text": [47234, 47235], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93060, "fields": {"name": "Ho\u0161tice, kr. Jiho\u010desk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93063, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93064, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93065, "fields": {"name": "Dumba", "review": false, "start_date": "1856-06-17", "end_date": "1947-01-06", "start_date_written": "17.6.1856", "end_date_written": "6.1.1947", "status": "", "source": 121, "references": null, "notes": null, "text": [47236, 47237], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93066, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93067, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93068, "fields": {"name": "Doderer", "review": false, "start_date": "1825-01-02", "end_date": "1900-05-13", "start_date_written": "2.1.1825", "end_date_written": "13.5.1900", "status": "", "source": 120, "references": null, "notes": null, "text": [47238, 47239], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93069, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93070, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93071, "fields": {"name": "Defregger", "review": false, "start_date": "1835-04-30", "end_date": "1921-01-02", "start_date_written": "30.4.1835", "end_date_written": "2.1.1921", "status": "", "source": 118, "references": null, "notes": null, "text": [47240, 47241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93072, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93073, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93074, "fields": {"name": "Dengel", "review": false, "start_date": "1872-06-22", "end_date": "1947-09-09", "start_date_written": "22.6.1872", "end_date_written": "9.9.1947", "status": "", "source": 119, "references": null, "notes": null, "text": [47242, 47243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93075, "fields": {"name": "Elbigenalp-Untergiblen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93078, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93079, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93136, "fields": {"name": "Holovsky", "review": false, "start_date": "1917-04-29", "end_date": "1933-07-03", "start_date_written": "29.4.1917", "end_date_written": "3.7.1933", "status": "", "source": 122, "references": null, "notes": null, "text": [47276, 47277], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93137, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93138, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93328, "fields": {"name": "Lorenz", "review": false, "start_date": "1859-04-13", "end_date": "1945-03-25", "start_date_written": "13.4.1859", "end_date_written": "25.3.1945", "status": "", "source": 134, "references": null, "notes": null, "text": [47384, 47385], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93329, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93330, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93337, "fields": {"name": "L\u00f6wy", "review": false, "start_date": "1851-09-14", "end_date": "1905-12-27", "start_date_written": "14.9.1851", "end_date_written": "27.12.1905", "status": "", "source": 133, "references": null, "notes": null, "text": [47388, 47389], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93338, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93339, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93352, "fields": {"name": "Lobmeyr", "review": false, "start_date": "1792-03-17", "end_date": "1855-05-08", "start_date_written": "17.3.1792", "end_date_written": "8.5.1855", "status": "", "source": 132, "references": null, "notes": null, "text": [47394, 47395], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93353, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93354, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93366, "fields": {"name": "Lichtblau", "review": false, "start_date": "1844-05-17", "end_date": "1908-05-10", "start_date_written": "17.5.1844", "end_date_written": "10.5.1908", "status": "", "source": 130, "references": null, "notes": null, "text": [47402, 47403], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93367, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93368, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93369, "fields": {"name": "Lichtblau", "review": false, "start_date": "1875-02-25", "end_date": "1935-12-19", "start_date_written": "25.2.1875", "end_date_written": "19.12.1935", "status": "", "source": 131, "references": null, "notes": null, "text": [47404, 47405], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93370, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93371, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93378, "fields": {"name": "Leitgeb", "review": false, "start_date": "1835-10-20", "end_date": "1888-04-05", "start_date_written": "20.10.1835", "end_date_written": "5.4.1888", "status": "", "source": 128, "references": null, "notes": null, "text": [47410, 47411], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93379, "fields": {"name": "Portendorf, Bez. Klagenfurt Land", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93382, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93383, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93387, "fields": {"name": "Lenhoss\u00e9k", "review": false, "start_date": "1773-05-11", "end_date": "1840-02-11", "start_date_written": "11.5.1773", "end_date_written": "11.2.1840", "status": "", "source": 129, "references": null, "notes": null, "text": [47414, 47415], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93388, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93389, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93393, "fields": {"name": "Lefler", "review": false, "start_date": "1863-11-07", "end_date": "1919-03-14", "start_date_written": "7.11.1863", "end_date_written": "14.3.1919", "status": "", "source": 125, "references": null, "notes": null, "text": [47418, 47419], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93394, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93395, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93396, "fields": {"name": "Leichter", "review": false, "start_date": "1895-08-20", "end_date": "1942-03-17", "start_date_written": "20.8.1895", "end_date_written": "17.3.1942", "status": "", "source": 126, "references": null, "notes": null, "text": [47420, 47421], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93397, "fields": {"name": "KZ Ravensbr\u00fcck, Brandenburg", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93398, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93399, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93400, "fields": {"name": "Leidesdorf", "review": false, "start_date": "1810-09-25", "end_date": "1876-01-19", "start_date_written": "25.9.1810", "end_date_written": "19.1.1876", "status": "", "source": 127, "references": null, "notes": null, "text": [47422, 47423], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93401, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93402, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93409, "fields": {"name": "Lapaine", "review": false, "start_date": "1843-02-05", "end_date": "1923-02-21", "start_date_written": "5.2.1843", "end_date_written": "21.2.1923", "status": "", "source": 124, "references": null, "notes": null, "text": [47428, 47429], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93410, "fields": {"name": "Vojsko, sr. Gorica", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93413, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93414, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93415, "fields": {"name": "Langer-Schroll", "review": false, "start_date": "1850-10-02", "end_date": "1926-11-09", "start_date_written": "2.10.1850", "end_date_written": "9.11.1926", "status": "", "source": 123, "references": null, "notes": null, "text": [47430, 47431], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93417, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93418, "fields": {"name": "M\u00fcller", "review": false, "start_date": "1874-07-08", "end_date": "1941-12-09", "start_date_written": "8.7.1874", "end_date_written": "9.12.1941", "status": "", "source": 144, "references": null, "notes": null, "text": [47432, 47433], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93419, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93420, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93442, "fields": {"name": "M\u00f6rl", "review": false, "start_date": "1812-10-16", "end_date": "1868-01-11", "start_date_written": "16.10.1812", "end_date_written": "11.1.1868", "status": "", "source": 143, "references": null, "notes": null, "text": [47446, 47447], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93443, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93444, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93445, "fields": {"name": "Millosicz", "review": false, "start_date": "1819-10-18", "end_date": "1890-07-24", "start_date_written": "18.10.1819", "end_date_written": "24.7.1890", "status": "", "source": 142, "references": null, "notes": null, "text": [47448, 47449], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93446, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93447, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93448, "fields": {"name": "Miklosich", "review": false, "start_date": "1813-11-20", "end_date": "1891-03-07", "start_date_written": "20.11.1813", "end_date_written": "7.3.1891", "status": "", "source": 141, "references": null, "notes": null, "text": [47450, 47451], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93449, "fields": {"name": "Radomer\u0161\u010dak, sr. Murska Sobota", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93452, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93453, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93469, "fields": {"name": "Meithner", "review": false, "start_date": "1892-05-27", "end_date": "1942-12-13", "start_date_written": "27.5.1892", "end_date_written": "13.12.1942", "status": "", "source": 140, "references": null, "notes": null, "text": [47460, 47461], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93470, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93471, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93481, "fields": {"name": "Margulies", "review": false, "start_date": "1817-01-01", "end_date": "1880-01-01", "start_date_written": "1817", "end_date_written": "1880", "status": "", "source": 139, "references": null, "notes": null, "text": [47466, 47467], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93482, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93483, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93484, "fields": {"name": "M\u00e1nesov\u00e1", "review": false, "start_date": "1817-01-21", "end_date": null, "start_date_written": "21.1.1817", "end_date_written": "1883.6", "status": "", "source": 137, "references": null, "notes": null, "text": [47468, 47469], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93485, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93486, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93487, "fields": {"name": "M\u00e1nes", "review": false, "start_date": "1828-07-17", "end_date": "1880-08-05", "start_date_written": "17.7.1828", "end_date_written": "5.8.1880", "status": "", "source": 138, "references": null, "notes": null, "text": [47470, 47471], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93488, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93489, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93510, "fields": {"name": "Mayer", "review": false, "start_date": "1894-02-20", "end_date": "1944-07-01", "start_date_written": "20.2.1894", "end_date_written": "1.7.1944", "status": "", "source": 136, "references": null, "notes": null, "text": [47482, 47483], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93511, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93512, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93513, "fields": {"name": "Mahl-Schedl von Alpenburg", "review": false, "start_date": "1806-10-27", "end_date": "1873-04-01", "start_date_written": "27.10.1806", "end_date_written": "1.4.1873", "status": "", "source": 135, "references": null, "notes": null, "text": [47484, 47485], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93514, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93515, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93516, "fields": {"name": "Nov\u00e1\u010dek", "review": false, "start_date": "1860-04-07", "end_date": "1929-08-12", "start_date_written": "7.4.1860", "end_date_written": "12.8.1929", "status": "", "source": 145, "references": null, "notes": null, "text": [47486, 47487], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93517, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93518, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93540, "fields": {"name": "Ortmann", "review": false, "start_date": "1874-03-10", "end_date": "1939-11-22", "start_date_written": "10.3.1874", "end_date_written": "22.11.1939", "status": "", "source": 147, "references": null, "notes": null, "text": [47502, 47503], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93541, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93542, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93546, "fields": {"name": "Oellacher", "review": false, "start_date": "1804-02-16", "end_date": "1880-08-16", "start_date_written": "16.2.1804", "end_date_written": "16.8.1880", "status": "", "source": 146, "references": null, "notes": null, "text": [47506, 47507], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93547, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93548, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93561, "fields": {"name": "Poljanec", "review": false, "start_date": "1872-09-23", "end_date": "1944-08-08", "start_date_written": "23.9.1872", "end_date_written": "8.8.1944", "status": "", "source": 151, "references": null, "notes": null, "text": [47516, 47517], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93562, "fields": {"name": "Bre\u017eice, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93565, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93566, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93573, "fields": {"name": "Petzold", "review": false, "start_date": "1859-11-26", "end_date": "1932-07-15", "start_date_written": "26.11.1859", "end_date_written": "15.7.1932", "status": "", "source": 150, "references": null, "notes": null, "text": [47522, 47523], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93574, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93575, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93588, "fields": {"name": "Peithner von Lichtenfels", "review": false, "start_date": "1833-11-18", "end_date": "1913-01-22", "start_date_written": "18.11.1833", "end_date_written": "22.1.1913", "status": "", "source": 149, "references": null, "notes": null, "text": [47530, 47531], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93589, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93590, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93600, "fields": {"name": "Patera", "review": false, "start_date": "1819-07-11", "end_date": "1894-06-26", "start_date_written": "11.7.1819", "end_date_written": "26.6.1894", "status": "", "source": 148, "references": null, "notes": null, "text": [47536, 47537], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93601, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93602, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93609, "fields": {"name": "Rumpler", "review": false, "start_date": "1771-02-03", "end_date": "1846-03-17", "start_date_written": "3.2.1771", "end_date_written": "17.3.1846", "status": "", "source": 158, "references": null, "notes": null, "text": [47540, 47541], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93610, "fields": {"name": "Seekirchen a. Wallersee", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93613, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93614, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93615, "fields": {"name": "Rotter", "review": false, "start_date": "1868-11-30", "end_date": "1945-09-18", "start_date_written": "30.11.1868", "end_date_written": "18.9.1945", "status": "", "source": 157, "references": null, "notes": null, "text": [47542, 47543], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93616, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93617, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93639, "fields": {"name": "Revertera von Salandra", "review": false, "start_date": "1827-01-21", "end_date": "1904-04-28", "start_date_written": "21.1.1827", "end_date_written": "28.4.1904", "status": "", "source": 156, "references": null, "notes": null, "text": [47556, 47557], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93640, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93641, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93642, "fields": {"name": "Reichenberger", "review": false, "start_date": "1770-11-24", "end_date": "1854-10-26", "start_date_written": "24.11.1770", "end_date_written": "26.10.1854", "status": "", "source": 154, "references": null, "notes": null, "text": [47558, 47559], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93643, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93644, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93645, "fields": {"name": "Reiser", "review": false, "start_date": "1861-12-21", "end_date": "1936-03-31", "start_date_written": "21.12.1861", "end_date_written": "31.3.1936", "status": "", "source": 155, "references": null, "notes": null, "text": [47560, 47561], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93646, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93647, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93651, "fields": {"name": "Randa", "review": false, "start_date": "1874-05-24", "end_date": "1941-08-13", "start_date_written": "24.5.1874", "end_date_written": "13.8.1941", "status": "", "source": 153, "references": null, "notes": null, "text": [47564, 47565], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93652, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93653, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93654, "fields": {"name": "Radakovi\u010d", "review": false, "start_date": "1866-04-25", "end_date": "1934-08-15", "start_date_written": "25.4.1866", "end_date_written": "15.8.1934", "status": "", "source": 152, "references": null, "notes": null, "text": [47566, 47567], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93655, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93656, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93657, "fields": {"name": "Szigligeti", "review": false, "start_date": "1814-03-08", "end_date": "1878-01-19", "start_date_written": "8.3.1814", "end_date_written": "19.1.1878", "status": "", "source": 194, "references": null, "notes": null, "text": [47568, 47569], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93658, "fields": {"name": "Oradea-Olosig, jud. Bihor", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93661, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93662, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93663, "fields": {"name": "Szurmay von Uzsok", "review": false, "start_date": "1860-12-19", "end_date": "1945-03-26", "start_date_written": "19.12.1860", "end_date_written": "26.3.1945", "status": "", "source": 195, "references": null, "notes": null, "text": [47570, 47571], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93664, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93665, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93678, "fields": {"name": "St\u00fclz", "review": false, "start_date": "1799-02-23", "end_date": "1872-06-28", "start_date_written": "23.2.1799", "end_date_written": "28.6.1872", "status": "", "source": 193, "references": null, "notes": null, "text": [47580, 47581], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93679, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93680, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93684, "fields": {"name": "Stowasser", "review": false, "start_date": "1887-10-21", "end_date": "1934-02-19", "start_date_written": "21.10.1887", "end_date_written": "19.2.1934", "status": "", "source": 192, "references": null, "notes": null, "text": [47584, 47585], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93685, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93686, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93702, "fields": {"name": "Steindler", "review": false, "start_date": "1879-10-28", "end_date": "1933-12-21", "start_date_written": "28.10.1879", "end_date_written": "21.12.1933", "status": "", "source": 190, "references": null, "notes": null, "text": [47594, 47595], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93703, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93704, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93705, "fields": {"name": "Stein", "review": false, "start_date": "1891-09-19", "end_date": "1945-02-25", "start_date_written": "19.9.1891", "end_date_written": "25.2.1945", "status": "", "source": 191, "references": null, "notes": null, "text": [47596, 47597], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93706, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93707, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93714, "fields": {"name": "Stariha", "review": false, "start_date": "1845-05-12", "end_date": "1915-12-15", "start_date_written": "12.5.1845", "end_date_written": "15.12.1915", "status": "", "source": 189, "references": null, "notes": null, "text": [47602, 47603], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93715, "fields": {"name": "Sadinja vas, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93718, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93719, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93748, "fields": {"name": "\u0160njari\u0107", "review": false, "start_date": "1851-06-22", "end_date": "1930-01-28", "start_date_written": "22.6.1851", "end_date_written": "28.1.1930", "status": "", "source": 188, "references": null, "notes": null, "text": [47614, 47615], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93749, "fields": {"name": "\u010canak, sr. Gospi\u0107", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93752, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93753, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93779, "fields": {"name": "Sichulski", "review": false, "start_date": "1879-01-17", "end_date": "1942-11-06", "start_date_written": "17.1.1879", "end_date_written": "6.11.1942", "status": "", "source": 187, "references": null, "notes": null, "text": [47626, 47627], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93780, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93781, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93785, "fields": {"name": "Settari", "review": false, "start_date": "1841-10-04", "end_date": "1905-01-29", "start_date_written": "4.10.1841", "end_date_written": "29.1.1905", "status": "", "source": 186, "references": null, "notes": null, "text": [47630, 47631], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93786, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93787, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93791, "fields": {"name": "Sehnal", "review": false, "start_date": "1851-12-22", "end_date": "1910-09-12", "start_date_written": "22.12.1851", "end_date_written": "12.9.1910", "status": "", "source": 185, "references": null, "notes": null, "text": [47634, 47635], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93792, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93793, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93800, "fields": {"name": "Schwartz", "review": false, "start_date": "1852-02-28", "end_date": "1929-09-15", "start_date_written": "28.2.1852", "end_date_written": "15.9.1929", "status": "", "source": 181, "references": null, "notes": null, "text": [47640, 47641], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93801, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93802, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93803, "fields": {"name": "Schwarz", "review": false, "start_date": "1840-11-16", "end_date": "1903-12-28", "start_date_written": "16.11.1840", "end_date_written": "28.12.1903", "status": "", "source": 182, "references": null, "notes": null, "text": [47642, 47643], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93804, "fields": {"name": "\u0160umperk-Temenice, kr. Olomouck\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93807, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93808, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93809, "fields": {"name": "Schwarz", "review": false, "start_date": "1811-11-06", "end_date": "1879-05-07", "start_date_written": "6.11.1811", "end_date_written": "7.5.1879", "status": "", "source": 183, "references": null, "notes": null, "text": [47644, 47645], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93810, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93811, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93815, "fields": {"name": "Schweitzer", "review": false, "start_date": "1815-02-01", "end_date": "1896-07-09", "start_date_written": "1.2.1815", "end_date_written": "9.7.1896", "status": "", "source": 184, "references": null, "notes": null, "text": [47648, 47649], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93816, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93817, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93818, "fields": {"name": "Schwabl", "review": false, "start_date": "1854-06-29", "end_date": "1923-04-16", "start_date_written": "29.6.1854", "end_date_written": "16.4.1923", "status": "", "source": 180, "references": null, "notes": null, "text": [47650, 47651], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93819, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93820, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93836, "fields": {"name": "Schu\u00ebcker", "review": false, "start_date": "1860-11-16", "end_date": "1911-11-09", "start_date_written": "16.11.1860", "end_date_written": "9.11.1911", "status": "", "source": 179, "references": null, "notes": null, "text": [47660, 47661], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93837, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93838, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93839, "fields": {"name": "Schr\u00f6dl", "review": false, "start_date": "1841-07-07", "end_date": "1908-12-05", "start_date_written": "7.7.1841", "end_date_written": "5.12.1908", "status": "", "source": 178, "references": null, "notes": null, "text": [47662, 47663], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93841, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93854, "fields": {"name": "Schreyer", "review": false, "start_date": "1876-12-09", "end_date": "1950-04-14", "start_date_written": "9.12.1876", "end_date_written": "14.4.1950", "status": "", "source": 177, "references": null, "notes": null, "text": [47672, 47673], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93855, "fields": {"name": "B\u0159idli\u010dn\u00e1, kr. Moravskoslezsk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93858, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93859, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93863, "fields": {"name": "Scholz", "review": false, "start_date": "1819-08-20", "end_date": "1902-05-19", "start_date_written": "20.8.1819", "end_date_written": "19.5.1902", "status": "", "source": 175, "references": null, "notes": null, "text": [47676, 47677], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93864, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93865, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93866, "fields": {"name": "Schrammel", "review": false, "start_date": "1850-05-22", "end_date": "1893-06-17", "start_date_written": "22.5.1850", "end_date_written": "17.6.1893", "status": "", "source": 176, "references": null, "notes": null, "text": [47678, 47679], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93867, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93868, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93878, "fields": {"name": "Scholl", "review": false, "start_date": "1805-01-01", "end_date": "1884-12-12", "start_date_written": "1805", "end_date_written": "12.12.1884", "status": "", "source": 174, "references": null, "notes": null, "text": [47684, 47685], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93879, "fields": {"name": "Regio oder Rea (?)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93880, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93881, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93891, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1804-06-30", "end_date": "1880-12-19", "start_date_written": "30.6.1804", "end_date_written": "19.12.1880", "status": "", "source": 172, "references": null, "notes": null, "text": [47688, 47689], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93892, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93893, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93894, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1863-09-12", "end_date": "1930-03-09", "start_date_written": "12.9.1863", "end_date_written": "9.3.1930", "status": "", "source": 173, "references": null, "notes": null, "text": [47690, 47691], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93895, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93896, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93900, "fields": {"name": "Schnitzler", "review": false, "start_date": "1865-07-13", "end_date": "1939-06-29", "start_date_written": "13.7.1865", "end_date_written": "29.6.1939", "status": "", "source": 169, "references": null, "notes": null, "text": [47694, 47695], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93901, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93902, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93903, "fields": {"name": "Schober", "review": false, "start_date": "1856-12-15", "end_date": "1917-03-07", "start_date_written": "15.12.1856", "end_date_written": "7.3.1917", "status": "", "source": 170, "references": null, "notes": null, "text": [47696, 47697], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93905, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93909, "fields": {"name": "Schoeller", "review": false, "start_date": "1826-10-05", "end_date": "1889-06-25", "start_date_written": "5.10.1826", "end_date_written": "25.6.1889", "status": "", "source": 171, "references": null, "notes": null, "text": [47700, 47701], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93910, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93911, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93921, "fields": {"name": "Schmutzler", "review": false, "start_date": "1864-03-29", "end_date": "1940-06-20", "start_date_written": "29.3.1864", "end_date_written": "20.6.1940", "status": "", "source": 168, "references": null, "notes": null, "text": [47706, 47707], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93922, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93923, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93933, "fields": {"name": "Schmidt", "review": false, "start_date": "1904-03-04", "end_date": "1942-11-16", "start_date_written": "4.3.1904", "end_date_written": "16.11.1942", "status": "", "source": 167, "references": null, "notes": null, "text": [47712, 47713], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93934, "fields": {"name": "Davydivka, obl. \u010cernivci", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93937, "fields": {"name": "Girenbad b. Hinwil, Kanton Z\u00fcrich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93938, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93939, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93940, "fields": {"name": "Schmidt", "review": false, "start_date": "1826-12-09", "end_date": "1892-03-28", "start_date_written": "9.12.1826", "end_date_written": "28.3.1892", "status": "", "source": 166, "references": null, "notes": null, "text": [47714, 47715], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93941, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93942, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93946, "fields": {"name": "Schmal", "review": false, "start_date": "1844-09-23", "end_date": "1900-12-24", "start_date_written": "23.9.1844", "end_date_written": "24.12.1900", "status": "", "source": 164, "references": null, "notes": null, "text": [47718, 47719], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93947, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93948, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93955, "fields": {"name": "Schmidt-Beauchez", "review": false, "start_date": "1848-06-06", "end_date": "1912-12-14", "start_date_written": "6.6.1848", "end_date_written": "14.12.1912", "status": "", "source": 165, "references": null, "notes": null, "text": [47724, 47725], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93956, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93957, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93958, "fields": {"name": "Schindler", "review": false, "start_date": "1835-06-23", "end_date": "1911-02-22", "start_date_written": "23.6.1835", "end_date_written": "22.2.1911", "status": "", "source": 163, "references": null, "notes": null, "text": [47726, 47727], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93959, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93960, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93961, "fields": {"name": "Scheu", "review": false, "start_date": "1841-09-15", "end_date": "1904-10-12", "start_date_written": "15.9.1841", "end_date_written": "12.10.1904", "status": "", "source": 161, "references": null, "notes": null, "text": [47728, 47729], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93962, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93963, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93964, "fields": {"name": "Schikaneder", "review": false, "start_date": "1855-02-27", "end_date": "1924-11-15", "start_date_written": "27.2.1855", "end_date_written": "15.11.1924", "status": "", "source": 162, "references": null, "notes": null, "text": [47730, 47731], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93965, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93966, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93967, "fields": {"name": "Schell", "review": false, "start_date": "1892-12-19", "end_date": "1945-06-02", "start_date_written": "19.12.1892", "end_date_written": "2.6.1945", "status": "", "source": 159, "references": null, "notes": null, "text": [47732, 47733], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93968, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93969, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93970, "fields": {"name": "Schenk", "review": false, "start_date": "1840-08-23", "end_date": "1902-08-17", "start_date_written": "23.8.1840", "end_date_written": "17.8.1902", "status": "", "source": 160, "references": null, "notes": null, "text": [47734, 47735], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93971, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93972, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93988, "fields": {"name": "T\u00f6lgyessy", "review": false, "start_date": "1853-05-01", "end_date": "1920-02-02", "start_date_written": "1.5.1853", "end_date_written": "2.2.1920", "status": "", "source": 201, "references": null, "notes": null, "text": [47746, 47747], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93989, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93990, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93991, "fields": {"name": "Thun und Hohenstein", "review": false, "start_date": "1763-03-28", "end_date": "1818-10-09", "start_date_written": "28.3.1763", "end_date_written": "9.10.1818", "status": "", "source": 200, "references": null, "notes": null, "text": [47748, 47749], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93992, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93993, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94003, "fields": {"name": "Teschenberg", "review": false, "start_date": "1836-05-21", "end_date": "1886-02-25", "start_date_written": "21.5.1836", "end_date_written": "25.2.1886", "status": "", "source": 197, "references": null, "notes": null, "text": [47754, 47755], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94006, "fields": {"name": "Tetmajer", "review": false, "start_date": "1865-02-12", "end_date": "1940-01-18", "start_date_written": "12.2.1865", "end_date_written": "18.1.1940", "status": "", "source": 198, "references": null, "notes": null, "text": [47756, 47757], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94007, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94008, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94009, "fields": {"name": "Teuber", "review": false, "start_date": "1877-05-11", "end_date": "1943-02-03", "start_date_written": "11.5.1877", "end_date_written": "3.2.1943", "status": "", "source": 199, "references": null, "notes": null, "text": [47758, 47759], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94018, "fields": {"name": "Tauber", "review": false, "start_date": "1891-05-16", "end_date": "1948-01-08", "start_date_written": "16.5.1891", "end_date_written": "8.1.1948", "status": "", "source": 196, "references": null, "notes": null, "text": [47764, 47765], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94102, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpunkt des Realismus u*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94103, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpuncte des Realismus *. - 1884-85", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94104, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Die Grundzu\u0308ge der Aristotelischen Psychologie. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94105, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpuncte des Realismus *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94120, "fields": {"name": "Hegel, Carl: Die Ordnungen der Gerechtigkeit in der florentinischen Republik. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94121, "fields": {"name": "Hegel, Georg W.: Vorlesungen u\u0308ber die Philosophie der Geschichte. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94122, "fields": {"name": "Hegel, Carl: U\u0308ber den historischen Werth der a\u0308lteren Dante-Commentare. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94123, "fields": {"name": "Hegel, Carl: Sta\u0308dte und Gilden der germanischen Vo\u0308lker im Mittelalter. - 1891", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94124, "fields": {"name": "Vorlesungen u\u0308ber die Philosophie der Geschichte. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94125, "fields": {"name": "Hegel, Carl: Die deutsche Sache und die deutschen Hochschulen: Rede am 4. November 1870. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94126, "fields": {"name": "Hegel, Carl: Die Chronik des Dino Compagni. - 1875", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94127, "fields": {"name": "Hegel, Carl: Die Entstehung des deutschen Sta\u0308dtewesens. - 1898", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94128, "fields": {"name": "Hegel, Carl: Geschichte der meklenburgischen Landsta\u0308nde bis z. J. 1555. - 1856", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94129, "fields": {"name": "Hegel, Carl: Geschichte der Sta\u0308dteverfassung von Italien seit der Zeit der ro\u0308mischen Herr*. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94131, "fields": {"name": "Herbart, Johann M.: Aufrichtige Gedanken von dem Unterrichte kleiner Kinder, vornemlich i*. - 1738", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94132, "fields": {"name": "Herbart, Johann M.: De notitia linguae Hebraicae necessario et facile comparanda. - 1737", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94133, "fields": {"name": "Herbart, Johann M.: Unvorgreifliche Gedanken von Verbesserung der bey Erlernung der Latei*. - 1741", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94134, "fields": {"name": "Herbart, Johann M.: An Christus tentatorem suum statim noverit, nec ne, paucis disquirit *. - 1738", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94135, "fields": {"name": "Herbart, Johann M.: Kurtzer Entwurff von den vornehmsten Quellen des Verderbens der Jugend. - 1736", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94136, "fields": {"name": "Herbart, Johann M.: Thomam incredulum resurrectionis Christi certissimum testem producit *. - 1740", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94137, "fields": {"name": "Herbart, Johann M.: Sendschreiben von den gewo\u0308hnlichen Trostgru\u0308nden bey dem fru\u0308hzeitigen *. - [ca. 1740]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94138, "fields": {"name": "Herbart, Johann Michael: De magis aegyptiacis. - 1741.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94139, "fields": {"name": "Herbart, Johann M.: Tritissimum illud: conjugia sunt fatalia, denuo tritum dissertatione *. - 1736", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94140, "fields": {"name": "Herbart, Johann M.: Trauer-Rede ... u\u0308ber den Verlust Friderichs V, Erbko\u0308niges zu Da\u0308nnemar*. - 1766", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94141, "fields": {"name": "Herbart, Johann M.: Kurzer Erweis, da\u00df alle Studierende eine Historische Erkenntni\u00df von g*. - 1740", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94160, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94161, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94162, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94163, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94164, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94165, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94166, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94167, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94168, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94169, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94170, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94171, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94174, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94175, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94247, "fields": {"name": "Grundlinien der Psychologie. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94248, "fields": {"name": "Psychologie der Raumwahrnehmung des Auges. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94249, "fields": {"name": "Hundert psychologische Schulversuche mit Angabe der Apparate. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94250, "fields": {"name": "Ho\u0308fler, Alois: Hundert psychologische Schulversuche mit Angabe der Apparate", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94251, "fields": {"name": "Grundzu\u0308ge der allgemeinen A\u0308sthetik. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94307, "fields": {"name": "Westermarck, Edward A.: The history of human marriage. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94308, "fields": {"name": "Westermarck, Edward A.: Ritual and belief in Morocco. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94309, "fields": {"name": "Westermarck, Edward A.: The Origin and development of the moral ideas", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94310, "fields": {"name": "Numelin, Ragnar: The Wandering Spirit. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94311, "fields": {"name": "Westermarck, Edward A.: Marriage Ceremonies in Marocco. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94312, "fields": {"name": "Westermarck, Edward A.: The Future of mariage in western civilisation. - 1937", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94313, "fields": {"name": "Balfour, Henry: Anthropological essays. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94314, "fields": {"name": "Westermarck, Edward A.: Geschichte der menschlichen Ehe. - 1893", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94315, "fields": {"name": "Westermarck, Edward A.: Ursprung und Entwicklung der Moralbegriffe", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94323, "fields": {"name": "Bartos\u030c, Frantis\u030cek M.: Litera\u0301rni C\u030cinnost M. Jakoubka ze Str\u030cibra. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94324, "fields": {"name": "Soupis rukopis\u00b0u Na\u0301rodni\u0301ho Musea v Praze. - 1926 -", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94351, "fields": {"name": "Psychologische Untersuchungen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94352, "fields": {"name": "Hauptpuncte der Logik. - 1806", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94353, "fields": {"name": "Pedagogia generale dedotta dal fine dell'educazione", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94354, "fields": {"name": "Hauptpuncte der Logik. - 1808", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94355, "fields": {"name": "Analytische Beleuchtung des Naturrechts und der Moral ... - 1896", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94356, "fields": {"name": "Gespra\u0308che u\u0308ber das Bo\u0308se.... - 1817", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94357, "fields": {"name": "U\u0308ber die Unangreifbarkeit der Schellingischen Lehre. - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94358, "fields": {"name": "Pedagogia generale", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94359, "fields": {"name": "Pisma pedagogiczne", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94360, "fields": {"name": "Allgemeine practische Philosophie. - 1808", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94361, "fields": {"name": "Erinnerung an die Go\u0308ttingische Katastrophe im Jahre 1837. - 1842", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94362, "fields": {"name": "De attentionis mensura causisque primariis. - 1822", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94433, "fields": {"name": "Schleicher, August: Sprachvergleichende Untersuchungen [Bd. II: \"Linguistische...\"]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94434, "fields": {"name": "Schleicher, August: Die Deutsche Sprache. - 1879", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94435, "fields": {"name": "Indogermanische Chrestomathie. - 1869", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94436, "fields": {"name": "Schleicher, August: La the\u0301orie de Darwin et la science du langage. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94437, "fields": {"name": "Schleicher, August: U\u0308ber die Bedeutung der Sprache fu\u0308r die Naturgeschichte des Menschen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94438, "fields": {"name": "Schleicher, August: Die Deutsche Sprache. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94439, "fields": {"name": "Schleicher, August: Die Darwinsche Theorie und die Sprachwissenschaft. - 1863", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94440, "fields": {"name": "Litauische Ma\u0308rchen, Sprichworte, Ra\u0308tsel und Lieder. - 1857", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94441, "fields": {"name": "Schleicher, August: Compendium der vergleichenden Grammatik der Indogermanischen Sprachen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94442, "fields": {"name": "Schleicher, August: Compendium der vergleichenden Grammatik der Indogermanischen Sprachen. - 1876", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94822, "fields": {"name": "Der Aufstieg der Begabten. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94823, "fields": {"name": "Der deutsche Klassizismus und das Bildungswesen der Gegenwart. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94824, "fields": {"name": "Der jugendliche Mensch . - 1932", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94825, "fields": {"name": "Lebensformen. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94826, "fields": {"name": "Lebenserfahrung. - 1945", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94827, "fields": {"name": "Psychologie des Jugendalters. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94828, "fields": {"name": "Der Bildungswert der Heimatkunde. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94829, "fields": {"name": "Psychologie des Jugendalters. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94830, "fields": {"name": "Psychologie des Jugendalters. - 1924", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94831, "fields": {"name": "Weltfro\u0308mmigkeit. - 1941", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94885, "fields": {"name": "Kleinere Schriften zur Pa\u0308dagogik. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94886, "fields": {"name": "Fro\u0308bel, Friedrich W.: Briefwechsel mit Kindern. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94887, "fields": {"name": "Das Verma\u0308chtnis Friedrich Fro\u0308bels an unsere Zeit. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94888, "fields": {"name": "Fro\u0308bel, Friedrich W.: Menschenerziehung. - [1927]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94889, "fields": {"name": "Fro\u0308bel, Friedrich W.: An unser deutsches Volk!. - 1820", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94890, "fields": {"name": "Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkunst. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94891, "fields": {"name": "Fro\u0308bel, Friedrich W.: Friedrich Fro\u0308bel, der Mensch, Denker und Erzieher. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94892, "fields": {"name": "Menschenerziehung. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94893, "fields": {"name": "Fro\u0308bel, Friedrich W.: Kleinere Schriften zur Pa\u0308dagogik. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94894, "fields": {"name": "Fro\u0308bel, Friedrich W.: Friedrich Fro\u0308bel und die Muhme Schmidt. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94895, "fields": {"name": "An unser deutsches Volk!. - 1820", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94896, "fields": {"name": "Fro\u0308bel, Friedrich W.: Das Verma\u0308chtnis Friedrich Fro\u0308bels an unsere Zeit. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94897, "fields": {"name": "Friedrich Fro\u0308bel, der Mensch, Denker und Erzieher. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94898, "fields": {"name": "Menschenerziehung. - [1927]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94899, "fields": {"name": "Fro\u0308bel, Friedrich W.: Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkunst. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94900, "fields": {"name": "Briefwechsel mit Kindern. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94901, "fields": {"name": "Friedrich Fro\u0308bel und die Muhme Schmidt. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94902, "fields": {"name": "Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkuns*. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94903, "fields": {"name": "Fro\u0308bel, Friedrich W.: Menschenerziehung. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94904, "fields": {"name": "Fro\u0308bel, Friedrich W.: Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkuns*. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95024, "fields": {"name": "Aesthetik. - 1858-1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95025, "fields": {"name": "Philosophische Propaedeutik. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95026, "fields": {"name": "Leibnitz und Herbart. - 1849", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95027, "fields": {"name": "Herbart, Johann F.: Ungedruckte Briefe von und an Herbart. - 1877", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95028, "fields": {"name": "Das Rechtsprinzip bei Leibnitz. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95029, "fields": {"name": "Studien und Kritiken zur Philosophie und Aesthetik. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95030, "fields": {"name": "Guerillaskrieg. - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95043, "fields": {"name": "Ennius, Quintus: Ennianae poesis reliquiae. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95044, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1885", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95045, "fields": {"name": "Ennius, Quintus: Poesis reliquiae. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95046, "fields": {"name": "M. Tullii Ciceronis de legibus libri", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95047, "fields": {"name": "De arte poetica liber", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95048, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95049, "fields": {"name": "Plautus, Titus M.: Menaechmi. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95050, "fields": {"name": "Vahlen, Johannes: In M. Terentii Varronis saturarum Menippearum reliquias coniectanea. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95051, "fields": {"name": "Vahlen, Johannes: Lorenzo Valla. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95052, "fields": {"name": "Lachmann, Karl: Briefe an Moritz Haupt. - 1892", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95053, "fields": {"name": "Naevius, Cnaeus: De bello Punico. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95054, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1879", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95123, "fields": {"name": "Die wichtigsten philosophischen Fachausdru\u0308cke in historischer Anordnung. - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95124, "fields": {"name": "Pa\u0308dagogische Vortra\u0308ge u\u0308ber die Hebung der geistigen Tha\u0308tigkeit durch den *. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95125, "fields": {"name": "Seidenberger, Johann B.: Grundlinien idealer Weltanschauung. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95126, "fields": {"name": "Aristoteles als Pa\u0308dagog und Didaktiker. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95127, "fields": {"name": "Die Wissenschaft vom Gesichtspunkte der katholischen Wahrheit. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95128, "fields": {"name": "Die soziale Aufgabe der ho\u0308heren Schulen. - 1891", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95129, "fields": {"name": "Aus Ho\u0308rsaal und Schulstube. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95130, "fields": {"name": "Pythagoreische Erziehungsweisheit. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95131, "fields": {"name": "Geschichte des Idealismus. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95156, "fields": {"name": "Kru\u0301dy, Gyula: Ady Endre e\u0301jszaka\u0301i. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95157, "fields": {"name": "Kru\u0301dy, Gyula: Munkai", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95158, "fields": {"name": "Kru\u0301dy, Gyula: Magyar Ko\u0308zta\u0300rsasa\u0300g almanachja. - 1988", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95159, "fields": {"name": "Kru\u0301dy, Gyula: Festeu\u0301 kira\u0301ly. - o. J.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95160, "fields": {"name": "Kru\u0301dy, Gyula: A has ezeregye\u0301jszaka\u0301ja. - [1990]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95161, "fields": {"name": "Kru\u0301dy, Gyula: Va\u0301logatott novella\u0301k. - 1990", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95162, "fields": {"name": "Kru\u0301dy, Gyula: Aranyke\u0301zutcai sze\u0301p napok. - 1978", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95163, "fields": {"name": "Kru\u0301dy, Gyula: A magyar jakobinnsok. - [um 1930]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95164, "fields": {"name": "Kru\u0301dy, Gyula: Az elso\u0308 Habsburg. - [um 1930]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95397, "fields": {"name": "Notes sur Paris. - 1883", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95398, "fields": {"name": "Notes sur l'Angleterre. - 1872", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95399, "fields": {"name": "Du suffrage universel et de la manie\u0301re de voter. - 1872", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95400, "fields": {"name": "Philosophie der Kunst", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95401, "fields": {"name": "E\u0301tienne Mayran. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95402, "fields": {"name": "De l'ide\u0301al dans l'art. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95403, "fields": {"name": "Graindorge, Fre\u0301de\u0301ric T. [Pseud.]: La politique ale\u0301atoire. - [1915]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95404, "fields": {"name": "Philosophie de l'art", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95405, "fields": {"name": "Nouveaux essais de critique et d'histoire. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95406, "fields": {"name": "Derniers essais de critique et d'histoire. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95407, "fields": {"name": "Essais de critique et d'histoire. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95582, "fields": {"name": "Volkssagen aus Vorarlberg. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95583, "fields": {"name": "Volkssagen aus Voralberg. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95584, "fields": {"name": "Beitra\u0308ge zur deutschen Mythologie. - 1862", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95596, "fields": {"name": "Beobachtungen u\u0308ber das Gefu\u0308hl des Scho\u0308nen und Erhabenen. - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95597, "fields": {"name": "Die Religion innerhalb der Grenzen der blossen Vernunft. - 1869", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95598, "fields": {"name": "Beobachtungen u\u0308ber das Gefu\u0308hl des Scho\u0308nen und Erhabenen. - 1766", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95599, "fields": {"name": "Kritik der Urteilskraft. - 1790 [u. o\u0308.]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95600, "fields": {"name": "Gesammelte Schriften", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95601, "fields": {"name": "Metaphysische Anfangsgru\u0308nde der Naturwissenschaft. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95602, "fields": {"name": "Die Religion innerhalb der Grenzen der blo\u00dfen Vernunft. - 1794", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95603, "fields": {"name": "Die Religion innerhalb der Grenzen der blossen Vernunft. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95604, "fields": {"name": "Die Religion innerhalb der Grenzen der blo\u00dfen Vernunft. - 1793", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95847, "fields": {"name": "Das Pestalozzische Institut an das Publikum. - 1811", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95848, "fields": {"name": "Pestalozzi's Erziehungsunternehmung im Verha\u0308ltni\u00df zur Zeitkultur. - 1812", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95867, "fields": {"name": "Bernheim, Ernst: Lehrbuch der historischen Methode. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95868, "fields": {"name": "Bernheim, Ernst: Die ungenu\u0308gende Ausdrucksfa\u0308higkeit der Studierenden. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95869, "fields": {"name": "Bernheim, Ernst: Die gefa\u0308hrdete Stellung unserer deutschen Universita\u0308ten. - 1899", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95870, "fields": {"name": "Bernheim, Ernst: Lehrbuch der historischen Methode. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95871, "fields": {"name": "Bernheim, Ernst: Einleitung in die Geschichtswissenschaft. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95872, "fields": {"name": "Bernheim, Ernst: Der Universita\u0308tsunterricht und die Erfordernisse der Gegenwart. - 1898", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95873, "fields": {"name": "Bernheim, Ernst: Julius von Pflugk - Harttung. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95874, "fields": {"name": "Bernheim, Ernst: Geschichtswissenschaft und Erkenntnisstheorie. - 1900 ca.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95875, "fields": {"name": "Bernheim, Ernst: Mittelalterliche Zeitanschauungen in ihrem Einfluss auf Politik und Gesc*. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95876, "fields": {"name": "Bernheim, Ernst: Geschichtsforschung und Geschichtsphilosophie. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95893, "fields": {"name": "Lucubratio theologico-moralis circa praecipuum moralitatis systema de conscientia et actibus humanis. - 1747", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95929, "fields": {"name": "Einige Bemerkungen u\u0308ber die Composition des Sophokleischen Philoktet. - 1893", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95930, "fields": {"name": "Das Ko\u0308nigreich Polen vor dem Kriege <1815-1914>. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95931, "fields": {"name": "Janicki, Klemens: Clementis Janicii Carmina ed., praefatione instr., annot. ill. Ludovicu*. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95932, "fields": {"name": "Balkan und naher Orient. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95949, "fields": {"name": "Meyer, Kuno: The instructions of King Cormac mac Airt. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95950, "fields": {"name": "Meyer, Kuno: The death-tales of the Ulster heroes. - 1906", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95951, "fields": {"name": "Selections from ancient Irish poetry. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95952, "fields": {"name": "Meyer, Kuno: The Triads of Ireland. - 1906", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95953, "fields": {"name": "Meyer, Kuno: Learning in Ireland in the fifth century and the transmission of letters. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95954, "fields": {"name": "Meyer, Kuno: Fianaigecht. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95955, "fields": {"name": "Meyer, Kuno: Betha Colma\u0301in maic Lu\u0301acha\u0301in. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95956, "fields": {"name": "Peredur ab Efrawe. - 1887", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95957, "fields": {"name": "The Voyage of Bran Son of Febal to the Land of the Living", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96143, "fields": {"name": "Chronicon Fuchsio-Lupino-Oltardinum sive Annales Hungarici et Transsilvanici", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96144, "fields": {"name": "Aktenma\u0308ssige Darstellung der ungarischen u. siebenbu\u0308rgischen Landtags-*. - 1866", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96145, "fields": {"name": "Bearb. von: Statuten der allgemeinen Kronsta\u0308dter Sparcasse. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96146, "fields": {"name": "Schriftsteller-Lexikon oder biographisch-litera\u0308rische Denk-Bla\u0308tter der Siebenbu\u0308rger Deutschen. - 1868-", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96208, "fields": {"name": "Schuster, Mauriz: Tibull Studien. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96209, "fields": {"name": "Kappelmacher, Alfred: Die Literatur der R\u00f6mer bis zur Karolingerzeit. - 1926-34", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96210, "fields": {"name": "Plinius Caecilius Secundus, Gaius: Epistularum libri novem. - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96211, "fields": {"name": "Schuster, Mauriz: De C. Sollii Apollinaris Sidonii imitationibus studiisque Horatianis. - 1905/06", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96221, "fields": {"name": "Quintilianus, Marcus F.: Institutionis oratoriae libri XII.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96222, "fields": {"name": "Radermacher, Ludwig: Mythos und Sage bei den Griechen. - [1943]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96223, "fields": {"name": "\"Fr\u00f6sche\"", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96224, "fields": {"name": "Radermacher, Ludwig: Das Jenseits im Mythos der Hellenen. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96225, "fields": {"name": "Qui dicitur de elocutione libellus", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96226, "fields": {"name": "Radermacher, Ludwig: Mythos und Sage bei den Griechen. - 1938", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96458, "fields": {"name": "Harmonia sanctorum quatuor Evangeliorum. - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96459, "fields": {"name": "R\u00f6mischer Katechismus. - 1765", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96460, "fields": {"name": "Ars metrica ad stylum elegiacum P. Ovidii Nasonis. - 1755", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96461, "fields": {"name": "Gloria Filiorum Patres Eorum. - 1748", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96462, "fields": {"name": "Monumenta veteris Ecclesiae Brixinensis. - 1765", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96463, "fields": {"name": "Catechismus Romanus abbreviatus. - 1770 - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96464, "fields": {"name": "Aetas millenaria Ecclesiae Aguntinae in Norico.. - 1772", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96465, "fields": {"name": "Ars metrica ad stylum elegiacum P. Ovidii Nasonis plurimis exemplis ... - 1748", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96466, "fields": {"name": "Annales Ecclesiae Sabionensis. - 1760 - 1767", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96467, "fields": {"name": "Praktischer Unterricht f\u00fcr seine Dorfschullehrer und Pfarrkinder. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96620, "fields": {"name": "Manin, Daniele: Venezia 1848-1849. - 1877", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96621, "fields": {"name": "Manin, Daniele: Epistolario politico. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96622, "fields": {"name": "Manin, Daniele: Della Veneta Giurisprudenza civile, mercantile e criminale. - 1848", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96623, "fields": {"name": "Manin, Daniele: Venise 1848-1849. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96728, "fields": {"name": "Intelligenz und Wille. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96729, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96730, "fields": {"name": "\u00dcber Institute f\u00fcr Jugendkunde und die Gr\u00fcndung eines Instituts f\u00fcr Jugen*. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96731, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96732, "fields": {"name": "Die Entstehung der ersten Wortbedeutungen beim Kinde. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96733, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96734, "fields": {"name": "P\u00e4dagogisch-psychologische Forschungen. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96735, "fields": {"name": "Pedagogia experimental. - 1960", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96736, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96737, "fields": {"name": "System der \u00c4sthetik. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96738, "fields": {"name": "Die Sprache des Kindes. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96740, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96741, "fields": {"name": "Die Entstehung der ersten Wortbedeutungen beim Kinde. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96742, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96743, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96744, "fields": {"name": "Pedagogia experimental. - 1960", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96745, "fields": {"name": "P\u00e4dagogisch-psychologische Forschungen. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96746, "fields": {"name": "Intelligenz und Wille. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96747, "fields": {"name": "Die Sprache des Kindes. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96748, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96749, "fields": {"name": "System der \u00c4sthetik. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96750, "fields": {"name": "\u00dcber Institute f\u00fcr Jugendkunde und die Gr\u00fcndung eines Instituts f\u00fcr Jugen*. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96758, "fields": {"name": "Laudivius : Laudini Eovitis hierosolymitani ad Franciscum Beltrandum ... - 1511", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96759, "fields": {"name": "Magni Turci, i.e. Mahometi Secundi, Turcarum Imperatoris, Epistolae. - 1680", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96813, "fields": {"name": "Geschichte des Mittelalters. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96814, "fields": {"name": "Bedeutende M\u00e4nner d\u00fcrens. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96815, "fields": {"name": "Forschungen zur geschichte Ludwigs des Bayern. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96816, "fields": {"name": "Festschrift zum goldenen Jubil\u00e4um des katholischen Gesellen-Vereins in Neuss. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96817, "fields": {"name": "Die Bulle Ne praetereat und die Reconciliationsverhandlungen Ludwigs des Bayers mit dem Papste Johann XXII. - 1885", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96858, "fields": {"name": "Salzburg Und Theile Von Baiern Und \u00d6sterreich. - 1807", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96859, "fields": {"name": "Schlacht bey Biberach. - s.a. [1813]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96860, "fields": {"name": "Plan zur \u00dcbersicht der Kriegsbegebenheiten zwischen der Lahn ... - [1813]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96861, "fields": {"name": "M\u00fcnchen mit Seinen Umgebungen. - [ca. 1840]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96862, "fields": {"name": "Schlacht bey Biberach am zweiten October 1796. - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96863, "fields": {"name": "Neueste General-Post- [und] Strassen-Karte der Oesterreichischen Monarchie. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96864, "fields": {"name": "Plan zur \u00dcbersicht der Kriegsbegebenheiten zwischen der Lahn ... - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96865, "fields": {"name": "Charte von Oesterreich Ob Der Enns. - 1802", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96947, "fields": {"name": "Obermaier, Hugo: Las Pinturas rupestres del Barranco de Valltorta . - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96948, "fields": {"name": "Obermaier, Hugo: Yacimiento prehist\u00f3rico de las Carolinas . - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96949, "fields": {"name": "Obermaier, Hugo: Los Glaciares cuaternarios de la Sierra del Guadarrama. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96950, "fields": {"name": "Obermaier, Hugo: Fossil Man in Spain. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96951, "fields": {"name": "Obermaier, Hugo: Estudio de los Glaciares de los Picos de Europa. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96952, "fields": {"name": "Obermaier, Hugo: Los Glaciares cuaternarios de Sierra Nevada. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96953, "fields": {"name": "Obermaier, Hugo: El hombre f\u00f3sil. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96954, "fields": {"name": "Obermaier, Hugo: El dolmen de Matarrubilla . - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96955, "fields": {"name": "Obermaier, Hugo: Contribuci\u00f3n al estudio del Glaciarismo cuaternario de la Sierra de Gredos. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96956, "fields": {"name": "Obermaier, Hugo: La Cueva del Buxu . - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97430, "fields": {"name": "\u00d6MV - OMV. - 1998", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97529, "fields": {"name": "R\u00fcbezahl. - 1970", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97530, "fields": {"name": "Wie die Welt entdeckt wurde. - 1968", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97531, "fields": {"name": "Das @goldene Spyri-Buch. - 1966", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97532, "fields": {"name": "Heidi. - 1965", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97533, "fields": {"name": "Die @sch\u00f6nsten M\u00e4rchen. - 1967", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97534, "fields": {"name": "Kinder- und Hausm\u00e4rchen. - 2002", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97578, "fields": {"name": "Europ\u00e4ische Integration und die Vereinigten Staaten von Amerika", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97592, "fields": {"name": "Jaroszewicz, Piotr: Przerywam milczenie .... - 1991", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97593, "fields": {"name": "Gierek & Jaroszewicz zeznaj\u0105. - 1990", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97617, "fields": {"name": "Zastosowanie metody Kowalowa w wielkim przemy\u015ble chemicznym", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97623, "fields": {"name": "Neue Wege zur wirtschaftlichen Gestaltung des Bahnbetriebes", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97657, "fields": {"name": "Der @neue Weg der Selbst\u00e4ndigen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97707, "fields": {"name": "Die @Sozialversicherung der Heimatvertriebenen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97723, "fields": {"name": "Kultur- und Sittengeschichte des nieder\u00f6sterreichischen Dorfes. - 1953", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97753, "fields": {"name": "Die @Werksteinindustrie in Niederdonau", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97790, "fields": {"name": "Die @\u00f6ffentlich-gemeinn\u00fctzige Sph\u00e4re des Bankwesens im nationalsozialistischen Staat", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97834, "fields": {"name": "Als die Nacht verging. - 1955", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97849, "fields": {"name": "M\u00fctterliche Schmertzen der unter dem Cre\u00fctz h\u00f6chst betr\u00fcbt stehender Mutter Jesu Mariae. - 1717", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97884, "fields": {"name": "Grundz\u00fcge der Volkswirtschaftslehre. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97888, "fields": {"name": "Die @Wirtschaft und Industrie Irans", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97896, "fields": {"name": "Die @Altesunterst\u00fctzung und die Jugendeinstellung", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97933, "fields": {"name": "Sonderpostmarke 50 Jahre \u00f6sterreichischer St\u00e4dtebund", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97943, "fields": {"name": "Zagoskin, Michail N.: Izbrannoe. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97944, "fields": {"name": "Semenov, Vladimir S.: Aleksandr Gercen. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97945, "fields": {"name": "Leskov, Nikolaj S.: Zachudalyj rod. - 1985", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97976, "fields": {"name": "Wolf, Hugo: [Manuel Venegas ]. - 1986", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97977, "fields": {"name": "Wolf, Hugo: [Spanisches Liederbuch / Ausw.]. - \u00a91978", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97986, "fields": {"name": "Die @Qualit\u00e4t des Lebens verbessern", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98006, "fields": {"name": "Aus Wilhelm von Tegetthoff's Nachlass. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98024, "fields": {"name": "\u00dcber das Verh\u00e4ltnis von Wace's Roman de Brut zu seiner Quelle, der Historia regum Britanniae des Gottfried von Monmouth", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98116, "fields": {"name": "wien", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98183, "fields": {"name": "Lange, Ludwig: Reiseberichte aus Griechenland. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98184, "fields": {"name": "Lange, Ludwig: Original-Ansichten der vornehmsten St\u00e4dte in Deutschland. - 1832 - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98185, "fields": {"name": "Lange, Ludwig: Die geschichtliche Entwicklung des Bewegungsbegriffes und ihr voraussich*. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98237, "fields": {"name": "Anselm Feuerbachs Briefe an seine Mutter. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98296, "fields": {"name": "Laurent, Paul M.: Histoire de l'empereur Napol\u00e9on. - 1843", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98297, "fields": {"name": "LaFontaine, Jean de: Fables choisies de LaFontaine. - 1818", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98298, "fields": {"name": "Laurent, Paul M.: Histoire de l'empereur Napol\u00e9on. - 1839", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98299, "fields": {"name": "Zw\u00f6lf Stahlstiche zu der Geschichte Napoleons. - 1839", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98300, "fields": {"name": "Laurent, Paul M.: Geschichte des Kaisers Napoleon. - 1840", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98301, "fields": {"name": "Vernet, Horace: Ru\u00dfland. - 1856", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98348, "fields": {"name": "Bryant, William C.: Poems. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98551, "fields": {"name": "Hess, Heinrich: Die Fresco-Gem\u00e4lde der K\u00f6niglichen Allerheiligen Hofkapelle zu M\u00fcnchen. - 1837", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98569, "fields": {"name": "Spahn, Martin: Philipp Veit. - 1901", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98570, "fields": {"name": "Schlegel, Dorothea von: Dorothea v. Schlegel geb. Mendelssohn und deren S\u00f6hne Johannes *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98579, "fields": {"name": "Raffaello : Le Logge di Rafaele nel Vaticano", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98580, "fields": {"name": "Raffaello : VII tabulae actorum apostolicorum p.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98581, "fields": {"name": "Apuleius : Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98582, "fields": {"name": "Raffaello : Le Loggie di Raffaello nel Vaticano. - [1772 - 1776]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98583, "fields": {"name": "Buonarroti, Michel A.: Gedichte. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98584, "fields": {"name": "Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98585, "fields": {"name": "Dorigny, Nicolas: Psyches et Amoris nuptiae ac fabula. - 1693", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98586, "fields": {"name": "Ill. zu: Apuleius : Amor und Psyche. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98587, "fields": {"name": "Apuleius Madaurensis, Lucius: Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98588, "fields": {"name": "Palaestra amoris dicata Veneri", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98604, "fields": {"name": "Waldm\u00fcller, Ferdinand G.: Bilder und Erlebnisse. - 1920 ca.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98605, "fields": {"name": "Waldm\u00fcller, Ferdinand G.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98606, "fields": {"name": "Ferdinand Georg Waldm\u00fcller zum 200. Geburtstag. - 1993", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98696, "fields": {"name": "Overbeck, Friedrich: Friedrich Overbeck's Triumph der Religion in den K\u00fcnsten. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98697, "fields": {"name": "Overbeck, Friedrich: Jesus amator parvulorum. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98714, "fields": {"name": "(Graf) Hans Wilczek erz\u00e4hlt seinen Enkeln Erinnerungen ... - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98722, "fields": {"name": "Briefe. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98723, "fields": {"name": "Studien zur Gorgo. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98724, "fields": {"name": "Aus meinem Leben 1859-1888. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98725, "fields": {"name": "Wilhelm : Meine Vorfahren. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98726, "fields": {"name": "Trauer und Treue. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98727, "fields": {"name": "Kaiserreden. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98728, "fields": {"name": "Wilhelm : Studien zur Gorgo. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98729, "fields": {"name": "Oncken, Wilhelm: Unser Heldenkaiser. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98730, "fields": {"name": "Meine Vorfahren. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98731, "fields": {"name": "Vergleichende Geschichtstabellen von 1878 bis zum*. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98732, "fields": {"name": "Mack, Eugen: Das Rottweiler Steuerbuch von 1441. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98733, "fields": {"name": "Wilhelm : Briefe. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98734, "fields": {"name": "Klages, Ernst: Heil, Kaiser, Dir!", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98735, "fields": {"name": "Wilhelm : Vergleichende Geschichtstabellen von 1878 bis zum*. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98736, "fields": {"name": "Wilhelm : Aus meinem Leben 1859-1888. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98737, "fields": {"name": "Wilhelm : Kaiserreden. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98886, "fields": {"name": "An die Gantze Christenheit Ein Hochwichtige Frag ... - 1620", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98891, "fields": {"name": "Feldz\u00fcge in Ungarn und den angr\u00e4nzenden Provinzen. - 1788", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98892, "fields": {"name": "L'operazioni militari fatte in Ungaria (1683-1694). - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98893, "fields": {"name": "Des Grafen Veterani Feldz\u00fcge in Ungarn .\u0324 von 1683 - 1694. - 1788", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98922, "fields": {"name": "Zim\u0101m al-\u0121an\u0101 al-mu\u1e6drib fi n-na\u1e93m as-s\u0101\u02bfir f\u012b aq\u0101\u1e63\u012b al-ma\u0121rib. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98923, "fields": {"name": "Tar\u0101\u01f5im ri\u01f5\u0101l. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98924, "fields": {"name": "Arabische und persische Handschriften. - [1921]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98925, "fields": {"name": "Biographien von Gew\u00e4hrm\u00e4nnern des Ibn Is\u1e25\u00e2g, haupts\u00e4chlich aus a\u1e0f-\u1e0eahab\u00ee. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98980, "fields": {"name": "Der @\u00e4gyptische Joseph", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98990, "fields": {"name": "HJerinn sind begriffen vier Buecher von menschlicher Proportion durch Albrechten Duerer ... 1528. (VD16 ZV 23128)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98991, "fields": {"name": "Albrecht D\u00fcrer und Wilibald Pirkheimer. - 1828", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98992, "fields": {"name": "Diurnale seu liber precum. - 1514", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98993, "fields": {"name": "Alberti Dureri clarissimi pictoris et Geometrae de Sym\u0303etria partium in rectis formis ... 1532. (VD16 D 2860)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98994, "fields": {"name": "Holzschnitte. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98995, "fields": {"name": "Unterweisung der Messung mit dem Zirkel und Richtscheit. - 1538", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98996, "fields": {"name": "Institutiones geometricae. - 1535", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98997, "fields": {"name": "Elementorum geometricorum libri. - 1606", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98998, "fields": {"name": "Birgitta : Regula sancti salvatoris. 1517. (VD16 B 5594)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98999, "fields": {"name": "M\u0101 Sh\u0101 All\u0101h al-Mi\u1e63r\u012b: MESSAHALAH DE SCIENTIA MOTVS ORBIS ... [Ed. stud. (Ioann.Stabii ... )][\u00dcbers. v. Gerardus ... 1504. (VD16 M 1326)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99000, "fields": {"name": "Hjeri\u00f1 sind begriffen vier biicher von menschlicher Proportion durch Albrechten Duerer von ... 1528. (VD16 D 2859)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99001, "fields": {"name": "Brant, Sebastian: Nauis stultifera a domino sebastiano Brant prim\u0169 edificata: \\[et] lepidissimis teutonice lingue ... 1506. (VD16 B 7078)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99002, "fields": {"name": "Elementorum geometricorum libri. - 1532", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99003, "fields": {"name": "Maximilian I. : Oratio ad su\u0169 \\[pro...]ri\u0169 angel\u0169. DEus \\[pro...]itius esto mihi peccatori. Et sis mihi custos ... 1514. (VD16 M 1657)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99004, "fields": {"name": "Icones Sacrae. - 1604", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99005, "fields": {"name": "Schwalbe, Benedikt: EPITOME IN DIVAE PARTHENICES MARIAE HISTORIAM AB ALBERTO DVRERO NORICO PER FIGVRAS DIGES TAM ... 1511. (VD16 S 4585)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99006, "fields": {"name": "Apocalipsis c\u0169 figuris [von Albrecht D\u00fcrer]. 1511. (VD16 B 5248)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99007, "fields": {"name": "Vier b\u00fccher von menschlicher Proportion. - 1528", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99008, "fields": {"name": "Schwalbe, Benedikt: Passio domini nostri Jesu. ex hieronymo Paduano. Dominico Mancino. Sedulio. et Baptista ... 1511. (VD16 S 4587)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99009, "fields": {"name": "Opera. - 1604", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99075, "fields": {"name": "In memoriam. - 1873", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99092, "fields": {"name": "F\u00fcnf Dichtungen. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99093, "fields": {"name": "Scheffel, Joseph V. von: Gaudeamus!. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99094, "fields": {"name": "Scheffel, Joseph V. von: Frau Aventiure. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99095, "fields": {"name": "Gaudeamus!. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99096, "fields": {"name": "Der Trompeter von S\u00e4kkingen. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99097, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99098, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99099, "fields": {"name": "Scheffel, Joseph V. von: Juniperus. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99100, "fields": {"name": "Frau Aventiure. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99101, "fields": {"name": "Das Gabelbachlied. - [1900]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99102, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99103, "fields": {"name": "Ekkehard. - 1855", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99104, "fields": {"name": "Juniperus. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99105, "fields": {"name": "Scheffel, Joseph V. von: Ekkehard. - 1855", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99106, "fields": {"name": "Scheffel, Joseph V. von: Das Gabelbachlied. - [1900]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99107, "fields": {"name": "Das Grosse Fass zu Heidelberg. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99108, "fields": {"name": "Scheffel, Joseph V. von: F\u00fcnf Dichtungen. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99109, "fields": {"name": "Scheffel, Joseph V. von: Das Grosse Fass zu Heidelberg. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99110, "fields": {"name": "Der Trompeter von S\u00e4kkingen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99156, "fields": {"name": "Faust", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99336, "fields": {"name": "Souscription \u00e0 la gravure repr\u00e9sentant le portrait en pied de M. David. - [ca. 1810]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99337, "fields": {"name": "Le Tableau des Sabines, expos\u00e9 publiquement au Palais National des Sciences et des Arts. - Ca. 1790", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99352, "fields": {"name": "Hamilton, William: Collection of Engravings from ancient Vases. - 1791 - 1795", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99353, "fields": {"name": "Soltau, Dietrich W.: Reineke der Fuchs. - 1830", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99354, "fields": {"name": "Hamilton, William: Collection of engravings from ancient Vases of pure Greek workmanship *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99355, "fields": {"name": "Tischbein, Johann H.: Homer nach Antiken gezeichnet. - 1801 - 1821", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99356, "fields": {"name": "Tischbein, Johann H.: Figures d'Hom\u00e8re dessin\u00e9es d'apr\u00e8s l'antique. - 1801", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99357, "fields": {"name": "B\u00f6ttiger, Carl A.: Umrisse griechischer Gem\u00e4lde auf antiken i. J. 1789 u. 1790 in Campani*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99358, "fields": {"name": "Tischbein, Johann H.: Homer nach Antiken gezeichnet", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99369, "fields": {"name": "Museum \u00e9trusque de Lucien Bonaparte, prince de Carpino. Fouilles de 1828 \u00e0 1829. Vases *. - 1829", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99370, "fields": {"name": "Bonaparte, Lucien: R\u00e9volution de brumaire, ou relation des principaux \u00e9v\u00e9venments des *. - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99371, "fields": {"name": "Bonaparte, Lucien: M\u00e9moires de Lucien Bonaparte prince de Canino. - 1836", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99372, "fields": {"name": "Bonaparte, Lucien: Charlemagne ou l'\u00e9glise d\u00e9livr\u00e9e", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99373, "fields": {"name": "Museum Etrusque de Lucien Bonaparte Prince de Canino. - 1829", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99374, "fields": {"name": "Bonaparte, Lucien: Charle Magne ou l'Eglise delivr\u00e9e. - 1815", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99375, "fields": {"name": "Bonaparte, Lucien: La verit\u00e9 sur les Cent-Jours. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99376, "fields": {"name": "Bonaparte, Lucien: M\u00e9moires de Lucien Bonaparte prince de Canino", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99377, "fields": {"name": "Bonaparte, Lucien: La v\u00e9rit\u00e9 sur les cent-jours. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99378, "fields": {"name": "Bonaparte, Lucien: Discours prononc\u00e9 dans le temple de Mars. - [1800]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99416, "fields": {"name": "Erinnerungen an Ernst von Lasaulx. - 1861", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99417, "fields": {"name": "Adam, Albrecht: Aus dem Leben eines Schlachtenmalers. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99418, "fields": {"name": "Geschichte der altdeutschen Dichtkunst in Bayern. - 1862", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99419, "fields": {"name": "Geschichte der deutschen Literatur. - 1853", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99420, "fields": {"name": "Die Entwicklung des deutschen Theaters im Mittelalter und das Ammerg*. - 1861", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99421, "fields": {"name": "Lebenserinnerungen eines 90j\u00e4hr. Altm\u00fcncheners. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99422, "fields": {"name": "Kaiser Ludwig der Bayer und sein Stift zu Ettal. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99423, "fields": {"name": "Franz Graf Pocci. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99591, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99744, "fields": {"name": "\u00dcber die Geschwindigkeit der Hydrolyse der Hexafluoride von Schwefel, Selen und Tellur", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99841, "fields": {"name": "Kolloidchemie. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99842, "fields": {"name": "\u00dcber Kolloidchemie unter bes. Ber\u00fccksichtigung d. anorg. Kolloide .... - 1935", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99843, "fields": {"name": "Kolloidchemie. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99844, "fields": {"name": "Das kolloide Gold. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99845, "fields": {"name": "Kurzer Leitfaden der technischen Gasanalyse. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99846, "fields": {"name": "Zur Erkenntnis der Kolloide. - 1905", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99847, "fields": {"name": "Zur Erkenntnis der Kolloide. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99848, "fields": {"name": "Kolloidchemie. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99849, "fields": {"name": "Kolloidchemie. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99850, "fields": {"name": "Kolloidchemie. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.source", "pk": 1, "fields": {"orig_filename": "Geographiedaten.xlsx", "indexed": false, "pubinfo": "Export of \u00d6BL geo db (3.2016)", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 102, "fields": {"orig_filename": "Bahr_Hermann_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f.", "author": "", "orig_id": 1405476}}, {"model": "metainfo.source", "pk": 103, "fields": {"orig_filename": "Celakovsky_Jaromir_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416946}}, {"model": "metainfo.source", "pk": 104, "fields": {"orig_filename": "Celakovsky_Ladislav_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416947}}, {"model": "metainfo.source", "pk": 105, "fields": {"orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416953}}, {"model": "metainfo.source", "pk": 106, "fields": {"orig_filename": "Charlemont_Hugo_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417029}}, {"model": "metainfo.source", "pk": 107, "fields": {"orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417140}}, {"model": "metainfo.source", "pk": 108, "fields": {"orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417315}}, {"model": "metainfo.source", "pk": 109, "fields": {"orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417317}}, {"model": "metainfo.source", "pk": 110, "fields": {"orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417316}}, {"model": "metainfo.source", "pk": 111, "fields": {"orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417320}}, {"model": "metainfo.source", "pk": 112, "fields": {"orig_filename": "Conze_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f.", "author": "", "orig_id": 1417417}}, {"model": "metainfo.source", "pk": 113, "fields": {"orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417431}}, {"model": "metainfo.source", "pk": 114, "fields": {"orig_filename": "Czerny_Adalbert_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417613}}, {"model": "metainfo.source", "pk": 116, "fields": {"orig_filename": "Czetz_Johann_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f.", "author": "", "orig_id": 1417689}}, {"model": "metainfo.source", "pk": 117, "fields": {"orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417691}}, {"model": "metainfo.source", "pk": 118, "fields": {"orig_filename": "Defregger_Franz_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417167}}, {"model": "metainfo.source", "pk": 119, "fields": {"orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417262}}, {"model": "metainfo.source", "pk": 120, "fields": {"orig_filename": "Doderer_Wilhelm_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421589}}, {"model": "metainfo.source", "pk": 121, "fields": {"orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422065}}, {"model": "metainfo.source", "pk": 122, "fields": {"orig_filename": "Holovsky_Hilde_1917_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417020}}, {"model": "metainfo.source", "pk": 123, "fields": {"orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412571}}, {"model": "metainfo.source", "pk": 124, "fields": {"orig_filename": "Lapaine_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f.", "author": "", "orig_id": 1412681}}, {"model": "metainfo.source", "pk": 125, "fields": {"orig_filename": "Lefler_Heinrich_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413578}}, {"model": "metainfo.source", "pk": 126, "fields": {"orig_filename": "Leichter_Kaethe_1895_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413749}}, {"model": "metainfo.source", "pk": 127, "fields": {"orig_filename": "Leidesdorf_Franz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f.", "author": "", "orig_id": 1413751}}, {"model": "metainfo.source", "pk": 128, "fields": {"orig_filename": "Leitgeb_Hubert_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f.", "author": "", "orig_id": 1413852}}, {"model": "metainfo.source", "pk": 129, "fields": {"orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412686}}, {"model": "metainfo.source", "pk": 130, "fields": {"orig_filename": "Lichtblau_Adolf_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411908}}, {"model": "metainfo.source", "pk": 131, "fields": {"orig_filename": "Lichtblau_Ludwig_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f.", "author": "", "orig_id": 1411907}}, {"model": "metainfo.source", "pk": 132, "fields": {"orig_filename": "Lobmeyr_Josef_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263", "author": "", "orig_id": 1411542}}, {"model": "metainfo.source", "pk": 133, "fields": {"orig_filename": "Loewy_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297", "author": "", "orig_id": 1411913}}, {"model": "metainfo.source", "pk": 134, "fields": {"orig_filename": "Lorenz_Heinrich_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316", "author": "", "orig_id": 1412111}}, {"model": "metainfo.source", "pk": 135, "fields": {"orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f.", "author": "", "orig_id": 1411846}}, {"model": "metainfo.source", "pk": 136, "fields": {"orig_filename": "Maier_Karl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412133}}, {"model": "metainfo.source", "pk": 137, "fields": {"orig_filename": "Manesova_Amalie_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f.", "author": "", "orig_id": 1409111}}, {"model": "metainfo.source", "pk": 138, "fields": {"orig_filename": "Manes_Quido_1828_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409109}}, {"model": "metainfo.source", "pk": 139, "fields": {"orig_filename": "Margulies_Berl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1409490}}, {"model": "metainfo.source", "pk": 140, "fields": {"orig_filename": "Meithner_Karl_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f.", "author": "", "orig_id": 1413879}}, {"model": "metainfo.source", "pk": 141, "fields": {"orig_filename": "Miklosich_Franz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f.", "author": "", "orig_id": 1413368}}, {"model": "metainfo.source", "pk": 142, "fields": {"orig_filename": "Millosicz_Georg_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f.", "author": "", "orig_id": 1413706}}, {"model": "metainfo.source", "pk": 143, "fields": {"orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412553}}, {"model": "metainfo.source", "pk": 144, "fields": {"orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413568}}, {"model": "metainfo.source", "pk": 145, "fields": {"orig_filename": "Novacek_Rudolf_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f.", "author": "", "orig_id": 1408134}}, {"model": "metainfo.source", "pk": 146, "fields": {"orig_filename": "Oellacher_Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408688}}, {"model": "metainfo.source", "pk": 147, "fields": {"orig_filename": "Ortmann_Rudolf_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409161}}, {"model": "metainfo.source", "pk": 148, "fields": {"orig_filename": "Patera_Adolf_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f.", "author": "", "orig_id": 1408720}}, {"model": "metainfo.source", "pk": 149, "fields": {"orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f.", "author": "", "orig_id": 1409360}}, {"model": "metainfo.source", "pk": 150, "fields": {"orig_filename": "Petzold_Emil_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407914}}, {"model": "metainfo.source", "pk": 151, "fields": {"orig_filename": "Poljanec_Leopold_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410619}}, {"model": "metainfo.source", "pk": 152, "fields": {"orig_filename": "Radakovic_Michael_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f.", "author": "", "orig_id": 1409702}}, {"model": "metainfo.source", "pk": 153, "fields": {"orig_filename": "Randa_Maximilian_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411", "author": "", "orig_id": 1410086}}, {"model": "metainfo.source", "pk": 154, "fields": {"orig_filename": "Reichenberger_Andreas_1770_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f.", "author": "", "orig_id": 1406805}}, {"model": "metainfo.source", "pk": 155, "fields": {"orig_filename": "Reiser_Othmar_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406978}}, {"model": "metainfo.source", "pk": 156, "fields": {"orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f.", "author": "", "orig_id": 1407193}}, {"model": "metainfo.source", "pk": 157, "fields": {"orig_filename": "Rotter_Johann_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f.", "author": "", "orig_id": 1407684}}, {"model": "metainfo.source", "pk": 158, "fields": {"orig_filename": "Rumpler_Matthias_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327", "author": "", "orig_id": 1407832}}, {"model": "metainfo.source", "pk": 159, "fields": {"orig_filename": "Schell_Karl_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f.", "author": "", "orig_id": 1406179}}, {"model": "metainfo.source", "pk": 160, "fields": {"orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f.", "author": "", "orig_id": 1406202}}, {"model": "metainfo.source", "pk": 161, "fields": {"orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f.", "author": "", "orig_id": 1406044}}, {"model": "metainfo.source", "pk": 162, "fields": {"orig_filename": "Schikaneder_Jakub_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f.", "author": "", "orig_id": 1406374}}, {"model": "metainfo.source", "pk": 163, "fields": {"orig_filename": "Schindler_Josef_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153", "author": "", "orig_id": 1406252}}, {"model": "metainfo.source", "pk": 164, "fields": {"orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406496}}, {"model": "metainfo.source", "pk": 165, "fields": {"orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f.", "author": "", "orig_id": 1406721}}, {"model": "metainfo.source", "pk": 166, "fields": {"orig_filename": "Schmid_Anton_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f.", "author": "", "orig_id": 1406531}}, {"model": "metainfo.source", "pk": 167, "fields": {"orig_filename": "Schmid_Joseph_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f.", "author": "", "orig_id": 1406597}}, {"model": "metainfo.source", "pk": 168, "fields": {"orig_filename": "Schmutzler_Leopold_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f.", "author": "", "orig_id": 1406623}}, {"model": "metainfo.source", "pk": 169, "fields": {"orig_filename": "Schnitzler_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f.", "author": "", "orig_id": 1406896}}, {"model": "metainfo.source", "pk": 170, "fields": {"orig_filename": "Schober_Alfred_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f.", "author": "", "orig_id": 1406912}}, {"model": "metainfo.source", "pk": 171, "fields": {"orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405414}}, {"model": "metainfo.source", "pk": 172, "fields": {"orig_filename": "Schoenberger_Adolf_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405629}}, {"model": "metainfo.source", "pk": 173, "fields": {"orig_filename": "Schoenberger_Benno_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405634}}, {"model": "metainfo.source", "pk": 174, "fields": {"orig_filename": "Scholl_Joseph_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f.", "author": "", "orig_id": 1412321}}, {"model": "metainfo.source", "pk": 175, "fields": {"orig_filename": "Scholz_Franz_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412411}}, {"model": "metainfo.source", "pk": 176, "fields": {"orig_filename": "Schrammel_Johann_1850_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff.", "author": "", "orig_id": 1411222}}, {"model": "metainfo.source", "pk": 177, "fields": {"orig_filename": "Schreyer_Johann_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411681}}, {"model": "metainfo.source", "pk": 178, "fields": {"orig_filename": "Schroedl_Leopold_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236", "author": "", "orig_id": 1411777}}, {"model": "metainfo.source", "pk": 179, "fields": {"orig_filename": "Schuecker_Edmund_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f.", "author": "", "orig_id": 1412171}}, {"model": "metainfo.source", "pk": 180, "fields": {"orig_filename": "Schwabl_Franz_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f.", "author": "", "orig_id": 1420210}}, {"model": "metainfo.source", "pk": 181, "fields": {"orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f.", "author": "", "orig_id": 1420456}}, {"model": "metainfo.source", "pk": 182, "fields": {"orig_filename": "Schwarz_Johann_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439", "author": "", "orig_id": 1420439}}, {"model": "metainfo.source", "pk": 183, "fields": {"orig_filename": "Schwarz_Kaspar_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445", "author": "", "orig_id": 1420450}}, {"model": "metainfo.source", "pk": 184, "fields": {"orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f.", "author": "", "orig_id": 1439729}}, {"model": "metainfo.source", "pk": 185, "fields": {"orig_filename": "Sehnal_Eugen_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f.", "author": "", "orig_id": 1439478}}, {"model": "metainfo.source", "pk": 186, "fields": {"orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197", "author": "", "orig_id": 1450886}}, {"model": "metainfo.source", "pk": 187, "fields": {"orig_filename": "Sichulski_Kazimierz_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223", "author": "", "orig_id": 1450008}}, {"model": "metainfo.source", "pk": 188, "fields": {"orig_filename": "Snjaric_Lukas_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384", "author": "", "orig_id": 1457373}}, {"model": "metainfo.source", "pk": 189, "fields": {"orig_filename": "Stariha_Janez-Nep_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105", "author": "", "orig_id": 1428070}}, {"model": "metainfo.source", "pk": 190, "fields": {"orig_filename": "Steindler_Olga_1879_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f.", "author": "", "orig_id": 1430730}}, {"model": "metainfo.source", "pk": 191, "fields": {"orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149", "author": "", "orig_id": 1428363}}, {"model": "metainfo.source", "pk": 192, "fields": {"orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f.", "author": "", "orig_id": 1434284}}, {"model": "metainfo.source", "pk": 193, "fields": {"orig_filename": "Stuelz_Jodok_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443", "author": "", "orig_id": 1433097}}, {"model": "metainfo.source", "pk": 194, "fields": {"orig_filename": "Szigligeti_Ede_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154", "author": "", "orig_id": 1434706}}, {"model": "metainfo.source", "pk": 195, "fields": {"orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178", "author": "", "orig_id": 1435139}}, {"model": "metainfo.source", "pk": 196, "fields": {"orig_filename": "Tauber_Richard_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff.", "author": "", "orig_id": 1422288}}, {"model": "metainfo.source", "pk": 197, "fields": {"orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257", "author": "", "orig_id": 1424387}}, {"model": "metainfo.source", "pk": 198, "fields": {"orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 2047416}}, {"model": "metainfo.source", "pk": 199, "fields": {"orig_filename": "Teuber_Emmerich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f.", "author": "", "orig_id": 1448255}}, {"model": "metainfo.source", "pk": 200, "fields": {"orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f.", "author": "", "orig_id": 1424667}}, {"model": "metainfo.source", "pk": 201, "fields": {"orig_filename": "Toelgyessy_Artur_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1458532}}, {"model": "metainfo.source", "pk": 202, "fields": {"orig_filename": "Novotny_Johann_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408236}}, {"model": "metainfo.source", "pk": 203, "fields": {"orig_filename": "Konrath_Matthias_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415528}}, {"model": "metainfo.source", "pk": 204, "fields": {"orig_filename": "Schreyer_Albert_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222", "author": "", "orig_id": 1411613}}, {"model": "metainfo.source", "pk": 205, "fields": {"orig_filename": "Tafatscher_Franz_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 185f.", "author": "", "orig_id": 1458119}}, {"model": "metainfo.source", "pk": 206, "fields": {"orig_filename": "Schoen_Karl_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38", "author": "", "orig_id": 1405460}}, {"model": "metainfo.source", "pk": 207, "fields": {"orig_filename": "Leonardi_Demetrio_1796_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142f.", "author": "", "orig_id": 1412785}}, {"model": "metainfo.source", "pk": 208, "fields": {"orig_filename": "Seyler_Joseph-Anton_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 211", "author": "", "orig_id": 1450963}}, {"model": "metainfo.source", "pk": 209, "fields": {"orig_filename": "Lobisser_Switbert_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257f.", "author": "", "orig_id": 1411455}}, {"model": "metainfo.source", "pk": 210, "fields": {"orig_filename": "Oesterreicher_Tobias_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408703}}, {"model": "metainfo.source", "pk": 211, "fields": {"orig_filename": "Schoefft_August_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 14", "author": "", "orig_id": 1405401}}, {"model": "metainfo.source", "pk": 212, "fields": {"orig_filename": "Slanc_Karel_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348", "author": "", "orig_id": 1459134}}, {"model": "metainfo.source", "pk": 213, "fields": {"orig_filename": "Bruckner_Anton_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117ff.", "author": "", "orig_id": 1420614}}, {"model": "metainfo.source", "pk": 214, "fields": {"orig_filename": "Bettelheim_Anton_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78f.", "author": "", "orig_id": 1418603}}, {"model": "metainfo.source", "pk": 215, "fields": {"orig_filename": "Resch_Franz_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84", "author": "", "orig_id": 1407002}}, {"model": "metainfo.source", "pk": 216, "fields": {"orig_filename": "Schmid_Josef_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275", "author": "", "orig_id": 1406594}}, {"model": "metainfo.source", "pk": 217, "fields": {"orig_filename": "Schrey-Redlwerth_Robert_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220", "author": "", "orig_id": 1411607}}, {"model": "metainfo.source", "pk": 218, "fields": {"orig_filename": "Szalay_Imre_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109f.", "author": "", "orig_id": 1434929}}, {"model": "metainfo.source", "pk": 219, "fields": {"orig_filename": "Nicoladoni_Karl_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 113", "author": "", "orig_id": 1408941}}, {"model": "metainfo.source", "pk": 220, "fields": {"orig_filename": "Schmelkes_Gottfried_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 232", "author": "", "orig_id": 1406508}}, {"model": "metainfo.source", "pk": 221, "fields": {"orig_filename": "Melzer_Raimund_1808_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412625}}, {"model": "metainfo.source", "pk": 222, "fields": {"orig_filename": "Schumann_Richard_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 367f.", "author": "", "orig_id": 1419960}}, {"model": "metainfo.source", "pk": 223, "fields": {"orig_filename": "Kovachich_Jozsef-Miklos_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416438}}, {"model": "metainfo.source", "pk": 224, "fields": {"orig_filename": "Kanya_Kalman_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414424}}, {"model": "metainfo.source", "pk": 225, "fields": {"orig_filename": "Mueller-Reichenstein_Franz-Josef_1742_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431", "author": "", "orig_id": 1413644}}, {"model": "metainfo.source", "pk": 226, "fields": {"orig_filename": "Todesco_Moritz_1816_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 364", "author": "", "orig_id": 1423650}}, {"model": "metainfo.source", "pk": 227, "fields": {"orig_filename": "Schmutzer_Philipp-Maximilian_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 350f.", "author": "", "orig_id": 1406711}}, {"model": "metainfo.source", "pk": 228, "fields": {"orig_filename": "Luger_Engelbert_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356", "author": "", "orig_id": 1411114}}, {"model": "metainfo.source", "pk": 229, "fields": {"orig_filename": "Levec_Vladimir_1877_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411633}}, {"model": "metainfo.source", "pk": 230, "fields": {"orig_filename": "Marchesi_Pompeo_1789_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409376}}, {"model": "metainfo.source", "pk": 231, "fields": {"orig_filename": "Schubert-Soldern_Zdenko_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278f.", "author": "", "orig_id": 1412151}}, {"model": "metainfo.source", "pk": 232, "fields": {"orig_filename": "Komaromy_Ferenc_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415419}}, {"model": "metainfo.source", "pk": 233, "fields": {"orig_filename": "Schmid_Josef-Alois_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 277f.", "author": "", "orig_id": 1406404}}, {"model": "metainfo.source", "pk": 234, "fields": {"orig_filename": "Foglar_Ludwig_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421447}}, {"model": "metainfo.source", "pk": 235, "fields": {"orig_filename": "Schwarzenberg_Johann-Ii_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13", "author": "", "orig_id": 1439586}}, {"model": "metainfo.source", "pk": 236, "fields": {"orig_filename": "Rienoessl_Heinrich_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156", "author": "", "orig_id": 1407336}}, {"model": "metainfo.source", "pk": 237, "fields": {"orig_filename": "Koszta_Jozsef_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157", "author": "", "orig_id": 1416337}}, {"model": "metainfo.source", "pk": 238, "fields": {"orig_filename": "Schulz_Ferdinand_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 345", "author": "", "orig_id": 1419820}}, {"model": "metainfo.source", "pk": 239, "fields": {"orig_filename": "Grosz_Wilhelm_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419394}}, {"model": "metainfo.source", "pk": 240, "fields": {"orig_filename": "Schoen_Anton_1782_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 30", "author": "", "orig_id": 1405445}}, {"model": "metainfo.source", "pk": 241, "fields": {"orig_filename": "Lelli_Giovanni-Batt_1827_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412507}}, {"model": "metainfo.source", "pk": 242, "fields": {"orig_filename": "Hermann_Heinrich_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286f.", "author": "", "orig_id": 1420735}}, {"model": "metainfo.source", "pk": 243, "fields": {"orig_filename": "Perathoner_Anton_1864_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408094}}, {"model": "metainfo.source", "pk": 244, "fields": {"orig_filename": "Steiger-Amstein_Anton-David_1755_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 145", "author": "", "orig_id": 1428303}}, {"model": "metainfo.source", "pk": 245, "fields": {"orig_filename": "Lorinser_Karl-Ignaz_1796_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412207}}, {"model": "metainfo.source", "pk": 246, "fields": {"orig_filename": "Kofler_Ephraim_1811_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416314}}, {"model": "metainfo.source", "pk": 247, "fields": {"orig_filename": "Kunesch_Adalbert_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415762}}, {"model": "metainfo.source", "pk": 248, "fields": {"orig_filename": "Leybold_Heinrich-Gustav-Adolf_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411807}}, {"model": "metainfo.source", "pk": 249, "fields": {"orig_filename": "Kautsky_Hans_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415121}}, {"model": "metainfo.source", "pk": 250, "fields": {"orig_filename": "Rodler_Walther_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197", "author": "", "orig_id": 1407341}}, {"model": "metainfo.source", "pk": 251, "fields": {"orig_filename": "Tadra_Ferdinand_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 184f.", "author": "", "orig_id": 1422350}}, {"model": "metainfo.source", "pk": 252, "fields": {"orig_filename": "Jelinek_Hugo_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414241}}, {"model": "metainfo.source", "pk": 253, "fields": {"orig_filename": "Lunacek_Vladimir_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369f.", "author": "", "orig_id": 1411298}}, {"model": "metainfo.source", "pk": 254, "fields": {"orig_filename": "Krzisch_Josef-Friedrich_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308f.", "author": "", "orig_id": 1416645}}, {"model": "metainfo.source", "pk": 255, "fields": {"orig_filename": "Roller_Julius_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226", "author": "", "orig_id": 1407462}}, {"model": "metainfo.source", "pk": 256, "fields": {"orig_filename": "Marco_Josef_1781_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409382}}, {"model": "metainfo.source", "pk": 257, "fields": {"orig_filename": "Innerkofler_Veit_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37f.", "author": "", "orig_id": 1414586}}, {"model": "metainfo.source", "pk": 258, "fields": {"orig_filename": "Jaklic_Fran_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63f.", "author": "", "orig_id": 1414992}}, {"model": "metainfo.source", "pk": 259, "fields": {"orig_filename": "Gerl_Thaddaeus_1774_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421767}}, {"model": "metainfo.source", "pk": 260, "fields": {"orig_filename": "Schroeer_Rudolf_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411782}}, {"model": "metainfo.source", "pk": 261, "fields": {"orig_filename": "Schuster_Gustav_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 386f.", "author": "", "orig_id": 1420053}}, {"model": "metainfo.source", "pk": 262, "fields": {"orig_filename": "Tisza-Borosjenoe_Kalman_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 356f.", "author": "", "orig_id": 1423923}}, {"model": "metainfo.source", "pk": 263, "fields": {"orig_filename": "Stadler_Toni_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 76", "author": "", "orig_id": 1428975}}, {"model": "metainfo.source", "pk": 264, "fields": {"orig_filename": "Karvasy_Agoston_1809_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414782}}, {"model": "metainfo.source", "pk": 265, "fields": {"orig_filename": "Nagy-Somlyo_Franz_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410851}}, {"model": "metainfo.source", "pk": 266, "fields": {"orig_filename": "Soxhlet_Eugen__1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438506}}, {"model": "metainfo.source", "pk": 267, "fields": {"orig_filename": "Steller_Johann_1768_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 203f.", "author": "", "orig_id": 1429692}}, {"model": "metainfo.source", "pk": 268, "fields": {"orig_filename": "Perkonig_Josef-Friedrich_1890_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1470836}}, {"model": "metainfo.source", "pk": 269, "fields": {"orig_filename": "Malonyay_Dezsoe_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409008}}, {"model": "metainfo.source", "pk": 270, "fields": {"orig_filename": "Klemm_Joseph-Ferdinand_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396f.", "author": "", "orig_id": 1419193}}, {"model": "metainfo.source", "pk": 271, "fields": {"orig_filename": "Csorich-Monte-Creto_Anton_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417520}}, {"model": "metainfo.source", "pk": 272, "fields": {"orig_filename": "Gebauer_Franz-Xaver_1784_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421573}}, {"model": "metainfo.source", "pk": 273, "fields": {"orig_filename": "Rosmini-Serbati_Antonio_1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 259f.", "author": "", "orig_id": 1407594}}, {"model": "metainfo.source", "pk": 274, "fields": {"orig_filename": "Hetz_Anton_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417179}}, {"model": "metainfo.source", "pk": 275, "fields": {"orig_filename": "Strickner_Andreas_1863_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402", "author": "", "orig_id": 1432936}}, {"model": "metainfo.source", "pk": 276, "fields": {"orig_filename": "Schoeller_Gustav_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405411}}, {"model": "metainfo.source", "pk": 277, "fields": {"orig_filename": "Kurowski_Marie_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415936}}, {"model": "metainfo.source", "pk": 278, "fields": {"orig_filename": "Sorgato_Antonio_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431", "author": "", "orig_id": 1468243}}, {"model": "metainfo.source", "pk": 279, "fields": {"orig_filename": "Seuffert_Bernhard-Joseph-Luther_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198f.", "author": "", "orig_id": 1450890}}, {"model": "metainfo.source", "pk": 280, "fields": {"orig_filename": "Froehlich_Friedrich-Wilhelm_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420792}}, {"model": "metainfo.source", "pk": 281, "fields": {"orig_filename": "Meder_Eduard_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182f.", "author": "", "orig_id": 1413614}}, {"model": "metainfo.source", "pk": 282, "fields": {"orig_filename": "Kapaun_Franz_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218f.", "author": "", "orig_id": 1414426}}, {"model": "metainfo.source", "pk": 283, "fields": {"orig_filename": "Schlier_Johann-Ev_1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 204f.", "author": "", "orig_id": 1406456}}, {"model": "metainfo.source", "pk": 284, "fields": {"orig_filename": "Hauser_Franz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418597}}, {"model": "metainfo.source", "pk": 285, "fields": {"orig_filename": "Szabo_Endre_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 99", "author": "", "orig_id": 1455287}}, {"model": "metainfo.source", "pk": 286, "fields": {"orig_filename": "Beyschlag_Otto_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420077}}, {"model": "metainfo.source", "pk": 287, "fields": {"orig_filename": "Stubenberg_Joseph_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 436f.", "author": "", "orig_id": 1432740}}, {"model": "metainfo.source", "pk": 288, "fields": {"orig_filename": "Scholz-Benneburg_Franz_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 135f.", "author": "", "orig_id": 1412425}}, {"model": "metainfo.source", "pk": 289, "fields": {"orig_filename": "Haswell_John_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 206f.", "author": "", "orig_id": 1418485}}, {"model": "metainfo.source", "pk": 290, "fields": {"orig_filename": "Kaessmayer_Moriz_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169f.", "author": "", "orig_id": 1415115}}, {"model": "metainfo.source", "pk": 291, "fields": {"orig_filename": "Skoff_Primus_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327", "author": "", "orig_id": 1458861}}, {"model": "metainfo.source", "pk": 292, "fields": {"orig_filename": "Schrecker_Maximilian_1857_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 184", "author": "", "orig_id": 1411315}}, {"model": "metainfo.source", "pk": 293, "fields": {"orig_filename": "Motloch_Theodor_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413202}}, {"model": "metainfo.source", "pk": 294, "fields": {"orig_filename": "Kubitschek_Wilhelm_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 314f.", "author": "", "orig_id": 1415287}}, {"model": "metainfo.source", "pk": 295, "fields": {"orig_filename": "Neuhauser_Albert_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85f.", "author": "", "orig_id": 1408658}}, {"model": "metainfo.source", "pk": 296, "fields": {"orig_filename": "Spielmann_Alois_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1426788}}, {"model": "metainfo.source", "pk": 297, "fields": {"orig_filename": "Kolarsky_Antonin_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416518}}, {"model": "metainfo.source", "pk": 298, "fields": {"orig_filename": "Hessen-Homburg_Friedrich-Joseph-Ludwig-Karl-August_1769_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417099}}, {"model": "metainfo.source", "pk": 299, "fields": {"orig_filename": "Skene_Alfred_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 320f.", "author": "", "orig_id": 1458777}}, {"model": "metainfo.source", "pk": 300, "fields": {"orig_filename": "Linder_Josef_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412383}}, {"model": "metainfo.source", "pk": 301, "fields": {"orig_filename": "Schmedes_Erik_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 229", "author": "", "orig_id": 1406502}}, {"model": "metainfo.source", "pk": 302, "fields": {"orig_filename": "Brunner_Eduard_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420629}}, {"model": "metainfo.source", "pk": 303, "fields": {"orig_filename": "Salvagnini_Enrico_1836_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 397", "author": "", "orig_id": 1407933}}, {"model": "metainfo.source", "pk": 304, "fields": {"orig_filename": "Fernkorn_Anton-Dominik_1813_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420952}}, {"model": "metainfo.source", "pk": 305, "fields": {"orig_filename": "Marburg_Otto_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409302}}, {"model": "metainfo.source", "pk": 306, "fields": {"orig_filename": "Polic_Ladislav_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410605}}, {"model": "metainfo.source", "pk": 307, "fields": {"orig_filename": "Kudelka_Josef_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415369}}, {"model": "metainfo.source", "pk": 308, "fields": {"orig_filename": "Oss_Domenico_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 258f.", "author": "", "orig_id": 1409240}}, {"model": "metainfo.source", "pk": 309, "fields": {"orig_filename": "Perko_Ivan-Andrej_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408195}}, {"model": "metainfo.source", "pk": 310, "fields": {"orig_filename": "Groebner_Josef-Mathias_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419070}}, {"model": "metainfo.source", "pk": 311, "fields": {"orig_filename": "Hofmann_Paul_1798_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416823}}, {"model": "metainfo.source", "pk": 312, "fields": {"orig_filename": "Kaan-Albest_Jindrich_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161f.", "author": "", "orig_id": 1415021}}, {"model": "metainfo.source", "pk": 313, "fields": {"orig_filename": "Schweiger-Lerchenfeld_Amand_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 40f.", "author": "", "orig_id": 1439716}}, {"model": "metainfo.source", "pk": 314, "fields": {"orig_filename": "Kudernatsch_Vinzenz_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415370}}, {"model": "metainfo.source", "pk": 315, "fields": {"orig_filename": "Berlepsch_Franz_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74f.", "author": "", "orig_id": 1421210}}, {"model": "metainfo.source", "pk": 316, "fields": {"orig_filename": "Reichel_Karl-Anton_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29f.", "author": "", "orig_id": 1406800}}, {"model": "metainfo.source", "pk": 317, "fields": {"orig_filename": "Lavos_Josef_1807_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413046}}, {"model": "metainfo.source", "pk": 318, "fields": {"orig_filename": "Hecke_Ludwig_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234", "author": "", "orig_id": 1417361}}, {"model": "metainfo.source", "pk": 319, "fields": {"orig_filename": "Stolba_Josef_1846_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 310", "author": "", "orig_id": 1431030}}, {"model": "metainfo.source", "pk": 320, "fields": {"orig_filename": "Putzker_Albrecht_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349", "author": "", "orig_id": 1409516}}, {"model": "metainfo.source", "pk": 321, "fields": {"orig_filename": "Babukic_Vjekoslav_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420828}}, {"model": "metainfo.source", "pk": 322, "fields": {"orig_filename": "Sonndorfer_Rudolf_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 420", "author": "", "orig_id": 1438691}}, {"model": "metainfo.source", "pk": 323, "fields": {"orig_filename": "Ivekovic_Franjo_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48f.", "author": "", "orig_id": 1414757}}, {"model": "metainfo.source", "pk": 324, "fields": {"orig_filename": "Phillips_George_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 45", "author": "", "orig_id": 1410402}}, {"model": "metainfo.source", "pk": 325, "fields": {"orig_filename": "Pokorny_Alois_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160", "author": "", "orig_id": 1410349}}, {"model": "metainfo.source", "pk": 326, "fields": {"orig_filename": "Sauter_Anton-Eleutherius_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 445f.", "author": "", "orig_id": 1408043}}, {"model": "metainfo.source", "pk": 327, "fields": {"orig_filename": "Schwoiser_Eduard_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66", "author": "", "orig_id": 1440116}}, {"model": "metainfo.source", "pk": 328, "fields": {"orig_filename": "Kralik-Meyrswalden_Wilhelm_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 200", "author": "", "orig_id": 1415353}}, {"model": "metainfo.source", "pk": 329, "fields": {"orig_filename": "Moses_Leopold_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390f.", "author": "", "orig_id": 1413190}}, {"model": "metainfo.source", "pk": 330, "fields": {"orig_filename": "Meindl_Konrad_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195", "author": "", "orig_id": 1413790}}, {"model": "metainfo.source", "pk": 331, "fields": {"orig_filename": "Moser_Alois_1905_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385", "author": "", "orig_id": 1413107}}, {"model": "metainfo.source", "pk": 332, "fields": {"orig_filename": "Fuegner_Heinrich_1822_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420975}}, {"model": "metainfo.source", "pk": 333, "fields": {"orig_filename": "Kober_Leo_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411344}}, {"model": "metainfo.source", "pk": 334, "fields": {"orig_filename": "Martinez_August_1794_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 116f.", "author": "", "orig_id": 1408480}}, {"model": "metainfo.source", "pk": 335, "fields": {"orig_filename": "Mniszek-Tchorznicki_Aleksander_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332", "author": "", "orig_id": 1412459}}, {"model": "metainfo.source", "pk": 336, "fields": {"orig_filename": "Goldhammer_Leo_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23", "author": "", "orig_id": 1418348}}, {"model": "metainfo.source", "pk": 337, "fields": {"orig_filename": "Bruck_Karl-Ludwig_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420612}}, {"model": "metainfo.source", "pk": 338, "fields": {"orig_filename": "Rieger_Roman_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151f.", "author": "", "orig_id": 1407324}}, {"model": "metainfo.source", "pk": 339, "fields": {"orig_filename": "Lauer_Joseph_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48", "author": "", "orig_id": 1412961}}, {"model": "metainfo.source", "pk": 340, "fields": {"orig_filename": "Litta-Visconti-Arese_Giulio-Renato_1763_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250", "author": "", "orig_id": 1411369}}, {"model": "metainfo.source", "pk": 341, "fields": {"orig_filename": "Maier_Franz_1814_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422", "author": "", "orig_id": 1411953}}, {"model": "metainfo.source", "pk": 342, "fields": {"orig_filename": "Egg_Josef_1820_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420938}}, {"model": "metainfo.source", "pk": 343, "fields": {"orig_filename": "Schoenfeld_Adolf_1828_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 70", "author": "", "orig_id": 1405787}}, {"model": "metainfo.source", "pk": 344, "fields": {"orig_filename": "Schroeder_Artur_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 228f.", "author": "", "orig_id": 1411696}}, {"model": "metainfo.source", "pk": 345, "fields": {"orig_filename": "Merk_Josef_1795_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230", "author": "", "orig_id": 1412730}}, {"model": "metainfo.source", "pk": 346, "fields": {"orig_filename": "Kun_Bertalan_1817_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346f.", "author": "", "orig_id": 1415748}}, {"model": "metainfo.source", "pk": 347, "fields": {"orig_filename": "Hauser_Anton_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418595}}, {"model": "metainfo.source", "pk": 348, "fields": {"orig_filename": "Hron_Karl_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417591}}, {"model": "metainfo.source", "pk": 349, "fields": {"orig_filename": "Tepina_Lovro_1882_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 251", "author": "", "orig_id": 2168097}}, {"model": "metainfo.source", "pk": 350, "fields": {"orig_filename": "Herrmann_Leopold-Franz_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416984}}, {"model": "metainfo.source", "pk": 351, "fields": {"orig_filename": "Pakies_Jozef-Henryk_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 293f.", "author": "", "orig_id": 1408168}}, {"model": "metainfo.source", "pk": 352, "fields": {"orig_filename": "Korn_Maximilian_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129f.", "author": "", "orig_id": 1411921}}, {"model": "metainfo.source", "pk": 353, "fields": {"orig_filename": "Caffi_Francesco_1778_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416761}}, {"model": "metainfo.source", "pk": 354, "fields": {"orig_filename": "Nizalowski_Franciszek_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409217}}, {"model": "metainfo.source", "pk": 355, "fields": {"orig_filename": "Hoenig_Franz_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417932}}, {"model": "metainfo.source", "pk": 356, "fields": {"orig_filename": "Presl_Jan-Svatopluk_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 267", "author": "", "orig_id": 1410065}}, {"model": "metainfo.source", "pk": 357, "fields": {"orig_filename": "Spagnoli_Antonio_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 445", "author": "", "orig_id": 1426809}}, {"model": "metainfo.source", "pk": 358, "fields": {"orig_filename": "Eberhart_Ernest_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422159}}, {"model": "metainfo.source", "pk": 359, "fields": {"orig_filename": "Meixner_Paul-Hermann_1891_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206", "author": "", "orig_id": 1413886}}, {"model": "metainfo.source", "pk": 360, "fields": {"orig_filename": "Kalic_Dimitrije-Mita_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414094}}, {"model": "metainfo.source", "pk": 361, "fields": {"orig_filename": "Gappmayr_Peter_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421371}}, {"model": "metainfo.source", "pk": 362, "fields": {"orig_filename": "Kirchl_Adolf_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414721}}, {"model": "metainfo.source", "pk": 363, "fields": {"orig_filename": "Szarnovszky_Ferenc_1863_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 118f.", "author": "", "orig_id": 1435900}}, {"model": "metainfo.source", "pk": 364, "fields": {"orig_filename": "Silberer_Franz_1871_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 260f.", "author": "", "orig_id": 1458072}}, {"model": "metainfo.source", "pk": 365, "fields": {"orig_filename": "Schwarzenberg-Czerny_Franciszek_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 26", "author": "", "orig_id": 1439602}}, {"model": "metainfo.source", "pk": 366, "fields": {"orig_filename": "Sestak_Adalbert_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 196", "author": "", "orig_id": 1450884}}, {"model": "metainfo.source", "pk": 367, "fields": {"orig_filename": "Okunevskyj_Jaroslaw_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408868}}, {"model": "metainfo.source", "pk": 368, "fields": {"orig_filename": "Perathoner_Johann_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411f.", "author": "", "orig_id": 1408095}}, {"model": "metainfo.source", "pk": 369, "fields": {"orig_filename": "Hebbel_Christian-Friedrich_1813_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229ff.", "author": "", "orig_id": 1417352}}, {"model": "metainfo.source", "pk": 370, "fields": {"orig_filename": "Frank_Gustav_1807_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421643}}, {"model": "metainfo.source", "pk": 371, "fields": {"orig_filename": "Gams_Eduard_1874_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421281}}, {"model": "metainfo.source", "pk": 372, "fields": {"orig_filename": "Perini_Carlo_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 420f.", "author": "", "orig_id": 1408191}}, {"model": "metainfo.source", "pk": 373, "fields": {"orig_filename": "Morandell_Josef-Valentin_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 366", "author": "", "orig_id": 1412840}}, {"model": "metainfo.source", "pk": 374, "fields": {"orig_filename": "Barak_Josef_1833_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405703}}, {"model": "metainfo.source", "pk": 375, "fields": {"orig_filename": "Leitenberger_Franz_1761_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 112", "author": "", "orig_id": 1413844}}, {"model": "metainfo.source", "pk": 376, "fields": {"orig_filename": "Kovacs_Edgar_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416446}}, {"model": "metainfo.source", "pk": 377, "fields": {"orig_filename": "Jakab_Elek_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414926}}, {"model": "metainfo.source", "pk": 378, "fields": {"orig_filename": "Steyskal_Karl-Franz_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245", "author": "", "orig_id": 1429359}}, {"model": "metainfo.source", "pk": 379, "fields": {"orig_filename": "Seefehlner_Egon-Ewald_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 97f.", "author": "", "orig_id": 1439335}}, {"model": "metainfo.source", "pk": 380, "fields": {"orig_filename": "Klein_Franz_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378", "author": "", "orig_id": 1418778}}, {"model": "metainfo.source", "pk": 381, "fields": {"orig_filename": "Soxhlet_Franz_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 438", "author": "", "orig_id": 1438508}}, {"model": "metainfo.source", "pk": 382, "fields": {"orig_filename": "Krenner_Jozsef-Sandor_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416013}}, {"model": "metainfo.source", "pk": 383, "fields": {"orig_filename": "Sava_Karl_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447", "author": "", "orig_id": 1408046}}, {"model": "metainfo.source", "pk": 384, "fields": {"orig_filename": "Halban_Hans_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157f.", "author": "", "orig_id": 1419254}}, {"model": "metainfo.source", "pk": 385, "fields": {"orig_filename": "Kowarz_Wilhelm-Maria_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416610}}, {"model": "metainfo.source", "pk": 386, "fields": {"orig_filename": "Herzfelder_Henriette_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417077}}, {"model": "metainfo.source", "pk": 387, "fields": {"orig_filename": "Stoessl_Otto_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298", "author": "", "orig_id": 1431896}}, {"model": "metainfo.source", "pk": 388, "fields": {"orig_filename": "Issleib_Ludwig_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414744}}, {"model": "metainfo.source", "pk": 389, "fields": {"orig_filename": "Lindenthaler_Michael_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412382}}, {"model": "metainfo.source", "pk": 390, "fields": {"orig_filename": "Spitzer_Josef-Anton_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 40f.", "author": "", "orig_id": 1429173}}, {"model": "metainfo.source", "pk": 391, "fields": {"orig_filename": "Krauss_Hans-Nikolaus_1861_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415723}}, {"model": "metainfo.source", "pk": 392, "fields": {"orig_filename": "Luksch_Richard-Joseph_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 367", "author": "", "orig_id": 1411289}}, {"model": "metainfo.source", "pk": 393, "fields": {"orig_filename": "Hatvany-Deutsch_Josef_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418493}}, {"model": "metainfo.source", "pk": 394, "fields": {"orig_filename": "Oberziner_Lodovico_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408585}}, {"model": "metainfo.source", "pk": 395, "fields": {"orig_filename": "Hausotter_Johann_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418680}}, {"model": "metainfo.source", "pk": 396, "fields": {"orig_filename": "Thornton_Jonathan_1776_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311", "author": "", "orig_id": 2264957}}, {"model": "metainfo.source", "pk": 397, "fields": {"orig_filename": "Thoroczkai-Wigand_Ede_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311f.", "author": "", "orig_id": 2175396}}, {"model": "metainfo.source", "pk": 398, "fields": {"orig_filename": "Thorsch_Alexander_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 312f.", "author": "", "orig_id": 1424538}}, {"model": "metainfo.source", "pk": 399, "fields": {"orig_filename": "Thorsch_Alphons_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313", "author": "", "orig_id": 1414481}}, {"model": "metainfo.source", "pk": 400, "fields": {"orig_filename": "Thorsch_David_1832_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313", "author": "", "orig_id": 2247326}}, {"model": "metainfo.source", "pk": 401, "fields": {"orig_filename": "Thorsch_Ernestine_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 2281795}}, {"model": "metainfo.source", "pk": 402, "fields": {"orig_filename": "Thorsch_Koppelmann_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313f.", "author": "", "orig_id": 2262624}}, {"model": "metainfo.source", "pk": 403, "fields": {"orig_filename": "Thorsch_Otto_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 1424541}}, {"model": "metainfo.source", "pk": 404, "fields": {"orig_filename": "Thorsch_Philipp_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 1424542}}, {"model": "metainfo.source", "pk": 405, "fields": {"orig_filename": "Thuemen_Felix_1839_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314f.", "author": "", "orig_id": 1424543}}, {"model": "metainfo.source", "pk": 406, "fields": {"orig_filename": "Thuerheim_Andreas-Joseph_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 315f.", "author": "", "orig_id": 1424545}}, {"model": "metainfo.source", "pk": 407, "fields": {"orig_filename": "Thuerheim_Louise_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 316", "author": "", "orig_id": 1424546}}, {"model": "metainfo.source", "pk": 408, "fields": {"orig_filename": "Thugut_Franz-Maria_1736_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 316f.", "author": "", "orig_id": 1424578}}, {"model": "metainfo.source", "pk": 409, "fields": {"orig_filename": "Thuille_Ludwig_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 317f.", "author": "", "orig_id": 1424581}}, {"model": "metainfo.source", "pk": 410, "fields": {"orig_filename": "Thullie_Maksymilian-Marceli_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 318f.", "author": "", "orig_id": 1424583}}, {"model": "metainfo.source", "pk": 411, "fields": {"orig_filename": "Thumser_Viktor_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320", "author": "", "orig_id": 1424631}}, {"model": "metainfo.source", "pk": 412, "fields": {"orig_filename": "Thum_Anton_1788_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 319", "author": "", "orig_id": 1424586}}, {"model": "metainfo.source", "pk": 413, "fields": {"orig_filename": "Thum_Theodor_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 319f.", "author": "", "orig_id": 1449321}}, {"model": "metainfo.source", "pk": 414, "fields": {"orig_filename": "Thun-Hohenstein-Salm-Reifferscheid_Christiane_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 329f.", "author": "", "orig_id": 1423753}}, {"model": "metainfo.source", "pk": 415, "fields": {"orig_filename": "Thun-Hohenstein-Salm-Reifferscheid_Oswald_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 330f.", "author": "", "orig_id": 1423714}}, {"model": "metainfo.source", "pk": 416, "fields": {"orig_filename": "Thun-Hohenstein_Franz-Anton_1809_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 323f.", "author": "", "orig_id": 1424114}}, {"model": "metainfo.source", "pk": 417, "fields": {"orig_filename": "Thun-Hohenstein_Franz_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 321f.", "author": "", "orig_id": 1424013}}, {"model": "metainfo.source", "pk": 418, "fields": {"orig_filename": "Thun-Hohenstein_Franz_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 322f.", "author": "", "orig_id": 1424117}}, {"model": "metainfo.source", "pk": 419, "fields": {"orig_filename": "Thun-Hohenstein_Friedrich_1810_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 324", "author": "", "orig_id": 1424118}}, {"model": "metainfo.source", "pk": 420, "fields": {"orig_filename": "Thun-Hohenstein_Galeazzo-Maria-Fra_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 324f.", "author": "", "orig_id": 1424153}}, {"model": "metainfo.source", "pk": 421, "fields": {"orig_filename": "Thun-Hohenstein_Guido_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 325", "author": "", "orig_id": 1424154}}, {"model": "metainfo.source", "pk": 422, "fields": {"orig_filename": "Thun-Hohenstein_Jaroslav_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 325f.", "author": "", "orig_id": 1443096}}, {"model": "metainfo.source", "pk": 423, "fields": {"orig_filename": "Thun-Hohenstein_Karl_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 326", "author": "", "orig_id": 1456388}}, {"model": "metainfo.source", "pk": 424, "fields": {"orig_filename": "Thun-Hohenstein_Leopold-Leonhard_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 327f.", "author": "", "orig_id": 1424149}}, {"model": "metainfo.source", "pk": 425, "fields": {"orig_filename": "Thun-Hohenstein_Leo_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 326f.", "author": "", "orig_id": 1424159}}, {"model": "metainfo.source", "pk": 426, "fields": {"orig_filename": "Thun-Hohenstein_Maximilian_1887_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 328f.", "author": "", "orig_id": 1424560}}, {"model": "metainfo.source", "pk": 427, "fields": {"orig_filename": "Thun-Hohenstein_Sigmund_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 329", "author": "", "orig_id": 1423752}}, {"model": "metainfo.source", "pk": 428, "fields": {"orig_filename": "Thurn-Taxis_Alexander_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331", "author": "", "orig_id": 1448599}}, {"model": "metainfo.source", "pk": 429, "fields": {"orig_filename": "Thurn-Taxis_Emerich_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331", "author": "", "orig_id": 1423762}}, {"model": "metainfo.source", "pk": 430, "fields": {"orig_filename": "Thurn-Taxis_Friedrich-Hannibal_1799_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331f.", "author": "", "orig_id": 1423763}}, {"model": "metainfo.source", "pk": 431, "fields": {"orig_filename": "Thurn-Taxis_Wilhelm_1801_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 332", "author": "", "orig_id": 1423811}}, {"model": "metainfo.source", "pk": 432, "fields": {"orig_filename": "Thurn-Valsassina-Como-Vercelli_Georg_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 333", "author": "", "orig_id": 1423860}}, {"model": "metainfo.source", "pk": 433, "fields": {"orig_filename": "Thurn-Valsassina_Gustav_1836_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 332f.", "author": "", "orig_id": 1423816}}, {"model": "metainfo.source", "pk": 434, "fields": {"orig_filename": "Thurnes_Heinrich_1833_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 333f.", "author": "", "orig_id": 1447456}}, {"model": "metainfo.source", "pk": 435, "fields": {"orig_filename": "Thurneyssen_Friedrich_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 334", "author": "", "orig_id": 1423866}}, {"model": "metainfo.source", "pk": 436, "fields": {"orig_filename": "Thurnher_Johann_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 334f.", "author": "", "orig_id": 1423869}}, {"model": "metainfo.source", "pk": 437, "fields": {"orig_filename": "Thurnher_Martin_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 335", "author": "", "orig_id": 1423870}}, {"model": "metainfo.source", "pk": 438, "fields": {"orig_filename": "Thurwieser_Peter-Karl_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 335f.", "author": "", "orig_id": 1423912}}, {"model": "metainfo.source", "pk": 439, "fields": {"orig_filename": "Thury_Zoltan_1870_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 336", "author": "", "orig_id": 2195847}}, {"model": "metainfo.source", "pk": 440, "fields": {"orig_filename": "Tichatschek_Joseph-Alois_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 336f.", "author": "", "orig_id": 1423956}}, {"model": "metainfo.source", "pk": 441, "fields": {"orig_filename": "Tichy_Hans_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 337f.", "author": "", "orig_id": 1423411}}, {"model": "metainfo.source", "pk": 442, "fields": {"orig_filename": "Tichy_Karol-Maria-Jozef_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 338", "author": "", "orig_id": 2166155}}, {"model": "metainfo.source", "pk": 443, "fields": {"orig_filename": "Tieber_Ben_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 338f.", "author": "", "orig_id": 1415068}}, {"model": "metainfo.source", "pk": 444, "fields": {"orig_filename": "Tiefenbacher_Ludwig-E_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 339", "author": "", "orig_id": 1423439}}, {"model": "metainfo.source", "pk": 445, "fields": {"orig_filename": "Tiefenthaler_Paula_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 339f.", "author": "", "orig_id": 1423504}}, {"model": "metainfo.source", "pk": 446, "fields": {"orig_filename": "Tieftrunk_Karel_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 340", "author": "", "orig_id": 1423505}}, {"model": "metainfo.source", "pk": 447, "fields": {"orig_filename": "Tietze_Emil_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 341f.", "author": "", "orig_id": 1423546}}, {"model": "metainfo.source", "pk": 448, "fields": {"orig_filename": "Tietz_Karl_1831_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 341", "author": "", "orig_id": 1423542}}, {"model": "metainfo.source", "pk": 449, "fields": {"orig_filename": "Tihanyi_Kalman_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 342f.", "author": "", "orig_id": 2195874}}, {"model": "metainfo.source", "pk": 450, "fields": {"orig_filename": "Tihanyi_Lajos_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 343", "author": "", "orig_id": 1423577}}, {"model": "metainfo.source", "pk": 451, "fields": {"orig_filename": "Tilgner_Friedrich-Rudolf_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 343f.", "author": "", "orig_id": 1423608}}, {"model": "metainfo.source", "pk": 452, "fields": {"orig_filename": "Tilgner_Victor-Oskar_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 344f.", "author": "", "orig_id": 1423685}}, {"model": "metainfo.source", "pk": 453, "fields": {"orig_filename": "Till-Kostryn_Ernst_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 346f.", "author": "", "orig_id": 2245535}}, {"model": "metainfo.source", "pk": 454, "fields": {"orig_filename": "Tiller-Turnfort_Karl_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348", "author": "", "orig_id": 1423728}}, {"model": "metainfo.source", "pk": 455, "fields": {"orig_filename": "Tiller_Karel_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348", "author": "", "orig_id": 1423725}}, {"model": "metainfo.source", "pk": 456, "fields": {"orig_filename": "Tille_Vaclav_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 347f.", "author": "", "orig_id": 1472596}}, {"model": "metainfo.source", "pk": 457, "fields": {"orig_filename": "Till_Johann_1827_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 345f.", "author": "", "orig_id": 1447460}}, {"model": "metainfo.source", "pk": 458, "fields": {"orig_filename": "Till_Leopold_1830_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 345f.", "author": "", "orig_id": 1423718}}, {"model": "metainfo.source", "pk": 459, "fields": {"orig_filename": "Till_Vinzenz_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 346", "author": "", "orig_id": 1423720}}, {"model": "metainfo.source", "pk": 460, "fields": {"orig_filename": "Tilser_Frantisek_1825_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348f.", "author": "", "orig_id": 1455775}}, {"model": "metainfo.source", "pk": 461, "fields": {"orig_filename": "Timar_Szaniszlo_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 349", "author": "", "orig_id": 1454709}}, {"model": "metainfo.source", "pk": 462, "fields": {"orig_filename": "Timeus_Ruggero_1892_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 349f.", "author": "", "orig_id": 2168227}}, {"model": "metainfo.source", "pk": 463, "fields": {"orig_filename": "Timon-Schmerrhoff-Szedlicsna_Akos_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 350", "author": "", "orig_id": 1458903}}, {"model": "metainfo.source", "pk": 464, "fields": {"orig_filename": "Tinkhauser_Johann-Nepomuk_1787_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 351", "author": "", "orig_id": 1423820}}, {"model": "metainfo.source", "pk": 465, "fields": {"orig_filename": "Tinter-Marienwil_Wilhelm_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 351f.", "author": "", "orig_id": 1423823}}, {"model": "metainfo.source", "pk": 466, "fields": {"orig_filename": "Tinti_Karl-Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 352", "author": "", "orig_id": 1423825}}, {"model": "metainfo.source", "pk": 467, "fields": {"orig_filename": "Tiring_Victor_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353", "author": "", "orig_id": 2246184}}, {"model": "metainfo.source", "pk": 468, "fields": {"orig_filename": "Tirka_Demeter-Theodor_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353", "author": "", "orig_id": 1423831}}, {"model": "metainfo.source", "pk": 469, "fields": {"orig_filename": "Tischer_Frantisek_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354", "author": "", "orig_id": 1423873}}, {"model": "metainfo.source", "pk": 470, "fields": {"orig_filename": "Tischer_Frantisek_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353f.", "author": "", "orig_id": 1423874}}, {"model": "metainfo.source", "pk": 471, "fields": {"orig_filename": "Tischler_Ludwig_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354", "author": "", "orig_id": 1423880}}, {"model": "metainfo.source", "pk": 472, "fields": {"orig_filename": "Tiso_Jozef_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354ff.", "author": "", "orig_id": 1423884}}, {"model": "metainfo.source", "pk": 473, "fields": {"orig_filename": "Tisza-Borosjenoe-Szeged_Istvan_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 357f.", "author": "", "orig_id": 1423886}}, {"model": "metainfo.source", "pk": 474, "fields": {"orig_filename": "Titl_Anton-Emil_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 358", "author": "", "orig_id": 1423926}}, {"model": "metainfo.source", "pk": 475, "fields": {"orig_filename": "Titta_Wenzel_1863_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 359", "author": "", "orig_id": 1423928}}, {"model": "metainfo.source", "pk": 476, "fields": {"orig_filename": "Tkac_Jaroslav_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 359f.", "author": "", "orig_id": 2172718}}, {"model": "metainfo.source", "pk": 477, "fields": {"orig_filename": "Tkany_Wilhelm_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 360", "author": "", "orig_id": 1423414}}, {"model": "metainfo.source", "pk": 478, "fields": {"orig_filename": "Tluchor_Alois_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 360f.", "author": "", "orig_id": 1423416}}, {"model": "metainfo.source", "pk": 479, "fields": {"orig_filename": "Tobiasek_Stanislav_1874_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 361", "author": "", "orig_id": 1423420}}, {"model": "metainfo.source", "pk": 480, "fields": {"orig_filename": "Tobner_Adolf_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 361f.", "author": "", "orig_id": 1423449}}, {"model": "metainfo.source", "pk": 481, "fields": {"orig_filename": "Todesco_Eduard_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 362f.", "author": "", "orig_id": 1444900}}, {"model": "metainfo.source", "pk": 482, "fields": {"orig_filename": "Todesco_Hermann_1791_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 363", "author": "", "orig_id": 1423647}}, {"model": "metainfo.source", "pk": 483, "fields": {"orig_filename": "Todesco_Max_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 363f.", "author": "", "orig_id": 1423648}}, {"model": "metainfo.source", "pk": 484, "fields": {"orig_filename": "Todesco_Sophie_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 364f.", "author": "", "orig_id": 1423651}}, {"model": "metainfo.source", "pk": 485, "fields": {"orig_filename": "Toegl_Martin-Albert_1753_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 365", "author": "", "orig_id": 1423660}}, {"model": "metainfo.source", "pk": 486, "fields": {"orig_filename": "Toelg_Franz_1877_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 365f.", "author": "", "orig_id": 1430741}}, {"model": "metainfo.source", "pk": 487, "fields": {"orig_filename": "Toelk_Josef_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1423658}}, {"model": "metainfo.source", "pk": 488, "fields": {"orig_filename": "Toeltenyi_Szaniszlo_1795_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366f.", "author": "", "orig_id": 1455930}}, {"model": "metainfo.source", "pk": 489, "fields": {"orig_filename": "Toemoerkeny_Istvan_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 367f.", "author": "", "orig_id": 1458604}}, {"model": "metainfo.source", "pk": 490, "fields": {"orig_filename": "Toepler_August-Joseph_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 368", "author": "", "orig_id": 1423694}}, {"model": "metainfo.source", "pk": 491, "fields": {"orig_filename": "Toeply_Robert_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 368f.", "author": "", "orig_id": 1423697}}, {"model": "metainfo.source", "pk": 492, "fields": {"orig_filename": "Tersztyanszky-Nadas_Karl_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 255f.", "author": "", "orig_id": 1424314}}, {"model": "metainfo.source", "pk": 493, "fields": {"orig_filename": "Terzky_Karl-August_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 256", "author": "", "orig_id": 1424313}}, {"model": "metainfo.source", "pk": 494, "fields": {"orig_filename": "Tesar_Frantisek_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 256f.", "author": "", "orig_id": 1452815}}, {"model": "metainfo.source", "pk": 495, "fields": {"orig_filename": "Teschner_Richard-Heinrich_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257ff.", "author": "", "orig_id": 1424389}}, {"model": "metainfo.source", "pk": 496, "fields": {"orig_filename": "Tesla_Nikola_1856_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 259f.", "author": "", "orig_id": 1424431}}, {"model": "metainfo.source", "pk": 497, "fields": {"orig_filename": "Tesnohlidek_Rudolf_1882_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 260", "author": "", "orig_id": 2173405}}, {"model": "metainfo.source", "pk": 498, "fields": {"orig_filename": "Tessedik_Ferenc_1800_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261", "author": "", "orig_id": 1451717}}, {"model": "metainfo.source", "pk": 499, "fields": {"orig_filename": "Tessedik_Samuel-Iii_1777_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261", "author": "", "orig_id": 1451723}}, {"model": "metainfo.source", "pk": 500, "fields": {"orig_filename": "Tessedik_Samuel-Ii_1742_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 260f.", "author": "", "orig_id": 1451722}}, {"model": "metainfo.source", "pk": 501, "fields": {"orig_filename": "Tessenow_Heinrich_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261f.", "author": "", "orig_id": 1424438}}, {"model": "metainfo.source", "pk": 502, "fields": {"orig_filename": "Testa_Bartholomaeus-Iii_1804_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262", "author": "", "orig_id": 1451728}}, {"model": "metainfo.source", "pk": 503, "fields": {"orig_filename": "Testa_Heinrich_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262f.", "author": "", "orig_id": 1424467}}, {"model": "metainfo.source", "pk": 504, "fields": {"orig_filename": "Testa_Heinrich_1821_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 1451726}}, {"model": "metainfo.source", "pk": 505, "fields": {"orig_filename": "Testa_Karl_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262", "author": "", "orig_id": 1451731}}, {"model": "metainfo.source", "pk": 506, "fields": {"orig_filename": "Tetmajer_Ludwig_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263f.", "author": "", "orig_id": 1424470}}, {"model": "metainfo.source", "pk": 507, "fields": {"orig_filename": "Tetmajer_Wlodzimierz_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 264f.", "author": "", "orig_id": 2167036}}, {"model": "metainfo.source", "pk": 508, "fields": {"orig_filename": "Tettenborn_Friedrich-Karl_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 265f.", "author": "", "orig_id": 1424472}}, {"model": "metainfo.source", "pk": 509, "fields": {"orig_filename": "Teuber_Emma_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266", "author": "", "orig_id": 2171732}}, {"model": "metainfo.source", "pk": 510, "fields": {"orig_filename": "Teuber_Josef_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 267f.", "author": "", "orig_id": 1424476}}, {"model": "metainfo.source", "pk": 511, "fields": {"orig_filename": "Teuber_Maurus_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 267", "author": "", "orig_id": 2202195}}, {"model": "metainfo.source", "pk": 512, "fields": {"orig_filename": "Teuber_Moritz_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269", "author": "", "orig_id": 1424477}}, {"model": "metainfo.source", "pk": 513, "fields": {"orig_filename": "Teuber_Oskar-Karl_1852_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 268", "author": "", "orig_id": 1424478}}, {"model": "metainfo.source", "pk": 514, "fields": {"orig_filename": "Teuber_Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269", "author": "", "orig_id": 1424516}}, {"model": "metainfo.source", "pk": 515, "fields": {"orig_filename": "Teuchert-Kauffmann-Traunsteinburg_Friedrich_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 270", "author": "", "orig_id": 1424517}}, {"model": "metainfo.source", "pk": 516, "fields": {"orig_filename": "Teuchert_Friedrich_1797_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269f.", "author": "", "orig_id": 1451793}}, {"model": "metainfo.source", "pk": 517, "fields": {"orig_filename": "Teuffenbach-Tiefenbach-Masswegg_Albin_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 270f.", "author": "", "orig_id": 1424523}}, {"model": "metainfo.source", "pk": 518, "fields": {"orig_filename": "Teutsch_Friedrich_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 271", "author": "", "orig_id": 1424524}}, {"model": "metainfo.source", "pk": 519, "fields": {"orig_filename": "Teutsch_Georg-Daniel_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 271f.", "author": "", "orig_id": 1422743}}, {"model": "metainfo.source", "pk": 520, "fields": {"orig_filename": "Teweles_Heinrich_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 273f.", "author": "", "orig_id": 1424605}}, {"model": "metainfo.source", "pk": 521, "fields": {"orig_filename": "Tewele_Franz_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 272f.", "author": "", "orig_id": 1424604}}, {"model": "metainfo.source", "pk": 522, "fields": {"orig_filename": "Tewes_August_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274", "author": "", "orig_id": 1424606}}, {"model": "metainfo.source", "pk": 523, "fields": {"orig_filename": "Teyber_Anton_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274f.", "author": "", "orig_id": 1424608}}, {"model": "metainfo.source", "pk": 524, "fields": {"orig_filename": "Teyber_Eleonora_1789_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274f.", "author": "", "orig_id": 1431988}}, {"model": "metainfo.source", "pk": 525, "fields": {"orig_filename": "Teyber_Elisabeth_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 1448326}}, {"model": "metainfo.source", "pk": 526, "fields": {"orig_filename": "Teyber_Elisabeth_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275", "author": "", "orig_id": 2182812}}, {"model": "metainfo.source", "pk": 527, "fields": {"orig_filename": "Teyber_Maria-Barbara-Francisca_1750_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 2281460}}, {"model": "metainfo.source", "pk": 528, "fields": {"orig_filename": "Teyber_Therese_1760_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 1448256}}, {"model": "metainfo.source", "pk": 529, "fields": {"orig_filename": "Tezner_Friedrich_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 276", "author": "", "orig_id": 1424609}}, {"model": "metainfo.source", "pk": 530, "fields": {"orig_filename": "Thaisz_Lajos_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 276f.", "author": "", "orig_id": 2195763}}, {"model": "metainfo.source", "pk": 531, "fields": {"orig_filename": "Thalberg_Sigismund_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277", "author": "", "orig_id": 1424641}}, {"model": "metainfo.source", "pk": 532, "fields": {"orig_filename": "Thaler_Andreas_1883_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277f.", "author": "", "orig_id": 1424643}}, {"model": "metainfo.source", "pk": 533, "fields": {"orig_filename": "Thaler_Franz-Christian_1759_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 278f.", "author": "", "orig_id": 1447652}}, {"model": "metainfo.source", "pk": 534, "fields": {"orig_filename": "Thaler_Josef_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 279", "author": "", "orig_id": 1424648}}, {"model": "metainfo.source", "pk": 535, "fields": {"orig_filename": "Thaler_Karl_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 279f.", "author": "", "orig_id": 1424680}}, {"model": "metainfo.source", "pk": 536, "fields": {"orig_filename": "Thaler_Rafael_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 280", "author": "", "orig_id": 1424682}}, {"model": "metainfo.source", "pk": 537, "fields": {"orig_filename": "Thalhammer_Janos_1847_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 280f.", "author": "", "orig_id": 2200131}}, {"model": "metainfo.source", "pk": 538, "fields": {"orig_filename": "Thaller_Kathi_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281", "author": "", "orig_id": 1424048}}, {"model": "metainfo.source", "pk": 539, "fields": {"orig_filename": "Thaller_Willi_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281f.", "author": "", "orig_id": 1423997}}, {"model": "metainfo.source", "pk": 540, "fields": {"orig_filename": "Thalloczy_Lajos_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 282f.", "author": "", "orig_id": 1424091}}, {"model": "metainfo.source", "pk": 541, "fields": {"orig_filename": "Thalmayr_Franz_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 283f.", "author": "", "orig_id": 1424050}}, {"model": "metainfo.source", "pk": 542, "fields": {"orig_filename": "Thaly_Kalman_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 284", "author": "", "orig_id": 1424093}}, {"model": "metainfo.source", "pk": 543, "fields": {"orig_filename": "Thaly_Zsigmond_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 284f.", "author": "", "orig_id": 1452118}}, {"model": "metainfo.source", "pk": 544, "fields": {"orig_filename": "Tham_Karel-Ignac_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 285f.", "author": "", "orig_id": 1452120}}, {"model": "metainfo.source", "pk": 545, "fields": {"orig_filename": "Tham_Vaclav_1765_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 285f.", "author": "", "orig_id": 1424094}}, {"model": "metainfo.source", "pk": 546, "fields": {"orig_filename": "Than-Nemesapat_Karoly_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 286f.", "author": "", "orig_id": 1424131}}, {"model": "metainfo.source", "pk": 547, "fields": {"orig_filename": "Than_Mor_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 286", "author": "", "orig_id": 1424095}}, {"model": "metainfo.source", "pk": 548, "fields": {"orig_filename": "Thausing_Moriz_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 287f.", "author": "", "orig_id": 1424137}}, {"model": "metainfo.source", "pk": 549, "fields": {"orig_filename": "Theer_Adolf_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288", "author": "", "orig_id": 1424141}}, {"model": "metainfo.source", "pk": 550, "fields": {"orig_filename": "Theer_Albert_1815_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288", "author": "", "orig_id": 1424181}}, {"model": "metainfo.source", "pk": 551, "fields": {"orig_filename": "Theer_Otakar_1880_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288f.", "author": "", "orig_id": 1424182}}, {"model": "metainfo.source", "pk": 552, "fields": {"orig_filename": "Theer_Robert_1808_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 289", "author": "", "orig_id": 1424183}}, {"model": "metainfo.source", "pk": 553, "fields": {"orig_filename": "Thek-Kisnarda_Endre_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 289f.", "author": "", "orig_id": 2195823}}, {"model": "metainfo.source", "pk": 554, "fields": {"orig_filename": "Thenen_Josef_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 290", "author": "", "orig_id": 1424360}}, {"model": "metainfo.source", "pk": 555, "fields": {"orig_filename": "Thenen_Julie_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 291", "author": "", "orig_id": 1424361}}, {"model": "metainfo.source", "pk": 556, "fields": {"orig_filename": "Thern_Karl_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 291f.", "author": "", "orig_id": 1424363}}, {"model": "metainfo.source", "pk": 557, "fields": {"orig_filename": "Thern_Louis_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424392}}, {"model": "metainfo.source", "pk": 558, "fields": {"orig_filename": "Thern_Wilhelm_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424393}}, {"model": "metainfo.source", "pk": 559, "fields": {"orig_filename": "Theuer_Max_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424398}}, {"model": "metainfo.source", "pk": 560, "fields": {"orig_filename": "Thewrewk-Ponor_Emil_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292f.", "author": "", "orig_id": 1455990}}, {"model": "metainfo.source", "pk": 561, "fields": {"orig_filename": "Thewrewk-Ponor_Jozsef_1793_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 293", "author": "", "orig_id": 1456041}}, {"model": "metainfo.source", "pk": 562, "fields": {"orig_filename": "Theyer_Franz-Seraphin_1809_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 294", "author": "", "orig_id": 1424403}}, {"model": "metainfo.source", "pk": 563, "fields": {"orig_filename": "Theyer_Leopold_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 294f.", "author": "", "orig_id": 1440559}}, {"model": "metainfo.source", "pk": 564, "fields": {"orig_filename": "Theyer_Theodor_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 295", "author": "", "orig_id": 1424404}}, {"model": "metainfo.source", "pk": 565, "fields": {"orig_filename": "Theyer_Theodor_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 295", "author": "", "orig_id": 1424405}}, {"model": "metainfo.source", "pk": 566, "fields": {"orig_filename": "Thiele_Franz_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 296f.", "author": "", "orig_id": 1424448}}, {"model": "metainfo.source", "pk": 567, "fields": {"orig_filename": "Thiele_Friedrich_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 297", "author": "", "orig_id": 1424450}}, {"model": "metainfo.source", "pk": 568, "fields": {"orig_filename": "Thielisch_Johann-Christian_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 297", "author": "", "orig_id": 1424483}}, {"model": "metainfo.source", "pk": 569, "fields": {"orig_filename": "Thiel_Viktor_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 296", "author": "", "orig_id": 1424444}}, {"model": "metainfo.source", "pk": 570, "fields": {"orig_filename": "Thienemann_Otto_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 298", "author": "", "orig_id": 1424528}}, {"model": "metainfo.source", "pk": 571, "fields": {"orig_filename": "Thimig_Hugo_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 298f.", "author": "", "orig_id": 1424652}}, {"model": "metainfo.source", "pk": 572, "fields": {"orig_filename": "Thinnfeld_Ferdinand_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 299f.", "author": "", "orig_id": 1456121}}, {"model": "metainfo.source", "pk": 573, "fields": {"orig_filename": "Thirring_Gusztav-Adolf_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 300", "author": "", "orig_id": 1458897}}, {"model": "metainfo.source", "pk": 574, "fields": {"orig_filename": "Thoeni_Christian_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 301", "author": "", "orig_id": 1424103}}, {"model": "metainfo.source", "pk": 575, "fields": {"orig_filename": "Thoeny_Eduard_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 300f.", "author": "", "orig_id": 1424106}}, {"model": "metainfo.source", "pk": 576, "fields": {"orig_filename": "Thoeny_Wilhelm_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 301f.", "author": "", "orig_id": 1424107}}, {"model": "metainfo.source", "pk": 577, "fields": {"orig_filename": "Thomas_Edward_1794_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 302f.", "author": "", "orig_id": 1424197}}, {"model": "metainfo.source", "pk": 578, "fields": {"orig_filename": "Thomas_Rudolf_1895_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 303f.", "author": "", "orig_id": 2256695}}, {"model": "metainfo.source", "pk": 579, "fields": {"orig_filename": "Thomayer_Frantisek_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 304", "author": "", "orig_id": 1424209}}, {"model": "metainfo.source", "pk": 580, "fields": {"orig_filename": "Thomayer_Josef_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 304f.", "author": "", "orig_id": 1424239}}, {"model": "metainfo.source", "pk": 581, "fields": {"orig_filename": "Thome_Franz_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 305f.", "author": "", "orig_id": 1424242}}, {"model": "metainfo.source", "pk": 582, "fields": {"orig_filename": "Thommen_Achilles_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 306f.", "author": "", "orig_id": 1424246}}, {"model": "metainfo.source", "pk": 583, "fields": {"orig_filename": "Thonet_August_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308f.", "author": "", "orig_id": 1424283}}, {"model": "metainfo.source", "pk": 584, "fields": {"orig_filename": "Thonet_Jakob_1841_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309", "author": "", "orig_id": 1424288}}, {"model": "metainfo.source", "pk": 585, "fields": {"orig_filename": "Thonet_Josef_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308", "author": "", "orig_id": 1424289}}, {"model": "metainfo.source", "pk": 586, "fields": {"orig_filename": "Thonet_Michael_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 307f.", "author": "", "orig_id": 1424487}}, {"model": "metainfo.source", "pk": 587, "fields": {"orig_filename": "Thonet_Michael_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308f.", "author": "", "orig_id": 2187975}}, {"model": "metainfo.source", "pk": 588, "fields": {"orig_filename": "Thonner_Franz_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309", "author": "", "orig_id": 1424492}}, {"model": "metainfo.source", "pk": 589, "fields": {"orig_filename": "Thon_Osias_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 307", "author": "", "orig_id": 1424247}}, {"model": "metainfo.source", "pk": 590, "fields": {"orig_filename": "Thoren_Otto_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309f.", "author": "", "orig_id": 1424498}}, {"model": "metainfo.source", "pk": 591, "fields": {"orig_filename": "Thorma_Janos_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 310f.", "author": "", "orig_id": 2167112}}, {"model": "metainfo.source", "pk": 592, "fields": {"orig_filename": "Thornton_Johann_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311", "author": "", "orig_id": 1424537}}, {"model": "metainfo.source", "pk": 593, "fields": {"orig_filename": "Tangl_Eduard-Joseph_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 195f.", "author": "", "orig_id": 1422659}}, {"model": "metainfo.source", "pk": 594, "fields": {"orig_filename": "Tangl_Karlmann_1799_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 196f.", "author": "", "orig_id": 1422691}}, {"model": "metainfo.source", "pk": 595, "fields": {"orig_filename": "Tangl_Michael_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 197f.", "author": "", "orig_id": 1422692}}, {"model": "metainfo.source", "pk": 596, "fields": {"orig_filename": "Tantardini_Antonio_1829_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198", "author": "", "orig_id": 1422737}}, {"model": "metainfo.source", "pk": 597, "fields": {"orig_filename": "Tanzer_Valentin-Leopold_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198", "author": "", "orig_id": 2141313}}, {"model": "metainfo.source", "pk": 598, "fields": {"orig_filename": "Tappeiner-Tappein_Franz_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198ff.", "author": "", "orig_id": 1422782}}, {"model": "metainfo.source", "pk": 599, "fields": {"orig_filename": "Tappeiner-Tappein_Hermann_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 199f.", "author": "", "orig_id": 1422200}}, {"model": "metainfo.source", "pk": 600, "fields": {"orig_filename": "Tapper_Josef_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200", "author": "", "orig_id": 1422201}}, {"model": "metainfo.source", "pk": 601, "fields": {"orig_filename": "Tarnai_Janos_1843_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200f.", "author": "", "orig_id": 1422237}}, {"model": "metainfo.source", "pk": 602, "fields": {"orig_filename": "Tarnavschi_Teodor_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200f.", "author": "", "orig_id": 1422238}}, {"model": "metainfo.source", "pk": 603, "fields": {"orig_filename": "Tarnavschi_Vasile_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 201", "author": "", "orig_id": 1422239}}, {"model": "metainfo.source", "pk": 604, "fields": {"orig_filename": "Tarnoczy-Sprinzenberg_Bertha_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 202f.", "author": "", "orig_id": 1422241}}, {"model": "metainfo.source", "pk": 605, "fields": {"orig_filename": "Tarnoczy_Maximilian-Joseph_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 201f.", "author": "", "orig_id": 1422245}}, {"model": "metainfo.source", "pk": 606, "fields": {"orig_filename": "Tarnowski_Adam_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 203", "author": "", "orig_id": 1422272}}, {"model": "metainfo.source", "pk": 607, "fields": {"orig_filename": "Tarnowski_Jan-Dzierzyslaw_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 204", "author": "", "orig_id": 1422274}}, {"model": "metainfo.source", "pk": 608, "fields": {"orig_filename": "Tarnowski_Jan-Felix-Amor_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 203f.", "author": "", "orig_id": 1422283}}, {"model": "metainfo.source", "pk": 609, "fields": {"orig_filename": "Tarnowski_Stanislaw_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 204f.", "author": "", "orig_id": 1422311}}, {"model": "metainfo.source", "pk": 610, "fields": {"orig_filename": "Tarnowski_Wladyslaw_1836_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 205", "author": "", "orig_id": 1422312}}, {"model": "metainfo.source", "pk": 611, "fields": {"orig_filename": "Tartaruga_Ubald_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 205f.", "author": "", "orig_id": 1424428}}, {"model": "metainfo.source", "pk": 612, "fields": {"orig_filename": "Tauber_Alfred_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 207f.", "author": "", "orig_id": 1422397}}, {"model": "metainfo.source", "pk": 613, "fields": {"orig_filename": "Tauber_Anton-Richard_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 209f.", "author": "", "orig_id": 1422400}}, {"model": "metainfo.source", "pk": 614, "fields": {"orig_filename": "Tauber_Josef-Samuel_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208", "author": "", "orig_id": 1422406}}, {"model": "metainfo.source", "pk": 615, "fields": {"orig_filename": "Taubes-Lebenswarth_Johann_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 210", "author": "", "orig_id": 1422329}}, {"model": "metainfo.source", "pk": 616, "fields": {"orig_filename": "Taubes_Loebl_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 210", "author": "", "orig_id": 1422327}}, {"model": "metainfo.source", "pk": 617, "fields": {"orig_filename": "Taube_Erika_1913_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 207", "author": "", "orig_id": 1824004}}, {"model": "metainfo.source", "pk": 618, "fields": {"orig_filename": "Taub_Siegfried_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 206f.", "author": "", "orig_id": 1443032}}, {"model": "metainfo.source", "pk": 619, "fields": {"orig_filename": "Taufer_Josef_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 211", "author": "", "orig_id": 1422367}}, {"model": "metainfo.source", "pk": 620, "fields": {"orig_filename": "Tauffer_Vilmos_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 211f.", "author": "", "orig_id": 1422370}}, {"model": "metainfo.source", "pk": 621, "fields": {"orig_filename": "Taurer-Gallenstein_Anton_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 213", "author": "", "orig_id": 1422374}}, {"model": "metainfo.source", "pk": 622, "fields": {"orig_filename": "Taurer-Gallenstein_Hans_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 212f.", "author": "", "orig_id": 1422375}}, {"model": "metainfo.source", "pk": 623, "fields": {"orig_filename": "Taurer-Gallenstein_Johann-Nepomuk_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 213", "author": "", "orig_id": 1422376}}, {"model": "metainfo.source", "pk": 624, "fields": {"orig_filename": "Tausch-Gloeckelsthurn_Leopold_1858_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 214f.", "author": "", "orig_id": 1422410}}, {"model": "metainfo.source", "pk": 625, "fields": {"orig_filename": "Tauschek_Gustav_1899_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 215", "author": "", "orig_id": 1422416}}, {"model": "metainfo.source", "pk": 626, "fields": {"orig_filename": "Tauscher_Gyula-Agoston_1833_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 215f.", "author": "", "orig_id": 2210139}}, {"model": "metainfo.source", "pk": 627, "fields": {"orig_filename": "Tauschinski_Hippolyt_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 216", "author": "", "orig_id": 1424291}}, {"model": "metainfo.source", "pk": 628, "fields": {"orig_filename": "Tausch_Ignaz-Friedrich_1793_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 214", "author": "", "orig_id": 1422407}}, {"model": "metainfo.source", "pk": 629, "fields": {"orig_filename": "Tausenau_Karl_1813_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 216f.", "author": "", "orig_id": 1424295}}, {"model": "metainfo.source", "pk": 630, "fields": {"orig_filename": "Tausk_Viktor_1879_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 217f.", "author": "", "orig_id": 1424329}}, {"model": "metainfo.source", "pk": 631, "fields": {"orig_filename": "Taussig_Ervin_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 218f.", "author": "", "orig_id": 2173303}}, {"model": "metainfo.source", "pk": 632, "fields": {"orig_filename": "Taussig_Helene_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 219", "author": "", "orig_id": 1424337}}, {"model": "metainfo.source", "pk": 633, "fields": {"orig_filename": "Taussig_Otto_1879_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 219f.", "author": "", "orig_id": 1424340}}, {"model": "metainfo.source", "pk": 634, "fields": {"orig_filename": "Taussig_Sigmund_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 220f.", "author": "", "orig_id": 1424341}}, {"model": "metainfo.source", "pk": 635, "fields": {"orig_filename": "Taussig_Theodor_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 221f.", "author": "", "orig_id": 1424138}}, {"model": "metainfo.source", "pk": 636, "fields": {"orig_filename": "Tautenhayn_Ernst_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424372}}, {"model": "metainfo.source", "pk": 637, "fields": {"orig_filename": "Tautenhayn_Josef_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 222f.", "author": "", "orig_id": 1424459}}, {"model": "metainfo.source", "pk": 638, "fields": {"orig_filename": "Tautenhayn_Karl_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424460}}, {"model": "metainfo.source", "pk": 639, "fields": {"orig_filename": "Tautenhayn_Richard_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424461}}, {"model": "metainfo.source", "pk": 640, "fields": {"orig_filename": "Taux_Alois_1817_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223f.", "author": "", "orig_id": 1424463}}, {"model": "metainfo.source", "pk": 641, "fields": {"orig_filename": "Taux_Anna_1820_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224", "author": "", "orig_id": 1452531}}, {"model": "metainfo.source", "pk": 642, "fields": {"orig_filename": "Tavcar_Franja_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224f.", "author": "", "orig_id": 2167958}}, {"model": "metainfo.source", "pk": 643, "fields": {"orig_filename": "Tavcar_Ivan_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224f.", "author": "", "orig_id": 1424465}}, {"model": "metainfo.source", "pk": 644, "fields": {"orig_filename": "Tavella_Franz_1844_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 225", "author": "", "orig_id": 1424466}}, {"model": "metainfo.source", "pk": 645, "fields": {"orig_filename": "Tayerle_Rudolf_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 225f.", "author": "", "orig_id": 2202879}}, {"model": "metainfo.source", "pk": 646, "fields": {"orig_filename": "Techet_Carl_1877_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 226", "author": "", "orig_id": 1424504}}, {"model": "metainfo.source", "pk": 647, "fields": {"orig_filename": "Teclu_Nicolae_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 227", "author": "", "orig_id": 1424509}}, {"model": "metainfo.source", "pk": 648, "fields": {"orig_filename": "Tegetthoff_Karl_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 227f.", "author": "", "orig_id": 1424548}}, {"model": "metainfo.source", "pk": 649, "fields": {"orig_filename": "Tegetthoff_Wilhelm_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 228", "author": "", "orig_id": 1424549}}, {"model": "metainfo.source", "pk": 650, "fields": {"orig_filename": "Teglas_Gabor_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 228f.", "author": "", "orig_id": 1452545}}, {"model": "metainfo.source", "pk": 651, "fields": {"orig_filename": "Teichgraeber_Franz_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 229", "author": "", "orig_id": 1424354}}, {"model": "metainfo.source", "pk": 652, "fields": {"orig_filename": "Teige_Josef_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 229f.", "author": "", "orig_id": 1424559}}, {"model": "metainfo.source", "pk": 653, "fields": {"orig_filename": "Teimer-Wildau_Martin-Rochus_1778_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 230", "author": "", "orig_id": 1424588}}, {"model": "metainfo.source", "pk": 654, "fields": {"orig_filename": "Teirich_Ferdinand_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 230f.", "author": "", "orig_id": 1424592}}, {"model": "metainfo.source", "pk": 655, "fields": {"orig_filename": "Teirich_Valentin_1844_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 231f.", "author": "", "orig_id": 1424594}}, {"model": "metainfo.source", "pk": 656, "fields": {"orig_filename": "Teisseyre_Karol-Wawrzyniec_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 232", "author": "", "orig_id": 2208573}}, {"model": "metainfo.source", "pk": 657, "fields": {"orig_filename": "Telcs_Ede_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 232f.", "author": "", "orig_id": 1424599}}, {"model": "metainfo.source", "pk": 658, "fields": {"orig_filename": "Teleki-Szek_Blanka_1806_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 233f.", "author": "", "orig_id": 1424675}}, {"model": "metainfo.source", "pk": 659, "fields": {"orig_filename": "Teleki-Szek_Jozsef_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 234", "author": "", "orig_id": 1424633}}, {"model": "metainfo.source", "pk": 660, "fields": {"orig_filename": "Teleki-Szek_Juliska_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 234", "author": "", "orig_id": 1424634}}, {"model": "metainfo.source", "pk": 661, "fields": {"orig_filename": "Teleki-Szek_Laszlo_1764_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 235", "author": "", "orig_id": 1424635}}, {"model": "metainfo.source", "pk": 662, "fields": {"orig_filename": "Teleki-Szek_Laszlo_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135f.", "author": "", "orig_id": 1424679}}, {"model": "metainfo.source", "pk": 663, "fields": {"orig_filename": "Teleki-Szek_Pal_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 236f.", "author": "", "orig_id": 1424029}}, {"model": "metainfo.source", "pk": 664, "fields": {"orig_filename": "Teleki-Szek_Samuel_1739_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 237", "author": "", "orig_id": 1452681}}, {"model": "metainfo.source", "pk": 665, "fields": {"orig_filename": "Teleki-Szek_Samuel_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 238", "author": "", "orig_id": 1424024}}, {"model": "metainfo.source", "pk": 666, "fields": {"orig_filename": "Teleki-Szek_Sandor_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 238f.", "author": "", "orig_id": 1452612}}, {"model": "metainfo.source", "pk": 667, "fields": {"orig_filename": "Telepy_Gyoergy_1800_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 239f.", "author": "", "orig_id": 1452737}}, {"model": "metainfo.source", "pk": 668, "fields": {"orig_filename": "Telepy_Karoly_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 240", "author": "", "orig_id": 1424030}}, {"model": "metainfo.source", "pk": 669, "fields": {"orig_filename": "Telfner_Josef_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 240", "author": "", "orig_id": 1424032}}, {"model": "metainfo.source", "pk": 670, "fields": {"orig_filename": "Telfy_Ivan_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241", "author": "", "orig_id": 1452739}}, {"model": "metainfo.source", "pk": 671, "fields": {"orig_filename": "Teller_Alfred_1881_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241f.", "author": "", "orig_id": 2162627}}, {"model": "metainfo.source", "pk": 672, "fields": {"orig_filename": "Teller_Friedrich_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 242f.", "author": "", "orig_id": 1424038}}, {"model": "metainfo.source", "pk": 673, "fields": {"orig_filename": "Telle_Carl_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241", "author": "", "orig_id": 1424035}}, {"model": "metainfo.source", "pk": 674, "fields": {"orig_filename": "Telmann_Fritz_1873_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 243", "author": "", "orig_id": 1424075}}, {"model": "metainfo.source", "pk": 675, "fields": {"orig_filename": "Teltscher_Josef-Eduard_1801_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 243f.", "author": "", "orig_id": 1424077}}, {"model": "metainfo.source", "pk": 676, "fields": {"orig_filename": "Temesvary_Rezsoe_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 244", "author": "", "orig_id": 1454705}}, {"model": "metainfo.source", "pk": 677, "fields": {"orig_filename": "Temple_Hans_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 244f.", "author": "", "orig_id": 1424087}}, {"model": "metainfo.source", "pk": 678, "fields": {"orig_filename": "Tempsky_Karl-Friedrich-Rudolph_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 245f.", "author": "", "orig_id": 1424121}}, {"model": "metainfo.source", "pk": 679, "fields": {"orig_filename": "Tencer_Pal_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 246", "author": "", "orig_id": 1454707}}, {"model": "metainfo.source", "pk": 680, "fields": {"orig_filename": "Tendler_Franz_1790_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 246f.", "author": "", "orig_id": 1828342}}, {"model": "metainfo.source", "pk": 681, "fields": {"orig_filename": "Tendler_Franz_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 247", "author": "", "orig_id": 1424124}}, {"model": "metainfo.source", "pk": 682, "fields": {"orig_filename": "Tendler_Johann-Max_1811_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 248", "author": "", "orig_id": 1424125}}, {"model": "metainfo.source", "pk": 683, "fields": {"orig_filename": "Tendler_Johann-Patriz_1777_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 247f.", "author": "", "orig_id": 1447379}}, {"model": "metainfo.source", "pk": 684, "fields": {"orig_filename": "Tendler_Mathias_1753_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 248f.", "author": "", "orig_id": 1424130}}, {"model": "metainfo.source", "pk": 685, "fields": {"orig_filename": "Tengler_Theodor_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 249", "author": "", "orig_id": 2189010}}, {"model": "metainfo.source", "pk": 686, "fields": {"orig_filename": "Tennenbaum_Ludwig_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 249f.", "author": "", "orig_id": 1424164}}, {"model": "metainfo.source", "pk": 687, "fields": {"orig_filename": "Teodorowicz_Jozef-Teofil_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 250", "author": "", "orig_id": 1424180}}, {"model": "metainfo.source", "pk": 688, "fields": {"orig_filename": "Teply_Frantisek_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 251f.", "author": "", "orig_id": 2173349}}, {"model": "metainfo.source", "pk": 689, "fields": {"orig_filename": "Terc_Filip_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 252f.", "author": "", "orig_id": 2141244}}, {"model": "metainfo.source", "pk": 690, "fields": {"orig_filename": "Terey_Gabor_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 253", "author": "", "orig_id": 1424223}}, {"model": "metainfo.source", "pk": 691, "fields": {"orig_filename": "Terpinc_Fidelis_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 253f.", "author": "", "orig_id": 1424265}}, {"model": "metainfo.source", "pk": 692, "fields": {"orig_filename": "Terschak_Emil_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 254f.", "author": "", "orig_id": 1424268}}, {"model": "metainfo.source", "pk": 693, "fields": {"orig_filename": "Szentgyoergyi_Istvan_1842_1931.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1456743}}, {"model": "metainfo.source", "pk": 694, "fields": {"orig_filename": "Szentirmay_Elemer_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145", "author": "", "orig_id": 1459184}}, {"model": "metainfo.source", "pk": 695, "fields": {"orig_filename": "Szentkereszti-Zagon_Sigmund_1745_1823.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435288}}, {"model": "metainfo.source", "pk": 696, "fields": {"orig_filename": "Szentkiralyi-Komjatszegi_Akos_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145f.", "author": "", "orig_id": 1459185}}, {"model": "metainfo.source", "pk": 697, "fields": {"orig_filename": "Szentkiralyi-Komjatszegi_Zsigmond_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145f.", "author": "", "orig_id": 2134411}}, {"model": "metainfo.source", "pk": 698, "fields": {"orig_filename": "Szentpeteri_Jozsef_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 146", "author": "", "orig_id": 1435349}}, {"model": "metainfo.source", "pk": 699, "fields": {"orig_filename": "Szentpetery-Sajoszentpeter_Zsigmond_1798_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 146f.", "author": "", "orig_id": 1459188}}, {"model": "metainfo.source", "pk": 700, "fields": {"orig_filename": "Szeparowicz_Johann_1843_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 147", "author": "", "orig_id": 2170466}}, {"model": "metainfo.source", "pk": 701, "fields": {"orig_filename": "Szepesy_Ignac_1780_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 147f.", "author": "", "orig_id": 1434553}}, {"model": "metainfo.source", "pk": 702, "fields": {"orig_filename": "Szeps_Julius_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 148", "author": "", "orig_id": 1434560}}, {"model": "metainfo.source", "pk": 703, "fields": {"orig_filename": "Szeps_Moritz_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 148f.", "author": "", "orig_id": 1434563}}, {"model": "metainfo.source", "pk": 704, "fields": {"orig_filename": "Szeptycki-Szeptyce_Andrej_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 149f.", "author": "", "orig_id": 1434601}}, {"model": "metainfo.source", "pk": 705, "fields": {"orig_filename": "Szeptycki-Szeptyce_Jan-Kanty_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2199910}}, {"model": "metainfo.source", "pk": 706, "fields": {"orig_filename": "Szeptycki-Szeptyce_Klemens_1869_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2159182}}, {"model": "metainfo.source", "pk": 707, "fields": {"orig_filename": "Szeptycki-Szeptyce_Stanislaw_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 151", "author": "", "orig_id": 1434602}}, {"model": "metainfo.source", "pk": 708, "fields": {"orig_filename": "Szerb_Antal_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2081817}}, {"model": "metainfo.source", "pk": 709, "fields": {"orig_filename": "Szerdahelyi_Jozsef_1804_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 151f.", "author": "", "orig_id": 1434606}}, {"model": "metainfo.source", "pk": 710, "fields": {"orig_filename": "Szerdahelyi_Kalman_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 152", "author": "", "orig_id": 1434603}}, {"model": "metainfo.source", "pk": 711, "fields": {"orig_filename": "Szerelmey_Miklos_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 152f.", "author": "", "orig_id": 1434612}}, {"model": "metainfo.source", "pk": 712, "fields": {"orig_filename": "Szigeti_Imre_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1459250}}, {"model": "metainfo.source", "pk": 713, "fields": {"orig_filename": "Szigeti_Jolan_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1456899}}, {"model": "metainfo.source", "pk": 714, "fields": {"orig_filename": "Szigeti_Jozsef_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1434666}}, {"model": "metainfo.source", "pk": 715, "fields": {"orig_filename": "Szika_Jani_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154f.", "author": "", "orig_id": 1434718}}, {"model": "metainfo.source", "pk": 716, "fields": {"orig_filename": "Szilagyi-Szilagysomlo-Horogszegh_Lilla_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 157f.", "author": "", "orig_id": 1459252}}, {"model": "metainfo.source", "pk": 717, "fields": {"orig_filename": "Szilagyi-Szilagysomlo-Horogszegh_Pal_1793_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 157f.", "author": "", "orig_id": 1434827}}, {"model": "metainfo.source", "pk": 718, "fields": {"orig_filename": "Szilagyi_Dezsoe_1840_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 155f.", "author": "", "orig_id": 1434668}}, {"model": "metainfo.source", "pk": 719, "fields": {"orig_filename": "Szilagyi_Ete_1844_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 155f.", "author": "", "orig_id": 1459261}}, {"model": "metainfo.source", "pk": 720, "fields": {"orig_filename": "Szilagyi_Ferenc_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156", "author": "", "orig_id": 1434768}}, {"model": "metainfo.source", "pk": 721, "fields": {"orig_filename": "Szilagyi_Ferenc_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156", "author": "", "orig_id": 1434770}}, {"model": "metainfo.source", "pk": 722, "fields": {"orig_filename": "Szilagyi_Sandor_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156f.", "author": "", "orig_id": 1434763}}, {"model": "metainfo.source", "pk": 723, "fields": {"orig_filename": "Szilasy_Janos_1795_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158", "author": "", "orig_id": 1434836}}, {"model": "metainfo.source", "pk": 724, "fields": {"orig_filename": "Szily-Nagyszigeth_Kalman_1838_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 159f.", "author": "", "orig_id": 1434960}}, {"model": "metainfo.source", "pk": 725, "fields": {"orig_filename": "Szily-Szilsarkany_Adolf_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 160", "author": "", "orig_id": 1434894}}, {"model": "metainfo.source", "pk": 726, "fields": {"orig_filename": "Szily_Aurel_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158f.", "author": "", "orig_id": 1434898}}, {"model": "metainfo.source", "pk": 727, "fields": {"orig_filename": "Szily_Pal_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158f.", "author": "", "orig_id": 2154427}}, {"model": "metainfo.source", "pk": 728, "fields": {"orig_filename": "Szinnyei_Ferenc_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161", "author": "", "orig_id": 2163355}}, {"model": "metainfo.source", "pk": 729, "fields": {"orig_filename": "Szinnyei_Jozsef_1830_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 160f.", "author": "", "orig_id": 1434968}}, {"model": "metainfo.source", "pk": 730, "fields": {"orig_filename": "Szinnyei_Jozsef_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161", "author": "", "orig_id": 1434969}}, {"model": "metainfo.source", "pk": 731, "fields": {"orig_filename": "Szinyei-Merse_Pal_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161f.", "author": "", "orig_id": 1434971}}, {"model": "metainfo.source", "pk": 732, "fields": {"orig_filename": "Szkalnitzky_Antal_1836_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 162f.", "author": "", "orig_id": 1435037}}, {"model": "metainfo.source", "pk": 733, "fields": {"orig_filename": "Szlavy-Erkenez-Okany_Jozsef_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 163f.", "author": "", "orig_id": 1435047}}, {"model": "metainfo.source", "pk": 734, "fields": {"orig_filename": "Szmrecsanyi_Lajos_1851_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164", "author": "", "orig_id": 1457146}}, {"model": "metainfo.source", "pk": 735, "fields": {"orig_filename": "Szmrecsanyi_Pal_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164", "author": "", "orig_id": 1435108}}, {"model": "metainfo.source", "pk": 736, "fields": {"orig_filename": "Szoboszlai-Pap_Istvan_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164f.", "author": "", "orig_id": 1435113}}, {"model": "metainfo.source", "pk": 737, "fields": {"orig_filename": "Szoedy_Szilard_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 165", "author": "", "orig_id": 1432895}}, {"model": "metainfo.source", "pk": 738, "fields": {"orig_filename": "Szoegyeny-Magyarszoegyen_Zsigmond_1775_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 166f.", "author": "", "orig_id": 1435123}}, {"model": "metainfo.source", "pk": 739, "fields": {"orig_filename": "Szoegyeny-Marich-Magyarszoegyen-Szolgaegyhaza_Laszlo_1806_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 165ff.", "author": "", "orig_id": 1435121}}, {"model": "metainfo.source", "pk": 740, "fields": {"orig_filename": "Szoegyeny-Marich-Magyarszoegyen-Szolgaegyhaza_Laszlo_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 167", "author": "", "orig_id": 1435167}}, {"model": "metainfo.source", "pk": 741, "fields": {"orig_filename": "Szoelloesy-Szabo_Lajos_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 167f.", "author": "", "orig_id": 1435174}}, {"model": "metainfo.source", "pk": 742, "fields": {"orig_filename": "Szoelloesy-Szabo_Roza_1841_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 168", "author": "", "orig_id": 2252336}}, {"model": "metainfo.source", "pk": 743, "fields": {"orig_filename": "Szoenyi_Otto_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 168f.", "author": "", "orig_id": 1435177}}, {"model": "metainfo.source", "pk": 744, "fields": {"orig_filename": "Szoldatits_Ferenc_1820_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 169", "author": "", "orig_id": 1435181}}, {"model": "metainfo.source", "pk": 745, "fields": {"orig_filename": "Szold_Benjamin_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1437733}}, {"model": "metainfo.source", "pk": 746, "fields": {"orig_filename": "Szombathy_Josef_1853_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 169f.", "author": "", "orig_id": 1435419}}, {"model": "metainfo.source", "pk": 747, "fields": {"orig_filename": "Szomory_Dezsoe_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 170", "author": "", "orig_id": 2194367}}, {"model": "metainfo.source", "pk": 748, "fields": {"orig_filename": "Szontagh-Iglo-Zabar_Abraham_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 172f.", "author": "", "orig_id": 1435425}}, {"model": "metainfo.source", "pk": 749, "fields": {"orig_filename": "Szontagh-Iglo-Zabar_Pal_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 173", "author": "", "orig_id": 1457151}}, {"model": "metainfo.source", "pk": 750, "fields": {"orig_filename": "Szontagh-Iglo_Gusztav-Adolf_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 170f.", "author": "", "orig_id": 1435429}}, {"model": "metainfo.source", "pk": 751, "fields": {"orig_filename": "Szontagh-Iglo_Miklos_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 171f.", "author": "", "orig_id": 1435430}}, {"model": "metainfo.source", "pk": 752, "fields": {"orig_filename": "Szontagh-Iglo_Tamas_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 172", "author": "", "orig_id": 1457152}}, {"model": "metainfo.source", "pk": 753, "fields": {"orig_filename": "Sztavjanik_Gustav_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 173f.", "author": "", "orig_id": 1427136}}, {"model": "metainfo.source", "pk": 754, "fields": {"orig_filename": "Szterenyi-Brasso_Jozsef_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 174f.", "author": "", "orig_id": 1434791}}, {"model": "metainfo.source", "pk": 755, "fields": {"orig_filename": "Szterenyi_Hugo_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 174", "author": "", "orig_id": 1437734}}, {"model": "metainfo.source", "pk": 756, "fields": {"orig_filename": "Sztoczek_Jozsef_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 175", "author": "", "orig_id": 1434793}}, {"model": "metainfo.source", "pk": 757, "fields": {"orig_filename": "Sztupa_Andor_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 175f.", "author": "", "orig_id": 2180773}}, {"model": "metainfo.source", "pk": 758, "fields": {"orig_filename": "Szujski_Jozef_1835_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 176", "author": "", "orig_id": 1435133}}, {"model": "metainfo.source", "pk": 759, "fields": {"orig_filename": "Szulislawski_Adam_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 176f.", "author": "", "orig_id": 2194357}}, {"model": "metainfo.source", "pk": 760, "fields": {"orig_filename": "Szuper_Karoly_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 177", "author": "", "orig_id": 1457963}}, {"model": "metainfo.source", "pk": 761, "fields": {"orig_filename": "Szuppan_Zsigmond_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 177f.", "author": "", "orig_id": 1435138}}, {"model": "metainfo.source", "pk": 762, "fields": {"orig_filename": "Szvorenyi_Jozsef_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178f.", "author": "", "orig_id": 1435185}}, {"model": "metainfo.source", "pk": 763, "fields": {"orig_filename": "Szymonowicz_Grzegorz-Michal_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 179f.", "author": "", "orig_id": 1435189}}, {"model": "metainfo.source", "pk": 764, "fields": {"orig_filename": "Szymonowicz_Jan-Jakub_1740_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 179f.", "author": "", "orig_id": 1435192}}, {"model": "metainfo.source", "pk": 765, "fields": {"orig_filename": "Szymonowicz_Wladyslaw_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 180", "author": "", "orig_id": 2189328}}, {"model": "metainfo.source", "pk": 766, "fields": {"orig_filename": "Szyszylowicz_Ignaz_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 180f.", "author": "", "orig_id": 2141207}}, {"model": "metainfo.source", "pk": 767, "fields": {"orig_filename": "Taaffe_Eduard-Franz-Joseph_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 181f.", "author": "", "orig_id": 1422721}}, {"model": "metainfo.source", "pk": 768, "fields": {"orig_filename": "Taaffe_Ludwig-Patrick-Johannes_1791_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 182f.", "author": "", "orig_id": 1422724}}, {"model": "metainfo.source", "pk": 769, "fields": {"orig_filename": "Tabacchi_Odoardo_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 183", "author": "", "orig_id": 2133986}}, {"model": "metainfo.source", "pk": 770, "fields": {"orig_filename": "Taborsky_Frantisek_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 183f.", "author": "", "orig_id": 1422772}}, {"model": "metainfo.source", "pk": 771, "fields": {"orig_filename": "Taenzer_Aron-Arnold_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 185", "author": "", "orig_id": 1422391}}, {"model": "metainfo.source", "pk": 772, "fields": {"orig_filename": "Taganyi_Karoly_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 186f.", "author": "", "orig_id": 1457972}}, {"model": "metainfo.source", "pk": 773, "fields": {"orig_filename": "Taglang_Hugo_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 187f.", "author": "", "orig_id": 1422511}}, {"model": "metainfo.source", "pk": 774, "fields": {"orig_filename": "Taglicht_Israel_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188", "author": "", "orig_id": 1422513}}, {"model": "metainfo.source", "pk": 775, "fields": {"orig_filename": "Taglioni_Filippo_1777_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188f.", "author": "", "orig_id": 1452382}}, {"model": "metainfo.source", "pk": 776, "fields": {"orig_filename": "Taglioni_Marie_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188f.", "author": "", "orig_id": 1422516}}, {"model": "metainfo.source", "pk": 777, "fields": {"orig_filename": "Taglioni_Marie_1833_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 1422536}}, {"model": "metainfo.source", "pk": 778, "fields": {"orig_filename": "Taglioni_Paul_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 1422535}}, {"model": "metainfo.source", "pk": 779, "fields": {"orig_filename": "Taglioni_Salvatore_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 2252495}}, {"model": "metainfo.source", "pk": 780, "fields": {"orig_filename": "Takacs_Menyhert-Ferenc_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189f.", "author": "", "orig_id": 1457974}}, {"model": "metainfo.source", "pk": 781, "fields": {"orig_filename": "Talatzko-Gestieticz_Johann-Adam_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 191", "author": "", "orig_id": 1422576}}, {"model": "metainfo.source", "pk": 782, "fields": {"orig_filename": "Tallyai_Daniel_1760_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 191f.", "author": "", "orig_id": 1458043}}, {"model": "metainfo.source", "pk": 783, "fields": {"orig_filename": "Talowski_Teodor-Marian_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 192", "author": "", "orig_id": 1422580}}, {"model": "metainfo.source", "pk": 784, "fields": {"orig_filename": "Tal_Ernst-Peter_1888_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 190f.", "author": "", "orig_id": 1422570}}, {"model": "metainfo.source", "pk": 785, "fields": {"orig_filename": "Tamasy-Fogaras_Arpad_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 192f.", "author": "", "orig_id": 1422607}}, {"model": "metainfo.source", "pk": 786, "fields": {"orig_filename": "Tancsics_Mihaly_1799_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 193", "author": "", "orig_id": 1422734}}, {"model": "metainfo.source", "pk": 787, "fields": {"orig_filename": "Tandler-Tanningen_Joseph-Franz_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 194", "author": "", "orig_id": 1422657}}, {"model": "metainfo.source", "pk": 788, "fields": {"orig_filename": "Tandler_Josef-Jakub_1765_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 193f.", "author": "", "orig_id": 1422654}}, {"model": "metainfo.source", "pk": 789, "fields": {"orig_filename": "Tandler_Julius_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 194f.", "author": "", "orig_id": 1422655}}, {"model": "metainfo.source", "pk": 790, "fields": {"orig_filename": "Tandor_Otto_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 195", "author": "", "orig_id": 1458049}}, {"model": "metainfo.source", "pk": 791, "fields": {"orig_filename": "Syniewski_Wiktor_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 94f.", "author": "", "orig_id": 1435820}}, {"model": "metainfo.source", "pk": 792, "fields": {"orig_filename": "Syroczynski_Leon_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 95f.", "author": "", "orig_id": 2137621}}, {"model": "metainfo.source", "pk": 793, "fields": {"orig_filename": "Syrski_Szymon-Adam_1829_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 96", "author": "", "orig_id": 2027088}}, {"model": "metainfo.source", "pk": 794, "fields": {"orig_filename": "Sytko_Josef_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436012}}, {"model": "metainfo.source", "pk": 795, "fields": {"orig_filename": "Szablik_Istvan_1746_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 96f.", "author": "", "orig_id": 1455284}}, {"model": "metainfo.source", "pk": 796, "fields": {"orig_filename": "Szablya-Frischauf_Ernesztin_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 97", "author": "", "orig_id": 1433211}}, {"model": "metainfo.source", "pk": 797, "fields": {"orig_filename": "Szabo-Kisgeresd_Imre_1820_1865.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436131}}, {"model": "metainfo.source", "pk": 798, "fields": {"orig_filename": "Szaboky_Adolph_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 102f.", "author": "", "orig_id": 1435720}}, {"model": "metainfo.source", "pk": 799, "fields": {"orig_filename": "Szabolcsi_Max_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 103", "author": "", "orig_id": 1455354}}, {"model": "metainfo.source", "pk": 800, "fields": {"orig_filename": "Szabolcska_Mihaly_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 103f.", "author": "", "orig_id": 1455356}}, {"model": "metainfo.source", "pk": 801, "fields": {"orig_filename": "Szabo_Alajos_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 97f.", "author": "", "orig_id": 1436116}}, {"model": "metainfo.source", "pk": 802, "fields": {"orig_filename": "Szabo_Basilius_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 98", "author": "", "orig_id": 1436120}}, {"model": "metainfo.source", "pk": 803, "fields": {"orig_filename": "Szabo_Denes_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 101", "author": "", "orig_id": 1455289}}, {"model": "metainfo.source", "pk": 804, "fields": {"orig_filename": "Szabo_Dezsoe_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 98f.", "author": "", "orig_id": 1436126}}, {"model": "metainfo.source", "pk": 805, "fields": {"orig_filename": "Szabo_Ignacz_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436181}}, {"model": "metainfo.source", "pk": 806, "fields": {"orig_filename": "Szabo_Istvan_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100", "author": "", "orig_id": 1436364}}, {"model": "metainfo.source", "pk": 807, "fields": {"orig_filename": "Szabo_Jozsef_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100", "author": "", "orig_id": 1457039}}, {"model": "metainfo.source", "pk": 808, "fields": {"orig_filename": "Szabo_Jozsef_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100f.", "author": "", "orig_id": 1435679}}, {"model": "metainfo.source", "pk": 809, "fields": {"orig_filename": "Szabo_Karoly_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 101f.", "author": "", "orig_id": 1436421}}, {"model": "metainfo.source", "pk": 810, "fields": {"orig_filename": "Szabo_Xaver-Ferenc_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1457450}}, {"model": "metainfo.source", "pk": 811, "fields": {"orig_filename": "Szacsvay-Esztelnek_Imre_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 104f.", "author": "", "orig_id": 1455359}}, {"model": "metainfo.source", "pk": 812, "fields": {"orig_filename": "Szacsvay_Sandor_1752_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 104", "author": "", "orig_id": 1455358}}, {"model": "metainfo.source", "pk": 813, "fields": {"orig_filename": "Szadeczky-Kardoss_Gyula_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 105f.", "author": "", "orig_id": 1457456}}, {"model": "metainfo.source", "pk": 814, "fields": {"orig_filename": "Szadeczky-Kardoss_Lajos_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106", "author": "", "orig_id": 1458906}}, {"model": "metainfo.source", "pk": 815, "fields": {"orig_filename": "Szajbely_Henrik_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106", "author": "", "orig_id": 1435338}}, {"model": "metainfo.source", "pk": 816, "fields": {"orig_filename": "Szajnocha_Karol_1818_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106f.", "author": "", "orig_id": 1435784}}, {"model": "metainfo.source", "pk": 817, "fields": {"orig_filename": "Szajnocha_Wladyslaw_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 107f.", "author": "", "orig_id": 1435786}}, {"model": "metainfo.source", "pk": 818, "fields": {"orig_filename": "Szalai_Istvan_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 108", "author": "", "orig_id": 1434932}}, {"model": "metainfo.source", "pk": 819, "fields": {"orig_filename": "Szalardi_Mor_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 108f.", "author": "", "orig_id": 1435840}}, {"model": "metainfo.source", "pk": 820, "fields": {"orig_filename": "Szalay-Kemend_Imre_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 110f.", "author": "", "orig_id": 1434928}}, {"model": "metainfo.source", "pk": 821, "fields": {"orig_filename": "Szalay-Kemend_Laszlo_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 111", "author": "", "orig_id": 1434936}}, {"model": "metainfo.source", "pk": 822, "fields": {"orig_filename": "Szalay_Fruzina_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109", "author": "", "orig_id": 1457477}}, {"model": "metainfo.source", "pk": 823, "fields": {"orig_filename": "Szalay_Imre_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109f.", "author": "", "orig_id": 1434931}}, {"model": "metainfo.source", "pk": 824, "fields": {"orig_filename": "Szalay_Peter_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 110", "author": "", "orig_id": 1426792}}, {"model": "metainfo.source", "pk": 825, "fields": {"orig_filename": "Szale_Istvan_1818_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 111f.", "author": "", "orig_id": 1434939}}, {"model": "metainfo.source", "pk": 826, "fields": {"orig_filename": "Szale_Janos_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 112", "author": "", "orig_id": 1433274}}, {"model": "metainfo.source", "pk": 827, "fields": {"orig_filename": "Szamossy_Elek_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113", "author": "", "orig_id": 1435902}}, {"model": "metainfo.source", "pk": 828, "fields": {"orig_filename": "Szamossy_Laszlo_1866_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113", "author": "", "orig_id": 1433208}}, {"model": "metainfo.source", "pk": 829, "fields": {"orig_filename": "Szam_Geza_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 112f.", "author": "", "orig_id": 1457562}}, {"model": "metainfo.source", "pk": 830, "fields": {"orig_filename": "Szana_Tamas_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113f.", "author": "", "orig_id": 1435007}}, {"model": "metainfo.source", "pk": 831, "fields": {"orig_filename": "Szanto_Emil_1857_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 114", "author": "", "orig_id": 1435016}}, {"model": "metainfo.source", "pk": 832, "fields": {"orig_filename": "Szanto_Menyhert_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 114f.", "author": "", "orig_id": 1457630}}, {"model": "metainfo.source", "pk": 833, "fields": {"orig_filename": "Szanto_Simon_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 115", "author": "", "orig_id": 1435074}}, {"model": "metainfo.source", "pk": 834, "fields": {"orig_filename": "Szanto_Theodor_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 115f.", "author": "", "orig_id": 1435075}}, {"model": "metainfo.source", "pk": 835, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Franz_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 116", "author": "", "orig_id": 1435079}}, {"model": "metainfo.source", "pk": 836, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Gyula_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 116f.", "author": "", "orig_id": 1435329}}, {"model": "metainfo.source", "pk": 837, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Ladislaus_1831_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 117f.", "author": "", "orig_id": 1435269}}, {"model": "metainfo.source", "pk": 838, "fields": {"orig_filename": "Szaraniewicz_Izydor_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 118", "author": "", "orig_id": 1435332}}, {"model": "metainfo.source", "pk": 839, "fields": {"orig_filename": "Szarvady_Frigyes_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435335}}, {"model": "metainfo.source", "pk": 840, "fields": {"orig_filename": "Szarvassy_Arthur_1873_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 120", "author": "", "orig_id": 1435336}}, {"model": "metainfo.source", "pk": 841, "fields": {"orig_filename": "Szarvas_Gabor_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 119f.", "author": "", "orig_id": 1458986}}, {"model": "metainfo.source", "pk": 842, "fields": {"orig_filename": "Szaster_Antoni_1759_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 120f.", "author": "", "orig_id": 1435339}}, {"model": "metainfo.source", "pk": 843, "fields": {"orig_filename": "Szaster_Wincenty_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121", "author": "", "orig_id": 2162661}}, {"model": "metainfo.source", "pk": 844, "fields": {"orig_filename": "Szasz-Szemerja_Bela_1840_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121f.", "author": "", "orig_id": 1458987}}, {"model": "metainfo.source", "pk": 845, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1798_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122", "author": "", "orig_id": 1435390}}, {"model": "metainfo.source", "pk": 846, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122f.", "author": "", "orig_id": 1435391}}, {"model": "metainfo.source", "pk": 847, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 123", "author": "", "orig_id": 1435392}}, {"model": "metainfo.source", "pk": 848, "fields": {"orig_filename": "Szasz-Szemerja_Polixenia_1831_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122f.", "author": "", "orig_id": 1458990}}, {"model": "metainfo.source", "pk": 849, "fields": {"orig_filename": "Szaszy-Szasz_Bela_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 123f.", "author": "", "orig_id": 1457717}}, {"model": "metainfo.source", "pk": 850, "fields": {"orig_filename": "Szasz_Gyula_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121", "author": "", "orig_id": 1435389}}, {"model": "metainfo.source", "pk": 851, "fields": {"orig_filename": "Szathmary-Laczkoczy_Lujza_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 125", "author": "", "orig_id": 1435447}}, {"model": "metainfo.source", "pk": 852, "fields": {"orig_filename": "Szathmary_Pap-Karoly_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 124f.", "author": "", "orig_id": 1435405}}, {"model": "metainfo.source", "pk": 853, "fields": {"orig_filename": "Szatmari_Mor_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 125f.", "author": "", "orig_id": 1454510}}, {"model": "metainfo.source", "pk": 854, "fields": {"orig_filename": "Szczepanik_Jan_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 126f.", "author": "", "orig_id": 1434636}}, {"model": "metainfo.source", "pk": 855, "fields": {"orig_filename": "Szczepanowski_Stanislaw-Ignacy_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 127f.", "author": "", "orig_id": 1434641}}, {"model": "metainfo.source", "pk": 856, "fields": {"orig_filename": "Szczepanski_Wladislaw_1877_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128", "author": "", "orig_id": 1434644}}, {"model": "metainfo.source", "pk": 857, "fields": {"orig_filename": "Szczucki_Wincenty_1786_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128", "author": "", "orig_id": 1434646}}, {"model": "metainfo.source", "pk": 858, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Bela_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128f.", "author": "", "orig_id": 1426683}}, {"model": "metainfo.source", "pk": 859, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Ferenc_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 129f.", "author": "", "orig_id": 1434813}}, {"model": "metainfo.source", "pk": 860, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Gyula_1829_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434819}}, {"model": "metainfo.source", "pk": 861, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Imre_1825_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 130", "author": "", "orig_id": 1434876}}, {"model": "metainfo.source", "pk": 862, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Istvan_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 131f.", "author": "", "orig_id": 1434816}}, {"model": "metainfo.source", "pk": 863, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Lajos_1781_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 130", "author": "", "orig_id": 1434822}}, {"model": "metainfo.source", "pk": 864, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Lajos_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434873}}, {"model": "metainfo.source", "pk": 865, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Pal_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 132", "author": "", "orig_id": 1457730}}, {"model": "metainfo.source", "pk": 866, "fields": {"orig_filename": "Szecsen-Temerin_Antal_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 132f.", "author": "", "orig_id": 1434884}}, {"model": "metainfo.source", "pk": 867, "fields": {"orig_filename": "Szecsen-Temerin_Miklos_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 133f.", "author": "", "orig_id": 1434886}}, {"model": "metainfo.source", "pk": 868, "fields": {"orig_filename": "Szecsi_Antal_1856_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 134", "author": "", "orig_id": 1434887}}, {"model": "metainfo.source", "pk": 869, "fields": {"orig_filename": "Szekely-Adamos_Agoston_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 136", "author": "", "orig_id": 1434954}}, {"model": "metainfo.source", "pk": 870, "fields": {"orig_filename": "Szekely-Adamos_Bertalan_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135f.", "author": "", "orig_id": 1435027}}, {"model": "metainfo.source", "pk": 871, "fields": {"orig_filename": "Szekely_Ferenc_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 134f.", "author": "", "orig_id": 1434959}}, {"model": "metainfo.source", "pk": 872, "fields": {"orig_filename": "Szekely_Josef_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135", "author": "", "orig_id": 1435021}}, {"model": "metainfo.source", "pk": 873, "fields": {"orig_filename": "Szekrenyessy-Szekelyhid-Kemer_Kalman_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 136f.", "author": "", "orig_id": 1459099}}, {"model": "metainfo.source", "pk": 874, "fields": {"orig_filename": "Szekula_Mor_1839_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137", "author": "", "orig_id": 1435896}}, {"model": "metainfo.source", "pk": 875, "fields": {"orig_filename": "Szelestey_Laszlo_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137", "author": "", "orig_id": 1435094}}, {"model": "metainfo.source", "pk": 876, "fields": {"orig_filename": "Szell-Duka-Szentgyoergyvoelgy_Kalman_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137f.", "author": "", "orig_id": 1435098}}, {"model": "metainfo.source", "pk": 877, "fields": {"orig_filename": "Szemere_Bertalan_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 138f.", "author": "", "orig_id": 1435104}}, {"model": "metainfo.source", "pk": 878, "fields": {"orig_filename": "Szemere_Krisztina_1792_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140", "author": "", "orig_id": 1459175}}, {"model": "metainfo.source", "pk": 879, "fields": {"orig_filename": "Szemere_Miklos_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 139", "author": "", "orig_id": 1435153}}, {"model": "metainfo.source", "pk": 880, "fields": {"orig_filename": "Szemere_Pal_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 139f.", "author": "", "orig_id": 1435155}}, {"model": "metainfo.source", "pk": 881, "fields": {"orig_filename": "Szemler_Mihaly_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140", "author": "", "orig_id": 1435162}}, {"model": "metainfo.source", "pk": 882, "fields": {"orig_filename": "Szenczy_Ferenc_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140f.", "author": "", "orig_id": 1435224}}, {"model": "metainfo.source", "pk": 883, "fields": {"orig_filename": "Szenczy_Imre-Jozsef_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 141", "author": "", "orig_id": 1435223}}, {"model": "metainfo.source", "pk": 884, "fields": {"orig_filename": "Szende-Keresztes_Bela_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 142", "author": "", "orig_id": 1435226}}, {"model": "metainfo.source", "pk": 885, "fields": {"orig_filename": "Szende_Pal_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 141f.", "author": "", "orig_id": 1435227}}, {"model": "metainfo.source", "pk": 886, "fields": {"orig_filename": "Szendrei-Mindszent_Janos_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 142f.", "author": "", "orig_id": 1459179}}, {"model": "metainfo.source", "pk": 887, "fields": {"orig_filename": "Szendy_Arpad_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 143f.", "author": "", "orig_id": 1459180}}, {"model": "metainfo.source", "pk": 888, "fields": {"orig_filename": "Szenes_Fueloep_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 144", "author": "", "orig_id": 1433018}}, {"model": "metainfo.source", "pk": 889, "fields": {"orig_filename": "Szent-Istvanyi_Gyula_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 144f.", "author": "", "orig_id": 1435298}}, {"model": "metainfo.source", "pk": 890, "fields": {"orig_filename": "Suman_Josip_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46f.", "author": "", "orig_id": 1435792}}, {"model": "metainfo.source", "pk": 891, "fields": {"orig_filename": "Sumec_Josef_1867_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 48", "author": "", "orig_id": 1435849}}, {"model": "metainfo.source", "pk": 892, "fields": {"orig_filename": "Sumin_Jiri_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 48f.", "author": "", "orig_id": 1472593}}, {"model": "metainfo.source", "pk": 893, "fields": {"orig_filename": "Sundecic_Jovan_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 49", "author": "", "orig_id": 1435917}}, {"model": "metainfo.source", "pk": 894, "fields": {"orig_filename": "Sunstenau-Schuetzenthal_Heinrich_1780_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 49f.", "author": "", "orig_id": 1435974}}, {"model": "metainfo.source", "pk": 895, "fields": {"orig_filename": "Supan_Alexander-Georg_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 51", "author": "", "orig_id": 1432211}}, {"model": "metainfo.source", "pk": 896, "fields": {"orig_filename": "Supilo_Frano_1870_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 51f.", "author": "", "orig_id": 1436271}}, {"model": "metainfo.source", "pk": 897, "fields": {"orig_filename": "Supljikac-Vitez_Stevan_1786_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 52", "author": "", "orig_id": 1436281}}, {"model": "metainfo.source", "pk": 898, "fields": {"orig_filename": "Suppantschitsch_Johann-Anton_1785_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 54f.", "author": "", "orig_id": 1435491}}, {"model": "metainfo.source", "pk": 899, "fields": {"orig_filename": "Suppantschitsch_Richard_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 55", "author": "", "orig_id": 1937201}}, {"model": "metainfo.source", "pk": 900, "fields": {"orig_filename": "Suppantschitsch_Viktor_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 55f.", "author": "", "orig_id": 1435495}}, {"model": "metainfo.source", "pk": 901, "fields": {"orig_filename": "Suppan_Anna_1891_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436326}}, {"model": "metainfo.source", "pk": 902, "fields": {"orig_filename": "Suppan_Carl-Viktor_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 52f.", "author": "", "orig_id": 1436330}}, {"model": "metainfo.source", "pk": 903, "fields": {"orig_filename": "Suppan_Joachim_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 53", "author": "", "orig_id": 1436332}}, {"model": "metainfo.source", "pk": 904, "fields": {"orig_filename": "Suppan_Josef_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 53f.", "author": "", "orig_id": 1436213}}, {"model": "metainfo.source", "pk": 905, "fields": {"orig_filename": "Suppe_Franz_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 56f.", "author": "", "orig_id": 1432376}}, {"model": "metainfo.source", "pk": 906, "fields": {"orig_filename": "Sup_Prokop-Bartolomej_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 50f.", "author": "", "orig_id": 1435976}}, {"model": "metainfo.source", "pk": 907, "fields": {"orig_filename": "Suranyi_Janos_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435568}}, {"model": "metainfo.source", "pk": 908, "fields": {"orig_filename": "Surmin_Duro_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 57", "author": "", "orig_id": 1435569}}, {"model": "metainfo.source", "pk": 909, "fields": {"orig_filename": "Susan_Johann_1796_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 57f.", "author": "", "orig_id": 1435630}}, {"model": "metainfo.source", "pk": 910, "fields": {"orig_filename": "Suschitzky_Philipp_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 58", "author": "", "orig_id": 1454373}}, {"model": "metainfo.source", "pk": 911, "fields": {"orig_filename": "Suschitzky_Wilhelm_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 58f.", "author": "", "orig_id": 1432377}}, {"model": "metainfo.source", "pk": 912, "fields": {"orig_filename": "Susil_Frantisek_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 59", "author": "", "orig_id": 1435643}}, {"model": "metainfo.source", "pk": 913, "fields": {"orig_filename": "Suske_Ferdinand_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 59f.", "author": "", "orig_id": 1435695}}, {"model": "metainfo.source", "pk": 914, "fields": {"orig_filename": "Sussin_Mathilde_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 60", "author": "", "orig_id": 1449942}}, {"model": "metainfo.source", "pk": 915, "fields": {"orig_filename": "Susta_Josef_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 60f.", "author": "", "orig_id": 1435752}}, {"model": "metainfo.source", "pk": 916, "fields": {"orig_filename": "Susta_Josef_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 61f.", "author": "", "orig_id": 1435754}}, {"model": "metainfo.source", "pk": 917, "fields": {"orig_filename": "Susta_Vaclav_1871_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2145126}}, {"model": "metainfo.source", "pk": 918, "fields": {"orig_filename": "Sustek_Daniel_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435756}}, {"model": "metainfo.source", "pk": 919, "fields": {"orig_filename": "Sustersic_Ivan_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 62", "author": "", "orig_id": 1435765}}, {"model": "metainfo.source", "pk": 920, "fields": {"orig_filename": "Sust_Janez_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2152139}}, {"model": "metainfo.source", "pk": 921, "fields": {"orig_filename": "Sutnar_Jaroslav_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 62f.", "author": "", "orig_id": 1435809}}, {"model": "metainfo.source", "pk": 922, "fields": {"orig_filename": "Sutter_Joseph_1781_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 63", "author": "", "orig_id": 1435864}}, {"model": "metainfo.source", "pk": 923, "fields": {"orig_filename": "Suttner_Arthur-Gundaccar_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 63f.", "author": "", "orig_id": 1435868}}, {"model": "metainfo.source", "pk": 924, "fields": {"orig_filename": "Suttner_Bertha_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64f.", "author": "", "orig_id": 1431923}}, {"model": "metainfo.source", "pk": 925, "fields": {"orig_filename": "Suttner_Johann_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 65f.", "author": "", "orig_id": 1868058}}, {"model": "metainfo.source", "pk": 926, "fields": {"orig_filename": "Suttner_Karl-Gundaccar_1819_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64", "author": "", "orig_id": 1469416}}, {"model": "metainfo.source", "pk": 927, "fields": {"orig_filename": "Suttner_Marie-Louise_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64", "author": "", "orig_id": 1435928}}, {"model": "metainfo.source", "pk": 928, "fields": {"orig_filename": "Svab-Malostransky_Josef_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1437357}}, {"model": "metainfo.source", "pk": 929, "fields": {"orig_filename": "Svab_Karel_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2292637}}, {"model": "metainfo.source", "pk": 930, "fields": {"orig_filename": "Svaiczer_Gabor_1784_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 66", "author": "", "orig_id": 1436056}}, {"model": "metainfo.source", "pk": 931, "fields": {"orig_filename": "Svambera_Vaclav_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 66f.", "author": "", "orig_id": 1436058}}, {"model": "metainfo.source", "pk": 932, "fields": {"orig_filename": "Svanda-Semcic_Karel_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 67", "author": "", "orig_id": 1825501}}, {"model": "metainfo.source", "pk": 933, "fields": {"orig_filename": "Svanda-Semcic_Pavel_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 67f.", "author": "", "orig_id": 1436097}}, {"model": "metainfo.source", "pk": 934, "fields": {"orig_filename": "Svanda-Semcic_Pavel_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 2007184}}, {"model": "metainfo.source", "pk": 935, "fields": {"orig_filename": "Svatek_Josef-Jan_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 1436110}}, {"model": "metainfo.source", "pk": 936, "fields": {"orig_filename": "Svatek_Josef_1835_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 1436111}}, {"model": "metainfo.source", "pk": 937, "fields": {"orig_filename": "Svatova_Tereza_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68f.", "author": "", "orig_id": 1825456}}, {"model": "metainfo.source", "pk": 938, "fields": {"orig_filename": "Sveceny_Antonin_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 69", "author": "", "orig_id": 1436161}}, {"model": "metainfo.source", "pk": 939, "fields": {"orig_filename": "Svehla_Antonin_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 69f.", "author": "", "orig_id": 1436164}}, {"model": "metainfo.source", "pk": 940, "fields": {"orig_filename": "Svenda_Frantisek-De-Paula_1741_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 70", "author": "", "orig_id": 1436165}}, {"model": "metainfo.source", "pk": 941, "fields": {"orig_filename": "Svenk_Karel_1917_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436166}}, {"model": "metainfo.source", "pk": 942, "fields": {"orig_filename": "Svetec_Luka_1826_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71", "author": "", "orig_id": 1436171}}, {"model": "metainfo.source", "pk": 943, "fields": {"orig_filename": "Svetlin_Wilhelm_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71", "author": "", "orig_id": 1436179}}, {"model": "metainfo.source", "pk": 944, "fields": {"orig_filename": "Sviha_Karel_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71f.", "author": "", "orig_id": 1436220}}, {"model": "metainfo.source", "pk": 945, "fields": {"orig_filename": "Svitil_Johann_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 72", "author": "", "orig_id": 1436225}}, {"model": "metainfo.source", "pk": 946, "fields": {"orig_filename": "Svoboda_Adalbert_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 72f.", "author": "", "orig_id": 1436231}}, {"model": "metainfo.source", "pk": 947, "fields": {"orig_filename": "Svoboda_Anton-Dobroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 73f.", "author": "", "orig_id": 1436237}}, {"model": "metainfo.source", "pk": 948, "fields": {"orig_filename": "Svoboda_Frantisek-Jan_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 74", "author": "", "orig_id": 1436295}}, {"model": "metainfo.source", "pk": 949, "fields": {"orig_filename": "Svoboda_Frantisek-Xav_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 75", "author": "", "orig_id": 1436290}}, {"model": "metainfo.source", "pk": 950, "fields": {"orig_filename": "Svoboda_Jindrich_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 75f.", "author": "", "orig_id": 1436343}}, {"model": "metainfo.source", "pk": 951, "fields": {"orig_filename": "Svoboda_Johann_1803_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 73", "author": "", "orig_id": 1436344}}, {"model": "metainfo.source", "pk": 952, "fields": {"orig_filename": "Svoboda_Josef_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436349}}, {"model": "metainfo.source", "pk": 953, "fields": {"orig_filename": "Svoboda_Karl_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 76", "author": "", "orig_id": 1436397}}, {"model": "metainfo.source", "pk": 954, "fields": {"orig_filename": "Svoboda_Vaclav-Alois_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 76f.", "author": "", "orig_id": 1435513}}, {"model": "metainfo.source", "pk": 955, "fields": {"orig_filename": "Svoboda_Vaclav_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435511}}, {"model": "metainfo.source", "pk": 956, "fields": {"orig_filename": "Svobodova-Goldmannova_Frantiska_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 74", "author": "", "orig_id": 2169822}}, {"model": "metainfo.source", "pk": 957, "fields": {"orig_filename": "Svobodova_Ruzena_1868_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 77", "author": "", "orig_id": 1435509}}, {"model": "metainfo.source", "pk": 958, "fields": {"orig_filename": "Svozil_Josef_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 77f.", "author": "", "orig_id": 1435522}}, {"model": "metainfo.source", "pk": 959, "fields": {"orig_filename": "Swensson_Carl-Gustav_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 78f.", "author": "", "orig_id": 1435577}}, {"model": "metainfo.source", "pk": 960, "fields": {"orig_filename": "Swerts_Jan_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 79", "author": "", "orig_id": 1435578}}, {"model": "metainfo.source", "pk": 961, "fields": {"orig_filename": "Sweth_Kajetan_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 79f.", "author": "", "orig_id": 1435579}}, {"model": "metainfo.source", "pk": 962, "fields": {"orig_filename": "Swida_Franz_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 80", "author": "", "orig_id": 1440818}}, {"model": "metainfo.source", "pk": 963, "fields": {"orig_filename": "Swierkiewicz_Edward_1808_1875.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1447981}}, {"model": "metainfo.source", "pk": 964, "fields": {"orig_filename": "Swiezy_Ignaz_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 80f.", "author": "", "orig_id": 1435586}}, {"model": "metainfo.source", "pk": 965, "fields": {"orig_filename": "Swoboda_Adalbert-Constantin_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 81", "author": "", "orig_id": 1433206}}, {"model": "metainfo.source", "pk": 966, "fields": {"orig_filename": "Swoboda_Albin_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 81f.", "author": "", "orig_id": 1432917}}, {"model": "metainfo.source", "pk": 967, "fields": {"orig_filename": "Swoboda_August_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82f.", "author": "", "orig_id": 1436238}}, {"model": "metainfo.source", "pk": 968, "fields": {"orig_filename": "Swoboda_Eduard_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 83", "author": "", "orig_id": 1432379}}, {"model": "metainfo.source", "pk": 969, "fields": {"orig_filename": "Swoboda_Emerich-Alexius_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 83f.", "author": "", "orig_id": 1405674}}, {"model": "metainfo.source", "pk": 970, "fields": {"orig_filename": "Swoboda_Ernst_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 84f.", "author": "", "orig_id": 1436288}}, {"model": "metainfo.source", "pk": 971, "fields": {"orig_filename": "Swoboda_Franz_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 85", "author": "", "orig_id": 1436294}}, {"model": "metainfo.source", "pk": 972, "fields": {"orig_filename": "Swoboda_Friederike_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82", "author": "", "orig_id": 1450020}}, {"model": "metainfo.source", "pk": 973, "fields": {"orig_filename": "Swoboda_Heinrich_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 85f.", "author": "", "orig_id": 1436339}}, {"model": "metainfo.source", "pk": 974, "fields": {"orig_filename": "Swoboda_Heinrich_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 86", "author": "", "orig_id": 1436340}}, {"model": "metainfo.source", "pk": 975, "fields": {"orig_filename": "Swoboda_Josefine_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 87f.", "author": "", "orig_id": 1436396}}, {"model": "metainfo.source", "pk": 976, "fields": {"orig_filename": "Swoboda_Josef_1806_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 87", "author": "", "orig_id": 1436395}}, {"model": "metainfo.source", "pk": 977, "fields": {"orig_filename": "Swoboda_Karl_1882_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 88", "author": "", "orig_id": 1436398}}, {"model": "metainfo.source", "pk": 978, "fields": {"orig_filename": "Swoboda_Margarete_1872_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82", "author": "", "orig_id": 1436403}}, {"model": "metainfo.source", "pk": 979, "fields": {"orig_filename": "Swoboda_Rudolf_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 88f.", "author": "", "orig_id": 1435508}}, {"model": "metainfo.source", "pk": 980, "fields": {"orig_filename": "Swoboda_Rudolph_1819_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 89", "author": "", "orig_id": 1435507}}, {"model": "metainfo.source", "pk": 981, "fields": {"orig_filename": "Swoboda_Wenzel_1772_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 89f.", "author": "", "orig_id": 1435512}}, {"model": "metainfo.source", "pk": 982, "fields": {"orig_filename": "Sychra_Josef-Cyril_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90f.", "author": "", "orig_id": 2163157}}, {"model": "metainfo.source", "pk": 983, "fields": {"orig_filename": "Sychra_Matej-Josef_1776_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90", "author": "", "orig_id": 1435656}}, {"model": "metainfo.source", "pk": 984, "fields": {"orig_filename": "Sychra_Method-Lumir_1884_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91", "author": "", "orig_id": 2163168}}, {"model": "metainfo.source", "pk": 985, "fields": {"orig_filename": "Sychra_Vaclav_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90f.", "author": "", "orig_id": 1435653}}, {"model": "metainfo.source", "pk": 986, "fields": {"orig_filename": "Sykora_Karl_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91", "author": "", "orig_id": 1435767}}, {"model": "metainfo.source", "pk": 987, "fields": {"orig_filename": "Syllaba_Ladislav_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91f.", "author": "", "orig_id": 1435770}}, {"model": "metainfo.source", "pk": 988, "fields": {"orig_filename": "Sylvester_Hans_1897_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 92f.", "author": "", "orig_id": 1435774}}, {"model": "metainfo.source", "pk": 989, "fields": {"orig_filename": "Sylvester_Julius_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 93", "author": "", "orig_id": 1435948}}, {"model": "metainfo.source", "pk": 990, "fields": {"orig_filename": "Symersky_Josef_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 94", "author": "", "orig_id": 1435817}}, {"model": "metainfo.source", "pk": 991, "fields": {"orig_filename": "Sym_Igo_1896_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 93f.", "author": "", "orig_id": 1450023}}, {"model": "metainfo.source", "pk": 992, "fields": {"orig_filename": "Synek_Adolf_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2171789}}, {"model": "metainfo.source", "pk": 993, "fields": {"orig_filename": "Synek_Karel_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2292750}}, {"model": "metainfo.source", "pk": 994, "fields": {"orig_filename": "Stuermer_Karl_1792_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445f.", "author": "", "orig_id": 1433166}}, {"model": "metainfo.source", "pk": 995, "fields": {"orig_filename": "Stuerzer_Rudolf_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 446", "author": "", "orig_id": 1433167}}, {"model": "metainfo.source", "pk": 996, "fields": {"orig_filename": "Stuflesser_Ferdinand_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 446f.", "author": "", "orig_id": 1433095}}, {"model": "metainfo.source", "pk": 997, "fields": {"orig_filename": "Stukart_Moriz_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 447", "author": "", "orig_id": 1432965}}, {"model": "metainfo.source", "pk": 998, "fields": {"orig_filename": "Stulc_Vaclav_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 447f.", "author": "", "orig_id": 1433235}}, {"model": "metainfo.source", "pk": 999, "fields": {"orig_filename": "Stulli_Gioachino_1729_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 448", "author": "", "orig_id": 1433237}}, {"model": "metainfo.source", "pk": 1000, "fields": {"orig_filename": "Stulli_Luca_1772_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1", "author": "", "orig_id": 1433238}}, {"model": "metainfo.source", "pk": 1001, "fields": {"orig_filename": "Stummer-Tavarnok_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1f.", "author": "", "orig_id": 1433311}}, {"model": "metainfo.source", "pk": 1002, "fields": {"orig_filename": "Stummer-Tavarnok_August-Wilhelm_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 2", "author": "", "orig_id": 1433417}}, {"model": "metainfo.source", "pk": 1003, "fields": {"orig_filename": "Stummer-Traunfels_Josef-Mauritius_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 2f.", "author": "", "orig_id": 1433465}}, {"model": "metainfo.source", "pk": 1004, "fields": {"orig_filename": "Stummer-Traunfels_Robert_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3", "author": "", "orig_id": 1935819}}, {"model": "metainfo.source", "pk": 1005, "fields": {"orig_filename": "Stummer-Traunfels_Rudolf_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3", "author": "", "orig_id": 1433466}}, {"model": "metainfo.source", "pk": 1006, "fields": {"orig_filename": "Stummer_Karl_1825_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1f.", "author": "", "orig_id": 1433243}}, {"model": "metainfo.source", "pk": 1007, "fields": {"orig_filename": "Stumpf-Brentano_Karl-Friedrich_1829_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 4f.", "author": "", "orig_id": 1433476}}, {"model": "metainfo.source", "pk": 1008, "fields": {"orig_filename": "Stumpf_Franz_1876_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3f.", "author": "", "orig_id": 1433471}}, {"model": "metainfo.source", "pk": 1009, "fields": {"orig_filename": "Stundl_Theodor_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 5", "author": "", "orig_id": 1433524}}, {"model": "metainfo.source", "pk": 1010, "fields": {"orig_filename": "Stuparich_Carlo_1894_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 5", "author": "", "orig_id": 1433531}}, {"model": "metainfo.source", "pk": 1011, "fields": {"orig_filename": "Stuparich_Giani_1891_1961.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1978680}}, {"model": "metainfo.source", "pk": 1012, "fields": {"orig_filename": "Stupecky_Josef_1848_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6", "author": "", "orig_id": 1433533}}, {"model": "metainfo.source", "pk": 1013, "fields": {"orig_filename": "Stupka_Walter_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6", "author": "", "orig_id": 1433583}}, {"model": "metainfo.source", "pk": 1014, "fields": {"orig_filename": "Stupper_Carl_1808_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6f.", "author": "", "orig_id": 1433592}}, {"model": "metainfo.source", "pk": 1015, "fields": {"orig_filename": "Sturany_Johann_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1840197}}, {"model": "metainfo.source", "pk": 1016, "fields": {"orig_filename": "Sturany_Josef_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1840203}}, {"model": "metainfo.source", "pk": 1017, "fields": {"orig_filename": "Sturany_Moritz_1862_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1432753}}, {"model": "metainfo.source", "pk": 1018, "fields": {"orig_filename": "Sturany_Rudolf_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 11", "author": "", "orig_id": 1430742}}, {"model": "metainfo.source", "pk": 1019, "fields": {"orig_filename": "Sturm-Skrla_Egge_1894_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 15", "author": "", "orig_id": 1432929}}, {"model": "metainfo.source", "pk": 1020, "fields": {"orig_filename": "Sturm_Albert_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 11f.", "author": "", "orig_id": 1432754}}, {"model": "metainfo.source", "pk": 1021, "fields": {"orig_filename": "Sturm_Ambros_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 12", "author": "", "orig_id": 1432756}}, {"model": "metainfo.source", "pk": 1022, "fields": {"orig_filename": "Sturm_Anton_1787_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 12", "author": "", "orig_id": 1432757}}, {"model": "metainfo.source", "pk": 1023, "fields": {"orig_filename": "Sturm_Eduard_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 13", "author": "", "orig_id": 1432797}}, {"model": "metainfo.source", "pk": 1024, "fields": {"orig_filename": "Sturm_Friedrich_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 13f.", "author": "", "orig_id": 1432803}}, {"model": "metainfo.source", "pk": 1025, "fields": {"orig_filename": "Sturm_Georg_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 14", "author": "", "orig_id": 1432808}}, {"model": "metainfo.source", "pk": 1026, "fields": {"orig_filename": "Sturm_Josef_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 14f.", "author": "", "orig_id": 1432920}}, {"model": "metainfo.source", "pk": 1027, "fields": {"orig_filename": "Stursa_Jan_1880_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 15f.", "author": "", "orig_id": 1433054}}, {"model": "metainfo.source", "pk": 1028, "fields": {"orig_filename": "Stur_Dionys_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 7", "author": "", "orig_id": 1432686}}, {"model": "metainfo.source", "pk": 1029, "fields": {"orig_filename": "Stur_Jan_1895_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 7f.", "author": "", "orig_id": 1432690}}, {"model": "metainfo.source", "pk": 1030, "fields": {"orig_filename": "Stur_Karl_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 8f.", "author": "", "orig_id": 1432745}}, {"model": "metainfo.source", "pk": 1031, "fields": {"orig_filename": "Stur_Karol_1811_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9", "author": "", "orig_id": 1432696}}, {"model": "metainfo.source", "pk": 1032, "fields": {"orig_filename": "Stur_Ludovit_1815_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9f.", "author": "", "orig_id": 1432751}}, {"model": "metainfo.source", "pk": 1033, "fields": {"orig_filename": "Stur_Samuel_1789_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9", "author": "", "orig_id": 1995250}}, {"model": "metainfo.source", "pk": 1034, "fields": {"orig_filename": "Stutterheim_Alfred_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 16", "author": "", "orig_id": 1840215}}, {"model": "metainfo.source", "pk": 1035, "fields": {"orig_filename": "Stutterheim_Johann_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17", "author": "", "orig_id": 1433106}}, {"model": "metainfo.source", "pk": 1036, "fields": {"orig_filename": "Stutterheim_Joseph_1764_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 16f.", "author": "", "orig_id": 1433107}}, {"model": "metainfo.source", "pk": 1037, "fields": {"orig_filename": "Stuwer_Anton_1804_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17f.", "author": "", "orig_id": 1433111}}, {"model": "metainfo.source", "pk": 1038, "fields": {"orig_filename": "Stuwer_Anton_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17f.", "author": "", "orig_id": 1433110}}, {"model": "metainfo.source", "pk": 1039, "fields": {"orig_filename": "Stwertka_Julius_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 18", "author": "", "orig_id": 1433117}}, {"model": "metainfo.source", "pk": 1040, "fields": {"orig_filename": "Stwrtnik_Augustin-Wenzeslaus_1755_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 19", "author": "", "orig_id": 1433185}}, {"model": "metainfo.source", "pk": 1041, "fields": {"orig_filename": "Stwrtnik_Augustin_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 18f.", "author": "", "orig_id": 1433186}}, {"model": "metainfo.source", "pk": 1042, "fields": {"orig_filename": "Styblo_Bedrich_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 19f.", "author": "", "orig_id": 1825264}}, {"model": "metainfo.source", "pk": 1043, "fields": {"orig_filename": "Styka_Jan_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 20", "author": "", "orig_id": 1433194}}, {"model": "metainfo.source", "pk": 1044, "fields": {"orig_filename": "Styrsky_Jindrich_1899_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 20f.", "author": "", "orig_id": 1433196}}, {"model": "metainfo.source", "pk": 1045, "fields": {"orig_filename": "Subak_Julius_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 21f.", "author": "", "orig_id": 1433380}}, {"model": "metainfo.source", "pk": 1046, "fields": {"orig_filename": "Subert_Frantisek-Adolf_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 22f.", "author": "", "orig_id": 1433419}}, {"model": "metainfo.source", "pk": 1047, "fields": {"orig_filename": "Subic_Ivan_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 25", "author": "", "orig_id": 2162055}}, {"model": "metainfo.source", "pk": 1048, "fields": {"orig_filename": "Subic_Janez_1850_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 23", "author": "", "orig_id": 1965644}}, {"model": "metainfo.source", "pk": 1049, "fields": {"orig_filename": "Subic_Jurij_1855_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 23f.", "author": "", "orig_id": 1433429}}, {"model": "metainfo.source", "pk": 1050, "fields": {"orig_filename": "Subic_Simon_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 24", "author": "", "orig_id": 1433431}}, {"model": "metainfo.source", "pk": 1051, "fields": {"orig_filename": "Subic_Vladimir_1894_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 24f.", "author": "", "orig_id": 1980230}}, {"model": "metainfo.source", "pk": 1052, "fields": {"orig_filename": "Succovaty-Vezza_Eduard_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 25f.", "author": "", "orig_id": 1433480}}, {"model": "metainfo.source", "pk": 1053, "fields": {"orig_filename": "Sucharda_Edward_1891_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 26", "author": "", "orig_id": 2133057}}, {"model": "metainfo.source", "pk": 1054, "fields": {"orig_filename": "Sucharda_Stanislav_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 26f.", "author": "", "orig_id": 1433542}}, {"model": "metainfo.source", "pk": 1055, "fields": {"orig_filename": "Suchecki_Henryk-Ignacy_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 27", "author": "", "orig_id": 1433544}}, {"model": "metainfo.source", "pk": 1056, "fields": {"orig_filename": "Sucher_Joseph_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 27f.", "author": "", "orig_id": 1433549}}, {"model": "metainfo.source", "pk": 1057, "fields": {"orig_filename": "Sucher_Rosa_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 28", "author": "", "orig_id": 2193480}}, {"model": "metainfo.source", "pk": 1058, "fields": {"orig_filename": "Suchsland_Leopold_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 28f.", "author": "", "orig_id": 1433595}}, {"model": "metainfo.source", "pk": 1059, "fields": {"orig_filename": "Suchy_Adalbert_1783_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 29", "author": "", "orig_id": 1433283}}, {"model": "metainfo.source", "pk": 1060, "fields": {"orig_filename": "Suchy_Carl_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 29f.", "author": "", "orig_id": 1433284}}, {"model": "metainfo.source", "pk": 1061, "fields": {"orig_filename": "Suchy_Franz_1860_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 30", "author": "", "orig_id": 1433285}}, {"model": "metainfo.source", "pk": 1062, "fields": {"orig_filename": "Suck_Rosa_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 30f.", "author": "", "orig_id": 1433339}}, {"model": "metainfo.source", "pk": 1063, "fields": {"orig_filename": "Suda_Stanislav_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 31", "author": "", "orig_id": 1472590}}, {"model": "metainfo.source", "pk": 1064, "fields": {"orig_filename": "Suess-Hellrat_Friedrich_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 37", "author": "", "orig_id": 1453182}}, {"model": "metainfo.source", "pk": 1065, "fields": {"orig_filename": "Suessemilch_Gustav_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432835}}, {"model": "metainfo.source", "pk": 1066, "fields": {"orig_filename": "Suessmann_Hermann_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36f.", "author": "", "orig_id": 1435904}}, {"model": "metainfo.source", "pk": 1067, "fields": {"orig_filename": "Suess_Adolph-Heinrich_1797_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 31f.", "author": "", "orig_id": 1432723}}, {"model": "metainfo.source", "pk": 1068, "fields": {"orig_filename": "Suess_Eduard_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 32f.", "author": "", "orig_id": 1427985}}, {"model": "metainfo.source", "pk": 1069, "fields": {"orig_filename": "Suess_Franz-Eduard_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 33f.", "author": "", "orig_id": 1432724}}, {"model": "metainfo.source", "pk": 1070, "fields": {"orig_filename": "Suess_Friedrich_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 34f.", "author": "", "orig_id": 1432725}}, {"model": "metainfo.source", "pk": 1071, "fields": {"orig_filename": "Suess_Maria-Vincenz_1802_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 35", "author": "", "orig_id": 1432831}}, {"model": "metainfo.source", "pk": 1072, "fields": {"orig_filename": "Suess_Martin_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432783}}, {"model": "metainfo.source", "pk": 1073, "fields": {"orig_filename": "Suess_Nandor_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 35", "author": "", "orig_id": 1458216}}, {"model": "metainfo.source", "pk": 1074, "fields": {"orig_filename": "Suess_Walter_1905_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36", "author": "", "orig_id": 1424426}}, {"model": "metainfo.source", "pk": 1075, "fields": {"orig_filename": "Suess_Walter_1912_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36", "author": "", "orig_id": 1437731}}, {"model": "metainfo.source", "pk": 1076, "fields": {"orig_filename": "Sufflay_Milan_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 37f.", "author": "", "orig_id": 1435959}}, {"model": "metainfo.source", "pk": 1077, "fields": {"orig_filename": "Sugar_Nikolaus_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 38f.", "author": "", "orig_id": 1436138}}, {"model": "metainfo.source", "pk": 1078, "fields": {"orig_filename": "Suhajda_Ludovit-Matej_1806_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 39", "author": "", "orig_id": 1436144}}, {"model": "metainfo.source", "pk": 1079, "fields": {"orig_filename": "Suhayda_Janos_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 39f.", "author": "", "orig_id": 1436147}}, {"model": "metainfo.source", "pk": 1080, "fields": {"orig_filename": "Suida_Wilhelm_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 40", "author": "", "orig_id": 1436194}}, {"model": "metainfo.source", "pk": 1081, "fields": {"orig_filename": "Sujanszky_Anton_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 40f.", "author": "", "orig_id": 1436256}}, {"model": "metainfo.source", "pk": 1082, "fields": {"orig_filename": "Suklje_Fran_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 42", "author": "", "orig_id": 1436318}}, {"model": "metainfo.source", "pk": 1083, "fields": {"orig_filename": "Sukup_Max_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436366}}, {"model": "metainfo.source", "pk": 1084, "fields": {"orig_filename": "Suk_Josef_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 41", "author": "", "orig_id": 1436260}}, {"model": "metainfo.source", "pk": 1085, "fields": {"orig_filename": "Suk_Vaclav-Frantisek_1883_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 41f.", "author": "", "orig_id": 1825410}}, {"model": "metainfo.source", "pk": 1086, "fields": {"orig_filename": "Sulc_Otakar_1869_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 42f.", "author": "", "orig_id": 1436375}}, {"model": "metainfo.source", "pk": 1087, "fields": {"orig_filename": "Sulek_Bohuslav-Karol_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 43f.", "author": "", "orig_id": 1436379}}, {"model": "metainfo.source", "pk": 1088, "fields": {"orig_filename": "Sulek_Jan_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 43", "author": "", "orig_id": 1436381}}, {"model": "metainfo.source", "pk": 1089, "fields": {"orig_filename": "Sulke_Rudolf_1885_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2052674}}, {"model": "metainfo.source", "pk": 1090, "fields": {"orig_filename": "Sulzboeck_Amandus_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 44", "author": "", "orig_id": 1435547}}, {"model": "metainfo.source", "pk": 1091, "fields": {"orig_filename": "Sulzer_Henriette_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435551}}, {"model": "metainfo.source", "pk": 1092, "fields": {"orig_filename": "Sulzer_Joseph_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435687}}, {"model": "metainfo.source", "pk": 1093, "fields": {"orig_filename": "Sulzer_Julius_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435688}}, {"model": "metainfo.source", "pk": 1094, "fields": {"orig_filename": "Sulzer_Marie_1828_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435691}}, {"model": "metainfo.source", "pk": 1095, "fields": {"orig_filename": "Sulzer_Rudolf_1883_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435737}}, {"model": "metainfo.source", "pk": 1096, "fields": {"orig_filename": "Sulzer_Salomon_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45f.", "author": "", "orig_id": 1435738}}, {"model": "metainfo.source", "pk": 1097, "fields": {"orig_filename": "Sulzer_Sophie_1840_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435746}}, {"model": "metainfo.source", "pk": 1098, "fields": {"orig_filename": "Sumanovic_Sava_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 47f.", "author": "", "orig_id": 1999359}}, {"model": "metainfo.source", "pk": 1099, "fields": {"orig_filename": "Strele_Anton_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 396f.", "author": "", "orig_id": 1419706}}, {"model": "metainfo.source", "pk": 1100, "fields": {"orig_filename": "Strele_Georg_1861_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 397f.", "author": "", "orig_id": 1433978}}, {"model": "metainfo.source", "pk": 1101, "fields": {"orig_filename": "Strelli_Richard_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 398", "author": "", "orig_id": 1434206}}, {"model": "metainfo.source", "pk": 1102, "fields": {"orig_filename": "Stremayr_Karl_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 398f.", "author": "", "orig_id": 1434209}}, {"model": "metainfo.source", "pk": 1103, "fields": {"orig_filename": "Strepponi_Feliciano_1797_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 399", "author": "", "orig_id": 1434215}}, {"model": "metainfo.source", "pk": 1104, "fields": {"orig_filename": "Strepponi_Giuseppina_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 399", "author": "", "orig_id": 1434216}}, {"model": "metainfo.source", "pk": 1105, "fields": {"orig_filename": "Streussenberger_Franz_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400", "author": "", "orig_id": 1432934}}, {"model": "metainfo.source", "pk": 1106, "fields": {"orig_filename": "Strezek_Franz-K_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400", "author": "", "orig_id": 1434256}}, {"model": "metainfo.source", "pk": 1107, "fields": {"orig_filename": "Stricker_Robert_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400f.", "author": "", "orig_id": 1434317}}, {"model": "metainfo.source", "pk": 1108, "fields": {"orig_filename": "Stricker_Salomon_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 401f.", "author": "", "orig_id": 1434320}}, {"model": "metainfo.source", "pk": 1109, "fields": {"orig_filename": "Strickner_Anton_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402f.", "author": "", "orig_id": 1434324}}, {"model": "metainfo.source", "pk": 1110, "fields": {"orig_filename": "Strickner_Anton_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402f.", "author": "", "orig_id": 1447295}}, {"model": "metainfo.source", "pk": 1111, "fields": {"orig_filename": "Strickner_Franz_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402", "author": "", "orig_id": 2106134}}, {"model": "metainfo.source", "pk": 1112, "fields": {"orig_filename": "Strickner_Joseph-Leopold_1744_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403", "author": "", "orig_id": 1434327}}, {"model": "metainfo.source", "pk": 1113, "fields": {"orig_filename": "Strictius_Ludwig_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403", "author": "", "orig_id": 1434328}}, {"model": "metainfo.source", "pk": 1114, "fields": {"orig_filename": "Strigl_Richard_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403f.", "author": "", "orig_id": 1434392}}, {"model": "metainfo.source", "pk": 1115, "fields": {"orig_filename": "Strigl_Theres_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 404", "author": "", "orig_id": 1447651}}, {"model": "metainfo.source", "pk": 1116, "fields": {"orig_filename": "Strindberg_Frida_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 404f.", "author": "", "orig_id": 1427845}}, {"model": "metainfo.source", "pk": 1117, "fields": {"orig_filename": "Stringari_Remo_1879_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 405", "author": "", "orig_id": 1434395}}, {"model": "metainfo.source", "pk": 1118, "fields": {"orig_filename": "Strisower_Leo_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 405f.", "author": "", "orig_id": 1434396}}, {"model": "metainfo.source", "pk": 1119, "fields": {"orig_filename": "Stritar_Josip_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 406f.", "author": "", "orig_id": 1434397}}, {"model": "metainfo.source", "pk": 1120, "fields": {"orig_filename": "Stritof_Anton_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407", "author": "", "orig_id": 1825120}}, {"model": "metainfo.source", "pk": 1121, "fields": {"orig_filename": "Stritof_Niko_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407f.", "author": "", "orig_id": 1434399}}, {"model": "metainfo.source", "pk": 1122, "fields": {"orig_filename": "Stritt_Marie_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407f.", "author": "", "orig_id": 1434445}}, {"model": "metainfo.source", "pk": 1123, "fields": {"orig_filename": "Strnadt_Julius_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 409f.", "author": "", "orig_id": 1434514}}, {"model": "metainfo.source", "pk": 1124, "fields": {"orig_filename": "Strnad_Josef_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 408", "author": "", "orig_id": 1825261}}, {"model": "metainfo.source", "pk": 1125, "fields": {"orig_filename": "Strnad_Oskar_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 408f.", "author": "", "orig_id": 1434510}}, {"model": "metainfo.source", "pk": 1126, "fields": {"orig_filename": "Strobach-Kleisberg_Josef_1803_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 412", "author": "", "orig_id": 1433654}}, {"model": "metainfo.source", "pk": 1127, "fields": {"orig_filename": "Strobach_Antonin_1814_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410", "author": "", "orig_id": 1433645}}, {"model": "metainfo.source", "pk": 1128, "fields": {"orig_filename": "Strobach_Franz_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410f.", "author": "", "orig_id": 1433646}}, {"model": "metainfo.source", "pk": 1129, "fields": {"orig_filename": "Strobach_Josef-Karl_1852_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 411", "author": "", "orig_id": 1433647}}, {"model": "metainfo.source", "pk": 1130, "fields": {"orig_filename": "Strobach_Josef_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410f.", "author": "", "orig_id": 2003924}}, {"model": "metainfo.source", "pk": 1131, "fields": {"orig_filename": "Strobach_Paul_1776_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 411f.", "author": "", "orig_id": 1433650}}, {"model": "metainfo.source", "pk": 1132, "fields": {"orig_filename": "Strobach_Zdenek_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410", "author": "", "orig_id": 1433653}}, {"model": "metainfo.source", "pk": 1133, "fields": {"orig_filename": "Strobel_Peregrin_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 412f.", "author": "", "orig_id": 1433659}}, {"model": "metainfo.source", "pk": 1134, "fields": {"orig_filename": "Strobentz_Frigyes_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 413", "author": "", "orig_id": 1433703}}, {"model": "metainfo.source", "pk": 1135, "fields": {"orig_filename": "Strobl-Ravelsberg_Ferdinand_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417", "author": "", "orig_id": 1433831}}, {"model": "metainfo.source", "pk": 1136, "fields": {"orig_filename": "Strobl_Alajos_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 413f.", "author": "", "orig_id": 1433706}}, {"model": "metainfo.source", "pk": 1137, "fields": {"orig_filename": "Strobl_Gabriel_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 414f.", "author": "", "orig_id": 1430743}}, {"model": "metainfo.source", "pk": 1138, "fields": {"orig_filename": "Strobl_Johann_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 415", "author": "", "orig_id": 1433714}}, {"model": "metainfo.source", "pk": 1139, "fields": {"orig_filename": "Strobl_Joseph_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 415f.", "author": "", "orig_id": 1433715}}, {"model": "metainfo.source", "pk": 1140, "fields": {"orig_filename": "Strobl_Karl-Hans_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 416f.", "author": "", "orig_id": 1433768}}, {"model": "metainfo.source", "pk": 1141, "fields": {"orig_filename": "Strobl_Richard_1874_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417", "author": "", "orig_id": 1465412}}, {"model": "metainfo.source", "pk": 1142, "fields": {"orig_filename": "Strobl_Zsofia_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 414", "author": "", "orig_id": 1455270}}, {"model": "metainfo.source", "pk": 1143, "fields": {"orig_filename": "Stroehl_Hugo-Gerard_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417f.", "author": "", "orig_id": 1433880}}, {"model": "metainfo.source", "pk": 1144, "fields": {"orig_filename": "Stroehmer_Ludwig_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 418f.", "author": "", "orig_id": 1433881}}, {"model": "metainfo.source", "pk": 1145, "fields": {"orig_filename": "Strohal_Emil-August_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 420", "author": "", "orig_id": 1433930}}, {"model": "metainfo.source", "pk": 1146, "fields": {"orig_filename": "Strohal_Jakob_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 420f.", "author": "", "orig_id": 1433933}}, {"model": "metainfo.source", "pk": 1147, "fields": {"orig_filename": "Strohmayer_Alois_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 421", "author": "", "orig_id": 1433941}}, {"model": "metainfo.source", "pk": 1148, "fields": {"orig_filename": "Strohmayer_Anton_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 421f.", "author": "", "orig_id": 1433942}}, {"model": "metainfo.source", "pk": 1149, "fields": {"orig_filename": "Strohmayr_Otto_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 422", "author": "", "orig_id": 1433079}}, {"model": "metainfo.source", "pk": 1150, "fields": {"orig_filename": "Strohmer_Friedrich_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 422f.", "author": "", "orig_id": 1433082}}, {"model": "metainfo.source", "pk": 1151, "fields": {"orig_filename": "Stroh_Rudolf_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 419", "author": "", "orig_id": 1433886}}, {"model": "metainfo.source", "pk": 1152, "fields": {"orig_filename": "Stroh_Sebastian_1792_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 419f.", "author": "", "orig_id": 1433928}}, {"model": "metainfo.source", "pk": 1153, "fields": {"orig_filename": "Stroj_Mihael_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423", "author": "", "orig_id": 1433295}}, {"model": "metainfo.source", "pk": 1154, "fields": {"orig_filename": "Stromszky_Franz-Samuel_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423", "author": "", "orig_id": 1433159}}, {"model": "metainfo.source", "pk": 1155, "fields": {"orig_filename": "Stronski_Franciszek-Dionizij-Kaspar_1803_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423f.", "author": "", "orig_id": 1433161}}, {"model": "metainfo.source", "pk": 1156, "fields": {"orig_filename": "Strossmayer_Josip-Juraj_1815_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 425", "author": "", "orig_id": 1433228}}, {"model": "metainfo.source", "pk": 1157, "fields": {"orig_filename": "Stross_Emanuel_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433221}}, {"model": "metainfo.source", "pk": 1158, "fields": {"orig_filename": "Stross_Rudolf_1872_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433225}}, {"model": "metainfo.source", "pk": 1159, "fields": {"orig_filename": "Stross_Walter_1882_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433226}}, {"model": "metainfo.source", "pk": 1160, "fields": {"orig_filename": "Strouhal_Vincenc_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 425f.", "author": "", "orig_id": 1433232}}, {"model": "metainfo.source", "pk": 1161, "fields": {"orig_filename": "Stroupeznicka_Marie_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 426f.", "author": "", "orig_id": 1433234}}, {"model": "metainfo.source", "pk": 1162, "fields": {"orig_filename": "Stroupeznicky_Ladislav_1850_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 426f.", "author": "", "orig_id": 1433233}}, {"model": "metainfo.source", "pk": 1163, "fields": {"orig_filename": "Struber_Joseph_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 427", "author": "", "orig_id": 1433302}}, {"model": "metainfo.source", "pk": 1164, "fields": {"orig_filename": "Strucker_Jakob_1761_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 427f.", "author": "", "orig_id": 1433305}}, {"model": "metainfo.source", "pk": 1165, "fields": {"orig_filename": "Strukelj_Mihael_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 428", "author": "", "orig_id": 1433452}}, {"model": "metainfo.source", "pk": 1166, "fields": {"orig_filename": "Strupi_Simon_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 428f.", "author": "", "orig_id": 1433462}}, {"model": "metainfo.source", "pk": 1167, "fields": {"orig_filename": "Struschka_Hermann_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429", "author": "", "orig_id": 1433464}}, {"model": "metainfo.source", "pk": 1168, "fields": {"orig_filename": "Struska_Johann_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429", "author": "", "orig_id": 1433508}}, {"model": "metainfo.source", "pk": 1169, "fields": {"orig_filename": "Struszkiewicz_Jerzy_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429f.", "author": "", "orig_id": 1897706}}, {"model": "metainfo.source", "pk": 1170, "fields": {"orig_filename": "Struszkiewicz_Wladyslaw_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 430", "author": "", "orig_id": 1433509}}, {"model": "metainfo.source", "pk": 1171, "fields": {"orig_filename": "Stryjenski_Karol_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 430f.", "author": "", "orig_id": 1473826}}, {"model": "metainfo.source", "pk": 1172, "fields": {"orig_filename": "Stryjenski_Tadeusz_1849_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 431", "author": "", "orig_id": 1473825}}, {"model": "metainfo.source", "pk": 1173, "fields": {"orig_filename": "Strzelecka_Maria_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 431f.", "author": "", "orig_id": 1880578}}, {"model": "metainfo.source", "pk": 1174, "fields": {"orig_filename": "Strzelecki_Feliks-Jozef_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 432f.", "author": "", "orig_id": 1433518}}, {"model": "metainfo.source", "pk": 1175, "fields": {"orig_filename": "Strzemcha_Paul_1844_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 433", "author": "", "orig_id": 1433568}}, {"model": "metainfo.source", "pk": 1176, "fields": {"orig_filename": "Strzygowski_Franz_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 433f.", "author": "", "orig_id": 1437150}}, {"model": "metainfo.source", "pk": 1177, "fields": {"orig_filename": "Strzygowski_Josef_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 434f.", "author": "", "orig_id": 1431924}}, {"model": "metainfo.source", "pk": 1178, "fields": {"orig_filename": "Stubel_Eleonora_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1432727}}, {"model": "metainfo.source", "pk": 1179, "fields": {"orig_filename": "Stubel_Eugenie_1860_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1433574}}, {"model": "metainfo.source", "pk": 1180, "fields": {"orig_filename": "Stubel_Ludmilla-Hildegard_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 2106143}}, {"model": "metainfo.source", "pk": 1181, "fields": {"orig_filename": "Stubel_Marie_1845_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1469438}}, {"model": "metainfo.source", "pk": 1182, "fields": {"orig_filename": "Stubenberg_Anna_1821_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 436", "author": "", "orig_id": 1432733}}, {"model": "metainfo.source", "pk": 1183, "fields": {"orig_filename": "Stubenberg_Felix_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432734}}, {"model": "metainfo.source", "pk": 1184, "fields": {"orig_filename": "Stubenrauch_Leopold_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438", "author": "", "orig_id": 1432788}}, {"model": "metainfo.source", "pk": 1185, "fields": {"orig_filename": "Stubenrauch_Moriz_1811_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 437", "author": "", "orig_id": 1432789}}, {"model": "metainfo.source", "pk": 1186, "fields": {"orig_filename": "Stubenrauch_Philipp_1784_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 437f.", "author": "", "orig_id": 1432791}}, {"model": "metainfo.source", "pk": 1187, "fields": {"orig_filename": "Stuchlik_Kamil_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438", "author": "", "orig_id": 1911405}}, {"model": "metainfo.source", "pk": 1188, "fields": {"orig_filename": "Stuchlik_Konstantin_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438f.", "author": "", "orig_id": 1911393}}, {"model": "metainfo.source", "pk": 1189, "fields": {"orig_filename": "Studnicka_Alois_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 439", "author": "", "orig_id": 1433025}}, {"model": "metainfo.source", "pk": 1190, "fields": {"orig_filename": "Studnicka_Franz-Josef_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 439f.", "author": "", "orig_id": 1433027}}, {"model": "metainfo.source", "pk": 1191, "fields": {"orig_filename": "Studniczka_Franz_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 440f.", "author": "", "orig_id": 1433029}}, {"model": "metainfo.source", "pk": 1192, "fields": {"orig_filename": "Studynskyj_Kyrylo_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 441", "author": "", "orig_id": 1963747}}, {"model": "metainfo.source", "pk": 1193, "fields": {"orig_filename": "Stueber_Friedrich_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 441f.", "author": "", "orig_id": 1433093}}, {"model": "metainfo.source", "pk": 1194, "fields": {"orig_filename": "Stuedl_Johann_1839_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 442", "author": "", "orig_id": 1433094}}, {"model": "metainfo.source", "pk": 1195, "fields": {"orig_filename": "Stuelpnagel_Ernst_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 442f.", "author": "", "orig_id": 1433096}}, {"model": "metainfo.source", "pk": 1196, "fields": {"orig_filename": "Stuergkh_Josef_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443f.", "author": "", "orig_id": 1433101}}, {"model": "metainfo.source", "pk": 1197, "fields": {"orig_filename": "Stuergkh_Karl_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 444f.", "author": "", "orig_id": 1433102}}, {"model": "metainfo.source", "pk": 1198, "fields": {"orig_filename": "Stuermer_Bartholomaeus_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445", "author": "", "orig_id": 1433164}}, {"model": "metainfo.source", "pk": 1199, "fields": {"orig_filename": "Stuermer_Ignaz_1750_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445f.", "author": "", "orig_id": 1433165}}, {"model": "metainfo.source", "pk": 1200, "fields": {"orig_filename": "Strakosch-Feldringen_Georg_1898_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 351", "author": "", "orig_id": 1434485}}, {"model": "metainfo.source", "pk": 1201, "fields": {"orig_filename": "Strakosch-Feldringen_Siegfried_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 351f.", "author": "", "orig_id": 1433737}}, {"model": "metainfo.source", "pk": 1202, "fields": {"orig_filename": "Strakosch-Grassmann_Gustav_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 352f.", "author": "", "orig_id": 1433745}}, {"model": "metainfo.source", "pk": 1203, "fields": {"orig_filename": "Strakosch_Alexander_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 345f.", "author": "", "orig_id": 1434536}}, {"model": "metainfo.source", "pk": 1204, "fields": {"orig_filename": "Strakosch_Alexander_1879_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2088731}}, {"model": "metainfo.source", "pk": 1205, "fields": {"orig_filename": "Strakosch_Felix_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 346", "author": "", "orig_id": 1434546}}, {"model": "metainfo.source", "pk": 1206, "fields": {"orig_filename": "Strakosch_Ferdinand_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1981757}}, {"model": "metainfo.source", "pk": 1207, "fields": {"orig_filename": "Strakosch_Henry_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 346f.", "author": "", "orig_id": 1823700}}, {"model": "metainfo.source", "pk": 1208, "fields": {"orig_filename": "Strakosch_Irma_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 347", "author": "", "orig_id": 1449787}}, {"model": "metainfo.source", "pk": 1209, "fields": {"orig_filename": "Strakosch_Jonas_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 347f.", "author": "", "orig_id": 1433622}}, {"model": "metainfo.source", "pk": 1210, "fields": {"orig_filename": "Strakosch_Julius_1852_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 348f.", "author": "", "orig_id": 1473429}}, {"model": "metainfo.source", "pk": 1211, "fields": {"orig_filename": "Strakosch_Ludwig_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 349", "author": "", "orig_id": 1433623}}, {"model": "metainfo.source", "pk": 1212, "fields": {"orig_filename": "Strakosch_Max_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1981760}}, {"model": "metainfo.source", "pk": 1213, "fields": {"orig_filename": "Strakosch_Moriz_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 349f.", "author": "", "orig_id": 1433627}}, {"model": "metainfo.source", "pk": 1214, "fields": {"orig_filename": "Strakosch_Salomon_1795_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1433677}}, {"model": "metainfo.source", "pk": 1215, "fields": {"orig_filename": "Strakosch_Simon_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350f.", "author": "", "orig_id": 1433736}}, {"model": "metainfo.source", "pk": 1216, "fields": {"orig_filename": "Strambio_Gaetano_1752_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433907}}, {"model": "metainfo.source", "pk": 1217, "fields": {"orig_filename": "Strambio_Gaetano_1820_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433911}}, {"model": "metainfo.source", "pk": 1218, "fields": {"orig_filename": "Strambio_Giovanni_1780_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433912}}, {"model": "metainfo.source", "pk": 1219, "fields": {"orig_filename": "Strampfer_Friedrich_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 354", "author": "", "orig_id": 1433795}}, {"model": "metainfo.source", "pk": 1220, "fields": {"orig_filename": "Stranecka_Frantiska_1839_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 354f.", "author": "", "orig_id": 1825244}}, {"model": "metainfo.source", "pk": 1221, "fields": {"orig_filename": "Stranig_Albin_1908_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 355", "author": "", "orig_id": 1433802}}, {"model": "metainfo.source", "pk": 1222, "fields": {"orig_filename": "Stranik_Erwin_1898_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 355f.", "author": "", "orig_id": 1433853}}, {"model": "metainfo.source", "pk": 1223, "fields": {"orig_filename": "Stransky-Dresdenberg_Franz_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358f.", "author": "", "orig_id": 1434016}}, {"model": "metainfo.source", "pk": 1224, "fields": {"orig_filename": "Stransky_Adolf_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 356f.", "author": "", "orig_id": 1433854}}, {"model": "metainfo.source", "pk": 1225, "fields": {"orig_filename": "Stransky_Emil_1889_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 357", "author": "", "orig_id": 1427604}}, {"model": "metainfo.source", "pk": 1226, "fields": {"orig_filename": "Stransky_Felix_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 357f.", "author": "", "orig_id": 1433859}}, {"model": "metainfo.source", "pk": 1227, "fields": {"orig_filename": "Stransky_Josef_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358", "author": "", "orig_id": 1433957}}, {"model": "metainfo.source", "pk": 1228, "fields": {"orig_filename": "Stransky_Sigmund_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358", "author": "", "orig_id": 1434015}}, {"model": "metainfo.source", "pk": 1229, "fields": {"orig_filename": "Straschiripka_Johann-Bapt_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 359f.", "author": "", "orig_id": 1434024}}, {"model": "metainfo.source", "pk": 1230, "fields": {"orig_filename": "Strasoldo_Joseph-Philipp-Adam_1738_1824.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434301}}, {"model": "metainfo.source", "pk": 1231, "fields": {"orig_filename": "Strass-Hohenstraeten_Karl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 360", "author": "", "orig_id": 1434027}}, {"model": "metainfo.source", "pk": 1232, "fields": {"orig_filename": "Strasser_Alois_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 360f.", "author": "", "orig_id": 1434074}}, {"model": "metainfo.source", "pk": 1233, "fields": {"orig_filename": "Strasser_Artur_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 361", "author": "", "orig_id": 1434075}}, {"model": "metainfo.source", "pk": 1234, "fields": {"orig_filename": "Strasser_Ferdinand_1901_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 362", "author": "", "orig_id": 1434081}}, {"model": "metainfo.source", "pk": 1235, "fields": {"orig_filename": "Strasser_Gabriel_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 362", "author": "", "orig_id": 1434135}}, {"model": "metainfo.source", "pk": 1236, "fields": {"orig_filename": "Strasser_Josef_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 363f.", "author": "", "orig_id": 1434247}}, {"model": "metainfo.source", "pk": 1237, "fields": {"orig_filename": "Strasser_Josef_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 363", "author": "", "orig_id": 1445066}}, {"model": "metainfo.source", "pk": 1238, "fields": {"orig_filename": "Strasser_Pius_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 364", "author": "", "orig_id": 1434195}}, {"model": "metainfo.source", "pk": 1239, "fields": {"orig_filename": "Strassgschwandtner_Anton_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 364f.", "author": "", "orig_id": 1434246}}, {"model": "metainfo.source", "pk": 1240, "fields": {"orig_filename": "Strassmann_Marie_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 365", "author": "", "orig_id": 1434250}}, {"model": "metainfo.source", "pk": 1241, "fields": {"orig_filename": "Strassni_Fritz_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434254}}, {"model": "metainfo.source", "pk": 1242, "fields": {"orig_filename": "Strassoldo-Graffemberg_Julius-Caesar_1791_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 365f.", "author": "", "orig_id": 1434305}}, {"model": "metainfo.source", "pk": 1243, "fields": {"orig_filename": "Strassoldo-Graffemberg_Michael_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 366", "author": "", "orig_id": 1434309}}, {"model": "metainfo.source", "pk": 1244, "fields": {"orig_filename": "Strassoldo-Sotto_Giulio-Giuseppe_1771_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 366f.", "author": "", "orig_id": 1434303}}, {"model": "metainfo.source", "pk": 1245, "fields": {"orig_filename": "Straszewski_Florian_1767_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 367", "author": "", "orig_id": 1434311}}, {"model": "metainfo.source", "pk": 1246, "fields": {"orig_filename": "Straszewski_Maurycy_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 367f.", "author": "", "orig_id": 1870456}}, {"model": "metainfo.source", "pk": 1247, "fields": {"orig_filename": "Stratico_Simone-Filippo_1733_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 368", "author": "", "orig_id": 1434367}}, {"model": "metainfo.source", "pk": 1248, "fields": {"orig_filename": "Stratil_Frantisek_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 368f.", "author": "", "orig_id": 1434369}}, {"model": "metainfo.source", "pk": 1249, "fields": {"orig_filename": "Stratimirovic_Djordje_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 369", "author": "", "orig_id": 1434377}}, {"model": "metainfo.source", "pk": 1250, "fields": {"orig_filename": "Stratimirovic_Stephan_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 369f.", "author": "", "orig_id": 1434376}}, {"model": "metainfo.source", "pk": 1251, "fields": {"orig_filename": "Strattmann_Benedikt_1760_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 370", "author": "", "orig_id": 2106677}}, {"model": "metainfo.source", "pk": 1252, "fields": {"orig_filename": "Strattmann_Paul_1755_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 370", "author": "", "orig_id": 1434441}}, {"model": "metainfo.source", "pk": 1253, "fields": {"orig_filename": "Straub_Adolf_1808_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371", "author": "", "orig_id": 1434443}}, {"model": "metainfo.source", "pk": 1254, "fields": {"orig_filename": "Straub_Anton_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371", "author": "", "orig_id": 1434487}}, {"model": "metainfo.source", "pk": 1255, "fields": {"orig_filename": "Straub_Josef-Ignaz_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371f.", "author": "", "orig_id": 1434490}}, {"model": "metainfo.source", "pk": 1256, "fields": {"orig_filename": "Straucher_Benno_1854_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 372f.", "author": "", "orig_id": 1433639}}, {"model": "metainfo.source", "pk": 1257, "fields": {"orig_filename": "Strauch_Antonin_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 372", "author": "", "orig_id": 1434500}}, {"model": "metainfo.source", "pk": 1258, "fields": {"orig_filename": "Strauss_Anton_1775_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373f.", "author": "", "orig_id": 1433643}}, {"model": "metainfo.source", "pk": 1259, "fields": {"orig_filename": "Strauss_Eduard_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 374f.", "author": "", "orig_id": 1432287}}, {"model": "metainfo.source", "pk": 1260, "fields": {"orig_filename": "Strauss_Emil_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 375", "author": "", "orig_id": 1433695}}, {"model": "metainfo.source", "pk": 1261, "fields": {"orig_filename": "Strauss_Ferdinand_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 375f.", "author": "", "orig_id": 1433696}}, {"model": "metainfo.source", "pk": 1262, "fields": {"orig_filename": "Strauss_Georg_1800_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 376", "author": "", "orig_id": 1433699}}, {"model": "metainfo.source", "pk": 1263, "fields": {"orig_filename": "Strauss_Henriette_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 376f.", "author": "", "orig_id": 1425833}}, {"model": "metainfo.source", "pk": 1264, "fields": {"orig_filename": "Strauss_Johanna_1890_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 380", "author": "", "orig_id": 1981308}}, {"model": "metainfo.source", "pk": 1265, "fields": {"orig_filename": "Strauss_Johann_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 377f.", "author": "", "orig_id": 1432041}}, {"model": "metainfo.source", "pk": 1266, "fields": {"orig_filename": "Strauss_Johann_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 378f.", "author": "", "orig_id": 1432329}}, {"model": "metainfo.source", "pk": 1267, "fields": {"orig_filename": "Strauss_Johann_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 379f.", "author": "", "orig_id": 1432288}}, {"model": "metainfo.source", "pk": 1268, "fields": {"orig_filename": "Strauss_Josef_1827_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 380f.", "author": "", "orig_id": 1432330}}, {"model": "metainfo.source", "pk": 1269, "fields": {"orig_filename": "Strauss_Joseph_1793_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 381f.", "author": "", "orig_id": 1433753}}, {"model": "metainfo.source", "pk": 1270, "fields": {"orig_filename": "Strauss_Magdalena_1764_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 374", "author": "", "orig_id": 1433758}}, {"model": "metainfo.source", "pk": 1271, "fields": {"orig_filename": "Strauss_Richard_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 382f.", "author": "", "orig_id": 1433760}}, {"model": "metainfo.source", "pk": 1272, "fields": {"orig_filename": "Strauss_Siegmund_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 383", "author": "", "orig_id": 1433805}}, {"model": "metainfo.source", "pk": 1273, "fields": {"orig_filename": "Strausz_Adolf_1853_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 384", "author": "", "orig_id": 1433690}}, {"model": "metainfo.source", "pk": 1274, "fields": {"orig_filename": "Straus_Leo_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373", "author": "", "orig_id": 1433755}}, {"model": "metainfo.source", "pk": 1275, "fields": {"orig_filename": "Strazza_Giovanni_1817_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 384f.", "author": "", "orig_id": 1433814}}, {"model": "metainfo.source", "pk": 1276, "fields": {"orig_filename": "Strecker_Emil_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 385", "author": "", "orig_id": 1433872}}, {"model": "metainfo.source", "pk": 1277, "fields": {"orig_filename": "Streffleur_Valentin_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 385f.", "author": "", "orig_id": 1433921}}, {"model": "metainfo.source", "pk": 1278, "fields": {"orig_filename": "Strehl_Johann_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 386", "author": "", "orig_id": 1433975}}, {"model": "metainfo.source", "pk": 1279, "fields": {"orig_filename": "Streicher_Andreas_1761_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 386f.", "author": "", "orig_id": 1433987}}, {"model": "metainfo.source", "pk": 1280, "fields": {"orig_filename": "Streicher_Emil_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 2004805}}, {"model": "metainfo.source", "pk": 1281, "fields": {"orig_filename": "Streicher_Gustav_1873_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 387", "author": "", "orig_id": 1433984}}, {"model": "metainfo.source", "pk": 1282, "fields": {"orig_filename": "Streicher_Heinrich_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1433985}}, {"model": "metainfo.source", "pk": 1283, "fields": {"orig_filename": "Streicher_Johann-Bapt_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1432331}}, {"model": "metainfo.source", "pk": 1284, "fields": {"orig_filename": "Streicher_Joseph_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389", "author": "", "orig_id": 1434031}}, {"model": "metainfo.source", "pk": 1285, "fields": {"orig_filename": "Streicher_Karl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1434032}}, {"model": "metainfo.source", "pk": 1286, "fields": {"orig_filename": "Streicher_Nanette_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389", "author": "", "orig_id": 1434036}}, {"model": "metainfo.source", "pk": 1287, "fields": {"orig_filename": "Streicher_Theodor_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389f.", "author": "", "orig_id": 1434037}}, {"model": "metainfo.source", "pk": 1288, "fields": {"orig_filename": "Streintz_Franz_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 390", "author": "", "orig_id": 1434043}}, {"model": "metainfo.source", "pk": 1289, "fields": {"orig_filename": "Streintz_Heinrich_1848_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 390f.", "author": "", "orig_id": 1434044}}, {"model": "metainfo.source", "pk": 1290, "fields": {"orig_filename": "Streinz_Wenzel-Matern_1792_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 391", "author": "", "orig_id": 1434045}}, {"model": "metainfo.source", "pk": 1291, "fields": {"orig_filename": "Streissler_Eduard_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434086}}, {"model": "metainfo.source", "pk": 1292, "fields": {"orig_filename": "Streiter_Joseph_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393f.", "author": "", "orig_id": 1427584}}, {"model": "metainfo.source", "pk": 1293, "fields": {"orig_filename": "Streiter_Oswald_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 394", "author": "", "orig_id": 1434097}}, {"model": "metainfo.source", "pk": 1294, "fields": {"orig_filename": "Streitmann_Karl_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 394f.", "author": "", "orig_id": 1434098}}, {"model": "metainfo.source", "pk": 1295, "fields": {"orig_filename": "Streitmann_Luise_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395", "author": "", "orig_id": 1434144}}, {"model": "metainfo.source", "pk": 1296, "fields": {"orig_filename": "Streitmann_Rosa_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395", "author": "", "orig_id": 1434146}}, {"model": "metainfo.source", "pk": 1297, "fields": {"orig_filename": "Streitt_Franciszek_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395f.", "author": "", "orig_id": 1434147}}, {"model": "metainfo.source", "pk": 1298, "fields": {"orig_filename": "Streit_Andreas_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 391f.", "author": "", "orig_id": 1432333}}, {"model": "metainfo.source", "pk": 1299, "fields": {"orig_filename": "Streit_Ignaz_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393", "author": "", "orig_id": 1434090}}, {"model": "metainfo.source", "pk": 1300, "fields": {"orig_filename": "Streit_Karl_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 392f.", "author": "", "orig_id": 1434093}}, {"model": "metainfo.source", "pk": 1301, "fields": {"orig_filename": "Streit_Moriz_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393", "author": "", "orig_id": 1434094}}, {"model": "metainfo.source", "pk": 1302, "fields": {"orig_filename": "Strekelj_Karl_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 396", "author": "", "orig_id": 1434150}}, {"model": "metainfo.source", "pk": 1303, "fields": {"orig_filename": "Stohl_Lukas_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300f.", "author": "", "orig_id": 1432057}}, {"model": "metainfo.source", "pk": 1304, "fields": {"orig_filename": "Stohl_Marie_1828_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300", "author": "", "orig_id": 1896533}}, {"model": "metainfo.source", "pk": 1305, "fields": {"orig_filename": "Stohl_Michael_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 301", "author": "", "orig_id": 1431402}}, {"model": "metainfo.source", "pk": 1306, "fields": {"orig_filename": "Stohr_Franz-Heinrich-Anton_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 301f.", "author": "", "orig_id": 1431403}}, {"model": "metainfo.source", "pk": 1307, "fields": {"orig_filename": "Stoiber_Ernst_1833_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302", "author": "", "orig_id": 1431407}}, {"model": "metainfo.source", "pk": 1308, "fields": {"orig_filename": "Stoitzner_Karl_1834_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302", "author": "", "orig_id": 1431505}}, {"model": "metainfo.source", "pk": 1309, "fields": {"orig_filename": "Stoitzner_Konstantin_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302f.", "author": "", "orig_id": 1431510}}, {"model": "metainfo.source", "pk": 1310, "fields": {"orig_filename": "Stoitzner_Walter-Gottfried_1889_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 303", "author": "", "orig_id": 1431639}}, {"model": "metainfo.source", "pk": 1311, "fields": {"orig_filename": "Stojakovic_Georg_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 303f.", "author": "", "orig_id": 1431646}}, {"model": "metainfo.source", "pk": 1312, "fields": {"orig_filename": "Stojalowski_Stanislaw_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 304", "author": "", "orig_id": 1431649}}, {"model": "metainfo.source", "pk": 1313, "fields": {"orig_filename": "Stojanovic_Mijat_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 306", "author": "", "orig_id": 1431802}}, {"model": "metainfo.source", "pk": 1314, "fields": {"orig_filename": "Stojan_Antonin-Cyril_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 304f.", "author": "", "orig_id": 1431696}}, {"model": "metainfo.source", "pk": 1315, "fields": {"orig_filename": "Stojan_Betty_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 305f.", "author": "", "orig_id": 1431688}}, {"model": "metainfo.source", "pk": 1316, "fields": {"orig_filename": "Stojan_Mihael_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 306", "author": "", "orig_id": 1431743}}, {"model": "metainfo.source", "pk": 1317, "fields": {"orig_filename": "Stojowski_Michal_1763_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307", "author": "", "orig_id": 1887941}}, {"model": "metainfo.source", "pk": 1318, "fields": {"orig_filename": "Stokes_Marianne_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307", "author": "", "orig_id": 1431810}}, {"model": "metainfo.source", "pk": 1319, "fields": {"orig_filename": "Stoklasa_Julius_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307f.", "author": "", "orig_id": 1431022}}, {"model": "metainfo.source", "pk": 1320, "fields": {"orig_filename": "Stokowski_Apolinary_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 308f.", "author": "", "orig_id": 1888028}}, {"model": "metainfo.source", "pk": 1321, "fields": {"orig_filename": "Stolarczyk_Jozef_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 309", "author": "", "orig_id": 1887952}}, {"model": "metainfo.source", "pk": 1322, "fields": {"orig_filename": "Stolba_Frantisek_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 309f.", "author": "", "orig_id": 1431027}}, {"model": "metainfo.source", "pk": 1323, "fields": {"orig_filename": "Stolba_Leopold_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 310f.", "author": "", "orig_id": 1431031}}, {"model": "metainfo.source", "pk": 1324, "fields": {"orig_filename": "Stoliczka_Ferdinand_1838_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 311", "author": "", "orig_id": 1426682}}, {"model": "metainfo.source", "pk": 1325, "fields": {"orig_filename": "Stollberg_Ignaz-Georg_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 313f.", "author": "", "orig_id": 1431201}}, {"model": "metainfo.source", "pk": 1326, "fields": {"orig_filename": "Stollewerk_Nina_1825_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314", "author": "", "orig_id": 1843791}}, {"model": "metainfo.source", "pk": 1327, "fields": {"orig_filename": "Stoll_August_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 311f.", "author": "", "orig_id": 1431141}}, {"model": "metainfo.source", "pk": 1328, "fields": {"orig_filename": "Stoll_Gisela_1867_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312", "author": "", "orig_id": 1981171}}, {"model": "metainfo.source", "pk": 1329, "fields": {"orig_filename": "Stoll_Joseph-Ludwig_1777_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312f.", "author": "", "orig_id": 1449018}}, {"model": "metainfo.source", "pk": 1330, "fields": {"orig_filename": "Stoll_Karl_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312", "author": "", "orig_id": 1981167}}, {"model": "metainfo.source", "pk": 1331, "fields": {"orig_filename": "Stoll_Peter_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 313", "author": "", "orig_id": 1431199}}, {"model": "metainfo.source", "pk": 1332, "fields": {"orig_filename": "Stolovsky_Eduard_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314f.", "author": "", "orig_id": 1431433}}, {"model": "metainfo.source", "pk": 1333, "fields": {"orig_filename": "Stolovsky_Josef_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314f.", "author": "", "orig_id": 1825085}}, {"model": "metainfo.source", "pk": 1334, "fields": {"orig_filename": "Stolper_Gustav_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 315", "author": "", "orig_id": 1431470}}, {"model": "metainfo.source", "pk": 1335, "fields": {"orig_filename": "Stolzissi_Peter-Regalat_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 320", "author": "", "orig_id": 1431149}}, {"model": "metainfo.source", "pk": 1336, "fields": {"orig_filename": "Stolz_Albert_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 315f.", "author": "", "orig_id": 1431533}}, {"model": "metainfo.source", "pk": 1337, "fields": {"orig_filename": "Stolz_Eduard_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 316", "author": "", "orig_id": 1431592}}, {"model": "metainfo.source", "pk": 1338, "fields": {"orig_filename": "Stolz_Friedrich_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 316f.", "author": "", "orig_id": 1431599}}, {"model": "metainfo.source", "pk": 1339, "fields": {"orig_filename": "Stolz_Friedrich_1878_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 319", "author": "", "orig_id": 1469679}}, {"model": "metainfo.source", "pk": 1340, "fields": {"orig_filename": "Stolz_Ignaz_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 317", "author": "", "orig_id": 1431650}}, {"model": "metainfo.source", "pk": 1341, "fields": {"orig_filename": "Stolz_Josef_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 317f.", "author": "", "orig_id": 1431753}}, {"model": "metainfo.source", "pk": 1342, "fields": {"orig_filename": "Stolz_Michael_1820_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 318", "author": "", "orig_id": 1431765}}, {"model": "metainfo.source", "pk": 1343, "fields": {"orig_filename": "Stolz_Otto_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 318f.", "author": "", "orig_id": 1431812}}, {"model": "metainfo.source", "pk": 1344, "fields": {"orig_filename": "Stolz_Teresa_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 319f.", "author": "", "orig_id": 1431269}}, {"model": "metainfo.source", "pk": 1345, "fields": {"orig_filename": "Stonner_Rudolf_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 320f.", "author": "", "orig_id": 1431212}}, {"model": "metainfo.source", "pk": 1346, "fields": {"orig_filename": "Stooss_Carl_1849_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 321f.", "author": "", "orig_id": 1431214}}, {"model": "metainfo.source", "pk": 1347, "fields": {"orig_filename": "Stoos_Pavao_1806_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 321", "author": "", "orig_id": 1431218}}, {"model": "metainfo.source", "pk": 1348, "fields": {"orig_filename": "Stopczanski_Aleksander_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 322", "author": "", "orig_id": 1880446}}, {"model": "metainfo.source", "pk": 1349, "fields": {"orig_filename": "Stoppani_Antonio_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 322f.", "author": "", "orig_id": 1431271}}, {"model": "metainfo.source", "pk": 1350, "fields": {"orig_filename": "Stoppani_Johann-Bapt_1778_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 323f.", "author": "", "orig_id": 1431272}}, {"model": "metainfo.source", "pk": 1351, "fields": {"orig_filename": "Stoppel_Marzellinus_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1431273}}, {"model": "metainfo.source", "pk": 1352, "fields": {"orig_filename": "Storch_Anton-M_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1432233}}, {"model": "metainfo.source", "pk": 1353, "fields": {"orig_filename": "Storch_Anton_1843_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1431277}}, {"model": "metainfo.source", "pk": 1354, "fields": {"orig_filename": "Storch_Frantisek_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1431279}}, {"model": "metainfo.source", "pk": 1355, "fields": {"orig_filename": "Storch_Franz-De-Paula_1763_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324f.", "author": "", "orig_id": 1431281}}, {"model": "metainfo.source", "pk": 1356, "fields": {"orig_filename": "Storch_Franz-De-Paula_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 325", "author": "", "orig_id": 1433989}}, {"model": "metainfo.source", "pk": 1357, "fields": {"orig_filename": "Storch_Karel-Boleslav_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 325f.", "author": "", "orig_id": 1433991}}, {"model": "metainfo.source", "pk": 1358, "fields": {"orig_filename": "Storch_Karl_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 326", "author": "", "orig_id": 1433990}}, {"model": "metainfo.source", "pk": 1359, "fields": {"orig_filename": "Storch_Ludwig_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 326f.", "author": "", "orig_id": 1433994}}, {"model": "metainfo.source", "pk": 1360, "fields": {"orig_filename": "Storck_Josef_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 327", "author": "", "orig_id": 1433997}}, {"model": "metainfo.source", "pk": 1361, "fields": {"orig_filename": "Storek_Edwin_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 327f.", "author": "", "orig_id": 1433999}}, {"model": "metainfo.source", "pk": 1362, "fields": {"orig_filename": "Storek_Heinrich_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328", "author": "", "orig_id": 1434000}}, {"model": "metainfo.source", "pk": 1363, "fields": {"orig_filename": "Storek_Ignaz_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328", "author": "", "orig_id": 1876615}}, {"model": "metainfo.source", "pk": 1364, "fields": {"orig_filename": "Storfer_Adolf-Joseph_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328f.", "author": "", "orig_id": 1434046}}, {"model": "metainfo.source", "pk": 1365, "fields": {"orig_filename": "Storfer_Berthold_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 329f.", "author": "", "orig_id": 1415091}}, {"model": "metainfo.source", "pk": 1366, "fields": {"orig_filename": "Storno_Ferenc_1821_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 330f.", "author": "", "orig_id": 1434049}}, {"model": "metainfo.source", "pk": 1367, "fields": {"orig_filename": "Storno_Ferenc_1851_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 330f.", "author": "", "orig_id": 1455113}}, {"model": "metainfo.source", "pk": 1368, "fields": {"orig_filename": "Storno_Kalman_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331", "author": "", "orig_id": 1894422}}, {"model": "metainfo.source", "pk": 1369, "fields": {"orig_filename": "Stossich_Adolf_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331f.", "author": "", "orig_id": 1434054}}, {"model": "metainfo.source", "pk": 1370, "fields": {"orig_filename": "Stossich_Michele_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331f.", "author": "", "orig_id": 1430744}}, {"model": "metainfo.source", "pk": 1371, "fields": {"orig_filename": "Stotter_Michael_1813_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 332", "author": "", "orig_id": 1434099}}, {"model": "metainfo.source", "pk": 1372, "fields": {"orig_filename": "Stourzh_Alois_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 332f.", "author": "", "orig_id": 1434162}}, {"model": "metainfo.source", "pk": 1373, "fields": {"orig_filename": "Stourzh_Helene_1890_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1950511}}, {"model": "metainfo.source", "pk": 1374, "fields": {"orig_filename": "Stourzh_Herbert_1889_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333", "author": "", "orig_id": 1434222}}, {"model": "metainfo.source", "pk": 1375, "fields": {"orig_filename": "Stowasser_Adolf_1842_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1876595}}, {"model": "metainfo.source", "pk": 1376, "fields": {"orig_filename": "Stowasser_Anton-Rudolf_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1876587}}, {"model": "metainfo.source", "pk": 1377, "fields": {"orig_filename": "Stowasser_Ignaz_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333f.", "author": "", "orig_id": 1434281}}, {"model": "metainfo.source", "pk": 1378, "fields": {"orig_filename": "Stowasser_Ignaz_1852_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333f.", "author": "", "orig_id": 1876578}}, {"model": "metainfo.source", "pk": 1379, "fields": {"orig_filename": "Stowasser_Josef-Maria_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334", "author": "", "orig_id": 1433669}}, {"model": "metainfo.source", "pk": 1380, "fields": {"orig_filename": "Stowasser_Josef_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1449308}}, {"model": "metainfo.source", "pk": 1381, "fields": {"orig_filename": "Stowasser_Julius_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1449310}}, {"model": "metainfo.source", "pk": 1382, "fields": {"orig_filename": "Stowasser_Wenzel_1803_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1433664}}, {"model": "metainfo.source", "pk": 1383, "fields": {"orig_filename": "Stozek_Wlodzimierz-Antoni_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 336", "author": "", "orig_id": 1880463}}, {"model": "metainfo.source", "pk": 1384, "fields": {"orig_filename": "Straberger_Josef_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 336f.", "author": "", "orig_id": 1433721}}, {"model": "metainfo.source", "pk": 1385, "fields": {"orig_filename": "Strache_Eduard_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 337f.", "author": "", "orig_id": 1433774}}, {"model": "metainfo.source", "pk": 1386, "fields": {"orig_filename": "Strache_Franz-Eduard_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 338", "author": "", "orig_id": 1468682}}, {"model": "metainfo.source", "pk": 1387, "fields": {"orig_filename": "Strache_Hugo_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 338f.", "author": "", "orig_id": 1433775}}, {"model": "metainfo.source", "pk": 1388, "fields": {"orig_filename": "Strachovsky_Josef_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 339", "author": "", "orig_id": 1433783}}, {"model": "metainfo.source", "pk": 1389, "fields": {"orig_filename": "Strach_Hermann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 337", "author": "", "orig_id": 1433734}}, {"model": "metainfo.source", "pk": 1390, "fields": {"orig_filename": "Stradal_August_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 339f.", "author": "", "orig_id": 1433897}}, {"model": "metainfo.source", "pk": 1391, "fields": {"orig_filename": "Stradal_Emmy_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 340", "author": "", "orig_id": 1433902}}, {"model": "metainfo.source", "pk": 1392, "fields": {"orig_filename": "Stradal_Hildegard_1864_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 340f.", "author": "", "orig_id": 1433945}}, {"model": "metainfo.source", "pk": 1393, "fields": {"orig_filename": "Stradner_Alois_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 341", "author": "", "orig_id": 1433956}}, {"model": "metainfo.source", "pk": 1394, "fields": {"orig_filename": "Stradner_Josef_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 341", "author": "", "orig_id": 1434414}}, {"model": "metainfo.source", "pk": 1395, "fields": {"orig_filename": "Straessle_Friedrich_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342", "author": "", "orig_id": 1434418}}, {"model": "metainfo.source", "pk": 1396, "fields": {"orig_filename": "Straessle_Josef_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342", "author": "", "orig_id": 1434419}}, {"model": "metainfo.source", "pk": 1397, "fields": {"orig_filename": "Straganz_Max_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342f.", "author": "", "orig_id": 1434424}}, {"model": "metainfo.source", "pk": 1398, "fields": {"orig_filename": "Strahl_Eduard-Josef_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343", "author": "", "orig_id": 1434468}}, {"model": "metainfo.source", "pk": 1399, "fields": {"orig_filename": "Strahl_Karl-Friedrich-Josef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343", "author": "", "orig_id": 1434469}}, {"model": "metainfo.source", "pk": 1400, "fields": {"orig_filename": "Strakaty_Jan_1835_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344f.", "author": "", "orig_id": 1434482}}, {"model": "metainfo.source", "pk": 1401, "fields": {"orig_filename": "Strakaty_Karel_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 345", "author": "", "orig_id": 1434483}}, {"model": "metainfo.source", "pk": 1402, "fields": {"orig_filename": "Straka_Adolf-Vilem_1825_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343f.", "author": "", "orig_id": 1434472}}, {"model": "metainfo.source", "pk": 1403, "fields": {"orig_filename": "Straka_Gustav-Arnost_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344", "author": "", "orig_id": 1434475}}, {"model": "metainfo.source", "pk": 1404, "fields": {"orig_filename": "Straka_Josef_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344", "author": "", "orig_id": 1434477}}, {"model": "metainfo.source", "pk": 1405, "fields": {"orig_filename": "Stifft_Andreas_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256", "author": "", "orig_id": 1432243}}, {"model": "metainfo.source", "pk": 1406, "fields": {"orig_filename": "Stifft_Andreas_1819_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256f.", "author": "", "orig_id": 1432244}}, {"model": "metainfo.source", "pk": 1407, "fields": {"orig_filename": "Stifter_Adalbert_1805_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 259f.", "author": "", "orig_id": 1432253}}, {"model": "metainfo.source", "pk": 1408, "fields": {"orig_filename": "Stifter_Magnus_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 260f.", "author": "", "orig_id": 1980265}}, {"model": "metainfo.source", "pk": 1409, "fields": {"orig_filename": "Stift_Anton_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 258f.", "author": "", "orig_id": 1432247}}, {"model": "metainfo.source", "pk": 1410, "fields": {"orig_filename": "Stift_Wilhelm_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 259", "author": "", "orig_id": 1432252}}, {"model": "metainfo.source", "pk": 1411, "fields": {"orig_filename": "Stiger_Johann-Ev_1776_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 261", "author": "", "orig_id": 1432295}}, {"model": "metainfo.source", "pk": 1412, "fields": {"orig_filename": "Stiger_Joseph-Leopold_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 261f.", "author": "", "orig_id": 1432297}}, {"model": "metainfo.source", "pk": 1413, "fields": {"orig_filename": "Stigleitner_Hans_1899_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 262", "author": "", "orig_id": 1432300}}, {"model": "metainfo.source", "pk": 1414, "fields": {"orig_filename": "Stigler_Josef_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 262f.", "author": "", "orig_id": 1432301}}, {"model": "metainfo.source", "pk": 1415, "fields": {"orig_filename": "Stigler_Karl_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263", "author": "", "orig_id": 1432302}}, {"model": "metainfo.source", "pk": 1416, "fields": {"orig_filename": "Stigler_Wilhelm_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263", "author": "", "orig_id": 1473922}}, {"model": "metainfo.source", "pk": 1417, "fields": {"orig_filename": "Stiglmayr_Joseph_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263f.", "author": "", "orig_id": 1432341}}, {"model": "metainfo.source", "pk": 1418, "fields": {"orig_filename": "Stiller_Bertalan_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 264", "author": "", "orig_id": 1432346}}, {"model": "metainfo.source", "pk": 1419, "fields": {"orig_filename": "Stillfried-Rathenitz_August_1806_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265", "author": "", "orig_id": 1432347}}, {"model": "metainfo.source", "pk": 1420, "fields": {"orig_filename": "Stillfried-Rathenitz_Franz-De-Paula_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 264f.", "author": "", "orig_id": 1472854}}, {"model": "metainfo.source", "pk": 1421, "fields": {"orig_filename": "Stillfried-Rathenitz_Raimund_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265", "author": "", "orig_id": 1432390}}, {"model": "metainfo.source", "pk": 1422, "fields": {"orig_filename": "Stingeder_Franz_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265f.", "author": "", "orig_id": 1432396}}, {"model": "metainfo.source", "pk": 1423, "fields": {"orig_filename": "Stingel_Vincenz_1761_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 266", "author": "", "orig_id": 1432397}}, {"model": "metainfo.source", "pk": 1424, "fields": {"orig_filename": "Stingl_Anton_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 266f.", "author": "", "orig_id": 1449013}}, {"model": "metainfo.source", "pk": 1425, "fields": {"orig_filename": "Stingl_Hans_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267", "author": "", "orig_id": 1432402}}, {"model": "metainfo.source", "pk": 1426, "fields": {"orig_filename": "Stipcak_Leopold_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1432451}}, {"model": "metainfo.source", "pk": 1427, "fields": {"orig_filename": "Stipperger_Adolf_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267", "author": "", "orig_id": 1432456}}, {"model": "metainfo.source", "pk": 1428, "fields": {"orig_filename": "Stipperger_Bernhard_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268", "author": "", "orig_id": 1474715}}, {"model": "metainfo.source", "pk": 1429, "fields": {"orig_filename": "Stipperger_Johann-Bernhard_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268", "author": "", "orig_id": 1474716}}, {"model": "metainfo.source", "pk": 1430, "fields": {"orig_filename": "Stipperger_Johann-Ev_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267f.", "author": "", "orig_id": 1432457}}, {"model": "metainfo.source", "pk": 1431, "fields": {"orig_filename": "Stippler_Johann_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432494}}, {"model": "metainfo.source", "pk": 1432, "fields": {"orig_filename": "Stipsicz-Ternowa_Joseph_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268f.", "author": "", "orig_id": 1432500}}, {"model": "metainfo.source", "pk": 1433, "fields": {"orig_filename": "Stirba-Stirbitz_Franciszek_1780_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269", "author": "", "orig_id": 1880562}}, {"model": "metainfo.source", "pk": 1434, "fields": {"orig_filename": "Stivin_Josef_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269", "author": "", "orig_id": 1432508}}, {"model": "metainfo.source", "pk": 1435, "fields": {"orig_filename": "Stix_Edmund_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269f.", "author": "", "orig_id": 1432549}}, {"model": "metainfo.source", "pk": 1436, "fields": {"orig_filename": "Stix_Karl_1860_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 270", "author": "", "orig_id": 1432551}}, {"model": "metainfo.source", "pk": 1437, "fields": {"orig_filename": "Stobiecki_Stefan-Antoni_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 270f.", "author": "", "orig_id": 1880548}}, {"model": "metainfo.source", "pk": 1438, "fields": {"orig_filename": "Stobinski_Feliks-Leon_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271", "author": "", "orig_id": 1860838}}, {"model": "metainfo.source", "pk": 1439, "fields": {"orig_filename": "Stobinski_Feliks_1803_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271", "author": "", "orig_id": 1860851}}, {"model": "metainfo.source", "pk": 1440, "fields": {"orig_filename": "Stobnicki_Feliks_1800_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271f.", "author": "", "orig_id": 1887993}}, {"model": "metainfo.source", "pk": 1441, "fields": {"orig_filename": "Stockert_Dora_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 274f.", "author": "", "orig_id": 1432669}}, {"model": "metainfo.source", "pk": 1442, "fields": {"orig_filename": "Stockert_Franz_1822_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275", "author": "", "orig_id": 1432616}}, {"model": "metainfo.source", "pk": 1443, "fields": {"orig_filename": "Stockert_Leopold_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275", "author": "", "orig_id": 1980636}}, {"model": "metainfo.source", "pk": 1444, "fields": {"orig_filename": "Stockert_Ludwig_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275f.", "author": "", "orig_id": 1432666}}, {"model": "metainfo.source", "pk": 1445, "fields": {"orig_filename": "Stockert_Robert_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 276", "author": "", "orig_id": 1432667}}, {"model": "metainfo.source", "pk": 1446, "fields": {"orig_filename": "Stocker_Eduard_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 273f.", "author": "", "orig_id": 1432604}}, {"model": "metainfo.source", "pk": 1447, "fields": {"orig_filename": "Stocker_Leopold_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 274", "author": "", "orig_id": 1432609}}, {"model": "metainfo.source", "pk": 1448, "fields": {"orig_filename": "Stocker_Stefan_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 273f.", "author": "", "orig_id": 1432613}}, {"model": "metainfo.source", "pk": 1449, "fields": {"orig_filename": "Stockhammer_Emerich_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 276f.", "author": "", "orig_id": 1432671}}, {"model": "metainfo.source", "pk": 1450, "fields": {"orig_filename": "Stockhammer_Wolfgang_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277", "author": "", "orig_id": 1432673}}, {"model": "metainfo.source", "pk": 1451, "fields": {"orig_filename": "Stockinger_Tamas_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277", "author": "", "orig_id": 1432680}}, {"model": "metainfo.source", "pk": 1452, "fields": {"orig_filename": "Stockmann_Leopold_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278", "author": "", "orig_id": 1431824}}, {"model": "metainfo.source", "pk": 1453, "fields": {"orig_filename": "Stockmann_Nikolaus_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277f.", "author": "", "orig_id": 1431827}}, {"model": "metainfo.source", "pk": 1454, "fields": {"orig_filename": "Stockmar_Ernest-Leopold_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278", "author": "", "orig_id": 1868185}}, {"model": "metainfo.source", "pk": 1455, "fields": {"orig_filename": "Stockmayer_Siegfried_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278f.", "author": "", "orig_id": 1431825}}, {"model": "metainfo.source", "pk": 1456, "fields": {"orig_filename": "Stocky_Albin_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 279", "author": "", "orig_id": 1431828}}, {"model": "metainfo.source", "pk": 1457, "fields": {"orig_filename": "Stock_Jan_1881_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 272", "author": "", "orig_id": 1880539}}, {"model": "metainfo.source", "pk": 1458, "fields": {"orig_filename": "Stock_Norbert_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 272f.", "author": "", "orig_id": 1475250}}, {"model": "metainfo.source", "pk": 1459, "fields": {"orig_filename": "Stodola_Aurel_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 279f.", "author": "", "orig_id": 1431829}}, {"model": "metainfo.source", "pk": 1460, "fields": {"orig_filename": "Stodola_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 280", "author": "", "orig_id": 1431830}}, {"model": "metainfo.source", "pk": 1461, "fields": {"orig_filename": "Stodola_Kornel-Milan_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 280f.", "author": "", "orig_id": 1431881}}, {"model": "metainfo.source", "pk": 1462, "fields": {"orig_filename": "Stodor_Adam_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 281", "author": "", "orig_id": 1832905}}, {"model": "metainfo.source", "pk": 1463, "fields": {"orig_filename": "Stoeber_Franz-Xav_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 282", "author": "", "orig_id": 1431884}}, {"model": "metainfo.source", "pk": 1464, "fields": {"orig_filename": "Stoeber_Franz_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 281f.", "author": "", "orig_id": 1431885}}, {"model": "metainfo.source", "pk": 1465, "fields": {"orig_filename": "Stoeber_Joseph_1768_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 282f.", "author": "", "orig_id": 1431891}}, {"model": "metainfo.source", "pk": 1466, "fields": {"orig_filename": "Stoeckholzer-Hirschfeld_Josef_1805_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 283", "author": "", "orig_id": 1431936}}, {"model": "metainfo.source", "pk": 1467, "fields": {"orig_filename": "Stoeckler_Emanuel_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 285", "author": "", "orig_id": 1432096}}, {"model": "metainfo.source", "pk": 1468, "fields": {"orig_filename": "Stoeckler_Josef_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 285f.", "author": "", "orig_id": 1432097}}, {"model": "metainfo.source", "pk": 1469, "fields": {"orig_filename": "Stoeckli_Augustin_1857_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286", "author": "", "orig_id": 1432148}}, {"model": "metainfo.source", "pk": 1470, "fields": {"orig_filename": "Stoeckl_Adolf_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 283f.", "author": "", "orig_id": 1431937}}, {"model": "metainfo.source", "pk": 1471, "fields": {"orig_filename": "Stoeckl_Andreas-Franz_1834_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 284", "author": "", "orig_id": 1431938}}, {"model": "metainfo.source", "pk": 1472, "fields": {"orig_filename": "Stoeckl_Sebastian_1752_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 284f.", "author": "", "orig_id": 1432093}}, {"model": "metainfo.source", "pk": 1473, "fields": {"orig_filename": "Stoegbauer_Adam_1881_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286", "author": "", "orig_id": 1880426}}, {"model": "metainfo.source", "pk": 1474, "fields": {"orig_filename": "Stoeger-Steiner-Steinstaetten_Rudolf_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291", "author": "", "orig_id": 1432361}}, {"model": "metainfo.source", "pk": 1475, "fields": {"orig_filename": "Stoegermayer_Karl_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291", "author": "", "orig_id": 1432404}}, {"model": "metainfo.source", "pk": 1476, "fields": {"orig_filename": "Stoeger_Adolf_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287f.", "author": "", "orig_id": 1825021}}, {"model": "metainfo.source", "pk": 1477, "fields": {"orig_filename": "Stoeger_Arthur_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286f.", "author": "", "orig_id": 1432212}}, {"model": "metainfo.source", "pk": 1478, "fields": {"orig_filename": "Stoeger_Auguste_1836_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287", "author": "", "orig_id": 1432215}}, {"model": "metainfo.source", "pk": 1479, "fields": {"orig_filename": "Stoeger_Carl_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287f.", "author": "", "orig_id": 1825028}}, {"model": "metainfo.source", "pk": 1480, "fields": {"orig_filename": "Stoeger_Emilie_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288", "author": "", "orig_id": 1432255}}, {"model": "metainfo.source", "pk": 1481, "fields": {"orig_filename": "Stoeger_Johann-August_1791_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288f.", "author": "", "orig_id": 1432309}}, {"model": "metainfo.source", "pk": 1482, "fields": {"orig_filename": "Stoeger_Johann-Nep_1792_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 289", "author": "", "orig_id": 1432258}}, {"model": "metainfo.source", "pk": 1483, "fields": {"orig_filename": "Stoeger_Johanna_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288f.", "author": "", "orig_id": 1436463}}, {"model": "metainfo.source", "pk": 1484, "fields": {"orig_filename": "Stoeger_Josef_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 289f.", "author": "", "orig_id": 1432313}}, {"model": "metainfo.source", "pk": 1485, "fields": {"orig_filename": "Stoeger_Leopold_1814_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 290", "author": "", "orig_id": 1432351}}, {"model": "metainfo.source", "pk": 1486, "fields": {"orig_filename": "Stoeger_Michael-Franz_1796_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 290f.", "author": "", "orig_id": 1432356}}, {"model": "metainfo.source", "pk": 1487, "fields": {"orig_filename": "Stoehr_Adolf_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291f.", "author": "", "orig_id": 1432408}}, {"model": "metainfo.source", "pk": 1488, "fields": {"orig_filename": "Stoehr_August_1764_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 292", "author": "", "orig_id": 1432412}}, {"model": "metainfo.source", "pk": 1489, "fields": {"orig_filename": "Stoehr_Ernst_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 292f.", "author": "", "orig_id": 1432415}}, {"model": "metainfo.source", "pk": 1490, "fields": {"orig_filename": "Stoehr_Hugo_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 293f.", "author": "", "orig_id": 1432418}}, {"model": "metainfo.source", "pk": 1491, "fields": {"orig_filename": "Stoekl_Erich-Karl-Hans_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294", "author": "", "orig_id": 1432088}}, {"model": "metainfo.source", "pk": 1492, "fields": {"orig_filename": "Stoekl_Helene_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294f.", "author": "", "orig_id": 1432514}}, {"model": "metainfo.source", "pk": 1493, "fields": {"orig_filename": "Stoekl_Rudolf_1827_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294f.", "author": "", "orig_id": 1432516}}, {"model": "metainfo.source", "pk": 1494, "fields": {"orig_filename": "Stoelzle_Carl-Anton_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 295", "author": "", "orig_id": 1432567}}, {"model": "metainfo.source", "pk": 1495, "fields": {"orig_filename": "Stoelzle_Rudolf_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 295f.", "author": "", "orig_id": 1432571}}, {"model": "metainfo.source", "pk": 1496, "fields": {"orig_filename": "Stoerck_Paul_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 296", "author": "", "orig_id": 1432574}}, {"model": "metainfo.source", "pk": 1497, "fields": {"orig_filename": "Stoerk_Carl_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 296f.", "author": "", "orig_id": 1449017}}, {"model": "metainfo.source", "pk": 1498, "fields": {"orig_filename": "Stoerk_Felix-Otto_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 297", "author": "", "orig_id": 1432580}}, {"model": "metainfo.source", "pk": 1499, "fields": {"orig_filename": "Stoerk_Oskar_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 297f.", "author": "", "orig_id": 1432620}}, {"model": "metainfo.source", "pk": 1500, "fields": {"orig_filename": "Stoessl_Adolf_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298", "author": "", "orig_id": 1431849}}, {"model": "metainfo.source", "pk": 1501, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_August_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432006}}, {"model": "metainfo.source", "pk": 1502, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Emil-Richard_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298f.", "author": "", "orig_id": 1432008}}, {"model": "metainfo.source", "pk": 1503, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Maria-Josefa_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432012}}, {"model": "metainfo.source", "pk": 1504, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Peter_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432014}}, {"model": "metainfo.source", "pk": 1505, "fields": {"orig_filename": "Stohl_Franz_1799_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300", "author": "", "orig_id": 1432021}}, {"model": "metainfo.source", "pk": 1506, "fields": {"orig_filename": "Stohl_Heinrich_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300f.", "author": "", "orig_id": 1432052}}, {"model": "metainfo.source", "pk": 1507, "fields": {"orig_filename": "Stephan-Victor___1817_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 213", "author": "", "orig_id": 1428410}}, {"model": "metainfo.source", "pk": 1508, "fields": {"orig_filename": "Stephani_Albert_1810_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 213f.", "author": "", "orig_id": 1429654}}, {"model": "metainfo.source", "pk": 1509, "fields": {"orig_filename": "Stephani_Rudolf_1817_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 214", "author": "", "orig_id": 1429590}}, {"model": "metainfo.source", "pk": 1510, "fields": {"orig_filename": "Stephann_Carl_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 214f.", "author": "", "orig_id": 1429646}}, {"model": "metainfo.source", "pk": 1511, "fields": {"orig_filename": "Stephan_Martin_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212f.", "author": "", "orig_id": 1429587}}, {"model": "metainfo.source", "pk": 1512, "fields": {"orig_filename": "Stepischnegg_Jakob-Maximilian_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 215", "author": "", "orig_id": 1429752}}, {"model": "metainfo.source", "pk": 1513, "fields": {"orig_filename": "Stepnicka_Frantisek_1785_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 215f.", "author": "", "orig_id": 1429753}}, {"model": "metainfo.source", "pk": 1514, "fields": {"orig_filename": "Stepski-Doliwa_Friedrich_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 216", "author": "", "orig_id": 1430024}}, {"model": "metainfo.source", "pk": 1515, "fields": {"orig_filename": "Sterba-Boehm_Jan-Stanislav_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 216f.", "author": "", "orig_id": 1472595}}, {"model": "metainfo.source", "pk": 1516, "fields": {"orig_filename": "Sterger_Jozef_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 217", "author": "", "orig_id": 1430089}}, {"model": "metainfo.source", "pk": 1517, "fields": {"orig_filename": "Sterio_Karoly_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 217f.", "author": "", "orig_id": 1430127}}, {"model": "metainfo.source", "pk": 1518, "fields": {"orig_filename": "Sterka-Sulucz-Kerpenyes_Alexander_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219f.", "author": "", "orig_id": 1429323}}, {"model": "metainfo.source", "pk": 1519, "fields": {"orig_filename": "Sterk_Andreas-Maria_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 218", "author": "", "orig_id": 1430129}}, {"model": "metainfo.source", "pk": 1520, "fields": {"orig_filename": "Sterk_Izidor_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 218f.", "author": "", "orig_id": 1430133}}, {"model": "metainfo.source", "pk": 1521, "fields": {"orig_filename": "Sterk_Julius_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219", "author": "", "orig_id": 1429313}}, {"model": "metainfo.source", "pk": 1522, "fields": {"orig_filename": "Sterk_Wilhelm_1880_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219", "author": "", "orig_id": 1429317}}, {"model": "metainfo.source", "pk": 1523, "fields": {"orig_filename": "Stermich-Valcrociata_Anton_1798_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 220f.", "author": "", "orig_id": 1429328}}, {"model": "metainfo.source", "pk": 1524, "fields": {"orig_filename": "Stermich-Valcrociata_Nicolo_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 220f.", "author": "", "orig_id": 1429388}}, {"model": "metainfo.source", "pk": 1525, "fields": {"orig_filename": "Stermich-Valcrociata_Pietro_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221", "author": "", "orig_id": 1429389}}, {"model": "metainfo.source", "pk": 1526, "fields": {"orig_filename": "Stermich-Valcrociata_Simeone_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221", "author": "", "orig_id": 1429381}}, {"model": "metainfo.source", "pk": 1527, "fields": {"orig_filename": "Sternad_Rudolf_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230f.", "author": "", "orig_id": 1429989}}, {"model": "metainfo.source", "pk": 1528, "fields": {"orig_filename": "Sternbach_Hermann_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 231", "author": "", "orig_id": 1430034}}, {"model": "metainfo.source", "pk": 1529, "fields": {"orig_filename": "Sternbach_Ludwik_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 231f.", "author": "", "orig_id": 1845100}}, {"model": "metainfo.source", "pk": 1530, "fields": {"orig_filename": "Sternbach_Maria-Theresia_1775_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 232", "author": "", "orig_id": 1430035}}, {"model": "metainfo.source", "pk": 1531, "fields": {"orig_filename": "Sternbach_Paul-Anton-Maria_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 232f.", "author": "", "orig_id": 1430037}}, {"model": "metainfo.source", "pk": 1532, "fields": {"orig_filename": "Sternbach_Samuel-Leo_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 233", "author": "", "orig_id": 1454363}}, {"model": "metainfo.source", "pk": 1533, "fields": {"orig_filename": "Sternberg-Manderscheid_Franz-Josef_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 237", "author": "", "orig_id": 1430139}}, {"model": "metainfo.source", "pk": 1534, "fields": {"orig_filename": "Sternberg_Adalbert-Wenzel_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 233f.", "author": "", "orig_id": 1430090}}, {"model": "metainfo.source", "pk": 1535, "fields": {"orig_filename": "Sternberg_Adolf_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234", "author": "", "orig_id": 1458639}}, {"model": "metainfo.source", "pk": 1536, "fields": {"orig_filename": "Sternberg_Carl_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234f.", "author": "", "orig_id": 1430096}}, {"model": "metainfo.source", "pk": 1537, "fields": {"orig_filename": "Sternberg_Julian_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 235", "author": "", "orig_id": 1430095}}, {"model": "metainfo.source", "pk": 1538, "fields": {"orig_filename": "Sternberg_Kaspar_1761_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 235f.", "author": "", "orig_id": 1430097}}, {"model": "metainfo.source", "pk": 1539, "fields": {"orig_filename": "Sternberg_Leopold_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 236", "author": "", "orig_id": 1430098}}, {"model": "metainfo.source", "pk": 1540, "fields": {"orig_filename": "Sternberg_Maximilian_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 236f.", "author": "", "orig_id": 1430136}}, {"model": "metainfo.source", "pk": 1541, "fields": {"orig_filename": "Sternberg_Otto_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234", "author": "", "orig_id": 1822979}}, {"model": "metainfo.source", "pk": 1542, "fields": {"orig_filename": "Sterneck_Berthold_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238", "author": "", "orig_id": 1449779}}, {"model": "metainfo.source", "pk": 1543, "fields": {"orig_filename": "Sterneck_Margarethe_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238", "author": "", "orig_id": 1474852}}, {"model": "metainfo.source", "pk": 1544, "fields": {"orig_filename": "Sternen_Matej_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238f.", "author": "", "orig_id": 1429335}}, {"model": "metainfo.source", "pk": 1545, "fields": {"orig_filename": "Sterne_Felix_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 237f.", "author": "", "orig_id": 1430146}}, {"model": "metainfo.source", "pk": 1546, "fields": {"orig_filename": "Sternfeld_Jacques_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 239", "author": "", "orig_id": 1429336}}, {"model": "metainfo.source", "pk": 1547, "fields": {"orig_filename": "Sternglas_Oskar_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 239f.", "author": "", "orig_id": 1472341}}, {"model": "metainfo.source", "pk": 1548, "fields": {"orig_filename": "Stern_Alexander_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221f.", "author": "", "orig_id": 1429537}}, {"model": "metainfo.source", "pk": 1549, "fields": {"orig_filename": "Stern_Alexander_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 222", "author": "", "orig_id": 1430275}}, {"model": "metainfo.source", "pk": 1550, "fields": {"orig_filename": "Stern_Alfred_1831_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 222f.", "author": "", "orig_id": 1429539}}, {"model": "metainfo.source", "pk": 1551, "fields": {"orig_filename": "Stern_Anton_1827_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223", "author": "", "orig_id": 1429710}}, {"model": "metainfo.source", "pk": 1552, "fields": {"orig_filename": "Stern_Arthur_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223f.", "author": "", "orig_id": 1457863}}, {"model": "metainfo.source", "pk": 1553, "fields": {"orig_filename": "Stern_Bernhard_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 224", "author": "", "orig_id": 1435006}}, {"model": "metainfo.source", "pk": 1554, "fields": {"orig_filename": "Stern_Evzen_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 224f.", "author": "", "orig_id": 1429717}}, {"model": "metainfo.source", "pk": 1555, "fields": {"orig_filename": "Stern_Friedrich_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 225", "author": "", "orig_id": 1429719}}, {"model": "metainfo.source", "pk": 1556, "fields": {"orig_filename": "Stern_Hugo_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 225f.", "author": "", "orig_id": 1429766}}, {"model": "metainfo.source", "pk": 1557, "fields": {"orig_filename": "Stern_Josef_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 226", "author": "", "orig_id": 1429771}}, {"model": "metainfo.source", "pk": 1558, "fields": {"orig_filename": "Stern_Josef_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 226f.", "author": "", "orig_id": 1429882}}, {"model": "metainfo.source", "pk": 1559, "fields": {"orig_filename": "Stern_Julius-Bernhard_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228", "author": "", "orig_id": 1429818}}, {"model": "metainfo.source", "pk": 1560, "fields": {"orig_filename": "Stern_Julius_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 227", "author": "", "orig_id": 1429817}}, {"model": "metainfo.source", "pk": 1561, "fields": {"orig_filename": "Stern_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 227f.", "author": "", "orig_id": 1429819}}, {"model": "metainfo.source", "pk": 1562, "fields": {"orig_filename": "Stern_Leopold_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228", "author": "", "orig_id": 1437615}}, {"model": "metainfo.source", "pk": 1563, "fields": {"orig_filename": "Stern_Maurice-Reinhold_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228f.", "author": "", "orig_id": 1429829}}, {"model": "metainfo.source", "pk": 1564, "fields": {"orig_filename": "Stern_Max-Emanuel_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 229", "author": "", "orig_id": 1429932}}, {"model": "metainfo.source", "pk": 1565, "fields": {"orig_filename": "Stern_Richard_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 229f.", "author": "", "orig_id": 1429937}}, {"model": "metainfo.source", "pk": 1566, "fields": {"orig_filename": "Stern_Robert_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230", "author": "", "orig_id": 1429979}}, {"model": "metainfo.source", "pk": 1567, "fields": {"orig_filename": "Stern_Samuel_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230", "author": "", "orig_id": 1429985}}, {"model": "metainfo.source", "pk": 1568, "fields": {"orig_filename": "Stern_Victor_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223", "author": "", "orig_id": 1429987}}, {"model": "metainfo.source", "pk": 1569, "fields": {"orig_filename": "Sterrer_Franz_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1429624}}, {"model": "metainfo.source", "pk": 1570, "fields": {"orig_filename": "Sterrer_Josef_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1432169}}, {"model": "metainfo.source", "pk": 1571, "fields": {"orig_filename": "Sterrer_Karl_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1432171}}, {"model": "metainfo.source", "pk": 1572, "fields": {"orig_filename": "Sterzinger_Joseph-Elias_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 241", "author": "", "orig_id": 1432230}}, {"model": "metainfo.source", "pk": 1573, "fields": {"orig_filename": "Sterzinger_Othmar-Hugo_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 241f.", "author": "", "orig_id": 1432235}}, {"model": "metainfo.source", "pk": 1574, "fields": {"orig_filename": "Sterz_Vinzenz__1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240f.", "author": "", "orig_id": 1432181}}, {"model": "metainfo.source", "pk": 1575, "fields": {"orig_filename": "Steska_Viktor_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 242", "author": "", "orig_id": 1432239}}, {"model": "metainfo.source", "pk": 1576, "fields": {"orig_filename": "Stetka_Gyula_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 242f.", "author": "", "orig_id": 1455112}}, {"model": "metainfo.source", "pk": 1577, "fields": {"orig_filename": "Steub_Ludwig_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 243", "author": "", "orig_id": 1432282}}, {"model": "metainfo.source", "pk": 1578, "fields": {"orig_filename": "Steudel_Johann-Heinrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 243f.", "author": "", "orig_id": 1432283}}, {"model": "metainfo.source", "pk": 1579, "fields": {"orig_filename": "Steurer_Isidor_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 244", "author": "", "orig_id": 1432388}}, {"model": "metainfo.source", "pk": 1580, "fields": {"orig_filename": "Steurer_Leopold_1921_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 244", "author": "", "orig_id": 1432389}}, {"model": "metainfo.source", "pk": 1581, "fields": {"orig_filename": "Steyrer_Franz-Karl_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245", "author": "", "orig_id": 1432436}}, {"model": "metainfo.source", "pk": 1582, "fields": {"orig_filename": "Stiassny-Elzhaim_Felix_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1431865}}, {"model": "metainfo.source", "pk": 1583, "fields": {"orig_filename": "Stiassny_Eduard_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1432656}}, {"model": "metainfo.source", "pk": 1584, "fields": {"orig_filename": "Stiassny_Ignaz_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245f.", "author": "", "orig_id": 1433449}}, {"model": "metainfo.source", "pk": 1585, "fields": {"orig_filename": "Stiassny_Wilhelm_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 246f.", "author": "", "orig_id": 1431991}}, {"model": "metainfo.source", "pk": 1586, "fields": {"orig_filename": "Stibic_Zdenko_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1468947}}, {"model": "metainfo.source", "pk": 1587, "fields": {"orig_filename": "Stibral_Franz_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247f.", "author": "", "orig_id": 1431874}}, {"model": "metainfo.source", "pk": 1588, "fields": {"orig_filename": "Stibral_Jiri_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 248", "author": "", "orig_id": 1431877}}, {"model": "metainfo.source", "pk": 1589, "fields": {"orig_filename": "Stichlberger_Max_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 249", "author": "", "orig_id": 1431920}}, {"model": "metainfo.source", "pk": 1590, "fields": {"orig_filename": "Stich_Ignaz_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 248f.", "author": "", "orig_id": 1431879}}, {"model": "metainfo.source", "pk": 1591, "fields": {"orig_filename": "Stieber_Georg_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 249", "author": "", "orig_id": 1432037}}, {"model": "metainfo.source", "pk": 1592, "fields": {"orig_filename": "Stieber_Miloslav_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432043}}, {"model": "metainfo.source", "pk": 1593, "fields": {"orig_filename": "Stiebitz_Alois-Josef_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432077}}, {"model": "metainfo.source", "pk": 1594, "fields": {"orig_filename": "Stiebitz_Josef_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432078}}, {"model": "metainfo.source", "pk": 1595, "fields": {"orig_filename": "Stiefler_Georg_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 251f.", "author": "", "orig_id": 1432124}}, {"model": "metainfo.source", "pk": 1596, "fields": {"orig_filename": "Stiefsohn_Ignaz_1911_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 252", "author": "", "orig_id": 1432125}}, {"model": "metainfo.source", "pk": 1597, "fields": {"orig_filename": "Stief_Sebastian_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250f.", "author": "", "orig_id": 1432084}}, {"model": "metainfo.source", "pk": 1598, "fields": {"orig_filename": "Stieger_Franz_1843_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 252", "author": "", "orig_id": 1432127}}, {"model": "metainfo.source", "pk": 1599, "fields": {"orig_filename": "Stieger_Johann_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253", "author": "", "orig_id": 1432129}}, {"model": "metainfo.source", "pk": 1600, "fields": {"orig_filename": "Stiegler_Karl_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253", "author": "", "orig_id": 1432137}}, {"model": "metainfo.source", "pk": 1601, "fields": {"orig_filename": "Stieglitz_Franz-De-Paula_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253f.", "author": "", "orig_id": 1432139}}, {"model": "metainfo.source", "pk": 1602, "fields": {"orig_filename": "Stiepan_Oskar_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 254", "author": "", "orig_id": 1427648}}, {"model": "metainfo.source", "pk": 1603, "fields": {"orig_filename": "Stiepel_Heinrich-Tugendhold_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 254f.", "author": "", "orig_id": 1432187}}, {"model": "metainfo.source", "pk": 1604, "fields": {"orig_filename": "Stiepel_Wilhelm-Friedrich-Johann_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 255", "author": "", "orig_id": 1432189}}, {"model": "metainfo.source", "pk": 1605, "fields": {"orig_filename": "Stierle-Holzmeister_Josef_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256", "author": "", "orig_id": 1432195}}, {"model": "metainfo.source", "pk": 1606, "fields": {"orig_filename": "Stierle_Maria-Henrietta_1755_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 255f.", "author": "", "orig_id": 1470581}}, {"model": "metainfo.source", "pk": 1607, "fields": {"orig_filename": "Stifft-Gottlieb_Angela_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 258", "author": "", "orig_id": 1432246}}, {"model": "metainfo.source", "pk": 1608, "fields": {"orig_filename": "Stifft_Andreas-Joseph_1760_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 257f.", "author": "", "orig_id": 1432245}}, {"model": "metainfo.source", "pk": 1609, "fields": {"orig_filename": "Steiner_Julius_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172", "author": "", "orig_id": 1430397}}, {"model": "metainfo.source", "pk": 1610, "fields": {"orig_filename": "Steiner_Leopold_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 174", "author": "", "orig_id": 1430442}}, {"model": "metainfo.source", "pk": 1611, "fields": {"orig_filename": "Steiner_Ludwig_1888_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 174f.", "author": "", "orig_id": 1471203}}, {"model": "metainfo.source", "pk": 1612, "fields": {"orig_filename": "Steiner_Maximilian_1830_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 175", "author": "", "orig_id": 1430482}}, {"model": "metainfo.source", "pk": 1613, "fields": {"orig_filename": "Steiner_Maximilian_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 175f.", "author": "", "orig_id": 1430584}}, {"model": "metainfo.source", "pk": 1614, "fields": {"orig_filename": "Steiner_Melchior_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 176", "author": "", "orig_id": 1430586}}, {"model": "metainfo.source", "pk": 1615, "fields": {"orig_filename": "Steiner_Rudolf-Joseph-Lorenz_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 176f.", "author": "", "orig_id": 1430633}}, {"model": "metainfo.source", "pk": 1616, "fields": {"orig_filename": "Steiner_Sebastian_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 177f.", "author": "", "orig_id": 1430637}}, {"model": "metainfo.source", "pk": 1617, "fields": {"orig_filename": "Steiner_Siegfried_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178", "author": "", "orig_id": 1823320}}, {"model": "metainfo.source", "pk": 1618, "fields": {"orig_filename": "Steiner_Sigmund-Anton_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178f.", "author": "", "orig_id": 1430640}}, {"model": "metainfo.source", "pk": 1619, "fields": {"orig_filename": "Steiner_Sigmund_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178", "author": "", "orig_id": 1430639}}, {"model": "metainfo.source", "pk": 1620, "fields": {"orig_filename": "Steiner_Viktor_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 179", "author": "", "orig_id": 1430642}}, {"model": "metainfo.source", "pk": 1621, "fields": {"orig_filename": "Steinfeld_Franz_1750_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430312}}, {"model": "metainfo.source", "pk": 1622, "fields": {"orig_filename": "Steinfeld_Franz_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430311}}, {"model": "metainfo.source", "pk": 1623, "fields": {"orig_filename": "Steinfeld_Wilhelm_1816_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430313}}, {"model": "metainfo.source", "pk": 1624, "fields": {"orig_filename": "Steingraber_Sigmund_1837_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183f.", "author": "", "orig_id": 1430318}}, {"model": "metainfo.source", "pk": 1625, "fields": {"orig_filename": "Steinhaeusl_Otto_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 184", "author": "", "orig_id": 1430360}}, {"model": "metainfo.source", "pk": 1626, "fields": {"orig_filename": "Steinhardt_Antal_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 185", "author": "", "orig_id": 1458631}}, {"model": "metainfo.source", "pk": 1627, "fields": {"orig_filename": "Steinhard_Erich_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 184f.", "author": "", "orig_id": 1430461}}, {"model": "metainfo.source", "pk": 1628, "fields": {"orig_filename": "Steinhauser_Adolf-Maximilian_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 185f.", "author": "", "orig_id": 1430555}}, {"model": "metainfo.source", "pk": 1629, "fields": {"orig_filename": "Steinhauser_Anton_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 186", "author": "", "orig_id": 1430556}}, {"model": "metainfo.source", "pk": 1630, "fields": {"orig_filename": "Steinhauser_Anton_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 186f.", "author": "", "orig_id": 1430564}}, {"model": "metainfo.source", "pk": 1631, "fields": {"orig_filename": "Steinhauser_Josef_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187", "author": "", "orig_id": 1430664}}, {"model": "metainfo.source", "pk": 1632, "fields": {"orig_filename": "Steinhauser_Robert_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187", "author": "", "orig_id": 1430668}}, {"model": "metainfo.source", "pk": 1633, "fields": {"orig_filename": "Steinhausz_Gyula_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1430552}}, {"model": "metainfo.source", "pk": 1634, "fields": {"orig_filename": "Steinheil_Carl-August_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187f.", "author": "", "orig_id": 1430769}}, {"model": "metainfo.source", "pk": 1635, "fields": {"orig_filename": "Steinherz_Samuel_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 188", "author": "", "orig_id": 1430773}}, {"model": "metainfo.source", "pk": 1636, "fields": {"orig_filename": "Steininger_Augustin_1794_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 188f.", "author": "", "orig_id": 1430818}}, {"model": "metainfo.source", "pk": 1637, "fields": {"orig_filename": "Steininger_Johann-Nep_1856_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 189", "author": "", "orig_id": 1472588}}, {"model": "metainfo.source", "pk": 1638, "fields": {"orig_filename": "Steininger_Josef_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 189f.", "author": "", "orig_id": 1430826}}, {"model": "metainfo.source", "pk": 1639, "fields": {"orig_filename": "Steininger_Karl_1772_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190", "author": "", "orig_id": 1430829}}, {"model": "metainfo.source", "pk": 1640, "fields": {"orig_filename": "Steininger_Karl_1804_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190", "author": "", "orig_id": 1430866}}, {"model": "metainfo.source", "pk": 1641, "fields": {"orig_filename": "Steininger_Karl_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190f.", "author": "", "orig_id": 1843702}}, {"model": "metainfo.source", "pk": 1642, "fields": {"orig_filename": "Steinitz-Moser_Marie_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 192f.", "author": "", "orig_id": 1430332}}, {"model": "metainfo.source", "pk": 1643, "fields": {"orig_filename": "Steinitz_Eduard_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193", "author": "", "orig_id": 1430876}}, {"model": "metainfo.source", "pk": 1644, "fields": {"orig_filename": "Steinitz_Heinrich_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 191", "author": "", "orig_id": 1430915}}, {"model": "metainfo.source", "pk": 1645, "fields": {"orig_filename": "Steinitz_Leo_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 191f.", "author": "", "orig_id": 1430294}}, {"model": "metainfo.source", "pk": 1646, "fields": {"orig_filename": "Steinitz_Wilhelm_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 192", "author": "", "orig_id": 1414679}}, {"model": "metainfo.source", "pk": 1647, "fields": {"orig_filename": "Steinkeller_Piotr-Antoni_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193", "author": "", "orig_id": 1430337}}, {"model": "metainfo.source", "pk": 1648, "fields": {"orig_filename": "Steinkeller_Rudolf_1805_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193f.", "author": "", "orig_id": 1430339}}, {"model": "metainfo.source", "pk": 1649, "fields": {"orig_filename": "Steinko_Franz_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 194", "author": "", "orig_id": 1430343}}, {"model": "metainfo.source", "pk": 1650, "fields": {"orig_filename": "Steinlechner_Paul_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 195", "author": "", "orig_id": 1430432}}, {"model": "metainfo.source", "pk": 1651, "fields": {"orig_filename": "Steinle_Eduard-Jakob_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 194f.", "author": "", "orig_id": 1430380}}, {"model": "metainfo.source", "pk": 1652, "fields": {"orig_filename": "Steinmann_Josef-Johann_1779_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 196", "author": "", "orig_id": 1429670}}, {"model": "metainfo.source", "pk": 1653, "fields": {"orig_filename": "Steinmayr_Johann_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 196f.", "author": "", "orig_id": 1429728}}, {"model": "metainfo.source", "pk": 1654, "fields": {"orig_filename": "Steinmetzer_Franz-Xav_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197", "author": "", "orig_id": 1429836}}, {"model": "metainfo.source", "pk": 1655, "fields": {"orig_filename": "Steinringer_Ferdinand_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197", "author": "", "orig_id": 1429838}}, {"model": "metainfo.source", "pk": 1656, "fields": {"orig_filename": "Steinsberg_Moritz_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197f.", "author": "", "orig_id": 1429842}}, {"model": "metainfo.source", "pk": 1657, "fields": {"orig_filename": "Steinschneider_Hermann_1889_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 198", "author": "", "orig_id": 1429845}}, {"model": "metainfo.source", "pk": 1658, "fields": {"orig_filename": "Steinschneider_Moritz_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 198f.", "author": "", "orig_id": 1429884}}, {"model": "metainfo.source", "pk": 1659, "fields": {"orig_filename": "Steinschneider_Otto_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 199f.", "author": "", "orig_id": 1449930}}, {"model": "metainfo.source", "pk": 1660, "fields": {"orig_filename": "Steinsky_Wilhelm_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200", "author": "", "orig_id": 1429889}}, {"model": "metainfo.source", "pk": 1661, "fields": {"orig_filename": "Steinwender_Angelus_1895_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200", "author": "", "orig_id": 1429891}}, {"model": "metainfo.source", "pk": 1662, "fields": {"orig_filename": "Steinwender_Otto_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200f.", "author": "", "orig_id": 1429894}}, {"model": "metainfo.source", "pk": 1663, "fields": {"orig_filename": "Steinwenter_Arthur_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 201", "author": "", "orig_id": 1430102}}, {"model": "metainfo.source", "pk": 1664, "fields": {"orig_filename": "Stein_Alwin_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 145f.", "author": "", "orig_id": 1428310}}, {"model": "metainfo.source", "pk": 1665, "fields": {"orig_filename": "Stein_Anton-Joseph_1759_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 146", "author": "", "orig_id": 1428311}}, {"model": "metainfo.source", "pk": 1666, "fields": {"orig_filename": "Stein_Arthur_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 146f.", "author": "", "orig_id": 1428313}}, {"model": "metainfo.source", "pk": 1667, "fields": {"orig_filename": "Stein_Carl-Andreas_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 147", "author": "", "orig_id": 1428432}}, {"model": "metainfo.source", "pk": 1668, "fields": {"orig_filename": "Stein_Carl-Robert_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 147f.", "author": "", "orig_id": 1428433}}, {"model": "metainfo.source", "pk": 1669, "fields": {"orig_filename": "Stein_Conrad_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428434}}, {"model": "metainfo.source", "pk": 1670, "fields": {"orig_filename": "Stein_Emerich_1762_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428360}}, {"model": "metainfo.source", "pk": 1671, "fields": {"orig_filename": "Stein_Franz_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149f.", "author": "", "orig_id": 1428367}}, {"model": "metainfo.source", "pk": 1672, "fields": {"orig_filename": "Stein_Friedrich-Johann-Philipp-Emil_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150", "author": "", "orig_id": 1428368}}, {"model": "metainfo.source", "pk": 1673, "fields": {"orig_filename": "Stein_Helene_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156", "author": "", "orig_id": 1464855}}, {"model": "metainfo.source", "pk": 1674, "fields": {"orig_filename": "Stein_Isidor_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150f.", "author": "", "orig_id": 1470349}}, {"model": "metainfo.source", "pk": 1675, "fields": {"orig_filename": "Stein_Karl_1801_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428430}}, {"model": "metainfo.source", "pk": 1676, "fields": {"orig_filename": "Stein_Leo_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 151", "author": "", "orig_id": 1428474}}, {"model": "metainfo.source", "pk": 1677, "fields": {"orig_filename": "Stein_Lorenz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 151f.", "author": "", "orig_id": 1428476}}, {"model": "metainfo.source", "pk": 1678, "fields": {"orig_filename": "Stein_Ludwig_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 152f.", "author": "", "orig_id": 1428530}}, {"model": "metainfo.source", "pk": 1679, "fields": {"orig_filename": "Stein_Marc-Aurel_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 153", "author": "", "orig_id": 1428532}}, {"model": "metainfo.source", "pk": 1680, "fields": {"orig_filename": "Stein_Markus_1845_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 153f.", "author": "", "orig_id": 1428534}}, {"model": "metainfo.source", "pk": 1681, "fields": {"orig_filename": "Stein_Matthaeus-Andreas_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 154", "author": "", "orig_id": 1428536}}, {"model": "metainfo.source", "pk": 1682, "fields": {"orig_filename": "Stein_Maximilian_1814_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 154f.", "author": "", "orig_id": 1428537}}, {"model": "metainfo.source", "pk": 1683, "fields": {"orig_filename": "Stein_Otto_1893_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 155", "author": "", "orig_id": 1438161}}, {"model": "metainfo.source", "pk": 1684, "fields": {"orig_filename": "Stein_Richard_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 155f.", "author": "", "orig_id": 1427751}}, {"model": "metainfo.source", "pk": 1685, "fields": {"orig_filename": "Stein_Salomon_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150", "author": "", "orig_id": 1470348}}, {"model": "metainfo.source", "pk": 1686, "fields": {"orig_filename": "Stein_Viktor_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156", "author": "", "orig_id": 1427755}}, {"model": "metainfo.source", "pk": 1687, "fields": {"orig_filename": "Steiskal_Theodor_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 201f.", "author": "", "orig_id": 1429407}}, {"model": "metainfo.source", "pk": 1688, "fields": {"orig_filename": "Stejskal_Franz_1829_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 202", "author": "", "orig_id": 1429354}}, {"model": "metainfo.source", "pk": 1689, "fields": {"orig_filename": "Stejskal_Karl-Borr-Franz-Josef_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 202f.", "author": "", "orig_id": 1429356}}, {"model": "metainfo.source", "pk": 1690, "fields": {"orig_filename": "Stekel_Wilhelm_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 203", "author": "", "orig_id": 1429515}}, {"model": "metainfo.source", "pk": 1691, "fields": {"orig_filename": "Stellwag-Carion_Alois-Peter-Franz_1753_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 204", "author": "", "orig_id": 1429739}}, {"model": "metainfo.source", "pk": 1692, "fields": {"orig_filename": "Stellwag-Carion_Carl_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 204f.", "author": "", "orig_id": 1429897}}, {"model": "metainfo.source", "pk": 1693, "fields": {"orig_filename": "Stelzel_Franz_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 205", "author": "", "orig_id": 1429898}}, {"model": "metainfo.source", "pk": 1694, "fields": {"orig_filename": "Stelzhamer_Franz-Xav_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 205f.", "author": "", "orig_id": 1427194}}, {"model": "metainfo.source", "pk": 1695, "fields": {"orig_filename": "Stelzhamer_Johann-Christoph_1750_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 206f.", "author": "", "orig_id": 1429956}}, {"model": "metainfo.source", "pk": 1696, "fields": {"orig_filename": "Stelzhammer_Anton_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207", "author": "", "orig_id": 1429911}}, {"model": "metainfo.source", "pk": 1697, "fields": {"orig_filename": "Stelzhammer_Ferdinand_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207", "author": "", "orig_id": 1429951}}, {"model": "metainfo.source", "pk": 1698, "fields": {"orig_filename": "Stembera_Matej-Dobromir_1806_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207f.", "author": "", "orig_id": 1430067}}, {"model": "metainfo.source", "pk": 1699, "fields": {"orig_filename": "Stempfer_Georg_1887_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208", "author": "", "orig_id": 1429298}}, {"model": "metainfo.source", "pk": 1700, "fields": {"orig_filename": "Stenc_Jan_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208", "author": "", "orig_id": 1429310}}, {"model": "metainfo.source", "pk": 1701, "fields": {"orig_filename": "Stenner_Peter-Joseph_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208f.", "author": "", "orig_id": 1429371}}, {"model": "metainfo.source", "pk": 1702, "fields": {"orig_filename": "Stenta_Mario_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 209", "author": "", "orig_id": 1429430}}, {"model": "metainfo.source", "pk": 1703, "fields": {"orig_filename": "Stenta_Michele_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 209f.", "author": "", "orig_id": 1429431}}, {"model": "metainfo.source", "pk": 1704, "fields": {"orig_filename": "Stentrup_Ferdinand-Alois_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 210", "author": "", "orig_id": 1429434}}, {"model": "metainfo.source", "pk": 1705, "fields": {"orig_filename": "Stenzinger-Hillardt_Gabriele-Wilhelmine_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 210", "author": "", "orig_id": 1429480}}, {"model": "metainfo.source", "pk": 1706, "fields": {"orig_filename": "Stepanek_Jan-Nep_1783_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 211f.", "author": "", "orig_id": 1429526}}, {"model": "metainfo.source", "pk": 1707, "fields": {"orig_filename": "Stepanek_Karel_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212", "author": "", "orig_id": 1464125}}, {"model": "metainfo.source", "pk": 1708, "fields": {"orig_filename": "Stepankova_Antonie_1820_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212", "author": "", "orig_id": 1429521}}, {"model": "metainfo.source", "pk": 1709, "fields": {"orig_filename": "Stepan_Vaclav_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 211", "author": "", "orig_id": 1429520}}, {"model": "metainfo.source", "pk": 1710, "fields": {"orig_filename": "Staude_Franz_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119", "author": "", "orig_id": 1427785}}, {"model": "metainfo.source", "pk": 1711, "fields": {"orig_filename": "Staudigl_Gisela_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427793}}, {"model": "metainfo.source", "pk": 1712, "fields": {"orig_filename": "Staudigl_Joseph_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427792}}, {"model": "metainfo.source", "pk": 1713, "fields": {"orig_filename": "Staudigl_Joseph_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427791}}, {"model": "metainfo.source", "pk": 1714, "fields": {"orig_filename": "Staudigl_Oskar-Wilhelm_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120f.", "author": "", "orig_id": 1427837}}, {"model": "metainfo.source", "pk": 1715, "fields": {"orig_filename": "Staudigl_Rudolf_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 121f.", "author": "", "orig_id": 1427900}}, {"model": "metainfo.source", "pk": 1716, "fields": {"orig_filename": "Staud_Johann_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 117f.", "author": "", "orig_id": 1427732}}, {"model": "metainfo.source", "pk": 1717, "fields": {"orig_filename": "Staufer_Johann-Anton_1806_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123", "author": "", "orig_id": 1427960}}, {"model": "metainfo.source", "pk": 1718, "fields": {"orig_filename": "Staufer_Johann-Georg_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 122f.", "author": "", "orig_id": 1427961}}, {"model": "metainfo.source", "pk": 1719, "fields": {"orig_filename": "Stauffer_Josef_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123", "author": "", "orig_id": 1427962}}, {"model": "metainfo.source", "pk": 1720, "fields": {"orig_filename": "Stauffer_Viktor_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123f.", "author": "", "orig_id": 1427996}}, {"model": "metainfo.source", "pk": 1721, "fields": {"orig_filename": "Stauf_Ottokar_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 122", "author": "", "orig_id": 1428136}}, {"model": "metainfo.source", "pk": 1722, "fields": {"orig_filename": "Stauracz_Franz-Xav_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 124", "author": "", "orig_id": 1427998}}, {"model": "metainfo.source", "pk": 1723, "fields": {"orig_filename": "Stava_Julius_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 124f.", "author": "", "orig_id": 1453784}}, {"model": "metainfo.source", "pk": 1724, "fields": {"orig_filename": "Stawa_Franz-Anton_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 125", "author": "", "orig_id": 1428001}}, {"model": "metainfo.source", "pk": 1725, "fields": {"orig_filename": "Stecher-Sebenitz_Ferdinand-Jozef_1779_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 126f.", "author": "", "orig_id": 1428191}}, {"model": "metainfo.source", "pk": 1726, "fields": {"orig_filename": "Stecher_Franz-Anton_1814_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 126", "author": "", "orig_id": 1428014}}, {"model": "metainfo.source", "pk": 1727, "fields": {"orig_filename": "Stech_Vaclav_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 125f.", "author": "", "orig_id": 1428149}}, {"model": "metainfo.source", "pk": 1728, "fields": {"orig_filename": "Steckelmacher_Moritz_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 127", "author": "", "orig_id": 1428295}}, {"model": "metainfo.source", "pk": 1729, "fields": {"orig_filename": "Stecker_Anton_1855_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 127f.", "author": "", "orig_id": 1426641}}, {"model": "metainfo.source", "pk": 1730, "fields": {"orig_filename": "Stecker_Karel_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 128", "author": "", "orig_id": 1428297}}, {"model": "metainfo.source", "pk": 1731, "fields": {"orig_filename": "Stecker_Michael_1786_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 128f.", "author": "", "orig_id": 1428299}}, {"model": "metainfo.source", "pk": 1732, "fields": {"orig_filename": "Steczkowski_Jan-Kanty_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 129", "author": "", "orig_id": 1428346}}, {"model": "metainfo.source", "pk": 1733, "fields": {"orig_filename": "Steczkowski_Jan-Kanty_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 129f.", "author": "", "orig_id": 1428347}}, {"model": "metainfo.source", "pk": 1734, "fields": {"orig_filename": "Steczynski_Maciej-Bogusz-Zygmunt_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 130", "author": "", "orig_id": 1428349}}, {"model": "metainfo.source", "pk": 1735, "fields": {"orig_filename": "Steeb_Christian_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 130f.", "author": "", "orig_id": 1428355}}, {"model": "metainfo.source", "pk": 1736, "fields": {"orig_filename": "Steeb_Gustav_1845_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131", "author": "", "orig_id": 1463259}}, {"model": "metainfo.source", "pk": 1737, "fields": {"orig_filename": "Steeb_Johann-Bapt_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131", "author": "", "orig_id": 1428405}}, {"model": "metainfo.source", "pk": 1738, "fields": {"orig_filename": "Stefanelli_Ioan_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132", "author": "", "orig_id": 1428519}}, {"model": "metainfo.source", "pk": 1739, "fields": {"orig_filename": "Stefanik_Milan-Rastislav_1880_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 133f.", "author": "", "orig_id": 1428527}}, {"model": "metainfo.source", "pk": 1740, "fields": {"orig_filename": "Stefani_Jan_1746_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132f.", "author": "", "orig_id": 1428523}}, {"model": "metainfo.source", "pk": 1741, "fields": {"orig_filename": "Stefanovic-Vilovo_Johann_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134", "author": "", "orig_id": 1427747}}, {"model": "metainfo.source", "pk": 1742, "fields": {"orig_filename": "Stefanovic_Franjo_1879_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134", "author": "", "orig_id": 1427736}}, {"model": "metainfo.source", "pk": 1743, "fields": {"orig_filename": "Stefanowicz_Samuel-Cyrill_1755_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134f.", "author": "", "orig_id": 1427797}}, {"model": "metainfo.source", "pk": 1744, "fields": {"orig_filename": "Stefanyk_Vasyl_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 135", "author": "", "orig_id": 1427800}}, {"model": "metainfo.source", "pk": 1745, "fields": {"orig_filename": "Stefan_Christian_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131f.", "author": "", "orig_id": 1428462}}, {"model": "metainfo.source", "pk": 1746, "fields": {"orig_filename": "Stefan_Josef_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132", "author": "", "orig_id": 1428465}}, {"model": "metainfo.source", "pk": 1747, "fields": {"orig_filename": "Steffal_Vaclav_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 135f.", "author": "", "orig_id": 1427850}}, {"model": "metainfo.source", "pk": 1748, "fields": {"orig_filename": "Steffen_Karl-Emanuel_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 136", "author": "", "orig_id": 1427863}}, {"model": "metainfo.source", "pk": 1749, "fields": {"orig_filename": "Stegensek_Avgustin_1875_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 136f.", "author": "", "orig_id": 1427918}}, {"model": "metainfo.source", "pk": 1750, "fields": {"orig_filename": "Steger_Anton_1768_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 137", "author": "", "orig_id": 1427920}}, {"model": "metainfo.source", "pk": 1751, "fields": {"orig_filename": "Steger_Emil_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 137", "author": "", "orig_id": 1437608}}, {"model": "metainfo.source", "pk": 1752, "fields": {"orig_filename": "Steger_Franz_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 138", "author": "", "orig_id": 1427921}}, {"model": "metainfo.source", "pk": 1753, "fields": {"orig_filename": "Steger_Heinrich_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 138f.", "author": "", "orig_id": 1428012}}, {"model": "metainfo.source", "pk": 1754, "fields": {"orig_filename": "Steger_Joseph_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 139", "author": "", "orig_id": 1428047}}, {"model": "metainfo.source", "pk": 1755, "fields": {"orig_filename": "Stegmayer_Ferdinand_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 139f.", "author": "", "orig_id": 1428058}}, {"model": "metainfo.source", "pk": 1756, "fields": {"orig_filename": "Stegmayer_Karl_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 140", "author": "", "orig_id": 1428059}}, {"model": "metainfo.source", "pk": 1757, "fields": {"orig_filename": "Stegmayer_Matthaeus_1771_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 140", "author": "", "orig_id": 1428060}}, {"model": "metainfo.source", "pk": 1758, "fields": {"orig_filename": "Stegnar_Felix_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1428097}}, {"model": "metainfo.source", "pk": 1759, "fields": {"orig_filename": "Stehle_Adele_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1467852}}, {"model": "metainfo.source", "pk": 1760, "fields": {"orig_filename": "Stehle_Franz_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1841950}}, {"model": "metainfo.source", "pk": 1761, "fields": {"orig_filename": "Stehlik-Cenkow-Treustaett_Emanuel_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141f.", "author": "", "orig_id": 1428101}}, {"model": "metainfo.source", "pk": 1762, "fields": {"orig_filename": "Stehlin_Sebastian_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142", "author": "", "orig_id": 1428153}}, {"model": "metainfo.source", "pk": 1763, "fields": {"orig_filename": "Stehlin_Stanislaus_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142", "author": "", "orig_id": 1428154}}, {"model": "metainfo.source", "pk": 1764, "fields": {"orig_filename": "Steidele_Raphael-Johann_1737_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142f.", "author": "", "orig_id": 1428158}}, {"model": "metainfo.source", "pk": 1765, "fields": {"orig_filename": "Steidler_Josef_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 143f.", "author": "", "orig_id": 1428198}}, {"model": "metainfo.source", "pk": 1766, "fields": {"orig_filename": "Steidle_Richard_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 143", "author": "", "orig_id": 1428196}}, {"model": "metainfo.source", "pk": 1767, "fields": {"orig_filename": "Steigentesch_Ernst-August_1774_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 144", "author": "", "orig_id": 1427641}}, {"model": "metainfo.source", "pk": 1768, "fields": {"orig_filename": "Steiger_Benedikt_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 144f.", "author": "", "orig_id": 1428202}}, {"model": "metainfo.source", "pk": 1769, "fields": {"orig_filename": "Steinach_Eugen_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156f.", "author": "", "orig_id": 1427603}}, {"model": "metainfo.source", "pk": 1770, "fields": {"orig_filename": "Steinach_Simon_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 157f.", "author": "", "orig_id": 1427762}}, {"model": "metainfo.source", "pk": 1771, "fields": {"orig_filename": "Steinach_Wilhelm_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 158", "author": "", "orig_id": 1427807}}, {"model": "metainfo.source", "pk": 1772, "fields": {"orig_filename": "Steinacker_Edmund_1839_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 158f.", "author": "", "orig_id": 1428180}}, {"model": "metainfo.source", "pk": 1773, "fields": {"orig_filename": "Steinacker_Gustav-Wilhelm_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 159", "author": "", "orig_id": 1427810}}, {"model": "metainfo.source", "pk": 1774, "fields": {"orig_filename": "Steinbach_Emil_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 159f.", "author": "", "orig_id": 1427877}}, {"model": "metainfo.source", "pk": 1775, "fields": {"orig_filename": "Steinbach_Gustav_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 160", "author": "", "orig_id": 1427880}}, {"model": "metainfo.source", "pk": 1776, "fields": {"orig_filename": "Steinbach_Josef_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427884}}, {"model": "metainfo.source", "pk": 1777, "fields": {"orig_filename": "Steinbach_Josef_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 160f.", "author": "", "orig_id": 1427924}}, {"model": "metainfo.source", "pk": 1778, "fields": {"orig_filename": "Steinbach_Leopold_1904_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161", "author": "", "orig_id": 1427925}}, {"model": "metainfo.source", "pk": 1779, "fields": {"orig_filename": "Steinberger_Marianne_1887_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161", "author": "", "orig_id": 1448192}}, {"model": "metainfo.source", "pk": 1780, "fields": {"orig_filename": "Steinberger_Philipp_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161f.", "author": "", "orig_id": 1428018}}, {"model": "metainfo.source", "pk": 1781, "fields": {"orig_filename": "Steinberg_Julius_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427976}}, {"model": "metainfo.source", "pk": 1782, "fields": {"orig_filename": "Steinbrener_Johann_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 162", "author": "", "orig_id": 1430566}}, {"model": "metainfo.source", "pk": 1783, "fields": {"orig_filename": "Steinbrener_Rupert_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 162f.", "author": "", "orig_id": 1842549}}, {"model": "metainfo.source", "pk": 1784, "fields": {"orig_filename": "Steinbuechel-Rheinwall_Anton_1790_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 163", "author": "", "orig_id": 1430572}}, {"model": "metainfo.source", "pk": 1785, "fields": {"orig_filename": "Steindachner_Franz_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 164", "author": "", "orig_id": 1430623}}, {"model": "metainfo.source", "pk": 1786, "fields": {"orig_filename": "Steindl_Imre_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 164f.", "author": "", "orig_id": 1430626}}, {"model": "metainfo.source", "pk": 1787, "fields": {"orig_filename": "Steindl_Mathias-Paulus_1761_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165", "author": "", "orig_id": 1430684}}, {"model": "metainfo.source", "pk": 1788, "fields": {"orig_filename": "Steinebach_Friedrich_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166", "author": "", "orig_id": 1430733}}, {"model": "metainfo.source", "pk": 1789, "fields": {"orig_filename": "Steinegger_Ambros_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166", "author": "", "orig_id": 1430737}}, {"model": "metainfo.source", "pk": 1790, "fields": {"orig_filename": "Steinegger_Otto_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166f.", "author": "", "orig_id": 1430833}}, {"model": "metainfo.source", "pk": 1791, "fields": {"orig_filename": "Steiner-Felsburg_Albrecht_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 180", "author": "", "orig_id": 1430691}}, {"model": "metainfo.source", "pk": 1792, "fields": {"orig_filename": "Steiner-Pfungen_Eduard_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181", "author": "", "orig_id": 1430270}}, {"model": "metainfo.source", "pk": 1793, "fields": {"orig_filename": "Steiner-Pfungen_Joseph_1767_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 180f.", "author": "", "orig_id": 1430305}}, {"model": "metainfo.source", "pk": 1794, "fields": {"orig_filename": "Steiner-Pfungen_Robert-Wilhelm-Joseph_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181", "author": "", "orig_id": 1430306}}, {"model": "metainfo.source", "pk": 1795, "fields": {"orig_filename": "Steiner-Prag_Hugo_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181f.", "author": "", "orig_id": 1430307}}, {"model": "metainfo.source", "pk": 1796, "fields": {"orig_filename": "Steiner-Wischenbart_Josef_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 182f.", "author": "", "orig_id": 1430308}}, {"model": "metainfo.source", "pk": 1797, "fields": {"orig_filename": "Steiner_Agnes-Klara_1813_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 167", "author": "", "orig_id": 1430480}}, {"model": "metainfo.source", "pk": 1798, "fields": {"orig_filename": "Steiner_Bernd_1884_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 167f.", "author": "", "orig_id": 1430935}}, {"model": "metainfo.source", "pk": 1799, "fields": {"orig_filename": "Steiner_Franz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 168", "author": "", "orig_id": 1430201}}, {"model": "metainfo.source", "pk": 1800, "fields": {"orig_filename": "Steiner_Friedrich_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 168f.", "author": "", "orig_id": 1430247}}, {"model": "metainfo.source", "pk": 1801, "fields": {"orig_filename": "Steiner_Fueloep_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 169", "author": "", "orig_id": 1430630}}, {"model": "metainfo.source", "pk": 1802, "fields": {"orig_filename": "Steiner_Gabor_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 169f.", "author": "", "orig_id": 1430250}}, {"model": "metainfo.source", "pk": 1803, "fields": {"orig_filename": "Steiner_Hanna_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 170f.", "author": "", "orig_id": 1430253}}, {"model": "metainfo.source", "pk": 1804, "fields": {"orig_filename": "Steiner_Heinrich-Elchanan_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 171", "author": "", "orig_id": 1430295}}, {"model": "metainfo.source", "pk": 1805, "fields": {"orig_filename": "Steiner_Hermann_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 171f.", "author": "", "orig_id": 1842752}}, {"model": "metainfo.source", "pk": 1806, "fields": {"orig_filename": "Steiner_Johann_1833_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172f.", "author": "", "orig_id": 1430303}}, {"model": "metainfo.source", "pk": 1807, "fields": {"orig_filename": "Steiner_Josef_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 173", "author": "", "orig_id": 1430357}}, {"model": "metainfo.source", "pk": 1808, "fields": {"orig_filename": "Steiner_Jo_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172", "author": "", "orig_id": 1430388}}, {"model": "metainfo.source", "pk": 1809, "fields": {"orig_filename": "Steiner_Julius_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 173f.", "author": "", "orig_id": 1430393}}, {"model": "metainfo.source", "pk": 1810, "fields": {"orig_filename": "Steiner_Julius_1863_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 177f.", "author": "", "orig_id": 1430395}}, {"model": "metainfo.source", "pk": 1811, "fields": {"orig_filename": "Stadler_Joseph_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 74", "author": "", "orig_id": 1429027}}, {"model": "metainfo.source", "pk": 1812, "fields": {"orig_filename": "Stadler_Josip_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 74f.", "author": "", "orig_id": 1429062}}, {"model": "metainfo.source", "pk": 1813, "fields": {"orig_filename": "Stadler_Maximilian_1748_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 75f.", "author": "", "orig_id": 1429066}}, {"model": "metainfo.source", "pk": 1814, "fields": {"orig_filename": "Stadlmayr_Franz_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 76", "author": "", "orig_id": 1429149}}, {"model": "metainfo.source", "pk": 1815, "fields": {"orig_filename": "Stadl_Josef_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 70f.", "author": "", "orig_id": 1428923}}, {"model": "metainfo.source", "pk": 1816, "fields": {"orig_filename": "Stadl_Peter_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 71", "author": "", "orig_id": 1428926}}, {"model": "metainfo.source", "pk": 1817, "fields": {"orig_filename": "Stadnicki_Jan_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77", "author": "", "orig_id": 1429204}}, {"model": "metainfo.source", "pk": 1818, "fields": {"orig_filename": "Stadnicki_Kazimierz_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77", "author": "", "orig_id": 1429205}}, {"model": "metainfo.source", "pk": 1819, "fields": {"orig_filename": "Stadnicki_Stanislaw-Jan-Kanty_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77f.", "author": "", "orig_id": 1429207}}, {"model": "metainfo.source", "pk": 1820, "fields": {"orig_filename": "Staehlin_Gustav-Adolf_1816_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1429261}}, {"model": "metainfo.source", "pk": 1821, "fields": {"orig_filename": "Staehlin_Heinrich-August_1812_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1429262}}, {"model": "metainfo.source", "pk": 1822, "fields": {"orig_filename": "Staehlin_Karl_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1428570}}, {"model": "metainfo.source", "pk": 1823, "fields": {"orig_filename": "Staetter_Philipp_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78f.", "author": "", "orig_id": 1464534}}, {"model": "metainfo.source", "pk": 1824, "fields": {"orig_filename": "Staffler_Johann-Jakob_1783_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 79f.", "author": "", "orig_id": 1428662}}, {"model": "metainfo.source", "pk": 1825, "fields": {"orig_filename": "Staffler_Josef_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 80", "author": "", "orig_id": 1428664}}, {"model": "metainfo.source", "pk": 1826, "fields": {"orig_filename": "Staff_Alois_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 79", "author": "", "orig_id": 1428610}}, {"model": "metainfo.source", "pk": 1827, "fields": {"orig_filename": "Stafl_Otakar_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 80f.", "author": "", "orig_id": 1464916}}, {"model": "metainfo.source", "pk": 1828, "fields": {"orig_filename": "Stahly_Gyoergy_1809_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82", "author": "", "orig_id": 1428217}}, {"model": "metainfo.source", "pk": 1829, "fields": {"orig_filename": "Stahly_Ignacz_1787_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82", "author": "", "orig_id": 1428219}}, {"model": "metainfo.source", "pk": 1830, "fields": {"orig_filename": "Stahl_Ludwig_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 81", "author": "", "orig_id": 1428170}}, {"model": "metainfo.source", "pk": 1831, "fields": {"orig_filename": "Stahl_Philipp_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 81f.", "author": "", "orig_id": 1428174}}, {"model": "metainfo.source", "pk": 1832, "fields": {"orig_filename": "Stainer_Karl_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82f.", "author": "", "orig_id": 1448660}}, {"model": "metainfo.source", "pk": 1833, "fields": {"orig_filename": "Staininger_Michael_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 83", "author": "", "orig_id": 1428253}}, {"model": "metainfo.source", "pk": 1834, "fields": {"orig_filename": "Stalmach_Paul_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 83f.", "author": "", "orig_id": 1428316}}, {"model": "metainfo.source", "pk": 1835, "fields": {"orig_filename": "Stalzer_Hans_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 84", "author": "", "orig_id": 1428317}}, {"model": "metainfo.source", "pk": 1836, "fields": {"orig_filename": "Stalzer_Josef_1880_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 84f.", "author": "", "orig_id": 1428318}}, {"model": "metainfo.source", "pk": 1837, "fields": {"orig_filename": "Stammhammer_Josef_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 85f.", "author": "", "orig_id": 1428327}}, {"model": "metainfo.source", "pk": 1838, "fields": {"orig_filename": "Stamm_Ferdinand_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 85", "author": "", "orig_id": 1428323}}, {"model": "metainfo.source", "pk": 1839, "fields": {"orig_filename": "Stampfer_Coelestin_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 86", "author": "", "orig_id": 1428381}}, {"model": "metainfo.source", "pk": 1840, "fields": {"orig_filename": "Stampfer_Simon_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 86f.", "author": "", "orig_id": 1428387}}, {"model": "metainfo.source", "pk": 1841, "fields": {"orig_filename": "Stampfl_Josef_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 87", "author": "", "orig_id": 1428437}}, {"model": "metainfo.source", "pk": 1842, "fields": {"orig_filename": "Standfest_Franz_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88", "author": "", "orig_id": 1428446}}, {"model": "metainfo.source", "pk": 1843, "fields": {"orig_filename": "Standl_Ivan_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88", "author": "", "orig_id": 1428448}}, {"model": "metainfo.source", "pk": 1844, "fields": {"orig_filename": "Standthartner_Josef_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88f.", "author": "", "orig_id": 1428502}}, {"model": "metainfo.source", "pk": 1845, "fields": {"orig_filename": "Stand_Adolf_1870_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 87f.", "author": "", "orig_id": 1428442}}, {"model": "metainfo.source", "pk": 1846, "fields": {"orig_filename": "Stanecki_Tomasz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 89", "author": "", "orig_id": 1429203}}, {"model": "metainfo.source", "pk": 1847, "fields": {"orig_filename": "Stanek_Frantisek_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 89f.", "author": "", "orig_id": 1428451}}, {"model": "metainfo.source", "pk": 1848, "fields": {"orig_filename": "Stanek_Jan_1828_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 90", "author": "", "orig_id": 1428482}}, {"model": "metainfo.source", "pk": 1849, "fields": {"orig_filename": "Stanek_Josef_1883_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 90f.", "author": "", "orig_id": 1464803}}, {"model": "metainfo.source", "pk": 1850, "fields": {"orig_filename": "Stanek_Vaclav_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 91", "author": "", "orig_id": 1428484}}, {"model": "metainfo.source", "pk": 1851, "fields": {"orig_filename": "Stanic_Konstantin_1756_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 91f.", "author": "", "orig_id": 1427765}}, {"model": "metainfo.source", "pk": 1852, "fields": {"orig_filename": "Stanic_Valentin_1774_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 92f.", "author": "", "orig_id": 1427764}}, {"model": "metainfo.source", "pk": 1853, "fields": {"orig_filename": "Stanislawski_Jan-Grzegorz_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427773}}, {"model": "metainfo.source", "pk": 1854, "fields": {"orig_filename": "Stanke_Franz_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427777}}, {"model": "metainfo.source", "pk": 1855, "fields": {"orig_filename": "Stanke_Leopold-Franz_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427778}}, {"model": "metainfo.source", "pk": 1856, "fields": {"orig_filename": "Stankovich_Pietro-Mattia_1771_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 94f.", "author": "", "orig_id": 1428440}}, {"model": "metainfo.source", "pk": 1857, "fields": {"orig_filename": "Stankovic_Kornelije_1831_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 94", "author": "", "orig_id": 1427779}}, {"model": "metainfo.source", "pk": 1858, "fields": {"orig_filename": "Stankovsky_Josef-Jiri_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 95", "author": "", "orig_id": 1427824}}, {"model": "metainfo.source", "pk": 1859, "fields": {"orig_filename": "Stanojevic_Stanoje_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 95f.", "author": "", "orig_id": 1427825}}, {"model": "metainfo.source", "pk": 1860, "fields": {"orig_filename": "Stanonik_Franz_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 96", "author": "", "orig_id": 1427827}}, {"model": "metainfo.source", "pk": 1861, "fields": {"orig_filename": "Stapf_Johann-Josef-Anton_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 96f.", "author": "", "orig_id": 1427885}}, {"model": "metainfo.source", "pk": 1862, "fields": {"orig_filename": "Stapf_Josef_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98", "author": "", "orig_id": 1470903}}, {"model": "metainfo.source", "pk": 1863, "fields": {"orig_filename": "Stapf_Josef_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98", "author": "", "orig_id": 1470388}}, {"model": "metainfo.source", "pk": 1864, "fields": {"orig_filename": "Stapf_Joseph-Ambros_1785_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97", "author": "", "orig_id": 1427836}}, {"model": "metainfo.source", "pk": 1865, "fields": {"orig_filename": "Stapf_Joseph_1779_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97", "author": "", "orig_id": 1470387}}, {"model": "metainfo.source", "pk": 1866, "fields": {"orig_filename": "Stapf_Martin_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97f.", "author": "", "orig_id": 1427886}}, {"model": "metainfo.source", "pk": 1867, "fields": {"orig_filename": "Stapf_Otto_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98f.", "author": "", "orig_id": 1427887}}, {"model": "metainfo.source", "pk": 1868, "fields": {"orig_filename": "Stapf_Thomas_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 99", "author": "", "orig_id": 1427888}}, {"model": "metainfo.source", "pk": 1869, "fields": {"orig_filename": "Starcevic_Ante_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 99f.", "author": "", "orig_id": 1427893}}, {"model": "metainfo.source", "pk": 1870, "fields": {"orig_filename": "Starcevic_David_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100", "author": "", "orig_id": 1427894}}, {"model": "metainfo.source", "pk": 1871, "fields": {"orig_filename": "Starcevic_Mile_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100", "author": "", "orig_id": 1427895}}, {"model": "metainfo.source", "pk": 1872, "fields": {"orig_filename": "Starck_Johann-Anton_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100f.", "author": "", "orig_id": 1427938}}, {"model": "metainfo.source", "pk": 1873, "fields": {"orig_filename": "Starck_Johann-David_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 101", "author": "", "orig_id": 1427939}}, {"model": "metainfo.source", "pk": 1874, "fields": {"orig_filename": "Starek_Ludovit_1803_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102", "author": "", "orig_id": 1427982}}, {"model": "metainfo.source", "pk": 1875, "fields": {"orig_filename": "Stare_Josip_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 101", "author": "", "orig_id": 1427947}}, {"model": "metainfo.source", "pk": 1876, "fields": {"orig_filename": "Starhemberg_Anton-Gundakar_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102", "author": "", "orig_id": 1427984}}, {"model": "metainfo.source", "pk": 1877, "fields": {"orig_filename": "Starhemberg_Camillo-Heinrich_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102f.", "author": "", "orig_id": 1427986}}, {"model": "metainfo.source", "pk": 1878, "fields": {"orig_filename": "Starhemberg_Camillo-Ruediger_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103", "author": "", "orig_id": 1427987}}, {"model": "metainfo.source", "pk": 1879, "fields": {"orig_filename": "Starhemberg_Ernst-Ruediger_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103", "author": "", "orig_id": 1427989}}, {"model": "metainfo.source", "pk": 1880, "fields": {"orig_filename": "Starhemberg_Franziska_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103f.", "author": "", "orig_id": 1428027}}, {"model": "metainfo.source", "pk": 1881, "fields": {"orig_filename": "Starhemberg_Ludwig_1762_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 104f.", "author": "", "orig_id": 1428034}}, {"model": "metainfo.source", "pk": 1882, "fields": {"orig_filename": "Stark-Rungberg_Franz-Xav_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 108", "author": "", "orig_id": 1428126}}, {"model": "metainfo.source", "pk": 1883, "fields": {"orig_filename": "Starkenstein_Emil_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 109f.", "author": "", "orig_id": 1427600}}, {"model": "metainfo.source", "pk": 1884, "fields": {"orig_filename": "Starke_Friedrich_1774_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 108f.", "author": "", "orig_id": 1428129}}, {"model": "metainfo.source", "pk": 1885, "fields": {"orig_filename": "Starkl_Gottfried_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 110", "author": "", "orig_id": 1428275}}, {"model": "metainfo.source", "pk": 1886, "fields": {"orig_filename": "Stark_Adele_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105f.", "author": "", "orig_id": 1428072}}, {"model": "metainfo.source", "pk": 1887, "fields": {"orig_filename": "Stark_Franz-Anton_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 106", "author": "", "orig_id": 1428081}}, {"model": "metainfo.source", "pk": 1888, "fields": {"orig_filename": "Stark_Johannes_1794_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 106", "author": "", "orig_id": 1428083}}, {"model": "metainfo.source", "pk": 1889, "fields": {"orig_filename": "Stark_Josef-August_1782_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107", "author": "", "orig_id": 1428118}}, {"model": "metainfo.source", "pk": 1890, "fields": {"orig_filename": "Stark_Lipot_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107", "author": "", "orig_id": 1428122}}, {"model": "metainfo.source", "pk": 1891, "fields": {"orig_filename": "Stark_Simon_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107f.", "author": "", "orig_id": 1427943}}, {"model": "metainfo.source", "pk": 1892, "fields": {"orig_filename": "Starlinger_Josef_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 110f.", "author": "", "orig_id": 1428277}}, {"model": "metainfo.source", "pk": 1893, "fields": {"orig_filename": "Stary_Emanuel_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111", "author": "", "orig_id": 1428285}}, {"model": "metainfo.source", "pk": 1894, "fields": {"orig_filename": "Stary_Emanuel_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111", "author": "", "orig_id": 1428330}}, {"model": "metainfo.source", "pk": 1895, "fields": {"orig_filename": "Stary_Sigismund-Anton_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111f.", "author": "", "orig_id": 1428332}}, {"model": "metainfo.source", "pk": 1896, "fields": {"orig_filename": "Starzengruber_Josef_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112", "author": "", "orig_id": 1428334}}, {"model": "metainfo.source", "pk": 1897, "fields": {"orig_filename": "Starzer_Albert_1863_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112", "author": "", "orig_id": 1428339}}, {"model": "metainfo.source", "pk": 1898, "fields": {"orig_filename": "Starzynski_Stanislaw_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112f.", "author": "", "orig_id": 1428344}}, {"model": "metainfo.source", "pk": 1899, "fields": {"orig_filename": "Stastny_Alfons-Bohumil_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 113f.", "author": "", "orig_id": 1464123}}, {"model": "metainfo.source", "pk": 1900, "fields": {"orig_filename": "Stastny_Alfons_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 113", "author": "", "orig_id": 1428394}}, {"model": "metainfo.source", "pk": 1901, "fields": {"orig_filename": "Stastny_Bernard-Vaclav_1760_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114", "author": "", "orig_id": 1428395}}, {"model": "metainfo.source", "pk": 1902, "fields": {"orig_filename": "Stastny_Jan_1764_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114", "author": "", "orig_id": 1468140}}, {"model": "metainfo.source", "pk": 1903, "fields": {"orig_filename": "Stastny_Vladimir_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114f.", "author": "", "orig_id": 1428508}}, {"model": "metainfo.source", "pk": 1904, "fields": {"orig_filename": "Stattler_Henryk-Antoni_1834_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115", "author": "", "orig_id": 1428510}}, {"model": "metainfo.source", "pk": 1905, "fields": {"orig_filename": "Stattler_Stanislaw_1836_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115", "author": "", "orig_id": 1428512}}, {"model": "metainfo.source", "pk": 1906, "fields": {"orig_filename": "Stattler_Wojciech-Korneli_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115f.", "author": "", "orig_id": 1428509}}, {"model": "metainfo.source", "pk": 1907, "fields": {"orig_filename": "Staub_Franz_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 116", "author": "", "orig_id": 1427722}}, {"model": "metainfo.source", "pk": 1908, "fields": {"orig_filename": "Staub_Moritz_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 116f.", "author": "", "orig_id": 1427725}}, {"model": "metainfo.source", "pk": 1909, "fields": {"orig_filename": "Staudach_Emma-Antonia_1834_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 118f.", "author": "", "orig_id": 1427783}}, {"model": "metainfo.source", "pk": 1910, "fields": {"orig_filename": "Stauda_August_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 118", "author": "", "orig_id": 1427734}}, {"model": "metainfo.source", "pk": 1911, "fields": {"orig_filename": "Staudenheim_Jakob_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119", "author": "", "orig_id": 1427787}}, {"model": "metainfo.source", "pk": 1912, "fields": {"orig_filename": "Stauder_Hermann_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119f.", "author": "", "orig_id": 1430582}}, {"model": "metainfo.source", "pk": 1913, "fields": {"orig_filename": "Spies_Hermann_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 26", "author": "", "orig_id": 1426893}}, {"model": "metainfo.source", "pk": 1914, "fields": {"orig_filename": "Spillar_Jaroslav_1869_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 27", "author": "", "orig_id": 1426177}}, {"model": "metainfo.source", "pk": 1915, "fields": {"orig_filename": "Spillar_Karel_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 27f.", "author": "", "orig_id": 1429006}}, {"model": "metainfo.source", "pk": 1916, "fields": {"orig_filename": "Spiller_Philipp_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28", "author": "", "orig_id": 1426180}}, {"model": "metainfo.source", "pk": 1917, "fields": {"orig_filename": "Spina_Anton_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28", "author": "", "orig_id": 1426186}}, {"model": "metainfo.source", "pk": 1918, "fields": {"orig_filename": "Spina_Arnold_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28f.", "author": "", "orig_id": 1426187}}, {"model": "metainfo.source", "pk": 1919, "fields": {"orig_filename": "Spina_Carl-Anton_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 29", "author": "", "orig_id": 1426189}}, {"model": "metainfo.source", "pk": 1920, "fields": {"orig_filename": "Spina_Franz_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 29f.", "author": "", "orig_id": 1426188}}, {"model": "metainfo.source", "pk": 1921, "fields": {"orig_filename": "Spindler_Ervin_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30", "author": "", "orig_id": 1426235}}, {"model": "metainfo.source", "pk": 1922, "fields": {"orig_filename": "Spinka_Anna__1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30f.", "author": "", "orig_id": 1470622}}, {"model": "metainfo.source", "pk": 1923, "fields": {"orig_filename": "Spinka_Vaclav_1796_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30f.", "author": "", "orig_id": 1426244}}, {"model": "metainfo.source", "pk": 1924, "fields": {"orig_filename": "Spira_Jacob-Fritz_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 31f.", "author": "", "orig_id": 1426249}}, {"model": "metainfo.source", "pk": 1925, "fields": {"orig_filename": "Spirk_Antonin-Ferdinand_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426451}}, {"model": "metainfo.source", "pk": 1926, "fields": {"orig_filename": "Spirk_Antonin_1838_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426450}}, {"model": "metainfo.source", "pk": 1927, "fields": {"orig_filename": "Spiro_Ede_1805_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426455}}, {"model": "metainfo.source", "pk": 1928, "fields": {"orig_filename": "Spiro_Ignaz_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32f.", "author": "", "orig_id": 1426457}}, {"model": "metainfo.source", "pk": 1929, "fields": {"orig_filename": "Spiss_Cassian_1866_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 33f.", "author": "", "orig_id": 1428834}}, {"model": "metainfo.source", "pk": 1930, "fields": {"orig_filename": "Spis_Stanislaw_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 33", "author": "", "orig_id": 1428831}}, {"model": "metainfo.source", "pk": 1931, "fields": {"orig_filename": "Spitaler_Rudolf_1859_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 34f.", "author": "", "orig_id": 1428881}}, {"model": "metainfo.source", "pk": 1932, "fields": {"orig_filename": "Spitzeder_Josef_1794_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 36f.", "author": "", "orig_id": 1429037}}, {"model": "metainfo.source", "pk": 1933, "fields": {"orig_filename": "Spitzer_Alexander_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37", "author": "", "orig_id": 1429031}}, {"model": "metainfo.source", "pk": 1934, "fields": {"orig_filename": "Spitzer_Berthold_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37", "author": "", "orig_id": 1429072}}, {"model": "metainfo.source", "pk": 1935, "fields": {"orig_filename": "Spitzer_Daniel_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37f.", "author": "", "orig_id": 1429122}}, {"model": "metainfo.source", "pk": 1936, "fields": {"orig_filename": "Spitzer_Emanuel_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 38f.", "author": "", "orig_id": 1429157}}, {"model": "metainfo.source", "pk": 1937, "fields": {"orig_filename": "Spitzer_Frederic_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 39", "author": "", "orig_id": 1454350}}, {"model": "metainfo.source", "pk": 1938, "fields": {"orig_filename": "Spitzer_Friedrich-Viktor_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 39f.", "author": "", "orig_id": 1429160}}, {"model": "metainfo.source", "pk": 1939, "fields": {"orig_filename": "Spitzer_Hugo_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 40", "author": "", "orig_id": 1429168}}, {"model": "metainfo.source", "pk": 1940, "fields": {"orig_filename": "Spitzer_Leonie-Adele_1891_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 41", "author": "", "orig_id": 1437605}}, {"model": "metainfo.source", "pk": 1941, "fields": {"orig_filename": "Spitzer_Rudolf-Lothar_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 41f.", "author": "", "orig_id": 1429224}}, {"model": "metainfo.source", "pk": 1942, "fields": {"orig_filename": "Spitzer_Salomon_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 42", "author": "", "orig_id": 1454378}}, {"model": "metainfo.source", "pk": 1943, "fields": {"orig_filename": "Spitzer_Sigmund_1813_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 42f.", "author": "", "orig_id": 1429268}}, {"model": "metainfo.source", "pk": 1944, "fields": {"orig_filename": "Spitzer_Simon_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 43", "author": "", "orig_id": 1429270}}, {"model": "metainfo.source", "pk": 1945, "fields": {"orig_filename": "Spitz_Albrecht_1883_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 35", "author": "", "orig_id": 1428887}}, {"model": "metainfo.source", "pk": 1946, "fields": {"orig_filename": "Spitz_Ernst_1902_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 35f.", "author": "", "orig_id": 1428889}}, {"model": "metainfo.source", "pk": 1947, "fields": {"orig_filename": "Spitz_Heinrich-Otto_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 36", "author": "", "orig_id": 1428934}}, {"model": "metainfo.source", "pk": 1948, "fields": {"orig_filename": "Spleny-Mihaldy_Franz_1768_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1470624}}, {"model": "metainfo.source", "pk": 1949, "fields": {"orig_filename": "Spleny-Mihaldy_Gabriel_1734_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 43f.", "author": "", "orig_id": 1428583}}, {"model": "metainfo.source", "pk": 1950, "fields": {"orig_filename": "Spleny-Mihaldy_Ignaz-Pankraz-Galeaz_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1428582}}, {"model": "metainfo.source", "pk": 1951, "fields": {"orig_filename": "Spleny-Mihaldy_Ludwig_1817_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1428622}}, {"model": "metainfo.source", "pk": 1952, "fields": {"orig_filename": "Spoerlin_Michael_1784_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44f.", "author": "", "orig_id": 1428624}}, {"model": "metainfo.source", "pk": 1953, "fields": {"orig_filename": "Spoerr_Franz-Xav_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 45", "author": "", "orig_id": 1428677}}, {"model": "metainfo.source", "pk": 1954, "fields": {"orig_filename": "Spoerr_Martin_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 45f.", "author": "", "orig_id": 1428679}}, {"model": "metainfo.source", "pk": 1955, "fields": {"orig_filename": "Sponer_Andor_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 46", "author": "", "orig_id": 1428722}}, {"model": "metainfo.source", "pk": 1956, "fields": {"orig_filename": "Sporschil_Johann-Chrysostomus_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 46f.", "author": "", "orig_id": 1428851}}, {"model": "metainfo.source", "pk": 1957, "fields": {"orig_filename": "Spott_Jan_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 47", "author": "", "orig_id": 1428895}}, {"model": "metainfo.source", "pk": 1958, "fields": {"orig_filename": "Spott_Karel_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 47f.", "author": "", "orig_id": 1428896}}, {"model": "metainfo.source", "pk": 1959, "fields": {"orig_filename": "Sprecher-Bernegg_Arthur-Heinrich_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 48", "author": "", "orig_id": 1428953}}, {"model": "metainfo.source", "pk": 1960, "fields": {"orig_filename": "Sprenger_Aloys_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 49", "author": "", "orig_id": 1428997}}, {"model": "metainfo.source", "pk": 1961, "fields": {"orig_filename": "Sprenger_Paul-Eduard_1798_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 49f.", "author": "", "orig_id": 1429000}}, {"model": "metainfo.source", "pk": 1962, "fields": {"orig_filename": "Spreng_Anton_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 48f.", "author": "", "orig_id": 1428994}}, {"model": "metainfo.source", "pk": 1963, "fields": {"orig_filename": "Springer_Adalbert_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 50", "author": "", "orig_id": 1429052}}, {"model": "metainfo.source", "pk": 1964, "fields": {"orig_filename": "Springer_Adolf_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55", "author": "", "orig_id": 1469855}}, {"model": "metainfo.source", "pk": 1965, "fields": {"orig_filename": "Springer_Alfred_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429053}}, {"model": "metainfo.source", "pk": 1966, "fields": {"orig_filename": "Springer_Anton-Heinrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 50f.", "author": "", "orig_id": 1429079}}, {"model": "metainfo.source", "pk": 1967, "fields": {"orig_filename": "Springer_Franz_1791_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 51f.", "author": "", "orig_id": 1429085}}, {"model": "metainfo.source", "pk": 1968, "fields": {"orig_filename": "Springer_Gustav_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429088}}, {"model": "metainfo.source", "pk": 1969, "fields": {"orig_filename": "Springer_Gustav_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53", "author": "", "orig_id": 1429089}}, {"model": "metainfo.source", "pk": 1970, "fields": {"orig_filename": "Springer_Hermann_1845_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429090}}, {"model": "metainfo.source", "pk": 1971, "fields": {"orig_filename": "Springer_Hugo_1873_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52f.", "author": "", "orig_id": 1429133}}, {"model": "metainfo.source", "pk": 1972, "fields": {"orig_filename": "Springer_Johann_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53f.", "author": "", "orig_id": 1429136}}, {"model": "metainfo.source", "pk": 1973, "fields": {"orig_filename": "Springer_Johann_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53", "author": "", "orig_id": 1429176}}, {"model": "metainfo.source", "pk": 1974, "fields": {"orig_filename": "Springer_Max_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 54", "author": "", "orig_id": 1429184}}, {"model": "metainfo.source", "pk": 1975, "fields": {"orig_filename": "Springer_Sidonie_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 54f.", "author": "", "orig_id": 1429188}}, {"model": "metainfo.source", "pk": 1976, "fields": {"orig_filename": "Springer_Sigmund_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55", "author": "", "orig_id": 1429189}}, {"model": "metainfo.source", "pk": 1977, "fields": {"orig_filename": "Sprinzl_Josef_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55f.", "author": "", "orig_id": 1429291}}, {"model": "metainfo.source", "pk": 1978, "fields": {"orig_filename": "Sprung_Franz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 56", "author": "", "orig_id": 1428547}}, {"model": "metainfo.source", "pk": 1979, "fields": {"orig_filename": "Spurny_Athanasius-A-S-Sophia_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 56f.", "author": "", "orig_id": 1470902}}, {"model": "metainfo.source", "pk": 1980, "fields": {"orig_filename": "Spurzheim_Johann-Christoph_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57", "author": "", "orig_id": 1470900}}, {"model": "metainfo.source", "pk": 1981, "fields": {"orig_filename": "Spurzheim_Karl_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57", "author": "", "orig_id": 1428589}}, {"model": "metainfo.source", "pk": 1982, "fields": {"orig_filename": "Squarcina_Giovanni_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57f.", "author": "", "orig_id": 1428594}}, {"model": "metainfo.source", "pk": 1983, "fields": {"orig_filename": "Sramko_Paul_1743_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 58", "author": "", "orig_id": 1465729}}, {"model": "metainfo.source", "pk": 1984, "fields": {"orig_filename": "Srbik_Robert_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59f.", "author": "", "orig_id": 1428603}}, {"model": "metainfo.source", "pk": 1985, "fields": {"orig_filename": "Srbova_Anna_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 60f.", "author": "", "orig_id": 1428604}}, {"model": "metainfo.source", "pk": 1986, "fields": {"orig_filename": "Srb_Adolf_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 58f.", "author": "", "orig_id": 1429248}}, {"model": "metainfo.source", "pk": 1987, "fields": {"orig_filename": "Srb_Josef_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59", "author": "", "orig_id": 1429253}}, {"model": "metainfo.source", "pk": 1988, "fields": {"orig_filename": "Srb_Vladimir_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59", "author": "", "orig_id": 1429251}}, {"model": "metainfo.source", "pk": 1989, "fields": {"orig_filename": "Srdinko_Frantisek_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 61", "author": "", "orig_id": 1428645}}, {"model": "metainfo.source", "pk": 1990, "fields": {"orig_filename": "Srdinko_Hynek_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62", "author": "", "orig_id": 1428646}}, {"model": "metainfo.source", "pk": 1991, "fields": {"orig_filename": "Srdinko_Otakar_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 61f.", "author": "", "orig_id": 1428647}}, {"model": "metainfo.source", "pk": 1992, "fields": {"orig_filename": "Srna_Carl_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62", "author": "", "orig_id": 1428656}}, {"model": "metainfo.source", "pk": 1993, "fields": {"orig_filename": "Srobar_Vavro_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62f.", "author": "", "orig_id": 1428660}}, {"model": "metainfo.source", "pk": 1994, "fields": {"orig_filename": "Srom_Frantisek_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 63", "author": "", "orig_id": 1428747}}, {"model": "metainfo.source", "pk": 1995, "fields": {"orig_filename": "Srutek_Josef-Anton_1822_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 63f.", "author": "", "orig_id": 1428779}}, {"model": "metainfo.source", "pk": 1996, "fields": {"orig_filename": "Stabinger_Ferdinand_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64", "author": "", "orig_id": 1428788}}, {"model": "metainfo.source", "pk": 1997, "fields": {"orig_filename": "Stacherski_Antoni-Wladyslaw_1831_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 66f.", "author": "", "orig_id": 1428823}}, {"model": "metainfo.source", "pk": 1998, "fields": {"orig_filename": "Stache_Friedrich-August_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 65f.", "author": "", "orig_id": 1428792}}, {"model": "metainfo.source", "pk": 1999, "fields": {"orig_filename": "Stache_Karl-Heinrich-Hector-Guido_1833_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 66", "author": "", "orig_id": 1428822}}, {"model": "metainfo.source", "pk": 2000, "fields": {"orig_filename": "Stachiewicz_Piotr_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 67", "author": "", "orig_id": 1467159}}, {"model": "metainfo.source", "pk": 2001, "fields": {"orig_filename": "Stachowicz_Michal-Franciszek_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 67f.", "author": "", "orig_id": 1428867}}, {"model": "metainfo.source", "pk": 2002, "fields": {"orig_filename": "Stachowicz_Teodor-Baltazar_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68", "author": "", "orig_id": 1470901}}, {"model": "metainfo.source", "pk": 2003, "fields": {"orig_filename": "Stach_Friedrich_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64", "author": "", "orig_id": 1426845}}, {"model": "metainfo.source", "pk": 2004, "fields": {"orig_filename": "Stach_Vaclav_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64f.", "author": "", "orig_id": 1428789}}, {"model": "metainfo.source", "pk": 2005, "fields": {"orig_filename": "Stadion-Thannhausen_Emerich_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68", "author": "", "orig_id": 1428874}}, {"model": "metainfo.source", "pk": 2006, "fields": {"orig_filename": "Stadion-Thannhausen_Philipp-Franz_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68f.", "author": "", "orig_id": 1428877}}, {"model": "metainfo.source", "pk": 2007, "fields": {"orig_filename": "Stadion-Warthausen_Franz_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 69", "author": "", "orig_id": 1428878}}, {"model": "metainfo.source", "pk": 2008, "fields": {"orig_filename": "Stadion-Warthausen_Johann-Philipp-Karl_1763_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 69f.", "author": "", "orig_id": 1428879}}, {"model": "metainfo.source", "pk": 2009, "fields": {"orig_filename": "Stadler_Albert_1794_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 71f.", "author": "", "orig_id": 1428969}}, {"model": "metainfo.source", "pk": 2010, "fields": {"orig_filename": "Stadler_Alfred_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72", "author": "", "orig_id": 1428970}}, {"model": "metainfo.source", "pk": 2011, "fields": {"orig_filename": "Stadler_Alois-Martin_1792_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72", "author": "", "orig_id": 1428971}}, {"model": "metainfo.source", "pk": 2012, "fields": {"orig_filename": "Stadler_Arthur_1892_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72f.", "author": "", "orig_id": 1428976}}, {"model": "metainfo.source", "pk": 2013, "fields": {"orig_filename": "Stadler_Dominik_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 73", "author": "", "orig_id": 1429014}}, {"model": "metainfo.source", "pk": 2014, "fields": {"orig_filename": "Stadler_Josef_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 73f.", "author": "", "orig_id": 1429026}}, {"model": "metainfo.source", "pk": 2015, "fields": {"orig_filename": "Soretic_Theodor_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430f.", "author": "", "orig_id": 1457376}}, {"model": "metainfo.source", "pk": 2016, "fields": {"orig_filename": "Sorgato_Antonio-Maria_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431", "author": "", "orig_id": 1439094}}, {"model": "metainfo.source", "pk": 2017, "fields": {"orig_filename": "Sorgo_Josef_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431f.", "author": "", "orig_id": 1439198}}, {"model": "metainfo.source", "pk": 2018, "fields": {"orig_filename": "Sorsich-Severin_Adalbert_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432", "author": "", "orig_id": 1439214}}, {"model": "metainfo.source", "pk": 2019, "fields": {"orig_filename": "Soster_Bartolomeo_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432", "author": "", "orig_id": 1438313}}, {"model": "metainfo.source", "pk": 2020, "fields": {"orig_filename": "Soterius-Sachsenheim_Arthur_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432f.", "author": "", "orig_id": 1439215}}, {"model": "metainfo.source", "pk": 2021, "fields": {"orig_filename": "Sothen_Johann-Carl_1823_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433", "author": "", "orig_id": 1438319}}, {"model": "metainfo.source", "pk": 2022, "fields": {"orig_filename": "Sotriffer_Christian_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434", "author": "", "orig_id": 1463764}}, {"model": "metainfo.source", "pk": 2023, "fields": {"orig_filename": "Sotriffer_Johann-Jakob_1796_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433f.", "author": "", "orig_id": 1438322}}, {"model": "metainfo.source", "pk": 2024, "fields": {"orig_filename": "Sotriffer_Joseph_1802_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433f.", "author": "", "orig_id": 1463763}}, {"model": "metainfo.source", "pk": 2025, "fields": {"orig_filename": "Soucek_Stanislav_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434", "author": "", "orig_id": 1438333}}, {"model": "metainfo.source", "pk": 2026, "fields": {"orig_filename": "Soukup_Frantisek_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434f.", "author": "", "orig_id": 1438372}}, {"model": "metainfo.source", "pk": 2027, "fields": {"orig_filename": "Soulavy_Ottokar_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 435", "author": "", "orig_id": 1454266}}, {"model": "metainfo.source", "pk": 2028, "fields": {"orig_filename": "Sourek_Antonin-Vaclav_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 435f.", "author": "", "orig_id": 1438389}}, {"model": "metainfo.source", "pk": 2029, "fields": {"orig_filename": "Souvan_Ferdinand_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1456643}}, {"model": "metainfo.source", "pk": 2030, "fields": {"orig_filename": "Souvan_Ferdinand_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1464310}}, {"model": "metainfo.source", "pk": 2031, "fields": {"orig_filename": "Souvan_Franc-Ks_1799_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1438439}}, {"model": "metainfo.source", "pk": 2032, "fields": {"orig_filename": "Souvan_Franc-Ks_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1438440}}, {"model": "metainfo.source", "pk": 2033, "fields": {"orig_filename": "Sova_Antonin_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436f.", "author": "", "orig_id": 1438442}}, {"model": "metainfo.source", "pk": 2034, "fields": {"orig_filename": "Sowinski_Ignaz_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438449}}, {"model": "metainfo.source", "pk": 2035, "fields": {"orig_filename": "Soxhlet_Felix_1804_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437f.", "author": "", "orig_id": 1438507}}, {"model": "metainfo.source", "pk": 2036, "fields": {"orig_filename": "Soxhlet_Hubert__1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438509}}, {"model": "metainfo.source", "pk": 2037, "fields": {"orig_filename": "Soyfer_Jura_1912_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 438f.", "author": "", "orig_id": 1438512}}, {"model": "metainfo.source", "pk": 2038, "fields": {"orig_filename": "Soyka_Isidor_1850_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 439f.", "author": "", "orig_id": 1438514}}, {"model": "metainfo.source", "pk": 2039, "fields": {"orig_filename": "Soyka_Viktor_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440", "author": "", "orig_id": 1438519}}, {"model": "metainfo.source", "pk": 2040, "fields": {"orig_filename": "Spacek_Richard_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440", "author": "", "orig_id": 1426611}}, {"model": "metainfo.source", "pk": 2041, "fields": {"orig_filename": "Spacil_Jan_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440f.", "author": "", "orig_id": 1426615}}, {"model": "metainfo.source", "pk": 2042, "fields": {"orig_filename": "Spaengler_Alois_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 441", "author": "", "orig_id": 1426617}}, {"model": "metainfo.source", "pk": 2043, "fields": {"orig_filename": "Spaengler_Alois_1824_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 441f.", "author": "", "orig_id": 1426618}}, {"model": "metainfo.source", "pk": 2044, "fields": {"orig_filename": "Spaengler_Carl_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 442", "author": "", "orig_id": 1426702}}, {"model": "metainfo.source", "pk": 2045, "fields": {"orig_filename": "Spaengler_Ludwig_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 442f.", "author": "", "orig_id": 1426706}}, {"model": "metainfo.source", "pk": 2046, "fields": {"orig_filename": "Spaengler_Rudolf_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 443", "author": "", "orig_id": 1426707}}, {"model": "metainfo.source", "pk": 2047, "fields": {"orig_filename": "Spaeter_Carl_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 443f.", "author": "", "orig_id": 1426709}}, {"model": "metainfo.source", "pk": 2048, "fields": {"orig_filename": "Spaeth_Ernst_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 444", "author": "", "orig_id": 1426754}}, {"model": "metainfo.source", "pk": 2049, "fields": {"orig_filename": "Spaeth_Franz-Xav_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 444f.", "author": "", "orig_id": 1426755}}, {"model": "metainfo.source", "pk": 2050, "fields": {"orig_filename": "Spaeth_Josef_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 445", "author": "", "orig_id": 1426758}}, {"model": "metainfo.source", "pk": 2051, "fields": {"orig_filename": "Spala_Vaclav_1885_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 446", "author": "", "orig_id": 1426817}}, {"model": "metainfo.source", "pk": 2052, "fields": {"orig_filename": "Spalowsky_Franz_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 446f.", "author": "", "orig_id": 1448627}}, {"model": "metainfo.source", "pk": 2053, "fields": {"orig_filename": "Spandl_Hermann_1899_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 447", "author": "", "orig_id": 1458549}}, {"model": "metainfo.source", "pk": 2054, "fields": {"orig_filename": "Spannagel_Rudolf_1866_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 448", "author": "", "orig_id": 1426154}}, {"model": "metainfo.source", "pk": 2055, "fields": {"orig_filename": "Spanner_Anton-Carl_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1", "author": "", "orig_id": 1426326}}, {"model": "metainfo.source", "pk": 2056, "fields": {"orig_filename": "Spannocchi_Lelio_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1", "author": "", "orig_id": 1426334}}, {"model": "metainfo.source", "pk": 2057, "fields": {"orig_filename": "Spannocchi_Peter-Leopold_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1f.", "author": "", "orig_id": 1426336}}, {"model": "metainfo.source", "pk": 2058, "fields": {"orig_filename": "Spannring_Hubert_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 2", "author": "", "orig_id": 1426381}}, {"model": "metainfo.source", "pk": 2059, "fields": {"orig_filename": "Spann_Othmar_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 447f.", "author": "", "orig_id": 1426924}}, {"model": "metainfo.source", "pk": 2060, "fields": {"orig_filename": "Spanyik_Glycer_1781_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3", "author": "", "orig_id": 1426389}}, {"model": "metainfo.source", "pk": 2061, "fields": {"orig_filename": "Spanyik_Kornel_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3", "author": "", "orig_id": 1426391}}, {"model": "metainfo.source", "pk": 2062, "fields": {"orig_filename": "Spanyi_Bela_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 2f.", "author": "", "orig_id": 1426386}}, {"model": "metainfo.source", "pk": 2063, "fields": {"orig_filename": "Sparber_Josaphat_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3f.", "author": "", "orig_id": 1426434}}, {"model": "metainfo.source", "pk": 2064, "fields": {"orig_filename": "Spatny_Frantisek_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 4", "author": "", "orig_id": 1426487}}, {"model": "metainfo.source", "pk": 2065, "fields": {"orig_filename": "Spatzenegger_Leopold_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 4f.", "author": "", "orig_id": 1426576}}, {"model": "metainfo.source", "pk": 2066, "fields": {"orig_filename": "Spatzier_Johann-Nep-Florian_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 5", "author": "", "orig_id": 1426578}}, {"model": "metainfo.source", "pk": 2067, "fields": {"orig_filename": "Spaun_Anton_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 5f.", "author": "", "orig_id": 1426581}}, {"model": "metainfo.source", "pk": 2068, "fields": {"orig_filename": "Spaun_Franz-Anton_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 6", "author": "", "orig_id": 1426584}}, {"model": "metainfo.source", "pk": 2069, "fields": {"orig_filename": "Spaun_Hermann_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 6f.", "author": "", "orig_id": 1426586}}, {"model": "metainfo.source", "pk": 2070, "fields": {"orig_filename": "Spaun_Josef_1788_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7", "author": "", "orig_id": 1426621}}, {"model": "metainfo.source", "pk": 2071, "fields": {"orig_filename": "Spaun_Marie_1795_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7", "author": "", "orig_id": 1426627}}, {"model": "metainfo.source", "pk": 2072, "fields": {"orig_filename": "Spaun_Max_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7f.", "author": "", "orig_id": 1426629}}, {"model": "metainfo.source", "pk": 2073, "fields": {"orig_filename": "Spaur_Friedrich-Franz-Joseph_1756_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 8", "author": "", "orig_id": 1426669}}, {"model": "metainfo.source", "pk": 2074, "fields": {"orig_filename": "Spaur_Marie_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 8f.", "author": "", "orig_id": 1426625}}, {"model": "metainfo.source", "pk": 2075, "fields": {"orig_filename": "Spaur_Philipp_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9", "author": "", "orig_id": 1426714}}, {"model": "metainfo.source", "pk": 2076, "fields": {"orig_filename": "Spechtenhauser_Johann-Bapt_1760_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 10f.", "author": "", "orig_id": 1426766}}, {"model": "metainfo.source", "pk": 2077, "fields": {"orig_filename": "Specht_Josef-Anton_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9f.", "author": "", "orig_id": 1451940}}, {"model": "metainfo.source", "pk": 2078, "fields": {"orig_filename": "Specht_Richard_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 10", "author": "", "orig_id": 1426762}}, {"model": "metainfo.source", "pk": 2079, "fields": {"orig_filename": "Spech_Johann_1767_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9", "author": "", "orig_id": 1426725}}, {"model": "metainfo.source", "pk": 2080, "fields": {"orig_filename": "Speckbacher_Andreas_1798_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 11", "author": "", "orig_id": 1426771}}, {"model": "metainfo.source", "pk": 2081, "fields": {"orig_filename": "Speckbacher_Caspar_1819_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 11f.", "author": "", "orig_id": 1426772}}, {"model": "metainfo.source", "pk": 2082, "fields": {"orig_filename": "Speckbacher_Josef_1767_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 12", "author": "", "orig_id": 1426820}}, {"model": "metainfo.source", "pk": 2083, "fields": {"orig_filename": "Speckmoser_Ulrich_1781_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 12f.", "author": "", "orig_id": 1426824}}, {"model": "metainfo.source", "pk": 2084, "fields": {"orig_filename": "Specz-Ladhaza_Rudolf_1798_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 13", "author": "", "orig_id": 1426826}}, {"model": "metainfo.source", "pk": 2085, "fields": {"orig_filename": "Speidel-Haeberle_Else_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 14", "author": "", "orig_id": 1426829}}, {"model": "metainfo.source", "pk": 2086, "fields": {"orig_filename": "Speidel_Ludwig_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 13f.", "author": "", "orig_id": 1426828}}, {"model": "metainfo.source", "pk": 2087, "fields": {"orig_filename": "Speiser_Paul_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 14f.", "author": "", "orig_id": 1426873}}, {"model": "metainfo.source", "pk": 2088, "fields": {"orig_filename": "Spendou_Joseph_1757_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 15", "author": "", "orig_id": 1426878}}, {"model": "metainfo.source", "pk": 2089, "fields": {"orig_filename": "Spens-Booden_Alois_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 15f.", "author": "", "orig_id": 1426925}}, {"model": "metainfo.source", "pk": 2090, "fields": {"orig_filename": "Spens-Booden_Emanuel_1831_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 16", "author": "", "orig_id": 1437146}}, {"model": "metainfo.source", "pk": 2091, "fields": {"orig_filename": "Sperber_Hugo_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 16f.", "author": "", "orig_id": 1426935}}, {"model": "metainfo.source", "pk": 2092, "fields": {"orig_filename": "Sperk_Bernhard_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 17", "author": "", "orig_id": 1426167}}, {"model": "metainfo.source", "pk": 2093, "fields": {"orig_filename": "Speyer_Agnes_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 17f.", "author": "", "orig_id": 1426287}}, {"model": "metainfo.source", "pk": 2094, "fields": {"orig_filename": "Spezger_Carl_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18", "author": "", "orig_id": 1426284}}, {"model": "metainfo.source", "pk": 2095, "fields": {"orig_filename": "Spidlen_Frantisek_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18", "author": "", "orig_id": 1426292}}, {"model": "metainfo.source", "pk": 2096, "fields": {"orig_filename": "Spiegelfeld_Markus_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20f.", "author": "", "orig_id": 1426493}}, {"model": "metainfo.source", "pk": 2097, "fields": {"orig_filename": "Spiegel_Emil_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20", "author": "", "orig_id": 1426343}}, {"model": "metainfo.source", "pk": 2098, "fields": {"orig_filename": "Spiegel_Frigyes_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18f.", "author": "", "orig_id": 1454339}}, {"model": "metainfo.source", "pk": 2099, "fields": {"orig_filename": "Spiegel_Kaethe_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 19", "author": "", "orig_id": 1438181}}, {"model": "metainfo.source", "pk": 2100, "fields": {"orig_filename": "Spiegel_Ludwig_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 19f.", "author": "", "orig_id": 1426442}}, {"model": "metainfo.source", "pk": 2101, "fields": {"orig_filename": "Spiegel_Magda_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20", "author": "", "orig_id": 1426400}}, {"model": "metainfo.source", "pk": 2102, "fields": {"orig_filename": "Spiegl-Thurnsee_Edgar_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 21", "author": "", "orig_id": 1426342}}, {"model": "metainfo.source", "pk": 2103, "fields": {"orig_filename": "Spiegl-Thurnsee_Edgar_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 21f.", "author": "", "orig_id": 1426500}}, {"model": "metainfo.source", "pk": 2104, "fields": {"orig_filename": "Spiegler_Eduard_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 22", "author": "", "orig_id": 1426502}}, {"model": "metainfo.source", "pk": 2105, "fields": {"orig_filename": "Spielmann_Emmerich_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1469652}}, {"model": "metainfo.source", "pk": 2106, "fields": {"orig_filename": "Spielmann_Ferdinand_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1470620}}, {"model": "metainfo.source", "pk": 2107, "fields": {"orig_filename": "Spielmann_Johann_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23f.", "author": "", "orig_id": 1426840}}, {"model": "metainfo.source", "pk": 2108, "fields": {"orig_filename": "Spielmann_Julius_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 24", "author": "", "orig_id": 1426842}}, {"model": "metainfo.source", "pk": 2109, "fields": {"orig_filename": "Spielmann_Julius_1872_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 24f.", "author": "", "orig_id": 1426844}}, {"model": "metainfo.source", "pk": 2110, "fields": {"orig_filename": "Spielmann_Leopold_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25", "author": "", "orig_id": 1426884}}, {"model": "metainfo.source", "pk": 2111, "fields": {"orig_filename": "Spielmann_Melanie_1885_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25", "author": "", "orig_id": 1426886}}, {"model": "metainfo.source", "pk": 2112, "fields": {"orig_filename": "Spielmann_Rudolf_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25f.", "author": "", "orig_id": 1426889}}, {"model": "metainfo.source", "pk": 2113, "fields": {"orig_filename": "Spiess_Friedrich-Wilhelm_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 26f.", "author": "", "orig_id": 1426940}}, {"model": "metainfo.source", "pk": 2114, "fields": {"orig_filename": "Sobitschka_Coelestin_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387", "author": "", "orig_id": 1439351}}, {"model": "metainfo.source", "pk": 2115, "fields": {"orig_filename": "Sobota_Emil_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387f.", "author": "", "orig_id": 1461518}}, {"model": "metainfo.source", "pk": 2116, "fields": {"orig_filename": "Sobotka_Benedikt_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 388", "author": "", "orig_id": 1439420}}, {"model": "metainfo.source", "pk": 2117, "fields": {"orig_filename": "Sobotka_Jan_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 388f.", "author": "", "orig_id": 1439494}}, {"model": "metainfo.source", "pk": 2118, "fields": {"orig_filename": "Sobotka_Primus_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 389", "author": "", "orig_id": 1457815}}, {"model": "metainfo.source", "pk": 2119, "fields": {"orig_filename": "Sobo_Jenoe_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387", "author": "", "orig_id": 1439416}}, {"model": "metainfo.source", "pk": 2120, "fields": {"orig_filename": "Sochaniewicz_Kazimierz-Roman_1892_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 390", "author": "", "orig_id": 1438414}}, {"model": "metainfo.source", "pk": 2121, "fields": {"orig_filename": "Sochan_Pavol_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 389f.", "author": "", "orig_id": 1438413}}, {"model": "metainfo.source", "pk": 2122, "fields": {"orig_filename": "Sochor-Friedrichsthal_Eduard_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 391f.", "author": "", "orig_id": 1438472}}, {"model": "metainfo.source", "pk": 2123, "fields": {"orig_filename": "Sochor-Friedrichsthal_Eduard_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1468177}}, {"model": "metainfo.source", "pk": 2124, "fields": {"orig_filename": "Sochor-Friedrichsthal_Friedrich_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1438473}}, {"model": "metainfo.source", "pk": 2125, "fields": {"orig_filename": "Sochor_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 390f.", "author": "", "orig_id": 1457811}}, {"model": "metainfo.source", "pk": 2126, "fields": {"orig_filename": "Sochor_Vaclav_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 391", "author": "", "orig_id": 1438470}}, {"model": "metainfo.source", "pk": 2127, "fields": {"orig_filename": "Socin_Constantino_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1438475}}, {"model": "metainfo.source", "pk": 2128, "fields": {"orig_filename": "Sockl_Clara-Adelheid_1822_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 393", "author": "", "orig_id": 1438316}}, {"model": "metainfo.source", "pk": 2129, "fields": {"orig_filename": "Sockl_Theodor-Benedikt_1815_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392f.", "author": "", "orig_id": 1438477}}, {"model": "metainfo.source", "pk": 2130, "fields": {"orig_filename": "Soczynski_Karol-Teodor_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 393f.", "author": "", "orig_id": 1438478}}, {"model": "metainfo.source", "pk": 2131, "fields": {"orig_filename": "Soelder-Prakenstein_Friedrich_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394", "author": "", "orig_id": 1438485}}, {"model": "metainfo.source", "pk": 2132, "fields": {"orig_filename": "Soellner_Elisabeth_1776_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394f.", "author": "", "orig_id": 1438538}}, {"model": "metainfo.source", "pk": 2133, "fields": {"orig_filename": "Soellner_Johann_1769_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394", "author": "", "orig_id": 1461776}}, {"model": "metainfo.source", "pk": 2134, "fields": {"orig_filename": "Soeser_Ferdinand-Leopold_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395", "author": "", "orig_id": 1438546}}, {"model": "metainfo.source", "pk": 2135, "fields": {"orig_filename": "Soeser_Maximilian_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395", "author": "", "orig_id": 1438547}}, {"model": "metainfo.source", "pk": 2136, "fields": {"orig_filename": "Soffe_Emil-Ludwig_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395f.", "author": "", "orig_id": 1438551}}, {"model": "metainfo.source", "pk": 2137, "fields": {"orig_filename": "Sogni_Giuseppe_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 396", "author": "", "orig_id": 1438611}}, {"model": "metainfo.source", "pk": 2138, "fields": {"orig_filename": "Sohm_Bonifaz_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 396f.", "author": "", "orig_id": 1438619}}, {"model": "metainfo.source", "pk": 2139, "fields": {"orig_filename": "Sojer_Johannes-Kapistran_1798_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397", "author": "", "orig_id": 1438676}}, {"model": "metainfo.source", "pk": 2140, "fields": {"orig_filename": "Sojka_Jan-Erazim_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397", "author": "", "orig_id": 1438681}}, {"model": "metainfo.source", "pk": 2141, "fields": {"orig_filename": "Sojka_Mathias_1740_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397f.", "author": "", "orig_id": 1438682}}, {"model": "metainfo.source", "pk": 2142, "fields": {"orig_filename": "Sokcevic_Josip_1811_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 398", "author": "", "orig_id": 1438686}}, {"model": "metainfo.source", "pk": 2143, "fields": {"orig_filename": "Sokolar_Franz_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401", "author": "", "orig_id": 1438778}}, {"model": "metainfo.source", "pk": 2144, "fields": {"orig_filename": "Sokoltuma_Frantisek_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401", "author": "", "orig_id": 1463423}}, {"model": "metainfo.source", "pk": 2145, "fields": {"orig_filename": "Sokol_Antonin-H_1847_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 398f.", "author": "", "orig_id": 1438732}}, {"model": "metainfo.source", "pk": 2146, "fields": {"orig_filename": "Sokol_Bernardin_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399", "author": "", "orig_id": 1438733}}, {"model": "metainfo.source", "pk": 2147, "fields": {"orig_filename": "Sokol_Frantisek_1779_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399", "author": "", "orig_id": 1438734}}, {"model": "metainfo.source", "pk": 2148, "fields": {"orig_filename": "Sokol_Josef-Vendelin_1821_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399f.", "author": "", "orig_id": 1438736}}, {"model": "metainfo.source", "pk": 2149, "fields": {"orig_filename": "Sokol_Karel-Stanislav_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 400", "author": "", "orig_id": 1438738}}, {"model": "metainfo.source", "pk": 2150, "fields": {"orig_filename": "Sokol_Rudolf_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 400f.", "author": "", "orig_id": 1438739}}, {"model": "metainfo.source", "pk": 2151, "fields": {"orig_filename": "Sokopp_Johann_1913_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401f.", "author": "", "orig_id": 1438785}}, {"model": "metainfo.source", "pk": 2152, "fields": {"orig_filename": "Solc_Jindrich_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402", "author": "", "orig_id": 1438846}}, {"model": "metainfo.source", "pk": 2153, "fields": {"orig_filename": "Solc_Vaclav_1838_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402", "author": "", "orig_id": 1438847}}, {"model": "metainfo.source", "pk": 2154, "fields": {"orig_filename": "Solecki-Ostoja_Lukasz_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402f.", "author": "", "orig_id": 1438893}}, {"model": "metainfo.source", "pk": 2155, "fields": {"orig_filename": "Solerti_Luigi_1846_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 403", "author": "", "orig_id": 1438896}}, {"model": "metainfo.source", "pk": 2156, "fields": {"orig_filename": "Solin_Josef-Marcell_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 403f.", "author": "", "orig_id": 1438897}}, {"model": "metainfo.source", "pk": 2157, "fields": {"orig_filename": "Solitro_Giulio_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404", "author": "", "orig_id": 1438818}}, {"model": "metainfo.source", "pk": 2158, "fields": {"orig_filename": "Solitro_Vincenzo_1820_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404", "author": "", "orig_id": 1438820}}, {"model": "metainfo.source", "pk": 2159, "fields": {"orig_filename": "Sollinger_Johann-Paul_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404f.", "author": "", "orig_id": 1438901}}, {"model": "metainfo.source", "pk": 2160, "fields": {"orig_filename": "Solomonica_Alexander_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 405", "author": "", "orig_id": 1440865}}, {"model": "metainfo.source", "pk": 2161, "fields": {"orig_filename": "Soltesz_Andreas_1802_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 405f.", "author": "", "orig_id": 1438948}}, {"model": "metainfo.source", "pk": 2162, "fields": {"orig_filename": "Soltesz_Janos_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406", "author": "", "orig_id": 1438952}}, {"model": "metainfo.source", "pk": 2163, "fields": {"orig_filename": "Soltesz_Miksa_1830_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406", "author": "", "orig_id": 1438953}}, {"model": "metainfo.source", "pk": 2164, "fields": {"orig_filename": "Soltys_Mieczyslaw-Tadeusz_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406f.", "author": "", "orig_id": 1438960}}, {"model": "metainfo.source", "pk": 2165, "fields": {"orig_filename": "Somaini_Francesco_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 407", "author": "", "orig_id": 1438964}}, {"model": "metainfo.source", "pk": 2166, "fields": {"orig_filename": "Somerau-Beeckh_Maximilian-Joseph-Gottfried_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 408", "author": "", "orig_id": 1438430}}, {"model": "metainfo.source", "pk": 2167, "fields": {"orig_filename": "Somer_Karl_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 407f.", "author": "", "orig_id": 1438361}}, {"model": "metainfo.source", "pk": 2168, "fields": {"orig_filename": "Sommariva_Giovanni-Battista_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 409f.", "author": "", "orig_id": 1439026}}, {"model": "metainfo.source", "pk": 2169, "fields": {"orig_filename": "Sommariva_Hannibal_1755_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410", "author": "", "orig_id": 1438765}}, {"model": "metainfo.source", "pk": 2170, "fields": {"orig_filename": "Sommaruga_Erwin-Franz_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410", "author": "", "orig_id": 1439028}}, {"model": "metainfo.source", "pk": 2171, "fields": {"orig_filename": "Sommaruga_Franz-Philipp_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410f.", "author": "", "orig_id": 1439072}}, {"model": "metainfo.source", "pk": 2172, "fields": {"orig_filename": "Sommaruga_Franz-Vincenz-Emanuel_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 411f.", "author": "", "orig_id": 1439029}}, {"model": "metainfo.source", "pk": 2173, "fields": {"orig_filename": "Sommaruga_Guido_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 411", "author": "", "orig_id": 1439073}}, {"model": "metainfo.source", "pk": 2174, "fields": {"orig_filename": "Somma_Antonio_1809_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 408f.", "author": "", "orig_id": 1438813}}, {"model": "metainfo.source", "pk": 2175, "fields": {"orig_filename": "Sommerfeld_Wilhelm_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416", "author": "", "orig_id": 1438495}}, {"model": "metainfo.source", "pk": 2176, "fields": {"orig_filename": "Sommer_Emil_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 412", "author": "", "orig_id": 1439131}}, {"model": "metainfo.source", "pk": 2177, "fields": {"orig_filename": "Sommer_Franz_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 412f.", "author": "", "orig_id": 1439135}}, {"model": "metainfo.source", "pk": 2178, "fields": {"orig_filename": "Sommer_Johann-Gottfried_1783_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 413", "author": "", "orig_id": 1427491}}, {"model": "metainfo.source", "pk": 2179, "fields": {"orig_filename": "Sommer_Josef-Heinrich_1888_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 413f.", "author": "", "orig_id": 1438307}}, {"model": "metainfo.source", "pk": 2180, "fields": {"orig_filename": "Sommer_Leopold_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 414", "author": "", "orig_id": 1438363}}, {"model": "metainfo.source", "pk": 2181, "fields": {"orig_filename": "Sommer_Otakar_1885_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 414f.", "author": "", "orig_id": 1438365}}, {"model": "metainfo.source", "pk": 2182, "fields": {"orig_filename": "Sommer_Rudolf_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 415", "author": "", "orig_id": 1438425}}, {"model": "metainfo.source", "pk": 2183, "fields": {"orig_filename": "Sommer_Rudolf_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 415f.", "author": "", "orig_id": 1438426}}, {"model": "metainfo.source", "pk": 2184, "fields": {"orig_filename": "Somogyi-Csizmazia_Alexander_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1438505}}, {"model": "metainfo.source", "pk": 2185, "fields": {"orig_filename": "Somogyi-Csizmazia_Barbara_1780_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1462380}}, {"model": "metainfo.source", "pk": 2186, "fields": {"orig_filename": "Somogyi-Csizmazia_Karl_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416f.", "author": "", "orig_id": 1438556}}, {"model": "metainfo.source", "pk": 2187, "fields": {"orig_filename": "Somogyi_Ede_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416", "author": "", "orig_id": 1454261}}, {"model": "metainfo.source", "pk": 2188, "fields": {"orig_filename": "Somos_Istvan-Balint_1893_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1438560}}, {"model": "metainfo.source", "pk": 2189, "fields": {"orig_filename": "Somssich-Saard_Jozsef_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418", "author": "", "orig_id": 1438629}}, {"model": "metainfo.source", "pk": 2190, "fields": {"orig_filename": "Somssich_Miklos_1784_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418", "author": "", "orig_id": 1438568}}, {"model": "metainfo.source", "pk": 2191, "fields": {"orig_filename": "Somssich_Pal_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417f.", "author": "", "orig_id": 1438569}}, {"model": "metainfo.source", "pk": 2192, "fields": {"orig_filename": "Sondermann_Franz-Wilhelm_1787_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418f.", "author": "", "orig_id": 1438634}}, {"model": "metainfo.source", "pk": 2193, "fields": {"orig_filename": "Sonklar-Innstaedten_Karl-Albrecht_1816_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 419f.", "author": "", "orig_id": 1438638}}, {"model": "metainfo.source", "pk": 2194, "fields": {"orig_filename": "Sonnenfeld_Kurt_1893_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421", "author": "", "orig_id": 1438752}}, {"model": "metainfo.source", "pk": 2195, "fields": {"orig_filename": "Sonnenfeld_Michael_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421", "author": "", "orig_id": 1438753}}, {"model": "metainfo.source", "pk": 2196, "fields": {"orig_filename": "Sonnenfeld_Zsigmond_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421f.", "author": "", "orig_id": 1438792}}, {"model": "metainfo.source", "pk": 2197, "fields": {"orig_filename": "Sonnenfels_Joseph_1733_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 422f.", "author": "", "orig_id": 1438868}}, {"model": "metainfo.source", "pk": 2198, "fields": {"orig_filename": "Sonnenleiter_Johannes_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 423", "author": "", "orig_id": 1438796}}, {"model": "metainfo.source", "pk": 2199, "fields": {"orig_filename": "Sonnenschein_Adolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 423f.", "author": "", "orig_id": 1438797}}, {"model": "metainfo.source", "pk": 2200, "fields": {"orig_filename": "Sonnenthal_Adolf_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424", "author": "", "orig_id": 1438804}}, {"model": "metainfo.source", "pk": 2201, "fields": {"orig_filename": "Sonnenthal_Hans-Friedrich_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 425", "author": "", "orig_id": 1438850}}, {"model": "metainfo.source", "pk": 2202, "fields": {"orig_filename": "Sonnenthal_Hermine_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424", "author": "", "orig_id": 1438342}}, {"model": "metainfo.source", "pk": 2203, "fields": {"orig_filename": "Sonnenthal_Samuel_1840_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424f.", "author": "", "orig_id": 1438853}}, {"model": "metainfo.source", "pk": 2204, "fields": {"orig_filename": "Sonne_Abraham_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 420f.", "author": "", "orig_id": 1438697}}, {"model": "metainfo.source", "pk": 2205, "fields": {"orig_filename": "Sonnleithner_Ignaz_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 425f.", "author": "", "orig_id": 1438864}}, {"model": "metainfo.source", "pk": 2206, "fields": {"orig_filename": "Sonnleithner_Joseph-Ferdinand_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 426", "author": "", "orig_id": 1440796}}, {"model": "metainfo.source", "pk": 2207, "fields": {"orig_filename": "Sonnleithner_Leopold_1797_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 426f.", "author": "", "orig_id": 1438912}}, {"model": "metainfo.source", "pk": 2208, "fields": {"orig_filename": "Sonnleithner_Maximilian_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 427", "author": "", "orig_id": 1438913}}, {"model": "metainfo.source", "pk": 2209, "fields": {"orig_filename": "Sonntag_Kunes_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 427f.", "author": "", "orig_id": 1438969}}, {"model": "metainfo.source", "pk": 2210, "fields": {"orig_filename": "Sontag_Henriette_1806_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 428f.", "author": "", "orig_id": 1438976}}, {"model": "metainfo.source", "pk": 2211, "fields": {"orig_filename": "Sonzogno_Edoardo_1836_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 429", "author": "", "orig_id": 1454639}}, {"model": "metainfo.source", "pk": 2212, "fields": {"orig_filename": "Sophie_Friederike_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 429f.", "author": "", "orig_id": 1439038}}, {"model": "metainfo.source", "pk": 2213, "fields": {"orig_filename": "Sopron_Ignaz_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430", "author": "", "orig_id": 1439040}}, {"model": "metainfo.source", "pk": 2214, "fields": {"orig_filename": "Soretic_Franz-De-Paula_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430f.", "author": "", "orig_id": 1439092}}, {"model": "metainfo.source", "pk": 2215, "fields": {"orig_filename": "Skutetzky_Gustav_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459036}}, {"model": "metainfo.source", "pk": 2216, "fields": {"orig_filename": "Skutetzky_Hubert_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459039}}, {"model": "metainfo.source", "pk": 2217, "fields": {"orig_filename": "Skutetzky_Karl_1886_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342f.", "author": "", "orig_id": 1459040}}, {"model": "metainfo.source", "pk": 2218, "fields": {"orig_filename": "Skutetzky_Wilhelm_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459037}}, {"model": "metainfo.source", "pk": 2219, "fields": {"orig_filename": "Slabe_Eduard_1816_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343", "author": "", "orig_id": 1459041}}, {"model": "metainfo.source", "pk": 2220, "fields": {"orig_filename": "Sladecek_Rudolf_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343", "author": "", "orig_id": 1459042}}, {"model": "metainfo.source", "pk": 2221, "fields": {"orig_filename": "Sladek_Josef-Vaclav_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343f.", "author": "", "orig_id": 1459043}}, {"model": "metainfo.source", "pk": 2222, "fields": {"orig_filename": "Sladek_Vaclav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 344", "author": "", "orig_id": 1459044}}, {"model": "metainfo.source", "pk": 2223, "fields": {"orig_filename": "Sladkovic_Andrej_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 344f.", "author": "", "orig_id": 1459045}}, {"model": "metainfo.source", "pk": 2224, "fields": {"orig_filename": "Sladkovsky_Karel_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 345", "author": "", "orig_id": 1459049}}, {"model": "metainfo.source", "pk": 2225, "fields": {"orig_filename": "Slajmer_Eduard_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 345f.", "author": "", "orig_id": 1459122}}, {"model": "metainfo.source", "pk": 2226, "fields": {"orig_filename": "Slama_Anton_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 346", "author": "", "orig_id": 1459123}}, {"model": "metainfo.source", "pk": 2227, "fields": {"orig_filename": "Slama_Frantisek-Josef_1792_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 347", "author": "", "orig_id": 1459130}}, {"model": "metainfo.source", "pk": 2228, "fields": {"orig_filename": "Slama_Frantisek_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 346f.", "author": "", "orig_id": 1459125}}, {"model": "metainfo.source", "pk": 2229, "fields": {"orig_filename": "Slama_Franz_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 347f.", "author": "", "orig_id": 1459132}}, {"model": "metainfo.source", "pk": 2230, "fields": {"orig_filename": "Slamenik_Frantisek_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348", "author": "", "orig_id": 1459133}}, {"model": "metainfo.source", "pk": 2231, "fields": {"orig_filename": "Slansky_Ludwig_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348f.", "author": "", "orig_id": 1459135}}, {"model": "metainfo.source", "pk": 2232, "fields": {"orig_filename": "Slataper_Scipio_1888_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 349", "author": "", "orig_id": 1459136}}, {"model": "metainfo.source", "pk": 2233, "fields": {"orig_filename": "Slatin_Rudolf_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 350", "author": "", "orig_id": 1456019}}, {"model": "metainfo.source", "pk": 2234, "fields": {"orig_filename": "Slavicek_Antonin_1870_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 350f.", "author": "", "orig_id": 1459139}}, {"model": "metainfo.source", "pk": 2235, "fields": {"orig_filename": "Slavicek_Josef_1818_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 351", "author": "", "orig_id": 1459141}}, {"model": "metainfo.source", "pk": 2236, "fields": {"orig_filename": "Slavici_Ioan_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 351f.", "author": "", "orig_id": 1459142}}, {"model": "metainfo.source", "pk": 2237, "fields": {"orig_filename": "Slavik_Alfred_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 352", "author": "", "orig_id": 1459143}}, {"model": "metainfo.source", "pk": 2238, "fields": {"orig_filename": "Slavik_Antonin_1782_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1459257}}, {"model": "metainfo.source", "pk": 2239, "fields": {"orig_filename": "Slavik_Antonin_1810_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1459258}}, {"model": "metainfo.source", "pk": 2240, "fields": {"orig_filename": "Slavik_Ernst_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 352f.", "author": "", "orig_id": 1459144}}, {"model": "metainfo.source", "pk": 2241, "fields": {"orig_filename": "Slavik_Frantisek-Augustin_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353", "author": "", "orig_id": 1459260}}, {"model": "metainfo.source", "pk": 2242, "fields": {"orig_filename": "Slavik_Jan_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353", "author": "", "orig_id": 1458128}}, {"model": "metainfo.source", "pk": 2243, "fields": {"orig_filename": "Slavik_Josef_1806_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353f.", "author": "", "orig_id": 1458130}}, {"model": "metainfo.source", "pk": 2244, "fields": {"orig_filename": "Slavik_Rudolf_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1458138}}, {"model": "metainfo.source", "pk": 2245, "fields": {"orig_filename": "Slavik_Vincenz_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354f.", "author": "", "orig_id": 1458140}}, {"model": "metainfo.source", "pk": 2246, "fields": {"orig_filename": "Slavik_Vladimir_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355", "author": "", "orig_id": 1458141}}, {"model": "metainfo.source", "pk": 2247, "fields": {"orig_filename": "Slavkovsky_Karel_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355", "author": "", "orig_id": 1458144}}, {"model": "metainfo.source", "pk": 2248, "fields": {"orig_filename": "Slawikowski_Anton_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355f.", "author": "", "orig_id": 1458148}}, {"model": "metainfo.source", "pk": 2249, "fields": {"orig_filename": "Slejhar_Josef-Karel_1864_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 356", "author": "", "orig_id": 1459011}}, {"model": "metainfo.source", "pk": 2250, "fields": {"orig_filename": "Slekovec_Matej_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 356f.", "author": "", "orig_id": 1459012}}, {"model": "metainfo.source", "pk": 2251, "fields": {"orig_filename": "Slezak_Elisabeth_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 357", "author": "", "orig_id": 1456815}}, {"model": "metainfo.source", "pk": 2252, "fields": {"orig_filename": "Slezak_Leo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 357f.", "author": "", "orig_id": 1456021}}, {"model": "metainfo.source", "pk": 2253, "fields": {"orig_filename": "Slezak_Otto_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 358", "author": "", "orig_id": 1459101}}, {"model": "metainfo.source", "pk": 2254, "fields": {"orig_filename": "Sliwinski_Jan_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 358f.", "author": "", "orig_id": 1459110}}, {"model": "metainfo.source", "pk": 2255, "fields": {"orig_filename": "Sloboda_Daniel_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359", "author": "", "orig_id": 1459119}}, {"model": "metainfo.source", "pk": 2256, "fields": {"orig_filename": "Slomkowski_Franciszek_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359", "author": "", "orig_id": 1459190}}, {"model": "metainfo.source", "pk": 2257, "fields": {"orig_filename": "Slomsek_Anton-Martin_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359f.", "author": "", "orig_id": 1459191}}, {"model": "metainfo.source", "pk": 2258, "fields": {"orig_filename": "Slota_Juraj_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 360f.", "author": "", "orig_id": 1459195}}, {"model": "metainfo.source", "pk": 2259, "fields": {"orig_filename": "Slotwinski-Leliwa_Feliks_1788_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 361", "author": "", "orig_id": 1459198}}, {"model": "metainfo.source", "pk": 2260, "fields": {"orig_filename": "Slotwinski-Leliwa_Konstanty_1793_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 361f.", "author": "", "orig_id": 1459199}}, {"model": "metainfo.source", "pk": 2261, "fields": {"orig_filename": "Slovensky_Janko_1856_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362", "author": "", "orig_id": 1459205}}, {"model": "metainfo.source", "pk": 2262, "fields": {"orig_filename": "Sluka_Wilhelm-Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362", "author": "", "orig_id": 1459209}}, {"model": "metainfo.source", "pk": 2263, "fields": {"orig_filename": "Smaha_Josef_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362f.", "author": "", "orig_id": 1459268}}, {"model": "metainfo.source", "pk": 2264, "fields": {"orig_filename": "Smal-Stockyj_Stephan_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 363f.", "author": "", "orig_id": 1459272}}, {"model": "metainfo.source", "pk": 2265, "fields": {"orig_filename": "Smareglia_Antonio_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364", "author": "", "orig_id": 1459273}}, {"model": "metainfo.source", "pk": 2266, "fields": {"orig_filename": "Smarzewski_Marcin_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364", "author": "", "orig_id": 1459274}}, {"model": "metainfo.source", "pk": 2267, "fields": {"orig_filename": "Smarzewski_Seweryn_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364f.", "author": "", "orig_id": 1459275}}, {"model": "metainfo.source", "pk": 2268, "fields": {"orig_filename": "Smekal_Gustav_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 365", "author": "", "orig_id": 1457372}}, {"model": "metainfo.source", "pk": 2269, "fields": {"orig_filename": "Smeral_Bohumir_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 365f.", "author": "", "orig_id": 1459282}}, {"model": "metainfo.source", "pk": 2270, "fields": {"orig_filename": "Smetana_Augustin_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 366", "author": "", "orig_id": 1462221}}, {"model": "metainfo.source", "pk": 2271, "fields": {"orig_filename": "Smetana_Friedrich_1824_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 366ff.", "author": "", "orig_id": 1462222}}, {"model": "metainfo.source", "pk": 2272, "fields": {"orig_filename": "Smetana_Josef-Frantisek_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 368", "author": "", "orig_id": 1462224}}, {"model": "metainfo.source", "pk": 2273, "fields": {"orig_filename": "Smetana_Rudolf_1802_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 368f.", "author": "", "orig_id": 1462590}}, {"model": "metainfo.source", "pk": 2274, "fields": {"orig_filename": "Smetanka_Emil_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 369", "author": "", "orig_id": 1462225}}, {"model": "metainfo.source", "pk": 2275, "fields": {"orig_filename": "Smetazko_Moritz_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 369f.", "author": "", "orig_id": 1457481}}, {"model": "metainfo.source", "pk": 2276, "fields": {"orig_filename": "Smets_Wilhelm_1796_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411772}}, {"model": "metainfo.source", "pk": 2277, "fields": {"orig_filename": "Smiciklas_Tadija_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370", "author": "", "orig_id": 1462230}}, {"model": "metainfo.source", "pk": 2278, "fields": {"orig_filename": "Smicka_Frantisek_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370", "author": "", "orig_id": 1462231}}, {"model": "metainfo.source", "pk": 2279, "fields": {"orig_filename": "Smidek_Vladimir_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317", "author": "", "orig_id": 1406748}}, {"model": "metainfo.source", "pk": 2280, "fields": {"orig_filename": "Smid_Anton-Adam_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370f.", "author": "", "orig_id": 1462232}}, {"model": "metainfo.source", "pk": 2281, "fields": {"orig_filename": "Smigelschi_Octavian_1866_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 371f.", "author": "", "orig_id": 1462233}}, {"model": "metainfo.source", "pk": 2282, "fields": {"orig_filename": "Smital_Ottokar_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 372", "author": "", "orig_id": 1462235}}, {"model": "metainfo.source", "pk": 2283, "fields": {"orig_filename": "Smola_Josef_1764_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 372f.", "author": "", "orig_id": 1458546}}, {"model": "metainfo.source", "pk": 2284, "fields": {"orig_filename": "Smola_Josef_1805_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373", "author": "", "orig_id": 1458547}}, {"model": "metainfo.source", "pk": 2285, "fields": {"orig_filename": "Smola_Karl_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373", "author": "", "orig_id": 1458548}}, {"model": "metainfo.source", "pk": 2286, "fields": {"orig_filename": "Smolenitz-Smolk_Leonidas_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 375", "author": "", "orig_id": 1457673}}, {"model": "metainfo.source", "pk": 2287, "fields": {"orig_filename": "Smolenitz-Smolk_Maria_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 374", "author": "", "orig_id": 1457919}}, {"model": "metainfo.source", "pk": 2288, "fields": {"orig_filename": "Smolenitz-Smolk_Nikolaus_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 374f.", "author": "", "orig_id": 1457920}}, {"model": "metainfo.source", "pk": 2289, "fields": {"orig_filename": "Smolenskin_Perez_1842_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 375f.", "author": "", "orig_id": 1462239}}, {"model": "metainfo.source", "pk": 2290, "fields": {"orig_filename": "Smolensky_Max_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376", "author": "", "orig_id": 1457471}}, {"model": "metainfo.source", "pk": 2291, "fields": {"orig_filename": "Smoler_Felix_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376", "author": "", "orig_id": 1462284}}, {"model": "metainfo.source", "pk": 2292, "fields": {"orig_filename": "Smoler_Franz-Xav_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376f.", "author": "", "orig_id": 1462116}}, {"model": "metainfo.source", "pk": 2293, "fields": {"orig_filename": "Smoler_Moritz_1833_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 377", "author": "", "orig_id": 1462328}}, {"model": "metainfo.source", "pk": 2294, "fields": {"orig_filename": "Smole_Andreas_1800_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373f.", "author": "", "orig_id": 1462237}}, {"model": "metainfo.source", "pk": 2295, "fields": {"orig_filename": "Smolik_Josef_1832_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 377", "author": "", "orig_id": 1462329}}, {"model": "metainfo.source", "pk": 2296, "fields": {"orig_filename": "Smolik_Julius_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378", "author": "", "orig_id": 1462330}}, {"model": "metainfo.source", "pk": 2297, "fields": {"orig_filename": "Smolik_Rupert_1832_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378", "author": "", "orig_id": 1462331}}, {"model": "metainfo.source", "pk": 2298, "fields": {"orig_filename": "Smolka_Alois_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378f.", "author": "", "orig_id": 1462333}}, {"model": "metainfo.source", "pk": 2299, "fields": {"orig_filename": "Smolka_Franciszek-Ks_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 379f.", "author": "", "orig_id": 1458218}}, {"model": "metainfo.source", "pk": 2300, "fields": {"orig_filename": "Smolka_Franciszek_1810_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 379", "author": "", "orig_id": 1462334}}, {"model": "metainfo.source", "pk": 2301, "fields": {"orig_filename": "Smolka_Stanislaw_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380", "author": "", "orig_id": 1462335}}, {"model": "metainfo.source", "pk": 2302, "fields": {"orig_filename": "Smolle_Leo_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380", "author": "", "orig_id": 1462336}}, {"model": "metainfo.source", "pk": 2303, "fields": {"orig_filename": "Smoluchowski-Smolan_Marian-Wilhelm-Teofil_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380f.", "author": "", "orig_id": 1462337}}, {"model": "metainfo.source", "pk": 2304, "fields": {"orig_filename": "Smreczynski_Franciszek_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 381f.", "author": "", "orig_id": 1462537}}, {"model": "metainfo.source", "pk": 2305, "fields": {"orig_filename": "Smrekar_Hinko_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 382", "author": "", "orig_id": 1462338}}, {"model": "metainfo.source", "pk": 2306, "fields": {"orig_filename": "Smutny_Franz_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 382f.", "author": "", "orig_id": 1462339}}, {"model": "metainfo.source", "pk": 2307, "fields": {"orig_filename": "Smycka_Jan_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383", "author": "", "orig_id": 1462340}}, {"model": "metainfo.source", "pk": 2308, "fields": {"orig_filename": "Snajdr_Karel-Sudimir_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383", "author": "", "orig_id": 1462341}}, {"model": "metainfo.source", "pk": 2309, "fields": {"orig_filename": "Snihurskyj_Johannes_1784_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383f.", "author": "", "orig_id": 1462343}}, {"model": "metainfo.source", "pk": 2310, "fields": {"orig_filename": "Snoer_Johannes_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384f.", "author": "", "orig_id": 1462344}}, {"model": "metainfo.source", "pk": 2311, "fields": {"orig_filename": "Snopek_Frantisek_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1462345}}, {"model": "metainfo.source", "pk": 2312, "fields": {"orig_filename": "Sobek_Franz-Josef_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1439288}}, {"model": "metainfo.source", "pk": 2313, "fields": {"orig_filename": "Sobek_Johann_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1439289}}, {"model": "metainfo.source", "pk": 2314, "fields": {"orig_filename": "Sobek_Sobeslav_1897_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385f.", "author": "", "orig_id": 1439342}}, {"model": "metainfo.source", "pk": 2315, "fields": {"orig_filename": "Sobieczky_Adolf_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 386", "author": "", "orig_id": 1439349}}, {"model": "metainfo.source", "pk": 2316, "fields": {"orig_filename": "Sobitschka-Wiesenhag_Josef-Richard_1854_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 386f.", "author": "", "orig_id": 1439415}}, {"model": "metainfo.source", "pk": 2317, "fields": {"orig_filename": "Singer_Samuel_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 300", "author": "", "orig_id": 1458570}}, {"model": "metainfo.source", "pk": 2318, "fields": {"orig_filename": "Singer_Siegfried_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301", "author": "", "orig_id": 1458572}}, {"model": "metainfo.source", "pk": 2319, "fields": {"orig_filename": "Singer_Sigmund_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 300f.", "author": "", "orig_id": 1458571}}, {"model": "metainfo.source", "pk": 2320, "fields": {"orig_filename": "Singer_Simon_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458562}}, {"model": "metainfo.source", "pk": 2321, "fields": {"orig_filename": "Singer_Stephan_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301", "author": "", "orig_id": 1458573}}, {"model": "metainfo.source", "pk": 2322, "fields": {"orig_filename": "Singer_Therese_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 302", "author": "", "orig_id": 1458575}}, {"model": "metainfo.source", "pk": 2323, "fields": {"orig_filename": "Singer_Wilhelm_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301f.", "author": "", "orig_id": 1458574}}, {"model": "metainfo.source", "pk": 2324, "fields": {"orig_filename": "Singule_Rudolf_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 302f.", "author": "", "orig_id": 1458577}}, {"model": "metainfo.source", "pk": 2325, "fields": {"orig_filename": "Sinnacher_Franz-Anton_1772_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 303", "author": "", "orig_id": 1458579}}, {"model": "metainfo.source", "pk": 2326, "fields": {"orig_filename": "Sinwel_Rudolf_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 303f.", "author": "", "orig_id": 1458580}}, {"model": "metainfo.source", "pk": 2327, "fields": {"orig_filename": "Sioly_Johann_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 304", "author": "", "orig_id": 1458582}}, {"model": "metainfo.source", "pk": 2328, "fields": {"orig_filename": "Sipek-Siebeck_Karl_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305", "author": "", "orig_id": 1458586}}, {"model": "metainfo.source", "pk": 2329, "fields": {"orig_filename": "Sipek_Karel_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 304f.", "author": "", "orig_id": 1458583}}, {"model": "metainfo.source", "pk": 2330, "fields": {"orig_filename": "Sipos_Paul_1759_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305", "author": "", "orig_id": 1458587}}, {"model": "metainfo.source", "pk": 2331, "fields": {"orig_filename": "Sirk_Albert_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306f.", "author": "", "orig_id": 1458659}}, {"model": "metainfo.source", "pk": 2332, "fields": {"orig_filename": "Sir_Frantisek-Vaclav_1804_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306", "author": "", "orig_id": 1458656}}, {"model": "metainfo.source", "pk": 2333, "fields": {"orig_filename": "Sir_Frantisek_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305f.", "author": "", "orig_id": 1458588}}, {"model": "metainfo.source", "pk": 2334, "fields": {"orig_filename": "Sir_Josef_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306", "author": "", "orig_id": 1458657}}, {"model": "metainfo.source", "pk": 2335, "fields": {"orig_filename": "Sisic_Ferdo_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 307f.", "author": "", "orig_id": 1458663}}, {"model": "metainfo.source", "pk": 2336, "fields": {"orig_filename": "Sis_Frantisek_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 307", "author": "", "orig_id": 1458660}}, {"model": "metainfo.source", "pk": 2337, "fields": {"orig_filename": "Sitensky_Frantisek_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308", "author": "", "orig_id": 1458664}}, {"model": "metainfo.source", "pk": 2338, "fields": {"orig_filename": "Sittenberger_Hans_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 311f.", "author": "", "orig_id": 1458675}}, {"model": "metainfo.source", "pk": 2339, "fields": {"orig_filename": "Sitter_Karl_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 312", "author": "", "orig_id": 1458676}}, {"model": "metainfo.source", "pk": 2340, "fields": {"orig_filename": "Sitte_Camillo_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 309f.", "author": "", "orig_id": 1458669}}, {"model": "metainfo.source", "pk": 2341, "fields": {"orig_filename": "Sitte_Franz_1818_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310", "author": "", "orig_id": 1458670}}, {"model": "metainfo.source", "pk": 2342, "fields": {"orig_filename": "Sitte_Olga_1884_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310", "author": "", "orig_id": 1458671}}, {"model": "metainfo.source", "pk": 2343, "fields": {"orig_filename": "Sitte_Siegfried_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310f.", "author": "", "orig_id": 1458673}}, {"model": "metainfo.source", "pk": 2344, "fields": {"orig_filename": "Sittig_Otto_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 312f.", "author": "", "orig_id": 1458677}}, {"model": "metainfo.source", "pk": 2345, "fields": {"orig_filename": "Sitt_Anton_1819_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308f.", "author": "", "orig_id": 1458666}}, {"model": "metainfo.source", "pk": 2346, "fields": {"orig_filename": "Sitt_Anton_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 309", "author": "", "orig_id": 1458667}}, {"model": "metainfo.source", "pk": 2347, "fields": {"orig_filename": "Sitt_Hans_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308f.", "author": "", "orig_id": 1458665}}, {"model": "metainfo.source", "pk": 2348, "fields": {"orig_filename": "Siuschegg_Anton_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313", "author": "", "orig_id": 1458678}}, {"model": "metainfo.source", "pk": 2349, "fields": {"orig_filename": "Six_Michael_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313", "author": "", "orig_id": 1458679}}, {"model": "metainfo.source", "pk": 2350, "fields": {"orig_filename": "Skaba_Josef_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313f.", "author": "", "orig_id": 1458680}}, {"model": "metainfo.source", "pk": 2351, "fields": {"orig_filename": "Skakoc_Giovanni_1752_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314", "author": "", "orig_id": 1458756}}, {"model": "metainfo.source", "pk": 2352, "fields": {"orig_filename": "Skakoc_Luidj_1758_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314", "author": "", "orig_id": 1458757}}, {"model": "metainfo.source", "pk": 2353, "fields": {"orig_filename": "Skalnik_Vaclav_1776_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314f.", "author": "", "orig_id": 1455508}}, {"model": "metainfo.source", "pk": 2354, "fields": {"orig_filename": "Skalsky_Gustav-Adolf_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 315", "author": "", "orig_id": 1458760}}, {"model": "metainfo.source", "pk": 2355, "fields": {"orig_filename": "Skarbek_Aleksander-Wincenty-Jan_1874_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 315f.", "author": "", "orig_id": 1458761}}, {"model": "metainfo.source", "pk": 2356, "fields": {"orig_filename": "Skarbek_Stanislaw_1780_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 316", "author": "", "orig_id": 1458764}}, {"model": "metainfo.source", "pk": 2357, "fields": {"orig_filename": "Skarda_Jakub_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 316f.", "author": "", "orig_id": 1458765}}, {"model": "metainfo.source", "pk": 2358, "fields": {"orig_filename": "Skarda_Vaclav_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 317", "author": "", "orig_id": 1458766}}, {"model": "metainfo.source", "pk": 2359, "fields": {"orig_filename": "Skarda_Vladimir_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 317f.", "author": "", "orig_id": 1458767}}, {"model": "metainfo.source", "pk": 2360, "fields": {"orig_filename": "Skaret_Ferdinand_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 318", "author": "", "orig_id": 1458768}}, {"model": "metainfo.source", "pk": 2361, "fields": {"orig_filename": "Skarlandt_Julius_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 318", "author": "", "orig_id": 1458769}}, {"model": "metainfo.source", "pk": 2362, "fields": {"orig_filename": "Skarvan_Albert_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319", "author": "", "orig_id": 1458772}}, {"model": "metainfo.source", "pk": 2363, "fields": {"orig_filename": "Skedl_Arthur_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319f.", "author": "", "orig_id": 1458773}}, {"model": "metainfo.source", "pk": 2364, "fields": {"orig_filename": "Skedl_Josef-Michael_1818_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319f.", "author": "", "orig_id": 1458774}}, {"model": "metainfo.source", "pk": 2365, "fields": {"orig_filename": "Skene_Alfred_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 320", "author": "", "orig_id": 1458775}}, {"model": "metainfo.source", "pk": 2366, "fields": {"orig_filename": "Skene_Alfred_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321", "author": "", "orig_id": 1458779}}, {"model": "metainfo.source", "pk": 2367, "fields": {"orig_filename": "Skene_August_1829_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321", "author": "", "orig_id": 1443236}}, {"model": "metainfo.source", "pk": 2368, "fields": {"orig_filename": "Skene_Richard_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321f.", "author": "", "orig_id": 1458780}}, {"model": "metainfo.source", "pk": 2369, "fields": {"orig_filename": "Skene_Richard_1909_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321f.", "author": "", "orig_id": 1458781}}, {"model": "metainfo.source", "pk": 2370, "fields": {"orig_filename": "Skerle_August-Anton_1850_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458845}}, {"model": "metainfo.source", "pk": 2371, "fields": {"orig_filename": "Skerle_August_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458844}}, {"model": "metainfo.source", "pk": 2372, "fields": {"orig_filename": "Skerle_Mathilde-Franziska_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458846}}, {"model": "metainfo.source", "pk": 2373, "fields": {"orig_filename": "Sket_Jakob_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458847}}, {"model": "metainfo.source", "pk": 2374, "fields": {"orig_filename": "Skiba_Eduard-Wladyslaw_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322f.", "author": "", "orig_id": 1458850}}, {"model": "metainfo.source", "pk": 2375, "fields": {"orig_filename": "Skibinski_Karol_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 323", "author": "", "orig_id": 1458852}}, {"model": "metainfo.source", "pk": 2376, "fields": {"orig_filename": "Sklenarova-Mala_Otylie_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 323f.", "author": "", "orig_id": 1458853}}, {"model": "metainfo.source", "pk": 2377, "fields": {"orig_filename": "Skobel_Fryderyk-Kazimierz_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 324", "author": "", "orig_id": 1458856}}, {"model": "metainfo.source", "pk": 2378, "fields": {"orig_filename": "Skoczek_Erich_1908_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 324", "author": "", "orig_id": 1458857}}, {"model": "metainfo.source", "pk": 2379, "fields": {"orig_filename": "Skoda_Emil_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 325", "author": "", "orig_id": 1455509}}, {"model": "metainfo.source", "pk": 2380, "fields": {"orig_filename": "Skoda_Franz_1801_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 325f.", "author": "", "orig_id": 1455510}}, {"model": "metainfo.source", "pk": 2381, "fields": {"orig_filename": "Skoda_Josef_1805_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 326", "author": "", "orig_id": 1455511}}, {"model": "metainfo.source", "pk": 2382, "fields": {"orig_filename": "Skoda_Karl_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 326f.", "author": "", "orig_id": 1458860}}, {"model": "metainfo.source", "pk": 2383, "fields": {"orig_filename": "Skoda_Karl_1878_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327", "author": "", "orig_id": 1455560}}, {"model": "metainfo.source", "pk": 2384, "fields": {"orig_filename": "Skofitz_Alexander_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327f.", "author": "", "orig_id": 1458862}}, {"model": "metainfo.source", "pk": 2385, "fields": {"orig_filename": "Skomal_Emil_1853_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328", "author": "", "orig_id": 1458863}}, {"model": "metainfo.source", "pk": 2386, "fields": {"orig_filename": "Skomal_Karl_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328", "author": "", "orig_id": 1458864}}, {"model": "metainfo.source", "pk": 2387, "fields": {"orig_filename": "Skopalik_Frantisek_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328f.", "author": "", "orig_id": 1458865}}, {"model": "metainfo.source", "pk": 2388, "fields": {"orig_filename": "Skopalik_Frantisek_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 329", "author": "", "orig_id": 1458866}}, {"model": "metainfo.source", "pk": 2389, "fields": {"orig_filename": "Skopec_Jindrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 329f.", "author": "", "orig_id": 1442486}}, {"model": "metainfo.source", "pk": 2390, "fields": {"orig_filename": "Skorpil_Ferdinand_1903_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 330", "author": "", "orig_id": 1458867}}, {"model": "metainfo.source", "pk": 2391, "fields": {"orig_filename": "Skorpil_Hermenegild_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 330", "author": "", "orig_id": 1458937}}, {"model": "metainfo.source", "pk": 2392, "fields": {"orig_filename": "Skorpil_Josef_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458941}}, {"model": "metainfo.source", "pk": 2393, "fields": {"orig_filename": "Skorpil_Karel_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458938}}, {"model": "metainfo.source", "pk": 2394, "fields": {"orig_filename": "Skorpil_Vaclav_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458939}}, {"model": "metainfo.source", "pk": 2395, "fields": {"orig_filename": "Skorpil_Vladislav_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458940}}, {"model": "metainfo.source", "pk": 2396, "fields": {"orig_filename": "Skrabec_Stanislav_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331f.", "author": "", "orig_id": 1458942}}, {"model": "metainfo.source", "pk": 2397, "fields": {"orig_filename": "Skrach_Vasil_1891_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332", "author": "", "orig_id": 1458943}}, {"model": "metainfo.source", "pk": 2398, "fields": {"orig_filename": "Skramlik_Emilian_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332f.", "author": "", "orig_id": 1458945}}, {"model": "metainfo.source", "pk": 2399, "fields": {"orig_filename": "Skramlik_Jan_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332f.", "author": "", "orig_id": 1458947}}, {"model": "metainfo.source", "pk": 2400, "fields": {"orig_filename": "Skraup_Karl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 333", "author": "", "orig_id": 1458948}}, {"model": "metainfo.source", "pk": 2401, "fields": {"orig_filename": "Skraup_Zdenko-Hans_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 333f.", "author": "", "orig_id": 1456018}}, {"model": "metainfo.source", "pk": 2402, "fields": {"orig_filename": "Skrbensky-Hriste_Leo_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 334", "author": "", "orig_id": 1458950}}, {"model": "metainfo.source", "pk": 2403, "fields": {"orig_filename": "Skrejsovsky_Frantisek_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 334f.", "author": "", "orig_id": 1458951}}, {"model": "metainfo.source", "pk": 2404, "fields": {"orig_filename": "Skrejsovsky_Jan-Stanislav_1831_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335", "author": "", "orig_id": 1458952}}, {"model": "metainfo.source", "pk": 2405, "fields": {"orig_filename": "Skribanek_Joseph_1788_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335", "author": "", "orig_id": 1458953}}, {"model": "metainfo.source", "pk": 2406, "fields": {"orig_filename": "Skrivan_Antonin_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335f.", "author": "", "orig_id": 1458954}}, {"model": "metainfo.source", "pk": 2407, "fields": {"orig_filename": "Skrivan_Frantisek_1807_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 336", "author": "", "orig_id": 1458955}}, {"model": "metainfo.source", "pk": 2408, "fields": {"orig_filename": "Skrivan_Gustav_1831_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 336f.", "author": "", "orig_id": 1458956}}, {"model": "metainfo.source", "pk": 2409, "fields": {"orig_filename": "Skroup_Frantisek-Seraf_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 337", "author": "", "orig_id": 1458957}}, {"model": "metainfo.source", "pk": 2410, "fields": {"orig_filename": "Skroup_Jan-Nepomuk_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 337f.", "author": "", "orig_id": 1458958}}, {"model": "metainfo.source", "pk": 2411, "fields": {"orig_filename": "Skuhersky_Franz-Alois_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338", "author": "", "orig_id": 1458959}}, {"model": "metainfo.source", "pk": 2412, "fields": {"orig_filename": "Skuhersky_Franz-Xaver_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338", "author": "", "orig_id": 1459025}}, {"model": "metainfo.source", "pk": 2413, "fields": {"orig_filename": "Skuhersky_Rudolf_1828_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338f.", "author": "", "orig_id": 1459026}}, {"model": "metainfo.source", "pk": 2414, "fields": {"orig_filename": "Skultety_August-Horislav_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 339", "author": "", "orig_id": 1459027}}, {"model": "metainfo.source", "pk": 2415, "fields": {"orig_filename": "Skultety_Jozef_1853_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 339f.", "author": "", "orig_id": 1459030}}, {"model": "metainfo.source", "pk": 2416, "fields": {"orig_filename": "Skuppa_Josef_1823_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 340", "author": "", "orig_id": 1459031}}, {"model": "metainfo.source", "pk": 2417, "fields": {"orig_filename": "Skurawy_Edmund_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 340f.", "author": "", "orig_id": 1459032}}, {"model": "metainfo.source", "pk": 2418, "fields": {"orig_filename": "Skutecky_Dominik_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 341", "author": "", "orig_id": 1459033}}, {"model": "metainfo.source", "pk": 2419, "fields": {"orig_filename": "Skutetzky_Alexander_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 341f.", "author": "", "orig_id": 1459035}}, {"model": "metainfo.source", "pk": 2420, "fields": {"orig_filename": "Sigora-Eulenstein_Anton-Heinrich_1772_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256", "author": "", "orig_id": 1457996}}, {"model": "metainfo.source", "pk": 2421, "fields": {"orig_filename": "Siklossy-Perness_Julius_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256f.", "author": "", "orig_id": 1457997}}, {"model": "metainfo.source", "pk": 2422, "fields": {"orig_filename": "Sikora_Franz_1863_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257", "author": "", "orig_id": 1458000}}, {"model": "metainfo.source", "pk": 2423, "fields": {"orig_filename": "Sikorski_Wladyslaw-Eugeniusz_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257f.", "author": "", "orig_id": 1458001}}, {"model": "metainfo.source", "pk": 2424, "fields": {"orig_filename": "Siko_Miklos_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257", "author": "", "orig_id": 1457999}}, {"model": "metainfo.source", "pk": 2425, "fields": {"orig_filename": "Silberberg_Maximilian_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 259f.", "author": "", "orig_id": 1458068}}, {"model": "metainfo.source", "pk": 2426, "fields": {"orig_filename": "Silberbusch_David-Jeschajahu_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 260", "author": "", "orig_id": 1458071}}, {"model": "metainfo.source", "pk": 2427, "fields": {"orig_filename": "Silberer_Geza_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 261", "author": "", "orig_id": 1458073}}, {"model": "metainfo.source", "pk": 2428, "fields": {"orig_filename": "Silberer_Herbert_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 261f.", "author": "", "orig_id": 1458075}}, {"model": "metainfo.source", "pk": 2429, "fields": {"orig_filename": "Silberer_Rosa_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 262", "author": "", "orig_id": 1458076}}, {"model": "metainfo.source", "pk": 2430, "fields": {"orig_filename": "Silberer_Viktor_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 262f.", "author": "", "orig_id": 1458077}}, {"model": "metainfo.source", "pk": 2431, "fields": {"orig_filename": "Silberhuber_Anton_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 263", "author": "", "orig_id": 1458078}}, {"model": "metainfo.source", "pk": 2432, "fields": {"orig_filename": "Silbermark_Moriz-Viktor_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 263f.", "author": "", "orig_id": 1458079}}, {"model": "metainfo.source", "pk": 2433, "fields": {"orig_filename": "Silbernagl_Johann_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 264", "author": "", "orig_id": 1458080}}, {"model": "metainfo.source", "pk": 2434, "fields": {"orig_filename": "Silberstein_Adolf_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 264f.", "author": "", "orig_id": 1458081}}, {"model": "metainfo.source", "pk": 2435, "fields": {"orig_filename": "Silberstein_August_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265", "author": "", "orig_id": 1458083}}, {"model": "metainfo.source", "pk": 2436, "fields": {"orig_filename": "Silberstern_Philipp_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265", "author": "", "orig_id": 1458084}}, {"model": "metainfo.source", "pk": 2437, "fields": {"orig_filename": "Silbert_Johann-Peter_1778_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265f.", "author": "", "orig_id": 1458085}}, {"model": "metainfo.source", "pk": 2438, "fields": {"orig_filename": "Silbert_Maria_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 266", "author": "", "orig_id": 1458087}}, {"model": "metainfo.source", "pk": 2439, "fields": {"orig_filename": "Silber_Max_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 258f.", "author": "", "orig_id": 1458004}}, {"model": "metainfo.source", "pk": 2440, "fields": {"orig_filename": "Silber_Philipp_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 259", "author": "", "orig_id": 1458067}}, {"model": "metainfo.source", "pk": 2441, "fields": {"orig_filename": "Sileny_Vaclav_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 266f.", "author": "", "orig_id": 1458088}}, {"model": "metainfo.source", "pk": 2442, "fields": {"orig_filename": "Silinger_Tomas-Eduard_1866_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 267f.", "author": "", "orig_id": 1458089}}, {"model": "metainfo.source", "pk": 2443, "fields": {"orig_filename": "Siller_Franz_1893_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268", "author": "", "orig_id": 1458090}}, {"model": "metainfo.source", "pk": 2444, "fields": {"orig_filename": "Siller_Heinrich_1884_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268", "author": "", "orig_id": 1458091}}, {"model": "metainfo.source", "pk": 2445, "fields": {"orig_filename": "Siller_Josef_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268f.", "author": "", "orig_id": 1458152}}, {"model": "metainfo.source", "pk": 2446, "fields": {"orig_filename": "Silli_Giuseppe_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 269", "author": "", "orig_id": 1458154}}, {"model": "metainfo.source", "pk": 2447, "fields": {"orig_filename": "Silovic_Josip_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 269f.", "author": "", "orig_id": 1458155}}, {"model": "metainfo.source", "pk": 2448, "fields": {"orig_filename": "Silva-Tarouca_Ernst-Emanuel_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 270f.", "author": "", "orig_id": 1458157}}, {"model": "metainfo.source", "pk": 2449, "fields": {"orig_filename": "Silva-Tarouca_Franz-Josef_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 270", "author": "", "orig_id": 1458161}}, {"model": "metainfo.source", "pk": 2450, "fields": {"orig_filename": "Silvestri_Pietro_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271", "author": "", "orig_id": 1458162}}, {"model": "metainfo.source", "pk": 2451, "fields": {"orig_filename": "Silving_Bert_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271", "author": "", "orig_id": 1458163}}, {"model": "metainfo.source", "pk": 2452, "fields": {"orig_filename": "Sil_Josef_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 258", "author": "", "orig_id": 1458002}}, {"model": "metainfo.source", "pk": 2453, "fields": {"orig_filename": "Simacek_Frantisek_1834_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271f.", "author": "", "orig_id": 1458164}}, {"model": "metainfo.source", "pk": 2454, "fields": {"orig_filename": "Simacek_Josef_1837_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 272", "author": "", "orig_id": 1458165}}, {"model": "metainfo.source", "pk": 2455, "fields": {"orig_filename": "Simacek_Matej-Anastasia_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 272f.", "author": "", "orig_id": 1458166}}, {"model": "metainfo.source", "pk": 2456, "fields": {"orig_filename": "Simai_Kristof_1742_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 273", "author": "", "orig_id": 1458167}}, {"model": "metainfo.source", "pk": 2457, "fields": {"orig_filename": "Simak_Josef-Vitezslav_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 273", "author": "", "orig_id": 1458168}}, {"model": "metainfo.source", "pk": 2458, "fields": {"orig_filename": "Simandl_Franz_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274", "author": "", "orig_id": 1458173}}, {"model": "metainfo.source", "pk": 2459, "fields": {"orig_filename": "Simbschen_Joseph-Anton_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274f.", "author": "", "orig_id": 1458174}}, {"model": "metainfo.source", "pk": 2460, "fields": {"orig_filename": "Simbschen_Joseph-Karl_1781_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274f.", "author": "", "orig_id": 1458175}}, {"model": "metainfo.source", "pk": 2461, "fields": {"orig_filename": "Simbschen_Julius_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458177}}, {"model": "metainfo.source", "pk": 2462, "fields": {"orig_filename": "Simbschen_Karl_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458176}}, {"model": "metainfo.source", "pk": 2463, "fields": {"orig_filename": "Simecek_Frantisek_1842_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458251}}, {"model": "metainfo.source", "pk": 2464, "fields": {"orig_filename": "Simeoner_Archangelus_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275f.", "author": "", "orig_id": 1458252}}, {"model": "metainfo.source", "pk": 2465, "fields": {"orig_filename": "Simerka_Vaclav_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276", "author": "", "orig_id": 1458253}}, {"model": "metainfo.source", "pk": 2466, "fields": {"orig_filename": "Simic_Antun-Branko_1898_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276", "author": "", "orig_id": 1458254}}, {"model": "metainfo.source", "pk": 2467, "fields": {"orig_filename": "Simic_Pavle_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276f.", "author": "", "orig_id": 1458256}}, {"model": "metainfo.source", "pk": 2468, "fields": {"orig_filename": "Simiginowicz-Staufe_Ludwig-Adolf_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 277f.", "author": "", "orig_id": 1458258}}, {"model": "metainfo.source", "pk": 2469, "fields": {"orig_filename": "Simitsch-Hohenblum_Alfred_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278", "author": "", "orig_id": 1458260}}, {"model": "metainfo.source", "pk": 2470, "fields": {"orig_filename": "Simitsch-Hohenblum_Josef_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278", "author": "", "orig_id": 1458261}}, {"model": "metainfo.source", "pk": 2471, "fields": {"orig_filename": "Simm-Mayer_Marie_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458266}}, {"model": "metainfo.source", "pk": 2472, "fields": {"orig_filename": "Simm_Anton_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278f.", "author": "", "orig_id": 1458263}}, {"model": "metainfo.source", "pk": 2473, "fields": {"orig_filename": "Simm_Franz-Xaver_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458264}}, {"model": "metainfo.source", "pk": 2474, "fields": {"orig_filename": "Simonek-Mladatov_Josef_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 281f.", "author": "", "orig_id": 1458365}}, {"model": "metainfo.source", "pk": 2475, "fields": {"orig_filename": "Simonetti_Giovanni_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 282", "author": "", "orig_id": 1458366}}, {"model": "metainfo.source", "pk": 2476, "fields": {"orig_filename": "Simonic_Franz_1847_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 282f.", "author": "", "orig_id": 1458368}}, {"model": "metainfo.source", "pk": 2477, "fields": {"orig_filename": "Simonides_Alois_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283", "author": "", "orig_id": 1458370}}, {"model": "metainfo.source", "pk": 2478, "fields": {"orig_filename": "Simonkai_Lajos_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283", "author": "", "orig_id": 1458371}}, {"model": "metainfo.source", "pk": 2479, "fields": {"orig_filename": "Simons_Rainer_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283f.", "author": "", "orig_id": 1458372}}, {"model": "metainfo.source", "pk": 2480, "fields": {"orig_filename": "Simonyi-Semadam_Sandor_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287f.", "author": "", "orig_id": 1458383}}, {"model": "metainfo.source", "pk": 2481, "fields": {"orig_filename": "Simonyi-Vitezvar_Jozsef_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 288", "author": "", "orig_id": 1458384}}, {"model": "metainfo.source", "pk": 2482, "fields": {"orig_filename": "Simonyi-Vitezvar_Lajos_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 288f.", "author": "", "orig_id": 1458385}}, {"model": "metainfo.source", "pk": 2483, "fields": {"orig_filename": "Simonyi_Antal_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 286", "author": "", "orig_id": 1458378}}, {"model": "metainfo.source", "pk": 2484, "fields": {"orig_filename": "Simonyi_Ernoe_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 286f.", "author": "", "orig_id": 1458379}}, {"model": "metainfo.source", "pk": 2485, "fields": {"orig_filename": "Simonyi_Karoline-Johanna_1803_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287", "author": "", "orig_id": 1458380}}, {"model": "metainfo.source", "pk": 2486, "fields": {"orig_filename": "Simonyi_Zsigmond_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287", "author": "", "orig_id": 1458382}}, {"model": "metainfo.source", "pk": 2487, "fields": {"orig_filename": "Simony_Friedrich_1813_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 284", "author": "", "orig_id": 1458374}}, {"model": "metainfo.source", "pk": 2488, "fields": {"orig_filename": "Simony_Leopold_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 284f.", "author": "", "orig_id": 1458375}}, {"model": "metainfo.source", "pk": 2489, "fields": {"orig_filename": "Simony_Oskar_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 285f.", "author": "", "orig_id": 1458377}}, {"model": "metainfo.source", "pk": 2490, "fields": {"orig_filename": "Simony_Stefan_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 285", "author": "", "orig_id": 1458376}}, {"model": "metainfo.source", "pk": 2491, "fields": {"orig_filename": "Simon_Josef_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279f.", "author": "", "orig_id": 1458268}}, {"model": "metainfo.source", "pk": 2492, "fields": {"orig_filename": "Simon_Oscar_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 280", "author": "", "orig_id": 1458273}}, {"model": "metainfo.source", "pk": 2493, "fields": {"orig_filename": "Simon_Sigismund_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 280f.", "author": "", "orig_id": 1458274}}, {"model": "metainfo.source", "pk": 2494, "fields": {"orig_filename": "Simon_T-Frantisek_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 281", "author": "", "orig_id": 1458276}}, {"model": "metainfo.source", "pk": 2495, "fields": {"orig_filename": "Simor_Janos_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289", "author": "", "orig_id": 1458386}}, {"model": "metainfo.source", "pk": 2496, "fields": {"orig_filename": "Simo_Ferenc_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458267}}, {"model": "metainfo.source", "pk": 2497, "fields": {"orig_filename": "Simunich_Balthasar_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289", "author": "", "orig_id": 1458388}}, {"model": "metainfo.source", "pk": 2498, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Georg-Simon_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289f.", "author": "", "orig_id": 1458464}}, {"model": "metainfo.source", "pk": 2499, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Johann-Simon_1804_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 290", "author": "", "orig_id": 1458465}}, {"model": "metainfo.source", "pk": 2500, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Simon-Georg_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 290f.", "author": "", "orig_id": 1458466}}, {"model": "metainfo.source", "pk": 2501, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Simon-Georg_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 291", "author": "", "orig_id": 1458468}}, {"model": "metainfo.source", "pk": 2502, "fields": {"orig_filename": "Sincai_Gheorghe_1754_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 291f.", "author": "", "orig_id": 1458470}}, {"model": "metainfo.source", "pk": 2503, "fields": {"orig_filename": "Sindelar_Matthias_1903_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 292", "author": "", "orig_id": 1458471}}, {"model": "metainfo.source", "pk": 2504, "fields": {"orig_filename": "Singer_Clara__1967.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458487}}, {"model": "metainfo.source", "pk": 2505, "fields": {"orig_filename": "Singer_Edmund_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293", "author": "", "orig_id": 1458472}}, {"model": "metainfo.source", "pk": 2506, "fields": {"orig_filename": "Singer_Edmund_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293f.", "author": "", "orig_id": 1458473}}, {"model": "metainfo.source", "pk": 2507, "fields": {"orig_filename": "Singer_Emanuel_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294", "author": "", "orig_id": 1458475}}, {"model": "metainfo.source", "pk": 2508, "fields": {"orig_filename": "Singer_Emil_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294", "author": "", "orig_id": 1458476}}, {"model": "metainfo.source", "pk": 2509, "fields": {"orig_filename": "Singer_Franz-Ignaz_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294f.", "author": "", "orig_id": 1458478}}, {"model": "metainfo.source", "pk": 2510, "fields": {"orig_filename": "Singer_Friedrich_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293", "author": "", "orig_id": 1458474}}, {"model": "metainfo.source", "pk": 2511, "fields": {"orig_filename": "Singer_Gustav_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 295", "author": "", "orig_id": 1458479}}, {"model": "metainfo.source", "pk": 2512, "fields": {"orig_filename": "Singer_Heinrich-Joseph_1855_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 295f.", "author": "", "orig_id": 1458480}}, {"model": "metainfo.source", "pk": 2513, "fields": {"orig_filename": "Singer_Isidor_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 296", "author": "", "orig_id": 1458482}}, {"model": "metainfo.source", "pk": 2514, "fields": {"orig_filename": "Singer_Isidor_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 296f.", "author": "", "orig_id": 1458483}}, {"model": "metainfo.source", "pk": 2515, "fields": {"orig_filename": "Singer_Jakob_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458484}}, {"model": "metainfo.source", "pk": 2516, "fields": {"orig_filename": "Singer_Joseph_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458485}}, {"model": "metainfo.source", "pk": 2517, "fields": {"orig_filename": "Singer_Julius_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297f.", "author": "", "orig_id": 1458563}}, {"model": "metainfo.source", "pk": 2518, "fields": {"orig_filename": "Singer_Karl-Max-Friedrich_1888_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 298", "author": "", "orig_id": 1458565}}, {"model": "metainfo.source", "pk": 2519, "fields": {"orig_filename": "Singer_Ludvik_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 298f.", "author": "", "orig_id": 1458566}}, {"model": "metainfo.source", "pk": 2520, "fields": {"orig_filename": "Singer_Max_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 299", "author": "", "orig_id": 1458567}}, {"model": "metainfo.source", "pk": 2521, "fields": {"orig_filename": "Singer_Petrus-Von-Alcantara_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 299f.", "author": "", "orig_id": 1458568}}, {"model": "metainfo.source", "pk": 2522, "fields": {"orig_filename": "Seykora_Oldrich-V_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210f.", "author": "", "orig_id": 1450962}}, {"model": "metainfo.source", "pk": 2523, "fields": {"orig_filename": "Seyler_Karoly_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 211f.", "author": "", "orig_id": 1450964}}, {"model": "metainfo.source", "pk": 2524, "fields": {"orig_filename": "Seyller_Otto_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212", "author": "", "orig_id": 1450965}}, {"model": "metainfo.source", "pk": 2525, "fields": {"orig_filename": "Seyrer_Ignaz_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212", "author": "", "orig_id": 1450966}}, {"model": "metainfo.source", "pk": 2526, "fields": {"orig_filename": "Seyrl_Franz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212f.", "author": "", "orig_id": 1450967}}, {"model": "metainfo.source", "pk": 2527, "fields": {"orig_filename": "Seyrl_Rudolf_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213", "author": "", "orig_id": 1450968}}, {"model": "metainfo.source", "pk": 2528, "fields": {"orig_filename": "Seyss-Inquart_Arthur_1892_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213f.", "author": "", "orig_id": 1449992}}, {"model": "metainfo.source", "pk": 2529, "fields": {"orig_filename": "Seyss-Inquart_Richard_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 214f.", "author": "", "orig_id": 1449993}}, {"model": "metainfo.source", "pk": 2530, "fields": {"orig_filename": "Seyss_Ludwig_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213", "author": "", "orig_id": 1450969}}, {"model": "metainfo.source", "pk": 2531, "fields": {"orig_filename": "Sfetez_Giovanni_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 215", "author": "", "orig_id": 1449994}}, {"model": "metainfo.source", "pk": 2532, "fields": {"orig_filename": "Sfondrini_Achille_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 215f.", "author": "", "orig_id": 1449995}}, {"model": "metainfo.source", "pk": 2533, "fields": {"orig_filename": "Sforzi_Giuseppe_1801_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 216", "author": "", "orig_id": 1449996}}, {"model": "metainfo.source", "pk": 2534, "fields": {"orig_filename": "Shivitz_Valentin-Matthias_1828_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 216f.", "author": "", "orig_id": 1449997}}, {"model": "metainfo.source", "pk": 2535, "fields": {"orig_filename": "Siber_Alfons_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 217", "author": "", "orig_id": 1449999}}, {"model": "metainfo.source", "pk": 2536, "fields": {"orig_filename": "Siber_Franz_1751_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 217f.", "author": "", "orig_id": 1450000}}, {"model": "metainfo.source", "pk": 2537, "fields": {"orig_filename": "Siboni_Giuseppe-Vincenzo-Antonio_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 218", "author": "", "orig_id": 1450001}}, {"model": "metainfo.source", "pk": 2538, "fields": {"orig_filename": "Sicard-Sicardsburg_August_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 219f.", "author": "", "orig_id": 1450003}}, {"model": "metainfo.source", "pk": 2539, "fields": {"orig_filename": "Sicharter_Barbara_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 220f.", "author": "", "orig_id": 1450005}}, {"model": "metainfo.source", "pk": 2540, "fields": {"orig_filename": "Sicha_Anton-Jaroslav_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 220", "author": "", "orig_id": 1450004}}, {"model": "metainfo.source", "pk": 2541, "fields": {"orig_filename": "Sichrovsky_Heinrich-Joachim_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 221f.", "author": "", "orig_id": 1450006}}, {"model": "metainfo.source", "pk": 2542, "fields": {"orig_filename": "Sichrovsky_Joseph_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 222f.", "author": "", "orig_id": 1450007}}, {"model": "metainfo.source", "pk": 2543, "fields": {"orig_filename": "Sickel_Theodor_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223f.", "author": "", "orig_id": 1450009}}, {"model": "metainfo.source", "pk": 2544, "fields": {"orig_filename": "Sic_Albert-Franc_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 218f.", "author": "", "orig_id": 1450002}}, {"model": "metainfo.source", "pk": 2545, "fields": {"orig_filename": "Sidoli_Alessandro_1812_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 224f.", "author": "", "orig_id": 1450010}}, {"model": "metainfo.source", "pk": 2546, "fields": {"orig_filename": "Sidorowicz_Zygmunt_1846_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225", "author": "", "orig_id": 1450012}}, {"model": "metainfo.source", "pk": 2547, "fields": {"orig_filename": "Sidor_Andrzej_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225", "author": "", "orig_id": 1450011}}, {"model": "metainfo.source", "pk": 2548, "fields": {"orig_filename": "Siebeck_Rudolph_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225f.", "author": "", "orig_id": 1450013}}, {"model": "metainfo.source", "pk": 2549, "fields": {"orig_filename": "Siebenrock_Friedrich_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 226", "author": "", "orig_id": 1450014}}, {"model": "metainfo.source", "pk": 2550, "fields": {"orig_filename": "Sieberer_Anton_1901_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 228", "author": "", "orig_id": 1450075}}, {"model": "metainfo.source", "pk": 2551, "fields": {"orig_filename": "Sieberer_Johann_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 228f.", "author": "", "orig_id": 1450076}}, {"model": "metainfo.source", "pk": 2552, "fields": {"orig_filename": "Sieber_Ferdinand_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 226f.", "author": "", "orig_id": 1450015}}, {"model": "metainfo.source", "pk": 2553, "fields": {"orig_filename": "Sieber_Franz-Wilhelm_1789_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 227", "author": "", "orig_id": 1450016}}, {"model": "metainfo.source", "pk": 2554, "fields": {"orig_filename": "Sieber_Karl-Laurenz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 227f.", "author": "", "orig_id": 1450017}}, {"model": "metainfo.source", "pk": 2555, "fields": {"orig_filename": "Siebinger_Josef_1800_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 229", "author": "", "orig_id": 1450077}}, {"model": "metainfo.source", "pk": 2556, "fields": {"orig_filename": "Siebold_Alexander_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 229", "author": "", "orig_id": 1450078}}, {"model": "metainfo.source", "pk": 2557, "fields": {"orig_filename": "Siebold_Heinrich_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230", "author": "", "orig_id": 1450079}}, {"model": "metainfo.source", "pk": 2558, "fields": {"orig_filename": "Siedek_Oskar_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230f.", "author": "", "orig_id": 1450080}}, {"model": "metainfo.source", "pk": 2559, "fields": {"orig_filename": "Siedek_Peter-Karl_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230f.", "author": "", "orig_id": 1450081}}, {"model": "metainfo.source", "pk": 2560, "fields": {"orig_filename": "Siedek_Richard_1859_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 231", "author": "", "orig_id": 1445586}}, {"model": "metainfo.source", "pk": 2561, "fields": {"orig_filename": "Siedek_Viktor_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 231f.", "author": "", "orig_id": 1450082}}, {"model": "metainfo.source", "pk": 2562, "fields": {"orig_filename": "Sieder_Adolf_1913_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232", "author": "", "orig_id": 1450084}}, {"model": "metainfo.source", "pk": 2563, "fields": {"orig_filename": "Sieder_Josef_1918_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232", "author": "", "orig_id": 1450083}}, {"model": "metainfo.source", "pk": 2564, "fields": {"orig_filename": "Siedlecki_Michal-Marian_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232f.", "author": "", "orig_id": 1450085}}, {"model": "metainfo.source", "pk": 2565, "fields": {"orig_filename": "Siegelbaum_Leo_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236", "author": "", "orig_id": 1450092}}, {"model": "metainfo.source", "pk": 2566, "fields": {"orig_filename": "Siegele_Josef_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236f.", "author": "", "orig_id": 1450093}}, {"model": "metainfo.source", "pk": 2567, "fields": {"orig_filename": "Siegel_Carl_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234f.", "author": "", "orig_id": 1420065}}, {"model": "metainfo.source", "pk": 2568, "fields": {"orig_filename": "Siegel_Ernst_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 235", "author": "", "orig_id": 1426316}}, {"model": "metainfo.source", "pk": 2569, "fields": {"orig_filename": "Siegel_Franz_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 235f.", "author": "", "orig_id": 1450090}}, {"model": "metainfo.source", "pk": 2570, "fields": {"orig_filename": "Siegel_Heinrich_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236", "author": "", "orig_id": 1450091}}, {"model": "metainfo.source", "pk": 2571, "fields": {"orig_filename": "Sieger_Eduard_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 237", "author": "", "orig_id": 1450094}}, {"model": "metainfo.source", "pk": 2572, "fields": {"orig_filename": "Sieger_Robert_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450095}}, {"model": "metainfo.source", "pk": 2573, "fields": {"orig_filename": "Sieger_Robert_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450097}}, {"model": "metainfo.source", "pk": 2574, "fields": {"orig_filename": "Sieger_Viktor_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450096}}, {"model": "metainfo.source", "pk": 2575, "fields": {"orig_filename": "Siege_Adolf_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 233f.", "author": "", "orig_id": 1450086}}, {"model": "metainfo.source", "pk": 2576, "fields": {"orig_filename": "Siege_Gustav_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450089}}, {"model": "metainfo.source", "pk": 2577, "fields": {"orig_filename": "Siege_Ignaz_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450087}}, {"model": "metainfo.source", "pk": 2578, "fields": {"orig_filename": "Siege_Josef_1790_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450088}}, {"model": "metainfo.source", "pk": 2579, "fields": {"orig_filename": "Sieghart_Rudolf_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 239", "author": "", "orig_id": 1450098}}, {"model": "metainfo.source", "pk": 2580, "fields": {"orig_filename": "Siegler-Eberswald_Heinrich_1774_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244", "author": "", "orig_id": 1457895}}, {"model": "metainfo.source", "pk": 2581, "fields": {"orig_filename": "Siegler-Eberswald_Ida_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244f.", "author": "", "orig_id": 1427965}}, {"model": "metainfo.source", "pk": 2582, "fields": {"orig_filename": "Siegl_Carl-Ignaz_1802_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 239f.", "author": "", "orig_id": 1450099}}, {"model": "metainfo.source", "pk": 2583, "fields": {"orig_filename": "Siegl_Eduard_1831_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 240", "author": "", "orig_id": 1450100}}, {"model": "metainfo.source", "pk": 2584, "fields": {"orig_filename": "Siegl_Emil_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 240f.", "author": "", "orig_id": 1450150}}, {"model": "metainfo.source", "pk": 2585, "fields": {"orig_filename": "Siegl_Johann_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242", "author": "", "orig_id": 1457821}}, {"model": "metainfo.source", "pk": 2586, "fields": {"orig_filename": "Siegl_Johann_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241", "author": "", "orig_id": 1457819}}, {"model": "metainfo.source", "pk": 2587, "fields": {"orig_filename": "Siegl_Karl_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241f.", "author": "", "orig_id": 1457820}}, {"model": "metainfo.source", "pk": 2588, "fields": {"orig_filename": "Siegl_Karl_1851_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242", "author": "", "orig_id": 1457822}}, {"model": "metainfo.source", "pk": 2589, "fields": {"orig_filename": "Siegl_Max_1856_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242f.", "author": "", "orig_id": 1457823}}, {"model": "metainfo.source", "pk": 2590, "fields": {"orig_filename": "Siegl_Meinrad_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243", "author": "", "orig_id": 1457824}}, {"model": "metainfo.source", "pk": 2591, "fields": {"orig_filename": "Siegl_Richard_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243f.", "author": "", "orig_id": 1457893}}, {"model": "metainfo.source", "pk": 2592, "fields": {"orig_filename": "Siegl_Robert_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243f.", "author": "", "orig_id": 1457892}}, {"model": "metainfo.source", "pk": 2593, "fields": {"orig_filename": "Siegl_Robert_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241", "author": "", "orig_id": 1457818}}, {"model": "metainfo.source", "pk": 2594, "fields": {"orig_filename": "Siegl_Rudolf_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244", "author": "", "orig_id": 1457894}}, {"model": "metainfo.source", "pk": 2595, "fields": {"orig_filename": "Siegmund_Adolf_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245", "author": "", "orig_id": 1457899}}, {"model": "metainfo.source", "pk": 2596, "fields": {"orig_filename": "Siegmund_Anton_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245f.", "author": "", "orig_id": 1457900}}, {"model": "metainfo.source", "pk": 2597, "fields": {"orig_filename": "Siegmund_Ferdinand_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 246", "author": "", "orig_id": 1457902}}, {"model": "metainfo.source", "pk": 2598, "fields": {"orig_filename": "Siegmund_Franz-Florian_1785_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 247", "author": "", "orig_id": 1457906}}, {"model": "metainfo.source", "pk": 2599, "fields": {"orig_filename": "Siegmund_Franz_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 246f.", "author": "", "orig_id": 1457903}}, {"model": "metainfo.source", "pk": 2600, "fields": {"orig_filename": "Siegmund_Gustav_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248f.", "author": "", "orig_id": 1457911}}, {"model": "metainfo.source", "pk": 2601, "fields": {"orig_filename": "Siegmund_Hans_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 247f.", "author": "", "orig_id": 1457908}}, {"model": "metainfo.source", "pk": 2602, "fields": {"orig_filename": "Siegmund_Heinrich_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245f.", "author": "", "orig_id": 1457901}}, {"model": "metainfo.source", "pk": 2603, "fields": {"orig_filename": "Siegmund_Wilhelm_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248", "author": "", "orig_id": 1457909}}, {"model": "metainfo.source", "pk": 2604, "fields": {"orig_filename": "Siegmund_Wilhelm_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248f.", "author": "", "orig_id": 1457910}}, {"model": "metainfo.source", "pk": 2605, "fields": {"orig_filename": "Siegris_Emmerich_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457912}}, {"model": "metainfo.source", "pk": 2606, "fields": {"orig_filename": "Siemianowski_Franciszek-Ksawery_1811_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457914}}, {"model": "metainfo.source", "pk": 2607, "fields": {"orig_filename": "Siemianowski_Maksymilian_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457913}}, {"model": "metainfo.source", "pk": 2608, "fields": {"orig_filename": "Sierakowski_Sebastian_1743_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 250", "author": "", "orig_id": 1457915}}, {"model": "metainfo.source", "pk": 2609, "fields": {"orig_filename": "Sies_Josef-Nikolaus_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 250f.", "author": "", "orig_id": 1457916}}, {"model": "metainfo.source", "pk": 2610, "fields": {"orig_filename": "Sigerus_Emil_1854_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 251", "author": "", "orig_id": 1457981}}, {"model": "metainfo.source", "pk": 2611, "fields": {"orig_filename": "Sigerus_Peter_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 251f.", "author": "", "orig_id": 1457982}}, {"model": "metainfo.source", "pk": 2612, "fields": {"orig_filename": "Sighartner_Anton-Franz_1790_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457983}}, {"model": "metainfo.source", "pk": 2613, "fields": {"orig_filename": "Sighartner_Friedrich_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457984}}, {"model": "metainfo.source", "pk": 2614, "fields": {"orig_filename": "Sighele-Siegenfels_Lorenzo_1761_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457985}}, {"model": "metainfo.source", "pk": 2615, "fields": {"orig_filename": "Sigl_Alfred-Ludwig_1854_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 253", "author": "", "orig_id": 1457986}}, {"model": "metainfo.source", "pk": 2616, "fields": {"orig_filename": "Sigl_Georg_1811_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252f.", "author": "", "orig_id": 1416630}}, {"model": "metainfo.source", "pk": 2617, "fields": {"orig_filename": "Sigl_Josef_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 253f.", "author": "", "orig_id": 1457987}}, {"model": "metainfo.source", "pk": 2618, "fields": {"orig_filename": "Sigmund-Ilanor_Karl-Ludwig_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254f.", "author": "", "orig_id": 1457992}}, {"model": "metainfo.source", "pk": 2619, "fields": {"orig_filename": "Sigmundt_Friedrich_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 255", "author": "", "orig_id": 1457993}}, {"model": "metainfo.source", "pk": 2620, "fields": {"orig_filename": "Sigmundt_Ludwig_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 255", "author": "", "orig_id": 1457994}}, {"model": "metainfo.source", "pk": 2621, "fields": {"orig_filename": "Sigmund_Adolf_1892_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254", "author": "", "orig_id": 1457990}}, {"model": "metainfo.source", "pk": 2622, "fields": {"orig_filename": "Sigmund_Alois_1853_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254", "author": "", "orig_id": 1457991}}, {"model": "metainfo.source", "pk": 2623, "fields": {"orig_filename": "Signoroni_Bartolomeo_1797_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256", "author": "", "orig_id": 1457995}}, {"model": "metainfo.source", "pk": 2624, "fields": {"orig_filename": "Sembratowicz_Joseph_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164", "author": "", "orig_id": 1450647}}, {"model": "metainfo.source", "pk": 2625, "fields": {"orig_filename": "Sembratowicz_Sylvester_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164f.", "author": "", "orig_id": 1450648}}, {"model": "metainfo.source", "pk": 2626, "fields": {"orig_filename": "Sembrich_Marcella_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 165f.", "author": "", "orig_id": 1450649}}, {"model": "metainfo.source", "pk": 2627, "fields": {"orig_filename": "Semeleder_Friedrich-Anton_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 166", "author": "", "orig_id": 1450651}}, {"model": "metainfo.source", "pk": 2628, "fields": {"orig_filename": "Semelrock_Johann-Bapt_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 166f.", "author": "", "orig_id": 1450652}}, {"model": "metainfo.source", "pk": 2629, "fields": {"orig_filename": "Semkowicz_Aleksander_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 167", "author": "", "orig_id": 1450653}}, {"model": "metainfo.source", "pk": 2630, "fields": {"orig_filename": "Semkowicz_Wladyslaw-Jan-Aleksander_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 167f.", "author": "", "orig_id": 1450654}}, {"model": "metainfo.source", "pk": 2631, "fields": {"orig_filename": "Semmelweis_Ignaz-Philipp_1818_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 168f.", "author": "", "orig_id": 1450655}}, {"model": "metainfo.source", "pk": 2632, "fields": {"orig_filename": "Semper_Gottfried_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 169f.", "author": "", "orig_id": 1450656}}, {"model": "metainfo.source", "pk": 2633, "fields": {"orig_filename": "Semper_Hans_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 170", "author": "", "orig_id": 1450657}}, {"model": "metainfo.source", "pk": 2634, "fields": {"orig_filename": "Semsey-Semse_Gustav_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171", "author": "", "orig_id": 1450694}}, {"model": "metainfo.source", "pk": 2635, "fields": {"orig_filename": "Semsey_Andor_1833_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171", "author": "", "orig_id": 1450658}}, {"model": "metainfo.source", "pk": 2636, "fields": {"orig_filename": "Senders_Ernestine_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 172", "author": "", "orig_id": 1450697}}, {"model": "metainfo.source", "pk": 2637, "fields": {"orig_filename": "Senfelder_Leopold_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 172f.", "author": "", "orig_id": 1450698}}, {"model": "metainfo.source", "pk": 2638, "fields": {"orig_filename": "Senfft-Pilsach_Friedrich-Christian-Ludwig_1774_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 173", "author": "", "orig_id": 1450699}}, {"model": "metainfo.source", "pk": 2639, "fields": {"orig_filename": "Senft_Emanuel_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 173f.", "author": "", "orig_id": 1450701}}, {"model": "metainfo.source", "pk": 2640, "fields": {"orig_filename": "Senger_Anton_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 174", "author": "", "orig_id": 1450702}}, {"model": "metainfo.source", "pk": 2641, "fields": {"orig_filename": "Senger_Joseph_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 175", "author": "", "orig_id": 1450703}}, {"model": "metainfo.source", "pk": 2642, "fields": {"orig_filename": "Sengschmitt_Berthold_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 175", "author": "", "orig_id": 1450704}}, {"model": "metainfo.source", "pk": 2643, "fields": {"orig_filename": "Senhofer_Karl_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176", "author": "", "orig_id": 1450705}}, {"model": "metainfo.source", "pk": 2644, "fields": {"orig_filename": "Senitzer_Paul-Maria_1761_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176", "author": "", "orig_id": 1450706}}, {"model": "metainfo.source", "pk": 2645, "fields": {"orig_filename": "Senkowski_Michal-Piotr_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177", "author": "", "orig_id": 1450709}}, {"model": "metainfo.source", "pk": 2646, "fields": {"orig_filename": "Senko_Michal_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176f.", "author": "", "orig_id": 1450707}}, {"model": "metainfo.source", "pk": 2647, "fields": {"orig_filename": "Senner_Joseph-Henry_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 178", "author": "", "orig_id": 1450717}}, {"model": "metainfo.source", "pk": 2648, "fields": {"orig_filename": "Sennholz_Gustav_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 178f.", "author": "", "orig_id": 1450719}}, {"model": "metainfo.source", "pk": 2649, "fields": {"orig_filename": "Sennovitz_Adolf_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 179", "author": "", "orig_id": 1450720}}, {"model": "metainfo.source", "pk": 2650, "fields": {"orig_filename": "Sennyey-Kis-Sennye_Paul_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 179f.", "author": "", "orig_id": 1450722}}, {"model": "metainfo.source", "pk": 2651, "fields": {"orig_filename": "Senn_Franz_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177", "author": "", "orig_id": 1450711}}, {"model": "metainfo.source", "pk": 2652, "fields": {"orig_filename": "Senn_Johann-Chrysostomos_1795_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177f.", "author": "", "orig_id": 1450715}}, {"model": "metainfo.source", "pk": 2653, "fields": {"orig_filename": "Senoa_August_1838_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 180", "author": "", "orig_id": 1450759}}, {"model": "metainfo.source", "pk": 2654, "fields": {"orig_filename": "Senoa_Branko_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 180f.", "author": "", "orig_id": 1450761}}, {"model": "metainfo.source", "pk": 2655, "fields": {"orig_filename": "Senoner_Adolf_1806_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 181", "author": "", "orig_id": 1450762}}, {"model": "metainfo.source", "pk": 2656, "fields": {"orig_filename": "Senyei_Karoly_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 181f.", "author": "", "orig_id": 1450764}}, {"model": "metainfo.source", "pk": 2657, "fields": {"orig_filename": "Sen_Edo_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171f.", "author": "", "orig_id": 1450695}}, {"model": "metainfo.source", "pk": 2658, "fields": {"orig_filename": "Seovaud-Bastide_Friedrich_1759_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182", "author": "", "orig_id": 1450765}}, {"model": "metainfo.source", "pk": 2659, "fields": {"orig_filename": "Sepp_Peter-Damian_1818_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182", "author": "", "orig_id": 1450766}}, {"model": "metainfo.source", "pk": 2660, "fields": {"orig_filename": "Sequens_Franz_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182f.", "author": "", "orig_id": 1450768}}, {"model": "metainfo.source", "pk": 2661, "fields": {"orig_filename": "Seracky_Frantisek_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 183", "author": "", "orig_id": 1450769}}, {"model": "metainfo.source", "pk": 2662, "fields": {"orig_filename": "Serafini_Filippo_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 183f.", "author": "", "orig_id": 1450771}}, {"model": "metainfo.source", "pk": 2663, "fields": {"orig_filename": "Seraphin_Friedrich-Wilhelm_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 184f.", "author": "", "orig_id": 1450772}}, {"model": "metainfo.source", "pk": 2664, "fields": {"orig_filename": "Serassi_Carlo_1777_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185", "author": "", "orig_id": 1450775}}, {"model": "metainfo.source", "pk": 2665, "fields": {"orig_filename": "Serassi_Giuseppe-Il-Giovane_1750_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185", "author": "", "orig_id": 1450773}}, {"model": "metainfo.source", "pk": 2666, "fields": {"orig_filename": "Seredynski_Hipolit-August_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185f.", "author": "", "orig_id": 1450777}}, {"model": "metainfo.source", "pk": 2667, "fields": {"orig_filename": "Seredynski_Wladyslaw_1841_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186", "author": "", "orig_id": 1450779}}, {"model": "metainfo.source", "pk": 2668, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Alois_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186f.", "author": "", "orig_id": 1450813}}, {"model": "metainfo.source", "pk": 2669, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Gabriel_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186f.", "author": "", "orig_id": 1450780}}, {"model": "metainfo.source", "pk": 2670, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Otto-Johann_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 187", "author": "", "orig_id": 1450815}}, {"model": "metainfo.source", "pk": 2671, "fields": {"orig_filename": "Serko_Alfred_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 187f.", "author": "", "orig_id": 1450817}}, {"model": "metainfo.source", "pk": 2672, "fields": {"orig_filename": "Serko_Alfred_1910_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188", "author": "", "orig_id": 1450818}}, {"model": "metainfo.source", "pk": 2673, "fields": {"orig_filename": "Serly_Lajos_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188", "author": "", "orig_id": 1450819}}, {"model": "metainfo.source", "pk": 2674, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Alexandrine_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 189f.", "author": "", "orig_id": 1450824}}, {"model": "metainfo.source", "pk": 2675, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Karl-Johann-Peter_1793_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188f.", "author": "", "orig_id": 1450821}}, {"model": "metainfo.source", "pk": 2676, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Richard_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 189f.", "author": "", "orig_id": 1450822}}, {"model": "metainfo.source", "pk": 2677, "fields": {"orig_filename": "Sernec_Janko_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 190", "author": "", "orig_id": 1450826}}, {"model": "metainfo.source", "pk": 2678, "fields": {"orig_filename": "Sernec_Josip_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 190", "author": "", "orig_id": 1450827}}, {"model": "metainfo.source", "pk": 2679, "fields": {"orig_filename": "Serner_Walter_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 191", "author": "", "orig_id": 1450829}}, {"model": "metainfo.source", "pk": 2680, "fields": {"orig_filename": "Serravallo_Vittorio_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 191f.", "author": "", "orig_id": 1450831}}, {"model": "metainfo.source", "pk": 2681, "fields": {"orig_filename": "Serres-Wieczffinski_August_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 192", "author": "", "orig_id": 1450832}}, {"model": "metainfo.source", "pk": 2682, "fields": {"orig_filename": "Sersawy_Viktor_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 192f.", "author": "", "orig_id": 1450875}}, {"model": "metainfo.source", "pk": 2683, "fields": {"orig_filename": "Servaes_Franz_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 193", "author": "", "orig_id": 1450876}}, {"model": "metainfo.source", "pk": 2684, "fields": {"orig_filename": "Serwaczynski_Stanislaw_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 193f.", "author": "", "orig_id": 1450877}}, {"model": "metainfo.source", "pk": 2685, "fields": {"orig_filename": "Serwatowski_Ladislaus_1873_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194", "author": "", "orig_id": 1450879}}, {"model": "metainfo.source", "pk": 2686, "fields": {"orig_filename": "Serwatowski_Theodor-Alfred_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194", "author": "", "orig_id": 1450878}}, {"model": "metainfo.source", "pk": 2687, "fields": {"orig_filename": "Serwatowski_Walerian_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194f.", "author": "", "orig_id": 1450880}}, {"model": "metainfo.source", "pk": 2688, "fields": {"orig_filename": "Sessler-Herzinger_Viktor-Felix_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195f.", "author": "", "orig_id": 1450883}}, {"model": "metainfo.source", "pk": 2689, "fields": {"orig_filename": "Sessler_Josef_1763_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195", "author": "", "orig_id": 1450881}}, {"model": "metainfo.source", "pk": 2690, "fields": {"orig_filename": "Sessler_Max_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195", "author": "", "orig_id": 1450882}}, {"model": "metainfo.source", "pk": 2691, "fields": {"orig_filename": "Sestan_Ada_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 196f.", "author": "", "orig_id": 1450885}}, {"model": "metainfo.source", "pk": 2692, "fields": {"orig_filename": "Setzer_Franz-Xaver_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198", "author": "", "orig_id": 1450888}}, {"model": "metainfo.source", "pk": 2693, "fields": {"orig_filename": "Setznagel_Alexander_1801_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198", "author": "", "orig_id": 1450889}}, {"model": "metainfo.source", "pk": 2694, "fields": {"orig_filename": "Setz_Friedrich_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197f.", "author": "", "orig_id": 1450887}}, {"model": "metainfo.source", "pk": 2695, "fields": {"orig_filename": "Seuffert_Eduard_1819_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 199f.", "author": "", "orig_id": 1450891}}, {"model": "metainfo.source", "pk": 2696, "fields": {"orig_filename": "Seuffert_Franz-Martin_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200", "author": "", "orig_id": 1450892}}, {"model": "metainfo.source", "pk": 2697, "fields": {"orig_filename": "Seutter-Loetzen_Carl-Friedrich_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200f.", "author": "", "orig_id": 1450893}}, {"model": "metainfo.source", "pk": 2698, "fields": {"orig_filename": "Seutter-Loetzen_Eduard_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201", "author": "", "orig_id": 1450895}}, {"model": "metainfo.source", "pk": 2699, "fields": {"orig_filename": "Seutter-Loetzen_Hermann_1863_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200f.", "author": "", "orig_id": 1450894}}, {"model": "metainfo.source", "pk": 2700, "fields": {"orig_filename": "Seutter-Loetzen_Johann-Konrad_1864_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201f.", "author": "", "orig_id": 1450897}}, {"model": "metainfo.source", "pk": 2701, "fields": {"orig_filename": "Seutter-Loetzen_Ruediger_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201f.", "author": "", "orig_id": 1450896}}, {"model": "metainfo.source", "pk": 2702, "fields": {"orig_filename": "Sevcik_Frantisek_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 202", "author": "", "orig_id": 1450898}}, {"model": "metainfo.source", "pk": 2703, "fields": {"orig_filename": "Sevcik_Franz-Friedrich_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 202f.", "author": "", "orig_id": 1450899}}, {"model": "metainfo.source", "pk": 2704, "fields": {"orig_filename": "Sevcik_Otakar_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 203", "author": "", "orig_id": 1450943}}, {"model": "metainfo.source", "pk": 2705, "fields": {"orig_filename": "Sever_Albert_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 203f.", "author": "", "orig_id": 1450944}}, {"model": "metainfo.source", "pk": 2706, "fields": {"orig_filename": "Seybel_Emil_1816_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 204f.", "author": "", "orig_id": 1450946}}, {"model": "metainfo.source", "pk": 2707, "fields": {"orig_filename": "Seybel_Otto_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450947}}, {"model": "metainfo.source", "pk": 2708, "fields": {"orig_filename": "Seybel_Paul_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450948}}, {"model": "metainfo.source", "pk": 2709, "fields": {"orig_filename": "Seyczek_Lorenz_1798_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450949}}, {"model": "metainfo.source", "pk": 2710, "fields": {"orig_filename": "Seydelmann_Armin_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205f.", "author": "", "orig_id": 1450950}}, {"model": "metainfo.source", "pk": 2711, "fields": {"orig_filename": "Seydelmann_Susanne_1884_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205f.", "author": "", "orig_id": 1450951}}, {"model": "metainfo.source", "pk": 2712, "fields": {"orig_filename": "Seydler_Anton_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 207f.", "author": "", "orig_id": 1450955}}, {"model": "metainfo.source", "pk": 2713, "fields": {"orig_filename": "Seydler_August-Johann-Friedrich_1849_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 206f.", "author": "", "orig_id": 1450953}}, {"model": "metainfo.source", "pk": 2714, "fields": {"orig_filename": "Seydler_Ludwig-Carl_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 207f.", "author": "", "orig_id": 1450954}}, {"model": "metainfo.source", "pk": 2715, "fields": {"orig_filename": "Seydl_Jenoe_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 206", "author": "", "orig_id": 1450952}}, {"model": "metainfo.source", "pk": 2716, "fields": {"orig_filename": "Seyfarth_Gustaw_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208", "author": "", "orig_id": 1450956}}, {"model": "metainfo.source", "pk": 2717, "fields": {"orig_filename": "Seyfert_Bernhard_1817_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208", "author": "", "orig_id": 1450957}}, {"model": "metainfo.source", "pk": 2718, "fields": {"orig_filename": "Seyffertitz_Carl-Maria-Josef-Leopold_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208f.", "author": "", "orig_id": 1450958}}, {"model": "metainfo.source", "pk": 2719, "fields": {"orig_filename": "Seyfried_Ferdinand_1811_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210", "author": "", "orig_id": 1450961}}, {"model": "metainfo.source", "pk": 2720, "fields": {"orig_filename": "Seyfried_Ignaz_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 209f.", "author": "", "orig_id": 1450959}}, {"model": "metainfo.source", "pk": 2721, "fields": {"orig_filename": "Seyfried_Josef_1780_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210", "author": "", "orig_id": 1450960}}, {"model": "metainfo.source", "pk": 2722, "fields": {"orig_filename": "Seykora_Hugo_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435769}}, {"model": "metainfo.source", "pk": 2723, "fields": {"orig_filename": "Segvic_Matej-Marin_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114", "author": "", "orig_id": 1439477}}, {"model": "metainfo.source", "pk": 2724, "fields": {"orig_filename": "Seibt-Ringenhart_Gottfried_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 115f.", "author": "", "orig_id": 1439480}}, {"model": "metainfo.source", "pk": 2725, "fields": {"orig_filename": "Seib_Wilhelm_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 115", "author": "", "orig_id": 1439479}}, {"model": "metainfo.source", "pk": 2726, "fields": {"orig_filename": "Seidan_Thomas_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116", "author": "", "orig_id": 1439481}}, {"model": "metainfo.source", "pk": 2727, "fields": {"orig_filename": "Seidan_Wenzel_1817_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116", "author": "", "orig_id": 1439482}}, {"model": "metainfo.source", "pk": 2728, "fields": {"orig_filename": "Seidel_Gustav_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116f.", "author": "", "orig_id": 1439483}}, {"model": "metainfo.source", "pk": 2729, "fields": {"orig_filename": "Seidel_Ludwig-Wilhelm_1802_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117", "author": "", "orig_id": 1439484}}, {"model": "metainfo.source", "pk": 2730, "fields": {"orig_filename": "Seidel_Ludwig_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117", "author": "", "orig_id": 1439485}}, {"model": "metainfo.source", "pk": 2731, "fields": {"orig_filename": "Seidel_Moriz_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117f.", "author": "", "orig_id": 1439486}}, {"model": "metainfo.source", "pk": 2732, "fields": {"orig_filename": "Seidensacher_Karl_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 118", "author": "", "orig_id": 1439487}}, {"model": "metainfo.source", "pk": 2733, "fields": {"orig_filename": "Seidl-Hohenveldern_Eduard_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129", "author": "", "orig_id": 1451511}}, {"model": "metainfo.source", "pk": 2734, "fields": {"orig_filename": "Seidl-Kraus_Auguste_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 119f.", "author": "", "orig_id": 1439542}}, {"model": "metainfo.source", "pk": 2735, "fields": {"orig_filename": "Seidler-Feuchtenegg_Ernst_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 131f.", "author": "", "orig_id": 1451515}}, {"model": "metainfo.source", "pk": 2736, "fields": {"orig_filename": "Seidler-Wranitzky_Karoline_1790_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 132", "author": "", "orig_id": 1451517}}, {"model": "metainfo.source", "pk": 2737, "fields": {"orig_filename": "Seidler_Adolf_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129f.", "author": "", "orig_id": 1451512}}, {"model": "metainfo.source", "pk": 2738, "fields": {"orig_filename": "Seidler_Friedrich-Johann_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 130", "author": "", "orig_id": 1451513}}, {"model": "metainfo.source", "pk": 2739, "fields": {"orig_filename": "Seidler_Gustav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 130f.", "author": "", "orig_id": 1451514}}, {"model": "metainfo.source", "pk": 2740, "fields": {"orig_filename": "Seidlitz_Julius_1814_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 132f.", "author": "", "orig_id": 1451518}}, {"model": "metainfo.source", "pk": 2741, "fields": {"orig_filename": "Seidl_Adolf-L_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 118f.", "author": "", "orig_id": 1439540}}, {"model": "metainfo.source", "pk": 2742, "fields": {"orig_filename": "Seidl_Anton_1850_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 119f.", "author": "", "orig_id": 1439541}}, {"model": "metainfo.source", "pk": 2743, "fields": {"orig_filename": "Seidl_Carl_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 120", "author": "", "orig_id": 1439544}}, {"model": "metainfo.source", "pk": 2744, "fields": {"orig_filename": "Seidl_Emanuel_1815_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121", "author": "", "orig_id": 1451440}}, {"model": "metainfo.source", "pk": 2745, "fields": {"orig_filename": "Seidl_Ferdinand_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121", "author": "", "orig_id": 1451441}}, {"model": "metainfo.source", "pk": 2746, "fields": {"orig_filename": "Seidl_Ferdo_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121f.", "author": "", "orig_id": 1451442}}, {"model": "metainfo.source", "pk": 2747, "fields": {"orig_filename": "Seidl_Franz_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 122", "author": "", "orig_id": 1451443}}, {"model": "metainfo.source", "pk": 2748, "fields": {"orig_filename": "Seidl_Ignaz_1788_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123", "author": "", "orig_id": 1451445}}, {"model": "metainfo.source", "pk": 2749, "fields": {"orig_filename": "Seidl_Ignaz_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 122f.", "author": "", "orig_id": 1451444}}, {"model": "metainfo.source", "pk": 2750, "fields": {"orig_filename": "Seidl_Ignaz_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123f.", "author": "", "orig_id": 1451446}}, {"model": "metainfo.source", "pk": 2751, "fields": {"orig_filename": "Seidl_Ignaz_1883_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123f.", "author": "", "orig_id": 1451447}}, {"model": "metainfo.source", "pk": 2752, "fields": {"orig_filename": "Seidl_Johann-Gabriel_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 124f.", "author": "", "orig_id": 1451448}}, {"model": "metainfo.source", "pk": 2753, "fields": {"orig_filename": "Seidl_Karl_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 125", "author": "", "orig_id": 1451502}}, {"model": "metainfo.source", "pk": 2754, "fields": {"orig_filename": "Seidl_Kurt_1902_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 125f.", "author": "", "orig_id": 1451503}}, {"model": "metainfo.source", "pk": 2755, "fields": {"orig_filename": "Seidl_Max_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126", "author": "", "orig_id": 1451504}}, {"model": "metainfo.source", "pk": 2756, "fields": {"orig_filename": "Seidl_Michael_1767_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126", "author": "", "orig_id": 1451505}}, {"model": "metainfo.source", "pk": 2757, "fields": {"orig_filename": "Seidl_Siegfried_1911_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126f.", "author": "", "orig_id": 1451506}}, {"model": "metainfo.source", "pk": 2758, "fields": {"orig_filename": "Seidl_Walter_1905_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 127f.", "author": "", "orig_id": 1451507}}, {"model": "metainfo.source", "pk": 2759, "fields": {"orig_filename": "Seidl_Wenzel-Benno_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 128f.", "author": "", "orig_id": 1451509}}, {"model": "metainfo.source", "pk": 2760, "fields": {"orig_filename": "Seidl_Wenzel_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 128", "author": "", "orig_id": 1451508}}, {"model": "metainfo.source", "pk": 2761, "fields": {"orig_filename": "Seidl_Werner_1914_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129", "author": "", "orig_id": 1451510}}, {"model": "metainfo.source", "pk": 2762, "fields": {"orig_filename": "Seidmann_Karl_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 133", "author": "", "orig_id": 1451520}}, {"model": "metainfo.source", "pk": 2763, "fields": {"orig_filename": "Seidner_Wilhelm_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134", "author": "", "orig_id": 1451521}}, {"model": "metainfo.source", "pk": 2764, "fields": {"orig_filename": "Seifert_Adolf_1826_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134f.", "author": "", "orig_id": 1451523}}, {"model": "metainfo.source", "pk": 2765, "fields": {"orig_filename": "Seifert_Adolf_1902_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 135", "author": "", "orig_id": 1451524}}, {"model": "metainfo.source", "pk": 2766, "fields": {"orig_filename": "Seifert_Alfred_1850_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 135f.", "author": "", "orig_id": 1451525}}, {"model": "metainfo.source", "pk": 2767, "fields": {"orig_filename": "Seifert_Anton_1826_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136", "author": "", "orig_id": 1451526}}, {"model": "metainfo.source", "pk": 2768, "fields": {"orig_filename": "Seifert_Jakub_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136f.", "author": "", "orig_id": 1451527}}, {"model": "metainfo.source", "pk": 2769, "fields": {"orig_filename": "Seifert_Johann_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 137", "author": "", "orig_id": 1451575}}, {"model": "metainfo.source", "pk": 2770, "fields": {"orig_filename": "Seifert_Josef_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 137f.", "author": "", "orig_id": 1451576}}, {"model": "metainfo.source", "pk": 2771, "fields": {"orig_filename": "Seifert_Joseph_1808_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 138", "author": "", "orig_id": 1451577}}, {"model": "metainfo.source", "pk": 2772, "fields": {"orig_filename": "Seifert_Wenzel_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 138f.", "author": "", "orig_id": 1451578}}, {"model": "metainfo.source", "pk": 2773, "fields": {"orig_filename": "Seifman_Piotr-Stefan_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 139", "author": "", "orig_id": 1451579}}, {"model": "metainfo.source", "pk": 2774, "fields": {"orig_filename": "Seif_Theodor_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134", "author": "", "orig_id": 1451522}}, {"model": "metainfo.source", "pk": 2775, "fields": {"orig_filename": "Seigerschmied_Jozef_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 139f.", "author": "", "orig_id": 1451580}}, {"model": "metainfo.source", "pk": 2776, "fields": {"orig_filename": "Seilern-Aspang_Karl-Maximilian_1825_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451581}}, {"model": "metainfo.source", "pk": 2777, "fields": {"orig_filename": "Seiller_Alois_1833_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451582}}, {"model": "metainfo.source", "pk": 2778, "fields": {"orig_filename": "Seiller_Ernst-Kaspar_1870_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451583}}, {"model": "metainfo.source", "pk": 2779, "fields": {"orig_filename": "Seiller_Johann-Kaspar_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140f.", "author": "", "orig_id": 1451584}}, {"model": "metainfo.source", "pk": 2780, "fields": {"orig_filename": "Seiner_Franz-Josef_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 141f.", "author": "", "orig_id": 1451585}}, {"model": "metainfo.source", "pk": 2781, "fields": {"orig_filename": "Seipelt_Josepha_1815_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144", "author": "", "orig_id": 1451588}}, {"model": "metainfo.source", "pk": 2782, "fields": {"orig_filename": "Seipelt_Joseph_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 143f.", "author": "", "orig_id": 1451587}}, {"model": "metainfo.source", "pk": 2783, "fields": {"orig_filename": "Seipel_Ignaz_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 142f.", "author": "", "orig_id": 1451586}}, {"model": "metainfo.source", "pk": 2784, "fields": {"orig_filename": "Seipka_Adolf_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144", "author": "", "orig_id": 1451589}}, {"model": "metainfo.source", "pk": 2785, "fields": {"orig_filename": "Seisl_Johann_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144f.", "author": "", "orig_id": 1451590}}, {"model": "metainfo.source", "pk": 2786, "fields": {"orig_filename": "Seismit-Doda_Federico_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145", "author": "", "orig_id": 1451591}}, {"model": "metainfo.source", "pk": 2787, "fields": {"orig_filename": "Seismit-Doda_Luigi_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145", "author": "", "orig_id": 1451592}}, {"model": "metainfo.source", "pk": 2788, "fields": {"orig_filename": "Seitner_Moritz_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145f.", "author": "", "orig_id": 1451593}}, {"model": "metainfo.source", "pk": 2789, "fields": {"orig_filename": "Seitz-Treffen_Heinrich_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147", "author": "", "orig_id": 1451595}}, {"model": "metainfo.source", "pk": 2790, "fields": {"orig_filename": "Seitz_Karl_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 146f.", "author": "", "orig_id": 1451594}}, {"model": "metainfo.source", "pk": 2791, "fields": {"orig_filename": "Seivert_Gustav_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147", "author": "", "orig_id": 1451596}}, {"model": "metainfo.source", "pk": 2792, "fields": {"orig_filename": "Sejnost_Josef_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147f.", "author": "", "orig_id": 1451597}}, {"model": "metainfo.source", "pk": 2793, "fields": {"orig_filename": "Seka_Reinhard_1898_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 148", "author": "", "orig_id": 1451637}}, {"model": "metainfo.source", "pk": 2794, "fields": {"orig_filename": "Sekera_Wenzel-Johann_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 148f.", "author": "", "orig_id": 1451638}}, {"model": "metainfo.source", "pk": 2795, "fields": {"orig_filename": "Sekker_Franz_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 149", "author": "", "orig_id": 1451639}}, {"model": "metainfo.source", "pk": 2796, "fields": {"orig_filename": "Sekyra_Josef_1812_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 149f.", "author": "", "orig_id": 1451640}}, {"model": "metainfo.source", "pk": 2797, "fields": {"orig_filename": "Selb_Josef-Anton_1784_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 150", "author": "", "orig_id": 1451641}}, {"model": "metainfo.source", "pk": 2798, "fields": {"orig_filename": "Selb_Karl_1760_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 150f.", "author": "", "orig_id": 1451642}}, {"model": "metainfo.source", "pk": 2799, "fields": {"orig_filename": "Selch_Emerich_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 151", "author": "", "orig_id": 1451643}}, {"model": "metainfo.source", "pk": 2800, "fields": {"orig_filename": "Seleskowitz_Louise_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 151f.", "author": "", "orig_id": 1451644}}, {"model": "metainfo.source", "pk": 2801, "fields": {"orig_filename": "Seliger_Josef_1870_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 152", "author": "", "orig_id": 1451645}}, {"model": "metainfo.source", "pk": 2802, "fields": {"orig_filename": "Seligmann_Adalbert-Franz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 152f.", "author": "", "orig_id": 1451646}}, {"model": "metainfo.source", "pk": 2803, "fields": {"orig_filename": "Seligmann_Berthold_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153", "author": "", "orig_id": 1451647}}, {"model": "metainfo.source", "pk": 2804, "fields": {"orig_filename": "Seligmann_Franz-Romeo_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 154f.", "author": "", "orig_id": 1451650}}, {"model": "metainfo.source", "pk": 2805, "fields": {"orig_filename": "Seligmann_Franz_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153f.", "author": "", "orig_id": 1451649}}, {"model": "metainfo.source", "pk": 2806, "fields": {"orig_filename": "Seligmann_Julius_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153", "author": "", "orig_id": 1451648}}, {"model": "metainfo.source", "pk": 2807, "fields": {"orig_filename": "Seligmann_Leopold_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 155", "author": "", "orig_id": 1451651}}, {"model": "metainfo.source", "pk": 2808, "fields": {"orig_filename": "Selim_Josma_1884_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 155f.", "author": "", "orig_id": 1451653}}, {"model": "metainfo.source", "pk": 2809, "fields": {"orig_filename": "Selinger_Engelbert-Maximilian_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 156f.", "author": "", "orig_id": 1451656}}, {"model": "metainfo.source", "pk": 2810, "fields": {"orig_filename": "Seling_Emil_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 156", "author": "", "orig_id": 1451655}}, {"model": "metainfo.source", "pk": 2811, "fields": {"orig_filename": "Seljan_Mirko_1871_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157", "author": "", "orig_id": 1451658}}, {"model": "metainfo.source", "pk": 2812, "fields": {"orig_filename": "Seljan_Stjepan_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157", "author": "", "orig_id": 1451659}}, {"model": "metainfo.source", "pk": 2813, "fields": {"orig_filename": "Sellemond_Peter_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 158", "author": "", "orig_id": 1451661}}, {"model": "metainfo.source", "pk": 2814, "fields": {"orig_filename": "Sellenati_Hans_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 158f.", "author": "", "orig_id": 1450633}}, {"model": "metainfo.source", "pk": 2815, "fields": {"orig_filename": "Sellenati_Mathilde_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 159", "author": "", "orig_id": 1450634}}, {"model": "metainfo.source", "pk": 2816, "fields": {"orig_filename": "Selleny_Joseph_1824_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 159f.", "author": "", "orig_id": 1450637}}, {"model": "metainfo.source", "pk": 2817, "fields": {"orig_filename": "Selle_Friedrich_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157f.", "author": "", "orig_id": 1451660}}, {"model": "metainfo.source", "pk": 2818, "fields": {"orig_filename": "Sellmann_Franz-Seraph_1747_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 160", "author": "", "orig_id": 1450638}}, {"model": "metainfo.source", "pk": 2819, "fields": {"orig_filename": "Sellner_Joseph_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 160f.", "author": "", "orig_id": 1450639}}, {"model": "metainfo.source", "pk": 2820, "fields": {"orig_filename": "Seltsam_Ferdinand_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 161", "author": "", "orig_id": 1450640}}, {"model": "metainfo.source", "pk": 2821, "fields": {"orig_filename": "Selvatico_Pietro-Estense_1803_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 162f.", "author": "", "orig_id": 1450642}}, {"model": "metainfo.source", "pk": 2822, "fields": {"orig_filename": "Selva_Giovanni-Antonio_1751_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 161f.", "author": "", "orig_id": 1450641}}, {"model": "metainfo.source", "pk": 2823, "fields": {"orig_filename": "Sembera_Alois-Vojtech_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 163f.", "author": "", "orig_id": 1450643}}, {"model": "metainfo.source", "pk": 2824, "fields": {"orig_filename": "Sembera_Joseph_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164", "author": "", "orig_id": 1450645}}, {"model": "metainfo.source", "pk": 2825, "fields": {"orig_filename": "Semberova_Zdenka_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 163", "author": "", "orig_id": 1450644}}, {"model": "metainfo.source", "pk": 2826, "fields": {"orig_filename": "Schwing_Karel_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 63f.", "author": "", "orig_id": 1440108}}, {"model": "metainfo.source", "pk": 2827, "fields": {"orig_filename": "Schwinner_Josef_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 64f.", "author": "", "orig_id": 1440111}}, {"model": "metainfo.source", "pk": 2828, "fields": {"orig_filename": "Schwippel_Karl_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 65", "author": "", "orig_id": 1440112}}, {"model": "metainfo.source", "pk": 2829, "fields": {"orig_filename": "Schwitzer_Basilius_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 65f.", "author": "", "orig_id": 1440113}}, {"model": "metainfo.source", "pk": 2830, "fields": {"orig_filename": "Schwitzer_Berthold_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66", "author": "", "orig_id": 1440115}}, {"model": "metainfo.source", "pk": 2831, "fields": {"orig_filename": "Schwoy_Franz-Xaver_1783_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66f.", "author": "", "orig_id": 1440117}}, {"model": "metainfo.source", "pk": 2832, "fields": {"orig_filename": "Scitovsky-Nagy-Ker_Johann-Baptist_1795_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 67", "author": "", "orig_id": 1440118}}, {"model": "metainfo.source", "pk": 2833, "fields": {"orig_filename": "Scolik_Charles_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 67f.", "author": "", "orig_id": 1440120}}, {"model": "metainfo.source", "pk": 2834, "fields": {"orig_filename": "Scomparini_Eugenio_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 68f.", "author": "", "orig_id": 1440122}}, {"model": "metainfo.source", "pk": 2835, "fields": {"orig_filename": "Scopinich-Kuestenhort_Johann-Anton_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69", "author": "", "orig_id": 1440123}}, {"model": "metainfo.source", "pk": 2836, "fields": {"orig_filename": "Scrinzi-Montecroce_Giovanni-Battista_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69", "author": "", "orig_id": 1440125}}, {"model": "metainfo.source", "pk": 2837, "fields": {"orig_filename": "Scudier_Anton_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69f.", "author": "", "orig_id": 1440127}}, {"model": "metainfo.source", "pk": 2838, "fields": {"orig_filename": "Scurat_Vasyl_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 70", "author": "", "orig_id": 1440128}}, {"model": "metainfo.source", "pk": 2839, "fields": {"orig_filename": "Scutta_Andreas_1806_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 70f.", "author": "", "orig_id": 1440167}}, {"model": "metainfo.source", "pk": 2840, "fields": {"orig_filename": "Scutta_Josefine_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 71f.", "author": "", "orig_id": 1440168}}, {"model": "metainfo.source", "pk": 2841, "fields": {"orig_filename": "Seback_Vinzenz_1805_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 72", "author": "", "orig_id": 1440169}}, {"model": "metainfo.source", "pk": 2842, "fields": {"orig_filename": "Seberini_Andreas_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75", "author": "", "orig_id": 1440183}}, {"model": "metainfo.source", "pk": 2843, "fields": {"orig_filename": "Seberini_Gustav-Adolf_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 72f.", "author": "", "orig_id": 1440175}}, {"model": "metainfo.source", "pk": 2844, "fields": {"orig_filename": "Seberini_Johann-Michael_1825_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 74", "author": "", "orig_id": 1440181}}, {"model": "metainfo.source", "pk": 2845, "fields": {"orig_filename": "Seberini_Johann_1780_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 73f.", "author": "", "orig_id": 1440179}}, {"model": "metainfo.source", "pk": 2846, "fields": {"orig_filename": "Seberini_Ludwig-Sigmund_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 73", "author": "", "orig_id": 1440176}}, {"model": "metainfo.source", "pk": 2847, "fields": {"orig_filename": "Seberini_Ludwig_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 74f.", "author": "", "orig_id": 1440182}}, {"model": "metainfo.source", "pk": 2848, "fields": {"orig_filename": "Sebesta_Milos_1883_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75", "author": "", "orig_id": 1440233}}, {"model": "metainfo.source", "pk": 2849, "fields": {"orig_filename": "Sebesta_Vojtech_1844_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75f.", "author": "", "orig_id": 1440235}}, {"model": "metainfo.source", "pk": 2850, "fields": {"orig_filename": "Sebestyen_Gyula_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76", "author": "", "orig_id": 1440236}}, {"model": "metainfo.source", "pk": 2851, "fields": {"orig_filename": "Sebor_Josef_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76", "author": "", "orig_id": 1440238}}, {"model": "metainfo.source", "pk": 2852, "fields": {"orig_filename": "Sebor_Karel-Richard_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76f.", "author": "", "orig_id": 1440239}}, {"model": "metainfo.source", "pk": 2853, "fields": {"orig_filename": "Sebottendorf-Rose_Franz-Ludwig_1741_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 77f.", "author": "", "orig_id": 1440242}}, {"model": "metainfo.source", "pk": 2854, "fields": {"orig_filename": "Sebottendorf-Rose_Karl-Philipp_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 77f.", "author": "", "orig_id": 1440241}}, {"model": "metainfo.source", "pk": 2855, "fields": {"orig_filename": "Sebottendorf-Rose_Moritz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78", "author": "", "orig_id": 1440246}}, {"model": "metainfo.source", "pk": 2856, "fields": {"orig_filename": "Secco-Suardo_Gerolamo_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78f.", "author": "", "orig_id": 1439252}}, {"model": "metainfo.source", "pk": 2857, "fields": {"orig_filename": "Secco_Andrea_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78", "author": "", "orig_id": 1439251}}, {"model": "metainfo.source", "pk": 2858, "fields": {"orig_filename": "Sechter_Eduard-Engelbert_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 80", "author": "", "orig_id": 1439255}}, {"model": "metainfo.source", "pk": 2859, "fields": {"orig_filename": "Sechter_Simon_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 79f.", "author": "", "orig_id": 1439254}}, {"model": "metainfo.source", "pk": 2860, "fields": {"orig_filename": "Seckendorff-Gudent_Arthur_1845_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 80f.", "author": "", "orig_id": 1439257}}, {"model": "metainfo.source", "pk": 2861, "fields": {"orig_filename": "Secky_Franz_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 81", "author": "", "orig_id": 1439258}}, {"model": "metainfo.source", "pk": 2862, "fields": {"orig_filename": "Sedej_Francisek-Borgia_1854_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 81f.", "author": "", "orig_id": 1439259}}, {"model": "metainfo.source", "pk": 2863, "fields": {"orig_filename": "Sedelmaier_Maria-Johanna_1811_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 82f.", "author": "", "orig_id": 1439260}}, {"model": "metainfo.source", "pk": 2864, "fields": {"orig_filename": "Sederl_Josef_1813_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 83", "author": "", "orig_id": 1439261}}, {"model": "metainfo.source", "pk": 2865, "fields": {"orig_filename": "Sedlacek_August_1843_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 83f.", "author": "", "orig_id": 1439262}}, {"model": "metainfo.source", "pk": 2866, "fields": {"orig_filename": "Sedlacek_Ernestus_1796_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86", "author": "", "orig_id": 1439268}}, {"model": "metainfo.source", "pk": 2867, "fields": {"orig_filename": "Sedlacek_Franz-August_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 84", "author": "", "orig_id": 1439264}}, {"model": "metainfo.source", "pk": 2868, "fields": {"orig_filename": "Sedlacek_Jaroslav_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 84f.", "author": "", "orig_id": 1439265}}, {"model": "metainfo.source", "pk": 2869, "fields": {"orig_filename": "Sedlacek_Josef-Vojtech_1785_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 85", "author": "", "orig_id": 1439266}}, {"model": "metainfo.source", "pk": 2870, "fields": {"orig_filename": "Sedlacek_Wilhelm-Ludwig_1793_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 85f.", "author": "", "orig_id": 1439267}}, {"model": "metainfo.source", "pk": 2871, "fields": {"orig_filename": "Sedlaczek-Harkenfeld_Johann-Nepomuk_1759_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 87f.", "author": "", "orig_id": 1439272}}, {"model": "metainfo.source", "pk": 2872, "fields": {"orig_filename": "Sedlaczek_Emil-Maria_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86", "author": "", "orig_id": 1439269}}, {"model": "metainfo.source", "pk": 2873, "fields": {"orig_filename": "Sedlaczek_Stephan_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86f.", "author": "", "orig_id": 1439270}}, {"model": "metainfo.source", "pk": 2874, "fields": {"orig_filename": "Sedlaczek_Walter_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 87", "author": "", "orig_id": 1439271}}, {"model": "metainfo.source", "pk": 2875, "fields": {"orig_filename": "Sedlak_Hanns_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 88", "author": "", "orig_id": 1439273}}, {"model": "metainfo.source", "pk": 2876, "fields": {"orig_filename": "Sedlak_Jan_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 88f.", "author": "", "orig_id": 1439274}}, {"model": "metainfo.source", "pk": 2877, "fields": {"orig_filename": "Sedlak_Johann-Nepomuk_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 89f.", "author": "", "orig_id": 1439318}}, {"model": "metainfo.source", "pk": 2878, "fields": {"orig_filename": "Sedlak_Johann_1820_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 89", "author": "", "orig_id": 1439317}}, {"model": "metainfo.source", "pk": 2879, "fields": {"orig_filename": "Sedlak_Karl_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90", "author": "", "orig_id": 1439319}}, {"model": "metainfo.source", "pk": 2880, "fields": {"orig_filename": "Sedlak_Rudolf_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90", "author": "", "orig_id": 1439320}}, {"model": "metainfo.source", "pk": 2881, "fields": {"orig_filename": "Sedlak_Wenzel_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90f.", "author": "", "orig_id": 1439321}}, {"model": "metainfo.source", "pk": 2882, "fields": {"orig_filename": "Sedlitzky_Wenzel-Adalbert_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 91f.", "author": "", "orig_id": 1439323}}, {"model": "metainfo.source", "pk": 2883, "fields": {"orig_filename": "Sedlmayer_Heinrich-Stephan_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92", "author": "", "orig_id": 1439324}}, {"model": "metainfo.source", "pk": 2884, "fields": {"orig_filename": "Sedlmayer_Wilhelm_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92", "author": "", "orig_id": 1439325}}, {"model": "metainfo.source", "pk": 2885, "fields": {"orig_filename": "Sedlmayr_Ernst-Conrad_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92f.", "author": "", "orig_id": 1439326}}, {"model": "metainfo.source", "pk": 2886, "fields": {"orig_filename": "Sedlnitzky-Choltitz_Josef_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 93f.", "author": "", "orig_id": 1439327}}, {"model": "metainfo.source", "pk": 2887, "fields": {"orig_filename": "Sedlnitzky-Odrowas-Choltic_Stanislaus_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 94", "author": "", "orig_id": 1439328}}, {"model": "metainfo.source", "pk": 2888, "fields": {"orig_filename": "Sedlnitzky-Odrowaz-Choltitz_Leopold_1787_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 94f.", "author": "", "orig_id": 1439329}}, {"model": "metainfo.source", "pk": 2889, "fields": {"orig_filename": "Seeauer_Wilhelm-Desiderius_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 95", "author": "", "orig_id": 1439330}}, {"model": "metainfo.source", "pk": 2890, "fields": {"orig_filename": "Seebacher_Johann_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 95f.", "author": "", "orig_id": 1439332}}, {"model": "metainfo.source", "pk": 2891, "fields": {"orig_filename": "Seeber_Joseph_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 96", "author": "", "orig_id": 1439333}}, {"model": "metainfo.source", "pk": 2892, "fields": {"orig_filename": "Seeboeck_Philibert_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 96f.", "author": "", "orig_id": 1439334}}, {"model": "metainfo.source", "pk": 2893, "fields": {"orig_filename": "Seefelder_Richard_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 98", "author": "", "orig_id": 1439336}}, {"model": "metainfo.source", "pk": 2894, "fields": {"orig_filename": "Seefeldner_Oskar_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 98f.", "author": "", "orig_id": 1439337}}, {"model": "metainfo.source", "pk": 2895, "fields": {"orig_filename": "Seegen_Joseph_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 99", "author": "", "orig_id": 1439338}}, {"model": "metainfo.source", "pk": 2896, "fields": {"orig_filename": "Seeger_Ludwig-Eduard_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 100", "author": "", "orig_id": 1439340}}, {"model": "metainfo.source", "pk": 2897, "fields": {"orig_filename": "Seeger_Ludwig_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 99f.", "author": "", "orig_id": 1439339}}, {"model": "metainfo.source", "pk": 2898, "fields": {"orig_filename": "Seeger_Rudolf_1888_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 100f.", "author": "", "orig_id": 1439341}}, {"model": "metainfo.source", "pk": 2899, "fields": {"orig_filename": "Seeger_Theodor_1858_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101", "author": "", "orig_id": 1439391}}, {"model": "metainfo.source", "pk": 2900, "fields": {"orig_filename": "Seehofer_Therese_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101", "author": "", "orig_id": 1439393}}, {"model": "metainfo.source", "pk": 2901, "fields": {"orig_filename": "Seeland_Ferdinand-Maximilian_1821_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101f.", "author": "", "orig_id": 1439394}}, {"model": "metainfo.source", "pk": 2902, "fields": {"orig_filename": "Seeliger_Karl_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 102", "author": "", "orig_id": 1439396}}, {"model": "metainfo.source", "pk": 2903, "fields": {"orig_filename": "Seelos_Franz_1873_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 102f.", "author": "", "orig_id": 1439397}}, {"model": "metainfo.source", "pk": 2904, "fields": {"orig_filename": "Seelos_Franz_1905_1962.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103", "author": "", "orig_id": 1439400}}, {"model": "metainfo.source", "pk": 2905, "fields": {"orig_filename": "Seelos_Gottfried_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103", "author": "", "orig_id": 1439401}}, {"model": "metainfo.source", "pk": 2906, "fields": {"orig_filename": "Seelos_Gustav_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103f.", "author": "", "orig_id": 1439402}}, {"model": "metainfo.source", "pk": 2907, "fields": {"orig_filename": "Seelos_Ignaz_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 104", "author": "", "orig_id": 1439403}}, {"model": "metainfo.source", "pk": 2908, "fields": {"orig_filename": "Seemann-Treuenwart_Albin_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106", "author": "", "orig_id": 1439407}}, {"model": "metainfo.source", "pk": 2909, "fields": {"orig_filename": "Seemann-Treuenwart_Johanna_1849_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106f.", "author": "", "orig_id": 1439409}}, {"model": "metainfo.source", "pk": 2910, "fields": {"orig_filename": "Seemann-Treuenwart_Karl-Ottokar_1837_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106", "author": "", "orig_id": 1439408}}, {"model": "metainfo.source", "pk": 2911, "fields": {"orig_filename": "Seemann_Friedrich_1884_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 104f.", "author": "", "orig_id": 1439404}}, {"model": "metainfo.source", "pk": 2912, "fields": {"orig_filename": "Seemann_Herbert_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 105", "author": "", "orig_id": 1439405}}, {"model": "metainfo.source", "pk": 2913, "fields": {"orig_filename": "Seemann_Margarete_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 105f.", "author": "", "orig_id": 1439406}}, {"model": "metainfo.source", "pk": 2914, "fields": {"orig_filename": "Seemueller_Joseph_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 107", "author": "", "orig_id": 1439411}}, {"model": "metainfo.source", "pk": 2915, "fields": {"orig_filename": "Seethaler_Johann-Andreas_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 107f.", "author": "", "orig_id": 1439412}}, {"model": "metainfo.source", "pk": 2916, "fields": {"orig_filename": "Segantini_Giovanni_1858_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 108f.", "author": "", "orig_id": 1439413}}, {"model": "metainfo.source", "pk": 2917, "fields": {"orig_filename": "Segato_Girolamo_1792_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 109f.", "author": "", "orig_id": 1439414}}, {"model": "metainfo.source", "pk": 2918, "fields": {"orig_filename": "Segel_Benjamin_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 110f.", "author": "", "orig_id": 1439468}}, {"model": "metainfo.source", "pk": 2919, "fields": {"orig_filename": "Segel_Isaak_1879_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 110", "author": "", "orig_id": 1439469}}, {"model": "metainfo.source", "pk": 2920, "fields": {"orig_filename": "Segenschmid_Franz-Xaver_1839_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 111f.", "author": "", "orig_id": 1439471}}, {"model": "metainfo.source", "pk": 2921, "fields": {"orig_filename": "Segen_David_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 111", "author": "", "orig_id": 1439470}}, {"model": "metainfo.source", "pk": 2922, "fields": {"orig_filename": "Segur-Cabanac_August-Franz-Marzellus_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112", "author": "", "orig_id": 1439474}}, {"model": "metainfo.source", "pk": 2923, "fields": {"orig_filename": "Segur-Cabanac_August_1881_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112", "author": "", "orig_id": 1439473}}, {"model": "metainfo.source", "pk": 2924, "fields": {"orig_filename": "Segur-Cabanac_Viktor-Julius-Ignaz-August_1869_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112f.", "author": "", "orig_id": 1439475}}, {"model": "metainfo.source", "pk": 2925, "fields": {"orig_filename": "Segusini_Giuseppe_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 113f.", "author": "", "orig_id": 1439476}}, {"model": "metainfo.source", "pk": 2926, "fields": {"orig_filename": "Schwarz_Franz_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 433f.", "author": "", "orig_id": 1420373}}, {"model": "metainfo.source", "pk": 2927, "fields": {"orig_filename": "Schwarz_Friederike_1910_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 434f.", "author": "", "orig_id": 1420376}}, {"model": "metainfo.source", "pk": 2928, "fields": {"orig_filename": "Schwarz_Gavro_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435", "author": "", "orig_id": 1420377}}, {"model": "metainfo.source", "pk": 2929, "fields": {"orig_filename": "Schwarz_Gottfried_1877_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435", "author": "", "orig_id": 1420378}}, {"model": "metainfo.source", "pk": 2930, "fields": {"orig_filename": "Schwarz_Gyula_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435f.", "author": "", "orig_id": 1420379}}, {"model": "metainfo.source", "pk": 2931, "fields": {"orig_filename": "Schwarz_Heinrich_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 436f.", "author": "", "orig_id": 1420380}}, {"model": "metainfo.source", "pk": 2932, "fields": {"orig_filename": "Schwarz_Heinrich_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 437f.", "author": "", "orig_id": 1420381}}, {"model": "metainfo.source", "pk": 2933, "fields": {"orig_filename": "Schwarz_Ignaz_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 438", "author": "", "orig_id": 1420437}}, {"model": "metainfo.source", "pk": 2934, "fields": {"orig_filename": "Schwarz_Jakub_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 438f.", "author": "", "orig_id": 1420438}}, {"model": "metainfo.source", "pk": 2935, "fields": {"orig_filename": "Schwarz_Johann-Michael_1774_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439f.", "author": "", "orig_id": 1420440}}, {"model": "metainfo.source", "pk": 2936, "fields": {"orig_filename": "Schwarz_Josef_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 440", "author": "", "orig_id": 1420441}}, {"model": "metainfo.source", "pk": 2937, "fields": {"orig_filename": "Schwarz_Josef_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 440f.", "author": "", "orig_id": 1420442}}, {"model": "metainfo.source", "pk": 2938, "fields": {"orig_filename": "Schwarz_Julie_1798_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 444f.", "author": "", "orig_id": 1420449}}, {"model": "metainfo.source", "pk": 2939, "fields": {"orig_filename": "Schwarz_Julius-Anton_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 441", "author": "", "orig_id": 1420443}}, {"model": "metainfo.source", "pk": 2940, "fields": {"orig_filename": "Schwarz_Karel-Martin_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 441f.", "author": "", "orig_id": 1420444}}, {"model": "metainfo.source", "pk": 2941, "fields": {"orig_filename": "Schwarz_Karl-Wilhelm-Emanuel_1768_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 444f.", "author": "", "orig_id": 1420448}}, {"model": "metainfo.source", "pk": 2942, "fields": {"orig_filename": "Schwarz_Karl_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 442f.", "author": "", "orig_id": 1420445}}, {"model": "metainfo.source", "pk": 2943, "fields": {"orig_filename": "Schwarz_Karl_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 443", "author": "", "orig_id": 1420446}}, {"model": "metainfo.source", "pk": 2944, "fields": {"orig_filename": "Schwarz_Karl_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 443f.", "author": "", "orig_id": 1420447}}, {"model": "metainfo.source", "pk": 2945, "fields": {"orig_filename": "Schwarz_Kaspar_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445f.", "author": "", "orig_id": 1420451}}, {"model": "metainfo.source", "pk": 2946, "fields": {"orig_filename": "Schwarz_Lambert_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 446", "author": "", "orig_id": 1420452}}, {"model": "metainfo.source", "pk": 2947, "fields": {"orig_filename": "Schwarz_Leopold_1812_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 446f.", "author": "", "orig_id": 1420453}}, {"model": "metainfo.source", "pk": 2948, "fields": {"orig_filename": "Schwarz_Leopold_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 447", "author": "", "orig_id": 1420454}}, {"model": "metainfo.source", "pk": 2949, "fields": {"orig_filename": "Schwarz_Ljudevit_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6f.", "author": "", "orig_id": 1439460}}, {"model": "metainfo.source", "pk": 2950, "fields": {"orig_filename": "Schwarz_Ludwig-Franz_1833_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 447f.", "author": "", "orig_id": 1420455}}, {"model": "metainfo.source", "pk": 2951, "fields": {"orig_filename": "Schwarz_Marie_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 1", "author": "", "orig_id": 1439382}}, {"model": "metainfo.source", "pk": 2952, "fields": {"orig_filename": "Schwarz_Oswald_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 1f.", "author": "", "orig_id": 1439383}}, {"model": "metainfo.source", "pk": 2953, "fields": {"orig_filename": "Schwarz_Otto_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 2", "author": "", "orig_id": 1439384}}, {"model": "metainfo.source", "pk": 2954, "fields": {"orig_filename": "Schwarz_Paul_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 2f.", "author": "", "orig_id": 1439387}}, {"model": "metainfo.source", "pk": 2955, "fields": {"orig_filename": "Schwarz_Philipp_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3", "author": "", "orig_id": 1439389}}, {"model": "metainfo.source", "pk": 2956, "fields": {"orig_filename": "Schwarz_Rudolf_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3", "author": "", "orig_id": 1439390}}, {"model": "metainfo.source", "pk": 2957, "fields": {"orig_filename": "Schwarz_Rudolf_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3f.", "author": "", "orig_id": 1439445}}, {"model": "metainfo.source", "pk": 2958, "fields": {"orig_filename": "Schwarz_Sebastian_1809_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4", "author": "", "orig_id": 1439446}}, {"model": "metainfo.source", "pk": 2959, "fields": {"orig_filename": "Schwarz_Sigismund_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4f.", "author": "", "orig_id": 1439449}}, {"model": "metainfo.source", "pk": 2960, "fields": {"orig_filename": "Schwarz_Stefan_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 5f.", "author": "", "orig_id": 1439454}}, {"model": "metainfo.source", "pk": 2961, "fields": {"orig_filename": "Schwarz_Thiemo_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6", "author": "", "orig_id": 1439455}}, {"model": "metainfo.source", "pk": 2962, "fields": {"orig_filename": "Schwarz_Vilim_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6f.", "author": "", "orig_id": 1439456}}, {"model": "metainfo.source", "pk": 2963, "fields": {"orig_filename": "Schwarz_Vinzenz_1902_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 7", "author": "", "orig_id": 1439458}}, {"model": "metainfo.source", "pk": 2964, "fields": {"orig_filename": "Schwarz_Wenzel_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 7f.", "author": "", "orig_id": 1439459}}, {"model": "metainfo.source", "pk": 2965, "fields": {"orig_filename": "Schwarz_Wenzel_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 8", "author": "", "orig_id": 1439463}}, {"model": "metainfo.source", "pk": 2966, "fields": {"orig_filename": "Schwathe_Hans_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 35f.", "author": "", "orig_id": 1439666}}, {"model": "metainfo.source", "pk": 2967, "fields": {"orig_filename": "Schwayer_Adolf_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 36", "author": "", "orig_id": 1439667}}, {"model": "metainfo.source", "pk": 2968, "fields": {"orig_filename": "Schwechler_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 36f.", "author": "", "orig_id": 1439668}}, {"model": "metainfo.source", "pk": 2969, "fields": {"orig_filename": "Schwediauer_Franz-Xaver_1748_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 37", "author": "", "orig_id": 1439669}}, {"model": "metainfo.source", "pk": 2970, "fields": {"orig_filename": "Schwegel_Joseph_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 37f.", "author": "", "orig_id": 1439670}}, {"model": "metainfo.source", "pk": 2971, "fields": {"orig_filename": "Schweickhardt_Franz-Xaver-Joseph_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 38f.", "author": "", "orig_id": 1439711}}, {"model": "metainfo.source", "pk": 2972, "fields": {"orig_filename": "Schweidel_Jozsef_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 39", "author": "", "orig_id": 1439712}}, {"model": "metainfo.source", "pk": 2973, "fields": {"orig_filename": "Schweidler_Egon_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 39f.", "author": "", "orig_id": 1439713}}, {"model": "metainfo.source", "pk": 2974, "fields": {"orig_filename": "Schweiger_Alois_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 40", "author": "", "orig_id": 1439714}}, {"model": "metainfo.source", "pk": 2975, "fields": {"orig_filename": "Schweiggl_Josef_1761_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 41", "author": "", "orig_id": 1439717}}, {"model": "metainfo.source", "pk": 2976, "fields": {"orig_filename": "Schweighofer_Carl_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439723}}, {"model": "metainfo.source", "pk": 2977, "fields": {"orig_filename": "Schweighofer_Felix_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 41f.", "author": "", "orig_id": 1439718}}, {"model": "metainfo.source", "pk": 2978, "fields": {"orig_filename": "Schweighofer_Franz-Johann_1797_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 42f.", "author": "", "orig_id": 1439720}}, {"model": "metainfo.source", "pk": 2979, "fields": {"orig_filename": "Schweighofer_Gustav_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 42", "author": "", "orig_id": 1439719}}, {"model": "metainfo.source", "pk": 2980, "fields": {"orig_filename": "Schweighofer_Johann-Michael_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439721}}, {"model": "metainfo.source", "pk": 2981, "fields": {"orig_filename": "Schweighofer_Johann-Michael_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439722}}, {"model": "metainfo.source", "pk": 2982, "fields": {"orig_filename": "Schweighofer_Johann_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439724}}, {"model": "metainfo.source", "pk": 2983, "fields": {"orig_filename": "Schweighofer_Josef_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43f.", "author": "", "orig_id": 1439725}}, {"model": "metainfo.source", "pk": 2984, "fields": {"orig_filename": "Schweikart_Karl-Gottlieb_1772_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44", "author": "", "orig_id": 1439726}}, {"model": "metainfo.source", "pk": 2985, "fields": {"orig_filename": "Schweitzer_Eduard_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44", "author": "", "orig_id": 1439727}}, {"model": "metainfo.source", "pk": 2986, "fields": {"orig_filename": "Schweitzer_Josef_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45", "author": "", "orig_id": 1439731}}, {"model": "metainfo.source", "pk": 2987, "fields": {"orig_filename": "Schweizer_Albert_1884_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45f.", "author": "", "orig_id": 1439735}}, {"model": "metainfo.source", "pk": 2988, "fields": {"orig_filename": "Schweizer_Carl_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45f.", "author": "", "orig_id": 1439733}}, {"model": "metainfo.source", "pk": 2989, "fields": {"orig_filename": "Schwemminger_Heinrich_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46", "author": "", "orig_id": 1439785}}, {"model": "metainfo.source", "pk": 2990, "fields": {"orig_filename": "Schwemminger_Joseph_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46", "author": "", "orig_id": 1439787}}, {"model": "metainfo.source", "pk": 2991, "fields": {"orig_filename": "Schwendenwein-Lanauberg_August_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46f.", "author": "", "orig_id": 1439789}}, {"model": "metainfo.source", "pk": 2992, "fields": {"orig_filename": "Schwender_Carl_1839_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439793}}, {"model": "metainfo.source", "pk": 2993, "fields": {"orig_filename": "Schwender_Karl-Ludwig_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 47f.", "author": "", "orig_id": 1439790}}, {"model": "metainfo.source", "pk": 2994, "fields": {"orig_filename": "Schweninger_Carl_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439798}}, {"model": "metainfo.source", "pk": 2995, "fields": {"orig_filename": "Schweninger_Carl_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439796}}, {"model": "metainfo.source", "pk": 2996, "fields": {"orig_filename": "Schweninger_Rosa_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439797}}, {"model": "metainfo.source", "pk": 2997, "fields": {"orig_filename": "Schwenninger_Florian_1809_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48f.", "author": "", "orig_id": 1439800}}, {"model": "metainfo.source", "pk": 2998, "fields": {"orig_filename": "Schwerdfeger_Engelbert_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 50", "author": "", "orig_id": 1439805}}, {"model": "metainfo.source", "pk": 2999, "fields": {"orig_filename": "Schwerdfeger_Josef-Adolf_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 50f.", "author": "", "orig_id": 1439807}}, {"model": "metainfo.source", "pk": 3000, "fields": {"orig_filename": "Schwerdling_Johann-Nepomuk_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 51", "author": "", "orig_id": 1439808}}, {"model": "metainfo.source", "pk": 3001, "fields": {"orig_filename": "Schwerdtner_Carl-Maria_1874_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 51f.", "author": "", "orig_id": 1439809}}, {"model": "metainfo.source", "pk": 3002, "fields": {"orig_filename": "Schwerdtner_Hugo_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 52", "author": "", "orig_id": 1439810}}, {"model": "metainfo.source", "pk": 3003, "fields": {"orig_filename": "Schwerdtner_Johann_1834_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 52f.", "author": "", "orig_id": 1439857}}, {"model": "metainfo.source", "pk": 3004, "fields": {"orig_filename": "Schwert_Leopold_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53", "author": "", "orig_id": 1439859}}, {"model": "metainfo.source", "pk": 3005, "fields": {"orig_filename": "Schwerzek_Carl_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53", "author": "", "orig_id": 1439861}}, {"model": "metainfo.source", "pk": 3006, "fields": {"orig_filename": "Schwerzenbach_Carl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53f.", "author": "", "orig_id": 1439862}}, {"model": "metainfo.source", "pk": 3007, "fields": {"orig_filename": "Schwer_Hans-Arnold_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 49", "author": "", "orig_id": 1439802}}, {"model": "metainfo.source", "pk": 3008, "fields": {"orig_filename": "Schwer_Josef-Alexander_1846_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 49f.", "author": "", "orig_id": 1439803}}, {"model": "metainfo.source", "pk": 3009, "fields": {"orig_filename": "Schwetz_Johann-Baptist_1803_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 54f.", "author": "", "orig_id": 1439865}}, {"model": "metainfo.source", "pk": 3010, "fields": {"orig_filename": "Schwickert_Friedrich_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 56", "author": "", "orig_id": 1439870}}, {"model": "metainfo.source", "pk": 3011, "fields": {"orig_filename": "Schwicker_Johann-Heinrich_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 55f.", "author": "", "orig_id": 1439867}}, {"model": "metainfo.source", "pk": 3012, "fields": {"orig_filename": "Schwiedland_Eugen-Peter_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 56f.", "author": "", "orig_id": 1439871}}, {"model": "metainfo.source", "pk": 3013, "fields": {"orig_filename": "Schwienbacher_Johann_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 57", "author": "", "orig_id": 1439872}}, {"model": "metainfo.source", "pk": 3014, "fields": {"orig_filename": "Schwimmer_Ernoe-Lajos_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 57f.", "author": "", "orig_id": 1439873}}, {"model": "metainfo.source", "pk": 3015, "fields": {"orig_filename": "Schwindel_Bernhard_1787_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 63", "author": "", "orig_id": 1439928}}, {"model": "metainfo.source", "pk": 3016, "fields": {"orig_filename": "Schwind_August_1800_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 58", "author": "", "orig_id": 1439874}}, {"model": "metainfo.source", "pk": 3017, "fields": {"orig_filename": "Schwind_Ernst_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 58f.", "author": "", "orig_id": 1439875}}, {"model": "metainfo.source", "pk": 3018, "fields": {"orig_filename": "Schwind_Franz-Karl-Augustin_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 59f.", "author": "", "orig_id": 1439877}}, {"model": "metainfo.source", "pk": 3019, "fields": {"orig_filename": "Schwind_Gertrud_1878_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62", "author": "", "orig_id": 1439927}}, {"model": "metainfo.source", "pk": 3020, "fields": {"orig_filename": "Schwind_Johann-Franz_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 60", "author": "", "orig_id": 1439878}}, {"model": "metainfo.source", "pk": 3021, "fields": {"orig_filename": "Schwind_Moritz_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 60ff.", "author": "", "orig_id": 1439880}}, {"model": "metainfo.source", "pk": 3022, "fields": {"orig_filename": "Schwind_Wilhelm-August-Moritz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62", "author": "", "orig_id": 1439923}}, {"model": "metainfo.source", "pk": 3023, "fields": {"orig_filename": "Schwind_Wolfgang_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62f.", "author": "", "orig_id": 1439925}}, {"model": "metainfo.source", "pk": 3024, "fields": {"orig_filename": "Schwingshackl_Johann_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 64", "author": "", "orig_id": 1440109}}, {"model": "metainfo.source", "pk": 3025, "fields": {"orig_filename": "Schwab_Adolf_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 402", "author": "", "orig_id": 1420143}}, {"model": "metainfo.source", "pk": 3026, "fields": {"orig_filename": "Schwab_Adolph_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 402f.", "author": "", "orig_id": 1420196}}, {"model": "metainfo.source", "pk": 3027, "fields": {"orig_filename": "Schwab_Anton_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 403", "author": "", "orig_id": 1420197}}, {"model": "metainfo.source", "pk": 3028, "fields": {"orig_filename": "Schwab_Arnost_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420204}}, {"model": "metainfo.source", "pk": 3029, "fields": {"orig_filename": "Schwab_Erasmus_1831_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 403f.", "author": "", "orig_id": 1420198}}, {"model": "metainfo.source", "pk": 3030, "fields": {"orig_filename": "Schwab_Franz_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 404", "author": "", "orig_id": 1420199}}, {"model": "metainfo.source", "pk": 3031, "fields": {"orig_filename": "Schwab_Johann_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 404f.", "author": "", "orig_id": 1420200}}, {"model": "metainfo.source", "pk": 3032, "fields": {"orig_filename": "Schwab_Josef_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 405f.", "author": "", "orig_id": 1420201}}, {"model": "metainfo.source", "pk": 3033, "fields": {"orig_filename": "Schwab_Loew_1794_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420202}}, {"model": "metainfo.source", "pk": 3034, "fields": {"orig_filename": "Schwab_Vaclav_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420203}}, {"model": "metainfo.source", "pk": 3035, "fields": {"orig_filename": "Schwach_Caroline_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410", "author": "", "orig_id": 1420213}}, {"model": "metainfo.source", "pk": 3036, "fields": {"orig_filename": "Schwach_Heinrich-August_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410", "author": "", "orig_id": 1420214}}, {"model": "metainfo.source", "pk": 3037, "fields": {"orig_filename": "Schwackhoefer_Franz_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410f.", "author": "", "orig_id": 1420215}}, {"model": "metainfo.source", "pk": 3038, "fields": {"orig_filename": "Schwaerzler_Franz-Xav_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 411f.", "author": "", "orig_id": 1420216}}, {"model": "metainfo.source", "pk": 3039, "fields": {"orig_filename": "Schwager_Benedikt_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 412", "author": "", "orig_id": 1420217}}, {"model": "metainfo.source", "pk": 3040, "fields": {"orig_filename": "Schwager_Ernst-Otto_1882_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 412f.", "author": "", "orig_id": 1420218}}, {"model": "metainfo.source", "pk": 3041, "fields": {"orig_filename": "Schwager_Richard_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 413", "author": "", "orig_id": 1420219}}, {"model": "metainfo.source", "pk": 3042, "fields": {"orig_filename": "Schwagula_Ignaz_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 413f.", "author": "", "orig_id": 1420279}}, {"model": "metainfo.source", "pk": 3043, "fields": {"orig_filename": "Schwaiger_Franz_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 414", "author": "", "orig_id": 1420280}}, {"model": "metainfo.source", "pk": 3044, "fields": {"orig_filename": "Schwaiger_Hanus_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 414f.", "author": "", "orig_id": 1420281}}, {"model": "metainfo.source", "pk": 3045, "fields": {"orig_filename": "Schwaiger_Michael-Joseph_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 415", "author": "", "orig_id": 1420282}}, {"model": "metainfo.source", "pk": 3046, "fields": {"orig_filename": "Schwaighofer_Franz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 415f.", "author": "", "orig_id": 1420283}}, {"model": "metainfo.source", "pk": 3047, "fields": {"orig_filename": "Schwaighofer_Johann-Bapt_1818_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416", "author": "", "orig_id": 1420285}}, {"model": "metainfo.source", "pk": 3048, "fields": {"orig_filename": "Schwaighofer_Roman_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416", "author": "", "orig_id": 1420284}}, {"model": "metainfo.source", "pk": 3049, "fields": {"orig_filename": "Schwalm_Georg_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416f.", "author": "", "orig_id": 1420286}}, {"model": "metainfo.source", "pk": 3050, "fields": {"orig_filename": "Schwanda_Mathias_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 417", "author": "", "orig_id": 1420287}}, {"model": "metainfo.source", "pk": 3051, "fields": {"orig_filename": "Schwanenberg_Josef-Franz-Ignaz_1762_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 417f.", "author": "", "orig_id": 1420288}}, {"model": "metainfo.source", "pk": 3052, "fields": {"orig_filename": "Schwanenfeld_Sebastian_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 418", "author": "", "orig_id": 1420289}}, {"model": "metainfo.source", "pk": 3053, "fields": {"orig_filename": "Schwara_Johann_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 418f.", "author": "", "orig_id": 1420290}}, {"model": "metainfo.source", "pk": 3054, "fields": {"orig_filename": "Schwartner_Martin_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 419f.", "author": "", "orig_id": 1420291}}, {"model": "metainfo.source", "pk": 3055, "fields": {"orig_filename": "Schwarz-Hiller-Jiskor_Rudolf_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 8f.", "author": "", "orig_id": 1439465}}, {"model": "metainfo.source", "pk": 3056, "fields": {"orig_filename": "Schwarz-Karsten_Theodor_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 9", "author": "", "orig_id": 1439466}}, {"model": "metainfo.source", "pk": 3057, "fields": {"orig_filename": "Schwarz-Mohrenstern_Gustav-Franziskus-Maria_1809_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 9f.", "author": "", "orig_id": 1439525}}, {"model": "metainfo.source", "pk": 3058, "fields": {"orig_filename": "Schwarz-Mohrenstern_Johann-Jakob_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 10", "author": "", "orig_id": 1439527}}, {"model": "metainfo.source", "pk": 3059, "fields": {"orig_filename": "Schwarz-Senborn_Wilhelm_1816_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 10f.", "author": "", "orig_id": 1439532}}, {"model": "metainfo.source", "pk": 3060, "fields": {"orig_filename": "Schwarz-Waldegg_Fritz_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 11", "author": "", "orig_id": 1439533}}, {"model": "metainfo.source", "pk": 3061, "fields": {"orig_filename": "Schwarzbach_Josef_1853_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 11f.", "author": "", "orig_id": 1439537}}, {"model": "metainfo.source", "pk": 3062, "fields": {"orig_filename": "Schwarzenau_Erwin_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 12", "author": "", "orig_id": 1439538}}, {"model": "metainfo.source", "pk": 3063, "fields": {"orig_filename": "Schwarzenberger_Rupert_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 26f.", "author": "", "orig_id": 1439603}}, {"model": "metainfo.source", "pk": 3064, "fields": {"orig_filename": "Schwarzenberg_Adolf-Josef_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 12f.", "author": "", "orig_id": 1439539}}, {"model": "metainfo.source", "pk": 3065, "fields": {"orig_filename": "Schwarzenberg_Adolph_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13", "author": "", "orig_id": 1439585}}, {"model": "metainfo.source", "pk": 3066, "fields": {"orig_filename": "Schwarzenberg_Edmund_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13f.", "author": "", "orig_id": 1439587}}, {"model": "metainfo.source", "pk": 3067, "fields": {"orig_filename": "Schwarzenberg_Ernst_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 14f.", "author": "", "orig_id": 1439588}}, {"model": "metainfo.source", "pk": 3068, "fields": {"orig_filename": "Schwarzenberg_Felix_1800_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 15ff.", "author": "", "orig_id": 1439589}}, {"model": "metainfo.source", "pk": 3069, "fields": {"orig_filename": "Schwarzenberg_Felix_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 17", "author": "", "orig_id": 1439590}}, {"model": "metainfo.source", "pk": 3070, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1799_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 18f.", "author": "", "orig_id": 1439591}}, {"model": "metainfo.source", "pk": 3071, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 19f.", "author": "", "orig_id": 1439592}}, {"model": "metainfo.source", "pk": 3072, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 20f.", "author": "", "orig_id": 1439593}}, {"model": "metainfo.source", "pk": 3073, "fields": {"orig_filename": "Schwarzenberg_Johann-Adolf-Ii_1799_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 21f.", "author": "", "orig_id": 1439594}}, {"model": "metainfo.source", "pk": 3074, "fields": {"orig_filename": "Schwarzenberg_Josef-Ii_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 22", "author": "", "orig_id": 1439595}}, {"model": "metainfo.source", "pk": 3075, "fields": {"orig_filename": "Schwarzenberg_Karl-I-Philipp_1771_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 22f.", "author": "", "orig_id": 1439596}}, {"model": "metainfo.source", "pk": 3076, "fields": {"orig_filename": "Schwarzenberg_Karl-Iii_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 24", "author": "", "orig_id": 1439598}}, {"model": "metainfo.source", "pk": 3077, "fields": {"orig_filename": "Schwarzenberg_Karl-Ii_1802_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 23f.", "author": "", "orig_id": 1439597}}, {"model": "metainfo.source", "pk": 3078, "fields": {"orig_filename": "Schwarzenberg_Karl-Iv_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 24f.", "author": "", "orig_id": 1439599}}, {"model": "metainfo.source", "pk": 3079, "fields": {"orig_filename": "Schwarzenberg_Maria-Anna_1768_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 25", "author": "", "orig_id": 1439600}}, {"model": "metainfo.source", "pk": 3080, "fields": {"orig_filename": "Schwarzenberg_Maria-Karoline_1775_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 25f.", "author": "", "orig_id": 1439601}}, {"model": "metainfo.source", "pk": 3081, "fields": {"orig_filename": "Schwarzenbrunner_Bonifaz_1790_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 27", "author": "", "orig_id": 1439604}}, {"model": "metainfo.source", "pk": 3082, "fields": {"orig_filename": "Schwarzer-Babarcz_Ferenc_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29", "author": "", "orig_id": 1439652}}, {"model": "metainfo.source", "pk": 3083, "fields": {"orig_filename": "Schwarzer-Babarcz_Otto_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29f.", "author": "", "orig_id": 1439653}}, {"model": "metainfo.source", "pk": 3084, "fields": {"orig_filename": "Schwarzer-Heldenstamm_Ernst_1808_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 30f.", "author": "", "orig_id": 1439654}}, {"model": "metainfo.source", "pk": 3085, "fields": {"orig_filename": "Schwarzer-Heldenstamm_Guido_1834_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31", "author": "", "orig_id": 1439656}}, {"model": "metainfo.source", "pk": 3086, "fields": {"orig_filename": "Schwarzer_Alois_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 28", "author": "", "orig_id": 1439606}}, {"model": "metainfo.source", "pk": 3087, "fields": {"orig_filename": "Schwarzer_Franz_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 28", "author": "", "orig_id": 1439649}}, {"model": "metainfo.source", "pk": 3088, "fields": {"orig_filename": "Schwarzer_Johann_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29", "author": "", "orig_id": 1439651}}, {"model": "metainfo.source", "pk": 3089, "fields": {"orig_filename": "Schwarzgruber_Rudolf_1900_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31", "author": "", "orig_id": 1439657}}, {"model": "metainfo.source", "pk": 3090, "fields": {"orig_filename": "Schwarzinger_Johann_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31f.", "author": "", "orig_id": 1439658}}, {"model": "metainfo.source", "pk": 3091, "fields": {"orig_filename": "Schwarzinger_Josef_1848_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 32", "author": "", "orig_id": 1439659}}, {"model": "metainfo.source", "pk": 3092, "fields": {"orig_filename": "Schwarzkopf_Gustav_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 32f.", "author": "", "orig_id": 1439660}}, {"model": "metainfo.source", "pk": 3093, "fields": {"orig_filename": "Schwarzmann_David_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 33", "author": "", "orig_id": 1439661}}, {"model": "metainfo.source", "pk": 3094, "fields": {"orig_filename": "Schwarzmann_Joseph-Anton_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 33f.", "author": "", "orig_id": 1439662}}, {"model": "metainfo.source", "pk": 3095, "fields": {"orig_filename": "Schwarzwald_Eugenie_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 34f.", "author": "", "orig_id": 1439663}}, {"model": "metainfo.source", "pk": 3096, "fields": {"orig_filename": "Schwarzwald_Hermann_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 35", "author": "", "orig_id": 1439664}}, {"model": "metainfo.source", "pk": 3097, "fields": {"orig_filename": "Schwarz_Adam_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 420", "author": "", "orig_id": 1420292}}, {"model": "metainfo.source", "pk": 3098, "fields": {"orig_filename": "Schwarz_Adolf_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 420f.", "author": "", "orig_id": 1420293}}, {"model": "metainfo.source", "pk": 3099, "fields": {"orig_filename": "Schwarz_Adolf_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 421", "author": "", "orig_id": 1420294}}, {"model": "metainfo.source", "pk": 3100, "fields": {"orig_filename": "Schwarz_Adolf_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 421f.", "author": "", "orig_id": 1420295}}, {"model": "metainfo.source", "pk": 3101, "fields": {"orig_filename": "Schwarz_Adolf_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 422", "author": "", "orig_id": 1420296}}, {"model": "metainfo.source", "pk": 3102, "fields": {"orig_filename": "Schwarz_Alois_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 422f.", "author": "", "orig_id": 1420297}}, {"model": "metainfo.source", "pk": 3103, "fields": {"orig_filename": "Schwarz_Anton_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 423f.", "author": "", "orig_id": 1420298}}, {"model": "metainfo.source", "pk": 3104, "fields": {"orig_filename": "Schwarz_Anton_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424", "author": "", "orig_id": 1420299}}, {"model": "metainfo.source", "pk": 3105, "fields": {"orig_filename": "Schwarz_Anton_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424", "author": "", "orig_id": 1420300}}, {"model": "metainfo.source", "pk": 3106, "fields": {"orig_filename": "Schwarz_Anton_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424f.", "author": "", "orig_id": 1420301}}, {"model": "metainfo.source", "pk": 3107, "fields": {"orig_filename": "Schwarz_Antun_1832_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426", "author": "", "orig_id": 1420302}}, {"model": "metainfo.source", "pk": 3108, "fields": {"orig_filename": "Schwarz_Arthur-Zacharias_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426", "author": "", "orig_id": 1420303}}, {"model": "metainfo.source", "pk": 3109, "fields": {"orig_filename": "Schwarz_Arthur_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 431", "author": "", "orig_id": 1420369}}, {"model": "metainfo.source", "pk": 3110, "fields": {"orig_filename": "Schwarz_Bertha_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426f.", "author": "", "orig_id": 1420359}}, {"model": "metainfo.source", "pk": 3111, "fields": {"orig_filename": "Schwarz_Caspar-Friedrich_1881_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428", "author": "", "orig_id": 1420361}}, {"model": "metainfo.source", "pk": 3112, "fields": {"orig_filename": "Schwarz_Caspar_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 427f.", "author": "", "orig_id": 1420360}}, {"model": "metainfo.source", "pk": 3113, "fields": {"orig_filename": "Schwarz_Cornel_1774_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428", "author": "", "orig_id": 1420362}}, {"model": "metainfo.source", "pk": 3114, "fields": {"orig_filename": "Schwarz_Cornel_1813_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428f.", "author": "", "orig_id": 1420364}}, {"model": "metainfo.source", "pk": 3115, "fields": {"orig_filename": "Schwarz_David_1850_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 429f.", "author": "", "orig_id": 1420365}}, {"model": "metainfo.source", "pk": 3116, "fields": {"orig_filename": "Schwarz_Eduard_1831_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 430", "author": "", "orig_id": 1420366}}, {"model": "metainfo.source", "pk": 3117, "fields": {"orig_filename": "Schwarz_Eduard_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 430f.", "author": "", "orig_id": 1420367}}, {"model": "metainfo.source", "pk": 3118, "fields": {"orig_filename": "Schwarz_Emil_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 431", "author": "", "orig_id": 1420368}}, {"model": "metainfo.source", "pk": 3119, "fields": {"orig_filename": "Schwarz_Ernst-Matthias_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 432", "author": "", "orig_id": 1420370}}, {"model": "metainfo.source", "pk": 3120, "fields": {"orig_filename": "Schwarz_Ernst_1805_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4f.", "author": "", "orig_id": 1439450}}, {"model": "metainfo.source", "pk": 3121, "fields": {"orig_filename": "Schwarz_Ferdinand_1852_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 432f.", "author": "", "orig_id": 1420371}}, {"model": "metainfo.source", "pk": 3122, "fields": {"orig_filename": "Schwarz_Frantisek_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 433", "author": "", "orig_id": 1420372}}, {"model": "metainfo.source", "pk": 3123, "fields": {"orig_filename": "Schwarz_Franz-Sales_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 434", "author": "", "orig_id": 1420374}}, {"model": "metainfo.source", "pk": 3124, "fields": {"orig_filename": "Schulz_Benedict_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342", "author": "", "orig_id": 1419772}}, {"model": "metainfo.source", "pk": 3125, "fields": {"orig_filename": "Schulz_Bruno_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342ff.", "author": "", "orig_id": 1419817}}, {"model": "metainfo.source", "pk": 3126, "fields": {"orig_filename": "Schulz_Emil-Emanuel-Eugen_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 344", "author": "", "orig_id": 1419818}}, {"model": "metainfo.source", "pk": 3127, "fields": {"orig_filename": "Schulz_Ferdinand_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 344f.", "author": "", "orig_id": 1419819}}, {"model": "metainfo.source", "pk": 3128, "fields": {"orig_filename": "Schulz_Ferenc_1838_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 345f.", "author": "", "orig_id": 1419821}}, {"model": "metainfo.source", "pk": 3129, "fields": {"orig_filename": "Schulz_Hugo_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 346", "author": "", "orig_id": 1419822}}, {"model": "metainfo.source", "pk": 3130, "fields": {"orig_filename": "Schulz_Izydor_1881_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 346f.", "author": "", "orig_id": 1419823}}, {"model": "metainfo.source", "pk": 3131, "fields": {"orig_filename": "Schulz_Josefine_1791_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 348", "author": "", "orig_id": 1419826}}, {"model": "metainfo.source", "pk": 3132, "fields": {"orig_filename": "Schulz_Josef_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 347f.", "author": "", "orig_id": 1419825}}, {"model": "metainfo.source", "pk": 3133, "fields": {"orig_filename": "Schulz_Karel_1899_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 348f.", "author": "", "orig_id": 1419827}}, {"model": "metainfo.source", "pk": 3134, "fields": {"orig_filename": "Schulz_Katharina_1750_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 349", "author": "", "orig_id": 1419828}}, {"model": "metainfo.source", "pk": 3135, "fields": {"orig_filename": "Schulz_Leopold_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 350", "author": "", "orig_id": 1419829}}, {"model": "metainfo.source", "pk": 3136, "fields": {"orig_filename": "Schulz_Otakar-Eugen_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 350f.", "author": "", "orig_id": 1419830}}, {"model": "metainfo.source", "pk": 3137, "fields": {"orig_filename": "Schulz_Paul_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 351", "author": "", "orig_id": 1419831}}, {"model": "metainfo.source", "pk": 3138, "fields": {"orig_filename": "Schulz_Richard_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 351f.", "author": "", "orig_id": 1419832}}, {"model": "metainfo.source", "pk": 3139, "fields": {"orig_filename": "Schulz_Theodor_1815_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352", "author": "", "orig_id": 1419833}}, {"model": "metainfo.source", "pk": 3140, "fields": {"orig_filename": "Schulz_Theodor_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352", "author": "", "orig_id": 1419834}}, {"model": "metainfo.source", "pk": 3141, "fields": {"orig_filename": "Schulz_Wolfgang_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352f.", "author": "", "orig_id": 1419835}}, {"model": "metainfo.source", "pk": 3142, "fields": {"orig_filename": "Schumacher-Marienfrid_Anton_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 363f.", "author": "", "orig_id": 1419955}}, {"model": "metainfo.source", "pk": 3143, "fields": {"orig_filename": "Schumacher-Marienfrid_Eckart_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 364f.", "author": "", "orig_id": 1419956}}, {"model": "metainfo.source", "pk": 3144, "fields": {"orig_filename": "Schumacher-Marienfrid_Siegmund_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 365f.", "author": "", "orig_id": 1419957}}, {"model": "metainfo.source", "pk": 3145, "fields": {"orig_filename": "Schumacher-Taennengau_Albert_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 366", "author": "", "orig_id": 1419958}}, {"model": "metainfo.source", "pk": 3146, "fields": {"orig_filename": "Schumacher_Alois_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 358", "author": "", "orig_id": 1419889}}, {"model": "metainfo.source", "pk": 3147, "fields": {"orig_filename": "Schumacher_Andreas_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 358f.", "author": "", "orig_id": 1419895}}, {"model": "metainfo.source", "pk": 3148, "fields": {"orig_filename": "Schumacher_Casimir-Carl_1766_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 359f.", "author": "", "orig_id": 1419896}}, {"model": "metainfo.source", "pk": 3149, "fields": {"orig_filename": "Schumacher_Franz_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360", "author": "", "orig_id": 1419897}}, {"model": "metainfo.source", "pk": 3150, "fields": {"orig_filename": "Schumacher_Ignaz_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360f.", "author": "", "orig_id": 1419899}}, {"model": "metainfo.source", "pk": 3151, "fields": {"orig_filename": "Schumacher_Johann-Nep_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 361f.", "author": "", "orig_id": 1419900}}, {"model": "metainfo.source", "pk": 3152, "fields": {"orig_filename": "Schumacher_Josef_1894_1971.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360", "author": "", "orig_id": 1419898}}, {"model": "metainfo.source", "pk": 3153, "fields": {"orig_filename": "Schumacher_Oskar_1894_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 362", "author": "", "orig_id": 1419901}}, {"model": "metainfo.source", "pk": 3154, "fields": {"orig_filename": "Schumacher_Philipp_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 362f.", "author": "", "orig_id": 1419954}}, {"model": "metainfo.source", "pk": 3155, "fields": {"orig_filename": "Schumann-Heink_Ernestine_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 368f.", "author": "", "orig_id": 1419961}}, {"model": "metainfo.source", "pk": 3156, "fields": {"orig_filename": "Schumann_Carl_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 366f.", "author": "", "orig_id": 1419959}}, {"model": "metainfo.source", "pk": 3157, "fields": {"orig_filename": "Schumi_Franz_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 369", "author": "", "orig_id": 1419962}}, {"model": "metainfo.source", "pk": 3158, "fields": {"orig_filename": "Schumpeter_Joseph-Alois_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 369ff.", "author": "", "orig_id": 1419963}}, {"model": "metainfo.source", "pk": 3159, "fields": {"orig_filename": "Schunda_Jozsef_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419965}}, {"model": "metainfo.source", "pk": 3160, "fields": {"orig_filename": "Schunda_Karoly_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419966}}, {"model": "metainfo.source", "pk": 3161, "fields": {"orig_filename": "Schunda_Vencel-Jozsef_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419964}}, {"model": "metainfo.source", "pk": 3162, "fields": {"orig_filename": "Schupfer_Francesco_1833_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371f.", "author": "", "orig_id": 1419968}}, {"model": "metainfo.source", "pk": 3163, "fields": {"orig_filename": "Schuppanzigh-Frankenbach_Emanuel_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 374", "author": "", "orig_id": 1419973}}, {"model": "metainfo.source", "pk": 3164, "fields": {"orig_filename": "Schuppanzigh_Ignaz_1776_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 373f.", "author": "", "orig_id": 1419972}}, {"model": "metainfo.source", "pk": 3165, "fields": {"orig_filename": "Schuppli_Paul_1861_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 374f.", "author": "", "orig_id": 1419974}}, {"model": "metainfo.source", "pk": 3166, "fields": {"orig_filename": "Schupp_Ferdinand_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 372f.", "author": "", "orig_id": 1419970}}, {"model": "metainfo.source", "pk": 3167, "fields": {"orig_filename": "Schupp_Helena-Eleonora-Joanna_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 373", "author": "", "orig_id": 1419971}}, {"model": "metainfo.source", "pk": 3168, "fields": {"orig_filename": "Schurda_Ignaz_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 378", "author": "", "orig_id": 1420039}}, {"model": "metainfo.source", "pk": 3169, "fields": {"orig_filename": "Schurz_Anton-Xaver_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 378f.", "author": "", "orig_id": 1420040}}, {"model": "metainfo.source", "pk": 3170, "fields": {"orig_filename": "Schur_Ferdinand-August-Eduard_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 376f.", "author": "", "orig_id": 1419976}}, {"model": "metainfo.source", "pk": 3171, "fields": {"orig_filename": "Schur_Ferdinand_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 375f.", "author": "", "orig_id": 1419975}}, {"model": "metainfo.source", "pk": 3172, "fields": {"orig_filename": "Schur_Moritz_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 377f.", "author": "", "orig_id": 1420038}}, {"model": "metainfo.source", "pk": 3173, "fields": {"orig_filename": "Schuschny_Grete_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 379", "author": "", "orig_id": 1420042}}, {"model": "metainfo.source", "pk": 3174, "fields": {"orig_filename": "Schuschny_Hans_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 379f.", "author": "", "orig_id": 1420041}}, {"model": "metainfo.source", "pk": 3175, "fields": {"orig_filename": "Schuselka-Bruening_Ida_1817_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 380ff.", "author": "", "orig_id": 1420044}}, {"model": "metainfo.source", "pk": 3176, "fields": {"orig_filename": "Schuselka_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 380", "author": "", "orig_id": 1420043}}, {"model": "metainfo.source", "pk": 3177, "fields": {"orig_filename": "Schustala_Adolf_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 382", "author": "", "orig_id": 1420046}}, {"model": "metainfo.source", "pk": 3178, "fields": {"orig_filename": "Schustala_Ignaz_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 382f.", "author": "", "orig_id": 1420045}}, {"model": "metainfo.source", "pk": 3179, "fields": {"orig_filename": "Schustala_Ignaz_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 383", "author": "", "orig_id": 1420047}}, {"model": "metainfo.source", "pk": 3180, "fields": {"orig_filename": "Schusteckh-Herve_Emanuel_1750_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 383f.", "author": "", "orig_id": 1420048}}, {"model": "metainfo.source", "pk": 3181, "fields": {"orig_filename": "Schuster-Baernrode_Robert_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 398", "author": "", "orig_id": 1420133}}, {"model": "metainfo.source", "pk": 3182, "fields": {"orig_filename": "Schuster-Bonnott_Ferdinand_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 399", "author": "", "orig_id": 1420135}}, {"model": "metainfo.source", "pk": 3183, "fields": {"orig_filename": "Schuster-Bonnott_Maximilian_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 398f.", "author": "", "orig_id": 1420134}}, {"model": "metainfo.source", "pk": 3184, "fields": {"orig_filename": "Schuster-Bonnott_Rudolf_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 399f.", "author": "", "orig_id": 1420136}}, {"model": "metainfo.source", "pk": 3185, "fields": {"orig_filename": "Schuster-Herineanu_Johann_1883_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400", "author": "", "orig_id": 1420138}}, {"model": "metainfo.source", "pk": 3186, "fields": {"orig_filename": "Schustermann_Adolf_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400f.", "author": "", "orig_id": 1420137}}, {"model": "metainfo.source", "pk": 3187, "fields": {"orig_filename": "Schustermann_Josef_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400f.", "author": "", "orig_id": 1420139}}, {"model": "metainfo.source", "pk": 3188, "fields": {"orig_filename": "Schuster_Andreas_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 384", "author": "", "orig_id": 1420049}}, {"model": "metainfo.source", "pk": 3189, "fields": {"orig_filename": "Schuster_Franz_1904_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 384f.", "author": "", "orig_id": 1420050}}, {"model": "metainfo.source", "pk": 3190, "fields": {"orig_filename": "Schuster_Friedrich-Wilhelm_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 385f.", "author": "", "orig_id": 1420052}}, {"model": "metainfo.source", "pk": 3191, "fields": {"orig_filename": "Schuster_Friedrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 385", "author": "", "orig_id": 1420051}}, {"model": "metainfo.source", "pk": 3192, "fields": {"orig_filename": "Schuster_Heinrich-Maria_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 387f.", "author": "", "orig_id": 1420055}}, {"model": "metainfo.source", "pk": 3193, "fields": {"orig_filename": "Schuster_Heinrich_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 387", "author": "", "orig_id": 1420054}}, {"model": "metainfo.source", "pk": 3194, "fields": {"orig_filename": "Schuster_Ignaz_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 388f.", "author": "", "orig_id": 1420056}}, {"model": "metainfo.source", "pk": 3195, "fields": {"orig_filename": "Schuster_Janos-Konstanz_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390", "author": "", "orig_id": 1420057}}, {"model": "metainfo.source", "pk": 3196, "fields": {"orig_filename": "Schuster_Johann-Leopold_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390", "author": "", "orig_id": 1420058}}, {"model": "metainfo.source", "pk": 3197, "fields": {"orig_filename": "Schuster_Johann-Traugott_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390f.", "author": "", "orig_id": 1420059}}, {"model": "metainfo.source", "pk": 3198, "fields": {"orig_filename": "Schuster_Josef-Anton_1770_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391f.", "author": "", "orig_id": 1420120}}, {"model": "metainfo.source", "pk": 3199, "fields": {"orig_filename": "Schuster_Josef_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391", "author": "", "orig_id": 1420060}}, {"model": "metainfo.source", "pk": 3200, "fields": {"orig_filename": "Schuster_Joseph_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 392", "author": "", "orig_id": 1420121}}, {"model": "metainfo.source", "pk": 3201, "fields": {"orig_filename": "Schuster_Joseph_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 392f.", "author": "", "orig_id": 1420122}}, {"model": "metainfo.source", "pk": 3202, "fields": {"orig_filename": "Schuster_Karl-Maria_1871_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391", "author": "", "orig_id": 1420119}}, {"model": "metainfo.source", "pk": 3203, "fields": {"orig_filename": "Schuster_Konstantin_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 393", "author": "", "orig_id": 1420123}}, {"model": "metainfo.source", "pk": 3204, "fields": {"orig_filename": "Schuster_Leopoldine_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 394f.", "author": "", "orig_id": 1420125}}, {"model": "metainfo.source", "pk": 3205, "fields": {"orig_filename": "Schuster_Leopold_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 393f.", "author": "", "orig_id": 1420124}}, {"model": "metainfo.source", "pk": 3206, "fields": {"orig_filename": "Schuster_Mathias_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 395", "author": "", "orig_id": 1420126}}, {"model": "metainfo.source", "pk": 3207, "fields": {"orig_filename": "Schuster_Max_1856_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 395", "author": "", "orig_id": 1420127}}, {"model": "metainfo.source", "pk": 3208, "fields": {"orig_filename": "Schuster_Michael_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 396", "author": "", "orig_id": 1420129}}, {"model": "metainfo.source", "pk": 3209, "fields": {"orig_filename": "Schuster_Richard_1867_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 396f.", "author": "", "orig_id": 1420130}}, {"model": "metainfo.source", "pk": 3210, "fields": {"orig_filename": "Schuster_Vaclav_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 397", "author": "", "orig_id": 1420131}}, {"model": "metainfo.source", "pk": 3211, "fields": {"orig_filename": "Schuster_Valentin-J_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 397f.", "author": "", "orig_id": 1420132}}, {"model": "metainfo.source", "pk": 3212, "fields": {"orig_filename": "Schustler_Karl_1811_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401", "author": "", "orig_id": 1420142}}, {"model": "metainfo.source", "pk": 3213, "fields": {"orig_filename": "Schustler_Moritz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401", "author": "", "orig_id": 1420140}}, {"model": "metainfo.source", "pk": 3214, "fields": {"orig_filename": "Schwaab_Josef_1856_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401f.", "author": "", "orig_id": 1420141}}, {"model": "metainfo.source", "pk": 3215, "fields": {"orig_filename": "Schwabach_Erik-Ernst_1891_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407", "author": "", "orig_id": 1420205}}, {"model": "metainfo.source", "pk": 3216, "fields": {"orig_filename": "Schwabe-Waisenfreund_Carl_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 408f.", "author": "", "orig_id": 1420209}}, {"model": "metainfo.source", "pk": 3217, "fields": {"orig_filename": "Schwabe-Waisenfreund_Rudolf_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409", "author": "", "orig_id": 1420212}}, {"model": "metainfo.source", "pk": 3218, "fields": {"orig_filename": "Schwabe-Waisenfreund_Vinzenz_1783_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409", "author": "", "orig_id": 1420211}}, {"model": "metainfo.source", "pk": 3219, "fields": {"orig_filename": "Schwabe_Georg-Friedrich_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407f.", "author": "", "orig_id": 1420206}}, {"model": "metainfo.source", "pk": 3220, "fields": {"orig_filename": "Schwabe_Gustav-Adolf_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 408", "author": "", "orig_id": 1420208}}, {"model": "metainfo.source", "pk": 3221, "fields": {"orig_filename": "Schwabe_Karl-Traugott-Friedrich_1819_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407f.", "author": "", "orig_id": 1420207}}, {"model": "metainfo.source", "pk": 3222, "fields": {"orig_filename": "Schuette-Warensberg_Adolph_1777_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412267}}, {"model": "metainfo.source", "pk": 3223, "fields": {"orig_filename": "Schuettelkopf_Balthasar_1863_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298f.", "author": "", "orig_id": 1412338}}, {"model": "metainfo.source", "pk": 3224, "fields": {"orig_filename": "Schuetzenberger_Alois_1792_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 306f.", "author": "", "orig_id": 1412440}}, {"model": "metainfo.source", "pk": 3225, "fields": {"orig_filename": "Schuetzenhofer_Viktor_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307", "author": "", "orig_id": 1412441}}, {"model": "metainfo.source", "pk": 3226, "fields": {"orig_filename": "Schuetzenhofer_Viktor_1878_1961.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307", "author": "", "orig_id": 1412442}}, {"model": "metainfo.source", "pk": 3227, "fields": {"orig_filename": "Schuetze_Theodor-Reinhold_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 306", "author": "", "orig_id": 1412439}}, {"model": "metainfo.source", "pk": 3228, "fields": {"orig_filename": "Schuetz_Amalie_1803_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 299f.", "author": "", "orig_id": 1412339}}, {"model": "metainfo.source", "pk": 3229, "fields": {"orig_filename": "Schuetz_Anna-Maria_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300", "author": "", "orig_id": 1412341}}, {"model": "metainfo.source", "pk": 3230, "fields": {"orig_filename": "Schuetz_Arnold_1832_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412434}}, {"model": "metainfo.source", "pk": 3231, "fields": {"orig_filename": "Schuetz_Arthur_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 304", "author": "", "orig_id": 1412359}}, {"model": "metainfo.source", "pk": 3232, "fields": {"orig_filename": "Schuetz_Berta_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300f.", "author": "", "orig_id": 1412343}}, {"model": "metainfo.source", "pk": 3233, "fields": {"orig_filename": "Schuetz_Bertha_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412347}}, {"model": "metainfo.source", "pk": 3234, "fields": {"orig_filename": "Schuetz_Christian_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300", "author": "", "orig_id": 1412342}}, {"model": "metainfo.source", "pk": 3235, "fields": {"orig_filename": "Schuetz_Emil_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301f.", "author": "", "orig_id": 1412348}}, {"model": "metainfo.source", "pk": 3236, "fields": {"orig_filename": "Schuetz_Friedrich_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 302", "author": "", "orig_id": 1412349}}, {"model": "metainfo.source", "pk": 3237, "fields": {"orig_filename": "Schuetz_Friedrich_1894_1985.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412351}}, {"model": "metainfo.source", "pk": 3238, "fields": {"orig_filename": "Schuetz_Gustav_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 302f.", "author": "", "orig_id": 1412350}}, {"model": "metainfo.source", "pk": 3239, "fields": {"orig_filename": "Schuetz_Ignatz-Zacharias_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412354}}, {"model": "metainfo.source", "pk": 3240, "fields": {"orig_filename": "Schuetz_Jakob-Abraham_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303f.", "author": "", "orig_id": 1412358}}, {"model": "metainfo.source", "pk": 3241, "fields": {"orig_filename": "Schuetz_Julius_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412356}}, {"model": "metainfo.source", "pk": 3242, "fields": {"orig_filename": "Schuetz_Julius_1876_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 304f.", "author": "", "orig_id": 1412360}}, {"model": "metainfo.source", "pk": 3243, "fields": {"orig_filename": "Schuetz_Karl-August_1790_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 299f.", "author": "", "orig_id": 1412340}}, {"model": "metainfo.source", "pk": 3244, "fields": {"orig_filename": "Schuetz_Karl_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412361}}, {"model": "metainfo.source", "pk": 3245, "fields": {"orig_filename": "Schuetz_Karl_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412355}}, {"model": "metainfo.source", "pk": 3246, "fields": {"orig_filename": "Schuetz_Ludwig-Richard_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412362}}, {"model": "metainfo.source", "pk": 3247, "fields": {"orig_filename": "Schuetz_Ludwig_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412357}}, {"model": "metainfo.source", "pk": 3248, "fields": {"orig_filename": "Schuetz_Maria-Anna_1759_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305f.", "author": "", "orig_id": 1412435}}, {"model": "metainfo.source", "pk": 3249, "fields": {"orig_filename": "Schuetz_Otto-Heinrich_1901_1981.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412352}}, {"model": "metainfo.source", "pk": 3250, "fields": {"orig_filename": "Schuetz_Paul-J_1891_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412353}}, {"model": "metainfo.source", "pk": 3251, "fields": {"orig_filename": "Schufinsky_Victor_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307f.", "author": "", "orig_id": 1412444}}, {"model": "metainfo.source", "pk": 3252, "fields": {"orig_filename": "Schufried_Dominik_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308", "author": "", "orig_id": 1412446}}, {"model": "metainfo.source", "pk": 3253, "fields": {"orig_filename": "Schufried_Jakob_1785_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308", "author": "", "orig_id": 1412445}}, {"model": "metainfo.source", "pk": 3254, "fields": {"orig_filename": "Schuhmeier_Franz_1864_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 311f.", "author": "", "orig_id": 1412454}}, {"model": "metainfo.source", "pk": 3255, "fields": {"orig_filename": "Schuh_Adam_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308f.", "author": "", "orig_id": 1412447}}, {"model": "metainfo.source", "pk": 3256, "fields": {"orig_filename": "Schuh_Carl_1806_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 309", "author": "", "orig_id": 1412448}}, {"model": "metainfo.source", "pk": 3257, "fields": {"orig_filename": "Schuh_Franz_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 309f.", "author": "", "orig_id": 1412449}}, {"model": "metainfo.source", "pk": 3258, "fields": {"orig_filename": "Schuh_Hermine_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 310", "author": "", "orig_id": 1412450}}, {"model": "metainfo.source", "pk": 3259, "fields": {"orig_filename": "Schuh_Rudolf_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 310f.", "author": "", "orig_id": 1412451}}, {"model": "metainfo.source", "pk": 3260, "fields": {"orig_filename": "Schukic_Lazar_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 312", "author": "", "orig_id": 1412455}}, {"model": "metainfo.source", "pk": 3261, "fields": {"orig_filename": "Schukowitz_Hans_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 312f.", "author": "", "orig_id": 1412456}}, {"model": "metainfo.source", "pk": 3262, "fields": {"orig_filename": "Schulbaum_Moses_1833_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 313", "author": "", "orig_id": 1411047}}, {"model": "metainfo.source", "pk": 3263, "fields": {"orig_filename": "Schuldes_Julius_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 313f.", "author": "", "orig_id": 1411048}}, {"model": "metainfo.source", "pk": 3264, "fields": {"orig_filename": "Schulek_Frigyes_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 314f.", "author": "", "orig_id": 1411049}}, {"model": "metainfo.source", "pk": 3265, "fields": {"orig_filename": "Schulek_Vilmos_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 315f.", "author": "", "orig_id": 1411050}}, {"model": "metainfo.source", "pk": 3266, "fields": {"orig_filename": "Schulenburg_Hans-Daniel-Matthias_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316", "author": "", "orig_id": 1411051}}, {"model": "metainfo.source", "pk": 3267, "fields": {"orig_filename": "Schuler-Libloy_Friedrich_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 319f.", "author": "", "orig_id": 1411059}}, {"model": "metainfo.source", "pk": 3268, "fields": {"orig_filename": "Schuler_Carl-Franz_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316f.", "author": "", "orig_id": 1411052}}, {"model": "metainfo.source", "pk": 3269, "fields": {"orig_filename": "Schuler_Franz_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 317", "author": "", "orig_id": 1411054}}, {"model": "metainfo.source", "pk": 3270, "fields": {"orig_filename": "Schuler_Hans_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 317f.", "author": "", "orig_id": 1411055}}, {"model": "metainfo.source", "pk": 3271, "fields": {"orig_filename": "Schuler_Johann_1770_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 318", "author": "", "orig_id": 1411057}}, {"model": "metainfo.source", "pk": 3272, "fields": {"orig_filename": "Schuler_Johann_1800_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 318f.", "author": "", "orig_id": 1411056}}, {"model": "metainfo.source", "pk": 3273, "fields": {"orig_filename": "Schuler_Josef_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 319", "author": "", "orig_id": 1411058}}, {"model": "metainfo.source", "pk": 3274, "fields": {"orig_filename": "Schuler_Walter_1891_1976.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316", "author": "", "orig_id": 1411053}}, {"model": "metainfo.source", "pk": 3275, "fields": {"orig_filename": "Schulheim_Hyacinth_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 320", "author": "", "orig_id": 1411060}}, {"model": "metainfo.source", "pk": 3276, "fields": {"orig_filename": "Schulhoff_Erwin_1894_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 322f.", "author": "", "orig_id": 1411065}}, {"model": "metainfo.source", "pk": 3277, "fields": {"orig_filename": "Schulhoff_Julius_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 323", "author": "", "orig_id": 1411066}}, {"model": "metainfo.source", "pk": 3278, "fields": {"orig_filename": "Schulhof_Josef_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 320f.", "author": "", "orig_id": 1411061}}, {"model": "metainfo.source", "pk": 3279, "fields": {"orig_filename": "Schulhof_Leopold_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 321", "author": "", "orig_id": 1411063}}, {"model": "metainfo.source", "pk": 3280, "fields": {"orig_filename": "Schulhof_Stanislav_1864_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 321f.", "author": "", "orig_id": 1411064}}, {"model": "metainfo.source", "pk": 3281, "fields": {"orig_filename": "Schuller-Goetzburg_Eduard_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 330", "author": "", "orig_id": 1411158}}, {"model": "metainfo.source", "pk": 3282, "fields": {"orig_filename": "Schullern-Schrattenhofen_Anton_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 330f.", "author": "", "orig_id": 1411159}}, {"model": "metainfo.source", "pk": 3283, "fields": {"orig_filename": "Schullern-Schrattenhofen_Heinrich_1865_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 331", "author": "", "orig_id": 1411160}}, {"model": "metainfo.source", "pk": 3284, "fields": {"orig_filename": "Schullern-Schrattenhofen_Hermann_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 331f.", "author": "", "orig_id": 1411161}}, {"model": "metainfo.source", "pk": 3285, "fields": {"orig_filename": "Schullerus_Adolf_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 332f.", "author": "", "orig_id": 1411162}}, {"model": "metainfo.source", "pk": 3286, "fields": {"orig_filename": "Schullerus_Eduard_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333", "author": "", "orig_id": 1411163}}, {"model": "metainfo.source", "pk": 3287, "fields": {"orig_filename": "Schullerus_Fritz_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333f.", "author": "", "orig_id": 1411164}}, {"model": "metainfo.source", "pk": 3288, "fields": {"orig_filename": "Schullerus_Gustav-Adolf_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 334", "author": "", "orig_id": 1411166}}, {"model": "metainfo.source", "pk": 3289, "fields": {"orig_filename": "Schullerus_Pauline_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 334f.", "author": "", "orig_id": 1411236}}, {"model": "metainfo.source", "pk": 3290, "fields": {"orig_filename": "Schullerus_Trude_1889_1981.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333f.", "author": "", "orig_id": 1411165}}, {"model": "metainfo.source", "pk": 3291, "fields": {"orig_filename": "Schuller_Albert_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 323f.", "author": "", "orig_id": 1411069}}, {"model": "metainfo.source", "pk": 3292, "fields": {"orig_filename": "Schuller_Alois_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411071}}, {"model": "metainfo.source", "pk": 3293, "fields": {"orig_filename": "Schuller_Betty_1860_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 327f.", "author": "", "orig_id": 1411152}}, {"model": "metainfo.source", "pk": 3294, "fields": {"orig_filename": "Schuller_Friedrich_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411145}}, {"model": "metainfo.source", "pk": 3295, "fields": {"orig_filename": "Schuller_Georg-Adolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 325f.", "author": "", "orig_id": 1411147}}, {"model": "metainfo.source", "pk": 3296, "fields": {"orig_filename": "Schuller_Georg_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 325", "author": "", "orig_id": 1411146}}, {"model": "metainfo.source", "pk": 3297, "fields": {"orig_filename": "Schuller_Guenther_1904_1995.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411070}}, {"model": "metainfo.source", "pk": 3298, "fields": {"orig_filename": "Schuller_Gustav_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326", "author": "", "orig_id": 1411148}}, {"model": "metainfo.source", "pk": 3299, "fields": {"orig_filename": "Schuller_Hermann_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326", "author": "", "orig_id": 1411149}}, {"model": "metainfo.source", "pk": 3300, "fields": {"orig_filename": "Schuller_Johann-Karl_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326f.", "author": "", "orig_id": 1411150}}, {"model": "metainfo.source", "pk": 3301, "fields": {"orig_filename": "Schuller_Ludwig-Friedrich_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 327f.", "author": "", "orig_id": 1411151}}, {"model": "metainfo.source", "pk": 3302, "fields": {"orig_filename": "Schuller_Marie_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 328", "author": "", "orig_id": 1411153}}, {"model": "metainfo.source", "pk": 3303, "fields": {"orig_filename": "Schuller_Michael-Gottlieb_1802_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 328f.", "author": "", "orig_id": 1411154}}, {"model": "metainfo.source", "pk": 3304, "fields": {"orig_filename": "Schuller_Moriz_1825_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329", "author": "", "orig_id": 1411155}}, {"model": "metainfo.source", "pk": 3305, "fields": {"orig_filename": "Schuller_Richard_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329", "author": "", "orig_id": 1411156}}, {"model": "metainfo.source", "pk": 3306, "fields": {"orig_filename": "Schuller_Wenzel_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329f.", "author": "", "orig_id": 1411157}}, {"model": "metainfo.source", "pk": 3307, "fields": {"orig_filename": "Schuloff_Robert_1883_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 335f.", "author": "", "orig_id": 1411237}}, {"model": "metainfo.source", "pk": 3308, "fields": {"orig_filename": "Schuloff_Theodor_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 336", "author": "", "orig_id": 1411238}}, {"model": "metainfo.source", "pk": 3309, "fields": {"orig_filename": "Schulpe-Toeroekkanizsa_Georg_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 336f.", "author": "", "orig_id": 1411239}}, {"model": "metainfo.source", "pk": 3310, "fields": {"orig_filename": "Schultes_Joseph-August_1773_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 338f.", "author": "", "orig_id": 1419764}}, {"model": "metainfo.source", "pk": 3311, "fields": {"orig_filename": "Schultes_Julius-Hermann_1804_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 339f.", "author": "", "orig_id": 1419765}}, {"model": "metainfo.source", "pk": 3312, "fields": {"orig_filename": "Schultes_Sigismund_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 340", "author": "", "orig_id": 1419767}}, {"model": "metainfo.source", "pk": 3313, "fields": {"orig_filename": "Schulte_Albert_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 337", "author": "", "orig_id": 1419761}}, {"model": "metainfo.source", "pk": 3314, "fields": {"orig_filename": "Schulte_Julius_1881_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 337f.", "author": "", "orig_id": 1419763}}, {"model": "metainfo.source", "pk": 3315, "fields": {"orig_filename": "Schultheiss_Ernst_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 340f.", "author": "", "orig_id": 1419768}}, {"model": "metainfo.source", "pk": 3316, "fields": {"orig_filename": "Schultzen_Anna_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 341", "author": "", "orig_id": 1419769}}, {"model": "metainfo.source", "pk": 3317, "fields": {"orig_filename": "Schulz-Strassnitzki_Leopold-Karl_1803_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 353f.", "author": "", "orig_id": 1419838}}, {"model": "metainfo.source", "pk": 3318, "fields": {"orig_filename": "Schulzer-Mueggenburg_Stephan_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 356f.", "author": "", "orig_id": 1419886}}, {"model": "metainfo.source", "pk": 3319, "fields": {"orig_filename": "Schulze_Franz-Eilhard_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 354f.", "author": "", "orig_id": 1419884}}, {"model": "metainfo.source", "pk": 3320, "fields": {"orig_filename": "Schulze_Karoline_1745_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 355f.", "author": "", "orig_id": 1419885}}, {"model": "metainfo.source", "pk": 3321, "fields": {"orig_filename": "Schulzig_Franz-Joseph-Florian_1787_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 357", "author": "", "orig_id": 1419887}}, {"model": "metainfo.source", "pk": 3322, "fields": {"orig_filename": "Schulzova_Anezka_1868_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 357f.", "author": "", "orig_id": 1419888}}, {"model": "metainfo.source", "pk": 3323, "fields": {"orig_filename": "Schulz_Alwin_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 341f.", "author": "", "orig_id": 1419770}}, {"model": "metainfo.source", "pk": 3324, "fields": {"orig_filename": "Schulz_Antonin_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342", "author": "", "orig_id": 1419771}}, {"model": "metainfo.source", "pk": 3325, "fields": {"orig_filename": "Schroff_Emanuel-Stephan_1799_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 249f.", "author": "", "orig_id": 1411875}}, {"model": "metainfo.source", "pk": 3326, "fields": {"orig_filename": "Schroff_Karl-Damian_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 250f.", "author": "", "orig_id": 1411877}}, {"model": "metainfo.source", "pk": 3327, "fields": {"orig_filename": "Schroff_Karl_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 250", "author": "", "orig_id": 1411876}}, {"model": "metainfo.source", "pk": 3328, "fields": {"orig_filename": "Schroll_Anton_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 251f.", "author": "", "orig_id": 1411878}}, {"model": "metainfo.source", "pk": 3329, "fields": {"orig_filename": "Schroll_Beda_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 252f.", "author": "", "orig_id": 1411879}}, {"model": "metainfo.source", "pk": 3330, "fields": {"orig_filename": "Schroll_Benedict_1790_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253", "author": "", "orig_id": 1411880}}, {"model": "metainfo.source", "pk": 3331, "fields": {"orig_filename": "Schroll_Benedikt_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253", "author": "", "orig_id": 1411881}}, {"model": "metainfo.source", "pk": 3332, "fields": {"orig_filename": "Schroll_Caspar-Melchior-Balthasar_1756_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253f.", "author": "", "orig_id": 1411882}}, {"model": "metainfo.source", "pk": 3333, "fields": {"orig_filename": "Schroll_Josef_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 254", "author": "", "orig_id": 1411883}}, {"model": "metainfo.source", "pk": 3334, "fields": {"orig_filename": "Schroth_Albine_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 254f.", "author": "", "orig_id": 1411884}}, {"model": "metainfo.source", "pk": 3335, "fields": {"orig_filename": "Schroth_Alexander_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256", "author": "", "orig_id": 1411888}}, {"model": "metainfo.source", "pk": 3336, "fields": {"orig_filename": "Schroth_Andreas_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255", "author": "", "orig_id": 1411885}}, {"model": "metainfo.source", "pk": 3337, "fields": {"orig_filename": "Schroth_Emanuel_1832_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255", "author": "", "orig_id": 1411886}}, {"model": "metainfo.source", "pk": 3338, "fields": {"orig_filename": "Schroth_Eugen_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255f.", "author": "", "orig_id": 1411887}}, {"model": "metainfo.source", "pk": 3339, "fields": {"orig_filename": "Schroth_Jakob_1773_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256", "author": "", "orig_id": 1411889}}, {"model": "metainfo.source", "pk": 3340, "fields": {"orig_filename": "Schroth_Johann_1798_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256f.", "author": "", "orig_id": 1411961}}, {"model": "metainfo.source", "pk": 3341, "fields": {"orig_filename": "Schroth_Karl_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411962}}, {"model": "metainfo.source", "pk": 3342, "fields": {"orig_filename": "Schroth_Karl_1898_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411963}}, {"model": "metainfo.source", "pk": 3343, "fields": {"orig_filename": "Schrottenbach_Heinrich_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 262", "author": "", "orig_id": 1411977}}, {"model": "metainfo.source", "pk": 3344, "fields": {"orig_filename": "Schrottenbach_Heinz_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 262f.", "author": "", "orig_id": 1411978}}, {"model": "metainfo.source", "pk": 3345, "fields": {"orig_filename": "Schrotter_Ignaz_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 263", "author": "", "orig_id": 1411979}}, {"model": "metainfo.source", "pk": 3346, "fields": {"orig_filename": "Schrott_Alois_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257f.", "author": "", "orig_id": 1411965}}, {"model": "metainfo.source", "pk": 3347, "fields": {"orig_filename": "Schrott_Anton_1801_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411966}}, {"model": "metainfo.source", "pk": 3348, "fields": {"orig_filename": "Schrott_Christian_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258f.", "author": "", "orig_id": 1411969}}, {"model": "metainfo.source", "pk": 3349, "fields": {"orig_filename": "Schrott_Ferdinand_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 259", "author": "", "orig_id": 1411970}}, {"model": "metainfo.source", "pk": 3350, "fields": {"orig_filename": "Schrott_Hans_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 259f.", "author": "", "orig_id": 1411971}}, {"model": "metainfo.source", "pk": 3351, "fields": {"orig_filename": "Schrott_Jakob_1804_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 260", "author": "", "orig_id": 1411972}}, {"model": "metainfo.source", "pk": 3352, "fields": {"orig_filename": "Schrott_Josip_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 260f.", "author": "", "orig_id": 1411973}}, {"model": "metainfo.source", "pk": 3353, "fields": {"orig_filename": "Schrott_Maria_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 261", "author": "", "orig_id": 1411974}}, {"model": "metainfo.source", "pk": 3354, "fields": {"orig_filename": "Schrott_Othmar_1883_1963.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258", "author": "", "orig_id": 1411968}}, {"model": "metainfo.source", "pk": 3355, "fields": {"orig_filename": "Schrott_Vincenz_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 261f.", "author": "", "orig_id": 1411975}}, {"model": "metainfo.source", "pk": 3356, "fields": {"orig_filename": "Schrotzberg_Franz_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 263f.", "author": "", "orig_id": 1411980}}, {"model": "metainfo.source", "pk": 3357, "fields": {"orig_filename": "Schruf_Toni_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 264f.", "author": "", "orig_id": 1411981}}, {"model": "metainfo.source", "pk": 3358, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Emil_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 265f.", "author": "", "orig_id": 1411983}}, {"model": "metainfo.source", "pk": 3359, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Lothar_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 266f.", "author": "", "orig_id": 1412052}}, {"model": "metainfo.source", "pk": 3360, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Marianne_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 267", "author": "", "orig_id": 1412053}}, {"model": "metainfo.source", "pk": 3361, "fields": {"orig_filename": "Schrutka_Ignaz_1802_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 266", "author": "", "orig_id": 1411984}}, {"model": "metainfo.source", "pk": 3362, "fields": {"orig_filename": "Schrutka_Mauritius-Kanicensis_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 265", "author": "", "orig_id": 1411982}}, {"model": "metainfo.source", "pk": 3363, "fields": {"orig_filename": "Schrutz_Andreas_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 267f.", "author": "", "orig_id": 1412054}}, {"model": "metainfo.source", "pk": 3364, "fields": {"orig_filename": "Schrutz_Demetrius_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 268", "author": "", "orig_id": 1412055}}, {"model": "metainfo.source", "pk": 3365, "fields": {"orig_filename": "Schubauer_Josef_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 268f.", "author": "", "orig_id": 1412056}}, {"model": "metainfo.source", "pk": 3366, "fields": {"orig_filename": "Schubert-Soldern_Eduard-Viktor_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 277f.", "author": "", "orig_id": 1412150}}, {"model": "metainfo.source", "pk": 3367, "fields": {"orig_filename": "Schubert-Soldern_Fortunat_1867_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278f.", "author": "", "orig_id": 1412154}}, {"model": "metainfo.source", "pk": 3368, "fields": {"orig_filename": "Schubert-Soldern_Rainer_1900_1974.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 279", "author": "", "orig_id": 1412155}}, {"model": "metainfo.source", "pk": 3369, "fields": {"orig_filename": "Schubert-Soldern_Victor_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278", "author": "", "orig_id": 1412153}}, {"model": "metainfo.source", "pk": 3370, "fields": {"orig_filename": "Schubert_Andreas-Theodor_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412065}}, {"model": "metainfo.source", "pk": 3371, "fields": {"orig_filename": "Schubert_Andreas_1767_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 269f.", "author": "", "orig_id": 1412057}}, {"model": "metainfo.source", "pk": 3372, "fields": {"orig_filename": "Schubert_Andreas_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 269f.", "author": "", "orig_id": 1412058}}, {"model": "metainfo.source", "pk": 3373, "fields": {"orig_filename": "Schubert_Ferdinand-Lukas_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 270f.", "author": "", "orig_id": 1412060}}, {"model": "metainfo.source", "pk": 3374, "fields": {"orig_filename": "Schubert_Ferdinand_1824_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 270", "author": "", "orig_id": 1412059}}, {"model": "metainfo.source", "pk": 3375, "fields": {"orig_filename": "Schubert_Franz-Peter_1797_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 271ff.", "author": "", "orig_id": 1412061}}, {"model": "metainfo.source", "pk": 3376, "fields": {"orig_filename": "Schubert_Franz-Theodor_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412062}}, {"model": "metainfo.source", "pk": 3377, "fields": {"orig_filename": "Schubert_Heinrich-Karl_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274f.", "author": "", "orig_id": 1412066}}, {"model": "metainfo.source", "pk": 3378, "fields": {"orig_filename": "Schubert_Hermann_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275", "author": "", "orig_id": 1412067}}, {"model": "metainfo.source", "pk": 3379, "fields": {"orig_filename": "Schubert_Ignaz_1785_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412063}}, {"model": "metainfo.source", "pk": 3380, "fields": {"orig_filename": "Schubert_Joseph_1754_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275", "author": "", "orig_id": 1412068}}, {"model": "metainfo.source", "pk": 3381, "fields": {"orig_filename": "Schubert_Karl_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275f.", "author": "", "orig_id": 1412069}}, {"model": "metainfo.source", "pk": 3382, "fields": {"orig_filename": "Schubert_Karl_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 276", "author": "", "orig_id": 1412071}}, {"model": "metainfo.source", "pk": 3383, "fields": {"orig_filename": "Schubert_Maria-Theresia_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412064}}, {"model": "metainfo.source", "pk": 3384, "fields": {"orig_filename": "Schubert_Ottokar_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 276f.", "author": "", "orig_id": 1412072}}, {"model": "metainfo.source", "pk": 3385, "fields": {"orig_filename": "Schubert_Otto_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278", "author": "", "orig_id": 1412152}}, {"model": "metainfo.source", "pk": 3386, "fields": {"orig_filename": "Schubert_Richard_1876_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 277", "author": "", "orig_id": 1412149}}, {"model": "metainfo.source", "pk": 3387, "fields": {"orig_filename": "Schuchardt_Hugo_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 282f.", "author": "", "orig_id": 1412164}}, {"model": "metainfo.source", "pk": 3388, "fields": {"orig_filename": "Schuchart_August_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 283f.", "author": "", "orig_id": 1412165}}, {"model": "metainfo.source", "pk": 3389, "fields": {"orig_filename": "Schuchter_Joseph_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 284", "author": "", "orig_id": 1412166}}, {"model": "metainfo.source", "pk": 3390, "fields": {"orig_filename": "Schuch_Carl-Eduard_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 279f.", "author": "", "orig_id": 1412157}}, {"model": "metainfo.source", "pk": 3391, "fields": {"orig_filename": "Schuch_Clementine_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 280f.", "author": "", "orig_id": 1412158}}, {"model": "metainfo.source", "pk": 3392, "fields": {"orig_filename": "Schuch_Ernst-Gottfried_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 281", "author": "", "orig_id": 1412159}}, {"model": "metainfo.source", "pk": 3393, "fields": {"orig_filename": "Schuch_Julius-Maria-Franz_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 281f.", "author": "", "orig_id": 1412160}}, {"model": "metainfo.source", "pk": 3394, "fields": {"orig_filename": "Schuch_Leopold_1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 282", "author": "", "orig_id": 1412161}}, {"model": "metainfo.source", "pk": 3395, "fields": {"orig_filename": "Schudrich_Jakub_1906_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285", "author": "", "orig_id": 1412167}}, {"model": "metainfo.source", "pk": 3396, "fields": {"orig_filename": "Schuech-Capanema_Wilhelm_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285f.", "author": "", "orig_id": 1412169}}, {"model": "metainfo.source", "pk": 3397, "fields": {"orig_filename": "Schuecht_Franz_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286", "author": "", "orig_id": 1412170}}, {"model": "metainfo.source", "pk": 3398, "fields": {"orig_filename": "Schuech_Rochus_1788_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285f.", "author": "", "orig_id": 1412168}}, {"model": "metainfo.source", "pk": 3399, "fields": {"orig_filename": "Schuecker_Heinrich_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287", "author": "", "orig_id": 1412172}}, {"model": "metainfo.source", "pk": 3400, "fields": {"orig_filename": "Schuecker_Joseph-E_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287", "author": "", "orig_id": 1412173}}, {"model": "metainfo.source", "pk": 3401, "fields": {"orig_filename": "Schuecker_Karl_1836_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287f.", "author": "", "orig_id": 1412174}}, {"model": "metainfo.source", "pk": 3402, "fields": {"orig_filename": "Schuecker_Zdenko_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 288", "author": "", "orig_id": 1412175}}, {"model": "metainfo.source", "pk": 3403, "fields": {"orig_filename": "Schuecking_Alfred_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 288f.", "author": "", "orig_id": 1412244}}, {"model": "metainfo.source", "pk": 3404, "fields": {"orig_filename": "Schuecktanz_Anton_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289", "author": "", "orig_id": 1412246}}, {"model": "metainfo.source", "pk": 3405, "fields": {"orig_filename": "Schuecktanz_Karl_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289", "author": "", "orig_id": 1412245}}, {"model": "metainfo.source", "pk": 3406, "fields": {"orig_filename": "Schueler_Friedrich-Julius_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289f.", "author": "", "orig_id": 1412247}}, {"model": "metainfo.source", "pk": 3407, "fields": {"orig_filename": "Schueler_Max-Joseph_1818_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 290", "author": "", "orig_id": 1412248}}, {"model": "metainfo.source", "pk": 3408, "fields": {"orig_filename": "Schueller_Franz_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 290f.", "author": "", "orig_id": 1412249}}, {"model": "metainfo.source", "pk": 3409, "fields": {"orig_filename": "Schueller_Maximilian_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291", "author": "", "orig_id": 1412251}}, {"model": "metainfo.source", "pk": 3410, "fields": {"orig_filename": "Schueller_Otto-Alois_1892_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291", "author": "", "orig_id": 1412250}}, {"model": "metainfo.source", "pk": 3411, "fields": {"orig_filename": "Schuenke_Robert_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291f.", "author": "", "orig_id": 1412252}}, {"model": "metainfo.source", "pk": 3412, "fields": {"orig_filename": "Schuerer-Waldheim_Anton_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 292f.", "author": "", "orig_id": 1412254}}, {"model": "metainfo.source", "pk": 3413, "fields": {"orig_filename": "Schuerer-Waldheim_Anton_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294", "author": "", "orig_id": 1412259}}, {"model": "metainfo.source", "pk": 3414, "fields": {"orig_filename": "Schuerer-Waldheim_Fritz_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 293f.", "author": "", "orig_id": 1412256}}, {"model": "metainfo.source", "pk": 3415, "fields": {"orig_filename": "Schuerer-Waldheim_Helena_1859_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 293", "author": "", "orig_id": 1412255}}, {"model": "metainfo.source", "pk": 3416, "fields": {"orig_filename": "Schuerer-Waldheim_Ludwig_1861_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 295", "author": "", "orig_id": 1412260}}, {"model": "metainfo.source", "pk": 3417, "fields": {"orig_filename": "Schuerer-Waldheim_Max_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294", "author": "", "orig_id": 1412257}}, {"model": "metainfo.source", "pk": 3418, "fields": {"orig_filename": "Schuerer-Waldheim_Rudolf_1832_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294f.", "author": "", "orig_id": 1412258}}, {"model": "metainfo.source", "pk": 3419, "fields": {"orig_filename": "Schuerer_Franz-De-Paula_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 292", "author": "", "orig_id": 1412253}}, {"model": "metainfo.source", "pk": 3420, "fields": {"orig_filename": "Schuerff_Hans_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 295f.", "author": "", "orig_id": 1412261}}, {"model": "metainfo.source", "pk": 3421, "fields": {"orig_filename": "Schuermayer_Ignaz-Heinrich_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 296", "author": "", "orig_id": 1412262}}, {"model": "metainfo.source", "pk": 3422, "fields": {"orig_filename": "Schuessler_Rudolf_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 296f.", "author": "", "orig_id": 1412263}}, {"model": "metainfo.source", "pk": 3423, "fields": {"orig_filename": "Schuetky_Fernande_1845_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412265}}, {"model": "metainfo.source", "pk": 3424, "fields": {"orig_filename": "Schuetky_Franz-Josef_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 297f.", "author": "", "orig_id": 1412264}}, {"model": "metainfo.source", "pk": 3425, "fields": {"orig_filename": "Schuetky_Richard_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412266}}, {"model": "metainfo.source", "pk": 3426, "fields": {"orig_filename": "Schreiber_Josef_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 195", "author": "", "orig_id": 1411414}}, {"model": "metainfo.source", "pk": 3427, "fields": {"orig_filename": "Schreiber_Josef_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 195f.", "author": "", "orig_id": 1411415}}, {"model": "metainfo.source", "pk": 3428, "fields": {"orig_filename": "Schreiber_Karl_1733_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 196", "author": "", "orig_id": 1411417}}, {"model": "metainfo.source", "pk": 3429, "fields": {"orig_filename": "Schreiber_Karl_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 197", "author": "", "orig_id": 1411418}}, {"model": "metainfo.source", "pk": 3430, "fields": {"orig_filename": "Schreiber_Moses_1762_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 197f.", "author": "", "orig_id": 1411419}}, {"model": "metainfo.source", "pk": 3431, "fields": {"orig_filename": "Schreiber_Simon_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 198", "author": "", "orig_id": 1411420}}, {"model": "metainfo.source", "pk": 3432, "fields": {"orig_filename": "Schreiblmayr_Petrus_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 200f.", "author": "", "orig_id": 1411491}}, {"model": "metainfo.source", "pk": 3433, "fields": {"orig_filename": "Schreier_Maximilian_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 201f.", "author": "", "orig_id": 1411492}}, {"model": "metainfo.source", "pk": 3434, "fields": {"orig_filename": "Schreier_Maximilian_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203", "author": "", "orig_id": 1411497}}, {"model": "metainfo.source", "pk": 3435, "fields": {"orig_filename": "Schreier_Otto_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 202", "author": "", "orig_id": 1411493}}, {"model": "metainfo.source", "pk": 3436, "fields": {"orig_filename": "Schreier_Schulim_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 202f.", "author": "", "orig_id": 1411496}}, {"model": "metainfo.source", "pk": 3437, "fields": {"orig_filename": "Schreier_Theodor_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203", "author": "", "orig_id": 1411498}}, {"model": "metainfo.source", "pk": 3438, "fields": {"orig_filename": "Schreier_Uri-Schrage-Feiwel-Halevi_1819_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203f.", "author": "", "orig_id": 1411499}}, {"model": "metainfo.source", "pk": 3439, "fields": {"orig_filename": "Schreiner_Abraham_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204", "author": "", "orig_id": 1411500}}, {"model": "metainfo.source", "pk": 3440, "fields": {"orig_filename": "Schreiner_Adolf_1823_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204", "author": "", "orig_id": 1411501}}, {"model": "metainfo.source", "pk": 3441, "fields": {"orig_filename": "Schreiner_Anton_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204f.", "author": "", "orig_id": 1411503}}, {"model": "metainfo.source", "pk": 3442, "fields": {"orig_filename": "Schreiner_Emerich_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 205f.", "author": "", "orig_id": 1411504}}, {"model": "metainfo.source", "pk": 3443, "fields": {"orig_filename": "Schreiner_Franz_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 206", "author": "", "orig_id": 1411506}}, {"model": "metainfo.source", "pk": 3444, "fields": {"orig_filename": "Schreiner_Franz_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 206f.", "author": "", "orig_id": 1411507}}, {"model": "metainfo.source", "pk": 3445, "fields": {"orig_filename": "Schreiner_Friedrich-Karl-Gustav_1863_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 205f.", "author": "", "orig_id": 1411505}}, {"model": "metainfo.source", "pk": 3446, "fields": {"orig_filename": "Schreiner_Gustav-Franz-Xav_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 208f.", "author": "", "orig_id": 1411510}}, {"model": "metainfo.source", "pk": 3447, "fields": {"orig_filename": "Schreiner_Gustav_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 207", "author": "", "orig_id": 1411508}}, {"model": "metainfo.source", "pk": 3448, "fields": {"orig_filename": "Schreiner_Gustav_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 207f.", "author": "", "orig_id": 1411509}}, {"model": "metainfo.source", "pk": 3449, "fields": {"orig_filename": "Schreiner_Jakob_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 209", "author": "", "orig_id": 1411511}}, {"model": "metainfo.source", "pk": 3450, "fields": {"orig_filename": "Schreiner_Johann-Nep_1766_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 209f.", "author": "", "orig_id": 1411512}}, {"model": "metainfo.source", "pk": 3451, "fields": {"orig_filename": "Schreiner_Josef-Johann-Nep_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 210", "author": "", "orig_id": 1411513}}, {"model": "metainfo.source", "pk": 3452, "fields": {"orig_filename": "Schreiner_Karl_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 210f.", "author": "", "orig_id": 1411514}}, {"model": "metainfo.source", "pk": 3453, "fields": {"orig_filename": "Schreiner_Martin-Mordekhai_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 211", "author": "", "orig_id": 1411588}}, {"model": "metainfo.source", "pk": 3454, "fields": {"orig_filename": "Schreiner_Moriz_1824_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 211f.", "author": "", "orig_id": 1411589}}, {"model": "metainfo.source", "pk": 3455, "fields": {"orig_filename": "Schreiner_Rupert_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 212f.", "author": "", "orig_id": 1411590}}, {"model": "metainfo.source", "pk": 3456, "fields": {"orig_filename": "Schreiter_Franz-Xav_1801_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213", "author": "", "orig_id": 1411592}}, {"model": "metainfo.source", "pk": 3457, "fields": {"orig_filename": "Schreiter_Franz_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213", "author": "", "orig_id": 1411591}}, {"model": "metainfo.source", "pk": 3458, "fields": {"orig_filename": "Schreitter-Schwarzenfeld_Adolf_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213f.", "author": "", "orig_id": 1411593}}, {"model": "metainfo.source", "pk": 3459, "fields": {"orig_filename": "Schreker_Franz_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 214f.", "author": "", "orig_id": 1411594}}, {"model": "metainfo.source", "pk": 3460, "fields": {"orig_filename": "Schrems_Johann_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 215", "author": "", "orig_id": 1411595}}, {"model": "metainfo.source", "pk": 3461, "fields": {"orig_filename": "Schrenck-Notzing-Egmating_Aloys-Josef_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 216", "author": "", "orig_id": 1411596}}, {"model": "metainfo.source", "pk": 3462, "fields": {"orig_filename": "Schrenk_Anton_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217", "author": "", "orig_id": 1411598}}, {"model": "metainfo.source", "pk": 3463, "fields": {"orig_filename": "Schrenk_Franz_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 216f.", "author": "", "orig_id": 1411597}}, {"model": "metainfo.source", "pk": 3464, "fields": {"orig_filename": "Schrenk_Wenzl_1849_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217", "author": "", "orig_id": 1411599}}, {"model": "metainfo.source", "pk": 3465, "fields": {"orig_filename": "Schrenzel_Moses_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217f.", "author": "", "orig_id": 1411600}}, {"model": "metainfo.source", "pk": 3466, "fields": {"orig_filename": "Schreter_Gustav-Adolph_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 218", "author": "", "orig_id": 1411601}}, {"model": "metainfo.source", "pk": 3467, "fields": {"orig_filename": "Schretter_Georg_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 218f.", "author": "", "orig_id": 1411602}}, {"model": "metainfo.source", "pk": 3468, "fields": {"orig_filename": "Schretter_Josef_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 219", "author": "", "orig_id": 1411603}}, {"model": "metainfo.source", "pk": 3469, "fields": {"orig_filename": "Schreuer_Hans_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 219f.", "author": "", "orig_id": 1411605}}, {"model": "metainfo.source", "pk": 3470, "fields": {"orig_filename": "Schreuer_Zdenko_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220", "author": "", "orig_id": 1411606}}, {"model": "metainfo.source", "pk": 3471, "fields": {"orig_filename": "Schreyber_Franz-Sal_1796_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220f.", "author": "", "orig_id": 1411608}}, {"model": "metainfo.source", "pk": 3472, "fields": {"orig_filename": "Schreyer_Adalbert_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411610}}, {"model": "metainfo.source", "pk": 3473, "fields": {"orig_filename": "Schreyer_Adalbert_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221f.", "author": "", "orig_id": 1411609}}, {"model": "metainfo.source", "pk": 3474, "fields": {"orig_filename": "Schreyer_Alois_1859_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411611}}, {"model": "metainfo.source", "pk": 3475, "fields": {"orig_filename": "Schreyer_Friedrich_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222", "author": "", "orig_id": 1411614}}, {"model": "metainfo.source", "pk": 3476, "fields": {"orig_filename": "Schreyer_Isaac_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222f.", "author": "", "orig_id": 1411680}}, {"model": "metainfo.source", "pk": 3477, "fields": {"orig_filename": "Schreyer_Marcell_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411682}}, {"model": "metainfo.source", "pk": 3478, "fields": {"orig_filename": "Schreyer_Renata_1897_1983.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411612}}, {"model": "metainfo.source", "pk": 3479, "fields": {"orig_filename": "Schreyer_Richard_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223f.", "author": "", "orig_id": 1411683}}, {"model": "metainfo.source", "pk": 3480, "fields": {"orig_filename": "Schreyvogel_Joseph_1768_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 224f.", "author": "", "orig_id": 1411684}}, {"model": "metainfo.source", "pk": 3481, "fields": {"orig_filename": "Schriefer_Wilhelm_1865_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 225", "author": "", "orig_id": 1411685}}, {"model": "metainfo.source", "pk": 3482, "fields": {"orig_filename": "Schroeckenfux_Carl_1847_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411690}}, {"model": "metainfo.source", "pk": 3483, "fields": {"orig_filename": "Schroeckenfux_Franz-Paul_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411689}}, {"model": "metainfo.source", "pk": 3484, "fields": {"orig_filename": "Schroeckenfux_Franz_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 225f.", "author": "", "orig_id": 1411688}}, {"model": "metainfo.source", "pk": 3485, "fields": {"orig_filename": "Schroeckenfux_Gottlieb_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226f.", "author": "", "orig_id": 1411692}}, {"model": "metainfo.source", "pk": 3486, "fields": {"orig_filename": "Schroeckenfux_Michael_1848_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411691}}, {"model": "metainfo.source", "pk": 3487, "fields": {"orig_filename": "Schroeckenstein_Franz-Xav_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 227", "author": "", "orig_id": 1411693}}, {"model": "metainfo.source", "pk": 3488, "fields": {"orig_filename": "Schroeckinger-Neudenberg_Julius_1813_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 228", "author": "", "orig_id": 1411695}}, {"model": "metainfo.source", "pk": 3489, "fields": {"orig_filename": "Schroeckinger_Carl-Johann-Franz_1798_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 227", "author": "", "orig_id": 1411694}}, {"model": "metainfo.source", "pk": 3490, "fields": {"orig_filename": "Schroeder_Auguste_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411771}}, {"model": "metainfo.source", "pk": 3491, "fields": {"orig_filename": "Schroeder_Eduard-August_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 229f.", "author": "", "orig_id": 1411697}}, {"model": "metainfo.source", "pk": 3492, "fields": {"orig_filename": "Schroeder_Elisabeth_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411770}}, {"model": "metainfo.source", "pk": 3493, "fields": {"orig_filename": "Schroeder_Heinrich_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230", "author": "", "orig_id": 1411698}}, {"model": "metainfo.source", "pk": 3494, "fields": {"orig_filename": "Schroeder_Johann_1869_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230", "author": "", "orig_id": 1411699}}, {"model": "metainfo.source", "pk": 3495, "fields": {"orig_filename": "Schroeder_Julius_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230f.", "author": "", "orig_id": 1411700}}, {"model": "metainfo.source", "pk": 3496, "fields": {"orig_filename": "Schroeder_Leopold_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 231f.", "author": "", "orig_id": 1411701}}, {"model": "metainfo.source", "pk": 3497, "fields": {"orig_filename": "Schroeder_Sophie_1781_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 232ff.", "author": "", "orig_id": 1411769}}, {"model": "metainfo.source", "pk": 3498, "fields": {"orig_filename": "Schroeder_Wilhelmine_1804_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 234f.", "author": "", "orig_id": 1411773}}, {"model": "metainfo.source", "pk": 3499, "fields": {"orig_filename": "Schroedinger_Rudolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 235", "author": "", "orig_id": 1411775}}, {"model": "metainfo.source", "pk": 3500, "fields": {"orig_filename": "Schroedl_Anton_1820_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 235f.", "author": "", "orig_id": 1411776}}, {"model": "metainfo.source", "pk": 3501, "fields": {"orig_filename": "Schroedl_Norbert-Michael_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 237f.", "author": "", "orig_id": 1411779}}, {"model": "metainfo.source", "pk": 3502, "fields": {"orig_filename": "Schroedl_Norbert_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236f.", "author": "", "orig_id": 1411778}}, {"model": "metainfo.source", "pk": 3503, "fields": {"orig_filename": "Schroeer_Arnold_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 238", "author": "", "orig_id": 1411780}}, {"model": "metainfo.source", "pk": 3504, "fields": {"orig_filename": "Schroeer_Karl-Julius_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 238f.", "author": "", "orig_id": 1411781}}, {"model": "metainfo.source", "pk": 3505, "fields": {"orig_filename": "Schroeer_Robert_1856_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411783}}, {"model": "metainfo.source", "pk": 3506, "fields": {"orig_filename": "Schroeer_Therese_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411784}}, {"model": "metainfo.source", "pk": 3507, "fields": {"orig_filename": "Schroeer_Tobias-Gottfried_1791_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240f.", "author": "", "orig_id": 1411785}}, {"model": "metainfo.source", "pk": 3508, "fields": {"orig_filename": "Schroell_Josef-Anton_1820_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 242", "author": "", "orig_id": 1411787}}, {"model": "metainfo.source", "pk": 3509, "fields": {"orig_filename": "Schroeter_Carl-Josef_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411863}}, {"model": "metainfo.source", "pk": 3510, "fields": {"orig_filename": "Schroeter_Ernst-Manfred_1880_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411864}}, {"model": "metainfo.source", "pk": 3511, "fields": {"orig_filename": "Schroeter_Johann-Heinrich-Friedrich_1738_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 242f.", "author": "", "orig_id": 1411788}}, {"model": "metainfo.source", "pk": 3512, "fields": {"orig_filename": "Schroeter_Moritz_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411792}}, {"model": "metainfo.source", "pk": 3513, "fields": {"orig_filename": "Schroeter_Moriz_1813_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243f.", "author": "", "orig_id": 1411791}}, {"model": "metainfo.source", "pk": 3514, "fields": {"orig_filename": "Schroetter-Kristelli_Alfred_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 245f.", "author": "", "orig_id": 1411869}}, {"model": "metainfo.source", "pk": 3515, "fields": {"orig_filename": "Schroetter-Kristelli_Antonie_1828_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 247", "author": "", "orig_id": 1411872}}, {"model": "metainfo.source", "pk": 3516, "fields": {"orig_filename": "Schroetter-Kristelli_Anton_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 246f.", "author": "", "orig_id": 1411871}}, {"model": "metainfo.source", "pk": 3517, "fields": {"orig_filename": "Schroetter-Kristelli_Hermann_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 247f.", "author": "", "orig_id": 1411873}}, {"model": "metainfo.source", "pk": 3518, "fields": {"orig_filename": "Schroetter-Kristelli_Leopold_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 248f.", "author": "", "orig_id": 1411874}}, {"model": "metainfo.source", "pk": 3519, "fields": {"orig_filename": "Schroetter_Bernhard_1772_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411865}}, {"model": "metainfo.source", "pk": 3520, "fields": {"orig_filename": "Schroetter_Hans_1891_1965.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 246", "author": "", "orig_id": 1411870}}, {"model": "metainfo.source", "pk": 3521, "fields": {"orig_filename": "Schroetter_Hugo_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244f.", "author": "", "orig_id": 1411866}}, {"model": "metainfo.source", "pk": 3522, "fields": {"orig_filename": "Schorisch_Robert_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 142f.", "author": "", "orig_id": 1411029}}, {"model": "metainfo.source", "pk": 3523, "fields": {"orig_filename": "Schornboeck_Alois_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 144", "author": "", "orig_id": 1411032}}, {"model": "metainfo.source", "pk": 3524, "fields": {"orig_filename": "Schornstein_Max_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 144f.", "author": "", "orig_id": 1411033}}, {"model": "metainfo.source", "pk": 3525, "fields": {"orig_filename": "Schorn_Johann_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 143", "author": "", "orig_id": 1411030}}, {"model": "metainfo.source", "pk": 3526, "fields": {"orig_filename": "Schorn_Josef_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 143f.", "author": "", "orig_id": 1411031}}, {"model": "metainfo.source", "pk": 3527, "fields": {"orig_filename": "Schorr_Anshel_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 145", "author": "", "orig_id": 1411034}}, {"model": "metainfo.source", "pk": 3528, "fields": {"orig_filename": "Schorr_Mayer_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 145f.", "author": "", "orig_id": 1411035}}, {"model": "metainfo.source", "pk": 3529, "fields": {"orig_filename": "Schorr_Moses_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 146f.", "author": "", "orig_id": 1411036}}, {"model": "metainfo.source", "pk": 3530, "fields": {"orig_filename": "Schorr_Naphtali-Mendel_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147", "author": "", "orig_id": 1411038}}, {"model": "metainfo.source", "pk": 3531, "fields": {"orig_filename": "Schorr_Osias-Heschel_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147", "author": "", "orig_id": 1411037}}, {"model": "metainfo.source", "pk": 3532, "fields": {"orig_filename": "Schor_Baruch_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 141", "author": "", "orig_id": 1411026}}, {"model": "metainfo.source", "pk": 3533, "fields": {"orig_filename": "Schosberger-Tornya_Heinrich_1833_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 148", "author": "", "orig_id": 1411040}}, {"model": "metainfo.source", "pk": 3534, "fields": {"orig_filename": "Schosberger-Tornya_Sigmund_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147f.", "author": "", "orig_id": 1411039}}, {"model": "metainfo.source", "pk": 3535, "fields": {"orig_filename": "Schosberger-Tornya_Simon-Wolf_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 148f.", "author": "", "orig_id": 1411041}}, {"model": "metainfo.source", "pk": 3536, "fields": {"orig_filename": "Schossel_Andras_1824_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 149", "author": "", "orig_id": 1411042}}, {"model": "metainfo.source", "pk": 3537, "fields": {"orig_filename": "Schosser_Anton_1801_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 149f.", "author": "", "orig_id": 1411043}}, {"model": "metainfo.source", "pk": 3538, "fields": {"orig_filename": "Schottky_Julius-Max_1797_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 153f.", "author": "", "orig_id": 1411122}}, {"model": "metainfo.source", "pk": 3539, "fields": {"orig_filename": "Schottlaender_Julius_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 154f.", "author": "", "orig_id": 1411123}}, {"model": "metainfo.source", "pk": 3540, "fields": {"orig_filename": "Schott_Anselm_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 150", "author": "", "orig_id": 1411044}}, {"model": "metainfo.source", "pk": 3541, "fields": {"orig_filename": "Schott_Anton_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 150f.", "author": "", "orig_id": 1411045}}, {"model": "metainfo.source", "pk": 3542, "fields": {"orig_filename": "Schott_Ferdinand_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 151", "author": "", "orig_id": 1411046}}, {"model": "metainfo.source", "pk": 3543, "fields": {"orig_filename": "Schott_Heinrich-Wilhelm_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 152f.", "author": "", "orig_id": 1411120}}, {"model": "metainfo.source", "pk": 3544, "fields": {"orig_filename": "Schott_Heinrich_1759_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 151f.", "author": "", "orig_id": 1411119}}, {"model": "metainfo.source", "pk": 3545, "fields": {"orig_filename": "Schouppe_Alfred_1812_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 155", "author": "", "orig_id": 1411124}}, {"model": "metainfo.source", "pk": 3546, "fields": {"orig_filename": "Schowanek_Johann-Karl-Andreas_1905_1964.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 156", "author": "", "orig_id": 1411126}}, {"model": "metainfo.source", "pk": 3547, "fields": {"orig_filename": "Schowanek_Johann_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 155f.", "author": "", "orig_id": 1411125}}, {"model": "metainfo.source", "pk": 3548, "fields": {"orig_filename": "Schrader_Clemens_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 156f.", "author": "", "orig_id": 1411127}}, {"model": "metainfo.source", "pk": 3549, "fields": {"orig_filename": "Schrader_Hans_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 157f.", "author": "", "orig_id": 1411128}}, {"model": "metainfo.source", "pk": 3550, "fields": {"orig_filename": "Schraffl_Joseph_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 158f.", "author": "", "orig_id": 1411130}}, {"model": "metainfo.source", "pk": 3551, "fields": {"orig_filename": "Schramek_Emilie_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164", "author": "", "orig_id": 1411140}}, {"model": "metainfo.source", "pk": 3552, "fields": {"orig_filename": "Schramek_Johann-Josef_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164f.", "author": "", "orig_id": 1411142}}, {"model": "metainfo.source", "pk": 3553, "fields": {"orig_filename": "Schramek_Josef_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 165", "author": "", "orig_id": 1411143}}, {"model": "metainfo.source", "pk": 3554, "fields": {"orig_filename": "Schramek_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164", "author": "", "orig_id": 1411141}}, {"model": "metainfo.source", "pk": 3555, "fields": {"orig_filename": "Schramek_Max_1879_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 165f.", "author": "", "orig_id": 1411144}}, {"model": "metainfo.source", "pk": 3556, "fields": {"orig_filename": "Schraml_Carl_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 166", "author": "", "orig_id": 1411213}}, {"model": "metainfo.source", "pk": 3557, "fields": {"orig_filename": "Schraml_Franz_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 166f.", "author": "", "orig_id": 1411214}}, {"model": "metainfo.source", "pk": 3558, "fields": {"orig_filename": "Schramm-Zittau_Rudolf_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 170f.", "author": "", "orig_id": 1411220}}, {"model": "metainfo.source", "pk": 3559, "fields": {"orig_filename": "Schrammel_Anton_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171", "author": "", "orig_id": 1411221}}, {"model": "metainfo.source", "pk": 3560, "fields": {"orig_filename": "Schrammel_Joseph_1852_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171f.", "author": "", "orig_id": 1411223}}, {"model": "metainfo.source", "pk": 3561, "fields": {"orig_filename": "Schramm_Anna_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 167f.", "author": "", "orig_id": 1411215}}, {"model": "metainfo.source", "pk": 3562, "fields": {"orig_filename": "Schramm_August_1907_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 168", "author": "", "orig_id": 1411216}}, {"model": "metainfo.source", "pk": 3563, "fields": {"orig_filename": "Schramm_Hilary-Paulin_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 168f.", "author": "", "orig_id": 1411217}}, {"model": "metainfo.source", "pk": 3564, "fields": {"orig_filename": "Schramm_Johann-Heinrich_1810_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 169", "author": "", "orig_id": 1411218}}, {"model": "metainfo.source", "pk": 3565, "fields": {"orig_filename": "Schramm_Julian_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 169f.", "author": "", "orig_id": 1411219}}, {"model": "metainfo.source", "pk": 3566, "fields": {"orig_filename": "Schram_Adolf_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 159", "author": "", "orig_id": 1411131}}, {"model": "metainfo.source", "pk": 3567, "fields": {"orig_filename": "Schram_Alois-Hans_1864_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 159f.", "author": "", "orig_id": 1411132}}, {"model": "metainfo.source", "pk": 3568, "fields": {"orig_filename": "Schram_August_1843_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 160", "author": "", "orig_id": 1411133}}, {"model": "metainfo.source", "pk": 3569, "fields": {"orig_filename": "Schram_Franz-Leopold-Matthias_1758_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 160f.", "author": "", "orig_id": 1411134}}, {"model": "metainfo.source", "pk": 3570, "fields": {"orig_filename": "Schram_Josef_1831_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 161", "author": "", "orig_id": 1411135}}, {"model": "metainfo.source", "pk": 3571, "fields": {"orig_filename": "Schram_Karl_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 161f.", "author": "", "orig_id": 1411136}}, {"model": "metainfo.source", "pk": 3572, "fields": {"orig_filename": "Schram_Robert-Gustav_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 162f.", "author": "", "orig_id": 1411137}}, {"model": "metainfo.source", "pk": 3573, "fields": {"orig_filename": "Schram_Stephan_1821_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 163", "author": "", "orig_id": 1411138}}, {"model": "metainfo.source", "pk": 3574, "fields": {"orig_filename": "Schram_Wilhelm-Karl_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 163f.", "author": "", "orig_id": 1411139}}, {"model": "metainfo.source", "pk": 3575, "fields": {"orig_filename": "Schrangl_Franz_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 173", "author": "", "orig_id": 1411224}}, {"model": "metainfo.source", "pk": 3576, "fields": {"orig_filename": "Schranil_Josef_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 173f.", "author": "", "orig_id": 1411225}}, {"model": "metainfo.source", "pk": 3577, "fields": {"orig_filename": "Schranil_Wenzel_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 174", "author": "", "orig_id": 1411226}}, {"model": "metainfo.source", "pk": 3578, "fields": {"orig_filename": "Schranka_Eduard-Maria_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 177", "author": "", "orig_id": 1411231}}, {"model": "metainfo.source", "pk": 3579, "fields": {"orig_filename": "Schrank_Franz-De-Paula_1747_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 174f.", "author": "", "orig_id": 1411227}}, {"model": "metainfo.source", "pk": 3580, "fields": {"orig_filename": "Schrank_Johann-Ferdinand_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 175f.", "author": "", "orig_id": 1411228}}, {"model": "metainfo.source", "pk": 3581, "fields": {"orig_filename": "Schrank_Josef_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 176", "author": "", "orig_id": 1411229}}, {"model": "metainfo.source", "pk": 3582, "fields": {"orig_filename": "Schrank_Ludwig_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 176f.", "author": "", "orig_id": 1411230}}, {"model": "metainfo.source", "pk": 3583, "fields": {"orig_filename": "Schrantz_Alfred_1867_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 177f.", "author": "", "orig_id": 1411232}}, {"model": "metainfo.source", "pk": 3584, "fields": {"orig_filename": "Schrantz_Johann_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411304}}, {"model": "metainfo.source", "pk": 3585, "fields": {"orig_filename": "Schrantz_Otto_1871_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411233}}, {"model": "metainfo.source", "pk": 3586, "fields": {"orig_filename": "Schrantz_Wilhelm_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411235}}, {"model": "metainfo.source", "pk": 3587, "fields": {"orig_filename": "Schrattenbach_Vinzenz-Joseph_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 180f.", "author": "", "orig_id": 1411308}}, {"model": "metainfo.source", "pk": 3588, "fields": {"orig_filename": "Schratt_Johann-Chrysostomus_1773_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 179", "author": "", "orig_id": 1411306}}, {"model": "metainfo.source", "pk": 3589, "fields": {"orig_filename": "Schratt_Johann_1803_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178f.", "author": "", "orig_id": 1411305}}, {"model": "metainfo.source", "pk": 3590, "fields": {"orig_filename": "Schratt_Katharina_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 179f.", "author": "", "orig_id": 1411307}}, {"model": "metainfo.source", "pk": 3591, "fields": {"orig_filename": "Schrauf_Albrecht_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 181f.", "author": "", "orig_id": 1411309}}, {"model": "metainfo.source", "pk": 3592, "fields": {"orig_filename": "Schrauf_Karl_1835_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 182f.", "author": "", "orig_id": 1411310}}, {"model": "metainfo.source", "pk": 3593, "fields": {"orig_filename": "Schreckenthal_Hannes_1873_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183", "author": "", "orig_id": 1411312}}, {"model": "metainfo.source", "pk": 3594, "fields": {"orig_filename": "Schrecker_Ignaz-Franz_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183f.", "author": "", "orig_id": 1411314}}, {"model": "metainfo.source", "pk": 3595, "fields": {"orig_filename": "Schreck_Adam_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183", "author": "", "orig_id": 1411311}}, {"model": "metainfo.source", "pk": 3596, "fields": {"orig_filename": "Schreder_Julius-Aloysius_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 184f.", "author": "", "orig_id": 1411316}}, {"model": "metainfo.source", "pk": 3597, "fields": {"orig_filename": "Schreder_Karl_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185", "author": "", "orig_id": 1411317}}, {"model": "metainfo.source", "pk": 3598, "fields": {"orig_filename": "Schreder_Rudolf_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185", "author": "", "orig_id": 1411318}}, {"model": "metainfo.source", "pk": 3599, "fields": {"orig_filename": "Schreiber-Krieger_Adele_1871_1957.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 196", "author": "", "orig_id": 1411416}}, {"model": "metainfo.source", "pk": 3600, "fields": {"orig_filename": "Schreibers_Joseph-Ludwig_1793_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 198f.", "author": "", "orig_id": 1411421}}, {"model": "metainfo.source", "pk": 3601, "fields": {"orig_filename": "Schreibers_Karl-Franz_1775_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 199f.", "author": "", "orig_id": 1411422}}, {"model": "metainfo.source", "pk": 3602, "fields": {"orig_filename": "Schreiber_Abraham-Samuel-Benjamin-Wolf_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185f.", "author": "", "orig_id": 1411319}}, {"model": "metainfo.source", "pk": 3603, "fields": {"orig_filename": "Schreiber_Adalbert_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191", "author": "", "orig_id": 1411405}}, {"model": "metainfo.source", "pk": 3604, "fields": {"orig_filename": "Schreiber_Adolf_1881_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 186", "author": "", "orig_id": 1411320}}, {"model": "metainfo.source", "pk": 3605, "fields": {"orig_filename": "Schreiber_Alex_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411403}}, {"model": "metainfo.source", "pk": 3606, "fields": {"orig_filename": "Schreiber_Alfred_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 186f.", "author": "", "orig_id": 1411321}}, {"model": "metainfo.source", "pk": 3607, "fields": {"orig_filename": "Schreiber_August_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 187", "author": "", "orig_id": 1411322}}, {"model": "metainfo.source", "pk": 3608, "fields": {"orig_filename": "Schreiber_Bernhard_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 187f.", "author": "", "orig_id": 1411323}}, {"model": "metainfo.source", "pk": 3609, "fields": {"orig_filename": "Schreiber_Clara_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 188", "author": "", "orig_id": 1411324}}, {"model": "metainfo.source", "pk": 3610, "fields": {"orig_filename": "Schreiber_David_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 188f.", "author": "", "orig_id": 1411325}}, {"model": "metainfo.source", "pk": 3611, "fields": {"orig_filename": "Schreiber_Egid_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 189", "author": "", "orig_id": 1411326}}, {"model": "metainfo.source", "pk": 3612, "fields": {"orig_filename": "Schreiber_Emanuel_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 189f.", "author": "", "orig_id": 1411327}}, {"model": "metainfo.source", "pk": 3613, "fields": {"orig_filename": "Schreiber_Franz_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411328}}, {"model": "metainfo.source", "pk": 3614, "fields": {"orig_filename": "Schreiber_Franz_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411402}}, {"model": "metainfo.source", "pk": 3615, "fields": {"orig_filename": "Schreiber_Franz_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190f.", "author": "", "orig_id": 1411404}}, {"model": "metainfo.source", "pk": 3616, "fields": {"orig_filename": "Schreiber_Friedrich_1879_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191", "author": "", "orig_id": 1411407}}, {"model": "metainfo.source", "pk": 3617, "fields": {"orig_filename": "Schreiber_Hans_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191f.", "author": "", "orig_id": 1411408}}, {"model": "metainfo.source", "pk": 3618, "fields": {"orig_filename": "Schreiber_Heinrich_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 192f.", "author": "", "orig_id": 1411409}}, {"model": "metainfo.source", "pk": 3619, "fields": {"orig_filename": "Schreiber_Johann-Max_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194", "author": "", "orig_id": 1411412}}, {"model": "metainfo.source", "pk": 3620, "fields": {"orig_filename": "Schreiber_Johann_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 193f.", "author": "", "orig_id": 1411410}}, {"model": "metainfo.source", "pk": 3621, "fields": {"orig_filename": "Schreiber_Johann_1845_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194", "author": "", "orig_id": 1411411}}, {"model": "metainfo.source", "pk": 3622, "fields": {"orig_filename": "Schreiber_Josef_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194f.", "author": "", "orig_id": 1411413}}, {"model": "metainfo.source", "pk": 3623, "fields": {"orig_filename": "Schoenthaler_Franz_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 95", "author": "", "orig_id": 1405890}}, {"model": "metainfo.source", "pk": 3624, "fields": {"orig_filename": "Schoenthaler_Jakob_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 95f.", "author": "", "orig_id": 1405891}}, {"model": "metainfo.source", "pk": 3625, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Franz-Simon_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 97", "author": "", "orig_id": 1405893}}, {"model": "metainfo.source", "pk": 3626, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Franz_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 96f.", "author": "", "orig_id": 1405892}}, {"model": "metainfo.source", "pk": 3627, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Paul_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 97f.", "author": "", "orig_id": 1405894}}, {"model": "metainfo.source", "pk": 3628, "fields": {"orig_filename": "Schoenwisner_Stephan_1738_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 98", "author": "", "orig_id": 1405896}}, {"model": "metainfo.source", "pk": 3629, "fields": {"orig_filename": "Schoen_Bruno_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 30f.", "author": "", "orig_id": 1405446}}, {"model": "metainfo.source", "pk": 3630, "fields": {"orig_filename": "Schoen_Eduard_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 31f.", "author": "", "orig_id": 1405447}}, {"model": "metainfo.source", "pk": 3631, "fields": {"orig_filename": "Schoen_Friedrich_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 32f.", "author": "", "orig_id": 1405448}}, {"model": "metainfo.source", "pk": 3632, "fields": {"orig_filename": "Schoen_Jacob_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 33", "author": "", "orig_id": 1405452}}, {"model": "metainfo.source", "pk": 3633, "fields": {"orig_filename": "Schoen_Johann-Bapt_1841_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 34f.", "author": "", "orig_id": 1405454}}, {"model": "metainfo.source", "pk": 3634, "fields": {"orig_filename": "Schoen_Johann-Carl_1805_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 35", "author": "", "orig_id": 1405455}}, {"model": "metainfo.source", "pk": 3635, "fields": {"orig_filename": "Schoen_Johann-Georg_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 35f.", "author": "", "orig_id": 1405456}}, {"model": "metainfo.source", "pk": 3636, "fields": {"orig_filename": "Schoen_Johann_1802_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 33f.", "author": "", "orig_id": 1405453}}, {"model": "metainfo.source", "pk": 3637, "fields": {"orig_filename": "Schoen_Josef_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 36f.", "author": "", "orig_id": 1405457}}, {"model": "metainfo.source", "pk": 3638, "fields": {"orig_filename": "Schoen_Josef_1809_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 37", "author": "", "orig_id": 1405458}}, {"model": "metainfo.source", "pk": 3639, "fields": {"orig_filename": "Schoen_Josef_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 37f.", "author": "", "orig_id": 1405459}}, {"model": "metainfo.source", "pk": 3640, "fields": {"orig_filename": "Schoen_Karl_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38", "author": "", "orig_id": 1405461}}, {"model": "metainfo.source", "pk": 3641, "fields": {"orig_filename": "Schoen_Lorenz_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38f.", "author": "", "orig_id": 1405462}}, {"model": "metainfo.source", "pk": 3642, "fields": {"orig_filename": "Schoen_Luise_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405463}}, {"model": "metainfo.source", "pk": 3643, "fields": {"orig_filename": "Schoen_Moritz_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405464}}, {"model": "metainfo.source", "pk": 3644, "fields": {"orig_filename": "Schoepf-Merei_Agoston_1805_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 105", "author": "", "orig_id": 1405959}}, {"model": "metainfo.source", "pk": 3645, "fields": {"orig_filename": "Schoepfer_Aemilian_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 105ff.", "author": "", "orig_id": 1405962}}, {"model": "metainfo.source", "pk": 3646, "fields": {"orig_filename": "Schoepfer_Franz-Xav_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 107", "author": "", "orig_id": 1405963}}, {"model": "metainfo.source", "pk": 3647, "fields": {"orig_filename": "Schoepfer_Friedrich-Anton_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 107f.", "author": "", "orig_id": 1405964}}, {"model": "metainfo.source", "pk": 3648, "fields": {"orig_filename": "Schoepfer_Heinrich_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 108", "author": "", "orig_id": 1405965}}, {"model": "metainfo.source", "pk": 3649, "fields": {"orig_filename": "Schoepfer_Jakob_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 108f.", "author": "", "orig_id": 1405966}}, {"model": "metainfo.source", "pk": 3650, "fields": {"orig_filename": "Schoepfer_Mathaeus-Michael_1739_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 109", "author": "", "orig_id": 1405967}}, {"model": "metainfo.source", "pk": 3651, "fields": {"orig_filename": "Schoepfleuthner_Anton_1845_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 109f.", "author": "", "orig_id": 1405968}}, {"model": "metainfo.source", "pk": 3652, "fields": {"orig_filename": "Schoepf_Albin-Franz_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 99", "author": "", "orig_id": 1405897}}, {"model": "metainfo.source", "pk": 3653, "fields": {"orig_filename": "Schoepf_Alois_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 102", "author": "", "orig_id": 1405954}}, {"model": "metainfo.source", "pk": 3654, "fields": {"orig_filename": "Schoepf_Bertrand_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 99f.", "author": "", "orig_id": 1405898}}, {"model": "metainfo.source", "pk": 3655, "fields": {"orig_filename": "Schoepf_Franz_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100", "author": "", "orig_id": 1405899}}, {"model": "metainfo.source", "pk": 3656, "fields": {"orig_filename": "Schoepf_Heinrich_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100", "author": "", "orig_id": 1442214}}, {"model": "metainfo.source", "pk": 3657, "fields": {"orig_filename": "Schoepf_Ignaz_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100f.", "author": "", "orig_id": 1405900}}, {"model": "metainfo.source", "pk": 3658, "fields": {"orig_filename": "Schoepf_Johann-Bapt_1824_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 101f.", "author": "", "orig_id": 1405902}}, {"model": "metainfo.source", "pk": 3659, "fields": {"orig_filename": "Schoepf_Johann_1811_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 101", "author": "", "orig_id": 1405901}}, {"model": "metainfo.source", "pk": 3660, "fields": {"orig_filename": "Schoepf_Josef_1745_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 102f.", "author": "", "orig_id": 1405955}}, {"model": "metainfo.source", "pk": 3661, "fields": {"orig_filename": "Schoepf_Josef_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 103", "author": "", "orig_id": 1405956}}, {"model": "metainfo.source", "pk": 3662, "fields": {"orig_filename": "Schoepf_Joseph-Anton_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 103f.", "author": "", "orig_id": 1405957}}, {"model": "metainfo.source", "pk": 3663, "fields": {"orig_filename": "Schoepf_Lorenz_1793_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104", "author": "", "orig_id": 1405960}}, {"model": "metainfo.source", "pk": 3664, "fields": {"orig_filename": "Schoepf_Peter-Paul_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104f.", "author": "", "orig_id": 1405958}}, {"model": "metainfo.source", "pk": 3665, "fields": {"orig_filename": "Schoepf_Peter_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104", "author": "", "orig_id": 1405961}}, {"model": "metainfo.source", "pk": 3666, "fields": {"orig_filename": "Schoepl_Gustav_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 110f.", "author": "", "orig_id": 1405969}}, {"model": "metainfo.source", "pk": 3667, "fields": {"orig_filename": "Schoeppe_Karl_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 111", "author": "", "orig_id": 1405970}}, {"model": "metainfo.source", "pk": 3668, "fields": {"orig_filename": "Schoeppe_Karl_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 111f.", "author": "", "orig_id": 1405971}}, {"model": "metainfo.source", "pk": 3669, "fields": {"orig_filename": "Schoeppl_Hugo_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 112", "author": "", "orig_id": 1405972}}, {"model": "metainfo.source", "pk": 3670, "fields": {"orig_filename": "Schoesler_Joseph-Johann_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 112f.", "author": "", "orig_id": 1405973}}, {"model": "metainfo.source", "pk": 3671, "fields": {"orig_filename": "Schofka_Octavius_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 113f.", "author": "", "orig_id": 1412239}}, {"model": "metainfo.source", "pk": 3672, "fields": {"orig_filename": "Schoibl_Leopold_1786_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 114", "author": "", "orig_id": 1412240}}, {"model": "metainfo.source", "pk": 3673, "fields": {"orig_filename": "Schoiswohl_Michael_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 114f.", "author": "", "orig_id": 1412241}}, {"model": "metainfo.source", "pk": 3674, "fields": {"orig_filename": "Scholcz_Szepesi-Rudolf_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 115", "author": "", "orig_id": 1412242}}, {"model": "metainfo.source", "pk": 3675, "fields": {"orig_filename": "Scholley_Otto_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 120", "author": "", "orig_id": 1412323}}, {"model": "metainfo.source", "pk": 3676, "fields": {"orig_filename": "Schollich_Ernst_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 120f.", "author": "", "orig_id": 1412324}}, {"model": "metainfo.source", "pk": 3677, "fields": {"orig_filename": "Scholl_Emil_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 115f.", "author": "", "orig_id": 1412243}}, {"model": "metainfo.source", "pk": 3678, "fields": {"orig_filename": "Scholl_Franz_1772_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 116f.", "author": "", "orig_id": 1412318}}, {"model": "metainfo.source", "pk": 3679, "fields": {"orig_filename": "Scholl_Georg_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 117", "author": "", "orig_id": 1412319}}, {"model": "metainfo.source", "pk": 3680, "fields": {"orig_filename": "Scholl_Heinrich_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118", "author": "", "orig_id": 1412320}}, {"model": "metainfo.source", "pk": 3681, "fields": {"orig_filename": "Scholl_Roland_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 119f.", "author": "", "orig_id": 1412322}}, {"model": "metainfo.source", "pk": 3682, "fields": {"orig_filename": "Scholtys_Hans-Heinz_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 121f.", "author": "", "orig_id": 1412325}}, {"model": "metainfo.source", "pk": 3683, "fields": {"orig_filename": "Scholtz-Matheocz_Johann-Emil_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123f.", "author": "", "orig_id": 1412331}}, {"model": "metainfo.source", "pk": 3684, "fields": {"orig_filename": "Scholtz_August_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122", "author": "", "orig_id": 1412326}}, {"model": "metainfo.source", "pk": 3685, "fields": {"orig_filename": "Scholtz_Friedrich_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122", "author": "", "orig_id": 1412327}}, {"model": "metainfo.source", "pk": 3686, "fields": {"orig_filename": "Scholtz_Gustav_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122f.", "author": "", "orig_id": 1412328}}, {"model": "metainfo.source", "pk": 3687, "fields": {"orig_filename": "Scholtz_Johan_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124", "author": "", "orig_id": 1412332}}, {"model": "metainfo.source", "pk": 3688, "fields": {"orig_filename": "Scholtz_Julius_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123", "author": "", "orig_id": 1412329}}, {"model": "metainfo.source", "pk": 3689, "fields": {"orig_filename": "Scholtz_Karl-August_1799_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123f.", "author": "", "orig_id": 1412330}}, {"model": "metainfo.source", "pk": 3690, "fields": {"orig_filename": "Scholz-Zelezny_Helene_1882_1974.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130", "author": "", "orig_id": 1412417}}, {"model": "metainfo.source", "pk": 3691, "fields": {"orig_filename": "Scholz_Adolf_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124", "author": "", "orig_id": 1412333}}, {"model": "metainfo.source", "pk": 3692, "fields": {"orig_filename": "Scholz_Alois_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124f.", "author": "", "orig_id": 1412334}}, {"model": "metainfo.source", "pk": 3693, "fields": {"orig_filename": "Scholz_Auguste_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 125", "author": "", "orig_id": 1412335}}, {"model": "metainfo.source", "pk": 3694, "fields": {"orig_filename": "Scholz_Benjamin_1786_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 125f.", "author": "", "orig_id": 1412336}}, {"model": "metainfo.source", "pk": 3695, "fields": {"orig_filename": "Scholz_Eduard_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 126f.", "author": "", "orig_id": 1412337}}, {"model": "metainfo.source", "pk": 3696, "fields": {"orig_filename": "Scholz_Erhard-Hugo_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412410}}, {"model": "metainfo.source", "pk": 3697, "fields": {"orig_filename": "Scholz_Heinrich-Karl_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127f.", "author": "", "orig_id": 1412412}}, {"model": "metainfo.source", "pk": 3698, "fields": {"orig_filename": "Scholz_Josefa_1765_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 129f.", "author": "", "orig_id": 1412414}}, {"model": "metainfo.source", "pk": 3699, "fields": {"orig_filename": "Scholz_Josef_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 128f.", "author": "", "orig_id": 1412413}}, {"model": "metainfo.source", "pk": 3700, "fields": {"orig_filename": "Scholz_Leopold_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 129", "author": "", "orig_id": 1412415}}, {"model": "metainfo.source", "pk": 3701, "fields": {"orig_filename": "Scholz_Marie_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130", "author": "", "orig_id": 1412416}}, {"model": "metainfo.source", "pk": 3702, "fields": {"orig_filename": "Scholz_Maximilian_1743_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130f.", "author": "", "orig_id": 1412418}}, {"model": "metainfo.source", "pk": 3703, "fields": {"orig_filename": "Scholz_Paul_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 131", "author": "", "orig_id": 1412419}}, {"model": "metainfo.source", "pk": 3704, "fields": {"orig_filename": "Scholz_Roman_1912_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 131f.", "author": "", "orig_id": 1412420}}, {"model": "metainfo.source", "pk": 3705, "fields": {"orig_filename": "Scholz_Wenzel_1787_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 132ff.", "author": "", "orig_id": 1412421}}, {"model": "metainfo.source", "pk": 3706, "fields": {"orig_filename": "Scholz_Wilhelm_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 134", "author": "", "orig_id": 1412422}}, {"model": "metainfo.source", "pk": 3707, "fields": {"orig_filename": "Scholz_Wilhelm_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 134f.", "author": "", "orig_id": 1412423}}, {"model": "metainfo.source", "pk": 3708, "fields": {"orig_filename": "Scholz_Wilhelm_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 135", "author": "", "orig_id": 1412424}}, {"model": "metainfo.source", "pk": 3709, "fields": {"orig_filename": "Schonka_Franz-Xav_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136", "author": "", "orig_id": 1412427}}, {"model": "metainfo.source", "pk": 3710, "fields": {"orig_filename": "Schonta-Seedank_Carl_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136", "author": "", "orig_id": 1412429}}, {"model": "metainfo.source", "pk": 3711, "fields": {"orig_filename": "Schonta-Seedank_Emmerich-Zeno_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136f.", "author": "", "orig_id": 1412428}}, {"model": "metainfo.source", "pk": 3712, "fields": {"orig_filename": "Schoof_Heinrich_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 137f.", "author": "", "orig_id": 1412430}}, {"model": "metainfo.source", "pk": 3713, "fields": {"orig_filename": "Schoosleitner_Franz_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 138f.", "author": "", "orig_id": 1412431}}, {"model": "metainfo.source", "pk": 3714, "fields": {"orig_filename": "Schopf_Franz_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139", "author": "", "orig_id": 1412432}}, {"model": "metainfo.source", "pk": 3715, "fields": {"orig_filename": "Schopf_Johann-Ev_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139", "author": "", "orig_id": 1412433}}, {"model": "metainfo.source", "pk": 3716, "fields": {"orig_filename": "Schopf_Wenzel-Gustav_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139f.", "author": "", "orig_id": 1411022}}, {"model": "metainfo.source", "pk": 3717, "fields": {"orig_filename": "Schopper_Klemens-Isidor_1878_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140", "author": "", "orig_id": 1411024}}, {"model": "metainfo.source", "pk": 3718, "fields": {"orig_filename": "Schopper_Valentin_1771_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140f.", "author": "", "orig_id": 1411025}}, {"model": "metainfo.source", "pk": 3719, "fields": {"orig_filename": "Schopp_Norbert_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140", "author": "", "orig_id": 1411023}}, {"model": "metainfo.source", "pk": 3720, "fields": {"orig_filename": "Schordan_Zsigmond_1794_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 141f.", "author": "", "orig_id": 1411027}}, {"model": "metainfo.source", "pk": 3721, "fields": {"orig_filename": "Schoreys_Frantisek-Josef_1872_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 142", "author": "", "orig_id": 1411028}}, {"model": "metainfo.source", "pk": 3722, "fields": {"orig_filename": "Schoenauer_Franz_1913_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 44", "author": "", "orig_id": 1405607}}, {"model": "metainfo.source", "pk": 3723, "fields": {"orig_filename": "Schoenauer_Johann-Michael_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45", "author": "", "orig_id": 1405620}}, {"model": "metainfo.source", "pk": 3724, "fields": {"orig_filename": "Schoenauer_Johann-Nep_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45", "author": "", "orig_id": 1405621}}, {"model": "metainfo.source", "pk": 3725, "fields": {"orig_filename": "Schoenauer_Johann_1778_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 44f.", "author": "", "orig_id": 1405608}}, {"model": "metainfo.source", "pk": 3726, "fields": {"orig_filename": "Schoenauer_Magdalena_1778_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45f.", "author": "", "orig_id": 1405622}}, {"model": "metainfo.source", "pk": 3727, "fields": {"orig_filename": "Schoenauer_Otto_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 46f.", "author": "", "orig_id": 1405623}}, {"model": "metainfo.source", "pk": 3728, "fields": {"orig_filename": "Schoenau_Johann-Nep_1753_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 43f.", "author": "", "orig_id": 1405605}}, {"model": "metainfo.source", "pk": 3729, "fields": {"orig_filename": "Schoenau_Johann_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 43", "author": "", "orig_id": 1405604}}, {"model": "metainfo.source", "pk": 3730, "fields": {"orig_filename": "Schoenbach_Anton-Emanuel_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 47f.", "author": "", "orig_id": 1405624}}, {"model": "metainfo.source", "pk": 3731, "fields": {"orig_filename": "Schoenbach_Josef_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48", "author": "", "orig_id": 1405625}}, {"model": "metainfo.source", "pk": 3732, "fields": {"orig_filename": "Schoenbauer_Vinzenz_1780_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48", "author": "", "orig_id": 1405626}}, {"model": "metainfo.source", "pk": 3733, "fields": {"orig_filename": "Schoenberger_Andreas-Corsinus_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49f.", "author": "", "orig_id": 1405630}}, {"model": "metainfo.source", "pk": 3734, "fields": {"orig_filename": "Schoenberger_Anton_1830_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 50", "author": "", "orig_id": 1405631}}, {"model": "metainfo.source", "pk": 3735, "fields": {"orig_filename": "Schoenberger_Bela_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 50f.", "author": "", "orig_id": 1405632}}, {"model": "metainfo.source", "pk": 3736, "fields": {"orig_filename": "Schoenberger_Bruno_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405633}}, {"model": "metainfo.source", "pk": 3737, "fields": {"orig_filename": "Schoenberger_Franz-Anton_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51f.", "author": "", "orig_id": 1405635}}, {"model": "metainfo.source", "pk": 3738, "fields": {"orig_filename": "Schoenberger_Hugo_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52", "author": "", "orig_id": 1405638}}, {"model": "metainfo.source", "pk": 3739, "fields": {"orig_filename": "Schoenberger_Hyazinth-Maria_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52f.", "author": "", "orig_id": 1405639}}, {"model": "metainfo.source", "pk": 3740, "fields": {"orig_filename": "Schoenberger_Lorenz-Adolf_1768_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 53", "author": "", "orig_id": 1405640}}, {"model": "metainfo.source", "pk": 3741, "fields": {"orig_filename": "Schoenberger_Richard_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52", "author": "", "orig_id": 1405636}}, {"model": "metainfo.source", "pk": 3742, "fields": {"orig_filename": "Schoenberger_Victor_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 53f.", "author": "", "orig_id": 1405641}}, {"model": "metainfo.source", "pk": 3743, "fields": {"orig_filename": "Schoenberg_Adolf_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405628}}, {"model": "metainfo.source", "pk": 3744, "fields": {"orig_filename": "Schoenberg_Johann-Nep_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48f.", "author": "", "orig_id": 1405627}}, {"model": "metainfo.source", "pk": 3745, "fields": {"orig_filename": "Schoenbichler_Carl-Hans_1920_1992.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55", "author": "", "orig_id": 1405755}}, {"model": "metainfo.source", "pk": 3746, "fields": {"orig_filename": "Schoenbichler_Johann-Bapt_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 54f.", "author": "", "orig_id": 1405642}}, {"model": "metainfo.source", "pk": 3747, "fields": {"orig_filename": "Schoenbichler_Johann-Emanuel_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55", "author": "", "orig_id": 1405644}}, {"model": "metainfo.source", "pk": 3748, "fields": {"orig_filename": "Schoenbichler_Karl_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55f.", "author": "", "orig_id": 1405756}}, {"model": "metainfo.source", "pk": 3749, "fields": {"orig_filename": "Schoenbichler_Philippine_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 54", "author": "", "orig_id": 1405643}}, {"model": "metainfo.source", "pk": 3750, "fields": {"orig_filename": "Schoenborn-Buchheim_Carl-Theodor_1790_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58f.", "author": "", "orig_id": 1405762}}, {"model": "metainfo.source", "pk": 3751, "fields": {"orig_filename": "Schoenborn_Adalbert-Josef_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 56", "author": "", "orig_id": 1405757}}, {"model": "metainfo.source", "pk": 3752, "fields": {"orig_filename": "Schoenborn_Franz-De-Paula_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 56f.", "author": "", "orig_id": 1405758}}, {"model": "metainfo.source", "pk": 3753, "fields": {"orig_filename": "Schoenborn_Friedrich_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 57f.", "author": "", "orig_id": 1405759}}, {"model": "metainfo.source", "pk": 3754, "fields": {"orig_filename": "Schoenborn_Johann_1864_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58", "author": "", "orig_id": 1405761}}, {"model": "metainfo.source", "pk": 3755, "fields": {"orig_filename": "Schoenborn_Karl_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58", "author": "", "orig_id": 1405760}}, {"model": "metainfo.source", "pk": 3756, "fields": {"orig_filename": "Schoenbrunner_Franz-Xav_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60", "author": "", "orig_id": 1405767}}, {"model": "metainfo.source", "pk": 3757, "fields": {"orig_filename": "Schoenbrunner_Ignaz-Johann_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59", "author": "", "orig_id": 1405764}}, {"model": "metainfo.source", "pk": 3758, "fields": {"orig_filename": "Schoenbrunner_Josef_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59f.", "author": "", "orig_id": 1405765}}, {"model": "metainfo.source", "pk": 3759, "fields": {"orig_filename": "Schoenbrunner_Karl_1832_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60", "author": "", "orig_id": 1405766}}, {"model": "metainfo.source", "pk": 3760, "fields": {"orig_filename": "Schoenbrunn_Hugo_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59", "author": "", "orig_id": 1405763}}, {"model": "metainfo.source", "pk": 3761, "fields": {"orig_filename": "Schoenburg-Hartenstein_Alexander_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60f.", "author": "", "orig_id": 1405768}}, {"model": "metainfo.source", "pk": 3762, "fields": {"orig_filename": "Schoenburg-Hartenstein_Alois_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 61f.", "author": "", "orig_id": 1405770}}, {"model": "metainfo.source", "pk": 3763, "fields": {"orig_filename": "Schoenburg-Hartenstein_Eduard_1787_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60f.", "author": "", "orig_id": 1405769}}, {"model": "metainfo.source", "pk": 3764, "fields": {"orig_filename": "Schoenburg-Hartenstein_Johannes_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 62f.", "author": "", "orig_id": 1405771}}, {"model": "metainfo.source", "pk": 3765, "fields": {"orig_filename": "Schoendorfer_Josef_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 63", "author": "", "orig_id": 1405772}}, {"model": "metainfo.source", "pk": 3766, "fields": {"orig_filename": "Schoenecker_Dionys_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64f.", "author": "", "orig_id": 1405776}}, {"model": "metainfo.source", "pk": 3767, "fields": {"orig_filename": "Schoenecker_Eduard_1885_1963.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 65", "author": "", "orig_id": 1405777}}, {"model": "metainfo.source", "pk": 3768, "fields": {"orig_filename": "Schoenefeldt_August_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 65f.", "author": "", "orig_id": 1405778}}, {"model": "metainfo.source", "pk": 3769, "fields": {"orig_filename": "Schoenerer_Alexandrine_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 66", "author": "", "orig_id": 1405780}}, {"model": "metainfo.source", "pk": 3770, "fields": {"orig_filename": "Schoenerer_Georg_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 66ff.", "author": "", "orig_id": 1405781}}, {"model": "metainfo.source", "pk": 3771, "fields": {"orig_filename": "Schoenerer_Mathias_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 68f.", "author": "", "orig_id": 1405782}}, {"model": "metainfo.source", "pk": 3772, "fields": {"orig_filename": "Schoenermark_Ludwig_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 69", "author": "", "orig_id": 1405783}}, {"model": "metainfo.source", "pk": 3773, "fields": {"orig_filename": "Schoeney_Lazarus_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 69f.", "author": "", "orig_id": 1405786}}, {"model": "metainfo.source", "pk": 3774, "fields": {"orig_filename": "Schoene_Hermann_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 63f.", "author": "", "orig_id": 1405773}}, {"model": "metainfo.source", "pk": 3775, "fields": {"orig_filename": "Schoene_Ludwig_1845_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64", "author": "", "orig_id": 1405774}}, {"model": "metainfo.source", "pk": 3776, "fields": {"orig_filename": "Schoene_Moric_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64", "author": "", "orig_id": 1405775}}, {"model": "metainfo.source", "pk": 3777, "fields": {"orig_filename": "Schoenfeldt_Karl_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405814}}, {"model": "metainfo.source", "pk": 3778, "fields": {"orig_filename": "Schoenfeldt_Luise_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 80", "author": "", "orig_id": 1405818}}, {"model": "metainfo.source", "pk": 3779, "fields": {"orig_filename": "Schoenfeldt_Maximilian_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405817}}, {"model": "metainfo.source", "pk": 3780, "fields": {"orig_filename": "Schoenfeldt_Rudolf_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405816}}, {"model": "metainfo.source", "pk": 3781, "fields": {"orig_filename": "Schoenfeld_Anton_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 70f.", "author": "", "orig_id": 1405788}}, {"model": "metainfo.source", "pk": 3782, "fields": {"orig_filename": "Schoenfeld_August_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71", "author": "", "orig_id": 1405790}}, {"model": "metainfo.source", "pk": 3783, "fields": {"orig_filename": "Schoenfeld_Baruch_1787_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71f.", "author": "", "orig_id": 1405791}}, {"model": "metainfo.source", "pk": 3784, "fields": {"orig_filename": "Schoenfeld_Constantin_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78f.", "author": "", "orig_id": 1405813}}, {"model": "metainfo.source", "pk": 3785, "fields": {"orig_filename": "Schoenfeld_Eduard_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 72f.", "author": "", "orig_id": 1405792}}, {"model": "metainfo.source", "pk": 3786, "fields": {"orig_filename": "Schoenfeld_Franz-Julius_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405804}}, {"model": "metainfo.source", "pk": 3787, "fields": {"orig_filename": "Schoenfeld_Heinrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 73", "author": "", "orig_id": 1405793}}, {"model": "metainfo.source", "pk": 3788, "fields": {"orig_filename": "Schoenfeld_Ignaz_1778_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 73f.", "author": "", "orig_id": 1405795}}, {"model": "metainfo.source", "pk": 3789, "fields": {"orig_filename": "Schoenfeld_Johann-Ferdinand_1750_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 74f.", "author": "", "orig_id": 1405798}}, {"model": "metainfo.source", "pk": 3790, "fields": {"orig_filename": "Schoenfeld_Josef_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 75f.", "author": "", "orig_id": 1405800}}, {"model": "metainfo.source", "pk": 3791, "fields": {"orig_filename": "Schoenfeld_Karl-Emil_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 76", "author": "", "orig_id": 1405801}}, {"model": "metainfo.source", "pk": 3792, "fields": {"orig_filename": "Schoenfeld_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405806}}, {"model": "metainfo.source", "pk": 3793, "fields": {"orig_filename": "Schoenfeld_Louise_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 76f.", "author": "", "orig_id": 1405802}}, {"model": "metainfo.source", "pk": 3794, "fields": {"orig_filename": "Schoenfeld_Peter_1784_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405807}}, {"model": "metainfo.source", "pk": 3795, "fields": {"orig_filename": "Schoenfeld_Rudolf_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78", "author": "", "orig_id": 1405809}}, {"model": "metainfo.source", "pk": 3796, "fields": {"orig_filename": "Schoenfeld_Theodor_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78f.", "author": "", "orig_id": 1405811}}, {"model": "metainfo.source", "pk": 3797, "fields": {"orig_filename": "Schoenfeld_Wenzel_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71", "author": "", "orig_id": 1419669}}, {"model": "metainfo.source", "pk": 3798, "fields": {"orig_filename": "Schoenhaber-Wengerot_Heinrich_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 80f.", "author": "", "orig_id": 1405819}}, {"model": "metainfo.source", "pk": 3799, "fields": {"orig_filename": "Schoenhals_Georg_1784_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 82", "author": "", "orig_id": 1405821}}, {"model": "metainfo.source", "pk": 3800, "fields": {"orig_filename": "Schoenhals_Karl_1788_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 81f.", "author": "", "orig_id": 1405820}}, {"model": "metainfo.source", "pk": 3801, "fields": {"orig_filename": "Schoenherr_David_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 82f.", "author": "", "orig_id": 1405822}}, {"model": "metainfo.source", "pk": 3802, "fields": {"orig_filename": "Schoenherr_Gyula_1864_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 83f.", "author": "", "orig_id": 1405824}}, {"model": "metainfo.source", "pk": 3803, "fields": {"orig_filename": "Schoenherr_Joseph_1809_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 84f.", "author": "", "orig_id": 1405826}}, {"model": "metainfo.source", "pk": 3804, "fields": {"orig_filename": "Schoenherr_Karl_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 85f.", "author": "", "orig_id": 1405827}}, {"model": "metainfo.source", "pk": 3805, "fields": {"orig_filename": "Schoenhoff_Leopold_1853_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 87", "author": "", "orig_id": 1405829}}, {"model": "metainfo.source", "pk": 3806, "fields": {"orig_filename": "Schoenhof_Egon_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 86f.", "author": "", "orig_id": 1405828}}, {"model": "metainfo.source", "pk": 3807, "fields": {"orig_filename": "Schoenholz_Friedrich-Anton_1801_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 87f.", "author": "", "orig_id": 1405719}}, {"model": "metainfo.source", "pk": 3808, "fields": {"orig_filename": "Schoeninger_Franz-Xav-Leopold_1790_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 89", "author": "", "orig_id": 1405721}}, {"model": "metainfo.source", "pk": 3809, "fields": {"orig_filename": "Schoeninger_Franz-Xav_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 88f.", "author": "", "orig_id": 1405720}}, {"model": "metainfo.source", "pk": 3810, "fields": {"orig_filename": "Schoenlaub_Fidelis_1805_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 89f.", "author": "", "orig_id": 1405722}}, {"model": "metainfo.source", "pk": 3811, "fields": {"orig_filename": "Schoenmann_Josef_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 90", "author": "", "orig_id": 1405723}}, {"model": "metainfo.source", "pk": 3812, "fields": {"orig_filename": "Schoenn_Alois_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 90f.", "author": "", "orig_id": 1405724}}, {"model": "metainfo.source", "pk": 3813, "fields": {"orig_filename": "Schoenn_Ricka_1867_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 91", "author": "", "orig_id": 1405725}}, {"model": "metainfo.source", "pk": 3814, "fields": {"orig_filename": "Schoenowsky-Schoenwies_Adalbert_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 91f.", "author": "", "orig_id": 1405726}}, {"model": "metainfo.source", "pk": 3815, "fields": {"orig_filename": "Schoenowsky-Schoenwies_Maximilian_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 92f.", "author": "", "orig_id": 1405727}}, {"model": "metainfo.source", "pk": 3816, "fields": {"orig_filename": "Schoenpflug_Fritz_1900_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 93", "author": "", "orig_id": 1405886}}, {"model": "metainfo.source", "pk": 3817, "fields": {"orig_filename": "Schoenschuetz_Josef_1788_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94", "author": "", "orig_id": 1405887}}, {"model": "metainfo.source", "pk": 3818, "fields": {"orig_filename": "Schoensteiner_Friedrich_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94f.", "author": "", "orig_id": 1405889}}, {"model": "metainfo.source", "pk": 3819, "fields": {"orig_filename": "Schoenstein_Karl_1796_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94", "author": "", "orig_id": 1405888}}, {"model": "metainfo.source", "pk": 3820, "fields": {"orig_filename": "Schnitzer_Casimir_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406", "author": "", "orig_id": 1406891}}, {"model": "metainfo.source", "pk": 3821, "fields": {"orig_filename": "Schnitzer_Ignaz_1839_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406f.", "author": "", "orig_id": 1406892}}, {"model": "metainfo.source", "pk": 3822, "fields": {"orig_filename": "Schnitzer_Manuel_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 407", "author": "", "orig_id": 1407292}}, {"model": "metainfo.source", "pk": 3823, "fields": {"orig_filename": "Schnitzler_Arthur_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 407ff.", "author": "", "orig_id": 1406893}}, {"model": "metainfo.source", "pk": 3824, "fields": {"orig_filename": "Schnitzler_Ferdinand_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 409f.", "author": "", "orig_id": 1406894}}, {"model": "metainfo.source", "pk": 3825, "fields": {"orig_filename": "Schnitzler_Johann_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 410f.", "author": "", "orig_id": 1406895}}, {"model": "metainfo.source", "pk": 3826, "fields": {"orig_filename": "Schnopfhagen_Emil_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 412", "author": "", "orig_id": 1406897}}, {"model": "metainfo.source", "pk": 3827, "fields": {"orig_filename": "Schnopfhagen_Franz_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 412f.", "author": "", "orig_id": 1406898}}, {"model": "metainfo.source", "pk": 3828, "fields": {"orig_filename": "Schnopfhagen_Hans_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 413f.", "author": "", "orig_id": 1406899}}, {"model": "metainfo.source", "pk": 3829, "fields": {"orig_filename": "Schnopfhagen_Hans_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 414", "author": "", "orig_id": 1406900}}, {"model": "metainfo.source", "pk": 3830, "fields": {"orig_filename": "Schnorr-Carolsfeld_Eduard_1790_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 415", "author": "", "orig_id": 1406902}}, {"model": "metainfo.source", "pk": 3831, "fields": {"orig_filename": "Schnorr-Carolsfeld_Julius-Veit-Hans_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 414f.", "author": "", "orig_id": 1406901}}, {"model": "metainfo.source", "pk": 3832, "fields": {"orig_filename": "Schnorr-Carolsfeld_Karl_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416", "author": "", "orig_id": 1406905}}, {"model": "metainfo.source", "pk": 3833, "fields": {"orig_filename": "Schnorr-Carolsfeld_Ludwig-Ferdinand_1788_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416", "author": "", "orig_id": 1406904}}, {"model": "metainfo.source", "pk": 3834, "fields": {"orig_filename": "Schnorr-Carolsfeld_Ludwig_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 415", "author": "", "orig_id": 1406903}}, {"model": "metainfo.source", "pk": 3835, "fields": {"orig_filename": "Schnuer-Peplowski_Stanislaw_1859_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416f.", "author": "", "orig_id": 1406906}}, {"model": "metainfo.source", "pk": 3836, "fields": {"orig_filename": "Schnuerer_Franz_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 417f.", "author": "", "orig_id": 1406907}}, {"model": "metainfo.source", "pk": 3837, "fields": {"orig_filename": "Schnuerer_Josef_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 418", "author": "", "orig_id": 1406908}}, {"model": "metainfo.source", "pk": 3838, "fields": {"orig_filename": "Schnuerer_Maria-Josefa_1889_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 418f.", "author": "", "orig_id": 1406909}}, {"model": "metainfo.source", "pk": 3839, "fields": {"orig_filename": "Schnur_David_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419", "author": "", "orig_id": 1406910}}, {"model": "metainfo.source", "pk": 3840, "fields": {"orig_filename": "Schnur_Harry-C_1907_1979.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419", "author": "", "orig_id": 1406911}}, {"model": "metainfo.source", "pk": 3841, "fields": {"orig_filename": "Schoberlechner_Caecilia_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427", "author": "", "orig_id": 1406924}}, {"model": "metainfo.source", "pk": 3842, "fields": {"orig_filename": "Schoberlechner_Franz-De-Paula-Jakob_1797_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 426f.", "author": "", "orig_id": 1406921}}, {"model": "metainfo.source", "pk": 3843, "fields": {"orig_filename": "Schoberlechner_Johann-Karl_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427", "author": "", "orig_id": 1406923}}, {"model": "metainfo.source", "pk": 3844, "fields": {"orig_filename": "Schoberlechner_Sophie_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427f.", "author": "", "orig_id": 1406925}}, {"model": "metainfo.source", "pk": 3845, "fields": {"orig_filename": "Schobert_Ernst_1893_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 428", "author": "", "orig_id": 1406926}}, {"model": "metainfo.source", "pk": 3846, "fields": {"orig_filename": "Schober_Franz_1796_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 420f.", "author": "", "orig_id": 1406913}}, {"model": "metainfo.source", "pk": 3847, "fields": {"orig_filename": "Schober_Franz_1911_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 421", "author": "", "orig_id": 1406914}}, {"model": "metainfo.source", "pk": 3848, "fields": {"orig_filename": "Schober_Ildefons_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 421f.", "author": "", "orig_id": 1406915}}, {"model": "metainfo.source", "pk": 3849, "fields": {"orig_filename": "Schober_Johann-Bapt_1783_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 422f.", "author": "", "orig_id": 1406916}}, {"model": "metainfo.source", "pk": 3850, "fields": {"orig_filename": "Schober_Johannes_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 423ff.", "author": "", "orig_id": 1406918}}, {"model": "metainfo.source", "pk": 3851, "fields": {"orig_filename": "Schober_Johann_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 423", "author": "", "orig_id": 1406917}}, {"model": "metainfo.source", "pk": 3852, "fields": {"orig_filename": "Schober_Karl-Johann_1844_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 425f.", "author": "", "orig_id": 1406920}}, {"model": "metainfo.source", "pk": 3853, "fields": {"orig_filename": "Schober_Karl_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 425", "author": "", "orig_id": 1406919}}, {"model": "metainfo.source", "pk": 3854, "fields": {"orig_filename": "Schoblik_Friedrich_1901_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1", "author": "", "orig_id": 1405373}}, {"model": "metainfo.source", "pk": 3855, "fields": {"orig_filename": "Schobloch_Anton_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1", "author": "", "orig_id": 1405374}}, {"model": "metainfo.source", "pk": 3856, "fields": {"orig_filename": "Schock_Joseph_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1f.", "author": "", "orig_id": 1405375}}, {"model": "metainfo.source", "pk": 3857, "fields": {"orig_filename": "Schodel_Rozalia_1811_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 2", "author": "", "orig_id": 1405376}}, {"model": "metainfo.source", "pk": 3858, "fields": {"orig_filename": "Schoderboeck_Margaretha_1887_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 3", "author": "", "orig_id": 1405378}}, {"model": "metainfo.source", "pk": 3859, "fields": {"orig_filename": "Schoder_Joseph_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 2f.", "author": "", "orig_id": 1405377}}, {"model": "metainfo.source", "pk": 3860, "fields": {"orig_filename": "Schodterer_Engelbert_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 3f.", "author": "", "orig_id": 1405379}}, {"model": "metainfo.source", "pk": 3861, "fields": {"orig_filename": "Schodterer_Robert-Franz_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 4", "author": "", "orig_id": 1405380}}, {"model": "metainfo.source", "pk": 3862, "fields": {"orig_filename": "Schoebel_Emmanuel-Johann_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 4f.", "author": "", "orig_id": 1405381}}, {"model": "metainfo.source", "pk": 3863, "fields": {"orig_filename": "Schoebel_Johann-Paul_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5", "author": "", "orig_id": 1405382}}, {"model": "metainfo.source", "pk": 3864, "fields": {"orig_filename": "Schoeberl_Franz_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5", "author": "", "orig_id": 1405383}}, {"model": "metainfo.source", "pk": 3865, "fields": {"orig_filename": "Schoeberl_Mathias_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5f.", "author": "", "orig_id": 1405384}}, {"model": "metainfo.source", "pk": 3866, "fields": {"orig_filename": "Schoebl_Franz_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 6", "author": "", "orig_id": 1405385}}, {"model": "metainfo.source", "pk": 3867, "fields": {"orig_filename": "Schoebl_Joseph_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 6f.", "author": "", "orig_id": 1405386}}, {"model": "metainfo.source", "pk": 3868, "fields": {"orig_filename": "Schoebl_Otto_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 7f.", "author": "", "orig_id": 1405387}}, {"model": "metainfo.source", "pk": 3869, "fields": {"orig_filename": "Schoedlberger_Johann-Nepomuk_1779_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 8f.", "author": "", "orig_id": 1405391}}, {"model": "metainfo.source", "pk": 3870, "fields": {"orig_filename": "Schoedler_Franz_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 9", "author": "", "orig_id": 1405392}}, {"model": "metainfo.source", "pk": 3871, "fields": {"orig_filename": "Schoedl_Max_1834_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 8", "author": "", "orig_id": 1405390}}, {"model": "metainfo.source", "pk": 3872, "fields": {"orig_filename": "Schoefer_Eugen_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 9f.", "author": "", "orig_id": 1405393}}, {"model": "metainfo.source", "pk": 3873, "fields": {"orig_filename": "Schoefer_Johann_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 10", "author": "", "orig_id": 1405394}}, {"model": "metainfo.source", "pk": 3874, "fields": {"orig_filename": "Schoefer_Robert_1926_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1419707}}, {"model": "metainfo.source", "pk": 3875, "fields": {"orig_filename": "Schoeffel_Johann_1754_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 10f.", "author": "", "orig_id": 1405395}}, {"model": "metainfo.source", "pk": 3876, "fields": {"orig_filename": "Schoeffel_Joseph_1832_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 11f.", "author": "", "orig_id": 1405396}}, {"model": "metainfo.source", "pk": 3877, "fields": {"orig_filename": "Schoeffel_Rudolf_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 12f.", "author": "", "orig_id": 1405397}}, {"model": "metainfo.source", "pk": 3878, "fields": {"orig_filename": "Schoeffl_Josef_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 13", "author": "", "orig_id": 1405399}}, {"model": "metainfo.source", "pk": 3879, "fields": {"orig_filename": "Schoeffmann_Maria_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 13f.", "author": "", "orig_id": 1405400}}, {"model": "metainfo.source", "pk": 3880, "fields": {"orig_filename": "Schoefmann_Karl_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 14f.", "author": "", "orig_id": 1405402}}, {"model": "metainfo.source", "pk": 3881, "fields": {"orig_filename": "Schoelhammer-Schoelhaim_Johann_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 15", "author": "", "orig_id": 1405403}}, {"model": "metainfo.source", "pk": 3882, "fields": {"orig_filename": "Schoeller_Adolf-Philipp_1832_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405439}}, {"model": "metainfo.source", "pk": 3883, "fields": {"orig_filename": "Schoeller_Alexander_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 18f.", "author": "", "orig_id": 1405409}}, {"model": "metainfo.source", "pk": 3884, "fields": {"orig_filename": "Schoeller_Eduard_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405415}}, {"model": "metainfo.source", "pk": 3885, "fields": {"orig_filename": "Schoeller_Ferdinand_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 19f.", "author": "", "orig_id": 1405410}}, {"model": "metainfo.source", "pk": 3886, "fields": {"orig_filename": "Schoeller_Friedrich_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405441}}, {"model": "metainfo.source", "pk": 3887, "fields": {"orig_filename": "Schoeller_Friedrich_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405413}}, {"model": "metainfo.source", "pk": 3888, "fields": {"orig_filename": "Schoeller_Gustav_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405412}}, {"model": "metainfo.source", "pk": 3889, "fields": {"orig_filename": "Schoeller_Hans_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21f.", "author": "", "orig_id": 1405416}}, {"model": "metainfo.source", "pk": 3890, "fields": {"orig_filename": "Schoeller_Johann-Christian_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 22", "author": "", "orig_id": 1405417}}, {"model": "metainfo.source", "pk": 3891, "fields": {"orig_filename": "Schoeller_Joseph_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 22f.", "author": "", "orig_id": 1405418}}, {"model": "metainfo.source", "pk": 3892, "fields": {"orig_filename": "Schoeller_Paul-Eduard_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 23f.", "author": "", "orig_id": 1405419}}, {"model": "metainfo.source", "pk": 3893, "fields": {"orig_filename": "Schoeller_Pauline_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 24", "author": "", "orig_id": 1405430}}, {"model": "metainfo.source", "pk": 3894, "fields": {"orig_filename": "Schoeller_Philipp-Alois_1892_1977.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25f.", "author": "", "orig_id": 1405433}}, {"model": "metainfo.source", "pk": 3895, "fields": {"orig_filename": "Schoeller_Philipp-Johann_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25", "author": "", "orig_id": 1405431}}, {"model": "metainfo.source", "pk": 3896, "fields": {"orig_filename": "Schoeller_Philipp-Joseph_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25f.", "author": "", "orig_id": 1405432}}, {"model": "metainfo.source", "pk": 3897, "fields": {"orig_filename": "Schoeller_Philipp-Wilhelm_1797_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 26", "author": "", "orig_id": 1405434}}, {"model": "metainfo.source", "pk": 3898, "fields": {"orig_filename": "Schoeller_Philipp-Wilhelm_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 26f.", "author": "", "orig_id": 1405436}}, {"model": "metainfo.source", "pk": 3899, "fields": {"orig_filename": "Schoeller_Richard_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 27f.", "author": "", "orig_id": 1405437}}, {"model": "metainfo.source", "pk": 3900, "fields": {"orig_filename": "Schoeller_Robert_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405438}}, {"model": "metainfo.source", "pk": 3901, "fields": {"orig_filename": "Schoellnast_Franz_1775_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28f.", "author": "", "orig_id": 1405442}}, {"model": "metainfo.source", "pk": 3902, "fields": {"orig_filename": "Schoellnast_Johann-Bapt_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 29", "author": "", "orig_id": 1405443}}, {"model": "metainfo.source", "pk": 3903, "fields": {"orig_filename": "Schoell_Adolf_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 15f.", "author": "", "orig_id": 1405404}}, {"model": "metainfo.source", "pk": 3904, "fields": {"orig_filename": "Schoell_August_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16f.", "author": "", "orig_id": 1405407}}, {"model": "metainfo.source", "pk": 3905, "fields": {"orig_filename": "Schoell_Fritz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16", "author": "", "orig_id": 1405406}}, {"model": "metainfo.source", "pk": 3906, "fields": {"orig_filename": "Schoell_Jakob-Friedrich_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 17f.", "author": "", "orig_id": 1405408}}, {"model": "metainfo.source", "pk": 3907, "fields": {"orig_filename": "Schoell_Rudolf_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16", "author": "", "orig_id": 1405405}}, {"model": "metainfo.source", "pk": 3908, "fields": {"orig_filename": "Schoelzig_Amandus_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 29f.", "author": "", "orig_id": 1405444}}, {"model": "metainfo.source", "pk": 3909, "fields": {"orig_filename": "Schoen-Liebingen_Josef_1797_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405466}}, {"model": "metainfo.source", "pk": 3910, "fields": {"orig_filename": "Schoen-Liebingen_Ludwig_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40", "author": "", "orig_id": 1405363}}, {"model": "metainfo.source", "pk": 3911, "fields": {"orig_filename": "Schoen-Liebingen_Robert_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39f.", "author": "", "orig_id": 1405465}}, {"model": "metainfo.source", "pk": 3912, "fields": {"orig_filename": "Schoenach_Alois_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40", "author": "", "orig_id": 1405364}}, {"model": "metainfo.source", "pk": 3913, "fields": {"orig_filename": "Schoenach_Hugo_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40f.", "author": "", "orig_id": 1405365}}, {"model": "metainfo.source", "pk": 3914, "fields": {"orig_filename": "Schoenach_Ludwig_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 41", "author": "", "orig_id": 1405366}}, {"model": "metainfo.source", "pk": 3915, "fields": {"orig_filename": "Schoenaich_Franz-Xaver_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 41f.", "author": "", "orig_id": 1405367}}, {"model": "metainfo.source", "pk": 3916, "fields": {"orig_filename": "Schoenaich_Gustav_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 42f.", "author": "", "orig_id": 1405679}}, {"model": "metainfo.source", "pk": 3917, "fields": {"orig_filename": "Schnack-Herbosegg_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 356f.", "author": "", "orig_id": 1406642}}, {"model": "metainfo.source", "pk": 3918, "fields": {"orig_filename": "Schnaitmann_Thomas_1796_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 1406643}}, {"model": "metainfo.source", "pk": 3919, "fields": {"orig_filename": "Schnapper-Wimsbach_Moritz_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358f.", "author": "", "orig_id": 1406648}}, {"model": "metainfo.source", "pk": 3920, "fields": {"orig_filename": "Schnapper_Anton_1790_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 1406644}}, {"model": "metainfo.source", "pk": 3921, "fields": {"orig_filename": "Schnapper_Ber_1906_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357f.", "author": "", "orig_id": 1406645}}, {"model": "metainfo.source", "pk": 3922, "fields": {"orig_filename": "Schnapper_Maria_1800_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 2096507}}, {"model": "metainfo.source", "pk": 3923, "fields": {"orig_filename": "Schnapper_Max_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358", "author": "", "orig_id": 1406646}}, {"model": "metainfo.source", "pk": 3924, "fields": {"orig_filename": "Schnapper_Mayer-Arthur_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358", "author": "", "orig_id": 1406647}}, {"model": "metainfo.source", "pk": 3925, "fields": {"orig_filename": "Schnarf_Karl_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 359", "author": "", "orig_id": 1406649}}, {"model": "metainfo.source", "pk": 3926, "fields": {"orig_filename": "Schnattinger_Friedrich-Alexander_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406650}}, {"model": "metainfo.source", "pk": 3927, "fields": {"orig_filename": "Schnaubelt_Heinrich_1814_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406651}}, {"model": "metainfo.source", "pk": 3928, "fields": {"orig_filename": "Schnayder_Jozef_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406652}}, {"model": "metainfo.source", "pk": 3929, "fields": {"orig_filename": "Schneck_Karl_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361", "author": "", "orig_id": 1406653}}, {"model": "metainfo.source", "pk": 3930, "fields": {"orig_filename": "Schneeberger_Franz-Julius_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361f.", "author": "", "orig_id": 1406655}}, {"model": "metainfo.source", "pk": 3931, "fields": {"orig_filename": "Schneeberger_Konrad_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 362f.", "author": "", "orig_id": 1406657}}, {"model": "metainfo.source", "pk": 3932, "fields": {"orig_filename": "Schneedorfer_Leo_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 363", "author": "", "orig_id": 1406658}}, {"model": "metainfo.source", "pk": 3933, "fields": {"orig_filename": "Schneefuss_Friedrich_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 363f.", "author": "", "orig_id": 1406659}}, {"model": "metainfo.source", "pk": 3934, "fields": {"orig_filename": "Schneefuss_Wilhelm_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 364", "author": "", "orig_id": 1406660}}, {"model": "metainfo.source", "pk": 3935, "fields": {"orig_filename": "Schneegans_Ludwig_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 364f.", "author": "", "orig_id": 1406661}}, {"model": "metainfo.source", "pk": 3936, "fields": {"orig_filename": "Schneeweiss_Franz_1877_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 365f.", "author": "", "orig_id": 1406664}}, {"model": "metainfo.source", "pk": 3937, "fields": {"orig_filename": "Schneeweiss_Josef_1847_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406667}}, {"model": "metainfo.source", "pk": 3938, "fields": {"orig_filename": "Schneeweiss_Martin-Franz_1883_1965.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406665}}, {"model": "metainfo.source", "pk": 3939, "fields": {"orig_filename": "Schneeweiss_Martin_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406666}}, {"model": "metainfo.source", "pk": 3940, "fields": {"orig_filename": "Schneeweiss_Martin_1907_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366f.", "author": "", "orig_id": 1406668}}, {"model": "metainfo.source", "pk": 3941, "fields": {"orig_filename": "Schneeweiss_Robert_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367", "author": "", "orig_id": 1406669}}, {"model": "metainfo.source", "pk": 3942, "fields": {"orig_filename": "Schneeweis_Karl_1745_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 365", "author": "", "orig_id": 1406662}}, {"model": "metainfo.source", "pk": 3943, "fields": {"orig_filename": "Schnee_Emil_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361", "author": "", "orig_id": 1406654}}, {"model": "metainfo.source", "pk": 3944, "fields": {"orig_filename": "Schnegg_Alphons_1895_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367", "author": "", "orig_id": 1406670}}, {"model": "metainfo.source", "pk": 3945, "fields": {"orig_filename": "Schnehen_Max-Karl-Hugo_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367f.", "author": "", "orig_id": 1406671}}, {"model": "metainfo.source", "pk": 3946, "fields": {"orig_filename": "Schnehen_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 368", "author": "", "orig_id": 1406816}}, {"model": "metainfo.source", "pk": 3947, "fields": {"orig_filename": "Schneid-Treuenfeld_Josef_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 368f.", "author": "", "orig_id": 1406817}}, {"model": "metainfo.source", "pk": 3948, "fields": {"orig_filename": "Schneider-Arno_Josepha_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 387", "author": "", "orig_id": 1406853}}, {"model": "metainfo.source", "pk": 3949, "fields": {"orig_filename": "Schneider-Arno_Joseph_1810_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386f.", "author": "", "orig_id": 1406852}}, {"model": "metainfo.source", "pk": 3950, "fields": {"orig_filename": "Schneider-Arno_Karl_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 387f.", "author": "", "orig_id": 1406854}}, {"model": "metainfo.source", "pk": 3951, "fields": {"orig_filename": "Schneider-Arno_Karl_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 388", "author": "", "orig_id": 1406855}}, {"model": "metainfo.source", "pk": 3952, "fields": {"orig_filename": "Schneider-Arno_Ludwig_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 388f.", "author": "", "orig_id": 1406856}}, {"model": "metainfo.source", "pk": 3953, "fields": {"orig_filename": "Schneider-Manns-Au_Josef_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 389f.", "author": "", "orig_id": 1406857}}, {"model": "metainfo.source", "pk": 3954, "fields": {"orig_filename": "Schneiderhan_Franz_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 390", "author": "", "orig_id": 1406858}}, {"model": "metainfo.source", "pk": 3955, "fields": {"orig_filename": "Schneider_Alois_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 369", "author": "", "orig_id": 1406818}}, {"model": "metainfo.source", "pk": 3956, "fields": {"orig_filename": "Schneider_Anton-Andreas_1774_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 369", "author": "", "orig_id": 1406819}}, {"model": "metainfo.source", "pk": 3957, "fields": {"orig_filename": "Schneider_Antoni-Julian_1825_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 370", "author": "", "orig_id": 1406820}}, {"model": "metainfo.source", "pk": 3958, "fields": {"orig_filename": "Schneider_Artur_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 370f.", "author": "", "orig_id": 1406821}}, {"model": "metainfo.source", "pk": 3959, "fields": {"orig_filename": "Schneider_August_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 371", "author": "", "orig_id": 1406822}}, {"model": "metainfo.source", "pk": 3960, "fields": {"orig_filename": "Schneider_Carl-Samuel_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 371f.", "author": "", "orig_id": 1406823}}, {"model": "metainfo.source", "pk": 3961, "fields": {"orig_filename": "Schneider_Christian_1742_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 372f.", "author": "", "orig_id": 1406824}}, {"model": "metainfo.source", "pk": 3962, "fields": {"orig_filename": "Schneider_Constantin_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 373", "author": "", "orig_id": 1406825}}, {"model": "metainfo.source", "pk": 3963, "fields": {"orig_filename": "Schneider_Ernst_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 373f.", "author": "", "orig_id": 1406826}}, {"model": "metainfo.source", "pk": 3964, "fields": {"orig_filename": "Schneider_Ferdinand_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 374", "author": "", "orig_id": 1406827}}, {"model": "metainfo.source", "pk": 3965, "fields": {"orig_filename": "Schneider_Franz-Anton_1777_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 376", "author": "", "orig_id": 1406830}}, {"model": "metainfo.source", "pk": 3966, "fields": {"orig_filename": "Schneider_Franz-Coelestin_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 376f.", "author": "", "orig_id": 1406831}}, {"model": "metainfo.source", "pk": 3967, "fields": {"orig_filename": "Schneider_Franz-Xav_1789_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 377f.", "author": "", "orig_id": 1406832}}, {"model": "metainfo.source", "pk": 3968, "fields": {"orig_filename": "Schneider_Franz-Xav_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 378", "author": "", "orig_id": 1406833}}, {"model": "metainfo.source", "pk": 3969, "fields": {"orig_filename": "Schneider_Franz_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 374f.", "author": "", "orig_id": 1406828}}, {"model": "metainfo.source", "pk": 3970, "fields": {"orig_filename": "Schneider_Franz_1801_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 375f.", "author": "", "orig_id": 1406829}}, {"model": "metainfo.source", "pk": 3971, "fields": {"orig_filename": "Schneider_Hans_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 378f.", "author": "", "orig_id": 1406834}}, {"model": "metainfo.source", "pk": 3972, "fields": {"orig_filename": "Schneider_Hans_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379", "author": "", "orig_id": 1406835}}, {"model": "metainfo.source", "pk": 3973, "fields": {"orig_filename": "Schneider_Hermann-Josef_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379", "author": "", "orig_id": 1406836}}, {"model": "metainfo.source", "pk": 3974, "fields": {"orig_filename": "Schneider_Johann-Aloys_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 380f.", "author": "", "orig_id": 1406838}}, {"model": "metainfo.source", "pk": 3975, "fields": {"orig_filename": "Schneider_Johann-Bapt_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379f.", "author": "", "orig_id": 1406837}}, {"model": "metainfo.source", "pk": 3976, "fields": {"orig_filename": "Schneider_Josef_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 381", "author": "", "orig_id": 1406839}}, {"model": "metainfo.source", "pk": 3977, "fields": {"orig_filename": "Schneider_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 381f.", "author": "", "orig_id": 1406840}}, {"model": "metainfo.source", "pk": 3978, "fields": {"orig_filename": "Schneider_Josef_1897_1984.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406850}}, {"model": "metainfo.source", "pk": 3979, "fields": {"orig_filename": "Schneider_Julia_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382", "author": "", "orig_id": 1406841}}, {"model": "metainfo.source", "pk": 3980, "fields": {"orig_filename": "Schneider_Karl-Camillo_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382f.", "author": "", "orig_id": 1406843}}, {"model": "metainfo.source", "pk": 3981, "fields": {"orig_filename": "Schneider_Karl_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382", "author": "", "orig_id": 1406842}}, {"model": "metainfo.source", "pk": 3982, "fields": {"orig_filename": "Schneider_Ludwig_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 383f.", "author": "", "orig_id": 1406844}}, {"model": "metainfo.source", "pk": 3983, "fields": {"orig_filename": "Schneider_Max_1902_1988.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406851}}, {"model": "metainfo.source", "pk": 3984, "fields": {"orig_filename": "Schneider_Oswald_1900_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 384", "author": "", "orig_id": 1406845}}, {"model": "metainfo.source", "pk": 3985, "fields": {"orig_filename": "Schneider_Robert_1854_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 384f.", "author": "", "orig_id": 1406846}}, {"model": "metainfo.source", "pk": 3986, "fields": {"orig_filename": "Schneider_Stanislaw-Jan_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 385f.", "author": "", "orig_id": 1406848}}, {"model": "metainfo.source", "pk": 3987, "fields": {"orig_filename": "Schneider_Wilhelm_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406849}}, {"model": "metainfo.source", "pk": 3988, "fields": {"orig_filename": "Schnek_Friedrich_1900_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 390f.", "author": "", "orig_id": 1406859}}, {"model": "metainfo.source", "pk": 3989, "fields": {"orig_filename": "Schnek_Isidor_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 391f.", "author": "", "orig_id": 1406860}}, {"model": "metainfo.source", "pk": 3990, "fields": {"orig_filename": "Schnellar_Hans_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 394f.", "author": "", "orig_id": 1406866}}, {"model": "metainfo.source", "pk": 3991, "fields": {"orig_filename": "Schneller-Mohrthal_Otto_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 399f.", "author": "", "orig_id": 1406874}}, {"model": "metainfo.source", "pk": 3992, "fields": {"orig_filename": "Schneller_August_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 395", "author": "", "orig_id": 1406867}}, {"model": "metainfo.source", "pk": 3993, "fields": {"orig_filename": "Schneller_Christian_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 395f.", "author": "", "orig_id": 1406868}}, {"model": "metainfo.source", "pk": 3994, "fields": {"orig_filename": "Schneller_Istvan_1847_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 396", "author": "", "orig_id": 1406869}}, {"model": "metainfo.source", "pk": 3995, "fields": {"orig_filename": "Schneller_Josef-Anton_1796_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 396f.", "author": "", "orig_id": 1406870}}, {"model": "metainfo.source", "pk": 3996, "fields": {"orig_filename": "Schneller_Joseph_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 397", "author": "", "orig_id": 1406871}}, {"model": "metainfo.source", "pk": 3997, "fields": {"orig_filename": "Schneller_Julius-Franz-Borgias_1777_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 397f.", "author": "", "orig_id": 1406872}}, {"model": "metainfo.source", "pk": 3998, "fields": {"orig_filename": "Schneller_Karl_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 398f.", "author": "", "orig_id": 1406873}}, {"model": "metainfo.source", "pk": 3999, "fields": {"orig_filename": "Schnellinger_Josef_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 400", "author": "", "orig_id": 1406875}}, {"model": "metainfo.source", "pk": 4000, "fields": {"orig_filename": "Schnell_Friedrich_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 392", "author": "", "orig_id": 1406861}}, {"model": "metainfo.source", "pk": 4001, "fields": {"orig_filename": "Schnell_Josef_1822_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 392f.", "author": "", "orig_id": 1406862}}, {"model": "metainfo.source", "pk": 4002, "fields": {"orig_filename": "Schnell_Joseph_1822_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 393", "author": "", "orig_id": 1406863}}, {"model": "metainfo.source", "pk": 4003, "fields": {"orig_filename": "Schnell_Karl-Ernst_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 393f.", "author": "", "orig_id": 1406864}}, {"model": "metainfo.source", "pk": 4004, "fields": {"orig_filename": "Schnell_Ludwig-Franz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 394", "author": "", "orig_id": 1406865}}, {"model": "metainfo.source", "pk": 4005, "fields": {"orig_filename": "Schnepfleitner_Josef_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 400", "author": "", "orig_id": 1406876}}, {"model": "metainfo.source", "pk": 4006, "fields": {"orig_filename": "Schnerich_Alfred_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406877}}, {"model": "metainfo.source", "pk": 4007, "fields": {"orig_filename": "Schnerich_Franz-Xav_1771_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406878}}, {"model": "metainfo.source", "pk": 4008, "fields": {"orig_filename": "Schnerich_Franz-Xav_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406880}}, {"model": "metainfo.source", "pk": 4009, "fields": {"orig_filename": "Schnerich_Gotthard_1821_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401f.", "author": "", "orig_id": 1406881}}, {"model": "metainfo.source", "pk": 4010, "fields": {"orig_filename": "Schnerich_Wilhelm_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406879}}, {"model": "metainfo.source", "pk": 4011, "fields": {"orig_filename": "Schnider_August_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 402", "author": "", "orig_id": 1406882}}, {"model": "metainfo.source", "pk": 4012, "fields": {"orig_filename": "Schnierer_Alfred_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 402f.", "author": "", "orig_id": 1406883}}, {"model": "metainfo.source", "pk": 4013, "fields": {"orig_filename": "Schnierer_Julius_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 403", "author": "", "orig_id": 1406884}}, {"model": "metainfo.source", "pk": 4014, "fields": {"orig_filename": "Schnirch_Bohuslav_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 403f.", "author": "", "orig_id": 1406885}}, {"model": "metainfo.source", "pk": 4015, "fields": {"orig_filename": "Schnirch_Friedrich_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 404f.", "author": "", "orig_id": 1406886}}, {"model": "metainfo.source", "pk": 4016, "fields": {"orig_filename": "Schnirer_Friedrich_1889_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405", "author": "", "orig_id": 1406889}}, {"model": "metainfo.source", "pk": 4017, "fields": {"orig_filename": "Schnirer_Josef_1888_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405", "author": "", "orig_id": 1406888}}, {"model": "metainfo.source", "pk": 4018, "fields": {"orig_filename": "Schnirer_Moritz-Tobias_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405f.", "author": "", "orig_id": 1406887}}, {"model": "metainfo.source", "pk": 4019, "fields": {"orig_filename": "Schnitzer_Alois_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406", "author": "", "orig_id": 1406890}}, {"model": "metainfo.source", "pk": 4020, "fields": {"orig_filename": "Schmid_Leopold_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 284f.", "author": "", "orig_id": 1406419}}, {"model": "metainfo.source", "pk": 4021, "fields": {"orig_filename": "Schmid_Ludwig_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285", "author": "", "orig_id": 1406420}}, {"model": "metainfo.source", "pk": 4022, "fields": {"orig_filename": "Schmid_Ludwig_1880_1957.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285", "author": "", "orig_id": 1406421}}, {"model": "metainfo.source", "pk": 4023, "fields": {"orig_filename": "Schmid_Maria_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285f.", "author": "", "orig_id": 1406422}}, {"model": "metainfo.source", "pk": 4024, "fields": {"orig_filename": "Schmid_Martin_1775_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 286", "author": "", "orig_id": 1406423}}, {"model": "metainfo.source", "pk": 4025, "fields": {"orig_filename": "Schmid_Mathias-Andreas_1742_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 287", "author": "", "orig_id": 1406425}}, {"model": "metainfo.source", "pk": 4026, "fields": {"orig_filename": "Schmid_Mathias_1835_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 286f.", "author": "", "orig_id": 1406424}}, {"model": "metainfo.source", "pk": 4027, "fields": {"orig_filename": "Schmid_Maximilian-Florian_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 288", "author": "", "orig_id": 1406427}}, {"model": "metainfo.source", "pk": 4028, "fields": {"orig_filename": "Schmid_Maximilian_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406534}}, {"model": "metainfo.source", "pk": 4029, "fields": {"orig_filename": "Schmid_Max_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 287f.", "author": "", "orig_id": 1406426}}, {"model": "metainfo.source", "pk": 4030, "fields": {"orig_filename": "Schmid_Mieczyslaw-Henryk_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289", "author": "", "orig_id": 1406428}}, {"model": "metainfo.source", "pk": 4031, "fields": {"orig_filename": "Schmid_Moriz_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289", "author": "", "orig_id": 1406429}}, {"model": "metainfo.source", "pk": 4032, "fields": {"orig_filename": "Schmid_Nikolaus_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289f.", "author": "", "orig_id": 1406430}}, {"model": "metainfo.source", "pk": 4033, "fields": {"orig_filename": "Schmid_Oskar_1838_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 290", "author": "", "orig_id": 1406431}}, {"model": "metainfo.source", "pk": 4034, "fields": {"orig_filename": "Schmid_Oskar_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 290f.", "author": "", "orig_id": 1406432}}, {"model": "metainfo.source", "pk": 4035, "fields": {"orig_filename": "Schmid_Oskar_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 291", "author": "", "orig_id": 1406433}}, {"model": "metainfo.source", "pk": 4036, "fields": {"orig_filename": "Schmid_Otto_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 291f.", "author": "", "orig_id": 1406434}}, {"model": "metainfo.source", "pk": 4037, "fields": {"orig_filename": "Schmid_Peter_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292", "author": "", "orig_id": 1406435}}, {"model": "metainfo.source", "pk": 4038, "fields": {"orig_filename": "Schmid_Richard_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406533}}, {"model": "metainfo.source", "pk": 4039, "fields": {"orig_filename": "Schmid_Richard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292", "author": "", "orig_id": 1406436}}, {"model": "metainfo.source", "pk": 4040, "fields": {"orig_filename": "Schmid_Robert-Hans_1870_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292f.", "author": "", "orig_id": 1406437}}, {"model": "metainfo.source", "pk": 4041, "fields": {"orig_filename": "Schmid_Rudolf-Viktor_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283", "author": "", "orig_id": 1406416}}, {"model": "metainfo.source", "pk": 4042, "fields": {"orig_filename": "Schmid_Rudolf_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 293f.", "author": "", "orig_id": 1406438}}, {"model": "metainfo.source", "pk": 4043, "fields": {"orig_filename": "Schmid_Rudolf_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 294", "author": "", "orig_id": 1406439}}, {"model": "metainfo.source", "pk": 4044, "fields": {"orig_filename": "Schmid_Sandor_1855_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 294f.", "author": "", "orig_id": 1406440}}, {"model": "metainfo.source", "pk": 4045, "fields": {"orig_filename": "Schmid_Siegfried_1774_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 295f.", "author": "", "orig_id": 1406441}}, {"model": "metainfo.source", "pk": 4046, "fields": {"orig_filename": "Schmid_Sigismund_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 296", "author": "", "orig_id": 1406442}}, {"model": "metainfo.source", "pk": 4047, "fields": {"orig_filename": "Schmid_Theodor-Edmund_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406449}}, {"model": "metainfo.source", "pk": 4048, "fields": {"orig_filename": "Schmid_Theodor_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 296f.", "author": "", "orig_id": 1406443}}, {"model": "metainfo.source", "pk": 4049, "fields": {"orig_filename": "Schmid_Theodor_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 297", "author": "", "orig_id": 1406444}}, {"model": "metainfo.source", "pk": 4050, "fields": {"orig_filename": "Schmid_Valentin_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406445}}, {"model": "metainfo.source", "pk": 4051, "fields": {"orig_filename": "Schmid_Victor-Anton_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298f.", "author": "", "orig_id": 1406446}}, {"model": "metainfo.source", "pk": 4052, "fields": {"orig_filename": "Schmid_Victor-Ladislaus_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406447}}, {"model": "metainfo.source", "pk": 4053, "fields": {"orig_filename": "Schmid_Walter_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 299", "author": "", "orig_id": 1406450}}, {"model": "metainfo.source", "pk": 4054, "fields": {"orig_filename": "Schmid_Wilhelm-Joseph_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 301f.", "author": "", "orig_id": 1406715}}, {"model": "metainfo.source", "pk": 4055, "fields": {"orig_filename": "Schmid_Wilhelm-Matthaeus_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 302f.", "author": "", "orig_id": 1406716}}, {"model": "metainfo.source", "pk": 4056, "fields": {"orig_filename": "Schmid_Wilhelm_1817_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 299f.", "author": "", "orig_id": 1406451}}, {"model": "metainfo.source", "pk": 4057, "fields": {"orig_filename": "Schmid_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 300f.", "author": "", "orig_id": 1406452}}, {"model": "metainfo.source", "pk": 4058, "fields": {"orig_filename": "Schmid_Wilhelm_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 301", "author": "", "orig_id": 1406453}}, {"model": "metainfo.source", "pk": 4059, "fields": {"orig_filename": "Schmid_Wladyslaw_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 303", "author": "", "orig_id": 1406717}}, {"model": "metainfo.source", "pk": 4060, "fields": {"orig_filename": "Schmiedel_Johann-Bapt_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 328", "author": "", "orig_id": 1406607}}, {"model": "metainfo.source", "pk": 4061, "fields": {"orig_filename": "Schmieder_Pius_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 329", "author": "", "orig_id": 1406608}}, {"model": "metainfo.source", "pk": 4062, "fields": {"orig_filename": "Schmiedl_Adolph-Abraham_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 329f.", "author": "", "orig_id": 1406609}}, {"model": "metainfo.source", "pk": 4063, "fields": {"orig_filename": "Schmiedl_Georg_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 330", "author": "", "orig_id": 1406610}}, {"model": "metainfo.source", "pk": 4064, "fields": {"orig_filename": "Schmieger_Adolf-Josef_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 330f.", "author": "", "orig_id": 1406611}}, {"model": "metainfo.source", "pk": 4065, "fields": {"orig_filename": "Schmieger_Ignaz-Anton_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 331", "author": "", "orig_id": 1406612}}, {"model": "metainfo.source", "pk": 4066, "fields": {"orig_filename": "Schmieger_Wilhelm_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 331f.", "author": "", "orig_id": 1406613}}, {"model": "metainfo.source", "pk": 4067, "fields": {"orig_filename": "Schmigoz_Julius_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 332", "author": "", "orig_id": 1406614}}, {"model": "metainfo.source", "pk": 4068, "fields": {"orig_filename": "Schmilauer_Alois_1837_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 332f.", "author": "", "orig_id": 1406615}}, {"model": "metainfo.source", "pk": 4069, "fields": {"orig_filename": "Schmirger_Johann_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 333", "author": "", "orig_id": 1406616}}, {"model": "metainfo.source", "pk": 4070, "fields": {"orig_filename": "Schmirl_Hans_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 333f.", "author": "", "orig_id": 1406617}}, {"model": "metainfo.source", "pk": 4071, "fields": {"orig_filename": "Schmitson_Teutwart_1830_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 334", "author": "", "orig_id": 1406618}}, {"model": "metainfo.source", "pk": 4072, "fields": {"orig_filename": "Schmitten_Eduard_1814_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 334f.", "author": "", "orig_id": 1406619}}, {"model": "metainfo.source", "pk": 4073, "fields": {"orig_filename": "Schmitzhausen-Bruckherr-Donau_Franz_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406676}}, {"model": "metainfo.source", "pk": 4074, "fields": {"orig_filename": "Schmitzhausen_Marie_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 338f.", "author": "", "orig_id": 1406675}}, {"model": "metainfo.source", "pk": 4075, "fields": {"orig_filename": "Schmitz_Ettore_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 335f.", "author": "", "orig_id": 1406621}}, {"model": "metainfo.source", "pk": 4076, "fields": {"orig_filename": "Schmitz_Franz_1874_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 336f.", "author": "", "orig_id": 1406622}}, {"model": "metainfo.source", "pk": 4077, "fields": {"orig_filename": "Schmitz_Johann-Georg_1765_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 337", "author": "", "orig_id": 1406672}}, {"model": "metainfo.source", "pk": 4078, "fields": {"orig_filename": "Schmitz_Oskar-A-H_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 337f.", "author": "", "orig_id": 1406673}}, {"model": "metainfo.source", "pk": 4079, "fields": {"orig_filename": "Schmitz_Siegfried_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 338", "author": "", "orig_id": 1406674}}, {"model": "metainfo.source", "pk": 4080, "fields": {"orig_filename": "Schmoeger_Alois_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406677}}, {"model": "metainfo.source", "pk": 4081, "fields": {"orig_filename": "Schmoelzer_Caroline_1840_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406679}}, {"model": "metainfo.source", "pk": 4082, "fields": {"orig_filename": "Schmoelzer_Conrad_1862_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406678}}, {"model": "metainfo.source", "pk": 4083, "fields": {"orig_filename": "Schmoelzer_Hans_1856_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339f.", "author": "", "orig_id": 1406680}}, {"model": "metainfo.source", "pk": 4084, "fields": {"orig_filename": "Schmoelzer_Jakob-Eduard_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 340", "author": "", "orig_id": 1406681}}, {"model": "metainfo.source", "pk": 4085, "fields": {"orig_filename": "Schmoelzer_Josef_1821_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 340f.", "author": "", "orig_id": 1406682}}, {"model": "metainfo.source", "pk": 4086, "fields": {"orig_filename": "Schmolka_Marie_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 341f.", "author": "", "orig_id": 1406684}}, {"model": "metainfo.source", "pk": 4087, "fields": {"orig_filename": "Schmolk_Frigdian_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 341", "author": "", "orig_id": 1406683}}, {"model": "metainfo.source", "pk": 4088, "fields": {"orig_filename": "Schmoll-Eisenwerth_Karl_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 342f.", "author": "", "orig_id": 1406695}}, {"model": "metainfo.source", "pk": 4089, "fields": {"orig_filename": "Schmoll_Karl_1852_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 342", "author": "", "orig_id": 1406694}}, {"model": "metainfo.source", "pk": 4090, "fields": {"orig_filename": "Schmonn_Joseph_1785_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 343f.", "author": "", "orig_id": 1406696}}, {"model": "metainfo.source", "pk": 4091, "fields": {"orig_filename": "Schmoranzer_Josef_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 345f.", "author": "", "orig_id": 1406700}}, {"model": "metainfo.source", "pk": 4092, "fields": {"orig_filename": "Schmoranz_Frantisek_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344", "author": "", "orig_id": 1406697}}, {"model": "metainfo.source", "pk": 4093, "fields": {"orig_filename": "Schmoranz_Frantisek_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344", "author": "", "orig_id": 1406698}}, {"model": "metainfo.source", "pk": 4094, "fields": {"orig_filename": "Schmoranz_Gustav_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344f.", "author": "", "orig_id": 1406699}}, {"model": "metainfo.source", "pk": 4095, "fields": {"orig_filename": "Schmuckenschlaeger_Adolf_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406701}}, {"model": "metainfo.source", "pk": 4096, "fields": {"orig_filename": "Schmuckenschlaeger_Antonin_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406703}}, {"model": "metainfo.source", "pk": 4097, "fields": {"orig_filename": "Schmuckenschlaeger_Michael_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406702}}, {"model": "metainfo.source", "pk": 4098, "fields": {"orig_filename": "Schmueck_Franz_1797_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346f.", "author": "", "orig_id": 1406704}}, {"model": "metainfo.source", "pk": 4099, "fields": {"orig_filename": "Schmued_Ludwig_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 347", "author": "", "orig_id": 1406705}}, {"model": "metainfo.source", "pk": 4100, "fields": {"orig_filename": "Schmutzer_Alice_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 348f.", "author": "", "orig_id": 1406707}}, {"model": "metainfo.source", "pk": 4101, "fields": {"orig_filename": "Schmutzer_Anton_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 349", "author": "", "orig_id": 1406708}}, {"model": "metainfo.source", "pk": 4102, "fields": {"orig_filename": "Schmutzer_Ferdinand_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 349f.", "author": "", "orig_id": 1406709}}, {"model": "metainfo.source", "pk": 4103, "fields": {"orig_filename": "Schmutzer_Hermine_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406714}}, {"model": "metainfo.source", "pk": 4104, "fields": {"orig_filename": "Schmutzer_Philippine_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406713}}, {"model": "metainfo.source", "pk": 4105, "fields": {"orig_filename": "Schmutzer_Philipp_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 350", "author": "", "orig_id": 1406710}}, {"model": "metainfo.source", "pk": 4106, "fields": {"orig_filename": "Schmutzer_Wilhelm_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406712}}, {"model": "metainfo.source", "pk": 4107, "fields": {"orig_filename": "Schmutz_Karl_1787_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 347f.", "author": "", "orig_id": 1406706}}, {"model": "metainfo.source", "pk": 4108, "fields": {"orig_filename": "Schnabel_August_1821_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352", "author": "", "orig_id": 1406626}}, {"model": "metainfo.source", "pk": 4109, "fields": {"orig_filename": "Schnabel_Franz_1900_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1407290}}, {"model": "metainfo.source", "pk": 4110, "fields": {"orig_filename": "Schnabel_Georg-Norbert_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352", "author": "", "orig_id": 1406624}}, {"model": "metainfo.source", "pk": 4111, "fields": {"orig_filename": "Schnabel_Gottlieb_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1406625}}, {"model": "metainfo.source", "pk": 4112, "fields": {"orig_filename": "Schnabel_Hans_1902_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1407291}}, {"model": "metainfo.source", "pk": 4113, "fields": {"orig_filename": "Schnabel_Isidor_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 353f.", "author": "", "orig_id": 1406627}}, {"model": "metainfo.source", "pk": 4114, "fields": {"orig_filename": "Schnabel_Louis_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 354", "author": "", "orig_id": 1406628}}, {"model": "metainfo.source", "pk": 4115, "fields": {"orig_filename": "Schnabl_Friedrich_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 354f.", "author": "", "orig_id": 1406630}}, {"model": "metainfo.source", "pk": 4116, "fields": {"orig_filename": "Schnabl_Jacob_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406637}}, {"model": "metainfo.source", "pk": 4117, "fields": {"orig_filename": "Schnabl_Josef_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406639}}, {"model": "metainfo.source", "pk": 4118, "fields": {"orig_filename": "Schnabl_Leopold_1846_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355f.", "author": "", "orig_id": 1406640}}, {"model": "metainfo.source", "pk": 4119, "fields": {"orig_filename": "Schnabl_Leo_1870_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406638}}, {"model": "metainfo.source", "pk": 4120, "fields": {"orig_filename": "Schnabl_Moriz_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 356", "author": "", "orig_id": 1406641}}, {"model": "metainfo.source", "pk": 4121, "fields": {"orig_filename": "Schmidl_Edmund_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322", "author": "", "orig_id": 1406755}}, {"model": "metainfo.source", "pk": 4122, "fields": {"orig_filename": "Schmidl_Eduard-Adam-Gorgonius_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322f.", "author": "", "orig_id": 1406757}}, {"model": "metainfo.source", "pk": 4123, "fields": {"orig_filename": "Schmidl_Emil-C_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406758}}, {"model": "metainfo.source", "pk": 4124, "fields": {"orig_filename": "Schmidl_Julius_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322", "author": "", "orig_id": 1406756}}, {"model": "metainfo.source", "pk": 4125, "fields": {"orig_filename": "Schmidl_Ludwig_1811_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323f.", "author": "", "orig_id": 1406761}}, {"model": "metainfo.source", "pk": 4126, "fields": {"orig_filename": "Schmidl_Ludwig_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406759}}, {"model": "metainfo.source", "pk": 4127, "fields": {"orig_filename": "Schmidl_Ludwig_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 324f.", "author": "", "orig_id": 1406762}}, {"model": "metainfo.source", "pk": 4128, "fields": {"orig_filename": "Schmidl_Marianne_1890_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325", "author": "", "orig_id": 1406763}}, {"model": "metainfo.source", "pk": 4129, "fields": {"orig_filename": "Schmidl_Michael_1779_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325f.", "author": "", "orig_id": 1406598}}, {"model": "metainfo.source", "pk": 4130, "fields": {"orig_filename": "Schmidl_Rudolf-E_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406760}}, {"model": "metainfo.source", "pk": 4131, "fields": {"orig_filename": "Schmidl_Rudolf_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406603}}, {"model": "metainfo.source", "pk": 4132, "fields": {"orig_filename": "Schmidl_Rupert_1735_1788.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326", "author": "", "orig_id": 1406602}}, {"model": "metainfo.source", "pk": 4133, "fields": {"orig_filename": "Schmidl_Rupert_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326", "author": "", "orig_id": 1406601}}, {"model": "metainfo.source", "pk": 4134, "fields": {"orig_filename": "Schmidl_Wenzl-Ludwig_1811_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406604}}, {"model": "metainfo.source", "pk": 4135, "fields": {"orig_filename": "Schmidl_Wenzl_1783_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326f.", "author": "", "orig_id": 1406600}}, {"model": "metainfo.source", "pk": 4136, "fields": {"orig_filename": "Schmidl_Wilhelm_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406605}}, {"model": "metainfo.source", "pk": 4137, "fields": {"orig_filename": "Schmidtmayer_Rudolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327f.", "author": "", "orig_id": 1406606}}, {"model": "metainfo.source", "pk": 4138, "fields": {"orig_filename": "Schmid_Adalbert_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 237f.", "author": "", "orig_id": 1406522}}, {"model": "metainfo.source", "pk": 4139, "fields": {"orig_filename": "Schmid_Adalbert_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 238", "author": "", "orig_id": 1406523}}, {"model": "metainfo.source", "pk": 4140, "fields": {"orig_filename": "Schmid_Adam-August_1777_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 238f.", "author": "", "orig_id": 1406524}}, {"model": "metainfo.source", "pk": 4141, "fields": {"orig_filename": "Schmid_Agnes_1831_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 239", "author": "", "orig_id": 1406525}}, {"model": "metainfo.source", "pk": 4142, "fields": {"orig_filename": "Schmid_Albert-Eugen-Edmund_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 240", "author": "", "orig_id": 1406527}}, {"model": "metainfo.source", "pk": 4143, "fields": {"orig_filename": "Schmid_Albert_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 239f.", "author": "", "orig_id": 1406526}}, {"model": "metainfo.source", "pk": 4144, "fields": {"orig_filename": "Schmid_Alfred_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406448}}, {"model": "metainfo.source", "pk": 4145, "fields": {"orig_filename": "Schmid_Alois_1798_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 240f.", "author": "", "orig_id": 1406528}}, {"model": "metainfo.source", "pk": 4146, "fields": {"orig_filename": "Schmid_Anton_1765_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 241", "author": "", "orig_id": 1406529}}, {"model": "metainfo.source", "pk": 4147, "fields": {"orig_filename": "Schmid_Anton_1787_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 241f.", "author": "", "orig_id": 1406530}}, {"model": "metainfo.source", "pk": 4148, "fields": {"orig_filename": "Schmid_Anton_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406532}}, {"model": "metainfo.source", "pk": 4149, "fields": {"orig_filename": "Schmid_Anton_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 243", "author": "", "orig_id": 1406535}}, {"model": "metainfo.source", "pk": 4150, "fields": {"orig_filename": "Schmid_Anton_1900_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 243f.", "author": "", "orig_id": 1406536}}, {"model": "metainfo.source", "pk": 4151, "fields": {"orig_filename": "Schmid_Arnold_1903_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 244f.", "author": "", "orig_id": 1406537}}, {"model": "metainfo.source", "pk": 4152, "fields": {"orig_filename": "Schmid_Arthur_1866_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245", "author": "", "orig_id": 1406539}}, {"model": "metainfo.source", "pk": 4153, "fields": {"orig_filename": "Schmid_August_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245f.", "author": "", "orig_id": 1406540}}, {"model": "metainfo.source", "pk": 4154, "fields": {"orig_filename": "Schmid_August_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 246f.", "author": "", "orig_id": 1406541}}, {"model": "metainfo.source", "pk": 4155, "fields": {"orig_filename": "Schmid_Carl-Eugen_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 247f.", "author": "", "orig_id": 1406543}}, {"model": "metainfo.source", "pk": 4156, "fields": {"orig_filename": "Schmid_Carl-Friedrich-Heinrich_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 248f.", "author": "", "orig_id": 1406544}}, {"model": "metainfo.source", "pk": 4157, "fields": {"orig_filename": "Schmid_Carl-Jakob-Ludwig_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249", "author": "", "orig_id": 1406545}}, {"model": "metainfo.source", "pk": 4158, "fields": {"orig_filename": "Schmid_Carl-Wilhelm_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249", "author": "", "orig_id": 1406546}}, {"model": "metainfo.source", "pk": 4159, "fields": {"orig_filename": "Schmid_Carl_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 247", "author": "", "orig_id": 1406542}}, {"model": "metainfo.source", "pk": 4160, "fields": {"orig_filename": "Schmid_Cordula_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249f.", "author": "", "orig_id": 1406547}}, {"model": "metainfo.source", "pk": 4161, "fields": {"orig_filename": "Schmid_Eduard-Johann_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250f.", "author": "", "orig_id": 1406549}}, {"model": "metainfo.source", "pk": 4162, "fields": {"orig_filename": "Schmid_Eduard-Oskar_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 251f.", "author": "", "orig_id": 1406551}}, {"model": "metainfo.source", "pk": 4163, "fields": {"orig_filename": "Schmid_Eduard_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250", "author": "", "orig_id": 1406548}}, {"model": "metainfo.source", "pk": 4164, "fields": {"orig_filename": "Schmid_Erich-August_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 252", "author": "", "orig_id": 1406552}}, {"model": "metainfo.source", "pk": 4165, "fields": {"orig_filename": "Schmid_Ernst_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 252f.", "author": "", "orig_id": 1406553}}, {"model": "metainfo.source", "pk": 4166, "fields": {"orig_filename": "Schmid_Eugen-Heinrich_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 253f.", "author": "", "orig_id": 1406555}}, {"model": "metainfo.source", "pk": 4167, "fields": {"orig_filename": "Schmid_Ferdinand-Jozef_1791_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 254f.", "author": "", "orig_id": 1406557}}, {"model": "metainfo.source", "pk": 4168, "fields": {"orig_filename": "Schmid_Ferdinand_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 254", "author": "", "orig_id": 1406556}}, {"model": "metainfo.source", "pk": 4169, "fields": {"orig_filename": "Schmid_Florian_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 255f.", "author": "", "orig_id": 1406558}}, {"model": "metainfo.source", "pk": 4170, "fields": {"orig_filename": "Schmid_Franz-X-Robert_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261f.", "author": "", "orig_id": 1406568}}, {"model": "metainfo.source", "pk": 4171, "fields": {"orig_filename": "Schmid_Franz-X_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 260f.", "author": "", "orig_id": 1406565}}, {"model": "metainfo.source", "pk": 4172, "fields": {"orig_filename": "Schmid_Franz-X_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261", "author": "", "orig_id": 1406566}}, {"model": "metainfo.source", "pk": 4173, "fields": {"orig_filename": "Schmid_Franz_1764_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 256", "author": "", "orig_id": 1406559}}, {"model": "metainfo.source", "pk": 4174, "fields": {"orig_filename": "Schmid_Franz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 256f.", "author": "", "orig_id": 1406560}}, {"model": "metainfo.source", "pk": 4175, "fields": {"orig_filename": "Schmid_Franz_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 257", "author": "", "orig_id": 1406561}}, {"model": "metainfo.source", "pk": 4176, "fields": {"orig_filename": "Schmid_Franz_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 257f.", "author": "", "orig_id": 1406562}}, {"model": "metainfo.source", "pk": 4177, "fields": {"orig_filename": "Schmid_Franz_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 258", "author": "", "orig_id": 1406563}}, {"model": "metainfo.source", "pk": 4178, "fields": {"orig_filename": "Schmid_Franz_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 258ff.", "author": "", "orig_id": 1406564}}, {"model": "metainfo.source", "pk": 4179, "fields": {"orig_filename": "Schmid_Friedrich_1821_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 262", "author": "", "orig_id": 1406569}}, {"model": "metainfo.source", "pk": 4180, "fields": {"orig_filename": "Schmid_Friedrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 262ff.", "author": "", "orig_id": 1406570}}, {"model": "metainfo.source", "pk": 4181, "fields": {"orig_filename": "Schmid_Friedrich_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 264", "author": "", "orig_id": 1406571}}, {"model": "metainfo.source", "pk": 4182, "fields": {"orig_filename": "Schmid_Georg-Fidelis_1741_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 265f.", "author": "", "orig_id": 1406575}}, {"model": "metainfo.source", "pk": 4183, "fields": {"orig_filename": "Schmid_Georg_1844_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 264f.", "author": "", "orig_id": 1406573}}, {"model": "metainfo.source", "pk": 4184, "fields": {"orig_filename": "Schmid_Georg_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 265", "author": "", "orig_id": 1406574}}, {"model": "metainfo.source", "pk": 4185, "fields": {"orig_filename": "Schmid_Gustav-Johann-Leopold_1826_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 267", "author": "", "orig_id": 1406577}}, {"model": "metainfo.source", "pk": 4186, "fields": {"orig_filename": "Schmid_Gustav_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 266f.", "author": "", "orig_id": 1406576}}, {"model": "metainfo.source", "pk": 4187, "fields": {"orig_filename": "Schmid_Hans_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 267f.", "author": "", "orig_id": 1406578}}, {"model": "metainfo.source", "pk": 4188, "fields": {"orig_filename": "Schmid_Heinrich-Daniel_1805_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270f.", "author": "", "orig_id": 1406585}}, {"model": "metainfo.source", "pk": 4189, "fields": {"orig_filename": "Schmid_Heinrich_1779_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 268", "author": "", "orig_id": 1406579}}, {"model": "metainfo.source", "pk": 4190, "fields": {"orig_filename": "Schmid_Heinrich_1809_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 268f.", "author": "", "orig_id": 1406580}}, {"model": "metainfo.source", "pk": 4191, "fields": {"orig_filename": "Schmid_Heinrich_1815_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 269f.", "author": "", "orig_id": 1406581}}, {"model": "metainfo.source", "pk": 4192, "fields": {"orig_filename": "Schmid_Heinrich_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270", "author": "", "orig_id": 1406583}}, {"model": "metainfo.source", "pk": 4193, "fields": {"orig_filename": "Schmid_Heinrich_1849_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270", "author": "", "orig_id": 1406584}}, {"model": "metainfo.source", "pk": 4194, "fields": {"orig_filename": "Schmid_Henryk-Leopold_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 271f.", "author": "", "orig_id": 1406586}}, {"model": "metainfo.source", "pk": 4195, "fields": {"orig_filename": "Schmid_Hermann_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 272", "author": "", "orig_id": 1406587}}, {"model": "metainfo.source", "pk": 4196, "fields": {"orig_filename": "Schmid_Hugo_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273", "author": "", "orig_id": 1406588}}, {"model": "metainfo.source", "pk": 4197, "fields": {"orig_filename": "Schmid_Hugo_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273", "author": "", "orig_id": 1406589}}, {"model": "metainfo.source", "pk": 4198, "fields": {"orig_filename": "Schmid_Janos-Gyoergy_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273f.", "author": "", "orig_id": 1406590}}, {"model": "metainfo.source", "pk": 4199, "fields": {"orig_filename": "Schmid_Johann-Joseph_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 274f.", "author": "", "orig_id": 1406592}}, {"model": "metainfo.source", "pk": 4200, "fields": {"orig_filename": "Schmid_Johanna-Carolina_1794_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275", "author": "", "orig_id": 1406593}}, {"model": "metainfo.source", "pk": 4201, "fields": {"orig_filename": "Schmid_Johann_1776_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 269", "author": "", "orig_id": 1406582}}, {"model": "metainfo.source", "pk": 4202, "fields": {"orig_filename": "Schmid_Johann_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 274", "author": "", "orig_id": 1406591}}, {"model": "metainfo.source", "pk": 4203, "fields": {"orig_filename": "Schmid_Josef-Eduard_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 278", "author": "", "orig_id": 1406405}}, {"model": "metainfo.source", "pk": 4204, "fields": {"orig_filename": "Schmid_Josefine_1837_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 278f.", "author": "", "orig_id": 1406407}}, {"model": "metainfo.source", "pk": 4205, "fields": {"orig_filename": "Schmid_Josef_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275f.", "author": "", "orig_id": 1406595}}, {"model": "metainfo.source", "pk": 4206, "fields": {"orig_filename": "Schmid_Josef_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276", "author": "", "orig_id": 2036249}}, {"model": "metainfo.source", "pk": 4207, "fields": {"orig_filename": "Schmid_Josef_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276", "author": "", "orig_id": 1406596}}, {"model": "metainfo.source", "pk": 4208, "fields": {"orig_filename": "Schmid_Joseph_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261", "author": "", "orig_id": 1406567}}, {"model": "metainfo.source", "pk": 4209, "fields": {"orig_filename": "Schmid_Julius_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 279f.", "author": "", "orig_id": 1406408}}, {"model": "metainfo.source", "pk": 4210, "fields": {"orig_filename": "Schmid_Karl-Florian_1823_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283", "author": "", "orig_id": 1406415}}, {"model": "metainfo.source", "pk": 4211, "fields": {"orig_filename": "Schmid_Karl_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 280", "author": "", "orig_id": 1406409}}, {"model": "metainfo.source", "pk": 4212, "fields": {"orig_filename": "Schmid_Karl_1825_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 280f.", "author": "", "orig_id": 1406410}}, {"model": "metainfo.source", "pk": 4213, "fields": {"orig_filename": "Schmid_Karl_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 281", "author": "", "orig_id": 1406411}}, {"model": "metainfo.source", "pk": 4214, "fields": {"orig_filename": "Schmid_Karl_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 253", "author": "", "orig_id": 1406554}}, {"model": "metainfo.source", "pk": 4215, "fields": {"orig_filename": "Schmid_Karl_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 281f.", "author": "", "orig_id": 1406412}}, {"model": "metainfo.source", "pk": 4216, "fields": {"orig_filename": "Schmid_Karl_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 282", "author": "", "orig_id": 1406413}}, {"model": "metainfo.source", "pk": 4217, "fields": {"orig_filename": "Schmid_Karl_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 282f.", "author": "", "orig_id": 1406414}}, {"model": "metainfo.source", "pk": 4218, "fields": {"orig_filename": "Schmid_Karl_1905_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245", "author": "", "orig_id": 1406538}}, {"model": "metainfo.source", "pk": 4219, "fields": {"orig_filename": "Schmid_Koloman_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283f.", "author": "", "orig_id": 1406417}}, {"model": "metainfo.source", "pk": 4220, "fields": {"orig_filename": "Schmid_Leopold_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 284", "author": "", "orig_id": 1406418}}, {"model": "metainfo.source", "pk": 4221, "fields": {"orig_filename": "Schlinger_Katharina_1869_1954.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207", "author": "", "orig_id": 1406461}}, {"model": "metainfo.source", "pk": 4222, "fields": {"orig_filename": "Schlitter-Niedernberg_Karl_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 208f.", "author": "", "orig_id": 1406464}}, {"model": "metainfo.source", "pk": 4223, "fields": {"orig_filename": "Schlitter_Hanns_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207f.", "author": "", "orig_id": 1406462}}, {"model": "metainfo.source", "pk": 4224, "fields": {"orig_filename": "Schlitter_Johann_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 208", "author": "", "orig_id": 1406463}}, {"model": "metainfo.source", "pk": 4225, "fields": {"orig_filename": "Schloegelhofer_Edmund_1836_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 209f.", "author": "", "orig_id": 1406465}}, {"model": "metainfo.source", "pk": 4226, "fields": {"orig_filename": "Schloegelhofer_Franz_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210", "author": "", "orig_id": 1406466}}, {"model": "metainfo.source", "pk": 4227, "fields": {"orig_filename": "Schloegl_Alfons_1886_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210", "author": "", "orig_id": 1406467}}, {"model": "metainfo.source", "pk": 4228, "fields": {"orig_filename": "Schloegl_Friedrich_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210f.", "author": "", "orig_id": 1406468}}, {"model": "metainfo.source", "pk": 4229, "fields": {"orig_filename": "Schloegl_Josefine_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 211", "author": "", "orig_id": 1406469}}, {"model": "metainfo.source", "pk": 4230, "fields": {"orig_filename": "Schloegl_Nivard_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 211f.", "author": "", "orig_id": 1406470}}, {"model": "metainfo.source", "pk": 4231, "fields": {"orig_filename": "Schloenbach_Urban_1841_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 212", "author": "", "orig_id": 1406471}}, {"model": "metainfo.source", "pk": 4232, "fields": {"orig_filename": "Schloer_Alois_1805_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 213", "author": "", "orig_id": 1406472}}, {"model": "metainfo.source", "pk": 4233, "fields": {"orig_filename": "Schloessinger_Wilhelm_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 214f.", "author": "", "orig_id": 1406475}}, {"model": "metainfo.source", "pk": 4234, "fields": {"orig_filename": "Schloess_Heinrich-Edmund_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 213f.", "author": "", "orig_id": 1406473}}, {"model": "metainfo.source", "pk": 4235, "fields": {"orig_filename": "Schloess_Karl-Johann_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 214", "author": "", "orig_id": 1406474}}, {"model": "metainfo.source", "pk": 4236, "fields": {"orig_filename": "Schloffer_Alois_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 215", "author": "", "orig_id": 1406476}}, {"model": "metainfo.source", "pk": 4237, "fields": {"orig_filename": "Schloffer_Hermann-Alexander_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 215f.", "author": "", "orig_id": 1406477}}, {"model": "metainfo.source", "pk": 4238, "fields": {"orig_filename": "Schloissnigg_Johann-Nep_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 216f.", "author": "", "orig_id": 1406478}}, {"model": "metainfo.source", "pk": 4239, "fields": {"orig_filename": "Schloissnigg_Theodor-Wilhelm_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 217", "author": "", "orig_id": 1406479}}, {"model": "metainfo.source", "pk": 4240, "fields": {"orig_filename": "Schlossar_Anton_1849_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 217f.", "author": "", "orig_id": 1406480}}, {"model": "metainfo.source", "pk": 4241, "fields": {"orig_filename": "Schlossar_Viktor_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 218", "author": "", "orig_id": 1406481}}, {"model": "metainfo.source", "pk": 4242, "fields": {"orig_filename": "Schlosser-Klekovski_Josip_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 219f.", "author": "", "orig_id": 1406484}}, {"model": "metainfo.source", "pk": 4243, "fields": {"orig_filename": "Schlosser_Julius-Alwin_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 218f.", "author": "", "orig_id": 1406482}}, {"model": "metainfo.source", "pk": 4244, "fields": {"orig_filename": "Schlosser_Theodor_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 219", "author": "", "orig_id": 1406483}}, {"model": "metainfo.source", "pk": 4245, "fields": {"orig_filename": "Schlossnikel_Hieronymus_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 220", "author": "", "orig_id": 1406485}}, {"model": "metainfo.source", "pk": 4246, "fields": {"orig_filename": "Schlotterbeck_Wilhelm-Friedrich_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 220f.", "author": "", "orig_id": 1406486}}, {"model": "metainfo.source", "pk": 4247, "fields": {"orig_filename": "Schlucker_Philipp_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 221", "author": "", "orig_id": 2036478}}, {"model": "metainfo.source", "pk": 4248, "fields": {"orig_filename": "Schluga-Rastenfeld_August_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 221f.", "author": "", "orig_id": 1406487}}, {"model": "metainfo.source", "pk": 4249, "fields": {"orig_filename": "Schluga-Rastenfeld_Franz-Sales_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 222", "author": "", "orig_id": 1406488}}, {"model": "metainfo.source", "pk": 4250, "fields": {"orig_filename": "Schlumberger-Goldeck_Gustav_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 2036503}}, {"model": "metainfo.source", "pk": 4251, "fields": {"orig_filename": "Schlumberger-Goldeck_Otto_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 1422951}}, {"model": "metainfo.source", "pk": 4252, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert-Alwin_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 1406490}}, {"model": "metainfo.source", "pk": 4253, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 2036512}}, {"model": "metainfo.source", "pk": 4254, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 222f.", "author": "", "orig_id": 1406489}}, {"model": "metainfo.source", "pk": 4255, "fields": {"orig_filename": "Schlumpf_Sigmund-Franz-Joseph_1819_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223f.", "author": "", "orig_id": 1406491}}, {"model": "metainfo.source", "pk": 4256, "fields": {"orig_filename": "Schlusche_Eduard_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 224f.", "author": "", "orig_id": 1406492}}, {"model": "metainfo.source", "pk": 4257, "fields": {"orig_filename": "Schmaeck-Stregen_Emilia_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 225", "author": "", "orig_id": 1406493}}, {"model": "metainfo.source", "pk": 4258, "fields": {"orig_filename": "Schmalfuss_Anton_1821_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226f.", "author": "", "orig_id": 1406497}}, {"model": "metainfo.source", "pk": 4259, "fields": {"orig_filename": "Schmalz_Josef_1804_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 227", "author": "", "orig_id": 1406498}}, {"model": "metainfo.source", "pk": 4260, "fields": {"orig_filename": "Schmal_Adolf_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 225f.", "author": "", "orig_id": 1406494}}, {"model": "metainfo.source", "pk": 4261, "fields": {"orig_filename": "Schmal_Felix_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406495}}, {"model": "metainfo.source", "pk": 4262, "fields": {"orig_filename": "Schmarda_Anton_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 228", "author": "", "orig_id": 1406500}}, {"model": "metainfo.source", "pk": 4263, "fields": {"orig_filename": "Schmarda_Karl-Johann_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 227f.", "author": "", "orig_id": 1406499}}, {"model": "metainfo.source", "pk": 4264, "fields": {"orig_filename": "Schmarda_Ludwig-Karl_1819_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 228f.", "author": "", "orig_id": 1406501}}, {"model": "metainfo.source", "pk": 4265, "fields": {"orig_filename": "Schmeidel_Gustav_1895_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 229f.", "author": "", "orig_id": 1406503}}, {"model": "metainfo.source", "pk": 4266, "fields": {"orig_filename": "Schmeja_Edmund_1837_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 230f.", "author": "", "orig_id": 1406504}}, {"model": "metainfo.source", "pk": 4267, "fields": {"orig_filename": "Schmeja_Ernst_1868_1954.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231", "author": "", "orig_id": 1406506}}, {"model": "metainfo.source", "pk": 4268, "fields": {"orig_filename": "Schmeja_Maximilian-Karl_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231", "author": "", "orig_id": 1406505}}, {"model": "metainfo.source", "pk": 4269, "fields": {"orig_filename": "Schmelkes_Gedaljah_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231f.", "author": "", "orig_id": 1406507}}, {"model": "metainfo.source", "pk": 4270, "fields": {"orig_filename": "Schmelzer_Antonin-Stanislav_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 232f.", "author": "", "orig_id": 1406509}}, {"model": "metainfo.source", "pk": 4271, "fields": {"orig_filename": "Schmelzer_Karl_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233", "author": "", "orig_id": 1406510}}, {"model": "metainfo.source", "pk": 4272, "fields": {"orig_filename": "Schmerber_Hugo_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233f.", "author": "", "orig_id": 1406512}}, {"model": "metainfo.source", "pk": 4273, "fields": {"orig_filename": "Schmerling_Anton_1805_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234f.", "author": "", "orig_id": 1406513}}, {"model": "metainfo.source", "pk": 4274, "fields": {"orig_filename": "Schmerling_Joseph_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 235", "author": "", "orig_id": 1406516}}, {"model": "metainfo.source", "pk": 4275, "fields": {"orig_filename": "Schmerling_Moriz_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234", "author": "", "orig_id": 1406515}}, {"model": "metainfo.source", "pk": 4276, "fields": {"orig_filename": "Schmerling_Rainer_1810_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234", "author": "", "orig_id": 1406514}}, {"model": "metainfo.source", "pk": 4277, "fields": {"orig_filename": "Schmerz_Hermann_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 235f.", "author": "", "orig_id": 1406518}}, {"model": "metainfo.source", "pk": 4278, "fields": {"orig_filename": "Schmerz_Leopold_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236", "author": "", "orig_id": 1406519}}, {"model": "metainfo.source", "pk": 4279, "fields": {"orig_filename": "Schmer_Josefine_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233", "author": "", "orig_id": 1406511}}, {"model": "metainfo.source", "pk": 4280, "fields": {"orig_filename": "Schmetzer_Gustav-Julius_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236", "author": "", "orig_id": 1406520}}, {"model": "metainfo.source", "pk": 4281, "fields": {"orig_filename": "Schmeykal_Franz_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236f.", "author": "", "orig_id": 1406521}}, {"model": "metainfo.source", "pk": 4282, "fields": {"orig_filename": "Schmid-Altenheim_Konrad_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 303f.", "author": "", "orig_id": 1406718}}, {"model": "metainfo.source", "pk": 4283, "fields": {"orig_filename": "Schmid-Altenstadt_Karl-August_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 304", "author": "", "orig_id": 1406719}}, {"model": "metainfo.source", "pk": 4284, "fields": {"orig_filename": "Schmid-Altenstadt_Maximilian-Von_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 304f.", "author": "", "orig_id": 1406720}}, {"model": "metainfo.source", "pk": 4285, "fields": {"orig_filename": "Schmid-Bergenhold_Johann-Ferdinand_1786_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 306", "author": "", "orig_id": 1406722}}, {"model": "metainfo.source", "pk": 4286, "fields": {"orig_filename": "Schmid-Boneti_Hugo_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 306f.", "author": "", "orig_id": 1406723}}, {"model": "metainfo.source", "pk": 4287, "fields": {"orig_filename": "Schmid-Gasteiger_Felix_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307", "author": "", "orig_id": 1406724}}, {"model": "metainfo.source", "pk": 4288, "fields": {"orig_filename": "Schmid-Georgenegg_Albert_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307", "author": "", "orig_id": 1406725}}, {"model": "metainfo.source", "pk": 4289, "fields": {"orig_filename": "Schmid-Renner_Franz_1851_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307f.", "author": "", "orig_id": 1406726}}, {"model": "metainfo.source", "pk": 4290, "fields": {"orig_filename": "Schmid-Reutte_Ludwig_1862_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308", "author": "", "orig_id": 1406727}}, {"model": "metainfo.source", "pk": 4291, "fields": {"orig_filename": "Schmid-Schmidsfelden_Adolf_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308f.", "author": "", "orig_id": 1406728}}, {"model": "metainfo.source", "pk": 4292, "fields": {"orig_filename": "Schmid-Schmidsfelden_August_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308", "author": "", "orig_id": 1406729}}, {"model": "metainfo.source", "pk": 4293, "fields": {"orig_filename": "Schmid-Schmidsfelden_Emil-Josef-Johann_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 310", "author": "", "orig_id": 1406734}}, {"model": "metainfo.source", "pk": 4294, "fields": {"orig_filename": "Schmid-Schmidsfelden_Ferdinand-Anton_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406731}}, {"model": "metainfo.source", "pk": 4295, "fields": {"orig_filename": "Schmid-Schmidsfelden_Josef-Karl-Mathaeus_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309f.", "author": "", "orig_id": 1406733}}, {"model": "metainfo.source", "pk": 4296, "fields": {"orig_filename": "Schmid-Schmidsfelden_Josef-Karl_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406730}}, {"model": "metainfo.source", "pk": 4297, "fields": {"orig_filename": "Schmid-Schmidsfelden_Maximilian-Constantin_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406732}}, {"model": "metainfo.source", "pk": 4298, "fields": {"orig_filename": "Schmid-Schmidsfelden_Moriz_1836_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 310f.", "author": "", "orig_id": 1406735}}, {"model": "metainfo.source", "pk": 4299, "fields": {"orig_filename": "Schmid-Schmidsfelden_Victor-Johann-Bapt_1860_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 311", "author": "", "orig_id": 1406736}}, {"model": "metainfo.source", "pk": 4300, "fields": {"orig_filename": "Schmid-Schmidsfelden_Walter-Johann-Friedrich_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 311f.", "author": "", "orig_id": 1406737}}, {"model": "metainfo.source", "pk": 4301, "fields": {"orig_filename": "Schmid-Tavera_Anton_1793_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 312", "author": "", "orig_id": 1406738}}, {"model": "metainfo.source", "pk": 4302, "fields": {"orig_filename": "Schmid-Tavera_Ernst_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 312f.", "author": "", "orig_id": 1406739}}, {"model": "metainfo.source", "pk": 4303, "fields": {"orig_filename": "Schmid-Tavera_Karl_1832_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 313f.", "author": "", "orig_id": 1406740}}, {"model": "metainfo.source", "pk": 4304, "fields": {"orig_filename": "Schmid-Zabierow_Franz_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 314", "author": "", "orig_id": 1406741}}, {"model": "metainfo.source", "pk": 4305, "fields": {"orig_filename": "Schmidbauer_Lambert_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 314f.", "author": "", "orig_id": 1406742}}, {"model": "metainfo.source", "pk": 4306, "fields": {"orig_filename": "Schmidberger_Josef_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 315", "author": "", "orig_id": 1406743}}, {"model": "metainfo.source", "pk": 4307, "fields": {"orig_filename": "Schmidburg_Joseph-Camillo_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 315f.", "author": "", "orig_id": 1406744}}, {"model": "metainfo.source", "pk": 4308, "fields": {"orig_filename": "Schmidburg_Rudolf_1810_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 316", "author": "", "orig_id": 1406745}}, {"model": "metainfo.source", "pk": 4309, "fields": {"orig_filename": "Schmidek_Karl_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 316f.", "author": "", "orig_id": 1406746}}, {"model": "metainfo.source", "pk": 4310, "fields": {"orig_filename": "Schmidek_Karl_1834_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317", "author": "", "orig_id": 1406747}}, {"model": "metainfo.source", "pk": 4311, "fields": {"orig_filename": "Schmiderer_Joseph-Ignaz_1755_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317f.", "author": "", "orig_id": 1406749}}, {"model": "metainfo.source", "pk": 4312, "fields": {"orig_filename": "Schmidgruber_Anton_1837_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 318f.", "author": "", "orig_id": 1406750}}, {"model": "metainfo.source", "pk": 4313, "fields": {"orig_filename": "Schmidinger_Josef_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 319", "author": "", "orig_id": 1406751}}, {"model": "metainfo.source", "pk": 4314, "fields": {"orig_filename": "Schmidkunz_Hans_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 319f.", "author": "", "orig_id": 1406752}}, {"model": "metainfo.source", "pk": 4315, "fields": {"orig_filename": "Schmidl_Adolf_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 320f.", "author": "", "orig_id": 1406753}}, {"model": "metainfo.source", "pk": 4316, "fields": {"orig_filename": "Schmidl_Anna_1782_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325f.", "author": "", "orig_id": 1406599}}, {"model": "metainfo.source", "pk": 4317, "fields": {"orig_filename": "Schmidl_Carlo_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 321f.", "author": "", "orig_id": 1406754}}, {"model": "metainfo.source", "pk": 4318, "fields": {"orig_filename": "Schindler_Samuel_1762_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 155f.", "author": "", "orig_id": 1406258}}, {"model": "metainfo.source", "pk": 4319, "fields": {"orig_filename": "Schindler_Vinzenz-Karl_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 156", "author": "", "orig_id": 1406308}}, {"model": "metainfo.source", "pk": 4320, "fields": {"orig_filename": "Schindloecker_Eugen_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 157", "author": "", "orig_id": 1406310}}, {"model": "metainfo.source", "pk": 4321, "fields": {"orig_filename": "Schindloecker_Philipp_1753_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 157", "author": "", "orig_id": 1406311}}, {"model": "metainfo.source", "pk": 4322, "fields": {"orig_filename": "Schindloecker_Wolfgang_1789_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406312}}, {"model": "metainfo.source", "pk": 4323, "fields": {"orig_filename": "Schinko_Raimund_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406313}}, {"model": "metainfo.source", "pk": 4324, "fields": {"orig_filename": "Schinnagl_Maurus_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406314}}, {"model": "metainfo.source", "pk": 4325, "fields": {"orig_filename": "Schinzel_Josef_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158f.", "author": "", "orig_id": 1406315}}, {"model": "metainfo.source", "pk": 4326, "fields": {"orig_filename": "Schio_Almerico_1836_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 159f.", "author": "", "orig_id": 1406316}}, {"model": "metainfo.source", "pk": 4327, "fields": {"orig_filename": "Schiper_Ignacy_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 160", "author": "", "orig_id": 1406317}}, {"model": "metainfo.source", "pk": 4328, "fields": {"orig_filename": "Schipper_Jakob_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 160f.", "author": "", "orig_id": 1406318}}, {"model": "metainfo.source", "pk": 4329, "fields": {"orig_filename": "Schirkhuber_Moricz_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 161", "author": "", "orig_id": 1406319}}, {"model": "metainfo.source", "pk": 4330, "fields": {"orig_filename": "Schirmer_Adolf_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 161f.", "author": "", "orig_id": 1406320}}, {"model": "metainfo.source", "pk": 4331, "fields": {"orig_filename": "Schirmer_Friedrich_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162", "author": "", "orig_id": 1406321}}, {"model": "metainfo.source", "pk": 4332, "fields": {"orig_filename": "Schirmer_Otto_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162", "author": "", "orig_id": 1406322}}, {"model": "metainfo.source", "pk": 4333, "fields": {"orig_filename": "Schirmer_Wilhelm-Kajetan_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162f.", "author": "", "orig_id": 1406323}}, {"model": "metainfo.source", "pk": 4334, "fields": {"orig_filename": "Schirnboeck_Ferdinand_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 163", "author": "", "orig_id": 1406324}}, {"model": "metainfo.source", "pk": 4335, "fields": {"orig_filename": "Schirndinger-Schirnding_Ferdinand-Leopold_1808_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 163f.", "author": "", "orig_id": 1406325}}, {"model": "metainfo.source", "pk": 4336, "fields": {"orig_filename": "Schirnhofer_Gerhard_1819_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 164", "author": "", "orig_id": 1406326}}, {"model": "metainfo.source", "pk": 4337, "fields": {"orig_filename": "Schissel-Fleschenberg_Otmar_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 164f.", "author": "", "orig_id": 1406327}}, {"model": "metainfo.source", "pk": 4338, "fields": {"orig_filename": "Schittenhelm_Anton_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165", "author": "", "orig_id": 1406328}}, {"model": "metainfo.source", "pk": 4339, "fields": {"orig_filename": "Schitter_Balthasar_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165", "author": "", "orig_id": 1406329}}, {"model": "metainfo.source", "pk": 4340, "fields": {"orig_filename": "Schivert_Gustav-Albert_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165f.", "author": "", "orig_id": 1406330}}, {"model": "metainfo.source", "pk": 4341, "fields": {"orig_filename": "Schiviz-Schivizhoffen_Ludwig_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166", "author": "", "orig_id": 1406331}}, {"model": "metainfo.source", "pk": 4342, "fields": {"orig_filename": "Schlaeger_Antonie_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166", "author": "", "orig_id": 1406332}}, {"model": "metainfo.source", "pk": 4343, "fields": {"orig_filename": "Schlaeger_Hans_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166f.", "author": "", "orig_id": 1406333}}, {"model": "metainfo.source", "pk": 4344, "fields": {"orig_filename": "Schlagenhaufer_Friedrich_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 167", "author": "", "orig_id": 1406334}}, {"model": "metainfo.source", "pk": 4345, "fields": {"orig_filename": "Schlager_Johann-Ev_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 167f.", "author": "", "orig_id": 1406335}}, {"model": "metainfo.source", "pk": 4346, "fields": {"orig_filename": "Schlager_Ludwig_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 168f.", "author": "", "orig_id": 1406336}}, {"model": "metainfo.source", "pk": 4347, "fields": {"orig_filename": "Schlager_Marcellinus_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 169", "author": "", "orig_id": 1406337}}, {"model": "metainfo.source", "pk": 4348, "fields": {"orig_filename": "Schlaghamer_Richard_1871_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 169f.", "author": "", "orig_id": 1406338}}, {"model": "metainfo.source", "pk": 4349, "fields": {"orig_filename": "Schlangenhausen_Emma_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170", "author": "", "orig_id": 1406339}}, {"model": "metainfo.source", "pk": 4350, "fields": {"orig_filename": "Schlar_Josef_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170", "author": "", "orig_id": 1406340}}, {"model": "metainfo.source", "pk": 4351, "fields": {"orig_filename": "Schlattauer_Rudolf_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170f.", "author": "", "orig_id": 1406341}}, {"model": "metainfo.source", "pk": 4352, "fields": {"orig_filename": "Schlauch_Loerinc_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 171", "author": "", "orig_id": 1406342}}, {"model": "metainfo.source", "pk": 4353, "fields": {"orig_filename": "Schlechta-Hrochow_Friedrich-Peter-Maria-Emanuel_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 172f.", "author": "", "orig_id": 1406345}}, {"model": "metainfo.source", "pk": 4354, "fields": {"orig_filename": "Schlechta-Hrochow_Peter-Josef_1792_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 173", "author": "", "orig_id": 1406346}}, {"model": "metainfo.source", "pk": 4355, "fields": {"orig_filename": "Schlechta-Wschehrd_Franz-X-Vinzenz_1765_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 174", "author": "", "orig_id": 1406348}}, {"model": "metainfo.source", "pk": 4356, "fields": {"orig_filename": "Schlechta-Wschehrd_Franz-X_1796_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 173f.", "author": "", "orig_id": 1406347}}, {"model": "metainfo.source", "pk": 4357, "fields": {"orig_filename": "Schlechta-Wschehrd_Kamill-Franz-Karl-Adam_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 174f.", "author": "", "orig_id": 1406349}}, {"model": "metainfo.source", "pk": 4358, "fields": {"orig_filename": "Schlechta-Wschehrd_Ottokar-Maria_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 175", "author": "", "orig_id": 1406350}}, {"model": "metainfo.source", "pk": 4359, "fields": {"orig_filename": "Schlechta_Franz_1833_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 171f.", "author": "", "orig_id": 1406343}}, {"model": "metainfo.source", "pk": 4360, "fields": {"orig_filename": "Schlechta_Peter-Josef-Dominik_1765_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 172", "author": "", "orig_id": 1406344}}, {"model": "metainfo.source", "pk": 4361, "fields": {"orig_filename": "Schlechter_Josef-Dominik_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 175f.", "author": "", "orig_id": 1406351}}, {"model": "metainfo.source", "pk": 4362, "fields": {"orig_filename": "Schlechter_Karl_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 176", "author": "", "orig_id": 1406353}}, {"model": "metainfo.source", "pk": 4363, "fields": {"orig_filename": "Schlegel_Anton_1878_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 177", "author": "", "orig_id": 1406354}}, {"model": "metainfo.source", "pk": 4364, "fields": {"orig_filename": "Schlegel_Dorothea_1764_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 177f.", "author": "", "orig_id": 1406259}}, {"model": "metainfo.source", "pk": 4365, "fields": {"orig_filename": "Schlegel_Friedrich_1772_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 178f.", "author": "", "orig_id": 1406260}}, {"model": "metainfo.source", "pk": 4366, "fields": {"orig_filename": "Schlegel_Joseph_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 179f.", "author": "", "orig_id": 1406261}}, {"model": "metainfo.source", "pk": 4367, "fields": {"orig_filename": "Schlegel_Richard_1906_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 180", "author": "", "orig_id": 1406262}}, {"model": "metainfo.source", "pk": 4368, "fields": {"orig_filename": "Schlegel_Thomas_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 180f.", "author": "", "orig_id": 1406263}}, {"model": "metainfo.source", "pk": 4369, "fields": {"orig_filename": "Schleifer_Mathias-Leopold_1771_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 181", "author": "", "orig_id": 1406265}}, {"model": "metainfo.source", "pk": 4370, "fields": {"orig_filename": "Schleifer_Moriz-Leopold_1817_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 181f.", "author": "", "orig_id": 1406266}}, {"model": "metainfo.source", "pk": 4371, "fields": {"orig_filename": "Schleimer_Hans_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 182", "author": "", "orig_id": 1406267}}, {"model": "metainfo.source", "pk": 4372, "fields": {"orig_filename": "Schleindl_Franz_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 183", "author": "", "orig_id": 1406269}}, {"model": "metainfo.source", "pk": 4373, "fields": {"orig_filename": "Schleinitz_Alexandra_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 183f.", "author": "", "orig_id": 1406270}}, {"model": "metainfo.source", "pk": 4374, "fields": {"orig_filename": "Schlein_Anton-Franz_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 182f.", "author": "", "orig_id": 1406268}}, {"model": "metainfo.source", "pk": 4375, "fields": {"orig_filename": "Schleissner_Felix_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 184f.", "author": "", "orig_id": 1406272}}, {"model": "metainfo.source", "pk": 4376, "fields": {"orig_filename": "Schleiss_Franz-De-Paula_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 184", "author": "", "orig_id": 1406271}}, {"model": "metainfo.source", "pk": 4377, "fields": {"orig_filename": "Schlemmer_Anton_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185", "author": "", "orig_id": 1406273}}, {"model": "metainfo.source", "pk": 4378, "fields": {"orig_filename": "Schlemmer_Anton_1883_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185", "author": "", "orig_id": 1406274}}, {"model": "metainfo.source", "pk": 4379, "fields": {"orig_filename": "Schlemmer_Fritz_1884_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185f.", "author": "", "orig_id": 1406275}}, {"model": "metainfo.source", "pk": 4380, "fields": {"orig_filename": "Schlenk_Karl-Heinrich_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 186f.", "author": "", "orig_id": 1406276}}, {"model": "metainfo.source", "pk": 4381, "fields": {"orig_filename": "Schlenther_Paula_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188", "author": "", "orig_id": 1406278}}, {"model": "metainfo.source", "pk": 4382, "fields": {"orig_filename": "Schlenther_Paul_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 187f.", "author": "", "orig_id": 1406277}}, {"model": "metainfo.source", "pk": 4383, "fields": {"orig_filename": "Schlenz_Johann_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188", "author": "", "orig_id": 1406279}}, {"model": "metainfo.source", "pk": 4384, "fields": {"orig_filename": "Schleps_Karl_1802_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188f.", "author": "", "orig_id": 1406280}}, {"model": "metainfo.source", "pk": 4385, "fields": {"orig_filename": "Schlesinger_Akiva-Joseph_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406281}}, {"model": "metainfo.source", "pk": 4386, "fields": {"orig_filename": "Schlesinger_Anton_1853_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406282}}, {"model": "metainfo.source", "pk": 4387, "fields": {"orig_filename": "Schlesinger_Bernhard_1773_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406283}}, {"model": "metainfo.source", "pk": 4388, "fields": {"orig_filename": "Schlesinger_Guenther_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 190", "author": "", "orig_id": 1406284}}, {"model": "metainfo.source", "pk": 4389, "fields": {"orig_filename": "Schlesinger_Hans_1896_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 190f.", "author": "", "orig_id": 1406285}}, {"model": "metainfo.source", "pk": 4390, "fields": {"orig_filename": "Schlesinger_Hermann_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 191", "author": "", "orig_id": 1406286}}, {"model": "metainfo.source", "pk": 4391, "fields": {"orig_filename": "Schlesinger_Ignac_1810_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 191f.", "author": "", "orig_id": 1406287}}, {"model": "metainfo.source", "pk": 4392, "fields": {"orig_filename": "Schlesinger_Josef_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 192", "author": "", "orig_id": 1406288}}, {"model": "metainfo.source", "pk": 4393, "fields": {"orig_filename": "Schlesinger_Julie_1815_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193", "author": "", "orig_id": 1406289}}, {"model": "metainfo.source", "pk": 4394, "fields": {"orig_filename": "Schlesinger_Karl-M_1847_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 194", "author": "", "orig_id": 1406292}}, {"model": "metainfo.source", "pk": 4395, "fields": {"orig_filename": "Schlesinger_Karl_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193", "author": "", "orig_id": 1406290}}, {"model": "metainfo.source", "pk": 4396, "fields": {"orig_filename": "Schlesinger_Karl_1889_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193f.", "author": "", "orig_id": 1406291}}, {"model": "metainfo.source", "pk": 4397, "fields": {"orig_filename": "Schlesinger_Louis_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 194f.", "author": "", "orig_id": 1406293}}, {"model": "metainfo.source", "pk": 4398, "fields": {"orig_filename": "Schlesinger_Ludwig_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 195f.", "author": "", "orig_id": 1406294}}, {"model": "metainfo.source", "pk": 4399, "fields": {"orig_filename": "Schlesinger_Ludwig_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 196f.", "author": "", "orig_id": 1406295}}, {"model": "metainfo.source", "pk": 4400, "fields": {"orig_filename": "Schlesinger_Martin_1751_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 197", "author": "", "orig_id": 1406296}}, {"model": "metainfo.source", "pk": 4401, "fields": {"orig_filename": "Schlesinger_Max_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 197f.", "author": "", "orig_id": 1406297}}, {"model": "metainfo.source", "pk": 4402, "fields": {"orig_filename": "Schlesinger_Max_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 199", "author": "", "orig_id": 2036451}}, {"model": "metainfo.source", "pk": 4403, "fields": {"orig_filename": "Schlesinger_Sigmund_1811_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 198", "author": "", "orig_id": 1406298}}, {"model": "metainfo.source", "pk": 4404, "fields": {"orig_filename": "Schlesinger_Sigmund_1832_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 198f.", "author": "", "orig_id": 1406299}}, {"model": "metainfo.source", "pk": 4405, "fields": {"orig_filename": "Schlesinger_Therese_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 199f.", "author": "", "orig_id": 1406300}}, {"model": "metainfo.source", "pk": 4406, "fields": {"orig_filename": "Schlesinger_Wilhelm_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 200", "author": "", "orig_id": 1406301}}, {"model": "metainfo.source", "pk": 4407, "fields": {"orig_filename": "Schlesinger_Wilhelm_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 200f.", "author": "", "orig_id": 1406302}}, {"model": "metainfo.source", "pk": 4408, "fields": {"orig_filename": "Schlesinger_Wilhelm_1894_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 201", "author": "", "orig_id": 1406303}}, {"model": "metainfo.source", "pk": 4409, "fields": {"orig_filename": "Schleussner_Josef_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 201", "author": "", "orig_id": 1406304}}, {"model": "metainfo.source", "pk": 4410, "fields": {"orig_filename": "Schleyer-Pontemalghera_Leopold_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 202", "author": "", "orig_id": 1406305}}, {"model": "metainfo.source", "pk": 4411, "fields": {"orig_filename": "Schlichtinger_Wolfgang_1745_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 202f.", "author": "", "orig_id": 1406306}}, {"model": "metainfo.source", "pk": 4412, "fields": {"orig_filename": "Schlickinger_Max_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 204", "author": "", "orig_id": 1406455}}, {"model": "metainfo.source", "pk": 4413, "fields": {"orig_filename": "Schlick_Dominikus_1816_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 203", "author": "", "orig_id": 1406307}}, {"model": "metainfo.source", "pk": 4414, "fields": {"orig_filename": "Schlick_Moritz_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 203f.", "author": "", "orig_id": 1406454}}, {"model": "metainfo.source", "pk": 4415, "fields": {"orig_filename": "Schliessmann_Hans_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 205f.", "author": "", "orig_id": 1406457}}, {"model": "metainfo.source", "pk": 4416, "fields": {"orig_filename": "Schlik-Bassano-Weisskirchen_Maria-Elisabeth_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 206", "author": "", "orig_id": 1406458}}, {"model": "metainfo.source", "pk": 4417, "fields": {"orig_filename": "Schlimp_Karl_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 206f.", "author": "", "orig_id": 1406459}}, {"model": "metainfo.source", "pk": 4418, "fields": {"orig_filename": "Schlinger_Anton_1870_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207", "author": "", "orig_id": 1406460}}, {"model": "metainfo.source", "pk": 4419, "fields": {"orig_filename": "Schicht_Georg_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105", "author": "", "orig_id": 1406060}}, {"model": "metainfo.source", "pk": 4420, "fields": {"orig_filename": "Schicht_Georg_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105", "author": "", "orig_id": 1406061}}, {"model": "metainfo.source", "pk": 4421, "fields": {"orig_filename": "Schicht_Johann_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105f.", "author": "", "orig_id": 1406062}}, {"model": "metainfo.source", "pk": 4422, "fields": {"orig_filename": "Schicht_Josef_1880_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 106", "author": "", "orig_id": 1406063}}, {"model": "metainfo.source", "pk": 4423, "fields": {"orig_filename": "Schickedanz_Albert_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 107", "author": "", "orig_id": 1406065}}, {"model": "metainfo.source", "pk": 4424, "fields": {"orig_filename": "Schicker_Josef_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 107", "author": "", "orig_id": 1406066}}, {"model": "metainfo.source", "pk": 4425, "fields": {"orig_filename": "Schickh_Antonie_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 108", "author": "", "orig_id": 1406067}}, {"model": "metainfo.source", "pk": 4426, "fields": {"orig_filename": "Schickh_Johann-Valentin_1770_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 108f.", "author": "", "orig_id": 1406068}}, {"model": "metainfo.source", "pk": 4427, "fields": {"orig_filename": "Schickh_Josef-Kilian_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 109", "author": "", "orig_id": 1406069}}, {"model": "metainfo.source", "pk": 4428, "fields": {"orig_filename": "Schick_Moses_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 106f.", "author": "", "orig_id": 1406064}}, {"model": "metainfo.source", "pk": 4429, "fields": {"orig_filename": "Schider_Fritz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 109f.", "author": "", "orig_id": 1406070}}, {"model": "metainfo.source", "pk": 4430, "fields": {"orig_filename": "Schidlof_Arthur_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 110", "author": "", "orig_id": 1406071}}, {"model": "metainfo.source", "pk": 4431, "fields": {"orig_filename": "Schieberth_Hermann_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 110f.", "author": "", "orig_id": 1406072}}, {"model": "metainfo.source", "pk": 4432, "fields": {"orig_filename": "Schiebl_Ignac_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111", "author": "", "orig_id": 1406073}}, {"model": "metainfo.source", "pk": 4433, "fields": {"orig_filename": "Schiebl_Jaroslav_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111", "author": "", "orig_id": 1406074}}, {"model": "metainfo.source", "pk": 4434, "fields": {"orig_filename": "Schiedermayr_Johann-Bapt_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111f.", "author": "", "orig_id": 1406075}}, {"model": "metainfo.source", "pk": 4435, "fields": {"orig_filename": "Schiedermayr_Johann-Bapt_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 112", "author": "", "orig_id": 1406076}}, {"model": "metainfo.source", "pk": 4436, "fields": {"orig_filename": "Schiedermayr_Karl_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 112f.", "author": "", "orig_id": 1406077}}, {"model": "metainfo.source", "pk": 4437, "fields": {"orig_filename": "Schiefthaler_Franz_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 113", "author": "", "orig_id": 1406078}}, {"model": "metainfo.source", "pk": 4438, "fields": {"orig_filename": "Schiegl_Wilhelm_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 113f.", "author": "", "orig_id": 1406079}}, {"model": "metainfo.source", "pk": 4439, "fields": {"orig_filename": "Schiele_Egon_1890_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115ff.", "author": "", "orig_id": 1406084}}, {"model": "metainfo.source", "pk": 4440, "fields": {"orig_filename": "Schiel_Heinrich-Josef_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 114", "author": "", "orig_id": 1406080}}, {"model": "metainfo.source", "pk": 4441, "fields": {"orig_filename": "Schiel_Karl_1851_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 114f.", "author": "", "orig_id": 1406081}}, {"model": "metainfo.source", "pk": 4442, "fields": {"orig_filename": "Schiel_Samuel-Traugott_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115", "author": "", "orig_id": 1406083}}, {"model": "metainfo.source", "pk": 4443, "fields": {"orig_filename": "Schiel_Samuel_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115", "author": "", "orig_id": 1406082}}, {"model": "metainfo.source", "pk": 4444, "fields": {"orig_filename": "Schiepek_Josef_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117", "author": "", "orig_id": 1406086}}, {"model": "metainfo.source", "pk": 4445, "fields": {"orig_filename": "Schierer_Franz_1819_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117", "author": "", "orig_id": 1406087}}, {"model": "metainfo.source", "pk": 4446, "fields": {"orig_filename": "Schierl-Moorburg_Karl_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117f.", "author": "", "orig_id": 1406088}}, {"model": "metainfo.source", "pk": 4447, "fields": {"orig_filename": "Schiesler_Ignac-Jan_1782_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118", "author": "", "orig_id": 1406089}}, {"model": "metainfo.source", "pk": 4448, "fields": {"orig_filename": "Schiessl-Perstorff_Franz_1844_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118", "author": "", "orig_id": 1406090}}, {"model": "metainfo.source", "pk": 4449, "fields": {"orig_filename": "Schiessler_Sebastian-Willibald_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118f.", "author": "", "orig_id": 1406091}}, {"model": "metainfo.source", "pk": 4450, "fields": {"orig_filename": "Schiestl_Anton-Martin_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 119f.", "author": "", "orig_id": 1406356}}, {"model": "metainfo.source", "pk": 4451, "fields": {"orig_filename": "Schiestl_Anton_1808_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 119", "author": "", "orig_id": 1406355}}, {"model": "metainfo.source", "pk": 4452, "fields": {"orig_filename": "Schiestl_Leopold_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 120f.", "author": "", "orig_id": 1406357}}, {"model": "metainfo.source", "pk": 4453, "fields": {"orig_filename": "Schiestl_Matthaeus_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 121", "author": "", "orig_id": 1406358}}, {"model": "metainfo.source", "pk": 4454, "fields": {"orig_filename": "Schiffel_Adalbert_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 123f.", "author": "", "orig_id": 1406362}}, {"model": "metainfo.source", "pk": 4455, "fields": {"orig_filename": "Schifferer_Josef_1906_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124", "author": "", "orig_id": 1406364}}, {"model": "metainfo.source", "pk": 4456, "fields": {"orig_filename": "Schiffer_Anton_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124", "author": "", "orig_id": 1406363}}, {"model": "metainfo.source", "pk": 4457, "fields": {"orig_filename": "Schiffmann_Jost-Joseph-Niklas_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124f.", "author": "", "orig_id": 1406365}}, {"model": "metainfo.source", "pk": 4458, "fields": {"orig_filename": "Schiffmann_Konrad_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 125f.", "author": "", "orig_id": 1406366}}, {"model": "metainfo.source", "pk": 4459, "fields": {"orig_filename": "Schiffner_Franz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 126", "author": "", "orig_id": 1406367}}, {"model": "metainfo.source", "pk": 4460, "fields": {"orig_filename": "Schiffner_Karl_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 126f.", "author": "", "orig_id": 1406368}}, {"model": "metainfo.source", "pk": 4461, "fields": {"orig_filename": "Schiffner_Ludwig_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 127", "author": "", "orig_id": 1406369}}, {"model": "metainfo.source", "pk": 4462, "fields": {"orig_filename": "Schiffner_Viktor-Ferdinand_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 127f.", "author": "", "orig_id": 1406370}}, {"model": "metainfo.source", "pk": 4463, "fields": {"orig_filename": "Schiff_Eduard-Liberius_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 121f.", "author": "", "orig_id": 1406359}}, {"model": "metainfo.source", "pk": 4464, "fields": {"orig_filename": "Schiff_Josef_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 122", "author": "", "orig_id": 1406360}}, {"model": "metainfo.source", "pk": 4465, "fields": {"orig_filename": "Schiff_Walter_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 122f.", "author": "", "orig_id": 1406361}}, {"model": "metainfo.source", "pk": 4466, "fields": {"orig_filename": "Schifkorn_Rudolf_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 128", "author": "", "orig_id": 1406371}}, {"model": "metainfo.source", "pk": 4467, "fields": {"orig_filename": "Schikaneder_Eleonore_1751_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129", "author": "", "orig_id": 1406373}}, {"model": "metainfo.source", "pk": 4468, "fields": {"orig_filename": "Schikaneder_Karl_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 130", "author": "", "orig_id": 1406375}}, {"model": "metainfo.source", "pk": 4469, "fields": {"orig_filename": "Schik_Ignaz_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129", "author": "", "orig_id": 1406372}}, {"model": "metainfo.source", "pk": 4470, "fields": {"orig_filename": "Schildbach_Johann-Gottlieb_1765_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 131", "author": "", "orig_id": 1406378}}, {"model": "metainfo.source", "pk": 4471, "fields": {"orig_filename": "Schilder_Paul-Ferdinand_1886_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 131f.", "author": "", "orig_id": 1406379}}, {"model": "metainfo.source", "pk": 4472, "fields": {"orig_filename": "Schildkraut_Rudolf_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 132f.", "author": "", "orig_id": 1406380}}, {"model": "metainfo.source", "pk": 4473, "fields": {"orig_filename": "Schild_Theodor-Franz_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 130f.", "author": "", "orig_id": 1406376}}, {"model": "metainfo.source", "pk": 4474, "fields": {"orig_filename": "Schili_Matthaeus-Christian_1762_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 133", "author": "", "orig_id": 1406381}}, {"model": "metainfo.source", "pk": 4475, "fields": {"orig_filename": "Schiller-Szinessy_Solomon-Marcus_1820_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136f.", "author": "", "orig_id": 1406390}}, {"model": "metainfo.source", "pk": 4476, "fields": {"orig_filename": "Schiller_Franz-Ferdinand_1773_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134", "author": "", "orig_id": 1406383}}, {"model": "metainfo.source", "pk": 4477, "fields": {"orig_filename": "Schiller_Friedrich_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134", "author": "", "orig_id": 1406384}}, {"model": "metainfo.source", "pk": 4478, "fields": {"orig_filename": "Schiller_Geza_1895_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134f.", "author": "", "orig_id": 1406385}}, {"model": "metainfo.source", "pk": 4479, "fields": {"orig_filename": "Schiller_Josef_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 135", "author": "", "orig_id": 1406386}}, {"model": "metainfo.source", "pk": 4480, "fields": {"orig_filename": "Schiller_Katharina_1829_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 135f.", "author": "", "orig_id": 1406387}}, {"model": "metainfo.source", "pk": 4481, "fields": {"orig_filename": "Schiller_Salomon_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136", "author": "", "orig_id": 1406388}}, {"model": "metainfo.source", "pk": 4482, "fields": {"orig_filename": "Schiller_Siegmund_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136", "author": "", "orig_id": 1406389}}, {"model": "metainfo.source", "pk": 4483, "fields": {"orig_filename": "Schilling-Henrichau_August_1815_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 137f.", "author": "", "orig_id": 1406392}}, {"model": "metainfo.source", "pk": 4484, "fields": {"orig_filename": "Schillinger_Franz_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 138", "author": "", "orig_id": 1406393}}, {"model": "metainfo.source", "pk": 4485, "fields": {"orig_filename": "Schilling_Julius_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 137", "author": "", "orig_id": 1406391}}, {"model": "metainfo.source", "pk": 4486, "fields": {"orig_filename": "Schill_Salamon_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 133f.", "author": "", "orig_id": 1406382}}, {"model": "metainfo.source", "pk": 4487, "fields": {"orig_filename": "Schimek_Otto_1925_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 138f.", "author": "", "orig_id": 1406394}}, {"model": "metainfo.source", "pk": 4488, "fields": {"orig_filename": "Schimkowitz_Herbert_1898_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140", "author": "", "orig_id": 1406396}}, {"model": "metainfo.source", "pk": 4489, "fields": {"orig_filename": "Schimkowitz_Othmar_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140", "author": "", "orig_id": 1406397}}, {"model": "metainfo.source", "pk": 4490, "fields": {"orig_filename": "Schimko_Friedrich-Daniel_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 139f.", "author": "", "orig_id": 1406395}}, {"model": "metainfo.source", "pk": 4491, "fields": {"orig_filename": "Schimmer_Gustav-Adolph_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140f.", "author": "", "orig_id": 1406398}}, {"model": "metainfo.source", "pk": 4492, "fields": {"orig_filename": "Schimmer_Karl-August_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 141f.", "author": "", "orig_id": 1406399}}, {"model": "metainfo.source", "pk": 4493, "fields": {"orig_filename": "Schimonsky-Schimony_Emanuel_1752_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142f.", "author": "", "orig_id": 1406402}}, {"model": "metainfo.source", "pk": 4494, "fields": {"orig_filename": "Schimon_Adolf_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142", "author": "", "orig_id": 1406400}}, {"model": "metainfo.source", "pk": 4495, "fields": {"orig_filename": "Schimon_Ferdinand_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142", "author": "", "orig_id": 1406401}}, {"model": "metainfo.source", "pk": 4496, "fields": {"orig_filename": "Schimser_Johann-Bapt_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 143", "author": "", "orig_id": 1406403}}, {"model": "metainfo.source", "pk": 4497, "fields": {"orig_filename": "Schindelar_Adalbert_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 143f.", "author": "", "orig_id": 1406236}}, {"model": "metainfo.source", "pk": 4498, "fields": {"orig_filename": "Schindelka_Hugo_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144", "author": "", "orig_id": 1406237}}, {"model": "metainfo.source", "pk": 4499, "fields": {"orig_filename": "Schindler-Schindelheim_Johann-Bapt_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 156f.", "author": "", "orig_id": 1406309}}, {"model": "metainfo.source", "pk": 4500, "fields": {"orig_filename": "Schindler_Albert_1805_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144", "author": "", "orig_id": 1406238}}, {"model": "metainfo.source", "pk": 4501, "fields": {"orig_filename": "Schindler_Alexander-Julius_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144ff.", "author": "", "orig_id": 1406239}}, {"model": "metainfo.source", "pk": 4502, "fields": {"orig_filename": "Schindler_Anna-Margaretha_1892_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 146", "author": "", "orig_id": 1406240}}, {"model": "metainfo.source", "pk": 4503, "fields": {"orig_filename": "Schindler_Anton-Felix_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 146f.", "author": "", "orig_id": 1406241}}, {"model": "metainfo.source", "pk": 4504, "fields": {"orig_filename": "Schindler_Carl_1821_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 147", "author": "", "orig_id": 1406242}}, {"model": "metainfo.source", "pk": 4505, "fields": {"orig_filename": "Schindler_Cosmus_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 147f.", "author": "", "orig_id": 1406243}}, {"model": "metainfo.source", "pk": 4506, "fields": {"orig_filename": "Schindler_Emanuel_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 148", "author": "", "orig_id": 1406244}}, {"model": "metainfo.source", "pk": 4507, "fields": {"orig_filename": "Schindler_Emil-Jakob_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 148f.", "author": "", "orig_id": 1406245}}, {"model": "metainfo.source", "pk": 4508, "fields": {"orig_filename": "Schindler_Franz-Friedrich_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 149f.", "author": "", "orig_id": 1406246}}, {"model": "metainfo.source", "pk": 4509, "fields": {"orig_filename": "Schindler_Franz-Martin_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 150", "author": "", "orig_id": 1406247}}, {"model": "metainfo.source", "pk": 4510, "fields": {"orig_filename": "Schindler_Fridolin_1788_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 150f.", "author": "", "orig_id": 1406248}}, {"model": "metainfo.source", "pk": 4511, "fields": {"orig_filename": "Schindler_Friedrich-Wilhelm_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 151f.", "author": "", "orig_id": 1406249}}, {"model": "metainfo.source", "pk": 4512, "fields": {"orig_filename": "Schindler_Johann-Josef_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 152f.", "author": "", "orig_id": 1406251}}, {"model": "metainfo.source", "pk": 4513, "fields": {"orig_filename": "Schindler_Johann_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 152", "author": "", "orig_id": 1406250}}, {"model": "metainfo.source", "pk": 4514, "fields": {"orig_filename": "Schindler_Josef_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153f.", "author": "", "orig_id": 1406253}}, {"model": "metainfo.source", "pk": 4515, "fields": {"orig_filename": "Schindler_Karl_1768_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154", "author": "", "orig_id": 1406254}}, {"model": "metainfo.source", "pk": 4516, "fields": {"orig_filename": "Schindler_Michael-Norbert_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154", "author": "", "orig_id": 1406255}}, {"model": "metainfo.source", "pk": 4517, "fields": {"orig_filename": "Schindler_Robert_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154f.", "author": "", "orig_id": 1406256}}, {"model": "metainfo.source", "pk": 4518, "fields": {"orig_filename": "Schindler_Rudolf_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 155", "author": "", "orig_id": 1406257}}, {"model": "metainfo.source", "pk": 4519, "fields": {"orig_filename": "Schedle_Franz-X_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 57f.", "author": "", "orig_id": 1406140}}, {"model": "metainfo.source", "pk": 4520, "fields": {"orig_filename": "Schedy_Sandor_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58", "author": "", "orig_id": 1406150}}, {"model": "metainfo.source", "pk": 4521, "fields": {"orig_filename": "Scheel_Florus_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58", "author": "", "orig_id": 1406151}}, {"model": "metainfo.source", "pk": 4522, "fields": {"orig_filename": "Scheff-Hohentraun_Julius_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58f.", "author": "", "orig_id": 1406152}}, {"model": "metainfo.source", "pk": 4523, "fields": {"orig_filename": "Scheffer-Leonhardshoff_Johann-Evangelist_1795_1822.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431977}}, {"model": "metainfo.source", "pk": 4524, "fields": {"orig_filename": "Scheiber_Samuel-Hugo_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406155}}, {"model": "metainfo.source", "pk": 4525, "fields": {"orig_filename": "Scheibe_Friedrich-Hermann_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 59", "author": "", "orig_id": 1406153}}, {"model": "metainfo.source", "pk": 4526, "fields": {"orig_filename": "Scheibe_Theodor_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 59f.", "author": "", "orig_id": 1406154}}, {"model": "metainfo.source", "pk": 4527, "fields": {"orig_filename": "Scheibl_Susanna_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406156}}, {"model": "metainfo.source", "pk": 4528, "fields": {"orig_filename": "Scheibner_Gebhard_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406157}}, {"model": "metainfo.source", "pk": 4529, "fields": {"orig_filename": "Scheicher_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 61", "author": "", "orig_id": 1406159}}, {"model": "metainfo.source", "pk": 4530, "fields": {"orig_filename": "Scheichl_Frantisek-Ladislav_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 61f.", "author": "", "orig_id": 1406160}}, {"model": "metainfo.source", "pk": 4531, "fields": {"orig_filename": "Scheichl_Franz_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 62", "author": "", "orig_id": 1406161}}, {"model": "metainfo.source", "pk": 4532, "fields": {"orig_filename": "Scheidela_Hinko_1874_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 63", "author": "", "orig_id": 1406163}}, {"model": "metainfo.source", "pk": 4533, "fields": {"orig_filename": "Scheidlein_Georg_1747_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 63f.", "author": "", "orig_id": 1406165}}, {"model": "metainfo.source", "pk": 4534, "fields": {"orig_filename": "Scheidtenberger_Karl_1827_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 64", "author": "", "orig_id": 1406166}}, {"model": "metainfo.source", "pk": 4535, "fields": {"orig_filename": "Scheid_Georg-Adam_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 62f.", "author": "", "orig_id": 1406162}}, {"model": "metainfo.source", "pk": 4536, "fields": {"orig_filename": "Scheiger_Josef_1801_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 64f.", "author": "", "orig_id": 1406167}}, {"model": "metainfo.source", "pk": 4537, "fields": {"orig_filename": "Scheimpflug_Karl_1856_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 65", "author": "", "orig_id": 1406169}}, {"model": "metainfo.source", "pk": 4538, "fields": {"orig_filename": "Scheimpflug_Theodor_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 65f.", "author": "", "orig_id": 1406170}}, {"model": "metainfo.source", "pk": 4539, "fields": {"orig_filename": "Scheindler_August_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 67", "author": "", "orig_id": 1406172}}, {"model": "metainfo.source", "pk": 4540, "fields": {"orig_filename": "Scheiner_Andreas-Gottlieb_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 67f.", "author": "", "orig_id": 1406173}}, {"model": "metainfo.source", "pk": 4541, "fields": {"orig_filename": "Scheiner_Josef_1798_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 68", "author": "", "orig_id": 1406174}}, {"model": "metainfo.source", "pk": 4542, "fields": {"orig_filename": "Scheiner_Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 68f.", "author": "", "orig_id": 1406175}}, {"model": "metainfo.source", "pk": 4543, "fields": {"orig_filename": "Scheinpflug_Karel_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 69f.", "author": "", "orig_id": 1406176}}, {"model": "metainfo.source", "pk": 4544, "fields": {"orig_filename": "Scheint_Daniel-Gottlieb_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70", "author": "", "orig_id": 1406177}}, {"model": "metainfo.source", "pk": 4545, "fields": {"orig_filename": "Schein_Abraham-Myron_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 66f.", "author": "", "orig_id": 1406171}}, {"model": "metainfo.source", "pk": 4546, "fields": {"orig_filename": "Schellander_Irene_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71", "author": "", "orig_id": 1406180}}, {"model": "metainfo.source", "pk": 4547, "fields": {"orig_filename": "Schellander_Josef_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71", "author": "", "orig_id": 1406181}}, {"model": "metainfo.source", "pk": 4548, "fields": {"orig_filename": "Schellein_Karl_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72", "author": "", "orig_id": 1406184}}, {"model": "metainfo.source", "pk": 4549, "fields": {"orig_filename": "Scheller_Arthur_1876_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72f.", "author": "", "orig_id": 1406185}}, {"model": "metainfo.source", "pk": 4550, "fields": {"orig_filename": "Schelle_Eduard_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71f.", "author": "", "orig_id": 1406182}}, {"model": "metainfo.source", "pk": 4551, "fields": {"orig_filename": "Schelle_Ludwig-Robert_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72", "author": "", "orig_id": 1406183}}, {"model": "metainfo.source", "pk": 4552, "fields": {"orig_filename": "Schell_Anton_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70", "author": "", "orig_id": 1406178}}, {"model": "metainfo.source", "pk": 4553, "fields": {"orig_filename": "Schels_Johann-Bapt_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 73f.", "author": "", "orig_id": 1406186}}, {"model": "metainfo.source", "pk": 4554, "fields": {"orig_filename": "Schelver_Hugo_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74", "author": "", "orig_id": 1406187}}, {"model": "metainfo.source", "pk": 4555, "fields": {"orig_filename": "Schembera_Viktor-Karl_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74f.", "author": "", "orig_id": 1406189}}, {"model": "metainfo.source", "pk": 4556, "fields": {"orig_filename": "Schember_Konrad_1811_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74", "author": "", "orig_id": 1406188}}, {"model": "metainfo.source", "pk": 4557, "fields": {"orig_filename": "Schembor_Friedrich_1898_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 75", "author": "", "orig_id": 1406190}}, {"model": "metainfo.source", "pk": 4558, "fields": {"orig_filename": "Schemerl-Leythenbach_Josef-Maria_1754_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 75f.", "author": "", "orig_id": 1406191}}, {"model": "metainfo.source", "pk": 4559, "fields": {"orig_filename": "Schemua_Blasius_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 76", "author": "", "orig_id": 1406192}}, {"model": "metainfo.source", "pk": 4560, "fields": {"orig_filename": "Schemua_Johann_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 76f.", "author": "", "orig_id": 1406193}}, {"model": "metainfo.source", "pk": 4561, "fields": {"orig_filename": "Schenacher_Johann-Georg_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77", "author": "", "orig_id": 1406194}}, {"model": "metainfo.source", "pk": 4562, "fields": {"orig_filename": "Schenek-Tasnad_Istvan_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77", "author": "", "orig_id": 1406195}}, {"model": "metainfo.source", "pk": 4563, "fields": {"orig_filename": "Schenkel_Theodor_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80", "author": "", "orig_id": 1406203}}, {"model": "metainfo.source", "pk": 4564, "fields": {"orig_filename": "Schenkenbach_Friedrich_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80", "author": "", "orig_id": 1406204}}, {"model": "metainfo.source", "pk": 4565, "fields": {"orig_filename": "Schenker_Gottfried_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80f.", "author": "", "orig_id": 1406205}}, {"model": "metainfo.source", "pk": 4566, "fields": {"orig_filename": "Schenker_Heinrich_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 81f.", "author": "", "orig_id": 1406206}}, {"model": "metainfo.source", "pk": 4567, "fields": {"orig_filename": "Schenker_Martin_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82", "author": "", "orig_id": 1406207}}, {"model": "metainfo.source", "pk": 4568, "fields": {"orig_filename": "Schenkl_Adolf_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82", "author": "", "orig_id": 1406208}}, {"model": "metainfo.source", "pk": 4569, "fields": {"orig_filename": "Schenkl_Heinrich_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82f.", "author": "", "orig_id": 1406209}}, {"model": "metainfo.source", "pk": 4570, "fields": {"orig_filename": "Schenkl_Karl_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 83f.", "author": "", "orig_id": 1406210}}, {"model": "metainfo.source", "pk": 4571, "fields": {"orig_filename": "Schenk_Alois-David_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77f.", "author": "", "orig_id": 1406196}}, {"model": "metainfo.source", "pk": 4572, "fields": {"orig_filename": "Schenk_Hugo_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281", "author": "", "orig_id": 2085225}}, {"model": "metainfo.source", "pk": 4573, "fields": {"orig_filename": "Schenk_Johann-Bapt_1753_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78", "author": "", "orig_id": 1406197}}, {"model": "metainfo.source", "pk": 4574, "fields": {"orig_filename": "Schenk_Johann_1829_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78", "author": "", "orig_id": 1406198}}, {"model": "metainfo.source", "pk": 4575, "fields": {"orig_filename": "Schenk_Josef-Eduard_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78f.", "author": "", "orig_id": 1406199}}, {"model": "metainfo.source", "pk": 4576, "fields": {"orig_filename": "Schenk_Josef-Wilhelm_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79", "author": "", "orig_id": 1406200}}, {"model": "metainfo.source", "pk": 4577, "fields": {"orig_filename": "Schenk_Martin_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79", "author": "", "orig_id": 1406201}}, {"model": "metainfo.source", "pk": 4578, "fields": {"orig_filename": "Schennich_Emil-Anton_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 84f.", "author": "", "orig_id": 1406211}}, {"model": "metainfo.source", "pk": 4579, "fields": {"orig_filename": "Schenzl_Guido_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 85", "author": "", "orig_id": 1406212}}, {"model": "metainfo.source", "pk": 4580, "fields": {"orig_filename": "Scherber_Gustav_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 85f.", "author": "", "orig_id": 1406213}}, {"model": "metainfo.source", "pk": 4581, "fields": {"orig_filename": "Scherer_Augustin_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86", "author": "", "orig_id": 1406214}}, {"model": "metainfo.source", "pk": 4582, "fields": {"orig_filename": "Scherer_Franz-Wolfram_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86", "author": "", "orig_id": 1406215}}, {"model": "metainfo.source", "pk": 4583, "fields": {"orig_filename": "Scherer_Johann-Baptist-Andreas_1755_1844.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2085743}}, {"model": "metainfo.source", "pk": 4584, "fields": {"orig_filename": "Scherer_Marie_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86f.", "author": "", "orig_id": 1406216}}, {"model": "metainfo.source", "pk": 4585, "fields": {"orig_filename": "Scherer_Martin_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87", "author": "", "orig_id": 1406217}}, {"model": "metainfo.source", "pk": 4586, "fields": {"orig_filename": "Scherer_Rosa_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87", "author": "", "orig_id": 1406218}}, {"model": "metainfo.source", "pk": 4587, "fields": {"orig_filename": "Scherer_Rudolf_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87f.", "author": "", "orig_id": 1406219}}, {"model": "metainfo.source", "pk": 4588, "fields": {"orig_filename": "Scherer_Sophie_1817_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 88", "author": "", "orig_id": 1406220}}, {"model": "metainfo.source", "pk": 4589, "fields": {"orig_filename": "Scherer_Wilhelm_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 88ff.", "author": "", "orig_id": 1406221}}, {"model": "metainfo.source", "pk": 4590, "fields": {"orig_filename": "Scherfel_Aurelius-Wilhelm_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 90", "author": "", "orig_id": 1406222}}, {"model": "metainfo.source", "pk": 4591, "fields": {"orig_filename": "Scherg_Georg-Alfred_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 90f.", "author": "", "orig_id": 1406223}}, {"model": "metainfo.source", "pk": 4592, "fields": {"orig_filename": "Scherndl_Balthasar_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91", "author": "", "orig_id": 1406224}}, {"model": "metainfo.source", "pk": 4593, "fields": {"orig_filename": "Scherpe_Johann_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91", "author": "", "orig_id": 1406225}}, {"model": "metainfo.source", "pk": 4594, "fields": {"orig_filename": "Scherzer_Franz-Jakob_1743_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91f.", "author": "", "orig_id": 1406226}}, {"model": "metainfo.source", "pk": 4595, "fields": {"orig_filename": "Scherzer_Ivan_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 92", "author": "", "orig_id": 1406227}}, {"model": "metainfo.source", "pk": 4596, "fields": {"orig_filename": "Scherzer_Johann-Georg_1776_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 92f.", "author": "", "orig_id": 1406228}}, {"model": "metainfo.source", "pk": 4597, "fields": {"orig_filename": "Scherzer_Karl_1821_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 93f.", "author": "", "orig_id": 1406229}}, {"model": "metainfo.source", "pk": 4598, "fields": {"orig_filename": "Schestag_August_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 94f.", "author": "", "orig_id": 1406230}}, {"model": "metainfo.source", "pk": 4599, "fields": {"orig_filename": "Schestag_Franz_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 95", "author": "", "orig_id": 1406231}}, {"model": "metainfo.source", "pk": 4600, "fields": {"orig_filename": "Scheth-Bohuslaw_Josef-Leopold_1764_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 95f.", "author": "", "orig_id": 1406232}}, {"model": "metainfo.source", "pk": 4601, "fields": {"orig_filename": "Scheuchenstuel_Karl_1792_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 98", "author": "", "orig_id": 1406045}}, {"model": "metainfo.source", "pk": 4602, "fields": {"orig_filename": "Scheuchenstuel_Viktor_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99", "author": "", "orig_id": 1406046}}, {"model": "metainfo.source", "pk": 4603, "fields": {"orig_filename": "Scheuer_Oskar-Franz_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99", "author": "", "orig_id": 1406047}}, {"model": "metainfo.source", "pk": 4604, "fields": {"orig_filename": "Scheuthauer_Gustav_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99f.", "author": "", "orig_id": 1406048}}, {"model": "metainfo.source", "pk": 4605, "fields": {"orig_filename": "Scheu_Andreas_1844_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 96", "author": "", "orig_id": 1406233}}, {"model": "metainfo.source", "pk": 4606, "fields": {"orig_filename": "Scheu_Gustav_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 96f.", "author": "", "orig_id": 1406234}}, {"model": "metainfo.source", "pk": 4607, "fields": {"orig_filename": "Scheu_Heinrich_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97", "author": "", "orig_id": 1406235}}, {"model": "metainfo.source", "pk": 4608, "fields": {"orig_filename": "Schey-Koromla_Friedrich_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 100f.", "author": "", "orig_id": 1406049}}, {"model": "metainfo.source", "pk": 4609, "fields": {"orig_filename": "Schey-Koromla_Josef_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 101", "author": "", "orig_id": 1406050}}, {"model": "metainfo.source", "pk": 4610, "fields": {"orig_filename": "Schey-Koromla_Philipp_1798_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 101f.", "author": "", "orig_id": 1406051}}, {"model": "metainfo.source", "pk": 4611, "fields": {"orig_filename": "Scheyerer_Franz_1762_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102", "author": "", "orig_id": 1406053}}, {"model": "metainfo.source", "pk": 4612, "fields": {"orig_filename": "Scheyer_Moriz_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102", "author": "", "orig_id": 1406052}}, {"model": "metainfo.source", "pk": 4613, "fields": {"orig_filename": "Scheyrer_Ludwig_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102f.", "author": "", "orig_id": 1406054}}, {"model": "metainfo.source", "pk": 4614, "fields": {"orig_filename": "Schgraffer_Jakob-Johann_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103", "author": "", "orig_id": 1406055}}, {"model": "metainfo.source", "pk": 4615, "fields": {"orig_filename": "Schiavi_Lorenzo_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103", "author": "", "orig_id": 1406056}}, {"model": "metainfo.source", "pk": 4616, "fields": {"orig_filename": "Schiavone_Natale_1777_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103f.", "author": "", "orig_id": 1406057}}, {"model": "metainfo.source", "pk": 4617, "fields": {"orig_filename": "Schiavoni_Felice_1803_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 104", "author": "", "orig_id": 1406058}}, {"model": "metainfo.source", "pk": 4618, "fields": {"orig_filename": "Schiavuzzi_Bernardo_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 104f.", "author": "", "orig_id": 1406059}}, {"model": "metainfo.source", "pk": 4619, "fields": {"orig_filename": "Scanagatta_Francesca_1781_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 12", "author": "", "orig_id": 1405999}}, {"model": "metainfo.source", "pk": 4620, "fields": {"orig_filename": "Scanzoni-Lichtenfels_Friedrich-Wilhelm_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 12f.", "author": "", "orig_id": 1406000}}, {"model": "metainfo.source", "pk": 4621, "fields": {"orig_filename": "Scaramella_Giuseppe_1761_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 13", "author": "", "orig_id": 1406001}}, {"model": "metainfo.source", "pk": 4622, "fields": {"orig_filename": "Scaria_Emil_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 13f.", "author": "", "orig_id": 1406002}}, {"model": "metainfo.source", "pk": 4623, "fields": {"orig_filename": "Scarpa_Antonio_1752_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 14", "author": "", "orig_id": 1405903}}, {"model": "metainfo.source", "pk": 4624, "fields": {"orig_filename": "Scarpa_Iginio_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 14f.", "author": "", "orig_id": 1405904}}, {"model": "metainfo.source", "pk": 4625, "fields": {"orig_filename": "Scek_Virgilij_1889_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15", "author": "", "orig_id": 1405905}}, {"model": "metainfo.source", "pk": 4626, "fields": {"orig_filename": "Schabl_Georg_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15", "author": "", "orig_id": 1405906}}, {"model": "metainfo.source", "pk": 4627, "fields": {"orig_filename": "Schabus_Jakob_1825_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15f.", "author": "", "orig_id": 1405907}}, {"model": "metainfo.source", "pk": 4628, "fields": {"orig_filename": "Schacherl_Gustav_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16", "author": "", "orig_id": 1405908}}, {"model": "metainfo.source", "pk": 4629, "fields": {"orig_filename": "Schacherl_Gustav_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16", "author": "", "orig_id": 1405909}}, {"model": "metainfo.source", "pk": 4630, "fields": {"orig_filename": "Schacherl_Michael_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16f.", "author": "", "orig_id": 1405911}}, {"model": "metainfo.source", "pk": 4631, "fields": {"orig_filename": "Schachinger_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 17", "author": "", "orig_id": 1405910}}, {"model": "metainfo.source", "pk": 4632, "fields": {"orig_filename": "Schachinger_Norbert_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 17", "author": "", "orig_id": 1405912}}, {"model": "metainfo.source", "pk": 4633, "fields": {"orig_filename": "Schachinger_Rudolf_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18", "author": "", "orig_id": 1405913}}, {"model": "metainfo.source", "pk": 4634, "fields": {"orig_filename": "Schachleiter_Alban_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18", "author": "", "orig_id": 1405914}}, {"model": "metainfo.source", "pk": 4635, "fields": {"orig_filename": "Schachner_Friedrich_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18f.", "author": "", "orig_id": 1405915}}, {"model": "metainfo.source", "pk": 4636, "fields": {"orig_filename": "Schachner_Josef-Rudolf_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 19", "author": "", "orig_id": 1405916}}, {"model": "metainfo.source", "pk": 4637, "fields": {"orig_filename": "Schack_Adolf-Wilhelm_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 19f.", "author": "", "orig_id": 1405917}}, {"model": "metainfo.source", "pk": 4638, "fields": {"orig_filename": "Schack_Benedikt-Emanuel_1758_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 20", "author": "", "orig_id": 1405918}}, {"model": "metainfo.source", "pk": 4639, "fields": {"orig_filename": "Schack_Friedrich-Otto_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405919}}, {"model": "metainfo.source", "pk": 4640, "fields": {"orig_filename": "Schadek_Moriz_1840_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405920}}, {"model": "metainfo.source", "pk": 4641, "fields": {"orig_filename": "Schaden_Karl_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405921}}, {"model": "metainfo.source", "pk": 4642, "fields": {"orig_filename": "Schader_Alois_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21f.", "author": "", "orig_id": 1405922}}, {"model": "metainfo.source", "pk": 4643, "fields": {"orig_filename": "Schadetzky_Karl_1792_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22", "author": "", "orig_id": 1405923}}, {"model": "metainfo.source", "pk": 4644, "fields": {"orig_filename": "Schaedler_Johann-Georg_1777_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22", "author": "", "orig_id": 1405924}}, {"model": "metainfo.source", "pk": 4645, "fields": {"orig_filename": "Schaefer_Anton_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22f.", "author": "", "orig_id": 1405925}}, {"model": "metainfo.source", "pk": 4646, "fields": {"orig_filename": "Schaefer_Hugo_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 23", "author": "", "orig_id": 1405926}}, {"model": "metainfo.source", "pk": 4647, "fields": {"orig_filename": "Schaeffer-Wienwald_August_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 24", "author": "", "orig_id": 1405928}}, {"model": "metainfo.source", "pk": 4648, "fields": {"orig_filename": "Schaeffer_Georg-Sylvester_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 23f.", "author": "", "orig_id": 1405927}}, {"model": "metainfo.source", "pk": 4649, "fields": {"orig_filename": "Schaeffler_Theodor-Heinrich-Otto_1838_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 25f.", "author": "", "orig_id": 1405930}}, {"model": "metainfo.source", "pk": 4650, "fields": {"orig_filename": "Schaeffle_Albert-Eberhard-Friedrich_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 24f.", "author": "", "orig_id": 1405929}}, {"model": "metainfo.source", "pk": 4651, "fields": {"orig_filename": "Schaelzky_Robert_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 26", "author": "", "orig_id": 1405931}}, {"model": "metainfo.source", "pk": 4652, "fields": {"orig_filename": "Schaffenrath_Alois_1794_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 26f.", "author": "", "orig_id": 1405932}}, {"model": "metainfo.source", "pk": 4653, "fields": {"orig_filename": "Schaffer_Alexander_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 27", "author": "", "orig_id": 1405933}}, {"model": "metainfo.source", "pk": 4654, "fields": {"orig_filename": "Schaffer_Josef_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 27f.", "author": "", "orig_id": 1405934}}, {"model": "metainfo.source", "pk": 4655, "fields": {"orig_filename": "Schaffer_Karoly_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28", "author": "", "orig_id": 1405935}}, {"model": "metainfo.source", "pk": 4656, "fields": {"orig_filename": "Schaffgotsch_Johann-Anton-Ernst_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28", "author": "", "orig_id": 1405936}}, {"model": "metainfo.source", "pk": 4657, "fields": {"orig_filename": "Schaffgotsch_Levin-Gotthard_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28f.", "author": "", "orig_id": 1405937}}, {"model": "metainfo.source", "pk": 4658, "fields": {"orig_filename": "Schaffgotsch_Mechthild-Maria-Vom-Armen-Kinde-Jesus_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 29", "author": "", "orig_id": 1405938}}, {"model": "metainfo.source", "pk": 4659, "fields": {"orig_filename": "Schaffner_Max_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 29", "author": "", "orig_id": 1405939}}, {"model": "metainfo.source", "pk": 4660, "fields": {"orig_filename": "Schafzahl_Franz-X_1767_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30", "author": "", "orig_id": 1405940}}, {"model": "metainfo.source", "pk": 4661, "fields": {"orig_filename": "Schager-Eckartsau_Albin_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30", "author": "", "orig_id": 1405941}}, {"model": "metainfo.source", "pk": 4662, "fields": {"orig_filename": "Schalit_Leon_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30f.", "author": "", "orig_id": 1405942}}, {"model": "metainfo.source", "pk": 4663, "fields": {"orig_filename": "Schalk_Franz_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 31f.", "author": "", "orig_id": 1405943}}, {"model": "metainfo.source", "pk": 4664, "fields": {"orig_filename": "Schalk_Josef_1857_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 32", "author": "", "orig_id": 1405944}}, {"model": "metainfo.source", "pk": 4665, "fields": {"orig_filename": "Schalk_Karl_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 32f.", "author": "", "orig_id": 1405945}}, {"model": "metainfo.source", "pk": 4666, "fields": {"orig_filename": "Schall-Falkenforst_Josef_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 33", "author": "", "orig_id": 1405946}}, {"model": "metainfo.source", "pk": 4667, "fields": {"orig_filename": "Schaller_Anton-Ferdinand_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 33f.", "author": "", "orig_id": 1405947}}, {"model": "metainfo.source", "pk": 4668, "fields": {"orig_filename": "Schaller_Georg_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34", "author": "", "orig_id": 1405948}}, {"model": "metainfo.source", "pk": 4669, "fields": {"orig_filename": "Schaller_Gustav_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34", "author": "", "orig_id": 1405949}}, {"model": "metainfo.source", "pk": 4670, "fields": {"orig_filename": "Schaller_Johann-Nep_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34f.", "author": "", "orig_id": 1405950}}, {"model": "metainfo.source", "pk": 4671, "fields": {"orig_filename": "Schaller_Ludwig_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35", "author": "", "orig_id": 1405951}}, {"model": "metainfo.source", "pk": 4672, "fields": {"orig_filename": "Schallgruber_Josef-Franz_1769_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35", "author": "", "orig_id": 1405952}}, {"model": "metainfo.source", "pk": 4673, "fields": {"orig_filename": "Schamann_Franz_1876_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35f.", "author": "", "orig_id": 1405953}}, {"model": "metainfo.source", "pk": 4674, "fields": {"orig_filename": "Schamberger_Frantisek-X_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36", "author": "", "orig_id": 1406092}}, {"model": "metainfo.source", "pk": 4675, "fields": {"orig_filename": "Schamberger_Julie_1846_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36", "author": "", "orig_id": 1406093}}, {"model": "metainfo.source", "pk": 4676, "fields": {"orig_filename": "Schamschula_Rudolf_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 37f.", "author": "", "orig_id": 1406096}}, {"model": "metainfo.source", "pk": 4677, "fields": {"orig_filename": "Schams_Franz-Josef_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36f.", "author": "", "orig_id": 1406094}}, {"model": "metainfo.source", "pk": 4678, "fields": {"orig_filename": "Schams_Franz-X_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 37", "author": "", "orig_id": 1406095}}, {"model": "metainfo.source", "pk": 4679, "fields": {"orig_filename": "Schanilec_Josef_1860_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 38", "author": "", "orig_id": 1406097}}, {"model": "metainfo.source", "pk": 4680, "fields": {"orig_filename": "Schantl_Josef-Hermann_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 38f.", "author": "", "orig_id": 1406098}}, {"model": "metainfo.source", "pk": 4681, "fields": {"orig_filename": "Schanzer_Rudolf_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39", "author": "", "orig_id": 1406099}}, {"model": "metainfo.source", "pk": 4682, "fields": {"orig_filename": "Schanzer_Stanislaus_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39", "author": "", "orig_id": 1406100}}, {"model": "metainfo.source", "pk": 4683, "fields": {"orig_filename": "Schapira_Chaim-Elazar_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39f.", "author": "", "orig_id": 1406101}}, {"model": "metainfo.source", "pk": 4684, "fields": {"orig_filename": "Schapira_Meir_1887_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40", "author": "", "orig_id": 1406102}}, {"model": "metainfo.source", "pk": 4685, "fields": {"orig_filename": "Schapira_Zevi-Hirsch_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40", "author": "", "orig_id": 1406104}}, {"model": "metainfo.source", "pk": 4686, "fields": {"orig_filename": "Scharff_Anton_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41f.", "author": "", "orig_id": 1406107}}, {"model": "metainfo.source", "pk": 4687, "fields": {"orig_filename": "Scharf_Alexander_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40f.", "author": "", "orig_id": 1406103}}, {"model": "metainfo.source", "pk": 4688, "fields": {"orig_filename": "Scharf_Jakub_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41", "author": "", "orig_id": 1406105}}, {"model": "metainfo.source", "pk": 4689, "fields": {"orig_filename": "Scharf_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41", "author": "", "orig_id": 1406106}}, {"model": "metainfo.source", "pk": 4690, "fields": {"orig_filename": "Schariczer-Reny_Georg_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 42", "author": "", "orig_id": 1406108}}, {"model": "metainfo.source", "pk": 4691, "fields": {"orig_filename": "Scharizer_Rudolf_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 42f.", "author": "", "orig_id": 1406109}}, {"model": "metainfo.source", "pk": 4692, "fields": {"orig_filename": "Scharschmid-Adlertreu_Franz_1800_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43", "author": "", "orig_id": 1406110}}, {"model": "metainfo.source", "pk": 4693, "fields": {"orig_filename": "Scharschmid-Adlertreu_Maximilian_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43", "author": "", "orig_id": 1406111}}, {"model": "metainfo.source", "pk": 4694, "fields": {"orig_filename": "Schartner_Gilbert_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43f.", "author": "", "orig_id": 1406112}}, {"model": "metainfo.source", "pk": 4695, "fields": {"orig_filename": "Schaschl_Johann_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44", "author": "", "orig_id": 1406113}}, {"model": "metainfo.source", "pk": 4696, "fields": {"orig_filename": "Schaser_Johann-Georg_1792_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44", "author": "", "orig_id": 1406114}}, {"model": "metainfo.source", "pk": 4697, "fields": {"orig_filename": "Schattenfroh_Arthur_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44f.", "author": "", "orig_id": 1406115}}, {"model": "metainfo.source", "pk": 4698, "fields": {"orig_filename": "Schatzmayr_Wilhelm_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 46", "author": "", "orig_id": 1406118}}, {"model": "metainfo.source", "pk": 4699, "fields": {"orig_filename": "Schatz_Adelgott_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 45", "author": "", "orig_id": 1406116}}, {"model": "metainfo.source", "pk": 4700, "fields": {"orig_filename": "Schatz_Josef_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 45f.", "author": "", "orig_id": 1406117}}, {"model": "metainfo.source", "pk": 4701, "fields": {"orig_filename": "Schaub_Franz_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 46f.", "author": "", "orig_id": 1406119}}, {"model": "metainfo.source", "pk": 4702, "fields": {"orig_filename": "Schauenstein_Adolf_1827_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 47", "author": "", "orig_id": 1406120}}, {"model": "metainfo.source", "pk": 4703, "fields": {"orig_filename": "Schauenstein_Anton_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 47", "author": "", "orig_id": 1406121}}, {"model": "metainfo.source", "pk": 4704, "fields": {"orig_filename": "Schauenstein_Walther_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48", "author": "", "orig_id": 1406122}}, {"model": "metainfo.source", "pk": 4705, "fields": {"orig_filename": "Schauer_Antonin_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48", "author": "", "orig_id": 1406123}}, {"model": "metainfo.source", "pk": 4706, "fields": {"orig_filename": "Schauer_Hubert-Gordon_1862_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48f.", "author": "", "orig_id": 1406124}}, {"model": "metainfo.source", "pk": 4707, "fields": {"orig_filename": "Schauer_Hugo_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 49", "author": "", "orig_id": 1406125}}, {"model": "metainfo.source", "pk": 4708, "fields": {"orig_filename": "Schauer_Johann_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 49f.", "author": "", "orig_id": 1406126}}, {"model": "metainfo.source", "pk": 4709, "fields": {"orig_filename": "Schaukal_Richard_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 50f.", "author": "", "orig_id": 1406127}}, {"model": "metainfo.source", "pk": 4710, "fields": {"orig_filename": "Schaumann-Fuerstenburg_Franz_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 51f.", "author": "", "orig_id": 1406128}}, {"model": "metainfo.source", "pk": 4711, "fields": {"orig_filename": "Schaumburg_Karl_1770_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 52", "author": "", "orig_id": 1406129}}, {"model": "metainfo.source", "pk": 4712, "fields": {"orig_filename": "Schaup_Wilhelm_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 52f.", "author": "", "orig_id": 1406130}}, {"model": "metainfo.source", "pk": 4713, "fields": {"orig_filename": "Schaurhofer_August_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 53", "author": "", "orig_id": 1406131}}, {"model": "metainfo.source", "pk": 4714, "fields": {"orig_filename": "Schauta_Friedrich_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 53f.", "author": "", "orig_id": 1406132}}, {"model": "metainfo.source", "pk": 4715, "fields": {"orig_filename": "Schawerda_Karl_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 54", "author": "", "orig_id": 1406133}}, {"model": "metainfo.source", "pk": 4716, "fields": {"orig_filename": "Schebek_Edmund_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 54f.", "author": "", "orig_id": 1406134}}, {"model": "metainfo.source", "pk": 4717, "fields": {"orig_filename": "Schebek_Gabriel_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 55", "author": "", "orig_id": 1406135}}, {"model": "metainfo.source", "pk": 4718, "fields": {"orig_filename": "Schebest_Agnese_1813_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 55f.", "author": "", "orig_id": 1406136}}, {"model": "metainfo.source", "pk": 4719, "fields": {"orig_filename": "Scheck_Ferdinand_1827_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 56", "author": "", "orig_id": 1406137}}, {"model": "metainfo.source", "pk": 4720, "fields": {"orig_filename": "Scheda_Josef_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 56f.", "author": "", "orig_id": 1406138}}, {"model": "metainfo.source", "pk": 4721, "fields": {"orig_filename": "Schedius_Lajos-Janos_1768_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 57", "author": "", "orig_id": 1406139}}, {"model": "metainfo.source", "pk": 4722, "fields": {"orig_filename": "Sandrinelli_Luigi_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413", "author": "", "orig_id": 1407974}}, {"model": "metainfo.source", "pk": 4723, "fields": {"orig_filename": "Sandri_Giulio_1789_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413", "author": "", "orig_id": 1407973}}, {"model": "metainfo.source", "pk": 4724, "fields": {"orig_filename": "Sandrock_Adele_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413f.", "author": "", "orig_id": 1407975}}, {"model": "metainfo.source", "pk": 4725, "fields": {"orig_filename": "Sanguszko_Eustachy-Stanislaw_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 414f.", "author": "", "orig_id": 1407976}}, {"model": "metainfo.source", "pk": 4726, "fields": {"orig_filename": "Sanguszko_Wladyslaw-Hieronim_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 415", "author": "", "orig_id": 1407977}}, {"model": "metainfo.source", "pk": 4727, "fields": {"orig_filename": "Santel_Aleksander_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 415f.", "author": "", "orig_id": 1407979}}, {"model": "metainfo.source", "pk": 4728, "fields": {"orig_filename": "Santel_Avgusta_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416", "author": "", "orig_id": 1407980}}, {"model": "metainfo.source", "pk": 4729, "fields": {"orig_filename": "Santel_Henrietta_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416", "author": "", "orig_id": 1407981}}, {"model": "metainfo.source", "pk": 4730, "fields": {"orig_filename": "Santifaller_Maria-Christina_1904_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422698}}, {"model": "metainfo.source", "pk": 4731, "fields": {"orig_filename": "Santini_Giovanni_1787_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 417", "author": "", "orig_id": 1407983}}, {"model": "metainfo.source", "pk": 4732, "fields": {"orig_filename": "Santi_Sebastiano_1789_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416f.", "author": "", "orig_id": 1407982}}, {"model": "metainfo.source", "pk": 4733, "fields": {"orig_filename": "Santner_Johann_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 417f.", "author": "", "orig_id": 1407984}}, {"model": "metainfo.source", "pk": 4734, "fields": {"orig_filename": "Santner_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 418", "author": "", "orig_id": 1407985}}, {"model": "metainfo.source", "pk": 4735, "fields": {"orig_filename": "Santoni_Giuseppe_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 418f.", "author": "", "orig_id": 1407986}}, {"model": "metainfo.source", "pk": 4736, "fields": {"orig_filename": "Sanzin_Rudolf_1874_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 419", "author": "", "orig_id": 1407987}}, {"model": "metainfo.source", "pk": 4737, "fields": {"orig_filename": "Saphir_Moritz-Gottlieb_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 419f.", "author": "", "orig_id": 1407988}}, {"model": "metainfo.source", "pk": 4738, "fields": {"orig_filename": "Sapieha_Adam-Stanislaw_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 420f.", "author": "", "orig_id": 1407989}}, {"model": "metainfo.source", "pk": 4739, "fields": {"orig_filename": "Sapieha_Leon_1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 421", "author": "", "orig_id": 1407991}}, {"model": "metainfo.source", "pk": 4740, "fields": {"orig_filename": "Sapieha_Wladyslaw-Leon_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 421f.", "author": "", "orig_id": 1407990}}, {"model": "metainfo.source", "pk": 4741, "fields": {"orig_filename": "Sapik_Vojtech_1888_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 422", "author": "", "orig_id": 1407992}}, {"model": "metainfo.source", "pk": 4742, "fields": {"orig_filename": "Saporiti_Teresa_1763_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 422f.", "author": "", "orig_id": 1407993}}, {"model": "metainfo.source", "pk": 4743, "fields": {"orig_filename": "Sarbu_Ion_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407994}}, {"model": "metainfo.source", "pk": 4744, "fields": {"orig_filename": "Sardagna-Meanberg-Hohenstein_Carlo-Emanuele_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407995}}, {"model": "metainfo.source", "pk": 4745, "fields": {"orig_filename": "Sardagna-Meanberg-Hohenstein_Josef_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407996}}, {"model": "metainfo.source", "pk": 4746, "fields": {"orig_filename": "Sare_Jozef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423f.", "author": "", "orig_id": 1407997}}, {"model": "metainfo.source", "pk": 4747, "fields": {"orig_filename": "Sarg_Johann-Heinrich-Karl_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 424", "author": "", "orig_id": 1407998}}, {"model": "metainfo.source", "pk": 4748, "fields": {"orig_filename": "Sarkotic-Lovcen_Stefan_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 424f.", "author": "", "orig_id": 1407999}}, {"model": "metainfo.source", "pk": 4749, "fields": {"orig_filename": "Sarna_Wladyslaw_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 425f.", "author": "", "orig_id": 1408000}}, {"model": "metainfo.source", "pk": 4750, "fields": {"orig_filename": "Sarnecki_Zygmunt_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426", "author": "", "orig_id": 1408001}}, {"model": "metainfo.source", "pk": 4751, "fields": {"orig_filename": "Sarnicki_Klemens_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426", "author": "", "orig_id": 1408002}}, {"model": "metainfo.source", "pk": 4752, "fields": {"orig_filename": "Sarnthein_Ludwig_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426f.", "author": "", "orig_id": 1408003}}, {"model": "metainfo.source", "pk": 4753, "fields": {"orig_filename": "Sarosi-Poka_Lajos_1816_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427", "author": "", "orig_id": 1408004}}, {"model": "metainfo.source", "pk": 4754, "fields": {"orig_filename": "Sartorelli_Giambattista_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427", "author": "", "orig_id": 1408005}}, {"model": "metainfo.source", "pk": 4755, "fields": {"orig_filename": "Sartori-Montecroce_Tullius_1862_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 428f.", "author": "", "orig_id": 1408007}}, {"model": "metainfo.source", "pk": 4756, "fields": {"orig_filename": "Sartorio_Giovanni-Guglielmo_1789_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429", "author": "", "orig_id": 1408008}}, {"model": "metainfo.source", "pk": 4757, "fields": {"orig_filename": "Sartori_Franz_1782_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427f.", "author": "", "orig_id": 1408006}}, {"model": "metainfo.source", "pk": 4758, "fields": {"orig_filename": "Sartory_Dominikus-A-Jesu-Maria_1809_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429", "author": "", "orig_id": 1408009}}, {"model": "metainfo.source", "pk": 4759, "fields": {"orig_filename": "Sartory_Johann_1759_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429f.", "author": "", "orig_id": 1408010}}, {"model": "metainfo.source", "pk": 4760, "fields": {"orig_filename": "Sartory_Josefa_1771_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 430f.", "author": "", "orig_id": 1408011}}, {"model": "metainfo.source", "pk": 4761, "fields": {"orig_filename": "Sarvary_Pal_1765_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431", "author": "", "orig_id": 1408012}}, {"model": "metainfo.source", "pk": 4762, "fields": {"orig_filename": "Saselj_Ivan-Feliks_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431", "author": "", "orig_id": 1408013}}, {"model": "metainfo.source", "pk": 4763, "fields": {"orig_filename": "Sasinek_Frantisek_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431f.", "author": "", "orig_id": 1408014}}, {"model": "metainfo.source", "pk": 4764, "fields": {"orig_filename": "Saska_Leo-Frantisek_1832_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 432", "author": "", "orig_id": 1408015}}, {"model": "metainfo.source", "pk": 4765, "fields": {"orig_filename": "Saskevyc_Markijan_1811_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 432f.", "author": "", "orig_id": 1408016}}, {"model": "metainfo.source", "pk": 4766, "fields": {"orig_filename": "Sasko_Martin_1807_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 433", "author": "", "orig_id": 1408018}}, {"model": "metainfo.source", "pk": 4767, "fields": {"orig_filename": "Sasku_Karoly_1806_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 433f.", "author": "", "orig_id": 1408017}}, {"model": "metainfo.source", "pk": 4768, "fields": {"orig_filename": "Sassmann_Hanns_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434", "author": "", "orig_id": 1408019}}, {"model": "metainfo.source", "pk": 4769, "fields": {"orig_filename": "Satke_Otto_1898_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434", "author": "", "orig_id": 1408020}}, {"model": "metainfo.source", "pk": 4770, "fields": {"orig_filename": "Satter_Gustav_1832_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434f.", "author": "", "orig_id": 1408021}}, {"model": "metainfo.source", "pk": 4771, "fields": {"orig_filename": "Sattler_Hubert_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 435", "author": "", "orig_id": 1408022}}, {"model": "metainfo.source", "pk": 4772, "fields": {"orig_filename": "Sattler_Johann-Michael_1786_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 435f.", "author": "", "orig_id": 1408023}}, {"model": "metainfo.source", "pk": 4773, "fields": {"orig_filename": "Sattler_Josef-Ignaz_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 436", "author": "", "orig_id": 1408024}}, {"model": "metainfo.source", "pk": 4774, "fields": {"orig_filename": "Sattner_Hugolin_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 436f.", "author": "", "orig_id": 1408025}}, {"model": "metainfo.source", "pk": 4775, "fields": {"orig_filename": "Saturnik_Theodor_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 437", "author": "", "orig_id": 1408026}}, {"model": "metainfo.source", "pk": 4776, "fields": {"orig_filename": "Saudek_Emil_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 437", "author": "", "orig_id": 1408027}}, {"model": "metainfo.source", "pk": 4777, "fields": {"orig_filename": "Saudek_Robert_1880_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 438", "author": "", "orig_id": 1408028}}, {"model": "metainfo.source", "pk": 4778, "fields": {"orig_filename": "Sauer-Aichried_Emil-Georg_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 442f.", "author": "", "orig_id": 1408037}}, {"model": "metainfo.source", "pk": 4779, "fields": {"orig_filename": "Sauer-Csaky-Nordendorf_Eugen_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 443", "author": "", "orig_id": 1408038}}, {"model": "metainfo.source", "pk": 4780, "fields": {"orig_filename": "Sauer_August_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 438f.", "author": "", "orig_id": 1408029}}, {"model": "metainfo.source", "pk": 4781, "fields": {"orig_filename": "Sauer_Edmund_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 439f.", "author": "", "orig_id": 1408030}}, {"model": "metainfo.source", "pk": 4782, "fields": {"orig_filename": "Sauer_Georg_1802_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440", "author": "", "orig_id": 1408031}}, {"model": "metainfo.source", "pk": 4783, "fields": {"orig_filename": "Sauer_Ignac_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440", "author": "", "orig_id": 1408032}}, {"model": "metainfo.source", "pk": 4784, "fields": {"orig_filename": "Sauer_Ignaz_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440f.", "author": "", "orig_id": 1408033}}, {"model": "metainfo.source", "pk": 4785, "fields": {"orig_filename": "Sauer_Julius_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 441", "author": "", "orig_id": 1408034}}, {"model": "metainfo.source", "pk": 4786, "fields": {"orig_filename": "Sauer_Karl_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 441f.", "author": "", "orig_id": 1408035}}, {"model": "metainfo.source", "pk": 4787, "fields": {"orig_filename": "Sauer_Wilhelm_1892_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 442", "author": "", "orig_id": 1408036}}, {"model": "metainfo.source", "pk": 4788, "fields": {"orig_filename": "Saulich_Angelo_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 444", "author": "", "orig_id": 1408040}}, {"model": "metainfo.source", "pk": 4789, "fields": {"orig_filename": "Saul_Friedrich-Karl-Theodor_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 443f.", "author": "", "orig_id": 1408039}}, {"model": "metainfo.source", "pk": 4790, "fields": {"orig_filename": "Saurau_Franz-Josef_1760_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 444f.", "author": "", "orig_id": 1408041}}, {"model": "metainfo.source", "pk": 4791, "fields": {"orig_filename": "Sauter_Andreas_1802_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 445", "author": "", "orig_id": 1408042}}, {"model": "metainfo.source", "pk": 4792, "fields": {"orig_filename": "Sauter_Benedikt_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 446", "author": "", "orig_id": 1408044}}, {"model": "metainfo.source", "pk": 4793, "fields": {"orig_filename": "Sauter_Ferdinand_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 446f.", "author": "", "orig_id": 1408045}}, {"model": "metainfo.source", "pk": 4794, "fields": {"orig_filename": "Savart_Louis_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447", "author": "", "orig_id": 1408047}}, {"model": "metainfo.source", "pk": 4795, "fields": {"orig_filename": "Savic_Gavro_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447f.", "author": "", "orig_id": 1408049}}, {"model": "metainfo.source", "pk": 4796, "fields": {"orig_filename": "Savic_Tonka_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 448", "author": "", "orig_id": 1408050}}, {"model": "metainfo.source", "pk": 4797, "fields": {"orig_filename": "Savic_Zarko_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 448", "author": "", "orig_id": 1408051}}, {"model": "metainfo.source", "pk": 4798, "fields": {"orig_filename": "Savinsek_Slavko_1897_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1", "author": "", "orig_id": 1405974}}, {"model": "metainfo.source", "pk": 4799, "fields": {"orig_filename": "Savio_Franz-Leopold_1801_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1", "author": "", "orig_id": 1405975}}, {"model": "metainfo.source", "pk": 4800, "fields": {"orig_filename": "Savits_Jocza_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1f.", "author": "", "orig_id": 1405976}}, {"model": "metainfo.source", "pk": 4801, "fields": {"orig_filename": "Sawczynski_Henryk_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 2", "author": "", "orig_id": 1405977}}, {"model": "metainfo.source", "pk": 4802, "fields": {"orig_filename": "Sawczynski_Zygmunt_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 2f.", "author": "", "orig_id": 1405978}}, {"model": "metainfo.source", "pk": 4803, "fields": {"orig_filename": "Sawicki-Stella_Jan_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 4", "author": "", "orig_id": 1405982}}, {"model": "metainfo.source", "pk": 4804, "fields": {"orig_filename": "Sawicki_Edward_1833_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3", "author": "", "orig_id": 1405979}}, {"model": "metainfo.source", "pk": 4805, "fields": {"orig_filename": "Sawicki_Karl-Nikolaus_1792_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3", "author": "", "orig_id": 1405980}}, {"model": "metainfo.source", "pk": 4806, "fields": {"orig_filename": "Sawicki_Ludomir_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3f.", "author": "", "orig_id": 1405981}}, {"model": "metainfo.source", "pk": 4807, "fields": {"orig_filename": "Sawiczewski_Florian_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 4f.", "author": "", "orig_id": 1405983}}, {"model": "metainfo.source", "pk": 4808, "fields": {"orig_filename": "Sawiczewski_Julian-Jozef_1795_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5", "author": "", "orig_id": 1405984}}, {"model": "metainfo.source", "pk": 4809, "fields": {"orig_filename": "Saxeneder_Josef_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 6f.", "author": "", "orig_id": 1405987}}, {"model": "metainfo.source", "pk": 4810, "fields": {"orig_filename": "Saxl_Friedrich_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7", "author": "", "orig_id": 1405988}}, {"model": "metainfo.source", "pk": 4811, "fields": {"orig_filename": "Saxl_Ignaz_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7", "author": "", "orig_id": 1405989}}, {"model": "metainfo.source", "pk": 4812, "fields": {"orig_filename": "Saxl_Maximilian_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7f.", "author": "", "orig_id": 1405990}}, {"model": "metainfo.source", "pk": 4813, "fields": {"orig_filename": "Saxl_Paul_1880_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 8", "author": "", "orig_id": 1405991}}, {"model": "metainfo.source", "pk": 4814, "fields": {"orig_filename": "Sax_Emanuel-Hans_1857_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5", "author": "", "orig_id": 1406984}}, {"model": "metainfo.source", "pk": 4815, "fields": {"orig_filename": "Sax_Emil_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5f.", "author": "", "orig_id": 1405985}}, {"model": "metainfo.source", "pk": 4816, "fields": {"orig_filename": "Sax_Josef_1761_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 6", "author": "", "orig_id": 1405986}}, {"model": "metainfo.source", "pk": 4817, "fields": {"orig_filename": "Sbiera_Ion-Gheorghe_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 8f.", "author": "", "orig_id": 1405992}}, {"model": "metainfo.source", "pk": 4818, "fields": {"orig_filename": "Sbiera_Radu_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9", "author": "", "orig_id": 1405993}}, {"model": "metainfo.source", "pk": 4819, "fields": {"orig_filename": "Sbrizaj_Ivan_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9", "author": "", "orig_id": 1405994}}, {"model": "metainfo.source", "pk": 4820, "fields": {"orig_filename": "Scala_Arthur_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9f.", "author": "", "orig_id": 1405995}}, {"model": "metainfo.source", "pk": 4821, "fields": {"orig_filename": "Scala_Ferdinand_1866_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 10", "author": "", "orig_id": 1405996}}, {"model": "metainfo.source", "pk": 4822, "fields": {"orig_filename": "Scala_Rudolf_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 10f.", "author": "", "orig_id": 1405997}}, {"model": "metainfo.source", "pk": 4823, "fields": {"orig_filename": "Scalvini_Giovita_1791_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 11f.", "author": "", "orig_id": 1405998}}, {"model": "metainfo.source", "pk": 4824, "fields": {"orig_filename": "Sachse-Rothenberg_Friedrich_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370", "author": "", "orig_id": 1407818}}, {"model": "metainfo.source", "pk": 4825, "fields": {"orig_filename": "Sachsel_Siegmund_1873_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370", "author": "", "orig_id": 1407819}}, {"model": "metainfo.source", "pk": 4826, "fields": {"orig_filename": "Sachsen-Coburg-Gotha_Ferdinand-August-Georg_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370f.", "author": "", "orig_id": 1407820}}, {"model": "metainfo.source", "pk": 4827, "fields": {"orig_filename": "Sachsen-Coburg-Gotha_Ferdinand-Philipp_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 371", "author": "", "orig_id": 1407822}}, {"model": "metainfo.source", "pk": 4828, "fields": {"orig_filename": "Sachs_Moriz_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369", "author": "", "orig_id": 1407815}}, {"model": "metainfo.source", "pk": 4829, "fields": {"orig_filename": "Sacken_Adolf_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 371f.", "author": "", "orig_id": 1407824}}, {"model": "metainfo.source", "pk": 4830, "fields": {"orig_filename": "Sacken_Eduard_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 372f.", "author": "", "orig_id": 1407730}}, {"model": "metainfo.source", "pk": 4831, "fields": {"orig_filename": "Sadger_Isidor_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373", "author": "", "orig_id": 1407731}}, {"model": "metainfo.source", "pk": 4832, "fields": {"orig_filename": "Sadil_Meinrad_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373", "author": "", "orig_id": 1407732}}, {"model": "metainfo.source", "pk": 4833, "fields": {"orig_filename": "Sadleder_Karl_1883_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373f.", "author": "", "orig_id": 1407733}}, {"model": "metainfo.source", "pk": 4834, "fields": {"orig_filename": "Sadler_Josef_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374", "author": "", "orig_id": 1407734}}, {"model": "metainfo.source", "pk": 4835, "fields": {"orig_filename": "Sadlowski_Wladyslaw_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374", "author": "", "orig_id": 1407736}}, {"model": "metainfo.source", "pk": 4836, "fields": {"orig_filename": "Sadowski_Jan-Nep_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374f.", "author": "", "orig_id": 1407737}}, {"model": "metainfo.source", "pk": 4837, "fields": {"orig_filename": "Safarik_Pavel-Josef_1795_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 375f.", "author": "", "orig_id": 1407738}}, {"model": "metainfo.source", "pk": 4838, "fields": {"orig_filename": "Safarik_Vojtech_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 376", "author": "", "orig_id": 1407739}}, {"model": "metainfo.source", "pk": 4839, "fields": {"orig_filename": "Saff_Vojtech-Eduard_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 376f.", "author": "", "orig_id": 1407740}}, {"model": "metainfo.source", "pk": 4840, "fields": {"orig_filename": "Safranek_Frantisek_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377", "author": "", "orig_id": 1407741}}, {"model": "metainfo.source", "pk": 4841, "fields": {"orig_filename": "Safranek_Jan_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377", "author": "", "orig_id": 1407742}}, {"model": "metainfo.source", "pk": 4842, "fields": {"orig_filename": "Sagredo_Agostino_1798_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377f.", "author": "", "orig_id": 1407743}}, {"model": "metainfo.source", "pk": 4843, "fields": {"orig_filename": "Saguna_Andreiu_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 378", "author": "", "orig_id": 1407745}}, {"model": "metainfo.source", "pk": 4844, "fields": {"orig_filename": "Sahla_Richard_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379", "author": "", "orig_id": 1407746}}, {"model": "metainfo.source", "pk": 4845, "fields": {"orig_filename": "Sahulka_Johann_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379", "author": "", "orig_id": 1407747}}, {"model": "metainfo.source", "pk": 4846, "fields": {"orig_filename": "Sailer_Franz_1792_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379f.", "author": "", "orig_id": 1407748}}, {"model": "metainfo.source", "pk": 4847, "fields": {"orig_filename": "Sailer_Josef_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380", "author": "", "orig_id": 1407750}}, {"model": "metainfo.source", "pk": 4848, "fields": {"orig_filename": "Sailer_Leopold_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380", "author": "", "orig_id": 1407751}}, {"model": "metainfo.source", "pk": 4849, "fields": {"orig_filename": "Saint-Julien-Wallsee_Klemens_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407753}}, {"model": "metainfo.source", "pk": 4850, "fields": {"orig_filename": "Sain_Isidoro_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380f.", "author": "", "orig_id": 1407752}}, {"model": "metainfo.source", "pk": 4851, "fields": {"orig_filename": "Sajevic_Aleksandar_1843_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407754}}, {"model": "metainfo.source", "pk": 4852, "fields": {"orig_filename": "Sajevic_Ivana_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407755}}, {"model": "metainfo.source", "pk": 4853, "fields": {"orig_filename": "Sakser_Frank_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381f.", "author": "", "orig_id": 1407756}}, {"model": "metainfo.source", "pk": 4854, "fields": {"orig_filename": "Salaba_August_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382", "author": "", "orig_id": 1407757}}, {"model": "metainfo.source", "pk": 4855, "fields": {"orig_filename": "Salaba_Josef_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382", "author": "", "orig_id": 1407758}}, {"model": "metainfo.source", "pk": 4856, "fields": {"orig_filename": "Salamon_Ferenc_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382f.", "author": "", "orig_id": 1407759}}, {"model": "metainfo.source", "pk": 4857, "fields": {"orig_filename": "Salamon_Jozsef_1790_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 383", "author": "", "orig_id": 1407760}}, {"model": "metainfo.source", "pk": 4858, "fields": {"orig_filename": "Salata_Francesco_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 383f.", "author": "", "orig_id": 1407761}}, {"model": "metainfo.source", "pk": 4859, "fields": {"orig_filename": "Salcher_Josef_1861_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 384", "author": "", "orig_id": 1407763}}, {"model": "metainfo.source", "pk": 4860, "fields": {"orig_filename": "Salcher_Mathias_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 384", "author": "", "orig_id": 1407764}}, {"model": "metainfo.source", "pk": 4861, "fields": {"orig_filename": "Salcher_Robert_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385", "author": "", "orig_id": 1407765}}, {"model": "metainfo.source", "pk": 4862, "fields": {"orig_filename": "Salcher_Rudolf_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385", "author": "", "orig_id": 1407766}}, {"model": "metainfo.source", "pk": 4863, "fields": {"orig_filename": "Salda_Frantisek-X_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385f.", "author": "", "orig_id": 1407767}}, {"model": "metainfo.source", "pk": 4864, "fields": {"orig_filename": "Salghetti-Drioli_Franjo_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 386", "author": "", "orig_id": 1407768}}, {"model": "metainfo.source", "pk": 4865, "fields": {"orig_filename": "Salgo_Jakab_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 386f.", "author": "", "orig_id": 1407769}}, {"model": "metainfo.source", "pk": 4866, "fields": {"orig_filename": "Salieri_Antonio_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 387", "author": "", "orig_id": 1407770}}, {"model": "metainfo.source", "pk": 4867, "fields": {"orig_filename": "Salis-Samaden_Karl_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 387f.", "author": "", "orig_id": 1407771}}, {"model": "metainfo.source", "pk": 4868, "fields": {"orig_filename": "Salis-Seewis_Johann-Ulrich_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 388", "author": "", "orig_id": 1407772}}, {"model": "metainfo.source", "pk": 4869, "fields": {"orig_filename": "Salis-Soglio_Daniel_1826_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 388f.", "author": "", "orig_id": 1407773}}, {"model": "metainfo.source", "pk": 4870, "fields": {"orig_filename": "Salkind_Alexander_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389", "author": "", "orig_id": 1407774}}, {"model": "metainfo.source", "pk": 4871, "fields": {"orig_filename": "Sallinger_Richard_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389", "author": "", "orig_id": 1407775}}, {"model": "metainfo.source", "pk": 4872, "fields": {"orig_filename": "Sallmayer_Hermann-Karl_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389f.", "author": "", "orig_id": 1407776}}, {"model": "metainfo.source", "pk": 4873, "fields": {"orig_filename": "Salm-Reifferscheidt_Franz-X_1749_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 390f.", "author": "", "orig_id": 1407919}}, {"model": "metainfo.source", "pk": 4874, "fields": {"orig_filename": "Salm-Reifferscheidt_Hugo-Franz_1776_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 391", "author": "", "orig_id": 1407920}}, {"model": "metainfo.source", "pk": 4875, "fields": {"orig_filename": "Salm-Reifferscheidt_Hugo-Karl-Eduard_1803_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 391f.", "author": "", "orig_id": 1407921}}, {"model": "metainfo.source", "pk": 4876, "fields": {"orig_filename": "Salmen_Franz-Josef_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392", "author": "", "orig_id": 1407922}}, {"model": "metainfo.source", "pk": 4877, "fields": {"orig_filename": "Salmini_Vittorio_1832_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392", "author": "", "orig_id": 1407923}}, {"model": "metainfo.source", "pk": 4878, "fields": {"orig_filename": "Salomon-Friedberg_Emanuel_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 393", "author": "", "orig_id": 1407925}}, {"model": "metainfo.source", "pk": 4879, "fields": {"orig_filename": "Salomoni_Filippo_1801_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 393f.", "author": "", "orig_id": 1407926}}, {"model": "metainfo.source", "pk": 4880, "fields": {"orig_filename": "Salomon_Johann-Michael_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392f.", "author": "", "orig_id": 1407924}}, {"model": "metainfo.source", "pk": 4881, "fields": {"orig_filename": "Saloni_Aleksander_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394", "author": "", "orig_id": 1407927}}, {"model": "metainfo.source", "pk": 4882, "fields": {"orig_filename": "Saloun_Ladislav-Jan_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394", "author": "", "orig_id": 1407928}}, {"model": "metainfo.source", "pk": 4883, "fields": {"orig_filename": "Salten_Felix_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394f.", "author": "", "orig_id": 1407929}}, {"model": "metainfo.source", "pk": 4884, "fields": {"orig_filename": "Salus_Hugo_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 395f.", "author": "", "orig_id": 1407930}}, {"model": "metainfo.source", "pk": 4885, "fields": {"orig_filename": "Salvadori_Giovanni-Batt_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 396f.", "author": "", "orig_id": 1407932}}, {"model": "metainfo.source", "pk": 4886, "fields": {"orig_filename": "Salva_Karol_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 396", "author": "", "orig_id": 1407931}}, {"model": "metainfo.source", "pk": 4887, "fields": {"orig_filename": "Salviati_Antonio_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 398", "author": "", "orig_id": 1407935}}, {"model": "metainfo.source", "pk": 4888, "fields": {"orig_filename": "Salvi_Luigi-Matteo_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 397f.", "author": "", "orig_id": 1407934}}, {"model": "metainfo.source", "pk": 4889, "fields": {"orig_filename": "Salvotti-Eichenkraft-Bindeburg_Anton_1789_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 398f.", "author": "", "orig_id": 1407936}}, {"model": "metainfo.source", "pk": 4890, "fields": {"orig_filename": "Salzbacher_Josef_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 399", "author": "", "orig_id": 1407937}}, {"model": "metainfo.source", "pk": 4891, "fields": {"orig_filename": "Salzer_Anselm_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 399f.", "author": "", "orig_id": 1407938}}, {"model": "metainfo.source", "pk": 4892, "fields": {"orig_filename": "Salzer_Franz_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400", "author": "", "orig_id": 1407939}}, {"model": "metainfo.source", "pk": 4893, "fields": {"orig_filename": "Salzer_Friedrich-Franz_1827_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400", "author": "", "orig_id": 1407940}}, {"model": "metainfo.source", "pk": 4894, "fields": {"orig_filename": "Salzer_Johann_1840_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400f.", "author": "", "orig_id": 1407941}}, {"model": "metainfo.source", "pk": 4895, "fields": {"orig_filename": "Salzer_Josef_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 401", "author": "", "orig_id": 1407942}}, {"model": "metainfo.source", "pk": 4896, "fields": {"orig_filename": "Salzer_Matthaeus-Kaspar_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 401f.", "author": "", "orig_id": 1407943}}, {"model": "metainfo.source", "pk": 4897, "fields": {"orig_filename": "Salzer_Robert-Karl_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402", "author": "", "orig_id": 1407944}}, {"model": "metainfo.source", "pk": 4898, "fields": {"orig_filename": "Salzgeber_Peter_1789_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402", "author": "", "orig_id": 1407945}}, {"model": "metainfo.source", "pk": 4899, "fields": {"orig_filename": "Salzmann_Johann_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402f.", "author": "", "orig_id": 1407946}}, {"model": "metainfo.source", "pk": 4900, "fields": {"orig_filename": "Salzmann_Josef_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403", "author": "", "orig_id": 1407947}}, {"model": "metainfo.source", "pk": 4901, "fields": {"orig_filename": "Salzmann_Karl-Aubert_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403", "author": "", "orig_id": 1407948}}, {"model": "metainfo.source", "pk": 4902, "fields": {"orig_filename": "Salzmann_Karl-Gottfried_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403f.", "author": "", "orig_id": 1407949}}, {"model": "metainfo.source", "pk": 4903, "fields": {"orig_filename": "Samalik_Josef_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404f.", "author": "", "orig_id": 1407953}}, {"model": "metainfo.source", "pk": 4904, "fields": {"orig_filename": "Samal_Jan_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404", "author": "", "orig_id": 1407951}}, {"model": "metainfo.source", "pk": 4905, "fields": {"orig_filename": "Samal_Premysl_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404", "author": "", "orig_id": 1407952}}, {"model": "metainfo.source", "pk": 4906, "fields": {"orig_filename": "Samanek_Vaclav_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407954}}, {"model": "metainfo.source", "pk": 4907, "fields": {"orig_filename": "Samanek_Vinzenz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407955}}, {"model": "metainfo.source", "pk": 4908, "fields": {"orig_filename": "Samarjay_Karl_1821_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407956}}, {"model": "metainfo.source", "pk": 4909, "fields": {"orig_filename": "Samassa_Albert_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405f.", "author": "", "orig_id": 1407957}}, {"model": "metainfo.source", "pk": 4910, "fields": {"orig_filename": "Samassa_Anton_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 406", "author": "", "orig_id": 1407958}}, {"model": "metainfo.source", "pk": 4911, "fields": {"orig_filename": "Samassa_Jozsef_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 406f.", "author": "", "orig_id": 1407959}}, {"model": "metainfo.source", "pk": 4912, "fields": {"orig_filename": "Samassa_Max_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 407", "author": "", "orig_id": 1407960}}, {"model": "metainfo.source", "pk": 4913, "fields": {"orig_filename": "Samassa_Paul_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 407f.", "author": "", "orig_id": 1407961}}, {"model": "metainfo.source", "pk": 4914, "fields": {"orig_filename": "Samec_Janko_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408", "author": "", "orig_id": 1407962}}, {"model": "metainfo.source", "pk": 4915, "fields": {"orig_filename": "Samek_Frantisek_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408", "author": "", "orig_id": 1407963}}, {"model": "metainfo.source", "pk": 4916, "fields": {"orig_filename": "Samelson_Szymon_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408f.", "author": "", "orig_id": 1407964}}, {"model": "metainfo.source", "pk": 4917, "fields": {"orig_filename": "Sames_Josef_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 409", "author": "", "orig_id": 1409581}}, {"model": "metainfo.source", "pk": 4918, "fields": {"orig_filename": "Samhaber_Edward_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 409f.", "author": "", "orig_id": 1407965}}, {"model": "metainfo.source", "pk": 4919, "fields": {"orig_filename": "Sammern-Frankenegg_Ferdinand_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 410", "author": "", "orig_id": 1407966}}, {"model": "metainfo.source", "pk": 4920, "fields": {"orig_filename": "Samolewicz_Zygmunt_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 410f.", "author": "", "orig_id": 1407967}}, {"model": "metainfo.source", "pk": 4921, "fields": {"orig_filename": "Sanda_Frantisek_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411", "author": "", "orig_id": 1407968}}, {"model": "metainfo.source", "pk": 4922, "fields": {"orig_filename": "Sander_Fritz_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411", "author": "", "orig_id": 1407969}}, {"model": "metainfo.source", "pk": 4923, "fields": {"orig_filename": "Sander_Hermann_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411f.", "author": "", "orig_id": 1407970}}, {"model": "metainfo.source", "pk": 4924, "fields": {"orig_filename": "Sandner_Anton_1906_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 412", "author": "", "orig_id": 1407971}}, {"model": "metainfo.source", "pk": 4925, "fields": {"orig_filename": "Sandor-Szlavnicza_Moric_1805_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 412f.", "author": "", "orig_id": 1407972}}, {"model": "metainfo.source", "pk": 4926, "fields": {"orig_filename": "Rumpler_Edmund_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325f.", "author": "", "orig_id": 1407830}}, {"model": "metainfo.source", "pk": 4927, "fields": {"orig_filename": "Rumpler_Franz_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 326f.", "author": "", "orig_id": 1407831}}, {"model": "metainfo.source", "pk": 4928, "fields": {"orig_filename": "Rumy_Karl-Georg_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327f.", "author": "", "orig_id": 1407833}}, {"model": "metainfo.source", "pk": 4929, "fields": {"orig_filename": "Rungaldier_Ignaz_1799_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328", "author": "", "orig_id": 1407834}}, {"model": "metainfo.source", "pk": 4930, "fields": {"orig_filename": "Runk_Franz-Ferdinand_1764_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328", "author": "", "orig_id": 1407835}}, {"model": "metainfo.source", "pk": 4931, "fields": {"orig_filename": "Rupertsberger_Matthias_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328f.", "author": "", "orig_id": 1407836}}, {"model": "metainfo.source", "pk": 4932, "fields": {"orig_filename": "Rupnik_Carlo-Vigilio_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329", "author": "", "orig_id": 1407837}}, {"model": "metainfo.source", "pk": 4933, "fields": {"orig_filename": "Rupp-Nyilhegy_Jakab_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329f.", "author": "", "orig_id": 1407839}}, {"model": "metainfo.source", "pk": 4934, "fields": {"orig_filename": "Ruppeldt_Milos_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330", "author": "", "orig_id": 1407840}}, {"model": "metainfo.source", "pk": 4935, "fields": {"orig_filename": "Ruppert_Karl_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330", "author": "", "orig_id": 1407841}}, {"model": "metainfo.source", "pk": 4936, "fields": {"orig_filename": "Rupprecht_Johann-Bapt_1776_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330f.", "author": "", "orig_id": 1407842}}, {"model": "metainfo.source", "pk": 4937, "fields": {"orig_filename": "Rupp_Mathilde_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329", "author": "", "orig_id": 1407838}}, {"model": "metainfo.source", "pk": 4938, "fields": {"orig_filename": "Rusca_Marco_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331", "author": "", "orig_id": 1407844}}, {"model": "metainfo.source", "pk": 4939, "fields": {"orig_filename": "Ruschka_Franz_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331f.", "author": "", "orig_id": 1407845}}, {"model": "metainfo.source", "pk": 4940, "fields": {"orig_filename": "Rusjan_Edvard_1886_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 332", "author": "", "orig_id": 1407846}}, {"model": "metainfo.source", "pk": 4941, "fields": {"orig_filename": "Russegger_Josef_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 334f.", "author": "", "orig_id": 1407851}}, {"model": "metainfo.source", "pk": 4942, "fields": {"orig_filename": "Russ_Karl_1779_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 332f.", "author": "", "orig_id": 1407847}}, {"model": "metainfo.source", "pk": 4943, "fields": {"orig_filename": "Russ_Leander_1809_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 333", "author": "", "orig_id": 1407848}}, {"model": "metainfo.source", "pk": 4944, "fields": {"orig_filename": "Russ_Robert_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 333f.", "author": "", "orig_id": 1407849}}, {"model": "metainfo.source", "pk": 4945, "fields": {"orig_filename": "Russ_Viktor-Wilhelm_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 334", "author": "", "orig_id": 1407850}}, {"model": "metainfo.source", "pk": 4946, "fields": {"orig_filename": "Ruston_Joseph-John-I_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 336", "author": "", "orig_id": 1407854}}, {"model": "metainfo.source", "pk": 4947, "fields": {"orig_filename": "Rust_Johann-Heinrich_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 335f.", "author": "", "orig_id": 1407853}}, {"model": "metainfo.source", "pk": 4948, "fields": {"orig_filename": "Rust_Johann-Nep_1775_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 335", "author": "", "orig_id": 1407852}}, {"model": "metainfo.source", "pk": 4949, "fields": {"orig_filename": "Ruszkowska_Helena_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 336f.", "author": "", "orig_id": 1407855}}, {"model": "metainfo.source", "pk": 4950, "fields": {"orig_filename": "Rus_Joze_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331", "author": "", "orig_id": 1407843}}, {"model": "metainfo.source", "pk": 4951, "fields": {"orig_filename": "Rutar_Simon_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337", "author": "", "orig_id": 1407856}}, {"model": "metainfo.source", "pk": 4952, "fields": {"orig_filename": "Rutha_Heinrich_1897_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337", "author": "", "orig_id": 1407857}}, {"model": "metainfo.source", "pk": 4953, "fields": {"orig_filename": "Ruthner_Anton_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337f.", "author": "", "orig_id": 1407858}}, {"model": "metainfo.source", "pk": 4954, "fields": {"orig_filename": "Rutkowski_Maksymilian_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 338", "author": "", "orig_id": 1407859}}, {"model": "metainfo.source", "pk": 4955, "fields": {"orig_filename": "Rutowski_Tadeusz_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 338f.", "author": "", "orig_id": 1407860}}, {"model": "metainfo.source", "pk": 4956, "fields": {"orig_filename": "Rutra_Arthur-Ernst_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 339", "author": "", "orig_id": 1407861}}, {"model": "metainfo.source", "pk": 4957, "fields": {"orig_filename": "Ruttenstein_Konstanze_1835_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 339f.", "author": "", "orig_id": 1407862}}, {"model": "metainfo.source", "pk": 4958, "fields": {"orig_filename": "Ruttenstock_Jakob_1776_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 340", "author": "", "orig_id": 1407863}}, {"model": "metainfo.source", "pk": 4959, "fields": {"orig_filename": "Ruttin_Erich_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 340f.", "author": "", "orig_id": 1407864}}, {"model": "metainfo.source", "pk": 4960, "fields": {"orig_filename": "Rutzky-Brennau_Andreas_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341", "author": "", "orig_id": 1407866}}, {"model": "metainfo.source", "pk": 4961, "fields": {"orig_filename": "Rutz_Benno_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341", "author": "", "orig_id": 1407865}}, {"model": "metainfo.source", "pk": 4962, "fields": {"orig_filename": "Ruvarac_Dimitrije_1842_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341f.", "author": "", "orig_id": 1407867}}, {"model": "metainfo.source", "pk": 4963, "fields": {"orig_filename": "Ruvarac_Ilarion_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342", "author": "", "orig_id": 1407868}}, {"model": "metainfo.source", "pk": 4964, "fields": {"orig_filename": "Ruzicka-Strozzi_Marija_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 345", "author": "", "orig_id": 1407712}}, {"model": "metainfo.source", "pk": 4965, "fields": {"orig_filename": "Ruzicka_Alois_1849_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342", "author": "", "orig_id": 1407869}}, {"model": "metainfo.source", "pk": 4966, "fields": {"orig_filename": "Ruzicka_Apollo_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342f.", "author": "", "orig_id": 1407870}}, {"model": "metainfo.source", "pk": 4967, "fields": {"orig_filename": "Ruzicka_Jan_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407871}}, {"model": "metainfo.source", "pk": 4968, "fields": {"orig_filename": "Ruzicka_Josef_1808_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407872}}, {"model": "metainfo.source", "pk": 4969, "fields": {"orig_filename": "Ruzicka_Leon_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407708}}, {"model": "metainfo.source", "pk": 4970, "fields": {"orig_filename": "Ruzicka_Pavel-Miroslav_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343f.", "author": "", "orig_id": 1407709}}, {"model": "metainfo.source", "pk": 4971, "fields": {"orig_filename": "Ruzicka_Vladislav_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 344", "author": "", "orig_id": 1407710}}, {"model": "metainfo.source", "pk": 4972, "fields": {"orig_filename": "Ruzicka_Wenzel_1757_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 344f.", "author": "", "orig_id": 1407711}}, {"model": "metainfo.source", "pk": 4973, "fields": {"orig_filename": "Ruziewicz_Stanislaw_1889_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 345", "author": "", "orig_id": 1407713}}, {"model": "metainfo.source", "pk": 4974, "fields": {"orig_filename": "Ruzitska_Gyoergy_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346", "author": "", "orig_id": 1407714}}, {"model": "metainfo.source", "pk": 4975, "fields": {"orig_filename": "Rybak_Otakar_1886_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347", "author": "", "orig_id": 1407718}}, {"model": "metainfo.source", "pk": 4976, "fields": {"orig_filename": "Rybarski_Roman_1887_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348", "author": "", "orig_id": 1407720}}, {"model": "metainfo.source", "pk": 4977, "fields": {"orig_filename": "Rybar_Otokar_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347f.", "author": "", "orig_id": 1407719}}, {"model": "metainfo.source", "pk": 4978, "fields": {"orig_filename": "Ryba_Jakub-Jan_1765_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346", "author": "", "orig_id": 1407715}}, {"model": "metainfo.source", "pk": 4979, "fields": {"orig_filename": "Ryba_Josef-Jakub_1795_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346f.", "author": "", "orig_id": 1407716}}, {"model": "metainfo.source", "pk": 4980, "fields": {"orig_filename": "Ryba_Vilem_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347", "author": "", "orig_id": 1407717}}, {"model": "metainfo.source", "pk": 4981, "fields": {"orig_filename": "Rybczynski_Mieczyslaw_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348", "author": "", "orig_id": 1407721}}, {"model": "metainfo.source", "pk": 4982, "fields": {"orig_filename": "Rybicka_Antonin-Frantisek_1812_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348f.", "author": "", "orig_id": 1407722}}, {"model": "metainfo.source", "pk": 4983, "fields": {"orig_filename": "Rychnovsky_Ernst_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 349", "author": "", "orig_id": 1407723}}, {"model": "metainfo.source", "pk": 4984, "fields": {"orig_filename": "Rychter_Jozef_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350", "author": "", "orig_id": 1407724}}, {"model": "metainfo.source", "pk": 4985, "fields": {"orig_filename": "Rychtrmoc_Robert_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350", "author": "", "orig_id": 1407725}}, {"model": "metainfo.source", "pk": 4986, "fields": {"orig_filename": "Rydel_Lucjan-Antoni_1870_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 351", "author": "", "orig_id": 1407727}}, {"model": "metainfo.source", "pk": 4987, "fields": {"orig_filename": "Rydel_Lucjan_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350f.", "author": "", "orig_id": 1407726}}, {"model": "metainfo.source", "pk": 4988, "fields": {"orig_filename": "Rydygier_Ludwik_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 351f.", "author": "", "orig_id": 1407728}}, {"model": "metainfo.source", "pk": 4989, "fields": {"orig_filename": "Rydz_Edward_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352", "author": "", "orig_id": 1407729}}, {"model": "metainfo.source", "pk": 4990, "fields": {"orig_filename": "Rytir_Jaroslav_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352", "author": "", "orig_id": 1407777}}, {"model": "metainfo.source", "pk": 4991, "fields": {"orig_filename": "Ryzner_Cenek_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352f.", "author": "", "orig_id": 1407778}}, {"model": "metainfo.source", "pk": 4992, "fields": {"orig_filename": "Rzach_Alois_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 353", "author": "", "orig_id": 1407779}}, {"model": "metainfo.source", "pk": 4993, "fields": {"orig_filename": "Rzehaczek_Karl_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 353f.", "author": "", "orig_id": 1407780}}, {"model": "metainfo.source", "pk": 4994, "fields": {"orig_filename": "Rzehak_Anton_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 354", "author": "", "orig_id": 1407781}}, {"model": "metainfo.source", "pk": 4995, "fields": {"orig_filename": "Rzehak_Emil_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 354f.", "author": "", "orig_id": 1407782}}, {"model": "metainfo.source", "pk": 4996, "fields": {"orig_filename": "Rzepinski_Stanislaw_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355", "author": "", "orig_id": 1407783}}, {"model": "metainfo.source", "pk": 4997, "fields": {"orig_filename": "Rzesacz_Ernst_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355", "author": "", "orig_id": 1407784}}, {"model": "metainfo.source", "pk": 4998, "fields": {"orig_filename": "Rzesinski_Jan-Kanty_1803_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355f.", "author": "", "orig_id": 1407785}}, {"model": "metainfo.source", "pk": 4999, "fields": {"orig_filename": "Rzewuski_Leon_1808_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 356", "author": "", "orig_id": 1407786}}, {"model": "metainfo.source", "pk": 5000, "fields": {"orig_filename": "Rzewuski_Walery_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 356f.", "author": "", "orig_id": 1407787}}, {"model": "metainfo.source", "pk": 5001, "fields": {"orig_filename": "Rziha_Franz_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 357", "author": "", "orig_id": 1407788}}, {"model": "metainfo.source", "pk": 5002, "fields": {"orig_filename": "Saal_Ignaz_1761_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 357", "author": "", "orig_id": 1407789}}, {"model": "metainfo.source", "pk": 5003, "fields": {"orig_filename": "Saar_Ferdinand_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 358f.", "author": "", "orig_id": 1407790}}, {"model": "metainfo.source", "pk": 5004, "fields": {"orig_filename": "Saar_Guenther_1878_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 359", "author": "", "orig_id": 1407791}}, {"model": "metainfo.source", "pk": 5005, "fields": {"orig_filename": "Saar_Karl_1797_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 359f.", "author": "", "orig_id": 1407792}}, {"model": "metainfo.source", "pk": 5006, "fields": {"orig_filename": "Sabala-Krzeptowski_Jan_1809_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360", "author": "", "orig_id": 1407793}}, {"model": "metainfo.source", "pk": 5007, "fields": {"orig_filename": "Sabalich_Giuseppe_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360", "author": "", "orig_id": 1407794}}, {"model": "metainfo.source", "pk": 5008, "fields": {"orig_filename": "Sabathil_Rudolf_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360f.", "author": "", "orig_id": 1407795}}, {"model": "metainfo.source", "pk": 5009, "fields": {"orig_filename": "Sabic_Marin_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361", "author": "", "orig_id": 1407796}}, {"model": "metainfo.source", "pk": 5010, "fields": {"orig_filename": "Sabidussi_Hans_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361", "author": "", "orig_id": 1407797}}, {"model": "metainfo.source", "pk": 5011, "fields": {"orig_filename": "Sabina_Karel_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361f.", "author": "", "orig_id": 1407799}}, {"model": "metainfo.source", "pk": 5012, "fields": {"orig_filename": "Sablatnig_Josef_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 362", "author": "", "orig_id": 1407800}}, {"model": "metainfo.source", "pk": 5013, "fields": {"orig_filename": "Sablik_Franz_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 362f.", "author": "", "orig_id": 1407801}}, {"model": "metainfo.source", "pk": 5014, "fields": {"orig_filename": "Sabljar_Mijat_1790_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 363", "author": "", "orig_id": 1407802}}, {"model": "metainfo.source", "pk": 5015, "fields": {"orig_filename": "Sabowski_Wladyslaw_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 363f.", "author": "", "orig_id": 1407803}}, {"model": "metainfo.source", "pk": 5016, "fields": {"orig_filename": "Sabransky_Heinrich_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 364", "author": "", "orig_id": 1407804}}, {"model": "metainfo.source", "pk": 5017, "fields": {"orig_filename": "Saccardo_Pier-Andrea_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 364f.", "author": "", "orig_id": 1407805}}, {"model": "metainfo.source", "pk": 5018, "fields": {"orig_filename": "Sacchetti_Antonio_1790_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 365", "author": "", "orig_id": 1407806}}, {"model": "metainfo.source", "pk": 5019, "fields": {"orig_filename": "Sacchetti_Lorenzo_1759_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 365f.", "author": "", "orig_id": 1407807}}, {"model": "metainfo.source", "pk": 5020, "fields": {"orig_filename": "Sacher-Masoch_Leopold_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367ff.", "author": "", "orig_id": 1407813}}, {"model": "metainfo.source", "pk": 5021, "fields": {"orig_filename": "Sacher-Masoch_Wanda_1845_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1442024}}, {"model": "metainfo.source", "pk": 5022, "fields": {"orig_filename": "Sacher_Anna_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366", "author": "", "orig_id": 1407808}}, {"model": "metainfo.source", "pk": 5023, "fields": {"orig_filename": "Sacher_Eduard_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366", "author": "", "orig_id": 1407809}}, {"model": "metainfo.source", "pk": 5024, "fields": {"orig_filename": "Sacher_Eduard_1843_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366f.", "author": "", "orig_id": 1407810}}, {"model": "metainfo.source", "pk": 5025, "fields": {"orig_filename": "Sacher_Emanuel_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367", "author": "", "orig_id": 1407811}}, {"model": "metainfo.source", "pk": 5026, "fields": {"orig_filename": "Sacher_Franz_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367", "author": "", "orig_id": 1407812}}, {"model": "metainfo.source", "pk": 5027, "fields": {"orig_filename": "Sachsalber_Adolf_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369", "author": "", "orig_id": 1407816}}, {"model": "metainfo.source", "pk": 5028, "fields": {"orig_filename": "Sachse-Hofmeister_Anna_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369f.", "author": "", "orig_id": 1407817}}, {"model": "metainfo.source", "pk": 5029, "fields": {"orig_filename": "Roth_Imrich-Emanuel_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277", "author": "", "orig_id": 1407637}}, {"model": "metainfo.source", "pk": 5030, "fields": {"orig_filename": "Roth_Johann-Bapt_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277", "author": "", "orig_id": 1407638}}, {"model": "metainfo.source", "pk": 5031, "fields": {"orig_filename": "Roth_Johann_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277f.", "author": "", "orig_id": 1407639}}, {"model": "metainfo.source", "pk": 5032, "fields": {"orig_filename": "Roth_Josef_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 278f.", "author": "", "orig_id": 1407640}}, {"model": "metainfo.source", "pk": 5033, "fields": {"orig_filename": "Roth_Julius_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 279", "author": "", "orig_id": 1407641}}, {"model": "metainfo.source", "pk": 5034, "fields": {"orig_filename": "Roth_Louis_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 279f.", "author": "", "orig_id": 1407642}}, {"model": "metainfo.source", "pk": 5035, "fields": {"orig_filename": "Roth_Martin_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280", "author": "", "orig_id": 1407643}}, {"model": "metainfo.source", "pk": 5036, "fields": {"orig_filename": "Roth_Richard-Karl_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280", "author": "", "orig_id": 1407644}}, {"model": "metainfo.source", "pk": 5037, "fields": {"orig_filename": "Roth_Samuel-Lajos_1851_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280f.", "author": "", "orig_id": 1407645}}, {"model": "metainfo.source", "pk": 5038, "fields": {"orig_filename": "Roth_Stefan-Ludwig_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 281f.", "author": "", "orig_id": 1407646}}, {"model": "metainfo.source", "pk": 5039, "fields": {"orig_filename": "Roth_Viktor_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 282", "author": "", "orig_id": 1407647}}, {"model": "metainfo.source", "pk": 5040, "fields": {"orig_filename": "Rotky_Karl_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291", "author": "", "orig_id": 1407669}}, {"model": "metainfo.source", "pk": 5041, "fields": {"orig_filename": "Rottauscher-Malata_Alfred_1888_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292f.", "author": "", "orig_id": 1407675}}, {"model": "metainfo.source", "pk": 5042, "fields": {"orig_filename": "Rottauscher-Malata_Karl_1812_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293", "author": "", "orig_id": 1407676}}, {"model": "metainfo.source", "pk": 5043, "fields": {"orig_filename": "Rottauscher-Malata_Maximilian_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293", "author": "", "orig_id": 1407677}}, {"model": "metainfo.source", "pk": 5044, "fields": {"orig_filename": "Rotta_Antonio_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292", "author": "", "orig_id": 1407674}}, {"model": "metainfo.source", "pk": 5045, "fields": {"orig_filename": "Rottenberger_Friedrich-Leo_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294", "author": "", "orig_id": 1407679}}, {"model": "metainfo.source", "pk": 5046, "fields": {"orig_filename": "Rottenberger_Josef_1760_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294", "author": "", "orig_id": 1407680}}, {"model": "metainfo.source", "pk": 5047, "fields": {"orig_filename": "Rottenberg_Ludwig_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293f.", "author": "", "orig_id": 1407678}}, {"model": "metainfo.source", "pk": 5048, "fields": {"orig_filename": "Rotter_Ferdinand-Amand_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294f.", "author": "", "orig_id": 1407681}}, {"model": "metainfo.source", "pk": 5049, "fields": {"orig_filename": "Rotter_Frantisek_1831_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295", "author": "", "orig_id": 1407682}}, {"model": "metainfo.source", "pk": 5050, "fields": {"orig_filename": "Rotter_Johann-Nep_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295", "author": "", "orig_id": 1407683}}, {"model": "metainfo.source", "pk": 5051, "fields": {"orig_filename": "Rotter_Kurt_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296", "author": "", "orig_id": 1407685}}, {"model": "metainfo.source", "pk": 5052, "fields": {"orig_filename": "Rotter_Ludwig_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296", "author": "", "orig_id": 1407686}}, {"model": "metainfo.source", "pk": 5053, "fields": {"orig_filename": "Rottini_Gabriele_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296f.", "author": "", "orig_id": 1407687}}, {"model": "metainfo.source", "pk": 5054, "fields": {"orig_filename": "Rottler_Berthold_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297", "author": "", "orig_id": 1407688}}, {"model": "metainfo.source", "pk": 5055, "fields": {"orig_filename": "Rottleuthner_Wilhelm-Johann_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297", "author": "", "orig_id": 1407689}}, {"model": "metainfo.source", "pk": 5056, "fields": {"orig_filename": "Rottonara_Franz-Angelo_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297f.", "author": "", "orig_id": 1407690}}, {"model": "metainfo.source", "pk": 5057, "fields": {"orig_filename": "Rott_Hans_1858_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291f.", "author": "", "orig_id": 1407670}}, {"model": "metainfo.source", "pk": 5058, "fields": {"orig_filename": "Rott_Vincenc-Josef_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292", "author": "", "orig_id": 1407673}}, {"model": "metainfo.source", "pk": 5059, "fields": {"orig_filename": "Rouschal_Ernst_1911_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 298", "author": "", "orig_id": 1407691}}, {"model": "metainfo.source", "pk": 5060, "fields": {"orig_filename": "Rovani_Giuseppe_1818_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 298f.", "author": "", "orig_id": 1407692}}, {"model": "metainfo.source", "pk": 5061, "fields": {"orig_filename": "Rovelli_Pietro_1793_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299", "author": "", "orig_id": 1407693}}, {"model": "metainfo.source", "pk": 5062, "fields": {"orig_filename": "Rovnianek_Peter-Vitazoslav_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299", "author": "", "orig_id": 1407694}}, {"model": "metainfo.source", "pk": 5063, "fields": {"orig_filename": "Rowid_Henryk_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299f.", "author": "", "orig_id": 1407695}}, {"model": "metainfo.source", "pk": 5064, "fields": {"orig_filename": "Rowland_Wilhelm_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 300", "author": "", "orig_id": 1407696}}, {"model": "metainfo.source", "pk": 5065, "fields": {"orig_filename": "Royt_Vaclav_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 301", "author": "", "orig_id": 1407698}}, {"model": "metainfo.source", "pk": 5066, "fields": {"orig_filename": "Roy_Vladimir_1885_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 300f.", "author": "", "orig_id": 1407697}}, {"model": "metainfo.source", "pk": 5067, "fields": {"orig_filename": "Rozek_Karel_1876_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 301f.", "author": "", "orig_id": 1407699}}, {"model": "metainfo.source", "pk": 5068, "fields": {"orig_filename": "Rozenits_Demetrius_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407700}}, {"model": "metainfo.source", "pk": 5069, "fields": {"orig_filename": "Rozenits_Lukas_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407701}}, {"model": "metainfo.source", "pk": 5070, "fields": {"orig_filename": "Rozic_Antun_1787_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407702}}, {"model": "metainfo.source", "pk": 5071, "fields": {"orig_filename": "Rozic_Valentin_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302f.", "author": "", "orig_id": 1407703}}, {"model": "metainfo.source", "pk": 5072, "fields": {"orig_filename": "Rozic_Vatroslav_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303", "author": "", "orig_id": 1407704}}, {"model": "metainfo.source", "pk": 5073, "fields": {"orig_filename": "Rozkosny_Jan_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303", "author": "", "orig_id": 1407705}}, {"model": "metainfo.source", "pk": 5074, "fields": {"orig_filename": "Rozman_Jozef_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303f.", "author": "", "orig_id": 1407706}}, {"model": "metainfo.source", "pk": 5075, "fields": {"orig_filename": "Roznay_Samuel_1787_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304", "author": "", "orig_id": 1407707}}, {"model": "metainfo.source", "pk": 5076, "fields": {"orig_filename": "Rozsavoelgyi_Mark_1789_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304f.", "author": "", "orig_id": 1407514}}, {"model": "metainfo.source", "pk": 5077, "fields": {"orig_filename": "Rozsay-Murakoez_Jozsef_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305", "author": "", "orig_id": 1407515}}, {"model": "metainfo.source", "pk": 5078, "fields": {"orig_filename": "Rozsa_Sandor_1813_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304", "author": "", "orig_id": 1407513}}, {"model": "metainfo.source", "pk": 5079, "fields": {"orig_filename": "Rozvoda_Jaroslav_1869_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305", "author": "", "orig_id": 1407517}}, {"model": "metainfo.source", "pk": 5080, "fields": {"orig_filename": "Rozwadowski_Jan-Michal_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305f.", "author": "", "orig_id": 1407518}}, {"model": "metainfo.source", "pk": 5081, "fields": {"orig_filename": "Ruard_Leopold_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 306", "author": "", "orig_id": 1407519}}, {"model": "metainfo.source", "pk": 5082, "fields": {"orig_filename": "Ruault-Frappart_Louis_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 306f.", "author": "", "orig_id": 1407520}}, {"model": "metainfo.source", "pk": 5083, "fields": {"orig_filename": "Rubczynski_Witold_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 307", "author": "", "orig_id": 1407521}}, {"model": "metainfo.source", "pk": 5084, "fields": {"orig_filename": "Rubelli-Sturmfest_Ludwig_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 307f.", "author": "", "orig_id": 1407522}}, {"model": "metainfo.source", "pk": 5085, "fields": {"orig_filename": "Ruben_Christian_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308", "author": "", "orig_id": 1407523}}, {"model": "metainfo.source", "pk": 5086, "fields": {"orig_filename": "Ruben_Franz-Leo_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308", "author": "", "orig_id": 1407524}}, {"model": "metainfo.source", "pk": 5087, "fields": {"orig_filename": "Ruber_Ignaz_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308f.", "author": "", "orig_id": 1407525}}, {"model": "metainfo.source", "pk": 5088, "fields": {"orig_filename": "Rubes_Frantisek-Jaromir_1814_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 309", "author": "", "orig_id": 1407526}}, {"model": "metainfo.source", "pk": 5089, "fields": {"orig_filename": "Rubinstein_Siegmund_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310f.", "author": "", "orig_id": 1407529}}, {"model": "metainfo.source", "pk": 5090, "fields": {"orig_filename": "Rubin_David_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 309f.", "author": "", "orig_id": 1407527}}, {"model": "metainfo.source", "pk": 5091, "fields": {"orig_filename": "Rubin_Salomon_1823_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310", "author": "", "orig_id": 1407528}}, {"model": "metainfo.source", "pk": 5092, "fields": {"orig_filename": "Rubritius_Hans_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310f.", "author": "", "orig_id": 1407530}}, {"model": "metainfo.source", "pk": 5093, "fields": {"orig_filename": "Ruchinger_Giuseppe_1761_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407531}}, {"model": "metainfo.source", "pk": 5094, "fields": {"orig_filename": "Ruchinger_Giuseppe_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407532}}, {"model": "metainfo.source", "pk": 5095, "fields": {"orig_filename": "Rudas_Geroe_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311f.", "author": "", "orig_id": 1407534}}, {"model": "metainfo.source", "pk": 5096, "fields": {"orig_filename": "Ruda_Prokop_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407533}}, {"model": "metainfo.source", "pk": 5097, "fields": {"orig_filename": "Rudczinsky_Karl_1751_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 312", "author": "", "orig_id": 1407535}}, {"model": "metainfo.source", "pk": 5098, "fields": {"orig_filename": "Rudel_Olga_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 312f.", "author": "", "orig_id": 1407536}}, {"model": "metainfo.source", "pk": 5099, "fields": {"orig_filename": "Rudigier_Franz-Josef_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 313f.", "author": "", "orig_id": 1407537}}, {"model": "metainfo.source", "pk": 5100, "fields": {"orig_filename": "Rudmas_Simon_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 314", "author": "", "orig_id": 1407538}}, {"model": "metainfo.source", "pk": 5101, "fields": {"orig_filename": "Rudnay-Rudna-Divekujfalu_Alexander_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 314f.", "author": "", "orig_id": 1407539}}, {"model": "metainfo.source", "pk": 5102, "fields": {"orig_filename": "Rudolf_Alfred_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 315", "author": "", "orig_id": 1407540}}, {"model": "metainfo.source", "pk": 5103, "fields": {"orig_filename": "Rudolf_Franz-Karl-Josef_1858_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 315f.", "author": "", "orig_id": 1407541}}, {"model": "metainfo.source", "pk": 5104, "fields": {"orig_filename": "Rudolf_Johann-Josef-Rainer_1788_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 316f.", "author": "", "orig_id": 1407542}}, {"model": "metainfo.source", "pk": 5105, "fields": {"orig_filename": "Rudolph_Karl_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407543}}, {"model": "metainfo.source", "pk": 5106, "fields": {"orig_filename": "Rudorfer_Franz_1897_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407544}}, {"model": "metainfo.source", "pk": 5107, "fields": {"orig_filename": "Rudovsky_Josef_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407545}}, {"model": "metainfo.source", "pk": 5108, "fields": {"orig_filename": "Rudroff_Andreas_1744_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317f.", "author": "", "orig_id": 1407546}}, {"model": "metainfo.source", "pk": 5109, "fields": {"orig_filename": "Rudtorffer_Franz-X_1760_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 318", "author": "", "orig_id": 1409582}}, {"model": "metainfo.source", "pk": 5110, "fields": {"orig_filename": "Rudzki_Maurycy-Pius_1862_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 318f.", "author": "", "orig_id": 1409583}}, {"model": "metainfo.source", "pk": 5111, "fields": {"orig_filename": "Rueckauf_Anton_1855_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319", "author": "", "orig_id": 1409584}}, {"model": "metainfo.source", "pk": 5112, "fields": {"orig_filename": "Rueckl_Engelbert_1888_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319", "author": "", "orig_id": 1409585}}, {"model": "metainfo.source", "pk": 5113, "fields": {"orig_filename": "Rueffer_Eduard_1835_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407547}}, {"model": "metainfo.source", "pk": 5114, "fields": {"orig_filename": "Rueff_Johann_1806_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319f.", "author": "", "orig_id": 1409586}}, {"model": "metainfo.source", "pk": 5115, "fields": {"orig_filename": "Ruesch_Josef-Ignaz_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407548}}, {"model": "metainfo.source", "pk": 5116, "fields": {"orig_filename": "Ruesch_Josef-Ignaz_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407549}}, {"model": "metainfo.source", "pk": 5117, "fields": {"orig_filename": "Ruesch_Karl-Alfred_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407550}}, {"model": "metainfo.source", "pk": 5118, "fields": {"orig_filename": "Ruetgers_Guido_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407551}}, {"model": "metainfo.source", "pk": 5119, "fields": {"orig_filename": "Rufeisen_Josef_1887_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321f.", "author": "", "orig_id": 1407553}}, {"model": "metainfo.source", "pk": 5120, "fields": {"orig_filename": "Ruffini_Giovanni-Batt_1821_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322", "author": "", "orig_id": 1407554}}, {"model": "metainfo.source", "pk": 5121, "fields": {"orig_filename": "Rufinatscha_Johann_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322", "author": "", "orig_id": 1407555}}, {"model": "metainfo.source", "pk": 5122, "fields": {"orig_filename": "Ruf_Sebastian_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407552}}, {"model": "metainfo.source", "pk": 5123, "fields": {"orig_filename": "Ruge_Klara-Ottilie_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322f.", "author": "", "orig_id": 1407556}}, {"model": "metainfo.source", "pk": 5124, "fields": {"orig_filename": "Ruggera_Kamillo_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 323", "author": "", "orig_id": 1407557}}, {"model": "metainfo.source", "pk": 5125, "fields": {"orig_filename": "Ruhmann_Adolf_1832_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 323f.", "author": "", "orig_id": 1407558}}, {"model": "metainfo.source", "pk": 5126, "fields": {"orig_filename": "Rukavina_Fridrik_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407559}}, {"model": "metainfo.source", "pk": 5127, "fields": {"orig_filename": "Rulikowski-Poradow_Ludwik_1784_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407560}}, {"model": "metainfo.source", "pk": 5128, "fields": {"orig_filename": "Rumann_Jan_1876_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407825}}, {"model": "metainfo.source", "pk": 5129, "fields": {"orig_filename": "Rumbold_Karl_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324f.", "author": "", "orig_id": 1407826}}, {"model": "metainfo.source", "pk": 5130, "fields": {"orig_filename": "Rummelhardt_Karl_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325", "author": "", "orig_id": 1407827}}, {"model": "metainfo.source", "pk": 5131, "fields": {"orig_filename": "Rumpelmayer_Viktor_1830_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325", "author": "", "orig_id": 1407829}}, {"model": "metainfo.source", "pk": 5132, "fields": {"orig_filename": "Rosegger_Sepp_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 246f.", "author": "", "orig_id": 1407413}}, {"model": "metainfo.source", "pk": 5133, "fields": {"orig_filename": "Rosenbaum_Alfred_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 248", "author": "", "orig_id": 1407562}}, {"model": "metainfo.source", "pk": 5134, "fields": {"orig_filename": "Rosenbaum_Josef-Karl_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 248f.", "author": "", "orig_id": 1407563}}, {"model": "metainfo.source", "pk": 5135, "fields": {"orig_filename": "Rosenbaum_Kory-Elisabeth_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249", "author": "", "orig_id": 1407564}}, {"model": "metainfo.source", "pk": 5136, "fields": {"orig_filename": "Rosenbaum_Moses-Chaim-Litcs_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249", "author": "", "orig_id": 1407565}}, {"model": "metainfo.source", "pk": 5137, "fields": {"orig_filename": "Rosenbaum_Richard_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249f.", "author": "", "orig_id": 1407566}}, {"model": "metainfo.source", "pk": 5138, "fields": {"orig_filename": "Rosenbaum_Sigmund_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 250", "author": "", "orig_id": 1407567}}, {"model": "metainfo.source", "pk": 5139, "fields": {"orig_filename": "Rosenbaum_Therese_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 250f.", "author": "", "orig_id": 1407568}}, {"model": "metainfo.source", "pk": 5140, "fields": {"orig_filename": "Rosenberg_Karl_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251", "author": "", "orig_id": 1407569}}, {"model": "metainfo.source", "pk": 5141, "fields": {"orig_filename": "Rosenberg_Moritz_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251", "author": "", "orig_id": 1407570}}, {"model": "metainfo.source", "pk": 5142, "fields": {"orig_filename": "Rosenberg_Samuel_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251f.", "author": "", "orig_id": 1407571}}, {"model": "metainfo.source", "pk": 5143, "fields": {"orig_filename": "Rosenblatt_Alfred_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252", "author": "", "orig_id": 1407572}}, {"model": "metainfo.source", "pk": 5144, "fields": {"orig_filename": "Rosenegger_Josef_1767_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252", "author": "", "orig_id": 1407573}}, {"model": "metainfo.source", "pk": 5145, "fields": {"orig_filename": "Rosenfeld_Maurice_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252f.", "author": "", "orig_id": 1407575}}, {"model": "metainfo.source", "pk": 5146, "fields": {"orig_filename": "Rosenfeld_Viktor_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407576}}, {"model": "metainfo.source", "pk": 5147, "fields": {"orig_filename": "Rosenkranz_Wenzel-Josef_1797_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407577}}, {"model": "metainfo.source", "pk": 5148, "fields": {"orig_filename": "Rosenthal_Felix_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407578}}, {"model": "metainfo.source", "pk": 5149, "fields": {"orig_filename": "Rosenthal_Friedrich_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253f.", "author": "", "orig_id": 1407579}}, {"model": "metainfo.source", "pk": 5150, "fields": {"orig_filename": "Rosenthal_Moriz_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 254", "author": "", "orig_id": 1407580}}, {"model": "metainfo.source", "pk": 5151, "fields": {"orig_filename": "Rosenthal_Moriz_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 254f.", "author": "", "orig_id": 1407581}}, {"model": "metainfo.source", "pk": 5152, "fields": {"orig_filename": "Rosenthal_Philipp_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 255", "author": "", "orig_id": 1407582}}, {"model": "metainfo.source", "pk": 5153, "fields": {"orig_filename": "Rosenzweig-Schwannau_Vinzenz_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 255f.", "author": "", "orig_id": 1407584}}, {"model": "metainfo.source", "pk": 5154, "fields": {"orig_filename": "Rosen_Julius_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 247", "author": "", "orig_id": 1407414}}, {"model": "metainfo.source", "pk": 5155, "fields": {"orig_filename": "Roser_Franz-De-P_1779_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256", "author": "", "orig_id": 1407585}}, {"model": "metainfo.source", "pk": 5156, "fields": {"orig_filename": "Roser_Franz-Moritz_1818_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256", "author": "", "orig_id": 1407586}}, {"model": "metainfo.source", "pk": 5157, "fields": {"orig_filename": "Roser_Magdalena_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256f.", "author": "", "orig_id": 1407587}}, {"model": "metainfo.source", "pk": 5158, "fields": {"orig_filename": "Rose_Arnold-Josef_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 243f.", "author": "", "orig_id": 1407407}}, {"model": "metainfo.source", "pk": 5159, "fields": {"orig_filename": "Rose_Eduard_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244", "author": "", "orig_id": 1407408}}, {"model": "metainfo.source", "pk": 5160, "fields": {"orig_filename": "Rose_Giovanni-Luigi_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244", "author": "", "orig_id": 1407409}}, {"model": "metainfo.source", "pk": 5161, "fields": {"orig_filename": "Rose_Maksymilian_1883_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244f.", "author": "", "orig_id": 1407410}}, {"model": "metainfo.source", "pk": 5162, "fields": {"orig_filename": "Rosiwal_August_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 257", "author": "", "orig_id": 1407588}}, {"model": "metainfo.source", "pk": 5163, "fields": {"orig_filename": "Roskiewicz_Johann_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 257", "author": "", "orig_id": 1407589}}, {"model": "metainfo.source", "pk": 5164, "fields": {"orig_filename": "Roskoff_Georg-Gustav_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258", "author": "", "orig_id": 1407590}}, {"model": "metainfo.source", "pk": 5165, "fields": {"orig_filename": "Roskot_Jan-Krtitel_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258", "author": "", "orig_id": 1407591}}, {"model": "metainfo.source", "pk": 5166, "fields": {"orig_filename": "Roskovanyi-Roskovany_Agoston_1807_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258f.", "author": "", "orig_id": 1407592}}, {"model": "metainfo.source", "pk": 5167, "fields": {"orig_filename": "Rosner_Aleksander_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260", "author": "", "orig_id": 1407595}}, {"model": "metainfo.source", "pk": 5168, "fields": {"orig_filename": "Rosner_Antoni_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260", "author": "", "orig_id": 1407596}}, {"model": "metainfo.source", "pk": 5169, "fields": {"orig_filename": "Rosner_Ignacy-Juliusz_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260f.", "author": "", "orig_id": 1407597}}, {"model": "metainfo.source", "pk": 5170, "fields": {"orig_filename": "Rosner_Jehuda-Segal_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261", "author": "", "orig_id": 1407598}}, {"model": "metainfo.source", "pk": 5171, "fields": {"orig_filename": "Rosner_Leopold_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261", "author": "", "orig_id": 1407599}}, {"model": "metainfo.source", "pk": 5172, "fields": {"orig_filename": "Rosnik_Franz_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261f.", "author": "", "orig_id": 1407600}}, {"model": "metainfo.source", "pk": 5173, "fields": {"orig_filename": "Rossbacher_Rudolf_1806_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262", "author": "", "orig_id": 1409578}}, {"model": "metainfo.source", "pk": 5174, "fields": {"orig_filename": "Rossbach_Richard_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262", "author": "", "orig_id": 1407601}}, {"model": "metainfo.source", "pk": 5175, "fields": {"orig_filename": "Rossen_Ferdinand_1785_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262f.", "author": "", "orig_id": 1407602}}, {"model": "metainfo.source", "pk": 5176, "fields": {"orig_filename": "Rossetti-Scander_Domenico_1774_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263f.", "author": "", "orig_id": 1407605}}, {"model": "metainfo.source", "pk": 5177, "fields": {"orig_filename": "Rossetti_Antonio_1819_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263", "author": "", "orig_id": 1407603}}, {"model": "metainfo.source", "pk": 5178, "fields": {"orig_filename": "Rossetti_Francesco_1833_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263", "author": "", "orig_id": 1407604}}, {"model": "metainfo.source", "pk": 5179, "fields": {"orig_filename": "Rossi_Cesare_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 264f.", "author": "", "orig_id": 1407606}}, {"model": "metainfo.source", "pk": 5180, "fields": {"orig_filename": "Rossi_Gaetano_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265", "author": "", "orig_id": 1407607}}, {"model": "metainfo.source", "pk": 5181, "fields": {"orig_filename": "Rossi_Giacomo_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265", "author": "", "orig_id": 1407608}}, {"model": "metainfo.source", "pk": 5182, "fields": {"orig_filename": "Rossi_Giacomo_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265f.", "author": "", "orig_id": 1407609}}, {"model": "metainfo.source", "pk": 5183, "fields": {"orig_filename": "Rossi_Giovanni-Alvise_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266", "author": "", "orig_id": 1407610}}, {"model": "metainfo.source", "pk": 5184, "fields": {"orig_filename": "Rossi_Hugo_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266", "author": "", "orig_id": 1407611}}, {"model": "metainfo.source", "pk": 5185, "fields": {"orig_filename": "Rossi_Ljudevit_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266f.", "author": "", "orig_id": 1407612}}, {"model": "metainfo.source", "pk": 5186, "fields": {"orig_filename": "Rossi_Luigi-Maria_1819_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267", "author": "", "orig_id": 1407613}}, {"model": "metainfo.source", "pk": 5187, "fields": {"orig_filename": "Rossi_Marcello_1862_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267", "author": "", "orig_id": 1407614}}, {"model": "metainfo.source", "pk": 5188, "fields": {"orig_filename": "Rossi_Paul_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267f.", "author": "", "orig_id": 1407615}}, {"model": "metainfo.source", "pk": 5189, "fields": {"orig_filename": "Rostafinski_Jozef-Tomasz_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268f.", "author": "", "orig_id": 1407617}}, {"model": "metainfo.source", "pk": 5190, "fields": {"orig_filename": "Rosthorn_Alfons_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 269", "author": "", "orig_id": 1407618}}, {"model": "metainfo.source", "pk": 5191, "fields": {"orig_filename": "Rosthorn_Arthur_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 269f.", "author": "", "orig_id": 1407619}}, {"model": "metainfo.source", "pk": 5192, "fields": {"orig_filename": "Rosthorn_August_1789_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 270", "author": "", "orig_id": 1407620}}, {"model": "metainfo.source", "pk": 5193, "fields": {"orig_filename": "Rosthorn_Franz_1796_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 270f.", "author": "", "orig_id": 1407621}}, {"model": "metainfo.source", "pk": 5194, "fields": {"orig_filename": "Rosthorn_Josef_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 271", "author": "", "orig_id": 1407622}}, {"model": "metainfo.source", "pk": 5195, "fields": {"orig_filename": "Rosthorn_Matthaeus_1782_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 271f.", "author": "", "orig_id": 1407623}}, {"model": "metainfo.source", "pk": 5196, "fields": {"orig_filename": "Rosthorn_Oskar_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 272", "author": "", "orig_id": 1407624}}, {"model": "metainfo.source", "pk": 5197, "fields": {"orig_filename": "Rostworowski_Karol-Hubert_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 272f.", "author": "", "orig_id": 1407625}}, {"model": "metainfo.source", "pk": 5198, "fields": {"orig_filename": "Rostworowski_Michal_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273", "author": "", "orig_id": 1407626}}, {"model": "metainfo.source", "pk": 5199, "fields": {"orig_filename": "Rost_Leopold_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268", "author": "", "orig_id": 1407616}}, {"model": "metainfo.source", "pk": 5200, "fields": {"orig_filename": "Rost_Rudolf_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268", "author": "", "orig_id": 1409579}}, {"model": "metainfo.source", "pk": 5201, "fields": {"orig_filename": "Roszkowski_Julian_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273", "author": "", "orig_id": 1407627}}, {"model": "metainfo.source", "pk": 5202, "fields": {"orig_filename": "Ros_Bostjan_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407398}}, {"model": "metainfo.source", "pk": 5203, "fields": {"orig_filename": "Rota_Giuseppe_1823_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273f.", "author": "", "orig_id": 1407628}}, {"model": "metainfo.source", "pk": 5204, "fields": {"orig_filename": "Rota_Giuseppe_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274", "author": "", "orig_id": 1407629}}, {"model": "metainfo.source", "pk": 5205, "fields": {"orig_filename": "Rotenstreich_Ephraim-Fischel_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274", "author": "", "orig_id": 1407630}}, {"model": "metainfo.source", "pk": 5206, "fields": {"orig_filename": "Roth-Limanowa-Lapanow_Josef_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 282f.", "author": "", "orig_id": 1407648}}, {"model": "metainfo.source", "pk": 5207, "fields": {"orig_filename": "Roth-Pongyolok_Adolf_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283", "author": "", "orig_id": 1407649}}, {"model": "metainfo.source", "pk": 5208, "fields": {"orig_filename": "Roth-Telegd_Ludwig_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283", "author": "", "orig_id": 1407650}}, {"model": "metainfo.source", "pk": 5209, "fields": {"orig_filename": "Rothaug_Alexander_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283f.", "author": "", "orig_id": 1407651}}, {"model": "metainfo.source", "pk": 5210, "fields": {"orig_filename": "Rothauser_Therese_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284", "author": "", "orig_id": 1407652}}, {"model": "metainfo.source", "pk": 5211, "fields": {"orig_filename": "Rothberger_Karl-Julius_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284", "author": "", "orig_id": 1407653}}, {"model": "metainfo.source", "pk": 5212, "fields": {"orig_filename": "Rothblum_David_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284f.", "author": "", "orig_id": 1407654}}, {"model": "metainfo.source", "pk": 5213, "fields": {"orig_filename": "Rothenflue_Augustin_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 285f.", "author": "", "orig_id": 1407656}}, {"model": "metainfo.source", "pk": 5214, "fields": {"orig_filename": "Rothermann_Peter-Daniel_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286", "author": "", "orig_id": 1409580}}, {"model": "metainfo.source", "pk": 5215, "fields": {"orig_filename": "Rother_Karl_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286", "author": "", "orig_id": 1407657}}, {"model": "metainfo.source", "pk": 5216, "fields": {"orig_filename": "Rothe_Hermann_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 285", "author": "", "orig_id": 1407655}}, {"model": "metainfo.source", "pk": 5217, "fields": {"orig_filename": "Rothkirch-Panthen_Karl_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286f.", "author": "", "orig_id": 1407658}}, {"model": "metainfo.source", "pk": 5218, "fields": {"orig_filename": "Rothkirch-Panthen_Leonhard_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287", "author": "", "orig_id": 1407659}}, {"model": "metainfo.source", "pk": 5219, "fields": {"orig_filename": "Rothmann_Armin_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287", "author": "", "orig_id": 1407660}}, {"model": "metainfo.source", "pk": 5220, "fields": {"orig_filename": "Rothmund-Burgwall_Adolf_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 288", "author": "", "orig_id": 1407662}}, {"model": "metainfo.source", "pk": 5221, "fields": {"orig_filename": "Rothmund_Viktor_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287f.", "author": "", "orig_id": 1407661}}, {"model": "metainfo.source", "pk": 5222, "fields": {"orig_filename": "Rothschild_Albert-Salomon-Anselm_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 288", "author": "", "orig_id": 1407663}}, {"model": "metainfo.source", "pk": 5223, "fields": {"orig_filename": "Rothschild_Anselm-Salomon_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289", "author": "", "orig_id": 1407664}}, {"model": "metainfo.source", "pk": 5224, "fields": {"orig_filename": "Rothschild_Nathaniel-Mayer-Anselm_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289", "author": "", "orig_id": 1407665}}, {"model": "metainfo.source", "pk": 5225, "fields": {"orig_filename": "Rothschild_Salomon-Mayer_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289f.", "author": "", "orig_id": 1407666}}, {"model": "metainfo.source", "pk": 5226, "fields": {"orig_filename": "Rothschuetz_Emil_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 290f.", "author": "", "orig_id": 1407667}}, {"model": "metainfo.source", "pk": 5227, "fields": {"orig_filename": "Rothziegel_Leo_1892_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291", "author": "", "orig_id": 1407668}}, {"model": "metainfo.source", "pk": 5228, "fields": {"orig_filename": "Roth_Aron_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274f.", "author": "", "orig_id": 1407631}}, {"model": "metainfo.source", "pk": 5229, "fields": {"orig_filename": "Roth_August_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275", "author": "", "orig_id": 1407632}}, {"model": "metainfo.source", "pk": 5230, "fields": {"orig_filename": "Roth_Daniel_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275", "author": "", "orig_id": 1407633}}, {"model": "metainfo.source", "pk": 5231, "fields": {"orig_filename": "Roth_Franz_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275f.", "author": "", "orig_id": 1407634}}, {"model": "metainfo.source", "pk": 5232, "fields": {"orig_filename": "Roth_Georg_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 276", "author": "", "orig_id": 1407635}}, {"model": "metainfo.source", "pk": 5233, "fields": {"orig_filename": "Roth_Hieronymus_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 276f.", "author": "", "orig_id": 1407636}}, {"model": "metainfo.source", "pk": 5234, "fields": {"orig_filename": "Roemer_Karl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202f.", "author": "", "orig_id": 1407355}}, {"model": "metainfo.source", "pk": 5235, "fields": {"orig_filename": "Roeschel_Franz_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203", "author": "", "orig_id": 1407357}}, {"model": "metainfo.source", "pk": 5236, "fields": {"orig_filename": "Roesch_Ludwig_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203", "author": "", "orig_id": 1407356}}, {"model": "metainfo.source", "pk": 5237, "fields": {"orig_filename": "Roesler-Ehrenstahl_Ignaz_1765_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 205", "author": "", "orig_id": 1407362}}, {"model": "metainfo.source", "pk": 5238, "fields": {"orig_filename": "Roesler_Augustin_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203f.", "author": "", "orig_id": 1407358}}, {"model": "metainfo.source", "pk": 5239, "fields": {"orig_filename": "Roesler_Franz_1876_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204", "author": "", "orig_id": 1407359}}, {"model": "metainfo.source", "pk": 5240, "fields": {"orig_filename": "Roesler_Leonhard_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204", "author": "", "orig_id": 1407360}}, {"model": "metainfo.source", "pk": 5241, "fields": {"orig_filename": "Roesler_Robert_1836_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204f.", "author": "", "orig_id": 1407361}}, {"model": "metainfo.source", "pk": 5242, "fields": {"orig_filename": "Roesner_Karl_1804_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 205f.", "author": "", "orig_id": 1407363}}, {"model": "metainfo.source", "pk": 5243, "fields": {"orig_filename": "Roessel_Albin_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 206", "author": "", "orig_id": 1407364}}, {"model": "metainfo.source", "pk": 5244, "fields": {"orig_filename": "Roessler_Emil-Franz_1815_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 206f.", "author": "", "orig_id": 1407365}}, {"model": "metainfo.source", "pk": 5245, "fields": {"orig_filename": "Roessler_Ervin_1876_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 207", "author": "", "orig_id": 1407415}}, {"model": "metainfo.source", "pk": 5246, "fields": {"orig_filename": "Roessler_Johannes-Bapt_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 207f.", "author": "", "orig_id": 1407416}}, {"model": "metainfo.source", "pk": 5247, "fields": {"orig_filename": "Roessler_Josef_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407417}}, {"model": "metainfo.source", "pk": 5248, "fields": {"orig_filename": "Roessler_Karl_1864_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407418}}, {"model": "metainfo.source", "pk": 5249, "fields": {"orig_filename": "Roessler_Matej_1754_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407419}}, {"model": "metainfo.source", "pk": 5250, "fields": {"orig_filename": "Roessler_Mauriz_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208f.", "author": "", "orig_id": 1407420}}, {"model": "metainfo.source", "pk": 5251, "fields": {"orig_filename": "Roessler_Richard_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 209f.", "author": "", "orig_id": 1407421}}, {"model": "metainfo.source", "pk": 5252, "fields": {"orig_filename": "Roessler_Stefan_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210", "author": "", "orig_id": 1407422}}, {"model": "metainfo.source", "pk": 5253, "fields": {"orig_filename": "Roetzer_Karl_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210", "author": "", "orig_id": 1407423}}, {"model": "metainfo.source", "pk": 5254, "fields": {"orig_filename": "Roever_Heinrich_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210f.", "author": "", "orig_id": 1407424}}, {"model": "metainfo.source", "pk": 5255, "fields": {"orig_filename": "Rogala_Wojciech_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211", "author": "", "orig_id": 1407426}}, {"model": "metainfo.source", "pk": 5256, "fields": {"orig_filename": "Rogalski-Puch_Adalbert_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211", "author": "", "orig_id": 1407427}}, {"model": "metainfo.source", "pk": 5257, "fields": {"orig_filename": "Rogge_Walter_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211f.", "author": "", "orig_id": 1407428}}, {"model": "metainfo.source", "pk": 5258, "fields": {"orig_filename": "Rogosz-Ostoja_Jozef-Atanazy_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 212", "author": "", "orig_id": 1407429}}, {"model": "metainfo.source", "pk": 5259, "fields": {"orig_filename": "Rogulja_Petar_1888_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 212f.", "author": "", "orig_id": 1407430}}, {"model": "metainfo.source", "pk": 5260, "fields": {"orig_filename": "Rohan_Karel-Jan_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213", "author": "", "orig_id": 1407431}}, {"model": "metainfo.source", "pk": 5261, "fields": {"orig_filename": "Rohlena_Josef_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213", "author": "", "orig_id": 1407432}}, {"model": "metainfo.source", "pk": 5262, "fields": {"orig_filename": "Rohling_August_1839_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213f.", "author": "", "orig_id": 1407433}}, {"model": "metainfo.source", "pk": 5263, "fields": {"orig_filename": "Rohm-Hermannstaedten_Alfred_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 214", "author": "", "orig_id": 1407434}}, {"model": "metainfo.source", "pk": 5264, "fields": {"orig_filename": "Rohr-Denta_Franz_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 214f.", "author": "", "orig_id": 1407435}}, {"model": "metainfo.source", "pk": 5265, "fields": {"orig_filename": "Rohrauer_Alois_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407436}}, {"model": "metainfo.source", "pk": 5266, "fields": {"orig_filename": "Rohrbacher_Josef_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407437}}, {"model": "metainfo.source", "pk": 5267, "fields": {"orig_filename": "Rohrbacher_Josef_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407438}}, {"model": "metainfo.source", "pk": 5268, "fields": {"orig_filename": "Rohrer_Rudolf-Maria_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 216", "author": "", "orig_id": 1407440}}, {"model": "metainfo.source", "pk": 5269, "fields": {"orig_filename": "Rohrer_Rudolf_1805_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215f.", "author": "", "orig_id": 1407439}}, {"model": "metainfo.source", "pk": 5270, "fields": {"orig_filename": "Rohrman_Viljem_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 216f.", "author": "", "orig_id": 1407441}}, {"model": "metainfo.source", "pk": 5271, "fields": {"orig_filename": "Rohs_Martha_1909_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1952799}}, {"model": "metainfo.source", "pk": 5272, "fields": {"orig_filename": "Roj-Gasienica_Wojciech_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 217", "author": "", "orig_id": 1407442}}, {"model": "metainfo.source", "pk": 5273, "fields": {"orig_filename": "Rojacher_Ignaz_1844_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 217f.", "author": "", "orig_id": 1407443}}, {"model": "metainfo.source", "pk": 5274, "fields": {"orig_filename": "Rojc_Anton_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218", "author": "", "orig_id": 1407444}}, {"model": "metainfo.source", "pk": 5275, "fields": {"orig_filename": "Rojc_Milan_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218", "author": "", "orig_id": 1407445}}, {"model": "metainfo.source", "pk": 5276, "fields": {"orig_filename": "Rojina_Francisek_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218f.", "author": "", "orig_id": 1407446}}, {"model": "metainfo.source", "pk": 5277, "fields": {"orig_filename": "Rojka_Friedrich_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 219", "author": "", "orig_id": 1407447}}, {"model": "metainfo.source", "pk": 5278, "fields": {"orig_filename": "Rojko_Kaspar_1744_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 219f.", "author": "", "orig_id": 1407448}}, {"model": "metainfo.source", "pk": 5279, "fields": {"orig_filename": "Rokeach_Issachar-Dow-Baer_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220", "author": "", "orig_id": 1407449}}, {"model": "metainfo.source", "pk": 5280, "fields": {"orig_filename": "Rokeach_Schalom_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220", "author": "", "orig_id": 1407450}}, {"model": "metainfo.source", "pk": 5281, "fields": {"orig_filename": "Rokitansky_Friedrich-Karl_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220f.", "author": "", "orig_id": 1407451}}, {"model": "metainfo.source", "pk": 5282, "fields": {"orig_filename": "Rokitansky_Hans_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 221", "author": "", "orig_id": 1407452}}, {"model": "metainfo.source", "pk": 5283, "fields": {"orig_filename": "Rokitansky_Karl_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 221f.", "author": "", "orig_id": 1407453}}, {"model": "metainfo.source", "pk": 5284, "fields": {"orig_filename": "Rokitansky_Karl_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 222f.", "author": "", "orig_id": 1407454}}, {"model": "metainfo.source", "pk": 5285, "fields": {"orig_filename": "Rokos_Frantisek-Alexander_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223", "author": "", "orig_id": 1407455}}, {"model": "metainfo.source", "pk": 5286, "fields": {"orig_filename": "Roksandic_Simeon_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223", "author": "", "orig_id": 1407456}}, {"model": "metainfo.source", "pk": 5287, "fields": {"orig_filename": "Rolla_Alessandro_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224", "author": "", "orig_id": 1407458}}, {"model": "metainfo.source", "pk": 5288, "fields": {"orig_filename": "Rolleder_Anton_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224", "author": "", "orig_id": 1407459}}, {"model": "metainfo.source", "pk": 5289, "fields": {"orig_filename": "Roller_Alfred_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224ff.", "author": "", "orig_id": 1407460}}, {"model": "metainfo.source", "pk": 5290, "fields": {"orig_filename": "Roller_Josef_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226", "author": "", "orig_id": 1407461}}, {"model": "metainfo.source", "pk": 5291, "fields": {"orig_filename": "Roller_Margarete_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226f.", "author": "", "orig_id": 1407463}}, {"model": "metainfo.source", "pk": 5292, "fields": {"orig_filename": "Rollett_Alexander_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 227f.", "author": "", "orig_id": 1407464}}, {"model": "metainfo.source", "pk": 5293, "fields": {"orig_filename": "Rollett_Anton_1778_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 228", "author": "", "orig_id": 1407465}}, {"model": "metainfo.source", "pk": 5294, "fields": {"orig_filename": "Rollett_Hermann_1819_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 228f.", "author": "", "orig_id": 1407366}}, {"model": "metainfo.source", "pk": 5295, "fields": {"orig_filename": "Rollinger_Karl_1817_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 229", "author": "", "orig_id": 1407367}}, {"model": "metainfo.source", "pk": 5296, "fields": {"orig_filename": "Roll_Karl_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223f.", "author": "", "orig_id": 1407457}}, {"model": "metainfo.source", "pk": 5297, "fields": {"orig_filename": "Romako_Anton_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 229f.", "author": "", "orig_id": 1407368}}, {"model": "metainfo.source", "pk": 5298, "fields": {"orig_filename": "Romanin_Leon-Vita_1770_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230", "author": "", "orig_id": 1407369}}, {"model": "metainfo.source", "pk": 5299, "fields": {"orig_filename": "Romano-Ringe_Johann-Julius_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231", "author": "", "orig_id": 1407371}}, {"model": "metainfo.source", "pk": 5300, "fields": {"orig_filename": "Romanowski_Mieczyslaw_1833_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231", "author": "", "orig_id": 1407372}}, {"model": "metainfo.source", "pk": 5301, "fields": {"orig_filename": "Romano_Girolamo_1765_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230f.", "author": "", "orig_id": 1407370}}, {"model": "metainfo.source", "pk": 5302, "fields": {"orig_filename": "Roman_Alexandru_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230", "author": "", "orig_id": 1407374}}, {"model": "metainfo.source", "pk": 5303, "fields": {"orig_filename": "Romaszkan_Grzegorz-Jozef_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231f.", "author": "", "orig_id": 1407373}}, {"model": "metainfo.source", "pk": 5304, "fields": {"orig_filename": "Rombauer_Johann_1782_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 232", "author": "", "orig_id": 1407375}}, {"model": "metainfo.source", "pk": 5305, "fields": {"orig_filename": "Romer-Kis-Enyiczke_Stefan_1788_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233", "author": "", "orig_id": 1407378}}, {"model": "metainfo.source", "pk": 5306, "fields": {"orig_filename": "Romer_Floridus_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 232f.", "author": "", "orig_id": 1407376}}, {"model": "metainfo.source", "pk": 5307, "fields": {"orig_filename": "Romer_Johann_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233", "author": "", "orig_id": 1407377}}, {"model": "metainfo.source", "pk": 5308, "fields": {"orig_filename": "Romich_Siegfried_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233f.", "author": "", "orig_id": 1407379}}, {"model": "metainfo.source", "pk": 5309, "fields": {"orig_filename": "Romilli_Bartolomeo-Carlo_1795_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234", "author": "", "orig_id": 1407380}}, {"model": "metainfo.source", "pk": 5310, "fields": {"orig_filename": "Ronacher_Anton_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235", "author": "", "orig_id": 1407383}}, {"model": "metainfo.source", "pk": 5311, "fields": {"orig_filename": "Ronai_Janos_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235", "author": "", "orig_id": 1407404}}, {"model": "metainfo.source", "pk": 5312, "fields": {"orig_filename": "Ronay-Lipto-Ujvar_Franz-X-Gustav_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236", "author": "", "orig_id": 1407385}}, {"model": "metainfo.source", "pk": 5313, "fields": {"orig_filename": "Ronay_Jacint-Janos_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235f.", "author": "", "orig_id": 1407384}}, {"model": "metainfo.source", "pk": 5314, "fields": {"orig_filename": "Rona_Samuel_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234", "author": "", "orig_id": 1407381}}, {"model": "metainfo.source", "pk": 5315, "fields": {"orig_filename": "Rona_Zsigmond_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234f.", "author": "", "orig_id": 1407382}}, {"model": "metainfo.source", "pk": 5316, "fields": {"orig_filename": "Roncali_Leone_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236", "author": "", "orig_id": 1407386}}, {"model": "metainfo.source", "pk": 5317, "fields": {"orig_filename": "Ronconi_Domenico_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236f.", "author": "", "orig_id": 1407387}}, {"model": "metainfo.source", "pk": 5318, "fields": {"orig_filename": "Ronconi_Giorgio_1810_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237", "author": "", "orig_id": 1407388}}, {"model": "metainfo.source", "pk": 5319, "fields": {"orig_filename": "Ronconi_Giovanni-Batt_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237", "author": "", "orig_id": 1407389}}, {"model": "metainfo.source", "pk": 5320, "fields": {"orig_filename": "Roncourt_Albert_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237f.", "author": "", "orig_id": 1407390}}, {"model": "metainfo.source", "pk": 5321, "fields": {"orig_filename": "Rondolini_Lorenzo_1752_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238", "author": "", "orig_id": 1407391}}, {"model": "metainfo.source", "pk": 5322, "fields": {"orig_filename": "Ronsperger_Benedikt_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238", "author": "", "orig_id": 1407392}}, {"model": "metainfo.source", "pk": 5323, "fields": {"orig_filename": "Ronzani_Domenico_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238f.", "author": "", "orig_id": 1407393}}, {"model": "metainfo.source", "pk": 5324, "fields": {"orig_filename": "Roose_Friedrich_1767_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 239f.", "author": "", "orig_id": 1407395}}, {"model": "metainfo.source", "pk": 5325, "fields": {"orig_filename": "Roosz_Peter_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407396}}, {"model": "metainfo.source", "pk": 5326, "fields": {"orig_filename": "Roos_Emil_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 239", "author": "", "orig_id": 1407394}}, {"model": "metainfo.source", "pk": 5327, "fields": {"orig_filename": "Roretz_Albrecht_1846_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407397}}, {"model": "metainfo.source", "pk": 5328, "fields": {"orig_filename": "Rosam_Vaclav_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241", "author": "", "orig_id": 1407400}}, {"model": "metainfo.source", "pk": 5329, "fields": {"orig_filename": "Rosanes_Jakob_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241", "author": "", "orig_id": 1407401}}, {"model": "metainfo.source", "pk": 5330, "fields": {"orig_filename": "Rosas_Anton_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241f.", "author": "", "orig_id": 1407402}}, {"model": "metainfo.source", "pk": 5331, "fields": {"orig_filename": "Rosa_Costantino_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240f.", "author": "", "orig_id": 1407399}}, {"model": "metainfo.source", "pk": 5332, "fields": {"orig_filename": "Rosche_Alfred_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 242", "author": "", "orig_id": 1407403}}, {"model": "metainfo.source", "pk": 5333, "fields": {"orig_filename": "Roschmann-Hoerburg_Anton-Leopold_1777_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 242f.", "author": "", "orig_id": 1407405}}, {"model": "metainfo.source", "pk": 5334, "fields": {"orig_filename": "Rosciszewski-Junosza_Adam_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 243", "author": "", "orig_id": 1407406}}, {"model": "metainfo.source", "pk": 5335, "fields": {"orig_filename": "Rosegger_Peter_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 245f.", "author": "", "orig_id": 1407411}}, {"model": "metainfo.source", "pk": 5336, "fields": {"orig_filename": "Rosegger_Rupert_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 246", "author": "", "orig_id": 1407412}}, {"model": "metainfo.source", "pk": 5337, "fields": {"orig_filename": "Righetti_Giovanni_1766_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 161f.", "author": "", "orig_id": 1407150}}, {"model": "metainfo.source", "pk": 5338, "fields": {"orig_filename": "Righetti_Giovanni_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162", "author": "", "orig_id": 1407151}}, {"model": "metainfo.source", "pk": 5339, "fields": {"orig_filename": "Rigler_Gustav_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162", "author": "", "orig_id": 1407152}}, {"model": "metainfo.source", "pk": 5340, "fields": {"orig_filename": "Rigler_Lorenz_1815_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162f.", "author": "", "orig_id": 1407153}}, {"model": "metainfo.source", "pk": 5341, "fields": {"orig_filename": "Rigler_Peter-Paul_1796_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 163", "author": "", "orig_id": 1407154}}, {"model": "metainfo.source", "pk": 5342, "fields": {"orig_filename": "Riha_Martin_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 163f.", "author": "", "orig_id": 1407155}}, {"model": "metainfo.source", "pk": 5343, "fields": {"orig_filename": "Rihovsky_Vojtech_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 164", "author": "", "orig_id": 1407156}}, {"model": "metainfo.source", "pk": 5344, "fields": {"orig_filename": "Rilke_Rainer-Maria_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 164ff.", "author": "", "orig_id": 1407157}}, {"model": "metainfo.source", "pk": 5345, "fields": {"orig_filename": "Rill_Josef_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166", "author": "", "orig_id": 1407158}}, {"model": "metainfo.source", "pk": 5346, "fields": {"orig_filename": "Rimboeck_Karl_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166", "author": "", "orig_id": 1407159}}, {"model": "metainfo.source", "pk": 5347, "fields": {"orig_filename": "Rimely_Karoly_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166f.", "author": "", "orig_id": 1407160}}, {"model": "metainfo.source", "pk": 5348, "fields": {"orig_filename": "Rimmer_Adalbert_1818_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407161}}, {"model": "metainfo.source", "pk": 5349, "fields": {"orig_filename": "Rinaldini_Anton_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407162}}, {"model": "metainfo.source", "pk": 5350, "fields": {"orig_filename": "Rinaldini_Teodoro_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407163}}, {"model": "metainfo.source", "pk": 5351, "fields": {"orig_filename": "Rincolini_Ernst-Karl_1785_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167f.", "author": "", "orig_id": 1407164}}, {"model": "metainfo.source", "pk": 5352, "fields": {"orig_filename": "Ringelblum_Emanuel_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 168", "author": "", "orig_id": 1407165}}, {"model": "metainfo.source", "pk": 5353, "fields": {"orig_filename": "Ringelsheim_Josef_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 168f.", "author": "", "orig_id": 1407166}}, {"model": "metainfo.source", "pk": 5354, "fields": {"orig_filename": "Ringhoffer_Emanuel_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169", "author": "", "orig_id": 1407167}}, {"model": "metainfo.source", "pk": 5355, "fields": {"orig_filename": "Ringhoffer_Franz_1817_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169", "author": "", "orig_id": 1407168}}, {"model": "metainfo.source", "pk": 5356, "fields": {"orig_filename": "Ringhoffer_Franz_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169f.", "author": "", "orig_id": 1407169}}, {"model": "metainfo.source", "pk": 5357, "fields": {"orig_filename": "Ringler_Florian_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170", "author": "", "orig_id": 1407170}}, {"model": "metainfo.source", "pk": 5358, "fields": {"orig_filename": "Ringler_Karl_1826_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170", "author": "", "orig_id": 1407171}}, {"model": "metainfo.source", "pk": 5359, "fields": {"orig_filename": "Rintelen_Anton_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 171", "author": "", "orig_id": 1407173}}, {"model": "metainfo.source", "pk": 5360, "fields": {"orig_filename": "Rintelen_Anton_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 171f.", "author": "", "orig_id": 1407174}}, {"model": "metainfo.source", "pk": 5361, "fields": {"orig_filename": "Rint_Johann_1814_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170f.", "author": "", "orig_id": 1407172}}, {"model": "metainfo.source", "pk": 5362, "fields": {"orig_filename": "Riotte_Philipp-Jakob_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 172", "author": "", "orig_id": 1407175}}, {"model": "metainfo.source", "pk": 5363, "fields": {"orig_filename": "Ripamonti_Riccardo_1849_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 172f.", "author": "", "orig_id": 1407176}}, {"model": "metainfo.source", "pk": 5364, "fields": {"orig_filename": "Rippel_Johann_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173", "author": "", "orig_id": 1407177}}, {"model": "metainfo.source", "pk": 5365, "fields": {"orig_filename": "Ripper_Julius_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173", "author": "", "orig_id": 1407178}}, {"model": "metainfo.source", "pk": 5366, "fields": {"orig_filename": "Ripper_Maximilian_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173f.", "author": "", "orig_id": 1407179}}, {"model": "metainfo.source", "pk": 5367, "fields": {"orig_filename": "Rippl-Ronai_Jozsef_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174", "author": "", "orig_id": 1407181}}, {"model": "metainfo.source", "pk": 5368, "fields": {"orig_filename": "Rippl_Eugen_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174", "author": "", "orig_id": 1407180}}, {"model": "metainfo.source", "pk": 5369, "fields": {"orig_filename": "Rismondo_Giovanni_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175", "author": "", "orig_id": 1407183}}, {"model": "metainfo.source", "pk": 5370, "fields": {"orig_filename": "Riss_Josef_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175", "author": "", "orig_id": 1407184}}, {"model": "metainfo.source", "pk": 5371, "fields": {"orig_filename": "Ristori_Adelaide_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175f.", "author": "", "orig_id": 1407185}}, {"model": "metainfo.source", "pk": 5372, "fields": {"orig_filename": "Ristow_Gustav_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176", "author": "", "orig_id": 1407186}}, {"model": "metainfo.source", "pk": 5373, "fields": {"orig_filename": "Ris_Jenny_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174f.", "author": "", "orig_id": 1407182}}, {"model": "metainfo.source", "pk": 5374, "fields": {"orig_filename": "Ritt-Jaufen_August_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176", "author": "", "orig_id": 1407187}}, {"model": "metainfo.source", "pk": 5375, "fields": {"orig_filename": "Ritter-Rittersberg_Johann_1780_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 178", "author": "", "orig_id": 1407468}}, {"model": "metainfo.source", "pk": 5376, "fields": {"orig_filename": "Ritter-Rittersberg_Ludwig_1809_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 178f.", "author": "", "orig_id": 1407469}}, {"model": "metainfo.source", "pk": 5377, "fields": {"orig_filename": "Ritter-Rittershayn_Gottfried_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179", "author": "", "orig_id": 1407470}}, {"model": "metainfo.source", "pk": 5378, "fields": {"orig_filename": "Ritter-Zahony_Eugen_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179", "author": "", "orig_id": 1407471}}, {"model": "metainfo.source", "pk": 5379, "fields": {"orig_filename": "Ritter-Zahony_Hektor_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179f.", "author": "", "orig_id": 1407472}}, {"model": "metainfo.source", "pk": 5380, "fields": {"orig_filename": "Rittershausen_Hermann_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407473}}, {"model": "metainfo.source", "pk": 5381, "fields": {"orig_filename": "Ritter_Albert_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176f.", "author": "", "orig_id": 1407188}}, {"model": "metainfo.source", "pk": 5382, "fields": {"orig_filename": "Ritter_Eduard_1809_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177", "author": "", "orig_id": 1407466}}, {"model": "metainfo.source", "pk": 5383, "fields": {"orig_filename": "Ritter_Franz_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177", "author": "", "orig_id": 1409577}}, {"model": "metainfo.source", "pk": 5384, "fields": {"orig_filename": "Ritter_Josef_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177f.", "author": "", "orig_id": 1407467}}, {"model": "metainfo.source", "pk": 5385, "fields": {"orig_filename": "Rittig_Ivan_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407474}}, {"model": "metainfo.source", "pk": 5386, "fields": {"orig_filename": "Rittig_Johann_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407475}}, {"model": "metainfo.source", "pk": 5387, "fields": {"orig_filename": "Rittinger_Peter_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180f.", "author": "", "orig_id": 1407476}}, {"model": "metainfo.source", "pk": 5388, "fields": {"orig_filename": "Rittmeyer_Giulia-Cecilia_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 181", "author": "", "orig_id": 1407477}}, {"model": "metainfo.source", "pk": 5389, "fields": {"orig_filename": "Rittner_Edward_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 181f.", "author": "", "orig_id": 1407478}}, {"model": "metainfo.source", "pk": 5390, "fields": {"orig_filename": "Rittner_Rudolf_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 182f.", "author": "", "orig_id": 1407479}}, {"model": "metainfo.source", "pk": 5391, "fields": {"orig_filename": "Rittner_Thaddaeus_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 183", "author": "", "orig_id": 1407480}}, {"model": "metainfo.source", "pk": 5392, "fields": {"orig_filename": "Ritzberger_Albert_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 183f.", "author": "", "orig_id": 1407481}}, {"model": "metainfo.source", "pk": 5393, "fields": {"orig_filename": "Ritzberger_Engelbert_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184", "author": "", "orig_id": 1407483}}, {"model": "metainfo.source", "pk": 5394, "fields": {"orig_filename": "Ritzoffy_Nikola_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184", "author": "", "orig_id": 1407482}}, {"model": "metainfo.source", "pk": 5395, "fields": {"orig_filename": "Rizner_Ludovit-Vladimir_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184f.", "author": "", "orig_id": 1407484}}, {"model": "metainfo.source", "pk": 5396, "fields": {"orig_filename": "Rizy_Theobald_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 185", "author": "", "orig_id": 1407485}}, {"model": "metainfo.source", "pk": 5397, "fields": {"orig_filename": "Rizzi_Lodovico_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1941331}}, {"model": "metainfo.source", "pk": 5398, "fields": {"orig_filename": "Rizzi_Luigi_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 185f.", "author": "", "orig_id": 1407486}}, {"model": "metainfo.source", "pk": 5399, "fields": {"orig_filename": "Rizzi_Vinzenz_1816_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 186", "author": "", "orig_id": 1407487}}, {"model": "metainfo.source", "pk": 5400, "fields": {"orig_filename": "Robert_Florent_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 186f.", "author": "", "orig_id": 1407488}}, {"model": "metainfo.source", "pk": 5401, "fields": {"orig_filename": "Robert_Julius_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 187", "author": "", "orig_id": 1407489}}, {"model": "metainfo.source", "pk": 5402, "fields": {"orig_filename": "Robert_Ludwig_1792_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 187f.", "author": "", "orig_id": 1407490}}, {"model": "metainfo.source", "pk": 5403, "fields": {"orig_filename": "Robert_Richard_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188", "author": "", "orig_id": 1407491}}, {"model": "metainfo.source", "pk": 5404, "fields": {"orig_filename": "Robic_Simon_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188", "author": "", "orig_id": 1407492}}, {"model": "metainfo.source", "pk": 5405, "fields": {"orig_filename": "Robinsohn_Isaak_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 189", "author": "", "orig_id": 1407494}}, {"model": "metainfo.source", "pk": 5406, "fields": {"orig_filename": "Robinson_Adolf_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 189", "author": "", "orig_id": 1407495}}, {"model": "metainfo.source", "pk": 5407, "fields": {"orig_filename": "Robins_Adolf_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188f.", "author": "", "orig_id": 1407493}}, {"model": "metainfo.source", "pk": 5408, "fields": {"orig_filename": "Robitschek_Kurt_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 190", "author": "", "orig_id": 1407497}}, {"model": "metainfo.source", "pk": 5409, "fields": {"orig_filename": "Robitschek_Robert_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191", "author": "", "orig_id": 1407498}}, {"model": "metainfo.source", "pk": 5410, "fields": {"orig_filename": "Robitsch_Matthias_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 190", "author": "", "orig_id": 1407496}}, {"model": "metainfo.source", "pk": 5411, "fields": {"orig_filename": "Rochata_Karl_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191", "author": "", "orig_id": 1407499}}, {"model": "metainfo.source", "pk": 5412, "fields": {"orig_filename": "Rochelt_Franz_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191f.", "author": "", "orig_id": 1407500}}, {"model": "metainfo.source", "pk": 5413, "fields": {"orig_filename": "Rochleder_Friedrich_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 192", "author": "", "orig_id": 1407501}}, {"model": "metainfo.source", "pk": 5414, "fields": {"orig_filename": "Rochlitzer_Ludwig_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 192", "author": "", "orig_id": 1407502}}, {"model": "metainfo.source", "pk": 5415, "fields": {"orig_filename": "Rochowanski_Emil_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193", "author": "", "orig_id": 1407503}}, {"model": "metainfo.source", "pk": 5416, "fields": {"orig_filename": "Rodakowski_Henryk_1823_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193f.", "author": "", "orig_id": 1407505}}, {"model": "metainfo.source", "pk": 5417, "fields": {"orig_filename": "Rodakowski_Josef_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194", "author": "", "orig_id": 1407506}}, {"model": "metainfo.source", "pk": 5418, "fields": {"orig_filename": "Rodakowski_Maximilian_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194", "author": "", "orig_id": 1407507}}, {"model": "metainfo.source", "pk": 5419, "fields": {"orig_filename": "Roda_Alexander_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193", "author": "", "orig_id": 1407504}}, {"model": "metainfo.source", "pk": 5420, "fields": {"orig_filename": "Rode_Ignaz_1819_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194f.", "author": "", "orig_id": 1407508}}, {"model": "metainfo.source", "pk": 5421, "fields": {"orig_filename": "Rode_Leon_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195", "author": "", "orig_id": 1407509}}, {"model": "metainfo.source", "pk": 5422, "fields": {"orig_filename": "Rode_Walther_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195", "author": "", "orig_id": 1407510}}, {"model": "metainfo.source", "pk": 5423, "fields": {"orig_filename": "Rodich_Gabriel_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195f.", "author": "", "orig_id": 1407511}}, {"model": "metainfo.source", "pk": 5424, "fields": {"orig_filename": "Rodler_Adolf_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 196", "author": "", "orig_id": 1407512}}, {"model": "metainfo.source", "pk": 5425, "fields": {"orig_filename": "Rodler_Alfred_1861_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 196f.", "author": "", "orig_id": 1407339}}, {"model": "metainfo.source", "pk": 5426, "fields": {"orig_filename": "Rodler_Erich_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197", "author": "", "orig_id": 1407340}}, {"model": "metainfo.source", "pk": 5427, "fields": {"orig_filename": "Roebbeling_Hermann_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197f.", "author": "", "orig_id": 1407342}}, {"model": "metainfo.source", "pk": 5428, "fields": {"orig_filename": "Roebl_Klemens_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 198", "author": "", "orig_id": 1407343}}, {"model": "metainfo.source", "pk": 5429, "fields": {"orig_filename": "Roeckel_August_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 199", "author": "", "orig_id": 1407345}}, {"model": "metainfo.source", "pk": 5430, "fields": {"orig_filename": "Roeck_Istvan_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 198f.", "author": "", "orig_id": 1407344}}, {"model": "metainfo.source", "pk": 5431, "fields": {"orig_filename": "Roeder_Gustav_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 199f.", "author": "", "orig_id": 1407346}}, {"model": "metainfo.source", "pk": 5432, "fields": {"orig_filename": "Roeggl_Alois_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 200", "author": "", "orig_id": 1407347}}, {"model": "metainfo.source", "pk": 5433, "fields": {"orig_filename": "Roeggl_Josef_1781_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 200f.", "author": "", "orig_id": 1407348}}, {"model": "metainfo.source", "pk": 5434, "fields": {"orig_filename": "Roehlich_Josef_1836_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407349}}, {"model": "metainfo.source", "pk": 5435, "fields": {"orig_filename": "Roehm_Ernst-Friedrich_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407350}}, {"model": "metainfo.source", "pk": 5436, "fields": {"orig_filename": "Roell_Anton_1832_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407351}}, {"model": "metainfo.source", "pk": 5437, "fields": {"orig_filename": "Roell_Moritz-Friedrich_1818_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201f.", "author": "", "orig_id": 1407352}}, {"model": "metainfo.source", "pk": 5438, "fields": {"orig_filename": "Roell_Viktor_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202", "author": "", "orig_id": 1407353}}, {"model": "metainfo.source", "pk": 5439, "fields": {"orig_filename": "Roemer_Julius-Paul_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202", "author": "", "orig_id": 1407354}}, {"model": "metainfo.source", "pk": 5440, "fields": {"orig_filename": "Richarz_Stefan_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407243}}, {"model": "metainfo.source", "pk": 5441, "fields": {"orig_filename": "Richter-Wittbach_Gustav_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131f.", "author": "", "orig_id": 1407272}}, {"model": "metainfo.source", "pk": 5442, "fields": {"orig_filename": "Richtera_Leopold_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132", "author": "", "orig_id": 1407273}}, {"model": "metainfo.source", "pk": 5443, "fields": {"orig_filename": "Richter_Aladar_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407244}}, {"model": "metainfo.source", "pk": 5444, "fields": {"orig_filename": "Richter_Albert_1843_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407245}}, {"model": "metainfo.source", "pk": 5445, "fields": {"orig_filename": "Richter_Alexander_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120f.", "author": "", "orig_id": 1407246}}, {"model": "metainfo.source", "pk": 5446, "fields": {"orig_filename": "Richter_Anton-Josef_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121f.", "author": "", "orig_id": 1407249}}, {"model": "metainfo.source", "pk": 5447, "fields": {"orig_filename": "Richter_Anton_1805_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121", "author": "", "orig_id": 1407247}}, {"model": "metainfo.source", "pk": 5448, "fields": {"orig_filename": "Richter_Anton_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121", "author": "", "orig_id": 1407248}}, {"model": "metainfo.source", "pk": 5449, "fields": {"orig_filename": "Richter_Benedikt_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 122", "author": "", "orig_id": 1407250}}, {"model": "metainfo.source", "pk": 5450, "fields": {"orig_filename": "Richter_Eduard_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 122f.", "author": "", "orig_id": 1407251}}, {"model": "metainfo.source", "pk": 5451, "fields": {"orig_filename": "Richter_Elise_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 123f.", "author": "", "orig_id": 1407252}}, {"model": "metainfo.source", "pk": 5452, "fields": {"orig_filename": "Richter_Franz-X-Johann_1783_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 125", "author": "", "orig_id": 1407256}}, {"model": "metainfo.source", "pk": 5453, "fields": {"orig_filename": "Richter_Franz_1774_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124", "author": "", "orig_id": 1407253}}, {"model": "metainfo.source", "pk": 5454, "fields": {"orig_filename": "Richter_Franz_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124", "author": "", "orig_id": 1407254}}, {"model": "metainfo.source", "pk": 5455, "fields": {"orig_filename": "Richter_Franz_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124f.", "author": "", "orig_id": 1407255}}, {"model": "metainfo.source", "pk": 5456, "fields": {"orig_filename": "Richter_Franz_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1455961}}, {"model": "metainfo.source", "pk": 5457, "fields": {"orig_filename": "Richter_Hans_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 125f.", "author": "", "orig_id": 1407257}}, {"model": "metainfo.source", "pk": 5458, "fields": {"orig_filename": "Richter_Heinrich-Hermann_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 126f.", "author": "", "orig_id": 1407258}}, {"model": "metainfo.source", "pk": 5459, "fields": {"orig_filename": "Richter_Heinrich-Moritz_1841_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127", "author": "", "orig_id": 1407259}}, {"model": "metainfo.source", "pk": 5460, "fields": {"orig_filename": "Richter_Helene_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127", "author": "", "orig_id": 1407260}}, {"model": "metainfo.source", "pk": 5461, "fields": {"orig_filename": "Richter_Johann-Anton_1782_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127f.", "author": "", "orig_id": 1407261}}, {"model": "metainfo.source", "pk": 5462, "fields": {"orig_filename": "Richter_Johann-Julius_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 128f.", "author": "", "orig_id": 1407262}}, {"model": "metainfo.source", "pk": 5463, "fields": {"orig_filename": "Richter_Josef-Karl_1880_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407263}}, {"model": "metainfo.source", "pk": 5464, "fields": {"orig_filename": "Richter_Karl-Max_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129f.", "author": "", "orig_id": 1407266}}, {"model": "metainfo.source", "pk": 5465, "fields": {"orig_filename": "Richter_Karl-Nikolaus_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130", "author": "", "orig_id": 1407267}}, {"model": "metainfo.source", "pk": 5466, "fields": {"orig_filename": "Richter_Karl_1855_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407264}}, {"model": "metainfo.source", "pk": 5467, "fields": {"orig_filename": "Richter_Karl_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407265}}, {"model": "metainfo.source", "pk": 5468, "fields": {"orig_filename": "Richter_Paul_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130", "author": "", "orig_id": 1407268}}, {"model": "metainfo.source", "pk": 5469, "fields": {"orig_filename": "Richter_Pius_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130f.", "author": "", "orig_id": 1407269}}, {"model": "metainfo.source", "pk": 5470, "fields": {"orig_filename": "Richter_Richard_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131", "author": "", "orig_id": 1407270}}, {"model": "metainfo.source", "pk": 5471, "fields": {"orig_filename": "Richter_Wilhelm_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131", "author": "", "orig_id": 1407271}}, {"model": "metainfo.source", "pk": 5472, "fields": {"orig_filename": "Ricker_Anselm_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 133", "author": "", "orig_id": 1407277}}, {"model": "metainfo.source", "pk": 5473, "fields": {"orig_filename": "Rick_Johann-Kaspar_1808_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132", "author": "", "orig_id": 1407274}}, {"model": "metainfo.source", "pk": 5474, "fields": {"orig_filename": "Rick_Johannes_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132f.", "author": "", "orig_id": 1407275}}, {"model": "metainfo.source", "pk": 5475, "fields": {"orig_filename": "Rick_Karl_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 133", "author": "", "orig_id": 1407276}}, {"model": "metainfo.source", "pk": 5476, "fields": {"orig_filename": "Ricordi_Giovanni_1785_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 134", "author": "", "orig_id": 1407278}}, {"model": "metainfo.source", "pk": 5477, "fields": {"orig_filename": "Ridler_Johann-Wilhelm_1772_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 134f.", "author": "", "orig_id": 1407279}}, {"model": "metainfo.source", "pk": 5478, "fields": {"orig_filename": "Riedel_Andreas_1748_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 135f.", "author": "", "orig_id": 1407281}}, {"model": "metainfo.source", "pk": 5479, "fields": {"orig_filename": "Riedel_Josef-Anton_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137", "author": "", "orig_id": 1407284}}, {"model": "metainfo.source", "pk": 5480, "fields": {"orig_filename": "Riedel_Josef-Gottfried_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137f.", "author": "", "orig_id": 1407285}}, {"model": "metainfo.source", "pk": 5481, "fields": {"orig_filename": "Riedel_Josef_1816_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 136f.", "author": "", "orig_id": 1407282}}, {"model": "metainfo.source", "pk": 5482, "fields": {"orig_filename": "Riedel_Josef_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137", "author": "", "orig_id": 1407283}}, {"model": "metainfo.source", "pk": 5483, "fields": {"orig_filename": "Riedel_Wilhelm_1832_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 138", "author": "", "orig_id": 1407286}}, {"model": "metainfo.source", "pk": 5484, "fields": {"orig_filename": "Riederer-Dachsberg_Gustav_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407297}}, {"model": "metainfo.source", "pk": 5485, "fields": {"orig_filename": "Riederer_Ernst_1868_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 140f.", "author": "", "orig_id": 1407296}}, {"model": "metainfo.source", "pk": 5486, "fields": {"orig_filename": "Rieder_Alois_1836_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 138f.", "author": "", "orig_id": 1407287}}, {"model": "metainfo.source", "pk": 5487, "fields": {"orig_filename": "Rieder_Ambros-Matthias_1771_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407288}}, {"model": "metainfo.source", "pk": 5488, "fields": {"orig_filename": "Rieder_Franz_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407289}}, {"model": "metainfo.source", "pk": 5489, "fields": {"orig_filename": "Rieder_Georg_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407293}}, {"model": "metainfo.source", "pk": 5490, "fields": {"orig_filename": "Rieder_Ignaz_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139f.", "author": "", "orig_id": 1407294}}, {"model": "metainfo.source", "pk": 5491, "fields": {"orig_filename": "Rieder_Wilhelm-August_1796_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 140", "author": "", "orig_id": 1407295}}, {"model": "metainfo.source", "pk": 5492, "fields": {"orig_filename": "Riedinger_Anizet_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407298}}, {"model": "metainfo.source", "pk": 5493, "fields": {"orig_filename": "Riedinger_Hubert_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407299}}, {"model": "metainfo.source", "pk": 5494, "fields": {"orig_filename": "Riedl-Leuenstern_Josef_1786_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144f.", "author": "", "orig_id": 1407307}}, {"model": "metainfo.source", "pk": 5495, "fields": {"orig_filename": "Riedl-Riedenstein_Johann-Bapt_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 145", "author": "", "orig_id": 1407308}}, {"model": "metainfo.source", "pk": 5496, "fields": {"orig_filename": "Riedler_Alois_1850_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 145f.", "author": "", "orig_id": 1407309}}, {"model": "metainfo.source", "pk": 5497, "fields": {"orig_filename": "Riedler_Ferdinand_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407310}}, {"model": "metainfo.source", "pk": 5498, "fields": {"orig_filename": "Riedl_Franz-X_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142", "author": "", "orig_id": 1407300}}, {"model": "metainfo.source", "pk": 5499, "fields": {"orig_filename": "Riedl_Frigyes_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142", "author": "", "orig_id": 1407301}}, {"model": "metainfo.source", "pk": 5500, "fields": {"orig_filename": "Riedl_Hubert_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142f.", "author": "", "orig_id": 1407302}}, {"model": "metainfo.source", "pk": 5501, "fields": {"orig_filename": "Riedl_Johann_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 143", "author": "", "orig_id": 1407303}}, {"model": "metainfo.source", "pk": 5502, "fields": {"orig_filename": "Riedl_Richard_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 143f.", "author": "", "orig_id": 1407304}}, {"model": "metainfo.source", "pk": 5503, "fields": {"orig_filename": "Riedl_Robert_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144", "author": "", "orig_id": 1407305}}, {"model": "metainfo.source", "pk": 5504, "fields": {"orig_filename": "Riedl_Szende_1831_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144", "author": "", "orig_id": 1407306}}, {"model": "metainfo.source", "pk": 5505, "fields": {"orig_filename": "Riedmiller_Bernhard_1757_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407311}}, {"model": "metainfo.source", "pk": 5506, "fields": {"orig_filename": "Rief_Johann-Georg_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407312}}, {"model": "metainfo.source", "pk": 5507, "fields": {"orig_filename": "Rief_Josef-Cal_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146f.", "author": "", "orig_id": 1407313}}, {"model": "metainfo.source", "pk": 5508, "fields": {"orig_filename": "Rieger_August_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147", "author": "", "orig_id": 1407314}}, {"model": "metainfo.source", "pk": 5509, "fields": {"orig_filename": "Rieger_Bohuslav_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147", "author": "", "orig_id": 1407315}}, {"model": "metainfo.source", "pk": 5510, "fields": {"orig_filename": "Rieger_Eduard_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147f.", "author": "", "orig_id": 1407316}}, {"model": "metainfo.source", "pk": 5511, "fields": {"orig_filename": "Rieger_Erwin_1889_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 148", "author": "", "orig_id": 1407317}}, {"model": "metainfo.source", "pk": 5512, "fields": {"orig_filename": "Rieger_Frantisek-Ladislav_1818_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 148ff.", "author": "", "orig_id": 1407318}}, {"model": "metainfo.source", "pk": 5513, "fields": {"orig_filename": "Rieger_Franz_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150", "author": "", "orig_id": 1407319}}, {"model": "metainfo.source", "pk": 5514, "fields": {"orig_filename": "Rieger_Gottfried_1764_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150", "author": "", "orig_id": 1407320}}, {"model": "metainfo.source", "pk": 5515, "fields": {"orig_filename": "Rieger_Josef_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150f.", "author": "", "orig_id": 1407321}}, {"model": "metainfo.source", "pk": 5516, "fields": {"orig_filename": "Rieger_Josip_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151", "author": "", "orig_id": 1407322}}, {"model": "metainfo.source", "pk": 5517, "fields": {"orig_filename": "Rieger_Otto_1880_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151", "author": "", "orig_id": 1407323}}, {"model": "metainfo.source", "pk": 5518, "fields": {"orig_filename": "Riegler_Alois_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407327}}, {"model": "metainfo.source", "pk": 5519, "fields": {"orig_filename": "Riegler_Ferdinand_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407328}}, {"model": "metainfo.source", "pk": 5520, "fields": {"orig_filename": "Riegler_Gideon_1880_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407329}}, {"model": "metainfo.source", "pk": 5521, "fields": {"orig_filename": "Riegl_Alois_1858_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 152", "author": "", "orig_id": 1407325}}, {"model": "metainfo.source", "pk": 5522, "fields": {"orig_filename": "Riegl_Anton_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 152f.", "author": "", "orig_id": 1407326}}, {"model": "metainfo.source", "pk": 5523, "fields": {"orig_filename": "Riehl_Alois-Adolf_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153f.", "author": "", "orig_id": 1407330}}, {"model": "metainfo.source", "pk": 5524, "fields": {"orig_filename": "Riehl_Anton_1820_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 154", "author": "", "orig_id": 1407331}}, {"model": "metainfo.source", "pk": 5525, "fields": {"orig_filename": "Riehl_Anton_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155", "author": "", "orig_id": 1407332}}, {"model": "metainfo.source", "pk": 5526, "fields": {"orig_filename": "Riehl_Gustav_1855_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155", "author": "", "orig_id": 1407333}}, {"model": "metainfo.source", "pk": 5527, "fields": {"orig_filename": "Riehl_Josef_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155f.", "author": "", "orig_id": 1407334}}, {"model": "metainfo.source", "pk": 5528, "fields": {"orig_filename": "Riener_Martin_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156", "author": "", "orig_id": 1407335}}, {"model": "metainfo.source", "pk": 5529, "fields": {"orig_filename": "Riepl_Franz-X-Laurenz_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156f.", "author": "", "orig_id": 1407337}}, {"model": "metainfo.source", "pk": 5530, "fields": {"orig_filename": "Riesel_Mijat_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 157", "author": "", "orig_id": 1407338}}, {"model": "metainfo.source", "pk": 5531, "fields": {"orig_filename": "Riesenfeld_Hugo_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 157f.", "author": "", "orig_id": 1407140}}, {"model": "metainfo.source", "pk": 5532, "fields": {"orig_filename": "Riesenhuber_Martin_1876_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158", "author": "", "orig_id": 1407141}}, {"model": "metainfo.source", "pk": 5533, "fields": {"orig_filename": "Rieser_Michael_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158", "author": "", "orig_id": 1407142}}, {"model": "metainfo.source", "pk": 5534, "fields": {"orig_filename": "Rieszner_Valerian_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158f.", "author": "", "orig_id": 1407143}}, {"model": "metainfo.source", "pk": 5535, "fields": {"orig_filename": "Rietsch_Heinrich_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 159", "author": "", "orig_id": 1407144}}, {"model": "metainfo.source", "pk": 5536, "fields": {"orig_filename": "Rietti_Arturo_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 159f.", "author": "", "orig_id": 1407145}}, {"model": "metainfo.source", "pk": 5537, "fields": {"orig_filename": "Riewel_Hermann_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160", "author": "", "orig_id": 1407146}}, {"model": "metainfo.source", "pk": 5538, "fields": {"orig_filename": "Riezlmayr_Georg_1784_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160", "author": "", "orig_id": 1407147}}, {"model": "metainfo.source", "pk": 5539, "fields": {"orig_filename": "Rie_Therese_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 135", "author": "", "orig_id": 1407280}}, {"model": "metainfo.source", "pk": 5540, "fields": {"orig_filename": "Rigele_Alois_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160f.", "author": "", "orig_id": 1407148}}, {"model": "metainfo.source", "pk": 5541, "fields": {"orig_filename": "Rigele_Friedrich_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 161", "author": "", "orig_id": 1407149}}, {"model": "metainfo.source", "pk": 5542, "fields": {"orig_filename": "Renk_Anton_1871_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 78f.", "author": "", "orig_id": 1406990}}, {"model": "metainfo.source", "pk": 5543, "fields": {"orig_filename": "Renner_Franz_1866_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79f.", "author": "", "orig_id": 1406993}}, {"model": "metainfo.source", "pk": 5544, "fields": {"orig_filename": "Renner_Giuseppe-Federico_1784_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 80", "author": "", "orig_id": 1406994}}, {"model": "metainfo.source", "pk": 5545, "fields": {"orig_filename": "Renner_Karl_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 80f.", "author": "", "orig_id": 1406995}}, {"model": "metainfo.source", "pk": 5546, "fields": {"orig_filename": "Renner_Maria-Johanna_1775_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 81f.", "author": "", "orig_id": 1406996}}, {"model": "metainfo.source", "pk": 5547, "fields": {"orig_filename": "Renner_Viktor_1846_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 82", "author": "", "orig_id": 1406997}}, {"model": "metainfo.source", "pk": 5548, "fields": {"orig_filename": "Renn_Franz-X_1784_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79", "author": "", "orig_id": 1406991}}, {"model": "metainfo.source", "pk": 5549, "fields": {"orig_filename": "Renn_Paul_1806_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79", "author": "", "orig_id": 1406992}}, {"model": "metainfo.source", "pk": 5550, "fields": {"orig_filename": "Renz_Ernst-Jakob_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 82f.", "author": "", "orig_id": 1406998}}, {"model": "metainfo.source", "pk": 5551, "fields": {"orig_filename": "Repic_Alojzij_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 83", "author": "", "orig_id": 1406999}}, {"model": "metainfo.source", "pk": 5552, "fields": {"orig_filename": "Repta_Vasile-Vladimir_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 83f.", "author": "", "orig_id": 1407000}}, {"model": "metainfo.source", "pk": 5553, "fields": {"orig_filename": "Reschauer_Anton_1832_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85", "author": "", "orig_id": 1407004}}, {"model": "metainfo.source", "pk": 5554, "fields": {"orig_filename": "Reschauer_Heinrich_1838_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85", "author": "", "orig_id": 1407005}}, {"model": "metainfo.source", "pk": 5555, "fields": {"orig_filename": "Reschner_Martin_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85f.", "author": "", "orig_id": 1407006}}, {"model": "metainfo.source", "pk": 5556, "fields": {"orig_filename": "Resch_Josef_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84f.", "author": "", "orig_id": 1407003}}, {"model": "metainfo.source", "pk": 5557, "fields": {"orig_filename": "Resel_Johann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 86", "author": "", "orig_id": 1407007}}, {"model": "metainfo.source", "pk": 5558, "fields": {"orig_filename": "Resetar_Milan_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 86f.", "author": "", "orig_id": 1407008}}, {"model": "metainfo.source", "pk": 5559, "fields": {"orig_filename": "Resetka_Michal_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87", "author": "", "orig_id": 1407009}}, {"model": "metainfo.source", "pk": 5560, "fields": {"orig_filename": "Reslhuber_Augustin_1808_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87", "author": "", "orig_id": 1407010}}, {"model": "metainfo.source", "pk": 5561, "fields": {"orig_filename": "Resner_Rudolf_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87f.", "author": "", "orig_id": 1407011}}, {"model": "metainfo.source", "pk": 5562, "fields": {"orig_filename": "Ress-Blazkova_Vekoslava-Aloisia_1841_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88", "author": "", "orig_id": 1407012}}, {"model": "metainfo.source", "pk": 5563, "fields": {"orig_filename": "Ressel_Anton-Franz_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88", "author": "", "orig_id": 1407013}}, {"model": "metainfo.source", "pk": 5564, "fields": {"orig_filename": "Ressel_Gustav-Andreas_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88f.", "author": "", "orig_id": 1407014}}, {"model": "metainfo.source", "pk": 5565, "fields": {"orig_filename": "Ressel_Josef_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 89f.", "author": "", "orig_id": 1407015}}, {"model": "metainfo.source", "pk": 5566, "fields": {"orig_filename": "Ressel_Wilhelm_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 90", "author": "", "orig_id": 1407016}}, {"model": "metainfo.source", "pk": 5567, "fields": {"orig_filename": "Ressig_Alfred_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 90f.", "author": "", "orig_id": 1407017}}, {"model": "metainfo.source", "pk": 5568, "fields": {"orig_filename": "Ressmann_Costantino_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91", "author": "", "orig_id": 1407018}}, {"model": "metainfo.source", "pk": 5569, "fields": {"orig_filename": "Resti-Ferrari_Johann-Bapt_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91", "author": "", "orig_id": 1407019}}, {"model": "metainfo.source", "pk": 5570, "fields": {"orig_filename": "Res_Alojzij_1893_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84", "author": "", "orig_id": 1407001}}, {"model": "metainfo.source", "pk": 5571, "fields": {"orig_filename": "Rethi_Leopold_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91f.", "author": "", "orig_id": 1407020}}, {"model": "metainfo.source", "pk": 5572, "fields": {"orig_filename": "Rethy_Laszlo_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92", "author": "", "orig_id": 1407021}}, {"model": "metainfo.source", "pk": 5573, "fields": {"orig_filename": "Rethy_Mor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92", "author": "", "orig_id": 1407022}}, {"model": "metainfo.source", "pk": 5574, "fields": {"orig_filename": "Reti_Richard_1889_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92f.", "author": "", "orig_id": 1407023}}, {"model": "metainfo.source", "pk": 5575, "fields": {"orig_filename": "Rettensteiner_Werigand_1751_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93", "author": "", "orig_id": 1407024}}, {"model": "metainfo.source", "pk": 5576, "fields": {"orig_filename": "Rettich-Pirk_Sarolta_1863_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 94", "author": "", "orig_id": 1407027}}, {"model": "metainfo.source", "pk": 5577, "fields": {"orig_filename": "Rettich_Henriette_1813_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93", "author": "", "orig_id": 1407025}}, {"model": "metainfo.source", "pk": 5578, "fields": {"orig_filename": "Rettich_Julie_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93f.", "author": "", "orig_id": 1407026}}, {"model": "metainfo.source", "pk": 5579, "fields": {"orig_filename": "Rettigova_Magdalena-Dobromila_1785_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 95", "author": "", "orig_id": 1407029}}, {"model": "metainfo.source", "pk": 5580, "fields": {"orig_filename": "Rettig_Jan-Alois-Sudiprav_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 94", "author": "", "orig_id": 1407028}}, {"model": "metainfo.source", "pk": 5581, "fields": {"orig_filename": "Retzer_Josef-Friedrich_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 95f.", "author": "", "orig_id": 1407030}}, {"model": "metainfo.source", "pk": 5582, "fields": {"orig_filename": "Reuling_Wilhelm-Ludwig_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 96", "author": "", "orig_id": 1407031}}, {"model": "metainfo.source", "pk": 5583, "fields": {"orig_filename": "Reumann_Jakob_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 96", "author": "", "orig_id": 1407032}}, {"model": "metainfo.source", "pk": 5584, "fields": {"orig_filename": "Reuss-Belce_Luise_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98f.", "author": "", "orig_id": 1407037}}, {"model": "metainfo.source", "pk": 5585, "fields": {"orig_filename": "Reuss_August-Emanuel_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 97", "author": "", "orig_id": 1407033}}, {"model": "metainfo.source", "pk": 5586, "fields": {"orig_filename": "Reuss_August-Leopold_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 97", "author": "", "orig_id": 1407034}}, {"model": "metainfo.source", "pk": 5587, "fields": {"orig_filename": "Reuss_Gustav_1818_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1407035}}, {"model": "metainfo.source", "pk": 5588, "fields": {"orig_filename": "Reuss_Leopold_1775_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1407036}}, {"model": "metainfo.source", "pk": 5589, "fields": {"orig_filename": "Reuss_Leo_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1465246}}, {"model": "metainfo.source", "pk": 5590, "fields": {"orig_filename": "Reuss_Samuel_1783_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1409576}}, {"model": "metainfo.source", "pk": 5591, "fields": {"orig_filename": "Reuter_Jakob_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99", "author": "", "orig_id": 1407038}}, {"model": "metainfo.source", "pk": 5592, "fields": {"orig_filename": "Reutter-Vallone_Arthur_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99f.", "author": "", "orig_id": 1407190}}, {"model": "metainfo.source", "pk": 5593, "fields": {"orig_filename": "Reutter_Johannes_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99", "author": "", "orig_id": 1407189}}, {"model": "metainfo.source", "pk": 5594, "fields": {"orig_filename": "Revai_Mor-Janos_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100", "author": "", "orig_id": 1407191}}, {"model": "metainfo.source", "pk": 5595, "fields": {"orig_filename": "Revere_Giuseppe_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100", "author": "", "orig_id": 1407192}}, {"model": "metainfo.source", "pk": 5596, "fields": {"orig_filename": "Revesz_Imre_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 101f.", "author": "", "orig_id": 1407194}}, {"model": "metainfo.source", "pk": 5597, "fields": {"orig_filename": "Revesz_Kalman_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102", "author": "", "orig_id": 1407195}}, {"model": "metainfo.source", "pk": 5598, "fields": {"orig_filename": "Reviczky_Gyula_1855_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102", "author": "", "orig_id": 1407196}}, {"model": "metainfo.source", "pk": 5599, "fields": {"orig_filename": "Revoltella_Pasquale_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102f.", "author": "", "orig_id": 1407197}}, {"model": "metainfo.source", "pk": 5600, "fields": {"orig_filename": "Revy_Karl-Julius-Heinrich_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103", "author": "", "orig_id": 1407198}}, {"model": "metainfo.source", "pk": 5601, "fields": {"orig_filename": "Rewakowicz_Henryk_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103", "author": "", "orig_id": 1407199}}, {"model": "metainfo.source", "pk": 5602, "fields": {"orig_filename": "Reyberger_Anton_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104", "author": "", "orig_id": 1407202}}, {"model": "metainfo.source", "pk": 5603, "fields": {"orig_filename": "Reyer-Castagna_Costantino_1828_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 106f.", "author": "", "orig_id": 1407207}}, {"model": "metainfo.source", "pk": 5604, "fields": {"orig_filename": "Reyer_Carlo-Ferdinando_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104", "author": "", "orig_id": 1407203}}, {"model": "metainfo.source", "pk": 5605, "fields": {"orig_filename": "Reyer_Eduard_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104f.", "author": "", "orig_id": 1407204}}, {"model": "metainfo.source", "pk": 5606, "fields": {"orig_filename": "Reyer_Francesco-Taddeo_1760_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 105f.", "author": "", "orig_id": 1407205}}, {"model": "metainfo.source", "pk": 5607, "fields": {"orig_filename": "Reyer_Konstantin-August_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 106", "author": "", "orig_id": 1407206}}, {"model": "metainfo.source", "pk": 5608, "fields": {"orig_filename": "Reyl-Hanisch-Greifenthal_Herbert_1898_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107", "author": "", "orig_id": 1407208}}, {"model": "metainfo.source", "pk": 5609, "fields": {"orig_filename": "Reymond_Moritz_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107", "author": "", "orig_id": 1407209}}, {"model": "metainfo.source", "pk": 5610, "fields": {"orig_filename": "Rey_Mikolaj_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103f.", "author": "", "orig_id": 1407201}}, {"model": "metainfo.source", "pk": 5611, "fields": {"orig_filename": "Rezac_Frantisek-Josef_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107f.", "author": "", "orig_id": 1407210}}, {"model": "metainfo.source", "pk": 5612, "fields": {"orig_filename": "Rezbanyay_Jozsef_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 108", "author": "", "orig_id": 1407211}}, {"model": "metainfo.source", "pk": 5613, "fields": {"orig_filename": "Rezek_Antonin_1853_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 108f.", "author": "", "orig_id": 1407212}}, {"model": "metainfo.source", "pk": 5614, "fields": {"orig_filename": "Rezek_Franz_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 109", "author": "", "orig_id": 1407213}}, {"model": "metainfo.source", "pk": 5615, "fields": {"orig_filename": "Reznicek_Emil-Josef-Nikolaus_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 109f.", "author": "", "orig_id": 1407215}}, {"model": "metainfo.source", "pk": 5616, "fields": {"orig_filename": "Reznicek_Ferdinand_1868_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 110", "author": "", "orig_id": 1407216}}, {"model": "metainfo.source", "pk": 5617, "fields": {"orig_filename": "Reznicek_Josef-Jindrich_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 110f.", "author": "", "orig_id": 1407217}}, {"model": "metainfo.source", "pk": 5618, "fields": {"orig_filename": "Reznicek_Josef-Urban_1851_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111", "author": "", "orig_id": 1407218}}, {"model": "metainfo.source", "pk": 5619, "fields": {"orig_filename": "Reznicek_Vaclav_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111", "author": "", "orig_id": 1407219}}, {"model": "metainfo.source", "pk": 5620, "fields": {"orig_filename": "Rhamm_Karl_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111f.", "author": "", "orig_id": 1407220}}, {"model": "metainfo.source", "pk": 5621, "fields": {"orig_filename": "Rheden_Josef_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 112", "author": "", "orig_id": 1407221}}, {"model": "metainfo.source", "pk": 5622, "fields": {"orig_filename": "Rheinhardt_Emil-Alfons_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 112f.", "author": "", "orig_id": 1407222}}, {"model": "metainfo.source", "pk": 5623, "fields": {"orig_filename": "Rhemen-Barensfeld_Adolf_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 113", "author": "", "orig_id": 1407223}}, {"model": "metainfo.source", "pk": 5624, "fields": {"orig_filename": "Rhodokanakis_Nikolaus_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 113f.", "author": "", "orig_id": 1407224}}, {"model": "metainfo.source", "pk": 5625, "fields": {"orig_filename": "Rhomberg_Adolf_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407225}}, {"model": "metainfo.source", "pk": 5626, "fields": {"orig_filename": "Rhomberg_Franz-Martin_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407226}}, {"model": "metainfo.source", "pk": 5627, "fields": {"orig_filename": "Rhomberg_Hanno_1819_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407227}}, {"model": "metainfo.source", "pk": 5628, "fields": {"orig_filename": "Rhomberg_Johann-Josef_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114f.", "author": "", "orig_id": 1407228}}, {"model": "metainfo.source", "pk": 5629, "fields": {"orig_filename": "Rhomberg_Josef-Anton_1775_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407229}}, {"model": "metainfo.source", "pk": 5630, "fields": {"orig_filename": "Rhomberg_Josef-Anton_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407230}}, {"model": "metainfo.source", "pk": 5631, "fields": {"orig_filename": "Rhomberg_Julius_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407231}}, {"model": "metainfo.source", "pk": 5632, "fields": {"orig_filename": "Rhomberg_Lorenz_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407232}}, {"model": "metainfo.source", "pk": 5633, "fields": {"orig_filename": "Rhomberg_Wilhelm_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407233}}, {"model": "metainfo.source", "pk": 5634, "fields": {"orig_filename": "Ribarz_Rudolf_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407234}}, {"model": "metainfo.source", "pk": 5635, "fields": {"orig_filename": "Riboldi_Agostino-Gaetano_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116f.", "author": "", "orig_id": 1407235}}, {"model": "metainfo.source", "pk": 5636, "fields": {"orig_filename": "Riccabona-Reichenfels_Benedikt_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 117", "author": "", "orig_id": 1407236}}, {"model": "metainfo.source", "pk": 5637, "fields": {"orig_filename": "Riccabona-Reichenfels_Felix-Adam_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 117f.", "author": "", "orig_id": 1407237}}, {"model": "metainfo.source", "pk": 5638, "fields": {"orig_filename": "Riccabona-Reichenfels_Julius_1835_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118", "author": "", "orig_id": 1407238}}, {"model": "metainfo.source", "pk": 5639, "fields": {"orig_filename": "Ricci-Montecorona_Vittore_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 119", "author": "", "orig_id": 1407241}}, {"model": "metainfo.source", "pk": 5640, "fields": {"orig_filename": "Ricci_Federico_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118", "author": "", "orig_id": 1407239}}, {"model": "metainfo.source", "pk": 5641, "fields": {"orig_filename": "Ricci_Luigi_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118f.", "author": "", "orig_id": 1407240}}, {"model": "metainfo.source", "pk": 5642, "fields": {"orig_filename": "Richard_Frieda_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 119f.", "author": "", "orig_id": 1407242}}, {"model": "metainfo.source", "pk": 5643, "fields": {"orig_filename": "Reinelt_Carlo_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 41f.", "author": "", "orig_id": 1407107}}, {"model": "metainfo.source", "pk": 5644, "fields": {"orig_filename": "Reiner_Andreas_1760_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42", "author": "", "orig_id": 1407108}}, {"model": "metainfo.source", "pk": 5645, "fields": {"orig_filename": "Reiner_Johann-Bapt_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42", "author": "", "orig_id": 1407109}}, {"model": "metainfo.source", "pk": 5646, "fields": {"orig_filename": "Reiner_Max_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42f.", "author": "", "orig_id": 1407110}}, {"model": "metainfo.source", "pk": 5647, "fields": {"orig_filename": "Reinhardt_Heinrich_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43", "author": "", "orig_id": 1407111}}, {"model": "metainfo.source", "pk": 5648, "fields": {"orig_filename": "Reinhardt_Heinrich_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43", "author": "", "orig_id": 1409575}}, {"model": "metainfo.source", "pk": 5649, "fields": {"orig_filename": "Reinhardt_Max_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43ff.", "author": "", "orig_id": 1407112}}, {"model": "metainfo.source", "pk": 5650, "fields": {"orig_filename": "Reinhart-Thurnfels-Ferklehen_Ignaz_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407113}}, {"model": "metainfo.source", "pk": 5651, "fields": {"orig_filename": "Reinhart-Thurnfels-Ferklehen_Josef_1745_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407114}}, {"model": "metainfo.source", "pk": 5652, "fields": {"orig_filename": "Reinhold_Franz_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407115}}, {"model": "metainfo.source", "pk": 5653, "fields": {"orig_filename": "Reinhold_Friedrich-Josef_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45f.", "author": "", "orig_id": 1407117}}, {"model": "metainfo.source", "pk": 5654, "fields": {"orig_filename": "Reinhold_Friedrich-Philipp_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407118}}, {"model": "metainfo.source", "pk": 5655, "fields": {"orig_filename": "Reinhold_Friedrich_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407116}}, {"model": "metainfo.source", "pk": 5656, "fields": {"orig_filename": "Reinhold_Josef_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407119}}, {"model": "metainfo.source", "pk": 5657, "fields": {"orig_filename": "Reinhold_Josef_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407120}}, {"model": "metainfo.source", "pk": 5658, "fields": {"orig_filename": "Reinhold_Karl-Leonhard_1758_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 47", "author": "", "orig_id": 1407122}}, {"model": "metainfo.source", "pk": 5659, "fields": {"orig_filename": "Reinhold_Karl_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46f.", "author": "", "orig_id": 1407121}}, {"model": "metainfo.source", "pk": 5660, "fields": {"orig_filename": "Reininger_Franz_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 47f.", "author": "", "orig_id": 1407123}}, {"model": "metainfo.source", "pk": 5661, "fields": {"orig_filename": "Reininger_Heinrich_1860_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48", "author": "", "orig_id": 1407125}}, {"model": "metainfo.source", "pk": 5662, "fields": {"orig_filename": "Reininger_Karl_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48", "author": "", "orig_id": 1407124}}, {"model": "metainfo.source", "pk": 5663, "fields": {"orig_filename": "Reininghaus_Johann-Peter_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48f.", "author": "", "orig_id": 1407126}}, {"model": "metainfo.source", "pk": 5664, "fields": {"orig_filename": "Reinisch_Franz_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 49", "author": "", "orig_id": 1407127}}, {"model": "metainfo.source", "pk": 5665, "fields": {"orig_filename": "Reinisch_Karl-Ludwig_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 49f.", "author": "", "orig_id": 1407128}}, {"model": "metainfo.source", "pk": 5666, "fields": {"orig_filename": "Reinisch_Simon-Leo_1832_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 50f.", "author": "", "orig_id": 1407129}}, {"model": "metainfo.source", "pk": 5667, "fields": {"orig_filename": "Reinitzer_Benjamin_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51", "author": "", "orig_id": 1407130}}, {"model": "metainfo.source", "pk": 5668, "fields": {"orig_filename": "Reinitzer_Friedrich-Richard-Kornelius_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51", "author": "", "orig_id": 1407131}}, {"model": "metainfo.source", "pk": 5669, "fields": {"orig_filename": "Reinlaender_Wilhelm_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51f.", "author": "", "orig_id": 1407132}}, {"model": "metainfo.source", "pk": 5670, "fields": {"orig_filename": "Reinoehl_Rainer_1854_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407133}}, {"model": "metainfo.source", "pk": 5671, "fields": {"orig_filename": "Reinoehl_Wilhelm_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407134}}, {"model": "metainfo.source", "pk": 5672, "fields": {"orig_filename": "Reinold_Ferdinand_1885_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407135}}, {"model": "metainfo.source", "pk": 5673, "fields": {"orig_filename": "Reinsberg_Josef_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52f.", "author": "", "orig_id": 1407136}}, {"model": "metainfo.source", "pk": 5674, "fields": {"orig_filename": "Reinthaler_Johannes_1824_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53", "author": "", "orig_id": 1407137}}, {"model": "metainfo.source", "pk": 5675, "fields": {"orig_filename": "Reinthaler_Marie_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53", "author": "", "orig_id": 1407138}}, {"model": "metainfo.source", "pk": 5676, "fields": {"orig_filename": "Reisacher_Alois_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54", "author": "", "orig_id": 1406967}}, {"model": "metainfo.source", "pk": 5677, "fields": {"orig_filename": "Reischek_Andreas_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 56", "author": "", "orig_id": 1406971}}, {"model": "metainfo.source", "pk": 5678, "fields": {"orig_filename": "Reischer_Thomas_1781_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 56f.", "author": "", "orig_id": 1406973}}, {"model": "metainfo.source", "pk": 5679, "fields": {"orig_filename": "Reischl_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57", "author": "", "orig_id": 1406974}}, {"model": "metainfo.source", "pk": 5680, "fields": {"orig_filename": "Reisch_Emil_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54f.", "author": "", "orig_id": 1406968}}, {"model": "metainfo.source", "pk": 5681, "fields": {"orig_filename": "Reisch_Franz_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 55", "author": "", "orig_id": 1406969}}, {"model": "metainfo.source", "pk": 5682, "fields": {"orig_filename": "Reisch_Richard_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 55f.", "author": "", "orig_id": 1406970}}, {"model": "metainfo.source", "pk": 5683, "fields": {"orig_filename": "Reiser_Fridolin_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57", "author": "", "orig_id": 1406975}}, {"model": "metainfo.source", "pk": 5684, "fields": {"orig_filename": "Reiser_Matthaeus_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57f.", "author": "", "orig_id": 1406976}}, {"model": "metainfo.source", "pk": 5685, "fields": {"orig_filename": "Reiser_Othmar_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406977}}, {"model": "metainfo.source", "pk": 5686, "fields": {"orig_filename": "Reisich_Josef_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406985}}, {"model": "metainfo.source", "pk": 5687, "fields": {"orig_filename": "Reisinger_Franz_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58f.", "author": "", "orig_id": 1406986}}, {"model": "metainfo.source", "pk": 5688, "fields": {"orig_filename": "Reisinger_Leopold_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 59", "author": "", "orig_id": 1406987}}, {"model": "metainfo.source", "pk": 5689, "fields": {"orig_filename": "Reisinger_Wenzel-Julius_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 59f.", "author": "", "orig_id": 1406988}}, {"model": "metainfo.source", "pk": 5690, "fields": {"orig_filename": "Reissacher_Karl_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61", "author": "", "orig_id": 1407042}}, {"model": "metainfo.source", "pk": 5691, "fields": {"orig_filename": "Reissek_Siegfried_1819_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61f.", "author": "", "orig_id": 1407043}}, {"model": "metainfo.source", "pk": 5692, "fields": {"orig_filename": "Reissenberger_Karl-Friedrich_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62", "author": "", "orig_id": 1407044}}, {"model": "metainfo.source", "pk": 5693, "fields": {"orig_filename": "Reissenberger_Ludwig_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62", "author": "", "orig_id": 1407045}}, {"model": "metainfo.source", "pk": 5694, "fields": {"orig_filename": "Reisser_Christoph_1836_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62f.", "author": "", "orig_id": 1407046}}, {"model": "metainfo.source", "pk": 5695, "fields": {"orig_filename": "Reisser_Franz-De-P-Michael_1769_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63", "author": "", "orig_id": 1407047}}, {"model": "metainfo.source", "pk": 5696, "fields": {"orig_filename": "Reiss_Anton_1741_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60", "author": "", "orig_id": 1406989}}, {"model": "metainfo.source", "pk": 5697, "fields": {"orig_filename": "Reiss_Eduard_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60", "author": "", "orig_id": 1407039}}, {"model": "metainfo.source", "pk": 5698, "fields": {"orig_filename": "Reiss_Heinrich_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60f.", "author": "", "orig_id": 1407040}}, {"model": "metainfo.source", "pk": 5699, "fields": {"orig_filename": "Reiss_Wladyslaw_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61", "author": "", "orig_id": 1407041}}, {"model": "metainfo.source", "pk": 5700, "fields": {"orig_filename": "Reis_Isaak_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53f.", "author": "", "orig_id": 1407139}}, {"model": "metainfo.source", "pk": 5701, "fields": {"orig_filename": "Reis_Wiktor-Feliks_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54", "author": "", "orig_id": 1406965}}, {"model": "metainfo.source", "pk": 5702, "fields": {"orig_filename": "Reitenberger_Kaspar-Karl_1779_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63", "author": "", "orig_id": 1407048}}, {"model": "metainfo.source", "pk": 5703, "fields": {"orig_filename": "Reiterer_Ernst_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407056}}, {"model": "metainfo.source", "pk": 5704, "fields": {"orig_filename": "Reiterer_Josef_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407057}}, {"model": "metainfo.source", "pk": 5705, "fields": {"orig_filename": "Reiterer_Karl_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66f.", "author": "", "orig_id": 1407058}}, {"model": "metainfo.source", "pk": 5706, "fields": {"orig_filename": "Reiter_Franz-X_1875_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63f.", "author": "", "orig_id": 1407049}}, {"model": "metainfo.source", "pk": 5707, "fields": {"orig_filename": "Reiter_Johann-Bapt_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 64", "author": "", "orig_id": 1407050}}, {"model": "metainfo.source", "pk": 5708, "fields": {"orig_filename": "Reiter_Johannes-Maria_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 64f.", "author": "", "orig_id": 1407051}}, {"model": "metainfo.source", "pk": 5709, "fields": {"orig_filename": "Reiter_Josef_1805_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65", "author": "", "orig_id": 1407052}}, {"model": "metainfo.source", "pk": 5710, "fields": {"orig_filename": "Reiter_Josef_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65", "author": "", "orig_id": 1407053}}, {"model": "metainfo.source", "pk": 5711, "fields": {"orig_filename": "Reiter_Josef_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65f.", "author": "", "orig_id": 1407054}}, {"model": "metainfo.source", "pk": 5712, "fields": {"orig_filename": "Reiter_Matthaeus-Simon_1750_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407055}}, {"model": "metainfo.source", "pk": 5713, "fields": {"orig_filename": "Reither_Josef_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 67", "author": "", "orig_id": 1407059}}, {"model": "metainfo.source", "pk": 5714, "fields": {"orig_filename": "Reithmann_Christian_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 67f.", "author": "", "orig_id": 1407060}}, {"model": "metainfo.source", "pk": 5715, "fields": {"orig_filename": "Reithmeyer_Karl_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 68", "author": "", "orig_id": 1407061}}, {"model": "metainfo.source", "pk": 5716, "fields": {"orig_filename": "Reithoffer_Johann-Nep_1781_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 68f.", "author": "", "orig_id": 1407062}}, {"model": "metainfo.source", "pk": 5717, "fields": {"orig_filename": "Reitlechner_Gregor_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69", "author": "", "orig_id": 1407063}}, {"model": "metainfo.source", "pk": 5718, "fields": {"orig_filename": "Reitlechner_Karl_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69", "author": "", "orig_id": 1407064}}, {"model": "metainfo.source", "pk": 5719, "fields": {"orig_filename": "Reitler_Josef_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69f.", "author": "", "orig_id": 1407065}}, {"model": "metainfo.source", "pk": 5720, "fields": {"orig_filename": "Reitler_Marzellin-Adalbert_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 70", "author": "", "orig_id": 1407066}}, {"model": "metainfo.source", "pk": 5721, "fields": {"orig_filename": "Reitterer_Franz-X_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71f.", "author": "", "orig_id": 1407070}}, {"model": "metainfo.source", "pk": 5722, "fields": {"orig_filename": "Reitter_Edmund_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 70f.", "author": "", "orig_id": 1407067}}, {"model": "metainfo.source", "pk": 5723, "fields": {"orig_filename": "Reitter_Georg_1898_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71", "author": "", "orig_id": 1407068}}, {"model": "metainfo.source", "pk": 5724, "fields": {"orig_filename": "Reitter_Michael_1781_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71", "author": "", "orig_id": 1407069}}, {"model": "metainfo.source", "pk": 5725, "fields": {"orig_filename": "Reitzenbeck_Heinrich_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 72f.", "author": "", "orig_id": 1407072}}, {"model": "metainfo.source", "pk": 5726, "fields": {"orig_filename": "Reitzes_Sigmund_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407073}}, {"model": "metainfo.source", "pk": 5727, "fields": {"orig_filename": "Reitz_Konstantin_1817_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 72", "author": "", "orig_id": 1407071}}, {"model": "metainfo.source", "pk": 5728, "fields": {"orig_filename": "Reizner_Janos_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407074}}, {"model": "metainfo.source", "pk": 5729, "fields": {"orig_filename": "Rejtoe_Sandor_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407075}}, {"model": "metainfo.source", "pk": 5730, "fields": {"orig_filename": "Rejzek_Anton_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73f.", "author": "", "orig_id": 1407076}}, {"model": "metainfo.source", "pk": 5731, "fields": {"orig_filename": "Rektorzik_Franz-X_1793_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74", "author": "", "orig_id": 1407077}}, {"model": "metainfo.source", "pk": 5732, "fields": {"orig_filename": "Rella_Anton_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74", "author": "", "orig_id": 1407078}}, {"model": "metainfo.source", "pk": 5733, "fields": {"orig_filename": "Rembold_Otto_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74f.", "author": "", "orig_id": 1407079}}, {"model": "metainfo.source", "pk": 5734, "fields": {"orig_filename": "Remenyi_Antal_1825_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75", "author": "", "orig_id": 1407080}}, {"model": "metainfo.source", "pk": 5735, "fields": {"orig_filename": "Remenyi_Ede_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75", "author": "", "orig_id": 1407081}}, {"model": "metainfo.source", "pk": 5736, "fields": {"orig_filename": "Remmark_Karl_1802_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75f.", "author": "", "orig_id": 1407082}}, {"model": "metainfo.source", "pk": 5737, "fields": {"orig_filename": "Remy-Berzenkovich-Szillas_Emil-Otto_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76", "author": "", "orig_id": 1407084}}, {"model": "metainfo.source", "pk": 5738, "fields": {"orig_filename": "Remy-Berzenkovich-Szillas_Ladislaus_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76f.", "author": "", "orig_id": 1407085}}, {"model": "metainfo.source", "pk": 5739, "fields": {"orig_filename": "Remy_Ludwig-Gabriel_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76", "author": "", "orig_id": 1407083}}, {"model": "metainfo.source", "pk": 5740, "fields": {"orig_filename": "Renard_Marie_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77", "author": "", "orig_id": 1407086}}, {"model": "metainfo.source", "pk": 5741, "fields": {"orig_filename": "Rencki_Roman_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77", "author": "", "orig_id": 1407087}}, {"model": "metainfo.source", "pk": 5742, "fields": {"orig_filename": "Rendic_Ivan_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77f.", "author": "", "orig_id": 1407088}}, {"model": "metainfo.source", "pk": 5743, "fields": {"orig_filename": "Renier_Stefano-Andrea_1759_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 78", "author": "", "orig_id": 1407089}}, {"model": "metainfo.source", "pk": 5744, "fields": {"orig_filename": "Renker_Gustav_1889_1967.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1866399}}, {"model": "metainfo.source", "pk": 5745, "fields": {"orig_filename": "Rebel_Hans_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1f.", "author": "", "orig_id": 1406929}}, {"model": "metainfo.source", "pk": 5746, "fields": {"orig_filename": "Rebhann-Aspernbruck_Georg_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 2f.", "author": "", "orig_id": 1406931}}, {"model": "metainfo.source", "pk": 5747, "fields": {"orig_filename": "Rebicek_Josef_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 3", "author": "", "orig_id": 1406932}}, {"model": "metainfo.source", "pk": 5748, "fields": {"orig_filename": "Rechbauer_Karl_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 3f.", "author": "", "orig_id": 1406933}}, {"model": "metainfo.source", "pk": 5749, "fields": {"orig_filename": "Rechberg-Rothenloewen_Johann-Bernhard_1806_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 4f.", "author": "", "orig_id": 1406934}}, {"model": "metainfo.source", "pk": 5750, "fields": {"orig_filename": "Rechberger-Rechkron_Josef_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6", "author": "", "orig_id": 1406938}}, {"model": "metainfo.source", "pk": 5751, "fields": {"orig_filename": "Rechberger_Augustin_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5", "author": "", "orig_id": 1406935}}, {"model": "metainfo.source", "pk": 5752, "fields": {"orig_filename": "Rechberger_Franz_1771_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5", "author": "", "orig_id": 1406936}}, {"model": "metainfo.source", "pk": 5753, "fields": {"orig_filename": "Rechberger_Heinrich_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5f.", "author": "", "orig_id": 1406937}}, {"model": "metainfo.source", "pk": 5754, "fields": {"orig_filename": "Reckendorfer_Ferdinand_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6", "author": "", "orig_id": 1406939}}, {"model": "metainfo.source", "pk": 5755, "fields": {"orig_filename": "Recsei_Viktor_1858_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6f.", "author": "", "orig_id": 1406940}}, {"model": "metainfo.source", "pk": 5756, "fields": {"orig_filename": "Recsy_Emil_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7", "author": "", "orig_id": 1406941}}, {"model": "metainfo.source", "pk": 5757, "fields": {"orig_filename": "Reden_Alexander_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7", "author": "", "orig_id": 1829257}}, {"model": "metainfo.source", "pk": 5758, "fields": {"orig_filename": "Redler_Ferdinand_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8f.", "author": "", "orig_id": 1406946}}, {"model": "metainfo.source", "pk": 5759, "fields": {"orig_filename": "Redler_Karoline-Maria_1883_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9", "author": "", "orig_id": 1406947}}, {"model": "metainfo.source", "pk": 5760, "fields": {"orig_filename": "Redlich-Redensbruck_Otto_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 12f.", "author": "", "orig_id": 1406954}}, {"model": "metainfo.source", "pk": 5761, "fields": {"orig_filename": "Redlich_Emil_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9", "author": "", "orig_id": 1406948}}, {"model": "metainfo.source", "pk": 5762, "fields": {"orig_filename": "Redlich_Friedrich_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9f.", "author": "", "orig_id": 1406949}}, {"model": "metainfo.source", "pk": 5763, "fields": {"orig_filename": "Redlich_Josef_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 10f.", "author": "", "orig_id": 1406950}}, {"model": "metainfo.source", "pk": 5764, "fields": {"orig_filename": "Redlich_Karl-August_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11", "author": "", "orig_id": 1406952}}, {"model": "metainfo.source", "pk": 5765, "fields": {"orig_filename": "Redlich_Karl_1860_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11", "author": "", "orig_id": 1406951}}, {"model": "metainfo.source", "pk": 5766, "fields": {"orig_filename": "Redlich_Oswald_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11f.", "author": "", "orig_id": 1406953}}, {"model": "metainfo.source", "pk": 5767, "fields": {"orig_filename": "Redl_Alfred_1864_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7f.", "author": "", "orig_id": 1406942}}, {"model": "metainfo.source", "pk": 5768, "fields": {"orig_filename": "Redl_Alois_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406943}}, {"model": "metainfo.source", "pk": 5769, "fields": {"orig_filename": "Redl_Johann_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406944}}, {"model": "metainfo.source", "pk": 5770, "fields": {"orig_filename": "Redl_Josef_1774_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406945}}, {"model": "metainfo.source", "pk": 5771, "fields": {"orig_filename": "Redtenbacher_Ferdinand-Jakob_1809_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 13", "author": "", "orig_id": 1406955}}, {"model": "metainfo.source", "pk": 5772, "fields": {"orig_filename": "Redtenbacher_Josef_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 13f.", "author": "", "orig_id": 1406956}}, {"model": "metainfo.source", "pk": 5773, "fields": {"orig_filename": "Redtenbacher_Josef_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14", "author": "", "orig_id": 1406957}}, {"model": "metainfo.source", "pk": 5774, "fields": {"orig_filename": "Redtenbacher_Leo_1845_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14", "author": "", "orig_id": 1406958}}, {"model": "metainfo.source", "pk": 5775, "fields": {"orig_filename": "Redtenbacher_Ludwig_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14f.", "author": "", "orig_id": 1406959}}, {"model": "metainfo.source", "pk": 5776, "fields": {"orig_filename": "Redtenbacher_Simon_1844_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406960}}, {"model": "metainfo.source", "pk": 5777, "fields": {"orig_filename": "Ree_Luis_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406961}}, {"model": "metainfo.source", "pk": 5778, "fields": {"orig_filename": "Regeczi_Josef_1851_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406962}}, {"model": "metainfo.source", "pk": 5779, "fields": {"orig_filename": "Regenhart_Alois_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 16", "author": "", "orig_id": 1406964}}, {"model": "metainfo.source", "pk": 5780, "fields": {"orig_filename": "Regenhart_Alois_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 16f.", "author": "", "orig_id": 1406764}}, {"model": "metainfo.source", "pk": 5781, "fields": {"orig_filename": "Regensdorff_Carlo_1792_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17", "author": "", "orig_id": 1406765}}, {"model": "metainfo.source", "pk": 5782, "fields": {"orig_filename": "Regenspursky-Regeny_Karl_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17", "author": "", "orig_id": 1406766}}, {"model": "metainfo.source", "pk": 5783, "fields": {"orig_filename": "Regen_Johann_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15f.", "author": "", "orig_id": 1406963}}, {"model": "metainfo.source", "pk": 5784, "fields": {"orig_filename": "Reger_Tadeusz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17f.", "author": "", "orig_id": 1406767}}, {"model": "metainfo.source", "pk": 5785, "fields": {"orig_filename": "Reggio_Isacco-Samuele_1784_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 18", "author": "", "orig_id": 1406768}}, {"model": "metainfo.source", "pk": 5786, "fields": {"orig_filename": "Regli_Adalbert_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 18f.", "author": "", "orig_id": 1406769}}, {"model": "metainfo.source", "pk": 5787, "fields": {"orig_filename": "Regner-Bleyleben_Oktavian_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19", "author": "", "orig_id": 1406771}}, {"model": "metainfo.source", "pk": 5788, "fields": {"orig_filename": "Regner_Josef_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19", "author": "", "orig_id": 1406770}}, {"model": "metainfo.source", "pk": 5789, "fields": {"orig_filename": "Reguly_Antal_1819_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19f.", "author": "", "orig_id": 1406772}}, {"model": "metainfo.source", "pk": 5790, "fields": {"orig_filename": "Rehakova_Anna_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21", "author": "", "orig_id": 1406778}}, {"model": "metainfo.source", "pk": 5791, "fields": {"orig_filename": "Rehak_Gejza_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406775}}, {"model": "metainfo.source", "pk": 5792, "fields": {"orig_filename": "Rehak_Jan_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20f.", "author": "", "orig_id": 1406776}}, {"model": "metainfo.source", "pk": 5793, "fields": {"orig_filename": "Rehak_Stanislav_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21", "author": "", "orig_id": 1406777}}, {"model": "metainfo.source", "pk": 5794, "fields": {"orig_filename": "Rehatschek_Anton_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21f.", "author": "", "orig_id": 1406779}}, {"model": "metainfo.source", "pk": 5795, "fields": {"orig_filename": "Rehman_Antoni_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 22", "author": "", "orig_id": 1406780}}, {"model": "metainfo.source", "pk": 5796, "fields": {"orig_filename": "Rehor_Karl_1906_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 22f.", "author": "", "orig_id": 1406781}}, {"model": "metainfo.source", "pk": 5797, "fields": {"orig_filename": "Rehrl_Franz_1890_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23", "author": "", "orig_id": 1406782}}, {"model": "metainfo.source", "pk": 5798, "fields": {"orig_filename": "Rehrl_Kaspar_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23", "author": "", "orig_id": 1406783}}, {"model": "metainfo.source", "pk": 5799, "fields": {"orig_filename": "Reh_Franz_1861_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406773}}, {"model": "metainfo.source", "pk": 5800, "fields": {"orig_filename": "Reh_Karl-Christian_1888_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406774}}, {"model": "metainfo.source", "pk": 5801, "fields": {"orig_filename": "Reibmayr_Albert_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23f.", "author": "", "orig_id": 1406784}}, {"model": "metainfo.source", "pk": 5802, "fields": {"orig_filename": "Reichardt_Alexander_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27f.", "author": "", "orig_id": 1406795}}, {"model": "metainfo.source", "pk": 5803, "fields": {"orig_filename": "Reichardt_Heinrich-Wilhelm_1835_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 28", "author": "", "orig_id": 1406796}}, {"model": "metainfo.source", "pk": 5804, "fields": {"orig_filename": "Reicha_Anton-Josef_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27", "author": "", "orig_id": 1406794}}, {"model": "metainfo.source", "pk": 5805, "fields": {"orig_filename": "Reichelt_Johann_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 30f.", "author": "", "orig_id": 1406802}}, {"model": "metainfo.source", "pk": 5806, "fields": {"orig_filename": "Reichel_Anton_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 28f.", "author": "", "orig_id": 1406797}}, {"model": "metainfo.source", "pk": 5807, "fields": {"orig_filename": "Reichel_Heinrich_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29", "author": "", "orig_id": 1406798}}, {"model": "metainfo.source", "pk": 5808, "fields": {"orig_filename": "Reichel_Josef_1819_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29", "author": "", "orig_id": 1406799}}, {"model": "metainfo.source", "pk": 5809, "fields": {"orig_filename": "Reichel_Wolfgang_1858_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 30", "author": "", "orig_id": 1406801}}, {"model": "metainfo.source", "pk": 5810, "fields": {"orig_filename": "Reichenbach_Karl-Ludwig_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31", "author": "", "orig_id": 1406803}}, {"model": "metainfo.source", "pk": 5811, "fields": {"orig_filename": "Reichenberger_Hugo_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 32", "author": "", "orig_id": 1406806}}, {"model": "metainfo.source", "pk": 5812, "fields": {"orig_filename": "Reichenberg_Franz_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31", "author": "", "orig_id": 1406804}}, {"model": "metainfo.source", "pk": 5813, "fields": {"orig_filename": "Reichert_Adam_1853_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406809}}, {"model": "metainfo.source", "pk": 5814, "fields": {"orig_filename": "Reichert_Heinrich_1801_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406810}}, {"model": "metainfo.source", "pk": 5815, "fields": {"orig_filename": "Reichert_Heinz_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33f.", "author": "", "orig_id": 1406811}}, {"model": "metainfo.source", "pk": 5816, "fields": {"orig_filename": "Reichert_Karl-Friedrich-Wilhelm_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 34f.", "author": "", "orig_id": 1406813}}, {"model": "metainfo.source", "pk": 5817, "fields": {"orig_filename": "Reichert_Karl_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 34", "author": "", "orig_id": 1406812}}, {"model": "metainfo.source", "pk": 5818, "fields": {"orig_filename": "Reichert_Vaclav_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35", "author": "", "orig_id": 1406814}}, {"model": "metainfo.source", "pk": 5819, "fields": {"orig_filename": "Reicher_Emanuel_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 32f.", "author": "", "orig_id": 1406807}}, {"model": "metainfo.source", "pk": 5820, "fields": {"orig_filename": "Reicher_Heinrich_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406808}}, {"model": "metainfo.source", "pk": 5821, "fields": {"orig_filename": "Reichhart_Gottfried_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35", "author": "", "orig_id": 1406815}}, {"model": "metainfo.source", "pk": 5822, "fields": {"orig_filename": "Reichlin-Meldegg_Wilhelm_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36", "author": "", "orig_id": 1407092}}, {"model": "metainfo.source", "pk": 5823, "fields": {"orig_filename": "Reichl_Josef_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35f.", "author": "", "orig_id": 1407090}}, {"model": "metainfo.source", "pk": 5824, "fields": {"orig_filename": "Reichl_Josef_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36", "author": "", "orig_id": 1407091}}, {"model": "metainfo.source", "pk": 5825, "fields": {"orig_filename": "Reichmann_Theodor_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36f.", "author": "", "orig_id": 1407093}}, {"model": "metainfo.source", "pk": 5826, "fields": {"orig_filename": "Reichstadt_Napoleon-Franz-Karl_1811_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 37", "author": "", "orig_id": 1407094}}, {"model": "metainfo.source", "pk": 5827, "fields": {"orig_filename": "Reichwein_Leopold_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 37f.", "author": "", "orig_id": 1407095}}, {"model": "metainfo.source", "pk": 5828, "fields": {"orig_filename": "Reich_Eduard_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 24", "author": "", "orig_id": 1406785}}, {"model": "metainfo.source", "pk": 5829, "fields": {"orig_filename": "Reich_Emil_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 24f.", "author": "", "orig_id": 1406786}}, {"model": "metainfo.source", "pk": 5830, "fields": {"orig_filename": "Reich_Ignac_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25", "author": "", "orig_id": 1406787}}, {"model": "metainfo.source", "pk": 5831, "fields": {"orig_filename": "Reich_Jakob_1838_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25", "author": "", "orig_id": 1406788}}, {"model": "metainfo.source", "pk": 5832, "fields": {"orig_filename": "Reich_Leon_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25f.", "author": "", "orig_id": 1406789}}, {"model": "metainfo.source", "pk": 5833, "fields": {"orig_filename": "Reich_Max_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26", "author": "", "orig_id": 1406791}}, {"model": "metainfo.source", "pk": 5834, "fields": {"orig_filename": "Reich_Moritz_1831_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26", "author": "", "orig_id": 1406792}}, {"model": "metainfo.source", "pk": 5835, "fields": {"orig_filename": "Reich_Theodor_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26f.", "author": "", "orig_id": 1406793}}, {"model": "metainfo.source", "pk": 5836, "fields": {"orig_filename": "Reider_Simon_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407096}}, {"model": "metainfo.source", "pk": 5837, "fields": {"orig_filename": "Reidinger_Anton_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407097}}, {"model": "metainfo.source", "pk": 5838, "fields": {"orig_filename": "Reiffenstein_Gottlieb-Benjamin_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407098}}, {"model": "metainfo.source", "pk": 5839, "fields": {"orig_filename": "Reifner_Vinzenz_1878_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38f.", "author": "", "orig_id": 1407099}}, {"model": "metainfo.source", "pk": 5840, "fields": {"orig_filename": "Reifschneider_Konrad_1909_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39", "author": "", "orig_id": 1407100}}, {"model": "metainfo.source", "pk": 5841, "fields": {"orig_filename": "Reilly_Franz-Johann-Josef_1766_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39f.", "author": "", "orig_id": 1407102}}, {"model": "metainfo.source", "pk": 5842, "fields": {"orig_filename": "Reil_Johann-Anton-Friedrich_1773_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39", "author": "", "orig_id": 1407101}}, {"model": "metainfo.source", "pk": 5843, "fields": {"orig_filename": "Reimann_Martin_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40", "author": "", "orig_id": 1407104}}, {"model": "metainfo.source", "pk": 5844, "fields": {"orig_filename": "Reimers_Georg_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40f.", "author": "", "orig_id": 1407105}}, {"model": "metainfo.source", "pk": 5845, "fields": {"orig_filename": "Reim_Johann-Vinzenz_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40", "author": "", "orig_id": 1407103}}, {"model": "metainfo.source", "pk": 5846, "fields": {"orig_filename": "Reindl_Johann-Bapt_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 41", "author": "", "orig_id": 1407106}}, {"model": "metainfo.source", "pk": 5847, "fields": {"orig_filename": "Randa_Antonin_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 410f.", "author": "", "orig_id": 1410085}}, {"model": "metainfo.source", "pk": 5848, "fields": {"orig_filename": "Randegger_Alberto-Iginio_1880_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412", "author": "", "orig_id": 1410088}}, {"model": "metainfo.source", "pk": 5849, "fields": {"orig_filename": "Randegger_Alberto_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411f.", "author": "", "orig_id": 1410087}}, {"model": "metainfo.source", "pk": 5850, "fields": {"orig_filename": "Randegger_Mayer_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412", "author": "", "orig_id": 1410089}}, {"model": "metainfo.source", "pk": 5851, "fields": {"orig_filename": "Randhartinger_Benedikt_1802_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412f.", "author": "", "orig_id": 1410090}}, {"model": "metainfo.source", "pk": 5852, "fields": {"orig_filename": "Randolf_Josef_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413", "author": "", "orig_id": 1410091}}, {"model": "metainfo.source", "pk": 5853, "fields": {"orig_filename": "Ranftl_Johann-Ev_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413", "author": "", "orig_id": 1410092}}, {"model": "metainfo.source", "pk": 5854, "fields": {"orig_filename": "Ranftl_Matthias-Johann_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413f.", "author": "", "orig_id": 1410093}}, {"model": "metainfo.source", "pk": 5855, "fields": {"orig_filename": "Ranggetiner_Christian_1833_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 414", "author": "", "orig_id": 1410094}}, {"model": "metainfo.source", "pk": 5856, "fields": {"orig_filename": "Rankl_Richard_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416", "author": "", "orig_id": 1410099}}, {"model": "metainfo.source", "pk": 5857, "fields": {"orig_filename": "Rank_Josef_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 414f.", "author": "", "orig_id": 1410096}}, {"model": "metainfo.source", "pk": 5858, "fields": {"orig_filename": "Rank_Josef_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 415", "author": "", "orig_id": 1410097}}, {"model": "metainfo.source", "pk": 5859, "fields": {"orig_filename": "Rank_Otto_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 415f.", "author": "", "orig_id": 1410098}}, {"model": "metainfo.source", "pk": 5860, "fields": {"orig_filename": "Rannicher_Jakob_1823_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416", "author": "", "orig_id": 1410174}}, {"model": "metainfo.source", "pk": 5861, "fields": {"orig_filename": "Ranolder_Janos_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416f.", "author": "", "orig_id": 1410175}}, {"model": "metainfo.source", "pk": 5862, "fields": {"orig_filename": "Ransonnet-Villez_Eugen_1838_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417", "author": "", "orig_id": 1410176}}, {"model": "metainfo.source", "pk": 5863, "fields": {"orig_filename": "Ranzenberger_Hugo_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417", "author": "", "orig_id": 1410177}}, {"model": "metainfo.source", "pk": 5864, "fields": {"orig_filename": "Ranzenhofer_Adolf_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417f.", "author": "", "orig_id": 1410178}}, {"model": "metainfo.source", "pk": 5865, "fields": {"orig_filename": "Ranzi_Egon_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 418", "author": "", "orig_id": 1410179}}, {"model": "metainfo.source", "pk": 5866, "fields": {"orig_filename": "Ranzoni_Emerich_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 418f.", "author": "", "orig_id": 1410180}}, {"model": "metainfo.source", "pk": 5867, "fields": {"orig_filename": "Ranzoni_Gustav_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 419", "author": "", "orig_id": 1410181}}, {"model": "metainfo.source", "pk": 5868, "fields": {"orig_filename": "Rapaics_Raimund_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 419f.", "author": "", "orig_id": 1410182}}, {"model": "metainfo.source", "pk": 5869, "fields": {"orig_filename": "Rapoc_Fran_1842_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420", "author": "", "orig_id": 1410183}}, {"model": "metainfo.source", "pk": 5870, "fields": {"orig_filename": "Rapoldi_Martin_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420", "author": "", "orig_id": 1410184}}, {"model": "metainfo.source", "pk": 5871, "fields": {"orig_filename": "Rapoport-Porada_Arnold-Chaim_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 422f.", "author": "", "orig_id": 1410190}}, {"model": "metainfo.source", "pk": 5872, "fields": {"orig_filename": "Rapoport_Benjamin-Zeeb-Wolf-Hakohen_1754_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420f.", "author": "", "orig_id": 1410185}}, {"model": "metainfo.source", "pk": 5873, "fields": {"orig_filename": "Rapoport_Mordche-W_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421", "author": "", "orig_id": 1410186}}, {"model": "metainfo.source", "pk": 5874, "fields": {"orig_filename": "Rapoport_Moriz_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421", "author": "", "orig_id": 1410187}}, {"model": "metainfo.source", "pk": 5875, "fields": {"orig_filename": "Rapoport_Salomon-Juda-Loeb_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421f.", "author": "", "orig_id": 1410188}}, {"model": "metainfo.source", "pk": 5876, "fields": {"orig_filename": "Rapoport_Samuel_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 422", "author": "", "orig_id": 1410189}}, {"model": "metainfo.source", "pk": 5877, "fields": {"orig_filename": "Rapp-Heidenburg_Franz_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424", "author": "", "orig_id": 1410194}}, {"model": "metainfo.source", "pk": 5878, "fields": {"orig_filename": "Rappel_Jakob_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424", "author": "", "orig_id": 1410195}}, {"model": "metainfo.source", "pk": 5879, "fields": {"orig_filename": "Rappoldi_Eduard_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425", "author": "", "orig_id": 1410197}}, {"model": "metainfo.source", "pk": 5880, "fields": {"orig_filename": "Rappoldi_Laura_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425", "author": "", "orig_id": 1410198}}, {"model": "metainfo.source", "pk": 5881, "fields": {"orig_filename": "Rappold_Ferdinand_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424f.", "author": "", "orig_id": 1410196}}, {"model": "metainfo.source", "pk": 5882, "fields": {"orig_filename": "Rapp_Johann_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423", "author": "", "orig_id": 1410191}}, {"model": "metainfo.source", "pk": 5883, "fields": {"orig_filename": "Rapp_Josef_1780_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423", "author": "", "orig_id": 1410192}}, {"model": "metainfo.source", "pk": 5884, "fields": {"orig_filename": "Rapp_Ludwig_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423f.", "author": "", "orig_id": 1410193}}, {"model": "metainfo.source", "pk": 5885, "fields": {"orig_filename": "Raschke_Hermann_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425f.", "author": "", "orig_id": 1410273}}, {"model": "metainfo.source", "pk": 5886, "fields": {"orig_filename": "Raschke_Rudolf_1923_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426", "author": "", "orig_id": 1410274}}, {"model": "metainfo.source", "pk": 5887, "fields": {"orig_filename": "Rasim_Otto_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426", "author": "", "orig_id": 1410275}}, {"model": "metainfo.source", "pk": 5888, "fields": {"orig_filename": "Rasin_Alois_1867_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426f.", "author": "", "orig_id": 1410276}}, {"model": "metainfo.source", "pk": 5889, "fields": {"orig_filename": "Raskaj_Slava_1877_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 427", "author": "", "orig_id": 1410277}}, {"model": "metainfo.source", "pk": 5890, "fields": {"orig_filename": "Rastic_Daniel_1794_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410280}}, {"model": "metainfo.source", "pk": 5891, "fields": {"orig_filename": "Rast_August_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 427f.", "author": "", "orig_id": 1410278}}, {"model": "metainfo.source", "pk": 5892, "fields": {"orig_filename": "Rast_Ferdinand-Gregor_1808_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410279}}, {"model": "metainfo.source", "pk": 5893, "fields": {"orig_filename": "Rataj_Jan_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428f.", "author": "", "orig_id": 1410284}}, {"model": "metainfo.source", "pk": 5894, "fields": {"orig_filename": "Rataj_Maciej_1884_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429", "author": "", "orig_id": 1410285}}, {"model": "metainfo.source", "pk": 5895, "fields": {"orig_filename": "Rathausky_Johann_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431f.", "author": "", "orig_id": 1410293}}, {"model": "metainfo.source", "pk": 5896, "fields": {"orig_filename": "Rathay_Emerich_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 432", "author": "", "orig_id": 1410294}}, {"model": "metainfo.source", "pk": 5897, "fields": {"orig_filename": "Rathner_Wilhelmine_1863_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 432", "author": "", "orig_id": 1410295}}, {"model": "metainfo.source", "pk": 5898, "fields": {"orig_filename": "Rathofer_Augustin_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410296}}, {"model": "metainfo.source", "pk": 5899, "fields": {"orig_filename": "Rath_Gyoergy_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429", "author": "", "orig_id": 1410286}}, {"model": "metainfo.source", "pk": 5900, "fields": {"orig_filename": "Rath_Heinrich_1792_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429f.", "author": "", "orig_id": 1410287}}, {"model": "metainfo.source", "pk": 5901, "fields": {"orig_filename": "Rath_Josef_1772_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410288}}, {"model": "metainfo.source", "pk": 5902, "fields": {"orig_filename": "Rath_Karoly_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410289}}, {"model": "metainfo.source", "pk": 5903, "fields": {"orig_filename": "Rath_Karoly_1829_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410290}}, {"model": "metainfo.source", "pk": 5904, "fields": {"orig_filename": "Rath_Mor_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431", "author": "", "orig_id": 1410291}}, {"model": "metainfo.source", "pk": 5905, "fields": {"orig_filename": "Rath_Zoltan_1863_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431", "author": "", "orig_id": 1410292}}, {"model": "metainfo.source", "pk": 5906, "fields": {"orig_filename": "Ratini_Luigi_1880_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410297}}, {"model": "metainfo.source", "pk": 5907, "fields": {"orig_filename": "Ratiu_Ioan_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410373}}, {"model": "metainfo.source", "pk": 5908, "fields": {"orig_filename": "Ratzenberger_Franz_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434", "author": "", "orig_id": 1410376}}, {"model": "metainfo.source", "pk": 5909, "fields": {"orig_filename": "Ratzenhofer_Gustav_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434f.", "author": "", "orig_id": 1410377}}, {"model": "metainfo.source", "pk": 5910, "fields": {"orig_filename": "Ratz_Alfred_1882_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433f.", "author": "", "orig_id": 1410374}}, {"model": "metainfo.source", "pk": 5911, "fields": {"orig_filename": "Ratz_Johann-Kaspar_1786_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434", "author": "", "orig_id": 1410375}}, {"model": "metainfo.source", "pk": 5912, "fields": {"orig_filename": "Rat_Gherasim_1793_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410282}}, {"model": "metainfo.source", "pk": 5913, "fields": {"orig_filename": "Rauber_Eugen-Siegfried_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 435", "author": "", "orig_id": 1410378}}, {"model": "metainfo.source", "pk": 5914, "fields": {"orig_filename": "Rauchberg_Heinrich_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437f.", "author": "", "orig_id": 1410385}}, {"model": "metainfo.source", "pk": 5915, "fields": {"orig_filename": "Rauchinger_Heinrich_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438", "author": "", "orig_id": 1410386}}, {"model": "metainfo.source", "pk": 5916, "fields": {"orig_filename": "Rauch_Anton_1801_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 435", "author": "", "orig_id": 1410379}}, {"model": "metainfo.source", "pk": 5917, "fields": {"orig_filename": "Rauch_Felizian_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436", "author": "", "orig_id": 1410380}}, {"model": "metainfo.source", "pk": 5918, "fields": {"orig_filename": "Rauch_Johann_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436", "author": "", "orig_id": 1410381}}, {"model": "metainfo.source", "pk": 5919, "fields": {"orig_filename": "Rauch_Josef_1765_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436f.", "author": "", "orig_id": 1410382}}, {"model": "metainfo.source", "pk": 5920, "fields": {"orig_filename": "Rauch_Levin_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437", "author": "", "orig_id": 1410383}}, {"model": "metainfo.source", "pk": 5921, "fields": {"orig_filename": "Rauch_Pavao_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437", "author": "", "orig_id": 1410384}}, {"model": "metainfo.source", "pk": 5922, "fields": {"orig_filename": "Rauhofer_Josef_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438f.", "author": "", "orig_id": 1410388}}, {"model": "metainfo.source", "pk": 5923, "fields": {"orig_filename": "Rauh_Johann_1803_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438", "author": "", "orig_id": 1410387}}, {"model": "metainfo.source", "pk": 5924, "fields": {"orig_filename": "Raunegger_Ferdinand_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 439", "author": "", "orig_id": 1410389}}, {"model": "metainfo.source", "pk": 5925, "fields": {"orig_filename": "Raunicher_Matteo_1776_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 439f.", "author": "", "orig_id": 1410390}}, {"model": "metainfo.source", "pk": 5926, "fields": {"orig_filename": "Raupenstrauch_Gustav-Adolf_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 440", "author": "", "orig_id": 1410391}}, {"model": "metainfo.source", "pk": 5927, "fields": {"orig_filename": "Rausar_Josef-Zdenek_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 440f.", "author": "", "orig_id": 1410392}}, {"model": "metainfo.source", "pk": 5928, "fields": {"orig_filename": "Rausch-Traubenberg_Franz_1743_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441", "author": "", "orig_id": 1410394}}, {"model": "metainfo.source", "pk": 5929, "fields": {"orig_filename": "Rauscher-Stainberg_Ernst_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443f.", "author": "", "orig_id": 1410470}}, {"model": "metainfo.source", "pk": 5930, "fields": {"orig_filename": "Rauscher_Jakob_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441f.", "author": "", "orig_id": 1410395}}, {"model": "metainfo.source", "pk": 5931, "fields": {"orig_filename": "Rauscher_Josef-Othmar_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 442f.", "author": "", "orig_id": 1410467}}, {"model": "metainfo.source", "pk": 5932, "fields": {"orig_filename": "Rauscher_Michael_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443", "author": "", "orig_id": 1410468}}, {"model": "metainfo.source", "pk": 5933, "fields": {"orig_filename": "Rauscher_Robert_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443", "author": "", "orig_id": 1410469}}, {"model": "metainfo.source", "pk": 5934, "fields": {"orig_filename": "Rausch_Karl_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441", "author": "", "orig_id": 1410393}}, {"model": "metainfo.source", "pk": 5935, "fields": {"orig_filename": "Rautenkranz_Josef-Frantisek-Miloslav_1776_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 444", "author": "", "orig_id": 1410471}}, {"model": "metainfo.source", "pk": 5936, "fields": {"orig_filename": "Rauter_Johann-Bapt-Albin_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 444f.", "author": "", "orig_id": 1410472}}, {"model": "metainfo.source", "pk": 5937, "fields": {"orig_filename": "Ravnikar_Matevz_1802_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445", "author": "", "orig_id": 1410473}}, {"model": "metainfo.source", "pk": 5938, "fields": {"orig_filename": "Raymann_Adolf_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446", "author": "", "orig_id": 1410476}}, {"model": "metainfo.source", "pk": 5939, "fields": {"orig_filename": "Rayman_Bohuslav_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445f.", "author": "", "orig_id": 1410475}}, {"model": "metainfo.source", "pk": 5940, "fields": {"orig_filename": "Ray_Pietro_1773_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445", "author": "", "orig_id": 1410474}}, {"model": "metainfo.source", "pk": 5941, "fields": {"orig_filename": "Razga_Pal_1798_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446f.", "author": "", "orig_id": 1410478}}, {"model": "metainfo.source", "pk": 5942, "fields": {"orig_filename": "Razlag_Radoslav-Jakob_1826_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 447", "author": "", "orig_id": 1410479}}, {"model": "metainfo.source", "pk": 5943, "fields": {"orig_filename": "Razumovsky_Andreas_1752_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 447f.", "author": "", "orig_id": 1410480}}, {"model": "metainfo.source", "pk": 5944, "fields": {"orig_filename": "Razumovsky_Gregor_1759_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 448", "author": "", "orig_id": 1410481}}, {"model": "metainfo.source", "pk": 5945, "fields": {"orig_filename": "Razun_Matej_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 448", "author": "", "orig_id": 1410482}}, {"model": "metainfo.source", "pk": 5946, "fields": {"orig_filename": "Razus_Martin_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1", "author": "", "orig_id": 1406927}}, {"model": "metainfo.source", "pk": 5947, "fields": {"orig_filename": "Raz_Arnost_1884_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446", "author": "", "orig_id": 1410477}}, {"model": "metainfo.source", "pk": 5948, "fields": {"orig_filename": "Reali_Giuseppe-Maria_1799_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1", "author": "", "orig_id": 1406928}}, {"model": "metainfo.source", "pk": 5949, "fields": {"orig_filename": "Rebell_Josef_1787_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 2", "author": "", "orig_id": 1406930}}, {"model": "metainfo.source", "pk": 5950, "fields": {"orig_filename": "Raday-Rada_Gedeon_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369", "author": "", "orig_id": 1409705}}, {"model": "metainfo.source", "pk": 5951, "fields": {"orig_filename": "Raday-Rada_Gedeon_1841_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369", "author": "", "orig_id": 1409706}}, {"model": "metainfo.source", "pk": 5952, "fields": {"orig_filename": "Radek_Karl-Bernhardovic_1885_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369f.", "author": "", "orig_id": 1409707}}, {"model": "metainfo.source", "pk": 5953, "fields": {"orig_filename": "Rademacher_Paul_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 370", "author": "", "orig_id": 1409708}}, {"model": "metainfo.source", "pk": 5954, "fields": {"orig_filename": "Radetzky-Radetz_Johann-Josef-Wenzel_1766_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 370f.", "author": "", "orig_id": 1409709}}, {"model": "metainfo.source", "pk": 5955, "fields": {"orig_filename": "Radicevic_Bozidar_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 373f.", "author": "", "orig_id": 1409713}}, {"model": "metainfo.source", "pk": 5956, "fields": {"orig_filename": "Radicevic_Branko_1824_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374", "author": "", "orig_id": 1409714}}, {"model": "metainfo.source", "pk": 5957, "fields": {"orig_filename": "Radics_Peter-Paul_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374", "author": "", "orig_id": 1409715}}, {"model": "metainfo.source", "pk": 5958, "fields": {"orig_filename": "Radic_Antun_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 372", "author": "", "orig_id": 1409711}}, {"model": "metainfo.source", "pk": 5959, "fields": {"orig_filename": "Radic_Stjepan_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 372f.", "author": "", "orig_id": 1409712}}, {"model": "metainfo.source", "pk": 5960, "fields": {"orig_filename": "Radimsky_Vaclav_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374f.", "author": "", "orig_id": 1409716}}, {"model": "metainfo.source", "pk": 5961, "fields": {"orig_filename": "Radimsky_Vaclav_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375", "author": "", "orig_id": 1409717}}, {"model": "metainfo.source", "pk": 5962, "fields": {"orig_filename": "Radimsky_Wenzel_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375", "author": "", "orig_id": 1409718}}, {"model": "metainfo.source", "pk": 5963, "fields": {"orig_filename": "Radinger-Radinghofen_Karl_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 376f.", "author": "", "orig_id": 1409720}}, {"model": "metainfo.source", "pk": 5964, "fields": {"orig_filename": "Radinger_Johann_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375f.", "author": "", "orig_id": 1409719}}, {"model": "metainfo.source", "pk": 5965, "fields": {"orig_filename": "Radivojevich_Paul_1759_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377", "author": "", "orig_id": 1409721}}, {"model": "metainfo.source", "pk": 5966, "fields": {"orig_filename": "Radi_Lorenzo_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 371f.", "author": "", "orig_id": 1409710}}, {"model": "metainfo.source", "pk": 5967, "fields": {"orig_filename": "Radler_Friedrich-Johann_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 378f.", "author": "", "orig_id": 1409795}}, {"model": "metainfo.source", "pk": 5968, "fields": {"orig_filename": "Radlinsky_Andrej-Ludovit_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 379", "author": "", "orig_id": 1409796}}, {"model": "metainfo.source", "pk": 5969, "fields": {"orig_filename": "Radl_Anton_1774_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377", "author": "", "orig_id": 1409722}}, {"model": "metainfo.source", "pk": 5970, "fields": {"orig_filename": "Radl_Emanuel_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377f.", "author": "", "orig_id": 1409723}}, {"model": "metainfo.source", "pk": 5971, "fields": {"orig_filename": "Radnitzky_August_1810_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 379", "author": "", "orig_id": 1409797}}, {"model": "metainfo.source", "pk": 5972, "fields": {"orig_filename": "Radnitzky_Franz_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409798}}, {"model": "metainfo.source", "pk": 5973, "fields": {"orig_filename": "Radnitzky_Karl_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409799}}, {"model": "metainfo.source", "pk": 5974, "fields": {"orig_filename": "Rado-Hilgermann_Laura_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380f.", "author": "", "orig_id": 1409801}}, {"model": "metainfo.source", "pk": 5975, "fields": {"orig_filename": "Rado-Szent-Martony_Gedeon_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381", "author": "", "orig_id": 1409802}}, {"model": "metainfo.source", "pk": 5976, "fields": {"orig_filename": "Rados_Gusztav_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381", "author": "", "orig_id": 1409803}}, {"model": "metainfo.source", "pk": 5977, "fields": {"orig_filename": "Rado_Antal_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409800}}, {"model": "metainfo.source", "pk": 5978, "fields": {"orig_filename": "Radvanszky-Radvany-Sajokaza_Bela_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381f.", "author": "", "orig_id": 1409804}}, {"model": "metainfo.source", "pk": 5979, "fields": {"orig_filename": "Radwanski_Feliks-Pius_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 382f.", "author": "", "orig_id": 1409806}}, {"model": "metainfo.source", "pk": 5980, "fields": {"orig_filename": "Radwanski_Feliks_1789_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 382", "author": "", "orig_id": 1409805}}, {"model": "metainfo.source", "pk": 5981, "fields": {"orig_filename": "Radzikowski-Eljasz_Jan-Kanty-Walery_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 383", "author": "", "orig_id": 1409807}}, {"model": "metainfo.source", "pk": 5982, "fields": {"orig_filename": "Radzikowski-Eljasz_Stanislaw-Wojciech_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 383f.", "author": "", "orig_id": 1409808}}, {"model": "metainfo.source", "pk": 5983, "fields": {"orig_filename": "Radziminski-Luba_Zygmunt_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 384", "author": "", "orig_id": 1409809}}, {"model": "metainfo.source", "pk": 5984, "fields": {"orig_filename": "Radziszewski_Bronislaw_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 384", "author": "", "orig_id": 1409810}}, {"model": "metainfo.source", "pk": 5985, "fields": {"orig_filename": "Radziwonski_Jan_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409811}}, {"model": "metainfo.source", "pk": 5986, "fields": {"orig_filename": "Rad_Jakob-Christof_1799_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 366f.", "author": "", "orig_id": 1409633}}, {"model": "metainfo.source", "pk": 5987, "fields": {"orig_filename": "Raedler_Karl-Robert_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409812}}, {"model": "metainfo.source", "pk": 5988, "fields": {"orig_filename": "Raedlhammer_Karl_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409813}}, {"model": "metainfo.source", "pk": 5989, "fields": {"orig_filename": "Raevskij_Michail-Fedorovic_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385f.", "author": "", "orig_id": 1409814}}, {"model": "metainfo.source", "pk": 5990, "fields": {"orig_filename": "Rafacz_Jozef_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 386", "author": "", "orig_id": 1409815}}, {"model": "metainfo.source", "pk": 5991, "fields": {"orig_filename": "Rafael_Franz-X_1816_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 386f.", "author": "", "orig_id": 1409816}}, {"model": "metainfo.source", "pk": 5992, "fields": {"orig_filename": "Rafes_Moses_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387", "author": "", "orig_id": 1409817}}, {"model": "metainfo.source", "pk": 5993, "fields": {"orig_filename": "Raffalt_Ignaz_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387", "author": "", "orig_id": 1409886}}, {"model": "metainfo.source", "pk": 5994, "fields": {"orig_filename": "Raffalt_Johann-Gualbert_1836_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387f.", "author": "", "orig_id": 1409887}}, {"model": "metainfo.source", "pk": 5995, "fields": {"orig_filename": "Raffay_Leopold_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388", "author": "", "orig_id": 1409888}}, {"model": "metainfo.source", "pk": 5996, "fields": {"orig_filename": "Raffay_Sandor_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388", "author": "", "orig_id": 1409745}}, {"model": "metainfo.source", "pk": 5997, "fields": {"orig_filename": "Raffeiner_Emanuel_1881_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388f.", "author": "", "orig_id": 1409889}}, {"model": "metainfo.source", "pk": 5998, "fields": {"orig_filename": "Raffeiner_Johann-Stefan_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 389", "author": "", "orig_id": 1409890}}, {"model": "metainfo.source", "pk": 5999, "fields": {"orig_filename": "Raffelsberger_Franz_1793_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 389f.", "author": "", "orig_id": 1409891}}, {"model": "metainfo.source", "pk": 6000, "fields": {"orig_filename": "Raffl_Franz_1775_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390", "author": "", "orig_id": 1409892}}, {"model": "metainfo.source", "pk": 6001, "fields": {"orig_filename": "Raffl_Johannes_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390", "author": "", "orig_id": 1409893}}, {"model": "metainfo.source", "pk": 6002, "fields": {"orig_filename": "Rahl_Karl-Heinrich_1779_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409895}}, {"model": "metainfo.source", "pk": 6003, "fields": {"orig_filename": "Rahl_Karl_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390f.", "author": "", "orig_id": 1409894}}, {"model": "metainfo.source", "pk": 6004, "fields": {"orig_filename": "Raicevich_Massimiliano-Roberto_1878_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409897}}, {"model": "metainfo.source", "pk": 6005, "fields": {"orig_filename": "Raic_Bozidar_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409896}}, {"model": "metainfo.source", "pk": 6006, "fields": {"orig_filename": "Raimann_Emil_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409898}}, {"model": "metainfo.source", "pk": 6007, "fields": {"orig_filename": "Raimann_Franz_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409899}}, {"model": "metainfo.source", "pk": 6008, "fields": {"orig_filename": "Raimann_Johann-Nep_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409900}}, {"model": "metainfo.source", "pk": 6009, "fields": {"orig_filename": "Raimann_Rudolf_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392f.", "author": "", "orig_id": 1409901}}, {"model": "metainfo.source", "pk": 6010, "fields": {"orig_filename": "Raimondi_Antonio_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 393", "author": "", "orig_id": 1409902}}, {"model": "metainfo.source", "pk": 6011, "fields": {"orig_filename": "Raimondi_Lorenz_1752_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 393f.", "author": "", "orig_id": 1409903}}, {"model": "metainfo.source", "pk": 6012, "fields": {"orig_filename": "Raimund_Ferdinand_1790_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 394f.", "author": "", "orig_id": 1409904}}, {"model": "metainfo.source", "pk": 6013, "fields": {"orig_filename": "Rainer-Ferdinand___1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 395f.", "author": "", "orig_id": 1409905}}, {"model": "metainfo.source", "pk": 6014, "fields": {"orig_filename": "Rainer-Harbach_Hans_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398f.", "author": "", "orig_id": 1409982}}, {"model": "metainfo.source", "pk": 6015, "fields": {"orig_filename": "Rainer-Josef___1783_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 396", "author": "", "orig_id": 1409906}}, {"model": "metainfo.source", "pk": 6016, "fields": {"orig_filename": "Rainer_Johann-Georg_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 396", "author": "", "orig_id": 1409907}}, {"model": "metainfo.source", "pk": 6017, "fields": {"orig_filename": "Rainer_Josef_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397", "author": "", "orig_id": 1409908}}, {"model": "metainfo.source", "pk": 6018, "fields": {"orig_filename": "Rainer_Ludwig_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397", "author": "", "orig_id": 1409909}}, {"model": "metainfo.source", "pk": 6019, "fields": {"orig_filename": "Rainer_Oskar_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397f.", "author": "", "orig_id": 1409910}}, {"model": "metainfo.source", "pk": 6020, "fields": {"orig_filename": "Rainer_Paul_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398", "author": "", "orig_id": 1409980}}, {"model": "metainfo.source", "pk": 6021, "fields": {"orig_filename": "Rainer_Virgil_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398", "author": "", "orig_id": 1409981}}, {"model": "metainfo.source", "pk": 6022, "fields": {"orig_filename": "Rainoldi_Paul_1781_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 399f.", "author": "", "orig_id": 1409984}}, {"model": "metainfo.source", "pk": 6023, "fields": {"orig_filename": "Rainold_Karl-Eduard_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 399", "author": "", "orig_id": 1409983}}, {"model": "metainfo.source", "pk": 6024, "fields": {"orig_filename": "Raisp-Caliga_Erwin_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400", "author": "", "orig_id": 1409986}}, {"model": "metainfo.source", "pk": 6025, "fields": {"orig_filename": "Rais_Karel-Vaclav_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400", "author": "", "orig_id": 1409985}}, {"model": "metainfo.source", "pk": 6026, "fields": {"orig_filename": "Rajacic-Brinski_Josif_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400f.", "author": "", "orig_id": 1409987}}, {"model": "metainfo.source", "pk": 6027, "fields": {"orig_filename": "Rajkovic_Djordje_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401", "author": "", "orig_id": 1409988}}, {"model": "metainfo.source", "pk": 6028, "fields": {"orig_filename": "Rajman_Franz-Josef_1762_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401", "author": "", "orig_id": 1409989}}, {"model": "metainfo.source", "pk": 6029, "fields": {"orig_filename": "Rakic_Vikentije_1750_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409991}}, {"model": "metainfo.source", "pk": 6030, "fields": {"orig_filename": "Rakosi-Mindszent_Jenoe_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402f.", "author": "", "orig_id": 1409994}}, {"model": "metainfo.source", "pk": 6031, "fields": {"orig_filename": "Rakosi_Szidi_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409992}}, {"model": "metainfo.source", "pk": 6032, "fields": {"orig_filename": "Rakosi_Viktor_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409993}}, {"model": "metainfo.source", "pk": 6033, "fields": {"orig_filename": "Rakous_Vojtech_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 403", "author": "", "orig_id": 1409995}}, {"model": "metainfo.source", "pk": 6034, "fields": {"orig_filename": "Rakovac_Dragutin_1813_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 403f.", "author": "", "orig_id": 1409996}}, {"model": "metainfo.source", "pk": 6035, "fields": {"orig_filename": "Rakovszky-Nagyrako-Nagyselmecz_Adalbert_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404", "author": "", "orig_id": 1409997}}, {"model": "metainfo.source", "pk": 6036, "fields": {"orig_filename": "Rakowianu_Robert_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404", "author": "", "orig_id": 1409998}}, {"model": "metainfo.source", "pk": 6037, "fields": {"orig_filename": "Rakowitsch_Adolf_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404f.", "author": "", "orig_id": 1409999}}, {"model": "metainfo.source", "pk": 6038, "fields": {"orig_filename": "Rakusch_Julius_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410000}}, {"model": "metainfo.source", "pk": 6039, "fields": {"orig_filename": "Rak_Jan_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401f.", "author": "", "orig_id": 1409990}}, {"model": "metainfo.source", "pk": 6040, "fields": {"orig_filename": "Ralli_Cimone_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410001}}, {"model": "metainfo.source", "pk": 6041, "fields": {"orig_filename": "Ralli_Paolo_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410002}}, {"model": "metainfo.source", "pk": 6042, "fields": {"orig_filename": "Ramberg_Arthur-Georg_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406", "author": "", "orig_id": 1410074}}, {"model": "metainfo.source", "pk": 6043, "fields": {"orig_filename": "Ramberg_August_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406", "author": "", "orig_id": 1410075}}, {"model": "metainfo.source", "pk": 6044, "fields": {"orig_filename": "Ramberg_Hermann_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406f.", "author": "", "orig_id": 1410076}}, {"model": "metainfo.source", "pk": 6045, "fields": {"orig_filename": "Ramek_Rudolf_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 407", "author": "", "orig_id": 1410077}}, {"model": "metainfo.source", "pk": 6046, "fields": {"orig_filename": "Ramello_Luigi_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 407f.", "author": "", "orig_id": 1410078}}, {"model": "metainfo.source", "pk": 6047, "fields": {"orig_filename": "Ramelmayr_Adam_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408", "author": "", "orig_id": 1410079}}, {"model": "metainfo.source", "pk": 6048, "fields": {"orig_filename": "Ramming-Riedkirchen_Wilhelm_1815_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408", "author": "", "orig_id": 1410080}}, {"model": "metainfo.source", "pk": 6049, "fields": {"orig_filename": "Ramsauer_Ernst_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408f.", "author": "", "orig_id": 1410081}}, {"model": "metainfo.source", "pk": 6050, "fields": {"orig_filename": "Ramsauer_Johann-Georg_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 409", "author": "", "orig_id": 1410082}}, {"model": "metainfo.source", "pk": 6051, "fields": {"orig_filename": "Ramult_Stefan-Samuel_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 409f.", "author": "", "orig_id": 1410083}}, {"model": "metainfo.source", "pk": 6052, "fields": {"orig_filename": "Ramus_Pierre_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 410", "author": "", "orig_id": 1410084}}, {"model": "metainfo.source", "pk": 6053, "fields": {"orig_filename": "Pulgher_Domenico_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410746}}, {"model": "metainfo.source", "pk": 6054, "fields": {"orig_filename": "Pulic_Juraj_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410816}}, {"model": "metainfo.source", "pk": 6055, "fields": {"orig_filename": "Pulitzer_Josef_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330f.", "author": "", "orig_id": 1410817}}, {"model": "metainfo.source", "pk": 6056, "fields": {"orig_filename": "Pulkrabek_Josef_1887_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 331", "author": "", "orig_id": 1410818}}, {"model": "metainfo.source", "pk": 6057, "fields": {"orig_filename": "Pulle_Leopoldo_1835_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 331f.", "author": "", "orig_id": 1410819}}, {"model": "metainfo.source", "pk": 6058, "fields": {"orig_filename": "Pulszky-Cselfalva-Lubocz_Agost_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 332", "author": "", "orig_id": 1410820}}, {"model": "metainfo.source", "pk": 6059, "fields": {"orig_filename": "Pulszky-Cselfalva-Lubocz_Ferenc_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 332f.", "author": "", "orig_id": 1410821}}, {"model": "metainfo.source", "pk": 6060, "fields": {"orig_filename": "Pult_Simeon_1740_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333", "author": "", "orig_id": 1410822}}, {"model": "metainfo.source", "pk": 6061, "fields": {"orig_filename": "Puluj_Johann_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333", "author": "", "orig_id": 1410823}}, {"model": "metainfo.source", "pk": 6062, "fields": {"orig_filename": "Pulz_Ludwig_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333f.", "author": "", "orig_id": 1410824}}, {"model": "metainfo.source", "pk": 6063, "fields": {"orig_filename": "Pummerer_Anton-Georg_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334", "author": "", "orig_id": 1410825}}, {"model": "metainfo.source", "pk": 6064, "fields": {"orig_filename": "Pumnul_Aron_1818_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334", "author": "", "orig_id": 1410826}}, {"model": "metainfo.source", "pk": 6065, "fields": {"orig_filename": "Pungur_Gyula_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334f.", "author": "", "orig_id": 1410827}}, {"model": "metainfo.source", "pk": 6066, "fields": {"orig_filename": "Puntar_Josip_1884_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 335", "author": "", "orig_id": 1410828}}, {"model": "metainfo.source", "pk": 6067, "fields": {"orig_filename": "Puntigam_Anton_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 335f.", "author": "", "orig_id": 1410829}}, {"model": "metainfo.source", "pk": 6068, "fields": {"orig_filename": "Puntschart_Paul_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336", "author": "", "orig_id": 1410830}}, {"model": "metainfo.source", "pk": 6069, "fields": {"orig_filename": "Puntschart_Valentin_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336", "author": "", "orig_id": 1410831}}, {"model": "metainfo.source", "pk": 6070, "fields": {"orig_filename": "Pupin_Michael-Idvorsky_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336f.", "author": "", "orig_id": 1410832}}, {"model": "metainfo.source", "pk": 6071, "fields": {"orig_filename": "Pupovac_Dominik_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337", "author": "", "orig_id": 1410833}}, {"model": "metainfo.source", "pk": 6072, "fields": {"orig_filename": "Pupp_Julius_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337", "author": "", "orig_id": 1410834}}, {"model": "metainfo.source", "pk": 6073, "fields": {"orig_filename": "Purger_Johann-Bapt_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337f.", "author": "", "orig_id": 1410835}}, {"model": "metainfo.source", "pk": 6074, "fields": {"orig_filename": "Purkarthofer_Matthias_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338", "author": "", "orig_id": 1410836}}, {"model": "metainfo.source", "pk": 6075, "fields": {"orig_filename": "Purkyne_Cyrill_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338", "author": "", "orig_id": 1410837}}, {"model": "metainfo.source", "pk": 6076, "fields": {"orig_filename": "Purkyne_Emanuel_1831_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338f.", "author": "", "orig_id": 1410838}}, {"model": "metainfo.source", "pk": 6077, "fields": {"orig_filename": "Purkyne_Jan-Ev_1787_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 339", "author": "", "orig_id": 1410905}}, {"model": "metainfo.source", "pk": 6078, "fields": {"orig_filename": "Purkyne_Josef-Heinrich_1793_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 339f.", "author": "", "orig_id": 1410906}}, {"model": "metainfo.source", "pk": 6079, "fields": {"orig_filename": "Purkyne_Karel_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340", "author": "", "orig_id": 1410907}}, {"model": "metainfo.source", "pk": 6080, "fields": {"orig_filename": "Purschka_Norbert_1813_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340", "author": "", "orig_id": 1410908}}, {"model": "metainfo.source", "pk": 6081, "fields": {"orig_filename": "Purtscheller_Ludwig_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340f.", "author": "", "orig_id": 1410910}}, {"model": "metainfo.source", "pk": 6082, "fields": {"orig_filename": "Purtscher-Eschenburg_Franz-X_1768_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342", "author": "", "orig_id": 1410913}}, {"model": "metainfo.source", "pk": 6083, "fields": {"orig_filename": "Purtscher_Adolf_1819_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 341", "author": "", "orig_id": 1410911}}, {"model": "metainfo.source", "pk": 6084, "fields": {"orig_filename": "Purtscher_Othmar_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 341f.", "author": "", "orig_id": 1410912}}, {"model": "metainfo.source", "pk": 6085, "fields": {"orig_filename": "Puscariu_Emil_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342", "author": "", "orig_id": 1410914}}, {"model": "metainfo.source", "pk": 6086, "fields": {"orig_filename": "Puscariu_Sextil_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342f.", "author": "", "orig_id": 1410915}}, {"model": "metainfo.source", "pk": 6087, "fields": {"orig_filename": "Puschi_Alberto_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343", "author": "", "orig_id": 1410917}}, {"model": "metainfo.source", "pk": 6088, "fields": {"orig_filename": "Puschl_Karl_1825_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343f.", "author": "", "orig_id": 1410918}}, {"model": "metainfo.source", "pk": 6089, "fields": {"orig_filename": "Puschl_Leopold_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 344", "author": "", "orig_id": 1410919}}, {"model": "metainfo.source", "pk": 6090, "fields": {"orig_filename": "Puschmann_Theodor_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 344", "author": "", "orig_id": 1410920}}, {"model": "metainfo.source", "pk": 6091, "fields": {"orig_filename": "Pusch_Karl_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343", "author": "", "orig_id": 1410916}}, {"model": "metainfo.source", "pk": 6092, "fields": {"orig_filename": "Puskas-Ditro_Tivadar_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345", "author": "", "orig_id": 1410921}}, {"model": "metainfo.source", "pk": 6093, "fields": {"orig_filename": "Pusswald_Karl_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345", "author": "", "orig_id": 1410922}}, {"model": "metainfo.source", "pk": 6094, "fields": {"orig_filename": "Puszet_Ludwik_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345f.", "author": "", "orig_id": 1410923}}, {"model": "metainfo.source", "pk": 6095, "fields": {"orig_filename": "Puthon_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 346", "author": "", "orig_id": 1410924}}, {"model": "metainfo.source", "pk": 6096, "fields": {"orig_filename": "Putick_Viljem_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 346f.", "author": "", "orig_id": 1410926}}, {"model": "metainfo.source", "pk": 6097, "fields": {"orig_filename": "Putinati_Alessandro_1801_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410927}}, {"model": "metainfo.source", "pk": 6098, "fields": {"orig_filename": "Putinati_Francesco_1775_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410928}}, {"model": "metainfo.source", "pk": 6099, "fields": {"orig_filename": "Putzer-Reibegg_Johann_1801_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348f.", "author": "", "orig_id": 1409515}}, {"model": "metainfo.source", "pk": 6100, "fields": {"orig_filename": "Putz_Franz_1873_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410929}}, {"model": "metainfo.source", "pk": 6101, "fields": {"orig_filename": "Putz_Gottlieb_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347f.", "author": "", "orig_id": 1410930}}, {"model": "metainfo.source", "pk": 6102, "fields": {"orig_filename": "Putz_Josef_1877_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348", "author": "", "orig_id": 1410931}}, {"model": "metainfo.source", "pk": 6103, "fields": {"orig_filename": "Putz_Leo_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348", "author": "", "orig_id": 1409514}}, {"model": "metainfo.source", "pk": 6104, "fields": {"orig_filename": "Puzyna_Jan_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349", "author": "", "orig_id": 1409517}}, {"model": "metainfo.source", "pk": 6105, "fields": {"orig_filename": "Puzyna_Jozef_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349f.", "author": "", "orig_id": 1409518}}, {"model": "metainfo.source", "pk": 6106, "fields": {"orig_filename": "Pyrker-Felsoe-Eoer_Johann-Ladislaus_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 350", "author": "", "orig_id": 1409519}}, {"model": "metainfo.source", "pk": 6107, "fields": {"orig_filename": "Quadrat_Bernhard_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 350f.", "author": "", "orig_id": 1409520}}, {"model": "metainfo.source", "pk": 6108, "fields": {"orig_filename": "Quadrio_Maurizio_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351f.", "author": "", "orig_id": 1409523}}, {"model": "metainfo.source", "pk": 6109, "fields": {"orig_filename": "Quadri_Antonio_1776_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351", "author": "", "orig_id": 1409521}}, {"model": "metainfo.source", "pk": 6110, "fields": {"orig_filename": "Quadri_Giovanni-Batt_1780_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351", "author": "", "orig_id": 1409522}}, {"model": "metainfo.source", "pk": 6111, "fields": {"orig_filename": "Quarenghi_Giacomo-Antonio-Domenico_1744_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 352", "author": "", "orig_id": 1409524}}, {"model": "metainfo.source", "pk": 6112, "fields": {"orig_filename": "Quarenghi_Guglielmo_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 352f.", "author": "", "orig_id": 1409525}}, {"model": "metainfo.source", "pk": 6113, "fields": {"orig_filename": "Quast_Johann-Zacharias_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 353", "author": "", "orig_id": 1409526}}, {"model": "metainfo.source", "pk": 6114, "fields": {"orig_filename": "Querena_Lattanzio_1768_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 353f.", "author": "", "orig_id": 1409527}}, {"model": "metainfo.source", "pk": 6115, "fields": {"orig_filename": "Querini-Stampalia_Giovanni_1799_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354", "author": "", "orig_id": 1409528}}, {"model": "metainfo.source", "pk": 6116, "fields": {"orig_filename": "Quidenus_Franz_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354", "author": "", "orig_id": 1409529}}, {"model": "metainfo.source", "pk": 6117, "fields": {"orig_filename": "Quiquerez-Beaujeu_Ferdo_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355", "author": "", "orig_id": 1409531}}, {"model": "metainfo.source", "pk": 6118, "fields": {"orig_filename": "Quiquerez_Hermann_1849_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354f.", "author": "", "orig_id": 1409530}}, {"model": "metainfo.source", "pk": 6119, "fields": {"orig_filename": "Quittner_Rudolf_1872_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355", "author": "", "orig_id": 1409532}}, {"model": "metainfo.source", "pk": 6120, "fields": {"orig_filename": "Raab-Rabenau_Karl_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357", "author": "", "orig_id": 1409538}}, {"model": "metainfo.source", "pk": 6121, "fields": {"orig_filename": "Raabe_Josef-Ludwig_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357f.", "author": "", "orig_id": 1409539}}, {"model": "metainfo.source", "pk": 6122, "fields": {"orig_filename": "Raabe_Karl-August_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358", "author": "", "orig_id": 1409610}}, {"model": "metainfo.source", "pk": 6123, "fields": {"orig_filename": "Raabl-Werner_Heinrich_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358", "author": "", "orig_id": 1409611}}, {"model": "metainfo.source", "pk": 6124, "fields": {"orig_filename": "Raab_Franz_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355f.", "author": "", "orig_id": 1409533}}, {"model": "metainfo.source", "pk": 6125, "fields": {"orig_filename": "Raab_Georg-Martin-Ignaz_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356", "author": "", "orig_id": 1409534}}, {"model": "metainfo.source", "pk": 6126, "fields": {"orig_filename": "Raab_Isidor_1826_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356", "author": "", "orig_id": 1409535}}, {"model": "metainfo.source", "pk": 6127, "fields": {"orig_filename": "Raab_Johann_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356f.", "author": "", "orig_id": 1409536}}, {"model": "metainfo.source", "pk": 6128, "fields": {"orig_filename": "Raab_Josef_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357", "author": "", "orig_id": 1409537}}, {"model": "metainfo.source", "pk": 6129, "fields": {"orig_filename": "Rabboni_Giuseppe_1800_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409613}}, {"model": "metainfo.source", "pk": 6130, "fields": {"orig_filename": "Rabeder_Simon_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409614}}, {"model": "metainfo.source", "pk": 6131, "fields": {"orig_filename": "Rabensteiner_Augustin_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409615}}, {"model": "metainfo.source", "pk": 6132, "fields": {"orig_filename": "Rabensteiner_Eduard_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359f.", "author": "", "orig_id": 1409616}}, {"model": "metainfo.source", "pk": 6133, "fields": {"orig_filename": "Rabl_Hans_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 360", "author": "", "orig_id": 1409617}}, {"model": "metainfo.source", "pk": 6134, "fields": {"orig_filename": "Rabl_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 360f.", "author": "", "orig_id": 1409618}}, {"model": "metainfo.source", "pk": 6135, "fields": {"orig_filename": "Rabl_Karl_1787_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361", "author": "", "orig_id": 1409744}}, {"model": "metainfo.source", "pk": 6136, "fields": {"orig_filename": "Rabl_Karl_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361", "author": "", "orig_id": 1409619}}, {"model": "metainfo.source", "pk": 6137, "fields": {"orig_filename": "Rabl_Walter_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361f.", "author": "", "orig_id": 1409620}}, {"model": "metainfo.source", "pk": 6138, "fields": {"orig_filename": "Rab_Vaclav_1804_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358f.", "author": "", "orig_id": 1409612}}, {"model": "metainfo.source", "pk": 6139, "fields": {"orig_filename": "Racchetti_Alessandro_1789_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409621}}, {"model": "metainfo.source", "pk": 6140, "fields": {"orig_filename": "Racchetti_Vincenzo_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409622}}, {"model": "metainfo.source", "pk": 6141, "fields": {"orig_filename": "Racek_Adolf_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409623}}, {"model": "metainfo.source", "pk": 6142, "fields": {"orig_filename": "Rachmann_Wilhelm_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362f.", "author": "", "orig_id": 1409624}}, {"model": "metainfo.source", "pk": 6143, "fields": {"orig_filename": "Raciborski_Aleksander_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 363", "author": "", "orig_id": 1409625}}, {"model": "metainfo.source", "pk": 6144, "fields": {"orig_filename": "Raciborski_Marian_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 363f.", "author": "", "orig_id": 1409626}}, {"model": "metainfo.source", "pk": 6145, "fields": {"orig_filename": "Racic_Josip_1885_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 364", "author": "", "orig_id": 1409627}}, {"model": "metainfo.source", "pk": 6146, "fields": {"orig_filename": "Racki_Franjo_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 364f.", "author": "", "orig_id": 1409628}}, {"model": "metainfo.source", "pk": 6147, "fields": {"orig_filename": "Raczynski_Jan-Rudolf_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 366", "author": "", "orig_id": 1409632}}, {"model": "metainfo.source", "pk": 6148, "fields": {"orig_filename": "Racz_Kalman_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365", "author": "", "orig_id": 1409629}}, {"model": "metainfo.source", "pk": 6149, "fields": {"orig_filename": "Racz_Karoly_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365", "author": "", "orig_id": 1409630}}, {"model": "metainfo.source", "pk": 6150, "fields": {"orig_filename": "Racz_Lajos_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365f.", "author": "", "orig_id": 1409631}}, {"model": "metainfo.source", "pk": 6151, "fields": {"orig_filename": "Radacsi_Gyoergy_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367", "author": "", "orig_id": 1409700}}, {"model": "metainfo.source", "pk": 6152, "fields": {"orig_filename": "Radaelli_Giuseppe_1833_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367", "author": "", "orig_id": 1409701}}, {"model": "metainfo.source", "pk": 6153, "fields": {"orig_filename": "Radakovics_Jozsef_1823_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 368", "author": "", "orig_id": 1409703}}, {"model": "metainfo.source", "pk": 6154, "fields": {"orig_filename": "Raday-Rada_Gedeon_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 368f.", "author": "", "orig_id": 1409704}}, {"model": "metainfo.source", "pk": 6155, "fields": {"orig_filename": "Prochaska_Frantisek-X_1740_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410364}}, {"model": "metainfo.source", "pk": 6156, "fields": {"orig_filename": "Prochaska_Frantisek_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292f.", "author": "", "orig_id": 1410365}}, {"model": "metainfo.source", "pk": 6157, "fields": {"orig_filename": "Prochaska_Frantisek_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 293", "author": "", "orig_id": 1410366}}, {"model": "metainfo.source", "pk": 6158, "fields": {"orig_filename": "Prochaska_Frantisek_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 293f.", "author": "", "orig_id": 1410367}}, {"model": "metainfo.source", "pk": 6159, "fields": {"orig_filename": "Prochaska_Georg_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294", "author": "", "orig_id": 1410368}}, {"model": "metainfo.source", "pk": 6160, "fields": {"orig_filename": "Prochaska_Ignaz-Josef_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294", "author": "", "orig_id": 1409743}}, {"model": "metainfo.source", "pk": 6161, "fields": {"orig_filename": "Prochaska_Josef-Vladimir_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294f.", "author": "", "orig_id": 1410369}}, {"model": "metainfo.source", "pk": 6162, "fields": {"orig_filename": "Prochaska_Julius_1859_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295", "author": "", "orig_id": 1410370}}, {"model": "metainfo.source", "pk": 6163, "fields": {"orig_filename": "Prochaska_Julius_1863_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295", "author": "", "orig_id": 1410371}}, {"model": "metainfo.source", "pk": 6164, "fields": {"orig_filename": "Prochaska_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295f.", "author": "", "orig_id": 1410372}}, {"model": "metainfo.source", "pk": 6165, "fields": {"orig_filename": "Prochaska_Ludevit_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 296", "author": "", "orig_id": 1410443}}, {"model": "metainfo.source", "pk": 6166, "fields": {"orig_filename": "Prochaska_Ottokar_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 296f.", "author": "", "orig_id": 1410444}}, {"model": "metainfo.source", "pk": 6167, "fields": {"orig_filename": "Prochaska_Ottokar_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297", "author": "", "orig_id": 1410445}}, {"model": "metainfo.source", "pk": 6168, "fields": {"orig_filename": "Prochaska_Robert_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297", "author": "", "orig_id": 1410446}}, {"model": "metainfo.source", "pk": 6169, "fields": {"orig_filename": "Prochaska_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297f.", "author": "", "orig_id": 1410447}}, {"model": "metainfo.source", "pk": 6170, "fields": {"orig_filename": "Proch_Heinrich_1809_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 290f.", "author": "", "orig_id": 1410359}}, {"model": "metainfo.source", "pk": 6171, "fields": {"orig_filename": "Prockner_Franz-Kajetan_1783_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298", "author": "", "orig_id": 1410449}}, {"model": "metainfo.source", "pk": 6172, "fields": {"orig_filename": "Procksch_Rudolf_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298f.", "author": "", "orig_id": 1410450}}, {"model": "metainfo.source", "pk": 6173, "fields": {"orig_filename": "Prodan_Ivo_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299", "author": "", "orig_id": 1410451}}, {"model": "metainfo.source", "pk": 6174, "fields": {"orig_filename": "Prodinger_Hans_1887_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299", "author": "", "orig_id": 1410452}}, {"model": "metainfo.source", "pk": 6175, "fields": {"orig_filename": "Prodinger_Karl_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299f.", "author": "", "orig_id": 1410453}}, {"model": "metainfo.source", "pk": 6176, "fields": {"orig_filename": "Proell_Karl_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300", "author": "", "orig_id": 1410454}}, {"model": "metainfo.source", "pk": 6177, "fields": {"orig_filename": "Proell_Laurenz_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300", "author": "", "orig_id": 1410455}}, {"model": "metainfo.source", "pk": 6178, "fields": {"orig_filename": "Profeld_Hubert_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300f.", "author": "", "orig_id": 1410456}}, {"model": "metainfo.source", "pk": 6179, "fields": {"orig_filename": "Prokesch-Osten_Anton_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 301f.", "author": "", "orig_id": 1410457}}, {"model": "metainfo.source", "pk": 6180, "fields": {"orig_filename": "Prokop_August_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302", "author": "", "orig_id": 1410460}}, {"model": "metainfo.source", "pk": 6181, "fields": {"orig_filename": "Prokop_Josef_1898_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302", "author": "", "orig_id": 1410461}}, {"model": "metainfo.source", "pk": 6182, "fields": {"orig_filename": "Prokosch_Anton_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302f.", "author": "", "orig_id": 1410462}}, {"model": "metainfo.source", "pk": 6183, "fields": {"orig_filename": "Prokosch_Eduard_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 303", "author": "", "orig_id": 1410463}}, {"model": "metainfo.source", "pk": 6184, "fields": {"orig_filename": "Proksch_Anton_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 303", "author": "", "orig_id": 1410464}}, {"model": "metainfo.source", "pk": 6185, "fields": {"orig_filename": "Proksch_Johann-Karl_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 303f.", "author": "", "orig_id": 1410465}}, {"model": "metainfo.source", "pk": 6186, "fields": {"orig_filename": "Proksch_Josef_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304", "author": "", "orig_id": 1410466}}, {"model": "metainfo.source", "pk": 6187, "fields": {"orig_filename": "Proksch_Josef_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304", "author": "", "orig_id": 1410535}}, {"model": "metainfo.source", "pk": 6188, "fields": {"orig_filename": "Promberger_Johann_1779_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305", "author": "", "orig_id": 1410537}}, {"model": "metainfo.source", "pk": 6189, "fields": {"orig_filename": "Promberger_Johann_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305", "author": "", "orig_id": 1410538}}, {"model": "metainfo.source", "pk": 6190, "fields": {"orig_filename": "Promber_Adolf_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304f.", "author": "", "orig_id": 1410536}}, {"model": "metainfo.source", "pk": 6191, "fields": {"orig_filename": "Pronay-Totprona-Blatnica_Gabor_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305f.", "author": "", "orig_id": 1410539}}, {"model": "metainfo.source", "pk": 6192, "fields": {"orig_filename": "Proschek_Ignaz_1827_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306", "author": "", "orig_id": 1410540}}, {"model": "metainfo.source", "pk": 6193, "fields": {"orig_filename": "Proschko_Franz-Isidor_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306", "author": "", "orig_id": 1410541}}, {"model": "metainfo.source", "pk": 6194, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Emanuel_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306f.", "author": "", "orig_id": 1410542}}, {"model": "metainfo.source", "pk": 6195, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Emanuel_1849_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 307f.", "author": "", "orig_id": 1410543}}, {"model": "metainfo.source", "pk": 6196, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Maximilian_1851_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308", "author": "", "orig_id": 1410544}}, {"model": "metainfo.source", "pk": 6197, "fields": {"orig_filename": "Prosniz_Adolf_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308", "author": "", "orig_id": 1410545}}, {"model": "metainfo.source", "pk": 6198, "fields": {"orig_filename": "Prost_Josef_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308f.", "author": "", "orig_id": 1410546}}, {"model": "metainfo.source", "pk": 6199, "fields": {"orig_filename": "Provazek-Lanov_Stanislaus_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 309", "author": "", "orig_id": 1410547}}, {"model": "metainfo.source", "pk": 6200, "fields": {"orig_filename": "Provaznik_Anatol_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 309f.", "author": "", "orig_id": 1410548}}, {"model": "metainfo.source", "pk": 6201, "fields": {"orig_filename": "Prucha_Jindrich_1886_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 310", "author": "", "orig_id": 1410549}}, {"model": "metainfo.source", "pk": 6202, "fields": {"orig_filename": "Pruckner_Karoline_1832_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 310", "author": "", "orig_id": 1410550}}, {"model": "metainfo.source", "pk": 6203, "fields": {"orig_filename": "Pruenster_Georg_1774_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410551}}, {"model": "metainfo.source", "pk": 6204, "fields": {"orig_filename": "Pruenster_Johann_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410552}}, {"model": "metainfo.source", "pk": 6205, "fields": {"orig_filename": "Prueschenk-Lindenhoven_Otto_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410553}}, {"model": "metainfo.source", "pk": 6206, "fields": {"orig_filename": "Pruewer_Julius_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311f.", "author": "", "orig_id": 1410554}}, {"model": "metainfo.source", "pk": 6207, "fields": {"orig_filename": "Prugger_Franz-Sales_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312", "author": "", "orig_id": 1410555}}, {"model": "metainfo.source", "pk": 6208, "fields": {"orig_filename": "Prusak_Josef_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312", "author": "", "orig_id": 1410556}}, {"model": "metainfo.source", "pk": 6209, "fields": {"orig_filename": "Prutscher_Otto_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312f.", "author": "", "orig_id": 1410557}}, {"model": "metainfo.source", "pk": 6210, "fields": {"orig_filename": "Pruzsinszky_Pal_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313", "author": "", "orig_id": 1410558}}, {"model": "metainfo.source", "pk": 6211, "fields": {"orig_filename": "Prybila_Karl_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313", "author": "", "orig_id": 1410626}}, {"model": "metainfo.source", "pk": 6212, "fields": {"orig_filename": "Prylinski_Tomasz_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313f.", "author": "", "orig_id": 1410627}}, {"model": "metainfo.source", "pk": 6213, "fields": {"orig_filename": "Przedak-Burgwehr_Karl_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314", "author": "", "orig_id": 1410629}}, {"model": "metainfo.source", "pk": 6214, "fields": {"orig_filename": "Przedak_Aladar-Guido_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314", "author": "", "orig_id": 1410628}}, {"model": "metainfo.source", "pk": 6215, "fields": {"orig_filename": "Przibram-Gladona_Ludwig_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 315", "author": "", "orig_id": 1410631}}, {"model": "metainfo.source", "pk": 6216, "fields": {"orig_filename": "Przibram_Hans-Leo_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314f.", "author": "", "orig_id": 1410630}}, {"model": "metainfo.source", "pk": 6217, "fields": {"orig_filename": "Przybyszewski_Stanislaw_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 315f.", "author": "", "orig_id": 1410632}}, {"model": "metainfo.source", "pk": 6218, "fields": {"orig_filename": "Przychocki_Gustaw-Edward_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 316", "author": "", "orig_id": 1410633}}, {"model": "metainfo.source", "pk": 6219, "fields": {"orig_filename": "Przylecki_Stanislaw_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 316f.", "author": "", "orig_id": 1410634}}, {"model": "metainfo.source", "pk": 6220, "fields": {"orig_filename": "Pschorn_Karl_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317", "author": "", "orig_id": 1410635}}, {"model": "metainfo.source", "pk": 6221, "fields": {"orig_filename": "Psenner_Anton_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317", "author": "", "orig_id": 1410636}}, {"model": "metainfo.source", "pk": 6222, "fields": {"orig_filename": "Psenner_Josef_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317f.", "author": "", "orig_id": 1410637}}, {"model": "metainfo.source", "pk": 6223, "fields": {"orig_filename": "Psenner_Ludwig_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318", "author": "", "orig_id": 1410638}}, {"model": "metainfo.source", "pk": 6224, "fields": {"orig_filename": "Psensky_Felix_1897_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318", "author": "", "orig_id": 1410639}}, {"model": "metainfo.source", "pk": 6225, "fields": {"orig_filename": "Pserhofer_Arthur_1873_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318f.", "author": "", "orig_id": 1410640}}, {"model": "metainfo.source", "pk": 6226, "fields": {"orig_filename": "Pstross_Frantisek-Vaclav_1823_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319", "author": "", "orig_id": 1410641}}, {"model": "metainfo.source", "pk": 6227, "fields": {"orig_filename": "Ptasnik_Jan_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319", "author": "", "orig_id": 1410642}}, {"model": "metainfo.source", "pk": 6228, "fields": {"orig_filename": "Pucelj_Ivan_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 320", "author": "", "orig_id": 1410644}}, {"model": "metainfo.source", "pk": 6229, "fields": {"orig_filename": "Puchalski_Stanislaus_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321", "author": "", "orig_id": 1410646}}, {"model": "metainfo.source", "pk": 6230, "fields": {"orig_filename": "Pucherna_Antonin_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321", "author": "", "orig_id": 1410648}}, {"model": "metainfo.source", "pk": 6231, "fields": {"orig_filename": "Pucherna_Eduard_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321f.", "author": "", "orig_id": 1410649}}, {"model": "metainfo.source", "pk": 6232, "fields": {"orig_filename": "Pucherna_Wilhelm_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322", "author": "", "orig_id": 1410722}}, {"model": "metainfo.source", "pk": 6233, "fields": {"orig_filename": "Puchinger_Erwin_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322", "author": "", "orig_id": 1410723}}, {"model": "metainfo.source", "pk": 6234, "fields": {"orig_filename": "Puchmayr_Franz_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322f.", "author": "", "orig_id": 1410724}}, {"model": "metainfo.source", "pk": 6235, "fields": {"orig_filename": "Puchner_Karl_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323", "author": "", "orig_id": 1410725}}, {"model": "metainfo.source", "pk": 6236, "fields": {"orig_filename": "Puchta_Anton_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323", "author": "", "orig_id": 1410726}}, {"model": "metainfo.source", "pk": 6237, "fields": {"orig_filename": "Puch_Johann_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 320f.", "author": "", "orig_id": 1410645}}, {"model": "metainfo.source", "pk": 6238, "fields": {"orig_filename": "Pucic_Medo_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323f.", "author": "", "orig_id": 1410727}}, {"model": "metainfo.source", "pk": 6239, "fields": {"orig_filename": "Pucic_Niko_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324", "author": "", "orig_id": 1410728}}, {"model": "metainfo.source", "pk": 6240, "fields": {"orig_filename": "Puc_Dinko_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319f.", "author": "", "orig_id": 1410643}}, {"model": "metainfo.source", "pk": 6241, "fields": {"orig_filename": "Puecher-Passavalli_Luigi_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324", "author": "", "orig_id": 1410729}}, {"model": "metainfo.source", "pk": 6242, "fields": {"orig_filename": "Puechler_Benedikt_1797_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324f.", "author": "", "orig_id": 1410730}}, {"model": "metainfo.source", "pk": 6243, "fields": {"orig_filename": "Puellacher_Leopold-Josef_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325", "author": "", "orig_id": 1410731}}, {"model": "metainfo.source", "pk": 6244, "fields": {"orig_filename": "Puempel_Petrus_1772_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325", "author": "", "orig_id": 1410732}}, {"model": "metainfo.source", "pk": 6245, "fields": {"orig_filename": "Puercker-Puerkhain_Vinzenz_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325f.", "author": "", "orig_id": 1410733}}, {"model": "metainfo.source", "pk": 6246, "fields": {"orig_filename": "Puerstinger_Josef_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326", "author": "", "orig_id": 1410734}}, {"model": "metainfo.source", "pk": 6247, "fields": {"orig_filename": "Puerthner_Johann-Karl_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326", "author": "", "orig_id": 1410735}}, {"model": "metainfo.source", "pk": 6248, "fields": {"orig_filename": "Puettner_Josef-Karl-Bartholomaeus_1821_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326f.", "author": "", "orig_id": 1410736}}, {"model": "metainfo.source", "pk": 6249, "fields": {"orig_filename": "Puff_Ferdinand_1809_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327", "author": "", "orig_id": 1410737}}, {"model": "metainfo.source", "pk": 6250, "fields": {"orig_filename": "Puff_Rudolf-Gustav_1808_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327", "author": "", "orig_id": 1410738}}, {"model": "metainfo.source", "pk": 6251, "fields": {"orig_filename": "Pugelj_Milan_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327f.", "author": "", "orig_id": 1410739}}, {"model": "metainfo.source", "pk": 6252, "fields": {"orig_filename": "Puhallo-Brlog_Paul_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 328", "author": "", "orig_id": 1410740}}, {"model": "metainfo.source", "pk": 6253, "fields": {"orig_filename": "Puhar_Janez-Avgustin_1814_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 328f.", "author": "", "orig_id": 1410741}}, {"model": "metainfo.source", "pk": 6254, "fields": {"orig_filename": "Pukanszky_Bela_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410742}}, {"model": "metainfo.source", "pk": 6255, "fields": {"orig_filename": "Puksec_Ema_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410743}}, {"model": "metainfo.source", "pk": 6256, "fields": {"orig_filename": "Puky-Bizak_Akos_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410744}}, {"model": "metainfo.source", "pk": 6257, "fields": {"orig_filename": "Puky-Bizak_Miklos_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410745}}, {"model": "metainfo.source", "pk": 6258, "fields": {"orig_filename": "Preidl-Hassenbrunn_Franz_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 254f.", "author": "", "orig_id": 1409964}}, {"model": "metainfo.source", "pk": 6259, "fields": {"orig_filename": "Preindlsberger-Preindlsperg_Josef_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255", "author": "", "orig_id": 1409966}}, {"model": "metainfo.source", "pk": 6260, "fields": {"orig_filename": "Preindlsberger-Preindlsperg_Milena_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255f.", "author": "", "orig_id": 1409967}}, {"model": "metainfo.source", "pk": 6261, "fields": {"orig_filename": "Preindl_Ferdinand_1881_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2086599}}, {"model": "metainfo.source", "pk": 6262, "fields": {"orig_filename": "Preindl_Josef_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255", "author": "", "orig_id": 1409965}}, {"model": "metainfo.source", "pk": 6263, "fields": {"orig_filename": "Preisegger_Ignaz_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409970}}, {"model": "metainfo.source", "pk": 6264, "fields": {"orig_filename": "Preisinger_Josef_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256f.", "author": "", "orig_id": 1409971}}, {"model": "metainfo.source", "pk": 6265, "fields": {"orig_filename": "Preisler_Jan_1872_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257", "author": "", "orig_id": 1409972}}, {"model": "metainfo.source", "pk": 6266, "fields": {"orig_filename": "Preissig_Vojtech_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258f.", "author": "", "orig_id": 1409976}}, {"model": "metainfo.source", "pk": 6267, "fields": {"orig_filename": "Preissler_Ferdinand_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259", "author": "", "orig_id": 1409978}}, {"model": "metainfo.source", "pk": 6268, "fields": {"orig_filename": "Preissler_Oskar_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259", "author": "", "orig_id": 1409979}}, {"model": "metainfo.source", "pk": 6269, "fields": {"orig_filename": "Preissmann_Ernest_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259f.", "author": "", "orig_id": 1410049}}, {"model": "metainfo.source", "pk": 6270, "fields": {"orig_filename": "Preissova_Gabriela_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 260", "author": "", "orig_id": 1410050}}, {"model": "metainfo.source", "pk": 6271, "fields": {"orig_filename": "Preiss_Balthasar_1765_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257", "author": "", "orig_id": 1409973}}, {"model": "metainfo.source", "pk": 6272, "fields": {"orig_filename": "Preiss_Jaroslav_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257f.", "author": "", "orig_id": 1409974}}, {"model": "metainfo.source", "pk": 6273, "fields": {"orig_filename": "Preiss_Kornelius_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258", "author": "", "orig_id": 1409975}}, {"model": "metainfo.source", "pk": 6274, "fields": {"orig_filename": "Preiss_Rudolf_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258", "author": "", "orig_id": 1409977}}, {"model": "metainfo.source", "pk": 6275, "fields": {"orig_filename": "Preisz_Hugo_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 260f.", "author": "", "orig_id": 1410051}}, {"model": "metainfo.source", "pk": 6276, "fields": {"orig_filename": "Preis_Karel_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409968}}, {"model": "metainfo.source", "pk": 6277, "fields": {"orig_filename": "Preis_Karl_1913_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409969}}, {"model": "metainfo.source", "pk": 6278, "fields": {"orig_filename": "Prejac_Djuro_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261", "author": "", "orig_id": 1410052}}, {"model": "metainfo.source", "pk": 6279, "fields": {"orig_filename": "Preleuthner_Johann_1807_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261", "author": "", "orig_id": 1410053}}, {"model": "metainfo.source", "pk": 6280, "fields": {"orig_filename": "Prelog_Matija_1813_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261f.", "author": "", "orig_id": 1410054}}, {"model": "metainfo.source", "pk": 6281, "fields": {"orig_filename": "Prelog_Milan_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262", "author": "", "orig_id": 1410055}}, {"model": "metainfo.source", "pk": 6282, "fields": {"orig_filename": "Premerstein_Anton_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262f.", "author": "", "orig_id": 1410057}}, {"model": "metainfo.source", "pk": 6283, "fields": {"orig_filename": "Premrou_Josip_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 263", "author": "", "orig_id": 1410058}}, {"model": "metainfo.source", "pk": 6284, "fields": {"orig_filename": "Prem_Simon_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262", "author": "", "orig_id": 1410056}}, {"model": "metainfo.source", "pk": 6285, "fields": {"orig_filename": "Prendel_Viktor-Anton-Franz_1766_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 263f.", "author": "", "orig_id": 1410059}}, {"model": "metainfo.source", "pk": 6286, "fields": {"orig_filename": "Prenninger_Karl_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264", "author": "", "orig_id": 1410060}}, {"model": "metainfo.source", "pk": 6287, "fields": {"orig_filename": "Prepeluh_Albin_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264", "author": "", "orig_id": 1410061}}, {"model": "metainfo.source", "pk": 6288, "fields": {"orig_filename": "Preradovic_Petar_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264f.", "author": "", "orig_id": 1410062}}, {"model": "metainfo.source", "pk": 6289, "fields": {"orig_filename": "Preradovic_Zora_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 265f.", "author": "", "orig_id": 1410063}}, {"model": "metainfo.source", "pk": 6290, "fields": {"orig_filename": "Preseren_France_1800_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 266f.", "author": "", "orig_id": 1410064}}, {"model": "metainfo.source", "pk": 6291, "fields": {"orig_filename": "Presl_Karel-Borivoj_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 267f.", "author": "", "orig_id": 1410066}}, {"model": "metainfo.source", "pk": 6292, "fields": {"orig_filename": "Pressburger_Richard_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410067}}, {"model": "metainfo.source", "pk": 6293, "fields": {"orig_filename": "Pressel_Wilhelm_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410068}}, {"model": "metainfo.source", "pk": 6294, "fields": {"orig_filename": "Presuhn_August_1841_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410069}}, {"model": "metainfo.source", "pk": 6295, "fields": {"orig_filename": "Pretis-Cagnodo_Sisinio_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268f.", "author": "", "orig_id": 1410070}}, {"model": "metainfo.source", "pk": 6296, "fields": {"orig_filename": "Pretsch_Paul_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 269", "author": "", "orig_id": 1410071}}, {"model": "metainfo.source", "pk": 6297, "fields": {"orig_filename": "Prettner_Johann_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 269f.", "author": "", "orig_id": 1410072}}, {"model": "metainfo.source", "pk": 6298, "fields": {"orig_filename": "Prettner_Matej_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410073}}, {"model": "metainfo.source", "pk": 6299, "fields": {"orig_filename": "Pretz-Proetzenberg_Josef_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410149}}, {"model": "metainfo.source", "pk": 6300, "fields": {"orig_filename": "Preussler_Robert_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 271f.", "author": "", "orig_id": 1410153}}, {"model": "metainfo.source", "pk": 6301, "fields": {"orig_filename": "Preuss_Arthur_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270f.", "author": "", "orig_id": 1410151}}, {"model": "metainfo.source", "pk": 6302, "fields": {"orig_filename": "Preuss_Paul_1886_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 271", "author": "", "orig_id": 1410152}}, {"model": "metainfo.source", "pk": 6303, "fields": {"orig_filename": "Preu_Ignaz_1788_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410150}}, {"model": "metainfo.source", "pk": 6304, "fields": {"orig_filename": "Preyer_Gottfried_1807_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 272f.", "author": "", "orig_id": 1410155}}, {"model": "metainfo.source", "pk": 6305, "fields": {"orig_filename": "Preyer_Hermann_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273", "author": "", "orig_id": 1410156}}, {"model": "metainfo.source", "pk": 6306, "fields": {"orig_filename": "Preyer_Johann-Nep_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273", "author": "", "orig_id": 1410157}}, {"model": "metainfo.source", "pk": 6307, "fields": {"orig_filename": "Preysz_Moric_1829_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273f.", "author": "", "orig_id": 1410158}}, {"model": "metainfo.source", "pk": 6308, "fields": {"orig_filename": "Prey_Adalbert_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 272", "author": "", "orig_id": 1410154}}, {"model": "metainfo.source", "pk": 6309, "fields": {"orig_filename": "Pribicevic_Svetozar_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 274", "author": "", "orig_id": 1410160}}, {"model": "metainfo.source", "pk": 6310, "fields": {"orig_filename": "Pribram_Alfred-Francis_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275", "author": "", "orig_id": 1410162}}, {"model": "metainfo.source", "pk": 6311, "fields": {"orig_filename": "Pribram_Alfred_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 274f.", "author": "", "orig_id": 1410161}}, {"model": "metainfo.source", "pk": 6312, "fields": {"orig_filename": "Pribram_Ernst-August_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275", "author": "", "orig_id": 1410163}}, {"model": "metainfo.source", "pk": 6313, "fields": {"orig_filename": "Pribram_Hugo_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275f.", "author": "", "orig_id": 1410164}}, {"model": "metainfo.source", "pk": 6314, "fields": {"orig_filename": "Pribram_Richard_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276", "author": "", "orig_id": 1410165}}, {"model": "metainfo.source", "pk": 6315, "fields": {"orig_filename": "Pribyl_Leo-Eugen_1848_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276", "author": "", "orig_id": 1410166}}, {"model": "metainfo.source", "pk": 6316, "fields": {"orig_filename": "Price_Julius_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276f.", "author": "", "orig_id": 1410167}}, {"model": "metainfo.source", "pk": 6317, "fields": {"orig_filename": "Priebsch_Josef_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277", "author": "", "orig_id": 1410168}}, {"model": "metainfo.source", "pk": 6318, "fields": {"orig_filename": "Priebsch_Robert_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277", "author": "", "orig_id": 1410169}}, {"model": "metainfo.source", "pk": 6319, "fields": {"orig_filename": "Prielle_Kornelia_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277f.", "author": "", "orig_id": 1410170}}, {"model": "metainfo.source", "pk": 6320, "fields": {"orig_filename": "Priessnitz_Vinzenz_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278", "author": "", "orig_id": 1410171}}, {"model": "metainfo.source", "pk": 6321, "fields": {"orig_filename": "Prihoda_Eduard_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278", "author": "", "orig_id": 1410172}}, {"model": "metainfo.source", "pk": 6322, "fields": {"orig_filename": "Prihonsky_Franz_1788_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278f.", "author": "", "orig_id": 1410173}}, {"model": "metainfo.source", "pk": 6323, "fields": {"orig_filename": "Prijatelj_Ivan_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 279", "author": "", "orig_id": 1410248}}, {"model": "metainfo.source", "pk": 6324, "fields": {"orig_filename": "Prikryl_Ondrej_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410249}}, {"model": "metainfo.source", "pk": 6325, "fields": {"orig_filename": "Prill_Karl_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410250}}, {"model": "metainfo.source", "pk": 6326, "fields": {"orig_filename": "Primavesi-Primamonte_Viktor_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280f.", "author": "", "orig_id": 1410252}}, {"model": "metainfo.source", "pk": 6327, "fields": {"orig_filename": "Primavesi_Eduard_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410251}}, {"model": "metainfo.source", "pk": 6328, "fields": {"orig_filename": "Primic_Janez-Nep_1785_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 281", "author": "", "orig_id": 1410253}}, {"model": "metainfo.source", "pk": 6329, "fields": {"orig_filename": "Primisser_Alois_1796_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 281f.", "author": "", "orig_id": 1410254}}, {"model": "metainfo.source", "pk": 6330, "fields": {"orig_filename": "Primisser_Johann-Bapt_1739_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282", "author": "", "orig_id": 1410255}}, {"model": "metainfo.source", "pk": 6331, "fields": {"orig_filename": "Prina_Luigi_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282", "author": "", "orig_id": 1410256}}, {"model": "metainfo.source", "pk": 6332, "fields": {"orig_filename": "Princip_Gavrilo_1894_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282f.", "author": "", "orig_id": 1410257}}, {"model": "metainfo.source", "pk": 6333, "fields": {"orig_filename": "Prinzhofer_August_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410262}}, {"model": "metainfo.source", "pk": 6334, "fields": {"orig_filename": "Prinzinger_August_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284f.", "author": "", "orig_id": 1410263}}, {"model": "metainfo.source", "pk": 6335, "fields": {"orig_filename": "Prinzinger_August_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285", "author": "", "orig_id": 1410264}}, {"model": "metainfo.source", "pk": 6336, "fields": {"orig_filename": "Prinzinger_Heinrich_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285", "author": "", "orig_id": 1410265}}, {"model": "metainfo.source", "pk": 6337, "fields": {"orig_filename": "Prinz_Franz_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 283", "author": "", "orig_id": 1410258}}, {"model": "metainfo.source", "pk": 6338, "fields": {"orig_filename": "Prinz_Karl-Ludwig_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410260}}, {"model": "metainfo.source", "pk": 6339, "fields": {"orig_filename": "Prinz_Karl_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 283f.", "author": "", "orig_id": 1410259}}, {"model": "metainfo.source", "pk": 6340, "fields": {"orig_filename": "Prinz_Moriz_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410261}}, {"model": "metainfo.source", "pk": 6341, "fields": {"orig_filename": "Prisching_Franz_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285f.", "author": "", "orig_id": 1410266}}, {"model": "metainfo.source", "pk": 6342, "fields": {"orig_filename": "Pritz_Franz-X_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 286", "author": "", "orig_id": 1410267}}, {"model": "metainfo.source", "pk": 6343, "fields": {"orig_filename": "Privoznik_Eduard_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 286f.", "author": "", "orig_id": 1410268}}, {"model": "metainfo.source", "pk": 6344, "fields": {"orig_filename": "Prix_Johann-Nep_1836_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410269}}, {"model": "metainfo.source", "pk": 6345, "fields": {"orig_filename": "Probizer_Guido_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410271}}, {"model": "metainfo.source", "pk": 6346, "fields": {"orig_filename": "Proboscht_Josef-Wenzel_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410272}}, {"model": "metainfo.source", "pk": 6347, "fields": {"orig_filename": "Probstner-Neulublau-Jakubjan_Andreas-Julius_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410356}}, {"model": "metainfo.source", "pk": 6348, "fields": {"orig_filename": "Probstner-Neulublau-Jakubjan_Arthur-Napoleon_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289f.", "author": "", "orig_id": 1410357}}, {"model": "metainfo.source", "pk": 6349, "fields": {"orig_filename": "Probst_Jakob_1791_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287f.", "author": "", "orig_id": 1410350}}, {"model": "metainfo.source", "pk": 6350, "fields": {"orig_filename": "Probst_Johann-Eugen_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 288", "author": "", "orig_id": 1410352}}, {"model": "metainfo.source", "pk": 6351, "fields": {"orig_filename": "Probst_Johann-Nep_1756_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 288", "author": "", "orig_id": 1410351}}, {"model": "metainfo.source", "pk": 6352, "fields": {"orig_filename": "Probst_Josef-Benedikt_1773_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410354}}, {"model": "metainfo.source", "pk": 6353, "fields": {"orig_filename": "Probst_Josef_1808_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410353}}, {"model": "metainfo.source", "pk": 6354, "fields": {"orig_filename": "Probst_Karl_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410355}}, {"model": "metainfo.source", "pk": 6355, "fields": {"orig_filename": "Probszt-Ohstorff_Emil_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 290", "author": "", "orig_id": 1410358}}, {"model": "metainfo.source", "pk": 6356, "fields": {"orig_filename": "Prochaska-Muehlkampf_Alois_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298", "author": "", "orig_id": 1410448}}, {"model": "metainfo.source", "pk": 6357, "fields": {"orig_filename": "Prochaska_Antonin_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 291f.", "author": "", "orig_id": 1410361}}, {"model": "metainfo.source", "pk": 6358, "fields": {"orig_filename": "Prochaska_Antoni_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 291", "author": "", "orig_id": 1410360}}, {"model": "metainfo.source", "pk": 6359, "fields": {"orig_filename": "Prochaska_Arnost_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410362}}, {"model": "metainfo.source", "pk": 6360, "fields": {"orig_filename": "Prochaska_Emil_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410363}}, {"model": "metainfo.source", "pk": 6361, "fields": {"orig_filename": "Posch_Alois_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216", "author": "", "orig_id": 1409500}}, {"model": "metainfo.source", "pk": 6362, "fields": {"orig_filename": "Posch_Andreas_1770_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216", "author": "", "orig_id": 1409501}}, {"model": "metainfo.source", "pk": 6363, "fields": {"orig_filename": "Posch_Eduard-Roman_1856_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216f.", "author": "", "orig_id": 1409502}}, {"model": "metainfo.source", "pk": 6364, "fields": {"orig_filename": "Posch_Josef_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 217", "author": "", "orig_id": 1409503}}, {"model": "metainfo.source", "pk": 6365, "fields": {"orig_filename": "Posch_Leonhard_1750_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 217f.", "author": "", "orig_id": 1409504}}, {"model": "metainfo.source", "pk": 6366, "fields": {"orig_filename": "Posch_Marie_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409505}}, {"model": "metainfo.source", "pk": 6367, "fields": {"orig_filename": "Posch_Rudolf_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409506}}, {"model": "metainfo.source", "pk": 6368, "fields": {"orig_filename": "Posener_Johann-Paul_1793_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219", "author": "", "orig_id": 1409509}}, {"model": "metainfo.source", "pk": 6369, "fields": {"orig_filename": "Posepny_Franz_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219", "author": "", "orig_id": 1409510}}, {"model": "metainfo.source", "pk": 6370, "fields": {"orig_filename": "Posewitz_Samuel_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219f.", "author": "", "orig_id": 1409511}}, {"model": "metainfo.source", "pk": 6371, "fields": {"orig_filename": "Posewitz_Theodor_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409512}}, {"model": "metainfo.source", "pk": 6372, "fields": {"orig_filename": "Posilovic_Josip-Juraj_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409513}}, {"model": "metainfo.source", "pk": 6373, "fields": {"orig_filename": "Posonyi_Alexander_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409587}}, {"model": "metainfo.source", "pk": 6374, "fields": {"orig_filename": "Pospichal_Eduard-Ludvik_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220f.", "author": "", "orig_id": 1409588}}, {"model": "metainfo.source", "pk": 6375, "fields": {"orig_filename": "Pospisil_Josef_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409590}}, {"model": "metainfo.source", "pk": 6376, "fields": {"orig_filename": "Pospisil_Kristian-Eduard_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409591}}, {"model": "metainfo.source", "pk": 6377, "fields": {"orig_filename": "Pospisil_Vilem_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409592}}, {"model": "metainfo.source", "pk": 6378, "fields": {"orig_filename": "Possanner-Ehrenthal_Bruno_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221f.", "author": "", "orig_id": 1409593}}, {"model": "metainfo.source", "pk": 6379, "fields": {"orig_filename": "Possanner-Ehrenthal_Ernst_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409594}}, {"model": "metainfo.source", "pk": 6380, "fields": {"orig_filename": "Possanner-Ehrenthal_Gabriele_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409595}}, {"model": "metainfo.source", "pk": 6381, "fields": {"orig_filename": "Posselt-Csorich_Anton_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 223", "author": "", "orig_id": 1409598}}, {"model": "metainfo.source", "pk": 6382, "fields": {"orig_filename": "Posselt_Adolf-Heinrich_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409596}}, {"model": "metainfo.source", "pk": 6383, "fields": {"orig_filename": "Posselt_Kajetan_1809_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222f.", "author": "", "orig_id": 1409597}}, {"model": "metainfo.source", "pk": 6384, "fields": {"orig_filename": "Possinger-Choborski_Ludwig_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 223f.", "author": "", "orig_id": 1409599}}, {"model": "metainfo.source", "pk": 6385, "fields": {"orig_filename": "Posta_Bela_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409600}}, {"model": "metainfo.source", "pk": 6386, "fields": {"orig_filename": "Postelt_Alois_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409601}}, {"model": "metainfo.source", "pk": 6387, "fields": {"orig_filename": "Postinger_Carlo-Teodoro_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409602}}, {"model": "metainfo.source", "pk": 6388, "fields": {"orig_filename": "Postl_Karel_1769_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224f.", "author": "", "orig_id": 1409603}}, {"model": "metainfo.source", "pk": 6389, "fields": {"orig_filename": "Postl_Karl_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 225f.", "author": "", "orig_id": 1409604}}, {"model": "metainfo.source", "pk": 6390, "fields": {"orig_filename": "Postolka_August_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 226", "author": "", "orig_id": 1409605}}, {"model": "metainfo.source", "pk": 6391, "fields": {"orig_filename": "Potier-Echelles_Rudolf_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 226f.", "author": "", "orig_id": 1409606}}, {"model": "metainfo.source", "pk": 6392, "fields": {"orig_filename": "Potiorek_Oskar_1853_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 227", "author": "", "orig_id": 1409607}}, {"model": "metainfo.source", "pk": 6393, "fields": {"orig_filename": "Potkanski_Jan-Nep-Karol_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 227f.", "author": "", "orig_id": 1409608}}, {"model": "metainfo.source", "pk": 6394, "fields": {"orig_filename": "Potlis_Michael_1812_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 228", "author": "", "orig_id": 1409609}}, {"model": "metainfo.source", "pk": 6395, "fields": {"orig_filename": "Potocka_Katarzyna_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 228f.", "author": "", "orig_id": 1409678}}, {"model": "metainfo.source", "pk": 6396, "fields": {"orig_filename": "Potocka_Zofia_1790_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229", "author": "", "orig_id": 1409679}}, {"model": "metainfo.source", "pk": 6397, "fields": {"orig_filename": "Potocki_Adam_1822_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229", "author": "", "orig_id": 1409680}}, {"model": "metainfo.source", "pk": 6398, "fields": {"orig_filename": "Potocki_Alfred_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229f.", "author": "", "orig_id": 1409681}}, {"model": "metainfo.source", "pk": 6399, "fields": {"orig_filename": "Potocki_Alfred_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 230", "author": "", "orig_id": 1409682}}, {"model": "metainfo.source", "pk": 6400, "fields": {"orig_filename": "Potocki_Andrzej_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 230f.", "author": "", "orig_id": 1409683}}, {"model": "metainfo.source", "pk": 6401, "fields": {"orig_filename": "Potocki_Artur-Stanislaw_1787_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231", "author": "", "orig_id": 1409685}}, {"model": "metainfo.source", "pk": 6402, "fields": {"orig_filename": "Potocki_Artur_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231", "author": "", "orig_id": 1409684}}, {"model": "metainfo.source", "pk": 6403, "fields": {"orig_filename": "Potocnik_Blaz_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231f.", "author": "", "orig_id": 1409686}}, {"model": "metainfo.source", "pk": 6404, "fields": {"orig_filename": "Potocnik_Hermann_1892_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232", "author": "", "orig_id": 1409687}}, {"model": "metainfo.source", "pk": 6405, "fields": {"orig_filename": "Potocnik_Janez_1749_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232", "author": "", "orig_id": 1409688}}, {"model": "metainfo.source", "pk": 6406, "fields": {"orig_filename": "Potocnjak_Franko_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232f.", "author": "", "orig_id": 1409689}}, {"model": "metainfo.source", "pk": 6407, "fields": {"orig_filename": "Potoczek_Jan_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233", "author": "", "orig_id": 1409690}}, {"model": "metainfo.source", "pk": 6408, "fields": {"orig_filename": "Potoczek_Stanislaw_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233", "author": "", "orig_id": 1409691}}, {"model": "metainfo.source", "pk": 6409, "fields": {"orig_filename": "Potpeschnigg_Heinrich_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233f.", "author": "", "orig_id": 1409692}}, {"model": "metainfo.source", "pk": 6410, "fields": {"orig_filename": "Pottenburg_Nikolaus_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409695}}, {"model": "metainfo.source", "pk": 6411, "fields": {"orig_filename": "Pott_August_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409693}}, {"model": "metainfo.source", "pk": 6412, "fields": {"orig_filename": "Pott_Emil_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409694}}, {"model": "metainfo.source", "pk": 6413, "fields": {"orig_filename": "Potyka_Hugo_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235", "author": "", "orig_id": 1409696}}, {"model": "metainfo.source", "pk": 6414, "fields": {"orig_filename": "Povoden_Simon_1753_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235", "author": "", "orig_id": 1409697}}, {"model": "metainfo.source", "pk": 6415, "fields": {"orig_filename": "Povse_Franc_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235f.", "author": "", "orig_id": 1409698}}, {"model": "metainfo.source", "pk": 6416, "fields": {"orig_filename": "Powidaj_Ludwik_1830_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409699}}, {"model": "metainfo.source", "pk": 6417, "fields": {"orig_filename": "Pozdech_Josef_1811_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409773}}, {"model": "metainfo.source", "pk": 6418, "fields": {"orig_filename": "Pozzi_Giovanni_1769_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409774}}, {"model": "metainfo.source", "pk": 6419, "fields": {"orig_filename": "Pracher_Franz_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409775}}, {"model": "metainfo.source", "pk": 6420, "fields": {"orig_filename": "Prachner_Vaclav_1784_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236f.", "author": "", "orig_id": 1409776}}, {"model": "metainfo.source", "pk": 6421, "fields": {"orig_filename": "Prade_Heinrich_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 237", "author": "", "orig_id": 1409777}}, {"model": "metainfo.source", "pk": 6422, "fields": {"orig_filename": "Praeuscher_Hermann_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 237f.", "author": "", "orig_id": 1409778}}, {"model": "metainfo.source", "pk": 6423, "fields": {"orig_filename": "Prager_Albert_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409779}}, {"model": "metainfo.source", "pk": 6424, "fields": {"orig_filename": "Prager_Olga_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409780}}, {"model": "metainfo.source", "pk": 6425, "fields": {"orig_filename": "Prandstetter_Ignaz_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409781}}, {"model": "metainfo.source", "pk": 6426, "fields": {"orig_filename": "Prantl_Jakob-Isidor_1772_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409782}}, {"model": "metainfo.source", "pk": 6427, "fields": {"orig_filename": "Prantl_Therese_1839_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239", "author": "", "orig_id": 1409783}}, {"model": "metainfo.source", "pk": 6428, "fields": {"orig_filename": "Prantner_Ferdinand_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239", "author": "", "orig_id": 1409784}}, {"model": "metainfo.source", "pk": 6429, "fields": {"orig_filename": "Praprotnik_Andrej_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239f.", "author": "", "orig_id": 1409785}}, {"model": "metainfo.source", "pk": 6430, "fields": {"orig_filename": "Praprotnik_Franc_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240", "author": "", "orig_id": 1409786}}, {"model": "metainfo.source", "pk": 6431, "fields": {"orig_filename": "Praschniker_Kamillo_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 241f.", "author": "", "orig_id": 1409789}}, {"model": "metainfo.source", "pk": 6432, "fields": {"orig_filename": "Prasch_Adolf_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240", "author": "", "orig_id": 1409787}}, {"model": "metainfo.source", "pk": 6433, "fields": {"orig_filename": "Prasch_Alois_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240f.", "author": "", "orig_id": 1409788}}, {"model": "metainfo.source", "pk": 6434, "fields": {"orig_filename": "Prasek_Justin-V_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242", "author": "", "orig_id": 1409790}}, {"model": "metainfo.source", "pk": 6435, "fields": {"orig_filename": "Prasek_Karel_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242", "author": "", "orig_id": 1409791}}, {"model": "metainfo.source", "pk": 6436, "fields": {"orig_filename": "Prasek_Vincenc_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242f.", "author": "", "orig_id": 1409792}}, {"model": "metainfo.source", "pk": 6437, "fields": {"orig_filename": "Prasil_Wilhelm-Wenzel_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 243", "author": "", "orig_id": 1409793}}, {"model": "metainfo.source", "pk": 6438, "fields": {"orig_filename": "Prasnikar_Alois_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 243f.", "author": "", "orig_id": 1409794}}, {"model": "metainfo.source", "pk": 6439, "fields": {"orig_filename": "Prati_Eugenio_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 244", "author": "", "orig_id": 1409865}}, {"model": "metainfo.source", "pk": 6440, "fields": {"orig_filename": "Prati_Giovanni_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 244f.", "author": "", "orig_id": 1409866}}, {"model": "metainfo.source", "pk": 6441, "fields": {"orig_filename": "Prati_Romualdo_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 245", "author": "", "orig_id": 1409867}}, {"model": "metainfo.source", "pk": 6442, "fields": {"orig_filename": "Pratobevera-Wiesborn_Adolf_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246f.", "author": "", "orig_id": 1409871}}, {"model": "metainfo.source", "pk": 6443, "fields": {"orig_filename": "Pratobevera-Wiesborn_Karl-Josef_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247", "author": "", "orig_id": 1409872}}, {"model": "metainfo.source", "pk": 6444, "fields": {"orig_filename": "Pratobevera_Eduard_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246", "author": "", "orig_id": 1409869}}, {"model": "metainfo.source", "pk": 6445, "fields": {"orig_filename": "Pratobevera_Katharina_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246", "author": "", "orig_id": 1409870}}, {"model": "metainfo.source", "pk": 6446, "fields": {"orig_filename": "Prato_Giovanni_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 245f.", "author": "", "orig_id": 1409868}}, {"model": "metainfo.source", "pk": 6447, "fields": {"orig_filename": "Prattes_Markus_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247", "author": "", "orig_id": 1409873}}, {"model": "metainfo.source", "pk": 6448, "fields": {"orig_filename": "Prausnitz_Wilhelm_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248", "author": "", "orig_id": 1409876}}, {"model": "metainfo.source", "pk": 6449, "fields": {"orig_filename": "Praus_Josip_1829_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247f.", "author": "", "orig_id": 1409874}}, {"model": "metainfo.source", "pk": 6450, "fields": {"orig_filename": "Prawdik-Maehrau_Franz_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248", "author": "", "orig_id": 1409877}}, {"model": "metainfo.source", "pk": 6451, "fields": {"orig_filename": "Praxmarer_Josef_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248f.", "author": "", "orig_id": 1409878}}, {"model": "metainfo.source", "pk": 6452, "fields": {"orig_filename": "Prazakova_Klara_1891_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250", "author": "", "orig_id": 1409882}}, {"model": "metainfo.source", "pk": 6453, "fields": {"orig_filename": "Prazak_Alois_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 249", "author": "", "orig_id": 1409879}}, {"model": "metainfo.source", "pk": 6454, "fields": {"orig_filename": "Prazak_Jiri_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 249f.", "author": "", "orig_id": 1409880}}, {"model": "metainfo.source", "pk": 6455, "fields": {"orig_filename": "Prazak_Ottokar_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250", "author": "", "orig_id": 1409881}}, {"model": "metainfo.source", "pk": 6456, "fields": {"orig_filename": "Prazmowski_Adam_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250f.", "author": "", "orig_id": 1409883}}, {"model": "metainfo.source", "pk": 6457, "fields": {"orig_filename": "Prazner_Marian_1746_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251", "author": "", "orig_id": 1409884}}, {"model": "metainfo.source", "pk": 6458, "fields": {"orig_filename": "Precan_Leopold_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251", "author": "", "orig_id": 1409885}}, {"model": "metainfo.source", "pk": 6459, "fields": {"orig_filename": "Prechtler_Johann-Otto_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 252f.", "author": "", "orig_id": 1409959}}, {"model": "metainfo.source", "pk": 6460, "fields": {"orig_filename": "Prechtl_Johann-Josef_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251f.", "author": "", "orig_id": 1409958}}, {"model": "metainfo.source", "pk": 6461, "fields": {"orig_filename": "Predelli_Riccardo_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253", "author": "", "orig_id": 1409960}}, {"model": "metainfo.source", "pk": 6462, "fields": {"orig_filename": "Preen_Hugo_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253", "author": "", "orig_id": 1409961}}, {"model": "metainfo.source", "pk": 6463, "fields": {"orig_filename": "Pregant_Johann_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253f.", "author": "", "orig_id": 1409962}}, {"model": "metainfo.source", "pk": 6464, "fields": {"orig_filename": "Pregl_Fritz_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 254", "author": "", "orig_id": 1409963}}, {"model": "metainfo.source", "pk": 6465, "fields": {"orig_filename": "Poller_Kaspar_1783_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410625}}, {"model": "metainfo.source", "pk": 6466, "fields": {"orig_filename": "Poller_Magdalena_1786_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 183", "author": "", "orig_id": 1410696}}, {"model": "metainfo.source", "pk": 6467, "fields": {"orig_filename": "Pollet_Johann_1814_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 183", "author": "", "orig_id": 1410697}}, {"model": "metainfo.source", "pk": 6468, "fields": {"orig_filename": "Polley_Karl_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410698}}, {"model": "metainfo.source", "pk": 6469, "fields": {"orig_filename": "Pollhammer_Josef_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410699}}, {"model": "metainfo.source", "pk": 6470, "fields": {"orig_filename": "Polliack_Giovanni_1903_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410704}}, {"model": "metainfo.source", "pk": 6471, "fields": {"orig_filename": "Pollini_Ciro_1782_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185f.", "author": "", "orig_id": 1410705}}, {"model": "metainfo.source", "pk": 6472, "fields": {"orig_filename": "Pollini_Franz_1762_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410706}}, {"model": "metainfo.source", "pk": 6473, "fields": {"orig_filename": "Pollitzer_Adolf_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410707}}, {"model": "metainfo.source", "pk": 6474, "fields": {"orig_filename": "Polli_Carlo_1894_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410700}}, {"model": "metainfo.source", "pk": 6475, "fields": {"orig_filename": "Polli_Edoardo_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184f.", "author": "", "orig_id": 1410701}}, {"model": "metainfo.source", "pk": 6476, "fields": {"orig_filename": "Polli_Giorgio_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410702}}, {"model": "metainfo.source", "pk": 6477, "fields": {"orig_filename": "Polli_Giovanni_1826_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410703}}, {"model": "metainfo.source", "pk": 6478, "fields": {"orig_filename": "Polonyi_Geza_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410708}}, {"model": "metainfo.source", "pk": 6479, "fields": {"orig_filename": "Polsterer_Adalbert-Johann_1798_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410709}}, {"model": "metainfo.source", "pk": 6480, "fields": {"orig_filename": "Polsterer_Rudolf_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410710}}, {"model": "metainfo.source", "pk": 6481, "fields": {"orig_filename": "Polt_Johann-Josef_1775_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410711}}, {"model": "metainfo.source", "pk": 6482, "fields": {"orig_filename": "Polya_Jakab_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187f.", "author": "", "orig_id": 1410712}}, {"model": "metainfo.source", "pk": 6483, "fields": {"orig_filename": "Polya_Jozsef_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188", "author": "", "orig_id": 1410713}}, {"model": "metainfo.source", "pk": 6484, "fields": {"orig_filename": "Polzelli_Alois-Anton_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188", "author": "", "orig_id": 1410714}}, {"model": "metainfo.source", "pk": 6485, "fields": {"orig_filename": "Polzelli_Luigia_1760_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188f.", "author": "", "orig_id": 1410715}}, {"model": "metainfo.source", "pk": 6486, "fields": {"orig_filename": "Polzer-Hoditz-Wolframitz_Arthur_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189", "author": "", "orig_id": 1410717}}, {"model": "metainfo.source", "pk": 6487, "fields": {"orig_filename": "Polzer_Aurelius_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189", "author": "", "orig_id": 1410716}}, {"model": "metainfo.source", "pk": 6488, "fields": {"orig_filename": "Pomeranz_Caesar_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189f.", "author": "", "orig_id": 1410718}}, {"model": "metainfo.source", "pk": 6489, "fields": {"orig_filename": "Pomiankowski_Josef_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190", "author": "", "orig_id": 1410719}}, {"model": "metainfo.source", "pk": 6490, "fields": {"orig_filename": "Pommer_Gustav-Adolf_1851_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190", "author": "", "orig_id": 1410720}}, {"model": "metainfo.source", "pk": 6491, "fields": {"orig_filename": "Pommer_Josef_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190f.", "author": "", "orig_id": 1410721}}, {"model": "metainfo.source", "pk": 6492, "fields": {"orig_filename": "Pompery_Janos_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191", "author": "", "orig_id": 1410795}}, {"model": "metainfo.source", "pk": 6493, "fields": {"orig_filename": "Pomutiu_George_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191", "author": "", "orig_id": 1410796}}, {"model": "metainfo.source", "pk": 6494, "fields": {"orig_filename": "Ponchielli_Amilcare_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191f.", "author": "", "orig_id": 1410797}}, {"model": "metainfo.source", "pk": 6495, "fields": {"orig_filename": "Ponebsek_Janko_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410798}}, {"model": "metainfo.source", "pk": 6496, "fields": {"orig_filename": "Pongracz-Szent-Miklos-Ovar_Arthur_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410799}}, {"model": "metainfo.source", "pk": 6497, "fields": {"orig_filename": "Pongratz_Josef_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410800}}, {"model": "metainfo.source", "pk": 6498, "fields": {"orig_filename": "Pongratz_Karl_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410801}}, {"model": "metainfo.source", "pk": 6499, "fields": {"orig_filename": "Ponheimer_Kilian_1757_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410802}}, {"model": "metainfo.source", "pk": 6500, "fields": {"orig_filename": "Pontini_Friedrich_1874_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410803}}, {"model": "metainfo.source", "pk": 6501, "fields": {"orig_filename": "Pontz-Engelshofen_Kandidus_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193f.", "author": "", "orig_id": 1410804}}, {"model": "metainfo.source", "pk": 6502, "fields": {"orig_filename": "Pop-Martian_Dionisie_1829_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194", "author": "", "orig_id": 1410806}}, {"model": "metainfo.source", "pk": 6503, "fields": {"orig_filename": "Poparic_Bare_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194f.", "author": "", "orig_id": 1410807}}, {"model": "metainfo.source", "pk": 6504, "fields": {"orig_filename": "Popea_Nicolae_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410808}}, {"model": "metainfo.source", "pk": 6505, "fields": {"orig_filename": "Popelka_Augustin_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410809}}, {"model": "metainfo.source", "pk": 6506, "fields": {"orig_filename": "Popelka_Rudolf_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410810}}, {"model": "metainfo.source", "pk": 6507, "fields": {"orig_filename": "Popeller_Johann_1816_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195f.", "author": "", "orig_id": 1410811}}, {"model": "metainfo.source", "pk": 6508, "fields": {"orig_filename": "Popescu_Ioan_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410812}}, {"model": "metainfo.source", "pk": 6509, "fields": {"orig_filename": "Popescu_Nicolae_1835_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410813}}, {"model": "metainfo.source", "pk": 6510, "fields": {"orig_filename": "Popielski_Leon_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197", "author": "", "orig_id": 1410882}}, {"model": "metainfo.source", "pk": 6511, "fields": {"orig_filename": "Popiel_Jan_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410815}}, {"model": "metainfo.source", "pk": 6512, "fields": {"orig_filename": "Popiel_Pawel_1807_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196f.", "author": "", "orig_id": 1410814}}, {"model": "metainfo.source", "pk": 6513, "fields": {"orig_filename": "Popovici-Barcianu_Daniil_1847_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199", "author": "", "orig_id": 1410889}}, {"model": "metainfo.source", "pk": 6514, "fields": {"orig_filename": "Popovici-Barcianu_Sava_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199f.", "author": "", "orig_id": 1410890}}, {"model": "metainfo.source", "pk": 6515, "fields": {"orig_filename": "Popovici_Aurel-Constantin_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198f.", "author": "", "orig_id": 1410887}}, {"model": "metainfo.source", "pk": 6516, "fields": {"orig_filename": "Popovici_Gheorghe_1863_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199", "author": "", "orig_id": 1410888}}, {"model": "metainfo.source", "pk": 6517, "fields": {"orig_filename": "Popovics_Sandor_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 200", "author": "", "orig_id": 1410891}}, {"model": "metainfo.source", "pk": 6518, "fields": {"orig_filename": "Popovic_Aca_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197", "author": "", "orig_id": 1410883}}, {"model": "metainfo.source", "pk": 6519, "fields": {"orig_filename": "Popovic_Jovan-Sterija_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197f.", "author": "", "orig_id": 1410884}}, {"model": "metainfo.source", "pk": 6520, "fields": {"orig_filename": "Popovic_Mita_1841_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198", "author": "", "orig_id": 1410885}}, {"model": "metainfo.source", "pk": 6521, "fields": {"orig_filename": "Popovic_Stevan_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198", "author": "", "orig_id": 1410886}}, {"model": "metainfo.source", "pk": 6522, "fields": {"orig_filename": "Popper-Podhragy_Leopold_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410904}}, {"model": "metainfo.source", "pk": 6523, "fields": {"orig_filename": "Popper_David_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 204", "author": "", "orig_id": 1410900}}, {"model": "metainfo.source", "pk": 6524, "fields": {"orig_filename": "Popper_Josef_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 205", "author": "", "orig_id": 1410901}}, {"model": "metainfo.source", "pk": 6525, "fields": {"orig_filename": "Popper_Siegfried_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 205f.", "author": "", "orig_id": 1410902}}, {"model": "metainfo.source", "pk": 6526, "fields": {"orig_filename": "Popper_Wilhelm_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410903}}, {"model": "metainfo.source", "pk": 6527, "fields": {"orig_filename": "Poppinger_Karl_1902_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410980}}, {"model": "metainfo.source", "pk": 6528, "fields": {"orig_filename": "Popp_Adelheid_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 200f.", "author": "", "orig_id": 1410892}}, {"model": "metainfo.source", "pk": 6529, "fields": {"orig_filename": "Popp_Arnost-Bruno_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 201", "author": "", "orig_id": 1410893}}, {"model": "metainfo.source", "pk": 6530, "fields": {"orig_filename": "Popp_Augustin_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 201f.", "author": "", "orig_id": 1410894}}, {"model": "metainfo.source", "pk": 6531, "fields": {"orig_filename": "Popp_Julius_1849_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 202", "author": "", "orig_id": 1410895}}, {"model": "metainfo.source", "pk": 6532, "fields": {"orig_filename": "Popp_Leonidas_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 202f.", "author": "", "orig_id": 1410896}}, {"model": "metainfo.source", "pk": 6533, "fields": {"orig_filename": "Popp_Mihai_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203", "author": "", "orig_id": 1410897}}, {"model": "metainfo.source", "pk": 6534, "fields": {"orig_filename": "Popp_Vasile_1789_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203", "author": "", "orig_id": 1410898}}, {"model": "metainfo.source", "pk": 6535, "fields": {"orig_filename": "Popp_Wilhelm_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203f.", "author": "", "orig_id": 1410899}}, {"model": "metainfo.source", "pk": 6536, "fields": {"orig_filename": "Pop_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194", "author": "", "orig_id": 1410805}}, {"model": "metainfo.source", "pk": 6537, "fields": {"orig_filename": "Porak-Varna_Ernst_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 207", "author": "", "orig_id": 1410982}}, {"model": "metainfo.source", "pk": 6538, "fields": {"orig_filename": "Porcia_Franz_1753_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 207", "author": "", "orig_id": 1410983}}, {"model": "metainfo.source", "pk": 6539, "fields": {"orig_filename": "Porcius_Florian_1816_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410984}}, {"model": "metainfo.source", "pk": 6540, "fields": {"orig_filename": "Pordes_Friedrich_1890_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410985}}, {"model": "metainfo.source", "pk": 6541, "fields": {"orig_filename": "Porges-Portheim_Eduard_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410990}}, {"model": "metainfo.source", "pk": 6542, "fields": {"orig_filename": "Porges-Portheim_Juda-Leopold_1785_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410991}}, {"model": "metainfo.source", "pk": 6543, "fields": {"orig_filename": "Porges-Portheim_Max_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209f.", "author": "", "orig_id": 1410992}}, {"model": "metainfo.source", "pk": 6544, "fields": {"orig_filename": "Porges-Portheim_Moses_1781_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210", "author": "", "orig_id": 1410993}}, {"model": "metainfo.source", "pk": 6545, "fields": {"orig_filename": "Porges_Edmund_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410986}}, {"model": "metainfo.source", "pk": 6546, "fields": {"orig_filename": "Porges_Heinrich_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208f.", "author": "", "orig_id": 1410987}}, {"model": "metainfo.source", "pk": 6547, "fields": {"orig_filename": "Porges_Nathan_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410988}}, {"model": "metainfo.source", "pk": 6548, "fields": {"orig_filename": "Porges_Philipp_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410989}}, {"model": "metainfo.source", "pk": 6549, "fields": {"orig_filename": "Porro-Lambertenghi_Giulio_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211", "author": "", "orig_id": 1410996}}, {"model": "metainfo.source", "pk": 6550, "fields": {"orig_filename": "Porro_Edoardo_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210f.", "author": "", "orig_id": 1410995}}, {"model": "metainfo.source", "pk": 6551, "fields": {"orig_filename": "Porr_Arthur_1872_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210", "author": "", "orig_id": 1410994}}, {"model": "metainfo.source", "pk": 6552, "fields": {"orig_filename": "Porsch_Josef_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211", "author": "", "orig_id": 1410997}}, {"model": "metainfo.source", "pk": 6553, "fields": {"orig_filename": "Porta_Carlo_1775_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211f.", "author": "", "orig_id": 1410998}}, {"model": "metainfo.source", "pk": 6554, "fields": {"orig_filename": "Porta_Luigi_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 212", "author": "", "orig_id": 1410999}}, {"model": "metainfo.source", "pk": 6555, "fields": {"orig_filename": "Porta_Pietro_1832_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 212f.", "author": "", "orig_id": 1411000}}, {"model": "metainfo.source", "pk": 6556, "fields": {"orig_filename": "Portele_Karl_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213", "author": "", "orig_id": 1411001}}, {"model": "metainfo.source", "pk": 6557, "fields": {"orig_filename": "Portenschlag-Ledermayer_Franz_1772_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213", "author": "", "orig_id": 1411002}}, {"model": "metainfo.source", "pk": 6558, "fields": {"orig_filename": "Porth_Wenzel_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213f.", "author": "", "orig_id": 1409491}}, {"model": "metainfo.source", "pk": 6559, "fields": {"orig_filename": "Portugall_Ferdinand_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214", "author": "", "orig_id": 1409492}}, {"model": "metainfo.source", "pk": 6560, "fields": {"orig_filename": "Porubsky_Josef_1811_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214", "author": "", "orig_id": 1409493}}, {"model": "metainfo.source", "pk": 6561, "fields": {"orig_filename": "Porumbescu_Ciprian_1853_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214f.", "author": "", "orig_id": 1409494}}, {"model": "metainfo.source", "pk": 6562, "fields": {"orig_filename": "Porumbescu_Iraclie_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409495}}, {"model": "metainfo.source", "pk": 6563, "fields": {"orig_filename": "Porzer_Josef_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409496}}, {"model": "metainfo.source", "pk": 6564, "fields": {"orig_filename": "Porzsolt_Kalman_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409497}}, {"model": "metainfo.source", "pk": 6565, "fields": {"orig_filename": "Por_Antal_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206f.", "author": "", "orig_id": 1410981}}, {"model": "metainfo.source", "pk": 6566, "fields": {"orig_filename": "Posa_Lajos_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215f.", "author": "", "orig_id": 1409498}}, {"model": "metainfo.source", "pk": 6567, "fields": {"orig_filename": "Poschacher-Arelshoeh_Johann-Wilhelm_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218f.", "author": "", "orig_id": 1409508}}, {"model": "metainfo.source", "pk": 6568, "fields": {"orig_filename": "Poschacher_Anton_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409507}}, {"model": "metainfo.source", "pk": 6569, "fields": {"orig_filename": "Poettickh-Pettenegg_Eduard-Gaston_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 148f.", "author": "", "orig_id": 1410236}}, {"model": "metainfo.source", "pk": 6570, "fields": {"orig_filename": "Poetting-Persing_Gustav_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410237}}, {"model": "metainfo.source", "pk": 6571, "fields": {"orig_filename": "Poetting-Persing_Karl_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410238}}, {"model": "metainfo.source", "pk": 6572, "fields": {"orig_filename": "Poetzelberger_Robert_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410239}}, {"model": "metainfo.source", "pk": 6573, "fields": {"orig_filename": "Poetzl_Eduard_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149f.", "author": "", "orig_id": 1410240}}, {"model": "metainfo.source", "pk": 6574, "fields": {"orig_filename": "Pogacar_Janez-Zlatoust_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150", "author": "", "orig_id": 1410241}}, {"model": "metainfo.source", "pk": 6575, "fields": {"orig_filename": "Pogacnik_Franz_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150", "author": "", "orig_id": 1410243}}, {"model": "metainfo.source", "pk": 6576, "fields": {"orig_filename": "Pogacnik_Jozef_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150f.", "author": "", "orig_id": 1410242}}, {"model": "metainfo.source", "pk": 6577, "fields": {"orig_filename": "Pogatscher_Alois_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151", "author": "", "orig_id": 1410244}}, {"model": "metainfo.source", "pk": 6578, "fields": {"orig_filename": "Pogatscher_Heinrich_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151", "author": "", "orig_id": 1410245}}, {"model": "metainfo.source", "pk": 6579, "fields": {"orig_filename": "Pogatscher_Rudolf_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151f.", "author": "", "orig_id": 1410246}}, {"model": "metainfo.source", "pk": 6580, "fields": {"orig_filename": "Pogatschnig_Valentin_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410247}}, {"model": "metainfo.source", "pk": 6581, "fields": {"orig_filename": "Poggi_Cesare_1802_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410324}}, {"model": "metainfo.source", "pk": 6582, "fields": {"orig_filename": "Pogna_Giovanni_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410325}}, {"model": "metainfo.source", "pk": 6583, "fields": {"orig_filename": "Pogna_Giuseppe_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410326}}, {"model": "metainfo.source", "pk": 6584, "fields": {"orig_filename": "Pogranyi-Nagy_Geza_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153", "author": "", "orig_id": 1410327}}, {"model": "metainfo.source", "pk": 6585, "fields": {"orig_filename": "Pohl-Meiser_Viktoria_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 157", "author": "", "orig_id": 1410339}}, {"model": "metainfo.source", "pk": 6586, "fields": {"orig_filename": "Pohler_Amand_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 157f.", "author": "", "orig_id": 1410340}}, {"model": "metainfo.source", "pk": 6587, "fields": {"orig_filename": "Pohlig_Johannes_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410341}}, {"model": "metainfo.source", "pk": 6588, "fields": {"orig_filename": "Pohlig_Karl_1858_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410342}}, {"model": "metainfo.source", "pk": 6589, "fields": {"orig_filename": "Pohl_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153", "author": "", "orig_id": 1410328}}, {"model": "metainfo.source", "pk": 6590, "fields": {"orig_filename": "Pohl_Johann-Emanuel_1782_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154", "author": "", "orig_id": 1410330}}, {"model": "metainfo.source", "pk": 6591, "fields": {"orig_filename": "Pohl_Johann-Franz_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154", "author": "", "orig_id": 1410331}}, {"model": "metainfo.source", "pk": 6592, "fields": {"orig_filename": "Pohl_Johann_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153f.", "author": "", "orig_id": 1410329}}, {"model": "metainfo.source", "pk": 6593, "fields": {"orig_filename": "Pohl_Josef_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154f.", "author": "", "orig_id": 1410332}}, {"model": "metainfo.source", "pk": 6594, "fields": {"orig_filename": "Pohl_Julius_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155", "author": "", "orig_id": 1410333}}, {"model": "metainfo.source", "pk": 6595, "fields": {"orig_filename": "Pohl_Karl-Ferdinand_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155", "author": "", "orig_id": 1410334}}, {"model": "metainfo.source", "pk": 6596, "fields": {"orig_filename": "Pohl_Max_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155f.", "author": "", "orig_id": 1410335}}, {"model": "metainfo.source", "pk": 6597, "fields": {"orig_filename": "Pohl_Robert_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 156", "author": "", "orig_id": 1410336}}, {"model": "metainfo.source", "pk": 6598, "fields": {"orig_filename": "Pohl_Wenzel_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 156f.", "author": "", "orig_id": 1410337}}, {"model": "metainfo.source", "pk": 6599, "fields": {"orig_filename": "Pohnert_Karl_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410343}}, {"model": "metainfo.source", "pk": 6600, "fields": {"orig_filename": "Pojatzi_Florian_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158f.", "author": "", "orig_id": 1410344}}, {"model": "metainfo.source", "pk": 6601, "fields": {"orig_filename": "Poklukar_Josip_1837_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159", "author": "", "orig_id": 1410345}}, {"model": "metainfo.source", "pk": 6602, "fields": {"orig_filename": "Pokoly_Jozsef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159", "author": "", "orig_id": 1410346}}, {"model": "metainfo.source", "pk": 6603, "fields": {"orig_filename": "Pokorny-Fuerstenschild_Alois_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410428}}, {"model": "metainfo.source", "pk": 6604, "fields": {"orig_filename": "Pokorny_Adalbert_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160", "author": "", "orig_id": 1410348}}, {"model": "metainfo.source", "pk": 6605, "fields": {"orig_filename": "Pokorny_Alois_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160f.", "author": "", "orig_id": 1410420}}, {"model": "metainfo.source", "pk": 6606, "fields": {"orig_filename": "Pokorny_Emanuel_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 161", "author": "", "orig_id": 1410421}}, {"model": "metainfo.source", "pk": 6607, "fields": {"orig_filename": "Pokorny_Franz_1797_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 161f.", "author": "", "orig_id": 1410422}}, {"model": "metainfo.source", "pk": 6608, "fields": {"orig_filename": "Pokorny_Johann_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162", "author": "", "orig_id": 1410423}}, {"model": "metainfo.source", "pk": 6609, "fields": {"orig_filename": "Pokorny_Josef-Vaclav_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162", "author": "", "orig_id": 1410424}}, {"model": "metainfo.source", "pk": 6610, "fields": {"orig_filename": "Pokorny_Rudolf_1853_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162f.", "author": "", "orig_id": 1410425}}, {"model": "metainfo.source", "pk": 6611, "fields": {"orig_filename": "Pokorny_Rudolf_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410426}}, {"model": "metainfo.source", "pk": 6612, "fields": {"orig_filename": "Pokorny_Wilhelm_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410427}}, {"model": "metainfo.source", "pk": 6613, "fields": {"orig_filename": "Pokorn_Franc_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159f.", "author": "", "orig_id": 1410347}}, {"model": "metainfo.source", "pk": 6614, "fields": {"orig_filename": "Pokutynski_Filip_1829_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163f.", "author": "", "orig_id": 1410429}}, {"model": "metainfo.source", "pk": 6615, "fields": {"orig_filename": "Pokutynski_Jozef_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 164", "author": "", "orig_id": 1410430}}, {"model": "metainfo.source", "pk": 6616, "fields": {"orig_filename": "Pol-Pollenburg_Wincenty_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 164f.", "author": "", "orig_id": 1410431}}, {"model": "metainfo.source", "pk": 6617, "fields": {"orig_filename": "Polacco_Luigi_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165", "author": "", "orig_id": 1410432}}, {"model": "metainfo.source", "pk": 6618, "fields": {"orig_filename": "Polacek_Karel_1892_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165", "author": "", "orig_id": 1410433}}, {"model": "metainfo.source", "pk": 6619, "fields": {"orig_filename": "Polaczek_Stanislaw-Karol_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165f.", "author": "", "orig_id": 1410434}}, {"model": "metainfo.source", "pk": 6620, "fields": {"orig_filename": "Polaczkowna_Helena_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410435}}, {"model": "metainfo.source", "pk": 6621, "fields": {"orig_filename": "Polak-Klumberg_Alexander_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410527}}, {"model": "metainfo.source", "pk": 6622, "fields": {"orig_filename": "Polak-Parnau_Bernhard_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410528}}, {"model": "metainfo.source", "pk": 6623, "fields": {"orig_filename": "Polak-Parnegg_Leopold_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410529}}, {"model": "metainfo.source", "pk": 6624, "fields": {"orig_filename": "Polak-Rudin_Adolf_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174f.", "author": "", "orig_id": 1410530}}, {"model": "metainfo.source", "pk": 6625, "fields": {"orig_filename": "Polak_Antal_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410436}}, {"model": "metainfo.source", "pk": 6626, "fields": {"orig_filename": "Polak_Chaim_1834_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410437}}, {"model": "metainfo.source", "pk": 6627, "fields": {"orig_filename": "Polak_David-Rudolf_1814_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166f.", "author": "", "orig_id": 1410438}}, {"model": "metainfo.source", "pk": 6628, "fields": {"orig_filename": "Polak_Ernst_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 167", "author": "", "orig_id": 1410439}}, {"model": "metainfo.source", "pk": 6629, "fields": {"orig_filename": "Polak_Ferdinande_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 167f.", "author": "", "orig_id": 1410440}}, {"model": "metainfo.source", "pk": 6630, "fields": {"orig_filename": "Polak_Friedrich_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 168", "author": "", "orig_id": 1410441}}, {"model": "metainfo.source", "pk": 6631, "fields": {"orig_filename": "Polak_Gustav_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 168f.", "author": "", "orig_id": 1410442}}, {"model": "metainfo.source", "pk": 6632, "fields": {"orig_filename": "Polak_Heinrich_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 169", "author": "", "orig_id": 1410511}}, {"model": "metainfo.source", "pk": 6633, "fields": {"orig_filename": "Polak_Irma_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 169f.", "author": "", "orig_id": 1410512}}, {"model": "metainfo.source", "pk": 6634, "fields": {"orig_filename": "Polak_Jacques_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410513}}, {"model": "metainfo.source", "pk": 6635, "fields": {"orig_filename": "Polak_Jakob-Eduard_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410514}}, {"model": "metainfo.source", "pk": 6636, "fields": {"orig_filename": "Polak_Joachim_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410515}}, {"model": "metainfo.source", "pk": 6637, "fields": {"orig_filename": "Polak_Josef_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410516}}, {"model": "metainfo.source", "pk": 6638, "fields": {"orig_filename": "Polak_Julius_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410517}}, {"model": "metainfo.source", "pk": 6639, "fields": {"orig_filename": "Polak_Lazar_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410518}}, {"model": "metainfo.source", "pk": 6640, "fields": {"orig_filename": "Polak_Leo_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410519}}, {"model": "metainfo.source", "pk": 6641, "fields": {"orig_filename": "Polak_Mihaly_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410520}}, {"model": "metainfo.source", "pk": 6642, "fields": {"orig_filename": "Polak_Miksa_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410521}}, {"model": "metainfo.source", "pk": 6643, "fields": {"orig_filename": "Polak_Otto_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410522}}, {"model": "metainfo.source", "pk": 6644, "fields": {"orig_filename": "Polak_Rudolf_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172f.", "author": "", "orig_id": 1410523}}, {"model": "metainfo.source", "pk": 6645, "fields": {"orig_filename": "Polak_Viljem_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173", "author": "", "orig_id": 1410524}}, {"model": "metainfo.source", "pk": 6646, "fields": {"orig_filename": "Polak_Vinzenz_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173", "author": "", "orig_id": 1410525}}, {"model": "metainfo.source", "pk": 6647, "fields": {"orig_filename": "Polak_Wilhelm-Johann_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173f.", "author": "", "orig_id": 1410526}}, {"model": "metainfo.source", "pk": 6648, "fields": {"orig_filename": "Polansky_Stanislaus_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 175", "author": "", "orig_id": 1410531}}, {"model": "metainfo.source", "pk": 6649, "fields": {"orig_filename": "Polek_Johann_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 175f.", "author": "", "orig_id": 1410532}}, {"model": "metainfo.source", "pk": 6650, "fields": {"orig_filename": "Polesini_Gian-Paolo_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410533}}, {"model": "metainfo.source", "pk": 6651, "fields": {"orig_filename": "Polic-Kamov_Janko_1886_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410607}}, {"model": "metainfo.source", "pk": 6652, "fields": {"orig_filename": "Polic_Martin_1850_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176f.", "author": "", "orig_id": 1410606}}, {"model": "metainfo.source", "pk": 6653, "fields": {"orig_filename": "Polikeit_Karl_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410608}}, {"model": "metainfo.source", "pk": 6654, "fields": {"orig_filename": "Polit-Desancic_Mihailo_1833_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410609}}, {"model": "metainfo.source", "pk": 6655, "fields": {"orig_filename": "Politeo_Dinko_1854_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178", "author": "", "orig_id": 1410610}}, {"model": "metainfo.source", "pk": 6656, "fields": {"orig_filename": "Politeo_Giorgio_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178", "author": "", "orig_id": 1410611}}, {"model": "metainfo.source", "pk": 6657, "fields": {"orig_filename": "Politi_Odorico_1785_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178f.", "author": "", "orig_id": 1410612}}, {"model": "metainfo.source", "pk": 6658, "fields": {"orig_filename": "Politzer-Csapo_Zsigmond_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180", "author": "", "orig_id": 1410615}}, {"model": "metainfo.source", "pk": 6659, "fields": {"orig_filename": "Politzer_Adam_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 179", "author": "", "orig_id": 1410613}}, {"model": "metainfo.source", "pk": 6660, "fields": {"orig_filename": "Politzer_Leopold-Maximilian_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 179f.", "author": "", "orig_id": 1410614}}, {"model": "metainfo.source", "pk": 6661, "fields": {"orig_filename": "Polivka_Jiri_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180", "author": "", "orig_id": 1410616}}, {"model": "metainfo.source", "pk": 6662, "fields": {"orig_filename": "Polivka_Vladimir_1896_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180f.", "author": "", "orig_id": 1410617}}, {"model": "metainfo.source", "pk": 6663, "fields": {"orig_filename": "Poli_Baldassarre_1795_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410534}}, {"model": "metainfo.source", "pk": 6664, "fields": {"orig_filename": "Poljak_Izidor_1883_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410618}}, {"model": "metainfo.source", "pk": 6665, "fields": {"orig_filename": "Poljanec_Ljudmila_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181f.", "author": "", "orig_id": 1410620}}, {"model": "metainfo.source", "pk": 6666, "fields": {"orig_filename": "Poljanec_Vinko_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410621}}, {"model": "metainfo.source", "pk": 6667, "fields": {"orig_filename": "Polka_Anna_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410622}}, {"model": "metainfo.source", "pk": 6668, "fields": {"orig_filename": "Pollanetz_Josef_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410623}}, {"model": "metainfo.source", "pk": 6669, "fields": {"orig_filename": "Poller_Alfons_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182f.", "author": "", "orig_id": 1410624}}, {"model": "metainfo.source", "pk": 6670, "fields": {"orig_filename": "Plank_Josef_1815_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115f.", "author": "", "orig_id": 1409840}}, {"model": "metainfo.source", "pk": 6671, "fields": {"orig_filename": "Planner-Plann_Julius_1827_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409842}}, {"model": "metainfo.source", "pk": 6672, "fields": {"orig_filename": "Plantan_Ivan_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409843}}, {"model": "metainfo.source", "pk": 6673, "fields": {"orig_filename": "Plappart-Frauenberg_Joachim-Friedrich_1753_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116f.", "author": "", "orig_id": 1409844}}, {"model": "metainfo.source", "pk": 6674, "fields": {"orig_filename": "Plappart-Leenheer_Anton_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409845}}, {"model": "metainfo.source", "pk": 6675, "fields": {"orig_filename": "Plappart-Leenheer_August_1836_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409846}}, {"model": "metainfo.source", "pk": 6676, "fields": {"orig_filename": "Plaschkes_Leopold_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409847}}, {"model": "metainfo.source", "pk": 6677, "fields": {"orig_filename": "Plaseller_Josef_1812_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117f.", "author": "", "orig_id": 1409848}}, {"model": "metainfo.source", "pk": 6678, "fields": {"orig_filename": "Plass_Karl_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409849}}, {"model": "metainfo.source", "pk": 6679, "fields": {"orig_filename": "Plattensteiner_Christian_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409851}}, {"model": "metainfo.source", "pk": 6680, "fields": {"orig_filename": "Platter_Julius_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409852}}, {"model": "metainfo.source", "pk": 6681, "fields": {"orig_filename": "Platte_August_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409850}}, {"model": "metainfo.source", "pk": 6682, "fields": {"orig_filename": "Plattner_Albert_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409853}}, {"model": "metainfo.source", "pk": 6683, "fields": {"orig_filename": "Plattner_Christian_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409854}}, {"model": "metainfo.source", "pk": 6684, "fields": {"orig_filename": "Plattner_Franz_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409855}}, {"model": "metainfo.source", "pk": 6685, "fields": {"orig_filename": "Plattner_Johann_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119f.", "author": "", "orig_id": 1409856}}, {"model": "metainfo.source", "pk": 6686, "fields": {"orig_filename": "Platzer_Ignac-Michael_1757_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409858}}, {"model": "metainfo.source", "pk": 6687, "fields": {"orig_filename": "Platzer_Robert_1831_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409859}}, {"model": "metainfo.source", "pk": 6688, "fields": {"orig_filename": "Plauert_Arno_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409860}}, {"model": "metainfo.source", "pk": 6689, "fields": {"orig_filename": "Plechacek_Aloisia_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121", "author": "", "orig_id": 1409862}}, {"model": "metainfo.source", "pk": 6690, "fields": {"orig_filename": "Plech_Johann_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120f.", "author": "", "orig_id": 1409861}}, {"model": "metainfo.source", "pk": 6691, "fields": {"orig_filename": "Plecnik_Janez_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121", "author": "", "orig_id": 1409863}}, {"model": "metainfo.source", "pk": 6692, "fields": {"orig_filename": "Pleischl_Adolf-Martin_1787_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121f.", "author": "", "orig_id": 1409864}}, {"model": "metainfo.source", "pk": 6693, "fields": {"orig_filename": "Plemel_Valentin_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122", "author": "", "orig_id": 1409935}}, {"model": "metainfo.source", "pk": 6694, "fields": {"orig_filename": "Plenciz_Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122", "author": "", "orig_id": 1409937}}, {"model": "metainfo.source", "pk": 6695, "fields": {"orig_filename": "Plener_Ernst_1841_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122f.", "author": "", "orig_id": 1409938}}, {"model": "metainfo.source", "pk": 6696, "fields": {"orig_filename": "Plener_Ignaz_1810_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123", "author": "", "orig_id": 1409939}}, {"model": "metainfo.source", "pk": 6697, "fields": {"orig_filename": "Plenker_Theodor_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123", "author": "", "orig_id": 1409940}}, {"model": "metainfo.source", "pk": 6698, "fields": {"orig_filename": "Plentzner-Scharneck_Gustav_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123f.", "author": "", "orig_id": 1409941}}, {"model": "metainfo.source", "pk": 6699, "fields": {"orig_filename": "Pleschner-Eichstett_Eduard_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409943}}, {"model": "metainfo.source", "pk": 6700, "fields": {"orig_filename": "Pleschner_Hans-Gallus_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409942}}, {"model": "metainfo.source", "pk": 6701, "fields": {"orig_filename": "Plesser_Alois_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124f.", "author": "", "orig_id": 1409945}}, {"model": "metainfo.source", "pk": 6702, "fields": {"orig_filename": "Plessing_Rudolf_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409946}}, {"model": "metainfo.source", "pk": 6703, "fields": {"orig_filename": "Pless_Franz_1819_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409944}}, {"model": "metainfo.source", "pk": 6704, "fields": {"orig_filename": "Plestenjak_Jan_1899_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409947}}, {"model": "metainfo.source", "pk": 6705, "fields": {"orig_filename": "Pletersnik_Maks_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409948}}, {"model": "metainfo.source", "pk": 6706, "fields": {"orig_filename": "Pletz_Josef_1788_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125f.", "author": "", "orig_id": 1409949}}, {"model": "metainfo.source", "pk": 6707, "fields": {"orig_filename": "Pleyel_Ignaz-Josef_1757_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 126", "author": "", "orig_id": 1409950}}, {"model": "metainfo.source", "pk": 6708, "fields": {"orig_filename": "Pleyer_Kleophas_1898_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 126f.", "author": "", "orig_id": 1409951}}, {"model": "metainfo.source", "pk": 6709, "fields": {"orig_filename": "Plichta_Soma_1832_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 127", "author": "", "orig_id": 1409952}}, {"model": "metainfo.source", "pk": 6710, "fields": {"orig_filename": "Pliveric_Josip_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 127", "author": "", "orig_id": 1409953}}, {"model": "metainfo.source", "pk": 6711, "fields": {"orig_filename": "Ploechl_Josef_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409954}}, {"model": "metainfo.source", "pk": 6712, "fields": {"orig_filename": "Ploehn_Robert_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409955}}, {"model": "metainfo.source", "pk": 6713, "fields": {"orig_filename": "Ploessl_Simon_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409956}}, {"model": "metainfo.source", "pk": 6714, "fields": {"orig_filename": "Ploj_Miroslav_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128f.", "author": "", "orig_id": 1409957}}, {"model": "metainfo.source", "pk": 6715, "fields": {"orig_filename": "Ploner_Innozenz_1865_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410026}}, {"model": "metainfo.source", "pk": 6716, "fields": {"orig_filename": "Ploner_Josef_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410027}}, {"model": "metainfo.source", "pk": 6717, "fields": {"orig_filename": "Plosz_Pal_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410028}}, {"model": "metainfo.source", "pk": 6718, "fields": {"orig_filename": "Plosz_Sandor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129f.", "author": "", "orig_id": 1410029}}, {"model": "metainfo.source", "pk": 6719, "fields": {"orig_filename": "Pluhar_Ladislav_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410030}}, {"model": "metainfo.source", "pk": 6720, "fields": {"orig_filename": "Pluskal_Frantisek_1811_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410031}}, {"model": "metainfo.source", "pk": 6721, "fields": {"orig_filename": "Poche_Adolf_1811_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410032}}, {"model": "metainfo.source", "pk": 6722, "fields": {"orig_filename": "Pockstaller_Pirmin_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131f.", "author": "", "orig_id": 1410036}}, {"model": "metainfo.source", "pk": 6723, "fields": {"orig_filename": "Pock_Alexander_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130f.", "author": "", "orig_id": 1410033}}, {"model": "metainfo.source", "pk": 6724, "fields": {"orig_filename": "Pock_Friedrich_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131", "author": "", "orig_id": 1410034}}, {"model": "metainfo.source", "pk": 6725, "fields": {"orig_filename": "Pock_Julius_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131", "author": "", "orig_id": 1410035}}, {"model": "metainfo.source", "pk": 6726, "fields": {"orig_filename": "Pocta_Filip_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410037}}, {"model": "metainfo.source", "pk": 6727, "fields": {"orig_filename": "Podaubsky_Eugen_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410038}}, {"model": "metainfo.source", "pk": 6728, "fields": {"orig_filename": "Podhajsky_Alois_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410040}}, {"model": "metainfo.source", "pk": 6729, "fields": {"orig_filename": "Podhajsky_Vincenc_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132f.", "author": "", "orig_id": 1410041}}, {"model": "metainfo.source", "pk": 6730, "fields": {"orig_filename": "Podhorsky_Katharina_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133", "author": "", "orig_id": 1410042}}, {"model": "metainfo.source", "pk": 6731, "fields": {"orig_filename": "Podhradsky_Josef_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133", "author": "", "orig_id": 1410043}}, {"model": "metainfo.source", "pk": 6732, "fields": {"orig_filename": "Podhradsky_Josef_1823_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133f.", "author": "", "orig_id": 1410044}}, {"model": "metainfo.source", "pk": 6733, "fields": {"orig_filename": "Podkonitzky_Adam_1750_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 134", "author": "", "orig_id": 1410045}}, {"model": "metainfo.source", "pk": 6734, "fields": {"orig_filename": "Podlaha_Antonin_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 134f.", "author": "", "orig_id": 1410046}}, {"model": "metainfo.source", "pk": 6735, "fields": {"orig_filename": "Podlewski_Walerian_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135", "author": "", "orig_id": 1410047}}, {"model": "metainfo.source", "pk": 6736, "fields": {"orig_filename": "Podlipny_Jan_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135", "author": "", "orig_id": 1410048}}, {"model": "metainfo.source", "pk": 6737, "fields": {"orig_filename": "Podlipska_Sofie_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135f.", "author": "", "orig_id": 1410126}}, {"model": "metainfo.source", "pk": 6738, "fields": {"orig_filename": "Podlipsky_Josef_1816_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 136", "author": "", "orig_id": 1410127}}, {"model": "metainfo.source", "pk": 6739, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Frigyes_1824_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 136f.", "author": "", "orig_id": 1410128}}, {"model": "metainfo.source", "pk": 6740, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Geza_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410129}}, {"model": "metainfo.source", "pk": 6741, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Jozsef_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410130}}, {"model": "metainfo.source", "pk": 6742, "fields": {"orig_filename": "Podraczky_Josef_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410131}}, {"model": "metainfo.source", "pk": 6743, "fields": {"orig_filename": "Poech_Franz-Josef_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137f.", "author": "", "orig_id": 1410132}}, {"model": "metainfo.source", "pk": 6744, "fields": {"orig_filename": "Poech_Rudolf_1870_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 138f.", "author": "", "orig_id": 1410133}}, {"model": "metainfo.source", "pk": 6745, "fields": {"orig_filename": "Poeck_Friedrich_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 139", "author": "", "orig_id": 1410134}}, {"model": "metainfo.source", "pk": 6746, "fields": {"orig_filename": "Poeck_Gregor_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 139f.", "author": "", "orig_id": 1410135}}, {"model": "metainfo.source", "pk": 6747, "fields": {"orig_filename": "Poeder_Franz_1779_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140", "author": "", "orig_id": 1410136}}, {"model": "metainfo.source", "pk": 6748, "fields": {"orig_filename": "Poehacker_Leopold_1782_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140", "author": "", "orig_id": 1410137}}, {"model": "metainfo.source", "pk": 6749, "fields": {"orig_filename": "Poehnl_Hans_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140f.", "author": "", "orig_id": 1410138}}, {"model": "metainfo.source", "pk": 6750, "fields": {"orig_filename": "Poelleritzer_Leopold_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410141}}, {"model": "metainfo.source", "pk": 6751, "fields": {"orig_filename": "Poellnitz_Ernst_1813_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410142}}, {"model": "metainfo.source", "pk": 6752, "fields": {"orig_filename": "Poell_Alfred_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410139}}, {"model": "metainfo.source", "pk": 6753, "fields": {"orig_filename": "Poell_Josef_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410140}}, {"model": "metainfo.source", "pk": 6754, "fields": {"orig_filename": "Poelt-Poeltenberg_Ernst_1807_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410144}}, {"model": "metainfo.source", "pk": 6755, "fields": {"orig_filename": "Poelt_Klara_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410143}}, {"model": "metainfo.source", "pk": 6756, "fields": {"orig_filename": "Poelzer_Amalie_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410145}}, {"model": "metainfo.source", "pk": 6757, "fields": {"orig_filename": "Poelzer_Johann_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143", "author": "", "orig_id": 1410146}}, {"model": "metainfo.source", "pk": 6758, "fields": {"orig_filename": "Poelzl_Franz-Xaver_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143", "author": "", "orig_id": 1410147}}, {"model": "metainfo.source", "pk": 6759, "fields": {"orig_filename": "Poenninger_Franz_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143f.", "author": "", "orig_id": 1410148}}, {"model": "metainfo.source", "pk": 6760, "fields": {"orig_filename": "Poenninger_Laurenz_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410222}}, {"model": "metainfo.source", "pk": 6761, "fields": {"orig_filename": "Poerner_Josef_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410223}}, {"model": "metainfo.source", "pk": 6762, "fields": {"orig_filename": "Poeschl_Alexander_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410224}}, {"model": "metainfo.source", "pk": 6763, "fields": {"orig_filename": "Poeschl_Josef_1794_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144f.", "author": "", "orig_id": 1410225}}, {"model": "metainfo.source", "pk": 6764, "fields": {"orig_filename": "Poeschl_Rudolf_1852_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145", "author": "", "orig_id": 1410226}}, {"model": "metainfo.source", "pk": 6765, "fields": {"orig_filename": "Poeschl_Viktor_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145", "author": "", "orig_id": 1410227}}, {"model": "metainfo.source", "pk": 6766, "fields": {"orig_filename": "Poesinger_Bernhard_1877_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145f.", "author": "", "orig_id": 1410228}}, {"model": "metainfo.source", "pk": 6767, "fields": {"orig_filename": "Poesinger_Rudolf_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410229}}, {"model": "metainfo.source", "pk": 6768, "fields": {"orig_filename": "Poessinger_Franz-Alexander_1767_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410230}}, {"model": "metainfo.source", "pk": 6769, "fields": {"orig_filename": "Poessl_Wilhelm_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410231}}, {"model": "metainfo.source", "pk": 6770, "fields": {"orig_filename": "Poestion_Josef-Calasanz_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 147", "author": "", "orig_id": 1410233}}, {"model": "metainfo.source", "pk": 6771, "fields": {"orig_filename": "Poestion_Josef_1741_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146f.", "author": "", "orig_id": 1410232}}, {"model": "metainfo.source", "pk": 6772, "fields": {"orig_filename": "Poetsch_Ignaz-Sigismund_1823_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 148", "author": "", "orig_id": 1410235}}, {"model": "metainfo.source", "pk": 6773, "fields": {"orig_filename": "Poetsch_Ignaz_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 147f.", "author": "", "orig_id": 1410234}}, {"model": "metainfo.source", "pk": 6774, "fields": {"orig_filename": "Pinkas_Ladislav_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410793}}, {"model": "metainfo.source", "pk": 6775, "fields": {"orig_filename": "Pinkas_Sobeslav-Hippolyt_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410794}}, {"model": "metainfo.source", "pk": 6776, "fields": {"orig_filename": "Pino-Friedenthal_Arthur-Georg_1843_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410860}}, {"model": "metainfo.source", "pk": 6777, "fields": {"orig_filename": "Pino-Friedenthal_Felix-Maria_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84f.", "author": "", "orig_id": 1410861}}, {"model": "metainfo.source", "pk": 6778, "fields": {"orig_filename": "Pinsker_Simcha_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 85f.", "author": "", "orig_id": 1410863}}, {"model": "metainfo.source", "pk": 6779, "fields": {"orig_filename": "Pins_Emil_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 85", "author": "", "orig_id": 1410862}}, {"model": "metainfo.source", "pk": 6780, "fields": {"orig_filename": "Pintaric_Fortunat_1798_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410866}}, {"model": "metainfo.source", "pk": 6781, "fields": {"orig_filename": "Pintar_Lovro_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410864}}, {"model": "metainfo.source", "pk": 6782, "fields": {"orig_filename": "Pintar_Luka_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410865}}, {"model": "metainfo.source", "pk": 6783, "fields": {"orig_filename": "Pintner_Theodor_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86f.", "author": "", "orig_id": 1410867}}, {"model": "metainfo.source", "pk": 6784, "fields": {"orig_filename": "Piotrowski_Gustaw_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87", "author": "", "orig_id": 1410868}}, {"model": "metainfo.source", "pk": 6785, "fields": {"orig_filename": "Piotrowski_Gustaw_1863_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87", "author": "", "orig_id": 1410869}}, {"model": "metainfo.source", "pk": 6786, "fields": {"orig_filename": "Pipitz_Franz_1815_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87f.", "author": "", "orig_id": 1410870}}, {"model": "metainfo.source", "pk": 6787, "fields": {"orig_filename": "Pipitz_Josef_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 88", "author": "", "orig_id": 1410871}}, {"model": "metainfo.source", "pk": 6788, "fields": {"orig_filename": "Pippich_Karel_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 88f.", "author": "", "orig_id": 1410872}}, {"model": "metainfo.source", "pk": 6789, "fields": {"orig_filename": "Pippich_Karl_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410873}}, {"model": "metainfo.source", "pk": 6790, "fields": {"orig_filename": "Pirchala_Emerich_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410877}}, {"model": "metainfo.source", "pk": 6791, "fields": {"orig_filename": "Pirchan_Emil_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410878}}, {"model": "metainfo.source", "pk": 6792, "fields": {"orig_filename": "Pirchegger_Anton_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410879}}, {"model": "metainfo.source", "pk": 6793, "fields": {"orig_filename": "Pirchegger_Simon_1889_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90f.", "author": "", "orig_id": 1410880}}, {"model": "metainfo.source", "pk": 6794, "fields": {"orig_filename": "Pirchl_Johann-Rudolf_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 91", "author": "", "orig_id": 1410881}}, {"model": "metainfo.source", "pk": 6795, "fields": {"orig_filename": "Pirckmayer_Friedrich_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 91f.", "author": "", "orig_id": 1410955}}, {"model": "metainfo.source", "pk": 6796, "fields": {"orig_filename": "Pirc_Alojzij_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410874}}, {"model": "metainfo.source", "pk": 6797, "fields": {"orig_filename": "Pirc_Ciril_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410875}}, {"model": "metainfo.source", "pk": 6798, "fields": {"orig_filename": "Pirc_Franc_1785_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89f.", "author": "", "orig_id": 1410876}}, {"model": "metainfo.source", "pk": 6799, "fields": {"orig_filename": "Piret-Bihain_Eugen_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410956}}, {"model": "metainfo.source", "pk": 6800, "fields": {"orig_filename": "Pirhalla_Martin_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410957}}, {"model": "metainfo.source", "pk": 6801, "fields": {"orig_filename": "Piringer_Benedikt_1775_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410958}}, {"model": "metainfo.source", "pk": 6802, "fields": {"orig_filename": "Piringer_Ferdinand_1780_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92f.", "author": "", "orig_id": 1410959}}, {"model": "metainfo.source", "pk": 6803, "fields": {"orig_filename": "Piringer_Josef-Friedrich_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410960}}, {"model": "metainfo.source", "pk": 6804, "fields": {"orig_filename": "Piringer_Michael_1763_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410961}}, {"model": "metainfo.source", "pk": 6805, "fields": {"orig_filename": "Piringer_Otto_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410962}}, {"model": "metainfo.source", "pk": 6806, "fields": {"orig_filename": "Pirjevec_Avgust_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93f.", "author": "", "orig_id": 1410963}}, {"model": "metainfo.source", "pk": 6807, "fields": {"orig_filename": "Pirker_Max_1886_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410964}}, {"model": "metainfo.source", "pk": 6808, "fields": {"orig_filename": "Pirkhert_Eduard-Max_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410965}}, {"model": "metainfo.source", "pk": 6809, "fields": {"orig_filename": "Pirko_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410966}}, {"model": "metainfo.source", "pk": 6810, "fields": {"orig_filename": "Pirnat_Niko_1903_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94f.", "author": "", "orig_id": 1410967}}, {"model": "metainfo.source", "pk": 6811, "fields": {"orig_filename": "Pirner_Maxmilian_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 95", "author": "", "orig_id": 1410968}}, {"model": "metainfo.source", "pk": 6812, "fields": {"orig_filename": "Pirquet-Cesenatico_Klemens_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 95f.", "author": "", "orig_id": 1410969}}, {"model": "metainfo.source", "pk": 6813, "fields": {"orig_filename": "Pirsch_Adolf_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410970}}, {"model": "metainfo.source", "pk": 6814, "fields": {"orig_filename": "Piscalar_Alois-Urban_1817_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410971}}, {"model": "metainfo.source", "pk": 6815, "fields": {"orig_filename": "Piscel_Antonio_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410972}}, {"model": "metainfo.source", "pk": 6816, "fields": {"orig_filename": "Pischek_Johann_1814_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410973}}, {"model": "metainfo.source", "pk": 6817, "fields": {"orig_filename": "Pischinger_Karl_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410974}}, {"model": "metainfo.source", "pk": 6818, "fields": {"orig_filename": "Pischinger_Oskar_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410975}}, {"model": "metainfo.source", "pk": 6819, "fields": {"orig_filename": "Pischitz_Georg_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97f.", "author": "", "orig_id": 1410976}}, {"model": "metainfo.source", "pk": 6820, "fields": {"orig_filename": "Pischl_Franz_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410977}}, {"model": "metainfo.source", "pk": 6821, "fields": {"orig_filename": "Pischof_Alfred_1882_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410978}}, {"model": "metainfo.source", "pk": 6822, "fields": {"orig_filename": "Pischof_Matthias_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410979}}, {"model": "metainfo.source", "pk": 6823, "fields": {"orig_filename": "Piskacek_Ludwig_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99", "author": "", "orig_id": 1409566}}, {"model": "metainfo.source", "pk": 6824, "fields": {"orig_filename": "Piskac_Bedrich_1898_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98f.", "author": "", "orig_id": 1409565}}, {"model": "metainfo.source", "pk": 6825, "fields": {"orig_filename": "Pisko_Franz-Josef_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99", "author": "", "orig_id": 1409567}}, {"model": "metainfo.source", "pk": 6826, "fields": {"orig_filename": "Pisko_Ignaz_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99f.", "author": "", "orig_id": 1409568}}, {"model": "metainfo.source", "pk": 6827, "fields": {"orig_filename": "Pisko_Oskar_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 100", "author": "", "orig_id": 1409569}}, {"model": "metainfo.source", "pk": 6828, "fields": {"orig_filename": "Pisling_Theophil_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 100f.", "author": "", "orig_id": 1409570}}, {"model": "metainfo.source", "pk": 6829, "fields": {"orig_filename": "Pistek_Franciszek_1786_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409655}}, {"model": "metainfo.source", "pk": 6830, "fields": {"orig_filename": "Pistor_Betty_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409656}}, {"model": "metainfo.source", "pk": 6831, "fields": {"orig_filename": "Pistor_Felix_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409657}}, {"model": "metainfo.source", "pk": 6832, "fields": {"orig_filename": "Pistor_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409658}}, {"model": "metainfo.source", "pk": 6833, "fields": {"orig_filename": "Pisztory_Mor_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409659}}, {"model": "metainfo.source", "pk": 6834, "fields": {"orig_filename": "Pitacco_Giorgio_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409660}}, {"model": "metainfo.source", "pk": 6835, "fields": {"orig_filename": "Pitha_Franz_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102f.", "author": "", "orig_id": 1409661}}, {"model": "metainfo.source", "pk": 6836, "fields": {"orig_filename": "Pitha_Vaclav_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103", "author": "", "orig_id": 1409662}}, {"model": "metainfo.source", "pk": 6837, "fields": {"orig_filename": "Pitner_Franz_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103", "author": "", "orig_id": 1409663}}, {"model": "metainfo.source", "pk": 6838, "fields": {"orig_filename": "Pitner_Maximilian_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103f.", "author": "", "orig_id": 1409664}}, {"model": "metainfo.source", "pk": 6839, "fields": {"orig_filename": "Pitra_Franz_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104", "author": "", "orig_id": 1409665}}, {"model": "metainfo.source", "pk": 6840, "fields": {"orig_filename": "Pitreich_Anton_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104", "author": "", "orig_id": 1409666}}, {"model": "metainfo.source", "pk": 6841, "fields": {"orig_filename": "Pitreich_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104f.", "author": "", "orig_id": 1409667}}, {"model": "metainfo.source", "pk": 6842, "fields": {"orig_filename": "Pitreich_Heinrich_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105", "author": "", "orig_id": 1409668}}, {"model": "metainfo.source", "pk": 6843, "fields": {"orig_filename": "Pitreich_Maximilian_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105", "author": "", "orig_id": 1409669}}, {"model": "metainfo.source", "pk": 6844, "fields": {"orig_filename": "Pitsch_Karl-Franz_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105f.", "author": "", "orig_id": 1409670}}, {"model": "metainfo.source", "pk": 6845, "fields": {"orig_filename": "Pittani_Antonio_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106", "author": "", "orig_id": 1409671}}, {"model": "metainfo.source", "pk": 6846, "fields": {"orig_filename": "Pittel_Adolf_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106", "author": "", "orig_id": 1409741}}, {"model": "metainfo.source", "pk": 6847, "fields": {"orig_filename": "Pittel_Heinrich_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106f.", "author": "", "orig_id": 1409672}}, {"model": "metainfo.source", "pk": 6848, "fields": {"orig_filename": "Pitteri_Riccardo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107", "author": "", "orig_id": 1409673}}, {"model": "metainfo.source", "pk": 6849, "fields": {"orig_filename": "Pittermann_Emil-Artur_1885_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107", "author": "", "orig_id": 1409674}}, {"model": "metainfo.source", "pk": 6850, "fields": {"orig_filename": "Pittner_Anton_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107f.", "author": "", "orig_id": 1409675}}, {"model": "metainfo.source", "pk": 6851, "fields": {"orig_filename": "Pittner_Wilhelm_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409676}}, {"model": "metainfo.source", "pk": 6852, "fields": {"orig_filename": "Pittoni_Valentino_1872_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409677}}, {"model": "metainfo.source", "pk": 6853, "fields": {"orig_filename": "Pitzer_Martin_1803_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409749}}, {"model": "metainfo.source", "pk": 6854, "fields": {"orig_filename": "Pitzinger_Franz_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108f.", "author": "", "orig_id": 1409750}}, {"model": "metainfo.source", "pk": 6855, "fields": {"orig_filename": "Piuariu-Molnar_Ioan_1749_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109", "author": "", "orig_id": 1409751}}, {"model": "metainfo.source", "pk": 6856, "fields": {"orig_filename": "Piva_Giovanni_1798_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109", "author": "", "orig_id": 1409752}}, {"model": "metainfo.source", "pk": 6857, "fields": {"orig_filename": "Pivko_Ljudevit_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109f.", "author": "", "orig_id": 1409753}}, {"model": "metainfo.source", "pk": 6858, "fields": {"orig_filename": "Pivoda_Frantisek_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110", "author": "", "orig_id": 1409754}}, {"model": "metainfo.source", "pk": 6859, "fields": {"orig_filename": "Pixis_Friedrich-Wilhelm_1785_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110", "author": "", "orig_id": 1409755}}, {"model": "metainfo.source", "pk": 6860, "fields": {"orig_filename": "Pixis_Theodor_1831_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110f.", "author": "", "orig_id": 1409756}}, {"model": "metainfo.source", "pk": 6861, "fields": {"orig_filename": "Pizzamano_Josef_1809_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111", "author": "", "orig_id": 1409757}}, {"model": "metainfo.source", "pk": 6862, "fields": {"orig_filename": "Pizzighelli_Giuseppe_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111", "author": "", "orig_id": 1409758}}, {"model": "metainfo.source", "pk": 6863, "fields": {"orig_filename": "Pizzini-Daltofonte_Antonio_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111f.", "author": "", "orig_id": 1409759}}, {"model": "metainfo.source", "pk": 6864, "fields": {"orig_filename": "Placek_Boleslav_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112", "author": "", "orig_id": 1409760}}, {"model": "metainfo.source", "pk": 6865, "fields": {"orig_filename": "Placek_Frantisek_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112", "author": "", "orig_id": 1409761}}, {"model": "metainfo.source", "pk": 6866, "fields": {"orig_filename": "Plachutta_Josef_1827_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112f.", "author": "", "orig_id": 1409762}}, {"model": "metainfo.source", "pk": 6867, "fields": {"orig_filename": "Plachy_Antonin_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409763}}, {"model": "metainfo.source", "pk": 6868, "fields": {"orig_filename": "Plachy_Vaclav_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409764}}, {"model": "metainfo.source", "pk": 6869, "fields": {"orig_filename": "Plaichinger_Karl_1880_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409765}}, {"model": "metainfo.source", "pk": 6870, "fields": {"orig_filename": "Plaichinger_Mathilde_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409766}}, {"model": "metainfo.source", "pk": 6871, "fields": {"orig_filename": "Plakolm_Johann_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409767}}, {"model": "metainfo.source", "pk": 6872, "fields": {"orig_filename": "Plancic_Juraj_1899_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409768}}, {"model": "metainfo.source", "pk": 6873, "fields": {"orig_filename": "Planck-Planckburg_Franz_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114f.", "author": "", "orig_id": 1409769}}, {"model": "metainfo.source", "pk": 6874, "fields": {"orig_filename": "Planck-Planckburg_Karl-Franz_1833_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409770}}, {"model": "metainfo.source", "pk": 6875, "fields": {"orig_filename": "Planckh_Viktor_1904_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409771}}, {"model": "metainfo.source", "pk": 6876, "fields": {"orig_filename": "Plankensteiner_Arnold_1824_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409841}}, {"model": "metainfo.source", "pk": 6877, "fields": {"orig_filename": "Plank_Beda_1741_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409772}}, {"model": "metainfo.source", "pk": 6878, "fields": {"orig_filename": "Piazza_Saulle_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410414}}, {"model": "metainfo.source", "pk": 6879, "fields": {"orig_filename": "Piaz_Giovanni-Battista_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48f.", "author": "", "orig_id": 1410412}}, {"model": "metainfo.source", "pk": 6880, "fields": {"orig_filename": "Pia_Julius_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 46", "author": "", "orig_id": 1410404}}, {"model": "metainfo.source", "pk": 6881, "fields": {"orig_filename": "Picciola_Giuseppe_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49f.", "author": "", "orig_id": 1410416}}, {"model": "metainfo.source", "pk": 6882, "fields": {"orig_filename": "Piccoli_Giorgio_1840_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50", "author": "", "orig_id": 1410417}}, {"model": "metainfo.source", "pk": 6883, "fields": {"orig_filename": "Picek_Vaclav-Jaromir_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50", "author": "", "orig_id": 1410418}}, {"model": "metainfo.source", "pk": 6884, "fields": {"orig_filename": "Pichelmayer_Karl_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50f.", "author": "", "orig_id": 1410419}}, {"model": "metainfo.source", "pk": 6885, "fields": {"orig_filename": "Pichler-Rautenkar_Adolf_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59", "author": "", "orig_id": 1410506}}, {"model": "metainfo.source", "pk": 6886, "fields": {"orig_filename": "Pichler_Anton-Andreas_1770_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52", "author": "", "orig_id": 1410489}}, {"model": "metainfo.source", "pk": 6887, "fields": {"orig_filename": "Pichler_Anton_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52", "author": "", "orig_id": 1410488}}, {"model": "metainfo.source", "pk": 6888, "fields": {"orig_filename": "Pichler_Elisabeth_1783_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52f.", "author": "", "orig_id": 1410490}}, {"model": "metainfo.source", "pk": 6889, "fields": {"orig_filename": "Pichler_Franz_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 53f.", "author": "", "orig_id": 1410491}}, {"model": "metainfo.source", "pk": 6890, "fields": {"orig_filename": "Pichler_Franz_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54", "author": "", "orig_id": 1410492}}, {"model": "metainfo.source", "pk": 6891, "fields": {"orig_filename": "Pichler_Friedrich_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54", "author": "", "orig_id": 1410493}}, {"model": "metainfo.source", "pk": 6892, "fields": {"orig_filename": "Pichler_Johann_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54f.", "author": "", "orig_id": 1410494}}, {"model": "metainfo.source", "pk": 6893, "fields": {"orig_filename": "Pichler_Johann_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55", "author": "", "orig_id": 1410495}}, {"model": "metainfo.source", "pk": 6894, "fields": {"orig_filename": "Pichler_Josef_1765_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55", "author": "", "orig_id": 1410496}}, {"model": "metainfo.source", "pk": 6895, "fields": {"orig_filename": "Pichler_Josef_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55f.", "author": "", "orig_id": 1410497}}, {"model": "metainfo.source", "pk": 6896, "fields": {"orig_filename": "Pichler_Karl_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 56", "author": "", "orig_id": 1410498}}, {"model": "metainfo.source", "pk": 6897, "fields": {"orig_filename": "Pichler_Karoline_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 56f.", "author": "", "orig_id": 1410499}}, {"model": "metainfo.source", "pk": 6898, "fields": {"orig_filename": "Pichler_Kasper_1796_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410500}}, {"model": "metainfo.source", "pk": 6899, "fields": {"orig_filename": "Pichler_Kletus_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410501}}, {"model": "metainfo.source", "pk": 6900, "fields": {"orig_filename": "Pichler_Luigi_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410502}}, {"model": "metainfo.source", "pk": 6901, "fields": {"orig_filename": "Pichler_Maximilian_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57f.", "author": "", "orig_id": 1410503}}, {"model": "metainfo.source", "pk": 6902, "fields": {"orig_filename": "Pichler_Rudolf_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58", "author": "", "orig_id": 1410504}}, {"model": "metainfo.source", "pk": 6903, "fields": {"orig_filename": "Pichler_Thomas_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58", "author": "", "orig_id": 1409740}}, {"model": "metainfo.source", "pk": 6904, "fields": {"orig_filename": "Pichler_Wilhelm_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58f.", "author": "", "orig_id": 1410505}}, {"model": "metainfo.source", "pk": 6905, "fields": {"orig_filename": "Pichlova_Frantiska_1811_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59", "author": "", "orig_id": 1410507}}, {"model": "metainfo.source", "pk": 6906, "fields": {"orig_filename": "Pichl_Alois-Ludwig_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 51", "author": "", "orig_id": 1410486}}, {"model": "metainfo.source", "pk": 6907, "fields": {"orig_filename": "Pichl_Josef-Bojislav_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 51f.", "author": "", "orig_id": 1410487}}, {"model": "metainfo.source", "pk": 6908, "fields": {"orig_filename": "Pickert_Karl_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410589}}, {"model": "metainfo.source", "pk": 6909, "fields": {"orig_filename": "Pickl-Witkenberg_Wilhelm_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410590}}, {"model": "metainfo.source", "pk": 6910, "fields": {"orig_filename": "Pick_Adolfo_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59f.", "author": "", "orig_id": 1410508}}, {"model": "metainfo.source", "pk": 6911, "fields": {"orig_filename": "Pick_Alois_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60", "author": "", "orig_id": 1410509}}, {"model": "metainfo.source", "pk": 6912, "fields": {"orig_filename": "Pick_Arnold_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60", "author": "", "orig_id": 1410510}}, {"model": "metainfo.source", "pk": 6913, "fields": {"orig_filename": "Pick_Friedrich_1867_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60f.", "author": "", "orig_id": 1410581}}, {"model": "metainfo.source", "pk": 6914, "fields": {"orig_filename": "Pick_Georg-Alexander_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61", "author": "", "orig_id": 1410582}}, {"model": "metainfo.source", "pk": 6915, "fields": {"orig_filename": "Pick_Gustav_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61", "author": "", "orig_id": 1410583}}, {"model": "metainfo.source", "pk": 6916, "fields": {"orig_filename": "Pick_Karl_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61f.", "author": "", "orig_id": 1410585}}, {"model": "metainfo.source", "pk": 6917, "fields": {"orig_filename": "Pick_Otto_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62", "author": "", "orig_id": 1410586}}, {"model": "metainfo.source", "pk": 6918, "fields": {"orig_filename": "Pick_Philipp-Josef_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62", "author": "", "orig_id": 1410587}}, {"model": "metainfo.source", "pk": 6919, "fields": {"orig_filename": "Pick_Walter_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62f.", "author": "", "orig_id": 1410588}}, {"model": "metainfo.source", "pk": 6920, "fields": {"orig_filename": "Picman_Josip_1904_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410591}}, {"model": "metainfo.source", "pk": 6921, "fields": {"orig_filename": "Pic_Josef-Ladislav_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410415}}, {"model": "metainfo.source", "pk": 6922, "fields": {"orig_filename": "Pidoll-Quintenbach_Michael_1851_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63f.", "author": "", "orig_id": 1410592}}, {"model": "metainfo.source", "pk": 6923, "fields": {"orig_filename": "Piekosinski_Franciszek_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 64", "author": "", "orig_id": 1410593}}, {"model": "metainfo.source", "pk": 6924, "fields": {"orig_filename": "Pielsticker_Ludwig_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 64", "author": "", "orig_id": 1410594}}, {"model": "metainfo.source", "pk": 6925, "fields": {"orig_filename": "Pieniazek_Czeslaw-Teofil_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65", "author": "", "orig_id": 1410595}}, {"model": "metainfo.source", "pk": 6926, "fields": {"orig_filename": "Pieniazek_Przemyslaw-Wiktor_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65", "author": "", "orig_id": 1410596}}, {"model": "metainfo.source", "pk": 6927, "fields": {"orig_filename": "Pienkowski_Stefan-Kazimierz_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65f.", "author": "", "orig_id": 1410597}}, {"model": "metainfo.source", "pk": 6928, "fields": {"orig_filename": "Piepenhagen_August_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66", "author": "", "orig_id": 1410598}}, {"model": "metainfo.source", "pk": 6929, "fields": {"orig_filename": "Pierling_Jakob_1784_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66", "author": "", "orig_id": 1410599}}, {"model": "metainfo.source", "pk": 6930, "fields": {"orig_filename": "Pierre_Viktor_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66f.", "author": "", "orig_id": 1410600}}, {"model": "metainfo.source", "pk": 6931, "fields": {"orig_filename": "Pierus_Theodor_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67", "author": "", "orig_id": 1410601}}, {"model": "metainfo.source", "pk": 6932, "fields": {"orig_filename": "Pierwipfl_Michael-Wolfgang_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67", "author": "", "orig_id": 1410602}}, {"model": "metainfo.source", "pk": 6933, "fields": {"orig_filename": "Piessinger_Maximilian_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67f.", "author": "", "orig_id": 1410603}}, {"model": "metainfo.source", "pk": 6934, "fields": {"orig_filename": "Pietak_Leonard_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410604}}, {"model": "metainfo.source", "pk": 6935, "fields": {"orig_filename": "Pietor_Ambro_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410673}}, {"model": "metainfo.source", "pk": 6936, "fields": {"orig_filename": "Pietruski_Oktaw_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410674}}, {"model": "metainfo.source", "pk": 6937, "fields": {"orig_filename": "Pietruski_Stanislaw-Konstanty_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68f.", "author": "", "orig_id": 1410675}}, {"model": "metainfo.source", "pk": 6938, "fields": {"orig_filename": "Pietrzikowsky_Eduard_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69", "author": "", "orig_id": 1410676}}, {"model": "metainfo.source", "pk": 6939, "fields": {"orig_filename": "Pietschmann_Adolf_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69", "author": "", "orig_id": 1410677}}, {"model": "metainfo.source", "pk": 6940, "fields": {"orig_filename": "Piette-Rivage_Prosper_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69f.", "author": "", "orig_id": 1410678}}, {"model": "metainfo.source", "pk": 6941, "fields": {"orig_filename": "Piette-Rivage_Prosper_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70", "author": "", "orig_id": 1410679}}, {"model": "metainfo.source", "pk": 6942, "fields": {"orig_filename": "Pietznigg_Franz_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70", "author": "", "orig_id": 1410680}}, {"model": "metainfo.source", "pk": 6943, "fields": {"orig_filename": "Piffl_Friedrich_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70f.", "author": "", "orig_id": 1410681}}, {"model": "metainfo.source", "pk": 6944, "fields": {"orig_filename": "Piffl_Otto_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71", "author": "", "orig_id": 1410682}}, {"model": "metainfo.source", "pk": 6945, "fields": {"orig_filename": "Piffrader_Johann_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71", "author": "", "orig_id": 1410683}}, {"model": "metainfo.source", "pk": 6946, "fields": {"orig_filename": "Piger_Johann_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410685}}, {"model": "metainfo.source", "pk": 6947, "fields": {"orig_filename": "Pig_Franz-Anton_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71f.", "author": "", "orig_id": 1410684}}, {"model": "metainfo.source", "pk": 6948, "fields": {"orig_filename": "Pikhart_Antonin_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410687}}, {"model": "metainfo.source", "pk": 6949, "fields": {"orig_filename": "Piksa_Maria-Samuela_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410688}}, {"model": "metainfo.source", "pk": 6950, "fields": {"orig_filename": "Pik_Franciszek_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410686}}, {"model": "metainfo.source", "pk": 6951, "fields": {"orig_filename": "Pilarski_Valentin-Kasimir_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74", "author": "", "orig_id": 1410692}}, {"model": "metainfo.source", "pk": 6952, "fields": {"orig_filename": "Pilar_Djuro_1846_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72f.", "author": "", "orig_id": 1410689}}, {"model": "metainfo.source", "pk": 6953, "fields": {"orig_filename": "Pilar_Ivo_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 73", "author": "", "orig_id": 1410690}}, {"model": "metainfo.source", "pk": 6954, "fields": {"orig_filename": "Pilar_Martin_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 73", "author": "", "orig_id": 1410691}}, {"model": "metainfo.source", "pk": 6955, "fields": {"orig_filename": "Pilat_Josef-Anton_1782_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74", "author": "", "orig_id": 1410693}}, {"model": "metainfo.source", "pk": 6956, "fields": {"orig_filename": "Pilat_Roman_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74f.", "author": "", "orig_id": 1410694}}, {"model": "metainfo.source", "pk": 6957, "fields": {"orig_filename": "Pilat_Tadeusz_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 75", "author": "", "orig_id": 1410695}}, {"model": "metainfo.source", "pk": 6958, "fields": {"orig_filename": "Pilat_Wladyslaw_1857_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 75f.", "author": "", "orig_id": 1410769}}, {"model": "metainfo.source", "pk": 6959, "fields": {"orig_filename": "Pilhal_Karl_1822_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410770}}, {"model": "metainfo.source", "pk": 6960, "fields": {"orig_filename": "Pillepic-Lippahora_Rudolf_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410772}}, {"model": "metainfo.source", "pk": 6961, "fields": {"orig_filename": "Pillepich_Pietro_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76f.", "author": "", "orig_id": 1410773}}, {"model": "metainfo.source", "pk": 6962, "fields": {"orig_filename": "Pillersdorff_Franz_1786_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77", "author": "", "orig_id": 1410775}}, {"model": "metainfo.source", "pk": 6963, "fields": {"orig_filename": "Piller_Piotr_1801_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77", "author": "", "orig_id": 1410774}}, {"model": "metainfo.source", "pk": 6964, "fields": {"orig_filename": "Pillewizer_Emerich_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77f.", "author": "", "orig_id": 1410776}}, {"model": "metainfo.source", "pk": 6965, "fields": {"orig_filename": "Pillewizer_Michaela_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410777}}, {"model": "metainfo.source", "pk": 6966, "fields": {"orig_filename": "Pillwax_Johann_1814_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410778}}, {"model": "metainfo.source", "pk": 6967, "fields": {"orig_filename": "Pillwax_Viktor-Josef_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410779}}, {"model": "metainfo.source", "pk": 6968, "fields": {"orig_filename": "Pillwein_Benedikt_1779_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78f.", "author": "", "orig_id": 1410780}}, {"model": "metainfo.source", "pk": 6969, "fields": {"orig_filename": "Pill_Karl-Emanuel_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410771}}, {"model": "metainfo.source", "pk": 6970, "fields": {"orig_filename": "Piltz_Jan_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 79", "author": "", "orig_id": 1410781}}, {"model": "metainfo.source", "pk": 6971, "fields": {"orig_filename": "Pilz_Vinzenz_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 79f.", "author": "", "orig_id": 1410782}}, {"model": "metainfo.source", "pk": 6972, "fields": {"orig_filename": "Pinali_Vincenzo_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80", "author": "", "orig_id": 1410783}}, {"model": "metainfo.source", "pk": 6973, "fields": {"orig_filename": "Pincherle_Salvatore_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80", "author": "", "orig_id": 1410784}}, {"model": "metainfo.source", "pk": 6974, "fields": {"orig_filename": "Pindter_Emil-Friedrich_1836_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80f.", "author": "", "orig_id": 1410785}}, {"model": "metainfo.source", "pk": 6975, "fields": {"orig_filename": "Pineles_Friedrich_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 81", "author": "", "orig_id": 1410786}}, {"model": "metainfo.source", "pk": 6976, "fields": {"orig_filename": "Pineles_Hirsch-Mendel_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 81f.", "author": "", "orig_id": 1410787}}, {"model": "metainfo.source", "pk": 6977, "fields": {"orig_filename": "Pineles_Samuel_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82", "author": "", "orig_id": 1410788}}, {"model": "metainfo.source", "pk": 6978, "fields": {"orig_filename": "Pineles_Stanislaus_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82", "author": "", "orig_id": 1410789}}, {"model": "metainfo.source", "pk": 6979, "fields": {"orig_filename": "Pinggera_Johann_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82f.", "author": "", "orig_id": 1410790}}, {"model": "metainfo.source", "pk": 6980, "fields": {"orig_filename": "Pininski_Leon_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 83", "author": "", "orig_id": 1410791}}, {"model": "metainfo.source", "pk": 6981, "fields": {"orig_filename": "Pinkas_Adolf-Maria_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 83f.", "author": "", "orig_id": 1410792}}, {"model": "metainfo.source", "pk": 6982, "fields": {"orig_filename": "Petter_Franz-Xaver_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12f.", "author": "", "orig_id": 1409739}}, {"model": "metainfo.source", "pk": 6983, "fields": {"orig_filename": "Petter_Theodor-Josef_1822_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407902}}, {"model": "metainfo.source", "pk": 6984, "fields": {"orig_filename": "Pettko_Jan_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14", "author": "", "orig_id": 1407906}}, {"model": "metainfo.source", "pk": 6985, "fields": {"orig_filename": "Petz-Hohenrhode_Eduard_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407910}}, {"model": "metainfo.source", "pk": 6986, "fields": {"orig_filename": "Petzer-Rasenheim_Anton_1794_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407911}}, {"model": "metainfo.source", "pk": 6987, "fields": {"orig_filename": "Petzmayer_Johann_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407912}}, {"model": "metainfo.source", "pk": 6988, "fields": {"orig_filename": "Petzold_Alfons_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 16f.", "author": "", "orig_id": 1407913}}, {"model": "metainfo.source", "pk": 6989, "fields": {"orig_filename": "Petzold_Marie_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407915}}, {"model": "metainfo.source", "pk": 6990, "fields": {"orig_filename": "Petzval_Josef-Maximilian_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17f.", "author": "", "orig_id": 1407916}}, {"model": "metainfo.source", "pk": 6991, "fields": {"orig_filename": "Petzval_Otto_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 18f.", "author": "", "orig_id": 1407917}}, {"model": "metainfo.source", "pk": 6992, "fields": {"orig_filename": "Petz_Anton_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14", "author": "", "orig_id": 1407907}}, {"model": "metainfo.source", "pk": 6993, "fields": {"orig_filename": "Petz_Gedeon_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14f.", "author": "", "orig_id": 1407908}}, {"model": "metainfo.source", "pk": 6994, "fields": {"orig_filename": "Petz_Josef_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407909}}, {"model": "metainfo.source", "pk": 6995, "fields": {"orig_filename": "Peucker_Karl_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19", "author": "", "orig_id": 1407918}}, {"model": "metainfo.source", "pk": 6996, "fields": {"orig_filename": "Peutlschmid_Robert_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19", "author": "", "orig_id": 1410100}}, {"model": "metainfo.source", "pk": 6997, "fields": {"orig_filename": "Pewny_Josef_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19f.", "author": "", "orig_id": 1410101}}, {"model": "metainfo.source", "pk": 6998, "fields": {"orig_filename": "Peyerle_Wilhelm_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410102}}, {"model": "metainfo.source", "pk": 6999, "fields": {"orig_filename": "Peyfuss_Karl-Johann_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410103}}, {"model": "metainfo.source", "pk": 7000, "fields": {"orig_filename": "Peyrer-Heimstaett_Karl_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410104}}, {"model": "metainfo.source", "pk": 7001, "fields": {"orig_filename": "Peyritsch_Johann-Josef_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20f.", "author": "", "orig_id": 1410105}}, {"model": "metainfo.source", "pk": 7002, "fields": {"orig_filename": "Pezolt_Georg_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 21", "author": "", "orig_id": 1410106}}, {"model": "metainfo.source", "pk": 7003, "fields": {"orig_filename": "Pezolt_Ludwig_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 21f.", "author": "", "orig_id": 1410107}}, {"model": "metainfo.source", "pk": 7004, "fields": {"orig_filename": "Pezzey_August_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410108}}, {"model": "metainfo.source", "pk": 7005, "fields": {"orig_filename": "Pezzey_August_1875_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410109}}, {"model": "metainfo.source", "pk": 7006, "fields": {"orig_filename": "Pezzicar_Francesco_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410112}}, {"model": "metainfo.source", "pk": 7007, "fields": {"orig_filename": "Pezzi_Francesco_1781_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410110}}, {"model": "metainfo.source", "pk": 7008, "fields": {"orig_filename": "Pezzi_Pietro_1757_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410111}}, {"model": "metainfo.source", "pk": 7009, "fields": {"orig_filename": "Pezzl_Johann_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22f.", "author": "", "orig_id": 1410113}}, {"model": "metainfo.source", "pk": 7010, "fields": {"orig_filename": "Pfaffinger_Michaela_1862_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24", "author": "", "orig_id": 1410117}}, {"model": "metainfo.source", "pk": 7011, "fields": {"orig_filename": "Pfaff_Annetta_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 23", "author": "", "orig_id": 1410114}}, {"model": "metainfo.source", "pk": 7012, "fields": {"orig_filename": "Pfaff_Ivo_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 23f.", "author": "", "orig_id": 1410115}}, {"model": "metainfo.source", "pk": 7013, "fields": {"orig_filename": "Pfaff_Wilhelm_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24", "author": "", "orig_id": 1410116}}, {"model": "metainfo.source", "pk": 7014, "fields": {"orig_filename": "Pfanhauser_Wilhelm_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24f.", "author": "", "orig_id": 1410118}}, {"model": "metainfo.source", "pk": 7015, "fields": {"orig_filename": "Pfanner_Franz_1825_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 25", "author": "", "orig_id": 1410119}}, {"model": "metainfo.source", "pk": 7016, "fields": {"orig_filename": "Pfannl_Heinrich_1870_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 25f.", "author": "", "orig_id": 1410120}}, {"model": "metainfo.source", "pk": 7017, "fields": {"orig_filename": "Pfaundler-Hadermur_Leopold_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 26f.", "author": "", "orig_id": 1410122}}, {"model": "metainfo.source", "pk": 7018, "fields": {"orig_filename": "Pfaundler-Hadermur_Meinhard_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 27", "author": "", "orig_id": 1410123}}, {"model": "metainfo.source", "pk": 7019, "fields": {"orig_filename": "Pfaundler-Sternfeld_Alois_1765_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 27f.", "author": "", "orig_id": 1410124}}, {"model": "metainfo.source", "pk": 7020, "fields": {"orig_filename": "Pfaundler-Sternfeld_Johann-Georg_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28", "author": "", "orig_id": 1410125}}, {"model": "metainfo.source", "pk": 7021, "fields": {"orig_filename": "Pfaundler_Ignaz-Johann_1808_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 26", "author": "", "orig_id": 1410121}}, {"model": "metainfo.source", "pk": 7022, "fields": {"orig_filename": "Pfausler_Peter-Paul_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28", "author": "", "orig_id": 1410199}}, {"model": "metainfo.source", "pk": 7023, "fields": {"orig_filename": "Pfefferle_Josef_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410202}}, {"model": "metainfo.source", "pk": 7024, "fields": {"orig_filename": "Pfeffer_Karl_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28f.", "author": "", "orig_id": 1410200}}, {"model": "metainfo.source", "pk": 7025, "fields": {"orig_filename": "Pfeffer_Rudolf_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410201}}, {"model": "metainfo.source", "pk": 7026, "fields": {"orig_filename": "Pfeifer-Forstheim_Johann_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35", "author": "", "orig_id": 1410219}}, {"model": "metainfo.source", "pk": 7027, "fields": {"orig_filename": "Pfeifer-Julienfels_Ferdinand_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35", "author": "", "orig_id": 1410220}}, {"model": "metainfo.source", "pk": 7028, "fields": {"orig_filename": "Pfeifer-Wellheim_Ferdinand_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35f.", "author": "", "orig_id": 1410221}}, {"model": "metainfo.source", "pk": 7029, "fields": {"orig_filename": "Pfeifer-Wellheim_Heinrich_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36", "author": "", "orig_id": 1410298}}, {"model": "metainfo.source", "pk": 7030, "fields": {"orig_filename": "Pfeifer_Anselm_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410203}}, {"model": "metainfo.source", "pk": 7031, "fields": {"orig_filename": "Pfeifer_Franz-Julius_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 30f.", "author": "", "orig_id": 1410205}}, {"model": "metainfo.source", "pk": 7032, "fields": {"orig_filename": "Pfeifer_Franz_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29f.", "author": "", "orig_id": 1410204}}, {"model": "metainfo.source", "pk": 7033, "fields": {"orig_filename": "Pfeifer_Heinrich_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31", "author": "", "orig_id": 1410206}}, {"model": "metainfo.source", "pk": 7034, "fields": {"orig_filename": "Pfeifer_Hermann_1877_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31", "author": "", "orig_id": 1410207}}, {"model": "metainfo.source", "pk": 7035, "fields": {"orig_filename": "Pfeifer_Ida_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31f.", "author": "", "orig_id": 1410208}}, {"model": "metainfo.source", "pk": 7036, "fields": {"orig_filename": "Pfeifer_Johann_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32", "author": "", "orig_id": 1410209}}, {"model": "metainfo.source", "pk": 7037, "fields": {"orig_filename": "Pfeifer_Josef-Anton_1776_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32f.", "author": "", "orig_id": 1410211}}, {"model": "metainfo.source", "pk": 7038, "fields": {"orig_filename": "Pfeifer_Josef_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32", "author": "", "orig_id": 1410210}}, {"model": "metainfo.source", "pk": 7039, "fields": {"orig_filename": "Pfeifer_Josip_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33", "author": "", "orig_id": 1410212}}, {"model": "metainfo.source", "pk": 7040, "fields": {"orig_filename": "Pfeifer_Julius-Anton_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410215}}, {"model": "metainfo.source", "pk": 7041, "fields": {"orig_filename": "Pfeifer_Juliusz_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410216}}, {"model": "metainfo.source", "pk": 7042, "fields": {"orig_filename": "Pfeifer_Julius_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33", "author": "", "orig_id": 1410213}}, {"model": "metainfo.source", "pk": 7043, "fields": {"orig_filename": "Pfeifer_Julius_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33f.", "author": "", "orig_id": 1410214}}, {"model": "metainfo.source", "pk": 7044, "fields": {"orig_filename": "Pfeifer_Karl-Hermann_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410217}}, {"model": "metainfo.source", "pk": 7045, "fields": {"orig_filename": "Pfeifer_Theodor_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34f.", "author": "", "orig_id": 1410218}}, {"model": "metainfo.source", "pk": 7046, "fields": {"orig_filename": "Pfeiffenberger_Karl-Gottlieb_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36", "author": "", "orig_id": 1410299}}, {"model": "metainfo.source", "pk": 7047, "fields": {"orig_filename": "Pfersche_Emil_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36f.", "author": "", "orig_id": 1410300}}, {"model": "metainfo.source", "pk": 7048, "fields": {"orig_filename": "Pferschy_Karl_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410301}}, {"model": "metainfo.source", "pk": 7049, "fields": {"orig_filename": "Pfersmann-Eichthal_Alois_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410302}}, {"model": "metainfo.source", "pk": 7050, "fields": {"orig_filename": "Pfest_Leopold-Ladislaus_1769_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410303}}, {"model": "metainfo.source", "pk": 7051, "fields": {"orig_filename": "Pfiffer_Karl_1805_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37f.", "author": "", "orig_id": 1410304}}, {"model": "metainfo.source", "pk": 7052, "fields": {"orig_filename": "Pfiffer_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410305}}, {"model": "metainfo.source", "pk": 7053, "fields": {"orig_filename": "Pfisterer_Ferdinand_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410306}}, {"model": "metainfo.source", "pk": 7054, "fields": {"orig_filename": "Pfistermeister_Karl_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410307}}, {"model": "metainfo.source", "pk": 7055, "fields": {"orig_filename": "Pfizmaier_August_1808_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38f.", "author": "", "orig_id": 1410308}}, {"model": "metainfo.source", "pk": 7056, "fields": {"orig_filename": "Pflanzer-Baltin_Karl_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 39", "author": "", "orig_id": 1410309}}, {"model": "metainfo.source", "pk": 7057, "fields": {"orig_filename": "Pflanzl_Otto_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 39f.", "author": "", "orig_id": 1410310}}, {"model": "metainfo.source", "pk": 7058, "fields": {"orig_filename": "Pfleger-Wertenau_Anton_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410311}}, {"model": "metainfo.source", "pk": 7059, "fields": {"orig_filename": "Pfluegl_Albert_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410312}}, {"model": "metainfo.source", "pk": 7060, "fields": {"orig_filename": "Pfluger_Josef_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40f.", "author": "", "orig_id": 1410314}}, {"model": "metainfo.source", "pk": 7061, "fields": {"orig_filename": "Pflug_Ottokar_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410313}}, {"model": "metainfo.source", "pk": 7062, "fields": {"orig_filename": "Pfohl_Ferdinand_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41", "author": "", "orig_id": 1410315}}, {"model": "metainfo.source", "pk": 7063, "fields": {"orig_filename": "Pfretzschner_Norbert_1817_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41", "author": "", "orig_id": 1410316}}, {"model": "metainfo.source", "pk": 7064, "fields": {"orig_filename": "Pfretzschner_Norbert_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41f.", "author": "", "orig_id": 1410317}}, {"model": "metainfo.source", "pk": 7065, "fields": {"orig_filename": "Pfundheller_Josef_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410319}}, {"model": "metainfo.source", "pk": 7066, "fields": {"orig_filename": "Pfund_Alois_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410318}}, {"model": "metainfo.source", "pk": 7067, "fields": {"orig_filename": "Pfurtscheller_Michael_1776_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410320}}, {"model": "metainfo.source", "pk": 7068, "fields": {"orig_filename": "Pfusterschmid-Hardtenstein_Karl_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410322}}, {"model": "metainfo.source", "pk": 7069, "fields": {"orig_filename": "Philippi_Josef_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43", "author": "", "orig_id": 1410398}}, {"model": "metainfo.source", "pk": 7070, "fields": {"orig_filename": "Philippovich-Philippsberg_Eugen_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43f.", "author": "", "orig_id": 1410399}}, {"model": "metainfo.source", "pk": 7071, "fields": {"orig_filename": "Philippovich-Philippsberg_Franz_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 44", "author": "", "orig_id": 1410400}}, {"model": "metainfo.source", "pk": 7072, "fields": {"orig_filename": "Philippovich-Philippsberg_Josef_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 44f.", "author": "", "orig_id": 1410401}}, {"model": "metainfo.source", "pk": 7073, "fields": {"orig_filename": "Philipp_Karl_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42f.", "author": "", "orig_id": 1410323}}, {"model": "metainfo.source", "pk": 7074, "fields": {"orig_filename": "Philipp_Peter_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43", "author": "", "orig_id": 1410396}}, {"model": "metainfo.source", "pk": 7075, "fields": {"orig_filename": "Phleps_Artur_1881_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 45f.", "author": "", "orig_id": 1410403}}, {"model": "metainfo.source", "pk": 7076, "fields": {"orig_filename": "Pian_Antonio_1784_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 46f.", "author": "", "orig_id": 1410405}}, {"model": "metainfo.source", "pk": 7077, "fields": {"orig_filename": "Pian_Giovanni_1813_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47", "author": "", "orig_id": 1410407}}, {"model": "metainfo.source", "pk": 7078, "fields": {"orig_filename": "Piasecki_Eugeniusz_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47", "author": "", "orig_id": 1410408}}, {"model": "metainfo.source", "pk": 7079, "fields": {"orig_filename": "Piatkiewicz_Ludwik_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47f.", "author": "", "orig_id": 1410409}}, {"model": "metainfo.source", "pk": 7080, "fields": {"orig_filename": "Piatnik_Ferdinand_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48", "author": "", "orig_id": 1410410}}, {"model": "metainfo.source", "pk": 7081, "fields": {"orig_filename": "Piave_Francesco-Maria_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48", "author": "", "orig_id": 1410411}}, {"model": "metainfo.source", "pk": 7082, "fields": {"orig_filename": "Piazza_Giulio_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410413}}, {"model": "metainfo.source", "pk": 7083, "fields": {"orig_filename": "Peroutka_Emanuel_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408282}}, {"model": "metainfo.source", "pk": 7084, "fields": {"orig_filename": "Persa_Alois_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408283}}, {"model": "metainfo.source", "pk": 7085, "fields": {"orig_filename": "Perthaler_Johann_1816_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429f.", "author": "", "orig_id": 1408284}}, {"model": "metainfo.source", "pk": 7086, "fields": {"orig_filename": "Perthaler_Karoline-Josefa-Ottilia_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430", "author": "", "orig_id": 1408285}}, {"model": "metainfo.source", "pk": 7087, "fields": {"orig_filename": "Pertik_Otto_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430", "author": "", "orig_id": 1408286}}, {"model": "metainfo.source", "pk": 7088, "fields": {"orig_filename": "Pertile_Antonio_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430f.", "author": "", "orig_id": 1408287}}, {"model": "metainfo.source", "pk": 7089, "fields": {"orig_filename": "Pertile_Giambattista_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 431", "author": "", "orig_id": 1408288}}, {"model": "metainfo.source", "pk": 7090, "fields": {"orig_filename": "Pertsch_Matteo_1769_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 431f.", "author": "", "orig_id": 1408289}}, {"model": "metainfo.source", "pk": 7091, "fields": {"orig_filename": "Perugia_Alberto-Moise_1843_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432", "author": "", "orig_id": 1408290}}, {"model": "metainfo.source", "pk": 7092, "fields": {"orig_filename": "Perusek_Harvey-Gregory_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432", "author": "", "orig_id": 1408291}}, {"model": "metainfo.source", "pk": 7093, "fields": {"orig_filename": "Perusek_Rajko_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432f.", "author": "", "orig_id": 1408354}}, {"model": "metainfo.source", "pk": 7094, "fields": {"orig_filename": "Perutz_Alfred_1885_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408355}}, {"model": "metainfo.source", "pk": 7095, "fields": {"orig_filename": "Peruzzini_Giovanni_1815_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408358}}, {"model": "metainfo.source", "pk": 7096, "fields": {"orig_filename": "Peruzzi_Franc_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408356}}, {"model": "metainfo.source", "pk": 7097, "fields": {"orig_filename": "Peruzzi_Svitoslav-Mihael_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408357}}, {"model": "metainfo.source", "pk": 7098, "fields": {"orig_filename": "Pervanoglu_Pietro_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408359}}, {"model": "metainfo.source", "pk": 7099, "fields": {"orig_filename": "Pesamosca_Osvaldo_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408360}}, {"model": "metainfo.source", "pk": 7100, "fields": {"orig_filename": "Pesante_Antonio_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408361}}, {"model": "metainfo.source", "pk": 7101, "fields": {"orig_filename": "Pesante_Giovanni_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408362}}, {"model": "metainfo.source", "pk": 7102, "fields": {"orig_filename": "Peschka_Franz_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434f.", "author": "", "orig_id": 1408363}}, {"model": "metainfo.source", "pk": 7103, "fields": {"orig_filename": "Peschka_Gustav-Adolf-Viktor_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435", "author": "", "orig_id": 1408364}}, {"model": "metainfo.source", "pk": 7104, "fields": {"orig_filename": "Peschka_Heinrich-Stefan_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435", "author": "", "orig_id": 1408365}}, {"model": "metainfo.source", "pk": 7105, "fields": {"orig_filename": "Peschka_Minna_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435f.", "author": "", "orig_id": 1408366}}, {"model": "metainfo.source", "pk": 7106, "fields": {"orig_filename": "Peschke_Julius-Paul_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408367}}, {"model": "metainfo.source", "pk": 7107, "fields": {"orig_filename": "Pesendorfer_Friedrich-Josef_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408368}}, {"model": "metainfo.source", "pk": 7108, "fields": {"orig_filename": "Pesendorfer_Josef_1791_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408369}}, {"model": "metainfo.source", "pk": 7109, "fields": {"orig_filename": "Pesina_Matej_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408370}}, {"model": "metainfo.source", "pk": 7110, "fields": {"orig_filename": "Pesjak_Luiza_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408371}}, {"model": "metainfo.source", "pk": 7111, "fields": {"orig_filename": "Pesjak_Mihael_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408372}}, {"model": "metainfo.source", "pk": 7112, "fields": {"orig_filename": "Peska_Bedrich_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408375}}, {"model": "metainfo.source", "pk": 7113, "fields": {"orig_filename": "Pessic-Koschnadol_Maximilian_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437f.", "author": "", "orig_id": 1408376}}, {"model": "metainfo.source", "pk": 7114, "fields": {"orig_filename": "Pesta_Karl_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438", "author": "", "orig_id": 1408377}}, {"model": "metainfo.source", "pk": 7115, "fields": {"orig_filename": "Pesty_Frigyes_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438", "author": "", "orig_id": 1408448}}, {"model": "metainfo.source", "pk": 7116, "fields": {"orig_filename": "Petak_Vaclav_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438f.", "author": "", "orig_id": 1408449}}, {"model": "metainfo.source", "pk": 7117, "fields": {"orig_filename": "Peteani-Steinberg_Arthur_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408451}}, {"model": "metainfo.source", "pk": 7118, "fields": {"orig_filename": "Peteani_Antonio_1789_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408450}}, {"model": "metainfo.source", "pk": 7119, "fields": {"orig_filename": "Petenyi_Salamon-Janos_1799_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408452}}, {"model": "metainfo.source", "pk": 7120, "fields": {"orig_filename": "Peter-Ferdinand__1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439f.", "author": "", "orig_id": 1408453}}, {"model": "metainfo.source", "pk": 7121, "fields": {"orig_filename": "Petera_Franz-Xaver-Bohuslav_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408457}}, {"model": "metainfo.source", "pk": 7122, "fields": {"orig_filename": "Peterfi_Karoly_1790_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408458}}, {"model": "metainfo.source", "pk": 7123, "fields": {"orig_filename": "Peterfy_Jenoe_1850_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408459}}, {"model": "metainfo.source", "pk": 7124, "fields": {"orig_filename": "Peterka_Otto_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441f.", "author": "", "orig_id": 1408460}}, {"model": "metainfo.source", "pk": 7125, "fields": {"orig_filename": "Peterka_Rudolf_1894_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442", "author": "", "orig_id": 1408461}}, {"model": "metainfo.source", "pk": 7126, "fields": {"orig_filename": "Peterlini_Dominik-Josef_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442", "author": "", "orig_id": 1408462}}, {"model": "metainfo.source", "pk": 7127, "fields": {"orig_filename": "Peterlongo_Johann_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442f.", "author": "", "orig_id": 1408463}}, {"model": "metainfo.source", "pk": 7128, "fields": {"orig_filename": "Petermandl_Anton_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 443", "author": "", "orig_id": 1408464}}, {"model": "metainfo.source", "pk": 7129, "fields": {"orig_filename": "Petermann_Helene_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 443f.", "author": "", "orig_id": 1408465}}, {"model": "metainfo.source", "pk": 7130, "fields": {"orig_filename": "Petermann_Reinhard-E_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408466}}, {"model": "metainfo.source", "pk": 7131, "fields": {"orig_filename": "Peterseim_Marcin_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445", "author": "", "orig_id": 1408470}}, {"model": "metainfo.source", "pk": 7132, "fields": {"orig_filename": "Petersilka_Karl_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445", "author": "", "orig_id": 1408542}}, {"model": "metainfo.source", "pk": 7133, "fields": {"orig_filename": "Peters_Guido_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408467}}, {"model": "metainfo.source", "pk": 7134, "fields": {"orig_filename": "Peters_Ignaz_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408468}}, {"model": "metainfo.source", "pk": 7135, "fields": {"orig_filename": "Peters_Karl-Ferdinand_1825_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444f.", "author": "", "orig_id": 1408469}}, {"model": "metainfo.source", "pk": 7136, "fields": {"orig_filename": "Peter_Emanuel-Thomas_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408454}}, {"model": "metainfo.source", "pk": 7137, "fields": {"orig_filename": "Peter_Franz_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408455}}, {"model": "metainfo.source", "pk": 7138, "fields": {"orig_filename": "Peter_Johann-Wenzel_1745_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408456}}, {"model": "metainfo.source", "pk": 7139, "fields": {"orig_filename": "Pethe-Kisszanto_Ferenc_1763_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445f.", "author": "", "orig_id": 1408543}}, {"model": "metainfo.source", "pk": 7140, "fields": {"orig_filename": "Pethes_Imre_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 446", "author": "", "orig_id": 1408544}}, {"model": "metainfo.source", "pk": 7141, "fields": {"orig_filename": "Petkovsek_Jozef_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 447", "author": "", "orig_id": 1408546}}, {"model": "metainfo.source", "pk": 7142, "fields": {"orig_filename": "Petko_Koloman_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 446f.", "author": "", "orig_id": 1408545}}, {"model": "metainfo.source", "pk": 7143, "fields": {"orig_filename": "Petoefi_Sandor_1823_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 447f.", "author": "", "orig_id": 1408547}}, {"model": "metainfo.source", "pk": 7144, "fields": {"orig_filename": "Petra-Petrescu_Nicolae_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 448", "author": "", "orig_id": 1408549}}, {"model": "metainfo.source", "pk": 7145, "fields": {"orig_filename": "Petracic_Franjo_1833_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408052}}, {"model": "metainfo.source", "pk": 7146, "fields": {"orig_filename": "Petrak_Alois_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408053}}, {"model": "metainfo.source", "pk": 7147, "fields": {"orig_filename": "Petranovic_Bozidar_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408054}}, {"model": "metainfo.source", "pk": 7148, "fields": {"orig_filename": "Petraschek_Karl_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2", "author": "", "orig_id": 1408056}}, {"model": "metainfo.source", "pk": 7149, "fields": {"orig_filename": "Petrasch_Konrad_1807_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408055}}, {"model": "metainfo.source", "pk": 7150, "fields": {"orig_filename": "Petrass_Ilona_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2", "author": "", "orig_id": 1408057}}, {"model": "metainfo.source", "pk": 7151, "fields": {"orig_filename": "Petravic_Ante_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2f.", "author": "", "orig_id": 1408058}}, {"model": "metainfo.source", "pk": 7152, "fields": {"orig_filename": "Petricevic_Georg_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4", "author": "", "orig_id": 1407874}}, {"model": "metainfo.source", "pk": 7153, "fields": {"orig_filename": "Petrichevich-Horvath-Szeplak_Lazar_1807_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4f.", "author": "", "orig_id": 1407875}}, {"model": "metainfo.source", "pk": 7154, "fields": {"orig_filename": "Petric_Ante_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4", "author": "", "orig_id": 1407873}}, {"model": "metainfo.source", "pk": 7155, "fields": {"orig_filename": "Petrikovich_Jan_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407878}}, {"model": "metainfo.source", "pk": 7156, "fields": {"orig_filename": "Petrik_Geza_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407876}}, {"model": "metainfo.source", "pk": 7157, "fields": {"orig_filename": "Petrik_Lajos_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407877}}, {"model": "metainfo.source", "pk": 7158, "fields": {"orig_filename": "Petrina_Franz-Adam_1799_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5f.", "author": "", "orig_id": 1407879}}, {"model": "metainfo.source", "pk": 7159, "fields": {"orig_filename": "Petrina_Theodor_1842_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407880}}, {"model": "metainfo.source", "pk": 7160, "fields": {"orig_filename": "Petrino_Alexander_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407881}}, {"model": "metainfo.source", "pk": 7161, "fields": {"orig_filename": "Petrivalsky_Julius_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407882}}, {"model": "metainfo.source", "pk": 7162, "fields": {"orig_filename": "Petri_Bernhard_1767_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3", "author": "", "orig_id": 1408059}}, {"model": "metainfo.source", "pk": 7163, "fields": {"orig_filename": "Petri_Elek_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3", "author": "", "orig_id": 1408060}}, {"model": "metainfo.source", "pk": 7164, "fields": {"orig_filename": "Petri_Karl_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3f.", "author": "", "orig_id": 1408061}}, {"model": "metainfo.source", "pk": 7165, "fields": {"orig_filename": "Petrlik_Kristian_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6f.", "author": "", "orig_id": 1407883}}, {"model": "metainfo.source", "pk": 7166, "fields": {"orig_filename": "Petrovic_Leo_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407884}}, {"model": "metainfo.source", "pk": 7167, "fields": {"orig_filename": "Petrovits_Demeter_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407886}}, {"model": "metainfo.source", "pk": 7168, "fields": {"orig_filename": "Petrovits_Ladislaus-Eugen_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407887}}, {"model": "metainfo.source", "pk": 7169, "fields": {"orig_filename": "Petrusevyc_Anton_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7f.", "author": "", "orig_id": 1407888}}, {"model": "metainfo.source", "pk": 7170, "fields": {"orig_filename": "Petruska_Franz_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8", "author": "", "orig_id": 1407889}}, {"model": "metainfo.source", "pk": 7171, "fields": {"orig_filename": "Petr_Vaclav_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 448", "author": "", "orig_id": 1408548}}, {"model": "metainfo.source", "pk": 7172, "fields": {"orig_filename": "Petschacher_Michael-Alexander_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8", "author": "", "orig_id": 1407890}}, {"model": "metainfo.source", "pk": 7173, "fields": {"orig_filename": "Petschek_Georg_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8f.", "author": "", "orig_id": 1407891}}, {"model": "metainfo.source", "pk": 7174, "fields": {"orig_filename": "Petschek_Ignaz_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 9", "author": "", "orig_id": 1407892}}, {"model": "metainfo.source", "pk": 7175, "fields": {"orig_filename": "Petschek_Julius_1856_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 9f.", "author": "", "orig_id": 1407893}}, {"model": "metainfo.source", "pk": 7176, "fields": {"orig_filename": "Petschenig_Michael_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10", "author": "", "orig_id": 1407894}}, {"model": "metainfo.source", "pk": 7177, "fields": {"orig_filename": "Petschnig_Emil_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10", "author": "", "orig_id": 1407895}}, {"model": "metainfo.source", "pk": 7178, "fields": {"orig_filename": "Petschnig_Johann_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10f.", "author": "", "orig_id": 1407896}}, {"model": "metainfo.source", "pk": 7179, "fields": {"orig_filename": "Pettenkofer_August_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 11", "author": "", "orig_id": 1407898}}, {"model": "metainfo.source", "pk": 7180, "fields": {"orig_filename": "Pettera_Guenter_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407903}}, {"model": "metainfo.source", "pk": 7181, "fields": {"orig_filename": "Pettersch_Karl-Hugo_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13f.", "author": "", "orig_id": 1407905}}, {"model": "metainfo.source", "pk": 7182, "fields": {"orig_filename": "Petters_Vilem_1826_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407904}}, {"model": "metainfo.source", "pk": 7183, "fields": {"orig_filename": "Petter_Alexander_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 11", "author": "", "orig_id": 1407899}}, {"model": "metainfo.source", "pk": 7184, "fields": {"orig_filename": "Petter_Anton_1781_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1407900}}, {"model": "metainfo.source", "pk": 7185, "fields": {"orig_filename": "Petter_August_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1407901}}, {"model": "metainfo.source", "pk": 7186, "fields": {"orig_filename": "Petter_Franz-Josef_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1409738}}, {"model": "metainfo.source", "pk": 7187, "fields": {"orig_filename": "Pejacsevich-Veroecze_Julian_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409364}}, {"model": "metainfo.source", "pk": 7188, "fields": {"orig_filename": "Pejacsevich-Veroecze_Ladislav_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409365}}, {"model": "metainfo.source", "pk": 7189, "fields": {"orig_filename": "Pejacsevich-Veroecze_Nikolaus_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394f.", "author": "", "orig_id": 1409366}}, {"model": "metainfo.source", "pk": 7190, "fields": {"orig_filename": "Pejacsevich-Veroecze_Teodor_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395", "author": "", "orig_id": 1409367}}, {"model": "metainfo.source", "pk": 7191, "fields": {"orig_filename": "Pejko_Juraj_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395", "author": "", "orig_id": 1409368}}, {"model": "metainfo.source", "pk": 7192, "fields": {"orig_filename": "Pekarek_Josef_1899_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397", "author": "", "orig_id": 1409370}}, {"model": "metainfo.source", "pk": 7193, "fields": {"orig_filename": "Pekar_Josef_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395ff.", "author": "", "orig_id": 1409369}}, {"model": "metainfo.source", "pk": 7194, "fields": {"orig_filename": "Pelczar_Jozef-Sebastian_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397f.", "author": "", "orig_id": 1409372}}, {"model": "metainfo.source", "pk": 7195, "fields": {"orig_filename": "Pelc_Hynek_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397", "author": "", "orig_id": 1409371}}, {"model": "metainfo.source", "pk": 7196, "fields": {"orig_filename": "Peles_Julian_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398", "author": "", "orig_id": 1409440}}, {"model": "metainfo.source", "pk": 7197, "fields": {"orig_filename": "Pelican_Heinrich_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398", "author": "", "orig_id": 1409441}}, {"model": "metainfo.source", "pk": 7198, "fields": {"orig_filename": "Pelikan-Plauenwald_Josef_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399", "author": "", "orig_id": 1409443}}, {"model": "metainfo.source", "pk": 7199, "fields": {"orig_filename": "Pelikan_Anton_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398f.", "author": "", "orig_id": 1409442}}, {"model": "metainfo.source", "pk": 7200, "fields": {"orig_filename": "Pellegrini_Francesco_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399", "author": "", "orig_id": 1409444}}, {"model": "metainfo.source", "pk": 7201, "fields": {"orig_filename": "Pellegrini_Gaetano_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399f.", "author": "", "orig_id": 1409445}}, {"model": "metainfo.source", "pk": 7202, "fields": {"orig_filename": "Pellegrini_Giulio_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400", "author": "", "orig_id": 1409446}}, {"model": "metainfo.source", "pk": 7203, "fields": {"orig_filename": "Pellico_Silvio_1789_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400", "author": "", "orig_id": 1409447}}, {"model": "metainfo.source", "pk": 7204, "fields": {"orig_filename": "Pellis_Ugo_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400f.", "author": "", "orig_id": 1409448}}, {"model": "metainfo.source", "pk": 7205, "fields": {"orig_filename": "Pelzel-Pelzeln_August_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 401f.", "author": "", "orig_id": 1409450}}, {"model": "metainfo.source", "pk": 7206, "fields": {"orig_filename": "Pelzel-Pelzeln_Marie_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 402", "author": "", "orig_id": 1409451}}, {"model": "metainfo.source", "pk": 7207, "fields": {"orig_filename": "Pelzel-Staffalo_Henriette_1877_1962.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258", "author": "", "orig_id": 1411967}}, {"model": "metainfo.source", "pk": 7208, "fields": {"orig_filename": "Pelz_Karel_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 401", "author": "", "orig_id": 1409449}}, {"model": "metainfo.source", "pk": 7209, "fields": {"orig_filename": "Pembaur_Josef_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 402f.", "author": "", "orig_id": 1409452}}, {"model": "metainfo.source", "pk": 7210, "fields": {"orig_filename": "Pembaur_Josef_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 403", "author": "", "orig_id": 1409453}}, {"model": "metainfo.source", "pk": 7211, "fields": {"orig_filename": "Pembaur_Karl-Maria_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 403f.", "author": "", "orig_id": 1409454}}, {"model": "metainfo.source", "pk": 7212, "fields": {"orig_filename": "Penck_Albrecht_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 404", "author": "", "orig_id": 1409455}}, {"model": "metainfo.source", "pk": 7213, "fields": {"orig_filename": "Pendl_Emanuel_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 404f.", "author": "", "orig_id": 1409456}}, {"model": "metainfo.source", "pk": 7214, "fields": {"orig_filename": "Pendl_Erwin_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405", "author": "", "orig_id": 1409457}}, {"model": "metainfo.source", "pk": 7215, "fields": {"orig_filename": "Pendl_Franz-Xaver_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405", "author": "", "orig_id": 1409458}}, {"model": "metainfo.source", "pk": 7216, "fields": {"orig_filename": "Pendl_Johann_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405f.", "author": "", "orig_id": 1409459}}, {"model": "metainfo.source", "pk": 7217, "fields": {"orig_filename": "Penecke_Karl-Alfons_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406", "author": "", "orig_id": 1409460}}, {"model": "metainfo.source", "pk": 7218, "fields": {"orig_filename": "Pengg-Auheim_Johann_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406f.", "author": "", "orig_id": 1409462}}, {"model": "metainfo.source", "pk": 7219, "fields": {"orig_filename": "Pengg-Auheim_Johann_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 407", "author": "", "orig_id": 1409463}}, {"model": "metainfo.source", "pk": 7220, "fields": {"orig_filename": "Pengg_Aegyd_1788_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406", "author": "", "orig_id": 1409461}}, {"model": "metainfo.source", "pk": 7221, "fields": {"orig_filename": "Penic_Dujam_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 407f.", "author": "", "orig_id": 1409464}}, {"model": "metainfo.source", "pk": 7222, "fields": {"orig_filename": "Penizek_Josef_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408", "author": "", "orig_id": 1409465}}, {"model": "metainfo.source", "pk": 7223, "fields": {"orig_filename": "Penka_Ignacy-Jozef_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408", "author": "", "orig_id": 1413143}}, {"model": "metainfo.source", "pk": 7224, "fields": {"orig_filename": "Penkler_Josef_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408f.", "author": "", "orig_id": 1409466}}, {"model": "metainfo.source", "pk": 7225, "fields": {"orig_filename": "Penn_Heinrich-Moritz_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 409", "author": "", "orig_id": 1408087}}, {"model": "metainfo.source", "pk": 7226, "fields": {"orig_filename": "Penn_Josef_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 409f.", "author": "", "orig_id": 1408088}}, {"model": "metainfo.source", "pk": 7227, "fields": {"orig_filename": "Penther_Arnold_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410", "author": "", "orig_id": 1408089}}, {"model": "metainfo.source", "pk": 7228, "fields": {"orig_filename": "Penther_Daniel_1837_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410", "author": "", "orig_id": 1408090}}, {"model": "metainfo.source", "pk": 7229, "fields": {"orig_filename": "Penzig-Franz_Edgar_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408093}}, {"model": "metainfo.source", "pk": 7230, "fields": {"orig_filename": "Penz_Alois_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410f.", "author": "", "orig_id": 1408091}}, {"model": "metainfo.source", "pk": 7231, "fields": {"orig_filename": "Penz_Ludwig_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408092}}, {"model": "metainfo.source", "pk": 7232, "fields": {"orig_filename": "Perathoner_Julius_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408096}}, {"model": "metainfo.source", "pk": 7233, "fields": {"orig_filename": "Percevic-Odavna_Franz_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408098}}, {"model": "metainfo.source", "pk": 7234, "fields": {"orig_filename": "Perczel-Bonyhad_Bela_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408099}}, {"model": "metainfo.source", "pk": 7235, "fields": {"orig_filename": "Perczel-Bonyhad_Dezsoe_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412f.", "author": "", "orig_id": 1408100}}, {"model": "metainfo.source", "pk": 7236, "fields": {"orig_filename": "Perczel-Bonyhad_Miklos_1812_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413", "author": "", "orig_id": 1408101}}, {"model": "metainfo.source", "pk": 7237, "fields": {"orig_filename": "Perczel-Bonyhad_Mor_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413", "author": "", "orig_id": 1408102}}, {"model": "metainfo.source", "pk": 7238, "fields": {"orig_filename": "Peregriny_Elek_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413f.", "author": "", "orig_id": 1408104}}, {"model": "metainfo.source", "pk": 7239, "fields": {"orig_filename": "Pereira-Arnstein_Henriette_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 414", "author": "", "orig_id": 1408106}}, {"model": "metainfo.source", "pk": 7240, "fields": {"orig_filename": "Pereira-Arnstein_Ludwig_1803_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 414f.", "author": "", "orig_id": 1408107}}, {"model": "metainfo.source", "pk": 7241, "fields": {"orig_filename": "Pereira-Arnstein_Viktor_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415", "author": "", "orig_id": 1408108}}, {"model": "metainfo.source", "pk": 7242, "fields": {"orig_filename": "Perek_Vaclav_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415", "author": "", "orig_id": 1408109}}, {"model": "metainfo.source", "pk": 7243, "fields": {"orig_filename": "Perels_Emil_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415f.", "author": "", "orig_id": 1408110}}, {"model": "metainfo.source", "pk": 7244, "fields": {"orig_filename": "Perenyi_Zsigmond_1783_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408111}}, {"model": "metainfo.source", "pk": 7245, "fields": {"orig_filename": "Peretti_Luigi_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408112}}, {"model": "metainfo.source", "pk": 7246, "fields": {"orig_filename": "Perez_Paolo_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408177}}, {"model": "metainfo.source", "pk": 7247, "fields": {"orig_filename": "Pergelt_Anton_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416f.", "author": "", "orig_id": 1408178}}, {"model": "metainfo.source", "pk": 7248, "fields": {"orig_filename": "Pergen_Anton_1799_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408179}}, {"model": "metainfo.source", "pk": 7249, "fields": {"orig_filename": "Perger-Pergenau_Heinrich_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408186}}, {"model": "metainfo.source", "pk": 7250, "fields": {"orig_filename": "Perger_Anton_1809_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408180}}, {"model": "metainfo.source", "pk": 7251, "fields": {"orig_filename": "Perger_Hugo_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408181}}, {"model": "metainfo.source", "pk": 7252, "fields": {"orig_filename": "Perger_Janos_1791_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417f.", "author": "", "orig_id": 1408182}}, {"model": "metainfo.source", "pk": 7253, "fields": {"orig_filename": "Perger_Janos_1819_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418", "author": "", "orig_id": 1408183}}, {"model": "metainfo.source", "pk": 7254, "fields": {"orig_filename": "Perger_Richard_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418", "author": "", "orig_id": 1408184}}, {"model": "metainfo.source", "pk": 7255, "fields": {"orig_filename": "Perger_Sigmund-Ferdinand_1778_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418f.", "author": "", "orig_id": 1408185}}, {"model": "metainfo.source", "pk": 7256, "fields": {"orig_filename": "Perhauz_Giovanni_1854_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408187}}, {"model": "metainfo.source", "pk": 7257, "fields": {"orig_filename": "Perinello_Carlo_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408188}}, {"model": "metainfo.source", "pk": 7258, "fields": {"orig_filename": "Perinet_Joachim_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419f.", "author": "", "orig_id": 1408189}}, {"model": "metainfo.source", "pk": 7259, "fields": {"orig_filename": "Perini_Agostino_1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 420", "author": "", "orig_id": 1408190}}, {"model": "metainfo.source", "pk": 7260, "fields": {"orig_filename": "Perini_Quintilio_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421", "author": "", "orig_id": 1408192}}, {"model": "metainfo.source", "pk": 7261, "fields": {"orig_filename": "Perkmann_Robert_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421", "author": "", "orig_id": 1408193}}, {"model": "metainfo.source", "pk": 7262, "fields": {"orig_filename": "Perkmann_Rochus_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421f.", "author": "", "orig_id": 1408194}}, {"model": "metainfo.source", "pk": 7263, "fields": {"orig_filename": "Perko-Greiffenbuehl_Josef_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408196}}, {"model": "metainfo.source", "pk": 7264, "fields": {"orig_filename": "Perkovac_Ivan_1826_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408197}}, {"model": "metainfo.source", "pk": 7265, "fields": {"orig_filename": "Perktold_Josef-Anton_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422f.", "author": "", "orig_id": 1408198}}, {"model": "metainfo.source", "pk": 7266, "fields": {"orig_filename": "Perl-Hildrichsburg_Ferdinand_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408202}}, {"model": "metainfo.source", "pk": 7267, "fields": {"orig_filename": "Perlath-Kaltenburg_Josef-Anton_1756_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408266}}, {"model": "metainfo.source", "pk": 7268, "fields": {"orig_filename": "Perlberger_Leo_1890_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408267}}, {"model": "metainfo.source", "pk": 7269, "fields": {"orig_filename": "Perles_Josef_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424f.", "author": "", "orig_id": 1408268}}, {"model": "metainfo.source", "pk": 7270, "fields": {"orig_filename": "Perles_Moritz_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425", "author": "", "orig_id": 1408269}}, {"model": "metainfo.source", "pk": 7271, "fields": {"orig_filename": "Perlis_Julius_1880_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425", "author": "", "orig_id": 1408270}}, {"model": "metainfo.source", "pk": 7272, "fields": {"orig_filename": "Perlmutter_Izsak_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425f.", "author": "", "orig_id": 1408271}}, {"model": "metainfo.source", "pk": 7273, "fields": {"orig_filename": "Perls_Armin_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408272}}, {"model": "metainfo.source", "pk": 7274, "fields": {"orig_filename": "Perl_Henriette_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423", "author": "", "orig_id": 1408199}}, {"model": "metainfo.source", "pk": 7275, "fields": {"orig_filename": "Perl_Karl_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423", "author": "", "orig_id": 1408200}}, {"model": "metainfo.source", "pk": 7276, "fields": {"orig_filename": "Perl_Moriz_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423f.", "author": "", "orig_id": 1408201}}, {"model": "metainfo.source", "pk": 7277, "fields": {"orig_filename": "Perneder_Franz_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408273}}, {"model": "metainfo.source", "pk": 7278, "fields": {"orig_filename": "Pernerstorfer_Engelbert_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427", "author": "", "orig_id": 1408276}}, {"model": "metainfo.source", "pk": 7279, "fields": {"orig_filename": "Perner_Jan_1815_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408274}}, {"model": "metainfo.source", "pk": 7280, "fields": {"orig_filename": "Perner_Jaroslav_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426f.", "author": "", "orig_id": 1408275}}, {"model": "metainfo.source", "pk": 7281, "fields": {"orig_filename": "Pernhart_Markus_1824_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427", "author": "", "orig_id": 1408277}}, {"model": "metainfo.source", "pk": 7282, "fields": {"orig_filename": "Pernlochner_Franz_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427f.", "author": "", "orig_id": 1408278}}, {"model": "metainfo.source", "pk": 7283, "fields": {"orig_filename": "Pernstein_Matthias_1795_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 428", "author": "", "orig_id": 1408279}}, {"model": "metainfo.source", "pk": 7284, "fields": {"orig_filename": "Perntner_Josef-Maria_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 428f.", "author": "", "orig_id": 1408280}}, {"model": "metainfo.source", "pk": 7285, "fields": {"orig_filename": "Pernwerth-Baernstein_Wilhelm_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408281}}, {"model": "metainfo.source", "pk": 7286, "fields": {"orig_filename": "Pautsch_Fryderyk_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 357f.", "author": "", "orig_id": 1408903}}, {"model": "metainfo.source", "pk": 7287, "fields": {"orig_filename": "Pavai-Vajna_Gabriel_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358", "author": "", "orig_id": 1408904}}, {"model": "metainfo.source", "pk": 7288, "fields": {"orig_filename": "Pavani_Eugenio_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358", "author": "", "orig_id": 1408905}}, {"model": "metainfo.source", "pk": 7289, "fields": {"orig_filename": "Pavec_Anton_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358f.", "author": "", "orig_id": 1408906}}, {"model": "metainfo.source", "pk": 7290, "fields": {"orig_filename": "Pavek_Ludwig_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359", "author": "", "orig_id": 1408907}}, {"model": "metainfo.source", "pk": 7291, "fields": {"orig_filename": "Pavelic_Milan_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408981}}, {"model": "metainfo.source", "pk": 7292, "fields": {"orig_filename": "Pavellic_Georg_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408982}}, {"model": "metainfo.source", "pk": 7293, "fields": {"orig_filename": "Pavel_Avgust_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359", "author": "", "orig_id": 1408978}}, {"model": "metainfo.source", "pk": 7294, "fields": {"orig_filename": "Pavel_Janos_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359f.", "author": "", "orig_id": 1408979}}, {"model": "metainfo.source", "pk": 7295, "fields": {"orig_filename": "Pavel_Raphael_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408980}}, {"model": "metainfo.source", "pk": 7296, "fields": {"orig_filename": "Pavic_Armin_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360f.", "author": "", "orig_id": 1408983}}, {"model": "metainfo.source", "pk": 7297, "fields": {"orig_filename": "Pavic_Josip_1887_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361", "author": "", "orig_id": 1408984}}, {"model": "metainfo.source", "pk": 7298, "fields": {"orig_filename": "Pavic_Matija_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361", "author": "", "orig_id": 1408985}}, {"model": "metainfo.source", "pk": 7299, "fields": {"orig_filename": "Pavissich_Luigi-Cesare_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361f.", "author": "", "orig_id": 1408986}}, {"model": "metainfo.source", "pk": 7300, "fields": {"orig_filename": "Pavlicek_Antonin_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362", "author": "", "orig_id": 1408987}}, {"model": "metainfo.source", "pk": 7301, "fields": {"orig_filename": "Pavlikov_Theophil_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362", "author": "", "orig_id": 1408988}}, {"model": "metainfo.source", "pk": 7302, "fields": {"orig_filename": "Pavlinovic_Mihovil_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363", "author": "", "orig_id": 1408991}}, {"model": "metainfo.source", "pk": 7303, "fields": {"orig_filename": "Pavlin_Alfonz_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362f.", "author": "", "orig_id": 1408989}}, {"model": "metainfo.source", "pk": 7304, "fields": {"orig_filename": "Pavlin_Franc_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363", "author": "", "orig_id": 1408990}}, {"model": "metainfo.source", "pk": 7305, "fields": {"orig_filename": "Pavlis_Jan_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363f.", "author": "", "orig_id": 1408992}}, {"model": "metainfo.source", "pk": 7306, "fields": {"orig_filename": "Pavlis_Johann_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408993}}, {"model": "metainfo.source", "pk": 7307, "fields": {"orig_filename": "Pavlovic_Stevan_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408994}}, {"model": "metainfo.source", "pk": 7308, "fields": {"orig_filename": "Pavlovic_Teodor_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408995}}, {"model": "metainfo.source", "pk": 7309, "fields": {"orig_filename": "Pavlovyc_Oleksandr_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408996}}, {"model": "metainfo.source", "pk": 7310, "fields": {"orig_filename": "Pavlu_Bohdan_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364f.", "author": "", "orig_id": 1409066}}, {"model": "metainfo.source", "pk": 7311, "fields": {"orig_filename": "Pavlyk_Mychajlo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 365", "author": "", "orig_id": 1409067}}, {"model": "metainfo.source", "pk": 7312, "fields": {"orig_filename": "Paweck_Heinrich_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 365f.", "author": "", "orig_id": 1409068}}, {"model": "metainfo.source", "pk": 7313, "fields": {"orig_filename": "Pawel_Jaroslaus_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 366", "author": "", "orig_id": 1409069}}, {"model": "metainfo.source", "pk": 7314, "fields": {"orig_filename": "Pawlewski_Bronislaw_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 366f.", "author": "", "orig_id": 1409070}}, {"model": "metainfo.source", "pk": 7315, "fields": {"orig_filename": "Pawlikowski_Jan-Gwalbert_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 368f.", "author": "", "orig_id": 1409075}}, {"model": "metainfo.source", "pk": 7316, "fields": {"orig_filename": "Pawlikowski_Jozef-Benedykt_1770_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369", "author": "", "orig_id": 1409076}}, {"model": "metainfo.source", "pk": 7317, "fields": {"orig_filename": "Pawlikowski_Jozef-Gwalbert_1793_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369", "author": "", "orig_id": 1409077}}, {"model": "metainfo.source", "pk": 7318, "fields": {"orig_filename": "Pawlikowski_Mieczyslaw-Gwalbert-Henryk_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369f.", "author": "", "orig_id": 1409078}}, {"model": "metainfo.source", "pk": 7319, "fields": {"orig_filename": "Pawlikowski_Tadeusz_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 370f.", "author": "", "orig_id": 1409079}}, {"model": "metainfo.source", "pk": 7320, "fields": {"orig_filename": "Pawlik_Franz_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367", "author": "", "orig_id": 1409071}}, {"model": "metainfo.source", "pk": 7321, "fields": {"orig_filename": "Pawlik_Karel_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367", "author": "", "orig_id": 1409072}}, {"model": "metainfo.source", "pk": 7322, "fields": {"orig_filename": "Pawlik_Oswald_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367f.", "author": "", "orig_id": 1409073}}, {"model": "metainfo.source", "pk": 7323, "fields": {"orig_filename": "Pawlik_Stefan_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 368", "author": "", "orig_id": 1409074}}, {"model": "metainfo.source", "pk": 7324, "fields": {"orig_filename": "Pawlitschek_Alfred-Guntram_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371", "author": "", "orig_id": 1409080}}, {"model": "metainfo.source", "pk": 7325, "fields": {"orig_filename": "Pawlowicz_Edward_1815_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371", "author": "", "orig_id": 1409081}}, {"model": "metainfo.source", "pk": 7326, "fields": {"orig_filename": "Pawlowski-Jaroslaw_Alexander_1830_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372", "author": "", "orig_id": 1409084}}, {"model": "metainfo.source", "pk": 7327, "fields": {"orig_filename": "Pawlowski_Franciszek_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371f.", "author": "", "orig_id": 1409082}}, {"model": "metainfo.source", "pk": 7328, "fields": {"orig_filename": "Pawlowski_Johann_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372", "author": "", "orig_id": 1409083}}, {"model": "metainfo.source", "pk": 7329, "fields": {"orig_filename": "Pax_Ferdinand-Albin_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372f.", "author": "", "orig_id": 1409085}}, {"model": "metainfo.source", "pk": 7330, "fields": {"orig_filename": "Pax_Johann_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409086}}, {"model": "metainfo.source", "pk": 7331, "fields": {"orig_filename": "Payer-Thurn_Rudolf_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 375f.", "author": "", "orig_id": 1409166}}, {"model": "metainfo.source", "pk": 7332, "fields": {"orig_filename": "Payer_Anton_1853_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409087}}, {"model": "metainfo.source", "pk": 7333, "fields": {"orig_filename": "Payer_Ernst_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409088}}, {"model": "metainfo.source", "pk": 7334, "fields": {"orig_filename": "Payer_Hieronymus_1787_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373f.", "author": "", "orig_id": 1409089}}, {"model": "metainfo.source", "pk": 7335, "fields": {"orig_filename": "Payer_Hugo_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374", "author": "", "orig_id": 1409163}}, {"model": "metainfo.source", "pk": 7336, "fields": {"orig_filename": "Payer_Janez_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374", "author": "", "orig_id": 1409164}}, {"model": "metainfo.source", "pk": 7337, "fields": {"orig_filename": "Payer_Julius_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374f.", "author": "", "orig_id": 1409165}}, {"model": "metainfo.source", "pk": 7338, "fields": {"orig_filename": "Payr_Artur_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 376f.", "author": "", "orig_id": 1409167}}, {"model": "metainfo.source", "pk": 7339, "fields": {"orig_filename": "Payr_Erwin_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 377", "author": "", "orig_id": 1409168}}, {"model": "metainfo.source", "pk": 7340, "fields": {"orig_filename": "Payr_Karl_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 377f.", "author": "", "orig_id": 1409169}}, {"model": "metainfo.source", "pk": 7341, "fields": {"orig_filename": "Payr_Sandor_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378", "author": "", "orig_id": 1409170}}, {"model": "metainfo.source", "pk": 7342, "fields": {"orig_filename": "Pazaurek_Gustav-Edmund_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378", "author": "", "orig_id": 1409171}}, {"model": "metainfo.source", "pk": 7343, "fields": {"orig_filename": "Pazmandi-Horvat_Endre_1778_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379", "author": "", "orig_id": 1409173}}, {"model": "metainfo.source", "pk": 7344, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379", "author": "", "orig_id": 1409174}}, {"model": "metainfo.source", "pk": 7345, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1816_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379f.", "author": "", "orig_id": 1409175}}, {"model": "metainfo.source", "pk": 7346, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409176}}, {"model": "metainfo.source", "pk": 7347, "fields": {"orig_filename": "Pazman_Josip_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378f.", "author": "", "orig_id": 1409172}}, {"model": "metainfo.source", "pk": 7348, "fields": {"orig_filename": "Pazourek_Josef_1862_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409177}}, {"model": "metainfo.source", "pk": 7349, "fields": {"orig_filename": "Pazze_Pietro-Augusto_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409178}}, {"model": "metainfo.source", "pk": 7350, "fields": {"orig_filename": "Pebal_Leopold_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409179}}, {"model": "metainfo.source", "pk": 7351, "fields": {"orig_filename": "Pecchio-Weitenfeld_Adolf_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409180}}, {"model": "metainfo.source", "pk": 7352, "fields": {"orig_filename": "Pechacek_Franz-Martin_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409256}}, {"model": "metainfo.source", "pk": 7353, "fields": {"orig_filename": "Pechacek_Franz-Xaver_1793_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409257}}, {"model": "metainfo.source", "pk": 7354, "fields": {"orig_filename": "Pechan-Praegenberg_Franz_1830_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409258}}, {"model": "metainfo.source", "pk": 7355, "fields": {"orig_filename": "Pechany_Adolf_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382f.", "author": "", "orig_id": 1409259}}, {"model": "metainfo.source", "pk": 7356, "fields": {"orig_filename": "Peche_Dagobert_1887_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 383", "author": "", "orig_id": 1409260}}, {"model": "metainfo.source", "pk": 7357, "fields": {"orig_filename": "Peche_Ernest_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 383", "author": "", "orig_id": 1409261}}, {"model": "metainfo.source", "pk": 7358, "fields": {"orig_filename": "Peche_Ferdinand_1820_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384", "author": "", "orig_id": 1409262}}, {"model": "metainfo.source", "pk": 7359, "fields": {"orig_filename": "Peche_Karl_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384", "author": "", "orig_id": 1409263}}, {"model": "metainfo.source", "pk": 7360, "fields": {"orig_filename": "Pechmann-Massen_Eduard_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384f.", "author": "", "orig_id": 1409264}}, {"model": "metainfo.source", "pk": 7361, "fields": {"orig_filename": "Pechova_Alzbeta_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385", "author": "", "orig_id": 1409265}}, {"model": "metainfo.source", "pk": 7362, "fields": {"orig_filename": "Pechy-Pechujfalu_Tamas_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385", "author": "", "orig_id": 1409266}}, {"model": "metainfo.source", "pk": 7363, "fields": {"orig_filename": "Pech_Antal_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409181}}, {"model": "metainfo.source", "pk": 7364, "fields": {"orig_filename": "Pech_Jozsef_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381f.", "author": "", "orig_id": 1409182}}, {"model": "metainfo.source", "pk": 7365, "fields": {"orig_filename": "Pecirka_Ferdinand-Otokar_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385f.", "author": "", "orig_id": 1409267}}, {"model": "metainfo.source", "pk": 7366, "fields": {"orig_filename": "Pecirka_Josef_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409268}}, {"model": "metainfo.source", "pk": 7367, "fields": {"orig_filename": "Peckary_Karl_1848_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409272}}, {"model": "metainfo.source", "pk": 7368, "fields": {"orig_filename": "Pecka_Josef-Boleslav_1849_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409271}}, {"model": "metainfo.source", "pk": 7369, "fields": {"orig_filename": "Peck_Edmund-Anton_1830_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409269}}, {"model": "metainfo.source", "pk": 7370, "fields": {"orig_filename": "Peck_Philipp_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409270}}, {"model": "metainfo.source", "pk": 7371, "fields": {"orig_filename": "Peczely_Jozsef_1789_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387f.", "author": "", "orig_id": 1409274}}, {"model": "metainfo.source", "pk": 7372, "fields": {"orig_filename": "Pecz_Vilmos_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409273}}, {"model": "metainfo.source", "pk": 7373, "fields": {"orig_filename": "Pederzolli_Giuseppe_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409275}}, {"model": "metainfo.source", "pk": 7374, "fields": {"orig_filename": "Pedrotti_Giovanni_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409276}}, {"model": "metainfo.source", "pk": 7375, "fields": {"orig_filename": "Peer-Egerthal_Josef-Johann_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389", "author": "", "orig_id": 1409352}}, {"model": "metainfo.source", "pk": 7376, "fields": {"orig_filename": "Peer_Heinrich_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409277}}, {"model": "metainfo.source", "pk": 7377, "fields": {"orig_filename": "Peer_Johann-Paul_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389", "author": "", "orig_id": 1409278}}, {"model": "metainfo.source", "pk": 7378, "fields": {"orig_filename": "Peez_Alexander-Ernst_1829_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389f.", "author": "", "orig_id": 1409353}}, {"model": "metainfo.source", "pk": 7379, "fields": {"orig_filename": "Pegger_Johann_1850_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 390", "author": "", "orig_id": 1409354}}, {"model": "metainfo.source", "pk": 7380, "fields": {"orig_filename": "Peham_Heinrich_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 390f.", "author": "", "orig_id": 1409355}}, {"model": "metainfo.source", "pk": 7381, "fields": {"orig_filename": "Pehersdorfer_Anna_1849_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391", "author": "", "orig_id": 1409356}}, {"model": "metainfo.source", "pk": 7382, "fields": {"orig_filename": "Pehr_Franz_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391", "author": "", "orig_id": 1409357}}, {"model": "metainfo.source", "pk": 7383, "fields": {"orig_filename": "Peinlich_Richard_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391f.", "author": "", "orig_id": 1409358}}, {"model": "metainfo.source", "pk": 7384, "fields": {"orig_filename": "Peisker_Johannes_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392", "author": "", "orig_id": 1409359}}, {"model": "metainfo.source", "pk": 7385, "fields": {"orig_filename": "Peithner-Lichtenfels_Rudolf_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 393", "author": "", "orig_id": 1409361}}, {"model": "metainfo.source", "pk": 7386, "fields": {"orig_filename": "Peithner-Lichtenfels_Thaddaeus_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 393f.", "author": "", "orig_id": 1409362}}, {"model": "metainfo.source", "pk": 7387, "fields": {"orig_filename": "Peitler_Antal-Jozsef_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409363}}, {"model": "metainfo.source", "pk": 7388, "fields": {"orig_filename": "Paradis_Maria-Theresia_1759_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323f.", "author": "", "orig_id": 1408530}}, {"model": "metainfo.source", "pk": 7389, "fields": {"orig_filename": "Parapat_Janez_1838_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324", "author": "", "orig_id": 1408531}}, {"model": "metainfo.source", "pk": 7390, "fields": {"orig_filename": "Parenski_Stanislaw_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324", "author": "", "orig_id": 1408532}}, {"model": "metainfo.source", "pk": 7391, "fields": {"orig_filename": "Parente_Aron-Isak_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324f.", "author": "", "orig_id": 1408533}}, {"model": "metainfo.source", "pk": 7392, "fields": {"orig_filename": "Parente_Marco_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408534}}, {"model": "metainfo.source", "pk": 7393, "fields": {"orig_filename": "Pargfrider_Josef-Gottfried_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408535}}, {"model": "metainfo.source", "pk": 7394, "fields": {"orig_filename": "Parin_Gino_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325f.", "author": "", "orig_id": 1408537}}, {"model": "metainfo.source", "pk": 7395, "fields": {"orig_filename": "Parisini_Emil_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326", "author": "", "orig_id": 1408539}}, {"model": "metainfo.source", "pk": 7396, "fields": {"orig_filename": "Parisi_Giuseppe_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326", "author": "", "orig_id": 1408538}}, {"model": "metainfo.source", "pk": 7397, "fields": {"orig_filename": "Pari_Anton-Giuseppe_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408536}}, {"model": "metainfo.source", "pk": 7398, "fields": {"orig_filename": "Parmann_Oskar_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327", "author": "", "orig_id": 1408541}}, {"model": "metainfo.source", "pk": 7399, "fields": {"orig_filename": "Parma_Viktor_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326f.", "author": "", "orig_id": 1408540}}, {"model": "metainfo.source", "pk": 7400, "fields": {"orig_filename": "Parrot_Jakob_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327", "author": "", "orig_id": 1408608}}, {"model": "metainfo.source", "pk": 7401, "fields": {"orig_filename": "Parschalk_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327f.", "author": "", "orig_id": 1408609}}, {"model": "metainfo.source", "pk": 7402, "fields": {"orig_filename": "Partsch_Anton_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328", "author": "", "orig_id": 1408610}}, {"model": "metainfo.source", "pk": 7403, "fields": {"orig_filename": "Partsch_Franz-Xaver_1760_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328", "author": "", "orig_id": 1408611}}, {"model": "metainfo.source", "pk": 7404, "fields": {"orig_filename": "Partsch_Paul-Maria_1791_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328f.", "author": "", "orig_id": 1408612}}, {"model": "metainfo.source", "pk": 7405, "fields": {"orig_filename": "Parttart_Alois_1841_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329", "author": "", "orig_id": 1408613}}, {"model": "metainfo.source", "pk": 7406, "fields": {"orig_filename": "Parvy-Kis-Konya_Sandor_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329", "author": "", "orig_id": 1408614}}, {"model": "metainfo.source", "pk": 7407, "fields": {"orig_filename": "Pasaric_Josip_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329f.", "author": "", "orig_id": 1408615}}, {"model": "metainfo.source", "pk": 7408, "fields": {"orig_filename": "Pascher-Osserburg_Karl_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330f.", "author": "", "orig_id": 1408618}}, {"model": "metainfo.source", "pk": 7409, "fields": {"orig_filename": "Pascher_Adolf_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330", "author": "", "orig_id": 1408616}}, {"model": "metainfo.source", "pk": 7410, "fields": {"orig_filename": "Pascher_Johann_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330", "author": "", "orig_id": 1408617}}, {"model": "metainfo.source", "pk": 7411, "fields": {"orig_filename": "Paschkis_Heinrich_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408619}}, {"model": "metainfo.source", "pk": 7412, "fields": {"orig_filename": "Pascolato_Alessandro_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408620}}, {"model": "metainfo.source", "pk": 7413, "fields": {"orig_filename": "Pascoletto_Hadrian_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408621}}, {"model": "metainfo.source", "pk": 7414, "fields": {"orig_filename": "Pascotini-Ehrenfels_Carlo_1797_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1408622}}, {"model": "metainfo.source", "pk": 7415, "fields": {"orig_filename": "Pascotini-Ehrenfels_Giovanni_1761_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1408623}}, {"model": "metainfo.source", "pk": 7416, "fields": {"orig_filename": "Pascutti_Antonio_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1471927}}, {"model": "metainfo.source", "pk": 7417, "fields": {"orig_filename": "Pasini_Lodovico_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332f.", "author": "", "orig_id": 1408624}}, {"model": "metainfo.source", "pk": 7418, "fields": {"orig_filename": "Pasini_Valentino_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 333", "author": "", "orig_id": 1408625}}, {"model": "metainfo.source", "pk": 7419, "fields": {"orig_filename": "Paska_Josef_1828_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 333f.", "author": "", "orig_id": 1408626}}, {"model": "metainfo.source", "pk": 7420, "fields": {"orig_filename": "Paskovits_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408627}}, {"model": "metainfo.source", "pk": 7421, "fields": {"orig_filename": "Pasqualati-Osterberg_Amalia_1818_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408628}}, {"model": "metainfo.source", "pk": 7422, "fields": {"orig_filename": "Pasqualigo-Sacchi_Giuseppe_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335", "author": "", "orig_id": 1408630}}, {"model": "metainfo.source", "pk": 7423, "fields": {"orig_filename": "Pasqualigo_Nicolo_1770_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408629}}, {"model": "metainfo.source", "pk": 7424, "fields": {"orig_filename": "Pasquich_Johann_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335", "author": "", "orig_id": 1408631}}, {"model": "metainfo.source", "pk": 7425, "fields": {"orig_filename": "Passini_Johann_1798_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335f.", "author": "", "orig_id": 1408705}}, {"model": "metainfo.source", "pk": 7426, "fields": {"orig_filename": "Passini_Ludwig-Johann_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336", "author": "", "orig_id": 1408706}}, {"model": "metainfo.source", "pk": 7427, "fields": {"orig_filename": "Passy_Anton_1788_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336", "author": "", "orig_id": 1408707}}, {"model": "metainfo.source", "pk": 7428, "fields": {"orig_filename": "Pasta_Giuditta-Maria-Costanza_1797_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336f.", "author": "", "orig_id": 1408708}}, {"model": "metainfo.source", "pk": 7429, "fields": {"orig_filename": "Pasteiner_Gyula_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 337", "author": "", "orig_id": 1408709}}, {"model": "metainfo.source", "pk": 7430, "fields": {"orig_filename": "Pastor-Camperfelden_Ludwig_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338", "author": "", "orig_id": 1408711}}, {"model": "metainfo.source", "pk": 7431, "fields": {"orig_filename": "Pastor_Leon_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 337", "author": "", "orig_id": 1408710}}, {"model": "metainfo.source", "pk": 7432, "fields": {"orig_filename": "Pastree_Julius_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338", "author": "", "orig_id": 1408712}}, {"model": "metainfo.source", "pk": 7433, "fields": {"orig_filename": "Pastrnek_Frantisek_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338f.", "author": "", "orig_id": 1408713}}, {"model": "metainfo.source", "pk": 7434, "fields": {"orig_filename": "Paszkowski_Leon_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339", "author": "", "orig_id": 1408714}}, {"model": "metainfo.source", "pk": 7435, "fields": {"orig_filename": "Paszthory_Emerich_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339", "author": "", "orig_id": 1408715}}, {"model": "metainfo.source", "pk": 7436, "fields": {"orig_filename": "Patay_Janos_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339f.", "author": "", "orig_id": 1408716}}, {"model": "metainfo.source", "pk": 7437, "fields": {"orig_filename": "Patek_Karl_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408717}}, {"model": "metainfo.source", "pk": 7438, "fields": {"orig_filename": "Patera_Adolf_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 341", "author": "", "orig_id": 1408721}}, {"model": "metainfo.source", "pk": 7439, "fields": {"orig_filename": "Patera_Lothar_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 341f.", "author": "", "orig_id": 1408722}}, {"model": "metainfo.source", "pk": 7440, "fields": {"orig_filename": "Pater_Arpad_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408718}}, {"model": "metainfo.source", "pk": 7441, "fields": {"orig_filename": "Pater_Bela_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408719}}, {"model": "metainfo.source", "pk": 7442, "fields": {"orig_filename": "Patigler_Josef_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342", "author": "", "orig_id": 1408723}}, {"model": "metainfo.source", "pk": 7443, "fields": {"orig_filename": "Patiss_Georg_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342", "author": "", "orig_id": 1408724}}, {"model": "metainfo.source", "pk": 7444, "fields": {"orig_filename": "Patrcka_Michal-Silorad_1787_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342f.", "author": "", "orig_id": 1408725}}, {"model": "metainfo.source", "pk": 7445, "fields": {"orig_filename": "Patruban_Karl_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343", "author": "", "orig_id": 1408726}}, {"model": "metainfo.source", "pk": 7446, "fields": {"orig_filename": "Patscheider_Albuin-Maria_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344", "author": "", "orig_id": 1408797}}, {"model": "metainfo.source", "pk": 7447, "fields": {"orig_filename": "Patsch_Josef_1786_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343", "author": "", "orig_id": 1408727}}, {"model": "metainfo.source", "pk": 7448, "fields": {"orig_filename": "Patsch_Karl_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343f.", "author": "", "orig_id": 1408728}}, {"model": "metainfo.source", "pk": 7449, "fields": {"orig_filename": "Pattai_Robert_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344", "author": "", "orig_id": 1408798}}, {"model": "metainfo.source", "pk": 7450, "fields": {"orig_filename": "Patuzzi_Gaetano-Lionello_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344f.", "author": "", "orig_id": 1408799}}, {"model": "metainfo.source", "pk": 7451, "fields": {"orig_filename": "Patzak_Franz_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408800}}, {"model": "metainfo.source", "pk": 7452, "fields": {"orig_filename": "Patzke_Edmund_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408801}}, {"model": "metainfo.source", "pk": 7453, "fields": {"orig_filename": "Paudler_Amand_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408802}}, {"model": "metainfo.source", "pk": 7454, "fields": {"orig_filename": "Pauer_Ernst_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346", "author": "", "orig_id": 1408803}}, {"model": "metainfo.source", "pk": 7455, "fields": {"orig_filename": "Pauer_Franz_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346", "author": "", "orig_id": 1408804}}, {"model": "metainfo.source", "pk": 7456, "fields": {"orig_filename": "Pauer_Janos_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346f.", "author": "", "orig_id": 1408805}}, {"model": "metainfo.source", "pk": 7457, "fields": {"orig_filename": "Pauer_Josef-Chrysostomus_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347", "author": "", "orig_id": 1408806}}, {"model": "metainfo.source", "pk": 7458, "fields": {"orig_filename": "Paukert-Hohenfranken_Johann_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408809}}, {"model": "metainfo.source", "pk": 7459, "fields": {"orig_filename": "Paukert_Franz_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347f.", "author": "", "orig_id": 1408808}}, {"model": "metainfo.source", "pk": 7460, "fields": {"orig_filename": "Pauker_Wolfgang_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347", "author": "", "orig_id": 1408807}}, {"model": "metainfo.source", "pk": 7461, "fields": {"orig_filename": "Paulal_Karl_1879_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348f.", "author": "", "orig_id": 1408813}}, {"model": "metainfo.source", "pk": 7462, "fields": {"orig_filename": "Paulay_Ede_1836_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349", "author": "", "orig_id": 1408814}}, {"model": "metainfo.source", "pk": 7463, "fields": {"orig_filename": "Pauler_Gyula_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349", "author": "", "orig_id": 1408815}}, {"model": "metainfo.source", "pk": 7464, "fields": {"orig_filename": "Pauler_Tivadar_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349f.", "author": "", "orig_id": 1408816}}, {"model": "metainfo.source", "pk": 7465, "fields": {"orig_filename": "Paulick_Friedrich-Georg_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 350f.", "author": "", "orig_id": 1408818}}, {"model": "metainfo.source", "pk": 7466, "fields": {"orig_filename": "Paulik_Janos_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 351", "author": "", "orig_id": 1408819}}, {"model": "metainfo.source", "pk": 7467, "fields": {"orig_filename": "Pauliny-Toth_Viliam_1826_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352f.", "author": "", "orig_id": 1408888}}, {"model": "metainfo.source", "pk": 7468, "fields": {"orig_filename": "Pauliny_Jakob-Josef_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 351f.", "author": "", "orig_id": 1408820}}, {"model": "metainfo.source", "pk": 7469, "fields": {"orig_filename": "Pauliny_Ladislav_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352", "author": "", "orig_id": 1408886}}, {"model": "metainfo.source", "pk": 7470, "fields": {"orig_filename": "Pauliny_Sigismund_1750_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352", "author": "", "orig_id": 1408887}}, {"model": "metainfo.source", "pk": 7471, "fields": {"orig_filename": "Paulitschke_Philipp_1854_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 353f.", "author": "", "orig_id": 1408890}}, {"model": "metainfo.source", "pk": 7472, "fields": {"orig_filename": "Paulitsch_Michael_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 353", "author": "", "orig_id": 1408889}}, {"model": "metainfo.source", "pk": 7473, "fields": {"orig_filename": "Pauli_Hertha_1906_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412346}}, {"model": "metainfo.source", "pk": 7474, "fields": {"orig_filename": "Pauli_Ignacy-Jakub_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 350", "author": "", "orig_id": 1408817}}, {"model": "metainfo.source", "pk": 7475, "fields": {"orig_filename": "Pauli_Wolfgang-Ernst_1900_1958.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412345}}, {"model": "metainfo.source", "pk": 7476, "fields": {"orig_filename": "Pauli_Wolfgang-Josef_1869_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300f.", "author": "", "orig_id": 1412344}}, {"model": "metainfo.source", "pk": 7477, "fields": {"orig_filename": "Paulmichl_Alois_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408891}}, {"model": "metainfo.source", "pk": 7478, "fields": {"orig_filename": "Paulmichl_Karl_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408892}}, {"model": "metainfo.source", "pk": 7479, "fields": {"orig_filename": "Paulucci-Roncole_Hamilcar_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408893}}, {"model": "metainfo.source", "pk": 7480, "fields": {"orig_filename": "Pauly_Max_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408894}}, {"model": "metainfo.source", "pk": 7481, "fields": {"orig_filename": "Paul_Gustav_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408810}}, {"model": "metainfo.source", "pk": 7482, "fields": {"orig_filename": "Paul_Ludwig_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408811}}, {"model": "metainfo.source", "pk": 7483, "fields": {"orig_filename": "Paumgartner_Johann_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354f.", "author": "", "orig_id": 1408895}}, {"model": "metainfo.source", "pk": 7484, "fields": {"orig_filename": "Paumgartner_Rosa_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 355", "author": "", "orig_id": 1408896}}, {"model": "metainfo.source", "pk": 7485, "fields": {"orig_filename": "Paumgartten_Franz-Xaver_1811_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 355f.", "author": "", "orig_id": 1408897}}, {"model": "metainfo.source", "pk": 7486, "fields": {"orig_filename": "Paungarten_Emma_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408898}}, {"model": "metainfo.source", "pk": 7487, "fields": {"orig_filename": "Paur_Emil_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408899}}, {"model": "metainfo.source", "pk": 7488, "fields": {"orig_filename": "Paur_Ignaz_1778_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408900}}, {"model": "metainfo.source", "pk": 7489, "fields": {"orig_filename": "Paur_Ivan_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356f.", "author": "", "orig_id": 1408901}}, {"model": "metainfo.source", "pk": 7490, "fields": {"orig_filename": "Pausinger_Franz-August_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 357", "author": "", "orig_id": 1408902}}, {"model": "metainfo.source", "pk": 7491, "fields": {"orig_filename": "Pagani_Giovanni-Battista_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 287", "author": "", "orig_id": 1408080}}, {"model": "metainfo.source", "pk": 7492, "fields": {"orig_filename": "Pagay_Hans_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288", "author": "", "orig_id": 1408082}}, {"model": "metainfo.source", "pk": 7493, "fields": {"orig_filename": "Pagello_Pietro_1807_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288", "author": "", "orig_id": 1408083}}, {"model": "metainfo.source", "pk": 7494, "fields": {"orig_filename": "Paget_Charles-Octavius_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288f.", "author": "", "orig_id": 1408084}}, {"model": "metainfo.source", "pk": 7495, "fields": {"orig_filename": "Paget_Frederick_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408085}}, {"model": "metainfo.source", "pk": 7496, "fields": {"orig_filename": "Pagliaruzzi_Josip_1859_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408086}}, {"model": "metainfo.source", "pk": 7497, "fields": {"orig_filename": "Pagnini_Silvio_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408155}}, {"model": "metainfo.source", "pk": 7498, "fields": {"orig_filename": "Paic_Josef_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289f.", "author": "", "orig_id": 1408156}}, {"model": "metainfo.source", "pk": 7499, "fields": {"orig_filename": "Pailler_Wilhelm_1838_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408157}}, {"model": "metainfo.source", "pk": 7500, "fields": {"orig_filename": "Paini_Carlo_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408158}}, {"model": "metainfo.source", "pk": 7501, "fields": {"orig_filename": "Paintl_Paul_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408159}}, {"model": "metainfo.source", "pk": 7502, "fields": {"orig_filename": "Paintner_Michael-Anton_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290f.", "author": "", "orig_id": 1408160}}, {"model": "metainfo.source", "pk": 7503, "fields": {"orig_filename": "Pajer_Robert_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291", "author": "", "orig_id": 1408161}}, {"model": "metainfo.source", "pk": 7504, "fields": {"orig_filename": "Pajgert_Adam_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291", "author": "", "orig_id": 1408162}}, {"model": "metainfo.source", "pk": 7505, "fields": {"orig_filename": "Pajgert_Jozef_1799_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291f.", "author": "", "orig_id": 1408163}}, {"model": "metainfo.source", "pk": 7506, "fields": {"orig_filename": "Pajk_Johann_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292", "author": "", "orig_id": 1408164}}, {"model": "metainfo.source", "pk": 7507, "fields": {"orig_filename": "Pajk_Pavlina_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292", "author": "", "orig_id": 1408165}}, {"model": "metainfo.source", "pk": 7508, "fields": {"orig_filename": "Pajor_Sandor_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292f.", "author": "", "orig_id": 1408166}}, {"model": "metainfo.source", "pk": 7509, "fields": {"orig_filename": "Pakh_Albert_1823_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 293", "author": "", "orig_id": 1408167}}, {"model": "metainfo.source", "pk": 7510, "fields": {"orig_filename": "Palacky_Frantisek_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 294ff.", "author": "", "orig_id": 1408170}}, {"model": "metainfo.source", "pk": 7511, "fields": {"orig_filename": "Palacky_Jan_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 296", "author": "", "orig_id": 1408171}}, {"model": "metainfo.source", "pk": 7512, "fields": {"orig_filename": "Palarik_Jan_1822_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 296f.", "author": "", "orig_id": 1408172}}, {"model": "metainfo.source", "pk": 7513, "fields": {"orig_filename": "Palasthy-Palasth-Keczihocz_Pal_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297", "author": "", "orig_id": 1408173}}, {"model": "metainfo.source", "pk": 7514, "fields": {"orig_filename": "Paldus_Josef_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297", "author": "", "orig_id": 1408174}}, {"model": "metainfo.source", "pk": 7515, "fields": {"orig_filename": "Paleocapa_Pietro_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297f.", "author": "", "orig_id": 1408175}}, {"model": "metainfo.source", "pk": 7516, "fields": {"orig_filename": "Paletz_Emanuel_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298", "author": "", "orig_id": 1408176}}, {"model": "metainfo.source", "pk": 7517, "fields": {"orig_filename": "Palffi-Tarcsafalva_Janos_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298", "author": "", "orig_id": 1408246}}, {"model": "metainfo.source", "pk": 7518, "fields": {"orig_filename": "Palffy-Erdoed_Ferdinand_1774_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 299", "author": "", "orig_id": 1408248}}, {"model": "metainfo.source", "pk": 7519, "fields": {"orig_filename": "Palffy-Erdoed_Lipot_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 299f.", "author": "", "orig_id": 1408249}}, {"model": "metainfo.source", "pk": 7520, "fields": {"orig_filename": "Palffy-Erdoed_Moriz_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 300", "author": "", "orig_id": 1408250}}, {"model": "metainfo.source", "pk": 7521, "fields": {"orig_filename": "Palffy_Albert_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298f.", "author": "", "orig_id": 1408247}}, {"model": "metainfo.source", "pk": 7522, "fields": {"orig_filename": "Palisa_Johann_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 300f.", "author": "", "orig_id": 1408251}}, {"model": "metainfo.source", "pk": 7523, "fields": {"orig_filename": "Palkovic_Jiri_1769_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 301", "author": "", "orig_id": 1408252}}, {"model": "metainfo.source", "pk": 7524, "fields": {"orig_filename": "Palkovic_Juraj_1763_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 301f.", "author": "", "orig_id": 1408253}}, {"model": "metainfo.source", "pk": 7525, "fields": {"orig_filename": "Pallavicini_Alfred_1848_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302f.", "author": "", "orig_id": 1408256}}, {"model": "metainfo.source", "pk": 7526, "fields": {"orig_filename": "Pallavicini_Janos_1848_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 303", "author": "", "orig_id": 1408257}}, {"model": "metainfo.source", "pk": 7527, "fields": {"orig_filename": "Palla_Anton_1836_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302", "author": "", "orig_id": 1408254}}, {"model": "metainfo.source", "pk": 7528, "fields": {"orig_filename": "Palla_Eduard_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302", "author": "", "orig_id": 1408255}}, {"model": "metainfo.source", "pk": 7529, "fields": {"orig_filename": "Pallenberg_Max_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 303f.", "author": "", "orig_id": 1408258}}, {"model": "metainfo.source", "pk": 7530, "fields": {"orig_filename": "Palles_Georg_1753_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 304", "author": "", "orig_id": 1408259}}, {"model": "metainfo.source", "pk": 7531, "fields": {"orig_filename": "Pallhuber_Johann_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 304f.", "author": "", "orig_id": 1408260}}, {"model": "metainfo.source", "pk": 7532, "fields": {"orig_filename": "Palliardi_Jaroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408261}}, {"model": "metainfo.source", "pk": 7533, "fields": {"orig_filename": "Palmer_Georg_1796_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 71f.", "author": "", "orig_id": 1430970}}, {"model": "metainfo.source", "pk": 7534, "fields": {"orig_filename": "Palme_Elias_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408263}}, {"model": "metainfo.source", "pk": 7535, "fields": {"orig_filename": "Palme_Franz-Friedrich_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305f.", "author": "", "orig_id": 1408264}}, {"model": "metainfo.source", "pk": 7536, "fields": {"orig_filename": "Palme_Ignaz-Samuel_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306", "author": "", "orig_id": 1408265}}, {"model": "metainfo.source", "pk": 7537, "fields": {"orig_filename": "Palmovic_Andrija_1847_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306", "author": "", "orig_id": 1408332}}, {"model": "metainfo.source", "pk": 7538, "fields": {"orig_filename": "Palm_Josef_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408262}}, {"model": "metainfo.source", "pk": 7539, "fields": {"orig_filename": "Palsovic_Anton_1771_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306f.", "author": "", "orig_id": 1408333}}, {"model": "metainfo.source", "pk": 7540, "fields": {"orig_filename": "Paltauf_Arnold_1860_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 307", "author": "", "orig_id": 1408334}}, {"model": "metainfo.source", "pk": 7541, "fields": {"orig_filename": "Paltauf_Richard_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 307f.", "author": "", "orig_id": 1408335}}, {"model": "metainfo.source", "pk": 7542, "fields": {"orig_filename": "Palugyay-Nagypalugya-Bodafalva_Imre_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408336}}, {"model": "metainfo.source", "pk": 7543, "fields": {"orig_filename": "Pal_Jakob_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 294", "author": "", "orig_id": 1408169}}, {"model": "metainfo.source", "pk": 7544, "fields": {"orig_filename": "Pamer_Fritz-Egon_1900_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408337}}, {"model": "metainfo.source", "pk": 7545, "fields": {"orig_filename": "Pammer_Bruno_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408338}}, {"model": "metainfo.source", "pk": 7546, "fields": {"orig_filename": "Pammer_Maximilian_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308f.", "author": "", "orig_id": 1408339}}, {"model": "metainfo.source", "pk": 7547, "fields": {"orig_filename": "Pancera_Gabriele_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309", "author": "", "orig_id": 1408340}}, {"model": "metainfo.source", "pk": 7548, "fields": {"orig_filename": "Pancic_Josif_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309", "author": "", "orig_id": 1408341}}, {"model": "metainfo.source", "pk": 7549, "fields": {"orig_filename": "Panciera_Valentino_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309f.", "author": "", "orig_id": 1408342}}, {"model": "metainfo.source", "pk": 7550, "fields": {"orig_filename": "Panczel-Albis_Daniel_1759_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310", "author": "", "orig_id": 1408343}}, {"model": "metainfo.source", "pk": 7551, "fields": {"orig_filename": "Pandzic_Kreso_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310", "author": "", "orig_id": 1408344}}, {"model": "metainfo.source", "pk": 7552, "fields": {"orig_filename": "Panek_Kazimierz_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310f.", "author": "", "orig_id": 1408345}}, {"model": "metainfo.source", "pk": 7553, "fields": {"orig_filename": "Paneth_Josef_1857_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311", "author": "", "orig_id": 1408347}}, {"model": "metainfo.source", "pk": 7554, "fields": {"orig_filename": "Panet_Ezechiel_1783_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311", "author": "", "orig_id": 1408346}}, {"model": "metainfo.source", "pk": 7555, "fields": {"orig_filename": "Pangerl_Franz_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311f.", "author": "", "orig_id": 1408348}}, {"model": "metainfo.source", "pk": 7556, "fields": {"orig_filename": "Pangerl_Matthias_1834_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312", "author": "", "orig_id": 1408349}}, {"model": "metainfo.source", "pk": 7557, "fields": {"orig_filename": "Panhans_Franz_1869_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312", "author": "", "orig_id": 1408350}}, {"model": "metainfo.source", "pk": 7558, "fields": {"orig_filename": "Panholzer_Arthur_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312f.", "author": "", "orig_id": 1408351}}, {"model": "metainfo.source", "pk": 7559, "fields": {"orig_filename": "Panholzer_Johann_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408352}}, {"model": "metainfo.source", "pk": 7560, "fields": {"orig_filename": "Panizza_Augusto_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408353}}, {"model": "metainfo.source", "pk": 7561, "fields": {"orig_filename": "Panizza_Bartolomeo_1785_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408425}}, {"model": "metainfo.source", "pk": 7562, "fields": {"orig_filename": "Panizza_Bernardino_1827_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313f.", "author": "", "orig_id": 1408426}}, {"model": "metainfo.source", "pk": 7563, "fields": {"orig_filename": "Panizza_Giovanni-Battista_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314", "author": "", "orig_id": 1408427}}, {"model": "metainfo.source", "pk": 7564, "fields": {"orig_filename": "Pankowski_Kazimierz_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314", "author": "", "orig_id": 1408429}}, {"model": "metainfo.source", "pk": 7565, "fields": {"orig_filename": "Pankowski_Mieczyslaw_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314f.", "author": "", "orig_id": 1408430}}, {"model": "metainfo.source", "pk": 7566, "fields": {"orig_filename": "Pannasch_Anton_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315", "author": "", "orig_id": 1408431}}, {"model": "metainfo.source", "pk": 7567, "fields": {"orig_filename": "Panny_Josef_1794_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315", "author": "", "orig_id": 1408432}}, {"model": "metainfo.source", "pk": 7568, "fields": {"orig_filename": "Panschab_Justin_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315f.", "author": "", "orig_id": 1408433}}, {"model": "metainfo.source", "pk": 7569, "fields": {"orig_filename": "Pantocsek_Jozef_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316", "author": "", "orig_id": 1408434}}, {"model": "metainfo.source", "pk": 7570, "fields": {"orig_filename": "Pantocsek_Leo-Valent_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316", "author": "", "orig_id": 1408435}}, {"model": "metainfo.source", "pk": 7571, "fields": {"orig_filename": "Pantucek_Ferdinand_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316f.", "author": "", "orig_id": 1408436}}, {"model": "metainfo.source", "pk": 7572, "fields": {"orig_filename": "Pantz_Anton_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317", "author": "", "orig_id": 1408437}}, {"model": "metainfo.source", "pk": 7573, "fields": {"orig_filename": "Panwitz_Friedrich-Wilhelm_1788_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317", "author": "", "orig_id": 1408438}}, {"model": "metainfo.source", "pk": 7574, "fields": {"orig_filename": "Panyrek_Duchoslav_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317f.", "author": "", "orig_id": 1408439}}, {"model": "metainfo.source", "pk": 7575, "fields": {"orig_filename": "Panzer_Friedrich_1876_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408440}}, {"model": "metainfo.source", "pk": 7576, "fields": {"orig_filename": "Panzl_Johann_1786_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408441}}, {"model": "metainfo.source", "pk": 7577, "fields": {"orig_filename": "Paoletti_Antonio-Ermolao_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408442}}, {"model": "metainfo.source", "pk": 7578, "fields": {"orig_filename": "Paoli_Francesco_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318f.", "author": "", "orig_id": 1408444}}, {"model": "metainfo.source", "pk": 7579, "fields": {"orig_filename": "Papadopoli-Aldobrandini_Nicolo_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408519}}, {"model": "metainfo.source", "pk": 7580, "fields": {"orig_filename": "Papadopoli_Antonio_1815_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319f.", "author": "", "orig_id": 1408518}}, {"model": "metainfo.source", "pk": 7581, "fields": {"orig_filename": "Papaleoni_Giuseppe_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408520}}, {"model": "metainfo.source", "pk": 7582, "fields": {"orig_filename": "Papay_Samuel_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408521}}, {"model": "metainfo.source", "pk": 7583, "fields": {"orig_filename": "Papee_Fryderyk_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321", "author": "", "orig_id": 1408522}}, {"model": "metainfo.source", "pk": 7584, "fields": {"orig_filename": "Papic_Josip_1881_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321", "author": "", "orig_id": 1408523}}, {"model": "metainfo.source", "pk": 7585, "fields": {"orig_filename": "Papin_Heinrich_1786_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321f.", "author": "", "orig_id": 1408524}}, {"model": "metainfo.source", "pk": 7586, "fields": {"orig_filename": "Papiu-Ilarian_Alexandru_1827_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 322", "author": "", "orig_id": 1408525}}, {"model": "metainfo.source", "pk": 7587, "fields": {"orig_filename": "Papp-Keresztes_Miklos_1837_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 322f.", "author": "", "orig_id": 1408526}}, {"model": "metainfo.source", "pk": 7588, "fields": {"orig_filename": "Pappafava_Vladimiro_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408527}}, {"model": "metainfo.source", "pk": 7589, "fields": {"orig_filename": "Pappenheim_Martin_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408528}}, {"model": "metainfo.source", "pk": 7590, "fields": {"orig_filename": "Pap_Gabor_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408445}}, {"model": "metainfo.source", "pk": 7591, "fields": {"orig_filename": "Pap_Istvan_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408446}}, {"model": "metainfo.source", "pk": 7592, "fields": {"orig_filename": "Pap_Istvan_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408447}}, {"model": "metainfo.source", "pk": 7593, "fields": {"orig_filename": "Paradeiser_Wenzel_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408529}}, {"model": "metainfo.source", "pk": 7594, "fields": {"orig_filename": "Ornstein_Zwi-Hirsch__1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249", "author": "", "orig_id": 1409147}}, {"model": "metainfo.source", "pk": 7595, "fields": {"orig_filename": "Oroszhegyi-Szabo_Jozsa_1822_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249f.", "author": "", "orig_id": 1409148}}, {"model": "metainfo.source", "pk": 7596, "fields": {"orig_filename": "Orozen_Fran_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250", "author": "", "orig_id": 1409149}}, {"model": "metainfo.source", "pk": 7597, "fields": {"orig_filename": "Orozen_Ignaz_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250", "author": "", "orig_id": 1412811}}, {"model": "metainfo.source", "pk": 7598, "fields": {"orig_filename": "Orsini-Rosenberg_Felix_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252", "author": "", "orig_id": 1409152}}, {"model": "metainfo.source", "pk": 7599, "fields": {"orig_filename": "Orsini-Rosenberg_Franz_1761_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252", "author": "", "orig_id": 1409153}}, {"model": "metainfo.source", "pk": 7600, "fields": {"orig_filename": "Orsini-Rosenberg_Karl-Dominik-Maximilian_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252f.", "author": "", "orig_id": 1409154}}, {"model": "metainfo.source", "pk": 7601, "fields": {"orig_filename": "Orsini-Rosenberg_Maximilian_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253", "author": "", "orig_id": 1409155}}, {"model": "metainfo.source", "pk": 7602, "fields": {"orig_filename": "Orsi_Osvaldo_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250f.", "author": "", "orig_id": 1409150}}, {"model": "metainfo.source", "pk": 7603, "fields": {"orig_filename": "Orsi_Paolo_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 251f.", "author": "", "orig_id": 1409151}}, {"model": "metainfo.source", "pk": 7604, "fields": {"orig_filename": "Orszagh_Jozef_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253", "author": "", "orig_id": 1409156}}, {"model": "metainfo.source", "pk": 7605, "fields": {"orig_filename": "Orszagh_Pavol_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253f.", "author": "", "orig_id": 1409157}}, {"model": "metainfo.source", "pk": 7606, "fields": {"orig_filename": "Orth_Johann_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 254", "author": "", "orig_id": 1409158}}, {"model": "metainfo.source", "pk": 7607, "fields": {"orig_filename": "Ortmann_Anton_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 254f.", "author": "", "orig_id": 1409159}}, {"model": "metainfo.source", "pk": 7608, "fields": {"orig_filename": "Ortmann_Johann_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409160}}, {"model": "metainfo.source", "pk": 7609, "fields": {"orig_filename": "Ortner-Rodenstaett_Norbert_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256", "author": "", "orig_id": 1409233}}, {"model": "metainfo.source", "pk": 7610, "fields": {"orig_filename": "Ortner_Max_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255f.", "author": "", "orig_id": 1409162}}, {"model": "metainfo.source", "pk": 7611, "fields": {"orig_filename": "Ortner_Peter_1813_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256", "author": "", "orig_id": 1409232}}, {"model": "metainfo.source", "pk": 7612, "fields": {"orig_filename": "Ortvay_Tivadar_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256f.", "author": "", "orig_id": 1409234}}, {"model": "metainfo.source", "pk": 7613, "fields": {"orig_filename": "Ortwein_Magnus_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257", "author": "", "orig_id": 1409235}}, {"model": "metainfo.source", "pk": 7614, "fields": {"orig_filename": "Orzechowicz_Boleslaw_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257", "author": "", "orig_id": 1409236}}, {"model": "metainfo.source", "pk": 7615, "fields": {"orig_filename": "Oser_Johann_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257f.", "author": "", "orig_id": 1409237}}, {"model": "metainfo.source", "pk": 7616, "fields": {"orig_filename": "Oser_Leopold_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 258", "author": "", "orig_id": 1409238}}, {"model": "metainfo.source", "pk": 7617, "fields": {"orig_filename": "Oss-Mazzurana_Paolo_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259", "author": "", "orig_id": 1409241}}, {"model": "metainfo.source", "pk": 7618, "fields": {"orig_filename": "Ossikovszky_Josef_1844_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259", "author": "", "orig_id": 1409242}}, {"model": "metainfo.source", "pk": 7619, "fields": {"orig_filename": "Ossolinska_Ludwika-Roza_1797_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259f.", "author": "", "orig_id": 1409243}}, {"model": "metainfo.source", "pk": 7620, "fields": {"orig_filename": "Ossolinski_Jozef-Maksymilian_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260", "author": "", "orig_id": 1409244}}, {"model": "metainfo.source", "pk": 7621, "fields": {"orig_filename": "Ostapcuk_Jacko_1873_1959.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260", "author": "", "orig_id": 1409245}}, {"model": "metainfo.source", "pk": 7622, "fields": {"orig_filename": "Ostaszewski-Baranski_Kazimierz-Piotr_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260f.", "author": "", "orig_id": 1409247}}, {"model": "metainfo.source", "pk": 7623, "fields": {"orig_filename": "Osterc_Slavko_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261", "author": "", "orig_id": 1409249}}, {"model": "metainfo.source", "pk": 7624, "fields": {"orig_filename": "Osterlamm_Ernest_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261", "author": "", "orig_id": 1409250}}, {"model": "metainfo.source", "pk": 7625, "fields": {"orig_filename": "Ostermayer_Adolf_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261f.", "author": "", "orig_id": 1409251}}, {"model": "metainfo.source", "pk": 7626, "fields": {"orig_filename": "Osternacher_Johann_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 262f.", "author": "", "orig_id": 1409252}}, {"model": "metainfo.source", "pk": 7627, "fields": {"orig_filename": "Ostojic_Tihomir_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263", "author": "", "orig_id": 1409253}}, {"model": "metainfo.source", "pk": 7628, "fields": {"orig_filename": "Ostrcil_Anton_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263", "author": "", "orig_id": 1409254}}, {"model": "metainfo.source", "pk": 7629, "fields": {"orig_filename": "Ostrcil_Otakar_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263f.", "author": "", "orig_id": 1409255}}, {"model": "metainfo.source", "pk": 7630, "fields": {"orig_filename": "Ostrozynski_Wladyslaw_1857_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 264", "author": "", "orig_id": 1409329}}, {"model": "metainfo.source", "pk": 7631, "fields": {"orig_filename": "Osullivan-Grass_Elisabeth-Charlotte_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 264f.", "author": "", "orig_id": 1409330}}, {"model": "metainfo.source", "pk": 7632, "fields": {"orig_filename": "Osvald_Frantisek-Richard_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 265", "author": "", "orig_id": 1409331}}, {"model": "metainfo.source", "pk": 7633, "fields": {"orig_filename": "Oswald_Franz_1790_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 265f.", "author": "", "orig_id": 1409332}}, {"model": "metainfo.source", "pk": 7634, "fields": {"orig_filename": "Osztenburg_Julius_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266", "author": "", "orig_id": 1409333}}, {"model": "metainfo.source", "pk": 7635, "fields": {"orig_filename": "Otremba_Karol-Fryderyk-August_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266", "author": "", "orig_id": 1409334}}, {"model": "metainfo.source", "pk": 7636, "fields": {"orig_filename": "Ottava_Ignac_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268", "author": "", "orig_id": 1409339}}, {"model": "metainfo.source", "pk": 7637, "fields": {"orig_filename": "Ottel_Klemens_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268", "author": "", "orig_id": 1409340}}, {"model": "metainfo.source", "pk": 7638, "fields": {"orig_filename": "Ottendorfer_Oswald_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268f.", "author": "", "orig_id": 1409341}}, {"model": "metainfo.source", "pk": 7639, "fields": {"orig_filename": "Ottenfels-Gschwind_Franz_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 269", "author": "", "orig_id": 1412812}}, {"model": "metainfo.source", "pk": 7640, "fields": {"orig_filename": "Ottenthaler-Ottenthal_Emil_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 269f.", "author": "", "orig_id": 1409342}}, {"model": "metainfo.source", "pk": 7641, "fields": {"orig_filename": "Ottenthaler-Ottenthal_Kaspar_1780_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 270", "author": "", "orig_id": 1409343}}, {"model": "metainfo.source", "pk": 7642, "fields": {"orig_filename": "Otto-Kirchberg_Anton_1760_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409347}}, {"model": "metainfo.source", "pk": 7643, "fields": {"orig_filename": "Otto-Ottenfeld_Maximilian_1777_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409348}}, {"model": "metainfo.source", "pk": 7644, "fields": {"orig_filename": "Otto_Jan_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 271", "author": "", "orig_id": 1409345}}, {"model": "metainfo.source", "pk": 7645, "fields": {"orig_filename": "Otto_Johann-Karl-Theodor_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 271", "author": "", "orig_id": 1409346}}, {"model": "metainfo.source", "pk": 7646, "fields": {"orig_filename": "Otto__1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 270f.", "author": "", "orig_id": 1409344}}, {"model": "metainfo.source", "pk": 7647, "fields": {"orig_filename": "Ott_Adolf_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266f.", "author": "", "orig_id": 1409335}}, {"model": "metainfo.source", "pk": 7648, "fields": {"orig_filename": "Ott_Emil_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267", "author": "", "orig_id": 1409336}}, {"model": "metainfo.source", "pk": 7649, "fields": {"orig_filename": "Ott_Josef-Friedrich_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267", "author": "", "orig_id": 1409337}}, {"model": "metainfo.source", "pk": 7650, "fields": {"orig_filename": "Ott_Karl_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267f.", "author": "", "orig_id": 1409338}}, {"model": "metainfo.source", "pk": 7651, "fields": {"orig_filename": "Ovari_Kelemen_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409349}}, {"model": "metainfo.source", "pk": 7652, "fields": {"orig_filename": "Ovary_Lipot_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272f.", "author": "", "orig_id": 1409350}}, {"model": "metainfo.source", "pk": 7653, "fields": {"orig_filename": "Ozarkevyc_Ivan_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 273", "author": "", "orig_id": 1409417}}, {"model": "metainfo.source", "pk": 7654, "fields": {"orig_filename": "Ozegovic-Barlabasevec-Bela_Metel_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409419}}, {"model": "metainfo.source", "pk": 7655, "fields": {"orig_filename": "Ozegovic-Barlabasevec_Mirko_1775_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 273", "author": "", "orig_id": 1409418}}, {"model": "metainfo.source", "pk": 7656, "fields": {"orig_filename": "Ozlberger_Karl_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409420}}, {"model": "metainfo.source", "pk": 7657, "fields": {"orig_filename": "Ozvald_Karel_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409421}}, {"model": "metainfo.source", "pk": 7658, "fields": {"orig_filename": "Paal_Karl_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274f.", "author": "", "orig_id": 1409422}}, {"model": "metainfo.source", "pk": 7659, "fields": {"orig_filename": "Paal_Laszlo_1846_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275", "author": "", "orig_id": 1409423}}, {"model": "metainfo.source", "pk": 7660, "fields": {"orig_filename": "Paar_Alois_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275", "author": "", "orig_id": 1409424}}, {"model": "metainfo.source", "pk": 7661, "fields": {"orig_filename": "Paar_Eduard_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275f.", "author": "", "orig_id": 1409425}}, {"model": "metainfo.source", "pk": 7662, "fields": {"orig_filename": "Paar_Hermann_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409426}}, {"model": "metainfo.source", "pk": 7663, "fields": {"orig_filename": "Paasdorfer_Leopold_1856_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409427}}, {"model": "metainfo.source", "pk": 7664, "fields": {"orig_filename": "Pabisch_Franz-Josef_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409428}}, {"model": "metainfo.source", "pk": 7665, "fields": {"orig_filename": "Pablasek_Matthias_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276f.", "author": "", "orig_id": 1409429}}, {"model": "metainfo.source", "pk": 7666, "fields": {"orig_filename": "Pabst_Heinrich-Wilhelm_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 277", "author": "", "orig_id": 1409430}}, {"model": "metainfo.source", "pk": 7667, "fields": {"orig_filename": "Pabst_Johann-Heinrich_1785_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278", "author": "", "orig_id": 1409432}}, {"model": "metainfo.source", "pk": 7668, "fields": {"orig_filename": "Pabst_Johann_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 277f.", "author": "", "orig_id": 1409431}}, {"model": "metainfo.source", "pk": 7669, "fields": {"orig_filename": "Pacak_Bedrich_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278", "author": "", "orig_id": 1409433}}, {"model": "metainfo.source", "pk": 7670, "fields": {"orig_filename": "Pacal_Franz_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278f.", "author": "", "orig_id": 1409434}}, {"model": "metainfo.source", "pk": 7671, "fields": {"orig_filename": "Pacchioni_Giovanni_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409435}}, {"model": "metainfo.source", "pk": 7672, "fields": {"orig_filename": "Pace-Friedensberg_Anton_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409436}}, {"model": "metainfo.source", "pk": 7673, "fields": {"orig_filename": "Pacher-Theinburg_Gustav_1839_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281", "author": "", "orig_id": 1408063}}, {"model": "metainfo.source", "pk": 7674, "fields": {"orig_filename": "Pacher-Theinburg_Johann-Martin_1772_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281", "author": "", "orig_id": 1408064}}, {"model": "metainfo.source", "pk": 7675, "fields": {"orig_filename": "Pacher-Theinburg_Paul_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281f.", "author": "", "orig_id": 1408065}}, {"model": "metainfo.source", "pk": 7676, "fields": {"orig_filename": "Pacher_Anton_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409437}}, {"model": "metainfo.source", "pk": 7677, "fields": {"orig_filename": "Pacher_David_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279f.", "author": "", "orig_id": 1409438}}, {"model": "metainfo.source", "pk": 7678, "fields": {"orig_filename": "Pacher_Josef-Adalbert_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 280", "author": "", "orig_id": 1409439}}, {"model": "metainfo.source", "pk": 7679, "fields": {"orig_filename": "Pacher_Raphael_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 280", "author": "", "orig_id": 1408062}}, {"model": "metainfo.source", "pk": 7680, "fields": {"orig_filename": "Pachinger_Anton-Maximilian_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 282", "author": "", "orig_id": 1408066}}, {"model": "metainfo.source", "pk": 7681, "fields": {"orig_filename": "Pachler_Faust_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 282f.", "author": "", "orig_id": 1408067}}, {"model": "metainfo.source", "pk": 7682, "fields": {"orig_filename": "Pachler_Marie-Leopoldine_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283", "author": "", "orig_id": 1408068}}, {"model": "metainfo.source", "pk": 7683, "fields": {"orig_filename": "Pachmann_Theodor_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283", "author": "", "orig_id": 1408069}}, {"model": "metainfo.source", "pk": 7684, "fields": {"orig_filename": "Pachner-Eggenstorf_Anton_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283f.", "author": "", "orig_id": 1408070}}, {"model": "metainfo.source", "pk": 7685, "fields": {"orig_filename": "Pachta-Rayhofen_Johann-Josef-Philipp_1723_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284", "author": "", "orig_id": 1408071}}, {"model": "metainfo.source", "pk": 7686, "fields": {"orig_filename": "Pacic_Jovan_1771_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284", "author": "", "orig_id": 1408072}}, {"model": "metainfo.source", "pk": 7687, "fields": {"orig_filename": "Packeny-Kilstaedten_Friedrich_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284f.", "author": "", "orig_id": 1408073}}, {"model": "metainfo.source", "pk": 7688, "fields": {"orig_filename": "Pacold_Jiri_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408074}}, {"model": "metainfo.source", "pk": 7689, "fields": {"orig_filename": "Padiaur_Karl_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408075}}, {"model": "metainfo.source", "pk": 7690, "fields": {"orig_filename": "Padovan_Giglio_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408076}}, {"model": "metainfo.source", "pk": 7691, "fields": {"orig_filename": "Padovan_Guglielmo_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285f.", "author": "", "orig_id": 1408077}}, {"model": "metainfo.source", "pk": 7692, "fields": {"orig_filename": "Pagaczewski_Julian_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 286", "author": "", "orig_id": 1408078}}, {"model": "metainfo.source", "pk": 7693, "fields": {"orig_filename": "Paganetti_Gustav_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 286f.", "author": "", "orig_id": 1408079}}, {"model": "metainfo.source", "pk": 7694, "fields": {"orig_filename": "Pagani-Cesa_Giuseppe-Urbano_1757_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 287f.", "author": "", "orig_id": 1408081}}, {"model": "metainfo.source", "pk": 7695, "fields": {"orig_filename": "Oeri-Fueloep_Gabor_1739_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210f.", "author": "", "orig_id": 1408697}}, {"model": "metainfo.source", "pk": 7696, "fields": {"orig_filename": "Oerley_Leopold_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 211", "author": "", "orig_id": 1408698}}, {"model": "metainfo.source", "pk": 7697, "fields": {"orig_filename": "Oerley_Robert_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 211f.", "author": "", "orig_id": 1408699}}, {"model": "metainfo.source", "pk": 7698, "fields": {"orig_filename": "Oer_Franz_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210", "author": "", "orig_id": 1408695}}, {"model": "metainfo.source", "pk": 7699, "fields": {"orig_filename": "Oesterlein_Nikolaus-Johannes_1841_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 212f.", "author": "", "orig_id": 1408701}}, {"model": "metainfo.source", "pk": 7700, "fields": {"orig_filename": "Oesterlein_Nikolaus_1804_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 212", "author": "", "orig_id": 1408700}}, {"model": "metainfo.source", "pk": 7701, "fields": {"orig_filename": "Oesterreich_Franz_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408702}}, {"model": "metainfo.source", "pk": 7702, "fields": {"orig_filename": "Oettel_Karl_1767_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408704}}, {"model": "metainfo.source", "pk": 7703, "fields": {"orig_filename": "Oettinger_Jozef_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213f.", "author": "", "orig_id": 1408774}}, {"model": "metainfo.source", "pk": 7704, "fields": {"orig_filename": "Oettl_Johann_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 214", "author": "", "orig_id": 1408775}}, {"model": "metainfo.source", "pk": 7705, "fields": {"orig_filename": "Oetvoes_Agoston_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 214", "author": "", "orig_id": 1408776}}, {"model": "metainfo.source", "pk": 7706, "fields": {"orig_filename": "Ofenheim-Ponteuxin_Viktor_1820_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 215", "author": "", "orig_id": 1408777}}, {"model": "metainfo.source", "pk": 7707, "fields": {"orig_filename": "Offermann_Karl_1792_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 215f.", "author": "", "orig_id": 1408778}}, {"model": "metainfo.source", "pk": 7708, "fields": {"orig_filename": "Offermann_Karl_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408779}}, {"model": "metainfo.source", "pk": 7709, "fields": {"orig_filename": "Offermann_Karl_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408780}}, {"model": "metainfo.source", "pk": 7710, "fields": {"orig_filename": "Offermann_Theodor_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408781}}, {"model": "metainfo.source", "pk": 7711, "fields": {"orig_filename": "Offner_Johann-Michael_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216f.", "author": "", "orig_id": 1408782}}, {"model": "metainfo.source", "pk": 7712, "fields": {"orig_filename": "Ofner_Hermann_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217", "author": "", "orig_id": 1408783}}, {"model": "metainfo.source", "pk": 7713, "fields": {"orig_filename": "Ofner_Johann_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217", "author": "", "orig_id": 1408784}}, {"model": "metainfo.source", "pk": 7714, "fields": {"orig_filename": "Ofner_Julius_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217f.", "author": "", "orig_id": 1408785}}, {"model": "metainfo.source", "pk": 7715, "fields": {"orig_filename": "Ogrinec_Josip_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 218", "author": "", "orig_id": 1408786}}, {"model": "metainfo.source", "pk": 7716, "fields": {"orig_filename": "Ogrizovic_Milan_1877_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 218f.", "author": "", "orig_id": 1408787}}, {"model": "metainfo.source", "pk": 7717, "fields": {"orig_filename": "Oheral_Jan_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 219", "author": "", "orig_id": 1408788}}, {"model": "metainfo.source", "pk": 7718, "fields": {"orig_filename": "Ohligs_Bernhard-Wilhelm_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 219f.", "author": "", "orig_id": 1408789}}, {"model": "metainfo.source", "pk": 7719, "fields": {"orig_filename": "Ohmann_Friedrich_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 220", "author": "", "orig_id": 1408790}}, {"model": "metainfo.source", "pk": 7720, "fields": {"orig_filename": "Ohonovskyj_Omeljan-Mychajlovyc_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 220f.", "author": "", "orig_id": 1408791}}, {"model": "metainfo.source", "pk": 7721, "fields": {"orig_filename": "Ohorn_Anton_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 221", "author": "", "orig_id": 1408792}}, {"model": "metainfo.source", "pk": 7722, "fields": {"orig_filename": "Ohrfandl_Heinrich-Karl_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 221f.", "author": "", "orig_id": 1408793}}, {"model": "metainfo.source", "pk": 7723, "fields": {"orig_filename": "Ohrwalder_Josef_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222", "author": "", "orig_id": 1408794}}, {"model": "metainfo.source", "pk": 7724, "fields": {"orig_filename": "Oitzinger_Anton_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222", "author": "", "orig_id": 1408795}}, {"model": "metainfo.source", "pk": 7725, "fields": {"orig_filename": "Okon_Eugeniusz_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222f.", "author": "", "orig_id": 1408796}}, {"model": "metainfo.source", "pk": 7726, "fields": {"orig_filename": "Okretic_Ivan_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408866}}, {"model": "metainfo.source", "pk": 7727, "fields": {"orig_filename": "Okrugic_Ilija_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408867}}, {"model": "metainfo.source", "pk": 7728, "fields": {"orig_filename": "Okunevskyj_Theophil_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223f.", "author": "", "orig_id": 1408869}}, {"model": "metainfo.source", "pk": 7729, "fields": {"orig_filename": "Olah_Gusztav_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224", "author": "", "orig_id": 1408870}}, {"model": "metainfo.source", "pk": 7730, "fields": {"orig_filename": "Olariu_Iuliu-Iosif_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224", "author": "", "orig_id": 1408871}}, {"model": "metainfo.source", "pk": 7731, "fields": {"orig_filename": "Olbrich_Josef-Maria_1867_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224ff.", "author": "", "orig_id": 1408872}}, {"model": "metainfo.source", "pk": 7732, "fields": {"orig_filename": "Oldenburg_Elimar-Anton-Guenther-Friedrich_1844_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226", "author": "", "orig_id": 1408874}}, {"model": "metainfo.source", "pk": 7733, "fields": {"orig_filename": "Oldenburg_Rudolf_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226", "author": "", "orig_id": 1408873}}, {"model": "metainfo.source", "pk": 7734, "fields": {"orig_filename": "Olearski_Kazimierz_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226f.", "author": "", "orig_id": 1408875}}, {"model": "metainfo.source", "pk": 7735, "fields": {"orig_filename": "Olesnyckyj_Evhen_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 227", "author": "", "orig_id": 1408876}}, {"model": "metainfo.source", "pk": 7736, "fields": {"orig_filename": "Olexik_Paul_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 227f.", "author": "", "orig_id": 1408877}}, {"model": "metainfo.source", "pk": 7737, "fields": {"orig_filename": "Oliva_Giovanni_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228", "author": "", "orig_id": 1408878}}, {"model": "metainfo.source", "pk": 7738, "fields": {"orig_filename": "Olschowy_Julius_1862_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228", "author": "", "orig_id": 1408879}}, {"model": "metainfo.source", "pk": 7739, "fields": {"orig_filename": "Olszewski_Karol-Stanislaw_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228f.", "author": "", "orig_id": 1408880}}, {"model": "metainfo.source", "pk": 7740, "fields": {"orig_filename": "Olszewski_Michal_1868_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 229", "author": "", "orig_id": 1408881}}, {"model": "metainfo.source", "pk": 7741, "fields": {"orig_filename": "Olynch-Town_Karl_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230", "author": "", "orig_id": 1408883}}, {"model": "metainfo.source", "pk": 7742, "fields": {"orig_filename": "Omerza_Franc_1885_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230", "author": "", "orig_id": 1408884}}, {"model": "metainfo.source", "pk": 7743, "fields": {"orig_filename": "Onciul_Dimitrie_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230f.", "author": "", "orig_id": 1408885}}, {"model": "metainfo.source", "pk": 7744, "fields": {"orig_filename": "Onciul_Isidor_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408955}}, {"model": "metainfo.source", "pk": 7745, "fields": {"orig_filename": "Ondricek_Frantisek_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408956}}, {"model": "metainfo.source", "pk": 7746, "fields": {"orig_filename": "Ondrusek_Frantisek_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408957}}, {"model": "metainfo.source", "pk": 7747, "fields": {"orig_filename": "Onken_Karl-Eduard_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231f.", "author": "", "orig_id": 1408958}}, {"model": "metainfo.source", "pk": 7748, "fields": {"orig_filename": "Onodi_Adolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232", "author": "", "orig_id": 1408959}}, {"model": "metainfo.source", "pk": 7749, "fields": {"orig_filename": "Ontl_August_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232", "author": "", "orig_id": 1408960}}, {"model": "metainfo.source", "pk": 7750, "fields": {"orig_filename": "Opeka_Mihael_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232f.", "author": "", "orig_id": 1408961}}, {"model": "metainfo.source", "pk": 7751, "fields": {"orig_filename": "Opel_Kamillo_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 233", "author": "", "orig_id": 1408962}}, {"model": "metainfo.source", "pk": 7752, "fields": {"orig_filename": "Opitz_Ambros_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 233f.", "author": "", "orig_id": 1408963}}, {"model": "metainfo.source", "pk": 7753, "fields": {"orig_filename": "Opitz_Coelestinus_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234", "author": "", "orig_id": 1408964}}, {"model": "metainfo.source", "pk": 7754, "fields": {"orig_filename": "Opitz_Heinrich_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234", "author": "", "orig_id": 1408965}}, {"model": "metainfo.source", "pk": 7755, "fields": {"orig_filename": "Opiz_Georg-Emanuel_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234f.", "author": "", "orig_id": 1408966}}, {"model": "metainfo.source", "pk": 7756, "fields": {"orig_filename": "Opiz_Philipp-Maximilian_1787_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235", "author": "", "orig_id": 1408967}}, {"model": "metainfo.source", "pk": 7757, "fields": {"orig_filename": "Opolski_Stanislaw_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235", "author": "", "orig_id": 1408968}}, {"model": "metainfo.source", "pk": 7758, "fields": {"orig_filename": "Opolsky_Jan_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235f.", "author": "", "orig_id": 1408969}}, {"model": "metainfo.source", "pk": 7759, "fields": {"orig_filename": "Oppenheimer_Felix-Hermann_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238", "author": "", "orig_id": 1408976}}, {"model": "metainfo.source", "pk": 7760, "fields": {"orig_filename": "Oppenheim_Adolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236", "author": "", "orig_id": 1408970}}, {"model": "metainfo.source", "pk": 7761, "fields": {"orig_filename": "Oppenheim_David_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236", "author": "", "orig_id": 1408971}}, {"model": "metainfo.source", "pk": 7762, "fields": {"orig_filename": "Oppenheim_Joachim_1832_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236f.", "author": "", "orig_id": 1408972}}, {"model": "metainfo.source", "pk": 7763, "fields": {"orig_filename": "Oppenheim_Josef_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 237", "author": "", "orig_id": 1408973}}, {"model": "metainfo.source", "pk": 7764, "fields": {"orig_filename": "Oppenheim_Moritz_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 237", "author": "", "orig_id": 1408974}}, {"model": "metainfo.source", "pk": 7765, "fields": {"orig_filename": "Oppenheim_Samuel_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238", "author": "", "orig_id": 1408975}}, {"model": "metainfo.source", "pk": 7766, "fields": {"orig_filename": "Oppolzer_Egon_1869_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238f.", "author": "", "orig_id": 1408977}}, {"model": "metainfo.source", "pk": 7767, "fields": {"orig_filename": "Oppolzer_Johann_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 239", "author": "", "orig_id": 1409043}}, {"model": "metainfo.source", "pk": 7768, "fields": {"orig_filename": "Oppolzer_Theodor_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 239f.", "author": "", "orig_id": 1409044}}, {"model": "metainfo.source", "pk": 7769, "fields": {"orig_filename": "Opydo_Franciszek_1856_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 240", "author": "", "orig_id": 1409046}}, {"model": "metainfo.source", "pk": 7770, "fields": {"orig_filename": "Orazen_Ivan_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 240f.", "author": "", "orig_id": 1409045}}, {"model": "metainfo.source", "pk": 7771, "fields": {"orig_filename": "Orban-Lengyelfalva_Balazs_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241", "author": "", "orig_id": 1409047}}, {"model": "metainfo.source", "pk": 7772, "fields": {"orig_filename": "Orbok-Koekoesd_Mor_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241f.", "author": "", "orig_id": 1409049}}, {"model": "metainfo.source", "pk": 7773, "fields": {"orig_filename": "Orbok_Lorand_1884_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241", "author": "", "orig_id": 1409048}}, {"model": "metainfo.source", "pk": 7774, "fields": {"orig_filename": "Orczy-Orczi_Bela_1822_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409050}}, {"model": "metainfo.source", "pk": 7775, "fields": {"orig_filename": "Ordody-Ordod_Lajos_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409051}}, {"model": "metainfo.source", "pk": 7776, "fields": {"orig_filename": "Ordody-Ordod_Pal_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409052}}, {"model": "metainfo.source", "pk": 7777, "fields": {"orig_filename": "Orefici_Francesco_1771_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409053}}, {"model": "metainfo.source", "pk": 7778, "fields": {"orig_filename": "Orel_Dobroslav_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243", "author": "", "orig_id": 1409054}}, {"model": "metainfo.source", "pk": 7779, "fields": {"orig_filename": "Orel_Eduard_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243", "author": "", "orig_id": 1409055}}, {"model": "metainfo.source", "pk": 7780, "fields": {"orig_filename": "Orel_Eduard_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243f.", "author": "", "orig_id": 1409056}}, {"model": "metainfo.source", "pk": 7781, "fields": {"orig_filename": "Orel_Johann_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244", "author": "", "orig_id": 1409057}}, {"model": "metainfo.source", "pk": 7782, "fields": {"orig_filename": "Orel_Josef_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244", "author": "", "orig_id": 1409058}}, {"model": "metainfo.source", "pk": 7783, "fields": {"orig_filename": "Orel_Walther_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244f.", "author": "", "orig_id": 1409059}}, {"model": "metainfo.source", "pk": 7784, "fields": {"orig_filename": "Orges_Hermann_1821_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245", "author": "", "orig_id": 1409060}}, {"model": "metainfo.source", "pk": 7785, "fields": {"orig_filename": "Orgler_Flavian_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245", "author": "", "orig_id": 1409061}}, {"model": "metainfo.source", "pk": 7786, "fields": {"orig_filename": "Orlai-Petrich_Soma_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245f.", "author": "", "orig_id": 1409062}}, {"model": "metainfo.source", "pk": 7787, "fields": {"orig_filename": "Orlandini_Giovanni_1804_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246", "author": "", "orig_id": 1409063}}, {"model": "metainfo.source", "pk": 7788, "fields": {"orig_filename": "Orlay_Janos_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246", "author": "", "orig_id": 1409064}}, {"model": "metainfo.source", "pk": 7789, "fields": {"orig_filename": "Orliczek_Alois_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246f.", "author": "", "orig_id": 1409065}}, {"model": "metainfo.source", "pk": 7790, "fields": {"orig_filename": "Orlik_Emil_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 247", "author": "", "orig_id": 1409140}}, {"model": "metainfo.source", "pk": 7791, "fields": {"orig_filename": "Ormis_Samuel_1824_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 247f.", "author": "", "orig_id": 1409141}}, {"model": "metainfo.source", "pk": 7792, "fields": {"orig_filename": "Ormody-Ormod_Vilmos_1838_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409142}}, {"model": "metainfo.source", "pk": 7793, "fields": {"orig_filename": "Ormos-Csicser_Zsigmond_1813_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409143}}, {"model": "metainfo.source", "pk": 7794, "fields": {"orig_filename": "Ornig_Josef_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409144}}, {"model": "metainfo.source", "pk": 7795, "fields": {"orig_filename": "Ornstein_Jakob-Meschulam_1775_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248f.", "author": "", "orig_id": 1409145}}, {"model": "metainfo.source", "pk": 7796, "fields": {"orig_filename": "Ornstein_Moses_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249", "author": "", "orig_id": 1409146}}, {"model": "metainfo.source", "pk": 7797, "fields": {"orig_filename": "Nuckowski_Jan_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175f.", "author": "", "orig_id": 1408315}}, {"model": "metainfo.source", "pk": 7798, "fields": {"orig_filename": "Nuechtern_August_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 176", "author": "", "orig_id": 1408316}}, {"model": "metainfo.source", "pk": 7799, "fields": {"orig_filename": "Nuell_Eduard_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 176f.", "author": "", "orig_id": 1408317}}, {"model": "metainfo.source", "pk": 7800, "fields": {"orig_filename": "Nuic_Andjeo_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408319}}, {"model": "metainfo.source", "pk": 7801, "fields": {"orig_filename": "Nuic_Arkandjeo_1896_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408318}}, {"model": "metainfo.source", "pk": 7802, "fields": {"orig_filename": "Nunnenmacher-Roellfeld_Ludwig_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408320}}, {"model": "metainfo.source", "pk": 7803, "fields": {"orig_filename": "Nusbaum-Hilarowicz_Jozef_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178", "author": "", "orig_id": 1408321}}, {"model": "metainfo.source", "pk": 7804, "fields": {"orig_filename": "Nussbaumer_Michael_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178", "author": "", "orig_id": 1408322}}, {"model": "metainfo.source", "pk": 7805, "fields": {"orig_filename": "Nussbaumer_Otto_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178f.", "author": "", "orig_id": 1408323}}, {"model": "metainfo.source", "pk": 7806, "fields": {"orig_filename": "Nussbaumer_Thiemo_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408324}}, {"model": "metainfo.source", "pk": 7807, "fields": {"orig_filename": "Nusshard_Franz-Willibald_1785_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408325}}, {"model": "metainfo.source", "pk": 7808, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Adolf_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408326}}, {"model": "metainfo.source", "pk": 7809, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Albert_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179f.", "author": "", "orig_id": 1408327}}, {"model": "metainfo.source", "pk": 7810, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Antal_1803_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180", "author": "", "orig_id": 1408328}}, {"model": "metainfo.source", "pk": 7811, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Jenoe_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180", "author": "", "orig_id": 1408329}}, {"model": "metainfo.source", "pk": 7812, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Pal_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180f.", "author": "", "orig_id": 1408330}}, {"model": "metainfo.source", "pk": 7813, "fields": {"orig_filename": "Nydrle_Antonin_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181", "author": "", "orig_id": 1408331}}, {"model": "metainfo.source", "pk": 7814, "fields": {"orig_filename": "Nyiri-Szekely_Alexander_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181", "author": "", "orig_id": 1408400}}, {"model": "metainfo.source", "pk": 7815, "fields": {"orig_filename": "Nyiry_Istvan_1776_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181f.", "author": "", "orig_id": 1408401}}, {"model": "metainfo.source", "pk": 7816, "fields": {"orig_filename": "Nyulassy_Anton_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182", "author": "", "orig_id": 1408402}}, {"model": "metainfo.source", "pk": 7817, "fields": {"orig_filename": "Obach_Theobald_1843_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182", "author": "", "orig_id": 1408403}}, {"model": "metainfo.source", "pk": 7818, "fields": {"orig_filename": "Obalinski_Alfred_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182f.", "author": "", "orig_id": 1408404}}, {"model": "metainfo.source", "pk": 7819, "fields": {"orig_filename": "Obentraut_Adolf_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 183", "author": "", "orig_id": 1408405}}, {"model": "metainfo.source", "pk": 7820, "fields": {"orig_filename": "Obentraut_Johann-Karl_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 183f.", "author": "", "orig_id": 1408406}}, {"model": "metainfo.source", "pk": 7821, "fields": {"orig_filename": "Oberascher_Emmerich_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184", "author": "", "orig_id": 1408407}}, {"model": "metainfo.source", "pk": 7822, "fields": {"orig_filename": "Oberdank_Wilhelm_1858_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184", "author": "", "orig_id": 1408409}}, {"model": "metainfo.source", "pk": 7823, "fields": {"orig_filename": "Oberegger_Matthaeus_1829_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184f.", "author": "", "orig_id": 1408410}}, {"model": "metainfo.source", "pk": 7824, "fields": {"orig_filename": "Oberer_Franz_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408411}}, {"model": "metainfo.source", "pk": 7825, "fields": {"orig_filename": "Oberforcher_Josef_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408412}}, {"model": "metainfo.source", "pk": 7826, "fields": {"orig_filename": "Oberhauser_Rudolf_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408413}}, {"model": "metainfo.source", "pk": 7827, "fields": {"orig_filename": "Oberhummer_Eugen_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185f.", "author": "", "orig_id": 1408414}}, {"model": "metainfo.source", "pk": 7828, "fields": {"orig_filename": "Oberkamp_Rudolf_1825_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 186", "author": "", "orig_id": 1408415}}, {"model": "metainfo.source", "pk": 7829, "fields": {"orig_filename": "Oberkofler_Anton_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 186f.", "author": "", "orig_id": 1408416}}, {"model": "metainfo.source", "pk": 7830, "fields": {"orig_filename": "Oberlaender_Alfred_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408417}}, {"model": "metainfo.source", "pk": 7831, "fields": {"orig_filename": "Oberlaender_Moritz-Jakob_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408418}}, {"model": "metainfo.source", "pk": 7832, "fields": {"orig_filename": "Oberleithner_Karl_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408419}}, {"model": "metainfo.source", "pk": 7833, "fields": {"orig_filename": "Oberleithner_Max_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408420}}, {"model": "metainfo.source", "pk": 7834, "fields": {"orig_filename": "Oberleitner_Andreas_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408421}}, {"model": "metainfo.source", "pk": 7835, "fields": {"orig_filename": "Oberleitner_Franz_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408422}}, {"model": "metainfo.source", "pk": 7836, "fields": {"orig_filename": "Oberleitner_Karl_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188f.", "author": "", "orig_id": 1408423}}, {"model": "metainfo.source", "pk": 7837, "fields": {"orig_filename": "Oberlercher_Paul-Gabriel_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 189", "author": "", "orig_id": 1408424}}, {"model": "metainfo.source", "pk": 7838, "fields": {"orig_filename": "Obermayer-Marnach_Kamillo_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191", "author": "", "orig_id": 1408497}}, {"model": "metainfo.source", "pk": 7839, "fields": {"orig_filename": "Obermayer-Rechtsinn_Wilhelm_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191", "author": "", "orig_id": 1408498}}, {"model": "metainfo.source", "pk": 7840, "fields": {"orig_filename": "Obermayer_Albert_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 189f.", "author": "", "orig_id": 1408492}}, {"model": "metainfo.source", "pk": 7841, "fields": {"orig_filename": "Obermayer_August_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190", "author": "", "orig_id": 1408493}}, {"model": "metainfo.source", "pk": 7842, "fields": {"orig_filename": "Obermayer_Friedrich_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190", "author": "", "orig_id": 1408494}}, {"model": "metainfo.source", "pk": 7843, "fields": {"orig_filename": "Obermayer_Peter-Eugen_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190f.", "author": "", "orig_id": 1408495}}, {"model": "metainfo.source", "pk": 7844, "fields": {"orig_filename": "Obermueller_Ignaz_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191f.", "author": "", "orig_id": 1408499}}, {"model": "metainfo.source", "pk": 7845, "fields": {"orig_filename": "Obermuellner_Adolf_1833_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 192", "author": "", "orig_id": 1408500}}, {"model": "metainfo.source", "pk": 7846, "fields": {"orig_filename": "Oberndorfer_Johann_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 192", "author": "", "orig_id": 1408502}}, {"model": "metainfo.source", "pk": 7847, "fields": {"orig_filename": "Obernyik_Karoly_1814_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408503}}, {"model": "metainfo.source", "pk": 7848, "fields": {"orig_filename": "Oberparleiter_Ignaz_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408504}}, {"model": "metainfo.source", "pk": 7849, "fields": {"orig_filename": "Oberrauch_Heinrich_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408505}}, {"model": "metainfo.source", "pk": 7850, "fields": {"orig_filename": "Oberschall_Adolf_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193f.", "author": "", "orig_id": 1408506}}, {"model": "metainfo.source", "pk": 7851, "fields": {"orig_filename": "Oberschall_Pal_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194", "author": "", "orig_id": 1408507}}, {"model": "metainfo.source", "pk": 7852, "fields": {"orig_filename": "Obersteiner_Heinrich_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194", "author": "", "orig_id": 1408508}}, {"model": "metainfo.source", "pk": 7853, "fields": {"orig_filename": "Obersteiner_Johann_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194f.", "author": "", "orig_id": 1408509}}, {"model": "metainfo.source", "pk": 7854, "fields": {"orig_filename": "Obersteiner_Ludwig_1899_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195", "author": "", "orig_id": 1408510}}, {"model": "metainfo.source", "pk": 7855, "fields": {"orig_filename": "Oberstolz_Rudolf_1865_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195", "author": "", "orig_id": 1408511}}, {"model": "metainfo.source", "pk": 7856, "fields": {"orig_filename": "Obertimpfler_Karl_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 196", "author": "", "orig_id": 1408513}}, {"model": "metainfo.source", "pk": 7857, "fields": {"orig_filename": "Obert_Franz_1828_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195f.", "author": "", "orig_id": 1408512}}, {"model": "metainfo.source", "pk": 7858, "fields": {"orig_filename": "Oberwalder_Jakob_1829_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 196f.", "author": "", "orig_id": 1408514}}, {"model": "metainfo.source", "pk": 7859, "fields": {"orig_filename": "Oberwalder_Oskar_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197", "author": "", "orig_id": 1408515}}, {"model": "metainfo.source", "pk": 7860, "fields": {"orig_filename": "Oberwalder_Thomas_1858_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197", "author": "", "orig_id": 1408516}}, {"model": "metainfo.source", "pk": 7861, "fields": {"orig_filename": "Oberweis_Josef_1826_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197f.", "author": "", "orig_id": 1408517}}, {"model": "metainfo.source", "pk": 7862, "fields": {"orig_filename": "Oberziner_Giovanni-Amennone_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408584}}, {"model": "metainfo.source", "pk": 7863, "fields": {"orig_filename": "Obhlidal_Thomas_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408586}}, {"model": "metainfo.source", "pk": 7864, "fields": {"orig_filename": "Oblak_Vatroslav_1864_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198f.", "author": "", "orig_id": 1408587}}, {"model": "metainfo.source", "pk": 7865, "fields": {"orig_filename": "Obminski_Tadeusz_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 199f.", "author": "", "orig_id": 1408588}}, {"model": "metainfo.source", "pk": 7866, "fields": {"orig_filename": "Oborny_Adolf_1840_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200", "author": "", "orig_id": 1408589}}, {"model": "metainfo.source", "pk": 7867, "fields": {"orig_filename": "Obrist_Johann-Georg_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200", "author": "", "orig_id": 1408591}}, {"model": "metainfo.source", "pk": 7868, "fields": {"orig_filename": "Obrist_Walther_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200f.", "author": "", "orig_id": 1408592}}, {"model": "metainfo.source", "pk": 7869, "fields": {"orig_filename": "Obrovsky_Jakub_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201", "author": "", "orig_id": 1408593}}, {"model": "metainfo.source", "pk": 7870, "fields": {"orig_filename": "Obruca_Rudolf_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201", "author": "", "orig_id": 1412810}}, {"model": "metainfo.source", "pk": 7871, "fields": {"orig_filename": "Obrzut_Andrzej_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201f.", "author": "", "orig_id": 1408594}}, {"model": "metainfo.source", "pk": 7872, "fields": {"orig_filename": "Obweger_Jakob_1857_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408595}}, {"model": "metainfo.source", "pk": 7873, "fields": {"orig_filename": "Obwexer_Paul_1828_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408596}}, {"model": "metainfo.source", "pk": 7874, "fields": {"orig_filename": "Obwurzer_Herbert_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408597}}, {"model": "metainfo.source", "pk": 7875, "fields": {"orig_filename": "Ochenkowski_Wladyslaw_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202f.", "author": "", "orig_id": 1408598}}, {"model": "metainfo.source", "pk": 7876, "fields": {"orig_filename": "Ochrymovyc_Ksenofont_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 203", "author": "", "orig_id": 1408599}}, {"model": "metainfo.source", "pk": 7877, "fields": {"orig_filename": "Ochsenheimer_Ferdinand_1767_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 203f.", "author": "", "orig_id": 1408600}}, {"model": "metainfo.source", "pk": 7878, "fields": {"orig_filename": "Ochsenheimer_Friedrich_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204", "author": "", "orig_id": 1408601}}, {"model": "metainfo.source", "pk": 7879, "fields": {"orig_filename": "Ocsvay_Ferenc_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204", "author": "", "orig_id": 1408602}}, {"model": "metainfo.source", "pk": 7880, "fields": {"orig_filename": "Odehnal_Franz_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204f.", "author": "", "orig_id": 1408603}}, {"model": "metainfo.source", "pk": 7881, "fields": {"orig_filename": "Odelga_Adolf_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408604}}, {"model": "metainfo.source", "pk": 7882, "fields": {"orig_filename": "Odescalchi_Artur_1836_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408605}}, {"model": "metainfo.source", "pk": 7883, "fields": {"orig_filename": "Odkolek-Ujezd_Adolf_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408606}}, {"model": "metainfo.source", "pk": 7884, "fields": {"orig_filename": "Odonell-Tyrconell_Heinrich-Lamoral_1802_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205f.", "author": "", "orig_id": 1408607}}, {"model": "metainfo.source", "pk": 7885, "fields": {"orig_filename": "Odonell-Tyrconell_Maximilian-Karl_1812_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 206", "author": "", "orig_id": 1408682}}, {"model": "metainfo.source", "pk": 7886, "fields": {"orig_filename": "Odry-Pacser_Lehel_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 206f.", "author": "", "orig_id": 1408683}}, {"model": "metainfo.source", "pk": 7887, "fields": {"orig_filename": "Odrzywolski_Kazimierz_1860_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408684}}, {"model": "metainfo.source", "pk": 7888, "fields": {"orig_filename": "Odvalil_Frantisek_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408685}}, {"model": "metainfo.source", "pk": 7889, "fields": {"orig_filename": "Oehri_Franz-Josef_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408686}}, {"model": "metainfo.source", "pk": 7890, "fields": {"orig_filename": "Oekroess_Balint_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207f.", "author": "", "orig_id": 1408687}}, {"model": "metainfo.source", "pk": 7891, "fields": {"orig_filename": "Oellacher_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408689}}, {"model": "metainfo.source", "pk": 7892, "fields": {"orig_filename": "Oelwein_Arthur_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208f.", "author": "", "orig_id": 1408690}}, {"model": "metainfo.source", "pk": 7893, "fields": {"orig_filename": "Oelzelt-Newin_Anton_1817_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408693}}, {"model": "metainfo.source", "pk": 7894, "fields": {"orig_filename": "Oelzelt-Newin_Anton_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209f.", "author": "", "orig_id": 1408694}}, {"model": "metainfo.source", "pk": 7895, "fields": {"orig_filename": "Oelz_Josef-Anton_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408692}}, {"model": "metainfo.source", "pk": 7896, "fields": {"orig_filename": "Oelz_Josef_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408691}}, {"model": "metainfo.source", "pk": 7897, "fields": {"orig_filename": "Oereg_Janos_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210", "author": "", "orig_id": 1408696}}, {"model": "metainfo.source", "pk": 7898, "fields": {"orig_filename": "Njegovan_Maximilian_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137f.", "author": "", "orig_id": 1409218}}, {"model": "metainfo.source", "pk": 7899, "fields": {"orig_filename": "Njegovan_Viktor_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138", "author": "", "orig_id": 1409219}}, {"model": "metainfo.source", "pk": 7900, "fields": {"orig_filename": "Nobel_Edmund_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138", "author": "", "orig_id": 1409220}}, {"model": "metainfo.source", "pk": 7901, "fields": {"orig_filename": "Nobel_Josef_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138f.", "author": "", "orig_id": 1409221}}, {"model": "metainfo.source", "pk": 7902, "fields": {"orig_filename": "Nobile_Carlo_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 139", "author": "", "orig_id": 1409222}}, {"model": "metainfo.source", "pk": 7903, "fields": {"orig_filename": "Nobile_Peter_1774_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 139f.", "author": "", "orig_id": 1409223}}, {"model": "metainfo.source", "pk": 7904, "fields": {"orig_filename": "Nobili_Johann_1798_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 140f.", "author": "", "orig_id": 1409224}}, {"model": "metainfo.source", "pk": 7905, "fields": {"orig_filename": "Nobl_Gabor_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409225}}, {"model": "metainfo.source", "pk": 7906, "fields": {"orig_filename": "Nodilo_Natko_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409226}}, {"model": "metainfo.source", "pk": 7907, "fields": {"orig_filename": "Noe-Nordberg_Karl-Gustav_1798_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142f.", "author": "", "orig_id": 1409231}}, {"model": "metainfo.source", "pk": 7908, "fields": {"orig_filename": "Noerdling_Wilhelm_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143", "author": "", "orig_id": 1409304}}, {"model": "metainfo.source", "pk": 7909, "fields": {"orig_filename": "Noesslboeck_Ignaz_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143", "author": "", "orig_id": 1409305}}, {"model": "metainfo.source", "pk": 7910, "fields": {"orig_filename": "Noetel_Louis_1837_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143f.", "author": "", "orig_id": 1409306}}, {"model": "metainfo.source", "pk": 7911, "fields": {"orig_filename": "Noetzl_Karl-Philipp_1789_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409307}}, {"model": "metainfo.source", "pk": 7912, "fields": {"orig_filename": "Noe_Franz_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409227}}, {"model": "metainfo.source", "pk": 7913, "fields": {"orig_filename": "Noe_Heinrich_1835_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409229}}, {"model": "metainfo.source", "pk": 7914, "fields": {"orig_filename": "Noe_Heinrich_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409228}}, {"model": "metainfo.source", "pk": 7915, "fields": {"orig_filename": "Noe_Oskar_1872_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409230}}, {"model": "metainfo.source", "pk": 7916, "fields": {"orig_filename": "Nogall_Johann_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409308}}, {"model": "metainfo.source", "pk": 7917, "fields": {"orig_filename": "Noggler_Anselm_1872_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409309}}, {"model": "metainfo.source", "pk": 7918, "fields": {"orig_filename": "Noggler_Anton_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144f.", "author": "", "orig_id": 1409310}}, {"model": "metainfo.source", "pk": 7919, "fields": {"orig_filename": "Noldin_Hieronymus_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 145", "author": "", "orig_id": 1409311}}, {"model": "metainfo.source", "pk": 7920, "fields": {"orig_filename": "Noldin_Josef_1888_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 145f.", "author": "", "orig_id": 1409312}}, {"model": "metainfo.source", "pk": 7921, "fields": {"orig_filename": "Nolli_Josip_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 146", "author": "", "orig_id": 1409313}}, {"model": "metainfo.source", "pk": 7922, "fields": {"orig_filename": "Noltsch_Wenzel-Ottokar_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 146f.", "author": "", "orig_id": 1409314}}, {"model": "metainfo.source", "pk": 7923, "fields": {"orig_filename": "Noorden_Karl_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 147", "author": "", "orig_id": 1409315}}, {"model": "metainfo.source", "pk": 7924, "fields": {"orig_filename": "Noot_Hugo_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 147f.", "author": "", "orig_id": 1409316}}, {"model": "metainfo.source", "pk": 7925, "fields": {"orig_filename": "Nopcsa-Felsoeszilvas_Franz_1815_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148", "author": "", "orig_id": 1409318}}, {"model": "metainfo.source", "pk": 7926, "fields": {"orig_filename": "Nopcsa-Felsoeszilvas_Franz_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148", "author": "", "orig_id": 1409317}}, {"model": "metainfo.source", "pk": 7927, "fields": {"orig_filename": "Norbert_Karl_1893_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148f.", "author": "", "orig_id": 1409319}}, {"model": "metainfo.source", "pk": 7928, "fields": {"orig_filename": "Nordau_Max_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 149f.", "author": "", "orig_id": 1409321}}, {"model": "metainfo.source", "pk": 7929, "fields": {"orig_filename": "Nordio_Enrico_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 150", "author": "", "orig_id": 1409322}}, {"model": "metainfo.source", "pk": 7930, "fields": {"orig_filename": "Nordmann_Johann_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 150f.", "author": "", "orig_id": 1409323}}, {"model": "metainfo.source", "pk": 7931, "fields": {"orig_filename": "Nord_Wilhelm_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 149", "author": "", "orig_id": 1409320}}, {"model": "metainfo.source", "pk": 7932, "fields": {"orig_filename": "Noren_Heinrich-Suso-Johannes_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151", "author": "", "orig_id": 1409324}}, {"model": "metainfo.source", "pk": 7933, "fields": {"orig_filename": "Norini_Emil_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151", "author": "", "orig_id": 1409325}}, {"model": "metainfo.source", "pk": 7934, "fields": {"orig_filename": "Norman-Neruda_Ludwig_1864_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151f.", "author": "", "orig_id": 1409327}}, {"model": "metainfo.source", "pk": 7935, "fields": {"orig_filename": "Normann-Friedenfels_Eduard_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152", "author": "", "orig_id": 1409395}}, {"model": "metainfo.source", "pk": 7936, "fields": {"orig_filename": "Norst_Anton_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152", "author": "", "orig_id": 1409396}}, {"model": "metainfo.source", "pk": 7937, "fields": {"orig_filename": "Nosievici_Stefan_1833_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152f.", "author": "", "orig_id": 1409397}}, {"model": "metainfo.source", "pk": 7938, "fields": {"orig_filename": "Nosinich_Johann_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153", "author": "", "orig_id": 1409398}}, {"model": "metainfo.source", "pk": 7939, "fields": {"orig_filename": "Noska_Franz_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153", "author": "", "orig_id": 1409399}}, {"model": "metainfo.source", "pk": 7940, "fields": {"orig_filename": "Nossberger_Adolf_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153f.", "author": "", "orig_id": 1409400}}, {"model": "metainfo.source", "pk": 7941, "fields": {"orig_filename": "Nossberger_Ferdinand_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154", "author": "", "orig_id": 1409401}}, {"model": "metainfo.source", "pk": 7942, "fields": {"orig_filename": "Nossek_Meinrad_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154", "author": "", "orig_id": 1409402}}, {"model": "metainfo.source", "pk": 7943, "fields": {"orig_filename": "Nossig_Alfred_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154f.", "author": "", "orig_id": 1409403}}, {"model": "metainfo.source", "pk": 7944, "fields": {"orig_filename": "Nostitz-Rieneck_Albert-Franz_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155", "author": "", "orig_id": 1409405}}, {"model": "metainfo.source", "pk": 7945, "fields": {"orig_filename": "Nostitz-Rieneck_Albert_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155", "author": "", "orig_id": 1409404}}, {"model": "metainfo.source", "pk": 7946, "fields": {"orig_filename": "Nostitz-Rieneck_Erwein-Felix-Maria_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155f.", "author": "", "orig_id": 1409406}}, {"model": "metainfo.source", "pk": 7947, "fields": {"orig_filename": "Nostitz-Rieneck_Hermann_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 156", "author": "", "orig_id": 1409407}}, {"model": "metainfo.source", "pk": 7948, "fields": {"orig_filename": "Nostitz-Rieneck_Johann_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 156", "author": "", "orig_id": 1409408}}, {"model": "metainfo.source", "pk": 7949, "fields": {"orig_filename": "Nostitz-Rieneck_Karl-Erwein_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409409}}, {"model": "metainfo.source", "pk": 7950, "fields": {"orig_filename": "Nostitz-Rieneck_Robert_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409410}}, {"model": "metainfo.source", "pk": 7951, "fields": {"orig_filename": "Noszlopy_Gaspar_1822_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409411}}, {"model": "metainfo.source", "pk": 7952, "fields": {"orig_filename": "Nothnagel_Hermann_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 158", "author": "", "orig_id": 1409413}}, {"model": "metainfo.source", "pk": 7953, "fields": {"orig_filename": "Noth_Friedrich-Julius_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157f.", "author": "", "orig_id": 1409412}}, {"model": "metainfo.source", "pk": 7954, "fields": {"orig_filename": "Nottebohm_Martin-Gustav_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 158f.", "author": "", "orig_id": 1409414}}, {"model": "metainfo.source", "pk": 7955, "fields": {"orig_filename": "Notz_Eugen_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159", "author": "", "orig_id": 1409415}}, {"model": "metainfo.source", "pk": 7956, "fields": {"orig_filename": "Nouseul_Johann_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159", "author": "", "orig_id": 1409416}}, {"model": "metainfo.source", "pk": 7957, "fields": {"orig_filename": "Novacek_Vojtech-Jaromir_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408135}}, {"model": "metainfo.source", "pk": 7958, "fields": {"orig_filename": "Novak-Arienti_Guido_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 168f.", "author": "", "orig_id": 1408229}}, {"model": "metainfo.source", "pk": 7959, "fields": {"orig_filename": "Novakova_Tereza_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169", "author": "", "orig_id": 1408230}}, {"model": "metainfo.source", "pk": 7960, "fields": {"orig_filename": "Novakovic_Stefan__1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169", "author": "", "orig_id": 1408231}}, {"model": "metainfo.source", "pk": 7961, "fields": {"orig_filename": "Novak_Anton_1848_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408136}}, {"model": "metainfo.source", "pk": 7962, "fields": {"orig_filename": "Novak_Anton_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408137}}, {"model": "metainfo.source", "pk": 7963, "fields": {"orig_filename": "Novak_Arne_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161", "author": "", "orig_id": 1408138}}, {"model": "metainfo.source", "pk": 7964, "fields": {"orig_filename": "Novak_Ernst_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161", "author": "", "orig_id": 1408139}}, {"model": "metainfo.source", "pk": 7965, "fields": {"orig_filename": "Novak_Ernst_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161f.", "author": "", "orig_id": 1408140}}, {"model": "metainfo.source", "pk": 7966, "fields": {"orig_filename": "Novak_Franc_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162", "author": "", "orig_id": 1408142}}, {"model": "metainfo.source", "pk": 7967, "fields": {"orig_filename": "Novak_Fran_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162", "author": "", "orig_id": 1408141}}, {"model": "metainfo.source", "pk": 7968, "fields": {"orig_filename": "Novak_Gustav_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162f.", "author": "", "orig_id": 1408143}}, {"model": "metainfo.source", "pk": 7969, "fields": {"orig_filename": "Novak_Jan-Bedrich_1872_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 163", "author": "", "orig_id": 1408144}}, {"model": "metainfo.source", "pk": 7970, "fields": {"orig_filename": "Novak_Jan-Vaclav_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 163f.", "author": "", "orig_id": 1408145}}, {"model": "metainfo.source", "pk": 7971, "fields": {"orig_filename": "Novak_Janez_1756_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408146}}, {"model": "metainfo.source", "pk": 7972, "fields": {"orig_filename": "Novak_Johann_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408147}}, {"model": "metainfo.source", "pk": 7973, "fields": {"orig_filename": "Novak_Josef_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408148}}, {"model": "metainfo.source", "pk": 7974, "fields": {"orig_filename": "Novak_Josef_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408149}}, {"model": "metainfo.source", "pk": 7975, "fields": {"orig_filename": "Novak_Josip_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408150}}, {"model": "metainfo.source", "pk": 7976, "fields": {"orig_filename": "Novak_Julian_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408151}}, {"model": "metainfo.source", "pk": 7977, "fields": {"orig_filename": "Novak_Karl-Friedrich_1882_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165f.", "author": "", "orig_id": 1408152}}, {"model": "metainfo.source", "pk": 7978, "fields": {"orig_filename": "Novak_Lajos_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166", "author": "", "orig_id": 1408153}}, {"model": "metainfo.source", "pk": 7979, "fields": {"orig_filename": "Novak_Peter_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166", "author": "", "orig_id": 1408154}}, {"model": "metainfo.source", "pk": 7980, "fields": {"orig_filename": "Novak_Robert_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166f.", "author": "", "orig_id": 1408225}}, {"model": "metainfo.source", "pk": 7981, "fields": {"orig_filename": "Novak_Vilko_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 167", "author": "", "orig_id": 1408226}}, {"model": "metainfo.source", "pk": 7982, "fields": {"orig_filename": "Novak_Vitezslav_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 167f.", "author": "", "orig_id": 1408227}}, {"model": "metainfo.source", "pk": 7983, "fields": {"orig_filename": "Novak_Vjenceslav_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 168", "author": "", "orig_id": 1408228}}, {"model": "metainfo.source", "pk": 7984, "fields": {"orig_filename": "Novic_Otocanin-Joksim_1806_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169f.", "author": "", "orig_id": 1408232}}, {"model": "metainfo.source", "pk": 7985, "fields": {"orig_filename": "Novotny_Aurel_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170", "author": "", "orig_id": 1408233}}, {"model": "metainfo.source", "pk": 7986, "fields": {"orig_filename": "Novotny_Eduard_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170", "author": "", "orig_id": 1408234}}, {"model": "metainfo.source", "pk": 7987, "fields": {"orig_filename": "Novotny_Jindrich_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170f.", "author": "", "orig_id": 1408235}}, {"model": "metainfo.source", "pk": 7988, "fields": {"orig_filename": "Novotny_Karl_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408237}}, {"model": "metainfo.source", "pk": 7989, "fields": {"orig_filename": "Novotny_Stjepan_1833_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408238}}, {"model": "metainfo.source", "pk": 7990, "fields": {"orig_filename": "Novotny_Theodor_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408239}}, {"model": "metainfo.source", "pk": 7991, "fields": {"orig_filename": "Novotny_Vaclav_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172", "author": "", "orig_id": 1408240}}, {"model": "metainfo.source", "pk": 7992, "fields": {"orig_filename": "Novotny_Walter_1920_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172", "author": "", "orig_id": 1408241}}, {"model": "metainfo.source", "pk": 7993, "fields": {"orig_filename": "Novy_Franz_1900_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172f.", "author": "", "orig_id": 1408242}}, {"model": "metainfo.source", "pk": 7994, "fields": {"orig_filename": "Nowaczynski_Adolf_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 173", "author": "", "orig_id": 1408243}}, {"model": "metainfo.source", "pk": 7995, "fields": {"orig_filename": "Nowakowski_Jan_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 173f.", "author": "", "orig_id": 1408244}}, {"model": "metainfo.source", "pk": 7996, "fields": {"orig_filename": "Nowakowski_Waclaw_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 174", "author": "", "orig_id": 1408245}}, {"model": "metainfo.source", "pk": 7997, "fields": {"orig_filename": "Nowicki-Sila_Maksymilian_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175", "author": "", "orig_id": 1408313}}, {"model": "metainfo.source", "pk": 7998, "fields": {"orig_filename": "Nowicki_Franciszek-Henryk_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 174f.", "author": "", "orig_id": 1408312}}, {"model": "metainfo.source", "pk": 7999, "fields": {"orig_filename": "Nuchten_Josef_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175", "author": "", "orig_id": 1408314}}, {"model": "metainfo.source", "pk": 8000, "fields": {"orig_filename": "Neuner_Jakob-Anton_1806_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408843}}, {"model": "metainfo.source", "pk": 8001, "fields": {"orig_filename": "Neuner_Johann_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408844}}, {"model": "metainfo.source", "pk": 8002, "fields": {"orig_filename": "Neupauer_Franz-Xaver_1753_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408845}}, {"model": "metainfo.source", "pk": 8003, "fields": {"orig_filename": "Neurath_Anna_1877_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101f.", "author": "", "orig_id": 1408846}}, {"model": "metainfo.source", "pk": 8004, "fields": {"orig_filename": "Neurath_Otto_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 102f.", "author": "", "orig_id": 1408847}}, {"model": "metainfo.source", "pk": 8005, "fields": {"orig_filename": "Neurath_Wilhelm_1840_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 103", "author": "", "orig_id": 1408848}}, {"model": "metainfo.source", "pk": 8006, "fields": {"orig_filename": "Neureiter_Ferdinand_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 103f.", "author": "", "orig_id": 1408849}}, {"model": "metainfo.source", "pk": 8007, "fields": {"orig_filename": "Neureiter_Michael_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104", "author": "", "orig_id": 1408850}}, {"model": "metainfo.source", "pk": 8008, "fields": {"orig_filename": "Neureutter_Bohdan_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104", "author": "", "orig_id": 1408851}}, {"model": "metainfo.source", "pk": 8009, "fields": {"orig_filename": "Neusser_Edmund_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104f.", "author": "", "orig_id": 1408853}}, {"model": "metainfo.source", "pk": 8010, "fields": {"orig_filename": "Neusser_Karl_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105", "author": "", "orig_id": 1408854}}, {"model": "metainfo.source", "pk": 8011, "fields": {"orig_filename": "Neustaedter-Stuermer_Odo_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105f.", "author": "", "orig_id": 1408856}}, {"model": "metainfo.source", "pk": 8012, "fields": {"orig_filename": "Neustaedter_Josef_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105", "author": "", "orig_id": 1408855}}, {"model": "metainfo.source", "pk": 8013, "fields": {"orig_filename": "Neuwall_Albert_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 106", "author": "", "orig_id": 1408857}}, {"model": "metainfo.source", "pk": 8014, "fields": {"orig_filename": "Neuwirth-Neufels_Theodor_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408864}}, {"model": "metainfo.source", "pk": 8015, "fields": {"orig_filename": "Neuwirth_August_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 106f.", "author": "", "orig_id": 1408859}}, {"model": "metainfo.source", "pk": 8016, "fields": {"orig_filename": "Neuwirth_Josef_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 107", "author": "", "orig_id": 1408860}}, {"model": "metainfo.source", "pk": 8017, "fields": {"orig_filename": "Neuwirth_Josef_1855_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 107f.", "author": "", "orig_id": 1408861}}, {"model": "metainfo.source", "pk": 8018, "fields": {"orig_filename": "Neuwirth_Rosa_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408862}}, {"model": "metainfo.source", "pk": 8019, "fields": {"orig_filename": "Neuwirth_Viktor_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408863}}, {"model": "metainfo.source", "pk": 8020, "fields": {"orig_filename": "Nevinny_Josef_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108f.", "author": "", "orig_id": 1408865}}, {"model": "metainfo.source", "pk": 8021, "fields": {"orig_filename": "Nevole_Milan_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 109", "author": "", "orig_id": 1408930}}, {"model": "metainfo.source", "pk": 8022, "fields": {"orig_filename": "Nevy_Laszlo_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 109f.", "author": "", "orig_id": 1408931}}, {"model": "metainfo.source", "pk": 8023, "fields": {"orig_filename": "Newald_Johann_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408932}}, {"model": "metainfo.source", "pk": 8024, "fields": {"orig_filename": "Newald_Julius_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408933}}, {"model": "metainfo.source", "pk": 8025, "fields": {"orig_filename": "Neydhart_Josef_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 111", "author": "", "orig_id": 1412809}}, {"model": "metainfo.source", "pk": 8026, "fields": {"orig_filename": "Ney_David_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408934}}, {"model": "metainfo.source", "pk": 8027, "fields": {"orig_filename": "Ney_Ferenc_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110f.", "author": "", "orig_id": 1408935}}, {"model": "metainfo.source", "pk": 8028, "fields": {"orig_filename": "Nickerl_Franz-Anton_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 111f.", "author": "", "orig_id": 1408937}}, {"model": "metainfo.source", "pk": 8029, "fields": {"orig_filename": "Nickerl_Ottokar_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112", "author": "", "orig_id": 1408938}}, {"model": "metainfo.source", "pk": 8030, "fields": {"orig_filename": "Nickl-Oppavar_Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112", "author": "", "orig_id": 1408939}}, {"model": "metainfo.source", "pk": 8031, "fields": {"orig_filename": "Nicoara_Moise_1784_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112f.", "author": "", "orig_id": 1408940}}, {"model": "metainfo.source", "pk": 8032, "fields": {"orig_filename": "Nicolodi_Aurelio_1894_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 113f.", "author": "", "orig_id": 1408942}}, {"model": "metainfo.source", "pk": 8033, "fields": {"orig_filename": "Nicolussi_Paolaz-Simon_1852_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114", "author": "", "orig_id": 1408943}}, {"model": "metainfo.source", "pk": 8034, "fields": {"orig_filename": "Nida-Ruemelin_Wilhelm_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114", "author": "", "orig_id": 1408944}}, {"model": "metainfo.source", "pk": 8035, "fields": {"orig_filename": "Nidecki_Tomasz-Napoleon_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114f.", "author": "", "orig_id": 1408945}}, {"model": "metainfo.source", "pk": 8036, "fields": {"orig_filename": "Niebauer_Anton_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 115", "author": "", "orig_id": 1408946}}, {"model": "metainfo.source", "pk": 8037, "fields": {"orig_filename": "Niederegger_Alois_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 115f.", "author": "", "orig_id": 1408947}}, {"model": "metainfo.source", "pk": 8038, "fields": {"orig_filename": "Niedergesaess_Robert_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 116", "author": "", "orig_id": 1408948}}, {"model": "metainfo.source", "pk": 8039, "fields": {"orig_filename": "Niederist_Josef_1809_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 116f.", "author": "", "orig_id": 1408949}}, {"model": "metainfo.source", "pk": 8040, "fields": {"orig_filename": "Niederle_Jindrich_1840_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 117", "author": "", "orig_id": 1408950}}, {"model": "metainfo.source", "pk": 8041, "fields": {"orig_filename": "Niederle_Lubor_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 117f.", "author": "", "orig_id": 1408951}}, {"model": "metainfo.source", "pk": 8042, "fields": {"orig_filename": "Niedermaier_Franz-Xaver_1864_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408952}}, {"model": "metainfo.source", "pk": 8043, "fields": {"orig_filename": "Niedermaier_Matthias_1750_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408953}}, {"model": "metainfo.source", "pk": 8044, "fields": {"orig_filename": "Niedermann_Johann_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408954}}, {"model": "metainfo.source", "pk": 8045, "fields": {"orig_filename": "Niederwieser_Johann_1853_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409021}}, {"model": "metainfo.source", "pk": 8046, "fields": {"orig_filename": "Niedrist_Arsenius_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409022}}, {"model": "metainfo.source", "pk": 8047, "fields": {"orig_filename": "Niedrist_Karl-Anton_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409023}}, {"model": "metainfo.source", "pk": 8048, "fields": {"orig_filename": "Niedzialkowska_Wiktoria_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119f.", "author": "", "orig_id": 1409024}}, {"model": "metainfo.source", "pk": 8049, "fields": {"orig_filename": "Niedzialkowski_Janusz_1848_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409025}}, {"model": "metainfo.source", "pk": 8050, "fields": {"orig_filename": "Niedzielski_Julian_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409026}}, {"model": "metainfo.source", "pk": 8051, "fields": {"orig_filename": "Niedzielski_Stanislaw_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409027}}, {"model": "metainfo.source", "pk": 8052, "fields": {"orig_filename": "Niedzwiecki_Zygmunt_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120f.", "author": "", "orig_id": 1409028}}, {"model": "metainfo.source", "pk": 8053, "fields": {"orig_filename": "Niedzwiedzki_Julian_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121", "author": "", "orig_id": 1409029}}, {"model": "metainfo.source", "pk": 8054, "fields": {"orig_filename": "Niemann_Georg_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121", "author": "", "orig_id": 1409030}}, {"model": "metainfo.source", "pk": 8055, "fields": {"orig_filename": "Niembsch-Strehlenau_Nikolaus-Franz_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121f.", "author": "", "orig_id": 1409031}}, {"model": "metainfo.source", "pk": 8056, "fields": {"orig_filename": "Niementowski_Stefan_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 122f.", "author": "", "orig_id": 1409032}}, {"model": "metainfo.source", "pk": 8057, "fields": {"orig_filename": "Niemetschek_Franz_1766_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123", "author": "", "orig_id": 1409033}}, {"model": "metainfo.source", "pk": 8058, "fields": {"orig_filename": "Niemilowicz_Wladyslaw_1863_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123", "author": "", "orig_id": 1409034}}, {"model": "metainfo.source", "pk": 8059, "fields": {"orig_filename": "Niemirower_Jakub-Izaak_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123f.", "author": "", "orig_id": 1409035}}, {"model": "metainfo.source", "pk": 8060, "fields": {"orig_filename": "Niemtschik_Rudolf_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409036}}, {"model": "metainfo.source", "pk": 8061, "fields": {"orig_filename": "Nierhaus_Karl_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409037}}, {"model": "metainfo.source", "pk": 8062, "fields": {"orig_filename": "Niernsee_Rudolf_1810_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409038}}, {"model": "metainfo.source", "pk": 8063, "fields": {"orig_filename": "Niese_Johanna_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124f.", "author": "", "orig_id": 1409039}}, {"model": "metainfo.source", "pk": 8064, "fields": {"orig_filename": "Niesiolowski-Niesiolowice_Viktor_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 125f.", "author": "", "orig_id": 1409040}}, {"model": "metainfo.source", "pk": 8065, "fields": {"orig_filename": "Niessl-Mayendorf_Gustav_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 126f.", "author": "", "orig_id": 1409041}}, {"model": "metainfo.source", "pk": 8066, "fields": {"orig_filename": "Niessner_Moritz_1898_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409042}}, {"model": "metainfo.source", "pk": 8067, "fields": {"orig_filename": "Niewiadomski_Stanislaw_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409116}}, {"model": "metainfo.source", "pk": 8068, "fields": {"orig_filename": "Nigg_Josef_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409117}}, {"model": "metainfo.source", "pk": 8069, "fields": {"orig_filename": "Nigg_Marianne_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127f.", "author": "", "orig_id": 1409118}}, {"model": "metainfo.source", "pk": 8070, "fields": {"orig_filename": "Niglutsch_Josef_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409119}}, {"model": "metainfo.source", "pk": 8071, "fields": {"orig_filename": "Nigrin_Vela_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409120}}, {"model": "metainfo.source", "pk": 8072, "fields": {"orig_filename": "Nikisch_Arthur_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409121}}, {"model": "metainfo.source", "pk": 8073, "fields": {"orig_filename": "Nikitsch-Boulles-Estenau_Paul_1878_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409122}}, {"model": "metainfo.source", "pk": 8074, "fields": {"orig_filename": "Niklas_Valentin_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409123}}, {"model": "metainfo.source", "pk": 8075, "fields": {"orig_filename": "Nikodem_Arthur_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409124}}, {"model": "metainfo.source", "pk": 8076, "fields": {"orig_filename": "Nikolajevic_Djordje_1807_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130", "author": "", "orig_id": 1409126}}, {"model": "metainfo.source", "pk": 8077, "fields": {"orig_filename": "Nikola_Josef_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129f.", "author": "", "orig_id": 1409125}}, {"model": "metainfo.source", "pk": 8078, "fields": {"orig_filename": "Nikoletti_Angela_1905_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130", "author": "", "orig_id": 1409127}}, {"model": "metainfo.source", "pk": 8079, "fields": {"orig_filename": "Nikolics_Sandor_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409132}}, {"model": "metainfo.source", "pk": 8080, "fields": {"orig_filename": "Nikolic_Atanasije_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130f.", "author": "", "orig_id": 1409128}}, {"model": "metainfo.source", "pk": 8081, "fields": {"orig_filename": "Nikolic_Isidor_1805_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409129}}, {"model": "metainfo.source", "pk": 8082, "fields": {"orig_filename": "Nikolic_Sergije_1816_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409130}}, {"model": "metainfo.source", "pk": 8083, "fields": {"orig_filename": "Nikolic_Vladimir_1829_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409131}}, {"model": "metainfo.source", "pk": 8084, "fields": {"orig_filename": "Nikolowsky_Anton_1855_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131f.", "author": "", "orig_id": 1409133}}, {"model": "metainfo.source", "pk": 8085, "fields": {"orig_filename": "Nilles_Nikolaus_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 132", "author": "", "orig_id": 1409134}}, {"model": "metainfo.source", "pk": 8086, "fields": {"orig_filename": "Ninni_Alessandro-Pericle_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 132f.", "author": "", "orig_id": 1409135}}, {"model": "metainfo.source", "pk": 8087, "fields": {"orig_filename": "Nippel-Weyerheim_Franz-Xaver_1787_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133", "author": "", "orig_id": 1409136}}, {"model": "metainfo.source", "pk": 8088, "fields": {"orig_filename": "Nischler_Franz-Xaver_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133", "author": "", "orig_id": 1409137}}, {"model": "metainfo.source", "pk": 8089, "fields": {"orig_filename": "Nisius_Johann_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133f.", "author": "", "orig_id": 1409138}}, {"model": "metainfo.source", "pk": 8090, "fields": {"orig_filename": "Nissel_Franz_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 134", "author": "", "orig_id": 1409139}}, {"model": "metainfo.source", "pk": 8091, "fields": {"orig_filename": "Nissen_Konstanze_1762_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 134f.", "author": "", "orig_id": 1409207}}, {"model": "metainfo.source", "pk": 8092, "fields": {"orig_filename": "Nissl_Anton_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135", "author": "", "orig_id": 1409208}}, {"model": "metainfo.source", "pk": 8093, "fields": {"orig_filename": "Nissl_Franz_1771_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135", "author": "", "orig_id": 1409209}}, {"model": "metainfo.source", "pk": 8094, "fields": {"orig_filename": "Nissl_Franz_1852_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135f.", "author": "", "orig_id": 1409210}}, {"model": "metainfo.source", "pk": 8095, "fields": {"orig_filename": "Nitsche-Hohenplan_Friedrich_1835_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136", "author": "", "orig_id": 1409212}}, {"model": "metainfo.source", "pk": 8096, "fields": {"orig_filename": "Nitsche_Johannes-Josef-Friedrich_1759_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136", "author": "", "orig_id": 1409211}}, {"model": "metainfo.source", "pk": 8097, "fields": {"orig_filename": "Nitschner_Josef_1805_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136f.", "author": "", "orig_id": 1409213}}, {"model": "metainfo.source", "pk": 8098, "fields": {"orig_filename": "Nittel_Anton_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409214}}, {"model": "metainfo.source", "pk": 8099, "fields": {"orig_filename": "Nittner_Eduard_1885_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409215}}, {"model": "metainfo.source", "pk": 8100, "fields": {"orig_filename": "Nitzelberger_Moritz_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409216}}, {"model": "metainfo.source", "pk": 8101, "fields": {"orig_filename": "Nemes-Janoshalma_Marcell_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409828}}, {"model": "metainfo.source", "pk": 8102, "fields": {"orig_filename": "Nemethy-Nemetfalva_August_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409833}}, {"model": "metainfo.source", "pk": 8103, "fields": {"orig_filename": "Nemethy_Geza_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66", "author": "", "orig_id": 1409829}}, {"model": "metainfo.source", "pk": 8104, "fields": {"orig_filename": "Nemethy_Johann_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66", "author": "", "orig_id": 1409830}}, {"model": "metainfo.source", "pk": 8105, "fields": {"orig_filename": "Nemethy_Josef_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66f.", "author": "", "orig_id": 1409831}}, {"model": "metainfo.source", "pk": 8106, "fields": {"orig_filename": "Nemethy_Karoly_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409832}}, {"model": "metainfo.source", "pk": 8107, "fields": {"orig_filename": "Nemetschek-Foehren_Heinrich_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409834}}, {"model": "metainfo.source", "pk": 8108, "fields": {"orig_filename": "Nemetz_Andreas_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409835}}, {"model": "metainfo.source", "pk": 8109, "fields": {"orig_filename": "Nendtvich_Karoly-Miksa_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409836}}, {"model": "metainfo.source", "pk": 8110, "fields": {"orig_filename": "Nentwich_Josef_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409837}}, {"model": "metainfo.source", "pk": 8111, "fields": {"orig_filename": "Nentwich_Milo_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68f.", "author": "", "orig_id": 1409838}}, {"model": "metainfo.source", "pk": 8112, "fields": {"orig_filename": "Nepalleck_Wilhelm-Friedrich_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409839}}, {"model": "metainfo.source", "pk": 8113, "fields": {"orig_filename": "Nerat_Miha_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409911}}, {"model": "metainfo.source", "pk": 8114, "fields": {"orig_filename": "Neruda_Franz_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409912}}, {"model": "metainfo.source", "pk": 8115, "fields": {"orig_filename": "Neruda_Jan_1834_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69f.", "author": "", "orig_id": 1409913}}, {"model": "metainfo.source", "pk": 8116, "fields": {"orig_filename": "Neruda_Wilma_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 70", "author": "", "orig_id": 1409914}}, {"model": "metainfo.source", "pk": 8117, "fields": {"orig_filename": "Nerz_Ludwig_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 70f.", "author": "", "orig_id": 1409915}}, {"model": "metainfo.source", "pk": 8118, "fields": {"orig_filename": "Neseni_Robert_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71", "author": "", "orig_id": 1409916}}, {"model": "metainfo.source", "pk": 8119, "fields": {"orig_filename": "Nesper_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71", "author": "", "orig_id": 1409918}}, {"model": "metainfo.source", "pk": 8120, "fields": {"orig_filename": "Nesselthaler_Andreas_1746_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72", "author": "", "orig_id": 1409921}}, {"model": "metainfo.source", "pk": 8121, "fields": {"orig_filename": "Nessel_Eduard_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71f.", "author": "", "orig_id": 1409919}}, {"model": "metainfo.source", "pk": 8122, "fields": {"orig_filename": "Nessel_Franz_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72", "author": "", "orig_id": 1409920}}, {"model": "metainfo.source", "pk": 8123, "fields": {"orig_filename": "Nessler_Nikolaus_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72f.", "author": "", "orig_id": 1409922}}, {"model": "metainfo.source", "pk": 8124, "fields": {"orig_filename": "Nestlehner_Alphons_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409923}}, {"model": "metainfo.source", "pk": 8125, "fields": {"orig_filename": "Nestler_Johann-Karl_1783_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409924}}, {"model": "metainfo.source", "pk": 8126, "fields": {"orig_filename": "Nestorovic_Uros-Stefan_1765_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409925}}, {"model": "metainfo.source", "pk": 8127, "fields": {"orig_filename": "Nestroy_Johann_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73ff.", "author": "", "orig_id": 1409926}}, {"model": "metainfo.source", "pk": 8128, "fields": {"orig_filename": "Nesvera_Josef_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 75", "author": "", "orig_id": 1409927}}, {"model": "metainfo.source", "pk": 8129, "fields": {"orig_filename": "Netoliczka_Eugen_1825_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 75f.", "author": "", "orig_id": 1409928}}, {"model": "metainfo.source", "pk": 8130, "fields": {"orig_filename": "Netoliczka_Oskar-Franz-Josef_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76", "author": "", "orig_id": 1409929}}, {"model": "metainfo.source", "pk": 8131, "fields": {"orig_filename": "Netolitzky_August_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76", "author": "", "orig_id": 1409930}}, {"model": "metainfo.source", "pk": 8132, "fields": {"orig_filename": "Netolitzky_Friedrich_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76f.", "author": "", "orig_id": 1409931}}, {"model": "metainfo.source", "pk": 8133, "fields": {"orig_filename": "Netolitzky_Julius_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 77", "author": "", "orig_id": 1409932}}, {"model": "metainfo.source", "pk": 8134, "fields": {"orig_filename": "Netuschill_Josef_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 77", "author": "", "orig_id": 1409933}}, {"model": "metainfo.source", "pk": 8135, "fields": {"orig_filename": "Netzer_Johann-Josef_1808_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 78", "author": "", "orig_id": 1409934}}, {"model": "metainfo.source", "pk": 8136, "fields": {"orig_filename": "Neubauer_Adolf_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 78f.", "author": "", "orig_id": 1410003}}, {"model": "metainfo.source", "pk": 8137, "fields": {"orig_filename": "Neubauer_Gustav-Adolf_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79", "author": "", "orig_id": 1410005}}, {"model": "metainfo.source", "pk": 8138, "fields": {"orig_filename": "Neubauer_Johann_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79", "author": "", "orig_id": 1410006}}, {"model": "metainfo.source", "pk": 8139, "fields": {"orig_filename": "Neubauer_Josef_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79f.", "author": "", "orig_id": 1410007}}, {"model": "metainfo.source", "pk": 8140, "fields": {"orig_filename": "Neubauer_Maximilian-Hermann_1879_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80", "author": "", "orig_id": 1410008}}, {"model": "metainfo.source", "pk": 8141, "fields": {"orig_filename": "Neubauer_Rudolf-Vinzenz_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80f.", "author": "", "orig_id": 1410010}}, {"model": "metainfo.source", "pk": 8142, "fields": {"orig_filename": "Neubauer_Rudolf_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80", "author": "", "orig_id": 1410009}}, {"model": "metainfo.source", "pk": 8143, "fields": {"orig_filename": "Neuberger_Rudolf_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410013}}, {"model": "metainfo.source", "pk": 8144, "fields": {"orig_filename": "Neuber_August_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 81", "author": "", "orig_id": 1410011}}, {"model": "metainfo.source", "pk": 8145, "fields": {"orig_filename": "Neuber_Wilhelm_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 81f.", "author": "", "orig_id": 1410012}}, {"model": "metainfo.source", "pk": 8146, "fields": {"orig_filename": "Neuboeck_Peter_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410014}}, {"model": "metainfo.source", "pk": 8147, "fields": {"orig_filename": "Neuburger_Otto_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410015}}, {"model": "metainfo.source", "pk": 8148, "fields": {"orig_filename": "Neuda_Max_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82f.", "author": "", "orig_id": 1410016}}, {"model": "metainfo.source", "pk": 8149, "fields": {"orig_filename": "Neudeck_Andreas_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410017}}, {"model": "metainfo.source", "pk": 8150, "fields": {"orig_filename": "Neudoerfer_Ignaz-Josef_1825_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410018}}, {"model": "metainfo.source", "pk": 8151, "fields": {"orig_filename": "Neuerer_Gottfried_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410019}}, {"model": "metainfo.source", "pk": 8152, "fields": {"orig_filename": "Neufeld_Eugen_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83f.", "author": "", "orig_id": 1410020}}, {"model": "metainfo.source", "pk": 8153, "fields": {"orig_filename": "Neugart_Trudpert_1742_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84", "author": "", "orig_id": 1410021}}, {"model": "metainfo.source", "pk": 8154, "fields": {"orig_filename": "Neugebauer-Aszod_Laszlo_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84f.", "author": "", "orig_id": 1410023}}, {"model": "metainfo.source", "pk": 8155, "fields": {"orig_filename": "Neugebauer_Josef_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84", "author": "", "orig_id": 1410022}}, {"model": "metainfo.source", "pk": 8156, "fields": {"orig_filename": "Neugeboren_Daniel-Georg_1759_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1410024}}, {"model": "metainfo.source", "pk": 8157, "fields": {"orig_filename": "Neugeboren_Johann-Ludwig_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1410025}}, {"model": "metainfo.source", "pk": 8158, "fields": {"orig_filename": "Neugeboren_Karl_1789_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1408656}}, {"model": "metainfo.source", "pk": 8159, "fields": {"orig_filename": "Neuhauser_Franz_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86", "author": "", "orig_id": 1408659}}, {"model": "metainfo.source", "pk": 8160, "fields": {"orig_filename": "Neuhofer_Franz-Karl_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86", "author": "", "orig_id": 1408660}}, {"model": "metainfo.source", "pk": 8161, "fields": {"orig_filename": "Neuhold-Neuholdau_Johann_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86f.", "author": "", "orig_id": 1408661}}, {"model": "metainfo.source", "pk": 8162, "fields": {"orig_filename": "Neukomm_Sigismund_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87", "author": "", "orig_id": 1408662}}, {"model": "metainfo.source", "pk": 8163, "fields": {"orig_filename": "Neuling_Vinzenz_1795_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87", "author": "", "orig_id": 1408663}}, {"model": "metainfo.source", "pk": 8164, "fields": {"orig_filename": "Neumaier_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87f.", "author": "", "orig_id": 1408664}}, {"model": "metainfo.source", "pk": 8165, "fields": {"orig_filename": "Neumaier_Melchior_1845_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 88", "author": "", "orig_id": 1408665}}, {"model": "metainfo.source", "pk": 8166, "fields": {"orig_filename": "Neumaier_Rudolf_1887_1977.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454874}}, {"model": "metainfo.source", "pk": 8167, "fields": {"orig_filename": "Neumaier_Vinzenz_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 88f.", "author": "", "orig_id": 1408666}}, {"model": "metainfo.source", "pk": 8168, "fields": {"orig_filename": "Neumann-Ditterswaldt_Adolf_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 96", "author": "", "orig_id": 1408763}}, {"model": "metainfo.source", "pk": 8169, "fields": {"orig_filename": "Neumann-Heilwart_Isidor_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 96f.", "author": "", "orig_id": 1408764}}, {"model": "metainfo.source", "pk": 8170, "fields": {"orig_filename": "Neumann-Heilwart_Paul_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97", "author": "", "orig_id": 1408765}}, {"model": "metainfo.source", "pk": 8171, "fields": {"orig_filename": "Neumann-Hethars_Heinrich_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97", "author": "", "orig_id": 1408766}}, {"model": "metainfo.source", "pk": 8172, "fields": {"orig_filename": "Neumann-Spallart_Anatol_1872_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97f.", "author": "", "orig_id": 1408768}}, {"model": "metainfo.source", "pk": 8173, "fields": {"orig_filename": "Neumann-Spallart_Franz-Xaver_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 98", "author": "", "orig_id": 1408769}}, {"model": "metainfo.source", "pk": 8174, "fields": {"orig_filename": "Neumann-Spallart_Josef-Franz_1797_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 98f.", "author": "", "orig_id": 1408770}}, {"model": "metainfo.source", "pk": 8175, "fields": {"orig_filename": "Neumann-Spallart_Julius_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 99", "author": "", "orig_id": 1408771}}, {"model": "metainfo.source", "pk": 8176, "fields": {"orig_filename": "Neumann_Alexander_1856_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89", "author": "", "orig_id": 1408667}}, {"model": "metainfo.source", "pk": 8177, "fields": {"orig_filename": "Neumann_Alois_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89", "author": "", "orig_id": 1408668}}, {"model": "metainfo.source", "pk": 8178, "fields": {"orig_filename": "Neumann_Angelo_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89f.", "author": "", "orig_id": 1408669}}, {"model": "metainfo.source", "pk": 8179, "fields": {"orig_filename": "Neumann_Anna-Maria_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408670}}, {"model": "metainfo.source", "pk": 8180, "fields": {"orig_filename": "Neumann_August_1879_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408671}}, {"model": "metainfo.source", "pk": 8181, "fields": {"orig_filename": "Neumann_Dragutin_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408672}}, {"model": "metainfo.source", "pk": 8182, "fields": {"orig_filename": "Neumann_Frantisek_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408673}}, {"model": "metainfo.source", "pk": 8183, "fields": {"orig_filename": "Neumann_Franz_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90f.", "author": "", "orig_id": 1408674}}, {"model": "metainfo.source", "pk": 8184, "fields": {"orig_filename": "Neumann_Franz_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91", "author": "", "orig_id": 1408675}}, {"model": "metainfo.source", "pk": 8185, "fields": {"orig_filename": "Neumann_Johann-Christian_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91", "author": "", "orig_id": 1408676}}, {"model": "metainfo.source", "pk": 8186, "fields": {"orig_filename": "Neumann_Johann-Philipp_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91f.", "author": "", "orig_id": 1408677}}, {"model": "metainfo.source", "pk": 8187, "fields": {"orig_filename": "Neumann_Johannes_1811_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408678}}, {"model": "metainfo.source", "pk": 8188, "fields": {"orig_filename": "Neumann_Josef_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408679}}, {"model": "metainfo.source", "pk": 8189, "fields": {"orig_filename": "Neumann_Josef_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408680}}, {"model": "metainfo.source", "pk": 8190, "fields": {"orig_filename": "Neumann_Julius_1827_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92f.", "author": "", "orig_id": 1408681}}, {"model": "metainfo.source", "pk": 8191, "fields": {"orig_filename": "Neumann_Julius_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408754}}, {"model": "metainfo.source", "pk": 8192, "fields": {"orig_filename": "Neumann_Karl-August_1771_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408755}}, {"model": "metainfo.source", "pk": 8193, "fields": {"orig_filename": "Neumann_Karl-Eugen_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408756}}, {"model": "metainfo.source", "pk": 8194, "fields": {"orig_filename": "Neumann_Karoly_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93f.", "author": "", "orig_id": 1408757}}, {"model": "metainfo.source", "pk": 8195, "fields": {"orig_filename": "Neumann_Leopold_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 94", "author": "", "orig_id": 1408760}}, {"model": "metainfo.source", "pk": 8196, "fields": {"orig_filename": "Neumann_Stanislav_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 94f.", "author": "", "orig_id": 1408758}}, {"model": "metainfo.source", "pk": 8197, "fields": {"orig_filename": "Neumann_Wenzel_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95", "author": "", "orig_id": 1408759}}, {"model": "metainfo.source", "pk": 8198, "fields": {"orig_filename": "Neumann_Wilhelm-Anton_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95f.", "author": "", "orig_id": 1408762}}, {"model": "metainfo.source", "pk": 8199, "fields": {"orig_filename": "Neumann_Wilhelm_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95", "author": "", "orig_id": 1408761}}, {"model": "metainfo.source", "pk": 8200, "fields": {"orig_filename": "Neumark_David_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 99f.", "author": "", "orig_id": 1408772}}, {"model": "metainfo.source", "pk": 8201, "fields": {"orig_filename": "Neumueller_Anton_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 100", "author": "", "orig_id": 1408773}}, {"model": "metainfo.source", "pk": 8202, "fields": {"orig_filename": "Neuner_Christoph_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 100f.", "author": "", "orig_id": 1408842}}, {"model": "metainfo.source", "pk": 8203, "fields": {"orig_filename": "Nagy_Paul_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410765}}, {"model": "metainfo.source", "pk": 8204, "fields": {"orig_filename": "Nagy_Peter_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410766}}, {"model": "metainfo.source", "pk": 8205, "fields": {"orig_filename": "Nagy_Samuel_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410767}}, {"model": "metainfo.source", "pk": 8206, "fields": {"orig_filename": "Nagy_Zsigmond_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410768}}, {"model": "metainfo.source", "pk": 8207, "fields": {"orig_filename": "Najmajer_Marie_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30f.", "author": "", "orig_id": 1410854}}, {"model": "metainfo.source", "pk": 8208, "fields": {"orig_filename": "Nakic_Filip-Franjo_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410855}}, {"model": "metainfo.source", "pk": 8209, "fields": {"orig_filename": "Nakovic_Mihovil_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410857}}, {"model": "metainfo.source", "pk": 8210, "fields": {"orig_filename": "Nako_Antonije_1817_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410856}}, {"model": "metainfo.source", "pk": 8211, "fields": {"orig_filename": "Namias_Giacinto_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31f.", "author": "", "orig_id": 1410858}}, {"model": "metainfo.source", "pk": 8212, "fields": {"orig_filename": "Napadiewicz-Wieckowski_Edward_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32", "author": "", "orig_id": 1410859}}, {"model": "metainfo.source", "pk": 8213, "fields": {"orig_filename": "Napadiewicz-Wieckowski_Mikolaj_1779_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32", "author": "", "orig_id": 1410932}}, {"model": "metainfo.source", "pk": 8214, "fields": {"orig_filename": "Napotnik_Michael_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32f.", "author": "", "orig_id": 1410933}}, {"model": "metainfo.source", "pk": 8215, "fields": {"orig_filename": "Napp_Cyrill_1792_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33", "author": "", "orig_id": 1410934}}, {"model": "metainfo.source", "pk": 8216, "fields": {"orig_filename": "Napravil_Friedrich_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33", "author": "", "orig_id": 1410935}}, {"model": "metainfo.source", "pk": 8217, "fields": {"orig_filename": "Napravnik_Eduard_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33f.", "author": "", "orig_id": 1410936}}, {"model": "metainfo.source", "pk": 8218, "fields": {"orig_filename": "Naprstek_Vojta_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34", "author": "", "orig_id": 1410937}}, {"model": "metainfo.source", "pk": 8219, "fields": {"orig_filename": "Narajewski_Stanislaw_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34", "author": "", "orig_id": 1410938}}, {"model": "metainfo.source", "pk": 8220, "fields": {"orig_filename": "Narath_Albert_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34f.", "author": "", "orig_id": 1410939}}, {"model": "metainfo.source", "pk": 8221, "fields": {"orig_filename": "Nardin_Julij_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35", "author": "", "orig_id": 1410942}}, {"model": "metainfo.source", "pk": 8222, "fields": {"orig_filename": "Nardi_Francesco_1808_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35", "author": "", "orig_id": 1410941}}, {"model": "metainfo.source", "pk": 8223, "fields": {"orig_filename": "Nardo_Giandomenico_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35f.", "author": "", "orig_id": 1410943}}, {"model": "metainfo.source", "pk": 8224, "fields": {"orig_filename": "Naschberger_Andreas_1843_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36", "author": "", "orig_id": 1410945}}, {"model": "metainfo.source", "pk": 8225, "fields": {"orig_filename": "Nascher_Eduard_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36", "author": "", "orig_id": 1410946}}, {"model": "metainfo.source", "pk": 8226, "fields": {"orig_filename": "Naske_Alois_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36f.", "author": "", "orig_id": 1410947}}, {"model": "metainfo.source", "pk": 8227, "fields": {"orig_filename": "Naske_Emilie_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410948}}, {"model": "metainfo.source", "pk": 8228, "fields": {"orig_filename": "Naswetter_Emil_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410949}}, {"model": "metainfo.source", "pk": 8229, "fields": {"orig_filename": "Natanson_Wladyslaw_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410950}}, {"model": "metainfo.source", "pk": 8230, "fields": {"orig_filename": "Nathan_Arturo_1891_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38", "author": "", "orig_id": 1410951}}, {"model": "metainfo.source", "pk": 8231, "fields": {"orig_filename": "Natonek_Josef_1813_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38", "author": "", "orig_id": 1410952}}, {"model": "metainfo.source", "pk": 8232, "fields": {"orig_filename": "Natorp_Maria-Anna_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38f.", "author": "", "orig_id": 1410953}}, {"model": "metainfo.source", "pk": 8233, "fields": {"orig_filename": "Natosevic_Djordje_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39", "author": "", "orig_id": 1409540}}, {"model": "metainfo.source", "pk": 8234, "fields": {"orig_filename": "Natterer_Johann-August_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 40f.", "author": "", "orig_id": 1409543}}, {"model": "metainfo.source", "pk": 8235, "fields": {"orig_filename": "Natterer_Johann_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39f.", "author": "", "orig_id": 1409542}}, {"model": "metainfo.source", "pk": 8236, "fields": {"orig_filename": "Natterer_Josef_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41", "author": "", "orig_id": 1409544}}, {"model": "metainfo.source", "pk": 8237, "fields": {"orig_filename": "Natterer_Konrad_1860_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41", "author": "", "orig_id": 1409545}}, {"model": "metainfo.source", "pk": 8238, "fields": {"orig_filename": "Natter_Heinrich_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39", "author": "", "orig_id": 1409541}}, {"model": "metainfo.source", "pk": 8239, "fields": {"orig_filename": "Natzler_Leopold_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41f.", "author": "", "orig_id": 1409546}}, {"model": "metainfo.source", "pk": 8240, "fields": {"orig_filename": "Natzler_Siegmund_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 42", "author": "", "orig_id": 1409547}}, {"model": "metainfo.source", "pk": 8241, "fields": {"orig_filename": "Naufock_Albert_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 42f.", "author": "", "orig_id": 1409548}}, {"model": "metainfo.source", "pk": 8242, "fields": {"orig_filename": "Nauheimer_Stefanie_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 43", "author": "", "orig_id": 1409549}}, {"model": "metainfo.source", "pk": 8243, "fields": {"orig_filename": "Navarini_Octavius_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44f.", "author": "", "orig_id": 1409554}}, {"model": "metainfo.source", "pk": 8244, "fields": {"orig_filename": "Nava_Alexander_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 43f.", "author": "", "orig_id": 1409550}}, {"model": "metainfo.source", "pk": 8245, "fields": {"orig_filename": "Nava_Antonio-Maria_1755_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409551}}, {"model": "metainfo.source", "pk": 8246, "fields": {"orig_filename": "Nava_Davide_1813_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409552}}, {"model": "metainfo.source", "pk": 8247, "fields": {"orig_filename": "Nava_Gabrio-Maria_1758_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409553}}, {"model": "metainfo.source", "pk": 8248, "fields": {"orig_filename": "Nave_Johann_1831_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45", "author": "", "orig_id": 1409555}}, {"model": "metainfo.source", "pk": 8249, "fields": {"orig_filename": "Navratil-Szalok_Imre_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47f.", "author": "", "orig_id": 1409563}}, {"model": "metainfo.source", "pk": 8250, "fields": {"orig_filename": "Navratil_Ivan_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45f.", "author": "", "orig_id": 1409557}}, {"model": "metainfo.source", "pk": 8251, "fields": {"orig_filename": "Navratil_Johann_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 46", "author": "", "orig_id": 1409558}}, {"model": "metainfo.source", "pk": 8252, "fields": {"orig_filename": "Navratil_Josef_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 46f.", "author": "", "orig_id": 1409559}}, {"model": "metainfo.source", "pk": 8253, "fields": {"orig_filename": "Navratil_Karel_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409560}}, {"model": "metainfo.source", "pk": 8254, "fields": {"orig_filename": "Navratil_Karl_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409561}}, {"model": "metainfo.source", "pk": 8255, "fields": {"orig_filename": "Navratil_Michal_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409562}}, {"model": "metainfo.source", "pk": 8256, "fields": {"orig_filename": "Navrat_Vinzenz_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45", "author": "", "orig_id": 1409556}}, {"model": "metainfo.source", "pk": 8257, "fields": {"orig_filename": "Navrockyj_Volodymyr_1847_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48", "author": "", "orig_id": 1409564}}, {"model": "metainfo.source", "pk": 8258, "fields": {"orig_filename": "Nawiasky_Eduard_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48", "author": "", "orig_id": 1409634}}, {"model": "metainfo.source", "pk": 8259, "fields": {"orig_filename": "Nazari_Giovan-Battista_1791_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48f.", "author": "", "orig_id": 1409635}}, {"model": "metainfo.source", "pk": 8260, "fields": {"orig_filename": "Nebehay_Gustav_1881_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49", "author": "", "orig_id": 1409636}}, {"model": "metainfo.source", "pk": 8261, "fields": {"orig_filename": "Nebesky_Jan_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49", "author": "", "orig_id": 1409637}}, {"model": "metainfo.source", "pk": 8262, "fields": {"orig_filename": "Nebesky_Vaclav-Bolemir_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49f.", "author": "", "orig_id": 1409638}}, {"model": "metainfo.source", "pk": 8263, "fields": {"orig_filename": "Nebuschka_Franz-Josef_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409639}}, {"model": "metainfo.source", "pk": 8264, "fields": {"orig_filename": "Necasek_Frantisek_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409640}}, {"model": "metainfo.source", "pk": 8265, "fields": {"orig_filename": "Nechansky_Arnold_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409641}}, {"model": "metainfo.source", "pk": 8266, "fields": {"orig_filename": "Necker_Moritz_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50f.", "author": "", "orig_id": 1409642}}, {"model": "metainfo.source", "pk": 8267, "fields": {"orig_filename": "Neckheim_Hans_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51", "author": "", "orig_id": 1409643}}, {"model": "metainfo.source", "pk": 8268, "fields": {"orig_filename": "Necsey_Istvan_1870_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51", "author": "", "orig_id": 1409644}}, {"model": "metainfo.source", "pk": 8269, "fields": {"orig_filename": "Nedbal_Oskar_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51f.", "author": "", "orig_id": 1409645}}, {"model": "metainfo.source", "pk": 8270, "fields": {"orig_filename": "Nedeljko_Fran_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52", "author": "", "orig_id": 1409646}}, {"model": "metainfo.source", "pk": 8271, "fields": {"orig_filename": "Nedelkowitsch_Ernst_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52", "author": "", "orig_id": 1409647}}, {"model": "metainfo.source", "pk": 8272, "fields": {"orig_filename": "Neder_Emil_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52f.", "author": "", "orig_id": 1409648}}, {"model": "metainfo.source", "pk": 8273, "fields": {"orig_filename": "Neder_Johann-Michael_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53", "author": "", "orig_id": 1409649}}, {"model": "metainfo.source", "pk": 8274, "fields": {"orig_filename": "Nedic_Martin_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53", "author": "", "orig_id": 1409650}}, {"model": "metainfo.source", "pk": 8275, "fields": {"orig_filename": "Nedoma_Jan_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53f.", "author": "", "orig_id": 1409651}}, {"model": "metainfo.source", "pk": 8276, "fields": {"orig_filename": "Nedopil_Leopold_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409652}}, {"model": "metainfo.source", "pk": 8277, "fields": {"orig_filename": "Nedopil_Mauric_1847_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409653}}, {"model": "metainfo.source", "pk": 8278, "fields": {"orig_filename": "Nedved_Anton_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409654}}, {"model": "metainfo.source", "pk": 8279, "fields": {"orig_filename": "Nedved_Milos_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54f.", "author": "", "orig_id": 1409724}}, {"model": "metainfo.source", "pk": 8280, "fields": {"orig_filename": "Neeb_Johann-Philipp_1806_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 55", "author": "", "orig_id": 1409725}}, {"model": "metainfo.source", "pk": 8281, "fields": {"orig_filename": "Neefe_Hermann-Josef_1790_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 55f.", "author": "", "orig_id": 1409726}}, {"model": "metainfo.source", "pk": 8282, "fields": {"orig_filename": "Neelmeyer_Ludwig_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1409727}}, {"model": "metainfo.source", "pk": 8283, "fields": {"orig_filename": "Neffat_Anton_1893_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1409728}}, {"model": "metainfo.source", "pk": 8284, "fields": {"orig_filename": "Neffzern_Karl_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1412808}}, {"model": "metainfo.source", "pk": 8285, "fields": {"orig_filename": "Negrelli-Moldelbe_Alois_1799_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56f.", "author": "", "orig_id": 1409729}}, {"model": "metainfo.source", "pk": 8286, "fields": {"orig_filename": "Negri_Cristoforo_1808_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 57f.", "author": "", "orig_id": 1409730}}, {"model": "metainfo.source", "pk": 8287, "fields": {"orig_filename": "Negri_Gaetano_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 58f.", "author": "", "orig_id": 1409731}}, {"model": "metainfo.source", "pk": 8288, "fields": {"orig_filename": "Negri_Giambattista_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59", "author": "", "orig_id": 1409732}}, {"model": "metainfo.source", "pk": 8289, "fields": {"orig_filename": "Negyesy_Laszlo_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59", "author": "", "orig_id": 1409733}}, {"model": "metainfo.source", "pk": 8290, "fields": {"orig_filename": "Nehajev_Milutin_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59f.", "author": "", "orig_id": 1409734}}, {"model": "metainfo.source", "pk": 8291, "fields": {"orig_filename": "Nehr_Alexander_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60", "author": "", "orig_id": 1409735}}, {"model": "metainfo.source", "pk": 8292, "fields": {"orig_filename": "Nehr_Johann-Josef_1757_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60", "author": "", "orig_id": 1409736}}, {"model": "metainfo.source", "pk": 8293, "fields": {"orig_filename": "Neidhart_Alois_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60f.", "author": "", "orig_id": 1409737}}, {"model": "metainfo.source", "pk": 8294, "fields": {"orig_filename": "Neidl_Franz_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61", "author": "", "orig_id": 1409746}}, {"model": "metainfo.source", "pk": 8295, "fields": {"orig_filename": "Neidl_Johann-Josef_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61", "author": "", "orig_id": 1409747}}, {"model": "metainfo.source", "pk": 8296, "fields": {"orig_filename": "Neilreich_August_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61f.", "author": "", "orig_id": 1409748}}, {"model": "metainfo.source", "pk": 8297, "fields": {"orig_filename": "Nejebse_Johann_1809_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409818}}, {"model": "metainfo.source", "pk": 8298, "fields": {"orig_filename": "Nejedly_Jan_1776_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409819}}, {"model": "metainfo.source", "pk": 8299, "fields": {"orig_filename": "Nejedly_Vojtech_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409820}}, {"model": "metainfo.source", "pk": 8300, "fields": {"orig_filename": "Nell-Nellenburg-Damenacker_Franz-Anton-Maria_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62f.", "author": "", "orig_id": 1409821}}, {"model": "metainfo.source", "pk": 8301, "fields": {"orig_filename": "Nemcic-Gostovinski_Antun_1816_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 63", "author": "", "orig_id": 1409822}}, {"model": "metainfo.source", "pk": 8302, "fields": {"orig_filename": "Nemcova_Bozena_1820_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 63f.", "author": "", "orig_id": 1409823}}, {"model": "metainfo.source", "pk": 8303, "fields": {"orig_filename": "Nemecek_Johann_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 64", "author": "", "orig_id": 1409824}}, {"model": "metainfo.source", "pk": 8304, "fields": {"orig_filename": "Nemecic-Bihacgrad_Josef_1832_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 64f.", "author": "", "orig_id": 1409825}}, {"model": "metainfo.source", "pk": 8305, "fields": {"orig_filename": "Nemecky_Daniel-Mathias_1762_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409826}}, {"model": "metainfo.source", "pk": 8306, "fields": {"orig_filename": "Nemenyi_Imre_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409827}}, {"model": "metainfo.source", "pk": 8307, "fields": {"orig_filename": "Munih_Andrej_1875_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413743}}, {"model": "metainfo.source", "pk": 8308, "fields": {"orig_filename": "Munkacsi_Albert_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441f.", "author": "", "orig_id": 1413745}}, {"model": "metainfo.source", "pk": 8309, "fields": {"orig_filename": "Munkacsi_Bernat_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 442", "author": "", "orig_id": 1413746}}, {"model": "metainfo.source", "pk": 8310, "fields": {"orig_filename": "Munkacsy_Mihaly_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 442f.", "author": "", "orig_id": 1413747}}, {"model": "metainfo.source", "pk": 8311, "fields": {"orig_filename": "Munk_Adolf_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413744}}, {"model": "metainfo.source", "pk": 8312, "fields": {"orig_filename": "Munsch_Josef_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 443", "author": "", "orig_id": 1413748}}, {"model": "metainfo.source", "pk": 8313, "fields": {"orig_filename": "Munsch_Leopold_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 443f.", "author": "", "orig_id": 1413820}}, {"model": "metainfo.source", "pk": 8314, "fields": {"orig_filename": "Munyay_Antal_1787_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413821}}, {"model": "metainfo.source", "pk": 8315, "fields": {"orig_filename": "Muratti_Giusto_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413823}}, {"model": "metainfo.source", "pk": 8316, "fields": {"orig_filename": "Muratti_Spartaco_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444f.", "author": "", "orig_id": 1413824}}, {"model": "metainfo.source", "pk": 8317, "fields": {"orig_filename": "Murat_Marko_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413822}}, {"model": "metainfo.source", "pk": 8318, "fields": {"orig_filename": "Muresan_Andrei_1816_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413825}}, {"model": "metainfo.source", "pk": 8319, "fields": {"orig_filename": "Muresianu_Iacob_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413826}}, {"model": "metainfo.source", "pk": 8320, "fields": {"orig_filename": "Murgas_Josef_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413827}}, {"model": "metainfo.source", "pk": 8321, "fields": {"orig_filename": "Murgu_Eftimie_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445f.", "author": "", "orig_id": 1413828}}, {"model": "metainfo.source", "pk": 8322, "fields": {"orig_filename": "Murko_Anton_1809_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446", "author": "", "orig_id": 1413829}}, {"model": "metainfo.source", "pk": 8323, "fields": {"orig_filename": "Murnik_Ivan_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446f.", "author": "", "orig_id": 1413831}}, {"model": "metainfo.source", "pk": 8324, "fields": {"orig_filename": "Murnik_Othmar_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447", "author": "", "orig_id": 1413832}}, {"model": "metainfo.source", "pk": 8325, "fields": {"orig_filename": "Murnik_Rado_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447", "author": "", "orig_id": 1413833}}, {"model": "metainfo.source", "pk": 8326, "fields": {"orig_filename": "Murn_Josip_1879_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446", "author": "", "orig_id": 1413830}}, {"model": "metainfo.source", "pk": 8327, "fields": {"orig_filename": "Murr_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447f.", "author": "", "orig_id": 1413834}}, {"model": "metainfo.source", "pk": 8328, "fields": {"orig_filename": "Mursec_Jozef_1807_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 448", "author": "", "orig_id": 1413835}}, {"model": "metainfo.source", "pk": 8329, "fields": {"orig_filename": "Musger_August_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 448", "author": "", "orig_id": 1413836}}, {"model": "metainfo.source", "pk": 8330, "fields": {"orig_filename": "Musicki_Lukijan_1777_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1", "author": "", "orig_id": 1410484}}, {"model": "metainfo.source", "pk": 8331, "fields": {"orig_filename": "Music_August_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1", "author": "", "orig_id": 1410483}}, {"model": "metainfo.source", "pk": 8332, "fields": {"orig_filename": "Musil_Alois_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1f.", "author": "", "orig_id": 1410485}}, {"model": "metainfo.source", "pk": 8333, "fields": {"orig_filename": "Musil_Robert_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 2f.", "author": "", "orig_id": 1410559}}, {"model": "metainfo.source", "pk": 8334, "fields": {"orig_filename": "Mussafia_Adolf_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 3f.", "author": "", "orig_id": 1410560}}, {"model": "metainfo.source", "pk": 8335, "fields": {"orig_filename": "Mussoni_Cajetan_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 4", "author": "", "orig_id": 1410561}}, {"model": "metainfo.source", "pk": 8336, "fields": {"orig_filename": "Musulin-Gomirje_Alexander_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 4f.", "author": "", "orig_id": 1410562}}, {"model": "metainfo.source", "pk": 8337, "fields": {"orig_filename": "Muszynski-Arenhort_Oskar_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5", "author": "", "orig_id": 1410563}}, {"model": "metainfo.source", "pk": 8338, "fields": {"orig_filename": "Muther_Ludwig_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410566}}, {"model": "metainfo.source", "pk": 8339, "fields": {"orig_filename": "Muth_Peter_1784_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5", "author": "", "orig_id": 1410564}}, {"model": "metainfo.source", "pk": 8340, "fields": {"orig_filename": "Muth_Richard_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5f.", "author": "", "orig_id": 1410565}}, {"model": "metainfo.source", "pk": 8341, "fields": {"orig_filename": "Mutinelli_Giambattista_1747_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410567}}, {"model": "metainfo.source", "pk": 8342, "fields": {"orig_filename": "Mutschlechner_Anton_1795_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410568}}, {"model": "metainfo.source", "pk": 8343, "fields": {"orig_filename": "Mutschlechner_Josef_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6f.", "author": "", "orig_id": 1410569}}, {"model": "metainfo.source", "pk": 8344, "fields": {"orig_filename": "Muzakova_Johanka_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 7", "author": "", "orig_id": 1410570}}, {"model": "metainfo.source", "pk": 8345, "fields": {"orig_filename": "Muzik_Augustin-Eugen_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 7f.", "author": "", "orig_id": 1410571}}, {"model": "metainfo.source", "pk": 8346, "fields": {"orig_filename": "Mycielski_Franciszek_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 8", "author": "", "orig_id": 1410572}}, {"model": "metainfo.source", "pk": 8347, "fields": {"orig_filename": "Mycielski_Jerzy_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 8", "author": "", "orig_id": 1410573}}, {"model": "metainfo.source", "pk": 8348, "fields": {"orig_filename": "Myrbach-Rheinfeld_Felician_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9", "author": "", "orig_id": 1410574}}, {"model": "metainfo.source", "pk": 8349, "fields": {"orig_filename": "Myrbach-Rheinfeld_Franz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9", "author": "", "orig_id": 1410575}}, {"model": "metainfo.source", "pk": 8350, "fields": {"orig_filename": "Myrdacz_Gustav_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9f.", "author": "", "orig_id": 1410576}}, {"model": "metainfo.source", "pk": 8351, "fields": {"orig_filename": "Myrdacz_Paul_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10", "author": "", "orig_id": 1410577}}, {"model": "metainfo.source", "pk": 8352, "fields": {"orig_filename": "Myskovszky_Viktor_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10", "author": "", "orig_id": 1410578}}, {"model": "metainfo.source", "pk": 8353, "fields": {"orig_filename": "Myslbek_Josef-Vaclav_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10f.", "author": "", "orig_id": 1410579}}, {"model": "metainfo.source", "pk": 8354, "fields": {"orig_filename": "Myslbek_Karel_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 11f.", "author": "", "orig_id": 1410580}}, {"model": "metainfo.source", "pk": 8355, "fields": {"orig_filename": "Mytteis_Viktor_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 12", "author": "", "orig_id": 1410650}}, {"model": "metainfo.source", "pk": 8356, "fields": {"orig_filename": "Naaff_Anton_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 12f.", "author": "", "orig_id": 1410651}}, {"model": "metainfo.source", "pk": 8357, "fields": {"orig_filename": "Nabergoj_Ivan_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 13", "author": "", "orig_id": 1410652}}, {"model": "metainfo.source", "pk": 8358, "fields": {"orig_filename": "Nabielak_Ludwik_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 13f.", "author": "", "orig_id": 1410653}}, {"model": "metainfo.source", "pk": 8359, "fields": {"orig_filename": "Naccari_Fortunato-Luigi_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14", "author": "", "orig_id": 1410654}}, {"model": "metainfo.source", "pk": 8360, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Ferenc_1801_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14", "author": "", "orig_id": 1410655}}, {"model": "metainfo.source", "pk": 8361, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Lipot_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14f.", "author": "", "orig_id": 1410656}}, {"model": "metainfo.source", "pk": 8362, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Mihaly_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410657}}, {"model": "metainfo.source", "pk": 8363, "fields": {"orig_filename": "Nadaskay_Bela_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410658}}, {"model": "metainfo.source", "pk": 8364, "fields": {"orig_filename": "Nadaskay_Lajos_1816_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410659}}, {"model": "metainfo.source", "pk": 8365, "fields": {"orig_filename": "Nadherny_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15f.", "author": "", "orig_id": 1410660}}, {"model": "metainfo.source", "pk": 8366, "fields": {"orig_filename": "Nadherny_Ignaz_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410661}}, {"model": "metainfo.source", "pk": 8367, "fields": {"orig_filename": "Nadherny_Johann_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410662}}, {"model": "metainfo.source", "pk": 8368, "fields": {"orig_filename": "Nadler_Gustav-Adolf_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410663}}, {"model": "metainfo.source", "pk": 8369, "fields": {"orig_filename": "Nadler_Johann-Friedrich-Ernst_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16f.", "author": "", "orig_id": 1410664}}, {"model": "metainfo.source", "pk": 8370, "fields": {"orig_filename": "Nadler_Robert_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17", "author": "", "orig_id": 1410665}}, {"model": "metainfo.source", "pk": 8371, "fields": {"orig_filename": "Nadlisek-Bartol_Marica_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17", "author": "", "orig_id": 1410666}}, {"model": "metainfo.source", "pk": 8372, "fields": {"orig_filename": "Nadolski_Otto_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17f.", "author": "", "orig_id": 1410667}}, {"model": "metainfo.source", "pk": 8373, "fields": {"orig_filename": "Naegle_August_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410668}}, {"model": "metainfo.source", "pk": 8374, "fields": {"orig_filename": "Nagele_Hugo_1880_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19", "author": "", "orig_id": 1410747}}, {"model": "metainfo.source", "pk": 8375, "fields": {"orig_filename": "Nagel_Ignaz_1831_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410669}}, {"model": "metainfo.source", "pk": 8376, "fields": {"orig_filename": "Nagel_Leo_1835_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410670}}, {"model": "metainfo.source", "pk": 8377, "fields": {"orig_filename": "Nagel_Robert-Siegfried_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18f.", "author": "", "orig_id": 1410671}}, {"model": "metainfo.source", "pk": 8378, "fields": {"orig_filename": "Nagel_Rudolf_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19", "author": "", "orig_id": 1410672}}, {"model": "metainfo.source", "pk": 8379, "fields": {"orig_filename": "Nagiller_Matthaeus_1815_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19f.", "author": "", "orig_id": 1410748}}, {"model": "metainfo.source", "pk": 8380, "fields": {"orig_filename": "Nagl_Alfred_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20", "author": "", "orig_id": 1410749}}, {"model": "metainfo.source", "pk": 8381, "fields": {"orig_filename": "Nagl_Erasmus_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20", "author": "", "orig_id": 1410750}}, {"model": "metainfo.source", "pk": 8382, "fields": {"orig_filename": "Nagl_Franz-Xaver_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20f.", "author": "", "orig_id": 1410751}}, {"model": "metainfo.source", "pk": 8383, "fields": {"orig_filename": "Nagl_Johann-Willibald_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21", "author": "", "orig_id": 1410752}}, {"model": "metainfo.source", "pk": 8384, "fields": {"orig_filename": "Nagnzaun_Albert_1777_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21", "author": "", "orig_id": 1410753}}, {"model": "metainfo.source", "pk": 8385, "fields": {"orig_filename": "Nagnzaun_Michael_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21f.", "author": "", "orig_id": 1410754}}, {"model": "metainfo.source", "pk": 8386, "fields": {"orig_filename": "Nagy-Alsoszopor_Imre_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25f.", "author": "", "orig_id": 1410839}}, {"model": "metainfo.source", "pk": 8387, "fields": {"orig_filename": "Nagy-Alsoszopor_Ladislaus_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 26", "author": "", "orig_id": 1410840}}, {"model": "metainfo.source", "pk": 8388, "fields": {"orig_filename": "Nagy-Felsoebuek_Pal_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 26f.", "author": "", "orig_id": 1410841}}, {"model": "metainfo.source", "pk": 8389, "fields": {"orig_filename": "Nagy-Felsoeeoer_Ernoe_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 27", "author": "", "orig_id": 1410842}}, {"model": "metainfo.source", "pk": 8390, "fields": {"orig_filename": "Nagy-Felsoegyoer_Ivan_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 27", "author": "", "orig_id": 1410843}}, {"model": "metainfo.source", "pk": 8391, "fields": {"orig_filename": "Nagy-Kaal_Elek_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410844}}, {"model": "metainfo.source", "pk": 8392, "fields": {"orig_filename": "Nagy-Nagyrev_Sandor_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410845}}, {"model": "metainfo.source", "pk": 8393, "fields": {"orig_filename": "Nagy-Sandor_Jozsef_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410846}}, {"model": "metainfo.source", "pk": 8394, "fields": {"orig_filename": "Nagy-Tasnad_Gyula_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28f.", "author": "", "orig_id": 1410847}}, {"model": "metainfo.source", "pk": 8395, "fields": {"orig_filename": "Nagy-Toeboer-Ethe_Adalbert_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410848}}, {"model": "metainfo.source", "pk": 8396, "fields": {"orig_filename": "Nagy-Toeboer-Ethe_Karl_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410849}}, {"model": "metainfo.source", "pk": 8397, "fields": {"orig_filename": "Nagy-Ueroegd_Miklos_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410850}}, {"model": "metainfo.source", "pk": 8398, "fields": {"orig_filename": "Nagy-Versegh_Ferenc_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30", "author": "", "orig_id": 1410852}}, {"model": "metainfo.source", "pk": 8399, "fields": {"orig_filename": "Nagyvathy_Janos_1755_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30", "author": "", "orig_id": 1410853}}, {"model": "metainfo.source", "pk": 8400, "fields": {"orig_filename": "Nagy_Aleksander_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410755}}, {"model": "metainfo.source", "pk": 8401, "fields": {"orig_filename": "Nagy_Dezsoe-Balint_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410756}}, {"model": "metainfo.source", "pk": 8402, "fields": {"orig_filename": "Nagy_Geza_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410757}}, {"model": "metainfo.source", "pk": 8403, "fields": {"orig_filename": "Nagy_Gusztav_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410758}}, {"model": "metainfo.source", "pk": 8404, "fields": {"orig_filename": "Nagy_Ignac_1810_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410759}}, {"model": "metainfo.source", "pk": 8405, "fields": {"orig_filename": "Nagy_Janos_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410760}}, {"model": "metainfo.source", "pk": 8406, "fields": {"orig_filename": "Nagy_Jozsef_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410761}}, {"model": "metainfo.source", "pk": 8407, "fields": {"orig_filename": "Nagy_Karoly_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23f.", "author": "", "orig_id": 1410762}}, {"model": "metainfo.source", "pk": 8408, "fields": {"orig_filename": "Nagy_Martin_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410763}}, {"model": "metainfo.source", "pk": 8409, "fields": {"orig_filename": "Nagy_Mihaly_1788_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410764}}, {"model": "metainfo.source", "pk": 8410, "fields": {"orig_filename": "Muehlmann_Josef_1805_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413378}}, {"model": "metainfo.source", "pk": 8411, "fields": {"orig_filename": "Muehlvenzl_Josef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406f.", "author": "", "orig_id": 1413379}}, {"model": "metainfo.source", "pk": 8412, "fields": {"orig_filename": "Muehringer_Elise_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407", "author": "", "orig_id": 1413380}}, {"model": "metainfo.source", "pk": 8413, "fields": {"orig_filename": "Muellendorff_Julius_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407", "author": "", "orig_id": 1413381}}, {"model": "metainfo.source", "pk": 8414, "fields": {"orig_filename": "Mueller-Elblein_Arthur_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413638}}, {"model": "metainfo.source", "pk": 8415, "fields": {"orig_filename": "Mueller-Guttenbrunn_Herbert_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413639}}, {"model": "metainfo.source", "pk": 8416, "fields": {"orig_filename": "Mueller-Martini_Johanna_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413640}}, {"model": "metainfo.source", "pk": 8417, "fields": {"orig_filename": "Mueller-Martini_Otto_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413641}}, {"model": "metainfo.source", "pk": 8418, "fields": {"orig_filename": "Mueller-Muehlwerth_Alexander_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413642}}, {"model": "metainfo.source", "pk": 8419, "fields": {"orig_filename": "Mueller-Nitterdorf_Adam_1779_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430f.", "author": "", "orig_id": 1413643}}, {"model": "metainfo.source", "pk": 8420, "fields": {"orig_filename": "Mueller-Roghoj_Heinrich_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431", "author": "", "orig_id": 1413645}}, {"model": "metainfo.source", "pk": 8421, "fields": {"orig_filename": "Mueller-Szentgyoergy_Kalman_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431f.", "author": "", "orig_id": 1413646}}, {"model": "metainfo.source", "pk": 8422, "fields": {"orig_filename": "Mueller-Thomamuehl_Wenzel_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432", "author": "", "orig_id": 1413647}}, {"model": "metainfo.source", "pk": 8423, "fields": {"orig_filename": "Mueller_Adam_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407f.", "author": "", "orig_id": 1413382}}, {"model": "metainfo.source", "pk": 8424, "fields": {"orig_filename": "Mueller_Adolf_1801_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 408", "author": "", "orig_id": 1413383}}, {"model": "metainfo.source", "pk": 8425, "fields": {"orig_filename": "Mueller_Anton_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 408f.", "author": "", "orig_id": 1413384}}, {"model": "metainfo.source", "pk": 8426, "fields": {"orig_filename": "Mueller_Anton_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409", "author": "", "orig_id": 1413386}}, {"model": "metainfo.source", "pk": 8427, "fields": {"orig_filename": "Mueller_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409", "author": "", "orig_id": 1413385}}, {"model": "metainfo.source", "pk": 8428, "fields": {"orig_filename": "Mueller_Christian-Leo_1799_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409f.", "author": "", "orig_id": 1413387}}, {"model": "metainfo.source", "pk": 8429, "fields": {"orig_filename": "Mueller_David-Heinrich_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 410f.", "author": "", "orig_id": 1413388}}, {"model": "metainfo.source", "pk": 8430, "fields": {"orig_filename": "Mueller_Emil_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411", "author": "", "orig_id": 1413389}}, {"model": "metainfo.source", "pk": 8431, "fields": {"orig_filename": "Mueller_Ernest_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411", "author": "", "orig_id": 1413390}}, {"model": "metainfo.source", "pk": 8432, "fields": {"orig_filename": "Mueller_Ernst_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411f.", "author": "", "orig_id": 1413391}}, {"model": "metainfo.source", "pk": 8433, "fields": {"orig_filename": "Mueller_Erwin_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412", "author": "", "orig_id": 1413392}}, {"model": "metainfo.source", "pk": 8434, "fields": {"orig_filename": "Mueller_Franz-Anton_1817_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412f.", "author": "", "orig_id": 1413394}}, {"model": "metainfo.source", "pk": 8435, "fields": {"orig_filename": "Mueller_Franz-Josef_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 413", "author": "", "orig_id": 1413458}}, {"model": "metainfo.source", "pk": 8436, "fields": {"orig_filename": "Mueller_Franz-Xaver_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 413f.", "author": "", "orig_id": 1413459}}, {"model": "metainfo.source", "pk": 8437, "fields": {"orig_filename": "Mueller_Franz_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412", "author": "", "orig_id": 1413393}}, {"model": "metainfo.source", "pk": 8438, "fields": {"orig_filename": "Mueller_Friedrich-Josef_1768_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243", "author": "", "orig_id": 1411789}}, {"model": "metainfo.source", "pk": 8439, "fields": {"orig_filename": "Mueller_Friedrich_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414", "author": "", "orig_id": 1413460}}, {"model": "metainfo.source", "pk": 8440, "fields": {"orig_filename": "Mueller_Friedrich_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414", "author": "", "orig_id": 1413461}}, {"model": "metainfo.source", "pk": 8441, "fields": {"orig_filename": "Mueller_Friedrich_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414f.", "author": "", "orig_id": 1413462}}, {"model": "metainfo.source", "pk": 8442, "fields": {"orig_filename": "Mueller_Friedrich_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415", "author": "", "orig_id": 1413463}}, {"model": "metainfo.source", "pk": 8443, "fields": {"orig_filename": "Mueller_Georg_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415", "author": "", "orig_id": 1413464}}, {"model": "metainfo.source", "pk": 8444, "fields": {"orig_filename": "Mueller_Georg_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415f.", "author": "", "orig_id": 1413465}}, {"model": "metainfo.source", "pk": 8445, "fields": {"orig_filename": "Mueller_Gregor_1842_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416", "author": "", "orig_id": 1413466}}, {"model": "metainfo.source", "pk": 8446, "fields": {"orig_filename": "Mueller_Gustav_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416", "author": "", "orig_id": 1413467}}, {"model": "metainfo.source", "pk": 8447, "fields": {"orig_filename": "Mueller_Hans_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416f.", "author": "", "orig_id": 1413468}}, {"model": "metainfo.source", "pk": 8448, "fields": {"orig_filename": "Mueller_Hans_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 417", "author": "", "orig_id": 1413469}}, {"model": "metainfo.source", "pk": 8449, "fields": {"orig_filename": "Mueller_Hermann-Franz_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 417f.", "author": "", "orig_id": 1413470}}, {"model": "metainfo.source", "pk": 8450, "fields": {"orig_filename": "Mueller_Jan-Bohuslav_1823_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418", "author": "", "orig_id": 1413471}}, {"model": "metainfo.source", "pk": 8451, "fields": {"orig_filename": "Mueller_Joel_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418", "author": "", "orig_id": 1413472}}, {"model": "metainfo.source", "pk": 8452, "fields": {"orig_filename": "Mueller_Johann-Georg_1822_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413476}}, {"model": "metainfo.source", "pk": 8453, "fields": {"orig_filename": "Mueller_Johann-Jakob_1780_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419f.", "author": "", "orig_id": 1413477}}, {"model": "metainfo.source", "pk": 8454, "fields": {"orig_filename": "Mueller_Johann_1799_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418f.", "author": "", "orig_id": 1413473}}, {"model": "metainfo.source", "pk": 8455, "fields": {"orig_filename": "Mueller_Johann_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413474}}, {"model": "metainfo.source", "pk": 8456, "fields": {"orig_filename": "Mueller_Johann_1832_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413475}}, {"model": "metainfo.source", "pk": 8457, "fields": {"orig_filename": "Mueller_Josef-Ferdinand_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 421f.", "author": "", "orig_id": 1413546}}, {"model": "metainfo.source", "pk": 8458, "fields": {"orig_filename": "Mueller_Josef-Franz_1811_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413547}}, {"model": "metainfo.source", "pk": 8459, "fields": {"orig_filename": "Mueller_Josefa-Hortensia_1766_1807.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243", "author": "", "orig_id": 1411790}}, {"model": "metainfo.source", "pk": 8460, "fields": {"orig_filename": "Mueller_Josef_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420", "author": "", "orig_id": 1413478}}, {"model": "metainfo.source", "pk": 8461, "fields": {"orig_filename": "Mueller_Josef_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420", "author": "", "orig_id": 1413479}}, {"model": "metainfo.source", "pk": 8462, "fields": {"orig_filename": "Mueller_Josef_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420f.", "author": "", "orig_id": 1413480}}, {"model": "metainfo.source", "pk": 8463, "fields": {"orig_filename": "Mueller_Josef_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 421", "author": "", "orig_id": 1413481}}, {"model": "metainfo.source", "pk": 8464, "fields": {"orig_filename": "Mueller_Karl_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413548}}, {"model": "metainfo.source", "pk": 8465, "fields": {"orig_filename": "Mueller_Laurentius_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413549}}, {"model": "metainfo.source", "pk": 8466, "fields": {"orig_filename": "Mueller_Leopold-Karl_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 423f.", "author": "", "orig_id": 1413553}}, {"model": "metainfo.source", "pk": 8467, "fields": {"orig_filename": "Mueller_Leopold_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422f.", "author": "", "orig_id": 1413551}}, {"model": "metainfo.source", "pk": 8468, "fields": {"orig_filename": "Mueller_Leopold_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 423", "author": "", "orig_id": 1413552}}, {"model": "metainfo.source", "pk": 8469, "fields": {"orig_filename": "Mueller_Marie_1847_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413554}}, {"model": "metainfo.source", "pk": 8470, "fields": {"orig_filename": "Mueller_Otto_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413555}}, {"model": "metainfo.source", "pk": 8471, "fields": {"orig_filename": "Mueller_Otto_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413556}}, {"model": "metainfo.source", "pk": 8472, "fields": {"orig_filename": "Mueller_Paul_1895_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413557}}, {"model": "metainfo.source", "pk": 8473, "fields": {"orig_filename": "Mueller_Richard_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413558}}, {"model": "metainfo.source", "pk": 8474, "fields": {"orig_filename": "Mueller_Richard_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413559}}, {"model": "metainfo.source", "pk": 8475, "fields": {"orig_filename": "Mueller_Robert_1887_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426", "author": "", "orig_id": 1413560}}, {"model": "metainfo.source", "pk": 8476, "fields": {"orig_filename": "Mueller_Rudolf_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426", "author": "", "orig_id": 1413561}}, {"model": "metainfo.source", "pk": 8477, "fields": {"orig_filename": "Mueller_Rudolf_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426f.", "author": "", "orig_id": 1413562}}, {"model": "metainfo.source", "pk": 8478, "fields": {"orig_filename": "Mueller_Rudolf_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 427", "author": "", "orig_id": 1413563}}, {"model": "metainfo.source", "pk": 8479, "fields": {"orig_filename": "Mueller_Sophie_1803_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 427", "author": "", "orig_id": 1413564}}, {"model": "metainfo.source", "pk": 8480, "fields": {"orig_filename": "Mueller_Therese_1791_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428", "author": "", "orig_id": 1413565}}, {"model": "metainfo.source", "pk": 8481, "fields": {"orig_filename": "Mueller_Wenzel_1759_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428", "author": "", "orig_id": 1413566}}, {"model": "metainfo.source", "pk": 8482, "fields": {"orig_filename": "Mueller_Willibald_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428f.", "author": "", "orig_id": 1413567}}, {"model": "metainfo.source", "pk": 8483, "fields": {"orig_filename": "Mueller_Zeno_1818_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413569}}, {"model": "metainfo.source", "pk": 8484, "fields": {"orig_filename": "Muellner_Alfons_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432", "author": "", "orig_id": 1413648}}, {"model": "metainfo.source", "pk": 8485, "fields": {"orig_filename": "Muellner_Karl_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432f.", "author": "", "orig_id": 1413649}}, {"model": "metainfo.source", "pk": 8486, "fields": {"orig_filename": "Muellner_Laurenz_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433", "author": "", "orig_id": 1413650}}, {"model": "metainfo.source", "pk": 8487, "fields": {"orig_filename": "Muellner_Matthias_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433", "author": "", "orig_id": 1413651}}, {"model": "metainfo.source", "pk": 8488, "fields": {"orig_filename": "Muench-Bellinghausen_Anton-Rudolf_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433f.", "author": "", "orig_id": 1413652}}, {"model": "metainfo.source", "pk": 8489, "fields": {"orig_filename": "Muench-Bellinghausen_Eligius-Franz-Josef_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 434", "author": "", "orig_id": 1413653}}, {"model": "metainfo.source", "pk": 8490, "fields": {"orig_filename": "Muench-Bellinghausen_Joachim_1786_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 434f.", "author": "", "orig_id": 1413654}}, {"model": "metainfo.source", "pk": 8491, "fields": {"orig_filename": "Muendel-Feldberg_Josef_1829_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435", "author": "", "orig_id": 1413655}}, {"model": "metainfo.source", "pk": 8492, "fields": {"orig_filename": "Muenichsdorfer_Friedrich_1828_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435", "author": "", "orig_id": 1413656}}, {"model": "metainfo.source", "pk": 8493, "fields": {"orig_filename": "Muennich-Janosvoelgy_Adolf-Gustav_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413658}}, {"model": "metainfo.source", "pk": 8494, "fields": {"orig_filename": "Muennich-Janosvoelgy_Aurel-Adolf_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413659}}, {"model": "metainfo.source", "pk": 8495, "fields": {"orig_filename": "Muennich-Janosvoelgy_Koloman-Bela-Julius_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413727}}, {"model": "metainfo.source", "pk": 8496, "fields": {"orig_filename": "Muennich_Alexander_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435f.", "author": "", "orig_id": 1413657}}, {"model": "metainfo.source", "pk": 8497, "fields": {"orig_filename": "Muensterberg_Rudolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413728}}, {"model": "metainfo.source", "pk": 8498, "fields": {"orig_filename": "Muenzberg_Johann-Josef_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437f.", "author": "", "orig_id": 1413732}}, {"model": "metainfo.source", "pk": 8499, "fields": {"orig_filename": "Muenz_Bernhard_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436f.", "author": "", "orig_id": 1413729}}, {"model": "metainfo.source", "pk": 8500, "fields": {"orig_filename": "Muenz_Sigmund_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437", "author": "", "orig_id": 1413730}}, {"model": "metainfo.source", "pk": 8501, "fields": {"orig_filename": "Muenz_Wilhelm_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437", "author": "", "orig_id": 1413731}}, {"model": "metainfo.source", "pk": 8502, "fields": {"orig_filename": "Mugna_Pietro_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438", "author": "", "orig_id": 1413733}}, {"model": "metainfo.source", "pk": 8503, "fields": {"orig_filename": "Muhic_Pavao_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438", "author": "", "orig_id": 1413734}}, {"model": "metainfo.source", "pk": 8504, "fields": {"orig_filename": "Muhr_Michael_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438f.", "author": "", "orig_id": 1413735}}, {"model": "metainfo.source", "pk": 8505, "fields": {"orig_filename": "Mulley_Oskar_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413737}}, {"model": "metainfo.source", "pk": 8506, "fields": {"orig_filename": "Mulle_Julius_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413736}}, {"model": "metainfo.source", "pk": 8507, "fields": {"orig_filename": "Mully-Oppenried_Robert_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413738}}, {"model": "metainfo.source", "pk": 8508, "fields": {"orig_filename": "Munding_Hans_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 440", "author": "", "orig_id": 1413739}}, {"model": "metainfo.source", "pk": 8509, "fields": {"orig_filename": "Mundy_Jaromir_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 440f.", "author": "", "orig_id": 1413741}}, {"model": "metainfo.source", "pk": 8510, "fields": {"orig_filename": "Munganast_Emil_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413742}}, {"model": "metainfo.source", "pk": 8511, "fields": {"orig_filename": "Moriggl_Alois_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372f.", "author": "", "orig_id": 1412930}}, {"model": "metainfo.source", "pk": 8512, "fields": {"orig_filename": "Moriggl_Augustin_1816_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373", "author": "", "orig_id": 1412931}}, {"model": "metainfo.source", "pk": 8513, "fields": {"orig_filename": "Moriggl_Josef_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373", "author": "", "orig_id": 1412932}}, {"model": "metainfo.source", "pk": 8514, "fields": {"orig_filename": "Moriggl_Simon_1817_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373f.", "author": "", "orig_id": 1412933}}, {"model": "metainfo.source", "pk": 8515, "fields": {"orig_filename": "Moritsch_Anton_1851_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374", "author": "", "orig_id": 1412934}}, {"model": "metainfo.source", "pk": 8516, "fields": {"orig_filename": "Moro-Lin_Angelo_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 376", "author": "", "orig_id": 1413009}}, {"model": "metainfo.source", "pk": 8517, "fields": {"orig_filename": "Moroder_Franz_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 376f.", "author": "", "orig_id": 1413010}}, {"model": "metainfo.source", "pk": 8518, "fields": {"orig_filename": "Moroder_Josef-Theodor_1846_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413011}}, {"model": "metainfo.source", "pk": 8519, "fields": {"orig_filename": "Moroder_Rudolf_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413012}}, {"model": "metainfo.source", "pk": 8520, "fields": {"orig_filename": "Moroder_Wilhelm_1877_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413013}}, {"model": "metainfo.source", "pk": 8521, "fields": {"orig_filename": "Morosini_Nikolaus_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413014}}, {"model": "metainfo.source", "pk": 8522, "fields": {"orig_filename": "Morozewicz_Jozef-Marian_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377f.", "author": "", "orig_id": 1413015}}, {"model": "metainfo.source", "pk": 8523, "fields": {"orig_filename": "Moro_Eduard_1790_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374", "author": "", "orig_id": 1412935}}, {"model": "metainfo.source", "pk": 8524, "fields": {"orig_filename": "Moro_Franz_1782_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374f.", "author": "", "orig_id": 1412936}}, {"model": "metainfo.source", "pk": 8525, "fields": {"orig_filename": "Moro_Max_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375", "author": "", "orig_id": 1412937}}, {"model": "metainfo.source", "pk": 8526, "fields": {"orig_filename": "Moro_Oswin_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375", "author": "", "orig_id": 1412938}}, {"model": "metainfo.source", "pk": 8527, "fields": {"orig_filename": "Moro_Thomas_1786_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375f.", "author": "", "orig_id": 1413008}}, {"model": "metainfo.source", "pk": 8528, "fields": {"orig_filename": "Morpurgo_Alessandro_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 378", "author": "", "orig_id": 1413016}}, {"model": "metainfo.source", "pk": 8529, "fields": {"orig_filename": "Morpurgo_Benedetto_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 378f.", "author": "", "orig_id": 1413017}}, {"model": "metainfo.source", "pk": 8530, "fields": {"orig_filename": "Morpurgo_Elio_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379", "author": "", "orig_id": 1413018}}, {"model": "metainfo.source", "pk": 8531, "fields": {"orig_filename": "Morpurgo_Emilio_1836_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379", "author": "", "orig_id": 1413019}}, {"model": "metainfo.source", "pk": 8532, "fields": {"orig_filename": "Morpurgo_Giuseppe-Lazzaro_1759_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380", "author": "", "orig_id": 1413021}}, {"model": "metainfo.source", "pk": 8533, "fields": {"orig_filename": "Morpurgo_Giuseppe_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379f.", "author": "", "orig_id": 1413020}}, {"model": "metainfo.source", "pk": 8534, "fields": {"orig_filename": "Morpurgo_Guido_1868_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380", "author": "", "orig_id": 1413022}}, {"model": "metainfo.source", "pk": 8535, "fields": {"orig_filename": "Morpurgo_Rahel_1790_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380f.", "author": "", "orig_id": 1413023}}, {"model": "metainfo.source", "pk": 8536, "fields": {"orig_filename": "Morpurgo_Salomone_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413024}}, {"model": "metainfo.source", "pk": 8537, "fields": {"orig_filename": "Morres_Wilhelm_1849_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413026}}, {"model": "metainfo.source", "pk": 8538, "fields": {"orig_filename": "Morre_Karl_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413025}}, {"model": "metainfo.source", "pk": 8539, "fields": {"orig_filename": "Morsolin_Bernardo_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381f.", "author": "", "orig_id": 1413027}}, {"model": "metainfo.source", "pk": 8540, "fields": {"orig_filename": "Morstadt_Vincenc_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413028}}, {"model": "metainfo.source", "pk": 8541, "fields": {"orig_filename": "Morvay_Gyoezoe_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413029}}, {"model": "metainfo.source", "pk": 8542, "fields": {"orig_filename": "Mor_Giuseppe_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364f.", "author": "", "orig_id": 1412836}}, {"model": "metainfo.source", "pk": 8543, "fields": {"orig_filename": "Moscheles_Ignaz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f.", "author": "", "orig_id": 1413099}}, {"model": "metainfo.source", "pk": 8544, "fields": {"orig_filename": "Moschen_Lamberto_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 383", "author": "", "orig_id": 1413100}}, {"model": "metainfo.source", "pk": 8545, "fields": {"orig_filename": "Mosche_Alfonz_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413030}}, {"model": "metainfo.source", "pk": 8546, "fields": {"orig_filename": "Moschini_Giannantonio_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 383f.", "author": "", "orig_id": 1413101}}, {"model": "metainfo.source", "pk": 8547, "fields": {"orig_filename": "Moscon_Anton-Albert_1783_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413102}}, {"model": "metainfo.source", "pk": 8548, "fields": {"orig_filename": "Moscotto_Giovanni_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413103}}, {"model": "metainfo.source", "pk": 8549, "fields": {"orig_filename": "Mosel_Ignaz-Franz_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413104}}, {"model": "metainfo.source", "pk": 8550, "fields": {"orig_filename": "Mosel_Katharina_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413105}}, {"model": "metainfo.source", "pk": 8551, "fields": {"orig_filename": "Mosenthal_Salomon-Hermann_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385", "author": "", "orig_id": 1413106}}, {"model": "metainfo.source", "pk": 8552, "fields": {"orig_filename": "Moser-Mossbruch_Ignaz_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413189}}, {"model": "metainfo.source", "pk": 8553, "fields": {"orig_filename": "Moser_Anton_1872_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385f.", "author": "", "orig_id": 1413108}}, {"model": "metainfo.source", "pk": 8554, "fields": {"orig_filename": "Moser_Bedrich_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413109}}, {"model": "metainfo.source", "pk": 8555, "fields": {"orig_filename": "Moser_Emil_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413110}}, {"model": "metainfo.source", "pk": 8556, "fields": {"orig_filename": "Moser_Ernst-Christian_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413111}}, {"model": "metainfo.source", "pk": 8557, "fields": {"orig_filename": "Moser_Franz-Josef_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386f.", "author": "", "orig_id": 1413112}}, {"model": "metainfo.source", "pk": 8558, "fields": {"orig_filename": "Moser_James_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413114}}, {"model": "metainfo.source", "pk": 8559, "fields": {"orig_filename": "Moser_Josef_1779_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413116}}, {"model": "metainfo.source", "pk": 8560, "fields": {"orig_filename": "Moser_Josef_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413117}}, {"model": "metainfo.source", "pk": 8561, "fields": {"orig_filename": "Moser_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387f.", "author": "", "orig_id": 1413118}}, {"model": "metainfo.source", "pk": 8562, "fields": {"orig_filename": "Moser_Karl_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388", "author": "", "orig_id": 1413119}}, {"model": "metainfo.source", "pk": 8563, "fields": {"orig_filename": "Moser_Karl_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388", "author": "", "orig_id": 1413120}}, {"model": "metainfo.source", "pk": 8564, "fields": {"orig_filename": "Moser_Koloman_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388f.", "author": "", "orig_id": 1413121}}, {"model": "metainfo.source", "pk": 8565, "fields": {"orig_filename": "Moser_Ludwig-Karl_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389", "author": "", "orig_id": 1413123}}, {"model": "metainfo.source", "pk": 8566, "fields": {"orig_filename": "Moser_Ludwig_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389", "author": "", "orig_id": 1413122}}, {"model": "metainfo.source", "pk": 8567, "fields": {"orig_filename": "Moser_Maria-Anna_1756_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389f.", "author": "", "orig_id": 1413124}}, {"model": "metainfo.source", "pk": 8568, "fields": {"orig_filename": "Moser_Paul_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413187}}, {"model": "metainfo.source", "pk": 8569, "fields": {"orig_filename": "Moser_Richard_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413188}}, {"model": "metainfo.source", "pk": 8570, "fields": {"orig_filename": "Mosetig-Moorhof_Albert_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 391", "author": "", "orig_id": 1413191}}, {"model": "metainfo.source", "pk": 8571, "fields": {"orig_filename": "Moshamer_Franz-Josef_1800_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 391f.", "author": "", "orig_id": 1413192}}, {"model": "metainfo.source", "pk": 8572, "fields": {"orig_filename": "Mosing_Guido-Konrad_1824_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392", "author": "", "orig_id": 1413195}}, {"model": "metainfo.source", "pk": 8573, "fields": {"orig_filename": "Mosinski-Zagrabvar_Adolf_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392", "author": "", "orig_id": 1413196}}, {"model": "metainfo.source", "pk": 8574, "fields": {"orig_filename": "Moskopp_Kaspar_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392f.", "author": "", "orig_id": 1413197}}, {"model": "metainfo.source", "pk": 8575, "fields": {"orig_filename": "Mosner_Frantisek_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413198}}, {"model": "metainfo.source", "pk": 8576, "fields": {"orig_filename": "Mossbach_Leopold_1735_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413200}}, {"model": "metainfo.source", "pk": 8577, "fields": {"orig_filename": "Mossig_Johann_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413201}}, {"model": "metainfo.source", "pk": 8578, "fields": {"orig_filename": "Mottl-Standhartner_Henriette_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394", "author": "", "orig_id": 1413204}}, {"model": "metainfo.source", "pk": 8579, "fields": {"orig_filename": "Mottl_Felix_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393f.", "author": "", "orig_id": 1413203}}, {"model": "metainfo.source", "pk": 8580, "fields": {"orig_filename": "Moudra_Pavla_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394", "author": "", "orig_id": 1413205}}, {"model": "metainfo.source", "pk": 8581, "fields": {"orig_filename": "Mourek_Vaclav-Emanuel_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394f.", "author": "", "orig_id": 1413206}}, {"model": "metainfo.source", "pk": 8582, "fields": {"orig_filename": "Moy-Sons_Karl-Ernest_1799_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 395", "author": "", "orig_id": 1413207}}, {"model": "metainfo.source", "pk": 8583, "fields": {"orig_filename": "Moysa-Rosochacki_Stefan_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 395", "author": "", "orig_id": 1413208}}, {"model": "metainfo.source", "pk": 8584, "fields": {"orig_filename": "Moyzes_Mikulas_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396", "author": "", "orig_id": 1413280}}, {"model": "metainfo.source", "pk": 8585, "fields": {"orig_filename": "Moyzes_Stefan_1797_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396", "author": "", "orig_id": 1413210}}, {"model": "metainfo.source", "pk": 8586, "fields": {"orig_filename": "Mozart_Franz-Xaver-Wolfgang_1791_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396f.", "author": "", "orig_id": 1413281}}, {"model": "metainfo.source", "pk": 8587, "fields": {"orig_filename": "Mozart_Joseph_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397", "author": "", "orig_id": 1413282}}, {"model": "metainfo.source", "pk": 8588, "fields": {"orig_filename": "Mozart_Maria-Anna_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397", "author": "", "orig_id": 1413283}}, {"model": "metainfo.source", "pk": 8589, "fields": {"orig_filename": "Mracek_Franz_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397f.", "author": "", "orig_id": 1413284}}, {"model": "metainfo.source", "pk": 8590, "fields": {"orig_filename": "Mraczek_Joseph-Gustav_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413285}}, {"model": "metainfo.source", "pk": 8591, "fields": {"orig_filename": "Mrazovic_Avram_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413287}}, {"model": "metainfo.source", "pk": 8592, "fields": {"orig_filename": "Mrazovic_Ladislav_1849_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413288}}, {"model": "metainfo.source", "pk": 8593, "fields": {"orig_filename": "Mrazovic_Matija_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413289}}, {"model": "metainfo.source", "pk": 8594, "fields": {"orig_filename": "Mraz_Josef_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413286}}, {"model": "metainfo.source", "pk": 8595, "fields": {"orig_filename": "Mrstik_Alois_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413290}}, {"model": "metainfo.source", "pk": 8596, "fields": {"orig_filename": "Mrstik_Vilem_1863_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400", "author": "", "orig_id": 1413291}}, {"model": "metainfo.source", "pk": 8597, "fields": {"orig_filename": "Muchar-Ried_Albert_1786_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 402f.", "author": "", "orig_id": 1413296}}, {"model": "metainfo.source", "pk": 8598, "fields": {"orig_filename": "Mucha_Alfons_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 401f.", "author": "", "orig_id": 1413294}}, {"model": "metainfo.source", "pk": 8599, "fields": {"orig_filename": "Mucha_Viktor_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 402", "author": "", "orig_id": 1413295}}, {"model": "metainfo.source", "pk": 8600, "fields": {"orig_filename": "Much_Matthaeus_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400", "author": "", "orig_id": 1413292}}, {"model": "metainfo.source", "pk": 8601, "fields": {"orig_filename": "Much_Rudolf_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400f.", "author": "", "orig_id": 1413293}}, {"model": "metainfo.source", "pk": 8602, "fields": {"orig_filename": "Muczkowski_Jozef-Jakub_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 403f.", "author": "", "orig_id": 1413298}}, {"model": "metainfo.source", "pk": 8603, "fields": {"orig_filename": "Muczkowski_Jozef_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 403", "author": "", "orig_id": 1413297}}, {"model": "metainfo.source", "pk": 8604, "fields": {"orig_filename": "Mudrich_Andreas_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413299}}, {"model": "metainfo.source", "pk": 8605, "fields": {"orig_filename": "Mudrony_Soma_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413300}}, {"model": "metainfo.source", "pk": 8606, "fields": {"orig_filename": "Mueck_Alfred_1912_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413371}}, {"model": "metainfo.source", "pk": 8607, "fields": {"orig_filename": "Mueck_Marie_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404f.", "author": "", "orig_id": 1413372}}, {"model": "metainfo.source", "pk": 8608, "fields": {"orig_filename": "Mueck_Maximilian_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 405", "author": "", "orig_id": 1413373}}, {"model": "metainfo.source", "pk": 8609, "fields": {"orig_filename": "Muehlbacher_Engelbert_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 405f.", "author": "", "orig_id": 1413374}}, {"model": "metainfo.source", "pk": 8610, "fields": {"orig_filename": "Muehlbacher_Josef_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413375}}, {"model": "metainfo.source", "pk": 8611, "fields": {"orig_filename": "Muehlberger_Karl_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413376}}, {"model": "metainfo.source", "pk": 8612, "fields": {"orig_filename": "Moedlinger_Josef_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338", "author": "", "orig_id": 1412548}}, {"model": "metainfo.source", "pk": 8613, "fields": {"orig_filename": "Moeller_Josef_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338f.", "author": "", "orig_id": 1412549}}, {"model": "metainfo.source", "pk": 8614, "fields": {"orig_filename": "Moeltner_Zeno_1852_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339", "author": "", "orig_id": 1412550}}, {"model": "metainfo.source", "pk": 8615, "fields": {"orig_filename": "Moering_Karl_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339", "author": "", "orig_id": 1412551}}, {"model": "metainfo.source", "pk": 8616, "fields": {"orig_filename": "Moerk-Moerkenstein_Alexander_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339f.", "author": "", "orig_id": 1412552}}, {"model": "metainfo.source", "pk": 8617, "fields": {"orig_filename": "Moerth_Johann_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412554}}, {"model": "metainfo.source", "pk": 8618, "fields": {"orig_filename": "Moerzinger_Johann_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412555}}, {"model": "metainfo.source", "pk": 8619, "fields": {"orig_filename": "Moeser_Karl_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340f.", "author": "", "orig_id": 1412556}}, {"model": "metainfo.source", "pk": 8620, "fields": {"orig_filename": "Moeser_Wilfried_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341", "author": "", "orig_id": 1412557}}, {"model": "metainfo.source", "pk": 8621, "fields": {"orig_filename": "Moessl_Johannes-Chrysostomus_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341", "author": "", "orig_id": 1412558}}, {"model": "metainfo.source", "pk": 8622, "fields": {"orig_filename": "Moessl_Roman_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341f.", "author": "", "orig_id": 1412559}}, {"model": "metainfo.source", "pk": 8623, "fields": {"orig_filename": "Moessmer_Josef_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412560}}, {"model": "metainfo.source", "pk": 8624, "fields": {"orig_filename": "Moga_Johann_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412561}}, {"model": "metainfo.source", "pk": 8625, "fields": {"orig_filename": "Moga_Vasile_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412562}}, {"model": "metainfo.source", "pk": 8626, "fields": {"orig_filename": "Moggioli_Umberto_1886_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342f.", "author": "", "orig_id": 1412563}}, {"model": "metainfo.source", "pk": 8627, "fields": {"orig_filename": "Mohaupt_Franz_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412564}}, {"model": "metainfo.source", "pk": 8628, "fields": {"orig_filename": "Mohl_Adolf_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412565}}, {"model": "metainfo.source", "pk": 8629, "fields": {"orig_filename": "Mohn_Ludwig_1797_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412566}}, {"model": "metainfo.source", "pk": 8630, "fields": {"orig_filename": "Mohorovicic_Andrija_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343f.", "author": "", "orig_id": 1412567}}, {"model": "metainfo.source", "pk": 8631, "fields": {"orig_filename": "Mohr_Abraham-Mendel_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 344", "author": "", "orig_id": 1412568}}, {"model": "metainfo.source", "pk": 8632, "fields": {"orig_filename": "Mohr_Josef_1792_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 344f.", "author": "", "orig_id": 1412569}}, {"model": "metainfo.source", "pk": 8633, "fields": {"orig_filename": "Mohs_Friedrich_1773_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 345", "author": "", "orig_id": 1412570}}, {"model": "metainfo.source", "pk": 8634, "fields": {"orig_filename": "Mohylnyckyj_Antin-Ljubyc_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 345f.", "author": "", "orig_id": 1412637}}, {"model": "metainfo.source", "pk": 8635, "fields": {"orig_filename": "Moise_Giovanni_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 346", "author": "", "orig_id": 1412638}}, {"model": "metainfo.source", "pk": 8636, "fields": {"orig_filename": "Moissi_Alexander_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 346f.", "author": "", "orig_id": 1412639}}, {"model": "metainfo.source", "pk": 8637, "fields": {"orig_filename": "Mojsisovics-Mojsvar_August_1848_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 347", "author": "", "orig_id": 1412640}}, {"model": "metainfo.source", "pk": 8638, "fields": {"orig_filename": "Mojsisovics-Mojsvar_Georg_1799_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 247f.", "author": "", "orig_id": 1412641}}, {"model": "metainfo.source", "pk": 8639, "fields": {"orig_filename": "Mojsisovics-Mojsvar_Johann-August-Edmund_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 348f.", "author": "", "orig_id": 1412642}}, {"model": "metainfo.source", "pk": 8640, "fields": {"orig_filename": "Moklowski_Kazimierz_1869_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349", "author": "", "orig_id": 1412643}}, {"model": "metainfo.source", "pk": 8641, "fields": {"orig_filename": "Mokry_Endre_1827_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349", "author": "", "orig_id": 1412644}}, {"model": "metainfo.source", "pk": 8642, "fields": {"orig_filename": "Mokry_Otakar_1853_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349f.", "author": "", "orig_id": 1412645}}, {"model": "metainfo.source", "pk": 8643, "fields": {"orig_filename": "Mokry_Samuel_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412646}}, {"model": "metainfo.source", "pk": 8644, "fields": {"orig_filename": "Molden_Berthold_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412647}}, {"model": "metainfo.source", "pk": 8645, "fields": {"orig_filename": "Moldovan_Gergely_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412648}}, {"model": "metainfo.source", "pk": 8646, "fields": {"orig_filename": "Moldovan_Ioan-Micu_1833_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350f.", "author": "", "orig_id": 1412649}}, {"model": "metainfo.source", "pk": 8647, "fields": {"orig_filename": "Molin_Johann_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351", "author": "", "orig_id": 1412650}}, {"model": "metainfo.source", "pk": 8648, "fields": {"orig_filename": "Molisch_Hans_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351", "author": "", "orig_id": 1412651}}, {"model": "metainfo.source", "pk": 8649, "fields": {"orig_filename": "Molitor_Simon_1766_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351f.", "author": "", "orig_id": 1412652}}, {"model": "metainfo.source", "pk": 8650, "fields": {"orig_filename": "Mollinary-Monte-Pastello_Anton_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 354f.", "author": "", "orig_id": 1412732}}, {"model": "metainfo.source", "pk": 8651, "fields": {"orig_filename": "Mollo_Tranquillo_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355", "author": "", "orig_id": 1412733}}, {"model": "metainfo.source", "pk": 8652, "fields": {"orig_filename": "Moll_Franz_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352", "author": "", "orig_id": 1412653}}, {"model": "metainfo.source", "pk": 8653, "fields": {"orig_filename": "Moll_Franz_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352", "author": "", "orig_id": 1412654}}, {"model": "metainfo.source", "pk": 8654, "fields": {"orig_filename": "Moll_Johann_1797_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352f.", "author": "", "orig_id": 1412655}}, {"model": "metainfo.source", "pk": 8655, "fields": {"orig_filename": "Moll_Karl-Ehrenbert_1760_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 353f.", "author": "", "orig_id": 1412657}}, {"model": "metainfo.source", "pk": 8656, "fields": {"orig_filename": "Moll_Karl_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 353", "author": "", "orig_id": 1412656}}, {"model": "metainfo.source", "pk": 8657, "fields": {"orig_filename": "Moll_Leopold_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 354", "author": "", "orig_id": 1412658}}, {"model": "metainfo.source", "pk": 8658, "fields": {"orig_filename": "Molnar-Kapos_Viktor_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357f.", "author": "", "orig_id": 1412743}}, {"model": "metainfo.source", "pk": 8659, "fields": {"orig_filename": "Molnar_Aladar_1839_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355", "author": "", "orig_id": 1412734}}, {"model": "metainfo.source", "pk": 8660, "fields": {"orig_filename": "Molnar_Antal_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355f.", "author": "", "orig_id": 1412735}}, {"model": "metainfo.source", "pk": 8661, "fields": {"orig_filename": "Molnar_Daniel-Bohumil_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412736}}, {"model": "metainfo.source", "pk": 8662, "fields": {"orig_filename": "Molnar_Daniel-Bohumil_1856_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412737}}, {"model": "metainfo.source", "pk": 8663, "fields": {"orig_filename": "Molnar_Gyoergy_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412738}}, {"model": "metainfo.source", "pk": 8664, "fields": {"orig_filename": "Molnar_Janos_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412740}}, {"model": "metainfo.source", "pk": 8665, "fields": {"orig_filename": "Molnar_Jan_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356f.", "author": "", "orig_id": 1412739}}, {"model": "metainfo.source", "pk": 8666, "fields": {"orig_filename": "Molnar_Jozsef_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412741}}, {"model": "metainfo.source", "pk": 8667, "fields": {"orig_filename": "Molnar_Laszlo_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412742}}, {"model": "metainfo.source", "pk": 8668, "fields": {"orig_filename": "Moltke_Maximlian-Leopold_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358", "author": "", "orig_id": 1412744}}, {"model": "metainfo.source", "pk": 8669, "fields": {"orig_filename": "Mondel_Friedrich_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358", "author": "", "orig_id": 1412745}}, {"model": "metainfo.source", "pk": 8670, "fields": {"orig_filename": "Mone_Albert_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358f.", "author": "", "orig_id": 1412746}}, {"model": "metainfo.source", "pk": 8671, "fields": {"orig_filename": "Monico_Jacopo_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412748}}, {"model": "metainfo.source", "pk": 8672, "fields": {"orig_filename": "Monschein_Johanna_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1980867}}, {"model": "metainfo.source", "pk": 8673, "fields": {"orig_filename": "Monsorno_Gian-Maria_1768_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412749}}, {"model": "metainfo.source", "pk": 8674, "fields": {"orig_filename": "Montag_Antonie_1835_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412750}}, {"model": "metainfo.source", "pk": 8675, "fields": {"orig_filename": "Montecuccoli-Erri_Rudolf_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359f.", "author": "", "orig_id": 1412751}}, {"model": "metainfo.source", "pk": 8676, "fields": {"orig_filename": "Montecuccoli-Laderchi_Albert_1802_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 360", "author": "", "orig_id": 1412752}}, {"model": "metainfo.source", "pk": 8677, "fields": {"orig_filename": "Montel-Treuenfest_Johannes_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 360f.", "author": "", "orig_id": 1412753}}, {"model": "metainfo.source", "pk": 8678, "fields": {"orig_filename": "Montenuovo_Alfred_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 361", "author": "", "orig_id": 1412754}}, {"model": "metainfo.source", "pk": 8679, "fields": {"orig_filename": "Montenuovo_Wilhelm-Albrecht_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 361f.", "author": "", "orig_id": 1412825}}, {"model": "metainfo.source", "pk": 8680, "fields": {"orig_filename": "Monti_Alessandro_1818_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362", "author": "", "orig_id": 1412826}}, {"model": "metainfo.source", "pk": 8681, "fields": {"orig_filename": "Monti_Alois_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362", "author": "", "orig_id": 1412827}}, {"model": "metainfo.source", "pk": 8682, "fields": {"orig_filename": "Monti_Lovro_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362f.", "author": "", "orig_id": 1412828}}, {"model": "metainfo.source", "pk": 8683, "fields": {"orig_filename": "Montleart_Wilhelmine_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412829}}, {"model": "metainfo.source", "pk": 8684, "fields": {"orig_filename": "Montlong_Oskar_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412830}}, {"model": "metainfo.source", "pk": 8685, "fields": {"orig_filename": "Montluisant_Bruno_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412831}}, {"model": "metainfo.source", "pk": 8686, "fields": {"orig_filename": "Montluisant_Johann_1768_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363f.", "author": "", "orig_id": 1412832}}, {"model": "metainfo.source", "pk": 8687, "fields": {"orig_filename": "Moor-Felsoeoer_Anna_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412833}}, {"model": "metainfo.source", "pk": 8688, "fields": {"orig_filename": "Moosbrugger_Gebhard_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412834}}, {"model": "metainfo.source", "pk": 8689, "fields": {"orig_filename": "Moosmann_Franz-Xaver_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412835}}, {"model": "metainfo.source", "pk": 8690, "fields": {"orig_filename": "Mor-Sunnegg-Morberg_Therese_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365", "author": "", "orig_id": 1412837}}, {"model": "metainfo.source", "pk": 8691, "fields": {"orig_filename": "Mor-Sunnegg-Morberg_Viktor-Max_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365", "author": "", "orig_id": 1412838}}, {"model": "metainfo.source", "pk": 8692, "fields": {"orig_filename": "Moraczewski_Jedrzej-Edward_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365f.", "author": "", "orig_id": 1412839}}, {"model": "metainfo.source", "pk": 8693, "fields": {"orig_filename": "Morariu-Andrievici_Constantin_1835_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367", "author": "", "orig_id": 1412843}}, {"model": "metainfo.source", "pk": 8694, "fields": {"orig_filename": "Morariu-Andrievici_Silvestru_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367f.", "author": "", "orig_id": 1412844}}, {"model": "metainfo.source", "pk": 8695, "fields": {"orig_filename": "Morariu_Constantin_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 366f.", "author": "", "orig_id": 1412841}}, {"model": "metainfo.source", "pk": 8696, "fields": {"orig_filename": "Morariu_Victor_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367", "author": "", "orig_id": 1412842}}, {"model": "metainfo.source", "pk": 8697, "fields": {"orig_filename": "Moravcsik_Ernoe-Emil_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412845}}, {"model": "metainfo.source", "pk": 8698, "fields": {"orig_filename": "Morawetz-Klienfeld_Otto_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412915}}, {"model": "metainfo.source", "pk": 8699, "fields": {"orig_filename": "Morawitz_Karl_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412916}}, {"model": "metainfo.source", "pk": 8700, "fields": {"orig_filename": "Morawitz_Moritz_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412917}}, {"model": "metainfo.source", "pk": 8701, "fields": {"orig_filename": "Morawski_Kazimierz_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412918}}, {"model": "metainfo.source", "pk": 8702, "fields": {"orig_filename": "Morawski_Marian_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412919}}, {"model": "metainfo.source", "pk": 8703, "fields": {"orig_filename": "Morawski_Seweryn-Antoni_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369f.", "author": "", "orig_id": 1412920}}, {"model": "metainfo.source", "pk": 8704, "fields": {"orig_filename": "Morawski_Szczesny_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370", "author": "", "orig_id": 1412921}}, {"model": "metainfo.source", "pk": 8705, "fields": {"orig_filename": "Morawski_Theodor_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370", "author": "", "orig_id": 1412922}}, {"model": "metainfo.source", "pk": 8706, "fields": {"orig_filename": "Morawski_Zdzislaw_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370f.", "author": "", "orig_id": 1412923}}, {"model": "metainfo.source", "pk": 8707, "fields": {"orig_filename": "Moreau_Karl_1758_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371", "author": "", "orig_id": 1412924}}, {"model": "metainfo.source", "pk": 8708, "fields": {"orig_filename": "Moreau_Nikolaus_1805_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371", "author": "", "orig_id": 1412925}}, {"model": "metainfo.source", "pk": 8709, "fields": {"orig_filename": "Morelli_Giovanni_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371f.", "author": "", "orig_id": 1412926}}, {"model": "metainfo.source", "pk": 8710, "fields": {"orig_filename": "Morelli_Gusztav_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412927}}, {"model": "metainfo.source", "pk": 8711, "fields": {"orig_filename": "Morelly_Franz_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412928}}, {"model": "metainfo.source", "pk": 8712, "fields": {"orig_filename": "Morgenbesser_Aleksander_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412929}}, {"model": "metainfo.source", "pk": 8713, "fields": {"orig_filename": "Miller-Aichholz_August_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303f.", "author": "", "orig_id": 1413633}}, {"model": "metainfo.source", "pk": 8714, "fields": {"orig_filename": "Miller-Aichholz_Josef-Maria_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 304", "author": "", "orig_id": 1413634}}, {"model": "metainfo.source", "pk": 8715, "fields": {"orig_filename": "Miller-Aichholz_Viktor_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 304f.", "author": "", "orig_id": 1413635}}, {"model": "metainfo.source", "pk": 8716, "fields": {"orig_filename": "Miller-Aichholz_Vinzenz_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 305", "author": "", "orig_id": 1411336}}, {"model": "metainfo.source", "pk": 8717, "fields": {"orig_filename": "Miller-Hauenfels_Albert_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 305f.", "author": "", "orig_id": 1413636}}, {"model": "metainfo.source", "pk": 8718, "fields": {"orig_filename": "Milleret_Jozef_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306", "author": "", "orig_id": 1413637}}, {"model": "metainfo.source", "pk": 8719, "fields": {"orig_filename": "Miller_Jakob-Ferdinand_1749_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 302f.", "author": "", "orig_id": 1413629}}, {"model": "metainfo.source", "pk": 8720, "fields": {"orig_filename": "Miller_Josef-Georg_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413630}}, {"model": "metainfo.source", "pk": 8721, "fields": {"orig_filename": "Miller_Josef-Kassian_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413631}}, {"model": "metainfo.source", "pk": 8722, "fields": {"orig_filename": "Miller_Martin_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413632}}, {"model": "metainfo.source", "pk": 8723, "fields": {"orig_filename": "Millesi_Johann-Matthias_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306", "author": "", "orig_id": 1413703}}, {"model": "metainfo.source", "pk": 8724, "fields": {"orig_filename": "Mille_Ernst_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300", "author": "", "orig_id": 1413623}}, {"model": "metainfo.source", "pk": 8725, "fields": {"orig_filename": "Millinkovic_Theodor_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306f.", "author": "", "orig_id": 1413704}}, {"model": "metainfo.source", "pk": 8726, "fields": {"orig_filename": "Milloecker_Karl_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307", "author": "", "orig_id": 1413705}}, {"model": "metainfo.source", "pk": 8727, "fields": {"orig_filename": "Milobar_Fran_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308", "author": "", "orig_id": 1413707}}, {"model": "metainfo.source", "pk": 8728, "fields": {"orig_filename": "Milosevic_Josip_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308", "author": "", "orig_id": 1413709}}, {"model": "metainfo.source", "pk": 8729, "fields": {"orig_filename": "Milota_Albert_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308f.", "author": "", "orig_id": 1413710}}, {"model": "metainfo.source", "pk": 8730, "fields": {"orig_filename": "Milski_Aleksander_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413712}}, {"model": "metainfo.source", "pk": 8731, "fields": {"orig_filename": "Miltner_Frantisek-Karel_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413713}}, {"model": "metainfo.source", "pk": 8732, "fields": {"orig_filename": "Miltner_Jan-Bohuslav_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413714}}, {"model": "metainfo.source", "pk": 8733, "fields": {"orig_filename": "Miltner_Jindrich-Otakar_1828_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413715}}, {"model": "metainfo.source", "pk": 8734, "fields": {"orig_filename": "Minarelli-Fitzgerald_Alexander_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309f.", "author": "", "orig_id": 1413716}}, {"model": "metainfo.source", "pk": 8735, "fields": {"orig_filename": "Minarik_Stanislav_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 310", "author": "", "orig_id": 1413717}}, {"model": "metainfo.source", "pk": 8736, "fields": {"orig_filename": "Mingazzi-Modigliano_Eduard_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 310f.", "author": "", "orig_id": 1413718}}, {"model": "metainfo.source", "pk": 8737, "fields": {"orig_filename": "Minichthaler_Joseph_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413719}}, {"model": "metainfo.source", "pk": 8738, "fields": {"orig_filename": "Miniussi_Lorenzo_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413720}}, {"model": "metainfo.source", "pk": 8739, "fields": {"orig_filename": "Mink_Therese_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413721}}, {"model": "metainfo.source", "pk": 8740, "fields": {"orig_filename": "Minor_Jakob_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311f.", "author": "", "orig_id": 1413722}}, {"model": "metainfo.source", "pk": 8741, "fields": {"orig_filename": "Minutillo_Franz_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 312f.", "author": "", "orig_id": 1413723}}, {"model": "metainfo.source", "pk": 8742, "fields": {"orig_filename": "Miodonski_Adam-Stefan_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 313", "author": "", "orig_id": 1413724}}, {"model": "metainfo.source", "pk": 8743, "fields": {"orig_filename": "Mioni_Ugo_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 313f.", "author": "", "orig_id": 1413725}}, {"model": "metainfo.source", "pk": 8744, "fields": {"orig_filename": "Mirani_Johann-Heinrich_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314", "author": "", "orig_id": 1413726}}, {"model": "metainfo.source", "pk": 8745, "fields": {"orig_filename": "Mirani_Therese_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314", "author": "", "orig_id": 1413796}}, {"model": "metainfo.source", "pk": 8746, "fields": {"orig_filename": "Mircse-Baratos_Janos_1834_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314f.", "author": "", "orig_id": 1413797}}, {"model": "metainfo.source", "pk": 8747, "fields": {"orig_filename": "Miricka_August_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413798}}, {"model": "metainfo.source", "pk": 8748, "fields": {"orig_filename": "Mirijovsky_Emanuel_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413799}}, {"model": "metainfo.source", "pk": 8749, "fields": {"orig_filename": "Mirtl_Franz_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413800}}, {"model": "metainfo.source", "pk": 8750, "fields": {"orig_filename": "Misar_Olga_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2186744}}, {"model": "metainfo.source", "pk": 8751, "fields": {"orig_filename": "Mischler_Ernst_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315f.", "author": "", "orig_id": 1413801}}, {"model": "metainfo.source", "pk": 8752, "fields": {"orig_filename": "Misel_Jadwiga-Helena_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 316f.", "author": "", "orig_id": 1413802}}, {"model": "metainfo.source", "pk": 8753, "fields": {"orig_filename": "Mises_Herman_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 317", "author": "", "orig_id": 1413804}}, {"model": "metainfo.source", "pk": 8754, "fields": {"orig_filename": "Mises_Majer-Jerachmiel_1801_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 317f.", "author": "", "orig_id": 1413806}}, {"model": "metainfo.source", "pk": 8755, "fields": {"orig_filename": "Misic_Alojzije_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318", "author": "", "orig_id": 1413808}}, {"model": "metainfo.source", "pk": 8756, "fields": {"orig_filename": "Misik_Stefan_1843_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318", "author": "", "orig_id": 1413809}}, {"model": "metainfo.source", "pk": 8757, "fields": {"orig_filename": "Misiolek_Leon_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318f.", "author": "", "orig_id": 1413810}}, {"model": "metainfo.source", "pk": 8758, "fields": {"orig_filename": "Miskatovic_Josip_1836_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319", "author": "", "orig_id": 1413811}}, {"model": "metainfo.source", "pk": 8759, "fields": {"orig_filename": "Miskov_Andjeo-Marija_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319", "author": "", "orig_id": 1411340}}, {"model": "metainfo.source", "pk": 8760, "fields": {"orig_filename": "Mislej_Jozef-Peter_1761_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319f.", "author": "", "orig_id": 1413812}}, {"model": "metainfo.source", "pk": 8761, "fields": {"orig_filename": "Missia_Jakob_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413813}}, {"model": "metainfo.source", "pk": 8762, "fields": {"orig_filename": "Missong_Alexander_1837_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413815}}, {"model": "metainfo.source", "pk": 8763, "fields": {"orig_filename": "Misson_Josef_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413814}}, {"model": "metainfo.source", "pk": 8764, "fields": {"orig_filename": "Mitis_Georg_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320f.", "author": "", "orig_id": 1413816}}, {"model": "metainfo.source", "pk": 8765, "fields": {"orig_filename": "Mitis_Heinrich_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321", "author": "", "orig_id": 1413817}}, {"model": "metainfo.source", "pk": 8766, "fields": {"orig_filename": "Mitis_Ignaz_1771_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321", "author": "", "orig_id": 1413818}}, {"model": "metainfo.source", "pk": 8767, "fields": {"orig_filename": "Mitis_Silvio_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321f.", "author": "", "orig_id": 1413819}}, {"model": "metainfo.source", "pk": 8768, "fields": {"orig_filename": "Mitlacher_Wilhelm_1872_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322", "author": "", "orig_id": 1413887}}, {"model": "metainfo.source", "pk": 8769, "fields": {"orig_filename": "Mitrofanovici_Vasile_1831_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322", "author": "", "orig_id": 1413888}}, {"model": "metainfo.source", "pk": 8770, "fields": {"orig_filename": "Mitrovics_Gyula_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413890}}, {"model": "metainfo.source", "pk": 8771, "fields": {"orig_filename": "Mitrovic_Andro_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322f.", "author": "", "orig_id": 1413889}}, {"model": "metainfo.source", "pk": 8772, "fields": {"orig_filename": "Mitrovsky_Milan-Thomka_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413891}}, {"model": "metainfo.source", "pk": 8773, "fields": {"orig_filename": "Mitscha-Maerheim_Josef_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413892}}, {"model": "metainfo.source", "pk": 8774, "fields": {"orig_filename": "Mitteis_Heinrich_1889_1952.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1462886}}, {"model": "metainfo.source", "pk": 8775, "fields": {"orig_filename": "Mitteis_Ludwig_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323f.", "author": "", "orig_id": 1413893}}, {"model": "metainfo.source", "pk": 8776, "fields": {"orig_filename": "Mittell_Karl-Josef_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324", "author": "", "orig_id": 1413894}}, {"model": "metainfo.source", "pk": 8777, "fields": {"orig_filename": "Mitterberger_Karl-Philipp_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324f.", "author": "", "orig_id": 1413895}}, {"model": "metainfo.source", "pk": 8778, "fields": {"orig_filename": "Mitterer_Franz-Xaver_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324f.", "author": "", "orig_id": 1411339}}, {"model": "metainfo.source", "pk": 8779, "fields": {"orig_filename": "Mitterer_Ignaz_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 325", "author": "", "orig_id": 1413896}}, {"model": "metainfo.source", "pk": 8780, "fields": {"orig_filename": "Mitterhofer_Leopold_1761_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 325f.", "author": "", "orig_id": 1413897}}, {"model": "metainfo.source", "pk": 8781, "fields": {"orig_filename": "Mitterhofer_Peter_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 326", "author": "", "orig_id": 1413898}}, {"model": "metainfo.source", "pk": 8782, "fields": {"orig_filename": "Mitterrutzner_Johannes-Chrysostomus_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 326f.", "author": "", "orig_id": 1413899}}, {"model": "metainfo.source", "pk": 8783, "fields": {"orig_filename": "Mitterwurzer_Anton-Friedrich_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 327", "author": "", "orig_id": 1413900}}, {"model": "metainfo.source", "pk": 8784, "fields": {"orig_filename": "Mitterwurzer_Anton-Georg_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 327f.", "author": "", "orig_id": 1413901}}, {"model": "metainfo.source", "pk": 8785, "fields": {"orig_filename": "Mitterwurzer_Wilhelmine_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 328", "author": "", "orig_id": 1413902}}, {"model": "metainfo.source", "pk": 8786, "fields": {"orig_filename": "Mittler_Johann_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 328", "author": "", "orig_id": 1413903}}, {"model": "metainfo.source", "pk": 8787, "fields": {"orig_filename": "Mittrowsky-Mittrowitz-Nemischl_Anton-Friedrich_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413904}}, {"model": "metainfo.source", "pk": 8788, "fields": {"orig_filename": "Mittrowsky-Mittrowitz-Nemischl_Josef_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413905}}, {"model": "metainfo.source", "pk": 8789, "fields": {"orig_filename": "Mitzka_Franz-Xaver_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413906}}, {"model": "metainfo.source", "pk": 8790, "fields": {"orig_filename": "Mladenovic_Georg_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329f.", "author": "", "orig_id": 1413907}}, {"model": "metainfo.source", "pk": 8791, "fields": {"orig_filename": "Mlakar_Ivan_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330", "author": "", "orig_id": 1413908}}, {"model": "metainfo.source", "pk": 8792, "fields": {"orig_filename": "Mlcoch_Melichar_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330", "author": "", "orig_id": 1413909}}, {"model": "metainfo.source", "pk": 8793, "fields": {"orig_filename": "Mlodnicka_Wanda_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330f.", "author": "", "orig_id": 1413910}}, {"model": "metainfo.source", "pk": 8794, "fields": {"orig_filename": "Mlodnicki_Karol_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 331", "author": "", "orig_id": 1412457}}, {"model": "metainfo.source", "pk": 8795, "fields": {"orig_filename": "Mlynek_Ludwik_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 331f.", "author": "", "orig_id": 1412458}}, {"model": "metainfo.source", "pk": 8796, "fields": {"orig_filename": "Moar_Francesco_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332", "author": "", "orig_id": 1412460}}, {"model": "metainfo.source", "pk": 8797, "fields": {"orig_filename": "Mochnacki_Bazyli_1777_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332f.", "author": "", "orig_id": 1412461}}, {"model": "metainfo.source", "pk": 8798, "fields": {"orig_filename": "Mochnacki_Edmund_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333", "author": "", "orig_id": 1412462}}, {"model": "metainfo.source", "pk": 8799, "fields": {"orig_filename": "Mocker_Ferdinand_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333", "author": "", "orig_id": 1412463}}, {"model": "metainfo.source", "pk": 8800, "fields": {"orig_filename": "Mocker_Josef_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333f.", "author": "", "orig_id": 1412464}}, {"model": "metainfo.source", "pk": 8801, "fields": {"orig_filename": "Mocko_Jan_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334", "author": "", "orig_id": 1412465}}, {"model": "metainfo.source", "pk": 8802, "fields": {"orig_filename": "Mocnik_Franz_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334", "author": "", "orig_id": 1412466}}, {"model": "metainfo.source", "pk": 8803, "fields": {"orig_filename": "Mocsary-Bocsar_Lajos_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335", "author": "", "orig_id": 1412468}}, {"model": "metainfo.source", "pk": 8804, "fields": {"orig_filename": "Mocsary_Sandor_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334f.", "author": "", "orig_id": 1412467}}, {"model": "metainfo.source", "pk": 8805, "fields": {"orig_filename": "Moczik_Felizian-Josef_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335", "author": "", "orig_id": 1412469}}, {"model": "metainfo.source", "pk": 8806, "fields": {"orig_filename": "Modell_Elisabeth_1820_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335f.", "author": "", "orig_id": 1412470}}, {"model": "metainfo.source", "pk": 8807, "fields": {"orig_filename": "Modena_Giacomo_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 336", "author": "", "orig_id": 1412471}}, {"model": "metainfo.source", "pk": 8808, "fields": {"orig_filename": "Modena_Gustavo_1803_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 336f.", "author": "", "orig_id": 1412472}}, {"model": "metainfo.source", "pk": 8809, "fields": {"orig_filename": "Modl_Josef_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412473}}, {"model": "metainfo.source", "pk": 8810, "fields": {"orig_filename": "Modl_Viktoria_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412474}}, {"model": "metainfo.source", "pk": 8811, "fields": {"orig_filename": "Modrinjak_Stefan_1774_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412475}}, {"model": "metainfo.source", "pk": 8812, "fields": {"orig_filename": "Moeckeln_Karl_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337f.", "author": "", "orig_id": 1412477}}, {"model": "metainfo.source", "pk": 8813, "fields": {"orig_filename": "Moeckesch_Martin-Samuel_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338", "author": "", "orig_id": 1412478}}, {"model": "metainfo.source", "pk": 8814, "fields": {"orig_filename": "Micholitsch_Adalbert_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265", "author": "", "orig_id": 1413179}}, {"model": "metainfo.source", "pk": 8815, "fields": {"orig_filename": "Micklitz_Julius_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 266", "author": "", "orig_id": 1413181}}, {"model": "metainfo.source", "pk": 8816, "fields": {"orig_filename": "Micklitz_Robert_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 266f.", "author": "", "orig_id": 1413182}}, {"model": "metainfo.source", "pk": 8817, "fields": {"orig_filename": "Micklitz_Theodor_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 267", "author": "", "orig_id": 1413183}}, {"model": "metainfo.source", "pk": 8818, "fields": {"orig_filename": "Mickl_Johann_1893_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265f.", "author": "", "orig_id": 1413180}}, {"model": "metainfo.source", "pk": 8819, "fields": {"orig_filename": "Micskey_Imre_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 267f.", "author": "", "orig_id": 1413184}}, {"model": "metainfo.source", "pk": 8820, "fields": {"orig_filename": "Miczynski_Kazimierz_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268", "author": "", "orig_id": 1413185}}, {"model": "metainfo.source", "pk": 8821, "fields": {"orig_filename": "Midelburg_Leopold_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268", "author": "", "orig_id": 1413186}}, {"model": "metainfo.source", "pk": 8822, "fields": {"orig_filename": "Mielichhofer_Alphons_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268f.", "author": "", "orig_id": 1413258}}, {"model": "metainfo.source", "pk": 8823, "fields": {"orig_filename": "Mielichhofer_Ludwig_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269", "author": "", "orig_id": 1413259}}, {"model": "metainfo.source", "pk": 8824, "fields": {"orig_filename": "Mielichhofer_Mathias_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269", "author": "", "orig_id": 1413260}}, {"model": "metainfo.source", "pk": 8825, "fields": {"orig_filename": "Mieroszewski_Stanislaw_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269f.", "author": "", "orig_id": 1413261}}, {"model": "metainfo.source", "pk": 8826, "fields": {"orig_filename": "Miesbach_Alois_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 270f.", "author": "", "orig_id": 1413262}}, {"model": "metainfo.source", "pk": 8827, "fields": {"orig_filename": "Mieses_Fabius_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 271", "author": "", "orig_id": 1413263}}, {"model": "metainfo.source", "pk": 8828, "fields": {"orig_filename": "Mieses_Jehuda-Lejb_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 271f.", "author": "", "orig_id": 1413264}}, {"model": "metainfo.source", "pk": 8829, "fields": {"orig_filename": "Mieses_Mathias_1885_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413265}}, {"model": "metainfo.source", "pk": 8830, "fields": {"orig_filename": "Miesowicz_Erwin_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413266}}, {"model": "metainfo.source", "pk": 8831, "fields": {"orig_filename": "Miessl-Treuenstadt_Felix_1778_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413268}}, {"model": "metainfo.source", "pk": 8832, "fields": {"orig_filename": "Miess_Friedrich_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413267}}, {"model": "metainfo.source", "pk": 8833, "fields": {"orig_filename": "Miethke_Otto-Maria_1881_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413269}}, {"model": "metainfo.source", "pk": 8834, "fields": {"orig_filename": "Mietzl-Stende_August_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413270}}, {"model": "metainfo.source", "pk": 8835, "fields": {"orig_filename": "Migerka_Franz_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413271}}, {"model": "metainfo.source", "pk": 8836, "fields": {"orig_filename": "Migerka_Helene_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413272}}, {"model": "metainfo.source", "pk": 8837, "fields": {"orig_filename": "Migerka_Katharina_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413273}}, {"model": "metainfo.source", "pk": 8838, "fields": {"orig_filename": "Migotti_Adolf_1850_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413274}}, {"model": "metainfo.source", "pk": 8839, "fields": {"orig_filename": "Mihacevic_Lovro_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274f.", "author": "", "orig_id": 1413275}}, {"model": "metainfo.source", "pk": 8840, "fields": {"orig_filename": "Mihalik-Hernadszurdok_Jozsef_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275", "author": "", "orig_id": 1413276}}, {"model": "metainfo.source", "pk": 8841, "fields": {"orig_filename": "Mihalik-Madunycz_Janos_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275", "author": "", "orig_id": 1413277}}, {"model": "metainfo.source", "pk": 8842, "fields": {"orig_filename": "Mihaljevic_Benko_1768_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275f.", "author": "", "orig_id": 1413278}}, {"model": "metainfo.source", "pk": 8843, "fields": {"orig_filename": "Mihaljevic_Michael_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413279}}, {"model": "metainfo.source", "pk": 8844, "fields": {"orig_filename": "Mihalkovics_Geza_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413349}}, {"model": "metainfo.source", "pk": 8845, "fields": {"orig_filename": "Mihalovich_Oedoen_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413353}}, {"model": "metainfo.source", "pk": 8846, "fields": {"orig_filename": "Mihalovic_Antun_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413350}}, {"model": "metainfo.source", "pk": 8847, "fields": {"orig_filename": "Mihalovic_Josip_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276f.", "author": "", "orig_id": 1413351}}, {"model": "metainfo.source", "pk": 8848, "fields": {"orig_filename": "Mihalyfi_Akos_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413354}}, {"model": "metainfo.source", "pk": 8849, "fields": {"orig_filename": "Mihalyfi_Karoly_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413355}}, {"model": "metainfo.source", "pk": 8850, "fields": {"orig_filename": "Mihalyi-Boegoez_Karoly_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277f.", "author": "", "orig_id": 1413356}}, {"model": "metainfo.source", "pk": 8851, "fields": {"orig_filename": "Mihanovic-Frankenhardt_Karl_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278", "author": "", "orig_id": 1413357}}, {"model": "metainfo.source", "pk": 8852, "fields": {"orig_filename": "Mihanovic-Petropoljski_Antun_1796_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278", "author": "", "orig_id": 1413358}}, {"model": "metainfo.source", "pk": 8853, "fields": {"orig_filename": "Mihevc_Ignacij_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278f.", "author": "", "orig_id": 1413359}}, {"model": "metainfo.source", "pk": 8854, "fields": {"orig_filename": "Mihicic_Milica_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 279", "author": "", "orig_id": 1413360}}, {"model": "metainfo.source", "pk": 8855, "fields": {"orig_filename": "Mikan_Johann-Christian_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280", "author": "", "orig_id": 1413363}}, {"model": "metainfo.source", "pk": 8856, "fields": {"orig_filename": "Mika_Sandor_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280", "author": "", "orig_id": 1413362}}, {"model": "metainfo.source", "pk": 8857, "fields": {"orig_filename": "Mikes-Zabola_Kelemen_1820_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281", "author": "", "orig_id": 1413365}}, {"model": "metainfo.source", "pk": 8858, "fields": {"orig_filename": "Mikes_Adolf_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280f.", "author": "", "orig_id": 1413364}}, {"model": "metainfo.source", "pk": 8859, "fields": {"orig_filename": "Miklavec_Peter_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281", "author": "", "orig_id": 1413366}}, {"model": "metainfo.source", "pk": 8860, "fields": {"orig_filename": "Miklossy_Josef_1792_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 282", "author": "", "orig_id": 1413369}}, {"model": "metainfo.source", "pk": 8861, "fields": {"orig_filename": "Miklosy_Istvan_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283", "author": "", "orig_id": 1413370}}, {"model": "metainfo.source", "pk": 8862, "fields": {"orig_filename": "Miklousic_Tomas_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283", "author": "", "orig_id": 1413436}}, {"model": "metainfo.source", "pk": 8863, "fields": {"orig_filename": "Miko-Hidveg_Imre_1805_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283f.", "author": "", "orig_id": 1413437}}, {"model": "metainfo.source", "pk": 8864, "fields": {"orig_filename": "Mikolasch_Karol-Henryk_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284", "author": "", "orig_id": 1413438}}, {"model": "metainfo.source", "pk": 8865, "fields": {"orig_filename": "Mikosch_Karl_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284", "author": "", "orig_id": 1413439}}, {"model": "metainfo.source", "pk": 8866, "fields": {"orig_filename": "Mikovec_Ferdinand-Bretislav_1826_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284f.", "author": "", "orig_id": 1413440}}, {"model": "metainfo.source", "pk": 8867, "fields": {"orig_filename": "Mikovics_Robert_1852_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285", "author": "", "orig_id": 1413441}}, {"model": "metainfo.source", "pk": 8868, "fields": {"orig_filename": "Mikscha_Ferdinand_1829_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413444}}, {"model": "metainfo.source", "pk": 8869, "fields": {"orig_filename": "Mikschowsky_Franz_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413445}}, {"model": "metainfo.source", "pk": 8870, "fields": {"orig_filename": "Miksch_Hans_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285", "author": "", "orig_id": 1413442}}, {"model": "metainfo.source", "pk": 8871, "fields": {"orig_filename": "Miksch_Johann-Alois_1765_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285f.", "author": "", "orig_id": 1413443}}, {"model": "metainfo.source", "pk": 8872, "fields": {"orig_filename": "Mikse_Mikolas_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413446}}, {"model": "metainfo.source", "pk": 8873, "fields": {"orig_filename": "Miksicek_Matej_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413447}}, {"model": "metainfo.source", "pk": 8874, "fields": {"orig_filename": "Mikszath_Kalman_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286f.", "author": "", "orig_id": 1413448}}, {"model": "metainfo.source", "pk": 8875, "fields": {"orig_filename": "Mikulas_Josef_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 287f.", "author": "", "orig_id": 1413449}}, {"model": "metainfo.source", "pk": 8876, "fields": {"orig_filename": "Mikulicz-Radecki_Johann_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288f.", "author": "", "orig_id": 1413452}}, {"model": "metainfo.source", "pk": 8877, "fields": {"orig_filename": "Mikulicz-Radecki_Valerian_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289", "author": "", "orig_id": 1413453}}, {"model": "metainfo.source", "pk": 8878, "fields": {"orig_filename": "Mikulic_Martin_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288", "author": "", "orig_id": 1413451}}, {"model": "metainfo.source", "pk": 8879, "fields": {"orig_filename": "Mikuli_Karl_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288", "author": "", "orig_id": 1413450}}, {"model": "metainfo.source", "pk": 8880, "fields": {"orig_filename": "Mikulowski-Pomorski_Jozef_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289", "author": "", "orig_id": 1413454}}, {"model": "metainfo.source", "pk": 8881, "fields": {"orig_filename": "Mik_Josef_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 279f.", "author": "", "orig_id": 1413361}}, {"model": "metainfo.source", "pk": 8882, "fields": {"orig_filename": "Miladinovic_Milena_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289f.", "author": "", "orig_id": 1413455}}, {"model": "metainfo.source", "pk": 8883, "fields": {"orig_filename": "Milakovic_Josip_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290", "author": "", "orig_id": 1413456}}, {"model": "metainfo.source", "pk": 8884, "fields": {"orig_filename": "Milanes_Wolfgang_1767_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290f.", "author": "", "orig_id": 1413526}}, {"model": "metainfo.source", "pk": 8885, "fields": {"orig_filename": "Milan_Adele_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290", "author": "", "orig_id": 1413457}}, {"model": "metainfo.source", "pk": 8886, "fields": {"orig_filename": "Milasinovic_Franjo_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291", "author": "", "orig_id": 1413527}}, {"model": "metainfo.source", "pk": 8887, "fields": {"orig_filename": "Milaszewski_Adam_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291", "author": "", "orig_id": 1413528}}, {"model": "metainfo.source", "pk": 8888, "fields": {"orig_filename": "Milcetic_Ivan_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291f.", "author": "", "orig_id": 1413529}}, {"model": "metainfo.source", "pk": 8889, "fields": {"orig_filename": "Milcinovic_Andrija_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292", "author": "", "orig_id": 1413530}}, {"model": "metainfo.source", "pk": 8890, "fields": {"orig_filename": "Milcinski_Fran_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292", "author": "", "orig_id": 1413531}}, {"model": "metainfo.source", "pk": 8891, "fields": {"orig_filename": "Milder-Hauptmann_Anna-Pauline_1785_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 294", "author": "", "orig_id": 1413535}}, {"model": "metainfo.source", "pk": 8892, "fields": {"orig_filename": "Milde_Hugo_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292f.", "author": "", "orig_id": 1413532}}, {"model": "metainfo.source", "pk": 8893, "fields": {"orig_filename": "Milde_Johann_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 293", "author": "", "orig_id": 1413533}}, {"model": "metainfo.source", "pk": 8894, "fields": {"orig_filename": "Milde_Vinzenz-Eduard_1777_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 293f.", "author": "", "orig_id": 1413534}}, {"model": "metainfo.source", "pk": 8895, "fields": {"orig_filename": "Mildner_Moritz_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 294f.", "author": "", "orig_id": 1413536}}, {"model": "metainfo.source", "pk": 8896, "fields": {"orig_filename": "Mildschuh_Vilibald_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413537}}, {"model": "metainfo.source", "pk": 8897, "fields": {"orig_filename": "Miler_Ferdo-Zivko_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413538}}, {"model": "metainfo.source", "pk": 8898, "fields": {"orig_filename": "Mileta_Jeronim_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413539}}, {"model": "metainfo.source", "pk": 8899, "fields": {"orig_filename": "Miletic_Ambro_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295f.", "author": "", "orig_id": 1413540}}, {"model": "metainfo.source", "pk": 8900, "fields": {"orig_filename": "Miletic_Stjepan_1868_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296", "author": "", "orig_id": 1413541}}, {"model": "metainfo.source", "pk": 8901, "fields": {"orig_filename": "Miletic_Svetozar_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296", "author": "", "orig_id": 1413542}}, {"model": "metainfo.source", "pk": 8902, "fields": {"orig_filename": "Milewski_Jozef_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296f.", "author": "", "orig_id": 1413543}}, {"model": "metainfo.source", "pk": 8903, "fields": {"orig_filename": "Milicevic_Franjo_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297f.", "author": "", "orig_id": 1413617}}, {"model": "metainfo.source", "pk": 8904, "fields": {"orig_filename": "Milic_Jozef-Rudolf_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297", "author": "", "orig_id": 1413544}}, {"model": "metainfo.source", "pk": 8905, "fields": {"orig_filename": "Milic_Vicko_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297", "author": "", "orig_id": 1413545}}, {"model": "metainfo.source", "pk": 8906, "fields": {"orig_filename": "Milinovic_Simun_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 298", "author": "", "orig_id": 1413618}}, {"model": "metainfo.source", "pk": 8907, "fields": {"orig_filename": "Militzer_Hermann_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 298f.", "author": "", "orig_id": 1413619}}, {"model": "metainfo.source", "pk": 8908, "fields": {"orig_filename": "Millanich_Alois_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299", "author": "", "orig_id": 1413620}}, {"model": "metainfo.source", "pk": 8909, "fields": {"orig_filename": "Millard_Edward_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299", "author": "", "orig_id": 1413621}}, {"model": "metainfo.source", "pk": 8910, "fields": {"orig_filename": "Millauer_Franz-Xaver_1784_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299f.", "author": "", "orig_id": 1413622}}, {"model": "metainfo.source", "pk": 8911, "fields": {"orig_filename": "Milleker_Felix_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300", "author": "", "orig_id": 1413624}}, {"model": "metainfo.source", "pk": 8912, "fields": {"orig_filename": "Millemoth_Anton_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300f.", "author": "", "orig_id": 1413625}}, {"model": "metainfo.source", "pk": 8913, "fields": {"orig_filename": "Millenkovich_Benno_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301", "author": "", "orig_id": 1413626}}, {"model": "metainfo.source", "pk": 8914, "fields": {"orig_filename": "Millenkovich_Max_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301", "author": "", "orig_id": 1413627}}, {"model": "metainfo.source", "pk": 8915, "fields": {"orig_filename": "Millenkovich_Stefan_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301f.", "author": "", "orig_id": 1413628}}, {"model": "metainfo.source", "pk": 8916, "fields": {"orig_filename": "Merkl-Reinsee_Jakob_1814_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412803}}, {"model": "metainfo.source", "pk": 8917, "fields": {"orig_filename": "Merklas_Wenzel_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231f.", "author": "", "orig_id": 1412804}}, {"model": "metainfo.source", "pk": 8918, "fields": {"orig_filename": "Merkle_Meinrad_1781_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412805}}, {"model": "metainfo.source", "pk": 8919, "fields": {"orig_filename": "Merkl_Adolf-Julius_1890_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1469550}}, {"model": "metainfo.source", "pk": 8920, "fields": {"orig_filename": "Merkl_Rudolf_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412802}}, {"model": "metainfo.source", "pk": 8921, "fields": {"orig_filename": "Merkt_Eduard_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412806}}, {"model": "metainfo.source", "pk": 8922, "fields": {"orig_filename": "Merk_Ludwig_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230f.", "author": "", "orig_id": 1412731}}, {"model": "metainfo.source", "pk": 8923, "fields": {"orig_filename": "Merlato_Gaetano_1807_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412807}}, {"model": "metainfo.source", "pk": 8924, "fields": {"orig_filename": "Merlet_Alexander-Erwin_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412813}}, {"model": "metainfo.source", "pk": 8925, "fields": {"orig_filename": "Merlitschek_Rita_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412814}}, {"model": "metainfo.source", "pk": 8926, "fields": {"orig_filename": "Merode_Karl_1853_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412815}}, {"model": "metainfo.source", "pk": 8927, "fields": {"orig_filename": "Mersich_Johann_1862_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234", "author": "", "orig_id": 1412817}}, {"model": "metainfo.source", "pk": 8928, "fields": {"orig_filename": "Mersich_Martin_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234", "author": "", "orig_id": 1412818}}, {"model": "metainfo.source", "pk": 8929, "fields": {"orig_filename": "Mersich_Matthaeus_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234f.", "author": "", "orig_id": 1412819}}, {"model": "metainfo.source", "pk": 8930, "fields": {"orig_filename": "Mersi_Andreas_1779_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412816}}, {"model": "metainfo.source", "pk": 8931, "fields": {"orig_filename": "Merta_Anton_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412820}}, {"model": "metainfo.source", "pk": 8932, "fields": {"orig_filename": "Merta_Emanuel_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412821}}, {"model": "metainfo.source", "pk": 8933, "fields": {"orig_filename": "Mertens_Franz_1840_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412823}}, {"model": "metainfo.source", "pk": 8934, "fields": {"orig_filename": "Mertens_Heinrich_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412824}}, {"model": "metainfo.source", "pk": 8935, "fields": {"orig_filename": "Mertens_Karl_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412890}}, {"model": "metainfo.source", "pk": 8936, "fields": {"orig_filename": "Mertens_Ludwig_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412891}}, {"model": "metainfo.source", "pk": 8937, "fields": {"orig_filename": "Merten_Eduard_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412822}}, {"model": "metainfo.source", "pk": 8938, "fields": {"orig_filename": "Mertha_Rudolf_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412893}}, {"model": "metainfo.source", "pk": 8939, "fields": {"orig_filename": "Merth_Bernhard_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236f.", "author": "", "orig_id": 1412892}}, {"model": "metainfo.source", "pk": 8940, "fields": {"orig_filename": "Mertz_Johann-Kaspar_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412894}}, {"model": "metainfo.source", "pk": 8941, "fields": {"orig_filename": "Merunowicz_Teofil_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412895}}, {"model": "metainfo.source", "pk": 8942, "fields": {"orig_filename": "Merveldt_Franz_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237f.", "author": "", "orig_id": 1412896}}, {"model": "metainfo.source", "pk": 8943, "fields": {"orig_filename": "Merwart_Karl_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238", "author": "", "orig_id": 1412897}}, {"model": "metainfo.source", "pk": 8944, "fields": {"orig_filename": "Merwart_Paul_1855_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238", "author": "", "orig_id": 1412898}}, {"model": "metainfo.source", "pk": 8945, "fields": {"orig_filename": "Merz_Alfred_1880_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238f.", "author": "", "orig_id": 1412899}}, {"model": "metainfo.source", "pk": 8946, "fields": {"orig_filename": "Meschendoerfer_Josef-Traugott_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 239", "author": "", "orig_id": 1412900}}, {"model": "metainfo.source", "pk": 8947, "fields": {"orig_filename": "Mesesnel_France_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 239f.", "author": "", "orig_id": 1412901}}, {"model": "metainfo.source", "pk": 8948, "fields": {"orig_filename": "Mesic_Matija_1826_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 240", "author": "", "orig_id": 1412902}}, {"model": "metainfo.source", "pk": 8949, "fields": {"orig_filename": "Mesk_Josef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 240f.", "author": "", "orig_id": 1412903}}, {"model": "metainfo.source", "pk": 8950, "fields": {"orig_filename": "Mesota_Ioan-G_1837_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241", "author": "", "orig_id": 1412904}}, {"model": "metainfo.source", "pk": 8951, "fields": {"orig_filename": "Messenboeck_Hubert_1887_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241", "author": "", "orig_id": 1412905}}, {"model": "metainfo.source", "pk": 8952, "fields": {"orig_filename": "Messenhauser_Wenzel-Georg_1811_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241f.", "author": "", "orig_id": 1412906}}, {"model": "metainfo.source", "pk": 8953, "fields": {"orig_filename": "Messerklinger_Johann_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242", "author": "", "orig_id": 1412908}}, {"model": "metainfo.source", "pk": 8954, "fields": {"orig_filename": "Messer_Max_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242", "author": "", "orig_id": 1412907}}, {"model": "metainfo.source", "pk": 8955, "fields": {"orig_filename": "Messmer_Alois_1822_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242f.", "author": "", "orig_id": 1412909}}, {"model": "metainfo.source", "pk": 8956, "fields": {"orig_filename": "Messner_Anton_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412910}}, {"model": "metainfo.source", "pk": 8957, "fields": {"orig_filename": "Messner_Josef_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412911}}, {"model": "metainfo.source", "pk": 8958, "fields": {"orig_filename": "Messner_Josef_1837_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412912}}, {"model": "metainfo.source", "pk": 8959, "fields": {"orig_filename": "Messner_Paul_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243f.", "author": "", "orig_id": 1412913}}, {"model": "metainfo.source", "pk": 8960, "fields": {"orig_filename": "Messner_Theresia_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 244", "author": "", "orig_id": 1412914}}, {"model": "metainfo.source", "pk": 8961, "fields": {"orig_filename": "Mestan_Franz_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 244f.", "author": "", "orig_id": 1412985}}, {"model": "metainfo.source", "pk": 8962, "fields": {"orig_filename": "Mestrozi_Paul_1771_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 245", "author": "", "orig_id": 1412986}}, {"model": "metainfo.source", "pk": 8963, "fields": {"orig_filename": "Mestrozi_Paul_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 245f.", "author": "", "orig_id": 1412987}}, {"model": "metainfo.source", "pk": 8964, "fields": {"orig_filename": "Meszaros_Lazar_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246", "author": "", "orig_id": 1412988}}, {"model": "metainfo.source", "pk": 8965, "fields": {"orig_filename": "Meszoely_Geza_1844_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246", "author": "", "orig_id": 1412989}}, {"model": "metainfo.source", "pk": 8966, "fields": {"orig_filename": "Metelko_Fran_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246f.", "author": "", "orig_id": 1412990}}, {"model": "metainfo.source", "pk": 8967, "fields": {"orig_filename": "Metianu_Ioan_1828_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247", "author": "", "orig_id": 1412991}}, {"model": "metainfo.source", "pk": 8968, "fields": {"orig_filename": "Metnitz_Gustav_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247", "author": "", "orig_id": 1412992}}, {"model": "metainfo.source", "pk": 8969, "fields": {"orig_filename": "Metschl_Karl_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247f.", "author": "", "orig_id": 1412993}}, {"model": "metainfo.source", "pk": 8970, "fields": {"orig_filename": "Mettelet_Anatol_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 248", "author": "", "orig_id": 1412994}}, {"model": "metainfo.source", "pk": 8971, "fields": {"orig_filename": "Metternich-Sandor_Pauline_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 248f.", "author": "", "orig_id": 1412995}}, {"model": "metainfo.source", "pk": 8972, "fields": {"orig_filename": "Metternich-Winneburg_Klemens-Wenzel-Lothar_1773_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 249f.", "author": "", "orig_id": 1412996}}, {"model": "metainfo.source", "pk": 8973, "fields": {"orig_filename": "Metternich-Winneburg_Richard-Klemens_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250", "author": "", "orig_id": 1412997}}, {"model": "metainfo.source", "pk": 8974, "fields": {"orig_filename": "Metz-Spondalunga_Rudolf_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250f.", "author": "", "orig_id": 1412999}}, {"model": "metainfo.source", "pk": 8975, "fields": {"orig_filename": "Metzburg_Johann_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251", "author": "", "orig_id": 1413000}}, {"model": "metainfo.source", "pk": 8976, "fields": {"orig_filename": "Metzger_Hugo_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251", "author": "", "orig_id": 1413001}}, {"model": "metainfo.source", "pk": 8977, "fields": {"orig_filename": "Metzger_Josef_1870_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251f.", "author": "", "orig_id": 1413002}}, {"model": "metainfo.source", "pk": 8978, "fields": {"orig_filename": "Metzger_Max-Josef_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252", "author": "", "orig_id": 1413003}}, {"model": "metainfo.source", "pk": 8979, "fields": {"orig_filename": "Metzler-Loewy_Pauline_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252f.", "author": "", "orig_id": 1413005}}, {"model": "metainfo.source", "pk": 8980, "fields": {"orig_filename": "Metzler_Johann-Jakob_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252", "author": "", "orig_id": 1413004}}, {"model": "metainfo.source", "pk": 8981, "fields": {"orig_filename": "Metzner_Hugo_1882_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253", "author": "", "orig_id": 1413006}}, {"model": "metainfo.source", "pk": 8982, "fields": {"orig_filename": "Metzner_Karl_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253", "author": "", "orig_id": 1413007}}, {"model": "metainfo.source", "pk": 8983, "fields": {"orig_filename": "Metz_Karl_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250", "author": "", "orig_id": 1412998}}, {"model": "metainfo.source", "pk": 8984, "fields": {"orig_filename": "Meurer_Julius_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253f.", "author": "", "orig_id": 1413077}}, {"model": "metainfo.source", "pk": 8985, "fields": {"orig_filename": "Meusburger_Karl_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 254", "author": "", "orig_id": 1413078}}, {"model": "metainfo.source", "pk": 8986, "fields": {"orig_filename": "Meyndt_Georg_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 254f.", "author": "", "orig_id": 1413079}}, {"model": "metainfo.source", "pk": 8987, "fields": {"orig_filename": "Meynert_Hermann-Guenther_1808_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 255", "author": "", "orig_id": 1413080}}, {"model": "metainfo.source", "pk": 8988, "fields": {"orig_filename": "Meynert_Theodor_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 255f.", "author": "", "orig_id": 1413081}}, {"model": "metainfo.source", "pk": 8989, "fields": {"orig_filename": "Meznik_Anton_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 256", "author": "", "orig_id": 1413082}}, {"model": "metainfo.source", "pk": 8990, "fields": {"orig_filename": "Miari_Antonio_1754_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 256", "author": "", "orig_id": 1413083}}, {"model": "metainfo.source", "pk": 8991, "fields": {"orig_filename": "Micatek_Ludovit_1874_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413084}}, {"model": "metainfo.source", "pk": 8992, "fields": {"orig_filename": "Miceu_Giuseppe_1873_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413085}}, {"model": "metainfo.source", "pk": 8993, "fields": {"orig_filename": "Michaelis_Franz_1841_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257f.", "author": "", "orig_id": 1413087}}, {"model": "metainfo.source", "pk": 8994, "fields": {"orig_filename": "Michaelis_Johann_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413088}}, {"model": "metainfo.source", "pk": 8995, "fields": {"orig_filename": "Michaelis_Ludwig-Johann_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413089}}, {"model": "metainfo.source", "pk": 8996, "fields": {"orig_filename": "Michael_Emil_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413086}}, {"model": "metainfo.source", "pk": 8997, "fields": {"orig_filename": "Michalek_Ludwig_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413090}}, {"model": "metainfo.source", "pk": 8998, "fields": {"orig_filename": "Michalitschke_Anton_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258f.", "author": "", "orig_id": 1413091}}, {"model": "metainfo.source", "pk": 8999, "fields": {"orig_filename": "Michalovich_Johann_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259", "author": "", "orig_id": 1413092}}, {"model": "metainfo.source", "pk": 9000, "fields": {"orig_filename": "Michalowski_Jozef_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259", "author": "", "orig_id": 1413093}}, {"model": "metainfo.source", "pk": 9001, "fields": {"orig_filename": "Michalowski_Piotr_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259f.", "author": "", "orig_id": 1413094}}, {"model": "metainfo.source", "pk": 9002, "fields": {"orig_filename": "Michalski_Konstanty_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 260", "author": "", "orig_id": 1413095}}, {"model": "metainfo.source", "pk": 9003, "fields": {"orig_filename": "Michalski_Michal_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 260f.", "author": "", "orig_id": 1413096}}, {"model": "metainfo.source", "pk": 9004, "fields": {"orig_filename": "Michejda_Franciszek_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261", "author": "", "orig_id": 1413097}}, {"model": "metainfo.source", "pk": 9005, "fields": {"orig_filename": "Michejda_Jan_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261", "author": "", "orig_id": 1413098}}, {"model": "metainfo.source", "pk": 9006, "fields": {"orig_filename": "Michejda_Wladyslaw_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261f.", "author": "", "orig_id": 1413166}}, {"model": "metainfo.source", "pk": 9007, "fields": {"orig_filename": "Michelazzi_Agostino_1732_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413169}}, {"model": "metainfo.source", "pk": 9008, "fields": {"orig_filename": "Michelic_Anton_1748_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413170}}, {"model": "metainfo.source", "pk": 9009, "fields": {"orig_filename": "Michelstaedter_Carlo_1887_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262f.", "author": "", "orig_id": 1413171}}, {"model": "metainfo.source", "pk": 9010, "fields": {"orig_filename": "Michel_Adalbert-Theodor_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413167}}, {"model": "metainfo.source", "pk": 9011, "fields": {"orig_filename": "Michel_Philipp-Adalbert_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413168}}, {"model": "metainfo.source", "pk": 9012, "fields": {"orig_filename": "Michetschlaeger_Heinrich_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263", "author": "", "orig_id": 1413172}}, {"model": "metainfo.source", "pk": 9013, "fields": {"orig_filename": "Micheuz_Jurij_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263", "author": "", "orig_id": 1413173}}, {"model": "metainfo.source", "pk": 9014, "fields": {"orig_filename": "Michl_Frantisek_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263f.", "author": "", "orig_id": 1413174}}, {"model": "metainfo.source", "pk": 9015, "fields": {"orig_filename": "Michl_Josef-Vaclav_1810_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264", "author": "", "orig_id": 1413175}}, {"model": "metainfo.source", "pk": 9016, "fields": {"orig_filename": "Michl_Leopold_1764_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264", "author": "", "orig_id": 1413176}}, {"model": "metainfo.source", "pk": 9017, "fields": {"orig_filename": "Michna-Watzenau_Emanuel_1772_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264f.", "author": "", "orig_id": 1413177}}, {"model": "metainfo.source", "pk": 9018, "fields": {"orig_filename": "Michnay_Andreas-Daniel_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265", "author": "", "orig_id": 1413178}}, {"model": "metainfo.source", "pk": 9019, "fields": {"orig_filename": "Meichl_Georg_1791_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193f.", "author": "", "orig_id": 1413787}}, {"model": "metainfo.source", "pk": 9020, "fields": {"orig_filename": "Meilbek_Josef_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 194", "author": "", "orig_id": 1413788}}, {"model": "metainfo.source", "pk": 9021, "fields": {"orig_filename": "Meiller_Andreas_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 194f.", "author": "", "orig_id": 1413789}}, {"model": "metainfo.source", "pk": 9022, "fields": {"orig_filename": "Meineckova_Tylda_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195", "author": "", "orig_id": 1413791}}, {"model": "metainfo.source", "pk": 9023, "fields": {"orig_filename": "Meinert_Joseph-Georg_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195f.", "author": "", "orig_id": 1413792}}, {"model": "metainfo.source", "pk": 9024, "fields": {"orig_filename": "Meingast_Adalbert-Mathias_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 196", "author": "", "orig_id": 1413793}}, {"model": "metainfo.source", "pk": 9025, "fields": {"orig_filename": "Meinl_Julius_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 196f.", "author": "", "orig_id": 1413794}}, {"model": "metainfo.source", "pk": 9026, "fields": {"orig_filename": "Meinong-Handschuchsheim_Alexius_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 197f.", "author": "", "orig_id": 1413795}}, {"model": "metainfo.source", "pk": 9027, "fields": {"orig_filename": "Meinong-Handschuchsheim_Rafael_1849_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413865}}, {"model": "metainfo.source", "pk": 9028, "fields": {"orig_filename": "Meinzinger-Meinzingen_Franz_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413866}}, {"model": "metainfo.source", "pk": 9029, "fields": {"orig_filename": "Meisels_Dow-Beer_1798_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198f.", "author": "", "orig_id": 1413868}}, {"model": "metainfo.source", "pk": 9030, "fields": {"orig_filename": "Meisel_Franz_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413867}}, {"model": "metainfo.source", "pk": 9031, "fields": {"orig_filename": "Meisl_Hugo_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 199", "author": "", "orig_id": 1413869}}, {"model": "metainfo.source", "pk": 9032, "fields": {"orig_filename": "Meisl_Karl_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 199f.", "author": "", "orig_id": 1413870}}, {"model": "metainfo.source", "pk": 9033, "fields": {"orig_filename": "Meissl_Emerich_1855_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200", "author": "", "orig_id": 1413871}}, {"model": "metainfo.source", "pk": 9034, "fields": {"orig_filename": "Meissner_Alfred_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200", "author": "", "orig_id": 1413873}}, {"model": "metainfo.source", "pk": 9035, "fields": {"orig_filename": "Meissner_Alfred_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200f.", "author": "", "orig_id": 1413872}}, {"model": "metainfo.source", "pk": 9036, "fields": {"orig_filename": "Meissner_Franziska_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 201", "author": "", "orig_id": 1413874}}, {"model": "metainfo.source", "pk": 9037, "fields": {"orig_filename": "Meissner_Johannes-Friedrich_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 201f.", "author": "", "orig_id": 1413875}}, {"model": "metainfo.source", "pk": 9038, "fields": {"orig_filename": "Meissner_Karl-Ludwig_1809_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202", "author": "", "orig_id": 1412873}}, {"model": "metainfo.source", "pk": 9039, "fields": {"orig_filename": "Meissner_Leopold-Florian_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202", "author": "", "orig_id": 1413876}}, {"model": "metainfo.source", "pk": 9040, "fields": {"orig_filename": "Meissner_Paul-Traugott_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202f.", "author": "", "orig_id": 1413877}}, {"model": "metainfo.source", "pk": 9041, "fields": {"orig_filename": "Meister_Johann_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203", "author": "", "orig_id": 1413878}}, {"model": "metainfo.source", "pk": 9042, "fields": {"orig_filename": "Meixner-Zweienstamm_Otto_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206", "author": "", "orig_id": 1412524}}, {"model": "metainfo.source", "pk": 9043, "fields": {"orig_filename": "Meixner_Adolf_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413880}}, {"model": "metainfo.source", "pk": 9044, "fields": {"orig_filename": "Meixner_Heinrich_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413881}}, {"model": "metainfo.source", "pk": 9045, "fields": {"orig_filename": "Meixner_Johann_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413882}}, {"model": "metainfo.source", "pk": 9046, "fields": {"orig_filename": "Meixner_Josef_1889_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204f.", "author": "", "orig_id": 1413883}}, {"model": "metainfo.source", "pk": 9047, "fields": {"orig_filename": "Meixner_Julius_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 205", "author": "", "orig_id": 1413884}}, {"model": "metainfo.source", "pk": 9048, "fields": {"orig_filename": "Meixner_Karl-Wilhelm_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 205f.", "author": "", "orig_id": 1413885}}, {"model": "metainfo.source", "pk": 9049, "fields": {"orig_filename": "Mejsnar_Hynek-Jaroslav_1837_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206f.", "author": "", "orig_id": 1412525}}, {"model": "metainfo.source", "pk": 9050, "fields": {"orig_filename": "Mekler_Siegfried_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 207", "author": "", "orig_id": 1412526}}, {"model": "metainfo.source", "pk": 9051, "fields": {"orig_filename": "Melan_Joseph_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 207f.", "author": "", "orig_id": 1412527}}, {"model": "metainfo.source", "pk": 9052, "fields": {"orig_filename": "Melas_Heinrich_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412528}}, {"model": "metainfo.source", "pk": 9053, "fields": {"orig_filename": "Melchiori_Josef_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412529}}, {"model": "metainfo.source", "pk": 9054, "fields": {"orig_filename": "Melczer_Gustav_1869_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412530}}, {"model": "metainfo.source", "pk": 9055, "fields": {"orig_filename": "Meletzki_Emil_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208f.", "author": "", "orig_id": 1412531}}, {"model": "metainfo.source", "pk": 9056, "fields": {"orig_filename": "Melichar_Frantisek_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209", "author": "", "orig_id": 1412533}}, {"model": "metainfo.source", "pk": 9057, "fields": {"orig_filename": "Melichar_Franz_1835_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209f.", "author": "", "orig_id": 1412534}}, {"model": "metainfo.source", "pk": 9058, "fields": {"orig_filename": "Melichar_Josef-Jaroslav_1819_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210", "author": "", "orig_id": 1412535}}, {"model": "metainfo.source", "pk": 9059, "fields": {"orig_filename": "Melichar_Leopold_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210", "author": "", "orig_id": 1412536}}, {"model": "metainfo.source", "pk": 9060, "fields": {"orig_filename": "Melicher_Ludwig-Josef_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210f.", "author": "", "orig_id": 1412537}}, {"model": "metainfo.source", "pk": 9061, "fields": {"orig_filename": "Melicher_Theophil_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211", "author": "", "orig_id": 1412538}}, {"model": "metainfo.source", "pk": 9062, "fields": {"orig_filename": "Melic_Johann_1763_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209", "author": "", "orig_id": 1412532}}, {"model": "metainfo.source", "pk": 9063, "fields": {"orig_filename": "Melingo_Achilles_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211", "author": "", "orig_id": 1412539}}, {"model": "metainfo.source", "pk": 9064, "fields": {"orig_filename": "Melion_Josef_1813_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211f.", "author": "", "orig_id": 1412540}}, {"model": "metainfo.source", "pk": 9065, "fields": {"orig_filename": "Melion_Julius_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412541}}, {"model": "metainfo.source", "pk": 9066, "fields": {"orig_filename": "Melisova_Antonie_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412543}}, {"model": "metainfo.source", "pk": 9067, "fields": {"orig_filename": "Melis_Emanuel-Anton_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412542}}, {"model": "metainfo.source", "pk": 9068, "fields": {"orig_filename": "Melkus_Dragan_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212f.", "author": "", "orig_id": 1412544}}, {"model": "metainfo.source", "pk": 9069, "fields": {"orig_filename": "Mellitzer_Georg_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214", "author": "", "orig_id": 1412616}}, {"model": "metainfo.source", "pk": 9070, "fields": {"orig_filename": "Melly_Eduard_1814_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214f.", "author": "", "orig_id": 1412617}}, {"model": "metainfo.source", "pk": 9071, "fields": {"orig_filename": "Mell_Alexander_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 213", "author": "", "orig_id": 1412545}}, {"model": "metainfo.source", "pk": 9072, "fields": {"orig_filename": "Mell_Anton_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 213f.", "author": "", "orig_id": 1412546}}, {"model": "metainfo.source", "pk": 9073, "fields": {"orig_filename": "Mell_Richard_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214", "author": "", "orig_id": 1412547}}, {"model": "metainfo.source", "pk": 9074, "fields": {"orig_filename": "Meltzl_Hugo_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215", "author": "", "orig_id": 1412618}}, {"model": "metainfo.source", "pk": 9075, "fields": {"orig_filename": "Meltzl_Oskar_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215", "author": "", "orig_id": 1412619}}, {"model": "metainfo.source", "pk": 9076, "fields": {"orig_filename": "Melzer-Orienburg_Joseph_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412626}}, {"model": "metainfo.source", "pk": 9077, "fields": {"orig_filename": "Melzer_Anton_1781_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215f.", "author": "", "orig_id": 1412620}}, {"model": "metainfo.source", "pk": 9078, "fields": {"orig_filename": "Melzer_Anton_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412621}}, {"model": "metainfo.source", "pk": 9079, "fields": {"orig_filename": "Melzer_Jakob_1782_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412622}}, {"model": "metainfo.source", "pk": 9080, "fields": {"orig_filename": "Melzer_Karl_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412623}}, {"model": "metainfo.source", "pk": 9081, "fields": {"orig_filename": "Melzer_Otto_1869_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216f.", "author": "", "orig_id": 1412624}}, {"model": "metainfo.source", "pk": 9082, "fields": {"orig_filename": "Mencik_Ferdinand_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412628}}, {"model": "metainfo.source", "pk": 9083, "fields": {"orig_filename": "Mencinger_Janez_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217f.", "author": "", "orig_id": 1412627}}, {"model": "metainfo.source", "pk": 9084, "fields": {"orig_filename": "Mencl_Josef-Branislav_1815_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 218", "author": "", "orig_id": 1412629}}, {"model": "metainfo.source", "pk": 9085, "fields": {"orig_filename": "Mendel_Gregor_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 218f.", "author": "", "orig_id": 1412630}}, {"model": "metainfo.source", "pk": 9086, "fields": {"orig_filename": "Meneghelli_Antonio-Maria_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 219", "author": "", "orig_id": 1412631}}, {"model": "metainfo.source", "pk": 9087, "fields": {"orig_filename": "Meneghini_Giuseppe_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 219f.", "author": "", "orig_id": 1412632}}, {"model": "metainfo.source", "pk": 9088, "fields": {"orig_filename": "Menevischian_Gabriel_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 220", "author": "", "orig_id": 1412633}}, {"model": "metainfo.source", "pk": 9089, "fields": {"orig_filename": "Menger_Anton_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 220f.", "author": "", "orig_id": 1412634}}, {"model": "metainfo.source", "pk": 9090, "fields": {"orig_filename": "Menger_Karl_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 221f.", "author": "", "orig_id": 1412635}}, {"model": "metainfo.source", "pk": 9091, "fields": {"orig_filename": "Menger_Max_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 222", "author": "", "orig_id": 1412636}}, {"model": "metainfo.source", "pk": 9092, "fields": {"orig_filename": "Menghin-Brezburg_Giuseppe_1786_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412708}}, {"model": "metainfo.source", "pk": 9093, "fields": {"orig_filename": "Menghin_Alois_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 222f.", "author": "", "orig_id": 1412707}}, {"model": "metainfo.source", "pk": 9094, "fields": {"orig_filename": "Menghin_Oswald_1888_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431851}}, {"model": "metainfo.source", "pk": 9095, "fields": {"orig_filename": "Mennel_Alois_1894_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1470164}}, {"model": "metainfo.source", "pk": 9096, "fields": {"orig_filename": "Mennel_Josef_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412709}}, {"model": "metainfo.source", "pk": 9097, "fields": {"orig_filename": "Mensdorff-Pouilly-Dietrichstein_Albert_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412711}}, {"model": "metainfo.source", "pk": 9098, "fields": {"orig_filename": "Mensdorff-Pouilly_Arthur_1817_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412710}}, {"model": "metainfo.source", "pk": 9099, "fields": {"orig_filename": "Mensi-Klarbach_Daniel_1781_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412712}}, {"model": "metainfo.source", "pk": 9100, "fields": {"orig_filename": "Mensi-Klarbach_Franz_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412714}}, {"model": "metainfo.source", "pk": 9101, "fields": {"orig_filename": "Mensik_Jan_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224f.", "author": "", "orig_id": 1412713}}, {"model": "metainfo.source", "pk": 9102, "fields": {"orig_filename": "Mentasti_Alois_1887_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1455889}}, {"model": "metainfo.source", "pk": 9103, "fields": {"orig_filename": "Mentovich_Ferenc_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225", "author": "", "orig_id": 1412715}}, {"model": "metainfo.source", "pk": 9104, "fields": {"orig_filename": "Menzel_Adolf_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225f.", "author": "", "orig_id": 1412717}}, {"model": "metainfo.source", "pk": 9105, "fields": {"orig_filename": "Menzel_Karl_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 226", "author": "", "orig_id": 1412718}}, {"model": "metainfo.source", "pk": 9106, "fields": {"orig_filename": "Menz_Karl_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225", "author": "", "orig_id": 1412716}}, {"model": "metainfo.source", "pk": 9107, "fields": {"orig_filename": "Meran_Anna-Maria_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 226f.", "author": "", "orig_id": 1412719}}, {"model": "metainfo.source", "pk": 9108, "fields": {"orig_filename": "Meraviglia-Crivelli_Rudolf-Johann_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412720}}, {"model": "metainfo.source", "pk": 9109, "fields": {"orig_filename": "Mercy_Heinrich_1826_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412721}}, {"model": "metainfo.source", "pk": 9110, "fields": {"orig_filename": "Merenyi_Lajos_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412722}}, {"model": "metainfo.source", "pk": 9111, "fields": {"orig_filename": "Meretta_Anna_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227f.", "author": "", "orig_id": 1412723}}, {"model": "metainfo.source", "pk": 9112, "fields": {"orig_filename": "Merey-Kapos-Mere_Kajetan_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 228", "author": "", "orig_id": 1412724}}, {"model": "metainfo.source", "pk": 9113, "fields": {"orig_filename": "Merhar_Alojzij_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 228f.", "author": "", "orig_id": 1412725}}, {"model": "metainfo.source", "pk": 9114, "fields": {"orig_filename": "Merhar_Ivan_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229", "author": "", "orig_id": 1412726}}, {"model": "metainfo.source", "pk": 9115, "fields": {"orig_filename": "Merhaut_Josef_1863_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229", "author": "", "orig_id": 1412727}}, {"model": "metainfo.source", "pk": 9116, "fields": {"orig_filename": "Meringer_Rudolf_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229f.", "author": "", "orig_id": 1412728}}, {"model": "metainfo.source", "pk": 9117, "fields": {"orig_filename": "Merizzi_Erik_1873_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230", "author": "", "orig_id": 1412729}}, {"model": "metainfo.source", "pk": 9118, "fields": {"orig_filename": "Merkel_Rudolf_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412801}}, {"model": "metainfo.source", "pk": 9119, "fields": {"orig_filename": "Maurovic_Antun_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413348}}, {"model": "metainfo.source", "pk": 9120, "fields": {"orig_filename": "Mauss_Anton_1868_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413413}}, {"model": "metainfo.source", "pk": 9121, "fields": {"orig_filename": "Mauss_Jozef_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413414}}, {"model": "metainfo.source", "pk": 9122, "fields": {"orig_filename": "Mauthner-Mauthstein_Ludwig-Wilhelm_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 163", "author": "", "orig_id": 1413423}}, {"model": "metainfo.source", "pk": 9123, "fields": {"orig_filename": "Mauthner_Eugen-Moritz_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 160", "author": "", "orig_id": 1413415}}, {"model": "metainfo.source", "pk": 9124, "fields": {"orig_filename": "Mauthner_Fritz_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 160f.", "author": "", "orig_id": 1413416}}, {"model": "metainfo.source", "pk": 9125, "fields": {"orig_filename": "Mauthner_Gustav_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 161", "author": "", "orig_id": 1413417}}, {"model": "metainfo.source", "pk": 9126, "fields": {"orig_filename": "Mauthner_Josef_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 161f.", "author": "", "orig_id": 1413418}}, {"model": "metainfo.source", "pk": 9127, "fields": {"orig_filename": "Mauthner_Julius_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162", "author": "", "orig_id": 1413419}}, {"model": "metainfo.source", "pk": 9128, "fields": {"orig_filename": "Mauthner_Ludwig_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162", "author": "", "orig_id": 1413420}}, {"model": "metainfo.source", "pk": 9129, "fields": {"orig_filename": "Mauthner_Max_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162f.", "author": "", "orig_id": 1413421}}, {"model": "metainfo.source", "pk": 9130, "fields": {"orig_filename": "Mauthner_Philipp_1835_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 163", "author": "", "orig_id": 1413422}}, {"model": "metainfo.source", "pk": 9131, "fields": {"orig_filename": "Mautner-Markhof_Adolf-Ignaz_1801_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 165f.", "author": "", "orig_id": 1413429}}, {"model": "metainfo.source", "pk": 9132, "fields": {"orig_filename": "Mautner-Markhof_Editha_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166", "author": "", "orig_id": 1413430}}, {"model": "metainfo.source", "pk": 9133, "fields": {"orig_filename": "Mautner-Markhof_Georg-Anton_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166", "author": "", "orig_id": 1413431}}, {"model": "metainfo.source", "pk": 9134, "fields": {"orig_filename": "Mautner-Markhof_Georg-Heinrich_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166f.", "author": "", "orig_id": 1413432}}, {"model": "metainfo.source", "pk": 9135, "fields": {"orig_filename": "Mautner-Markhof_Karl-Ferdinand_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167", "author": "", "orig_id": 1413433}}, {"model": "metainfo.source", "pk": 9136, "fields": {"orig_filename": "Mautner-Markhof_Manfred_1903_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1425243}}, {"model": "metainfo.source", "pk": 9137, "fields": {"orig_filename": "Mautner_Eduard_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 164", "author": "", "orig_id": 1413424}}, {"model": "metainfo.source", "pk": 9138, "fields": {"orig_filename": "Mautner_Isaac_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413425}}, {"model": "metainfo.source", "pk": 9139, "fields": {"orig_filename": "Mautner_Isidor_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413426}}, {"model": "metainfo.source", "pk": 9140, "fields": {"orig_filename": "Mautner_Konrad_1880_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413427}}, {"model": "metainfo.source", "pk": 9141, "fields": {"orig_filename": "Mautner_Stephan_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413428}}, {"model": "metainfo.source", "pk": 9142, "fields": {"orig_filename": "Mautschka_Hans_1888_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167", "author": "", "orig_id": 1413434}}, {"model": "metainfo.source", "pk": 9143, "fields": {"orig_filename": "Max-Wachstein_Emanuel_1810_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168", "author": "", "orig_id": 1413505}}, {"model": "metainfo.source", "pk": 9144, "fields": {"orig_filename": "Maximilian-Josef___1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168f.", "author": "", "orig_id": 1413507}}, {"model": "metainfo.source", "pk": 9145, "fields": {"orig_filename": "Max_Gabriel-Cornelius_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167f.", "author": "", "orig_id": 1413435}}, {"model": "metainfo.source", "pk": 9146, "fields": {"orig_filename": "Max_Josef_1804_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168", "author": "", "orig_id": 1413504}}, {"model": "metainfo.source", "pk": 9147, "fields": {"orig_filename": "Mayburger_Josef_1814_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170", "author": "", "orig_id": 1413510}}, {"model": "metainfo.source", "pk": 9148, "fields": {"orig_filename": "Maydl_Karel_1853_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170f.", "author": "", "orig_id": 1413511}}, {"model": "metainfo.source", "pk": 9149, "fields": {"orig_filename": "Maylender_Michele_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171", "author": "", "orig_id": 1413512}}, {"model": "metainfo.source", "pk": 9150, "fields": {"orig_filename": "Mayseder_Joseph_1789_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171", "author": "", "orig_id": 1413513}}, {"model": "metainfo.source", "pk": 9151, "fields": {"orig_filename": "Maytner_Alberta_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171f.", "author": "", "orig_id": 1413514}}, {"model": "metainfo.source", "pk": 9152, "fields": {"orig_filename": "Maywald_Karl_1814_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413515}}, {"model": "metainfo.source", "pk": 9153, "fields": {"orig_filename": "May_Albert-Alexis_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 169f.", "author": "", "orig_id": 1413508}}, {"model": "metainfo.source", "pk": 9154, "fields": {"orig_filename": "May_Matthias_1884_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170", "author": "", "orig_id": 1413509}}, {"model": "metainfo.source", "pk": 9155, "fields": {"orig_filename": "Mazagg_Siegfried_1902_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413516}}, {"model": "metainfo.source", "pk": 9156, "fields": {"orig_filename": "Mazanowski_Antoni_1858_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413517}}, {"model": "metainfo.source", "pk": 9157, "fields": {"orig_filename": "Mazegger_Bernard_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172f.", "author": "", "orig_id": 1413518}}, {"model": "metainfo.source", "pk": 9158, "fields": {"orig_filename": "Mazegger_Bernhard_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 173", "author": "", "orig_id": 1413519}}, {"model": "metainfo.source", "pk": 9159, "fields": {"orig_filename": "Mazelle_Eduard_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 173f.", "author": "", "orig_id": 1413520}}, {"model": "metainfo.source", "pk": 9160, "fields": {"orig_filename": "Mazgon_Anton_1812_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413521}}, {"model": "metainfo.source", "pk": 9161, "fields": {"orig_filename": "Mazuranic_Antun_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413522}}, {"model": "metainfo.source", "pk": 9162, "fields": {"orig_filename": "Mazuranic_Bogoslav_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413523}}, {"model": "metainfo.source", "pk": 9163, "fields": {"orig_filename": "Mazuranic_Fran-Vladimir_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174f.", "author": "", "orig_id": 1413524}}, {"model": "metainfo.source", "pk": 9164, "fields": {"orig_filename": "Mazuranic_Ivan_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 175f.", "author": "", "orig_id": 1413525}}, {"model": "metainfo.source", "pk": 9165, "fields": {"orig_filename": "Mazuranic_Matija_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 176", "author": "", "orig_id": 1413593}}, {"model": "metainfo.source", "pk": 9166, "fields": {"orig_filename": "Mazuranic_Vladimir_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 176", "author": "", "orig_id": 1413594}}, {"model": "metainfo.source", "pk": 9167, "fields": {"orig_filename": "Mazzetti-Roccanova_Anton_1784_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413595}}, {"model": "metainfo.source", "pk": 9168, "fields": {"orig_filename": "Mazzoleni_Paolo_1831_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413596}}, {"model": "metainfo.source", "pk": 9169, "fields": {"orig_filename": "Mazzucato_Alberto_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413597}}, {"model": "metainfo.source", "pk": 9170, "fields": {"orig_filename": "Mazzura_Lav_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177f.", "author": "", "orig_id": 1413598}}, {"model": "metainfo.source", "pk": 9171, "fields": {"orig_filename": "Mazzura_Sime_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413599}}, {"model": "metainfo.source", "pk": 9172, "fields": {"orig_filename": "Mebus_Eduard_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413600}}, {"model": "metainfo.source", "pk": 9173, "fields": {"orig_filename": "Mebus_Maximiliane_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413601}}, {"model": "metainfo.source", "pk": 9174, "fields": {"orig_filename": "Mecenseffy_Artur_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178f.", "author": "", "orig_id": 1413602}}, {"model": "metainfo.source", "pk": 9175, "fields": {"orig_filename": "Mecenseffy_Emil_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179", "author": "", "orig_id": 1413603}}, {"model": "metainfo.source", "pk": 9176, "fields": {"orig_filename": "Mecherzynski_Karol_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179", "author": "", "orig_id": 1413604}}, {"model": "metainfo.source", "pk": 9177, "fields": {"orig_filename": "Mechetti_Pietro_1777_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179f.", "author": "", "orig_id": 1413605}}, {"model": "metainfo.source", "pk": 9178, "fields": {"orig_filename": "Mechwart-Belecska_Andreas_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180", "author": "", "orig_id": 1413606}}, {"model": "metainfo.source", "pk": 9179, "fields": {"orig_filename": "Mecsery-Tsoor_Daniel_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180", "author": "", "orig_id": 1413607}}, {"model": "metainfo.source", "pk": 9180, "fields": {"orig_filename": "Mecsery-Tsoor_Karl_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180f.", "author": "", "orig_id": 1413608}}, {"model": "metainfo.source", "pk": 9181, "fields": {"orig_filename": "Medakovic_Bogdan_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181", "author": "", "orig_id": 1413609}}, {"model": "metainfo.source", "pk": 9182, "fields": {"orig_filename": "Medakovic_Danilo_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181", "author": "", "orig_id": 1413610}}, {"model": "metainfo.source", "pk": 9183, "fields": {"orig_filename": "Medek_Rudolf_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181f.", "author": "", "orig_id": 1413611}}, {"model": "metainfo.source", "pk": 9184, "fields": {"orig_filename": "Medelhammer_Albin-Johann_1776_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182", "author": "", "orig_id": 1413612}}, {"model": "metainfo.source", "pk": 9185, "fields": {"orig_filename": "Medelsky_Hermine_1884_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2008003}}, {"model": "metainfo.source", "pk": 9186, "fields": {"orig_filename": "Medelsky_Josef_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182", "author": "", "orig_id": 1413613}}, {"model": "metainfo.source", "pk": 9187, "fields": {"orig_filename": "Mederitsch_Johann_1752_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183", "author": "", "orig_id": 1413616}}, {"model": "metainfo.source", "pk": 9188, "fields": {"orig_filename": "Meder_Josef_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183", "author": "", "orig_id": 1413615}}, {"model": "metainfo.source", "pk": 9189, "fields": {"orig_filename": "Medgyes_Lajos_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183f.", "author": "", "orig_id": 1413685}}, {"model": "metainfo.source", "pk": 9190, "fields": {"orig_filename": "Medic_Danilo_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413686}}, {"model": "metainfo.source", "pk": 9191, "fields": {"orig_filename": "Medic_Mojo_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413687}}, {"model": "metainfo.source", "pk": 9192, "fields": {"orig_filename": "Medinger_Johann_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413688}}, {"model": "metainfo.source", "pk": 9193, "fields": {"orig_filename": "Medinger_Wilhelm_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184f.", "author": "", "orig_id": 1413689}}, {"model": "metainfo.source", "pk": 9194, "fields": {"orig_filename": "Medini_Milorad_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185", "author": "", "orig_id": 1413690}}, {"model": "metainfo.source", "pk": 9195, "fields": {"orig_filename": "Mediz_Emilie_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185", "author": "", "orig_id": 1413691}}, {"model": "metainfo.source", "pk": 9196, "fields": {"orig_filename": "Mediz_Karl_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185f.", "author": "", "orig_id": 1413692}}, {"model": "metainfo.source", "pk": 9197, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Alajos_1784_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186", "author": "", "orig_id": 1413693}}, {"model": "metainfo.source", "pk": 9198, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Cezar_1824_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186", "author": "", "orig_id": 1413694}}, {"model": "metainfo.source", "pk": 9199, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Denes_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186f.", "author": "", "orig_id": 1413695}}, {"model": "metainfo.source", "pk": 9200, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Laszlo_1819_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187", "author": "", "orig_id": 1413696}}, {"model": "metainfo.source", "pk": 9201, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Laszlo_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187", "author": "", "orig_id": 1413697}}, {"model": "metainfo.source", "pk": 9202, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Sandor_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187f.", "author": "", "orig_id": 1413698}}, {"model": "metainfo.source", "pk": 9203, "fields": {"orig_filename": "Medovic_Celestin_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413699}}, {"model": "metainfo.source", "pk": 9204, "fields": {"orig_filename": "Medvecky_Karl-Anton_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413700}}, {"model": "metainfo.source", "pk": 9205, "fields": {"orig_filename": "Medveczky_Frigyes_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413701}}, {"model": "metainfo.source", "pk": 9206, "fields": {"orig_filename": "Medved_Anton_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188f.", "author": "", "orig_id": 1413702}}, {"model": "metainfo.source", "pk": 9207, "fields": {"orig_filename": "Medved_Anton_1869_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 189", "author": "", "orig_id": 1413773}}, {"model": "metainfo.source", "pk": 9208, "fields": {"orig_filename": "Meeraus_Robert_1899_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 189f.", "author": "", "orig_id": 1413774}}, {"model": "metainfo.source", "pk": 9209, "fields": {"orig_filename": "Megerle-Muehlfeld_Eugen-Alexander_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190f.", "author": "", "orig_id": 1413777}}, {"model": "metainfo.source", "pk": 9210, "fields": {"orig_filename": "Megerle-Muehlfeld_Johann-Georg_1780_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413778}}, {"model": "metainfo.source", "pk": 9211, "fields": {"orig_filename": "Megerle_Julius_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190", "author": "", "orig_id": 1413775}}, {"model": "metainfo.source", "pk": 9212, "fields": {"orig_filename": "Megerle_Therese_1813_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190", "author": "", "orig_id": 1413776}}, {"model": "metainfo.source", "pk": 9213, "fields": {"orig_filename": "Megusar_Franc_1876_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413779}}, {"model": "metainfo.source", "pk": 9214, "fields": {"orig_filename": "Megyeri_Dezsoe_1857_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413780}}, {"model": "metainfo.source", "pk": 9215, "fields": {"orig_filename": "Megyeri_Karoly_1798_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191f.", "author": "", "orig_id": 1413781}}, {"model": "metainfo.source", "pk": 9216, "fields": {"orig_filename": "Mehes_Samuel_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192", "author": "", "orig_id": 1413782}}, {"model": "metainfo.source", "pk": 9217, "fields": {"orig_filename": "Mehoffer_Joseph_1786_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192", "author": "", "orig_id": 1413783}}, {"model": "metainfo.source", "pk": 9218, "fields": {"orig_filename": "Mehoffer_Jozef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192f.", "author": "", "orig_id": 1413784}}, {"model": "metainfo.source", "pk": 9219, "fields": {"orig_filename": "Mehoffer_Rudolf_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193", "author": "", "orig_id": 1413785}}, {"model": "metainfo.source", "pk": 9220, "fields": {"orig_filename": "Mehr_Robert_1886_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193", "author": "", "orig_id": 1413786}}, {"model": "metainfo.source", "pk": 9221, "fields": {"orig_filename": "Maschek-Maasburg_Michael-Friedrich_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1408573}}, {"model": "metainfo.source", "pk": 9222, "fields": {"orig_filename": "Maschek_Friedrich_1849_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1412604}}, {"model": "metainfo.source", "pk": 9223, "fields": {"orig_filename": "Maschek_Heinrich_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1408572}}, {"model": "metainfo.source", "pk": 9224, "fields": {"orig_filename": "Maschka_Josef_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27), S. 126", "author": "", "orig_id": 1467314}}, {"model": "metainfo.source", "pk": 9225, "fields": {"orig_filename": "Maschke_Hans_1853_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408575}}, {"model": "metainfo.source", "pk": 9226, "fields": {"orig_filename": "Masek_Frantisek_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408576}}, {"model": "metainfo.source", "pk": 9227, "fields": {"orig_filename": "Masek_Gaspar_1794_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408577}}, {"model": "metainfo.source", "pk": 9228, "fields": {"orig_filename": "Masek_Kamilo_1831_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126f.", "author": "", "orig_id": 1408578}}, {"model": "metainfo.source", "pk": 9229, "fields": {"orig_filename": "Masek_Karel_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 127", "author": "", "orig_id": 1408579}}, {"model": "metainfo.source", "pk": 9230, "fields": {"orig_filename": "Masek_Pavel-Lambert_1761_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 127", "author": "", "orig_id": 1408580}}, {"model": "metainfo.source", "pk": 9231, "fields": {"orig_filename": "Masek_Vincenz_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 128", "author": "", "orig_id": 1408581}}, {"model": "metainfo.source", "pk": 9232, "fields": {"orig_filename": "Maselj_Fran_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 128f.", "author": "", "orig_id": 1408582}}, {"model": "metainfo.source", "pk": 9233, "fields": {"orig_filename": "Masic_Nikola_1852_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129", "author": "", "orig_id": 1408583}}, {"model": "metainfo.source", "pk": 9234, "fields": {"orig_filename": "Masik_Emil_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129", "author": "", "orig_id": 1413054}}, {"model": "metainfo.source", "pk": 9235, "fields": {"orig_filename": "Maska_Karel-Jaroslav_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129f.", "author": "", "orig_id": 1413055}}, {"model": "metainfo.source", "pk": 9236, "fields": {"orig_filename": "Maslowski_Ludwik_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413056}}, {"model": "metainfo.source", "pk": 9237, "fields": {"orig_filename": "Masoch_Franciszek_1763_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413057}}, {"model": "metainfo.source", "pk": 9238, "fields": {"orig_filename": "Massak_Franz_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413058}}, {"model": "metainfo.source", "pk": 9239, "fields": {"orig_filename": "Massalongo_Abramo-Bartolommeo_1824_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130f.", "author": "", "orig_id": 1413059}}, {"model": "metainfo.source", "pk": 9240, "fields": {"orig_filename": "Massalongo_Caro-Benigno_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 131", "author": "", "orig_id": 1413060}}, {"model": "metainfo.source", "pk": 9241, "fields": {"orig_filename": "Massari_Julius_1845_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 131f.", "author": "", "orig_id": 1413061}}, {"model": "metainfo.source", "pk": 9242, "fields": {"orig_filename": "Mastalka_Jindrich_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413062}}, {"model": "metainfo.source", "pk": 9243, "fields": {"orig_filename": "Maszkowski_Jan_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413063}}, {"model": "metainfo.source", "pk": 9244, "fields": {"orig_filename": "Maszkowski_Karol_1830_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413064}}, {"model": "metainfo.source", "pk": 9245, "fields": {"orig_filename": "Maszkowski_Karol_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413065}}, {"model": "metainfo.source", "pk": 9246, "fields": {"orig_filename": "Maszkowski_Marceli_1837_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413066}}, {"model": "metainfo.source", "pk": 9247, "fields": {"orig_filename": "Masznyik_Endre_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413067}}, {"model": "metainfo.source", "pk": 9248, "fields": {"orig_filename": "Mataja_Emilie_1855_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133f.", "author": "", "orig_id": 1413068}}, {"model": "metainfo.source", "pk": 9249, "fields": {"orig_filename": "Mataja_Heinrich_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 134f.", "author": "", "orig_id": 1413069}}, {"model": "metainfo.source", "pk": 9250, "fields": {"orig_filename": "Mataja_Viktor_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413070}}, {"model": "metainfo.source", "pk": 9251, "fields": {"orig_filename": "Matakiewicz_Antoni_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413071}}, {"model": "metainfo.source", "pk": 9252, "fields": {"orig_filename": "Matakiewicz_Maksymilian_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413072}}, {"model": "metainfo.source", "pk": 9253, "fields": {"orig_filename": "Matas_Antun-Konstantin_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413073}}, {"model": "metainfo.source", "pk": 9254, "fields": {"orig_filename": "Matcovich_Enrico_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413074}}, {"model": "metainfo.source", "pk": 9255, "fields": {"orig_filename": "Mategczek_Eduard_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413075}}, {"model": "metainfo.source", "pk": 9256, "fields": {"orig_filename": "Matejcek_Antonin_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136f.", "author": "", "orig_id": 1413076}}, {"model": "metainfo.source", "pk": 9257, "fields": {"orig_filename": "Matejka_Bohumil_1867_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137", "author": "", "orig_id": 1413144}}, {"model": "metainfo.source", "pk": 9258, "fields": {"orig_filename": "Matejka_Josef_1879_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137", "author": "", "orig_id": 1413145}}, {"model": "metainfo.source", "pk": 9259, "fields": {"orig_filename": "Matejko_Theo_1893_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413146}}, {"model": "metainfo.source", "pk": 9260, "fields": {"orig_filename": "Matejko_Franciszek-Ksawery-Edward_1828_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137f.", "author": "", "orig_id": 1413147}}, {"model": "metainfo.source", "pk": 9261, "fields": {"orig_filename": "Matejko_Jan_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138", "author": "", "orig_id": 1413148}}, {"model": "metainfo.source", "pk": 9262, "fields": {"orig_filename": "Matejovsky_Philip-Karl_1820_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138", "author": "", "orig_id": 1413149}}, {"model": "metainfo.source", "pk": 9263, "fields": {"orig_filename": "Matek_Blaz_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138f.", "author": "", "orig_id": 1413150}}, {"model": "metainfo.source", "pk": 9264, "fields": {"orig_filename": "Materna_Amalia_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 139", "author": "", "orig_id": 1413151}}, {"model": "metainfo.source", "pk": 9265, "fields": {"orig_filename": "Materna_Rudolf_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 139f.", "author": "", "orig_id": 1413152}}, {"model": "metainfo.source", "pk": 9266, "fields": {"orig_filename": "Maternova_Pavla_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413153}}, {"model": "metainfo.source", "pk": 9267, "fields": {"orig_filename": "Mathes-Bilabruck_Karl_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413155}}, {"model": "metainfo.source", "pk": 9268, "fields": {"orig_filename": "Mathesius_Vilem_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140f.", "author": "", "orig_id": 1413156}}, {"model": "metainfo.source", "pk": 9269, "fields": {"orig_filename": "Mathes_Michael_1814_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413154}}, {"model": "metainfo.source", "pk": 9270, "fields": {"orig_filename": "Mathiowitz_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 141", "author": "", "orig_id": 1413157}}, {"model": "metainfo.source", "pk": 9271, "fields": {"orig_filename": "Mathis-Treustadt_Johann-Martin_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 141f.", "author": "", "orig_id": 1413158}}, {"model": "metainfo.source", "pk": 9272, "fields": {"orig_filename": "Maticevic_Stjepan_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142", "author": "", "orig_id": 1413160}}, {"model": "metainfo.source", "pk": 9273, "fields": {"orig_filename": "Matic_Eugen_1889_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142", "author": "", "orig_id": 1413159}}, {"model": "metainfo.source", "pk": 9274, "fields": {"orig_filename": "Matiegka_Jindrich_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142f.", "author": "", "orig_id": 1413161}}, {"model": "metainfo.source", "pk": 9275, "fields": {"orig_filename": "Matiegka_Wenzel-Thomas_1773_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413162}}, {"model": "metainfo.source", "pk": 9276, "fields": {"orig_filename": "Matijevic_Pavao_1867_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413163}}, {"model": "metainfo.source", "pk": 9277, "fields": {"orig_filename": "Matikian_Alexander_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413164}}, {"model": "metainfo.source", "pk": 9278, "fields": {"orig_filename": "Matkovic_Jakov_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143f.", "author": "", "orig_id": 1413165}}, {"model": "metainfo.source", "pk": 9279, "fields": {"orig_filename": "Matkovic_Petar_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413233}}, {"model": "metainfo.source", "pk": 9280, "fields": {"orig_filename": "Matlakowski_Wladyslaw_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413234}}, {"model": "metainfo.source", "pk": 9281, "fields": {"orig_filename": "Matlekovits_Sandor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413235}}, {"model": "metainfo.source", "pk": 9282, "fields": {"orig_filename": "Matosch_Anton_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 145", "author": "", "orig_id": 1413237}}, {"model": "metainfo.source", "pk": 9283, "fields": {"orig_filename": "Matos_Antun-Gustav_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144f.", "author": "", "orig_id": 1413236}}, {"model": "metainfo.source", "pk": 9284, "fields": {"orig_filename": "Matouschek_Franz_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 145f.", "author": "", "orig_id": 1413238}}, {"model": "metainfo.source", "pk": 9285, "fields": {"orig_filename": "Matousek_Josef_1840_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146", "author": "", "orig_id": 1413239}}, {"model": "metainfo.source", "pk": 9286, "fields": {"orig_filename": "Matousek_Josef_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146", "author": "", "orig_id": 1413240}}, {"model": "metainfo.source", "pk": 9287, "fields": {"orig_filename": "Matras_Franz-Eduard_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146f.", "author": "", "orig_id": 1413241}}, {"model": "metainfo.source", "pk": 9288, "fields": {"orig_filename": "Matras_Josef_1832_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 147", "author": "", "orig_id": 1413242}}, {"model": "metainfo.source", "pk": 9289, "fields": {"orig_filename": "Matscheg_Anton_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 148", "author": "", "orig_id": 1413244}}, {"model": "metainfo.source", "pk": 9290, "fields": {"orig_filename": "Matscheko_Michael_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 148", "author": "", "orig_id": 1413245}}, {"model": "metainfo.source", "pk": 9291, "fields": {"orig_filename": "Matschnig_Eleonore_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413246}}, {"model": "metainfo.source", "pk": 9292, "fields": {"orig_filename": "Matsch_Franz_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 147f.", "author": "", "orig_id": 1413243}}, {"model": "metainfo.source", "pk": 9293, "fields": {"orig_filename": "Mattanovich_Erwin_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413249}}, {"model": "metainfo.source", "pk": 9294, "fields": {"orig_filename": "Mattanovic_Ernst_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413248}}, {"model": "metainfo.source", "pk": 9295, "fields": {"orig_filename": "Mattauschek_Emil_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413251}}, {"model": "metainfo.source", "pk": 9296, "fields": {"orig_filename": "Mattausch_Franz_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149f.", "author": "", "orig_id": 1413250}}, {"model": "metainfo.source", "pk": 9297, "fields": {"orig_filename": "Mattoni_Heinrich_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413252}}, {"model": "metainfo.source", "pk": 9298, "fields": {"orig_filename": "Mattuschka_Ignaz_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 151f.", "author": "", "orig_id": 1413255}}, {"model": "metainfo.source", "pk": 9299, "fields": {"orig_filename": "Mattus_Jaroslav_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413254}}, {"model": "metainfo.source", "pk": 9300, "fields": {"orig_filename": "Mattus_Karel_1836_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150f.", "author": "", "orig_id": 1413253}}, {"model": "metainfo.source", "pk": 9301, "fields": {"orig_filename": "Matt_Georg_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413247}}, {"model": "metainfo.source", "pk": 9302, "fields": {"orig_filename": "Matunak_Michal_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413256}}, {"model": "metainfo.source", "pk": 9303, "fields": {"orig_filename": "Matuska_Janko_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413325}}, {"model": "metainfo.source", "pk": 9304, "fields": {"orig_filename": "Matyas_Florian_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413326}}, {"model": "metainfo.source", "pk": 9305, "fields": {"orig_filename": "Matzenauer_Antonin_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152f.", "author": "", "orig_id": 1413327}}, {"model": "metainfo.source", "pk": 9306, "fields": {"orig_filename": "Matzenauer_Engelbert_1820_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153", "author": "", "orig_id": 1413328}}, {"model": "metainfo.source", "pk": 9307, "fields": {"orig_filename": "Matzenauer_Josef_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153", "author": "", "orig_id": 1413329}}, {"model": "metainfo.source", "pk": 9308, "fields": {"orig_filename": "Matzenauer_Rudolf_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153f.", "author": "", "orig_id": 1413330}}, {"model": "metainfo.source", "pk": 9309, "fields": {"orig_filename": "Matzenkopf_Franz-Xaver_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413331}}, {"model": "metainfo.source", "pk": 9310, "fields": {"orig_filename": "Matzgeller_Michael_1775_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413332}}, {"model": "metainfo.source", "pk": 9311, "fields": {"orig_filename": "Matzinger_Franz_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413333}}, {"model": "metainfo.source", "pk": 9312, "fields": {"orig_filename": "Matzinger_Stephan_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413334}}, {"model": "metainfo.source", "pk": 9313, "fields": {"orig_filename": "Matzura_Josef_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413335}}, {"model": "metainfo.source", "pk": 9314, "fields": {"orig_filename": "Mauermann_Max_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413337}}, {"model": "metainfo.source", "pk": 9315, "fields": {"orig_filename": "Mauksch_Thomas_1749_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155f.", "author": "", "orig_id": 1413338}}, {"model": "metainfo.source", "pk": 9316, "fields": {"orig_filename": "Mauler-Elisenau_Josef_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156", "author": "", "orig_id": 1413339}}, {"model": "metainfo.source", "pk": 9317, "fields": {"orig_filename": "Maupas_Petar-Dujam_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156", "author": "", "orig_id": 1413340}}, {"model": "metainfo.source", "pk": 9318, "fields": {"orig_filename": "Mauracher_Matthias_1788_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156f.", "author": "", "orig_id": 1413341}}, {"model": "metainfo.source", "pk": 9319, "fields": {"orig_filename": "Maurer_Ferdinand_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157", "author": "", "orig_id": 1413342}}, {"model": "metainfo.source", "pk": 9320, "fields": {"orig_filename": "Maurer_Franz_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157", "author": "", "orig_id": 1413343}}, {"model": "metainfo.source", "pk": 9321, "fields": {"orig_filename": "Maurer_Joseph-Karl_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413345}}, {"model": "metainfo.source", "pk": 9322, "fields": {"orig_filename": "Maurer_Joseph-Valentin_1797_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413346}}, {"model": "metainfo.source", "pk": 9323, "fields": {"orig_filename": "Maurer_Joseph_1853_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157f.", "author": "", "orig_id": 1413344}}, {"model": "metainfo.source", "pk": 9324, "fields": {"orig_filename": "Maurig-Sarnfeld_Ernst_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413347}}, {"model": "metainfo.source", "pk": 9325, "fields": {"orig_filename": "Mariassy-Markusfalva-Batizfalva_Bela_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90", "author": "", "orig_id": 1408126}}, {"model": "metainfo.source", "pk": 9326, "fields": {"orig_filename": "Mariassy-Markusfalva-Batizfalva_Janos_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90", "author": "", "orig_id": 1408128}}, {"model": "metainfo.source", "pk": 9327, "fields": {"orig_filename": "Maric_Josip_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90f.", "author": "", "orig_id": 1408127}}, {"model": "metainfo.source", "pk": 9328, "fields": {"orig_filename": "Marienburger_Georg_1751_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408131}}, {"model": "metainfo.source", "pk": 9329, "fields": {"orig_filename": "Marienburg_Georg-Friedrich_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408129}}, {"model": "metainfo.source", "pk": 9330, "fields": {"orig_filename": "Marienburg_Lukas-Joseph_1770_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408130}}, {"model": "metainfo.source", "pk": 9331, "fields": {"orig_filename": "Marijanovic_Stjepan_1794_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91f.", "author": "", "orig_id": 1408132}}, {"model": "metainfo.source", "pk": 9332, "fields": {"orig_filename": "Marik_Bohuslav_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92", "author": "", "orig_id": 1408133}}, {"model": "metainfo.source", "pk": 9333, "fields": {"orig_filename": "Marik_Frantisek_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92", "author": "", "orig_id": 1408204}}, {"model": "metainfo.source", "pk": 9334, "fields": {"orig_filename": "Marik_Vaclav_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92f.", "author": "", "orig_id": 1408203}}, {"model": "metainfo.source", "pk": 9335, "fields": {"orig_filename": "Marinelli_Ernst_1824_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408205}}, {"model": "metainfo.source", "pk": 9336, "fields": {"orig_filename": "Marinitsch_Josef_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408207}}, {"model": "metainfo.source", "pk": 9337, "fields": {"orig_filename": "Marini_Ignazio_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408206}}, {"model": "metainfo.source", "pk": 9338, "fields": {"orig_filename": "Mariot_Emil_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93f.", "author": "", "orig_id": 1408208}}, {"model": "metainfo.source", "pk": 9339, "fields": {"orig_filename": "Markbreit_Leopold_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94", "author": "", "orig_id": 1408210}}, {"model": "metainfo.source", "pk": 9340, "fields": {"orig_filename": "Markic_Mihael_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408214}}, {"model": "metainfo.source", "pk": 9341, "fields": {"orig_filename": "Markiewicz_Dominik-Jan_1761_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95f.", "author": "", "orig_id": 1408215}}, {"model": "metainfo.source", "pk": 9342, "fields": {"orig_filename": "Markiewicz_Roman_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96", "author": "", "orig_id": 1408216}}, {"model": "metainfo.source", "pk": 9343, "fields": {"orig_filename": "Marki_Anton_1759_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94f.", "author": "", "orig_id": 1408211}}, {"model": "metainfo.source", "pk": 9344, "fields": {"orig_filename": "Marki_Samuel_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408212}}, {"model": "metainfo.source", "pk": 9345, "fields": {"orig_filename": "Marki_Sandor_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408213}}, {"model": "metainfo.source", "pk": 9346, "fields": {"orig_filename": "Markl_Andreas_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96", "author": "", "orig_id": 1408217}}, {"model": "metainfo.source", "pk": 9347, "fields": {"orig_filename": "Markl_Bohumil_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96f.", "author": "", "orig_id": 1408218}}, {"model": "metainfo.source", "pk": 9348, "fields": {"orig_filename": "Markl_Moritz_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408219}}, {"model": "metainfo.source", "pk": 9349, "fields": {"orig_filename": "Markovic-Adamov_Pavle_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98f.", "author": "", "orig_id": 1408292}}, {"model": "metainfo.source", "pk": 9350, "fields": {"orig_filename": "Markovic_Franjo_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408222}}, {"model": "metainfo.source", "pk": 9351, "fields": {"orig_filename": "Markovic_Ivan_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408223}}, {"model": "metainfo.source", "pk": 9352, "fields": {"orig_filename": "Markovic_Marijan_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408224}}, {"model": "metainfo.source", "pk": 9353, "fields": {"orig_filename": "Markovits_Adalbert_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 99", "author": "", "orig_id": 1408293}}, {"model": "metainfo.source", "pk": 9354, "fields": {"orig_filename": "Markovits_Ivan-Theodor_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 99f.", "author": "", "orig_id": 1408294}}, {"model": "metainfo.source", "pk": 9355, "fields": {"orig_filename": "Markowicz_Artur_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100", "author": "", "orig_id": 1408295}}, {"model": "metainfo.source", "pk": 9356, "fields": {"orig_filename": "Markowski_Jozef_1860_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100", "author": "", "orig_id": 1408296}}, {"model": "metainfo.source", "pk": 9357, "fields": {"orig_filename": "Markowski_Jozef_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100f.", "author": "", "orig_id": 1466818}}, {"model": "metainfo.source", "pk": 9358, "fields": {"orig_filename": "Markowsky_August-Maria_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 101", "author": "", "orig_id": 1408297}}, {"model": "metainfo.source", "pk": 9359, "fields": {"orig_filename": "Marko_Karoly_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408220}}, {"model": "metainfo.source", "pk": 9360, "fields": {"orig_filename": "Marko_Miklos_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408221}}, {"model": "metainfo.source", "pk": 9361, "fields": {"orig_filename": "Marktanner-Turneretscher_Gottlieb_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 101f.", "author": "", "orig_id": 1408298}}, {"model": "metainfo.source", "pk": 9362, "fields": {"orig_filename": "Markusovszky_Lajos_1815_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408303}}, {"model": "metainfo.source", "pk": 9363, "fields": {"orig_filename": "Markusovszky_Samuel_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408304}}, {"model": "metainfo.source", "pk": 9364, "fields": {"orig_filename": "Markus_Adalbert_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408299}}, {"model": "metainfo.source", "pk": 9365, "fields": {"orig_filename": "Markus_Emilia_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408300}}, {"model": "metainfo.source", "pk": 9366, "fields": {"orig_filename": "Markus_Jordan-Kajetan_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408301}}, {"model": "metainfo.source", "pk": 9367, "fields": {"orig_filename": "Markus_Jozsef_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408302}}, {"model": "metainfo.source", "pk": 9368, "fields": {"orig_filename": "Mark_Abraham-Jakob_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94", "author": "", "orig_id": 1408209}}, {"model": "metainfo.source", "pk": 9369, "fields": {"orig_filename": "Marlin_Josef_1824_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103f.", "author": "", "orig_id": 1408305}}, {"model": "metainfo.source", "pk": 9370, "fields": {"orig_filename": "Marmorek_Alexander_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 104", "author": "", "orig_id": 1408306}}, {"model": "metainfo.source", "pk": 9371, "fields": {"orig_filename": "Marmorek_Oskar_1863_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 104f.", "author": "", "orig_id": 1408307}}, {"model": "metainfo.source", "pk": 9372, "fields": {"orig_filename": "Marno-Eichenhorst_Adolf_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105f.", "author": "", "orig_id": 1408310}}, {"model": "metainfo.source", "pk": 9373, "fields": {"orig_filename": "Marno_Ernst_1844_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105", "author": "", "orig_id": 1408309}}, {"model": "metainfo.source", "pk": 9374, "fields": {"orig_filename": "Marn_Josip_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105", "author": "", "orig_id": 1408308}}, {"model": "metainfo.source", "pk": 9375, "fields": {"orig_filename": "Maroicic-Madonna-Monte_Ambros-Georg-Wilhelm_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106", "author": "", "orig_id": 1408311}}, {"model": "metainfo.source", "pk": 9376, "fields": {"orig_filename": "Maroicic-Madonna-Monte_Josef_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106", "author": "", "orig_id": 1408378}}, {"model": "metainfo.source", "pk": 9377, "fields": {"orig_filename": "Marold_Ludek_1865_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106f.", "author": "", "orig_id": 1408379}}, {"model": "metainfo.source", "pk": 9378, "fields": {"orig_filename": "Maroli_Rudolf-Johann-Emil_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107", "author": "", "orig_id": 1408380}}, {"model": "metainfo.source", "pk": 9379, "fields": {"orig_filename": "Marothy-Soltesova_Elena_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107", "author": "", "orig_id": 1408381}}, {"model": "metainfo.source", "pk": 9380, "fields": {"orig_filename": "Marovich_Anna_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107f.", "author": "", "orig_id": 1408382}}, {"model": "metainfo.source", "pk": 9381, "fields": {"orig_filename": "Marquart_Friedrich_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408383}}, {"model": "metainfo.source", "pk": 9382, "fields": {"orig_filename": "Marsal-Petrovsky_Gustav_1862_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408385}}, {"model": "metainfo.source", "pk": 9383, "fields": {"orig_filename": "Marsano_Wilhelm_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109", "author": "", "orig_id": 1408387}}, {"model": "metainfo.source", "pk": 9384, "fields": {"orig_filename": "Marsan_Robert_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108f.", "author": "", "orig_id": 1408386}}, {"model": "metainfo.source", "pk": 9385, "fields": {"orig_filename": "Marschalko_Johann_1818_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109", "author": "", "orig_id": 1408388}}, {"model": "metainfo.source", "pk": 9386, "fields": {"orig_filename": "Marschall_Godfried_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109f.", "author": "", "orig_id": 1408389}}, {"model": "metainfo.source", "pk": 9387, "fields": {"orig_filename": "Marschan_Josef-Wilhelm_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110", "author": "", "orig_id": 1408390}}, {"model": "metainfo.source", "pk": 9388, "fields": {"orig_filename": "Marschner_Franz-Ludwig_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110", "author": "", "orig_id": 1408391}}, {"model": "metainfo.source", "pk": 9389, "fields": {"orig_filename": "Marschner_Franz-Vinzenz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110f.", "author": "", "orig_id": 1408392}}, {"model": "metainfo.source", "pk": 9390, "fields": {"orig_filename": "Marschner_Robert-Anton_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408393}}, {"model": "metainfo.source", "pk": 9391, "fields": {"orig_filename": "Marsilli_Francesco-Antonio_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408395}}, {"model": "metainfo.source", "pk": 9392, "fields": {"orig_filename": "Marsoner_Rudolf_1899_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408394}}, {"model": "metainfo.source", "pk": 9393, "fields": {"orig_filename": "Mars_Antoni_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408384}}, {"model": "metainfo.source", "pk": 9394, "fields": {"orig_filename": "Marterer_Ferdinand_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112", "author": "", "orig_id": 1408397}}, {"model": "metainfo.source", "pk": 9395, "fields": {"orig_filename": "Martic_Grgo_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112", "author": "", "orig_id": 1408398}}, {"model": "metainfo.source", "pk": 9396, "fields": {"orig_filename": "Martinak_Eduard_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114f.", "author": "", "orig_id": 1408474}}, {"model": "metainfo.source", "pk": 9397, "fields": {"orig_filename": "Martinak_Heinrich_1826_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115", "author": "", "orig_id": 1408475}}, {"model": "metainfo.source", "pk": 9398, "fields": {"orig_filename": "Martinek_Robert_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115", "author": "", "orig_id": 1408476}}, {"model": "metainfo.source", "pk": 9399, "fields": {"orig_filename": "Martinelli_Louise_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115f.", "author": "", "orig_id": 1408477}}, {"model": "metainfo.source", "pk": 9400, "fields": {"orig_filename": "Martinelli_Ludwig_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 116", "author": "", "orig_id": 1408478}}, {"model": "metainfo.source", "pk": 9401, "fields": {"orig_filename": "Martinez_August_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 117", "author": "", "orig_id": 1408479}}, {"model": "metainfo.source", "pk": 9402, "fields": {"orig_filename": "Martini_Karl-Wilhelm_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 117", "author": "", "orig_id": 1408481}}, {"model": "metainfo.source", "pk": 9403, "fields": {"orig_filename": "Martinu_Jan_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408482}}, {"model": "metainfo.source", "pk": 9404, "fields": {"orig_filename": "Martiny-Malastow_Hugo_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408484}}, {"model": "metainfo.source", "pk": 9405, "fields": {"orig_filename": "Martiny_Koloman_1864_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408483}}, {"model": "metainfo.source", "pk": 9406, "fields": {"orig_filename": "Martin_Anton_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112f.", "author": "", "orig_id": 1408399}}, {"model": "metainfo.source", "pk": 9407, "fields": {"orig_filename": "Martin_Franz_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 113f.", "author": "", "orig_id": 1408471}}, {"model": "metainfo.source", "pk": 9408, "fields": {"orig_filename": "Martin_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114", "author": "", "orig_id": 1408472}}, {"model": "metainfo.source", "pk": 9409, "fields": {"orig_filename": "Martin_Lajos_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114", "author": "", "orig_id": 1408473}}, {"model": "metainfo.source", "pk": 9410, "fields": {"orig_filename": "Martius_Anton_1794_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118f.", "author": "", "orig_id": 1408485}}, {"model": "metainfo.source", "pk": 9411, "fields": {"orig_filename": "Marton-Zsarolyan-Mand_Istvan_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119", "author": "", "orig_id": 1408486}}, {"model": "metainfo.source", "pk": 9412, "fields": {"orig_filename": "Martovyc_Les_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119", "author": "", "orig_id": 1408487}}, {"model": "metainfo.source", "pk": 9413, "fields": {"orig_filename": "Marty_Anton_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119f.", "author": "", "orig_id": 1408488}}, {"model": "metainfo.source", "pk": 9414, "fields": {"orig_filename": "Marun_Lujo_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120", "author": "", "orig_id": 1408489}}, {"model": "metainfo.source", "pk": 9415, "fields": {"orig_filename": "Marussig_Anton_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120", "author": "", "orig_id": 1408490}}, {"model": "metainfo.source", "pk": 9416, "fields": {"orig_filename": "Marx-Marxberg_Wilhelm_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 121f.", "author": "", "orig_id": 1408563}}, {"model": "metainfo.source", "pk": 9417, "fields": {"orig_filename": "Marx_Anton-Maria_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120f.", "author": "", "orig_id": 1408491}}, {"model": "metainfo.source", "pk": 9418, "fields": {"orig_filename": "Marx_Friedrich_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 121", "author": "", "orig_id": 1408562}}, {"model": "metainfo.source", "pk": 9419, "fields": {"orig_filename": "Maryanski_Walery-Ostoya_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408564}}, {"model": "metainfo.source", "pk": 9420, "fields": {"orig_filename": "Marzani-Stainhof-Neuhaus_Carlo_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408565}}, {"model": "metainfo.source", "pk": 9421, "fields": {"orig_filename": "Marzari-Pencati_Giuseppe_1779_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408566}}, {"model": "metainfo.source", "pk": 9422, "fields": {"orig_filename": "Marzik_Thomas_1810_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122f.", "author": "", "orig_id": 1408567}}, {"model": "metainfo.source", "pk": 9423, "fields": {"orig_filename": "Masaidek_Franz-Friedrich_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123", "author": "", "orig_id": 1408568}}, {"model": "metainfo.source", "pk": 9424, "fields": {"orig_filename": "Masaryk_Herbert_1880_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123", "author": "", "orig_id": 1408569}}, {"model": "metainfo.source", "pk": 9425, "fields": {"orig_filename": "Masaryk_Thomas_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123f.", "author": "", "orig_id": 1408570}}, {"model": "metainfo.source", "pk": 9426, "fields": {"orig_filename": "Maschat_Josef_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 124", "author": "", "orig_id": 1408571}}, {"model": "metainfo.source", "pk": 9427, "fields": {"orig_filename": "Mannagetta-Lerchenau_Johann-Wilhelm_1785_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56", "author": "", "orig_id": 1409192}}, {"model": "metainfo.source", "pk": 9428, "fields": {"orig_filename": "Manner_Josef_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56", "author": "", "orig_id": 1409193}}, {"model": "metainfo.source", "pk": 9429, "fields": {"orig_filename": "Mannheimer_Isak-Noa_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56f.", "author": "", "orig_id": 1409194}}, {"model": "metainfo.source", "pk": 9430, "fields": {"orig_filename": "Mannlicher_Ferdinand_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 57f.", "author": "", "orig_id": 1409196}}, {"model": "metainfo.source", "pk": 9431, "fields": {"orig_filename": "Mannl_Oswald_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 57", "author": "", "orig_id": 1409195}}, {"model": "metainfo.source", "pk": 9432, "fields": {"orig_filename": "Mannsbarth_Franz_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 58", "author": "", "orig_id": 1409197}}, {"model": "metainfo.source", "pk": 9433, "fields": {"orig_filename": "Mannsfeld_Hieronymus_1842_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 58f.", "author": "", "orig_id": 1409198}}, {"model": "metainfo.source", "pk": 9434, "fields": {"orig_filename": "Mann_Jakob_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409188}}, {"model": "metainfo.source", "pk": 9435, "fields": {"orig_filename": "Mann_Maurycy_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54f.", "author": "", "orig_id": 1409189}}, {"model": "metainfo.source", "pk": 9436, "fields": {"orig_filename": "Mann_Oskar_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 55", "author": "", "orig_id": 1409190}}, {"model": "metainfo.source", "pk": 9437, "fields": {"orig_filename": "Manojlovic_Gavro_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59", "author": "", "orig_id": 1409199}}, {"model": "metainfo.source", "pk": 9438, "fields": {"orig_filename": "Manojlovic_Michael_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59", "author": "", "orig_id": 1409200}}, {"model": "metainfo.source", "pk": 9439, "fields": {"orig_filename": "Manojlovic_Svetozar_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59f.", "author": "", "orig_id": 1409201}}, {"model": "metainfo.source", "pk": 9440, "fields": {"orig_filename": "Manowarda-Jana_Eberhard_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409202}}, {"model": "metainfo.source", "pk": 9441, "fields": {"orig_filename": "Manowarda-Jana_Josef_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409203}}, {"model": "metainfo.source", "pk": 9442, "fields": {"orig_filename": "Manschgo_Johann_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409205}}, {"model": "metainfo.source", "pk": 9443, "fields": {"orig_filename": "Mansch_Philipp_1838_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409204}}, {"model": "metainfo.source", "pk": 9444, "fields": {"orig_filename": "Mansfeld_August-Heinrich_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409206}}, {"model": "metainfo.source", "pk": 9445, "fields": {"orig_filename": "Mansfeld_Heinrich-Josef_1785_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409279}}, {"model": "metainfo.source", "pk": 9446, "fields": {"orig_filename": "Mansfeld_Josef_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409280}}, {"model": "metainfo.source", "pk": 9447, "fields": {"orig_filename": "Mansfeld_Moritz_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61f.", "author": "", "orig_id": 1409281}}, {"model": "metainfo.source", "pk": 9448, "fields": {"orig_filename": "Mantler_August_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409282}}, {"model": "metainfo.source", "pk": 9449, "fields": {"orig_filename": "Mantler_Heinrich_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409283}}, {"model": "metainfo.source", "pk": 9450, "fields": {"orig_filename": "Mantuani_Josef_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409284}}, {"model": "metainfo.source", "pk": 9451, "fields": {"orig_filename": "Manussi-Montesole_Alfred_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62f.", "author": "", "orig_id": 1409285}}, {"model": "metainfo.source", "pk": 9452, "fields": {"orig_filename": "Manussi-Montesole_Ferdinand-Karl_1809_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63", "author": "", "orig_id": 1409287}}, {"model": "metainfo.source", "pk": 9453, "fields": {"orig_filename": "Manussi-Montesole_Ferdinand_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63", "author": "", "orig_id": 1409286}}, {"model": "metainfo.source", "pk": 9454, "fields": {"orig_filename": "Manz-Mariensee_Anton_1757_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63f.", "author": "", "orig_id": 1409288}}, {"model": "metainfo.source", "pk": 9455, "fields": {"orig_filename": "Manz-Mariensee_Vinzenz_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409289}}, {"model": "metainfo.source", "pk": 9456, "fields": {"orig_filename": "Manzer_Josef-Dionys_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409290}}, {"model": "metainfo.source", "pk": 9457, "fields": {"orig_filename": "Manzer_Robert_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409291}}, {"model": "metainfo.source", "pk": 9458, "fields": {"orig_filename": "Manzoni_Alessandro_1785_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64f.", "author": "", "orig_id": 1409292}}, {"model": "metainfo.source", "pk": 9459, "fields": {"orig_filename": "Marak_Julius_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 65f.", "author": "", "orig_id": 1409293}}, {"model": "metainfo.source", "pk": 9460, "fields": {"orig_filename": "Marasca_Pietro_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66", "author": "", "orig_id": 1409295}}, {"model": "metainfo.source", "pk": 9461, "fields": {"orig_filename": "Marasse_Mieczyslaw_1840_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66f.", "author": "", "orig_id": 1409296}}, {"model": "metainfo.source", "pk": 9462, "fields": {"orig_filename": "Marastoni_Jakab_1804_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409297}}, {"model": "metainfo.source", "pk": 9463, "fields": {"orig_filename": "Marastoni_Josef_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409298}}, {"model": "metainfo.source", "pk": 9464, "fields": {"orig_filename": "Maras_Raimund_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66", "author": "", "orig_id": 1409294}}, {"model": "metainfo.source", "pk": 9465, "fields": {"orig_filename": "Maratka_Josef_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67f.", "author": "", "orig_id": 1409300}}, {"model": "metainfo.source", "pk": 9466, "fields": {"orig_filename": "Marat_Franz_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409299}}, {"model": "metainfo.source", "pk": 9467, "fields": {"orig_filename": "Marbach_Adolf_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409301}}, {"model": "metainfo.source", "pk": 9468, "fields": {"orig_filename": "Marcantellj-Serravalle_Bernhard_1755_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409303}}, {"model": "metainfo.source", "pk": 9469, "fields": {"orig_filename": "Marceljic_Josip_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68f.", "author": "", "orig_id": 1409373}}, {"model": "metainfo.source", "pk": 9470, "fields": {"orig_filename": "Marcher_Matthias_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409374}}, {"model": "metainfo.source", "pk": 9471, "fields": {"orig_filename": "Marchesetti_Carlo_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409375}}, {"model": "metainfo.source", "pk": 9472, "fields": {"orig_filename": "Marchetti_Prospero_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 71", "author": "", "orig_id": 1409379}}, {"model": "metainfo.source", "pk": 9473, "fields": {"orig_filename": "Marchet_Arthur_1892_1980.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1467303}}, {"model": "metainfo.source", "pk": 9474, "fields": {"orig_filename": "Marchet_Gustav_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 70", "author": "", "orig_id": 1409377}}, {"model": "metainfo.source", "pk": 9475, "fields": {"orig_filename": "Marchet_Julius_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 70f.", "author": "", "orig_id": 1409378}}, {"model": "metainfo.source", "pk": 9476, "fields": {"orig_filename": "Marchlewski_Leon-Pawel_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 71f.", "author": "", "orig_id": 1409380}}, {"model": "metainfo.source", "pk": 9477, "fields": {"orig_filename": "Marchwicki_Zdzislaw_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409381}}, {"model": "metainfo.source", "pk": 9478, "fields": {"orig_filename": "Marcolini_Francesco-Maria_1779_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409383}}, {"model": "metainfo.source", "pk": 9479, "fields": {"orig_filename": "Marconi_Leonard_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409384}}, {"model": "metainfo.source", "pk": 9480, "fields": {"orig_filename": "Marcus_Siegfried_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72f.", "author": "", "orig_id": 1409385}}, {"model": "metainfo.source", "pk": 9481, "fields": {"orig_filename": "Marczali_Henrik_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 73", "author": "", "orig_id": 1409386}}, {"model": "metainfo.source", "pk": 9482, "fields": {"orig_filename": "Mardetschlaeger_Franz_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74", "author": "", "orig_id": 1409387}}, {"model": "metainfo.source", "pk": 9483, "fields": {"orig_filename": "Mareck_Alois-Titus_1819_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74", "author": "", "orig_id": 1409388}}, {"model": "metainfo.source", "pk": 9484, "fields": {"orig_filename": "Mareda_Wenzel-Franz_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74f.", "author": "", "orig_id": 1409389}}, {"model": "metainfo.source", "pk": 9485, "fields": {"orig_filename": "Marek_Antonin_1785_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75", "author": "", "orig_id": 1409390}}, {"model": "metainfo.source", "pk": 9486, "fields": {"orig_filename": "Marek_Ferdinand_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75", "author": "", "orig_id": 1409391}}, {"model": "metainfo.source", "pk": 9487, "fields": {"orig_filename": "Marek_Jan-Jindrich_1803_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75f.", "author": "", "orig_id": 1409392}}, {"model": "metainfo.source", "pk": 9488, "fields": {"orig_filename": "Marek_Karl_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76", "author": "", "orig_id": 1409393}}, {"model": "metainfo.source", "pk": 9489, "fields": {"orig_filename": "Marek_Ludvik-Bohumil_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76", "author": "", "orig_id": 1409394}}, {"model": "metainfo.source", "pk": 9490, "fields": {"orig_filename": "Marek_Zygmunt_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76f.", "author": "", "orig_id": 1409467}}, {"model": "metainfo.source", "pk": 9491, "fields": {"orig_filename": "Marenzeller_Edmund-Oskar_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77", "author": "", "orig_id": 1409468}}, {"model": "metainfo.source", "pk": 9492, "fields": {"orig_filename": "Marenzeller_Emil_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77", "author": "", "orig_id": 1409469}}, {"model": "metainfo.source", "pk": 9493, "fields": {"orig_filename": "Marenzeller_Matthias_1765_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77f.", "author": "", "orig_id": 1409470}}, {"model": "metainfo.source", "pk": 9494, "fields": {"orig_filename": "Marenzi_Franz_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 78", "author": "", "orig_id": 1409471}}, {"model": "metainfo.source", "pk": 9495, "fields": {"orig_filename": "Marenzi_Franz_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 78f.", "author": "", "orig_id": 1409472}}, {"model": "metainfo.source", "pk": 9496, "fields": {"orig_filename": "Mareschall-Bieberstein_Wenzel-Philipp-Leopold_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 81", "author": "", "orig_id": 1409479}}, {"model": "metainfo.source", "pk": 9497, "fields": {"orig_filename": "Maresch_Johann_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80", "author": "", "orig_id": 1409476}}, {"model": "metainfo.source", "pk": 9498, "fields": {"orig_filename": "Maresch_Otto_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80", "author": "", "orig_id": 1409477}}, {"model": "metainfo.source", "pk": 9499, "fields": {"orig_filename": "Maresch_Rudolf_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80f.", "author": "", "orig_id": 1409478}}, {"model": "metainfo.source", "pk": 9500, "fields": {"orig_filename": "Mares_Bohumil_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79", "author": "", "orig_id": 1409473}}, {"model": "metainfo.source", "pk": 9501, "fields": {"orig_filename": "Mares_Frantisek_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79", "author": "", "orig_id": 1409474}}, {"model": "metainfo.source", "pk": 9502, "fields": {"orig_filename": "Mares_Frantisek_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79f.", "author": "", "orig_id": 1409475}}, {"model": "metainfo.source", "pk": 9503, "fields": {"orig_filename": "Mareta_Hugo_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 81f.", "author": "", "orig_id": 1409480}}, {"model": "metainfo.source", "pk": 9504, "fields": {"orig_filename": "Maretich-Riv-Alpon_Eduard_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82", "author": "", "orig_id": 1409483}}, {"model": "metainfo.source", "pk": 9505, "fields": {"orig_filename": "Maretich-Riv-Alpon_Gedeon_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82", "author": "", "orig_id": 1409481}}, {"model": "metainfo.source", "pk": 9506, "fields": {"orig_filename": "Maretzek_Max_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82f.", "author": "", "orig_id": 1409482}}, {"model": "metainfo.source", "pk": 9507, "fields": {"orig_filename": "Margelik_Franz_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409484}}, {"model": "metainfo.source", "pk": 9508, "fields": {"orig_filename": "Margocsy_Jozsef_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409486}}, {"model": "metainfo.source", "pk": 9509, "fields": {"orig_filename": "Margosches_Max_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83f.", "author": "", "orig_id": 1409487}}, {"model": "metainfo.source", "pk": 9510, "fields": {"orig_filename": "Margo_Tivadar_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409485}}, {"model": "metainfo.source", "pk": 9511, "fields": {"orig_filename": "Margreiter_Jakob_1762_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 84", "author": "", "orig_id": 1409488}}, {"model": "metainfo.source", "pk": 9512, "fields": {"orig_filename": "Margules_Max_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 84f.", "author": "", "orig_id": 1409489}}, {"model": "metainfo.source", "pk": 9513, "fields": {"orig_filename": "Margulies_Otto_1899_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1408113}}, {"model": "metainfo.source", "pk": 9514, "fields": {"orig_filename": "Margulies_Samuel-Hersch_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1408114}}, {"model": "metainfo.source", "pk": 9515, "fields": {"orig_filename": "Margutti_Albert_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85f.", "author": "", "orig_id": 1408115}}, {"model": "metainfo.source", "pk": 9516, "fields": {"orig_filename": "Maria-Anna__1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86", "author": "", "orig_id": 1408116}}, {"model": "metainfo.source", "pk": 9517, "fields": {"orig_filename": "Maria-Charlotte__1840_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86", "author": "", "orig_id": 1408117}}, {"model": "metainfo.source", "pk": 9518, "fields": {"orig_filename": "Maria-Christina__1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86f.", "author": "", "orig_id": 1408118}}, {"model": "metainfo.source", "pk": 9519, "fields": {"orig_filename": "Maria-Dorothea___1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 87", "author": "", "orig_id": 1408119}}, {"model": "metainfo.source", "pk": 9520, "fields": {"orig_filename": "Maria-Louise__1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 87f.", "author": "", "orig_id": 1408120}}, {"model": "metainfo.source", "pk": 9521, "fields": {"orig_filename": "Maria-Ludovica__1787_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 88f.", "author": "", "orig_id": 1408121}}, {"model": "metainfo.source", "pk": 9522, "fields": {"orig_filename": "Maria-Theresia__1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408122}}, {"model": "metainfo.source", "pk": 9523, "fields": {"orig_filename": "Maria-Valerie___1868_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408123}}, {"model": "metainfo.source", "pk": 9524, "fields": {"orig_filename": "Mariacher_Stephan_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408124}}, {"model": "metainfo.source", "pk": 9525, "fields": {"orig_filename": "Marian_Simion-Florea_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89f.", "author": "", "orig_id": 1408125}}, {"model": "metainfo.source", "pk": 9526, "fields": {"orig_filename": "Mailath-Szekhely_Gyoergy_1786_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19f.", "author": "", "orig_id": 1408750}}, {"model": "metainfo.source", "pk": 9527, "fields": {"orig_filename": "Mailath-Szekhely_Gyoergy_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20", "author": "", "orig_id": 1408751}}, {"model": "metainfo.source", "pk": 9528, "fields": {"orig_filename": "Mailath-Szekhely_Janos_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20", "author": "", "orig_id": 1408752}}, {"model": "metainfo.source", "pk": 9529, "fields": {"orig_filename": "Mailhac_Pauline-Rebekka_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20f.", "author": "", "orig_id": 1408753}}, {"model": "metainfo.source", "pk": 9530, "fields": {"orig_filename": "Maiorescu_Ioan_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 21f.", "author": "", "orig_id": 1408822}}, {"model": "metainfo.source", "pk": 9531, "fields": {"orig_filename": "Maior_Petru_1761_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 21", "author": "", "orig_id": 1408821}}, {"model": "metainfo.source", "pk": 9532, "fields": {"orig_filename": "Maischberger_Thomas_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 22", "author": "", "orig_id": 1408823}}, {"model": "metainfo.source", "pk": 9533, "fields": {"orig_filename": "Maister_Rudolf_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 22f.", "author": "", "orig_id": 1408824}}, {"model": "metainfo.source", "pk": 9534, "fields": {"orig_filename": "Maitisch_Ferdinand_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23", "author": "", "orig_id": 1408825}}, {"model": "metainfo.source", "pk": 9535, "fields": {"orig_filename": "Maixner_Emerich_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23", "author": "", "orig_id": 1408826}}, {"model": "metainfo.source", "pk": 9536, "fields": {"orig_filename": "Maixner_Franjo_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23f.", "author": "", "orig_id": 1408827}}, {"model": "metainfo.source", "pk": 9537, "fields": {"orig_filename": "Maixner_Petr_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 24", "author": "", "orig_id": 1408828}}, {"model": "metainfo.source", "pk": 9538, "fields": {"orig_filename": "Mai_Angelo_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 415f.", "author": "", "orig_id": 1411858}}, {"model": "metainfo.source", "pk": 9539, "fields": {"orig_filename": "Majaron_Danilo_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25", "author": "", "orig_id": 1408830}}, {"model": "metainfo.source", "pk": 9540, "fields": {"orig_filename": "Majar_Matija_1809_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 24f.", "author": "", "orig_id": 1408829}}, {"model": "metainfo.source", "pk": 9541, "fields": {"orig_filename": "Majcen_Juraj_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25", "author": "", "orig_id": 1408831}}, {"model": "metainfo.source", "pk": 9542, "fields": {"orig_filename": "Majchrowicz_Franciszek_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25f.", "author": "", "orig_id": 1408832}}, {"model": "metainfo.source", "pk": 9543, "fields": {"orig_filename": "Majdic_Peter_1823_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26", "author": "", "orig_id": 1408833}}, {"model": "metainfo.source", "pk": 9544, "fields": {"orig_filename": "Majernik_Cyprian_1909_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 27f.", "author": "", "orig_id": 1408837}}, {"model": "metainfo.source", "pk": 9545, "fields": {"orig_filename": "Majersky_Adalbert_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28", "author": "", "orig_id": 1408838}}, {"model": "metainfo.source", "pk": 9546, "fields": {"orig_filename": "Majer_Antonin_1826_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26", "author": "", "orig_id": 1408834}}, {"model": "metainfo.source", "pk": 9547, "fields": {"orig_filename": "Majer_Jozef_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26f.", "author": "", "orig_id": 1408835}}, {"model": "metainfo.source", "pk": 9548, "fields": {"orig_filename": "Majer_Stephan_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 27", "author": "", "orig_id": 1408836}}, {"model": "metainfo.source", "pk": 9549, "fields": {"orig_filename": "Majewski_Bronislaw_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28", "author": "", "orig_id": 1408839}}, {"model": "metainfo.source", "pk": 9550, "fields": {"orig_filename": "Majewski_Stefan_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28f.", "author": "", "orig_id": 1408840}}, {"model": "metainfo.source", "pk": 9551, "fields": {"orig_filename": "Majic_Anto_1877_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408841}}, {"model": "metainfo.source", "pk": 9552, "fields": {"orig_filename": "Majlath-Szekhely_Bela_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408908}}, {"model": "metainfo.source", "pk": 9553, "fields": {"orig_filename": "Majunke_Gedeon_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408909}}, {"model": "metainfo.source", "pk": 9554, "fields": {"orig_filename": "Makart_Hans_1840_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29ff.", "author": "", "orig_id": 1408910}}, {"model": "metainfo.source", "pk": 9555, "fields": {"orig_filename": "Makovej_Osyp_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31", "author": "", "orig_id": 1408911}}, {"model": "metainfo.source", "pk": 9556, "fields": {"orig_filename": "Makovicky_Dusan_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31", "author": "", "orig_id": 1408912}}, {"model": "metainfo.source", "pk": 9557, "fields": {"orig_filename": "Makowsky_Alexander_1833_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31f.", "author": "", "orig_id": 1408913}}, {"model": "metainfo.source", "pk": 9558, "fields": {"orig_filename": "Malavasic_Franc_1818_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32", "author": "", "orig_id": 1408914}}, {"model": "metainfo.source", "pk": 9559, "fields": {"orig_filename": "Malcher_Adolfine_1858_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32", "author": "", "orig_id": 1408915}}, {"model": "metainfo.source", "pk": 9560, "fields": {"orig_filename": "Malczewski-Tarnawa_Julius_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 33", "author": "", "orig_id": 1408917}}, {"model": "metainfo.source", "pk": 9561, "fields": {"orig_filename": "Malczewski_Jacek_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32f.", "author": "", "orig_id": 1408916}}, {"model": "metainfo.source", "pk": 9562, "fields": {"orig_filename": "Malecki_Antoni_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 33f.", "author": "", "orig_id": 1408918}}, {"model": "metainfo.source", "pk": 9563, "fields": {"orig_filename": "Malek-Werthenfels_Franz_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408919}}, {"model": "metainfo.source", "pk": 9564, "fields": {"orig_filename": "Malfatti-Monteregio_Johann_1775_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35", "author": "", "orig_id": 1408924}}, {"model": "metainfo.source", "pk": 9565, "fields": {"orig_filename": "Malfatti-Rohrenbach-Dezza_Leopold_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35f.", "author": "", "orig_id": 1408925}}, {"model": "metainfo.source", "pk": 9566, "fields": {"orig_filename": "Malfatti_Alois_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408920}}, {"model": "metainfo.source", "pk": 9567, "fields": {"orig_filename": "Malfatti_Andrea_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408921}}, {"model": "metainfo.source", "pk": 9568, "fields": {"orig_filename": "Malfatti_Emanuele_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34f.", "author": "", "orig_id": 1408922}}, {"model": "metainfo.source", "pk": 9569, "fields": {"orig_filename": "Malfatti_Valeriano_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35", "author": "", "orig_id": 1408923}}, {"model": "metainfo.source", "pk": 9570, "fields": {"orig_filename": "Malinescu_Vasile_1817_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408926}}, {"model": "metainfo.source", "pk": 9571, "fields": {"orig_filename": "Malinowski_Lucjan_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408927}}, {"model": "metainfo.source", "pk": 9572, "fields": {"orig_filename": "Malinsky_Frantisek_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408928}}, {"model": "metainfo.source", "pk": 9573, "fields": {"orig_filename": "Malinsky_Josef_1752_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408929}}, {"model": "metainfo.source", "pk": 9574, "fields": {"orig_filename": "Malirova_Helena_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408997}}, {"model": "metainfo.source", "pk": 9575, "fields": {"orig_filename": "Maliwa_Edmund_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408998}}, {"model": "metainfo.source", "pk": 9576, "fields": {"orig_filename": "Malkowski_Andrzej_1889_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38", "author": "", "orig_id": 1408999}}, {"model": "metainfo.source", "pk": 9577, "fields": {"orig_filename": "Mallinger_Mathilde_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38f.", "author": "", "orig_id": 1409001}}, {"model": "metainfo.source", "pk": 9578, "fields": {"orig_filename": "Mallin_Ivo_1853_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38", "author": "", "orig_id": 1409000}}, {"model": "metainfo.source", "pk": 9579, "fields": {"orig_filename": "Mallitsch_Ferdinand_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409002}}, {"model": "metainfo.source", "pk": 9580, "fields": {"orig_filename": "Mallner-Marsegg_Hermann_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409003}}, {"model": "metainfo.source", "pk": 9581, "fields": {"orig_filename": "Mally-Dusarov_Jan_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39f.", "author": "", "orig_id": 1409005}}, {"model": "metainfo.source", "pk": 9582, "fields": {"orig_filename": "Mally_Ernst_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409004}}, {"model": "metainfo.source", "pk": 9583, "fields": {"orig_filename": "Malmer_Martin_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409006}}, {"model": "metainfo.source", "pk": 9584, "fields": {"orig_filename": "Maloch_Antonin-Vankomil_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409007}}, {"model": "metainfo.source", "pk": 9585, "fields": {"orig_filename": "Malovrh_Miroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40f.", "author": "", "orig_id": 1409009}}, {"model": "metainfo.source", "pk": 9586, "fields": {"orig_filename": "Malter_Henry_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41", "author": "", "orig_id": 1409010}}, {"model": "metainfo.source", "pk": 9587, "fields": {"orig_filename": "Maltz-Maltenau_Karl-Ludwig_1788_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41", "author": "", "orig_id": 1409011}}, {"model": "metainfo.source", "pk": 9588, "fields": {"orig_filename": "Maly-Vevanovic_Vinzenz_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44", "author": "", "orig_id": 1409017}}, {"model": "metainfo.source", "pk": 9589, "fields": {"orig_filename": "Maly_Franz_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41f.", "author": "", "orig_id": 1409012}}, {"model": "metainfo.source", "pk": 9590, "fields": {"orig_filename": "Maly_Jakub_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 42", "author": "", "orig_id": 1409013}}, {"model": "metainfo.source", "pk": 9591, "fields": {"orig_filename": "Maly_Jiri_1899_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 42f.", "author": "", "orig_id": 1409014}}, {"model": "metainfo.source", "pk": 9592, "fields": {"orig_filename": "Maly_Joseph-Karl_1797_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 43", "author": "", "orig_id": 1409015}}, {"model": "metainfo.source", "pk": 9593, "fields": {"orig_filename": "Maly_Richard_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 43f.", "author": "", "orig_id": 1409016}}, {"model": "metainfo.source", "pk": 9594, "fields": {"orig_filename": "Mampe_Emma_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44", "author": "", "orig_id": 1409018}}, {"model": "metainfo.source", "pk": 9595, "fields": {"orig_filename": "Mamroth_Fedor_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44f.", "author": "", "orig_id": 1409019}}, {"model": "metainfo.source", "pk": 9596, "fields": {"orig_filename": "Mamula_Lazarus_1795_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45", "author": "", "orig_id": 1409020}}, {"model": "metainfo.source", "pk": 9597, "fields": {"orig_filename": "Manci_Filippo_1836_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45", "author": "", "orig_id": 1409090}}, {"model": "metainfo.source", "pk": 9598, "fields": {"orig_filename": "Manci_Sigismondo_1734_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45f.", "author": "", "orig_id": 1409091}}, {"model": "metainfo.source", "pk": 9599, "fields": {"orig_filename": "Mandell_Ludwig_1784_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409093}}, {"model": "metainfo.source", "pk": 9600, "fields": {"orig_filename": "Mandel_Cyril_1873_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409092}}, {"model": "metainfo.source", "pk": 9601, "fields": {"orig_filename": "Mandic_Antun_1740_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409094}}, {"model": "metainfo.source", "pk": 9602, "fields": {"orig_filename": "Mandic_Matko_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409095}}, {"model": "metainfo.source", "pk": 9603, "fields": {"orig_filename": "Mandler_Ernst_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409102}}, {"model": "metainfo.source", "pk": 9604, "fields": {"orig_filename": "Mandlick_August_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409103}}, {"model": "metainfo.source", "pk": 9605, "fields": {"orig_filename": "Mandl_Albert_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46f.", "author": "", "orig_id": 1409096}}, {"model": "metainfo.source", "pk": 9606, "fields": {"orig_filename": "Mandl_Ignaz_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47", "author": "", "orig_id": 1409097}}, {"model": "metainfo.source", "pk": 9607, "fields": {"orig_filename": "Mandl_Johannes_1899_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47", "author": "", "orig_id": 1409098}}, {"model": "metainfo.source", "pk": 9608, "fields": {"orig_filename": "Mandl_Julius_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47f.", "author": "", "orig_id": 1409099}}, {"model": "metainfo.source", "pk": 9609, "fields": {"orig_filename": "Mandl_Leopold_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409100}}, {"model": "metainfo.source", "pk": 9610, "fields": {"orig_filename": "Mandl_Richard_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409101}}, {"model": "metainfo.source", "pk": 9611, "fields": {"orig_filename": "Mandrovic_Adam_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409104}}, {"model": "metainfo.source", "pk": 9612, "fields": {"orig_filename": "Mandyczewski_Eusebius_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409105}}, {"model": "metainfo.source", "pk": 9613, "fields": {"orig_filename": "Mandyczewski_Konstantin_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409106}}, {"model": "metainfo.source", "pk": 9614, "fields": {"orig_filename": "Manes_Antonin_1784_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49f.", "author": "", "orig_id": 1409107}}, {"model": "metainfo.source", "pk": 9615, "fields": {"orig_filename": "Manes_Josef_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 50f.", "author": "", "orig_id": 1409108}}, {"model": "metainfo.source", "pk": 9616, "fields": {"orig_filename": "Manes_Vaclav_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409110}}, {"model": "metainfo.source", "pk": 9617, "fields": {"orig_filename": "Manfredini_Luigi_1771_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409112}}, {"model": "metainfo.source", "pk": 9618, "fields": {"orig_filename": "Manfroni-Manfort_Moriz_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409114}}, {"model": "metainfo.source", "pk": 9619, "fields": {"orig_filename": "Manfroni_Mario_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409113}}, {"model": "metainfo.source", "pk": 9620, "fields": {"orig_filename": "Mangra_Vasile_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53", "author": "", "orig_id": 1409183}}, {"model": "metainfo.source", "pk": 9621, "fields": {"orig_filename": "Mang_Hermann_1883_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52f.", "author": "", "orig_id": 1409115}}, {"model": "metainfo.source", "pk": 9622, "fields": {"orig_filename": "Maniecki_Wojciech_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53", "author": "", "orig_id": 1409184}}, {"model": "metainfo.source", "pk": 9623, "fields": {"orig_filename": "Maniu_Vasile_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53f.", "author": "", "orig_id": 1409185}}, {"model": "metainfo.source", "pk": 9624, "fields": {"orig_filename": "Mankowski_Antoni_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409186}}, {"model": "metainfo.source", "pk": 9625, "fields": {"orig_filename": "Mankowski_Boleslaw_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409187}}, {"model": "metainfo.source", "pk": 9626, "fields": {"orig_filename": "Mannaberg_Julius_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 55", "author": "", "orig_id": 1409191}}, {"model": "metainfo.source", "pk": 9627, "fields": {"orig_filename": "Maier_Alexius_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416f.", "author": "", "orig_id": 1411861}}, {"model": "metainfo.source", "pk": 9628, "fields": {"orig_filename": "Maier_Ambros_1849_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411862}}, {"model": "metainfo.source", "pk": 9629, "fields": {"orig_filename": "Maier_Angela_1807_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411935}}, {"model": "metainfo.source", "pk": 9630, "fields": {"orig_filename": "Maier_Antonio_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418f.", "author": "", "orig_id": 1411940}}, {"model": "metainfo.source", "pk": 9631, "fields": {"orig_filename": "Maier_Anton_1776_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411936}}, {"model": "metainfo.source", "pk": 9632, "fields": {"orig_filename": "Maier_Anton_1780_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417f.", "author": "", "orig_id": 1411937}}, {"model": "metainfo.source", "pk": 9633, "fields": {"orig_filename": "Maier_Anton_1838_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418", "author": "", "orig_id": 1411938}}, {"model": "metainfo.source", "pk": 9634, "fields": {"orig_filename": "Maier_Anton_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418", "author": "", "orig_id": 1411939}}, {"model": "metainfo.source", "pk": 9635, "fields": {"orig_filename": "Maier_August-Georg_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411941}}, {"model": "metainfo.source", "pk": 9636, "fields": {"orig_filename": "Maier_August-Konrad_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411942}}, {"model": "metainfo.source", "pk": 9637, "fields": {"orig_filename": "Maier_Christian_1812_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411943}}, {"model": "metainfo.source", "pk": 9638, "fields": {"orig_filename": "Maier_Dominik_1809_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419f.", "author": "", "orig_id": 1411944}}, {"model": "metainfo.source", "pk": 9639, "fields": {"orig_filename": "Maier_Edgar_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420", "author": "", "orig_id": 1411945}}, {"model": "metainfo.source", "pk": 9640, "fields": {"orig_filename": "Maier_Emil_1822_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420", "author": "", "orig_id": 1411946}}, {"model": "metainfo.source", "pk": 9641, "fields": {"orig_filename": "Maier_Emil_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420f.", "author": "", "orig_id": 1411947}}, {"model": "metainfo.source", "pk": 9642, "fields": {"orig_filename": "Maier_Endre_1859_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411948}}, {"model": "metainfo.source", "pk": 9643, "fields": {"orig_filename": "Maier_Erich-August_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411949}}, {"model": "metainfo.source", "pk": 9644, "fields": {"orig_filename": "Maier_Ernst_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411950}}, {"model": "metainfo.source", "pk": 9645, "fields": {"orig_filename": "Maier_Ernst_1839_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421f.", "author": "", "orig_id": 1411951}}, {"model": "metainfo.source", "pk": 9646, "fields": {"orig_filename": "Maier_Ferdinand_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422", "author": "", "orig_id": 1411952}}, {"model": "metainfo.source", "pk": 9647, "fields": {"orig_filename": "Maier_Franz-Martin_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423f.", "author": "", "orig_id": 1411957}}, {"model": "metainfo.source", "pk": 9648, "fields": {"orig_filename": "Maier_Franz-Xaver_1756_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411958}}, {"model": "metainfo.source", "pk": 9649, "fields": {"orig_filename": "Maier_Franz_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422f.", "author": "", "orig_id": 1411954}}, {"model": "metainfo.source", "pk": 9650, "fields": {"orig_filename": "Maier_Franz_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423", "author": "", "orig_id": 1411955}}, {"model": "metainfo.source", "pk": 9651, "fields": {"orig_filename": "Maier_Franz_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423", "author": "", "orig_id": 1411956}}, {"model": "metainfo.source", "pk": 9652, "fields": {"orig_filename": "Maier_Friedrich_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411959}}, {"model": "metainfo.source", "pk": 9653, "fields": {"orig_filename": "Maier_Friedrich_1887_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411960}}, {"model": "metainfo.source", "pk": 9654, "fields": {"orig_filename": "Maier_Fritz-Franz_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424f.", "author": "", "orig_id": 1412029}}, {"model": "metainfo.source", "pk": 9655, "fields": {"orig_filename": "Maier_Georg_1768_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425", "author": "", "orig_id": 1412030}}, {"model": "metainfo.source", "pk": 9656, "fields": {"orig_filename": "Maier_Giovanni_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425", "author": "", "orig_id": 1412031}}, {"model": "metainfo.source", "pk": 9657, "fields": {"orig_filename": "Maier_Guido_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425f.", "author": "", "orig_id": 1412032}}, {"model": "metainfo.source", "pk": 9658, "fields": {"orig_filename": "Maier_Gustav_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 426", "author": "", "orig_id": 1412033}}, {"model": "metainfo.source", "pk": 9659, "fields": {"orig_filename": "Maier_Hans-Horst_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 426f.", "author": "", "orig_id": 1412034}}, {"model": "metainfo.source", "pk": 9660, "fields": {"orig_filename": "Maier_Hans-Leopold_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 427", "author": "", "orig_id": 1412038}}, {"model": "metainfo.source", "pk": 9661, "fields": {"orig_filename": "Maier_Hans-Paul_1872_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 427f.", "author": "", "orig_id": 1412039}}, {"model": "metainfo.source", "pk": 9662, "fields": {"orig_filename": "Maier_Heinrich_1908_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428", "author": "", "orig_id": 1412040}}, {"model": "metainfo.source", "pk": 9663, "fields": {"orig_filename": "Maier_Ignaz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428", "author": "", "orig_id": 1412041}}, {"model": "metainfo.source", "pk": 9664, "fields": {"orig_filename": "Maier_Jaroslav_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428f.", "author": "", "orig_id": 1412042}}, {"model": "metainfo.source", "pk": 9665, "fields": {"orig_filename": "Maier_Johann-Alexius_1778_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430", "author": "", "orig_id": 1412047}}, {"model": "metainfo.source", "pk": 9666, "fields": {"orig_filename": "Maier_Johann-Alois_1801_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430f.", "author": "", "orig_id": 1412048}}, {"model": "metainfo.source", "pk": 9667, "fields": {"orig_filename": "Maier_Johann-Georg_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412049}}, {"model": "metainfo.source", "pk": 9668, "fields": {"orig_filename": "Maier_Johann-Georg_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412050}}, {"model": "metainfo.source", "pk": 9669, "fields": {"orig_filename": "Maier_Johann-Georg_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412051}}, {"model": "metainfo.source", "pk": 9670, "fields": {"orig_filename": "Maier_Johann-Georg_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431f.", "author": "", "orig_id": 1412122}}, {"model": "metainfo.source", "pk": 9671, "fields": {"orig_filename": "Maier_Johann_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429", "author": "", "orig_id": 1412043}}, {"model": "metainfo.source", "pk": 9672, "fields": {"orig_filename": "Maier_Johann_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429", "author": "", "orig_id": 1412044}}, {"model": "metainfo.source", "pk": 9673, "fields": {"orig_filename": "Maier_Johann_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429f.", "author": "", "orig_id": 1412045}}, {"model": "metainfo.source", "pk": 9674, "fields": {"orig_filename": "Maier_Johann_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430", "author": "", "orig_id": 1412046}}, {"model": "metainfo.source", "pk": 9675, "fields": {"orig_filename": "Maier_Josef_1791_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432", "author": "", "orig_id": 1412123}}, {"model": "metainfo.source", "pk": 9676, "fields": {"orig_filename": "Maier_Josef_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432f.", "author": "", "orig_id": 1420358}}, {"model": "metainfo.source", "pk": 9677, "fields": {"orig_filename": "Maier_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432", "author": "", "orig_id": 1420357}}, {"model": "metainfo.source", "pk": 9678, "fields": {"orig_filename": "Maier_Josef_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433", "author": "", "orig_id": 1412124}}, {"model": "metainfo.source", "pk": 9679, "fields": {"orig_filename": "Maier_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433", "author": "", "orig_id": 1412125}}, {"model": "metainfo.source", "pk": 9680, "fields": {"orig_filename": "Maier_Julius_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433f.", "author": "", "orig_id": 1412126}}, {"model": "metainfo.source", "pk": 9681, "fields": {"orig_filename": "Maier_Karl-Ernst_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412134}}, {"model": "metainfo.source", "pk": 9682, "fields": {"orig_filename": "Maier_Karl_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412127}}, {"model": "metainfo.source", "pk": 9683, "fields": {"orig_filename": "Maier_Karl_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412128}}, {"model": "metainfo.source", "pk": 9684, "fields": {"orig_filename": "Maier_Karl_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412129}}, {"model": "metainfo.source", "pk": 9685, "fields": {"orig_filename": "Maier_Karl_1855_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435", "author": "", "orig_id": 1412130}}, {"model": "metainfo.source", "pk": 9686, "fields": {"orig_filename": "Maier_Karl_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435", "author": "", "orig_id": 1412132}}, {"model": "metainfo.source", "pk": 9687, "fields": {"orig_filename": "Maier_Karl_1876_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435f.", "author": "", "orig_id": 1412131}}, {"model": "metainfo.source", "pk": 9688, "fields": {"orig_filename": "Maier_Lambert_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436f.", "author": "", "orig_id": 1412135}}, {"model": "metainfo.source", "pk": 9689, "fields": {"orig_filename": "Maier_Laurenz_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412137}}, {"model": "metainfo.source", "pk": 9690, "fields": {"orig_filename": "Maier_Leopold_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412136}}, {"model": "metainfo.source", "pk": 9691, "fields": {"orig_filename": "Maier_Leopold_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412138}}, {"model": "metainfo.source", "pk": 9692, "fields": {"orig_filename": "Maier_Ludwig_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412139}}, {"model": "metainfo.source", "pk": 9693, "fields": {"orig_filename": "Maier_Ludwig_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437f.", "author": "", "orig_id": 1412140}}, {"model": "metainfo.source", "pk": 9694, "fields": {"orig_filename": "Maier_Martin_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412141}}, {"model": "metainfo.source", "pk": 9695, "fields": {"orig_filename": "Maier_Mauricio_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412142}}, {"model": "metainfo.source", "pk": 9696, "fields": {"orig_filename": "Maier_Maximilian_1848_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438f.", "author": "", "orig_id": 1412144}}, {"model": "metainfo.source", "pk": 9697, "fields": {"orig_filename": "Maier_Max_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412143}}, {"model": "metainfo.source", "pk": 9698, "fields": {"orig_filename": "Maier_Michael_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 439", "author": "", "orig_id": 1412145}}, {"model": "metainfo.source", "pk": 9699, "fields": {"orig_filename": "Maier_Michael_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 439f.", "author": "", "orig_id": 1412146}}, {"model": "metainfo.source", "pk": 9700, "fields": {"orig_filename": "Maier_Oskar_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 440f.", "author": "", "orig_id": 1412147}}, {"model": "metainfo.source", "pk": 9701, "fields": {"orig_filename": "Maier_Philipp-Benitius_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441", "author": "", "orig_id": 1412223}}, {"model": "metainfo.source", "pk": 9702, "fields": {"orig_filename": "Maier_Philipp_1799_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441", "author": "", "orig_id": 1412148}}, {"model": "metainfo.source", "pk": 9703, "fields": {"orig_filename": "Maier_Richard_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441f.", "author": "", "orig_id": 1412224}}, {"model": "metainfo.source", "pk": 9704, "fields": {"orig_filename": "Maier_Robert-Alois_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412228}}, {"model": "metainfo.source", "pk": 9705, "fields": {"orig_filename": "Maier_Robert_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 443", "author": "", "orig_id": 1412226}}, {"model": "metainfo.source", "pk": 9706, "fields": {"orig_filename": "Maier_Robert_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 442f.", "author": "", "orig_id": 1412225}}, {"model": "metainfo.source", "pk": 9707, "fields": {"orig_filename": "Maier_Robert_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 443", "author": "", "orig_id": 1412227}}, {"model": "metainfo.source", "pk": 9708, "fields": {"orig_filename": "Maier_Rudolf_1837_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412229}}, {"model": "metainfo.source", "pk": 9709, "fields": {"orig_filename": "Maier_Rudolf_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412230}}, {"model": "metainfo.source", "pk": 9710, "fields": {"orig_filename": "Maier_Rudolf_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412231}}, {"model": "metainfo.source", "pk": 9711, "fields": {"orig_filename": "Maier_Rudolf_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444f.", "author": "", "orig_id": 1412232}}, {"model": "metainfo.source", "pk": 9712, "fields": {"orig_filename": "Maier_Rupert_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445", "author": "", "orig_id": 1412233}}, {"model": "metainfo.source", "pk": 9713, "fields": {"orig_filename": "Maier_Salesius_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445", "author": "", "orig_id": 1412234}}, {"model": "metainfo.source", "pk": 9714, "fields": {"orig_filename": "Maier_Salomon_1835_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445f.", "author": "", "orig_id": 1412235}}, {"model": "metainfo.source", "pk": 9715, "fields": {"orig_filename": "Maier_Sebastian_1773_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446", "author": "", "orig_id": 1412236}}, {"model": "metainfo.source", "pk": 9716, "fields": {"orig_filename": "Maier_Sebastian_1845_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446", "author": "", "orig_id": 1412237}}, {"model": "metainfo.source", "pk": 9717, "fields": {"orig_filename": "Maier_Siegmund_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446f.", "author": "", "orig_id": 1412238}}, {"model": "metainfo.source", "pk": 9718, "fields": {"orig_filename": "Maier_Sigmund_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 447", "author": "", "orig_id": 1412035}}, {"model": "metainfo.source", "pk": 9719, "fields": {"orig_filename": "Maier_Simon-Martin_1788_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 448", "author": "", "orig_id": 1412037}}, {"model": "metainfo.source", "pk": 9720, "fields": {"orig_filename": "Maier_Simon_1779_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 448", "author": "", "orig_id": 1412036}}, {"model": "metainfo.source", "pk": 9721, "fields": {"orig_filename": "Maier_Stefan_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1", "author": "", "orig_id": 1408550}}, {"model": "metainfo.source", "pk": 9722, "fields": {"orig_filename": "Maier_Tadeas_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1", "author": "", "orig_id": 1408551}}, {"model": "metainfo.source", "pk": 9723, "fields": {"orig_filename": "Maier_Theodor-Heinrich_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2", "author": "", "orig_id": 1408553}}, {"model": "metainfo.source", "pk": 9724, "fields": {"orig_filename": "Maier_Theodor_1788_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1f.", "author": "", "orig_id": 1408552}}, {"model": "metainfo.source", "pk": 9725, "fields": {"orig_filename": "Maier_Walther_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2", "author": "", "orig_id": 1408554}}, {"model": "metainfo.source", "pk": 9726, "fields": {"orig_filename": "Maier_Wilhelm_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2f.", "author": "", "orig_id": 1408555}}, {"model": "metainfo.source", "pk": 9727, "fields": {"orig_filename": "Maier_Wolf_1776_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408556}}, {"model": "metainfo.source", "pk": 9728, "fields": {"orig_filename": "Mailath-Szekhely_Antal_1801_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408747}}, {"model": "metainfo.source", "pk": 9729, "fields": {"orig_filename": "Mailath-Szekhely_Gusztav-Karoly_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408749}}, {"model": "metainfo.source", "pk": 9730, "fields": {"orig_filename": "Madarasz_Viktor_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 397", "author": "", "orig_id": 1411662}}, {"model": "metainfo.source", "pk": 9731, "fields": {"orig_filename": "Maderspach_Karoly_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399", "author": "", "orig_id": 1411669}}, {"model": "metainfo.source", "pk": 9732, "fields": {"orig_filename": "Madersperger_Josef_1768_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399f.", "author": "", "orig_id": 1411670}}, {"model": "metainfo.source", "pk": 9733, "fields": {"orig_filename": "Mader_Eduard_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411664}}, {"model": "metainfo.source", "pk": 9734, "fields": {"orig_filename": "Mader_Georg_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411665}}, {"model": "metainfo.source", "pk": 9735, "fields": {"orig_filename": "Mader_Johann_1796_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411666}}, {"model": "metainfo.source", "pk": 9736, "fields": {"orig_filename": "Mader_Linus_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398f.", "author": "", "orig_id": 1411667}}, {"model": "metainfo.source", "pk": 9737, "fields": {"orig_filename": "Mader_Raoul_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399", "author": "", "orig_id": 1411668}}, {"model": "metainfo.source", "pk": 9738, "fields": {"orig_filename": "Madeyski-Poray_Stanislaw-Jerzy_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400f.", "author": "", "orig_id": 1411674}}, {"model": "metainfo.source", "pk": 9739, "fields": {"orig_filename": "Madeyski_Antoni_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411671}}, {"model": "metainfo.source", "pk": 9740, "fields": {"orig_filename": "Madeyski_Edward_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411672}}, {"model": "metainfo.source", "pk": 9741, "fields": {"orig_filename": "Madeyski_Marceli_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411673}}, {"model": "metainfo.source", "pk": 9742, "fields": {"orig_filename": "Madjera_Karl-Gustav-Adolf_1828_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 401", "author": "", "orig_id": 1411675}}, {"model": "metainfo.source", "pk": 9743, "fields": {"orig_filename": "Madjera_Wolfgang_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 401f.", "author": "", "orig_id": 1411676}}, {"model": "metainfo.source", "pk": 9744, "fields": {"orig_filename": "Madlener_Andreas_1844_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411678}}, {"model": "metainfo.source", "pk": 9745, "fields": {"orig_filename": "Madlener_Johann_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411679}}, {"model": "metainfo.source", "pk": 9746, "fields": {"orig_filename": "Madl_Karel_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411677}}, {"model": "metainfo.source", "pk": 9747, "fields": {"orig_filename": "Madonizza_Antonio_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402f.", "author": "", "orig_id": 1411746}}, {"model": "metainfo.source", "pk": 9748, "fields": {"orig_filename": "Madurowicz_Maurycy_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 403", "author": "", "orig_id": 1411747}}, {"model": "metainfo.source", "pk": 9749, "fields": {"orig_filename": "Madva_Franz_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 403", "author": "", "orig_id": 1411748}}, {"model": "metainfo.source", "pk": 9750, "fields": {"orig_filename": "Maehler_Willibrord-Josef_1787_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404", "author": "", "orig_id": 1411749}}, {"model": "metainfo.source", "pk": 9751, "fields": {"orig_filename": "Maelzel_Johann_1772_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404", "author": "", "orig_id": 1411750}}, {"model": "metainfo.source", "pk": 9752, "fields": {"orig_filename": "Maendl-Bughardt_Maximilian_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404f.", "author": "", "orig_id": 1411751}}, {"model": "metainfo.source", "pk": 9753, "fields": {"orig_filename": "Maetzler_Anton_1780_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411753}}, {"model": "metainfo.source", "pk": 9754, "fields": {"orig_filename": "Maffei_Andrea_1798_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411754}}, {"model": "metainfo.source", "pk": 9755, "fields": {"orig_filename": "Maffei_Giuseppe_1775_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411755}}, {"model": "metainfo.source", "pk": 9756, "fields": {"orig_filename": "Magarasevic_Georgije_1793_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405f.", "author": "", "orig_id": 1411756}}, {"model": "metainfo.source", "pk": 9757, "fields": {"orig_filename": "Magda_Pal_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406", "author": "", "orig_id": 1411757}}, {"model": "metainfo.source", "pk": 9758, "fields": {"orig_filename": "Magdeburg_Johann_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406", "author": "", "orig_id": 1411758}}, {"model": "metainfo.source", "pk": 9759, "fields": {"orig_filename": "Magdeburg_Karl_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406f.", "author": "", "orig_id": 1411759}}, {"model": "metainfo.source", "pk": 9760, "fields": {"orig_filename": "Magerstein_Vinzenz-Theodor_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407f.", "author": "", "orig_id": 1411763}}, {"model": "metainfo.source", "pk": 9761, "fields": {"orig_filename": "Mager_Alois_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411760}}, {"model": "metainfo.source", "pk": 9762, "fields": {"orig_filename": "Mager_Anton_1762_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411761}}, {"model": "metainfo.source", "pk": 9763, "fields": {"orig_filename": "Mager_Wilhelm_1871_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411762}}, {"model": "metainfo.source", "pk": 9764, "fields": {"orig_filename": "Mages-Kompillan_Alois_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411764}}, {"model": "metainfo.source", "pk": 9765, "fields": {"orig_filename": "Mages-Kompillan_Maria_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411765}}, {"model": "metainfo.source", "pk": 9766, "fields": {"orig_filename": "Magg_Julius_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411766}}, {"model": "metainfo.source", "pk": 9767, "fields": {"orig_filename": "Magg_Julius_1884_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408f.", "author": "", "orig_id": 1411767}}, {"model": "metainfo.source", "pk": 9768, "fields": {"orig_filename": "Magnuszewski_Dominik_1810_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411768}}, {"model": "metainfo.source", "pk": 9769, "fields": {"orig_filename": "Magocsy-Dietz_Sandor_1855_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411841}}, {"model": "metainfo.source", "pk": 9770, "fields": {"orig_filename": "Magolic_Srecko_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411842}}, {"model": "metainfo.source", "pk": 9771, "fields": {"orig_filename": "Magrini_Antonio_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409f.", "author": "", "orig_id": 1411843}}, {"model": "metainfo.source", "pk": 9772, "fields": {"orig_filename": "Magyar-Oetoemoes_Laszlo_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410", "author": "", "orig_id": 1411845}}, {"model": "metainfo.source", "pk": 9773, "fields": {"orig_filename": "Magyar_Emmerich_1847_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410", "author": "", "orig_id": 1411844}}, {"model": "metainfo.source", "pk": 9774, "fields": {"orig_filename": "Mahler_Ede_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 411", "author": "", "orig_id": 1411847}}, {"model": "metainfo.source", "pk": 9775, "fields": {"orig_filename": "Mahler_Gustav_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 411f.", "author": "", "orig_id": 1411848}}, {"model": "metainfo.source", "pk": 9776, "fields": {"orig_filename": "Mahlknecht_Edmund_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 412f.", "author": "", "orig_id": 1411849}}, {"model": "metainfo.source", "pk": 9777, "fields": {"orig_filename": "Mahlknecht_Johann-Dominik_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411850}}, {"model": "metainfo.source", "pk": 9778, "fields": {"orig_filename": "Mahlknecht_Josef-Anton_1827_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411851}}, {"model": "metainfo.source", "pk": 9779, "fields": {"orig_filename": "Mahlknecht_Karl_1810_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411852}}, {"model": "metainfo.source", "pk": 9780, "fields": {"orig_filename": "Mahnic_Anton_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413f.", "author": "", "orig_id": 1411853}}, {"model": "metainfo.source", "pk": 9781, "fields": {"orig_filename": "Mahnke_Karl_1764_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414", "author": "", "orig_id": 1411854}}, {"model": "metainfo.source", "pk": 9782, "fields": {"orig_filename": "Mahorcig_Josef_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414", "author": "", "orig_id": 1411855}}, {"model": "metainfo.source", "pk": 9783, "fields": {"orig_filename": "Mahr_Gustav_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414f.", "author": "", "orig_id": 1411856}}, {"model": "metainfo.source", "pk": 9784, "fields": {"orig_filename": "Mahr_Jakob-Franz_1800_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 415", "author": "", "orig_id": 1411857}}, {"model": "metainfo.source", "pk": 9785, "fields": {"orig_filename": "Maier-Ahrdorff_Eduard_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408557}}, {"model": "metainfo.source", "pk": 9786, "fields": {"orig_filename": "Maier-Graefe_Julius_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408558}}, {"model": "metainfo.source", "pk": 9787, "fields": {"orig_filename": "Maier-Gravenegg_Josef_1780_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3f.", "author": "", "orig_id": 1408559}}, {"model": "metainfo.source", "pk": 9788, "fields": {"orig_filename": "Maier-Gunthof_Albert_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4", "author": "", "orig_id": 1408560}}, {"model": "metainfo.source", "pk": 9789, "fields": {"orig_filename": "Maier-Harting_Robert_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4", "author": "", "orig_id": 1408561}}, {"model": "metainfo.source", "pk": 9790, "fields": {"orig_filename": "Maier-Loewenschwerdt_Franz-Xaver_1794_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4f.", "author": "", "orig_id": 1408632}}, {"model": "metainfo.source", "pk": 9791, "fields": {"orig_filename": "Maier-Luebke_Wilhelm_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5", "author": "", "orig_id": 1408633}}, {"model": "metainfo.source", "pk": 9792, "fields": {"orig_filename": "Maier-Marnegg_Edmund_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5", "author": "", "orig_id": 1408634}}, {"model": "metainfo.source", "pk": 9793, "fields": {"orig_filename": "Maier-Mayrau_Kajetan_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5f.", "author": "", "orig_id": 1408635}}, {"model": "metainfo.source", "pk": 9794, "fields": {"orig_filename": "Maier-Melnhof_Franz_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 6f.", "author": "", "orig_id": 1408636}}, {"model": "metainfo.source", "pk": 9795, "fields": {"orig_filename": "Maier-Melnhof_Franz_1854_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7", "author": "", "orig_id": 1408637}}, {"model": "metainfo.source", "pk": 9796, "fields": {"orig_filename": "Maier-Melnhof_Karl_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7", "author": "", "orig_id": 1408638}}, {"model": "metainfo.source", "pk": 9797, "fields": {"orig_filename": "Maier-Montearabico_Anton_1824_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7f.", "author": "", "orig_id": 1408639}}, {"model": "metainfo.source", "pk": 9798, "fields": {"orig_filename": "Maier-Tenneburg_Felix_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408640}}, {"model": "metainfo.source", "pk": 9799, "fields": {"orig_filename": "Maier-Wallerstain-Ahrdorff_Maximilian_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408641}}, {"model": "metainfo.source", "pk": 9800, "fields": {"orig_filename": "Maierecker_Franz_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408642}}, {"model": "metainfo.source", "pk": 9801, "fields": {"orig_filename": "Maiereder_Julius_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9", "author": "", "orig_id": 1408643}}, {"model": "metainfo.source", "pk": 9802, "fields": {"orig_filename": "Maiereder_Karl_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9", "author": "", "orig_id": 1408644}}, {"model": "metainfo.source", "pk": 9803, "fields": {"orig_filename": "Maiereder_Rosa_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9f.", "author": "", "orig_id": 1408645}}, {"model": "metainfo.source", "pk": 9804, "fields": {"orig_filename": "Maiereder_Rudolf_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 10f.", "author": "", "orig_id": 1408646}}, {"model": "metainfo.source", "pk": 9805, "fields": {"orig_filename": "Maierhofen-Koburg-Anger_Stephan_1751_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408647}}, {"model": "metainfo.source", "pk": 9806, "fields": {"orig_filename": "Maierhofen-Koburg-Anger_Virgil_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408648}}, {"model": "metainfo.source", "pk": 9807, "fields": {"orig_filename": "Maierhofer-Gruenbuehel_Ferdinand_1798_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408737}}, {"model": "metainfo.source", "pk": 9808, "fields": {"orig_filename": "Maierhofer_Adolf_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408649}}, {"model": "metainfo.source", "pk": 9809, "fields": {"orig_filename": "Maierhofer_Bernhard_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11f.", "author": "", "orig_id": 1408650}}, {"model": "metainfo.source", "pk": 9810, "fields": {"orig_filename": "Maierhofer_Franz_1822_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 12", "author": "", "orig_id": 1408651}}, {"model": "metainfo.source", "pk": 9811, "fields": {"orig_filename": "Maierhofer_Franz_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 12f.", "author": "", "orig_id": 1408652}}, {"model": "metainfo.source", "pk": 9812, "fields": {"orig_filename": "Maierhofer_Gottfried_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13", "author": "", "orig_id": 1408653}}, {"model": "metainfo.source", "pk": 9813, "fields": {"orig_filename": "Maierhofer_Johann_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13", "author": "", "orig_id": 1408654}}, {"model": "metainfo.source", "pk": 9814, "fields": {"orig_filename": "Maierhofer_Johann_1787_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13f.", "author": "", "orig_id": 1408655}}, {"model": "metainfo.source", "pk": 9815, "fields": {"orig_filename": "Maierhofer_Josef_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14", "author": "", "orig_id": 1408729}}, {"model": "metainfo.source", "pk": 9816, "fields": {"orig_filename": "Maierhofer_Josef_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14", "author": "", "orig_id": 1408730}}, {"model": "metainfo.source", "pk": 9817, "fields": {"orig_filename": "Maierhofer_Karl-Wilhelm_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408733}}, {"model": "metainfo.source", "pk": 9818, "fields": {"orig_filename": "Maierhofer_Karl_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14f.", "author": "", "orig_id": 1408731}}, {"model": "metainfo.source", "pk": 9819, "fields": {"orig_filename": "Maierhofer_Karl_1837_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408732}}, {"model": "metainfo.source", "pk": 9820, "fields": {"orig_filename": "Maierhofer_Max_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408734}}, {"model": "metainfo.source", "pk": 9821, "fields": {"orig_filename": "Maierhofer_Sebastian_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15f.", "author": "", "orig_id": 1408735}}, {"model": "metainfo.source", "pk": 9822, "fields": {"orig_filename": "Maierhofer_Theodor_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408736}}, {"model": "metainfo.source", "pk": 9823, "fields": {"orig_filename": "Maierhoffer-Vedropolje_Eberhard_1870_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16f.", "author": "", "orig_id": 1408739}}, {"model": "metainfo.source", "pk": 9824, "fields": {"orig_filename": "Maierhoffer_Wilhelm_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408738}}, {"model": "metainfo.source", "pk": 9825, "fields": {"orig_filename": "Maierink_Gustav_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 17", "author": "", "orig_id": 1408740}}, {"model": "metainfo.source", "pk": 9826, "fields": {"orig_filename": "Maierl_Anton_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 17f.", "author": "", "orig_id": 1408741}}, {"model": "metainfo.source", "pk": 9827, "fields": {"orig_filename": "Maiern-Hohenberg_Gottfried_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 18f.", "author": "", "orig_id": 1408743}}, {"model": "metainfo.source", "pk": 9828, "fields": {"orig_filename": "Maiern_Franz-Ferdinand_1799_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 18", "author": "", "orig_id": 1408742}}, {"model": "metainfo.source", "pk": 9829, "fields": {"orig_filename": "Maiers_Karl_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408746}}, {"model": "metainfo.source", "pk": 9830, "fields": {"orig_filename": "Maier_Adolf_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416", "author": "", "orig_id": 1411859}}, {"model": "metainfo.source", "pk": 9831, "fields": {"orig_filename": "Maier_Adolf_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416", "author": "", "orig_id": 1411860}}, {"model": "metainfo.source", "pk": 9832, "fields": {"orig_filename": "Lukacsy_Kristof_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362f.", "author": "", "orig_id": 1411207}}, {"model": "metainfo.source", "pk": 9833, "fields": {"orig_filename": "Lukacsy_Sandor_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411208}}, {"model": "metainfo.source", "pk": 9834, "fields": {"orig_filename": "Lukacs_Bela_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411200}}, {"model": "metainfo.source", "pk": 9835, "fields": {"orig_filename": "Lukacs_Gyoergy_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411201}}, {"model": "metainfo.source", "pk": 9836, "fields": {"orig_filename": "Lukacs_Gyoergy_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411202}}, {"model": "metainfo.source", "pk": 9837, "fields": {"orig_filename": "Lukacs_Laszlo_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361f.", "author": "", "orig_id": 1411203}}, {"model": "metainfo.source", "pk": 9838, "fields": {"orig_filename": "Lukacs_Moric_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411204}}, {"model": "metainfo.source", "pk": 9839, "fields": {"orig_filename": "Lukacs_Sandor_1822_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411205}}, {"model": "metainfo.source", "pk": 9840, "fields": {"orig_filename": "Lukasek_Josef-Vaclav_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364", "author": "", "orig_id": 1411212}}, {"model": "metainfo.source", "pk": 9841, "fields": {"orig_filename": "Lukasiewicz-Lada_Wlodzimierz_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364f.", "author": "", "orig_id": 1411283}}, {"model": "metainfo.source", "pk": 9842, "fields": {"orig_filename": "Lukasiewicz_Ignacy_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364", "author": "", "orig_id": 1411282}}, {"model": "metainfo.source", "pk": 9843, "fields": {"orig_filename": "Lukaszewicz_Leslaw_1809_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 365", "author": "", "orig_id": 1411284}}, {"model": "metainfo.source", "pk": 9844, "fields": {"orig_filename": "Lukas_Gustav_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411209}}, {"model": "metainfo.source", "pk": 9845, "fields": {"orig_filename": "Lukas_Josef_1835_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411210}}, {"model": "metainfo.source", "pk": 9846, "fields": {"orig_filename": "Lukas_Josef_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363f.", "author": "", "orig_id": 1411211}}, {"model": "metainfo.source", "pk": 9847, "fields": {"orig_filename": "Lukes_Jan-Ludevit_1824_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 365f.", "author": "", "orig_id": 1411285}}, {"model": "metainfo.source", "pk": 9848, "fields": {"orig_filename": "Lukes_Johann_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366", "author": "", "orig_id": 1411286}}, {"model": "metainfo.source", "pk": 9849, "fields": {"orig_filename": "Lukovic_Antun_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366", "author": "", "orig_id": 1411287}}, {"model": "metainfo.source", "pk": 9850, "fields": {"orig_filename": "Luksch_Josef_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366f.", "author": "", "orig_id": 1411288}}, {"model": "metainfo.source", "pk": 9851, "fields": {"orig_filename": "Lulic_Ante_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 367f.", "author": "", "orig_id": 1411290}}, {"model": "metainfo.source", "pk": 9852, "fields": {"orig_filename": "Lumbe-Mallonitz_Josef-Thaddaeus_1801_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411291}}, {"model": "metainfo.source", "pk": 9853, "fields": {"orig_filename": "Lumniczer_Sandor_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411293}}, {"model": "metainfo.source", "pk": 9854, "fields": {"orig_filename": "Lumnitzer_Johann-Georg_1783_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411294}}, {"model": "metainfo.source", "pk": 9855, "fields": {"orig_filename": "Lumnitzer_Paul_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368f.", "author": "", "orig_id": 1411295}}, {"model": "metainfo.source", "pk": 9856, "fields": {"orig_filename": "Lumpe_Heinrich_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369", "author": "", "orig_id": 1411296}}, {"model": "metainfo.source", "pk": 9857, "fields": {"orig_filename": "Luntz_Erwin_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411300}}, {"model": "metainfo.source", "pk": 9858, "fields": {"orig_filename": "Luntz_Ivo_1882_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411301}}, {"model": "metainfo.source", "pk": 9859, "fields": {"orig_filename": "Luntz_Victor_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411302}}, {"model": "metainfo.source", "pk": 9860, "fields": {"orig_filename": "Lunzer_Eduard_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371", "author": "", "orig_id": 1411303}}, {"model": "metainfo.source", "pk": 9861, "fields": {"orig_filename": "Lun_Karl_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369", "author": "", "orig_id": 1411297}}, {"model": "metainfo.source", "pk": 9862, "fields": {"orig_filename": "Luppis-Rammer_Johann_1813_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371", "author": "", "orig_id": 1411379}}, {"model": "metainfo.source", "pk": 9863, "fields": {"orig_filename": "Lupul_Janko_1836_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372", "author": "", "orig_id": 1411382}}, {"model": "metainfo.source", "pk": 9864, "fields": {"orig_filename": "Lupul_Theodor_1838_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372", "author": "", "orig_id": 1411383}}, {"model": "metainfo.source", "pk": 9865, "fields": {"orig_filename": "Lupu_Florea_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371f.", "author": "", "orig_id": 1411380}}, {"model": "metainfo.source", "pk": 9866, "fields": {"orig_filename": "Luschan_Felix_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372f.", "author": "", "orig_id": 1411384}}, {"model": "metainfo.source", "pk": 9867, "fields": {"orig_filename": "Luschin-Ebengreuth_Arnold_1841_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 373f.", "author": "", "orig_id": 1411386}}, {"model": "metainfo.source", "pk": 9868, "fields": {"orig_filename": "Luschin_Franz-Xaver_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 373", "author": "", "orig_id": 1411385}}, {"model": "metainfo.source", "pk": 9869, "fields": {"orig_filename": "Lussana_Filippo_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 374", "author": "", "orig_id": 1411387}}, {"model": "metainfo.source", "pk": 9870, "fields": {"orig_filename": "Lussberger_Jakob_1813_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 374f.", "author": "", "orig_id": 1411388}}, {"model": "metainfo.source", "pk": 9871, "fields": {"orig_filename": "Lussnigg_Robert_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411389}}, {"model": "metainfo.source", "pk": 9872, "fields": {"orig_filename": "Lustgarten_Sigmund_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411390}}, {"model": "metainfo.source", "pk": 9873, "fields": {"orig_filename": "Lustig-Prean-Preanfeld-Fella_Heinrich_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376", "author": "", "orig_id": 1411393}}, {"model": "metainfo.source", "pk": 9874, "fields": {"orig_filename": "Lustig-Prean-Preanfeld_Karl_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376", "author": "", "orig_id": 1411392}}, {"model": "metainfo.source", "pk": 9875, "fields": {"orig_filename": "Lustig_Gustav_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411391}}, {"model": "metainfo.source", "pk": 9876, "fields": {"orig_filename": "Lustkandl_Wenzel_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376f.", "author": "", "orig_id": 1411394}}, {"model": "metainfo.source", "pk": 9877, "fields": {"orig_filename": "Luszczkiewicz_Wladyslaw_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 377", "author": "", "orig_id": 1411395}}, {"model": "metainfo.source", "pk": 9878, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Franz_1784_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378", "author": "", "orig_id": 1411397}}, {"model": "metainfo.source", "pk": 9879, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Karl-Anton-Josef_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378", "author": "", "orig_id": 1411398}}, {"model": "metainfo.source", "pk": 9880, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Otto_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378f.", "author": "", "orig_id": 1411399}}, {"model": "metainfo.source", "pk": 9881, "fields": {"orig_filename": "Lutter_Nandor_1820_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 377f.", "author": "", "orig_id": 1411396}}, {"model": "metainfo.source", "pk": 9882, "fields": {"orig_filename": "Luttich-Luttichheim_Eduard_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379", "author": "", "orig_id": 1411401}}, {"model": "metainfo.source", "pk": 9883, "fields": {"orig_filename": "Luttich_Mila_1872_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2185402}}, {"model": "metainfo.source", "pk": 9884, "fields": {"orig_filename": "Lutti_Vincenzo_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379", "author": "", "orig_id": 1411400}}, {"model": "metainfo.source", "pk": 9885, "fields": {"orig_filename": "Lutzer_Jenny_1816_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381", "author": "", "orig_id": 1411471}}, {"model": "metainfo.source", "pk": 9886, "fields": {"orig_filename": "Lutz_Andreas_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379f.", "author": "", "orig_id": 1411466}}, {"model": "metainfo.source", "pk": 9887, "fields": {"orig_filename": "Lutz_Ernst_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411467}}, {"model": "metainfo.source", "pk": 9888, "fields": {"orig_filename": "Lutz_Franz-Xaver_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411468}}, {"model": "metainfo.source", "pk": 9889, "fields": {"orig_filename": "Lutz_Josef-Anton_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411469}}, {"model": "metainfo.source", "pk": 9890, "fields": {"orig_filename": "Lutz_Josef-Fidelis-Sebastian_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380f.", "author": "", "orig_id": 1411470}}, {"model": "metainfo.source", "pk": 9891, "fields": {"orig_filename": "Luxardo_Eugen_1867_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382", "author": "", "orig_id": 1411474}}, {"model": "metainfo.source", "pk": 9892, "fields": {"orig_filename": "Lux_Anton_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381", "author": "", "orig_id": 1411472}}, {"model": "metainfo.source", "pk": 9893, "fields": {"orig_filename": "Lux_Josef-August_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381f.", "author": "", "orig_id": 1411473}}, {"model": "metainfo.source", "pk": 9894, "fields": {"orig_filename": "Luze_Karl_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382", "author": "", "orig_id": 1411475}}, {"model": "metainfo.source", "pk": 9895, "fields": {"orig_filename": "Luzzatto_Filosseno_1829_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382f.", "author": "", "orig_id": 1411476}}, {"model": "metainfo.source", "pk": 9896, "fields": {"orig_filename": "Luzzatto_Samuel-David_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 383", "author": "", "orig_id": 1411477}}, {"model": "metainfo.source", "pk": 9897, "fields": {"orig_filename": "Maager_Carl_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 383f.", "author": "", "orig_id": 1411478}}, {"model": "metainfo.source", "pk": 9898, "fields": {"orig_filename": "Maassen_Friedrich-Bernhard_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384f.", "author": "", "orig_id": 1411483}}, {"model": "metainfo.source", "pk": 9899, "fields": {"orig_filename": "Maass_Alois-Simon_1758_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411480}}, {"model": "metainfo.source", "pk": 9900, "fields": {"orig_filename": "Maass_Ferdinand_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411481}}, {"model": "metainfo.source", "pk": 9901, "fields": {"orig_filename": "Maass_Friedrich-Otto_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411482}}, {"model": "metainfo.source", "pk": 9902, "fields": {"orig_filename": "Macalik-Ivanobran_Josef_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 385", "author": "", "orig_id": 1411484}}, {"model": "metainfo.source", "pk": 9903, "fields": {"orig_filename": "Macan_Jakub-Rafael_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 385f.", "author": "", "orig_id": 1411485}}, {"model": "metainfo.source", "pk": 9904, "fields": {"orig_filename": "Macasy_Gustav_1871_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386", "author": "", "orig_id": 1411486}}, {"model": "metainfo.source", "pk": 9905, "fields": {"orig_filename": "Macca_Antonio_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386", "author": "", "orig_id": 1411487}}, {"model": "metainfo.source", "pk": 9906, "fields": {"orig_filename": "Macchio_Karl_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387", "author": "", "orig_id": 1411489}}, {"model": "metainfo.source", "pk": 9907, "fields": {"orig_filename": "Macchi_Mauro_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386f.", "author": "", "orig_id": 1411488}}, {"model": "metainfo.source", "pk": 9908, "fields": {"orig_filename": "Macek_Antonin_1872_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387", "author": "", "orig_id": 1411490}}, {"model": "metainfo.source", "pk": 9909, "fields": {"orig_filename": "Macelariu_Ilie_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387f.", "author": "", "orig_id": 1411568}}, {"model": "metainfo.source", "pk": 9910, "fields": {"orig_filename": "Machacek_Simeon-Karel_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390f.", "author": "", "orig_id": 1411573}}, {"model": "metainfo.source", "pk": 9911, "fields": {"orig_filename": "Machac_Ladislav_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390", "author": "", "orig_id": 1411574}}, {"model": "metainfo.source", "pk": 9912, "fields": {"orig_filename": "Machalski_Maksymilian_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391", "author": "", "orig_id": 1411576}}, {"model": "metainfo.source", "pk": 9913, "fields": {"orig_filename": "Machal_Jan_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391", "author": "", "orig_id": 1411575}}, {"model": "metainfo.source", "pk": 9914, "fields": {"orig_filename": "Machanek_Ignaz_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391f.", "author": "", "orig_id": 1411577}}, {"model": "metainfo.source", "pk": 9915, "fields": {"orig_filename": "Machar_Josef-Svatopluk_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 392f.", "author": "", "orig_id": 1411578}}, {"model": "metainfo.source", "pk": 9916, "fields": {"orig_filename": "Macha_Karel-Hynek_1810_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390", "author": "", "orig_id": 1411572}}, {"model": "metainfo.source", "pk": 9917, "fields": {"orig_filename": "Machek_Antonin_1775_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393", "author": "", "orig_id": 1411579}}, {"model": "metainfo.source", "pk": 9918, "fields": {"orig_filename": "Machek_Emanuel_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393", "author": "", "orig_id": 1411580}}, {"model": "metainfo.source", "pk": 9919, "fields": {"orig_filename": "Machek_Ernst_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393f.", "author": "", "orig_id": 1411581}}, {"model": "metainfo.source", "pk": 9920, "fields": {"orig_filename": "Macher_Matthias_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394", "author": "", "orig_id": 1411582}}, {"model": "metainfo.source", "pk": 9921, "fields": {"orig_filename": "Macher_Maximilian_1882_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394", "author": "", "orig_id": 1411583}}, {"model": "metainfo.source", "pk": 9922, "fields": {"orig_filename": "Machold_Joseph_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394f.", "author": "", "orig_id": 1411584}}, {"model": "metainfo.source", "pk": 9923, "fields": {"orig_filename": "Mach_Edmund_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 388", "author": "", "orig_id": 1411569}}, {"model": "metainfo.source", "pk": 9924, "fields": {"orig_filename": "Mach_Ernst_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 388f.", "author": "", "orig_id": 1411570}}, {"model": "metainfo.source", "pk": 9925, "fields": {"orig_filename": "Mach_Franz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 389f.", "author": "", "orig_id": 1411571}}, {"model": "metainfo.source", "pk": 9926, "fields": {"orig_filename": "Maciejowski_Ignacy_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395", "author": "", "orig_id": 1411585}}, {"model": "metainfo.source", "pk": 9927, "fields": {"orig_filename": "Mack_Jozsef_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395", "author": "", "orig_id": 1411586}}, {"model": "metainfo.source", "pk": 9928, "fields": {"orig_filename": "Mack_Karl_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395f.", "author": "", "orig_id": 1411587}}, {"model": "metainfo.source", "pk": 9929, "fields": {"orig_filename": "Macun_Ivan_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411658}}, {"model": "metainfo.source", "pk": 9930, "fields": {"orig_filename": "Maczka_Jozef_1888_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411659}}, {"model": "metainfo.source", "pk": 9931, "fields": {"orig_filename": "Maczynski_Jozef_1807_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411660}}, {"model": "metainfo.source", "pk": 9932, "fields": {"orig_filename": "Madach_Imre_1823_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396f.", "author": "", "orig_id": 1411661}}, {"model": "metainfo.source", "pk": 9933, "fields": {"orig_filename": "Madarasz-Kisfalud_Laszlo_1811_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 397f.", "author": "", "orig_id": 1411663}}, {"model": "metainfo.source", "pk": 9934, "fields": {"orig_filename": "Loss_Giuseppe_1831_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412221}}, {"model": "metainfo.source", "pk": 9935, "fields": {"orig_filename": "Lostak_Jan_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412222}}, {"model": "metainfo.source", "pk": 9936, "fields": {"orig_filename": "Los_Jan_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325f.", "author": "", "orig_id": 1412212}}, {"model": "metainfo.source", "pk": 9937, "fields": {"orig_filename": "Lotheissen_Ferdinand_1833_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329f.", "author": "", "orig_id": 1412293}}, {"model": "metainfo.source", "pk": 9938, "fields": {"orig_filename": "Lotheissen_Georg_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330", "author": "", "orig_id": 1412294}}, {"model": "metainfo.source", "pk": 9939, "fields": {"orig_filename": "Lothringen_Karl-Eugen_1751_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330", "author": "", "orig_id": 1412295}}, {"model": "metainfo.source", "pk": 9940, "fields": {"orig_filename": "Lotti-Santa_Marcella_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412299}}, {"model": "metainfo.source", "pk": 9941, "fields": {"orig_filename": "Lott_Franz-Karl_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330f.", "author": "", "orig_id": 1412296}}, {"model": "metainfo.source", "pk": 9942, "fields": {"orig_filename": "Lott_Gustav-Christian_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412297}}, {"model": "metainfo.source", "pk": 9943, "fields": {"orig_filename": "Lott_Julius_1836_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412298}}, {"model": "metainfo.source", "pk": 9944, "fields": {"orig_filename": "Lotz_Karoly_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332", "author": "", "orig_id": 1412300}}, {"model": "metainfo.source", "pk": 9945, "fields": {"orig_filename": "Lotz_Wilhelm_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332", "author": "", "orig_id": 1412301}}, {"model": "metainfo.source", "pk": 9946, "fields": {"orig_filename": "Louis-Wawel_Jozef_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332f.", "author": "", "orig_id": 1412302}}, {"model": "metainfo.source", "pk": 9947, "fields": {"orig_filename": "Lovassy_Andor_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412303}}, {"model": "metainfo.source", "pk": 9948, "fields": {"orig_filename": "Lovassy_Laszlo_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412304}}, {"model": "metainfo.source", "pk": 9949, "fields": {"orig_filename": "Lovassy_Sandor_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412305}}, {"model": "metainfo.source", "pk": 9950, "fields": {"orig_filename": "Lovati_Teodoro_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412306}}, {"model": "metainfo.source", "pk": 9951, "fields": {"orig_filename": "Loverini_Ponziano_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412307}}, {"model": "metainfo.source", "pk": 9952, "fields": {"orig_filename": "Lovetto_Karl_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412308}}, {"model": "metainfo.source", "pk": 9953, "fields": {"orig_filename": "Lovich_Adam_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412309}}, {"model": "metainfo.source", "pk": 9954, "fields": {"orig_filename": "Lovisato_Domenico_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334f.", "author": "", "orig_id": 1412310}}, {"model": "metainfo.source", "pk": 9955, "fields": {"orig_filename": "Lovrencic_Jakob_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412311}}, {"model": "metainfo.source", "pk": 9956, "fields": {"orig_filename": "Lowag_Josef_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412312}}, {"model": "metainfo.source", "pk": 9957, "fields": {"orig_filename": "Loyp_Joseph_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412313}}, {"model": "metainfo.source", "pk": 9958, "fields": {"orig_filename": "Lozica_Ivan_1910_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412314}}, {"model": "metainfo.source", "pk": 9959, "fields": {"orig_filename": "Lozinski_Bronislaw_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335f.", "author": "", "orig_id": 1412315}}, {"model": "metainfo.source", "pk": 9960, "fields": {"orig_filename": "Lozinski_Walery_1837_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336", "author": "", "orig_id": 1412316}}, {"model": "metainfo.source", "pk": 9961, "fields": {"orig_filename": "Lozinski_Wladyslaw_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336", "author": "", "orig_id": 1412317}}, {"model": "metainfo.source", "pk": 9962, "fields": {"orig_filename": "Lozovina_Vinko_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336f.", "author": "", "orig_id": 1412387}}, {"model": "metainfo.source", "pk": 9963, "fields": {"orig_filename": "Lozynskyj_Josyp_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412388}}, {"model": "metainfo.source", "pk": 9964, "fields": {"orig_filename": "Lozynskyj_Mychajlo_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412389}}, {"model": "metainfo.source", "pk": 9965, "fields": {"orig_filename": "Luber_Ludwig_1813_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412390}}, {"model": "metainfo.source", "pk": 9966, "fields": {"orig_filename": "Lubinski_Rudolf_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412391}}, {"model": "metainfo.source", "pk": 9967, "fields": {"orig_filename": "Lubomirski_Henryk_1777_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412392}}, {"model": "metainfo.source", "pk": 9968, "fields": {"orig_filename": "Lubomirski_Jerzy_1817_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412393}}, {"model": "metainfo.source", "pk": 9969, "fields": {"orig_filename": "Lubomirski_Kazimierz_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412394}}, {"model": "metainfo.source", "pk": 9970, "fields": {"orig_filename": "Lubrich_Agost_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338f.", "author": "", "orig_id": 1412395}}, {"model": "metainfo.source", "pk": 9971, "fields": {"orig_filename": "Lucam_Anna_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339", "author": "", "orig_id": 1412396}}, {"model": "metainfo.source", "pk": 9972, "fields": {"orig_filename": "Lucam_Carl_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339", "author": "", "orig_id": 1412397}}, {"model": "metainfo.source", "pk": 9973, "fields": {"orig_filename": "Lucam_Wilhelm_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339f.", "author": "", "orig_id": 1412398}}, {"model": "metainfo.source", "pk": 9974, "fields": {"orig_filename": "Lucas_Carl-Wilhelm_1803_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340", "author": "", "orig_id": 1412399}}, {"model": "metainfo.source", "pk": 9975, "fields": {"orig_filename": "Lucatello_Luigi_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340", "author": "", "orig_id": 1412400}}, {"model": "metainfo.source", "pk": 9976, "fields": {"orig_filename": "Luccardi_Vincenzo_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412402}}, {"model": "metainfo.source", "pk": 9977, "fields": {"orig_filename": "Lucca_Pauline_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340f.", "author": "", "orig_id": 1412401}}, {"model": "metainfo.source", "pk": 9978, "fields": {"orig_filename": "Lucerna_Eduard_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412403}}, {"model": "metainfo.source", "pk": 9979, "fields": {"orig_filename": "Luchner_Oskar-Friedrich_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412404}}, {"model": "metainfo.source", "pk": 9980, "fields": {"orig_filename": "Luciani_Tommaso_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341f.", "author": "", "orig_id": 1412405}}, {"model": "metainfo.source", "pk": 9981, "fields": {"orig_filename": "Lucich_Geza_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 342", "author": "", "orig_id": 1412406}}, {"model": "metainfo.source", "pk": 9982, "fields": {"orig_filename": "Luckaj_Mychajlo_1789_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343", "author": "", "orig_id": 1412408}}, {"model": "metainfo.source", "pk": 9983, "fields": {"orig_filename": "Lucka_Emil_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 342f.", "author": "", "orig_id": 1412407}}, {"model": "metainfo.source", "pk": 9984, "fields": {"orig_filename": "Luckhardt_Fritz_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343", "author": "", "orig_id": 1412409}}, {"model": "metainfo.source", "pk": 9985, "fields": {"orig_filename": "Luckmann_Joseph_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343f.", "author": "", "orig_id": 1411003}}, {"model": "metainfo.source", "pk": 9986, "fields": {"orig_filename": "Luckmann_Karl_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344", "author": "", "orig_id": 1411004}}, {"model": "metainfo.source", "pk": 9987, "fields": {"orig_filename": "Luckmann_Lambert-Carl_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344", "author": "", "orig_id": 1411005}}, {"model": "metainfo.source", "pk": 9988, "fields": {"orig_filename": "Ludescher_Beat_1777_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344f.", "author": "", "orig_id": 1411006}}, {"model": "metainfo.source", "pk": 9989, "fields": {"orig_filename": "Ludewig_Anton-Edmund_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411007}}, {"model": "metainfo.source", "pk": 9990, "fields": {"orig_filename": "Ludig_Emanuel_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411008}}, {"model": "metainfo.source", "pk": 9991, "fields": {"orig_filename": "Ludolf_Emanuel_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411009}}, {"model": "metainfo.source", "pk": 9992, "fields": {"orig_filename": "Ludvigh_Janos_1812_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345f.", "author": "", "orig_id": 1411010}}, {"model": "metainfo.source", "pk": 9993, "fields": {"orig_filename": "Ludvigh_Samuel_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346", "author": "", "orig_id": 1411011}}, {"model": "metainfo.source", "pk": 9994, "fields": {"orig_filename": "Ludvik_Josef-Myslimir_1796_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346", "author": "", "orig_id": 1411012}}, {"model": "metainfo.source", "pk": 9995, "fields": {"orig_filename": "Ludwig_Alfred_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346f.", "author": "", "orig_id": 1411013}}, {"model": "metainfo.source", "pk": 9996, "fields": {"orig_filename": "Ludwig_Bernhard-Hieronymus_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347", "author": "", "orig_id": 1411015}}, {"model": "metainfo.source", "pk": 9997, "fields": {"orig_filename": "Ludwig_Bernhard_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347", "author": "", "orig_id": 1411014}}, {"model": "metainfo.source", "pk": 9998, "fields": {"orig_filename": "Ludwig_Ernst_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347f.", "author": "", "orig_id": 1411016}}, {"model": "metainfo.source", "pk": 9999, "fields": {"orig_filename": "Ludwig_Franz-Josef_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411017}}, {"model": "metainfo.source", "pk": 10000, "fields": {"orig_filename": "Ludwig_Franz-Xaver_1868_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411018}}, {"model": "metainfo.source", "pk": 10001, "fields": {"orig_filename": "Ludwig_Georg_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411020}}, {"model": "metainfo.source", "pk": 10002, "fields": {"orig_filename": "Ludwig_Hermann-Wilhelm_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349", "author": "", "orig_id": 1411094}}, {"model": "metainfo.source", "pk": 10003, "fields": {"orig_filename": "Ludwig_Hermann_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348f.", "author": "", "orig_id": 1411021}}, {"model": "metainfo.source", "pk": 10004, "fields": {"orig_filename": "Ludwig_Joseph-Anton_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349", "author": "", "orig_id": 1411095}}, {"model": "metainfo.source", "pk": 10005, "fields": {"orig_filename": "Ludwig_Karl_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349f.", "author": "", "orig_id": 1411096}}, {"model": "metainfo.source", "pk": 10006, "fields": {"orig_filename": "Ludwig_Karl_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350", "author": "", "orig_id": 1411097}}, {"model": "metainfo.source", "pk": 10007, "fields": {"orig_filename": "Ludwig_Karl_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350", "author": "", "orig_id": 1411098}}, {"model": "metainfo.source", "pk": 10008, "fields": {"orig_filename": "Ludwig_Salvator_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350f.", "author": "", "orig_id": 1411099}}, {"model": "metainfo.source", "pk": 10009, "fields": {"orig_filename": "Ludwig_Viktor_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351", "author": "", "orig_id": 1411100}}, {"model": "metainfo.source", "pk": 10010, "fields": {"orig_filename": "Ludwik_Kamill_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351", "author": "", "orig_id": 1411101}}, {"model": "metainfo.source", "pk": 10011, "fields": {"orig_filename": "Ludwik_Paul_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351f.", "author": "", "orig_id": 1411102}}, {"model": "metainfo.source", "pk": 10012, "fields": {"orig_filename": "Lueger_Karl_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 352f.", "author": "", "orig_id": 1411103}}, {"model": "metainfo.source", "pk": 10013, "fields": {"orig_filename": "Luenemann_Erich_1881_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353", "author": "", "orig_id": 1411104}}, {"model": "metainfo.source", "pk": 10014, "fields": {"orig_filename": "Luessner_Moritz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353", "author": "", "orig_id": 1411105}}, {"model": "metainfo.source", "pk": 10015, "fields": {"orig_filename": "Luetgendorff-Leinburg_Ferdinand_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353f.", "author": "", "orig_id": 1411106}}, {"model": "metainfo.source", "pk": 10016, "fields": {"orig_filename": "Luetgendorff-Leinburg_Otto-Gottfried_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411107}}, {"model": "metainfo.source", "pk": 10017, "fields": {"orig_filename": "Luetgendorff-Leinburg_Willibald-Leo_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411108}}, {"model": "metainfo.source", "pk": 10018, "fields": {"orig_filename": "Luetzow_Franz_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411109}}, {"model": "metainfo.source", "pk": 10019, "fields": {"orig_filename": "Luetzow_Heinrich_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354f.", "author": "", "orig_id": 1411110}}, {"model": "metainfo.source", "pk": 10020, "fields": {"orig_filename": "Luetzow_Karl_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355", "author": "", "orig_id": 1411111}}, {"model": "metainfo.source", "pk": 10021, "fields": {"orig_filename": "Lugert_Josef_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356f.", "author": "", "orig_id": 1411116}}, {"model": "metainfo.source", "pk": 10022, "fields": {"orig_filename": "Luger_Alfred_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355", "author": "", "orig_id": 1411112}}, {"model": "metainfo.source", "pk": 10023, "fields": {"orig_filename": "Luger_Alphons_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355f.", "author": "", "orig_id": 1411113}}, {"model": "metainfo.source", "pk": 10024, "fields": {"orig_filename": "Luger_Georg_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356", "author": "", "orig_id": 1411115}}, {"model": "metainfo.source", "pk": 10025, "fields": {"orig_filename": "Luggin_Hans_1863_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 357", "author": "", "orig_id": 1411117}}, {"model": "metainfo.source", "pk": 10026, "fields": {"orig_filename": "Luggin_Josef_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 357f.", "author": "", "orig_id": 1411118}}, {"model": "metainfo.source", "pk": 10027, "fields": {"orig_filename": "Lugnani_Giuseppe_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411191}}, {"model": "metainfo.source", "pk": 10028, "fields": {"orig_filename": "Lugossy_Jozsef_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411192}}, {"model": "metainfo.source", "pk": 10029, "fields": {"orig_filename": "Luh_Heinrich_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411193}}, {"model": "metainfo.source", "pk": 10030, "fields": {"orig_filename": "Luick_Karl_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358f.", "author": "", "orig_id": 1411194}}, {"model": "metainfo.source", "pk": 10031, "fields": {"orig_filename": "Luithlen_Friedrich_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 359", "author": "", "orig_id": 1411195}}, {"model": "metainfo.source", "pk": 10032, "fields": {"orig_filename": "Luithlen_Hugo_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 359f.", "author": "", "orig_id": 1411196}}, {"model": "metainfo.source", "pk": 10033, "fields": {"orig_filename": "Luithlen_Marie_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360", "author": "", "orig_id": 1411197}}, {"model": "metainfo.source", "pk": 10034, "fields": {"orig_filename": "Luithlen_Martha_1866_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360", "author": "", "orig_id": 1411198}}, {"model": "metainfo.source", "pk": 10035, "fields": {"orig_filename": "Lukachich-Somorja_Geza_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360f.", "author": "", "orig_id": 1411199}}, {"model": "metainfo.source", "pk": 10036, "fields": {"orig_filename": "Lukacsy_Imre_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411206}}, {"model": "metainfo.source", "pk": 10037, "fields": {"orig_filename": "Loewinger_Cilli_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 294f.", "author": "", "orig_id": 1411836}}, {"model": "metainfo.source", "pk": 10038, "fields": {"orig_filename": "Loewit_Moritz_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 295", "author": "", "orig_id": 1411837}}, {"model": "metainfo.source", "pk": 10039, "fields": {"orig_filename": "Loewl-Lenkenthal_Ferdinand_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 295f.", "author": "", "orig_id": 1411838}}, {"model": "metainfo.source", "pk": 10040, "fields": {"orig_filename": "Loewy_Albert_1816_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411839}}, {"model": "metainfo.source", "pk": 10041, "fields": {"orig_filename": "Loewy_Antonie_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411840}}, {"model": "metainfo.source", "pk": 10042, "fields": {"orig_filename": "Loewy_Emanuel_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411911}}, {"model": "metainfo.source", "pk": 10043, "fields": {"orig_filename": "Loewy_Josef_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296f.", "author": "", "orig_id": 1411912}}, {"model": "metainfo.source", "pk": 10044, "fields": {"orig_filename": "Loewy_Moritz_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297f.", "author": "", "orig_id": 1411914}}, {"model": "metainfo.source", "pk": 10045, "fields": {"orig_filename": "Loewy_Siegfried_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298", "author": "", "orig_id": 1411915}}, {"model": "metainfo.source", "pk": 10046, "fields": {"orig_filename": "Loew_Georg_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411734}}, {"model": "metainfo.source", "pk": 10047, "fields": {"orig_filename": "Loew_Immanuel_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411735}}, {"model": "metainfo.source", "pk": 10048, "fields": {"orig_filename": "Loew_Joseph_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283f.", "author": "", "orig_id": 1411736}}, {"model": "metainfo.source", "pk": 10049, "fields": {"orig_filename": "Loew_Karl_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 284", "author": "", "orig_id": 1411737}}, {"model": "metainfo.source", "pk": 10050, "fields": {"orig_filename": "Loew_Konrad_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 284f.", "author": "", "orig_id": 1411738}}, {"model": "metainfo.source", "pk": 10051, "fields": {"orig_filename": "Loew_Leopold_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 285", "author": "", "orig_id": 1411739}}, {"model": "metainfo.source", "pk": 10052, "fields": {"orig_filename": "Loew_Moritz_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 285f.", "author": "", "orig_id": 1411740}}, {"model": "metainfo.source", "pk": 10053, "fields": {"orig_filename": "Loew_Philipp_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411742}}, {"model": "metainfo.source", "pk": 10054, "fields": {"orig_filename": "Loew_Philip_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411741}}, {"model": "metainfo.source", "pk": 10055, "fields": {"orig_filename": "Loew_Tobias_1844_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411743}}, {"model": "metainfo.source", "pk": 10056, "fields": {"orig_filename": "Loew_Wilhelm_1812_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411744}}, {"model": "metainfo.source", "pk": 10057, "fields": {"orig_filename": "Logothetti_Hugo_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298", "author": "", "orig_id": 1411916}}, {"model": "metainfo.source", "pk": 10058, "fields": {"orig_filename": "Lohan_Robert_1884_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298f.", "author": "", "orig_id": 1411917}}, {"model": "metainfo.source", "pk": 10059, "fields": {"orig_filename": "Lohner_Heinrich_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299", "author": "", "orig_id": 1411918}}, {"model": "metainfo.source", "pk": 10060, "fields": {"orig_filename": "Lohner_Jakob_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299", "author": "", "orig_id": 1411919}}, {"model": "metainfo.source", "pk": 10061, "fields": {"orig_filename": "Lohner_Ludwig_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299f.", "author": "", "orig_id": 1411920}}, {"model": "metainfo.source", "pk": 10062, "fields": {"orig_filename": "Lohninger_Joseph_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 300", "author": "", "orig_id": 1411922}}, {"model": "metainfo.source", "pk": 10063, "fields": {"orig_filename": "Lohr_Otto_1847_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 300f.", "author": "", "orig_id": 1411923}}, {"model": "metainfo.source", "pk": 10064, "fields": {"orig_filename": "Lohsing_Ernst_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301", "author": "", "orig_id": 1411924}}, {"model": "metainfo.source", "pk": 10065, "fields": {"orig_filename": "Lohwag_Ernst_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301", "author": "", "orig_id": 1411925}}, {"model": "metainfo.source", "pk": 10066, "fields": {"orig_filename": "Lohwag_Heinrich_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301f.", "author": "", "orig_id": 1411926}}, {"model": "metainfo.source", "pk": 10067, "fields": {"orig_filename": "Loidl_Karl_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411927}}, {"model": "metainfo.source", "pk": 10068, "fields": {"orig_filename": "Loidol_Oddo_1858_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411928}}, {"model": "metainfo.source", "pk": 10069, "fields": {"orig_filename": "Loimann_Gustav_1853_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411929}}, {"model": "metainfo.source", "pk": 10070, "fields": {"orig_filename": "Loinger_Vitus_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302f.", "author": "", "orig_id": 1411930}}, {"model": "metainfo.source", "pk": 10071, "fields": {"orig_filename": "Lojko-Tisovsky_August_1843_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303", "author": "", "orig_id": 1411931}}, {"model": "metainfo.source", "pk": 10072, "fields": {"orig_filename": "Lokar_Anton_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303", "author": "", "orig_id": 1411932}}, {"model": "metainfo.source", "pk": 10073, "fields": {"orig_filename": "Lolek_Stanislav_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303f.", "author": "", "orig_id": 1411933}}, {"model": "metainfo.source", "pk": 10074, "fields": {"orig_filename": "Lolli_Eude_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1411934}}, {"model": "metainfo.source", "pk": 10075, "fields": {"orig_filename": "Lombardini_Alexander_1851_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1412008}}, {"model": "metainfo.source", "pk": 10076, "fields": {"orig_filename": "Lombardini_Elia_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1412009}}, {"model": "metainfo.source", "pk": 10077, "fields": {"orig_filename": "Lombroso_Ezechia-Marco_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1412010}}, {"model": "metainfo.source", "pk": 10078, "fields": {"orig_filename": "Lomnicki_Jaroslaw-Ludomir_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305", "author": "", "orig_id": 1412011}}, {"model": "metainfo.source", "pk": 10079, "fields": {"orig_filename": "Lomnicki_Marian_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305", "author": "", "orig_id": 1412012}}, {"model": "metainfo.source", "pk": 10080, "fields": {"orig_filename": "Longhi_Giuseppe_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305f.", "author": "", "orig_id": 1412013}}, {"model": "metainfo.source", "pk": 10081, "fields": {"orig_filename": "Longo_Emanuele_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306", "author": "", "orig_id": 1412014}}, {"model": "metainfo.source", "pk": 10082, "fields": {"orig_filename": "Lonkay_Antal_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306", "author": "", "orig_id": 1412015}}, {"model": "metainfo.source", "pk": 10083, "fields": {"orig_filename": "Lonovics_Jozsef_1793_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306f.", "author": "", "orig_id": 1412016}}, {"model": "metainfo.source", "pk": 10084, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Albert_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307", "author": "", "orig_id": 1412017}}, {"model": "metainfo.source", "pk": 10085, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Gabor_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307", "author": "", "orig_id": 1412018}}, {"model": "metainfo.source", "pk": 10086, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Menyhert_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307f.", "author": "", "orig_id": 1412019}}, {"model": "metainfo.source", "pk": 10087, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Stephanie_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308", "author": "", "orig_id": 1412020}}, {"model": "metainfo.source", "pk": 10088, "fields": {"orig_filename": "Lonza_Antonio_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308", "author": "", "orig_id": 1412021}}, {"model": "metainfo.source", "pk": 10089, "fields": {"orig_filename": "Loosey_Karl-Friedrich_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412028}}, {"model": "metainfo.source", "pk": 10090, "fields": {"orig_filename": "Loos_Adolf_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308f.", "author": "", "orig_id": 1412022}}, {"model": "metainfo.source", "pk": 10091, "fields": {"orig_filename": "Loos_Friedrich_1797_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 309f.", "author": "", "orig_id": 1412023}}, {"model": "metainfo.source", "pk": 10092, "fields": {"orig_filename": "Loos_Johann_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310", "author": "", "orig_id": 1412024}}, {"model": "metainfo.source", "pk": 10093, "fields": {"orig_filename": "Loos_Josef_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310", "author": "", "orig_id": 1412025}}, {"model": "metainfo.source", "pk": 10094, "fields": {"orig_filename": "Loos_Kurt-Camillo_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310f.", "author": "", "orig_id": 1412026}}, {"model": "metainfo.source", "pk": 10095, "fields": {"orig_filename": "Loos_Lina_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412027}}, {"model": "metainfo.source", "pk": 10096, "fields": {"orig_filename": "Lopasic_Dusan_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412100}}, {"model": "metainfo.source", "pk": 10097, "fields": {"orig_filename": "Lopasic_Radoslav_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412101}}, {"model": "metainfo.source", "pk": 10098, "fields": {"orig_filename": "Lorantfi_Antal_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412102}}, {"model": "metainfo.source", "pk": 10099, "fields": {"orig_filename": "Lorber_Franz_1846_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412103}}, {"model": "metainfo.source", "pk": 10100, "fields": {"orig_filename": "Lorber_Jakob_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312f.", "author": "", "orig_id": 1412104}}, {"model": "metainfo.source", "pk": 10101, "fields": {"orig_filename": "Lorens_Carl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 313", "author": "", "orig_id": 1412105}}, {"model": "metainfo.source", "pk": 10102, "fields": {"orig_filename": "Lorentz-Langendorf_Johann-Ludwig_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 313f.", "author": "", "orig_id": 1412106}}, {"model": "metainfo.source", "pk": 10103, "fields": {"orig_filename": "Lorenz-Liburnau_Josef-Roman_1825_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 319f.", "author": "", "orig_id": 1412119}}, {"model": "metainfo.source", "pk": 10104, "fields": {"orig_filename": "Lorenz-Liburnau_Ludwig_1856_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 320f.", "author": "", "orig_id": 1412120}}, {"model": "metainfo.source", "pk": 10105, "fields": {"orig_filename": "Lorenzetti_Giuseppe_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412121}}, {"model": "metainfo.source", "pk": 10106, "fields": {"orig_filename": "Lorenzi_Bartolomeo_1732_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412198}}, {"model": "metainfo.source", "pk": 10107, "fields": {"orig_filename": "Lorenzoni_Antonio_1755_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412199}}, {"model": "metainfo.source", "pk": 10108, "fields": {"orig_filename": "Lorenzoni_Franz_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322", "author": "", "orig_id": 1412200}}, {"model": "metainfo.source", "pk": 10109, "fields": {"orig_filename": "Lorenzoni_Giovanni_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322", "author": "", "orig_id": 1412201}}, {"model": "metainfo.source", "pk": 10110, "fields": {"orig_filename": "Lorenzoni_Giuseppe_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322f.", "author": "", "orig_id": 1412202}}, {"model": "metainfo.source", "pk": 10111, "fields": {"orig_filename": "Lorenzutti_Lorenzo_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 323", "author": "", "orig_id": 1412203}}, {"model": "metainfo.source", "pk": 10112, "fields": {"orig_filename": "Lorenz_Adolf_1854_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 314f.", "author": "", "orig_id": 1412107}}, {"model": "metainfo.source", "pk": 10113, "fields": {"orig_filename": "Lorenz_Alfred-Ottokar_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315", "author": "", "orig_id": 1412108}}, {"model": "metainfo.source", "pk": 10114, "fields": {"orig_filename": "Lorenz_Emil_1889_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1461233}}, {"model": "metainfo.source", "pk": 10115, "fields": {"orig_filename": "Lorenz_Franz_1803_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315", "author": "", "orig_id": 1412109}}, {"model": "metainfo.source", "pk": 10116, "fields": {"orig_filename": "Lorenz_Hans_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315f.", "author": "", "orig_id": 1412110}}, {"model": "metainfo.source", "pk": 10117, "fields": {"orig_filename": "Lorenz_Johann-Jakob_1807_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317", "author": "", "orig_id": 1412113}}, {"model": "metainfo.source", "pk": 10118, "fields": {"orig_filename": "Lorenz_Johann_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316f.", "author": "", "orig_id": 1412112}}, {"model": "metainfo.source", "pk": 10119, "fields": {"orig_filename": "Lorenz_Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317", "author": "", "orig_id": 1412114}}, {"model": "metainfo.source", "pk": 10120, "fields": {"orig_filename": "Lorenz_Karl_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317f.", "author": "", "orig_id": 1412115}}, {"model": "metainfo.source", "pk": 10121, "fields": {"orig_filename": "Lorenz_Martin_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 318", "author": "", "orig_id": 1412116}}, {"model": "metainfo.source", "pk": 10122, "fields": {"orig_filename": "Lorenz_Ottokar_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 318f.", "author": "", "orig_id": 1412117}}, {"model": "metainfo.source", "pk": 10123, "fields": {"orig_filename": "Lorenz_Richard_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 319", "author": "", "orig_id": 1412118}}, {"model": "metainfo.source", "pk": 10124, "fields": {"orig_filename": "Lorinser_Friedrich-Wilhelm_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 323f.", "author": "", "orig_id": 1412204}}, {"model": "metainfo.source", "pk": 10125, "fields": {"orig_filename": "Lorinser_Gisela_1856_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412205}}, {"model": "metainfo.source", "pk": 10126, "fields": {"orig_filename": "Lorinser_Gustav_1811_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412206}}, {"model": "metainfo.source", "pk": 10127, "fields": {"orig_filename": "Loritz_Urban_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324f.", "author": "", "orig_id": 1412208}}, {"model": "metainfo.source", "pk": 10128, "fields": {"orig_filename": "Lorkovic_Blaz_1839_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325", "author": "", "orig_id": 1412209}}, {"model": "metainfo.source", "pk": 10129, "fields": {"orig_filename": "Lorkovic_Ivan_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325", "author": "", "orig_id": 1412210}}, {"model": "metainfo.source", "pk": 10130, "fields": {"orig_filename": "Los-Grotkow_Wlodzimierz-Adam-Aleksander_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326", "author": "", "orig_id": 1412213}}, {"model": "metainfo.source", "pk": 10131, "fields": {"orig_filename": "Losa_Vaclav_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326", "author": "", "orig_id": 1412214}}, {"model": "metainfo.source", "pk": 10132, "fields": {"orig_filename": "Loschmidt_Johann-Josef_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326f.", "author": "", "orig_id": 1412215}}, {"model": "metainfo.source", "pk": 10133, "fields": {"orig_filename": "Loserth_Johann_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 328f.", "author": "", "orig_id": 1412218}}, {"model": "metainfo.source", "pk": 10134, "fields": {"orig_filename": "Losert_Benedikt_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 327f.", "author": "", "orig_id": 1412217}}, {"model": "metainfo.source", "pk": 10135, "fields": {"orig_filename": "Loser_Franz_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 327", "author": "", "orig_id": 1412216}}, {"model": "metainfo.source", "pk": 10136, "fields": {"orig_filename": "Loskay_Gabriel_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412219}}, {"model": "metainfo.source", "pk": 10137, "fields": {"orig_filename": "Losonczy_Laszlo_1812_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412220}}, {"model": "metainfo.source", "pk": 10138, "fields": {"orig_filename": "Littrow_Hermann_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251", "author": "", "orig_id": 1411372}}, {"model": "metainfo.source", "pk": 10139, "fields": {"orig_filename": "Littrow_Joseph-Johann_1781_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251f.", "author": "", "orig_id": 1411373}}, {"model": "metainfo.source", "pk": 10140, "fields": {"orig_filename": "Littrow_Karl-Ludwig_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 252f.", "author": "", "orig_id": 1411374}}, {"model": "metainfo.source", "pk": 10141, "fields": {"orig_filename": "Litzelhofen_Eduard_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253", "author": "", "orig_id": 1411375}}, {"model": "metainfo.source", "pk": 10142, "fields": {"orig_filename": "Livadic-Wiesner_Branimir_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253", "author": "", "orig_id": 1411376}}, {"model": "metainfo.source", "pk": 10143, "fields": {"orig_filename": "Livadic-Wiesner_Ferdo_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253f.", "author": "", "orig_id": 1411444}}, {"model": "metainfo.source", "pk": 10144, "fields": {"orig_filename": "Liverati_Giovanni_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254", "author": "", "orig_id": 1411445}}, {"model": "metainfo.source", "pk": 10145, "fields": {"orig_filename": "Liznar_Josef_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254", "author": "", "orig_id": 1411447}}, {"model": "metainfo.source", "pk": 10146, "fields": {"orig_filename": "Ljubibratic_Mico_1839_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254f.", "author": "", "orig_id": 1411446}}, {"model": "metainfo.source", "pk": 10147, "fields": {"orig_filename": "Ljubic_Sime_1822_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 255", "author": "", "orig_id": 1411448}}, {"model": "metainfo.source", "pk": 10148, "fields": {"orig_filename": "Ljubisa_Stjepan-Mitrov_1824_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 255f.", "author": "", "orig_id": 1411449}}, {"model": "metainfo.source", "pk": 10149, "fields": {"orig_filename": "Ljubsa_Matija_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411450}}, {"model": "metainfo.source", "pk": 10150, "fields": {"orig_filename": "Lobarzewski_Hiacynt-Jan_1818_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411451}}, {"model": "metainfo.source", "pk": 10151, "fields": {"orig_filename": "Lobenstock_Heinrich_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411452}}, {"model": "metainfo.source", "pk": 10152, "fields": {"orig_filename": "Lobeski_Felicjan_1815_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257", "author": "", "orig_id": 1411453}}, {"model": "metainfo.source", "pk": 10153, "fields": {"orig_filename": "Lobinger_Karl_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257", "author": "", "orig_id": 1411454}}, {"model": "metainfo.source", "pk": 10154, "fields": {"orig_filename": "Lobkowitz_Anton-Isidor_1773_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258", "author": "", "orig_id": 1411456}}, {"model": "metainfo.source", "pk": 10155, "fields": {"orig_filename": "Lobkowitz_Ferdinand_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258", "author": "", "orig_id": 1411457}}, {"model": "metainfo.source", "pk": 10156, "fields": {"orig_filename": "Lobkowitz_Ferdinand_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258f.", "author": "", "orig_id": 1411458}}, {"model": "metainfo.source", "pk": 10157, "fields": {"orig_filename": "Lobkowitz_Georg-Christian_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 259f.", "author": "", "orig_id": 1411459}}, {"model": "metainfo.source", "pk": 10158, "fields": {"orig_filename": "Lobkowitz_Johann_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260", "author": "", "orig_id": 1411460}}, {"model": "metainfo.source", "pk": 10159, "fields": {"orig_filename": "Lobkowitz_Josef-Franz-Maximilian_1772_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260f.", "author": "", "orig_id": 1411462}}, {"model": "metainfo.source", "pk": 10160, "fields": {"orig_filename": "Lobkowitz_Josef-Franz_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260", "author": "", "orig_id": 1411461}}, {"model": "metainfo.source", "pk": 10161, "fields": {"orig_filename": "Lobkowitz_Karl-Johann-Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 261", "author": "", "orig_id": 1411463}}, {"model": "metainfo.source", "pk": 10162, "fields": {"orig_filename": "Lobkowitz_Rudolf_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262", "author": "", "orig_id": 1411464}}, {"model": "metainfo.source", "pk": 10163, "fields": {"orig_filename": "Lobkowitz_Zdenko_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262", "author": "", "orig_id": 1411465}}, {"model": "metainfo.source", "pk": 10164, "fields": {"orig_filename": "Lobmayer_Antun_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262f.", "author": "", "orig_id": 1411541}}, {"model": "metainfo.source", "pk": 10165, "fields": {"orig_filename": "Lobmeyr_Ludwig_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263f.", "author": "", "orig_id": 1411543}}, {"model": "metainfo.source", "pk": 10166, "fields": {"orig_filename": "Lobos_Ignacy_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411544}}, {"model": "metainfo.source", "pk": 10167, "fields": {"orig_filename": "Locatelli-Milesi_Giuseppe_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411549}}, {"model": "metainfo.source", "pk": 10168, "fields": {"orig_filename": "Locatelli_Giacomo_1756_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411545}}, {"model": "metainfo.source", "pk": 10169, "fields": {"orig_filename": "Locatelli_Gian-Francesco_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411546}}, {"model": "metainfo.source", "pk": 10170, "fields": {"orig_filename": "Locatelli_Pasino_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264f.", "author": "", "orig_id": 1411547}}, {"model": "metainfo.source", "pk": 10171, "fields": {"orig_filename": "Locatelli_Tommaso_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411548}}, {"model": "metainfo.source", "pk": 10172, "fields": {"orig_filename": "Locella_Guglielmo_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411550}}, {"model": "metainfo.source", "pk": 10173, "fields": {"orig_filename": "Lochau_Viktor-Albrecht_1765_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411551}}, {"model": "metainfo.source", "pk": 10174, "fields": {"orig_filename": "Lochis_Carlo_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411552}}, {"model": "metainfo.source", "pk": 10175, "fields": {"orig_filename": "Lochis_Guglielmo_1789_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411553}}, {"model": "metainfo.source", "pk": 10176, "fields": {"orig_filename": "Lochner_Johann_1756_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411554}}, {"model": "metainfo.source", "pk": 10177, "fields": {"orig_filename": "Locker_Anton_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266f.", "author": "", "orig_id": 1411555}}, {"model": "metainfo.source", "pk": 10178, "fields": {"orig_filename": "Loczka_Jozsef_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267", "author": "", "orig_id": 1411556}}, {"model": "metainfo.source", "pk": 10179, "fields": {"orig_filename": "Loczy_Lajos_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267", "author": "", "orig_id": 1411557}}, {"model": "metainfo.source", "pk": 10180, "fields": {"orig_filename": "Loder_Matthaeus_1781_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268", "author": "", "orig_id": 1411559}}, {"model": "metainfo.source", "pk": 10181, "fields": {"orig_filename": "Lode_Alois_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267f.", "author": "", "orig_id": 1411558}}, {"model": "metainfo.source", "pk": 10182, "fields": {"orig_filename": "Lodi_Emanuele_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268", "author": "", "orig_id": 1411560}}, {"model": "metainfo.source", "pk": 10183, "fields": {"orig_filename": "Lodrini_Antonio_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268f.", "author": "", "orig_id": 1411561}}, {"model": "metainfo.source", "pk": 10184, "fields": {"orig_filename": "Lodron-Laterano_Caspar_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411562}}, {"model": "metainfo.source", "pk": 10185, "fields": {"orig_filename": "Lodron-Laterano_Konstantin_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411563}}, {"model": "metainfo.source", "pk": 10186, "fields": {"orig_filename": "Loebisch_Wilhelm-Franz_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411564}}, {"model": "metainfo.source", "pk": 10187, "fields": {"orig_filename": "Loebl-Tauernstorff_Johann_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270f.", "author": "", "orig_id": 1411567}}, {"model": "metainfo.source", "pk": 10188, "fields": {"orig_filename": "Loebl_Emil_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270", "author": "", "orig_id": 1411565}}, {"model": "metainfo.source", "pk": 10189, "fields": {"orig_filename": "Loebl_Hermann_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270", "author": "", "orig_id": 1411566}}, {"model": "metainfo.source", "pk": 10190, "fields": {"orig_filename": "Loeffler_Alexander_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 271f.", "author": "", "orig_id": 1411637}}, {"model": "metainfo.source", "pk": 10191, "fields": {"orig_filename": "Loeffler_Karl_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272", "author": "", "orig_id": 1411638}}, {"model": "metainfo.source", "pk": 10192, "fields": {"orig_filename": "Loeffler_Leopold_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272", "author": "", "orig_id": 1411639}}, {"model": "metainfo.source", "pk": 10193, "fields": {"orig_filename": "Loeff_Anton_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 271", "author": "", "orig_id": 1411636}}, {"model": "metainfo.source", "pk": 10194, "fields": {"orig_filename": "Loefler_Franz_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272f.", "author": "", "orig_id": 1411640}}, {"model": "metainfo.source", "pk": 10195, "fields": {"orig_filename": "Loeger_Anton_1813_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 273", "author": "", "orig_id": 1411641}}, {"model": "metainfo.source", "pk": 10196, "fields": {"orig_filename": "Loeherer_Andor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 273f.", "author": "", "orig_id": 1411642}}, {"model": "metainfo.source", "pk": 10197, "fields": {"orig_filename": "Loehner_Fritz_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274", "author": "", "orig_id": 1411643}}, {"model": "metainfo.source", "pk": 10198, "fields": {"orig_filename": "Loehner_Hermann_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274", "author": "", "orig_id": 1411644}}, {"model": "metainfo.source", "pk": 10199, "fields": {"orig_filename": "Loehner_Josef_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274f.", "author": "", "orig_id": 1411645}}, {"model": "metainfo.source", "pk": 10200, "fields": {"orig_filename": "Loehner_Ludwig_1812_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 275", "author": "", "orig_id": 1411646}}, {"model": "metainfo.source", "pk": 10201, "fields": {"orig_filename": "Loehneysen_Hilbert_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 275f.", "author": "", "orig_id": 1411647}}, {"model": "metainfo.source", "pk": 10202, "fields": {"orig_filename": "Loehr_Alexander_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 276", "author": "", "orig_id": 1411648}}, {"model": "metainfo.source", "pk": 10203, "fields": {"orig_filename": "Loehr_August_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 276f.", "author": "", "orig_id": 1411649}}, {"model": "metainfo.source", "pk": 10204, "fields": {"orig_filename": "Loehr_Grete_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 277", "author": "", "orig_id": 1411650}}, {"model": "metainfo.source", "pk": 10205, "fields": {"orig_filename": "Loehr_Moritz_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 277f.", "author": "", "orig_id": 1411651}}, {"model": "metainfo.source", "pk": 10206, "fields": {"orig_filename": "Loenhart_Ferenc_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278", "author": "", "orig_id": 1411652}}, {"model": "metainfo.source", "pk": 10207, "fields": {"orig_filename": "Loerenthey_Imre_1867_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278", "author": "", "orig_id": 1411653}}, {"model": "metainfo.source", "pk": 10208, "fields": {"orig_filename": "Loescher_Leopoldine_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279", "author": "", "orig_id": 1411656}}, {"model": "metainfo.source", "pk": 10209, "fields": {"orig_filename": "Loesche_Karl-David-Georg_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278f.", "author": "", "orig_id": 1411654}}, {"model": "metainfo.source", "pk": 10210, "fields": {"orig_filename": "Loesche_Naema_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279", "author": "", "orig_id": 1411655}}, {"model": "metainfo.source", "pk": 10211, "fields": {"orig_filename": "Loeschner_Joseph-Wilhelm_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279f.", "author": "", "orig_id": 1411657}}, {"model": "metainfo.source", "pk": 10212, "fields": {"orig_filename": "Loeschner_Richard_1879_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 280", "author": "", "orig_id": 1411725}}, {"model": "metainfo.source", "pk": 10213, "fields": {"orig_filename": "Loeschnigg_Hans_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281", "author": "", "orig_id": 1411727}}, {"model": "metainfo.source", "pk": 10214, "fields": {"orig_filename": "Loeschnig_Josef_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 280f.", "author": "", "orig_id": 1411726}}, {"model": "metainfo.source", "pk": 10215, "fields": {"orig_filename": "Loessl_Franz-Xaver_1801_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281", "author": "", "orig_id": 1411728}}, {"model": "metainfo.source", "pk": 10216, "fields": {"orig_filename": "Loessl_Friedrich_1817_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281f.", "author": "", "orig_id": 1411729}}, {"model": "metainfo.source", "pk": 10217, "fields": {"orig_filename": "Loessl_Rudolf_1872_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282", "author": "", "orig_id": 1411730}}, {"model": "metainfo.source", "pk": 10218, "fields": {"orig_filename": "Loete_Jozsef_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282", "author": "", "orig_id": 1411731}}, {"model": "metainfo.source", "pk": 10219, "fields": {"orig_filename": "Loevenstein_Jan_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282f.", "author": "", "orig_id": 1411732}}, {"model": "metainfo.source", "pk": 10220, "fields": {"orig_filename": "Loevey_Klara_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411733}}, {"model": "metainfo.source", "pk": 10221, "fields": {"orig_filename": "Loewenbach_Georg_1872_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291", "author": "", "orig_id": 1411827}}, {"model": "metainfo.source", "pk": 10222, "fields": {"orig_filename": "Loewenfeld-Russ_Johann_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291", "author": "", "orig_id": 1411828}}, {"model": "metainfo.source", "pk": 10223, "fields": {"orig_filename": "Loewenstein-Opoka_Nathan_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292", "author": "", "orig_id": 1411831}}, {"model": "metainfo.source", "pk": 10224, "fields": {"orig_filename": "Loewenstein_Ernst_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291f.", "author": "", "orig_id": 1411829}}, {"model": "metainfo.source", "pk": 10225, "fields": {"orig_filename": "Loewenstein_Moritz_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292", "author": "", "orig_id": 1411830}}, {"model": "metainfo.source", "pk": 10226, "fields": {"orig_filename": "Loewenthal_Jakob_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292f.", "author": "", "orig_id": 1411832}}, {"model": "metainfo.source", "pk": 10227, "fields": {"orig_filename": "Loewenthal_Johann_1803_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 293", "author": "", "orig_id": 1411833}}, {"model": "metainfo.source", "pk": 10228, "fields": {"orig_filename": "Loewenthal_Max_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 293f.", "author": "", "orig_id": 1411834}}, {"model": "metainfo.source", "pk": 10229, "fields": {"orig_filename": "Loewenthal_Sophie_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 294", "author": "", "orig_id": 1411835}}, {"model": "metainfo.source", "pk": 10230, "fields": {"orig_filename": "Loewe_Alexander_1808_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286f.", "author": "", "orig_id": 1411745}}, {"model": "metainfo.source", "pk": 10231, "fields": {"orig_filename": "Loewe_Anna_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 287", "author": "", "orig_id": 1411819}}, {"model": "metainfo.source", "pk": 10232, "fields": {"orig_filename": "Loewe_Ferdinand_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 287", "author": "", "orig_id": 1411820}}, {"model": "metainfo.source", "pk": 10233, "fields": {"orig_filename": "Loewe_Gustav_1865_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 288", "author": "", "orig_id": 1411821}}, {"model": "metainfo.source", "pk": 10234, "fields": {"orig_filename": "Loewe_Johann-Heinrich_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 288", "author": "", "orig_id": 1411822}}, {"model": "metainfo.source", "pk": 10235, "fields": {"orig_filename": "Loewe_Julie-Sophie_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 289", "author": "", "orig_id": 1411823}}, {"model": "metainfo.source", "pk": 10236, "fields": {"orig_filename": "Loewe_Ludwig_1794_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 289f.", "author": "", "orig_id": 1411824}}, {"model": "metainfo.source", "pk": 10237, "fields": {"orig_filename": "Loewe_Sophie-Johanna_1815_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 290", "author": "", "orig_id": 1411825}}, {"model": "metainfo.source", "pk": 10238, "fields": {"orig_filename": "Loewe_Theodor_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 290f.", "author": "", "orig_id": 1411826}}, {"model": "metainfo.source", "pk": 10239, "fields": {"orig_filename": "Limbourg_Maximilian_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216f.", "author": "", "orig_id": 1412372}}, {"model": "metainfo.source", "pk": 10240, "fields": {"orig_filename": "Linberger_Istvan_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412373}}, {"model": "metainfo.source", "pk": 10241, "fields": {"orig_filename": "Lindau_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 218f.", "author": "", "orig_id": 1412378}}, {"model": "metainfo.source", "pk": 10242, "fields": {"orig_filename": "Linda_Josef_1789_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 218", "author": "", "orig_id": 1412377}}, {"model": "metainfo.source", "pk": 10243, "fields": {"orig_filename": "Lindenau_Karl-Friedrich_1746_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219", "author": "", "orig_id": 1412380}}, {"model": "metainfo.source", "pk": 10244, "fields": {"orig_filename": "Lindenthal_Gustav_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219f.", "author": "", "orig_id": 1412381}}, {"model": "metainfo.source", "pk": 10245, "fields": {"orig_filename": "Linden_Joseph-Sigmund_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219", "author": "", "orig_id": 1412379}}, {"model": "metainfo.source", "pk": 10246, "fields": {"orig_filename": "Linder_Karl_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412384}}, {"model": "metainfo.source", "pk": 10247, "fields": {"orig_filename": "Lindheim_Alfred_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220f.", "author": "", "orig_id": 1412385}}, {"model": "metainfo.source", "pk": 10248, "fields": {"orig_filename": "Lindheim_Hermann-Dietrich_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 221", "author": "", "orig_id": 1412386}}, {"model": "metainfo.source", "pk": 10249, "fields": {"orig_filename": "Lindheim_Wilhelm_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 221", "author": "", "orig_id": 1411072}}, {"model": "metainfo.source", "pk": 10250, "fields": {"orig_filename": "Lindner_Anton-Friedrich_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222", "author": "", "orig_id": 1411074}}, {"model": "metainfo.source", "pk": 10251, "fields": {"orig_filename": "Lindner_Anton_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222", "author": "", "orig_id": 1411073}}, {"model": "metainfo.source", "pk": 10252, "fields": {"orig_filename": "Lindner_Ernst_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222f.", "author": "", "orig_id": 1411075}}, {"model": "metainfo.source", "pk": 10253, "fields": {"orig_filename": "Lindner_Gustav_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411076}}, {"model": "metainfo.source", "pk": 10254, "fields": {"orig_filename": "Lindner_Karl_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411077}}, {"model": "metainfo.source", "pk": 10255, "fields": {"orig_filename": "Lindner_Pirmin_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411078}}, {"model": "metainfo.source", "pk": 10256, "fields": {"orig_filename": "Lind_Eduard_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412374}}, {"model": "metainfo.source", "pk": 10257, "fields": {"orig_filename": "Lind_Emil_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412375}}, {"model": "metainfo.source", "pk": 10258, "fields": {"orig_filename": "Lind_Karl_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217f.", "author": "", "orig_id": 1412376}}, {"model": "metainfo.source", "pk": 10259, "fields": {"orig_filename": "Lingiardi_Giovanni-Batt_1765_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223f.", "author": "", "orig_id": 1411079}}, {"model": "metainfo.source", "pk": 10260, "fields": {"orig_filename": "Linhart_Emil_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411080}}, {"model": "metainfo.source", "pk": 10261, "fields": {"orig_filename": "Linhart_Gyoergy_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411081}}, {"model": "metainfo.source", "pk": 10262, "fields": {"orig_filename": "Linhart_Karel_1882_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411082}}, {"model": "metainfo.source", "pk": 10263, "fields": {"orig_filename": "Link-Dessauer_Antonie_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411087}}, {"model": "metainfo.source", "pk": 10264, "fields": {"orig_filename": "Linke-Crawford_Frank_1893_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 227f.", "author": "", "orig_id": 1411092}}, {"model": "metainfo.source", "pk": 10265, "fields": {"orig_filename": "Linke_Franz_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411088}}, {"model": "metainfo.source", "pk": 10266, "fields": {"orig_filename": "Linke_Friedrich_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411089}}, {"model": "metainfo.source", "pk": 10267, "fields": {"orig_filename": "Linke_Joseph_1783_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226f.", "author": "", "orig_id": 1411090}}, {"model": "metainfo.source", "pk": 10268, "fields": {"orig_filename": "Linke_Karl_1884_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 227", "author": "", "orig_id": 1411091}}, {"model": "metainfo.source", "pk": 10269, "fields": {"orig_filename": "Links_Rudolf_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411093}}, {"model": "metainfo.source", "pk": 10270, "fields": {"orig_filename": "Link_Adolf_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224f.", "author": "", "orig_id": 1411083}}, {"model": "metainfo.source", "pk": 10271, "fields": {"orig_filename": "Link_Anton_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225", "author": "", "orig_id": 1411084}}, {"model": "metainfo.source", "pk": 10272, "fields": {"orig_filename": "Link_Augustin_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225", "author": "", "orig_id": 1411085}}, {"model": "metainfo.source", "pk": 10273, "fields": {"orig_filename": "Link_Leopold_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225f.", "author": "", "orig_id": 1411086}}, {"model": "metainfo.source", "pk": 10274, "fields": {"orig_filename": "Linnemann_Eduard_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411167}}, {"model": "metainfo.source", "pk": 10275, "fields": {"orig_filename": "Linnert_Gustav_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411168}}, {"model": "metainfo.source", "pk": 10276, "fields": {"orig_filename": "Linsbauer_Karl_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228f.", "author": "", "orig_id": 1411169}}, {"model": "metainfo.source", "pk": 10277, "fields": {"orig_filename": "Linsbauer_Ludwig_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229", "author": "", "orig_id": 1411170}}, {"model": "metainfo.source", "pk": 10278, "fields": {"orig_filename": "Linsmeier_Anton_1840_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229", "author": "", "orig_id": 1411171}}, {"model": "metainfo.source", "pk": 10279, "fields": {"orig_filename": "Linzbauer_Franz-Xaver_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229f.", "author": "", "orig_id": 1411172}}, {"model": "metainfo.source", "pk": 10280, "fields": {"orig_filename": "Linzinger_Ludwig_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230", "author": "", "orig_id": 1411173}}, {"model": "metainfo.source", "pk": 10281, "fields": {"orig_filename": "Lioy_Paolo_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230", "author": "", "orig_id": 1411174}}, {"model": "metainfo.source", "pk": 10282, "fields": {"orig_filename": "Lipcsey-Bilke_Adam_1864_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230f.", "author": "", "orig_id": 1411175}}, {"model": "metainfo.source", "pk": 10283, "fields": {"orig_filename": "Lipiner_Siegfried_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231", "author": "", "orig_id": 1411177}}, {"model": "metainfo.source", "pk": 10284, "fields": {"orig_filename": "Lipinski_Hipolit_1846_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231", "author": "", "orig_id": 1411178}}, {"model": "metainfo.source", "pk": 10285, "fields": {"orig_filename": "Lipinski_Karl-Joseph_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231f.", "author": "", "orig_id": 1411179}}, {"model": "metainfo.source", "pk": 10286, "fields": {"orig_filename": "Lipinski_Kazimierz_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 232", "author": "", "orig_id": 1411180}}, {"model": "metainfo.source", "pk": 10287, "fields": {"orig_filename": "Lipold_Marko-Vincenc_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 232", "author": "", "orig_id": 1411181}}, {"model": "metainfo.source", "pk": 10288, "fields": {"orig_filename": "Liposcak_Anton_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233", "author": "", "orig_id": 1411182}}, {"model": "metainfo.source", "pk": 10289, "fields": {"orig_filename": "Lipovniczky-Lipovnok_Istvan_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233", "author": "", "orig_id": 1411183}}, {"model": "metainfo.source", "pk": 10290, "fields": {"orig_filename": "Lipparini_Lodovico_1800_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411186}}, {"model": "metainfo.source", "pk": 10291, "fields": {"orig_filename": "Lippay-Zombor_Gaspar_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234f.", "author": "", "orig_id": 1411188}}, {"model": "metainfo.source", "pk": 10292, "fields": {"orig_filename": "Lippay_Bartholomaeus-Dominik_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411187}}, {"model": "metainfo.source", "pk": 10293, "fields": {"orig_filename": "Lippert-Granberg_Josef-Erwin_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236", "author": "", "orig_id": 1411260}}, {"model": "metainfo.source", "pk": 10294, "fields": {"orig_filename": "Lippert-Granberg_Josephine_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236", "author": "", "orig_id": 1411261}}, {"model": "metainfo.source", "pk": 10295, "fields": {"orig_filename": "Lippert_Christian_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235", "author": "", "orig_id": 1411189}}, {"model": "metainfo.source", "pk": 10296, "fields": {"orig_filename": "Lippert_Josef_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235", "author": "", "orig_id": 1411190}}, {"model": "metainfo.source", "pk": 10297, "fields": {"orig_filename": "Lippert_Julius_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235f.", "author": "", "orig_id": 1411259}}, {"model": "metainfo.source", "pk": 10298, "fields": {"orig_filename": "Lippich-Korong_Elek_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1416637}}, {"model": "metainfo.source", "pk": 10299, "fields": {"orig_filename": "Lippich-Lindburg_Friedrich_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1411264}}, {"model": "metainfo.source", "pk": 10300, "fields": {"orig_filename": "Lippich_Ferdinand_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236f.", "author": "", "orig_id": 1411262}}, {"model": "metainfo.source", "pk": 10301, "fields": {"orig_filename": "Lippich_Franz-Wilhelm_1799_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1411263}}, {"model": "metainfo.source", "pk": 10302, "fields": {"orig_filename": "Lippitt_Mathilde-Maria-Floriana_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237f.", "author": "", "orig_id": 1411265}}, {"model": "metainfo.source", "pk": 10303, "fields": {"orig_filename": "Lippmann_Edmund-Oscar_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 238", "author": "", "orig_id": 1411266}}, {"model": "metainfo.source", "pk": 10304, "fields": {"orig_filename": "Lippmann_Eduard_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 238f.", "author": "", "orig_id": 1411267}}, {"model": "metainfo.source", "pk": 10305, "fields": {"orig_filename": "Lippmann_Friedrich_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 239", "author": "", "orig_id": 1411268}}, {"model": "metainfo.source", "pk": 10306, "fields": {"orig_filename": "Lippowitz_Jakob_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 239", "author": "", "orig_id": 1411269}}, {"model": "metainfo.source", "pk": 10307, "fields": {"orig_filename": "Lipp_Eduard_1831_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233f.", "author": "", "orig_id": 1411184}}, {"model": "metainfo.source", "pk": 10308, "fields": {"orig_filename": "Lipp_Vilmos_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411185}}, {"model": "metainfo.source", "pk": 10309, "fields": {"orig_filename": "Lipschuetz_Benjamin_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411270}}, {"model": "metainfo.source", "pk": 10310, "fields": {"orig_filename": "Lipschuetz_Elieser-Meir_1879_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411271}}, {"model": "metainfo.source", "pk": 10311, "fields": {"orig_filename": "Lipschuetz_Leopold_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411272}}, {"model": "metainfo.source", "pk": 10312, "fields": {"orig_filename": "Lipszky-Szedlicsna_Janos_1766_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240f.", "author": "", "orig_id": 1411273}}, {"model": "metainfo.source", "pk": 10313, "fields": {"orig_filename": "Lipthay-Kisfalud_Antal_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241", "author": "", "orig_id": 1411274}}, {"model": "metainfo.source", "pk": 10314, "fields": {"orig_filename": "Lipthay-Kisfalud_Sandor_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241", "author": "", "orig_id": 1411275}}, {"model": "metainfo.source", "pk": 10315, "fields": {"orig_filename": "Lisinski_Vatroslav_1819_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241f.", "author": "", "orig_id": 1411276}}, {"model": "metainfo.source", "pk": 10316, "fields": {"orig_filename": "Liska_Antonin_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242", "author": "", "orig_id": 1411277}}, {"model": "metainfo.source", "pk": 10317, "fields": {"orig_filename": "Liska_Emanuel-Krescenc_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242", "author": "", "orig_id": 1411278}}, {"model": "metainfo.source", "pk": 10318, "fields": {"orig_filename": "Liske_Ksawery_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242f.", "author": "", "orig_id": 1411279}}, {"model": "metainfo.source", "pk": 10319, "fields": {"orig_filename": "Lissauer_Ernst_1882_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243", "author": "", "orig_id": 1411281}}, {"model": "metainfo.source", "pk": 10320, "fields": {"orig_filename": "Lissa_Jakob__1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243", "author": "", "orig_id": 1411280}}, {"model": "metainfo.source", "pk": 10321, "fields": {"orig_filename": "Lissoni_Andrea_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243f.", "author": "", "orig_id": 1411353}}, {"model": "metainfo.source", "pk": 10322, "fields": {"orig_filename": "Lissoni_Antonio_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244", "author": "", "orig_id": 1411354}}, {"model": "metainfo.source", "pk": 10323, "fields": {"orig_filename": "List_Camillo_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244", "author": "", "orig_id": 1411355}}, {"model": "metainfo.source", "pk": 10324, "fields": {"orig_filename": "List_Franz_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244f.", "author": "", "orig_id": 1411356}}, {"model": "metainfo.source", "pk": 10325, "fields": {"orig_filename": "List_Guido_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 245", "author": "", "orig_id": 1411357}}, {"model": "metainfo.source", "pk": 10326, "fields": {"orig_filename": "List_Rosa_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 245", "author": "", "orig_id": 1411358}}, {"model": "metainfo.source", "pk": 10327, "fields": {"orig_filename": "List_Wilhelm_1864_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411359}}, {"model": "metainfo.source", "pk": 10328, "fields": {"orig_filename": "Liszkay_Gustav_1843_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411360}}, {"model": "metainfo.source", "pk": 10329, "fields": {"orig_filename": "Liszkay_Jozsef_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411361}}, {"model": "metainfo.source", "pk": 10330, "fields": {"orig_filename": "Liszt_Anton-Joseph_1863_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246f.", "author": "", "orig_id": 1411362}}, {"model": "metainfo.source", "pk": 10331, "fields": {"orig_filename": "Liszt_Eduard_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247", "author": "", "orig_id": 1411363}}, {"model": "metainfo.source", "pk": 10332, "fields": {"orig_filename": "Liszt_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f.", "author": "", "orig_id": 1411364}}, {"model": "metainfo.source", "pk": 10333, "fields": {"orig_filename": "Liszt_Franz_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 248f.", "author": "", "orig_id": 1411365}}, {"model": "metainfo.source", "pk": 10334, "fields": {"orig_filename": "Litschauer_Karl-Josef_1830_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249", "author": "", "orig_id": 1411366}}, {"model": "metainfo.source", "pk": 10335, "fields": {"orig_filename": "Litschauer_Lajos_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249", "author": "", "orig_id": 1416635}}, {"model": "metainfo.source", "pk": 10336, "fields": {"orig_filename": "Litschauer_Lajos_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249f.", "author": "", "orig_id": 1411367}}, {"model": "metainfo.source", "pk": 10337, "fields": {"orig_filename": "Litta_Pompeo_1781_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250", "author": "", "orig_id": 1411368}}, {"model": "metainfo.source", "pk": 10338, "fields": {"orig_filename": "Littrow_Auguste_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250f.", "author": "", "orig_id": 1411370}}, {"model": "metainfo.source", "pk": 10339, "fields": {"orig_filename": "Littrow_Franz_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251", "author": "", "orig_id": 1411371}}, {"model": "metainfo.source", "pk": 10340, "fields": {"orig_filename": "Lichtenstadt_Johann_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411990}}, {"model": "metainfo.source", "pk": 10341, "fields": {"orig_filename": "Lichtensteiner_Meinrad_1759_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411992}}, {"model": "metainfo.source", "pk": 10342, "fields": {"orig_filename": "Lichtenstein_Ferenc-Lajos_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411991}}, {"model": "metainfo.source", "pk": 10343, "fields": {"orig_filename": "Lichtenstern_Ludwig_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411993}}, {"model": "metainfo.source", "pk": 10344, "fields": {"orig_filename": "Lichtenstern_Richard_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411994}}, {"model": "metainfo.source", "pk": 10345, "fields": {"orig_filename": "Lichtenstern_Wilhelm_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411995}}, {"model": "metainfo.source", "pk": 10346, "fields": {"orig_filename": "Lichtenthal_Peter_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411996}}, {"model": "metainfo.source", "pk": 10347, "fields": {"orig_filename": "Lichtwitz_Leopold_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188f.", "author": "", "orig_id": 1411997}}, {"model": "metainfo.source", "pk": 10348, "fields": {"orig_filename": "Licht_Ferdinand_1748_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183f.", "author": "", "orig_id": 1411905}}, {"model": "metainfo.source", "pk": 10349, "fields": {"orig_filename": "Licht_Stephan_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411906}}, {"model": "metainfo.source", "pk": 10350, "fields": {"orig_filename": "Lickl_Aegidius-Karl_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1411998}}, {"model": "metainfo.source", "pk": 10351, "fields": {"orig_filename": "Lickl_Johann-Georg_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1411999}}, {"model": "metainfo.source", "pk": 10352, "fields": {"orig_filename": "Lickl_Karl-Georg_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1412000}}, {"model": "metainfo.source", "pk": 10353, "fields": {"orig_filename": "Lidl_Johann_1787_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1412001}}, {"model": "metainfo.source", "pk": 10354, "fields": {"orig_filename": "Lidl_Josef_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189f.", "author": "", "orig_id": 1412002}}, {"model": "metainfo.source", "pk": 10355, "fields": {"orig_filename": "Lidmansky_Adelbert-Josef_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412003}}, {"model": "metainfo.source", "pk": 10356, "fields": {"orig_filename": "Lieban_Julius_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190f.", "author": "", "orig_id": 1412006}}, {"model": "metainfo.source", "pk": 10357, "fields": {"orig_filename": "Liebbald_Beni_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412007}}, {"model": "metainfo.source", "pk": 10358, "fields": {"orig_filename": "Liebbald_Julius-Thomas_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412075}}, {"model": "metainfo.source", "pk": 10359, "fields": {"orig_filename": "Liebe-Kreutzner_Joseph_1830_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412076}}, {"model": "metainfo.source", "pk": 10360, "fields": {"orig_filename": "Liebel_Ignaz_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191f.", "author": "", "orig_id": 1412077}}, {"model": "metainfo.source", "pk": 10361, "fields": {"orig_filename": "Liebenberg-Zsittin_Adolf_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 193f.", "author": "", "orig_id": 1412083}}, {"model": "metainfo.source", "pk": 10362, "fields": {"orig_filename": "Liebener-Monte-Cristallo_Leonhard_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194", "author": "", "orig_id": 1412084}}, {"model": "metainfo.source", "pk": 10363, "fields": {"orig_filename": "Liebenwein_Josef-Richard_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194", "author": "", "orig_id": 1412085}}, {"model": "metainfo.source", "pk": 10364, "fields": {"orig_filename": "Liebenwein_Maximilian_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194f.", "author": "", "orig_id": 1412086}}, {"model": "metainfo.source", "pk": 10365, "fields": {"orig_filename": "Lieben_Adolf_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412078}}, {"model": "metainfo.source", "pk": 10366, "fields": {"orig_filename": "Lieben_Koppelmann_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412079}}, {"model": "metainfo.source", "pk": 10367, "fields": {"orig_filename": "Lieben_Leopold_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412080}}, {"model": "metainfo.source", "pk": 10368, "fields": {"orig_filename": "Lieben_Robert_1878_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 193", "author": "", "orig_id": 1412081}}, {"model": "metainfo.source", "pk": 10369, "fields": {"orig_filename": "Lieben_Salomon-Hugo_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 193", "author": "", "orig_id": 1412082}}, {"model": "metainfo.source", "pk": 10370, "fields": {"orig_filename": "Liebermann-Szentloerinc_Leo_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 196", "author": "", "orig_id": 1412090}}, {"model": "metainfo.source", "pk": 10371, "fields": {"orig_filename": "Liebermann_Herman_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195f.", "author": "", "orig_id": 1412089}}, {"model": "metainfo.source", "pk": 10372, "fields": {"orig_filename": "Liebert_Franz_1814_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 196f.", "author": "", "orig_id": 1412091}}, {"model": "metainfo.source", "pk": 10373, "fields": {"orig_filename": "Lieberzeit_Anna_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412092}}, {"model": "metainfo.source", "pk": 10374, "fields": {"orig_filename": "Lieber_August_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195", "author": "", "orig_id": 1412087}}, {"model": "metainfo.source", "pk": 10375, "fields": {"orig_filename": "Lieber_Georg-Diethelm_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195", "author": "", "orig_id": 1412088}}, {"model": "metainfo.source", "pk": 10376, "fields": {"orig_filename": "Liebhardt_Ida_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412093}}, {"model": "metainfo.source", "pk": 10377, "fields": {"orig_filename": "Liebhardt_Ignaz_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412094}}, {"model": "metainfo.source", "pk": 10378, "fields": {"orig_filename": "Liebhardt_Luise_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412095}}, {"model": "metainfo.source", "pk": 10379, "fields": {"orig_filename": "Liebich_Christoph_1783_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197f.", "author": "", "orig_id": 1412096}}, {"model": "metainfo.source", "pk": 10380, "fields": {"orig_filename": "Liebich_Johann-Carl_1773_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198", "author": "", "orig_id": 1412097}}, {"model": "metainfo.source", "pk": 10381, "fields": {"orig_filename": "Liebieg_Franz_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198", "author": "", "orig_id": 1412099}}, {"model": "metainfo.source", "pk": 10382, "fields": {"orig_filename": "Liebieg_Franz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198f.", "author": "", "orig_id": 1412176}}, {"model": "metainfo.source", "pk": 10383, "fields": {"orig_filename": "Liebieg_Heinrich_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199", "author": "", "orig_id": 1412098}}, {"model": "metainfo.source", "pk": 10384, "fields": {"orig_filename": "Liebieg_Johann_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199", "author": "", "orig_id": 1412177}}, {"model": "metainfo.source", "pk": 10385, "fields": {"orig_filename": "Liebisch_Joachim_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199f.", "author": "", "orig_id": 1412178}}, {"model": "metainfo.source", "pk": 10386, "fields": {"orig_filename": "Liebisch_Rudolf_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412179}}, {"model": "metainfo.source", "pk": 10387, "fields": {"orig_filename": "Liebleitner_Karl_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200f.", "author": "", "orig_id": 1412182}}, {"model": "metainfo.source", "pk": 10388, "fields": {"orig_filename": "Liebl_Franz-Alois_1760_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412180}}, {"model": "metainfo.source", "pk": 10389, "fields": {"orig_filename": "Liebl_Hans_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412181}}, {"model": "metainfo.source", "pk": 10390, "fields": {"orig_filename": "Liebscher_Adolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412183}}, {"model": "metainfo.source", "pk": 10391, "fields": {"orig_filename": "Liebscher_Karel_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412184}}, {"model": "metainfo.source", "pk": 10392, "fields": {"orig_filename": "Liebstoeckl_Hans_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412185}}, {"model": "metainfo.source", "pk": 10393, "fields": {"orig_filename": "Liebus_Adalbert_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201f.", "author": "", "orig_id": 1412186}}, {"model": "metainfo.source", "pk": 10394, "fields": {"orig_filename": "Lieb_Josef_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412004}}, {"model": "metainfo.source", "pk": 10395, "fields": {"orig_filename": "Lieb_Leopold_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412005}}, {"model": "metainfo.source", "pk": 10396, "fields": {"orig_filename": "Liechtenberg-Mordaxt-Schneeberg_Arthur_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202", "author": "", "orig_id": 1412187}}, {"model": "metainfo.source", "pk": 10397, "fields": {"orig_filename": "Liechtenberg-Schneeberg_Nikolaus_1789_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202", "author": "", "orig_id": 1412188}}, {"model": "metainfo.source", "pk": 10398, "fields": {"orig_filename": "Liechtenstein_Alfred_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202f.", "author": "", "orig_id": 1412189}}, {"model": "metainfo.source", "pk": 10399, "fields": {"orig_filename": "Liechtenstein_Aloys_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 203", "author": "", "orig_id": 1412190}}, {"model": "metainfo.source", "pk": 10400, "fields": {"orig_filename": "Liechtenstein_Aloys_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 203f.", "author": "", "orig_id": 1412191}}, {"model": "metainfo.source", "pk": 10401, "fields": {"orig_filename": "Liechtenstein_Franz_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 204", "author": "", "orig_id": 1412192}}, {"model": "metainfo.source", "pk": 10402, "fields": {"orig_filename": "Liechtenstein_Franz_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 204f.", "author": "", "orig_id": 1412193}}, {"model": "metainfo.source", "pk": 10403, "fields": {"orig_filename": "Liechtenstein_Friedrich_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 205", "author": "", "orig_id": 1412194}}, {"model": "metainfo.source", "pk": 10404, "fields": {"orig_filename": "Liechtenstein_Johann_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 205f.", "author": "", "orig_id": 1412195}}, {"model": "metainfo.source", "pk": 10405, "fields": {"orig_filename": "Liechtenstein_Karl_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 206", "author": "", "orig_id": 1412196}}, {"model": "metainfo.source", "pk": 10406, "fields": {"orig_filename": "Liechtenstein_Rudolf_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 206f.", "author": "", "orig_id": 1412197}}, {"model": "metainfo.source", "pk": 10407, "fields": {"orig_filename": "Liechtenstern_Joseph-Marx_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207", "author": "", "orig_id": 1412268}}, {"model": "metainfo.source", "pk": 10408, "fields": {"orig_filename": "Liedeck_Georg_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207", "author": "", "orig_id": 1412269}}, {"model": "metainfo.source", "pk": 10409, "fields": {"orig_filename": "Liedemann_Martin_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207f.", "author": "", "orig_id": 1412270}}, {"model": "metainfo.source", "pk": 10410, "fields": {"orig_filename": "Lieder_Friedrich-Johann-Gottlieb_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1412271}}, {"model": "metainfo.source", "pk": 10411, "fields": {"orig_filename": "Liedtke_Marie_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1412272}}, {"model": "metainfo.source", "pk": 10412, "fields": {"orig_filename": "Liegel_Emanuel_1859_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1416636}}, {"model": "metainfo.source", "pk": 10413, "fields": {"orig_filename": "Liegel_Georg_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208f.", "author": "", "orig_id": 1412273}}, {"model": "metainfo.source", "pk": 10414, "fields": {"orig_filename": "Lieger_Paulus_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209", "author": "", "orig_id": 1412274}}, {"model": "metainfo.source", "pk": 10415, "fields": {"orig_filename": "Liegler_Leopold_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209", "author": "", "orig_id": 1412275}}, {"model": "metainfo.source", "pk": 10416, "fields": {"orig_filename": "Lielegg_Andreas_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209f.", "author": "", "orig_id": 1412276}}, {"model": "metainfo.source", "pk": 10417, "fields": {"orig_filename": "Lienbacher_Georg_1822_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412277}}, {"model": "metainfo.source", "pk": 10418, "fields": {"orig_filename": "Lienbacher_Matthias_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412278}}, {"model": "metainfo.source", "pk": 10419, "fields": {"orig_filename": "Lierheimer_Bernhard_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412280}}, {"model": "metainfo.source", "pk": 10420, "fields": {"orig_filename": "Lier_Jan_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412279}}, {"model": "metainfo.source", "pk": 10421, "fields": {"orig_filename": "Lieschnigg_Karl_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412281}}, {"model": "metainfo.source", "pk": 10422, "fields": {"orig_filename": "Liewehr_Fred_1909_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426543}}, {"model": "metainfo.source", "pk": 10423, "fields": {"orig_filename": "Liezen-Mayer_Sandor_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412282}}, {"model": "metainfo.source", "pk": 10424, "fields": {"orig_filename": "Liftl_Franz_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412283}}, {"model": "metainfo.source", "pk": 10425, "fields": {"orig_filename": "Ligeti_Antal_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211f.", "author": "", "orig_id": 1412284}}, {"model": "metainfo.source", "pk": 10426, "fields": {"orig_filename": "Ligges_Georg_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412285}}, {"model": "metainfo.source", "pk": 10427, "fields": {"orig_filename": "Liharzik_Franz_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412286}}, {"model": "metainfo.source", "pk": 10428, "fields": {"orig_filename": "Liharzik_Franz_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412287}}, {"model": "metainfo.source", "pk": 10429, "fields": {"orig_filename": "Lihotzky_Erwin_1887_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212f.", "author": "", "orig_id": 1412288}}, {"model": "metainfo.source", "pk": 10430, "fields": {"orig_filename": "Likavetz_Joseph-Kal_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213", "author": "", "orig_id": 1412289}}, {"model": "metainfo.source", "pk": 10431, "fields": {"orig_filename": "Likoser-Sprengbrueck_Josef_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213", "author": "", "orig_id": 1412290}}, {"model": "metainfo.source", "pk": 10432, "fields": {"orig_filename": "Lilek_Emilijan_1851_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213f.", "author": "", "orig_id": 1412291}}, {"model": "metainfo.source", "pk": 10433, "fields": {"orig_filename": "Lilia-Westegg_Karl_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412292}}, {"model": "metainfo.source", "pk": 10434, "fields": {"orig_filename": "Lilien_Efraim_1874_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412364}}, {"model": "metainfo.source", "pk": 10435, "fields": {"orig_filename": "Lilien_Maximilian_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412365}}, {"model": "metainfo.source", "pk": 10436, "fields": {"orig_filename": "Lilie_Adolf_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412363}}, {"model": "metainfo.source", "pk": 10437, "fields": {"orig_filename": "Lill-Lilienbach_Karl_1798_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 215", "author": "", "orig_id": 1412367}}, {"model": "metainfo.source", "pk": 10438, "fields": {"orig_filename": "Lill_Eduard_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214f.", "author": "", "orig_id": 1412366}}, {"model": "metainfo.source", "pk": 10439, "fields": {"orig_filename": "Limanowski_Boleslaw_1835_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 215f.", "author": "", "orig_id": 1412368}}, {"model": "metainfo.source", "pk": 10440, "fields": {"orig_filename": "Limbacher_Rudolf_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412369}}, {"model": "metainfo.source", "pk": 10441, "fields": {"orig_filename": "Limbeck-Lilienau_Max_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412370}}, {"model": "metainfo.source", "pk": 10442, "fields": {"orig_filename": "Limbeck-Lilienau_Rudolf_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412371}}, {"model": "metainfo.source", "pk": 10443, "fields": {"orig_filename": "Leseticky_Vojtech_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155", "author": "", "orig_id": 1412972}}, {"model": "metainfo.source", "pk": 10444, "fields": {"orig_filename": "Lesic_Matilda_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155", "author": "", "orig_id": 1412973}}, {"model": "metainfo.source", "pk": 10445, "fields": {"orig_filename": "Lesic_Toso_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155f.", "author": "", "orig_id": 1412974}}, {"model": "metainfo.source", "pk": 10446, "fields": {"orig_filename": "Leska_Stepan_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156", "author": "", "orig_id": 1412975}}, {"model": "metainfo.source", "pk": 10447, "fields": {"orig_filename": "Leskovar_Janko_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156", "author": "", "orig_id": 1412976}}, {"model": "metainfo.source", "pk": 10448, "fields": {"orig_filename": "Leskovec_Anton_1891_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156f.", "author": "", "orig_id": 1412977}}, {"model": "metainfo.source", "pk": 10449, "fields": {"orig_filename": "Lesonitzky_Otto_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412978}}, {"model": "metainfo.source", "pk": 10450, "fields": {"orig_filename": "Lessel_Franciszek_1780_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412979}}, {"model": "metainfo.source", "pk": 10451, "fields": {"orig_filename": "Lessenyey_Franz_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412980}}, {"model": "metainfo.source", "pk": 10452, "fields": {"orig_filename": "Lessiak_Primus_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157f.", "author": "", "orig_id": 1412981}}, {"model": "metainfo.source", "pk": 10453, "fields": {"orig_filename": "Lestocq_Hermann_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158", "author": "", "orig_id": 1412982}}, {"model": "metainfo.source", "pk": 10454, "fields": {"orig_filename": "Leszai-Fogaras_Daniel_1798_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158", "author": "", "orig_id": 1412983}}, {"model": "metainfo.source", "pk": 10455, "fields": {"orig_filename": "Leth_Julius-Johann-Bapt_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158f.", "author": "", "orig_id": 1412984}}, {"model": "metainfo.source", "pk": 10456, "fields": {"orig_filename": "Leth_Karl_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411615}}, {"model": "metainfo.source", "pk": 10457, "fields": {"orig_filename": "Letowski_Ludwik_1786_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411616}}, {"model": "metainfo.source", "pk": 10458, "fields": {"orig_filename": "Letsch_Louis_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411617}}, {"model": "metainfo.source", "pk": 10459, "fields": {"orig_filename": "Letteris_Meirha-Levi_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159f.", "author": "", "orig_id": 1411618}}, {"model": "metainfo.source", "pk": 10460, "fields": {"orig_filename": "Leuchert_Eduard_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 160", "author": "", "orig_id": 1411619}}, {"model": "metainfo.source", "pk": 10461, "fields": {"orig_filename": "Leuchs_Kurt_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 160f.", "author": "", "orig_id": 1411620}}, {"model": "metainfo.source", "pk": 10462, "fields": {"orig_filename": "Leutelt_Gustav_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 161", "author": "", "orig_id": 1411621}}, {"model": "metainfo.source", "pk": 10463, "fields": {"orig_filename": "Leutner_Karl_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 161f.", "author": "", "orig_id": 1411622}}, {"model": "metainfo.source", "pk": 10464, "fields": {"orig_filename": "Leuzendorf-Campo-Santa-Lucia_Arthur_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411623}}, {"model": "metainfo.source", "pk": 10465, "fields": {"orig_filename": "Levar_Ivan_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411624}}, {"model": "metainfo.source", "pk": 10466, "fields": {"orig_filename": "Levati_Ambrogio_1790_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411625}}, {"model": "metainfo.source", "pk": 10467, "fields": {"orig_filename": "Levay-Kistelek_Henrik_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163f.", "author": "", "orig_id": 1411630}}, {"model": "metainfo.source", "pk": 10468, "fields": {"orig_filename": "Levay-Kistelek_Lajos_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 164", "author": "", "orig_id": 1411631}}, {"model": "metainfo.source", "pk": 10469, "fields": {"orig_filename": "Levay_Imre_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162f.", "author": "", "orig_id": 1411626}}, {"model": "metainfo.source", "pk": 10470, "fields": {"orig_filename": "Levay_Jozsef_1825_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411627}}, {"model": "metainfo.source", "pk": 10471, "fields": {"orig_filename": "Levay_Lajos_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411628}}, {"model": "metainfo.source", "pk": 10472, "fields": {"orig_filename": "Levay_Mihaly_1862_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411629}}, {"model": "metainfo.source", "pk": 10473, "fields": {"orig_filename": "Levec_Fran_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 164", "author": "", "orig_id": 1411632}}, {"model": "metainfo.source", "pk": 10474, "fields": {"orig_filename": "Levetzow_Karl-Michael_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411634}}, {"model": "metainfo.source", "pk": 10475, "fields": {"orig_filename": "Levi-Civita_Giacomo_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411705}}, {"model": "metainfo.source", "pk": 10476, "fields": {"orig_filename": "Levicnik_Jernej_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411706}}, {"model": "metainfo.source", "pk": 10477, "fields": {"orig_filename": "Levicnik_Jozef_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411707}}, {"model": "metainfo.source", "pk": 10478, "fields": {"orig_filename": "Levitschnigg-Glomberg_Heinrich_1810_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166f.", "author": "", "orig_id": 1411708}}, {"model": "metainfo.source", "pk": 10479, "fields": {"orig_filename": "Levi_Angelo_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411635}}, {"model": "metainfo.source", "pk": 10480, "fields": {"orig_filename": "Levi_Moise-Giuseppe_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411703}}, {"model": "metainfo.source", "pk": 10481, "fields": {"orig_filename": "Levi_Samuele__1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165f.", "author": "", "orig_id": 1411704}}, {"model": "metainfo.source", "pk": 10482, "fields": {"orig_filename": "Levnaic-Iwanski-Iwanina_Nikolaus_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 167", "author": "", "orig_id": 1411709}}, {"model": "metainfo.source", "pk": 10483, "fields": {"orig_filename": "Levstik_Fran_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 167f.", "author": "", "orig_id": 1411710}}, {"model": "metainfo.source", "pk": 10484, "fields": {"orig_filename": "Levyckyj_Josyp_1801_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411713}}, {"model": "metainfo.source", "pk": 10485, "fields": {"orig_filename": "Levyckyj_Volodymyr_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411714}}, {"model": "metainfo.source", "pk": 10486, "fields": {"orig_filename": "Levy_Louis-Eduard_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 168", "author": "", "orig_id": 1411711}}, {"model": "metainfo.source", "pk": 10487, "fields": {"orig_filename": "Levy_Vaclav_1820_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 168f.", "author": "", "orig_id": 1411712}}, {"model": "metainfo.source", "pk": 10488, "fields": {"orig_filename": "Lewandowski_Rudolf_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411715}}, {"model": "metainfo.source", "pk": 10489, "fields": {"orig_filename": "Lewandowski_Stanislaus-Roman_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169f.", "author": "", "orig_id": 1411716}}, {"model": "metainfo.source", "pk": 10490, "fields": {"orig_filename": "Lewartow-Lewartowski_Heinrich_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411717}}, {"model": "metainfo.source", "pk": 10491, "fields": {"orig_filename": "Lewicki_Anatol_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411718}}, {"model": "metainfo.source", "pk": 10492, "fields": {"orig_filename": "Lewicki_Antoni_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411719}}, {"model": "metainfo.source", "pk": 10493, "fields": {"orig_filename": "Lewicki_Leonidas_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411720}}, {"model": "metainfo.source", "pk": 10494, "fields": {"orig_filename": "Lewicki_Michael_1774_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411721}}, {"model": "metainfo.source", "pk": 10495, "fields": {"orig_filename": "Lewinger_Ernst_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171f.", "author": "", "orig_id": 1411723}}, {"model": "metainfo.source", "pk": 10496, "fields": {"orig_filename": "Lewinsky-Precheisen_Olga_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173", "author": "", "orig_id": 1411794}}, {"model": "metainfo.source", "pk": 10497, "fields": {"orig_filename": "Lewinsky_Josef_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 172", "author": "", "orig_id": 1411724}}, {"model": "metainfo.source", "pk": 10498, "fields": {"orig_filename": "Lewinsky_Josef_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 172f.", "author": "", "orig_id": 1411793}}, {"model": "metainfo.source", "pk": 10499, "fields": {"orig_filename": "Lewin_Jakab_1828_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411722}}, {"model": "metainfo.source", "pk": 10500, "fields": {"orig_filename": "Lewohl_Karl_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173", "author": "", "orig_id": 1411795}}, {"model": "metainfo.source", "pk": 10501, "fields": {"orig_filename": "Lewy_Eduard-Constantin_1796_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411797}}, {"model": "metainfo.source", "pk": 10502, "fields": {"orig_filename": "Lewy_Eduard_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173f.", "author": "", "orig_id": 1411796}}, {"model": "metainfo.source", "pk": 10503, "fields": {"orig_filename": "Lewy_Gustav_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411798}}, {"model": "metainfo.source", "pk": 10504, "fields": {"orig_filename": "Lexa-Aehrenthal_Johann-Bapt_1777_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175", "author": "", "orig_id": 1411803}}, {"model": "metainfo.source", "pk": 10505, "fields": {"orig_filename": "Lexa_Josef_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174f.", "author": "", "orig_id": 1411801}}, {"model": "metainfo.source", "pk": 10506, "fields": {"orig_filename": "Lexer_Matthias_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175", "author": "", "orig_id": 1411804}}, {"model": "metainfo.source", "pk": 10507, "fields": {"orig_filename": "Lex_Franz_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411799}}, {"model": "metainfo.source", "pk": 10508, "fields": {"orig_filename": "Lex_Gabriel_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411800}}, {"model": "metainfo.source", "pk": 10509, "fields": {"orig_filename": "Leybold_Eduard-Friedrich_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411806}}, {"model": "metainfo.source", "pk": 10510, "fields": {"orig_filename": "Leybold_Johann-Friedrich_1755_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411808}}, {"model": "metainfo.source", "pk": 10511, "fields": {"orig_filename": "Leybold_Karl-Jakob-Theodor_1786_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176f.", "author": "", "orig_id": 1411809}}, {"model": "metainfo.source", "pk": 10512, "fields": {"orig_filename": "Leybold_Rudolf-Moritz_1806_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177", "author": "", "orig_id": 1411810}}, {"model": "metainfo.source", "pk": 10513, "fields": {"orig_filename": "Leydolt_Franz_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177", "author": "", "orig_id": 1411811}}, {"model": "metainfo.source", "pk": 10514, "fields": {"orig_filename": "Leykam_Anatol_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177f.", "author": "", "orig_id": 1411812}}, {"model": "metainfo.source", "pk": 10515, "fields": {"orig_filename": "Leykam_Andreas_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411813}}, {"model": "metainfo.source", "pk": 10516, "fields": {"orig_filename": "Leyrer_Rudolf_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411814}}, {"model": "metainfo.source", "pk": 10517, "fields": {"orig_filename": "Ley_Erhard_1753_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175f.", "author": "", "orig_id": 1411805}}, {"model": "metainfo.source", "pk": 10518, "fields": {"orig_filename": "Lhota_Antonin_1812_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411815}}, {"model": "metainfo.source", "pk": 10519, "fields": {"orig_filename": "Lhota_Jan-Nep_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179", "author": "", "orig_id": 1411816}}, {"model": "metainfo.source", "pk": 10520, "fields": {"orig_filename": "Lhotsky_Bohuslav_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179", "author": "", "orig_id": 1411817}}, {"model": "metainfo.source", "pk": 10521, "fields": {"orig_filename": "Lhotsky_Jan_1800_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179f.", "author": "", "orig_id": 1411818}}, {"model": "metainfo.source", "pk": 10522, "fields": {"orig_filename": "Lhotzky_Alphons_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411890}}, {"model": "metainfo.source", "pk": 10523, "fields": {"orig_filename": "Libansky_Josef_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411891}}, {"model": "metainfo.source", "pk": 10524, "fields": {"orig_filename": "Libay_Karoly-Lajos_1816_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411892}}, {"model": "metainfo.source", "pk": 10525, "fields": {"orig_filename": "Libay_Samuel_1782_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180f.", "author": "", "orig_id": 1411893}}, {"model": "metainfo.source", "pk": 10526, "fields": {"orig_filename": "Libenyi_Janos_1831_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411894}}, {"model": "metainfo.source", "pk": 10527, "fields": {"orig_filename": "Liberali_Giulio-Angelo_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411896}}, {"model": "metainfo.source", "pk": 10528, "fields": {"orig_filename": "Libera_Anna-Barbara_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411895}}, {"model": "metainfo.source", "pk": 10529, "fields": {"orig_filename": "Libesny_Kurt_1892_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411897}}, {"model": "metainfo.source", "pk": 10530, "fields": {"orig_filename": "Libitzky_Leopold_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411898}}, {"model": "metainfo.source", "pk": 10531, "fields": {"orig_filename": "Lichard_Daniel_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411899}}, {"model": "metainfo.source", "pk": 10532, "fields": {"orig_filename": "Lichard_Milan_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411900}}, {"model": "metainfo.source", "pk": 10533, "fields": {"orig_filename": "Lichner_Pal_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182f.", "author": "", "orig_id": 1411901}}, {"model": "metainfo.source", "pk": 10534, "fields": {"orig_filename": "Lichnowsky_Eduard-Maria_1789_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183", "author": "", "orig_id": 1411903}}, {"model": "metainfo.source", "pk": 10535, "fields": {"orig_filename": "Lichnowsky_Wilhelm_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183", "author": "", "orig_id": 1411904}}, {"model": "metainfo.source", "pk": 10536, "fields": {"orig_filename": "Lichtblau_Stephan_1753_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411909}}, {"model": "metainfo.source", "pk": 10537, "fields": {"orig_filename": "Lichtenberg_Emil_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411910}}, {"model": "metainfo.source", "pk": 10538, "fields": {"orig_filename": "Lichtenberg_Reinhold_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411985}}, {"model": "metainfo.source", "pk": 10539, "fields": {"orig_filename": "Lichtenecker_Karl_1882_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185f.", "author": "", "orig_id": 1411986}}, {"model": "metainfo.source", "pk": 10540, "fields": {"orig_filename": "Lichtenecker_Norbert_1897_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411987}}, {"model": "metainfo.source", "pk": 10541, "fields": {"orig_filename": "Lichtenegger_Sepp_1909_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411988}}, {"model": "metainfo.source", "pk": 10542, "fields": {"orig_filename": "Lichtenheld_Adolf_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411989}}, {"model": "metainfo.source", "pk": 10543, "fields": {"orig_filename": "Lemach_Anton-Karl_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122f.", "author": "", "orig_id": 1412508}}, {"model": "metainfo.source", "pk": 10544, "fields": {"orig_filename": "Lemaic-Pasan-Brdo_Georg_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123", "author": "", "orig_id": 1412509}}, {"model": "metainfo.source", "pk": 10545, "fields": {"orig_filename": "Lemayer_Karl_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123", "author": "", "orig_id": 1412510}}, {"model": "metainfo.source", "pk": 10546, "fields": {"orig_filename": "Lemberger_Heinrich_1813_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124", "author": "", "orig_id": 1412512}}, {"model": "metainfo.source", "pk": 10547, "fields": {"orig_filename": "Lemberg_Eduard_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123f.", "author": "", "orig_id": 1412511}}, {"model": "metainfo.source", "pk": 10548, "fields": {"orig_filename": "Lemmermayer_Fritz_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124", "author": "", "orig_id": 1412513}}, {"model": "metainfo.source", "pk": 10549, "fields": {"orig_filename": "Lemoch_Ignaz_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124f.", "author": "", "orig_id": 1412514}}, {"model": "metainfo.source", "pk": 10550, "fields": {"orig_filename": "Lemoch_Johann-Nep_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412515}}, {"model": "metainfo.source", "pk": 10551, "fields": {"orig_filename": "Lemoch_Josef_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412516}}, {"model": "metainfo.source", "pk": 10552, "fields": {"orig_filename": "Lemoch_Vincenz_1792_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412517}}, {"model": "metainfo.source", "pk": 10553, "fields": {"orig_filename": "Lemonnier_Anton_1819_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412518}}, {"model": "metainfo.source", "pk": 10554, "fields": {"orig_filename": "Lemonnier_Theodor_1826_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412519}}, {"model": "metainfo.source", "pk": 10555, "fields": {"orig_filename": "Lempicki_Zygmunt_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412520}}, {"model": "metainfo.source", "pk": 10556, "fields": {"orig_filename": "Lenarcic_Andrija_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412521}}, {"model": "metainfo.source", "pk": 10557, "fields": {"orig_filename": "Lenard_Philipp-Eduard-Anton_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 127", "author": "", "orig_id": 1412522}}, {"model": "metainfo.source", "pk": 10558, "fields": {"orig_filename": "Lencses_Antal-Jozsef_1797_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 127f.", "author": "", "orig_id": 1412594}}, {"model": "metainfo.source", "pk": 10559, "fields": {"orig_filename": "Lencz_Oedoen_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128", "author": "", "orig_id": 1412595}}, {"model": "metainfo.source", "pk": 10560, "fields": {"orig_filename": "Lendecke_Gustav_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128", "author": "", "orig_id": 1412596}}, {"model": "metainfo.source", "pk": 10561, "fields": {"orig_filename": "Lendlmayer-Lendenfeld_Robert_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 129", "author": "", "orig_id": 1412598}}, {"model": "metainfo.source", "pk": 10562, "fields": {"orig_filename": "Lendl_Adolf_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128f.", "author": "", "orig_id": 1412597}}, {"model": "metainfo.source", "pk": 10563, "fields": {"orig_filename": "Lendovsek_Josip_1854_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 129f.", "author": "", "orig_id": 1412599}}, {"model": "metainfo.source", "pk": 10564, "fields": {"orig_filename": "Lendovsek_Mihael_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130", "author": "", "orig_id": 1412600}}, {"model": "metainfo.source", "pk": 10565, "fields": {"orig_filename": "Lendvai_Erwin_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130", "author": "", "orig_id": 1412601}}, {"model": "metainfo.source", "pk": 10566, "fields": {"orig_filename": "Lendvay-Fancsy_Ilka_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412606}}, {"model": "metainfo.source", "pk": 10567, "fields": {"orig_filename": "Lendvay-Hivatal_Aniko_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412607}}, {"model": "metainfo.source", "pk": 10568, "fields": {"orig_filename": "Lendvay_Benoe_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130f.", "author": "", "orig_id": 1412602}}, {"model": "metainfo.source", "pk": 10569, "fields": {"orig_filename": "Lendvay_Marton_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412603}}, {"model": "metainfo.source", "pk": 10570, "fields": {"orig_filename": "Lendvay_Marton_1830_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412605}}, {"model": "metainfo.source", "pk": 10571, "fields": {"orig_filename": "Lenecek_Ottokar_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131f.", "author": "", "orig_id": 1412608}}, {"model": "metainfo.source", "pk": 10572, "fields": {"orig_filename": "Lener_Josef_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412609}}, {"model": "metainfo.source", "pk": 10573, "fields": {"orig_filename": "Lener_Justinian_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412610}}, {"model": "metainfo.source", "pk": 10574, "fields": {"orig_filename": "Lengnick_Artur_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412611}}, {"model": "metainfo.source", "pk": 10575, "fields": {"orig_filename": "Lengsteiner_Josef_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412612}}, {"model": "metainfo.source", "pk": 10576, "fields": {"orig_filename": "Lengyel-Ebesfalva_Bela_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133", "author": "", "orig_id": 1412614}}, {"model": "metainfo.source", "pk": 10577, "fields": {"orig_filename": "Lengyel-Szakallosfalva_Nikolaus_1802_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133", "author": "", "orig_id": 1412615}}, {"model": "metainfo.source", "pk": 10578, "fields": {"orig_filename": "Lengyel_Jozsef_1770_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132f.", "author": "", "orig_id": 1412613}}, {"model": "metainfo.source", "pk": 10579, "fields": {"orig_filename": "Lenhard_Johann_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133f.", "author": "", "orig_id": 1412682}}, {"model": "metainfo.source", "pk": 10580, "fields": {"orig_filename": "Lenhossek_Jozsef_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 134", "author": "", "orig_id": 1412684}}, {"model": "metainfo.source", "pk": 10581, "fields": {"orig_filename": "Lenhossek_Mihaly_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 134", "author": "", "orig_id": 1412685}}, {"model": "metainfo.source", "pk": 10582, "fields": {"orig_filename": "Lenisch_Johanna_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412687}}, {"model": "metainfo.source", "pk": 10583, "fields": {"orig_filename": "Lenk-Burgheim-Gansheim_Heinrich_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412689}}, {"model": "metainfo.source", "pk": 10584, "fields": {"orig_filename": "Lenk-Treuenfeld_Ignaz_1766_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135f.", "author": "", "orig_id": 1412690}}, {"model": "metainfo.source", "pk": 10585, "fields": {"orig_filename": "Lenk-Wolfsberg_Rudolf_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136", "author": "", "orig_id": 1412691}}, {"model": "metainfo.source", "pk": 10586, "fields": {"orig_filename": "Lenk-Wolfsberg_Wilhelm_1809_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136", "author": "", "orig_id": 1412692}}, {"model": "metainfo.source", "pk": 10587, "fields": {"orig_filename": "Lenkei_Samuel_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136f.", "author": "", "orig_id": 1412693}}, {"model": "metainfo.source", "pk": 10588, "fields": {"orig_filename": "Lenkey_Janos_1807_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137", "author": "", "orig_id": 1412694}}, {"model": "metainfo.source", "pk": 10589, "fields": {"orig_filename": "Lenk_Friedrich-Andreas_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412688}}, {"model": "metainfo.source", "pk": 10590, "fields": {"orig_filename": "Lenoble-Edlersberg_Josef_1749_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137", "author": "", "orig_id": 1412695}}, {"model": "metainfo.source", "pk": 10591, "fields": {"orig_filename": "Lentl_Johann-Nep_1756_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137f.", "author": "", "orig_id": 1412696}}, {"model": "metainfo.source", "pk": 10592, "fields": {"orig_filename": "Lentner_Ferdinand_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 138", "author": "", "orig_id": 1412697}}, {"model": "metainfo.source", "pk": 10593, "fields": {"orig_filename": "Lentner_Josef-Friedrich_1814_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 138", "author": "", "orig_id": 1412698}}, {"model": "metainfo.source", "pk": 10594, "fields": {"orig_filename": "Lentulaj_Mirko_1774_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1412699}}, {"model": "metainfo.source", "pk": 10595, "fields": {"orig_filename": "Lenz_Alfred_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1416077}}, {"model": "metainfo.source", "pk": 10596, "fields": {"orig_filename": "Lenz_Antonin_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1412700}}, {"model": "metainfo.source", "pk": 10597, "fields": {"orig_filename": "Lenz_Maximilian_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139f.", "author": "", "orig_id": 1412701}}, {"model": "metainfo.source", "pk": 10598, "fields": {"orig_filename": "Lenz_Oskar_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 140", "author": "", "orig_id": 1412702}}, {"model": "metainfo.source", "pk": 10599, "fields": {"orig_filename": "Leobner_Heinrich_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412704}}, {"model": "metainfo.source", "pk": 10600, "fields": {"orig_filename": "Leonardi_Giuseppe_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412786}}, {"model": "metainfo.source", "pk": 10601, "fields": {"orig_filename": "Leonardi_Pietro_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412787}}, {"model": "metainfo.source", "pk": 10602, "fields": {"orig_filename": "Leonhardt_Andreas_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144", "author": "", "orig_id": 1412790}}, {"model": "metainfo.source", "pk": 10603, "fields": {"orig_filename": "Leonhardt_Gustav_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144", "author": "", "orig_id": 1412791}}, {"model": "metainfo.source", "pk": 10604, "fields": {"orig_filename": "Leonhardt_Johann_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144f.", "author": "", "orig_id": 1412792}}, {"model": "metainfo.source", "pk": 10605, "fields": {"orig_filename": "Leonhard_Daniel-Joseph_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412788}}, {"model": "metainfo.source", "pk": 10606, "fields": {"orig_filename": "Leonhard_Johann-Michael_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143f.", "author": "", "orig_id": 1412789}}, {"model": "metainfo.source", "pk": 10607, "fields": {"orig_filename": "Leon_Friedrich-Vinzenz_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412705}}, {"model": "metainfo.source", "pk": 10608, "fields": {"orig_filename": "Leon_Gottlieb_1757_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412779}}, {"model": "metainfo.source", "pk": 10609, "fields": {"orig_filename": "Leon_Gustav_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141f.", "author": "", "orig_id": 1412780}}, {"model": "metainfo.source", "pk": 10610, "fields": {"orig_filename": "Leon_Johann-Barthlmae_1802_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142", "author": "", "orig_id": 1412781}}, {"model": "metainfo.source", "pk": 10611, "fields": {"orig_filename": "Leon_Raimund_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142", "author": "", "orig_id": 1412782}}, {"model": "metainfo.source", "pk": 10612, "fields": {"orig_filename": "Leopold-Salvator___1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 146", "author": "", "orig_id": 1412795}}, {"model": "metainfo.source", "pk": 10613, "fields": {"orig_filename": "Leopolder_Johann_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 146f.", "author": "", "orig_id": 1412796}}, {"model": "metainfo.source", "pk": 10614, "fields": {"orig_filename": "Leopoldine__1797_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 147", "author": "", "orig_id": 1412797}}, {"model": "metainfo.source", "pk": 10615, "fields": {"orig_filename": "Leopold__1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 145", "author": "", "orig_id": 1412793}}, {"model": "metainfo.source", "pk": 10616, "fields": {"orig_filename": "Leopold__1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 145f.", "author": "", "orig_id": 1412794}}, {"model": "metainfo.source", "pk": 10617, "fields": {"orig_filename": "Leoster_Leopold-Heinrich_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 147f.", "author": "", "orig_id": 1412874}}, {"model": "metainfo.source", "pk": 10618, "fields": {"orig_filename": "Leo_Juliusz_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 140f.", "author": "", "orig_id": 1412703}}, {"model": "metainfo.source", "pk": 10619, "fields": {"orig_filename": "Lepar_Frantisek_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148", "author": "", "orig_id": 1412875}}, {"model": "metainfo.source", "pk": 10620, "fields": {"orig_filename": "Lepkowski_Jozef_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148", "author": "", "orig_id": 1412876}}, {"model": "metainfo.source", "pk": 10621, "fields": {"orig_filename": "Lepkyj_Bohdan-Sylvestrovyc_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148f.", "author": "", "orig_id": 1412877}}, {"model": "metainfo.source", "pk": 10622, "fields": {"orig_filename": "Leppin_Paul_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412878}}, {"model": "metainfo.source", "pk": 10623, "fields": {"orig_filename": "Lepsenyi_Miklos-Jozsef_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412879}}, {"model": "metainfo.source", "pk": 10624, "fields": {"orig_filename": "Lepszy_Leonard_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412880}}, {"model": "metainfo.source", "pk": 10625, "fields": {"orig_filename": "Lepuschuetz_Johann_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412881}}, {"model": "metainfo.source", "pk": 10626, "fields": {"orig_filename": "Lercher_Ludwig_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 152f.", "author": "", "orig_id": 1412889}}, {"model": "metainfo.source", "pk": 10627, "fields": {"orig_filename": "Lerch_Egon_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412882}}, {"model": "metainfo.source", "pk": 10628, "fields": {"orig_filename": "Lerch_Friedrich_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412883}}, {"model": "metainfo.source", "pk": 10629, "fields": {"orig_filename": "Lerch_Johann-Alexander_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150f.", "author": "", "orig_id": 1412884}}, {"model": "metainfo.source", "pk": 10630, "fields": {"orig_filename": "Lerch_Joseph-Udo_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151", "author": "", "orig_id": 1412885}}, {"model": "metainfo.source", "pk": 10631, "fields": {"orig_filename": "Lerch_Matyas_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151", "author": "", "orig_id": 1412886}}, {"model": "metainfo.source", "pk": 10632, "fields": {"orig_filename": "Lerch_Theodor_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151f.", "author": "", "orig_id": 1412887}}, {"model": "metainfo.source", "pk": 10633, "fields": {"orig_filename": "Lerch_Wenzel_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 152", "author": "", "orig_id": 1412888}}, {"model": "metainfo.source", "pk": 10634, "fields": {"orig_filename": "Lergetporer_Alois_1786_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153", "author": "", "orig_id": 1412963}}, {"model": "metainfo.source", "pk": 10635, "fields": {"orig_filename": "Lergetporer_Peter-Nikolaus_1749_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153", "author": "", "orig_id": 1412964}}, {"model": "metainfo.source", "pk": 10636, "fields": {"orig_filename": "Lerman_Dragutin_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153f.", "author": "", "orig_id": 1412965}}, {"model": "metainfo.source", "pk": 10637, "fields": {"orig_filename": "Leschanowsky_Lothar_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412966}}, {"model": "metainfo.source", "pk": 10638, "fields": {"orig_filename": "Leschen_Wilhelm_1781_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412967}}, {"model": "metainfo.source", "pk": 10639, "fields": {"orig_filename": "Leschetitzky_Theodor_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412968}}, {"model": "metainfo.source", "pk": 10640, "fields": {"orig_filename": "Leschinger_Karl-Konrad_1866_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412969}}, {"model": "metainfo.source", "pk": 10641, "fields": {"orig_filename": "Leser_Gratian_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412971}}, {"model": "metainfo.source", "pk": 10642, "fields": {"orig_filename": "Leser_Ludwig_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154f.", "author": "", "orig_id": 1412970}}, {"model": "metainfo.source", "pk": 10643, "fields": {"orig_filename": "Ledochowski_Mieczyslaw_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87f.", "author": "", "orig_id": 1413571}}, {"model": "metainfo.source", "pk": 10644, "fields": {"orig_filename": "Ledochowski_Timotheus_1792_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 88", "author": "", "orig_id": 1413572}}, {"model": "metainfo.source", "pk": 10645, "fields": {"orig_filename": "Ledochowski_Wladimir_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 88f.", "author": "", "orig_id": 1413573}}, {"model": "metainfo.source", "pk": 10646, "fields": {"orig_filename": "Leeb_Josef-Anton_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89", "author": "", "orig_id": 1413574}}, {"model": "metainfo.source", "pk": 10647, "fields": {"orig_filename": "Leeb_Willibald_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89", "author": "", "orig_id": 1413575}}, {"model": "metainfo.source", "pk": 10648, "fields": {"orig_filename": "Leeder_Karl_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89f.", "author": "", "orig_id": 1413576}}, {"model": "metainfo.source", "pk": 10649, "fields": {"orig_filename": "Lefler_Franz_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413577}}, {"model": "metainfo.source", "pk": 10650, "fields": {"orig_filename": "Legay-Lierfels_Albert_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90f.", "author": "", "orig_id": 1413579}}, {"model": "metainfo.source", "pk": 10651, "fields": {"orig_filename": "Legeditsch_Ignaz_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91", "author": "", "orig_id": 1413580}}, {"model": "metainfo.source", "pk": 10652, "fields": {"orig_filename": "Leger_Karel_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91", "author": "", "orig_id": 1413581}}, {"model": "metainfo.source", "pk": 10653, "fields": {"orig_filename": "Legler_Friedrich_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91f.", "author": "", "orig_id": 1413582}}, {"model": "metainfo.source", "pk": 10654, "fields": {"orig_filename": "Legnani_Rinaldo-Luigi_1790_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413583}}, {"model": "metainfo.source", "pk": 10655, "fields": {"orig_filename": "Legnazzi-Dossi_Alessandro_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413585}}, {"model": "metainfo.source", "pk": 10656, "fields": {"orig_filename": "Legnazzi_Enrico-Nestore_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413584}}, {"model": "metainfo.source", "pk": 10657, "fields": {"orig_filename": "Legrady_Karoly_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92f.", "author": "", "orig_id": 1413586}}, {"model": "metainfo.source", "pk": 10658, "fields": {"orig_filename": "Lehar_Franz_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413587}}, {"model": "metainfo.source", "pk": 10659, "fields": {"orig_filename": "Lehar_Franz_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413588}}, {"model": "metainfo.source", "pk": 10660, "fields": {"orig_filename": "Lehmann-Haupt_Carl_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 96f.", "author": "", "orig_id": 1413665}}, {"model": "metainfo.source", "pk": 10661, "fields": {"orig_filename": "Lehmann_Adolf_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413589}}, {"model": "metainfo.source", "pk": 10662, "fields": {"orig_filename": "Lehmann_Franz-Kaspar_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413591}}, {"model": "metainfo.source", "pk": 10663, "fields": {"orig_filename": "Lehmann_Georg_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413590}}, {"model": "metainfo.source", "pk": 10664, "fields": {"orig_filename": "Lehmann_Guido_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413592}}, {"model": "metainfo.source", "pk": 10665, "fields": {"orig_filename": "Lehmann_Heinrich_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413660}}, {"model": "metainfo.source", "pk": 10666, "fields": {"orig_filename": "Lehmann_Josef_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95", "author": "", "orig_id": 1413661}}, {"model": "metainfo.source", "pk": 10667, "fields": {"orig_filename": "Lehmann_Lilli_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95", "author": "", "orig_id": 1413662}}, {"model": "metainfo.source", "pk": 10668, "fields": {"orig_filename": "Lehmann_Moritz_1819_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95f.", "author": "", "orig_id": 1413663}}, {"model": "metainfo.source", "pk": 10669, "fields": {"orig_filename": "Lehmann_Otto_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 96", "author": "", "orig_id": 1413664}}, {"model": "metainfo.source", "pk": 10670, "fields": {"orig_filename": "Lehne-Lehnsheim_Gustav_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97", "author": "", "orig_id": 1413666}}, {"model": "metainfo.source", "pk": 10671, "fields": {"orig_filename": "Lehnert_Joseph_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413674}}, {"model": "metainfo.source", "pk": 10672, "fields": {"orig_filename": "Lehner_Elise_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97", "author": "", "orig_id": 1413667}}, {"model": "metainfo.source", "pk": 10673, "fields": {"orig_filename": "Lehner_Ferdinand_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97f.", "author": "", "orig_id": 1413668}}, {"model": "metainfo.source", "pk": 10674, "fields": {"orig_filename": "Lehner_Franz-De-Paula_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413669}}, {"model": "metainfo.source", "pk": 10675, "fields": {"orig_filename": "Lehner_Franz-Xaver_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413670}}, {"model": "metainfo.source", "pk": 10676, "fields": {"orig_filename": "Lehner_Josef_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413671}}, {"model": "metainfo.source", "pk": 10677, "fields": {"orig_filename": "Lehner_Rudolf-Julius_1883_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413673}}, {"model": "metainfo.source", "pk": 10678, "fields": {"orig_filename": "Lehner_Rudolf_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98f.", "author": "", "orig_id": 1413672}}, {"model": "metainfo.source", "pk": 10679, "fields": {"orig_filename": "Lehoczky_Tivadar_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413675}}, {"model": "metainfo.source", "pk": 10680, "fields": {"orig_filename": "Lehr_Albert_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413676}}, {"model": "metainfo.source", "pk": 10681, "fields": {"orig_filename": "Lehr_Zsigmond_1841_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413677}}, {"model": "metainfo.source", "pk": 10682, "fields": {"orig_filename": "Leibenfrost_Franz-Heinrich_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100f.", "author": "", "orig_id": 1413679}}, {"model": "metainfo.source", "pk": 10683, "fields": {"orig_filename": "Leibenfrost_Franz_1790_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413678}}, {"model": "metainfo.source", "pk": 10684, "fields": {"orig_filename": "Leibenfrost_Hermann_1844_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 101", "author": "", "orig_id": 1413680}}, {"model": "metainfo.source", "pk": 10685, "fields": {"orig_filename": "Leibitzer_Johann_1763_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 101", "author": "", "orig_id": 1413681}}, {"model": "metainfo.source", "pk": 10686, "fields": {"orig_filename": "Leicht_Ferdinand_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1416076}}, {"model": "metainfo.source", "pk": 10687, "fields": {"orig_filename": "Leicht_Hans_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1413682}}, {"model": "metainfo.source", "pk": 10688, "fields": {"orig_filename": "Leicht_Michele_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1413683}}, {"model": "metainfo.source", "pk": 10689, "fields": {"orig_filename": "Leicht_Wilhelm_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102f.", "author": "", "orig_id": 1413684}}, {"model": "metainfo.source", "pk": 10690, "fields": {"orig_filename": "Leidenfrost_Robert_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413750}}, {"model": "metainfo.source", "pk": 10691, "fields": {"orig_filename": "Leidesdorfer-Neuwall_Markus_1753_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105", "author": "", "orig_id": 1413756}}, {"model": "metainfo.source", "pk": 10692, "fields": {"orig_filename": "Leidesdorf_Franz-Emil_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104", "author": "", "orig_id": 1413752}}, {"model": "metainfo.source", "pk": 10693, "fields": {"orig_filename": "Leidesdorf_Leopold-Franz_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104", "author": "", "orig_id": 1413753}}, {"model": "metainfo.source", "pk": 10694, "fields": {"orig_filename": "Leidesdorf_Maximilian-Joseph_1787_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105", "author": "", "orig_id": 1413755}}, {"model": "metainfo.source", "pk": 10695, "fields": {"orig_filename": "Leidesdorf_Maximilian_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104f.", "author": "", "orig_id": 1413754}}, {"model": "metainfo.source", "pk": 10696, "fields": {"orig_filename": "Leidler_Rudolf_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 106", "author": "", "orig_id": 1413758}}, {"model": "metainfo.source", "pk": 10697, "fields": {"orig_filename": "Leidl_Karl_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105f.", "author": "", "orig_id": 1413757}}, {"model": "metainfo.source", "pk": 10698, "fields": {"orig_filename": "Leifer_Franz_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 106", "author": "", "orig_id": 1413759}}, {"model": "metainfo.source", "pk": 10699, "fields": {"orig_filename": "Leifer_Therese_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 107", "author": "", "orig_id": 1413760}}, {"model": "metainfo.source", "pk": 10700, "fields": {"orig_filename": "Leifhelm_Hans_1891_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 107f.", "author": "", "orig_id": 1413761}}, {"model": "metainfo.source", "pk": 10701, "fields": {"orig_filename": "Leigheb_Giovanni_1812_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413763}}, {"model": "metainfo.source", "pk": 10702, "fields": {"orig_filename": "Leimdoerfer_David_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413764}}, {"model": "metainfo.source", "pk": 10703, "fields": {"orig_filename": "Leiner_Carl_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413765}}, {"model": "metainfo.source", "pk": 10704, "fields": {"orig_filename": "Leiningen-Westerburg_Karl_1819_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108f.", "author": "", "orig_id": 1413766}}, {"model": "metainfo.source", "pk": 10705, "fields": {"orig_filename": "Leinner_Anton_1813_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413767}}, {"model": "metainfo.source", "pk": 10706, "fields": {"orig_filename": "Leipziger_Vilmos_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413768}}, {"model": "metainfo.source", "pk": 10707, "fields": {"orig_filename": "Leis-Paschbach_Anton_1777_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413769}}, {"model": "metainfo.source", "pk": 10708, "fields": {"orig_filename": "Leisching_Eduard_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109f.", "author": "", "orig_id": 1413770}}, {"model": "metainfo.source", "pk": 10709, "fields": {"orig_filename": "Leisching_Julius_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110", "author": "", "orig_id": 1413771}}, {"model": "metainfo.source", "pk": 10710, "fields": {"orig_filename": "Leisek_Friedrich_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110", "author": "", "orig_id": 1413772}}, {"model": "metainfo.source", "pk": 10711, "fields": {"orig_filename": "Leisek_Georg_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110f.", "author": "", "orig_id": 1413841}}, {"model": "metainfo.source", "pk": 10712, "fields": {"orig_filename": "Leiss_Hans_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 111", "author": "", "orig_id": 1413842}}, {"model": "metainfo.source", "pk": 10713, "fields": {"orig_filename": "Leistler_Carl_1805_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 111f.", "author": "", "orig_id": 1413843}}, {"model": "metainfo.source", "pk": 10714, "fields": {"orig_filename": "Leitenberger_Friedrich-Franz-Josef_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113", "author": "", "orig_id": 1413846}}, {"model": "metainfo.source", "pk": 10715, "fields": {"orig_filename": "Leitenberger_Friedrich_1801_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 112", "author": "", "orig_id": 1413845}}, {"model": "metainfo.source", "pk": 10716, "fields": {"orig_filename": "Leitenberger_Friedrich_1862_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113", "author": "", "orig_id": 1416075}}, {"model": "metainfo.source", "pk": 10717, "fields": {"orig_filename": "Leitenberger_Karl_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113f.", "author": "", "orig_id": 1413847}}, {"model": "metainfo.source", "pk": 10718, "fields": {"orig_filename": "Leiter-Lososina_Anton_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413849}}, {"model": "metainfo.source", "pk": 10719, "fields": {"orig_filename": "Leitermayer_Alexander_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413850}}, {"model": "metainfo.source", "pk": 10720, "fields": {"orig_filename": "Leiter_Josef_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413848}}, {"model": "metainfo.source", "pk": 10721, "fields": {"orig_filename": "Leitgeb_Hans_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413851}}, {"model": "metainfo.source", "pk": 10722, "fields": {"orig_filename": "Leitgeb_Lorenz_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 115", "author": "", "orig_id": 1413853}}, {"model": "metainfo.source", "pk": 10723, "fields": {"orig_filename": "Leithe_Friedrich_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 115", "author": "", "orig_id": 1413854}}, {"model": "metainfo.source", "pk": 10724, "fields": {"orig_filename": "Leithner_Eduard_1815_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116", "author": "", "orig_id": 1413855}}, {"model": "metainfo.source", "pk": 10725, "fields": {"orig_filename": "Leithner_Ernst_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116", "author": "", "orig_id": 1413856}}, {"model": "metainfo.source", "pk": 10726, "fields": {"orig_filename": "Leithner_Hermann_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116f.", "author": "", "orig_id": 1413857}}, {"model": "metainfo.source", "pk": 10727, "fields": {"orig_filename": "Leithner_Josef_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413858}}, {"model": "metainfo.source", "pk": 10728, "fields": {"orig_filename": "Leitich_Albert_1869_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413859}}, {"model": "metainfo.source", "pk": 10729, "fields": {"orig_filename": "Leitner_Alois_1876_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413860}}, {"model": "metainfo.source", "pk": 10730, "fields": {"orig_filename": "Leitner_Emanuel_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117f.", "author": "", "orig_id": 1413861}}, {"model": "metainfo.source", "pk": 10731, "fields": {"orig_filename": "Leitner_Franz_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 118", "author": "", "orig_id": 1413862}}, {"model": "metainfo.source", "pk": 10732, "fields": {"orig_filename": "Leitner_Friedrich_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 118f.", "author": "", "orig_id": 1413863}}, {"model": "metainfo.source", "pk": 10733, "fields": {"orig_filename": "Leitner_Gottlieb-William_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119", "author": "", "orig_id": 1413864}}, {"model": "metainfo.source", "pk": 10734, "fields": {"orig_filename": "Leitner_Johann-Georg_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119", "author": "", "orig_id": 1412500}}, {"model": "metainfo.source", "pk": 10735, "fields": {"orig_filename": "Leitner_Karl-Gottfried_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119f.", "author": "", "orig_id": 1412501}}, {"model": "metainfo.source", "pk": 10736, "fields": {"orig_filename": "Leitner_Quirin_1834_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 120f.", "author": "", "orig_id": 1412502}}, {"model": "metainfo.source", "pk": 10737, "fields": {"orig_filename": "Leitz_Heinrich-Friedrich_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 121", "author": "", "orig_id": 1412503}}, {"model": "metainfo.source", "pk": 10738, "fields": {"orig_filename": "Leixner-Gruenberg_Othmar_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 121", "author": "", "orig_id": 1412504}}, {"model": "metainfo.source", "pk": 10739, "fields": {"orig_filename": "Leixner-Gruenberg_Otto_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412505}}, {"model": "metainfo.source", "pk": 10740, "fields": {"orig_filename": "Lejet_Nicolas_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412506}}, {"model": "metainfo.source", "pk": 10741, "fields": {"orig_filename": "Laxa_Wladimir_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54", "author": "", "orig_id": 1413049}}, {"model": "metainfo.source", "pk": 10742, "fields": {"orig_filename": "Layer_Leopold_1752_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54f.", "author": "", "orig_id": 1413051}}, {"model": "metainfo.source", "pk": 10743, "fields": {"orig_filename": "Layer_Max_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 55", "author": "", "orig_id": 1413052}}, {"model": "metainfo.source", "pk": 10744, "fields": {"orig_filename": "Layer_Michael_1796_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 55f.", "author": "", "orig_id": 1413053}}, {"model": "metainfo.source", "pk": 10745, "fields": {"orig_filename": "Lay_Srecko_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54", "author": "", "orig_id": 1413050}}, {"model": "metainfo.source", "pk": 10746, "fields": {"orig_filename": "Lazansky-Bukowa_Leopold_1808_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413125}}, {"model": "metainfo.source", "pk": 10747, "fields": {"orig_filename": "Lazansky-Bukowa_Procop_1771_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413126}}, {"model": "metainfo.source", "pk": 10748, "fields": {"orig_filename": "Lazar-Szarhegy_Gyoergy_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413133}}, {"model": "metainfo.source", "pk": 10749, "fields": {"orig_filename": "Lazar-Szarhegy_Jozsef_1782_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413134}}, {"model": "metainfo.source", "pk": 10750, "fields": {"orig_filename": "Lazar-Szarhegy_Kalman_1827_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413135}}, {"model": "metainfo.source", "pk": 10751, "fields": {"orig_filename": "Lazar-Szarhegy_Laszlo_1780_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413136}}, {"model": "metainfo.source", "pk": 10752, "fields": {"orig_filename": "Lazar-Szarhegy_Miklos_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413137}}, {"model": "metainfo.source", "pk": 10753, "fields": {"orig_filename": "Lazara_Francesco_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413138}}, {"model": "metainfo.source", "pk": 10754, "fields": {"orig_filename": "Lazara_Giovanni_1744_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413212}}, {"model": "metainfo.source", "pk": 10755, "fields": {"orig_filename": "Lazarich-Lindaro_Josef_1784_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413213}}, {"model": "metainfo.source", "pk": 10756, "fields": {"orig_filename": "Lazarini_Giacomo-Lodovico_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413214}}, {"model": "metainfo.source", "pk": 10757, "fields": {"orig_filename": "Lazarini_Josef-Philibert_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413215}}, {"model": "metainfo.source", "pk": 10758, "fields": {"orig_filename": "Lazari_Vincenzo_1823_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59f.", "author": "", "orig_id": 1413211}}, {"model": "metainfo.source", "pk": 10759, "fields": {"orig_filename": "Lazarski_Jozef_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413216}}, {"model": "metainfo.source", "pk": 10760, "fields": {"orig_filename": "Lazarski_Stanislaw_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413217}}, {"model": "metainfo.source", "pk": 10761, "fields": {"orig_filename": "Lazar_Auguste_1887_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436976}}, {"model": "metainfo.source", "pk": 10762, "fields": {"orig_filename": "Lazar_Erwin_1877_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413127}}, {"model": "metainfo.source", "pk": 10763, "fields": {"orig_filename": "Lazar_Gheorghe_1779_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413128}}, {"model": "metainfo.source", "pk": 10764, "fields": {"orig_filename": "Lazar_Gyula_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413129}}, {"model": "metainfo.source", "pk": 10765, "fields": {"orig_filename": "Lazar_Istvan_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413130}}, {"model": "metainfo.source", "pk": 10766, "fields": {"orig_filename": "Lazar_Maria_1895_1948.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1449979}}, {"model": "metainfo.source", "pk": 10767, "fields": {"orig_filename": "Lazar_Pal-L_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413131}}, {"model": "metainfo.source", "pk": 10768, "fields": {"orig_filename": "Lazar_Vilmos_1815_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57f.", "author": "", "orig_id": 1413132}}, {"model": "metainfo.source", "pk": 10769, "fields": {"orig_filename": "Lazzarini_Giuseppe-Edgardo_1832_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 62", "author": "", "orig_id": 1413220}}, {"model": "metainfo.source", "pk": 10770, "fields": {"orig_filename": "Lazzari_Francesco_1791_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413218}}, {"model": "metainfo.source", "pk": 10771, "fields": {"orig_filename": "Lazzari_Silvio_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61f.", "author": "", "orig_id": 1413219}}, {"model": "metainfo.source", "pk": 10772, "fields": {"orig_filename": "Lazzati_Antonio_1821_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 62f.", "author": "", "orig_id": 1413221}}, {"model": "metainfo.source", "pk": 10773, "fields": {"orig_filename": "Lebeau_Aurel_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63", "author": "", "orig_id": 1413223}}, {"model": "metainfo.source", "pk": 10774, "fields": {"orig_filename": "Lebeda_Anton-Vinzenz_1797_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63f.", "author": "", "orig_id": 1413224}}, {"model": "metainfo.source", "pk": 10775, "fields": {"orig_filename": "Lebeda_Anton-Vinzenz_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 64", "author": "", "orig_id": 1413225}}, {"model": "metainfo.source", "pk": 10776, "fields": {"orig_filename": "Lebeda_Ferdinand_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 64f.", "author": "", "orig_id": 1413226}}, {"model": "metainfo.source", "pk": 10777, "fields": {"orig_filename": "Lebeda_Otakar_1877_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65", "author": "", "orig_id": 1413227}}, {"model": "metainfo.source", "pk": 10778, "fields": {"orig_filename": "Lebenhart_Filip_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65", "author": "", "orig_id": 1413228}}, {"model": "metainfo.source", "pk": 10779, "fields": {"orig_filename": "Leberl_Hans_1871_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413230}}, {"model": "metainfo.source", "pk": 10780, "fields": {"orig_filename": "Leber_Max_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65f.", "author": "", "orig_id": 1413229}}, {"model": "metainfo.source", "pk": 10781, "fields": {"orig_filename": "Lebiedzki_Eduard_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413231}}, {"model": "metainfo.source", "pk": 10782, "fields": {"orig_filename": "Lebinger_Norbert_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413232}}, {"model": "metainfo.source", "pk": 10783, "fields": {"orig_filename": "Lebmacher_Carl_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66f.", "author": "", "orig_id": 1413301}}, {"model": "metainfo.source", "pk": 10784, "fields": {"orig_filename": "Lebouton_Alois_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 67", "author": "", "orig_id": 1413302}}, {"model": "metainfo.source", "pk": 10785, "fields": {"orig_filename": "Lebschy_Dominik_1799_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 67f.", "author": "", "orig_id": 1413303}}, {"model": "metainfo.source", "pk": 10786, "fields": {"orig_filename": "Lebstueck_Maria_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413304}}, {"model": "metainfo.source", "pk": 10787, "fields": {"orig_filename": "Lebzeltern_Josef_1781_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413306}}, {"model": "metainfo.source", "pk": 10788, "fields": {"orig_filename": "Lebzeltern_Ludwig_1774_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 69", "author": "", "orig_id": 1413307}}, {"model": "metainfo.source", "pk": 10789, "fields": {"orig_filename": "Lebzelter_Viktor_1889_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413305}}, {"model": "metainfo.source", "pk": 10790, "fields": {"orig_filename": "Leb_Josef_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63", "author": "", "orig_id": 1413222}}, {"model": "metainfo.source", "pk": 10791, "fields": {"orig_filename": "Lecca_Constantin_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 69f.", "author": "", "orig_id": 1413308}}, {"model": "metainfo.source", "pk": 10792, "fields": {"orig_filename": "Lecher_Ernst_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 70", "author": "", "orig_id": 1413309}}, {"model": "metainfo.source", "pk": 10793, "fields": {"orig_filename": "Lecher_Helene_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 70f.", "author": "", "orig_id": 1413310}}, {"model": "metainfo.source", "pk": 10794, "fields": {"orig_filename": "Lecher_Otto_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413311}}, {"model": "metainfo.source", "pk": 10795, "fields": {"orig_filename": "Lecher_Zacharias-Konrad_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413312}}, {"model": "metainfo.source", "pk": 10796, "fields": {"orig_filename": "Lechi_Angelo_1769_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413313}}, {"model": "metainfo.source", "pk": 10797, "fields": {"orig_filename": "Lechi_Giacomo_1768_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71f.", "author": "", "orig_id": 1413314}}, {"model": "metainfo.source", "pk": 10798, "fields": {"orig_filename": "Lechi_Giuseppe_1766_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 72", "author": "", "orig_id": 1413315}}, {"model": "metainfo.source", "pk": 10799, "fields": {"orig_filename": "Lechi_Luigi_1786_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 72f.", "author": "", "orig_id": 1413316}}, {"model": "metainfo.source", "pk": 10800, "fields": {"orig_filename": "Lechi_Teodoro_1778_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 73", "author": "", "orig_id": 1413317}}, {"model": "metainfo.source", "pk": 10801, "fields": {"orig_filename": "Lechleitner_Franz_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 73f.", "author": "", "orig_id": 1413318}}, {"model": "metainfo.source", "pk": 10802, "fields": {"orig_filename": "Lechleitner_Johannes-Bapt_1764_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74", "author": "", "orig_id": 1413319}}, {"model": "metainfo.source", "pk": 10803, "fields": {"orig_filename": "Lechleitner_Robert_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74", "author": "", "orig_id": 1413320}}, {"model": "metainfo.source", "pk": 10804, "fields": {"orig_filename": "Lechleitner_Wilhelm_1779_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74f.", "author": "", "orig_id": 1413321}}, {"model": "metainfo.source", "pk": 10805, "fields": {"orig_filename": "Lechner_Agost_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75", "author": "", "orig_id": 1413322}}, {"model": "metainfo.source", "pk": 10806, "fields": {"orig_filename": "Lechner_Anton_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75", "author": "", "orig_id": 1413323}}, {"model": "metainfo.source", "pk": 10807, "fields": {"orig_filename": "Lechner_Franziska_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76", "author": "", "orig_id": 1413395}}, {"model": "metainfo.source", "pk": 10808, "fields": {"orig_filename": "Lechner_Franz_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75f.", "author": "", "orig_id": 1413324}}, {"model": "metainfo.source", "pk": 10809, "fields": {"orig_filename": "Lechner_Gyula_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76", "author": "", "orig_id": 1413396}}, {"model": "metainfo.source", "pk": 10810, "fields": {"orig_filename": "Lechner_Johann_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76f.", "author": "", "orig_id": 1413397}}, {"model": "metainfo.source", "pk": 10811, "fields": {"orig_filename": "Lechner_Karl_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413398}}, {"model": "metainfo.source", "pk": 10812, "fields": {"orig_filename": "Lechner_Karoly_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413399}}, {"model": "metainfo.source", "pk": 10813, "fields": {"orig_filename": "Lechner_Lajos_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413400}}, {"model": "metainfo.source", "pk": 10814, "fields": {"orig_filename": "Lechner_Ludwig_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77f.", "author": "", "orig_id": 1413401}}, {"model": "metainfo.source", "pk": 10815, "fields": {"orig_filename": "Lechner_Michael_1785_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78", "author": "", "orig_id": 1413402}}, {"model": "metainfo.source", "pk": 10816, "fields": {"orig_filename": "Lechner_Oedoen_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78", "author": "", "orig_id": 1413403}}, {"model": "metainfo.source", "pk": 10817, "fields": {"orig_filename": "Lechthaler_Josef_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78f.", "author": "", "orig_id": 1413404}}, {"model": "metainfo.source", "pk": 10818, "fields": {"orig_filename": "Leciejewski_Jan_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 79", "author": "", "orig_id": 1413405}}, {"model": "metainfo.source", "pk": 10819, "fields": {"orig_filename": "Leddihn_Adolph_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 79", "author": "", "orig_id": 1413406}}, {"model": "metainfo.source", "pk": 10820, "fields": {"orig_filename": "Ledebur-Wicheln_Johann_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80", "author": "", "orig_id": 1413407}}, {"model": "metainfo.source", "pk": 10821, "fields": {"orig_filename": "Ledererova-Seifertova_Terezie_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136f.", "author": "", "orig_id": 1451574}}, {"model": "metainfo.source", "pk": 10822, "fields": {"orig_filename": "Lederer_Abraham_1827_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81", "author": "", "orig_id": 1413484}}, {"model": "metainfo.source", "pk": 10823, "fields": {"orig_filename": "Lederer_Alexander_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81", "author": "", "orig_id": 1413486}}, {"model": "metainfo.source", "pk": 10824, "fields": {"orig_filename": "Lederer_Anton_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81f.", "author": "", "orig_id": 1413485}}, {"model": "metainfo.source", "pk": 10825, "fields": {"orig_filename": "Lederer_Bela_1860_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413487}}, {"model": "metainfo.source", "pk": 10826, "fields": {"orig_filename": "Lederer_Carl-Ramon-Soter_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413488}}, {"model": "metainfo.source", "pk": 10827, "fields": {"orig_filename": "Lederer_Eduard_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413489}}, {"model": "metainfo.source", "pk": 10828, "fields": {"orig_filename": "Lederer_Emil_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82f.", "author": "", "orig_id": 1413490}}, {"model": "metainfo.source", "pk": 10829, "fields": {"orig_filename": "Lederer_Hugo_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413491}}, {"model": "metainfo.source", "pk": 10830, "fields": {"orig_filename": "Lederer_Joachim_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413492}}, {"model": "metainfo.source", "pk": 10831, "fields": {"orig_filename": "Lederer_Karl-Joseph-Alois_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84", "author": "", "orig_id": 1413494}}, {"model": "metainfo.source", "pk": 10832, "fields": {"orig_filename": "Lederer_Karl_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413493}}, {"model": "metainfo.source", "pk": 10833, "fields": {"orig_filename": "Lederer_Leo_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84", "author": "", "orig_id": 1413495}}, {"model": "metainfo.source", "pk": 10834, "fields": {"orig_filename": "Lederer_Max_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84f.", "author": "", "orig_id": 1413496}}, {"model": "metainfo.source", "pk": 10835, "fields": {"orig_filename": "Lederer_Max_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85", "author": "", "orig_id": 1413497}}, {"model": "metainfo.source", "pk": 10836, "fields": {"orig_filename": "Lederer_Sandor_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85", "author": "", "orig_id": 1413499}}, {"model": "metainfo.source", "pk": 10837, "fields": {"orig_filename": "Ledermaier_Josef_1910_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85f.", "author": "", "orig_id": 1413498}}, {"model": "metainfo.source", "pk": 10838, "fields": {"orig_filename": "Ledersteger_Alois-Paul_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86", "author": "", "orig_id": 1413500}}, {"model": "metainfo.source", "pk": 10839, "fields": {"orig_filename": "Leder_August-Paul_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80", "author": "", "orig_id": 1413408}}, {"model": "metainfo.source", "pk": 10840, "fields": {"orig_filename": "Leder_Hans_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80f.", "author": "", "orig_id": 1413409}}, {"model": "metainfo.source", "pk": 10841, "fields": {"orig_filename": "Ledl_Artur_1878_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86", "author": "", "orig_id": 1413501}}, {"model": "metainfo.source", "pk": 10842, "fields": {"orig_filename": "Ledochowska_Maria-Theresia_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86f.", "author": "", "orig_id": 1413502}}, {"model": "metainfo.source", "pk": 10843, "fields": {"orig_filename": "Ledochowska_Maria-Ursula_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87", "author": "", "orig_id": 1413503}}, {"model": "metainfo.source", "pk": 10844, "fields": {"orig_filename": "Ledochowski_Antoni_1755_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87", "author": "", "orig_id": 1413570}}, {"model": "metainfo.source", "pk": 10845, "fields": {"orig_filename": "Lany_Karel-Bohuslav_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412667}}, {"model": "metainfo.source", "pk": 10846, "fields": {"orig_filename": "Lany_Karel-Eduard_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19f.", "author": "", "orig_id": 1412668}}, {"model": "metainfo.source", "pk": 10847, "fields": {"orig_filename": "Lanza_Frano_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21f.", "author": "", "orig_id": 1412674}}, {"model": "metainfo.source", "pk": 10848, "fields": {"orig_filename": "Lanzedelly_August_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412675}}, {"model": "metainfo.source", "pk": 10849, "fields": {"orig_filename": "Lanzedelly_Josef_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412676}}, {"model": "metainfo.source", "pk": 10850, "fields": {"orig_filename": "Lanzedelly_Josef_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412677}}, {"model": "metainfo.source", "pk": 10851, "fields": {"orig_filename": "Lanzedelly_Karl_1815_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22f.", "author": "", "orig_id": 1412678}}, {"model": "metainfo.source", "pk": 10852, "fields": {"orig_filename": "Lanzendoerfer_Ferdinand_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23", "author": "", "orig_id": 1412679}}, {"model": "metainfo.source", "pk": 10853, "fields": {"orig_filename": "Lanzinger_Hubert_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23", "author": "", "orig_id": 1412680}}, {"model": "metainfo.source", "pk": 10854, "fields": {"orig_filename": "Lanz_Engelbert_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21", "author": "", "orig_id": 1412672}}, {"model": "metainfo.source", "pk": 10855, "fields": {"orig_filename": "Lanz_Katharina_1771_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21", "author": "", "orig_id": 1412673}}, {"model": "metainfo.source", "pk": 10856, "fields": {"orig_filename": "Lapajne_Ivan_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24", "author": "", "orig_id": 1412755}}, {"model": "metainfo.source", "pk": 10857, "fields": {"orig_filename": "Lapajne_Stanko_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24", "author": "", "orig_id": 1412756}}, {"model": "metainfo.source", "pk": 10858, "fields": {"orig_filename": "Lapinski_Teofil_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24f.", "author": "", "orig_id": 1412757}}, {"model": "metainfo.source", "pk": 10859, "fields": {"orig_filename": "Lapp_Daniel_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 25", "author": "", "orig_id": 1412758}}, {"model": "metainfo.source", "pk": 10860, "fields": {"orig_filename": "Lapp_Friedrich-August_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 25f.", "author": "", "orig_id": 1412759}}, {"model": "metainfo.source", "pk": 10861, "fields": {"orig_filename": "Lapsinszky_Janos_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412760}}, {"model": "metainfo.source", "pk": 10862, "fields": {"orig_filename": "Larber_Giovanni_1786_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412761}}, {"model": "metainfo.source", "pk": 10863, "fields": {"orig_filename": "Larch_Hans_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412762}}, {"model": "metainfo.source", "pk": 10864, "fields": {"orig_filename": "Lardschneider_Archangelus-Ciampac_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26f.", "author": "", "orig_id": 1412763}}, {"model": "metainfo.source", "pk": 10865, "fields": {"orig_filename": "Larisch-Moennich_Heinrich_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 27f.", "author": "", "orig_id": 1412765}}, {"model": "metainfo.source", "pk": 10866, "fields": {"orig_filename": "Larisch-Moennich_Johann_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28", "author": "", "orig_id": 1412766}}, {"model": "metainfo.source", "pk": 10867, "fields": {"orig_filename": "Larisch_Rudolf_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 27", "author": "", "orig_id": 1412764}}, {"model": "metainfo.source", "pk": 10868, "fields": {"orig_filename": "Laroche_Jakob_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28", "author": "", "orig_id": 1412767}}, {"model": "metainfo.source", "pk": 10869, "fields": {"orig_filename": "Laroche_Karl_1794_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28f.", "author": "", "orig_id": 1412768}}, {"model": "metainfo.source", "pk": 10870, "fields": {"orig_filename": "Laroche_Michael-Johann_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 29", "author": "", "orig_id": 1412769}}, {"model": "metainfo.source", "pk": 10871, "fields": {"orig_filename": "Larwin_Hans_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 29f.", "author": "", "orig_id": 1412770}}, {"model": "metainfo.source", "pk": 10872, "fields": {"orig_filename": "Laschan-Moorland_Anton_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412774}}, {"model": "metainfo.source", "pk": 10873, "fields": {"orig_filename": "Laschan-Solstein_Ignaz_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30f.", "author": "", "orig_id": 1412773}}, {"model": "metainfo.source", "pk": 10874, "fields": {"orig_filename": "Laschitzer_Simon_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31", "author": "", "orig_id": 1412775}}, {"model": "metainfo.source", "pk": 10875, "fields": {"orig_filename": "Lasch_Richard_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412771}}, {"model": "metainfo.source", "pk": 10876, "fields": {"orig_filename": "Lasch_Simon_1796_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412772}}, {"model": "metainfo.source", "pk": 10877, "fields": {"orig_filename": "Lascny-Folkusfalva_Katharina_1789_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31", "author": "", "orig_id": 1412776}}, {"model": "metainfo.source", "pk": 10878, "fields": {"orig_filename": "Laser_Simon-Menachem_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31f.", "author": "", "orig_id": 1412777}}, {"model": "metainfo.source", "pk": 10879, "fields": {"orig_filename": "Lasinio_Basilio_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32", "author": "", "orig_id": 1412778}}, {"model": "metainfo.source", "pk": 10880, "fields": {"orig_filename": "Lasinio_Carlo_1759_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32", "author": "", "orig_id": 1412846}}, {"model": "metainfo.source", "pk": 10881, "fields": {"orig_filename": "Laska_Gustav_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 33", "author": "", "orig_id": 1412848}}, {"model": "metainfo.source", "pk": 10882, "fields": {"orig_filename": "Laska_Julius_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 33f.", "author": "", "orig_id": 1412849}}, {"model": "metainfo.source", "pk": 10883, "fields": {"orig_filename": "Lask_Emil_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32f.", "author": "", "orig_id": 1412847}}, {"model": "metainfo.source", "pk": 10884, "fields": {"orig_filename": "Lasocki_Zygmunt_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34", "author": "", "orig_id": 1412850}}, {"model": "metainfo.source", "pk": 10885, "fields": {"orig_filename": "Lassel_Matthias_1760_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34", "author": "", "orig_id": 1412851}}, {"model": "metainfo.source", "pk": 10886, "fields": {"orig_filename": "Lassel_Rudolf_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34f.", "author": "", "orig_id": 1412852}}, {"model": "metainfo.source", "pk": 10887, "fields": {"orig_filename": "Lasser-Zollheim_Johann-Bapt_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35", "author": "", "orig_id": 1412853}}, {"model": "metainfo.source", "pk": 10888, "fields": {"orig_filename": "Lasser-Zollheim_Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35", "author": "", "orig_id": 1412854}}, {"model": "metainfo.source", "pk": 10889, "fields": {"orig_filename": "Lassu_Istvan_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35f.", "author": "", "orig_id": 1412855}}, {"model": "metainfo.source", "pk": 10890, "fields": {"orig_filename": "Lastovka_Karel_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412859}}, {"model": "metainfo.source", "pk": 10891, "fields": {"orig_filename": "Last_Adolf_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36", "author": "", "orig_id": 1412856}}, {"model": "metainfo.source", "pk": 10892, "fields": {"orig_filename": "Last_Albert_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36", "author": "", "orig_id": 1412857}}, {"model": "metainfo.source", "pk": 10893, "fields": {"orig_filename": "Last_Isaak_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36f.", "author": "", "orig_id": 1412858}}, {"model": "metainfo.source", "pk": 10894, "fields": {"orig_filename": "Laszlo-Lombos_Fueloep-Elek_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37f.", "author": "", "orig_id": 1412862}}, {"model": "metainfo.source", "pk": 10895, "fields": {"orig_filename": "Laszlo_Jozsef_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412861}}, {"model": "metainfo.source", "pk": 10896, "fields": {"orig_filename": "Laszowski_Emilij_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412863}}, {"model": "metainfo.source", "pk": 10897, "fields": {"orig_filename": "Lasz_Samu_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412860}}, {"model": "metainfo.source", "pk": 10898, "fields": {"orig_filename": "Latabar_Endre_1812_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412864}}, {"model": "metainfo.source", "pk": 10899, "fields": {"orig_filename": "Latabar_Kalman_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412865}}, {"model": "metainfo.source", "pk": 10900, "fields": {"orig_filename": "Latas_Omer_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38f.", "author": "", "orig_id": 1412866}}, {"model": "metainfo.source", "pk": 10901, "fields": {"orig_filename": "Latkoczy_Mihaly_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39", "author": "", "orig_id": 1412867}}, {"model": "metainfo.source", "pk": 10902, "fields": {"orig_filename": "Latkowski_Jozef_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39", "author": "", "orig_id": 1412868}}, {"model": "metainfo.source", "pk": 10903, "fields": {"orig_filename": "Latour-Thurmburg_Josef_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39f.", "author": "", "orig_id": 1412869}}, {"model": "metainfo.source", "pk": 10904, "fields": {"orig_filename": "Latour-Voivre_Elvine_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412870}}, {"model": "metainfo.source", "pk": 10905, "fields": {"orig_filename": "Latschenberger_Johann_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412939}}, {"model": "metainfo.source", "pk": 10906, "fields": {"orig_filename": "Latscher-Lauendorf_Julius_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412942}}, {"model": "metainfo.source", "pk": 10907, "fields": {"orig_filename": "Latscher_Johann_1840_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412940}}, {"model": "metainfo.source", "pk": 10908, "fields": {"orig_filename": "Latscher_Viktor_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40f.", "author": "", "orig_id": 1412941}}, {"model": "metainfo.source", "pk": 10909, "fields": {"orig_filename": "Latschka_Adam_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412943}}, {"model": "metainfo.source", "pk": 10910, "fields": {"orig_filename": "Latterer-Lintenburg_Adolf-Constantin_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412944}}, {"model": "metainfo.source", "pk": 10911, "fields": {"orig_filename": "Latterer-Lintenburg_Joseph-Johann_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42", "author": "", "orig_id": 1412945}}, {"model": "metainfo.source", "pk": 10912, "fields": {"orig_filename": "Lattermann_Christoph_1753_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42", "author": "", "orig_id": 1412946}}, {"model": "metainfo.source", "pk": 10913, "fields": {"orig_filename": "Lattes_Elia_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42f.", "author": "", "orig_id": 1412947}}, {"model": "metainfo.source", "pk": 10914, "fields": {"orig_filename": "Latzel_Robert_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43", "author": "", "orig_id": 1412948}}, {"model": "metainfo.source", "pk": 10915, "fields": {"orig_filename": "Latzina_Francisco_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43", "author": "", "orig_id": 1412949}}, {"model": "metainfo.source", "pk": 10916, "fields": {"orig_filename": "Latzko_Adolph-Andreas_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43f.", "author": "", "orig_id": 1412950}}, {"model": "metainfo.source", "pk": 10917, "fields": {"orig_filename": "Latzko_Wilhelm_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44", "author": "", "orig_id": 1412951}}, {"model": "metainfo.source", "pk": 10918, "fields": {"orig_filename": "Laube_Gustav-Carl_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44f.", "author": "", "orig_id": 1412953}}, {"model": "metainfo.source", "pk": 10919, "fields": {"orig_filename": "Laube_Heinrich_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 45f.", "author": "", "orig_id": 1412954}}, {"model": "metainfo.source", "pk": 10920, "fields": {"orig_filename": "Laube_Iduna_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46", "author": "", "orig_id": 1412955}}, {"model": "metainfo.source", "pk": 10921, "fields": {"orig_filename": "Laube_Josef_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46", "author": "", "orig_id": 1412956}}, {"model": "metainfo.source", "pk": 10922, "fields": {"orig_filename": "Laubheimer_Otto_1882_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46f.", "author": "", "orig_id": 1412957}}, {"model": "metainfo.source", "pk": 10923, "fields": {"orig_filename": "Laub_Ferdinand_1832_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44", "author": "", "orig_id": 1412952}}, {"model": "metainfo.source", "pk": 10924, "fields": {"orig_filename": "Lauche_Wilhelm_1859_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 47", "author": "", "orig_id": 1412958}}, {"model": "metainfo.source", "pk": 10925, "fields": {"orig_filename": "Lauda_Ernst_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2082311}}, {"model": "metainfo.source", "pk": 10926, "fields": {"orig_filename": "Lauda_Richard_1873_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 47f.", "author": "", "orig_id": 1412959}}, {"model": "metainfo.source", "pk": 10927, "fields": {"orig_filename": "Laudi_Vitale_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48", "author": "", "orig_id": 1412960}}, {"model": "metainfo.source", "pk": 10928, "fields": {"orig_filename": "Lauer_Joseph_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48f.", "author": "", "orig_id": 1412962}}, {"model": "metainfo.source", "pk": 10929, "fields": {"orig_filename": "Laufberger_Ferdinand-Julius-Wilhelm_1829_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49", "author": "", "orig_id": 1413031}}, {"model": "metainfo.source", "pk": 10930, "fields": {"orig_filename": "Laufenauer_Karoly_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49", "author": "", "orig_id": 1413032}}, {"model": "metainfo.source", "pk": 10931, "fields": {"orig_filename": "Lauka_Gusztav_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49f.", "author": "", "orig_id": 1413033}}, {"model": "metainfo.source", "pk": 10932, "fields": {"orig_filename": "Laurencin-Darmond_Ferdinand-Peter_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413034}}, {"model": "metainfo.source", "pk": 10933, "fields": {"orig_filename": "Laurenzi_Ludwig_1788_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413035}}, {"model": "metainfo.source", "pk": 10934, "fields": {"orig_filename": "Laurin_Franz-Xaver_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413036}}, {"model": "metainfo.source", "pk": 10935, "fields": {"orig_filename": "Laurin_Giambattista_1793_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413037}}, {"model": "metainfo.source", "pk": 10936, "fields": {"orig_filename": "Laurin_Vaclav_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413038}}, {"model": "metainfo.source", "pk": 10937, "fields": {"orig_filename": "Lauska_Franz_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51f.", "author": "", "orig_id": 1413040}}, {"model": "metainfo.source", "pk": 10938, "fields": {"orig_filename": "Laus_Heinrich_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413039}}, {"model": "metainfo.source", "pk": 10939, "fields": {"orig_filename": "Lautenburg_Sigmund_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413041}}, {"model": "metainfo.source", "pk": 10940, "fields": {"orig_filename": "Lauterer_Jakob_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413042}}, {"model": "metainfo.source", "pk": 10941, "fields": {"orig_filename": "Lauzil_Karl_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52f.", "author": "", "orig_id": 1413044}}, {"model": "metainfo.source", "pk": 10942, "fields": {"orig_filename": "Lauzi_Giovanni_1800_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413043}}, {"model": "metainfo.source", "pk": 10943, "fields": {"orig_filename": "Lavaggi_Gaspare_1849_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413045}}, {"model": "metainfo.source", "pk": 10944, "fields": {"orig_filename": "Lavotta_Jan_1764_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413047}}, {"model": "metainfo.source", "pk": 10945, "fields": {"orig_filename": "Lavric_Karel_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53f.", "author": "", "orig_id": 1413048}}, {"model": "metainfo.source", "pk": 10946, "fields": {"orig_filename": "Landriani_Giuseppe_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415316}}, {"model": "metainfo.source", "pk": 10947, "fields": {"orig_filename": "Landriani_Paolo_1757_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415317}}, {"model": "metainfo.source", "pk": 10948, "fields": {"orig_filename": "Landsberger-Freideck_Adolf_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432f.", "author": "", "orig_id": 1415318}}, {"model": "metainfo.source", "pk": 10949, "fields": {"orig_filename": "Landsteiner_Karl-Borr_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 434f.", "author": "", "orig_id": 1415389}}, {"model": "metainfo.source", "pk": 10950, "fields": {"orig_filename": "Landsteiner_Karl_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 433f.", "author": "", "orig_id": 1415319}}, {"model": "metainfo.source", "pk": 10951, "fields": {"orig_filename": "Landwehr-Pragenau_Ottokar_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 435", "author": "", "orig_id": 1415390}}, {"model": "metainfo.source", "pk": 10952, "fields": {"orig_filename": "Landy_Friedrich-Ludwig_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 435f.", "author": "", "orig_id": 1415391}}, {"model": "metainfo.source", "pk": 10953, "fields": {"orig_filename": "Laner-Orsova_Victor_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415394}}, {"model": "metainfo.source", "pk": 10954, "fields": {"orig_filename": "Laner_Albino_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415392}}, {"model": "metainfo.source", "pk": 10955, "fields": {"orig_filename": "Laner_Georg_1778_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415393}}, {"model": "metainfo.source", "pk": 10956, "fields": {"orig_filename": "Lanfranchi_Luigi_1782_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436f.", "author": "", "orig_id": 1415395}}, {"model": "metainfo.source", "pk": 10957, "fields": {"orig_filename": "Lanfranconi_Enea-Grazioso_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437", "author": "", "orig_id": 1415396}}, {"model": "metainfo.source", "pk": 10958, "fields": {"orig_filename": "Lanfrey_Anton_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437", "author": "", "orig_id": 1415397}}, {"model": "metainfo.source", "pk": 10959, "fields": {"orig_filename": "Lang-Csanakfalva_Lajos_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 445", "author": "", "orig_id": 1415488}}, {"model": "metainfo.source", "pk": 10960, "fields": {"orig_filename": "Lang-Hanstadt_Johannes-Nep_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 445f.", "author": "", "orig_id": 1415489}}, {"model": "metainfo.source", "pk": 10961, "fields": {"orig_filename": "Langauer_Franz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446", "author": "", "orig_id": 1415490}}, {"model": "metainfo.source", "pk": 10962, "fields": {"orig_filename": "Lange-Burgenkron_Emil_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413837}}, {"model": "metainfo.source", "pk": 10963, "fields": {"orig_filename": "Lange-Burgenkron_Peter-Traugott_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413838}}, {"model": "metainfo.source", "pk": 10964, "fields": {"orig_filename": "Langenau_Eduard-George-Wilhelm_1787_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413839}}, {"model": "metainfo.source", "pk": 10965, "fields": {"orig_filename": "Langenau_Ferdinand_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1f.", "author": "", "orig_id": 1413840}}, {"model": "metainfo.source", "pk": 10966, "fields": {"orig_filename": "Langenau_Friedrich-Karl-Gustav_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2", "author": "", "orig_id": 1412479}}, {"model": "metainfo.source", "pk": 10967, "fields": {"orig_filename": "Langenbacher_Ferdinand_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2", "author": "", "orig_id": 1412480}}, {"model": "metainfo.source", "pk": 10968, "fields": {"orig_filename": "Langenbacher_Johann_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2f.", "author": "", "orig_id": 1412481}}, {"model": "metainfo.source", "pk": 10969, "fields": {"orig_filename": "Langer-Edenberg_Karl_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 8", "author": "", "orig_id": 1412496}}, {"model": "metainfo.source", "pk": 10970, "fields": {"orig_filename": "Langer-Koningshoykt_Albert_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 8f.", "author": "", "orig_id": 1412497}}, {"model": "metainfo.source", "pk": 10971, "fields": {"orig_filename": "Langer-Langenrode_Hermann_1875_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412498}}, {"model": "metainfo.source", "pk": 10972, "fields": {"orig_filename": "Langer-Lannsperg_Carl-Edmund_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412499}}, {"model": "metainfo.source", "pk": 10973, "fields": {"orig_filename": "Langer_Angela_1886_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 3", "author": "", "orig_id": 1412482}}, {"model": "metainfo.source", "pk": 10974, "fields": {"orig_filename": "Langer_Anton_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 3f.", "author": "", "orig_id": 1412483}}, {"model": "metainfo.source", "pk": 10975, "fields": {"orig_filename": "Langer_Eduard_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 4", "author": "", "orig_id": 1412484}}, {"model": "metainfo.source", "pk": 10976, "fields": {"orig_filename": "Langer_Jiri_1894_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 4f.", "author": "", "orig_id": 1412485}}, {"model": "metainfo.source", "pk": 10977, "fields": {"orig_filename": "Langer_Johann_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5", "author": "", "orig_id": 1412486}}, {"model": "metainfo.source", "pk": 10978, "fields": {"orig_filename": "Langer_Johann_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5", "author": "", "orig_id": 1412487}}, {"model": "metainfo.source", "pk": 10979, "fields": {"orig_filename": "Langer_Josef-Jaroslav_1806_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6", "author": "", "orig_id": 1412489}}, {"model": "metainfo.source", "pk": 10980, "fields": {"orig_filename": "Langer_Josef_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5f.", "author": "", "orig_id": 1412488}}, {"model": "metainfo.source", "pk": 10981, "fields": {"orig_filename": "Langer_Karl_1863_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6", "author": "", "orig_id": 1412490}}, {"model": "metainfo.source", "pk": 10982, "fields": {"orig_filename": "Langer_Robert_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6f.", "author": "", "orig_id": 1412493}}, {"model": "metainfo.source", "pk": 10983, "fields": {"orig_filename": "Langer_Rudolf_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412491}}, {"model": "metainfo.source", "pk": 10984, "fields": {"orig_filename": "Langer_Siegfried_1857_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412492}}, {"model": "metainfo.source", "pk": 10985, "fields": {"orig_filename": "Langer_Theodor_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412494}}, {"model": "metainfo.source", "pk": 10986, "fields": {"orig_filename": "Langer_Theodor_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7f.", "author": "", "orig_id": 1412495}}, {"model": "metainfo.source", "pk": 10987, "fields": {"orig_filename": "Lange_Aloysia-Maria-Antonia_1758_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446", "author": "", "orig_id": 1415491}}, {"model": "metainfo.source", "pk": 10988, "fields": {"orig_filename": "Lange_Antoni_1779_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446f.", "author": "", "orig_id": 1415492}}, {"model": "metainfo.source", "pk": 10989, "fields": {"orig_filename": "Lange_Conrad_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447", "author": "", "orig_id": 1415493}}, {"model": "metainfo.source", "pk": 10990, "fields": {"orig_filename": "Lange_Fritz_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447", "author": "", "orig_id": 1415494}}, {"model": "metainfo.source", "pk": 10991, "fields": {"orig_filename": "Lange_Joseph_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447f.", "author": "", "orig_id": 1415495}}, {"model": "metainfo.source", "pk": 10992, "fields": {"orig_filename": "Lange_Otto_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415496}}, {"model": "metainfo.source", "pk": 10993, "fields": {"orig_filename": "Lange_Paul_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415497}}, {"model": "metainfo.source", "pk": 10994, "fields": {"orig_filename": "Lange_Wilhelm_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415498}}, {"model": "metainfo.source", "pk": 10995, "fields": {"orig_filename": "Langhoffer_August_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9f.", "author": "", "orig_id": 1412573}}, {"model": "metainfo.source", "pk": 10996, "fields": {"orig_filename": "Langhy_Istvan_1796_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10", "author": "", "orig_id": 1412574}}, {"model": "metainfo.source", "pk": 10997, "fields": {"orig_filename": "Langh_Boldizsar_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412572}}, {"model": "metainfo.source", "pk": 10998, "fields": {"orig_filename": "Langkammer_Karl_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10", "author": "", "orig_id": 1412575}}, {"model": "metainfo.source", "pk": 10999, "fields": {"orig_filename": "Langkammer_Marianna-Margaretha_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10f.", "author": "", "orig_id": 1412576}}, {"model": "metainfo.source", "pk": 11000, "fields": {"orig_filename": "Langl_Joseph_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 11", "author": "", "orig_id": 1412577}}, {"model": "metainfo.source", "pk": 11001, "fields": {"orig_filename": "Langmann_Philipp_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 11f.", "author": "", "orig_id": 1412578}}, {"model": "metainfo.source", "pk": 11002, "fields": {"orig_filename": "Langner_Karl_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412579}}, {"model": "metainfo.source", "pk": 11003, "fields": {"orig_filename": "Langthaler_Franz_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412580}}, {"model": "metainfo.source", "pk": 11004, "fields": {"orig_filename": "Langthaler_Johann-Bapt_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412581}}, {"model": "metainfo.source", "pk": 11005, "fields": {"orig_filename": "Langthaler_Matthias_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412582}}, {"model": "metainfo.source", "pk": 11006, "fields": {"orig_filename": "Langus_Henrika_1836_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412583}}, {"model": "metainfo.source", "pk": 11007, "fields": {"orig_filename": "Langus_Matej_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412584}}, {"model": "metainfo.source", "pk": 11008, "fields": {"orig_filename": "Langweil_Antonin_1791_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412585}}, {"model": "metainfo.source", "pk": 11009, "fields": {"orig_filename": "Lang_Adam-Janos_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437f.", "author": "", "orig_id": 1415398}}, {"model": "metainfo.source", "pk": 11010, "fields": {"orig_filename": "Lang_Adolf-Ferenc_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 438f.", "author": "", "orig_id": 1415400}}, {"model": "metainfo.source", "pk": 11011, "fields": {"orig_filename": "Lang_Adolf_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 438", "author": "", "orig_id": 1415399}}, {"model": "metainfo.source", "pk": 11012, "fields": {"orig_filename": "Lang_Alois_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 439", "author": "", "orig_id": 1415401}}, {"model": "metainfo.source", "pk": 11013, "fields": {"orig_filename": "Lang_Eduard_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 439f.", "author": "", "orig_id": 1415402}}, {"model": "metainfo.source", "pk": 11014, "fields": {"orig_filename": "Lang_Ella_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415403}}, {"model": "metainfo.source", "pk": 11015, "fields": {"orig_filename": "Lang_Franz-Xaver_1770_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415405}}, {"model": "metainfo.source", "pk": 11016, "fields": {"orig_filename": "Lang_Franz_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415404}}, {"model": "metainfo.source", "pk": 11017, "fields": {"orig_filename": "Lang_Gustav-Johann_1838_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415406}}, {"model": "metainfo.source", "pk": 11018, "fields": {"orig_filename": "Lang_Heinrich_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440f.", "author": "", "orig_id": 1415407}}, {"model": "metainfo.source", "pk": 11019, "fields": {"orig_filename": "Lang_Ignaz-Gabriel_1768_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415408}}, {"model": "metainfo.source", "pk": 11020, "fields": {"orig_filename": "Lang_Johann-Bapt-Fortunat_1775_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415411}}, {"model": "metainfo.source", "pk": 11021, "fields": {"orig_filename": "Lang_Johann-Bapt_1736_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415409}}, {"model": "metainfo.source", "pk": 11022, "fields": {"orig_filename": "Lang_Johann-Bapt_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415410}}, {"model": "metainfo.source", "pk": 11023, "fields": {"orig_filename": "Lang_Josef-Nikolaus_1776_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415412}}, {"model": "metainfo.source", "pk": 11024, "fields": {"orig_filename": "Lang_Josip_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415413}}, {"model": "metainfo.source", "pk": 11025, "fields": {"orig_filename": "Lang_Karl-Maria_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442f.", "author": "", "orig_id": 1415414}}, {"model": "metainfo.source", "pk": 11026, "fields": {"orig_filename": "Lang_Leonhard_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 443", "author": "", "orig_id": 1415485}}, {"model": "metainfo.source", "pk": 11027, "fields": {"orig_filename": "Lang_Marie_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 443f.", "author": "", "orig_id": 1415486}}, {"model": "metainfo.source", "pk": 11028, "fields": {"orig_filename": "Lang_Victor_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 444f.", "author": "", "orig_id": 1415487}}, {"model": "metainfo.source", "pk": 11029, "fields": {"orig_filename": "Lanius_Frida_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13f.", "author": "", "orig_id": 1412586}}, {"model": "metainfo.source", "pk": 11030, "fields": {"orig_filename": "Lanjus-Wellenburg_Friedrich_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14", "author": "", "orig_id": 1412587}}, {"model": "metainfo.source", "pk": 11031, "fields": {"orig_filename": "Lanjus-Wellenburg_Karl_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14", "author": "", "orig_id": 1412588}}, {"model": "metainfo.source", "pk": 11032, "fields": {"orig_filename": "Lanna_Adalbert_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14f.", "author": "", "orig_id": 1412589}}, {"model": "metainfo.source", "pk": 11033, "fields": {"orig_filename": "Lanner_Alois_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 15", "author": "", "orig_id": 1412590}}, {"model": "metainfo.source", "pk": 11034, "fields": {"orig_filename": "Lanner_Joseph_1801_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 15f.", "author": "", "orig_id": 1412591}}, {"model": "metainfo.source", "pk": 11035, "fields": {"orig_filename": "Lanner_Katharina_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 16", "author": "", "orig_id": 1412592}}, {"model": "metainfo.source", "pk": 11036, "fields": {"orig_filename": "Lanner_Thaddaeus_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 16f.", "author": "", "orig_id": 1412593}}, {"model": "metainfo.source", "pk": 11037, "fields": {"orig_filename": "Lannoy_Heinrich-Eduard-Josef_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 17", "author": "", "orig_id": 1412659}}, {"model": "metainfo.source", "pk": 11038, "fields": {"orig_filename": "Lanstjak_Pavel-Ferdinand_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 17f.", "author": "", "orig_id": 1412660}}, {"model": "metainfo.source", "pk": 11039, "fields": {"orig_filename": "Lantana_Giovanni-Battista_1793_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412661}}, {"model": "metainfo.source", "pk": 11040, "fields": {"orig_filename": "Lantner_Ferdinand_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412662}}, {"model": "metainfo.source", "pk": 11041, "fields": {"orig_filename": "Lantschner_Anton_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412663}}, {"model": "metainfo.source", "pk": 11042, "fields": {"orig_filename": "Lantschner_Georg_1772_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18f.", "author": "", "orig_id": 1412664}}, {"model": "metainfo.source", "pk": 11043, "fields": {"orig_filename": "Lantschner_Ludwig_1826_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412665}}, {"model": "metainfo.source", "pk": 11044, "fields": {"orig_filename": "Lanyi_Bertalan_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20", "author": "", "orig_id": 1412669}}, {"model": "metainfo.source", "pk": 11045, "fields": {"orig_filename": "Lanyi_Karol_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20", "author": "", "orig_id": 1412670}}, {"model": "metainfo.source", "pk": 11046, "fields": {"orig_filename": "Lanyi_Samuel_1791_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20f.", "author": "", "orig_id": 1412671}}, {"model": "metainfo.source", "pk": 11047, "fields": {"orig_filename": "Lany_Emil-Pavel_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412666}}, {"model": "metainfo.source", "pk": 11048, "fields": {"orig_filename": "Laemel_Simon_1766_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416396}}, {"model": "metainfo.source", "pk": 11049, "fields": {"orig_filename": "Laemmermayr_Ludwig_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401f.", "author": "", "orig_id": 1416397}}, {"model": "metainfo.source", "pk": 11050, "fields": {"orig_filename": "Lafar_Franz_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402", "author": "", "orig_id": 1416398}}, {"model": "metainfo.source", "pk": 11051, "fields": {"orig_filename": "Lafite_Carl_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402", "author": "", "orig_id": 1416399}}, {"model": "metainfo.source", "pk": 11052, "fields": {"orig_filename": "Lafite_Carl_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402f.", "author": "", "orig_id": 1416400}}, {"model": "metainfo.source", "pk": 11053, "fields": {"orig_filename": "Lafite_Ernst_1826_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403", "author": "", "orig_id": 1416401}}, {"model": "metainfo.source", "pk": 11054, "fields": {"orig_filename": "Laginja_Matko_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403", "author": "", "orig_id": 1416402}}, {"model": "metainfo.source", "pk": 11055, "fields": {"orig_filename": "Lahmer_Robert-Johann_1846_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416404}}, {"model": "metainfo.source", "pk": 11056, "fields": {"orig_filename": "Lahner_Gyoergy_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416475}}, {"model": "metainfo.source", "pk": 11057, "fields": {"orig_filename": "Lahner_Johann-Georg_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416476}}, {"model": "metainfo.source", "pk": 11058, "fields": {"orig_filename": "Lahner_Karl_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416477}}, {"model": "metainfo.source", "pk": 11059, "fields": {"orig_filename": "Lah_Ivan_1881_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403f.", "author": "", "orig_id": 1416403}}, {"model": "metainfo.source", "pk": 11060, "fields": {"orig_filename": "Laichter_Jan_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404f.", "author": "", "orig_id": 1416478}}, {"model": "metainfo.source", "pk": 11061, "fields": {"orig_filename": "Laichter_Josef_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405", "author": "", "orig_id": 1419389}}, {"model": "metainfo.source", "pk": 11062, "fields": {"orig_filename": "Laimegger_Josef_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405", "author": "", "orig_id": 1416479}}, {"model": "metainfo.source", "pk": 11063, "fields": {"orig_filename": "Laimer_Josef_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405f.", "author": "", "orig_id": 1416480}}, {"model": "metainfo.source", "pk": 11064, "fields": {"orig_filename": "Lainer_Alexander_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406", "author": "", "orig_id": 1416481}}, {"model": "metainfo.source", "pk": 11065, "fields": {"orig_filename": "Lair_Franz-Xaver_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406", "author": "", "orig_id": 1416482}}, {"model": "metainfo.source", "pk": 11066, "fields": {"orig_filename": "Laitner_Paul_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406f.", "author": "", "orig_id": 1416483}}, {"model": "metainfo.source", "pk": 11067, "fields": {"orig_filename": "Laizner_Josef_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416484}}, {"model": "metainfo.source", "pk": 11068, "fields": {"orig_filename": "Lakatos_Karoly_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416485}}, {"model": "metainfo.source", "pk": 11069, "fields": {"orig_filename": "Lakatos_Sandor_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416486}}, {"model": "metainfo.source", "pk": 11070, "fields": {"orig_filename": "Lakits_Ferenc_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416487}}, {"model": "metainfo.source", "pk": 11071, "fields": {"orig_filename": "Lakits_Juraj-Zigmund_1739_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407f.", "author": "", "orig_id": 1416488}}, {"model": "metainfo.source", "pk": 11072, "fields": {"orig_filename": "Laky_Janos-Demeter_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416489}}, {"model": "metainfo.source", "pk": 11073, "fields": {"orig_filename": "Lalic_Nikola_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416490}}, {"model": "metainfo.source", "pk": 11074, "fields": {"orig_filename": "Lallemand_Friedrich_1812_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416491}}, {"model": "metainfo.source", "pk": 11075, "fields": {"orig_filename": "Lallemand_Marcus-Conrad_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408f.", "author": "", "orig_id": 1416492}}, {"model": "metainfo.source", "pk": 11076, "fields": {"orig_filename": "Lallemand_Siegmund_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409", "author": "", "orig_id": 1416493}}, {"model": "metainfo.source", "pk": 11077, "fields": {"orig_filename": "Lamatsch-Warnemuende_Paul_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410", "author": "", "orig_id": 1416497}}, {"model": "metainfo.source", "pk": 11078, "fields": {"orig_filename": "Lamatsch_Johann_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410", "author": "", "orig_id": 1416496}}, {"model": "metainfo.source", "pk": 11079, "fields": {"orig_filename": "Lama_Matthias_1780_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409f.", "author": "", "orig_id": 1416495}}, {"model": "metainfo.source", "pk": 11080, "fields": {"orig_filename": "Lambel_Hans_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410f.", "author": "", "orig_id": 1416498}}, {"model": "metainfo.source", "pk": 11081, "fields": {"orig_filename": "Lamberg-Sprinzenstein_Anton-Franz-De-Paula_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412", "author": "", "orig_id": 1416569}}, {"model": "metainfo.source", "pk": 11082, "fields": {"orig_filename": "Lamberg_Carl-Raimund_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416499}}, {"model": "metainfo.source", "pk": 11083, "fields": {"orig_filename": "Lamberg_Franz-Emerich_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416567}}, {"model": "metainfo.source", "pk": 11084, "fields": {"orig_filename": "Lamberg_Hugo-Raimund_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416568}}, {"model": "metainfo.source", "pk": 11085, "fields": {"orig_filename": "Lamberti_Camille-Joseph_1747_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412f.", "author": "", "orig_id": 1416571}}, {"model": "metainfo.source", "pk": 11086, "fields": {"orig_filename": "Lamberti_Giacomo_1762_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413", "author": "", "orig_id": 1416572}}, {"model": "metainfo.source", "pk": 11087, "fields": {"orig_filename": "Lamberti_Luigi_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413", "author": "", "orig_id": 1416573}}, {"model": "metainfo.source", "pk": 11088, "fields": {"orig_filename": "Lambertz_Maximilian_1882_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1459440}}, {"model": "metainfo.source", "pk": 11089, "fields": {"orig_filename": "Lambert_Adam_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412", "author": "", "orig_id": 1416570}}, {"model": "metainfo.source", "pk": 11090, "fields": {"orig_filename": "Lambl_Johann-Bapt_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413f.", "author": "", "orig_id": 1416574}}, {"model": "metainfo.source", "pk": 11091, "fields": {"orig_filename": "Lambl_Karl_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416575}}, {"model": "metainfo.source", "pk": 11092, "fields": {"orig_filename": "Lambl_Vilem-Dusan_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416576}}, {"model": "metainfo.source", "pk": 11093, "fields": {"orig_filename": "Lamborg_Otto_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416577}}, {"model": "metainfo.source", "pk": 11094, "fields": {"orig_filename": "Lambrecht_Rudolf_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416578}}, {"model": "metainfo.source", "pk": 11095, "fields": {"orig_filename": "Lamezan-Salins_Eduard_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414f.", "author": "", "orig_id": 1416579}}, {"model": "metainfo.source", "pk": 11096, "fields": {"orig_filename": "Lamezan-Salins_Robert_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 415", "author": "", "orig_id": 1416580}}, {"model": "metainfo.source", "pk": 11097, "fields": {"orig_filename": "Lammasch_Heinrich_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 415f.", "author": "", "orig_id": 1416581}}, {"model": "metainfo.source", "pk": 11098, "fields": {"orig_filename": "Lammer_Eugen-Guido_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 416f.", "author": "", "orig_id": 1416583}}, {"model": "metainfo.source", "pk": 11099, "fields": {"orig_filename": "Lamotte-Frintropp_Franz_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 417", "author": "", "orig_id": 1416584}}, {"model": "metainfo.source", "pk": 11100, "fields": {"orig_filename": "Lampa_Anton_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 417f.", "author": "", "orig_id": 1416585}}, {"model": "metainfo.source", "pk": 11101, "fields": {"orig_filename": "Lampel_Josef_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418f.", "author": "", "orig_id": 1416587}}, {"model": "metainfo.source", "pk": 11102, "fields": {"orig_filename": "Lampertico_Fedele_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419", "author": "", "orig_id": 1416652}}, {"model": "metainfo.source", "pk": 11103, "fields": {"orig_filename": "Lampert_Carl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419", "author": "", "orig_id": 1416651}}, {"model": "metainfo.source", "pk": 11104, "fields": {"orig_filename": "Lampe_Evgen_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418", "author": "", "orig_id": 1416582}}, {"model": "metainfo.source", "pk": 11105, "fields": {"orig_filename": "Lampe_Francisek_1859_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418", "author": "", "orig_id": 1416586}}, {"model": "metainfo.source", "pk": 11106, "fields": {"orig_filename": "Lampi_Alexander_1810_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419f.", "author": "", "orig_id": 1416653}}, {"model": "metainfo.source", "pk": 11107, "fields": {"orig_filename": "Lampi_Franz-Ferdinand_1782_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 420", "author": "", "orig_id": 1416654}}, {"model": "metainfo.source", "pk": 11108, "fields": {"orig_filename": "Lampi_Johann-Bapt-Matthias_1807_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416657}}, {"model": "metainfo.source", "pk": 11109, "fields": {"orig_filename": "Lampi_Johann-Bapt_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 420", "author": "", "orig_id": 1416655}}, {"model": "metainfo.source", "pk": 11110, "fields": {"orig_filename": "Lampi_Johann-Bapt_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416656}}, {"model": "metainfo.source", "pk": 11111, "fields": {"orig_filename": "Lamprecht_Johann-Ev_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416658}}, {"model": "metainfo.source", "pk": 11112, "fields": {"orig_filename": "Lamprecht_Lukas_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421f.", "author": "", "orig_id": 1416659}}, {"model": "metainfo.source", "pk": 11113, "fields": {"orig_filename": "Lamprecht_Rudolf_1781_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416660}}, {"model": "metainfo.source", "pk": 11114, "fields": {"orig_filename": "Lampugnani_Achille_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416661}}, {"model": "metainfo.source", "pk": 11115, "fields": {"orig_filename": "Lampugnani_Alessandro__1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416662}}, {"model": "metainfo.source", "pk": 11116, "fields": {"orig_filename": "Lam_Jan-Pawel-Ferdynand_1838_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409", "author": "", "orig_id": 1416494}}, {"model": "metainfo.source", "pk": 11117, "fields": {"orig_filename": "Lancerotto_Egisto_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416663}}, {"model": "metainfo.source", "pk": 11118, "fields": {"orig_filename": "Lancetti_Vincenzo_1767_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422f.", "author": "", "orig_id": 1416664}}, {"model": "metainfo.source", "pk": 11119, "fields": {"orig_filename": "Lanckoronski-Brzezie_Karl_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423", "author": "", "orig_id": 1416665}}, {"model": "metainfo.source", "pk": 11120, "fields": {"orig_filename": "Lanczy_Gyula_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423", "author": "", "orig_id": 1416666}}, {"model": "metainfo.source", "pk": 11121, "fields": {"orig_filename": "Lanczy_Ilka_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423f.", "author": "", "orig_id": 1416667}}, {"model": "metainfo.source", "pk": 11122, "fields": {"orig_filename": "Lanczy_Leo_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416668}}, {"model": "metainfo.source", "pk": 11123, "fields": {"orig_filename": "Landauer_Robert_1908_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427", "author": "", "orig_id": 1415300}}, {"model": "metainfo.source", "pk": 11124, "fields": {"orig_filename": "Landauer_Stephan_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427f.", "author": "", "orig_id": 1415301}}, {"model": "metainfo.source", "pk": 11125, "fields": {"orig_filename": "Landau_Alajos_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416669}}, {"model": "metainfo.source", "pk": 11126, "fields": {"orig_filename": "Landau_Alfred_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416670}}, {"model": "metainfo.source", "pk": 11127, "fields": {"orig_filename": "Landau_Hermann-Joseph_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424f.", "author": "", "orig_id": 1416671}}, {"model": "metainfo.source", "pk": 11128, "fields": {"orig_filename": "Landau_Israel_1758_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416672}}, {"model": "metainfo.source", "pk": 11129, "fields": {"orig_filename": "Landau_Jehuda-Leib_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416673}}, {"model": "metainfo.source", "pk": 11130, "fields": {"orig_filename": "Landau_Jehuda-Menachem_1861_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416674}}, {"model": "metainfo.source", "pk": 11131, "fields": {"orig_filename": "Landau_Leopold_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415296}}, {"model": "metainfo.source", "pk": 11132, "fields": {"orig_filename": "Landau_Leo_1877_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425f.", "author": "", "orig_id": 1416675}}, {"model": "metainfo.source", "pk": 11133, "fields": {"orig_filename": "Landau_Leo_1878_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415295}}, {"model": "metainfo.source", "pk": 11134, "fields": {"orig_filename": "Landau_Leo_1891_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1459628}}, {"model": "metainfo.source", "pk": 11135, "fields": {"orig_filename": "Landau_Markus_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415297}}, {"model": "metainfo.source", "pk": 11136, "fields": {"orig_filename": "Landau_Max_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426f.", "author": "", "orig_id": 1415298}}, {"model": "metainfo.source", "pk": 11137, "fields": {"orig_filename": "Landau_Max_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427", "author": "", "orig_id": 1415299}}, {"model": "metainfo.source", "pk": 11138, "fields": {"orig_filename": "Landerer-Fueskut_Lajos_1800_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415302}}, {"model": "metainfo.source", "pk": 11139, "fields": {"orig_filename": "Landesberger_Adolf_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415304}}, {"model": "metainfo.source", "pk": 11140, "fields": {"orig_filename": "Landesberg_Alexander_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415303}}, {"model": "metainfo.source", "pk": 11141, "fields": {"orig_filename": "Landesmann_Heinrich_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428f.", "author": "", "orig_id": 1415305}}, {"model": "metainfo.source", "pk": 11142, "fields": {"orig_filename": "Landfras_Alois-Josef_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 429f.", "author": "", "orig_id": 1415306}}, {"model": "metainfo.source", "pk": 11143, "fields": {"orig_filename": "Landi-Pindemonte_Isotta_1750_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430", "author": "", "orig_id": 1415307}}, {"model": "metainfo.source", "pk": 11144, "fields": {"orig_filename": "Landler_Jenoe_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430", "author": "", "orig_id": 1415308}}, {"model": "metainfo.source", "pk": 11145, "fields": {"orig_filename": "Landmann_Julius_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430f.", "author": "", "orig_id": 1415309}}, {"model": "metainfo.source", "pk": 11146, "fields": {"orig_filename": "Landner_Johann-Bapt_1780_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415310}}, {"model": "metainfo.source", "pk": 11147, "fields": {"orig_filename": "Landner_Josef_1883_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415311}}, {"model": "metainfo.source", "pk": 11148, "fields": {"orig_filename": "Landriani_Alessandro_1856_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415312}}, {"model": "metainfo.source", "pk": 11149, "fields": {"orig_filename": "Landriani_Carlo_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431f.", "author": "", "orig_id": 1415313}}, {"model": "metainfo.source", "pk": 11150, "fields": {"orig_filename": "Landriani_Carlo_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415314}}, {"model": "metainfo.source", "pk": 11151, "fields": {"orig_filename": "Landriani_Gaetano_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415315}}, {"model": "metainfo.source", "pk": 11152, "fields": {"orig_filename": "Kurzbauer_Josefine_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416021}}, {"model": "metainfo.source", "pk": 11153, "fields": {"orig_filename": "Kurzova_Ruzena_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416022}}, {"model": "metainfo.source", "pk": 11154, "fields": {"orig_filename": "Kurzweil_Max_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369f.", "author": "", "orig_id": 1416023}}, {"model": "metainfo.source", "pk": 11155, "fields": {"orig_filename": "Kurzwernhart_Robert_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370", "author": "", "orig_id": 1416024}}, {"model": "metainfo.source", "pk": 11156, "fields": {"orig_filename": "Kurz_Anton_1799_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 366", "author": "", "orig_id": 1415942}}, {"model": "metainfo.source", "pk": 11157, "fields": {"orig_filename": "Kurz_Franz_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 366", "author": "", "orig_id": 1415943}}, {"model": "metainfo.source", "pk": 11158, "fields": {"orig_filename": "Kurz_Karl-Friedrich_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367", "author": "", "orig_id": 1415944}}, {"model": "metainfo.source", "pk": 11159, "fields": {"orig_filename": "Kurz_Selma_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367", "author": "", "orig_id": 1416014}}, {"model": "metainfo.source", "pk": 11160, "fields": {"orig_filename": "Kurz_Vilem_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367f.", "author": "", "orig_id": 1416015}}, {"model": "metainfo.source", "pk": 11161, "fields": {"orig_filename": "Kusar_Marcel_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370", "author": "", "orig_id": 1416025}}, {"model": "metainfo.source", "pk": 11162, "fields": {"orig_filename": "Kuschar_Rudolf_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370f.", "author": "", "orig_id": 1416026}}, {"model": "metainfo.source", "pk": 11163, "fields": {"orig_filename": "Kusdas_Rudolf_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371", "author": "", "orig_id": 1416027}}, {"model": "metainfo.source", "pk": 11164, "fields": {"orig_filename": "Kusej_Radoslav_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371", "author": "", "orig_id": 1416028}}, {"model": "metainfo.source", "pk": 11165, "fields": {"orig_filename": "Kuslan_Dragojlo_1817_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371f.", "author": "", "orig_id": 1416029}}, {"model": "metainfo.source", "pk": 11166, "fields": {"orig_filename": "Kusmanek-Burgneustaedten_Hermann_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372", "author": "", "orig_id": 1416030}}, {"model": "metainfo.source", "pk": 11167, "fields": {"orig_filename": "Kuster_Josef_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372", "author": "", "orig_id": 1416031}}, {"model": "metainfo.source", "pk": 11168, "fields": {"orig_filename": "Kusy-Dubrav_Emanuel_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373", "author": "", "orig_id": 1416033}}, {"model": "metainfo.source", "pk": 11169, "fields": {"orig_filename": "Kusy_Wolfgang_1842_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372f.", "author": "", "orig_id": 1416032}}, {"model": "metainfo.source", "pk": 11170, "fields": {"orig_filename": "Kuthy_Lajos_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373", "author": "", "orig_id": 1416034}}, {"model": "metainfo.source", "pk": 11171, "fields": {"orig_filename": "Kutiak_August-Ignaz_1881_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373f.", "author": "", "orig_id": 1416035}}, {"model": "metainfo.source", "pk": 11172, "fields": {"orig_filename": "Kutrzeba_Stanislaw_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374", "author": "", "orig_id": 1416036}}, {"model": "metainfo.source", "pk": 11173, "fields": {"orig_filename": "Kutscha-Lissberg_Ida_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374", "author": "", "orig_id": 1416037}}, {"model": "metainfo.source", "pk": 11174, "fields": {"orig_filename": "Kutschera-Woborsky_Oswald_1887_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 376", "author": "", "orig_id": 1416114}}, {"model": "metainfo.source", "pk": 11175, "fields": {"orig_filename": "Kutschera_Fritz_1883_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374f.", "author": "", "orig_id": 1416108}}, {"model": "metainfo.source", "pk": 11176, "fields": {"orig_filename": "Kutschera_Hugo_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416109}}, {"model": "metainfo.source", "pk": 11177, "fields": {"orig_filename": "Kutschera_Johann-Nep_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416110}}, {"model": "metainfo.source", "pk": 11178, "fields": {"orig_filename": "Kutschera_Richard_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416111}}, {"model": "metainfo.source", "pk": 11179, "fields": {"orig_filename": "Kutschera_Tilly_1890_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416112}}, {"model": "metainfo.source", "pk": 11180, "fields": {"orig_filename": "Kutschera_Viktor_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375f.", "author": "", "orig_id": 1416113}}, {"model": "metainfo.source", "pk": 11181, "fields": {"orig_filename": "Kutschker_Johann-Rudolf_1810_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 376f.", "author": "", "orig_id": 1416115}}, {"model": "metainfo.source", "pk": 11182, "fields": {"orig_filename": "Kuttnar_Franz-Xaver_1793_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416116}}, {"model": "metainfo.source", "pk": 11183, "fields": {"orig_filename": "Kuun-Osdola_Geza_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416117}}, {"model": "metainfo.source", "pk": 11184, "fields": {"orig_filename": "Kuun-Osdola_Kocsard_1803_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416118}}, {"model": "metainfo.source", "pk": 11185, "fields": {"orig_filename": "Kuwasseg_Josef_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377f.", "author": "", "orig_id": 1416119}}, {"model": "metainfo.source", "pk": 11186, "fields": {"orig_filename": "Kuwasseg_Karl-Josef_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378", "author": "", "orig_id": 1416120}}, {"model": "metainfo.source", "pk": 11187, "fields": {"orig_filename": "Kuwasseg_Leopold_1804_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378", "author": "", "orig_id": 1416121}}, {"model": "metainfo.source", "pk": 11188, "fields": {"orig_filename": "Kux_Johann_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378f.", "author": "", "orig_id": 1416122}}, {"model": "metainfo.source", "pk": 11189, "fields": {"orig_filename": "Kuzel_Hans_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379", "author": "", "orig_id": 1416123}}, {"model": "metainfo.source", "pk": 11190, "fields": {"orig_filename": "Kuzmanic_Ante_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379f.", "author": "", "orig_id": 1416125}}, {"model": "metainfo.source", "pk": 11191, "fields": {"orig_filename": "Kuzmanovic_Adalbert_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380", "author": "", "orig_id": 1416126}}, {"model": "metainfo.source", "pk": 11192, "fields": {"orig_filename": "Kuzmany_Karol_1806_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380", "author": "", "orig_id": 1419388}}, {"model": "metainfo.source", "pk": 11193, "fields": {"orig_filename": "Kuzma_Bohumil_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379", "author": "", "orig_id": 1416124}}, {"model": "metainfo.source", "pk": 11194, "fields": {"orig_filename": "Kuzmik_Pal_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380f.", "author": "", "orig_id": 1416127}}, {"model": "metainfo.source", "pk": 11195, "fields": {"orig_filename": "Kuzsinszky_Balint_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416128}}, {"model": "metainfo.source", "pk": 11196, "fields": {"orig_filename": "Kvacala_Jan_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416129}}, {"model": "metainfo.source", "pk": 11197, "fields": {"orig_filename": "Kvapil_Frantisek_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416198}}, {"model": "metainfo.source", "pk": 11198, "fields": {"orig_filename": "Kvapil_Jaroslav_1868_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381f.", "author": "", "orig_id": 1416199}}, {"model": "metainfo.source", "pk": 11199, "fields": {"orig_filename": "Kvassay_Jenoe_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 382f.", "author": "", "orig_id": 1416200}}, {"model": "metainfo.source", "pk": 11200, "fields": {"orig_filename": "Kvaternik_Eugen_1825_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 383", "author": "", "orig_id": 1416201}}, {"model": "metainfo.source", "pk": 11201, "fields": {"orig_filename": "Kvaternik_Slavko_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 383f.", "author": "", "orig_id": 1416202}}, {"model": "metainfo.source", "pk": 11202, "fields": {"orig_filename": "Kveder_Zofka_1878_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 384", "author": "", "orig_id": 1416203}}, {"model": "metainfo.source", "pk": 11203, "fields": {"orig_filename": "Kvet_Frantisek-Bolemir_1825_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 384", "author": "", "orig_id": 1416204}}, {"model": "metainfo.source", "pk": 11204, "fields": {"orig_filename": "Kvicala_Jan_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385", "author": "", "orig_id": 1416205}}, {"model": "metainfo.source", "pk": 11205, "fields": {"orig_filename": "Kwapil_Johann_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385", "author": "", "orig_id": 1416206}}, {"model": "metainfo.source", "pk": 11206, "fields": {"orig_filename": "Kwaysser_Marie_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385f.", "author": "", "orig_id": 1416207}}, {"model": "metainfo.source", "pk": 11207, "fields": {"orig_filename": "Kwietniewski_Kazimierz_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416208}}, {"model": "metainfo.source", "pk": 11208, "fields": {"orig_filename": "Kwisda_Adolf_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416209}}, {"model": "metainfo.source", "pk": 11209, "fields": {"orig_filename": "Kwisda_Ferdinand_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416210}}, {"model": "metainfo.source", "pk": 11210, "fields": {"orig_filename": "Kwizda-Hochstern_Franz-Johann_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386f.", "author": "", "orig_id": 1416211}}, {"model": "metainfo.source", "pk": 11211, "fields": {"orig_filename": "Kypta_Johann_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 387", "author": "", "orig_id": 1416212}}, {"model": "metainfo.source", "pk": 11212, "fields": {"orig_filename": "Kyrle_Georg_1887_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 387f.", "author": "", "orig_id": 1416213}}, {"model": "metainfo.source", "pk": 11213, "fields": {"orig_filename": "Kyrle_Josef_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 388", "author": "", "orig_id": 1416214}}, {"model": "metainfo.source", "pk": 11214, "fields": {"orig_filename": "Kyselak_Joseph_1799_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389", "author": "", "orig_id": 1416216}}, {"model": "metainfo.source", "pk": 11215, "fields": {"orig_filename": "Kysela_Frantisek_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 388f.", "author": "", "orig_id": 1416215}}, {"model": "metainfo.source", "pk": 11216, "fields": {"orig_filename": "Laaba-Rosenfeld_Menrad_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389", "author": "", "orig_id": 1416217}}, {"model": "metainfo.source", "pk": 11217, "fields": {"orig_filename": "Laban_Ferdinand_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389f.", "author": "", "orig_id": 1416218}}, {"model": "metainfo.source", "pk": 11218, "fields": {"orig_filename": "Labitzky_August_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 390", "author": "", "orig_id": 1416219}}, {"model": "metainfo.source", "pk": 11219, "fields": {"orig_filename": "Labitzky_Frantisek-Josef_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 390f.", "author": "", "orig_id": 1416287}}, {"model": "metainfo.source", "pk": 11220, "fields": {"orig_filename": "Labler_Ludvik_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416288}}, {"model": "metainfo.source", "pk": 11221, "fields": {"orig_filename": "Labler_Wladimir_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416289}}, {"model": "metainfo.source", "pk": 11222, "fields": {"orig_filename": "Laborfalvy_Roza_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391f.", "author": "", "orig_id": 1416291}}, {"model": "metainfo.source", "pk": 11223, "fields": {"orig_filename": "Labor_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416290}}, {"model": "metainfo.source", "pk": 11224, "fields": {"orig_filename": "Labus_Carlo_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416292}}, {"model": "metainfo.source", "pk": 11225, "fields": {"orig_filename": "Labus_Giovanni-Antonio_1806_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416294}}, {"model": "metainfo.source", "pk": 11226, "fields": {"orig_filename": "Labus_Giovanni_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416293}}, {"model": "metainfo.source", "pk": 11227, "fields": {"orig_filename": "Laccataris_Demeter_1798_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392f.", "author": "", "orig_id": 1416295}}, {"model": "metainfo.source", "pk": 11228, "fields": {"orig_filename": "Lacher_Karl_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393", "author": "", "orig_id": 1416297}}, {"model": "metainfo.source", "pk": 11229, "fields": {"orig_filename": "Lachmann_Friedrich_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393f.", "author": "", "orig_id": 1416298}}, {"model": "metainfo.source", "pk": 11230, "fields": {"orig_filename": "Lachmayr_Johann_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394", "author": "", "orig_id": 1416299}}, {"model": "metainfo.source", "pk": 11231, "fields": {"orig_filename": "Lachnith_Ludwig-Wenzel_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394", "author": "", "orig_id": 1416300}}, {"model": "metainfo.source", "pk": 11232, "fields": {"orig_filename": "Lachowicz_Bronislaw_1857_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394f.", "author": "", "orig_id": 1416301}}, {"model": "metainfo.source", "pk": 11233, "fields": {"orig_filename": "Lach_Friedrich_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393", "author": "", "orig_id": 1416296}}, {"model": "metainfo.source", "pk": 11234, "fields": {"orig_filename": "Lacina_Josef_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416302}}, {"model": "metainfo.source", "pk": 11235, "fields": {"orig_filename": "Lackner_Hans_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416304}}, {"model": "metainfo.source", "pk": 11236, "fields": {"orig_filename": "Lackner_Johann_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395f.", "author": "", "orig_id": 1416305}}, {"model": "metainfo.source", "pk": 11237, "fields": {"orig_filename": "Lack_Stanislaw_1876_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416303}}, {"model": "metainfo.source", "pk": 11238, "fields": {"orig_filename": "Laczai-Szabo_Jozsef_1764_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396", "author": "", "orig_id": 1416307}}, {"model": "metainfo.source", "pk": 11239, "fields": {"orig_filename": "Laczko_Dezsoe_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396", "author": "", "orig_id": 1416308}}, {"model": "metainfo.source", "pk": 11240, "fields": {"orig_filename": "Ladanyi_Gedeon_1824_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396f.", "author": "", "orig_id": 1416310}}, {"model": "metainfo.source", "pk": 11241, "fields": {"orig_filename": "Ladecky_Jan_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397", "author": "", "orig_id": 1416381}}, {"model": "metainfo.source", "pk": 11242, "fields": {"orig_filename": "Ladinig_Martin_1852_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397", "author": "", "orig_id": 1416382}}, {"model": "metainfo.source", "pk": 11243, "fields": {"orig_filename": "Ladnowski_Aleksander_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397f.", "author": "", "orig_id": 1416383}}, {"model": "metainfo.source", "pk": 11244, "fields": {"orig_filename": "Ladstaetter_Peter_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 398", "author": "", "orig_id": 1416384}}, {"model": "metainfo.source", "pk": 11245, "fields": {"orig_filename": "Ladstaetter_Peter_1816_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 398f.", "author": "", "orig_id": 1416385}}, {"model": "metainfo.source", "pk": 11246, "fields": {"orig_filename": "Ladurner_Adolf_1798_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416386}}, {"model": "metainfo.source", "pk": 11247, "fields": {"orig_filename": "Ladurner_Alois_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416387}}, {"model": "metainfo.source", "pk": 11248, "fields": {"orig_filename": "Ladurner_Anton_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416388}}, {"model": "metainfo.source", "pk": 11249, "fields": {"orig_filename": "Ladurner_Ignaz-Anton_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399f.", "author": "", "orig_id": 1416389}}, {"model": "metainfo.source", "pk": 11250, "fields": {"orig_filename": "Ladurner_Joseph-Alois_1769_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416390}}, {"model": "metainfo.source", "pk": 11251, "fields": {"orig_filename": "Ladurner_Joseph-Jacob_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416391}}, {"model": "metainfo.source", "pk": 11252, "fields": {"orig_filename": "Ladurner_Justinian_1808_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416392}}, {"model": "metainfo.source", "pk": 11253, "fields": {"orig_filename": "Ladurner_Matthias_1772_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400f.", "author": "", "orig_id": 1416393}}, {"model": "metainfo.source", "pk": 11254, "fields": {"orig_filename": "Ladziansky-Ledenyi_Julius_1903_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416394}}, {"model": "metainfo.source", "pk": 11255, "fields": {"orig_filename": "Laemel_Leopold_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416395}}, {"model": "metainfo.source", "pk": 11256, "fields": {"orig_filename": "Kuhn_Carl-Friedrich_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415571}}, {"model": "metainfo.source", "pk": 11257, "fields": {"orig_filename": "Kuhn_Dismas_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335f.", "author": "", "orig_id": 1415572}}, {"model": "metainfo.source", "pk": 11258, "fields": {"orig_filename": "Kuhn_Ernst_1859_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336", "author": "", "orig_id": 1415573}}, {"model": "metainfo.source", "pk": 11259, "fields": {"orig_filename": "Kuhn_Franz-Xaver_1888_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336", "author": "", "orig_id": 1415574}}, {"model": "metainfo.source", "pk": 11260, "fields": {"orig_filename": "Kuh_Anton_1890_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1458929}}, {"model": "metainfo.source", "pk": 11261, "fields": {"orig_filename": "Kuh_David_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 332f.", "author": "", "orig_id": 1415564}}, {"model": "metainfo.source", "pk": 11262, "fields": {"orig_filename": "Kuh_Emil_1828_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333", "author": "", "orig_id": 1415565}}, {"model": "metainfo.source", "pk": 11263, "fields": {"orig_filename": "Kujundzic_Kosta_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337", "author": "", "orig_id": 1415577}}, {"model": "metainfo.source", "pk": 11264, "fields": {"orig_filename": "Kukovic_Josip_1782_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415651}}, {"model": "metainfo.source", "pk": 11265, "fields": {"orig_filename": "Kukucin_Martin_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415652}}, {"model": "metainfo.source", "pk": 11266, "fields": {"orig_filename": "Kukula_Otakar_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415653}}, {"model": "metainfo.source", "pk": 11267, "fields": {"orig_filename": "Kukula_Richard-Cornelius_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339", "author": "", "orig_id": 1415655}}, {"model": "metainfo.source", "pk": 11268, "fields": {"orig_filename": "Kukula_Richard_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339", "author": "", "orig_id": 1415654}}, {"model": "metainfo.source", "pk": 11269, "fields": {"orig_filename": "Kukuljevic-Sakcinski_Ivan_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339f.", "author": "", "orig_id": 1415656}}, {"model": "metainfo.source", "pk": 11270, "fields": {"orig_filename": "Kuk_Karl_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337f.", "author": "", "orig_id": 1415578}}, {"model": "metainfo.source", "pk": 11271, "fields": {"orig_filename": "Kuk_Wladimir_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415650}}, {"model": "metainfo.source", "pk": 11272, "fields": {"orig_filename": "Kulczycki_Ludwik_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 340", "author": "", "orig_id": 1415657}}, {"model": "metainfo.source", "pk": 11273, "fields": {"orig_filename": "Kulda_Benes-Metod_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 340f.", "author": "", "orig_id": 1415658}}, {"model": "metainfo.source", "pk": 11274, "fields": {"orig_filename": "Kulik_Jakob-Philipp_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341", "author": "", "orig_id": 1415659}}, {"model": "metainfo.source", "pk": 11275, "fields": {"orig_filename": "Kulisch_Max_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341", "author": "", "orig_id": 1415660}}, {"model": "metainfo.source", "pk": 11276, "fields": {"orig_filename": "Kulka_Adolf_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341f.", "author": "", "orig_id": 1415661}}, {"model": "metainfo.source", "pk": 11277, "fields": {"orig_filename": "Kulka_Georg_1897_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342", "author": "", "orig_id": 1415662}}, {"model": "metainfo.source", "pk": 11278, "fields": {"orig_filename": "Kulka_Leopoldine_1872_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342", "author": "", "orig_id": 1415663}}, {"model": "metainfo.source", "pk": 11279, "fields": {"orig_filename": "Kulke_Eduard_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342f.", "author": "", "orig_id": 1415664}}, {"model": "metainfo.source", "pk": 11280, "fields": {"orig_filename": "Kulmer_Franjo_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415665}}, {"model": "metainfo.source", "pk": 11281, "fields": {"orig_filename": "Kulmer_Friedrich_1814_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415666}}, {"model": "metainfo.source", "pk": 11282, "fields": {"orig_filename": "Kulovec_Fran-S_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415667}}, {"model": "metainfo.source", "pk": 11283, "fields": {"orig_filename": "Kulp-Trolcov_Vojtech_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343f.", "author": "", "orig_id": 1415668}}, {"model": "metainfo.source", "pk": 11284, "fields": {"orig_filename": "Kulstrunk_Franz_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415669}}, {"model": "metainfo.source", "pk": 11285, "fields": {"orig_filename": "Kultsar_Istvan_1760_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415670}}, {"model": "metainfo.source", "pk": 11286, "fields": {"orig_filename": "Kumaniecki_Kazimierz-Wladyslaw_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415671}}, {"model": "metainfo.source", "pk": 11287, "fields": {"orig_filename": "Kumar_Josef-August_1789_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344f.", "author": "", "orig_id": 1415742}}, {"model": "metainfo.source", "pk": 11288, "fields": {"orig_filename": "Kumicic_Eugen_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 345", "author": "", "orig_id": 1415744}}, {"model": "metainfo.source", "pk": 11289, "fields": {"orig_filename": "Kummer-Falkenfehd_Heinrich_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346", "author": "", "orig_id": 1415746}}, {"model": "metainfo.source", "pk": 11290, "fields": {"orig_filename": "Kummer_Karl-Ferdinand_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 345f.", "author": "", "orig_id": 1415745}}, {"model": "metainfo.source", "pk": 11291, "fields": {"orig_filename": "Kumpf_Johann-Gottfried_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346", "author": "", "orig_id": 1415747}}, {"model": "metainfo.source", "pk": 11292, "fields": {"orig_filename": "Kuna_Franz_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415750}}, {"model": "metainfo.source", "pk": 11293, "fields": {"orig_filename": "Kuncze_Leo_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415753}}, {"model": "metainfo.source", "pk": 11294, "fields": {"orig_filename": "Kuncz_Adolf-Josef_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347f.", "author": "", "orig_id": 1415752}}, {"model": "metainfo.source", "pk": 11295, "fields": {"orig_filename": "Kunc_Matija_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415751}}, {"model": "metainfo.source", "pk": 11296, "fields": {"orig_filename": "Kundegraber_Michael_1844_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415754}}, {"model": "metainfo.source", "pk": 11297, "fields": {"orig_filename": "Kundek_Josip_1809_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415755}}, {"model": "metainfo.source", "pk": 11298, "fields": {"orig_filename": "Kundigraber_Hermann_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 349", "author": "", "orig_id": 1415757}}, {"model": "metainfo.source", "pk": 11299, "fields": {"orig_filename": "Kundi_Julius_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415756}}, {"model": "metainfo.source", "pk": 11300, "fields": {"orig_filename": "Kundmann_Karl_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 349f.", "author": "", "orig_id": 1415758}}, {"model": "metainfo.source", "pk": 11301, "fields": {"orig_filename": "Kundrat-Lueftenfeld_Josef_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 350f.", "author": "", "orig_id": 1415760}}, {"model": "metainfo.source", "pk": 11302, "fields": {"orig_filename": "Kundrat_Johann_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 350", "author": "", "orig_id": 1415759}}, {"model": "metainfo.source", "pk": 11303, "fields": {"orig_filename": "Kunerth_Johann-Leopold_1784_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415761}}, {"model": "metainfo.source", "pk": 11304, "fields": {"orig_filename": "Kunike_Adolf-Friedrich_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415831}}, {"model": "metainfo.source", "pk": 11305, "fields": {"orig_filename": "Kunitsch_Michael_1765_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352", "author": "", "orig_id": 1415833}}, {"model": "metainfo.source", "pk": 11306, "fields": {"orig_filename": "Kunits_Ludwig-Maria_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351f.", "author": "", "orig_id": 1415832}}, {"model": "metainfo.source", "pk": 11307, "fields": {"orig_filename": "Kunitzer_Moses_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352", "author": "", "orig_id": 1415834}}, {"model": "metainfo.source", "pk": 11308, "fields": {"orig_filename": "Kunos_Ignac_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352f.", "author": "", "orig_id": 1415835}}, {"model": "metainfo.source", "pk": 11309, "fields": {"orig_filename": "Kunsic_Ivan_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415836}}, {"model": "metainfo.source", "pk": 11310, "fields": {"orig_filename": "Kunst_Karl_1895_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415837}}, {"model": "metainfo.source", "pk": 11311, "fields": {"orig_filename": "Kunszt_Josef_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415838}}, {"model": "metainfo.source", "pk": 11312, "fields": {"orig_filename": "Kuntschak_Abund_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353f.", "author": "", "orig_id": 1415839}}, {"model": "metainfo.source", "pk": 11313, "fields": {"orig_filename": "Kunwald_Ernst_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415840}}, {"model": "metainfo.source", "pk": 11314, "fields": {"orig_filename": "Kunwald_Gottfried_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415841}}, {"model": "metainfo.source", "pk": 11315, "fields": {"orig_filename": "Kuny_Domokos_1754_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415842}}, {"model": "metainfo.source", "pk": 11316, "fields": {"orig_filename": "Kunzek-Lichton_August_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357", "author": "", "orig_id": 1415851}}, {"model": "metainfo.source", "pk": 11317, "fields": {"orig_filename": "Kunze_Wilhelm_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356f.", "author": "", "orig_id": 1415850}}, {"model": "metainfo.source", "pk": 11318, "fields": {"orig_filename": "Kunz_Anton-Thomas_1756_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354f.", "author": "", "orig_id": 1415843}}, {"model": "metainfo.source", "pk": 11319, "fields": {"orig_filename": "Kunz_Carlo_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415844}}, {"model": "metainfo.source", "pk": 11320, "fields": {"orig_filename": "Kunz_Eduard_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1442472}}, {"model": "metainfo.source", "pk": 11321, "fields": {"orig_filename": "Kunz_Gottfried_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415845}}, {"model": "metainfo.source", "pk": 11322, "fields": {"orig_filename": "Kunz_Johann-Karl-Kassian_1832_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415846}}, {"model": "metainfo.source", "pk": 11323, "fields": {"orig_filename": "Kunz_Josef_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355f.", "author": "", "orig_id": 1415847}}, {"model": "metainfo.source", "pk": 11324, "fields": {"orig_filename": "Kunz_Ludwig-Adam_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356", "author": "", "orig_id": 1415848}}, {"model": "metainfo.source", "pk": 11325, "fields": {"orig_filename": "Kunz_Otto_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356", "author": "", "orig_id": 1415849}}, {"model": "metainfo.source", "pk": 11326, "fields": {"orig_filename": "Kun_Frantisek_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415749}}, {"model": "metainfo.source", "pk": 11327, "fields": {"orig_filename": "Kupcok_Samuel_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357", "author": "", "orig_id": 1415852}}, {"model": "metainfo.source", "pk": 11328, "fields": {"orig_filename": "Kupelwieser_Franz_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357f.", "author": "", "orig_id": 1415853}}, {"model": "metainfo.source", "pk": 11329, "fields": {"orig_filename": "Kupelwieser_Hans_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 358", "author": "", "orig_id": 1415854}}, {"model": "metainfo.source", "pk": 11330, "fields": {"orig_filename": "Kupelwieser_Karl_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 359", "author": "", "orig_id": 1415855}}, {"model": "metainfo.source", "pk": 11331, "fields": {"orig_filename": "Kupelwieser_Leopold_1796_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 359f.", "author": "", "orig_id": 1415921}}, {"model": "metainfo.source", "pk": 11332, "fields": {"orig_filename": "Kupelwieser_Paul_1843_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 360", "author": "", "orig_id": 1411495}}, {"model": "metainfo.source", "pk": 11333, "fields": {"orig_filename": "Kupfer-Berger_Ludmilla_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415923}}, {"model": "metainfo.source", "pk": 11334, "fields": {"orig_filename": "Kupfer-Gomansky_Caesarine_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415924}}, {"model": "metainfo.source", "pk": 11335, "fields": {"orig_filename": "Kupfer_Johann-Michael_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 360f.", "author": "", "orig_id": 1415922}}, {"model": "metainfo.source", "pk": 11336, "fields": {"orig_filename": "Kupka_Josef_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415925}}, {"model": "metainfo.source", "pk": 11337, "fields": {"orig_filename": "Kupka_Peter-Friedrich_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361f.", "author": "", "orig_id": 1415926}}, {"model": "metainfo.source", "pk": 11338, "fields": {"orig_filename": "Kuppa_Josef_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415927}}, {"model": "metainfo.source", "pk": 11339, "fields": {"orig_filename": "Kuppe_Rudolf_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415928}}, {"model": "metainfo.source", "pk": 11340, "fields": {"orig_filename": "Kurak_Frantisek_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415929}}, {"model": "metainfo.source", "pk": 11341, "fields": {"orig_filename": "Kuralt_Franjo_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415930}}, {"model": "metainfo.source", "pk": 11342, "fields": {"orig_filename": "Kuranda_Felix_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362f.", "author": "", "orig_id": 1415931}}, {"model": "metainfo.source", "pk": 11343, "fields": {"orig_filename": "Kuranda_Ignaz_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 363", "author": "", "orig_id": 1415932}}, {"model": "metainfo.source", "pk": 11344, "fields": {"orig_filename": "Kurelac_Fran_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 363f.", "author": "", "orig_id": 1415933}}, {"model": "metainfo.source", "pk": 11345, "fields": {"orig_filename": "Kurka_Adalbert-Josef_1785_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415934}}, {"model": "metainfo.source", "pk": 11346, "fields": {"orig_filename": "Kurlaender-Kornfeld_Franz-August_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415935}}, {"model": "metainfo.source", "pk": 11347, "fields": {"orig_filename": "Kurrein_Adolf_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364f.", "author": "", "orig_id": 1415937}}, {"model": "metainfo.source", "pk": 11348, "fields": {"orig_filename": "Kurth_Betty_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415938}}, {"model": "metainfo.source", "pk": 11349, "fields": {"orig_filename": "Kurth_Ernst_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415939}}, {"model": "metainfo.source", "pk": 11350, "fields": {"orig_filename": "Kurtz_Arthur_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415940}}, {"model": "metainfo.source", "pk": 11351, "fields": {"orig_filename": "Kurtz_August_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365f.", "author": "", "orig_id": 1415941}}, {"model": "metainfo.source", "pk": 11352, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Franz_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416016}}, {"model": "metainfo.source", "pk": 11353, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Ludwig_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416017}}, {"model": "metainfo.source", "pk": 11354, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Patritius-Cajetan-Franz_1758_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416018}}, {"model": "metainfo.source", "pk": 11355, "fields": {"orig_filename": "Kurzawa_Anton_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368f.", "author": "", "orig_id": 1416019}}, {"model": "metainfo.source", "pk": 11356, "fields": {"orig_filename": "Kurzbauer_Hans-Eduard_1840_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416020}}, {"model": "metainfo.source", "pk": 11357, "fields": {"orig_filename": "Kruis_Karl_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302", "author": "", "orig_id": 1416555}}, {"model": "metainfo.source", "pk": 11358, "fields": {"orig_filename": "Krukowski_Joseph_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302f.", "author": "", "orig_id": 1416556}}, {"model": "metainfo.source", "pk": 11359, "fields": {"orig_filename": "Krumholz_Ferdinand_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303", "author": "", "orig_id": 1416557}}, {"model": "metainfo.source", "pk": 11360, "fields": {"orig_filename": "Krumpholz_Johann_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303", "author": "", "orig_id": 1416559}}, {"model": "metainfo.source", "pk": 11361, "fields": {"orig_filename": "Krupka_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303f.", "author": "", "orig_id": 1416560}}, {"model": "metainfo.source", "pk": 11362, "fields": {"orig_filename": "Krupp_Arthur_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 304", "author": "", "orig_id": 1416561}}, {"model": "metainfo.source", "pk": 11363, "fields": {"orig_filename": "Krupp_Hermann_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 304f.", "author": "", "orig_id": 1416562}}, {"model": "metainfo.source", "pk": 11364, "fields": {"orig_filename": "Kruselnyckyj_Antin-Volodyslavovyc_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416564}}, {"model": "metainfo.source", "pk": 11365, "fields": {"orig_filename": "Kruselnyckyj_Ivan-Antonovyc_1905_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416565}}, {"model": "metainfo.source", "pk": 11366, "fields": {"orig_filename": "Krus_Franz_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 305f.", "author": "", "orig_id": 1416563}}, {"model": "metainfo.source", "pk": 11367, "fields": {"orig_filename": "Kruzik_Anton_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416566}}, {"model": "metainfo.source", "pk": 11368, "fields": {"orig_filename": "Krycinski_Walerian_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306f.", "author": "", "orig_id": 1416638}}, {"model": "metainfo.source", "pk": 11369, "fields": {"orig_filename": "Krystin_Jaroslav_1892_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416639}}, {"model": "metainfo.source", "pk": 11370, "fields": {"orig_filename": "Krystufek_Frantisek-X_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416640}}, {"model": "metainfo.source", "pk": 11371, "fields": {"orig_filename": "Krystufek_Jan-Miloslav_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416641}}, {"model": "metainfo.source", "pk": 11372, "fields": {"orig_filename": "Krzeczunowicz_Kornel_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307f.", "author": "", "orig_id": 1416642}}, {"model": "metainfo.source", "pk": 11373, "fields": {"orig_filename": "Krzesz_Mecina-Jozef_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308", "author": "", "orig_id": 1416643}}, {"model": "metainfo.source", "pk": 11374, "fields": {"orig_filename": "Krzic_Anton_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308", "author": "", "orig_id": 1416644}}, {"model": "metainfo.source", "pk": 11375, "fields": {"orig_filename": "Krziz_August-Karl_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309", "author": "", "orig_id": 1416646}}, {"model": "metainfo.source", "pk": 11376, "fields": {"orig_filename": "Krzyzanowski_Stanislaw_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309", "author": "", "orig_id": 1416647}}, {"model": "metainfo.source", "pk": 11377, "fields": {"orig_filename": "Kubala_Ludwig_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309f.", "author": "", "orig_id": 1416648}}, {"model": "metainfo.source", "pk": 11378, "fields": {"orig_filename": "Kubani_Ludovit_1830_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1416649}}, {"model": "metainfo.source", "pk": 11379, "fields": {"orig_filename": "Kubelik_Jan_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1416650}}, {"model": "metainfo.source", "pk": 11380, "fields": {"orig_filename": "Kubelka_August_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1415275}}, {"model": "metainfo.source", "pk": 11381, "fields": {"orig_filename": "Kubena_Heinrich_1855_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310f.", "author": "", "orig_id": 1415276}}, {"model": "metainfo.source", "pk": 11382, "fields": {"orig_filename": "Kubicek_Emanuel_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415277}}, {"model": "metainfo.source", "pk": 11383, "fields": {"orig_filename": "Kubiena_Friedrich_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415278}}, {"model": "metainfo.source", "pk": 11384, "fields": {"orig_filename": "Kubik_Julius_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415279}}, {"model": "metainfo.source", "pk": 11385, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Agoston_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311f.", "author": "", "orig_id": 1415280}}, {"model": "metainfo.source", "pk": 11386, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Ferenc_1796_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415281}}, {"model": "metainfo.source", "pk": 11387, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Ferenc_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415282}}, {"model": "metainfo.source", "pk": 11388, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Lajos_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415283}}, {"model": "metainfo.source", "pk": 11389, "fields": {"orig_filename": "Kubinzky_Emil_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312f.", "author": "", "orig_id": 1415284}}, {"model": "metainfo.source", "pk": 11390, "fields": {"orig_filename": "Kubista_Bohumil_1884_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 313", "author": "", "orig_id": 1415285}}, {"model": "metainfo.source", "pk": 11391, "fields": {"orig_filename": "Kubitschek_Rudolf_1895_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 313f.", "author": "", "orig_id": 1415286}}, {"model": "metainfo.source", "pk": 11392, "fields": {"orig_filename": "Kubitza_Oskar_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315", "author": "", "orig_id": 1415288}}, {"model": "metainfo.source", "pk": 11393, "fields": {"orig_filename": "Kubr_Stanislav_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315", "author": "", "orig_id": 1415289}}, {"model": "metainfo.source", "pk": 11394, "fields": {"orig_filename": "Kucera_Bohumil_1874_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315f.", "author": "", "orig_id": 1415290}}, {"model": "metainfo.source", "pk": 11395, "fields": {"orig_filename": "Kucera_Frantisek_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316", "author": "", "orig_id": 1415291}}, {"model": "metainfo.source", "pk": 11396, "fields": {"orig_filename": "Kucera_Jan-Jakub_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316f.", "author": "", "orig_id": 1415293}}, {"model": "metainfo.source", "pk": 11397, "fields": {"orig_filename": "Kucera_Jan_1838_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316", "author": "", "orig_id": 1415292}}, {"model": "metainfo.source", "pk": 11398, "fields": {"orig_filename": "Kucera_Karel_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1419223}}, {"model": "metainfo.source", "pk": 11399, "fields": {"orig_filename": "Kucera_Oton_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415294}}, {"model": "metainfo.source", "pk": 11400, "fields": {"orig_filename": "Kucera_Pavel_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415365}}, {"model": "metainfo.source", "pk": 11401, "fields": {"orig_filename": "Kuchar_Johann-Bapt_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415366}}, {"model": "metainfo.source", "pk": 11402, "fields": {"orig_filename": "Kucher_Josef_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317f.", "author": "", "orig_id": 1415367}}, {"model": "metainfo.source", "pk": 11403, "fields": {"orig_filename": "Kuchynka_Vojtech_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415368}}, {"model": "metainfo.source", "pk": 11404, "fields": {"orig_filename": "Kudler_Joseph_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318f.", "author": "", "orig_id": 1415371}}, {"model": "metainfo.source", "pk": 11405, "fields": {"orig_filename": "Kudlich_Hans_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 319", "author": "", "orig_id": 1415372}}, {"model": "metainfo.source", "pk": 11406, "fields": {"orig_filename": "Kudriaffsky_Euphemia_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 319f.", "author": "", "orig_id": 1415373}}, {"model": "metainfo.source", "pk": 11407, "fields": {"orig_filename": "Kudriaffsky_Johann_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415374}}, {"model": "metainfo.source", "pk": 11408, "fields": {"orig_filename": "Kuebeck-Kuebau_Blanche_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415375}}, {"model": "metainfo.source", "pk": 11409, "fields": {"orig_filename": "Kuebeck-Kuebau_Guido_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415376}}, {"model": "metainfo.source", "pk": 11410, "fields": {"orig_filename": "Kuebeck-Kuebau_Karl-Friedrich_1780_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320f.", "author": "", "orig_id": 1415377}}, {"model": "metainfo.source", "pk": 11411, "fields": {"orig_filename": "Kuefstein_Franz_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415378}}, {"model": "metainfo.source", "pk": 11412, "fields": {"orig_filename": "Kuefstein_Johann-Ferdinand_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415379}}, {"model": "metainfo.source", "pk": 11413, "fields": {"orig_filename": "Kuefstein_Karl_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415380}}, {"model": "metainfo.source", "pk": 11414, "fields": {"orig_filename": "Kuehlbrandt_Ernst_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415381}}, {"model": "metainfo.source", "pk": 11415, "fields": {"orig_filename": "Kuehnelt_Anton_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323f.", "author": "", "orig_id": 1415388}}, {"model": "metainfo.source", "pk": 11416, "fields": {"orig_filename": "Kuehnelt_Hugo_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415463}}, {"model": "metainfo.source", "pk": 11417, "fields": {"orig_filename": "Kuehnelt_Richard_1877_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415464}}, {"model": "metainfo.source", "pk": 11418, "fields": {"orig_filename": "Kuehnel_Gustav_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323", "author": "", "orig_id": 1415386}}, {"model": "metainfo.source", "pk": 11419, "fields": {"orig_filename": "Kuehnel_Reinhold-Wilhelm_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323", "author": "", "orig_id": 1415387}}, {"model": "metainfo.source", "pk": 11420, "fields": {"orig_filename": "Kuehnert_Franz_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415465}}, {"model": "metainfo.source", "pk": 11421, "fields": {"orig_filename": "Kuehne_Ferdinand-Karl_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415384}}, {"model": "metainfo.source", "pk": 11422, "fields": {"orig_filename": "Kuehne_Karl-Ludwig-August_1845_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322f.", "author": "", "orig_id": 1415385}}, {"model": "metainfo.source", "pk": 11423, "fields": {"orig_filename": "Kuehns_Volkmar_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324f.", "author": "", "orig_id": 1415466}}, {"model": "metainfo.source", "pk": 11424, "fields": {"orig_filename": "Kuehn_Josef_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415382}}, {"model": "metainfo.source", "pk": 11425, "fields": {"orig_filename": "Kuehn_Karl-Friedrich_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415383}}, {"model": "metainfo.source", "pk": 11426, "fields": {"orig_filename": "Kuehschelm_Josef_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325", "author": "", "orig_id": 1415467}}, {"model": "metainfo.source", "pk": 11427, "fields": {"orig_filename": "Kuelfoeldi_Viktor_1844_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325", "author": "", "orig_id": 1415468}}, {"model": "metainfo.source", "pk": 11428, "fields": {"orig_filename": "Kuenburg_Gandolph_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326", "author": "", "orig_id": 1415470}}, {"model": "metainfo.source", "pk": 11429, "fields": {"orig_filename": "Kuenburg_Maria-Bertha_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326", "author": "", "orig_id": 1415471}}, {"model": "metainfo.source", "pk": 11430, "fields": {"orig_filename": "Kuenl_Pavel_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326f.", "author": "", "orig_id": 1415472}}, {"model": "metainfo.source", "pk": 11431, "fields": {"orig_filename": "Kuensberg_Sophie_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415473}}, {"model": "metainfo.source", "pk": 11432, "fields": {"orig_filename": "Kuenssberg_Eberhard_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415477}}, {"model": "metainfo.source", "pk": 11433, "fields": {"orig_filename": "Kuenzel_Robert_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415478}}, {"model": "metainfo.source", "pk": 11434, "fields": {"orig_filename": "Kuen_Alois-Heinrich_1779_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325f.", "author": "", "orig_id": 1415469}}, {"model": "metainfo.source", "pk": 11435, "fields": {"orig_filename": "Kuernberger_Ferdinand_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327f.", "author": "", "orig_id": 1415479}}, {"model": "metainfo.source", "pk": 11436, "fields": {"orig_filename": "Kuerschak_Jozsef_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 328", "author": "", "orig_id": 1415480}}, {"model": "metainfo.source", "pk": 11437, "fields": {"orig_filename": "Kuerschner_Franz_1840_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 328f.", "author": "", "orig_id": 1415481}}, {"model": "metainfo.source", "pk": 11438, "fields": {"orig_filename": "Kuersinger_Ignaz_1795_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415482}}, {"model": "metainfo.source", "pk": 11439, "fields": {"orig_filename": "Kuerzinger_Paul-Ignaz_1750_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415483}}, {"model": "metainfo.source", "pk": 11440, "fields": {"orig_filename": "Kuffner_Christoph-Johann-Anton_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415484}}, {"model": "metainfo.source", "pk": 11441, "fields": {"orig_filename": "Kuffner_Karl_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329f.", "author": "", "orig_id": 1415556}}, {"model": "metainfo.source", "pk": 11442, "fields": {"orig_filename": "Kuffner_Moritz_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330", "author": "", "orig_id": 1415557}}, {"model": "metainfo.source", "pk": 11443, "fields": {"orig_filename": "Kugler_Emil_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330", "author": "", "orig_id": 1415558}}, {"model": "metainfo.source", "pk": 11444, "fields": {"orig_filename": "Kugler_Josef_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330f.", "author": "", "orig_id": 1415559}}, {"model": "metainfo.source", "pk": 11445, "fields": {"orig_filename": "Kugler_Paul-Franz_1836_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415560}}, {"model": "metainfo.source", "pk": 11446, "fields": {"orig_filename": "Kuglmayr_Gotthard_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415561}}, {"model": "metainfo.source", "pk": 11447, "fields": {"orig_filename": "Kugstatscher-Treuensinn_Josef_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415562}}, {"model": "metainfo.source", "pk": 11448, "fields": {"orig_filename": "Kugy_Julius_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331f.", "author": "", "orig_id": 1415563}}, {"model": "metainfo.source", "pk": 11449, "fields": {"orig_filename": "Kuh-Chrobak_Paul-Robert_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333", "author": "", "orig_id": 1415566}}, {"model": "metainfo.source", "pk": 11450, "fields": {"orig_filename": "Kuhac_Franjo_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333f.", "author": "", "orig_id": 1415567}}, {"model": "metainfo.source", "pk": 11451, "fields": {"orig_filename": "Kuhar_Lovro_1893_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 334f.", "author": "", "orig_id": 1415568}}, {"model": "metainfo.source", "pk": 11452, "fields": {"orig_filename": "Kuhe_Wilhelm_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415569}}, {"model": "metainfo.source", "pk": 11453, "fields": {"orig_filename": "Kuhn-Kuhnenfeld_Franz_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336f.", "author": "", "orig_id": 1415575}}, {"model": "metainfo.source", "pk": 11454, "fields": {"orig_filename": "Kuhn-Kunietitz_Johann_1788_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337", "author": "", "orig_id": 1415576}}, {"model": "metainfo.source", "pk": 11455, "fields": {"orig_filename": "Kuhn_Andreas_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415570}}, {"model": "metainfo.source", "pk": 11456, "fields": {"orig_filename": "Kreutzer_Carl-Joseph_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 267", "author": "", "orig_id": 1416105}}, {"model": "metainfo.source", "pk": 11457, "fields": {"orig_filename": "Kreutzer_Conrad_1780_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 267f.", "author": "", "orig_id": 1416106}}, {"model": "metainfo.source", "pk": 11458, "fields": {"orig_filename": "Kreutzinger_Josef_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416107}}, {"model": "metainfo.source", "pk": 11459, "fields": {"orig_filename": "Kreuzer_Heinrich_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416174}}, {"model": "metainfo.source", "pk": 11460, "fields": {"orig_filename": "Kreuzer_Konrad_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416175}}, {"model": "metainfo.source", "pk": 11461, "fields": {"orig_filename": "Kreuzer_Vinzenz_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416176}}, {"model": "metainfo.source", "pk": 11462, "fields": {"orig_filename": "Kreysa_Eduard_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416177}}, {"model": "metainfo.source", "pk": 11463, "fields": {"orig_filename": "Krezma_Franjo_1862_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416178}}, {"model": "metainfo.source", "pk": 11464, "fields": {"orig_filename": "Kricensky_Josef-Jaroslav_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416179}}, {"model": "metainfo.source", "pk": 11465, "fields": {"orig_filename": "Kricka_Petr_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416182}}, {"model": "metainfo.source", "pk": 11466, "fields": {"orig_filename": "Krickel_Josef-Adalbert_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416183}}, {"model": "metainfo.source", "pk": 11467, "fields": {"orig_filename": "Krick_Julius_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416180}}, {"model": "metainfo.source", "pk": 11468, "fields": {"orig_filename": "Krick_Otto-Emil_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416181}}, {"model": "metainfo.source", "pk": 11469, "fields": {"orig_filename": "Kriebaum_Franz-Xaver_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416184}}, {"model": "metainfo.source", "pk": 11470, "fields": {"orig_filename": "Krieg-Hochfelden_Edith_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270f.", "author": "", "orig_id": 1416185}}, {"model": "metainfo.source", "pk": 11471, "fields": {"orig_filename": "Krieg-Hochfelden_Franz_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271", "author": "", "orig_id": 1416186}}, {"model": "metainfo.source", "pk": 11472, "fields": {"orig_filename": "Krieger_Koloman_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271", "author": "", "orig_id": 1416187}}, {"model": "metainfo.source", "pk": 11473, "fields": {"orig_filename": "Krieghammer_Edmund_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271f.", "author": "", "orig_id": 1416188}}, {"model": "metainfo.source", "pk": 11474, "fields": {"orig_filename": "Kriegs-Au_Adolf_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272", "author": "", "orig_id": 1416189}}, {"model": "metainfo.source", "pk": 11475, "fields": {"orig_filename": "Kriehuber_Friedrich_1834_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272", "author": "", "orig_id": 1416190}}, {"model": "metainfo.source", "pk": 11476, "fields": {"orig_filename": "Kriehuber_Josef_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 273f.", "author": "", "orig_id": 1416192}}, {"model": "metainfo.source", "pk": 11477, "fields": {"orig_filename": "Kriehuber_Joseph_1799_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272f.", "author": "", "orig_id": 1416191}}, {"model": "metainfo.source", "pk": 11478, "fields": {"orig_filename": "Kriesmayr_Anton_1810_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274", "author": "", "orig_id": 1416193}}, {"model": "metainfo.source", "pk": 11479, "fields": {"orig_filename": "Krimer_Wenzeslaus_1795_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274", "author": "", "orig_id": 1416194}}, {"model": "metainfo.source", "pk": 11480, "fields": {"orig_filename": "Kripp-Prunberg-Krippach_Sigmund_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274f.", "author": "", "orig_id": 1416195}}, {"model": "metainfo.source", "pk": 11481, "fields": {"orig_filename": "Krippel_Heinrich_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275", "author": "", "orig_id": 1416196}}, {"model": "metainfo.source", "pk": 11482, "fields": {"orig_filename": "Krischke_Otto_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275f.", "author": "", "orig_id": 1416266}}, {"model": "metainfo.source", "pk": 11483, "fields": {"orig_filename": "Krisch_Rudolf_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275", "author": "", "orig_id": 1416197}}, {"model": "metainfo.source", "pk": 11484, "fields": {"orig_filename": "Krismanic_Gideon_1817_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 276", "author": "", "orig_id": 1416267}}, {"model": "metainfo.source", "pk": 11485, "fields": {"orig_filename": "Krismer_Stefan_1777_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 276f.", "author": "", "orig_id": 1416268}}, {"model": "metainfo.source", "pk": 11486, "fields": {"orig_filename": "Krisper_Valentin_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277", "author": "", "orig_id": 1416269}}, {"model": "metainfo.source", "pk": 11487, "fields": {"orig_filename": "Kristan_Anton_1881_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277f.", "author": "", "orig_id": 1416271}}, {"model": "metainfo.source", "pk": 11488, "fields": {"orig_filename": "Kristijanovic_Ignjat_1796_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416272}}, {"model": "metainfo.source", "pk": 11489, "fields": {"orig_filename": "Kristinus_Karl-Raimund_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416273}}, {"model": "metainfo.source", "pk": 11490, "fields": {"orig_filename": "Kristoffy_Jozsef_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416274}}, {"model": "metainfo.source", "pk": 11491, "fields": {"orig_filename": "Krist_Josef_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277", "author": "", "orig_id": 1416270}}, {"model": "metainfo.source", "pk": 11492, "fields": {"orig_filename": "Kritek_Karl_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278f.", "author": "", "orig_id": 1416275}}, {"model": "metainfo.source", "pk": 11493, "fields": {"orig_filename": "Kriza_Janos_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416281}}, {"model": "metainfo.source", "pk": 11494, "fields": {"orig_filename": "Krizek_Vaclav_1833_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416282}}, {"model": "metainfo.source", "pk": 11495, "fields": {"orig_filename": "Krizenecky_Rudolf_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280f.", "author": "", "orig_id": 1416283}}, {"model": "metainfo.source", "pk": 11496, "fields": {"orig_filename": "Krizik_Franz_1847_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281", "author": "", "orig_id": 1416284}}, {"model": "metainfo.source", "pk": 11497, "fields": {"orig_filename": "Krizkovsky_Pavel_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 282", "author": "", "orig_id": 1416361}}, {"model": "metainfo.source", "pk": 11498, "fields": {"orig_filename": "Krizko_Bohuslav_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281", "author": "", "orig_id": 1416285}}, {"model": "metainfo.source", "pk": 11499, "fields": {"orig_filename": "Krizko_Jaromir-Vitazoslav_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281f.", "author": "", "orig_id": 1416286}}, {"model": "metainfo.source", "pk": 11500, "fields": {"orig_filename": "Krizko_Pavel_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 282", "author": "", "orig_id": 1416360}}, {"model": "metainfo.source", "pk": 11501, "fields": {"orig_filename": "Krizmanic_Ivan_1766_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416362}}, {"model": "metainfo.source", "pk": 11502, "fields": {"orig_filename": "Kriz_Arpad_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279", "author": "", "orig_id": 1416276}}, {"model": "metainfo.source", "pk": 11503, "fields": {"orig_filename": "Kriz_Ferdinand_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279", "author": "", "orig_id": 1416277}}, {"model": "metainfo.source", "pk": 11504, "fields": {"orig_filename": "Kriz_Martin_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279f.", "author": "", "orig_id": 1416278}}, {"model": "metainfo.source", "pk": 11505, "fields": {"orig_filename": "Kriz_Wenzel_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416280}}, {"model": "metainfo.source", "pk": 11506, "fields": {"orig_filename": "Krmpotic_Ivan_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416363}}, {"model": "metainfo.source", "pk": 11507, "fields": {"orig_filename": "Krnic_Bogoljub_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416364}}, {"model": "metainfo.source", "pk": 11508, "fields": {"orig_filename": "Krnic_Ivan_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416365}}, {"model": "metainfo.source", "pk": 11509, "fields": {"orig_filename": "Krnka_Karl-Sylvester_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283f.", "author": "", "orig_id": 1416366}}, {"model": "metainfo.source", "pk": 11510, "fields": {"orig_filename": "Krnka_Sylvester_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 284f.", "author": "", "orig_id": 1416367}}, {"model": "metainfo.source", "pk": 11511, "fields": {"orig_filename": "Krobath_Karl_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 285", "author": "", "orig_id": 1416368}}, {"model": "metainfo.source", "pk": 11512, "fields": {"orig_filename": "Krobatin_Alexander_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 285f.", "author": "", "orig_id": 1416369}}, {"model": "metainfo.source", "pk": 11513, "fields": {"orig_filename": "Krochmal_Nachman_1785_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416370}}, {"model": "metainfo.source", "pk": 11514, "fields": {"orig_filename": "Kroepsch_Friedrich-Anton_1806_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416372}}, {"model": "metainfo.source", "pk": 11515, "fields": {"orig_filename": "Kroepsch_Wilhelm_1807_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416371}}, {"model": "metainfo.source", "pk": 11516, "fields": {"orig_filename": "Kroess_Alois_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416373}}, {"model": "metainfo.source", "pk": 11517, "fields": {"orig_filename": "Krofta_Kamil_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 287", "author": "", "orig_id": 1416374}}, {"model": "metainfo.source", "pk": 11518, "fields": {"orig_filename": "Kroh_Josef_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416375}}, {"model": "metainfo.source", "pk": 11519, "fields": {"orig_filename": "Krolmus_Vaclav_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416376}}, {"model": "metainfo.source", "pk": 11520, "fields": {"orig_filename": "Krombholz_Anton_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416377}}, {"model": "metainfo.source", "pk": 11521, "fields": {"orig_filename": "Krombholz_Ernst_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289", "author": "", "orig_id": 1416378}}, {"model": "metainfo.source", "pk": 11522, "fields": {"orig_filename": "Krombholz_Julius-Vincenz_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289", "author": "", "orig_id": 1416379}}, {"model": "metainfo.source", "pk": 11523, "fields": {"orig_filename": "Krommer_Franz_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289f.", "author": "", "orig_id": 1416380}}, {"model": "metainfo.source", "pk": 11524, "fields": {"orig_filename": "Kronau_Friederike_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 290", "author": "", "orig_id": 1416451}}, {"model": "metainfo.source", "pk": 11525, "fields": {"orig_filename": "Kronawetter_Ferdinand_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 290f.", "author": "", "orig_id": 1416452}}, {"model": "metainfo.source", "pk": 11526, "fields": {"orig_filename": "Kronbauer_Rudolf-Jaroslav_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416453}}, {"model": "metainfo.source", "pk": 11527, "fields": {"orig_filename": "Kronberger_Franz_1810_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416454}}, {"model": "metainfo.source", "pk": 11528, "fields": {"orig_filename": "Kronberger_Karl_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416455}}, {"model": "metainfo.source", "pk": 11529, "fields": {"orig_filename": "Kronecker_Gunther_1803_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291f.", "author": "", "orig_id": 1416456}}, {"model": "metainfo.source", "pk": 11530, "fields": {"orig_filename": "Kronegger_Rudolf_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416457}}, {"model": "metainfo.source", "pk": 11531, "fields": {"orig_filename": "Kronenfels_Josef_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1419222}}, {"model": "metainfo.source", "pk": 11532, "fields": {"orig_filename": "Krones-Marchland_Franz_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 294", "author": "", "orig_id": 1416462}}, {"model": "metainfo.source", "pk": 11533, "fields": {"orig_filename": "Krones_Hilde_1910_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416458}}, {"model": "metainfo.source", "pk": 11534, "fields": {"orig_filename": "Krones_Josef-Franz_1797_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416459}}, {"model": "metainfo.source", "pk": 11535, "fields": {"orig_filename": "Krones_Ludwig_1785_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292f.", "author": "", "orig_id": 1416460}}, {"model": "metainfo.source", "pk": 11536, "fields": {"orig_filename": "Krones_Therese_1801_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 293f.", "author": "", "orig_id": 1416461}}, {"model": "metainfo.source", "pk": 11537, "fields": {"orig_filename": "Kronfeld_Adolf_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 294f.", "author": "", "orig_id": 1416463}}, {"model": "metainfo.source", "pk": 11538, "fields": {"orig_filename": "Kronfeld_Ernst-F-Moriz_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295", "author": "", "orig_id": 1416464}}, {"model": "metainfo.source", "pk": 11539, "fields": {"orig_filename": "Kronfeld_Robert_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295", "author": "", "orig_id": 1416465}}, {"model": "metainfo.source", "pk": 11540, "fields": {"orig_filename": "Kronfeld_Robert_1904_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295f.", "author": "", "orig_id": 1416466}}, {"model": "metainfo.source", "pk": 11541, "fields": {"orig_filename": "Kronfuss_Karl_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296", "author": "", "orig_id": 1416467}}, {"model": "metainfo.source", "pk": 11542, "fields": {"orig_filename": "Kronstein_August-Stefan_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296", "author": "", "orig_id": 1416468}}, {"model": "metainfo.source", "pk": 11543, "fields": {"orig_filename": "Kropatschek_Alfred_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296f.", "author": "", "orig_id": 1416469}}, {"model": "metainfo.source", "pk": 11544, "fields": {"orig_filename": "Krosch_Josef_1840_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416470}}, {"model": "metainfo.source", "pk": 11545, "fields": {"orig_filename": "Krotenthaller_Anton_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416471}}, {"model": "metainfo.source", "pk": 11546, "fields": {"orig_filename": "Krottenthaler_Karl_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416472}}, {"model": "metainfo.source", "pk": 11547, "fields": {"orig_filename": "Kroupa_Gustav_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297f.", "author": "", "orig_id": 1416473}}, {"model": "metainfo.source", "pk": 11548, "fields": {"orig_filename": "Krsic_Jovan_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 298", "author": "", "orig_id": 1416474}}, {"model": "metainfo.source", "pk": 11549, "fields": {"orig_filename": "Krsnjavi_Izidor_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 298f.", "author": "", "orig_id": 1416544}}, {"model": "metainfo.source", "pk": 11550, "fields": {"orig_filename": "Krticzka-Jaden_Hans_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299", "author": "", "orig_id": 1416545}}, {"model": "metainfo.source", "pk": 11551, "fields": {"orig_filename": "Kruczkiewicz_Bronislaw-Ignacy_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299", "author": "", "orig_id": 1416546}}, {"model": "metainfo.source", "pk": 11552, "fields": {"orig_filename": "Krueckl_Franz_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299f.", "author": "", "orig_id": 1416547}}, {"model": "metainfo.source", "pk": 11553, "fields": {"orig_filename": "Krueger_Karl-Friedrich_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 300", "author": "", "orig_id": 1416548}}, {"model": "metainfo.source", "pk": 11554, "fields": {"orig_filename": "Kruegner_Ignaz-Sales_1781_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 300", "author": "", "orig_id": 1416549}}, {"model": "metainfo.source", "pk": 11555, "fields": {"orig_filename": "Kruepl_Anton_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416550}}, {"model": "metainfo.source", "pk": 11556, "fields": {"orig_filename": "Kruesz_Karoly-Krizosztom_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416551}}, {"model": "metainfo.source", "pk": 11557, "fields": {"orig_filename": "Krufft_Nikolaus_1779_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416552}}, {"model": "metainfo.source", "pk": 11558, "fields": {"orig_filename": "Krug_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301f.", "author": "", "orig_id": 1416553}}, {"model": "metainfo.source", "pk": 11559, "fields": {"orig_filename": "Kruis_Ferdinand_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302", "author": "", "orig_id": 1416554}}, {"model": "metainfo.source", "pk": 11560, "fields": {"orig_filename": "Kraus_Friedrich_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226f.", "author": "", "orig_id": 1415649}}, {"model": "metainfo.source", "pk": 11561, "fields": {"orig_filename": "Kraus_Fritz_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 227f.", "author": "", "orig_id": 1415721}}, {"model": "metainfo.source", "pk": 11562, "fields": {"orig_filename": "Kraus_Honorius_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228f.", "author": "", "orig_id": 1415725}}, {"model": "metainfo.source", "pk": 11563, "fields": {"orig_filename": "Kraus_Jakob_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229", "author": "", "orig_id": 1415726}}, {"model": "metainfo.source", "pk": 11564, "fields": {"orig_filename": "Kraus_Johann-Wenzel_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229", "author": "", "orig_id": 1415727}}, {"model": "metainfo.source", "pk": 11565, "fields": {"orig_filename": "Kraus_Karl_1764_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229f.", "author": "", "orig_id": 1415728}}, {"model": "metainfo.source", "pk": 11566, "fields": {"orig_filename": "Kraus_Karl_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 230ff.", "author": "", "orig_id": 1415730}}, {"model": "metainfo.source", "pk": 11567, "fields": {"orig_filename": "Kraus_Konrad_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415731}}, {"model": "metainfo.source", "pk": 11568, "fields": {"orig_filename": "Kraus_Marie-Gabriele_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415732}}, {"model": "metainfo.source", "pk": 11569, "fields": {"orig_filename": "Kraus_Oskar_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415733}}, {"model": "metainfo.source", "pk": 11570, "fields": {"orig_filename": "Kraus_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 233f.", "author": "", "orig_id": 1415735}}, {"model": "metainfo.source", "pk": 11571, "fields": {"orig_filename": "Kraus_Samuel_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234", "author": "", "orig_id": 1415737}}, {"model": "metainfo.source", "pk": 11572, "fields": {"orig_filename": "Kraus_Viktor_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234f.", "author": "", "orig_id": 1415738}}, {"model": "metainfo.source", "pk": 11573, "fields": {"orig_filename": "Krauthauf_Ferdinand_1830_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415809}}, {"model": "metainfo.source", "pk": 11574, "fields": {"orig_filename": "Krautschneider_Odorich_1818_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415810}}, {"model": "metainfo.source", "pk": 11575, "fields": {"orig_filename": "Krautwald-Annau_Joseph_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236f.", "author": "", "orig_id": 1415811}}, {"model": "metainfo.source", "pk": 11576, "fields": {"orig_filename": "Krauz-Kelles_Kazimierz_1872_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 237", "author": "", "orig_id": 1415812}}, {"model": "metainfo.source", "pk": 11577, "fields": {"orig_filename": "Kravogl_Johann-Nep_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415814}}, {"model": "metainfo.source", "pk": 11578, "fields": {"orig_filename": "Kravogl_Johann_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 237f.", "author": "", "orig_id": 1415813}}, {"model": "metainfo.source", "pk": 11579, "fields": {"orig_filename": "Kravogl_Josef_1870_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415815}}, {"model": "metainfo.source", "pk": 11580, "fields": {"orig_filename": "Kravogl_Paula_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415816}}, {"model": "metainfo.source", "pk": 11581, "fields": {"orig_filename": "Krawani_August_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238f.", "author": "", "orig_id": 1415817}}, {"model": "metainfo.source", "pk": 11582, "fields": {"orig_filename": "Krcal_August_1862_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239", "author": "", "orig_id": 1415818}}, {"model": "metainfo.source", "pk": 11583, "fields": {"orig_filename": "Krcek_Franz_1869_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239", "author": "", "orig_id": 1415819}}, {"model": "metainfo.source", "pk": 11584, "fields": {"orig_filename": "Krcmar_Jan_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239f.", "author": "", "orig_id": 1415820}}, {"model": "metainfo.source", "pk": 11585, "fields": {"orig_filename": "Krcmery_August-Horislav_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240", "author": "", "orig_id": 1415821}}, {"model": "metainfo.source", "pk": 11586, "fields": {"orig_filename": "Krebs_Hans_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240", "author": "", "orig_id": 1415822}}, {"model": "metainfo.source", "pk": 11587, "fields": {"orig_filename": "Krebs_Norbert_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240ff.", "author": "", "orig_id": 1415823}}, {"model": "metainfo.source", "pk": 11588, "fields": {"orig_filename": "Krechowiecki_Adam_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415824}}, {"model": "metainfo.source", "pk": 11589, "fields": {"orig_filename": "Kreco_Pero_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415825}}, {"model": "metainfo.source", "pk": 11590, "fields": {"orig_filename": "Krehahn_Karl_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415826}}, {"model": "metainfo.source", "pk": 11591, "fields": {"orig_filename": "Kreibich_Franz-Jakob_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415827}}, {"model": "metainfo.source", "pk": 11592, "fields": {"orig_filename": "Kreibich_Hans-Robert_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415828}}, {"model": "metainfo.source", "pk": 11593, "fields": {"orig_filename": "Kreibig_Eduard_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415829}}, {"model": "metainfo.source", "pk": 11594, "fields": {"orig_filename": "Kreibig_Josef-Clemens_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415830}}, {"model": "metainfo.source", "pk": 11595, "fields": {"orig_filename": "Kreichel_Andreas_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415899}}, {"model": "metainfo.source", "pk": 11596, "fields": {"orig_filename": "Kreichgauer_Damian_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415900}}, {"model": "metainfo.source", "pk": 11597, "fields": {"orig_filename": "Kreidl_Alois_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415901}}, {"model": "metainfo.source", "pk": 11598, "fields": {"orig_filename": "Kreidl_Regina_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415902}}, {"model": "metainfo.source", "pk": 11599, "fields": {"orig_filename": "Kreil_Benno_1779_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244f.", "author": "", "orig_id": 1415903}}, {"model": "metainfo.source", "pk": 11600, "fields": {"orig_filename": "Kreil_Karl_1798_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 245", "author": "", "orig_id": 1415904}}, {"model": "metainfo.source", "pk": 11601, "fields": {"orig_filename": "Kreisler_Karl_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 245f.", "author": "", "orig_id": 1415905}}, {"model": "metainfo.source", "pk": 11602, "fields": {"orig_filename": "Kreissle-Hellborn_Heinrich_1822_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246", "author": "", "orig_id": 1415906}}, {"model": "metainfo.source", "pk": 11603, "fields": {"orig_filename": "Krejcar_Jaromir_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246", "author": "", "orig_id": 1415907}}, {"model": "metainfo.source", "pk": 11604, "fields": {"orig_filename": "Krejci_Dobroslav_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246f.", "author": "", "orig_id": 1415908}}, {"model": "metainfo.source", "pk": 11605, "fields": {"orig_filename": "Krejci_Frantisek-Vaclav_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 247", "author": "", "orig_id": 1415909}}, {"model": "metainfo.source", "pk": 11606, "fields": {"orig_filename": "Krejci_Jan_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 247f.", "author": "", "orig_id": 1415910}}, {"model": "metainfo.source", "pk": 11607, "fields": {"orig_filename": "Krejci_Jan_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415911}}, {"model": "metainfo.source", "pk": 11608, "fields": {"orig_filename": "Krejci_Joseph_1821_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415912}}, {"model": "metainfo.source", "pk": 11609, "fields": {"orig_filename": "Krejci_Peter-Franz_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415913}}, {"model": "metainfo.source", "pk": 11610, "fields": {"orig_filename": "Krejcsi_Rezsoe_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248f.", "author": "", "orig_id": 1415914}}, {"model": "metainfo.source", "pk": 11611, "fields": {"orig_filename": "Krekich-Strassoldo-Treuland_Hans_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250", "author": "", "orig_id": 1415918}}, {"model": "metainfo.source", "pk": 11612, "fields": {"orig_filename": "Krek_Gregor-Gojmir_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 249f.", "author": "", "orig_id": 1415916}}, {"model": "metainfo.source", "pk": 11613, "fields": {"orig_filename": "Krek_Gregor_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 249", "author": "", "orig_id": 1415915}}, {"model": "metainfo.source", "pk": 11614, "fields": {"orig_filename": "Krek_Janez-Ev_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250", "author": "", "orig_id": 1415917}}, {"model": "metainfo.source", "pk": 11615, "fields": {"orig_filename": "Kreljanovic-Albinoni_Ivan_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250f.", "author": "", "orig_id": 1415919}}, {"model": "metainfo.source", "pk": 11616, "fields": {"orig_filename": "Kremann_Robert_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251", "author": "", "orig_id": 1415920}}, {"model": "metainfo.source", "pk": 11617, "fields": {"orig_filename": "Kremeir_Anna_1862_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251", "author": "", "orig_id": 1415989}}, {"model": "metainfo.source", "pk": 11618, "fields": {"orig_filename": "Kremel_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251f.", "author": "", "orig_id": 1415990}}, {"model": "metainfo.source", "pk": 11619, "fields": {"orig_filename": "Kremenetzky_Johann_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 252", "author": "", "orig_id": 1415991}}, {"model": "metainfo.source", "pk": 11620, "fields": {"orig_filename": "Kremer-Auenrode_Alois-Silverius_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1415998}}, {"model": "metainfo.source", "pk": 11621, "fields": {"orig_filename": "Kremer-Auenrode_Hugo_1833_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1415999}}, {"model": "metainfo.source", "pk": 11622, "fields": {"orig_filename": "Kremer_Aleksander-August-Kazimierz_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 252f.", "author": "", "orig_id": 1415992}}, {"model": "metainfo.source", "pk": 11623, "fields": {"orig_filename": "Kremer_Alfred_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 253f.", "author": "", "orig_id": 1415993}}, {"model": "metainfo.source", "pk": 11624, "fields": {"orig_filename": "Kremer_Johann-Heinrich_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254", "author": "", "orig_id": 1415994}}, {"model": "metainfo.source", "pk": 11625, "fields": {"orig_filename": "Kremer_Jozef_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254", "author": "", "orig_id": 1415995}}, {"model": "metainfo.source", "pk": 11626, "fields": {"orig_filename": "Kremer_Karol-Roman_1812_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254f.", "author": "", "orig_id": 1415996}}, {"model": "metainfo.source", "pk": 11627, "fields": {"orig_filename": "Kremlicka_Rudolf_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1416000}}, {"model": "metainfo.source", "pk": 11628, "fields": {"orig_filename": "Krempel_Heinrich_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255f.", "author": "", "orig_id": 1416001}}, {"model": "metainfo.source", "pk": 11629, "fields": {"orig_filename": "Krempl_Anton_1790_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256", "author": "", "orig_id": 1416002}}, {"model": "metainfo.source", "pk": 11630, "fields": {"orig_filename": "Krempl_Josef_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256", "author": "", "orig_id": 1416003}}, {"model": "metainfo.source", "pk": 11631, "fields": {"orig_filename": "Kremser_Eduard_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256f.", "author": "", "orig_id": 1416004}}, {"model": "metainfo.source", "pk": 11632, "fields": {"orig_filename": "Krenek_Karl_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 257f.", "author": "", "orig_id": 1416006}}, {"model": "metainfo.source", "pk": 11633, "fields": {"orig_filename": "Krennwallner_Paul_1876_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416083}}, {"model": "metainfo.source", "pk": 11634, "fields": {"orig_filename": "Krenn_August_1908_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416007}}, {"model": "metainfo.source", "pk": 11635, "fields": {"orig_filename": "Krenn_Edmund_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416008}}, {"model": "metainfo.source", "pk": 11636, "fields": {"orig_filename": "Krenn_Franz_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416009}}, {"model": "metainfo.source", "pk": 11637, "fields": {"orig_filename": "Krenn_Karl_1908_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258f.", "author": "", "orig_id": 1416010}}, {"model": "metainfo.source", "pk": 11638, "fields": {"orig_filename": "Krenn_Leopold_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416011}}, {"model": "metainfo.source", "pk": 11639, "fields": {"orig_filename": "Krenn_Robert-Adolf_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416012}}, {"model": "metainfo.source", "pk": 11640, "fields": {"orig_filename": "Kren_Otto_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 257", "author": "", "orig_id": 1416005}}, {"model": "metainfo.source", "pk": 11641, "fields": {"orig_filename": "Krepper_Johann_1799_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416085}}, {"model": "metainfo.source", "pk": 11642, "fields": {"orig_filename": "Krepp_Ignaz_1801_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259f.", "author": "", "orig_id": 1416084}}, {"model": "metainfo.source", "pk": 11643, "fields": {"orig_filename": "Kreser_Milan_1876_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416086}}, {"model": "metainfo.source", "pk": 11644, "fields": {"orig_filename": "Kresic_Mijo_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1419221}}, {"model": "metainfo.source", "pk": 11645, "fields": {"orig_filename": "Kresnik_Franjo_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416087}}, {"model": "metainfo.source", "pk": 11646, "fields": {"orig_filename": "Kresnik_Peter_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260f.", "author": "", "orig_id": 1416088}}, {"model": "metainfo.source", "pk": 11647, "fields": {"orig_filename": "Kress-Kressenstein_Georg_1783_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416090}}, {"model": "metainfo.source", "pk": 11648, "fields": {"orig_filename": "Kress_Josef_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 261", "author": "", "orig_id": 1416089}}, {"model": "metainfo.source", "pk": 11649, "fields": {"orig_filename": "Kress_Wilhelm_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 261f.", "author": "", "orig_id": 1411494}}, {"model": "metainfo.source", "pk": 11650, "fields": {"orig_filename": "Krestin_Lazar_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416091}}, {"model": "metainfo.source", "pk": 11651, "fields": {"orig_filename": "Kresznerics_Ferenc_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416092}}, {"model": "metainfo.source", "pk": 11652, "fields": {"orig_filename": "Kretschmann_Theobald_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262f.", "author": "", "orig_id": 1416093}}, {"model": "metainfo.source", "pk": 11653, "fields": {"orig_filename": "Kretschmar_Paul-Gustav_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 263", "author": "", "orig_id": 1416094}}, {"model": "metainfo.source", "pk": 11654, "fields": {"orig_filename": "Kretschmayr_Heinrich_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 263f.", "author": "", "orig_id": 1416095}}, {"model": "metainfo.source", "pk": 11655, "fields": {"orig_filename": "Kretschy_Michael_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416096}}, {"model": "metainfo.source", "pk": 11656, "fields": {"orig_filename": "Kretzer-Immertreu_Josef_1807_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265", "author": "", "orig_id": 1416099}}, {"model": "metainfo.source", "pk": 11657, "fields": {"orig_filename": "Kretz_Leodegar_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416097}}, {"model": "metainfo.source", "pk": 11658, "fields": {"orig_filename": "Kretz_Richard_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416098}}, {"model": "metainfo.source", "pk": 11659, "fields": {"orig_filename": "Kreuter_Franz-Xaver_1842_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265", "author": "", "orig_id": 1416100}}, {"model": "metainfo.source", "pk": 11660, "fields": {"orig_filename": "Kreuter_Julius_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265f.", "author": "", "orig_id": 1416101}}, {"model": "metainfo.source", "pk": 11661, "fields": {"orig_filename": "Kreutner_Simon_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 266", "author": "", "orig_id": 1416102}}, {"model": "metainfo.source", "pk": 11662, "fields": {"orig_filename": "Kreutzberg_Karl-Josef_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 266f.", "author": "", "orig_id": 1416104}}, {"model": "metainfo.source", "pk": 11663, "fields": {"orig_filename": "Krajcik_Johann_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415272}}, {"model": "metainfo.source", "pk": 11664, "fields": {"orig_filename": "Krajner_Imre_1791_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415273}}, {"model": "metainfo.source", "pk": 11665, "fields": {"orig_filename": "Krakauer_Alexander_1866_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415274}}, {"model": "metainfo.source", "pk": 11666, "fields": {"orig_filename": "Kral-Dobra-Voda_Adalbert_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197f.", "author": "", "orig_id": 1415347}}, {"model": "metainfo.source", "pk": 11667, "fields": {"orig_filename": "Kralicek_Rudolf_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198", "author": "", "orig_id": 1415348}}, {"model": "metainfo.source", "pk": 11668, "fields": {"orig_filename": "Kralik-Meyrswalden_Mathilde_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 199", "author": "", "orig_id": 1415351}}, {"model": "metainfo.source", "pk": 11669, "fields": {"orig_filename": "Kralik-Meyrswalden_Richard_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 199f.", "author": "", "orig_id": 1415352}}, {"model": "metainfo.source", "pk": 11670, "fields": {"orig_filename": "Kralik_Emil_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198", "author": "", "orig_id": 1415349}}, {"model": "metainfo.source", "pk": 11671, "fields": {"orig_filename": "Kralik_Emil_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198f.", "author": "", "orig_id": 1415350}}, {"model": "metainfo.source", "pk": 11672, "fields": {"orig_filename": "Kralj-Milarov_Ivka_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415355}}, {"model": "metainfo.source", "pk": 11673, "fields": {"orig_filename": "Kraljevic_Andeo_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415356}}, {"model": "metainfo.source", "pk": 11674, "fields": {"orig_filename": "Kraljevic_Benedikt_1765_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415357}}, {"model": "metainfo.source", "pk": 11675, "fields": {"orig_filename": "Kraljevic_Miroslav_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415358}}, {"model": "metainfo.source", "pk": 11676, "fields": {"orig_filename": "Kraljevic_Miroslav_1885_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201f.", "author": "", "orig_id": 1415359}}, {"model": "metainfo.source", "pk": 11677, "fields": {"orig_filename": "Kralj_Ivan_1792_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 200f.", "author": "", "orig_id": 1415354}}, {"model": "metainfo.source", "pk": 11678, "fields": {"orig_filename": "Krallert_Franz_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202", "author": "", "orig_id": 1415361}}, {"model": "metainfo.source", "pk": 11679, "fields": {"orig_filename": "Krall_Jakob_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202", "author": "", "orig_id": 1415360}}, {"model": "metainfo.source", "pk": 11680, "fields": {"orig_filename": "Kral_Janko_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196f.", "author": "", "orig_id": 1415343}}, {"model": "metainfo.source", "pk": 11681, "fields": {"orig_filename": "Kral_Johann-Nep_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415345}}, {"model": "metainfo.source", "pk": 11682, "fields": {"orig_filename": "Kral_Johann_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415344}}, {"model": "metainfo.source", "pk": 11683, "fields": {"orig_filename": "Kral_Josef_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415346}}, {"model": "metainfo.source", "pk": 11684, "fields": {"orig_filename": "Kramar_Karel_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202ff.", "author": "", "orig_id": 1415362}}, {"model": "metainfo.source", "pk": 11685, "fields": {"orig_filename": "Kramberger_Ernest_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415363}}, {"model": "metainfo.source", "pk": 11686, "fields": {"orig_filename": "Kramberger_Sofija_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415364}}, {"model": "metainfo.source", "pk": 11687, "fields": {"orig_filename": "Kramer-Drauburg_Max_1891_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205f.", "author": "", "orig_id": 1415444}}, {"model": "metainfo.source", "pk": 11688, "fields": {"orig_filename": "Kramerius_Vaclav-Rodomil_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415445}}, {"model": "metainfo.source", "pk": 11689, "fields": {"orig_filename": "Kramer_Ernst_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415439}}, {"model": "metainfo.source", "pk": 11690, "fields": {"orig_filename": "Kramer_Franz_1748_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415440}}, {"model": "metainfo.source", "pk": 11691, "fields": {"orig_filename": "Kramer_Friedrich_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204f.", "author": "", "orig_id": 1415441}}, {"model": "metainfo.source", "pk": 11692, "fields": {"orig_filename": "Kramer_Hans_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205", "author": "", "orig_id": 1415442}}, {"model": "metainfo.source", "pk": 11693, "fields": {"orig_filename": "Kramer_Leopold_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205", "author": "", "orig_id": 1415443}}, {"model": "metainfo.source", "pk": 11694, "fields": {"orig_filename": "Krammer_Franz_1798_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415446}}, {"model": "metainfo.source", "pk": 11695, "fields": {"orig_filename": "Kramolin_Eduard_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415447}}, {"model": "metainfo.source", "pk": 11696, "fields": {"orig_filename": "Kramolis_Cenek_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206f.", "author": "", "orig_id": 1415448}}, {"model": "metainfo.source", "pk": 11697, "fields": {"orig_filename": "Kramsall_Emil_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207", "author": "", "orig_id": 1415449}}, {"model": "metainfo.source", "pk": 11698, "fields": {"orig_filename": "Kranewitter_Alois_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207", "author": "", "orig_id": 1415450}}, {"model": "metainfo.source", "pk": 11699, "fields": {"orig_filename": "Kranewitter_Franz_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207f.", "author": "", "orig_id": 1415451}}, {"model": "metainfo.source", "pk": 11700, "fields": {"orig_filename": "Kranewitter_Joseph_1758_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 208", "author": "", "orig_id": 1415452}}, {"model": "metainfo.source", "pk": 11701, "fields": {"orig_filename": "Kranjcevic_Silvije-Strahimir_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 208f.", "author": "", "orig_id": 1415453}}, {"model": "metainfo.source", "pk": 11702, "fields": {"orig_filename": "Kranner_Josef-Andreas_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 209", "author": "", "orig_id": 1415454}}, {"model": "metainfo.source", "pk": 11703, "fields": {"orig_filename": "Kranzler_Johann-Georg_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415457}}, {"model": "metainfo.source", "pk": 11704, "fields": {"orig_filename": "Kranzl_Johann_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415456}}, {"model": "metainfo.source", "pk": 11705, "fields": {"orig_filename": "Kranz_Ludwig_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 209f.", "author": "", "orig_id": 1415455}}, {"model": "metainfo.source", "pk": 11706, "fields": {"orig_filename": "Krapac_Ivan_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415458}}, {"model": "metainfo.source", "pk": 11707, "fields": {"orig_filename": "Krapf_Albert_1766_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210f.", "author": "", "orig_id": 1415459}}, {"model": "metainfo.source", "pk": 11708, "fields": {"orig_filename": "Krapf_Philipp-Jakob_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211", "author": "", "orig_id": 1415460}}, {"model": "metainfo.source", "pk": 11709, "fields": {"orig_filename": "Krapka_Josef_1862_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211", "author": "", "orig_id": 1415461}}, {"model": "metainfo.source", "pk": 11710, "fields": {"orig_filename": "Krasan_Franz_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211f.", "author": "", "orig_id": 1415462}}, {"model": "metainfo.source", "pk": 11711, "fields": {"orig_filename": "Krasicki_Kazimierz_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415535}}, {"model": "metainfo.source", "pk": 11712, "fields": {"orig_filename": "Krasl_Frantisek_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415536}}, {"model": "metainfo.source", "pk": 11713, "fields": {"orig_filename": "Krasnopolski_Horaz_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415537}}, {"model": "metainfo.source", "pk": 11714, "fields": {"orig_filename": "Krasny-Ergen_Arnold_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213", "author": "", "orig_id": 1415539}}, {"model": "metainfo.source", "pk": 11715, "fields": {"orig_filename": "Krasny_Frantisek_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212f.", "author": "", "orig_id": 1415538}}, {"model": "metainfo.source", "pk": 11716, "fields": {"orig_filename": "Krassberger_Sigmund_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213", "author": "", "orig_id": 1415540}}, {"model": "metainfo.source", "pk": 11717, "fields": {"orig_filename": "Krasser_Fridolin_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213f.", "author": "", "orig_id": 1415541}}, {"model": "metainfo.source", "pk": 11718, "fields": {"orig_filename": "Krassnigg_Rudolf_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214", "author": "", "orig_id": 1415542}}, {"model": "metainfo.source", "pk": 11719, "fields": {"orig_filename": "Krastel_Friedrich_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214", "author": "", "orig_id": 1415543}}, {"model": "metainfo.source", "pk": 11720, "fields": {"orig_filename": "Kratky-Baschik_Anton_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415547}}, {"model": "metainfo.source", "pk": 11721, "fields": {"orig_filename": "Kratky_Hans_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214f.", "author": "", "orig_id": 1415544}}, {"model": "metainfo.source", "pk": 11722, "fields": {"orig_filename": "Kratky_Richard_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415545}}, {"model": "metainfo.source", "pk": 11723, "fields": {"orig_filename": "Kratky_Therese_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415546}}, {"model": "metainfo.source", "pk": 11724, "fields": {"orig_filename": "Kratochvil_Augustin_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415548}}, {"model": "metainfo.source", "pk": 11725, "fields": {"orig_filename": "Kratochvil_Jaroslav_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215f.", "author": "", "orig_id": 1415549}}, {"model": "metainfo.source", "pk": 11726, "fields": {"orig_filename": "Kratochvil_Josef_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216", "author": "", "orig_id": 1415550}}, {"model": "metainfo.source", "pk": 11727, "fields": {"orig_filename": "Kratochvil_Vaclav_1861_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216", "author": "", "orig_id": 1415551}}, {"model": "metainfo.source", "pk": 11728, "fields": {"orig_filename": "Kratschmer-Forstburg_Florian_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216f.", "author": "", "orig_id": 1415552}}, {"model": "metainfo.source", "pk": 11729, "fields": {"orig_filename": "Kratter_Franz_1758_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217", "author": "", "orig_id": 1415553}}, {"model": "metainfo.source", "pk": 11730, "fields": {"orig_filename": "Kratter_Franz_1760_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217", "author": "", "orig_id": 1415554}}, {"model": "metainfo.source", "pk": 11731, "fields": {"orig_filename": "Kratter_Julius_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217f.", "author": "", "orig_id": 1415555}}, {"model": "metainfo.source", "pk": 11732, "fields": {"orig_filename": "Krattner_Karl_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 218", "author": "", "orig_id": 1415626}}, {"model": "metainfo.source", "pk": 11733, "fields": {"orig_filename": "Kratzer_Karl_1827_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415629}}, {"model": "metainfo.source", "pk": 11734, "fields": {"orig_filename": "Kratzl_Karl_1852_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415630}}, {"model": "metainfo.source", "pk": 11735, "fields": {"orig_filename": "Kratzmann_Ernst_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219f.", "author": "", "orig_id": 1415631}}, {"model": "metainfo.source", "pk": 11736, "fields": {"orig_filename": "Kratzmann_Karl-Gustav-Philipp_1812_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220", "author": "", "orig_id": 1415632}}, {"model": "metainfo.source", "pk": 11737, "fields": {"orig_filename": "Kratzwall_Franz_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220", "author": "", "orig_id": 1415633}}, {"model": "metainfo.source", "pk": 11738, "fields": {"orig_filename": "Kratz_Anna_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 218f.", "author": "", "orig_id": 1415627}}, {"model": "metainfo.source", "pk": 11739, "fields": {"orig_filename": "Kratz_Josefine_1876_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415628}}, {"model": "metainfo.source", "pk": 11740, "fields": {"orig_filename": "Kraus-Elislago_Anton-Joseph_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 235", "author": "", "orig_id": 1415739}}, {"model": "metainfo.source", "pk": 11741, "fields": {"orig_filename": "Kraus-Elislago_Heinrich_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 235", "author": "", "orig_id": 1415740}}, {"model": "metainfo.source", "pk": 11742, "fields": {"orig_filename": "Krause_Otto-Hermann_1870_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415741}}, {"model": "metainfo.source", "pk": 11743, "fields": {"orig_filename": "Kraushaar_Karl_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415808}}, {"model": "metainfo.source", "pk": 11744, "fields": {"orig_filename": "Krauss_Franz_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226", "author": "", "orig_id": 1415647}}, {"model": "metainfo.source", "pk": 11745, "fields": {"orig_filename": "Krauss_Franz_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226", "author": "", "orig_id": 1415648}}, {"model": "metainfo.source", "pk": 11746, "fields": {"orig_filename": "Krauss_Gustav-Johannes_1864_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415722}}, {"model": "metainfo.source", "pk": 11747, "fields": {"orig_filename": "Krauss_Helene_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415724}}, {"model": "metainfo.source", "pk": 11748, "fields": {"orig_filename": "Krauss_Karl_1789_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 230", "author": "", "orig_id": 1415729}}, {"model": "metainfo.source", "pk": 11749, "fields": {"orig_filename": "Krauss_Philipp_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232f.", "author": "", "orig_id": 1415734}}, {"model": "metainfo.source", "pk": 11750, "fields": {"orig_filename": "Krauss_Rudolf_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234", "author": "", "orig_id": 1415736}}, {"model": "metainfo.source", "pk": 11751, "fields": {"orig_filename": "Kraus_Alfred_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220f.", "author": "", "orig_id": 1415634}}, {"model": "metainfo.source", "pk": 11752, "fields": {"orig_filename": "Kraus_Alfred_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 221f.", "author": "", "orig_id": 1415635}}, {"model": "metainfo.source", "pk": 11753, "fields": {"orig_filename": "Kraus_Alois_1840_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1415636}}, {"model": "metainfo.source", "pk": 11754, "fields": {"orig_filename": "Kraus_August_1812_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222", "author": "", "orig_id": 1415637}}, {"model": "metainfo.source", "pk": 11755, "fields": {"orig_filename": "Kraus_Clementine_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222", "author": "", "orig_id": 1415638}}, {"model": "metainfo.source", "pk": 11756, "fields": {"orig_filename": "Kraus_Eduard_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222f.", "author": "", "orig_id": 1415639}}, {"model": "metainfo.source", "pk": 11757, "fields": {"orig_filename": "Kraus_Emil_1897_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 223", "author": "", "orig_id": 1415640}}, {"model": "metainfo.source", "pk": 11758, "fields": {"orig_filename": "Kraus_Ernst-Wilhelm_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 223f.", "author": "", "orig_id": 1415641}}, {"model": "metainfo.source", "pk": 11759, "fields": {"orig_filename": "Kraus_Felix_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 224", "author": "", "orig_id": 1415642}}, {"model": "metainfo.source", "pk": 11760, "fields": {"orig_filename": "Kraus_Felix_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 224f.", "author": "", "orig_id": 1415643}}, {"model": "metainfo.source", "pk": 11761, "fields": {"orig_filename": "Kraus_Felix_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225", "author": "", "orig_id": 1415644}}, {"model": "metainfo.source", "pk": 11762, "fields": {"orig_filename": "Kraus_Ferdinand_1848_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225", "author": "", "orig_id": 1415645}}, {"model": "metainfo.source", "pk": 11763, "fields": {"orig_filename": "Kraus_Franz_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225f.", "author": "", "orig_id": 1415646}}, {"model": "metainfo.source", "pk": 11764, "fields": {"orig_filename": "Kraus_Friedrich-Salomon_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 227", "author": "", "orig_id": 1415720}}, {"model": "metainfo.source", "pk": 11765, "fields": {"orig_filename": "Kovacevic_Ferdo_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416436}}, {"model": "metainfo.source", "pk": 11766, "fields": {"orig_filename": "Kovacevic_Milovan_1905_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166f.", "author": "", "orig_id": 1416437}}, {"model": "metainfo.source", "pk": 11767, "fields": {"orig_filename": "Kovachich_Marton-Gyoergy_1744_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416439}}, {"model": "metainfo.source", "pk": 11768, "fields": {"orig_filename": "Kovacic_Ante_1854_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416440}}, {"model": "metainfo.source", "pk": 11769, "fields": {"orig_filename": "Kovacic_Fran_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167f.", "author": "", "orig_id": 1416441}}, {"model": "metainfo.source", "pk": 11770, "fields": {"orig_filename": "Kovacic_Ivan_1913_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 168", "author": "", "orig_id": 1416442}}, {"model": "metainfo.source", "pk": 11771, "fields": {"orig_filename": "Kovacic_Viktor_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 168", "author": "", "orig_id": 1416443}}, {"model": "metainfo.source", "pk": 11772, "fields": {"orig_filename": "Kovacs-Erdoetelek_Jozsef_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416534}}, {"model": "metainfo.source", "pk": 11773, "fields": {"orig_filename": "Kovacs-Kevehaza_Gyula_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416535}}, {"model": "metainfo.source", "pk": 11774, "fields": {"orig_filename": "Kovacs-Martiny_Paul-Gabriel_1782_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416536}}, {"model": "metainfo.source", "pk": 11775, "fields": {"orig_filename": "Kovacs-Nagyajta_Istvan_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416537}}, {"model": "metainfo.source", "pk": 11776, "fields": {"orig_filename": "Kovacs-Sebestyen_Endre_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416538}}, {"model": "metainfo.source", "pk": 11777, "fields": {"orig_filename": "Kovacs_Albert_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416444}}, {"model": "metainfo.source", "pk": 11778, "fields": {"orig_filename": "Kovacs_August_1747_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416445}}, {"model": "metainfo.source", "pk": 11779, "fields": {"orig_filename": "Kovacs_Friedrich_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169f.", "author": "", "orig_id": 1416447}}, {"model": "metainfo.source", "pk": 11780, "fields": {"orig_filename": "Kovacs_Gyula_1815_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416448}}, {"model": "metainfo.source", "pk": 11781, "fields": {"orig_filename": "Kovacs_Josef_1799_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416449}}, {"model": "metainfo.source", "pk": 11782, "fields": {"orig_filename": "Kovacs_Karel_1880_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416450}}, {"model": "metainfo.source", "pk": 11783, "fields": {"orig_filename": "Kovacs_Lajos_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170f.", "author": "", "orig_id": 1416524}}, {"model": "metainfo.source", "pk": 11784, "fields": {"orig_filename": "Kovacs_Markus-Anton_1815_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416526}}, {"model": "metainfo.source", "pk": 11785, "fields": {"orig_filename": "Kovacs_Markus_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416525}}, {"model": "metainfo.source", "pk": 11786, "fields": {"orig_filename": "Kovacs_Matyas_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416527}}, {"model": "metainfo.source", "pk": 11787, "fields": {"orig_filename": "Kovacs_Mihaly_1768_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416528}}, {"model": "metainfo.source", "pk": 11788, "fields": {"orig_filename": "Kovacs_Mihaly_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416529}}, {"model": "metainfo.source", "pk": 11789, "fields": {"orig_filename": "Kovacs_Oedoen_1844_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416530}}, {"model": "metainfo.source", "pk": 11790, "fields": {"orig_filename": "Kovacs_Pal_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416531}}, {"model": "metainfo.source", "pk": 11791, "fields": {"orig_filename": "Kovacs_Pal_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416532}}, {"model": "metainfo.source", "pk": 11792, "fields": {"orig_filename": "Kovacs_Pal_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172f.", "author": "", "orig_id": 1416533}}, {"model": "metainfo.source", "pk": 11793, "fields": {"orig_filename": "Kovarik_Frantisek_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416540}}, {"model": "metainfo.source", "pk": 11794, "fields": {"orig_filename": "Kovarovic_Karel_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416541}}, {"model": "metainfo.source", "pk": 11795, "fields": {"orig_filename": "Kovar_Emanuel_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416539}}, {"model": "metainfo.source", "pk": 11796, "fields": {"orig_filename": "Kowalczyk_Johann_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174f.", "author": "", "orig_id": 1416542}}, {"model": "metainfo.source", "pk": 11797, "fields": {"orig_filename": "Kowarzik_Josef_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416611}}, {"model": "metainfo.source", "pk": 11798, "fields": {"orig_filename": "Kowarzik_Rudolf_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175f.", "author": "", "orig_id": 1416612}}, {"model": "metainfo.source", "pk": 11799, "fields": {"orig_filename": "Kowarz_Ferdinand_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416543}}, {"model": "metainfo.source", "pk": 11800, "fields": {"orig_filename": "Koydl_Theodor_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416613}}, {"model": "metainfo.source", "pk": 11801, "fields": {"orig_filename": "Kozacek_Joseph_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416614}}, {"model": "metainfo.source", "pk": 11802, "fields": {"orig_filename": "Kozakiewicz_Antoni_1841_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416616}}, {"model": "metainfo.source", "pk": 11803, "fields": {"orig_filename": "Kozak_Jevhen_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416615}}, {"model": "metainfo.source", "pk": 11804, "fields": {"orig_filename": "Kozanek_Jan_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176f.", "author": "", "orig_id": 1416617}}, {"model": "metainfo.source", "pk": 11805, "fields": {"orig_filename": "Kozarac_Ivan_1885_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416618}}, {"model": "metainfo.source", "pk": 11806, "fields": {"orig_filename": "Kozarac_Josip_1858_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416619}}, {"model": "metainfo.source", "pk": 11807, "fields": {"orig_filename": "Kozarcanin_Ivo_1911_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416620}}, {"model": "metainfo.source", "pk": 11808, "fields": {"orig_filename": "Kozelj_Matija_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177f.", "author": "", "orig_id": 1416621}}, {"model": "metainfo.source", "pk": 11809, "fields": {"orig_filename": "Kozeluch_Katharina_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178", "author": "", "orig_id": 1416622}}, {"model": "metainfo.source", "pk": 11810, "fields": {"orig_filename": "Kozeluch_Leopold-Anton_1747_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178", "author": "", "orig_id": 1416623}}, {"model": "metainfo.source", "pk": 11811, "fields": {"orig_filename": "Kozenn_Blasius_1821_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178f.", "author": "", "orig_id": 1416624}}, {"model": "metainfo.source", "pk": 11812, "fields": {"orig_filename": "Kozicki_Wladyslaw_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416625}}, {"model": "metainfo.source", "pk": 11813, "fields": {"orig_filename": "Kozics_Franz_1864_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416626}}, {"model": "metainfo.source", "pk": 11814, "fields": {"orig_filename": "Koziebrodzki_Wladyslaw-Bolesta_1839_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416627}}, {"model": "metainfo.source", "pk": 11815, "fields": {"orig_filename": "Kozina_Alexander_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416628}}, {"model": "metainfo.source", "pk": 11816, "fields": {"orig_filename": "Kozisek_Josef_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416629}}, {"model": "metainfo.source", "pk": 11817, "fields": {"orig_filename": "Kozlowski_Wlodzimierz_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416700}}, {"model": "metainfo.source", "pk": 11818, "fields": {"orig_filename": "Kozlowski_Zygmunt-Bolesta_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180f.", "author": "", "orig_id": 1416701}}, {"model": "metainfo.source", "pk": 11819, "fields": {"orig_filename": "Kozma_Andor_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181", "author": "", "orig_id": 1416702}}, {"model": "metainfo.source", "pk": 11820, "fields": {"orig_filename": "Kozmian_Stanislaw_1836_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181", "author": "", "orig_id": 1416703}}, {"model": "metainfo.source", "pk": 11821, "fields": {"orig_filename": "Kozubowski_Antoni_1805_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181f.", "author": "", "orig_id": 1416704}}, {"model": "metainfo.source", "pk": 11822, "fields": {"orig_filename": "Kraal_Josef_1887_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416705}}, {"model": "metainfo.source", "pk": 11823, "fields": {"orig_filename": "Kracher_Ferdinand_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416706}}, {"model": "metainfo.source", "pk": 11824, "fields": {"orig_filename": "Kracher_Joseph-Mathias_1752_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416707}}, {"model": "metainfo.source", "pk": 11825, "fields": {"orig_filename": "Krackowizer_Ernst_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182f.", "author": "", "orig_id": 1416708}}, {"model": "metainfo.source", "pk": 11826, "fields": {"orig_filename": "Krackowizer_Ferdinand_1844_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183", "author": "", "orig_id": 1416709}}, {"model": "metainfo.source", "pk": 11827, "fields": {"orig_filename": "Krackowizer_Ferdinand_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183", "author": "", "orig_id": 1416710}}, {"model": "metainfo.source", "pk": 11828, "fields": {"orig_filename": "Krackowizer_Franz-Stefan_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183f.", "author": "", "orig_id": 1416711}}, {"model": "metainfo.source", "pk": 11829, "fields": {"orig_filename": "Krackowizer_Hermann_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416712}}, {"model": "metainfo.source", "pk": 11830, "fields": {"orig_filename": "Kraegel_Ernst-Josef_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416713}}, {"model": "metainfo.source", "pk": 11831, "fields": {"orig_filename": "Kraehmer_Caroline_1794_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416714}}, {"model": "metainfo.source", "pk": 11832, "fields": {"orig_filename": "Kraehmer_Johann-Ernst_1795_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184f.", "author": "", "orig_id": 1416715}}, {"model": "metainfo.source", "pk": 11833, "fields": {"orig_filename": "Kraelitz-Greifenhorst_Friedrich-Johann_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185", "author": "", "orig_id": 1416716}}, {"model": "metainfo.source", "pk": 11834, "fields": {"orig_filename": "Kraemer-Widl_Marie_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 186", "author": "", "orig_id": 1416720}}, {"model": "metainfo.source", "pk": 11835, "fields": {"orig_filename": "Kraemer_August_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185", "author": "", "orig_id": 1416717}}, {"model": "metainfo.source", "pk": 11836, "fields": {"orig_filename": "Kraemer_Johann-Viktor_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185f.", "author": "", "orig_id": 1416718}}, {"model": "metainfo.source", "pk": 11837, "fields": {"orig_filename": "Kraemer_Richard_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 186", "author": "", "orig_id": 1416719}}, {"model": "metainfo.source", "pk": 11838, "fields": {"orig_filename": "Kraenzl_Josef-Leopold_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416721}}, {"model": "metainfo.source", "pk": 11839, "fields": {"orig_filename": "Kraenzl_Susanne_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416722}}, {"model": "metainfo.source", "pk": 11840, "fields": {"orig_filename": "Krafft-Ebing_Richard_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 190f.", "author": "", "orig_id": 1415253}}, {"model": "metainfo.source", "pk": 11841, "fields": {"orig_filename": "Krafft_Albrecht_1816_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416723}}, {"model": "metainfo.source", "pk": 11842, "fields": {"orig_filename": "Krafft_Barbara_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187f.", "author": "", "orig_id": 1416724}}, {"model": "metainfo.source", "pk": 11843, "fields": {"orig_filename": "Krafft_Guido_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 188", "author": "", "orig_id": 1415249}}, {"model": "metainfo.source", "pk": 11844, "fields": {"orig_filename": "Krafft_Johann-Peter_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 188f.", "author": "", "orig_id": 1415250}}, {"model": "metainfo.source", "pk": 11845, "fields": {"orig_filename": "Krafft_Josef_1786_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 189f.", "author": "", "orig_id": 1415251}}, {"model": "metainfo.source", "pk": 11846, "fields": {"orig_filename": "Krafft_Marie_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 190", "author": "", "orig_id": 1415252}}, {"model": "metainfo.source", "pk": 11847, "fields": {"orig_filename": "Kraftel_Richard_1860_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415262}}, {"model": "metainfo.source", "pk": 11848, "fields": {"orig_filename": "Kraft_Alois_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415254}}, {"model": "metainfo.source", "pk": 11849, "fields": {"orig_filename": "Kraft_Amalie_1840_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415255}}, {"model": "metainfo.source", "pk": 11850, "fields": {"orig_filename": "Kraft_Anton_1752_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415256}}, {"model": "metainfo.source", "pk": 11851, "fields": {"orig_filename": "Kraft_August_1891_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1456200}}, {"model": "metainfo.source", "pk": 11852, "fields": {"orig_filename": "Kraft_Emil_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191f.", "author": "", "orig_id": 1415257}}, {"model": "metainfo.source", "pk": 11853, "fields": {"orig_filename": "Kraft_Josef_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415258}}, {"model": "metainfo.source", "pk": 11854, "fields": {"orig_filename": "Kraft_Karl_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415259}}, {"model": "metainfo.source", "pk": 11855, "fields": {"orig_filename": "Kraft_Maximilian_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415260}}, {"model": "metainfo.source", "pk": 11856, "fields": {"orig_filename": "Kraft_Nikolaus_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415261}}, {"model": "metainfo.source", "pk": 11857, "fields": {"orig_filename": "Krahl_Ernst-August_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415263}}, {"model": "metainfo.source", "pk": 11858, "fields": {"orig_filename": "Krahl_Karl_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415264}}, {"model": "metainfo.source", "pk": 11859, "fields": {"orig_filename": "Krahuletz_Johann_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193f.", "author": "", "orig_id": 1415265}}, {"model": "metainfo.source", "pk": 11860, "fields": {"orig_filename": "Kraigher-Porges_Josepha_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415266}}, {"model": "metainfo.source", "pk": 11861, "fields": {"orig_filename": "Krainer_Paul_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415267}}, {"model": "metainfo.source", "pk": 11862, "fields": {"orig_filename": "Krainski_Maurycy_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415268}}, {"model": "metainfo.source", "pk": 11863, "fields": {"orig_filename": "Krainz_Johann_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194f.", "author": "", "orig_id": 1415269}}, {"model": "metainfo.source", "pk": 11864, "fields": {"orig_filename": "Krainz_Josef_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 195", "author": "", "orig_id": 1415270}}, {"model": "metainfo.source", "pk": 11865, "fields": {"orig_filename": "Krainz_Wilfried_1895_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 195f.", "author": "", "orig_id": 1415271}}, {"model": "metainfo.source", "pk": 11866, "fields": {"orig_filename": "Korn_Johann-Michael_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129", "author": "", "orig_id": 1415885}}, {"model": "metainfo.source", "pk": 11867, "fields": {"orig_filename": "Korn_Philipp-Anton_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415886}}, {"model": "metainfo.source", "pk": 11868, "fields": {"orig_filename": "Korn_Wenzel_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415887}}, {"model": "metainfo.source", "pk": 11869, "fields": {"orig_filename": "Korn_Wilhelmine_1786_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415888}}, {"model": "metainfo.source", "pk": 11870, "fields": {"orig_filename": "Korolija_Mirko_1886_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415971}}, {"model": "metainfo.source", "pk": 11871, "fields": {"orig_filename": "Korompay_Adolf_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415972}}, {"model": "metainfo.source", "pk": 11872, "fields": {"orig_filename": "Korompay_Gustav_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415973}}, {"model": "metainfo.source", "pk": 11873, "fields": {"orig_filename": "Korosec_Anton_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135f.", "author": "", "orig_id": 1415974}}, {"model": "metainfo.source", "pk": 11874, "fields": {"orig_filename": "Korper-Marienwerth_Karl_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 136", "author": "", "orig_id": 1415975}}, {"model": "metainfo.source", "pk": 11875, "fields": {"orig_filename": "Korponay-Komonka_Janos_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415976}}, {"model": "metainfo.source", "pk": 11876, "fields": {"orig_filename": "Korschann_Franz_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415977}}, {"model": "metainfo.source", "pk": 11877, "fields": {"orig_filename": "Korschann_Karl_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415978}}, {"model": "metainfo.source", "pk": 11878, "fields": {"orig_filename": "Korschann_Rudolf_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415979}}, {"model": "metainfo.source", "pk": 11879, "fields": {"orig_filename": "Kortleitner_Franz-Xaver_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137f.", "author": "", "orig_id": 1415980}}, {"model": "metainfo.source", "pk": 11880, "fields": {"orig_filename": "Kortschak_Johann_1849_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415981}}, {"model": "metainfo.source", "pk": 11881, "fields": {"orig_filename": "Kortz_Paul_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415982}}, {"model": "metainfo.source", "pk": 11882, "fields": {"orig_filename": "Korytko_Emil_1813_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415983}}, {"model": "metainfo.source", "pk": 11883, "fields": {"orig_filename": "Korytowski_Wiltold_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138f.", "author": "", "orig_id": 1415984}}, {"model": "metainfo.source", "pk": 11884, "fields": {"orig_filename": "Korzeniowski_Jozef_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 139", "author": "", "orig_id": 1415985}}, {"model": "metainfo.source", "pk": 11885, "fields": {"orig_filename": "Kosarek_Adolf_1830_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140", "author": "", "orig_id": 1415988}}, {"model": "metainfo.source", "pk": 11886, "fields": {"orig_filename": "Kosar_Franc_1823_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140", "author": "", "orig_id": 1415987}}, {"model": "metainfo.source", "pk": 11887, "fields": {"orig_filename": "Koscak_Ivan_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140f.", "author": "", "orig_id": 1416064}}, {"model": "metainfo.source", "pk": 11888, "fields": {"orig_filename": "Koscevic_Vjekoslav_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416065}}, {"model": "metainfo.source", "pk": 11889, "fields": {"orig_filename": "Koschat_Thomas_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141f.", "author": "", "orig_id": 1416079}}, {"model": "metainfo.source", "pk": 11890, "fields": {"orig_filename": "Koschich_Tobias-Karl_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142", "author": "", "orig_id": 1416080}}, {"model": "metainfo.source", "pk": 11891, "fields": {"orig_filename": "Koschier_Hans_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142", "author": "", "orig_id": 1416081}}, {"model": "metainfo.source", "pk": 11892, "fields": {"orig_filename": "Koschier_Laurenz_1804_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142f.", "author": "", "orig_id": 1416082}}, {"model": "metainfo.source", "pk": 11893, "fields": {"orig_filename": "Kosch_Franz_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416066}}, {"model": "metainfo.source", "pk": 11894, "fields": {"orig_filename": "Kosch_Josef_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416078}}, {"model": "metainfo.source", "pk": 11895, "fields": {"orig_filename": "Kosegarten_Wilhelm_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143", "author": "", "orig_id": 1416153}}, {"model": "metainfo.source", "pk": 11896, "fields": {"orig_filename": "Kosek_Josef_1780_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143", "author": "", "orig_id": 1416155}}, {"model": "metainfo.source", "pk": 11897, "fields": {"orig_filename": "Kosel_Hermann-Clemens_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143f.", "author": "", "orig_id": 1416156}}, {"model": "metainfo.source", "pk": 11898, "fields": {"orig_filename": "Kosel_Mansuet-Johann_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144", "author": "", "orig_id": 1416157}}, {"model": "metainfo.source", "pk": 11899, "fields": {"orig_filename": "Kosic_Baldo_1829_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144", "author": "", "orig_id": 1416158}}, {"model": "metainfo.source", "pk": 11900, "fields": {"orig_filename": "Kosier_Ljubomir_1897_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144f.", "author": "", "orig_id": 1416159}}, {"model": "metainfo.source", "pk": 11901, "fields": {"orig_filename": "Kosina_Jan-Ev_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416160}}, {"model": "metainfo.source", "pk": 11902, "fields": {"orig_filename": "Kosinski_Wladyslaw_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416161}}, {"model": "metainfo.source", "pk": 11903, "fields": {"orig_filename": "Kosir_Franc_1906_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416162}}, {"model": "metainfo.source", "pk": 11904, "fields": {"orig_filename": "Kosir_Pavel_1878_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145f.", "author": "", "orig_id": 1416164}}, {"model": "metainfo.source", "pk": 11905, "fields": {"orig_filename": "Kosjek_Gustav_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416165}}, {"model": "metainfo.source", "pk": 11906, "fields": {"orig_filename": "Kosler_Franz-Xaver_1864_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416166}}, {"model": "metainfo.source", "pk": 11907, "fields": {"orig_filename": "Kosler_Josef_1822_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416167}}, {"model": "metainfo.source", "pk": 11908, "fields": {"orig_filename": "Kosler_Peter_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146f.", "author": "", "orig_id": 1416168}}, {"model": "metainfo.source", "pk": 11909, "fields": {"orig_filename": "Kosmac_Jurij_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147", "author": "", "orig_id": 1416169}}, {"model": "metainfo.source", "pk": 11910, "fields": {"orig_filename": "Kosmak_Vaclav_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147", "author": "", "orig_id": 1416170}}, {"model": "metainfo.source", "pk": 11911, "fields": {"orig_filename": "Kosovel_Srecko_1904_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147f.", "author": "", "orig_id": 1416171}}, {"model": "metainfo.source", "pk": 11912, "fields": {"orig_filename": "Kossak_Juliusz-Fortunat_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149", "author": "", "orig_id": 1416243}}, {"model": "metainfo.source", "pk": 11913, "fields": {"orig_filename": "Kossak_Karl-Ludwig_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149", "author": "", "orig_id": 1416244}}, {"model": "metainfo.source", "pk": 11914, "fields": {"orig_filename": "Kossak_Leon_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149f.", "author": "", "orig_id": 1416245}}, {"model": "metainfo.source", "pk": 11915, "fields": {"orig_filename": "Kossak_Wojciech_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 150", "author": "", "orig_id": 1416246}}, {"model": "metainfo.source", "pk": 11916, "fields": {"orig_filename": "Kossmat_Franz_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 150f.", "author": "", "orig_id": 1416247}}, {"model": "metainfo.source", "pk": 11917, "fields": {"orig_filename": "Kossovich_Karoly_1803_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416248}}, {"model": "metainfo.source", "pk": 11918, "fields": {"orig_filename": "Kossowicz_Alexander_1874_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416249}}, {"model": "metainfo.source", "pk": 11919, "fields": {"orig_filename": "Kossowski_Henryk_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416250}}, {"model": "metainfo.source", "pk": 11920, "fields": {"orig_filename": "Kossuth-Udvard-Kossut_Ferenc_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151f.", "author": "", "orig_id": 1416251}}, {"model": "metainfo.source", "pk": 11921, "fields": {"orig_filename": "Kossuth-Udvard-Kossut_Lajos_1802_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 152f.", "author": "", "orig_id": 1416252}}, {"model": "metainfo.source", "pk": 11922, "fields": {"orig_filename": "Koss_Karl_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 148", "author": "", "orig_id": 1416172}}, {"model": "metainfo.source", "pk": 11923, "fields": {"orig_filename": "Koss_Rudolf_1884_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 148f.", "author": "", "orig_id": 1416173}}, {"model": "metainfo.source", "pk": 11924, "fields": {"orig_filename": "Kostanecki_Kazimierz_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 153f.", "author": "", "orig_id": 1416253}}, {"model": "metainfo.source", "pk": 11925, "fields": {"orig_filename": "Kostelecky_Vincenz-Franz_1801_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154", "author": "", "orig_id": 1416254}}, {"model": "metainfo.source", "pk": 11926, "fields": {"orig_filename": "Kostersitz-Marenhorst_Karl_1839_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154f.", "author": "", "orig_id": 1416256}}, {"model": "metainfo.source", "pk": 11927, "fields": {"orig_filename": "Kostersitz_Ubald_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154", "author": "", "orig_id": 1416255}}, {"model": "metainfo.source", "pk": 11928, "fields": {"orig_filename": "Kostetzky_Dominik_1753_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155", "author": "", "orig_id": 1416257}}, {"model": "metainfo.source", "pk": 11929, "fields": {"orig_filename": "Kostial_Ivan_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155", "author": "", "orig_id": 1416258}}, {"model": "metainfo.source", "pk": 11930, "fields": {"orig_filename": "Kostic_Lazar_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155f.", "author": "", "orig_id": 1416259}}, {"model": "metainfo.source", "pk": 11931, "fields": {"orig_filename": "Kostic_Milan_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416260}}, {"model": "metainfo.source", "pk": 11932, "fields": {"orig_filename": "Kostin-Kolakiewicz_Adrienne_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416261}}, {"model": "metainfo.source", "pk": 11933, "fields": {"orig_filename": "Kostlivy_Stanislav_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416262}}, {"model": "metainfo.source", "pk": 11934, "fields": {"orig_filename": "Kostner_Alois_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416263}}, {"model": "metainfo.source", "pk": 11935, "fields": {"orig_filename": "Kostrencic_Ivan_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156f.", "author": "", "orig_id": 1416264}}, {"model": "metainfo.source", "pk": 11936, "fields": {"orig_filename": "Kosutany_Tamas_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157", "author": "", "orig_id": 1416265}}, {"model": "metainfo.source", "pk": 11937, "fields": {"orig_filename": "Kosztka_Tivadar_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157f.", "author": "", "orig_id": 1416338}}, {"model": "metainfo.source", "pk": 11938, "fields": {"orig_filename": "Kos_Franc_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 139f.", "author": "", "orig_id": 1415986}}, {"model": "metainfo.source", "pk": 11939, "fields": {"orig_filename": "Kotarbinski_Jozef_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 158", "author": "", "orig_id": 1416339}}, {"model": "metainfo.source", "pk": 11940, "fields": {"orig_filename": "Kotera_Jan_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 158f.", "author": "", "orig_id": 1416340}}, {"model": "metainfo.source", "pk": 11941, "fields": {"orig_filename": "Kothgasser_Anton_1769_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 159", "author": "", "orig_id": 1416341}}, {"model": "metainfo.source", "pk": 11942, "fields": {"orig_filename": "Kotlar_Vaclav_1871_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416342}}, {"model": "metainfo.source", "pk": 11943, "fields": {"orig_filename": "Kotschy_Heinrich-Joh-Gottfried_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416343}}, {"model": "metainfo.source", "pk": 11944, "fields": {"orig_filename": "Kotschy_Theodor_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416344}}, {"model": "metainfo.source", "pk": 11945, "fields": {"orig_filename": "Kotsis_Aleksander_1836_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160f.", "author": "", "orig_id": 1416345}}, {"model": "metainfo.source", "pk": 11946, "fields": {"orig_filename": "Kotsmich_Vojtech_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416346}}, {"model": "metainfo.source", "pk": 11947, "fields": {"orig_filename": "Kottaun_Leopold_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416349}}, {"model": "metainfo.source", "pk": 11948, "fields": {"orig_filename": "Kotterba_Karl_1800_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161f.", "author": "", "orig_id": 1416350}}, {"model": "metainfo.source", "pk": 11949, "fields": {"orig_filename": "Kottie_Johann-Nep_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162", "author": "", "orig_id": 1416351}}, {"model": "metainfo.source", "pk": 11950, "fields": {"orig_filename": "Kottulinsky-Kottulin_Adalbert_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162", "author": "", "orig_id": 1416352}}, {"model": "metainfo.source", "pk": 11951, "fields": {"orig_filename": "Kott_Frantisek-Bedrich_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416347}}, {"model": "metainfo.source", "pk": 11952, "fields": {"orig_filename": "Kott_Frantisek-Stepan_1825_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416348}}, {"model": "metainfo.source", "pk": 11953, "fields": {"orig_filename": "Kotula_Rudolf_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162f.", "author": "", "orig_id": 1416353}}, {"model": "metainfo.source", "pk": 11954, "fields": {"orig_filename": "Kotzian_Josef-Maria_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416355}}, {"model": "metainfo.source", "pk": 11955, "fields": {"orig_filename": "Kotzian_Josef_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416354}}, {"model": "metainfo.source", "pk": 11956, "fields": {"orig_filename": "Kotz_Hedwig_1899_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2091921}}, {"model": "metainfo.source", "pk": 11957, "fields": {"orig_filename": "Koubek_Jan-Pravoslav_1805_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416356}}, {"model": "metainfo.source", "pk": 11958, "fields": {"orig_filename": "Koudela-Jelinkov_Josef_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163f.", "author": "", "orig_id": 1416357}}, {"model": "metainfo.source", "pk": 11959, "fields": {"orig_filename": "Koudelka_Alfred_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 164", "author": "", "orig_id": 1416358}}, {"model": "metainfo.source", "pk": 11960, "fields": {"orig_filename": "Koudelka_Joseph_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 164f.", "author": "", "orig_id": 1416359}}, {"model": "metainfo.source", "pk": 11961, "fields": {"orig_filename": "Koudelka_Pauline_1806_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416429}}, {"model": "metainfo.source", "pk": 11962, "fields": {"orig_filename": "Koukl_Antonin_1860_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416430}}, {"model": "metainfo.source", "pk": 11963, "fields": {"orig_filename": "Koula_Jan_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416431}}, {"model": "metainfo.source", "pk": 11964, "fields": {"orig_filename": "Koumas_Konstantin-Michael_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165f.", "author": "", "orig_id": 1416432}}, {"model": "metainfo.source", "pk": 11965, "fields": {"orig_filename": "Kounic_Vaclav_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416433}}, {"model": "metainfo.source", "pk": 11966, "fields": {"orig_filename": "Kounitzky_Franz_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416434}}, {"model": "metainfo.source", "pk": 11967, "fields": {"orig_filename": "Kovacevic_Andrija_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416435}}, {"model": "metainfo.source", "pk": 11968, "fields": {"orig_filename": "Kompert_Leopold_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104", "author": "", "orig_id": 1415510}}, {"model": "metainfo.source", "pk": 11969, "fields": {"orig_filename": "Kompert_Marie_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104", "author": "", "orig_id": 1415511}}, {"model": "metainfo.source", "pk": 11970, "fields": {"orig_filename": "Komzak_Karl_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104f.", "author": "", "orig_id": 1415512}}, {"model": "metainfo.source", "pk": 11971, "fields": {"orig_filename": "Koncz_Jozsef_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415514}}, {"model": "metainfo.source", "pk": 11972, "fields": {"orig_filename": "Konek_Sandor_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415515}}, {"model": "metainfo.source", "pk": 11973, "fields": {"orig_filename": "Konhaeuser_Franz_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415516}}, {"model": "metainfo.source", "pk": 11974, "fields": {"orig_filename": "Konicek_Oldrich_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105f.", "author": "", "orig_id": 1415517}}, {"model": "metainfo.source", "pk": 11975, "fields": {"orig_filename": "Koniuszko_Waclaw_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106", "author": "", "orig_id": 1415518}}, {"model": "metainfo.source", "pk": 11976, "fields": {"orig_filename": "Konkoly-Thege_Miklos_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106", "author": "", "orig_id": 1415519}}, {"model": "metainfo.source", "pk": 11977, "fields": {"orig_filename": "Konopa_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106f.", "author": "", "orig_id": 1415520}}, {"model": "metainfo.source", "pk": 11978, "fields": {"orig_filename": "Konopnicka_Maria_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415521}}, {"model": "metainfo.source", "pk": 11979, "fields": {"orig_filename": "Konrad_Heinrich_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415522}}, {"model": "metainfo.source", "pk": 11980, "fields": {"orig_filename": "Konrad_Johann_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415523}}, {"model": "metainfo.source", "pk": 11981, "fields": {"orig_filename": "Konrad_Josef-Deograt_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107f.", "author": "", "orig_id": 1415524}}, {"model": "metainfo.source", "pk": 11982, "fields": {"orig_filename": "Konrad_Karel_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415525}}, {"model": "metainfo.source", "pk": 11983, "fields": {"orig_filename": "Konrad_Karl_1874_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415526}}, {"model": "metainfo.source", "pk": 11984, "fields": {"orig_filename": "Konried_Julius_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108f.", "author": "", "orig_id": 1415529}}, {"model": "metainfo.source", "pk": 11985, "fields": {"orig_filename": "Konsek_Valentin_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415531}}, {"model": "metainfo.source", "pk": 11986, "fields": {"orig_filename": "Konstantin_Frieda_1884_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415532}}, {"model": "metainfo.source", "pk": 11987, "fields": {"orig_filename": "Kontak_Antun_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415605}}, {"model": "metainfo.source", "pk": 11988, "fields": {"orig_filename": "Konta_Ignaz_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415534}}, {"model": "metainfo.source", "pk": 11989, "fields": {"orig_filename": "Konti_Isidor_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415606}}, {"model": "metainfo.source", "pk": 11990, "fields": {"orig_filename": "Kontschnigg_Peter_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415607}}, {"model": "metainfo.source", "pk": 11991, "fields": {"orig_filename": "Kontski_Antoni_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415608}}, {"model": "metainfo.source", "pk": 11992, "fields": {"orig_filename": "Kontski_Karel_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110f.", "author": "", "orig_id": 1415609}}, {"model": "metainfo.source", "pk": 11993, "fields": {"orig_filename": "Kont_Ignac_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415533}}, {"model": "metainfo.source", "pk": 11994, "fields": {"orig_filename": "Konupek_Jan_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415610}}, {"model": "metainfo.source", "pk": 11995, "fields": {"orig_filename": "Konyi_Mano_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415611}}, {"model": "metainfo.source", "pk": 11996, "fields": {"orig_filename": "Kopacsy_Jozsef_1775_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112", "author": "", "orig_id": 1415614}}, {"model": "metainfo.source", "pk": 11997, "fields": {"orig_filename": "Kopac_Josip_1863_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415613}}, {"model": "metainfo.source", "pk": 11998, "fields": {"orig_filename": "Kopajtic_Sigismund_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112", "author": "", "orig_id": 1415615}}, {"model": "metainfo.source", "pk": 11999, "fields": {"orig_filename": "Kopallik_Franz_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415618}}, {"model": "metainfo.source", "pk": 12000, "fields": {"orig_filename": "Kopallik_Joseph_1849_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415619}}, {"model": "metainfo.source", "pk": 12001, "fields": {"orig_filename": "Kopal_Karl_1788_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112f.", "author": "", "orig_id": 1415616}}, {"model": "metainfo.source", "pk": 12002, "fields": {"orig_filename": "Kopal_Leopold_1785_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415617}}, {"model": "metainfo.source", "pk": 12003, "fields": {"orig_filename": "Kopatsch_Johann_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113f.", "author": "", "orig_id": 1415620}}, {"model": "metainfo.source", "pk": 12004, "fields": {"orig_filename": "Kopecky_Matej_1775_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114", "author": "", "orig_id": 1415621}}, {"model": "metainfo.source", "pk": 12005, "fields": {"orig_filename": "Kopecky_Otakar_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114", "author": "", "orig_id": 1415622}}, {"model": "metainfo.source", "pk": 12006, "fields": {"orig_filename": "Kopernicki_Izydor_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114f.", "author": "", "orig_id": 1415623}}, {"model": "metainfo.source", "pk": 12007, "fields": {"orig_filename": "Kopetzky_Franz-Johann_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415625}}, {"model": "metainfo.source", "pk": 12008, "fields": {"orig_filename": "Kopetzky_Olga_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415698}}, {"model": "metainfo.source", "pk": 12009, "fields": {"orig_filename": "Kopetz_Wenzel-Gustav_1782_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415624}}, {"model": "metainfo.source", "pk": 12010, "fields": {"orig_filename": "Kopff_Johann-Vincenz_1763_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415699}}, {"model": "metainfo.source", "pk": 12011, "fields": {"orig_filename": "Kopff_Wiktor_1805_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115f.", "author": "", "orig_id": 1415700}}, {"model": "metainfo.source", "pk": 12012, "fields": {"orig_filename": "Kopfinger-Trebbienau_Eugen_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 116", "author": "", "orig_id": 1415701}}, {"model": "metainfo.source", "pk": 12013, "fields": {"orig_filename": "Kopitar_Bartholomaeus_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 116f.", "author": "", "orig_id": 1415702}}, {"model": "metainfo.source", "pk": 12014, "fields": {"orig_filename": "Kopko_Petro-Maksymovyc_1886_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117", "author": "", "orig_id": 1415703}}, {"model": "metainfo.source", "pk": 12015, "fields": {"orig_filename": "Koplenig_Hilde_1904_2002.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1437316}}, {"model": "metainfo.source", "pk": 12016, "fields": {"orig_filename": "Kopler_Leopold_1881_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117", "author": "", "orig_id": 1415704}}, {"model": "metainfo.source", "pk": 12017, "fields": {"orig_filename": "Koplhuber_Leopold_1763_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117f.", "author": "", "orig_id": 1415705}}, {"model": "metainfo.source", "pk": 12018, "fields": {"orig_filename": "Koppay_Josef-Arpad_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415709}}, {"model": "metainfo.source", "pk": 12019, "fields": {"orig_filename": "Koppel_Gustav_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415710}}, {"model": "metainfo.source", "pk": 12020, "fields": {"orig_filename": "Koppel_Hans_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415711}}, {"model": "metainfo.source", "pk": 12021, "fields": {"orig_filename": "Koppensteiner_Anton-Michael_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119f.", "author": "", "orig_id": 1415712}}, {"model": "metainfo.source", "pk": 12022, "fields": {"orig_filename": "Koppitz_Rudolf_1884_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415713}}, {"model": "metainfo.source", "pk": 12023, "fields": {"orig_filename": "Koppmann_Adolf_1781_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415715}}, {"model": "metainfo.source", "pk": 12024, "fields": {"orig_filename": "Kopp_Georg_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118", "author": "", "orig_id": 1415706}}, {"model": "metainfo.source", "pk": 12025, "fields": {"orig_filename": "Kopp_Hermann_1863_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118", "author": "", "orig_id": 1415707}}, {"model": "metainfo.source", "pk": 12026, "fields": {"orig_filename": "Kopp_Josef_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118f.", "author": "", "orig_id": 1415708}}, {"model": "metainfo.source", "pk": 12027, "fields": {"orig_filename": "Koprivnik_Janez_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415716}}, {"model": "metainfo.source", "pk": 12028, "fields": {"orig_filename": "Kopstein_Regina_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415717}}, {"model": "metainfo.source", "pk": 12029, "fields": {"orig_filename": "Korac_Vitomir_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120f.", "author": "", "orig_id": 1415718}}, {"model": "metainfo.source", "pk": 12030, "fields": {"orig_filename": "Korajac_Vilim_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415719}}, {"model": "metainfo.source", "pk": 12031, "fields": {"orig_filename": "Koralt_Franz_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415788}}, {"model": "metainfo.source", "pk": 12032, "fields": {"orig_filename": "Koranyi_Frigyes_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415790}}, {"model": "metainfo.source", "pk": 12033, "fields": {"orig_filename": "Koranyi_Sandor_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415791}}, {"model": "metainfo.source", "pk": 12034, "fields": {"orig_filename": "Koran_Josef-Jan_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415789}}, {"model": "metainfo.source", "pk": 12035, "fields": {"orig_filename": "Korb-Weidenheim_Karl_1836_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122f.", "author": "", "orig_id": 1415793}}, {"model": "metainfo.source", "pk": 12036, "fields": {"orig_filename": "Korber-Korborn_Gregor-Norbert_1749_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123", "author": "", "orig_id": 1415794}}, {"model": "metainfo.source", "pk": 12037, "fields": {"orig_filename": "Korbuly_Johann_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123", "author": "", "orig_id": 1415795}}, {"model": "metainfo.source", "pk": 12038, "fields": {"orig_filename": "Korb_Floris-Nandor_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415792}}, {"model": "metainfo.source", "pk": 12039, "fields": {"orig_filename": "Korcian_Benedikt_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123f.", "author": "", "orig_id": 1415796}}, {"model": "metainfo.source", "pk": 12040, "fields": {"orig_filename": "Korczynski_Anton_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124", "author": "", "orig_id": 1415798}}, {"model": "metainfo.source", "pk": 12041, "fields": {"orig_filename": "Korczynski_Edward_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124", "author": "", "orig_id": 1415799}}, {"model": "metainfo.source", "pk": 12042, "fields": {"orig_filename": "Kordac_Franz_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124f.", "author": "", "orig_id": 1415800}}, {"model": "metainfo.source", "pk": 12043, "fields": {"orig_filename": "Kordelic_Karel_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415801}}, {"model": "metainfo.source", "pk": 12044, "fields": {"orig_filename": "Kordes_Leopold_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415802}}, {"model": "metainfo.source", "pk": 12045, "fields": {"orig_filename": "Kordon_Fridolin_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415803}}, {"model": "metainfo.source", "pk": 12046, "fields": {"orig_filename": "Korecki_Leon_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125f.", "author": "", "orig_id": 1415804}}, {"model": "metainfo.source", "pk": 12047, "fields": {"orig_filename": "Korenic_Stjepan_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415805}}, {"model": "metainfo.source", "pk": 12048, "fields": {"orig_filename": "Korensky_Franz_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415806}}, {"model": "metainfo.source", "pk": 12049, "fields": {"orig_filename": "Korensky_Josef_1847_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415807}}, {"model": "metainfo.source", "pk": 12050, "fields": {"orig_filename": "Korinek_Frantisek-Branislav_1831_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126f.", "author": "", "orig_id": 1415878}}, {"model": "metainfo.source", "pk": 12051, "fields": {"orig_filename": "Korinek_Josef-Miloslav_1899_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 127", "author": "", "orig_id": 1415879}}, {"model": "metainfo.source", "pk": 12052, "fields": {"orig_filename": "Koristka_Karel-Frantisek-Edvard_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 127f.", "author": "", "orig_id": 1415880}}, {"model": "metainfo.source", "pk": 12053, "fields": {"orig_filename": "Koritschoner_Franz_1892_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128", "author": "", "orig_id": 1415881}}, {"model": "metainfo.source", "pk": 12054, "fields": {"orig_filename": "Korizmics_Laszlo_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128", "author": "", "orig_id": 1415882}}, {"model": "metainfo.source", "pk": 12055, "fields": {"orig_filename": "Korlevic_Antun_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128f.", "author": "", "orig_id": 1415883}}, {"model": "metainfo.source", "pk": 12056, "fields": {"orig_filename": "Korn-Korningen_Victor_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415889}}, {"model": "metainfo.source", "pk": 12057, "fields": {"orig_filename": "Kornauth_Hans_1851_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130f.", "author": "", "orig_id": 1415890}}, {"model": "metainfo.source", "pk": 12058, "fields": {"orig_filename": "Kornberger_Richard_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415891}}, {"model": "metainfo.source", "pk": 12059, "fields": {"orig_filename": "Korner_Philipp-Thaddaeus_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415892}}, {"model": "metainfo.source", "pk": 12060, "fields": {"orig_filename": "Kornfeld_Aron_1795_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415893}}, {"model": "metainfo.source", "pk": 12061, "fields": {"orig_filename": "Kornfeld_Paul_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131f.", "author": "", "orig_id": 1415894}}, {"model": "metainfo.source", "pk": 12062, "fields": {"orig_filename": "Kornfeld_Siegmund_1852_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415895}}, {"model": "metainfo.source", "pk": 12063, "fields": {"orig_filename": "Kornfeld_Siegmund_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415896}}, {"model": "metainfo.source", "pk": 12064, "fields": {"orig_filename": "Korngold_Julius-Leopold_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415897}}, {"model": "metainfo.source", "pk": 12065, "fields": {"orig_filename": "Kornhaeusel_Josef-Georg_1782_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132f.", "author": "", "orig_id": 1415898}}, {"model": "metainfo.source", "pk": 12066, "fields": {"orig_filename": "Kornheisl_Franz_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 133", "author": "", "orig_id": 1415966}}, {"model": "metainfo.source", "pk": 12067, "fields": {"orig_filename": "Kornhuber_Andreas_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 133f.", "author": "", "orig_id": 1415967}}, {"model": "metainfo.source", "pk": 12068, "fields": {"orig_filename": "Kornitzer_Alois_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 134", "author": "", "orig_id": 1415969}}, {"model": "metainfo.source", "pk": 12069, "fields": {"orig_filename": "Korntheuer_Friedrich-Josef_1779_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 134f.", "author": "", "orig_id": 1415970}}, {"model": "metainfo.source", "pk": 12070, "fields": {"orig_filename": "Korn_Alfred_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129", "author": "", "orig_id": 1415884}}, {"model": "metainfo.source", "pk": 12071, "fields": {"orig_filename": "Kolar_Heinrich_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71f.", "author": "", "orig_id": 1416512}}, {"model": "metainfo.source", "pk": 12072, "fields": {"orig_filename": "Kolar_Josef-Jiri_1812_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72", "author": "", "orig_id": 1416514}}, {"model": "metainfo.source", "pk": 12073, "fields": {"orig_filename": "Kolar_Josef_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72", "author": "", "orig_id": 1416513}}, {"model": "metainfo.source", "pk": 12074, "fields": {"orig_filename": "Kolatschek_Julius_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416519}}, {"model": "metainfo.source", "pk": 12075, "fields": {"orig_filename": "Kola_Richard_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70f.", "author": "", "orig_id": 1416507}}, {"model": "metainfo.source", "pk": 12076, "fields": {"orig_filename": "Kolbany_Paul_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416589}}, {"model": "metainfo.source", "pk": 12077, "fields": {"orig_filename": "Kolbenhayer_Ferenc_1840_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416593}}, {"model": "metainfo.source", "pk": 12078, "fields": {"orig_filename": "Kolbenheyer_Gyula_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416594}}, {"model": "metainfo.source", "pk": 12079, "fields": {"orig_filename": "Kolbenheyer_Karl_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77", "author": "", "orig_id": 1416595}}, {"model": "metainfo.source", "pk": 12080, "fields": {"orig_filename": "Kolbenheyer_Moric_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77", "author": "", "orig_id": 1416596}}, {"model": "metainfo.source", "pk": 12081, "fields": {"orig_filename": "Kolbenschlag_Friedrich_1869_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77f.", "author": "", "orig_id": 1416597}}, {"model": "metainfo.source", "pk": 12082, "fields": {"orig_filename": "Kolbensteiner_Wilhelm_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78", "author": "", "orig_id": 1416598}}, {"model": "metainfo.source", "pk": 12083, "fields": {"orig_filename": "Kolben_Emil_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416592}}, {"model": "metainfo.source", "pk": 12084, "fields": {"orig_filename": "Kolberg_Joseph_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78", "author": "", "orig_id": 1416599}}, {"model": "metainfo.source", "pk": 12085, "fields": {"orig_filename": "Kolberg_Oskar-Henryk_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78f.", "author": "", "orig_id": 1416600}}, {"model": "metainfo.source", "pk": 12086, "fields": {"orig_filename": "Kolbe_Friedrich_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416590}}, {"model": "metainfo.source", "pk": 12087, "fields": {"orig_filename": "Kolbe_Josef_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75f.", "author": "", "orig_id": 1416591}}, {"model": "metainfo.source", "pk": 12088, "fields": {"orig_filename": "Kolb_Alexis_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73f.", "author": "", "orig_id": 1416520}}, {"model": "metainfo.source", "pk": 12089, "fields": {"orig_filename": "Kolb_Alois_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74", "author": "", "orig_id": 1416521}}, {"model": "metainfo.source", "pk": 12090, "fields": {"orig_filename": "Kolb_Johann-Georg_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74", "author": "", "orig_id": 1416522}}, {"model": "metainfo.source", "pk": 12091, "fields": {"orig_filename": "Kolb_Josef_1843_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74f.", "author": "", "orig_id": 1416523}}, {"model": "metainfo.source", "pk": 12092, "fields": {"orig_filename": "Kolb_Viktor_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416588}}, {"model": "metainfo.source", "pk": 12093, "fields": {"orig_filename": "Kolder_Josef_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416601}}, {"model": "metainfo.source", "pk": 12094, "fields": {"orig_filename": "Kolenc_Anton_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416602}}, {"model": "metainfo.source", "pk": 12095, "fields": {"orig_filename": "Kolesovsky_Zikmund-Michael_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416603}}, {"model": "metainfo.source", "pk": 12096, "fields": {"orig_filename": "Kolessa_Filaret-Mychajlovyc_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79f.", "author": "", "orig_id": 1416604}}, {"model": "metainfo.source", "pk": 12097, "fields": {"orig_filename": "Kolessa_Oleksandr-Mychajlovyc_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 80", "author": "", "orig_id": 1416605}}, {"model": "metainfo.source", "pk": 12098, "fields": {"orig_filename": "Kolig_Anton_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 80f.", "author": "", "orig_id": 1416606}}, {"model": "metainfo.source", "pk": 12099, "fields": {"orig_filename": "Koliha_Jan_1890_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 81f.", "author": "", "orig_id": 1416607}}, {"model": "metainfo.source", "pk": 12100, "fields": {"orig_filename": "Kolischer_Emil_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82f.", "author": "", "orig_id": 1416677}}, {"model": "metainfo.source", "pk": 12101, "fields": {"orig_filename": "Kolisch_Ignaz_1837_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416608}}, {"model": "metainfo.source", "pk": 12102, "fields": {"orig_filename": "Kolisch_Rudolf_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416609}}, {"model": "metainfo.source", "pk": 12103, "fields": {"orig_filename": "Kolisch_Sigmund_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416676}}, {"model": "metainfo.source", "pk": 12104, "fields": {"orig_filename": "Kolisko_Alexander_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 83", "author": "", "orig_id": 1416678}}, {"model": "metainfo.source", "pk": 12105, "fields": {"orig_filename": "Kolisko_Eugen_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 2 (15.03.2013)", "author": "", "orig_id": 1441213}}, {"model": "metainfo.source", "pk": 12106, "fields": {"orig_filename": "Kolisko_Hans_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416680}}, {"model": "metainfo.source", "pk": 12107, "fields": {"orig_filename": "Kolisko_Rudolf_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416679}}, {"model": "metainfo.source", "pk": 12108, "fields": {"orig_filename": "Kolland_Engelbert_1827_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416682}}, {"model": "metainfo.source", "pk": 12109, "fields": {"orig_filename": "Kollanyi_Ferenc_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84f.", "author": "", "orig_id": 1416683}}, {"model": "metainfo.source", "pk": 12110, "fields": {"orig_filename": "Kollarz_Adolf_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86", "author": "", "orig_id": 1416686}}, {"model": "metainfo.source", "pk": 12111, "fields": {"orig_filename": "Kollarz_Franz_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86", "author": "", "orig_id": 1416687}}, {"model": "metainfo.source", "pk": 12112, "fields": {"orig_filename": "Kollarz_Friedrich_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86f.", "author": "", "orig_id": 1416688}}, {"model": "metainfo.source", "pk": 12113, "fields": {"orig_filename": "Kollar_Jan_1793_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 85", "author": "", "orig_id": 1416684}}, {"model": "metainfo.source", "pk": 12114, "fields": {"orig_filename": "Kollar_Vincenz_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 85f.", "author": "", "orig_id": 1416685}}, {"model": "metainfo.source", "pk": 12115, "fields": {"orig_filename": "Kollert_Viktor_1887_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1416699}}, {"model": "metainfo.source", "pk": 12116, "fields": {"orig_filename": "Koller_Alexander_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87", "author": "", "orig_id": 1416689}}, {"model": "metainfo.source", "pk": 12117, "fields": {"orig_filename": "Koller_Benedikt-Joseph-Maria_1767_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87", "author": "", "orig_id": 1416690}}, {"model": "metainfo.source", "pk": 12118, "fields": {"orig_filename": "Koller_Bronislawa_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87f.", "author": "", "orig_id": 1416691}}, {"model": "metainfo.source", "pk": 12119, "fields": {"orig_filename": "Koller_Franz_1767_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416692}}, {"model": "metainfo.source", "pk": 12120, "fields": {"orig_filename": "Koller_Josef_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416693}}, {"model": "metainfo.source", "pk": 12121, "fields": {"orig_filename": "Koller_Karl_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416694}}, {"model": "metainfo.source", "pk": 12122, "fields": {"orig_filename": "Koller_Marian_1792_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88f.", "author": "", "orig_id": 1416695}}, {"model": "metainfo.source", "pk": 12123, "fields": {"orig_filename": "Koller_Oswald_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 89", "author": "", "orig_id": 1416696}}, {"model": "metainfo.source", "pk": 12124, "fields": {"orig_filename": "Koller_Rudolf_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 89f.", "author": "", "orig_id": 1416697}}, {"model": "metainfo.source", "pk": 12125, "fields": {"orig_filename": "Koller_Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1416698}}, {"model": "metainfo.source", "pk": 12126, "fields": {"orig_filename": "Kolletschka_Jakob_1803_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1415320}}, {"model": "metainfo.source", "pk": 12127, "fields": {"orig_filename": "Kollmaneck_Ferdinand_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90f.", "author": "", "orig_id": 1415321}}, {"model": "metainfo.source", "pk": 12128, "fields": {"orig_filename": "Kollmann_Hynek_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91", "author": "", "orig_id": 1415322}}, {"model": "metainfo.source", "pk": 12129, "fields": {"orig_filename": "Kollmann_Ignaz_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91", "author": "", "orig_id": 1415323}}, {"model": "metainfo.source", "pk": 12130, "fields": {"orig_filename": "Kollmann_Robert_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91f.", "author": "", "orig_id": 1415324}}, {"model": "metainfo.source", "pk": 12131, "fields": {"orig_filename": "Kollonits-Kollegrad_Maximilian_1761_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92", "author": "", "orig_id": 1415325}}, {"model": "metainfo.source", "pk": 12132, "fields": {"orig_filename": "Koll_Franz_1894_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416681}}, {"model": "metainfo.source", "pk": 12133, "fields": {"orig_filename": "Kolman_Karel_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415328}}, {"model": "metainfo.source", "pk": 12134, "fields": {"orig_filename": "Kolmar_Edmund_1841_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415329}}, {"model": "metainfo.source", "pk": 12135, "fields": {"orig_filename": "Kolmar_Jozsef_1769_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415330}}, {"model": "metainfo.source", "pk": 12136, "fields": {"orig_filename": "Kolmer_Gustav_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415331}}, {"model": "metainfo.source", "pk": 12137, "fields": {"orig_filename": "Kolmer_Walter_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93f.", "author": "", "orig_id": 1415332}}, {"model": "metainfo.source", "pk": 12138, "fields": {"orig_filename": "Kolm_Berta_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92", "author": "", "orig_id": 1415326}}, {"model": "metainfo.source", "pk": 12139, "fields": {"orig_filename": "Kolm_Gustav-Anton_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92f.", "author": "", "orig_id": 1415327}}, {"model": "metainfo.source", "pk": 12140, "fields": {"orig_filename": "Kolodziejczyk_Edmund_1888_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 94", "author": "", "orig_id": 1415333}}, {"model": "metainfo.source", "pk": 12141, "fields": {"orig_filename": "Kolodziejski_Walery_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 94f.", "author": "", "orig_id": 1415334}}, {"model": "metainfo.source", "pk": 12142, "fields": {"orig_filename": "Kolombatovic_Juraj_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415335}}, {"model": "metainfo.source", "pk": 12143, "fields": {"orig_filename": "Kolossvary_Sandor_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415336}}, {"model": "metainfo.source", "pk": 12144, "fields": {"orig_filename": "Kolosvary_Sandor_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415337}}, {"model": "metainfo.source", "pk": 12145, "fields": {"orig_filename": "Kolowrat-Krakowsky_Alexander-Josef_1886_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95f.", "author": "", "orig_id": 1415338}}, {"model": "metainfo.source", "pk": 12146, "fields": {"orig_filename": "Kolowrat-Krakowsky_Alois-Joseph_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 96", "author": "", "orig_id": 1415339}}, {"model": "metainfo.source", "pk": 12147, "fields": {"orig_filename": "Kolowrat-Krakowsky_Johann-Nep-Karl_1748_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 96", "author": "", "orig_id": 1415340}}, {"model": "metainfo.source", "pk": 12148, "fields": {"orig_filename": "Kolowrat-Krakowsky_Leopold_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97", "author": "", "orig_id": 1415341}}, {"model": "metainfo.source", "pk": 12149, "fields": {"orig_filename": "Kolowrat-Liebsteinsky_Franz-Anton_1778_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97", "author": "", "orig_id": 1415342}}, {"model": "metainfo.source", "pk": 12150, "fields": {"orig_filename": "Kolowrat-Liebsteinsky_Vinzenz-Maria_1750_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97f.", "author": "", "orig_id": 1415415}}, {"model": "metainfo.source", "pk": 12151, "fields": {"orig_filename": "Kolp_Engelbert_1840_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415416}}, {"model": "metainfo.source", "pk": 12152, "fields": {"orig_filename": "Komarek_Franz-Xaver_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415417}}, {"model": "metainfo.source", "pk": 12153, "fields": {"orig_filename": "Komaromy_Andras_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415418}}, {"model": "metainfo.source", "pk": 12154, "fields": {"orig_filename": "Komatar_Franc_1875_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98f.", "author": "", "orig_id": 1415420}}, {"model": "metainfo.source", "pk": 12155, "fields": {"orig_filename": "Komauer_Edwin_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99", "author": "", "orig_id": 1415421}}, {"model": "metainfo.source", "pk": 12156, "fields": {"orig_filename": "Komenda_Anton_1795_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99", "author": "", "orig_id": 1415422}}, {"model": "metainfo.source", "pk": 12157, "fields": {"orig_filename": "Komers-Lindenbach_Camillo_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100", "author": "", "orig_id": 1415424}}, {"model": "metainfo.source", "pk": 12158, "fields": {"orig_filename": "Komers-Lindenbach_Emanuel-Heinrich_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100", "author": "", "orig_id": 1415425}}, {"model": "metainfo.source", "pk": 12159, "fields": {"orig_filename": "Komers-Lindenbach_Karl-Eduard_1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100f.", "author": "", "orig_id": 1415426}}, {"model": "metainfo.source", "pk": 12160, "fields": {"orig_filename": "Komers_Anton-Emanuel_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99f.", "author": "", "orig_id": 1415423}}, {"model": "metainfo.source", "pk": 12161, "fields": {"orig_filename": "Kometer_Bartholomaeus_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415427}}, {"model": "metainfo.source", "pk": 12162, "fields": {"orig_filename": "Kometer_Franz-Michael_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415428}}, {"model": "metainfo.source", "pk": 12163, "fields": {"orig_filename": "Kometer_Johann-Ev_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415429}}, {"model": "metainfo.source", "pk": 12164, "fields": {"orig_filename": "Komjathy_Jenoe_1858_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101f.", "author": "", "orig_id": 1415430}}, {"model": "metainfo.source", "pk": 12165, "fields": {"orig_filename": "Komlossy_Ferenc_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415431}}, {"model": "metainfo.source", "pk": 12166, "fields": {"orig_filename": "Komlossy_Ida_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415432}}, {"model": "metainfo.source", "pk": 12167, "fields": {"orig_filename": "Komlosy_Franz_1817_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415433}}, {"model": "metainfo.source", "pk": 12168, "fields": {"orig_filename": "Komm_Ferdinand_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102f.", "author": "", "orig_id": 1415434}}, {"model": "metainfo.source", "pk": 12169, "fields": {"orig_filename": "Komorowski_Stephan-Julius-Maria_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415435}}, {"model": "metainfo.source", "pk": 12170, "fields": {"orig_filename": "Komorzynski_Johann_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415436}}, {"model": "metainfo.source", "pk": 12171, "fields": {"orig_filename": "Komorzynski_Ludwig_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415437}}, {"model": "metainfo.source", "pk": 12172, "fields": {"orig_filename": "Kompatscher_Andreas_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103f.", "author": "", "orig_id": 1415438}}, {"model": "metainfo.source", "pk": 12173, "fields": {"orig_filename": "Koennen-Horak-Hoehenkampf_Ludwig_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41f.", "author": "", "orig_id": 1416135}}, {"model": "metainfo.source", "pk": 12174, "fields": {"orig_filename": "Koenyoeki_Jozsef_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416136}}, {"model": "metainfo.source", "pk": 12175, "fields": {"orig_filename": "Koenyves-Toth_Mihaly_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416137}}, {"model": "metainfo.source", "pk": 12176, "fields": {"orig_filename": "Koepfle_Josef-Anton_1757_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416138}}, {"model": "metainfo.source", "pk": 12177, "fields": {"orig_filename": "Koepl_Robert_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42f.", "author": "", "orig_id": 1416139}}, {"model": "metainfo.source", "pk": 12178, "fields": {"orig_filename": "Koepp-Felsenthal_Anton_1766_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416140}}, {"model": "metainfo.source", "pk": 12179, "fields": {"orig_filename": "Koepp-Felsenthal_Rudolf_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416141}}, {"model": "metainfo.source", "pk": 12180, "fields": {"orig_filename": "Koeppel_Karl_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416142}}, {"model": "metainfo.source", "pk": 12181, "fields": {"orig_filename": "Koeppner_Karl_1871_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416143}}, {"model": "metainfo.source", "pk": 12182, "fields": {"orig_filename": "Koerber-Horwitz_Grete_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46", "author": "", "orig_id": 1416149}}, {"model": "metainfo.source", "pk": 12183, "fields": {"orig_filename": "Koerber_Ernest_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 44f.", "author": "", "orig_id": 1416144}}, {"model": "metainfo.source", "pk": 12184, "fields": {"orig_filename": "Koerber_Karl_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416145}}, {"model": "metainfo.source", "pk": 12185, "fields": {"orig_filename": "Koerber_Marie_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416146}}, {"model": "metainfo.source", "pk": 12186, "fields": {"orig_filename": "Koerber_Otto_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416147}}, {"model": "metainfo.source", "pk": 12187, "fields": {"orig_filename": "Koerber_Philipp_1812_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45f.", "author": "", "orig_id": 1416148}}, {"model": "metainfo.source", "pk": 12188, "fields": {"orig_filename": "Koerbler_Djuro_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46", "author": "", "orig_id": 1416150}}, {"model": "metainfo.source", "pk": 12189, "fields": {"orig_filename": "Koerner_Eduard_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46f.", "author": "", "orig_id": 1416151}}, {"model": "metainfo.source", "pk": 12190, "fields": {"orig_filename": "Koerner_Josef_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47", "author": "", "orig_id": 1416152}}, {"model": "metainfo.source", "pk": 12191, "fields": {"orig_filename": "Koerner_Moritz_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47", "author": "", "orig_id": 1416220}}, {"model": "metainfo.source", "pk": 12192, "fields": {"orig_filename": "Koernyei_Janos_1831_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47f.", "author": "", "orig_id": 1416221}}, {"model": "metainfo.source", "pk": 12193, "fields": {"orig_filename": "Koeroesfoei-Kriesch_Aladar_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 48", "author": "", "orig_id": 1416222}}, {"model": "metainfo.source", "pk": 12194, "fields": {"orig_filename": "Koeroesi-Csoma_Sandor_1784_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49", "author": "", "orig_id": 1416224}}, {"model": "metainfo.source", "pk": 12195, "fields": {"orig_filename": "Koeroesi_Josef_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 48", "author": "", "orig_id": 1416223}}, {"model": "metainfo.source", "pk": 12196, "fields": {"orig_filename": "Koeroesy-Szanto_Josef_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49", "author": "", "orig_id": 1416225}}, {"model": "metainfo.source", "pk": 12197, "fields": {"orig_filename": "Koerschner_Leander_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49f.", "author": "", "orig_id": 1416226}}, {"model": "metainfo.source", "pk": 12198, "fields": {"orig_filename": "Koessler_Hans_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50", "author": "", "orig_id": 1416227}}, {"model": "metainfo.source", "pk": 12199, "fields": {"orig_filename": "Koessler_Kornelius_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50", "author": "", "orig_id": 1416228}}, {"model": "metainfo.source", "pk": 12200, "fields": {"orig_filename": "Koessler_Ludwig_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50f.", "author": "", "orig_id": 1416229}}, {"model": "metainfo.source", "pk": 12201, "fields": {"orig_filename": "Koester_Alexander_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416230}}, {"model": "metainfo.source", "pk": 12202, "fields": {"orig_filename": "Koestinger_Franz_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416231}}, {"model": "metainfo.source", "pk": 12203, "fields": {"orig_filename": "Koestler_Hugo_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416232}}, {"model": "metainfo.source", "pk": 12204, "fields": {"orig_filename": "Koestlin_August_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51f.", "author": "", "orig_id": 1416233}}, {"model": "metainfo.source", "pk": 12205, "fields": {"orig_filename": "Koeszegi-Brandl_Gusztav_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416234}}, {"model": "metainfo.source", "pk": 12206, "fields": {"orig_filename": "Koeteles_Samuel_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416235}}, {"model": "metainfo.source", "pk": 12207, "fields": {"orig_filename": "Koettstorfer_Josef_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416236}}, {"model": "metainfo.source", "pk": 12208, "fields": {"orig_filename": "Koevary_Laszlo_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52f.", "author": "", "orig_id": 1416237}}, {"model": "metainfo.source", "pk": 12209, "fields": {"orig_filename": "Koever_Lajos_1825_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53", "author": "", "orig_id": 1416238}}, {"model": "metainfo.source", "pk": 12210, "fields": {"orig_filename": "Koevesligethy_Rado_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53", "author": "", "orig_id": 1416240}}, {"model": "metainfo.source", "pk": 12211, "fields": {"orig_filename": "Koevess-Koevesshaza_Hermann_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53f.", "author": "", "orig_id": 1416241}}, {"model": "metainfo.source", "pk": 12212, "fields": {"orig_filename": "Koevy_Sandor_1763_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 54", "author": "", "orig_id": 1416242}}, {"model": "metainfo.source", "pk": 12213, "fields": {"orig_filename": "Koffler_Jozef_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 54", "author": "", "orig_id": 1416311}}, {"model": "metainfo.source", "pk": 12214, "fields": {"orig_filename": "Kofler_Adelheid_1889_1985.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2080799}}, {"model": "metainfo.source", "pk": 12215, "fields": {"orig_filename": "Kofler_Albertine_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416312}}, {"model": "metainfo.source", "pk": 12216, "fields": {"orig_filename": "Kofler_Anton_1855_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416313}}, {"model": "metainfo.source", "pk": 12217, "fields": {"orig_filename": "Kofler_Irenaeus_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416315}}, {"model": "metainfo.source", "pk": 12218, "fields": {"orig_filename": "Kofler_Johann-Ev_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416316}}, {"model": "metainfo.source", "pk": 12219, "fields": {"orig_filename": "Kofler_Johann-Nep_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416317}}, {"model": "metainfo.source", "pk": 12220, "fields": {"orig_filename": "Kofler_Leo_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416318}}, {"model": "metainfo.source", "pk": 12221, "fields": {"orig_filename": "Kofler_Nikolaus_1776_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416319}}, {"model": "metainfo.source", "pk": 12222, "fields": {"orig_filename": "Kofler_Oswald_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57f.", "author": "", "orig_id": 1416320}}, {"model": "metainfo.source", "pk": 12223, "fields": {"orig_filename": "Kofler_Wilhelmine_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416321}}, {"model": "metainfo.source", "pk": 12224, "fields": {"orig_filename": "Kogerer_Heinrich_1819_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416322}}, {"model": "metainfo.source", "pk": 12225, "fields": {"orig_filename": "Koglbauer_Br-Benno_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416324}}, {"model": "metainfo.source", "pk": 12226, "fields": {"orig_filename": "Kogler_Ferdinand_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57f.", "author": "", "orig_id": 1416326}}, {"model": "metainfo.source", "pk": 12227, "fields": {"orig_filename": "Kogler_Michael_1763_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58", "author": "", "orig_id": 1416327}}, {"model": "metainfo.source", "pk": 12228, "fields": {"orig_filename": "Koglgruber_Cajetan_1817_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58", "author": "", "orig_id": 1416328}}, {"model": "metainfo.source", "pk": 12229, "fields": {"orig_filename": "Kogl_Karol-Bernard_1763_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416323}}, {"model": "metainfo.source", "pk": 12230, "fields": {"orig_filename": "Koharic_Janko_1877_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58f.", "author": "", "orig_id": 1416329}}, {"model": "metainfo.source", "pk": 12231, "fields": {"orig_filename": "Kohen_Giambattista_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416330}}, {"model": "metainfo.source", "pk": 12232, "fields": {"orig_filename": "Kohen_Sidonie_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416331}}, {"model": "metainfo.source", "pk": 12233, "fields": {"orig_filename": "Kohl-Kohlenegg_Leonhard_1834_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60f.", "author": "", "orig_id": 1416336}}, {"model": "metainfo.source", "pk": 12234, "fields": {"orig_filename": "Kohl-Kohlenegg_Lorenz_1783_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61", "author": "", "orig_id": 1416405}}, {"model": "metainfo.source", "pk": 12235, "fields": {"orig_filename": "Kohlenberg_Josef_1796_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61", "author": "", "orig_id": 1416406}}, {"model": "metainfo.source", "pk": 12236, "fields": {"orig_filename": "Kohler_Johann-Michael_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62", "author": "", "orig_id": 1416408}}, {"model": "metainfo.source", "pk": 12237, "fields": {"orig_filename": "Kohler_Johann_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61f.", "author": "", "orig_id": 1416407}}, {"model": "metainfo.source", "pk": 12238, "fields": {"orig_filename": "Kohler_Karl-Felix_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62", "author": "", "orig_id": 1416409}}, {"model": "metainfo.source", "pk": 12239, "fields": {"orig_filename": "Kohlfuerst_Ludwig_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62f.", "author": "", "orig_id": 1416410}}, {"model": "metainfo.source", "pk": 12240, "fields": {"orig_filename": "Kohlgruber_Josef_1783_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63", "author": "", "orig_id": 1416411}}, {"model": "metainfo.source", "pk": 12241, "fields": {"orig_filename": "Kohlmayer_Paul_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63", "author": "", "orig_id": 1416412}}, {"model": "metainfo.source", "pk": 12242, "fields": {"orig_filename": "Kohlmuenzer_Ernst_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63f.", "author": "", "orig_id": 1416413}}, {"model": "metainfo.source", "pk": 12243, "fields": {"orig_filename": "Kohlrausch_Otto_1842_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64", "author": "", "orig_id": 1416414}}, {"model": "metainfo.source", "pk": 12244, "fields": {"orig_filename": "Kohlruss_Alfred_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64", "author": "", "orig_id": 1416415}}, {"model": "metainfo.source", "pk": 12245, "fields": {"orig_filename": "Kohl_Emil_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416332}}, {"model": "metainfo.source", "pk": 12246, "fields": {"orig_filename": "Kohl_Franz-Friedrich_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59f.", "author": "", "orig_id": 1416333}}, {"model": "metainfo.source", "pk": 12247, "fields": {"orig_filename": "Kohl_Josef_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60", "author": "", "orig_id": 1416334}}, {"model": "metainfo.source", "pk": 12248, "fields": {"orig_filename": "Kohl_Ludwig_1746_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60", "author": "", "orig_id": 1416335}}, {"model": "metainfo.source", "pk": 12249, "fields": {"orig_filename": "Kohn_Abraham_1807_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64f.", "author": "", "orig_id": 1416416}}, {"model": "metainfo.source", "pk": 12250, "fields": {"orig_filename": "Kohn_Edmund_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416417}}, {"model": "metainfo.source", "pk": 12251, "fields": {"orig_filename": "Kohn_Gustav_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416419}}, {"model": "metainfo.source", "pk": 12252, "fields": {"orig_filename": "Kohn_Gustav_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416420}}, {"model": "metainfo.source", "pk": 12253, "fields": {"orig_filename": "Kohn_Josef_1804_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65f.", "author": "", "orig_id": 1416421}}, {"model": "metainfo.source", "pk": 12254, "fields": {"orig_filename": "Kohn_Josef_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66", "author": "", "orig_id": 1416422}}, {"model": "metainfo.source", "pk": 12255, "fields": {"orig_filename": "Kohn_Karl-Ferdinand_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66", "author": "", "orig_id": 1416423}}, {"model": "metainfo.source", "pk": 12256, "fields": {"orig_filename": "Kohn_Salomon_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66f.", "author": "", "orig_id": 1416424}}, {"model": "metainfo.source", "pk": 12257, "fields": {"orig_filename": "Kohn_Samuel_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416425}}, {"model": "metainfo.source", "pk": 12258, "fields": {"orig_filename": "Kohn_Theodor_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416426}}, {"model": "metainfo.source", "pk": 12259, "fields": {"orig_filename": "Kohrl_Ludwig_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416427}}, {"model": "metainfo.source", "pk": 12260, "fields": {"orig_filename": "Kohut_Adolf_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67f.", "author": "", "orig_id": 1416428}}, {"model": "metainfo.source", "pk": 12261, "fields": {"orig_filename": "Kohut_Alexander_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 68", "author": "", "orig_id": 1416500}}, {"model": "metainfo.source", "pk": 12262, "fields": {"orig_filename": "Koiner_Simon_1921_1994.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1427092}}, {"model": "metainfo.source", "pk": 12263, "fields": {"orig_filename": "Kojovic_Antun_1751_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416501}}, {"model": "metainfo.source", "pk": 12264, "fields": {"orig_filename": "Kokeil_Friedrich_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416502}}, {"model": "metainfo.source", "pk": 12265, "fields": {"orig_filename": "Kokesch_Oser_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416503}}, {"model": "metainfo.source", "pk": 12266, "fields": {"orig_filename": "Kokol_Karl_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70", "author": "", "orig_id": 1416505}}, {"model": "metainfo.source", "pk": 12267, "fields": {"orig_filename": "Kokotovic_Nikola_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70", "author": "", "orig_id": 1416506}}, {"model": "metainfo.source", "pk": 12268, "fields": {"orig_filename": "Koko_Demeter_1891_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69f.", "author": "", "orig_id": 1416504}}, {"model": "metainfo.source", "pk": 12269, "fields": {"orig_filename": "Kolacek_Frantisek_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416508}}, {"model": "metainfo.source", "pk": 12270, "fields": {"orig_filename": "Kolacek_Frantisek_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416509}}, {"model": "metainfo.source", "pk": 12271, "fields": {"orig_filename": "Kolander_Vatroslav_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416510}}, {"model": "metainfo.source", "pk": 12272, "fields": {"orig_filename": "Kolaric-Kisur_Rudolf_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416516}}, {"model": "metainfo.source", "pk": 12273, "fields": {"orig_filename": "Kolaric_Mirko_1850_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72f.", "author": "", "orig_id": 1416515}}, {"model": "metainfo.source", "pk": 12274, "fields": {"orig_filename": "Kolarovic_Dimitrije_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416517}}, {"model": "metainfo.source", "pk": 12275, "fields": {"orig_filename": "Kocevar_Stefan_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411438}}, {"model": "metainfo.source", "pk": 12276, "fields": {"orig_filename": "Koch-Langentreu_Adolf_1829_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411537}}, {"model": "metainfo.source", "pk": 12277, "fields": {"orig_filename": "Koch-Langentreu_Fr-Caecilia_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411538}}, {"model": "metainfo.source", "pk": 12278, "fields": {"orig_filename": "Koch-Langentreu_Josef_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411539}}, {"model": "metainfo.source", "pk": 12279, "fields": {"orig_filename": "Koch-Sternfeld_Josef-Judas-Thadd-Ernest_1778_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20f.", "author": "", "orig_id": 1411540}}, {"model": "metainfo.source", "pk": 12280, "fields": {"orig_filename": "Koch-Thanheimb_Josef_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21", "author": "", "orig_id": 1415856}}, {"model": "metainfo.source", "pk": 12281, "fields": {"orig_filename": "Kochanowski-Korwinau_Alfred_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415859}}, {"model": "metainfo.source", "pk": 12282, "fields": {"orig_filename": "Kochanowski-Stawczan_Anton_1817_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415860}}, {"model": "metainfo.source", "pk": 12283, "fields": {"orig_filename": "Kochanowski_Hieronim_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21", "author": "", "orig_id": 1415857}}, {"model": "metainfo.source", "pk": 12284, "fields": {"orig_filename": "Kochanowski_Roman_1856_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21f.", "author": "", "orig_id": 1415858}}, {"model": "metainfo.source", "pk": 12285, "fields": {"orig_filename": "Kochmann_Leopold_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415861}}, {"model": "metainfo.source", "pk": 12286, "fields": {"orig_filename": "Kochmeister_Friedrich_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22f.", "author": "", "orig_id": 1415862}}, {"model": "metainfo.source", "pk": 12287, "fields": {"orig_filename": "Koch_Alois_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12f.", "author": "", "orig_id": 1411439}}, {"model": "metainfo.source", "pk": 12288, "fields": {"orig_filename": "Koch_Antal_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13", "author": "", "orig_id": 1411440}}, {"model": "metainfo.source", "pk": 12289, "fields": {"orig_filename": "Koch_Augustin_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13", "author": "", "orig_id": 1411441}}, {"model": "metainfo.source", "pk": 12290, "fields": {"orig_filename": "Koch_Carl-Matthias_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13f.", "author": "", "orig_id": 1411442}}, {"model": "metainfo.source", "pk": 12291, "fields": {"orig_filename": "Koch_Ciril-Metod_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411443}}, {"model": "metainfo.source", "pk": 12292, "fields": {"orig_filename": "Koch_Ernest_1755_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411515}}, {"model": "metainfo.source", "pk": 12293, "fields": {"orig_filename": "Koch_Felix_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411516}}, {"model": "metainfo.source", "pk": 12294, "fields": {"orig_filename": "Koch_Ferdo_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14f.", "author": "", "orig_id": 1411517}}, {"model": "metainfo.source", "pk": 12295, "fields": {"orig_filename": "Koch_Franz_1832_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411518}}, {"model": "metainfo.source", "pk": 12296, "fields": {"orig_filename": "Koch_Franz_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411519}}, {"model": "metainfo.source", "pk": 12297, "fields": {"orig_filename": "Koch_Gaudentius_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411520}}, {"model": "metainfo.source", "pk": 12298, "fields": {"orig_filename": "Koch_Gustav-Adolf_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15f.", "author": "", "orig_id": 1411521}}, {"model": "metainfo.source", "pk": 12299, "fields": {"orig_filename": "Koch_Heinrich_1781_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16", "author": "", "orig_id": 1411522}}, {"model": "metainfo.source", "pk": 12300, "fields": {"orig_filename": "Koch_Jakob-Ernst-Iii_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17", "author": "", "orig_id": 1411527}}, {"model": "metainfo.source", "pk": 12301, "fields": {"orig_filename": "Koch_Jakob-Ernst-Ii_1836_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17", "author": "", "orig_id": 1411526}}, {"model": "metainfo.source", "pk": 12302, "fields": {"orig_filename": "Koch_Jakob-Ernst-I_1797_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16f.", "author": "", "orig_id": 1411524}}, {"model": "metainfo.source", "pk": 12303, "fields": {"orig_filename": "Koch_Jakob_1744_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16", "author": "", "orig_id": 1411523}}, {"model": "metainfo.source", "pk": 12304, "fields": {"orig_filename": "Koch_Josef-Anton_1768_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17f.", "author": "", "orig_id": 1411528}}, {"model": "metainfo.source", "pk": 12305, "fields": {"orig_filename": "Koch_Josef-Friedrich_1838_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411529}}, {"model": "metainfo.source", "pk": 12306, "fields": {"orig_filename": "Koch_Karl-Wilhelm_1785_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411531}}, {"model": "metainfo.source", "pk": 12307, "fields": {"orig_filename": "Koch_Karl__.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411530}}, {"model": "metainfo.source", "pk": 12308, "fields": {"orig_filename": "Koch_Leopold_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18f.", "author": "", "orig_id": 1411532}}, {"model": "metainfo.source", "pk": 12309, "fields": {"orig_filename": "Koch_Ludwig_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 19", "author": "", "orig_id": 1411533}}, {"model": "metainfo.source", "pk": 12310, "fields": {"orig_filename": "Koch_Matthias_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 19f.", "author": "", "orig_id": 1411534}}, {"model": "metainfo.source", "pk": 12311, "fields": {"orig_filename": "Koch_Stephan_1772_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411536}}, {"model": "metainfo.source", "pk": 12312, "fields": {"orig_filename": "Kociancic_Stefan_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23f.", "author": "", "orig_id": 1415866}}, {"model": "metainfo.source", "pk": 12313, "fields": {"orig_filename": "Kocian_Jaroslav_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415863}}, {"model": "metainfo.source", "pk": 12314, "fields": {"orig_filename": "Kocian_Quido_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415864}}, {"model": "metainfo.source", "pk": 12315, "fields": {"orig_filename": "Kocian_Samuel_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415865}}, {"model": "metainfo.source", "pk": 12316, "fields": {"orig_filename": "Kocic_Petar_1877_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415867}}, {"model": "metainfo.source", "pk": 12317, "fields": {"orig_filename": "Kocijancic_Josip_1849_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415868}}, {"model": "metainfo.source", "pk": 12318, "fields": {"orig_filename": "Kock-Gothenfels_Josef_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415869}}, {"model": "metainfo.source", "pk": 12319, "fields": {"orig_filename": "Koczirz_Adolf_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415870}}, {"model": "metainfo.source", "pk": 12320, "fields": {"orig_filename": "Koczynski_Stefan_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415871}}, {"model": "metainfo.source", "pk": 12321, "fields": {"orig_filename": "Kodermann_Zoelestin_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415873}}, {"model": "metainfo.source", "pk": 12322, "fields": {"orig_filename": "Koder_Anton_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415872}}, {"model": "metainfo.source", "pk": 12323, "fields": {"orig_filename": "Kodolitsch-Neuweinsberg-Khag_Oswald_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415876}}, {"model": "metainfo.source", "pk": 12324, "fields": {"orig_filename": "Kodolitsch_Alphons_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25f.", "author": "", "orig_id": 1415874}}, {"model": "metainfo.source", "pk": 12325, "fields": {"orig_filename": "Kodolitsch_Theodor_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415875}}, {"model": "metainfo.source", "pk": 12326, "fields": {"orig_filename": "Kodweiss_Friedrich_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415877}}, {"model": "metainfo.source", "pk": 12327, "fields": {"orig_filename": "Kodym_Filip-Stanislav_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26f.", "author": "", "orig_id": 1415945}}, {"model": "metainfo.source", "pk": 12328, "fields": {"orig_filename": "Kodym_Frantisek_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 27", "author": "", "orig_id": 1415946}}, {"model": "metainfo.source", "pk": 12329, "fields": {"orig_filename": "Koechel_Ludwig_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 27f.", "author": "", "orig_id": 1415947}}, {"model": "metainfo.source", "pk": 12330, "fields": {"orig_filename": "Koechert_Alexander-Emanuel_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415948}}, {"model": "metainfo.source", "pk": 12331, "fields": {"orig_filename": "Koechler_Johann_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415949}}, {"model": "metainfo.source", "pk": 12332, "fields": {"orig_filename": "Koechlin_Heinrich_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415950}}, {"model": "metainfo.source", "pk": 12333, "fields": {"orig_filename": "Koechlin_Karl_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28f.", "author": "", "orig_id": 1415951}}, {"model": "metainfo.source", "pk": 12334, "fields": {"orig_filename": "Koechlin_Rudolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29", "author": "", "orig_id": 1415952}}, {"model": "metainfo.source", "pk": 12335, "fields": {"orig_filename": "Koeck-Gmeiner_Maria_1878_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 30f.", "author": "", "orig_id": 1415956}}, {"model": "metainfo.source", "pk": 12336, "fields": {"orig_filename": "Koeck_Georg_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29", "author": "", "orig_id": 1415953}}, {"model": "metainfo.source", "pk": 12337, "fields": {"orig_filename": "Koeck_Gustav_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29f.", "author": "", "orig_id": 1415954}}, {"model": "metainfo.source", "pk": 12338, "fields": {"orig_filename": "Koeck_Michael_1760_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 30", "author": "", "orig_id": 1415955}}, {"model": "metainfo.source", "pk": 12339, "fields": {"orig_filename": "Koeferl_Josef_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415957}}, {"model": "metainfo.source", "pk": 12340, "fields": {"orig_filename": "Koeffinger_Johann-Paul_1786_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415958}}, {"model": "metainfo.source", "pk": 12341, "fields": {"orig_filename": "Koegl_Josef-Sebastian_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415959}}, {"model": "metainfo.source", "pk": 12342, "fields": {"orig_filename": "Koehler-Damwehr_Else_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31f.", "author": "", "orig_id": 1415961}}, {"model": "metainfo.source", "pk": 12343, "fields": {"orig_filename": "Koehler_Josef_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415960}}, {"model": "metainfo.source", "pk": 12344, "fields": {"orig_filename": "Koelbel_Karl_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415962}}, {"model": "metainfo.source", "pk": 12345, "fields": {"orig_filename": "Koelbl_Anton_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415963}}, {"model": "metainfo.source", "pk": 12346, "fields": {"orig_filename": "Koelbl_Walter_1891_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415964}}, {"model": "metainfo.source", "pk": 12347, "fields": {"orig_filename": "Koelcsey_Ferenc_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32f.", "author": "", "orig_id": 1415965}}, {"model": "metainfo.source", "pk": 12348, "fields": {"orig_filename": "Koelgen_Ferdinand_1824_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416038}}, {"model": "metainfo.source", "pk": 12349, "fields": {"orig_filename": "Koelloe_Miklos_1861_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416040}}, {"model": "metainfo.source", "pk": 12350, "fields": {"orig_filename": "Koell_Karl_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416039}}, {"model": "metainfo.source", "pk": 12351, "fields": {"orig_filename": "Koelmel_Anton_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33f.", "author": "", "orig_id": 1416041}}, {"model": "metainfo.source", "pk": 12352, "fields": {"orig_filename": "Koemm_Johann-Nep_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416042}}, {"model": "metainfo.source", "pk": 12353, "fields": {"orig_filename": "Koenig-Karsthof_Adolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38f.", "author": "", "orig_id": 1416057}}, {"model": "metainfo.source", "pk": 12354, "fields": {"orig_filename": "Koenig-Lorinser_Minna_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416058}}, {"model": "metainfo.source", "pk": 12355, "fields": {"orig_filename": "Koenigsberger_Friedrich_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416060}}, {"model": "metainfo.source", "pk": 12356, "fields": {"orig_filename": "Koenigsberg_Alfred_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416059}}, {"model": "metainfo.source", "pk": 12357, "fields": {"orig_filename": "Koenigsbrun-Schaup_Franz-Joseph_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416061}}, {"model": "metainfo.source", "pk": 12358, "fields": {"orig_filename": "Koenigsbrunn_Artur_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416062}}, {"model": "metainfo.source", "pk": 12359, "fields": {"orig_filename": "Koenigsbrunn_Hermann_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416063}}, {"model": "metainfo.source", "pk": 12360, "fields": {"orig_filename": "Koenigsegg-Aulendorf_Alfred_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416130}}, {"model": "metainfo.source", "pk": 12361, "fields": {"orig_filename": "Koenigshofer_Karl_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40f.", "author": "", "orig_id": 1416131}}, {"model": "metainfo.source", "pk": 12362, "fields": {"orig_filename": "Koenigstein_Leopold_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416132}}, {"model": "metainfo.source", "pk": 12363, "fields": {"orig_filename": "Koenigswarter_Jonas_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416133}}, {"model": "metainfo.source", "pk": 12364, "fields": {"orig_filename": "Koenigswarter_Moriz_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416134}}, {"model": "metainfo.source", "pk": 12365, "fields": {"orig_filename": "Koenig_Friedrich_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416043}}, {"model": "metainfo.source", "pk": 12366, "fields": {"orig_filename": "Koenig_Friedrich_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416044}}, {"model": "metainfo.source", "pk": 12367, "fields": {"orig_filename": "Koenig_Gustav-Adolf_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 35", "author": "", "orig_id": 1416046}}, {"model": "metainfo.source", "pk": 12368, "fields": {"orig_filename": "Koenig_Gustav_1825_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34f.", "author": "", "orig_id": 1416045}}, {"model": "metainfo.source", "pk": 12369, "fields": {"orig_filename": "Koenig_Gyula_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 35f.", "author": "", "orig_id": 1416047}}, {"model": "metainfo.source", "pk": 12370, "fields": {"orig_filename": "Koenig_Johann-Paul_1790_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36", "author": "", "orig_id": 1416048}}, {"model": "metainfo.source", "pk": 12371, "fields": {"orig_filename": "Koenig_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36", "author": "", "orig_id": 1416049}}, {"model": "metainfo.source", "pk": 12372, "fields": {"orig_filename": "Koenig_Karl_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36f.", "author": "", "orig_id": 1416050}}, {"model": "metainfo.source", "pk": 12373, "fields": {"orig_filename": "Koenig_Karol_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416051}}, {"model": "metainfo.source", "pk": 12374, "fields": {"orig_filename": "Koenig_Leo_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416052}}, {"model": "metainfo.source", "pk": 12375, "fields": {"orig_filename": "Koenig_Otto_1882_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416053}}, {"model": "metainfo.source", "pk": 12376, "fields": {"orig_filename": "Koenig_Peter_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416054}}, {"model": "metainfo.source", "pk": 12377, "fields": {"orig_filename": "Koenig_Rudolf_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416055}}, {"model": "metainfo.source", "pk": 12378, "fields": {"orig_filename": "Koenig_Sophie_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416056}}, {"model": "metainfo.source", "pk": 12379, "fields": {"orig_filename": "Knapp_Johann_1778_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418509}}, {"model": "metainfo.source", "pk": 12380, "fields": {"orig_filename": "Knapp_Josef_1810_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431f.", "author": "", "orig_id": 1418510}}, {"model": "metainfo.source", "pk": 12381, "fields": {"orig_filename": "Knapp_Karl_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432", "author": "", "orig_id": 1418511}}, {"model": "metainfo.source", "pk": 12382, "fields": {"orig_filename": "Knapp_Ludwig_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432", "author": "", "orig_id": 1418512}}, {"model": "metainfo.source", "pk": 12383, "fields": {"orig_filename": "Knauer_Emil_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432f.", "author": "", "orig_id": 1418513}}, {"model": "metainfo.source", "pk": 12384, "fields": {"orig_filename": "Knauer_Friedrich-Karl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433", "author": "", "orig_id": 1418696}}, {"model": "metainfo.source", "pk": 12385, "fields": {"orig_filename": "Knauer_Vinzenz_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433", "author": "", "orig_id": 1418697}}, {"model": "metainfo.source", "pk": 12386, "fields": {"orig_filename": "Knaus_Hermann-Hubertus_1892_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1452147}}, {"model": "metainfo.source", "pk": 12387, "fields": {"orig_filename": "Knauz_Nandor_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433f.", "author": "", "orig_id": 1418698}}, {"model": "metainfo.source", "pk": 12388, "fields": {"orig_filename": "Knebelsberger_Leopold_1814_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418699}}, {"model": "metainfo.source", "pk": 12389, "fields": {"orig_filename": "Knechtl-Ostenburg_Anton_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418701}}, {"model": "metainfo.source", "pk": 12390, "fields": {"orig_filename": "Knechtl_Josef_1771_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418700}}, {"model": "metainfo.source", "pk": 12391, "fields": {"orig_filename": "Knedlhans_Jan_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434f.", "author": "", "orig_id": 1418702}}, {"model": "metainfo.source", "pk": 12392, "fields": {"orig_filename": "Kneifel_Reginald_1761_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418703}}, {"model": "metainfo.source", "pk": 12393, "fields": {"orig_filename": "Kneisel_Franz_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418704}}, {"model": "metainfo.source", "pk": 12394, "fields": {"orig_filename": "Kneissler-Maixdorf_Leodegar_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418705}}, {"model": "metainfo.source", "pk": 12395, "fields": {"orig_filename": "Knepper_Wilhelm_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435f.", "author": "", "orig_id": 1418706}}, {"model": "metainfo.source", "pk": 12396, "fields": {"orig_filename": "Kneringer_Johann-Paul_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418709}}, {"model": "metainfo.source", "pk": 12397, "fields": {"orig_filename": "Kner_Izidor_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418707}}, {"model": "metainfo.source", "pk": 12398, "fields": {"orig_filename": "Kner_Rudolf_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418708}}, {"model": "metainfo.source", "pk": 12399, "fields": {"orig_filename": "Kneschke_Martha-Th_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437", "author": "", "orig_id": 1418710}}, {"model": "metainfo.source", "pk": 12400, "fields": {"orig_filename": "Knett_Josef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437", "author": "", "orig_id": 1418711}}, {"model": "metainfo.source", "pk": 12401, "fields": {"orig_filename": "Knezevic-Szent-Helena_Vinko_1755_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438f.", "author": "", "orig_id": 1418786}}, {"model": "metainfo.source", "pk": 12402, "fields": {"orig_filename": "Knezevic_Antun_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418784}}, {"model": "metainfo.source", "pk": 12403, "fields": {"orig_filename": "Knezevic_Stevan_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418785}}, {"model": "metainfo.source", "pk": 12404, "fields": {"orig_filename": "Knezic_Josip-Kajetan_1786_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418787}}, {"model": "metainfo.source", "pk": 12405, "fields": {"orig_filename": "Knez_Anton_1856_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437f.", "author": "", "orig_id": 1418712}}, {"model": "metainfo.source", "pk": 12406, "fields": {"orig_filename": "Knez_Ivan_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418713}}, {"model": "metainfo.source", "pk": 12407, "fields": {"orig_filename": "Kniaziolucki_Severin_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418788}}, {"model": "metainfo.source", "pk": 12408, "fields": {"orig_filename": "Kniely_Konrad_1887_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418789}}, {"model": "metainfo.source", "pk": 12409, "fields": {"orig_filename": "Kniep_Julius_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439f.", "author": "", "orig_id": 1418790}}, {"model": "metainfo.source", "pk": 12410, "fields": {"orig_filename": "Knieschek_Johann_1856_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440", "author": "", "orig_id": 1418791}}, {"model": "metainfo.source", "pk": 12411, "fields": {"orig_filename": "Knipfelberger_Magnus_1747_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440", "author": "", "orig_id": 1418792}}, {"model": "metainfo.source", "pk": 12412, "fields": {"orig_filename": "Knirsch_Hans_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440f.", "author": "", "orig_id": 1418794}}, {"model": "metainfo.source", "pk": 12413, "fields": {"orig_filename": "Knitel-Stainer_Anna_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418798}}, {"model": "metainfo.source", "pk": 12414, "fields": {"orig_filename": "Knitel_Johann_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418796}}, {"model": "metainfo.source", "pk": 12415, "fields": {"orig_filename": "Knitel_Josef-Alois_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418797}}, {"model": "metainfo.source", "pk": 12416, "fields": {"orig_filename": "Knittl_Karel_1853_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441f.", "author": "", "orig_id": 1418799}}, {"model": "metainfo.source", "pk": 12417, "fields": {"orig_filename": "Knittl_Michael_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418800}}, {"model": "metainfo.source", "pk": 12418, "fields": {"orig_filename": "Knize_Frantisek-Max_1784_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418801}}, {"model": "metainfo.source", "pk": 12419, "fields": {"orig_filename": "Knize_Therese_1782_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418802}}, {"model": "metainfo.source", "pk": 12420, "fields": {"orig_filename": "Knoblehar_Ignacij_1819_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442f.", "author": "", "orig_id": 1418868}}, {"model": "metainfo.source", "pk": 12421, "fields": {"orig_filename": "Knobloch_Johann-Wenzel_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 443", "author": "", "orig_id": 1418869}}, {"model": "metainfo.source", "pk": 12422, "fields": {"orig_filename": "Knoch_Gottlieb_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 443", "author": "", "orig_id": 1418870}}, {"model": "metainfo.source", "pk": 12423, "fields": {"orig_filename": "Knoch_Philipp_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418871}}, {"model": "metainfo.source", "pk": 12424, "fields": {"orig_filename": "Knoebel_Robert_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418873}}, {"model": "metainfo.source", "pk": 12425, "fields": {"orig_filename": "Knoechel_Franz_1839_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418875}}, {"model": "metainfo.source", "pk": 12426, "fields": {"orig_filename": "Knoechel_Franz_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418874}}, {"model": "metainfo.source", "pk": 12427, "fields": {"orig_filename": "Knoechl_Hans_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444f.", "author": "", "orig_id": 1418877}}, {"model": "metainfo.source", "pk": 12428, "fields": {"orig_filename": "Knoefel_Robert_1834_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445", "author": "", "orig_id": 1418878}}, {"model": "metainfo.source", "pk": 12429, "fields": {"orig_filename": "Knoefler_Josef_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445", "author": "", "orig_id": 1418879}}, {"model": "metainfo.source", "pk": 12430, "fields": {"orig_filename": "Knoell_Pius_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445f.", "author": "", "orig_id": 1418880}}, {"model": "metainfo.source", "pk": 12431, "fields": {"orig_filename": "Knoepfelmacher_Wilhelm_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418881}}, {"model": "metainfo.source", "pk": 12432, "fields": {"orig_filename": "Knoepfler_Alois_1827_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418882}}, {"model": "metainfo.source", "pk": 12433, "fields": {"orig_filename": "Knoerlein_Josef_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418883}}, {"model": "metainfo.source", "pk": 12434, "fields": {"orig_filename": "Knoflach_Augustin_1783_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418884}}, {"model": "metainfo.source", "pk": 12435, "fields": {"orig_filename": "Knoflach_Johann-Cap_1779_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446f.", "author": "", "orig_id": 1418885}}, {"model": "metainfo.source", "pk": 12436, "fields": {"orig_filename": "Knoller_Richard_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 448", "author": "", "orig_id": 1418962}}, {"model": "metainfo.source", "pk": 12437, "fields": {"orig_filename": "Knoll_Albert_1796_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418888}}, {"model": "metainfo.source", "pk": 12438, "fields": {"orig_filename": "Knoll_Joseph-Leonhard_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418890}}, {"model": "metainfo.source", "pk": 12439, "fields": {"orig_filename": "Knoll_Petar_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418891}}, {"model": "metainfo.source", "pk": 12440, "fields": {"orig_filename": "Knoll_Philipp_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447f.", "author": "", "orig_id": 1418959}}, {"model": "metainfo.source", "pk": 12441, "fields": {"orig_filename": "Knoll_Rudolf_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 448", "author": "", "orig_id": 1418960}}, {"model": "metainfo.source", "pk": 12442, "fields": {"orig_filename": "Knolz_Joseph-Johann_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1", "author": "", "orig_id": 1411240}}, {"model": "metainfo.source", "pk": 12443, "fields": {"orig_filename": "Knopf_Carl-Benno-Rudolf_1874_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1", "author": "", "orig_id": 1411241}}, {"model": "metainfo.source", "pk": 12444, "fields": {"orig_filename": "Knopp-Kirchwald_Norbert_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2", "author": "", "orig_id": 1411243}}, {"model": "metainfo.source", "pk": 12445, "fields": {"orig_filename": "Knopp_Jozsef_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1f.", "author": "", "orig_id": 1411242}}, {"model": "metainfo.source", "pk": 12446, "fields": {"orig_filename": "Knorr_Josefine_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2", "author": "", "orig_id": 1411244}}, {"model": "metainfo.source", "pk": 12447, "fields": {"orig_filename": "Knothe_Franz_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2f.", "author": "", "orig_id": 1411245}}, {"model": "metainfo.source", "pk": 12448, "fields": {"orig_filename": "Knotz_Alfred_1845_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411246}}, {"model": "metainfo.source", "pk": 12449, "fields": {"orig_filename": "Knuepfer_Benes_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411247}}, {"model": "metainfo.source", "pk": 12450, "fields": {"orig_filename": "Kobald_Engelbert_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411250}}, {"model": "metainfo.source", "pk": 12451, "fields": {"orig_filename": "Kobald_Franz_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411251}}, {"model": "metainfo.source", "pk": 12452, "fields": {"orig_filename": "Kobal_France_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3f.", "author": "", "orig_id": 1411249}}, {"model": "metainfo.source", "pk": 12453, "fields": {"orig_filename": "Koban_Anton_1875_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411252}}, {"model": "metainfo.source", "pk": 12454, "fields": {"orig_filename": "Kobatsch_Rudolf_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4f.", "author": "", "orig_id": 1411253}}, {"model": "metainfo.source", "pk": 12455, "fields": {"orig_filename": "Kobbe_Johann_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411254}}, {"model": "metainfo.source", "pk": 12456, "fields": {"orig_filename": "Kobelkoff_Nikolaus_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5f.", "author": "", "orig_id": 1411257}}, {"model": "metainfo.source", "pk": 12457, "fields": {"orig_filename": "Koberwein_Elisabeth_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411347}}, {"model": "metainfo.source", "pk": 12458, "fields": {"orig_filename": "Koberwein_Joseph_1774_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411348}}, {"model": "metainfo.source", "pk": 12459, "fields": {"orig_filename": "Koberwein_Sophie_1783_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7f.", "author": "", "orig_id": 1411349}}, {"model": "metainfo.source", "pk": 12460, "fields": {"orig_filename": "Kober_Franz_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 6", "author": "", "orig_id": 1411342}}, {"model": "metainfo.source", "pk": 12461, "fields": {"orig_filename": "Kober_Guido_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 6", "author": "", "orig_id": 1411343}}, {"model": "metainfo.source", "pk": 12462, "fields": {"orig_filename": "Kober_Maximilian_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411345}}, {"model": "metainfo.source", "pk": 12463, "fields": {"orig_filename": "Kobes_Karl_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8", "author": "", "orig_id": 1411350}}, {"model": "metainfo.source", "pk": 12464, "fields": {"orig_filename": "Kobe_Julius_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411255}}, {"model": "metainfo.source", "pk": 12465, "fields": {"orig_filename": "Kobe_Jurij_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411256}}, {"model": "metainfo.source", "pk": 12466, "fields": {"orig_filename": "Kobierski_Carl_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8", "author": "", "orig_id": 1411351}}, {"model": "metainfo.source", "pk": 12467, "fields": {"orig_filename": "Kobilca_Ivana_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8f.", "author": "", "orig_id": 1411352}}, {"model": "metainfo.source", "pk": 12468, "fields": {"orig_filename": "Koblar_Anton_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9", "author": "", "orig_id": 1411424}}, {"model": "metainfo.source", "pk": 12469, "fields": {"orig_filename": "Kobler_Andreas_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9", "author": "", "orig_id": 1411425}}, {"model": "metainfo.source", "pk": 12470, "fields": {"orig_filename": "Kobler_Franz_1882_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465580}}, {"model": "metainfo.source", "pk": 12471, "fields": {"orig_filename": "Kobler_Giovanni_1811_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9f.", "author": "", "orig_id": 1411426}}, {"model": "metainfo.source", "pk": 12472, "fields": {"orig_filename": "Koblic_Jindrich_1876_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411427}}, {"model": "metainfo.source", "pk": 12473, "fields": {"orig_filename": "Kobliska_Alois_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411428}}, {"model": "metainfo.source", "pk": 12474, "fields": {"orig_filename": "Koblitz-Willmburg_Johann-Ludwig_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411430}}, {"model": "metainfo.source", "pk": 12475, "fields": {"orig_filename": "Koblitz-Willmburg_Johann_1818_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411429}}, {"model": "metainfo.source", "pk": 12476, "fields": {"orig_filename": "Kobylicza_Lucian_1803_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10f.", "author": "", "orig_id": 1411431}}, {"model": "metainfo.source", "pk": 12477, "fields": {"orig_filename": "Kobyljanska_Olga_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411432}}, {"model": "metainfo.source", "pk": 12478, "fields": {"orig_filename": "Kobyljanskyj_Anton_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411433}}, {"model": "metainfo.source", "pk": 12479, "fields": {"orig_filename": "Kob_Anton_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411248}}, {"model": "metainfo.source", "pk": 12480, "fields": {"orig_filename": "Koca_Djuro_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411434}}, {"model": "metainfo.source", "pk": 12481, "fields": {"orig_filename": "Kocbek_Fran_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411435}}, {"model": "metainfo.source", "pk": 12482, "fields": {"orig_filename": "Kocevar_Ferdo_1833_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411437}}, {"model": "metainfo.source", "pk": 12483, "fields": {"orig_filename": "Klier_Karl-Maria_1888_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419281}}, {"model": "metainfo.source", "pk": 12484, "fields": {"orig_filename": "Klietmann_Alfred_1884_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419282}}, {"model": "metainfo.source", "pk": 12485, "fields": {"orig_filename": "Klika_Josef_1833_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419284}}, {"model": "metainfo.source", "pk": 12486, "fields": {"orig_filename": "Klimann_Thomas_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405f.", "author": "", "orig_id": 1419289}}, {"model": "metainfo.source", "pk": 12487, "fields": {"orig_filename": "Klima_Anton_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404f.", "author": "", "orig_id": 1419285}}, {"model": "metainfo.source", "pk": 12488, "fields": {"orig_filename": "Klima_Jiri-Vaclav_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419286}}, {"model": "metainfo.source", "pk": 12489, "fields": {"orig_filename": "Klima_Josef_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419287}}, {"model": "metainfo.source", "pk": 12490, "fields": {"orig_filename": "Klima_Ladislav_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419288}}, {"model": "metainfo.source", "pk": 12491, "fields": {"orig_filename": "Kliment_Josef_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419290}}, {"model": "metainfo.source", "pk": 12492, "fields": {"orig_filename": "Kliment_Leopold_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419291}}, {"model": "metainfo.source", "pk": 12493, "fields": {"orig_filename": "Kliment_Vaclav_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419292}}, {"model": "metainfo.source", "pk": 12494, "fields": {"orig_filename": "Klimesch_Johann-Matthaeus_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419354}}, {"model": "metainfo.source", "pk": 12495, "fields": {"orig_filename": "Klimesch_Josef_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419356}}, {"model": "metainfo.source", "pk": 12496, "fields": {"orig_filename": "Klimesch_Philipp_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406f.", "author": "", "orig_id": 1419357}}, {"model": "metainfo.source", "pk": 12497, "fields": {"orig_filename": "Klimke_Friedrich_1878_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419358}}, {"model": "metainfo.source", "pk": 12498, "fields": {"orig_filename": "Klimm_Mihaly_1851_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419359}}, {"model": "metainfo.source", "pk": 12499, "fields": {"orig_filename": "Klimont_Isidor_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419360}}, {"model": "metainfo.source", "pk": 12500, "fields": {"orig_filename": "Klimsch_Edgar_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407f.", "author": "", "orig_id": 1419361}}, {"model": "metainfo.source", "pk": 12501, "fields": {"orig_filename": "Klimsch_Ferdinand-Karl_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408", "author": "", "orig_id": 1419362}}, {"model": "metainfo.source", "pk": 12502, "fields": {"orig_filename": "Klimsch_Robert_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408", "author": "", "orig_id": 1419364}}, {"model": "metainfo.source", "pk": 12503, "fields": {"orig_filename": "Klimt_Ernst_1864_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408f.", "author": "", "orig_id": 1419365}}, {"model": "metainfo.source", "pk": 12504, "fields": {"orig_filename": "Klimt_Georg_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 409", "author": "", "orig_id": 1419366}}, {"model": "metainfo.source", "pk": 12505, "fields": {"orig_filename": "Klimt_Gustav_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 409f.", "author": "", "orig_id": 1419367}}, {"model": "metainfo.source", "pk": 12506, "fields": {"orig_filename": "Klineberger_Bohdan_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 410", "author": "", "orig_id": 1419368}}, {"model": "metainfo.source", "pk": 12507, "fields": {"orig_filename": "Klingatsch_Adolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 410", "author": "", "orig_id": 1419369}}, {"model": "metainfo.source", "pk": 12508, "fields": {"orig_filename": "Klinger_Heinrich_1896_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411", "author": "", "orig_id": 1419371}}, {"model": "metainfo.source", "pk": 12509, "fields": {"orig_filename": "Klinger_Richard_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411", "author": "", "orig_id": 1419372}}, {"model": "metainfo.source", "pk": 12510, "fields": {"orig_filename": "Klingler_Eduard_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411f.", "author": "", "orig_id": 1419440}}, {"model": "metainfo.source", "pk": 12511, "fields": {"orig_filename": "Klingmann_Philipp_1762_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419441}}, {"model": "metainfo.source", "pk": 12512, "fields": {"orig_filename": "Klingspor_Guido_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419442}}, {"model": "metainfo.source", "pk": 12513, "fields": {"orig_filename": "Klinkosch_Carl_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419443}}, {"model": "metainfo.source", "pk": 12514, "fields": {"orig_filename": "Klinkosch_Josef-Carl_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419444}}, {"model": "metainfo.source", "pk": 12515, "fields": {"orig_filename": "Klinkowstroem_Alphons_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412f.", "author": "", "orig_id": 1420902}}, {"model": "metainfo.source", "pk": 12516, "fields": {"orig_filename": "Klinkowstroem_Friedrich-August_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413", "author": "", "orig_id": 1419445}}, {"model": "metainfo.source", "pk": 12517, "fields": {"orig_filename": "Klinkowstroem_Josef_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413", "author": "", "orig_id": 1419446}}, {"model": "metainfo.source", "pk": 12518, "fields": {"orig_filename": "Klinkowstroem_Max_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413f.", "author": "", "orig_id": 1419447}}, {"model": "metainfo.source", "pk": 12519, "fields": {"orig_filename": "Klir_Antonin_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414", "author": "", "orig_id": 1419448}}, {"model": "metainfo.source", "pk": 12520, "fields": {"orig_filename": "Klischnigg_Eduard_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414", "author": "", "orig_id": 1419449}}, {"model": "metainfo.source", "pk": 12521, "fields": {"orig_filename": "Klitsch_Wilhelm_1882_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414f.", "author": "", "orig_id": 1419451}}, {"model": "metainfo.source", "pk": 12522, "fields": {"orig_filename": "Kloboucek_Josef_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419455}}, {"model": "metainfo.source", "pk": 12523, "fields": {"orig_filename": "Klobucar_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419456}}, {"model": "metainfo.source", "pk": 12524, "fields": {"orig_filename": "Klobusiczky-Klobusicz_Peter_1752_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416f.", "author": "", "orig_id": 1419549}}, {"model": "metainfo.source", "pk": 12525, "fields": {"orig_filename": "Klobus_Hugo_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419457}}, {"model": "metainfo.source", "pk": 12526, "fields": {"orig_filename": "Klob_Friedrich_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415", "author": "", "orig_id": 1419452}}, {"model": "metainfo.source", "pk": 12527, "fields": {"orig_filename": "Klob_Julius_1831_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415", "author": "", "orig_id": 1413139}}, {"model": "metainfo.source", "pk": 12528, "fields": {"orig_filename": "Klob_Karl-Maria_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415f.", "author": "", "orig_id": 1419453}}, {"model": "metainfo.source", "pk": 12529, "fields": {"orig_filename": "Klob_Otto_1876_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419454}}, {"model": "metainfo.source", "pk": 12530, "fields": {"orig_filename": "Klocker_Johann_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419550}}, {"model": "metainfo.source", "pk": 12531, "fields": {"orig_filename": "Klodic-Sabladoski_Anton_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419551}}, {"model": "metainfo.source", "pk": 12532, "fields": {"orig_filename": "Klodzinski_Adam_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419552}}, {"model": "metainfo.source", "pk": 12533, "fields": {"orig_filename": "Kloeckner_Gustav_1814_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417f.", "author": "", "orig_id": 1419553}}, {"model": "metainfo.source", "pk": 12534, "fields": {"orig_filename": "Kloepfer_Hans_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418", "author": "", "orig_id": 1419554}}, {"model": "metainfo.source", "pk": 12535, "fields": {"orig_filename": "Klofac_Vaclav_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418", "author": "", "orig_id": 1419555}}, {"model": "metainfo.source", "pk": 12536, "fields": {"orig_filename": "Kloiber_Franz_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418f.", "author": "", "orig_id": 1419556}}, {"model": "metainfo.source", "pk": 12537, "fields": {"orig_filename": "Klopfer_Karl-Eduard_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 419", "author": "", "orig_id": 1418237}}, {"model": "metainfo.source", "pk": 12538, "fields": {"orig_filename": "Klopp_Onno_1822_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 419", "author": "", "orig_id": 1418238}}, {"model": "metainfo.source", "pk": 12539, "fields": {"orig_filename": "Klopp_Wiard_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418239}}, {"model": "metainfo.source", "pk": 12540, "fields": {"orig_filename": "Klopstein-Ennsbruck_Joseph_1763_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418240}}, {"model": "metainfo.source", "pk": 12541, "fields": {"orig_filename": "Klose_Antonin-Jaroslav_1861_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418241}}, {"model": "metainfo.source", "pk": 12542, "fields": {"orig_filename": "Klose_Olivier_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418242}}, {"model": "metainfo.source", "pk": 12543, "fields": {"orig_filename": "Kloss_Joseph-Ferdinand_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418243}}, {"model": "metainfo.source", "pk": 12544, "fields": {"orig_filename": "Kloss_Richard_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418244}}, {"model": "metainfo.source", "pk": 12545, "fields": {"orig_filename": "Klostermann_Karl_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418245}}, {"model": "metainfo.source", "pk": 12546, "fields": {"orig_filename": "Klotz_Edmund_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418246}}, {"model": "metainfo.source", "pk": 12547, "fields": {"orig_filename": "Klotz_Gottlieb_1780_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418247}}, {"model": "metainfo.source", "pk": 12548, "fields": {"orig_filename": "Klotz_Hermann_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421f.", "author": "", "orig_id": 1418248}}, {"model": "metainfo.source", "pk": 12549, "fields": {"orig_filename": "Klotz_Magdalena_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418249}}, {"model": "metainfo.source", "pk": 12550, "fields": {"orig_filename": "Kloucek_Celda_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418250}}, {"model": "metainfo.source", "pk": 12551, "fields": {"orig_filename": "Kluch_Joseph_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418251}}, {"model": "metainfo.source", "pk": 12552, "fields": {"orig_filename": "Kluczenko_Basil_1844_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418252}}, {"model": "metainfo.source", "pk": 12553, "fields": {"orig_filename": "Klueger_Karl_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422f.", "author": "", "orig_id": 1418253}}, {"model": "metainfo.source", "pk": 12554, "fields": {"orig_filename": "Klug-Klugenwald_Sigmund_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418330}}, {"model": "metainfo.source", "pk": 12555, "fields": {"orig_filename": "Kluger-Teschenburg_Adolf_1830_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424", "author": "", "orig_id": 1418333}}, {"model": "metainfo.source", "pk": 12556, "fields": {"orig_filename": "Kluger_Josef_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418331}}, {"model": "metainfo.source", "pk": 12557, "fields": {"orig_filename": "Kluger_Salomon-B-Jehudah-Ahron_1783_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423f.", "author": "", "orig_id": 1418332}}, {"model": "metainfo.source", "pk": 12558, "fields": {"orig_filename": "Klug_Alfred_1883_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418254}}, {"model": "metainfo.source", "pk": 12559, "fields": {"orig_filename": "Klug_Nandor_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418255}}, {"model": "metainfo.source", "pk": 12560, "fields": {"orig_filename": "Kluibenschedl_Alois_1772_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424", "author": "", "orig_id": 1418334}}, {"model": "metainfo.source", "pk": 12561, "fields": {"orig_filename": "Kluibenschedl_Heinrich_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424f.", "author": "", "orig_id": 1418336}}, {"model": "metainfo.source", "pk": 12562, "fields": {"orig_filename": "Klumpar_Jan-Kvetoslav_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418338}}, {"model": "metainfo.source", "pk": 12563, "fields": {"orig_filename": "Klun_Karl_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418339}}, {"model": "metainfo.source", "pk": 12564, "fields": {"orig_filename": "Klun_Vinzenz-Ferrer_1823_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418340}}, {"model": "metainfo.source", "pk": 12565, "fields": {"orig_filename": "Klusacek_Karel-Ladislav_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425f.", "author": "", "orig_id": 1418341}}, {"model": "metainfo.source", "pk": 12566, "fields": {"orig_filename": "Klusemann_Erich_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418342}}, {"model": "metainfo.source", "pk": 12567, "fields": {"orig_filename": "Klusemann_Otto-Karl-Heinrich_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418343}}, {"model": "metainfo.source", "pk": 12568, "fields": {"orig_filename": "Klutschak_Franz_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418344}}, {"model": "metainfo.source", "pk": 12569, "fields": {"orig_filename": "Klvana_Josef_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426f.", "author": "", "orig_id": 1418417}}, {"model": "metainfo.source", "pk": 12570, "fields": {"orig_filename": "Kment_Adele_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418418}}, {"model": "metainfo.source", "pk": 12571, "fields": {"orig_filename": "Kmetitsch_Agnes_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418420}}, {"model": "metainfo.source", "pk": 12572, "fields": {"orig_filename": "Kmety_Gyoergy_1813_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427f.", "author": "", "orig_id": 1418422}}, {"model": "metainfo.source", "pk": 12573, "fields": {"orig_filename": "Kmet_Andrej_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418419}}, {"model": "metainfo.source", "pk": 12574, "fields": {"orig_filename": "Kminek-Szedlo_Johann_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418423}}, {"model": "metainfo.source", "pk": 12575, "fields": {"orig_filename": "Kmoch_Frantisek_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418424}}, {"model": "metainfo.source", "pk": 12576, "fields": {"orig_filename": "Kmosko_Mihaly_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418426}}, {"model": "metainfo.source", "pk": 12577, "fields": {"orig_filename": "Knaack_Wilhelm_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428f.", "author": "", "orig_id": 1418427}}, {"model": "metainfo.source", "pk": 12578, "fields": {"orig_filename": "Knabl_Hermann_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418428}}, {"model": "metainfo.source", "pk": 12579, "fields": {"orig_filename": "Knabl_Josef_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418429}}, {"model": "metainfo.source", "pk": 12580, "fields": {"orig_filename": "Knabl_Richard_1789_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418430}}, {"model": "metainfo.source", "pk": 12581, "fields": {"orig_filename": "Knafelc_Alojzij_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418432}}, {"model": "metainfo.source", "pk": 12582, "fields": {"orig_filename": "Knaffl-Lenz-Fohnsdorf_Karl_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418434}}, {"model": "metainfo.source", "pk": 12583, "fields": {"orig_filename": "Knaffl-Lenz_Johann-Felix_1769_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418433}}, {"model": "metainfo.source", "pk": 12584, "fields": {"orig_filename": "Knaflic_Josip_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430f.", "author": "", "orig_id": 1418435}}, {"model": "metainfo.source", "pk": 12585, "fields": {"orig_filename": "Knajsl_Matej_1805_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418507}}, {"model": "metainfo.source", "pk": 12586, "fields": {"orig_filename": "Knapp_Blasius_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418508}}, {"model": "metainfo.source", "pk": 12587, "fields": {"orig_filename": "Klebs_Theodor-Albrecht-Edwin_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 374", "author": "", "orig_id": 1418763}}, {"model": "metainfo.source", "pk": 12588, "fields": {"orig_filename": "Klecanda_Jan_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418764}}, {"model": "metainfo.source", "pk": 12589, "fields": {"orig_filename": "Kleczynski_Johann-Bapt_1756_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418765}}, {"model": "metainfo.source", "pk": 12590, "fields": {"orig_filename": "Kleemann_Therese-Marie_1820_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418767}}, {"model": "metainfo.source", "pk": 12591, "fields": {"orig_filename": "Klee_Hermann_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418766}}, {"model": "metainfo.source", "pk": 12592, "fields": {"orig_filename": "Kleibel_Anton_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375f.", "author": "", "orig_id": 1418769}}, {"model": "metainfo.source", "pk": 12593, "fields": {"orig_filename": "Kleiber_Karl_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418770}}, {"model": "metainfo.source", "pk": 12594, "fields": {"orig_filename": "Klein-Ehrenwalten_August_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418943}}, {"model": "metainfo.source", "pk": 12595, "fields": {"orig_filename": "Klein-Rhoden_Rudolf_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418944}}, {"model": "metainfo.source", "pk": 12596, "fields": {"orig_filename": "Kleinert_Josef-Edgar_1859_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387", "author": "", "orig_id": 1418947}}, {"model": "metainfo.source", "pk": 12597, "fields": {"orig_filename": "Kleinert_Karl-Erasmus_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387", "author": "", "orig_id": 1418948}}, {"model": "metainfo.source", "pk": 12598, "fields": {"orig_filename": "Kleiner_Oskar_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418945}}, {"model": "metainfo.source", "pk": 12599, "fields": {"orig_filename": "Kleiner_Viktor_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386f.", "author": "", "orig_id": 1418946}}, {"model": "metainfo.source", "pk": 12600, "fields": {"orig_filename": "Kleinfercher_Johann_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387f.", "author": "", "orig_id": 1418949}}, {"model": "metainfo.source", "pk": 12601, "fields": {"orig_filename": "Kleinhans_Edmund_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388", "author": "", "orig_id": 1418950}}, {"model": "metainfo.source", "pk": 12602, "fields": {"orig_filename": "Kleinhans_Friedrich_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388", "author": "", "orig_id": 1418951}}, {"model": "metainfo.source", "pk": 12603, "fields": {"orig_filename": "Kleinhans_Josef-Barth_1774_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388f.", "author": "", "orig_id": 1418952}}, {"model": "metainfo.source", "pk": 12604, "fields": {"orig_filename": "Kleinheinz_Franz-Xaver_1765_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1418953}}, {"model": "metainfo.source", "pk": 12605, "fields": {"orig_filename": "Kleinmayr_Ferdinand-Josef_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1419031}}, {"model": "metainfo.source", "pk": 12606, "fields": {"orig_filename": "Kleinmayr_Ferdinand_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1419032}}, {"model": "metainfo.source", "pk": 12607, "fields": {"orig_filename": "Kleinmayr_Ferdo_1881_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419033}}, {"model": "metainfo.source", "pk": 12608, "fields": {"orig_filename": "Kleinmayr_Ignaz_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419035}}, {"model": "metainfo.source", "pk": 12609, "fields": {"orig_filename": "Kleinmayr_Ignaz_1830_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419036}}, {"model": "metainfo.source", "pk": 12610, "fields": {"orig_filename": "Kleinmayr_Julij_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390f.", "author": "", "orig_id": 1419038}}, {"model": "metainfo.source", "pk": 12611, "fields": {"orig_filename": "Kleinoscheg_Anton_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 391", "author": "", "orig_id": 1419039}}, {"model": "metainfo.source", "pk": 12612, "fields": {"orig_filename": "Kleinoscheg_Max_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 391f.", "author": "", "orig_id": 1419040}}, {"model": "metainfo.source", "pk": 12613, "fields": {"orig_filename": "Kleinpeter_Johann_1869_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419041}}, {"model": "metainfo.source", "pk": 12614, "fields": {"orig_filename": "Kleinschmid_Friedrich-August_1749_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419042}}, {"model": "metainfo.source", "pk": 12615, "fields": {"orig_filename": "Kleinsorg_Raphael_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419044}}, {"model": "metainfo.source", "pk": 12616, "fields": {"orig_filename": "Kleinwaechter_Alois_1807_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419114}}, {"model": "metainfo.source", "pk": 12617, "fields": {"orig_filename": "Kleinwaechter_Friedrich_1838_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392f.", "author": "", "orig_id": 1419112}}, {"model": "metainfo.source", "pk": 12618, "fields": {"orig_filename": "Kleinwaechter_Ludwig_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419115}}, {"model": "metainfo.source", "pk": 12619, "fields": {"orig_filename": "Klein_Adolf_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418771}}, {"model": "metainfo.source", "pk": 12620, "fields": {"orig_filename": "Klein_Adolf_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418772}}, {"model": "metainfo.source", "pk": 12621, "fields": {"orig_filename": "Klein_Anton_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376f.", "author": "", "orig_id": 1418773}}, {"model": "metainfo.source", "pk": 12622, "fields": {"orig_filename": "Klein_Anton_1830_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418774}}, {"model": "metainfo.source", "pk": 12623, "fields": {"orig_filename": "Klein_Arthur_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418775}}, {"model": "metainfo.source", "pk": 12624, "fields": {"orig_filename": "Klein_Edward-Emanuel_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418776}}, {"model": "metainfo.source", "pk": 12625, "fields": {"orig_filename": "Klein_Franz_1777_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377f.", "author": "", "orig_id": 1418777}}, {"model": "metainfo.source", "pk": 12626, "fields": {"orig_filename": "Klein_Franz_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378", "author": "", "orig_id": 1418779}}, {"model": "metainfo.source", "pk": 12627, "fields": {"orig_filename": "Klein_Franz_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378f.", "author": "", "orig_id": 1418780}}, {"model": "metainfo.source", "pk": 12628, "fields": {"orig_filename": "Klein_Gisela_1873_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454295}}, {"model": "metainfo.source", "pk": 12629, "fields": {"orig_filename": "Klein_Gyula_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 379f.", "author": "", "orig_id": 1418781}}, {"model": "metainfo.source", "pk": 12630, "fields": {"orig_filename": "Klein_Heinrich_1756_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418782}}, {"model": "metainfo.source", "pk": 12631, "fields": {"orig_filename": "Klein_Hubert_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418849}}, {"model": "metainfo.source", "pk": 12632, "fields": {"orig_filename": "Klein_Hugo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418850}}, {"model": "metainfo.source", "pk": 12633, "fields": {"orig_filename": "Klein_Hugo_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418851}}, {"model": "metainfo.source", "pk": 12634, "fields": {"orig_filename": "Klein_Johann-Adam_1792_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418852}}, {"model": "metainfo.source", "pk": 12635, "fields": {"orig_filename": "Klein_Johann-Ev_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418853}}, {"model": "metainfo.source", "pk": 12636, "fields": {"orig_filename": "Klein_Johann-Samuel_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381f.", "author": "", "orig_id": 1418854}}, {"model": "metainfo.source", "pk": 12637, "fields": {"orig_filename": "Klein_Johann-Wilhelm_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 382", "author": "", "orig_id": 1418855}}, {"model": "metainfo.source", "pk": 12638, "fields": {"orig_filename": "Klein_Josef_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383", "author": "", "orig_id": 1418857}}, {"model": "metainfo.source", "pk": 12639, "fields": {"orig_filename": "Klein_Joseph_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 382f.", "author": "", "orig_id": 1418856}}, {"model": "metainfo.source", "pk": 12640, "fields": {"orig_filename": "Klein_Julius-Leopold_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383", "author": "", "orig_id": 1418858}}, {"model": "metainfo.source", "pk": 12641, "fields": {"orig_filename": "Klein_Ludwig_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383f.", "author": "", "orig_id": 1418859}}, {"model": "metainfo.source", "pk": 12642, "fields": {"orig_filename": "Klein_Martin_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418860}}, {"model": "metainfo.source", "pk": 12643, "fields": {"orig_filename": "Klein_Max_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418861}}, {"model": "metainfo.source", "pk": 12644, "fields": {"orig_filename": "Klein_Norbert_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418862}}, {"model": "metainfo.source", "pk": 12645, "fields": {"orig_filename": "Klein_Regine_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418865}}, {"model": "metainfo.source", "pk": 12646, "fields": {"orig_filename": "Klein_Salomon_1845_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418867}}, {"model": "metainfo.source", "pk": 12647, "fields": {"orig_filename": "Klein_Samuel_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418939}}, {"model": "metainfo.source", "pk": 12648, "fields": {"orig_filename": "Klein_Thomas_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418940}}, {"model": "metainfo.source", "pk": 12649, "fields": {"orig_filename": "Klein_Wilhelm_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385f.", "author": "", "orig_id": 1418941}}, {"model": "metainfo.source", "pk": 12650, "fields": {"orig_filename": "Kleiss_Herbert_1930_2000.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1434435}}, {"model": "metainfo.source", "pk": 12651, "fields": {"orig_filename": "Klekler_Pauline_1876_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419118}}, {"model": "metainfo.source", "pk": 12652, "fields": {"orig_filename": "Klekl_Jozef_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419116}}, {"model": "metainfo.source", "pk": 12653, "fields": {"orig_filename": "Klekl_Jozef_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419117}}, {"model": "metainfo.source", "pk": 12654, "fields": {"orig_filename": "Klemencic_Ferdinand_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419120}}, {"model": "metainfo.source", "pk": 12655, "fields": {"orig_filename": "Klemencic_Ignaz_1853_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419121}}, {"model": "metainfo.source", "pk": 12656, "fields": {"orig_filename": "Klemencic_Igo_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394f.", "author": "", "orig_id": 1419122}}, {"model": "metainfo.source", "pk": 12657, "fields": {"orig_filename": "Klemensiewicz_Edmund_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419124}}, {"model": "metainfo.source", "pk": 12658, "fields": {"orig_filename": "Klemensiewicz_Rudolf_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419125}}, {"model": "metainfo.source", "pk": 12659, "fields": {"orig_filename": "Klemensiewicz_Zygmunt_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395f.", "author": "", "orig_id": 1419126}}, {"model": "metainfo.source", "pk": 12660, "fields": {"orig_filename": "Klemens_Josef-Bozetech_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419123}}, {"model": "metainfo.source", "pk": 12661, "fields": {"orig_filename": "Klement_Vaclav_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419127}}, {"model": "metainfo.source", "pk": 12662, "fields": {"orig_filename": "Klemme_Josef-Ludwig_1861_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419194}}, {"model": "metainfo.source", "pk": 12663, "fields": {"orig_filename": "Klemm_Friedrich_1795_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419128}}, {"model": "metainfo.source", "pk": 12664, "fields": {"orig_filename": "Klemm_Josef_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419129}}, {"model": "metainfo.source", "pk": 12665, "fields": {"orig_filename": "Klemt_Agathon_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419195}}, {"model": "metainfo.source", "pk": 12666, "fields": {"orig_filename": "Klenau-Janowitz_Johann_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419196}}, {"model": "metainfo.source", "pk": 12667, "fields": {"orig_filename": "Klepsch-Roden_Eduard_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419197}}, {"model": "metainfo.source", "pk": 12668, "fields": {"orig_filename": "Klesheim_Anton_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397f.", "author": "", "orig_id": 1419198}}, {"model": "metainfo.source", "pk": 12669, "fields": {"orig_filename": "Kletler_Bruno_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398", "author": "", "orig_id": 1419199}}, {"model": "metainfo.source", "pk": 12670, "fields": {"orig_filename": "Kletzinsky_Vinzenz_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398", "author": "", "orig_id": 1419200}}, {"model": "metainfo.source", "pk": 12671, "fields": {"orig_filename": "Kletzl_Otto_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398f.", "author": "", "orig_id": 1419201}}, {"model": "metainfo.source", "pk": 12672, "fields": {"orig_filename": "Kleutgen_Joseph-Wilhelm-Karl_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 399", "author": "", "orig_id": 1419202}}, {"model": "metainfo.source", "pk": 12673, "fields": {"orig_filename": "Kleyle_Franz-Joachim_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 399f.", "author": "", "orig_id": 1419203}}, {"model": "metainfo.source", "pk": 12674, "fields": {"orig_filename": "Kleyle_Karl_1812_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 400", "author": "", "orig_id": 1419204}}, {"model": "metainfo.source", "pk": 12675, "fields": {"orig_filename": "Klicka_Josef_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419206}}, {"model": "metainfo.source", "pk": 12676, "fields": {"orig_filename": "Klicman_Ladislav_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419207}}, {"model": "metainfo.source", "pk": 12677, "fields": {"orig_filename": "Klicpera_Ivan_1845_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419208}}, {"model": "metainfo.source", "pk": 12678, "fields": {"orig_filename": "Klicpera_Vaclav-Kliment_1792_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401f.", "author": "", "orig_id": 1419210}}, {"model": "metainfo.source", "pk": 12679, "fields": {"orig_filename": "Klic_Karel_1841_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 400f.", "author": "", "orig_id": 1419205}}, {"model": "metainfo.source", "pk": 12680, "fields": {"orig_filename": "Klieba_Michael_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419211}}, {"model": "metainfo.source", "pk": 12681, "fields": {"orig_filename": "Kliebenschaedl_Johann-Josef_1811_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419212}}, {"model": "metainfo.source", "pk": 12682, "fields": {"orig_filename": "Kliebert_Karl_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419275}}, {"model": "metainfo.source", "pk": 12683, "fields": {"orig_filename": "Klieber_Eduard_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419273}}, {"model": "metainfo.source", "pk": 12684, "fields": {"orig_filename": "Klieber_Josef_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402f.", "author": "", "orig_id": 1419274}}, {"model": "metainfo.source", "pk": 12685, "fields": {"orig_filename": "Kliegl_Jozsef_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419276}}, {"model": "metainfo.source", "pk": 12686, "fields": {"orig_filename": "Klier_Cenek_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419277}}, {"model": "metainfo.source", "pk": 12687, "fields": {"orig_filename": "Klier_Franz_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419279}}, {"model": "metainfo.source", "pk": 12688, "fields": {"orig_filename": "Klier_Jakob_1790_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403f.", "author": "", "orig_id": 1419280}}, {"model": "metainfo.source", "pk": 12689, "fields": {"orig_filename": "Kirchsteiger_Hans_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414732}}, {"model": "metainfo.source", "pk": 12690, "fields": {"orig_filename": "Kirch_Franz_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337f.", "author": "", "orig_id": 1414649}}, {"model": "metainfo.source", "pk": 12691, "fields": {"orig_filename": "Kirnbauer-Erzstaett_Johann_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414733}}, {"model": "metainfo.source", "pk": 12692, "fields": {"orig_filename": "Kirnbauer-Erzstaett_Philipp_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414734}}, {"model": "metainfo.source", "pk": 12693, "fields": {"orig_filename": "Kirnig_Alois_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343f.", "author": "", "orig_id": 1414735}}, {"model": "metainfo.source", "pk": 12694, "fields": {"orig_filename": "Kirpal_Alfred_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414800}}, {"model": "metainfo.source", "pk": 12695, "fields": {"orig_filename": "Kirschner_Aloisia_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 345f.", "author": "", "orig_id": 1414805}}, {"model": "metainfo.source", "pk": 12696, "fields": {"orig_filename": "Kirschner_Cornelius_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346", "author": "", "orig_id": 1414806}}, {"model": "metainfo.source", "pk": 12697, "fields": {"orig_filename": "Kirschner_Ferdinand_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414807}}, {"model": "metainfo.source", "pk": 12698, "fields": {"orig_filename": "Kirsch_Arnold_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414801}}, {"model": "metainfo.source", "pk": 12699, "fields": {"orig_filename": "Kirsch_August_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414802}}, {"model": "metainfo.source", "pk": 12700, "fields": {"orig_filename": "Kirsch_Bernhard_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344f.", "author": "", "orig_id": 1414803}}, {"model": "metainfo.source", "pk": 12701, "fields": {"orig_filename": "Kirsch_Otto_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 345", "author": "", "orig_id": 1414804}}, {"model": "metainfo.source", "pk": 12702, "fields": {"orig_filename": "Kirstein_August_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346f.", "author": "", "orig_id": 1414809}}, {"model": "metainfo.source", "pk": 12703, "fields": {"orig_filename": "Kirste_Johann-Otto-Ferdinand_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346", "author": "", "orig_id": 1414808}}, {"model": "metainfo.source", "pk": 12704, "fields": {"orig_filename": "Kisa_Anton-Karl_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 347", "author": "", "orig_id": 1414810}}, {"model": "metainfo.source", "pk": 12705, "fields": {"orig_filename": "Kisch_Alexander_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 347f.", "author": "", "orig_id": 1414811}}, {"model": "metainfo.source", "pk": 12706, "fields": {"orig_filename": "Kisch_Egon_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 348f.", "author": "", "orig_id": 1414812}}, {"model": "metainfo.source", "pk": 12707, "fields": {"orig_filename": "Kisch_Enoch-Heinrich_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 349", "author": "", "orig_id": 1414813}}, {"model": "metainfo.source", "pk": 12708, "fields": {"orig_filename": "Kisch_Gustav-Oswald_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 349f.", "author": "", "orig_id": 1414814}}, {"model": "metainfo.source", "pk": 12709, "fields": {"orig_filename": "Kisch_Wilhelm-Maximilian_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414815}}, {"model": "metainfo.source", "pk": 12710, "fields": {"orig_filename": "Kiseljak_Mara_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414816}}, {"model": "metainfo.source", "pk": 12711, "fields": {"orig_filename": "Kiseljak_Marije_1883_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414817}}, {"model": "metainfo.source", "pk": 12712, "fields": {"orig_filename": "Kiseljak_Vladimir_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414818}}, {"model": "metainfo.source", "pk": 12713, "fields": {"orig_filename": "Kisfaludy_Karoly_1788_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350f.", "author": "", "orig_id": 1414819}}, {"model": "metainfo.source", "pk": 12714, "fields": {"orig_filename": "Kisfaludy_Sandor_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351", "author": "", "orig_id": 1414820}}, {"model": "metainfo.source", "pk": 12715, "fields": {"orig_filename": "Kisic_Vinko_1879_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351", "author": "", "orig_id": 1414888}}, {"model": "metainfo.source", "pk": 12716, "fields": {"orig_filename": "Kisielewski_Jan-August_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351f.", "author": "", "orig_id": 1414889}}, {"model": "metainfo.source", "pk": 12717, "fields": {"orig_filename": "Kispatic_Mijo_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352", "author": "", "orig_id": 1414890}}, {"model": "metainfo.source", "pk": 12718, "fields": {"orig_filename": "Kiss-Ittebe-Elemer_Ernoe_1800_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414980}}, {"model": "metainfo.source", "pk": 12719, "fields": {"orig_filename": "Kiss-Nemesker_Miklos_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414981}}, {"model": "metainfo.source", "pk": 12720, "fields": {"orig_filename": "Kissling_Adolf_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356f.", "author": "", "orig_id": 1414982}}, {"model": "metainfo.source", "pk": 12721, "fields": {"orig_filename": "Kissner-Scheurich_Babette_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 357", "author": "", "orig_id": 1414983}}, {"model": "metainfo.source", "pk": 12722, "fields": {"orig_filename": "Kiss_Aron_1815_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352", "author": "", "orig_id": 1414891}}, {"model": "metainfo.source", "pk": 12723, "fields": {"orig_filename": "Kiss_Aron_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352f.", "author": "", "orig_id": 1414892}}, {"model": "metainfo.source", "pk": 12724, "fields": {"orig_filename": "Kiss_Balint_1772_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414893}}, {"model": "metainfo.source", "pk": 12725, "fields": {"orig_filename": "Kiss_Balint_1802_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414894}}, {"model": "metainfo.source", "pk": 12726, "fields": {"orig_filename": "Kiss_Ferenc_1862_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414895}}, {"model": "metainfo.source", "pk": 12727, "fields": {"orig_filename": "Kiss_Franz_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414896}}, {"model": "metainfo.source", "pk": 12728, "fields": {"orig_filename": "Kiss_Gyoergy_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353f.", "author": "", "orig_id": 1414898}}, {"model": "metainfo.source", "pk": 12729, "fields": {"orig_filename": "Kiss_Istvan_1857_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354", "author": "", "orig_id": 1414899}}, {"model": "metainfo.source", "pk": 12730, "fields": {"orig_filename": "Kiss_Janos_1770_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354", "author": "", "orig_id": 1414900}}, {"model": "metainfo.source", "pk": 12731, "fields": {"orig_filename": "Kiss_Janos_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354f.", "author": "", "orig_id": 1414901}}, {"model": "metainfo.source", "pk": 12732, "fields": {"orig_filename": "Kiss_Josef_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414902}}, {"model": "metainfo.source", "pk": 12733, "fields": {"orig_filename": "Kiss_Jozsef_1765_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414903}}, {"model": "metainfo.source", "pk": 12734, "fields": {"orig_filename": "Kiss_Jozsef_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414975}}, {"model": "metainfo.source", "pk": 12735, "fields": {"orig_filename": "Kiss_Kalman_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414976}}, {"model": "metainfo.source", "pk": 12736, "fields": {"orig_filename": "Kiss_Karoly_1793_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355f.", "author": "", "orig_id": 1414977}}, {"model": "metainfo.source", "pk": 12737, "fields": {"orig_filename": "Kiss_Karoly_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414978}}, {"model": "metainfo.source", "pk": 12738, "fields": {"orig_filename": "Kitaibel_Paul_1757_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 357f.", "author": "", "orig_id": 1414222}}, {"model": "metainfo.source", "pk": 12739, "fields": {"orig_filename": "Kitir_Joseph_1867_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358", "author": "", "orig_id": 1414223}}, {"model": "metainfo.source", "pk": 12740, "fields": {"orig_filename": "Kitschelt_Lothar_1910_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358", "author": "", "orig_id": 1414224}}, {"model": "metainfo.source", "pk": 12741, "fields": {"orig_filename": "Kittel_Anton__1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358f.", "author": "", "orig_id": 1414225}}, {"model": "metainfo.source", "pk": 12742, "fields": {"orig_filename": "Kittel_Gerhard_1888_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 359", "author": "", "orig_id": 1414226}}, {"model": "metainfo.source", "pk": 12743, "fields": {"orig_filename": "Kittl_Ernst_1854_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 359f.", "author": "", "orig_id": 1414228}}, {"model": "metainfo.source", "pk": 12744, "fields": {"orig_filename": "Kittl_Johann-Friedrich_1806_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 360", "author": "", "orig_id": 1414229}}, {"model": "metainfo.source", "pk": 12745, "fields": {"orig_filename": "Kittner_Alexander_1809_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 360", "author": "", "orig_id": 1414230}}, {"model": "metainfo.source", "pk": 12746, "fields": {"orig_filename": "Kittner_Patriz_1809_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414231}}, {"model": "metainfo.source", "pk": 12747, "fields": {"orig_filename": "Kitzler_Otto_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414232}}, {"model": "metainfo.source", "pk": 12748, "fields": {"orig_filename": "Kiurina_Berta_1888_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414233}}, {"model": "metainfo.source", "pk": 12749, "fields": {"orig_filename": "Kiuver_Stephan-Agontz_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414234}}, {"model": "metainfo.source", "pk": 12750, "fields": {"orig_filename": "Kiwisch-Rotterau_Franz_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361f.", "author": "", "orig_id": 1414235}}, {"model": "metainfo.source", "pk": 12751, "fields": {"orig_filename": "Klaar_Alfred_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 362", "author": "", "orig_id": 1414236}}, {"model": "metainfo.source", "pk": 12752, "fields": {"orig_filename": "Klacel_Matous_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 362f.", "author": "", "orig_id": 1414237}}, {"model": "metainfo.source", "pk": 12753, "fields": {"orig_filename": "Klaczko_Julian_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414238}}, {"model": "metainfo.source", "pk": 12754, "fields": {"orig_filename": "Kladivo_Bohumil_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414239}}, {"model": "metainfo.source", "pk": 12755, "fields": {"orig_filename": "Klaeger_Emil_1880_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414240}}, {"model": "metainfo.source", "pk": 12756, "fields": {"orig_filename": "Klaehr_Franziska_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363f.", "author": "", "orig_id": 1414304}}, {"model": "metainfo.source", "pk": 12757, "fields": {"orig_filename": "Klafsky_Katharina_1855_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 364", "author": "", "orig_id": 1414305}}, {"model": "metainfo.source", "pk": 12758, "fields": {"orig_filename": "Klahs_Ignatz_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 364f.", "author": "", "orig_id": 1414306}}, {"model": "metainfo.source", "pk": 12759, "fields": {"orig_filename": "Klaic_Franjo_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365", "author": "", "orig_id": 1414307}}, {"model": "metainfo.source", "pk": 12760, "fields": {"orig_filename": "Klaic_Miho_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365", "author": "", "orig_id": 1414308}}, {"model": "metainfo.source", "pk": 12761, "fields": {"orig_filename": "Klaic_Vjekoslav_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365f.", "author": "", "orig_id": 1414309}}, {"model": "metainfo.source", "pk": 12762, "fields": {"orig_filename": "Klajic_Jovan_1815_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414310}}, {"model": "metainfo.source", "pk": 12763, "fields": {"orig_filename": "Klama_Odilo_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414311}}, {"model": "metainfo.source", "pk": 12764, "fields": {"orig_filename": "Klammer_Nicolaus_1769_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414312}}, {"model": "metainfo.source", "pk": 12765, "fields": {"orig_filename": "Klammer_Richard_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414313}}, {"model": "metainfo.source", "pk": 12766, "fields": {"orig_filename": "Klang_Heinrich-Adalbert_1875_1954.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454721}}, {"model": "metainfo.source", "pk": 12767, "fields": {"orig_filename": "Klang_James_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366f.", "author": "", "orig_id": 1414314}}, {"model": "metainfo.source", "pk": 12768, "fields": {"orig_filename": "Klapalek_Frantisek_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367", "author": "", "orig_id": 1414315}}, {"model": "metainfo.source", "pk": 12769, "fields": {"orig_filename": "Klapeer_Anton_1770_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367", "author": "", "orig_id": 1414316}}, {"model": "metainfo.source", "pk": 12770, "fields": {"orig_filename": "Klapka_Georg_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367f.", "author": "", "orig_id": 1414317}}, {"model": "metainfo.source", "pk": 12771, "fields": {"orig_filename": "Klapp_Michael_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 368", "author": "", "orig_id": 1414318}}, {"model": "metainfo.source", "pk": 12772, "fields": {"orig_filename": "Klapsia_Heinrich_1907_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 368f.", "author": "", "orig_id": 1414319}}, {"model": "metainfo.source", "pk": 12773, "fields": {"orig_filename": "Klar_Alois_1763_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369", "author": "", "orig_id": 1414320}}, {"model": "metainfo.source", "pk": 12774, "fields": {"orig_filename": "Klar_Christoph_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369", "author": "", "orig_id": 1414321}}, {"model": "metainfo.source", "pk": 12775, "fields": {"orig_filename": "Klar_Paul-Alois_1801_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369f.", "author": "", "orig_id": 1414322}}, {"model": "metainfo.source", "pk": 12776, "fields": {"orig_filename": "Klar_Rudolf-Maria_1845_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414387}}, {"model": "metainfo.source", "pk": 12777, "fields": {"orig_filename": "Klastersky_Antonin_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414386}}, {"model": "metainfo.source", "pk": 12778, "fields": {"orig_filename": "Klatscher_Alfred_1858_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414388}}, {"model": "metainfo.source", "pk": 12779, "fields": {"orig_filename": "Klaudi_Josef_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414389}}, {"model": "metainfo.source", "pk": 12780, "fields": {"orig_filename": "Klaudy_Karel-Leopold_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370f.", "author": "", "orig_id": 1414390}}, {"model": "metainfo.source", "pk": 12781, "fields": {"orig_filename": "Klausberger_Maria-Leopoldine_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371f.", "author": "", "orig_id": 1414394}}, {"model": "metainfo.source", "pk": 12782, "fields": {"orig_filename": "Klausner_Hubert_1892_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372", "author": "", "orig_id": 1414395}}, {"model": "metainfo.source", "pk": 12783, "fields": {"orig_filename": "Klaus_Johannes_1847_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414391}}, {"model": "metainfo.source", "pk": 12784, "fields": {"orig_filename": "Klaus_Josef_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414393}}, {"model": "metainfo.source", "pk": 12785, "fields": {"orig_filename": "Klaus_Raimund_1812_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414392}}, {"model": "metainfo.source", "pk": 12786, "fields": {"orig_filename": "Klauzal_Gabor_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372", "author": "", "orig_id": 1414396}}, {"model": "metainfo.source", "pk": 12787, "fields": {"orig_filename": "Klauzal_Imre_1799_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372f.", "author": "", "orig_id": 1414397}}, {"model": "metainfo.source", "pk": 12788, "fields": {"orig_filename": "Klavik_Frantisek-Josef_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414398}}, {"model": "metainfo.source", "pk": 12789, "fields": {"orig_filename": "Klavzar_Ernest_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414399}}, {"model": "metainfo.source", "pk": 12790, "fields": {"orig_filename": "Klebelsberg-Thumburg_Franz_1774_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414400}}, {"model": "metainfo.source", "pk": 12791, "fields": {"orig_filename": "Klebelsberg-Thumburg_Hieronymus_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373f.", "author": "", "orig_id": 1414401}}, {"model": "metainfo.source", "pk": 12792, "fields": {"orig_filename": "Klebelsberg-Thumburg_Jakob-Philipp_1749_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 374", "author": "", "orig_id": 1414402}}, {"model": "metainfo.source", "pk": 12793, "fields": {"orig_filename": "Kettner_Adolf_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414298}}, {"model": "metainfo.source", "pk": 12794, "fields": {"orig_filename": "Kettner_Ferdinand_1779_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414299}}, {"model": "metainfo.source", "pk": 12795, "fields": {"orig_filename": "Kezdi-Kovacs_Laszlo_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414300}}, {"model": "metainfo.source", "pk": 12796, "fields": {"orig_filename": "Khackhl_Thomas_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314f.", "author": "", "orig_id": 1414301}}, {"model": "metainfo.source", "pk": 12797, "fields": {"orig_filename": "Khautz-Eulenthal_Karl_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 315", "author": "", "orig_id": 1414303}}, {"model": "metainfo.source", "pk": 12798, "fields": {"orig_filename": "Khayll_Alois_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 315f.", "author": "", "orig_id": 1414366}}, {"model": "metainfo.source", "pk": 12799, "fields": {"orig_filename": "Khayll_Josef_1781_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414367}}, {"model": "metainfo.source", "pk": 12800, "fields": {"orig_filename": "Kheil_Karel-Petr_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414369}}, {"model": "metainfo.source", "pk": 12801, "fields": {"orig_filename": "Kheil_Karel-Petr_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414368}}, {"model": "metainfo.source", "pk": 12802, "fields": {"orig_filename": "Kherndl_Antal_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414370}}, {"model": "metainfo.source", "pk": 12803, "fields": {"orig_filename": "Khevenhueller-Metsch_Rudolf_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316f.", "author": "", "orig_id": 1414371}}, {"model": "metainfo.source", "pk": 12804, "fields": {"orig_filename": "Khittel-Westhort_Jaroslav_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414373}}, {"model": "metainfo.source", "pk": 12805, "fields": {"orig_filename": "Khittel_Rudolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414372}}, {"model": "metainfo.source", "pk": 12806, "fields": {"orig_filename": "Khoss-Sternegg_August_1819_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414374}}, {"model": "metainfo.source", "pk": 12807, "fields": {"orig_filename": "Khoss-Sternegg_Johann_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414375}}, {"model": "metainfo.source", "pk": 12808, "fields": {"orig_filename": "Khoss-Sternegg_Josef_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317f.", "author": "", "orig_id": 1414376}}, {"model": "metainfo.source", "pk": 12809, "fields": {"orig_filename": "Khuen-Hedervary_Karoly_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414378}}, {"model": "metainfo.source", "pk": 12810, "fields": {"orig_filename": "Khuenberg_Sophie_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414379}}, {"model": "metainfo.source", "pk": 12811, "fields": {"orig_filename": "Khuenl_Jacob-Rudolph_1775_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318f.", "author": "", "orig_id": 1414380}}, {"model": "metainfo.source", "pk": 12812, "fields": {"orig_filename": "Khuen_Theodor-Franz-Maria_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414377}}, {"model": "metainfo.source", "pk": 12813, "fields": {"orig_filename": "Khuepach-Ried-Zimmerlehen-Haslburg_Viktor_1859_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414381}}, {"model": "metainfo.source", "pk": 12814, "fields": {"orig_filename": "Khull-Kholwald_Ferdinand_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414382}}, {"model": "metainfo.source", "pk": 12815, "fields": {"orig_filename": "Kicinski_Bruno_1796_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414383}}, {"model": "metainfo.source", "pk": 12816, "fields": {"orig_filename": "Kickh_Clemens_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320", "author": "", "orig_id": 1414385}}, {"model": "metainfo.source", "pk": 12817, "fields": {"orig_filename": "Kick_Friedrich_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320", "author": "", "orig_id": 1414384}}, {"model": "metainfo.source", "pk": 12818, "fields": {"orig_filename": "Kidric_Franc_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320f.", "author": "", "orig_id": 1414446}}, {"model": "metainfo.source", "pk": 12819, "fields": {"orig_filename": "Kiechl_Johann_1804_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414447}}, {"model": "metainfo.source", "pk": 12820, "fields": {"orig_filename": "Kiechl_Josef_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414448}}, {"model": "metainfo.source", "pk": 12821, "fields": {"orig_filename": "Kiechl_Josef_1807_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414449}}, {"model": "metainfo.source", "pk": 12822, "fields": {"orig_filename": "Kiedron_Jozef_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321f.", "author": "", "orig_id": 1414450}}, {"model": "metainfo.source", "pk": 12823, "fields": {"orig_filename": "Kielmansegge_Alexander_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322", "author": "", "orig_id": 1414452}}, {"model": "metainfo.source", "pk": 12824, "fields": {"orig_filename": "Kielmansegg_Erich_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322", "author": "", "orig_id": 1414451}}, {"model": "metainfo.source", "pk": 12825, "fields": {"orig_filename": "Kiem_Martin_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322f.", "author": "", "orig_id": 1414453}}, {"model": "metainfo.source", "pk": 12826, "fields": {"orig_filename": "Kienast_Friedrich-August_1853_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414454}}, {"model": "metainfo.source", "pk": 12827, "fields": {"orig_filename": "Kiendl_Anton_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414458}}, {"model": "metainfo.source", "pk": 12828, "fields": {"orig_filename": "Kiener_Franz_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414460}}, {"model": "metainfo.source", "pk": 12829, "fields": {"orig_filename": "Kiene_Kurt_1891_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414459}}, {"model": "metainfo.source", "pk": 12830, "fields": {"orig_filename": "Kieninger_Johann-Georg_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323f.", "author": "", "orig_id": 1414461}}, {"model": "metainfo.source", "pk": 12831, "fields": {"orig_filename": "Kienmayer_Michael_1755_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414462}}, {"model": "metainfo.source", "pk": 12832, "fields": {"orig_filename": "Kienreich_Franz-Xaver_1806_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414463}}, {"model": "metainfo.source", "pk": 12833, "fields": {"orig_filename": "Kienreich_Johann-Nep-Andreas_1759_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414464}}, {"model": "metainfo.source", "pk": 12834, "fields": {"orig_filename": "Kienzl_Hermann_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324f.", "author": "", "orig_id": 1414465}}, {"model": "metainfo.source", "pk": 12835, "fields": {"orig_filename": "Kienzl_Josef_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 325", "author": "", "orig_id": 1414466}}, {"model": "metainfo.source", "pk": 12836, "fields": {"orig_filename": "Kienzl_Wilhelm_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 325f.", "author": "", "orig_id": 1414538}}, {"model": "metainfo.source", "pk": 12837, "fields": {"orig_filename": "Kienzl_Wilhelm_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 326", "author": "", "orig_id": 1414539}}, {"model": "metainfo.source", "pk": 12838, "fields": {"orig_filename": "Kierschner_Eduard_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 326f.", "author": "", "orig_id": 1414540}}, {"model": "metainfo.source", "pk": 12839, "fields": {"orig_filename": "Kierschner_Franz_1833_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414541}}, {"model": "metainfo.source", "pk": 12840, "fields": {"orig_filename": "Kiesewetter-Wiesenbrunn_Irene_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414544}}, {"model": "metainfo.source", "pk": 12841, "fields": {"orig_filename": "Kiesewetter-Wiesenbrunn_Raphael-Georg_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327f.", "author": "", "orig_id": 1414545}}, {"model": "metainfo.source", "pk": 12842, "fields": {"orig_filename": "Kiesling_Daniel_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414546}}, {"model": "metainfo.source", "pk": 12843, "fields": {"orig_filename": "Kiesling_Leopold_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414547}}, {"model": "metainfo.source", "pk": 12844, "fields": {"orig_filename": "Kiesslich_Anton_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414548}}, {"model": "metainfo.source", "pk": 12845, "fields": {"orig_filename": "Kiessling_Franz-Xaver_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329", "author": "", "orig_id": 1414549}}, {"model": "metainfo.source", "pk": 12846, "fields": {"orig_filename": "Kiessling_Johann-Tobias_1742_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329", "author": "", "orig_id": 1414550}}, {"model": "metainfo.source", "pk": 12847, "fields": {"orig_filename": "Kies_Heinrich_1778_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414542}}, {"model": "metainfo.source", "pk": 12848, "fields": {"orig_filename": "Kikic_Hasan_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329f.", "author": "", "orig_id": 1414552}}, {"model": "metainfo.source", "pk": 12849, "fields": {"orig_filename": "Kilanyi_Ludwig_1819_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414553}}, {"model": "metainfo.source", "pk": 12850, "fields": {"orig_filename": "Kilanyi_Therese_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414554}}, {"model": "metainfo.source", "pk": 12851, "fields": {"orig_filename": "Kilenyi_Janos_1805_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414555}}, {"model": "metainfo.source", "pk": 12852, "fields": {"orig_filename": "Kilian-Gayrsperg_Franz-Xaver_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414556}}, {"model": "metainfo.source", "pk": 12853, "fields": {"orig_filename": "Kimmel_Fidelis_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414557}}, {"model": "metainfo.source", "pk": 12854, "fields": {"orig_filename": "Kimnach_Ladislaus_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414558}}, {"model": "metainfo.source", "pk": 12855, "fields": {"orig_filename": "Kindermann_Rudolf_1897_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414560}}, {"model": "metainfo.source", "pk": 12856, "fields": {"orig_filename": "Kindinger_Eduard_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414561}}, {"model": "metainfo.source", "pk": 12857, "fields": {"orig_filename": "Kindinger_Ignaz_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414632}}, {"model": "metainfo.source", "pk": 12858, "fields": {"orig_filename": "Kind_Alexander_1890_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414559}}, {"model": "metainfo.source", "pk": 12859, "fields": {"orig_filename": "Kininger_Vincenz-Georg_1767_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331f.", "author": "", "orig_id": 1414633}}, {"model": "metainfo.source", "pk": 12860, "fields": {"orig_filename": "Kink_Anton_1820_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 332", "author": "", "orig_id": 1414634}}, {"model": "metainfo.source", "pk": 12861, "fields": {"orig_filename": "Kink_Franz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 332f.", "author": "", "orig_id": 1414635}}, {"model": "metainfo.source", "pk": 12862, "fields": {"orig_filename": "Kink_Julius_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 333", "author": "", "orig_id": 1414636}}, {"model": "metainfo.source", "pk": 12863, "fields": {"orig_filename": "Kink_Martin_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 333f.", "author": "", "orig_id": 1414637}}, {"model": "metainfo.source", "pk": 12864, "fields": {"orig_filename": "Kink_Rudolf_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 334", "author": "", "orig_id": 1414638}}, {"model": "metainfo.source", "pk": 12865, "fields": {"orig_filename": "Kinsele-Eckberg_Josef_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 334f.", "author": "", "orig_id": 1414639}}, {"model": "metainfo.source", "pk": 12866, "fields": {"orig_filename": "Kinsky-Wchinitz-Tettau_Carl_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414640}}, {"model": "metainfo.source", "pk": 12867, "fields": {"orig_filename": "Kinsky-Wchinitz-Tettau_Christian_1777_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414641}}, {"model": "metainfo.source", "pk": 12868, "fields": {"orig_filename": "Kinter_Maurus_1842_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414642}}, {"model": "metainfo.source", "pk": 12869, "fields": {"orig_filename": "Kinzel_Josef_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336", "author": "", "orig_id": 1414644}}, {"model": "metainfo.source", "pk": 12870, "fields": {"orig_filename": "Kinzer_Karl_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336", "author": "", "orig_id": 1414645}}, {"model": "metainfo.source", "pk": 12871, "fields": {"orig_filename": "Kinzl_Josef_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336f.", "author": "", "orig_id": 1414646}}, {"model": "metainfo.source", "pk": 12872, "fields": {"orig_filename": "Kinz_Ferdinand_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335f.", "author": "", "orig_id": 1414643}}, {"model": "metainfo.source", "pk": 12873, "fields": {"orig_filename": "Kirac_Luka_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337", "author": "", "orig_id": 1414647}}, {"model": "metainfo.source", "pk": 12874, "fields": {"orig_filename": "Kiralyi_Pal_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337", "author": "", "orig_id": 1414648}}, {"model": "metainfo.source", "pk": 12875, "fields": {"orig_filename": "Kirchbach-Lauterbach_Johann_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414650}}, {"model": "metainfo.source", "pk": 12876, "fields": {"orig_filename": "Kirchbach-Lauterbach_Karl_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414651}}, {"model": "metainfo.source", "pk": 12877, "fields": {"orig_filename": "Kirchberger_Johann-Ev_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414652}}, {"model": "metainfo.source", "pk": 12878, "fields": {"orig_filename": "Kirchebner_Anton-Alois_1823_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338f.", "author": "", "orig_id": 1414653}}, {"model": "metainfo.source", "pk": 12879, "fields": {"orig_filename": "Kirchebner_Franz-Xaver_1736_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414715}}, {"model": "metainfo.source", "pk": 12880, "fields": {"orig_filename": "Kirchebner_Peter-Paul_1812_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414716}}, {"model": "metainfo.source", "pk": 12881, "fields": {"orig_filename": "Kirchenberger_Salomon_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414717}}, {"model": "metainfo.source", "pk": 12882, "fields": {"orig_filename": "Kirchgaesser-Rheinhoven_Julius_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414718}}, {"model": "metainfo.source", "pk": 12883, "fields": {"orig_filename": "Kirchhammer_Alexander_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339f.", "author": "", "orig_id": 1414719}}, {"model": "metainfo.source", "pk": 12884, "fields": {"orig_filename": "Kirchhoffer_Rudolf_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414720}}, {"model": "metainfo.source", "pk": 12885, "fields": {"orig_filename": "Kirchlechner_Alfons_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414722}}, {"model": "metainfo.source", "pk": 12886, "fields": {"orig_filename": "Kirchlehner_Ferenc_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340f.", "author": "", "orig_id": 1414723}}, {"model": "metainfo.source", "pk": 12887, "fields": {"orig_filename": "Kirchmayer_Wincenty-Marcin-Kanty_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414724}}, {"model": "metainfo.source", "pk": 12888, "fields": {"orig_filename": "Kirchmayr_Hermann_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414725}}, {"model": "metainfo.source", "pk": 12889, "fields": {"orig_filename": "Kirchner_Hermann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414726}}, {"model": "metainfo.source", "pk": 12890, "fields": {"orig_filename": "Kirchner_Johann-Carl_1821_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341f.", "author": "", "orig_id": 1414727}}, {"model": "metainfo.source", "pk": 12891, "fields": {"orig_filename": "Kirchner_Leopold-Anton_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414728}}, {"model": "metainfo.source", "pk": 12892, "fields": {"orig_filename": "Kirchner_Raphael_1875_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414729}}, {"model": "metainfo.source", "pk": 12893, "fields": {"orig_filename": "Kirchner_Theodor_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414730}}, {"model": "metainfo.source", "pk": 12894, "fields": {"orig_filename": "Kirchsberg_Ernestine_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342f.", "author": "", "orig_id": 1414731}}, {"model": "metainfo.source", "pk": 12895, "fields": {"orig_filename": "Keil-Eichenthurn_Othmar_1888_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282f.", "author": "", "orig_id": 1415218}}, {"model": "metainfo.source", "pk": 12896, "fields": {"orig_filename": "Keil_Anton_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281f.", "author": "", "orig_id": 1415215}}, {"model": "metainfo.source", "pk": 12897, "fields": {"orig_filename": "Keil_Franz_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282", "author": "", "orig_id": 1415216}}, {"model": "metainfo.source", "pk": 12898, "fields": {"orig_filename": "Keil_Franz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282", "author": "", "orig_id": 1415217}}, {"model": "metainfo.source", "pk": 12899, "fields": {"orig_filename": "Keim_Franz_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 283", "author": "", "orig_id": 1415219}}, {"model": "metainfo.source", "pk": 12900, "fields": {"orig_filename": "Keintzel_Georg_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 283f.", "author": "", "orig_id": 1415220}}, {"model": "metainfo.source", "pk": 12901, "fields": {"orig_filename": "Keissler_Karl_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415221}}, {"model": "metainfo.source", "pk": 12902, "fields": {"orig_filename": "Keiter_Ernst_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415222}}, {"model": "metainfo.source", "pk": 12903, "fields": {"orig_filename": "Keitler_Heinrich_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415223}}, {"model": "metainfo.source", "pk": 12904, "fields": {"orig_filename": "Keki_Richard_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415224}}, {"model": "metainfo.source", "pk": 12905, "fields": {"orig_filename": "Kelbetz_Ludwig_1905_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284f.", "author": "", "orig_id": 1415225}}, {"model": "metainfo.source", "pk": 12906, "fields": {"orig_filename": "Kelemen_Imre_1746_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1415226}}, {"model": "metainfo.source", "pk": 12907, "fields": {"orig_filename": "Keler_Albert-Paul_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1413935}}, {"model": "metainfo.source", "pk": 12908, "fields": {"orig_filename": "Keleti_Gusztav-Frigyes_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1413936}}, {"model": "metainfo.source", "pk": 12909, "fields": {"orig_filename": "Keleti_Karoly_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285f.", "author": "", "orig_id": 1413937}}, {"model": "metainfo.source", "pk": 12910, "fields": {"orig_filename": "Kellermann_Georg_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413951}}, {"model": "metainfo.source", "pk": 12911, "fields": {"orig_filename": "Keller_Alfred_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286f.", "author": "", "orig_id": 1413941}}, {"model": "metainfo.source", "pk": 12912, "fields": {"orig_filename": "Keller_Franz-Carl_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287", "author": "", "orig_id": 1413942}}, {"model": "metainfo.source", "pk": 12913, "fields": {"orig_filename": "Keller_Gustav_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287", "author": "", "orig_id": 1413943}}, {"model": "metainfo.source", "pk": 12914, "fields": {"orig_filename": "Keller_Heinrich_1866_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287f.", "author": "", "orig_id": 1413944}}, {"model": "metainfo.source", "pk": 12915, "fields": {"orig_filename": "Keller_Karl-Ludwig-Adam_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 288", "author": "", "orig_id": 1413945}}, {"model": "metainfo.source", "pk": 12916, "fields": {"orig_filename": "Keller_Konstantin_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413946}}, {"model": "metainfo.source", "pk": 12917, "fields": {"orig_filename": "Keller_Otto_1838_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413947}}, {"model": "metainfo.source", "pk": 12918, "fields": {"orig_filename": "Keller_Otto_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413948}}, {"model": "metainfo.source", "pk": 12919, "fields": {"orig_filename": "Keller_Rosa_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413949}}, {"model": "metainfo.source", "pk": 12920, "fields": {"orig_filename": "Keller_Seraphin_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413950}}, {"model": "metainfo.source", "pk": 12921, "fields": {"orig_filename": "Kelle_Carl_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286", "author": "", "orig_id": 1413938}}, {"model": "metainfo.source", "pk": 12922, "fields": {"orig_filename": "Kelle_Johann_1828_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286", "author": "", "orig_id": 1413939}}, {"model": "metainfo.source", "pk": 12923, "fields": {"orig_filename": "Kellner-Koellenstein_Friedrich-Marcus_1802_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 291", "author": "", "orig_id": 1413954}}, {"model": "metainfo.source", "pk": 12924, "fields": {"orig_filename": "Kellner_Karl_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413952}}, {"model": "metainfo.source", "pk": 12925, "fields": {"orig_filename": "Kellner_Leon_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290f.", "author": "", "orig_id": 1413953}}, {"model": "metainfo.source", "pk": 12926, "fields": {"orig_filename": "Kelsen_Hans_1881_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1452604}}, {"model": "metainfo.source", "pk": 12927, "fields": {"orig_filename": "Kematmueller_Heinrich-Nikolaus_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 291f.", "author": "", "orig_id": 1413955}}, {"model": "metainfo.source", "pk": 12928, "fields": {"orig_filename": "Kemenater_Peter-Johann_1783_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1413956}}, {"model": "metainfo.source", "pk": 12929, "fields": {"orig_filename": "Kemendy_Jenoe_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1413957}}, {"model": "metainfo.source", "pk": 12930, "fields": {"orig_filename": "Kemeny_Jozsef_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1414028}}, {"model": "metainfo.source", "pk": 12931, "fields": {"orig_filename": "Kemeny_Zsigmond_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292f.", "author": "", "orig_id": 1414029}}, {"model": "metainfo.source", "pk": 12932, "fields": {"orig_filename": "Kempen-Fichtenstamm_Johann-Franz_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414030}}, {"model": "metainfo.source", "pk": 12933, "fields": {"orig_filename": "Kempf_Julije_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414031}}, {"model": "metainfo.source", "pk": 12934, "fields": {"orig_filename": "Kenda_Josip_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414032}}, {"model": "metainfo.source", "pk": 12935, "fields": {"orig_filename": "Kenda_Josip_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293f.", "author": "", "orig_id": 1414033}}, {"model": "metainfo.source", "pk": 12936, "fields": {"orig_filename": "Kende_Oskar_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414034}}, {"model": "metainfo.source", "pk": 12937, "fields": {"orig_filename": "Kendler_Rudolf_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414037}}, {"model": "metainfo.source", "pk": 12938, "fields": {"orig_filename": "Kengelac_Emilijan_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414038}}, {"model": "metainfo.source", "pk": 12939, "fields": {"orig_filename": "Kengelac_Pavao_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414039}}, {"model": "metainfo.source", "pk": 12940, "fields": {"orig_filename": "Kenner_Anton_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294f.", "author": "", "orig_id": 1414040}}, {"model": "metainfo.source", "pk": 12941, "fields": {"orig_filename": "Kenner_Friedrich_1834_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 295", "author": "", "orig_id": 1414041}}, {"model": "metainfo.source", "pk": 12942, "fields": {"orig_filename": "Kenner_Joseph_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 295f.", "author": "", "orig_id": 1414042}}, {"model": "metainfo.source", "pk": 12943, "fields": {"orig_filename": "Kennessey_Bela_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414043}}, {"model": "metainfo.source", "pk": 12944, "fields": {"orig_filename": "Kepka_Karel-Hugo_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414044}}, {"model": "metainfo.source", "pk": 12945, "fields": {"orig_filename": "Keppler_Zoelestin_1784_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414045}}, {"model": "metainfo.source", "pk": 12946, "fields": {"orig_filename": "Kepplinger_Josef_1849_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414046}}, {"model": "metainfo.source", "pk": 12947, "fields": {"orig_filename": "Kerausch_Josef_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296f.", "author": "", "orig_id": 1414047}}, {"model": "metainfo.source", "pk": 12948, "fields": {"orig_filename": "Kerber_Erwin_1891_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297", "author": "", "orig_id": 1414048}}, {"model": "metainfo.source", "pk": 12949, "fields": {"orig_filename": "Kerber_Hermann_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297", "author": "", "orig_id": 1414115}}, {"model": "metainfo.source", "pk": 12950, "fields": {"orig_filename": "Kerchnawe_Hugo_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297f.", "author": "", "orig_id": 1414116}}, {"model": "metainfo.source", "pk": 12951, "fields": {"orig_filename": "Kerekes_Ferenc_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298", "author": "", "orig_id": 1414117}}, {"model": "metainfo.source", "pk": 12952, "fields": {"orig_filename": "Kerer_Johann_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298", "author": "", "orig_id": 1414118}}, {"model": "metainfo.source", "pk": 12953, "fields": {"orig_filename": "Keresztes_Jozsef_1846_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298f.", "author": "", "orig_id": 1414119}}, {"model": "metainfo.source", "pk": 12954, "fields": {"orig_filename": "Kerhart_Oldrich_1895_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414120}}, {"model": "metainfo.source", "pk": 12955, "fields": {"orig_filename": "Kerkapoly_Karoly_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414121}}, {"model": "metainfo.source", "pk": 12956, "fields": {"orig_filename": "Kerl_Wilhelm_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414122}}, {"model": "metainfo.source", "pk": 12957, "fields": {"orig_filename": "Kermauner_Fritz_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299f.", "author": "", "orig_id": 1414123}}, {"model": "metainfo.source", "pk": 12958, "fields": {"orig_filename": "Kermavner_Valentin_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414125}}, {"model": "metainfo.source", "pk": 12959, "fields": {"orig_filename": "Kern-Kernburg_Josef-Theodor_1785_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302", "author": "", "orig_id": 1414133}}, {"model": "metainfo.source", "pk": 12960, "fields": {"orig_filename": "Kerner-Marilaun_Anton_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302ff.", "author": "", "orig_id": 1414201}}, {"model": "metainfo.source", "pk": 12961, "fields": {"orig_filename": "Kerner-Marilaun_Fritz_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304", "author": "", "orig_id": 1414202}}, {"model": "metainfo.source", "pk": 12962, "fields": {"orig_filename": "Kerner_Josef-Anton_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302", "author": "", "orig_id": 1414200}}, {"model": "metainfo.source", "pk": 12963, "fields": {"orig_filename": "Kernic_Anka_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304", "author": "", "orig_id": 1414203}}, {"model": "metainfo.source", "pk": 12964, "fields": {"orig_filename": "Kernic_Beatrix_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304f.", "author": "", "orig_id": 1414204}}, {"model": "metainfo.source", "pk": 12965, "fields": {"orig_filename": "Kernstock_Ernst_1852_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 305", "author": "", "orig_id": 1414205}}, {"model": "metainfo.source", "pk": 12966, "fields": {"orig_filename": "Kernstock_Ottokar_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 305f.", "author": "", "orig_id": 1414206}}, {"model": "metainfo.source", "pk": 12967, "fields": {"orig_filename": "Kern_Adolf_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414126}}, {"model": "metainfo.source", "pk": 12968, "fields": {"orig_filename": "Kern_Hermann_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414127}}, {"model": "metainfo.source", "pk": 12969, "fields": {"orig_filename": "Kern_Josef_1790_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414128}}, {"model": "metainfo.source", "pk": 12970, "fields": {"orig_filename": "Kern_Josef_1856_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301", "author": "", "orig_id": 1414129}}, {"model": "metainfo.source", "pk": 12971, "fields": {"orig_filename": "Kern_Matthaeus_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301", "author": "", "orig_id": 1414131}}, {"model": "metainfo.source", "pk": 12972, "fields": {"orig_filename": "Kern_Vinzenz_1760_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301f.", "author": "", "orig_id": 1414132}}, {"model": "metainfo.source", "pk": 12973, "fields": {"orig_filename": "Kerpely-Krassai_Antal_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306", "author": "", "orig_id": 1414208}}, {"model": "metainfo.source", "pk": 12974, "fields": {"orig_filename": "Kerpely-Krassai_Anton_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306f.", "author": "", "orig_id": 1414209}}, {"model": "metainfo.source", "pk": 12975, "fields": {"orig_filename": "Kerpel_Leopold_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306", "author": "", "orig_id": 1414207}}, {"model": "metainfo.source", "pk": 12976, "fields": {"orig_filename": "Kerpen_Wilhelm_1741_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414210}}, {"model": "metainfo.source", "pk": 12977, "fields": {"orig_filename": "Kerschbaumer_Anton_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307f.", "author": "", "orig_id": 1414213}}, {"model": "metainfo.source", "pk": 12978, "fields": {"orig_filename": "Kerschbaumer_Richard_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308", "author": "", "orig_id": 1414214}}, {"model": "metainfo.source", "pk": 12979, "fields": {"orig_filename": "Kerschbaumer_Rosa_1854_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308", "author": "", "orig_id": 1414215}}, {"model": "metainfo.source", "pk": 12980, "fields": {"orig_filename": "Kerschbaum_Hans_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414212}}, {"model": "metainfo.source", "pk": 12981, "fields": {"orig_filename": "Kerschner_Ludwig_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308f.", "author": "", "orig_id": 1414216}}, {"model": "metainfo.source", "pk": 12982, "fields": {"orig_filename": "Kersch_Ferenc_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414211}}, {"model": "metainfo.source", "pk": 12983, "fields": {"orig_filename": "Kersnik_Janko_1852_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414217}}, {"model": "metainfo.source", "pk": 12984, "fields": {"orig_filename": "Kerstan_Karl-Ludwig-Ferdinand_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414218}}, {"model": "metainfo.source", "pk": 12985, "fields": {"orig_filename": "Kertbeny_Imre-Maria_1825_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414219}}, {"model": "metainfo.source", "pk": 12986, "fields": {"orig_filename": "Kertesz_Adolf_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309f.", "author": "", "orig_id": 1414285}}, {"model": "metainfo.source", "pk": 12987, "fields": {"orig_filename": "Kesanski_Jovan_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414286}}, {"model": "metainfo.source", "pk": 12988, "fields": {"orig_filename": "Keschmann_Anton_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414287}}, {"model": "metainfo.source", "pk": 12989, "fields": {"orig_filename": "Kessel_Johannes_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414288}}, {"model": "metainfo.source", "pk": 12990, "fields": {"orig_filename": "Kessler_Engelbert_1834_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311", "author": "", "orig_id": 1414289}}, {"model": "metainfo.source", "pk": 12991, "fields": {"orig_filename": "Kesslitz_Wilhelm_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311", "author": "", "orig_id": 1414290}}, {"model": "metainfo.source", "pk": 12992, "fields": {"orig_filename": "Kestercanek_Franjo_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311f.", "author": "", "orig_id": 1414291}}, {"model": "metainfo.source", "pk": 12993, "fields": {"orig_filename": "Kestler_Martin_1808_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312", "author": "", "orig_id": 1414292}}, {"model": "metainfo.source", "pk": 12994, "fields": {"orig_filename": "Kestranek_Paul_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312", "author": "", "orig_id": 1414293}}, {"model": "metainfo.source", "pk": 12995, "fields": {"orig_filename": "Ketly-Csurgo_Karoly_1839_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312f.", "author": "", "orig_id": 1414294}}, {"model": "metainfo.source", "pk": 12996, "fields": {"orig_filename": "Ketrzynski_Wojciech_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 313", "author": "", "orig_id": 1414295}}, {"model": "metainfo.source", "pk": 12997, "fields": {"orig_filename": "Kettel_Johann-Georg_1789_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414297}}, {"model": "metainfo.source", "pk": 12998, "fields": {"orig_filename": "Kette_Dragotin_1876_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 313f.", "author": "", "orig_id": 1414296}}, {"model": "metainfo.source", "pk": 12999, "fields": {"orig_filename": "Kaserer_Josef_1842_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414791}}, {"model": "metainfo.source", "pk": 13000, "fields": {"orig_filename": "Kaserer_Philipp_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414792}}, {"model": "metainfo.source", "pk": 13001, "fields": {"orig_filename": "Kaser_Kurt_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414788}}, {"model": "metainfo.source", "pk": 13002, "fields": {"orig_filename": "Kaser_Ludwig_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251f.", "author": "", "orig_id": 1414789}}, {"model": "metainfo.source", "pk": 13003, "fields": {"orig_filename": "Kashmann_Guiseppe_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414794}}, {"model": "metainfo.source", "pk": 13004, "fields": {"orig_filename": "Kaska_Franz_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252f.", "author": "", "orig_id": 1414795}}, {"model": "metainfo.source", "pk": 13005, "fields": {"orig_filename": "Kaska_Jan_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414796}}, {"model": "metainfo.source", "pk": 13006, "fields": {"orig_filename": "Kasparides_Eduard_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253f.", "author": "", "orig_id": 1414867}}, {"model": "metainfo.source", "pk": 13007, "fields": {"orig_filename": "Kaspar_Adolf_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414798}}, {"model": "metainfo.source", "pk": 13008, "fields": {"orig_filename": "Kaspar_Fritz_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414799}}, {"model": "metainfo.source", "pk": 13009, "fields": {"orig_filename": "Kasperowski_Adam_1792_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254f.", "author": "", "orig_id": 1414870}}, {"model": "metainfo.source", "pk": 13010, "fields": {"orig_filename": "Kasper_Adolf_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254", "author": "", "orig_id": 1414868}}, {"model": "metainfo.source", "pk": 13011, "fields": {"orig_filename": "Kasper_Ludwig_1893_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254", "author": "", "orig_id": 1414869}}, {"model": "metainfo.source", "pk": 13012, "fields": {"orig_filename": "Kaspret_Anton_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 255", "author": "", "orig_id": 1414871}}, {"model": "metainfo.source", "pk": 13013, "fields": {"orig_filename": "Kasprowicz_Jan_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 255f.", "author": "", "orig_id": 1414872}}, {"model": "metainfo.source", "pk": 13014, "fields": {"orig_filename": "Kasprowicz_Kajetan_1858_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414873}}, {"model": "metainfo.source", "pk": 13015, "fields": {"orig_filename": "Kasselik_Ferenc_1800_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414874}}, {"model": "metainfo.source", "pk": 13016, "fields": {"orig_filename": "Kassin_Josef_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414875}}, {"model": "metainfo.source", "pk": 13017, "fields": {"orig_filename": "Kassowitz-Cvijic_Antonija_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414878}}, {"model": "metainfo.source", "pk": 13018, "fields": {"orig_filename": "Kassowitz_Emilie_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414876}}, {"model": "metainfo.source", "pk": 13019, "fields": {"orig_filename": "Kassowitz_Max_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256f.", "author": "", "orig_id": 1414877}}, {"model": "metainfo.source", "pk": 13020, "fields": {"orig_filename": "Kast-Ebelsberg_Michael_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414879}}, {"model": "metainfo.source", "pk": 13021, "fields": {"orig_filename": "Kastelic_Jakob_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414880}}, {"model": "metainfo.source", "pk": 13022, "fields": {"orig_filename": "Kastelic_Miha_1796_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257f.", "author": "", "orig_id": 1414881}}, {"model": "metainfo.source", "pk": 13023, "fields": {"orig_filename": "Kastil_Alfred_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414882}}, {"model": "metainfo.source", "pk": 13024, "fields": {"orig_filename": "Kastlunger_Peter_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414883}}, {"model": "metainfo.source", "pk": 13025, "fields": {"orig_filename": "Kastner-Michalitschke_Else_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 260", "author": "", "orig_id": 1414956}}, {"model": "metainfo.source", "pk": 13026, "fields": {"orig_filename": "Kastner_Alfred_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414884}}, {"model": "metainfo.source", "pk": 13027, "fields": {"orig_filename": "Kastner_Eduard-Fedor_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258f.", "author": "", "orig_id": 1414885}}, {"model": "metainfo.source", "pk": 13028, "fields": {"orig_filename": "Kastner_Emerich_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414886}}, {"model": "metainfo.source", "pk": 13029, "fields": {"orig_filename": "Kastner_Johann-Ev_1772_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414887}}, {"model": "metainfo.source", "pk": 13030, "fields": {"orig_filename": "Kastner_Josef_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414953}}, {"model": "metainfo.source", "pk": 13031, "fields": {"orig_filename": "Kastner_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414954}}, {"model": "metainfo.source", "pk": 13032, "fields": {"orig_filename": "Kastner_Karl_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259f.", "author": "", "orig_id": 1414955}}, {"model": "metainfo.source", "pk": 13033, "fields": {"orig_filename": "Kasumovic_Ivan_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 260f.", "author": "", "orig_id": 1414957}}, {"model": "metainfo.source", "pk": 13034, "fields": {"orig_filename": "Kasznica_Jozef_1834_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414958}}, {"model": "metainfo.source", "pk": 13035, "fields": {"orig_filename": "Kas_Igo_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414783}}, {"model": "metainfo.source", "pk": 13036, "fields": {"orig_filename": "Katalinic_Ivan_1779_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414959}}, {"model": "metainfo.source", "pk": 13037, "fields": {"orig_filename": "Katancic_Matija-Petar_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414960}}, {"model": "metainfo.source", "pk": 13038, "fields": {"orig_filename": "Katerdjian_Josef_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261f.", "author": "", "orig_id": 1414961}}, {"model": "metainfo.source", "pk": 13039, "fields": {"orig_filename": "Katholicky_Marie_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262", "author": "", "orig_id": 1414962}}, {"model": "metainfo.source", "pk": 13040, "fields": {"orig_filename": "Kathrein_Theodor_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262", "author": "", "orig_id": 1414963}}, {"model": "metainfo.source", "pk": 13041, "fields": {"orig_filename": "Katona_Jozsef_1791_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262f.", "author": "", "orig_id": 1414964}}, {"model": "metainfo.source", "pk": 13042, "fields": {"orig_filename": "Katscher_Berta_1860_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414965}}, {"model": "metainfo.source", "pk": 13043, "fields": {"orig_filename": "Katscher_Leopold_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414966}}, {"model": "metainfo.source", "pk": 13044, "fields": {"orig_filename": "Katscher_Max_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414967}}, {"model": "metainfo.source", "pk": 13045, "fields": {"orig_filename": "Katschthaler_Eduard_1857_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263f.", "author": "", "orig_id": 1414968}}, {"model": "metainfo.source", "pk": 13046, "fields": {"orig_filename": "Katschthaler_Johann-Bapt_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414969}}, {"model": "metainfo.source", "pk": 13047, "fields": {"orig_filename": "Katunaric_Ante_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414970}}, {"model": "metainfo.source", "pk": 13048, "fields": {"orig_filename": "Katuric_Mihajlo_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414971}}, {"model": "metainfo.source", "pk": 13049, "fields": {"orig_filename": "Katzenellenbogen_Oskar_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265", "author": "", "orig_id": 1414973}}, {"model": "metainfo.source", "pk": 13050, "fields": {"orig_filename": "Katzer_Anton_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265", "author": "", "orig_id": 1414974}}, {"model": "metainfo.source", "pk": 13051, "fields": {"orig_filename": "Katzer_Friedrich-Xaver_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415035}}, {"model": "metainfo.source", "pk": 13052, "fields": {"orig_filename": "Katzer_Friedrich_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265f.", "author": "", "orig_id": 1415034}}, {"model": "metainfo.source", "pk": 13053, "fields": {"orig_filename": "Katzer_Ignaz_1785_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415036}}, {"model": "metainfo.source", "pk": 13054, "fields": {"orig_filename": "Katzinger_Franz-Sal_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415037}}, {"model": "metainfo.source", "pk": 13055, "fields": {"orig_filename": "Katzler_Vinzenz_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266f.", "author": "", "orig_id": 1415038}}, {"model": "metainfo.source", "pk": 13056, "fields": {"orig_filename": "Katzmayr_Richard_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415039}}, {"model": "metainfo.source", "pk": 13057, "fields": {"orig_filename": "Katzung_Rudolf_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415040}}, {"model": "metainfo.source", "pk": 13058, "fields": {"orig_filename": "Katz_Hermann_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264f.", "author": "", "orig_id": 1414972}}, {"model": "metainfo.source", "pk": 13059, "fields": {"orig_filename": "Kaucic_Fridolin_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415041}}, {"model": "metainfo.source", "pk": 13060, "fields": {"orig_filename": "Kauders_Otto_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267f.", "author": "", "orig_id": 1415042}}, {"model": "metainfo.source", "pk": 13061, "fields": {"orig_filename": "Kauer_Anton_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 268", "author": "", "orig_id": 1415043}}, {"model": "metainfo.source", "pk": 13062, "fields": {"orig_filename": "Kauer_Ferdinand_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 268f.", "author": "", "orig_id": 1415044}}, {"model": "metainfo.source", "pk": 13063, "fields": {"orig_filename": "Kauer_Robert_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269", "author": "", "orig_id": 1415045}}, {"model": "metainfo.source", "pk": 13064, "fields": {"orig_filename": "Kauffung_Richard_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269", "author": "", "orig_id": 1415046}}, {"model": "metainfo.source", "pk": 13065, "fields": {"orig_filename": "Kaufmann_Adolf_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269f.", "author": "", "orig_id": 1415047}}, {"model": "metainfo.source", "pk": 13066, "fields": {"orig_filename": "Kaufmann_David_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270", "author": "", "orig_id": 1415048}}, {"model": "metainfo.source", "pk": 13067, "fields": {"orig_filename": "Kaufmann_Eugenie_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270", "author": "", "orig_id": 1415049}}, {"model": "metainfo.source", "pk": 13068, "fields": {"orig_filename": "Kaufmann_Felix_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270f.", "author": "", "orig_id": 1415050}}, {"model": "metainfo.source", "pk": 13069, "fields": {"orig_filename": "Kaufmann_Isidor_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 271", "author": "", "orig_id": 1415051}}, {"model": "metainfo.source", "pk": 13070, "fields": {"orig_filename": "Kaufmann_Johann-Peter_1764_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 271f.", "author": "", "orig_id": 1415052}}, {"model": "metainfo.source", "pk": 13071, "fields": {"orig_filename": "Kaufmann_Rudolf_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415053}}, {"model": "metainfo.source", "pk": 13072, "fields": {"orig_filename": "Kaulich_Josef_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415054}}, {"model": "metainfo.source", "pk": 13073, "fields": {"orig_filename": "Kaulich_Wilhelm_1833_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415055}}, {"model": "metainfo.source", "pk": 13074, "fields": {"orig_filename": "Kauperz_Johann-Veit_1741_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273", "author": "", "orig_id": 1415117}}, {"model": "metainfo.source", "pk": 13075, "fields": {"orig_filename": "Kaup_Ignaz_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272f.", "author": "", "orig_id": 1415056}}, {"model": "metainfo.source", "pk": 13076, "fields": {"orig_filename": "Kauser_Jozsef_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273", "author": "", "orig_id": 1415118}}, {"model": "metainfo.source", "pk": 13077, "fields": {"orig_filename": "Kautsch_Heinrich_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273f.", "author": "", "orig_id": 1415119}}, {"model": "metainfo.source", "pk": 13078, "fields": {"orig_filename": "Kautsch_Jakob_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415120}}, {"model": "metainfo.source", "pk": 13079, "fields": {"orig_filename": "Kautsky_Jan_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415124}}, {"model": "metainfo.source", "pk": 13080, "fields": {"orig_filename": "Kautsky_Karl_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274f.", "author": "", "orig_id": 1415122}}, {"model": "metainfo.source", "pk": 13081, "fields": {"orig_filename": "Kautsky_Wilhelmine_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 275f.", "author": "", "orig_id": 1415123}}, {"model": "metainfo.source", "pk": 13082, "fields": {"orig_filename": "Kautz_Gyula_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415125}}, {"model": "metainfo.source", "pk": 13083, "fields": {"orig_filename": "Kavan_Frantisek_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415126}}, {"model": "metainfo.source", "pk": 13084, "fields": {"orig_filename": "Kavcic_Andrej_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415127}}, {"model": "metainfo.source", "pk": 13085, "fields": {"orig_filename": "Kavcic_Jakob_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276f.", "author": "", "orig_id": 1415128}}, {"model": "metainfo.source", "pk": 13086, "fields": {"orig_filename": "Kavcic_Matija_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415129}}, {"model": "metainfo.source", "pk": 13087, "fields": {"orig_filename": "Kavcnik_Ivan_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415130}}, {"model": "metainfo.source", "pk": 13088, "fields": {"orig_filename": "Kaym_Franz_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415131}}, {"model": "metainfo.source", "pk": 13089, "fields": {"orig_filename": "Kayser_Karl-Gangolf_1837_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277f.", "author": "", "orig_id": 1415132}}, {"model": "metainfo.source", "pk": 13090, "fields": {"orig_filename": "Kazali_Pasko-Antun_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278", "author": "", "orig_id": 1415133}}, {"model": "metainfo.source", "pk": 13091, "fields": {"orig_filename": "Kazinczy_Ferenc_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278", "author": "", "orig_id": 1415134}}, {"model": "metainfo.source", "pk": 13092, "fields": {"orig_filename": "Kazinczy_Gabor_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278f.", "author": "", "orig_id": 1415135}}, {"model": "metainfo.source", "pk": 13093, "fields": {"orig_filename": "Kaznacic_Antun_1784_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279", "author": "", "orig_id": 1415205}}, {"model": "metainfo.source", "pk": 13094, "fields": {"orig_filename": "Kaznacic_Ivan-August_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279", "author": "", "orig_id": 1415206}}, {"model": "metainfo.source", "pk": 13095, "fields": {"orig_filename": "Kecskemethy-Csapo_Istvan_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280", "author": "", "orig_id": 1415208}}, {"model": "metainfo.source", "pk": 13096, "fields": {"orig_filename": "Kecskemethy_Aurel_1827_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279f.", "author": "", "orig_id": 1415207}}, {"model": "metainfo.source", "pk": 13097, "fields": {"orig_filename": "Kedzior_Andrzej_1851_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280", "author": "", "orig_id": 1415209}}, {"model": "metainfo.source", "pk": 13098, "fields": {"orig_filename": "Keess_Stephan_1774_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415211}}, {"model": "metainfo.source", "pk": 13099, "fields": {"orig_filename": "Kees_Georg_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280f.", "author": "", "orig_id": 1415210}}, {"model": "metainfo.source", "pk": 13100, "fields": {"orig_filename": "Keglevich-Buzin_Gabor_1784_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415212}}, {"model": "metainfo.source", "pk": 13101, "fields": {"orig_filename": "Keglevich-Buzin_Istvan_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415213}}, {"model": "metainfo.source", "pk": 13102, "fields": {"orig_filename": "Keiblinger_Ignaz_1797_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415214}}, {"model": "metainfo.source", "pk": 13103, "fields": {"orig_filename": "Kanitz_Luise_1908_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1440187}}, {"model": "metainfo.source", "pk": 13104, "fields": {"orig_filename": "Kanitz_Otto-Felix_1894_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414360}}, {"model": "metainfo.source", "pk": 13105, "fields": {"orig_filename": "Kanka_Daniel_1776_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414361}}, {"model": "metainfo.source", "pk": 13106, "fields": {"orig_filename": "Kanka_Johann-Nep_1772_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414362}}, {"model": "metainfo.source", "pk": 13107, "fields": {"orig_filename": "Kanne_Friedrich-August_1778_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217", "author": "", "orig_id": 1414364}}, {"model": "metainfo.source", "pk": 13108, "fields": {"orig_filename": "Kann_August_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216f.", "author": "", "orig_id": 1414363}}, {"model": "metainfo.source", "pk": 13109, "fields": {"orig_filename": "Kanski_Mikolaj_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217", "author": "", "orig_id": 1414365}}, {"model": "metainfo.source", "pk": 13110, "fields": {"orig_filename": "Kantner_Karl_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217f.", "author": "", "orig_id": 1414422}}, {"model": "metainfo.source", "pk": 13111, "fields": {"orig_filename": "Kantor_Georg_1893_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414423}}, {"model": "metainfo.source", "pk": 13112, "fields": {"orig_filename": "Kanyaro_Ferenc_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414425}}, {"model": "metainfo.source", "pk": 13113, "fields": {"orig_filename": "Kapeller_Josef_1796_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414427}}, {"model": "metainfo.source", "pk": 13114, "fields": {"orig_filename": "Kapeller_Karl_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414428}}, {"model": "metainfo.source", "pk": 13115, "fields": {"orig_filename": "Kapferer_Johann-Peter_1820_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414429}}, {"model": "metainfo.source", "pk": 13116, "fields": {"orig_filename": "Kapferer_Josef-Simon_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219f.", "author": "", "orig_id": 1414430}}, {"model": "metainfo.source", "pk": 13117, "fields": {"orig_filename": "Kapferer_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220", "author": "", "orig_id": 1414431}}, {"model": "metainfo.source", "pk": 13118, "fields": {"orig_filename": "Kapff_Franziska_1849_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220", "author": "", "orig_id": 1414432}}, {"model": "metainfo.source", "pk": 13119, "fields": {"orig_filename": "Kapic_Juraj_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220f.", "author": "", "orig_id": 1414433}}, {"model": "metainfo.source", "pk": 13120, "fields": {"orig_filename": "Kaplan_Rosina_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 221", "author": "", "orig_id": 1414434}}, {"model": "metainfo.source", "pk": 13121, "fields": {"orig_filename": "Kaplan_Viktor_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 221f.", "author": "", "orig_id": 1414435}}, {"model": "metainfo.source", "pk": 13122, "fields": {"orig_filename": "Kaposi_Moritz_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 222", "author": "", "orig_id": 1414436}}, {"model": "metainfo.source", "pk": 13123, "fields": {"orig_filename": "Kappel-Savenau_Karl-Maria_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224", "author": "", "orig_id": 1414440}}, {"model": "metainfo.source", "pk": 13124, "fields": {"orig_filename": "Kappel-Savenau_Vincenz-Ludwig_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224", "author": "", "orig_id": 1414441}}, {"model": "metainfo.source", "pk": 13125, "fields": {"orig_filename": "Kappelmacher_Alfred_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224f.", "author": "", "orig_id": 1414442}}, {"model": "metainfo.source", "pk": 13126, "fields": {"orig_filename": "Kappel_Fritz_1895_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 223", "author": "", "orig_id": 1414439}}, {"model": "metainfo.source", "pk": 13127, "fields": {"orig_filename": "Kapper_Anton_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 225", "author": "", "orig_id": 1414443}}, {"model": "metainfo.source", "pk": 13128, "fields": {"orig_filename": "Kapper_Siegfried_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 225", "author": "", "orig_id": 1414444}}, {"model": "metainfo.source", "pk": 13129, "fields": {"orig_filename": "Kappler_Adolf_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414445}}, {"model": "metainfo.source", "pk": 13130, "fields": {"orig_filename": "Kapp_Gisbert_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 222f.", "author": "", "orig_id": 1414437}}, {"model": "metainfo.source", "pk": 13131, "fields": {"orig_filename": "Kapp_Gustav_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 223", "author": "", "orig_id": 1414438}}, {"model": "metainfo.source", "pk": 13132, "fields": {"orig_filename": "Kapral_Vaclav_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414518}}, {"model": "metainfo.source", "pk": 13133, "fields": {"orig_filename": "Kapras_Jan_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414519}}, {"model": "metainfo.source", "pk": 13134, "fields": {"orig_filename": "Kapri_Mathilde_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414520}}, {"model": "metainfo.source", "pk": 13135, "fields": {"orig_filename": "Kapri_Rudolf_1887_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226f.", "author": "", "orig_id": 1414521}}, {"model": "metainfo.source", "pk": 13136, "fields": {"orig_filename": "Kapsamer_Georg_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 227", "author": "", "orig_id": 1414522}}, {"model": "metainfo.source", "pk": 13137, "fields": {"orig_filename": "Kapsch_Georg_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 227f.", "author": "", "orig_id": 1414523}}, {"model": "metainfo.source", "pk": 13138, "fields": {"orig_filename": "Kapuscinski_Jozef_1818_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 228", "author": "", "orig_id": 1414524}}, {"model": "metainfo.source", "pk": 13139, "fields": {"orig_filename": "Karabacek_Joseph_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 228f.", "author": "", "orig_id": 1414525}}, {"model": "metainfo.source", "pk": 13140, "fields": {"orig_filename": "Karacson_Mihaly_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229", "author": "", "orig_id": 1414527}}, {"model": "metainfo.source", "pk": 13141, "fields": {"orig_filename": "Karacs_Ferenc_1770_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229", "author": "", "orig_id": 1414526}}, {"model": "metainfo.source", "pk": 13142, "fields": {"orig_filename": "Karadzic_Vuk-Stefanovic_1787_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229f.", "author": "", "orig_id": 1414528}}, {"model": "metainfo.source", "pk": 13143, "fields": {"orig_filename": "Karafiat_Jan_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230", "author": "", "orig_id": 1414529}}, {"model": "metainfo.source", "pk": 13144, "fields": {"orig_filename": "Karajan_Max-Theodor_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230", "author": "", "orig_id": 1414530}}, {"model": "metainfo.source", "pk": 13145, "fields": {"orig_filename": "Karajan_Theodor-Georg_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230f.", "author": "", "orig_id": 1414531}}, {"model": "metainfo.source", "pk": 13146, "fields": {"orig_filename": "Karaman_Luka_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 231", "author": "", "orig_id": 1414532}}, {"model": "metainfo.source", "pk": 13147, "fields": {"orig_filename": "Karasek_Josef_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232", "author": "", "orig_id": 1414534}}, {"model": "metainfo.source", "pk": 13148, "fields": {"orig_filename": "Karas_Vjekoslav_1829_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 231f.", "author": "", "orig_id": 1414533}}, {"model": "metainfo.source", "pk": 13149, "fields": {"orig_filename": "Karbowiak_Antoni_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232", "author": "", "orig_id": 1414535}}, {"model": "metainfo.source", "pk": 13150, "fields": {"orig_filename": "Karczag_Wilhelm_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232f.", "author": "", "orig_id": 1414536}}, {"model": "metainfo.source", "pk": 13151, "fields": {"orig_filename": "Kardos_Gyula_1857_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414537}}, {"model": "metainfo.source", "pk": 13152, "fields": {"orig_filename": "Kardos_Janos_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414611}}, {"model": "metainfo.source", "pk": 13153, "fields": {"orig_filename": "Kareis_Josef_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414612}}, {"model": "metainfo.source", "pk": 13154, "fields": {"orig_filename": "Karell_Ludwig_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414615}}, {"model": "metainfo.source", "pk": 13155, "fields": {"orig_filename": "Karel_Eduard_1861_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414613}}, {"model": "metainfo.source", "pk": 13156, "fields": {"orig_filename": "Karel_Rudolf_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233f.", "author": "", "orig_id": 1414614}}, {"model": "metainfo.source", "pk": 13157, "fields": {"orig_filename": "Karger_Adolf_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414617}}, {"model": "metainfo.source", "pk": 13158, "fields": {"orig_filename": "Karger_Karl_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234f.", "author": "", "orig_id": 1414618}}, {"model": "metainfo.source", "pk": 13159, "fields": {"orig_filename": "Kargl_Franz_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414619}}, {"model": "metainfo.source", "pk": 13160, "fields": {"orig_filename": "Karg_Anton_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414616}}, {"model": "metainfo.source", "pk": 13161, "fields": {"orig_filename": "Karika_Janos_1808_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414620}}, {"model": "metainfo.source", "pk": 13162, "fields": {"orig_filename": "Karinger_Anton_1829_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414621}}, {"model": "metainfo.source", "pk": 13163, "fields": {"orig_filename": "Karl-Ludwig_Joseph-Maria_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 240", "author": "", "orig_id": 1414626}}, {"model": "metainfo.source", "pk": 13164, "fields": {"orig_filename": "Karlic_Petar_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 240f.", "author": "", "orig_id": 1414627}}, {"model": "metainfo.source", "pk": 13165, "fields": {"orig_filename": "Karlik_Berta-Emilie_1904_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1451679}}, {"model": "metainfo.source", "pk": 13166, "fields": {"orig_filename": "Karlik_Hanus_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241", "author": "", "orig_id": 1414628}}, {"model": "metainfo.source", "pk": 13167, "fields": {"orig_filename": "Karlik_Johann_1807_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241", "author": "", "orig_id": 1414629}}, {"model": "metainfo.source", "pk": 13168, "fields": {"orig_filename": "Karlinsky_Anton-Hans_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242", "author": "", "orig_id": 1414691}}, {"model": "metainfo.source", "pk": 13169, "fields": {"orig_filename": "Karlin_Alma-Maximiliana_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241f.", "author": "", "orig_id": 1414630}}, {"model": "metainfo.source", "pk": 13170, "fields": {"orig_filename": "Karlin_Andrej_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242", "author": "", "orig_id": 1414631}}, {"model": "metainfo.source", "pk": 13171, "fields": {"orig_filename": "Karlon_Alois_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242f.", "author": "", "orig_id": 1414692}}, {"model": "metainfo.source", "pk": 13172, "fields": {"orig_filename": "Karlon_Johann_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414693}}, {"model": "metainfo.source", "pk": 13173, "fields": {"orig_filename": "Karlovszky_Bertalan_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414694}}, {"model": "metainfo.source", "pk": 13174, "fields": {"orig_filename": "Karl_Alexander_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235f.", "author": "", "orig_id": 1414622}}, {"model": "metainfo.source", "pk": 13175, "fields": {"orig_filename": "Karl_Franz-Joseph_1887_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 236ff.", "author": "", "orig_id": 1414623}}, {"model": "metainfo.source", "pk": 13176, "fields": {"orig_filename": "Karl_Heinrich-Ernst_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 239", "author": "", "orig_id": 1414624}}, {"model": "metainfo.source", "pk": 13177, "fields": {"orig_filename": "Karl_Ludwig_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 239f.", "author": "", "orig_id": 1414625}}, {"model": "metainfo.source", "pk": 13178, "fields": {"orig_filename": "Karman_Mor_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414695}}, {"model": "metainfo.source", "pk": 13179, "fields": {"orig_filename": "Karmarsch_Karl_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243f.", "author": "", "orig_id": 1414696}}, {"model": "metainfo.source", "pk": 13180, "fields": {"orig_filename": "Karner_Lambert_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 244", "author": "", "orig_id": 1414697}}, {"model": "metainfo.source", "pk": 13181, "fields": {"orig_filename": "Karner_Leopold_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 244f.", "author": "", "orig_id": 1414698}}, {"model": "metainfo.source", "pk": 13182, "fields": {"orig_filename": "Karny_Heinrich-Hugo_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414699}}, {"model": "metainfo.source", "pk": 13183, "fields": {"orig_filename": "Karoline-Auguste__1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414701}}, {"model": "metainfo.source", "pk": 13184, "fields": {"orig_filename": "Karolyi_Alajos_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414702}}, {"model": "metainfo.source", "pk": 13185, "fields": {"orig_filename": "Karolyi_Arpad_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414703}}, {"model": "metainfo.source", "pk": 13186, "fields": {"orig_filename": "Karolyi_Gyoergy_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414704}}, {"model": "metainfo.source", "pk": 13187, "fields": {"orig_filename": "Karolyi_Istvan_1797_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414705}}, {"model": "metainfo.source", "pk": 13188, "fields": {"orig_filename": "Karolyi_Sandor_1831_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414706}}, {"model": "metainfo.source", "pk": 13189, "fields": {"orig_filename": "Karo_Ezechiel_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414700}}, {"model": "metainfo.source", "pk": 13190, "fields": {"orig_filename": "Karpath_Ludwig_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414707}}, {"model": "metainfo.source", "pk": 13191, "fields": {"orig_filename": "Karpaty_Rudolf_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414708}}, {"model": "metainfo.source", "pk": 13192, "fields": {"orig_filename": "Karpeles_Georges_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247f.", "author": "", "orig_id": 1414709}}, {"model": "metainfo.source", "pk": 13193, "fields": {"orig_filename": "Karpeles_Gustav_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248", "author": "", "orig_id": 1414710}}, {"model": "metainfo.source", "pk": 13194, "fields": {"orig_filename": "Karpellus_Adolf_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248", "author": "", "orig_id": 1414711}}, {"model": "metainfo.source", "pk": 13195, "fields": {"orig_filename": "Karpf_Fritz_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248f.", "author": "", "orig_id": 1414712}}, {"model": "metainfo.source", "pk": 13196, "fields": {"orig_filename": "Karplus_Johann-Paul_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249", "author": "", "orig_id": 1414713}}, {"model": "metainfo.source", "pk": 13197, "fields": {"orig_filename": "Karrer_Felix_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249", "author": "", "orig_id": 1414714}}, {"model": "metainfo.source", "pk": 13198, "fields": {"orig_filename": "Karsay-Teth_Sandor_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249f.", "author": "", "orig_id": 1414778}}, {"model": "metainfo.source", "pk": 13199, "fields": {"orig_filename": "Karst-Karstenwerth_Franz_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414779}}, {"model": "metainfo.source", "pk": 13200, "fields": {"orig_filename": "Kartsch_Josef_1811_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414780}}, {"model": "metainfo.source", "pk": 13201, "fields": {"orig_filename": "Karvaly_Maurus_1860_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414781}}, {"model": "metainfo.source", "pk": 13202, "fields": {"orig_filename": "Kasalovsky_Josef_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414784}}, {"model": "metainfo.source", "pk": 13203, "fields": {"orig_filename": "Kasapinovic_Svetislav_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414785}}, {"model": "metainfo.source", "pk": 13204, "fields": {"orig_filename": "Kaschnitz-Weinberg_Julius_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414787}}, {"model": "metainfo.source", "pk": 13205, "fields": {"orig_filename": "Kaiser_Karl_1873_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183f.", "author": "", "orig_id": 1413930}}, {"model": "metainfo.source", "pk": 13206, "fields": {"orig_filename": "Kaiser_Karl_1914_1999.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2089969}}, {"model": "metainfo.source", "pk": 13207, "fields": {"orig_filename": "Kaiser_Koloman_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413931}}, {"model": "metainfo.source", "pk": 13208, "fields": {"orig_filename": "Kaiser_Ludwig_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413932}}, {"model": "metainfo.source", "pk": 13209, "fields": {"orig_filename": "Kaiser_Philipp_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413933}}, {"model": "metainfo.source", "pk": 13210, "fields": {"orig_filename": "Kaizl_Josef_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 185f.", "author": "", "orig_id": 1414012}}, {"model": "metainfo.source", "pk": 13211, "fields": {"orig_filename": "Kakonyi-Csep-Kakony_Franz_1762_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186", "author": "", "orig_id": 1414013}}, {"model": "metainfo.source", "pk": 13212, "fields": {"orig_filename": "Kalac_Ante_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186", "author": "", "orig_id": 1414014}}, {"model": "metainfo.source", "pk": 13213, "fields": {"orig_filename": "Kalan_Andrej_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186f.", "author": "", "orig_id": 1414015}}, {"model": "metainfo.source", "pk": 13214, "fields": {"orig_filename": "Kalbeck_Florian_1920_1996.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419671}}, {"model": "metainfo.source", "pk": 13215, "fields": {"orig_filename": "Kalbeck_Max_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 187", "author": "", "orig_id": 1414016}}, {"model": "metainfo.source", "pk": 13216, "fields": {"orig_filename": "Kalbeck_Paul-Johannes_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 187f.", "author": "", "orig_id": 1414017}}, {"model": "metainfo.source", "pk": 13217, "fields": {"orig_filename": "Kalbrunner_Hermann-Josef_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188", "author": "", "orig_id": 1414018}}, {"model": "metainfo.source", "pk": 13218, "fields": {"orig_filename": "Kalchbrenner_Karl_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188", "author": "", "orig_id": 1414019}}, {"model": "metainfo.source", "pk": 13219, "fields": {"orig_filename": "Kalchegger-Kalchberg_Franz_1807_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188f.", "author": "", "orig_id": 1414020}}, {"model": "metainfo.source", "pk": 13220, "fields": {"orig_filename": "Kalchegger-Kalchberg_Johann_1765_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 189f.", "author": "", "orig_id": 1414021}}, {"model": "metainfo.source", "pk": 13221, "fields": {"orig_filename": "Kalchegger-Kalchberg_Josef_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 190f.", "author": "", "orig_id": 1414022}}, {"model": "metainfo.source", "pk": 13222, "fields": {"orig_filename": "Kalchegger-Kalchberg_Wilhelm_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414023}}, {"model": "metainfo.source", "pk": 13223, "fields": {"orig_filename": "Kalcher_Anton_1800_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414024}}, {"model": "metainfo.source", "pk": 13224, "fields": {"orig_filename": "Kalcher_Severin_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414025}}, {"model": "metainfo.source", "pk": 13225, "fields": {"orig_filename": "Kaldy_Adam_1763_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191f.", "author": "", "orig_id": 1414026}}, {"model": "metainfo.source", "pk": 13226, "fields": {"orig_filename": "Kalemkiar_Gregoris_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414027}}, {"model": "metainfo.source", "pk": 13227, "fields": {"orig_filename": "Kalicki_Bernard_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414095}}, {"model": "metainfo.source", "pk": 13228, "fields": {"orig_filename": "Kalina-Jaethenstein_Mathias_1772_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193", "author": "", "orig_id": 1414097}}, {"model": "metainfo.source", "pk": 13229, "fields": {"orig_filename": "Kalina_Antoni_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193", "author": "", "orig_id": 1414096}}, {"model": "metainfo.source", "pk": 13230, "fields": {"orig_filename": "Kalinka_Ernst_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193f.", "author": "", "orig_id": 1414098}}, {"model": "metainfo.source", "pk": 13231, "fields": {"orig_filename": "Kalinka_Walerian_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 194", "author": "", "orig_id": 1414099}}, {"model": "metainfo.source", "pk": 13232, "fields": {"orig_filename": "Kalister_Janez-Nep_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 194f.", "author": "", "orig_id": 1414100}}, {"model": "metainfo.source", "pk": 13233, "fields": {"orig_filename": "Kaliwoda_Franz_1820_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414101}}, {"model": "metainfo.source", "pk": 13234, "fields": {"orig_filename": "Kalkum_Maurus_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414102}}, {"model": "metainfo.source", "pk": 13235, "fields": {"orig_filename": "Kallab_Ferdinand-Viktor_1847_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414103}}, {"model": "metainfo.source", "pk": 13236, "fields": {"orig_filename": "Kallab_Wolfgang_1875_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195f.", "author": "", "orig_id": 1414104}}, {"model": "metainfo.source", "pk": 13237, "fields": {"orig_filename": "Kallay-Nagy-Kallo_Beni_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196", "author": "", "orig_id": 1414106}}, {"model": "metainfo.source", "pk": 13238, "fields": {"orig_filename": "Kallay_Oedoen_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196", "author": "", "orig_id": 1414105}}, {"model": "metainfo.source", "pk": 13239, "fields": {"orig_filename": "Kallenbach_Jozef_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196f.", "author": "", "orig_id": 1414107}}, {"model": "metainfo.source", "pk": 13240, "fields": {"orig_filename": "Kaller_Adolf_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414108}}, {"model": "metainfo.source", "pk": 13241, "fields": {"orig_filename": "Kalliauer_Anton-Christoph_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414109}}, {"model": "metainfo.source", "pk": 13242, "fields": {"orig_filename": "Kallina-Urbanow_Alois_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414112}}, {"model": "metainfo.source", "pk": 13243, "fields": {"orig_filename": "Kallina_Anna_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414110}}, {"model": "metainfo.source", "pk": 13244, "fields": {"orig_filename": "Kallina_Maurus_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197f.", "author": "", "orig_id": 1414111}}, {"model": "metainfo.source", "pk": 13245, "fields": {"orig_filename": "Kallir_Ludwig_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414113}}, {"model": "metainfo.source", "pk": 13246, "fields": {"orig_filename": "Kalliwoda_Johann-Wenzel_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414114}}, {"model": "metainfo.source", "pk": 13247, "fields": {"orig_filename": "Kallos_Ede_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414178}}, {"model": "metainfo.source", "pk": 13248, "fields": {"orig_filename": "Kalmann_Wilhelm_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414180}}, {"model": "metainfo.source", "pk": 13249, "fields": {"orig_filename": "Kalman_Farkas_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414179}}, {"model": "metainfo.source", "pk": 13250, "fields": {"orig_filename": "Kalmar_Elsa_1876_1956.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414181}}, {"model": "metainfo.source", "pk": 13251, "fields": {"orig_filename": "Kalmsteiner_Johann_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199f.", "author": "", "orig_id": 1414182}}, {"model": "metainfo.source", "pk": 13252, "fields": {"orig_filename": "Kalnoky-Koeroespatak_Gustav-Sigmund_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 200", "author": "", "orig_id": 1414183}}, {"model": "metainfo.source", "pk": 13253, "fields": {"orig_filename": "Kalny_Heribertus_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 200f.", "author": "", "orig_id": 1414184}}, {"model": "metainfo.source", "pk": 13254, "fields": {"orig_filename": "Kalousek_Josef_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201", "author": "", "orig_id": 1414185}}, {"model": "metainfo.source", "pk": 13255, "fields": {"orig_filename": "Kalousek_Vratislav_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201", "author": "", "orig_id": 1414186}}, {"model": "metainfo.source", "pk": 13256, "fields": {"orig_filename": "Kalser-Maasfeld_Franz_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414188}}, {"model": "metainfo.source", "pk": 13257, "fields": {"orig_filename": "Kalser_Leo_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201f.", "author": "", "orig_id": 1414187}}, {"model": "metainfo.source", "pk": 13258, "fields": {"orig_filename": "Kaltenbaeck_Johann-Paul_1804_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414189}}, {"model": "metainfo.source", "pk": 13259, "fields": {"orig_filename": "Kaltenboeck_Bodo_1893_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414190}}, {"model": "metainfo.source", "pk": 13260, "fields": {"orig_filename": "Kaltenbrunner_Ernst_1903_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202f.", "author": "", "orig_id": 1414191}}, {"model": "metainfo.source", "pk": 13261, "fields": {"orig_filename": "Kaltenbrunner_Ferdinand_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 203", "author": "", "orig_id": 1414192}}, {"model": "metainfo.source", "pk": 13262, "fields": {"orig_filename": "Kaltenbrunner_Karl-Adam_1804_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 203f.", "author": "", "orig_id": 1414193}}, {"model": "metainfo.source", "pk": 13263, "fields": {"orig_filename": "Kaltenegger-Riedhorst_Friedrich_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204f.", "author": "", "orig_id": 1414196}}, {"model": "metainfo.source", "pk": 13264, "fields": {"orig_filename": "Kaltenegger_Leonidas_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204", "author": "", "orig_id": 1414195}}, {"model": "metainfo.source", "pk": 13265, "fields": {"orig_filename": "Kaltenegger_Leo_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204", "author": "", "orig_id": 1414194}}, {"model": "metainfo.source", "pk": 13266, "fields": {"orig_filename": "Kaltenhauser_Franziska_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 205", "author": "", "orig_id": 1414197}}, {"model": "metainfo.source", "pk": 13267, "fields": {"orig_filename": "Kaltneker-Wallkampf_Hans_1895_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 205f.", "author": "", "orig_id": 1414198}}, {"model": "metainfo.source", "pk": 13268, "fields": {"orig_filename": "Kaltner_Balthasar_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414199}}, {"model": "metainfo.source", "pk": 13269, "fields": {"orig_filename": "Kaltner_Josef_1757_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414264}}, {"model": "metainfo.source", "pk": 13270, "fields": {"orig_filename": "Kaluza_Augustin_1776_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414265}}, {"model": "metainfo.source", "pk": 13271, "fields": {"orig_filename": "Kalvoda_Alois_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414266}}, {"model": "metainfo.source", "pk": 13272, "fields": {"orig_filename": "Kalvoda_Josef_1874_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414267}}, {"model": "metainfo.source", "pk": 13273, "fields": {"orig_filename": "Kamenarovic_Pavao_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414268}}, {"model": "metainfo.source", "pk": 13274, "fields": {"orig_filename": "Kamieniobrodzki_Alfred_1844_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414269}}, {"model": "metainfo.source", "pk": 13275, "fields": {"orig_filename": "Kamienski_Maciej_1734_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414270}}, {"model": "metainfo.source", "pk": 13276, "fields": {"orig_filename": "Kaminka_Aharon_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207f.", "author": "", "orig_id": 1414271}}, {"model": "metainfo.source", "pk": 13277, "fields": {"orig_filename": "Kaminski_Ignacy_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414272}}, {"model": "metainfo.source", "pk": 13278, "fields": {"orig_filename": "Kaminski_Jan-Nep_1777_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414273}}, {"model": "metainfo.source", "pk": 13279, "fields": {"orig_filename": "Kaminski_Kazimierz_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414274}}, {"model": "metainfo.source", "pk": 13280, "fields": {"orig_filename": "Kamitz_Reinhard_1907_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426666}}, {"model": "metainfo.source", "pk": 13281, "fields": {"orig_filename": "Kamler_Heinrich_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208f.", "author": "", "orig_id": 1414275}}, {"model": "metainfo.source", "pk": 13282, "fields": {"orig_filename": "Kamler_Heinrich_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414276}}, {"model": "metainfo.source", "pk": 13283, "fields": {"orig_filename": "Kammerer_Emil_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414277}}, {"model": "metainfo.source", "pk": 13284, "fields": {"orig_filename": "Kammerer_Gustav_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414278}}, {"model": "metainfo.source", "pk": 13285, "fields": {"orig_filename": "Kammerer_Paul_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209f.", "author": "", "orig_id": 1414279}}, {"model": "metainfo.source", "pk": 13286, "fields": {"orig_filename": "Kamniker_Franz_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 210", "author": "", "orig_id": 1414280}}, {"model": "metainfo.source", "pk": 13287, "fields": {"orig_filename": "Kamocki_Stanislaw_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 210f.", "author": "", "orig_id": 1414281}}, {"model": "metainfo.source", "pk": 13288, "fields": {"orig_filename": "Kamory_Samuel_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414282}}, {"model": "metainfo.source", "pk": 13289, "fields": {"orig_filename": "Kampelik_Frantisek-Cyril_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414283}}, {"model": "metainfo.source", "pk": 13290, "fields": {"orig_filename": "Kampf_Karl-Heinrich_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414284}}, {"model": "metainfo.source", "pk": 13291, "fields": {"orig_filename": "Kampmann-Freund_Johanna_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414347}}, {"model": "metainfo.source", "pk": 13292, "fields": {"orig_filename": "Kampmann_Karl_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211f.", "author": "", "orig_id": 1414346}}, {"model": "metainfo.source", "pk": 13293, "fields": {"orig_filename": "Kancnik_Andrej_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414348}}, {"model": "metainfo.source", "pk": 13294, "fields": {"orig_filename": "Kandelsdorfer_Karl_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414349}}, {"model": "metainfo.source", "pk": 13295, "fields": {"orig_filename": "Kandler_Franz-Sales_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212f.", "author": "", "orig_id": 1414350}}, {"model": "metainfo.source", "pk": 13296, "fields": {"orig_filename": "Kandler_Peter_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 213", "author": "", "orig_id": 1414351}}, {"model": "metainfo.source", "pk": 13297, "fields": {"orig_filename": "Kandler_Wilhelm_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 213f.", "author": "", "orig_id": 1414352}}, {"model": "metainfo.source", "pk": 13298, "fields": {"orig_filename": "Kando_Kalman_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422556}}, {"model": "metainfo.source", "pk": 13299, "fields": {"orig_filename": "Kanera-Tynbrugg_Josef_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414353}}, {"model": "metainfo.source", "pk": 13300, "fields": {"orig_filename": "Kangel_Anton_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414354}}, {"model": "metainfo.source", "pk": 13301, "fields": {"orig_filename": "Kangrga_Jovan_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414355}}, {"model": "metainfo.source", "pk": 13302, "fields": {"orig_filename": "Kaniak_Karl_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414356}}, {"model": "metainfo.source", "pk": 13303, "fields": {"orig_filename": "Kanik_Franz_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214f.", "author": "", "orig_id": 1414357}}, {"model": "metainfo.source", "pk": 13304, "fields": {"orig_filename": "Kanitz_August_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 215", "author": "", "orig_id": 1414358}}, {"model": "metainfo.source", "pk": 13305, "fields": {"orig_filename": "Kanitz_Ernst_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1439279}}, {"model": "metainfo.source", "pk": 13306, "fields": {"orig_filename": "Kanitz_Felix-Philipp_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 215f.", "author": "", "orig_id": 1414359}}, {"model": "metainfo.source", "pk": 13307, "fields": {"orig_filename": "Jurende_Karl-Josef_1780_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155f.", "author": "", "orig_id": 1414942}}, {"model": "metainfo.source", "pk": 13308, "fields": {"orig_filename": "Jurenka_Hugo_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156", "author": "", "orig_id": 1414943}}, {"model": "metainfo.source", "pk": 13309, "fields": {"orig_filename": "Jurinac_Adolfo_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156", "author": "", "orig_id": 1414944}}, {"model": "metainfo.source", "pk": 13310, "fields": {"orig_filename": "Juritsch_Georg_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156f.", "author": "", "orig_id": 1414945}}, {"model": "metainfo.source", "pk": 13311, "fields": {"orig_filename": "Jurjevic-Tuol_Josef_1785_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414946}}, {"model": "metainfo.source", "pk": 13312, "fields": {"orig_filename": "Jurkovic_Ivan_1893_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414947}}, {"model": "metainfo.source", "pk": 13313, "fields": {"orig_filename": "Jurkovic_Janko_1827_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414948}}, {"model": "metainfo.source", "pk": 13314, "fields": {"orig_filename": "Jury_Hugo_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157f.", "author": "", "orig_id": 1414949}}, {"model": "metainfo.source", "pk": 13315, "fields": {"orig_filename": "Jussel_Anton_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414950}}, {"model": "metainfo.source", "pk": 13316, "fields": {"orig_filename": "Juster_Heinrich_1876_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158f.", "author": "", "orig_id": 1415011}}, {"model": "metainfo.source", "pk": 13317, "fields": {"orig_filename": "Justh_Gyula_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415012}}, {"model": "metainfo.source", "pk": 13318, "fields": {"orig_filename": "Justh_Zsigmond_1863_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415013}}, {"model": "metainfo.source", "pk": 13319, "fields": {"orig_filename": "Justin_Rajko_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415014}}, {"model": "metainfo.source", "pk": 13320, "fields": {"orig_filename": "Just_Eduard-Alexander_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414951}}, {"model": "metainfo.source", "pk": 13321, "fields": {"orig_filename": "Just_Karl_1808_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414952}}, {"model": "metainfo.source", "pk": 13322, "fields": {"orig_filename": "Juvancic_Friderik_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160", "author": "", "orig_id": 1415016}}, {"model": "metainfo.source", "pk": 13323, "fields": {"orig_filename": "Juvan_Franz_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159f.", "author": "", "orig_id": 1415015}}, {"model": "metainfo.source", "pk": 13324, "fields": {"orig_filename": "Kaan-Albest_Julius_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415022}}, {"model": "metainfo.source", "pk": 13325, "fields": {"orig_filename": "Kaan-Albest_Samuel-Heinrich_1776_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415023}}, {"model": "metainfo.source", "pk": 13326, "fields": {"orig_filename": "Kaan_Arthur_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160", "author": "", "orig_id": 1415017}}, {"model": "metainfo.source", "pk": 13327, "fields": {"orig_filename": "Kaan_Eduard_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160f.", "author": "", "orig_id": 1415018}}, {"model": "metainfo.source", "pk": 13328, "fields": {"orig_filename": "Kaan_Ernst-Robert_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161", "author": "", "orig_id": 1415019}}, {"model": "metainfo.source", "pk": 13329, "fields": {"orig_filename": "Kaan_Wilhelm_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161", "author": "", "orig_id": 1415020}}, {"model": "metainfo.source", "pk": 13330, "fields": {"orig_filename": "Kabasta_Oswald_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415024}}, {"model": "metainfo.source", "pk": 13331, "fields": {"orig_filename": "Kabat_Maurycy_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162f.", "author": "", "orig_id": 1415025}}, {"model": "metainfo.source", "pk": 13332, "fields": {"orig_filename": "Kabelik_Jan_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415026}}, {"model": "metainfo.source", "pk": 13333, "fields": {"orig_filename": "Kablik_Josephine_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415027}}, {"model": "metainfo.source", "pk": 13334, "fields": {"orig_filename": "Kacanski_Vladislav-Stevan_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415028}}, {"model": "metainfo.source", "pk": 13335, "fields": {"orig_filename": "Kachler_Georg_1764_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415029}}, {"model": "metainfo.source", "pk": 13336, "fields": {"orig_filename": "Kachler_Josef_1847_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163f.", "author": "", "orig_id": 1415030}}, {"model": "metainfo.source", "pk": 13337, "fields": {"orig_filename": "Kachler_Michael_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415031}}, {"model": "metainfo.source", "pk": 13338, "fields": {"orig_filename": "Kachler_Peter_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415032}}, {"model": "metainfo.source", "pk": 13339, "fields": {"orig_filename": "Kaczkowski_Zygmunt_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415033}}, {"model": "metainfo.source", "pk": 13340, "fields": {"orig_filename": "Kadelburg_Gustav_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164f.", "author": "", "orig_id": 1415094}}, {"model": "metainfo.source", "pk": 13341, "fields": {"orig_filename": "Kadelburg_Heinrich_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415095}}, {"model": "metainfo.source", "pk": 13342, "fields": {"orig_filename": "Kaderavek_Johann-Eugen_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415096}}, {"model": "metainfo.source", "pk": 13343, "fields": {"orig_filename": "Kaderschafka_Karl_1893_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415097}}, {"model": "metainfo.source", "pk": 13344, "fields": {"orig_filename": "Kadich-Pferd_Hans_1864_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415098}}, {"model": "metainfo.source", "pk": 13345, "fields": {"orig_filename": "Kadich-Pferd_Heinrich_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165f.", "author": "", "orig_id": 1415099}}, {"model": "metainfo.source", "pk": 13346, "fields": {"orig_filename": "Kadlcak_Josef_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166", "author": "", "orig_id": 1415100}}, {"model": "metainfo.source", "pk": 13347, "fields": {"orig_filename": "Kadlcik_Franz-Bretislav_1847_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166", "author": "", "orig_id": 1415101}}, {"model": "metainfo.source", "pk": 13348, "fields": {"orig_filename": "Kadlec_Karel_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166f.", "author": "", "orig_id": 1415102}}, {"model": "metainfo.source", "pk": 13349, "fields": {"orig_filename": "Kadlik_Franz_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415103}}, {"model": "metainfo.source", "pk": 13350, "fields": {"orig_filename": "Kadmon_Stella_1902_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1430492}}, {"model": "metainfo.source", "pk": 13351, "fields": {"orig_filename": "Kadrnozka_Leo_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415104}}, {"model": "metainfo.source", "pk": 13352, "fields": {"orig_filename": "Kaefer_Viktor_1799_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415105}}, {"model": "metainfo.source", "pk": 13353, "fields": {"orig_filename": "Kaempf_Moritz_1835_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167f.", "author": "", "orig_id": 1415106}}, {"model": "metainfo.source", "pk": 13354, "fields": {"orig_filename": "Kaempf_Saul-Isaac_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415107}}, {"model": "metainfo.source", "pk": 13355, "fields": {"orig_filename": "Kaergling_Johann-Tobias_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415108}}, {"model": "metainfo.source", "pk": 13356, "fields": {"orig_filename": "Kaerle_Johann_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415109}}, {"model": "metainfo.source", "pk": 13357, "fields": {"orig_filename": "Kaerle_Josef_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168f.", "author": "", "orig_id": 1420791}}, {"model": "metainfo.source", "pk": 13358, "fields": {"orig_filename": "Kaesebacher_Alois_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415110}}, {"model": "metainfo.source", "pk": 13359, "fields": {"orig_filename": "Kaesmayer_Karl_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415111}}, {"model": "metainfo.source", "pk": 13360, "fields": {"orig_filename": "Kaessmann_Franz_1751_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415112}}, {"model": "metainfo.source", "pk": 13361, "fields": {"orig_filename": "Kaessmann_Josef_1784_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415113}}, {"model": "metainfo.source", "pk": 13362, "fields": {"orig_filename": "Kaestner_Josef-Viktor_1828_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415181}}, {"model": "metainfo.source", "pk": 13363, "fields": {"orig_filename": "Kafka_Bohumil_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415182}}, {"model": "metainfo.source", "pk": 13364, "fields": {"orig_filename": "Kafka_Eduard-Michael_1864_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415183}}, {"model": "metainfo.source", "pk": 13365, "fields": {"orig_filename": "Kafka_Franz_1883_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170f.", "author": "", "orig_id": 1415184}}, {"model": "metainfo.source", "pk": 13366, "fields": {"orig_filename": "Kafka_Heinrich_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 171", "author": "", "orig_id": 1415185}}, {"model": "metainfo.source", "pk": 13367, "fields": {"orig_filename": "Kafka_Johann-Nep_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 171f.", "author": "", "orig_id": 1415186}}, {"model": "metainfo.source", "pk": 13368, "fields": {"orig_filename": "Kafka_Josef_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415187}}, {"model": "metainfo.source", "pk": 13369, "fields": {"orig_filename": "Kafka_Josef_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415188}}, {"model": "metainfo.source", "pk": 13370, "fields": {"orig_filename": "Kaftan_Johann_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415189}}, {"model": "metainfo.source", "pk": 13371, "fields": {"orig_filename": "Kager-Mayregg_Karl_1819_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415190}}, {"model": "metainfo.source", "pk": 13372, "fields": {"orig_filename": "Kager-Paugger-Groebner_Hugo_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172f.", "author": "", "orig_id": 1415191}}, {"model": "metainfo.source", "pk": 13373, "fields": {"orig_filename": "Kagerbauer_Peter_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173", "author": "", "orig_id": 1415192}}, {"model": "metainfo.source", "pk": 13374, "fields": {"orig_filename": "Kahane_Arthur_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173", "author": "", "orig_id": 1415193}}, {"model": "metainfo.source", "pk": 13375, "fields": {"orig_filename": "Kahler_Eugen_1882_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174", "author": "", "orig_id": 1415195}}, {"model": "metainfo.source", "pk": 13376, "fields": {"orig_filename": "Kahler_Karl_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174", "author": "", "orig_id": 1415196}}, {"model": "metainfo.source", "pk": 13377, "fields": {"orig_filename": "Kahler_Otto_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174f.", "author": "", "orig_id": 1415197}}, {"model": "metainfo.source", "pk": 13378, "fields": {"orig_filename": "Kahler_Otto_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175", "author": "", "orig_id": 1415198}}, {"model": "metainfo.source", "pk": 13379, "fields": {"orig_filename": "Kahl_Fr-Gerhard-Maria_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173f.", "author": "", "orig_id": 1415194}}, {"model": "metainfo.source", "pk": 13380, "fields": {"orig_filename": "Kahn_Josef_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175", "author": "", "orig_id": 1415199}}, {"model": "metainfo.source", "pk": 13381, "fields": {"orig_filename": "Kahrer_Max_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415201}}, {"model": "metainfo.source", "pk": 13382, "fields": {"orig_filename": "Kahr_Heinrich_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175f.", "author": "", "orig_id": 1415200}}, {"model": "metainfo.source", "pk": 13383, "fields": {"orig_filename": "Kailan_Anton_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415202}}, {"model": "metainfo.source", "pk": 13384, "fields": {"orig_filename": "Kailer-Kaltenfels_Karl_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415203}}, {"model": "metainfo.source", "pk": 13385, "fields": {"orig_filename": "Kaindlstorfer_Johann_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 177f.", "author": "", "orig_id": 1413912}}, {"model": "metainfo.source", "pk": 13386, "fields": {"orig_filename": "Kaindl_Raimund-Friedrich_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 177", "author": "", "orig_id": 1413911}}, {"model": "metainfo.source", "pk": 13387, "fields": {"orig_filename": "Kainersdorfer_Johann-Matthias_1778_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178", "author": "", "orig_id": 1413913}}, {"model": "metainfo.source", "pk": 13388, "fields": {"orig_filename": "Kainradl_Leo_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178", "author": "", "orig_id": 1413914}}, {"model": "metainfo.source", "pk": 13389, "fields": {"orig_filename": "Kainz-Holland_Marianne_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413917}}, {"model": "metainfo.source", "pk": 13390, "fields": {"orig_filename": "Kainz-Prause_Clothilde-Emilie_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413918}}, {"model": "metainfo.source", "pk": 13391, "fields": {"orig_filename": "Kainzbauer_Ludwig_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413919}}, {"model": "metainfo.source", "pk": 13392, "fields": {"orig_filename": "Kainz_Josef-Gottfried-Ignaz_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178f.", "author": "", "orig_id": 1413915}}, {"model": "metainfo.source", "pk": 13393, "fields": {"orig_filename": "Kainz_Josef-Wolfgang_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 179f.", "author": "", "orig_id": 1413916}}, {"model": "metainfo.source", "pk": 13394, "fields": {"orig_filename": "Kain_Johann_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176f.", "author": "", "orig_id": 1415204}}, {"model": "metainfo.source", "pk": 13395, "fields": {"orig_filename": "Kaiser-Falkenthal_Ignaz_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413934}}, {"model": "metainfo.source", "pk": 13396, "fields": {"orig_filename": "Kaiser-Herbst_Carl_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1414008}}, {"model": "metainfo.source", "pk": 13397, "fields": {"orig_filename": "Kaiser-Trauenstern_Felix-Josef_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184f.", "author": "", "orig_id": 1414009}}, {"model": "metainfo.source", "pk": 13398, "fields": {"orig_filename": "Kaiserfeld_Moriz_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 185", "author": "", "orig_id": 1414010}}, {"model": "metainfo.source", "pk": 13399, "fields": {"orig_filename": "Kaiser_Alexander_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413920}}, {"model": "metainfo.source", "pk": 13400, "fields": {"orig_filename": "Kaiser_Anton_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180f.", "author": "", "orig_id": 1413921}}, {"model": "metainfo.source", "pk": 13401, "fields": {"orig_filename": "Kaiser_August_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413922}}, {"model": "metainfo.source", "pk": 13402, "fields": {"orig_filename": "Kaiser_Eduard_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413923}}, {"model": "metainfo.source", "pk": 13403, "fields": {"orig_filename": "Kaiser_Eduard_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413924}}, {"model": "metainfo.source", "pk": 13404, "fields": {"orig_filename": "Kaiser_Friedrich_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181f.", "author": "", "orig_id": 1413925}}, {"model": "metainfo.source", "pk": 13405, "fields": {"orig_filename": "Kaiser_Johann-Nep_1792_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 182", "author": "", "orig_id": 1413926}}, {"model": "metainfo.source", "pk": 13406, "fields": {"orig_filename": "Kaiser_Josef-Franz-Xaver_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 182f.", "author": "", "orig_id": 1413927}}, {"model": "metainfo.source", "pk": 13407, "fields": {"orig_filename": "Kaiser_Josef-Maria_1824_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183", "author": "", "orig_id": 1413928}}, {"model": "metainfo.source", "pk": 13408, "fields": {"orig_filename": "Kaiser_Julius_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183", "author": "", "orig_id": 1413929}}, {"model": "metainfo.source", "pk": 13409, "fields": {"orig_filename": "John_Amand_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414506}}, {"model": "metainfo.source", "pk": 13410, "fields": {"orig_filename": "John_Charles_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414507}}, {"model": "metainfo.source", "pk": 13411, "fields": {"orig_filename": "John_Franz_1815_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124f.", "author": "", "orig_id": 1414508}}, {"model": "metainfo.source", "pk": 13412, "fields": {"orig_filename": "John_Friedrich_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 125", "author": "", "orig_id": 1414510}}, {"model": "metainfo.source", "pk": 13413, "fields": {"orig_filename": "John_Friedrich_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 125", "author": "", "orig_id": 1414509}}, {"model": "metainfo.source", "pk": 13414, "fields": {"orig_filename": "John_Hanns_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414511}}, {"model": "metainfo.source", "pk": 13415, "fields": {"orig_filename": "John_Vinzenz_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414512}}, {"model": "metainfo.source", "pk": 13416, "fields": {"orig_filename": "John_Wilhelm_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414513}}, {"model": "metainfo.source", "pk": 13417, "fields": {"orig_filename": "Jokai_Mor_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 127", "author": "", "orig_id": 1414515}}, {"model": "metainfo.source", "pk": 13418, "fields": {"orig_filename": "Jokely_Janos_1826_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 127", "author": "", "orig_id": 1414587}}, {"model": "metainfo.source", "pk": 13419, "fields": {"orig_filename": "Jokl_Norbert_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414588}}, {"model": "metainfo.source", "pk": 13420, "fields": {"orig_filename": "Jolles_Adolf_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414589}}, {"model": "metainfo.source", "pk": 13421, "fields": {"orig_filename": "Joly_Ferdinand_1765_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414590}}, {"model": "metainfo.source", "pk": 13422, "fields": {"orig_filename": "Jonak-Freyenwald_Gustav_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414592}}, {"model": "metainfo.source", "pk": 13423, "fields": {"orig_filename": "Jonak_Eberhard-Antonin_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128f.", "author": "", "orig_id": 1414591}}, {"model": "metainfo.source", "pk": 13424, "fields": {"orig_filename": "Joo_Istvan_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414593}}, {"model": "metainfo.source", "pk": 13425, "fields": {"orig_filename": "Joppi_Vincenzo_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414594}}, {"model": "metainfo.source", "pk": 13426, "fields": {"orig_filename": "Jordan-Rozwadowski-Gross-Rozwadow_Thaddaeus_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132f.", "author": "", "orig_id": 1414604}}, {"model": "metainfo.source", "pk": 13427, "fields": {"orig_filename": "Jordan_Eduard_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414595}}, {"model": "metainfo.source", "pk": 13428, "fields": {"orig_filename": "Jordan_Franz-Sylvester_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129f.", "author": "", "orig_id": 1414596}}, {"model": "metainfo.source", "pk": 13429, "fields": {"orig_filename": "Jordan_Franz-Xaver_1741_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 130", "author": "", "orig_id": 1414597}}, {"model": "metainfo.source", "pk": 13430, "fields": {"orig_filename": "Jordan_Henryk_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 130f.", "author": "", "orig_id": 1414598}}, {"model": "metainfo.source", "pk": 13431, "fields": {"orig_filename": "Jordan_Jan-Petr_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131", "author": "", "orig_id": 1414599}}, {"model": "metainfo.source", "pk": 13432, "fields": {"orig_filename": "Jordan_Josef_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131", "author": "", "orig_id": 1414600}}, {"model": "metainfo.source", "pk": 13433, "fields": {"orig_filename": "Jordan_Karl_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131f.", "author": "", "orig_id": 1414601}}, {"model": "metainfo.source", "pk": 13434, "fields": {"orig_filename": "Jordan_Peter_1751_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132", "author": "", "orig_id": 1414602}}, {"model": "metainfo.source", "pk": 13435, "fields": {"orig_filename": "Jordan_Richard_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132", "author": "", "orig_id": 1414603}}, {"model": "metainfo.source", "pk": 13436, "fields": {"orig_filename": "Jorgovanic_Richard_1853_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414605}}, {"model": "metainfo.source", "pk": 13437, "fields": {"orig_filename": "Jorkasch-Koch_Adolf_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414606}}, {"model": "metainfo.source", "pk": 13438, "fields": {"orig_filename": "Jorkasch-Koch_Adolf_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414607}}, {"model": "metainfo.source", "pk": 13439, "fields": {"orig_filename": "Josch_Eduard_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414608}}, {"model": "metainfo.source", "pk": 13440, "fields": {"orig_filename": "Joseffy_Rafael_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133f.", "author": "", "orig_id": 1414609}}, {"model": "metainfo.source", "pk": 13441, "fields": {"orig_filename": "Josephy_Gustav_1820_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135f.", "author": "", "orig_id": 1414680}}, {"model": "metainfo.source", "pk": 13442, "fields": {"orig_filename": "Josephy_Gustav_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136", "author": "", "orig_id": 1414681}}, {"model": "metainfo.source", "pk": 13443, "fields": {"orig_filename": "Joseph_Anton-Johann_1776_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 134", "author": "", "orig_id": 1414610}}, {"model": "metainfo.source", "pk": 13444, "fields": {"orig_filename": "Joseph_Carl-Ludwig_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 134f.", "author": "", "orig_id": 1414676}}, {"model": "metainfo.source", "pk": 13445, "fields": {"orig_filename": "Joseph_Ferdinand-Salvator_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135", "author": "", "orig_id": 1414677}}, {"model": "metainfo.source", "pk": 13446, "fields": {"orig_filename": "Joseph_Heinrich_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135", "author": "", "orig_id": 1414678}}, {"model": "metainfo.source", "pk": 13447, "fields": {"orig_filename": "Josika-Branyicska_Miklos_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136", "author": "", "orig_id": 1414682}}, {"model": "metainfo.source", "pk": 13448, "fields": {"orig_filename": "Josika-Branyicska_Samu_1805_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136f.", "author": "", "orig_id": 1414683}}, {"model": "metainfo.source", "pk": 13449, "fields": {"orig_filename": "Joss_Marcus_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137", "author": "", "orig_id": 1414684}}, {"model": "metainfo.source", "pk": 13450, "fields": {"orig_filename": "Jovanovic-Batut_Milan_1847_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138f.", "author": "", "orig_id": 1414758}}, {"model": "metainfo.source", "pk": 13451, "fields": {"orig_filename": "Jovanovic_Anastas_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137", "author": "", "orig_id": 1414685}}, {"model": "metainfo.source", "pk": 13452, "fields": {"orig_filename": "Jovanovic_Jovan_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137f.", "author": "", "orig_id": 1414686}}, {"model": "metainfo.source", "pk": 13453, "fields": {"orig_filename": "Jovanovic_Kosta_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414687}}, {"model": "metainfo.source", "pk": 13454, "fields": {"orig_filename": "Jovanovic_Milan_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414688}}, {"model": "metainfo.source", "pk": 13455, "fields": {"orig_filename": "Jovanovic_Stephan_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414689}}, {"model": "metainfo.source", "pk": 13456, "fields": {"orig_filename": "Jovanovic_Tosa_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414690}}, {"model": "metainfo.source", "pk": 13457, "fields": {"orig_filename": "Jovic_Spiridon_1801_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139", "author": "", "orig_id": 1414759}}, {"model": "metainfo.source", "pk": 13458, "fields": {"orig_filename": "Jozeffy_Pal_1775_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139", "author": "", "orig_id": 1414760}}, {"model": "metainfo.source", "pk": 13459, "fields": {"orig_filename": "Jozefovic_Oskar_1890_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139f.", "author": "", "orig_id": 1414761}}, {"model": "metainfo.source", "pk": 13460, "fields": {"orig_filename": "Juch_Emma-Antonia-Johanna_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140", "author": "", "orig_id": 1414762}}, {"model": "metainfo.source", "pk": 13461, "fields": {"orig_filename": "Juch_Ernst_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140", "author": "", "orig_id": 1414763}}, {"model": "metainfo.source", "pk": 13462, "fields": {"orig_filename": "Juda_Adele_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141", "author": "", "orig_id": 1414765}}, {"model": "metainfo.source", "pk": 13463, "fields": {"orig_filename": "Juda_Albin_1848_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141", "author": "", "orig_id": 1414766}}, {"model": "metainfo.source", "pk": 13464, "fields": {"orig_filename": "Jud_Roman_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140f.", "author": "", "orig_id": 1414764}}, {"model": "metainfo.source", "pk": 13465, "fields": {"orig_filename": "Juelg_Bernhard_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141f.", "author": "", "orig_id": 1414767}}, {"model": "metainfo.source", "pk": 13466, "fields": {"orig_filename": "Juellig_Max_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414768}}, {"model": "metainfo.source", "pk": 13467, "fields": {"orig_filename": "Juenger_Vinzenz_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414769}}, {"model": "metainfo.source", "pk": 13468, "fields": {"orig_filename": "Jueptner-Jonstorff_Hans_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414770}}, {"model": "metainfo.source", "pk": 13469, "fields": {"orig_filename": "Juestel_Josef-Alois_1765_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142f.", "author": "", "orig_id": 1414771}}, {"model": "metainfo.source", "pk": 13470, "fields": {"orig_filename": "Juethner_Julius_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 143f.", "author": "", "orig_id": 1414772}}, {"model": "metainfo.source", "pk": 13471, "fields": {"orig_filename": "Juettner_Josef_1775_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414773}}, {"model": "metainfo.source", "pk": 13472, "fields": {"orig_filename": "Juffinger_Georg_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414774}}, {"model": "metainfo.source", "pk": 13473, "fields": {"orig_filename": "Juffinger_Michael_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414775}}, {"model": "metainfo.source", "pk": 13474, "fields": {"orig_filename": "Jugenicz-Boldoghegy_Anton_1773_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414777}}, {"model": "metainfo.source", "pk": 13475, "fields": {"orig_filename": "Jugoviz_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414843}}, {"model": "metainfo.source", "pk": 13476, "fields": {"orig_filename": "Jug_Klement_1898_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414776}}, {"model": "metainfo.source", "pk": 13477, "fields": {"orig_filename": "Juhasz_Karl_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414844}}, {"model": "metainfo.source", "pk": 13478, "fields": {"orig_filename": "Jukel_Karl_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414845}}, {"model": "metainfo.source", "pk": 13479, "fields": {"orig_filename": "Jukic_Ante_1873_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414846}}, {"model": "metainfo.source", "pk": 13480, "fields": {"orig_filename": "Jukic_Ivan-Franjo_1818_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414847}}, {"model": "metainfo.source", "pk": 13481, "fields": {"orig_filename": "Julisch_Hermine_1850_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414848}}, {"model": "metainfo.source", "pk": 13482, "fields": {"orig_filename": "Julius_Paul_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414849}}, {"model": "metainfo.source", "pk": 13483, "fields": {"orig_filename": "Jummerspach_Fritz_1878_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146f.", "author": "", "orig_id": 1414850}}, {"model": "metainfo.source", "pk": 13484, "fields": {"orig_filename": "Junck_Karl_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414851}}, {"model": "metainfo.source", "pk": 13485, "fields": {"orig_filename": "Jungbauer_Gustav_1886_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149", "author": "", "orig_id": 1414858}}, {"model": "metainfo.source", "pk": 13486, "fields": {"orig_filename": "Jungbauer_Raimund_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149", "author": "", "orig_id": 1414859}}, {"model": "metainfo.source", "pk": 13487, "fields": {"orig_filename": "Junger_Franz_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149f.", "author": "", "orig_id": 1414860}}, {"model": "metainfo.source", "pk": 13488, "fields": {"orig_filename": "Junger_Michael_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414861}}, {"model": "metainfo.source", "pk": 13489, "fields": {"orig_filename": "Jungl_Anton_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414862}}, {"model": "metainfo.source", "pk": 13490, "fields": {"orig_filename": "Jungmair_Rudolf_1813_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414863}}, {"model": "metainfo.source", "pk": 13491, "fields": {"orig_filename": "Jungmann_Albert_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414864}}, {"model": "metainfo.source", "pk": 13492, "fields": {"orig_filename": "Jungmann_Anton-Johann_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150f.", "author": "", "orig_id": 1414865}}, {"model": "metainfo.source", "pk": 13493, "fields": {"orig_filename": "Jungmann_Flora_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414866}}, {"model": "metainfo.source", "pk": 13494, "fields": {"orig_filename": "Jungmann_Jan_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414928}}, {"model": "metainfo.source", "pk": 13495, "fields": {"orig_filename": "Jungmann_Josef_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414929}}, {"model": "metainfo.source", "pk": 13496, "fields": {"orig_filename": "Jungmann_Josef_1830_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414930}}, {"model": "metainfo.source", "pk": 13497, "fields": {"orig_filename": "Jungwirth_Adalbert_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151f.", "author": "", "orig_id": 1414931}}, {"model": "metainfo.source", "pk": 13498, "fields": {"orig_filename": "Jungwirth_Josef_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152", "author": "", "orig_id": 1414932}}, {"model": "metainfo.source", "pk": 13499, "fields": {"orig_filename": "Jung_Amand_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414852}}, {"model": "metainfo.source", "pk": 13500, "fields": {"orig_filename": "Jung_Edmund_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414853}}, {"model": "metainfo.source", "pk": 13501, "fields": {"orig_filename": "Jung_Giuseppe_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147f.", "author": "", "orig_id": 1414854}}, {"model": "metainfo.source", "pk": 13502, "fields": {"orig_filename": "Jung_Julius_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148", "author": "", "orig_id": 1414855}}, {"model": "metainfo.source", "pk": 13503, "fields": {"orig_filename": "Jung_Moriz_1885_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148", "author": "", "orig_id": 1414856}}, {"model": "metainfo.source", "pk": 13504, "fields": {"orig_filename": "Jung_Rudolf_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148f.", "author": "", "orig_id": 1414857}}, {"model": "metainfo.source", "pk": 13505, "fields": {"orig_filename": "Junker_Christian_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 153", "author": "", "orig_id": 1414935}}, {"model": "metainfo.source", "pk": 13506, "fields": {"orig_filename": "Junker_Karl_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 153f.", "author": "", "orig_id": 1414936}}, {"model": "metainfo.source", "pk": 13507, "fields": {"orig_filename": "Junk_Rudolf_1880_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152", "author": "", "orig_id": 1414933}}, {"model": "metainfo.source", "pk": 13508, "fields": {"orig_filename": "Junk_Viktor_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152f.", "author": "", "orig_id": 1414934}}, {"model": "metainfo.source", "pk": 13509, "fields": {"orig_filename": "Juranyi_Lajos_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154", "author": "", "orig_id": 1414937}}, {"model": "metainfo.source", "pk": 13510, "fields": {"orig_filename": "Juraschek_Franz_1849_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154", "author": "", "orig_id": 1414938}}, {"model": "metainfo.source", "pk": 13511, "fields": {"orig_filename": "Juratzka_Jakob_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154f.", "author": "", "orig_id": 1414939}}, {"model": "metainfo.source", "pk": 13512, "fields": {"orig_filename": "Jurcic_Josip_1844_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155", "author": "", "orig_id": 1414940}}, {"model": "metainfo.source", "pk": 13513, "fields": {"orig_filename": "Jurek_Wilhelm-August_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155", "author": "", "orig_id": 1414941}}, {"model": "metainfo.source", "pk": 13514, "fields": {"orig_filename": "Jeglic_Anton-Bonaventura_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92f.", "author": "", "orig_id": 1414091}}, {"model": "metainfo.source", "pk": 13515, "fields": {"orig_filename": "Jehle_Ludwig_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93", "author": "", "orig_id": 1414092}}, {"model": "metainfo.source", "pk": 13516, "fields": {"orig_filename": "Jehly_Georg_1848_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93", "author": "", "orig_id": 1414093}}, {"model": "metainfo.source", "pk": 13517, "fields": {"orig_filename": "Jehly_Jacob_1854_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93f.", "author": "", "orig_id": 1414156}}, {"model": "metainfo.source", "pk": 13518, "fields": {"orig_filename": "Jeiteles_Eleonore_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414157}}, {"model": "metainfo.source", "pk": 13519, "fields": {"orig_filename": "Jeitteles_Adalbert_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414158}}, {"model": "metainfo.source", "pk": 13520, "fields": {"orig_filename": "Jeitteles_Alois-Isidor_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414159}}, {"model": "metainfo.source", "pk": 13521, "fields": {"orig_filename": "Jeitteles_Andreas-Ludwig_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414160}}, {"model": "metainfo.source", "pk": 13522, "fields": {"orig_filename": "Jeitteles_Isaac_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94f.", "author": "", "orig_id": 1414161}}, {"model": "metainfo.source", "pk": 13523, "fields": {"orig_filename": "Jeitteles_Ludwig-Heinrich_1830_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95", "author": "", "orig_id": 1414162}}, {"model": "metainfo.source", "pk": 13524, "fields": {"orig_filename": "Jeitteles_Richard_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95", "author": "", "orig_id": 1414163}}, {"model": "metainfo.source", "pk": 13525, "fields": {"orig_filename": "Jekelfalussy-Jekelfalus-Margitfalva_Josef_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95f.", "author": "", "orig_id": 1414164}}, {"model": "metainfo.source", "pk": 13526, "fields": {"orig_filename": "Jekelfalussy-Jekelfalus-Margitfalva_Ludwig_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414165}}, {"model": "metainfo.source", "pk": 13527, "fields": {"orig_filename": "Jelacic-Buzim_Josef_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 99f.", "author": "", "orig_id": 1414245}}, {"model": "metainfo.source", "pk": 13528, "fields": {"orig_filename": "Jelenic_Julijan_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414169}}, {"model": "metainfo.source", "pk": 13529, "fields": {"orig_filename": "Jelenko_Siegfried_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414170}}, {"model": "metainfo.source", "pk": 13530, "fields": {"orig_filename": "Jelenska_Irma_1852_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414171}}, {"model": "metainfo.source", "pk": 13531, "fields": {"orig_filename": "Jelen_Alois_1801_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414168}}, {"model": "metainfo.source", "pk": 13532, "fields": {"orig_filename": "Jele_Albert_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414166}}, {"model": "metainfo.source", "pk": 13533, "fields": {"orig_filename": "Jele_Kaspar_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414167}}, {"model": "metainfo.source", "pk": 13534, "fields": {"orig_filename": "Jelic_Luka_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414173}}, {"model": "metainfo.source", "pk": 13535, "fields": {"orig_filename": "Jelinek_Alfons_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414174}}, {"model": "metainfo.source", "pk": 13536, "fields": {"orig_filename": "Jelinek_Edmund_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414175}}, {"model": "metainfo.source", "pk": 13537, "fields": {"orig_filename": "Jelinek_Franz-Xaver_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414177}}, {"model": "metainfo.source", "pk": 13538, "fields": {"orig_filename": "Jelinek_Franz_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414176}}, {"model": "metainfo.source", "pk": 13539, "fields": {"orig_filename": "Jelinek_Josef_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414242}}, {"model": "metainfo.source", "pk": 13540, "fields": {"orig_filename": "Jelinek_Karl_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98f.", "author": "", "orig_id": 1414243}}, {"model": "metainfo.source", "pk": 13541, "fields": {"orig_filename": "Jelinek_Wilhelm_1845_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 99", "author": "", "orig_id": 1414244}}, {"model": "metainfo.source", "pk": 13542, "fields": {"orig_filename": "Jellinek-Mercedes_Emil_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414253}}, {"model": "metainfo.source", "pk": 13543, "fields": {"orig_filename": "Jellinek_Adolf_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 100f.", "author": "", "orig_id": 1414246}}, {"model": "metainfo.source", "pk": 13544, "fields": {"orig_filename": "Jellinek_Camilla_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 101", "author": "", "orig_id": 1414247}}, {"model": "metainfo.source", "pk": 13545, "fields": {"orig_filename": "Jellinek_Georg_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 101f.", "author": "", "orig_id": 1414248}}, {"model": "metainfo.source", "pk": 13546, "fields": {"orig_filename": "Jellinek_Hermann_1822_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102", "author": "", "orig_id": 1414249}}, {"model": "metainfo.source", "pk": 13547, "fields": {"orig_filename": "Jellinek_Max-Hermann_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102", "author": "", "orig_id": 1414250}}, {"model": "metainfo.source", "pk": 13548, "fields": {"orig_filename": "Jellinek_Moritz_1828_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102f.", "author": "", "orig_id": 1414251}}, {"model": "metainfo.source", "pk": 13549, "fields": {"orig_filename": "Jellinek_Oskar_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414252}}, {"model": "metainfo.source", "pk": 13550, "fields": {"orig_filename": "Jelovsek_Ernestine_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414254}}, {"model": "metainfo.source", "pk": 13551, "fields": {"orig_filename": "Jendrassik_Ernoe_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103f.", "author": "", "orig_id": 1414255}}, {"model": "metainfo.source", "pk": 13552, "fields": {"orig_filename": "Jendrassik_Jenoe-Lipot-Andras_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1414256}}, {"model": "metainfo.source", "pk": 13553, "fields": {"orig_filename": "Jenewein_Felix_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1421744}}, {"model": "metainfo.source", "pk": 13554, "fields": {"orig_filename": "Jenger_Johann-Baptist_1792_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1414257}}, {"model": "metainfo.source", "pk": 13555, "fields": {"orig_filename": "Jenikowsky_Franz_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104f.", "author": "", "orig_id": 1414258}}, {"model": "metainfo.source", "pk": 13556, "fields": {"orig_filename": "Jenke_Heinrich_1823_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105", "author": "", "orig_id": 1414259}}, {"model": "metainfo.source", "pk": 13557, "fields": {"orig_filename": "Jenko_Davorin_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105", "author": "", "orig_id": 1414260}}, {"model": "metainfo.source", "pk": 13558, "fields": {"orig_filename": "Jenko_Simon_1835_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105f.", "author": "", "orig_id": 1414261}}, {"model": "metainfo.source", "pk": 13559, "fields": {"orig_filename": "Jenny_Karl_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 106", "author": "", "orig_id": 1414262}}, {"model": "metainfo.source", "pk": 13560, "fields": {"orig_filename": "Jenny_Melchior_1785_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 106f.", "author": "", "orig_id": 1414263}}, {"model": "metainfo.source", "pk": 13561, "fields": {"orig_filename": "Jenny_Rudolf-Christoph_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107", "author": "", "orig_id": 1414323}}, {"model": "metainfo.source", "pk": 13562, "fields": {"orig_filename": "Jenny_Samuel_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107", "author": "", "orig_id": 1414324}}, {"model": "metainfo.source", "pk": 13563, "fields": {"orig_filename": "Jentsch_August_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107f.", "author": "", "orig_id": 1414325}}, {"model": "metainfo.source", "pk": 13564, "fields": {"orig_filename": "Jentzsch_Robert-Bruno_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108", "author": "", "orig_id": 1414326}}, {"model": "metainfo.source", "pk": 13565, "fields": {"orig_filename": "Jenull_Johann_1773_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108", "author": "", "orig_id": 1414327}}, {"model": "metainfo.source", "pk": 13566, "fields": {"orig_filename": "Jenull_Sebastian_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108f.", "author": "", "orig_id": 1414328}}, {"model": "metainfo.source", "pk": 13567, "fields": {"orig_filename": "Jerabek_Frantisek-Venceslav_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414329}}, {"model": "metainfo.source", "pk": 13568, "fields": {"orig_filename": "Jerabek_Vaclav_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414330}}, {"model": "metainfo.source", "pk": 13569, "fields": {"orig_filename": "Jeraj_Franciska_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414331}}, {"model": "metainfo.source", "pk": 13570, "fields": {"orig_filename": "Jeran_Luka_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109f.", "author": "", "orig_id": 1414332}}, {"model": "metainfo.source", "pk": 13571, "fields": {"orig_filename": "Jeremias_Bohuslav_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414334}}, {"model": "metainfo.source", "pk": 13572, "fields": {"orig_filename": "Jeremias_Jaroslav_1889_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414335}}, {"model": "metainfo.source", "pk": 13573, "fields": {"orig_filename": "Jergitsch_Ferdinand_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414336}}, {"model": "metainfo.source", "pk": 13574, "fields": {"orig_filename": "Jerisa_Fran_1829_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414337}}, {"model": "metainfo.source", "pk": 13575, "fields": {"orig_filename": "Jerney_Janos_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110f.", "author": "", "orig_id": 1414338}}, {"model": "metainfo.source", "pk": 13576, "fields": {"orig_filename": "Jerusalem_Wilhelm_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 111", "author": "", "orig_id": 1414339}}, {"model": "metainfo.source", "pk": 13577, "fields": {"orig_filename": "Jesenko_Fran_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 111f.", "author": "", "orig_id": 1414340}}, {"model": "metainfo.source", "pk": 13578, "fields": {"orig_filename": "Jesenko_Janez_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414341}}, {"model": "metainfo.source", "pk": 13579, "fields": {"orig_filename": "Jesenska_Ruzena_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414342}}, {"model": "metainfo.source", "pk": 13580, "fields": {"orig_filename": "Jessen_Asmus-Christian_1835_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414343}}, {"model": "metainfo.source", "pk": 13581, "fields": {"orig_filename": "Jessernigg_Gabriel_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414344}}, {"model": "metainfo.source", "pk": 13582, "fields": {"orig_filename": "Jettel-Ettenach_Emil_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112f.", "author": "", "orig_id": 1414404}}, {"model": "metainfo.source", "pk": 13583, "fields": {"orig_filename": "Jettel_Wladimir_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414403}}, {"model": "metainfo.source", "pk": 13584, "fields": {"orig_filename": "Jettmar_Rudolf_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 113", "author": "", "orig_id": 1414405}}, {"model": "metainfo.source", "pk": 13585, "fields": {"orig_filename": "Jezbera_Frantisek-Jan_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 113", "author": "", "orig_id": 1414406}}, {"model": "metainfo.source", "pk": 13586, "fields": {"orig_filename": "Jezek_Jan_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414407}}, {"model": "metainfo.source", "pk": 13587, "fields": {"orig_filename": "Jicinsky_Ferdinand_1846_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414408}}, {"model": "metainfo.source", "pk": 13588, "fields": {"orig_filename": "Jicinsky_Karl_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414409}}, {"model": "metainfo.source", "pk": 13589, "fields": {"orig_filename": "Jihn-Solwegen_Friedrich_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414410}}, {"model": "metainfo.source", "pk": 13590, "fields": {"orig_filename": "Jiranek_Milos_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414411}}, {"model": "metainfo.source", "pk": 13591, "fields": {"orig_filename": "Jirani_Otakar_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114f.", "author": "", "orig_id": 1414412}}, {"model": "metainfo.source", "pk": 13592, "fields": {"orig_filename": "Jirasek_Alois_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 115", "author": "", "orig_id": 1414413}}, {"model": "metainfo.source", "pk": 13593, "fields": {"orig_filename": "Jirecek-Samokov_Hermenegild_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117", "author": "", "orig_id": 1414416}}, {"model": "metainfo.source", "pk": 13594, "fields": {"orig_filename": "Jirecek_Josef-Konstantin_1854_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 116f.", "author": "", "orig_id": 1414415}}, {"model": "metainfo.source", "pk": 13595, "fields": {"orig_filename": "Jirecek_Josef_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 115f.", "author": "", "orig_id": 1414414}}, {"model": "metainfo.source", "pk": 13596, "fields": {"orig_filename": "Jirousek_Anton_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117", "author": "", "orig_id": 1414417}}, {"model": "metainfo.source", "pk": 13597, "fields": {"orig_filename": "Jirsik_Johann-Valerian_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117f.", "author": "", "orig_id": 1414418}}, {"model": "metainfo.source", "pk": 13598, "fields": {"orig_filename": "Jirus_Bohuslav_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118", "author": "", "orig_id": 1414419}}, {"model": "metainfo.source", "pk": 13599, "fields": {"orig_filename": "Joachim_Amalie_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118", "author": "", "orig_id": 1414420}}, {"model": "metainfo.source", "pk": 13600, "fields": {"orig_filename": "Joachim_Josef_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118f.", "author": "", "orig_id": 1414421}}, {"model": "metainfo.source", "pk": 13601, "fields": {"orig_filename": "Joanovic_Djordje_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414491}}, {"model": "metainfo.source", "pk": 13602, "fields": {"orig_filename": "Jobst_Carl_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414493}}, {"model": "metainfo.source", "pk": 13603, "fields": {"orig_filename": "Jobst_Franz_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119f.", "author": "", "orig_id": 1414494}}, {"model": "metainfo.source", "pk": 13604, "fields": {"orig_filename": "Job_Ignjat_1895_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414492}}, {"model": "metainfo.source", "pk": 13605, "fields": {"orig_filename": "Jochum_Josef-Anton_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 120", "author": "", "orig_id": 1414495}}, {"model": "metainfo.source", "pk": 13606, "fields": {"orig_filename": "Jodl_Friedrich_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 120f.", "author": "", "orig_id": 1414496}}, {"model": "metainfo.source", "pk": 13607, "fields": {"orig_filename": "Jodl_Margarete_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414497}}, {"model": "metainfo.source", "pk": 13608, "fields": {"orig_filename": "Joelson_Robert_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414498}}, {"model": "metainfo.source", "pk": 13609, "fields": {"orig_filename": "Joendl_Johann-Philipp_1782_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414499}}, {"model": "metainfo.source", "pk": 13610, "fields": {"orig_filename": "Joers_Paul_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121f.", "author": "", "orig_id": 1414500}}, {"model": "metainfo.source", "pk": 13611, "fields": {"orig_filename": "Johanny_Erich-Adolf_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123", "author": "", "orig_id": 1414502}}, {"model": "metainfo.source", "pk": 13612, "fields": {"orig_filename": "Johanny_Lothar_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123", "author": "", "orig_id": 1414503}}, {"model": "metainfo.source", "pk": 13613, "fields": {"orig_filename": "Johann_Bapt-Joseph-Fabian-Sebastian_1782_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 122f.", "author": "", "orig_id": 1414501}}, {"model": "metainfo.source", "pk": 13614, "fields": {"orig_filename": "Joherl_Ignaz-Heinrich_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123f.", "author": "", "orig_id": 1414504}}, {"model": "metainfo.source", "pk": 13615, "fields": {"orig_filename": "John-Johnesberg_Conrad-Heinrich_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126f.", "author": "", "orig_id": 1414514}}, {"model": "metainfo.source", "pk": 13616, "fields": {"orig_filename": "John_Alois_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414505}}, {"model": "metainfo.source", "pk": 13617, "fields": {"orig_filename": "Jaksch_Amalie_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414996}}, {"model": "metainfo.source", "pk": 13618, "fields": {"orig_filename": "Jaksch_Friedrich_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414997}}, {"model": "metainfo.source", "pk": 13619, "fields": {"orig_filename": "Jaksch_Josef_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414998}}, {"model": "metainfo.source", "pk": 13620, "fields": {"orig_filename": "Jaksic_Djuro_1832_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415003}}, {"model": "metainfo.source", "pk": 13621, "fields": {"orig_filename": "Jaksi_Josef_1874_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66f.", "author": "", "orig_id": 1415002}}, {"model": "metainfo.source", "pk": 13622, "fields": {"orig_filename": "Jakubec_Jan_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415004}}, {"model": "metainfo.source", "pk": 13623, "fields": {"orig_filename": "Jalowetz_Eduard_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415005}}, {"model": "metainfo.source", "pk": 13624, "fields": {"orig_filename": "Jama_Matija_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67f.", "author": "", "orig_id": 1415006}}, {"model": "metainfo.source", "pk": 13625, "fields": {"orig_filename": "Jambor_Pal_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68", "author": "", "orig_id": 1415007}}, {"model": "metainfo.source", "pk": 13626, "fields": {"orig_filename": "Jambrisak_Marija_1847_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68", "author": "", "orig_id": 1415008}}, {"model": "metainfo.source", "pk": 13627, "fields": {"orig_filename": "Jamrich_Maria-Helene_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68f.", "author": "", "orig_id": 1415009}}, {"model": "metainfo.source", "pk": 13628, "fields": {"orig_filename": "Jamsek_Franc_1840_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415073}}, {"model": "metainfo.source", "pk": 13629, "fields": {"orig_filename": "Janacek_Leos_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415075}}, {"model": "metainfo.source", "pk": 13630, "fields": {"orig_filename": "Janauschek_Franziska-Magdalena_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69f.", "author": "", "orig_id": 1415076}}, {"model": "metainfo.source", "pk": 13631, "fields": {"orig_filename": "Janauschek_Leopold_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70", "author": "", "orig_id": 1415077}}, {"model": "metainfo.source", "pk": 13632, "fields": {"orig_filename": "Janauschek_Wilhelm-Raphael_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70", "author": "", "orig_id": 1415078}}, {"model": "metainfo.source", "pk": 13633, "fields": {"orig_filename": "Jancso_Benedek_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70f.", "author": "", "orig_id": 1415079}}, {"model": "metainfo.source", "pk": 13634, "fields": {"orig_filename": "Jancso_Gyoergy_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415080}}, {"model": "metainfo.source", "pk": 13635, "fields": {"orig_filename": "Jandera_Joseph-Ladislaus_1776_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415081}}, {"model": "metainfo.source", "pk": 13636, "fields": {"orig_filename": "Jandrisevits_Peter_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415082}}, {"model": "metainfo.source", "pk": 13637, "fields": {"orig_filename": "Janecek_Gustav_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415083}}, {"model": "metainfo.source", "pk": 13638, "fields": {"orig_filename": "Janecka_Josef_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415084}}, {"model": "metainfo.source", "pk": 13639, "fields": {"orig_filename": "Janezic_Anton_1828_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415085}}, {"model": "metainfo.source", "pk": 13640, "fields": {"orig_filename": "Janiczek_Wladimir_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415086}}, {"model": "metainfo.source", "pk": 13641, "fields": {"orig_filename": "Janisch_Antonie_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415087}}, {"model": "metainfo.source", "pk": 13642, "fields": {"orig_filename": "Janisch_Eduard_1868_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72f.", "author": "", "orig_id": 1415088}}, {"model": "metainfo.source", "pk": 13643, "fields": {"orig_filename": "Janiss_Johann_1808_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73", "author": "", "orig_id": 1415089}}, {"model": "metainfo.source", "pk": 13644, "fields": {"orig_filename": "Janitschek_Maria_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73", "author": "", "orig_id": 1415092}}, {"model": "metainfo.source", "pk": 13645, "fields": {"orig_filename": "Janka-Bulcs_Viktor_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74", "author": "", "orig_id": 1415156}}, {"model": "metainfo.source", "pk": 13646, "fields": {"orig_filename": "Janka_Gabriel_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73f.", "author": "", "orig_id": 1415093}}, {"model": "metainfo.source", "pk": 13647, "fields": {"orig_filename": "Jankovich_Miklos_1773_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415159}}, {"model": "metainfo.source", "pk": 13648, "fields": {"orig_filename": "Jankovits_Julius_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415160}}, {"model": "metainfo.source", "pk": 13649, "fields": {"orig_filename": "Janko_Josef_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74", "author": "", "orig_id": 1415157}}, {"model": "metainfo.source", "pk": 13650, "fields": {"orig_filename": "Janko_Paul_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74f.", "author": "", "orig_id": 1415158}}, {"model": "metainfo.source", "pk": 13651, "fields": {"orig_filename": "Jannitti_August_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415161}}, {"model": "metainfo.source", "pk": 13652, "fields": {"orig_filename": "Janosik_Jan_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415163}}, {"model": "metainfo.source", "pk": 13653, "fields": {"orig_filename": "Janosi_Bela_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415162}}, {"model": "metainfo.source", "pk": 13654, "fields": {"orig_filename": "Janovsky_Jaroslav_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75f.", "author": "", "orig_id": 1415164}}, {"model": "metainfo.source", "pk": 13655, "fields": {"orig_filename": "Janovsky_Vitezslav_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415165}}, {"model": "metainfo.source", "pk": 13656, "fields": {"orig_filename": "Jansa_Leopold_1795_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415166}}, {"model": "metainfo.source", "pk": 13657, "fields": {"orig_filename": "Jansa_Wenzel_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415167}}, {"model": "metainfo.source", "pk": 13658, "fields": {"orig_filename": "Janscheck_Valentin_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415168}}, {"model": "metainfo.source", "pk": 13659, "fields": {"orig_filename": "Janschitz_Eduard_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76f.", "author": "", "orig_id": 1415169}}, {"model": "metainfo.source", "pk": 13660, "fields": {"orig_filename": "Jansky_Jan_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77", "author": "", "orig_id": 1415170}}, {"model": "metainfo.source", "pk": 13661, "fields": {"orig_filename": "Jantsch_Franz_1898_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77", "author": "", "orig_id": 1415171}}, {"model": "metainfo.source", "pk": 13662, "fields": {"orig_filename": "Jantsch_Heinrich_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77f.", "author": "", "orig_id": 1415172}}, {"model": "metainfo.source", "pk": 13663, "fields": {"orig_filename": "Januschke_Johann_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415173}}, {"model": "metainfo.source", "pk": 13664, "fields": {"orig_filename": "Januschowsky_Georgine_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415174}}, {"model": "metainfo.source", "pk": 13665, "fields": {"orig_filename": "Janusic_Jurislav_1881_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415175}}, {"model": "metainfo.source", "pk": 13666, "fields": {"orig_filename": "Jan_Giorgio_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415074}}, {"model": "metainfo.source", "pk": 13667, "fields": {"orig_filename": "Jaques-Dalcroze_Emile_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79", "author": "", "orig_id": 1415177}}, {"model": "metainfo.source", "pk": 13668, "fields": {"orig_filename": "Jaques_Heinrich_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415176}}, {"model": "metainfo.source", "pk": 13669, "fields": {"orig_filename": "Jara_Johann_1900_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79", "author": "", "orig_id": 1415178}}, {"model": "metainfo.source", "pk": 13670, "fields": {"orig_filename": "Jarcke_Karl-Ernst_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80", "author": "", "orig_id": 1415180}}, {"model": "metainfo.source", "pk": 13671, "fields": {"orig_filename": "Jarc_Miran_1900_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79f.", "author": "", "orig_id": 1415179}}, {"model": "metainfo.source", "pk": 13672, "fields": {"orig_filename": "Jaresch_Johann_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80", "author": "", "orig_id": 1413983}}, {"model": "metainfo.source", "pk": 13673, "fields": {"orig_filename": "Jarisch_Adolf_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80f.", "author": "", "orig_id": 1413984}}, {"model": "metainfo.source", "pk": 13674, "fields": {"orig_filename": "Jarisch_Anton-Hieronymus_1818_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413985}}, {"model": "metainfo.source", "pk": 13675, "fields": {"orig_filename": "Jarl-Sakellarios_Karin_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413987}}, {"model": "metainfo.source", "pk": 13676, "fields": {"orig_filename": "Jarl_Otto_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413986}}, {"model": "metainfo.source", "pk": 13677, "fields": {"orig_filename": "Jarmund_Stanislaw_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81f.", "author": "", "orig_id": 1413988}}, {"model": "metainfo.source", "pk": 13678, "fields": {"orig_filename": "Jarnevic_Dragojla_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413989}}, {"model": "metainfo.source", "pk": 13679, "fields": {"orig_filename": "Jarnik_Jan-Urban_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413990}}, {"model": "metainfo.source", "pk": 13680, "fields": {"orig_filename": "Jarnik_Urban_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413991}}, {"model": "metainfo.source", "pk": 13681, "fields": {"orig_filename": "Jarno_Georg_1868_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82f.", "author": "", "orig_id": 1413992}}, {"model": "metainfo.source", "pk": 13682, "fields": {"orig_filename": "Jarno_Josef_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83", "author": "", "orig_id": 1413994}}, {"model": "metainfo.source", "pk": 13683, "fields": {"orig_filename": "Jaronek_Bohumir_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83", "author": "", "orig_id": 1413995}}, {"model": "metainfo.source", "pk": 13684, "fields": {"orig_filename": "Jarosch_Joseph_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83f.", "author": "", "orig_id": 1413996}}, {"model": "metainfo.source", "pk": 13685, "fields": {"orig_filename": "Jarycevskyj_Sylvestr_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413997}}, {"model": "metainfo.source", "pk": 13686, "fields": {"orig_filename": "Jarz_Konrad_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413998}}, {"model": "metainfo.source", "pk": 13687, "fields": {"orig_filename": "Jaschke_Franz_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413999}}, {"model": "metainfo.source", "pk": 13688, "fields": {"orig_filename": "Jaschke_Franz_1862_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84f.", "author": "", "orig_id": 1414000}}, {"model": "metainfo.source", "pk": 13689, "fields": {"orig_filename": "Jaskewitz_Josef-Franz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414001}}, {"model": "metainfo.source", "pk": 13690, "fields": {"orig_filename": "Jasper_Friedrich_1847_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414002}}, {"model": "metainfo.source", "pk": 13691, "fields": {"orig_filename": "Jasper_Viktor_1848_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414003}}, {"model": "metainfo.source", "pk": 13692, "fields": {"orig_filename": "Jassnueger_Johann-Nep_1766_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85f.", "author": "", "orig_id": 1414004}}, {"model": "metainfo.source", "pk": 13693, "fields": {"orig_filename": "Jaszai_Marie_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414005}}, {"model": "metainfo.source", "pk": 13694, "fields": {"orig_filename": "Jaszai_Samu_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414006}}, {"model": "metainfo.source", "pk": 13695, "fields": {"orig_filename": "Jaszay_Pal_1809_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414007}}, {"model": "metainfo.source", "pk": 13696, "fields": {"orig_filename": "Jaszowski_Stanislaw_1803_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414072}}, {"model": "metainfo.source", "pk": 13697, "fields": {"orig_filename": "Jauernig_Jakob_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414073}}, {"model": "metainfo.source", "pk": 13698, "fields": {"orig_filename": "Jaumann_Gustav_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414074}}, {"model": "metainfo.source", "pk": 13699, "fields": {"orig_filename": "Jauner-Schroffenegg_August_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414077}}, {"model": "metainfo.source", "pk": 13700, "fields": {"orig_filename": "Jauner_Franz_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414075}}, {"model": "metainfo.source", "pk": 13701, "fields": {"orig_filename": "Jauner_Heinrich_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414076}}, {"model": "metainfo.source", "pk": 13702, "fields": {"orig_filename": "Jautz_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87f.", "author": "", "orig_id": 1414078}}, {"model": "metainfo.source", "pk": 13703, "fields": {"orig_filename": "Javornik_Placidus_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421745}}, {"model": "metainfo.source", "pk": 13704, "fields": {"orig_filename": "Javorskij_Julian-A_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421819}}, {"model": "metainfo.source", "pk": 13705, "fields": {"orig_filename": "Javurek_Karl_1815_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421820}}, {"model": "metainfo.source", "pk": 13706, "fields": {"orig_filename": "Jaworski_Apolinary_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421821}}, {"model": "metainfo.source", "pk": 13707, "fields": {"orig_filename": "Jaworski_Franciszek_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89", "author": "", "orig_id": 1421822}}, {"model": "metainfo.source", "pk": 13708, "fields": {"orig_filename": "Jaworski_Wladyslaw-Leopold_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89", "author": "", "orig_id": 1421823}}, {"model": "metainfo.source", "pk": 13709, "fields": {"orig_filename": "Jax_Johann_1842_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89f.", "author": "", "orig_id": 1421824}}, {"model": "metainfo.source", "pk": 13710, "fields": {"orig_filename": "Jebacin_Anton_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414080}}, {"model": "metainfo.source", "pk": 13711, "fields": {"orig_filename": "Jeblinger_Raimund_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414081}}, {"model": "metainfo.source", "pk": 13712, "fields": {"orig_filename": "Jeckel_Fortunat_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414082}}, {"model": "metainfo.source", "pk": 13713, "fields": {"orig_filename": "Jeczmieniowski_Karl_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414083}}, {"model": "metainfo.source", "pk": 13714, "fields": {"orig_filename": "Jedek_Karl_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90f.", "author": "", "orig_id": 1414084}}, {"model": "metainfo.source", "pk": 13715, "fields": {"orig_filename": "Jedina-Palombini_Leopold_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414086}}, {"model": "metainfo.source", "pk": 13716, "fields": {"orig_filename": "Jedina_Hermann_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414085}}, {"model": "metainfo.source", "pk": 13717, "fields": {"orig_filename": "Jedlicka_Bohdan_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414087}}, {"model": "metainfo.source", "pk": 13718, "fields": {"orig_filename": "Jedlicka_Rudolf_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414088}}, {"model": "metainfo.source", "pk": 13719, "fields": {"orig_filename": "Jedlik_Anyos_1800_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414089}}, {"model": "metainfo.source", "pk": 13720, "fields": {"orig_filename": "Jedrzejowicz_Adam_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414090}}, {"model": "metainfo.source", "pk": 13721, "fields": {"orig_filename": "Innerkofler_Josef-I_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414582}}, {"model": "metainfo.source", "pk": 13722, "fields": {"orig_filename": "Innerkofler_Michael-Ii_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414584}}, {"model": "metainfo.source", "pk": 13723, "fields": {"orig_filename": "Innerkofler_Michael-I_1844_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414583}}, {"model": "metainfo.source", "pk": 13724, "fields": {"orig_filename": "Innerkofler_Sepp_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414585}}, {"model": "metainfo.source", "pk": 13725, "fields": {"orig_filename": "Insam_Johann_1775_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414654}}, {"model": "metainfo.source", "pk": 13726, "fields": {"orig_filename": "Inthaler_Daniel_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414656}}, {"model": "metainfo.source", "pk": 13727, "fields": {"orig_filename": "Inthal_Kaspar_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414655}}, {"model": "metainfo.source", "pk": 13728, "fields": {"orig_filename": "Inwald-Waldtreu_Josef_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38f.", "author": "", "orig_id": 1414657}}, {"model": "metainfo.source", "pk": 13729, "fields": {"orig_filename": "Inzaghi_Karl_1777_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 39", "author": "", "orig_id": 1414658}}, {"model": "metainfo.source", "pk": 13730, "fields": {"orig_filename": "Ipavic_Benjamin_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 39", "author": "", "orig_id": 1414659}}, {"model": "metainfo.source", "pk": 13731, "fields": {"orig_filename": "Ipavic_Gustav_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414660}}, {"model": "metainfo.source", "pk": 13732, "fields": {"orig_filename": "Ipavic_Josip_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414661}}, {"model": "metainfo.source", "pk": 13733, "fields": {"orig_filename": "Ipold_Rudolf_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414662}}, {"model": "metainfo.source", "pk": 13734, "fields": {"orig_filename": "Ippen_Josef-A_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414663}}, {"model": "metainfo.source", "pk": 13735, "fields": {"orig_filename": "Ippen_Theodor_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40f.", "author": "", "orig_id": 1414664}}, {"model": "metainfo.source", "pk": 13736, "fields": {"orig_filename": "Ipsen_Carl_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414665}}, {"model": "metainfo.source", "pk": 13737, "fields": {"orig_filename": "Iranyi_Daniel_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414666}}, {"model": "metainfo.source", "pk": 13738, "fields": {"orig_filename": "Irasky_Jakob_1766_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414667}}, {"model": "metainfo.source", "pk": 13739, "fields": {"orig_filename": "Irinyi_Janos_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41f.", "author": "", "orig_id": 1414668}}, {"model": "metainfo.source", "pk": 13740, "fields": {"orig_filename": "Irinyi_Jozsef_1822_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414669}}, {"model": "metainfo.source", "pk": 13741, "fields": {"orig_filename": "Irmann_Heinrich-Otto_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414670}}, {"model": "metainfo.source", "pk": 13742, "fields": {"orig_filename": "Irmler_Heinrich_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414671}}, {"model": "metainfo.source", "pk": 13743, "fields": {"orig_filename": "Irresberger_Carl-Caspar_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414672}}, {"model": "metainfo.source", "pk": 13744, "fields": {"orig_filename": "Irsay_Arthur_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42f.", "author": "", "orig_id": 1414673}}, {"model": "metainfo.source", "pk": 13745, "fields": {"orig_filename": "Irschik_Magda_1841_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414674}}, {"model": "metainfo.source", "pk": 13746, "fields": {"orig_filename": "Isbary_Rudolf-Friedrich-Ernst_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414675}}, {"model": "metainfo.source", "pk": 13747, "fields": {"orig_filename": "Isenflamm_Carl_1775_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414736}}, {"model": "metainfo.source", "pk": 13748, "fields": {"orig_filename": "Isfordink-Kostnitz_Johann-Nep_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43f.", "author": "", "orig_id": 1414737}}, {"model": "metainfo.source", "pk": 13749, "fields": {"orig_filename": "Iska_Franz_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414738}}, {"model": "metainfo.source", "pk": 13750, "fields": {"orig_filename": "Iskierski_Julius_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414739}}, {"model": "metainfo.source", "pk": 13751, "fields": {"orig_filename": "Israel_Daniel_1859_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414740}}, {"model": "metainfo.source", "pk": 13752, "fields": {"orig_filename": "Issaakowicz_Isaak_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44f.", "author": "", "orig_id": 1414741}}, {"model": "metainfo.source", "pk": 13753, "fields": {"orig_filename": "Isser-Gaudententhurn_Johanna_1802_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414742}}, {"model": "metainfo.source", "pk": 13754, "fields": {"orig_filename": "Isser-Gaudententhurn_Max_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414743}}, {"model": "metainfo.source", "pk": 13755, "fields": {"orig_filename": "Issler_Richard_1842_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45f.", "author": "", "orig_id": 1414745}}, {"model": "metainfo.source", "pk": 13756, "fields": {"orig_filename": "Istoczy_Geza_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414746}}, {"model": "metainfo.source", "pk": 13757, "fields": {"orig_filename": "Istvanffi-Csikmadefalva_Gyula_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414747}}, {"model": "metainfo.source", "pk": 13758, "fields": {"orig_filename": "Itzinger_Karl_1888_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414748}}, {"model": "metainfo.source", "pk": 13759, "fields": {"orig_filename": "Ivakic_Joza_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46f.", "author": "", "orig_id": 1414749}}, {"model": "metainfo.source", "pk": 13760, "fields": {"orig_filename": "Ivancan_Ljudevit_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414750}}, {"model": "metainfo.source", "pk": 13761, "fields": {"orig_filename": "Ivanisevic_Frano_1863_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414751}}, {"model": "metainfo.source", "pk": 13762, "fields": {"orig_filename": "Ivanka_Imre_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414752}}, {"model": "metainfo.source", "pk": 13763, "fields": {"orig_filename": "Ivanovic_Katarina_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47f.", "author": "", "orig_id": 1414753}}, {"model": "metainfo.source", "pk": 13764, "fields": {"orig_filename": "Ivanyi_Oedoen_1854_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414754}}, {"model": "metainfo.source", "pk": 13765, "fields": {"orig_filename": "Ivcic_Simon_1759_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414755}}, {"model": "metainfo.source", "pk": 13766, "fields": {"orig_filename": "Ivekovic_Ciril-M_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414756}}, {"model": "metainfo.source", "pk": 13767, "fields": {"orig_filename": "Ivekovic_Oton_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414821}}, {"model": "metainfo.source", "pk": 13768, "fields": {"orig_filename": "Ivicevic_Stjepan_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414823}}, {"model": "metainfo.source", "pk": 13769, "fields": {"orig_filename": "Ivic_Aleksa_1881_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414822}}, {"model": "metainfo.source", "pk": 13770, "fields": {"orig_filename": "Ivkanec_Tomislav_1844_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49f.", "author": "", "orig_id": 1414824}}, {"model": "metainfo.source", "pk": 13771, "fields": {"orig_filename": "Izso_Miklos_1831_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50", "author": "", "orig_id": 1414825}}, {"model": "metainfo.source", "pk": 13772, "fields": {"orig_filename": "Jablanczy_Julius_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50", "author": "", "orig_id": 1414826}}, {"model": "metainfo.source", "pk": 13773, "fields": {"orig_filename": "Jablonowski_Karl_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50f.", "author": "", "orig_id": 1414827}}, {"model": "metainfo.source", "pk": 13774, "fields": {"orig_filename": "Jabornegg-Altenfels_Michael-Franz_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51", "author": "", "orig_id": 1414828}}, {"model": "metainfo.source", "pk": 13775, "fields": {"orig_filename": "Jabornegg-Gamsenegg-Moderndorf_Markus_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51", "author": "", "orig_id": 1414829}}, {"model": "metainfo.source", "pk": 13776, "fields": {"orig_filename": "Jachimowicz_Theodor_1800_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51f.", "author": "", "orig_id": 1414830}}, {"model": "metainfo.source", "pk": 13777, "fields": {"orig_filename": "Jacob_Josef_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52", "author": "", "orig_id": 1414831}}, {"model": "metainfo.source", "pk": 13778, "fields": {"orig_filename": "Jacquin_Joseph-Franz_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52", "author": "", "orig_id": 1414832}}, {"model": "metainfo.source", "pk": 13779, "fields": {"orig_filename": "Jacquin_Nicolaus-Joseph_1727_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52f.", "author": "", "orig_id": 1414833}}, {"model": "metainfo.source", "pk": 13780, "fields": {"orig_filename": "Jaeckel_Josef_1778_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53", "author": "", "orig_id": 1414834}}, {"model": "metainfo.source", "pk": 13781, "fields": {"orig_filename": "Jaeger-Jaxthal_Eduard_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57f.", "author": "", "orig_id": 1414911}}, {"model": "metainfo.source", "pk": 13782, "fields": {"orig_filename": "Jaeger-Jaxthal_Friedrich_1784_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 58", "author": "", "orig_id": 1414912}}, {"model": "metainfo.source", "pk": 13783, "fields": {"orig_filename": "Jaeger_Adolf_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53", "author": "", "orig_id": 1414835}}, {"model": "metainfo.source", "pk": 13784, "fields": {"orig_filename": "Jaeger_Albert_1801_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53f.", "author": "", "orig_id": 1414836}}, {"model": "metainfo.source", "pk": 13785, "fields": {"orig_filename": "Jaeger_Alderich_1746_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54", "author": "", "orig_id": 1414837}}, {"model": "metainfo.source", "pk": 13786, "fields": {"orig_filename": "Jaeger_Anna_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54", "author": "", "orig_id": 1414838}}, {"model": "metainfo.source", "pk": 13787, "fields": {"orig_filename": "Jaeger_Ferdinand_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54f.", "author": "", "orig_id": 1414839}}, {"model": "metainfo.source", "pk": 13788, "fields": {"orig_filename": "Jaeger_Franz_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414840}}, {"model": "metainfo.source", "pk": 13789, "fields": {"orig_filename": "Jaeger_Franz_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414841}}, {"model": "metainfo.source", "pk": 13790, "fields": {"orig_filename": "Jaeger_Gustav-Maria_1835_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 56", "author": "", "orig_id": 1414906}}, {"model": "metainfo.source", "pk": 13791, "fields": {"orig_filename": "Jaeger_Gustav_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414904}}, {"model": "metainfo.source", "pk": 13792, "fields": {"orig_filename": "Jaeger_Gustav_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55f.", "author": "", "orig_id": 1414905}}, {"model": "metainfo.source", "pk": 13793, "fields": {"orig_filename": "Jaeger_Karl_1836_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 56f.", "author": "", "orig_id": 1414907}}, {"model": "metainfo.source", "pk": 13794, "fields": {"orig_filename": "Jaeger_Matthias_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414908}}, {"model": "metainfo.source", "pk": 13795, "fields": {"orig_filename": "Jaeger_Robert_1890_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414909}}, {"model": "metainfo.source", "pk": 13796, "fields": {"orig_filename": "Jaeger_Vital_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414910}}, {"model": "metainfo.source", "pk": 13797, "fields": {"orig_filename": "Jaekel_Franz-Josef_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 58f.", "author": "", "orig_id": 1414913}}, {"model": "metainfo.source", "pk": 13798, "fields": {"orig_filename": "Jaell_Alfred_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414914}}, {"model": "metainfo.source", "pk": 13799, "fields": {"orig_filename": "Jaffe_Max_1845_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414915}}, {"model": "metainfo.source", "pk": 13800, "fields": {"orig_filename": "Jagemann_Carl_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2179610}}, {"model": "metainfo.source", "pk": 13801, "fields": {"orig_filename": "Jager_Francis_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414916}}, {"model": "metainfo.source", "pk": 13802, "fields": {"orig_filename": "Jagic_Vatroslav_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59f.", "author": "", "orig_id": 1414917}}, {"model": "metainfo.source", "pk": 13803, "fields": {"orig_filename": "Jahne_Ludwig_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62f.", "author": "", "orig_id": 1414925}}, {"model": "metainfo.source", "pk": 13804, "fields": {"orig_filename": "Jahn_Alois_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 60", "author": "", "orig_id": 1414918}}, {"model": "metainfo.source", "pk": 13805, "fields": {"orig_filename": "Jahn_Gustav_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 60f.", "author": "", "orig_id": 1414919}}, {"model": "metainfo.source", "pk": 13806, "fields": {"orig_filename": "Jahn_Gustav_1879_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 61", "author": "", "orig_id": 1414920}}, {"model": "metainfo.source", "pk": 13807, "fields": {"orig_filename": "Jahn_Jaroslav-Jilji_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 61f.", "author": "", "orig_id": 1414921}}, {"model": "metainfo.source", "pk": 13808, "fields": {"orig_filename": "Jahn_Jilji-Vratislav_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414922}}, {"model": "metainfo.source", "pk": 13809, "fields": {"orig_filename": "Jahn_Marie_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414923}}, {"model": "metainfo.source", "pk": 13810, "fields": {"orig_filename": "Jahn_Wilhelm_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414924}}, {"model": "metainfo.source", "pk": 13811, "fields": {"orig_filename": "Jakesch_Alexander_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414927}}, {"model": "metainfo.source", "pk": 13812, "fields": {"orig_filename": "Jakesch_Heinrich_1867_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414990}}, {"model": "metainfo.source", "pk": 13813, "fields": {"orig_filename": "Jakitsch_Richard_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414991}}, {"model": "metainfo.source", "pk": 13814, "fields": {"orig_filename": "Jakob-Herminenthal_Wilhelm_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64", "author": "", "orig_id": 1414993}}, {"model": "metainfo.source", "pk": 13815, "fields": {"orig_filename": "Jakobey_Karoly_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64", "author": "", "orig_id": 1414994}}, {"model": "metainfo.source", "pk": 13816, "fields": {"orig_filename": "Jakopic_Richard_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64f.", "author": "", "orig_id": 1414995}}, {"model": "metainfo.source", "pk": 13817, "fields": {"orig_filename": "Jaksch-Wartenhorst_Anton_1810_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65f.", "author": "", "orig_id": 1414999}}, {"model": "metainfo.source", "pk": 13818, "fields": {"orig_filename": "Jaksch-Wartenhorst_August_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66", "author": "", "orig_id": 1415000}}, {"model": "metainfo.source", "pk": 13819, "fields": {"orig_filename": "Jaksch-Wartenhorst_Rudolf_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66", "author": "", "orig_id": 1415001}}, {"model": "metainfo.source", "pk": 13820, "fields": {"orig_filename": "Hummelauer_Franz_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415603}}, {"model": "metainfo.source", "pk": 13821, "fields": {"orig_filename": "Hummel_Carl_1769_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8f.", "author": "", "orig_id": 1415596}}, {"model": "metainfo.source", "pk": 13822, "fields": {"orig_filename": "Hummel_Christian_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9", "author": "", "orig_id": 1415597}}, {"model": "metainfo.source", "pk": 13823, "fields": {"orig_filename": "Hummel_Johann-Ludwig_1754_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9", "author": "", "orig_id": 1415598}}, {"model": "metainfo.source", "pk": 13824, "fields": {"orig_filename": "Hummel_Johann-Nep_1778_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9f.", "author": "", "orig_id": 1415599}}, {"model": "metainfo.source", "pk": 13825, "fields": {"orig_filename": "Hummel_Joseph-Friedrich_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415600}}, {"model": "metainfo.source", "pk": 13826, "fields": {"orig_filename": "Hummel_Karl_1801_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415601}}, {"model": "metainfo.source", "pk": 13827, "fields": {"orig_filename": "Hummel_Luise_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415602}}, {"model": "metainfo.source", "pk": 13828, "fields": {"orig_filename": "Hummer_Andre_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10f.", "author": "", "orig_id": 1415604}}, {"model": "metainfo.source", "pk": 13829, "fields": {"orig_filename": "Hunanian_Leontius_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415673}}, {"model": "metainfo.source", "pk": 13830, "fields": {"orig_filename": "Huna_Ludwig_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415672}}, {"model": "metainfo.source", "pk": 13831, "fields": {"orig_filename": "Hundertpfund_Liberat_1806_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415674}}, {"model": "metainfo.source", "pk": 13832, "fields": {"orig_filename": "Hunfalvy_Johann_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11f.", "author": "", "orig_id": 1415675}}, {"model": "metainfo.source", "pk": 13833, "fields": {"orig_filename": "Hunfalvy_Paul_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415676}}, {"model": "metainfo.source", "pk": 13834, "fields": {"orig_filename": "Hunglinger_Andreas-Magnus_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415677}}, {"model": "metainfo.source", "pk": 13835, "fields": {"orig_filename": "Hunold_Balthasar_1828_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415678}}, {"model": "metainfo.source", "pk": 13836, "fields": {"orig_filename": "Hupfauf_Johann-Peregrin_1856_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12f.", "author": "", "orig_id": 1415679}}, {"model": "metainfo.source", "pk": 13837, "fields": {"orig_filename": "Hupfer_Karl_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13", "author": "", "orig_id": 1415680}}, {"model": "metainfo.source", "pk": 13838, "fields": {"orig_filename": "Hupka_Joseph_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13", "author": "", "orig_id": 1415681}}, {"model": "metainfo.source", "pk": 13839, "fields": {"orig_filename": "Huppert_Karl-Hugo_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13f.", "author": "", "orig_id": 1415682}}, {"model": "metainfo.source", "pk": 13840, "fields": {"orig_filename": "Hurdalek_Josef-Franz_1746_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14", "author": "", "orig_id": 1415683}}, {"model": "metainfo.source", "pk": 13841, "fields": {"orig_filename": "Hurter-Ammann_Franz_1824_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14f.", "author": "", "orig_id": 1415685}}, {"model": "metainfo.source", "pk": 13842, "fields": {"orig_filename": "Hurter-Ammann_Friedrich-Emanuel_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14", "author": "", "orig_id": 1415684}}, {"model": "metainfo.source", "pk": 13843, "fields": {"orig_filename": "Hurter-Ammann_Heinrich_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15", "author": "", "orig_id": 1415686}}, {"model": "metainfo.source", "pk": 13844, "fields": {"orig_filename": "Hurter-Ammann_Hugo_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15", "author": "", "orig_id": 1415687}}, {"model": "metainfo.source", "pk": 13845, "fields": {"orig_filename": "Husnik_Jakob_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15f.", "author": "", "orig_id": 1415688}}, {"model": "metainfo.source", "pk": 13846, "fields": {"orig_filename": "Hussak_Eugen_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16", "author": "", "orig_id": 1415690}}, {"model": "metainfo.source", "pk": 13847, "fields": {"orig_filename": "Hussarek-Heinlein_Max_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16f.", "author": "", "orig_id": 1415691}}, {"model": "metainfo.source", "pk": 13848, "fields": {"orig_filename": "Husserl_Edmund_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 17f.", "author": "", "orig_id": 1415692}}, {"model": "metainfo.source", "pk": 13849, "fields": {"orig_filename": "Hussian_Raphael-Ferdinand_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415693}}, {"model": "metainfo.source", "pk": 13850, "fields": {"orig_filename": "Huss_Karl_1761_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16", "author": "", "orig_id": 1415689}}, {"model": "metainfo.source", "pk": 13851, "fields": {"orig_filename": "Huter_Andreas_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415695}}, {"model": "metainfo.source", "pk": 13852, "fields": {"orig_filename": "Huter_Josef-Franz_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415696}}, {"model": "metainfo.source", "pk": 13853, "fields": {"orig_filename": "Huter_Josef_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415694}}, {"model": "metainfo.source", "pk": 13854, "fields": {"orig_filename": "Huter_Rupert_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415697}}, {"model": "metainfo.source", "pk": 13855, "fields": {"orig_filename": "Hutschenreiter_Viktor-Max_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415763}}, {"model": "metainfo.source", "pk": 13856, "fields": {"orig_filename": "Huttary_Josef_1842_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415764}}, {"model": "metainfo.source", "pk": 13857, "fields": {"orig_filename": "Hutterer_Johann_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415767}}, {"model": "metainfo.source", "pk": 13858, "fields": {"orig_filename": "Hutterstrasser-Scheidl_Lili_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415769}}, {"model": "metainfo.source", "pk": 13859, "fields": {"orig_filename": "Hutterstrasser_Carl_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415768}}, {"model": "metainfo.source", "pk": 13860, "fields": {"orig_filename": "Hutter_Josef_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415765}}, {"model": "metainfo.source", "pk": 13861, "fields": {"orig_filename": "Hutter_Theodor_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19f.", "author": "", "orig_id": 1415766}}, {"model": "metainfo.source", "pk": 13862, "fields": {"orig_filename": "Huwyler_Hugo_1878_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415770}}, {"model": "metainfo.source", "pk": 13863, "fields": {"orig_filename": "Huyer_Reinhold_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20f.", "author": "", "orig_id": 1415771}}, {"model": "metainfo.source", "pk": 13864, "fields": {"orig_filename": "Huyn_Johann-Karl_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415772}}, {"model": "metainfo.source", "pk": 13865, "fields": {"orig_filename": "Huyn_Karl-Georg_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415773}}, {"model": "metainfo.source", "pk": 13866, "fields": {"orig_filename": "Huyn_Paul_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415774}}, {"model": "metainfo.source", "pk": 13867, "fields": {"orig_filename": "Hyam_Johann_1733_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21f.", "author": "", "orig_id": 1415775}}, {"model": "metainfo.source", "pk": 13868, "fields": {"orig_filename": "Hybes_Josef_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2173843}}, {"model": "metainfo.source", "pk": 13869, "fields": {"orig_filename": "Hybler_Wenzel_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22", "author": "", "orig_id": 1415776}}, {"model": "metainfo.source", "pk": 13870, "fields": {"orig_filename": "Hye-Glunek_Anton-Josef_1807_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22", "author": "", "orig_id": 1415777}}, {"model": "metainfo.source", "pk": 13871, "fields": {"orig_filename": "Hynais_Vojtech_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22f.", "author": "", "orig_id": 1415778}}, {"model": "metainfo.source", "pk": 13872, "fields": {"orig_filename": "Hyrtl_Auguste_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23", "author": "", "orig_id": 1415779}}, {"model": "metainfo.source", "pk": 13873, "fields": {"orig_filename": "Hyrtl_Jakob_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23", "author": "", "orig_id": 1415780}}, {"model": "metainfo.source", "pk": 13874, "fields": {"orig_filename": "Hyrtl_Josef_1810_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23f.", "author": "", "orig_id": 1415781}}, {"model": "metainfo.source", "pk": 13875, "fields": {"orig_filename": "Hysel_Franz-Eduard_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 24f.", "author": "", "orig_id": 1415782}}, {"model": "metainfo.source", "pk": 13876, "fields": {"orig_filename": "Ibach_Alfred_1902_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415783}}, {"model": "metainfo.source", "pk": 13877, "fields": {"orig_filename": "Ibler_Janko_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415785}}, {"model": "metainfo.source", "pk": 13878, "fields": {"orig_filename": "Ibl_Franz_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415784}}, {"model": "metainfo.source", "pk": 13879, "fields": {"orig_filename": "Ichhaeuser_Josef_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25f.", "author": "", "orig_id": 1415786}}, {"model": "metainfo.source", "pk": 13880, "fields": {"orig_filename": "Iellico_Giuseppe_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1415787}}, {"model": "metainfo.source", "pk": 13881, "fields": {"orig_filename": "Igel_Benzion_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1414467}}, {"model": "metainfo.source", "pk": 13882, "fields": {"orig_filename": "Igler_Gustav_1842_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1414468}}, {"model": "metainfo.source", "pk": 13883, "fields": {"orig_filename": "Ignjatovic_Jakov_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26f.", "author": "", "orig_id": 1414469}}, {"model": "metainfo.source", "pk": 13884, "fields": {"orig_filename": "Ihasz_Daniel_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414470}}, {"model": "metainfo.source", "pk": 13885, "fields": {"orig_filename": "Ilesic_Fran_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414471}}, {"model": "metainfo.source", "pk": 13886, "fields": {"orig_filename": "Ilg_Albert_1847_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414472}}, {"model": "metainfo.source", "pk": 13887, "fields": {"orig_filename": "Ilg_Johann-Georg_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27f.", "author": "", "orig_id": 1414473}}, {"model": "metainfo.source", "pk": 13888, "fields": {"orig_filename": "Ilic-Oriovcanin_Luka_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414474}}, {"model": "metainfo.source", "pk": 13889, "fields": {"orig_filename": "Ilijasevic_Stjepan_1814_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414475}}, {"model": "metainfo.source", "pk": 13890, "fields": {"orig_filename": "Ilijic_Stjepko_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414476}}, {"model": "metainfo.source", "pk": 13891, "fields": {"orig_filename": "Illem_Franz-Josef-Georg_1865_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414477}}, {"model": "metainfo.source", "pk": 13892, "fields": {"orig_filename": "Illing_Vilma_1871_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28f.", "author": "", "orig_id": 1414478}}, {"model": "metainfo.source", "pk": 13893, "fields": {"orig_filename": "Illitsch_Alexander_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414479}}, {"model": "metainfo.source", "pk": 13894, "fields": {"orig_filename": "Illmer_Hans_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414482}}, {"model": "metainfo.source", "pk": 13895, "fields": {"orig_filename": "Illner_Karl_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414483}}, {"model": "metainfo.source", "pk": 13896, "fields": {"orig_filename": "Ilmer_Andreas_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414480}}, {"model": "metainfo.source", "pk": 13897, "fields": {"orig_filename": "Ilosvay-Nagy-Ilosva_Lajos_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29f.", "author": "", "orig_id": 1414484}}, {"model": "metainfo.source", "pk": 13898, "fields": {"orig_filename": "Ilwof_Franz_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30", "author": "", "orig_id": 1414485}}, {"model": "metainfo.source", "pk": 13899, "fields": {"orig_filename": "Imendoerffer_Benno_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30", "author": "", "orig_id": 1414486}}, {"model": "metainfo.source", "pk": 13900, "fields": {"orig_filename": "Imre_Sandor_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30f.", "author": "", "orig_id": 1414487}}, {"model": "metainfo.source", "pk": 13901, "fields": {"orig_filename": "Inama-Sternegg_Fanny_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414490}}, {"model": "metainfo.source", "pk": 13902, "fields": {"orig_filename": "Inama-Sternegg_Johann-Paul_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 32", "author": "", "orig_id": 1414562}}, {"model": "metainfo.source", "pk": 13903, "fields": {"orig_filename": "Inama-Sternegg_Karl-Theodor_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414564}}, {"model": "metainfo.source", "pk": 13904, "fields": {"orig_filename": "Inama-Sternegg_Karl_1871_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 32", "author": "", "orig_id": 1414563}}, {"model": "metainfo.source", "pk": 13905, "fields": {"orig_filename": "Inama_Adalbert_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414488}}, {"model": "metainfo.source", "pk": 13906, "fields": {"orig_filename": "Inama_Vigilio_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414489}}, {"model": "metainfo.source", "pk": 13907, "fields": {"orig_filename": "Inauen_Andreas_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 33", "author": "", "orig_id": 1414565}}, {"model": "metainfo.source", "pk": 13908, "fields": {"orig_filename": "Indra_Alois_1849_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 33f.", "author": "", "orig_id": 1414566}}, {"model": "metainfo.source", "pk": 13909, "fields": {"orig_filename": "Inffeld_Adolf_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414567}}, {"model": "metainfo.source", "pk": 13910, "fields": {"orig_filename": "Ingarden_Roman_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414568}}, {"model": "metainfo.source", "pk": 13911, "fields": {"orig_filename": "Ingerle_Rudolf-F_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414569}}, {"model": "metainfo.source", "pk": 13912, "fields": {"orig_filename": "Inghirami_Giovanni_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34f.", "author": "", "orig_id": 1414570}}, {"model": "metainfo.source", "pk": 13913, "fields": {"orig_filename": "Ingigian_Lukas_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414571}}, {"model": "metainfo.source", "pk": 13914, "fields": {"orig_filename": "Ingwer_Isidor_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414572}}, {"model": "metainfo.source", "pk": 13915, "fields": {"orig_filename": "Inlaender_Ludwig_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414573}}, {"model": "metainfo.source", "pk": 13916, "fields": {"orig_filename": "Innerhofer_Franz_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414574}}, {"model": "metainfo.source", "pk": 13917, "fields": {"orig_filename": "Innerhofer_Franz_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414576}}, {"model": "metainfo.source", "pk": 13918, "fields": {"orig_filename": "Innerhofer_Franz_1884_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414575}}, {"model": "metainfo.source", "pk": 13919, "fields": {"orig_filename": "Innerhofer_Johann_1837_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414577}}, {"model": "metainfo.source", "pk": 13920, "fields": {"orig_filename": "Innerkofler_Adolf_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414578}}, {"model": "metainfo.source", "pk": 13921, "fields": {"orig_filename": "Innerkofler_Christian_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414579}}, {"model": "metainfo.source", "pk": 13922, "fields": {"orig_filename": "Innerkofler_Franz_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414580}}, {"model": "metainfo.source", "pk": 13923, "fields": {"orig_filename": "Innerkofler_Johann-Jakob_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414581}}, {"model": "metainfo.source", "pk": 13924, "fields": {"orig_filename": "Horvat_Rudolf_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417397}}, {"model": "metainfo.source", "pk": 13925, "fields": {"orig_filename": "Horvat_Stephan_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417398}}, {"model": "metainfo.source", "pk": 13926, "fields": {"orig_filename": "Horwitz_Karl_1884_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431f.", "author": "", "orig_id": 1417407}}, {"model": "metainfo.source", "pk": 13927, "fields": {"orig_filename": "Horwitz_Willibald_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417409}}, {"model": "metainfo.source", "pk": 13928, "fields": {"orig_filename": "Horzalka_Johann_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417410}}, {"model": "metainfo.source", "pk": 13929, "fields": {"orig_filename": "Horzeyschy_Kaethe_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417411}}, {"model": "metainfo.source", "pk": 13930, "fields": {"orig_filename": "Hoschek_Fritz_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417482}}, {"model": "metainfo.source", "pk": 13931, "fields": {"orig_filename": "Hoschna_Karl_1876_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417484}}, {"model": "metainfo.source", "pk": 13932, "fields": {"orig_filename": "Hoser_Josef-Karl-Eduard_1770_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432f.", "author": "", "orig_id": 1417485}}, {"model": "metainfo.source", "pk": 13933, "fields": {"orig_filename": "Hossinger_Julius_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433", "author": "", "orig_id": 1417486}}, {"model": "metainfo.source", "pk": 13934, "fields": {"orig_filename": "Hossner_Josef_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433", "author": "", "orig_id": 1417487}}, {"model": "metainfo.source", "pk": 13935, "fields": {"orig_filename": "Hostasch_Josef_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417489}}, {"model": "metainfo.source", "pk": 13936, "fields": {"orig_filename": "Hostinsky_Otakar_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417491}}, {"model": "metainfo.source", "pk": 13937, "fields": {"orig_filename": "Host_Nicolaus-Thomas_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433f.", "author": "", "orig_id": 1417488}}, {"model": "metainfo.source", "pk": 13938, "fields": {"orig_filename": "Hotze_Friedrich_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417492}}, {"model": "metainfo.source", "pk": 13939, "fields": {"orig_filename": "Houdek_Vitezslav_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434f.", "author": "", "orig_id": 1417493}}, {"model": "metainfo.source", "pk": 13940, "fields": {"orig_filename": "Hovorka-Zderas_Oskar_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417495}}, {"model": "metainfo.source", "pk": 13941, "fields": {"orig_filename": "Hoyos-Sprinzenstein_Johann-Ernst_1779_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417497}}, {"model": "metainfo.source", "pk": 13942, "fields": {"orig_filename": "Hoyos-Sprinzenstein_Rudolf_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417498}}, {"model": "metainfo.source", "pk": 13943, "fields": {"orig_filename": "Hoyos_Alexander_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417496}}, {"model": "metainfo.source", "pk": 13944, "fields": {"orig_filename": "Hozhevar_Johann_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417499}}, {"model": "metainfo.source", "pk": 13945, "fields": {"orig_filename": "Hrabak_Josef_1833_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435f.", "author": "", "orig_id": 1417500}}, {"model": "metainfo.source", "pk": 13946, "fields": {"orig_filename": "Hrabovsky-Hrabova_Johann_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417501}}, {"model": "metainfo.source", "pk": 13947, "fields": {"orig_filename": "Hrachowina_Karl_1845_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417503}}, {"model": "metainfo.source", "pk": 13948, "fields": {"orig_filename": "Hrach_Ferdinand_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417502}}, {"model": "metainfo.source", "pk": 13949, "fields": {"orig_filename": "Hradeczky_Hermann_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436f.", "author": "", "orig_id": 1417504}}, {"model": "metainfo.source", "pk": 13950, "fields": {"orig_filename": "Hradeczky_Johann-Nep_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417575}}, {"model": "metainfo.source", "pk": 13951, "fields": {"orig_filename": "Hranilovic-Cvetasin_Hinko_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417577}}, {"model": "metainfo.source", "pk": 13952, "fields": {"orig_filename": "Hranilovic_Jovan_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417576}}, {"model": "metainfo.source", "pk": 13953, "fields": {"orig_filename": "Hrdina_Josef-Leopold_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417578}}, {"model": "metainfo.source", "pk": 13954, "fields": {"orig_filename": "Hrdlicka_Ales_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437f.", "author": "", "orig_id": 1417579}}, {"model": "metainfo.source", "pk": 13955, "fields": {"orig_filename": "Hreljanovic_Ivo_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 438", "author": "", "orig_id": 1417580}}, {"model": "metainfo.source", "pk": 13956, "fields": {"orig_filename": "Hren_Jakob_1830_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 438f.", "author": "", "orig_id": 1417581}}, {"model": "metainfo.source", "pk": 13957, "fields": {"orig_filename": "Hribar_Ivan_1851_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417582}}, {"model": "metainfo.source", "pk": 13958, "fields": {"orig_filename": "Hrimaly_Adalbert_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417583}}, {"model": "metainfo.source", "pk": 13959, "fields": {"orig_filename": "Hrncir_Thomas_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417584}}, {"model": "metainfo.source", "pk": 13960, "fields": {"orig_filename": "Hrnczyrz_Emma_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417585}}, {"model": "metainfo.source", "pk": 13961, "fields": {"orig_filename": "Hrodegh_Anton_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439f.", "author": "", "orig_id": 1417586}}, {"model": "metainfo.source", "pk": 13962, "fields": {"orig_filename": "Hromada_Anton_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417587}}, {"model": "metainfo.source", "pk": 13963, "fields": {"orig_filename": "Hromatko_Johann-Nep-Norbert_1783_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417590}}, {"model": "metainfo.source", "pk": 13964, "fields": {"orig_filename": "Hrovat_Ladislav_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440f.", "author": "", "orig_id": 1417592}}, {"model": "metainfo.source", "pk": 13965, "fields": {"orig_filename": "Hruby_Sergius-Josef_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2033381}}, {"model": "metainfo.source", "pk": 13966, "fields": {"orig_filename": "Hruschauer_Franz_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417593}}, {"model": "metainfo.source", "pk": 13967, "fields": {"orig_filename": "Hruschka_Annie_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417594}}, {"model": "metainfo.source", "pk": 13968, "fields": {"orig_filename": "Hruschka_Ella_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417595}}, {"model": "metainfo.source", "pk": 13969, "fields": {"orig_filename": "Hrussoczy_Marie_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417596}}, {"model": "metainfo.source", "pk": 13970, "fields": {"orig_filename": "Hruza_Ernst_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417597}}, {"model": "metainfo.source", "pk": 13971, "fields": {"orig_filename": "Hubad_Franc_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441f.", "author": "", "orig_id": 1417664}}, {"model": "metainfo.source", "pk": 13972, "fields": {"orig_filename": "Hubad_Matej_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417665}}, {"model": "metainfo.source", "pk": 13973, "fields": {"orig_filename": "Hubay_Jenoe_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417666}}, {"model": "metainfo.source", "pk": 13974, "fields": {"orig_filename": "Huber-Penig_Johann_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417680}}, {"model": "metainfo.source", "pk": 13975, "fields": {"orig_filename": "Huber-Penig_Paul_1771_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417681}}, {"model": "metainfo.source", "pk": 13976, "fields": {"orig_filename": "Huberman_Bronislav_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445f.", "author": "", "orig_id": 1417682}}, {"model": "metainfo.source", "pk": 13977, "fields": {"orig_filename": "Hubert_Josef_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417683}}, {"model": "metainfo.source", "pk": 13978, "fields": {"orig_filename": "Huber_Adolf_1874_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417667}}, {"model": "metainfo.source", "pk": 13979, "fields": {"orig_filename": "Huber_Alfons_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442f.", "author": "", "orig_id": 1417668}}, {"model": "metainfo.source", "pk": 13980, "fields": {"orig_filename": "Huber_Antonie_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443", "author": "", "orig_id": 1417670}}, {"model": "metainfo.source", "pk": 13981, "fields": {"orig_filename": "Huber_Anton_1768_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443", "author": "", "orig_id": 1417669}}, {"model": "metainfo.source", "pk": 13982, "fields": {"orig_filename": "Huber_Carl-Rudolf_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443f.", "author": "", "orig_id": 1417671}}, {"model": "metainfo.source", "pk": 13983, "fields": {"orig_filename": "Huber_Christian-Wilhelm_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417672}}, {"model": "metainfo.source", "pk": 13984, "fields": {"orig_filename": "Huber_Josef_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417673}}, {"model": "metainfo.source", "pk": 13985, "fields": {"orig_filename": "Huber_Josef_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417674}}, {"model": "metainfo.source", "pk": 13986, "fields": {"orig_filename": "Huber_Josef_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417675}}, {"model": "metainfo.source", "pk": 13987, "fields": {"orig_filename": "Huber_Leopold_1766_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417676}}, {"model": "metainfo.source", "pk": 13988, "fields": {"orig_filename": "Huber_Maximilian_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417677}}, {"model": "metainfo.source", "pk": 13989, "fields": {"orig_filename": "Huber_Nikolaus_1833_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417678}}, {"model": "metainfo.source", "pk": 13990, "fields": {"orig_filename": "Hudak_Ede-Agost_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417684}}, {"model": "metainfo.source", "pk": 13991, "fields": {"orig_filename": "Hudecek_Antonin_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417686}}, {"model": "metainfo.source", "pk": 13992, "fields": {"orig_filename": "Hudec_Jozef_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417685}}, {"model": "metainfo.source", "pk": 13993, "fields": {"orig_filename": "Hudelist_Josef_1759_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446f.", "author": "", "orig_id": 1417687}}, {"model": "metainfo.source", "pk": 13994, "fields": {"orig_filename": "Hudetz_Josef_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417758}}, {"model": "metainfo.source", "pk": 13995, "fields": {"orig_filename": "Hueber_Anton_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1453704}}, {"model": "metainfo.source", "pk": 13996, "fields": {"orig_filename": "Hueber_Hans_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417759}}, {"model": "metainfo.source", "pk": 13997, "fields": {"orig_filename": "Hueber_Johann-Nep_1802_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1420822}}, {"model": "metainfo.source", "pk": 13998, "fields": {"orig_filename": "Huebler_Franz_1770_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415500}}, {"model": "metainfo.source", "pk": 13999, "fields": {"orig_filename": "Huebl_Albert_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417760}}, {"model": "metainfo.source", "pk": 14000, "fields": {"orig_filename": "Huebl_Arthur_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447f.", "author": "", "orig_id": 1417761}}, {"model": "metainfo.source", "pk": 14001, "fields": {"orig_filename": "Huebl_Harald-Hans_1913_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 448", "author": "", "orig_id": 1417762}}, {"model": "metainfo.source", "pk": 14002, "fields": {"orig_filename": "Huebl_Heinrich_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415499}}, {"model": "metainfo.source", "pk": 14003, "fields": {"orig_filename": "Huebmer_Georg_1755_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415501}}, {"model": "metainfo.source", "pk": 14004, "fields": {"orig_filename": "Huebner_Anastasius_1789_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1f.", "author": "", "orig_id": 1415502}}, {"model": "metainfo.source", "pk": 14005, "fields": {"orig_filename": "Huebner_Josef-Alexander_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415503}}, {"model": "metainfo.source", "pk": 14006, "fields": {"orig_filename": "Huebner_Ludwig_1839_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415504}}, {"model": "metainfo.source", "pk": 14007, "fields": {"orig_filename": "Huebner_Maria_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415505}}, {"model": "metainfo.source", "pk": 14008, "fields": {"orig_filename": "Huebsch_Adolph_1830_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2f.", "author": "", "orig_id": 1415506}}, {"model": "metainfo.source", "pk": 14009, "fields": {"orig_filename": "Huegel_Carl-Alexander_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415507}}, {"model": "metainfo.source", "pk": 14010, "fields": {"orig_filename": "Huegel_Clemens-Wenzel_1792_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415508}}, {"model": "metainfo.source", "pk": 14011, "fields": {"orig_filename": "Huegel_Eduard_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415509}}, {"model": "metainfo.source", "pk": 14012, "fields": {"orig_filename": "Huelgerth_Heribert_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3f.", "author": "", "orig_id": 1415579}}, {"model": "metainfo.source", "pk": 14013, "fields": {"orig_filename": "Huelgerth_Ludwig_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4", "author": "", "orig_id": 1415580}}, {"model": "metainfo.source", "pk": 14014, "fields": {"orig_filename": "Huemer_Georg_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4", "author": "", "orig_id": 1415581}}, {"model": "metainfo.source", "pk": 14015, "fields": {"orig_filename": "Huemer_Hans_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4f.", "author": "", "orig_id": 1415582}}, {"model": "metainfo.source", "pk": 14016, "fields": {"orig_filename": "Huemer_Johann_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5", "author": "", "orig_id": 1415583}}, {"model": "metainfo.source", "pk": 14017, "fields": {"orig_filename": "Huerth_Theobald_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5", "author": "", "orig_id": 1415584}}, {"model": "metainfo.source", "pk": 14018, "fields": {"orig_filename": "Huesing_Georg_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5f.", "author": "", "orig_id": 1415585}}, {"model": "metainfo.source", "pk": 14019, "fields": {"orig_filename": "Hueter_Heinrich_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6", "author": "", "orig_id": 1415586}}, {"model": "metainfo.source", "pk": 14020, "fields": {"orig_filename": "Huettenbrenner_Anselm_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6", "author": "", "orig_id": 1415587}}, {"model": "metainfo.source", "pk": 14021, "fields": {"orig_filename": "Huettenbrenner_Erich_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6f.", "author": "", "orig_id": 1415588}}, {"model": "metainfo.source", "pk": 14022, "fields": {"orig_filename": "Huetter_Elias_1774_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 7", "author": "", "orig_id": 1415589}}, {"model": "metainfo.source", "pk": 14023, "fields": {"orig_filename": "Huetter_Emil_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 7", "author": "", "orig_id": 1415590}}, {"model": "metainfo.source", "pk": 14024, "fields": {"orig_filename": "Hugelmann_Karl_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415591}}, {"model": "metainfo.source", "pk": 14025, "fields": {"orig_filename": "Hula_Anton_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415594}}, {"model": "metainfo.source", "pk": 14026, "fields": {"orig_filename": "Hula_Eduard_1862_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415595}}, {"model": "metainfo.source", "pk": 14027, "fields": {"orig_filename": "Hollitzer_Carl_1831_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417011}}, {"model": "metainfo.source", "pk": 14028, "fields": {"orig_filename": "Hollosy_Justinian_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417015}}, {"model": "metainfo.source", "pk": 14029, "fields": {"orig_filename": "Hollosy_Simon_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417016}}, {"model": "metainfo.source", "pk": 14030, "fields": {"orig_filename": "Hollos_Laszlo_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403f.", "author": "", "orig_id": 1417014}}, {"model": "metainfo.source", "pk": 14031, "fields": {"orig_filename": "Hollo_Barnabas_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417012}}, {"model": "metainfo.source", "pk": 14032, "fields": {"orig_filename": "Hollo_Ludwig_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417013}}, {"model": "metainfo.source", "pk": 14033, "fields": {"orig_filename": "Hollpein_Heinrich_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417017}}, {"model": "metainfo.source", "pk": 14034, "fields": {"orig_filename": "Hollschek_Karl_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417018}}, {"model": "metainfo.source", "pk": 14035, "fields": {"orig_filename": "Holly_Jan_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404f.", "author": "", "orig_id": 1417019}}, {"model": "metainfo.source", "pk": 14036, "fields": {"orig_filename": "Holl_Lukas_1903_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417006}}, {"model": "metainfo.source", "pk": 14037, "fields": {"orig_filename": "Holl_Moritz_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417007}}, {"model": "metainfo.source", "pk": 14038, "fields": {"orig_filename": "Holtei_Luise_1800_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417021}}, {"model": "metainfo.source", "pk": 14039, "fields": {"orig_filename": "Holter_Markus_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417022}}, {"model": "metainfo.source", "pk": 14040, "fields": {"orig_filename": "Holter_Wenzel_1827_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405f.", "author": "", "orig_id": 1417023}}, {"model": "metainfo.source", "pk": 14041, "fields": {"orig_filename": "Holuby_Josef-Ludwig_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406f.", "author": "", "orig_id": 1417027}}, {"model": "metainfo.source", "pk": 14042, "fields": {"orig_filename": "Holub_Emil_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417024}}, {"model": "metainfo.source", "pk": 14043, "fields": {"orig_filename": "Holub_Georg_1861_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417025}}, {"model": "metainfo.source", "pk": 14044, "fields": {"orig_filename": "Holub_Karl_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417026}}, {"model": "metainfo.source", "pk": 14045, "fields": {"orig_filename": "Holy_Josef_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417101}}, {"model": "metainfo.source", "pk": 14046, "fields": {"orig_filename": "Holzapfel_Joseph_1815_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417103}}, {"model": "metainfo.source", "pk": 14047, "fields": {"orig_filename": "Holzapfel_Rudolf-Maria_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407f.", "author": "", "orig_id": 1417104}}, {"model": "metainfo.source", "pk": 14048, "fields": {"orig_filename": "Holzer_Joseph_1824_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408", "author": "", "orig_id": 1417105}}, {"model": "metainfo.source", "pk": 14049, "fields": {"orig_filename": "Holzgethan_Georg_1799_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408", "author": "", "orig_id": 1417106}}, {"model": "metainfo.source", "pk": 14050, "fields": {"orig_filename": "Holzgethan_Ludwig_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408f.", "author": "", "orig_id": 1417107}}, {"model": "metainfo.source", "pk": 14051, "fields": {"orig_filename": "Holzhammer_Josef_1850_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 409", "author": "", "orig_id": 1417108}}, {"model": "metainfo.source", "pk": 14052, "fields": {"orig_filename": "Holzhausen_Adolf_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 409", "author": "", "orig_id": 1417109}}, {"model": "metainfo.source", "pk": 14053, "fields": {"orig_filename": "Holzhausen_Fritz_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1417110}}, {"model": "metainfo.source", "pk": 14054, "fields": {"orig_filename": "Holzinger-Janaburg_Ferdinand_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1417111}}, {"model": "metainfo.source", "pk": 14055, "fields": {"orig_filename": "Holzinger-Weidich_Carl_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410f.", "author": "", "orig_id": 1417112}}, {"model": "metainfo.source", "pk": 14056, "fields": {"orig_filename": "Holzinger_Rudolf_1898_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1420820}}, {"model": "metainfo.source", "pk": 14057, "fields": {"orig_filename": "Holzknecht-Hort_Robert_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417114}}, {"model": "metainfo.source", "pk": 14058, "fields": {"orig_filename": "Holzknecht_Guido_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417113}}, {"model": "metainfo.source", "pk": 14059, "fields": {"orig_filename": "Holzmann_Michael_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417115}}, {"model": "metainfo.source", "pk": 14060, "fields": {"orig_filename": "Holz_Vatroslav_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417102}}, {"model": "metainfo.source", "pk": 14061, "fields": {"orig_filename": "Homann-Herimberg_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411f.", "author": "", "orig_id": 1417116}}, {"model": "metainfo.source", "pk": 14062, "fields": {"orig_filename": "Homberg_Herz_1749_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417117}}, {"model": "metainfo.source", "pk": 14063, "fields": {"orig_filename": "Homma_Hans_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417118}}, {"model": "metainfo.source", "pk": 14064, "fields": {"orig_filename": "Homolatsch_Josef_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417119}}, {"model": "metainfo.source", "pk": 14065, "fields": {"orig_filename": "Homolka_Benno_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412f.", "author": "", "orig_id": 1417120}}, {"model": "metainfo.source", "pk": 14066, "fields": {"orig_filename": "Honauer_Franz_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417121}}, {"model": "metainfo.source", "pk": 14067, "fields": {"orig_filename": "Honeder_Karl_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417122}}, {"model": "metainfo.source", "pk": 14068, "fields": {"orig_filename": "Honigberger_Johann-Martin_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417123}}, {"model": "metainfo.source", "pk": 14069, "fields": {"orig_filename": "Hontschik_Henriette_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413f.", "author": "", "orig_id": 1417124}}, {"model": "metainfo.source", "pk": 14070, "fields": {"orig_filename": "Hoor-Horocz_Karl_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414", "author": "", "orig_id": 1417125}}, {"model": "metainfo.source", "pk": 14071, "fields": {"orig_filename": "Hopfen_Franz_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414", "author": "", "orig_id": 1417196}}, {"model": "metainfo.source", "pk": 14072, "fields": {"orig_filename": "Hopffer_Albert_1854_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414f.", "author": "", "orig_id": 1417197}}, {"model": "metainfo.source", "pk": 14073, "fields": {"orig_filename": "Hopfgartner_Karl_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417198}}, {"model": "metainfo.source", "pk": 14074, "fields": {"orig_filename": "Hopfner_Friedrich_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417199}}, {"model": "metainfo.source", "pk": 14075, "fields": {"orig_filename": "Hopfner_Isidor_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417200}}, {"model": "metainfo.source", "pk": 14076, "fields": {"orig_filename": "Hopfner_Theodor_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415f.", "author": "", "orig_id": 1417201}}, {"model": "metainfo.source", "pk": 14077, "fields": {"orig_filename": "Hoppe_Alfred_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416f.", "author": "", "orig_id": 1417204}}, {"model": "metainfo.source", "pk": 14078, "fields": {"orig_filename": "Hoppe_Paul_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417205}}, {"model": "metainfo.source", "pk": 14079, "fields": {"orig_filename": "Hopp_Franz_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416", "author": "", "orig_id": 1417202}}, {"model": "metainfo.source", "pk": 14080, "fields": {"orig_filename": "Hopp_Friedrich-Ernst_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416", "author": "", "orig_id": 1417203}}, {"model": "metainfo.source", "pk": 14081, "fields": {"orig_filename": "Horak_Eduard_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417207}}, {"model": "metainfo.source", "pk": 14082, "fields": {"orig_filename": "Horak_Johann-Nep_1815_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417208}}, {"model": "metainfo.source", "pk": 14083, "fields": {"orig_filename": "Horak_Wenzel-Emanuel_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417f.", "author": "", "orig_id": 1417209}}, {"model": "metainfo.source", "pk": 14084, "fields": {"orig_filename": "Horanszky_Nandor_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418", "author": "", "orig_id": 1417210}}, {"model": "metainfo.source", "pk": 14085, "fields": {"orig_filename": "Horawitz_Adalbert_1840_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418", "author": "", "orig_id": 1417211}}, {"model": "metainfo.source", "pk": 14086, "fields": {"orig_filename": "Hora_Engelbert_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417206}}, {"model": "metainfo.source", "pk": 14087, "fields": {"orig_filename": "Horbaczewski_Johann_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418f.", "author": "", "orig_id": 1417212}}, {"model": "metainfo.source", "pk": 14088, "fields": {"orig_filename": "Horcicka_Adalbert_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417213}}, {"model": "metainfo.source", "pk": 14089, "fields": {"orig_filename": "Horcicka_Franz_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417214}}, {"model": "metainfo.source", "pk": 14090, "fields": {"orig_filename": "Horky_Josef_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417215}}, {"model": "metainfo.source", "pk": 14091, "fields": {"orig_filename": "Hormayr-Hortenburg_Josef_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419ff.", "author": "", "orig_id": 1417216}}, {"model": "metainfo.source", "pk": 14092, "fields": {"orig_filename": "Hormuzaki_Constantin_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417217}}, {"model": "metainfo.source", "pk": 14093, "fields": {"orig_filename": "Hormuzaki_Eudoxius_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417289}}, {"model": "metainfo.source", "pk": 14094, "fields": {"orig_filename": "Hornbostel_August-Gottlieb_1786_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422", "author": "", "orig_id": 1417293}}, {"model": "metainfo.source", "pk": 14095, "fields": {"orig_filename": "Hornbostel_Carl_1825_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422f.", "author": "", "orig_id": 1417294}}, {"model": "metainfo.source", "pk": 14096, "fields": {"orig_filename": "Hornbostel_Christian-Georg_1778_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417295}}, {"model": "metainfo.source", "pk": 14097, "fields": {"orig_filename": "Hornbostel_Erich_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417296}}, {"model": "metainfo.source", "pk": 14098, "fields": {"orig_filename": "Hornbostel_Helene_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417297}}, {"model": "metainfo.source", "pk": 14099, "fields": {"orig_filename": "Hornbostel_Theodor-Friedrich_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423f.", "author": "", "orig_id": 1417298}}, {"model": "metainfo.source", "pk": 14100, "fields": {"orig_filename": "Horner_Johann_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417299}}, {"model": "metainfo.source", "pk": 14101, "fields": {"orig_filename": "Hornich_Karl_1852_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417300}}, {"model": "metainfo.source", "pk": 14102, "fields": {"orig_filename": "Hornich_Rudolf_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417301}}, {"model": "metainfo.source", "pk": 14103, "fields": {"orig_filename": "Hornig_Johann_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424f.", "author": "", "orig_id": 1417302}}, {"model": "metainfo.source", "pk": 14104, "fields": {"orig_filename": "Hornischer_Fanni_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417303}}, {"model": "metainfo.source", "pk": 14105, "fields": {"orig_filename": "Hornoeck_Franz-Xaver_1751_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417304}}, {"model": "metainfo.source", "pk": 14106, "fields": {"orig_filename": "Hornstein_Karl_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417305}}, {"model": "metainfo.source", "pk": 14107, "fields": {"orig_filename": "Horn_Johann-Philipp_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417290}}, {"model": "metainfo.source", "pk": 14108, "fields": {"orig_filename": "Horn_Kamillo_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421f.", "author": "", "orig_id": 1417291}}, {"model": "metainfo.source", "pk": 14109, "fields": {"orig_filename": "Horn_Uffo-Daniel_1817_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422", "author": "", "orig_id": 1417292}}, {"model": "metainfo.source", "pk": 14110, "fields": {"orig_filename": "Horowitz_Lazar_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425f.", "author": "", "orig_id": 1417306}}, {"model": "metainfo.source", "pk": 14111, "fields": {"orig_filename": "Horowitz_Leopold_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417307}}, {"model": "metainfo.source", "pk": 14112, "fields": {"orig_filename": "Horowitz_Samuel_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417308}}, {"model": "metainfo.source", "pk": 14113, "fields": {"orig_filename": "Horschelt_Friedrich_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417309}}, {"model": "metainfo.source", "pk": 14114, "fields": {"orig_filename": "Horschinek_Anton_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426f.", "author": "", "orig_id": 1417310}}, {"model": "metainfo.source", "pk": 14115, "fields": {"orig_filename": "Horsetzky-Hornthal_Adolf_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 427", "author": "", "orig_id": 1417311}}, {"model": "metainfo.source", "pk": 14116, "fields": {"orig_filename": "Horsetzky-Hornthal_Ernst_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 427f.", "author": "", "orig_id": 1417312}}, {"model": "metainfo.source", "pk": 14117, "fields": {"orig_filename": "Horsetzky-Hornthal_Karl_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428", "author": "", "orig_id": 1417313}}, {"model": "metainfo.source", "pk": 14118, "fields": {"orig_filename": "Horsetzky-Hornthal_Melanie_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428", "author": "", "orig_id": 1417314}}, {"model": "metainfo.source", "pk": 14119, "fields": {"orig_filename": "Horsky-Horskysfeld_Franz_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428f.", "author": "", "orig_id": 1417389}}, {"model": "metainfo.source", "pk": 14120, "fields": {"orig_filename": "Horst_Franz_1862_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417391}}, {"model": "metainfo.source", "pk": 14121, "fields": {"orig_filename": "Horst_Julius_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417393}}, {"model": "metainfo.source", "pk": 14122, "fields": {"orig_filename": "Hortis_Attilio_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417394}}, {"model": "metainfo.source", "pk": 14123, "fields": {"orig_filename": "Horvat-Gottlieb_Anka_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417399}}, {"model": "metainfo.source", "pk": 14124, "fields": {"orig_filename": "Horvath_Cyrill_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417401}}, {"model": "metainfo.source", "pk": 14125, "fields": {"orig_filename": "Horvath_Geza_1847_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430f.", "author": "", "orig_id": 1417402}}, {"model": "metainfo.source", "pk": 14126, "fields": {"orig_filename": "Horvath_Michael_1809_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431", "author": "", "orig_id": 1417405}}, {"model": "metainfo.source", "pk": 14127, "fields": {"orig_filename": "Horvath_Oedoen_1901_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431", "author": "", "orig_id": 1417406}}, {"model": "metainfo.source", "pk": 14128, "fields": {"orig_filename": "Horvat_Franjo_1876_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417395}}, {"model": "metainfo.source", "pk": 14129, "fields": {"orig_filename": "Horvat_Karlo_1874_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429f.", "author": "", "orig_id": 1417396}}, {"model": "metainfo.source", "pk": 14130, "fields": {"orig_filename": "Hofbauer_Ferdinand_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418100}}, {"model": "metainfo.source", "pk": 14131, "fields": {"orig_filename": "Hofbauer_Josef_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418101}}, {"model": "metainfo.source", "pk": 14132, "fields": {"orig_filename": "Hofbauer_Josef_1886_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418102}}, {"model": "metainfo.source", "pk": 14133, "fields": {"orig_filename": "Hofbauer_Karl_1829_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418103}}, {"model": "metainfo.source", "pk": 14134, "fields": {"orig_filename": "Hofbauer_Klemens-Maria_1751_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371f.", "author": "", "orig_id": 1418104}}, {"model": "metainfo.source", "pk": 14135, "fields": {"orig_filename": "Hofbauer_Louis_1889_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372", "author": "", "orig_id": 1418105}}, {"model": "metainfo.source", "pk": 14136, "fields": {"orig_filename": "Hofbauer_Ludwig_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372", "author": "", "orig_id": 1418106}}, {"model": "metainfo.source", "pk": 14137, "fields": {"orig_filename": "Hofer_Franz_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372f.", "author": "", "orig_id": 1418107}}, {"model": "metainfo.source", "pk": 14138, "fields": {"orig_filename": "Hofer_Franz_1885_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418108}}, {"model": "metainfo.source", "pk": 14139, "fields": {"orig_filename": "Hofer_Gottfried_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418109}}, {"model": "metainfo.source", "pk": 14140, "fields": {"orig_filename": "Hofer_Ignaz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418110}}, {"model": "metainfo.source", "pk": 14141, "fields": {"orig_filename": "Hofer_Johann_1757_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418111}}, {"model": "metainfo.source", "pk": 14142, "fields": {"orig_filename": "Hofer_Josef_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373f.", "author": "", "orig_id": 1418112}}, {"model": "metainfo.source", "pk": 14143, "fields": {"orig_filename": "Hofer_Josef_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418113}}, {"model": "metainfo.source", "pk": 14144, "fields": {"orig_filename": "Hofer_Joseph-Anton_1742_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418114}}, {"model": "metainfo.source", "pk": 14145, "fields": {"orig_filename": "Hofer_Josepha_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418115}}, {"model": "metainfo.source", "pk": 14146, "fields": {"orig_filename": "Hofer_Otto_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418116}}, {"model": "metainfo.source", "pk": 14147, "fields": {"orig_filename": "Hofer_Sigi_1878_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436644}}, {"model": "metainfo.source", "pk": 14148, "fields": {"orig_filename": "Hoffer_Eduard_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418118}}, {"model": "metainfo.source", "pk": 14149, "fields": {"orig_filename": "Hoffer_Johann_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418119}}, {"model": "metainfo.source", "pk": 14150, "fields": {"orig_filename": "Hoffer_Karl_1824_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418120}}, {"model": "metainfo.source", "pk": 14151, "fields": {"orig_filename": "Hoffinger_Johann-Bapt_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418121}}, {"model": "metainfo.source", "pk": 14152, "fields": {"orig_filename": "Hoffmann-Canstein_Olga_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 379f.", "author": "", "orig_id": 1416731}}, {"model": "metainfo.source", "pk": 14153, "fields": {"orig_filename": "Hoffmann_Cajetan_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418122}}, {"model": "metainfo.source", "pk": 14154, "fields": {"orig_filename": "Hoffmann_Camill_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418123}}, {"model": "metainfo.source", "pk": 14155, "fields": {"orig_filename": "Hoffmann_Emanuel_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418124}}, {"model": "metainfo.source", "pk": 14156, "fields": {"orig_filename": "Hoffmann_Johann-Peter_1764_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377", "author": "", "orig_id": 1418126}}, {"model": "metainfo.source", "pk": 14157, "fields": {"orig_filename": "Hoffmann_Johann_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376f.", "author": "", "orig_id": 1418125}}, {"model": "metainfo.source", "pk": 14158, "fields": {"orig_filename": "Hoffmann_Josef-Raimund_1823_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416726}}, {"model": "metainfo.source", "pk": 14159, "fields": {"orig_filename": "Hoffmann_Josef_1831_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377", "author": "", "orig_id": 1418127}}, {"model": "metainfo.source", "pk": 14160, "fields": {"orig_filename": "Hoffmann_Josef_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377f.", "author": "", "orig_id": 1416725}}, {"model": "metainfo.source", "pk": 14161, "fields": {"orig_filename": "Hoffmann_Karl_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416727}}, {"model": "metainfo.source", "pk": 14162, "fields": {"orig_filename": "Hoffmann_Nina_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416728}}, {"model": "metainfo.source", "pk": 14163, "fields": {"orig_filename": "Hoffmann_Richard-Adolf_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378f.", "author": "", "orig_id": 1416729}}, {"model": "metainfo.source", "pk": 14164, "fields": {"orig_filename": "Hoffmann_Robert_1835_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 379", "author": "", "orig_id": 1416730}}, {"model": "metainfo.source", "pk": 14165, "fields": {"orig_filename": "Hofmann-Aspernburg_Edmund_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416824}}, {"model": "metainfo.source", "pk": 14166, "fields": {"orig_filename": "Hofmann-Hofmannsthal_Hugo_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 385ff.", "author": "", "orig_id": 1416825}}, {"model": "metainfo.source", "pk": 14167, "fields": {"orig_filename": "Hofmann-Hofmannsthal_Isaak-Loew_1759_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416826}}, {"model": "metainfo.source", "pk": 14168, "fields": {"orig_filename": "Hofmann-Wellenhof_Viktor_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416827}}, {"model": "metainfo.source", "pk": 14169, "fields": {"orig_filename": "Hofmann_Adolf_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416732}}, {"model": "metainfo.source", "pk": 14170, "fields": {"orig_filename": "Hofmann_Anton-Adalbert_1881_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416733}}, {"model": "metainfo.source", "pk": 14171, "fields": {"orig_filename": "Hofmann_Eduard_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416734}}, {"model": "metainfo.source", "pk": 14172, "fields": {"orig_filename": "Hofmann_Emil_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380f.", "author": "", "orig_id": 1416735}}, {"model": "metainfo.source", "pk": 14173, "fields": {"orig_filename": "Hofmann_Franz-Bruno_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416737}}, {"model": "metainfo.source", "pk": 14174, "fields": {"orig_filename": "Hofmann_Franz_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416736}}, {"model": "metainfo.source", "pk": 14175, "fields": {"orig_filename": "Hofmann_Josef_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416738}}, {"model": "metainfo.source", "pk": 14176, "fields": {"orig_filename": "Hofmann_Joseph-Anton-Vincenz_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381f.", "author": "", "orig_id": 1416739}}, {"model": "metainfo.source", "pk": 14177, "fields": {"orig_filename": "Hofmann_Julius_1840_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416740}}, {"model": "metainfo.source", "pk": 14178, "fields": {"orig_filename": "Hofmann_Karl-Berthold_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382f.", "author": "", "orig_id": 1416744}}, {"model": "metainfo.source", "pk": 14179, "fields": {"orig_filename": "Hofmann_Karl_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416741}}, {"model": "metainfo.source", "pk": 14180, "fields": {"orig_filename": "Hofmann_Karl_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416742}}, {"model": "metainfo.source", "pk": 14181, "fields": {"orig_filename": "Hofmann_Karl_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416743}}, {"model": "metainfo.source", "pk": 14182, "fields": {"orig_filename": "Hofmann_Kleophas_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 383", "author": "", "orig_id": 1416745}}, {"model": "metainfo.source", "pk": 14183, "fields": {"orig_filename": "Hofmann_Leopold_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 383f.", "author": "", "orig_id": 1416746}}, {"model": "metainfo.source", "pk": 14184, "fields": {"orig_filename": "Hofmann_Martha_1895_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1449603}}, {"model": "metainfo.source", "pk": 14185, "fields": {"orig_filename": "Hofmann_Michael_1860_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416747}}, {"model": "metainfo.source", "pk": 14186, "fields": {"orig_filename": "Hofmann_Ottokar_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416822}}, {"model": "metainfo.source", "pk": 14187, "fields": {"orig_filename": "Hofmeister_Franz_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416829}}, {"model": "metainfo.source", "pk": 14188, "fields": {"orig_filename": "Hofmokl_Johann-Eduard_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387f.", "author": "", "orig_id": 1416830}}, {"model": "metainfo.source", "pk": 14189, "fields": {"orig_filename": "Hofner_Otto_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388", "author": "", "orig_id": 1416831}}, {"model": "metainfo.source", "pk": 14190, "fields": {"orig_filename": "Hofstaedter_Gotthard_1826_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388", "author": "", "orig_id": 1416832}}, {"model": "metainfo.source", "pk": 14191, "fields": {"orig_filename": "Hofzinser_Johann-Nep_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388f.", "author": "", "orig_id": 1416834}}, {"model": "metainfo.source", "pk": 14192, "fields": {"orig_filename": "Hoheisel_Konrad_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389", "author": "", "orig_id": 1416833}}, {"model": "metainfo.source", "pk": 14193, "fields": {"orig_filename": "Hoheisel_Marie_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389", "author": "", "orig_id": 1416835}}, {"model": "metainfo.source", "pk": 14194, "fields": {"orig_filename": "Hohenberger_Franz_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389f.", "author": "", "orig_id": 1416837}}, {"model": "metainfo.source", "pk": 14195, "fields": {"orig_filename": "Hohenbruck_Priska_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390", "author": "", "orig_id": 1416838}}, {"model": "metainfo.source", "pk": 14196, "fields": {"orig_filename": "Hohenbuehel_Ludwig_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390", "author": "", "orig_id": 1416839}}, {"model": "metainfo.source", "pk": 14197, "fields": {"orig_filename": "Hohenegger_Agapit_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390f.", "author": "", "orig_id": 1416840}}, {"model": "metainfo.source", "pk": 14198, "fields": {"orig_filename": "Hohenegger_Ludwig_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391", "author": "", "orig_id": 1416841}}, {"model": "metainfo.source", "pk": 14199, "fields": {"orig_filename": "Hohenfels-Berger_Stella_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391", "author": "", "orig_id": 1416842}}, {"model": "metainfo.source", "pk": 14200, "fields": {"orig_filename": "Hohenleitner_Fridolin_1883_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391f.", "author": "", "orig_id": 1416844}}, {"model": "metainfo.source", "pk": 14201, "fields": {"orig_filename": "Hohenlohe-Ingelfingen_Friedrich-Karl-Wilhelm_1752_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392", "author": "", "orig_id": 1416845}}, {"model": "metainfo.source", "pk": 14202, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Gottfried_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392", "author": "", "orig_id": 1416911}}, {"model": "metainfo.source", "pk": 14203, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konrad_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392f.", "author": "", "orig_id": 1416912}}, {"model": "metainfo.source", "pk": 14204, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konstantin_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 393f.", "author": "", "orig_id": 1416913}}, {"model": "metainfo.source", "pk": 14205, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konstantin_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 394", "author": "", "orig_id": 1416914}}, {"model": "metainfo.source", "pk": 14206, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Marie_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 394f.", "author": "", "orig_id": 1416915}}, {"model": "metainfo.source", "pk": 14207, "fields": {"orig_filename": "Hohenlohe-Waldenburg-Schillingsfuerst_Alexander_1794_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 395", "author": "", "orig_id": 1416916}}, {"model": "metainfo.source", "pk": 14208, "fields": {"orig_filename": "Hohenwart_Franz-Josef-Hannibal_1771_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 395f.", "author": "", "orig_id": 1416917}}, {"model": "metainfo.source", "pk": 14209, "fields": {"orig_filename": "Hohenwart_Karl-Sigmund_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 396", "author": "", "orig_id": 1416918}}, {"model": "metainfo.source", "pk": 14210, "fields": {"orig_filename": "Hohenwart_Sigismund_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 396f.", "author": "", "orig_id": 1416919}}, {"model": "metainfo.source", "pk": 14211, "fields": {"orig_filename": "Hohenwart_Sigmund-Anton_1730_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 397", "author": "", "orig_id": 1416920}}, {"model": "metainfo.source", "pk": 14212, "fields": {"orig_filename": "Hohenzollern-Hechingen_Friedrich-Franz-Xaver_1757_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 397f.", "author": "", "orig_id": 1416921}}, {"model": "metainfo.source", "pk": 14213, "fields": {"orig_filename": "Hohlbaum_Alois_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416922}}, {"model": "metainfo.source", "pk": 14214, "fields": {"orig_filename": "Hohler_Emmerich-Thomas_1781_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416923}}, {"model": "metainfo.source", "pk": 14215, "fields": {"orig_filename": "Hohlfeld_Dora_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416924}}, {"model": "metainfo.source", "pk": 14216, "fields": {"orig_filename": "Hoic_Ivan_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416925}}, {"model": "metainfo.source", "pk": 14217, "fields": {"orig_filename": "Holarek_Emil_1867_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398f.", "author": "", "orig_id": 1416926}}, {"model": "metainfo.source", "pk": 14218, "fields": {"orig_filename": "Holaus_Maximilian_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399", "author": "", "orig_id": 1416928}}, {"model": "metainfo.source", "pk": 14219, "fields": {"orig_filename": "Holaus_Simon_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399", "author": "", "orig_id": 1416927}}, {"model": "metainfo.source", "pk": 14220, "fields": {"orig_filename": "Holbein-Holbeinsberg_Franz-Ignaz_1779_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399f.", "author": "", "orig_id": 1416929}}, {"model": "metainfo.source", "pk": 14221, "fields": {"orig_filename": "Holczabek_Johann-Wilhelm_1843_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1420823}}, {"model": "metainfo.source", "pk": 14222, "fields": {"orig_filename": "Holenia_Romuald_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416930}}, {"model": "metainfo.source", "pk": 14223, "fields": {"orig_filename": "Holetschek_Johann_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416931}}, {"model": "metainfo.source", "pk": 14224, "fields": {"orig_filename": "Holitscher_Arthur_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416932}}, {"model": "metainfo.source", "pk": 14225, "fields": {"orig_filename": "Holitscher_Philipp_1822_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1416933}}, {"model": "metainfo.source", "pk": 14226, "fields": {"orig_filename": "Holjac_Janko_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417005}}, {"model": "metainfo.source", "pk": 14227, "fields": {"orig_filename": "Hollederer_Johann_1783_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401f.", "author": "", "orig_id": 1417008}}, {"model": "metainfo.source", "pk": 14228, "fields": {"orig_filename": "Hollenstein_Stephanie_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 402", "author": "", "orig_id": 1417009}}, {"model": "metainfo.source", "pk": 14229, "fields": {"orig_filename": "Holler_Anton_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 402f.", "author": "", "orig_id": 1417010}}, {"model": "metainfo.source", "pk": 14230, "fields": {"orig_filename": "Hollitzer_Carl-Leopold_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1420821}}, {"model": "metainfo.source", "pk": 14231, "fields": {"orig_filename": "Hitzl_Franz-De-Paula_1738_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339", "author": "", "orig_id": 1417733}}, {"model": "metainfo.source", "pk": 14232, "fields": {"orig_filename": "Hladnik_Franz_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339f.", "author": "", "orig_id": 1417734}}, {"model": "metainfo.source", "pk": 14233, "fields": {"orig_filename": "Hladnik_Ignaz_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417735}}, {"model": "metainfo.source", "pk": 14234, "fields": {"orig_filename": "Hlasiwetz_Heinrich_1825_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417736}}, {"model": "metainfo.source", "pk": 14235, "fields": {"orig_filename": "Hlatky_Eduard_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417737}}, {"model": "metainfo.source", "pk": 14236, "fields": {"orig_filename": "Hlavacek_Anton_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417739}}, {"model": "metainfo.source", "pk": 14237, "fields": {"orig_filename": "Hlava_Jaroslav_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417738}}, {"model": "metainfo.source", "pk": 14238, "fields": {"orig_filename": "Hlavka_Josef_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417740}}, {"model": "metainfo.source", "pk": 14239, "fields": {"orig_filename": "Hlawaczek_Eduard_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341f.", "author": "", "orig_id": 1417741}}, {"model": "metainfo.source", "pk": 14240, "fields": {"orig_filename": "Hlawati_Franz_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417742}}, {"model": "metainfo.source", "pk": 14241, "fields": {"orig_filename": "Hlawatsch_Karl-Ignatz_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128091}}, {"model": "metainfo.source", "pk": 14242, "fields": {"orig_filename": "Hlawatsch_Karl_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2053932}}, {"model": "metainfo.source", "pk": 14243, "fields": {"orig_filename": "Hlawatsch_Rudolf-Karl-Ferdinand_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128097}}, {"model": "metainfo.source", "pk": 14244, "fields": {"orig_filename": "Hocevar_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417743}}, {"model": "metainfo.source", "pk": 14245, "fields": {"orig_filename": "Hoch-Mueller_Joseph-Anton_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417745}}, {"model": "metainfo.source", "pk": 14246, "fields": {"orig_filename": "Hocheder_Johann-Karl_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417746}}, {"model": "metainfo.source", "pk": 14247, "fields": {"orig_filename": "Hochegger_Franz_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417747}}, {"model": "metainfo.source", "pk": 14248, "fields": {"orig_filename": "Hochegger_Rudolf_1862_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417748}}, {"model": "metainfo.source", "pk": 14249, "fields": {"orig_filename": "Hochenegg_Carl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343f.", "author": "", "orig_id": 1417749}}, {"model": "metainfo.source", "pk": 14250, "fields": {"orig_filename": "Hochenegg_Julius_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344", "author": "", "orig_id": 1417750}}, {"model": "metainfo.source", "pk": 14251, "fields": {"orig_filename": "Hochsinger_Carl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344", "author": "", "orig_id": 1417751}}, {"model": "metainfo.source", "pk": 14252, "fields": {"orig_filename": "Hochstetter_Carl-Christian_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344f.", "author": "", "orig_id": 1417752}}, {"model": "metainfo.source", "pk": 14253, "fields": {"orig_filename": "Hochstetter_Ferdinand_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 345", "author": "", "orig_id": 1417753}}, {"model": "metainfo.source", "pk": 14254, "fields": {"orig_filename": "Hochstetter_Heinrich_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 345f.", "author": "", "orig_id": 1417754}}, {"model": "metainfo.source", "pk": 14255, "fields": {"orig_filename": "Hoch_Karl_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417744}}, {"model": "metainfo.source", "pk": 14256, "fields": {"orig_filename": "Hockauf_Josef_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417824}}, {"model": "metainfo.source", "pk": 14257, "fields": {"orig_filename": "Hock_Alexander_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417755}}, {"model": "metainfo.source", "pk": 14258, "fields": {"orig_filename": "Hock_Carl_1808_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417756}}, {"model": "metainfo.source", "pk": 14259, "fields": {"orig_filename": "Hock_Friedrich_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417757}}, {"model": "metainfo.source", "pk": 14260, "fields": {"orig_filename": "Hock_Jakob_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346f.", "author": "", "orig_id": 1417821}}, {"model": "metainfo.source", "pk": 14261, "fields": {"orig_filename": "Hock_Johann_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417822}}, {"model": "metainfo.source", "pk": 14262, "fields": {"orig_filename": "Hock_Stefan_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417823}}, {"model": "metainfo.source", "pk": 14263, "fields": {"orig_filename": "Hodek_Gustav_1832_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417825}}, {"model": "metainfo.source", "pk": 14264, "fields": {"orig_filename": "Hoebarth_Franz_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347f.", "author": "", "orig_id": 1417826}}, {"model": "metainfo.source", "pk": 14265, "fields": {"orig_filename": "Hoechle_Johann-Bapt_1754_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348", "author": "", "orig_id": 1417828}}, {"model": "metainfo.source", "pk": 14266, "fields": {"orig_filename": "Hoechle_Leopold_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348", "author": "", "orig_id": 1417829}}, {"model": "metainfo.source", "pk": 14267, "fields": {"orig_filename": "Hoechsmann_Johannes_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348f.", "author": "", "orig_id": 1417831}}, {"model": "metainfo.source", "pk": 14268, "fields": {"orig_filename": "Hoeck_Franz_1749_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417833}}, {"model": "metainfo.source", "pk": 14269, "fields": {"orig_filename": "Hoedl_Bonaventura-Constantin_1776_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417834}}, {"model": "metainfo.source", "pk": 14270, "fields": {"orig_filename": "Hoedl_Roman-Josef_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417835}}, {"model": "metainfo.source", "pk": 14271, "fields": {"orig_filename": "Hoefele_Stephan_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350", "author": "", "orig_id": 1417839}}, {"model": "metainfo.source", "pk": 14272, "fields": {"orig_filename": "Hoefel_Bernhard_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417836}}, {"model": "metainfo.source", "pk": 14273, "fields": {"orig_filename": "Hoefel_Blasius_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349f.", "author": "", "orig_id": 1417837}}, {"model": "metainfo.source", "pk": 14274, "fields": {"orig_filename": "Hoefel_Johann-Nepomuk_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350", "author": "", "orig_id": 1417838}}, {"model": "metainfo.source", "pk": 14275, "fields": {"orig_filename": "Hoefer-Feldsturm_Franz_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351", "author": "", "orig_id": 1417840}}, {"model": "metainfo.source", "pk": 14276, "fields": {"orig_filename": "Hoefer-Heimhalt_Hans_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351f.", "author": "", "orig_id": 1417843}}, {"model": "metainfo.source", "pk": 14277, "fields": {"orig_filename": "Hoefer_Josef_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350f.", "author": "", "orig_id": 1417841}}, {"model": "metainfo.source", "pk": 14278, "fields": {"orig_filename": "Hoefer_Mathias_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351", "author": "", "orig_id": 1417842}}, {"model": "metainfo.source", "pk": 14279, "fields": {"orig_filename": "Hoefken-Hattingsheim_Rudolf_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353", "author": "", "orig_id": 1417845}}, {"model": "metainfo.source", "pk": 14280, "fields": {"orig_filename": "Hoefken_Gustav_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 352f.", "author": "", "orig_id": 1417844}}, {"model": "metainfo.source", "pk": 14281, "fields": {"orig_filename": "Hoefler_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353", "author": "", "orig_id": 1417846}}, {"model": "metainfo.source", "pk": 14282, "fields": {"orig_filename": "Hoefler_Karl-Adolf-Constantin_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353f.", "author": "", "orig_id": 1417908}}, {"model": "metainfo.source", "pk": 14283, "fields": {"orig_filename": "Hoefner_Gabriel_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 354f.", "author": "", "orig_id": 1417909}}, {"model": "metainfo.source", "pk": 14284, "fields": {"orig_filename": "Hoegelmueller_Georg_1770_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356", "author": "", "orig_id": 1417913}}, {"model": "metainfo.source", "pk": 14285, "fields": {"orig_filename": "Hoegel_Hugo_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355", "author": "", "orig_id": 1417910}}, {"model": "metainfo.source", "pk": 14286, "fields": {"orig_filename": "Hoegel_Johann-Bapt_1820_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355", "author": "", "orig_id": 1417911}}, {"model": "metainfo.source", "pk": 14287, "fields": {"orig_filename": "Hoegel_Wilhelmine_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355f.", "author": "", "orig_id": 1417912}}, {"model": "metainfo.source", "pk": 14288, "fields": {"orig_filename": "Hoeger_Joseph_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356", "author": "", "orig_id": 1417914}}, {"model": "metainfo.source", "pk": 14289, "fields": {"orig_filename": "Hoeger_Karl_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356f.", "author": "", "orig_id": 1417915}}, {"model": "metainfo.source", "pk": 14290, "fields": {"orig_filename": "Hoegler_Anton_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417916}}, {"model": "metainfo.source", "pk": 14291, "fields": {"orig_filename": "Hoegler_Franz_1802_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417917}}, {"model": "metainfo.source", "pk": 14292, "fields": {"orig_filename": "Hoegyes_Andreas_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417918}}, {"model": "metainfo.source", "pk": 14293, "fields": {"orig_filename": "Hoehnel_Franz_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357f.", "author": "", "orig_id": 1417919}}, {"model": "metainfo.source", "pk": 14294, "fields": {"orig_filename": "Hoehnel_Friedrich-Romilo_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358", "author": "", "orig_id": 1417920}}, {"model": "metainfo.source", "pk": 14295, "fields": {"orig_filename": "Hoehnel_Ludwig_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358", "author": "", "orig_id": 1417921}}, {"model": "metainfo.source", "pk": 14296, "fields": {"orig_filename": "Hoehnel_Wilhelm-Gotthelf_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358f.", "author": "", "orig_id": 1417922}}, {"model": "metainfo.source", "pk": 14297, "fields": {"orig_filename": "Hoelder_Alfred_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417923}}, {"model": "metainfo.source", "pk": 14298, "fields": {"orig_filename": "Hoellersberger_Robert_1924_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417924}}, {"model": "metainfo.source", "pk": 14299, "fields": {"orig_filename": "Hoelzel_Adolf_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417925}}, {"model": "metainfo.source", "pk": 14300, "fields": {"orig_filename": "Hoelzel_Eduard_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359f.", "author": "", "orig_id": 1417926}}, {"model": "metainfo.source", "pk": 14301, "fields": {"orig_filename": "Hoelzel_Gustav_1813_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417927}}, {"model": "metainfo.source", "pk": 14302, "fields": {"orig_filename": "Hoelzlhuber_Franz_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417929}}, {"model": "metainfo.source", "pk": 14303, "fields": {"orig_filename": "Hoelzl_Josef_1809_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417928}}, {"model": "metainfo.source", "pk": 14304, "fields": {"orig_filename": "Hoenig-Greil_Auguste_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418002}}, {"model": "metainfo.source", "pk": 14305, "fields": {"orig_filename": "Hoenig-Hoenigsberg_Benedikt_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418004}}, {"model": "metainfo.source", "pk": 14306, "fields": {"orig_filename": "Hoenig-Hoenigsberg_Erich_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418005}}, {"model": "metainfo.source", "pk": 14307, "fields": {"orig_filename": "Hoenigl_Dominik_1833_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362f.", "author": "", "orig_id": 1418006}}, {"model": "metainfo.source", "pk": 14308, "fields": {"orig_filename": "Hoenigschmid_Otto_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363", "author": "", "orig_id": 1418007}}, {"model": "metainfo.source", "pk": 14309, "fields": {"orig_filename": "Hoenigswald_Richard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363", "author": "", "orig_id": 1418008}}, {"model": "metainfo.source", "pk": 14310, "fields": {"orig_filename": "Hoenig_Franz_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417931}}, {"model": "metainfo.source", "pk": 14311, "fields": {"orig_filename": "Hoenig_Ignaz_1828_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417933}}, {"model": "metainfo.source", "pk": 14312, "fields": {"orig_filename": "Hoenig_Max_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361f.", "author": "", "orig_id": 1417934}}, {"model": "metainfo.source", "pk": 14313, "fields": {"orig_filename": "Hoen_Maximilian_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360f.", "author": "", "orig_id": 1417930}}, {"model": "metainfo.source", "pk": 14314, "fields": {"orig_filename": "Hoepler-Hermingen_Erwein_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363f.", "author": "", "orig_id": 1418009}}, {"model": "metainfo.source", "pk": 14315, "fields": {"orig_filename": "Hoerbiger_Alois_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 364", "author": "", "orig_id": 1418010}}, {"model": "metainfo.source", "pk": 14316, "fields": {"orig_filename": "Hoerbiger_Hanns_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 364f.", "author": "", "orig_id": 1418012}}, {"model": "metainfo.source", "pk": 14317, "fields": {"orig_filename": "Hoerfarter_Matthaeus_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418013}}, {"model": "metainfo.source", "pk": 14318, "fields": {"orig_filename": "Hoerhager_Josef_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418014}}, {"model": "metainfo.source", "pk": 14319, "fields": {"orig_filename": "Hoermann-Hoerbach_Angelika_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 366", "author": "", "orig_id": 1418017}}, {"model": "metainfo.source", "pk": 14320, "fields": {"orig_filename": "Hoermann-Hoerbach_Ludwig_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 366f.", "author": "", "orig_id": 1418018}}, {"model": "metainfo.source", "pk": 14321, "fields": {"orig_filename": "Hoermann-Hoerbach_Theodor_1840_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367", "author": "", "orig_id": 1418019}}, {"model": "metainfo.source", "pk": 14322, "fields": {"orig_filename": "Hoermann-Hoerbach_Walther_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367", "author": "", "orig_id": 1418020}}, {"model": "metainfo.source", "pk": 14323, "fields": {"orig_filename": "Hoermann_Konstantin_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418015}}, {"model": "metainfo.source", "pk": 14324, "fields": {"orig_filename": "Hoermann_Leopold_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365f.", "author": "", "orig_id": 1418016}}, {"model": "metainfo.source", "pk": 14325, "fields": {"orig_filename": "Hoernes_Hermann_1858_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367f.", "author": "", "orig_id": 1418021}}, {"model": "metainfo.source", "pk": 14326, "fields": {"orig_filename": "Hoernes_Moriz_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 368", "author": "", "orig_id": 1418022}}, {"model": "metainfo.source", "pk": 14327, "fields": {"orig_filename": "Hoernes_Moriz_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 368f.", "author": "", "orig_id": 1418023}}, {"model": "metainfo.source", "pk": 14328, "fields": {"orig_filename": "Hoernes_Rudolf_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 369f.", "author": "", "orig_id": 1418024}}, {"model": "metainfo.source", "pk": 14329, "fields": {"orig_filename": "Hoertnagl_Hans_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418025}}, {"model": "metainfo.source", "pk": 14330, "fields": {"orig_filename": "Hoerwarter_Joseph-Eugen_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418026}}, {"model": "metainfo.source", "pk": 14331, "fields": {"orig_filename": "Hoesslinger_Guido_1871_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418027}}, {"model": "metainfo.source", "pk": 14332, "fields": {"orig_filename": "Hoetzl_Josef_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370f.", "author": "", "orig_id": 1418028}}, {"model": "metainfo.source", "pk": 14333, "fields": {"orig_filename": "Heyer-Rosenfeld_Friedrich_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417192}}, {"model": "metainfo.source", "pk": 14334, "fields": {"orig_filename": "Heyl_Johann-Adolf_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417193}}, {"model": "metainfo.source", "pk": 14335, "fields": {"orig_filename": "Heyne_Wilhelm_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310f.", "author": "", "orig_id": 1417194}}, {"model": "metainfo.source", "pk": 14336, "fields": {"orig_filename": "Heyssler_Moritz_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311", "author": "", "orig_id": 1417265}}, {"model": "metainfo.source", "pk": 14337, "fields": {"orig_filename": "Hey_Hans-Erwin_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417191}}, {"model": "metainfo.source", "pk": 14338, "fields": {"orig_filename": "Hibler_Emanuel_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311", "author": "", "orig_id": 1417266}}, {"model": "metainfo.source", "pk": 14339, "fields": {"orig_filename": "Hibsch_Josef-Emanuel_1852_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311f.", "author": "", "orig_id": 1417267}}, {"model": "metainfo.source", "pk": 14340, "fields": {"orig_filename": "Hickel_Karl_1811_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417268}}, {"model": "metainfo.source", "pk": 14341, "fields": {"orig_filename": "Hickmann_Anton-Leo_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417269}}, {"model": "metainfo.source", "pk": 14342, "fields": {"orig_filename": "Hidja_Georg-Anton_1752_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417270}}, {"model": "metainfo.source", "pk": 14343, "fields": {"orig_filename": "Hieber_Karlmann_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312f.", "author": "", "orig_id": 1417271}}, {"model": "metainfo.source", "pk": 14344, "fields": {"orig_filename": "Hiebl_Josef-Ferdinand_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417272}}, {"model": "metainfo.source", "pk": 14345, "fields": {"orig_filename": "Hiebsch_Herbert_1905_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417273}}, {"model": "metainfo.source", "pk": 14346, "fields": {"orig_filename": "Hiebsch_Josef_1854_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417274}}, {"model": "metainfo.source", "pk": 14347, "fields": {"orig_filename": "Hieke_Wenzel_1852_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417275}}, {"model": "metainfo.source", "pk": 14348, "fields": {"orig_filename": "Hiermann_Franz_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313f.", "author": "", "orig_id": 1417276}}, {"model": "metainfo.source", "pk": 14349, "fields": {"orig_filename": "Hieronimus_Otto_1879_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1451374}}, {"model": "metainfo.source", "pk": 14350, "fields": {"orig_filename": "Hieronymi_Karl_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417277}}, {"model": "metainfo.source", "pk": 14351, "fields": {"orig_filename": "Hieser_Otto_1850_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417278}}, {"model": "metainfo.source", "pk": 14352, "fields": {"orig_filename": "Hietzinger_Karl-Bernhard_1786_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417279}}, {"model": "metainfo.source", "pk": 14353, "fields": {"orig_filename": "Hilbert_Kamill_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417283}}, {"model": "metainfo.source", "pk": 14354, "fields": {"orig_filename": "Hilber_Vincenz_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314f.", "author": "", "orig_id": 1417282}}, {"model": "metainfo.source", "pk": 14355, "fields": {"orig_filename": "Hilchenbach_Karl-Wilhelm_1749_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417284}}, {"model": "metainfo.source", "pk": 14356, "fields": {"orig_filename": "Hildebrand_Richard_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417286}}, {"model": "metainfo.source", "pk": 14357, "fields": {"orig_filename": "Hildenbrand_Franz-Xaver_1789_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315f.", "author": "", "orig_id": 1417287}}, {"model": "metainfo.source", "pk": 14358, "fields": {"orig_filename": "Hildenbrand_Valentin-Johann_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417288}}, {"model": "metainfo.source", "pk": 14359, "fields": {"orig_filename": "Hildwein_Alois_1789_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417365}}, {"model": "metainfo.source", "pk": 14360, "fields": {"orig_filename": "Hild_Josef_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417285}}, {"model": "metainfo.source", "pk": 14361, "fields": {"orig_filename": "Hilgenreiner_Karl_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417366}}, {"model": "metainfo.source", "pk": 14362, "fields": {"orig_filename": "Hillebrand_Karl_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417368}}, {"model": "metainfo.source", "pk": 14363, "fields": {"orig_filename": "Hilleprandt_Franz_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417369}}, {"model": "metainfo.source", "pk": 14364, "fields": {"orig_filename": "Hiller_Johann_1748_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417370}}, {"model": "metainfo.source", "pk": 14365, "fields": {"orig_filename": "Hiller_Karl_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317f.", "author": "", "orig_id": 1417371}}, {"model": "metainfo.source", "pk": 14366, "fields": {"orig_filename": "Hille_Augustin-Bartholomaeus_1786_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316f.", "author": "", "orig_id": 1417367}}, {"model": "metainfo.source", "pk": 14367, "fields": {"orig_filename": "Hillischer_Hermann-Theodor_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318", "author": "", "orig_id": 1417373}}, {"model": "metainfo.source", "pk": 14368, "fields": {"orig_filename": "Hillischer_Josef-Hermann_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318", "author": "", "orig_id": 1417374}}, {"model": "metainfo.source", "pk": 14369, "fields": {"orig_filename": "Hilpert_Helmut_1923_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318f.", "author": "", "orig_id": 1417375}}, {"model": "metainfo.source", "pk": 14370, "fields": {"orig_filename": "Hilscher_Josef-Emanuel_1806_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417376}}, {"model": "metainfo.source", "pk": 14371, "fields": {"orig_filename": "Hilscher_Karl_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417377}}, {"model": "metainfo.source", "pk": 14372, "fields": {"orig_filename": "Hilzer_Peter-Ignatz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417378}}, {"model": "metainfo.source", "pk": 14373, "fields": {"orig_filename": "Himmel-Agisburg_Heinrich_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417380}}, {"model": "metainfo.source", "pk": 14374, "fields": {"orig_filename": "Himmelbauer_Alfred_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319f.", "author": "", "orig_id": 1417381}}, {"model": "metainfo.source", "pk": 14375, "fields": {"orig_filename": "Himmelbauer_Franz_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417382}}, {"model": "metainfo.source", "pk": 14376, "fields": {"orig_filename": "Himmelbauer_Michael_1829_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417383}}, {"model": "metainfo.source", "pk": 14377, "fields": {"orig_filename": "Himmelbaur_Marietta_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417384}}, {"model": "metainfo.source", "pk": 14378, "fields": {"orig_filename": "Himmelbaur_Wolfgang_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320f.", "author": "", "orig_id": 1417385}}, {"model": "metainfo.source", "pk": 14379, "fields": {"orig_filename": "Himsl_Ferdinand_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321", "author": "", "orig_id": 1417386}}, {"model": "metainfo.source", "pk": 14380, "fields": {"orig_filename": "Hingenau_Otto-Bernhard-Gottlieb_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321", "author": "", "orig_id": 1417387}}, {"model": "metainfo.source", "pk": 14381, "fields": {"orig_filename": "Hinke_Johann_1837_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321f.", "author": "", "orig_id": 1417388}}, {"model": "metainfo.source", "pk": 14382, "fields": {"orig_filename": "Hinkovic_Hinko_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417457}}, {"model": "metainfo.source", "pk": 14383, "fields": {"orig_filename": "Hinsenkamp_Therese_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417459}}, {"model": "metainfo.source", "pk": 14384, "fields": {"orig_filename": "Hinterberger_Friedrich_1826_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417460}}, {"model": "metainfo.source", "pk": 14385, "fields": {"orig_filename": "Hinterberger_Hugo_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322f.", "author": "", "orig_id": 1417461}}, {"model": "metainfo.source", "pk": 14386, "fields": {"orig_filename": "Hinterhuber_Georg_1768_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417462}}, {"model": "metainfo.source", "pk": 14387, "fields": {"orig_filename": "Hinterhuber_Julius_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417464}}, {"model": "metainfo.source", "pk": 14388, "fields": {"orig_filename": "Hinterhuber_Rudolf_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417465}}, {"model": "metainfo.source", "pk": 14389, "fields": {"orig_filename": "Hinterlechner_Fulgentius_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417466}}, {"model": "metainfo.source", "pk": 14390, "fields": {"orig_filename": "Hinterlechner_Karl_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323f.", "author": "", "orig_id": 1417467}}, {"model": "metainfo.source", "pk": 14391, "fields": {"orig_filename": "Hinterleithner_Josef_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 324", "author": "", "orig_id": 1417468}}, {"model": "metainfo.source", "pk": 14392, "fields": {"orig_filename": "Hinteroecker_Johann-Nep_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 324f.", "author": "", "orig_id": 1417469}}, {"model": "metainfo.source", "pk": 14393, "fields": {"orig_filename": "Hinterschweiger_Ludwig_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325", "author": "", "orig_id": 1417471}}, {"model": "metainfo.source", "pk": 14394, "fields": {"orig_filename": "Hinterstoisser_Franz_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325", "author": "", "orig_id": 1417472}}, {"model": "metainfo.source", "pk": 14395, "fields": {"orig_filename": "Hinterstoisser_Hermann-Joseph_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325f.", "author": "", "orig_id": 1417474}}, {"model": "metainfo.source", "pk": 14396, "fields": {"orig_filename": "Hinterstoisser_Joseph-Carl_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326", "author": "", "orig_id": 1417475}}, {"model": "metainfo.source", "pk": 14397, "fields": {"orig_filename": "Hinterwaldner_Johann-Max_1844_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326", "author": "", "orig_id": 1417476}}, {"model": "metainfo.source", "pk": 14398, "fields": {"orig_filename": "Hinterwaldner_Josef_1833_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326f.", "author": "", "orig_id": 1417477}}, {"model": "metainfo.source", "pk": 14399, "fields": {"orig_filename": "Hintner_Johann_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417478}}, {"model": "metainfo.source", "pk": 14400, "fields": {"orig_filename": "Hintner_Michael_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417479}}, {"model": "metainfo.source", "pk": 14401, "fields": {"orig_filename": "Hintner_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417480}}, {"model": "metainfo.source", "pk": 14402, "fields": {"orig_filename": "Hintraeger_Moritz_1831_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417481}}, {"model": "metainfo.source", "pk": 14403, "fields": {"orig_filename": "Hiptmair_Mathias_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327f.", "author": "", "orig_id": 1417552}}, {"model": "metainfo.source", "pk": 14404, "fields": {"orig_filename": "Hirc_Dragutin_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417553}}, {"model": "metainfo.source", "pk": 14405, "fields": {"orig_filename": "Hirc_Miroslav_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417554}}, {"model": "metainfo.source", "pk": 14406, "fields": {"orig_filename": "Hiremy-Hirschl_Adolf_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417556}}, {"model": "metainfo.source", "pk": 14407, "fields": {"orig_filename": "Hirn_Ferdinand_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328f.", "author": "", "orig_id": 1417557}}, {"model": "metainfo.source", "pk": 14408, "fields": {"orig_filename": "Hirn_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329", "author": "", "orig_id": 1417558}}, {"model": "metainfo.source", "pk": 14409, "fields": {"orig_filename": "Hirschberg_Aleksander_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331f.", "author": "", "orig_id": 1417566}}, {"model": "metainfo.source", "pk": 14410, "fields": {"orig_filename": "Hirschberg_Marie_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332", "author": "", "orig_id": 1417567}}, {"model": "metainfo.source", "pk": 14411, "fields": {"orig_filename": "Hirschfeld_Leo_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332", "author": "", "orig_id": 1417568}}, {"model": "metainfo.source", "pk": 14412, "fields": {"orig_filename": "Hirschfeld_Otto_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332f.", "author": "", "orig_id": 1417569}}, {"model": "metainfo.source", "pk": 14413, "fields": {"orig_filename": "Hirschfeld_Robert_1857_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333", "author": "", "orig_id": 1417570}}, {"model": "metainfo.source", "pk": 14414, "fields": {"orig_filename": "Hirschfeld_Viktor_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333", "author": "", "orig_id": 1417571}}, {"model": "metainfo.source", "pk": 14415, "fields": {"orig_filename": "Hirschhaeuter_Joseph_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333f.", "author": "", "orig_id": 1417572}}, {"model": "metainfo.source", "pk": 14416, "fields": {"orig_filename": "Hirschler_Anna_1846_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334", "author": "", "orig_id": 1417574}}, {"model": "metainfo.source", "pk": 14417, "fields": {"orig_filename": "Hirschler_Ignaz_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334f.", "author": "", "orig_id": 1417642}}, {"model": "metainfo.source", "pk": 14418, "fields": {"orig_filename": "Hirschl_Josef-Adolf_1865_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334", "author": "", "orig_id": 1417573}}, {"model": "metainfo.source", "pk": 14419, "fields": {"orig_filename": "Hirsch_Arnold_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329", "author": "", "orig_id": 1417559}}, {"model": "metainfo.source", "pk": 14420, "fields": {"orig_filename": "Hirsch_Hans_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329f.", "author": "", "orig_id": 1417560}}, {"model": "metainfo.source", "pk": 14421, "fields": {"orig_filename": "Hirsch_Helene_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 330", "author": "", "orig_id": 1417561}}, {"model": "metainfo.source", "pk": 14422, "fields": {"orig_filename": "Hirsch_Karl_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 330f.", "author": "", "orig_id": 1417562}}, {"model": "metainfo.source", "pk": 14423, "fields": {"orig_filename": "Hirsch_Moritz_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417563}}, {"model": "metainfo.source", "pk": 14424, "fields": {"orig_filename": "Hirsch_Oskar_1877_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417564}}, {"model": "metainfo.source", "pk": 14425, "fields": {"orig_filename": "Hirsch_Rudolf_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417565}}, {"model": "metainfo.source", "pk": 14426, "fields": {"orig_filename": "Hirtenfeld_Jaromir_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335", "author": "", "orig_id": 1417644}}, {"model": "metainfo.source", "pk": 14427, "fields": {"orig_filename": "Hirt_Max_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335", "author": "", "orig_id": 1417643}}, {"model": "metainfo.source", "pk": 14428, "fields": {"orig_filename": "Hitler_Adolf_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335ff.", "author": "", "orig_id": 1417646}}, {"model": "metainfo.source", "pk": 14429, "fields": {"orig_filename": "Hitschmann_Fritz_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 337", "author": "", "orig_id": 1417647}}, {"model": "metainfo.source", "pk": 14430, "fields": {"orig_filename": "Hitschmann_Hugo-Heinrich_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 337f.", "author": "", "orig_id": 1417648}}, {"model": "metainfo.source", "pk": 14431, "fields": {"orig_filename": "Hitschmann_Maximilian_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417649}}, {"model": "metainfo.source", "pk": 14432, "fields": {"orig_filename": "Hittmair_Anton_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417650}}, {"model": "metainfo.source", "pk": 14433, "fields": {"orig_filename": "Hittmair_Rudolf_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417662}}, {"model": "metainfo.source", "pk": 14434, "fields": {"orig_filename": "Hittmair_Rudolf_1889_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338f.", "author": "", "orig_id": 1417663}}, {"model": "metainfo.source", "pk": 14435, "fields": {"orig_filename": "Hitzenthaler_Anton_1750_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339", "author": "", "orig_id": 1417732}}, {"model": "metainfo.source", "pk": 14436, "fields": {"orig_filename": "Hering_Ewald_1834_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416815}}, {"model": "metainfo.source", "pk": 14437, "fields": {"orig_filename": "Hering_Ewald_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416816}}, {"model": "metainfo.source", "pk": 14438, "fields": {"orig_filename": "Heritsch_Franz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283f.", "author": "", "orig_id": 1416817}}, {"model": "metainfo.source", "pk": 14439, "fields": {"orig_filename": "Herkner_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416818}}, {"model": "metainfo.source", "pk": 14440, "fields": {"orig_filename": "Herloss_Karl_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416819}}, {"model": "metainfo.source", "pk": 14441, "fields": {"orig_filename": "Hermann-Hermannsthal_Franz_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416898}}, {"model": "metainfo.source", "pk": 14442, "fields": {"orig_filename": "Hermann_Albert_1864_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285", "author": "", "orig_id": 1416891}}, {"model": "metainfo.source", "pk": 14443, "fields": {"orig_filename": "Hermann_August-Gustav_1828_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285", "author": "", "orig_id": 1416892}}, {"model": "metainfo.source", "pk": 14444, "fields": {"orig_filename": "Hermann_Benedikt-Franz-Johann_1755_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285f.", "author": "", "orig_id": 1416893}}, {"model": "metainfo.source", "pk": 14445, "fields": {"orig_filename": "Hermann_Franz_1827_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286", "author": "", "orig_id": 1420733}}, {"model": "metainfo.source", "pk": 14446, "fields": {"orig_filename": "Hermann_Friedrich_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286", "author": "", "orig_id": 1420734}}, {"model": "metainfo.source", "pk": 14447, "fields": {"orig_filename": "Hermann_Hugo_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287", "author": "", "orig_id": 1420736}}, {"model": "metainfo.source", "pk": 14448, "fields": {"orig_filename": "Hermann_Johann_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287", "author": "", "orig_id": 1420737}}, {"model": "metainfo.source", "pk": 14449, "fields": {"orig_filename": "Hermann_Johann_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287f.", "author": "", "orig_id": 1420738}}, {"model": "metainfo.source", "pk": 14450, "fields": {"orig_filename": "Hermann_Josef_1817_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416894}}, {"model": "metainfo.source", "pk": 14451, "fields": {"orig_filename": "Hermann_Julius_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416895}}, {"model": "metainfo.source", "pk": 14452, "fields": {"orig_filename": "Hermann_Leo_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416896}}, {"model": "metainfo.source", "pk": 14453, "fields": {"orig_filename": "Hermann_Richard_1872_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416897}}, {"model": "metainfo.source", "pk": 14454, "fields": {"orig_filename": "Herman_Jan_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416821}}, {"model": "metainfo.source", "pk": 14455, "fields": {"orig_filename": "Herman_Otto_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284f.", "author": "", "orig_id": 1416890}}, {"model": "metainfo.source", "pk": 14456, "fields": {"orig_filename": "Herndl_Franz_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416899}}, {"model": "metainfo.source", "pk": 14457, "fields": {"orig_filename": "Hernler_Franz_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416900}}, {"model": "metainfo.source", "pk": 14458, "fields": {"orig_filename": "Herold_Franz_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416901}}, {"model": "metainfo.source", "pk": 14459, "fields": {"orig_filename": "Herold_Jiri_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416902}}, {"model": "metainfo.source", "pk": 14460, "fields": {"orig_filename": "Herold_Josef_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416903}}, {"model": "metainfo.source", "pk": 14461, "fields": {"orig_filename": "Herold_Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289f.", "author": "", "orig_id": 1416904}}, {"model": "metainfo.source", "pk": 14462, "fields": {"orig_filename": "Herrenburg-Tuczek_Leopoldine_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416906}}, {"model": "metainfo.source", "pk": 14463, "fields": {"orig_filename": "Herring_Johann_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416907}}, {"model": "metainfo.source", "pk": 14464, "fields": {"orig_filename": "Herrmann-Herrnritt_Rudolf_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416985}}, {"model": "metainfo.source", "pk": 14465, "fields": {"orig_filename": "Herrmann_Anton_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290f.", "author": "", "orig_id": 1416908}}, {"model": "metainfo.source", "pk": 14466, "fields": {"orig_filename": "Herrmann_August_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416909}}, {"model": "metainfo.source", "pk": 14467, "fields": {"orig_filename": "Herrmann_Edmund_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416910}}, {"model": "metainfo.source", "pk": 14468, "fields": {"orig_filename": "Herrmann_Emanuel_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416981}}, {"model": "metainfo.source", "pk": 14469, "fields": {"orig_filename": "Herrmann_Fritz_1903_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291f.", "author": "", "orig_id": 1416982}}, {"model": "metainfo.source", "pk": 14470, "fields": {"orig_filename": "Herrmann_Karl_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416983}}, {"model": "metainfo.source", "pk": 14471, "fields": {"orig_filename": "Herrnheiser_Isidor_1861_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292f.", "author": "", "orig_id": 1416986}}, {"model": "metainfo.source", "pk": 14472, "fields": {"orig_filename": "Herr_Josef-Philipp_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416905}}, {"model": "metainfo.source", "pk": 14473, "fields": {"orig_filename": "Herschel_Otto_1871_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416988}}, {"model": "metainfo.source", "pk": 14474, "fields": {"orig_filename": "Hertle_Josef_1871_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416989}}, {"model": "metainfo.source", "pk": 14475, "fields": {"orig_filename": "Hertzka_Emil_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416990}}, {"model": "metainfo.source", "pk": 14476, "fields": {"orig_filename": "Hertzka_Jella_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293f.", "author": "", "orig_id": 1416991}}, {"model": "metainfo.source", "pk": 14477, "fields": {"orig_filename": "Hertzka_Julius_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294", "author": "", "orig_id": 1416992}}, {"model": "metainfo.source", "pk": 14478, "fields": {"orig_filename": "Hertzka_Theodor_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294", "author": "", "orig_id": 1416993}}, {"model": "metainfo.source", "pk": 14479, "fields": {"orig_filename": "Herz-Rodenau_Johann-Jakob_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1416999}}, {"model": "metainfo.source", "pk": 14480, "fields": {"orig_filename": "Herzberg-Fraenkel_Leo_1827_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1417000}}, {"model": "metainfo.source", "pk": 14481, "fields": {"orig_filename": "Herzberg-Fraenkel_Sigmund_1857_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1420732}}, {"model": "metainfo.source", "pk": 14482, "fields": {"orig_filename": "Herzenskron_Hermann-Josef_1789_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1417001}}, {"model": "metainfo.source", "pk": 14483, "fields": {"orig_filename": "Herzenskron_Viktor_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296f.", "author": "", "orig_id": 1417002}}, {"model": "metainfo.source", "pk": 14484, "fields": {"orig_filename": "Herzfeld_Adolf_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297", "author": "", "orig_id": 1417003}}, {"model": "metainfo.source", "pk": 14485, "fields": {"orig_filename": "Herzfeld_Karl-August_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297", "author": "", "orig_id": 1417004}}, {"model": "metainfo.source", "pk": 14486, "fields": {"orig_filename": "Herzfeld_Marie_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297f.", "author": "", "orig_id": 1417075}}, {"model": "metainfo.source", "pk": 14487, "fields": {"orig_filename": "Herzfeld_Victor_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417076}}, {"model": "metainfo.source", "pk": 14488, "fields": {"orig_filename": "Herzig_Josef_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417078}}, {"model": "metainfo.source", "pk": 14489, "fields": {"orig_filename": "Herzinger_Anton_1763_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417079}}, {"model": "metainfo.source", "pk": 14490, "fields": {"orig_filename": "Herzka_Siegmund_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417080}}, {"model": "metainfo.source", "pk": 14491, "fields": {"orig_filename": "Herzlieb_Franz_1797_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417083}}, {"model": "metainfo.source", "pk": 14492, "fields": {"orig_filename": "Herzl_Sigmund_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298f.", "author": "", "orig_id": 1417081}}, {"model": "metainfo.source", "pk": 14493, "fields": {"orig_filename": "Herzl_Theodor_1860_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 299f.", "author": "", "orig_id": 1417082}}, {"model": "metainfo.source", "pk": 14494, "fields": {"orig_filename": "Herzmann_Josef_1859_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417084}}, {"model": "metainfo.source", "pk": 14495, "fields": {"orig_filename": "Herzmansky_August_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417085}}, {"model": "metainfo.source", "pk": 14496, "fields": {"orig_filename": "Herzmansky_Bernhard_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300f.", "author": "", "orig_id": 1417086}}, {"model": "metainfo.source", "pk": 14497, "fields": {"orig_filename": "Herzogenberg_Heinrich_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302", "author": "", "orig_id": 1417090}}, {"model": "metainfo.source", "pk": 14498, "fields": {"orig_filename": "Herzog_David_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1414793}}, {"model": "metainfo.source", "pk": 14499, "fields": {"orig_filename": "Herzog_Jakob_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1417087}}, {"model": "metainfo.source", "pk": 14500, "fields": {"orig_filename": "Herzog_Katharina_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1417088}}, {"model": "metainfo.source", "pk": 14501, "fields": {"orig_filename": "Herzog_Reginald-Oliver_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301f.", "author": "", "orig_id": 1417089}}, {"model": "metainfo.source", "pk": 14502, "fields": {"orig_filename": "Herz_Eugen_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294f.", "author": "", "orig_id": 1416994}}, {"model": "metainfo.source", "pk": 14503, "fields": {"orig_filename": "Herz_Fritz_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416995}}, {"model": "metainfo.source", "pk": 14504, "fields": {"orig_filename": "Herz_Heinrich_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416996}}, {"model": "metainfo.source", "pk": 14505, "fields": {"orig_filename": "Herz_Maximilian_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416997}}, {"model": "metainfo.source", "pk": 14506, "fields": {"orig_filename": "Herz_Norbert_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295f.", "author": "", "orig_id": 1416998}}, {"model": "metainfo.source", "pk": 14507, "fields": {"orig_filename": "Heschl_Richard-Ladislaus_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302f.", "author": "", "orig_id": 1417092}}, {"model": "metainfo.source", "pk": 14508, "fields": {"orig_filename": "Hesch_Wilhelm_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302", "author": "", "orig_id": 1417091}}, {"model": "metainfo.source", "pk": 14509, "fields": {"orig_filename": "Hesse-Wartegg_Ernst_1854_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417097}}, {"model": "metainfo.source", "pk": 14510, "fields": {"orig_filename": "Hessen-Homburg_Ferdinand-Heinrich_1783_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417098}}, {"model": "metainfo.source", "pk": 14511, "fields": {"orig_filename": "Hessen-Homburg_Gustav-Adolph-Friedrich_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417100}}, {"model": "metainfo.source", "pk": 14512, "fields": {"orig_filename": "Hessen-Homburg_Philipp-August-Friedrich_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417171}}, {"model": "metainfo.source", "pk": 14513, "fields": {"orig_filename": "Hessen-Rhein_Alexander-Ludwig-Georg-Friedrich-Emil_1823_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305f.", "author": "", "orig_id": 1417172}}, {"model": "metainfo.source", "pk": 14514, "fields": {"orig_filename": "Hessen-Rhein_Emil-Maximilian-Leopold-August-Karl_1790_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417173}}, {"model": "metainfo.source", "pk": 14515, "fields": {"orig_filename": "Hessler_Ferdinand_1803_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417175}}, {"model": "metainfo.source", "pk": 14516, "fields": {"orig_filename": "Hessl_Gustav-August_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417174}}, {"model": "metainfo.source", "pk": 14517, "fields": {"orig_filename": "Hess_Bruno_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 303", "author": "", "orig_id": 1417093}}, {"model": "metainfo.source", "pk": 14518, "fields": {"orig_filename": "Hess_Heinrich_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 304", "author": "", "orig_id": 1417095}}, {"model": "metainfo.source", "pk": 14519, "fields": {"orig_filename": "Hess_Heinrich_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 303f.", "author": "", "orig_id": 1417094}}, {"model": "metainfo.source", "pk": 14520, "fields": {"orig_filename": "Hess_Philipp_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 304f.", "author": "", "orig_id": 1417096}}, {"model": "metainfo.source", "pk": 14521, "fields": {"orig_filename": "Hetschko_Alfred_1854_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417176}}, {"model": "metainfo.source", "pk": 14522, "fields": {"orig_filename": "Hetsey_Alice_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417177}}, {"model": "metainfo.source", "pk": 14523, "fields": {"orig_filename": "Hettwer_Emil_1847_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417178}}, {"model": "metainfo.source", "pk": 14524, "fields": {"orig_filename": "Hetzenauer_Michael_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417180}}, {"model": "metainfo.source", "pk": 14525, "fields": {"orig_filename": "Hetzendorf-Hohenberg_Johann-Ferdinand_1732_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307f.", "author": "", "orig_id": 1417181}}, {"model": "metainfo.source", "pk": 14526, "fields": {"orig_filename": "Heubach_Hans-Heinrich_1890_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308", "author": "", "orig_id": 1417182}}, {"model": "metainfo.source", "pk": 14527, "fields": {"orig_filename": "Heuberger_Leopold_1786_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308", "author": "", "orig_id": 1417183}}, {"model": "metainfo.source", "pk": 14528, "fields": {"orig_filename": "Heuberger_Richard-Franz-Joseph_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308f.", "author": "", "orig_id": 1417184}}, {"model": "metainfo.source", "pk": 14529, "fields": {"orig_filename": "Heuffel_Johann_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417185}}, {"model": "metainfo.source", "pk": 14530, "fields": {"orig_filename": "Heurteur_Nikolaus_1781_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417187}}, {"model": "metainfo.source", "pk": 14531, "fields": {"orig_filename": "Heussenstamm-Heissenstein-Graefenhausen_Theodor_1801_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417188}}, {"model": "metainfo.source", "pk": 14532, "fields": {"orig_filename": "Heveroch_Antonin_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309f.", "author": "", "orig_id": 1417189}}, {"model": "metainfo.source", "pk": 14533, "fields": {"orig_filename": "Hevesi_Ludwig_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417190}}, {"model": "metainfo.source", "pk": 14534, "fields": {"orig_filename": "Hejda_Wilhelm_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417731}}, {"model": "metainfo.source", "pk": 14535, "fields": {"orig_filename": "Helcelet_Johann_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417801}}, {"model": "metainfo.source", "pk": 14536, "fields": {"orig_filename": "Helcel_Antoni-Zygmunt_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254f.", "author": "", "orig_id": 1417800}}, {"model": "metainfo.source", "pk": 14537, "fields": {"orig_filename": "Held_Johann-Theobald_1773_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417802}}, {"model": "metainfo.source", "pk": 14538, "fields": {"orig_filename": "Held_Leo_1874_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417803}}, {"model": "metainfo.source", "pk": 14539, "fields": {"orig_filename": "Held_Ludwig_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417804}}, {"model": "metainfo.source", "pk": 14540, "fields": {"orig_filename": "Helfenstein_Alois_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417805}}, {"model": "metainfo.source", "pk": 14541, "fields": {"orig_filename": "Helferstorfer_Othmar_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256", "author": "", "orig_id": 1417807}}, {"model": "metainfo.source", "pk": 14542, "fields": {"orig_filename": "Helfert_Joseph-Alexander_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256f.", "author": "", "orig_id": 1417809}}, {"model": "metainfo.source", "pk": 14543, "fields": {"orig_filename": "Helfert_Joseph_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256", "author": "", "orig_id": 1417808}}, {"model": "metainfo.source", "pk": 14544, "fields": {"orig_filename": "Helfert_Vladimir_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 257", "author": "", "orig_id": 1417810}}, {"model": "metainfo.source", "pk": 14545, "fields": {"orig_filename": "Helfer_Johann-Wilhelm_1810_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417806}}, {"model": "metainfo.source", "pk": 14546, "fields": {"orig_filename": "Hellenbach_Lazar_1827_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417814}}, {"model": "metainfo.source", "pk": 14547, "fields": {"orig_filename": "Hellensteiner_Emma_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417815}}, {"model": "metainfo.source", "pk": 14548, "fields": {"orig_filename": "Heller-Hellwald_Friedrich-Anton_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417897}}, {"model": "metainfo.source", "pk": 14549, "fields": {"orig_filename": "Heller-Hellwald_Friedrich-Jakob_1798_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417898}}, {"model": "metainfo.source", "pk": 14550, "fields": {"orig_filename": "Heller-Ostersetzer_Hermine_1874_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417900}}, {"model": "metainfo.source", "pk": 14551, "fields": {"orig_filename": "Heller_Eduard_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417816}}, {"model": "metainfo.source", "pk": 14552, "fields": {"orig_filename": "Heller_Gustav_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417817}}, {"model": "metainfo.source", "pk": 14553, "fields": {"orig_filename": "Heller_Hermann-Vinzenz_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417818}}, {"model": "metainfo.source", "pk": 14554, "fields": {"orig_filename": "Heller_Isidor_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417819}}, {"model": "metainfo.source", "pk": 14555, "fields": {"orig_filename": "Heller_Johann-Florian_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259f.", "author": "", "orig_id": 1417820}}, {"model": "metainfo.source", "pk": 14556, "fields": {"orig_filename": "Heller_Josef_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417887}}, {"model": "metainfo.source", "pk": 14557, "fields": {"orig_filename": "Heller_Josef_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417888}}, {"model": "metainfo.source", "pk": 14558, "fields": {"orig_filename": "Heller_Kamill_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417889}}, {"model": "metainfo.source", "pk": 14559, "fields": {"orig_filename": "Heller_Karl-Bartholomaeus_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260f.", "author": "", "orig_id": 1417891}}, {"model": "metainfo.source", "pk": 14560, "fields": {"orig_filename": "Heller_Karl-Maria_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417892}}, {"model": "metainfo.source", "pk": 14561, "fields": {"orig_filename": "Heller_Kurt_1898_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417893}}, {"model": "metainfo.source", "pk": 14562, "fields": {"orig_filename": "Heller_Prokop-Benedikt_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417894}}, {"model": "metainfo.source", "pk": 14563, "fields": {"orig_filename": "Heller_Seligmann_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261f.", "author": "", "orig_id": 1417895}}, {"model": "metainfo.source", "pk": 14564, "fields": {"orig_filename": "Heller_Simon_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417896}}, {"model": "metainfo.source", "pk": 14565, "fields": {"orig_filename": "Helletsgruber_Anton_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262f.", "author": "", "orig_id": 1417901}}, {"model": "metainfo.source", "pk": 14566, "fields": {"orig_filename": "Hellich_Bohuslav_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417903}}, {"model": "metainfo.source", "pk": 14567, "fields": {"orig_filename": "Hellich_Josef-Adalbert_1807_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417904}}, {"model": "metainfo.source", "pk": 14568, "fields": {"orig_filename": "Hellmann_Alois-Philipp_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417905}}, {"model": "metainfo.source", "pk": 14569, "fields": {"orig_filename": "Hellmann_Heinrich_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417906}}, {"model": "metainfo.source", "pk": 14570, "fields": {"orig_filename": "Hellmann_Jakob_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417978}}, {"model": "metainfo.source", "pk": 14571, "fields": {"orig_filename": "Hellmayr_Carl-Eduard_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263f.", "author": "", "orig_id": 1417979}}, {"model": "metainfo.source", "pk": 14572, "fields": {"orig_filename": "Hellmer_Edmund_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 264f.", "author": "", "orig_id": 1417980}}, {"model": "metainfo.source", "pk": 14573, "fields": {"orig_filename": "Hellmer_Edmund_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417981}}, {"model": "metainfo.source", "pk": 14574, "fields": {"orig_filename": "Hellmer_Johann-Karl_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417982}}, {"model": "metainfo.source", "pk": 14575, "fields": {"orig_filename": "Hellmesberger_Ferdinand_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417983}}, {"model": "metainfo.source", "pk": 14576, "fields": {"orig_filename": "Hellmesberger_Georg_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265f.", "author": "", "orig_id": 1417984}}, {"model": "metainfo.source", "pk": 14577, "fields": {"orig_filename": "Hellmesberger_Georg_1830_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266", "author": "", "orig_id": 1417985}}, {"model": "metainfo.source", "pk": 14578, "fields": {"orig_filename": "Hellmesberger_Joseph_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266", "author": "", "orig_id": 1417987}}, {"model": "metainfo.source", "pk": 14579, "fields": {"orig_filename": "Hellwag_Konrad-Wilhelm_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266f.", "author": "", "orig_id": 1417988}}, {"model": "metainfo.source", "pk": 14580, "fields": {"orig_filename": "Hellweger_Franz_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267", "author": "", "orig_id": 1417989}}, {"model": "metainfo.source", "pk": 14581, "fields": {"orig_filename": "Hellweger_Michael_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267", "author": "", "orig_id": 1417990}}, {"model": "metainfo.source", "pk": 14582, "fields": {"orig_filename": "Helly_Carl_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267f.", "author": "", "orig_id": 1417991}}, {"model": "metainfo.source", "pk": 14583, "fields": {"orig_filename": "Hell_Gustav_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417811}}, {"model": "metainfo.source", "pk": 14584, "fields": {"orig_filename": "Hell_Josef_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417812}}, {"model": "metainfo.source", "pk": 14585, "fields": {"orig_filename": "Helmer_Gilbert_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268f.", "author": "", "orig_id": 1417995}}, {"model": "metainfo.source", "pk": 14586, "fields": {"orig_filename": "Helmer_Hermann_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417996}}, {"model": "metainfo.source", "pk": 14587, "fields": {"orig_filename": "Helmhacker_Rudolf_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269", "author": "", "orig_id": 1417997}}, {"model": "metainfo.source", "pk": 14588, "fields": {"orig_filename": "Helmreichen-Brunnfeld_Virgil_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269", "author": "", "orig_id": 1417998}}, {"model": "metainfo.source", "pk": 14589, "fields": {"orig_filename": "Helm_Joseph-Alois_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417992}}, {"model": "metainfo.source", "pk": 14590, "fields": {"orig_filename": "Helm_Theodor_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417993}}, {"model": "metainfo.source", "pk": 14591, "fields": {"orig_filename": "Helm_Theodor_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417994}}, {"model": "metainfo.source", "pk": 14592, "fields": {"orig_filename": "Hemala_Franz_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269f.", "author": "", "orig_id": 1417999}}, {"model": "metainfo.source", "pk": 14593, "fields": {"orig_filename": "Hemerlein_Karl_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270", "author": "", "orig_id": 1418000}}, {"model": "metainfo.source", "pk": 14594, "fields": {"orig_filename": "Hemmelmayr-Augustenfeld_Franz-Josef_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270", "author": "", "orig_id": 1418001}}, {"model": "metainfo.source", "pk": 14595, "fields": {"orig_filename": "Hempel_Gustav_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270f.", "author": "", "orig_id": 1418075}}, {"model": "metainfo.source", "pk": 14596, "fields": {"orig_filename": "Hempel_Josef_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 271", "author": "", "orig_id": 1418076}}, {"model": "metainfo.source", "pk": 14597, "fields": {"orig_filename": "Hempt_Adolf_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2178551}}, {"model": "metainfo.source", "pk": 14598, "fields": {"orig_filename": "Henckel-Donnersmarck_Hugo_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 271f.", "author": "", "orig_id": 1418077}}, {"model": "metainfo.source", "pk": 14599, "fields": {"orig_filename": "Hendel_Friedrich_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418078}}, {"model": "metainfo.source", "pk": 14600, "fields": {"orig_filename": "Hendel_Maximilian_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418079}}, {"model": "metainfo.source", "pk": 14601, "fields": {"orig_filename": "Hengelmueller-Hengervar_Ladislaus_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418080}}, {"model": "metainfo.source", "pk": 14602, "fields": {"orig_filename": "Hengst_Oswald_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418081}}, {"model": "metainfo.source", "pk": 14603, "fields": {"orig_filename": "Henikstein_Alfred_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418082}}, {"model": "metainfo.source", "pk": 14604, "fields": {"orig_filename": "Henneberg_Hugo_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418083}}, {"model": "metainfo.source", "pk": 14605, "fields": {"orig_filename": "Henneberg_Johann-Bapt_1769_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273f.", "author": "", "orig_id": 1418084}}, {"model": "metainfo.source", "pk": 14606, "fields": {"orig_filename": "Henning_Gottfried-Wilhelm_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418085}}, {"model": "metainfo.source", "pk": 14607, "fields": {"orig_filename": "Henning_Karl_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418086}}, {"model": "metainfo.source", "pk": 14608, "fields": {"orig_filename": "Henning_Roland_1896_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418087}}, {"model": "metainfo.source", "pk": 14609, "fields": {"orig_filename": "Henning_Theodor_1897_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418088}}, {"model": "metainfo.source", "pk": 14610, "fields": {"orig_filename": "Henrich_Josef_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418089}}, {"model": "metainfo.source", "pk": 14611, "fields": {"orig_filename": "Henschel_Gustav_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418091}}, {"model": "metainfo.source", "pk": 14612, "fields": {"orig_filename": "Hensler_Karl-Friedrich_1759_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418092}}, {"model": "metainfo.source", "pk": 14613, "fields": {"orig_filename": "Henszlmann_Emerich_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275f.", "author": "", "orig_id": 1418093}}, {"model": "metainfo.source", "pk": 14614, "fields": {"orig_filename": "Hentzi-Arthurm_Heinrich_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276", "author": "", "orig_id": 1418094}}, {"model": "metainfo.source", "pk": 14615, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Anton-Seraphin_1767_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276", "author": "", "orig_id": 1418095}}, {"model": "metainfo.source", "pk": 14616, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Hans_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276f.", "author": "", "orig_id": 1418096}}, {"model": "metainfo.source", "pk": 14617, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Josef_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 277", "author": "", "orig_id": 1418097}}, {"model": "metainfo.source", "pk": 14618, "fields": {"orig_filename": "Herbeck_Johann_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 277f.", "author": "", "orig_id": 1418098}}, {"model": "metainfo.source", "pk": 14619, "fields": {"orig_filename": "Herbert-Kerchnawe_Ernst_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416800}}, {"model": "metainfo.source", "pk": 14620, "fields": {"orig_filename": "Herberth_Carl_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416801}}, {"model": "metainfo.source", "pk": 14621, "fields": {"orig_filename": "Herbert_Albin_1787_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278", "author": "", "orig_id": 1418099}}, {"model": "metainfo.source", "pk": 14622, "fields": {"orig_filename": "Herbert_Franz-Paul_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278f.", "author": "", "orig_id": 1416798}}, {"model": "metainfo.source", "pk": 14623, "fields": {"orig_filename": "Herbert_Franz_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278", "author": "", "orig_id": 1416797}}, {"model": "metainfo.source", "pk": 14624, "fields": {"orig_filename": "Herbich_Franz_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416802}}, {"model": "metainfo.source", "pk": 14625, "fields": {"orig_filename": "Herbich_Franz_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279f.", "author": "", "orig_id": 1416803}}, {"model": "metainfo.source", "pk": 14626, "fields": {"orig_filename": "Herbsthoffer_Peter-Rudolf-Karl_1821_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416806}}, {"model": "metainfo.source", "pk": 14627, "fields": {"orig_filename": "Herbst_Eduard_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 280f.", "author": "", "orig_id": 1416804}}, {"model": "metainfo.source", "pk": 14628, "fields": {"orig_filename": "Herbst_Friederike_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416805}}, {"model": "metainfo.source", "pk": 14629, "fields": {"orig_filename": "Herczel_Emanuel_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416807}}, {"model": "metainfo.source", "pk": 14630, "fields": {"orig_filename": "Herdlicka_Theodor_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416808}}, {"model": "metainfo.source", "pk": 14631, "fields": {"orig_filename": "Herdtle_Hermann_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416809}}, {"model": "metainfo.source", "pk": 14632, "fields": {"orig_filename": "Herfurth_Franz-Karl_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416810}}, {"model": "metainfo.source", "pk": 14633, "fields": {"orig_filename": "Hergesel_Franz_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416811}}, {"model": "metainfo.source", "pk": 14634, "fields": {"orig_filename": "Herget_Anton_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416812}}, {"model": "metainfo.source", "pk": 14635, "fields": {"orig_filename": "Herget_Oskar_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416813}}, {"model": "metainfo.source", "pk": 14636, "fields": {"orig_filename": "Heric_Matija_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416814}}, {"model": "metainfo.source", "pk": 14637, "fields": {"orig_filename": "Hawel_Rudolf_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224f.", "author": "", "orig_id": 1418692}}, {"model": "metainfo.source", "pk": 14638, "fields": {"orig_filename": "Haydecker_Sebastian_1789_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1417340}}, {"model": "metainfo.source", "pk": 14639, "fields": {"orig_filename": "Haydinger_Franz_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225f.", "author": "", "orig_id": 1417341}}, {"model": "metainfo.source", "pk": 14640, "fields": {"orig_filename": "Hayd_Karl_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1418695}}, {"model": "metainfo.source", "pk": 14641, "fields": {"orig_filename": "Hayek_August_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226", "author": "", "orig_id": 1417342}}, {"model": "metainfo.source", "pk": 14642, "fields": {"orig_filename": "Hayek_Gustav_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226", "author": "", "orig_id": 1417343}}, {"model": "metainfo.source", "pk": 14643, "fields": {"orig_filename": "Hayek_Hermann_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226f.", "author": "", "orig_id": 1417345}}, {"model": "metainfo.source", "pk": 14644, "fields": {"orig_filename": "Haymerle_Franz-Josef_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227", "author": "", "orig_id": 1417346}}, {"model": "metainfo.source", "pk": 14645, "fields": {"orig_filename": "Haymerle_Heinrich_1828_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227", "author": "", "orig_id": 1417347}}, {"model": "metainfo.source", "pk": 14646, "fields": {"orig_filename": "Haynald_Ludwig_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227f.", "author": "", "orig_id": 1417348}}, {"model": "metainfo.source", "pk": 14647, "fields": {"orig_filename": "Haynau_Julius-Jacob_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 228f.", "author": "", "orig_id": 1417349}}, {"model": "metainfo.source", "pk": 14648, "fields": {"orig_filename": "Hazslinszky-Hazslin_Friedrich-August_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229", "author": "", "orig_id": 1417350}}, {"model": "metainfo.source", "pk": 14649, "fields": {"orig_filename": "Hazura_Karl_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229", "author": "", "orig_id": 1417351}}, {"model": "metainfo.source", "pk": 14650, "fields": {"orig_filename": "Heberdey_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 231", "author": "", "orig_id": 1417353}}, {"model": "metainfo.source", "pk": 14651, "fields": {"orig_filename": "Heberle_Therese_1805_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417354}}, {"model": "metainfo.source", "pk": 14652, "fields": {"orig_filename": "Hebra_Ferdinand_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417355}}, {"model": "metainfo.source", "pk": 14653, "fields": {"orig_filename": "Hebra_Hans_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417356}}, {"model": "metainfo.source", "pk": 14654, "fields": {"orig_filename": "Hechenblaikner_Ingenuin_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232f.", "author": "", "orig_id": 1417357}}, {"model": "metainfo.source", "pk": 14655, "fields": {"orig_filename": "Hechenbleikner_Louis_1893_1983.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441921}}, {"model": "metainfo.source", "pk": 14656, "fields": {"orig_filename": "Hecht_Adolf_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417358}}, {"model": "metainfo.source", "pk": 14657, "fields": {"orig_filename": "Hecht_Karl-Wilhelm_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417359}}, {"model": "metainfo.source", "pk": 14658, "fields": {"orig_filename": "Hecht_Victor_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417360}}, {"model": "metainfo.source", "pk": 14659, "fields": {"orig_filename": "Heckel_Johann-Jakob_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234f.", "author": "", "orig_id": 1417363}}, {"model": "metainfo.source", "pk": 14660, "fields": {"orig_filename": "Heckel_Karl-Ferdinand_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417436}}, {"model": "metainfo.source", "pk": 14661, "fields": {"orig_filename": "Heckenast_Gustav_1811_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417437}}, {"model": "metainfo.source", "pk": 14662, "fields": {"orig_filename": "Hecke_Wenzel_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234", "author": "", "orig_id": 1417362}}, {"model": "metainfo.source", "pk": 14663, "fields": {"orig_filename": "Hedrich_Franz_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417438}}, {"model": "metainfo.source", "pk": 14664, "fields": {"orig_filename": "Hedwig_Johann-Lukas_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417439}}, {"model": "metainfo.source", "pk": 14665, "fields": {"orig_filename": "Heeger_Ernst_1783_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417440}}, {"model": "metainfo.source", "pk": 14666, "fields": {"orig_filename": "Heeger_Viktor_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417441}}, {"model": "metainfo.source", "pk": 14667, "fields": {"orig_filename": "Heffter-Hohenburg_Johann-Ignaz_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417443}}, {"model": "metainfo.source", "pk": 14668, "fields": {"orig_filename": "Hefft_Anton_1815_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417442}}, {"model": "metainfo.source", "pk": 14669, "fields": {"orig_filename": "Hefter_Gustav_1871_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417444}}, {"model": "metainfo.source", "pk": 14670, "fields": {"orig_filename": "Hegedues-Eoer_Joseph-Franz_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417446}}, {"model": "metainfo.source", "pk": 14671, "fields": {"orig_filename": "Hegedues_Alexander_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236f.", "author": "", "orig_id": 1417445}}, {"model": "metainfo.source", "pk": 14672, "fields": {"orig_filename": "Hegele_Maximilian_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417447}}, {"model": "metainfo.source", "pk": 14673, "fields": {"orig_filename": "Hegemann_Otmar_1869_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417448}}, {"model": "metainfo.source", "pk": 14674, "fields": {"orig_filename": "Hegenbarth_Emanuel-Franz_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237f.", "author": "", "orig_id": 1417450}}, {"model": "metainfo.source", "pk": 14675, "fields": {"orig_filename": "Hegenbarth_Ernst_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417451}}, {"model": "metainfo.source", "pk": 14676, "fields": {"orig_filename": "Hegenbart_Fritz_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417449}}, {"model": "metainfo.source", "pk": 14677, "fields": {"orig_filename": "Heger-Gasser_Eugenie_1866_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417529}}, {"model": "metainfo.source", "pk": 14678, "fields": {"orig_filename": "Heger_Franz_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417452}}, {"model": "metainfo.source", "pk": 14679, "fields": {"orig_filename": "Heger_Franz_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417527}}, {"model": "metainfo.source", "pk": 14680, "fields": {"orig_filename": "Heger_Hans_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239", "author": "", "orig_id": 1417453}}, {"model": "metainfo.source", "pk": 14681, "fields": {"orig_filename": "Heger_Hilde_1899_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2057065}}, {"model": "metainfo.source", "pk": 14682, "fields": {"orig_filename": "Heger_Ignaz-Jakob_1808_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239f.", "author": "", "orig_id": 1417528}}, {"model": "metainfo.source", "pk": 14683, "fields": {"orig_filename": "Heger_Ignaz_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239", "author": "", "orig_id": 1417455}}, {"model": "metainfo.source", "pk": 14684, "fields": {"orig_filename": "Heicke_Joseph_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417530}}, {"model": "metainfo.source", "pk": 14685, "fields": {"orig_filename": "Heideloff_Josef_1747_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417533}}, {"model": "metainfo.source", "pk": 14686, "fields": {"orig_filename": "Heidenreich_Josef-Cal_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417534}}, {"model": "metainfo.source", "pk": 14687, "fields": {"orig_filename": "Heiderich_Franz_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 243", "author": "", "orig_id": 1417541}}, {"model": "metainfo.source", "pk": 14688, "fields": {"orig_filename": "Heider_Adolf_1858_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417535}}, {"model": "metainfo.source", "pk": 14689, "fields": {"orig_filename": "Heider_Arthur_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417536}}, {"model": "metainfo.source", "pk": 14690, "fields": {"orig_filename": "Heider_Gustav_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417537}}, {"model": "metainfo.source", "pk": 14691, "fields": {"orig_filename": "Heider_Karl_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241f.", "author": "", "orig_id": 1417538}}, {"model": "metainfo.source", "pk": 14692, "fields": {"orig_filename": "Heider_Moriz_1816_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 242", "author": "", "orig_id": 1417539}}, {"model": "metainfo.source", "pk": 14693, "fields": {"orig_filename": "Heider_Paul_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 242f.", "author": "", "orig_id": 1417540}}, {"model": "metainfo.source", "pk": 14694, "fields": {"orig_filename": "Heidler-Heilborn_Karl_1792_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 243f.", "author": "", "orig_id": 1417542}}, {"model": "metainfo.source", "pk": 14695, "fields": {"orig_filename": "Heidmann_Alberich_1808_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417543}}, {"model": "metainfo.source", "pk": 14696, "fields": {"orig_filename": "Heidmann_Johann-Anton_1772_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417544}}, {"model": "metainfo.source", "pk": 14697, "fields": {"orig_filename": "Heid_Nicolaus_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417532}}, {"model": "metainfo.source", "pk": 14698, "fields": {"orig_filename": "Heigl_Fritz_1895_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417545}}, {"model": "metainfo.source", "pk": 14699, "fields": {"orig_filename": "Heigl_Paul_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1464354}}, {"model": "metainfo.source", "pk": 14700, "fields": {"orig_filename": "Heilinger_Alois_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1419004}}, {"model": "metainfo.source", "pk": 14701, "fields": {"orig_filename": "Heilmann_Albert_1832_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417548}}, {"model": "metainfo.source", "pk": 14702, "fields": {"orig_filename": "Heilmann_Anton_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244f.", "author": "", "orig_id": 1417549}}, {"model": "metainfo.source", "pk": 14703, "fields": {"orig_filename": "Heim-San-Martino-Carso_Geza_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417550}}, {"model": "metainfo.source", "pk": 14704, "fields": {"orig_filename": "Heimel_Marie-Sidonie_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417619}}, {"model": "metainfo.source", "pk": 14705, "fields": {"orig_filename": "Heimerl_Anton_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417621}}, {"model": "metainfo.source", "pk": 14706, "fields": {"orig_filename": "Heinbucher-Bikessy_Joseph_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246f.", "author": "", "orig_id": 1417627}}, {"model": "metainfo.source", "pk": 14707, "fields": {"orig_filename": "Heinefetter_Clara_1816_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247f.", "author": "", "orig_id": 1417632}}, {"model": "metainfo.source", "pk": 14708, "fields": {"orig_filename": "Heine_Albert_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417628}}, {"model": "metainfo.source", "pk": 14709, "fields": {"orig_filename": "Heine_Ferdinand_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417629}}, {"model": "metainfo.source", "pk": 14710, "fields": {"orig_filename": "Heine_Karl-Wilhelm_1838_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417630}}, {"model": "metainfo.source", "pk": 14711, "fields": {"orig_filename": "Heinl_Franz_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417634}}, {"model": "metainfo.source", "pk": 14712, "fields": {"orig_filename": "Heinricher_Emil_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 250", "author": "", "orig_id": 1417713}}, {"model": "metainfo.source", "pk": 14713, "fields": {"orig_filename": "Heinrich_Albin_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417635}}, {"model": "metainfo.source", "pk": 14714, "fields": {"orig_filename": "Heinrich_Anton-Philipp_1781_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248f.", "author": "", "orig_id": 1417638}}, {"model": "metainfo.source", "pk": 14715, "fields": {"orig_filename": "Heinrich_Anton_1830_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417637}}, {"model": "metainfo.source", "pk": 14716, "fields": {"orig_filename": "Heinrich_August_1794_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249", "author": "", "orig_id": 1417639}}, {"model": "metainfo.source", "pk": 14717, "fields": {"orig_filename": "Heinrich_Gustav_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417640}}, {"model": "metainfo.source", "pk": 14718, "fields": {"orig_filename": "Heinrich_Johann-Josef-Karl_1737_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249", "author": "", "orig_id": 1417711}}, {"model": "metainfo.source", "pk": 14719, "fields": {"orig_filename": "Heinrich_Josef_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249f.", "author": "", "orig_id": 1417712}}, {"model": "metainfo.source", "pk": 14720, "fields": {"orig_filename": "Heintl_Franz_1769_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 250f.", "author": "", "orig_id": 1417714}}, {"model": "metainfo.source", "pk": 14721, "fields": {"orig_filename": "Heintschel-Heinegg_Hanns-Georg_1919_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417715}}, {"model": "metainfo.source", "pk": 14722, "fields": {"orig_filename": "Heinzelmann_Johannes_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252", "author": "", "orig_id": 1417720}}, {"model": "metainfo.source", "pk": 14723, "fields": {"orig_filename": "Heinzel_Richard_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252", "author": "", "orig_id": 1417719}}, {"model": "metainfo.source", "pk": 14724, "fields": {"orig_filename": "Heinz_Julius_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417716}}, {"model": "metainfo.source", "pk": 14725, "fields": {"orig_filename": "Heinz_Rudolf_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417717}}, {"model": "metainfo.source", "pk": 14726, "fields": {"orig_filename": "Heinz_Sebastian_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251f.", "author": "", "orig_id": 1417718}}, {"model": "metainfo.source", "pk": 14727, "fields": {"orig_filename": "Hein_Alois-Raimund_1852_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245f.", "author": "", "orig_id": 1417623}}, {"model": "metainfo.source", "pk": 14728, "fields": {"orig_filename": "Hein_Franz_1808_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417624}}, {"model": "metainfo.source", "pk": 14729, "fields": {"orig_filename": "Hein_Sigmund_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417625}}, {"model": "metainfo.source", "pk": 14730, "fields": {"orig_filename": "Hein_Wilhelm_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417626}}, {"model": "metainfo.source", "pk": 14731, "fields": {"orig_filename": "Heischmann_Eugen_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252f.", "author": "", "orig_id": 1417722}}, {"model": "metainfo.source", "pk": 14732, "fields": {"orig_filename": "Heisinger_Adolf-Johann-Bapt_1808_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417723}}, {"model": "metainfo.source", "pk": 14733, "fields": {"orig_filename": "Heissl_Ernst_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417726}}, {"model": "metainfo.source", "pk": 14734, "fields": {"orig_filename": "Heiss_Berta_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417725}}, {"model": "metainfo.source", "pk": 14735, "fields": {"orig_filename": "Heitler_Moritz_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417727}}, {"model": "metainfo.source", "pk": 14736, "fields": {"orig_filename": "Heitzler_Karl_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417728}}, {"model": "metainfo.source", "pk": 14737, "fields": {"orig_filename": "Heitzmann_Julius_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417729}}, {"model": "metainfo.source", "pk": 14738, "fields": {"orig_filename": "Heitzmann_Karl_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417730}}, {"model": "metainfo.source", "pk": 14739, "fields": {"orig_filename": "Hartmann_Friedrich_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418321}}, {"model": "metainfo.source", "pk": 14740, "fields": {"orig_filename": "Hartmann_Friedrich_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418322}}, {"model": "metainfo.source", "pk": 14741, "fields": {"orig_filename": "Hartmann_Helene_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418323}}, {"model": "metainfo.source", "pk": 14742, "fields": {"orig_filename": "Hartmann_Karl_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418324}}, {"model": "metainfo.source", "pk": 14743, "fields": {"orig_filename": "Hartmann_Ludo-Moritz_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195f.", "author": "", "orig_id": 1418325}}, {"model": "metainfo.source", "pk": 14744, "fields": {"orig_filename": "Hartmann_Moritz_1821_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 196f.", "author": "", "orig_id": 1418326}}, {"model": "metainfo.source", "pk": 14745, "fields": {"orig_filename": "Hartmann_Philipp-Karl_1773_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418327}}, {"model": "metainfo.source", "pk": 14746, "fields": {"orig_filename": "Hartmayr_Joseph_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197f.", "author": "", "orig_id": 1418392}}, {"model": "metainfo.source", "pk": 14747, "fields": {"orig_filename": "Hartung_Ernst_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418393}}, {"model": "metainfo.source", "pk": 14748, "fields": {"orig_filename": "Harum_Peter_1825_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418394}}, {"model": "metainfo.source", "pk": 14749, "fields": {"orig_filename": "Haschek_Eduard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198f.", "author": "", "orig_id": 1418396}}, {"model": "metainfo.source", "pk": 14750, "fields": {"orig_filename": "Haschka_Lorenz-Leopold_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418397}}, {"model": "metainfo.source", "pk": 14751, "fields": {"orig_filename": "Haschowec_Ferdinand_1902_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418398}}, {"model": "metainfo.source", "pk": 14752, "fields": {"orig_filename": "Hasch_Karl_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418395}}, {"model": "metainfo.source", "pk": 14753, "fields": {"orig_filename": "Hasek_Jaroslav_1883_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418399}}, {"model": "metainfo.source", "pk": 14754, "fields": {"orig_filename": "Haselbach_Volkmar_1909_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2091927}}, {"model": "metainfo.source", "pk": 14755, "fields": {"orig_filename": "Hasenauer_Carl_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418400}}, {"model": "metainfo.source", "pk": 14756, "fields": {"orig_filename": "Hasenhut_Anton_1766_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200", "author": "", "orig_id": 1418401}}, {"model": "metainfo.source", "pk": 14757, "fields": {"orig_filename": "Hasenhut_Martina-Pauline_1809_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200", "author": "", "orig_id": 1418402}}, {"model": "metainfo.source", "pk": 14758, "fields": {"orig_filename": "Hasenoehrl_Friedrich_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200f.", "author": "", "orig_id": 1418403}}, {"model": "metainfo.source", "pk": 14759, "fields": {"orig_filename": "Hasenoehrl_Viktor_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 201", "author": "", "orig_id": 1418404}}, {"model": "metainfo.source", "pk": 14760, "fields": {"orig_filename": "Haskovec_Ladislav_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 201", "author": "", "orig_id": 1418405}}, {"model": "metainfo.source", "pk": 14761, "fields": {"orig_filename": "Hasler_Karel_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2171664}}, {"model": "metainfo.source", "pk": 14762, "fields": {"orig_filename": "Haslinger_Tobias_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418406}}, {"model": "metainfo.source", "pk": 14763, "fields": {"orig_filename": "Haslroither_Gerhard_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418407}}, {"model": "metainfo.source", "pk": 14764, "fields": {"orig_filename": "Hasner-Artha_Josef_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418408}}, {"model": "metainfo.source", "pk": 14765, "fields": {"orig_filename": "Hasner-Artha_Leopold_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202f.", "author": "", "orig_id": 1418409}}, {"model": "metainfo.source", "pk": 14766, "fields": {"orig_filename": "Hasnik_Josef_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 203", "author": "", "orig_id": 1418410}}, {"model": "metainfo.source", "pk": 14767, "fields": {"orig_filename": "Haspinger_Joachim_1776_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 203f.", "author": "", "orig_id": 1418411}}, {"model": "metainfo.source", "pk": 14768, "fields": {"orig_filename": "Hassack_Karl_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418412}}, {"model": "metainfo.source", "pk": 14769, "fields": {"orig_filename": "Hasselt-Barth_Anna-Maria-Wilhelmine_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418413}}, {"model": "metainfo.source", "pk": 14770, "fields": {"orig_filename": "Hasslinger-Hassingen_Johann-Nepomuk_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418414}}, {"model": "metainfo.source", "pk": 14771, "fields": {"orig_filename": "Hasslwander_Friedrich_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418415}}, {"model": "metainfo.source", "pk": 14772, "fields": {"orig_filename": "Hasslwander_Joseph_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204f.", "author": "", "orig_id": 1418416}}, {"model": "metainfo.source", "pk": 14773, "fields": {"orig_filename": "Hasslwanter_Johann_1805_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205", "author": "", "orig_id": 1418482}}, {"model": "metainfo.source", "pk": 14774, "fields": {"orig_filename": "Hassmann_Karl-Ludwig_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205", "author": "", "orig_id": 1418483}}, {"model": "metainfo.source", "pk": 14775, "fields": {"orig_filename": "Hassreiter_Josef_1845_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205f.", "author": "", "orig_id": 1418484}}, {"model": "metainfo.source", "pk": 14776, "fields": {"orig_filename": "Hatheyer_Franz-Sales_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207", "author": "", "orig_id": 1418486}}, {"model": "metainfo.source", "pk": 14777, "fields": {"orig_filename": "Hatle_Eduard_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207", "author": "", "orig_id": 1418487}}, {"model": "metainfo.source", "pk": 14778, "fields": {"orig_filename": "Hatschek_Berthold_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207f.", "author": "", "orig_id": 1418488}}, {"model": "metainfo.source", "pk": 14779, "fields": {"orig_filename": "Hatschek_Ludwig_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208", "author": "", "orig_id": 1418489}}, {"model": "metainfo.source", "pk": 14780, "fields": {"orig_filename": "Hattala_Martin_1821_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208", "author": "", "orig_id": 1418490}}, {"model": "metainfo.source", "pk": 14781, "fields": {"orig_filename": "Hattler_Franz_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208f.", "author": "", "orig_id": 1418491}}, {"model": "metainfo.source", "pk": 14782, "fields": {"orig_filename": "Hatvany-Deutsch_Alexander_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418492}}, {"model": "metainfo.source", "pk": 14783, "fields": {"orig_filename": "Hauberrisser_Georg-Joseph_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418495}}, {"model": "metainfo.source", "pk": 14784, "fields": {"orig_filename": "Hauberrisser_Georg_1781_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418494}}, {"model": "metainfo.source", "pk": 14785, "fields": {"orig_filename": "Haubner_Matthaeus_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209f.", "author": "", "orig_id": 1418496}}, {"model": "metainfo.source", "pk": 14786, "fields": {"orig_filename": "Hauck_Ferdinand_1845_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418497}}, {"model": "metainfo.source", "pk": 14787, "fields": {"orig_filename": "Haudek_Martin_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418498}}, {"model": "metainfo.source", "pk": 14788, "fields": {"orig_filename": "Hauder_Franz_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418499}}, {"model": "metainfo.source", "pk": 14789, "fields": {"orig_filename": "Hauer_Franz_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 211", "author": "", "orig_id": 1418500}}, {"model": "metainfo.source", "pk": 14790, "fields": {"orig_filename": "Hauer_Johann-Georg_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 211f.", "author": "", "orig_id": 1418501}}, {"model": "metainfo.source", "pk": 14791, "fields": {"orig_filename": "Hauer_Joseph_1778_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418502}}, {"model": "metainfo.source", "pk": 14792, "fields": {"orig_filename": "Hauer_Julius_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418503}}, {"model": "metainfo.source", "pk": 14793, "fields": {"orig_filename": "Hauer_Karl_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418504}}, {"model": "metainfo.source", "pk": 14794, "fields": {"orig_filename": "Hauffe_Leopold_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212f.", "author": "", "orig_id": 1418505}}, {"model": "metainfo.source", "pk": 14795, "fields": {"orig_filename": "Hauger_Georg_1792_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418506}}, {"model": "metainfo.source", "pk": 14796, "fields": {"orig_filename": "Haugwitz_Eugen-Wilhelm_1777_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418577}}, {"model": "metainfo.source", "pk": 14797, "fields": {"orig_filename": "Hauke_Franz_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418578}}, {"model": "metainfo.source", "pk": 14798, "fields": {"orig_filename": "Hauler_Edmund_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213f.", "author": "", "orig_id": 1418579}}, {"model": "metainfo.source", "pk": 14799, "fields": {"orig_filename": "Hauler_Johann_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 214", "author": "", "orig_id": 1418580}}, {"model": "metainfo.source", "pk": 14800, "fields": {"orig_filename": "Haulik-Varallya_Georg_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 214f.", "author": "", "orig_id": 1418581}}, {"model": "metainfo.source", "pk": 14801, "fields": {"orig_filename": "Haunold_Karl-Franz-Emanuel_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418582}}, {"model": "metainfo.source", "pk": 14802, "fields": {"orig_filename": "Hauptfleisch_Johann_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418585}}, {"model": "metainfo.source", "pk": 14803, "fields": {"orig_filename": "Hauptmann_Franc_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418586}}, {"model": "metainfo.source", "pk": 14804, "fields": {"orig_filename": "Hauptmann_Lorenz_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215f.", "author": "", "orig_id": 1418587}}, {"model": "metainfo.source", "pk": 14805, "fields": {"orig_filename": "Haupt_Josef_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418583}}, {"model": "metainfo.source", "pk": 14806, "fields": {"orig_filename": "Haupt_Karl_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418584}}, {"model": "metainfo.source", "pk": 14807, "fields": {"orig_filename": "Hauschka_Vinzenz_1766_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216", "author": "", "orig_id": 1418589}}, {"model": "metainfo.source", "pk": 14808, "fields": {"orig_filename": "Hauschner_Auguste_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216f.", "author": "", "orig_id": 1418590}}, {"model": "metainfo.source", "pk": 14809, "fields": {"orig_filename": "Hausegger_Friedrich_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418591}}, {"model": "metainfo.source", "pk": 14810, "fields": {"orig_filename": "Hausegger_Siegmund_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418592}}, {"model": "metainfo.source", "pk": 14811, "fields": {"orig_filename": "Hauser_Alois_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418593}}, {"model": "metainfo.source", "pk": 14812, "fields": {"orig_filename": "Hauser_Anna_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418594}}, {"model": "metainfo.source", "pk": 14813, "fields": {"orig_filename": "Hauser_Eduard_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418596}}, {"model": "metainfo.source", "pk": 14814, "fields": {"orig_filename": "Hauser_Franz_1799_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418598}}, {"model": "metainfo.source", "pk": 14815, "fields": {"orig_filename": "Hauser_Johann-Nepomuk_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218f.", "author": "", "orig_id": 1418599}}, {"model": "metainfo.source", "pk": 14816, "fields": {"orig_filename": "Hauser_Karl_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 219", "author": "", "orig_id": 1418600}}, {"model": "metainfo.source", "pk": 14817, "fields": {"orig_filename": "Hauser_Miska_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 219f.", "author": "", "orig_id": 1418601}}, {"model": "metainfo.source", "pk": 14818, "fields": {"orig_filename": "Hauser_Otto_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 220", "author": "", "orig_id": 1418602}}, {"model": "metainfo.source", "pk": 14819, "fields": {"orig_filename": "Hauser_Paul_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 220f.", "author": "", "orig_id": 1418672}}, {"model": "metainfo.source", "pk": 14820, "fields": {"orig_filename": "Hauslab_Franz_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 221", "author": "", "orig_id": 1418673}}, {"model": "metainfo.source", "pk": 14821, "fields": {"orig_filename": "Hauslab_Franz_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 221", "author": "", "orig_id": 1418674}}, {"model": "metainfo.source", "pk": 14822, "fields": {"orig_filename": "Hausleithner_Rudolf_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418675}}, {"model": "metainfo.source", "pk": 14823, "fields": {"orig_filename": "Hausmann_Franz_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418676}}, {"model": "metainfo.source", "pk": 14824, "fields": {"orig_filename": "Hausmann_Friedrich_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1451381}}, {"model": "metainfo.source", "pk": 14825, "fields": {"orig_filename": "Hausmann_Vaclav-Vlastimil_1850_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418677}}, {"model": "metainfo.source", "pk": 14826, "fields": {"orig_filename": "Hausmann_Walter_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418678}}, {"model": "metainfo.source", "pk": 14827, "fields": {"orig_filename": "Hausner_Otto_1827_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222f.", "author": "", "orig_id": 1418679}}, {"model": "metainfo.source", "pk": 14828, "fields": {"orig_filename": "Haussmann_Franziska-Maria-Elisabeth_1818_1853.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2186811}}, {"model": "metainfo.source", "pk": 14829, "fields": {"orig_filename": "Hauswirth_Ernest_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418681}}, {"model": "metainfo.source", "pk": 14830, "fields": {"orig_filename": "Haus_Anton_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216", "author": "", "orig_id": 1418588}}, {"model": "metainfo.source", "pk": 14831, "fields": {"orig_filename": "Hauthaler_Willibald_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418683}}, {"model": "metainfo.source", "pk": 14832, "fields": {"orig_filename": "Havelec_Josef_1816_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418685}}, {"model": "metainfo.source", "pk": 14833, "fields": {"orig_filename": "Havlicek_Hans_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418687}}, {"model": "metainfo.source", "pk": 14834, "fields": {"orig_filename": "Havlicek_Karel_1821_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418688}}, {"model": "metainfo.source", "pk": 14835, "fields": {"orig_filename": "Havlicek_Vinzenz_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418690}}, {"model": "metainfo.source", "pk": 14836, "fields": {"orig_filename": "Havranek_Friedrich_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418691}}, {"model": "metainfo.source", "pk": 14837, "fields": {"orig_filename": "Hawelka_Friedrich_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1418694}}, {"model": "metainfo.source", "pk": 14838, "fields": {"orig_filename": "Haltrich_Josef_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419341}}, {"model": "metainfo.source", "pk": 14839, "fields": {"orig_filename": "Hamber_Edmund_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1457859}}, {"model": "metainfo.source", "pk": 14840, "fields": {"orig_filename": "Hamburger_Julius_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419342}}, {"model": "metainfo.source", "pk": 14841, "fields": {"orig_filename": "Hamburger_Rudolf_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419343}}, {"model": "metainfo.source", "pk": 14842, "fields": {"orig_filename": "Hamerle_Andreas_1837_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163f.", "author": "", "orig_id": 1419344}}, {"model": "metainfo.source", "pk": 14843, "fields": {"orig_filename": "Hamernik_Josef_1810_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419346}}, {"model": "metainfo.source", "pk": 14844, "fields": {"orig_filename": "Hamik_Anton-Josef_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1447869}}, {"model": "metainfo.source", "pk": 14845, "fields": {"orig_filename": "Hammel_Rudolf_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164f.", "author": "", "orig_id": 1419349}}, {"model": "metainfo.source", "pk": 14846, "fields": {"orig_filename": "Hammer-Purgstall_Joseph_1774_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165ff.", "author": "", "orig_id": 1419353}}, {"model": "metainfo.source", "pk": 14847, "fields": {"orig_filename": "Hammerle_Alois-Josef_1820_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419419}}, {"model": "metainfo.source", "pk": 14848, "fields": {"orig_filename": "Hammerling_Rupert_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168ff.", "author": "", "orig_id": 1419420}}, {"model": "metainfo.source", "pk": 14849, "fields": {"orig_filename": "Hammerl_Benedikt_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419417}}, {"model": "metainfo.source", "pk": 14850, "fields": {"orig_filename": "Hammerl_Hermann_1853_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419418}}, {"model": "metainfo.source", "pk": 14851, "fields": {"orig_filename": "Hammerschlag_Albert_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419421}}, {"model": "metainfo.source", "pk": 14852, "fields": {"orig_filename": "Hammerschlag_Peter_1902_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419422}}, {"model": "metainfo.source", "pk": 14853, "fields": {"orig_filename": "Hammerschmidt_Karl-Eduard_1801_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419423}}, {"model": "metainfo.source", "pk": 14854, "fields": {"orig_filename": "Hammerstein-Equord_Hans_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170f.", "author": "", "orig_id": 1419424}}, {"model": "metainfo.source", "pk": 14855, "fields": {"orig_filename": "Hammer_Hans_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419350}}, {"model": "metainfo.source", "pk": 14856, "fields": {"orig_filename": "Hammer_Wilhelm-Arthur_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419352}}, {"model": "metainfo.source", "pk": 14857, "fields": {"orig_filename": "Hammer_Wilhelm_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419351}}, {"model": "metainfo.source", "pk": 14858, "fields": {"orig_filename": "Hamme_Eduard-Voitus_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419348}}, {"model": "metainfo.source", "pk": 14859, "fields": {"orig_filename": "Hamm_Wilhelm-Philipp_1820_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419347}}, {"model": "metainfo.source", "pk": 14860, "fields": {"orig_filename": "Hampel_Franz_1834_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419426}}, {"model": "metainfo.source", "pk": 14861, "fields": {"orig_filename": "Hampel_Hans_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419427}}, {"model": "metainfo.source", "pk": 14862, "fields": {"orig_filename": "Hampel_Josef_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419428}}, {"model": "metainfo.source", "pk": 14863, "fields": {"orig_filename": "Hampel_Sigmund-Walter_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171f.", "author": "", "orig_id": 1419429}}, {"model": "metainfo.source", "pk": 14864, "fields": {"orig_filename": "Hampel_Theodor_1802_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419430}}, {"model": "metainfo.source", "pk": 14865, "fields": {"orig_filename": "Hamperl_Roland_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1420726}}, {"model": "metainfo.source", "pk": 14866, "fields": {"orig_filename": "Hampl-Haupolter_Emma_1897_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419431}}, {"model": "metainfo.source", "pk": 14867, "fields": {"orig_filename": "Hamza_Johann_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419432}}, {"model": "metainfo.source", "pk": 14868, "fields": {"orig_filename": "Hanak_Anton_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172f.", "author": "", "orig_id": 1419433}}, {"model": "metainfo.source", "pk": 14869, "fields": {"orig_filename": "Hanaman_Franjo_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173", "author": "", "orig_id": 1419434}}, {"model": "metainfo.source", "pk": 14870, "fields": {"orig_filename": "Hanausek_Eduard_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173", "author": "", "orig_id": 1419435}}, {"model": "metainfo.source", "pk": 14871, "fields": {"orig_filename": "Hanausek_Gustav_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173f.", "author": "", "orig_id": 1419436}}, {"model": "metainfo.source", "pk": 14872, "fields": {"orig_filename": "Hanausek_Thomas-Franz_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 174", "author": "", "orig_id": 1419437}}, {"model": "metainfo.source", "pk": 14873, "fields": {"orig_filename": "Handel-Mazzetti_Eduard_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175", "author": "", "orig_id": 1419511}}, {"model": "metainfo.source", "pk": 14874, "fields": {"orig_filename": "Handel-Mazzetti_Heinrich_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175f.", "author": "", "orig_id": 1419512}}, {"model": "metainfo.source", "pk": 14875, "fields": {"orig_filename": "Handel-Mazzetti_Viktor_1844_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419513}}, {"model": "metainfo.source", "pk": 14876, "fields": {"orig_filename": "Handel_Erasmus_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 174f.", "author": "", "orig_id": 1419438}}, {"model": "metainfo.source", "pk": 14877, "fields": {"orig_filename": "Handel_Rudolf_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175", "author": "", "orig_id": 1419439}}, {"model": "metainfo.source", "pk": 14878, "fields": {"orig_filename": "Handle_Augustin_1774_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419514}}, {"model": "metainfo.source", "pk": 14879, "fields": {"orig_filename": "Handlirsch_Adam_1864_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419515}}, {"model": "metainfo.source", "pk": 14880, "fields": {"orig_filename": "Handlirsch_Anton_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176f.", "author": "", "orig_id": 1419516}}, {"model": "metainfo.source", "pk": 14881, "fields": {"orig_filename": "Handloss_Karl_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177", "author": "", "orig_id": 1419517}}, {"model": "metainfo.source", "pk": 14882, "fields": {"orig_filename": "Handmann_Ludwig-Paul_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177", "author": "", "orig_id": 1419518}}, {"model": "metainfo.source", "pk": 14883, "fields": {"orig_filename": "Handmann_Rudolf_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177f.", "author": "", "orig_id": 1419519}}, {"model": "metainfo.source", "pk": 14884, "fields": {"orig_filename": "Hanf_Blasius_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178", "author": "", "orig_id": 1419520}}, {"model": "metainfo.source", "pk": 14885, "fields": {"orig_filename": "Hango_Hermann_1861_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178", "author": "", "orig_id": 1419521}}, {"model": "metainfo.source", "pk": 14886, "fields": {"orig_filename": "Hanka_Vaclav_1791_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178f.", "author": "", "orig_id": 1419522}}, {"model": "metainfo.source", "pk": 14887, "fields": {"orig_filename": "Hanke_Viktor_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419523}}, {"model": "metainfo.source", "pk": 14888, "fields": {"orig_filename": "Hannack_Josef_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419527}}, {"model": "metainfo.source", "pk": 14889, "fields": {"orig_filename": "Hannak_Emanuel_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419528}}, {"model": "metainfo.source", "pk": 14890, "fields": {"orig_filename": "Hanni_Lucius_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419529}}, {"model": "metainfo.source", "pk": 14891, "fields": {"orig_filename": "Hann_Franz-Gustav_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419524}}, {"model": "metainfo.source", "pk": 14892, "fields": {"orig_filename": "Hann_Georg_1897_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419525}}, {"model": "metainfo.source", "pk": 14893, "fields": {"orig_filename": "Hann_Julius_1839_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179f.", "author": "", "orig_id": 1419526}}, {"model": "metainfo.source", "pk": 14894, "fields": {"orig_filename": "Hanrieder_Norbert_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419530}}, {"model": "metainfo.source", "pk": 14895, "fields": {"orig_filename": "Hansch_Anton_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419532}}, {"model": "metainfo.source", "pk": 14896, "fields": {"orig_filename": "Hansel_Vincenz_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419533}}, {"model": "metainfo.source", "pk": 14897, "fields": {"orig_filename": "Hansen_Theophil_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419534}}, {"model": "metainfo.source", "pk": 14898, "fields": {"orig_filename": "Hanser_Laurentius_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1419535}}, {"model": "metainfo.source", "pk": 14899, "fields": {"orig_filename": "Hansgirg_Anton_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1419536}}, {"model": "metainfo.source", "pk": 14900, "fields": {"orig_filename": "Hansgirg_Karl-Viktor_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1418213}}, {"model": "metainfo.source", "pk": 14901, "fields": {"orig_filename": "Hanslick_Eduard_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183f.", "author": "", "orig_id": 1418214}}, {"model": "metainfo.source", "pk": 14902, "fields": {"orig_filename": "Hantken-Prudnik_Miksa_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184", "author": "", "orig_id": 1418215}}, {"model": "metainfo.source", "pk": 14903, "fields": {"orig_filename": "Hanusch_Alois_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184", "author": "", "orig_id": 1418216}}, {"model": "metainfo.source", "pk": 14904, "fields": {"orig_filename": "Hanusch_Ferdinand_1866_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184f.", "author": "", "orig_id": 1418217}}, {"model": "metainfo.source", "pk": 14905, "fields": {"orig_filename": "Hanusch_Ignaz-Jan_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 185f.", "author": "", "orig_id": 1418218}}, {"model": "metainfo.source", "pk": 14906, "fields": {"orig_filename": "Harambasic_August_1861_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418220}}, {"model": "metainfo.source", "pk": 14907, "fields": {"orig_filename": "Harasser_Georg_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418221}}, {"model": "metainfo.source", "pk": 14908, "fields": {"orig_filename": "Harasser_Urban_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418222}}, {"model": "metainfo.source", "pk": 14909, "fields": {"orig_filename": "Hardegg_Johann-Anton-Leonhard_1773_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418223}}, {"model": "metainfo.source", "pk": 14910, "fields": {"orig_filename": "Hardegg_Johann-Heinrich_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186f.", "author": "", "orig_id": 1418224}}, {"model": "metainfo.source", "pk": 14911, "fields": {"orig_filename": "Hardter_Andreas_1780_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187", "author": "", "orig_id": 1418225}}, {"model": "metainfo.source", "pk": 14912, "fields": {"orig_filename": "Hardtmuth_Joseph_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187", "author": "", "orig_id": 1418226}}, {"model": "metainfo.source", "pk": 14913, "fields": {"orig_filename": "Hardy_John-George_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188", "author": "", "orig_id": 1418228}}, {"model": "metainfo.source", "pk": 14914, "fields": {"orig_filename": "Hardy_John_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187f.", "author": "", "orig_id": 1418227}}, {"model": "metainfo.source", "pk": 14915, "fields": {"orig_filename": "Haring_Johann_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188f.", "author": "", "orig_id": 1418230}}, {"model": "metainfo.source", "pk": 14916, "fields": {"orig_filename": "Hari_Paul_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188", "author": "", "orig_id": 1418229}}, {"model": "metainfo.source", "pk": 14917, "fields": {"orig_filename": "Harlfinger_Richard_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418232}}, {"model": "metainfo.source", "pk": 14918, "fields": {"orig_filename": "Harl_Johann-Paul_1772_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418231}}, {"model": "metainfo.source", "pk": 14919, "fields": {"orig_filename": "Harmati_Sandor_1892_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418233}}, {"model": "metainfo.source", "pk": 14920, "fields": {"orig_filename": "Harmer_Leopold_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189f.", "author": "", "orig_id": 1418234}}, {"model": "metainfo.source", "pk": 14921, "fields": {"orig_filename": "Harnisch_Johann-Baptist_1777_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418235}}, {"model": "metainfo.source", "pk": 14922, "fields": {"orig_filename": "Harpf_Adolf_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418236}}, {"model": "metainfo.source", "pk": 14923, "fields": {"orig_filename": "Harpf_August_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418304}}, {"model": "metainfo.source", "pk": 14924, "fields": {"orig_filename": "Harpner_Gustav_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418305}}, {"model": "metainfo.source", "pk": 14925, "fields": {"orig_filename": "Harrach_Johann-Nepomuk_1828_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190f.", "author": "", "orig_id": 1418306}}, {"model": "metainfo.source", "pk": 14926, "fields": {"orig_filename": "Harrach_Karl-Borr_1761_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191", "author": "", "orig_id": 1418307}}, {"model": "metainfo.source", "pk": 14927, "fields": {"orig_filename": "Harras-Harrasowsky_Philipp_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191", "author": "", "orig_id": 1418308}}, {"model": "metainfo.source", "pk": 14928, "fields": {"orig_filename": "Harrer_Ignaz_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191f.", "author": "", "orig_id": 1418309}}, {"model": "metainfo.source", "pk": 14929, "fields": {"orig_filename": "Hartauer_Andreas_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418310}}, {"model": "metainfo.source", "pk": 14930, "fields": {"orig_filename": "Hartel_Wilhelm_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418311}}, {"model": "metainfo.source", "pk": 14931, "fields": {"orig_filename": "Hartenthal_Mathilde_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418312}}, {"model": "metainfo.source", "pk": 14932, "fields": {"orig_filename": "Hartig_Franz_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193", "author": "", "orig_id": 1418313}}, {"model": "metainfo.source", "pk": 14933, "fields": {"orig_filename": "Hartinger_Anton_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193", "author": "", "orig_id": 1418314}}, {"model": "metainfo.source", "pk": 14934, "fields": {"orig_filename": "Hartlieb-Wallthor_Karl-Vinzenz_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194f.", "author": "", "orig_id": 1418319}}, {"model": "metainfo.source", "pk": 14935, "fields": {"orig_filename": "Hartl_Hans_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193f.", "author": "", "orig_id": 1418315}}, {"model": "metainfo.source", "pk": 14936, "fields": {"orig_filename": "Hartl_Heinrich_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418316}}, {"model": "metainfo.source", "pk": 14937, "fields": {"orig_filename": "Hartl_Vinzenz_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418317}}, {"model": "metainfo.source", "pk": 14938, "fields": {"orig_filename": "Hartl_Wenzel_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418318}}, {"model": "metainfo.source", "pk": 14939, "fields": {"orig_filename": "Hartmann-Franzenshuld_Ernst_1840_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418328}}, {"model": "metainfo.source", "pk": 14940, "fields": {"orig_filename": "Hartmann-Franzenshuld_Johann_1764_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418391}}, {"model": "metainfo.source", "pk": 14941, "fields": {"orig_filename": "Hartmann_Ernst_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418320}}, {"model": "metainfo.source", "pk": 14942, "fields": {"orig_filename": "Hadzic_Osman-Nuri_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418927}}, {"model": "metainfo.source", "pk": 14943, "fields": {"orig_filename": "Haeckel_Anton__.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418929}}, {"model": "metainfo.source", "pk": 14944, "fields": {"orig_filename": "Haecker_Ludwig-Friedrich_1822_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418930}}, {"model": "metainfo.source", "pk": 14945, "fields": {"orig_filename": "Haefele_Engelhard_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418931}}, {"model": "metainfo.source", "pk": 14946, "fields": {"orig_filename": "Haehnel_Amalie_1806_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418932}}, {"model": "metainfo.source", "pk": 14947, "fields": {"orig_filename": "Haemmerle_Baptist_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418933}}, {"model": "metainfo.source", "pk": 14948, "fields": {"orig_filename": "Haemmerle_Casimir_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418934}}, {"model": "metainfo.source", "pk": 14949, "fields": {"orig_filename": "Haemmerle_Franz-Martin_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135f.", "author": "", "orig_id": 1418935}}, {"model": "metainfo.source", "pk": 14950, "fields": {"orig_filename": "Haemmerle_Martin_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418936}}, {"model": "metainfo.source", "pk": 14951, "fields": {"orig_filename": "Haemmerle_Otto_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418937}}, {"model": "metainfo.source", "pk": 14952, "fields": {"orig_filename": "Haemmerle_Theodor_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418938}}, {"model": "metainfo.source", "pk": 14953, "fields": {"orig_filename": "Haemmerle_Victor_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136f.", "author": "", "orig_id": 1419005}}, {"model": "metainfo.source", "pk": 14954, "fields": {"orig_filename": "Haenisch_Aloys_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 137", "author": "", "orig_id": 1419006}}, {"model": "metainfo.source", "pk": 14955, "fields": {"orig_filename": "Haenke_Thaddaeus-Peregrinus_1761_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 137f.", "author": "", "orig_id": 1419007}}, {"model": "metainfo.source", "pk": 14956, "fields": {"orig_filename": "Haensel_Peter_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419008}}, {"model": "metainfo.source", "pk": 14957, "fields": {"orig_filename": "Haerdtl_Eduard_1861_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419009}}, {"model": "metainfo.source", "pk": 14958, "fields": {"orig_filename": "Haerdtl_Guido_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419010}}, {"model": "metainfo.source", "pk": 14959, "fields": {"orig_filename": "Haerdtl_Hugo_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138f.", "author": "", "orig_id": 1419011}}, {"model": "metainfo.source", "pk": 14960, "fields": {"orig_filename": "Haerdtl_Josef_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419012}}, {"model": "metainfo.source", "pk": 14961, "fields": {"orig_filename": "Haerdtl_Karl_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419013}}, {"model": "metainfo.source", "pk": 14962, "fields": {"orig_filename": "Haettenschwiller_Joseph_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419014}}, {"model": "metainfo.source", "pk": 14963, "fields": {"orig_filename": "Haeusle_Johann-Michael_1809_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419015}}, {"model": "metainfo.source", "pk": 14964, "fields": {"orig_filename": "Haeusle_Joseph_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139f.", "author": "", "orig_id": 1419016}}, {"model": "metainfo.source", "pk": 14965, "fields": {"orig_filename": "Haeussermann_Reinhold_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140", "author": "", "orig_id": 1419017}}, {"model": "metainfo.source", "pk": 14966, "fields": {"orig_filename": "Hafferl_Franz-Anton_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140", "author": "", "orig_id": 1419019}}, {"model": "metainfo.source", "pk": 14967, "fields": {"orig_filename": "Hafferl_Josef-Heinrich_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140f.", "author": "", "orig_id": 1419020}}, {"model": "metainfo.source", "pk": 14968, "fields": {"orig_filename": "Haffner_August-Otto-Wilhelm_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141", "author": "", "orig_id": 1419021}}, {"model": "metainfo.source", "pk": 14969, "fields": {"orig_filename": "Haffner_Karl_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141", "author": "", "orig_id": 1419023}}, {"model": "metainfo.source", "pk": 14970, "fields": {"orig_filename": "Hafner_Josef_1799_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141f.", "author": "", "orig_id": 1419024}}, {"model": "metainfo.source", "pk": 14971, "fields": {"orig_filename": "Hafner_Josef_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142", "author": "", "orig_id": 1419025}}, {"model": "metainfo.source", "pk": 14972, "fields": {"orig_filename": "Hafner_Karl_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142", "author": "", "orig_id": 1419026}}, {"model": "metainfo.source", "pk": 14973, "fields": {"orig_filename": "Hafner_Karl_1905_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142f.", "author": "", "orig_id": 1419027}}, {"model": "metainfo.source", "pk": 14974, "fields": {"orig_filename": "Hagenauer_Arnold_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419094}}, {"model": "metainfo.source", "pk": 14975, "fields": {"orig_filename": "Hagenhofer_Franz_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419095}}, {"model": "metainfo.source", "pk": 14976, "fields": {"orig_filename": "Hagen_Johann-Georg_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419028}}, {"model": "metainfo.source", "pk": 14977, "fields": {"orig_filename": "Hagen_Kaspar_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419090}}, {"model": "metainfo.source", "pk": 14978, "fields": {"orig_filename": "Hagen_Ludwig_1824_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419091}}, {"model": "metainfo.source", "pk": 14979, "fields": {"orig_filename": "Hagen_Martin_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143f.", "author": "", "orig_id": 1419092}}, {"model": "metainfo.source", "pk": 14980, "fields": {"orig_filename": "Hagen_Theodor_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419093}}, {"model": "metainfo.source", "pk": 14981, "fields": {"orig_filename": "Hager-Allentsteig_Franz_1750_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145", "author": "", "orig_id": 1419101}}, {"model": "metainfo.source", "pk": 14982, "fields": {"orig_filename": "Hager_Edmund_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144f.", "author": "", "orig_id": 1419098}}, {"model": "metainfo.source", "pk": 14983, "fields": {"orig_filename": "Hager_Evermod_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145", "author": "", "orig_id": 1419099}}, {"model": "metainfo.source", "pk": 14984, "fields": {"orig_filename": "Hagin_Heinrich_1875_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145f.", "author": "", "orig_id": 1419102}}, {"model": "metainfo.source", "pk": 14985, "fields": {"orig_filename": "Hagleitner_Kaspar-Benedikt_1779_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 146", "author": "", "orig_id": 1419103}}, {"model": "metainfo.source", "pk": 14986, "fields": {"orig_filename": "Hagn_Theoderich_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 146", "author": "", "orig_id": 1419104}}, {"model": "metainfo.source", "pk": 14987, "fields": {"orig_filename": "Hahnekamp_Georg_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419108}}, {"model": "metainfo.source", "pk": 14988, "fields": {"orig_filename": "Hahn_Hans_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419105}}, {"model": "metainfo.source", "pk": 14989, "fields": {"orig_filename": "Hahn_Johann-Georg_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419106}}, {"model": "metainfo.source", "pk": 14990, "fields": {"orig_filename": "Haibel_Jakob_1762_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147f.", "author": "", "orig_id": 1419109}}, {"model": "metainfo.source", "pk": 14991, "fields": {"orig_filename": "Haibel_Sophie_1767_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419110}}, {"model": "metainfo.source", "pk": 14992, "fields": {"orig_filename": "Haidacher_Sebastian_1866_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149", "author": "", "orig_id": 1419171}}, {"model": "metainfo.source", "pk": 14993, "fields": {"orig_filename": "Haidegger_Wendelin_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149", "author": "", "orig_id": 1419172}}, {"model": "metainfo.source", "pk": 14994, "fields": {"orig_filename": "Haider_Franz_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149f.", "author": "", "orig_id": 1419173}}, {"model": "metainfo.source", "pk": 14995, "fields": {"orig_filename": "Haidinger_Wilhelm_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419174}}, {"model": "metainfo.source", "pk": 14996, "fields": {"orig_filename": "Haid_Franz_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419168}}, {"model": "metainfo.source", "pk": 14997, "fields": {"orig_filename": "Haid_Josef-Anton_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419169}}, {"model": "metainfo.source", "pk": 14998, "fields": {"orig_filename": "Haid_Kassian_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148f.", "author": "", "orig_id": 1419170}}, {"model": "metainfo.source", "pk": 14999, "fields": {"orig_filename": "Haimann_Giuseppe_1828_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419175}}, {"model": "metainfo.source", "pk": 15000, "fields": {"orig_filename": "Haimberger_Anton_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419176}}, {"model": "metainfo.source", "pk": 15001, "fields": {"orig_filename": "Haimerl_Franz-Xaver_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150f.", "author": "", "orig_id": 1419177}}, {"model": "metainfo.source", "pk": 15002, "fields": {"orig_filename": "Haindl_Anton-Franz_1803_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151", "author": "", "orig_id": 1419179}}, {"model": "metainfo.source", "pk": 15003, "fields": {"orig_filename": "Hainisch_Anton_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151f.", "author": "", "orig_id": 1419181}}, {"model": "metainfo.source", "pk": 15004, "fields": {"orig_filename": "Hainisch_Marianne_1839_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 152", "author": "", "orig_id": 1419182}}, {"model": "metainfo.source", "pk": 15005, "fields": {"orig_filename": "Hainisch_Michael_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 152f.", "author": "", "orig_id": 1419183}}, {"model": "metainfo.source", "pk": 15006, "fields": {"orig_filename": "Hainmueller_Otto_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 153", "author": "", "orig_id": 1419184}}, {"model": "metainfo.source", "pk": 15007, "fields": {"orig_filename": "Hain_Joseph_1809_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151", "author": "", "orig_id": 1419178}}, {"model": "metainfo.source", "pk": 15008, "fields": {"orig_filename": "Haiszler_Georg_1761_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 153", "author": "", "orig_id": 1419185}}, {"model": "metainfo.source", "pk": 15009, "fields": {"orig_filename": "Haitinger_Ludwig-Camillo_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 154", "author": "", "orig_id": 1419186}}, {"model": "metainfo.source", "pk": 15010, "fields": {"orig_filename": "Haitinger_Max_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 154f.", "author": "", "orig_id": 1419187}}, {"model": "metainfo.source", "pk": 15011, "fields": {"orig_filename": "Haizinger_Amalie_1800_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419188}}, {"model": "metainfo.source", "pk": 15012, "fields": {"orig_filename": "Haizinger_Anton_1796_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419189}}, {"model": "metainfo.source", "pk": 15013, "fields": {"orig_filename": "Hajdrih_Anton_1842_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419190}}, {"model": "metainfo.source", "pk": 15014, "fields": {"orig_filename": "Hajek_Markusz_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419191}}, {"model": "metainfo.source", "pk": 15015, "fields": {"orig_filename": "Hajek_Salomon_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155f.", "author": "", "orig_id": 1419192}}, {"model": "metainfo.source", "pk": 15016, "fields": {"orig_filename": "Hajnik_Emerich_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419247}}, {"model": "metainfo.source", "pk": 15017, "fields": {"orig_filename": "Hajnis_Frantisek_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419248}}, {"model": "metainfo.source", "pk": 15018, "fields": {"orig_filename": "Hakman_Eugen_1794_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419249}}, {"model": "metainfo.source", "pk": 15019, "fields": {"orig_filename": "Halacsy_Eugen_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419250}}, {"model": "metainfo.source", "pk": 15020, "fields": {"orig_filename": "Halasz_Emerich_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156f.", "author": "", "orig_id": 1419251}}, {"model": "metainfo.source", "pk": 15021, "fields": {"orig_filename": "Halauska_Ludwig_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157", "author": "", "orig_id": 1419252}}, {"model": "metainfo.source", "pk": 15022, "fields": {"orig_filename": "Halban_Alfred_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157", "author": "", "orig_id": 1419253}}, {"model": "metainfo.source", "pk": 15023, "fields": {"orig_filename": "Halban_Josef_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419255}}, {"model": "metainfo.source", "pk": 15024, "fields": {"orig_filename": "Halban_Leo_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419256}}, {"model": "metainfo.source", "pk": 15025, "fields": {"orig_filename": "Halberstam_Sophie_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419258}}, {"model": "metainfo.source", "pk": 15026, "fields": {"orig_filename": "Halbherr_Bernardino_1844_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158f.", "author": "", "orig_id": 1419259}}, {"model": "metainfo.source", "pk": 15027, "fields": {"orig_filename": "Halbherr_Federico_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419263}}, {"model": "metainfo.source", "pk": 15028, "fields": {"orig_filename": "Halbhuber-Festwill_Anton_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419264}}, {"model": "metainfo.source", "pk": 15029, "fields": {"orig_filename": "Halbig_Andreas_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419265}}, {"model": "metainfo.source", "pk": 15030, "fields": {"orig_filename": "Halek_Vitezlav_1835_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159f.", "author": "", "orig_id": 1419266}}, {"model": "metainfo.source", "pk": 15031, "fields": {"orig_filename": "Halirsch_Friedrich-Ludwig_1802_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419268}}, {"model": "metainfo.source", "pk": 15032, "fields": {"orig_filename": "Halir_Karl_1859_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419267}}, {"model": "metainfo.source", "pk": 15033, "fields": {"orig_filename": "Hallaschka_Cassian_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419270}}, {"model": "metainfo.source", "pk": 15034, "fields": {"orig_filename": "Halla_Joseph_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419269}}, {"model": "metainfo.source", "pk": 15035, "fields": {"orig_filename": "Hallenstein_Konrad-Adolf_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419272}}, {"model": "metainfo.source", "pk": 15036, "fields": {"orig_filename": "Haller-Hallenburg_Cezar_1822_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419331}}, {"model": "metainfo.source", "pk": 15037, "fields": {"orig_filename": "Haller_Franz_1796_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419329}}, {"model": "metainfo.source", "pk": 15038, "fields": {"orig_filename": "Haller_Johann-Ev_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419330}}, {"model": "metainfo.source", "pk": 15039, "fields": {"orig_filename": "Hallmayer_Viktorin_1831_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419332}}, {"model": "metainfo.source", "pk": 15040, "fields": {"orig_filename": "Hallwich_Hermann_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161f.", "author": "", "orig_id": 1419333}}, {"model": "metainfo.source", "pk": 15041, "fields": {"orig_filename": "Halm_Anton_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162", "author": "", "orig_id": 1419334}}, {"model": "metainfo.source", "pk": 15042, "fields": {"orig_filename": "Halter_Josef_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162", "author": "", "orig_id": 1419338}}, {"model": "metainfo.source", "pk": 15043, "fields": {"orig_filename": "Halter_Rudolf_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162f.", "author": "", "orig_id": 1419339}}, {"model": "metainfo.source", "pk": 15044, "fields": {"orig_filename": "Haltmeyer_Georg_1803_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419340}}, {"model": "metainfo.source", "pk": 15045, "fields": {"orig_filename": "Gura_Eugen_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418481}}, {"model": "metainfo.source", "pk": 15046, "fields": {"orig_filename": "Guritzer_Johann_1897_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1448064}}, {"model": "metainfo.source", "pk": 15047, "fields": {"orig_filename": "Gurk_Eduard_1801_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108f.", "author": "", "orig_id": 1418553}}, {"model": "metainfo.source", "pk": 15048, "fields": {"orig_filename": "Gurlitt_Ludwig_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418554}}, {"model": "metainfo.source", "pk": 15049, "fields": {"orig_filename": "Gurlitt_Wilhelm_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418555}}, {"model": "metainfo.source", "pk": 15050, "fields": {"orig_filename": "Gurschner_Alice_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418556}}, {"model": "metainfo.source", "pk": 15051, "fields": {"orig_filename": "Gurschner_Emil_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418557}}, {"model": "metainfo.source", "pk": 15052, "fields": {"orig_filename": "Guschelbauer_Edmund_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109f.", "author": "", "orig_id": 1418558}}, {"model": "metainfo.source", "pk": 15053, "fields": {"orig_filename": "Guseck-Glankirchen_Oskar_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110", "author": "", "orig_id": 1418559}}, {"model": "metainfo.source", "pk": 15054, "fields": {"orig_filename": "Gussenbauer_Karl_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110", "author": "", "orig_id": 1418560}}, {"model": "metainfo.source", "pk": 15055, "fields": {"orig_filename": "Gustermann_Anton-Wilhelm_1750_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110f.", "author": "", "orig_id": 1418561}}, {"model": "metainfo.source", "pk": 15056, "fields": {"orig_filename": "Guth-Jarkovsky_Jiri-Stanislav_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418562}}, {"model": "metainfo.source", "pk": 15057, "fields": {"orig_filename": "Gutheil-Schoder_Marie_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418563}}, {"model": "metainfo.source", "pk": 15058, "fields": {"orig_filename": "Gutjahr_Franz-Seraph_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418564}}, {"model": "metainfo.source", "pk": 15059, "fields": {"orig_filename": "Gutmann_Max_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111f.", "author": "", "orig_id": 1418565}}, {"model": "metainfo.source", "pk": 15060, "fields": {"orig_filename": "Gutmann_Wilhelm_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418566}}, {"model": "metainfo.source", "pk": 15061, "fields": {"orig_filename": "Guttenberg_Adolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418567}}, {"model": "metainfo.source", "pk": 15062, "fields": {"orig_filename": "Guttenberg_Emil_1841_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418568}}, {"model": "metainfo.source", "pk": 15063, "fields": {"orig_filename": "Guttmann_Leopoldine_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112f.", "author": "", "orig_id": 1418569}}, {"model": "metainfo.source", "pk": 15064, "fields": {"orig_filename": "Guttmann_Oskar_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418570}}, {"model": "metainfo.source", "pk": 15065, "fields": {"orig_filename": "Gutwinski_Roman_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418571}}, {"model": "metainfo.source", "pk": 15066, "fields": {"orig_filename": "Guzman_Albert_1841_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418572}}, {"model": "metainfo.source", "pk": 15067, "fields": {"orig_filename": "Gwercher_Hans_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418573}}, {"model": "metainfo.source", "pk": 15068, "fields": {"orig_filename": "Gwinner_Robert_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418574}}, {"model": "metainfo.source", "pk": 15069, "fields": {"orig_filename": "Gyarmathi_Samuel_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418575}}, {"model": "metainfo.source", "pk": 15070, "fields": {"orig_filename": "Gyoery-Nadudvar_Arpad_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113f.", "author": "", "orig_id": 1418576}}, {"model": "metainfo.source", "pk": 15071, "fields": {"orig_filename": "Gyrowetz_Adalbert_1763_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114", "author": "", "orig_id": 1418647}}, {"model": "metainfo.source", "pk": 15072, "fields": {"orig_filename": "Gyulai-Maros-Nemeth-Nadaska_Franz_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114f.", "author": "", "orig_id": 1418649}}, {"model": "metainfo.source", "pk": 15073, "fields": {"orig_filename": "Gyulai-Maros-Nemeth-Nadaska_Ignaz_1765_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418650}}, {"model": "metainfo.source", "pk": 15074, "fields": {"orig_filename": "Gyulai_Paul_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114", "author": "", "orig_id": 1418648}}, {"model": "metainfo.source", "pk": 15075, "fields": {"orig_filename": "Haader_Hermine_1885_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418651}}, {"model": "metainfo.source", "pk": 15076, "fields": {"orig_filename": "Haagn_Julius_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418653}}, {"model": "metainfo.source", "pk": 15077, "fields": {"orig_filename": "Haag_Joseph_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418652}}, {"model": "metainfo.source", "pk": 15078, "fields": {"orig_filename": "Haanen_Cecil_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418656}}, {"model": "metainfo.source", "pk": 15079, "fields": {"orig_filename": "Haanen_Remi_1812_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418657}}, {"model": "metainfo.source", "pk": 15080, "fields": {"orig_filename": "Haan_Friedrich_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115f.", "author": "", "orig_id": 1418654}}, {"model": "metainfo.source", "pk": 15081, "fields": {"orig_filename": "Haan_Mathias-Wilhelm_1737_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418655}}, {"model": "metainfo.source", "pk": 15082, "fields": {"orig_filename": "Haardt-Hartenthurn_Vinzenz_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116f.", "author": "", "orig_id": 1418658}}, {"model": "metainfo.source", "pk": 15083, "fields": {"orig_filename": "Haas-Teppichen_Eduard_1827_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418669}}, {"model": "metainfo.source", "pk": 15084, "fields": {"orig_filename": "Haase_Adolf-Theodor_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418670}}, {"model": "metainfo.source", "pk": 15085, "fields": {"orig_filename": "Haase_Josef-Ludwig_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418671}}, {"model": "metainfo.source", "pk": 15086, "fields": {"orig_filename": "Haase_Ludwig_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120f.", "author": "", "orig_id": 1418740}}, {"model": "metainfo.source", "pk": 15087, "fields": {"orig_filename": "Haase_Theodor-Karl_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 121", "author": "", "orig_id": 1418741}}, {"model": "metainfo.source", "pk": 15088, "fields": {"orig_filename": "Haase_Wolfgang_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 121f.", "author": "", "orig_id": 1418742}}, {"model": "metainfo.source", "pk": 15089, "fields": {"orig_filename": "Haas_Alois_1805_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117", "author": "", "orig_id": 1418659}}, {"model": "metainfo.source", "pk": 15090, "fields": {"orig_filename": "Haas_Arthur-Erich_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117", "author": "", "orig_id": 1418660}}, {"model": "metainfo.source", "pk": 15091, "fields": {"orig_filename": "Haas_Georg-Emanuel_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117f.", "author": "", "orig_id": 1418661}}, {"model": "metainfo.source", "pk": 15092, "fields": {"orig_filename": "Haas_Hermann_1846_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418662}}, {"model": "metainfo.source", "pk": 15093, "fields": {"orig_filename": "Haas_Karl_1825_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418663}}, {"model": "metainfo.source", "pk": 15094, "fields": {"orig_filename": "Haas_Michael_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418664}}, {"model": "metainfo.source", "pk": 15095, "fields": {"orig_filename": "Haas_Paul_1899_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118f.", "author": "", "orig_id": 1418665}}, {"model": "metainfo.source", "pk": 15096, "fields": {"orig_filename": "Haas_Philipp_1791_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 119", "author": "", "orig_id": 1418666}}, {"model": "metainfo.source", "pk": 15097, "fields": {"orig_filename": "Haas_Rudolf_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 119", "author": "", "orig_id": 1418667}}, {"model": "metainfo.source", "pk": 15098, "fields": {"orig_filename": "Haas_Rudolf_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418668}}, {"model": "metainfo.source", "pk": 15099, "fields": {"orig_filename": "Habart_Johann_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418744}}, {"model": "metainfo.source", "pk": 15100, "fields": {"orig_filename": "Habel-Malinski_Eduard_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418745}}, {"model": "metainfo.source", "pk": 15101, "fields": {"orig_filename": "Haber-Linsberg_Louis_1804_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418746}}, {"model": "metainfo.source", "pk": 15102, "fields": {"orig_filename": "Haberda_Albin_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122f.", "author": "", "orig_id": 1418747}}, {"model": "metainfo.source", "pk": 15103, "fields": {"orig_filename": "Haberditzl_Franz-Martin_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418748}}, {"model": "metainfo.source", "pk": 15104, "fields": {"orig_filename": "Haberer-Kremshohenstein_Theodor_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418750}}, {"model": "metainfo.source", "pk": 15105, "fields": {"orig_filename": "Haberer_Ludwig_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418749}}, {"model": "metainfo.source", "pk": 15106, "fields": {"orig_filename": "Haberlandt_Edith_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124", "author": "", "orig_id": 1418752}}, {"model": "metainfo.source", "pk": 15107, "fields": {"orig_filename": "Haberlandt_Friedrich_1826_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124", "author": "", "orig_id": 1418753}}, {"model": "metainfo.source", "pk": 15108, "fields": {"orig_filename": "Haberlandt_Gottlieb_1854_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124f.", "author": "", "orig_id": 1418754}}, {"model": "metainfo.source", "pk": 15109, "fields": {"orig_filename": "Haberlandt_Herbert-Eduard_1904_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2005234}}, {"model": "metainfo.source", "pk": 15110, "fields": {"orig_filename": "Haberlandt_Ludwig_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125", "author": "", "orig_id": 1418755}}, {"model": "metainfo.source", "pk": 15111, "fields": {"orig_filename": "Haberlandt_Michael_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125", "author": "", "orig_id": 1418756}}, {"model": "metainfo.source", "pk": 15112, "fields": {"orig_filename": "Haberler_Franz_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418758}}, {"model": "metainfo.source", "pk": 15113, "fields": {"orig_filename": "Haberle_Karl-Konstantin_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125f.", "author": "", "orig_id": 1418757}}, {"model": "metainfo.source", "pk": 15114, "fields": {"orig_filename": "Haberl_Gotthard-Johannes_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123f.", "author": "", "orig_id": 1418751}}, {"model": "metainfo.source", "pk": 15115, "fields": {"orig_filename": "Habermann_Franz_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2005581}}, {"model": "metainfo.source", "pk": 15116, "fields": {"orig_filename": "Habermann_Johann-Ev_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418759}}, {"model": "metainfo.source", "pk": 15117, "fields": {"orig_filename": "Habermann_Josef_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418760}}, {"model": "metainfo.source", "pk": 15118, "fields": {"orig_filename": "Habermann_Peter_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126f.", "author": "", "orig_id": 1418761}}, {"model": "metainfo.source", "pk": 15119, "fields": {"orig_filename": "Habermayer_Christoph_1768_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418762}}, {"model": "metainfo.source", "pk": 15120, "fields": {"orig_filename": "Habert_Johann-Ev_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418825}}, {"model": "metainfo.source", "pk": 15121, "fields": {"orig_filename": "Haberzettl_Erna_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145075}}, {"model": "metainfo.source", "pk": 15122, "fields": {"orig_filename": "Habe_Hans_1911_1977.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443985}}, {"model": "metainfo.source", "pk": 15123, "fields": {"orig_filename": "Habich_Otto_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418826}}, {"model": "metainfo.source", "pk": 15124, "fields": {"orig_filename": "Habietinek_Karl_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418827}}, {"model": "metainfo.source", "pk": 15125, "fields": {"orig_filename": "Hablawetz_August-Egon_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127f.", "author": "", "orig_id": 1418828}}, {"model": "metainfo.source", "pk": 15126, "fields": {"orig_filename": "Haboeck_Franz_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418829}}, {"model": "metainfo.source", "pk": 15127, "fields": {"orig_filename": "Habrda_Johann_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418830}}, {"model": "metainfo.source", "pk": 15128, "fields": {"orig_filename": "Habrmann_Gustav_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418831}}, {"model": "metainfo.source", "pk": 15129, "fields": {"orig_filename": "Habtmann_Georg-Johann_1784_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418832}}, {"model": "metainfo.source", "pk": 15130, "fields": {"orig_filename": "Hackelberg-Landau_Karl_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130", "author": "", "orig_id": 1418838}}, {"model": "metainfo.source", "pk": 15131, "fields": {"orig_filename": "Hackel_Anton_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129f.", "author": "", "orig_id": 1418836}}, {"model": "metainfo.source", "pk": 15132, "fields": {"orig_filename": "Hackel_Eduard_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130", "author": "", "orig_id": 1418837}}, {"model": "metainfo.source", "pk": 15133, "fields": {"orig_filename": "Hacker_Aemilius_1870_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130f.", "author": "", "orig_id": 1418839}}, {"model": "metainfo.source", "pk": 15134, "fields": {"orig_filename": "Hacker_Benedikt_1769_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 131", "author": "", "orig_id": 1418915}}, {"model": "metainfo.source", "pk": 15135, "fields": {"orig_filename": "Hacker_Viktor_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 131f.", "author": "", "orig_id": 1418916}}, {"model": "metainfo.source", "pk": 15136, "fields": {"orig_filename": "Hackher-Hart_Franz-Xaver_1764_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418917}}, {"model": "metainfo.source", "pk": 15137, "fields": {"orig_filename": "Hackhofer_Josef_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418918}}, {"model": "metainfo.source", "pk": 15138, "fields": {"orig_filename": "Hacksteiner_Johann_1770_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418919}}, {"model": "metainfo.source", "pk": 15139, "fields": {"orig_filename": "Hackstock_Karl_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418920}}, {"model": "metainfo.source", "pk": 15140, "fields": {"orig_filename": "Hack_Josefine_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129", "author": "", "orig_id": 1418835}}, {"model": "metainfo.source", "pk": 15141, "fields": {"orig_filename": "Hack_Josef_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129", "author": "", "orig_id": 1418834}}, {"model": "metainfo.source", "pk": 15142, "fields": {"orig_filename": "Hacquet-Motte_Belsazar_1739_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132f.", "author": "", "orig_id": 1418921}}, {"model": "metainfo.source", "pk": 15143, "fields": {"orig_filename": "Hac_Rudolf_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128f.", "author": "", "orig_id": 1418833}}, {"model": "metainfo.source", "pk": 15144, "fields": {"orig_filename": "Hadaczek_Karl_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133", "author": "", "orig_id": 1418922}}, {"model": "metainfo.source", "pk": 15145, "fields": {"orig_filename": "Haderlap_Lipe_1849_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133", "author": "", "orig_id": 1418923}}, {"model": "metainfo.source", "pk": 15146, "fields": {"orig_filename": "Hadik-Futak_Johann_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133f.", "author": "", "orig_id": 1418924}}, {"model": "metainfo.source", "pk": 15147, "fields": {"orig_filename": "Hadwiger_Alois_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418925}}, {"model": "metainfo.source", "pk": 15148, "fields": {"orig_filename": "Hadwiger_Viktor_1878_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418926}}, {"model": "metainfo.source", "pk": 15149, "fields": {"orig_filename": "Gruden_Josip-Valentin_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419493}}, {"model": "metainfo.source", "pk": 15150, "fields": {"orig_filename": "Grueber_Paul_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419494}}, {"model": "metainfo.source", "pk": 15151, "fields": {"orig_filename": "Gruebl_Raimund_1847_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419495}}, {"model": "metainfo.source", "pk": 15152, "fields": {"orig_filename": "Gruenbaum_Caroline_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419501}}, {"model": "metainfo.source", "pk": 15153, "fields": {"orig_filename": "Gruenbaum_Fritz_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419502}}, {"model": "metainfo.source", "pk": 15154, "fields": {"orig_filename": "Gruenbaum_Johann-Christoph_1785_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419503}}, {"model": "metainfo.source", "pk": 15155, "fields": {"orig_filename": "Gruenbaum_Lorenz_1791_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419504}}, {"model": "metainfo.source", "pk": 15156, "fields": {"orig_filename": "Gruenbeck_Heinrich_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419506}}, {"model": "metainfo.source", "pk": 15157, "fields": {"orig_filename": "Gruenberger_Alfred_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88f.", "author": "", "orig_id": 1419509}}, {"model": "metainfo.source", "pk": 15158, "fields": {"orig_filename": "Gruenberg_Johanna_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88", "author": "", "orig_id": 1419507}}, {"model": "metainfo.source", "pk": 15159, "fields": {"orig_filename": "Gruenberg_Karl_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88", "author": "", "orig_id": 1419508}}, {"model": "metainfo.source", "pk": 15160, "fields": {"orig_filename": "Gruendorf_Karl_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1419510}}, {"model": "metainfo.source", "pk": 15161, "fields": {"orig_filename": "Gruenert_Max_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418194}}, {"model": "metainfo.source", "pk": 15162, "fields": {"orig_filename": "Gruener_Joseph-Sebastian_1780_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418192}}, {"model": "metainfo.source", "pk": 15163, "fields": {"orig_filename": "Gruener_Karl-Franz_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418193}}, {"model": "metainfo.source", "pk": 15164, "fields": {"orig_filename": "Gruenewald_Alfred_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418195}}, {"model": "metainfo.source", "pk": 15165, "fields": {"orig_filename": "Gruenfeld_Alfred_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418196}}, {"model": "metainfo.source", "pk": 15166, "fields": {"orig_filename": "Gruenfeld_Heinrich_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418197}}, {"model": "metainfo.source", "pk": 15167, "fields": {"orig_filename": "Gruenfeld_Josef_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418198}}, {"model": "metainfo.source", "pk": 15168, "fields": {"orig_filename": "Gruenfeld_Paul-Stefan_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418199}}, {"model": "metainfo.source", "pk": 15169, "fields": {"orig_filename": "Gruenfeld_Sophie_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418200}}, {"model": "metainfo.source", "pk": 15170, "fields": {"orig_filename": "Gruenhut_Karl-Samuel_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90f.", "author": "", "orig_id": 1418201}}, {"model": "metainfo.source", "pk": 15171, "fields": {"orig_filename": "Grueninger_Franz-Xaver_1790_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418202}}, {"model": "metainfo.source", "pk": 15172, "fields": {"orig_filename": "Gruenne_Karl_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418203}}, {"model": "metainfo.source", "pk": 15173, "fields": {"orig_filename": "Gruenne_Philipp-Ferdinand_1762_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418204}}, {"model": "metainfo.source", "pk": 15174, "fields": {"orig_filename": "Gruenwald-Zerkovitz_Sidonie_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92f.", "author": "", "orig_id": 1418209}}, {"model": "metainfo.source", "pk": 15175, "fields": {"orig_filename": "Gruenwald_Anton-Adalbert_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418205}}, {"model": "metainfo.source", "pk": 15176, "fields": {"orig_filename": "Gruenwald_Anton-Karl_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418206}}, {"model": "metainfo.source", "pk": 15177, "fields": {"orig_filename": "Gruenwald_Bela_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418207}}, {"model": "metainfo.source", "pk": 15178, "fields": {"orig_filename": "Gruenwald_Josef_1876_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418208}}, {"model": "metainfo.source", "pk": 15179, "fields": {"orig_filename": "Gruen_Adolf_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419496}}, {"model": "metainfo.source", "pk": 15180, "fields": {"orig_filename": "Gruen_Dionys_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419498}}, {"model": "metainfo.source", "pk": 15181, "fields": {"orig_filename": "Gruen_Jakob-Moritz_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86f.", "author": "", "orig_id": 1419499}}, {"model": "metainfo.source", "pk": 15182, "fields": {"orig_filename": "Gruen_Johann-Nep_1751_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419500}}, {"model": "metainfo.source", "pk": 15183, "fields": {"orig_filename": "Gruessner_Anton_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418210}}, {"model": "metainfo.source", "pk": 15184, "fields": {"orig_filename": "Gruhenberg_Myra_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373", "author": "", "orig_id": 1451693}}, {"model": "metainfo.source", "pk": 15185, "fields": {"orig_filename": "Grundmann_Franz_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418212}}, {"model": "metainfo.source", "pk": 15186, "fields": {"orig_filename": "Grund_Alfred_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418211}}, {"model": "metainfo.source", "pk": 15187, "fields": {"orig_filename": "Gruner_Ferdinand_1873_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93f.", "author": "", "orig_id": 1418280}}, {"model": "metainfo.source", "pk": 15188, "fields": {"orig_filename": "Grunow_Albert_1826_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 94", "author": "", "orig_id": 1418281}}, {"model": "metainfo.source", "pk": 15189, "fields": {"orig_filename": "Gruntzel_Josef_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 94f.", "author": "", "orig_id": 1418282}}, {"model": "metainfo.source", "pk": 15190, "fields": {"orig_filename": "Gruscha_Anton-Josef_1820_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418283}}, {"model": "metainfo.source", "pk": 15191, "fields": {"orig_filename": "Gruss_Anton_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418284}}, {"model": "metainfo.source", "pk": 15192, "fields": {"orig_filename": "Gruss_Johann_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418285}}, {"model": "metainfo.source", "pk": 15193, "fields": {"orig_filename": "Grutsch_Franz-Xaver_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418287}}, {"model": "metainfo.source", "pk": 15194, "fields": {"orig_filename": "Grutsch_Franz_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418286}}, {"model": "metainfo.source", "pk": 15195, "fields": {"orig_filename": "Grysar_Karl-Josef_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418288}}, {"model": "metainfo.source", "pk": 15196, "fields": {"orig_filename": "Grzybowski_Jozef_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418289}}, {"model": "metainfo.source", "pk": 15197, "fields": {"orig_filename": "Gsaller_Carl_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418290}}, {"model": "metainfo.source", "pk": 15198, "fields": {"orig_filename": "Gschiel_Jakob_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418291}}, {"model": "metainfo.source", "pk": 15199, "fields": {"orig_filename": "Gschliesser_Ilka_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418292}}, {"model": "metainfo.source", "pk": 15200, "fields": {"orig_filename": "Gschwandner_Robert_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418293}}, {"model": "metainfo.source", "pk": 15201, "fields": {"orig_filename": "Gschwandner_Sigismund_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97f.", "author": "", "orig_id": 1418294}}, {"model": "metainfo.source", "pk": 15202, "fields": {"orig_filename": "Gschwari_Coelestin_1823_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418295}}, {"model": "metainfo.source", "pk": 15203, "fields": {"orig_filename": "Gsellhofer_Karl_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418298}}, {"model": "metainfo.source", "pk": 15204, "fields": {"orig_filename": "Gsell_Benedikt_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418296}}, {"model": "metainfo.source", "pk": 15205, "fields": {"orig_filename": "Gsell_Friedrich-Jakob_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418297}}, {"model": "metainfo.source", "pk": 15206, "fields": {"orig_filename": "Gspan_Johann-Chrys_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418300}}, {"model": "metainfo.source", "pk": 15207, "fields": {"orig_filename": "Gspan_Peter-Erasmus_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98f.", "author": "", "orig_id": 1418299}}, {"model": "metainfo.source", "pk": 15208, "fields": {"orig_filename": "Gstirner_Adolf_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418301}}, {"model": "metainfo.source", "pk": 15209, "fields": {"orig_filename": "Gstrein_Alois_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418302}}, {"model": "metainfo.source", "pk": 15210, "fields": {"orig_filename": "Gsur_Karl-Friedrich_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418303}}, {"model": "metainfo.source", "pk": 15211, "fields": {"orig_filename": "Gubin_Richard_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99f.", "author": "", "orig_id": 1418366}}, {"model": "metainfo.source", "pk": 15212, "fields": {"orig_filename": "Guby_Rudolf_1888_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418367}}, {"model": "metainfo.source", "pk": 15213, "fields": {"orig_filename": "Gudenus_Leopold_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418369}}, {"model": "metainfo.source", "pk": 15214, "fields": {"orig_filename": "Guedemann_Moritz_1835_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418371}}, {"model": "metainfo.source", "pk": 15215, "fields": {"orig_filename": "Guede_Julius_1885_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2086589}}, {"model": "metainfo.source", "pk": 15216, "fields": {"orig_filename": "Guem_Johann-Franz_1755_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418373}}, {"model": "metainfo.source", "pk": 15217, "fields": {"orig_filename": "Guenther_Anton_1783_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100f.", "author": "", "orig_id": 1418372}}, {"model": "metainfo.source", "pk": 15218, "fields": {"orig_filename": "Guenther_Anton_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418374}}, {"model": "metainfo.source", "pk": 15219, "fields": {"orig_filename": "Guenther_Georg_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418375}}, {"model": "metainfo.source", "pk": 15220, "fields": {"orig_filename": "Guenther_Gustav_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418376}}, {"model": "metainfo.source", "pk": 15221, "fields": {"orig_filename": "Guenther_Otto_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101f.", "author": "", "orig_id": 1418377}}, {"model": "metainfo.source", "pk": 15222, "fields": {"orig_filename": "Guentner_Franz-Xaver_1790_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418378}}, {"model": "metainfo.source", "pk": 15223, "fields": {"orig_filename": "Guentner_Wenzel_1820_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418379}}, {"model": "metainfo.source", "pk": 15224, "fields": {"orig_filename": "Guenzl_Marie_1896_1983.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2085186}}, {"model": "metainfo.source", "pk": 15225, "fields": {"orig_filename": "Guerke_Norbert_1904_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418380}}, {"model": "metainfo.source", "pk": 15226, "fields": {"orig_filename": "Guertler_Alfred_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102f.", "author": "", "orig_id": 1418381}}, {"model": "metainfo.source", "pk": 15227, "fields": {"orig_filename": "Guertler_Hermann_1887_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418382}}, {"model": "metainfo.source", "pk": 15228, "fields": {"orig_filename": "Guertler_Josef_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418383}}, {"model": "metainfo.source", "pk": 15229, "fields": {"orig_filename": "Guerzoni_Giuseppe_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418384}}, {"model": "metainfo.source", "pk": 15230, "fields": {"orig_filename": "Guetl_Edmund_1879_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103f.", "author": "", "orig_id": 1418385}}, {"model": "metainfo.source", "pk": 15231, "fields": {"orig_filename": "Guettenberger_Heinrich_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418386}}, {"model": "metainfo.source", "pk": 15232, "fields": {"orig_filename": "Gufler_Josef_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418387}}, {"model": "metainfo.source", "pk": 15233, "fields": {"orig_filename": "Gugenbichler_Franz_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418388}}, {"model": "metainfo.source", "pk": 15234, "fields": {"orig_filename": "Guggenberg-Riedhofen_Athanasius_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418464}}, {"model": "metainfo.source", "pk": 15235, "fields": {"orig_filename": "Guggenberg-Riedhofen_Otto_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418465}}, {"model": "metainfo.source", "pk": 15236, "fields": {"orig_filename": "Guggenberger_Adolf_1896_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418466}}, {"model": "metainfo.source", "pk": 15237, "fields": {"orig_filename": "Gugg_Anton_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104f.", "author": "", "orig_id": 1418463}}, {"model": "metainfo.source", "pk": 15238, "fields": {"orig_filename": "Gugitz_Gustav_1836_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418467}}, {"model": "metainfo.source", "pk": 15239, "fields": {"orig_filename": "Guglia_Eugen_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105f.", "author": "", "orig_id": 1418468}}, {"model": "metainfo.source", "pk": 15240, "fields": {"orig_filename": "Guicciardi_Giulietta_1784_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418469}}, {"model": "metainfo.source", "pk": 15241, "fields": {"orig_filename": "Gulbransson_Grete_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418470}}, {"model": "metainfo.source", "pk": 15242, "fields": {"orig_filename": "Gull_Josef_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418471}}, {"model": "metainfo.source", "pk": 15243, "fields": {"orig_filename": "Gumplowicz_Ludwig_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106f.", "author": "", "orig_id": 1418472}}, {"model": "metainfo.source", "pk": 15244, "fields": {"orig_filename": "Gumplowicz_Maximilian-Ernest_1864_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418473}}, {"model": "metainfo.source", "pk": 15245, "fields": {"orig_filename": "Gundling_Julius_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418474}}, {"model": "metainfo.source", "pk": 15246, "fields": {"orig_filename": "Gunert_Herma_1905_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418475}}, {"model": "metainfo.source", "pk": 15247, "fields": {"orig_filename": "Gunesch_Adele_1832_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418476}}, {"model": "metainfo.source", "pk": 15248, "fields": {"orig_filename": "Gungl_Joseph_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418477}}, {"model": "metainfo.source", "pk": 15249, "fields": {"orig_filename": "Gung_L_Johann_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1440651}}, {"model": "metainfo.source", "pk": 15250, "fields": {"orig_filename": "Gunolt_August_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107f.", "author": "", "orig_id": 1418478}}, {"model": "metainfo.source", "pk": 15251, "fields": {"orig_filename": "Gunz_Gustav-Georg_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418479}}, {"model": "metainfo.source", "pk": 15252, "fields": {"orig_filename": "Guppenberger_Lambert_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418480}}, {"model": "metainfo.source", "pk": 15253, "fields": {"orig_filename": "Greussing_Paul_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418913}}, {"model": "metainfo.source", "pk": 15254, "fields": {"orig_filename": "Greuter_Josef_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58f.", "author": "", "orig_id": 1418914}}, {"model": "metainfo.source", "pk": 15255, "fields": {"orig_filename": "Greutter_Franz_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418981}}, {"model": "metainfo.source", "pk": 15256, "fields": {"orig_filename": "Grevenberg_Julius_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418982}}, {"model": "metainfo.source", "pk": 15257, "fields": {"orig_filename": "Grey-Stipek_Valerie_1845_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418983}}, {"model": "metainfo.source", "pk": 15258, "fields": {"orig_filename": "Grienberger_Theodor_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418984}}, {"model": "metainfo.source", "pk": 15259, "fields": {"orig_filename": "Griepenkerl_Christian_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59f.", "author": "", "orig_id": 1418985}}, {"model": "metainfo.source", "pk": 15260, "fields": {"orig_filename": "Griesbach_Karl-Ludolf_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418988}}, {"model": "metainfo.source", "pk": 15261, "fields": {"orig_filename": "Griessl_Rupert_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418989}}, {"model": "metainfo.source", "pk": 15262, "fields": {"orig_filename": "Grieszelich_Ernst-Ludwig_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61", "author": "", "orig_id": 1418990}}, {"model": "metainfo.source", "pk": 15263, "fields": {"orig_filename": "Gries_Franz_1760_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418986}}, {"model": "metainfo.source", "pk": 15264, "fields": {"orig_filename": "Gries_Johann-Ev_1808_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418987}}, {"model": "metainfo.source", "pk": 15265, "fields": {"orig_filename": "Grillmayr_Johann-E-C_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61", "author": "", "orig_id": 1418991}}, {"model": "metainfo.source", "pk": 15266, "fields": {"orig_filename": "Grillparzer_Franz_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61ff.", "author": "", "orig_id": 1418992}}, {"model": "metainfo.source", "pk": 15267, "fields": {"orig_filename": "Grimmich_Virgil_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418996}}, {"model": "metainfo.source", "pk": 15268, "fields": {"orig_filename": "Grimm_Ferdinand_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 63", "author": "", "orig_id": 1418993}}, {"model": "metainfo.source", "pk": 15269, "fields": {"orig_filename": "Grimm_Hugo_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 63f.", "author": "", "orig_id": 1418994}}, {"model": "metainfo.source", "pk": 15270, "fields": {"orig_filename": "Grimm_Leo_1889_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418995}}, {"model": "metainfo.source", "pk": 15271, "fields": {"orig_filename": "Grimus-Grimburg_Rudolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418997}}, {"model": "metainfo.source", "pk": 15272, "fields": {"orig_filename": "Grinner_Josef_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418998}}, {"model": "metainfo.source", "pk": 15273, "fields": {"orig_filename": "Grisar_Hartmann_1845_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64f.", "author": "", "orig_id": 1418999}}, {"model": "metainfo.source", "pk": 15274, "fields": {"orig_filename": "Grisi_Carlotta_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419000}}, {"model": "metainfo.source", "pk": 15275, "fields": {"orig_filename": "Grisi_Giulia_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419001}}, {"model": "metainfo.source", "pk": 15276, "fields": {"orig_filename": "Grissemann_Hans_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419002}}, {"model": "metainfo.source", "pk": 15277, "fields": {"orig_filename": "Grobben_Karl_1854_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65f.", "author": "", "orig_id": 1419003}}, {"model": "metainfo.source", "pk": 15278, "fields": {"orig_filename": "Grocholski_Kazimierz_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419067}}, {"model": "metainfo.source", "pk": 15279, "fields": {"orig_filename": "Groder_Virgil_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419068}}, {"model": "metainfo.source", "pk": 15280, "fields": {"orig_filename": "Groeben_August_1828_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419069}}, {"model": "metainfo.source", "pk": 15281, "fields": {"orig_filename": "Groeger_Adolf_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419071}}, {"model": "metainfo.source", "pk": 15282, "fields": {"orig_filename": "Groeger_Florian_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419072}}, {"model": "metainfo.source", "pk": 15283, "fields": {"orig_filename": "Groeger_Max_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419073}}, {"model": "metainfo.source", "pk": 15284, "fields": {"orig_filename": "Groesser_Matthaeus_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67f.", "author": "", "orig_id": 1419074}}, {"model": "metainfo.source", "pk": 15285, "fields": {"orig_filename": "Groessl_Wenzel_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419075}}, {"model": "metainfo.source", "pk": 15286, "fields": {"orig_filename": "Grohar_Ivan_1867_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419077}}, {"model": "metainfo.source", "pk": 15287, "fields": {"orig_filename": "Grohmann_Adolf_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68f.", "author": "", "orig_id": 1419078}}, {"model": "metainfo.source", "pk": 15288, "fields": {"orig_filename": "Grohmann_Carl_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 69", "author": "", "orig_id": 1419079}}, {"model": "metainfo.source", "pk": 15289, "fields": {"orig_filename": "Grohmann_Eduard_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 69f.", "author": "", "orig_id": 1419080}}, {"model": "metainfo.source", "pk": 15290, "fields": {"orig_filename": "Grohmann_Joseph_1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70", "author": "", "orig_id": 1419081}}, {"model": "metainfo.source", "pk": 15291, "fields": {"orig_filename": "Grohmann_Paul_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70", "author": "", "orig_id": 1419082}}, {"model": "metainfo.source", "pk": 15292, "fields": {"orig_filename": "Grohs-Fligely_Anton_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70f.", "author": "", "orig_id": 1419083}}, {"model": "metainfo.source", "pk": 15293, "fields": {"orig_filename": "Groh_Jakob_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419076}}, {"model": "metainfo.source", "pk": 15294, "fields": {"orig_filename": "Grolig_Moriz_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419084}}, {"model": "metainfo.source", "pk": 15295, "fields": {"orig_filename": "Groller-Mildensee_Maximilian_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419087}}, {"model": "metainfo.source", "pk": 15296, "fields": {"orig_filename": "Groll_Andreas_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419085}}, {"model": "metainfo.source", "pk": 15297, "fields": {"orig_filename": "Gronemann_Karoline_1869_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71f.", "author": "", "orig_id": 1419088}}, {"model": "metainfo.source", "pk": 15298, "fields": {"orig_filename": "Groner_Anton_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419089}}, {"model": "metainfo.source", "pk": 15299, "fields": {"orig_filename": "Groner_Auguste_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419149}}, {"model": "metainfo.source", "pk": 15300, "fields": {"orig_filename": "Groner_Richard_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419150}}, {"model": "metainfo.source", "pk": 15301, "fields": {"orig_filename": "Groppenberger-Bergenstamm_Alois_1754_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419151}}, {"model": "metainfo.source", "pk": 15302, "fields": {"orig_filename": "Gross-Hoffinger_Anton-Johann_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 76f.", "author": "", "orig_id": 1419166}}, {"model": "metainfo.source", "pk": 15303, "fields": {"orig_filename": "Grossbauer-Waldstaett_Franz_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419167}}, {"model": "metainfo.source", "pk": 15304, "fields": {"orig_filename": "Grossberg_Mimi_1905_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420526}}, {"model": "metainfo.source", "pk": 15305, "fields": {"orig_filename": "Grossberg_Norbert_1903_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1423092}}, {"model": "metainfo.source", "pk": 15306, "fields": {"orig_filename": "Grosschmid_Benjamin_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419391}}, {"model": "metainfo.source", "pk": 15307, "fields": {"orig_filename": "Grosse_Andreas_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419324}}, {"model": "metainfo.source", "pk": 15308, "fields": {"orig_filename": "Grossich_Antonio_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419326}}, {"model": "metainfo.source", "pk": 15309, "fields": {"orig_filename": "Grossi_Tommaso_1791_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419325}}, {"model": "metainfo.source", "pk": 15310, "fields": {"orig_filename": "Grossmann_Michael_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77f.", "author": "", "orig_id": 1419327}}, {"model": "metainfo.source", "pk": 15311, "fields": {"orig_filename": "Grossmann_Stefan_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419390}}, {"model": "metainfo.source", "pk": 15312, "fields": {"orig_filename": "Gross_Benedikt_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72f.", "author": "", "orig_id": 1419153}}, {"model": "metainfo.source", "pk": 15313, "fields": {"orig_filename": "Gross_Ferdinand_1848_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419154}}, {"model": "metainfo.source", "pk": 15314, "fields": {"orig_filename": "Gross_Franz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419155}}, {"model": "metainfo.source", "pk": 15315, "fields": {"orig_filename": "Gross_Gustav-Robert_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73f.", "author": "", "orig_id": 1419157}}, {"model": "metainfo.source", "pk": 15316, "fields": {"orig_filename": "Gross_Gustav_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419156}}, {"model": "metainfo.source", "pk": 15317, "fields": {"orig_filename": "Gross_Hanns_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74", "author": "", "orig_id": 1419158}}, {"model": "metainfo.source", "pk": 15318, "fields": {"orig_filename": "Gross_Heinrich_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74", "author": "", "orig_id": 1419159}}, {"model": "metainfo.source", "pk": 15319, "fields": {"orig_filename": "Gross_Josef_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419160}}, {"model": "metainfo.source", "pk": 15320, "fields": {"orig_filename": "Gross_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74f.", "author": "", "orig_id": 1419161}}, {"model": "metainfo.source", "pk": 15321, "fields": {"orig_filename": "Gross_Julius_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75", "author": "", "orig_id": 1419162}}, {"model": "metainfo.source", "pk": 15322, "fields": {"orig_filename": "Gross_Karl_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75", "author": "", "orig_id": 1419163}}, {"model": "metainfo.source", "pk": 15323, "fields": {"orig_filename": "Gross_Lothar_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75f.", "author": "", "orig_id": 1419164}}, {"model": "metainfo.source", "pk": 15324, "fields": {"orig_filename": "Gross_Otto_1877_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1449030}}, {"model": "metainfo.source", "pk": 15325, "fields": {"orig_filename": "Gross_Wilhelm_1886_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 76", "author": "", "orig_id": 1419165}}, {"model": "metainfo.source", "pk": 15326, "fields": {"orig_filename": "Grosz_Karl_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419392}}, {"model": "metainfo.source", "pk": 15327, "fields": {"orig_filename": "Grosz_Siegfried_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419393}}, {"model": "metainfo.source", "pk": 15328, "fields": {"orig_filename": "Grottger_Artur_1837_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419395}}, {"model": "metainfo.source", "pk": 15329, "fields": {"orig_filename": "Gruber-Gleichenberg_Franz_1886_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419488}}, {"model": "metainfo.source", "pk": 15330, "fields": {"orig_filename": "Gruber-Menninger_Ignaz_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84f.", "author": "", "orig_id": 1419489}}, {"model": "metainfo.source", "pk": 15331, "fields": {"orig_filename": "Gruber_Alois_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419397}}, {"model": "metainfo.source", "pk": 15332, "fields": {"orig_filename": "Gruber_Augustin-Josef_1763_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419398}}, {"model": "metainfo.source", "pk": 15333, "fields": {"orig_filename": "Gruber_Dane_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419399}}, {"model": "metainfo.source", "pk": 15334, "fields": {"orig_filename": "Gruber_Franz-Xaver_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80f.", "author": "", "orig_id": 1419401}}, {"model": "metainfo.source", "pk": 15335, "fields": {"orig_filename": "Gruber_Franz-Xaver_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419402}}, {"model": "metainfo.source", "pk": 15336, "fields": {"orig_filename": "Gruber_Franz-Xaver_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419403}}, {"model": "metainfo.source", "pk": 15337, "fields": {"orig_filename": "Gruber_Franz_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419400}}, {"model": "metainfo.source", "pk": 15338, "fields": {"orig_filename": "Gruber_Hans_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419404}}, {"model": "metainfo.source", "pk": 15339, "fields": {"orig_filename": "Gruber_Hans_1879_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419405}}, {"model": "metainfo.source", "pk": 15340, "fields": {"orig_filename": "Gruber_Hermann_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81f.", "author": "", "orig_id": 1419406}}, {"model": "metainfo.source", "pk": 15341, "fields": {"orig_filename": "Gruber_Ignaz_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419407}}, {"model": "metainfo.source", "pk": 15342, "fields": {"orig_filename": "Gruber_Jakob_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419408}}, {"model": "metainfo.source", "pk": 15343, "fields": {"orig_filename": "Gruber_Josef_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419409}}, {"model": "metainfo.source", "pk": 15344, "fields": {"orig_filename": "Gruber_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419410}}, {"model": "metainfo.source", "pk": 15345, "fields": {"orig_filename": "Gruber_Josef_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82f.", "author": "", "orig_id": 1419411}}, {"model": "metainfo.source", "pk": 15346, "fields": {"orig_filename": "Gruber_Max_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419412}}, {"model": "metainfo.source", "pk": 15347, "fields": {"orig_filename": "Gruber_Oswald_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419413}}, {"model": "metainfo.source", "pk": 15348, "fields": {"orig_filename": "Gruber_Peter_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419414}}, {"model": "metainfo.source", "pk": 15349, "fields": {"orig_filename": "Gruber_Rudolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419415}}, {"model": "metainfo.source", "pk": 15350, "fields": {"orig_filename": "Gruber_Stanislaus_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419416}}, {"model": "metainfo.source", "pk": 15351, "fields": {"orig_filename": "Gruber_Wenzel_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1421081}}, {"model": "metainfo.source", "pk": 15352, "fields": {"orig_filename": "Grube_August-Wilhelm_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419396}}, {"model": "metainfo.source", "pk": 15353, "fields": {"orig_filename": "Grubhofer_Tony_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419490}}, {"model": "metainfo.source", "pk": 15354, "fields": {"orig_filename": "Gruby_David_1810_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419491}}, {"model": "metainfo.source", "pk": 15355, "fields": {"orig_filename": "Gruden_Igo_1893_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419492}}, {"model": "metainfo.source", "pk": 15356, "fields": {"orig_filename": "Gornik_Friedrich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418454}}, {"model": "metainfo.source", "pk": 15357, "fields": {"orig_filename": "Gorove_Stefan_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418455}}, {"model": "metainfo.source", "pk": 15358, "fields": {"orig_filename": "Gorski_Anton_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33f.", "author": "", "orig_id": 1418456}}, {"model": "metainfo.source", "pk": 15359, "fields": {"orig_filename": "Gortani_Luigi_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418457}}, {"model": "metainfo.source", "pk": 15360, "fields": {"orig_filename": "Gorup-Besanez_Eugen-Franz_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418458}}, {"model": "metainfo.source", "pk": 15361, "fields": {"orig_filename": "Gorup-Besanez_Ferdinand-Johann_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418530}}, {"model": "metainfo.source", "pk": 15362, "fields": {"orig_filename": "Gorup-Slavinjski_Josip_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418531}}, {"model": "metainfo.source", "pk": 15363, "fields": {"orig_filename": "Gorzkowski-Gorzkow_Karl_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418533}}, {"model": "metainfo.source", "pk": 15364, "fields": {"orig_filename": "Gorzkowski_Ludwik-Jedrzej_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34f.", "author": "", "orig_id": 1418532}}, {"model": "metainfo.source", "pk": 15365, "fields": {"orig_filename": "Goslar_Julian-Maciej_1820_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418534}}, {"model": "metainfo.source", "pk": 15366, "fields": {"orig_filename": "Gossmann_Friederike_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418535}}, {"model": "metainfo.source", "pk": 15367, "fields": {"orig_filename": "Gostincar_Josip_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418536}}, {"model": "metainfo.source", "pk": 15368, "fields": {"orig_filename": "Gostkowski_Roman_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35f.", "author": "", "orig_id": 1418537}}, {"model": "metainfo.source", "pk": 15369, "fields": {"orig_filename": "Goszczynski_Seweryn_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418538}}, {"model": "metainfo.source", "pk": 15370, "fields": {"orig_filename": "Gothard_Eugen_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418539}}, {"model": "metainfo.source", "pk": 15371, "fields": {"orig_filename": "Gottdank_Josepha_1792_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418540}}, {"model": "metainfo.source", "pk": 15372, "fields": {"orig_filename": "Gotthilf-Miskolczy_Ernst_1865_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418541}}, {"model": "metainfo.source", "pk": 15373, "fields": {"orig_filename": "Gottlieb_Anna_1774_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418542}}, {"model": "metainfo.source", "pk": 15374, "fields": {"orig_filename": "Gottlieb_Johann_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418543}}, {"model": "metainfo.source", "pk": 15375, "fields": {"orig_filename": "Gottsleben_Ludwig_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418544}}, {"model": "metainfo.source", "pk": 15376, "fields": {"orig_filename": "Govekar_Fran_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418545}}, {"model": "metainfo.source", "pk": 15377, "fields": {"orig_filename": "Govekar_Minka_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37f.", "author": "", "orig_id": 1418546}}, {"model": "metainfo.source", "pk": 15378, "fields": {"orig_filename": "Govrik_Gregor_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418547}}, {"model": "metainfo.source", "pk": 15379, "fields": {"orig_filename": "Graber_Hermann-Veit_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418548}}, {"model": "metainfo.source", "pk": 15380, "fields": {"orig_filename": "Graber_Vitus_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418549}}, {"model": "metainfo.source", "pk": 15381, "fields": {"orig_filename": "Grabherr_Josef_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38f.", "author": "", "orig_id": 1418550}}, {"model": "metainfo.source", "pk": 15382, "fields": {"orig_filename": "Grabmann_Martin_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39", "author": "", "orig_id": 1418551}}, {"model": "metainfo.source", "pk": 15383, "fields": {"orig_filename": "Grabmayr-Angerheim_Georg_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39", "author": "", "orig_id": 1418552}}, {"model": "metainfo.source", "pk": 15384, "fields": {"orig_filename": "Grabmayr-Angerheim_Karl_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39f.", "author": "", "orig_id": 1418623}}, {"model": "metainfo.source", "pk": 15385, "fields": {"orig_filename": "Grabner_Leopold_1802_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40", "author": "", "orig_id": 1418624}}, {"model": "metainfo.source", "pk": 15386, "fields": {"orig_filename": "Grabowski_Ambrozy_1782_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40", "author": "", "orig_id": 1418625}}, {"model": "metainfo.source", "pk": 15387, "fields": {"orig_filename": "Grabowski_Lucjan-Kazimierz_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40f.", "author": "", "orig_id": 1418626}}, {"model": "metainfo.source", "pk": 15388, "fields": {"orig_filename": "Grabrijan_Jurij_1800_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41", "author": "", "orig_id": 1418627}}, {"model": "metainfo.source", "pk": 15389, "fields": {"orig_filename": "Grabski_Stanislaw_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41", "author": "", "orig_id": 1418628}}, {"model": "metainfo.source", "pk": 15390, "fields": {"orig_filename": "Gradenigo_Giuseppe_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41f.", "author": "", "orig_id": 1418629}}, {"model": "metainfo.source", "pk": 15391, "fields": {"orig_filename": "Gradl_Heinrich_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418630}}, {"model": "metainfo.source", "pk": 15392, "fields": {"orig_filename": "Graedener_Hermann_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418631}}, {"model": "metainfo.source", "pk": 15393, "fields": {"orig_filename": "Graeffer_Franz_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42f.", "author": "", "orig_id": 1418633}}, {"model": "metainfo.source", "pk": 15394, "fields": {"orig_filename": "Graeffe_Eduard_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418632}}, {"model": "metainfo.source", "pk": 15395, "fields": {"orig_filename": "Graener_Paul_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418634}}, {"model": "metainfo.source", "pk": 15396, "fields": {"orig_filename": "Graenzer_Josef_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418635}}, {"model": "metainfo.source", "pk": 15397, "fields": {"orig_filename": "Graf-Gaderthurn_Friedrich_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418643}}, {"model": "metainfo.source", "pk": 15398, "fields": {"orig_filename": "Grafenauer_Franc_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45f.", "author": "", "orig_id": 1418646}}, {"model": "metainfo.source", "pk": 15399, "fields": {"orig_filename": "Grafe_Felix_1888_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418644}}, {"model": "metainfo.source", "pk": 15400, "fields": {"orig_filename": "Grafe_Viktor_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418645}}, {"model": "metainfo.source", "pk": 15401, "fields": {"orig_filename": "Graff-Pancsova_Ludwig_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418715}}, {"model": "metainfo.source", "pk": 15402, "fields": {"orig_filename": "Graff_Kasimir-Romuald_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418714}}, {"model": "metainfo.source", "pk": 15403, "fields": {"orig_filename": "Graf_Alexander_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418636}}, {"model": "metainfo.source", "pk": 15404, "fields": {"orig_filename": "Graf_Antonie_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418637}}, {"model": "metainfo.source", "pk": 15405, "fields": {"orig_filename": "Graf_Ferdinand_1907_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1434635}}, {"model": "metainfo.source", "pk": 15406, "fields": {"orig_filename": "Graf_Franz_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43f.", "author": "", "orig_id": 1418638}}, {"model": "metainfo.source", "pk": 15407, "fields": {"orig_filename": "Graf_Josef_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44", "author": "", "orig_id": 1418639}}, {"model": "metainfo.source", "pk": 15408, "fields": {"orig_filename": "Graf_Ludwig-Ferdinand_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44", "author": "", "orig_id": 1418640}}, {"model": "metainfo.source", "pk": 15409, "fields": {"orig_filename": "Graf_Rainer_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44f.", "author": "", "orig_id": 1418641}}, {"model": "metainfo.source", "pk": 15410, "fields": {"orig_filename": "Graf_Siegmund_1801_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418642}}, {"model": "metainfo.source", "pk": 15411, "fields": {"orig_filename": "Grahor_Janko_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418716}}, {"model": "metainfo.source", "pk": 15412, "fields": {"orig_filename": "Grailich_Josef_1829_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46f.", "author": "", "orig_id": 1418717}}, {"model": "metainfo.source", "pk": 15413, "fields": {"orig_filename": "Grandauer_Josef_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418718}}, {"model": "metainfo.source", "pk": 15414, "fields": {"orig_filename": "Granichstaedten-Czerva_Otto_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418720}}, {"model": "metainfo.source", "pk": 15415, "fields": {"orig_filename": "Granichstaedten_Bruno-Bernhard_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418719}}, {"model": "metainfo.source", "pk": 15416, "fields": {"orig_filename": "Granitsch_Georg_1833_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418721}}, {"model": "metainfo.source", "pk": 15417, "fields": {"orig_filename": "Grasberger_Hans_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418723}}, {"model": "metainfo.source", "pk": 15418, "fields": {"orig_filename": "Grasboeck_Theobald_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418724}}, {"model": "metainfo.source", "pk": 15419, "fields": {"orig_filename": "Graser_Karl_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418725}}, {"model": "metainfo.source", "pk": 15420, "fields": {"orig_filename": "Grassauer_Ferdinand_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418735}}, {"model": "metainfo.source", "pk": 15421, "fields": {"orig_filename": "Grasselli_Peter_1841_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418736}}, {"model": "metainfo.source", "pk": 15422, "fields": {"orig_filename": "Grassini_Giuseppina_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418737}}, {"model": "metainfo.source", "pk": 15423, "fields": {"orig_filename": "Grassl-Rechten_Ignaz_1795_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418738}}, {"model": "metainfo.source", "pk": 15424, "fields": {"orig_filename": "Grass_Franz-Xaver_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418734}}, {"model": "metainfo.source", "pk": 15425, "fields": {"orig_filename": "Gras_Otto_1864_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47f.", "author": "", "orig_id": 1418722}}, {"model": "metainfo.source", "pk": 15426, "fields": {"orig_filename": "Grauert_Wilhelm-Heinrich_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50", "author": "", "orig_id": 1418804}}, {"model": "metainfo.source", "pk": 15427, "fields": {"orig_filename": "Grauer_Rudolf_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50", "author": "", "orig_id": 1418803}}, {"model": "metainfo.source", "pk": 15428, "fields": {"orig_filename": "Graus_Johann_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50f.", "author": "", "orig_id": 1418805}}, {"model": "metainfo.source", "pk": 15429, "fields": {"orig_filename": "Grau_August_1863_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49f.", "author": "", "orig_id": 1418739}}, {"model": "metainfo.source", "pk": 15430, "fields": {"orig_filename": "Grebmer-Wolfsthurn_Eduard_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 51", "author": "", "orig_id": 1418807}}, {"model": "metainfo.source", "pk": 15431, "fields": {"orig_filename": "Gredler_Andreas_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 51f.", "author": "", "orig_id": 1418809}}, {"model": "metainfo.source", "pk": 15432, "fields": {"orig_filename": "Gredler_Ludwig_1831_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52", "author": "", "orig_id": 1418811}}, {"model": "metainfo.source", "pk": 15433, "fields": {"orig_filename": "Gredler_Vinzenz-Maria_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52", "author": "", "orig_id": 1418813}}, {"model": "metainfo.source", "pk": 15434, "fields": {"orig_filename": "Grefe_Conrad_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52f.", "author": "", "orig_id": 1418814}}, {"model": "metainfo.source", "pk": 15435, "fields": {"orig_filename": "Gregorcic_Anton_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418818}}, {"model": "metainfo.source", "pk": 15436, "fields": {"orig_filename": "Gregorcic_Simon_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418819}}, {"model": "metainfo.source", "pk": 15437, "fields": {"orig_filename": "Gregorig_Josef_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418821}}, {"model": "metainfo.source", "pk": 15438, "fields": {"orig_filename": "Gregorin_Gustav_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418822}}, {"model": "metainfo.source", "pk": 15439, "fields": {"orig_filename": "Gregoritsch_Anton_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418823}}, {"model": "metainfo.source", "pk": 15440, "fields": {"orig_filename": "Gregori_Ferdinand_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53f.", "author": "", "orig_id": 1418820}}, {"model": "metainfo.source", "pk": 15441, "fields": {"orig_filename": "Gregor_Hans_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418815}}, {"model": "metainfo.source", "pk": 15442, "fields": {"orig_filename": "Gregor_Nora_1901_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418816}}, {"model": "metainfo.source", "pk": 15443, "fields": {"orig_filename": "Gregr_Eduard_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418892}}, {"model": "metainfo.source", "pk": 15444, "fields": {"orig_filename": "Gregr_Julius_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54f.", "author": "", "orig_id": 1418894}}, {"model": "metainfo.source", "pk": 15445, "fields": {"orig_filename": "Greguss_Agost_1825_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418895}}, {"model": "metainfo.source", "pk": 15446, "fields": {"orig_filename": "Greiderer_Sebastian_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418897}}, {"model": "metainfo.source", "pk": 15447, "fields": {"orig_filename": "Greil_Alois_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418898}}, {"model": "metainfo.source", "pk": 15448, "fields": {"orig_filename": "Greil_Johann-Nep_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55f.", "author": "", "orig_id": 1418899}}, {"model": "metainfo.source", "pk": 15449, "fields": {"orig_filename": "Greil_Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418901}}, {"model": "metainfo.source", "pk": 15450, "fields": {"orig_filename": "Greiner_Leo_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418902}}, {"model": "metainfo.source", "pk": 15451, "fields": {"orig_filename": "Greinwald_Thomas_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418903}}, {"model": "metainfo.source", "pk": 15452, "fields": {"orig_filename": "Greinz_Christian_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418904}}, {"model": "metainfo.source", "pk": 15453, "fields": {"orig_filename": "Greinz_Hugo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56f.", "author": "", "orig_id": 1418906}}, {"model": "metainfo.source", "pk": 15454, "fields": {"orig_filename": "Greinz_Rudolf-Heinrich_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57", "author": "", "orig_id": 1418907}}, {"model": "metainfo.source", "pk": 15455, "fields": {"orig_filename": "Greipl_Rudolf_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57", "author": "", "orig_id": 1418908}}, {"model": "metainfo.source", "pk": 15456, "fields": {"orig_filename": "Greisinger_Gustav-Adolf_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57f.", "author": "", "orig_id": 1418909}}, {"model": "metainfo.source", "pk": 15457, "fields": {"orig_filename": "Gremblich_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418910}}, {"model": "metainfo.source", "pk": 15458, "fields": {"orig_filename": "Grengg_Karl_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418911}}, {"model": "metainfo.source", "pk": 15459, "fields": {"orig_filename": "Grenser_Alfred_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418912}}, {"model": "metainfo.source", "pk": 15460, "fields": {"orig_filename": "Glatz_Jakob_1776_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419478}}, {"model": "metainfo.source", "pk": 15461, "fields": {"orig_filename": "Glatz_Sebastian_1837_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419479}}, {"model": "metainfo.source", "pk": 15462, "fields": {"orig_filename": "Glawatsch_Franz_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419480}}, {"model": "metainfo.source", "pk": 15463, "fields": {"orig_filename": "Glax_Heinrich_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419481}}, {"model": "metainfo.source", "pk": 15464, "fields": {"orig_filename": "Glax_Julius_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5f.", "author": "", "orig_id": 1419482}}, {"model": "metainfo.source", "pk": 15465, "fields": {"orig_filename": "Gleich_Josef-Alois_1772_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6", "author": "", "orig_id": 1419483}}, {"model": "metainfo.source", "pk": 15466, "fields": {"orig_filename": "Gleispach_Johann-Nepomuk_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6", "author": "", "orig_id": 1419484}}, {"model": "metainfo.source", "pk": 15467, "fields": {"orig_filename": "Gleispach_Karl-Josef_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6f.", "author": "", "orig_id": 1419485}}, {"model": "metainfo.source", "pk": 15468, "fields": {"orig_filename": "Gleispach_Wenzeslaus_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 7f.", "author": "", "orig_id": 1419486}}, {"model": "metainfo.source", "pk": 15469, "fields": {"orig_filename": "Gliber_Jakob_1825_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419487}}, {"model": "metainfo.source", "pk": 15470, "fields": {"orig_filename": "Glickh_Rudolf_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419557}}, {"model": "metainfo.source", "pk": 15471, "fields": {"orig_filename": "Gloeckel_Leopoldine_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419558}}, {"model": "metainfo.source", "pk": 15472, "fields": {"orig_filename": "Gloeckel_Otto_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8f.", "author": "", "orig_id": 1419559}}, {"model": "metainfo.source", "pk": 15473, "fields": {"orig_filename": "Gloeckner_Berta_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 9", "author": "", "orig_id": 1419560}}, {"model": "metainfo.source", "pk": 15474, "fields": {"orig_filename": "Gloeggl_Franz-Xaver_1764_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 9f.", "author": "", "orig_id": 1419561}}, {"model": "metainfo.source", "pk": 15475, "fields": {"orig_filename": "Glonar_Joza_1885_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419562}}, {"model": "metainfo.source", "pk": 15476, "fields": {"orig_filename": "Glondys_Viktor_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419564}}, {"model": "metainfo.source", "pk": 15477, "fields": {"orig_filename": "Gloning_Kajetan-Alois_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419565}}, {"model": "metainfo.source", "pk": 15478, "fields": {"orig_filename": "Gloria_Andrea_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419566}}, {"model": "metainfo.source", "pk": 15479, "fields": {"orig_filename": "Glossy_Karl_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419568}}, {"model": "metainfo.source", "pk": 15480, "fields": {"orig_filename": "Gloss_Ludwig_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10f.", "author": "", "orig_id": 1419567}}, {"model": "metainfo.source", "pk": 15481, "fields": {"orig_filename": "Glowacki_Julius_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419569}}, {"model": "metainfo.source", "pk": 15482, "fields": {"orig_filename": "Glowacki_Sylvia_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419571}}, {"model": "metainfo.source", "pk": 15483, "fields": {"orig_filename": "Glueckselig_Gustav-Thormod_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12", "author": "", "orig_id": 1419574}}, {"model": "metainfo.source", "pk": 15484, "fields": {"orig_filename": "Gluecksmann_Heinrich_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12f.", "author": "", "orig_id": 1419575}}, {"model": "metainfo.source", "pk": 15485, "fields": {"orig_filename": "Glueck_Babette-Elisabeth_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11f.", "author": "", "orig_id": 1419572}}, {"model": "metainfo.source", "pk": 15486, "fields": {"orig_filename": "Glueck_Heinrich_1889_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12", "author": "", "orig_id": 1419573}}, {"model": "metainfo.source", "pk": 15487, "fields": {"orig_filename": "Gmeiner_Franz-X_1752_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1418173}}, {"model": "metainfo.source", "pk": 15488, "fields": {"orig_filename": "Gmeiner_Josef-Anton_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1421076}}, {"model": "metainfo.source", "pk": 15489, "fields": {"orig_filename": "Gnad_Ernst_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1418182}}, {"model": "metainfo.source", "pk": 15490, "fields": {"orig_filename": "Gnirs_Anton_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13f.", "author": "", "orig_id": 1418183}}, {"model": "metainfo.source", "pk": 15491, "fields": {"orig_filename": "Godai_Anton_1863_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418184}}, {"model": "metainfo.source", "pk": 15492, "fields": {"orig_filename": "Godebski_Franciszek-Ksawery_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418185}}, {"model": "metainfo.source", "pk": 15493, "fields": {"orig_filename": "Godeffroy_Richard_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418186}}, {"model": "metainfo.source", "pk": 15494, "fields": {"orig_filename": "Godina_Josip-Verdelski_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418187}}, {"model": "metainfo.source", "pk": 15495, "fields": {"orig_filename": "Godlewski_Emil_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418188}}, {"model": "metainfo.source", "pk": 15496, "fields": {"orig_filename": "Godlewski_Karl_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418189}}, {"model": "metainfo.source", "pk": 15497, "fields": {"orig_filename": "Godlewski_Tadeusz_1878_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418190}}, {"model": "metainfo.source", "pk": 15498, "fields": {"orig_filename": "Goebel_Carl_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418191}}, {"model": "metainfo.source", "pk": 15499, "fields": {"orig_filename": "Goelis_Leopold-Anton_1764_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15f.", "author": "", "orig_id": 1418256}}, {"model": "metainfo.source", "pk": 15500, "fields": {"orig_filename": "Goellerich_August_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 16", "author": "", "orig_id": 1418257}}, {"model": "metainfo.source", "pk": 15501, "fields": {"orig_filename": "Goelsdorf_Karl_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 16f.", "author": "", "orig_id": 1418258}}, {"model": "metainfo.source", "pk": 15502, "fields": {"orig_filename": "Goelsdorf_Louis-Adolf_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418259}}, {"model": "metainfo.source", "pk": 15503, "fields": {"orig_filename": "Goepfert_Eduard_1836_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418260}}, {"model": "metainfo.source", "pk": 15504, "fields": {"orig_filename": "Goergey-Goergoe-Toporcz_Arthur_1818_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418261}}, {"model": "metainfo.source", "pk": 15505, "fields": {"orig_filename": "Goerner_Karl_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17f.", "author": "", "orig_id": 1418262}}, {"model": "metainfo.source", "pk": 15506, "fields": {"orig_filename": "Goess_Anton_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18", "author": "", "orig_id": 1418263}}, {"model": "metainfo.source", "pk": 15507, "fields": {"orig_filename": "Goess_Leopold_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18", "author": "", "orig_id": 1421077}}, {"model": "metainfo.source", "pk": 15508, "fields": {"orig_filename": "Goess_Peter_1774_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18f.", "author": "", "orig_id": 1418264}}, {"model": "metainfo.source", "pk": 15509, "fields": {"orig_filename": "Goess_Zeno-Vinzenz_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19", "author": "", "orig_id": 1418265}}, {"model": "metainfo.source", "pk": 15510, "fields": {"orig_filename": "Goestl_Fran_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2192062}}, {"model": "metainfo.source", "pk": 15511, "fields": {"orig_filename": "Goethe_Hermann_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19f.", "author": "", "orig_id": 1418267}}, {"model": "metainfo.source", "pk": 15512, "fields": {"orig_filename": "Goeth_Georg_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19", "author": "", "orig_id": 1418266}}, {"model": "metainfo.source", "pk": 15513, "fields": {"orig_filename": "Goetz_Josef_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418269}}, {"model": "metainfo.source", "pk": 15514, "fields": {"orig_filename": "Goglia-Zlota-Lipa_Ferdinand_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418270}}, {"model": "metainfo.source", "pk": 15515, "fields": {"orig_filename": "Gohren_Karl-Theodor_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418271}}, {"model": "metainfo.source", "pk": 15516, "fields": {"orig_filename": "Goiginger_Ludwig_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20f.", "author": "", "orig_id": 1418272}}, {"model": "metainfo.source", "pk": 15517, "fields": {"orig_filename": "Golant_Nathan_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418273}}, {"model": "metainfo.source", "pk": 15518, "fields": {"orig_filename": "Goldbach-Sulittaborn_Anton_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418275}}, {"model": "metainfo.source", "pk": 15519, "fields": {"orig_filename": "Goldbacher_Alois_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418276}}, {"model": "metainfo.source", "pk": 15520, "fields": {"orig_filename": "Goldbacher_Gregor_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21f.", "author": "", "orig_id": 1418277}}, {"model": "metainfo.source", "pk": 15521, "fields": {"orig_filename": "Goldbaum_Wilhelm_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418278}}, {"model": "metainfo.source", "pk": 15522, "fields": {"orig_filename": "Goldberger_Richard_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418279}}, {"model": "metainfo.source", "pk": 15523, "fields": {"orig_filename": "Goldegg_Hugo_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418345}}, {"model": "metainfo.source", "pk": 15524, "fields": {"orig_filename": "Goldemund_Heinrich_1863_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418346}}, {"model": "metainfo.source", "pk": 15525, "fields": {"orig_filename": "Goldenthal_Jakob_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22f.", "author": "", "orig_id": 1418347}}, {"model": "metainfo.source", "pk": 15526, "fields": {"orig_filename": "Goldhann_Ludwig_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23", "author": "", "orig_id": 1418349}}, {"model": "metainfo.source", "pk": 15527, "fields": {"orig_filename": "Goldmann_Arthur_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418352}}, {"model": "metainfo.source", "pk": 15528, "fields": {"orig_filename": "Goldmann_Emil_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418353}}, {"model": "metainfo.source", "pk": 15529, "fields": {"orig_filename": "Goldmann_Paul_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24f.", "author": "", "orig_id": 1418354}}, {"model": "metainfo.source", "pk": 15530, "fields": {"orig_filename": "Goldman_Bernard_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418351}}, {"model": "metainfo.source", "pk": 15531, "fields": {"orig_filename": "Goldman_Salome_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23f.", "author": "", "orig_id": 1418350}}, {"model": "metainfo.source", "pk": 15532, "fields": {"orig_filename": "Goldmark_Karl_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418355}}, {"model": "metainfo.source", "pk": 15533, "fields": {"orig_filename": "Goldscheider_Adalbert_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418357}}, {"model": "metainfo.source", "pk": 15534, "fields": {"orig_filename": "Goldscheid_Rudolf_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418356}}, {"model": "metainfo.source", "pk": 15535, "fields": {"orig_filename": "Goldschmidt_Adalbert_1848_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25f.", "author": "", "orig_id": 1418358}}, {"model": "metainfo.source", "pk": 15536, "fields": {"orig_filename": "Goldschmidt_Heinrich-Jacob_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418359}}, {"model": "metainfo.source", "pk": 15537, "fields": {"orig_filename": "Goldschmidt_Hermann_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418360}}, {"model": "metainfo.source", "pk": 15538, "fields": {"orig_filename": "Goldschmidt_Waldemar_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147103}}, {"model": "metainfo.source", "pk": 15539, "fields": {"orig_filename": "Goldschmiedt_Guido_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418361}}, {"model": "metainfo.source", "pk": 15540, "fields": {"orig_filename": "Goldzieher_Ignaz_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26f.", "author": "", "orig_id": 1418362}}, {"model": "metainfo.source", "pk": 15541, "fields": {"orig_filename": "Goldzieher_Vilmos_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 27", "author": "", "orig_id": 1418363}}, {"model": "metainfo.source", "pk": 15542, "fields": {"orig_filename": "Gold_Josef_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418274}}, {"model": "metainfo.source", "pk": 15543, "fields": {"orig_filename": "Goller_Franz-Wenzel_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418436}}, {"model": "metainfo.source", "pk": 15544, "fields": {"orig_filename": "Gollner-Goldnenfels_Alois_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418437}}, {"model": "metainfo.source", "pk": 15545, "fields": {"orig_filename": "Gollob_Heinrich_1886_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418438}}, {"model": "metainfo.source", "pk": 15546, "fields": {"orig_filename": "Goll_Ernst_1887_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 27", "author": "", "orig_id": 1421078}}, {"model": "metainfo.source", "pk": 15547, "fields": {"orig_filename": "Goll_Jaroslav_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418364}}, {"model": "metainfo.source", "pk": 15548, "fields": {"orig_filename": "Goll_Josef_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418365}}, {"model": "metainfo.source", "pk": 15549, "fields": {"orig_filename": "Goltsch_Franz_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28f.", "author": "", "orig_id": 1418440}}, {"model": "metainfo.source", "pk": 15550, "fields": {"orig_filename": "Goltz_Alexander-Demetrius_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 29", "author": "", "orig_id": 1418441}}, {"model": "metainfo.source", "pk": 15551, "fields": {"orig_filename": "Goluchowski_Agenor-Maria-Adam_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 29f.", "author": "", "orig_id": 1418442}}, {"model": "metainfo.source", "pk": 15552, "fields": {"orig_filename": "Goluchowski_Agenor-Romuald-Onufr_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 30", "author": "", "orig_id": 1418443}}, {"model": "metainfo.source", "pk": 15553, "fields": {"orig_filename": "Gomperz_Heinrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 30f.", "author": "", "orig_id": 1418444}}, {"model": "metainfo.source", "pk": 15554, "fields": {"orig_filename": "Gomperz_Julius_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31", "author": "", "orig_id": 1418445}}, {"model": "metainfo.source", "pk": 15555, "fields": {"orig_filename": "Gomperz_Max_1822_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31", "author": "", "orig_id": 1418446}}, {"model": "metainfo.source", "pk": 15556, "fields": {"orig_filename": "Gomperz_Theodor_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31f.", "author": "", "orig_id": 1418447}}, {"model": "metainfo.source", "pk": 15557, "fields": {"orig_filename": "Gondrecourt_Leopold_1816_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418448}}, {"model": "metainfo.source", "pk": 15558, "fields": {"orig_filename": "Gooss_Karl_1814_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418449}}, {"model": "metainfo.source", "pk": 15559, "fields": {"orig_filename": "Gooss_Karl_1844_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418450}}, {"model": "metainfo.source", "pk": 15560, "fields": {"orig_filename": "Gopcevic_Spiridon_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418451}}, {"model": "metainfo.source", "pk": 15561, "fields": {"orig_filename": "Gordon_Marie_1812_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32f.", "author": "", "orig_id": 1418452}}, {"model": "metainfo.source", "pk": 15562, "fields": {"orig_filename": "Gorjanovic-Kramberger_Dragutin_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418453}}, {"model": "metainfo.source", "pk": 15563, "fields": {"orig_filename": "Geringer_Philipp_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421761}}, {"model": "metainfo.source", "pk": 15564, "fields": {"orig_filename": "Gerisch_Eduard_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421763}}, {"model": "metainfo.source", "pk": 15565, "fields": {"orig_filename": "Gerle_Wilhelm-Adolf_1783_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426f.", "author": "", "orig_id": 1421768}}, {"model": "metainfo.source", "pk": 15566, "fields": {"orig_filename": "Gerl_Franz_1764_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421764}}, {"model": "metainfo.source", "pk": 15567, "fields": {"orig_filename": "Gerl_Gustav_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421765}}, {"model": "metainfo.source", "pk": 15568, "fields": {"orig_filename": "Gerl_Peter_1796_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421766}}, {"model": "metainfo.source", "pk": 15569, "fields": {"orig_filename": "German_Ludomir_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421842}}, {"model": "metainfo.source", "pk": 15570, "fields": {"orig_filename": "Germela_Raimund_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421843}}, {"model": "metainfo.source", "pk": 15571, "fields": {"orig_filename": "Germonik_Ludwig_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421844}}, {"model": "metainfo.source", "pk": 15572, "fields": {"orig_filename": "Gernerth_Emmerich_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421845}}, {"model": "metainfo.source", "pk": 15573, "fields": {"orig_filename": "Gerold_Carl_1783_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427f.", "author": "", "orig_id": 1421846}}, {"model": "metainfo.source", "pk": 15574, "fields": {"orig_filename": "Gerold_Moriz_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428", "author": "", "orig_id": 1421847}}, {"model": "metainfo.source", "pk": 15575, "fields": {"orig_filename": "Gerold_Rosa_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428", "author": "", "orig_id": 1421848}}, {"model": "metainfo.source", "pk": 15576, "fields": {"orig_filename": "Gerstaecker-Simplon_Wenzel_1786_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421850}}, {"model": "metainfo.source", "pk": 15577, "fields": {"orig_filename": "Gerstel-Ucken_Gustav_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421851}}, {"model": "metainfo.source", "pk": 15578, "fields": {"orig_filename": "Gerster-Gardini_Etelka_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421854}}, {"model": "metainfo.source", "pk": 15579, "fields": {"orig_filename": "Gerster_Gerold_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421852}}, {"model": "metainfo.source", "pk": 15580, "fields": {"orig_filename": "Gerster_Thomas_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421853}}, {"model": "metainfo.source", "pk": 15581, "fields": {"orig_filename": "Gerstl_Richard_1883_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429f.", "author": "", "orig_id": 1421855}}, {"model": "metainfo.source", "pk": 15582, "fields": {"orig_filename": "Gerstmeyer_Josef_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421856}}, {"model": "metainfo.source", "pk": 15583, "fields": {"orig_filename": "Gerstner_Anton_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421857}}, {"model": "metainfo.source", "pk": 15584, "fields": {"orig_filename": "Gerstner_Franz-Anton_1796_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421859}}, {"model": "metainfo.source", "pk": 15585, "fields": {"orig_filename": "Gerstner_Franz-Joseph_1756_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430f.", "author": "", "orig_id": 1421860}}, {"model": "metainfo.source", "pk": 15586, "fields": {"orig_filename": "Gerstner_Franz_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421858}}, {"model": "metainfo.source", "pk": 15587, "fields": {"orig_filename": "Gerstner_Hans_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421861}}, {"model": "metainfo.source", "pk": 15588, "fields": {"orig_filename": "Gerst_Johann_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428f.", "author": "", "orig_id": 1421849}}, {"model": "metainfo.source", "pk": 15589, "fields": {"orig_filename": "Gersuny_Robert_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421862}}, {"model": "metainfo.source", "pk": 15590, "fields": {"orig_filename": "Gesselbauer_Otto_1852_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421863}}, {"model": "metainfo.source", "pk": 15591, "fields": {"orig_filename": "Gessmann_Albert_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421864}}, {"model": "metainfo.source", "pk": 15592, "fields": {"orig_filename": "Gessner_Hubert_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421865}}, {"model": "metainfo.source", "pk": 15593, "fields": {"orig_filename": "Gestrin_Franc_1865_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421938}}, {"model": "metainfo.source", "pk": 15594, "fields": {"orig_filename": "Getzner_Christian_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432f.", "author": "", "orig_id": 1421939}}, {"model": "metainfo.source", "pk": 15595, "fields": {"orig_filename": "Gevay_Anton_1796_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421940}}, {"model": "metainfo.source", "pk": 15596, "fields": {"orig_filename": "Gewey_Franz-Xaver-Karl_1764_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421941}}, {"model": "metainfo.source", "pk": 15597, "fields": {"orig_filename": "Geyer_August-Johann_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421942}}, {"model": "metainfo.source", "pk": 15598, "fields": {"orig_filename": "Geyer_Eberhard_1899_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433f.", "author": "", "orig_id": 1421943}}, {"model": "metainfo.source", "pk": 15599, "fields": {"orig_filename": "Geyer_Georg_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 434", "author": "", "orig_id": 1421944}}, {"model": "metainfo.source", "pk": 15600, "fields": {"orig_filename": "Geyer_Rudolf_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 434f.", "author": "", "orig_id": 1421945}}, {"model": "metainfo.source", "pk": 15601, "fields": {"orig_filename": "Geyling_Carl_1814_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421946}}, {"model": "metainfo.source", "pk": 15602, "fields": {"orig_filename": "Geyling_Josef_1799_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421947}}, {"model": "metainfo.source", "pk": 15603, "fields": {"orig_filename": "Geyling_Margarete_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421948}}, {"model": "metainfo.source", "pk": 15604, "fields": {"orig_filename": "Geyling_Rudolf_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421949}}, {"model": "metainfo.source", "pk": 15605, "fields": {"orig_filename": "Geymueller_Heinrich_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435f.", "author": "", "orig_id": 1421950}}, {"model": "metainfo.source", "pk": 15606, "fields": {"orig_filename": "Geymueller_Johann-Heinrich_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421951}}, {"model": "metainfo.source", "pk": 15607, "fields": {"orig_filename": "Gfoellner_Hans_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421952}}, {"model": "metainfo.source", "pk": 15608, "fields": {"orig_filename": "Gfoellner_Johannes-Maria_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421953}}, {"model": "metainfo.source", "pk": 15609, "fields": {"orig_filename": "Ghega_Karl_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436f.", "author": "", "orig_id": 1421954}}, {"model": "metainfo.source", "pk": 15610, "fields": {"orig_filename": "Gheri_Max_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437", "author": "", "orig_id": 1421955}}, {"model": "metainfo.source", "pk": 15611, "fields": {"orig_filename": "Ghon_Anton_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437", "author": "", "orig_id": 1421956}}, {"model": "metainfo.source", "pk": 15612, "fields": {"orig_filename": "Ghon_Carl_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437f.", "author": "", "orig_id": 1421957}}, {"model": "metainfo.source", "pk": 15613, "fields": {"orig_filename": "Ghyczy_Koloman_1808_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1420117}}, {"model": "metainfo.source", "pk": 15614, "fields": {"orig_filename": "Ghyczy_Paul_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421958}}, {"model": "metainfo.source", "pk": 15615, "fields": {"orig_filename": "Giacomini_Giacomo-Andrea_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421959}}, {"model": "metainfo.source", "pk": 15616, "fields": {"orig_filename": "Giamgy_Philipp_1819_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421960}}, {"model": "metainfo.source", "pk": 15617, "fields": {"orig_filename": "Gierach_Erich-Clemens_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438f.", "author": "", "orig_id": 1421961}}, {"model": "metainfo.source", "pk": 15618, "fields": {"orig_filename": "Giesl-Gieslingen_Wladimir_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 439", "author": "", "orig_id": 1421962}}, {"model": "metainfo.source", "pk": 15619, "fields": {"orig_filename": "Giesswein_Alexander_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 439f.", "author": "", "orig_id": 1422031}}, {"model": "metainfo.source", "pk": 15620, "fields": {"orig_filename": "Gigola_Giovanni-Battista_1769_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422032}}, {"model": "metainfo.source", "pk": 15621, "fields": {"orig_filename": "Gilewski_Karol_1832_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422033}}, {"model": "metainfo.source", "pk": 15622, "fields": {"orig_filename": "Giller_Agaton_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422034}}, {"model": "metainfo.source", "pk": 15623, "fields": {"orig_filename": "Gillmayr_Karl_1888_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440f.", "author": "", "orig_id": 1422035}}, {"model": "metainfo.source", "pk": 15624, "fields": {"orig_filename": "Gilm-Rosenegg_Hermann_1812_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 441", "author": "", "orig_id": 1422036}}, {"model": "metainfo.source", "pk": 15625, "fields": {"orig_filename": "Gindely_Anton_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 441f.", "author": "", "orig_id": 1422037}}, {"model": "metainfo.source", "pk": 15626, "fields": {"orig_filename": "Giner_Johann_1756_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422038}}, {"model": "metainfo.source", "pk": 15627, "fields": {"orig_filename": "Ginovszky_Josef_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422039}}, {"model": "metainfo.source", "pk": 15628, "fields": {"orig_filename": "Gintl_Heinrich-Eduard_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422040}}, {"model": "metainfo.source", "pk": 15629, "fields": {"orig_filename": "Gintl_Julius-Wilhelm_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 443f.", "author": "", "orig_id": 1422043}}, {"model": "metainfo.source", "pk": 15630, "fields": {"orig_filename": "Gintl_Wilhelm-Friedrich_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442f.", "author": "", "orig_id": 1422041}}, {"model": "metainfo.source", "pk": 15631, "fields": {"orig_filename": "Gintl_Wilhelm-Heinrich_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 443", "author": "", "orig_id": 1422042}}, {"model": "metainfo.source", "pk": 15632, "fields": {"orig_filename": "Ginzberger_August_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422044}}, {"model": "metainfo.source", "pk": 15633, "fields": {"orig_filename": "Ginzel_Friedrich-Karl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422047}}, {"model": "metainfo.source", "pk": 15634, "fields": {"orig_filename": "Ginzel_Hubert_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422045}}, {"model": "metainfo.source", "pk": 15635, "fields": {"orig_filename": "Ginzel_Jakob_1792_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422046}}, {"model": "metainfo.source", "pk": 15636, "fields": {"orig_filename": "Ginzkey_Ignaz_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422048}}, {"model": "metainfo.source", "pk": 15637, "fields": {"orig_filename": "Gioia_Melchiorre_1767_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422049}}, {"model": "metainfo.source", "pk": 15638, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Gottfried_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422051}}, {"model": "metainfo.source", "pk": 15639, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Ignaz_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445f.", "author": "", "orig_id": 1422052}}, {"model": "metainfo.source", "pk": 15640, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Joseph_1784_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422053}}, {"model": "metainfo.source", "pk": 15641, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Karl_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422054}}, {"model": "metainfo.source", "pk": 15642, "fields": {"orig_filename": "Giovanelli-Gerstburg_Benedikt_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422050}}, {"model": "metainfo.source", "pk": 15643, "fields": {"orig_filename": "Girardi_Alexander_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422123}}, {"model": "metainfo.source", "pk": 15644, "fields": {"orig_filename": "Giskra_Karl_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446f.", "author": "", "orig_id": 1422125}}, {"model": "metainfo.source", "pk": 15645, "fields": {"orig_filename": "Gissendorf_Karl_1825_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422126}}, {"model": "metainfo.source", "pk": 15646, "fields": {"orig_filename": "Gitlbauer_Michael_1847_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422127}}, {"model": "metainfo.source", "pk": 15647, "fields": {"orig_filename": "Gitschthaler_Anton_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422128}}, {"model": "metainfo.source", "pk": 15648, "fields": {"orig_filename": "Giugno_Karl_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447f.", "author": "", "orig_id": 1422129}}, {"model": "metainfo.source", "pk": 15649, "fields": {"orig_filename": "Giussani_Carlo_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422130}}, {"model": "metainfo.source", "pk": 15650, "fields": {"orig_filename": "Glabinski_Stanislaw_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422131}}, {"model": "metainfo.source", "pk": 15651, "fields": {"orig_filename": "Glader_Kosmas_1863_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422132}}, {"model": "metainfo.source", "pk": 15652, "fields": {"orig_filename": "Glaeser_Franz_1798_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422133}}, {"model": "metainfo.source", "pk": 15653, "fields": {"orig_filename": "Glaessner_Arthur_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1", "author": "", "orig_id": 1418964}}, {"model": "metainfo.source", "pk": 15654, "fields": {"orig_filename": "Glaise-Horstenau_Edmund_1882_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1", "author": "", "orig_id": 1418965}}, {"model": "metainfo.source", "pk": 15655, "fields": {"orig_filename": "Glanz-Eicha_Egon_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418967}}, {"model": "metainfo.source", "pk": 15656, "fields": {"orig_filename": "Glanz-Eicha_Hugo_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418968}}, {"model": "metainfo.source", "pk": 15657, "fields": {"orig_filename": "Glanz_Joseph_1795_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1f.", "author": "", "orig_id": 1418966}}, {"model": "metainfo.source", "pk": 15658, "fields": {"orig_filename": "Glaser_Arthur_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1419471}}, {"model": "metainfo.source", "pk": 15659, "fields": {"orig_filename": "Glaser_Eduard_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2f.", "author": "", "orig_id": 1419472}}, {"model": "metainfo.source", "pk": 15660, "fields": {"orig_filename": "Glaser_Erhard_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 3", "author": "", "orig_id": 1419473}}, {"model": "metainfo.source", "pk": 15661, "fields": {"orig_filename": "Glaser_Julius_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 3f.", "author": "", "orig_id": 1419474}}, {"model": "metainfo.source", "pk": 15662, "fields": {"orig_filename": "Glaser_Karel_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4", "author": "", "orig_id": 1419475}}, {"model": "metainfo.source", "pk": 15663, "fields": {"orig_filename": "Glaser_Konrad_1903_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4", "author": "", "orig_id": 1419476}}, {"model": "metainfo.source", "pk": 15664, "fields": {"orig_filename": "Glaser_Rudolf_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4f.", "author": "", "orig_id": 1419477}}, {"model": "metainfo.source", "pk": 15665, "fields": {"orig_filename": "Glas_Franz_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418970}}, {"model": "metainfo.source", "pk": 15666, "fields": {"orig_filename": "Gartner_Anton_1817_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421451}}, {"model": "metainfo.source", "pk": 15667, "fields": {"orig_filename": "Gartner_Anton_1820_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421452}}, {"model": "metainfo.source", "pk": 15668, "fields": {"orig_filename": "Gartner_Hermine_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421453}}, {"model": "metainfo.source", "pk": 15669, "fields": {"orig_filename": "Gartner_Josef_1796_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421454}}, {"model": "metainfo.source", "pk": 15670, "fields": {"orig_filename": "Gartner_Theodor_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404f.", "author": "", "orig_id": 1421455}}, {"model": "metainfo.source", "pk": 15671, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Erasmus_1788_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421456}}, {"model": "metainfo.source", "pk": 15672, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Karl_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421457}}, {"model": "metainfo.source", "pk": 15673, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Peter_1774_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421458}}, {"model": "metainfo.source", "pk": 15674, "fields": {"orig_filename": "Gasiorowski_Napoleon-Jan_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405f.", "author": "", "orig_id": 1421459}}, {"model": "metainfo.source", "pk": 15675, "fields": {"orig_filename": "Gasser-Valhorn_Josef_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421466}}, {"model": "metainfo.source", "pk": 15676, "fields": {"orig_filename": "Gasser_Georg_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421460}}, {"model": "metainfo.source", "pk": 15677, "fields": {"orig_filename": "Gasser_Gregor_1868_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421461}}, {"model": "metainfo.source", "pk": 15678, "fields": {"orig_filename": "Gasser_Hanns_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421462}}, {"model": "metainfo.source", "pk": 15679, "fields": {"orig_filename": "Gasser_Johann_1847_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421463}}, {"model": "metainfo.source", "pk": 15680, "fields": {"orig_filename": "Gasser_Vinzenz-Ferrer_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421465}}, {"model": "metainfo.source", "pk": 15681, "fields": {"orig_filename": "Gasser_Vinzenz_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406f.", "author": "", "orig_id": 1421464}}, {"model": "metainfo.source", "pk": 15682, "fields": {"orig_filename": "Gassner_Andreas_1776_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407f.", "author": "", "orig_id": 1421468}}, {"model": "metainfo.source", "pk": 15683, "fields": {"orig_filename": "Gassner_Andreas_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421469}}, {"model": "metainfo.source", "pk": 15684, "fields": {"orig_filename": "Gassner_Andre_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421467}}, {"model": "metainfo.source", "pk": 15685, "fields": {"orig_filename": "Gassner_Anton_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421470}}, {"model": "metainfo.source", "pk": 15686, "fields": {"orig_filename": "Gassner_Ferdinand-Simon_1798_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421472}}, {"model": "metainfo.source", "pk": 15687, "fields": {"orig_filename": "Gassner_Ferdinand_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421471}}, {"model": "metainfo.source", "pk": 15688, "fields": {"orig_filename": "Gassner_Franz-Josef_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421473}}, {"model": "metainfo.source", "pk": 15689, "fields": {"orig_filename": "Gassner_Guido_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408f.", "author": "", "orig_id": 1421474}}, {"model": "metainfo.source", "pk": 15690, "fields": {"orig_filename": "Gassner_Heinrich_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421475}}, {"model": "metainfo.source", "pk": 15691, "fields": {"orig_filename": "Gassner_Johann_1821_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421476}}, {"model": "metainfo.source", "pk": 15692, "fields": {"orig_filename": "Gassner_Julius_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421477}}, {"model": "metainfo.source", "pk": 15693, "fields": {"orig_filename": "Gassner_Michael_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421554}}, {"model": "metainfo.source", "pk": 15694, "fields": {"orig_filename": "Gassner_Theodor_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409f.", "author": "", "orig_id": 1421555}}, {"model": "metainfo.source", "pk": 15695, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Albert-Josef_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421556}}, {"model": "metainfo.source", "pk": 15696, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Anton-Franz_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421557}}, {"model": "metainfo.source", "pk": 15697, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Erich_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421558}}, {"model": "metainfo.source", "pk": 15698, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Gustav_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421559}}, {"model": "metainfo.source", "pk": 15699, "fields": {"orig_filename": "Gatscher_Emanuel_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421560}}, {"model": "metainfo.source", "pk": 15700, "fields": {"orig_filename": "Gatterer_Hilarius_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421561}}, {"model": "metainfo.source", "pk": 15701, "fields": {"orig_filename": "Gatterer_Michael_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410f.", "author": "", "orig_id": 1421562}}, {"model": "metainfo.source", "pk": 15702, "fields": {"orig_filename": "Gauby_Joseph_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411", "author": "", "orig_id": 1421563}}, {"model": "metainfo.source", "pk": 15703, "fields": {"orig_filename": "Gauermann_Friedrich_1807_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411", "author": "", "orig_id": 1421564}}, {"model": "metainfo.source", "pk": 15704, "fields": {"orig_filename": "Gauermann_Jakob_1773_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411f.", "author": "", "orig_id": 1421565}}, {"model": "metainfo.source", "pk": 15705, "fields": {"orig_filename": "Gaugl_Josef_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420104}}, {"model": "metainfo.source", "pk": 15706, "fields": {"orig_filename": "Gaulhofer_Karl_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420107}}, {"model": "metainfo.source", "pk": 15707, "fields": {"orig_filename": "Gaul_Franz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420105}}, {"model": "metainfo.source", "pk": 15708, "fields": {"orig_filename": "Gaul_Franz_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420106}}, {"model": "metainfo.source", "pk": 15709, "fields": {"orig_filename": "Gaul_Gustav_1836_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420113}}, {"model": "metainfo.source", "pk": 15710, "fields": {"orig_filename": "Gaunersdorfer_Johann_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420108}}, {"model": "metainfo.source", "pk": 15711, "fields": {"orig_filename": "Gaupmann_Rudolf_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420109}}, {"model": "metainfo.source", "pk": 15712, "fields": {"orig_filename": "Gaupmann_Rudolf_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420110}}, {"model": "metainfo.source", "pk": 15713, "fields": {"orig_filename": "Gause_Wilhelm_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420111}}, {"model": "metainfo.source", "pk": 15714, "fields": {"orig_filename": "Gautsch-Frankenthurn_Paul_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413f.", "author": "", "orig_id": 1420112}}, {"model": "metainfo.source", "pk": 15715, "fields": {"orig_filename": "Gavasini_Alois_1759_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421566}}, {"model": "metainfo.source", "pk": 15716, "fields": {"orig_filename": "Gavazzi_Artur_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421567}}, {"model": "metainfo.source", "pk": 15717, "fields": {"orig_filename": "Gawalewicz_Marian_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421568}}, {"model": "metainfo.source", "pk": 15718, "fields": {"orig_filename": "Gawalowski_Anton-Karl-Wilhelm_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421569}}, {"model": "metainfo.source", "pk": 15719, "fields": {"orig_filename": "Gawalowski_Karl-Wilhelm_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421570}}, {"model": "metainfo.source", "pk": 15720, "fields": {"orig_filename": "Gawelek_Franciszek_1884_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421571}}, {"model": "metainfo.source", "pk": 15721, "fields": {"orig_filename": "Gebauer-Fuelnegg_Erich_1901_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421575}}, {"model": "metainfo.source", "pk": 15722, "fields": {"orig_filename": "Gebauerova_Marie_1869_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421576}}, {"model": "metainfo.source", "pk": 15723, "fields": {"orig_filename": "Gebauer_Anton-Karl_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421572}}, {"model": "metainfo.source", "pk": 15724, "fields": {"orig_filename": "Gebauer_Jan_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421574}}, {"model": "metainfo.source", "pk": 15725, "fields": {"orig_filename": "Gebbel_Franz_1835_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415f.", "author": "", "orig_id": 1421577}}, {"model": "metainfo.source", "pk": 15726, "fields": {"orig_filename": "Gebhardt_Lajos_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421648}}, {"model": "metainfo.source", "pk": 15727, "fields": {"orig_filename": "Gebhart_Andreas_1881_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421649}}, {"model": "metainfo.source", "pk": 15728, "fields": {"orig_filename": "Geczy_Stefan_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421650}}, {"model": "metainfo.source", "pk": 15729, "fields": {"orig_filename": "Gegenbauer_Leopold_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416f.", "author": "", "orig_id": 1421651}}, {"model": "metainfo.source", "pk": 15730, "fields": {"orig_filename": "Gegenbauer_Viktor_1884_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421652}}, {"model": "metainfo.source", "pk": 15731, "fields": {"orig_filename": "Gehmacher_Friedrich_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421653}}, {"model": "metainfo.source", "pk": 15732, "fields": {"orig_filename": "Geiger_Andreas_1773_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421654}}, {"model": "metainfo.source", "pk": 15733, "fields": {"orig_filename": "Geiger_Joseph_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421655}}, {"model": "metainfo.source", "pk": 15734, "fields": {"orig_filename": "Geiger_Karl-Josef_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417f.", "author": "", "orig_id": 1421656}}, {"model": "metainfo.source", "pk": 15735, "fields": {"orig_filename": "Geiger_Peter-Johann-Nepomuk_1805_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421657}}, {"model": "metainfo.source", "pk": 15736, "fields": {"orig_filename": "Geissler_Ludwig_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421658}}, {"model": "metainfo.source", "pk": 15737, "fields": {"orig_filename": "Geistinger_Marie_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421659}}, {"model": "metainfo.source", "pk": 15738, "fields": {"orig_filename": "Geitler-Armingen_Josef_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421661}}, {"model": "metainfo.source", "pk": 15739, "fields": {"orig_filename": "Geitler_Leopold-Vaclav_1847_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418f.", "author": "", "orig_id": 1421660}}, {"model": "metainfo.source", "pk": 15740, "fields": {"orig_filename": "Gelber_Adolf_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421662}}, {"model": "metainfo.source", "pk": 15741, "fields": {"orig_filename": "Gelbhaus_Sigmund-Josua-Samuel_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421663}}, {"model": "metainfo.source", "pk": 15742, "fields": {"orig_filename": "Gelcich_Eugen_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421664}}, {"model": "metainfo.source", "pk": 15743, "fields": {"orig_filename": "Geldern-Egmond-Arcen_Gustav_1837_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419f.", "author": "", "orig_id": 1421665}}, {"model": "metainfo.source", "pk": 15744, "fields": {"orig_filename": "Gelinek_Joseph_1758_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421666}}, {"model": "metainfo.source", "pk": 15745, "fields": {"orig_filename": "Gelleri_Moritz_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421668}}, {"model": "metainfo.source", "pk": 15746, "fields": {"orig_filename": "Gellert_Grete_1879_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421669}}, {"model": "metainfo.source", "pk": 15747, "fields": {"orig_filename": "Geller_Leo_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421667}}, {"model": "metainfo.source", "pk": 15748, "fields": {"orig_filename": "Gelmi_Enrico_1855_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421670}}, {"model": "metainfo.source", "pk": 15749, "fields": {"orig_filename": "Geltch_Johann-Friedrich_1815_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421671}}, {"model": "metainfo.source", "pk": 15750, "fields": {"orig_filename": "Genczik_August_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421672}}, {"model": "metainfo.source", "pk": 15751, "fields": {"orig_filename": "Genee_Franz-Friedrich-Richard_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421673}}, {"model": "metainfo.source", "pk": 15752, "fields": {"orig_filename": "Genersich_Anton_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421746}}, {"model": "metainfo.source", "pk": 15753, "fields": {"orig_filename": "Genersich_Christian_1759_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421747}}, {"model": "metainfo.source", "pk": 15754, "fields": {"orig_filename": "Genersich_Johann_1761_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421748}}, {"model": "metainfo.source", "pk": 15755, "fields": {"orig_filename": "Genersich_Samuel_1768_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421749}}, {"model": "metainfo.source", "pk": 15756, "fields": {"orig_filename": "Gentz_Friedrich_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422ff.", "author": "", "orig_id": 1421750}}, {"model": "metainfo.source", "pk": 15757, "fields": {"orig_filename": "Gentz_Josef_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421751}}, {"model": "metainfo.source", "pk": 15758, "fields": {"orig_filename": "Georgievics_Georg_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421753}}, {"model": "metainfo.source", "pk": 15759, "fields": {"orig_filename": "Georgi_Friedrich-Robert_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421752}}, {"model": "metainfo.source", "pk": 15760, "fields": {"orig_filename": "Geppert_Anton_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424f.", "author": "", "orig_id": 1421755}}, {"model": "metainfo.source", "pk": 15761, "fields": {"orig_filename": "Geppert_Menrad_1770_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421758}}, {"model": "metainfo.source", "pk": 15762, "fields": {"orig_filename": "Gepp_Jakob_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421754}}, {"model": "metainfo.source", "pk": 15763, "fields": {"orig_filename": "Gerba_Raimund_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421756}}, {"model": "metainfo.source", "pk": 15764, "fields": {"orig_filename": "Gerbic_Fran_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421757}}, {"model": "metainfo.source", "pk": 15765, "fields": {"orig_filename": "Gerhardinger_Hermann_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421759}}, {"model": "metainfo.source", "pk": 15766, "fields": {"orig_filename": "Gericke_Wilhelm_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425f.", "author": "", "orig_id": 1421760}}, {"model": "metainfo.source", "pk": 15767, "fields": {"orig_filename": "Geringer-Oedenberg_Gabriel_1758_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421762}}, {"model": "metainfo.source", "pk": 15768, "fields": {"orig_filename": "Fuehrer_Robert_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420976}}, {"model": "metainfo.source", "pk": 15769, "fields": {"orig_filename": "Fuehrich_Josef_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380f.", "author": "", "orig_id": 1420977}}, {"model": "metainfo.source", "pk": 15770, "fields": {"orig_filename": "Fuehrich_Maximilian_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420978}}, {"model": "metainfo.source", "pk": 15771, "fields": {"orig_filename": "Fueloep-Miller_Rene_1891_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1435277}}, {"model": "metainfo.source", "pk": 15772, "fields": {"orig_filename": "Fuerst_Johann_1825_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420979}}, {"model": "metainfo.source", "pk": 15773, "fields": {"orig_filename": "Fuerst_Rudolf_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420980}}, {"model": "metainfo.source", "pk": 15774, "fields": {"orig_filename": "Fuerth_Emil_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381f.", "author": "", "orig_id": 1420981}}, {"model": "metainfo.source", "pk": 15775, "fields": {"orig_filename": "Fuerth_Jaro_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2029584}}, {"model": "metainfo.source", "pk": 15776, "fields": {"orig_filename": "Fuerth_Otto_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420982}}, {"model": "metainfo.source", "pk": 15777, "fields": {"orig_filename": "Fuester_Anton_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420983}}, {"model": "metainfo.source", "pk": 15778, "fields": {"orig_filename": "Fuetscher_Lorenz_1894_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420984}}, {"model": "metainfo.source", "pk": 15779, "fields": {"orig_filename": "Fugger_Eberhard_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382f.", "author": "", "orig_id": 1420985}}, {"model": "metainfo.source", "pk": 15780, "fields": {"orig_filename": "Fumagalli_Adolfo_1828_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420986}}, {"model": "metainfo.source", "pk": 15781, "fields": {"orig_filename": "Funk_Salomon_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420987}}, {"model": "metainfo.source", "pk": 15782, "fields": {"orig_filename": "Funtek_Anton_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420988}}, {"model": "metainfo.source", "pk": 15783, "fields": {"orig_filename": "Furtwaengler_Philipp-Friedrich-Pius_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420989}}, {"model": "metainfo.source", "pk": 15784, "fields": {"orig_filename": "Fussenegger_Ernst_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1421068}}, {"model": "metainfo.source", "pk": 15785, "fields": {"orig_filename": "Fuss_Heinrich_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420990}}, {"model": "metainfo.source", "pk": 15786, "fields": {"orig_filename": "Fuss_Johann-Ev_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420991}}, {"model": "metainfo.source", "pk": 15787, "fields": {"orig_filename": "Fuss_Karl_1817_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420992}}, {"model": "metainfo.source", "pk": 15788, "fields": {"orig_filename": "Fuss_Michael_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1421067}}, {"model": "metainfo.source", "pk": 15789, "fields": {"orig_filename": "Gaal_Eugen_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421069}}, {"model": "metainfo.source", "pk": 15790, "fields": {"orig_filename": "Gaal_Georg_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421070}}, {"model": "metainfo.source", "pk": 15791, "fields": {"orig_filename": "Gaal_Jozsef_1811_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421071}}, {"model": "metainfo.source", "pk": 15792, "fields": {"orig_filename": "Gabaglio_Antonio_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421072}}, {"model": "metainfo.source", "pk": 15793, "fields": {"orig_filename": "Gabelli_Antonio_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421074}}, {"model": "metainfo.source", "pk": 15794, "fields": {"orig_filename": "Gabel_Heinrich_1873_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421073}}, {"model": "metainfo.source", "pk": 15795, "fields": {"orig_filename": "Gaber_Hans_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421075}}, {"model": "metainfo.source", "pk": 15796, "fields": {"orig_filename": "Gabillon_Ludwig_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421082}}, {"model": "metainfo.source", "pk": 15797, "fields": {"orig_filename": "Gablenz_Ludwig_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386f.", "author": "", "orig_id": 1421084}}, {"model": "metainfo.source", "pk": 15798, "fields": {"orig_filename": "Gabler_Joseph_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 387", "author": "", "orig_id": 1421085}}, {"model": "metainfo.source", "pk": 15799, "fields": {"orig_filename": "Gabler_Wilhelm_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421086}}, {"model": "metainfo.source", "pk": 15800, "fields": {"orig_filename": "Gabl_Alois_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421083}}, {"model": "metainfo.source", "pk": 15801, "fields": {"orig_filename": "Gabriely_Adolf_1829_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421087}}, {"model": "metainfo.source", "pk": 15802, "fields": {"orig_filename": "Gabrscek_Andrej_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421165}}, {"model": "metainfo.source", "pk": 15803, "fields": {"orig_filename": "Gaddi_Paolo_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421166}}, {"model": "metainfo.source", "pk": 15804, "fields": {"orig_filename": "Gaehrich_Wenzel_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421168}}, {"model": "metainfo.source", "pk": 15805, "fields": {"orig_filename": "Gaensbacher_Johann-Bapt_1778_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388f.", "author": "", "orig_id": 1421167}}, {"model": "metainfo.source", "pk": 15806, "fields": {"orig_filename": "Gaensbacher_Josef_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421169}}, {"model": "metainfo.source", "pk": 15807, "fields": {"orig_filename": "Gaertner_Corbinian_1751_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421170}}, {"model": "metainfo.source", "pk": 15808, "fields": {"orig_filename": "Gaertner_Friedrich_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421171}}, {"model": "metainfo.source", "pk": 15809, "fields": {"orig_filename": "Gaertner_Gustav_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389f.", "author": "", "orig_id": 1421172}}, {"model": "metainfo.source", "pk": 15810, "fields": {"orig_filename": "Gaertner_Nikolas_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390", "author": "", "orig_id": 1421173}}, {"model": "metainfo.source", "pk": 15811, "fields": {"orig_filename": "Gaertner_Wilhelm_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390", "author": "", "orig_id": 1421174}}, {"model": "metainfo.source", "pk": 15812, "fields": {"orig_filename": "Gagern_Friedrich_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390f.", "author": "", "orig_id": 1421175}}, {"model": "metainfo.source", "pk": 15813, "fields": {"orig_filename": "Gagern_Max-Ludwig_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 391f.", "author": "", "orig_id": 1421176}}, {"model": "metainfo.source", "pk": 15814, "fields": {"orig_filename": "Gaheis_Alexander_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421177}}, {"model": "metainfo.source", "pk": 15815, "fields": {"orig_filename": "Gaigher_Horatius_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421179}}, {"model": "metainfo.source", "pk": 15816, "fields": {"orig_filename": "Gaisberger_Joseph_1792_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421178}}, {"model": "metainfo.source", "pk": 15817, "fields": {"orig_filename": "Gaj_Ljudevit_1809_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421180}}, {"model": "metainfo.source", "pk": 15818, "fields": {"orig_filename": "Galehr_Fridolin_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421181}}, {"model": "metainfo.source", "pk": 15819, "fields": {"orig_filename": "Galgotzy_Anton_1837_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421182}}, {"model": "metainfo.source", "pk": 15820, "fields": {"orig_filename": "Galicz_Jan_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421183}}, {"model": "metainfo.source", "pk": 15821, "fields": {"orig_filename": "Gallenberg_Wenzel-Robert_1783_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421263}}, {"model": "metainfo.source", "pk": 15822, "fields": {"orig_filename": "Gallenga_Antonio_1812_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421187}}, {"model": "metainfo.source", "pk": 15823, "fields": {"orig_filename": "Gallenstein_Meinrad_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394f.", "author": "", "orig_id": 1421264}}, {"model": "metainfo.source", "pk": 15824, "fields": {"orig_filename": "Gallesio_Giorgio_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421265}}, {"model": "metainfo.source", "pk": 15825, "fields": {"orig_filename": "Galle_Ernst_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421186}}, {"model": "metainfo.source", "pk": 15826, "fields": {"orig_filename": "Gallina_Josef-Wilhelm_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421266}}, {"model": "metainfo.source", "pk": 15827, "fields": {"orig_filename": "Gallini_Stefano_1756_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421267}}, {"model": "metainfo.source", "pk": 15828, "fields": {"orig_filename": "Galliny_Florentine_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421268}}, {"model": "metainfo.source", "pk": 15829, "fields": {"orig_filename": "Gallmeyer_Josefine_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395f.", "author": "", "orig_id": 1421269}}, {"model": "metainfo.source", "pk": 15830, "fields": {"orig_filename": "Gallois_Franz_1770_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421270}}, {"model": "metainfo.source", "pk": 15831, "fields": {"orig_filename": "Gallois_Ludwig_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421271}}, {"model": "metainfo.source", "pk": 15832, "fields": {"orig_filename": "Gallois_Moritz_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421272}}, {"model": "metainfo.source", "pk": 15833, "fields": {"orig_filename": "Gall_Johann_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393f.", "author": "", "orig_id": 1421184}}, {"model": "metainfo.source", "pk": 15834, "fields": {"orig_filename": "Gall_Josef_1820_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421185}}, {"model": "metainfo.source", "pk": 15835, "fields": {"orig_filename": "Galovic_Franjo_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421274}}, {"model": "metainfo.source", "pk": 15836, "fields": {"orig_filename": "Galston_Gottfried_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421275}}, {"model": "metainfo.source", "pk": 15837, "fields": {"orig_filename": "Galura_Bernhard_1764_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396f.", "author": "", "orig_id": 1421276}}, {"model": "metainfo.source", "pk": 15838, "fields": {"orig_filename": "Galvagni_Peter-Cav_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421277}}, {"model": "metainfo.source", "pk": 15839, "fields": {"orig_filename": "Galvani_Giovanni_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421278}}, {"model": "metainfo.source", "pk": 15840, "fields": {"orig_filename": "Gamerith_Franz_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421279}}, {"model": "metainfo.source", "pk": 15841, "fields": {"orig_filename": "Gamerith_Walther_1903_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397f.", "author": "", "orig_id": 1421280}}, {"model": "metainfo.source", "pk": 15842, "fields": {"orig_filename": "Ganahl_Arnold_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421282}}, {"model": "metainfo.source", "pk": 15843, "fields": {"orig_filename": "Ganahl_Carl_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421283}}, {"model": "metainfo.source", "pk": 15844, "fields": {"orig_filename": "Ganahl_Carl_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421284}}, {"model": "metainfo.source", "pk": 15845, "fields": {"orig_filename": "Ganahl_Johann-Josef_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421286}}, {"model": "metainfo.source", "pk": 15846, "fields": {"orig_filename": "Ganahl_Johann_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398f.", "author": "", "orig_id": 1421285}}, {"model": "metainfo.source", "pk": 15847, "fields": {"orig_filename": "Ganahl_Karl-Hans_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421287}}, {"model": "metainfo.source", "pk": 15848, "fields": {"orig_filename": "Ganahl_Rudolf_1833_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421288}}, {"model": "metainfo.source", "pk": 15849, "fields": {"orig_filename": "Gander_Hieronymus_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399f.", "author": "", "orig_id": 1421358}}, {"model": "metainfo.source", "pk": 15850, "fields": {"orig_filename": "Ganghofner_Friedrich_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421359}}, {"model": "metainfo.source", "pk": 15851, "fields": {"orig_filename": "Ganglbauer_Coelestin-Josef_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400f.", "author": "", "orig_id": 1421363}}, {"model": "metainfo.source", "pk": 15852, "fields": {"orig_filename": "Ganglbauer_Ludwig_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421364}}, {"model": "metainfo.source", "pk": 15853, "fields": {"orig_filename": "Ganglberger_Johann-Wilhelm_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421365}}, {"model": "metainfo.source", "pk": 15854, "fields": {"orig_filename": "Gangl_Alojz_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421360}}, {"model": "metainfo.source", "pk": 15855, "fields": {"orig_filename": "Gangl_Josef_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1420103}}, {"model": "metainfo.source", "pk": 15856, "fields": {"orig_filename": "Gangl_Josef_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421361}}, {"model": "metainfo.source", "pk": 15857, "fields": {"orig_filename": "Gangl_Virgil_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421362}}, {"model": "metainfo.source", "pk": 15858, "fields": {"orig_filename": "Ganner_Anton-Maria_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421366}}, {"model": "metainfo.source", "pk": 15859, "fields": {"orig_filename": "Gans-Ludassy_Julius_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401f.", "author": "", "orig_id": 1421367}}, {"model": "metainfo.source", "pk": 15860, "fields": {"orig_filename": "Gans-Ludassy_Moritz_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421368}}, {"model": "metainfo.source", "pk": 15861, "fields": {"orig_filename": "Ganser_Anton_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421369}}, {"model": "metainfo.source", "pk": 15862, "fields": {"orig_filename": "Gans_Johann_1886_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444515}}, {"model": "metainfo.source", "pk": 15863, "fields": {"orig_filename": "Ganz_Abraham_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421370}}, {"model": "metainfo.source", "pk": 15864, "fields": {"orig_filename": "Garay_Janos_1812_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402f.", "author": "", "orig_id": 1421372}}, {"model": "metainfo.source", "pk": 15865, "fields": {"orig_filename": "Garber_Josef_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421378}}, {"model": "metainfo.source", "pk": 15866, "fields": {"orig_filename": "Gardonyi_Geza_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421379}}, {"model": "metainfo.source", "pk": 15867, "fields": {"orig_filename": "Gareis_Anton_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421380}}, {"model": "metainfo.source", "pk": 15868, "fields": {"orig_filename": "Garger_Ernst_1892_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421381}}, {"model": "metainfo.source", "pk": 15869, "fields": {"orig_filename": "Garovaglio_Santo_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403f.", "author": "", "orig_id": 1421382}}, {"model": "metainfo.source", "pk": 15870, "fields": {"orig_filename": "Freuensfeld_Josip_1861_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422011}}, {"model": "metainfo.source", "pk": 15871, "fields": {"orig_filename": "Freundlich_Elisabeth_1906_2001.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1435143}}, {"model": "metainfo.source", "pk": 15872, "fields": {"orig_filename": "Freundlich_Emmi_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422015}}, {"model": "metainfo.source", "pk": 15873, "fields": {"orig_filename": "Freund_August_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422012}}, {"model": "metainfo.source", "pk": 15874, "fields": {"orig_filename": "Freund_Georg_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358f.", "author": "", "orig_id": 1422013}}, {"model": "metainfo.source", "pk": 15875, "fields": {"orig_filename": "Freund_Leopold_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422014}}, {"model": "metainfo.source", "pk": 15876, "fields": {"orig_filename": "Freyer_Heinrich_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422020}}, {"model": "metainfo.source", "pk": 15877, "fields": {"orig_filename": "Freyn_Joseph-Franz_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422021}}, {"model": "metainfo.source", "pk": 15878, "fields": {"orig_filename": "Freyssmuth_Josef_1786_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422022}}, {"model": "metainfo.source", "pk": 15879, "fields": {"orig_filename": "Freytag_Gustav_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422023}}, {"model": "metainfo.source", "pk": 15880, "fields": {"orig_filename": "Frey_Anton_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422016}}, {"model": "metainfo.source", "pk": 15881, "fields": {"orig_filename": "Frey_Friedrich_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422017}}, {"model": "metainfo.source", "pk": 15882, "fields": {"orig_filename": "Frey_Johanna_1867_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359f.", "author": "", "orig_id": 1422018}}, {"model": "metainfo.source", "pk": 15883, "fields": {"orig_filename": "Frey_Wilhelm_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422019}}, {"model": "metainfo.source", "pk": 15884, "fields": {"orig_filename": "Friberth_Karl_1736_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422024}}, {"model": "metainfo.source", "pk": 15885, "fields": {"orig_filename": "Frick_Karl_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422026}}, {"model": "metainfo.source", "pk": 15886, "fields": {"orig_filename": "Frida_Emil_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422027}}, {"model": "metainfo.source", "pk": 15887, "fields": {"orig_filename": "Frieberger_Gustav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422028}}, {"model": "metainfo.source", "pk": 15888, "fields": {"orig_filename": "Friedell_Egon_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362", "author": "", "orig_id": 1422030}}, {"model": "metainfo.source", "pk": 15889, "fields": {"orig_filename": "Friedinger_Karl_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362", "author": "", "orig_id": 1422100}}, {"model": "metainfo.source", "pk": 15890, "fields": {"orig_filename": "Friedjung_Heinrich_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362f.", "author": "", "orig_id": 1422101}}, {"model": "metainfo.source", "pk": 15891, "fields": {"orig_filename": "Friedjung_Josef-K_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422102}}, {"model": "metainfo.source", "pk": 15892, "fields": {"orig_filename": "Friedlaender-Malheim_Friedrich_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422108}}, {"model": "metainfo.source", "pk": 15893, "fields": {"orig_filename": "Friedlaender_Adolf-A_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363f.", "author": "", "orig_id": 1422105}}, {"model": "metainfo.source", "pk": 15894, "fields": {"orig_filename": "Friedlaender_Max_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422106}}, {"model": "metainfo.source", "pk": 15895, "fields": {"orig_filename": "Friedlaender_Paul_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422107}}, {"model": "metainfo.source", "pk": 15896, "fields": {"orig_filename": "Friedl_Richard_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422103}}, {"model": "metainfo.source", "pk": 15897, "fields": {"orig_filename": "Friedl_Theodor_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422104}}, {"model": "metainfo.source", "pk": 15898, "fields": {"orig_filename": "Friedmann_Meir_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422110}}, {"model": "metainfo.source", "pk": 15899, "fields": {"orig_filename": "Friedmann_Otto-Bernhard_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422112}}, {"model": "metainfo.source", "pk": 15900, "fields": {"orig_filename": "Friedmann_Otto_1860_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422111}}, {"model": "metainfo.source", "pk": 15901, "fields": {"orig_filename": "Friedmann_Siegwart_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365f.", "author": "", "orig_id": 1422113}}, {"model": "metainfo.source", "pk": 15902, "fields": {"orig_filename": "Friedman_Ignaz_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364f.", "author": "", "orig_id": 1422109}}, {"model": "metainfo.source", "pk": 15903, "fields": {"orig_filename": "Friedrichsthal_Emanuel_1809_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422118}}, {"model": "metainfo.source", "pk": 15904, "fields": {"orig_filename": "Friedrich_Ferdinand-Leopold_1821_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422114}}, {"model": "metainfo.source", "pk": 15905, "fields": {"orig_filename": "Friedrich_Karl_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422116}}, {"model": "metainfo.source", "pk": 15906, "fields": {"orig_filename": "Friedrich_Maria-Albrecht_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422115}}, {"model": "metainfo.source", "pk": 15907, "fields": {"orig_filename": "Friedwagner_Matthias_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366f.", "author": "", "orig_id": 1422119}}, {"model": "metainfo.source", "pk": 15908, "fields": {"orig_filename": "Fried_Alfred-Hermann_1864_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361f.", "author": "", "orig_id": 1422029}}, {"model": "metainfo.source", "pk": 15909, "fields": {"orig_filename": "Fries-Skene_Alfred_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422121}}, {"model": "metainfo.source", "pk": 15910, "fields": {"orig_filename": "Friesach_Karl_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422122}}, {"model": "metainfo.source", "pk": 15911, "fields": {"orig_filename": "Friese_Carl-Adolph_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367f.", "author": "", "orig_id": 1420701}}, {"model": "metainfo.source", "pk": 15912, "fields": {"orig_filename": "Friese_Carl_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1420700}}, {"model": "metainfo.source", "pk": 15913, "fields": {"orig_filename": "Friess_Gottfried_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420702}}, {"model": "metainfo.source", "pk": 15914, "fields": {"orig_filename": "Fries_Moritz-Christian_1777_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422120}}, {"model": "metainfo.source", "pk": 15915, "fields": {"orig_filename": "Frimberger_Johann-Georg_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420703}}, {"model": "metainfo.source", "pk": 15916, "fields": {"orig_filename": "Frimmel-Traisenau_Theodor_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420704}}, {"model": "metainfo.source", "pk": 15917, "fields": {"orig_filename": "Frimont-Palota_Johann-Maria_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368f.", "author": "", "orig_id": 1420705}}, {"model": "metainfo.source", "pk": 15918, "fields": {"orig_filename": "Frind_Anton-Ludwig_1823_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420706}}, {"model": "metainfo.source", "pk": 15919, "fields": {"orig_filename": "Frind_Wenzel-Anton_1843_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420707}}, {"model": "metainfo.source", "pk": 15920, "fields": {"orig_filename": "Frint_Jakob_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420708}}, {"model": "metainfo.source", "pk": 15921, "fields": {"orig_filename": "Frischauer_Berthold_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420711}}, {"model": "metainfo.source", "pk": 15922, "fields": {"orig_filename": "Frischauf_Johannes_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420712}}, {"model": "metainfo.source", "pk": 15923, "fields": {"orig_filename": "Frisch_Anton_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420709}}, {"model": "metainfo.source", "pk": 15924, "fields": {"orig_filename": "Frisch_Hans_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369f.", "author": "", "orig_id": 1420710}}, {"model": "metainfo.source", "pk": 15925, "fields": {"orig_filename": "Fritsch_Anton_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420713}}, {"model": "metainfo.source", "pk": 15926, "fields": {"orig_filename": "Fritsch_Carl_1812_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370f.", "author": "", "orig_id": 1420714}}, {"model": "metainfo.source", "pk": 15927, "fields": {"orig_filename": "Fritsch_Johann_1849_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420715}}, {"model": "metainfo.source", "pk": 15928, "fields": {"orig_filename": "Fritsch_Karl_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420716}}, {"model": "metainfo.source", "pk": 15929, "fields": {"orig_filename": "Fritsch_Karl_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420717}}, {"model": "metainfo.source", "pk": 15930, "fields": {"orig_filename": "Frivaldszky_Emmerich_1799_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371f.", "author": "", "orig_id": 1420718}}, {"model": "metainfo.source", "pk": 15931, "fields": {"orig_filename": "Frivaldszky_Johann_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420719}}, {"model": "metainfo.source", "pk": 15932, "fields": {"orig_filename": "Frodl_Karl_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420720}}, {"model": "metainfo.source", "pk": 15933, "fields": {"orig_filename": "Froehlich_Barbara_1797_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420723}}, {"model": "metainfo.source", "pk": 15934, "fields": {"orig_filename": "Froehlich_Georg_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372f.", "author": "", "orig_id": 1420793}}, {"model": "metainfo.source", "pk": 15935, "fields": {"orig_filename": "Froehlich_Isidor_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420794}}, {"model": "metainfo.source", "pk": 15936, "fields": {"orig_filename": "Froehlich_Josephine_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420795}}, {"model": "metainfo.source", "pk": 15937, "fields": {"orig_filename": "Froehlich_Katharina_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420796}}, {"model": "metainfo.source", "pk": 15938, "fields": {"orig_filename": "Froehlich_Maria-Anna_1793_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420722}}, {"model": "metainfo.source", "pk": 15939, "fields": {"orig_filename": "Froeschel_Berthold-Ignaz_1813_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420797}}, {"model": "metainfo.source", "pk": 15940, "fields": {"orig_filename": "Froeschl_Karl_1848_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420798}}, {"model": "metainfo.source", "pk": 15941, "fields": {"orig_filename": "Frohner_Johann_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128072}}, {"model": "metainfo.source", "pk": 15942, "fields": {"orig_filename": "Fromm_Emil_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373f.", "author": "", "orig_id": 1420799}}, {"model": "metainfo.source", "pk": 15943, "fields": {"orig_filename": "Fromm_Karl-Josef_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420800}}, {"model": "metainfo.source", "pk": 15944, "fields": {"orig_filename": "Fronius_Franz-Friedrich_1829_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420801}}, {"model": "metainfo.source", "pk": 15945, "fields": {"orig_filename": "Fronius_Karl-Josef_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420802}}, {"model": "metainfo.source", "pk": 15946, "fields": {"orig_filename": "Fronz_Emil_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420803}}, {"model": "metainfo.source", "pk": 15947, "fields": {"orig_filename": "Fronz_Oskar_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374f.", "author": "", "orig_id": 1420804}}, {"model": "metainfo.source", "pk": 15948, "fields": {"orig_filename": "Fronz_Richard_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420805}}, {"model": "metainfo.source", "pk": 15949, "fields": {"orig_filename": "Froon-Kirchrath_Josef_1740_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420806}}, {"model": "metainfo.source", "pk": 15950, "fields": {"orig_filename": "Fruehling_Carl_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420807}}, {"model": "metainfo.source", "pk": 15951, "fields": {"orig_filename": "Fruehwald_Ferdinand_1854_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420808}}, {"model": "metainfo.source", "pk": 15952, "fields": {"orig_filename": "Fruehwald_Wilhelm-Theodor_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420809}}, {"model": "metainfo.source", "pk": 15953, "fields": {"orig_filename": "Fruehwirth_Andreas_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375f.", "author": "", "orig_id": 1420810}}, {"model": "metainfo.source", "pk": 15954, "fields": {"orig_filename": "Fruwirth_Carl_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420811}}, {"model": "metainfo.source", "pk": 15955, "fields": {"orig_filename": "Fruwirt_Ferdinand_1812_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420812}}, {"model": "metainfo.source", "pk": 15956, "fields": {"orig_filename": "Fruwirt_Ferdinand_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420813}}, {"model": "metainfo.source", "pk": 15957, "fields": {"orig_filename": "Frydmann-Prawy_Marcell_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376f.", "author": "", "orig_id": 1420883}}, {"model": "metainfo.source", "pk": 15958, "fields": {"orig_filename": "Fuchs_Adalbert_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420884}}, {"model": "metainfo.source", "pk": 15959, "fields": {"orig_filename": "Fuchs_Adalbert_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420885}}, {"model": "metainfo.source", "pk": 15960, "fields": {"orig_filename": "Fuchs_Adalbert_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420886}}, {"model": "metainfo.source", "pk": 15961, "fields": {"orig_filename": "Fuchs_Alfred_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420887}}, {"model": "metainfo.source", "pk": 15962, "fields": {"orig_filename": "Fuchs_Ernst_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420888}}, {"model": "metainfo.source", "pk": 15963, "fields": {"orig_filename": "Fuchs_Franz-Xaver_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420889}}, {"model": "metainfo.source", "pk": 15964, "fields": {"orig_filename": "Fuchs_Georg_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420890}}, {"model": "metainfo.source", "pk": 15965, "fields": {"orig_filename": "Fuchs_Johann-Nepomuk_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420892}}, {"model": "metainfo.source", "pk": 15966, "fields": {"orig_filename": "Fuchs_Johann-Nep_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378f.", "author": "", "orig_id": 1420891}}, {"model": "metainfo.source", "pk": 15967, "fields": {"orig_filename": "Fuchs_Robert_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420893}}, {"model": "metainfo.source", "pk": 15968, "fields": {"orig_filename": "Fuchs_Siegmund_1859_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379", "author": "", "orig_id": 1420894}}, {"model": "metainfo.source", "pk": 15969, "fields": {"orig_filename": "Fuchs_Theodor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379", "author": "", "orig_id": 1420895}}, {"model": "metainfo.source", "pk": 15970, "fields": {"orig_filename": "Fuchs_Viktor_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379f.", "author": "", "orig_id": 1420896}}, {"model": "metainfo.source", "pk": 15971, "fields": {"orig_filename": "Fuchs_Wilhelm_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420897}}, {"model": "metainfo.source", "pk": 15972, "fields": {"orig_filename": "Fueger_Heinrich-Friedrich_1751_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420898}}, {"model": "metainfo.source", "pk": 15973, "fields": {"orig_filename": "Foetterle_Franz_1823_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421445}}, {"model": "metainfo.source", "pk": 15974, "fields": {"orig_filename": "Fogarasi_Johann_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421446}}, {"model": "metainfo.source", "pk": 15975, "fields": {"orig_filename": "Folliot-Crenneville_Franz_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421449}}, {"model": "metainfo.source", "pk": 15976, "fields": {"orig_filename": "Folliot-Crenneville_Ludwig-Karl_1765_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421450}}, {"model": "metainfo.source", "pk": 15977, "fields": {"orig_filename": "Foll_Ferdinand_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334f.", "author": "", "orig_id": 1421448}}, {"model": "metainfo.source", "pk": 15978, "fields": {"orig_filename": "Folnegovic_Fran_1848_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421529}}, {"model": "metainfo.source", "pk": 15979, "fields": {"orig_filename": "Folnesics_Hans_1886_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421530}}, {"model": "metainfo.source", "pk": 15980, "fields": {"orig_filename": "Folnesics_Josef_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421531}}, {"model": "metainfo.source", "pk": 15981, "fields": {"orig_filename": "Fonck_Leopold_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421532}}, {"model": "metainfo.source", "pk": 15982, "fields": {"orig_filename": "Forchheimer_Philipp_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421533}}, {"model": "metainfo.source", "pk": 15983, "fields": {"orig_filename": "Forescu_Maria_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444597}}, {"model": "metainfo.source", "pk": 15984, "fields": {"orig_filename": "Foresti_Johann-Baptist_1776_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421535}}, {"model": "metainfo.source", "pk": 15985, "fields": {"orig_filename": "Forgach_Anton_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421536}}, {"model": "metainfo.source", "pk": 15986, "fields": {"orig_filename": "Formanek_Eduard_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336f.", "author": "", "orig_id": 1421537}}, {"model": "metainfo.source", "pk": 15987, "fields": {"orig_filename": "Formanek_Jaroslav_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421538}}, {"model": "metainfo.source", "pk": 15988, "fields": {"orig_filename": "Formanek_Romuald_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421539}}, {"model": "metainfo.source", "pk": 15989, "fields": {"orig_filename": "Formey_Alfred_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421540}}, {"model": "metainfo.source", "pk": 15990, "fields": {"orig_filename": "Forschneritsch_Alfred-Eduard_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421541}}, {"model": "metainfo.source", "pk": 15991, "fields": {"orig_filename": "Forst-Battaglia_Otto_1889_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444316}}, {"model": "metainfo.source", "pk": 15992, "fields": {"orig_filename": "Forster-Brandt_Ellen_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421547}}, {"model": "metainfo.source", "pk": 15993, "fields": {"orig_filename": "Forster_Adolf-Emanuel_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421544}}, {"model": "metainfo.source", "pk": 15994, "fields": {"orig_filename": "Forster_Joseph_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337f.", "author": "", "orig_id": 1421545}}, {"model": "metainfo.source", "pk": 15995, "fields": {"orig_filename": "Forster_Zdenko_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421546}}, {"model": "metainfo.source", "pk": 15996, "fields": {"orig_filename": "Forstner_August_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421548}}, {"model": "metainfo.source", "pk": 15997, "fields": {"orig_filename": "Forstner_Leopold_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421549}}, {"model": "metainfo.source", "pk": 15998, "fields": {"orig_filename": "Forti_Franz-Anton_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421551}}, {"model": "metainfo.source", "pk": 15999, "fields": {"orig_filename": "Fort_Josef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338f.", "author": "", "orig_id": 1421550}}, {"model": "metainfo.source", "pk": 16000, "fields": {"orig_filename": "Fossek_Wilhelm_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421552}}, {"model": "metainfo.source", "pk": 16001, "fields": {"orig_filename": "Fossel_Viktor_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421553}}, {"model": "metainfo.source", "pk": 16002, "fields": {"orig_filename": "Foullon-Norbeeck_Heinrich_1850_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421623}}, {"model": "metainfo.source", "pk": 16003, "fields": {"orig_filename": "Fournier_Antonie_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421625}}, {"model": "metainfo.source", "pk": 16004, "fields": {"orig_filename": "Fournier_August_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421626}}, {"model": "metainfo.source", "pk": 16005, "fields": {"orig_filename": "Fraenkel_Alexander_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421627}}, {"model": "metainfo.source", "pk": 16006, "fields": {"orig_filename": "Fraenkel_Sigmund_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421628}}, {"model": "metainfo.source", "pk": 16007, "fields": {"orig_filename": "Fraenkel_Wilhelm_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421629}}, {"model": "metainfo.source", "pk": 16008, "fields": {"orig_filename": "Fraenzl_Friedrich_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421630}}, {"model": "metainfo.source", "pk": 16009, "fields": {"orig_filename": "Fraknoi_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421631}}, {"model": "metainfo.source", "pk": 16010, "fields": {"orig_filename": "Francesconi_Hermenegild_1795_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341f.", "author": "", "orig_id": 1421633}}, {"model": "metainfo.source", "pk": 16011, "fields": {"orig_filename": "France_Raoul-H_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421632}}, {"model": "metainfo.source", "pk": 16012, "fields": {"orig_filename": "Franchetti_Fortunata_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421634}}, {"model": "metainfo.source", "pk": 16013, "fields": {"orig_filename": "Francillo-Kaufmann_Hedwig_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421635}}, {"model": "metainfo.source", "pk": 16014, "fields": {"orig_filename": "Franckel_Adolf_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421638}}, {"model": "metainfo.source", "pk": 16015, "fields": {"orig_filename": "Franck_Carl-Heinrich_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421636}}, {"model": "metainfo.source", "pk": 16016, "fields": {"orig_filename": "Franck_Karl_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421637}}, {"model": "metainfo.source", "pk": 16017, "fields": {"orig_filename": "Franges-Mihanovic_Robert_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342f.", "author": "", "orig_id": 1421640}}, {"model": "metainfo.source", "pk": 16018, "fields": {"orig_filename": "Franges_Otto_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421639}}, {"model": "metainfo.source", "pk": 16019, "fields": {"orig_filename": "Frankel_Zacharias_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421729}}, {"model": "metainfo.source", "pk": 16020, "fields": {"orig_filename": "Frankenberger_Johann_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421730}}, {"model": "metainfo.source", "pk": 16021, "fields": {"orig_filename": "Franke_Ivan_1841_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421728}}, {"model": "metainfo.source", "pk": 16022, "fields": {"orig_filename": "Frankfurter_Salomon_1856_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421825}}, {"model": "metainfo.source", "pk": 16023, "fields": {"orig_filename": "Frankl-Gruen_Adolf_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421828}}, {"model": "metainfo.source", "pk": 16024, "fields": {"orig_filename": "Frankl-Hochwart_Lothar_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421829}}, {"model": "metainfo.source", "pk": 16025, "fields": {"orig_filename": "Frankl-Hochwart_Ludwig-August_1810_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421830}}, {"model": "metainfo.source", "pk": 16026, "fields": {"orig_filename": "Frankl_Katharina_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421826}}, {"model": "metainfo.source", "pk": 16027, "fields": {"orig_filename": "Frankl_Pinkas-Fritz_1848_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421827}}, {"model": "metainfo.source", "pk": 16028, "fields": {"orig_filename": "Franko_Ivan_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421831}}, {"model": "metainfo.source", "pk": 16029, "fields": {"orig_filename": "Frank_Eduard_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421641}}, {"model": "metainfo.source", "pk": 16030, "fields": {"orig_filename": "Frank_Ernst_1847_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421642}}, {"model": "metainfo.source", "pk": 16031, "fields": {"orig_filename": "Frank_Gustav-Wilhelm_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421645}}, {"model": "metainfo.source", "pk": 16032, "fields": {"orig_filename": "Frank_Hans_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421646}}, {"model": "metainfo.source", "pk": 16033, "fields": {"orig_filename": "Frank_Johann-Peter_1745_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421647}}, {"model": "metainfo.source", "pk": 16034, "fields": {"orig_filename": "Frank_Josip_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421721}}, {"model": "metainfo.source", "pk": 16035, "fields": {"orig_filename": "Frank_Liborius_1848_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421723}}, {"model": "metainfo.source", "pk": 16036, "fields": {"orig_filename": "Frank_Otto_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421724}}, {"model": "metainfo.source", "pk": 16037, "fields": {"orig_filename": "Frank_Peter-Anton_1746_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344f.", "author": "", "orig_id": 1421725}}, {"model": "metainfo.source", "pk": 16038, "fields": {"orig_filename": "Frank_Rudolf_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421726}}, {"model": "metainfo.source", "pk": 16039, "fields": {"orig_filename": "Frank_Rudolf_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421727}}, {"model": "metainfo.source", "pk": 16040, "fields": {"orig_filename": "Franz-Ferdinand___1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 350f.", "author": "", "orig_id": 1421838}}, {"model": "metainfo.source", "pk": 16041, "fields": {"orig_filename": "Franz-Joseph__1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 351f.", "author": "", "orig_id": 1421839}}, {"model": "metainfo.source", "pk": 16042, "fields": {"orig_filename": "Franz-Karl__1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421840}}, {"model": "metainfo.source", "pk": 16043, "fields": {"orig_filename": "Franz-Salvator__1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421841}}, {"model": "metainfo.source", "pk": 16044, "fields": {"orig_filename": "Franzelin_Johannes-B_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421914}}, {"model": "metainfo.source", "pk": 16045, "fields": {"orig_filename": "Franzisci_Franz_1825_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421915}}, {"model": "metainfo.source", "pk": 16046, "fields": {"orig_filename": "Franzos_Karl-Emil_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353f.", "author": "", "orig_id": 1421917}}, {"model": "metainfo.source", "pk": 16047, "fields": {"orig_filename": "Franz_Ferdinand-Geminian_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 350", "author": "", "orig_id": 1421837}}, {"model": "metainfo.source", "pk": 16048, "fields": {"orig_filename": "Franz_Gottfried_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348", "author": "", "orig_id": 1421833}}, {"model": "metainfo.source", "pk": 16049, "fields": {"orig_filename": "Franz_Joseph-Carl-Ambros-Stanislaus_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 349f.", "author": "", "orig_id": 1421836}}, {"model": "metainfo.source", "pk": 16050, "fields": {"orig_filename": "Franz_Rudolf_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348", "author": "", "orig_id": 1421834}}, {"model": "metainfo.source", "pk": 16051, "fields": {"orig_filename": "Franz__1768_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348f.", "author": "", "orig_id": 1421835}}, {"model": "metainfo.source", "pk": 16052, "fields": {"orig_filename": "Frass_Rudolf_1880_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421919}}, {"model": "metainfo.source", "pk": 16053, "fields": {"orig_filename": "Frast_Johannes_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421920}}, {"model": "metainfo.source", "pk": 16054, "fields": {"orig_filename": "Frauendorfer_Marie_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421921}}, {"model": "metainfo.source", "pk": 16055, "fields": {"orig_filename": "Frauenfeld_Eduard_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421922}}, {"model": "metainfo.source", "pk": 16056, "fields": {"orig_filename": "Frauenfeld_Georg_1807_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354f.", "author": "", "orig_id": 1421923}}, {"model": "metainfo.source", "pk": 16057, "fields": {"orig_filename": "Fraungruber_Hans_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421924}}, {"model": "metainfo.source", "pk": 16058, "fields": {"orig_filename": "Fraus-Wagner_Arrigo_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421925}}, {"model": "metainfo.source", "pk": 16059, "fields": {"orig_filename": "Frauscher_Karl_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421926}}, {"model": "metainfo.source", "pk": 16060, "fields": {"orig_filename": "Frauscher_Moritz_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421927}}, {"model": "metainfo.source", "pk": 16061, "fields": {"orig_filename": "Fraydt-Fraydenegg_Otto_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421928}}, {"model": "metainfo.source", "pk": 16062, "fields": {"orig_filename": "Fredro_Aleksander_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355f.", "author": "", "orig_id": 1421929}}, {"model": "metainfo.source", "pk": 16063, "fields": {"orig_filename": "Fredro_Jan-Aleksander_1829_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421930}}, {"model": "metainfo.source", "pk": 16064, "fields": {"orig_filename": "Freh_Wilhelm_1910_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2128803}}, {"model": "metainfo.source", "pk": 16065, "fields": {"orig_filename": "Freiberger_Gustav_1853_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421931}}, {"model": "metainfo.source", "pk": 16066, "fields": {"orig_filename": "Freinademetz_Joseph_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421932}}, {"model": "metainfo.source", "pk": 16067, "fields": {"orig_filename": "Freindaller_Franz-Seraph-Jos_1753_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421933}}, {"model": "metainfo.source", "pk": 16068, "fields": {"orig_filename": "Freissauff-Neudegg_Felix_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357", "author": "", "orig_id": 1421934}}, {"model": "metainfo.source", "pk": 16069, "fields": {"orig_filename": "Frenzel_Karl_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357", "author": "", "orig_id": 1421935}}, {"model": "metainfo.source", "pk": 16070, "fields": {"orig_filename": "Freudenreich_Dragutin_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1421937}}, {"model": "metainfo.source", "pk": 16071, "fields": {"orig_filename": "Freudenreich_Josip_1827_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422010}}, {"model": "metainfo.source", "pk": 16072, "fields": {"orig_filename": "Freud_Anton-Walter_1921_2004.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128065}}, {"model": "metainfo.source", "pk": 16073, "fields": {"orig_filename": "Freud_Sigmund_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357f.", "author": "", "orig_id": 1421936}}, {"model": "metainfo.source", "pk": 16074, "fields": {"orig_filename": "Filek-Wittinghausen_Egid_1874_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421055}}, {"model": "metainfo.source", "pk": 16075, "fields": {"orig_filename": "Filipovic_Ivan_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421056}}, {"model": "metainfo.source", "pk": 16076, "fields": {"orig_filename": "Fillunger_Johann_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314f.", "author": "", "orig_id": 1421058}}, {"model": "metainfo.source", "pk": 16077, "fields": {"orig_filename": "Fillunger_Marie_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421059}}, {"model": "metainfo.source", "pk": 16078, "fields": {"orig_filename": "Fillunger_Paul_1883_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421060}}, {"model": "metainfo.source", "pk": 16079, "fields": {"orig_filename": "Filtsch_Johann_1753_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421061}}, {"model": "metainfo.source", "pk": 16080, "fields": {"orig_filename": "Filtsch_Karl_1830_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421062}}, {"model": "metainfo.source", "pk": 16081, "fields": {"orig_filename": "Filzer_Hans_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421064}}, {"model": "metainfo.source", "pk": 16082, "fields": {"orig_filename": "Filz_Fidelis_1777_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315f.", "author": "", "orig_id": 1421063}}, {"model": "metainfo.source", "pk": 16083, "fields": {"orig_filename": "Finaczy_Ernst_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421065}}, {"model": "metainfo.source", "pk": 16084, "fields": {"orig_filename": "Findeisen_Julius_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421066}}, {"model": "metainfo.source", "pk": 16085, "fields": {"orig_filename": "Finger_Alfred_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421140}}, {"model": "metainfo.source", "pk": 16086, "fields": {"orig_filename": "Finger_August_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421141}}, {"model": "metainfo.source", "pk": 16087, "fields": {"orig_filename": "Finger_Ernst_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316f.", "author": "", "orig_id": 1421142}}, {"model": "metainfo.source", "pk": 16088, "fields": {"orig_filename": "Finger_Josef_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421143}}, {"model": "metainfo.source", "pk": 16089, "fields": {"orig_filename": "Finger_Julius_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421144}}, {"model": "metainfo.source", "pk": 16090, "fields": {"orig_filename": "Finkel_Ludwig-Michal-Emanuel_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421149}}, {"model": "metainfo.source", "pk": 16091, "fields": {"orig_filename": "Fink_Anton-Barnabas_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421146}}, {"model": "metainfo.source", "pk": 16092, "fields": {"orig_filename": "Fink_Anton_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421145}}, {"model": "metainfo.source", "pk": 16093, "fields": {"orig_filename": "Fink_Jodok_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317f.", "author": "", "orig_id": 1421147}}, {"model": "metainfo.source", "pk": 16094, "fields": {"orig_filename": "Fink_Josef-Alois_1796_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421148}}, {"model": "metainfo.source", "pk": 16095, "fields": {"orig_filename": "Firnhaber_Friedrich_1818_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421150}}, {"model": "metainfo.source", "pk": 16096, "fields": {"orig_filename": "Firtsch_Georg_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421151}}, {"model": "metainfo.source", "pk": 16097, "fields": {"orig_filename": "Fischbach_Johann_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421152}}, {"model": "metainfo.source", "pk": 16098, "fields": {"orig_filename": "Fischel_Alfred_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421154}}, {"model": "metainfo.source", "pk": 16099, "fields": {"orig_filename": "Fischel_Alfred_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421153}}, {"model": "metainfo.source", "pk": 16100, "fields": {"orig_filename": "Fischel_David-Gabriel_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421155}}, {"model": "metainfo.source", "pk": 16101, "fields": {"orig_filename": "Fischel_Ernst_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421156}}, {"model": "metainfo.source", "pk": 16102, "fields": {"orig_filename": "Fischer-Ankern_Anton_1812_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421252}}, {"model": "metainfo.source", "pk": 16103, "fields": {"orig_filename": "Fischer-Roesslerstamm_Franz_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421253}}, {"model": "metainfo.source", "pk": 16104, "fields": {"orig_filename": "Fischer-Roesslerstamm_Josef-Emanuel_1787_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421254}}, {"model": "metainfo.source", "pk": 16105, "fields": {"orig_filename": "Fischer-Zickhartsburg_Friedrich_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421255}}, {"model": "metainfo.source", "pk": 16106, "fields": {"orig_filename": "Fischer_Albert_1830_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421157}}, {"model": "metainfo.source", "pk": 16107, "fields": {"orig_filename": "Fischer_Alois_1796_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319f.", "author": "", "orig_id": 1421158}}, {"model": "metainfo.source", "pk": 16108, "fields": {"orig_filename": "Fischer_Berthold_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421159}}, {"model": "metainfo.source", "pk": 16109, "fields": {"orig_filename": "Fischer_Christian_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421161}}, {"model": "metainfo.source", "pk": 16110, "fields": {"orig_filename": "Fischer_Cyrill_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421160}}, {"model": "metainfo.source", "pk": 16111, "fields": {"orig_filename": "Fischer_Daniel_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421162}}, {"model": "metainfo.source", "pk": 16112, "fields": {"orig_filename": "Fischer_Eduard_1846_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320f.", "author": "", "orig_id": 1421163}}, {"model": "metainfo.source", "pk": 16113, "fields": {"orig_filename": "Fischer_Eduard_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421164}}, {"model": "metainfo.source", "pk": 16114, "fields": {"orig_filename": "Fischer_Engelbert_1833_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421237}}, {"model": "metainfo.source", "pk": 16115, "fields": {"orig_filename": "Fischer_Felix_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421238}}, {"model": "metainfo.source", "pk": 16116, "fields": {"orig_filename": "Fischer_Franz_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421239}}, {"model": "metainfo.source", "pk": 16117, "fields": {"orig_filename": "Fischer_Friedrich_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421240}}, {"model": "metainfo.source", "pk": 16118, "fields": {"orig_filename": "Fischer_Friedrich_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421241}}, {"model": "metainfo.source", "pk": 16119, "fields": {"orig_filename": "Fischer_Jacob_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321f.", "author": "", "orig_id": 1421242}}, {"model": "metainfo.source", "pk": 16120, "fields": {"orig_filename": "Fischer_Johann-Conrad_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421243}}, {"model": "metainfo.source", "pk": 16121, "fields": {"orig_filename": "Fischer_Johann-Martin_1740_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421244}}, {"model": "metainfo.source", "pk": 16122, "fields": {"orig_filename": "Fischer_Josef_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421245}}, {"model": "metainfo.source", "pk": 16123, "fields": {"orig_filename": "Fischer_Joseph_1780_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322f.", "author": "", "orig_id": 1421246}}, {"model": "metainfo.source", "pk": 16124, "fields": {"orig_filename": "Fischer_Karl-Wilhelm_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421247}}, {"model": "metainfo.source", "pk": 16125, "fields": {"orig_filename": "Fischer_Lorenz-Maximilian_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421248}}, {"model": "metainfo.source", "pk": 16126, "fields": {"orig_filename": "Fischer_Ludwig_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421249}}, {"model": "metainfo.source", "pk": 16127, "fields": {"orig_filename": "Fischer_Rudolf_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323f.", "author": "", "orig_id": 1421250}}, {"model": "metainfo.source", "pk": 16128, "fields": {"orig_filename": "Fischer_Sigmund-Caspar_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2172531}}, {"model": "metainfo.source", "pk": 16129, "fields": {"orig_filename": "Fischer_Wilhelm_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421251}}, {"model": "metainfo.source", "pk": 16130, "fields": {"orig_filename": "Fischhof_Adolf_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421256}}, {"model": "metainfo.source", "pk": 16131, "fields": {"orig_filename": "Fischhof_Joseph_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421257}}, {"model": "metainfo.source", "pk": 16132, "fields": {"orig_filename": "Fischnaler_Konrad_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325f.", "author": "", "orig_id": 1421258}}, {"model": "metainfo.source", "pk": 16133, "fields": {"orig_filename": "Fitzinger_Franz_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421259}}, {"model": "metainfo.source", "pk": 16134, "fields": {"orig_filename": "Fitzinger_Leopold-Joseph_1802_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421260}}, {"model": "metainfo.source", "pk": 16135, "fields": {"orig_filename": "Fitzner_Rudolf_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421261}}, {"model": "metainfo.source", "pk": 16136, "fields": {"orig_filename": "Fjord_Olaf_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2269398}}, {"model": "metainfo.source", "pk": 16137, "fields": {"orig_filename": "Flach_Jozef_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421262}}, {"model": "metainfo.source", "pk": 16138, "fields": {"orig_filename": "Flajsman_Jurij_1818_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421335}}, {"model": "metainfo.source", "pk": 16139, "fields": {"orig_filename": "Flatt-Alfoeld_Karl_1853_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326f.", "author": "", "orig_id": 1421336}}, {"model": "metainfo.source", "pk": 16140, "fields": {"orig_filename": "Flattich_Wilhelm_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421337}}, {"model": "metainfo.source", "pk": 16141, "fields": {"orig_filename": "Flatz_Gebhard_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421338}}, {"model": "metainfo.source", "pk": 16142, "fields": {"orig_filename": "Flechner_Pauline_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421339}}, {"model": "metainfo.source", "pk": 16143, "fields": {"orig_filename": "Fleckh_Johann-Anton_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421340}}, {"model": "metainfo.source", "pk": 16144, "fields": {"orig_filename": "Fleischer-Eichenkranz_Ferdinand_1777_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421343}}, {"model": "metainfo.source", "pk": 16145, "fields": {"orig_filename": "Fleischer_Anton_1845_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421341}}, {"model": "metainfo.source", "pk": 16146, "fields": {"orig_filename": "Fleischer_Max_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421342}}, {"model": "metainfo.source", "pk": 16147, "fields": {"orig_filename": "Fleischhacker_Robert_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1445120}}, {"model": "metainfo.source", "pk": 16148, "fields": {"orig_filename": "Fleischl-Marxow_Ernst_1846_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421344}}, {"model": "metainfo.source", "pk": 16149, "fields": {"orig_filename": "Fleischmann_Andreas_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421345}}, {"model": "metainfo.source", "pk": 16150, "fields": {"orig_filename": "Fleischmann_Benno_1906_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328f.", "author": "", "orig_id": 1421346}}, {"model": "metainfo.source", "pk": 16151, "fields": {"orig_filename": "Fleischmann_Leo_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421347}}, {"model": "metainfo.source", "pk": 16152, "fields": {"orig_filename": "Fleischner_Josef_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421348}}, {"model": "metainfo.source", "pk": 16153, "fields": {"orig_filename": "Fleissner_Hans_1881_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421349}}, {"model": "metainfo.source", "pk": 16154, "fields": {"orig_filename": "Flesch_Carl_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421350}}, {"model": "metainfo.source", "pk": 16155, "fields": {"orig_filename": "Fleszar_Albin-Jan_1888_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329f.", "author": "", "orig_id": 1421351}}, {"model": "metainfo.source", "pk": 16156, "fields": {"orig_filename": "Fligely_August_1810_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421352}}, {"model": "metainfo.source", "pk": 16157, "fields": {"orig_filename": "Flir_Alois-Kasimir_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421353}}, {"model": "metainfo.source", "pk": 16158, "fields": {"orig_filename": "Flis_Janez_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421354}}, {"model": "metainfo.source", "pk": 16159, "fields": {"orig_filename": "Floderer_Wilhelm_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421355}}, {"model": "metainfo.source", "pk": 16160, "fields": {"orig_filename": "Floeck_Oswald_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421356}}, {"model": "metainfo.source", "pk": 16161, "fields": {"orig_filename": "Florschuetz_Josip_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330f.", "author": "", "orig_id": 1421357}}, {"model": "metainfo.source", "pk": 16162, "fields": {"orig_filename": "Fluck-Leidenkron_Josef-Bruno_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421431}}, {"model": "metainfo.source", "pk": 16163, "fields": {"orig_filename": "Fluck-Leidenkron_Moriz-Bruno_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421430}}, {"model": "metainfo.source", "pk": 16164, "fields": {"orig_filename": "Flunk_Matthias_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421432}}, {"model": "metainfo.source", "pk": 16165, "fields": {"orig_filename": "Fodor_Joseph_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331f.", "author": "", "orig_id": 1421433}}, {"model": "metainfo.source", "pk": 16166, "fields": {"orig_filename": "Foelseis_Josef_1760_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421434}}, {"model": "metainfo.source", "pk": 16167, "fields": {"orig_filename": "Foerstel_Gertrude_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421435}}, {"model": "metainfo.source", "pk": 16168, "fields": {"orig_filename": "Foerster-Lauterer_Berta_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421442}}, {"model": "metainfo.source", "pk": 16169, "fields": {"orig_filename": "Foerster-Streffleur_Rudolf_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333f.", "author": "", "orig_id": 1421443}}, {"model": "metainfo.source", "pk": 16170, "fields": {"orig_filename": "Foerster_Anton_1837_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421436}}, {"model": "metainfo.source", "pk": 16171, "fields": {"orig_filename": "Foerster_August_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421437}}, {"model": "metainfo.source", "pk": 16172, "fields": {"orig_filename": "Foerster_Emil_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332f.", "author": "", "orig_id": 1421438}}, {"model": "metainfo.source", "pk": 16173, "fields": {"orig_filename": "Foerster_Florentine_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421439}}, {"model": "metainfo.source", "pk": 16174, "fields": {"orig_filename": "Foerster_Ludwig-Christian-Friedrich_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421440}}, {"model": "metainfo.source", "pk": 16175, "fields": {"orig_filename": "Foerster_Wendelin_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421441}}, {"model": "metainfo.source", "pk": 16176, "fields": {"orig_filename": "Foest-Monshoff_Rudolf_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421444}}, {"model": "metainfo.source", "pk": 16177, "fields": {"orig_filename": "Feid_Joseph_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420682}}, {"model": "metainfo.source", "pk": 16178, "fields": {"orig_filename": "Feifalik_Julius_1833_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290f.", "author": "", "orig_id": 1420683}}, {"model": "metainfo.source", "pk": 16179, "fields": {"orig_filename": "Feigel_Longin_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420684}}, {"model": "metainfo.source", "pk": 16180, "fields": {"orig_filename": "Feigerle_Ignaz_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420685}}, {"model": "metainfo.source", "pk": 16181, "fields": {"orig_filename": "Feigl_Hans_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420686}}, {"model": "metainfo.source", "pk": 16182, "fields": {"orig_filename": "Feilmoser_Andreas_1777_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291f.", "author": "", "orig_id": 1420688}}, {"model": "metainfo.source", "pk": 16183, "fields": {"orig_filename": "Feil_Joseph_1811_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420687}}, {"model": "metainfo.source", "pk": 16184, "fields": {"orig_filename": "Feine_Paul_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420690}}, {"model": "metainfo.source", "pk": 16185, "fields": {"orig_filename": "Fein_Johann_1864_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420689}}, {"model": "metainfo.source", "pk": 16186, "fields": {"orig_filename": "Feistmantel_Franz_1786_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420691}}, {"model": "metainfo.source", "pk": 16187, "fields": {"orig_filename": "Feistmantel_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420692}}, {"model": "metainfo.source", "pk": 16188, "fields": {"orig_filename": "Feistmantel_Karl_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292f.", "author": "", "orig_id": 1420693}}, {"model": "metainfo.source", "pk": 16189, "fields": {"orig_filename": "Feistmantel_Ottokar_1848_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420694}}, {"model": "metainfo.source", "pk": 16190, "fields": {"orig_filename": "Feistmantel_Rudolf_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420695}}, {"model": "metainfo.source", "pk": 16191, "fields": {"orig_filename": "Feitler_Siegmund_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420696}}, {"model": "metainfo.source", "pk": 16192, "fields": {"orig_filename": "Fejerpataky_Ladislaus_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293f.", "author": "", "orig_id": 1420698}}, {"model": "metainfo.source", "pk": 16193, "fields": {"orig_filename": "Fejervary-Komlos-Keresztes_Geza_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420699}}, {"model": "metainfo.source", "pk": 16194, "fields": {"orig_filename": "Fejer_Georg_1766_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420697}}, {"model": "metainfo.source", "pk": 16195, "fields": {"orig_filename": "Fekonja_Andrej_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420768}}, {"model": "metainfo.source", "pk": 16196, "fields": {"orig_filename": "Fekonja_Roman_1868_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420769}}, {"model": "metainfo.source", "pk": 16197, "fields": {"orig_filename": "Felbinger_Franz_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420770}}, {"model": "metainfo.source", "pk": 16198, "fields": {"orig_filename": "Felderer_Hieronymus_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420775}}, {"model": "metainfo.source", "pk": 16199, "fields": {"orig_filename": "Felder_Cajetan_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294f.", "author": "", "orig_id": 1420772}}, {"model": "metainfo.source", "pk": 16200, "fields": {"orig_filename": "Felder_Franz-Michael_1839_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420773}}, {"model": "metainfo.source", "pk": 16201, "fields": {"orig_filename": "Felder_Rudolf_1842_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420774}}, {"model": "metainfo.source", "pk": 16202, "fields": {"orig_filename": "Feldhammer_Jacob_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2029476}}, {"model": "metainfo.source", "pk": 16203, "fields": {"orig_filename": "Feldkircher_Josef_1812_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295f.", "author": "", "orig_id": 1420776}}, {"model": "metainfo.source", "pk": 16204, "fields": {"orig_filename": "Feldmann_Leopold_1802_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420778}}, {"model": "metainfo.source", "pk": 16205, "fields": {"orig_filename": "Feldman_Wilhelm_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420777}}, {"model": "metainfo.source", "pk": 16206, "fields": {"orig_filename": "Feldner_Gundisalvus_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420779}}, {"model": "metainfo.source", "pk": 16207, "fields": {"orig_filename": "Felgel-Farnholz_Anton_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420780}}, {"model": "metainfo.source", "pk": 16208, "fields": {"orig_filename": "Felix_Eugen_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420782}}, {"model": "metainfo.source", "pk": 16209, "fields": {"orig_filename": "Felix_Herbert_1908_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147891}}, {"model": "metainfo.source", "pk": 16210, "fields": {"orig_filename": "Fellinger_Johann-Georg_1781_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296f.", "author": "", "orig_id": 1420783}}, {"model": "metainfo.source", "pk": 16211, "fields": {"orig_filename": "Fellner-Feldegg_Christoph_1789_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420787}}, {"model": "metainfo.source", "pk": 16212, "fields": {"orig_filename": "Fellner-Feldegg_Ferdinand_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420788}}, {"model": "metainfo.source", "pk": 16213, "fields": {"orig_filename": "Fellner_Ferdinand-I_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420784}}, {"model": "metainfo.source", "pk": 16214, "fields": {"orig_filename": "Fellner_Ferdinand-Ii_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420785}}, {"model": "metainfo.source", "pk": 16215, "fields": {"orig_filename": "Fellner_Michael-Ignaz_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420786}}, {"model": "metainfo.source", "pk": 16216, "fields": {"orig_filename": "Felmayer_Franz_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420789}}, {"model": "metainfo.source", "pk": 16217, "fields": {"orig_filename": "Felner_Koloman_1750_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420861}}, {"model": "metainfo.source", "pk": 16218, "fields": {"orig_filename": "Felsenreich_Anton_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420862}}, {"model": "metainfo.source", "pk": 16219, "fields": {"orig_filename": "Fendi_Peter_1796_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420863}}, {"model": "metainfo.source", "pk": 16220, "fields": {"orig_filename": "Fenner-Fenneberg_Daniel_1820_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420864}}, {"model": "metainfo.source", "pk": 16221, "fields": {"orig_filename": "Fenyes_Alexius_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298f.", "author": "", "orig_id": 1420865}}, {"model": "metainfo.source", "pk": 16222, "fields": {"orig_filename": "Fenyi_Julius_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299", "author": "", "orig_id": 1420866}}, {"model": "metainfo.source", "pk": 16223, "fields": {"orig_filename": "Fenzl_Eduard_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299", "author": "", "orig_id": 1420867}}, {"model": "metainfo.source", "pk": 16224, "fields": {"orig_filename": "Ferdinand-Maximilian___1832_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300f.", "author": "", "orig_id": 1420872}}, {"model": "metainfo.source", "pk": 16225, "fields": {"orig_filename": "Ferdinand_I_1793_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299f.", "author": "", "orig_id": 1420869}}, {"model": "metainfo.source", "pk": 16226, "fields": {"orig_filename": "Ferdinand_Karl-Josef_1781_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300", "author": "", "orig_id": 1420871}}, {"model": "metainfo.source", "pk": 16227, "fields": {"orig_filename": "Ferdinand__1769_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300", "author": "", "orig_id": 1420870}}, {"model": "metainfo.source", "pk": 16228, "fields": {"orig_filename": "Ferenczi_Zoltan_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 301", "author": "", "orig_id": 1420873}}, {"model": "metainfo.source", "pk": 16229, "fields": {"orig_filename": "Ferenczy_Franz_1835_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 301f.", "author": "", "orig_id": 1420874}}, {"model": "metainfo.source", "pk": 16230, "fields": {"orig_filename": "Ferenczy_Ida_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420875}}, {"model": "metainfo.source", "pk": 16231, "fields": {"orig_filename": "Ferenczy_Josef_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420877}}, {"model": "metainfo.source", "pk": 16232, "fields": {"orig_filename": "Ferenczy_Jose_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420876}}, {"model": "metainfo.source", "pk": 16233, "fields": {"orig_filename": "Ferenczy_Karl_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420878}}, {"model": "metainfo.source", "pk": 16234, "fields": {"orig_filename": "Ferenczy_Stefan_1792_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420879}}, {"model": "metainfo.source", "pk": 16235, "fields": {"orig_filename": "Ferk_Franz_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420880}}, {"model": "metainfo.source", "pk": 16236, "fields": {"orig_filename": "Fermendzin_Eusebije_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420881}}, {"model": "metainfo.source", "pk": 16237, "fields": {"orig_filename": "Fernau_Albert_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420882}}, {"model": "metainfo.source", "pk": 16238, "fields": {"orig_filename": "Ferrari_Emil_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420953}}, {"model": "metainfo.source", "pk": 16239, "fields": {"orig_filename": "Ferstel_Heinrich_1828_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303f.", "author": "", "orig_id": 1420954}}, {"model": "metainfo.source", "pk": 16240, "fields": {"orig_filename": "Ferstel_Max_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 304", "author": "", "orig_id": 1420955}}, {"model": "metainfo.source", "pk": 16241, "fields": {"orig_filename": "Fessler_Ignaz-Aurel_1756_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 304f.", "author": "", "orig_id": 1420956}}, {"model": "metainfo.source", "pk": 16242, "fields": {"orig_filename": "Fessler_Johann-Bapt_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420957}}, {"model": "metainfo.source", "pk": 16243, "fields": {"orig_filename": "Fessler_Josef_1813_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420958}}, {"model": "metainfo.source", "pk": 16244, "fields": {"orig_filename": "Festerburg_Gerard-Edward_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420961}}, {"model": "metainfo.source", "pk": 16245, "fields": {"orig_filename": "Festetics_Georg_1755_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420962}}, {"model": "metainfo.source", "pk": 16246, "fields": {"orig_filename": "Fest_Bernhard_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420959}}, {"model": "metainfo.source", "pk": 16247, "fields": {"orig_filename": "Fest_Emerich_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305f.", "author": "", "orig_id": 1420960}}, {"model": "metainfo.source", "pk": 16248, "fields": {"orig_filename": "Feszl_Friedrich_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420963}}, {"model": "metainfo.source", "pk": 16249, "fields": {"orig_filename": "Feszty_Arpad_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420964}}, {"model": "metainfo.source", "pk": 16250, "fields": {"orig_filename": "Feuchtersleben_Ernst_1806_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306f.", "author": "", "orig_id": 1420965}}, {"model": "metainfo.source", "pk": 16251, "fields": {"orig_filename": "Feuchtwang_David_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420966}}, {"model": "metainfo.source", "pk": 16252, "fields": {"orig_filename": "Feuer_Nathanael_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420967}}, {"model": "metainfo.source", "pk": 16253, "fields": {"orig_filename": "Fey_Emil_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420968}}, {"model": "metainfo.source", "pk": 16254, "fields": {"orig_filename": "Fiala_Eduard_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307f.", "author": "", "orig_id": 1420969}}, {"model": "metainfo.source", "pk": 16255, "fields": {"orig_filename": "Fiala_Franz_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420970}}, {"model": "metainfo.source", "pk": 16256, "fields": {"orig_filename": "Fiala_Hans_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420971}}, {"model": "metainfo.source", "pk": 16257, "fields": {"orig_filename": "Fibich_Stanislaw_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420972}}, {"model": "metainfo.source", "pk": 16258, "fields": {"orig_filename": "Fibich_Zdenek_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420973}}, {"model": "metainfo.source", "pk": 16259, "fields": {"orig_filename": "Fichtl_Franz_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308f.", "author": "", "orig_id": 1421042}}, {"model": "metainfo.source", "pk": 16260, "fields": {"orig_filename": "Fichtner_Carl_1805_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309", "author": "", "orig_id": 1421044}}, {"model": "metainfo.source", "pk": 16261, "fields": {"orig_filename": "Fickert_Auguste_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 310", "author": "", "orig_id": 1421047}}, {"model": "metainfo.source", "pk": 16262, "fields": {"orig_filename": "Ficker_Adolph_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309", "author": "", "orig_id": 1421045}}, {"model": "metainfo.source", "pk": 16263, "fields": {"orig_filename": "Ficker_Julius_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309f.", "author": "", "orig_id": 1421046}}, {"model": "metainfo.source", "pk": 16264, "fields": {"orig_filename": "Ficquelmont_Karl-Ludwig_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 310f.", "author": "", "orig_id": 1421048}}, {"model": "metainfo.source", "pk": 16265, "fields": {"orig_filename": "Fieber_Franz-Xaver_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421050}}, {"model": "metainfo.source", "pk": 16266, "fields": {"orig_filename": "Fiedler_Bernhard_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421051}}, {"model": "metainfo.source", "pk": 16267, "fields": {"orig_filename": "Fiedler_Bruno_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311f.", "author": "", "orig_id": 1421052}}, {"model": "metainfo.source", "pk": 16268, "fields": {"orig_filename": "Fiedler_Josef_1819_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420023}}, {"model": "metainfo.source", "pk": 16269, "fields": {"orig_filename": "Fiedler_Karl-Borromaeus_1817_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421049}}, {"model": "metainfo.source", "pk": 16270, "fields": {"orig_filename": "Fiedler_Tadeusz_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420024}}, {"model": "metainfo.source", "pk": 16271, "fields": {"orig_filename": "Fierich_Franciszek-Ksawery_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420025}}, {"model": "metainfo.source", "pk": 16272, "fields": {"orig_filename": "Fierich_Maurycy_1856_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420026}}, {"model": "metainfo.source", "pk": 16273, "fields": {"orig_filename": "Fierlinger_Julius_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312f.", "author": "", "orig_id": 1420027}}, {"model": "metainfo.source", "pk": 16274, "fields": {"orig_filename": "Figdor_Albert_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420028}}, {"model": "metainfo.source", "pk": 16275, "fields": {"orig_filename": "Figdor_Wilhelm_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420029}}, {"model": "metainfo.source", "pk": 16276, "fields": {"orig_filename": "Figuly_Ignaz-Karl_1807_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420030}}, {"model": "metainfo.source", "pk": 16277, "fields": {"orig_filename": "Fijalek_Jan-Nepomucen_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313f.", "author": "", "orig_id": 1420031}}, {"model": "metainfo.source", "pk": 16278, "fields": {"orig_filename": "Fijan_Andrija_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421053}}, {"model": "metainfo.source", "pk": 16279, "fields": {"orig_filename": "Filarszky_Nandor_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421054}}, {"model": "metainfo.source", "pk": 16280, "fields": {"orig_filename": "Esterhazy_Paul-Iii-Anton_1786_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421890}}, {"model": "metainfo.source", "pk": 16281, "fields": {"orig_filename": "Estermann_Josef_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269f.", "author": "", "orig_id": 1421891}}, {"model": "metainfo.source", "pk": 16282, "fields": {"orig_filename": "Estreicher_Alois-Raphael_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421892}}, {"model": "metainfo.source", "pk": 16283, "fields": {"orig_filename": "Estreicher_Karl-Josef_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421893}}, {"model": "metainfo.source", "pk": 16284, "fields": {"orig_filename": "Estreicher_Stanislaus_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421894}}, {"model": "metainfo.source", "pk": 16285, "fields": {"orig_filename": "Eterovic_Karlo_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421895}}, {"model": "metainfo.source", "pk": 16286, "fields": {"orig_filename": "Ethofer_Rosa_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270f.", "author": "", "orig_id": 1421896}}, {"model": "metainfo.source", "pk": 16287, "fields": {"orig_filename": "Ethofer_Theodor-Josef_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421897}}, {"model": "metainfo.source", "pk": 16288, "fields": {"orig_filename": "Etienne_Michael_1827_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421898}}, {"model": "metainfo.source", "pk": 16289, "fields": {"orig_filename": "Etrich_Igo_1879_1967.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1442254}}, {"model": "metainfo.source", "pk": 16290, "fields": {"orig_filename": "Ettel_Bonaventura_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421899}}, {"model": "metainfo.source", "pk": 16291, "fields": {"orig_filename": "Ettenreich_Christian-Josef_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421900}}, {"model": "metainfo.source", "pk": 16292, "fields": {"orig_filename": "Ettinger_Josef_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421902}}, {"model": "metainfo.source", "pk": 16293, "fields": {"orig_filename": "Ettingshausen_Andreas_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271f.", "author": "", "orig_id": 1421903}}, {"model": "metainfo.source", "pk": 16294, "fields": {"orig_filename": "Ettingshausen_Constantin_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272", "author": "", "orig_id": 1421904}}, {"model": "metainfo.source", "pk": 16295, "fields": {"orig_filename": "Etti_Karl_1825_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421901}}, {"model": "metainfo.source", "pk": 16296, "fields": {"orig_filename": "Ettmayer-Adelsburg_Karl_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272", "author": "", "orig_id": 1421905}}, {"model": "metainfo.source", "pk": 16297, "fields": {"orig_filename": "Etzelt-Loewenfels_Josef_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421907}}, {"model": "metainfo.source", "pk": 16298, "fields": {"orig_filename": "Etzel_Karl_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272f.", "author": "", "orig_id": 1421906}}, {"model": "metainfo.source", "pk": 16299, "fields": {"orig_filename": "Eugling_Max_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421908}}, {"model": "metainfo.source", "pk": 16300, "fields": {"orig_filename": "Eurich_Friedrich-Emanuel_1772_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421909}}, {"model": "metainfo.source", "pk": 16301, "fields": {"orig_filename": "Evers_Carl_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421910}}, {"model": "metainfo.source", "pk": 16302, "fields": {"orig_filename": "Ewald_Carl_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273f.", "author": "", "orig_id": 1421911}}, {"model": "metainfo.source", "pk": 16303, "fields": {"orig_filename": "Exl_Ferdinand_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274", "author": "", "orig_id": 1421913}}, {"model": "metainfo.source", "pk": 16304, "fields": {"orig_filename": "Exner-Ewarten_Alfred_1875_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421991}}, {"model": "metainfo.source", "pk": 16305, "fields": {"orig_filename": "Exner-Ewarten_Felix-Maria_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276f.", "author": "", "orig_id": 1421992}}, {"model": "metainfo.source", "pk": 16306, "fields": {"orig_filename": "Exner-Ewarten_Sigmund_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421993}}, {"model": "metainfo.source", "pk": 16307, "fields": {"orig_filename": "Exner_Adolf_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274", "author": "", "orig_id": 1421985}}, {"model": "metainfo.source", "pk": 16308, "fields": {"orig_filename": "Exner_Emilie_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274f.", "author": "", "orig_id": 1421986}}, {"model": "metainfo.source", "pk": 16309, "fields": {"orig_filename": "Exner_Franz-Serafin_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 275f.", "author": "", "orig_id": 1421988}}, {"model": "metainfo.source", "pk": 16310, "fields": {"orig_filename": "Exner_Franz_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 275", "author": "", "orig_id": 1421987}}, {"model": "metainfo.source", "pk": 16311, "fields": {"orig_filename": "Exner_Karl_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421989}}, {"model": "metainfo.source", "pk": 16312, "fields": {"orig_filename": "Exner_Wilhelm-Franz_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421990}}, {"model": "metainfo.source", "pk": 16313, "fields": {"orig_filename": "Eybler_Joseph_1765_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421995}}, {"model": "metainfo.source", "pk": 16314, "fields": {"orig_filename": "Eybl_Franz_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421994}}, {"model": "metainfo.source", "pk": 16315, "fields": {"orig_filename": "Eybner_Otto_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277f.", "author": "", "orig_id": 1421996}}, {"model": "metainfo.source", "pk": 16316, "fields": {"orig_filename": "Eyrl-Waldgries-Liebenaich_Georg_1849_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421997}}, {"model": "metainfo.source", "pk": 16317, "fields": {"orig_filename": "Eysler_Edmund_1874_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421998}}, {"model": "metainfo.source", "pk": 16318, "fields": {"orig_filename": "Eyssen_Vinzenz_1760_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278f.", "author": "", "orig_id": 1422000}}, {"model": "metainfo.source", "pk": 16319, "fields": {"orig_filename": "Fabbroni_Giovanni-Valentino-Mattia_1752_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422001}}, {"model": "metainfo.source", "pk": 16320, "fields": {"orig_filename": "Faber_Moritz_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422002}}, {"model": "metainfo.source", "pk": 16321, "fields": {"orig_filename": "Fabian_Oskar_1846_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422003}}, {"model": "metainfo.source", "pk": 16322, "fields": {"orig_filename": "Fabini_Johann-Gottlieb_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422004}}, {"model": "metainfo.source", "pk": 16323, "fields": {"orig_filename": "Fabini_Joseph-Samuel_1794_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279f.", "author": "", "orig_id": 1422007}}, {"model": "metainfo.source", "pk": 16324, "fields": {"orig_filename": "Fabini_Ludwig_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422005}}, {"model": "metainfo.source", "pk": 16325, "fields": {"orig_filename": "Fabini_Theodor_1828_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422006}}, {"model": "metainfo.source", "pk": 16326, "fields": {"orig_filename": "Fabinyi_Rudolf_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422008}}, {"model": "metainfo.source", "pk": 16327, "fields": {"orig_filename": "Fabjancic_Vladislav_1894_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422009}}, {"model": "metainfo.source", "pk": 16328, "fields": {"orig_filename": "Fabricius_Otto_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422075}}, {"model": "metainfo.source", "pk": 16329, "fields": {"orig_filename": "Fabris_Anton_1792_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422076}}, {"model": "metainfo.source", "pk": 16330, "fields": {"orig_filename": "Fabritius_Karl_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422077}}, {"model": "metainfo.source", "pk": 16331, "fields": {"orig_filename": "Facchini_Francesco_1788_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422078}}, {"model": "metainfo.source", "pk": 16332, "fields": {"orig_filename": "Fadrusz_Johann_1858_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422079}}, {"model": "metainfo.source", "pk": 16333, "fields": {"orig_filename": "Faerber_Heinrich_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422080}}, {"model": "metainfo.source", "pk": 16334, "fields": {"orig_filename": "Faerber_Meir-Marcell_1908_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465441}}, {"model": "metainfo.source", "pk": 16335, "fields": {"orig_filename": "Fahrbach_Josef_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422081}}, {"model": "metainfo.source", "pk": 16336, "fields": {"orig_filename": "Fahrbach_Philipp_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422082}}, {"model": "metainfo.source", "pk": 16337, "fields": {"orig_filename": "Fahringer_Josef_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422083}}, {"model": "metainfo.source", "pk": 16338, "fields": {"orig_filename": "Fahrngruber_Johannes_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422084}}, {"model": "metainfo.source", "pk": 16339, "fields": {"orig_filename": "Faistauer_Anton_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422085}}, {"model": "metainfo.source", "pk": 16340, "fields": {"orig_filename": "Fajgelj_Danilo_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282f.", "author": "", "orig_id": 1422086}}, {"model": "metainfo.source", "pk": 16341, "fields": {"orig_filename": "Fajkmajer_Karl_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422087}}, {"model": "metainfo.source", "pk": 16342, "fields": {"orig_filename": "Faktor_Emil_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422088}}, {"model": "metainfo.source", "pk": 16343, "fields": {"orig_filename": "Faktor_Franz-Josef_1861_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422089}}, {"model": "metainfo.source", "pk": 16344, "fields": {"orig_filename": "Falat_Julian_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422090}}, {"model": "metainfo.source", "pk": 16345, "fields": {"orig_filename": "Falb_Rudolf_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422091}}, {"model": "metainfo.source", "pk": 16346, "fields": {"orig_filename": "Falke-Lilienstein_Hans_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284f.", "author": "", "orig_id": 1422096}}, {"model": "metainfo.source", "pk": 16347, "fields": {"orig_filename": "Falkenhayn_Julius_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422097}}, {"model": "metainfo.source", "pk": 16348, "fields": {"orig_filename": "Falke_Jakob_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422094}}, {"model": "metainfo.source", "pk": 16349, "fields": {"orig_filename": "Falke_Otto_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422095}}, {"model": "metainfo.source", "pk": 16350, "fields": {"orig_filename": "Falkner_Julie_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422098}}, {"model": "metainfo.source", "pk": 16351, "fields": {"orig_filename": "Falk_Maximilian_1828_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422092}}, {"model": "metainfo.source", "pk": 16352, "fields": {"orig_filename": "Falk_Norbert_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422093}}, {"model": "metainfo.source", "pk": 16353, "fields": {"orig_filename": "Faller_Nikola_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422165}}, {"model": "metainfo.source", "pk": 16354, "fields": {"orig_filename": "Fallmann_Engelbert_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422166}}, {"model": "metainfo.source", "pk": 16355, "fields": {"orig_filename": "Fallmerayer_Jakob-Philipp_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285f.", "author": "", "orig_id": 1422167}}, {"model": "metainfo.source", "pk": 16356, "fields": {"orig_filename": "Fallon_Ludwig-August_1776_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 286f.", "author": "", "orig_id": 1422168}}, {"model": "metainfo.source", "pk": 16357, "fields": {"orig_filename": "Fall_Leo_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422099}}, {"model": "metainfo.source", "pk": 16358, "fields": {"orig_filename": "Falta_Wilhelm_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422169}}, {"model": "metainfo.source", "pk": 16359, "fields": {"orig_filename": "Faltis_Evelyn_1890_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422170}}, {"model": "metainfo.source", "pk": 16360, "fields": {"orig_filename": "Faltis_Johann_1796_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422171}}, {"model": "metainfo.source", "pk": 16361, "fields": {"orig_filename": "Fancev_Franjo_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422172}}, {"model": "metainfo.source", "pk": 16362, "fields": {"orig_filename": "Fanderlik_Joseph_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422173}}, {"model": "metainfo.source", "pk": 16363, "fields": {"orig_filename": "Fangor_Andrzej_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422174}}, {"model": "metainfo.source", "pk": 16364, "fields": {"orig_filename": "Farga_Franz_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287f.", "author": "", "orig_id": 1422175}}, {"model": "metainfo.source", "pk": 16365, "fields": {"orig_filename": "Farkas-Boeloen_Alexander_1795_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422177}}, {"model": "metainfo.source", "pk": 16366, "fields": {"orig_filename": "Farkas_Julius_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422176}}, {"model": "metainfo.source", "pk": 16367, "fields": {"orig_filename": "Farsky_Franz_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422178}}, {"model": "metainfo.source", "pk": 16368, "fields": {"orig_filename": "Fassbender_Eugen_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1446406}}, {"model": "metainfo.source", "pk": 16369, "fields": {"orig_filename": "Fassel_Hirsch-Baer_1802_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422179}}, {"model": "metainfo.source", "pk": 16370, "fields": {"orig_filename": "Fasser_Rosa_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422180}}, {"model": "metainfo.source", "pk": 16371, "fields": {"orig_filename": "Fatur_Lea_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422181}}, {"model": "metainfo.source", "pk": 16372, "fields": {"orig_filename": "Faulmann_Karl_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422182}}, {"model": "metainfo.source", "pk": 16373, "fields": {"orig_filename": "Fautz_Ludwig_1811_1880.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 3 (15.11.2014)", "author": "", "orig_id": 2247938}}, {"model": "metainfo.source", "pk": 16374, "fields": {"orig_filename": "Fay_Andreas_1786_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422183}}, {"model": "metainfo.source", "pk": 16375, "fields": {"orig_filename": "Fazekas_Michael_1766_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422184}}, {"model": "metainfo.source", "pk": 16376, "fields": {"orig_filename": "Federhofer_Karl_1885_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2082341}}, {"model": "metainfo.source", "pk": 16377, "fields": {"orig_filename": "Federler_Aloys_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422185}}, {"model": "metainfo.source", "pk": 16378, "fields": {"orig_filename": "Federn_Josef_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422186}}, {"model": "metainfo.source", "pk": 16379, "fields": {"orig_filename": "Federowicz_Ignacy_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420677}}, {"model": "metainfo.source", "pk": 16380, "fields": {"orig_filename": "Federowicz_Wladyslaw-Walenty_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420679}}, {"model": "metainfo.source", "pk": 16381, "fields": {"orig_filename": "Fedorowicz_Adam_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420678}}, {"model": "metainfo.source", "pk": 16382, "fields": {"orig_filename": "Feichter_Michael_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420680}}, {"model": "metainfo.source", "pk": 16383, "fields": {"orig_filename": "Feichtinger_Johann-Nep_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420681}}, {"model": "metainfo.source", "pk": 16384, "fields": {"orig_filename": "Endlicher_Stephan-Ladislaus_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 249", "author": "", "orig_id": 1421502}}, {"model": "metainfo.source", "pk": 16385, "fields": {"orig_filename": "Endl_Friedrich_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248f.", "author": "", "orig_id": 1421429}}, {"model": "metainfo.source", "pk": 16386, "fields": {"orig_filename": "Endrici_Coelestin_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 249f.", "author": "", "orig_id": 1421503}}, {"model": "metainfo.source", "pk": 16387, "fields": {"orig_filename": "Endroedy_Alexander_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421504}}, {"model": "metainfo.source", "pk": 16388, "fields": {"orig_filename": "Engehausen_Christine_1817_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421505}}, {"model": "metainfo.source", "pk": 16389, "fields": {"orig_filename": "Engel-Mainfelden_August_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421509}}, {"model": "metainfo.source", "pk": 16390, "fields": {"orig_filename": "Engelbrecht_August_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421510}}, {"model": "metainfo.source", "pk": 16391, "fields": {"orig_filename": "Engelhart_Josef_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421511}}, {"model": "metainfo.source", "pk": 16392, "fields": {"orig_filename": "Engelmann_Eduard_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251f.", "author": "", "orig_id": 1421512}}, {"model": "metainfo.source", "pk": 16393, "fields": {"orig_filename": "Engelmann_Eduard_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421513}}, {"model": "metainfo.source", "pk": 16394, "fields": {"orig_filename": "Engel_Franz_1898_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446234}}, {"model": "metainfo.source", "pk": 16395, "fields": {"orig_filename": "Engel_Friedrich_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421506}}, {"model": "metainfo.source", "pk": 16396, "fields": {"orig_filename": "Engel_Jakob-Karl_1821_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421507}}, {"model": "metainfo.source", "pk": 16397, "fields": {"orig_filename": "Engel_Josef_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421508}}, {"model": "metainfo.source", "pk": 16398, "fields": {"orig_filename": "Engel_Paul_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446243}}, {"model": "metainfo.source", "pk": 16399, "fields": {"orig_filename": "Engerth_Eduard_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421515}}, {"model": "metainfo.source", "pk": 16400, "fields": {"orig_filename": "Engerth_Erasmus_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421516}}, {"model": "metainfo.source", "pk": 16401, "fields": {"orig_filename": "Engerth_Wilhelm_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421517}}, {"model": "metainfo.source", "pk": 16402, "fields": {"orig_filename": "Engeszer_Matyas_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421518}}, {"model": "metainfo.source", "pk": 16403, "fields": {"orig_filename": "Englaender_Richard_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421522}}, {"model": "metainfo.source", "pk": 16404, "fields": {"orig_filename": "Englaender_Richard_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421523}}, {"model": "metainfo.source", "pk": 16405, "fields": {"orig_filename": "Englaender_Sigmund_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421524}}, {"model": "metainfo.source", "pk": 16406, "fields": {"orig_filename": "Englisch_Johann_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421525}}, {"model": "metainfo.source", "pk": 16407, "fields": {"orig_filename": "Englisch_Josef_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253f.", "author": "", "orig_id": 1421526}}, {"model": "metainfo.source", "pk": 16408, "fields": {"orig_filename": "Englmann_Franz-Wilhelm_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421527}}, {"model": "metainfo.source", "pk": 16409, "fields": {"orig_filename": "Engl_Hugo_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421520}}, {"model": "metainfo.source", "pk": 16410, "fields": {"orig_filename": "Engl_Johann-Ev_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421521}}, {"model": "metainfo.source", "pk": 16411, "fields": {"orig_filename": "Enk-Burg_Karl-Maria_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421528}}, {"model": "metainfo.source", "pk": 16412, "fields": {"orig_filename": "Enk-Burg_Michael_1788_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421599}}, {"model": "metainfo.source", "pk": 16413, "fields": {"orig_filename": "Ennemoser_Josef_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254f.", "author": "", "orig_id": 1421600}}, {"model": "metainfo.source", "pk": 16414, "fields": {"orig_filename": "Ens_Faustin_1782_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421602}}, {"model": "metainfo.source", "pk": 16415, "fields": {"orig_filename": "Entz_Geza_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421603}}, {"model": "metainfo.source", "pk": 16416, "fields": {"orig_filename": "Enzenberg_Artur_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421604}}, {"model": "metainfo.source", "pk": 16417, "fields": {"orig_filename": "Enzenberg_Franz-Josef_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255f.", "author": "", "orig_id": 1421605}}, {"model": "metainfo.source", "pk": 16418, "fields": {"orig_filename": "Enzensperger_Bernhard_1788_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421606}}, {"model": "metainfo.source", "pk": 16419, "fields": {"orig_filename": "Enzensperger_Victor_1867_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421607}}, {"model": "metainfo.source", "pk": 16420, "fields": {"orig_filename": "Eoetvoes_Joseph_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421608}}, {"model": "metainfo.source", "pk": 16421, "fields": {"orig_filename": "Eoetvoes_Karl_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256f.", "author": "", "orig_id": 1421609}}, {"model": "metainfo.source", "pk": 16422, "fields": {"orig_filename": "Eoetvoes_Roland_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421610}}, {"model": "metainfo.source", "pk": 16423, "fields": {"orig_filename": "Eppich_Franz_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421611}}, {"model": "metainfo.source", "pk": 16424, "fields": {"orig_filename": "Eppich_Josef_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421612}}, {"model": "metainfo.source", "pk": 16425, "fields": {"orig_filename": "Eppinger_Hans_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257f.", "author": "", "orig_id": 1421613}}, {"model": "metainfo.source", "pk": 16426, "fields": {"orig_filename": "Eppinger_Hans_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421614}}, {"model": "metainfo.source", "pk": 16427, "fields": {"orig_filename": "Eppstein_Julius_1846_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421615}}, {"model": "metainfo.source", "pk": 16428, "fields": {"orig_filename": "Epstein_Alexander_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421616}}, {"model": "metainfo.source", "pk": 16429, "fields": {"orig_filename": "Epstein_Alois_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421617}}, {"model": "metainfo.source", "pk": 16430, "fields": {"orig_filename": "Epstein_Jehudo_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421618}}, {"model": "metainfo.source", "pk": 16431, "fields": {"orig_filename": "Epstein_Julius_1832_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421619}}, {"model": "metainfo.source", "pk": 16432, "fields": {"orig_filename": "Epstein_Moritz_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421620}}, {"model": "metainfo.source", "pk": 16433, "fields": {"orig_filename": "Epstein_Richard_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421621}}, {"model": "metainfo.source", "pk": 16434, "fields": {"orig_filename": "Erbach-Schoenberg_Karl-Eugen_1732_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421622}}, {"model": "metainfo.source", "pk": 16435, "fields": {"orig_filename": "Erban_Franz_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421697}}, {"model": "metainfo.source", "pk": 16436, "fields": {"orig_filename": "Erben_Anton_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421698}}, {"model": "metainfo.source", "pk": 16437, "fields": {"orig_filename": "Erben_Josef_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421699}}, {"model": "metainfo.source", "pk": 16438, "fields": {"orig_filename": "Erben_Karl-Jaromir_1811_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421700}}, {"model": "metainfo.source", "pk": 16439, "fields": {"orig_filename": "Erben_Wilhelm_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421701}}, {"model": "metainfo.source", "pk": 16440, "fields": {"orig_filename": "Erdelyi_Johann_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260f.", "author": "", "orig_id": 1421702}}, {"model": "metainfo.source", "pk": 16441, "fields": {"orig_filename": "Erdheim_Jakob_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421703}}, {"model": "metainfo.source", "pk": 16442, "fields": {"orig_filename": "Erdinger_Anton_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421704}}, {"model": "metainfo.source", "pk": 16443, "fields": {"orig_filename": "Erdinger_Karl_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421705}}, {"model": "metainfo.source", "pk": 16444, "fields": {"orig_filename": "Erdoedy_Helene_1831_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421706}}, {"model": "metainfo.source", "pk": 16445, "fields": {"orig_filename": "Erhard_Andreas_1791_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421707}}, {"model": "metainfo.source", "pk": 16446, "fields": {"orig_filename": "Erhard_Ludwig_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421708}}, {"model": "metainfo.source", "pk": 16447, "fields": {"orig_filename": "Erhartt_Antonie_1826_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421709}}, {"model": "metainfo.source", "pk": 16448, "fields": {"orig_filename": "Erhartt_Louise_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421710}}, {"model": "metainfo.source", "pk": 16449, "fields": {"orig_filename": "Erich_Maria_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421711}}, {"model": "metainfo.source", "pk": 16450, "fields": {"orig_filename": "Erjavec_Fran_1834_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262f.", "author": "", "orig_id": 1421712}}, {"model": "metainfo.source", "pk": 16451, "fields": {"orig_filename": "Erkel_Elek_1843_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421713}}, {"model": "metainfo.source", "pk": 16452, "fields": {"orig_filename": "Erkel_Ferenc_1810_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421714}}, {"model": "metainfo.source", "pk": 16453, "fields": {"orig_filename": "Erkel_Gyula_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421715}}, {"model": "metainfo.source", "pk": 16454, "fields": {"orig_filename": "Erkel_Sandor_1846_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421716}}, {"model": "metainfo.source", "pk": 16455, "fields": {"orig_filename": "Erker_Josef_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421717}}, {"model": "metainfo.source", "pk": 16456, "fields": {"orig_filename": "Erler_Franz-Christoph_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421720}}, {"model": "metainfo.source", "pk": 16457, "fields": {"orig_filename": "Erl_Anton_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263f.", "author": "", "orig_id": 1421718}}, {"model": "metainfo.source", "pk": 16458, "fields": {"orig_filename": "Erl_Joseph_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421719}}, {"model": "metainfo.source", "pk": 16459, "fields": {"orig_filename": "Ernest_Ludwig-Stefan_1826_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421793}}, {"model": "metainfo.source", "pk": 16460, "fields": {"orig_filename": "Ernst_Else_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145473}}, {"model": "metainfo.source", "pk": 16461, "fields": {"orig_filename": "Ernst_Heinrich-Wilhelm_1814_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421794}}, {"model": "metainfo.source", "pk": 16462, "fields": {"orig_filename": "Ernst_Karl_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421795}}, {"model": "metainfo.source", "pk": 16463, "fields": {"orig_filename": "Ernst_Leopold_1808_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421796}}, {"model": "metainfo.source", "pk": 16464, "fields": {"orig_filename": "Ernst_Marcin_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421797}}, {"model": "metainfo.source", "pk": 16465, "fields": {"orig_filename": "Ernst_Rodolphe_1854_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421798}}, {"model": "metainfo.source", "pk": 16466, "fields": {"orig_filename": "Ernst_Wilhelm_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421799}}, {"model": "metainfo.source", "pk": 16467, "fields": {"orig_filename": "Eroess_Gyula_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421800}}, {"model": "metainfo.source", "pk": 16468, "fields": {"orig_filename": "Errera_Ugo_1843_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421801}}, {"model": "metainfo.source", "pk": 16469, "fields": {"orig_filename": "Ersin_Alois_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421802}}, {"model": "metainfo.source", "pk": 16470, "fields": {"orig_filename": "Ertler_Bruno_1889_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421805}}, {"model": "metainfo.source", "pk": 16471, "fields": {"orig_filename": "Ertl_Dominik_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421803}}, {"model": "metainfo.source", "pk": 16472, "fields": {"orig_filename": "Ertl_Emil_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421804}}, {"model": "metainfo.source", "pk": 16473, "fields": {"orig_filename": "Ertl_Moriz_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420824}}, {"model": "metainfo.source", "pk": 16474, "fields": {"orig_filename": "Ertmann_Dorothea_1781_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421806}}, {"model": "metainfo.source", "pk": 16475, "fields": {"orig_filename": "Erwein_Josef_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266f.", "author": "", "orig_id": 1421807}}, {"model": "metainfo.source", "pk": 16476, "fields": {"orig_filename": "Escherich_Gustav_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421809}}, {"model": "metainfo.source", "pk": 16477, "fields": {"orig_filename": "Escherich_Katharina_1855_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421810}}, {"model": "metainfo.source", "pk": 16478, "fields": {"orig_filename": "Escherich_Theodor_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421811}}, {"model": "metainfo.source", "pk": 16479, "fields": {"orig_filename": "Eschig_Maximilian_1872_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421812}}, {"model": "metainfo.source", "pk": 16480, "fields": {"orig_filename": "Esch_Mathilde_1820_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421808}}, {"model": "metainfo.source", "pk": 16481, "fields": {"orig_filename": "Esders_Stefan_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421813}}, {"model": "metainfo.source", "pk": 16482, "fields": {"orig_filename": "Eskeles_Bernhard_1754_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421814}}, {"model": "metainfo.source", "pk": 16483, "fields": {"orig_filename": "Esser_Heinrich-Joseph_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421815}}, {"model": "metainfo.source", "pk": 16484, "fields": {"orig_filename": "Essigmann_Alois_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268f.", "author": "", "orig_id": 1421816}}, {"model": "metainfo.source", "pk": 16485, "fields": {"orig_filename": "Esslair_Ferdinand_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421817}}, {"model": "metainfo.source", "pk": 16486, "fields": {"orig_filename": "Estegar_Wartan-Joseph_1843_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421818}}, {"model": "metainfo.source", "pk": 16487, "fields": {"orig_filename": "Esterhazy_Moriz_1807_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421888}}, {"model": "metainfo.source", "pk": 16488, "fields": {"orig_filename": "Esterhazy_Nikolaus-Ii_1765_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421889}}, {"model": "metainfo.source", "pk": 16489, "fields": {"orig_filename": "Ehrhard_Albert-Josef-Maria_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 228", "author": "", "orig_id": 1421036}}, {"model": "metainfo.source", "pk": 16490, "fields": {"orig_filename": "Ehrhart-Ehrhartstein_Johann-Nep_1779_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421038}}, {"model": "metainfo.source", "pk": 16491, "fields": {"orig_filename": "Ehrhart_Vincenz_1823_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 228", "author": "", "orig_id": 1421037}}, {"model": "metainfo.source", "pk": 16492, "fields": {"orig_filename": "Ehrlich_Adolf_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421039}}, {"model": "metainfo.source", "pk": 16493, "fields": {"orig_filename": "Ehrlich_Eugen_1862_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421040}}, {"model": "metainfo.source", "pk": 16494, "fields": {"orig_filename": "Ehrlich_Franz-Karl_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421041}}, {"model": "metainfo.source", "pk": 16495, "fields": {"orig_filename": "Ehrlich_Heinrich_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229f.", "author": "", "orig_id": 1421116}}, {"model": "metainfo.source", "pk": 16496, "fields": {"orig_filename": "Ehrlich_Johann-Nep_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421118}}, {"model": "metainfo.source", "pk": 16497, "fields": {"orig_filename": "Ehrlich_Johann_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421117}}, {"model": "metainfo.source", "pk": 16498, "fields": {"orig_filename": "Ehrlich_Josef-Ruben_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421119}}, {"model": "metainfo.source", "pk": 16499, "fields": {"orig_filename": "Ehrlich_Lambert_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421120}}, {"model": "metainfo.source", "pk": 16500, "fields": {"orig_filename": "Ehrlich_Martin_1871_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421121}}, {"model": "metainfo.source", "pk": 16501, "fields": {"orig_filename": "Ehrlich_Sigmund_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230f.", "author": "", "orig_id": 1421122}}, {"model": "metainfo.source", "pk": 16502, "fields": {"orig_filename": "Ehrlich_Urban_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421123}}, {"model": "metainfo.source", "pk": 16503, "fields": {"orig_filename": "Ehrmann_Camillo_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421124}}, {"model": "metainfo.source", "pk": 16504, "fields": {"orig_filename": "Ehrmann_Martin_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421125}}, {"model": "metainfo.source", "pk": 16505, "fields": {"orig_filename": "Ehrmann_Salomon_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421126}}, {"model": "metainfo.source", "pk": 16506, "fields": {"orig_filename": "Eibenschuetz_Siegmund_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421127}}, {"model": "metainfo.source", "pk": 16507, "fields": {"orig_filename": "Eichberger_Josef_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231f.", "author": "", "orig_id": 1421128}}, {"model": "metainfo.source", "pk": 16508, "fields": {"orig_filename": "Eichert_Franz_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232", "author": "", "orig_id": 1421129}}, {"model": "metainfo.source", "pk": 16509, "fields": {"orig_filename": "Eichhorn_Ambros_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232", "author": "", "orig_id": 1421130}}, {"model": "metainfo.source", "pk": 16510, "fields": {"orig_filename": "Eichhorn_Rudolf_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232f.", "author": "", "orig_id": 1421131}}, {"model": "metainfo.source", "pk": 16511, "fields": {"orig_filename": "Eichler-Eichkron_Wilhelm_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421134}}, {"model": "metainfo.source", "pk": 16512, "fields": {"orig_filename": "Eichler_Ferdinand_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421132}}, {"model": "metainfo.source", "pk": 16513, "fields": {"orig_filename": "Eichler_Hermann_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421133}}, {"model": "metainfo.source", "pk": 16514, "fields": {"orig_filename": "Eichmann_Carl-Julius_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421135}}, {"model": "metainfo.source", "pk": 16515, "fields": {"orig_filename": "Eigl_Josef_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233f.", "author": "", "orig_id": 1421136}}, {"model": "metainfo.source", "pk": 16516, "fields": {"orig_filename": "Eigner_Moriz_1822_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421137}}, {"model": "metainfo.source", "pk": 16517, "fields": {"orig_filename": "Einfalt_Martin_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421138}}, {"model": "metainfo.source", "pk": 16518, "fields": {"orig_filename": "Einoedshofer_Julius_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421139}}, {"model": "metainfo.source", "pk": 16519, "fields": {"orig_filename": "Einsle_Anton_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421212}}, {"model": "metainfo.source", "pk": 16520, "fields": {"orig_filename": "Einspieler_Andrej_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234f.", "author": "", "orig_id": 1421213}}, {"model": "metainfo.source", "pk": 16521, "fields": {"orig_filename": "Einspieler_Lambert_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421214}}, {"model": "metainfo.source", "pk": 16522, "fields": {"orig_filename": "Einspinner_August_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421215}}, {"model": "metainfo.source", "pk": 16523, "fields": {"orig_filename": "Eipeldauer_Franz_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421216}}, {"model": "metainfo.source", "pk": 16524, "fields": {"orig_filename": "Eisath_Georg_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235f.", "author": "", "orig_id": 1421217}}, {"model": "metainfo.source", "pk": 16525, "fields": {"orig_filename": "Eiselsberg_Anton_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421218}}, {"model": "metainfo.source", "pk": 16526, "fields": {"orig_filename": "Eiselt_Jan-Bohumil_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421219}}, {"model": "metainfo.source", "pk": 16527, "fields": {"orig_filename": "Eisenbach_Heinrich_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421220}}, {"model": "metainfo.source", "pk": 16528, "fields": {"orig_filename": "Eisenberger_Severyn_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236f.", "author": "", "orig_id": 1421222}}, {"model": "metainfo.source", "pk": 16529, "fields": {"orig_filename": "Eisenberg_Ludwig-Julius_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421221}}, {"model": "metainfo.source", "pk": 16530, "fields": {"orig_filename": "Eisendle_Richard_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421223}}, {"model": "metainfo.source", "pk": 16531, "fields": {"orig_filename": "Eisenhuth_Djuro_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421224}}, {"model": "metainfo.source", "pk": 16532, "fields": {"orig_filename": "Eisenmenger_August_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421225}}, {"model": "metainfo.source", "pk": 16533, "fields": {"orig_filename": "Eisenmenger_Viktor_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421226}}, {"model": "metainfo.source", "pk": 16534, "fields": {"orig_filename": "Eisenstecken_Josef_1779_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421227}}, {"model": "metainfo.source", "pk": 16535, "fields": {"orig_filename": "Eisenstein_Arthur_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237f.", "author": "", "orig_id": 1421228}}, {"model": "metainfo.source", "pk": 16536, "fields": {"orig_filename": "Eiser_Anton_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421229}}, {"model": "metainfo.source", "pk": 16537, "fields": {"orig_filename": "Eisler-Terramare_Georg_1889_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421236}}, {"model": "metainfo.source", "pk": 16538, "fields": {"orig_filename": "Eisler_Arnold_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421230}}, {"model": "metainfo.source", "pk": 16539, "fields": {"orig_filename": "Eisler_Athanas_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421231}}, {"model": "metainfo.source", "pk": 16540, "fields": {"orig_filename": "Eisler_Fritz_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421232}}, {"model": "metainfo.source", "pk": 16541, "fields": {"orig_filename": "Eisler_Max_1855_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421233}}, {"model": "metainfo.source", "pk": 16542, "fields": {"orig_filename": "Eisler_Max_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421234}}, {"model": "metainfo.source", "pk": 16543, "fields": {"orig_filename": "Eisler_Rudolf_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238f.", "author": "", "orig_id": 1421235}}, {"model": "metainfo.source", "pk": 16544, "fields": {"orig_filename": "Eissner_Franz-Xaver_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421310}}, {"model": "metainfo.source", "pk": 16545, "fields": {"orig_filename": "Eisvogel_Gregor_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421311}}, {"model": "metainfo.source", "pk": 16546, "fields": {"orig_filename": "Eitelberger-Edelberg_Jeanette_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421312}}, {"model": "metainfo.source", "pk": 16547, "fields": {"orig_filename": "Eitelberger-Edelberg_Rudolf_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239f.", "author": "", "orig_id": 1421313}}, {"model": "metainfo.source", "pk": 16548, "fields": {"orig_filename": "Eitl_Franz-Vincenz_1800_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421315}}, {"model": "metainfo.source", "pk": 16549, "fields": {"orig_filename": "Eitner_Wilhelm_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421314}}, {"model": "metainfo.source", "pk": 16550, "fields": {"orig_filename": "Ekert_Franz_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421317}}, {"model": "metainfo.source", "pk": 16551, "fields": {"orig_filename": "Ekert_Karl_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421318}}, {"model": "metainfo.source", "pk": 16552, "fields": {"orig_filename": "Eker_Albert_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421316}}, {"model": "metainfo.source", "pk": 16553, "fields": {"orig_filename": "Ekielski_Wladyslaw_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421319}}, {"model": "metainfo.source", "pk": 16554, "fields": {"orig_filename": "Ekstein_Otto_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421320}}, {"model": "metainfo.source", "pk": 16555, "fields": {"orig_filename": "Elbogen_Friedrich_1854_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421321}}, {"model": "metainfo.source", "pk": 16556, "fields": {"orig_filename": "Eldersch_Matthias_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421322}}, {"model": "metainfo.source", "pk": 16557, "fields": {"orig_filename": "Eliatschek-Siebenburg_Wenzel_1779_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241f.", "author": "", "orig_id": 1421323}}, {"model": "metainfo.source", "pk": 16558, "fields": {"orig_filename": "Elisabeth_Amalie-Eugenie_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421325}}, {"model": "metainfo.source", "pk": 16559, "fields": {"orig_filename": "Elizza_Elise_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421326}}, {"model": "metainfo.source", "pk": 16560, "fields": {"orig_filename": "Ellend_Bernhard_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421327}}, {"model": "metainfo.source", "pk": 16561, "fields": {"orig_filename": "Ellert_Gerhart_1900_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1427195}}, {"model": "metainfo.source", "pk": 16562, "fields": {"orig_filename": "Eller_Louis_1820_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242f.", "author": "", "orig_id": 1421328}}, {"model": "metainfo.source", "pk": 16563, "fields": {"orig_filename": "Ellinger_Joseph_1814_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421329}}, {"model": "metainfo.source", "pk": 16564, "fields": {"orig_filename": "Ellison-Nidlef_Otto_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421330}}, {"model": "metainfo.source", "pk": 16565, "fields": {"orig_filename": "Ellissen_Hubert_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421331}}, {"model": "metainfo.source", "pk": 16566, "fields": {"orig_filename": "Ellmaurer_Josef_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421332}}, {"model": "metainfo.source", "pk": 16567, "fields": {"orig_filename": "Elmayer-Vestenbrugg_Rudolf_1881_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427613}}, {"model": "metainfo.source", "pk": 16568, "fields": {"orig_filename": "Elschnig_Marietta_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243f.", "author": "", "orig_id": 1421333}}, {"model": "metainfo.source", "pk": 16569, "fields": {"orig_filename": "Elssler_Franziska_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421407}}, {"model": "metainfo.source", "pk": 16570, "fields": {"orig_filename": "Elssler_Johann-Florian_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421334}}, {"model": "metainfo.source", "pk": 16571, "fields": {"orig_filename": "Elssler_Theresia_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421408}}, {"model": "metainfo.source", "pk": 16572, "fields": {"orig_filename": "Elterlein_Johann-Georg_1806_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421409}}, {"model": "metainfo.source", "pk": 16573, "fields": {"orig_filename": "Elze_Ludwig-Theodor_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421410}}, {"model": "metainfo.source", "pk": 16574, "fields": {"orig_filename": "Elzholz_Adolf_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421411}}, {"model": "metainfo.source", "pk": 16575, "fields": {"orig_filename": "Embel_Franz-Xaver_1770_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421412}}, {"model": "metainfo.source", "pk": 16576, "fields": {"orig_filename": "Emich_Friedrich_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421413}}, {"model": "metainfo.source", "pk": 16577, "fields": {"orig_filename": "Emich_Gustav_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421414}}, {"model": "metainfo.source", "pk": 16578, "fields": {"orig_filename": "Eminger_Joseph-Wilhelm_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421415}}, {"model": "metainfo.source", "pk": 16579, "fields": {"orig_filename": "Emler_Bonaventura_1831_1862.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446156}}, {"model": "metainfo.source", "pk": 16580, "fields": {"orig_filename": "Emler_Josef_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245f.", "author": "", "orig_id": 1421416}}, {"model": "metainfo.source", "pk": 16581, "fields": {"orig_filename": "Emmer_Johannes_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421417}}, {"model": "metainfo.source", "pk": 16582, "fields": {"orig_filename": "Emminger_Josef_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421419}}, {"model": "metainfo.source", "pk": 16583, "fields": {"orig_filename": "Emperger_Friedrich-Ignaz_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421421}}, {"model": "metainfo.source", "pk": 16584, "fields": {"orig_filename": "Emperger_Vinzenz-Benedikt_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421420}}, {"model": "metainfo.source", "pk": 16585, "fields": {"orig_filename": "Enderes_Aglaia_1836_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247f.", "author": "", "orig_id": 1421425}}, {"model": "metainfo.source", "pk": 16586, "fields": {"orig_filename": "Enderes_Bruno_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421426}}, {"model": "metainfo.source", "pk": 16587, "fields": {"orig_filename": "Enderlen_Eugen_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421427}}, {"model": "metainfo.source", "pk": 16588, "fields": {"orig_filename": "Enders_Johann-Nep_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421428}}, {"model": "metainfo.source", "pk": 16589, "fields": {"orig_filename": "Ender_Eduard_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421422}}, {"model": "metainfo.source", "pk": 16590, "fields": {"orig_filename": "Ender_Johann-Nepomuk_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421423}}, {"model": "metainfo.source", "pk": 16591, "fields": {"orig_filename": "Ender_Thomas_1793_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421424}}, {"model": "metainfo.source", "pk": 16592, "fields": {"orig_filename": "Dunin-Borkowski_Josef_1809_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422143}}, {"model": "metainfo.source", "pk": 16593, "fields": {"orig_filename": "Dunkler_Gaudentius-Andreas_1746_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422144}}, {"model": "metainfo.source", "pk": 16594, "fields": {"orig_filename": "Durdik_Josef_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422145}}, {"model": "metainfo.source", "pk": 16595, "fields": {"orig_filename": "Durig_Josef_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422146}}, {"model": "metainfo.source", "pk": 16596, "fields": {"orig_filename": "Dustmann-Meyer_Marie-Louise_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205f.", "author": "", "orig_id": 1422147}}, {"model": "metainfo.source", "pk": 16597, "fields": {"orig_filename": "Dutczynski_Eduard_1823_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1421981}}, {"model": "metainfo.source", "pk": 16598, "fields": {"orig_filename": "Dutczynski_Irma_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1421982}}, {"model": "metainfo.source", "pk": 16599, "fields": {"orig_filename": "Duval-Dampierre_Quirin_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1422148}}, {"model": "metainfo.source", "pk": 16600, "fields": {"orig_filename": "Dvorak_Anton_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1422150}}, {"model": "metainfo.source", "pk": 16601, "fields": {"orig_filename": "Dvorak_Max_1874_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206f.", "author": "", "orig_id": 1422151}}, {"model": "metainfo.source", "pk": 16602, "fields": {"orig_filename": "Dvorak_Xaver_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422152}}, {"model": "metainfo.source", "pk": 16603, "fields": {"orig_filename": "Dworaczek_Wilhelm_1873_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422153}}, {"model": "metainfo.source", "pk": 16604, "fields": {"orig_filename": "Dyk_Viktor_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422154}}, {"model": "metainfo.source", "pk": 16605, "fields": {"orig_filename": "Dzieduszycki_Maurycy_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422155}}, {"model": "metainfo.source", "pk": 16606, "fields": {"orig_filename": "Ebenhoch_Alfred_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422156}}, {"model": "metainfo.source", "pk": 16607, "fields": {"orig_filename": "Ebenspanger_Johannes_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422157}}, {"model": "metainfo.source", "pk": 16608, "fields": {"orig_filename": "Eberhard_Otto_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422158}}, {"model": "metainfo.source", "pk": 16609, "fields": {"orig_filename": "Eberle_Josef_1845_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422162}}, {"model": "metainfo.source", "pk": 16610, "fields": {"orig_filename": "Eberle_Joseph_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208f.", "author": "", "orig_id": 1422161}}, {"model": "metainfo.source", "pk": 16611, "fields": {"orig_filename": "Eberl_Raimund_1766_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422160}}, {"model": "metainfo.source", "pk": 16612, "fields": {"orig_filename": "Ebermann_Leo_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422163}}, {"model": "metainfo.source", "pk": 16613, "fields": {"orig_filename": "Ebersberg_Joseph-Sigmund_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422164}}, {"model": "metainfo.source", "pk": 16614, "fields": {"orig_filename": "Ebersberg_Julius-Carl_1831_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1420745}}, {"model": "metainfo.source", "pk": 16615, "fields": {"orig_filename": "Ebersberg_Ottokar-Franz_1833_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1420746}}, {"model": "metainfo.source", "pk": 16616, "fields": {"orig_filename": "Ebert_Anton_1845_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209f.", "author": "", "orig_id": 1420747}}, {"model": "metainfo.source", "pk": 16617, "fields": {"orig_filename": "Ebert_Karl-Egon_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420748}}, {"model": "metainfo.source", "pk": 16618, "fields": {"orig_filename": "Ebert_Ludwig_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420749}}, {"model": "metainfo.source", "pk": 16619, "fields": {"orig_filename": "Eble_Burkhard_1799_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420750}}, {"model": "metainfo.source", "pk": 16620, "fields": {"orig_filename": "Ebner-Eschenbach_Marie_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 211f.", "author": "", "orig_id": 1420754}}, {"model": "metainfo.source", "pk": 16621, "fields": {"orig_filename": "Ebner-Eschenbach_Moritz_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212", "author": "", "orig_id": 1420755}}, {"model": "metainfo.source", "pk": 16622, "fields": {"orig_filename": "Ebner-Rofenstein_Johann-Nep_1790_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212", "author": "", "orig_id": 1420756}}, {"model": "metainfo.source", "pk": 16623, "fields": {"orig_filename": "Ebner-Rofenstein_Viktor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212f.", "author": "", "orig_id": 1420757}}, {"model": "metainfo.source", "pk": 16624, "fields": {"orig_filename": "Ebner_Ferdinand_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420751}}, {"model": "metainfo.source", "pk": 16625, "fields": {"orig_filename": "Ebner_Karl_1811_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210f.", "author": "", "orig_id": 1420752}}, {"model": "metainfo.source", "pk": 16626, "fields": {"orig_filename": "Ebner_Karl_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 211", "author": "", "orig_id": 1420753}}, {"model": "metainfo.source", "pk": 16627, "fields": {"orig_filename": "Eckardt_Karl-Paul_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420758}}, {"model": "metainfo.source", "pk": 16628, "fields": {"orig_filename": "Eckardt_Ludwig_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420759}}, {"model": "metainfo.source", "pk": 16629, "fields": {"orig_filename": "Eckardt_Siegfried-Gotthilf_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420760}}, {"model": "metainfo.source", "pk": 16630, "fields": {"orig_filename": "Eckel_Hermann_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213f.", "author": "", "orig_id": 1420761}}, {"model": "metainfo.source", "pk": 16631, "fields": {"orig_filename": "Eckert_Karl-Anton-Florian_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420763}}, {"model": "metainfo.source", "pk": 16632, "fields": {"orig_filename": "Ecker_Johann-Matth-Alex_1766_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420762}}, {"model": "metainfo.source", "pk": 16633, "fields": {"orig_filename": "Eckhardt_Franz_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420764}}, {"model": "metainfo.source", "pk": 16634, "fields": {"orig_filename": "Eckinger_Johann-Nep_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420765}}, {"model": "metainfo.source", "pk": 16635, "fields": {"orig_filename": "Eckl_Georg_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420766}}, {"model": "metainfo.source", "pk": 16636, "fields": {"orig_filename": "Eckstein_Gustav_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214f.", "author": "", "orig_id": 1420767}}, {"model": "metainfo.source", "pk": 16637, "fields": {"orig_filename": "Economo-San-Serff_Constantin_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420836}}, {"model": "metainfo.source", "pk": 16638, "fields": {"orig_filename": "Edelsheim-Gyulai_Leopold-Wilhelm_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420837}}, {"model": "metainfo.source", "pk": 16639, "fields": {"orig_filename": "Eder_Franz-Albert_1818_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420838}}, {"model": "metainfo.source", "pk": 16640, "fields": {"orig_filename": "Eder_Gustav_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215f.", "author": "", "orig_id": 1420839}}, {"model": "metainfo.source", "pk": 16641, "fields": {"orig_filename": "Eder_Hans_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420840}}, {"model": "metainfo.source", "pk": 16642, "fields": {"orig_filename": "Eder_Josef-Maria_1855_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420843}}, {"model": "metainfo.source", "pk": 16643, "fields": {"orig_filename": "Eder_Josef_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420841}}, {"model": "metainfo.source", "pk": 16644, "fields": {"orig_filename": "Eder_Josef_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420842}}, {"model": "metainfo.source", "pk": 16645, "fields": {"orig_filename": "Eder_Josephine_1816_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216f.", "author": "", "orig_id": 1420844}}, {"model": "metainfo.source", "pk": 16646, "fields": {"orig_filename": "Eder_Leopold_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420845}}, {"model": "metainfo.source", "pk": 16647, "fields": {"orig_filename": "Eder_Robert_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420846}}, {"model": "metainfo.source", "pk": 16648, "fields": {"orig_filename": "Eder_Wilhelm_1780_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420847}}, {"model": "metainfo.source", "pk": 16649, "fields": {"orig_filename": "Edlauer_Franz_1798_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420848}}, {"model": "metainfo.source", "pk": 16650, "fields": {"orig_filename": "Edlbacher_Joseph_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420849}}, {"model": "metainfo.source", "pk": 16651, "fields": {"orig_filename": "Edlbacher_Ludwig_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420850}}, {"model": "metainfo.source", "pk": 16652, "fields": {"orig_filename": "Edlbacher_Maximilian-Josef-Augustin_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420851}}, {"model": "metainfo.source", "pk": 16653, "fields": {"orig_filename": "Edler_Karl-Erdmann_1844_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420852}}, {"model": "metainfo.source", "pk": 16654, "fields": {"orig_filename": "Edlmann_Ernst_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420853}}, {"model": "metainfo.source", "pk": 16655, "fields": {"orig_filename": "Edlmann_Leopold_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420854}}, {"model": "metainfo.source", "pk": 16656, "fields": {"orig_filename": "Egarter_Ferdinand_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218f.", "author": "", "orig_id": 1420855}}, {"model": "metainfo.source", "pk": 16657, "fields": {"orig_filename": "Egerer_Gislar_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420933}}, {"model": "metainfo.source", "pk": 16658, "fields": {"orig_filename": "Egerer_Petrus_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219f.", "author": "", "orig_id": 1420934}}, {"model": "metainfo.source", "pk": 16659, "fields": {"orig_filename": "Egermann_Friedrich_1777_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420935}}, {"model": "metainfo.source", "pk": 16660, "fields": {"orig_filename": "Egersdorfer_Alexander_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420936}}, {"model": "metainfo.source", "pk": 16661, "fields": {"orig_filename": "Eger_Alexander_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420856}}, {"model": "metainfo.source", "pk": 16662, "fields": {"orig_filename": "Eger_Ferdinand_1868_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420932}}, {"model": "metainfo.source", "pk": 16663, "fields": {"orig_filename": "Eger_Paul_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442992}}, {"model": "metainfo.source", "pk": 16664, "fields": {"orig_filename": "Egger-Lienz_Albin_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 224f.", "author": "", "orig_id": 1421020}}, {"model": "metainfo.source", "pk": 16665, "fields": {"orig_filename": "Egger-Moellwald_Alois_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421021}}, {"model": "metainfo.source", "pk": 16666, "fields": {"orig_filename": "Egger_Bela_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221", "author": "", "orig_id": 1420939}}, {"model": "metainfo.source", "pk": 16667, "fields": {"orig_filename": "Egger_Berthold_1852_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221", "author": "", "orig_id": 1420940}}, {"model": "metainfo.source", "pk": 16668, "fields": {"orig_filename": "Egger_Ernst_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221f.", "author": "", "orig_id": 1420941}}, {"model": "metainfo.source", "pk": 16669, "fields": {"orig_filename": "Egger_Ferdinand_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420942}}, {"model": "metainfo.source", "pk": 16670, "fields": {"orig_filename": "Egger_Franz-Joh-Nep_1768_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420944}}, {"model": "metainfo.source", "pk": 16671, "fields": {"orig_filename": "Egger_Franz_1765_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420943}}, {"model": "metainfo.source", "pk": 16672, "fields": {"orig_filename": "Egger_Franz_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222f.", "author": "", "orig_id": 1420946}}, {"model": "metainfo.source", "pk": 16673, "fields": {"orig_filename": "Egger_Franz_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420947}}, {"model": "metainfo.source", "pk": 16674, "fields": {"orig_filename": "Egger_Hermann_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420948}}, {"model": "metainfo.source", "pk": 16675, "fields": {"orig_filename": "Egger_Johann-Bapt_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420949}}, {"model": "metainfo.source", "pk": 16676, "fields": {"orig_filename": "Egger_Johann-Georg_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223f.", "author": "", "orig_id": 1420950}}, {"model": "metainfo.source", "pk": 16677, "fields": {"orig_filename": "Egger_Josef_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 224", "author": "", "orig_id": 1420951}}, {"model": "metainfo.source", "pk": 16678, "fields": {"orig_filename": "Egg_Franz_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420937}}, {"model": "metainfo.source", "pk": 16679, "fields": {"orig_filename": "Egner_Marie_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421022}}, {"model": "metainfo.source", "pk": 16680, "fields": {"orig_filename": "Egressy_Beni_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421023}}, {"model": "metainfo.source", "pk": 16681, "fields": {"orig_filename": "Egressy_Gabor_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225f.", "author": "", "orig_id": 1421024}}, {"model": "metainfo.source", "pk": 16682, "fields": {"orig_filename": "Ehmann_Helene_1910_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145466}}, {"model": "metainfo.source", "pk": 16683, "fields": {"orig_filename": "Ehnn_Bertha_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421026}}, {"model": "metainfo.source", "pk": 16684, "fields": {"orig_filename": "Ehrbar_Friedrich_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421027}}, {"model": "metainfo.source", "pk": 16685, "fields": {"orig_filename": "Ehrenberger_Josef_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421028}}, {"model": "metainfo.source", "pk": 16686, "fields": {"orig_filename": "Ehrenberg_Kurt_1896_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442592}}, {"model": "metainfo.source", "pk": 16687, "fields": {"orig_filename": "Ehrenfeld_Richard_1877_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421029}}, {"model": "metainfo.source", "pk": 16688, "fields": {"orig_filename": "Ehrenfels_Christian_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226f.", "author": "", "orig_id": 1421030}}, {"model": "metainfo.source", "pk": 16689, "fields": {"orig_filename": "Ehrenhofer_Walther-Edmund_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421031}}, {"model": "metainfo.source", "pk": 16690, "fields": {"orig_filename": "Ehrenreich_Max-Leopold_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421032}}, {"model": "metainfo.source", "pk": 16691, "fields": {"orig_filename": "Ehrenstein_Albert_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421033}}, {"model": "metainfo.source", "pk": 16692, "fields": {"orig_filename": "Ehrenstein_Louise_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421034}}, {"model": "metainfo.source", "pk": 16693, "fields": {"orig_filename": "Ehrenzweig_Armin_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227f.", "author": "", "orig_id": 1421035}}, {"model": "metainfo.source", "pk": 16694, "fields": {"orig_filename": "Doczy_Ludwig_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421588}}, {"model": "metainfo.source", "pk": 16695, "fields": {"orig_filename": "Doebler_Ludwig_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421590}}, {"model": "metainfo.source", "pk": 16696, "fields": {"orig_filename": "Doebrentei_Gabriel_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421591}}, {"model": "metainfo.source", "pk": 16697, "fields": {"orig_filename": "Doell-Gruenheim_Karl_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421592}}, {"model": "metainfo.source", "pk": 16698, "fields": {"orig_filename": "Doeller_Johann_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190f.", "author": "", "orig_id": 1421593}}, {"model": "metainfo.source", "pk": 16699, "fields": {"orig_filename": "Doelter-Cisterich_Cornelius_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421594}}, {"model": "metainfo.source", "pk": 16700, "fields": {"orig_filename": "Doepfner_Josef_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421595}}, {"model": "metainfo.source", "pk": 16701, "fields": {"orig_filename": "Doerfl_Rudolf_1855_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421596}}, {"model": "metainfo.source", "pk": 16702, "fields": {"orig_filename": "Doernhoeffer_Friedrich_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421598}}, {"model": "metainfo.source", "pk": 16703, "fields": {"orig_filename": "Doerr_August_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191f.", "author": "", "orig_id": 1421674}}, {"model": "metainfo.source", "pk": 16704, "fields": {"orig_filename": "Doery-Jobbahaza_Josef_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421675}}, {"model": "metainfo.source", "pk": 16705, "fields": {"orig_filename": "Dolch_Moritz_1887_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421676}}, {"model": "metainfo.source", "pk": 16706, "fields": {"orig_filename": "Dollfuss_Engelbert_1892_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421677}}, {"model": "metainfo.source", "pk": 16707, "fields": {"orig_filename": "Dolliner_Georg_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421678}}, {"model": "metainfo.source", "pk": 16708, "fields": {"orig_filename": "Dolliner_Thomas_1760_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421679}}, {"model": "metainfo.source", "pk": 16709, "fields": {"orig_filename": "Dollmayr_Hermann_1865_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421680}}, {"model": "metainfo.source", "pk": 16710, "fields": {"orig_filename": "Domanig-Roll_Roman-Cornelius_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421683}}, {"model": "metainfo.source", "pk": 16711, "fields": {"orig_filename": "Domanig_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421681}}, {"model": "metainfo.source", "pk": 16712, "fields": {"orig_filename": "Domanig_Marie_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421682}}, {"model": "metainfo.source", "pk": 16713, "fields": {"orig_filename": "Domaszewski_Alfred_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421684}}, {"model": "metainfo.source", "pk": 16714, "fields": {"orig_filename": "Dombrowski_Ernst_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421685}}, {"model": "metainfo.source", "pk": 16715, "fields": {"orig_filename": "Domes_Franz_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421686}}, {"model": "metainfo.source", "pk": 16716, "fields": {"orig_filename": "Domin_Franjo-Josip_1754_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421687}}, {"model": "metainfo.source", "pk": 16717, "fields": {"orig_filename": "Domjanic_Dragutin_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421688}}, {"model": "metainfo.source", "pk": 16718, "fields": {"orig_filename": "Domokos_Josef_1762_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421689}}, {"model": "metainfo.source", "pk": 16719, "fields": {"orig_filename": "Donabaum_Josef_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421690}}, {"model": "metainfo.source", "pk": 16720, "fields": {"orig_filename": "Donath_Eduard_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421693}}, {"model": "metainfo.source", "pk": 16721, "fields": {"orig_filename": "Donath_Julius_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421694}}, {"model": "metainfo.source", "pk": 16722, "fields": {"orig_filename": "Donat_Johann-Daniel_1744_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421691}}, {"model": "metainfo.source", "pk": 16723, "fields": {"orig_filename": "Donat_Josef_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194f.", "author": "", "orig_id": 1421692}}, {"model": "metainfo.source", "pk": 16724, "fields": {"orig_filename": "Donegani-Stilfserberg_Carlo_1775_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421695}}, {"model": "metainfo.source", "pk": 16725, "fields": {"orig_filename": "Donin_Ludwig_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421696}}, {"model": "metainfo.source", "pk": 16726, "fields": {"orig_filename": "Donizetti_Gaetano_1797_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421769}}, {"model": "metainfo.source", "pk": 16727, "fields": {"orig_filename": "Donizetti_Giuseppe_1788_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421770}}, {"model": "metainfo.source", "pk": 16728, "fields": {"orig_filename": "Dont_Jakob_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421771}}, {"model": "metainfo.source", "pk": 16729, "fields": {"orig_filename": "Doppelbauer_Franz-Maria_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421772}}, {"model": "metainfo.source", "pk": 16730, "fields": {"orig_filename": "Doppler_Adolf_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421773}}, {"model": "metainfo.source", "pk": 16731, "fields": {"orig_filename": "Doppler_Adolf_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421774}}, {"model": "metainfo.source", "pk": 16732, "fields": {"orig_filename": "Doppler_Christian_1803_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421775}}, {"model": "metainfo.source", "pk": 16733, "fields": {"orig_filename": "Doppler_Franz_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421776}}, {"model": "metainfo.source", "pk": 16734, "fields": {"orig_filename": "Doppler_Karl_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421777}}, {"model": "metainfo.source", "pk": 16735, "fields": {"orig_filename": "Dormus-Kilianshausen_Josef_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421779}}, {"model": "metainfo.source", "pk": 16736, "fields": {"orig_filename": "Dormus_Georg_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421778}}, {"model": "metainfo.source", "pk": 16737, "fields": {"orig_filename": "Dorner_Johann-Konrad_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421781}}, {"model": "metainfo.source", "pk": 16738, "fields": {"orig_filename": "Dorner_Peter_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421782}}, {"model": "metainfo.source", "pk": 16739, "fields": {"orig_filename": "Dostal-Lutinov_Karl_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421783}}, {"model": "metainfo.source", "pk": 16740, "fields": {"orig_filename": "Doublier_Othmar_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421784}}, {"model": "metainfo.source", "pk": 16741, "fields": {"orig_filename": "Dovsky_Beatrice_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421785}}, {"model": "metainfo.source", "pk": 16742, "fields": {"orig_filename": "Draexler_Karl-Ferdinand_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421786}}, {"model": "metainfo.source", "pk": 16743, "fields": {"orig_filename": "Drasche-Wartinberg_Heinrich_1811_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421788}}, {"model": "metainfo.source", "pk": 16744, "fields": {"orig_filename": "Drasche-Wartinberg_Richard_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421789}}, {"model": "metainfo.source", "pk": 16745, "fields": {"orig_filename": "Drasche_Anton_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197f.", "author": "", "orig_id": 1421787}}, {"model": "metainfo.source", "pk": 16746, "fields": {"orig_filename": "Draskovic-Trakoscan_Johann_1770_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421790}}, {"model": "metainfo.source", "pk": 16747, "fields": {"orig_filename": "Draxler_Josef_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421791}}, {"model": "metainfo.source", "pk": 16748, "fields": {"orig_filename": "Drbal_Mathias-Amos_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421792}}, {"model": "metainfo.source", "pk": 16749, "fields": {"orig_filename": "Drdla_Franz_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421866}}, {"model": "metainfo.source", "pk": 16750, "fields": {"orig_filename": "Drechsel_Anton_1751_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421867}}, {"model": "metainfo.source", "pk": 16751, "fields": {"orig_filename": "Drechsler_Josef_1782_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421868}}, {"model": "metainfo.source", "pk": 16752, "fields": {"orig_filename": "Drechsler_Karl_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421869}}, {"model": "metainfo.source", "pk": 16753, "fields": {"orig_filename": "Dreger_Moritz_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421870}}, {"model": "metainfo.source", "pk": 16754, "fields": {"orig_filename": "Dreger_Tom_1868_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1419946}}, {"model": "metainfo.source", "pk": 16755, "fields": {"orig_filename": "Dreher_Anton_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421963}}, {"model": "metainfo.source", "pk": 16756, "fields": {"orig_filename": "Dreher_Anton_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199f.", "author": "", "orig_id": 1421964}}, {"model": "metainfo.source", "pk": 16757, "fields": {"orig_filename": "Dreher_Franz-Anton_1736_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421965}}, {"model": "metainfo.source", "pk": 16758, "fields": {"orig_filename": "Drescher_Karl-Wilhelm_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421966}}, {"model": "metainfo.source", "pk": 16759, "fields": {"orig_filename": "Dressery_Wilhelm_1770_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421967}}, {"model": "metainfo.source", "pk": 16760, "fields": {"orig_filename": "Dressler_Raphael_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421968}}, {"model": "metainfo.source", "pk": 16761, "fields": {"orig_filename": "Drexel_Johann_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421969}}, {"model": "metainfo.source", "pk": 16762, "fields": {"orig_filename": "Drexler_Anton_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1442907}}, {"model": "metainfo.source", "pk": 16763, "fields": {"orig_filename": "Drexler_Josef_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2256452}}, {"model": "metainfo.source", "pk": 16764, "fields": {"orig_filename": "Drexler_Karl_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421970}}, {"model": "metainfo.source", "pk": 16765, "fields": {"orig_filename": "Dreyer-Iller_Johann-Traugott_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200f.", "author": "", "orig_id": 1421971}}, {"model": "metainfo.source", "pk": 16766, "fields": {"orig_filename": "Dreyschock_Alexander_1818_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421972}}, {"model": "metainfo.source", "pk": 16767, "fields": {"orig_filename": "Drha_Anton_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421973}}, {"model": "metainfo.source", "pk": 16768, "fields": {"orig_filename": "Drossbach_Paul_1866_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421974}}, {"model": "metainfo.source", "pk": 16769, "fields": {"orig_filename": "Drtina_Frantisek_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421975}}, {"model": "metainfo.source", "pk": 16770, "fields": {"orig_filename": "Druskowitz_Helene_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421976}}, {"model": "metainfo.source", "pk": 16771, "fields": {"orig_filename": "Dubsky-Trebomyslice_Viktor_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421977}}, {"model": "metainfo.source", "pk": 16772, "fields": {"orig_filename": "Duchek_Albert_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421978}}, {"model": "metainfo.source", "pk": 16773, "fields": {"orig_filename": "Dudik_Beda_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201f.", "author": "", "orig_id": 1421983}}, {"model": "metainfo.source", "pk": 16774, "fields": {"orig_filename": "Duell_Alois-Franz_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1421984}}, {"model": "metainfo.source", "pk": 16775, "fields": {"orig_filename": "Duerauer_Franz-Josef_1854_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422055}}, {"model": "metainfo.source", "pk": 16776, "fields": {"orig_filename": "Duerlinger_Josef_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422056}}, {"model": "metainfo.source", "pk": 16777, "fields": {"orig_filename": "Duerrnberger_Adolf_1838_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422057}}, {"model": "metainfo.source", "pk": 16778, "fields": {"orig_filename": "Duftschmid_Johann_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422058}}, {"model": "metainfo.source", "pk": 16779, "fields": {"orig_filename": "Duftschmid_Kaspar_1767_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422059}}, {"model": "metainfo.source", "pk": 16780, "fields": {"orig_filename": "Dugonics_Andreas_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422060}}, {"model": "metainfo.source", "pk": 16781, "fields": {"orig_filename": "Duhm_Julius_1885_1955.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443109}}, {"model": "metainfo.source", "pk": 16782, "fields": {"orig_filename": "Duile_Josef_1776_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202f.", "author": "", "orig_id": 1422061}}, {"model": "metainfo.source", "pk": 16783, "fields": {"orig_filename": "Duka-Kadar_Friedrich_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422062}}, {"model": "metainfo.source", "pk": 16784, "fields": {"orig_filename": "Dukes_Leopold_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422063}}, {"model": "metainfo.source", "pk": 16785, "fields": {"orig_filename": "Duller_Eduard_1809_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422064}}, {"model": "metainfo.source", "pk": 16786, "fields": {"orig_filename": "Dumba_Nikolaus_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422066}}, {"model": "metainfo.source", "pk": 16787, "fields": {"orig_filename": "Dumreicher-Oesterreicher_Armand_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203f.", "author": "", "orig_id": 1422067}}, {"model": "metainfo.source", "pk": 16788, "fields": {"orig_filename": "Dumreicher-Oesterreicher_Johann_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422068}}, {"model": "metainfo.source", "pk": 16789, "fields": {"orig_filename": "Dunaiszky_Ladislaus_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422069}}, {"model": "metainfo.source", "pk": 16790, "fields": {"orig_filename": "Dunaiszky_Laurentius_1784_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422070}}, {"model": "metainfo.source", "pk": 16791, "fields": {"orig_filename": "Dunajewski_Albin_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422071}}, {"model": "metainfo.source", "pk": 16792, "fields": {"orig_filename": "Dunajewski_Julian_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204f.", "author": "", "orig_id": 1422072}}, {"model": "metainfo.source", "pk": 16793, "fields": {"orig_filename": "Dungel_Adalbert_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422073}}, {"model": "metainfo.source", "pk": 16794, "fields": {"orig_filename": "Dunin-Borkowski_Alexander_1811_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422074}}, {"model": "metainfo.source", "pk": 16795, "fields": {"orig_filename": "Deininger_Julius_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1443709}}, {"model": "metainfo.source", "pk": 16796, "fields": {"orig_filename": "Del-Pero_Bartholomaeus_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417250}}, {"model": "metainfo.source", "pk": 16797, "fields": {"orig_filename": "Dela-Croze_Johann-Nepomuk_1736_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417244}}, {"model": "metainfo.source", "pk": 16798, "fields": {"orig_filename": "Delci_Angelo-Maria_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417245}}, {"model": "metainfo.source", "pk": 16799, "fields": {"orig_filename": "Delhaes_Istvan_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417246}}, {"model": "metainfo.source", "pk": 16800, "fields": {"orig_filename": "Dellatorre-Valsassina_Michael_1757_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175f.", "author": "", "orig_id": 1417247}}, {"model": "metainfo.source", "pk": 16801, "fields": {"orig_filename": "Dellegrazie_Marie-Eugenie_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417248}}, {"model": "metainfo.source", "pk": 16802, "fields": {"orig_filename": "Delmont_Josef_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417249}}, {"model": "metainfo.source", "pk": 16803, "fields": {"orig_filename": "Delrio_Josef-Giannatassio_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417251}}, {"model": "metainfo.source", "pk": 16804, "fields": {"orig_filename": "Delug_Alois_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417252}}, {"model": "metainfo.source", "pk": 16805, "fields": {"orig_filename": "Delvert_Christian_1803_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176f.", "author": "", "orig_id": 1417253}}, {"model": "metainfo.source", "pk": 16806, "fields": {"orig_filename": "Demagri_Egidius_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417254}}, {"model": "metainfo.source", "pk": 16807, "fields": {"orig_filename": "Dembinski_Henryk_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417255}}, {"model": "metainfo.source", "pk": 16808, "fields": {"orig_filename": "Demelius_Ernst_1859_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417257}}, {"model": "metainfo.source", "pk": 16809, "fields": {"orig_filename": "Demelius_Gustav_1831_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417258}}, {"model": "metainfo.source", "pk": 16810, "fields": {"orig_filename": "Demel_Hans_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417256}}, {"model": "metainfo.source", "pk": 16811, "fields": {"orig_filename": "Demeter_Dimitrija_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177f.", "author": "", "orig_id": 1417259}}, {"model": "metainfo.source", "pk": 16812, "fields": {"orig_filename": "Demian_Johann-Andreas_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417260}}, {"model": "metainfo.source", "pk": 16813, "fields": {"orig_filename": "Demuth_Leopold_1860_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417261}}, {"model": "metainfo.source", "pk": 16814, "fields": {"orig_filename": "Denifle_Heinrich-Suso_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417263}}, {"model": "metainfo.source", "pk": 16815, "fields": {"orig_filename": "Derencin_Marijan_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417264}}, {"model": "metainfo.source", "pk": 16816, "fields": {"orig_filename": "Deri_Max_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1426849}}, {"model": "metainfo.source", "pk": 16817, "fields": {"orig_filename": "Dermota_Anton_1876_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178f.", "author": "", "orig_id": 1421289}}, {"model": "metainfo.source", "pk": 16818, "fields": {"orig_filename": "Derschatta_Julius_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421290}}, {"model": "metainfo.source", "pk": 16819, "fields": {"orig_filename": "Dery_Juliane_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421291}}, {"model": "metainfo.source", "pk": 16820, "fields": {"orig_filename": "Dery_Rosa_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421292}}, {"model": "metainfo.source", "pk": 16821, "fields": {"orig_filename": "Desanti_Angelo_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421293}}, {"model": "metainfo.source", "pk": 16822, "fields": {"orig_filename": "Deschmann_Karl_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421294}}, {"model": "metainfo.source", "pk": 16823, "fields": {"orig_filename": "Desfours-Montville-Athienville_Franz-Josef_1765_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421295}}, {"model": "metainfo.source", "pk": 16824, "fields": {"orig_filename": "Desimoni_Albert_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421296}}, {"model": "metainfo.source", "pk": 16825, "fields": {"orig_filename": "Desquilles_Joseph_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421297}}, {"model": "metainfo.source", "pk": 16826, "fields": {"orig_filename": "Dessauer_Josef_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421298}}, {"model": "metainfo.source", "pk": 16827, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Aurel_1808_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421299}}, {"model": "metainfo.source", "pk": 16828, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Emil_1814_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421300}}, {"model": "metainfo.source", "pk": 16829, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Josef_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421301}}, {"model": "metainfo.source", "pk": 16830, "fields": {"orig_filename": "Dessoff_Felix-Otto_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180f.", "author": "", "orig_id": 1421302}}, {"model": "metainfo.source", "pk": 16831, "fields": {"orig_filename": "Destinn_Emmy_1878_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421303}}, {"model": "metainfo.source", "pk": 16832, "fields": {"orig_filename": "Detela_Franz_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421304}}, {"model": "metainfo.source", "pk": 16833, "fields": {"orig_filename": "Detraux_Ludwig_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421305}}, {"model": "metainfo.source", "pk": 16834, "fields": {"orig_filename": "Detraux_Maximilian_1766_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421306}}, {"model": "metainfo.source", "pk": 16835, "fields": {"orig_filename": "Deubler_Konrad_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421307}}, {"model": "metainfo.source", "pk": 16836, "fields": {"orig_filename": "Deutelmoser_Ferdinand_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421308}}, {"model": "metainfo.source", "pk": 16837, "fields": {"orig_filename": "Deutsch-German_Alfred_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444413}}, {"model": "metainfo.source", "pk": 16838, "fields": {"orig_filename": "Deutsch_Karl_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421309}}, {"model": "metainfo.source", "pk": 16839, "fields": {"orig_filename": "Deutsch_Poldi_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181f.", "author": "", "orig_id": 1421383}}, {"model": "metainfo.source", "pk": 16840, "fields": {"orig_filename": "Devaulx_Karl_1776_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421384}}, {"model": "metainfo.source", "pk": 16841, "fields": {"orig_filename": "Devaux_Thierry_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421385}}, {"model": "metainfo.source", "pk": 16842, "fields": {"orig_filename": "Devrient-Reinhold_Babette_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421388}}, {"model": "metainfo.source", "pk": 16843, "fields": {"orig_filename": "Devrient_Max_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421387}}, {"model": "metainfo.source", "pk": 16844, "fields": {"orig_filename": "Dewez_Josef-Wilhelm_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421389}}, {"model": "metainfo.source", "pk": 16845, "fields": {"orig_filename": "Deym-Stritez_Franz_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421390}}, {"model": "metainfo.source", "pk": 16846, "fields": {"orig_filename": "Dezelic_Velimir_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182f.", "author": "", "orig_id": 1421391}}, {"model": "metainfo.source", "pk": 16847, "fields": {"orig_filename": "Dezman_Milivoj_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421392}}, {"model": "metainfo.source", "pk": 16848, "fields": {"orig_filename": "Diabelli_Anton_1781_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421393}}, {"model": "metainfo.source", "pk": 16849, "fields": {"orig_filename": "Diamant_Paul-Joseph_1887_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2133940}}, {"model": "metainfo.source", "pk": 16850, "fields": {"orig_filename": "Dickmann-Secherau_Eugen_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421397}}, {"model": "metainfo.source", "pk": 16851, "fields": {"orig_filename": "Dick_Rudolf_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421396}}, {"model": "metainfo.source", "pk": 16852, "fields": {"orig_filename": "Diedo_Antonio_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421399}}, {"model": "metainfo.source", "pk": 16853, "fields": {"orig_filename": "Diemer_Josef_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183f.", "author": "", "orig_id": 1421400}}, {"model": "metainfo.source", "pk": 16854, "fields": {"orig_filename": "Diem_Karl_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421398}}, {"model": "metainfo.source", "pk": 16855, "fields": {"orig_filename": "Diener_Carl_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421401}}, {"model": "metainfo.source", "pk": 16856, "fields": {"orig_filename": "Dierzer-Traunthal_Josef_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421402}}, {"model": "metainfo.source", "pk": 16857, "fields": {"orig_filename": "Diesing_Karl-Moriz_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421403}}, {"model": "metainfo.source", "pk": 16858, "fields": {"orig_filename": "Dietl_Gottlieb_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421404}}, {"model": "metainfo.source", "pk": 16859, "fields": {"orig_filename": "Dietmann_Leopold_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184f.", "author": "", "orig_id": 1421405}}, {"model": "metainfo.source", "pk": 16860, "fields": {"orig_filename": "Dietrich-Hermannberg_Emanuel_1772_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421478}}, {"model": "metainfo.source", "pk": 16861, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Alexander_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421479}}, {"model": "metainfo.source", "pk": 16862, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Franz-Josef_1767_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421480}}, {"model": "metainfo.source", "pk": 16863, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Moritz-I-Josef-Johann_1775_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421481}}, {"model": "metainfo.source", "pk": 16864, "fields": {"orig_filename": "Dietrich_Georg_1891_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421406}}, {"model": "metainfo.source", "pk": 16865, "fields": {"orig_filename": "Dietz_Max_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421482}}, {"model": "metainfo.source", "pk": 16866, "fields": {"orig_filename": "Dimitz_August_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421483}}, {"model": "metainfo.source", "pk": 16867, "fields": {"orig_filename": "Dimitz_Ludwig_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185f.", "author": "", "orig_id": 1421484}}, {"model": "metainfo.source", "pk": 16868, "fields": {"orig_filename": "Dimmer_Friedrich_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186", "author": "", "orig_id": 1421485}}, {"model": "metainfo.source", "pk": 16869, "fields": {"orig_filename": "Dingelstedt_Franz_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421486}}, {"model": "metainfo.source", "pk": 16870, "fields": {"orig_filename": "Dipauli_Andreas_1761_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186", "author": "", "orig_id": 1421487}}, {"model": "metainfo.source", "pk": 16871, "fields": {"orig_filename": "Dipauli_Josef_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186f.", "author": "", "orig_id": 1421488}}, {"model": "metainfo.source", "pk": 16872, "fields": {"orig_filename": "Dirmoser_Oswald_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421489}}, {"model": "metainfo.source", "pk": 16873, "fields": {"orig_filename": "Dirmoser_Richard_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421490}}, {"model": "metainfo.source", "pk": 16874, "fields": {"orig_filename": "Dirnboeck-Schulz_Jenny_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421492}}, {"model": "metainfo.source", "pk": 16875, "fields": {"orig_filename": "Dirnboeck_Jakob_1809_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421491}}, {"model": "metainfo.source", "pk": 16876, "fields": {"orig_filename": "Ditmar_Karl-Rudolf_1798_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421493}}, {"model": "metainfo.source", "pk": 16877, "fields": {"orig_filename": "Ditscheiner_Adolf-Gustav_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421494}}, {"model": "metainfo.source", "pk": 16878, "fields": {"orig_filename": "Ditscheiner_Leander_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421495}}, {"model": "metainfo.source", "pk": 16879, "fields": {"orig_filename": "Dittel_Leopold_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187f.", "author": "", "orig_id": 1421496}}, {"model": "metainfo.source", "pk": 16880, "fields": {"orig_filename": "Dittel_Leopold_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421497}}, {"model": "metainfo.source", "pk": 16881, "fields": {"orig_filename": "Dittes_Christian-Friedrich_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421498}}, {"model": "metainfo.source", "pk": 16882, "fields": {"orig_filename": "Dittes_Paul_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1413412}}, {"model": "metainfo.source", "pk": 16883, "fields": {"orig_filename": "Dittler_Emil_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2005213}}, {"model": "metainfo.source", "pk": 16884, "fields": {"orig_filename": "Dittmarsch_Karl_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421499}}, {"model": "metainfo.source", "pk": 16885, "fields": {"orig_filename": "Dittrich_Franz_1815_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421500}}, {"model": "metainfo.source", "pk": 16886, "fields": {"orig_filename": "Dittrich_Josef_1794_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421501}}, {"model": "metainfo.source", "pk": 16887, "fields": {"orig_filename": "Dlabacz_Gottfried-Johann_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421578}}, {"model": "metainfo.source", "pk": 16888, "fields": {"orig_filename": "Dlustus_Ljuboje_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188f.", "author": "", "orig_id": 1421579}}, {"model": "metainfo.source", "pk": 16889, "fields": {"orig_filename": "Dobernig_Johann-Wolfgang_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421580}}, {"model": "metainfo.source", "pk": 16890, "fields": {"orig_filename": "Dobiaschofsky_Franz-Joseph_1818_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421581}}, {"model": "metainfo.source", "pk": 16891, "fields": {"orig_filename": "Doblhoff-Dier_Anton_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421582}}, {"model": "metainfo.source", "pk": 16892, "fields": {"orig_filename": "Doblhoff-Dier_Josef_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421583}}, {"model": "metainfo.source", "pk": 16893, "fields": {"orig_filename": "Doblhoff-Dier_Karl_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421584}}, {"model": "metainfo.source", "pk": 16894, "fields": {"orig_filename": "Dobrila_Juraj_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421585}}, {"model": "metainfo.source", "pk": 16895, "fields": {"orig_filename": "Dobrovsky_Josef_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189f.", "author": "", "orig_id": 1421586}}, {"model": "metainfo.source", "pk": 16896, "fields": {"orig_filename": "Dobrzensky-Dobrzenitz_Anton_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421587}}, {"model": "metainfo.source", "pk": 16897, "fields": {"orig_filename": "Czako_Siegmund_1820_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417601}}, {"model": "metainfo.source", "pk": 16898, "fields": {"orig_filename": "Czant_Hermann_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417602}}, {"model": "metainfo.source", "pk": 16899, "fields": {"orig_filename": "Czapek_Friedrich_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417603}}, {"model": "metainfo.source", "pk": 16900, "fields": {"orig_filename": "Czapka-Winstetten_Ignaz_1791_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417604}}, {"model": "metainfo.source", "pk": 16901, "fields": {"orig_filename": "Czartoryski_Adam-Kasimir_1734_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160f.", "author": "", "orig_id": 1417605}}, {"model": "metainfo.source", "pk": 16902, "fields": {"orig_filename": "Czedik-Bruendelsberg-Eysenberg_Alois_1830_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417606}}, {"model": "metainfo.source", "pk": 16903, "fields": {"orig_filename": "Czermak_Franz_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417607}}, {"model": "metainfo.source", "pk": 16904, "fields": {"orig_filename": "Czermak_Jaroslav_1831_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417608}}, {"model": "metainfo.source", "pk": 16905, "fields": {"orig_filename": "Czermak_Johann-Nep_1828_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417609}}, {"model": "metainfo.source", "pk": 16906, "fields": {"orig_filename": "Czermak_Joseph-Julius_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1443916}}, {"model": "metainfo.source", "pk": 16907, "fields": {"orig_filename": "Czermak_Joseph_1825_1872.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2254768}}, {"model": "metainfo.source", "pk": 16908, "fields": {"orig_filename": "Czernin_Johann-Rudolf_1757_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417610}}, {"model": "metainfo.source", "pk": 16909, "fields": {"orig_filename": "Czernin_Ottokar_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417611}}, {"model": "metainfo.source", "pk": 16910, "fields": {"orig_filename": "Czernits_Franz_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417612}}, {"model": "metainfo.source", "pk": 16911, "fields": {"orig_filename": "Czerny_Albin_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417614}}, {"model": "metainfo.source", "pk": 16912, "fields": {"orig_filename": "Czerny_Franz_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417616}}, {"model": "metainfo.source", "pk": 16913, "fields": {"orig_filename": "Czerny_Karl_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417617}}, {"model": "metainfo.source", "pk": 16914, "fields": {"orig_filename": "Czerny_Vinzenz_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417618}}, {"model": "metainfo.source", "pk": 16915, "fields": {"orig_filename": "Czerwenka_Bernhard-Franz_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417688}}, {"model": "metainfo.source", "pk": 16916, "fields": {"orig_filename": "Czibulka_Alfons_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417690}}, {"model": "metainfo.source", "pk": 16917, "fields": {"orig_filename": "Cziraky_Anton-Moses_1772_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417692}}, {"model": "metainfo.source", "pk": 16918, "fields": {"orig_filename": "Czizek_Johann-Bapt_1806_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417693}}, {"model": "metainfo.source", "pk": 16919, "fields": {"orig_filename": "Czoernig-Czernhausen_Karl_1804_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417694}}, {"model": "metainfo.source", "pk": 16920, "fields": {"orig_filename": "Czoernig-Czernhausen_Walter_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164f.", "author": "", "orig_id": 1417695}}, {"model": "metainfo.source", "pk": 16921, "fields": {"orig_filename": "Czuber_Emanuel_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417696}}, {"model": "metainfo.source", "pk": 16922, "fields": {"orig_filename": "Czuczor_Gregor_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417697}}, {"model": "metainfo.source", "pk": 16923, "fields": {"orig_filename": "Czyhlarz_Karl_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417698}}, {"model": "metainfo.source", "pk": 16924, "fields": {"orig_filename": "Czyzewicz_Adam-Zygmunt_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2194443}}, {"model": "metainfo.source", "pk": 16925, "fields": {"orig_filename": "Dabancourt-Franqueville_Franz-Xaver_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416969}}, {"model": "metainfo.source", "pk": 16926, "fields": {"orig_filename": "Dachler_Anton_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416970}}, {"model": "metainfo.source", "pk": 16927, "fields": {"orig_filename": "Dachs_Josef_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416971}}, {"model": "metainfo.source", "pk": 16928, "fields": {"orig_filename": "Daeubler_Theodor_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416972}}, {"model": "metainfo.source", "pk": 16929, "fields": {"orig_filename": "Dafert-Sensel-Timmer_Franz_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416973}}, {"model": "metainfo.source", "pk": 16930, "fields": {"orig_filename": "Daffinger_Moritz-Michael_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416974}}, {"model": "metainfo.source", "pk": 16931, "fields": {"orig_filename": "Dahlen-Orlaburg_Hermann_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166f.", "author": "", "orig_id": 1416975}}, {"model": "metainfo.source", "pk": 16932, "fields": {"orig_filename": "Dahlerup-Birch_Hans_1790_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416976}}, {"model": "metainfo.source", "pk": 16933, "fields": {"orig_filename": "Dajnko_Peter_1787_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416977}}, {"model": "metainfo.source", "pk": 16934, "fields": {"orig_filename": "Dalberg_Friedrich_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416978}}, {"model": "metainfo.source", "pk": 16935, "fields": {"orig_filename": "Dallacqua_Cesare_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416979}}, {"model": "metainfo.source", "pk": 16936, "fields": {"orig_filename": "Dallago_Carl_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416980}}, {"model": "metainfo.source", "pk": 16937, "fields": {"orig_filename": "Dallatorre_Karl-Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1417050}}, {"model": "metainfo.source", "pk": 16938, "fields": {"orig_filename": "Dallinger_Alfred_1926_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1428087}}, {"model": "metainfo.source", "pk": 16939, "fields": {"orig_filename": "Dallocca_Sophie_1807_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 426f.", "author": "", "orig_id": 1406922}}, {"model": "metainfo.source", "pk": 16940, "fields": {"orig_filename": "Dallongaro_Francesco_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167f.", "author": "", "orig_id": 1417051}}, {"model": "metainfo.source", "pk": 16941, "fields": {"orig_filename": "Damboeck_Ludwig_1798_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417052}}, {"model": "metainfo.source", "pk": 16942, "fields": {"orig_filename": "Damianitsch_Martin_1807_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417054}}, {"model": "metainfo.source", "pk": 16943, "fields": {"orig_filename": "Damian_Josef_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417053}}, {"model": "metainfo.source", "pk": 16944, "fields": {"orig_filename": "Damjanich_Johann_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417055}}, {"model": "metainfo.source", "pk": 16945, "fields": {"orig_filename": "Dandreis-Beausson_Josef-Julius_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417056}}, {"model": "metainfo.source", "pk": 16946, "fields": {"orig_filename": "Danegger_Josef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417057}}, {"model": "metainfo.source", "pk": 16947, "fields": {"orig_filename": "Danei_Josef_1782_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417058}}, {"model": "metainfo.source", "pk": 16948, "fields": {"orig_filename": "Dangelmeier_Emil_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417059}}, {"model": "metainfo.source", "pk": 16949, "fields": {"orig_filename": "Danhauser_Josef_1805_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168f.", "author": "", "orig_id": 1417060}}, {"model": "metainfo.source", "pk": 16950, "fields": {"orig_filename": "Danhelovsky_Konstantin_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417061}}, {"model": "metainfo.source", "pk": 16951, "fields": {"orig_filename": "Dani-Gyarmata-Magyar-Cseke_Blasius_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417062}}, {"model": "metainfo.source", "pk": 16952, "fields": {"orig_filename": "Dankl-Krasnik_Viktor_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417063}}, {"model": "metainfo.source", "pk": 16953, "fields": {"orig_filename": "Danko_Josef-Karl_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417064}}, {"model": "metainfo.source", "pk": 16954, "fields": {"orig_filename": "Danno_Josef_1742_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417065}}, {"model": "metainfo.source", "pk": 16955, "fields": {"orig_filename": "Dantoni_Antonio_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169f.", "author": "", "orig_id": 1417066}}, {"model": "metainfo.source", "pk": 16956, "fields": {"orig_filename": "Dantscher-Kollersberg_Theodor_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417067}}, {"model": "metainfo.source", "pk": 16957, "fields": {"orig_filename": "Danzer_Alfons_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417068}}, {"model": "metainfo.source", "pk": 16958, "fields": {"orig_filename": "Daranyi_Ignaz_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417070}}, {"model": "metainfo.source", "pk": 16959, "fields": {"orig_filename": "Darnaut-Fix_Hugo_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417071}}, {"model": "metainfo.source", "pk": 16960, "fields": {"orig_filename": "Daspre-Hoobreuk_Konstantin_1787_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417072}}, {"model": "metainfo.source", "pk": 16961, "fields": {"orig_filename": "Daublebsky-Sterneck-Ehrenstein_Jakob_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1430148}}, {"model": "metainfo.source", "pk": 16962, "fields": {"orig_filename": "Daublebsky-Sterneck_Maximilian_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417074}}, {"model": "metainfo.source", "pk": 16963, "fields": {"orig_filename": "Daublebsky-Sterneck_Moritz_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417146}}, {"model": "metainfo.source", "pk": 16964, "fields": {"orig_filename": "Daublebsky-Sterneck_Robert_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417147}}, {"model": "metainfo.source", "pk": 16965, "fields": {"orig_filename": "Daub_Hermann_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170f.", "author": "", "orig_id": 1417073}}, {"model": "metainfo.source", "pk": 16966, "fields": {"orig_filename": "Dauthage_Adolf_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417148}}, {"model": "metainfo.source", "pk": 16967, "fields": {"orig_filename": "David_Jakob-Julius_1859_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417149}}, {"model": "metainfo.source", "pk": 16968, "fields": {"orig_filename": "David_Martin-Alois_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417150}}, {"model": "metainfo.source", "pk": 16969, "fields": {"orig_filename": "David_Werner_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417151}}, {"model": "metainfo.source", "pk": 16970, "fields": {"orig_filename": "Deak-Ebner_Ludwig_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417153}}, {"model": "metainfo.source", "pk": 16971, "fields": {"orig_filename": "Deak_Franz_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417152}}, {"model": "metainfo.source", "pk": 16972, "fields": {"orig_filename": "Deball_Leo-Anton-Karl_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417154}}, {"model": "metainfo.source", "pk": 16973, "fields": {"orig_filename": "Debaut_Franz_1745_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417155}}, {"model": "metainfo.source", "pk": 16974, "fields": {"orig_filename": "Debois_Ferdinand_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417156}}, {"model": "metainfo.source", "pk": 16975, "fields": {"orig_filename": "Debrois-Bruyck_Karl_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417157}}, {"model": "metainfo.source", "pk": 16976, "fields": {"orig_filename": "Decarli_Bruno_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250f.", "author": "", "orig_id": 1406550}}, {"model": "metainfo.source", "pk": 16977, "fields": {"orig_filename": "Decker_Gabriel_1821_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417158}}, {"model": "metainfo.source", "pk": 16978, "fields": {"orig_filename": "Decker_Georg_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417159}}, {"model": "metainfo.source", "pk": 16979, "fields": {"orig_filename": "Decker_Johann-Stephan_1784_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417160}}, {"model": "metainfo.source", "pk": 16980, "fields": {"orig_filename": "Decsey_Alexander_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417161}}, {"model": "metainfo.source", "pk": 16981, "fields": {"orig_filename": "Decsey_Ernst_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417162}}, {"model": "metainfo.source", "pk": 16982, "fields": {"orig_filename": "Dedekind_Alexander_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417163}}, {"model": "metainfo.source", "pk": 16983, "fields": {"orig_filename": "Dedic_Paul_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173f.", "author": "", "orig_id": 1417164}}, {"model": "metainfo.source", "pk": 16984, "fields": {"orig_filename": "Dedovic_Martin_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417165}}, {"model": "metainfo.source", "pk": 16985, "fields": {"orig_filename": "Defabris_Giuseppe_1790_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417166}}, {"model": "metainfo.source", "pk": 16986, "fields": {"orig_filename": "Degen-Elsenau_Josef-Vinzenz_1762_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417169}}, {"model": "metainfo.source", "pk": 16987, "fields": {"orig_filename": "Degenfeld-Schonburg_August_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174f.", "author": "", "orig_id": 1417170}}, {"model": "metainfo.source", "pk": 16988, "fields": {"orig_filename": "Degenfeld-Schonburg_Friedrich_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417241}}, {"model": "metainfo.source", "pk": 16989, "fields": {"orig_filename": "Degen_Jakob_1760_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417168}}, {"model": "metainfo.source", "pk": 16990, "fields": {"orig_filename": "Degner_Erich-Wolfgang_1858_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417242}}, {"model": "metainfo.source", "pk": 16991, "fields": {"orig_filename": "Dehne_August_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443704}}, {"model": "metainfo.source", "pk": 16992, "fields": {"orig_filename": "Deil_Eugen_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1419883}}, {"model": "metainfo.source", "pk": 16993, "fields": {"orig_filename": "Deinhard-Deinhardstein_Johann-Ludwig_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417243}}, {"model": "metainfo.source", "pk": 16994, "fields": {"orig_filename": "Chmelensky_Ladislav_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417220}}, {"model": "metainfo.source", "pk": 16995, "fields": {"orig_filename": "Chmel_Adam-Matthias_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417144}}, {"model": "metainfo.source", "pk": 16996, "fields": {"orig_filename": "Chmel_Josef_1798_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417145}}, {"model": "metainfo.source", "pk": 16997, "fields": {"orig_filename": "Chocholousek_Prokop_1819_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417221}}, {"model": "metainfo.source", "pk": 16998, "fields": {"orig_filename": "Chodounsky_Karl_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417222}}, {"model": "metainfo.source", "pk": 16999, "fields": {"orig_filename": "Cholewa_Josip_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2192006}}, {"model": "metainfo.source", "pk": 17000, "fields": {"orig_filename": "Chorherr_Franz-Xaver_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417223}}, {"model": "metainfo.source", "pk": 17001, "fields": {"orig_filename": "Chorinsky_Karl_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1419882}}, {"model": "metainfo.source", "pk": 17002, "fields": {"orig_filename": "Chotek_Johann-Rud_1749_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417224}}, {"model": "metainfo.source", "pk": 17003, "fields": {"orig_filename": "Chotek_Karl_1783_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417225}}, {"model": "metainfo.source", "pk": 17004, "fields": {"orig_filename": "Chotek_Sophie_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417226}}, {"model": "metainfo.source", "pk": 17005, "fields": {"orig_filename": "Christ-Ehrenblueh_Josef_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417228}}, {"model": "metainfo.source", "pk": 17006, "fields": {"orig_filename": "Christel_Franz_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417229}}, {"model": "metainfo.source", "pk": 17007, "fields": {"orig_filename": "Christen_Wilhelm_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417231}}, {"model": "metainfo.source", "pk": 17008, "fields": {"orig_filename": "Christians_Mady_1896_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2167471}}, {"model": "metainfo.source", "pk": 17009, "fields": {"orig_filename": "Christomanos_Konstantin_1867_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417232}}, {"model": "metainfo.source", "pk": 17010, "fields": {"orig_filename": "Christomanos_Theodor_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417233}}, {"model": "metainfo.source", "pk": 17011, "fields": {"orig_filename": "Christ_Josef-Anton_1744_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417227}}, {"model": "metainfo.source", "pk": 17012, "fields": {"orig_filename": "Chrobak_Rudolf_1843_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417234}}, {"model": "metainfo.source", "pk": 17013, "fields": {"orig_filename": "Chroust_Anton_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147f.", "author": "", "orig_id": 1417235}}, {"model": "metainfo.source", "pk": 17014, "fields": {"orig_filename": "Chvostek_Franz_1835_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417236}}, {"model": "metainfo.source", "pk": 17015, "fields": {"orig_filename": "Chvostek_Franz_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417237}}, {"model": "metainfo.source", "pk": 17016, "fields": {"orig_filename": "Cicognara_Leopoldo_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417239}}, {"model": "metainfo.source", "pk": 17017, "fields": {"orig_filename": "Cicogna_Emanuele-Antonio_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417238}}, {"model": "metainfo.source", "pk": 17018, "fields": {"orig_filename": "Cikos-Sesija_Bela_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417240}}, {"model": "metainfo.source", "pk": 17019, "fields": {"orig_filename": "Cingr_Petr_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2173829}}, {"model": "metainfo.source", "pk": 17020, "fields": {"orig_filename": "Clary-Aldringen_Manfred_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417318}}, {"model": "metainfo.source", "pk": 17021, "fields": {"orig_filename": "Clar_Conrad_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1441329}}, {"model": "metainfo.source", "pk": 17022, "fields": {"orig_filename": "Clar_Franz_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1441328}}, {"model": "metainfo.source", "pk": 17023, "fields": {"orig_filename": "Clement_Franz_1780_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417321}}, {"model": "metainfo.source", "pk": 17024, "fields": {"orig_filename": "Coch_Georg-Theodor_1842_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1419881}}, {"model": "metainfo.source", "pk": 17025, "fields": {"orig_filename": "Coghetti_Francesco_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417322}}, {"model": "metainfo.source", "pk": 17026, "fields": {"orig_filename": "Cohn_Heinrich_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417323}}, {"model": "metainfo.source", "pk": 17027, "fields": {"orig_filename": "Cokor_Istvan_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417324}}, {"model": "metainfo.source", "pk": 17028, "fields": {"orig_filename": "Colard_Hermann_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417325}}, {"model": "metainfo.source", "pk": 17029, "fields": {"orig_filename": "Colerus-Geldern_Egmont_1888_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417326}}, {"model": "metainfo.source", "pk": 17030, "fields": {"orig_filename": "Colerus-Geldern_Emil_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417327}}, {"model": "metainfo.source", "pk": 17031, "fields": {"orig_filename": "Collenbach_Gabriel_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150f.", "author": "", "orig_id": 1417328}}, {"model": "metainfo.source", "pk": 17032, "fields": {"orig_filename": "Collery_Eduard_1790_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417329}}, {"model": "metainfo.source", "pk": 17033, "fields": {"orig_filename": "Collin_Matthaeus_1779_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417330}}, {"model": "metainfo.source", "pk": 17034, "fields": {"orig_filename": "Collmann_Alfred_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417331}}, {"model": "metainfo.source", "pk": 17035, "fields": {"orig_filename": "Colloredo-Mannsfeld_Ferdinand_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417332}}, {"model": "metainfo.source", "pk": 17036, "fields": {"orig_filename": "Colloredo-Mannsfeld_Hieronymus_1775_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417333}}, {"model": "metainfo.source", "pk": 17037, "fields": {"orig_filename": "Colloredo-Mels-Wallsee_Joseph_1735_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417334}}, {"model": "metainfo.source", "pk": 17038, "fields": {"orig_filename": "Colloredo-Mels-Wallsee_Wenzel-Joseph_1738_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417335}}, {"model": "metainfo.source", "pk": 17039, "fields": {"orig_filename": "Comerio_Agostino_1784_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417336}}, {"model": "metainfo.source", "pk": 17040, "fields": {"orig_filename": "Comolli_Giovanni-Battista_1775_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417337}}, {"model": "metainfo.source", "pk": 17041, "fields": {"orig_filename": "Conconi_Mauro_1815_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417338}}, {"model": "metainfo.source", "pk": 17042, "fields": {"orig_filename": "Conegliano_Emanuele_1749_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417339}}, {"model": "metainfo.source", "pk": 17043, "fields": {"orig_filename": "Conn_Leopold_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417412}}, {"model": "metainfo.source", "pk": 17044, "fields": {"orig_filename": "Conrad-Eybesfeld_Siegmund_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153", "author": "", "orig_id": 1417414}}, {"model": "metainfo.source", "pk": 17045, "fields": {"orig_filename": "Conrad-Hoetzendorf_Franz_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153", "author": "", "orig_id": 1417415}}, {"model": "metainfo.source", "pk": 17046, "fields": {"orig_filename": "Conrad_Otto_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152f.", "author": "", "orig_id": 1417413}}, {"model": "metainfo.source", "pk": 17047, "fields": {"orig_filename": "Cop_Matija_1797_1835.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417418}}, {"model": "metainfo.source", "pk": 17048, "fields": {"orig_filename": "Corda_August-Karl-Josef_1805_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154", "author": "", "orig_id": 1417419}}, {"model": "metainfo.source", "pk": 17049, "fields": {"orig_filename": "Coreth_Emerich_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154", "author": "", "orig_id": 1417420}}, {"model": "metainfo.source", "pk": 17050, "fields": {"orig_filename": "Cornelius_Hans-Peter_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154f.", "author": "", "orig_id": 1417421}}, {"model": "metainfo.source", "pk": 17051, "fields": {"orig_filename": "Cornet_Julius_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417422}}, {"model": "metainfo.source", "pk": 17052, "fields": {"orig_filename": "Cornova_Ignaz_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417423}}, {"model": "metainfo.source", "pk": 17053, "fields": {"orig_filename": "Coronini-Cronberg_Franz_1830_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417424}}, {"model": "metainfo.source", "pk": 17054, "fields": {"orig_filename": "Coronini-Cronberg_Johann-Baptist_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417425}}, {"model": "metainfo.source", "pk": 17055, "fields": {"orig_filename": "Coronini-Cronberg_Karl_1818_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417426}}, {"model": "metainfo.source", "pk": 17056, "fields": {"orig_filename": "Correr_Teodoro_1750_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417427}}, {"model": "metainfo.source", "pk": 17057, "fields": {"orig_filename": "Costa_Karl_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417428}}, {"model": "metainfo.source", "pk": 17058, "fields": {"orig_filename": "Costenoble_Johanna_1777_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417429}}, {"model": "metainfo.source", "pk": 17059, "fields": {"orig_filename": "Costenoble_Karl_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417430}}, {"model": "metainfo.source", "pk": 17060, "fields": {"orig_filename": "Coudenhove_Karl-Maria_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417432}}, {"model": "metainfo.source", "pk": 17061, "fields": {"orig_filename": "Coudenhove_Maximilian_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417433}}, {"model": "metainfo.source", "pk": 17062, "fields": {"orig_filename": "Coumont_Eduard_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417434}}, {"model": "metainfo.source", "pk": 17063, "fields": {"orig_filename": "Crivelli_Antonio_1783_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417435}}, {"model": "metainfo.source", "pk": 17064, "fields": {"orig_filename": "Crncic_Menci-Klement_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417505}}, {"model": "metainfo.source", "pk": 17065, "fields": {"orig_filename": "Cronbach_Else_1879_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156f.", "author": "", "orig_id": 1417506}}, {"model": "metainfo.source", "pk": 17066, "fields": {"orig_filename": "Crophius-Kaisersieg_Ludwig_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417507}}, {"model": "metainfo.source", "pk": 17067, "fields": {"orig_filename": "Cruewell_Gottlieb-August_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417508}}, {"model": "metainfo.source", "pk": 17068, "fields": {"orig_filename": "Crusius_Christian_1758_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417509}}, {"model": "metainfo.source", "pk": 17069, "fields": {"orig_filename": "Csanki_Deszoe_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417510}}, {"model": "metainfo.source", "pk": 17070, "fields": {"orig_filename": "Csaplovics-Jescenova_Johann_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417511}}, {"model": "metainfo.source", "pk": 17071, "fields": {"orig_filename": "Csemegi_Karl_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417512}}, {"model": "metainfo.source", "pk": 17072, "fields": {"orig_filename": "Csengery_Anton_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157f.", "author": "", "orig_id": 1417513}}, {"model": "metainfo.source", "pk": 17073, "fields": {"orig_filename": "Csermak_Anton_1771_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417514}}, {"model": "metainfo.source", "pk": 17074, "fields": {"orig_filename": "Csiky_Gregor_1842_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417515}}, {"model": "metainfo.source", "pk": 17075, "fields": {"orig_filename": "Csillag_Rosa_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417516}}, {"model": "metainfo.source", "pk": 17076, "fields": {"orig_filename": "Csivich-Rohr_Ignaz_1752_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417517}}, {"model": "metainfo.source", "pk": 17077, "fields": {"orig_filename": "Csokor_Franz-Theodor_1885_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438139}}, {"model": "metainfo.source", "pk": 17078, "fields": {"orig_filename": "Csok_Stephan_1865_1961.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417518}}, {"model": "metainfo.source", "pk": 17079, "fields": {"orig_filename": "Csonka_Janos_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1910690}}, {"model": "metainfo.source", "pk": 17080, "fields": {"orig_filename": "Csorich-Monte-Creto_Alexander-Franz_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417519}}, {"model": "metainfo.source", "pk": 17081, "fields": {"orig_filename": "Cuka_Jakov_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417521}}, {"model": "metainfo.source", "pk": 17082, "fields": {"orig_filename": "Culoz_Karl_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417522}}, {"model": "metainfo.source", "pk": 17083, "fields": {"orig_filename": "Cumberland_Ernst-August_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417523}}, {"model": "metainfo.source", "pk": 17084, "fields": {"orig_filename": "Cuntz_Otto_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417524}}, {"model": "metainfo.source", "pk": 17085, "fields": {"orig_filename": "Cupr_Frantisek_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417525}}, {"model": "metainfo.source", "pk": 17086, "fields": {"orig_filename": "Curinaldi_Alois_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417526}}, {"model": "metainfo.source", "pk": 17087, "fields": {"orig_filename": "Cuscoleca_Julius_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159f.", "author": "", "orig_id": 1417598}}, {"model": "metainfo.source", "pk": 17088, "fields": {"orig_filename": "Cuvaj_Anton_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417599}}, {"model": "metainfo.source", "pk": 17089, "fields": {"orig_filename": "Cvijic_Jovan_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417600}}, {"model": "metainfo.source", "pk": 17090, "fields": {"orig_filename": "Burrian_Karl_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419746}}, {"model": "metainfo.source", "pk": 17091, "fields": {"orig_filename": "Burstyn_Gunther_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419747}}, {"model": "metainfo.source", "pk": 17092, "fields": {"orig_filename": "Buschmann_Alfred_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419748}}, {"model": "metainfo.source", "pk": 17093, "fields": {"orig_filename": "Buschmann_Dina_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419749}}, {"model": "metainfo.source", "pk": 17094, "fields": {"orig_filename": "Buschmann_Gotthard_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130f.", "author": "", "orig_id": 1419750}}, {"model": "metainfo.source", "pk": 17095, "fields": {"orig_filename": "Busson_Arnold_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419751}}, {"model": "metainfo.source", "pk": 17096, "fields": {"orig_filename": "Busson_Paul_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419752}}, {"model": "metainfo.source", "pk": 17097, "fields": {"orig_filename": "Buttlar-Moscon_Alfred_1898_1972.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442839}}, {"model": "metainfo.source", "pk": 17098, "fields": {"orig_filename": "Buttlar_Auguste_1796_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419753}}, {"model": "metainfo.source", "pk": 17099, "fields": {"orig_filename": "Buwa_Johann_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419754}}, {"model": "metainfo.source", "pk": 17100, "fields": {"orig_filename": "Buzzi_Andreas_1779_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419799}}, {"model": "metainfo.source", "pk": 17101, "fields": {"orig_filename": "Bylandt-Rheidt_Artur-Maximilian_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131f.", "author": "", "orig_id": 1419801}}, {"model": "metainfo.source", "pk": 17102, "fields": {"orig_filename": "Bylandt-Rheidt_Artur_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419800}}, {"model": "metainfo.source", "pk": 17103, "fields": {"orig_filename": "Byloff_Fritz_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1419802}}, {"model": "metainfo.source", "pk": 17104, "fields": {"orig_filename": "Caboga_Bernhard_1785_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416758}}, {"model": "metainfo.source", "pk": 17105, "fields": {"orig_filename": "Cackovic_Miroslav_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416759}}, {"model": "metainfo.source", "pk": 17106, "fields": {"orig_filename": "Cada_Frantisek_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416760}}, {"model": "metainfo.source", "pk": 17107, "fields": {"orig_filename": "Cagnola_Luigi_1762_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132f.", "author": "", "orig_id": 1416762}}, {"model": "metainfo.source", "pk": 17108, "fields": {"orig_filename": "Cagnoni_Antonio_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416763}}, {"model": "metainfo.source", "pk": 17109, "fields": {"orig_filename": "Calafati_Theodor_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416764}}, {"model": "metainfo.source", "pk": 17110, "fields": {"orig_filename": "Calegari_Antonio_1757_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416765}}, {"model": "metainfo.source", "pk": 17111, "fields": {"orig_filename": "Calice_Heinrich_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416766}}, {"model": "metainfo.source", "pk": 17112, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Friedrich_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416767}}, {"model": "metainfo.source", "pk": 17113, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Guido_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416768}}, {"model": "metainfo.source", "pk": 17114, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Karl_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133f.", "author": "", "orig_id": 1416769}}, {"model": "metainfo.source", "pk": 17115, "fields": {"orig_filename": "Camesina_Albert_1806_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416770}}, {"model": "metainfo.source", "pk": 17116, "fields": {"orig_filename": "Campana-Spluegenberg_Anton_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416771}}, {"model": "metainfo.source", "pk": 17117, "fields": {"orig_filename": "Canal-Malabaila_Josef-Emanuel_1745_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416772}}, {"model": "metainfo.source", "pk": 17118, "fields": {"orig_filename": "Canal_Gilbert_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1419870}}, {"model": "metainfo.source", "pk": 17119, "fields": {"orig_filename": "Canaval_Michael-Franz_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416846}}, {"model": "metainfo.source", "pk": 17120, "fields": {"orig_filename": "Canaval_Richard_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416847}}, {"model": "metainfo.source", "pk": 17121, "fields": {"orig_filename": "Canciani_Alfonso_1863_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416848}}, {"model": "metainfo.source", "pk": 17122, "fields": {"orig_filename": "Canestrini_Giovanni_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416849}}, {"model": "metainfo.source", "pk": 17123, "fields": {"orig_filename": "Cankar_Ivan_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416850}}, {"model": "metainfo.source", "pk": 17124, "fields": {"orig_filename": "Canova_Antonio_1757_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416851}}, {"model": "metainfo.source", "pk": 17125, "fields": {"orig_filename": "Cantani_Arnaldo_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416852}}, {"model": "metainfo.source", "pk": 17126, "fields": {"orig_filename": "Cantor_Matthias_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135f.", "author": "", "orig_id": 1416853}}, {"model": "metainfo.source", "pk": 17127, "fields": {"orig_filename": "Cantu_Cesare_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416854}}, {"model": "metainfo.source", "pk": 17128, "fields": {"orig_filename": "Capek-Chod_Karel-Matej_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416856}}, {"model": "metainfo.source", "pk": 17129, "fields": {"orig_filename": "Capek_Karel_1890_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416855}}, {"model": "metainfo.source", "pk": 17130, "fields": {"orig_filename": "Capelari_Friedrich_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416857}}, {"model": "metainfo.source", "pk": 17131, "fields": {"orig_filename": "Capilleri_Wilhelm_1834_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416858}}, {"model": "metainfo.source", "pk": 17132, "fields": {"orig_filename": "Carabelli-Lunkaszprie_Georg_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416860}}, {"model": "metainfo.source", "pk": 17133, "fields": {"orig_filename": "Carcano_Giulio_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136f.", "author": "", "orig_id": 1416861}}, {"model": "metainfo.source", "pk": 17134, "fields": {"orig_filename": "Carlini_Francesco_1783_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416864}}, {"model": "metainfo.source", "pk": 17135, "fields": {"orig_filename": "Carneri_Bartholomaeus_1821_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416865}}, {"model": "metainfo.source", "pk": 17136, "fields": {"orig_filename": "Carrer_Luigi_1801_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416866}}, {"model": "metainfo.source", "pk": 17137, "fields": {"orig_filename": "Carro_Johann_1770_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416867}}, {"model": "metainfo.source", "pk": 17138, "fields": {"orig_filename": "Cartellieri_Wilhelm_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416868}}, {"model": "metainfo.source", "pk": 17139, "fields": {"orig_filename": "Car_Lazar_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416859}}, {"model": "metainfo.source", "pk": 17140, "fields": {"orig_filename": "Casati_Gabrio_1798_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416869}}, {"model": "metainfo.source", "pk": 17141, "fields": {"orig_filename": "Cassinone_Alexander_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137f.", "author": "", "orig_id": 1416870}}, {"model": "metainfo.source", "pk": 17142, "fields": {"orig_filename": "Castelli_Ignaz-Franz_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416871}}, {"model": "metainfo.source", "pk": 17143, "fields": {"orig_filename": "Castiglione_Johann_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416934}}, {"model": "metainfo.source", "pk": 17144, "fields": {"orig_filename": "Cathrein_Alois_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416935}}, {"model": "metainfo.source", "pk": 17145, "fields": {"orig_filename": "Catinelli_Maximilian_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416936}}, {"model": "metainfo.source", "pk": 17146, "fields": {"orig_filename": "Catty_Adolf_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416937}}, {"model": "metainfo.source", "pk": 17147, "fields": {"orig_filename": "Caucig_Franz_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138f.", "author": "", "orig_id": 1416938}}, {"model": "metainfo.source", "pk": 17148, "fields": {"orig_filename": "Cavar_Alfred_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416939}}, {"model": "metainfo.source", "pk": 17149, "fields": {"orig_filename": "Cazan_Dominik_1755_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416940}}, {"model": "metainfo.source", "pk": 17150, "fields": {"orig_filename": "Cebotari_Maria_1910_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416941}}, {"model": "metainfo.source", "pk": 17151, "fields": {"orig_filename": "Cech_Svatopluk_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416942}}, {"model": "metainfo.source", "pk": 17152, "fields": {"orig_filename": "Cegnar_Franz_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416943}}, {"model": "metainfo.source", "pk": 17153, "fields": {"orig_filename": "Ceipek_Josef_1844_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416944}}, {"model": "metainfo.source", "pk": 17154, "fields": {"orig_filename": "Celakovsky_Frantisek-Lad_1799_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139f.", "author": "", "orig_id": 1416945}}, {"model": "metainfo.source", "pk": 17155, "fields": {"orig_filename": "Celestin_Franz_1843_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416948}}, {"model": "metainfo.source", "pk": 17156, "fields": {"orig_filename": "Cermak_Wilhelm_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416949}}, {"model": "metainfo.source", "pk": 17157, "fields": {"orig_filename": "Cerny_Thomas_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416950}}, {"model": "metainfo.source", "pk": 17158, "fields": {"orig_filename": "Cerri_Caecilie_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416951}}, {"model": "metainfo.source", "pk": 17159, "fields": {"orig_filename": "Cerri_Cajetan_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140f.", "author": "", "orig_id": 1416952}}, {"model": "metainfo.source", "pk": 17160, "fields": {"orig_filename": "Cesari_Antonio_1760_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416954}}, {"model": "metainfo.source", "pk": 17161, "fields": {"orig_filename": "Cevapovic_Gregor_1786_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416955}}, {"model": "metainfo.source", "pk": 17162, "fields": {"orig_filename": "Chadt_Josef_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416956}}, {"model": "metainfo.source", "pk": 17163, "fields": {"orig_filename": "Chajes_Hirsch-Perez_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416957}}, {"model": "metainfo.source", "pk": 17164, "fields": {"orig_filename": "Chalupka_Samo_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417028}}, {"model": "metainfo.source", "pk": 17165, "fields": {"orig_filename": "Chasteler-Courcelles_Johann-Gabriel_1763_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141f.", "author": "", "orig_id": 1417031}}, {"model": "metainfo.source", "pk": 17166, "fields": {"orig_filename": "Chavanne_Irene_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417032}}, {"model": "metainfo.source", "pk": 17167, "fields": {"orig_filename": "Chavanne_Josef_1846_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417033}}, {"model": "metainfo.source", "pk": 17168, "fields": {"orig_filename": "Chezy_Wilhelm-Theodor_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417034}}, {"model": "metainfo.source", "pk": 17169, "fields": {"orig_filename": "Chiari_Arthur_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417035}}, {"model": "metainfo.source", "pk": 17170, "fields": {"orig_filename": "Chiari_Hans_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417036}}, {"model": "metainfo.source", "pk": 17171, "fields": {"orig_filename": "Chiari_Johann-Bapt_1817_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417037}}, {"model": "metainfo.source", "pk": 17172, "fields": {"orig_filename": "Chiari_Josef_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417038}}, {"model": "metainfo.source", "pk": 17173, "fields": {"orig_filename": "Chiari_Karl_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142f.", "author": "", "orig_id": 1417039}}, {"model": "metainfo.source", "pk": 17174, "fields": {"orig_filename": "Chiari_Max_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417040}}, {"model": "metainfo.source", "pk": 17175, "fields": {"orig_filename": "Chiari_Ottokar_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417041}}, {"model": "metainfo.source", "pk": 17176, "fields": {"orig_filename": "Chiavacci_Vinzenz_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417042}}, {"model": "metainfo.source", "pk": 17177, "fields": {"orig_filename": "Chimani-Mannberg_Anton_1768_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417135}}, {"model": "metainfo.source", "pk": 17178, "fields": {"orig_filename": "Chimani_Leopold_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417134}}, {"model": "metainfo.source", "pk": 17179, "fields": {"orig_filename": "Chiolich-Loewensberg_Hermann_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417136}}, {"model": "metainfo.source", "pk": 17180, "fields": {"orig_filename": "Chittussi_Anton_1847_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417137}}, {"model": "metainfo.source", "pk": 17181, "fields": {"orig_filename": "Chledowski_Kasimir_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417138}}, {"model": "metainfo.source", "pk": 17182, "fields": {"orig_filename": "Chlumecky_Johann_1834_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417141}}, {"model": "metainfo.source", "pk": 17183, "fields": {"orig_filename": "Chlumecky_Leopold_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144f.", "author": "", "orig_id": 1417142}}, {"model": "metainfo.source", "pk": 17184, "fields": {"orig_filename": "Chlumecky_Peter_1825_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417143}}, {"model": "metainfo.source", "pk": 17185, "fields": {"orig_filename": "Chmelarz_Eduard_1847_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417218}}, {"model": "metainfo.source", "pk": 17186, "fields": {"orig_filename": "Chmelensky_Josef-Krasoslav_1800_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145f.", "author": "", "orig_id": 1417219}}, {"model": "metainfo.source", "pk": 17187, "fields": {"orig_filename": "Brik_Johann-Emanuel_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420549}}, {"model": "metainfo.source", "pk": 17188, "fields": {"orig_filename": "Brioschi_Anton_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420550}}, {"model": "metainfo.source", "pk": 17189, "fields": {"orig_filename": "Brioschi_Francesco_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420551}}, {"model": "metainfo.source", "pk": 17190, "fields": {"orig_filename": "Brioschi_Karl_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420552}}, {"model": "metainfo.source", "pk": 17191, "fields": {"orig_filename": "Brioschi_Othmar_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420553}}, {"model": "metainfo.source", "pk": 17192, "fields": {"orig_filename": "Brlic-Mazuranic_Ivana_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420556}}, {"model": "metainfo.source", "pk": 17193, "fields": {"orig_filename": "Brlic_Andrija-Torkvat_1826_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420554}}, {"model": "metainfo.source", "pk": 17194, "fields": {"orig_filename": "Brlic_Ignjat-Alojzije_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420555}}, {"model": "metainfo.source", "pk": 17195, "fields": {"orig_filename": "Brociner_Marco_1852_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420557}}, {"model": "metainfo.source", "pk": 17196, "fields": {"orig_filename": "Brocky_Karl_1807_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420558}}, {"model": "metainfo.source", "pk": 17197, "fields": {"orig_filename": "Broda_Rudolf_1880_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420559}}, {"model": "metainfo.source", "pk": 17198, "fields": {"orig_filename": "Brody_Alexander_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115f.", "author": "", "orig_id": 1420560}}, {"model": "metainfo.source", "pk": 17199, "fields": {"orig_filename": "Brodzinski_Kazimierz_1791_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420605}}, {"model": "metainfo.source", "pk": 17200, "fields": {"orig_filename": "Bronner_Ferdinand_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420606}}, {"model": "metainfo.source", "pk": 17201, "fields": {"orig_filename": "Brosch-Aarenau_Alexander_1870_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420608}}, {"model": "metainfo.source", "pk": 17202, "fields": {"orig_filename": "Brosch-Aarenau_Theodor_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116f.", "author": "", "orig_id": 1420609}}, {"model": "metainfo.source", "pk": 17203, "fields": {"orig_filename": "Brosch_Moritz_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420607}}, {"model": "metainfo.source", "pk": 17204, "fields": {"orig_filename": "Brotanek_Rudolf_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420610}}, {"model": "metainfo.source", "pk": 17205, "fields": {"orig_filename": "Brozik_Wenzel_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420611}}, {"model": "metainfo.source", "pk": 17206, "fields": {"orig_filename": "Bruckner_Anton_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420615}}, {"model": "metainfo.source", "pk": 17207, "fields": {"orig_filename": "Bruckner_Ferdinand_1891_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422506}}, {"model": "metainfo.source", "pk": 17208, "fields": {"orig_filename": "Bruck_Karl-Ludwig_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420613}}, {"model": "metainfo.source", "pk": 17209, "fields": {"orig_filename": "Bruech_Oskar_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420616}}, {"model": "metainfo.source", "pk": 17210, "fields": {"orig_filename": "Bruecke_Ernst-Theodor_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420618}}, {"model": "metainfo.source", "pk": 17211, "fields": {"orig_filename": "Bruecke_Ernst-Wilhelm_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420617}}, {"model": "metainfo.source", "pk": 17212, "fields": {"orig_filename": "Brueckner_Alexander_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119f.", "author": "", "orig_id": 1420619}}, {"model": "metainfo.source", "pk": 17213, "fields": {"orig_filename": "Brueckner_Eduard_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420620}}, {"model": "metainfo.source", "pk": 17214, "fields": {"orig_filename": "Bruehl_Karl-Bernhard_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420621}}, {"model": "metainfo.source", "pk": 17215, "fields": {"orig_filename": "Bruell_Ignaz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420622}}, {"model": "metainfo.source", "pk": 17216, "fields": {"orig_filename": "Bruerovic_Marko_1770_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420623}}, {"model": "metainfo.source", "pk": 17217, "fields": {"orig_filename": "Brumowski_Godwin_1889_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420352}}, {"model": "metainfo.source", "pk": 17218, "fields": {"orig_filename": "Brunetti-Pisano_August_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420624}}, {"model": "metainfo.source", "pk": 17219, "fields": {"orig_filename": "Brunlechner_August_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420625}}, {"model": "metainfo.source", "pk": 17220, "fields": {"orig_filename": "Brunmeyer_Andreas_1762_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420626}}, {"model": "metainfo.source", "pk": 17221, "fields": {"orig_filename": "Brunnenmeister_Emil_1854_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420627}}, {"model": "metainfo.source", "pk": 17222, "fields": {"orig_filename": "Brunner_Armin_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420628}}, {"model": "metainfo.source", "pk": 17223, "fields": {"orig_filename": "Brunner_Heinrich_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1419618}}, {"model": "metainfo.source", "pk": 17224, "fields": {"orig_filename": "Brunner_Moritz_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1419619}}, {"model": "metainfo.source", "pk": 17225, "fields": {"orig_filename": "Brunner_Sebastian_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121f.", "author": "", "orig_id": 1419620}}, {"model": "metainfo.source", "pk": 17226, "fields": {"orig_filename": "Brunner_Vratislav_1886_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419621}}, {"model": "metainfo.source", "pk": 17227, "fields": {"orig_filename": "Brunsmid_Josef_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419622}}, {"model": "metainfo.source", "pk": 17228, "fields": {"orig_filename": "Brunsvick_Therese_1775_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419623}}, {"model": "metainfo.source", "pk": 17229, "fields": {"orig_filename": "Bruzek_Anton_1915_2003.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1994566}}, {"model": "metainfo.source", "pk": 17230, "fields": {"orig_filename": "Bryk_Philipp_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419624}}, {"model": "metainfo.source", "pk": 17231, "fields": {"orig_filename": "Bubak_Franz_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1420334}}, {"model": "metainfo.source", "pk": 17232, "fields": {"orig_filename": "Bubna-Littitz_Ferdinand_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1420335}}, {"model": "metainfo.source", "pk": 17233, "fields": {"orig_filename": "Buchbinder_Bernhard_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419625}}, {"model": "metainfo.source", "pk": 17234, "fields": {"orig_filename": "Bucher_Bruno_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419626}}, {"model": "metainfo.source", "pk": 17235, "fields": {"orig_filename": "Buchholtz_Franz-Bernhard_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419627}}, {"model": "metainfo.source", "pk": 17236, "fields": {"orig_filename": "Buchmayer_Anton-Alois_1770_1851.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419629}}, {"model": "metainfo.source", "pk": 17237, "fields": {"orig_filename": "Buchowiecki_Josef_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419630}}, {"model": "metainfo.source", "pk": 17238, "fields": {"orig_filename": "Buchta_Richard_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419631}}, {"model": "metainfo.source", "pk": 17239, "fields": {"orig_filename": "Buchwald_Salomon_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2093311}}, {"model": "metainfo.source", "pk": 17240, "fields": {"orig_filename": "Buconjic_Paskal_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419632}}, {"model": "metainfo.source", "pk": 17241, "fields": {"orig_filename": "Budau_Artur_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123f.", "author": "", "orig_id": 1419633}}, {"model": "metainfo.source", "pk": 17242, "fields": {"orig_filename": "Buday-Bator_Ignaz_1764_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419634}}, {"model": "metainfo.source", "pk": 17243, "fields": {"orig_filename": "Budenz_Josef_1836_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419635}}, {"model": "metainfo.source", "pk": 17244, "fields": {"orig_filename": "Bude_Leopold_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1420511}}, {"model": "metainfo.source", "pk": 17245, "fields": {"orig_filename": "Budik_Peter_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419636}}, {"model": "metainfo.source", "pk": 17246, "fields": {"orig_filename": "Budinszky_Alexander_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419675}}, {"model": "metainfo.source", "pk": 17247, "fields": {"orig_filename": "Budmani_Pero_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419676}}, {"model": "metainfo.source", "pk": 17248, "fields": {"orig_filename": "Bueche_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419677}}, {"model": "metainfo.source", "pk": 17249, "fields": {"orig_filename": "Buedinger_Max_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124f.", "author": "", "orig_id": 1419678}}, {"model": "metainfo.source", "pk": 17250, "fields": {"orig_filename": "Buehler_Georg_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419679}}, {"model": "metainfo.source", "pk": 17251, "fields": {"orig_filename": "Buelow-Wendhausen_Paula_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419680}}, {"model": "metainfo.source", "pk": 17252, "fields": {"orig_filename": "Bueltemeyer_Heinrich_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419681}}, {"model": "metainfo.source", "pk": 17253, "fields": {"orig_filename": "Buenker_Johann-Reinhard_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419682}}, {"model": "metainfo.source", "pk": 17254, "fields": {"orig_filename": "Buerde-Ney_Jenny_1824_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419683}}, {"model": "metainfo.source", "pk": 17255, "fields": {"orig_filename": "Buerg_Johann-Tobias_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125f.", "author": "", "orig_id": 1419684}}, {"model": "metainfo.source", "pk": 17256, "fields": {"orig_filename": "Bukovac_Vlaho_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419685}}, {"model": "metainfo.source", "pk": 17257, "fields": {"orig_filename": "Bukovics-Kis-Alacska_Emmerich_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419686}}, {"model": "metainfo.source", "pk": 17258, "fields": {"orig_filename": "Bukovics-Kis-Alacska_Karl_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419869}}, {"model": "metainfo.source", "pk": 17259, "fields": {"orig_filename": "Bukowski-Stolzenburg_Gejza_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2005227}}, {"model": "metainfo.source", "pk": 17260, "fields": {"orig_filename": "Bulat_Gajo_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419687}}, {"model": "metainfo.source", "pk": 17261, "fields": {"orig_filename": "Bulic_Frane_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419688}}, {"model": "metainfo.source", "pk": 17262, "fields": {"orig_filename": "Buol-Bernburg_Marie_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126f.", "author": "", "orig_id": 1419689}}, {"model": "metainfo.source", "pk": 17263, "fields": {"orig_filename": "Buol-Schauenstein_Johann-Rud_1763_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419690}}, {"model": "metainfo.source", "pk": 17264, "fields": {"orig_filename": "Buol-Schauenstein_Karl-Ferdinand_1797_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419691}}, {"model": "metainfo.source", "pk": 17265, "fields": {"orig_filename": "Buquoi-Longueval_Georg-Franz-August_1781_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419692}}, {"model": "metainfo.source", "pk": 17266, "fields": {"orig_filename": "Buquoy_Ferdinand_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420633}}, {"model": "metainfo.source", "pk": 17267, "fields": {"orig_filename": "Buratovich_Ivan-Santiago_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419693}}, {"model": "metainfo.source", "pk": 17268, "fields": {"orig_filename": "Burckhardt_Max-Eugen_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419694}}, {"model": "metainfo.source", "pk": 17269, "fields": {"orig_filename": "Burde_Johann-Karl_1744_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127f.", "author": "", "orig_id": 1419695}}, {"model": "metainfo.source", "pk": 17270, "fields": {"orig_filename": "Burde_Josef-Karl_1779_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419731}}, {"model": "metainfo.source", "pk": 17271, "fields": {"orig_filename": "Buresch_Karl_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1415797}}, {"model": "metainfo.source", "pk": 17272, "fields": {"orig_filename": "Burgauner_Johann_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419735}}, {"model": "metainfo.source", "pk": 17273, "fields": {"orig_filename": "Burger_Franz_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419736}}, {"model": "metainfo.source", "pk": 17274, "fields": {"orig_filename": "Burger_Friedrich-Moritz_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128f.", "author": "", "orig_id": 1419738}}, {"model": "metainfo.source", "pk": 17275, "fields": {"orig_filename": "Burger_Johann_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419739}}, {"model": "metainfo.source", "pk": 17276, "fields": {"orig_filename": "Burger_Leopold_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419740}}, {"model": "metainfo.source", "pk": 17277, "fields": {"orig_filename": "Burger_Max_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420639}}, {"model": "metainfo.source", "pk": 17278, "fields": {"orig_filename": "Burger_Wilhelm-J_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1420640}}, {"model": "metainfo.source", "pk": 17279, "fields": {"orig_filename": "Burghart_Hermann_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419741}}, {"model": "metainfo.source", "pk": 17280, "fields": {"orig_filename": "Burghauser_Wolfgang_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419742}}, {"model": "metainfo.source", "pk": 17281, "fields": {"orig_filename": "Burg_Adam_1797_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419732}}, {"model": "metainfo.source", "pk": 17282, "fields": {"orig_filename": "Burg_Anton_1767_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419733}}, {"model": "metainfo.source", "pk": 17283, "fields": {"orig_filename": "Burg_Ferdinand_1868_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419734}}, {"model": "metainfo.source", "pk": 17284, "fields": {"orig_filename": "Burian-Rajecz_Stefan_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419743}}, {"model": "metainfo.source", "pk": 17285, "fields": {"orig_filename": "Burits-Pournay_Johann_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129f.", "author": "", "orig_id": 1419744}}, {"model": "metainfo.source", "pk": 17286, "fields": {"orig_filename": "Burjan_Hildegard_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419745}}, {"model": "metainfo.source", "pk": 17287, "fields": {"orig_filename": "Bolyai-Bolya_Johann_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420323}}, {"model": "metainfo.source", "pk": 17288, "fields": {"orig_filename": "Bolyai-Bolya_Wolfgang_1775_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420324}}, {"model": "metainfo.source", "pk": 17289, "fields": {"orig_filename": "Bolzano_Bernhard_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100f.", "author": "", "orig_id": 1421395}}, {"model": "metainfo.source", "pk": 17290, "fields": {"orig_filename": "Bolza_Eugenie_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420325}}, {"model": "metainfo.source", "pk": 17291, "fields": {"orig_filename": "Bombelles_Karl-Albert_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420326}}, {"model": "metainfo.source", "pk": 17292, "fields": {"orig_filename": "Bombelles_Ludwig-Philipp_1780_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420327}}, {"model": "metainfo.source", "pk": 17293, "fields": {"orig_filename": "Bondi_Emanuel_1820_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1421876}}, {"model": "metainfo.source", "pk": 17294, "fields": {"orig_filename": "Bondi_Gustav_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1462462}}, {"model": "metainfo.source", "pk": 17295, "fields": {"orig_filename": "Bondy_Ottilie_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420328}}, {"model": "metainfo.source", "pk": 17296, "fields": {"orig_filename": "Bonelli_Karl_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420329}}, {"model": "metainfo.source", "pk": 17297, "fields": {"orig_filename": "Bonitz_Hermann_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101f.", "author": "", "orig_id": 1420330}}, {"model": "metainfo.source", "pk": 17298, "fields": {"orig_filename": "Bonn_Ferdinand_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1421883}}, {"model": "metainfo.source", "pk": 17299, "fields": {"orig_filename": "Boos_Franz_1753_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420331}}, {"model": "metainfo.source", "pk": 17300, "fields": {"orig_filename": "Bordoni_Antonio_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420332}}, {"model": "metainfo.source", "pk": 17301, "fields": {"orig_filename": "Boricky_Emanuel_1840_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420333}}, {"model": "metainfo.source", "pk": 17302, "fields": {"orig_filename": "Borkowski_Karl_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1421644}}, {"model": "metainfo.source", "pk": 17303, "fields": {"orig_filename": "Bormann_Eugen_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102f.", "author": "", "orig_id": 1421732}}, {"model": "metainfo.source", "pk": 17304, "fields": {"orig_filename": "Borochow_Leo_1881_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420336}}, {"model": "metainfo.source", "pk": 17305, "fields": {"orig_filename": "Boroevic-Bojna_Svetozar_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1421736}}, {"model": "metainfo.source", "pk": 17306, "fields": {"orig_filename": "Borsos_Josef_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420337}}, {"model": "metainfo.source", "pk": 17307, "fields": {"orig_filename": "Bor_Jan_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2059532}}, {"model": "metainfo.source", "pk": 17308, "fields": {"orig_filename": "Boschek_Anna_1874_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1416154}}, {"model": "metainfo.source", "pk": 17309, "fields": {"orig_filename": "Boschetti_Viktor_1871_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1422136}}, {"model": "metainfo.source", "pk": 17310, "fields": {"orig_filename": "Bosetti_Hermine_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420338}}, {"model": "metainfo.source", "pk": 17311, "fields": {"orig_filename": "Bosshart-Demergel_Marie_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1422141}}, {"model": "metainfo.source", "pk": 17312, "fields": {"orig_filename": "Bossler_Marie_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103f.", "author": "", "orig_id": 1420725}}, {"model": "metainfo.source", "pk": 17313, "fields": {"orig_filename": "Botgorschek_Karoline_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420339}}, {"model": "metainfo.source", "pk": 17314, "fields": {"orig_filename": "Botic_Luka_1830_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420729}}, {"model": "metainfo.source", "pk": 17315, "fields": {"orig_filename": "Botstiber_Hugo_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420727}}, {"model": "metainfo.source", "pk": 17316, "fields": {"orig_filename": "Boue_Ami_1794_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420393}}, {"model": "metainfo.source", "pk": 17317, "fields": {"orig_filename": "Bourguignon-Baumberg_Anton_1766_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420394}}, {"model": "metainfo.source", "pk": 17318, "fields": {"orig_filename": "Bowitsch_Ludwig_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420395}}, {"model": "metainfo.source", "pk": 17319, "fields": {"orig_filename": "Boxberg_Ernst_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420396}}, {"model": "metainfo.source", "pk": 17320, "fields": {"orig_filename": "Bozdech_Emanuel_1841_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420397}}, {"model": "metainfo.source", "pk": 17321, "fields": {"orig_filename": "Bozek_Josef_1782_1835.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1910665}}, {"model": "metainfo.source", "pk": 17322, "fields": {"orig_filename": "Bozek_Romuald_1814_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1461303}}, {"model": "metainfo.source", "pk": 17323, "fields": {"orig_filename": "Brabee_Ewald_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104f.", "author": "", "orig_id": 1420819}}, {"model": "metainfo.source", "pk": 17324, "fields": {"orig_filename": "Brachelli_Hugo-Franz_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420398}}, {"model": "metainfo.source", "pk": 17325, "fields": {"orig_filename": "Bradaczek_Max_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420399}}, {"model": "metainfo.source", "pk": 17326, "fields": {"orig_filename": "Bradsky_Wenzel-Theodor_1833_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420400}}, {"model": "metainfo.source", "pk": 17327, "fields": {"orig_filename": "Brady_Thomas_1752_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420401}}, {"model": "metainfo.source", "pk": 17328, "fields": {"orig_filename": "Braf_Albin_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420402}}, {"model": "metainfo.source", "pk": 17329, "fields": {"orig_filename": "Brahms_Johannes_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105f.", "author": "", "orig_id": 1420403}}, {"model": "metainfo.source", "pk": 17330, "fields": {"orig_filename": "Brakl_Franz-Josef_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106", "author": "", "orig_id": 1420404}}, {"model": "metainfo.source", "pk": 17331, "fields": {"orig_filename": "Brandeis_Friedrich_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106f.", "author": "", "orig_id": 1420405}}, {"model": "metainfo.source", "pk": 17332, "fields": {"orig_filename": "Brandis_Clemens-Franz_1798_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420406}}, {"model": "metainfo.source", "pk": 17333, "fields": {"orig_filename": "Brandis_Otto_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420407}}, {"model": "metainfo.source", "pk": 17334, "fields": {"orig_filename": "Brandl_Alois_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420408}}, {"model": "metainfo.source", "pk": 17335, "fields": {"orig_filename": "Brandl_Leopold_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1405543}}, {"model": "metainfo.source", "pk": 17336, "fields": {"orig_filename": "Brandl_Vinzenz_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420409}}, {"model": "metainfo.source", "pk": 17337, "fields": {"orig_filename": "Brandner_Konrad_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419872}}, {"model": "metainfo.source", "pk": 17338, "fields": {"orig_filename": "Brandstetter_Hans_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1411019}}, {"model": "metainfo.source", "pk": 17339, "fields": {"orig_filename": "Brandt_Marianne_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107f.", "author": "", "orig_id": 1420411}}, {"model": "metainfo.source", "pk": 17340, "fields": {"orig_filename": "Brand_Michael_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106", "author": "", "orig_id": 1419868}}, {"model": "metainfo.source", "pk": 17341, "fields": {"orig_filename": "Brassloff_Stephan_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1888623}}, {"model": "metainfo.source", "pk": 17342, "fields": {"orig_filename": "Brauer_Friedrich-Moritz_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420412}}, {"model": "metainfo.source", "pk": 17343, "fields": {"orig_filename": "Braumueller_Wilhelm_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420413}}, {"model": "metainfo.source", "pk": 17344, "fields": {"orig_filename": "Braun-Braunthal_Karl-Johann_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108f.", "author": "", "orig_id": 1420468}}, {"model": "metainfo.source", "pk": 17345, "fields": {"orig_filename": "Braun-Fernwald_Karl_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420469}}, {"model": "metainfo.source", "pk": 17346, "fields": {"orig_filename": "Brauner_Franz-August_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420471}}, {"model": "metainfo.source", "pk": 17347, "fields": {"orig_filename": "Braune_Franz-Anton_1766_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420470}}, {"model": "metainfo.source", "pk": 17348, "fields": {"orig_filename": "Braunhofer_Anton-Georg_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162336}}, {"model": "metainfo.source", "pk": 17349, "fields": {"orig_filename": "Braun_Adolph_1819_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420414}}, {"model": "metainfo.source", "pk": 17350, "fields": {"orig_filename": "Braun_Gustav_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420415}}, {"model": "metainfo.source", "pk": 17351, "fields": {"orig_filename": "Braun_Ludwig_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419952}}, {"model": "metainfo.source", "pk": 17352, "fields": {"orig_filename": "Braun_Peter_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420466}}, {"model": "metainfo.source", "pk": 17353, "fields": {"orig_filename": "Braun_Theodor_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420467}}, {"model": "metainfo.source", "pk": 17354, "fields": {"orig_filename": "Brausewetter_Viktor_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420472}}, {"model": "metainfo.source", "pk": 17355, "fields": {"orig_filename": "Brdlik_Karl_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420473}}, {"model": "metainfo.source", "pk": 17356, "fields": {"orig_filename": "Brecht_Walther_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109f.", "author": "", "orig_id": 1420474}}, {"model": "metainfo.source", "pk": 17357, "fields": {"orig_filename": "Breden_Christiane_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420476}}, {"model": "metainfo.source", "pk": 17358, "fields": {"orig_filename": "Brede_Auguste_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420475}}, {"model": "metainfo.source", "pk": 17359, "fields": {"orig_filename": "Bree_Malvine_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420477}}, {"model": "metainfo.source", "pk": 17360, "fields": {"orig_filename": "Breidler_Johann_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2058108}}, {"model": "metainfo.source", "pk": 17361, "fields": {"orig_filename": "Breidwieser_Theodor_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420478}}, {"model": "metainfo.source", "pk": 17362, "fields": {"orig_filename": "Breisach_Wilhelm_1812_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420479}}, {"model": "metainfo.source", "pk": 17363, "fields": {"orig_filename": "Breisky_August_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420480}}, {"model": "metainfo.source", "pk": 17364, "fields": {"orig_filename": "Breisky_Walter_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110f.", "author": "", "orig_id": 1420481}}, {"model": "metainfo.source", "pk": 17365, "fields": {"orig_filename": "Breitenlohner_Jakob_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420483}}, {"model": "metainfo.source", "pk": 17366, "fields": {"orig_filename": "Breithaupt_Wilhelm_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420484}}, {"model": "metainfo.source", "pk": 17367, "fields": {"orig_filename": "Breitner_Anton_1858_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420485}}, {"model": "metainfo.source", "pk": 17368, "fields": {"orig_filename": "Breitner_Hugo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420486}}, {"model": "metainfo.source", "pk": 17369, "fields": {"orig_filename": "Breitner_Josef_1864_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1421080}}, {"model": "metainfo.source", "pk": 17370, "fields": {"orig_filename": "Breit_Franz_1827_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420482}}, {"model": "metainfo.source", "pk": 17371, "fields": {"orig_filename": "Brejc_Janko_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2156144}}, {"model": "metainfo.source", "pk": 17372, "fields": {"orig_filename": "Brell_Heinrich_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111f.", "author": "", "orig_id": 1420487}}, {"model": "metainfo.source", "pk": 17373, "fields": {"orig_filename": "Bremser_Johann_1767_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420488}}, {"model": "metainfo.source", "pk": 17374, "fields": {"orig_filename": "Brenek_Anton_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420118}}, {"model": "metainfo.source", "pk": 17375, "fields": {"orig_filename": "Brenner-Felsach_Ignaz_1772_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420538}}, {"model": "metainfo.source", "pk": 17376, "fields": {"orig_filename": "Brenner_Adam_1800_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420490}}, {"model": "metainfo.source", "pk": 17377, "fields": {"orig_filename": "Brenner_Anton_1896_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444231}}, {"model": "metainfo.source", "pk": 17378, "fields": {"orig_filename": "Brentano_Franz_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420539}}, {"model": "metainfo.source", "pk": 17379, "fields": {"orig_filename": "Bresadola_Giacomo_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2), S. 112f.", "author": "", "orig_id": 1895501}}, {"model": "metainfo.source", "pk": 17380, "fields": {"orig_filename": "Brestel_Rudolf_1816_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420541}}, {"model": "metainfo.source", "pk": 17381, "fields": {"orig_filename": "Bretholz_Berthold_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420542}}, {"model": "metainfo.source", "pk": 17382, "fields": {"orig_filename": "Bretschneider_Artur_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1464994}}, {"model": "metainfo.source", "pk": 17383, "fields": {"orig_filename": "Bretschneider_Friedrich_1770_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420543}}, {"model": "metainfo.source", "pk": 17384, "fields": {"orig_filename": "Brettauer_Josef_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420544}}, {"model": "metainfo.source", "pk": 17385, "fields": {"orig_filename": "Breuer_Georg_1907_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2057464}}, {"model": "metainfo.source", "pk": 17386, "fields": {"orig_filename": "Breuer_Josef_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113f.", "author": "", "orig_id": 1420545}}, {"model": "metainfo.source", "pk": 17387, "fields": {"orig_filename": "Breuer_Katharina_1883_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1469458}}, {"model": "metainfo.source", "pk": 17388, "fields": {"orig_filename": "Brevillier_Ludwig_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420546}}, {"model": "metainfo.source", "pk": 17389, "fields": {"orig_filename": "Breymann_Karl_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420547}}, {"model": "metainfo.source", "pk": 17390, "fields": {"orig_filename": "Brezina_Otokar_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420548}}, {"model": "metainfo.source", "pk": 17391, "fields": {"orig_filename": "Bischof_Marie_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420160}}, {"model": "metainfo.source", "pk": 17392, "fields": {"orig_filename": "Bissingen-Nippenburg_Ferdinand-Ernst-Maria_1749_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420163}}, {"model": "metainfo.source", "pk": 17393, "fields": {"orig_filename": "Bitterl-Tessenberg_Maximilian_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420162}}, {"model": "metainfo.source", "pk": 17394, "fields": {"orig_filename": "Bitterlich_Eduard_1833_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420161}}, {"model": "metainfo.source", "pk": 17395, "fields": {"orig_filename": "Bitterlich_Hans_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419464}}, {"model": "metainfo.source", "pk": 17396, "fields": {"orig_filename": "Bittner_Adam_1777_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420164}}, {"model": "metainfo.source", "pk": 17397, "fields": {"orig_filename": "Bittner_Alexander_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420165}}, {"model": "metainfo.source", "pk": 17398, "fields": {"orig_filename": "Bittner_Anton_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419465}}, {"model": "metainfo.source", "pk": 17399, "fields": {"orig_filename": "Bittner_Franz_1867_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88f.", "author": "", "orig_id": 1420166}}, {"model": "metainfo.source", "pk": 17400, "fields": {"orig_filename": "Bittner_Josef_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162607}}, {"model": "metainfo.source", "pk": 17401, "fields": {"orig_filename": "Bittner_Julius_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1419467}}, {"model": "metainfo.source", "pk": 17402, "fields": {"orig_filename": "Bittner_Karl_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1419468}}, {"model": "metainfo.source", "pk": 17403, "fields": {"orig_filename": "Bittner_Ludwig_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1420167}}, {"model": "metainfo.source", "pk": 17404, "fields": {"orig_filename": "Bittner_Maximilian_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89f.", "author": "", "orig_id": 1420168}}, {"model": "metainfo.source", "pk": 17405, "fields": {"orig_filename": "Bizonfy_Franz_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1419570}}, {"model": "metainfo.source", "pk": 17406, "fields": {"orig_filename": "Bizzarro_Paolo_1813_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420169}}, {"model": "metainfo.source", "pk": 17407, "fields": {"orig_filename": "Bjelik_Emmerich_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1418174}}, {"model": "metainfo.source", "pk": 17408, "fields": {"orig_filename": "Blaas_Eugen_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420170}}, {"model": "metainfo.source", "pk": 17409, "fields": {"orig_filename": "Blaas_Josef_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1418177}}, {"model": "metainfo.source", "pk": 17410, "fields": {"orig_filename": "Blaas_Julius_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420171}}, {"model": "metainfo.source", "pk": 17411, "fields": {"orig_filename": "Blaas_Karl_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90f.", "author": "", "orig_id": 1418178}}, {"model": "metainfo.source", "pk": 17412, "fields": {"orig_filename": "Blagoevich_Emmerich_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420172}}, {"model": "metainfo.source", "pk": 17413, "fields": {"orig_filename": "Blahak_Josef_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420174}}, {"model": "metainfo.source", "pk": 17414, "fields": {"orig_filename": "Blaha_Luise_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420173}}, {"model": "metainfo.source", "pk": 17415, "fields": {"orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418730}}, {"model": "metainfo.source", "pk": 17416, "fields": {"orig_filename": "Blamauer_Adolf-Albin_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418732}}, {"model": "metainfo.source", "pk": 17417, "fields": {"orig_filename": "Blank_Johann-Konrad_1757_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418812}}, {"model": "metainfo.source", "pk": 17418, "fields": {"orig_filename": "Blaschke-Zwernikkirchen_Philipp_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420175}}, {"model": "metainfo.source", "pk": 17419, "fields": {"orig_filename": "Blasel_Karl_1831_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91f.", "author": "", "orig_id": 1418733}}, {"model": "metainfo.source", "pk": 17420, "fields": {"orig_filename": "Blaskovics_Johann_1777_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420230}}, {"model": "metainfo.source", "pk": 17421, "fields": {"orig_filename": "Blathy_Otto-Titusz_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1426353}}, {"model": "metainfo.source", "pk": 17422, "fields": {"orig_filename": "Blattl_Christian_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1419232}}, {"model": "metainfo.source", "pk": 17423, "fields": {"orig_filename": "Blau_Tina_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419235}}, {"model": "metainfo.source", "pk": 17424, "fields": {"orig_filename": "Blau_Marietta_1894_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436882}}, {"model": "metainfo.source", "pk": 17425, "fields": {"orig_filename": "Blazekovic_Karl_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420232}}, {"model": "metainfo.source", "pk": 17426, "fields": {"orig_filename": "Blechner_Heinrich_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420233}}, {"model": "metainfo.source", "pk": 17427, "fields": {"orig_filename": "Blechschmidt_Anton_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92f.", "author": "", "orig_id": 1420234}}, {"model": "metainfo.source", "pk": 17428, "fields": {"orig_filename": "Bleckmann_Johann-Heinrich_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1419240}}, {"model": "metainfo.source", "pk": 17429, "fields": {"orig_filename": "Bleibtreu_Sigismund_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1420235}}, {"model": "metainfo.source", "pk": 17430, "fields": {"orig_filename": "Bleiweis-Trsteniski_Janez_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1419244}}, {"model": "metainfo.source", "pk": 17431, "fields": {"orig_filename": "Bleiweis-Trsteniski_Karel_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2191999}}, {"model": "metainfo.source", "pk": 17432, "fields": {"orig_filename": "Bleyer_Jakob_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419245}}, {"model": "metainfo.source", "pk": 17433, "fields": {"orig_filename": "Bliemetzrieder_Placidus-Franz_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1420236}}, {"model": "metainfo.source", "pk": 17434, "fields": {"orig_filename": "Bloch_Chajim_1881_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444933}}, {"model": "metainfo.source", "pk": 17435, "fields": {"orig_filename": "Blodek_Wilhelm_1834_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93f.", "author": "", "orig_id": 1419317}}, {"model": "metainfo.source", "pk": 17436, "fields": {"orig_filename": "Blodig_Hermann_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420237}}, {"model": "metainfo.source", "pk": 17437, "fields": {"orig_filename": "Blome_Gustav_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1419321}}, {"model": "metainfo.source", "pk": 17438, "fields": {"orig_filename": "Bluemelhuber_Michael_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1419323}}, {"model": "metainfo.source", "pk": 17439, "fields": {"orig_filename": "Bluemel_Franz_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1405518}}, {"model": "metainfo.source", "pk": 17440, "fields": {"orig_filename": "Blumberger_Friedrich_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420238}}, {"model": "metainfo.source", "pk": 17441, "fields": {"orig_filename": "Blumenbach-Wabruschek_Wenzel-Karl-Wolfgang_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1418840}}, {"model": "metainfo.source", "pk": 17442, "fields": {"orig_filename": "Blumenthal_Josef_1782_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420240}}, {"model": "metainfo.source", "pk": 17443, "fields": {"orig_filename": "Blume_Ludwig_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420239}}, {"model": "metainfo.source", "pk": 17444, "fields": {"orig_filename": "Bobek_Hans_1903_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444215}}, {"model": "metainfo.source", "pk": 17445, "fields": {"orig_filename": "Bobies_Carl-August_1898_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2164739}}, {"model": "metainfo.source", "pk": 17446, "fields": {"orig_filename": "Bobies_Franz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420241}}, {"model": "metainfo.source", "pk": 17447, "fields": {"orig_filename": "Bobrzynski_Michael_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1419022}}, {"model": "metainfo.source", "pk": 17448, "fields": {"orig_filename": "Bockenheimer-Bockenheim_Franz_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420242}}, {"model": "metainfo.source", "pk": 17449, "fields": {"orig_filename": "Bocklet_Karl-Maria_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420243}}, {"model": "metainfo.source", "pk": 17450, "fields": {"orig_filename": "Bock_Emil_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1418686}}, {"model": "metainfo.source", "pk": 17451, "fields": {"orig_filename": "Boczek_Anton_1802_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1419107}}, {"model": "metainfo.source", "pk": 17452, "fields": {"orig_filename": "Bodemer_Jakob_1777_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420244}}, {"model": "metainfo.source", "pk": 17453, "fields": {"orig_filename": "Bodingbauer_Karl_1903_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1417456}}, {"model": "metainfo.source", "pk": 17454, "fields": {"orig_filename": "Boeck_Rupert_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420245}}, {"model": "metainfo.source", "pk": 17455, "fields": {"orig_filename": "Boeheim_Wendelin_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95f.", "author": "", "orig_id": 1420246}}, {"model": "metainfo.source", "pk": 17456, "fields": {"orig_filename": "Boehler_Albert_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417546}}, {"model": "metainfo.source", "pk": 17457, "fields": {"orig_filename": "Boehler_Friedrich_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420247}}, {"model": "metainfo.source", "pk": 17458, "fields": {"orig_filename": "Boehm-Bawerk_Eugen_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417379}}, {"model": "metainfo.source", "pk": 17459, "fields": {"orig_filename": "Boehm-Boehmersheim_August_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417458}}, {"model": "metainfo.source", "pk": 17460, "fields": {"orig_filename": "Boehm-Boehmersheim_Karl_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417463}}, {"model": "metainfo.source", "pk": 17461, "fields": {"orig_filename": "Boehm-Ermolli_Eduard_1856_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97f.", "author": "", "orig_id": 1417473}}, {"model": "metainfo.source", "pk": 17462, "fields": {"orig_filename": "Boehmerle_Emil_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2267399}}, {"model": "metainfo.source", "pk": 17463, "fields": {"orig_filename": "Boehmerle_Karl_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2267403}}, {"model": "metainfo.source", "pk": 17464, "fields": {"orig_filename": "Boehm_Camillo_1828_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417636}}, {"model": "metainfo.source", "pk": 17465, "fields": {"orig_filename": "Boehm_Johann_1774_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420248}}, {"model": "metainfo.source", "pk": 17466, "fields": {"orig_filename": "Boehm_Josef-Georg_1807_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417890}}, {"model": "metainfo.source", "pk": 17467, "fields": {"orig_filename": "Boehm_Josef_1841_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420250}}, {"model": "metainfo.source", "pk": 17468, "fields": {"orig_filename": "Boehm_Joseph-Anton_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417724}}, {"model": "metainfo.source", "pk": 17469, "fields": {"orig_filename": "Boehm_Joseph-Daniel_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420251}}, {"model": "metainfo.source", "pk": 17470, "fields": {"orig_filename": "Boehm_Joseph_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420249}}, {"model": "metainfo.source", "pk": 17471, "fields": {"orig_filename": "Boehm_Karl_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1420253}}, {"model": "metainfo.source", "pk": 17472, "fields": {"orig_filename": "Boehm_Sir-Joseph-Edgar_1834_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420252}}, {"model": "metainfo.source", "pk": 17473, "fields": {"orig_filename": "Boeriu-Polichna_Johann_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420255}}, {"model": "metainfo.source", "pk": 17474, "fields": {"orig_filename": "Boer_Johann-Lukas_1751_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420254}}, {"model": "metainfo.source", "pk": 17475, "fields": {"orig_filename": "Boesendorfer_Ignaz_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420315}}, {"model": "metainfo.source", "pk": 17476, "fields": {"orig_filename": "Boesendorfer_Ludwig_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1417832}}, {"model": "metainfo.source", "pk": 17477, "fields": {"orig_filename": "Bogdan-Sturmbruck_Josef_1769_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420316}}, {"model": "metainfo.source", "pk": 17478, "fields": {"orig_filename": "Bogensberger_Gustav_1838_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420317}}, {"model": "metainfo.source", "pk": 17479, "fields": {"orig_filename": "Bogisic_Valtazar_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420318}}, {"model": "metainfo.source", "pk": 17480, "fields": {"orig_filename": "Bognar_Friederike_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417400}}, {"model": "metainfo.source", "pk": 17481, "fields": {"orig_filename": "Bogovic_Mirko_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417404}}, {"model": "metainfo.source", "pk": 17482, "fields": {"orig_filename": "Boguslawski_Adalbert_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1420319}}, {"model": "metainfo.source", "pk": 17483, "fields": {"orig_filename": "Bohatsch_Ottokar-Zdenko_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1994039}}, {"model": "metainfo.source", "pk": 17484, "fields": {"orig_filename": "Bohdal_Anton-Matthaeus_1900_2008.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193599}}, {"model": "metainfo.source", "pk": 17485, "fields": {"orig_filename": "Bohdal_Matthaeus_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162616}}, {"model": "metainfo.source", "pk": 17486, "fields": {"orig_filename": "Bohrmann_Marianne_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417045}}, {"model": "metainfo.source", "pk": 17487, "fields": {"orig_filename": "Bohr_Oskar_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1418144}}, {"model": "metainfo.source", "pk": 17488, "fields": {"orig_filename": "Bohutinsky_Anton_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2056777}}, {"model": "metainfo.source", "pk": 17489, "fields": {"orig_filename": "Bojer_Wenzlaus_1797_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420320}}, {"model": "metainfo.source", "pk": 17490, "fields": {"orig_filename": "Bojko_Jakob_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1420321}}, {"model": "metainfo.source", "pk": 17491, "fields": {"orig_filename": "Bolfras_Arthur_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417128}}, {"model": "metainfo.source", "pk": 17492, "fields": {"orig_filename": "Boller_Anton_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420322}}, {"model": "metainfo.source", "pk": 17493, "fields": {"orig_filename": "Boltzmann_Ludwig_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1411332}}, {"model": "metainfo.source", "pk": 17494, "fields": {"orig_filename": "Bernard_Hans_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419993}}, {"model": "metainfo.source", "pk": 17495, "fields": {"orig_filename": "Bernard_Karl-Ambros_1808_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418954}}, {"model": "metainfo.source", "pk": 17496, "fields": {"orig_filename": "Bernard_Karl-Josef_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419994}}, {"model": "metainfo.source", "pk": 17497, "fields": {"orig_filename": "Bernatzik_Edmund_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75f.", "author": "", "orig_id": 1419030}}, {"model": "metainfo.source", "pk": 17498, "fields": {"orig_filename": "Bernatzik_Wenzel_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419034}}, {"model": "metainfo.source", "pk": 17499, "fields": {"orig_filename": "Bernatzik_Wilhelm_1853_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419037}}, {"model": "metainfo.source", "pk": 17500, "fields": {"orig_filename": "Bernay-Favancourt_Julius-Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419995}}, {"model": "metainfo.source", "pk": 17501, "fields": {"orig_filename": "Bernbrunn_Karl_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419113}}, {"model": "metainfo.source", "pk": 17502, "fields": {"orig_filename": "Berndl_Florian_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419278}}, {"model": "metainfo.source", "pk": 17503, "fields": {"orig_filename": "Bernheimer_Stefan_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419539}}, {"model": "metainfo.source", "pk": 17504, "fields": {"orig_filename": "Bernheimer_Walter-Ernst_1892_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419996}}, {"model": "metainfo.source", "pk": 17505, "fields": {"orig_filename": "Bernstein-Porges_Elsa_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419542}}, {"model": "metainfo.source", "pk": 17506, "fields": {"orig_filename": "Bernstein_Heinrich_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76f.", "author": "", "orig_id": 1419997}}, {"model": "metainfo.source", "pk": 17507, "fields": {"orig_filename": "Bernt_Ferdinand_1876_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419545}}, {"model": "metainfo.source", "pk": 17508, "fields": {"orig_filename": "Bernt_Johann-Josef_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419998}}, {"model": "metainfo.source", "pk": 17509, "fields": {"orig_filename": "Berres-Perez_Joseph_1821_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419548}}, {"model": "metainfo.source", "pk": 17510, "fields": {"orig_filename": "Berres_Josef_1796_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419999}}, {"model": "metainfo.source", "pk": 17511, "fields": {"orig_filename": "Bersina-Siegenthal_Heinrich_1762_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1420000}}, {"model": "metainfo.source", "pk": 17512, "fields": {"orig_filename": "Bertalanffy_Ludwig_1901_1972.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444456}}, {"model": "metainfo.source", "pk": 17513, "fields": {"orig_filename": "Bertalan_Arpad_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1420001}}, {"model": "metainfo.source", "pk": 17514, "fields": {"orig_filename": "Berte_Heinrich_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1405372}}, {"model": "metainfo.source", "pk": 17515, "fields": {"orig_filename": "Bertha_Hans_1901_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444457}}, {"model": "metainfo.source", "pk": 17516, "fields": {"orig_filename": "Berwerth_Friedrich-Martin_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77f.", "author": "", "orig_id": 1418518}}, {"model": "metainfo.source", "pk": 17517, "fields": {"orig_filename": "Berzeviczy-Berzevicze-Kakas-Lomnitz_Albert_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420002}}, {"model": "metainfo.source", "pk": 17518, "fields": {"orig_filename": "Berzeviczy_Albert_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420003}}, {"model": "metainfo.source", "pk": 17519, "fields": {"orig_filename": "Besan_Karl_1773_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420004}}, {"model": "metainfo.source", "pk": 17520, "fields": {"orig_filename": "Beschorner_Alexander-Markus_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420005}}, {"model": "metainfo.source", "pk": 17521, "fields": {"orig_filename": "Besel_Guido_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1418523}}, {"model": "metainfo.source", "pk": 17522, "fields": {"orig_filename": "Beskiba_Josef_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420006}}, {"model": "metainfo.source", "pk": 17523, "fields": {"orig_filename": "Beth_Marianne_1890_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443429}}, {"model": "metainfo.source", "pk": 17524, "fields": {"orig_filename": "Bettauer_Hugo_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1418529}}, {"model": "metainfo.source", "pk": 17525, "fields": {"orig_filename": "Bettelheim-Gabillon_Helene_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418605}}, {"model": "metainfo.source", "pk": 17526, "fields": {"orig_filename": "Bettelheim_Bruno_1903_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443434}}, {"model": "metainfo.source", "pk": 17527, "fields": {"orig_filename": "Bettelheim_Jakob_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418604}}, {"model": "metainfo.source", "pk": 17528, "fields": {"orig_filename": "Bettelheim_Karoline_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1420007}}, {"model": "metainfo.source", "pk": 17529, "fields": {"orig_filename": "Beurle_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418607}}, {"model": "metainfo.source", "pk": 17530, "fields": {"orig_filename": "Beust_Friedrich-Ferdinand_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79f.", "author": "", "orig_id": 1418609}}, {"model": "metainfo.source", "pk": 17531, "fields": {"orig_filename": "Beust_Friedrich-Konstantin_1806_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420009}}, {"model": "metainfo.source", "pk": 17532, "fields": {"orig_filename": "Beyer_Johann_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420011}}, {"model": "metainfo.source", "pk": 17533, "fields": {"orig_filename": "Beyer_Josef_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1418613}}, {"model": "metainfo.source", "pk": 17534, "fields": {"orig_filename": "Beyer_Rudolf_1810_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420012}}, {"model": "metainfo.source", "pk": 17535, "fields": {"orig_filename": "Beyfuss_Hermann_1857_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420075}}, {"model": "metainfo.source", "pk": 17536, "fields": {"orig_filename": "Beykow_Johann-Maria_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420076}}, {"model": "metainfo.source", "pk": 17537, "fields": {"orig_filename": "Beysteiner_Elisabeth_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1418618}}, {"model": "metainfo.source", "pk": 17538, "fields": {"orig_filename": "Bezecny_Josef_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420078}}, {"model": "metainfo.source", "pk": 17539, "fields": {"orig_filename": "Bianchi_Friedrich_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1419867}}, {"model": "metainfo.source", "pk": 17540, "fields": {"orig_filename": "Bianchi_Vinzenz-Ferrerius-Friedrich_1768_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420079}}, {"model": "metainfo.source", "pk": 17541, "fields": {"orig_filename": "Biankini_Juraj_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420080}}, {"model": "metainfo.source", "pk": 17542, "fields": {"orig_filename": "Bibl_Andreas_1797_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420081}}, {"model": "metainfo.source", "pk": 17543, "fields": {"orig_filename": "Bibl_Rudolf_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420082}}, {"model": "metainfo.source", "pk": 17544, "fields": {"orig_filename": "Bibl_Viktor_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1418961}}, {"model": "metainfo.source", "pk": 17545, "fields": {"orig_filename": "Bickell_Gustav_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1418971}}, {"model": "metainfo.source", "pk": 17546, "fields": {"orig_filename": "Bick_Josef_1880_1952.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1428751}}, {"model": "metainfo.source", "pk": 17547, "fields": {"orig_filename": "Bidlo_Jaroslav_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81f.", "author": "", "orig_id": 1420083}}, {"model": "metainfo.source", "pk": 17548, "fields": {"orig_filename": "Bidschof_Friedrich_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1912351}}, {"model": "metainfo.source", "pk": 17549, "fields": {"orig_filename": "Bieber_Friedrich-Julius_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1418973}}, {"model": "metainfo.source", "pk": 17550, "fields": {"orig_filename": "Bieber_Karl-Augustinus_1903_1996.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1418972}}, {"model": "metainfo.source", "pk": 17551, "fields": {"orig_filename": "Biebl_Rudolf_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420084}}, {"model": "metainfo.source", "pk": 17552, "fields": {"orig_filename": "Biedermann_Felix_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420085}}, {"model": "metainfo.source", "pk": 17553, "fields": {"orig_filename": "Biedermann_Hermann-Ignaz_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420086}}, {"model": "metainfo.source", "pk": 17554, "fields": {"orig_filename": "Biedermann_Johann-Baptist_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420087}}, {"model": "metainfo.source", "pk": 17555, "fields": {"orig_filename": "Biegeleben_Ludwig-Maximilian_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82f.", "author": "", "orig_id": 1419048}}, {"model": "metainfo.source", "pk": 17556, "fields": {"orig_filename": "Biela_Wilhelm_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419053}}, {"model": "metainfo.source", "pk": 17557, "fields": {"orig_filename": "Bielohlawek_Hermann_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419054}}, {"model": "metainfo.source", "pk": 17558, "fields": {"orig_filename": "Bielz_Eduard-Albrecht_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419056}}, {"model": "metainfo.source", "pk": 17559, "fields": {"orig_filename": "Bielz_Michael_1787_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419057}}, {"model": "metainfo.source", "pk": 17560, "fields": {"orig_filename": "Bienefeld-Loewenkron_Wilhelm_1776_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1420088}}, {"model": "metainfo.source", "pk": 17561, "fields": {"orig_filename": "Bienenfeld_Elsa_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1414897}}, {"model": "metainfo.source", "pk": 17562, "fields": {"orig_filename": "Bienenstein_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419061}}, {"model": "metainfo.source", "pk": 17563, "fields": {"orig_filename": "Bienerth-Schmerling_Richard_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83f.", "author": "", "orig_id": 1419065}}, {"model": "metainfo.source", "pk": 17564, "fields": {"orig_filename": "Bierbaum_Matthias_1916_1995.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1445960}}, {"model": "metainfo.source", "pk": 17565, "fields": {"orig_filename": "Biermann_Otto_1858_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1420089}}, {"model": "metainfo.source", "pk": 17566, "fields": {"orig_filename": "Bignio_Louis_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419138}}, {"model": "metainfo.source", "pk": 17567, "fields": {"orig_filename": "Bigot-Saint-Quentin_Karl_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419139}}, {"model": "metainfo.source", "pk": 17568, "fields": {"orig_filename": "Bilek_Franz_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419144}}, {"model": "metainfo.source", "pk": 17569, "fields": {"orig_filename": "Bilgeri_Georg_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419147}}, {"model": "metainfo.source", "pk": 17570, "fields": {"orig_filename": "Bilinski_Leon_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84f.", "author": "", "orig_id": 1405542}}, {"model": "metainfo.source", "pk": 17571, "fields": {"orig_filename": "Billroth_Theodor-Christian_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1419216}}, {"model": "metainfo.source", "pk": 17572, "fields": {"orig_filename": "Bill_Teddy_1900_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2195799}}, {"model": "metainfo.source", "pk": 17573, "fields": {"orig_filename": "Binder-Falbusch_Wilhelm_1779_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420092}}, {"model": "metainfo.source", "pk": 17574, "fields": {"orig_filename": "Binder-Kriegelstein_Franz_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85f.", "author": "", "orig_id": 1420093}}, {"model": "metainfo.source", "pk": 17575, "fields": {"orig_filename": "Binder-Kriegelstein_Friedrich_1775_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420094}}, {"model": "metainfo.source", "pk": 17576, "fields": {"orig_filename": "Binder-Kriegelstein_Karl_1869_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420151}}, {"model": "metainfo.source", "pk": 17577, "fields": {"orig_filename": "Binder_Anton_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1419225}}, {"model": "metainfo.source", "pk": 17578, "fields": {"orig_filename": "Binder_Georg-Paul_1784_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420090}}, {"model": "metainfo.source", "pk": 17579, "fields": {"orig_filename": "Binder_Joseph_1805_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420091}}, {"model": "metainfo.source", "pk": 17580, "fields": {"orig_filename": "Binder_Matthaeus-Josef_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419295}}, {"model": "metainfo.source", "pk": 17581, "fields": {"orig_filename": "Binz_Johann-Georg_1748_1824.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419299}}, {"model": "metainfo.source", "pk": 17582, "fields": {"orig_filename": "Birago_Karl_1792_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420152}}, {"model": "metainfo.source", "pk": 17583, "fields": {"orig_filename": "Birkle_Suitbert_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86f.", "author": "", "orig_id": 1420155}}, {"model": "metainfo.source", "pk": 17584, "fields": {"orig_filename": "Birk_Alfred_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419303}}, {"model": "metainfo.source", "pk": 17585, "fields": {"orig_filename": "Birk_Ernst_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420153}}, {"model": "metainfo.source", "pk": 17586, "fields": {"orig_filename": "Birk_Karl_1887_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128051}}, {"model": "metainfo.source", "pk": 17587, "fields": {"orig_filename": "Birnbaum_Ferdinand_1892_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420156}}, {"model": "metainfo.source", "pk": 17588, "fields": {"orig_filename": "Birnbaum_Nathan_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1419307}}, {"model": "metainfo.source", "pk": 17589, "fields": {"orig_filename": "Biro-Csik-Palfalva_Johann_1784_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420158}}, {"model": "metainfo.source", "pk": 17590, "fields": {"orig_filename": "Biro_Josef_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420157}}, {"model": "metainfo.source", "pk": 17591, "fields": {"orig_filename": "Bisching_Anton_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420159}}, {"model": "metainfo.source", "pk": 17592, "fields": {"orig_filename": "Bischoff-Altenstern_Ignaz-Rudolf_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419379}}, {"model": "metainfo.source", "pk": 17593, "fields": {"orig_filename": "Bischoff-Klammstein_Friedrich_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419381}}, {"model": "metainfo.source", "pk": 17594, "fields": {"orig_filename": "Bischoff_Ferdinand_1826_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1419377}}, {"model": "metainfo.source", "pk": 17595, "fields": {"orig_filename": "Beck_Max-Wladimir_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406036}}, {"model": "metainfo.source", "pk": 17596, "fields": {"orig_filename": "Beck_Wilhelm_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1421096}}, {"model": "metainfo.source", "pk": 17597, "fields": {"orig_filename": "Becsey-Volta_Stefan_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421100}}, {"model": "metainfo.source", "pk": 17598, "fields": {"orig_filename": "Becvarovsky_Anton-Felix_1754_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421101}}, {"model": "metainfo.source", "pk": 17599, "fields": {"orig_filename": "Becziczka_Ambros_1780_1861.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1406147}}, {"model": "metainfo.source", "pk": 17600, "fields": {"orig_filename": "Bedeus-Scharberg_Josef_1783_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421102}}, {"model": "metainfo.source", "pk": 17601, "fields": {"orig_filename": "Beer-Hofmann_Richard_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64", "author": "", "orig_id": 1406632}}, {"model": "metainfo.source", "pk": 17602, "fields": {"orig_filename": "Beer_Adolf_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406687}}, {"model": "metainfo.source", "pk": 17603, "fields": {"orig_filename": "Beer_Alois_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1428815}}, {"model": "metainfo.source", "pk": 17604, "fields": {"orig_filename": "Beer_Georg-Josef_1763_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63f.", "author": "", "orig_id": 1421104}}, {"model": "metainfo.source", "pk": 17605, "fields": {"orig_filename": "Beer_Max-Josef_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64", "author": "", "orig_id": 1421105}}, {"model": "metainfo.source", "pk": 17606, "fields": {"orig_filename": "Beer_Rudolf_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1406629}}, {"model": "metainfo.source", "pk": 17607, "fields": {"orig_filename": "Beer_Theodor_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1833661}}, {"model": "metainfo.source", "pk": 17608, "fields": {"orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f.", "author": "", "orig_id": 1406636}}, {"model": "metainfo.source", "pk": 17609, "fields": {"orig_filename": "Beetz_Wilhelm_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2001781}}, {"model": "metainfo.source", "pk": 17610, "fields": {"orig_filename": "Begovic_Milan_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1421106}}, {"model": "metainfo.source", "pk": 17611, "fields": {"orig_filename": "Behounek_Frantisek_1898_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443974}}, {"model": "metainfo.source", "pk": 17612, "fields": {"orig_filename": "Behrend-Brandt_Magdalena_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1421107}}, {"model": "metainfo.source", "pk": 17613, "fields": {"orig_filename": "Behrens_Peter_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162569}}, {"model": "metainfo.source", "pk": 17614, "fields": {"orig_filename": "Behsel_Anton_1781_1838.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1406981}}, {"model": "metainfo.source", "pk": 17615, "fields": {"orig_filename": "Beichl_Karl_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1406982}}, {"model": "metainfo.source", "pk": 17616, "fields": {"orig_filename": "Beidtel_Ignaz_1783_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65f.", "author": "", "orig_id": 1407798}}, {"model": "metainfo.source", "pk": 17617, "fields": {"orig_filename": "Beigel_Hugo-Georg_1897_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465168}}, {"model": "metainfo.source", "pk": 17618, "fields": {"orig_filename": "Beinl-Bienenburg_Anton_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1421108}}, {"model": "metainfo.source", "pk": 17619, "fields": {"orig_filename": "Beitzke_Hermann_1875_1953.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443982}}, {"model": "metainfo.source", "pk": 17620, "fields": {"orig_filename": "Bekessy_Imre_1887_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443986}}, {"model": "metainfo.source", "pk": 17621, "fields": {"orig_filename": "Bekk_Adolf_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1407749}}, {"model": "metainfo.source", "pk": 17622, "fields": {"orig_filename": "Belar_Albin_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1410321}}, {"model": "metainfo.source", "pk": 17623, "fields": {"orig_filename": "Belcredi_Ekbert_1816_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1421109}}, {"model": "metainfo.source", "pk": 17624, "fields": {"orig_filename": "Belcredi_Richard_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1410397}}, {"model": "metainfo.source", "pk": 17625, "fields": {"orig_filename": "Bellac_Paul_1891_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2050650}}, {"model": "metainfo.source", "pk": 17626, "fields": {"orig_filename": "Bella_Johann-Levoslav_1843_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1409574}}, {"model": "metainfo.source", "pk": 17627, "fields": {"orig_filename": "Bellegarde_Heinrich_1756_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66f.", "author": "", "orig_id": 1421110}}, {"model": "metainfo.source", "pk": 17628, "fields": {"orig_filename": "Belli_Giuseppe_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421111}}, {"model": "metainfo.source", "pk": 17629, "fields": {"orig_filename": "Bellmond-Adlerhorst_Anton_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1415060}}, {"model": "metainfo.source", "pk": 17630, "fields": {"orig_filename": "Belohlav_Josef_1882_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2006103}}, {"model": "metainfo.source", "pk": 17631, "fields": {"orig_filename": "Belrupt-Tissac_Karl_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421112}}, {"model": "metainfo.source", "pk": 17632, "fields": {"orig_filename": "Beltrami_Giovanni_1777_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421113}}, {"model": "metainfo.source", "pk": 17633, "fields": {"orig_filename": "Belzoni_Giovanni-Batt_1778_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421114}}, {"model": "metainfo.source", "pk": 17634, "fields": {"orig_filename": "Bem_Josef_1795_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1415067}}, {"model": "metainfo.source", "pk": 17635, "fields": {"orig_filename": "Benak_Franz_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421115}}, {"model": "metainfo.source", "pk": 17636, "fields": {"orig_filename": "Benatzky_Ralph_1884_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444045}}, {"model": "metainfo.source", "pk": 17637, "fields": {"orig_filename": "Benda_Gustav_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415136}}, {"model": "metainfo.source", "pk": 17638, "fields": {"orig_filename": "Bendel_Josef_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415139}}, {"model": "metainfo.source", "pk": 17639, "fields": {"orig_filename": "Bendl_Karl_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421188}}, {"model": "metainfo.source", "pk": 17640, "fields": {"orig_filename": "Benedek-Felsoe-Eoer_Ludwig_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415144}}, {"model": "metainfo.source", "pk": 17641, "fields": {"orig_filename": "Benedek_Alexander_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421190}}, {"model": "metainfo.source", "pk": 17642, "fields": {"orig_filename": "Benedetti_Thomas_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415145}}, {"model": "metainfo.source", "pk": 17643, "fields": {"orig_filename": "Benedikt_Edmund_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68f.", "author": "", "orig_id": 1415146}}, {"model": "metainfo.source", "pk": 17644, "fields": {"orig_filename": "Benedikt_Moritz_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415149}}, {"model": "metainfo.source", "pk": 17645, "fields": {"orig_filename": "Benedikt_Moritz_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415150}}, {"model": "metainfo.source", "pk": 17646, "fields": {"orig_filename": "Benedikt_Rudolf_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421191}}, {"model": "metainfo.source", "pk": 17647, "fields": {"orig_filename": "Benesch_Ladislaus_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415230}}, {"model": "metainfo.source", "pk": 17648, "fields": {"orig_filename": "Bene_Franz_1775_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421189}}, {"model": "metainfo.source", "pk": 17649, "fields": {"orig_filename": "Benigni-Mildenberg_Josef-Heinrich_1782_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421193}}, {"model": "metainfo.source", "pk": 17650, "fields": {"orig_filename": "Benigni_Siegmund_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421192}}, {"model": "metainfo.source", "pk": 17651, "fields": {"orig_filename": "Benkert_Karl-Maria_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1415237}}, {"model": "metainfo.source", "pk": 17652, "fields": {"orig_filename": "Benke_Hermann_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1990819}}, {"model": "metainfo.source", "pk": 17653, "fields": {"orig_filename": "Benkoe_Samuel_1743_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421194}}, {"model": "metainfo.source", "pk": 17654, "fields": {"orig_filename": "Benk_Johannes_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415234}}, {"model": "metainfo.source", "pk": 17655, "fields": {"orig_filename": "Benndorf_Friedrich-August-Otto_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1415241}}, {"model": "metainfo.source", "pk": 17656, "fields": {"orig_filename": "Benndorf_Hans_1870_1953.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444057}}, {"model": "metainfo.source", "pk": 17657, "fields": {"orig_filename": "Bentheim-Steinfurt_Wilhelm-Friedrich_1782_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421195}}, {"model": "metainfo.source", "pk": 17658, "fields": {"orig_filename": "Benz-Albkron_Robert-Joseph_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1428245}}, {"model": "metainfo.source", "pk": 17659, "fields": {"orig_filename": "Berchet_Giovanni_1783_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421196}}, {"model": "metainfo.source", "pk": 17660, "fields": {"orig_filename": "Berchtold-Ungarschitz_Friedrich_1781_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421197}}, {"model": "metainfo.source", "pk": 17661, "fields": {"orig_filename": "Berchtold_Leopold_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71", "author": "", "orig_id": 1413961}}, {"model": "metainfo.source", "pk": 17662, "fields": {"orig_filename": "Bercic_Ivan_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71", "author": "", "orig_id": 1421198}}, {"model": "metainfo.source", "pk": 17663, "fields": {"orig_filename": "Bergauer_Josef_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1421200}}, {"model": "metainfo.source", "pk": 17664, "fields": {"orig_filename": "Berger-Pleisse_Johann-Nepomuk_1768_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414054}}, {"model": "metainfo.source", "pk": 17665, "fields": {"orig_filename": "Berger-Stubenberg_Mathilde_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421203}}, {"model": "metainfo.source", "pk": 17666, "fields": {"orig_filename": "Berger_Alfred_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413977}}, {"model": "metainfo.source", "pk": 17667, "fields": {"orig_filename": "Berger_Alfred_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2059070}}, {"model": "metainfo.source", "pk": 17668, "fields": {"orig_filename": "Berger_Artur_1892_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444261}}, {"model": "metainfo.source", "pk": 17669, "fields": {"orig_filename": "Berger_Franz_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414050}}, {"model": "metainfo.source", "pk": 17670, "fields": {"orig_filename": "Berger_Franz_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162582}}, {"model": "metainfo.source", "pk": 17671, "fields": {"orig_filename": "Berger_Johann-Nepomuk_1816_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414057}}, {"model": "metainfo.source", "pk": 17672, "fields": {"orig_filename": "Berger_Josef_1898_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1862324}}, {"model": "metainfo.source", "pk": 17673, "fields": {"orig_filename": "Berger_Julius-Victor_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414058}}, {"model": "metainfo.source", "pk": 17674, "fields": {"orig_filename": "Berger_Rudolf_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72f.", "author": "", "orig_id": 1421201}}, {"model": "metainfo.source", "pk": 17675, "fields": {"orig_filename": "Berger_Thaddaeus_1774_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414064}}, {"model": "metainfo.source", "pk": 17676, "fields": {"orig_filename": "Berghofer_Amandus_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421204}}, {"model": "metainfo.source", "pk": 17677, "fields": {"orig_filename": "Berghold_Alexander_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421205}}, {"model": "metainfo.source", "pk": 17678, "fields": {"orig_filename": "Bergleitner_Johann_1774_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421206}}, {"model": "metainfo.source", "pk": 17679, "fields": {"orig_filename": "Bergler_Hans_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414136}}, {"model": "metainfo.source", "pk": 17680, "fields": {"orig_filename": "Bergler_Josef_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421207}}, {"model": "metainfo.source", "pk": 17681, "fields": {"orig_filename": "Bergmann_Ernst_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414137}}, {"model": "metainfo.source", "pk": 17682, "fields": {"orig_filename": "Bergmann_Hermann_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414138}}, {"model": "metainfo.source", "pk": 17683, "fields": {"orig_filename": "Bergmann_Josef_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1405613}}, {"model": "metainfo.source", "pk": 17684, "fields": {"orig_filename": "Bergmann_Josef_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1421208}}, {"model": "metainfo.source", "pk": 17685, "fields": {"orig_filename": "Bergmayr_Ignaz-Franz_1784_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1421209}}, {"model": "metainfo.source", "pk": 17686, "fields": {"orig_filename": "Bergmeister_Hermann_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414143}}, {"model": "metainfo.source", "pk": 17687, "fields": {"orig_filename": "Berg_Alban_1885_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71f.", "author": "", "orig_id": 1413964}}, {"model": "metainfo.source", "pk": 17688, "fields": {"orig_filename": "Berg_Armin_1883_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436577}}, {"model": "metainfo.source", "pk": 17689, "fields": {"orig_filename": "Berks_Marie_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414153}}, {"model": "metainfo.source", "pk": 17690, "fields": {"orig_filename": "Berla_Alois_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414221}}, {"model": "metainfo.source", "pk": 17691, "fields": {"orig_filename": "Berlepsch_Maria-Goswina_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418768}}, {"model": "metainfo.source", "pk": 17692, "fields": {"orig_filename": "Berliner_Egon_1923_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128029}}, {"model": "metainfo.source", "pk": 17693, "fields": {"orig_filename": "Bermann_Jeremias_1770_1855.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004092}}, {"model": "metainfo.source", "pk": 17694, "fields": {"orig_filename": "Bermann_Joseph_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1418864}}, {"model": "metainfo.source", "pk": 17695, "fields": {"orig_filename": "Bermann_Moritz_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418866}}, {"model": "metainfo.source", "pk": 17696, "fields": {"orig_filename": "Bermanschlaeger_Ludwig_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1421211}}, {"model": "metainfo.source", "pk": 17697, "fields": {"orig_filename": "Bernacki_Ludwig_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419992}}, {"model": "metainfo.source", "pk": 17698, "fields": {"orig_filename": "Barnay_Ludwig_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50f.", "author": "", "orig_id": 1405594}}, {"model": "metainfo.source", "pk": 17699, "fields": {"orig_filename": "Baron_Arthur_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004260}}, {"model": "metainfo.source", "pk": 17700, "fields": {"orig_filename": "Baross-Bellus_Gabor_1848_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2256297}}, {"model": "metainfo.source", "pk": 17701, "fields": {"orig_filename": "Baroti-Szabo_David_1739_1819.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1468792}}, {"model": "metainfo.source", "pk": 17702, "fields": {"orig_filename": "Barry_Alfred_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405598}}, {"model": "metainfo.source", "pk": 17703, "fields": {"orig_filename": "Barsescu_Agathe_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420995}}, {"model": "metainfo.source", "pk": 17704, "fields": {"orig_filename": "Barta_Richard_1911_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444180}}, {"model": "metainfo.source", "pk": 17705, "fields": {"orig_filename": "Barth-Barthenau_Ludwig_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405652}}, {"model": "metainfo.source", "pk": 17706, "fields": {"orig_filename": "Barth-Barthenheim_Johann-Bapt_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420997}}, {"model": "metainfo.source", "pk": 17707, "fields": {"orig_filename": "Bartholemy_Peter_1771_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420998}}, {"model": "metainfo.source", "pk": 17708, "fields": {"orig_filename": "Barth_Gustav_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420996}}, {"model": "metainfo.source", "pk": 17709, "fields": {"orig_filename": "Barth_Josef_1745_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405650}}, {"model": "metainfo.source", "pk": 17710, "fields": {"orig_filename": "Barth_Otto_1876_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1405651}}, {"model": "metainfo.source", "pk": 17711, "fields": {"orig_filename": "Bartl_Johann_1765_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420999}}, {"model": "metainfo.source", "pk": 17712, "fields": {"orig_filename": "Bartmann_Simon-Wilhelm_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51f.", "author": "", "orig_id": 1405656}}, {"model": "metainfo.source", "pk": 17713, "fields": {"orig_filename": "Bartsch_Adam-J_1757_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421000}}, {"model": "metainfo.source", "pk": 17714, "fields": {"orig_filename": "Bartsch_Friedrich-Josef-Adam_1798_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421001}}, {"model": "metainfo.source", "pk": 17715, "fields": {"orig_filename": "Barvir_Alois_1899_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444249}}, {"model": "metainfo.source", "pk": 17716, "fields": {"orig_filename": "Barvitius_Anton-Viktor_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421002}}, {"model": "metainfo.source", "pk": 17717, "fields": {"orig_filename": "Barvitius_Viktor_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405668}}, {"model": "metainfo.source", "pk": 17718, "fields": {"orig_filename": "Barwig_Franz_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405669}}, {"model": "metainfo.source", "pk": 17719, "fields": {"orig_filename": "Basaricek_Stefan_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421003}}, {"model": "metainfo.source", "pk": 17720, "fields": {"orig_filename": "Basch_Felix_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1458840}}, {"model": "metainfo.source", "pk": 17721, "fields": {"orig_filename": "Basch_Samuel_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405673}}, {"model": "metainfo.source", "pk": 17722, "fields": {"orig_filename": "Bassi_Fernando_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421004}}, {"model": "metainfo.source", "pk": 17723, "fields": {"orig_filename": "Bassi_Luigi_1776_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52f.", "author": "", "orig_id": 1421005}}, {"model": "metainfo.source", "pk": 17724, "fields": {"orig_filename": "Bast_Gerhard_1911_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1469815}}, {"model": "metainfo.source", "pk": 17725, "fields": {"orig_filename": "Bata_Thomas_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405808}}, {"model": "metainfo.source", "pk": 17726, "fields": {"orig_filename": "Batka_Richard_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405815}}, {"model": "metainfo.source", "pk": 17727, "fields": {"orig_filename": "Bato_Ludwig_1886_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2059179}}, {"model": "metainfo.source", "pk": 17728, "fields": {"orig_filename": "Batthyany-Nemetujvar_Lajos_1807_1849.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1405834}}, {"model": "metainfo.source", "pk": 17729, "fields": {"orig_filename": "Batthyany-Strattmann_Ladislaus_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1421006}}, {"model": "metainfo.source", "pk": 17730, "fields": {"orig_filename": "Batthyany_Franziska_1802_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405832}}, {"model": "metainfo.source", "pk": 17731, "fields": {"orig_filename": "Battisti_Cesare_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53f.", "author": "", "orig_id": 1405836}}, {"model": "metainfo.source", "pk": 17732, "fields": {"orig_filename": "Bauchinger_Matthaeus_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405838}}, {"model": "metainfo.source", "pk": 17733, "fields": {"orig_filename": "Baudiss_Leo_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405840}}, {"model": "metainfo.source", "pk": 17734, "fields": {"orig_filename": "Baudius_Karl-Friedrich_1796_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1421007}}, {"model": "metainfo.source", "pk": 17735, "fields": {"orig_filename": "Bauernfeld_Eduard_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56f.", "author": "", "orig_id": 1405876}}, {"model": "metainfo.source", "pk": 17736, "fields": {"orig_filename": "Bauernschmid_Karl-Eduard_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1421013}}, {"model": "metainfo.source", "pk": 17737, "fields": {"orig_filename": "Bauer_Adolf_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405844}}, {"model": "metainfo.source", "pk": 17738, "fields": {"orig_filename": "Bauer_Alexander_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405845}}, {"model": "metainfo.source", "pk": 17739, "fields": {"orig_filename": "Bauer_Anton_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54f.", "author": "", "orig_id": 1405847}}, {"model": "metainfo.source", "pk": 17740, "fields": {"orig_filename": "Bauer_Bruno_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004327}}, {"model": "metainfo.source", "pk": 17741, "fields": {"orig_filename": "Bauer_Ferdinand-Lukas_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405854}}, {"model": "metainfo.source", "pk": 17742, "fields": {"orig_filename": "Bauer_Ferdinand_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1421008}}, {"model": "metainfo.source", "pk": 17743, "fields": {"orig_filename": "Bauer_Franz-Andreas_1758_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405855}}, {"model": "metainfo.source", "pk": 17744, "fields": {"orig_filename": "Bauer_Franz-Salesius_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405856}}, {"model": "metainfo.source", "pk": 17745, "fields": {"orig_filename": "Bauer_Franz_1798_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1421009}}, {"model": "metainfo.source", "pk": 17746, "fields": {"orig_filename": "Bauer_Harald_1901_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444373}}, {"model": "metainfo.source", "pk": 17747, "fields": {"orig_filename": "Bauer_Johann_1889_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1467779}}, {"model": "metainfo.source", "pk": 17748, "fields": {"orig_filename": "Bauer_Josef_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55f.", "author": "", "orig_id": 1421010}}, {"model": "metainfo.source", "pk": 17749, "fields": {"orig_filename": "Bauer_Julius_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1421011}}, {"model": "metainfo.source", "pk": 17750, "fields": {"orig_filename": "Bauer_Leopold_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405865}}, {"model": "metainfo.source", "pk": 17751, "fields": {"orig_filename": "Bauer_Otto-Heinrich_1900_1991.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2116484}}, {"model": "metainfo.source", "pk": 17752, "fields": {"orig_filename": "Bauer_Otto_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1405869}}, {"model": "metainfo.source", "pk": 17753, "fields": {"orig_filename": "Bauer_Stefan_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1421012}}, {"model": "metainfo.source", "pk": 17754, "fields": {"orig_filename": "Baumann-Koryto_Josef_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57f.", "author": "", "orig_id": 1421015}}, {"model": "metainfo.source", "pk": 17755, "fields": {"orig_filename": "Baumann_Alexander-Moritz_1814_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405877}}, {"model": "metainfo.source", "pk": 17756, "fields": {"orig_filename": "Baumann_Friedrich_1763_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1421014}}, {"model": "metainfo.source", "pk": 17757, "fields": {"orig_filename": "Baumann_Ludwig_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405882}}, {"model": "metainfo.source", "pk": 17758, "fields": {"orig_filename": "Baumann_Oskar_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405716}}, {"model": "metainfo.source", "pk": 17759, "fields": {"orig_filename": "Baumayer_Marie_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421016}}, {"model": "metainfo.source", "pk": 17760, "fields": {"orig_filename": "Baumberg_Antonie_1859_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405717}}, {"model": "metainfo.source", "pk": 17761, "fields": {"orig_filename": "Baumfeld_Rudolf-Lothar_1903_1988.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004277}}, {"model": "metainfo.source", "pk": 17762, "fields": {"orig_filename": "Baumgarten_Amand_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405718}}, {"model": "metainfo.source", "pk": 17763, "fields": {"orig_filename": "Baumgarten_Anton_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2052596}}, {"model": "metainfo.source", "pk": 17764, "fields": {"orig_filename": "Baumgarten_Wilhelm_1885_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004165}}, {"model": "metainfo.source", "pk": 17765, "fields": {"orig_filename": "Baumgartner_Andreas_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405676}}, {"model": "metainfo.source", "pk": 17766, "fields": {"orig_filename": "Baumgartner_Karl_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421088}}, {"model": "metainfo.source", "pk": 17767, "fields": {"orig_filename": "Baumrucker-Robelswald_Josef_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421089}}, {"model": "metainfo.source", "pk": 17768, "fields": {"orig_filename": "Baumueller_Bernhard_1827_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405742}}, {"model": "metainfo.source", "pk": 17769, "fields": {"orig_filename": "Baum_Oskar_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2283471}}, {"model": "metainfo.source", "pk": 17770, "fields": {"orig_filename": "Bayer-Buerck_Marie_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406014}}, {"model": "metainfo.source", "pk": 17771, "fields": {"orig_filename": "Bayer_Franz-Rudolf_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405753}}, {"model": "metainfo.source", "pk": 17772, "fields": {"orig_filename": "Bayer_Josef-August_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406009}}, {"model": "metainfo.source", "pk": 17773, "fields": {"orig_filename": "Bayer_Josef_1827_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58f.", "author": "", "orig_id": 1406006}}, {"model": "metainfo.source", "pk": 17774, "fields": {"orig_filename": "Bayer_Josef_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1405369}}, {"model": "metainfo.source", "pk": 17775, "fields": {"orig_filename": "Bayer_Josef_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406008}}, {"model": "metainfo.source", "pk": 17776, "fields": {"orig_filename": "Bayer_Karl-Emmerich-Robert_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406012}}, {"model": "metainfo.source", "pk": 17777, "fields": {"orig_filename": "Bayer_Karl-Josef_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406011}}, {"model": "metainfo.source", "pk": 17778, "fields": {"orig_filename": "Bazzini_Antonio_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59f.", "author": "", "orig_id": 1421091}}, {"model": "metainfo.source", "pk": 17779, "fields": {"orig_filename": "Beaulieu-Marconnay_Jean-Pierre_1725_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421093}}, {"model": "metainfo.source", "pk": 17780, "fields": {"orig_filename": "Becher_Alfred-Julius_1803_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406022}}, {"model": "metainfo.source", "pk": 17781, "fields": {"orig_filename": "Becher_Siegfried_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406023}}, {"model": "metainfo.source", "pk": 17782, "fields": {"orig_filename": "Bechtold_Philipp-Christoph_1747_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421094}}, {"model": "metainfo.source", "pk": 17783, "fields": {"orig_filename": "Bechtolsheim_Anton_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406025}}, {"model": "metainfo.source", "pk": 17784, "fields": {"orig_filename": "Beck-Mannagetta-Lerchenau_Guenther_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1421097}}, {"model": "metainfo.source", "pk": 17785, "fields": {"orig_filename": "Beck-Mannagetta_Peter_1917_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1432469}}, {"model": "metainfo.source", "pk": 17786, "fields": {"orig_filename": "Beck-Rzikowsky_Friedrich_1830_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61f.", "author": "", "orig_id": 1406041}}, {"model": "metainfo.source", "pk": 17787, "fields": {"orig_filename": "Becker_Ludwig_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1421099}}, {"model": "metainfo.source", "pk": 17788, "fields": {"orig_filename": "Becker_Moritz-Alois_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1405885}}, {"model": "metainfo.source", "pk": 17789, "fields": {"orig_filename": "Becker_Paul_1910_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443740}}, {"model": "metainfo.source", "pk": 17790, "fields": {"orig_filename": "Becke_Franz-Karl_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1405675}}, {"model": "metainfo.source", "pk": 17791, "fields": {"orig_filename": "Becke_Friedrich-Johann-Karl_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1421098}}, {"model": "metainfo.source", "pk": 17792, "fields": {"orig_filename": "Beckh-Widmannstetter_Leopold_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406143}}, {"model": "metainfo.source", "pk": 17793, "fields": {"orig_filename": "Beckh-Widmanstaetten_Alois_1753_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62f.", "author": "", "orig_id": 1406142}}, {"model": "metainfo.source", "pk": 17794, "fields": {"orig_filename": "Beckmann_Friedrich_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406144}}, {"model": "metainfo.source", "pk": 17795, "fields": {"orig_filename": "Beck_Friedrich_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406028}}, {"model": "metainfo.source", "pk": 17796, "fields": {"orig_filename": "Beck_Friedrich_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421095}}, {"model": "metainfo.source", "pk": 17797, "fields": {"orig_filename": "Beck_Guido_1903_1988.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1452317}}, {"model": "metainfo.source", "pk": 17798, "fields": {"orig_filename": "Beck_Johann-Nep_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60f.", "author": "", "orig_id": 1406032}}, {"model": "metainfo.source", "pk": 17799, "fields": {"orig_filename": "Beck_Karl-Isidor_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406034}}, {"model": "metainfo.source", "pk": 17800, "fields": {"orig_filename": "Beck_Karl_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406033}}, {"model": "metainfo.source", "pk": 17801, "fields": {"orig_filename": "Augustin_Vinzenz_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416884}}, {"model": "metainfo.source", "pk": 17802, "fields": {"orig_filename": "Auinger_Mathias_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2264764}}, {"model": "metainfo.source", "pk": 17803, "fields": {"orig_filename": "Auracher-Aurach_Josef-Christian_1756_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416885}}, {"model": "metainfo.source", "pk": 17804, "fields": {"orig_filename": "Aurednickova_Anna_1873_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2167716}}, {"model": "metainfo.source", "pk": 17805, "fields": {"orig_filename": "Ausch_Karl-Michael_1893_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441859}}, {"model": "metainfo.source", "pk": 17806, "fields": {"orig_filename": "Auspitz_Heinrich_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416886}}, {"model": "metainfo.source", "pk": 17807, "fields": {"orig_filename": "Auspitz_Rudolf_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416887}}, {"model": "metainfo.source", "pk": 17808, "fields": {"orig_filename": "Ausserer_Carl_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416888}}, {"model": "metainfo.source", "pk": 17809, "fields": {"orig_filename": "Ausserer_Carl_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416889}}, {"model": "metainfo.source", "pk": 17810, "fields": {"orig_filename": "Ausserlechner_Gereon_1904_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468713}}, {"model": "metainfo.source", "pk": 17811, "fields": {"orig_filename": "Austerlitz_Friedrich_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416958}}, {"model": "metainfo.source", "pk": 17812, "fields": {"orig_filename": "Autsch_Angela_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468715}}, {"model": "metainfo.source", "pk": 17813, "fields": {"orig_filename": "Avancini_Giustiniano_1807_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416959}}, {"model": "metainfo.source", "pk": 17814, "fields": {"orig_filename": "Avanzini_Giuseppe_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416960}}, {"model": "metainfo.source", "pk": 17815, "fields": {"orig_filename": "Avanzo_Dominik_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416961}}, {"model": "metainfo.source", "pk": 17816, "fields": {"orig_filename": "Axentowicz_Theodor_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38f.", "author": "", "orig_id": 1416962}}, {"model": "metainfo.source", "pk": 17817, "fields": {"orig_filename": "Axmann_Ferdinand_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416963}}, {"model": "metainfo.source", "pk": 17818, "fields": {"orig_filename": "Axmann_Josef_1793_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416964}}, {"model": "metainfo.source", "pk": 17819, "fields": {"orig_filename": "Axmann_Julius_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416965}}, {"model": "metainfo.source", "pk": 17820, "fields": {"orig_filename": "Ayrenhoff_Cornelius-Hermann_1733_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416966}}, {"model": "metainfo.source", "pk": 17821, "fields": {"orig_filename": "Azarian_Aristakes_1782_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416967}}, {"model": "metainfo.source", "pk": 17822, "fields": {"orig_filename": "Azbe_Anton_1862_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416968}}, {"model": "metainfo.source", "pk": 17823, "fields": {"orig_filename": "Baar_Hugo_1873_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405521}}, {"model": "metainfo.source", "pk": 17824, "fields": {"orig_filename": "Baar_Jindrich_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420825}}, {"model": "metainfo.source", "pk": 17825, "fields": {"orig_filename": "Babak_Edward_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420826}}, {"model": "metainfo.source", "pk": 17826, "fields": {"orig_filename": "Babik_Adeodatus_1738_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420827}}, {"model": "metainfo.source", "pk": 17827, "fields": {"orig_filename": "Bacher_Eduard_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405549}}, {"model": "metainfo.source", "pk": 17828, "fields": {"orig_filename": "Bacher_Rudolf_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405540}}, {"model": "metainfo.source", "pk": 17829, "fields": {"orig_filename": "Bachinger_Franz_1892_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1405556}}, {"model": "metainfo.source", "pk": 17830, "fields": {"orig_filename": "Bachlechner_Gregor_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2025081}}, {"model": "metainfo.source", "pk": 17831, "fields": {"orig_filename": "Bachlechner_Josef_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405557}}, {"model": "metainfo.source", "pk": 17832, "fields": {"orig_filename": "Bachmann_Adolf_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405560}}, {"model": "metainfo.source", "pk": 17833, "fields": {"orig_filename": "Bachmann_Eugen_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41f.", "author": "", "orig_id": 1420829}}, {"model": "metainfo.source", "pk": 17834, "fields": {"orig_filename": "Bachmann_Hermann_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1405561}}, {"model": "metainfo.source", "pk": 17835, "fields": {"orig_filename": "Bachmann_Luise_1903_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1440405}}, {"model": "metainfo.source", "pk": 17836, "fields": {"orig_filename": "Bachofen-Echt_Karl-Adolf_1830_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41f.", "author": "", "orig_id": 1405565}}, {"model": "metainfo.source", "pk": 17837, "fields": {"orig_filename": "Bachrach_Adolf_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405566}}, {"model": "metainfo.source", "pk": 17838, "fields": {"orig_filename": "Bachrich_Sigmund_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405567}}, {"model": "metainfo.source", "pk": 17839, "fields": {"orig_filename": "Bach_Alexander_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405534}}, {"model": "metainfo.source", "pk": 17840, "fields": {"orig_filename": "Bach_Eduard_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405537}}, {"model": "metainfo.source", "pk": 17841, "fields": {"orig_filename": "Bach_Emilie_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405538}}, {"model": "metainfo.source", "pk": 17842, "fields": {"orig_filename": "Bach_Friedrich_1817_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405544}}, {"model": "metainfo.source", "pk": 17843, "fields": {"orig_filename": "Bach_Otto_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405548}}, {"model": "metainfo.source", "pk": 17844, "fields": {"orig_filename": "Bach_Theodor-Karl_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405547}}, {"model": "metainfo.source", "pk": 17845, "fields": {"orig_filename": "Bacquehem_Olivier_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405573}}, {"model": "metainfo.source", "pk": 17846, "fields": {"orig_filename": "Bacsanyi_Gabriele_1775_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1420830}}, {"model": "metainfo.source", "pk": 17847, "fields": {"orig_filename": "Badaj_Alexander_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1420831}}, {"model": "metainfo.source", "pk": 17848, "fields": {"orig_filename": "Badeni_Kasimir-Felix_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42f.", "author": "", "orig_id": 1405579}}, {"model": "metainfo.source", "pk": 17849, "fields": {"orig_filename": "Baer-Frisell_Christine_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43", "author": "", "orig_id": 1420832}}, {"model": "metainfo.source", "pk": 17850, "fields": {"orig_filename": "Baernreither_Josef-Maria_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43", "author": "", "orig_id": 1405471}}, {"model": "metainfo.source", "pk": 17851, "fields": {"orig_filename": "Baeuerle_Adolf_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43f.", "author": "", "orig_id": 1405472}}, {"model": "metainfo.source", "pk": 17852, "fields": {"orig_filename": "Baeuerle_Friederike_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420833}}, {"model": "metainfo.source", "pk": 17853, "fields": {"orig_filename": "Baeuerle_Katharina_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44", "author": "", "orig_id": 1405473}}, {"model": "metainfo.source", "pk": 17854, "fields": {"orig_filename": "Bahr-Mildenburg_Anna_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1405541}}, {"model": "metainfo.source", "pk": 17855, "fields": {"orig_filename": "Bahr_Alois_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1405475}}, {"model": "metainfo.source", "pk": 17856, "fields": {"orig_filename": "Baillet-Latour_Theodor_1780_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420835}}, {"model": "metainfo.source", "pk": 17857, "fields": {"orig_filename": "Baillet-Latour_Vinzenz_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1405479}}, {"model": "metainfo.source", "pk": 17858, "fields": {"orig_filename": "Bail_Oskar_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420834}}, {"model": "metainfo.source", "pk": 17859, "fields": {"orig_filename": "Bakalar_Johann-M_1857_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420903}}, {"model": "metainfo.source", "pk": 17860, "fields": {"orig_filename": "Bakody_Theodor_1825_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420904}}, {"model": "metainfo.source", "pk": 17861, "fields": {"orig_filename": "Bakonyi_Emmerich_1768_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45f.", "author": "", "orig_id": 1420905}}, {"model": "metainfo.source", "pk": 17862, "fields": {"orig_filename": "Balajthy_Robert_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420906}}, {"model": "metainfo.source", "pk": 17863, "fields": {"orig_filename": "Balassa_Johann_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420907}}, {"model": "metainfo.source", "pk": 17864, "fields": {"orig_filename": "Balassa_Konstantin_1795_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420908}}, {"model": "metainfo.source", "pk": 17865, "fields": {"orig_filename": "Balatka_Hans_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1405492}}, {"model": "metainfo.source", "pk": 17866, "fields": {"orig_filename": "Balbi_Adrian_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420909}}, {"model": "metainfo.source", "pk": 17867, "fields": {"orig_filename": "Baldacci_Anton-Maximilian_1762_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1405496}}, {"model": "metainfo.source", "pk": 17868, "fields": {"orig_filename": "Ballagi_Moriz_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46f.", "author": "", "orig_id": 1420910}}, {"model": "metainfo.source", "pk": 17869, "fields": {"orig_filename": "Balling_Karl-Josef-Napoleon_1805_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420911}}, {"model": "metainfo.source", "pk": 17870, "fields": {"orig_filename": "Balucki_Michael_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420912}}, {"model": "metainfo.source", "pk": 17871, "fields": {"orig_filename": "Bamberger_Eugen_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1405680}}, {"model": "metainfo.source", "pk": 17872, "fields": {"orig_filename": "Bamberger_Heinrich_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1405682}}, {"model": "metainfo.source", "pk": 17873, "fields": {"orig_filename": "Bamberger_Max_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47f.", "author": "", "orig_id": 1420914}}, {"model": "metainfo.source", "pk": 17874, "fields": {"orig_filename": "Bamberg_Josef_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420913}}, {"model": "metainfo.source", "pk": 17875, "fields": {"orig_filename": "Bancalari_Gustav_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420915}}, {"model": "metainfo.source", "pk": 17876, "fields": {"orig_filename": "Bandl_Ludwig_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1421079}}, {"model": "metainfo.source", "pk": 17877, "fields": {"orig_filename": "Bandrowski_Alexander_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420917}}, {"model": "metainfo.source", "pk": 17878, "fields": {"orig_filename": "Band_Moritz_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420916}}, {"model": "metainfo.source", "pk": 17879, "fields": {"orig_filename": "Banffy-Losoncz_Dezsoe_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405689}}, {"model": "metainfo.source", "pk": 17880, "fields": {"orig_filename": "Banhans_Anton_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405691}}, {"model": "metainfo.source", "pk": 17881, "fields": {"orig_filename": "Banhans_Karl_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405693}}, {"model": "metainfo.source", "pk": 17882, "fields": {"orig_filename": "Banki_Donat_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405695}}, {"model": "metainfo.source", "pk": 17883, "fields": {"orig_filename": "Barabas_Nikolaus_1810_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48f.", "author": "", "orig_id": 1420918}}, {"model": "metainfo.source", "pk": 17884, "fields": {"orig_filename": "Barach-Rappaport_Karl-Siegmund_1834_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1420919}}, {"model": "metainfo.source", "pk": 17885, "fields": {"orig_filename": "Barach_Moritz_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405584}}, {"model": "metainfo.source", "pk": 17886, "fields": {"orig_filename": "Barach_Rosa_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1414455}}, {"model": "metainfo.source", "pk": 17887, "fields": {"orig_filename": "Barac_Milutin_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405701}}, {"model": "metainfo.source", "pk": 17888, "fields": {"orig_filename": "Baraga_Friedrich-Irenaeus_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405702}}, {"model": "metainfo.source", "pk": 17889, "fields": {"orig_filename": "Barany_Robert_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1405704}}, {"model": "metainfo.source", "pk": 17890, "fields": {"orig_filename": "Barazetti_Sophie_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1420920}}, {"model": "metainfo.source", "pk": 17891, "fields": {"orig_filename": "Barbacovi_Franz-Virgil_1738_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49f.", "author": "", "orig_id": 1405709}}, {"model": "metainfo.source", "pk": 17892, "fields": {"orig_filename": "Barbaczy_Josef_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420921}}, {"model": "metainfo.source", "pk": 17893, "fields": {"orig_filename": "Barbisch_Hans_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420922}}, {"model": "metainfo.source", "pk": 17894, "fields": {"orig_filename": "Barb_Alphons-Augustinus_1901_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444036}}, {"model": "metainfo.source", "pk": 17895, "fields": {"orig_filename": "Barco_Josef_1798_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420923}}, {"model": "metainfo.source", "pk": 17896, "fields": {"orig_filename": "Bardach-Chlumberg_Hans_1897_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420924}}, {"model": "metainfo.source", "pk": 17897, "fields": {"orig_filename": "Barenyi_Bela_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444040}}, {"model": "metainfo.source", "pk": 17898, "fields": {"orig_filename": "Bareuther_Ernst_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420925}}, {"model": "metainfo.source", "pk": 17899, "fields": {"orig_filename": "Barion-Zellthal_Matthias_1785_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420926}}, {"model": "metainfo.source", "pk": 17900, "fields": {"orig_filename": "Barkany_Marie_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420993}}, {"model": "metainfo.source", "pk": 17901, "fields": {"orig_filename": "Barle_Janko_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420994}}, {"model": "metainfo.source", "pk": 17902, "fields": {"orig_filename": "Antoniewicz_Johann_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417972}}, {"model": "metainfo.source", "pk": 17903, "fields": {"orig_filename": "Antoniewicz_Karl_1807_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417973}}, {"model": "metainfo.source", "pk": 17904, "fields": {"orig_filename": "Antonius_Otto_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417974}}, {"model": "metainfo.source", "pk": 17905, "fields": {"orig_filename": "Anton_Ferdinand_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24f.", "author": "", "orig_id": 1417968}}, {"model": "metainfo.source", "pk": 17906, "fields": {"orig_filename": "Anton_Gabriel_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417969}}, {"model": "metainfo.source", "pk": 17907, "fields": {"orig_filename": "Anton_Viktor_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417970}}, {"model": "metainfo.source", "pk": 17908, "fields": {"orig_filename": "Anyz_Josef_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417976}}, {"model": "metainfo.source", "pk": 17909, "fields": {"orig_filename": "Anzengruber_Johann_1810_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417977}}, {"model": "metainfo.source", "pk": 17910, "fields": {"orig_filename": "Anzengruber_Karl_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25f.", "author": "", "orig_id": 1418052}}, {"model": "metainfo.source", "pk": 17911, "fields": {"orig_filename": "Anzengruber_Ludwig_1839_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418053}}, {"model": "metainfo.source", "pk": 17912, "fields": {"orig_filename": "Anzoletti_Marco_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418054}}, {"model": "metainfo.source", "pk": 17913, "fields": {"orig_filename": "Anzoletti_Patrizius_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418055}}, {"model": "metainfo.source", "pk": 17914, "fields": {"orig_filename": "Appel_Christian_1785_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418056}}, {"model": "metainfo.source", "pk": 17915, "fields": {"orig_filename": "Appel_Johann-Nep_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418057}}, {"model": "metainfo.source", "pk": 17916, "fields": {"orig_filename": "Appel_Josef-Franz_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418058}}, {"model": "metainfo.source", "pk": 17917, "fields": {"orig_filename": "Appel_Michael-Ludwig-E_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26f.", "author": "", "orig_id": 1418059}}, {"model": "metainfo.source", "pk": 17918, "fields": {"orig_filename": "Appel_Wilhelm_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418060}}, {"model": "metainfo.source", "pk": 17919, "fields": {"orig_filename": "Appiani_Andreas_1754_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418061}}, {"model": "metainfo.source", "pk": 17920, "fields": {"orig_filename": "Apponyi_Albert_1846_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418062}}, {"model": "metainfo.source", "pk": 17921, "fields": {"orig_filename": "Apponyi_Alexander_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418063}}, {"model": "metainfo.source", "pk": 17922, "fields": {"orig_filename": "Apponyi_Georg_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418064}}, {"model": "metainfo.source", "pk": 17923, "fields": {"orig_filename": "Aptowitzer_Victor_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418065}}, {"model": "metainfo.source", "pk": 17924, "fields": {"orig_filename": "Arany_Johann_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27f.", "author": "", "orig_id": 1418066}}, {"model": "metainfo.source", "pk": 17925, "fields": {"orig_filename": "Arbes_Jakub_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418067}}, {"model": "metainfo.source", "pk": 17926, "fields": {"orig_filename": "Arbter_Arthur_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418069}}, {"model": "metainfo.source", "pk": 17927, "fields": {"orig_filename": "Arbter_Emil_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418068}}, {"model": "metainfo.source", "pk": 17928, "fields": {"orig_filename": "Arendt_Ekkehard_1892_1954.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2028980}}, {"model": "metainfo.source", "pk": 17929, "fields": {"orig_filename": "Argenteau_Eugen_1741_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418070}}, {"model": "metainfo.source", "pk": 17930, "fields": {"orig_filename": "Arici_Cesare_1785_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418071}}, {"model": "metainfo.source", "pk": 17931, "fields": {"orig_filename": "Arigi_Julius_1895_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441907}}, {"model": "metainfo.source", "pk": 17932, "fields": {"orig_filename": "Arleth_Erich_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418072}}, {"model": "metainfo.source", "pk": 17933, "fields": {"orig_filename": "Arlt_Ferdinand_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418073}}, {"model": "metainfo.source", "pk": 17934, "fields": {"orig_filename": "Arnau_Karl_1843_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418074}}, {"model": "metainfo.source", "pk": 17935, "fields": {"orig_filename": "Arnberger_Erik_1917_1987.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441954}}, {"model": "metainfo.source", "pk": 17936, "fields": {"orig_filename": "Arndts-Arnesberg_Karl-Ludwig_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418155}}, {"model": "metainfo.source", "pk": 17937, "fields": {"orig_filename": "Arndt_Johannes_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28f.", "author": "", "orig_id": 1418154}}, {"model": "metainfo.source", "pk": 17938, "fields": {"orig_filename": "Arneth_Alfred_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418156}}, {"model": "metainfo.source", "pk": 17939, "fields": {"orig_filename": "Arneth_Josef-Cal_1791_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418157}}, {"model": "metainfo.source", "pk": 17940, "fields": {"orig_filename": "Arneth_Michael_1771_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418158}}, {"model": "metainfo.source", "pk": 17941, "fields": {"orig_filename": "Arnim_Hans_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29f.", "author": "", "orig_id": 1418159}}, {"model": "metainfo.source", "pk": 17942, "fields": {"orig_filename": "Arnold_Djuro_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418160}}, {"model": "metainfo.source", "pk": 17943, "fields": {"orig_filename": "Arnold_Josef_1788_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418161}}, {"model": "metainfo.source", "pk": 17944, "fields": {"orig_filename": "Arnold_Josef_1823_1862.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193497}}, {"model": "metainfo.source", "pk": 17945, "fields": {"orig_filename": "Arnold_Robert-Franz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418162}}, {"model": "metainfo.source", "pk": 17946, "fields": {"orig_filename": "Arnsburg_Ludwig_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418163}}, {"model": "metainfo.source", "pk": 17947, "fields": {"orig_filename": "Arnsburg_Marie_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418164}}, {"model": "metainfo.source", "pk": 17948, "fields": {"orig_filename": "Arrigoni_Anton_1788_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418165}}, {"model": "metainfo.source", "pk": 17949, "fields": {"orig_filename": "Arrivabene_Ferdinand_1770_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418166}}, {"model": "metainfo.source", "pk": 17950, "fields": {"orig_filename": "Artaria_Domenico_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30f.", "author": "", "orig_id": 1418167}}, {"model": "metainfo.source", "pk": 17951, "fields": {"orig_filename": "Arthaber_Gustav-Adolf_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418168}}, {"model": "metainfo.source", "pk": 17952, "fields": {"orig_filename": "Arthaber_Rudolf_1795_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418169}}, {"model": "metainfo.source", "pk": 17953, "fields": {"orig_filename": "Artmann_Emil-Wilhelm_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2003990}}, {"model": "metainfo.source", "pk": 17954, "fields": {"orig_filename": "Artmann_Ferdinand_1830_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418170}}, {"model": "metainfo.source", "pk": 17955, "fields": {"orig_filename": "Artner_Therese_1772_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418171}}, {"model": "metainfo.source", "pk": 17956, "fields": {"orig_filename": "Arz-Straussenburg_Arthur_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418172}}, {"model": "metainfo.source", "pk": 17957, "fields": {"orig_filename": "Arzberger_Friedrich_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31f.", "author": "", "orig_id": 1416773}}, {"model": "metainfo.source", "pk": 17958, "fields": {"orig_filename": "Arzberger_Johann_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416774}}, {"model": "metainfo.source", "pk": 17959, "fields": {"orig_filename": "Arzberger_Moriz_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416775}}, {"model": "metainfo.source", "pk": 17960, "fields": {"orig_filename": "Asboth_Oszkar_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2264594}}, {"model": "metainfo.source", "pk": 17961, "fields": {"orig_filename": "Aschauer-Achenrain-Lichtenthurn_Josef_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416776}}, {"model": "metainfo.source", "pk": 17962, "fields": {"orig_filename": "Aschbach_Josef_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416777}}, {"model": "metainfo.source", "pk": 17963, "fields": {"orig_filename": "Ascher_Anton_1820_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416778}}, {"model": "metainfo.source", "pk": 17964, "fields": {"orig_filename": "Ascher_Franzi_1910_1991.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441445}}, {"model": "metainfo.source", "pk": 17965, "fields": {"orig_filename": "Ascher_Leo_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441446}}, {"model": "metainfo.source", "pk": 17966, "fields": {"orig_filename": "Ascoli_Graziadio-Isaia_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416779}}, {"model": "metainfo.source", "pk": 17967, "fields": {"orig_filename": "Askerc_Anton_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416780}}, {"model": "metainfo.source", "pk": 17968, "fields": {"orig_filename": "Aslan_Raoul_1886_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1430338}}, {"model": "metainfo.source", "pk": 17969, "fields": {"orig_filename": "Asnyk_Adam_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416781}}, {"model": "metainfo.source", "pk": 17970, "fields": {"orig_filename": "Assemani_Simone_1752_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416783}}, {"model": "metainfo.source", "pk": 17971, "fields": {"orig_filename": "Assmayer_Ignaz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416784}}, {"model": "metainfo.source", "pk": 17972, "fields": {"orig_filename": "Asson_Michelangelo_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416785}}, {"model": "metainfo.source", "pk": 17973, "fields": {"orig_filename": "Attems-Petzenstein_Heinrich_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416788}}, {"model": "metainfo.source", "pk": 17974, "fields": {"orig_filename": "Attems_Alexander_1814_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416786}}, {"model": "metainfo.source", "pk": 17975, "fields": {"orig_filename": "Attems_Ferdinand-Maria_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416787}}, {"model": "metainfo.source", "pk": 17976, "fields": {"orig_filename": "Attems_Ignaz-Maria_1774_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416789}}, {"model": "metainfo.source", "pk": 17977, "fields": {"orig_filename": "Attems_Ottokar-Maria_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1469022}}, {"model": "metainfo.source", "pk": 17978, "fields": {"orig_filename": "Attlmayer_Richard-Isidor_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416790}}, {"model": "metainfo.source", "pk": 17979, "fields": {"orig_filename": "Attomyr_Joseph_1807_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416791}}, {"model": "metainfo.source", "pk": 17980, "fields": {"orig_filename": "Atzwanger_Hugo_1883_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1429374}}, {"model": "metainfo.source", "pk": 17981, "fields": {"orig_filename": "Atzwanger_Peter-Paul_1888_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441750}}, {"model": "metainfo.source", "pk": 17982, "fields": {"orig_filename": "Atz_Karl_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416792}}, {"model": "metainfo.source", "pk": 17983, "fields": {"orig_filename": "Auckenthaler_Engelbert_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416793}}, {"model": "metainfo.source", "pk": 17984, "fields": {"orig_filename": "Auckenthaler_Josef_1769_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416794}}, {"model": "metainfo.source", "pk": 17985, "fields": {"orig_filename": "Auer-Welsbach_Alois_1813_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34f.", "author": "", "orig_id": 1416796}}, {"model": "metainfo.source", "pk": 17986, "fields": {"orig_filename": "Auer-Welsbach_Karl_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416872}}, {"model": "metainfo.source", "pk": 17987, "fields": {"orig_filename": "Auerhan_Jan_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1992581}}, {"model": "metainfo.source", "pk": 17988, "fields": {"orig_filename": "Auernhammer_Josepha-Barbara_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447288}}, {"model": "metainfo.source", "pk": 17989, "fields": {"orig_filename": "Auernheimer_Raoul_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416873}}, {"model": "metainfo.source", "pk": 17990, "fields": {"orig_filename": "Auersperg_Adolf_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416874}}, {"model": "metainfo.source", "pk": 17991, "fields": {"orig_filename": "Auersperg_Anton-Alexander_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35f.", "author": "", "orig_id": 1416875}}, {"model": "metainfo.source", "pk": 17992, "fields": {"orig_filename": "Auersperg_Gottfried-Leopold_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416876}}, {"model": "metainfo.source", "pk": 17993, "fields": {"orig_filename": "Auersperg_Johann-Baptist_1745_1816.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468711}}, {"model": "metainfo.source", "pk": 17994, "fields": {"orig_filename": "Auersperg_Karl-Wilhelm_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416877}}, {"model": "metainfo.source", "pk": 17995, "fields": {"orig_filename": "Auersperg_Leopold_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416878}}, {"model": "metainfo.source", "pk": 17996, "fields": {"orig_filename": "Auersperg_Maximilian_1771_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416879}}, {"model": "metainfo.source", "pk": 17997, "fields": {"orig_filename": "Auer_Erich_1923_2004.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441801}}, {"model": "metainfo.source", "pk": 17998, "fields": {"orig_filename": "Auer_Hans-Wilhelm_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004022}}, {"model": "metainfo.source", "pk": 17999, "fields": {"orig_filename": "Auer_Leopold_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416795}}, {"model": "metainfo.source", "pk": 18000, "fields": {"orig_filename": "Auffenberg-Komarow_Moritz_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416880}}, {"model": "metainfo.source", "pk": 18001, "fields": {"orig_filename": "Augenfeld_Alois_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004028}}, {"model": "metainfo.source", "pk": 18002, "fields": {"orig_filename": "Augenfeld_Felix_1893_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004033}}, {"model": "metainfo.source", "pk": 18003, "fields": {"orig_filename": "August-Auenfels_Georg_1773_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416881}}, {"model": "metainfo.source", "pk": 18004, "fields": {"orig_filename": "Augustin_Ferdinand_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416883}}, {"model": "metainfo.source", "pk": 18005, "fields": {"orig_filename": "Augustin_Frantisek_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1992594}}, {"model": "metainfo.source", "pk": 18006, "fields": {"orig_filename": "Albini_Srecko_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418129}}, {"model": "metainfo.source", "pk": 18007, "fields": {"orig_filename": "Albori_Eugen_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418131}}, {"model": "metainfo.source", "pk": 18008, "fields": {"orig_filename": "Albrecht_Friedrich-Rudolf_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12f.", "author": "", "orig_id": 1418132}}, {"model": "metainfo.source", "pk": 18009, "fields": {"orig_filename": "Albrecht_Heinrich_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418133}}, {"model": "metainfo.source", "pk": 18010, "fields": {"orig_filename": "Albrecht_Hermine_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418134}}, {"model": "metainfo.source", "pk": 18011, "fields": {"orig_filename": "Albrecht_Josef_1888_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438986}}, {"model": "metainfo.source", "pk": 18012, "fields": {"orig_filename": "Albrecht_Kasimir_1738_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418135}}, {"model": "metainfo.source", "pk": 18013, "fields": {"orig_filename": "Albrizzi-Teotochi_Isabella_1760_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418136}}, {"model": "metainfo.source", "pk": 18014, "fields": {"orig_filename": "Aleardi_Aleardo_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418137}}, {"model": "metainfo.source", "pk": 18015, "fields": {"orig_filename": "Aleksic_Nikola_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418138}}, {"model": "metainfo.source", "pk": 18016, "fields": {"orig_filename": "Alemann_Wilhelm_1798_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418139}}, {"model": "metainfo.source", "pk": 18017, "fields": {"orig_filename": "Ales_Mikulas_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418145}}, {"model": "metainfo.source", "pk": 18018, "fields": {"orig_filename": "Alexander_Gustav_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418147}}, {"model": "metainfo.source", "pk": 18019, "fields": {"orig_filename": "Alexander__1857_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418146}}, {"model": "metainfo.source", "pk": 18020, "fields": {"orig_filename": "Alexandrovic_Ljubomir_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418148}}, {"model": "metainfo.source", "pk": 18021, "fields": {"orig_filename": "Algyogyi_Hermann_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2089510}}, {"model": "metainfo.source", "pk": 18022, "fields": {"orig_filename": "Alle_Moriz_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418149}}, {"model": "metainfo.source", "pk": 18023, "fields": {"orig_filename": "Allram_Adele_1826_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1418152}}, {"model": "metainfo.source", "pk": 18024, "fields": {"orig_filename": "Allram_Josef_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1418153}}, {"model": "metainfo.source", "pk": 18025, "fields": {"orig_filename": "Alma_Marian_1860_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416748}}, {"model": "metainfo.source", "pk": 18026, "fields": {"orig_filename": "Alphons_Theodor_1860_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416749}}, {"model": "metainfo.source", "pk": 18027, "fields": {"orig_filename": "Alram_Hieronymus-Josef_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416750}}, {"model": "metainfo.source", "pk": 18028, "fields": {"orig_filename": "Alscher_Otto_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416751}}, {"model": "metainfo.source", "pk": 18029, "fields": {"orig_filename": "Alschinger_Andreas_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416752}}, {"model": "metainfo.source", "pk": 18030, "fields": {"orig_filename": "Altenweisel_Josef_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1416757}}, {"model": "metainfo.source", "pk": 18031, "fields": {"orig_filename": "Alter-Waltrecht_Rudolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417699}}, {"model": "metainfo.source", "pk": 18032, "fields": {"orig_filename": "Altmann_Adolf_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447709}}, {"model": "metainfo.source", "pk": 18033, "fields": {"orig_filename": "Altmann_Anton_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417701}}, {"model": "metainfo.source", "pk": 18034, "fields": {"orig_filename": "Altmann_Josef-Hermann_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417702}}, {"model": "metainfo.source", "pk": 18035, "fields": {"orig_filename": "Altman_Josef_1777_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417700}}, {"model": "metainfo.source", "pk": 18036, "fields": {"orig_filename": "Altmuetter_Georg_1787_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16f.", "author": "", "orig_id": 1417703}}, {"model": "metainfo.source", "pk": 18037, "fields": {"orig_filename": "Altmutter_Franz_1745_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417704}}, {"model": "metainfo.source", "pk": 18038, "fields": {"orig_filename": "Altmutter_Placidus-Jakob_1780_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417705}}, {"model": "metainfo.source", "pk": 18039, "fields": {"orig_filename": "Alton_Johann-Baptist_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417706}}, {"model": "metainfo.source", "pk": 18040, "fields": {"orig_filename": "Altschul_Elias_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417707}}, {"model": "metainfo.source", "pk": 18041, "fields": {"orig_filename": "Altwirth_Heinrich_1868_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417708}}, {"model": "metainfo.source", "pk": 18042, "fields": {"orig_filename": "Alt_Franz_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416753}}, {"model": "metainfo.source", "pk": 18043, "fields": {"orig_filename": "Alt_Jakob_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15f.", "author": "", "orig_id": 1416754}}, {"model": "metainfo.source", "pk": 18044, "fields": {"orig_filename": "Alt_Rudolf_1812_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416755}}, {"model": "metainfo.source", "pk": 18045, "fields": {"orig_filename": "Amade_August_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417709}}, {"model": "metainfo.source", "pk": 18046, "fields": {"orig_filename": "Amade_Thaddaeus_1783_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417710}}, {"model": "metainfo.source", "pk": 18047, "fields": {"orig_filename": "Amann_Johann_1765_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417780}}, {"model": "metainfo.source", "pk": 18048, "fields": {"orig_filename": "Amann_Paul_1884_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441439}}, {"model": "metainfo.source", "pk": 18049, "fields": {"orig_filename": "Amati_Carlo_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417781}}, {"model": "metainfo.source", "pk": 18050, "fields": {"orig_filename": "Ambrosi_Gustinus_1893_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1439170}}, {"model": "metainfo.source", "pk": 18051, "fields": {"orig_filename": "Ambros_August-Wilhelm_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17f.", "author": "", "orig_id": 1417782}}, {"model": "metainfo.source", "pk": 18052, "fields": {"orig_filename": "Ambros_Josef_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417783}}, {"model": "metainfo.source", "pk": 18053, "fields": {"orig_filename": "Ambrozy-Migazzi_Istvan_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1824042}}, {"model": "metainfo.source", "pk": 18054, "fields": {"orig_filename": "Ambschell_Anton_1751_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417784}}, {"model": "metainfo.source", "pk": 18055, "fields": {"orig_filename": "Amerling_Friedrich_1803_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417785}}, {"model": "metainfo.source", "pk": 18056, "fields": {"orig_filename": "Amerling_Karel-Slavoj_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417786}}, {"model": "metainfo.source", "pk": 18057, "fields": {"orig_filename": "Ameseder_Eduard_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417787}}, {"model": "metainfo.source", "pk": 18058, "fields": {"orig_filename": "Ammann_Hartmann_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417788}}, {"model": "metainfo.source", "pk": 18059, "fields": {"orig_filename": "Amonn_Marius_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417791}}, {"model": "metainfo.source", "pk": 18060, "fields": {"orig_filename": "Amon_Anton_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18f.", "author": "", "orig_id": 1417789}}, {"model": "metainfo.source", "pk": 18061, "fields": {"orig_filename": "Amon_Johann-Franz_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417790}}, {"model": "metainfo.source", "pk": 18062, "fields": {"orig_filename": "Ampferer_Otto_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417792}}, {"model": "metainfo.source", "pk": 18063, "fields": {"orig_filename": "Amrus_Milan_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417793}}, {"model": "metainfo.source", "pk": 18064, "fields": {"orig_filename": "Amschl_Sepp_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417794}}, {"model": "metainfo.source", "pk": 18065, "fields": {"orig_filename": "Amster_Moritz_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417795}}, {"model": "metainfo.source", "pk": 18066, "fields": {"orig_filename": "An-Der-Lan-Hochbrunn_Hartmann_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417799}}, {"model": "metainfo.source", "pk": 18067, "fields": {"orig_filename": "Anczyc_Siegmund_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417796}}, {"model": "metainfo.source", "pk": 18068, "fields": {"orig_filename": "Anczyc_Wladislaw-Ludwig_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417797}}, {"model": "metainfo.source", "pk": 18069, "fields": {"orig_filename": "Anderle_Alois_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417867}}, {"model": "metainfo.source", "pk": 18070, "fields": {"orig_filename": "Anderle_Josef_1881_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2025324}}, {"model": "metainfo.source", "pk": 18071, "fields": {"orig_filename": "Anderloni_Pietro_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417868}}, {"model": "metainfo.source", "pk": 18072, "fields": {"orig_filename": "Andersag_Michael_1799_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417870}}, {"model": "metainfo.source", "pk": 18073, "fields": {"orig_filename": "Anders_Josef_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417869}}, {"model": "metainfo.source", "pk": 18074, "fields": {"orig_filename": "Andics_Hellmut_1922_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420663}}, {"model": "metainfo.source", "pk": 18075, "fields": {"orig_filename": "Andrassy_Julius_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20f.", "author": "", "orig_id": 1417871}}, {"model": "metainfo.source", "pk": 18076, "fields": {"orig_filename": "Andrassy_Julius_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417872}}, {"model": "metainfo.source", "pk": 18077, "fields": {"orig_filename": "Andreas_Michael_1762_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417874}}, {"model": "metainfo.source", "pk": 18078, "fields": {"orig_filename": "Andree-Eysn_Marie_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421999}}, {"model": "metainfo.source", "pk": 18079, "fields": {"orig_filename": "Andres_Leopold_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417876}}, {"model": "metainfo.source", "pk": 18080, "fields": {"orig_filename": "Andre_Emil_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417873}}, {"model": "metainfo.source", "pk": 18081, "fields": {"orig_filename": "Andrian-Werburg_Ferdinand_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21f.", "author": "", "orig_id": 1417877}}, {"model": "metainfo.source", "pk": 18082, "fields": {"orig_filename": "Andrian-Werburg_Leopold_1875_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426151}}, {"model": "metainfo.source", "pk": 18083, "fields": {"orig_filename": "Andrian-Werburg_Viktor_1813_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417878}}, {"model": "metainfo.source", "pk": 18084, "fields": {"orig_filename": "Andrlik_Karl_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417879}}, {"model": "metainfo.source", "pk": 18085, "fields": {"orig_filename": "Anelli_Angelo_1761_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417880}}, {"model": "metainfo.source", "pk": 18086, "fields": {"orig_filename": "Angel-Katan_Anny_1898_1992.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1451379}}, {"model": "metainfo.source", "pk": 18087, "fields": {"orig_filename": "Angeler_Josef_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417881}}, {"model": "metainfo.source", "pk": 18088, "fields": {"orig_filename": "Angeli_Heinrich_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417882}}, {"model": "metainfo.source", "pk": 18089, "fields": {"orig_filename": "Angeli_Moriz_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22f.", "author": "", "orig_id": 1417883}}, {"model": "metainfo.source", "pk": 18090, "fields": {"orig_filename": "Angerer_Eduard_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1419864}}, {"model": "metainfo.source", "pk": 18091, "fields": {"orig_filename": "Angerer_Hans_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417884}}, {"model": "metainfo.source", "pk": 18092, "fields": {"orig_filename": "Angerer_Karl_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417885}}, {"model": "metainfo.source", "pk": 18093, "fields": {"orig_filename": "Angerer_Ludwig_1827_1879.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1461160}}, {"model": "metainfo.source", "pk": 18094, "fields": {"orig_filename": "Angerer_Victor_1839_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1909856}}, {"model": "metainfo.source", "pk": 18095, "fields": {"orig_filename": "Angjelovic_Albert_1820_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417886}}, {"model": "metainfo.source", "pk": 18096, "fields": {"orig_filename": "Angyal_David_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417956}}, {"model": "metainfo.source", "pk": 18097, "fields": {"orig_filename": "Ankershofen_Gottlieb_1795_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23f.", "author": "", "orig_id": 1417958}}, {"model": "metainfo.source", "pk": 18098, "fields": {"orig_filename": "Anker_Mathias-Josef_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417957}}, {"model": "metainfo.source", "pk": 18099, "fields": {"orig_filename": "Ankwicz_Andreas-Ludwig_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417959}}, {"model": "metainfo.source", "pk": 18100, "fields": {"orig_filename": "Anrather_Karl_1861_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417960}}, {"model": "metainfo.source", "pk": 18101, "fields": {"orig_filename": "Anreiter_Alois_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417961}}, {"model": "metainfo.source", "pk": 18102, "fields": {"orig_filename": "Anschuetz_Auguste_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417962}}, {"model": "metainfo.source", "pk": 18103, "fields": {"orig_filename": "Anschuetz_Eduard_1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417963}}, {"model": "metainfo.source", "pk": 18104, "fields": {"orig_filename": "Anschuetz_Heinrich_1785_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417964}}, {"model": "metainfo.source", "pk": 18105, "fields": {"orig_filename": "Anthofer_Karl_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417965}}, {"model": "metainfo.source", "pk": 18106, "fields": {"orig_filename": "Anthony-Siegenfeld_Alfred_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417966}}, {"model": "metainfo.source", "pk": 18107, "fields": {"orig_filename": "Antoine_Franz-De-Paula_1768_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417967}}, {"model": "metainfo.source", "pk": 18108, "fields": {"orig_filename": "Antoine_Franz-De-Paula_1815_1886.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1823997}}, {"model": "metainfo.source", "pk": 18109, "fields": {"orig_filename": "Antoncic_Anton_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417971}}, {"model": "metainfo.source", "pk": 18110, "fields": {"orig_filename": "Abeles_Armin_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2103840}}, {"model": "metainfo.source", "pk": 18111, "fields": {"orig_filename": "Abeles_Otto_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441402}}, {"model": "metainfo.source", "pk": 18112, "fields": {"orig_filename": "Abel_Franz_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1419807}}, {"model": "metainfo.source", "pk": 18113, "fields": {"orig_filename": "Abel_Friedrich_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193586}}, {"model": "metainfo.source", "pk": 18114, "fields": {"orig_filename": "Abel_Heinrich_1843_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417764}}, {"model": "metainfo.source", "pk": 18115, "fields": {"orig_filename": "Abel_Josef_1764_1818.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417765}}, {"model": "metainfo.source", "pk": 18116, "fields": {"orig_filename": "Abel_Lothar_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417766}}, {"model": "metainfo.source", "pk": 18117, "fields": {"orig_filename": "Abel_Ludwig_1811_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1993664}}, {"model": "metainfo.source", "pk": 18118, "fields": {"orig_filename": "Abel_Othenio_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417767}}, {"model": "metainfo.source", "pk": 18119, "fields": {"orig_filename": "Abel_Rudolf_1831_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193591}}, {"model": "metainfo.source", "pk": 18120, "fields": {"orig_filename": "Abendroth_Irene_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417768}}, {"model": "metainfo.source", "pk": 18121, "fields": {"orig_filename": "Abensperg-Traun_Hugo_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417769}}, {"model": "metainfo.source", "pk": 18122, "fields": {"orig_filename": "Abensperg-Traun_Otto-Ehrenreich_1848_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431726}}, {"model": "metainfo.source", "pk": 18123, "fields": {"orig_filename": "Aberle_Karl_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417770}}, {"model": "metainfo.source", "pk": 18124, "fields": {"orig_filename": "Aberle_Matthias_1784_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417771}}, {"model": "metainfo.source", "pk": 18125, "fields": {"orig_filename": "Abertolli_Ferdinand_1781_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417773}}, {"model": "metainfo.source", "pk": 18126, "fields": {"orig_filename": "Abert_Josef_1832_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417772}}, {"model": "metainfo.source", "pk": 18127, "fields": {"orig_filename": "Abrahamowicz_David_1839_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417775}}, {"model": "metainfo.source", "pk": 18128, "fields": {"orig_filename": "Abraham_Wladislaw_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2f.", "author": "", "orig_id": 1417774}}, {"model": "metainfo.source", "pk": 18129, "fields": {"orig_filename": "Abramovicz-Adelburg_Eduard_1804_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417777}}, {"model": "metainfo.source", "pk": 18130, "fields": {"orig_filename": "Abramovicz_Bronislaw_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417776}}, {"model": "metainfo.source", "pk": 18131, "fields": {"orig_filename": "Abranyi_Emil_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417778}}, {"model": "metainfo.source", "pk": 18132, "fields": {"orig_filename": "Abranyi_Kornel_1822_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417779}}, {"model": "metainfo.source", "pk": 18133, "fields": {"orig_filename": "Abranyi_Kornel_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417847}}, {"model": "metainfo.source", "pk": 18134, "fields": {"orig_filename": "Absenger_Anton_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417848}}, {"model": "metainfo.source", "pk": 18135, "fields": {"orig_filename": "Absolon_Karel_1877_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438583}}, {"model": "metainfo.source", "pk": 18136, "fields": {"orig_filename": "Abt_Anton_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417849}}, {"model": "metainfo.source", "pk": 18137, "fields": {"orig_filename": "Acerbi_Enrico_1785_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417850}}, {"model": "metainfo.source", "pk": 18138, "fields": {"orig_filename": "Acerbi_Giuseppe_1773_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417851}}, {"model": "metainfo.source", "pk": 18139, "fields": {"orig_filename": "Achazel_Matthias_1779_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3f.", "author": "", "orig_id": 1417852}}, {"model": "metainfo.source", "pk": 18140, "fields": {"orig_filename": "Achleuthner_Leonhard_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417853}}, {"model": "metainfo.source", "pk": 18141, "fields": {"orig_filename": "Ackerl_Johann_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431400}}, {"model": "metainfo.source", "pk": 18142, "fields": {"orig_filename": "Ackermann_Leopold_1771_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417854}}, {"model": "metainfo.source", "pk": 18143, "fields": {"orig_filename": "Ackner_Johann-Michael_1782_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417855}}, {"model": "metainfo.source", "pk": 18144, "fields": {"orig_filename": "Adamberger_Antonie_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417858}}, {"model": "metainfo.source", "pk": 18145, "fields": {"orig_filename": "Adamczik_Josef_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417859}}, {"model": "metainfo.source", "pk": 18146, "fields": {"orig_filename": "Adamek_Bohumil_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417860}}, {"model": "metainfo.source", "pk": 18147, "fields": {"orig_filename": "Adamek_Karel-Vaclav_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2147988}}, {"model": "metainfo.source", "pk": 18148, "fields": {"orig_filename": "Adamek_Karel_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417863}}, {"model": "metainfo.source", "pk": 18149, "fields": {"orig_filename": "Adametz_Karoline_1879_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1451307}}, {"model": "metainfo.source", "pk": 18150, "fields": {"orig_filename": "Adametz_Leopold_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417861}}, {"model": "metainfo.source", "pk": 18151, "fields": {"orig_filename": "Adamic_Emil_1877_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417862}}, {"model": "metainfo.source", "pk": 18152, "fields": {"orig_filename": "Adamkiewicz_Albert_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417864}}, {"model": "metainfo.source", "pk": 18153, "fields": {"orig_filename": "Adamovic_Lujo_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417865}}, {"model": "metainfo.source", "pk": 18154, "fields": {"orig_filename": "Adams_John-Quincy_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417866}}, {"model": "metainfo.source", "pk": 18155, "fields": {"orig_filename": "Adam_Heinrich_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417856}}, {"model": "metainfo.source", "pk": 18156, "fields": {"orig_filename": "Adam_Karl_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431473}}, {"model": "metainfo.source", "pk": 18157, "fields": {"orig_filename": "Adam_Walter_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417857}}, {"model": "metainfo.source", "pk": 18158, "fields": {"orig_filename": "Adelburg_August_1830_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417936}}, {"model": "metainfo.source", "pk": 18159, "fields": {"orig_filename": "Adler_Alfred_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417937}}, {"model": "metainfo.source", "pk": 18160, "fields": {"orig_filename": "Adler_Emanuel_1873_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417938}}, {"model": "metainfo.source", "pk": 18161, "fields": {"orig_filename": "Adler_Emma_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431442}}, {"model": "metainfo.source", "pk": 18162, "fields": {"orig_filename": "Adler_Eugen_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417939}}, {"model": "metainfo.source", "pk": 18163, "fields": {"orig_filename": "Adler_Felix_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431187}}, {"model": "metainfo.source", "pk": 18164, "fields": {"orig_filename": "Adler_Friedrich_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417940}}, {"model": "metainfo.source", "pk": 18165, "fields": {"orig_filename": "Adler_Guido_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6f.", "author": "", "orig_id": 1417941}}, {"model": "metainfo.source", "pk": 18166, "fields": {"orig_filename": "Adler_Karl_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417942}}, {"model": "metainfo.source", "pk": 18167, "fields": {"orig_filename": "Adler_Max_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417943}}, {"model": "metainfo.source", "pk": 18168, "fields": {"orig_filename": "Adler_Sigmund_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417944}}, {"model": "metainfo.source", "pk": 18169, "fields": {"orig_filename": "Adler_Viktor_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7f.", "author": "", "orig_id": 1417945}}, {"model": "metainfo.source", "pk": 18170, "fields": {"orig_filename": "Adler_Vinzenz_1826_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417946}}, {"model": "metainfo.source", "pk": 18171, "fields": {"orig_filename": "Adlmueller_Fred_1909_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438762}}, {"model": "metainfo.source", "pk": 18172, "fields": {"orig_filename": "Adolf_Helen_1895_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1431418}}, {"model": "metainfo.source", "pk": 18173, "fields": {"orig_filename": "Adolph_Karl_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417947}}, {"model": "metainfo.source", "pk": 18174, "fields": {"orig_filename": "Adrian-Dussek_Eduard_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417949}}, {"model": "metainfo.source", "pk": 18175, "fields": {"orig_filename": "Adrian_Karl_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417948}}, {"model": "metainfo.source", "pk": 18176, "fields": {"orig_filename": "Adrowitzer_Alfred_1916_1982.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1438806}}, {"model": "metainfo.source", "pk": 18177, "fields": {"orig_filename": "Ady_Andreas_1877_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417950}}, {"model": "metainfo.source", "pk": 18178, "fields": {"orig_filename": "Aehrenthal_Aloys_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8f.", "author": "", "orig_id": 1417951}}, {"model": "metainfo.source", "pk": 18179, "fields": {"orig_filename": "Aelschker_Edmund_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417952}}, {"model": "metainfo.source", "pk": 18180, "fields": {"orig_filename": "Afritsch_Anton_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417953}}, {"model": "metainfo.source", "pk": 18181, "fields": {"orig_filename": "Aglietti_Francesco_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417954}}, {"model": "metainfo.source", "pk": 18182, "fields": {"orig_filename": "Aglio_Agostino_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417955}}, {"model": "metainfo.source", "pk": 18183, "fields": {"orig_filename": "Agnoletto_Angelo_1743_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418029}}, {"model": "metainfo.source", "pk": 18184, "fields": {"orig_filename": "Agricola_Karl_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418030}}, {"model": "metainfo.source", "pk": 18185, "fields": {"orig_filename": "Ahna_Eleonore_1838_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418031}}, {"model": "metainfo.source", "pk": 18186, "fields": {"orig_filename": "Ahna_Heinrich_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418032}}, {"model": "metainfo.source", "pk": 18187, "fields": {"orig_filename": "Ahrer_Jacob_1888_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447275}}, {"model": "metainfo.source", "pk": 18188, "fields": {"orig_filename": "Aichelberg_Ludwig_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418033}}, {"model": "metainfo.source", "pk": 18189, "fields": {"orig_filename": "Aichelburg-Labia_Leopold_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418035}}, {"model": "metainfo.source", "pk": 18190, "fields": {"orig_filename": "Aichelburg_Eugen_1862_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418034}}, {"model": "metainfo.source", "pk": 18191, "fields": {"orig_filename": "Aichen_Josef_1745_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418036}}, {"model": "metainfo.source", "pk": 18192, "fields": {"orig_filename": "Aicher_Anton_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418037}}, {"model": "metainfo.source", "pk": 18193, "fields": {"orig_filename": "Aichhorn_Sigmund_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2254324}}, {"model": "metainfo.source", "pk": 18194, "fields": {"orig_filename": "Aichinger_Hermann_1885_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438873}}, {"model": "metainfo.source", "pk": 18195, "fields": {"orig_filename": "Aichinger_Hermann_1917_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438876}}, {"model": "metainfo.source", "pk": 18196, "fields": {"orig_filename": "Aichinger_Johann-Ev_1805_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418038}}, {"model": "metainfo.source", "pk": 18197, "fields": {"orig_filename": "Aichner_Simon_1818_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418039}}, {"model": "metainfo.source", "pk": 18198, "fields": {"orig_filename": "Aigner_Franz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10f.", "author": "", "orig_id": 1418040}}, {"model": "metainfo.source", "pk": 18199, "fields": {"orig_filename": "Aigner_Josef-Matthias_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418041}}, {"model": "metainfo.source", "pk": 18200, "fields": {"orig_filename": "Aigner_Michael_1805_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418042}}, {"model": "metainfo.source", "pk": 18201, "fields": {"orig_filename": "Ainhauser_Maria-Alberta-Eugenia_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1469933}}, {"model": "metainfo.source", "pk": 18202, "fields": {"orig_filename": "Ainmiller_Heinrich_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418043}}, {"model": "metainfo.source", "pk": 18203, "fields": {"orig_filename": "Ajdukiewicz_Siegmund_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418044}}, {"model": "metainfo.source", "pk": 18204, "fields": {"orig_filename": "Ajdukiewicz_Thaddaeus_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418045}}, {"model": "metainfo.source", "pk": 18205, "fields": {"orig_filename": "Albach_Joseph-Stanislaus_1795_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418046}}, {"model": "metainfo.source", "pk": 18206, "fields": {"orig_filename": "Albach_Julius_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418047}}, {"model": "metainfo.source", "pk": 18207, "fields": {"orig_filename": "Alber-Glanstaetten_August_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11f.", "author": "", "orig_id": 1418048}}, {"model": "metainfo.source", "pk": 18208, "fields": {"orig_filename": "Albertolli_Giocondo_1742_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418128}}, {"model": "metainfo.source", "pk": 18209, "fields": {"orig_filename": "Albert_August_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418049}}, {"model": "metainfo.source", "pk": 18210, "fields": {"orig_filename": "Albert_Eduard_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418050}}, {"model": "metainfo.source", "pk": 18211, "fields": {"orig_filename": "Albert_Michael_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418051}}, {"model": "metainfo.source", "pk": 18212, "fields": {"orig_filename": "Albieri_Pavel_1861_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147985}}, {"model": "metainfo.source", "pk": 18213, "fields": {"orig_filename": "Tschermak-Seysenegg_Gustav_1836_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 484f.", "author": "", "orig_id": 1425768}}, {"model": "metainfo.source", "pk": 18214, "fields": {"orig_filename": "Tschernich_Franz-Rudolf_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 485f.", "author": "", "orig_id": 1868111}}, {"model": "metainfo.source", "pk": 18215, "fields": {"orig_filename": "Tschiderer-Gleifheim_Ernst_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 486f.", "author": "", "orig_id": 1425806}}, {"model": "metainfo.source", "pk": 18216, "fields": {"orig_filename": "Tschiderer-Gleifheim_Johann-Nepomuk_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 486f.", "author": "", "orig_id": 1425807}}, {"model": "metainfo.source", "pk": 18217, "fields": {"orig_filename": "Tschinkel_Anton_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 487", "author": "", "orig_id": 1449391}}, {"model": "metainfo.source", "pk": 18218, "fields": {"orig_filename": "Tschinkel_August_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 487f.", "author": "", "orig_id": 1449390}}, {"model": "metainfo.source", "pk": 18219, "fields": {"orig_filename": "Tschinkel_Emanuel_1814_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488", "author": "", "orig_id": 1425811}}, {"model": "metainfo.source", "pk": 18220, "fields": {"orig_filename": "Tschinkel_Hans_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488f.", "author": "", "orig_id": 1445281}}, {"model": "metainfo.source", "pk": 18221, "fields": {"orig_filename": "Tschinkel_Theodor_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488", "author": "", "orig_id": 2298522}}, {"model": "metainfo.source", "pk": 18222, "fields": {"orig_filename": "Tschinkel_Wilhelm_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 489", "author": "", "orig_id": 2292498}}, {"model": "metainfo.source", "pk": 18223, "fields": {"orig_filename": "Tschoell_Johann-Valentin_1749_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 489f.", "author": "", "orig_id": 1425813}}, {"model": "metainfo.source", "pk": 18224, "fields": {"orig_filename": "Tschoepe_Emanuel_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 490f.", "author": "", "orig_id": 1425814}}, {"model": "metainfo.source", "pk": 18225, "fields": {"orig_filename": "Tschofenig_Gisela_1917_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 491", "author": "", "orig_id": 1425818}}, {"model": "metainfo.source", "pk": 18226, "fields": {"orig_filename": "Tschudi_Hugo_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 491f.", "author": "", "orig_id": 1425855}}, {"model": "metainfo.source", "pk": 18227, "fields": {"orig_filename": "Tschudi_Johann-Jakob_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 492f.", "author": "", "orig_id": 1425858}}, {"model": "metainfo.source", "pk": 18228, "fields": {"orig_filename": "Tschuggmall_Christian-Josef_1785_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 493f.", "author": "", "orig_id": 1425860}}, {"model": "metainfo.source", "pk": 18229, "fields": {"orig_filename": "Tschulik_Emanuel-Louis_1819_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 493f.", "author": "", "orig_id": 1425863}}, {"model": "metainfo.source", "pk": 18230, "fields": {"orig_filename": "Tschuppik_Friedrich_1816_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 494f.", "author": "", "orig_id": 2294062}}, {"model": "metainfo.source", "pk": 18231, "fields": {"orig_filename": "Tschuppik_Karl_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 495f.", "author": "", "orig_id": 1425864}}, {"model": "metainfo.source", "pk": 18232, "fields": {"orig_filename": "Tschurtschenthaler-Helmheim_Anton-Alois_1815_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 497", "author": "", "orig_id": 1425909}}, {"model": "metainfo.source", "pk": 18233, "fields": {"orig_filename": "Tschurtschenthaler-Helmheim_Heinrich_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 497f.", "author": "", "orig_id": 2264192}}, {"model": "metainfo.source", "pk": 18234, "fields": {"orig_filename": "Tschurtschenthaler_Johann_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 496", "author": "", "orig_id": 1425910}}, {"model": "metainfo.source", "pk": 18235, "fields": {"orig_filename": "Tschurtschenthaler_Paul_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 496f.", "author": "", "orig_id": 1425913}}, {"model": "metainfo.source", "pk": 18236, "fields": {"orig_filename": "Tschusi-Schmidhoffen_Viktor_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 498f.", "author": "", "orig_id": 1425916}}, {"model": "metainfo.source", "pk": 18237, "fields": {"orig_filename": "Tucek_Vincenc_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 499", "author": "", "orig_id": 1425953}}, {"model": "metainfo.source", "pk": 18238, "fields": {"orig_filename": "Tucny_Alois_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 499f.", "author": "", "orig_id": 2206927}}, {"model": "metainfo.source", "pk": 18239, "fields": {"orig_filename": "Tuczek_Anton_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 500", "author": "", "orig_id": 1455589}}, {"model": "metainfo.source", "pk": 18240, "fields": {"orig_filename": "Tuedoes_Istvan_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 500f.", "author": "", "orig_id": 1458424}}, {"model": "metainfo.source", "pk": 18241, "fields": {"orig_filename": "Tuerckheim-Altdorf_Friedrich-Rudolf_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 501f.", "author": "", "orig_id": 2264216}}, {"model": "metainfo.source", "pk": 18242, "fields": {"orig_filename": "Tuerck_Ludwig_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 501", "author": "", "orig_id": 1425957}}, {"model": "metainfo.source", "pk": 18243, "fields": {"orig_filename": "Tuerkel_Siegfried-Karl_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 504f.", "author": "", "orig_id": 1425475}}, {"model": "metainfo.source", "pk": 18244, "fields": {"orig_filename": "Tuerkheim-Geisslern_Ludwig-Johann-Nepomuk_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 505f.", "author": "", "orig_id": 1455594}}, {"model": "metainfo.source", "pk": 18245, "fields": {"orig_filename": "Tuerkheim_Ludwig_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 505f.", "author": "", "orig_id": 1425994}}, {"model": "metainfo.source", "pk": 18246, "fields": {"orig_filename": "Tuerk_Eduard_1852_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 402", "author": "", "orig_id": 1425962}}, {"model": "metainfo.source", "pk": 18247, "fields": {"orig_filename": "Tuerk_Johann-Baptist_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 502f.", "author": "", "orig_id": 1425987}}, {"model": "metainfo.source", "pk": 18248, "fields": {"orig_filename": "Tuerk_Karl_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 504", "author": "", "orig_id": 1425989}}, {"model": "metainfo.source", "pk": 18249, "fields": {"orig_filename": "Tuerk_Wilhelm_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 503f.", "author": "", "orig_id": 1425992}}, {"model": "metainfo.source", "pk": 18250, "fields": {"orig_filename": "Tuerr_Istvan_1825_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 506", "author": "", "orig_id": 1429094}}, {"model": "metainfo.source", "pk": 18251, "fields": {"orig_filename": "Tuka_Vojtech_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 506f.", "author": "", "orig_id": 1425998}}, {"model": "metainfo.source", "pk": 18252, "fields": {"orig_filename": "Tulka_Josef_1846_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 507f.", "author": "", "orig_id": 2167733}}, {"model": "metainfo.source", "pk": 18253, "fields": {"orig_filename": "Tullinger_Bertha_1861_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509", "author": "", "orig_id": 2293250}}, {"model": "metainfo.source", "pk": 18254, "fields": {"orig_filename": "Tullinger_Moritz_1866_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509", "author": "", "orig_id": 2269989}}, {"model": "metainfo.source", "pk": 18255, "fields": {"orig_filename": "Tullinger_Paula_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 508f.", "author": "", "orig_id": 1450315}}, {"model": "metainfo.source", "pk": 18256, "fields": {"orig_filename": "Tull_Oedoen_1870_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 508", "author": "", "orig_id": 1425999}}, {"model": "metainfo.source", "pk": 18257, "fields": {"orig_filename": "Tuma_Henrik_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509f.", "author": "", "orig_id": 1426003}}, {"model": "metainfo.source", "pk": 18258, "fields": {"orig_filename": "Tuma_Josef_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 510f.", "author": "", "orig_id": 1426027}}, {"model": "metainfo.source", "pk": 18259, "fields": {"orig_filename": "Tuma_Karel_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 511f.", "author": "", "orig_id": 1426028}}, {"model": "metainfo.source", "pk": 18260, "fields": {"orig_filename": "Tumova_Marie_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 512", "author": "", "orig_id": 2293165}}, {"model": "metainfo.source", "pk": 18261, "fields": {"orig_filename": "Trapp_Werner_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 426f.", "author": "", "orig_id": 1456014}}, {"model": "metainfo.source", "pk": 18262, "fields": {"orig_filename": "Trassler_Adolph-Karl_1793_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1456087}}, {"model": "metainfo.source", "pk": 18263, "fields": {"orig_filename": "Trassler_Johann-Baptist_1787_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1426130}}, {"model": "metainfo.source", "pk": 18264, "fields": {"orig_filename": "Trassler_Joseph-Georg_1759_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1426131}}, {"model": "metainfo.source", "pk": 18265, "fields": {"orig_filename": "Trattinnick_Carl_1801_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 428f.", "author": "", "orig_id": 1456090}}, {"model": "metainfo.source", "pk": 18266, "fields": {"orig_filename": "Trattinnick_Leopold_1764_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 428f.", "author": "", "orig_id": 1426136}}, {"model": "metainfo.source", "pk": 18267, "fields": {"orig_filename": "Trattner-Karolyi-Karolypaty-Vasvar_Istvan_1794_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 2200824}}, {"model": "metainfo.source", "pk": 18268, "fields": {"orig_filename": "Trattner-Petroza_Janos-Tamas_1789_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 1458430}}, {"model": "metainfo.source", "pk": 18269, "fields": {"orig_filename": "Trattner-Petroza_Matyas_1745_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 2200701}}, {"model": "metainfo.source", "pk": 18270, "fields": {"orig_filename": "Traub_Hugo_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 431", "author": "", "orig_id": 2206758}}, {"model": "metainfo.source", "pk": 18271, "fields": {"orig_filename": "Traunfellner_Alois_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 431f.", "author": "", "orig_id": 1425576}}, {"model": "metainfo.source", "pk": 18272, "fields": {"orig_filename": "Traunsteiner_Joseph_1798_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 432f.", "author": "", "orig_id": 1447654}}, {"model": "metainfo.source", "pk": 18273, "fields": {"orig_filename": "Trausch_Joseph-Karl_1842_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433", "author": "", "orig_id": 2201126}}, {"model": "metainfo.source", "pk": 18274, "fields": {"orig_filename": "Trausch_Joseph_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433", "author": "", "orig_id": 1425612}}, {"model": "metainfo.source", "pk": 18275, "fields": {"orig_filename": "Trautenberger_Gustav-Gottlieb_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 434f.", "author": "", "orig_id": 1425619}}, {"model": "metainfo.source", "pk": 18276, "fields": {"orig_filename": "Trautmann_Leopold_1766_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 435", "author": "", "orig_id": 1425661}}, {"model": "metainfo.source", "pk": 18277, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Ferdinand_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 435f.", "author": "", "orig_id": 1425669}}, {"model": "metainfo.source", "pk": 18278, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Ferdinand_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 436f.", "author": "", "orig_id": 1425667}}, {"model": "metainfo.source", "pk": 18279, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Josef_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 437f.", "author": "", "orig_id": 1456083}}, {"model": "metainfo.source", "pk": 18280, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Joseph-Ferdinand_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 437", "author": "", "orig_id": 1425705}}, {"model": "metainfo.source", "pk": 18281, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Maria-Thaddaeus_1761_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 438", "author": "", "orig_id": 1425708}}, {"model": "metainfo.source", "pk": 18282, "fields": {"orig_filename": "Traut_Karl_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433f.", "author": "", "orig_id": 1425618}}, {"model": "metainfo.source", "pk": 18283, "fields": {"orig_filename": "Trauzl_Isidor_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 438f.", "author": "", "orig_id": 1425712}}, {"model": "metainfo.source", "pk": 18284, "fields": {"orig_filename": "Trau_Carl_1811_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429f.", "author": "", "orig_id": 1425482}}, {"model": "metainfo.source", "pk": 18285, "fields": {"orig_filename": "Trau_Franz_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 430", "author": "", "orig_id": 1425481}}, {"model": "metainfo.source", "pk": 18286, "fields": {"orig_filename": "Trau_Franz_1881_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 430f.", "author": "", "orig_id": 1453314}}, {"model": "metainfo.source", "pk": 18287, "fields": {"orig_filename": "Trcka_Anton-Josef_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 439f.", "author": "", "orig_id": 1425749}}, {"model": "metainfo.source", "pk": 18288, "fields": {"orig_filename": "Trebitsch-Lincoln_Ignatius-Timothy_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 442f.", "author": "", "orig_id": 1425791}}, {"model": "metainfo.source", "pk": 18289, "fields": {"orig_filename": "Trebitsch_Arthur_1880_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1425752}}, {"model": "metainfo.source", "pk": 18290, "fields": {"orig_filename": "Trebitsch_Leopold_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1414302}}, {"model": "metainfo.source", "pk": 18291, "fields": {"orig_filename": "Trebitsch_Nehemias_1779_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441", "author": "", "orig_id": 1425753}}, {"model": "metainfo.source", "pk": 18292, "fields": {"orig_filename": "Trebitsch_Oscar_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1453718}}, {"model": "metainfo.source", "pk": 18293, "fields": {"orig_filename": "Trebitsch_Rudolf_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441f.", "author": "", "orig_id": 1425755}}, {"model": "metainfo.source", "pk": 18294, "fields": {"orig_filename": "Trebitsch_Sigmund_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441", "author": "", "orig_id": 2286076}}, {"model": "metainfo.source", "pk": 18295, "fields": {"orig_filename": "Treffer_Georg_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 443f.", "author": "", "orig_id": 1425795}}, {"model": "metainfo.source", "pk": 18296, "fields": {"orig_filename": "Trefort_Agoston_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 444", "author": "", "orig_id": 1425880}}, {"model": "metainfo.source", "pk": 18297, "fields": {"orig_filename": "Treiber_Josef_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 444f.", "author": "", "orig_id": 1426138}}, {"model": "metainfo.source", "pk": 18298, "fields": {"orig_filename": "Treitl_Josef_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 445f.", "author": "", "orig_id": 1426146}}, {"model": "metainfo.source", "pk": 18299, "fields": {"orig_filename": "Treitschke_Georg-Friedrich_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 446f.", "author": "", "orig_id": 1426147}}, {"model": "metainfo.source", "pk": 18300, "fields": {"orig_filename": "Treitschke_Magdalena_1788_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 447", "author": "", "orig_id": 1456216}}, {"model": "metainfo.source", "pk": 18301, "fields": {"orig_filename": "Treitz_Vaclav_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 447f.", "author": "", "orig_id": 1447929}}, {"model": "metainfo.source", "pk": 18302, "fields": {"orig_filename": "Tremler_Karoline-Wilhelmine_1791_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 449", "author": "", "orig_id": 2279028}}, {"model": "metainfo.source", "pk": 18303, "fields": {"orig_filename": "Tremler_Wenzel_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 448f.", "author": "", "orig_id": 1425442}}, {"model": "metainfo.source", "pk": 18304, "fields": {"orig_filename": "Treml_Friedrich_1816_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 448", "author": "", "orig_id": 1425440}}, {"model": "metainfo.source", "pk": 18305, "fields": {"orig_filename": "Tremmel_Ludwig_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 449f.", "author": "", "orig_id": 1450307}}, {"model": "metainfo.source", "pk": 18306, "fields": {"orig_filename": "Trenkler_Anton-Gustav_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 450", "author": "", "orig_id": 1425490}}, {"model": "metainfo.source", "pk": 18307, "fields": {"orig_filename": "Trenkwalder_Dominik_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 452f.", "author": "", "orig_id": 1425537}}, {"model": "metainfo.source", "pk": 18308, "fields": {"orig_filename": "Trenkwald_Hermann_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 450f.", "author": "", "orig_id": 1425493}}, {"model": "metainfo.source", "pk": 18309, "fields": {"orig_filename": "Trenkwald_Josef-Mathias_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 451f.", "author": "", "orig_id": 1425494}}, {"model": "metainfo.source", "pk": 18310, "fields": {"orig_filename": "Trentini_Albert_1878_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 453", "author": "", "orig_id": 1424334}}, {"model": "metainfo.source", "pk": 18311, "fields": {"orig_filename": "Trentsensky_Josef_1794_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454", "author": "", "orig_id": 1448566}}, {"model": "metainfo.source", "pk": 18312, "fields": {"orig_filename": "Trentsensky_Mathias_1790_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454", "author": "", "orig_id": 1425582}}, {"model": "metainfo.source", "pk": 18313, "fields": {"orig_filename": "Treo_Dragotin_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454f.", "author": "", "orig_id": 2169212}}, {"model": "metainfo.source", "pk": 18314, "fields": {"orig_filename": "Treo_Wilhelm_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 455", "author": "", "orig_id": 2169408}}, {"model": "metainfo.source", "pk": 18315, "fields": {"orig_filename": "Tresic-Pavicic_Ante_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 455f.", "author": "", "orig_id": 2047431}}, {"model": "metainfo.source", "pk": 18316, "fields": {"orig_filename": "Treuinfels_Leo-Maria_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 456f.", "author": "", "orig_id": 1425674}}, {"model": "metainfo.source", "pk": 18317, "fields": {"orig_filename": "Treumann_Karl_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 457f.", "author": "", "orig_id": 1425676}}, {"model": "metainfo.source", "pk": 18318, "fields": {"orig_filename": "Treumann_Louis_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 458f.", "author": "", "orig_id": 1425677}}, {"model": "metainfo.source", "pk": 18319, "fields": {"orig_filename": "Treusch-Buttlar-Brandenfels_Oskar_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 459", "author": "", "orig_id": 1425678}}, {"model": "metainfo.source", "pk": 18320, "fields": {"orig_filename": "Treval_Emil_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 459f.", "author": "", "orig_id": 2174359}}, {"model": "metainfo.source", "pk": 18321, "fields": {"orig_filename": "Treves_Emilio_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 460f.", "author": "", "orig_id": 1456353}}, {"model": "metainfo.source", "pk": 18322, "fields": {"orig_filename": "Treves_Sabato-Graziadio_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461", "author": "", "orig_id": 1456359}}, {"model": "metainfo.source", "pk": 18323, "fields": {"orig_filename": "Trevisanato_Giuseppe-Luigi_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461", "author": "", "orig_id": 1425719}}, {"model": "metainfo.source", "pk": 18324, "fields": {"orig_filename": "Triebensee_Henriette_1819_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 462f.", "author": "", "orig_id": 2298411}}, {"model": "metainfo.source", "pk": 18325, "fields": {"orig_filename": "Triebensee_Josef_1772_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 462f.", "author": "", "orig_id": 1456419}}, {"model": "metainfo.source", "pk": 18326, "fields": {"orig_filename": "Trieb_Siegfried-Karl_1899_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461f.", "author": "", "orig_id": 1447848}}, {"model": "metainfo.source", "pk": 18327, "fields": {"orig_filename": "Trientl_Adolf_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463", "author": "", "orig_id": 1425842}}, {"model": "metainfo.source", "pk": 18328, "fields": {"orig_filename": "Trientl_Tobias_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463", "author": "", "orig_id": 1425843}}, {"model": "metainfo.source", "pk": 18329, "fields": {"orig_filename": "Triesnecker_Franz-De-Paula_1745_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463f.", "author": "", "orig_id": 1425848}}, {"model": "metainfo.source", "pk": 18330, "fields": {"orig_filename": "Triulzi_Anton_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 464f.", "author": "", "orig_id": 1456429}}, {"model": "metainfo.source", "pk": 18331, "fields": {"orig_filename": "Triulzi_Anton_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 465", "author": "", "orig_id": 1425895}}, {"model": "metainfo.source", "pk": 18332, "fields": {"orig_filename": "Trnina_Milka_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 465f.", "author": "", "orig_id": 1434342}}, {"model": "metainfo.source", "pk": 18333, "fields": {"orig_filename": "Trnka-Laberon_Ottokar_1871_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 466f.", "author": "", "orig_id": 1425903}}, {"model": "metainfo.source", "pk": 18334, "fields": {"orig_filename": "Trnka_Frantisek-Dobromysl_1798_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 466", "author": "", "orig_id": 2174389}}, {"model": "metainfo.source", "pk": 18335, "fields": {"orig_filename": "Trnobransky_Vaclav-Vilem_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 467", "author": "", "orig_id": 2174401}}, {"model": "metainfo.source", "pk": 18336, "fields": {"orig_filename": "Trojan-Bylanfeld_Frantisek-Bretislav_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 468f.", "author": "", "orig_id": 1455400}}, {"model": "metainfo.source", "pk": 18337, "fields": {"orig_filename": "Trojan_Alois-Pravoslav_1815_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 467f.", "author": "", "orig_id": 1426057}}, {"model": "metainfo.source", "pk": 18338, "fields": {"orig_filename": "Troll-Borostyani_Irma_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 469f.", "author": "", "orig_id": 1426062}}, {"model": "metainfo.source", "pk": 18339, "fields": {"orig_filename": "Trollmann-Lovcenberg_Ignaz_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 470", "author": "", "orig_id": 1426097}}, {"model": "metainfo.source", "pk": 18340, "fields": {"orig_filename": "Tropp_Neumann_1873_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 470f.", "author": "", "orig_id": 2202201}}, {"model": "metainfo.source", "pk": 18341, "fields": {"orig_filename": "Tropsch_Rudolf_1870_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 471f.", "author": "", "orig_id": 1426101}}, {"model": "metainfo.source", "pk": 18342, "fields": {"orig_filename": "Trops_Stjepan_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 471", "author": "", "orig_id": 1448671}}, {"model": "metainfo.source", "pk": 18343, "fields": {"orig_filename": "Troskow_Rudolf_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 472", "author": "", "orig_id": 1423808}}, {"model": "metainfo.source", "pk": 18344, "fields": {"orig_filename": "Trost_Johann_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 472f.", "author": "", "orig_id": 1426104}}, {"model": "metainfo.source", "pk": 18345, "fields": {"orig_filename": "Trotter_Camillo_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 473", "author": "", "orig_id": 1426108}}, {"model": "metainfo.source", "pk": 18346, "fields": {"orig_filename": "Trstenjak_Anton_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 473f.", "author": "", "orig_id": 1425452}}, {"model": "metainfo.source", "pk": 18347, "fields": {"orig_filename": "Trstenjak_Davorin_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 474", "author": "", "orig_id": 1425453}}, {"model": "metainfo.source", "pk": 18348, "fields": {"orig_filename": "Trstenjak_Davorin_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 474f.", "author": "", "orig_id": 2169524}}, {"model": "metainfo.source", "pk": 18349, "fields": {"orig_filename": "Trubetzkoy_Nikolaj-Sergeevic_1890_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 475f.", "author": "", "orig_id": 1425456}}, {"model": "metainfo.source", "pk": 18350, "fields": {"orig_filename": "Truchsess-Waldburg-Zeil_Maria-Walburga_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 476", "author": "", "orig_id": 1425458}}, {"model": "metainfo.source", "pk": 18351, "fields": {"orig_filename": "Truhlar_Antonin_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 476f.", "author": "", "orig_id": 1425631}}, {"model": "metainfo.source", "pk": 18352, "fields": {"orig_filename": "Truhlar_Josef_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 477f.", "author": "", "orig_id": 1425632}}, {"model": "metainfo.source", "pk": 18353, "fields": {"orig_filename": "Trumbic_Ante_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 478", "author": "", "orig_id": 1425633}}, {"model": "metainfo.source", "pk": 18354, "fields": {"orig_filename": "Truxa_Celestina_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 478f.", "author": "", "orig_id": 1425640}}, {"model": "metainfo.source", "pk": 18355, "fields": {"orig_filename": "Truxa_Hans-Maria_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 479f.", "author": "", "orig_id": 1425641}}, {"model": "metainfo.source", "pk": 18356, "fields": {"orig_filename": "Trylovskyj_Kyrylo_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 480", "author": "", "orig_id": 1425643}}, {"model": "metainfo.source", "pk": 18357, "fields": {"orig_filename": "Tschabuschnigg_Adolf-Ignatz_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 480f.", "author": "", "orig_id": 1425683}}, {"model": "metainfo.source", "pk": 18358, "fields": {"orig_filename": "Tschager_Josef_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 481f.", "author": "", "orig_id": 1425685}}, {"model": "metainfo.source", "pk": 18359, "fields": {"orig_filename": "Tschallener_Johann-Nikolaus_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 482", "author": "", "orig_id": 1425687}}, {"model": "metainfo.source", "pk": 18360, "fields": {"orig_filename": "Tschampa_Franziska_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 482f.", "author": "", "orig_id": 1455528}}, {"model": "metainfo.source", "pk": 18361, "fields": {"orig_filename": "Tschapeck_Hippolyt_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 483", "author": "", "orig_id": 1468335}}, {"model": "metainfo.source", "pk": 18362, "fields": {"orig_filename": "Tschebull_Anton_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 483f.", "author": "", "orig_id": 1825316}}, {"model": "metainfo.source", "pk": 18363, "fields": {"orig_filename": "Toepper_Andreas_1786_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 369f.", "author": "", "orig_id": 1423699}}, {"model": "metainfo.source", "pk": 18364, "fields": {"orig_filename": "Toerley-Csantaver_Jozsef_1858_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 370", "author": "", "orig_id": 2195987}}, {"model": "metainfo.source", "pk": 18365, "fields": {"orig_filename": "Toeroek-Csaford-Jobbahaza_Janos_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 372ff.", "author": "", "orig_id": 1423733}}, {"model": "metainfo.source", "pk": 18366, "fields": {"orig_filename": "Toeroek-Nemescso_Ignac_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 373", "author": "", "orig_id": 1456066}}, {"model": "metainfo.source", "pk": 18367, "fields": {"orig_filename": "Toeroek-Ponor_Aurel_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 373f.", "author": "", "orig_id": 1423730}}, {"model": "metainfo.source", "pk": 18368, "fields": {"orig_filename": "Toeroek_Gyula_1888_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 370f.", "author": "", "orig_id": 2196008}}, {"model": "metainfo.source", "pk": 18369, "fields": {"orig_filename": "Toeroek_Lajos_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 371f.", "author": "", "orig_id": 1454773}}, {"model": "metainfo.source", "pk": 18370, "fields": {"orig_filename": "Toeroek_Pal_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 372", "author": "", "orig_id": 1423737}}, {"model": "metainfo.source", "pk": 18371, "fields": {"orig_filename": "Toery_Emil_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374", "author": "", "orig_id": 1458609}}, {"model": "metainfo.source", "pk": 18372, "fields": {"orig_filename": "Toery_Gusztav_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374", "author": "", "orig_id": 1423739}}, {"model": "metainfo.source", "pk": 18373, "fields": {"orig_filename": "Tofan_George_1880_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374f.", "author": "", "orig_id": 1423740}}, {"model": "metainfo.source", "pk": 18374, "fields": {"orig_filename": "Toggenburg_Georg-Otto_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 375f.", "author": "", "orig_id": 1423776}}, {"model": "metainfo.source", "pk": 18375, "fields": {"orig_filename": "Toldt_Carl_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 376", "author": "", "orig_id": 1423783}}, {"model": "metainfo.source", "pk": 18376, "fields": {"orig_filename": "Toldy_Ferenc_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 376f.", "author": "", "orig_id": 1423784}}, {"model": "metainfo.source", "pk": 18377, "fields": {"orig_filename": "Tollinger_Johann_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 377f.", "author": "", "orig_id": 1423834}}, {"model": "metainfo.source", "pk": 18378, "fields": {"orig_filename": "Tolloczko_Stanislaw-Karol_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 378f.", "author": "", "orig_id": 2239184}}, {"model": "metainfo.source", "pk": 18379, "fields": {"orig_filename": "Tolman_Bretislav_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 379", "author": "", "orig_id": 2206609}}, {"model": "metainfo.source", "pk": 18380, "fields": {"orig_filename": "Tolnai_Lajos_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 379f.", "author": "", "orig_id": 2202613}}, {"model": "metainfo.source", "pk": 18381, "fields": {"orig_filename": "Tolnai_Simon_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 380f.", "author": "", "orig_id": 1454771}}, {"model": "metainfo.source", "pk": 18382, "fields": {"orig_filename": "Tolomei_Giampaolo_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381", "author": "", "orig_id": 1456146}}, {"model": "metainfo.source", "pk": 18383, "fields": {"orig_filename": "Toman_Aleksander_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381f.", "author": "", "orig_id": 2168393}}, {"model": "metainfo.source", "pk": 18384, "fields": {"orig_filename": "Toman_Hugo_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 382f.", "author": "", "orig_id": 1423839}}, {"model": "metainfo.source", "pk": 18385, "fields": {"orig_filename": "Toman_Josipina_1833_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 383", "author": "", "orig_id": 1423840}}, {"model": "metainfo.source", "pk": 18386, "fields": {"orig_filename": "Toman_Karel_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 383f.", "author": "", "orig_id": 1444353}}, {"model": "metainfo.source", "pk": 18387, "fields": {"orig_filename": "Toman_Lovro_1827_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 384f.", "author": "", "orig_id": 1423841}}, {"model": "metainfo.source", "pk": 18388, "fields": {"orig_filename": "Tomaschek-Stradowa_Johann-Adolf_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 387f.", "author": "", "orig_id": 1423939}}, {"model": "metainfo.source", "pk": 18389, "fields": {"orig_filename": "Tomaschek_Anton_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 358", "author": "", "orig_id": 1442935}}, {"model": "metainfo.source", "pk": 18390, "fields": {"orig_filename": "Tomaschek_Ignaz_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 385f.", "author": "", "orig_id": 1888528}}, {"model": "metainfo.source", "pk": 18391, "fields": {"orig_filename": "Tomaschek_Karl_1828_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 386f.", "author": "", "orig_id": 1423895}}, {"model": "metainfo.source", "pk": 18392, "fields": {"orig_filename": "Tomaschek_Wilhelm_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 387", "author": "", "orig_id": 1423457}}, {"model": "metainfo.source", "pk": 18393, "fields": {"orig_filename": "Tomasek_Frantisek_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 388", "author": "", "orig_id": 1423459}}, {"model": "metainfo.source", "pk": 18394, "fields": {"orig_filename": "Tomasek_Vaclav-Jan_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 388f.", "author": "", "orig_id": 1423894}}, {"model": "metainfo.source", "pk": 18395, "fields": {"orig_filename": "Tomaselli_Carl_1809_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 389f.", "author": "", "orig_id": 1447920}}, {"model": "metainfo.source", "pk": 18396, "fields": {"orig_filename": "Tomaselli_Carl_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390", "author": "", "orig_id": 2297827}}, {"model": "metainfo.source", "pk": 18397, "fields": {"orig_filename": "Tomaselli_Franz_1801_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390f.", "author": "", "orig_id": 1423485}}, {"model": "metainfo.source", "pk": 18398, "fields": {"orig_filename": "Tomaselli_Giuseppe_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391", "author": "", "orig_id": 1423487}}, {"model": "metainfo.source", "pk": 18399, "fields": {"orig_filename": "Tomaselli_Ignaz_1812_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390f.", "author": "", "orig_id": 1423486}}, {"model": "metainfo.source", "pk": 18400, "fields": {"orig_filename": "Tomaselli_Katharina_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391", "author": "", "orig_id": 1423489}}, {"model": "metainfo.source", "pk": 18401, "fields": {"orig_filename": "Tomasic_Nikola_1864_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391f.", "author": "", "orig_id": 1423535}}, {"model": "metainfo.source", "pk": 18402, "fields": {"orig_filename": "Tomasini_Alois-Basil-Nikolaus_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 392f.", "author": "", "orig_id": 1823286}}, {"model": "metainfo.source", "pk": 18403, "fields": {"orig_filename": "Tomasini_Anton-Edmund_1775_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 392f.", "author": "", "orig_id": 1823272}}, {"model": "metainfo.source", "pk": 18404, "fields": {"orig_filename": "Tomassich_Franz-Xaver_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 393", "author": "", "orig_id": 1423534}}, {"model": "metainfo.source", "pk": 18405, "fields": {"orig_filename": "Tomaszczuk_Konstantin_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 393f.", "author": "", "orig_id": 1423555}}, {"model": "metainfo.source", "pk": 18406, "fields": {"orig_filename": "Toma_Matthias-Rudolf_1792_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381", "author": "", "orig_id": 1424146}}, {"model": "metainfo.source", "pk": 18407, "fields": {"orig_filename": "Tomcsanyi-Tomcsiny_Adam_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 394", "author": "", "orig_id": 1456262}}, {"model": "metainfo.source", "pk": 18408, "fields": {"orig_filename": "Tomec_Heinrich_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 394f.", "author": "", "orig_id": 1423558}}, {"model": "metainfo.source", "pk": 18409, "fields": {"orig_filename": "Tomek_Wacslaw-Wladiwoj_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 395f.", "author": "", "orig_id": 1423588}}, {"model": "metainfo.source", "pk": 18410, "fields": {"orig_filename": "Tomicek_Jan-Slavomir_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 396", "author": "", "orig_id": 1456267}}, {"model": "metainfo.source", "pk": 18411, "fields": {"orig_filename": "Tominc_Jozef-Jakob_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 396f.", "author": "", "orig_id": 1978736}}, {"model": "metainfo.source", "pk": 18412, "fields": {"orig_filename": "Tominsek_Fran_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 2168570}}, {"model": "metainfo.source", "pk": 18413, "fields": {"orig_filename": "Tominz_Alfredo_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 1456270}}, {"model": "metainfo.source", "pk": 18414, "fields": {"orig_filename": "Tominz_Augusto_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 1456271}}, {"model": "metainfo.source", "pk": 18415, "fields": {"orig_filename": "Tommaseo_Niccolo_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397f.", "author": "", "orig_id": 1423627}}, {"model": "metainfo.source", "pk": 18416, "fields": {"orig_filename": "Tommasini_Muzio-Giuseppe_1794_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 399f.", "author": "", "orig_id": 1456414}}, {"model": "metainfo.source", "pk": 18417, "fields": {"orig_filename": "Tommasi_Natale_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 398f.", "author": "", "orig_id": 1423527}}, {"model": "metainfo.source", "pk": 18418, "fields": {"orig_filename": "Tompa_Mihaly_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 400f.", "author": "", "orig_id": 1423664}}, {"model": "metainfo.source", "pk": 18419, "fields": {"orig_filename": "Tomsa_Frantisek-Bohumil_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 401", "author": "", "orig_id": 1456416}}, {"model": "metainfo.source", "pk": 18420, "fields": {"orig_filename": "Tomschik_Josef_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 401f.", "author": "", "orig_id": 1423788}}, {"model": "metainfo.source", "pk": 18421, "fields": {"orig_filename": "Tomsic_Anton_1842_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 402f.", "author": "", "orig_id": 1456418}}, {"model": "metainfo.source", "pk": 18422, "fields": {"orig_filename": "Tomssa_Sylvester_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 403", "author": "", "orig_id": 2199818}}, {"model": "metainfo.source", "pk": 18423, "fields": {"orig_filename": "Tonkli_Josip_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 403f.", "author": "", "orig_id": 1423846}}, {"model": "metainfo.source", "pk": 18424, "fields": {"orig_filename": "Tonkli_Nikolaj_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 404", "author": "", "orig_id": 2168757}}, {"model": "metainfo.source", "pk": 18425, "fields": {"orig_filename": "Tonner_Emanuel_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 404f.", "author": "", "orig_id": 1423848}}, {"model": "metainfo.source", "pk": 18426, "fields": {"orig_filename": "Topic_Frantisek_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405", "author": "", "orig_id": 2206716}}, {"model": "metainfo.source", "pk": 18427, "fields": {"orig_filename": "Topic_Jaroslav_1886_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405", "author": "", "orig_id": 2297892}}, {"model": "metainfo.source", "pk": 18428, "fields": {"orig_filename": "Topitz_Anton-Maria_1887_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 406", "author": "", "orig_id": 1450247}}, {"model": "metainfo.source", "pk": 18429, "fields": {"orig_filename": "Topitz_Anton_1857_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405f.", "author": "", "orig_id": 1423856}}, {"model": "metainfo.source", "pk": 18430, "fields": {"orig_filename": "Torbar_Josip_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 406f.", "author": "", "orig_id": 1423858}}, {"model": "metainfo.source", "pk": 18431, "fields": {"orig_filename": "Torggler_Erich_1899_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 407f.", "author": "", "orig_id": 1423899}}, {"model": "metainfo.source", "pk": 18432, "fields": {"orig_filename": "Torggler_Karl_1892_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 408", "author": "", "orig_id": 1423897}}, {"model": "metainfo.source", "pk": 18433, "fields": {"orig_filename": "Torma-Csicsokeresztur_Karoly_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 408f.", "author": "", "orig_id": 1455388}}, {"model": "metainfo.source", "pk": 18434, "fields": {"orig_filename": "Torma-Csicsokeresztur_Zsofia_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 409", "author": "", "orig_id": 1423902}}, {"model": "metainfo.source", "pk": 18435, "fields": {"orig_filename": "Tormay-Nadudvar_Bela_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 410", "author": "", "orig_id": 1423903}}, {"model": "metainfo.source", "pk": 18436, "fields": {"orig_filename": "Tormay_Karoly_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 409f.", "author": "", "orig_id": 1455449}}, {"model": "metainfo.source", "pk": 18437, "fields": {"orig_filename": "Tornai_Gyula_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 410f.", "author": "", "orig_id": 1454772}}, {"model": "metainfo.source", "pk": 18438, "fields": {"orig_filename": "Tornquist_Alexander_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 411", "author": "", "orig_id": 1423906}}, {"model": "metainfo.source", "pk": 18439, "fields": {"orig_filename": "Tornyai_Janos_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 412", "author": "", "orig_id": 1423905}}, {"model": "metainfo.source", "pk": 18440, "fields": {"orig_filename": "Torosiewicz_Jozef_1784_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 413", "author": "", "orig_id": 2262700}}, {"model": "metainfo.source", "pk": 18441, "fields": {"orig_filename": "Torosiewicz_Teodor_1789_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 412f.", "author": "", "orig_id": 1455457}}, {"model": "metainfo.source", "pk": 18442, "fields": {"orig_filename": "Toth-Fehergyarmat_Tihamer_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 418f.", "author": "", "orig_id": 1425778}}, {"model": "metainfo.source", "pk": 18443, "fields": {"orig_filename": "Toth_Arpad_1886_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 413f.", "author": "", "orig_id": 2195965}}, {"model": "metainfo.source", "pk": 18444, "fields": {"orig_filename": "Toth_Bela_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 414", "author": "", "orig_id": 1423988}}, {"model": "metainfo.source", "pk": 18445, "fields": {"orig_filename": "Toth_Imre_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 414f.", "author": "", "orig_id": 1458519}}, {"model": "metainfo.source", "pk": 18446, "fields": {"orig_filename": "Toth_Jozsef_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 415", "author": "", "orig_id": 1455790}}, {"model": "metainfo.source", "pk": 18447, "fields": {"orig_filename": "Toth_Kalman_1831_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 415f.", "author": "", "orig_id": 1458524}}, {"model": "metainfo.source", "pk": 18448, "fields": {"orig_filename": "Toth_Laszlo_1869_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 416", "author": "", "orig_id": 1458525}}, {"model": "metainfo.source", "pk": 18449, "fields": {"orig_filename": "Toth_Loerinc_1814_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 416f.", "author": "", "orig_id": 1425745}}, {"model": "metainfo.source", "pk": 18450, "fields": {"orig_filename": "Toth_Samuel_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 417", "author": "", "orig_id": 1458528}}, {"model": "metainfo.source", "pk": 18451, "fields": {"orig_filename": "Toth_Victor_1846_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 417f.", "author": "", "orig_id": 1425779}}, {"model": "metainfo.source", "pk": 18452, "fields": {"orig_filename": "Toth_Zoltan_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 418", "author": "", "orig_id": 2195982}}, {"model": "metainfo.source", "pk": 18453, "fields": {"orig_filename": "Touaillon_Christine_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 419", "author": "", "orig_id": 1425787}}, {"model": "metainfo.source", "pk": 18454, "fields": {"orig_filename": "Toula_Franz_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 419f.", "author": "", "orig_id": 1425788}}, {"model": "metainfo.source", "pk": 18455, "fields": {"orig_filename": "Trabert_Wilhelm_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 420f.", "author": "", "orig_id": 1425828}}, {"model": "metainfo.source", "pk": 18456, "fields": {"orig_filename": "Traeger_Richard_1895_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 421", "author": "", "orig_id": 2170094}}, {"model": "metainfo.source", "pk": 18457, "fields": {"orig_filename": "Trakl_Georg_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 421ff.", "author": "", "orig_id": 1425921}}, {"model": "metainfo.source", "pk": 18458, "fields": {"orig_filename": "Trakl_Grete_1892_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 422f.", "author": "", "orig_id": 1425922}}, {"model": "metainfo.source", "pk": 18459, "fields": {"orig_filename": "Trampler_Richard_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 423", "author": "", "orig_id": 1425926}}, {"model": "metainfo.source", "pk": 18460, "fields": {"orig_filename": "Trampota_Jan_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 423f.", "author": "", "orig_id": 2166212}}, {"model": "metainfo.source", "pk": 18461, "fields": {"orig_filename": "Trampusch_Carl-Franz_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 424", "author": "", "orig_id": 1455958}}, {"model": "metainfo.source", "pk": 18462, "fields": {"orig_filename": "Trapp_August_1836_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 425", "author": "", "orig_id": 1456012}}, {"model": "metainfo.source", "pk": 18463, "fields": {"orig_filename": "Trapp_Georg_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 424f.", "author": "", "orig_id": 1426046}}, {"model": "metainfo.source", "pk": 18464, "fields": {"orig_filename": "Trapp_Hede_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 425f.", "author": "", "orig_id": 1426079}}, {"model": "metainfo.source", "pk": 18465, "fields": {"orig_filename": "Frigessi-Rattalma-Nobile_Arnoldo_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301248}}, {"model": "metainfo.source", "pk": 18466, "fields": {"orig_filename": "Fuchs_Hans-Maria_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1445636}}, {"model": "metainfo.source", "pk": 18467, "fields": {"orig_filename": "Fuchs_Patriz_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301462}}, {"model": "metainfo.source", "pk": 18468, "fields": {"orig_filename": "Fucik_Julius_1872_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1444491}}, {"model": "metainfo.source", "pk": 18469, "fields": {"orig_filename": "Gross_Anton_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297475}}, {"model": "metainfo.source", "pk": 18470, "fields": {"orig_filename": "Hatschek_Julius-Karl_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419709}}, {"model": "metainfo.source", "pk": 18471, "fields": {"orig_filename": "Hermann-Otavsky_Karel_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1451569}}, {"model": "metainfo.source", "pk": 18472, "fields": {"orig_filename": "Heyrovsky_Leopold_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1451357}}, {"model": "metainfo.source", "pk": 18473, "fields": {"orig_filename": "Hottner-Grefe_Anna_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1449623}}, {"model": "metainfo.source", "pk": 18474, "fields": {"orig_filename": "Keller_Alois_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301267}}, {"model": "metainfo.source", "pk": 18475, "fields": {"orig_filename": "Keller_Josef_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2299890}}, {"model": "metainfo.source", "pk": 18476, "fields": {"orig_filename": "Kotula_Boleslaus-Andreas_1849_1898.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301277}}, {"model": "metainfo.source", "pk": 18477, "fields": {"orig_filename": "Kraskovits_Guido_1881_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2299496}}, {"model": "metainfo.source", "pk": 18478, "fields": {"orig_filename": "Mitteregger_Josef_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1462939}}, {"model": "metainfo.source", "pk": 18479, "fields": {"orig_filename": "Moser_Michael_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1465992}}, {"model": "metainfo.source", "pk": 18480, "fields": {"orig_filename": "Pozzi_Victor_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1454702}}, {"model": "metainfo.source", "pk": 18481, "fields": {"orig_filename": "Sunjic_Marian-Ivo_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1435919}}, {"model": "metainfo.source", "pk": 18482, "fields": {"orig_filename": "Suran_Gabriel_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1435567}}, {"model": "metainfo.source", "pk": 18483, "fields": {"orig_filename": "Abendroth_Mira__.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2579863}}, {"model": "metainfo.source", "pk": 18484, "fields": {"orig_filename": "Adam_Ernest_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1431401}}, {"model": "metainfo.source", "pk": 18485, "fields": {"orig_filename": "Allinger_Isidor_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1450304}}, {"model": "metainfo.source", "pk": 18486, "fields": {"orig_filename": "Ambrosi_Francesco_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1467527}}, {"model": "metainfo.source", "pk": 18487, "fields": {"orig_filename": "Amon_Chrysostomus_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1470091}}, {"model": "metainfo.source", "pk": 18488, "fields": {"orig_filename": "Arigler_Altmann_1768_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1470202}}, {"model": "metainfo.source", "pk": 18489, "fields": {"orig_filename": "Arnleitner_Friedrich_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2132462}}, {"model": "metainfo.source", "pk": 18490, "fields": {"orig_filename": "Arnold_Wincenty_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2296428}}, {"model": "metainfo.source", "pk": 18491, "fields": {"orig_filename": "Attlmayr_Aloisius_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1469023}}, {"model": "metainfo.source", "pk": 18492, "fields": {"orig_filename": "Auchentaller_Josef-Maria_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2004015}}, {"model": "metainfo.source", "pk": 18493, "fields": {"orig_filename": "Augapfel_Julius_1892_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1468712}}, {"model": "metainfo.source", "pk": 18494, "fields": {"orig_filename": "Auspitz_Leopold_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2260846}}, {"model": "metainfo.source", "pk": 18495, "fields": {"orig_filename": "Babel-Fronsberg_Franz_1773_1841.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292583}}, {"model": "metainfo.source", "pk": 18496, "fields": {"orig_filename": "Babor_Konrad_1762_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1468716}}, {"model": "metainfo.source", "pk": 18497, "fields": {"orig_filename": "Bachrich_Melly_1899_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2004312}}, {"model": "metainfo.source", "pk": 18498, "fields": {"orig_filename": "Ballaban_Karol_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2293675}}, {"model": "metainfo.source", "pk": 18499, "fields": {"orig_filename": "Balsanek_Antonin_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292773}}, {"model": "metainfo.source", "pk": 18500, "fields": {"orig_filename": "Baracz_Roman_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292656}}, {"model": "metainfo.source", "pk": 18501, "fields": {"orig_filename": "Beck_Adolf_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2281104}}, {"model": "metainfo.source", "pk": 18502, "fields": {"orig_filename": "Bednarski_Adam_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292843}}, {"model": "metainfo.source", "pk": 18503, "fields": {"orig_filename": "Belgiojoso_Cristina_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1456433}}, {"model": "metainfo.source", "pk": 18504, "fields": {"orig_filename": "Benedek-Kisbaczon_Elek_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2265242}}, {"model": "metainfo.source", "pk": 18505, "fields": {"orig_filename": "Bergmann_Hilda_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414139}}, {"model": "metainfo.source", "pk": 18506, "fields": {"orig_filename": "Bernau_Friedrich_1849_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2047856}}, {"model": "metainfo.source", "pk": 18507, "fields": {"orig_filename": "Biedermann_Julius_1833_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1459894}}, {"model": "metainfo.source", "pk": 18508, "fields": {"orig_filename": "Bikeles_Gustaw_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292554}}, {"model": "metainfo.source", "pk": 18509, "fields": {"orig_filename": "Bilczewski_Jozef_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419142}}, {"model": "metainfo.source", "pk": 18510, "fields": {"orig_filename": "Bilimek_Dominik_1813_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419213}}, {"model": "metainfo.source", "pk": 18511, "fields": {"orig_filename": "Blodig_Karl_1820_1891.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419318}}, {"model": "metainfo.source", "pk": 18512, "fields": {"orig_filename": "Boehm_August_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2267393}}, {"model": "metainfo.source", "pk": 18513, "fields": {"orig_filename": "Boernstein_Heinrich_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417661}}, {"model": "metainfo.source", "pk": 18514, "fields": {"orig_filename": "Bratu_Traian_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2265247}}, {"model": "metainfo.source", "pk": 18515, "fields": {"orig_filename": "Brittinger_Christian_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420192}}, {"model": "metainfo.source", "pk": 18516, "fields": {"orig_filename": "Brunnthaler_Josef-Georg_1871_1914.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420435}}, {"model": "metainfo.source", "pk": 18517, "fields": {"orig_filename": "Buchmueller_Anton_1782_1850.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292577}}, {"model": "metainfo.source", "pk": 18518, "fields": {"orig_filename": "Burgerstein_Alfred_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420641}}, {"model": "metainfo.source", "pk": 18519, "fields": {"orig_filename": "Burgerstein_Joseph_1813_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2300203}}, {"model": "metainfo.source", "pk": 18520, "fields": {"orig_filename": "Burgerstein_Leo_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1827303}}, {"model": "metainfo.source", "pk": 18521, "fields": {"orig_filename": "Burger_Ernst_1915_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1475339}}, {"model": "metainfo.source", "pk": 18522, "fields": {"orig_filename": "Bykowski_Juliusz-Jan_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2296282}}, {"model": "metainfo.source", "pk": 18523, "fields": {"orig_filename": "Cieslar_Adolf_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2223856}}, {"model": "metainfo.source", "pk": 18524, "fields": {"orig_filename": "Costa_Etbin-Henrik_1832_1875.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297301}}, {"model": "metainfo.source", "pk": 18525, "fields": {"orig_filename": "Czerny_Carl_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417615}}, {"model": "metainfo.source", "pk": 18526, "fields": {"orig_filename": "Dafert-Sensel-Timmer_Otto_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2079331}}, {"model": "metainfo.source", "pk": 18527, "fields": {"orig_filename": "Daublebsky-Sterneck_Robert_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1876603}}, {"model": "metainfo.source", "pk": 18528, "fields": {"orig_filename": "Dombrowski-Paproz-Kruserevice_Raoul_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2300357}}, {"model": "metainfo.source", "pk": 18529, "fields": {"orig_filename": "Fahrbach_Friedrich_1809_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2224858}}, {"model": "metainfo.source", "pk": 18530, "fields": {"orig_filename": "Fahrbach_Philipp_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1446107}}, {"model": "metainfo.source", "pk": 18531, "fields": {"orig_filename": "Fellner_Ferdinand-Iii_1872_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2295757}}, {"model": "metainfo.source", "pk": 18532, "fields": {"orig_filename": "Fischer_Leopoldine_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301445}}, {"model": "metainfo.source", "pk": 18533, "fields": {"orig_filename": "Fischer_Paul_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297369}}, {"model": "metainfo.source", "pk": 18534, "fields": {"orig_filename": "Fleischmann_Johann-Baptist_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2302168}}, {"model": "metainfo.source", "pk": 18535, "fields": {"orig_filename": "Fraenkel-Hahn_Louise_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1444776}}, {"model": "metainfo.source", "pk": 18536, "fields": {"orig_filename": "Friemel_Rudolf_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1469499}}, {"model": "metainfo.source", "pk": 18537, "fields": {"orig_filename": "Friese-Skuhra_Ernst-Robert_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2266072}}, {"model": "metainfo.source", "pk": 18538, "fields": {"orig_filename": "Tepa_Franciszek-Tomasz_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 250f.", "author": "", "orig_id": 1447985}}, {"model": "metainfo.source", "pk": 18539, "fields": {"orig_filename": "data/staribacher/staribacher_Personenliste_ms.csv", "indexed": false, "pubinfo": "File sent by Barbara Krautgartner Sep 27 2016", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 18540, "fields": {"orig_filename": "000", "indexed": false, "pubinfo": "", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 18541, "fields": {"orig_filename": "", "indexed": false, "pubinfo": "", "author": "", "orig_id": null}}, {"model": "metainfo.text", "pk": 12, "fields": {"kind": 2, "text": "seit 1992: Primorsko-goranska \u017eup.; a/Golf v. Rijeka, NO-Istrien;", "source": 1}}, {"model": "metainfo.text", "pk": 14, "fields": {"kind": 2, "text": "seit 1992: Primorsko-goranska \u017eup.; a/Golf v. Rijeka, NO-Istrien;", "source": 1}}, {"model": "metainfo.text", "pk": 59, "fields": {"kind": 2, "text": "= srez, seit 1992: Zagreba\u010dka \u017eup.; a/Save;", "source": 1}}, {"model": "metainfo.text", "pk": 173, "fields": {"kind": 2, "text": "(lt. Atl.'99 Star\u00e1 Dl. V. nicht mehr ausgewiesen), okr. Klatovy; ca. 4 km ssw Su\u0161ice, ca. 28 km ss\u00f6 Klatovy; [vgl. Biogr. \"Schell, Karl\"]", "source": 1}}, {"model": "metainfo.text", "pk": 181, "fields": {"kind": 2, "text": "= seit 1872/73: Zus.schl. v. Pest, Ofen/Buda u. Altofen/\u00d3buda;", "source": 1}}, {"model": "metainfo.text", "pk": 654, "fields": {"kind": 2, "text": "lt.K.Ku\u010da (tsch.) Umbenng 1921, 1956 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XX - Osta\u0161ov\"; ca. 3 km w. Liberec (Zentrum), a/\u00e4u\u00dfersten W-Rand der Stadt;", "source": 1}}, {"model": "metainfo.text", "pk": 784, "fields": {"kind": 2, "text": "= KG (2001: 1021 Einw.), Gem. Steindorf am Ossiacher See [Zusatz seit 1986], GerBez. Feldkirchen; 3,5 km wsw Steindorf, a/N-Ufer d. Ossiacher Sees (gg.\u00fcber Ort/Gem. u. Stift Ossiach a/d S-Seite des Sees: urspr. Gem. Glanhofen - 1894 von Steindf. abgetrennt u. in Ossiach umbenannt); [betr. Biogr. \"Dumba, Konst. Theo.\", gest. 1947]", "source": 1}}, {"model": "metainfo.text", "pk": 928, "fields": {"kind": 2, "text": "= jude\u0163; St. i. n\u00f6rdl. (rum\u00e4n.) Moldau;", "source": 1}}, {"model": "metainfo.text", "pk": 962, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 964, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 969, "fields": {"kind": 2, "text": "okr. N\u00e1chod; ca. 22 km n\u00f6 N\u00e1chod;", "source": 1}}, {"model": "metainfo.text", "pk": 971, "fields": {"kind": 2, "text": "okr. N\u00e1chod; ca. 22 km n\u00f6 N\u00e1chod;", "source": 1}}, {"model": "metainfo.text", "pk": 1011, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 1013, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 1017, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen;", "source": 1}}, {"model": "metainfo.text", "pk": 1029, "fields": {"kind": 2, "text": "obec u. okr. Hradec Kr\u00e1lov\u00e9; ca. 5 km ssw Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 1054, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; [betr. Biogr. \"Plaseller, Josef\", geb. 1812]", "source": 1}}, {"model": "metainfo.text", "pk": 1056, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen;", "source": 1}}, {"model": "metainfo.text", "pk": 1064, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1090, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1092, "fields": {"kind": 2, "text": "(seit 1990) St.Bez. (m\u011bst.obvod) Brno-st\u0159ed, (seit 1993 auch) Brno 1; ca. 2 km wsw Br\u00fcnn-Zentrum, a/d Schwarzawa (Svratka); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 1094, "fields": {"kind": 2, "text": "(seit 1990) mit 29 St.Bez.en (m\u011bstsk\u00ed \u010d\u00e1st, obvod), (seit 1993 auch) Brno 1 - 29 [vgl. K.Ku\u010da/1996, S.235/236], okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1096, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1236, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige); [betr. Biogr. \"Buol-Bernburg, Marie\", gest. 23.5.1943]", "source": 1}}, {"model": "metainfo.text", "pk": 1467, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 2030, "fields": {"kind": 2, "text": "okr. Chomutov; ca. 4 km s\u00f6 Chomutov;", "source": 1}}, {"model": "metainfo.text", "pk": 2492, "fields": {"kind": 2, "text": "ca. 7 km n\u00f6 Sf\u00e2ntu Gheorghe;", "source": 1}}, {"model": "metainfo.text", "pk": 2571, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht orthograph. (nur Betonungshilfe)];", "source": 1}}, {"model": "metainfo.text", "pk": 2603, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht nicht orthograph., nur Betonungshilfe];", "source": 1}}, {"model": "metainfo.text", "pk": 2605, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht nicht orthograph., nur Betonungshilfe];", "source": 1}}, {"model": "metainfo.text", "pk": 2675, "fields": {"kind": 2, "text": "eingem. (lt.IN) seit 1923, = Frakt. d. St.gem. Meran, prov. Bolzano/Bozen; 2,5 km n. Meran-Zentrum, w/Schlo\u00df Tirol; [betr. mehrere Biogr.: dt. gleichl. Weiler in Gem. Toblach!]", "source": 1}}, {"model": "metainfo.text", "pk": 2825, "fields": {"kind": 2, "text": "okr. \u0160umperk; ca. 6 km ssw Lou\u010dn\u00e1 nad Desnou, ca. 9 km nn\u00f6 \u0160umperk;", "source": 1}}, {"model": "metainfo.text", "pk": 2827, "fields": {"kind": 2, "text": "okr. \u0160umperk; ca. 6 km ssw Lou\u010dn\u00e1 nad Desnou, ca. 9 km nn\u00f6 \u0160umperk;", "source": 1}}, {"model": "metainfo.text", "pk": 3253, "fields": {"kind": 2, "text": "op. Maribor-Tabor (Post: Limbu\u0161), (OV'99) ob\u010d. u. upr.en. Maribor; (SlovAtl.'92) je 1 km w. Pekre (Pickerndorf) bzw. s\u00f6 Limbu\u0161 (Lembach) bzw. n\u00f6 (StreuSdlg) Vrhov Dol, ca. 6 km w. Marburg, r/d Drau; [betr. Biogr. \"Reiser Othmar\"]", "source": 1}}, {"model": "metainfo.text", "pk": 3255, "fields": {"kind": 2, "text": "op. Maribor-Tabor (Post: Limbu\u0161), (OV'99) ob\u010d. u. upr.en. Maribor; (SlovAtl.'92) je 1 km w. Pekre (Pickerndorf) bzw. s\u00f6 Limbu\u0161 (Lembach) bzw. n\u00f6 (StreuSdlg) Vrhov Dol, ca. 6 km w. Marburg, r/d Drau; [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 3300, "fields": {"kind": 2, "text": "Teil des (seit 1990) St.Bez. (m\u011bst.obvod) Brno-sever [Br\u00fcnn-Nord] (zus. mit Lesn\u00e1, Sob\u011b\u0161ice u. Teil v. \u010cern\u00e1 Pole), (seit 1993 auch) Brno 4, okr. Brno-m\u011bsto; ca. 3 km nn\u00f6 Br\u00fcnn-Zentrum;", "source": 1}}, {"model": "metainfo.text", "pk": 3504, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie; ca. 8 km nw Chrzan\u00f3w (dieses heute woj. ma\u0142opolskie), ca. 26 km \u00f6s\u00f6 Katowice (>50 km wnw Krak\u00f3w); [betr. hr/Stein, Ernst, geb. 1891 ']", "source": 1}}, {"model": "metainfo.text", "pk": 3663, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 3665, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige); [betr. Biogr. \"M\u00f6rl, Maria Th.\", geb. 1812]", "source": 1}}, {"model": "metainfo.text", "pk": 3930, "fields": {"kind": 2, "text": "St. am Kl. Szamos (Some\u015ful Mic);", "source": 1}}, {"model": "metainfo.text", "pk": 3932, "fields": {"kind": 2, "text": "St. am Kl. Szamos (Some\u015ful Mic);", "source": 1}}, {"model": "metainfo.text", "pk": 4052, "fields": {"kind": 2, "text": "= kraj (Kr\u00e1lov\u00e9hradeck\u00fd); St. a/d oberen Elbe (Labe);", "source": 1}}, {"model": "metainfo.text", "pk": 4438, "fields": {"kind": 2, "text": "St.teil seit 1954(?), okr. Hradec Kr\u00e1lov\u00e9; ca. 3 km w. Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 4453, "fields": {"kind": 2, "text": "Teil des (seit 1993) St.Bez. (m\u011bst. obvod) Brno-jih [Br\u00fcnn-S\u00fcd, seit 1993 auch Brno 7], okr. Brno-m\u011bsto; davor (ab 1990) namengebender St.Bez. \"Brno-Kom\u00e1rov\" (zus. mit 3 weiteren ehem. Gem./obec, darunter -->Horn\u00ed Her\u0161pice, dt. Obergerspitz); ca. 2 km ss\u00f6 Br\u00fcnn-Zentrum, a/d Pon\u00e1vka (vor Zus.fl. v. Schwarzawa/Svratka u. Zwittawa/Svitava); [betr. (u.a.) naw/Biogr.(innerhalb Text) \"Su\u0161il, Franti\u0161ek\": urspr. 'Kumritz (Kom\u00e1rov)']", "source": 1}}, {"model": "metainfo.text", "pk": 4512, "fields": {"kind": 2, "text": "obec Tou\u017eim, okr. Karlovy Vary; 2 km \u00f6. Koj\u0161ovice, ca. 4 km n\u00f6 Tou\u017eim, ca. 9 km w. \u017dlutice, ca. 20 km ss\u00f6 Karlovy Vary;", "source": 1}}, {"model": "metainfo.text", "pk": 4522, "fields": {"kind": 2, "text": "= srez; St. im mittleren Krain;", "source": 1}}, {"model": "metainfo.text", "pk": 4642, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 4644, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5041, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5043, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5045, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5083, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXX - Vratislavice nad Nisou\", seit 1990 (mit neuem Statut) 'm\u011bstsk\u00fd obvod\" (St.bezirk); ca. 4 km s\u00f6 Liberec (Zentrum), beidseits der Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 5085, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXX - Vratislavice nad Nisou\", seit 1990 (mit neuem Statut) 'm\u011bstsk\u00fd obvod' (St.bezirk); ca. 4 km s\u00f6 Liberec (Zentrum), beidseits der Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 5101, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-Zentrum, (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 5193, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5219, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5221, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5223, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5344, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5346, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5348, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; a/\u00f6stl. Stadtrand;", "source": 1}}, {"model": "metainfo.text", "pk": 5350, "fields": {"kind": 2, "text": "ital. St.teilname (lt. K\u00fcheb.) nach 1940, eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio); [betr. Biogr. \"Mazegger, Bernh. d.J.\", gest. 1921, (miterw./Schrott, Alois) \"Pelzel v. Staff., Henriette\", gest. 1962, allerdings schon 2-namig ab 1948]", "source": 1}}, {"model": "metainfo.text", "pk": 5352, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-(Altstadt), (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 5353, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5409, "fields": {"kind": 2, "text": "okr. Tachov; ca. 28 km \u00f6s\u00f6 Tachov;", "source": 1}}, {"model": "metainfo.text", "pk": 5576, "fields": {"kind": 2, "text": "okr. Teplice; ca. 15 km nw Teplice, a/dt.-s\u00e4chs. Grenze (8 km w. Cinovec/Zinnwald);", "source": 1}}, {"model": "metainfo.text", "pk": 5900, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. opolskie;", "source": 1}}, {"model": "metainfo.text", "pk": 6016, "fields": {"kind": 2, "text": "okr. Hradec Kr\u00e1lov\u00e9; ca. 4 km! ss\u00f6 Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 6119, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VIII - Doln\u00ed Hanychov\"; 1 km nn\u00f6 --> Horn\u00ed Hanychov, ca. 3 km sw Liberec (Zentrum); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 6173, "fields": {"kind": 2, "text": "[betr. Mpg/Biogr. \"Ambr\u00f3zy-Migazzi, Istv\u00e1n\", geb. 1869]", "source": 1}}, {"model": "metainfo.text", "pk": 6308, "fields": {"kind": 2, "text": "Teil des (seit 1993) St.Bez. (m\u011bst.obvod) Brno-jih [Br\u00fcnn-S\u00fcd] (davor ab 1990 St.Bez. \"Kom\u00e1rov\"), (seit 1993 auch) Brno 7, okr. Brno-m\u011bsto; ca. 4 km s. Br\u00fcnn-Zentrum (n/\u00f6 von Autobahnkreuzung);", "source": 1}}, {"model": "metainfo.text", "pk": 6324, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec; seit 1980 (St.teil/\u010dtvrt) \"Liberec XIX - Horn\u00ed Hanychov\"; 1 km ssw --> Doln\u00ed Hanychov, ca. 4 km sw Liberec (Zentrum); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 6350, "fields": {"kind": 2, "text": "ital. St.teilname (lt. K\u00fcheb.) nach 1940, eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio);", "source": 1}}, {"model": "metainfo.text", "pk": 6352, "fields": {"kind": 2, "text": "eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio);", "source": 1}}, {"model": "metainfo.text", "pk": 6372, "fields": {"kind": 2, "text": "(tsch.) Umbenng nach 1918; 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VII - Horn\u00ed R\u016f\u017eodol\"; ca. 2 km ss\u00f6 --> \"R\u016f\u017eodol I\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [betr. Biogr. \"Schramm Augustin, *1907\"]", "source": 1}}, {"model": "metainfo.text", "pk": 6417, "fields": {"kind": 2, "text": "Teil des (seit 1990) St.Bez. (m\u011bst.obvod) Malom\u011b\u0159ice-Ob\u0159any, (seit 1993 auch) Brno 18, okr. Brno-m\u011bsto; ca. 7 km nn\u00f6 Br\u00fcnn-Zentrum; [betr. Biogr./hr \"\u0160tastny Vladim.\", gest. 1910]", "source": 1}}, {"model": "metainfo.text", "pk": 6431, "fields": {"kind": 2, "text": "St., sw Neusiedler See;", "source": 1}}, {"model": "metainfo.text", "pk": 6491, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 6493, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 6495, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava); [betr. Biogr. \"\u0160pa\u010dek, Richard\", gest. 1925]", "source": 1}}, {"model": "metainfo.text", "pk": 6497, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 7122, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7124, "fields": {"kind": 2, "text": "okr. Hl.m. Praha, Praha 2 (Nov\u00e9 M\u011bsto); ON noch erhalten im Stra\u00dfennamen \"Podskalsk\u00e1\" (parallel zur Uferstr. zw. Nov\u00e9 M\u011bsto u. Vy\u0161ehrad); [betr. Biogr. \"Hedrich Franz\"]", "source": 1}}, {"model": "metainfo.text", "pk": 7126, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus 1 od. mehreren St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7128, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7130, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7171, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 7173, "fields": {"kind": 2, "text": "Umbenng. = ab 1920 (lt.IN schon 6. 3. 1919), = kraj u. okr.; mit 17 St.Bez.en: Star\u00e9 Mesto, Ru\u017einov (1946, fr.: Prievoz), Vraku\u0148a (1.1. 1972), Podunajsk\u00e9 Biskupice (1.1. 1972), Nov\u00e9 Mesto, Ra\u010da (1946), Vajnory (1946), Kalova Ves (seit 1944), D\u00fabravka (1946), Lama\u010d (1946), Dev\u00edn (1946), Dev\u00ednska Nov\u00e1 (1.1. 1972) Ves, Z\u00e1horsk\u00e1 Bystrica (1.1. 1972), Petr\u017ealka (1946, r/Donau), Jarovce (1.1. 1972, r/Donau), Rusovce (1.1. 1972, r/Donau) und \u010cunovo (1.1. 1972, r/Donau);", "source": 1}}, {"model": "metainfo.text", "pk": 7681, "fields": {"kind": 2, "text": "tsch. ON nach 1918, 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XI - R\u016f\u017eodol I\"; ca. 2 km nnw \"R\u016f\u017eodol II\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 7683, "fields": {"kind": 2, "text": "tsch. ON nach 1918; 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VII - Horn\u00ed R\u016f\u017eodol\"; ca. 2 km ss\u00f6 --> \"R\u016f\u017eodol I\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 7776, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XIV - Ruprechtice\"; 2,5 km n\u00f6 Liberec (Zentrum); [betr. Biogr. \"Farsk\u00fd, Franz\", geb. 'Ruppersdorf (Rup\u011bchtice, B\u00f6hmen)': diese (tsch.) Schreibw. nicht verifiz.]", "source": 1}}, {"model": "metainfo.text", "pk": 7828, "fields": {"kind": 2, "text": "Sadhora (n\u00f6rdl. des Prut), eingemeindet nach --> \u010cernivci;", "source": 1}}, {"model": "metainfo.text", "pk": 7951, "fields": {"kind": 2, "text": "= ab 1990, okr. Pezinok; ca. 15 km n\u00f6 Pre\u00dfburg; a/SO-Abhang d. Kl. Karpaten;", "source": 1}}, {"model": "metainfo.text", "pk": 7994, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; ca. 6 km wsw Lana (Ober-), ca. 11 km sw Meran, im Ultental (Val d'Ultimo);", "source": 1}}, {"model": "metainfo.text", "pk": 8138, "fields": {"kind": 2, "text": "Umbenng. ab 1955, okr. \u0160umperk; ca. 16 km w. \u0160umperk; nahe Grenze zu NO-B\u00f6hmen;", "source": 1}}, {"model": "metainfo.text", "pk": 8211, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXXI - Kr\u00e1sn\u00e1 Stud\u00e1nka\"; ca. 7 km n. Liberec (Zentrum);", "source": 1}}, {"model": "metainfo.text", "pk": 8304, "fields": {"kind": 2, "text": "[betr. naw/Biogr. \"Sue\u00df, Friedr. R.v. Heller\"]", "source": 1}}, {"model": "metainfo.text", "pk": 8727, "fields": {"kind": 2, "text": "(lt. Atl.'99 Star\u00e1 Dl. V. nicht mehr ausgewiesen), okr. Klatovy; ca. 4 km ssw Su\u0161ice, ca. 28 km ss\u00f6 Klatovy; [vgl. Biogr. \"Schell Karl\"]", "source": 1}}, {"model": "metainfo.text", "pk": 9008, "fields": {"kind": 2, "text": "ab 1.1.99: pow. Jaworzno, woj. \u015bl\u0105skie; [4 km n. Jaworzno]", "source": 1}}, {"model": "metainfo.text", "pk": 9021, "fields": {"kind": 2, "text": "Kom.H.St.; a/d Thei\u00df, gg.\u00fcber Einm\u00fcndung d. Maros;", "source": 1}}, {"model": "metainfo.text", "pk": 9235, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 9239, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie; r/d Olsa/Olza; [i. Druck fr\u00fcher i.d.R. undiff. nur \"Teschen\", k\u00fcnftig (u. in GD-DB) als heut. ON normativ der poln. Teil angef\u00fchrt: f\u00fcr einzelne Bios k\u00f6nnte auch der kleinere, j\u00fcngere (heute tsch.) St.teil -->\u010cesk\u00fd T\u011b\u0161\u00edn zutreffend sein]", "source": 1}}, {"model": "metainfo.text", "pk": 9433, "fields": {"kind": 2, "text": "= prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9434, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9461, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9463, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9646, "fields": {"kind": 2, "text": "= ab 1948 [= Umbenng.], okr. Nitra; ca. 12 km s. Neutra;", "source": 1}}, {"model": "metainfo.text", "pk": 9705, "fields": {"kind": 2, "text": "com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe (Zusatz (seit ?, nach 1964): nur f\u00fcr den Namen der (Markt) Gem. amtl. (oder auch f\u00fcr den Ort selbst?), prov. Bolzano/Bozen; ca. 13 km ssw Bozen, a/Fu\u00df des Mendel-Passes;", "source": 1}}, {"model": "metainfo.text", "pk": 9735, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-(Altstadt), (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 10129, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10131, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10133, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10135, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10138, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10186, "fields": {"kind": 2, "text": "ab 1992 Ju\u017eni-Banatski okr.; St., ca. 10 km n/d Donau, (s\u00fcdl. Banat) Vojvodina;", "source": 1}}, {"model": "metainfo.text", "pk": 10300, "fields": {"kind": 2, "text": "(lt. wiki) Getrenntschreibung seit 1997;", "source": 1}}, {"model": "metainfo.text", "pk": 10485, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie; [betr. da/Biogr. \"Sucharda, Edw. d.J.\", gest. 1947]", "source": 1}}, {"model": "metainfo.text", "pk": 10711, "fields": {"kind": 2, "text": "lt.obiger Enz.. (ukr.) auch: Znesennja; rajon L'viv; (lt. L'viv-St.plan) 2,25 km \u00f6n\u00f6 Lemberg-Zentrum, inmitten eines Landschaftsparkes a/\u00f6stl. Stadtrand", "source": 1}}, {"model": "metainfo.text", "pk": 10788, "fields": {"kind": 2, "text": "= okres; ca. 14 km w. Mor. T\u0159ebov\u00e1, St. i/Sch\u00f6nhenstgau a/d Zwittawa (Svitava);", "source": 1}}, {"model": "metainfo.text", "pk": 11195, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11196, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11197, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11198, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11199, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11200, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11203, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11204, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11205, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11206, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11207, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11210, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11211, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11214, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11215, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11218, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11219, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11220, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11221, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11222, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11223, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11224, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11225, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11226, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11227, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11228, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11229, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11230, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11231, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11234, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11235, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11236, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11237, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11238, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11239, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11240, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11241, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11242, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11243, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11244, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11245, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11246, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11249, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11250, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11251, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11252, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11253, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11254, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11255, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11256, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11257, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11258, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11259, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11260, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11261, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11262, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11263, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11266, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11269, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11270, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11271, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11272, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11275, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11278, "fields": {"kind": 236, "text": "http://www.geonames.org/maps/google_46.547_15.596.html\r\nOthmar Reiser's Geburtsort ist Hrastje, der heute Pekre heisst, und neben Maribor liegt.", "source": null}}, {"model": "metainfo.text", "pk": 11279, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11280, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11281, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11284, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11285, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11286, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11287, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11288, "fields": {"kind": 236, "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, B\u00f6hmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der b\u00f6hmische Lachovice der richtige", "source": null}}, {"model": "metainfo.text", "pk": 11289, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11290, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11291, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11292, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11293, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11294, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11299, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11300, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11301, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11302, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11303, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11304, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11305, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11308, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11311, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11312, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11313, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11314, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11317, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11318, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11319, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11320, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11321, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11322, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11323, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11324, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11325, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11326, "fields": {"kind": 236, "text": "ziemlich viele \u00d6BL labels f\u00fcr Meran!", "source": null}}, {"model": "metainfo.text", "pk": 11327, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11330, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11331, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11334, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11335, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11336, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11337, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11338, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11339, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11342, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11343, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11344, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11345, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11346, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11347, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11348, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11349, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11350, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11351, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 12155, "fields": {"kind": 130, "text": "Sohn von Joseph T. und Fortun\u00e9e Stein (urkundl.; vermutl. jedoch illegitimer Sohn von \u00bfFranz Josef F\u00fcrst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers Fran\u00e7ois Boucher und Tochter des Operns\u00e4ngers Luigi Lablache, verheiratet. \u2013 T. zog 1822 nach Wien, wo er Klavierunterricht beim Ersten Fagottisten der Hofoper, August Mittag, erhielt und das polytechn. Inst. besucht haben soll (nicht nachweisbar). In weiterer Folge stud. er bei \u00bfSimon Sechter (Theorie) und \u00bfJohann Nep. Hummel (Klavier). 1826 trat er erstmals, zun\u00e4chst in Wr. Privatzirkeln, als Pianist auf. 1830 f\u00fchrte ihn die erste Auslandstournee nach Dtld. und England, anschlie\u00dfend in andere europ. L\u00e4nder. Nach weiteren Stud. bei \u00bfIgnaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 gro\u00dfe Erfolge in Paris und triumphierte 1837\u201348 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und S\u00fcdamerika, wo er u.\u00a0a. in New York eine Klavierschule gr\u00fcndete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die n\u00e4chsten Jahre zur\u00fcckgezogen lebte. Nach Wiederaufnahme seiner Tourneen 1862 (London und Paris) ging er 1863 abermals nach Brasilien, danach schied er aus dem Konzertleben aus. Einem Brief Felix Mendelssohn-Bartholdys zufolge galt T. bis zur Jh.mitte neben \u00bfFranz v. Liszt als gr\u00f6\u00dfter Klaviervirtuose seiner Zeit. 1837 kam es zu einem \u00f6ff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle \u00d6ffentlichkeit sah Liszt als Romantiker, w\u00e4hrend der von seinem Auftreten her aristokrat. T. eher f\u00fcr ein klassizist. Musikideal stand. Auch die Qualit\u00e4t der Kompositionen beider wurde kontr\u00e4r beurteilt. Liszt bezeichnete T.s Werke in der \u201eRevue et gazette musicale de Paris\u201c als eine Mischung aus Monotonie und Unverm\u00f6gen. Die so aufgeschaukelte Rivalit\u00e4t kulminierte, als beide Musiker an einem von F\u00fcrstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Fr\u00e9d\u00e9ric Chopin und \u00bfCarl Czerny, an einer Kollektivkomposition f\u00fcr die F\u00fcrstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen \u00fcber Themen bekannter Opern dessen gr\u00f6\u00dften Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zur\u00fcck. T.s Personalstil kennzeichneten v.\u00a0a. das Hervortreten der auf beide H\u00e4nde verteilten Melodie in der Mittellage, w\u00e4hrend diese u.\u00a0a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. \u201eL\u2019Art du chant appliqu\u00e9 au piano\u201c festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosit\u00e4t, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n", "source": 531}}, {"model": "metainfo.text", "pk": 12156, "fields": {"kind": 131, "text": "Thalberg Sigismund (Fortun\u00e9 Fran\u00e7ois), Pianist und Komponist. Geb. P\u00e2quis (Gen\u00e8ve-Bains des P\u00e2quis, CH), 8.\u00a01. 1812; gest. Posillipo (Napoli, I), 27.\u00a04. 1871.", "source": 531}}, {"model": "metainfo.text", "pk": 21722, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckers; lebte ab ca. 1781 bei seinem Gro\u00dfvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurf\u00fcrstlichen Hof in Bonn t\u00e4tig war. 1787 wurde R. Fl\u00f6tist der Hofkapelle und begann zu komponieren. 1794\u201399 lebte er in Hamburg und verdiente seinen Lebensunterhalt mit Musikunterricht, ab 1799 in Paris, wo er vergeblich auf die Urauff. zweier von ihm komponierter Opern hoffte. 1802\u201308 war er in Wien und stud. u. a. bei J. Haydn, Albrechtsberger und Salieri Komposition. Ab 1808 lebte R. in Paris, ab 1818 als Prof. f\u00fcr Komposition. Als Musikp\u00e4dagoge und Theoretiker erlangte er gro\u00dfes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Sch\u00fclern geh\u00f6rten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterlie\u00df auch als Komponist ein wertvolles und umfangreiches \u0152uvre. Mit seinen 24 Bl\u00e4serquintetten schuf er die Grundlage f\u00fcr das Repertoire derartiger Kammerensembles.\n", "source": 5804}}, {"model": "metainfo.text", "pk": 21723, "fields": {"kind": 131, "text": "Reicha\u00a0(Rejcha) Anton (Anton\u00edn) Josef, Komponist und Musikp\u00e4dagoge. * Prag, 26. 2. 1770; \u2020 Paris, 28. 5. 1836.", "source": 5804}}, {"model": "metainfo.text", "pk": 27186, "fields": {"kind": 130, "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808\u201320 lebte er in Wien und stud. bei Streicher, Albrechtsberger und Salieri. M. unterrichtete selbst, auch in der besten Ges. M., dessen Ruhm als Pianist und Komponist (seine Variationen \u00fcber den Alexander-Marsch von 1815 blieben jahrzehntelang ein Pr\u00fcfstein pianist. Virtuosit\u00e4t) st\u00e4ndig wuchs, trat in Prag, Leipzig und Dresden auf. 1820 machte er ausgedehnte Reisen durch Deutschland, Holland, Belgien, Frankreich und England und hielt sich auch wieder l\u00e4nger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 \u00fcbersiedelte M. nach London und geh\u00f6rte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den f\u00fchrenden Pers\u00f6nlichkeiten des Musiklebens. 1846 \u00fcbernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der gro\u00dfen Pianisten seiner Zeit und setzte sich vor allem f\u00fcr Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des \u201eFidelio\u201c hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bem\u00fchte er sich tatkr\u00e4ftig um dessen Unterst\u00fctzung durch die Londoner Philharmonic Society.\n", "source": 8543}}, {"model": "metainfo.text", "pk": 27187, "fields": {"kind": 131, "text": "Moscheles\u00a0Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; \u2020 Leipzig, 10. 3. 1870.", "source": 8543}}, {"model": "metainfo.text", "pk": 30762, "fields": {"kind": 130, "text": "Sohn des Esterh\u00e1zyschen Verwalters Adam L. (1776\u20131827), Neffe des Vorigen, Vetter des Arztes und Schriftstellers Joseph Anton L. (s. d.) und des Folgenden; erhielt den ersten Klavierunterricht vom Vater. Im August oder September 1819 d\u00fcrfte er in Baden bei Wien erstmals \u00f6ff. aufgetreten sein. Weitere Konzerte folgten in \u00d6denburg und Pre\u00dfburg. Auf Grund des letzten (26. 11. 1820) setzten ihm ung. Magnaten ein Studienstipendium aus. Da J. N. Hummels (s. d.) Forderungen zu hoch waren, brachte der Vater den Knaben nach Wien zu C. Czerny (s. d.). Neben dessen Klavierunterricht erhielt er Unterweisung in Musiktheorie durch A. Salieri. 1822 wurde der Elfj\u00e4hrige zur Mitarbeit an A. Diabellis (s. d.) \u201eVaterl\u00e4ndischem K\u00fcnstlerverein\u201c eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er \u00f6ff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum gek\u00fc\u00dft. Der Erl\u00f6s dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die M\u00f6glichkeit zur \u00dcbersiedlung nach Paris; auf der Reise und sp\u00e4ter von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausl\u00e4nder die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., haupts\u00e4chlich nach der Methode Kalkbrenners (s. d.) fort, stud. aber Musiktheorie bei F. Paer und A. Reicha. Er blieb bis 1837 in Paris und unterrichtete in den h\u00f6chsten Kreisen. Berlioz und Paganini regten seine k\u00fcnstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem pers\u00f6nlichen Kontakt stand. 1835\u201339 lebte L. mit Gfn. Marie d\u2019Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die K\u00fcnstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzertt\u00e4tigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa f\u00fchrte. In Kiew begegnete er 1847 der F\u00fcrstin Carolyne Sayn-Wittgenstein, welche ihren Mann verlie\u00df und sich schlie\u00dflich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum gro\u00dfherzoglichen Kapellmeister in au\u00dferordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausge\u00fcbt hatte und nun in vollem Ma\u00dfe aufnahm. Seine Lebensgemeinschaft mit der F\u00fcrstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verh\u00e4ltnissen entfaltete er eine erfolgreiche k\u00fcnstler. T\u00e4tigkeit, welche in dem selbstlosen Eintreten f\u00fcr R. Wagner gipfelte. Wahrscheinlich unter dem Einflu\u00df der F\u00fcrstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither f\u00fchrte er ein unstetes und unbefriedigtes Wanderleben, kehrte f\u00fcr kurze Zeit auch nach Weimar zur\u00fcck, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fu\u00dfend, die Klaviertechnik ungeheuer ausgebaut, in Richtung auf den Orchesterklang hin, auf eine neue Gesanglichkeit vom romant. Lied her und auf die von ihm bedeutend erweiterten M\u00f6glichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilit\u00e4t des Anschlages. Nicht weniger hat L. als Komponist gewirkt, hier vor allem auf harmon. Gebiet, wegweisend aber auch in der Auslotung der techn. und formalen M\u00f6glichkeiten \u00fcberhaupt und in der Programmatik der inhaltlichen Erf\u00fcllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gr\u00fcndete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n", "source": 10332}}, {"model": "metainfo.text", "pk": 30763, "fields": {"kind": 131, "text": "Liszt\u00a0Franz von, Komponist. * Raiding, Kom. \u00d6denburg (Burgenland), 22. 10. 1811; \u2020 Bayreuth (Oberfranken), 31. 7. 1886.", "source": 10332}}, {"model": "metainfo.text", "pk": 44908, "fields": {"kind": 130, "text": "Von ihrer Mutter und t\u00fcchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male \u00f6ffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n", "source": 17415}}, {"model": "metainfo.text", "pk": 44909, "fields": {"kind": 131, "text": "Blahetka\u00a0Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; \u2020 Boulogne sur Mer, 1. 1. 1885.", "source": 17415}}, {"model": "metainfo.text", "pk": 45290, "fields": {"kind": 130, "text": "B. stammt aus einer aus dem Niederl\u00e4ndischen eingewanderten Familie, sein erster Lehrer, Chr. G. Neefe, vermittelte ihm die Kenntnis bedeutender Meisterwerke und machte publizistisch die Fachwelt auf das junge Talent aufmerksam und das Wohlwollen des Kurf\u00fcrsten Maximilian, des j\u00fcngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde f\u00fcr den weiteren \u00e4u\u00dferen Lebensweg B.s entscheidend, zumal der aus \u00d6sterr. an den K\u00f6lner Hof gekommene Graf Franz Adam Waldstein ihm die f\u00fcr die ersehnte Wr. Lehrzeit n\u00f6tige geldliche Unterst\u00fctzung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd f\u00f6rderte, wurde aber nicht sein Sch\u00fcler, da die Todeskrankheit der Mutter B.s R\u00fcckkehr forderte. Als sie am 17. 7. 1787 starb, mu\u00dfte B. nun f\u00fcr den entm\u00fcndigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurf\u00fcrstliche Hilfe nach Wien, wo er den gew\u00fcnschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schlo\u00df. Seine von da an w\u00e4hrende Bindung an Wien ist vor allem Erzh. Rudolf und den F\u00fcrsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosph\u00e4re Wiens, in der B. zunehmend Verst\u00e4ndnis als K\u00fcnstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikst\u00e4dten begehrt wurden, erfolgte oft auch widerrechtlich; B.s Kampf dagegen war nur ein Zug seiner steigenden inneren Auflehnung gegen manche Unvollkommenheiten des polit. und soz. Lebens, mit deren Problematik sich sein Gerechtigkeitssinn oft st\u00fcrmisch auseinandersetzte (s. die annullierte Widmung der\u201cEroica\u201d an Napoleon, als dieser sich zum K. kr\u00f6nen lie\u00df). Um 1800 begann sein Geh\u00f6r zu schwinden. 1815 wurde er taub. Das \u201eHeiligenst\u00e4dter Testament\u201c von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die \u00fcbermenschlichen moralischen Kr\u00e4fte, die ihn dennoch am Werk lie\u00dfen, das sich in jener Katastrophenzeit zur F\u00fclle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der fr\u00fcher als Interpret seiner Werke oder als Improvisator am Klavier und spr\u00fchender Geist gesellschaftlich brilliert hatte, immer mehr abschlo\u00df, l\u00f6sten die Freunde Oliva, Schindler und Holz jene gl\u00e4nzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste gro\u00dfe Musiker, der ein warmes Verh\u00e4ltnis zur Natur bekennt, auch hierin Haydn n\u00e4her als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als K\u00fcnder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 k\u00fcndigt sich sein Leberleiden an, das B.s sonst so robuste Gesundheit untergrub; 1826, auf dem Heimweg von einem Landaufenthalt bei seinem Bruder Johann in Gneixendorf bei Krems, \u00fcberfiel ihn eine Lungenentz\u00fcndung, zu der pl\u00f6tzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n", "source": 17608}}, {"model": "metainfo.text", "pk": 45291, "fields": {"kind": 131, "text": "Beethoven\u00a0Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; \u2020 Wien, 26. 3. 1827.", "source": 17608}}, {"model": "metainfo.text", "pk": 47030, "fields": {"kind": 130, "text": "Tochter von \u2192Adolf B\u00e4uerle und seiner ersten Frau Antonie B\u00e4uerle, geb. Egger. \u2013 B. zeigte schon in fr\u00fchester Kindheit eine Doppelbegabung f\u00fcr Musik und Sprachen, die in ihrer Erziehung sehr gef\u00f6rdert wurde. So erhielt sie Unterricht bei \u2192Carl Czerny. Dennoch beschr\u00e4nkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und \u00e4hnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Gro\u00dfbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische T\u00e4tigkeit f\u00fcr die \u201eWiener Theater-Zeitung\u201c (\u201eWiener allgemeine Theaterzeitung\u201c) ihres Vaters unter ihren Pseudonymen (auch \u201eF\u2026\u201c). B. war au\u00dferdem auch eine \u00fcberaus produktive \u00dcbersetzerin aus dem Englischen und Franz\u00f6sischen, u. a. \u00fcbertrug sie die Novelle \u201eDer Spion der vornehmen Welt\u201c von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), \u201eMi\u00df Mary, oder die Erzieherin\u201c (in: Wiener allgemeine Zeitung f\u00fcr Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und \u201eGilbert und Gilberte\u201c von Eug\u00e8ne Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), \u201eAntonie, die Tochter der Berge\u201c (ebd., 1850, Nr. 157\u2013176, 180\u2013201), \u201eDer letzte Irl\u00e4nder\u201c (ebd., 1851, Nr. 293ff.) und \u201eDie Marquise von Norville\u201c von \u00c9lie Berthet (1856), \u201eConcino Concini oder Die Tochter des Blinden\u201c (1855, 1856 Neuaufl. unter dem Titel \u201eDer Menschenj\u00e4ger oder Der Blinde\u201c) von Emanuele Gonzal\u00e8s sowie \u201eDie letzte der Feen\u201c von George Payne Rainsford James (1849). Einige dieser \u00dcbersetzungen erschienen auch im \u201eBelletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen\u201c des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der \u201eOstdeutschen Post\u201c und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift \u201eDer Salon\u201c erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, f\u00fchrte sie gemeinsam mit dem Redakteur Moritz Morl\u00e4nder (eigentlich Moriz Engl\u00e4nder) die \u201eWiener Theaterzeitung\u201c ab J\u00e4nner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. v\u00f6llig zur\u00fcckgezogen.\n", "source": 17852}}, {"model": "metainfo.text", "pk": 47031, "fields": {"kind": 131, "text": "B\u00e4uerle Friederike, Ps. Friedrich Horn, Schriftstellerin, \u00dcbersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Nieder\u00f6sterreich), 17. 7. 1896.", "source": 17852}}, {"model": "metainfo.text", "pk": 47126, "fields": {"kind": 130, "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, B\u00f6hmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zun\u00e4chst als Oboist beim Milit\u00e4r und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. \u2013 Wenzel Czernys T\u00e4tigkeit als Klavierlehrer f\u00fchrte die Familie 1791\u201395 nach Polen. So erhielt C., der bereits mit drei Jahren Klavier zu spielen begann und mit sieben seine ersten Kompositionen zu Papier brachte, den ersten Klavierunterricht auch von seinem Vater und konnte dank seiner au\u00dfergew\u00f6hnlichen Begabung bereits als Neunj\u00e4hriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung f\u00fcr C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei \u2192Ludwig van Beethoven, der ihn unverz\u00fcglich als Sch\u00fcler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Urauff\u00fchrung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere fr\u00fch, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Sch\u00fclerinnen und Sch\u00fcler waren Theodor D\u00f6hler, Stephen Heller, \u2192Sigismund Thalberg, \u2192Marie Leopoldine Blahetka, Ninette de Belleville sowie \u2192Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine \u201e\u00c9tudes d\u2019ex\u00e9cution transcendante\u201c). Auch Beethovens Neffe Karl wurde ein Sch\u00fcler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, \u2192Ignaz Moscheles\u2019 und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken f\u00fcr Klavier verbunden, die sich an Anf\u00e4nger (etwa \u201eDie Schule der Gel\u00e4ufigkeit\u201c) ebenso richten wie an bereits gereifte Pianisten (\u201eSchule des Virtuosen\u201c). Dazu kommen St\u00fccke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die gr\u00f6\u00dfte Popularit\u00e4t erlangte C.s \u201eVollst\u00e4ndige theoretisch-practische Pianoforte-Schule \u2026\u201c (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen \u0152uvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Ch\u00f6re, Ges\u00e4nge und B\u00fchnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einfl\u00fcsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten St\u00fccke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Dar\u00fcber hinaus war C. als Musiktheoretiker t\u00e4tig. Er verfasste eine \u201eSystematische Anleitung zum Fantasieren auf dem Pianoforte\u201c, z\u00e4hlte zu den ersten Editoren einer Bach-Gesamtausgabe und \u00fcbersetzte vier umfangreiche Kompositions-Traktate von \u2192Anton Reicha. 1842 schrieb C. seine Autobiographie \u201eErinnerungen aus meinem Leben\u201c. Abgesehen von einigen Reisen nach Italien und einem Aufenthalt in Frankreich (1837) sowie England verbrachte er sein gesamtes Leben in seiner Heimatstadt. Er starb als wohlhabender Mann und vermachte sein Verm\u00f6gen k\u00fcnstlerischen und wohlt\u00e4tigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n", "source": 18525}}, {"model": "metainfo.text", "pk": 47127, "fields": {"kind": 131, "text": "Czerny (\u010cern\u00fd) Carl, Pianist, P\u00e4dagoge und Komponist. Geb. Leopoldstadt, Nieder\u00f6sterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); r\u00f6m.-kath.", "source": 18525}}, {"model": "metainfo.text", "pk": 47200, "fields": {"kind": 130, "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und National\u00f6konomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Ru\u00dfland auf, war sp\u00e4ter Mitleiter der \u201eFreien B\u00fchne\u201c in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, B\u00fchnendichter und Theaterkritiker. 1909 heiratete er die gro\u00dfe Wagnerinterpretin, Hofoperns\u00e4ngerin Anna v. Mildenburg (s. u.). 1912 \u00fcbersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni\u2013November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in M\u00fcnchen. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von au\u00dfergew\u00f6hnlicher Menschenkenntnis, ein gl\u00e4nzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., geh\u00f6ren zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen \u00d6sterreich.\n", "source": 102}}, {"model": "metainfo.text", "pk": 47201, "fields": {"kind": 131, "text": "Bahr\u00a0Hermann, Dichter und Schriftsteller. * Linz (O.\u00d6.), 19. 7. 1863; \u2020 M\u00fcnchen, 14. 1. 1934.", "source": 102}}, {"model": "metainfo.text", "pk": 47204, "fields": {"kind": 130, "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt t\u00e4tig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er kl\u00e4rte die Ursachen der hohen S\u00e4uglingssterblichkeit bei k\u00fcnstlicher Ern\u00e4hrung und besch\u00e4ftigte sich eingehend mit der Tuberkulose im Kindesalter. Sp\u00e4ter lehrte er in Berlin, Stra\u00dfburg und D\u00fcsseldorf. Durch Cz., einen der Begr\u00fcnder und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine gro\u00dfe Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine f\u00fchrende Stellung in der Kinderheilkunde inne.\n", "source": 114}}, {"model": "metainfo.text", "pk": 47205, "fields": {"kind": 131, "text": "Czerny\u00a0Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; \u2020 Berlin, 3. 10. 1941.", "source": 114}}, {"model": "metainfo.text", "pk": 47206, "fields": {"kind": 130, "text": "Absolvierte die Theres, Milit. Akad., 1842\u201348 \u00f6sterr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, fl\u00fcchtete 1849 nach Deutschland und lebte von 1850\u201357 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Pr\u00e4s. Mitre machte ihn zum Chef der Sektion des milit. Ingenieurwesens. Als solcher nahm er die Karte des paraguayisch-brasilianischen Grenzgebietes von Argentinien auf. lm Krieg der Tripelallianz gegen Paraguay 1865\u201369 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa F\u00e9 nach Esperanza und plante die Festungen in den Provinzen C\u00f3rdoba, Santa F\u00e9 und Buenos Aires. 1870\u201374 Leiter des Colegio Militar; 1875\u2013 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. f\u00fcr Mathematik in Concepci\u00f3n del Uruguay. 1884 in die Pr\u00fcfungskomm. des Colegio Militar und in die Comisi\u00f3n revisadora y proyectora berufen, 1884\u201395 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n", "source": 116}}, {"model": "metainfo.text", "pk": 47207, "fields": {"kind": 131, "text": "Czetz\u00a0Johann. * Gid\u00f3falva, 8. 6. 1822; \u2020 Buenos Aires, 6. 9. 1904.", "source": 116}}, {"model": "metainfo.text", "pk": 47208, "fields": {"kind": 130, "text": "Stud. in Br\u00fcnn und Olm\u00fctz unter Leitung seines Oheims Caroni, trat 1808 in das m\u00e4hrisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekret\u00e4r bei der Obersten Justizstelle in Wien.\n", "source": 117}}, {"model": "metainfo.text", "pk": 47209, "fields": {"kind": 131, "text": "Czikann\u00a0Johann Jakob Heinrich, Beamter und Schriftsteller. * Br\u00fcnn, 10. 7. 1789; \u2020 Br\u00fcnn, 10. 6. 1855.", "source": 117}}, {"model": "metainfo.text", "pk": 47210, "fields": {"kind": 130, "text": "Sohn des Christian C.-G., trat 1826 in die Armee ein, 1839 Obst. und Rgtskmdt., 1846 GM. und Brigadier in Prag, 1848 in Mailand; k\u00e4mpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenb\u00fcrgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. Gy\u00f6rgy und Kaszon-Ujfalu; Landeskommandierender in B\u00f6hmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, k\u00e4mpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vlie\u00df; 1866 Kmdt. des 1. Armeekorps gegen Preu\u00dfen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n", "source": 108}}, {"model": "metainfo.text", "pk": 47211, "fields": {"kind": 131, "text": "Clam-Gallas\u00a0Eduard Graf, General. * Prag, 11. 3. 1805; \u2020 Wien, 17. 3. 1891.", "source": 108}}, {"model": "metainfo.text", "pk": 47212, "fields": {"kind": 130, "text": "\u00c4ltester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853\u201359 Landespr\u00e4s. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorit\u00e4t; haupts\u00e4chlich nach seinen Vorschl\u00e4gen entstand das Oktoberdiplom; F\u00fchrer der feudal-klerikal-slaw. und f\u00f6deralistischen Partei, seit 1862 nur mehr im Landtag. Er war einer der Urheber der Abstinenzpolitik der Tschechen und konzipierte 1871 die Fundamentalartikel; unter Taaffe kehrten die Tschechen 1879 in den Reichsrat zur\u00fcck und C. war wie vorher als Generalreferent des Budgets t\u00e4tig; 1884 zog er sich krankheitshalber vom \u00f6ffentlichen Leben zur\u00fcck; seit 1859 Geh. Rat, seit 1861 Pr\u00e4s. des B\u00f6hmischen Mus., Ehrenmitgl. der Kgl. B\u00f6hm. Ges. d. Wiss.\n", "source": 109}}, {"model": "metainfo.text", "pk": 47213, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; \u2020 Prag, 5. 6. 1887.", "source": 109}}, {"model": "metainfo.text", "pk": 47214, "fields": {"kind": 130, "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des F\u00fcrsten Thun F\u00fchrer der Rechten im Herrenhaus, stand hier und im b\u00f6hmischen Landtag den Tschechen nahe. Im Weltkrieg k\u00e4mpfte er an der russ. und an der italien. Front und r\u00fcckte von den Tschechen ab, als diese immer mehr auf die Zerst\u00f6rung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpr\u00e4s. Er suchte vergeblich, Vertreter aller \u00f6sterr. Nationalit\u00e4ten ins Kabinett zu berufen, um einen langfristigen Ausgleich mit Ungarn zustandezubringen, aber die Tschechen lehnten ab; er setzte das Parlament erfolglos wieder in seine Rechte ein, verstimmte die Deutschen, deren W\u00fcnsche nicht erf\u00fcllt wurden und vermochte nicht, die Tschechen, S\u00fcdslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917\u201319 Milit\u00e4rgouverneur von Montenegro. Pr\u00e4s. der Vereinigung kathol. Edelleute \u00d6sterr., Ritter des Ordens vom Goldenen Vlie\u00df, Geh. Rat und K\u00e4mmerer.\n", "source": 110}}, {"model": "metainfo.text", "pk": 47215, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; \u2020 Clam b. Grein, 7. 3. 1932.", "source": 110}}, {"model": "metainfo.text", "pk": 47216, "fields": {"kind": 130, "text": "Stud. in Marburg und Gie\u00dfen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. f\u00fcr Zoologie in W\u00fcrzburg, 1870 in G\u00f6ttingen, 1873 f\u00fcr Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gr\u00fcnder er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in G\u00f6ttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n", "source": 111}}, {"model": "metainfo.text", "pk": 47217, "fields": {"kind": 131, "text": "Claus\u00a0Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; \u2020 Wien, 18. 1. 1899.", "source": 111}}, {"model": "metainfo.text", "pk": 47218, "fields": {"kind": 130, "text": "Stud. in G\u00f6ttingen und Berlin, 1855 Dr. phil., 1857\u201360 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. f\u00fcr Arch\u00e4ologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete arch\u00e4ologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Arch\u00e4ologie, Kunstgeschichte und klass. Philologie verbindende Lehrt\u00e4tigkeit. Er begr\u00fcndete die Wr. Vorlegebl\u00e4tter, errichtete 1876 zusammen mit O. Hirschfeld das Arch\u00e4olog.-epigr. Seminar, f\u00fchrte zwei \u00f6sterr. Grabungskampagnen auf der Insel Samothrake durch, rief das gro\u00dfe Werk der Wr. Akad. d. Wiss. \u201eDie attischen Grabreliefs\u201c ins Leben und gab in 3 Heften der Denkschriften \u201eR\u00f6mische Bildwerke einheimischen Fundorts in \u00d6sterreich\u201c heraus. 1877\u201387 \u00fcbernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887\u20131905 leitete er als Gen.-Sekr. das Arch\u00e4olog. Inst. des Dt. Reiches, dem er 1903 in der R\u00f6m.-german. Komm. auch eine Zentralstelle f\u00fcr die arch\u00e4olog. Heimatforschung anschlo\u00df. In seinen beiden letzten Stellungen galten seine Arbeiten vor allem den von ihm angeregten Ausgrabungen in Pergamon und den dort gemachten Funden. C. hat die versch. Gebiete der Arch\u00e4ologie durch bahnbrechende Werke gef\u00f6rdert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n", "source": 112}}, {"model": "metainfo.text", "pk": 47219, "fields": {"kind": 131, "text": "Conze\u00a0Alexander, Arch\u00e4ologe. * Hannover, 10. 12. 1831; \u2020 Berlin, 19. 7. 1914.", "source": 112}}, {"model": "metainfo.text", "pk": 47220, "fields": {"kind": 130, "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. K\u00fcnste, hatte 1860\u201364 ein Atelier in M\u00fcnchen, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg f\u00fcr das Arsenal auszuf\u00fchren, leitete 1883 die Jubil\u00e4umsausstellung zur T\u00fcrkenbelagerung im Rathaus, stellte 1886 die st\u00e4dtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. K\u00fcnste.\n", "source": 113}}, {"model": "metainfo.text", "pk": 47221, "fields": {"kind": 131, "text": "Costenoble\u00a0Karl, Bildhauer. * Wien, 26. 11. 1837; \u2020 Wien, 20. 6. 1907.", "source": 113}}, {"model": "metainfo.text", "pk": 47226, "fields": {"kind": 130, "text": "Stud. in Prag Jus; ao. Prof. f\u00fcr Rechtsgeschichte an der Univ. Prag; Mitgl. der B\u00f6hm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des b\u00f6hm. Stadtrechtes.\n", "source": 103}}, {"model": "metainfo.text", "pk": 47227, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Jarom\u00edr, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; \u2020 Prag, 16. 10. 1914.", "source": 103}}, {"model": "metainfo.text", "pk": 47228, "fields": {"kind": 130, "text": "Sohn des Dichters Franz Ladisl. C., kam mit seinem Vater nach Breslau, wo er die unteren Klassen des kathol. Gymn. besuchte, Deutsch lernte und sein erstes Herbarium anlegte. 1849 kehrte die Familie nach Prag zur\u00fcck. Nach dem Tode des Vaters nahm sich der Physiologe Purkyne seiner an und bei ihm lernte C. auch die exakte Methode der mikroskopischen Untersuchung. Noch vor Beendigung seiner Studien erschienen die ersten botanischen Aufs\u00e4tze. Nach Vollendung der Univ. wurde er Gymnasialsupplent in Komotau, wo er die Flora des Erzgebirges kennenlernte. 1860 Kustos am Botanischen Mus. in Prag, 1863 Dr.phil., 1866 Doz. an der Prager Technik, dann Vorstand der botanischen Sektion des \u201eKomitees f\u00fcr die naturwiss. Durchforschung B\u00f6hmens\u201c und Mitgl. der \u201eB\u00f6hmischen Ges. d. Wiss.\u201c\n", "source": 104}}, {"model": "metainfo.text", "pk": 47229, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Ladislav, Botaniker. * Prag, 29. 11. 1834; \u2020 Prag, 24. 11. 1902.", "source": 104}}, {"model": "metainfo.text", "pk": 47230, "fields": {"kind": 130, "text": "Gr\u00fcndete 1842 eine Fabrik f\u00fcr Blechblasinstrumente und baute eine Anzahl versch. geformter Kontraba\u00dfinstrumente f\u00fcr die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n", "source": 105}}, {"model": "metainfo.text", "pk": 47231, "fields": {"kind": 131, "text": "Cerven\u00fd\u00a0V\u00e1clav Franti\u0161ek, Instrumentenmacher. * Dubec (B\u00f6hmen), 27. 9. 1819; \u2020 K\u00f6niggr\u00e4tz, 19. l. 1896.", "source": 105}}, {"model": "metainfo.text", "pk": 47232, "fields": {"kind": 130, "text": "Sohn des Malers Matthias Ch., befa\u00dfte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. K\u00fcnste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n", "source": 106}}, {"model": "metainfo.text", "pk": 47233, "fields": {"kind": 131, "text": "Charlemont\u00a0Hugo de, Maler. * Jamnitz, 18. 3. 1850; \u2020 Wien, 18. 3. 1939.", "source": 106}}, {"model": "metainfo.text", "pk": 47234, "fields": {"kind": 130, "text": "Stud. in Prag, 1771 Baccal., 1772 Priester, 1777 Pfarrer, 1779 Mitgl. des Prager Domkapitels, 1795 Bischof von Canea in partib., 1802 Bischof von Leitmeritz, hier als \u201eVater der Armen\u201c gepriesen, 1814 F\u00fcrsterzb. von Prag, 1815 inthronisiert. Gr\u00fcndete Schulen und Wohlt\u00e4tigkeitsanstalten.\n", "source": 107}}, {"model": "metainfo.text", "pk": 47235, "fields": {"kind": 131, "text": "Chlumczansk\u00fd\u00a0Wenzel Leopold von, Bischof. * Hostitz (B\u00f6hmen), 15. 11. 1749; \u2020 14. 6. 1830.", "source": 107}}, {"model": "metainfo.text", "pk": 47236, "fields": {"kind": 130, "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881\u201386 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollm\u00e4chtigter Min. in Belgrad, vertrat 1908 \u00d6sterr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913\u201315 a o. und bevollm\u00e4chtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der V\u00f6lkerbunds- und Friedensbewegung t\u00e4tig, Pr\u00e4s. der \u00f6sterr. V\u00f6lkerbundliga; Pazifist; Freund und F\u00f6rderer von Kunst und Wiss.\n", "source": 121}}, {"model": "metainfo.text", "pk": 47237, "fields": {"kind": 131, "text": "Dumba\u00a0Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; \u2020 Bodensdorf/Ossiachersee, 6. 1. 1947.", "source": 121}}, {"model": "metainfo.text", "pk": 47238, "fields": {"kind": 130, "text": "Stud. in Stuttgart und Berlin, arbeitete l\u00e4ngere Zeit im Atelier Siccardsburgs und Van der N\u00fclls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n", "source": 120}}, {"model": "metainfo.text", "pk": 47239, "fields": {"kind": 131, "text": "Doderer\u00a0Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; \u2020 Wien, 13. 5. 1900.", "source": 120}}, {"model": "metainfo.text", "pk": 47240, "fields": {"kind": 130, "text": "Sohn eines Bauern, zeigte fr\u00fch Interesse f\u00fcr Schnitzen und Zeichnen, aber erst nach dem Tode des Vaters gab er den Hof auf und ging 1860 nach Innsbruck, um bei Stolz die Bildschnitzerei zu erlernen. Auf dessen Rat wandte er sich der Malerei zu, ging 1862 an die Akad. in M\u00fcnchen, 1863\u201365 nach Paris, dann nach Tirol zur\u00fcck, 1867 wieder nach M\u00fcnchen, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einflu\u00df auf ihn aus\u00fcbte. 1878 Prof. an der M\u00fcnchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist au\u00dferdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten b\u00e4uerlichen Genremalerei.\n", "source": 118}}, {"model": "metainfo.text", "pk": 47241, "fields": {"kind": 131, "text": "Defregger\u00a0Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; \u2020 M\u00fcnchen, 2. 1. 1921.", "source": 118}}, {"model": "metainfo.text", "pk": 47242, "fields": {"kind": 130, "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899\u20131901 unter der Leitung von Sickel und Pastor am \u00d6sterr. Hist. Inst. in Rom, haupts\u00e4chlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917\u201346 (mit Unterbrechung von 1938\u201345) Ordinarius f\u00fcr Geschichte der Neuzeit. D., ein guter Kenner der Best\u00e4nde des Vat. Geheimarchivs, war 1929\u201338 als Nachfolger Pastors Dir. des \u00d6sterr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das \u00d6sterr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n", "source": 119}}, {"model": "metainfo.text", "pk": 47243, "fields": {"kind": 131, "text": "Dengel\u00a0Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; \u2020 Innsbruck, 9. 9. 1947.", "source": 119}}, {"model": "metainfo.text", "pk": 47276, "fields": {"kind": 130, "text": "Startete 1926 das erstemal bei einem Sch\u00fclerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen f\u00fcr M\u00e4dchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der M\u00e4dchen einen 1. und zwei 2. Pl\u00e4tze. 1929 gewann sie das Verbands-Neulings-Laufen f\u00fcr Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen f\u00fcr Damen in Innsbruck, Grummh\u00fcbel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen f\u00fcr Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Z\u00fcrich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die \u00f6sterr. Meisterschaft im Kunstlaufen f\u00fcr Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen f\u00fcr Damen in Z\u00fcrich und am Semmering. 1933 wurde sie abermals \u00f6sterr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine t\u00fcck. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein j\u00e4hes Ende.\n", "source": 122}}, {"model": "metainfo.text", "pk": 47277, "fields": {"kind": 131, "text": "Holovsky\u00a0Hilde, Kunstl\u00e4uferin. * Wien, 29. 4. 1917; \u2020 Wien, 3. 7. 1933.", "source": 122}}, {"model": "metainfo.text", "pk": 47384, "fields": {"kind": 130, "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887\u201394 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894\u20131903 Primarius an der Internen Abt. des K. Franz-Josef-Spitals und am Allg. Krankenhaus in Wien. 1901 tit. ao. Prof. an der Univ. Wien. 1903 o. Prof. f\u00fcr Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der \u00c4rzte in Wien, Mitgl. der Dt. Ges. f\u00fcr innere Med. und der Dt. Naturforscher und \u00c4rzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n", "source": 134}}, {"model": "metainfo.text", "pk": 47385, "fields": {"kind": 131, "text": "Lorenz\u00a0Heinrich, Internist. * Mies (Str\u00edbro, B\u00f6hmen), 13. 4. 1859; \u2020 Graz, 25. 3. 1945.", "source": 134}}, {"model": "metainfo.text", "pk": 47388, "fields": {"kind": 130, "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der \u201eKorrespondenz Wilhelm\u201c, die Polizei- und Hof\u00e4mter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim \u201eIllustrierten Wiener Extrablatt\u201c; 1876 war L. Kriegsberichterstatter im serb.-t\u00fcrk., 1877 im russ.-t\u00fcrk. und 1885 im bulgar.-serb. Krieg, 1878 in Bosnien. Ebenfalls als Reporter nahm L. am mazedon. Aufstand teil. Im Dienste seiner Redaktion unternahm er in den Folgejahren weite Reisen durch Europa, Nordamerika und weite Gebiete Afrikas. Am 2. 6. 1889 fuhr er mit einem Fiaker nach Paris zur Weltausst., wo ihm am 22. 6. ein triumphaler Empfang bereitet wurde. 1894 wurde er bei dem genannten Bl. stellvertretender Schriftleiter, 1898 (gem. mit J. Bauer, s.d.) Chefredakteur. L. war durch Feuilletons, Wr. Sittenschilderungen, Lokal- und Reiseberichte in weiten Kreisen bekannt geworden. Er war von wirkungsvoller Darstellungsf\u00e4higkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalit\u00e4t. Das \u201eIllustrierte Wiener Extrablatt\u201c war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des \u201eArmenvaters\u201c in seinem Bl. sowie als Viennensia-Sammler.\n", "source": 133}}, {"model": "metainfo.text", "pk": 47389, "fields": {"kind": 131, "text": "L\u00f6wy\u00a0Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (\u00dadlice, B\u00f6hmen), 14. 9. 1851; \u2020 Wien, 27. 12. 1905.", "source": 133}}, {"model": "metainfo.text", "pk": 47394, "fields": {"kind": 130, "text": "Sohn eines F\u00e4rbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und er\u00f6ffnete 1823 im 1. Bez. in der Weihburgg. einen Laden \u201eZur Kaiserin von \u00d6sterreich\u201c, 1824 einen Laden K\u00e4rntnerstr. 940, der 1844 vergr\u00f6\u00dfert wurde. 1824 wurde L. Meister und B\u00fcrger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glash\u00e4ndler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & G\u00f6rner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergr\u00f6\u00dferten Gesch\u00e4ftes vollst\u00e4ndig erneuert. L., nicht nur Glash\u00e4ndler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er h\u00e4ufig Reisen in Begleitung seiner S\u00f6hne Josef oder Ludwig unternahm), versuchte, nach franz\u00f6s. Pre\u00dfglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so da\u00df er viel franz\u00f6s. Pre\u00dfglas einf\u00fchren mu\u00dfte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenst\u00e4nde wurden nach Wien geliefert bzw. wurden auch Gegenst\u00e4nde nach L.s Entw\u00fcrfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten t\u00e4tig war, bezog Glas aus den b\u00f6hm. H\u00fctten und lie\u00df nach eigenen Mustern arbeiten. 1823\u201355 wurden Gl\u00e4ser im Biedermeierstil erzeugt. Die Fa. beteiligte sich an den Gewerbsproduktenausst. 1839 und 1845 in Wien, fertigte Spiegel und Luster an, wurde 1848 Sieger in einem Wettbewerb um die Beleuchtungseinrichtung im Palais des Vizekg. von \u00c4gypten und arbeitete f\u00fcr den Palazzo Reale in Venedig.\n", "source": 132}}, {"model": "metainfo.text", "pk": 47395, "fields": {"kind": 131, "text": "Lobmeyr\u00a0Josef, Fabrikant. * Grieskirchen (O.\u00d6.), 17. 3. 1792; \u2020 Wien, 8. 5. 1855.", "source": 132}}, {"model": "metainfo.text", "pk": 47402, "fields": {"kind": 130, "text": "Absolv. das Realgymn.; arbeitete bis 1868 f\u00fcr die Z. \u201eIllustrierte Welt\u201c, gab dann das demokrat. Bl. \u201eFreie Volksstimme\u201c heraus, war Korrespondent ausl\u00e4nd. Ztg. und begr\u00fcndete gem. mit S. Spitz 1870/71 das \u201e\u00d6sterreichisch-ungarische Volksblatt f\u00fcr Stadt und Land\u201c. Angeregt durch seine Bekanntschaft mit dem National\u00f6konomen L. v. Stein stud. er Volkswirtschaft und Statistik und gr\u00fcndete 1874 das Fachbl. \u201eGambrinus\u201c, welches gro\u00dfes Ansehen geno\u00df. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und N\u00e4hrausst. in Wien, 1904 k. Rat, Pr\u00e4s. des \u00f6sterr. Fachschriftstellerverbandes, Vizepr\u00e4s. des Reichsverbandes \u00f6sterr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n", "source": 130}}, {"model": "metainfo.text", "pk": 47403, "fields": {"kind": 131, "text": "Lichtblau\u00a0Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; \u2020 Abbazia (Opatija, Istrien), 10. 5. 1908.", "source": 130}}, {"model": "metainfo.text", "pk": 47404, "fields": {"kind": 130, "text": "Nach Absolv. der jurid. Stud. in Wien 1898 Konzipient in der k. k. Finanzprokuratur in Wien, dann Rechtspraktikant (Auskultant) beim Landesgericht Innsbruck, 1899 Richteramtspr\u00fcfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht f\u00fcr Zivilrechtssachen in Wien und 1927 Rat des Oberlandesgerichtes Wien. 1931 Vorsitzender Rat des Oberlandesgerichtes, wurde er im gleichen Jahr zum Rat des Verwaltungsgerichtshofes ernannt. L., der schon als Richter am Exekutionsgericht Wien durch seine vorz\u00fcglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich gr\u00f6\u00dfte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das \u00f6sterr. Exekutionsrecht l\u00fcckenlos erfa\u00dft und seinen Zusammenhang mit den \u00fcbrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsvertr\u00e4gen niedergelegt, tw. ber\u00fccksichtigt und dadurch die Exekutionsgrunds\u00e4tze eines gro\u00dfen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n", "source": 131}}, {"model": "metainfo.text", "pk": 47405, "fields": {"kind": 131, "text": "Lichtblau\u00a0Ludwig, Jurist. * Olm\u00fctz (Olomouc, M\u00e4hren), 25. 2. 1875; \u2020 Wien, 19. 12. 1935.", "source": 131}}, {"model": "metainfo.text", "pk": 47410, "fields": {"kind": 130, "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtspr\u00fcfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. f\u00fcr Botanik an der Univ. Graz, 1868 ao., 1869 o. Prof., 1876/77 Dekan, 1884/85 Rektor, 1873 erhielt er auch die Dion. des Botan. Gartens und die Supplierung der Lehrkanzel f\u00fcr Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begr\u00fcnder des Botan. Inst. der Univ., das gegen\u00fcber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatb\u00fccherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und T\u00fcbingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Pr\u00e4s. des Naturwiss. Ver. f\u00fcr Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Ver\u00f6ff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die \u00fcber Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbst\u00e4ndig erschienenen Werke geh\u00f6ren dazu, von denen die umfangreiche Monographie \u201eUntersuchungen \u00fcber die Lebermoose\u201c in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im K\u00e4rntner Landtag (1869\u201372) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n", "source": 128}}, {"model": "metainfo.text", "pk": 47411, "fields": {"kind": 131, "text": "Leitgeb Hubert,\u00a0Botaniker. * Portendorf b. Klagenfurt (K\u00e4rnten), 20. 10. 1835; \u2020 Graz, 5. 4. 1888 (Selbstmord).", "source": 128}}, {"model": "metainfo.text", "pk": 47414, "fields": {"kind": 130, "text": "Vater des Anatomen J\u00f3zsef v. L. (s. d.), Gro\u00dfvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Pre\u00dfburg stud. er Med. an den Univ. Wien und Pest, 1799 Dr. med. und Chirurgus des Kom. Gran. 1808 Prof. der Physiol. und der Anatomie an der Univ. Pest, 1809/10 und 1815\u201317 Dekan, 1818/19 Rektor. 1819 Prof. der Physiol. an der Univ. Wien. 1825 Statthaltereirat und Protomedicus, war er bis zu seinem Tode Dir. der Pester med. Fak. 1808 wurde er in den ung. Adelsstand erhoben. L., einer der ersten, der die Pockenimpfung in Ungarn anwandte (1799), erwarb sich auch 1831 gro\u00dfe Verdienste um die Bek\u00e4mpfung der Cholera. Er ma\u00df den psych. Vorg\u00e4ngen bei Erkrankungen und auch in der Therapie gro\u00dfe Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n", "source": 129}}, {"model": "metainfo.text", "pk": 47415, "fields": {"kind": 131, "text": "Lenhoss\u00e9k\u00a0Mih\u00e1ly Ign\u00e1c von, Physiologe. * Pre\u00dfburg, 11. 5. 1773; \u2020 Ofen (Buda, Ungarn), 11. 2. 1840.", "source": 129}}, {"model": "metainfo.text", "pk": 47418, "fields": {"kind": 130, "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen K\u00fcnste in Wien (bei Griepenkerl, s.d.) und M\u00fcnchen (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gr\u00fcndung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, M\u00e4rchen- und Landschaftsbildern, bet\u00e4tigte sich aber nach Gr\u00fcndung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einflu\u00df, mit au\u00dferordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schlo\u00df Esterhazy bei Pre\u00dfburg, Privatwohnungen der Maler Goltz und Ranzoni), B\u00fchnen- und Kost\u00fcmentw\u00fcrfe, Stickereien, F\u00e4cher, Kassetten, M\u00f6bel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60j\u00e4hrigen Regierungsjubil\u00e4um von K. Franz Joseph I. (s. d.) 1908. 1900\u201303 war er (als Vorg\u00e4nger von A. Roller) Ausstattungschef der Wr. Hofoper.\n", "source": 125}}, {"model": "metainfo.text", "pk": 47419, "fields": {"kind": 131, "text": "Lefler\u00a0Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; \u2020 Wien, 14. 3. 1919.", "source": 125}}, {"model": "metainfo.text", "pk": 47420, "fields": {"kind": 130, "text": "Tochter eines Rechtsanwaltes; stud. an den Univ. Wien und Heidelberg (M. Weber) Staatswiss., 1918 Dr.rer.pol. Nach 1918 redigierte sie in Wien die Frauenbeilage der Gewerkschaftsztg. \u201eDer Metallarbeiter\u201c und arbeitete als Sekret\u00e4rin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 \u00fcbernahm sie das Referat f\u00fcr Frauenarbeit in der Wr. Kammer f\u00fcr Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. \u201eArbeit und Wirtschaft\u201c. L., welche sich der Sozialdemokrat. Partei \u00d6sterr. angeschlossen hatte, heiratete 1921 den Redakteur der \u201eArbeiter-Zeitung\u201c Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den sp\u00e4teren Vorsitzenden der Vereinigung der Zeitungskorrespondenten bei den Vereinten Nationen. Sie bekleidete in der Bezirksorganisation Wien-Innere Stadt die Funktionen der Vorsitzenden des Bezirksbildungsausschusses und des Bezirksfrauenkomitees sowie der Obmannstellvertreterin der Bezirksorganisation. 1933 wurde sie in das Zentralfrauenkomitee der Sozialdemokrat. Partei berufen. 1934 war sie mit Otto L. eines der Gr\u00fcndungsmitgl. der illegalen Partei der \u201eRevolution\u00e4ren Sozialisten\u201c \u00d6sterr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der \u201eRevolution\u00e4ren Sozialisten\u201c. 1938 verhalf sie ihrem Mann zur Flucht ins Ausland, sie selbst wurde knapp vor der beabsichtigten Abreise verhaftet. Von Herbst 1939 bis zu ihrer Ermordung war sie im KZ Ravensbr\u00fcck.\n", "source": 126}}, {"model": "metainfo.text", "pk": 47421, "fields": {"kind": 131, "text": "Leichter\u00a0K\u00e4the, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; \u2020 Ravensbr\u00fcck (Brandenburg), 17. 3. 1942 (KZ).", "source": 126}}, {"model": "metainfo.text", "pk": 47422, "fields": {"kind": 130, "text": "Neffe des Gro\u00dfh\u00e4ndlers und Bankiers Markus Leidesdorfer v. Neuwall (s. d.); sollte Kaufmann werden, wandte sich aber gegen den Willen der Eltern dem Schauspielerberuf zu und debut. 1830 unter dem Namen Wallner in Krems. \u00dcber Bad Ischl, Wr. Neustadt, Laibach, Agram etc. kam L. 1835 nach Wien, wo er zuerst im Theater an der Wien und dann im Theater in der Leopoldstadt vorwiegend in Raimund-Rollen auftrat und besonders nach Raimunds Tod 1836, durch seine Raimunds Schauspielkunst getreu kopierende Darstellungsweise, gro\u00dfe Erfolge errang. 1839 ging er f\u00fcr zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle gr\u00f6\u00dferen St\u00e4dte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei St\u00e4dten f\u00fchrte L. auch die Dion. des Theaters. 1854 pachtete er das K\u00f6nigst\u00e4dt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Gesch\u00e4ftst\u00fcchtigkeit, seinen Flei\u00df und k\u00fcnstler. Sp\u00fcrsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerb\u00fchne erweitert hatte, bald lokale Ber\u00fchmtheit. 1864 lie\u00df er es vergr\u00f6\u00dfern und renovieren und er\u00f6ffnete es am 3. 12. als \u201eWallnertheater\u201c. Hatte er in den ersten Jahren seiner Dions.-T\u00e4tigkeit vor allem das moderne franz\u00f6s. Sittenst\u00fcck gepflegt, verwirklichte er in sp\u00e4teren Jahren mit Hilfe des Dichters D. Kalisch und seines vorz\u00fcglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gr\u00fcnden das Theater an C. Lebrun und unternahm nun einige gr\u00f6\u00dfere Reisen. Seine Reise- und Theatererlebnisse ver\u00f6ff. L., der auch Mitarbeiter der \u201eGartenlaube\u201c war, in viel gelesenen B\u00fcchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n", "source": 127}}, {"model": "metainfo.text", "pk": 47423, "fields": {"kind": 131, "text": "Leidesdorf\u00a0Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; \u2020 Nizza, 19. 1. 1876.", "source": 127}}, {"model": "metainfo.text", "pk": 47428, "fields": {"kind": 130, "text": "Bruder des Folgenden, Onkel des Juristen Stanko L. (s. d.); stud. an der Techn. Hochschule in Graz. Ab 1866 im Dienst an der Milit\u00e4rgrenze, zuerst in Temesv\u00e1r, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent f\u00fcr Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890\u201394 Sekret\u00e4r des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der \u201eVijesti\u201c (Berr.) dieses Ver. L. baute Stra\u00dfen (Ogulin\u2013Novi, Alt-Gradi\u0161ka\u2013Lipik), die Kanalisation des Jelas-Feldes und im s\u00fcd\u00f6stlichen Syrmien, Wasserleitungen f\u00fcr die St\u00e4dte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan f\u00fcr die Kanalisation von Agram etc.\n", "source": 124}}, {"model": "metainfo.text", "pk": 47429, "fields": {"kind": 131, "text": "Lapaine\u00a0Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; \u2020 Agram, 21. 2. 1923.", "source": 124}}, {"model": "metainfo.text", "pk": 47430, "fields": {"kind": 130, "text": "Tochter des Gro\u00dfindustriellen Josef v. Schroll (1821\u201391), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849\u201389), B\u00fcrgermeister der Stadt Braunau 1883\u201389, in zweiter Ehe ab 1892 mit dem Politiker und Gro\u00dfindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, \u00f6ff. Gesellschafterin der Fa. Benedikt Schrolls Sohn. Nach dem Tode Josef v. Schrolls wurden beide Schwestern Inhaberinnen der Firma, Johanna L., nach Vereinbarung, 1908 Alleininhaberin und Seniorchefin. Sie leitete die vielseitigen Industriebetriebe mit gro\u00dfer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (B\u00fcchereien, Krankenkasse, Spital etc.) f\u00fcr die bereits um die Jahrhundertwende ca. 2600 z\u00e4hlenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer L\u00e4ndchens.\n", "source": 123}}, {"model": "metainfo.text", "pk": 47431, "fields": {"kind": 131, "text": "Langer-Schroll\u00a0Johanna, Gro\u00dfindustrielle. * Braunau (Broumov, B\u00f6hmen), 2. 10. 1850; \u2020 ebenda, 9. 11. 1926.", "source": 123}}, {"model": "metainfo.text", "pk": 47432, "fields": {"kind": 130, "text": "Enkel des Freiburger Physikers J. J. M\u00fcller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van\u2019t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. M\u00fcnster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in M\u00fchlhausen, 1906 Priv.Doz. an der Univ. Basel, 1909 tit. Prof. M. wirkte ab 1911 als Leiter des anorgan.-wiss. und analyt. Laboratoriums bei den Farbenfabriken Bayer & Co. (Leverkusen), ab 1926 als Nachfolger J\u00fcptners (s. d.) als o. Prof. f\u00fcr chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich t\u00e4tig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivit\u00e4t und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefels\u00e4ure und Zement aus Gips und Ton gewann gro\u00dfe techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n", "source": 144}}, {"model": "metainfo.text", "pk": 47433, "fields": {"kind": 131, "text": "M\u00fcller\u00a0Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; \u2020 Wien, 9. 12. 1941.", "source": 144}}, {"model": "metainfo.text", "pk": 47446, "fields": {"kind": 130, "text": "Tochter eines Gutsbesitzers; kr\u00e4nkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkr\u00e4mpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so gro\u00dfes Aufsehen, da\u00df an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von G\u00f6rres, Brentano, Steinle, M\u00f6hler, D\u00f6llinger, Reisach und Ketteler besucht. 1841 \u00fcbersiedelte sie in das Tertiarinnenkloster in Kaltern. Als Mitgl. des 3. Ordens des Hl. Franziskus wurde sie seelsorglich von P. K. Soyer OFM betreut. Nach langem Leiden starb sie an Blutzersetzung. Die amtlichen Berichte \u00fcber sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n", "source": 143}}, {"model": "metainfo.text", "pk": 47447, "fields": {"kind": 131, "text": "M\u00f6rl\u00a0Maria Theresia von, Stigmatisierte. * Kaltern (S\u00fcdtirol), 16. 10. 1812; \u2020 ebenda, 11. 1. 1868.", "source": 143}}, {"model": "metainfo.text", "pk": 47448, "fields": {"kind": 130, "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer lie\u00df sich M. im Oktober 1843 als Matrose f\u00fcr die Kriegsmarine anwerben und machte 1844\u201346 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 k\u00e4mpfte er als Kmdt. eines Kanonenbootes in der Lagune, vor Ancona und bei der Blockade von Venedig. Nach verschiedenen Einschiffungen und Verwendungen in den folgenden Jahren war M. 1859 vor Lissa Kmdt. der Korvette \u201eMinerva\u201c, 1861/62 hatte er in Pola die Bauleitung der Fregatte \u201eSchwarzenberg\u201c, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapit\u00e4n mit Auszeichnung kommandierte. 1867 als Insel- und Festungskmdt. von Lissa, 1868 als Kmdt. des Seearsenals in Pola in Verwendung, unternahm M. 1869 eine Mission nach England, im Oktober dieses Jahres kommandierte er die in der Bucht von Cattaro zur Bek\u00e4mpfung des Aufstandes in S\u00fcddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871\u201383 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine gro\u00dfe administrative Begabung hatte, besa\u00df eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauauftr\u00e4gen f\u00fcr Schiffe trat er entschieden f\u00fcr die Besch\u00e4ftigung inl\u00e4nd. Firmen ein. Er war ein begeisterter Sammler klass. Altert\u00fcmer und ein bedeutender Numismatiker. Teile der \u201eSammlung Millosicz\u201c, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n", "source": 142}}, {"model": "metainfo.text", "pk": 47449, "fields": {"kind": 131, "text": "Millosicz\u00a0Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; \u2020 Leoben (Stmk.), 24. 7. 1890.", "source": 142}}, {"model": "metainfo.text", "pk": 47450, "fields": {"kind": 130, "text": "Sohn eines Weinbauern; stud. mit Hilfe seines Onkels, eines Landpfarrers, an den Gymn. in Warasdin und Marburg a. d. Drau, dann Phil. und Jus an den Univ. Graz (1838 Dr. phil.) und Wien (1841 Dr. jur.). 1837/38 suppl. er die philosoph. Lehrkanzel an der Univ. Graz und versuchte erfolglos, sich an der Univ. Innsbruck zu habil. Nach k\u00fcrzerer Praxis in Wr. Anwaltskanzleien bekam er 1844 mit Hilfe Kopitars (s. d.), der auf seine sprachliche Begabung aufmerksam geworden war, eine Amanuensisstelle an der Hofbibl. (1850 Skriptor, 1862 i. R.). 1849 wurde er ao., 1850 o. Prof. der slaw. Philol. und Literatur an der Univ. Wien, 1851/52, 1856/57 Dekan, 1854/55 Rektor, 1885 i. R. Pr\u00e4s. der Pr\u00fcfungskomm. f\u00fcr Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866\u20131869 Sekret\u00e4r der phil.-hist. Kl.), 1862 lebensl\u00e4ngliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Pr\u00e4s. des akadem. Ver. \u201eSlovenija\u201c in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zuk\u00fcnftigen \u00f6sterr. F\u00f6deration verlangte. 1849 war er slowen. Abg. beim Reichstag in Kremsier, wo er durch besonnene Haltung die Sympathie Stadions erweckte, der dann seine Ernennung zum ersten Prof. der Slawistik in \u00d6sterr. bewirkte. M., der schon im Gymn. gro\u00dfe sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einflu\u00df Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begr\u00fcnder der slaw. Philol. In der Kritik der Vergleichenden Grammatik des Sanskrit, Zend, Griech., Latein., Litau., Got. und Dt. von Bopp bewies M. 1844 die Notwendigkeit wiss. Erforschung nicht nur der von Bopp behandelten, sondern auch aller slaw. Sprachen und verfolgte unerm\u00fcdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewu\u00dftes Streben aller V\u00f6lker Europas nach einer gem. Sprache festzustellen (Neueurop\u00e4ismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkm\u00e4ler des Altslowen., wie M. irrt\u00fcmlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, M\u00e4hren und Ru\u00dfland bezeichnete, verfa\u00dfte und publ. er die \u201eVergleichende Grammatik der slavischen Sprachen\u201c. Vom Altslowen. ausgehend, analysierte er in unz\u00e4hligen Beispielen slaw. Spracherscheinungen und lie\u00df scheinbar nur das Wei\u00dfruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem \u201eeigenth\u00fcmlichen Zauber der Sprache\u201c, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdr\u00fcckte. Verh\u00e4ngnisvoll wurde ihm die von Kopitar \u00fcbernommene \u201ePannonische Theorie\u201c, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im \u00f6stlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. \u201eLexicon palaeoslovenico-graeco-latinum\u201c und das \u201eEtymologische W\u00f6rterbuch der slavischen Sprachen\u201c die bedeutendsten. Im Sinne des Neueurop\u00e4ismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begr\u00fcnder der rum\u00e4n. und alban. Philol. wurde. Er verfa\u00dfte umfangreiche Stud. \u00fcber die Mundarten und Wanderungen der Zigeuner Europas und edierte erfolgreich altkirchenslaw. Texte sowie serb. und griech. hist. Quellen. M. war auch in der Lehnwort-, Personen- und Ortsnamenforschung sowie in der Analyse der Volksepik bahnbrechend. Geringere Bedeutung haben dagegen seine mytholog. und polem. Schriften.\n", "source": 141}}, {"model": "metainfo.text", "pk": 47451, "fields": {"kind": 131, "text": "Miklosich\u00a0Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomer\u0161cak pri Ljutomeru, Unterstmk.), 20. 11. 1813; \u2020 Wien, 7. 3. 1891.", "source": 141}}, {"model": "metainfo.text", "pk": 47460, "fields": {"kind": 130, "text": "Stud. an der Exportakad. (Hochschule f\u00fcr Welthandel) in Wien, wo er die Lehramtspr\u00fcfung f\u00fcr h\u00f6here Handelsschulen und die Diplompr\u00fcfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule f\u00fcr Welthandel, 1931 Habil. f\u00fcr Betriebswirtschaftslehre an der Hochschule f\u00fcr Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. f\u00fcr Betriebswirtschaftslehre. 1938 wurde M. durch die Nationalsozialisten von der Hochschule entfernt. Nach Verhaftung (1942) und Verurteilung im selben Jahr zu sechs Jahren Zuchthaus wegen Kenntnis von verr\u00e4ter. Vorhaben und Unterlassung der Anzeige, w\u00e4hrend des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der B\u00f6rsenverkehr. Er verband in seinen Ver\u00f6ff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realit\u00e4t mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einflu\u00df von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbst\u00e4ndige Teildisziplin der Wirtschaftswiss. verstandenen Betriebswirtschaftslehre, von einer privatwirtschaftlich ausgerichteten Unternehmungslehre zu einer alle wirtschaftlichen Einheiten einer Volkswirtschaft untersuchenden Lehre, die somit auch die Haushalte einbeziehen sollte. Betriebs- und Volkswirtschaftslehre zeigen nach M. \u201eandere Seiten des wirtschaftlichen Geschehens\u201c, wobei von ersterer \u201eder Betrieb als eine mit konkreten Tatbest\u00e4nden und Aufgaben erf\u00fcllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens \u00fcberhaupt untrennbar verbunden erscheint\u201c.\n", "source": 140}}, {"model": "metainfo.text", "pk": 47461, "fields": {"kind": 131, "text": "Meithner\u00a0Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; \u2020 Wien, 13. 12. 1942.", "source": 140}}, {"model": "metainfo.text", "pk": 47466, "fields": {"kind": 130, "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der j\u00fcd. Deklassierten. Seine Lieder, die er in Gasth\u00e4usern und Sch\u00e4nken vortrug, sind von sozialen Motiven gepr\u00e4gt. Obwohl er im Zeitalter der gr\u00f6\u00dften K\u00e4mpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des j\u00fcd. Volksgesanges, W\u00f6lwel Zbarazer (Ehrenkranz), durchzog mit einigen Gef\u00e4hrten, die man als \u201eBroder-S\u00e4nger\u201c bezeichnete, Galizien, Rum\u00e4nien sowie Ru\u00dfland, wo sie seine wie auch \u00e4ltere j\u00fcd. Volkslieder vortrugen. Er war der erste der j\u00fcd. fahrenden Volkss\u00e4nger, der Vorl\u00e4ufer des modernen jidd. Theaters.\n", "source": 139}}, {"model": "metainfo.text", "pk": 47467, "fields": {"kind": 131, "text": "Margulies\u00a0Berl, Volkss\u00e4nger. * Brody (Galizien), ca. 1817; \u2020 b. Bukarest, ca. 1880.", "source": 139}}, {"model": "metainfo.text", "pk": 47468, "fields": {"kind": 130, "text": "Tochter des Malers Anton\u00edn M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Sch\u00fclerin ihres Vaters, dessen maler. Verm\u00e4chtnis sie aber nicht so selbst\u00e4ndig entfalten konnte wie ihre Br\u00fcder, welche sie materiell unterst\u00fctzen mu\u00dfte.\n", "source": 137}}, {"model": "metainfo.text", "pk": 47469, "fields": {"kind": 131, "text": "M\u00e1nesov\u00e1\u00a0Amalie, Malerin. * Prag, 21. 1. 1817; \u2020 Prag, Juni 1883.", "source": 137}}, {"model": "metainfo.text", "pk": 47470, "fields": {"kind": 130, "text": "Sohn des Malers Anton\u00edn M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ov\u00e1 (s. d.), Neffe des Folgenden; stud. 1838\u201351 an der Prager Akad. bei Tkadl\u00edk und Ruben, 1870/71 in D\u00fcsseldorf bei Vautier und begann unter dem Einflu\u00df der Akad. mit hist. Motiven in Genreart. Ab der zweiten H\u00e4lfte der 50er Jahre befa\u00dfte er sich mit volkst\u00fcmlichen Motiven, vor allem aus der Gegend von Bischofteinitz, und insbesondere mit Prager Typen. Er wurde zum bedeutendsten Vertreter der tschech. Genremalerei des 19. Jh. Seine Bilder haben intimen Zauber, sie sind durch den Sinn f\u00fcr die Atmosph\u00e4re des Milieus, durch Unmittelbarkeit, lyr. Zartheit, liebevollen Humor, manchmal durch melanchol. Klage gekennzeichnet. M. war auch ein ausgezeichneter Tiermaler, besonders von Pferden. Das zeichner. Werk nahm in seinem Schaffen einen bedeutsamen Platz ein. Auch als Illustrator t\u00e4tig, schuf er 52 Illustrationen zum 1. Tl. des Don Quichotte (1865, Holzschnitt). Mit seinem Bruder Josef M. begann er in den 50er Jahren ein Werk \u00fcber Trachtenstud. bei der l\u00e4ndlichen Bev\u00f6lkerung.\n", "source": 138}}, {"model": "metainfo.text", "pk": 47471, "fields": {"kind": 131, "text": "M\u00e1nes\u00a0Quido, Maler. * Prag, 17. 7. 1828; \u2020 Prag, 5. 8. 1880.", "source": 138}}, {"model": "metainfo.text", "pk": 47482, "fields": {"kind": 130, "text": "Sohn eines Privatiers und Handelsagenten; besuchte das Gymn. in Graz, war dann Schauspieleleve in Berlin, dramaturg. Berater am Stadttheater Innsbruck, Schauspieler, Szenenbildner und Regisseur an verschiedenen Provinzb\u00fchnen, 1917 am Residenztheater M\u00fcnchen, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehb\u00fcchern. Ab 1927 Autor bzw. Mitautor von Hollywood-Filmen; 1932 emigrierte er nach Frankreich und arbeitete in Paris mit dem Regisseur P. Czinner und der Schauspielerin E. Bergner zusammen, ab 1935 lebte er in London. Neben seiner dramaturg. T\u00e4tigkeit im Dokumentarfilmstudio von P. Rotha widmete er sich der Ausbildung von Filmautoren. Ungemein stilbildend, war M. der bedeutendste Drehbuchautor des dt. Stummfilms. Er arbeitete u. a. mit den Regisseuren R. Wiene, F. W. Murnau, L. Pick, L. Jessner und P. Czinner sowie mit den Schauspielern W. Krau\u00df, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Kl\u00f6pfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n", "source": 136}}, {"model": "metainfo.text", "pk": 47483, "fields": {"kind": 131, "text": "Mayer\u00a0Karl, Drehbuchautor. * Graz, 20. 2. 1894; \u2020 London, 1. 7. 1944.", "source": 136}}, {"model": "metainfo.text", "pk": 47484, "fields": {"kind": 130, "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Gesch\u00e4ftsf\u00fchrer gemacht. M.-S. besch\u00e4ftigte sich mit philosoph. und naturwiss. Stud., gr\u00fcndete 1829 das erste \u201eTiroler Mineralien-Comptoir\u201c und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im M\u00e4rz 1848 verfa\u00dfte er einen feurigen Aufruf \u201eA greachts Weartl von an alten Landesverteidiger an seini Mitbr\u00fcder\u201c, der gro\u00dfen Widerhall fand. Auf eigene Kosten r\u00fcstete er die 1. Innsbrucker Sch\u00fctzenkomp. aus, an deren Spitze er im Mai 1848 an die S\u00fcdfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein \u201eRadetzky-Album\u201c an (es enthielt Zeichnungen, Portr\u00e4ts, eine wertvolle Autographensmlg. etc.), welches er sp\u00e4ter dem Tiroler Landesmus. Ferdinandeum \u00fcbergab. M.-S. errichtete 1853 unter gro\u00dfem Kostenaufwand auf seinem Schlo\u00df B\u00fcchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gr\u00fcndete den 1. Arbeiterunterst\u00fctzungsver. und beteiligte sich an vielen humanit\u00e4ren Einrichtungen. 1865 verkaufte er sein Schlo\u00df und f\u00fchrte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. t\u00e4tig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen gro\u00dfe Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der \u201eTiroler Monatsbl\u00e4tter\u201c. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n", "source": 135}}, {"model": "metainfo.text", "pk": 47485, "fields": {"kind": 131, "text": "Mahl-Schedl von Alpenburg\u00a0Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Gr\u00fcnburg (O.\u00d6.), 27. 10. 1806; \u2020 Innsbruck, 1. 4. 1873.", "source": 135}}, {"model": "metainfo.text", "pk": 47486, "fields": {"kind": 130, "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882\u201385 war er Kapellmeister beim IR 74, 1885\u201390 Kapellmeister beim IR 28. N., ein sehr guter Geiger, vor allem aber ein vortrefflicher Dirigent, dem die Rgt.Musik des IR 74 ihren ausgezeichneten Ruf verdankt, war auch im Ausland mit viel Erfolg t\u00e4tig. Neben Rum\u00e4nien und Bulgarien z\u00e4hlen Holland und Belgien zu seinen wichtigsten k\u00fcnstler. Wirkungsst\u00e4tten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n", "source": 145}}, {"model": "metainfo.text", "pk": 47487, "fields": {"kind": 131, "text": "Nov\u00e1cek\u00a0Rudolf, Kapellmeister und Komponist. * Wei\u00dfkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; \u2020 Prag, 12. 8. 1929.", "source": 145}}, {"model": "metainfo.text", "pk": 47502, "fields": {"kind": 130, "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898\u20131903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904\u201319 wirkte er als Dir. am neugegr\u00fcndeten M\u00e4dchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes f\u00fcr Inneres und Unterricht t\u00e4tig, leitete ab 1922 die Abt. f\u00fcr p\u00e4dagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform f\u00fcr alle Mittelschulen folgte. Er unterst\u00fctzte bes. die Ver.-M\u00e4dchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkr\u00e4fte und f\u00f6rderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908\u201310 erster Obmann des Ver. Lyzeum.\n", "source": 147}}, {"model": "metainfo.text", "pk": 47503, "fields": {"kind": 131, "text": "Ortmann\u00a0Rudolf, P\u00e4dagoge. * Reichenberg (Liberec, B\u00f6hmen), 10. 3. 1874; \u2020 Wien, 22. 11. 1939.", "source": 147}}, {"model": "metainfo.text", "pk": 47506, "fields": {"kind": 130, "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegr\u00fcndete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832\u201337 Vorlesungen \u00fcber Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848\u201360 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfa\u00dfte zahlreiche Aufs\u00e4tze aus dem Gebiet der Chemie und hielt in Innsbruck viele popul\u00e4rwiss. Vortr\u00e4ge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur f\u00fcr techn. Chemie scheiterte aus Geldmangel (1838).\n", "source": 146}}, {"model": "metainfo.text", "pk": 47507, "fields": {"kind": 131, "text": "Oellacher\u00a0Josef, Pharmazeut. * Pre\u00dfburg, 16. 2. 1804; \u2020 Innsbruck, 16. 8. 1880.", "source": 146}}, {"model": "metainfo.text", "pk": 47516, "fields": {"kind": 130, "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtspr\u00fcfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg t\u00e4tig. 1918\u20131924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent f\u00fcr das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor f\u00fcr Geol. und Pal\u00e4ontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfa\u00dfte u. a. mehrere Schulb\u00fccher und red. ab 1932 die Z. \u201eIzvestja muzejskega dru\u0161tva za Kranjsko\u201c. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n", "source": 151}}, {"model": "metainfo.text", "pk": 47517, "fields": {"kind": 131, "text": "Poljanec\u00a0Leopold, Biologe und Schulmann. * Rann (Bre\u017eice, Unterstmk.), 23. 9. 1872; \u2020 Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944.", "source": 151}}, {"model": "metainfo.text", "pk": 47522, "fields": {"kind": 130, "text": "Stud. Germanistik und Polonistik bei R. M. Werner und R. Pilat an der Univ. Lemberg, wo er auch zu A. Sauer Verbindung hatte; 1897 Dr. phil. 1889\u201398 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903\u201309 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, t\u00e4tig. 1914 Priv. Doz., 1915\u201321 hielt er an der Univ. Lemberg Vorlesungen aus dt. Philol. und dt. Literaturgeschichte. 1918/19 war er provisor. Doz. der Germanistik an der Univ. Warschau. P. war u. a. ab 1920 w. Mitgl. der Lemberger Wiss. Ges. Als Literaturwissenschafter leistete P. auf dem Gebiet der H\u00f6lderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, h\u00f6chste Anerkennung fand.\n", "source": 150}}, {"model": "metainfo.text", "pk": 47523, "fields": {"kind": 131, "text": "Petzold\u00a0Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; \u2020 Lemberg (L\u2019viv), 15. 7. 1932.", "source": 150}}, {"model": "metainfo.text", "pk": 47530, "fields": {"kind": 130, "text": "Sohn des Philosophen Johann P. v. L. (1793\u20131866), Cousin des Folgenden, Neffe des Juristen und Politikers Thadd\u00e4us Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden K\u00fcnste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in D\u00fcsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden K\u00fcnste in Wien, an der er 1872\u20131901 als Prof. f\u00fcr Landschaftsmalerei wirkte, 1878\u201380 und 1897\u201399 Rektor. Nach seiner Pensionierung lebte er in N\u00fcrnberg und Berlin. \u00dcber pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf \u00d6l-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine \u00d6lbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Sch\u00fcler zu intensiven Naturstud. anhielt. Er beteiligte sich an den Wr. Akad.Ausst., u. a. 1858 und 1859. 1861 stellte er als Mitgl. im Wr. K\u00fcnstlerhaus aus, das ihm 1913 auch eine Ged\u00e4chtnisausst. widmete.\n", "source": 149}}, {"model": "metainfo.text", "pk": 47531, "fields": {"kind": 131, "text": "Peithner von Lichtenfels\u00a0Eduard, Maler und Radierer. * Wien, 18. 11. 1833; \u2020 Berlin, 22. 1. 1913.", "source": 149}}, {"model": "metainfo.text", "pk": 47536, "fields": {"kind": 130, "text": "Stud. 1839\u20131843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-M\u00fcnzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel f\u00fcr H\u00fctten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausr\u00fcstung der Labors betraut wurde. P. setzte die in Wien begonnenen chem. Arbeiten, u. a. Silberextraktion auf nassem Weg und Darstellung der reinen Uranverbindungen, fort; 1852 unternahm er in Joachimsthal im Auftrag der Obersten Montanverwaltung Versuche zur Verbesserung der Arbeitsmethoden und zur Auffindung neuer Verfahren bei der Verwertung einzelner Erze, deren Ergebnis die Silberextraktion unter Anwendung von unterschwefligsaurem Natron, Gewinnung von Nickel, Wismut und Kohlenoxyd, Ausscheidung des Arsens aus seinen Verbindungen in Erzen sowie die Darstellung der Uranfarben aus Pechblende waren. 1856 wurde in der Folge eine Uranaufbereitungsanlage in Joachimsthal gebaut. 1864 richtete P. in Wien das H\u00fcttenm\u00e4nn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum H\u00fcttenchemiker des gesamten \u00f6sterr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (sp\u00e4ter Vorstand des H\u00fcttenm\u00e4nn.-chem. Laboratoriums) ernannt. 1881 Oberbergrat, 1889 i. R., Hofrat. Erst durch P.s Verfahren der Urangewinnung aus Pechblende wurden die Forschungen des Ehepaars Curie erm\u00f6glicht.\n", "source": 148}}, {"model": "metainfo.text", "pk": 47537, "fields": {"kind": 131, "text": "Patera\u00a0Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; \u2020 Teschen (Cieszyn, \u00f6sterr. Schlesien), 26. 6. 1894.", "source": 148}}, {"model": "metainfo.text", "pk": 47540, "fields": {"kind": 130, "text": "Stud. ab 1782 an der Univ. Salzburg Phil. (1788 Mag.phil.), dann Theol. (1794 Dr. theol.); war nach seiner Priesterweihe (1793) als Seelsorger t\u00e4tig. 1801 wurde er Kanonikus des Kollegiatstiftes Maria Schnee, 1803 w. Konsistorialrat, 1810 Pfarrer und Dechant (damit auch Schuldistriktsinsp.) von Altenmarkt, 1832 erster Dechant des wiedererrichteten Kollegiatstiftes Seekirchen. R. ist der erste Historiograph des salzburg.-\u00f6sterr. Bildungswesens, \u00fcber das er grundlegende Beitrr. verfa\u00dfte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten \u00fcber theolog., p\u00e4dagog. und hist. Themen waren weit verbreitet.\n", "source": 158}}, {"model": "metainfo.text", "pk": 47541, "fields": {"kind": 131, "text": "Rumpler\u00a0Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; \u2020 Seekirchen (Salzburg), 17. 3. 1846.", "source": 158}}, {"model": "metainfo.text", "pk": 47542, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckermeisters; ab 1901 selbst\u00e4ndiger B\u00e4kkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912\u201325 im Wr. Gemeinderat, 1924\u201334 im Bundesrat; ab 1917 Vizepr\u00e4s., in der Folge Pr\u00e4s. des Dt.\u00f6sterr. Gewerbebundes. 1928 Kommerzialrat. R. hat mit seinen hist. Stud. wesentlichen Anteil am Aufschwung der Wr. Lokalgeschichtsschreibung in der Zwischenkriegszeit: Seine Geschichte des VII. und die des VIII. Wr. Gemeindebez. sind ebenso Standardwerke geblieben wie die gem. mit A. Schmieger verfa\u00dfte Stud. \u201eDas Ghetto in der Wiener Leopoldstadt\u201c (1926). Auch seine wertvollen Ver\u00f6ff. aus der Geschichte des Wr. B\u00e4ckergewerbes zeugen von R.s Flei\u00df im Erschlie\u00dfen von Quellenmaterial.\n", "source": 157}}, {"model": "metainfo.text", "pk": 47543, "fields": {"kind": 131, "text": "Rotter\u00a0Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; \u2020 Wien, 18. 9. 1945.", "source": 157}}, {"model": "metainfo.text", "pk": 47556, "fields": {"kind": 130, "text": "Aus urspr\u00fcnglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der nieder\u00f6sterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenk\u00fcrassieren die Feldz\u00fcge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in M\u00fcnchen, Berlin, Stuttgart, Stockholm und Paris t\u00e4tig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 K\u00e4mmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-d\u00e4n. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilko\u00e4r. f\u00fcr Schleswig-Holstein. Anschlie\u00dfend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der \u00f6sterr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Aufl\u00f6sung von kath. Kl\u00f6stern in russ. Polen, erzwungener \u00dcbertritt von unierten Christen zur Orthodoxie etc.) befa\u00dft. 1868 trat er wegen Differenzen mit Beust (s. d.) zur\u00fcck. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner ober\u00f6sterr. G\u00fcter Erlach und Tollet und wurde daneben in der \u00f6sterr. Innenpolitik au\u00dferordentlich aktiv. Er wurde 1869 als Vertreter des Gro\u00dfgrundbesitzes ober\u00f6sterr. Landtagsabg. 1885 Mitgl. der \u00f6sterr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des \u00f6sterr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Pr\u00e4lat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschl\u00fcssen des Frankfurter Katholikentages 1882 begr\u00fcndet wurde. 1888 wurde R. im ausw\u00e4rtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen w\u00e4hrend seiner Amtszeit geh\u00f6rten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren H\u00f6hepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein m\u00f6gliches Refugium in \u00d6sterr. zu gew\u00e4hren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) geno\u00df, \u00fcbte auch eine Vermittlert\u00e4tigkeit bei dessen famili\u00e4ren Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mu\u00dfte er auf Dr\u00e4ngen ung. Politiker von seinem Posten zur\u00fccktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssph\u00e4ren von Staat und Kirche in der sp\u00e4tjosefin. Zeit. Daneben war er Experte f\u00fcr die Grenzbereiche der r\u00f6m.-kath., unierten und orthodoxen Kirchen, auch f\u00fcr Ru\u00dfland und den Balkan. Obwohl f\u00fcr soziale Fragen aufgeschlossen, war er kein Sympathisant der Christlichsozialen, deren antisemit. Tendenzen er ablehnte. Vielfach geehrt und ausgezeichnet, u. a. Geh.Rat (1868), Kanzler des Leopold-Ordens und Gro\u00dfkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866\u20131951), folgte 1919 K. Karl (s. d) ins Exil.\n", "source": 156}}, {"model": "metainfo.text", "pk": 47557, "fields": {"kind": 131, "text": "Revertera von Salandra\u00a0Friedrich Graf, Diplomat und Politiker. * Lemberg (L\u2019viv), 21. 1. 1827; \u2020 Brixen (S\u00fcdtirol), 28. 4. 1904.", "source": 156}}, {"model": "metainfo.text", "pk": 47558, "fields": {"kind": 130, "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (N\u00d6) t\u00e4tig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814\u201324 Dir. des Priesterseminars, 1817\u201335 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. T\u00e4tigkeit. In zahlreichen Publ. besch\u00e4ftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine \u201ePastoral-Anweisung nach den Bed\u00fcrfnissen unsers Zeitalters\u201c, die als offizielles Vorlesebuch f\u00fcr alle \u00f6ff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einflu\u00df auf den Klerusnachwuchs. R., ein gro\u00dfer Wohlt\u00e4ter der kirchlichen Inst., z\u00e4hlte zu den ma\u00dfvollen Josefinern.\n", "source": 154}}, {"model": "metainfo.text", "pk": 47559, "fields": {"kind": 131, "text": "Reichenberger\u00a0Andreas, Theologe. * Wien, 24. 11. 1770; \u2020 Linz, 26. 10. 1854.", "source": 154}}, {"model": "metainfo.text", "pk": 47560, "fields": {"kind": 130, "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883\u201386 an der Hochschule f\u00fcr Bodenkultur in Wien, Forsting. Wirkte ab 1887 am bosn.-herzegowin. Landesmus. in Sarajevo (1913 Reg.Rat, 1919 i. R.) und organisierte die von ihm geleitete naturwiss. Abt. Ab 1926 Mitgl. des Ornitholog. Observatoriums in Laibach (Ljubljana). R.s Lebenswerk war der Ornithol. des Balkans gewidmet. Neben seiner T\u00e4tigkeit am Mus. in Sarajevo sammelte er Material f\u00fcr eine Beschreibung der V\u00f6gel der Marburger Umgebung und arbeitete bei der Aufstellung der ornitholog. Smlg. des Mus. in Marburg a. d. Drau (Maribor) mit, dem er eine Smlg. von Vogeleiern aus dem Drautal vermachte. R. wurde vielfach geehrt und ausgezeichnet, u. a. 1932 Dr. h. c. der Univ. Graz.\n", "source": 155}}, {"model": "metainfo.text", "pk": 47561, "fields": {"kind": 131, "text": "Reiser\u00a0Othmar, Ornithologe. * Wien, 21. 12. 1861; \u2020 Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936.", "source": 155}}, {"model": "metainfo.text", "pk": 47564, "fields": {"kind": 130, "text": "Sohn eines Baumwollwarenh\u00e4ndlers; wurde nach Absolv. der Techn. Milit\u00e4rakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898\u20131900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900\u201311 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914\u201316 war R. als Milit\u00e4rattach\u00e9 in Bukarest. 1916 wurde er als Obstlt. des Gen. Stabskorps zum Chef der Gen.Stabsabt. des l. Armeekmdo. und noch im selben Jahr zum Obst. des Gen. Stabskorps ernannt. Ab 1918 war R. Gen. Stabschef des XI. Korps, dann Gen. Stabschef der k. u. k. Besatzungstruppen in Rum\u00e4nien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Fl\u00fcgeladj. Kg. Ferdinands von Rum\u00e4nien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein B\u00fcndnis gegen das revolution\u00e4re Ru\u00dfland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen \u00d6sterr.-Ungarn, dem Dt. Reich, der T\u00fcrkei und Bulgarien einerseits und Rum\u00e4nien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n", "source": 153}}, {"model": "metainfo.text", "pk": 47565, "fields": {"kind": 131, "text": "Randa\u00a0Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, M\u00e4hren), 24. 5. 1874; \u2020 Czernowitz (Cernivci, Bukowina), 13. 8. 1941.", "source": 153}}, {"model": "metainfo.text", "pk": 47566, "fields": {"kind": 130, "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtspr\u00fcfung) u. a. bei Boltzmann (s. d.) und Frischauf (s. d.), dann an der Univ. Berlin Physik bei Helmholtz und Kirchhoff. In Graz war R. lange Mitgl. von A. v. Meinongs (s. d.) Philosoph. Societ\u00e4t. Er interessierte sich f\u00fcr Grenzgebiete der Mathematik und der Physik sowie f\u00fcr die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten ma\u00dfgeblich beeinflu\u00dft wurde. 1894\u201396 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. f\u00fcr theoret. Physik an der Univ. Innsbruck und Ass. K. Exners (s. d.) am Mathemat.-physikal. Inst. 1902 ao. Prof. an der Univ. Innsbruck, 1906 o. Prof. der mathemat. Physik an der Univ. Czernowitz (Cernivci), 1915 o. Prof. der theoret. Physik an der Univ. Graz, 1924/25 Dekan. R.\u2019 bedeutendste und tiefgreifendste Arbeit behandelt \u201eDie Grundlagen der Galilei-Newton\u2019schen Mechanik\u201c. Er ver\u00f6ff. auch einige wichtige experimentelle Arbeiten zur Frage der Gescho\u00dfgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895\u20131938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n", "source": 152}}, {"model": "metainfo.text", "pk": 47567, "fields": {"kind": 131, "text": "Radakovic\u00a0Michael, Physiker. * Graz, 25. 4. 1866; \u2020 Graz, 15. 8. 1934.", "source": 152}}, {"model": "metainfo.text", "pk": 47568, "fields": {"kind": 130, "text": "Nach der Schulausbildung in Gro\u00dfwardein (Oradea) und Temeswar (Timi\u00bfoara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der K\u00f6r\u00f6s. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von G\u00e1bor D\u00f6brentei (\u00bfGabriel D\u00f6brentei) am Burgtheater (Budai V\u00e1rsz\u00ednh\u00e1z) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, T\u00e4nzer und Inspizient t\u00e4tig war sowie seine ersten Theaterst\u00fccke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Sz\u00ednh\u00e1z) in Pest ein Engagement als Schauspieler (1837\u201354) und Bibliothekar (1837\u201340) und widmete sich schlie\u00dfl. der Regie (1854\u201373) sowie der Dramaturgie (1868\u201373). Ab 1865 war er Prof. und 1870\u201373 Dir. der Pester Schauspielschule. 1873 \u00fcbernahm er die Leitung des Nationaltheaters. Er f\u00f6rderte zahlreiche sp\u00e4ter bekannte Schauspieler und initiierte u.\u00a0a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. \u00fcber hundert Theaterst\u00fccke und zahlreiche Libretti, schrieb Schauspielerportr\u00e4ts (\u201eMagyar sz\u00edn\u00e9szek \u00e9letrajzai\u201c, 1878, 2.\u00a0Aufl. 1907) und \u00fcbers. u.\u00a0a. Goethes \u201eEgmont\u201c (1871) und \u201eFaust\u201c sowie Shakespeares \u201eRichard III.\u201c (1867) ins Ung. Sein dramaturg. Lehrbuch \u201eA dr\u00e1ma \u00e9s v\u00e1lfajai\u201c (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der franz\u00f6s. und Wr. B\u00fchnen und adaptierte diese meisterhaft f\u00fcr das ung. Publikum. Sowohl seine Lustspiele (\u201eR\u00f3zsa\u201c, 1840; \u201eLiliomfi\u201c, 1849; \u201eFenn az ernyo, nincsen kas\u201c, 1858, 7.\u00a0Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen (\u201eII. R\u00e1k\u00f3czi Ferenc fogs\u00e1ga\u201c, 1848; \u201eA tr\u00f3nkereso\u201c, 1868, 5.\u00a0Aufl. 1916, dt. \u201eDer Pr\u00e4tendent\u201c, 1881; \u201eStruensee\u201c, 1871) als auch seine unter dem Einfluss des Wr. Volksst\u00fccks und des franz\u00f6s. Melodramas entstandenen Volksst\u00fccke \u201eSz\u00f6k\u00f6tt katona\u201c (1843) und \u201eCig\u00e1ny\u201c (1853), mit denen er die Grundlage f\u00fcr diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgen\u00f6ss. Publikums. Ledigl. seine b\u00fcrgerl. Dramen (\u201eA lelenc\u201c, 1863; \u201eA f\u00e9ny \u00e1rnyai\u201c, 1865) und die St\u00fccke \u201eA strike\u201c (1871) sowie \u201eAz amerikai\u201c (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stie\u00dfen auf Unverst\u00e4ndnis. S. war einer der einflussreichsten Dramatiker des 19.\u00a0Jh. in Ungarn, seine St\u00fccke wurden in zahlreiche Sprachen \u00fcbers. und verfilmt (\u201eSz\u00f6k\u00f6tt katona\u201c, 1914; \u201eLiliomfi\u201c, 1916, 1954; \u201eCig\u00e1ny\u201c, 1925, 1941) und geh\u00f6ren auch heute noch zum Standardrepertoire der ung. B\u00fchnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Gro\u00dfwardein (Nagyv\u00e1radi Szigligeti Sz\u00ednh\u00e1z) sowie das Theater in Szolnok (Szigligeti Sz\u00ednh\u00e1z) sind nach ihm benannt. S. war ab 1840 k.\u00a0M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n", "source": 194}}, {"model": "metainfo.text", "pk": 47569, "fields": {"kind": 131, "text": "Szigligeti Ede (Edv\u00e1rd), bis 1834 J\u00f3zsef Szathm\u00e1ry, Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur. Geb. V\u00e1rad-Olaszi, Ungarn (Oradea-Olosig, RO), 8.\u00a03. 1814; gest. Budapest (H), 19.\u00a01. 1878; r\u00f6m.-kath.", "source": 194}}, {"model": "metainfo.text", "pk": 47570, "fields": {"kind": 130, "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Sch\u00e4fer; ab 1895 verheiratet mit Erna Szen\u00f3ner. \u2013 Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871\u201374 war S. 1882\u201384 Z\u00f6gling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887\u201389 die Kriegsschule in Wien. Seine milit\u00e4r. Laufbahn begann er 1882 als Gemeiner im Honv\u00e9d-Inf.baon.\u00a018. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k.\u00a0u.\u00a0k. Armee sowie bei der Honv\u00e9d und versah Truppendienst, u.\u00a0a. als Baon.kmdt., v.\u00a0a. in den Honv\u00e9d-Inf.rgt.\u00a04 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der F\u00fchrung der kgl. ung. Inf.div.\u00a038 betraut, an deren Spitze er \u2013 ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps \u2013 ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz k\u00e4mpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (U\u017eoc\u2019kyj pereval) in den Karpaten gegen die Russen. 1917 erfolgte seine Ernennung zum kgl. ung. Landesverteidigungsminister in Budapest (ab August Gen. der Inf.). Diesen Posten bekleidete er bis zum Austritt Ungarns aus der Realunion Ende Oktober 1918. Anfang 1919 wurde S. pensioniert, einen Monat sp\u00e4ter auf Gehei\u00df der Berinkey-Regierung in St.\u00a0Gotthard (Szentgotth\u00e1rd) interniert und w\u00e4hrend der R\u00e4terepublik gem. mit \u00bfJ\u00f3zsef Frh. Szter\u00e9nyi v. Brass\u00f3 in Budapest gefangen gehalten. Nach dem Sturz der R\u00e4terepublik war S. Ende 1919 Verbindungsoff. bei der franz\u00f6s. milit\u00e4r. Mission. 1921 wurde er endg\u00fcltig pensioniert, lebte danach in Budapest und wirkte als Milit\u00e4rschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I.\u00a0Kl., 1916 wurde er Kommandeur des Leopold-Ordens I.\u00a0Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Pr\u00e4dikat \u201evon Uzsok\u201c ausgez. S. war Inhaber des Honv\u00e9d-Inf.rgt.\u00a020 (1918), 1929 wurde er in den Vit\u00e9zi Rend (Ritterorden) aufgenommen, 1927\u201344 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n", "source": 195}}, {"model": "metainfo.text", "pk": 47571, "fields": {"kind": 131, "text": "Szurmay von Uzsok S\u00e1ndor (Alexander) Frh., Offizier und Politiker. Geb. Boks\u00e1nb\u00e1nya, Ungarn (Boc\u00bfa, RO), 19.\u00a012. 1860; gest. Budapest (H), 26.\u00a03. 1945.", "source": 195}}, {"model": "metainfo.text", "pk": 47580, "fields": {"kind": 130, "text": "Sohn eines Bauern. \u2013 Nach Besuch der Gymn. in Kempten im Allg\u00e4u, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St.\u00a0Florian ein (1823 Profe\u00df, 1824 Priesterweihe). 1824\u201343 wirkte er als Kaplan in der Stiftspfarre, 1843\u201354 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s.\u00a0d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 au\u00dferdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht \u00fcbertragen. 1859 wurde er Propst von St.\u00a0Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Versch\u00f6nerungen in der Stiftskirche, u.\u00a0a. durch L.\u00a0Kupelwieser (s.\u00a0d.), durchgef\u00fchrt. Daneben widmete sich S., von F.\u00a0Ser. Kurz (s.\u00a0d.) angeleitet, schon bald der Historiographie. Bereits 1834 geh\u00f6rte er zu den Initiatoren des sp\u00e4teren Mus. Francisco-Carolinum, red. 1839\u201344 dessen \u201eMusealblatt\u201c und arbeitete v.\u00a0a. an den ersten sechs Bde. des \u201eUrkundenbuchs des Landes ob der Enns\u201c (1852\u201372) mit; weiters befa\u00dfte er sich mit dem Leben von K.\u00a0Maximilian\u00a0I., ordnete die Archive der Stifte St.\u00a0Florian und Wilhering und verf. die Geschichte beider Kl\u00f6ster. Zudem besch\u00e4ftigte er sich mit dem Gr\u00fcnder von Stift Reichersberg, Propst Gerhoch, sowie mit Bischof Altmann von Passau, ferner landesgeschichtl. mit den Gf. von Schaunberg. S., der in regem Austausch mit Koch v. Sternfeld (s.\u00a0d.) stand, war u.\u00a0a. Mitgl. des Hist. Ver. f\u00fcr Unterfranken und Aschaffenburg (1841), des Hist. Ver. f\u00fcr die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k.\u00a0k. Reichshistoriographen. 1847 z\u00e4hlte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. t\u00e4tig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gew\u00e4hlt, wo er v.\u00a0a. mit dem kath.-reformer. Kreis um Johann Joseph v. G\u00f6rres in Verbindung stand. Auch bei den Bem\u00fchungen um die Errichtung des o\u00f6. Katholikenver. 1848 spielte S. eine f\u00fchrende Rolle. 1861\u201367 geh\u00f6rte er dem o\u00f6. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Pr\u00e4s. der O\u00f6. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n", "source": 193}}, {"model": "metainfo.text", "pk": 47581, "fields": {"kind": 131, "text": "St\u00fclz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23.\u00a02. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28.\u00a06. 1872; r\u00f6m.-kath.", "source": 193}}, {"model": "metainfo.text", "pk": 47584, "fields": {"kind": 130, "text": "Sohn von Josef Maria S. (s.\u00a0d.). \u2013 Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Sch\u00fcler O.\u00a0Redlichs (s.\u00a0d.) Geschichte an der Univ. Wien, 1910 Dr.\u00a0phil., und absolv. 1909\u201311 als ao.\u00a0Mitgl. den Kurs des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung. Noch im Juli 1911 ging er als Mitarb. an der von der Heidelberger Akad. der Wiss. und der Bad. Hist. Komm. vorbereiteten Ausg. der bad. Weist\u00fcmer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am \u00d6sterr. Hist. Inst. in Rom. Daneben war er 1913 nochmals f\u00fcr die Bad. Hist. Komm. t\u00e4tig und ordnete das gr\u00e4fl. Douglassche Archiv auf Schlo\u00df Langenstein im Hegau. 1914 trat er als Konzeptsaspirant in das HHStA ein, wurde 1915 Konzeptspraktikant und 1921 Staatsarchivar. Er ordnete das Konsulatsarchiv in Belgrad (1916), die Archive in Jaidhof bei Gf\u00f6hl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. \u00fcber die Urkundenabt. und leitete schlie\u00dfl. die Hss.abt. im HHStA. 1921\u201322 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. \u201eHistorischen Bl\u00e4tter\u201c, ab 1928 Mitgl. des Gesch\u00e4ftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien f\u00fcr Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao.\u00a0Prof. Als Medi\u00e4vist befa\u00dfte er sich mit Fragen der \u00f6sterr. Diplomatik, einschlie\u00dfl. der Kanzlei- und der Stadtb\u00fccher, sowie bes. mit Verfassungsgeschichte. Ab 1923 fungierte er als Dir. des Archivs der Stadt Wien und machte dieses zu einer anerkannten wiss. Einrichtung: Eine neue Archivordnung, die u.\u00a0a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30\u00a0Jahren umfa\u00dfte, trat 1924 in Kraft. Archivpraktika f\u00fcr Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Gl\u00f6ckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Au\u00dfenwirkung des Archivs ebenso wie die F\u00f6rderung der Geschichtsforschung, etwa durch die Begr\u00fcndung der \u201eStudien aus dem Archiv der Stadt Wien\u201c oder durch die Anregung zur Ver\u00f6ff. der \u201eUrkunden aus Wiener Grundb\u00fcchern zur Geschichte der Wiener Juden im Mittelalter\u201c (1931) durch L.\u00a0Sailer (s.\u00a0d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. f\u00fcr Geschichte der Stadt Wien gew\u00e4hlt worden, 1924\u201325 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gr\u00fcnden zur\u00fcck. 1926 Vizepr\u00e4s., begr\u00fcndete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n", "source": 192}}, {"model": "metainfo.text", "pk": 47585, "fields": {"kind": 131, "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21.\u00a010. 1887; gest. ebd., 19.\u00a02. 1934; evang.\u00a0AB.", "source": 192}}, {"model": "metainfo.text", "pk": 47594, "fields": {"kind": 130, "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24.\u00a04. 1879; gest. ebd., 4.\u00a02. 1952) verehel. Nach Absolv. des M\u00e4dchengymn. des Wr. Ver. f\u00fcr erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr.\u00a0phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtspr\u00fcfung f\u00fcr Mittelschulen ab. I.\u00a0d.\u00a0F. unterrichtete S. an einem Wr. M\u00e4dchengymn., befa\u00dfte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vortr\u00e4ge f\u00fcr die Vereinigung \u00f6sterr. Hochschuldoz. Athen\u00e4um. Ihr Engagement im Bereich der Frauenbildung und \u2013f\u00f6rderung f\u00fchrte 1907 zur Gr\u00fcndung eines M\u00e4dchengymn. in Wien\u00a02. Auf Grund ihres Strebens nach gediegener Berufsausbildung f\u00fcr begabte M\u00e4dchen aus \u00e4rmerem Haus gr\u00fcndete sie 1907 gem. mit Olly Schwarz einen Ver. f\u00fcr h\u00f6here kommerzielle Frauenbildung und die erste Handelsakad. f\u00fcr M\u00e4dchen in der Sch\u00f6nborngasse (Wien\u00a08), deren Leitung sie als erste Schuldir., die in den Staatsdienst \u00fcbernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. f\u00fcr ihre T\u00e4tigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n", "source": 190}}, {"model": "metainfo.text", "pk": 47595, "fields": {"kind": 131, "text": "Steindler Olga, verehel. Ehrenhaft-S., P\u00e4dagogin und Physikerin. Geb. Wien, 28.\u00a010. 1879; gest. ebd., 21.\u00a012. 1933.", "source": 190}}, {"model": "metainfo.text", "pk": 47596, "fields": {"kind": 130, "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s.\u00a0d.). S. besuchte 1902\u201310 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L.\u00a0M. Hartmann, W.\u00a0Kubitschek, Bormann (alle s.\u00a0d.) und Adolf Wilhelm; 1914 Dr.\u00a0phil. Nach Milit\u00e4rdienst 1915\u201317 habil. er sich 1919 an der Univ. Wien. 1927\u201329 war S. an der R\u00f6m.-German. Komm. des Dt. Arch\u00e4olog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der r\u00f6m. Kaiserzeit besch\u00e4ftigt, danach Doz. f\u00fcr Alte Geschichte an der Univ. Berlin, 1931\u201332 ao.\u00a0Prof. f\u00fcr alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G.\u00a0Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, k\u00fcndigte seine Stellung und verlie\u00df Dtld. 1932\u201334 war er, unterst\u00fctzt vom belg. Byzantinisten Henri Gr\u00e9goire, Gastprof. an der Univ. Br\u00fcssel. Nach der \u201eMachtergreifung\u201c Hitlers (s.\u00a0d.) im J\u00e4nner 1933 publ. er nur mehr auf Franz\u00f6s.; 1934\u201335 war er Gastprof. an der Catholic Univ. of America (Washington, D.\u00a0C.), 1937 wurde f\u00fcr ihn ein Lehrstuhl f\u00fcr byzantin. Geschichte an der Univ. L\u00f6wen eingerichtet. 1940 mu\u00dfte S. jedoch Belgien mit seiner Frau Jeanne (Eheschlie\u00dfung 1923) unter falschem Namen (M.\u00a0Sernet) verlassen. Trotz der \u00e4u\u00dferl. bedr\u00e4ngten Situation und dem st\u00e4ndigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd.\u00a0seiner \u201eHistoire de l\u2019\u00c9mpire byzantin\u201c, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verh\u00e4ltnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. t\u00e4tig.\n\n", "source": 191}}, {"model": "metainfo.text", "pk": 47597, "fields": {"kind": 131, "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19.\u00a09. 1891; gest. Freiburg (Fribourg, Schweiz), 25.\u00a02. 1945; aus j\u00fcd. Familie, ab 1932 r\u00f6m.-kath.", "source": 191}}, {"model": "metainfo.text", "pk": 47602, "fields": {"kind": 130, "text": "Sohn eines Kleinbauern. S. besuchte 1858\u201366 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur S\u00fcdarmee eingezogen und erhielt nach der Schlacht bei Custoza die silberne Tapferkeitsmedaille. Da er Priester werden wollte, desertierte er und kam 1867 in die USA. Zun\u00e4chst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des sp\u00e4teren Bischofs der Di\u00f6zese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der franz\u00f6s. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph\u00a0I. (s.\u00a0d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der gro\u00dfteils aus Dt.b\u00f6hmen und -ungarn bestehenden Gmd. und ab 1891 als Di\u00f6zesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Di\u00f6zese Lead, S.\u00a0D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in f\u00fcnf Jahren 23 neue Kirchen und Pfarreien. Durch \u00fcberm\u00e4\u00dfige Arbeit erkrankt, resignierte S. 1909 auf seine Di\u00f6zese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n", "source": 189}}, {"model": "metainfo.text", "pk": 47603, "fields": {"kind": 131, "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12.\u00a05. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15.\u00a012. 1915; r\u00f6m.-kath.", "source": 189}}, {"model": "metainfo.text", "pk": 47614, "fields": {"kind": 130, "text": "\u2013 Sohn eines Grenzers. \u0160. wurde 1870 aus der Rgt.-Milit\u00e4rschule in Otocac als Korporal zum Grenz-IR 1 ausgemustert; 1874 Lt. beim IR 51. 1882 nahm er als Rgt.-Adj. an der Niederschlagung der Unruhen in Bosnien-Herzegowina teil. 1897 Mjr. und Baon.-, 1899\u20131904 Erg\u00e4nzungsbez.kmdt. im bosn.- herzegowin. IR 4, um dessen Personalaufstockung er sich sehr verdient machte; 1903 Obstlt., 1906 Obst. und 1907 Kmdt. des Linien-IR 2. 1909 erhielt \u0160. das Kmdo. des Gendarmeriekorps f\u00fcr Bosnien-Herzegowina, 1911 GM. Ab September 1914 f\u00fchrte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Vi\u0161egrad aus die Verteidigung S\u00fcdostbosniens. Ende M\u00e4rz 1915 \u00fcbernahm er dort das Kmdo. der neu errichteten 59. Inf.-Truppen-Div., die im Juli 1915 an die Isonzofront verlegt wurde. Im September 1915 nach Syrmien r\u00fcckverlegt, wurde \u0160. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 \u00fcbernahm er das Kmdo. der 42. Honv\u00e9d-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zur\u00fcckgedr\u00e4ngt wurde. Im M\u00e4rz 1917 dem Gen.-Insp. der Fu\u00dftruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde \u0160. im Juli 1918 beurlaubt, knapp vor der Ver\u00f6ff. des Oktobermanifests jedoch im Oktober 1918 als Milit\u00e4rkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die s\u00fcdslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte \u0160. seine letzten Lebensjahre auf seinem Gut in Cluj.\n", "source": 188}}, {"model": "metainfo.text", "pk": 47615, "fields": {"kind": 131, "text": "\u0160njaric\u00a0Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rum\u00e4nien), 28. 1. 1930.", "source": 188}}, {"model": "metainfo.text", "pk": 47626, "fields": {"kind": 130, "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden K\u00fcnste, wo er bis 1907/08 (u. a. bei J\u00f3zef v. Mehoffer, s. d., und Leon Wycz\u00f3lkowski) Malerei stud., 1902\u201303 bildete er sich an der Kunstgewerbeschule in Wien weiter, 1904 unternahm er Stud.reisen durch Italien und Frankreich. S., der sich in Zakopane von einer Tuberkuloseerkrankung erholen mu\u00dfte, verbrachte den Winter 1904/5 bei den Huzulen, wo er Landschafts- und Genrebilder aus dem Leben der Goralen malte. In der Folge zeichnete er Karikaturen f\u00fcr die satir. Z. \u201eChochol\u201c (1902) und \u201eLiberum Veto\u201c (1903\u201305), 1904 ver\u00f6ff. er die Mappe \u201e30 Karikaturen\u201c, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. K\u00fcnstler \u201eSztuka\u201c und im selben Jahr Mitarbeiter des ber\u00fchmten Krakauer Kabaretts \u201eZielony Balonik\u201c, f\u00fcr das er die Inneneinrichtung des Caf\u00e9s und Einladungen entwarf. W\u00e4hrend dieser Zeit fertigte er auch Portr\u00e4ts, Karikaturen von bekannten K\u00fcnstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in \u00d6l mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) lie\u00df er sich im selben Jahr in Lemberg nieder. W\u00e4hrend seiner Milit\u00e4rdienstzeit (1914\u201317)zeichnete er Portr\u00e4ts und Karikaturen bedeutender Pers\u00f6nlichkeiten des Milit\u00e4rwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920\u201330 an der dortigen Schule f\u00fcr Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem \u0152uvre der hist. und religi\u00f6sen Thematik zuwandte; 1918\u201319 zeichnete er Karikaturen f\u00fcr die Z. \u201eSzczutek\u201c und 1920 f\u00fcr \u201eRzeczpospolita\u201c; ab 1930 lehrte er an der Akad. der bildenden K\u00fcnste in Krakau (Krak\u00f3w); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein \u0152uvre fand in zahlreichen in- und ausl\u00e4nd. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, M\u00fcnchen und Rom).\n", "source": 187}}, {"model": "metainfo.text", "pk": 47627, "fields": {"kind": 131, "text": "Sichulski\u00a0Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lw\u00f3w, Galizien (L\u2019viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; r\u00f6m.-kath.", "source": 187}}, {"model": "metainfo.text", "pk": 47630, "fields": {"kind": 130, "text": "Sohn eines Arztes und Hptm. der Sch\u00fctzenkompanie Ulten. S., der nach dem Willen seines Vaters urspr\u00fcngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden K\u00fcnste in M\u00fcnchen, wo er auch Privatunterricht nahm; anschlie\u00dfend \u00fcbersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. z\u00e4hlte die sp\u00e4tere dt. Kn. Auguste Viktoria zu seinen Sch\u00fclerinnen). 1889 geh\u00f6rte er zu den Gr\u00fcndungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s \u0152uvre umfa\u00dft vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurg\u00e4sten gro\u00dfen Anklang; seine Bedeutung liegt aber v. a. in der exakten Wiedergabe der damaligen topograph. Gegebenheiten, wodurch es ihm gelang, ein Zeugnis der dortigen Bausubstanz um 1900 f\u00fcr die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachla\u00df bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum pr\u00e4sentiert.\n", "source": 186}}, {"model": "metainfo.text", "pk": 47631, "fields": {"kind": 131, "text": "Settari\u00a0Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905.", "source": 186}}, {"model": "metainfo.text", "pk": 47634, "fields": {"kind": 130, "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869\u201373 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und N\u00d6 ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rath\u00e4user in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repr\u00e4sentationsbed\u00fcrfnis seiner Zeit stark entgegen kamen, pr\u00e4gte v. a. das Stadtbild von St. P\u00f6lten, wo er erstmals 1883 mit dem neobarock gepr\u00e4gten Hauptgeb\u00e4ude der Sparkasse in Erscheinung trat. Es folgten weitere Auftr\u00e4ge f\u00fcr kommunale Bauten und Amtsgeb\u00e4ude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgeb\u00e4udes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Geb\u00e4uden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begr\u00fcntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Sch\u00f6nbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgef\u00fchrt wurde. S. \u2013 auch im privaten Wohnbau t\u00e4tig \u2013 setzte in seinem \u0152uvre \u201edie Formimpulse des strengen Historismus unter dem Einflu\u00df der neueren Entwicklungen in einen dekorativen Repr\u00e4sentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verf\u00fcgung stehenden Formenapparates f\u00fcr zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden lie\u00df\u201c (W. Kitlitschka).\n", "source": 185}}, {"model": "metainfo.text", "pk": 47635, "fields": {"kind": 131, "text": "Sehnal\u00a0Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910.", "source": 185}}, {"model": "metainfo.text", "pk": 47640, "fields": {"kind": 130, "text": "Sohn des Badener Gmd.Sekret\u00e4rs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861\u201365 das Gymn. im Stift Heiligenkreuz, wo er auch S\u00e4ngerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) \u00fcbersiedelte die Familie (S. hatte zw\u00f6lf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verlie\u00df er den Orden auf Anraten seiner Oberen, die w\u00e4hrend des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 w\u00e4hrend einer Erkrankung den zweiten Vornamen \u201eMaria\u201c an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (N\u00d6) \u2013 wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als \u201ePapst von Marchegg\u201c bezeichnet wurde \u2013, 1879\u201386 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Gro\u00dfstadt kennen und antwortete 1882 mit der Gr\u00fcndung des \u201eKatholischen Lehrlings-Vereins\u201c, rief 1886 das \u201eLehrlingsasyl\u201c sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. \u201eDas christliche Handwerk\u201c (Vorl\u00e4ufer der jetzt noch erscheinenden \u201eKalasantiner-Bl\u00e4tter\u201c) heraus, 1889 baute er in F\u00fcnfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gr\u00fcndung der \u201eKongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz\u201c (\u201eKalasantiner\u201c), der ersten \u00f6sterr. M\u00e4nnerkongregation, die sich der Arbeiter und v. a. der Lehrlinge annehmen wollte. Diesem Auftrag versuchte S. durch Erziehung der Kinder und der Lehrlingsjugend in Horten, Heimen und Oratorien sowie durch Erteilung des Religionsunterrichtes in Grund- und Berufsschulen gerecht zu werden. Die Gemeinschaft sollte dar\u00fcber hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken \u2013 sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch \u00dcbernahme von Pfarren in Arbeitervierteln der St\u00e4dte. Weitere begleitende Gr\u00fcndungen waren: Marian. Arbeitersodalit\u00e4t, Herz Jesu-Arbeiter-Oratorium, Frauenwohlt\u00e4tigkeitsver., Mariazellerver. und Muttergottesbund. 1897\u20131926 wurden weitere elf Niederlassungen der Kongregation (u. a. auch 1902 in Budapest) errichtet. Sein soziales Engagement hat S. auch in die Tagespolitik eingreifen lassen: Er forderte z. B. die Arbeiter zur Gr\u00fcndung von Selbstschutzund Bildungsverb\u00e4nden auf und unterst\u00fctzte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder \u00f6ff. Kontroverse zur\u00fcck. Kardinal Piffl (s. d.), der ihn freundschaftl. unterst\u00fctzte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den \u201eArbeiterapostel\u201c. Dem 1949 er\u00f6ffneten Seligsprechungsproze\u00df folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.\u2019 kirchl. Gedenktag ist der 17. September.\n", "source": 181}}, {"model": "metainfo.text", "pk": 47641, "fields": {"kind": 131, "text": "Schwartz\u00a0\u2014 P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (N\u00d6), 28. 2. 1852; gest. Wien, 15. 9. 1929.", "source": 181}}, {"model": "metainfo.text", "pk": 47642, "fields": {"kind": 130, "text": "Sohn eines M\u00fcllers. Nach dem Besuch des Gymn. in Olm\u00fctz (Olomouc) 1854\u201362 stud. S. von 1862\u201367 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtspr\u00fcfung ablegte. Ab 1865 war er Mitgl. des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschlo\u00df. 1867 trat S. als Stud.Pr\u00e4fekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (\u017datec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zur\u00fcck, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Au\u00dfer als Gymn.Lehrer wirkte S. auch als Fachpr\u00fcfer an der Konsularakad. Wiss. besch\u00e4ftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und \u00fcbersichtl. Darstellungsweise auszeichnen.\n", "source": 182}}, {"model": "metainfo.text", "pk": 47643, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, M\u00e4hren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903.", "source": 182}}, {"model": "metainfo.text", "pk": 47644, "fields": {"kind": 130, "text": "Sohn des Zwirnh\u00e4ndlers Franz Sales S.; Bruder von Sebastian S., Onkel des Priesters Josef S., des Caspar und des Franz Sales S. (alle s. d.). S. besuchte das Gymn. in Linz und Kremsm\u00fcnster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und er\u00f6ffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er au\u00dferdem eine F\u00e4rberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige H\u00e4user in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den o\u00f6. Landtag gew\u00e4hlt, dem er dann auch 1861\u201379 angeh\u00f6ren sollte und in dem er als Obmann-Stellv. des Stra\u00dfenausschusses fungierte. 1864\u201373 Bgm. von Freistadt, erwarb er sich Verdienste um das Kommunalwesen, etwa durch die Errichtung der Stadtsparkasse (1866), deren 1. Dion.Vorstand er wurde. Bes. Augenmerk legte er auf die Entwicklung des st\u00e4dt. Schulwesens, zu dessen Entwicklung er ma\u00dfgebl. beitrug. So initiierte S. die Errichtung des 1867 er\u00f6ffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. gef\u00fchrt werden durfte, und richtete ferner, nach dem R\u00fcckzug der Piaristen, 1871 eine Knabenvolksschule ein. Au\u00dferdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freist\u00e4dter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n", "source": 183}}, {"model": "metainfo.text", "pk": 47645, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Kaspar, Politiker und Kaufmann. Geb. Lasberg (O\u00d6), 6. 11. 1811; gest. Freistadt (O\u00d6), 7. 5. 1879.", "source": 183}}, {"model": "metainfo.text", "pk": 47648, "fields": {"kind": 130, "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Nei\u00dfe stud. S. 1834\u201336 in Breslau (Wroclaw) und 1836\u201337 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Nei\u00dfe, 1839 in Breslau und dort im selben Jahr Referendar. S. war befreundet mit den schles. Dichtern Joseph v. Eichendorff und Friedrich v. Sallet und bereits 1836 in Berlin Mitgl. des Literatenver. \u201eDer Tunnel \u00fcber der Spree\u201c und des j\u00fcngeren Berliner Dichterver. Er bet\u00e4tigte sich journalist. vorwiegend als Theaterkritiker (\u201eTheater-Figaro\u201c, \u201eBreslauer Zeitung\u201c 1840ff.), war nach seiner R\u00fcckkehr nach Breslau 1840\u201348 ausschlie\u00dfl. f\u00fcr die Presse t\u00e4tig und wurde Mitarbeiter auch ausw\u00e4rtiger Z. (u. a. \u201eBerliner Figaro\u201c, \u201eBerliner Modenspiegel\u201c, \u201eDer Gesellschafter\u201c, \u201eDer Pilot\u201c). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des \u201eBreslauer Volks-Kalenders\u201c (bzw. \u201eDeutscher Volkskalender\u201c). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. \u201eBestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844\u201c (60 Aufs\u00e4tze, 1844), in der er die M\u00f6glichkeiten journalist. Arbeit nach Ma\u00dfgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als f\u00fcr \u00f6sterr. Verh\u00e4ltnisse bes. geeigneten Ztg.Red. aus, der geschickt zwischen den Anliegen der Autoren und der Forderungen der Zensur im Sinne Sedlnitzkys v. Choltitz (s. d.) zu vermitteln verstand. Nach Wien geholt, \u00fcbernahm S., der von Hebbel (s. d.) und Stifter gesch\u00e4tzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer T\u00e4tigkeit in der Red. der \u201ePresse\u201c, 1849, ab 1850 als verantwortl. Red. die \u201eWiener Zeitung\u201c, die in der Zeit seiner T\u00e4tigkeit um die zus\u00e4tzl. Organe \u201eAbendblatt\u201c (1852\u201357), \u201e\u00d6sterreichische Bl\u00e4tter f\u00fcr Literatur und Kunst\u201c (1852\u201357) und die \u201e\u00d6sterreichische Wochenschrift f\u00fcr Wissenschaft, Kunst und \u00f6ffentliches Leben\u201c (1863\u201365) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausl\u00e4nd. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verl\u00e4\u00dflichkeit gesch\u00e4tzt war. Zuletzt lebte er v\u00f6llig erblindet und zur\u00fcckgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anf\u00e4ngl. Bankbeamter, trat ebenfalls als Journalist hervor, sp\u00e4ter als Autor einiger Lustspiele und Schw\u00e4nke (\u201eDer Heiratsvermittler\u201c, 1886, \u201eSch\u00f6nheitspreis und Liebespreis\u201c, 1893, usw.).\n", "source": 184}}, {"model": "metainfo.text", "pk": 47649, "fields": {"kind": 131, "text": "Schweitzer\u00a0Leopold Albrecht, Journalist und Schriftsteller. Geb. Nei\u00dfe, Preu\u00dfen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (N\u00d6), 9. 7. 1896.", "source": 184}}, {"model": "metainfo.text", "pk": 47650, "fields": {"kind": 130, "text": "Nach absolv. Schulbesuch arbeitete S. zun\u00e4chst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu \u00fcbernehmen. Polit. engagiert, geh\u00f6rte er 1882\u201384 sowie 1894\u201397 dem Badener Gmd.Rat an, wo er sich v. a. f\u00fcr die Anliegen der Hauerschaft einsetzte. Bes. Verdienste um seine Heimatstadt erwarb sich S., der nach dem Tod seiner ersten Frau (1888) im selben Jahr Maria, geb. Gleichweit, ehel., bei der Bek\u00e4mpfung der Reblaus, die 1882 auch in Baden zu w\u00fcten begann. Durch das Aufpfropfen der Edelreben auf gegen den Sch\u00e4dling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weing\u00e4rten mit gro\u00dfem Erfolg angewandt hatte, konnten die Badener Weinkulturen in relativ kurzer Zeit gerettet werden. Auf Stud.Reisen nach Ungarn 1889 und 1896, in die Unterstmk. 1891 und 1898 sowie nach Kroatien 1896 verbesserte S. seine Kenntnisse, die er in Baden erfolgreich u. a. f\u00fcr seine Rebschule, in der er die angef\u00fchrte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner gro\u00dfen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom n\u00f6. Landesausschu\u00df als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Sch\u00e4dling zu unterweisen. F\u00fcr seine erfolgreiche T\u00e4tigkeit erhielt er von der Stadt Baden sowie vom Ackerbaumin. Anerkennungspreise. S., allen Neuerungen auf dem Gebiet des Weinbaus stets aufgeschlossen, entwickelte 1895 den ersten Weingartenpflug und soll 1897 die bis dahin unbekannte Neuburger Rebe eingef\u00fchrt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gr\u00fcndete er 1887 den Badener Rinderzuchtver. und besa\u00df eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte \u2013 er war Mitgl. bei mehreren Ver. \u2013, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinsch\u00e4tzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n", "source": 180}}, {"model": "metainfo.text", "pk": 47651, "fields": {"kind": 131, "text": "Schwabl\u00a0Franz, Landwirt und Weinhauer. Geb. Baden (N\u00d6), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers.", "source": 180}}, {"model": "metainfo.text", "pk": 47660, "fields": {"kind": 130, "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871\u201377 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877\u201382 Park Orchester, Amsterdam, 1882\u201383 Parlow Orchester, Hamburg, 1883\u201384 kgl. Staatskapelle Dresden. 1884\u201391 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegr\u00fcndete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mu\u00dfte er diese Stelle jedoch Oktober 1902 krankheitshalber aufgeben und zog nach Kreuznach, wo er bereits vorher Sommerkurse geleitet hatte, und widmete sich der Komposition. 1903\u201304 spielte S. im Pittsburgh Symphony Orchestra, 1904\u201309 im Philadelphia Orchestra, 1910 im Orchester der New Yorker Metropolitan Opera. S., sowohl als Orchesterspieler wie als Solist ein Virtuose von hohem Rang, gab ein noch heute verwendetes Hilfswerk f\u00fcr die Ausf\u00fchrung von schwierigen Harfenstellen in den Opern Richard Wagners heraus und wirkte auch 1903 und 1906 bei den Wagnerauff. an der Covent Garden Opera London mit. Von seinen durchwegs der Harfe gewidmeten Salonst\u00fccken ist die Mazurka, op. 12, beliebt geblieben. 1890 Kammervirtuose des Hg. Ernst von Sachsen-Altenburg. Sein Bruder Heinrich S. (geb. Wien, 25. 11. 1867; gest. Boston, Mass., USA, 17. 4. 1913) stud. 1878\u201384 ebenfalls bei Anton Zamara am Wr. Konservatorium der Ges. der Musikfreunde, trat nach einer Saison beim Parlow Orchester, Hamburg, 1885 als 1. Harfenist ins Boston Symphony Orchestra ein und lehrte am Bostoner New England Conservatory. Er trat auch als Solist bei den Musikfestivals in Worcester (Mass.) sowie in Paris und London auf. S.s Sohn Joseph E. S. (geb. Leipzig, Sachsen/Deutschland, 19. 5. 1886; gest. Los Angeles, Ca., USA, 9. 12. 1938) stud. bei seinem Vater, 1900\u201301 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904\u201305 bzw. 1908\u201309 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911\u201313 Harfenist einer Opernges. in Boston, lehrte er 1915\u201320 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n", "source": 179}}, {"model": "metainfo.text", "pk": 47661, "fields": {"kind": 131, "text": "Schu\u00ebcker (eigentl. Schu\u00f6cker)\u00a0Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preu\u00dfen (Bad Kreuznach, Deutschland), 9. 11. 1911.", "source": 179}}, {"model": "metainfo.text", "pk": 47662, "fields": {"kind": 130, "text": "Sohn von Norbert Michael, Bruder von Norbert, Neffe von Anton S. (alle s. d.). Bedingt durch die zahlreichen Reisen seines Vaters, lernte S. bereits in fr\u00fcher Jugend zahlreiche St\u00e4dte Europas kennen. Seine ersten k\u00fcnstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der \u00dcbersiedlung seines Vaters nach Paris besuchte S. 1854/55 die Modellierklasse der Pariser Akad. Aber schon kurz darauf verlegte der Vater seinen Wohnsitz nach Frankfurt a. Main, wo S. 1855/56 vorerst Privatunterricht in Bildhauerei von dem mit seinem Vater befreundeten Eduard Schmidt von der Launitz erhielt. 1856\u201358 stud. er am St\u00e4del\u2019schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858\u201361 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 \u00fcbersiedelte er nach Wien, 1863\u201365 hielt er sich, finanziert durch ein Rom-Stipendium, in Italien auf, 1866 in Paris. Ab 1867 wieder in Wien, arbeitete S. als Mitarbeiter bei den Bildhauern Victor Tilgner und Rudolf Weyr mit, 1894\u20131908 war er Ass. an der Akad. der bildenden K\u00fcnste in Wien, wo er zeitweise die Klasse f\u00fcr Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-B\u00fcste f\u00fcr das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisb\u00fcste des Nikolaus Joseph v. Jacquin f\u00fcr die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) f\u00fcr den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschm\u00fcckung des Naturhist. Mus. in Wien mit.\n", "source": 178}}, {"model": "metainfo.text", "pk": 47663, "fields": {"kind": 131, "text": "Schr\u00f6dl\u00a0Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908.", "source": 178}}, {"model": "metainfo.text", "pk": 47672, "fields": {"kind": 130, "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olm\u00fctz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Br\u00fcnn (Brno) Maschinenbau, 1898\u20131903 an der Bauing.Schule (1905 Staatspr\u00fcfung). Zun\u00e4chst an der Br\u00fcnner Hochschule f\u00fcr einige Monate als Ass. t\u00e4tig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen gr\u00f6\u00dferen Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919\u201322), betraut. Als Baurat \u00fcbernahm er 1920 die selbst\u00e4ndige Leitung der Bauabt., die f\u00fcr die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. ma\u00dfgebl. an den von Peter Behrens und Alexander Popp geplanten Neubauten bei der Tabakfabrik in Linz (1929ff.) sowie an der Errichtung zahlreicher, in der Nachkriegszeit geschaffener Wohnhausanlagen beteiligt. Daneben publ. S.\u00fcber die Baut\u00e4tigkeit der \u00d6sterr. Tabakregie. 1930 HR, 1947 i. R.\n", "source": 177}}, {"model": "metainfo.text", "pk": 47673, "fields": {"kind": 131, "text": "Schreyer\u00a0Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravic\u00ed, M\u00e4hren (Bridlicn\u00e1, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950.", "source": 177}}, {"model": "metainfo.text", "pk": 47676, "fields": {"kind": 130, "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840\u201341 dort Med., ab 1841 an der Univ. Wien, wo er 1845 zum Dr. med. prom. wurde. Nach weiterer chirurg. Ausbildung wirkte er am Provinzialstrafhaus in Wien, ab 1856 am Filialspital des Allg. Krankenhauses in Wien II., zuletzt als dessen prov. Vorstand, ab 1858 als Primarius der IV. med. Abt. am Allg. Krankenhaus. S. machte sich um die Verwendung der 1853 in Schottland entwickelten Subkutanspritze zur Einf\u00fchrung von Medikamenten bei der Schmerzbehandlung (Injektion) verdient und stellte diese, erst in den 70er Jahren allg. angewendete Methode sowie seine Erfahrungen damit schon 1861 vor. Auch begann er sich fr\u00fch mit dem Einflu\u00df der Haft auf die Entstehung von Geistesst\u00f6rungen bei Str\u00e4flingen zu besch\u00e4ftigen. An seiner Klinik betrieb der ab 1878 dort t\u00e4tige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882\u201385 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n", "source": 175}}, {"model": "metainfo.text", "pk": 47677, "fields": {"kind": 131, "text": "Scholz\u00a0Franz, Mediziner. Geb. Moldau, B\u00f6hmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902.", "source": 175}}, {"model": "metainfo.text", "pk": 47678, "fields": {"kind": 130, "text": "Sohn des Kaspar Schram(m)el (geb. H\u00f6rmanns b. Litschau/Litschau, N\u00d6, 6. 1. 1811; gest. Langenzersdorf, N\u00d6, 20. 12. 1895) und (Eheschlie\u00dfung 1853) der Volkss\u00e4ngerin Aloisia Ernst (1829\u20131881), Bruder des Joseph S. (geb.Ottakring, N\u00d6/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833\u20131905), der, 1866 als Invalide aus dem Milit\u00e4rdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon fr\u00fch in Dorfkapellen als Klarinettist t\u00e4tig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkst\u00fcml.-musikal. Wirtshausproduktionen. S. wirkte ebenso wie sein Bruder Joseph schon als Kind bei den Auftritten des Vaters als Geiger mit (1861 gilt als Beginn ihrer \u00f6ff. T\u00e4tigkeit), doch erhielten beide \u2013 ein f\u00fcr ihre Verh\u00e4ltnisse ungew\u00f6hnl. Schritt \u2013 auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862\u201363 Violinsch\u00fcler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschlu\u00df (aus ungekl\u00e4rten Ursachen) 1866 Karl Hei\u00dflers, Joseph 1865/66 ebenfalls Sch\u00fcler Hellmesbergers. Nach dem Milit\u00e4rdienst (1866\u201372, 1870 Korporal) spielte S. in einigen \u201eNationalquartetten\u201c und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in gro\u00dfen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gr\u00fcndete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient \u2013 1869\u201371 \u2013 bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett (\u201eNu\u00dfdorfer Terzett\u201c), in dem Joseph die 1., er selbst die 2. Geige und zun\u00e4chst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Br\u00fcder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. \u201epicks\u00fc\u00dfes H\u00f6lzl\u201c) Georg D\u00e4nzer (geb.Hernals, N\u00d6/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett \u201eGebr. Schrammel, D\u00e4nzer und Strohmayer\u201c, das in dieser Besetzung bis zum Ausscheiden D\u00e4nzers Ende 1891 \u2013 Strohmayer verlie\u00df das Quartett Ende 1892 \u2013 verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schlie\u00dfl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die urspr\u00fcngl. Quartettbesetzung zur\u00fcckgegriffen. Im Wr. Musikleben spielten die \u201eSchrammeln\u201c eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu h\u00f6ren, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit \u201eNaturs\u00e4ngern\u201c, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkss\u00e4nger lie\u00dfen diese Vortr\u00e4ge zeitweise verbieten, weswegen die Br\u00fcder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. \u00c4u\u00dferst erfolgreiche Gastspielreisen f\u00fchrten das Quartett 1888 und 1889 durch Deutschland, der letzte H\u00f6hepunkt waren die t\u00e4gl. Produktionen anl\u00e4\u00dfl. der Internationalen Ausst. f\u00fcr Musik- und Theaterwesen in Wien, 1892, doch mu\u00dfte sich S. wegen seiner zunehmenden Herzkrankheit dann zur\u00fcckziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterf\u00fchrte, v\u00f6llig mittellos. Als Komponist schlo\u00df S. an seine Vorl\u00e4ufer an (so gab er 1888 3 He. \u201eAlte oesterreichische Volksmelodien \u2026\u201c heraus), seine (zu etwa 1/3 gedruckten) \u00fcber 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und M\u00e4rsche (u. a. \u201eWien bleibt Wien\u201c, 1886), Josephs bekannteste Komposition ist das Lied \u201eVindobona, du herrliche Stadt\u201c. Die \u201eSchrammeln\u201c und \u201eSchrammelmusik\u201c \u201eblieben als Begriffe f\u00fcr ein volkst\u00fcml. Ensemble und ein entsprechendes Musizieren erhalten\u201c (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorl\u00e4ufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. F\u00e4higkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch h\u00f6chste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strau\u00df.\n", "source": 176}}, {"model": "metainfo.text", "pk": 47679, "fields": {"kind": 131, "text": "Schrammel\u00a0Johann, Musiker und Komponist. Geb. Neulerchenfeld, N\u00d6 (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893.", "source": 176}}, {"model": "metainfo.text", "pk": 47684, "fields": {"kind": 130, "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine fr\u00fche Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826\u201329 an der Univ. Graz Jus, 1829 Dr. jur., und trat 1834 bei der Hof- und Kammerprokuratur als Konzeptspraktikant ein. 1836 wurde er zur Kammerprokuratur nach Lemberg (L\u2019viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) t\u00e4tig war. 1847 erfolgte seine Versetzung als Landrat zum Gef\u00e4llen-Bez.Gericht bzw. Landrecht in Tarn\u00f3w. W\u00e4hrend eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. f\u00fcr den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschu\u00df mit, f\u00fcr den er auch als Referent fungierte. Hier setzte er sich u. a. bes. f\u00fcr die Unabh\u00e4ngigkeit K\u00e4rntens ein. Weiters war S. Mitgl. der Redaktionskomm. f\u00fcr die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem \u201eZentrumklub\u201c bei und geh\u00f6rte im Dezember dieses Jahres der Reichstagsdeputation nach Olm\u00fctz (Olomouc) und Prag an. Nach der Aufl\u00f6sung des Reichstags 1849 zog sich S. aus der Politik zur\u00fcck und wurde dem n\u00f6. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Pr\u00e4s. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenb\u00fcrgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepr\u00e4s. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepr\u00e4s. des Wr. Landesgerichts ernannt. Wegen seiner geschw\u00e4chten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n", "source": 174}}, {"model": "metainfo.text", "pk": 47685, "fields": {"kind": 131, "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884.", "source": 174}}, {"model": "metainfo.text", "pk": 47688, "fields": {"kind": 130, "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbi\u00df, Vater von B\u00e9la Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. B\u00e9la Frh. v. S.). Wuchs nach dem fr\u00fchen Tod seines Vaters im Hause von Karl Gf. Gatterburg, des zweiten Gatten seiner Mutter, auf. Nach Privatunterricht trat er 1820 beim 4. Chevauxlegersrgt. in die k. Armee ein, wurde 1822 Unterlt., 1831 Oblt., 1835 Rtm. 2., 1840 1. Kl., 1846 Mjr., 1848 Obstlt., 1849 Obst., 1851 GM, 1859 FML, 1863 pensioniert, 1865 jedoch als Gendarmeriegen.Insp. reaktiviert und 1868 als Gen. der Kav. ad honores endg\u00fcltig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich w\u00e4hrend des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab \u00fcberstellt und bew\u00e4hrte sich in der Folge an verschiedenen Standorten als Brigadier. Daneben war er 1856 dem Kg. v. Griechenland, 1858 Erzhg. Karl Ferdinand bei dessen Inspektionstour zu den Landeskontingenten des Dt. Bundes zugewiesen. Im italien. Feldzug von 1859 tat er sich als Division\u00e4r beim 3. Inf.Armeekorps durch umsichtige F\u00fchrung sowie pers\u00f6nl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode f\u00fchrte er dann die Administrationsgesch\u00e4fte des Landesgendarmeriekmdo. in Lemberg (L\u2019viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de V\u00e1sonyke\u00f6 (geb. Wien, 30. 10. 1805; gest. Verona, Venetien/Italien, 9. 1. 1851), 1855 Theresia Franziska Juliana Si(e)gel (geb. Wien, 11. 3. 1827; gest. Wien, 1. 5. 1857) und 1859 Anna Scheiger (geb. Wien, 7. 7. 1820; gest. G\u00f6rz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausl\u00e4nd. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes f\u00fcr die von ihm angeregte und nach dem Feldzug von 1848/49 durchgef\u00fchrte Reorganisation der Husarenrgt. verdient.\n", "source": 172}}, {"model": "metainfo.text", "pk": 47689, "fields": {"kind": 131, "text": "Sch\u00f6nberger (Schoenberger) (Carl Friedrich)\u00a0Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorder\u00f6sterr. (Deutschland), 30. 6. 1804; gest. G\u00f6rz, G\u00f6rz-Gradisca (Gorizia, Italien), 19. 12. 1880.", "source": 172}}, {"model": "metainfo.text", "pk": 47690, "fields": {"kind": 130, "text": "Stud. 1872\u201380 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), sp\u00e4ter auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Ru\u00dfland, Deutschland, \u00d6sterr. und Belgien. 1880\u201385 lehrte er in Wien, 1886 reiste er nach Schweden und anschlie\u00dfend nach London, wo er im J\u00e4nner 1887 erstmals als Solist auftrat und sich in der Folge niederlie\u00df. S. geh\u00f6rte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, sp\u00e4ter unternahm er Konzertreisen in Europa und England, auch als Dirigent einer reisenden Opernges. Er war mit der Tochter des engl. Gen. Sir Henry Tuson verheiratet.\n", "source": 173}}, {"model": "metainfo.text", "pk": 47691, "fields": {"kind": 131, "text": "Sch\u00f6nberger\u00a0Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Gro\u00dfbritannien), 9. 3. 1930.", "source": 173}}, {"model": "metainfo.text", "pk": 47694, "fields": {"kind": 130, "text": "Sohn des Vorigen, Bruder von Arthur S., Schwager von M. Hajek (beide s. d.); mos. Stud. nach Absolv. des Akadem. Gymn. in Wien ab 1882 an der dortigen Univ. Med., u. a. bei E. Albert, Billroth, E. W. v. Br\u00fccke sowie Nothnagel (alle s. d.), und wurde 1888 zum Dr. med. prom. Seine weitere Ausbildung erhielt er 1887/88 als Aspirant an der Klinik Nothnagel, ab 1889 bei Albert, wo er 1891\u201395 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien f\u00fcr Chirurgie und wurde 1907 Tit. ao., 1927 unbesoldeter ao. Prof. 1895/96 stand er der Chirurg. Abt. an der Wr. Allg. Poliklinik vor, kam 1896 als Primarius f\u00fcr Chirurgie an das K.-Franz-Josef-Spital, 1902 an das Wiedner Krankenhaus und trat 1934 i. R. S. gestaltete die von ihm geleiteten Abt. gem\u00e4\u00df den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und ver\u00f6ff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentz\u00fcndung bzw. -katarrh, v. a. aber nat\u00fcrl. chirurg. Problemen. Als einer der ersten besch\u00e4ftigte er sich mit der operativen Behandlung der akuten Blinddarmentz\u00fcndung, propagierte umfangreiche Resektionen bei Magen- und Zw\u00f6lffingerdarmgeschw\u00fcren, erarbeitete Vorbeugungsma\u00dfnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und besch\u00e4ftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besa\u00df spr\u00fchenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch \u00f6ff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des \u00d6sterr. Verdienstordens. Durch sein Bem\u00fchen um die Diagnostik der Blinddarmentz\u00fcndung und sein entschiedenes Eintreten in Theorie und Praxis f\u00fcr umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen pers\u00f6nl. Verh\u00e4ltnis zu seinem Bruder Arthur, das in zwei von dessen erz\u00e4hler. Werken (\u201eDer blinde Geronimo und sein Bruder\u201c, \u201eFlucht in die Finsternis\u201c) Niederschlag fand.\n", "source": 169}}, {"model": "metainfo.text", "pk": 47695, "fields": {"kind": 131, "text": "Schnitzler\u00a0Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939.", "source": 169}}, {"model": "metainfo.text", "pk": 47696, "fields": {"kind": 130, "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874\u201378 an der Univ. Wien Jus, 1881 Dr. jur. 1879 trat S. beim Landesgericht Wien in den Justizdienst, wurde 1885 Bez.Gerichtsadjunkt in Wolkersdorf, 1887 in Wien-Hietzing, 1891 Gerichtsadjunkt beim Wr. Landesgericht. 1896 wechselte S. zur Staatsanwaltschaft (Substitut in Korneuburg) und war ab 1897 Staatsanwalt in Steyr, 1902 in Krems, bis er 1903 ins Justizmin. berufen wurde, wo er, 1904 Sektionsrat, 1907 Titel und Charakter eines Min.Rates, 1909 Min.Rat, 1912 zum Sektionschef avancierte. S. war an den legislativen Arbeiten des Justizmin., insbes. auf den Gebieten der Strafrechts- und der Strafproze\u00dfreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees f\u00fcr die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wof\u00fcr er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verst\u00e4ndnis f\u00fcr die Bed\u00fcrfnisse der Milit\u00e4rverwaltung \u20131877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. \u2013 brachte es mit sich, da\u00df sein Rat von den milit\u00e4r. Stellen oft in Anspruch genommen wurde; f\u00fcr seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Milit\u00e4rstrafverfahrens (Milit\u00e4rstrafproze\u00dfordnung von 1912) erhielt er 1912 das Komturkreuz des Franz Joseph-Ordens mit dem Stern. Auch die zahlreichen Kriegsstrafgesetze sind unter seiner Mitwirkung zustande gekommen. In den Aussch\u00fcssen beider H\u00e4user des Reichsrates war er sehr oft als Vertreter des Justizmin. t\u00e4tig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatspr\u00fcfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n", "source": 170}}, {"model": "metainfo.text", "pk": 47697, "fields": {"kind": 131, "text": "Schober\u00a0Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917.", "source": 170}}, {"model": "metainfo.text", "pk": 47700, "fields": {"kind": 130, "text": "Sohn von (Heinrich) Eduard v. S. (s. u.), Neffe von (Wilhelm) Alexander, Cousin von Philipp Wilhelm d. J. und Paul Eduard v. S. (alle s. d.), Schwiegervater von Armand Dumreicher v. \u00d6sterreicher (s. d.); evang. HB. S., der als Mitsch\u00f6pfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Gro\u00dfhandlungshaus \u201eAlexander Schoeller\u201c (sp\u00e4ter \u201eSchoeller & Co.\u201c) nach Wien geholt, ab 1869 \u00f6ff. Gesellschafter. Er konnte seinen Onkel bei der Weiterf\u00fchrung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und M\u00fchlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von \u201eSchoeller & Co.\u201c nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) \u00fcberging, durch die Erzeugung von Blechen und Dr\u00e4hten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene H\u00fclsenfabrik zur Produktion von Kriegsmaterial begr\u00fcndet. Im Ternitzer Werk, der \u201eTernitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.\u201c, f\u00fchrte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gr\u00fcnden nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgel\u00f6st. Wegen eines schweren Nervenleidens mu\u00dfte er die Firmenleitung zuletzt fast g\u00e4nzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard \u00fcberlassen. S. bekleidete auch eine gro\u00dfe Zahl von Verwaltungsratsstellen bei gro\u00dfen \u00f6sterr. Ind.-, Banken- und Eisenbahnunternehmungen, wie etwa bei der Bodencreditanstalt in Wien und der K. Ferdinands-Nordbahn. Am Gmd.Leben der evang. Gmd. HB in Wien aktiv beteiligt, war S. 1865\u201389 Gmd.Vertreter, 1867\u201389 auch Presbyter und betreute \u2013 wie auch schon sein Onkel \u2013 deren Verm\u00f6gensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. D\u00fcren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, N\u00d6, 18. 1. 1879), war wie etl. andere Angeh\u00f6rige der Familie S. in der Zuckerind. t\u00e4tig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterst\u00fctzung seines Bruders Alexander pachtete er 1853 die Herrschaft Edel\u00e9ny bei Miskolcz und richtete die darauf befindl. Zuckerr\u00fcbenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu k\u00e4mpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n", "source": 171}}, {"model": "metainfo.text", "pk": 47701, "fields": {"kind": 131, "text": "Schoeller\u00a0Gustav Adolph von, Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier. Geb. D\u00fcren, Preu\u00dfen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889.", "source": 171}}, {"model": "metainfo.text", "pk": 47706, "fields": {"kind": 130, "text": "Sohn eines Sattlermeisters und Gastwirts. S., der bei seinem mus. und Zeichner. begabten Vater ersten Zeichenunterricht erhielt, sollte die Marinemusikschule in Pola (Pula) besuchen, wurde aber wegen einer Augenschw\u00e4che zur\u00fcckgestellt. Daraufhin ging er nach Wien und stud. hier 1880\u201382 an der Akad. der bildenden K\u00fcnste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender K\u00fcnstler, so z. B. f\u00fcr die Z. \u201e\u00dcber Land und Meer\u201c. Als der k\u00fcnstler. Erfolg etwas nachlie\u00df, kehrte S. nach Mies zur\u00fcck, \u00fcbersiedelte aber 1895 wieder nach M\u00fcnchen, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als \u201eSalome\u201c. Sein \u0152uvre umfa\u00dft neben Portr\u00e4ts von Schauspielerinnen und span. T\u00e4nzerinnen auch Bildnisse von Mitgl. des bayer. K\u00f6nigshauses. S., der Mitgl. der M\u00fcnchner K\u00fcnstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n", "source": 168}}, {"model": "metainfo.text", "pk": 47707, "fields": {"kind": 131, "text": "Schmutzler\u00a0Leopold, Maler. Geb. Mies, B\u00f6hmen (Str\u00edbro, Tschechien), 29. 3. 1864; gest. M\u00fcnchen, Bayern (Deutschland), 20. 6. 1940.", "source": 168}}, {"model": "metainfo.text", "pk": 47712, "fields": {"kind": 130, "text": "Sohn des P\u00e4chterehepaars Wolf und Sara S., mos.; nach \u00dcbersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromer\u00ed\u017e) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922\u201323 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterst\u00fctzt von seinem Onkel und sp\u00e4terem Manager, Leo Engel, 1925\u201326 an der Hochschule f\u00fcr Musik in Berlin (Sch\u00fcler von Hermann Weissenborn) fortsetzte. Nach dem Milit\u00e4rdienst in Rum\u00e4nien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Deb\u00fct als Rundfunks\u00e4nger am 29. 3. 1929 (Vasco da Gama in Meyerbeers \u201eDie Afrikanerin\u201c), weitere Rundfunkproduktionen (Hans in Smetanas \u201eDie verkaufte Braut\u201c, Lionel in Flotows \u201eMartha\u201c), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von au\u00dferordentlicher Popularit\u00e4t \u2013 seiner geringen K\u00f6rpergr\u00f6\u00dfe wegen allerdings nur innerhalb der zu dieser Zeit aufbl\u00fchenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in \u201eDer Liebesexpress\u201c (Urauff. Berlin 1931) folgte der unerh\u00f6rte Siegeszug von \u201eEin Lied geht um die Welt\u201c (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Macht\u00fcbernahme in Deutschland wurde S., schon vorher diffamiert und angefeindet, mit Auftrittsverbot belegt und Wien immer mehr zu seinem Lebenszentrum, ab 1935 sein Wohnort. Hier wurden die n\u00e4chsten Filme \u201eWenn du jung bist, geh\u00f6rt dir die Welt\u201c, 1933, \u201eEin Stern f\u00e4llt vom Himmel\u201c, 1935, auch engl. Version, und \u201eHeut ist der sch\u00f6nste Tag in meinem Leben\u201c, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Pal\u00e4stina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937\u20131938 (mit Auftritten u. a. in der New Yorker Carnegie Hall) hervorzuheben. 1938 wieder in Wien, gab er im Herbst desselben Jahres Konzerte in Belgien und lie\u00df sich 1939 in Br\u00fcssel nieder, wo er als Rudolf in Puccinis \u201eLa Boh\u00e8me\u201c einen seiner seltenen B\u00fchnenauftritte hatte. Infolge des Kriegsverlaufs mu\u00dfte S. 1940 aus Belgien fl\u00fcchten, hielt sich in S\u00fcdfrankreich auf und gelangte 1942 unter gro\u00dfen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf v\u00f6llig mittellos. S. wurde als S\u00e4ngertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine \u2013 allerdings kleine und nicht restlos durchgebildete \u2013 lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und h\u00f6chsten Lage und ein f\u00fcr S. charakterist. \u201ewehm\u00fctiges\u201c Timbre aus.\n", "source": 167}}, {"model": "metainfo.text", "pk": 47713, "fields": {"kind": 131, "text": "Schmidt,\u00a0\u2014 Joseph S\u00e4nger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rum\u00e4nien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Z\u00fcrich (Schweiz), 16. 11. 1942.", "source": 167}}, {"model": "metainfo.text", "pk": 47714, "fields": {"kind": 130, "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Kne\u017ena (Rychnov nad Kne\u017enou) und Olm\u00fctz (Olomouc) begann S. eine kaufm\u00e4nn. Lehre in Br\u00fcnn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Gro\u00dfhandel bet\u00e4tigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gew\u00e4hlt worden war, \u00fcbernahm S. die Leitung des v\u00e4terlichen Gesch\u00e4fts in Schildberg und sp\u00e4ter gem. mit seinem \u00e4lteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papierm\u00fchle (sie galt als die \u00e4lteste der \u00d6sterr.-ung. Monarchie) und Bleiche in Gro\u00dfullersdorf und betrieb dort nach dem Ableben seines Bruders (1871) eine Papier- und Leinenerzeugung im eigenen Namen, jedoch unter der Fa. Ant. J. Schmidt u. S\u00f6hne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere f\u00fchrten zu einer neuen Bl\u00fcte dieser Papierm\u00fchle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Gro\u00dfullersdorf, eine \u2013 1917 aufgel\u00f6ste \u2013 Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige f\u00fcrstlich liechtensteinsche Mahlm\u00fchle in Olleschau (Ol\u0161any) und errichtete dort eine Fabrik f\u00fcr Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG \u00fcbernommen, die ab 1870 auch das sp\u00e4ter verbreitete Zigarettenpapier Marke \u201eOlleschau\u201c herstellte, wobei die Lieferschwierigkeiten der franz\u00f6s. Konkurrenz in den Krisenjahren 1870/71 gen\u00fctzt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olm\u00fctzer Handels- und Gewerbekammer in den m\u00e4hr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Gro\u00dfullersdorf, 1879\u201391 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegr\u00fcndeten Te\u00dfthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, sp\u00e4ter auch anderen Fragen der Landwirtschaft widmete. S. n\u00fctzte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die M\u00f6glichkeiten des erh\u00f6hten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde f\u00fcr seine wirtschaftliche und polit. T\u00e4tigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon w\u00e4hrend seiner Lebenszeit wurde die Unternehmung von seinen S\u00f6hnen Anton S. (geb. Gro\u00dfullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Gro\u00dfullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Gro\u00dfullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgef\u00fchrt. W\u00e4hrend Anton S. bis 1917 die Wr. Gesch\u00e4ftsstelle leitete, danach mit Richard die Ullersdorfer Papierm\u00fchle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einf\u00fchrte. Alle drei Br\u00fcder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizit\u00e4tswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung t\u00e4tig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908\u20131938 Kammerrat der Handels- und Gewerbekammer Olm\u00fctz.\n", "source": 166}}, {"model": "metainfo.text", "pk": 47715, "fields": {"kind": 131, "text": "\u2014 Anton Schmidt,\u00a0Fabrikant und Politiker. Geb. Schildberg, M\u00e4hren (\u0160t\u00edty, Tschechoslowakei), 9. 12. 1826; gest. Gro\u00dfullersdorf, M\u00e4hren (Velk\u00e9 Losiny, Tschechoslowakei), 28. 3. 1892.", "source": 166}}, {"model": "metainfo.text", "pk": 47718, "fields": {"kind": 130, "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete f\u00fcr Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Franz\u00f6s. Krieg teil, wurde danach Red. des \u201eWestph\u00e4lischen Grenzboten\u201c in M\u00fcnster, dann Leiter des Feuilletons und \u201eReimchronist\u201c der \u201eDeutschen Zeitung\u201c in Paris und war schlie\u00dflich ab 1880 Berichterstatter der \u201eBerliner Post\u201c; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen sp\u00e4teren Ver\u00f6ff. zugute kamen. In der Folge \u00fcbersiedelte S. nach Wien, wo er 1886 in die Red. des \u201eNeuen Wiener Tagblatts\u201c eintrat, der er bis zu seinem Tod angeh\u00f6rte. Daneben arbeitete er an mehreren Ztg. (u. a. der \u201eIllustrirten Zeitung\u201c, Leipzig) und Z. (u. a. der \u201eGartenlaube\u201c) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. \u201eMuth\u201c, 1899), Erz., M\u00e4rchen, den historisierenden Wr. Roman aus dem 15. Jh. \u201eB\u00fcrger und Studenten\u201c sowie dramat. Werke.\n", "source": 164}}, {"model": "metainfo.text", "pk": 47719, "fields": {"kind": 131, "text": "Schmal\u00a0Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preu\u00dfen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900.", "source": 164}}, {"model": "metainfo.text", "pk": 47724, "fields": {"kind": 130, "text": "Sohn eines in Frankreich t\u00e4tigen Tschechen und einer Franz\u00f6sin (geb. Beauchez), lebte er ab 1860 in B\u00f6hmen und besuchte das Akadem. Gymn. in Prag. Er wurde als aktiver Teilnehmer an Demonstrationen gegen den Justizminister Herbst (s. d.) verhaftet und wegen Hochverrats angeklagt, floh jedoch vor dem Proze\u00df nach Paris, dann 1869 nach Berlin, wo er die \u201eCorrespondance Tch\u00e8que\u201c red. W\u00e4hrend des dt.-franz\u00f6s. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zur\u00fcck und fand seinen Lebensunterhalt als Lehrer der franz\u00f6s. Sprache in Leitomischl (Litomy\u0161l), von 1873 an in Prag. Polit. geh\u00f6rte er dem radikalen Fl\u00fcgel der demokrat. Jungtschechen an, k\u00e4mpfte f\u00fcr die Einf\u00fchrung des allg. Wahlrechts und trat auch in Prager Arbeiterbll. mit Artikeln hervor. V. a. widmete er sich der Anbahnung der freundschaftl. Beziehungen zu Frankreich, f\u00fchrte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag f\u00fcr franz\u00f6s. Ztg. 1893\u201398 war er Korrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris, dann st\u00e4ndiger Mitarbeiter von \u201eLe Temps\u201c in Prag, ab 1903 Red. der erneuerten \u201eCorrespondance Tch\u00e8que\u201c. Daneben war er als \u00dcbers. franz\u00f6s. Romane und Schauspiele t\u00e4tig und verf. eine Reihe von verbreiteten Sprachlehrb\u00fcchern und Konversationsbehelfen.\n", "source": 165}}, {"model": "metainfo.text", "pk": 47725, "fields": {"kind": 131, "text": "\u2014 -Beauchez\u00a0Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, B\u00f6hmen (Praha, Tschechien), 14. 12. 1912.", "source": 165}}, {"model": "metainfo.text", "pk": 47726, "fields": {"kind": 130, "text": "Bauernsohn; stud. kath. Theol. an der Univ. Prag, 1860 Priesterweihe, 1865 Dr. theol. Ab 1862 Adjunkt an der theolog. Fak. in Prag, lernte er auf einer Stud.Reise durch Deutschland die damals namhaftesten Theologen (Hergenr\u00f6ther, Hettinger, D\u00f6llinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. f\u00fcr Kirchengeschichte an der Univ. Prag und f\u00fchrte 1878 das Fach Patrol. in den Lehrplan ein. S. war Historiograph der Fak., mehrmals Dekan und Rektor. 1882 hatte er als letzter Rektor der ungeteilten Univ. die Trennungsverhh. zu leiten. Mitgl. diverser gel. Ges., Landtagsabg. der Fraktion der verfassungstreuen Gro\u00dfgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte B\u00f6hmens. In seiner Monographie \u00fcber den Hl. Wolfgang bem\u00fchte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n", "source": 163}}, {"model": "metainfo.text", "pk": 47727, "fields": {"kind": 131, "text": "Schindler\u00a0Josef, Kirchenhistoriker. * Lachowitz (Lachovice, B\u00f6hmen), 23. 6. 1835; \u2020 Prag, 22. 2. 1911.", "source": 163}}, {"model": "metainfo.text", "pk": 47728, "fields": {"kind": 130, "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); w\u00e4hrend der Volksschulzeit S\u00e4nger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verh\u00e4ltnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien besch\u00e4ftigt; daneben stud. er am Konservatorium der Ges. der Musikfreunde Klavier bei Fischhof, Pirkhert (beide s. d.) und Franz Ramesch, Komposition bei Simon Sechter sowie Waldhorn bei Richard Lewy und lernte dort den Dirigenten H. Richter (s. d.) kennen, mit dem er zeitlebens freundschaftlich verbunden war. Ab 1865 war S. 1. Hornist am Hofburgtheater und als Musiklehrer u. a. in der Familie des Justizministers Stremayr und in der Familie Kautsky t\u00e4tig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivit\u00e4ten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Br\u00fcdern zur Arbeiterbewegung; 1868 gr\u00fcndete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das \u201eLied der Arbeit\u201c, das zur Hymne der \u00f6sterr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (h\u00e4ufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, R\u00fcckert), wobei die \u00dcbereinstimmung von textlicher und musikal. Deklamation f\u00fcr ihn sehr wesentlich war. 1872 gr\u00fcndete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste \u00f6sterr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur beh\u00f6rdlichen Einstellung 1878 war S. Red. der \u201e\u00d6sterreichischen Musikerzeitung\u201c, 1878 gr\u00fcndete er den Arbeiter-S\u00e4ngerbund Wien, den ersten \u00f6sterr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880\u201382 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem m\u00e4rchenhaften, allegor. Libretto von Albert Dulk) im sp\u00e4tromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegr\u00fcnder und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-S\u00e4ngerbundes Landstra\u00dfe, 1891 Mitbegr\u00fcnder des Verbandes der Arbeiter-Gesangver. Nieder\u00f6sterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gr\u00fcndete S. die \u201eArbeiters\u00e4nger-Zeitung\u201c, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der \u201eArbeiter-Zeitung\u201c, wobei er bem\u00fcht war, das Kunstverst\u00e4ndnis der Arbeiter zu f\u00f6rdern und ihnen die klass. und zeitgen\u00f6ss. Musik n\u00e4herzubringen. S. sah in der von ihm begr\u00fcndeten Arbeiters\u00e4ngerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung \u00fcberhaupt.\n", "source": 161}}, {"model": "metainfo.text", "pk": 47729, "fields": {"kind": 131, "text": "Scheu\u00a0Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; \u2020 Wien, 12. 10. 1904.", "source": 161}}, {"model": "metainfo.text", "pk": 47730, "fields": {"kind": 130, "text": "S. stud. 1870\u201378 an der Akad. der bildenden K\u00fcnste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885\u201390 als Ass. an der Kunstgewerbeschule in Prag bei Franti\u0161ek \u017den\u00ed\u0161ek, 1890\u20131922 war er dort als Prof. (1894 o. Prof.) f\u00fcr dekorative Malerei t\u00e4tig. 1913 Mitgl. der Tschech. Akad. der Wiss. und K\u00fcnste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, n\u00e4mlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten H\u00e4lfte der 80er Jahre wandte er sich, unter dem Einflu\u00df der westeurop. Malerei und bedingt durch die Konfrontation mit den sozialen Problemen des Alltags, Genrethemen zu, in denen Traurigkeit, Tragik und Resignation vorherrschen. In seinen melanchol. gestimmten Gem\u00e4lden der folgenden Periode verwendete er h\u00e4ufig Motive aus dem Milieu des abendlichen und n\u00e4chtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gef\u00fchlstiefe, die durch Lichteffekte bewirkt wird, aus.\n", "source": 162}}, {"model": "metainfo.text", "pk": 47731, "fields": {"kind": 131, "text": "Schikaneder\u00a0Jakub, Maler. * Prag, 27. 2. 1855; \u2020 Prag, 15. 11. 1924.", "source": 162}}, {"model": "metainfo.text", "pk": 47732, "fields": {"kind": 130, "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861\u20131919), der gem. mit seinem Onkel Sebastian S. (1844\u201389) 1885 die Holzdrahtfabrik S. & Neffe gegr\u00fcndet hatte; stud. Elektrotechnik an der H\u00f6heren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im v\u00e4terlichen Unternehmen, das Z\u00fcndholzhersteller belieferte, aber auch u. a. Jalousiest\u00e4be und Zahnstocher herstellte, und brachte es in kurzer Zeit zu gro\u00dfer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Z\u00fcndholzerzeugung nahm 1928 durch S.s Mitgr\u00fcndung des Luma-Verkaufsb\u00fcros der Z\u00fcndwarenfabriken Solo-AG Sch\u00fcttenhofen und S. & Neffe GmbH in Prag gro\u00dfen Aufschwung, Z\u00fcndh\u00f6lzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, besch\u00e4ftigte bis zu 300 Mitarbeiter. 1892\u20131938 f\u00fchrte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Ann\u00edn). Er stellte das Rohglas in einem Fabrikneubau in Langendorf her, der mit einem modernen Glasschmelzofen ausgestattet war. Das von S. erzeugte Bleikristall war nicht mehr blaustichig, sondern rein wei\u00df, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflu\u00dfte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n", "source": 159}}, {"model": "metainfo.text", "pk": 47733, "fields": {"kind": 131, "text": "Schell\u00a0Karl, Industrieller. * Langendorf (Dlouh\u00e1 Ves, B\u00f6hmen), 19. 12. 1892; \u2020 ebenda, 2. 6. 1945", "source": 159}}, {"model": "metainfo.text", "pk": 47734, "fields": {"kind": 130, "text": "Stud. 1860\u201365 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Br\u00fccke (s. d.), 1869 Priv.Doz. f\u00fcr die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. f\u00fcr Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegr\u00fcndeten Inst. f\u00fcr Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. f\u00fcr Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte gro\u00dfes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach \u00fcbers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Soci\u00e9t\u00e9 scientifique m\u00e9dicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n", "source": 160}}, {"model": "metainfo.text", "pk": 47735, "fields": {"kind": 131, "text": "Schenk\u00a0Samuel Leopold, Mediziner. * \u00dcrm\u00e9ny (Mojm\u00edrovce, Slowakei), 23. 8. 1840; \u2020 Schwanberg (Stmk.), 17. 8. 1902.", "source": 160}}, {"model": "metainfo.text", "pk": 47746, "fields": {"kind": 130, "text": "Sohn eines Finanzsekr. \u2013 Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869\u201372 an der Wr. ABK bei \u00bfKarl Mayer fort. 1872 \u00fcbersiedelte er nach M\u00fcnchen und wurde 1873 an der dortigen ABK Sch\u00fcler von S\u00e1ndor Wagner. In den Folgejahren arbeitete er als Maler in M\u00fcnchen und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878\u201381 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, sp\u00e4ter w\u00e4hlte er Themen aus der Gegend um den Balaton. 1899\u20131902 hielt er sich wieder in M\u00fcnchen auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften z\u00e4hlt, gewann 1897 den Esterh\u00e1zy-Preis, 1899 den Preis des Ung. Ver. f\u00fcr Bildende K\u00fcnste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u.\u00a0a. Luftspiegelung \u00fcber der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Gal\u00e9ria in Budapest.\n\n", "source": 201}}, {"model": "metainfo.text", "pk": 47747, "fields": {"kind": 131, "text": "T\u00f6lgyessy Art\u00far, Maler. Geb. Szegedin (Szeged, H), 1.\u00a05. 1853; gest. Budapest (H), 2.\u00a02. 1920; r\u00f6m.-kath.", "source": 201}}, {"model": "metainfo.text", "pk": 47748, "fields": {"kind": 130, "text": "S\u00fcdtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T.\u00a0u.\u00a0H. (1728\u20131788) und Josepha Gfn. v. T.\u00a0u.\u00a0H. (1741\u20131819), Cousin des F\u00fcrstbischofs von Trient Peter Vigil Gf. v. T.\u00a0u.\u00a0H. (1776\u20131780), verwandt mit F\u00fcrstbischof \u00bfLeopold Leonhard Gf. v. T.\u00a0u.\u00a0H. \u2013 T. stud. in Passau, Salzburg und Rom Theol. und empfing dort als Mitgl. des Germanicums die Priesterweihe. 1790 wurde er Kanoniker von Trient, 1794 von Salzburg, 1797 Tit.bischof von Iasus und Weihbischof von Trient (Konsekration durch Leopold Leonhard Gf. v. T.\u00a0u.\u00a0H.). Als letzter vom Trienter Domkapitel gew\u00e4hlter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T.\u00a0u.\u00a0H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k.\u00a0Investitur nicht mehr erhalten, da er Anfang 1801 vor den franz\u00f6s. Truppen zun\u00e4chst nach G\u00f6rz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich f\u00fcr den Fortbestand seines Bistums einsetzte. Er k\u00e4mpfte erfolgreich gegen die Pl\u00e4ne K. \u00bfFranz\u2019\u00a0II. (I.), der f\u00fcr Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endg\u00fcltige S\u00e4kularisierung des F\u00fcrstbistums, Kl\u00f6ster wurden aufgel\u00f6st, das Hochstift mit seinen 150.000 Einwohnern \u00d6sterr. zugeordnet. Nach dem Frieden von Pre\u00dfburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zur\u00fcckkehren, wo er in Trient eine Stadtwohnung bezog, da seine f\u00fcrstbisch\u00f6fl. Residenz, das Castello del Buonconsiglio, s\u00e4kularisiert worden war. Die staatl. \u00dcbergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bisch\u00f6fe: T. von Trient, Karl Franz Gf. v. Lodron von Brixen (Bressanone) und Karl Rudolph v. Buol-Schauenstein von Chur. Bes. Protest riefen neben den Eingriffen in das religi\u00f6se Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von di\u00f6zesanen Priesterseminaren hervor. Die drei Bisch\u00f6fe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius\u00a0VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs best\u00e4rkt. W\u00e4hrend Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bez\u00fcge gesperrt; Buol-Schauenstein wurde nach Graub\u00fcnden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerst\u00e4ndige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar w\u00e4hlen. Dieser, Franz v. Spaur, erhielt von T. die geheime Best\u00e4tigung. Die bayer. Ma\u00dfnahmen auf kirchl. Gebiet (Ver\u00e4u\u00dferung gr\u00f6\u00dferer Tle. der bisch\u00f6fl. und Kapiteldotation, S\u00e4kularisierung mehrerer Kl\u00f6ster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zur\u00fcckkehren, schwor dem neuen Machthaber 1810 in Monza den Treueeid und nahm auch am Nationalkonzil in Paris 1811 teil. Obwohl Napoleon ebenso schroff in kirchl. Belange eingriff, duldete T. dessen Klosteraufhebungen, die Einf\u00fchrung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entlie\u00df 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut \u00fcbertragen. Als das Bistum 1814 wieder an \u00d6sterr. fiel, folgte eine Zeit der Konsolidierung, einige Kl\u00f6ster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bisch\u00f6fl. Mensa, das Domkapitel und die Bischofsnomination durch den \u00f6sterr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tats\u00e4chl. in seinem Bistum residieren.\n\n", "source": 200}}, {"model": "metainfo.text", "pk": 47749, "fields": {"kind": 131, "text": "Thun und Hohenstein Emanuel Maria Gf. von, F\u00fcrstbischof. Geb. Trient, Bistum Trient (Trento, I), 28.\u00a03. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9.\u00a010. 1818 (bestattet: Dom zu Trient); r\u00f6m.-kath.", "source": 200}}, {"model": "metainfo.text", "pk": 47754, "fields": {"kind": 130, "text": "Entstammte einer 1779 in den Adelsstand erhobenen Familie. Sohn des Rtm. Wilhelm Kluger Edler v.\u00a0T. und von Johanna Kluger Edler v.\u00a0T., geb. Toth, Vater von vier Kindern, u.\u00a0a. des Juristen und \u00dcbers. Hermann Frh. v.\u00a0T. (geb.\u00a06.\u00a07. 1866; gest. Neapel/Napoli, I, 6.\u00a011. 1911); in 1.\u00a0Ehe mit Rosa Petz (geb. 1843; gest. Wien, 16.\u00a012. 1866), in 2.\u00a0Ehe ab 1870 mit Bibiana Anna Bianca (Blanche) Lucas verheiratet. \u2013 T. besuchte ab 1847 die Theresian. Akad. in Wien, wo er bis zum Abschluss seiner jurid. Stud. 1859 blieb. Danach hielt er sich zu rechtshist. Stud. ein Jahr lang in Berlin auf und trat im April 1861 als Min.-Konzepts-Adjunkt im Min. f\u00fcr Handel und Volkswirtschaft in den \u00f6sterr. Staatsdienst. Hier gelangte er sehr bald in einflussreiche Positionen: Schon Anfang der 1860er-Jahre wurde er unter \u00bfAnton v. Schmerling in das Staatsmin. berufen und der Presseleitung zugeteilt. T., leitender Mitarb. der \u201e\u00d6sterreichischen Wochenschrift\u201c (1865 eingestellt), fungierte ab 1864 als Leiter des Abendbl., ab 1865 als Chefred. der \u201eWiener Zeitung\u201c, die er bis Mitte J\u00e4nner 1871 gem. mit Georg Seuffert f\u00fchrte, und setzte in dieser Position die von \u00bfLeopold Schweitzer begonnenen Reformen fort. Ab 1867 unterstand die Ztg. infolge der Reorganisation des Presseapparats der Leitung von \u00bfFriedrich Ferdinand Gf. Beust, der der Presse weit gr\u00f6\u00dfere Aufmerksamkeit schenkte als seine Vorg\u00e4nger: Er sch\u00e4tzte sowohl T.s au\u00dferordentl. publizist. Begabung wie auch seine umfassende Bildung und v.\u00a0a. sein polit. Verst\u00e4ndnis, wodurch T. noch im selben Jahr zum Min.sekr. avancierte. Er wechselte in die Pr\u00e4sidialsektion des Gem. Min. des \u00c4u\u00dfern und des k.\u00a0Hauses und \u00fcbernahm in seiner neuen Funktion, neben seiner eigentl. T\u00e4tigkeit als Chefred., auch wichtige polit. Auftr\u00e4ge. Im April 1869 erfolgte seine Ernennung zum Sektionsrat und im Februar 1871 die zum HR bzw. Min.rat. W\u00e4hrend seiner T\u00e4tigkeit im Pressdep. (Literar. B\u00fcro) war er u.\u00a0a. Verbindungsmann zum \u201ePester Lloyd\u201c und mit der Einflussnahme auf ma\u00dfgebl. dt. Bll. beauftragt. I.\u00a0d.\u00a0F. wurde T. def. in den Dienst des Gem. Min. des \u00c4u\u00dfern und des k.\u00a0Hauses aufgenommen und \u00fcbernahm im M\u00e4rz 1872 auf Wunsch von \u00bfJulius Gf. Andr\u00e1ssy d.\u00a0\u00c4. das Referat f\u00fcr dt. Angelegenheiten. Daneben stand er dem Min. auch f\u00fcr andere publizist. Aufgaben zur Verf\u00fcgung. Im November 1876 erfolgte seine Ernennung zum ao.\u00a0Gesandten und bevollm\u00e4chtigten Minister. Nach dem R\u00fccktritt Andr\u00e1ssys (1879) r\u00fcckte T. zwar in den Hintergrund, nahm aber weiterhin regelm\u00e4\u00dfig an den (schriftl.) Delegationsverhh. zwischen beiden Reichsh\u00e4lften teil. Im Juni 1880 \u00fcbernahm er f\u00fcr kurze Zeit sowohl die Leitung des Literar. B\u00fcros als auch jene des Informationsb\u00fcros, das mit staatspolizeil. Agenden betraut war. Au\u00dferdem wurde er mit verschiedenen Inspektionsmissionen beauftragt, die ihn u.\u00a0a. nach Rom und Konstantinopel (Istanbul) f\u00fchrten. Im September 1883 wurde er zum Verbindungsmann zwischen Au\u00dfenmin. und Konsular-Akad. ernannt, die mit der Heranbildung des diplomat. Nachwuchses befasst war. T. war ab 1862 Mitgl. des Journalisten- und Schriftstellerver. \u201eConcordia\u201c (1865\u201366 Vorstandsmitgl.). 1868 Orden der Eisernen Krone III.\u00a0Kl., 1878 Kommandeur des Leopold-Ordens, 1883 Gro\u00dfkreuz des Franz Joseph-Ordens, 1879 Erhebung in den Frh.stand.\n\n", "source": 197}}, {"model": "metainfo.text", "pk": 47755, "fields": {"kind": 131, "text": "Teschenberg Ernst Maximilian Frh. von, eigentl. Kluger Frh. von T. Ernst, Journalist und Politiker. Geb. \u00d6denburg (Sopron, H), 21.\u00a05. 1836; gest. Wien, 25.\u00a02. 1886.", "source": 197}}, {"model": "metainfo.text", "pk": 47756, "fields": {"kind": 130, "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2.\u00a0Ehefrau Julia T., geb. Grabowska, Halbbruder von \u00bfWlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von \u00bfLudwig v.\u00a0T. \u2013 T. besuchte das Gymn. in Krakau (Krak\u00f3w) und stud. 1884\u201386 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889\u201393 arbeitete er als Mithrsg. der Z. \u201eKurier Polski\u201c und als Journalist der Z. \u201eTygodnik Ilustrowany\u201c, \u201eKurier Warszawski\u201c und \u201eCzas\u201c; danach war er Sekr. von Adam Krasinski und stud. mit ihm 1896 in Heidelberg. Nach 1896 lebte er in Zakopane und Krakau, ab 1918 in Warschau. T. deb\u00fct. 1886 mit lyr. Prosa und Gelegenheitsdichtung (\u201eIlla\u201c). 1888 gewann er einen Preis der Jagiellonen-Univ. f\u00fcr ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik (\u201eWiersz na uczczenie pamieci Adama Mickiewicza\u201c), und 1889 einen weiteren f\u00fcr eine Hymne auf den Schriftsteller \u00bfJ\u00f3zef Ignacy Kraszewski (\u201eNa czesc Kraszewskiego\u201c). T. galt neben \u00bfJan Kasprowicz als der popul\u00e4rste Dichter der Bewegung Junges Polen und repr\u00e4sentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtb\u00e4ndigen Ged.smlg. \u201ePoezje\u201c (1891\u20131924) erlangte er Anerkennung als bedeutender Lyriker und Autorit\u00e4t der jungpoln. Literatur. T., der sich f\u00fcr Arthur Schopenhauers und Friedrich Nietzsches Phil. begeisterte, schrieb impressionist. Natur- und Stimmungslyrik mit einer Neigung zu Pessimismus und Dekadenz, erot. Ged. und Liebeslyrik sowie Novellen und Romane mit Motiven aus dem zeitgen\u00f6ss. Leben der Boh\u00e8me. 1898 erschien der Roman \u201eAniol smierci\u201c (dt. \u201eDer Todesengel\u201c, 1899), der in dt. \u00dcbers. zuerst als Vorabdruck in der Z. \u201eAus fremden Zungen\u201c erschien, in der T. i.\u00a0d.\u00a0F. weitere Ged. ver\u00f6ff. In der f\u00fcnfb\u00e4ndigen Novellensmlg. \u201eNa skalnym Podhalu\u201c (1903\u201310, dt.sprachige Auswahl unter dem Titel \u201eAus der Tatra\u201c, 1903) verherrlichte T. Land und Leute der Hohen Tatra im Dialekt der Gegend und unter Einbeziehung tradierter Stoffe und Legenden. Bedeutend sind auch seine zwei hist. Tatra-Romane \u201eMaryna z Hrubego\u201c (1910) und \u201eJanosik Nedza Litmanowski\u201c (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. W\u00e4hrend des 1.\u00a0Weltkriegs war T. Hrsg. der Z. \u201ePraca Narodowa\u201c. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zur\u00fcckgezogen, als Dauergast im Warschauer Hotel Europejski. Von dort wurde er von den Deutschen vertrieben und starb in einem Krankenhaus. T., der 1928 den Literaturpreis der Stadt Warschau erhielt, war ab 1921 Pr\u00e4s. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literat\u00f3w Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n", "source": 198}}, {"model": "metainfo.text", "pk": 47757, "fields": {"kind": 131, "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18.\u00a01. 1940; r\u00f6m.-kath.", "source": 198}}, {"model": "metainfo.text", "pk": 47758, "fields": {"kind": 130, "text": "Sohn von \u00bfOskar Karl T. und \u00bfEmma T., Bruder von Wilhelm (genannt Willy) T.-Weckersdorf (geb. Prag, 23. 9. 1879; gest. Salzburg, Sbg., 3. 3. 1968), der sich ebenfalls um die Entwicklung des \u00f6sterr. Pfadfinderwesens verdient machte und nach dem 2. Weltkrieg als Leiter der Ind.abt. der Sbg. Landesregierung fungierte, und von Obst. Oskar (genannt Ossi) T. (geb. Prag, 21. 3. 1881; gest. Innsbruck, Tirol, 19. 4. 1943), der im Heeresmin. t\u00e4tig war und gem. mit seiner j\u00fcd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923\u20131998), Univ.-Prof. f\u00fcr Politikwiss. in Wien. \u2013 T. diente ab 1896 im 3. Tiroler J\u00e4gerrgt. \u201eKaiserj\u00e4ger\u201c, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Milit\u00e4rsachverst\u00e4ndiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des milit\u00e4r. organisierten Knabenhortverbands in der milit\u00e4r.-patriot. Jugenderziehung und -f\u00fcrsorge ein neues Bet\u00e4tigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, \u00fcbertrug er das System der Boy Scouts des engl. Begr\u00fcnders des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gr\u00fcndete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in \u00d6sterr. und die Keimzelle des von ihm initiierten \u00d6sterr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915\u201319 Reichsfeldmeister des Bundes. Aufgrund des Verm\u00f6gens seiner Frau, einer Amerikanerin, konnte \u201ePapa\u201c T. hohe Geldmittel f\u00fcr die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronl\u00e4nder vom \u00d6sterr. Pfadfinderbund wirkte T. 1918\u201320 hauptberufl. als Insp. des Verbands f\u00fcr freiwillige Jugendf\u00fcrsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendf\u00fcrsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und f\u00fcr das Rote Kreuz t\u00e4tig. Da er sich weltanschaul. mit der aufkommenden \u201eb\u00fcndischen\u201c, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zur\u00fcck, blieb aber bis 1923 Bundesfeldmeister im \u00d6sterr. Pfadfinderbund. Er unterst\u00fctzte nunmehr den religi\u00f6sen Einfluss des kath. Klerus auf die Pfadfinder-Jugendarbeit und akzeptierte den Zusammenschluss der innerhalb des Bundes bereits bestehenden kath. Pfadfinderkolonnen zum Ring der St. Georgspfadfinder; 1926 Gr\u00fcndung der kath. Jugendorganisation des \u00d6sterr. Pfadfinderkorps St. Georg, das sich relativ rasch vergr\u00f6\u00dferte. Durch die Auss\u00f6hnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei gro\u00dfe Landg\u00fcter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zur\u00fcck. 1922\u201329 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals h\u00f6chste Pfadfinderausz., den \u201eSilberwolf\u201c. Als nach dem \u201eAnschluss\u201c \u00d6sterr. alle bestehenden Jugendorganisationen aufgel\u00f6st und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in M\u00fcnchen aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die \u00f6sterr. Pfadfinder posthum 1956 ihre h\u00f6chste Ausz., den \u201eSilbernen Steinbock\u201c. T.s Bruder ", "source": 199}}, {"model": "metainfo.text", "pk": 47759, "fields": {"kind": 131, "text": "Teuber Emmerich (genannt Imre), Pfadfinderf\u00fchrer und Offizier. Geb. Prag, B\u00f6hmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; r\u00f6m.-kath.", "source": 199}}, {"model": "metainfo.text", "pk": 47764, "fields": {"kind": 130, "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn sp\u00e4ter in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. \u2013 T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher S\u00e4nger werden. Er stud. 1908\u201310 Klavier, Komposition und Orchesterdirigieren am Hoch\u2019schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm \u00bfLeopold Demuth eine Stimme \u201ewie ein Zwirnsfaden\u201c. Wegen einer Liebelei musste T. nach Freiburg im Breisgau \u00fcbersiedeln, wo er dem Gesangsp\u00e4dagogen Carl Beines begegnete, der sein gro\u00dfes Talent erkannte und ihn ausbildete. T. gab sein Operndeb\u00fct 1913 in Chemnitz als Tamino in Mozarts \u201eZauberfl\u00f6te\u201c und erhielt im selben Jahr ein Engagement an die Dresdner Hofoper, an der er bis 1918 blieb. Er wurde ein gefragter lyr. Tenor, auch da er innerhalb k\u00fcrzester Zeit Partien einzustud. vermochte (Beiname \u201eSOS-Tenor\u201c), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg \u00bfFranz Leh\u00e1r kennen, in dessen sp\u00e4ten Operetten er dann, beginnend mit \u201ePaganini\u201c (Berliner Erstauff. 1926), die m\u00e4nnl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen \u201eT.-Lieder\u201c, die als Schlager gro\u00dfe Popularit\u00e4t erlangten (\u201eDein ist mein ganzes Herz\u201c etc.). Trotz Warnungen, dass er seine Stimme f\u00fcr die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Ber\u00fchmtheit. Fr\u00fch erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der \u00d6ffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Leh\u00e1rs \u201eDas Land des L\u00e4chelns\u201c, eine Rolle, die er \u00fcber 700-mal verk\u00f6rperte. Im selben Jahr kam sein erster Film, \u201eIch glaub\u2019 nie mehr an eine Frau\u201c, in die Kinos. Die auf Dr\u00e4ngen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um gro\u00dfe Summen gebracht. Er stand weiterhin erfolgreich auf Opernb\u00fchnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im M\u00e4rz 1933 von der B\u00fchne des Berliner Admiralspalastes gebuht und auf dem Kurf\u00fcrstendamm von SA-M\u00e4nnern niedergeschlagen worden war, fl\u00fcchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schlie\u00dfl. nach Wien. Hier wurde seine Operette \u201eDer singende Traum\u201c uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in \u201eBlossom Time\u201c einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. K\u00fcnstler zum Star, der sich \u00f6ff. gegen \u00bfAdolf Hitler \u00e4u\u00dferte. Internationale Tourneen f\u00fchrten ihn nach Nord- und S\u00fcdamerika, nach S\u00fcdafrika, Asien und Australien. Nach dem \u201eAnschluss\u201c \u00d6sterr. an das Dt. Reich 1938 lebte er ausschlie\u00dfl. in England (ab 1940 engl. Staatsb\u00fcrger). Er gab Konzerte, die BBC brachte regelm\u00e4\u00dfige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette \u201eOld Chelsea\u201c. An H\u00f6chstgagen und einen aufwendigen Lebensstil gew\u00f6hnt, geriet T. im Exil jedoch in hohe Schulden. Nach Kriegsende trat er wieder international auf, hatte aber deutl. Stimmprobleme. Seinen letzten Auftritt absolv. der an Lungenkrebs Erkrankte Ende September 1947 am Royal Opera House, Covent Garden, als Don Ottavio in Mozarts \u201eDon Giovanni\u201c, wobei er besser denn je gesungen haben soll. T.s Vater ", "source": 196}}, {"model": "metainfo.text", "pk": 47765, "fields": {"kind": 131, "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, S\u00e4nger, Dirigent und Komponist. Geb. Linz (O\u00d6), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 r\u00f6m.-kath.", "source": 196}}, {"model": "metainfo.uri", "pk": 26, "fields": {"uri": "http://sws.geonames.org/3194099/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 26, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 111, "fields": {"uri": "http://sws.geonames.org/3186886/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 133, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 149, "fields": {"uri": "http://sws.geonames.org/2761369/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 183, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 258, "fields": {"uri": "http://sws.geonames.org/3078610/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 327, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 299, "fields": {"uri": "http://sws.geonames.org/3077117/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 384, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 311, "fields": {"uri": "http://sws.geonames.org/3054643/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 637, "fields": {"uri": "http://sws.geonames.org/683506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 831, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 713, "fields": {"uri": "http://sws.geonames.org/2782067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 926, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1062, "fields": {"uri": "http://sws.geonames.org/2950159/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1390, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1089, "fields": {"uri": "http://sws.geonames.org/3071961/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1424, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1112, "fields": {"uri": "http://sws.geonames.org/2781806/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1291, "fields": {"uri": "http://sws.geonames.org/2781629/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1701, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1304, "fields": {"uri": "http://sws.geonames.org/2907669/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1718, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1511, "fields": {"uri": "http://sws.geonames.org/684039/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2006, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1561, "fields": {"uri": "http://sws.geonames.org/3060972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2072, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1571, "fields": {"uri": "http://sws.geonames.org/3078577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2085, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1625, "fields": {"uri": "http://sws.geonames.org/3081368/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2161, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1631, "fields": {"uri": "http://sws.geonames.org/3181550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2170, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1651, "fields": {"uri": "http://sws.geonames.org/3074967/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2197, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1711, "fields": {"uri": "http://sws.geonames.org/711416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2281, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1856, "fields": {"uri": "http://sws.geonames.org/3435910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2489, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1939, "fields": {"uri": "http://sws.geonames.org/3181215/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2602, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2121, "fields": {"uri": "http://sws.geonames.org/710719/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2854, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2302, "fields": {"uri": "http://sws.geonames.org/3101321/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3105, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2344, "fields": {"uri": "http://sws.geonames.org/681290/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3162, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3021, "fields": {"uri": "http://sws.geonames.org/2934486/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4096, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3151, "fields": {"uri": "http://sws.geonames.org/3063762/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4269, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3518, "fields": {"uri": "http://sws.geonames.org/2778067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4767, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3599, "fields": {"uri": "http://sws.geonames.org/2779275/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4877, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3912, "fields": {"uri": "http://sws.geonames.org/677410/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5294, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3923, "fields": {"uri": "http://sws.geonames.org/2873574/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5308, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4052, "fields": {"uri": "http://sws.geonames.org/3175986/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5478, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4206, "fields": {"uri": "http://sws.geonames.org/3173577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5691, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4249, "fields": {"uri": "http://sws.geonames.org/2777972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5749, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4440, "fields": {"uri": "http://sws.geonames.org/3063197/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6004, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4676, "fields": {"uri": "http://sws.geonames.org/2910831/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6324, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4954, "fields": {"uri": "http://sws.geonames.org/2775220/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6700, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5134, "fields": {"uri": "http://sws.geonames.org/3199302/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6947, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5507, "fields": {"uri": "http://sws.geonames.org/3097333/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5631, "fields": {"uri": "http://sws.geonames.org/2772649/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7622, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5897, "fields": {"uri": "http://sws.geonames.org/2892518/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7986, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6257, "fields": {"uri": "http://sws.geonames.org/2773913/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8482, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6486, "fields": {"uri": "http://sws.geonames.org/2885679/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8798, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6838, "fields": {"uri": "http://sws.geonames.org/2773300/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9287, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6961, "fields": {"uri": "http://sws.geonames.org/3072358/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9455, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6977, "fields": {"uri": "http://sws.geonames.org/3196359/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7169, "fields": {"uri": "http://sws.geonames.org/702550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9735, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7375, "fields": {"uri": "http://sws.geonames.org/2772400/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10015, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7554, "fields": {"uri": "http://sws.geonames.org/2643743/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10265, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7936, "fields": {"uri": "http://sws.geonames.org/3195506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10793, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8262, "fields": {"uri": "http://sws.geonames.org/3064919/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11238, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8489, "fields": {"uri": "http://sws.geonames.org/3070372/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11556, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8668, "fields": {"uri": "http://sws.geonames.org/2867714/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11799, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8966, "fields": {"uri": "http://sws.geonames.org/3090436/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12211, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9363, "fields": {"uri": "http://sws.geonames.org/2990440/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12758, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9718, "fields": {"uri": "http://sws.geonames.org/3045190/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13253, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9810, "fields": {"uri": "http://sws.geonames.org/3069011/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13382, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10050, "fields": {"uri": "http://sws.geonames.org/2988507/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13714, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10247, "fields": {"uri": "http://sws.geonames.org/2854561/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13987, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10697, "fields": {"uri": "http://sws.geonames.org/3067696/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 14608, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11885, "fields": {"uri": "http://sws.geonames.org/3057304/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16242, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11932, "fields": {"uri": "http://sws.geonames.org/3167905/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16310, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12137, "fields": {"uri": "http://sws.geonames.org/3065118/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16594, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12332, "fields": {"uri": "http://sws.geonames.org/2765515/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16864, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13419, "fields": {"uri": "http://sws.geonames.org/3083848/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18374, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13438, "fields": {"uri": "http://sws.geonames.org/715429/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14028, "fields": {"uri": "http://sws.geonames.org/3165243/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19215, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14297, "fields": {"uri": "http://sws.geonames.org/3058653/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19599, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14983, "fields": {"uri": "http://sws.geonames.org/756135/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20549, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15060, "fields": {"uri": "http://sws.geonames.org/792794/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20659, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15214, "fields": {"uri": "http://sws.geonames.org/2782058/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20872, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15297, "fields": {"uri": "http://sws.geonames.org/2633767/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20988, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15896, "fields": {"uri": "http://sws.geonames.org/3064454/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 21818, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16165, "fields": {"uri": "http://sws.geonames.org/3074331/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22216, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16195, "fields": {"uri": "http://sws.geonames.org/2764112/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22259, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16238, "fields": {"uri": "http://sws.geonames.org/2762908/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22322, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16260, "fields": {"uri": "http://sws.geonames.org/2659297/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22354, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16342, "fields": {"uri": "http://sws.geonames.org/2953416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16355, "fields": {"uri": "http://sws.geonames.org/2772910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22494, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16377, "fields": {"uri": "http://sws.geonames.org/2660718/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22526, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16386, "fields": {"uri": "http://sws.geonames.org/684490/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22545, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16392, "fields": {"uri": "http://sws.geonames.org/3092742/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22558, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16398, "fields": {"uri": "http://sws.geonames.org/3164453/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22570, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19098, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24869", "domain": "apis default", "rdf_link": "", "entity": 24869, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19116, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24898", "domain": "apis default", "rdf_link": "", "entity": 24898, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19117, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24899", "domain": "apis default", "rdf_link": "", "entity": 24899, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19118, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24900", "domain": "apis default", "rdf_link": "", "entity": 24900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19123, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24908", "domain": "apis default", "rdf_link": "", "entity": 24908, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19124, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24909", "domain": "apis default", "rdf_link": "", "entity": 24909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19125, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24910", "domain": "apis default", "rdf_link": "", "entity": 24910, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19126, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24911", "domain": "apis default", "rdf_link": "", "entity": 24911, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19219, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25012", "domain": "apis default", "rdf_link": "", "entity": 25012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19232, "fields": {"uri": "http://d-nb.info/gnd/4023349-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19233, "fields": {"uri": "http://d-nb.info/gnd/4027096-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6700, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19237, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25035", "domain": "apis default", "rdf_link": "", "entity": 25035, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19242, "fields": {"uri": "http://d-nb.info/gnd/4044660-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19246, "fields": {"uri": "http://d-nb.info/gnd/4127793-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 11799, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19250, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25059", "domain": "apis default", "rdf_link": "", "entity": 25059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19251, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25060", "domain": "apis default", "rdf_link": "", "entity": 25060, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19273, "fields": {"uri": "http://d-nb.info/gnd/4008216-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19304, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25143", "domain": "apis default", "rdf_link": "", "entity": 25143, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19323, "fields": {"uri": "http://d-nb.info/gnd/4076310-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 14608, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19350, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25186", "domain": "apis default", "rdf_link": "", "entity": 25186, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19351, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25187", "domain": "apis default", "rdf_link": "", "entity": 25187, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19352, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25188", "domain": "apis default", "rdf_link": "", "entity": 25188, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19353, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25189", "domain": "apis default", "rdf_link": "", "entity": 25189, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19360, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25199", "domain": "apis default", "rdf_link": "", "entity": 25199, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19361, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25200", "domain": "apis default", "rdf_link": "", "entity": 25200, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25212", "domain": "apis default", "rdf_link": "", "entity": 25212, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25213", "domain": "apis default", "rdf_link": "", "entity": 25213, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19406, "fields": {"uri": "http://d-nb.info/gnd/4008684-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19447, "fields": {"uri": "http://d-nb.info/gnd/4038688-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 5691, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19459, "fields": {"uri": "http://d-nb.info/gnd/4265379-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1454, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19480, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25395", "domain": "apis default", "rdf_link": "", "entity": 25395, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19481, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25396", "domain": "apis default", "rdf_link": "", "entity": 25396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19482, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25397", "domain": "apis default", "rdf_link": "", "entity": 25397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19483, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25398", "domain": "apis default", "rdf_link": "", "entity": 25398, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19486, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25401", "domain": "apis default", "rdf_link": "", "entity": 25401, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19487, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25402", "domain": "apis default", "rdf_link": "", "entity": 25402, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19490, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25405", "domain": "apis default", "rdf_link": "", "entity": 25405, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19498, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25412", "domain": "apis default", "rdf_link": "", "entity": 25412, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19499, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25413", "domain": "apis default", "rdf_link": "", "entity": 25413, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19500, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25414", "domain": "apis default", "rdf_link": "", "entity": 25414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19501, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25415", "domain": "apis default", "rdf_link": "", "entity": 25415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19502, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25416", "domain": "apis default", "rdf_link": "", "entity": 25416, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19503, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25417", "domain": "apis default", "rdf_link": "", "entity": 25417, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19504, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25418", "domain": "apis default", "rdf_link": "", "entity": 25418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19505, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25419", "domain": "apis default", "rdf_link": "", "entity": 25419, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19506, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25420", "domain": "apis default", "rdf_link": "", "entity": 25420, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19507, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25421", "domain": "apis default", "rdf_link": "", "entity": 25421, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19583, "fields": {"uri": "http://d-nb.info/gnd/4021912-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25589", "domain": "apis default", "rdf_link": "", "entity": 25589, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19639, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25626", "domain": "apis default", "rdf_link": "", "entity": 25626, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19640, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25627", "domain": "apis default", "rdf_link": "", "entity": 25627, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19641, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25628", "domain": "apis default", "rdf_link": "", "entity": 25628, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19642, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25629", "domain": "apis default", "rdf_link": "", "entity": 25629, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19643, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25630", "domain": "apis default", "rdf_link": "", "entity": 25630, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19644, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25631", "domain": "apis default", "rdf_link": "", "entity": 25631, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19645, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25632", "domain": "apis default", "rdf_link": "", "entity": 25632, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19646, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25633", "domain": "apis default", "rdf_link": "", "entity": 25633, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19647, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25634", "domain": "apis default", "rdf_link": "", "entity": 25634, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19648, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25635", "domain": "apis default", "rdf_link": "", "entity": 25635, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19665, "fields": {"uri": "http://d-nb.info/gnd/4075643-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13382, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19718, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25767", "domain": "apis default", "rdf_link": "", "entity": 25767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19719, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25768", "domain": "apis default", "rdf_link": "", "entity": 25768, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19720, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25769", "domain": "apis default", "rdf_link": "", "entity": 25769, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19721, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25770", "domain": "apis default", "rdf_link": "", "entity": 25770, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19722, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25771", "domain": "apis default", "rdf_link": "", "entity": 25771, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19723, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25772", "domain": "apis default", "rdf_link": "", "entity": 25772, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19724, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25773", "domain": "apis default", "rdf_link": "", "entity": 25773, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 20488, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/27245", "domain": "apis default", "rdf_link": "", "entity": 27245, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 32623, "fields": {"uri": "http://d-nb.info/gnd/118931482", "domain": "", "rdf_link": "", "entity": 46414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 39250, "fields": {"uri": "http://d-nb.info/gnd/118785028", "domain": "", "rdf_link": "", "entity": 56248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 43650, "fields": {"uri": "http://d-nb.info/gnd/118573527", "domain": "", "rdf_link": "", "entity": 62757, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60547, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/88219", "domain": "apis default", "rdf_link": "", "entity": 88219, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60980, "fields": {"uri": "http://d-nb.info/gnd/118508288", "domain": "", "rdf_link": "", "entity": 88902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 62984, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/92412", "domain": "apis default", "rdf_link": "", "entity": 92412, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63085, "fields": {"uri": "http://d-nb.info/gnd/118677667", "domain": "", "rdf_link": "", "entity": 92603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63174, "fields": {"uri": "http://d-nb.info/gnd/118505955", "domain": "", "rdf_link": "", "entity": 93003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63178, "fields": {"uri": "http://d-nb.info/gnd/119061201", "domain": "", "rdf_link": "", "entity": 93009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63180, "fields": {"uri": "http://d-nb.info/gnd/128578998", "domain": "", "rdf_link": "", "entity": 93012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63182, "fields": {"uri": "http://d-nb.info/gnd/143930567", "domain": "", "rdf_link": "", "entity": 93015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63184, "fields": {"uri": "http://d-nb.info/gnd/136186289", "domain": "", "rdf_link": "", "entity": 93018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63186, "fields": {"uri": "http://d-nb.info/gnd/136186343", "domain": "", "rdf_link": "", "entity": 93021, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63188, "fields": {"uri": "http://d-nb.info/gnd/140067302", "domain": "", "rdf_link": "", "entity": 93024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63189, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93025", "domain": "apis default", "rdf_link": "", "entity": 93025, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63191, "fields": {"uri": "http://d-nb.info/gnd/116539585", "domain": "", "rdf_link": "", "entity": 93028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63193, "fields": {"uri": "http://d-nb.info/gnd/11666827X", "domain": "", "rdf_link": "", "entity": 93031, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63195, "fields": {"uri": "http://d-nb.info/gnd/116689234", "domain": "", "rdf_link": "", "entity": 93034, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63196, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93035", "domain": "apis default", "rdf_link": "", "entity": 93035, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63202, "fields": {"uri": "http://d-nb.info/gnd/130579122", "domain": "", "rdf_link": "", "entity": 93044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63204, "fields": {"uri": "http://d-nb.info/gnd/143681761", "domain": "", "rdf_link": "", "entity": 93047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63206, "fields": {"uri": "http://d-nb.info/gnd/117649953", "domain": "", "rdf_link": "", "entity": 93050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63207, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93051", "domain": "apis default", "rdf_link": "", "entity": 93051, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63210, "fields": {"uri": "http://d-nb.info/gnd/130132098", "domain": "", "rdf_link": "", "entity": 93056, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63212, "fields": {"uri": "http://d-nb.info/gnd/143053272", "domain": "", "rdf_link": "", "entity": 93059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63213, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93060", "domain": "apis default", "rdf_link": "", "entity": 93060, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63216, "fields": {"uri": "http://d-nb.info/gnd/118817418", "domain": "", "rdf_link": "", "entity": 93065, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63218, "fields": {"uri": "http://d-nb.info/gnd/135697719", "domain": "", "rdf_link": "", "entity": 93068, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63220, "fields": {"uri": "http://d-nb.info/gnd/118524283", "domain": "", "rdf_link": "", "entity": 93071, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63222, "fields": {"uri": "http://d-nb.info/gnd/116070935", "domain": "", "rdf_link": "", "entity": 93074, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63223, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93075", "domain": "apis default", "rdf_link": "", "entity": 93075, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63261, "fields": {"uri": "http://d-nb.info/gnd/1012030806", "domain": "", "rdf_link": "", "entity": 93136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63385, "fields": {"uri": "http://d-nb.info/gnd/117736791", "domain": "", "rdf_link": "", "entity": 93328, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63391, "fields": {"uri": "http://d-nb.info/gnd/1019267925", "domain": "", "rdf_link": "", "entity": 93337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63401, "fields": {"uri": "http://d-nb.info/gnd/136782086", "domain": "", "rdf_link": "", "entity": 93352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63411, "fields": {"uri": "http://d-nb.info/gnd/1018979573", "domain": "", "rdf_link": "", "entity": 93366, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63413, "fields": {"uri": "http://d-nb.info/gnd/1019359811", "domain": "", "rdf_link": "", "entity": 93369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63419, "fields": {"uri": "http://d-nb.info/gnd/117634816", "domain": "", "rdf_link": "", "entity": 93378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63420, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93379", "domain": "apis default", "rdf_link": "", "entity": 93379, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63425, "fields": {"uri": "http://d-nb.info/gnd/116907525", "domain": "", "rdf_link": "", "entity": 93387, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63429, "fields": {"uri": "http://d-nb.info/gnd/116856246", "domain": "", "rdf_link": "", "entity": 93393, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63431, "fields": {"uri": "http://d-nb.info/gnd/119334429", "domain": "", "rdf_link": "", "entity": 93396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63432, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93397", "domain": "apis default", "rdf_link": "", "entity": 93397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63434, "fields": {"uri": "http://d-nb.info/gnd/118806025", "domain": "", "rdf_link": "", "entity": 93400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63440, "fields": {"uri": "http://d-nb.info/gnd/1018666664", "domain": "", "rdf_link": "", "entity": 93409, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63441, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93410", "domain": "apis default", "rdf_link": "", "entity": 93410, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63444, "fields": {"uri": "http://d-nb.info/gnd/1014451833", "domain": "", "rdf_link": "", "entity": 93415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63446, "fields": {"uri": "http://d-nb.info/gnd/117612308", "domain": "", "rdf_link": "", "entity": 93418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63462, "fields": {"uri": "http://d-nb.info/gnd/118813919", "domain": "", "rdf_link": "", "entity": 93442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63464, "fields": {"uri": "http://d-nb.info/gnd/1023121581", "domain": "", "rdf_link": "", "entity": 93445, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63466, "fields": {"uri": "http://d-nb.info/gnd/119065932", "domain": "", "rdf_link": "", "entity": 93448, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63467, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93449", "domain": "apis default", "rdf_link": "", "entity": 93449, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63480, "fields": {"uri": "http://d-nb.info/gnd/1021208493", "domain": "", "rdf_link": "", "entity": 93469, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63488, "fields": {"uri": "http://d-nb.info/gnd/137341768", "domain": "", "rdf_link": "", "entity": 93481, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63490, "fields": {"uri": "http://d-nb.info/gnd/1020698381", "domain": "", "rdf_link": "", "entity": 93484, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63492, "fields": {"uri": "http://d-nb.info/gnd/1020698055", "domain": "", "rdf_link": "", "entity": 93487, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63508, "fields": {"uri": "http://d-nb.info/gnd/118732277", "domain": "", "rdf_link": "", "entity": 93510, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63510, "fields": {"uri": "http://d-nb.info/gnd/10788464X", "domain": "", "rdf_link": "", "entity": 93513, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63512, "fields": {"uri": "http://d-nb.info/gnd/134474937", "domain": "", "rdf_link": "", "entity": 93516, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63528, "fields": {"uri": "http://d-nb.info/gnd/13185545X", "domain": "", "rdf_link": "", "entity": 93540, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63532, "fields": {"uri": "http://d-nb.info/gnd/1024716082", "domain": "", "rdf_link": "", "entity": 93546, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63542, "fields": {"uri": "http://d-nb.info/gnd/1026382211", "domain": "", "rdf_link": "", "entity": 93561, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63543, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93562", "domain": "apis default", "rdf_link": "", "entity": 93562, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63550, "fields": {"uri": "http://d-nb.info/gnd/102588485X", "domain": "", "rdf_link": "", "entity": 93573, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63560, "fields": {"uri": "http://d-nb.info/gnd/130027022", "domain": "", "rdf_link": "", "entity": 93588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63568, "fields": {"uri": "http://d-nb.info/gnd/117687030", "domain": "", "rdf_link": "", "entity": 93600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63574, "fields": {"uri": "http://d-nb.info/gnd/122897897", "domain": "", "rdf_link": "", "entity": 93609, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63575, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93610", "domain": "apis default", "rdf_link": "", "entity": 93610, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63578, "fields": {"uri": "http://d-nb.info/gnd/139593128", "domain": "", "rdf_link": "", "entity": 93615, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63594, "fields": {"uri": "http://d-nb.info/gnd/139112200", "domain": "", "rdf_link": "", "entity": 93639, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63596, "fields": {"uri": "http://d-nb.info/gnd/130427012", "domain": "", "rdf_link": "", "entity": 93642, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63598, "fields": {"uri": "http://d-nb.info/gnd/117522139", "domain": "", "rdf_link": "", "entity": 93645, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63602, "fields": {"uri": "http://d-nb.info/gnd/1027427839", "domain": "", "rdf_link": "", "entity": 93651, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63604, "fields": {"uri": "http://d-nb.info/gnd/127691979", "domain": "", "rdf_link": "", "entity": 93654, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63605, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93657", "domain": "apis default", "rdf_link": "", "entity": 93657, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63606, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93658", "domain": "apis default", "rdf_link": "", "entity": 93658, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63608, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93663", "domain": "apis default", "rdf_link": "", "entity": 93663, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63613, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93678", "domain": "apis default", "rdf_link": "", "entity": 93678, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93684", "domain": "apis default", "rdf_link": "", "entity": 93684, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63627, "fields": {"uri": "http://d-nb.info/gnd/123215374", "domain": "", "rdf_link": "", "entity": 93702, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63629, "fields": {"uri": "http://d-nb.info/gnd/12899620X", "domain": "", "rdf_link": "", "entity": 93705, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63635, "fields": {"uri": "http://d-nb.info/gnd/1035683431", "domain": "", "rdf_link": "", "entity": 93714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63636, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93715", "domain": "apis default", "rdf_link": "", "entity": 93715, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63657, "fields": {"uri": "http://d-nb.info/gnd/1034850962", "domain": "", "rdf_link": "", "entity": 93748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63658, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93749", "domain": "apis default", "rdf_link": "", "entity": 93749, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63678, "fields": {"uri": "http://d-nb.info/gnd/135612411", "domain": "", "rdf_link": "", "entity": 93779, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63682, "fields": {"uri": "http://d-nb.info/gnd/1033824674", "domain": "", "rdf_link": "", "entity": 93785, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63686, "fields": {"uri": "http://d-nb.info/gnd/133833348", "domain": "", "rdf_link": "", "entity": 93791, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63692, "fields": {"uri": "http://d-nb.info/gnd/103334690X", "domain": "", "rdf_link": "", "entity": 93800, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63694, "fields": {"uri": "http://d-nb.info/gnd/128900059", "domain": "", "rdf_link": "", "entity": 93803, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63695, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93804", "domain": "apis default", "rdf_link": "", "entity": 93804, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63698, "fields": {"uri": "http://d-nb.info/gnd/1033469084", "domain": "", "rdf_link": "", "entity": 93809, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63702, "fields": {"uri": "http://d-nb.info/gnd/117409669", "domain": "", "rdf_link": "", "entity": 93815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63704, "fields": {"uri": "http://d-nb.info/gnd/1033342483", "domain": "", "rdf_link": "", "entity": 93818, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63716, "fields": {"uri": "http://d-nb.info/gnd/134516001", "domain": "", "rdf_link": "", "entity": 93836, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63718, "fields": {"uri": "http://d-nb.info/gnd/1019536594", "domain": "", "rdf_link": "", "entity": 93839, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63728, "fields": {"uri": "http://d-nb.info/gnd/103283160X", "domain": "", "rdf_link": "", "entity": 93854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63729, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93855", "domain": "apis default", "rdf_link": "", "entity": 93855, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63734, "fields": {"uri": "http://d-nb.info/gnd/103223718X", "domain": "", "rdf_link": "", "entity": 93863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63736, "fields": {"uri": "http://d-nb.info/gnd/118610643", "domain": "", "rdf_link": "", "entity": 93866, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63744, "fields": {"uri": "http://d-nb.info/gnd/1032220473", "domain": "", "rdf_link": "", "entity": 93878, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63745, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93879", "domain": "apis default", "rdf_link": "", "entity": 93879, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63753, "fields": {"uri": "http://d-nb.info/gnd/1031937358", "domain": "", "rdf_link": "", "entity": 93891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63755, "fields": {"uri": "http://d-nb.info/gnd/1031946101", "domain": "", "rdf_link": "", "entity": 93894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63759, "fields": {"uri": "http://d-nb.info/gnd/116848693", "domain": "", "rdf_link": "", "entity": 93900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63761, "fields": {"uri": "http://d-nb.info/gnd/103169420X", "domain": "", "rdf_link": "", "entity": 93903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63765, "fields": {"uri": "http://d-nb.info/gnd/137648588", "domain": "", "rdf_link": "", "entity": 93909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63773, "fields": {"uri": "http://d-nb.info/gnd/116816961", "domain": "", "rdf_link": "", "entity": 93921, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63781, "fields": {"uri": "http://d-nb.info/gnd/118759671", "domain": "", "rdf_link": "", "entity": 93933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63782, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93934", "domain": "apis default", "rdf_link": "", "entity": 93934, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63784, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93937", "domain": "apis default", "rdf_link": "", "entity": 93937, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63786, "fields": {"uri": "http://d-nb.info/gnd/103056423X", "domain": "", "rdf_link": "", "entity": 93940, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63790, "fields": {"uri": "http://d-nb.info/gnd/1030283044", "domain": "", "rdf_link": "", "entity": 93946, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63796, "fields": {"uri": "http://d-nb.info/gnd/1031146539", "domain": "", "rdf_link": "", "entity": 93955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63798, "fields": {"uri": "http://d-nb.info/gnd/139576126", "domain": "", "rdf_link": "", "entity": 93958, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63800, "fields": {"uri": "http://d-nb.info/gnd/129263761", "domain": "", "rdf_link": "", "entity": 93961, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63802, "fields": {"uri": "http://d-nb.info/gnd/121246736", "domain": "", "rdf_link": "", "entity": 93964, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63804, "fields": {"uri": "http://d-nb.info/gnd/1029738556", "domain": "", "rdf_link": "", "entity": 93967, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63806, "fields": {"uri": "http://d-nb.info/gnd/1029748209", "domain": "", "rdf_link": "", "entity": 93970, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63815, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93988", "domain": "apis default", "rdf_link": "", "entity": 93988, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63816, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93991", "domain": "apis default", "rdf_link": "", "entity": 93991, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63821, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94003", "domain": "apis default", "rdf_link": "", "entity": 94003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63822, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94006", "domain": "apis default", "rdf_link": "", "entity": 94006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63823, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94009", "domain": "apis default", "rdf_link": "", "entity": 94009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63826, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94018", "domain": "apis default", "rdf_link": "", "entity": 94018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63865, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94102", "domain": "apis default", "rdf_link": "", "entity": 94102, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63866, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94103", "domain": "apis default", "rdf_link": "", "entity": 94103, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63867, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94104", "domain": "apis default", "rdf_link": "", "entity": 94104, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63868, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94105", "domain": "apis default", "rdf_link": "", "entity": 94105, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63888, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94120", "domain": "apis default", "rdf_link": "", "entity": 94120, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63889, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94121", "domain": "apis default", "rdf_link": "", "entity": 94121, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63890, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94122", "domain": "apis default", "rdf_link": "", "entity": 94122, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63891, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94123", "domain": "apis default", "rdf_link": "", "entity": 94123, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63892, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94124", "domain": "apis default", "rdf_link": "", "entity": 94124, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63893, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94125", "domain": "apis default", "rdf_link": "", "entity": 94125, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63894, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94126", "domain": "apis default", "rdf_link": "", "entity": 94126, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63895, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94127", "domain": "apis default", "rdf_link": "", "entity": 94127, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63896, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94128", "domain": "apis default", "rdf_link": "", "entity": 94128, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63897, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94129", "domain": "apis default", "rdf_link": "", "entity": 94129, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63900, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94131", "domain": "apis default", "rdf_link": "", "entity": 94131, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63901, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94132", "domain": "apis default", "rdf_link": "", "entity": 94132, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63902, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94133", "domain": "apis default", "rdf_link": "", "entity": 94133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63903, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94134", "domain": "apis default", "rdf_link": "", "entity": 94134, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63904, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94135", "domain": "apis default", "rdf_link": "", "entity": 94135, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63905, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94136", "domain": "apis default", "rdf_link": "", "entity": 94136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63906, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94137", "domain": "apis default", "rdf_link": "", "entity": 94137, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94138", "domain": "apis default", "rdf_link": "", "entity": 94138, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63908, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94139", "domain": "apis default", "rdf_link": "", "entity": 94139, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63909, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94140", "domain": "apis default", "rdf_link": "", "entity": 94140, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63910, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94141", "domain": "apis default", "rdf_link": "", "entity": 94141, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63956, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94247", "domain": "apis default", "rdf_link": "", "entity": 94247, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63957, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94248", "domain": "apis default", "rdf_link": "", "entity": 94248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63958, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94249", "domain": "apis default", "rdf_link": "", "entity": 94249, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63959, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94250", "domain": "apis default", "rdf_link": "", "entity": 94250, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63960, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94251", "domain": "apis default", "rdf_link": "", "entity": 94251, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63999, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94307", "domain": "apis default", "rdf_link": "", "entity": 94307, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64000, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94308", "domain": "apis default", "rdf_link": "", "entity": 94308, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64001, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94309", "domain": "apis default", "rdf_link": "", "entity": 94309, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64002, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94310", "domain": "apis default", "rdf_link": "", "entity": 94310, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64003, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94311", "domain": "apis default", "rdf_link": "", "entity": 94311, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64004, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94312", "domain": "apis default", "rdf_link": "", "entity": 94312, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64005, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94313", "domain": "apis default", "rdf_link": "", "entity": 94313, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64006, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94314", "domain": "apis default", "rdf_link": "", "entity": 94314, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64007, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94315", "domain": "apis default", "rdf_link": "", "entity": 94315, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94323", "domain": "apis default", "rdf_link": "", "entity": 94323, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64013, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94324", "domain": "apis default", "rdf_link": "", "entity": 94324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64030, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94351", "domain": "apis default", "rdf_link": "", "entity": 94351, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64031, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94352", "domain": "apis default", "rdf_link": "", "entity": 94352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64032, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94353", "domain": "apis default", "rdf_link": "", "entity": 94353, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64033, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94354", "domain": "apis default", "rdf_link": "", "entity": 94354, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64034, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94355", "domain": "apis default", "rdf_link": "", "entity": 94355, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64035, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94356", "domain": "apis default", "rdf_link": "", "entity": 94356, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64036, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94357", "domain": "apis default", "rdf_link": "", "entity": 94357, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64037, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94358", "domain": "apis default", "rdf_link": "", "entity": 94358, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64038, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94359", "domain": "apis default", "rdf_link": "", "entity": 94359, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64039, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94360", "domain": "apis default", "rdf_link": "", "entity": 94360, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64040, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94361", "domain": "apis default", "rdf_link": "", "entity": 94361, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64041, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94362", "domain": "apis default", "rdf_link": "", "entity": 94362, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64084, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94433", "domain": "apis default", "rdf_link": "", "entity": 94433, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64085, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94434", "domain": "apis default", "rdf_link": "", "entity": 94434, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64086, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94435", "domain": "apis default", "rdf_link": "", "entity": 94435, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64087, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94436", "domain": "apis default", "rdf_link": "", "entity": 94436, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64088, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94437", "domain": "apis default", "rdf_link": "", "entity": 94437, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64089, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94438", "domain": "apis default", "rdf_link": "", "entity": 94438, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64090, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94439", "domain": "apis default", "rdf_link": "", "entity": 94439, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64091, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94440", "domain": "apis default", "rdf_link": "", "entity": 94440, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64092, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94441", "domain": "apis default", "rdf_link": "", "entity": 94441, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64093, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94442", "domain": "apis default", "rdf_link": "", "entity": 94442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64139, "fields": {"uri": "http://d-nb.info/gnd/4074335-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10265, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64175, "fields": {"uri": "http://d-nb.info/gnd/4035304-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64185, "fields": {"uri": "http://d-nb.info/gnd/4108914-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64201, "fields": {"uri": "http://d-nb.info/gnd/4008858-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64255, "fields": {"uri": "http://d-nb.info/gnd/4010833-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64261, "fields": {"uri": "http://d-nb.info/gnd/4073953-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9475, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64271, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94822", "domain": "apis default", "rdf_link": "", "entity": 94822, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64272, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94823", "domain": "apis default", "rdf_link": "", "entity": 94823, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64273, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94824", "domain": "apis default", "rdf_link": "", "entity": 94824, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64274, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94825", "domain": "apis default", "rdf_link": "", "entity": 94825, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64275, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94826", "domain": "apis default", "rdf_link": "", "entity": 94826, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64276, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94827", "domain": "apis default", "rdf_link": "", "entity": 94827, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64277, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94828", "domain": "apis default", "rdf_link": "", "entity": 94828, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64278, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94829", "domain": "apis default", "rdf_link": "", "entity": 94829, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64279, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94830", "domain": "apis default", "rdf_link": "", "entity": 94830, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64280, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94831", "domain": "apis default", "rdf_link": "", "entity": 94831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64318, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94885", "domain": "apis default", "rdf_link": "", "entity": 94885, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64319, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94886", "domain": "apis default", "rdf_link": "", "entity": 94886, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64320, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94887", "domain": "apis default", "rdf_link": "", "entity": 94887, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64321, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94888", "domain": "apis default", "rdf_link": "", "entity": 94888, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64322, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94889", "domain": "apis default", "rdf_link": "", "entity": 94889, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64323, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94890", "domain": "apis default", "rdf_link": "", "entity": 94890, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64324, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94891", "domain": "apis default", "rdf_link": "", "entity": 94891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64325, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94892", "domain": "apis default", "rdf_link": "", "entity": 94892, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64326, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94893", "domain": "apis default", "rdf_link": "", "entity": 94893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64327, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94894", "domain": "apis default", "rdf_link": "", "entity": 94894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64328, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94895", "domain": "apis default", "rdf_link": "", "entity": 94895, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64329, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94896", "domain": "apis default", "rdf_link": "", "entity": 94896, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64330, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94897", "domain": "apis default", "rdf_link": "", "entity": 94897, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64331, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94898", "domain": "apis default", "rdf_link": "", "entity": 94898, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64332, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94899", "domain": "apis default", "rdf_link": "", "entity": 94899, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64333, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94900", "domain": "apis default", "rdf_link": "", "entity": 94900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64334, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94901", "domain": "apis default", "rdf_link": "", "entity": 94901, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64335, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94902", "domain": "apis default", "rdf_link": "", "entity": 94902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64336, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94903", "domain": "apis default", "rdf_link": "", "entity": 94903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64337, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94904", "domain": "apis default", "rdf_link": "", "entity": 94904, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64387, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95024", "domain": "apis default", "rdf_link": "", "entity": 95024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64388, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95025", "domain": "apis default", "rdf_link": "", "entity": 95025, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64389, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95026", "domain": "apis default", "rdf_link": "", "entity": 95026, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64390, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95027", "domain": "apis default", "rdf_link": "", "entity": 95027, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64391, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95028", "domain": "apis default", "rdf_link": "", "entity": 95028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64392, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95029", "domain": "apis default", "rdf_link": "", "entity": 95029, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64393, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95030", "domain": "apis default", "rdf_link": "", "entity": 95030, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64401, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95043", "domain": "apis default", "rdf_link": "", "entity": 95043, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64402, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95044", "domain": "apis default", "rdf_link": "", "entity": 95044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64403, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95045", "domain": "apis default", "rdf_link": "", "entity": 95045, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64404, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95046", "domain": "apis default", "rdf_link": "", "entity": 95046, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64405, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95047", "domain": "apis default", "rdf_link": "", "entity": 95047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64406, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95048", "domain": "apis default", "rdf_link": "", "entity": 95048, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64407, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95049", "domain": "apis default", "rdf_link": "", "entity": 95049, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64408, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95050", "domain": "apis default", "rdf_link": "", "entity": 95050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64409, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95051", "domain": "apis default", "rdf_link": "", "entity": 95051, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64410, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95052", "domain": "apis default", "rdf_link": "", "entity": 95052, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64411, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95053", "domain": "apis default", "rdf_link": "", "entity": 95053, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64412, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95054", "domain": "apis default", "rdf_link": "", "entity": 95054, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64443, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95123", "domain": "apis default", "rdf_link": "", "entity": 95123, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64444, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95124", "domain": "apis default", "rdf_link": "", "entity": 95124, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64445, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95125", "domain": "apis default", "rdf_link": "", "entity": 95125, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64446, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95126", "domain": "apis default", "rdf_link": "", "entity": 95126, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64447, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95127", "domain": "apis default", "rdf_link": "", "entity": 95127, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64448, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95128", "domain": "apis default", "rdf_link": "", "entity": 95128, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64449, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95129", "domain": "apis default", "rdf_link": "", "entity": 95129, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64450, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95130", "domain": "apis default", "rdf_link": "", "entity": 95130, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64451, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95131", "domain": "apis default", "rdf_link": "", "entity": 95131, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64463, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95156", "domain": "apis default", "rdf_link": "", "entity": 95156, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64464, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95157", "domain": "apis default", "rdf_link": "", "entity": 95157, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64465, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95158", "domain": "apis default", "rdf_link": "", "entity": 95158, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64466, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95159", "domain": "apis default", "rdf_link": "", "entity": 95159, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64467, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95160", "domain": "apis default", "rdf_link": "", "entity": 95160, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64468, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95161", "domain": "apis default", "rdf_link": "", "entity": 95161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64469, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95162", "domain": "apis default", "rdf_link": "", "entity": 95162, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64470, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95163", "domain": "apis default", "rdf_link": "", "entity": 95163, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64471, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95164", "domain": "apis default", "rdf_link": "", "entity": 95164, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64591, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95397", "domain": "apis default", "rdf_link": "", "entity": 95397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64592, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95398", "domain": "apis default", "rdf_link": "", "entity": 95398, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64593, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95399", "domain": "apis default", "rdf_link": "", "entity": 95399, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64594, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95400", "domain": "apis default", "rdf_link": "", "entity": 95400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64595, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95401", "domain": "apis default", "rdf_link": "", "entity": 95401, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64596, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95402", "domain": "apis default", "rdf_link": "", "entity": 95402, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64597, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95403", "domain": "apis default", "rdf_link": "", "entity": 95403, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64598, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95404", "domain": "apis default", "rdf_link": "", "entity": 95404, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64599, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95405", "domain": "apis default", "rdf_link": "", "entity": 95405, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64600, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95406", "domain": "apis default", "rdf_link": "", "entity": 95406, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64601, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95407", "domain": "apis default", "rdf_link": "", "entity": 95407, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64625, "fields": {"uri": "http://d-nb.info/gnd/4075578-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13253, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64656, "fields": {"uri": "http://d-nb.info/gnd/4079048-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 20549, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64696, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95582", "domain": "apis default", "rdf_link": "", "entity": 95582, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64697, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95583", "domain": "apis default", "rdf_link": "", "entity": 95583, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64698, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95584", "domain": "apis default", "rdf_link": "", "entity": 95584, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64704, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95596", "domain": "apis default", "rdf_link": "", "entity": 95596, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64705, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95597", "domain": "apis default", "rdf_link": "", "entity": 95597, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64706, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95598", "domain": "apis default", "rdf_link": "", "entity": 95598, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64707, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95599", "domain": "apis default", "rdf_link": "", "entity": 95599, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64708, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95600", "domain": "apis default", "rdf_link": "", "entity": 95600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64709, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95601", "domain": "apis default", "rdf_link": "", "entity": 95601, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64710, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95602", "domain": "apis default", "rdf_link": "", "entity": 95602, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64711, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95603", "domain": "apis default", "rdf_link": "", "entity": 95603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64712, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95604", "domain": "apis default", "rdf_link": "", "entity": 95604, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64762, "fields": {"uri": "http://d-nb.info/gnd/4008456-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 327, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64854, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95847", "domain": "apis default", "rdf_link": "", "entity": 95847, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64855, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95848", "domain": "apis default", "rdf_link": "", "entity": 95848, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64867, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95867", "domain": "apis default", "rdf_link": "", "entity": 95867, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64868, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95868", "domain": "apis default", "rdf_link": "", "entity": 95868, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64869, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95869", "domain": "apis default", "rdf_link": "", "entity": 95869, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64870, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95870", "domain": "apis default", "rdf_link": "", "entity": 95870, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64871, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95871", "domain": "apis default", "rdf_link": "", "entity": 95871, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64872, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95872", "domain": "apis default", "rdf_link": "", "entity": 95872, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64873, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95873", "domain": "apis default", "rdf_link": "", "entity": 95873, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64874, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95874", "domain": "apis default", "rdf_link": "", "entity": 95874, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64875, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95875", "domain": "apis default", "rdf_link": "", "entity": 95875, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64876, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95876", "domain": "apis default", "rdf_link": "", "entity": 95876, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64888, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95893", "domain": "apis default", "rdf_link": "", "entity": 95893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64904, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95929", "domain": "apis default", "rdf_link": "", "entity": 95929, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64905, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95930", "domain": "apis default", "rdf_link": "", "entity": 95930, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64906, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95931", "domain": "apis default", "rdf_link": "", "entity": 95931, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95932", "domain": "apis default", "rdf_link": "", "entity": 95932, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64920, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95949", "domain": "apis default", "rdf_link": "", "entity": 95949, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64921, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95950", "domain": "apis default", "rdf_link": "", "entity": 95950, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64922, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95951", "domain": "apis default", "rdf_link": "", "entity": 95951, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64923, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95952", "domain": "apis default", "rdf_link": "", "entity": 95952, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64924, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95953", "domain": "apis default", "rdf_link": "", "entity": 95953, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64925, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95954", "domain": "apis default", "rdf_link": "", "entity": 95954, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64926, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95955", "domain": "apis default", "rdf_link": "", "entity": 95955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64927, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95956", "domain": "apis default", "rdf_link": "", "entity": 95956, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64928, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95957", "domain": "apis default", "rdf_link": "", "entity": 95957, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64958, "fields": {"uri": "http://d-nb.info/gnd/4106475-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 18400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64961, "fields": {"uri": "http://d-nb.info/gnd/4074255-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65015, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96143", "domain": "apis default", "rdf_link": "", "entity": 96143, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65016, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96144", "domain": "apis default", "rdf_link": "", "entity": 96144, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65017, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96145", "domain": "apis default", "rdf_link": "", "entity": 96145, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65018, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96146", "domain": "apis default", "rdf_link": "", "entity": 96146, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65047, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96208", "domain": "apis default", "rdf_link": "", "entity": 96208, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65048, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96209", "domain": "apis default", "rdf_link": "", "entity": 96209, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65049, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96210", "domain": "apis default", "rdf_link": "", "entity": 96210, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65050, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96211", "domain": "apis default", "rdf_link": "", "entity": 96211, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65059, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96221", "domain": "apis default", "rdf_link": "", "entity": 96221, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65060, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96222", "domain": "apis default", "rdf_link": "", "entity": 96222, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65061, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96223", "domain": "apis default", "rdf_link": "", "entity": 96223, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65062, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96224", "domain": "apis default", "rdf_link": "", "entity": 96224, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65063, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96225", "domain": "apis default", "rdf_link": "", "entity": 96225, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65064, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96226", "domain": "apis default", "rdf_link": "", "entity": 96226, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65176, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96458", "domain": "apis default", "rdf_link": "", "entity": 96458, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65177, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96459", "domain": "apis default", "rdf_link": "", "entity": 96459, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65178, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96460", "domain": "apis default", "rdf_link": "", "entity": 96460, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65179, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96461", "domain": "apis default", "rdf_link": "", "entity": 96461, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65180, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96462", "domain": "apis default", "rdf_link": "", "entity": 96462, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65181, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96463", "domain": "apis default", "rdf_link": "", "entity": 96463, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65182, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96464", "domain": "apis default", "rdf_link": "", "entity": 96464, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65183, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96465", "domain": "apis default", "rdf_link": "", "entity": 96465, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65184, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96466", "domain": "apis default", "rdf_link": "", "entity": 96466, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65185, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96467", "domain": "apis default", "rdf_link": "", "entity": 96467, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65200, "fields": {"uri": "http://d-nb.info/gnd/4033488-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9287, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65253, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96620", "domain": "apis default", "rdf_link": "", "entity": 96620, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65254, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96621", "domain": "apis default", "rdf_link": "", "entity": 96621, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65255, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96622", "domain": "apis default", "rdf_link": "", "entity": 96622, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65256, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96623", "domain": "apis default", "rdf_link": "", "entity": 96623, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65292, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96728", "domain": "apis default", "rdf_link": "", "entity": 96728, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65293, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96729", "domain": "apis default", "rdf_link": "", "entity": 96729, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65294, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96730", "domain": "apis default", "rdf_link": "", "entity": 96730, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65295, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96731", "domain": "apis default", "rdf_link": "", "entity": 96731, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65296, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96732", "domain": "apis default", "rdf_link": "", "entity": 96732, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65297, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96733", "domain": "apis default", "rdf_link": "", "entity": 96733, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65298, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96734", "domain": "apis default", "rdf_link": "", "entity": 96734, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65299, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96735", "domain": "apis default", "rdf_link": "", "entity": 96735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65300, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96736", "domain": "apis default", "rdf_link": "", "entity": 96736, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65301, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96737", "domain": "apis default", "rdf_link": "", "entity": 96737, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65302, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96738", "domain": "apis default", "rdf_link": "", "entity": 96738, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65305, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96740", "domain": "apis default", "rdf_link": "", "entity": 96740, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65306, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96741", "domain": "apis default", "rdf_link": "", "entity": 96741, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65307, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96742", "domain": "apis default", "rdf_link": "", "entity": 96742, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65308, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96743", "domain": "apis default", "rdf_link": "", "entity": 96743, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65309, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96744", "domain": "apis default", "rdf_link": "", "entity": 96744, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65310, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96745", "domain": "apis default", "rdf_link": "", "entity": 96745, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65311, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96746", "domain": "apis default", "rdf_link": "", "entity": 96746, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65312, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96747", "domain": "apis default", "rdf_link": "", "entity": 96747, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65313, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96748", "domain": "apis default", "rdf_link": "", "entity": 96748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65314, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96749", "domain": "apis default", "rdf_link": "", "entity": 96749, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65315, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96750", "domain": "apis default", "rdf_link": "", "entity": 96750, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65320, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96758", "domain": "apis default", "rdf_link": "", "entity": 96758, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65321, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96759", "domain": "apis default", "rdf_link": "", "entity": 96759, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65351, "fields": {"uri": "http://d-nb.info/gnd/4013237-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65353, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96813", "domain": "apis default", "rdf_link": "", "entity": 96813, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65354, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96814", "domain": "apis default", "rdf_link": "", "entity": 96814, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65355, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96815", "domain": "apis default", "rdf_link": "", "entity": 96815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65356, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96816", "domain": "apis default", "rdf_link": "", "entity": 96816, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65357, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96817", "domain": "apis default", "rdf_link": "", "entity": 96817, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96858", "domain": "apis default", "rdf_link": "", "entity": 96858, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96859", "domain": "apis default", "rdf_link": "", "entity": 96859, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65374, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96860", "domain": "apis default", "rdf_link": "", "entity": 96860, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65375, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96861", "domain": "apis default", "rdf_link": "", "entity": 96861, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65376, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96862", "domain": "apis default", "rdf_link": "", "entity": 96862, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65377, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96863", "domain": "apis default", "rdf_link": "", "entity": 96863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65378, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96864", "domain": "apis default", "rdf_link": "", "entity": 96864, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65379, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96865", "domain": "apis default", "rdf_link": "", "entity": 96865, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65410, "fields": {"uri": "http://d-nb.info/gnd/4071444-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 22526, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65419, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96947", "domain": "apis default", "rdf_link": "", "entity": 96947, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65420, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96948", "domain": "apis default", "rdf_link": "", "entity": 96948, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65421, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96949", "domain": "apis default", "rdf_link": "", "entity": 96949, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65422, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96950", "domain": "apis default", "rdf_link": "", "entity": 96950, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65423, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96951", "domain": "apis default", "rdf_link": "", "entity": 96951, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65424, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96952", "domain": "apis default", "rdf_link": "", "entity": 96952, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65425, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96953", "domain": "apis default", "rdf_link": "", "entity": 96953, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65426, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96954", "domain": "apis default", "rdf_link": "", "entity": 96954, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65427, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96955", "domain": "apis default", "rdf_link": "", "entity": 96955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65428, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96956", "domain": "apis default", "rdf_link": "", "entity": 96956, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65693, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97430", "domain": "apis default", "rdf_link": "", "entity": 97430, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65873, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97529", "domain": "apis default", "rdf_link": "", "entity": 97529, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65874, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97530", "domain": "apis default", "rdf_link": "", "entity": 97530, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65875, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97531", "domain": "apis default", "rdf_link": "", "entity": 97531, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65876, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97532", "domain": "apis default", "rdf_link": "", "entity": 97532, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65877, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97533", "domain": "apis default", "rdf_link": "", "entity": 97533, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65878, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97534", "domain": "apis default", "rdf_link": "", "entity": 97534, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65942, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97578", "domain": "apis default", "rdf_link": "", "entity": 97578, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65966, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97592", "domain": "apis default", "rdf_link": "", "entity": 97592, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65967, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97593", "domain": "apis default", "rdf_link": "", "entity": 97593, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66003, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97617", "domain": "apis default", "rdf_link": "", "entity": 97617, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97623", "domain": "apis default", "rdf_link": "", "entity": 97623, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66072, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97657", "domain": "apis default", "rdf_link": "", "entity": 97657, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66164, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97707", "domain": "apis default", "rdf_link": "", "entity": 97707, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66189, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97723", "domain": "apis default", "rdf_link": "", "entity": 97723, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66244, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97753", "domain": "apis default", "rdf_link": "", "entity": 97753, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66309, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97790", "domain": "apis default", "rdf_link": "", "entity": 97790, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66387, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97834", "domain": "apis default", "rdf_link": "", "entity": 97834, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66410, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97849", "domain": "apis default", "rdf_link": "", "entity": 97849, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66474, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97884", "domain": "apis default", "rdf_link": "", "entity": 97884, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66479, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97888", "domain": "apis default", "rdf_link": "", "entity": 97888, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66492, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97896", "domain": "apis default", "rdf_link": "", "entity": 97896, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66559, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97933", "domain": "apis default", "rdf_link": "", "entity": 97933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66576, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97943", "domain": "apis default", "rdf_link": "", "entity": 97943, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66577, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97944", "domain": "apis default", "rdf_link": "", "entity": 97944, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66578, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97945", "domain": "apis default", "rdf_link": "", "entity": 97945, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97976", "domain": "apis default", "rdf_link": "", "entity": 97976, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66616, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97977", "domain": "apis default", "rdf_link": "", "entity": 97977, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66629, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97986", "domain": "apis default", "rdf_link": "", "entity": 97986, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66662, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98006", "domain": "apis default", "rdf_link": "", "entity": 98006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66690, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98024", "domain": "apis default", "rdf_link": "", "entity": 98024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66856, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98183", "domain": "apis default", "rdf_link": "", "entity": 98183, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66857, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98184", "domain": "apis default", "rdf_link": "", "entity": 98184, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66858, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98185", "domain": "apis default", "rdf_link": "", "entity": 98185, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66886, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98237", "domain": "apis default", "rdf_link": "", "entity": 98237, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98296", "domain": "apis default", "rdf_link": "", "entity": 98296, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66908, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98297", "domain": "apis default", "rdf_link": "", "entity": 98297, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66909, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98298", "domain": "apis default", "rdf_link": "", "entity": 98298, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66910, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98299", "domain": "apis default", "rdf_link": "", "entity": 98299, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66911, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98300", "domain": "apis default", "rdf_link": "", "entity": 98300, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66912, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98301", "domain": "apis default", "rdf_link": "", "entity": 98301, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66935, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98348", "domain": "apis default", "rdf_link": "", "entity": 98348, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66994, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98551", "domain": "apis default", "rdf_link": "", "entity": 98551, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67004, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98569", "domain": "apis default", "rdf_link": "", "entity": 98569, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67005, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98570", "domain": "apis default", "rdf_link": "", "entity": 98570, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67008, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98579", "domain": "apis default", "rdf_link": "", "entity": 98579, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67009, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98580", "domain": "apis default", "rdf_link": "", "entity": 98580, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67010, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98581", "domain": "apis default", "rdf_link": "", "entity": 98581, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67011, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98582", "domain": "apis default", "rdf_link": "", "entity": 98582, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98583", "domain": "apis default", "rdf_link": "", "entity": 98583, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67013, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98584", "domain": "apis default", "rdf_link": "", "entity": 98584, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67014, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98585", "domain": "apis default", "rdf_link": "", "entity": 98585, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67015, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98586", "domain": "apis default", "rdf_link": "", "entity": 98586, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67016, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98587", "domain": "apis default", "rdf_link": "", "entity": 98587, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67017, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98588", "domain": "apis default", "rdf_link": "", "entity": 98588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67021, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98604", "domain": "apis default", "rdf_link": "", "entity": 98604, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67022, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98605", "domain": "apis default", "rdf_link": "", "entity": 98605, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67023, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98606", "domain": "apis default", "rdf_link": "", "entity": 98606, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67039, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98696", "domain": "apis default", "rdf_link": "", "entity": 98696, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67040, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98697", "domain": "apis default", "rdf_link": "", "entity": 98697, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67043, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98714", "domain": "apis default", "rdf_link": "", "entity": 98714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67050, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98722", "domain": "apis default", "rdf_link": "", "entity": 98722, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67051, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98723", "domain": "apis default", "rdf_link": "", "entity": 98723, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67052, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98724", "domain": "apis default", "rdf_link": "", "entity": 98724, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67053, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98725", "domain": "apis default", "rdf_link": "", "entity": 98725, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67054, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98726", "domain": "apis default", "rdf_link": "", "entity": 98726, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67055, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98727", "domain": "apis default", "rdf_link": "", "entity": 98727, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67056, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98728", "domain": "apis default", "rdf_link": "", "entity": 98728, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67057, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98729", "domain": "apis default", "rdf_link": "", "entity": 98729, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67058, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98730", "domain": "apis default", "rdf_link": "", "entity": 98730, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67059, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98731", "domain": "apis default", "rdf_link": "", "entity": 98731, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67060, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98732", "domain": "apis default", "rdf_link": "", "entity": 98732, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67061, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98733", "domain": "apis default", "rdf_link": "", "entity": 98733, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67062, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98734", "domain": "apis default", "rdf_link": "", "entity": 98734, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67063, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98735", "domain": "apis default", "rdf_link": "", "entity": 98735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67064, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98736", "domain": "apis default", "rdf_link": "", "entity": 98736, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67065, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98737", "domain": "apis default", "rdf_link": "", "entity": 98737, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67092, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98886", "domain": "apis default", "rdf_link": "", "entity": 98886, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67099, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98891", "domain": "apis default", "rdf_link": "", "entity": 98891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67100, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98892", "domain": "apis default", "rdf_link": "", "entity": 98892, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67101, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98893", "domain": "apis default", "rdf_link": "", "entity": 98893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67110, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98922", "domain": "apis default", "rdf_link": "", "entity": 98922, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67111, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98923", "domain": "apis default", "rdf_link": "", "entity": 98923, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67112, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98924", "domain": "apis default", "rdf_link": "", "entity": 98924, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67113, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98925", "domain": "apis default", "rdf_link": "", "entity": 98925, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67124, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98980", "domain": "apis default", "rdf_link": "", "entity": 98980, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67128, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98990", "domain": "apis default", "rdf_link": "", "entity": 98990, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67129, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98991", "domain": "apis default", "rdf_link": "", "entity": 98991, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67130, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98992", "domain": "apis default", "rdf_link": "", "entity": 98992, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67131, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98993", "domain": "apis default", "rdf_link": "", "entity": 98993, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67132, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98994", "domain": "apis default", "rdf_link": "", "entity": 98994, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67133, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98995", "domain": "apis default", "rdf_link": "", "entity": 98995, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67134, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98996", "domain": "apis default", "rdf_link": "", "entity": 98996, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67135, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98997", "domain": "apis default", "rdf_link": "", "entity": 98997, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67136, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98998", "domain": "apis default", "rdf_link": "", "entity": 98998, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67137, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98999", "domain": "apis default", "rdf_link": "", "entity": 98999, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67138, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99000", "domain": "apis default", "rdf_link": "", "entity": 99000, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67139, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99001", "domain": "apis default", "rdf_link": "", "entity": 99001, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67140, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99002", "domain": "apis default", "rdf_link": "", "entity": 99002, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67141, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99003", "domain": "apis default", "rdf_link": "", "entity": 99003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67142, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99004", "domain": "apis default", "rdf_link": "", "entity": 99004, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67143, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99005", "domain": "apis default", "rdf_link": "", "entity": 99005, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67144, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99006", "domain": "apis default", "rdf_link": "", "entity": 99006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67145, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99007", "domain": "apis default", "rdf_link": "", "entity": 99007, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67146, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99008", "domain": "apis default", "rdf_link": "", "entity": 99008, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67147, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99009", "domain": "apis default", "rdf_link": "", "entity": 99009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67155, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99075", "domain": "apis default", "rdf_link": "", "entity": 99075, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67158, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99092", "domain": "apis default", "rdf_link": "", "entity": 99092, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67159, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99093", "domain": "apis default", "rdf_link": "", "entity": 99093, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67160, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99094", "domain": "apis default", "rdf_link": "", "entity": 99094, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67161, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99095", "domain": "apis default", "rdf_link": "", "entity": 99095, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67162, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99096", "domain": "apis default", "rdf_link": "", "entity": 99096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67163, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99097", "domain": "apis default", "rdf_link": "", "entity": 99097, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67164, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99098", "domain": "apis default", "rdf_link": "", "entity": 99098, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67165, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99099", "domain": "apis default", "rdf_link": "", "entity": 99099, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67166, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99100", "domain": "apis default", "rdf_link": "", "entity": 99100, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67167, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99101", "domain": "apis default", "rdf_link": "", "entity": 99101, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67168, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99102", "domain": "apis default", "rdf_link": "", "entity": 99102, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67169, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99103", "domain": "apis default", "rdf_link": "", "entity": 99103, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67170, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99104", "domain": "apis default", "rdf_link": "", "entity": 99104, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67171, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99105", "domain": "apis default", "rdf_link": "", "entity": 99105, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67172, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99106", "domain": "apis default", "rdf_link": "", "entity": 99106, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67173, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99107", "domain": "apis default", "rdf_link": "", "entity": 99107, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67174, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99108", "domain": "apis default", "rdf_link": "", "entity": 99108, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67175, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99109", "domain": "apis default", "rdf_link": "", "entity": 99109, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67176, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99110", "domain": "apis default", "rdf_link": "", "entity": 99110, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67182, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99156", "domain": "apis default", "rdf_link": "", "entity": 99156, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67217, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99336", "domain": "apis default", "rdf_link": "", "entity": 99336, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67218, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99337", "domain": "apis default", "rdf_link": "", "entity": 99337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67225, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99352", "domain": "apis default", "rdf_link": "", "entity": 99352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67226, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99353", "domain": "apis default", "rdf_link": "", "entity": 99353, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67227, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99354", "domain": "apis default", "rdf_link": "", "entity": 99354, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67228, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99355", "domain": "apis default", "rdf_link": "", "entity": 99355, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67229, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99356", "domain": "apis default", "rdf_link": "", "entity": 99356, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67230, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99357", "domain": "apis default", "rdf_link": "", "entity": 99357, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67231, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99358", "domain": "apis default", "rdf_link": "", "entity": 99358, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67234, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99369", "domain": "apis default", "rdf_link": "", "entity": 99369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67235, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99370", "domain": "apis default", "rdf_link": "", "entity": 99370, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67236, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99371", "domain": "apis default", "rdf_link": "", "entity": 99371, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67237, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99372", "domain": "apis default", "rdf_link": "", "entity": 99372, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67238, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99373", "domain": "apis default", "rdf_link": "", "entity": 99373, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67239, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99374", "domain": "apis default", "rdf_link": "", "entity": 99374, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67240, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99375", "domain": "apis default", "rdf_link": "", "entity": 99375, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67241, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99376", "domain": "apis default", "rdf_link": "", "entity": 99376, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67242, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99377", "domain": "apis default", "rdf_link": "", "entity": 99377, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67243, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99378", "domain": "apis default", "rdf_link": "", "entity": 99378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67248, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99416", "domain": "apis default", "rdf_link": "", "entity": 99416, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67249, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99417", "domain": "apis default", "rdf_link": "", "entity": 99417, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67250, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99418", "domain": "apis default", "rdf_link": "", "entity": 99418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67251, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99419", "domain": "apis default", "rdf_link": "", "entity": 99419, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67252, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99420", "domain": "apis default", "rdf_link": "", "entity": 99420, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67253, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99421", "domain": "apis default", "rdf_link": "", "entity": 99421, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67254, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99422", "domain": "apis default", "rdf_link": "", "entity": 99422, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67255, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99423", "domain": "apis default", "rdf_link": "", "entity": 99423, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67343, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99744", "domain": "apis default", "rdf_link": "", "entity": 99744, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67366, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99841", "domain": "apis default", "rdf_link": "", "entity": 99841, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67367, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99842", "domain": "apis default", "rdf_link": "", "entity": 99842, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67368, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99843", "domain": "apis default", "rdf_link": "", "entity": 99843, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67369, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99844", "domain": "apis default", "rdf_link": "", "entity": 99844, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67370, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99845", "domain": "apis default", "rdf_link": "", "entity": 99845, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67371, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99846", "domain": "apis default", "rdf_link": "", "entity": 99846, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99847", "domain": "apis default", "rdf_link": "", "entity": 99847, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99848", "domain": "apis default", "rdf_link": "", "entity": 99848, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67374, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99849", "domain": "apis default", "rdf_link": "", "entity": 99849, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67375, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99850", "domain": "apis default", "rdf_link": "", "entity": 99850, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uricandidate", "pk": 3373, "fields": {"uri": "http://sws.geonames.org/3075069/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3374, "fields": {"uri": "http://sws.geonames.org/3075073/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3375, "fields": {"uri": "http://sws.geonames.org/3064955/", "confidence": 36.39077, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3376, "fields": {"uri": "http://sws.geonames.org/3064682/", "confidence": 27.023357, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3392, "fields": {"uri": "http://sws.geonames.org/8987526/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3393, "fields": {"uri": "http://sws.geonames.org/8988006/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3394, "fields": {"uri": "http://sws.geonames.org/3187442/", "confidence": 36.04053, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3427, "fields": {"uri": "http://sws.geonames.org/710232/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3428, "fields": {"uri": "http://sws.geonames.org/710234/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3429, "fields": {"uri": "http://sws.geonames.org/710242/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3430, "fields": {"uri": "http://sws.geonames.org/710241/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3431, "fields": {"uri": "http://sws.geonames.org/810113/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3432, "fields": {"uri": "http://sws.geonames.org/8468002/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3433, "fields": {"uri": "http://sws.geonames.org/710235/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3434, "fields": {"uri": "http://sws.geonames.org/710243/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3435, "fields": {"uri": "http://sws.geonames.org/697446/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3436, "fields": {"uri": "http://sws.geonames.org/687982/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "highlighter.texthigh", "pk": 1, "fields": {"title": "\u00d6BL Haupttext", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-haupttext", "project": 1}}, {"model": "highlighter.texthigh", "pk": 2, "fields": {"title": "\u00d6bl Kurzinfo", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-kurzinfo", "project": 1}}, {"model": "highlighter.annotationproject", "pk": 1, "fields": {"name": "Default", "description": "We need an annotation project for every annotation. Thus the default project."}}, {"model": "highlighter.vocabularyapi", "pk": 1, "fields": {"name": "Person Place Form", "api_endpoint": "PersonPlaceHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 2, "fields": {"name": "Person Institution Form", "api_endpoint": "PersonInstitutionHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 3, "fields": {"name": "Person Person Form", "api_endpoint": "PersonPersonHighlighterForm", "method": "l"}}, {"model": "highlighter.menuentry", "pk": 1, "fields": {"kind": "frm", "name": "Person Place Relation", "api": 1, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 2, "fields": {"kind": "frm", "name": "Person Institution Relation", "api": 2, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 3, "fields": {"kind": "frm", "name": "Person Person Relation", "api": 3, "parent": null, "project": 1}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add log entry", "content_type": 1, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change log entry", "content_type": 1, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete log entry", "content_type": 1, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can add permission", "content_type": 2, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can change permission", "content_type": 2, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can delete permission", "content_type": 2, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can add group", "content_type": 3, "codename": "add_group"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can change group", "content_type": 3, "codename": "change_group"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can delete group", "content_type": 3, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add user", "content_type": 4, "codename": "add_user"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change user", "content_type": 4, "codename": "change_user"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete user", "content_type": 4, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add content type", "content_type": 5, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change content type", "content_type": 5, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete content type", "content_type": 5, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can add session", "content_type": 6, "codename": "add_session"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can change session", "content_type": 6, "codename": "change_session"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can delete session", "content_type": 6, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can add label", "content_type": 7, "codename": "add_label"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can change label", "content_type": 7, "codename": "change_label"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can delete label", "content_type": 7, "codename": "delete_label"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add person", "content_type": 8, "codename": "add_person"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change person", "content_type": 8, "codename": "change_person"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete person", "content_type": 8, "codename": "delete_person"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add place", "content_type": 9, "codename": "add_place"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change place", "content_type": 9, "codename": "change_place"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete place", "content_type": 9, "codename": "delete_place"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can add institution", "content_type": 10, "codename": "add_institution"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can change institution", "content_type": 10, "codename": "change_institution"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can delete institution", "content_type": 10, "codename": "delete_institution"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can add event", "content_type": 11, "codename": "add_event"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can change event", "content_type": 11, "codename": "change_event"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can delete event", "content_type": 11, "codename": "delete_event"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add work", "content_type": 12, "codename": "add_work"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change work", "content_type": 12, "codename": "change_work"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete work", "content_type": 12, "codename": "delete_work"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add vocabs base class", "content_type": 13, "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change vocabs base class", "content_type": 13, "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete vocabs base class", "content_type": 13, "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can add relation base class", "content_type": 14, "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can change relation base class", "content_type": 14, "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can delete relation base class", "content_type": 14, "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can add vocabs uri", "content_type": 15, "codename": "add_vocabsuri"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can change vocabs uri", "content_type": 15, "codename": "change_vocabsuri"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can delete vocabs uri", "content_type": 15, "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add work type", "content_type": 16, "codename": "add_worktype"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change work type", "content_type": 16, "codename": "change_worktype"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete work type", "content_type": 16, "codename": "delete_worktype"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add title", "content_type": 17, "codename": "add_title"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change title", "content_type": 17, "codename": "change_title"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete title", "content_type": 17, "codename": "delete_title"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can add profession type", "content_type": 18, "codename": "add_professiontype"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can change profession type", "content_type": 18, "codename": "change_professiontype"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can delete profession type", "content_type": 18, "codename": "delete_professiontype"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can add place type", "content_type": 19, "codename": "add_placetype"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can change place type", "content_type": 19, "codename": "change_placetype"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can delete place type", "content_type": 19, "codename": "delete_placetype"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add institution type", "content_type": 20, "codename": "add_institutiontype"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change institution type", "content_type": 20, "codename": "change_institutiontype"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete institution type", "content_type": 20, "codename": "delete_institutiontype"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add event type", "content_type": 21, "codename": "add_eventtype"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change event type", "content_type": 21, "codename": "change_eventtype"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete event type", "content_type": 21, "codename": "delete_eventtype"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can add label type", "content_type": 22, "codename": "add_labeltype"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can change label type", "content_type": 22, "codename": "change_labeltype"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can delete label type", "content_type": 22, "codename": "delete_labeltype"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can add collection type", "content_type": 23, "codename": "add_collectiontype"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can change collection type", "content_type": 23, "codename": "change_collectiontype"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can delete collection type", "content_type": 23, "codename": "delete_collectiontype"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add text type", "content_type": 24, "codename": "add_texttype"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change text type", "content_type": 24, "codename": "change_texttype"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete text type", "content_type": 24, "codename": "delete_texttype"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add person person relation", "content_type": 25, "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change person person relation", "content_type": 25, "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete person person relation", "content_type": 25, "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can add person place relation", "content_type": 26, "codename": "add_personplacerelation"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can change person place relation", "content_type": 26, "codename": "change_personplacerelation"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can delete person place relation", "content_type": 26, "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can add person institution relation", "content_type": 27, "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can change person institution relation", "content_type": 27, "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can delete person institution relation", "content_type": 27, "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add person event relation", "content_type": 28, "codename": "add_personeventrelation"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change person event relation", "content_type": 28, "codename": "change_personeventrelation"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete person event relation", "content_type": 28, "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add person work relation", "content_type": 29, "codename": "add_personworkrelation"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change person work relation", "content_type": 29, "codename": "change_personworkrelation"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete person work relation", "content_type": 29, "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can add institution event relation", "content_type": 30, "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can change institution event relation", "content_type": 30, "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can delete institution event relation", "content_type": 30, "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can add institution place relation", "content_type": 31, "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can change institution place relation", "content_type": 31, "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can delete institution place relation", "content_type": 31, "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add institution institution relation", "content_type": 32, "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change institution institution relation", "content_type": 32, "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete institution institution relation", "content_type": 32, "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add place place relation", "content_type": 33, "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change place place relation", "content_type": 33, "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete place place relation", "content_type": 33, "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can add place event relation", "content_type": 34, "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can change place event relation", "content_type": 34, "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can delete place event relation", "content_type": 34, "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can add place work relation", "content_type": 35, "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can change place work relation", "content_type": 35, "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can delete place work relation", "content_type": 35, "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add event event relation", "content_type": 36, "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change event event relation", "content_type": 36, "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete event event relation", "content_type": 36, "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add event work relation", "content_type": 37, "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change event work relation", "content_type": 37, "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete event work relation", "content_type": 37, "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can add work work relation", "content_type": 38, "codename": "add_workworkrelation"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can change work work relation", "content_type": 38, "codename": "change_workworkrelation"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can delete work work relation", "content_type": 38, "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can add person person", "content_type": 39, "codename": "add_personperson"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can change person person", "content_type": 39, "codename": "change_personperson"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can delete person person", "content_type": 39, "codename": "delete_personperson"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can add person place", "content_type": 40, "codename": "add_personplace"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can change person place", "content_type": 40, "codename": "change_personplace"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can delete person place", "content_type": 40, "codename": "delete_personplace"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add person institution", "content_type": 41, "codename": "add_personinstitution"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change person institution", "content_type": 41, "codename": "change_personinstitution"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete person institution", "content_type": 41, "codename": "delete_personinstitution"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can add person event", "content_type": 42, "codename": "add_personevent"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can change person event", "content_type": 42, "codename": "change_personevent"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can delete person event", "content_type": 42, "codename": "delete_personevent"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can add person work", "content_type": 43, "codename": "add_personwork"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can change person work", "content_type": 43, "codename": "change_personwork"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can delete person work", "content_type": 43, "codename": "delete_personwork"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can add institution institution", "content_type": 44, "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can change institution institution", "content_type": 44, "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can delete institution institution", "content_type": 44, "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add institution place", "content_type": 45, "codename": "add_institutionplace"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change institution place", "content_type": 45, "codename": "change_institutionplace"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete institution place", "content_type": 45, "codename": "delete_institutionplace"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can add institution event", "content_type": 46, "codename": "add_institutionevent"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can change institution event", "content_type": 46, "codename": "change_institutionevent"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can delete institution event", "content_type": 46, "codename": "delete_institutionevent"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can add institution work", "content_type": 47, "codename": "add_institutionwork"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can change institution work", "content_type": 47, "codename": "change_institutionwork"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can delete institution work", "content_type": 47, "codename": "delete_institutionwork"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can add place place", "content_type": 48, "codename": "add_placeplace"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can change place place", "content_type": 48, "codename": "change_placeplace"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can delete place place", "content_type": 48, "codename": "delete_placeplace"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add place event", "content_type": 49, "codename": "add_placeevent"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change place event", "content_type": 49, "codename": "change_placeevent"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete place event", "content_type": 49, "codename": "delete_placeevent"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can add place work", "content_type": 50, "codename": "add_placework"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can change place work", "content_type": 50, "codename": "change_placework"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can delete place work", "content_type": 50, "codename": "delete_placework"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can add event event", "content_type": 51, "codename": "add_eventevent"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can change event event", "content_type": 51, "codename": "change_eventevent"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can delete event event", "content_type": 51, "codename": "delete_eventevent"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can add event work", "content_type": 52, "codename": "add_eventwork"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can change event work", "content_type": 52, "codename": "change_eventwork"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can delete event work", "content_type": 52, "codename": "delete_eventwork"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can add work work", "content_type": 53, "codename": "add_workwork"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can change work work", "content_type": 53, "codename": "change_workwork"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can delete work work", "content_type": 53, "codename": "delete_workwork"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can add temp entity class", "content_type": 54, "codename": "add_tempentityclass"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can change temp entity class", "content_type": 54, "codename": "change_tempentityclass"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can delete temp entity class", "content_type": 54, "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can add source", "content_type": 55, "codename": "add_source"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can change source", "content_type": 55, "codename": "change_source"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can delete source", "content_type": 55, "codename": "delete_source"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can add collection", "content_type": 56, "codename": "add_collection"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can change collection", "content_type": 56, "codename": "change_collection"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can delete collection", "content_type": 56, "codename": "delete_collection"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can add text", "content_type": 57, "codename": "add_text"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can change text", "content_type": 57, "codename": "change_text"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can delete text", "content_type": 57, "codename": "delete_text"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can add uri", "content_type": 58, "codename": "add_uri"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can change uri", "content_type": 58, "codename": "change_uri"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can delete uri", "content_type": 58, "codename": "delete_uri"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can add project", "content_type": 61, "codename": "add_project"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can change project", "content_type": 61, "codename": "change_project"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can delete project", "content_type": 61, "codename": "delete_project"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can add annotation", "content_type": 63, "codename": "add_annotation"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can change annotation", "content_type": 63, "codename": "change_annotation"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can delete annotation", "content_type": 63, "codename": "delete_annotation"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can add vocabulary api", "content_type": 64, "codename": "add_vocabularyapi"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can change vocabulary api", "content_type": 64, "codename": "change_vocabularyapi"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can delete vocabulary api", "content_type": 64, "codename": "delete_vocabularyapi"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can add menu entry", "content_type": 65, "codename": "add_menuentry"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can change menu entry", "content_type": 65, "codename": "change_menuentry"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can delete menu entry", "content_type": 65, "codename": "delete_menuentry"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can add revision", "content_type": 66, "codename": "add_revision"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can change revision", "content_type": 66, "codename": "change_revision"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can delete revision", "content_type": 66, "codename": "delete_revision"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can add version", "content_type": 67, "codename": "add_version"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can change version", "content_type": 67, "codename": "change_version"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can delete version", "content_type": 67, "codename": "delete_version"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can add uri candidate", "content_type": 68, "codename": "add_uricandidate"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can change uri candidate", "content_type": 68, "codename": "change_uricandidate"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can delete uri candidate", "content_type": 68, "codename": "delete_uricandidate"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can add vocab names", "content_type": 69, "codename": "add_vocabnames"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can change vocab names", "content_type": 69, "codename": "change_vocabnames"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can delete vocab names", "content_type": 69, "codename": "delete_vocabnames"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can add text high", "content_type": 70, "codename": "add_texthigh"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can change text high", "content_type": 70, "codename": "change_texthigh"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can delete text high", "content_type": 70, "codename": "delete_texthigh"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can add annotation project", "content_type": 71, "codename": "add_annotationproject"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can change annotation project", "content_type": 71, "codename": "change_annotationproject"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can delete annotation project", "content_type": 71, "codename": "delete_annotationproject"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can add Token", "content_type": 72, "codename": "add_token"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can change Token", "content_type": 72, "codename": "change_token"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can delete Token", "content_type": 72, "codename": "delete_token"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can add user object permission", "content_type": 73, "codename": "add_userobjectpermission"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can change user object permission", "content_type": 73, "codename": "change_userobjectpermission"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can delete user object permission", "content_type": 73, "codename": "delete_userobjectpermission"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can add group object permission", "content_type": 74, "codename": "add_groupobjectpermission"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can change group object permission", "content_type": 74, "codename": "change_groupobjectpermission"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can delete group object permission", "content_type": 74, "codename": "delete_groupobjectpermission"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "semac", "permissions": [13, 14, 15, 31, 32, 33, 28, 29, 30, 22, 23, 24, 25, 26, 27, 34, 35, 36, 187, 188, 189, 193, 194, 195, 181, 182, 183, 190, 191, 192, 19, 20, 21, 166, 167, 168, 163, 164, 165, 160, 161, 162, 169, 170, 171, 172, 173, 174, 151, 152, 153, 154, 155, 156, 136, 137, 138, 130, 131, 132, 133, 134, 135, 139, 140, 141, 124, 125, 126, 121, 122, 123, 115, 116, 117, 118, 119, 120, 127, 128, 129, 145, 146, 147, 142, 143, 144, 148, 149, 150, 157, 158, 159, 16, 17, 18, 67, 68, 69, 106, 107, 108, 61, 62, 63, 109, 110, 111, 88, 89, 90, 94, 95, 96, 91, 92, 93, 58, 59, 60, 64, 65, 66, 82, 83, 84, 79, 80, 81, 73, 74, 75, 76, 77, 78, 85, 86, 87, 100, 101, 102, 97, 98, 99, 55, 56, 57, 103, 104, 105, 52, 53, 54, 40, 41, 42, 70, 71, 72, 49, 50, 51, 37, 38, 39, 43, 44, 45, 46, 47, 48, 112, 113, 114]}}, {"model": "auth.group", "pk": 2, "fields": {"name": "apis", "permissions": []}}, {"model": "auth.group", "pk": 3, "fields": {"name": "staribacher", "permissions": []}}, {"model": "auth.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$24000$lZLlfjvJkfgl$AaPc0kM0uUiYs1Iaj8jLiZcMGjC/hqQPyt3qX+B0JFk=", "last_login": "2016-12-20T11:30:35Z", "is_superuser": true, "username": "pandorfer", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2016-04-04T11:48:13Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", "last_login": "2016-12-21T09:47:39Z", "is_superuser": true, "username": "sennierer", "first_name": "Matthias", "last_name": "Schl\u00f6gl", "email": "matthias.schloegl@oeaw.ac.at", "is_staff": true, "is_active": true, "date_joined": "2016-04-05T15:11:00Z", "groups": [2], "user_permissions": [1, 2, 3, 7, 8, 9, 4, 5, 6, 10, 11, 12, 13, 14, 15, 31, 32, 33, 28, 29, 30, 22, 23, 24, 25, 26, 27, 34, 35, 36, 187, 188, 189, 193, 194, 195, 181, 182, 183, 190, 191, 192, 19, 20, 21, 166, 167, 168, 163, 164, 165, 160, 161, 162, 169, 170, 171, 172, 173, 174, 202, 203, 204, 151, 152, 153, 154, 155, 156, 136, 137, 138, 130, 131, 132, 133, 134, 135, 139, 140, 141, 124, 125, 126, 121, 122, 123, 115, 116, 117, 118, 119, 120, 127, 128, 129, 145, 146, 147, 142, 143, 144, 148, 149, 150, 157, 158, 159, 196, 197, 198, 199, 200, 201, 16, 17, 18, 67, 68, 69, 106, 107, 108, 61, 62, 63, 109, 110, 111, 88, 89, 90, 94, 95, 96, 91, 92, 93, 58, 59, 60, 64, 65, 66, 82, 83, 84, 79, 80, 81, 73, 74, 75, 76, 77, 78, 85, 86, 87, 100, 101, 102, 97, 98, 99, 55, 56, 57, 103, 104, 105, 52, 53, 54, 40, 41, 42, 70, 71, 72, 49, 50, 51, 37, 38, 39, 43, 44, 45, 46, 47, 48, 112, 113, 114]}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1, "fields": {"name": "old entity of", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Place description \u00d6BL", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "vocabsor similar import", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "\u00d6BL place name", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "seat of a third-order administrative division (PPLA3)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "weitere Namensformen", "description": "wie im Gideon, statt alternative name", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "independent political entity (PCLI)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "populated place (PPL)", "description": "a city, town, village, or other agglomeration of buildings where people live and work", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "seat of a fourth-order administrative division (PPLA4)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "seat of a second-order administrative division (PPLA2)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "capital of a political entity (PPLC)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "seat of a first-order administrative division (PPLA)", "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 125, "fields": {"name": "test data import", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Literatur, Buch- und Zeitungswesen", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "\u00d6BL Haupttext", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "\u00d6BL Kurzinfo", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Rechtswesen und Rechtswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 133, "fields": {"name": "Rechtshistoriker und Abgeordneter", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Politik", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 135, "fields": {"name": "Naturwissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Botaniker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 137, "fields": {"name": "Wirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 138, "fields": {"name": "Instrumentenbauer", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 139, "fields": {"name": "Bildende und angewandte Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Maler", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 141, "fields": {"name": "Religionen und Theologie", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Bischof", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 143, "fields": {"name": "Milit\u00e4r", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "General", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Verwaltungsjurist und Politiker", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 146, "fields": {"name": "Verwaltung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 147, "fields": {"name": "Ministerpr\u00e4sident", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Zoologe", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Geisteswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Arch\u00e4ologe", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Musik und darstellende Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Schauspieler und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Medizin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "P\u00e4diater", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Technik", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Milit\u00e4rtechniker, Offizier und ungarischer Freiheitsk\u00e4mpfer", "description": "", "parent_class": 157, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Beamter und Fachschriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Historiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Architekt", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Diplomat", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Sport", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Eiskunstl\u00e4uferin", "description": "", "parent_class": 163, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 165, "fields": {"name": "Gro\u00dfindustrielle", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 166, "fields": {"name": "Diverse", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Bautechniker", "description": "", "parent_class": 157, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Maler und Graphiker", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Politikerin und Schriftstellerin", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Schauspieler, Theaterdirektor und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Physiologe", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Jurist", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Fabrikant", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Schriftsteller und Journalist", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Internist", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Landesverteidiger und Schriftsteller", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 177, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Malerin", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 179, "fields": {"name": "Volkss\u00e4nger", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Sozial- und Wirtschaftswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Betriebswirtschafter", "description": "", "parent_class": 180, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 182, "fields": {"name": "Slawist und Linguist", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 183, "fields": {"name": "Admiral", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Stigmatisierte", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 187, "fields": {"name": "Pharmazeut", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Unterrichtswesen", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Lehrer", "description": "", "parent_class": 188, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Montanist und Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 191, "fields": {"name": "Maler und Radierer", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Philologe und Literarhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Biologe und Lehrer", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Physiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Offizier und Diplomat", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Theologe", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Ornithologe", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Diplomat und Politiker", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Lokalhistoriker, Gewerbetreibender und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Schriftsteller und Seelsorger", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Industrieller", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Mediziner", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Komponist, Chorleiter und Musikkritiker", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Kirchenhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Journalist und Lehrer", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Fabrikant und Politiker", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "S\u00e4nger und Schauspieler", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Chirurg", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 209, "fields": {"name": "Jurist und Beamter", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Feldmarschalleutnant und Sicherheitsbeamter", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Pianist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Politiker und Jurist", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 214, "fields": {"name": "Musiker und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Bildhauer", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Harfenist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 217, "fields": {"name": "Land- und Forstwirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 218, "fields": {"name": "Landwirt und Weinhauer", "description": "", "parent_class": 217, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 219, "fields": {"name": "Ordensangeh\u00f6riger und Stifter", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 220, "fields": {"name": "Historiker und Lehrer", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 221, "fields": {"name": "Politiker und Kaufmann", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 222, "fields": {"name": "Journalist und Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Maler und Karikaturist", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Offizier", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Bischof und Missionar", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 226, "fields": {"name": "P\u00e4dagogin und Physikerin", "description": "", "parent_class": 188, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 227, "fields": {"name": "Historiker und Byzantinist", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Archivar und Historiker", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Geistlicher, Historiker und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 230, "fields": {"name": "Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Offizier und Politiker", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "S\u00e4nger, Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 233, "fields": {"name": "Journalist und Politiker", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Pfadfinderf\u00fchrer und Offizier", "description": "", "parent_class": 166, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "F\u00fcrstbischof", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 236, "fields": {"name": "Place review comments", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 371, "fields": {"name": "first-order administrative division (ADM1)", "description": "a primary administrative division of a country, such as a state in the United States", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "third-order administrative division (ADM3)", "description": "a subdivision of a second-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "fifth-order administrative division (ADM5)", "description": "a subdivision of a fourth-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Krieg", "description": "auch Revolution und B\u00fcrgerkrieg, Unterkategorie ist Schlacht", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Attentat", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 384, "fields": {"name": "Epidemie", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Verleihung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Festzug", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Kongress", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "R\u00fccktritt", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Fertigstellung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 392, "fields": {"name": "Erstauff\u00fchrung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 394, "fields": {"name": "Berufung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Abspaltung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "nahm Teil an", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "hatte als Teilnehmer", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Schlacht", "description": "", "parent_class": 380, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Friedensverhandlung", "description": "", "parent_class": 380, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "historical first-order administrative division (ADM1H)", "description": "a former first-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "author", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Publikation", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Pseudonym", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "M\u00e4dchenname", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 432, "fields": {"name": "K\u00fcnstlername", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "fourth-order administrative division (ADM4)", "description": "a subdivision of a third-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 452, "fields": {"name": "second-order administrative division (ADM2)", "description": "a subdivision of a first-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Graf", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Herzog", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 462, "fields": {"name": "Freiherr", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Erzherzog", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "K\u00f6nig", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Kaiser", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 466, "fields": {"name": "F\u00fcrst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Freiin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Freifrau", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "F\u00fcrstin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 470, "fields": {"name": "Erzherz\u00f6gin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "K\u00f6nigin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 483, "fields": {"name": "Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Pianist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "place of birth", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "place of death", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "alternative Namensform", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 598, "fields": {"name": "Name laut \u00d6BL XML", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 606, "fields": {"name": "Ehename", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Taufname", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 653, "fields": {"name": "not defined", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1750, "fields": {"name": "Pianistin", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "Komponist und Musiklehrer", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5578, "fields": {"name": "Schriftstellerin, \u00dcbersetzerin und Pianistin", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5599, "fields": {"name": "Pianist, P\u00e4dagoge und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5608, "fields": {"name": "undefined", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5702, "fields": {"name": "situated in", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 8}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5708, "fields": {"name": "is superior of", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5709, "fields": {"name": "is succeeding", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5711, "fields": {"name": "is preceding", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5729, "fields": {"name": "section of populated place (PPLX)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5741, "fields": {"name": "family member", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5742, "fields": {"name": "friend", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5743, "fields": {"name": "affiliation", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 4}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5765, "fields": {"name": "administrative division (ADMD)", "description": "an administrative division of a country, undifferentiated as to administrative level", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5772, "fields": {"name": "research dataset", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 11}}, {"model": "vocabularies.relationbaseclass", "pk": 1, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 8, "fields": {"name_reverse": "includes"}}, {"model": "vocabularies.relationbaseclass", "pk": 398, "fields": {"name_reverse": "hatte als Teilnehmer"}}, {"model": "vocabularies.relationbaseclass", "pk": 399, "fields": {"name_reverse": "nahm Teil an"}}, {"model": "vocabularies.relationbaseclass", "pk": 424, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 595, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 596, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5608, "fields": {"name_reverse": "undefined"}}, {"model": "vocabularies.relationbaseclass", "pk": 5702, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5708, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5709, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5711, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5741, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5742, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5743, "fields": {"name_reverse": ""}}, {"model": "vocabularies.worktype", "pk": 429, "fields": {}}, {"model": "vocabularies.title", "pk": 460, "fields": {"abbreviation": "Gf."}}, {"model": "vocabularies.title", "pk": 461, "fields": {"abbreviation": "Hg."}}, {"model": "vocabularies.title", "pk": 462, "fields": {"abbreviation": "Frh."}}, {"model": "vocabularies.title", "pk": 463, "fields": {"abbreviation": "Erzhg."}}, {"model": "vocabularies.title", "pk": 464, "fields": {"abbreviation": "Kg."}}, {"model": "vocabularies.title", "pk": 465, "fields": {"abbreviation": "K."}}, {"model": "vocabularies.title", "pk": 466, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 467, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 468, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 469, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 470, "fields": {"abbreviation": "Erzhgn."}}, {"model": "vocabularies.title", "pk": 474, "fields": {"abbreviation": "Kngn."}}, {"model": "vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 133, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 135, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 137, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 138, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 139, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 141, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 143, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 146, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 147, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 149, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 165, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 166, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 172, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 177, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 179, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 182, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 183, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 187, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 191, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 209, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 214, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 217, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 218, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 219, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 220, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 221, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 222, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 226, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 227, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 230, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 233, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 483, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 1750, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 2054, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5578, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5599, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "vocabularies.placetype", "pk": 11, "fields": {}}, {"model": "vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "vocabularies.placetype", "pk": 371, "fields": {}}, {"model": "vocabularies.placetype", "pk": 373, "fields": {}}, {"model": "vocabularies.placetype", "pk": 375, "fields": {}}, {"model": "vocabularies.placetype", "pk": 420, "fields": {}}, {"model": "vocabularies.placetype", "pk": 443, "fields": {}}, {"model": "vocabularies.placetype", "pk": 452, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5729, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5765, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 380, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 382, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 384, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 385, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 386, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 388, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 390, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 391, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 392, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 393, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 394, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 396, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 400, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 401, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 4, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 6, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 430, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 431, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 432, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 433, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 597, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 598, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 606, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 612, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 653, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 3, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 125, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 5772, "fields": {}}, {"model": "vocabularies.texttype", "pk": 2, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 130, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 131, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 236, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.personpersonrelation", "pk": 5608, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5741, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5742, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 595, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 596, "fields": {}}, {"model": "vocabularies.personinstitutionrelation", "pk": 5743, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 398, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 399, "fields": {}}, {"model": "vocabularies.personworkrelation", "pk": 424, "fields": {}}, {"model": "vocabularies.institutionplacerelation", "pk": 5702, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5708, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5709, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5711, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 1, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 8, "fields": {}}, {"model": "highlighter.project", "pk": 1, "fields": {"name": "highlight places", "user": 12, "description": "", "base_url": "", "store_text": false}}, {"model": "highlighter.annotation", "pk": 237, "fields": {"start": 239, "end": 250, "orig_string": "Carl Czerny", "text": 47030, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92840]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 331, "fields": {"start": 879, "end": 899, "orig_string": "Ludwig van Beethoven", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92930]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 332, "fields": {"start": 1362, "end": 1380, "orig_string": "Sigismund Thalberg", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92931]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 333, "fields": {"start": 1383, "end": 1408, "orig_string": "Marie Leopoldine Blahetka", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92932]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 334, "fields": {"start": 1439, "end": 1454, "orig_string": "Franz von Liszt", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92933]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 335, "fields": {"start": 1736, "end": 1751, "orig_string": "Ignaz Moscheles", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92934]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 336, "fields": {"start": 3031, "end": 3043, "orig_string": "Anton Reicha", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92935]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1214, "fields": {"start": 40, "end": 55, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1215, "fields": {"start": 141, "end": 151, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1216, "fields": {"start": 225, "end": 262, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1217, "fields": {"start": 354, "end": 378, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1218, "fields": {"start": 451, "end": 478, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1219, "fields": {"start": 500, "end": 508, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1220, "fields": {"start": 549, "end": 566, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1221, "fields": {"start": 650, "end": 670, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "authtoken.token", "pk": "bb650ee43b63b5e13cbac9320157b08c36099452", "fields": {"user": 12, "created": "2016-08-26T08:01:26Z"}}, {"model": "guardian.groupobjectpermission", "pk": 122, "fields": {"permission": 23, "content_type": 8, "object_pk": "93803", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 623, "fields": {"permission": 24, "content_type": 8, "object_pk": "93803", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1010, "fields": {"permission": 23, "content_type": 8, "object_pk": "93003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1012, "fields": {"permission": 23, "content_type": 8, "object_pk": "93009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1013, "fields": {"permission": 23, "content_type": 8, "object_pk": "93012", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1014, "fields": {"permission": 23, "content_type": 8, "object_pk": "93015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1015, "fields": {"permission": 23, "content_type": 8, "object_pk": "93018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1016, "fields": {"permission": 23, "content_type": 8, "object_pk": "93021", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1017, "fields": {"permission": 23, "content_type": 8, "object_pk": "93024", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1018, "fields": {"permission": 23, "content_type": 8, "object_pk": "93028", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1019, "fields": {"permission": 23, "content_type": 8, "object_pk": "93031", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1020, "fields": {"permission": 23, "content_type": 8, "object_pk": "93034", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1023, "fields": {"permission": 23, "content_type": 8, "object_pk": "93044", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1024, "fields": {"permission": 23, "content_type": 8, "object_pk": "93047", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1025, "fields": {"permission": 23, "content_type": 8, "object_pk": "93050", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1026, "fields": {"permission": 23, "content_type": 8, "object_pk": "93056", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1027, "fields": {"permission": 23, "content_type": 8, "object_pk": "93059", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1028, "fields": {"permission": 23, "content_type": 8, "object_pk": "93065", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1029, "fields": {"permission": 23, "content_type": 8, "object_pk": "93068", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1030, "fields": {"permission": 23, "content_type": 8, "object_pk": "93071", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1031, "fields": {"permission": 23, "content_type": 8, "object_pk": "93074", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1048, "fields": {"permission": 23, "content_type": 8, "object_pk": "93136", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1102, "fields": {"permission": 23, "content_type": 8, "object_pk": "93328", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1104, "fields": {"permission": 23, "content_type": 8, "object_pk": "93337", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1107, "fields": {"permission": 23, "content_type": 8, "object_pk": "93352", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1111, "fields": {"permission": 23, "content_type": 8, "object_pk": "93366", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1112, "fields": {"permission": 23, "content_type": 8, "object_pk": "93369", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1115, "fields": {"permission": 23, "content_type": 8, "object_pk": "93378", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1117, "fields": {"permission": 23, "content_type": 8, "object_pk": "93387", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1119, "fields": {"permission": 23, "content_type": 8, "object_pk": "93393", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1120, "fields": {"permission": 23, "content_type": 8, "object_pk": "93396", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1121, "fields": {"permission": 23, "content_type": 8, "object_pk": "93400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1124, "fields": {"permission": 23, "content_type": 8, "object_pk": "93409", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1125, "fields": {"permission": 23, "content_type": 8, "object_pk": "93415", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1126, "fields": {"permission": 23, "content_type": 8, "object_pk": "93418", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1133, "fields": {"permission": 23, "content_type": 8, "object_pk": "93442", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1134, "fields": {"permission": 23, "content_type": 8, "object_pk": "93445", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1135, "fields": {"permission": 23, "content_type": 8, "object_pk": "93448", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1140, "fields": {"permission": 23, "content_type": 8, "object_pk": "93469", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1143, "fields": {"permission": 23, "content_type": 8, "object_pk": "93481", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1144, "fields": {"permission": 23, "content_type": 8, "object_pk": "93484", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1145, "fields": {"permission": 23, "content_type": 8, "object_pk": "93487", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1151, "fields": {"permission": 23, "content_type": 8, "object_pk": "93510", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1152, "fields": {"permission": 23, "content_type": 8, "object_pk": "93513", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1153, "fields": {"permission": 23, "content_type": 8, "object_pk": "93516", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1161, "fields": {"permission": 23, "content_type": 8, "object_pk": "93540", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1163, "fields": {"permission": 23, "content_type": 8, "object_pk": "93546", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1168, "fields": {"permission": 23, "content_type": 8, "object_pk": "93561", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1171, "fields": {"permission": 23, "content_type": 8, "object_pk": "93573", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1175, "fields": {"permission": 23, "content_type": 8, "object_pk": "93588", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1178, "fields": {"permission": 23, "content_type": 8, "object_pk": "93600", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1180, "fields": {"permission": 23, "content_type": 8, "object_pk": "93609", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1181, "fields": {"permission": 23, "content_type": 8, "object_pk": "93615", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1188, "fields": {"permission": 23, "content_type": 8, "object_pk": "93639", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1189, "fields": {"permission": 23, "content_type": 8, "object_pk": "93642", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1190, "fields": {"permission": 23, "content_type": 8, "object_pk": "93645", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1192, "fields": {"permission": 23, "content_type": 8, "object_pk": "93651", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1193, "fields": {"permission": 23, "content_type": 8, "object_pk": "93654", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1194, "fields": {"permission": 23, "content_type": 8, "object_pk": "93657", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1195, "fields": {"permission": 23, "content_type": 8, "object_pk": "93663", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1200, "fields": {"permission": 23, "content_type": 8, "object_pk": "93678", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1202, "fields": {"permission": 23, "content_type": 8, "object_pk": "93684", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1207, "fields": {"permission": 23, "content_type": 8, "object_pk": "93702", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1208, "fields": {"permission": 23, "content_type": 8, "object_pk": "93705", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1211, "fields": {"permission": 23, "content_type": 8, "object_pk": "93714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1219, "fields": {"permission": 23, "content_type": 8, "object_pk": "93748", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1225, "fields": {"permission": 23, "content_type": 8, "object_pk": "93779", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1227, "fields": {"permission": 23, "content_type": 8, "object_pk": "93785", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1229, "fields": {"permission": 23, "content_type": 8, "object_pk": "93791", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1232, "fields": {"permission": 23, "content_type": 8, "object_pk": "93800", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1233, "fields": {"permission": 23, "content_type": 8, "object_pk": "93809", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1235, "fields": {"permission": 23, "content_type": 8, "object_pk": "93815", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1236, "fields": {"permission": 23, "content_type": 8, "object_pk": "93818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1242, "fields": {"permission": 23, "content_type": 8, "object_pk": "93836", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1243, "fields": {"permission": 23, "content_type": 8, "object_pk": "93839", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1248, "fields": {"permission": 23, "content_type": 8, "object_pk": "93854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1250, "fields": {"permission": 23, "content_type": 8, "object_pk": "93863", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1251, "fields": {"permission": 23, "content_type": 8, "object_pk": "93866", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1255, "fields": {"permission": 23, "content_type": 8, "object_pk": "93878", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1257, "fields": {"permission": 23, "content_type": 8, "object_pk": "93891", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1258, "fields": {"permission": 23, "content_type": 8, "object_pk": "93894", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1260, "fields": {"permission": 23, "content_type": 8, "object_pk": "93900", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1261, "fields": {"permission": 23, "content_type": 8, "object_pk": "93903", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1263, "fields": {"permission": 23, "content_type": 8, "object_pk": "93909", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1266, "fields": {"permission": 23, "content_type": 8, "object_pk": "93921", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1269, "fields": {"permission": 23, "content_type": 8, "object_pk": "93933", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1270, "fields": {"permission": 23, "content_type": 8, "object_pk": "93940", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1272, "fields": {"permission": 23, "content_type": 8, "object_pk": "93946", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1275, "fields": {"permission": 23, "content_type": 8, "object_pk": "93955", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1276, "fields": {"permission": 23, "content_type": 8, "object_pk": "93958", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1277, "fields": {"permission": 23, "content_type": 8, "object_pk": "93961", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1278, "fields": {"permission": 23, "content_type": 8, "object_pk": "93964", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1279, "fields": {"permission": 23, "content_type": 8, "object_pk": "93967", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1280, "fields": {"permission": 23, "content_type": 8, "object_pk": "93970", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1286, "fields": {"permission": 23, "content_type": 8, "object_pk": "93988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1287, "fields": {"permission": 23, "content_type": 8, "object_pk": "93991", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1290, "fields": {"permission": 23, "content_type": 8, "object_pk": "94003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1291, "fields": {"permission": 23, "content_type": 8, "object_pk": "94006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1292, "fields": {"permission": 23, "content_type": 8, "object_pk": "94009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1295, "fields": {"permission": 23, "content_type": 8, "object_pk": "94018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1303, "fields": {"permission": 24, "content_type": 8, "object_pk": "93003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1305, "fields": {"permission": 24, "content_type": 8, "object_pk": "93009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1306, "fields": {"permission": 24, "content_type": 8, "object_pk": "93012", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1307, "fields": {"permission": 24, "content_type": 8, "object_pk": "93015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1308, "fields": {"permission": 24, "content_type": 8, "object_pk": "93018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1309, "fields": {"permission": 24, "content_type": 8, "object_pk": "93021", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1310, "fields": {"permission": 24, "content_type": 8, "object_pk": "93024", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1311, "fields": {"permission": 24, "content_type": 8, "object_pk": "93028", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1312, "fields": {"permission": 24, "content_type": 8, "object_pk": "93031", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1313, "fields": {"permission": 24, "content_type": 8, "object_pk": "93034", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1316, "fields": {"permission": 24, "content_type": 8, "object_pk": "93044", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1317, "fields": {"permission": 24, "content_type": 8, "object_pk": "93047", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1318, "fields": {"permission": 24, "content_type": 8, "object_pk": "93050", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1319, "fields": {"permission": 24, "content_type": 8, "object_pk": "93056", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1320, "fields": {"permission": 24, "content_type": 8, "object_pk": "93059", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1321, "fields": {"permission": 24, "content_type": 8, "object_pk": "93065", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1322, "fields": {"permission": 24, "content_type": 8, "object_pk": "93068", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1323, "fields": {"permission": 24, "content_type": 8, "object_pk": "93071", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1324, "fields": {"permission": 24, "content_type": 8, "object_pk": "93074", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1341, "fields": {"permission": 24, "content_type": 8, "object_pk": "93136", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1395, "fields": {"permission": 24, "content_type": 8, "object_pk": "93328", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1397, "fields": {"permission": 24, "content_type": 8, "object_pk": "93337", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1400, "fields": {"permission": 24, "content_type": 8, "object_pk": "93352", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1404, "fields": {"permission": 24, "content_type": 8, "object_pk": "93366", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1405, "fields": {"permission": 24, "content_type": 8, "object_pk": "93369", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1408, "fields": {"permission": 24, "content_type": 8, "object_pk": "93378", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1410, "fields": {"permission": 24, "content_type": 8, "object_pk": "93387", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1412, "fields": {"permission": 24, "content_type": 8, "object_pk": "93393", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1413, "fields": {"permission": 24, "content_type": 8, "object_pk": "93396", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1414, "fields": {"permission": 24, "content_type": 8, "object_pk": "93400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1417, "fields": {"permission": 24, "content_type": 8, "object_pk": "93409", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1418, "fields": {"permission": 24, "content_type": 8, "object_pk": "93415", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1419, "fields": {"permission": 24, "content_type": 8, "object_pk": "93418", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1426, "fields": {"permission": 24, "content_type": 8, "object_pk": "93442", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1427, "fields": {"permission": 24, "content_type": 8, "object_pk": "93445", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1428, "fields": {"permission": 24, "content_type": 8, "object_pk": "93448", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1433, "fields": {"permission": 24, "content_type": 8, "object_pk": "93469", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1436, "fields": {"permission": 24, "content_type": 8, "object_pk": "93481", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1437, "fields": {"permission": 24, "content_type": 8, "object_pk": "93484", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1438, "fields": {"permission": 24, "content_type": 8, "object_pk": "93487", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1444, "fields": {"permission": 24, "content_type": 8, "object_pk": "93510", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1445, "fields": {"permission": 24, "content_type": 8, "object_pk": "93513", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1446, "fields": {"permission": 24, "content_type": 8, "object_pk": "93516", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1454, "fields": {"permission": 24, "content_type": 8, "object_pk": "93540", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1456, "fields": {"permission": 24, "content_type": 8, "object_pk": "93546", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1461, "fields": {"permission": 24, "content_type": 8, "object_pk": "93561", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1464, "fields": {"permission": 24, "content_type": 8, "object_pk": "93573", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1468, "fields": {"permission": 24, "content_type": 8, "object_pk": "93588", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1471, "fields": {"permission": 24, "content_type": 8, "object_pk": "93600", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1473, "fields": {"permission": 24, "content_type": 8, "object_pk": "93609", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1474, "fields": {"permission": 24, "content_type": 8, "object_pk": "93615", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1481, "fields": {"permission": 24, "content_type": 8, "object_pk": "93639", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1482, "fields": {"permission": 24, "content_type": 8, "object_pk": "93642", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1483, "fields": {"permission": 24, "content_type": 8, "object_pk": "93645", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1485, "fields": {"permission": 24, "content_type": 8, "object_pk": "93651", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1486, "fields": {"permission": 24, "content_type": 8, "object_pk": "93654", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1487, "fields": {"permission": 24, "content_type": 8, "object_pk": "93657", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1488, "fields": {"permission": 24, "content_type": 8, "object_pk": "93663", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1493, "fields": {"permission": 24, "content_type": 8, "object_pk": "93678", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1495, "fields": {"permission": 24, "content_type": 8, "object_pk": "93684", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1500, "fields": {"permission": 24, "content_type": 8, "object_pk": "93702", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1501, "fields": {"permission": 24, "content_type": 8, "object_pk": "93705", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1504, "fields": {"permission": 24, "content_type": 8, "object_pk": "93714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1512, "fields": {"permission": 24, "content_type": 8, "object_pk": "93748", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1518, "fields": {"permission": 24, "content_type": 8, "object_pk": "93779", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1520, "fields": {"permission": 24, "content_type": 8, "object_pk": "93785", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1522, "fields": {"permission": 24, "content_type": 8, "object_pk": "93791", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1525, "fields": {"permission": 24, "content_type": 8, "object_pk": "93800", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1526, "fields": {"permission": 24, "content_type": 8, "object_pk": "93809", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1528, "fields": {"permission": 24, "content_type": 8, "object_pk": "93815", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1529, "fields": {"permission": 24, "content_type": 8, "object_pk": "93818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1535, "fields": {"permission": 24, "content_type": 8, "object_pk": "93836", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1536, "fields": {"permission": 24, "content_type": 8, "object_pk": "93839", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1541, "fields": {"permission": 24, "content_type": 8, "object_pk": "93854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1543, "fields": {"permission": 24, "content_type": 8, "object_pk": "93863", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1544, "fields": {"permission": 24, "content_type": 8, "object_pk": "93866", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1548, "fields": {"permission": 24, "content_type": 8, "object_pk": "93878", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1550, "fields": {"permission": 24, "content_type": 8, "object_pk": "93891", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1551, "fields": {"permission": 24, "content_type": 8, "object_pk": "93894", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1553, "fields": {"permission": 24, "content_type": 8, "object_pk": "93900", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1554, "fields": {"permission": 24, "content_type": 8, "object_pk": "93903", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1556, "fields": {"permission": 24, "content_type": 8, "object_pk": "93909", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1559, "fields": {"permission": 24, "content_type": 8, "object_pk": "93921", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1562, "fields": {"permission": 24, "content_type": 8, "object_pk": "93933", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1563, "fields": {"permission": 24, "content_type": 8, "object_pk": "93940", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1565, "fields": {"permission": 24, "content_type": 8, "object_pk": "93946", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1568, "fields": {"permission": 24, "content_type": 8, "object_pk": "93955", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1569, "fields": {"permission": 24, "content_type": 8, "object_pk": "93958", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1570, "fields": {"permission": 24, "content_type": 8, "object_pk": "93961", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1571, "fields": {"permission": 24, "content_type": 8, "object_pk": "93964", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1572, "fields": {"permission": 24, "content_type": 8, "object_pk": "93967", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1573, "fields": {"permission": 24, "content_type": 8, "object_pk": "93970", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1579, "fields": {"permission": 24, "content_type": 8, "object_pk": "93988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1580, "fields": {"permission": 24, "content_type": 8, "object_pk": "93991", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1583, "fields": {"permission": 24, "content_type": 8, "object_pk": "94003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1584, "fields": {"permission": 24, "content_type": 8, "object_pk": "94006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1585, "fields": {"permission": 24, "content_type": 8, "object_pk": "94009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1588, "fields": {"permission": 24, "content_type": 8, "object_pk": "94018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 3973, "fields": {"permission": 23, "content_type": 8, "object_pk": "88902", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 4240, "fields": {"permission": 23, "content_type": 8, "object_pk": "92412", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 7515, "fields": {"permission": 24, "content_type": 8, "object_pk": "88902", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 7782, "fields": {"permission": 24, "content_type": 8, "object_pk": "92412", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 9760, "fields": {"permission": 23, "content_type": 8, "object_pk": "27245", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 13575, "fields": {"permission": 23, "content_type": 8, "object_pk": "46414", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 15601, "fields": {"permission": 23, "content_type": 8, "object_pk": "56248", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 16957, "fields": {"permission": 23, "content_type": 8, "object_pk": "62757", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 22688, "fields": {"permission": 23, "content_type": 8, "object_pk": "88219", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 23454, "fields": {"permission": 24, "content_type": 8, "object_pk": "27245", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 27269, "fields": {"permission": 24, "content_type": 8, "object_pk": "46414", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 29295, "fields": {"permission": 24, "content_type": 8, "object_pk": "56248", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 30651, "fields": {"permission": 24, "content_type": 8, "object_pk": "62757", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 36382, "fields": {"permission": 24, "content_type": 8, "object_pk": "88219", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37445, "fields": {"permission": 23, "content_type": 8, "object_pk": "92603", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37550, "fields": {"permission": 24, "content_type": 8, "object_pk": "92603", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37575, "fields": {"permission": 119, "content_type": 40, "object_pk": "98116", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37576, "fields": {"permission": 120, "content_type": 40, "object_pk": "98116", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39399, "fields": {"permission": 26, "content_type": 9, "object_pk": "26", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39454, "fields": {"permission": 26, "content_type": 9, "object_pk": "133", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39478, "fields": {"permission": 26, "content_type": 9, "object_pk": "183", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39549, "fields": {"permission": 26, "content_type": 9, "object_pk": "327", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39579, "fields": {"permission": 26, "content_type": 9, "object_pk": "384", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39588, "fields": {"permission": 26, "content_type": 9, "object_pk": "400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39822, "fields": {"permission": 26, "content_type": 9, "object_pk": "831", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39872, "fields": {"permission": 26, "content_type": 9, "object_pk": "926", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40122, "fields": {"permission": 26, "content_type": 9, "object_pk": "1390", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40142, "fields": {"permission": 26, "content_type": 9, "object_pk": "1424", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40157, "fields": {"permission": 26, "content_type": 9, "object_pk": "1454", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40292, "fields": {"permission": 26, "content_type": 9, "object_pk": "1701", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40301, "fields": {"permission": 26, "content_type": 9, "object_pk": "1718", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40454, "fields": {"permission": 26, "content_type": 9, "object_pk": "2006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40489, "fields": {"permission": 26, "content_type": 9, "object_pk": "2072", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40496, "fields": {"permission": 26, "content_type": 9, "object_pk": "2085", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40538, "fields": {"permission": 26, "content_type": 9, "object_pk": "2161", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40543, "fields": {"permission": 26, "content_type": 9, "object_pk": "2170", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40557, "fields": {"permission": 26, "content_type": 9, "object_pk": "2197", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40602, "fields": {"permission": 26, "content_type": 9, "object_pk": "2281", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40718, "fields": {"permission": 26, "content_type": 9, "object_pk": "2489", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40779, "fields": {"permission": 26, "content_type": 9, "object_pk": "2602", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40911, "fields": {"permission": 26, "content_type": 9, "object_pk": "2854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41046, "fields": {"permission": 26, "content_type": 9, "object_pk": "3105", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41076, "fields": {"permission": 26, "content_type": 9, "object_pk": "3162", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41582, "fields": {"permission": 26, "content_type": 9, "object_pk": "4096", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41674, "fields": {"permission": 26, "content_type": 9, "object_pk": "4269", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41937, "fields": {"permission": 26, "content_type": 9, "object_pk": "4767", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41997, "fields": {"permission": 26, "content_type": 9, "object_pk": "4877", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42221, "fields": {"permission": 26, "content_type": 9, "object_pk": "5294", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42228, "fields": {"permission": 26, "content_type": 9, "object_pk": "5308", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42318, "fields": {"permission": 26, "content_type": 9, "object_pk": "5478", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42436, "fields": {"permission": 26, "content_type": 9, "object_pk": "5691", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42466, "fields": {"permission": 26, "content_type": 9, "object_pk": "5749", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42602, "fields": {"permission": 26, "content_type": 9, "object_pk": "6004", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42775, "fields": {"permission": 26, "content_type": 9, "object_pk": "6324", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42985, "fields": {"permission": 26, "content_type": 9, "object_pk": "6700", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43120, "fields": {"permission": 26, "content_type": 9, "object_pk": "6947", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43396, "fields": {"permission": 26, "content_type": 9, "object_pk": "7454", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43489, "fields": {"permission": 26, "content_type": 9, "object_pk": "7622", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43690, "fields": {"permission": 26, "content_type": 9, "object_pk": "7986", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43961, "fields": {"permission": 26, "content_type": 9, "object_pk": "8482", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44131, "fields": {"permission": 26, "content_type": 9, "object_pk": "8798", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44397, "fields": {"permission": 26, "content_type": 9, "object_pk": "9287", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44489, "fields": {"permission": 26, "content_type": 9, "object_pk": "9455", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44499, "fields": {"permission": 26, "content_type": 9, "object_pk": "9475", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44638, "fields": {"permission": 26, "content_type": 9, "object_pk": "9735", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44790, "fields": {"permission": 26, "content_type": 9, "object_pk": "10015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44924, "fields": {"permission": 26, "content_type": 9, "object_pk": "10265", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45212, "fields": {"permission": 26, "content_type": 9, "object_pk": "10793", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45448, "fields": {"permission": 26, "content_type": 9, "object_pk": "11238", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45620, "fields": {"permission": 26, "content_type": 9, "object_pk": "11556", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45749, "fields": {"permission": 26, "content_type": 9, "object_pk": "11799", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45969, "fields": {"permission": 26, "content_type": 9, "object_pk": "12211", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46265, "fields": {"permission": 26, "content_type": 9, "object_pk": "12758", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46538, "fields": {"permission": 26, "content_type": 9, "object_pk": "13253", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46611, "fields": {"permission": 26, "content_type": 9, "object_pk": "13382", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46791, "fields": {"permission": 26, "content_type": 9, "object_pk": "13714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46937, "fields": {"permission": 26, "content_type": 9, "object_pk": "13987", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 47277, "fields": {"permission": 26, "content_type": 9, "object_pk": "14608", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48165, "fields": {"permission": 26, "content_type": 9, "object_pk": "16242", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48200, "fields": {"permission": 26, "content_type": 9, "object_pk": "16310", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48351, "fields": {"permission": 26, "content_type": 9, "object_pk": "16594", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48496, "fields": {"permission": 26, "content_type": 9, "object_pk": "16864", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49327, "fields": {"permission": 26, "content_type": 9, "object_pk": "18374", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49341, "fields": {"permission": 26, "content_type": 9, "object_pk": "18400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49771, "fields": {"permission": 26, "content_type": 9, "object_pk": "19215", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49976, "fields": {"permission": 26, "content_type": 9, "object_pk": "19599", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50488, "fields": {"permission": 26, "content_type": 9, "object_pk": "20549", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50550, "fields": {"permission": 26, "content_type": 9, "object_pk": "20659", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50668, "fields": {"permission": 26, "content_type": 9, "object_pk": "20872", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50731, "fields": {"permission": 26, "content_type": 9, "object_pk": "20988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51189, "fields": {"permission": 26, "content_type": 9, "object_pk": "21818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51199, "fields": {"permission": 26, "content_type": 9, "object_pk": "22216", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51204, "fields": {"permission": 26, "content_type": 9, "object_pk": "22259", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51212, "fields": {"permission": 26, "content_type": 9, "object_pk": "22322", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51215, "fields": {"permission": 26, "content_type": 9, "object_pk": "22354", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51226, "fields": {"permission": 26, "content_type": 9, "object_pk": "22475", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51230, "fields": {"permission": 26, "content_type": 9, "object_pk": "22494", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51235, "fields": {"permission": 26, "content_type": 9, "object_pk": "22526", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51239, "fields": {"permission": 26, "content_type": 9, "object_pk": "22545", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51241, "fields": {"permission": 26, "content_type": 9, "object_pk": "22558", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51244, "fields": {"permission": 26, "content_type": 9, "object_pk": "22570", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59098, "fields": {"permission": 26, "content_type": 9, "object_pk": "93025", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59099, "fields": {"permission": 26, "content_type": 9, "object_pk": "93035", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59100, "fields": {"permission": 26, "content_type": 9, "object_pk": "93051", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59102, "fields": {"permission": 26, "content_type": 9, "object_pk": "93060", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59104, "fields": {"permission": 26, "content_type": 9, "object_pk": "93075", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59141, "fields": {"permission": 26, "content_type": 9, "object_pk": "93379", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59143, "fields": {"permission": 26, "content_type": 9, "object_pk": "93397", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59144, "fields": {"permission": 26, "content_type": 9, "object_pk": "93410", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59148, "fields": {"permission": 26, "content_type": 9, "object_pk": "93449", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59158, "fields": {"permission": 26, "content_type": 9, "object_pk": "93562", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59166, "fields": {"permission": 26, "content_type": 9, "object_pk": "93610", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59170, "fields": {"permission": 26, "content_type": 9, "object_pk": "93658", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59174, "fields": {"permission": 26, "content_type": 9, "object_pk": "93715", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59181, "fields": {"permission": 26, "content_type": 9, "object_pk": "93749", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59190, "fields": {"permission": 26, "content_type": 9, "object_pk": "93804", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59192, "fields": {"permission": 26, "content_type": 9, "object_pk": "93855", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59194, "fields": {"permission": 26, "content_type": 9, "object_pk": "93879", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59203, "fields": {"permission": 26, "content_type": 9, "object_pk": "93934", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59205, "fields": {"permission": 26, "content_type": 9, "object_pk": "93937", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59391, "fields": {"permission": 122, "content_type": 41, "object_pk": "99591", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59392, "fields": {"permission": 123, "content_type": 41, "object_pk": "99591", "group": 2}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2016-04-04T13:17:57Z", "user": 11, "content_type": 10, "object_id": "18", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "15", "object_repr": "Ehrenmitglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "14", "object_repr": "Wirkliches Mitglied (w. M.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "13", "object_repr": "Korrespondierendes Mitglied im Ausland (k. M. A.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "12", "object_repr": "Korrespondierendes Mitglied im Inland (k. M. I.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2016-04-05T15:41:22Z", "user": 11, "content_type": 32, "object_id": "7", "object_repr": "ist Nachfolger von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2016-04-05T15:41:39Z", "user": 11, "content_type": 32, "object_id": "5", "object_repr": "ist Vorg\u00e4nger von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2016-04-05T15:42:02Z", "user": 11, "content_type": 32, "object_id": "8", "object_repr": "ist Teil von", "action_flag": 2, "change_message": "Changed name."}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2016-04-05T15:43:00Z", "user": 11, "content_type": 32, "object_id": "8", "object_repr": "ist Teil von", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2016-04-07T11:10:33Z", "user": 12, "content_type": 4, "object_id": "13", "object_repr": "oebl", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2016-04-07T11:11:00Z", "user": 12, "content_type": 4, "object_id": "13", "object_repr": "oebl", "action_flag": 2, "change_message": "Changed is_staff and user_permissions."}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2016-04-13T15:46:02Z", "user": 12, "content_type": 24, "object_id": "40", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2016-04-14T11:55:13Z", "user": 12, "content_type": 24, "object_id": "50", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2016-04-14T11:55:29Z", "user": 12, "content_type": 24, "object_id": "53", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2016-04-14T12:41:46Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2016-04-15T07:22:05Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2016-04-15T07:22:26Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2016-04-18T08:22:56Z", "user": 11, "content_type": 25, "object_id": "105", "object_repr": "ist Vater", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2016-04-18T08:23:07Z", "user": 11, "content_type": 25, "object_id": "106", "object_repr": "hat Vater", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "38", "object_repr": "hat Wirkliches Mitglied (w. M.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "37", "object_repr": "hat Ehrenmitglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "36", "object_repr": "hat Korrespondierendes Mitglied im Ausland (k. M. A.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "35", "object_repr": "hat Korrespondierendes Mitglied im Inland (k. M. I.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "34", "object_repr": "hat Kuratorstellvertreter(in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "33", "object_repr": "hat Pr\u00e4sident(in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "32", "object_repr": "hat Miglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "31", "object_repr": "hat Obmann/Obfrau", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2016-04-18T11:07:39Z", "user": 12, "content_type": 56, "object_id": "6", "object_repr": "testcollection 18.4", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2016-04-18T11:16:20Z", "user": 12, "content_type": 24, "object_id": "107", "object_repr": "Editlogs", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2016-04-26T09:31:21Z", "user": 12, "content_type": 26, "object_id": "44", "object_repr": "place of death", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2016-04-26T09:31:47Z", "user": 12, "content_type": 26, "object_id": "43", "object_repr": "place of birth", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2016-04-27T10:26:06Z", "user": 12, "content_type": 31, "object_id": "108", "object_repr": "located in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2016-04-28T09:03:10Z", "user": 12, "content_type": 26, "object_id": "109", "object_repr": "studied in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2016-05-02T10:05:25Z", "user": 11, "content_type": 25, "object_id": "100", "object_repr": "family member", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2016-05-02T10:07:16Z", "user": 11, "content_type": 26, "object_id": "44", "object_repr": "died in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2016-05-02T10:07:33Z", "user": 11, "content_type": 26, "object_id": "43", "object_repr": "born in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2016-05-03T09:51:29Z", "user": 12, "content_type": 24, "object_id": "110", "object_repr": "Place accuracy test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2016-05-03T11:01:33Z", "user": 12, "content_type": 40, "object_id": "23993", "object_repr": "Defregger, Franz von (studied in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2016-05-09T08:58:18Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2016-05-09T08:58:25Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2016-05-09T10:07:01Z", "user": 12, "content_type": 24, "object_id": "236", "object_repr": "Place review comments", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2016-05-09T10:10:38Z", "user": 12, "content_type": 24, "object_id": "2", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2016-05-23T07:03:50Z", "user": 12, "content_type": 27, "object_id": "279", "object_repr": "is Vizepr\u00e4sident von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2016-05-23T09:31:15Z", "user": 12, "content_type": 26, "object_id": "237", "object_repr": "wirkte in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "245", "object_repr": "Kind", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "244", "object_repr": "Eltern", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "243", "object_repr": "Vater", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "242", "object_repr": "Mutter", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2016-05-25T11:21:38Z", "user": 12, "content_type": 25, "object_id": "421", "object_repr": "Vater/Mutter", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2016-06-06T07:44:47Z", "user": 12, "content_type": 17, "object_id": "459", "object_repr": "Graf", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2016-06-06T07:45:44Z", "user": 12, "content_type": 17, "object_id": "459", "object_repr": "Graf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2016-06-21T09:34:32Z", "user": 12, "content_type": 3, "object_id": "2", "object_repr": "apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2016-06-21T09:34:54Z", "user": 12, "content_type": 4, "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 475, "fields": {"action_time": "2016-06-23T13:50:16Z", "user": 11, "content_type": 25, "object_id": "422", "object_repr": "family member", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 476, "fields": {"action_time": "2016-06-23T13:50:22Z", "user": 11, "content_type": 25, "object_id": "423", "object_repr": "friend", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2016-08-02T08:41:51Z", "user": 12, "content_type": 61, "object_id": "1", "object_repr": "highlight places", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2016-08-02T08:43:38Z", "user": 12, "content_type": 64, "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2016-08-02T08:44:13Z", "user": 12, "content_type": 65, "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2016-08-02T08:45:35Z", "user": 12, "content_type": 70, "object_id": "1", "object_repr": "\u00d6BL Haupttext", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2016-08-02T08:45:50Z", "user": 12, "content_type": 70, "object_id": "2", "object_repr": "\u00d6bl Kurzinfo", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2016-08-02T08:49:51Z", "user": 12, "content_type": 64, "object_id": "2", "object_repr": "Person Institution Form", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2016-08-02T08:50:13Z", "user": 12, "content_type": 65, "object_id": "2", "object_repr": "Person Institution Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2016-08-05T09:01:30Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "KaiserM", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2016-08-05T09:02:10Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "KaiserM", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2016-08-05T09:02:40Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2016-08-05T12:44:55Z", "user": 12, "content_type": 4, "object_id": "15", "object_repr": "JKerschner", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2016-08-05T12:45:10Z", "user": 12, "content_type": 4, "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2016-08-22T14:47:23Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2016-08-22T14:47:41Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2016-08-26T08:00:33Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2016-08-26T08:00:50Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "is_staff, is_superuser und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2016-08-26T08:01:14Z", "user": 12, "content_type": 72, "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2016-08-26T08:01:26Z", "user": 12, "content_type": 72, "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2016-09-05T08:05:05Z", "user": 12, "content_type": 4, "object_id": "18", "object_repr": "CGruber", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2016-09-05T08:05:29Z", "user": 12, "content_type": 4, "object_id": "18", "object_repr": "CGruber", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2016-09-06T10:50:39Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2016-09-06T10:51:00Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2016-09-06T14:33:23Z", "user": 12, "content_type": 25, "object_id": "5608", "object_repr": "undefined", "action_flag": 2, "change_message": "name_reverse ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2016-09-07T10:05:46Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2016-09-07T10:05:53Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2016-09-07T12:36:40Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2016-09-07T12:36:55Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2016-09-21T09:15:20Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2016-09-21T09:15:41Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2016-10-03T14:34:28Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2016-10-03T14:34:40Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "is_staff ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2016-10-03T14:34:56Z", "user": 12, "content_type": 3, "object_id": "3", "object_repr": "staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2016-10-03T14:39:11Z", "user": 12, "content_type": 3, "object_id": "3", "object_repr": "staribacher", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2016-10-03T14:39:40Z", "user": 12, "content_type": 56, "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2016-10-03T14:45:29Z", "user": 12, "content_type": 23, "object_id": "5772", "object_repr": "research dataset", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2016-10-03T14:45:47Z", "user": 12, "content_type": 56, "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "collection_type ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2016-10-03T14:47:21Z", "user": 12, "content_type": 72, "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2016-10-06T06:56:20Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2016-10-06T06:56:40Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2016-10-06T06:58:12Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2016-10-06T06:58:30Z", "user": 12, "content_type": 56, "object_id": "17", "object_repr": "Mittelalter 7.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2016-10-06T07:00:34Z", "user": 12, "content_type": 56, "object_id": "16", "object_repr": "\u00d6BL additional import missing XMLs 7.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2016-10-06T07:00:50Z", "user": 12, "content_type": 56, "object_id": "15", "object_repr": "K\u00fcnstlerhaus 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2016-10-06T07:01:03Z", "user": 12, "content_type": 56, "object_id": "11", "object_repr": "Presse 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2016-10-06T07:01:25Z", "user": 12, "content_type": 56, "object_id": "7", "object_repr": "\u00d6BL complete import test 30.8.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2016-10-06T07:01:46Z", "user": 12, "content_type": 56, "object_id": "8", "object_repr": "\u00d6BL additional import 66lfg 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2016-10-06T07:01:55Z", "user": 12, "content_type": 56, "object_id": "9", "object_repr": "\u00d6BL additional import 4online 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2016-10-06T07:31:41Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2016-10-06T07:32:15Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2016-10-07T16:13:36Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2016-10-07T16:13:56Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2016-10-07T16:14:12Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2016-10-07T16:14:34Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "BKrautgartner", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2016-10-12T12:25:02Z", "user": 12, "content_type": 4, "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2016-10-12T12:25:40Z", "user": 12, "content_type": 4, "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2016-10-12T12:27:20Z", "user": 12, "content_type": 72, "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2016-10-14T11:10:59Z", "user": 12, "content_type": 64, "object_id": "3", "object_repr": "Person Person", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2016-10-14T11:12:53Z", "user": 12, "content_type": 65, "object_id": "3", "object_repr": "Person Person Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2016-10-14T11:13:18Z", "user": 12, "content_type": 64, "object_id": "1", "object_repr": "Person Place Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2016-10-14T11:13:24Z", "user": 12, "content_type": 64, "object_id": "3", "object_repr": "Person Person Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2016-10-24T09:04:11Z", "user": 12, "content_type": 4, "object_id": "24", "object_repr": "PRumpolt", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2016-10-24T09:04:27Z", "user": 12, "content_type": 4, "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2016-10-25T10:05:10Z", "user": 12, "content_type": 71, "object_id": "1", "object_repr": "Default", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2016-12-02T15:27:02Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 830, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "4", "object_repr": "ggaenser", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 831, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "2", "object_repr": "ghoffmann", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 832, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "7", "object_repr": "imarkova", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 833, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "10", "object_repr": "jfeichtinger", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 834, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "3", "object_repr": "ngoll", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 835, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "6", "object_repr": "rburgstaller", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 836, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "5", "object_repr": "sgoellner", "action_flag": 3, "change_message": ""}}] \ No newline at end of file +[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "labels", "model": "label"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "entities", "model": "person"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "entities", "model": "place"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "entities", "model": "event"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "entities", "model": "work"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "highlighter", "model": "project"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "highlighter", "model": "annotation"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "highlighter", "model": "vocabularyapi"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "highlighter", "model": "menuentry"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "pk": 67, "fields": {"app_label": "reversion", "model": "version"}}, {"model": "contenttypes.contenttype", "pk": 68, "fields": {"app_label": "metainfo", "model": "uricandidate"}}, {"model": "contenttypes.contenttype", "pk": 69, "fields": {"app_label": "vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "pk": 70, "fields": {"app_label": "highlighter", "model": "texthigh"}}, {"model": "contenttypes.contenttype", "pk": 71, "fields": {"app_label": "highlighter", "model": "annotationproject"}}, {"model": "contenttypes.contenttype", "pk": 72, "fields": {"app_label": "authtoken", "model": "token"}}, {"model": "contenttypes.contenttype", "pk": 73, "fields": {"app_label": "guardian", "model": "userobjectpermission"}}, {"model": "contenttypes.contenttype", "pk": 74, "fields": {"app_label": "guardian", "model": "groupobjectpermission"}}, {"model": "sessions.session", "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-12T09:16:06Z"}}, {"model": "sessions.session", "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-26T10:05:04Z"}}, {"model": "sessions.session", "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-28T09:36:22Z"}}, {"model": "sessions.session", "pk": "17188fqkhwwemz91phd0gdgifcpuw531", "fields": {"session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==", "expire_date": "2016-12-23T14:35:05Z"}}, {"model": "sessions.session", "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn", "fields": {"session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9", "expire_date": "2016-11-10T13:45:57Z"}}, {"model": "sessions.session", "pk": "1iccsxivof263x10kvzx24cpvfuisbsi", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T10:09:36Z"}}, {"model": "sessions.session", "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T08:25:02Z"}}, {"model": "sessions.session", "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-03T06:28:05Z"}}, {"model": "sessions.session", "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-29T09:34:16Z"}}, {"model": "sessions.session", "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-17T10:44:53Z"}}, {"model": "sessions.session", "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T13:49:39Z"}}, {"model": "sessions.session", "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:08:50Z"}}, {"model": "sessions.session", "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-10T08:17:25Z"}}, {"model": "sessions.session", "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-26T14:15:06Z"}}, {"model": "sessions.session", "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:51:31Z"}}, {"model": "sessions.session", "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T13:15:39Z"}}, {"model": "sessions.session", "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-13T08:50:52Z"}}, {"model": "sessions.session", "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T15:43:29Z"}}, {"model": "sessions.session", "pk": "3f0z4r7zm0tht811km9py85tymlqp00t", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T16:42:42Z"}}, {"model": "sessions.session", "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T12:37:18Z"}}, {"model": "sessions.session", "pk": "3jko01lpmo2mga91cswnbozalltzmk3y", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-04T09:48:21Z"}}, {"model": "sessions.session", "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T07:40:34Z"}}, {"model": "sessions.session", "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-05-12T13:36:05Z"}}, {"model": "sessions.session", "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T09:34:31Z"}}, {"model": "sessions.session", "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:28:30Z"}}, {"model": "sessions.session", "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-08T08:03:34Z"}}, {"model": "sessions.session", "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-16T15:23:26Z"}}, {"model": "sessions.session", "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-26T16:58:24Z"}}, {"model": "sessions.session", "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a", "fields": {"session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=", "expire_date": "2016-03-28T08:35:56Z"}}, {"model": "sessions.session", "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:15:48Z"}}, {"model": "sessions.session", "pk": "530ad4x705b6e19mkq2p46a9hvib918m", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T10:26:56Z"}}, {"model": "sessions.session", "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-20T13:12:52Z"}}, {"model": "sessions.session", "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-25T10:51:39Z"}}, {"model": "sessions.session", "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw", "fields": {"session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2016-12-29T15:38:59Z"}}, {"model": "sessions.session", "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-21T14:12:41Z"}}, {"model": "sessions.session", "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:22:04Z"}}, {"model": "sessions.session", "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-09T08:10:25Z"}}, {"model": "sessions.session", "pk": "6k16reryrvgvlux4peggv2dwnpdw018v", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-08-26T11:22:37Z"}}, {"model": "sessions.session", "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429", "fields": {"session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T12:26:52Z"}}, {"model": "sessions.session", "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T10:37:41Z"}}, {"model": "sessions.session", "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-08T10:43:50Z"}}, {"model": "sessions.session", "pk": "7c01s688teucprvj9wuoiuebtl8bff2d", "fields": {"session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-21T11:56:57Z"}}, {"model": "sessions.session", "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T11:41:48Z"}}, {"model": "sessions.session", "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-17T10:07:28Z"}}, {"model": "sessions.session", "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-06-21T12:35:35Z"}}, {"model": "sessions.session", "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T11:46:41Z"}}, {"model": "sessions.session", "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-12-14T16:16:28Z"}}, {"model": "sessions.session", "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-31T10:09:32Z"}}, {"model": "sessions.session", "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-12T08:26:15Z"}}, {"model": "sessions.session", "pk": "9mf1xzu1346ss0edpll2dwougyoippqv", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-01-02T13:44:56Z"}}, {"model": "sessions.session", "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-07T09:00:09Z"}}, {"model": "sessions.session", "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-11T11:10:15Z"}}, {"model": "sessions.session", "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg", "fields": {"session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2017-01-03T09:23:20Z"}}, {"model": "sessions.session", "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T14:19:29Z"}}, {"model": "sessions.session", "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-04T08:02:47Z"}}, {"model": "sessions.session", "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-20T19:21:08Z"}}, {"model": "sessions.session", "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T11:54:57Z"}}, {"model": "sessions.session", "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T07:44:25Z"}}, {"model": "sessions.session", "pk": "be63mi87uoc2xmvbgcrh8w10gxmddy59", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2017-01-04T09:48:12Z"}}, {"model": "sessions.session", "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T12:01:50Z"}}, {"model": "sessions.session", "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T09:47:15Z"}}, {"model": "sessions.session", "pk": "c0mebo725euvitftiukwfw6dxip0koqs", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-21T08:38:04Z"}}, {"model": "sessions.session", "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:30:05Z"}}, {"model": "sessions.session", "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-10-19T15:55:59Z"}}, {"model": "sessions.session", "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T07:52:18Z"}}, {"model": "sessions.session", "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-11-07T12:37:20Z"}}, {"model": "sessions.session", "pk": "da9ald43zlct5w8wjy2jer4uuw1me508", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T07:57:42Z"}}, {"model": "sessions.session", "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-12T19:05:43Z"}}, {"model": "sessions.session", "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T14:05:09Z"}}, {"model": "sessions.session", "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T08:00:35Z"}}, {"model": "sessions.session", "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-16T13:41:51Z"}}, {"model": "sessions.session", "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T10:15:28Z"}}, {"model": "sessions.session", "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T08:42:22Z"}}, {"model": "sessions.session", "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y", "fields": {"session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-14T11:11:40Z"}}, {"model": "sessions.session", "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-14T14:53:54Z"}}, {"model": "sessions.session", "pk": "erwufifibov75oo9c5uklkwh5itqskcj", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-27T09:07:15Z"}}, {"model": "sessions.session", "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-21T15:40:51Z"}}, {"model": "sessions.session", "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-10-26T12:38:51Z"}}, {"model": "sessions.session", "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:23Z"}}, {"model": "sessions.session", "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-06-08T11:35:30Z"}}, {"model": "sessions.session", "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-06-07T13:29:28Z"}}, {"model": "sessions.session", "pk": "gi62wdj66c5j78be7q372m29mv6gdora", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-28T08:16:12Z"}}, {"model": "sessions.session", "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-21T07:03:28Z"}}, {"model": "sessions.session", "pk": "gjuve267k4260hvyils2ls2496ak9z37", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T17:18:28Z"}}, {"model": "sessions.session", "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T07:59:21Z"}}, {"model": "sessions.session", "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-05T14:43:01Z"}}, {"model": "sessions.session", "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-24T08:40:28Z"}}, {"model": "sessions.session", "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-16T08:59:39Z"}}, {"model": "sessions.session", "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-30T09:46:34Z"}}, {"model": "sessions.session", "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it", "fields": {"session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9", "expire_date": "2016-09-19T08:08:24Z"}}, {"model": "sessions.session", "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-20T06:13:45Z"}}, {"model": "sessions.session", "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-31T14:52:42Z"}}, {"model": "sessions.session", "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T08:07:45Z"}}, {"model": "sessions.session", "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-15T11:14:21Z"}}, {"model": "sessions.session", "pk": "imakeqah5lviaceijxe33lnovxbek8nu", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T16:03:56Z"}}, {"model": "sessions.session", "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-06T07:28:47Z"}}, {"model": "sessions.session", "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T13:05:08Z"}}, {"model": "sessions.session", "pk": "jghkwi5l48e732l6senbb027s7ww69fb", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T09:49:32Z"}}, {"model": "sessions.session", "pk": "ka3msywv1o7njsbgs3q2631094nuqclo", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-19T15:12:15Z"}}, {"model": "sessions.session", "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-05-31T10:05:18Z"}}, {"model": "sessions.session", "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-23T05:35:47Z"}}, {"model": "sessions.session", "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec", "fields": {"session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-30T19:29:46Z"}}, {"model": "sessions.session", "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-25T15:37:43Z"}}, {"model": "sessions.session", "pk": "knqvpsn88en5yygqemcw6edtg2jt8249", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T09:44:34Z"}}, {"model": "sessions.session", "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T06:27:59Z"}}, {"model": "sessions.session", "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:21:45Z"}}, {"model": "sessions.session", "pk": "le4a8wynksh1utfu4n5kz3o0tky32990", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-14T11:45:48Z"}}, {"model": "sessions.session", "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-01T14:58:57Z"}}, {"model": "sessions.session", "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-04T13:24:20Z"}}, {"model": "sessions.session", "pk": "m787xp45lpgoa269n6728z0b37p8iy1q", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:28:33Z"}}, {"model": "sessions.session", "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-19T19:17:17Z"}}, {"model": "sessions.session", "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-23T16:20:25Z"}}, {"model": "sessions.session", "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-23T13:26:40Z"}}, {"model": "sessions.session", "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-16T10:14:08Z"}}, {"model": "sessions.session", "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-09-14T14:54:12Z"}}, {"model": "sessions.session", "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-22T15:22:58Z"}}, {"model": "sessions.session", "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg", "fields": {"session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=", "expire_date": "2016-04-11T20:27:35Z"}}, {"model": "sessions.session", "pk": "nswul70gr80dq4qwgs4di508w00uud6b", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-08T10:15:12Z"}}, {"model": "sessions.session", "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-08-24T09:07:00Z"}}, {"model": "sessions.session", "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T10:17:31Z"}}, {"model": "sessions.session", "pk": "odorbcaogkfzuupexk2zyze0ewnene46", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-08T10:29:46Z"}}, {"model": "sessions.session", "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T07:40:16Z"}}, {"model": "sessions.session", "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:49:30Z"}}, {"model": "sessions.session", "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-16T07:07:44Z"}}, {"model": "sessions.session", "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T11:53:13Z"}}, {"model": "sessions.session", "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf", "fields": {"session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==", "expire_date": "2016-11-24T11:13:28Z"}}, {"model": "sessions.session", "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-18T11:48:29Z"}}, {"model": "sessions.session", "pk": "qi66ci58ybleptvfa4qenkhecsabekut", "fields": {"session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-03-28T14:27:50Z"}}, {"model": "sessions.session", "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf", "fields": {"session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==", "expire_date": "2016-12-09T16:53:29Z"}}, {"model": "sessions.session", "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-17T11:19:13Z"}}, {"model": "sessions.session", "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-20T08:48:24Z"}}, {"model": "sessions.session", "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T08:12:45Z"}}, {"model": "sessions.session", "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o", "fields": {"session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-10T07:54:55Z"}}, {"model": "sessions.session", "pk": "ryh7badf8sk52fnosn0im30u153w96bx", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-06-01T09:22:04Z"}}, {"model": "sessions.session", "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-17T11:25:00Z"}}, {"model": "sessions.session", "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T07:10:33Z"}}, {"model": "sessions.session", "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-11-02T13:21:25Z"}}, {"model": "sessions.session", "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-22T23:47:44Z"}}, {"model": "sessions.session", "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T09:13:02Z"}}, {"model": "sessions.session", "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T13:16:42Z"}}, {"model": "sessions.session", "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-09-07T09:17:51Z"}}, {"model": "sessions.session", "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:45:55Z"}}, {"model": "sessions.session", "pk": "txw6kfzk32bxeqm21knvrf570by4v27p", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:48:36Z"}}, {"model": "sessions.session", "pk": "uesi563p5dol5hv4gjor3noj55kz8chz", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-13T08:36:52Z"}}, {"model": "sessions.session", "pk": "uou3pothn76iu9zi34fij69m8inc1v2s", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-05-13T08:32:22Z"}}, {"model": "sessions.session", "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-07-05T09:34:00Z"}}, {"model": "sessions.session", "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-06T09:17:34Z"}}, {"model": "sessions.session", "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20", "fields": {"session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9", "expire_date": "2016-11-25T22:11:01Z"}}, {"model": "sessions.session", "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2016-10-19T09:11:45Z"}}, {"model": "sessions.session", "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-25T11:21:04Z"}}, {"model": "sessions.session", "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd", "fields": {"session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2016-12-19T13:49:09Z"}}, {"model": "sessions.session", "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:40:30Z"}}, {"model": "sessions.session", "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-31T09:28:51Z"}}, {"model": "sessions.session", "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-24T18:27:59Z"}}, {"model": "sessions.session", "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-08-15T11:56:07Z"}}, {"model": "sessions.session", "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:23:30Z"}}, {"model": "sessions.session", "pk": "xeta229mvebwff8lxrg15tg92yby9l7h", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-01-03T10:42:04Z"}}, {"model": "sessions.session", "pk": "xjameie76erma5u2xcefnxiqkaydbqem", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T15:38:48Z"}}, {"model": "sessions.session", "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:41:43Z"}}, {"model": "sessions.session", "pk": "xqn4o938970paagobhs75vdj78qklbpt", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-13T06:21:47Z"}}, {"model": "sessions.session", "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g", "fields": {"session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=", "expire_date": "2016-03-28T11:24:43Z"}}, {"model": "sessions.session", "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:59Z"}}, {"model": "sessions.session", "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T15:37:48Z"}}, {"model": "sessions.session", "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-23T09:12:20Z"}}, {"model": "sessions.session", "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-29T08:20:29Z"}}, {"model": "sessions.session", "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-21T14:11:46Z"}}, {"model": "sessions.session", "pk": "ykzz4og15rbp734i6zas54al3618ih6t", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-28T12:47:33Z"}}, {"model": "sessions.session", "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T07:23:58Z"}}, {"model": "sessions.session", "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-06-10T09:57:45Z"}}, {"model": "sessions.session", "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-29T12:27:51Z"}}, {"model": "sessions.session", "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T11:53:02Z"}}, {"model": "sessions.session", "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T13:24:18Z"}}, {"model": "sessions.session", "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:07:32Z"}}, {"model": "sessions.session", "pk": "zd89eekj8db021j20g95g8h3l2qoajg2", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-03T11:30:35Z"}}, {"model": "sessions.session", "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-07T12:20:16Z"}}, {"model": "sessions.session", "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T14:32:15Z"}}, {"model": "labels.label", "pk": 17, "fields": {"label": "Opatija", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 26}}, {"model": "labels.label", "pk": 19, "fields": {"label": "Opatija, sr. Rijeka", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 20, "fields": {"label": "Opatija, sr. Rijeka", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 50, "fields": {"label": "Zagreb", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 133}}, {"model": "labels.label", "pk": 51, "fields": {"label": "Zagreb", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 67, "fields": {"label": "Vienna", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 183}}, {"model": "labels.label", "pk": 68, "fields": {"label": "Wien", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 108, "fields": {"label": "Brno", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 327}}, {"model": "labels.label", "pk": 109, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 118, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 121, "fields": {"label": "Budapest", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 400}}, {"model": "labels.label", "pk": 122, "fields": {"label": "Budapest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 252, "fields": {"label": "Bucharest", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 831}}, {"model": "labels.label", "pk": 253, "fields": {"label": "Bucure\u015fti", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 287, "fields": {"label": "Baden bei Wien", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 926}}, {"model": "labels.label", "pk": 288, "fields": {"label": "Baden", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 926}}, {"model": "labels.label", "pk": 445, "fields": {"label": "Berlin", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 1390}}, {"model": "labels.label", "pk": 446, "fields": {"label": "Berlin", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 456, "fields": {"label": "Liberec", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 1424}}, {"model": "labels.label", "pk": 457, "fields": {"label": "Liberec - Osta\u0161ov, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 466, "fields": {"label": "Bezau", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1454}}, {"model": "labels.label", "pk": 531, "fields": {"label": "Bodensdorf, Bez. Feldkirchen", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1701}}, {"model": "labels.label", "pk": 536, "fields": {"label": "Heilbronn", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 1718}}, {"model": "labels.label", "pk": 537, "fields": {"label": "Heilbronn", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1718}}, {"model": "labels.label", "pk": 613, "fields": {"label": "Boto\u015fani", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2006}}, {"model": "labels.label", "pk": 614, "fields": {"label": "Boto\u015fani", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2006}}, {"model": "labels.label", "pk": 639, "fields": {"label": "Bratislava", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2072}}, {"model": "labels.label", "pk": 640, "fields": {"label": "Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 641, "fields": {"label": "Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 645, "fields": {"label": "Broumov", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2085}}, {"model": "labels.label", "pk": 646, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 647, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 669, "fields": {"label": "Wroc\u0142aw", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2161}}, {"model": "labels.label", "pk": 670, "fields": {"label": "Wroc\u0142aw", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 671, "fields": {"label": "Wroc\u0142aw", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 672, "fields": {"label": "Brixen", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2170}}, {"model": "labels.label", "pk": 673, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 680, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2197}}, {"model": "labels.label", "pk": 681, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - B\u0159ezhrad, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 693, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 694, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 697, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 704, "fields": {"label": "Brody", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2281}}, {"model": "labels.label", "pk": 705, "fields": {"label": "Brody, obl. L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2281}}, {"model": "labels.label", "pk": 713, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 714, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 715, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 716, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 757, "fields": {"label": "Buenos Aires", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2489}}, {"model": "labels.label", "pk": 759, "fields": {"label": "Buenos Aires", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2489}}, {"model": "labels.label", "pk": 760, "fields": {"label": "Bucure\u015fti", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 761, "fields": {"label": "Bucure\u015fti", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 789, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 870, "fields": {"label": "Chernivtsi", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2854}}, {"model": "labels.label", "pk": 871, "fields": {"label": "\u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 876, "fields": {"label": "\u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 944, "fields": {"label": "Cieszyn", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 3105}}, {"model": "labels.label", "pk": 945, "fields": {"label": "Cieszyn, woj. Bielsko", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 962, "fields": {"label": "Cluj-Napoca", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 3162}}, {"model": "labels.label", "pk": 963, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 1050, "fields": {"label": "\u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 1214, "fields": {"label": "D\u00fcren", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1215, "fields": {"label": "D\u00fcren", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1268, "fields": {"label": "\u00dadlice, kr. \u00dasteck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 4269}}, {"model": "labels.label", "pk": 1412, "fields": {"label": "Graz", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1413, "fields": {"label": "Graz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1446, "fields": {"label": "Freistadt", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1447, "fields": {"label": "Freistadt", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1560, "fields": {"label": "Ghidfal\u0103u, jud. Covasna", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5294}}, {"model": "labels.label", "pk": 1565, "fields": {"label": "Marienheide", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5308}}, {"model": "labels.label", "pk": 1619, "fields": {"label": "Gorizia", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1620, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1635, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1636, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1670, "fields": {"label": "Merano", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1671, "fields": {"label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1691, "fields": {"label": "Grieskirchen", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5749}}, {"model": "labels.label", "pk": 1755, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1756, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1841, "fields": {"label": "Hanover", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1842, "fields": {"label": "Hannover", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1926, "fields": {"label": "Innsbruck", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1927, "fields": {"label": "Innsbruck", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1982, "fields": {"label": "Hrastje, sr. Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 1983, "fields": {"label": "Hrastje, sr. Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 2002, "fields": {"label": "Brno - Brno-sever, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2108, "fields": {"label": "Jaworzno, woj. Katowice", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 7454}}, {"model": "labels.label", "pk": 2153, "fields": {"label": "Leoben", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2154, "fields": {"label": "Leoben", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2190, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2191, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2249, "fields": {"label": "Kassel", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2250, "fields": {"label": "Kassel", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2340, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2341, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2373, "fields": {"label": "Klosterneuburg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 8482}}, {"model": "labels.label", "pk": 2394, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2458, "fields": {"label": "Konstanz", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2459, "fields": {"label": "Konstanz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2581, "fields": {"label": "Kufstein", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2582, "fields": {"label": "Kufstein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2585, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Kukleny, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2595, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2625, "fields": {"label": "Lachovice, kr. Karlovarsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9455}}, {"model": "labels.label", "pk": 2632, "fields": {"label": "Ljubljana", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2633, "fields": {"label": "Ljubljana", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2711, "fields": {"label": "Lviv", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2712, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2713, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2789, "fields": {"label": "Linz", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2790, "fields": {"label": "Linz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2858, "fields": {"label": "City of London", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2859, "fields": {"label": "London City", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2860, "fields": {"label": "The City", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2861, "fields": {"label": "London", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2862, "fields": {"label": "London", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2927, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2928, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2929, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2951, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2952, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2963, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3022, "fields": {"label": "Maribor", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3023, "fields": {"label": "Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3039, "fields": {"label": "Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3040, "fields": {"label": "Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3041, "fields": {"label": "Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3116, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3117, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3118, "fields": {"label": "Merano (Castello di Trautmannsdorf) / Meran (Schlo\u00df Trautmannsdorf), reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3119, "fields": {"label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3120, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3121, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3158, "fields": {"label": "St\u0159\u00edbro, kr. Plze\u0148sk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 3239, "fields": {"label": "Moldava, kr. \u00dasteck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11556}}, {"model": "labels.label", "pk": 3324, "fields": {"label": "Munich", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3325, "fields": {"label": "M\u00fcnchen", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3441, "fields": {"label": "Nysa", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3442, "fields": {"label": "Nysa, woj. Opole", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3491, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Nov\u00fd Hradec Kr\u00e1lov\u00e9, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 3549, "fields": {"label": "Liberec - Doln\u00ed Hanychov, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3580, "fields": {"label": "Nice", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3581, "fields": {"label": "Nice", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3657, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3663, "fields": {"label": "Liberec - Horn\u00ed Hanychov, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3671, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3672, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3681, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3697, "fields": {"label": "Brno - Malom\u011b\u0159ice-Ob\u0159any, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3710, "fields": {"label": "Sopron", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3711, "fields": {"label": "Sopron, m. Gy\u0151r-Moson-Sopron", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3737, "fields": {"label": "Olomouc", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3738, "fields": {"label": "Olomouc", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3739, "fields": {"label": "Olomouc", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3740, "fields": {"label": "Olomouc", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3741, "fields": {"label": "Olomouc", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3828, "fields": {"label": "Paris", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3829, "fields": {"label": "Paris", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3901, "fields": {"label": "Petting", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13987}}, {"model": "labels.label", "pk": 4050, "fields": {"label": "Prague", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4051, "fields": {"label": "Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4052, "fields": {"label": "Praha, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4053, "fields": {"label": "Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4054, "fields": {"label": "Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4055, "fields": {"label": "Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4077, "fields": {"label": "Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4078, "fields": {"label": "Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4333, "fields": {"label": "Liberec - R\u016f\u017eodol I, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4334, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4389, "fields": {"label": "Liberec - Ruprechtice, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4415, "fields": {"label": "\u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 4478, "fields": {"label": "Sv\u00e4t\u00fd Jur", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4479, "fields": {"label": "Sv\u00e4t\u00fd Jur, kr. Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4500, "fields": {"label": "St. Pankraz", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4501, "fields": {"label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4581, "fields": {"label": "\u0160t\u00edty, kr. Olomouck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 16594}}, {"model": "labels.label", "pk": 4624, "fields": {"label": "Liberec - Kr\u00e1sn\u00e1 Stud\u00e1nka, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4652, "fields": {"label": "Schwanberg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 16864}}, {"model": "labels.label", "pk": 4676, "fields": {"label": "Wien - Sechshaus", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 4878, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 5025, "fields": {"label": "Szczakowa, woj. Katowice", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 18374}}, {"model": "labels.label", "pk": 5031, "fields": {"label": "Szeged, m. Csongr\u00e1d", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 5150, "fields": {"label": "Cieszyn, woj. Bielsko", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5152, "fields": {"label": "Cieszyn, woj. Bielsko", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5273, "fields": {"label": "Trento", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5274, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5275, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5290, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5291, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5386, "fields": {"label": "Mojm\u00edrovce, kr. Nitra", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19599}}, {"model": "labels.label", "pk": 5411, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 5422, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 5650, "fields": {"label": "Warsaw", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5651, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5652, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5653, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5654, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5655, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5656, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5677, "fields": {"label": "Bela Crkva, sr. Pan\u010devo", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20659}}, {"model": "labels.label", "pk": 5726, "fields": {"label": "Bad Gastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 5758, "fields": {"label": "Wisborough Green", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20988}}, {"model": "labels.label", "pk": 5809, "fields": {"label": "Wroc\u0142aw", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 5903, "fields": {"label": "L'viv - Znesinnja, obl. L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 5941, "fields": {"label": "Svitavy", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5942, "fields": {"label": "Svitavy, kr. Pardubick\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5959, "fields": {"label": "Jamnitz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22216}}, {"model": "labels.label", "pk": 5960, "fields": {"label": "Stronach (Lienz)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22259}}, {"model": "labels.label", "pk": 5961, "fields": {"label": "Nizza", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 5962, "fields": {"label": "Gr\u00fcnburg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22322}}, {"model": "labels.label", "pk": 5963, "fields": {"label": "Olten", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5964, "fields": {"label": "Olten, Kt. Solothurn", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5965, "fields": {"label": "Bad Kreuznach", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "labels.label", "pk": 5966, "fields": {"label": "Lasberg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22494}}, {"model": "labels.label", "pk": 5967, "fields": {"label": "Fribourg", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5968, "fields": {"label": "Fribourg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5969, "fields": {"label": "Boc\u0219a", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22545}}, {"model": "labels.label", "pk": 5970, "fields": {"label": "Lud\u017amierz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22558}}, {"model": "labels.label", "pk": 5971, "fields": {"label": "Warszawa, woj. mazowieckie", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5972, "fields": {"label": "Vezzano", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 22570}}, {"model": "labels.label", "pk": 5973, "fields": {"label": "Vezzano", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22570}}, {"model": "labels.label", "pk": 6951, "fields": {"label": "Thalberg, Sigismund (Fortun\u00e9 Fran\u00e7ois)", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 27245}}, {"model": "labels.label", "pk": 6952, "fields": {"label": "Fortun\u00e9 Fran\u00e7ois", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 27245}}, {"model": "labels.label", "pk": 7018, "fields": {"label": "Bratislava, kr. Bratislavsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 7161, "fields": {"label": "Bressanone/Brixen", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 8216, "fields": {"label": "Wien (?)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 8588, "fields": {"label": "Bressanone", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 9187, "fields": {"label": "Merano/Meran, reg. Trento - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 9289, "fields": {"label": "Teschen/T\u011b\u0161\u00edn/Cieszyn", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 10492, "fields": {"label": "?, kr. ?", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 12551, "fields": {"label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 12706, "fields": {"label": "\u013dviv (?)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 13574, "fields": {"label": "Bratislava (?)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 13859, "fields": {"label": "Linz (?)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 14306, "fields": {"label": "Gorizia, reg. Friuli-Venezia Giulia", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 15282, "fields": {"label": "Reicha (Rejcha), Anton (Anton\u00edn) Josef", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15283, "fields": {"label": "Rejcha", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15284, "fields": {"label": "Anton\u00edn Josef", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 18793, "fields": {"label": "Moscheles, Ignaz (Isaak)", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 56248}}, {"model": "labels.label", "pk": 18794, "fields": {"label": "Isaak", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 56248}}, {"model": "labels.label", "pk": 20331, "fields": {"label": "Gastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 21059, "fields": {"label": "Liszt, Franz von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 62757}}, {"model": "labels.label", "pk": 21545, "fields": {"label": "Bressanone/Brixen, reg. Trento - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 21609, "fields": {"label": "Praha - Mal\u00e1 Chuchle, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 25058, "fields": {"label": "Praha - Horn\u00ed Po\u010dernice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 26197, "fields": {"label": "Szeged", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 27645, "fields": {"label": "Prag", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 29838, "fields": {"label": "Blahetka, Marie Leopoldine", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 88219}}, {"model": "labels.label", "pk": 30089, "fields": {"label": "Beethoven, Ludwig van", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 88902}}, {"model": "labels.label", "pk": 30728, "fields": {"label": "Freiburg/Fribourg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 30935, "fields": {"label": "Merano/Meran", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 31498, "fields": {"label": "St\u0159\u00edbro", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 31596, "fields": {"label": "B\u00e4uerle, Friederike; Ps. Friedrich Horn", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31597, "fields": {"label": "Friedrich Horn", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31632, "fields": {"label": "L\u2019viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 31701, "fields": {"label": "Czerny (\u010cern\u00fd), Carl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31702, "fields": {"label": "\u010cern\u00fd", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31766, "fields": {"label": "Bahr, Hermann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93003}}, {"model": "labels.label", "pk": 31769, "fields": {"label": "Czerny, Adalbert", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93009}}, {"model": "labels.label", "pk": 31770, "fields": {"label": "Czetz, Johann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93012}}, {"model": "labels.label", "pk": 31771, "fields": {"label": "Czikann, Johann Jakob Heinrich", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93015}}, {"model": "labels.label", "pk": 31772, "fields": {"label": "Clam-Gallas, Eduard Gf.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93018}}, {"model": "labels.label", "pk": 31773, "fields": {"label": "Clam-Martinic, Heinrich Jaroslav Gf.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93021}}, {"model": "labels.label", "pk": 31774, "fields": {"label": "Clam-Martinic, Heinrich Gf.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93024}}, {"model": "labels.label", "pk": 31775, "fields": {"label": "Claus, Karl Friedrich", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93028}}, {"model": "labels.label", "pk": 31776, "fields": {"label": "Conze, Alexander", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93031}}, {"model": "labels.label", "pk": 31777, "fields": {"label": "Costenoble, Karl Ludwig", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93034}}, {"model": "labels.label", "pk": 31780, "fields": {"label": "\u010celakovsk\u00fd, Jarom\u00edr", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93044}}, {"model": "labels.label", "pk": 31781, "fields": {"label": "\u010celakovsk\u00fd, Ladislav", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93047}}, {"model": "labels.label", "pk": 31782, "fields": {"label": "\u010cerven\u00fd, V\u00e1clav Franti\u0161ek", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93050}}, {"model": "labels.label", "pk": 31783, "fields": {"label": "Charlemont, Hugo de", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93056}}, {"model": "labels.label", "pk": 31784, "fields": {"label": "Chlumczansk\u00fd, Wenzel Leopold von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93059}}, {"model": "labels.label", "pk": 31785, "fields": {"label": "Dumba, Konstantin Theodor", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93065}}, {"model": "labels.label", "pk": 31786, "fields": {"label": "Doderer, Wilhelm von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93068}}, {"model": "labels.label", "pk": 31787, "fields": {"label": "Defregger, Franz von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93071}}, {"model": "labels.label", "pk": 31788, "fields": {"label": "Dengel, Ignaz Philipp", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93074}}, {"model": "labels.label", "pk": 31811, "fields": {"label": "Holovsky, Hilde", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93136}}, {"model": "labels.label", "pk": 31872, "fields": {"label": "Lorenz, Heinrich", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93328}}, {"model": "labels.label", "pk": 31874, "fields": {"label": "L\u00f6wy, Julius; Ps. Von der Als", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31875, "fields": {"label": "Von der Als", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31879, "fields": {"label": "Lobmeyr, Josef", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93352}}, {"model": "labels.label", "pk": 31883, "fields": {"label": "Lichtblau, Adolf; Ps. A. L. Blau", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31884, "fields": {"label": "A. L. Blau", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31885, "fields": {"label": "Lichtblau, Ludwig", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93369}}, {"model": "labels.label", "pk": 31888, "fields": {"label": "Leitgeb, Hubert", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93378}}, {"model": "labels.label", "pk": 31890, "fields": {"label": "Lenhoss\u00e9k, Mih\u00e1ly Ign\u00e1c von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93387}}, {"model": "labels.label", "pk": 31892, "fields": {"label": "Lefler, Heinrich", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93393}}, {"model": "labels.label", "pk": 31893, "fields": {"label": "Leichter, K\u00e4the; geb. Pick", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31894, "fields": {"label": "Pick", "isocode_639_3": "deu", "label_type": 612, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31895, "fields": {"label": "Leidesdorf, Franz; Ps. Wallner", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31896, "fields": {"label": "Wallner", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31899, "fields": {"label": "Lapaine, Valentin", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93409}}, {"model": "labels.label", "pk": 31900, "fields": {"label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31901, "fields": {"label": "Suida und Langer", "isocode_639_3": "deu", "label_type": 606, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31902, "fields": {"label": "M\u00fcller, Wolf Johannes", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93418}}, {"model": "labels.label", "pk": 31910, "fields": {"label": "M\u00f6rl, Maria Theresia von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93442}}, {"model": "labels.label", "pk": 31911, "fields": {"label": "Millosicz, Georg Frh. von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93445}}, {"model": "labels.label", "pk": 31912, "fields": {"label": "Miklosich, Franz von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93448}}, {"model": "labels.label", "pk": 31917, "fields": {"label": "Meithner, Karl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93469}}, {"model": "labels.label", "pk": 31920, "fields": {"label": "Margulies, Berl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93481}}, {"model": "labels.label", "pk": 31921, "fields": {"label": "M\u00e1nesov\u00e1, Amalie", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93484}}, {"model": "labels.label", "pk": 31922, "fields": {"label": "M\u00e1nes, Quido", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93487}}, {"model": "labels.label", "pk": 31928, "fields": {"label": "Mayer, Karl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93510}}, {"model": "labels.label", "pk": 31929, "fields": {"label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31930, "fields": {"label": "Ritter von Alpenburg", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31931, "fields": {"label": "Nov\u00e1\u010dek, Rudolf", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93516}}, {"model": "labels.label", "pk": 31940, "fields": {"label": "Ortmann, Rudolf", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93540}}, {"model": "labels.label", "pk": 31942, "fields": {"label": "Oellacher, Josef", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93546}}, {"model": "labels.label", "pk": 31947, "fields": {"label": "Poljanec, Leopold", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93561}}, {"model": "labels.label", "pk": 31950, "fields": {"label": "Petzold, Emil", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93573}}, {"model": "labels.label", "pk": 31955, "fields": {"label": "Peithner von Lichtenfels, Eduard", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93588}}, {"model": "labels.label", "pk": 31958, "fields": {"label": "Patera, Adolf", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93600}}, {"model": "labels.label", "pk": 31960, "fields": {"label": "Rumpler, Matthias", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93609}}, {"model": "labels.label", "pk": 31961, "fields": {"label": "Rotter, Johann (Hans)", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31962, "fields": {"label": "Hans", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31969, "fields": {"label": "Revertera von Salandra, Friedrich Gf.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93639}}, {"model": "labels.label", "pk": 31970, "fields": {"label": "Reichenberger, Andreas", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93642}}, {"model": "labels.label", "pk": 31971, "fields": {"label": "Reiser, Othmar", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93645}}, {"model": "labels.label", "pk": 31973, "fields": {"label": "Randa, Maximilian von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93651}}, {"model": "labels.label", "pk": 31974, "fields": {"label": "Radakovi\u010d, Michael", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93654}}, {"model": "labels.label", "pk": 31975, "fields": {"label": "Szigligeti, Ede (Edv\u00e1rd); bis 1834 J\u00f3zsef Szathm\u00e1ry", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31976, "fields": {"label": "Edv\u00e1rd", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31977, "fields": {"label": " bis 1834 J\u00f3zsef Szathm\u00e1ry", "isocode_639_3": "deu", "label_type": 653, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31978, "fields": {"label": "Szurmay von Uzsok, S\u00e1ndor (Alexander) Frh.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31979, "fields": {"label": "Alexander Frh.", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31988, "fields": {"label": "St\u00fclz, Jodok", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93678}}, {"model": "labels.label", "pk": 31990, "fields": {"label": "Stowasser, Otto Hellmuth", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93684}}, {"model": "labels.label", "pk": 32001, "fields": {"label": "Steindler, Olga; verehel. Ehrenhaft-S.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32002, "fields": {"label": "Ehrenhaft-S.", "isocode_639_3": "deu", "label_type": 606, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32003, "fields": {"label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32004, "fields": {"label": "Ernest Edward Aurel", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32005, "fields": {"label": "Gottlieb Hellseher", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32009, "fields": {"label": "Stariha, Janez Nep.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93714}}, {"model": "labels.label", "pk": 32018, "fields": {"label": "\u0160njari\u0107, Lukas", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93748}}, {"model": "labels.label", "pk": 32030, "fields": {"label": "Sichulski, Kazimierz", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93779}}, {"model": "labels.label", "pk": 32032, "fields": {"label": "Settari, Wilhelm Anton Maria", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93785}}, {"model": "labels.label", "pk": 32034, "fields": {"label": "Sehnal, Eugen", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93791}}, {"model": "labels.label", "pk": 32037, "fields": {"label": "Schwartz, P. Anton Maria", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93800}}, {"model": "labels.label", "pk": 32038, "fields": {"label": "Schwarz, Johann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93803}}, {"model": "labels.label", "pk": 32039, "fields": {"label": "Schwarz, Kaspar", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93809}}, {"model": "labels.label", "pk": 32041, "fields": {"label": "Schweitzer, Leopold Albrecht", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93815}}, {"model": "labels.label", "pk": 32042, "fields": {"label": "Schwabl, Franz", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93818}}, {"model": "labels.label", "pk": 32052, "fields": {"label": "Schu\u00ebcker, Edmund; eigentl. Schu\u00f6cker", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32053, "fields": {"label": "Schu\u00f6cker", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32054, "fields": {"label": "Schr\u00f6dl, Leopold", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93839}}, {"model": "labels.label", "pk": 32059, "fields": {"label": "Schreyer, Johann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93854}}, {"model": "labels.label", "pk": 32062, "fields": {"label": "Scholz, Franz", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93863}}, {"model": "labels.label", "pk": 32063, "fields": {"label": "Schrammel, Johann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93866}}, {"model": "labels.label", "pk": 32067, "fields": {"label": "Scholl, Joseph", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93878}}, {"model": "labels.label", "pk": 32069, "fields": {"label": "Sch\u00f6nberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32070, "fields": {"label": "Schoenberger", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32071, "fields": {"label": "Carl Friedrich Frh. von", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32072, "fields": {"label": "Sch\u00f6nberger, Benno", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93894}}, {"model": "labels.label", "pk": 32075, "fields": {"label": "Schnitzler, Julius", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93900}}, {"model": "labels.label", "pk": 32076, "fields": {"label": "Schober, Alfred", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93903}}, {"model": "labels.label", "pk": 32079, "fields": {"label": "Schoeller, Gustav Adolph von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93909}}, {"model": "labels.label", "pk": 32084, "fields": {"label": "Schmutzler, Leopold", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93921}}, {"model": "labels.label", "pk": 32087, "fields": {"label": "Schmidt, Joseph", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93933}}, {"model": "labels.label", "pk": 32088, "fields": {"label": "Schmidt, Anton", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93940}}, {"model": "labels.label", "pk": 32090, "fields": {"label": "Schmal, Johannes Adolf", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93946}}, {"model": "labels.label", "pk": 32094, "fields": {"label": "Schmidt-Beauchez, Louis", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93955}}, {"model": "labels.label", "pk": 32095, "fields": {"label": "Schindler, Josef", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93958}}, {"model": "labels.label", "pk": 32096, "fields": {"label": "Scheu, Josef Franz Georg", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93961}}, {"model": "labels.label", "pk": 32097, "fields": {"label": "Schikaneder, Jakub", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93964}}, {"model": "labels.label", "pk": 32098, "fields": {"label": "Schell, Karl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93967}}, {"model": "labels.label", "pk": 32099, "fields": {"label": "Schenk, Samuel Leopold", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93970}}, {"model": "labels.label", "pk": 32107, "fields": {"label": "T\u00f6lgyessy, Art\u00far", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93988}}, {"model": "labels.label", "pk": 32108, "fields": {"label": "Thun und Hohenstein, Emanuel Maria Gf. von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93991}}, {"model": "labels.label", "pk": 32111, "fields": {"label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32112, "fields": {"label": "Kluger Frh. von Teschenberg Ernst", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32113, "fields": {"label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32114, "fields": {"label": "Przerwa-Tetmajer", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32115, "fields": {"label": "Teuber, Emmerich (genannt Imre)", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32116, "fields": {"label": "genannt Imre", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32119, "fields": {"label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32120, "fields": {"label": "Richard Denemy", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32121, "fields": {"label": " ab 1913 Denemy-Tauber", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32390, "fields": {"label": "Laibach", "isocode_639_3": "deu", "label_type": 6, "temp_entity": 9475}}, {"model": "entities.person", "pk": 27245, "fields": {"first_name": "Sigismund", "gender": "male", "text": [12155, 12156], "collection": [], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 46414, "fields": {"first_name": "Anton Josef", "gender": "male", "text": [21722, 21723], "collection": [], "profession": [151, 188, 2054], "title": []}}, {"model": "entities.person", "pk": 56248, "fields": {"first_name": "Ignaz", "gender": "male", "text": [27186, 27187], "collection": [], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 62757, "fields": {"first_name": "Franz von", "gender": "male", "text": [30762, 30763], "collection": [], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 88219, "fields": {"first_name": "Marie Leopoldine", "gender": "female", "text": [44908, 44909], "collection": [], "profession": [151, 1750], "title": []}}, {"model": "entities.person", "pk": 88902, "fields": {"first_name": "Ludwig van", "gender": "male", "text": [45290, 45291], "collection": [], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 92412, "fields": {"first_name": "Friederike", "gender": "female", "text": [47030, 47031], "collection": [], "profession": [128, 5578], "title": []}}, {"model": "entities.person", "pk": 92603, "fields": {"first_name": "Carl", "gender": "male", "text": [47126, 47127], "collection": [], "profession": [151, 5599], "title": []}}, {"model": "entities.person", "pk": 93003, "fields": {"first_name": "Hermann", "gender": "male", "text": [47200, 47201], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93009, "fields": {"first_name": "Adalbert", "gender": "male", "text": [47204, 47205], "collection": [], "profession": [154, 155], "title": []}}, {"model": "entities.person", "pk": 93012, "fields": {"first_name": "Johann", "gender": "male", "text": [47206, 47207], "collection": [], "profession": [134, 143, 157, 158], "title": []}}, {"model": "entities.person", "pk": 93015, "fields": {"first_name": "Johann Jakob Heinrich", "gender": "male", "text": [47208, 47209], "collection": [], "profession": [128, 146, 159], "title": []}}, {"model": "entities.person", "pk": 93018, "fields": {"first_name": "Eduard Gf.", "gender": "male", "text": [47210, 47211], "collection": [], "profession": [143, 144], "title": []}}, {"model": "entities.person", "pk": 93021, "fields": {"first_name": "Heinrich Jaroslav Gf.", "gender": "male", "text": [47212, 47213], "collection": [], "profession": [132, 134, 145, 146], "title": []}}, {"model": "entities.person", "pk": 93024, "fields": {"first_name": "Heinrich Gf.", "gender": "male", "text": [47214, 47215], "collection": [], "profession": [134, 147], "title": []}}, {"model": "entities.person", "pk": 93028, "fields": {"first_name": "Karl Friedrich", "gender": "male", "text": [47216, 47217], "collection": [], "profession": [135, 148], "title": []}}, {"model": "entities.person", "pk": 93031, "fields": {"first_name": "Alexander", "gender": "male", "text": [47218, 47219], "collection": [], "profession": [149, 150], "title": []}}, {"model": "entities.person", "pk": 93034, "fields": {"first_name": "Karl Ludwig", "gender": "male", "text": [47220, 47221], "collection": [], "profession": [128, 151, 152], "title": []}}, {"model": "entities.person", "pk": 93044, "fields": {"first_name": "Jarom\u00edr", "gender": "male", "text": [47226, 47227], "collection": [], "profession": [132, 133, 134], "title": []}}, {"model": "entities.person", "pk": 93047, "fields": {"first_name": "Ladislav", "gender": "male", "text": [47228, 47229], "collection": [], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93050, "fields": {"first_name": "V\u00e1clav Franti\u0161ek", "gender": "male", "text": [47230, 47231], "collection": [], "profession": [137, 138], "title": []}}, {"model": "entities.person", "pk": 93056, "fields": {"first_name": "Hugo de", "gender": "male", "text": [47232, 47233], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93059, "fields": {"first_name": "Wenzel Leopold von", "gender": "male", "text": [47234, 47235], "collection": [], "profession": [141, 142], "title": []}}, {"model": "entities.person", "pk": 93065, "fields": {"first_name": "Konstantin Theodor", "gender": "male", "text": [47236, 47237], "collection": [], "profession": [146, 162], "title": []}}, {"model": "entities.person", "pk": 93068, "fields": {"first_name": "Wilhelm von", "gender": "male", "text": [47238, 47239], "collection": [], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93071, "fields": {"first_name": "Franz von", "gender": "male", "text": [47240, 47241], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93074, "fields": {"first_name": "Ignaz Philipp", "gender": "male", "text": [47242, 47243], "collection": [], "profession": [149, 160], "title": []}}, {"model": "entities.person", "pk": 93136, "fields": {"first_name": "Hilde", "gender": "female", "text": [47276, 47277], "collection": [], "profession": [163, 164], "title": []}}, {"model": "entities.person", "pk": 93328, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47384, 47385], "collection": [], "profession": [154, 175], "title": []}}, {"model": "entities.person", "pk": 93337, "fields": {"first_name": "Julius", "gender": "male", "text": [47388, 47389], "collection": [], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93352, "fields": {"first_name": "Josef", "gender": "male", "text": [47394, 47395], "collection": [], "profession": [137, 173], "title": []}}, {"model": "entities.person", "pk": 93366, "fields": {"first_name": "Adolf", "gender": "male", "text": [47402, 47403], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93369, "fields": {"first_name": "Ludwig", "gender": "male", "text": [47404, 47405], "collection": [], "profession": [132, 172], "title": []}}, {"model": "entities.person", "pk": 93378, "fields": {"first_name": "Hubert", "gender": "male", "text": [47410, 47411], "collection": [], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93387, "fields": {"first_name": "Mih\u00e1ly Ign\u00e1c von", "gender": "male", "text": [47414, 47415], "collection": [], "profession": [154, 171], "title": []}}, {"model": "entities.person", "pk": 93393, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47418, 47419], "collection": [], "profession": [139, 168], "title": []}}, {"model": "entities.person", "pk": 93396, "fields": {"first_name": "K\u00e4the", "gender": "female", "text": [47420, 47421], "collection": [], "profession": [128, 134, 169], "title": []}}, {"model": "entities.person", "pk": 93400, "fields": {"first_name": "Franz", "gender": "male", "text": [47422, 47423], "collection": [], "profession": [128, 151, 170], "title": []}}, {"model": "entities.person", "pk": 93409, "fields": {"first_name": "Valentin", "gender": "male", "text": [47428, 47429], "collection": [], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93415, "fields": {"first_name": "Johanna", "gender": "female", "text": [47430, 47431], "collection": [], "profession": [137, 165, 166], "title": []}}, {"model": "entities.person", "pk": 93418, "fields": {"first_name": "Wolf Johannes", "gender": "male", "text": [47432, 47433], "collection": [], "profession": [135, 185], "title": []}}, {"model": "entities.person", "pk": 93442, "fields": {"first_name": "Maria Theresia von", "gender": "female", "text": [47446, 47447], "collection": [], "profession": [141, 184], "title": []}}, {"model": "entities.person", "pk": 93445, "fields": {"first_name": "Georg Frh. von", "gender": "male", "text": [47448, 47449], "collection": [], "profession": [143, 183], "title": []}}, {"model": "entities.person", "pk": 93448, "fields": {"first_name": "Franz von", "gender": "male", "text": [47450, 47451], "collection": [], "profession": [134, 149, 182], "title": []}}, {"model": "entities.person", "pk": 93469, "fields": {"first_name": "Karl", "gender": "male", "text": [47460, 47461], "collection": [], "profession": [134, 180, 181], "title": []}}, {"model": "entities.person", "pk": 93481, "fields": {"first_name": "Berl", "gender": "male", "text": [47466, 47467], "collection": [], "profession": [151, 179], "title": []}}, {"model": "entities.person", "pk": 93484, "fields": {"first_name": "Amalie", "gender": "female", "text": [47468, 47469], "collection": [], "profession": [139, 178], "title": []}}, {"model": "entities.person", "pk": 93487, "fields": {"first_name": "Quido", "gender": "male", "text": [47470, 47471], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93510, "fields": {"first_name": "Karl", "gender": "male", "text": [47482, 47483], "collection": [], "profession": [128, 177], "title": []}}, {"model": "entities.person", "pk": 93513, "fields": {"first_name": "Johann Nep.", "gender": "male", "text": [47484, 47485], "collection": [], "profession": [128, 134, 176], "title": []}}, {"model": "entities.person", "pk": 93516, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47486, 47487], "collection": [], "profession": [151, 186], "title": []}}, {"model": "entities.person", "pk": 93540, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47502, 47503], "collection": [], "profession": [188, 189], "title": []}}, {"model": "entities.person", "pk": 93546, "fields": {"first_name": "Josef", "gender": "male", "text": [47506, 47507], "collection": [], "profession": [135, 187], "title": []}}, {"model": "entities.person", "pk": 93561, "fields": {"first_name": "Leopold", "gender": "male", "text": [47516, 47517], "collection": [], "profession": [135, 188, 193], "title": []}}, {"model": "entities.person", "pk": 93573, "fields": {"first_name": "Emil", "gender": "male", "text": [47522, 47523], "collection": [], "profession": [149, 192], "title": []}}, {"model": "entities.person", "pk": 93588, "fields": {"first_name": "Eduard", "gender": "male", "text": [47530, 47531], "collection": [], "profession": [139, 191], "title": []}}, {"model": "entities.person", "pk": 93600, "fields": {"first_name": "Adolf", "gender": "male", "text": [47536, 47537], "collection": [], "profession": [135, 190], "title": []}}, {"model": "entities.person", "pk": 93609, "fields": {"first_name": "Matthias", "gender": "male", "text": [47540, 47541], "collection": [], "profession": [128, 141, 200], "title": []}}, {"model": "entities.person", "pk": 93615, "fields": {"first_name": "Johann", "gender": "male", "text": [47542, 47543], "collection": [], "profession": [134, 137, 149, 199], "title": []}}, {"model": "entities.person", "pk": 93639, "fields": {"first_name": "Friedrich Gf.", "gender": "male", "text": [47556, 47557], "collection": [], "profession": [134, 146, 198], "title": []}}, {"model": "entities.person", "pk": 93642, "fields": {"first_name": "Andreas", "gender": "male", "text": [47558, 47559], "collection": [], "profession": [141, 196], "title": []}}, {"model": "entities.person", "pk": 93645, "fields": {"first_name": "Othmar", "gender": "male", "text": [47560, 47561], "collection": [], "profession": [135, 197], "title": []}}, {"model": "entities.person", "pk": 93651, "fields": {"first_name": "Maximilian von", "gender": "male", "text": [47564, 47565], "collection": [], "profession": [143, 146, 195], "title": []}}, {"model": "entities.person", "pk": 93654, "fields": {"first_name": "Michael", "gender": "male", "text": [47566, 47567], "collection": [], "profession": [135, 194], "title": []}}, {"model": "entities.person", "pk": 93657, "fields": {"first_name": "Ede", "gender": "male", "text": [47568, 47569], "collection": [], "profession": [128, 151, 230], "title": []}}, {"model": "entities.person", "pk": 93663, "fields": {"first_name": "S\u00e1ndor Frh.", "gender": "male", "text": [47570, 47571], "collection": [], "profession": [134, 143, 231], "title": []}}, {"model": "entities.person", "pk": 93678, "fields": {"first_name": "Jodok", "gender": "male", "text": [47580, 47581], "collection": [], "profession": [141, 149, 229], "title": []}}, {"model": "entities.person", "pk": 93684, "fields": {"first_name": "Otto Hellmuth", "gender": "male", "text": [47584, 47585], "collection": [], "profession": [146, 149, 228], "title": []}}, {"model": "entities.person", "pk": 93702, "fields": {"first_name": "Olga", "gender": "female", "text": [47594, 47595], "collection": [], "profession": [135, 188, 226], "title": []}}, {"model": "entities.person", "pk": 93705, "fields": {"first_name": "Ernst Edward Aurel", "gender": "male", "text": [47596, 47597], "collection": [], "profession": [149, 227], "title": []}}, {"model": "entities.person", "pk": 93714, "fields": {"first_name": "Janez Nep.", "gender": "male", "text": [47602, 47603], "collection": [], "profession": [141, 225], "title": []}}, {"model": "entities.person", "pk": 93748, "fields": {"first_name": "Lukas", "gender": "male", "text": [47614, 47615], "collection": [], "profession": [143, 224], "title": []}}, {"model": "entities.person", "pk": 93779, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47626, 47627], "collection": [], "profession": [139, 223], "title": []}}, {"model": "entities.person", "pk": 93785, "fields": {"first_name": "Wilhelm Anton Maria", "gender": "male", "text": [47630, 47631], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93791, "fields": {"first_name": "Eugen", "gender": "male", "text": [47634, 47635], "collection": [], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93800, "fields": {"first_name": "P. Anton Maria", "gender": "male", "text": [47640, 47641], "collection": [], "profession": [141, 219], "title": []}}, {"model": "entities.person", "pk": 93803, "fields": {"first_name": "Johann", "gender": "male", "text": [47642, 47643], "collection": [], "profession": [149, 188, 220], "title": []}}, {"model": "entities.person", "pk": 93809, "fields": {"first_name": "Kaspar", "gender": "male", "text": [47644, 47645], "collection": [], "profession": [134, 137, 221], "title": []}}, {"model": "entities.person", "pk": 93815, "fields": {"first_name": "Leopold Albrecht", "gender": "male", "text": [47648, 47649], "collection": [], "profession": [128, 222], "title": []}}, {"model": "entities.person", "pk": 93818, "fields": {"first_name": "Franz", "gender": "male", "text": [47650, 47651], "collection": [], "profession": [217, 218], "title": []}}, {"model": "entities.person", "pk": 93836, "fields": {"first_name": "Edmund", "gender": "male", "text": [47660, 47661], "collection": [], "profession": [151, 216], "title": []}}, {"model": "entities.person", "pk": 93839, "fields": {"first_name": "Leopold", "gender": "male", "text": [47662, 47663], "collection": [], "profession": [139, 215], "title": []}}, {"model": "entities.person", "pk": 93854, "fields": {"first_name": "Johann", "gender": "male", "text": [47672, 47673], "collection": [], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93863, "fields": {"first_name": "Franz", "gender": "male", "text": [47676, 47677], "collection": [], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93866, "fields": {"first_name": "Johann", "gender": "male", "text": [47678, 47679], "collection": [], "profession": [151, 214], "title": []}}, {"model": "entities.person", "pk": 93878, "fields": {"first_name": "Joseph", "gender": "male", "text": [47684, 47685], "collection": [], "profession": [132, 134, 213], "title": []}}, {"model": "entities.person", "pk": 93891, "fields": {"first_name": "Adolf Frh. von", "gender": "male", "text": [47688, 47689], "collection": [], "profession": [143, 146, 211], "title": []}}, {"model": "entities.person", "pk": 93894, "fields": {"first_name": "Benno", "gender": "male", "text": [47690, 47691], "collection": [], "profession": [151, 212], "title": []}}, {"model": "entities.person", "pk": 93900, "fields": {"first_name": "Julius", "gender": "male", "text": [47694, 47695], "collection": [], "profession": [154, 208], "title": []}}, {"model": "entities.person", "pk": 93903, "fields": {"first_name": "Alfred", "gender": "male", "text": [47696, 47697], "collection": [], "profession": [132, 146, 209], "title": []}}, {"model": "entities.person", "pk": 93909, "fields": {"first_name": "Gustav Adolph von", "gender": "male", "text": [47700, 47701], "collection": [], "profession": [137, 210], "title": []}}, {"model": "entities.person", "pk": 93921, "fields": {"first_name": "Leopold", "gender": "male", "text": [47706, 47707], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93933, "fields": {"first_name": "Joseph", "gender": "male", "text": [47712, 47713], "collection": [], "profession": [151, 207], "title": []}}, {"model": "entities.person", "pk": 93940, "fields": {"first_name": "Anton", "gender": "male", "text": [47714, 47715], "collection": [], "profession": [134, 137, 206], "title": []}}, {"model": "entities.person", "pk": 93946, "fields": {"first_name": "Johannes Adolf", "gender": "male", "text": [47718, 47719], "collection": [], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93955, "fields": {"first_name": "Louis", "gender": "male", "text": [47724, 47725], "collection": [], "profession": [128, 188, 205], "title": []}}, {"model": "entities.person", "pk": 93958, "fields": {"first_name": "Josef", "gender": "male", "text": [47726, 47727], "collection": [], "profession": [149, 204], "title": []}}, {"model": "entities.person", "pk": 93961, "fields": {"first_name": "Josef Franz Georg", "gender": "male", "text": [47728, 47729], "collection": [], "profession": [128, 151, 203], "title": []}}, {"model": "entities.person", "pk": 93964, "fields": {"first_name": "Jakub", "gender": "male", "text": [47730, 47731], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93967, "fields": {"first_name": "Karl", "gender": "male", "text": [47732, 47733], "collection": [], "profession": [137, 201], "title": []}}, {"model": "entities.person", "pk": 93970, "fields": {"first_name": "Samuel Leopold", "gender": "male", "text": [47734, 47735], "collection": [], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93988, "fields": {"first_name": "Art\u00far", "gender": "male", "text": [47746, 47747], "collection": [], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93991, "fields": {"first_name": "Emanuel Maria Gf. von", "gender": "male", "text": [47748, 47749], "collection": [], "profession": [141, 235], "title": []}}, {"model": "entities.person", "pk": 94003, "fields": {"first_name": "Ernst Maximilian Frh. von", "gender": "male", "text": [47754, 47755], "collection": [], "profession": [128, 146, 233], "title": []}}, {"model": "entities.person", "pk": 94006, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47756, 47757], "collection": [], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 94009, "fields": {"first_name": "Emmerich", "gender": "male", "text": [47758, 47759], "collection": [], "profession": [166, 234], "title": []}}, {"model": "entities.person", "pk": 94018, "fields": {"first_name": "Richard", "gender": "male", "text": [47764, 47765], "collection": [], "profession": [151, 232], "title": []}}, {"model": "entities.place", "pk": 26, "fields": {"kind": 9, "lat": 45.33917, "lng": 14.30833, "text": [12, 14, 11225], "collection": []}}, {"model": "entities.place", "pk": 133, "fields": {"kind": 12, "lat": 45.81444, "lng": 15.97798, "text": [59, 11275], "collection": []}}, {"model": "entities.place", "pk": 183, "fields": {"kind": 12, "lat": 48.20849, "lng": 16.37208, "text": [8304, 11203], "collection": []}}, {"model": "entities.place", "pk": 327, "fields": {"kind": 13, "lat": 49.19522, "lng": 16.60796, "text": [1064, 1090, 1092, 1094, 1096, 3300, 4453, 6308, 6417, 11259], "collection": []}}, {"model": "entities.place", "pk": 384, "fields": {"kind": 9, "lat": 49.19627, "lng": 13.50926, "text": [173, 8727, 11284], "collection": []}}, {"model": "entities.place", "pk": 400, "fields": {"kind": 12, "lat": 47.49801, "lng": 19.03991, "text": [181, 11223], "collection": []}}, {"model": "entities.place", "pk": 831, "fields": {"kind": 12, "lat": 44.43225, "lng": 26.10626, "text": [11242, 11243], "collection": []}}, {"model": "entities.place", "pk": 926, "fields": {"kind": 5, "lat": 48.00543, "lng": 16.23264, "text": [11313, 11314], "collection": []}}, {"model": "entities.place", "pk": 1390, "fields": {"kind": 12, "lat": 52.52437, "lng": 13.41053, "text": [11226, 11227], "collection": []}}, {"model": "entities.place", "pk": 1424, "fields": {"kind": 13, "lat": 50.76711, "lng": 15.05619, "text": [654, 5083, 5085, 6119, 6324, 6372, 7681, 7683, 7776, 8211, 11258], "collection": []}}, {"model": "entities.place", "pk": 1454, "fields": {"kind": 5, "lat": 47.38478, "lng": 9.90139, "text": [11337, 11338], "collection": []}}, {"model": "entities.place", "pk": 1701, "fields": {"kind": 9, "lat": 46.69111, "lng": 13.97111, "text": [784, 11271], "collection": []}}, {"model": "entities.place", "pk": 1718, "fields": {"kind": 5, "lat": 49.13995, "lng": 9.22054, "text": [11269, 11270], "collection": []}}, {"model": "entities.place", "pk": 2006, "fields": {"kind": 13, "lat": 47.75, "lng": 26.66667, "text": [928, 11251], "collection": []}}, {"model": "entities.place", "pk": 2072, "fields": {"kind": 12, "lat": 48.14816, "lng": 17.10674, "text": [962, 964, 7171, 7173, 11220], "collection": []}}, {"model": "entities.place", "pk": 2085, "fields": {"kind": 9, "lat": 50.58566, "lng": 16.33181, "text": [969, 971, 11272], "collection": []}}, {"model": "entities.place", "pk": 2161, "fields": {"kind": 13, "lat": 51.1, "lng": 17.03333, "text": [1011, 1013, 10485, 11199], "collection": []}}, {"model": "entities.place", "pk": 2170, "fields": {"kind": 5, "lat": 46.71503, "lng": 11.65598, "text": [1017, 1054, 1056, 11279], "collection": []}}, {"model": "entities.place", "pk": 2197, "fields": {"kind": 13, "lat": 50.20923, "lng": 15.83277, "text": [1029, 4052, 4438, 6016, 11204], "collection": []}}, {"model": "entities.place", "pk": 2281, "fields": {"kind": 11, "lat": 50.08791, "lng": 25.15027, "text": [11244, 11245], "collection": []}}, {"model": "entities.place", "pk": 2489, "fields": {"kind": 12, "lat": -34.61315, "lng": -58.37723, "text": [11256, 11257], "collection": []}}, {"model": "entities.place", "pk": 2602, "fields": {"kind": 5, "lat": 46.41326, "lng": 11.24616, "text": [1236, 3663, 3665, 9705, 11252], "collection": []}}, {"model": "entities.place", "pk": 2854, "fields": {"kind": 13, "lat": 48.29149, "lng": 25.94034, "text": [7828, 11224], "collection": []}}, {"model": "entities.place", "pk": 3105, "fields": {"kind": 5, "lat": 49.75133, "lng": 18.63213, "text": [1467, 9235, 9239, 11260], "collection": []}}, {"model": "entities.place", "pk": 3162, "fields": {"kind": 13, "lat": 46.76667, "lng": 23.6, "text": [3930, 3932, 11330], "collection": []}}, {"model": "entities.place", "pk": 4096, "fields": {"kind": 5, "lat": 50.80434, "lng": 6.49299, "text": [11299, 11300], "collection": []}}, {"model": "entities.place", "pk": 4269, "fields": {"kind": 9, "lat": 50.4406, "lng": 13.45738, "text": [2030, 11231], "collection": []}}, {"model": "entities.place", "pk": 4767, "fields": {"kind": 13, "lat": 47.06667, "lng": 15.45, "text": [11210, 11211], "collection": []}}, {"model": "entities.place", "pk": 4877, "fields": {"kind": 9, "lat": 48.51103, "lng": 14.50453, "text": [11319, 11320], "collection": []}}, {"model": "entities.place", "pk": 5294, "fields": {"kind": 11, "lat": 45.9, "lng": 25.85, "text": [2492, 11246], "collection": []}}, {"model": "entities.place", "pk": 5308, "fields": {"kind": 10, "lat": 51.08317, "lng": 7.53087, "text": [11289, 11290], "collection": []}}, {"model": "entities.place", "pk": 5478, "fields": {"kind": 11, "lat": 45.94088, "lng": 13.62167, "text": [2571, 2603, 2605, 11303], "collection": []}}, {"model": "entities.place", "pk": 5691, "fields": {"kind": 5, "lat": 46.66817, "lng": 11.15953, "text": [2675, 5101, 5344, 5346, 5348, 5350, 5352, 5353, 6350, 6352, 9735, 11326], "collection": []}}, {"model": "entities.place", "pk": 5749, "fields": {"kind": 11, "lat": 48.23333, "lng": 13.83333, "text": [11229, 11230], "collection": []}}, {"model": "entities.place", "pk": 6004, "fields": {"kind": 9, "lat": 50.03197, "lng": 17.04058, "text": [2825, 2827, 11294], "collection": []}}, {"model": "entities.place", "pk": 6324, "fields": {"kind": 13, "lat": 52.37052, "lng": 9.73322, "text": [11221, 11222], "collection": []}}, {"model": "entities.place", "pk": 6700, "fields": {"kind": 13, "lat": 47.26266, "lng": 11.39454, "text": [11235, 11236], "collection": []}}, {"model": "entities.place", "pk": 6947, "fields": {"kind": 9, "lat": 46.61472, "lng": 16.08583, "text": [3253, 3255, 11278], "collection": []}}, {"model": "entities.place", "pk": 7454, "fields": {"kind": 11, "lat": 50.20528, "lng": 19.27498, "text": [3504, 11336], "collection": []}}, {"model": "entities.place", "pk": 7622, "fields": {"kind": 5, "lat": 47.3765, "lng": 15.09144, "text": [11249, 11250], "collection": []}}, {"model": "entities.place", "pk": 7986, "fields": {"kind": 11, "lat": 51.31667, "lng": 9.5, "text": [11218, 11219], "collection": []}}, {"model": "entities.place", "pk": 8482, "fields": {"kind": 5, "lat": 48.30521, "lng": 16.32522, "text": [11322, 11323], "collection": []}}, {"model": "entities.place", "pk": 8798, "fields": {"kind": 5, "lat": 47.66033, "lng": 9.17582, "text": [11301, 11302], "collection": []}}, {"model": "entities.place", "pk": 9287, "fields": {"kind": 5, "lat": 47.58333, "lng": 12.16667, "text": [11324, 11325], "collection": []}}, {"model": "entities.place", "pk": 9455, "fields": {"kind": 9, "lat": 50.08364, "lng": 13.03925, "text": [4512, 11288], "collection": []}}, {"model": "entities.place", "pk": 9475, "fields": {"kind": 12, "lat": 46.05108, "lng": 14.50513, "text": [4522, 11331], "collection": []}}, {"model": "entities.place", "pk": 9735, "fields": {"kind": 13, "lat": 49.83826, "lng": 24.02324, "text": [4642, 4644, 5041, 5043, 5045, 10711, 11263], "collection": []}}, {"model": "entities.place", "pk": 10015, "fields": {"kind": 13, "lat": 48.30639, "lng": 14.28611, "text": [11195, 11196], "collection": []}}, {"model": "entities.place", "pk": 10265, "fields": {"kind": 12, "lat": 51.50853, "lng": -0.12574, "text": [11239, 11240], "collection": []}}, {"model": "entities.place", "pk": 10793, "fields": {"kind": 13, "lat": 46.55472, "lng": 15.64667, "text": [5193, 5219, 5221, 5223, 11266], "collection": []}}, {"model": "entities.place", "pk": 11238, "fields": {"kind": 9, "lat": 49.75565, "lng": 12.997, "text": [5409, 11234], "collection": []}}, {"model": "entities.place", "pk": 11556, "fields": {"kind": 9, "lat": 50.72063, "lng": 13.65723, "text": [5576, 11308], "collection": []}}, {"model": "entities.place", "pk": 11799, "fields": {"kind": 13, "lat": 48.13743, "lng": 11.57549, "text": [11197, 11198], "collection": []}}, {"model": "entities.place", "pk": 12211, "fields": {"kind": 11, "lat": 50.47379, "lng": 17.33437, "text": [5900, 11321], "collection": []}}, {"model": "entities.place", "pk": 12758, "fields": {"kind": 11, "lat": 43.70313, "lng": 7.26608, "text": [6173, 11205], "collection": []}}, {"model": "entities.place", "pk": 13253, "fields": {"kind": 9, "lat": 47.68501, "lng": 16.59049, "text": [6431, 11344], "collection": []}}, {"model": "entities.place", "pk": 13382, "fields": {"kind": 13, "lat": 49.59552, "lng": 17.25175, "text": [6491, 6493, 6495, 6497, 11228], "collection": []}}, {"model": "entities.place", "pk": 13714, "fields": {"kind": 12, "lat": 48.85341, "lng": 2.3488, "text": [11291, 11292], "collection": []}}, {"model": "entities.place", "pk": 13987, "fields": {"kind": 10, "lat": 47.91232, "lng": 12.81512, "text": [11280, 11281], "collection": []}}, {"model": "entities.place", "pk": 14608, "fields": {"kind": 12, "lat": 50.08804, "lng": 14.42076, "text": [7122, 7124, 7126, 7128, 7130, 11200], "collection": []}}, {"model": "entities.place", "pk": 16242, "fields": {"kind": 9, "lat": 48.25216, "lng": 17.21539, "text": [7951, 11214], "collection": []}}, {"model": "entities.place", "pk": 16310, "fields": {"kind": 5, "lat": 46.586, "lng": 11.08571, "text": [7994, 11327], "collection": []}}, {"model": "entities.place", "pk": 16594, "fields": {"kind": 9, "lat": 49.96122, "lng": 16.76576, "text": [8138, 11293], "collection": []}}, {"model": "entities.place", "pk": 16864, "fields": {"kind": 5, "lat": 46.75833, "lng": 15.20833, "text": [11286, 11287], "collection": []}}, {"model": "entities.place", "pk": 18374, "fields": {"kind": 9, "lat": 50.2421, "lng": 19.30725, "text": [9008, 11241], "collection": []}}, {"model": "entities.place", "pk": 18400, "fields": {"kind": 13, "lat": 46.253, "lng": 20.14824, "text": [9021, 11351], "collection": []}}, {"model": "entities.place", "pk": 19215, "fields": {"kind": 13, "lat": 46.06787, "lng": 11.12108, "text": [9433, 9434, 9461, 9463, 11348], "collection": []}}, {"model": "entities.place", "pk": 19599, "fields": {"kind": 9, "lat": 48.20735, "lng": 18.06581, "text": [9646, 11285], "collection": []}}, {"model": "entities.place", "pk": 20549, "fields": {"kind": 12, "lat": 52.22977, "lng": 21.01178, "text": [10129, 10131, 10133, 10135, 10138, 11345], "collection": []}}, {"model": "entities.place", "pk": 20659, "fields": {"kind": 5, "lat": 44.8975, "lng": 21.41722, "text": [10186, 11255], "collection": []}}, {"model": "entities.place", "pk": 20872, "fields": {"kind": 5, "lat": 47.11547, "lng": 13.13467, "text": [10300, 11339], "collection": []}}, {"model": "entities.place", "pk": 20988, "fields": {"kind": 9, "lat": 51.02308, "lng": -0.50604, "text": [11304, 11305], "collection": []}}, {"model": "entities.place", "pk": 21818, "fields": {"kind": 9, "lat": 49.75594, "lng": 16.46829, "text": [10788, 11215], "collection": []}}, {"model": "entities.place", "pk": 22216, "fields": {"kind": 9, "lat": 49.01898, "lng": 15.56994, "text": [11206, 11207], "collection": []}}, {"model": "entities.place", "pk": 22259, "fields": {"kind": 9, "lat": 46.83333, "lng": 12.85, "text": [11261, 11262], "collection": []}}, {"model": "entities.place", "pk": 22322, "fields": {"kind": 9, "lat": 47.97234, "lng": 14.26472, "text": [11237, 11238], "collection": []}}, {"model": "entities.place", "pk": 22354, "fields": {"kind": 11, "lat": 47.34999, "lng": 7.90329, "text": [11253, 11254], "collection": []}}, {"model": "entities.place", "pk": 22475, "fields": {"kind": 5, "lat": 49.8414, "lng": 7.86713, "text": [11311, 11312], "collection": []}}, {"model": "entities.place", "pk": 22494, "fields": {"kind": 9, "lat": 48.47121, "lng": 14.54023, "text": [11317, 11318], "collection": []}}, {"model": "entities.place", "pk": 22526, "fields": {"kind": 13, "lat": 46.80237, "lng": 7.15128, "text": [11334, 11335], "collection": []}}, {"model": "entities.place", "pk": 22545, "fields": {"kind": 11, "lat": 45.37333, "lng": 21.70917, "text": [11342, 11343], "collection": []}}, {"model": "entities.place", "pk": 22558, "fields": {"kind": 9, "lat": 49.46656, "lng": 19.9825, "text": [11346, 11347], "collection": []}}, {"model": "entities.place", "pk": 22570, "fields": {"kind": 5, "lat": 46.07867, "lng": 10.99735, "text": [11349, 11350], "collection": []}}, {"model": "entities.place", "pk": 93025, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93035, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93051, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93060, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93075, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93379, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93397, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93410, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93449, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93562, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93610, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93658, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93715, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93749, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93804, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93855, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93879, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93934, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93937, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24869, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24898, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24899, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24900, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24908, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24909, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24910, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 24911, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25012, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25035, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25059, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25060, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25143, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25186, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25187, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25188, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25189, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25199, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25200, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25212, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25213, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25395, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25396, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25397, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25398, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25401, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25402, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25405, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25412, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25413, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25414, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25415, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25416, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25417, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25418, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25419, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25420, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25421, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25589, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25626, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25627, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25628, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25629, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25630, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25631, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25632, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25633, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25634, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25635, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25767, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25768, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25769, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25770, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25771, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25772, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 25773, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94102, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94103, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94104, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94105, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94120, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94121, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94122, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94123, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94124, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94125, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94126, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94127, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94128, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94129, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94131, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94132, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94133, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94134, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94135, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94136, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94137, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94138, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94139, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94140, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94141, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94247, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94248, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94249, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94250, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94251, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94307, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94308, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94309, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94310, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94311, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94312, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94313, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94314, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94315, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94323, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94324, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94351, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94352, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94353, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94354, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94355, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94356, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94357, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94358, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94359, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94360, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94361, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94362, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94433, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94434, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94435, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94436, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94437, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94438, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94439, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94440, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94441, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94442, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94822, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94823, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94824, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94825, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94826, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94827, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94828, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94829, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94830, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94831, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94885, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94886, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94887, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94888, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94889, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94890, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94891, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94892, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94894, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94895, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94896, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94897, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94898, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94899, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94900, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94901, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94902, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94903, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 94904, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95024, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95025, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95026, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95027, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95028, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95029, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95030, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95043, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95044, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95045, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95046, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95047, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95048, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95049, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95050, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95051, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95052, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95053, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95054, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95123, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95124, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95125, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95126, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95127, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95128, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95129, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95130, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95131, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95156, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95157, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95158, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95159, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95160, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95161, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95162, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95163, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95164, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95397, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95398, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95399, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95400, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95401, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95402, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95403, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95404, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95405, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95406, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95407, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95582, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95583, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95584, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95596, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95597, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95598, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95599, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95600, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95601, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95602, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95603, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95604, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95847, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95848, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95867, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95868, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95869, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95870, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95871, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95872, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95873, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95874, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95875, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95876, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95929, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95930, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95931, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95932, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95949, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95950, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95951, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95952, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95953, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95954, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95955, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95956, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 95957, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96143, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96144, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96145, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96146, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96208, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96209, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96210, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96211, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96221, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96222, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96223, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96224, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96225, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96226, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96458, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96459, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96460, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96461, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96462, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96463, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96464, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96465, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96466, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96467, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96620, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96621, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96622, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96623, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96728, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96729, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96730, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96731, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96732, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96733, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96734, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96735, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96736, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96737, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96738, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96740, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96741, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96742, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96743, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96744, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96745, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96746, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96747, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96748, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96749, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96750, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96758, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96759, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96813, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96814, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96815, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96816, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96817, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96858, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96859, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96860, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96861, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96862, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96863, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96864, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96865, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96947, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96948, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96949, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96950, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96951, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96952, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96953, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96954, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96955, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 96956, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97430, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97529, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97530, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97531, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97532, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97533, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97534, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97578, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97592, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97593, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97617, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97623, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97657, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97707, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97723, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97753, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97790, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97834, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97849, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97884, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97888, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97896, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97933, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97943, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97944, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97945, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97976, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97977, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 97986, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98006, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98024, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98183, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98184, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98185, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98237, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98296, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98297, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98298, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98299, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98300, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98301, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98348, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98551, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98569, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98570, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98579, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98580, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98581, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98582, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98583, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98584, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98585, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98586, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98587, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98588, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98604, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98605, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98606, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98696, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98697, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98714, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98722, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98723, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98724, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98725, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98726, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98727, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98728, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98729, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98730, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98731, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98732, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98733, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98734, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98735, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98736, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98737, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98886, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98891, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98892, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98893, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98922, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98923, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98924, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98925, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98980, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98990, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98991, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98992, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98993, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98994, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98995, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98996, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98997, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98998, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 98999, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99000, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99001, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99002, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99003, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99004, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99005, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99006, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99007, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99008, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99009, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99075, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99092, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99093, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99094, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99095, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99096, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99097, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99098, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99099, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99100, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99101, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99102, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99103, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99104, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99105, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99106, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99107, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99108, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99109, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99110, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99156, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99336, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99337, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99352, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99353, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99354, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99355, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99356, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99357, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99358, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99369, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99370, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99371, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99372, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99373, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99374, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99375, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99376, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99377, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99378, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99416, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99417, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99418, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99419, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99420, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99421, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99422, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99423, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99744, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99841, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99842, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99843, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99844, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99845, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99846, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99847, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99848, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99849, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "entities.work", "pk": 99850, "fields": {"kind": 429, "text": [], "collection": []}}, {"model": "vocabularies.vocabnames", "pk": 1, "fields": {"name": "ProfessionType"}}, {"model": "vocabularies.vocabnames", "pk": 2, "fields": {"name": "PersonPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 5, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 6, "fields": {"name": "PersonPersonRelation"}}, {"model": "vocabularies.vocabnames", "pk": 7, "fields": {"name": "TextType"}}, {"model": "vocabularies.vocabnames", "pk": 8, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 9, "fields": {"name": "InstitutionType"}}, {"model": "vocabularies.vocabnames", "pk": 10, "fields": {"name": "PlaceType"}}, {"model": "vocabularies.vocabnames", "pk": 11, "fields": {"name": "CollectionType"}}, {"model": "relations.personperson", "pk": 92840, "fields": {"relation_type": 5608, "related_persona": 92412, "related_personb": 92603, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92930, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88902, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92931, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 27245, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92932, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88219, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92933, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 62757, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92934, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 56248, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92935, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 46414, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46415, "fields": {"relation_type": 595, "related_person": 46414, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46416, "fields": {"relation_type": 596, "related_person": 46414, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 56249, "fields": {"relation_type": 595, "related_person": 56248, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 88904, "fields": {"relation_type": 596, "related_person": 88902, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92415, "fields": {"relation_type": 595, "related_person": 92412, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92604, "fields": {"relation_type": 595, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92605, "fields": {"relation_type": 596, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93004, "fields": {"relation_type": 595, "related_person": 93003, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93005, "fields": {"relation_type": 596, "related_person": 93003, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93010, "fields": {"relation_type": 595, "related_person": 93009, "related_place": 18374, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93011, "fields": {"relation_type": 596, "related_person": 93009, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93013, "fields": {"relation_type": 595, "related_person": 93012, "related_place": 5294, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93014, "fields": {"relation_type": 596, "related_person": 93012, "related_place": 2489, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93016, "fields": {"relation_type": 595, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93017, "fields": {"relation_type": 596, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93019, "fields": {"relation_type": 595, "related_person": 93018, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93020, "fields": {"relation_type": 596, "related_person": 93018, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93022, "fields": {"relation_type": 595, "related_person": 93021, "related_place": 16242, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93023, "fields": {"relation_type": 596, "related_person": 93021, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93026, "fields": {"relation_type": 595, "related_person": 93024, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93027, "fields": {"relation_type": 596, "related_person": 93024, "related_place": 93025, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93029, "fields": {"relation_type": 595, "related_person": 93028, "related_place": 7986, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93030, "fields": {"relation_type": 596, "related_person": 93028, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93032, "fields": {"relation_type": 595, "related_person": 93031, "related_place": 6324, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93033, "fields": {"relation_type": 596, "related_person": 93031, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93036, "fields": {"relation_type": 595, "related_person": 93034, "related_place": 93035, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93037, "fields": {"relation_type": 596, "related_person": 93034, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93045, "fields": {"relation_type": 595, "related_person": 93044, "related_place": 2161, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93046, "fields": {"relation_type": 596, "related_person": 93044, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93048, "fields": {"relation_type": 595, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93049, "fields": {"relation_type": 596, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93054, "fields": {"relation_type": 595, "related_person": 93050, "related_place": 93051, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93055, "fields": {"relation_type": 596, "related_person": 93050, "related_place": 2197, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93057, "fields": {"relation_type": 595, "related_person": 93056, "related_place": 22216, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93058, "fields": {"relation_type": 596, "related_person": 93056, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93063, "fields": {"relation_type": 595, "related_person": 93059, "related_place": 93060, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93064, "fields": {"relation_type": 596, "related_person": 93059, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93066, "fields": {"relation_type": 595, "related_person": 93065, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93067, "fields": {"relation_type": 596, "related_person": 93065, "related_place": 1701, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93069, "fields": {"relation_type": 595, "related_person": 93068, "related_place": 1718, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93070, "fields": {"relation_type": 596, "related_person": 93068, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93072, "fields": {"relation_type": 595, "related_person": 93071, "related_place": 22259, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93073, "fields": {"relation_type": 596, "related_person": 93071, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93078, "fields": {"relation_type": 595, "related_person": 93074, "related_place": 93075, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93079, "fields": {"relation_type": 596, "related_person": 93074, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93137, "fields": {"relation_type": 595, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93138, "fields": {"relation_type": 596, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93329, "fields": {"relation_type": 595, "related_person": 93328, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93330, "fields": {"relation_type": 596, "related_person": 93328, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93338, "fields": {"relation_type": 595, "related_person": 93337, "related_place": 4269, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93339, "fields": {"relation_type": 596, "related_person": 93337, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93353, "fields": {"relation_type": 595, "related_person": 93352, "related_place": 5749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93354, "fields": {"relation_type": 596, "related_person": 93352, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93367, "fields": {"relation_type": 595, "related_person": 93366, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93368, "fields": {"relation_type": 596, "related_person": 93366, "related_place": 26, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93370, "fields": {"relation_type": 595, "related_person": 93369, "related_place": 13382, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93371, "fields": {"relation_type": 596, "related_person": 93369, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93382, "fields": {"relation_type": 595, "related_person": 93378, "related_place": 93379, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93383, "fields": {"relation_type": 596, "related_person": 93378, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93388, "fields": {"relation_type": 595, "related_person": 93387, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93389, "fields": {"relation_type": 596, "related_person": 93387, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93394, "fields": {"relation_type": 595, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93395, "fields": {"relation_type": 596, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93398, "fields": {"relation_type": 595, "related_person": 93396, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93399, "fields": {"relation_type": 596, "related_person": 93396, "related_place": 93397, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93401, "fields": {"relation_type": 595, "related_person": 93400, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93402, "fields": {"relation_type": 596, "related_person": 93400, "related_place": 12758, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93413, "fields": {"relation_type": 595, "related_person": 93409, "related_place": 93410, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93414, "fields": {"relation_type": 596, "related_person": 93409, "related_place": 133, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93416, "fields": {"relation_type": 595, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93417, "fields": {"relation_type": 596, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93419, "fields": {"relation_type": 595, "related_person": 93418, "related_place": 22354, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93420, "fields": {"relation_type": 596, "related_person": 93418, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93443, "fields": {"relation_type": 595, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93444, "fields": {"relation_type": 596, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93446, "fields": {"relation_type": 595, "related_person": 93445, "related_place": 2006, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93447, "fields": {"relation_type": 596, "related_person": 93445, "related_place": 7622, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93452, "fields": {"relation_type": 595, "related_person": 93448, "related_place": 93449, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93453, "fields": {"relation_type": 596, "related_person": 93448, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93470, "fields": {"relation_type": 595, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93471, "fields": {"relation_type": 596, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93482, "fields": {"relation_type": 595, "related_person": 93481, "related_place": 2281, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93483, "fields": {"relation_type": 596, "related_person": 93481, "related_place": 831, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93485, "fields": {"relation_type": 595, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93486, "fields": {"relation_type": 596, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93488, "fields": {"relation_type": 595, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93489, "fields": {"relation_type": 596, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93511, "fields": {"relation_type": 595, "related_person": 93510, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93512, "fields": {"relation_type": 596, "related_person": 93510, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93514, "fields": {"relation_type": 595, "related_person": 93513, "related_place": 22322, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93515, "fields": {"relation_type": 596, "related_person": 93513, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93517, "fields": {"relation_type": 595, "related_person": 93516, "related_place": 20659, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93518, "fields": {"relation_type": 596, "related_person": 93516, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93541, "fields": {"relation_type": 595, "related_person": 93540, "related_place": 1424, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93542, "fields": {"relation_type": 596, "related_person": 93540, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93547, "fields": {"relation_type": 595, "related_person": 93546, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93548, "fields": {"relation_type": 596, "related_person": 93546, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93565, "fields": {"relation_type": 595, "related_person": 93561, "related_place": 93562, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93566, "fields": {"relation_type": 596, "related_person": 93561, "related_place": 10793, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93574, "fields": {"relation_type": 595, "related_person": 93573, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93575, "fields": {"relation_type": 596, "related_person": 93573, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93589, "fields": {"relation_type": 595, "related_person": 93588, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93590, "fields": {"relation_type": 596, "related_person": 93588, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93601, "fields": {"relation_type": 595, "related_person": 93600, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93602, "fields": {"relation_type": 596, "related_person": 93600, "related_place": 3105, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93613, "fields": {"relation_type": 595, "related_person": 93609, "related_place": 13987, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93614, "fields": {"relation_type": 596, "related_person": 93609, "related_place": 93610, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93616, "fields": {"relation_type": 595, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93617, "fields": {"relation_type": 596, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93640, "fields": {"relation_type": 595, "related_person": 93639, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93641, "fields": {"relation_type": 596, "related_person": 93639, "related_place": 2170, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93643, "fields": {"relation_type": 595, "related_person": 93642, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93644, "fields": {"relation_type": 596, "related_person": 93642, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93646, "fields": {"relation_type": 595, "related_person": 93645, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93647, "fields": {"relation_type": 596, "related_person": 93645, "related_place": 6947, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93652, "fields": {"relation_type": 595, "related_person": 93651, "related_place": 21818, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93653, "fields": {"relation_type": 596, "related_person": 93651, "related_place": 2854, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93655, "fields": {"relation_type": 595, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93656, "fields": {"relation_type": 596, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93661, "fields": {"relation_type": 595, "related_person": 93657, "related_place": 93658, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93662, "fields": {"relation_type": 596, "related_person": 93657, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93664, "fields": {"relation_type": 595, "related_person": 93663, "related_place": 22545, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93665, "fields": {"relation_type": 596, "related_person": 93663, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93679, "fields": {"relation_type": 595, "related_person": 93678, "related_place": 1454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93680, "fields": {"relation_type": 596, "related_person": 93678, "related_place": 20872, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93685, "fields": {"relation_type": 595, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93686, "fields": {"relation_type": 596, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93703, "fields": {"relation_type": 595, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93704, "fields": {"relation_type": 596, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93706, "fields": {"relation_type": 595, "related_person": 93705, "related_place": 7454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93707, "fields": {"relation_type": 596, "related_person": 93705, "related_place": 22526, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93718, "fields": {"relation_type": 595, "related_person": 93714, "related_place": 93715, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93719, "fields": {"relation_type": 596, "related_person": 93714, "related_place": 9475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93752, "fields": {"relation_type": 595, "related_person": 93748, "related_place": 93749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93753, "fields": {"relation_type": 596, "related_person": 93748, "related_place": 3162, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93780, "fields": {"relation_type": 595, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93781, "fields": {"relation_type": 596, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93786, "fields": {"relation_type": 595, "related_person": 93785, "related_place": 16310, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93787, "fields": {"relation_type": 596, "related_person": 93785, "related_place": 5691, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93792, "fields": {"relation_type": 595, "related_person": 93791, "related_place": 9287, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93793, "fields": {"relation_type": 596, "related_person": 93791, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93801, "fields": {"relation_type": 595, "related_person": 93800, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93802, "fields": {"relation_type": 596, "related_person": 93800, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93807, "fields": {"relation_type": 595, "related_person": 93803, "related_place": 93804, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93808, "fields": {"relation_type": 596, "related_person": 93803, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93810, "fields": {"relation_type": 595, "related_person": 93809, "related_place": 22494, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93811, "fields": {"relation_type": 596, "related_person": 93809, "related_place": 4877, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93816, "fields": {"relation_type": 595, "related_person": 93815, "related_place": 12211, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93817, "fields": {"relation_type": 596, "related_person": 93815, "related_place": 8482, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93819, "fields": {"relation_type": 595, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93820, "fields": {"relation_type": 596, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93837, "fields": {"relation_type": 595, "related_person": 93836, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93838, "fields": {"relation_type": 596, "related_person": 93836, "related_place": 22475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93840, "fields": {"relation_type": 595, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93841, "fields": {"relation_type": 596, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93858, "fields": {"relation_type": 595, "related_person": 93854, "related_place": 93855, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93859, "fields": {"relation_type": 596, "related_person": 93854, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93864, "fields": {"relation_type": 595, "related_person": 93863, "related_place": 11556, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93865, "fields": {"relation_type": 596, "related_person": 93863, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93867, "fields": {"relation_type": 595, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93868, "fields": {"relation_type": 596, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93880, "fields": {"relation_type": 595, "related_person": 93878, "related_place": 93879, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93881, "fields": {"relation_type": 596, "related_person": 93878, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93892, "fields": {"relation_type": 595, "related_person": 93891, "related_place": 8798, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93893, "fields": {"relation_type": 596, "related_person": 93891, "related_place": 5478, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93895, "fields": {"relation_type": 595, "related_person": 93894, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93896, "fields": {"relation_type": 596, "related_person": 93894, "related_place": 20988, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93901, "fields": {"relation_type": 595, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93902, "fields": {"relation_type": 596, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93904, "fields": {"relation_type": 595, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93905, "fields": {"relation_type": 596, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93910, "fields": {"relation_type": 595, "related_person": 93909, "related_place": 4096, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93911, "fields": {"relation_type": 596, "related_person": 93909, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93922, "fields": {"relation_type": 595, "related_person": 93921, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93923, "fields": {"relation_type": 596, "related_person": 93921, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93938, "fields": {"relation_type": 595, "related_person": 93933, "related_place": 93934, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93939, "fields": {"relation_type": 596, "related_person": 93933, "related_place": 93937, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93941, "fields": {"relation_type": 595, "related_person": 93940, "related_place": 16594, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93942, "fields": {"relation_type": 596, "related_person": 93940, "related_place": 6004, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93947, "fields": {"relation_type": 595, "related_person": 93946, "related_place": 5308, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93948, "fields": {"relation_type": 596, "related_person": 93946, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93956, "fields": {"relation_type": 595, "related_person": 93955, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93957, "fields": {"relation_type": 596, "related_person": 93955, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93959, "fields": {"relation_type": 595, "related_person": 93958, "related_place": 9455, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93960, "fields": {"relation_type": 596, "related_person": 93958, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93962, "fields": {"relation_type": 595, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93963, "fields": {"relation_type": 596, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93965, "fields": {"relation_type": 595, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93966, "fields": {"relation_type": 596, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93968, "fields": {"relation_type": 595, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93969, "fields": {"relation_type": 596, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93971, "fields": {"relation_type": 595, "related_person": 93970, "related_place": 19599, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93972, "fields": {"relation_type": 596, "related_person": 93970, "related_place": 16864, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93989, "fields": {"relation_type": 595, "related_person": 93988, "related_place": 18400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93990, "fields": {"relation_type": 596, "related_person": 93988, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93992, "fields": {"relation_type": 595, "related_person": 93991, "related_place": 19215, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93993, "fields": {"relation_type": 596, "related_person": 93991, "related_place": 22570, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94004, "fields": {"relation_type": 595, "related_person": 94003, "related_place": 13253, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94005, "fields": {"relation_type": 596, "related_person": 94003, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94007, "fields": {"relation_type": 595, "related_person": 94006, "related_place": 22558, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94008, "fields": {"relation_type": 596, "related_person": 94006, "related_place": 20549, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94010, "fields": {"relation_type": 595, "related_person": 94009, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94011, "fields": {"relation_type": 596, "related_person": 94009, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94019, "fields": {"relation_type": 595, "related_person": 94018, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94020, "fields": {"relation_type": 596, "related_person": 94018, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 98116, "fields": {"relation_type": 595, "related_person": null, "related_place": null, "text": [], "collection": []}}, {"model": "relations.personinstitution", "pk": 99591, "fields": {"relation_type": null, "related_person": null, "related_institution": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 26, "fields": {"name": "Opatija", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [12, 14, 11225], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 133, "fields": {"name": "Zagreb", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [59, 11275], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 183, "fields": {"name": "Wien", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [8304, 11203], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 327, "fields": {"name": "Br\u00fcnn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1064, 1090, 1092, 1094, 1096, 3300, 4453, 6308, 6417, 11259], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 384, "fields": {"name": "Dlouh\u00e1 Ves", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [173, 8727, 11284], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 400, "fields": {"name": "Budapest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [181, 11223], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 831, "fields": {"name": "Bukarest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11242, 11243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 926, "fields": {"name": "Baden", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11313, 11314], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1390, "fields": {"name": "Berlin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11226, 11227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1424, "fields": {"name": "Liberec", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [654, 5083, 5085, 6119, 6324, 6372, 7681, 7683, 7776, 8211, 11258], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1454, "fields": {"name": "Bezau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11337, 11338], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1701, "fields": {"name": "Bodensdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [784, 11271], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1718, "fields": {"name": "Heilbronn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11269, 11270], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2006, "fields": {"name": "Boto\u015fani", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [928, 11251], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2072, "fields": {"name": "Pressburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [962, 964, 7171, 7173, 11220], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2085, "fields": {"name": "Braunau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [969, 971, 11272], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2161, "fields": {"name": "Breslau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1011, 1013, 10485, 11199], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2170, "fields": {"name": "Brixen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1017, 1054, 1056, 11279], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2197, "fields": {"name": "K\u00f6niggr\u00e4tz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1029, 4052, 4438, 6016, 11204], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2281, "fields": {"name": "Brody", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11244, 11245], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2489, "fields": {"name": "Buenos Aires", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11256, 11257], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2602, "fields": {"name": "Kaltern an der Weinstrasse", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1236, 3663, 3665, 9705, 11252], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2854, "fields": {"name": "Tschernowitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7828, 11224], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3105, "fields": {"name": "Teschen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [1467, 9235, 9239, 11260], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3162, "fields": {"name": "Klausenburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3930, 3932, 11330], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4096, "fields": {"name": "D\u00fcren", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11299, 11300], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4269, "fields": {"name": "\u00dadlice", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2030, 11231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4767, "fields": {"name": "Graz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11210, 11211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4877, "fields": {"name": "Freistadt", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11319, 11320], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5294, "fields": {"name": "Ghidfal\u0103u", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2492, 11246], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5308, "fields": {"name": "Marienheide", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11289, 11290], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5478, "fields": {"name": "G\u00f6rz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2571, 2603, 2605, 11303], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5691, "fields": {"name": "Meran", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2675, 5101, 5344, 5346, 5348, 5350, 5352, 5353, 6350, 6352, 9735, 11326], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5749, "fields": {"name": "Grieskirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11229, 11230], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6004, "fields": {"name": "Grossullersdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [2825, 2827, 11294], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6324, "fields": {"name": "Hannover", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11221, 11222], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6700, "fields": {"name": "Innsbruck", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11235, 11236], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6947, "fields": {"name": "Hrastje-Mota", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3253, 3255, 11278], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7454, "fields": {"name": "Jaworzno", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [3504, 11336], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7622, "fields": {"name": "Leoben", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11249, 11250], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7986, "fields": {"name": "Cassel", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11218, 11219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8482, "fields": {"name": "Klosterneuburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11322, 11323], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8798, "fields": {"name": "Konstanz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11301, 11302], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9287, "fields": {"name": "Kufstein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11324, 11325], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9455, "fields": {"name": "Lachovice", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4512, 11288], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9475, "fields": {"name": "Ljubljana", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4522, 11331], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9735, "fields": {"name": "Lemberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [4642, 4644, 5041, 5043, 5045, 10711, 11263], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10015, "fields": {"name": "Linz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11195, 11196], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10265, "fields": {"name": "London", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11239, 11240], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10793, "fields": {"name": "Marburg an der Drau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5193, 5219, 5221, 5223, 11266], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11238, "fields": {"name": "Mies", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5409, 11234], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11556, "fields": {"name": "Moldava", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5576, 11308], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11799, "fields": {"name": "M\u00fcnchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11197, 11198], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12211, "fields": {"name": "Nysa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [5900, 11321], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12758, "fields": {"name": "Nizza", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6173, 11205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13253, "fields": {"name": "Sopron", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6431, 11344], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13382, "fields": {"name": "Olm\u00fctz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [6491, 6493, 6495, 6497, 11228], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13714, "fields": {"name": "Paris", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11291, 11292], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13987, "fields": {"name": "Petting", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11280, 11281], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 14608, "fields": {"name": "Prag", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7122, 7124, 7126, 7128, 7130, 11200], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16242, "fields": {"name": "Sv\u00e4t\u00fd Jur", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7951, 11214], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16310, "fields": {"name": "Sankt Pankraz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [7994, 11327], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16594, "fields": {"name": "\u0160t\u00edty", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [8138, 11293], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16864, "fields": {"name": "Schwanberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11286, 11287], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18374, "fields": {"name": "Szczakowa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9008, 11241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18400, "fields": {"name": "Szegedin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9021, 11351], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19215, "fields": {"name": "Trient", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9433, 9434, 9461, 9463, 11348], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19599, "fields": {"name": "Mojm\u00edrovce", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [9646, 11285], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20549, "fields": {"name": "Warschau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10129, 10131, 10133, 10135, 10138, 11345], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20659, "fields": {"name": "Wei\u00dfkirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10186, 11255], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20872, "fields": {"name": "Bad Gastein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10300, 11339], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20988, "fields": {"name": "Wisborough Green", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11304, 11305], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 21818, "fields": {"name": "Zwittau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [10788, 11215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22216, "fields": {"name": "Jamnitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11206, 11207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22259, "fields": {"name": "Stronach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11261, 11262], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22322, "fields": {"name": "Gr\u00fcnburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11237, 11238], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22354, "fields": {"name": "Olten", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11253, 11254], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22475, "fields": {"name": "Bad Kreuznach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11311, 11312], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22494, "fields": {"name": "Lasberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11317, 11318], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22526, "fields": {"name": "Freiburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11334, 11335], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22545, "fields": {"name": "Boc\u015fa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11342, 11343], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22558, "fields": {"name": "Lud\u017amierz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11346, 11347], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22570, "fields": {"name": "Vezzano", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11349, 11350], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24156, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24696, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24697, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24698, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24699, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24835, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24860, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24869, "fields": {"name": "Kainz, Joseph: Der junge Kainz. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24898, "fields": {"name": "Neubauer, Carl T.: Anleitung zur qualitativen und quantitativen Analyse des Harns zum Geb*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24899, "fields": {"name": "Huppert, Hugo: Anleitung zur qualitativen und quantitativen Analyse des Harns zum Gebrauc*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24900, "fields": {"name": "Zoochemie. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24908, "fields": {"name": "Otto Heubners Lebenschronik. - 1927.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24909, "fields": {"name": "Die Luntische Erkrankung der Hirnarterien. - 1874.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24910, "fields": {"name": "Gaffky, Georg T.: U\u0308ber die Gefahren der Serumkrankheit bei der Schutzimpfung ... - 1913.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24911, "fields": {"name": "Die experimentelle Diphterie. - 1883.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25012, "fields": {"name": "Nachlass Eduard von Charlemont. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25035, "fields": {"name": "In memoriam. - 1873", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25059, "fields": {"name": "Lehrbuch der allgemeinen Metaphysik und der Metaphysik ... - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25060, "fields": {"name": "Auszug des Wissenswu\u0308rdigsten aus der Geschichte der Philosophie. - 1836", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25143, "fields": {"name": "Antoni\u0301n Ma\u0301nes", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25186, "fields": {"name": "Rowntree, Benjamin S.: Poverty. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25187, "fields": {"name": "Rowntree, Benjamin S.: Comment diminuer la mise\u0300re. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25188, "fields": {"name": "Rowntree, Benjamin S.: How the labourer lives. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25189, "fields": {"name": "Rowntree, Benjamin S.: The human Needs of labour. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25199, "fields": {"name": "Swerts, Jan: In lauwe MV C XXX werdt ghepubliceert de ordonnantie op het onderhoudt van d*. - [ca. 1870]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25200, "fields": {"name": "Swerts, Jan: De schepene bezoeken een der drie groote schoolen ingerigt VI Decembri MII*. - [ca. 1870]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25212, "fields": {"name": "Kapp, Wolfgang: Die nationalen Kreise und der Reichskanzler. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25213, "fields": {"name": "Kapp, Wolfgang: Die nationalen Kreise und der Reichskanzler. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25395, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef von: Die ku\u0308nstlichen Scha\u0308delverbildungen im Allgemeinen und zwei *. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25396, "fields": {"name": "Lenhosse\u0300k, Jo\u0301zsef von: Das veno\u0308se Convolut der Beckenho\u0308hle beim Manne. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25397, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef: Die Ausgrabungen zu Szeged-O\u0308thalom in Ungarn, namentlich die in de*. - 1884", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25398, "fields": {"name": "Lenhosse\u0301k, Jo\u0301zsef: A Szeged-o\u0308thalmi a\u0301sata\u0301sokro\u0301l, ku\u0308lo\u0308no\u0308sen az felfedezett o\u030bs-magyar*. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25401, "fields": {"name": "Der feinere Bau des Nervensystems im Lichte neuester Forschungen. - 1895", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25402, "fields": {"name": "Das Problem der geschlechtsbestimmenden Ursachen. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25405, "fields": {"name": "Ein @Anfa\u0308ngerstreich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25412, "fields": {"name": "Stein, Lorenz von: Verwaltungslehre und Verwaltungsrecht (Handbuch der Verwaltungslehre)*. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25413, "fields": {"name": "Stein, Lorenz von: Verwaltungslehre und Verwaltungsrecht. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25414, "fields": {"name": "Stein, Lorenz von: Handbuch der Verwaltungslehre und des Verwaltungsrechts mit Vergleic*. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25415, "fields": {"name": "Stein, Lorenz von: Lehrbuch der Volkswirthschaft. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25416, "fields": {"name": "Stein, Lorenz von: System der Statistik, der Populationistik und der Volkswirtschaftsle*. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25417, "fields": {"name": "Stein, Lorenz von: Die staatswissenschaftliche und die landwirthschaftliche Bildung. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25418, "fields": {"name": "Stein, Lorenz von: System der Staatswissenschaft", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25419, "fields": {"name": "Stein, Lorenz von: System der Statistik, der Populationistik und der Volkswirthschaftsl*. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25420, "fields": {"name": "Stein, Lorenz von: La question de Schleswig-Holstein. - 1848", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25421, "fields": {"name": "Stein, Lorenz von: Handbuch der Verwaltungslehre und des Verwaltungsrechts mit Vergleic*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25589, "fields": {"name": "Bilder aus der Ostmark. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25626, "fields": {"name": "Geschichte der Philosophie", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25627, "fields": {"name": "Vorlesungen u\u0308ber Metaphysik mit besonderer Beziehung auf Kant. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25628, "fields": {"name": "Grundzu\u0308ge der Lehre vom Urtheil. - 1876", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25629, "fields": {"name": "Das erste Problem der Ontologie. - 1863", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25630, "fields": {"name": "Die Grundprobleme der Logik. - 1895", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25631, "fields": {"name": "Grundlinien einer Theorie des Bewu\u00dftseins. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25632, "fields": {"name": "U\u0308ber das Scho\u0308ne. - 1887", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25633, "fields": {"name": "Ueber den Utilitarianismus. - 1883", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25634, "fields": {"name": "Allgemeine Logik", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25635, "fields": {"name": "Sinn und Erkenntnis. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25767, "fields": {"name": "La Reine Hortense en Italie, en France et en Angleterre ... - 1831", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25768, "fields": {"name": "Me\u0301moires", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25769, "fields": {"name": "[Romanzen]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25770, "fields": {"name": "Re\u0301cit de mon passage en France en 1831 et des causes qui ... - 1834", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25771, "fields": {"name": "Die Ko\u0308nigin Hortensia in Italien, Frankreich und England ... - 1834", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25772, "fields": {"name": "Napole\u0301on : Lettres de Napoleon a\u0300 Jose\u0301phine pendant la premie\u0300re ... - 1833", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 25773, "fields": {"name": "Campan, Jeanne L.: Correspondance ine\u0301dite de Mme. Campan avec la reine Hortense. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 27245, "fields": {"name": "Thalberg", "review": false, "start_date": "1812-01-08", "end_date": "1871-04-27", "start_date_written": "8.1.1812", "end_date_written": "27.4.1871", "status": "", "source": 531, "references": null, "notes": null, "text": [12155, 12156], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46414, "fields": {"name": "Reicha", "review": false, "start_date": "1770-02-26", "end_date": "1836-05-28", "start_date_written": "26.2.1770", "end_date_written": "28.5.1836", "status": "", "source": 5804, "references": null, "notes": null, "text": [21722, 21723], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56248, "fields": {"name": "Moscheles", "review": false, "start_date": "1794-05-23", "end_date": "1870-03-10", "start_date_written": "23.5.1794", "end_date_written": "10.3.1870", "status": "", "source": 8543, "references": null, "notes": null, "text": [27186, 27187], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56249, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 62757, "fields": {"name": "Liszt", "review": false, "start_date": "1811-10-22", "end_date": "1886-07-31", "start_date_written": "22.10.1811", "end_date_written": "31.7.1886", "status": "", "source": 10332, "references": null, "notes": null, "text": [30762, 30763], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88219, "fields": {"name": "Blahetka", "review": false, "start_date": "1810-11-15", "end_date": "1885-01-01", "start_date_written": "15.11.1810", "end_date_written": "1.1.1885", "status": "", "source": 17415, "references": null, "notes": null, "text": [44908, 44909], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88902, "fields": {"name": "Beethoven", "review": false, "start_date": "1770-12-16", "end_date": "1827-03-26", "start_date_written": "16.12.1770", "end_date_written": "26.3.1827", "status": "", "source": 17608, "references": null, "notes": null, "text": [45290, 45291], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 88904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 91062, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92412, "fields": {"name": "B\u00e4uerle", "review": false, "start_date": "1817-12-11", "end_date": "1896-07-17", "start_date_written": "11.12.1817", "end_date_written": "17.7.1896", "status": "", "source": 17852, "references": null, "notes": null, "text": [47030, 47031], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92603, "fields": {"name": "Czerny", "review": false, "start_date": "1791-02-21", "end_date": "1857-07-15", "start_date_written": "21.2.1791", "end_date_written": "15.7.1857", "status": "", "source": 18525, "references": null, "notes": null, "text": [47126, 47127], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92604, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92605, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92930, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92931, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92932, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92933, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92934, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92935, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93003, "fields": {"name": "Bahr", "review": false, "start_date": "1863-07-19", "end_date": "1934-01-14", "start_date_written": "19.7.1863", "end_date_written": "14.1.1934", "status": "", "source": 102, "references": null, "notes": null, "text": [47200, 47201], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93009, "fields": {"name": "Czerny", "review": false, "start_date": "1863-03-25", "end_date": "1941-10-03", "start_date_written": "25.3.1863", "end_date_written": "3.10.1941", "status": "", "source": 114, "references": null, "notes": null, "text": [47204, 47205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93012, "fields": {"name": "Czetz", "review": false, "start_date": "1822-06-08", "end_date": "1904-09-06", "start_date_written": "8.6.1822", "end_date_written": "6.9.1904", "status": "", "source": 116, "references": null, "notes": null, "text": [47206, 47207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93013, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93014, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93015, "fields": {"name": "Czikann", "review": false, "start_date": "1789-07-10", "end_date": "1855-06-10", "start_date_written": "10.7.1789", "end_date_written": "10.6.1855", "status": "", "source": 117, "references": null, "notes": null, "text": [47208, 47209], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93016, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93017, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93018, "fields": {"name": "Clam-Gallas", "review": false, "start_date": "1805-03-11", "end_date": "1891-03-17", "start_date_written": "11.3.1805", "end_date_written": "17.3.1891", "status": "", "source": 108, "references": null, "notes": null, "text": [47210, 47211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93021, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1826-06-15", "end_date": "1887-06-05", "start_date_written": "15.6.1826", "end_date_written": "5.6.1887", "status": "", "source": 109, "references": null, "notes": null, "text": [47212, 47213], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93022, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93023, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93024, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1863-01-01", "end_date": "1932-03-07", "start_date_written": "1.1.1863", "end_date_written": "7.3.1932", "status": "", "source": 110, "references": null, "notes": null, "text": [47214, 47215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93025, "fields": {"name": "Clam (Grein)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93026, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93027, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93028, "fields": {"name": "Claus", "review": false, "start_date": "1835-01-02", "end_date": "1899-01-18", "start_date_written": "2.1.1835", "end_date_written": "18.1.1899", "status": "", "source": 111, "references": null, "notes": null, "text": [47216, 47217], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93029, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93030, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93031, "fields": {"name": "Conze", "review": false, "start_date": "1831-12-10", "end_date": "1914-07-19", "start_date_written": "10.12.1831", "end_date_written": "19.7.1914", "status": "", "source": 112, "references": null, "notes": null, "text": [47218, 47219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93032, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93033, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93034, "fields": {"name": "Costenoble", "review": false, "start_date": "1769-12-25", "end_date": "1837-08-28", "start_date_written": "25.12.1769", "end_date_written": "28.8.1837", "status": "", "source": 113, "references": null, "notes": null, "text": [47220, 47221], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93035, "fields": {"name": "Herford, Westfalen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93036, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93037, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93044, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1846-03-21", "end_date": "1914-10-16", "start_date_written": "21.3.1846", "end_date_written": "16.10.1914", "status": "", "source": 103, "references": null, "notes": null, "text": [47226, 47227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93045, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93046, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93047, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1834-11-29", "end_date": "1902-11-24", "start_date_written": "29.11.1834", "end_date_written": "24.11.1902", "status": "", "source": 104, "references": null, "notes": null, "text": [47228, 47229], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93048, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93049, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93050, "fields": {"name": "\u010cerven\u00fd", "review": false, "start_date": "1819-09-27", "end_date": "1896-01-19", "start_date_written": "27.9.1819", "end_date_written": "19.1.1896", "status": "", "source": 105, "references": null, "notes": null, "text": [47230, 47231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93051, "fields": {"name": "Praha-Dube\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93054, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93055, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93056, "fields": {"name": "Charlemont", "review": false, "start_date": "1850-03-18", "end_date": "1939-03-18", "start_date_written": "18.3.1850", "end_date_written": "18.3.1939", "status": "", "source": 106, "references": null, "notes": null, "text": [47232, 47233], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93057, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93058, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93059, "fields": {"name": "Chlumczansk\u00fd", "review": false, "start_date": "1749-11-15", "end_date": "1830-06-14", "start_date_written": "15.11.1749", "end_date_written": "14.6.1830", "status": "", "source": 107, "references": null, "notes": null, "text": [47234, 47235], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93060, "fields": {"name": "Ho\u0161tice, kr. Jiho\u010desk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93063, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93064, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93065, "fields": {"name": "Dumba", "review": false, "start_date": "1856-06-17", "end_date": "1947-01-06", "start_date_written": "17.6.1856", "end_date_written": "6.1.1947", "status": "", "source": 121, "references": null, "notes": null, "text": [47236, 47237], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93066, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93067, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93068, "fields": {"name": "Doderer", "review": false, "start_date": "1825-01-02", "end_date": "1900-05-13", "start_date_written": "2.1.1825", "end_date_written": "13.5.1900", "status": "", "source": 120, "references": null, "notes": null, "text": [47238, 47239], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93069, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93070, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93071, "fields": {"name": "Defregger", "review": false, "start_date": "1835-04-30", "end_date": "1921-01-02", "start_date_written": "30.4.1835", "end_date_written": "2.1.1921", "status": "", "source": 118, "references": null, "notes": null, "text": [47240, 47241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93072, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93073, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93074, "fields": {"name": "Dengel", "review": false, "start_date": "1872-06-22", "end_date": "1947-09-09", "start_date_written": "22.6.1872", "end_date_written": "9.9.1947", "status": "", "source": 119, "references": null, "notes": null, "text": [47242, 47243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93075, "fields": {"name": "Elbigenalp-Untergiblen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93078, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93079, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93136, "fields": {"name": "Holovsky", "review": false, "start_date": "1917-04-29", "end_date": "1933-07-03", "start_date_written": "29.4.1917", "end_date_written": "3.7.1933", "status": "", "source": 122, "references": null, "notes": null, "text": [47276, 47277], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93137, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93138, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93328, "fields": {"name": "Lorenz", "review": false, "start_date": "1859-04-13", "end_date": "1945-03-25", "start_date_written": "13.4.1859", "end_date_written": "25.3.1945", "status": "", "source": 134, "references": null, "notes": null, "text": [47384, 47385], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93329, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93330, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93337, "fields": {"name": "L\u00f6wy", "review": false, "start_date": "1851-09-14", "end_date": "1905-12-27", "start_date_written": "14.9.1851", "end_date_written": "27.12.1905", "status": "", "source": 133, "references": null, "notes": null, "text": [47388, 47389], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93338, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93339, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93352, "fields": {"name": "Lobmeyr", "review": false, "start_date": "1792-03-17", "end_date": "1855-05-08", "start_date_written": "17.3.1792", "end_date_written": "8.5.1855", "status": "", "source": 132, "references": null, "notes": null, "text": [47394, 47395], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93353, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93354, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93366, "fields": {"name": "Lichtblau", "review": false, "start_date": "1844-05-17", "end_date": "1908-05-10", "start_date_written": "17.5.1844", "end_date_written": "10.5.1908", "status": "", "source": 130, "references": null, "notes": null, "text": [47402, 47403], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93367, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93368, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93369, "fields": {"name": "Lichtblau", "review": false, "start_date": "1875-02-25", "end_date": "1935-12-19", "start_date_written": "25.2.1875", "end_date_written": "19.12.1935", "status": "", "source": 131, "references": null, "notes": null, "text": [47404, 47405], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93370, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93371, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93378, "fields": {"name": "Leitgeb", "review": false, "start_date": "1835-10-20", "end_date": "1888-04-05", "start_date_written": "20.10.1835", "end_date_written": "5.4.1888", "status": "", "source": 128, "references": null, "notes": null, "text": [47410, 47411], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93379, "fields": {"name": "Portendorf, Bez. Klagenfurt Land", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93382, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93383, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93387, "fields": {"name": "Lenhoss\u00e9k", "review": false, "start_date": "1773-05-11", "end_date": "1840-02-11", "start_date_written": "11.5.1773", "end_date_written": "11.2.1840", "status": "", "source": 129, "references": null, "notes": null, "text": [47414, 47415], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93388, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93389, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93393, "fields": {"name": "Lefler", "review": false, "start_date": "1863-11-07", "end_date": "1919-03-14", "start_date_written": "7.11.1863", "end_date_written": "14.3.1919", "status": "", "source": 125, "references": null, "notes": null, "text": [47418, 47419], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93394, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93395, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93396, "fields": {"name": "Leichter", "review": false, "start_date": "1895-08-20", "end_date": "1942-03-17", "start_date_written": "20.8.1895", "end_date_written": "17.3.1942", "status": "", "source": 126, "references": null, "notes": null, "text": [47420, 47421], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93397, "fields": {"name": "KZ Ravensbr\u00fcck, Brandenburg", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93398, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93399, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93400, "fields": {"name": "Leidesdorf", "review": false, "start_date": "1810-09-25", "end_date": "1876-01-19", "start_date_written": "25.9.1810", "end_date_written": "19.1.1876", "status": "", "source": 127, "references": null, "notes": null, "text": [47422, 47423], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93401, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93402, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93409, "fields": {"name": "Lapaine", "review": false, "start_date": "1843-02-05", "end_date": "1923-02-21", "start_date_written": "5.2.1843", "end_date_written": "21.2.1923", "status": "", "source": 124, "references": null, "notes": null, "text": [47428, 47429], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93410, "fields": {"name": "Vojsko, sr. Gorica", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93413, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93414, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93415, "fields": {"name": "Langer-Schroll", "review": false, "start_date": "1850-10-02", "end_date": "1926-11-09", "start_date_written": "2.10.1850", "end_date_written": "9.11.1926", "status": "", "source": 123, "references": null, "notes": null, "text": [47430, 47431], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93417, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93418, "fields": {"name": "M\u00fcller", "review": false, "start_date": "1874-07-08", "end_date": "1941-12-09", "start_date_written": "8.7.1874", "end_date_written": "9.12.1941", "status": "", "source": 144, "references": null, "notes": null, "text": [47432, 47433], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93419, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93420, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93442, "fields": {"name": "M\u00f6rl", "review": false, "start_date": "1812-10-16", "end_date": "1868-01-11", "start_date_written": "16.10.1812", "end_date_written": "11.1.1868", "status": "", "source": 143, "references": null, "notes": null, "text": [47446, 47447], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93443, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93444, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93445, "fields": {"name": "Millosicz", "review": false, "start_date": "1819-10-18", "end_date": "1890-07-24", "start_date_written": "18.10.1819", "end_date_written": "24.7.1890", "status": "", "source": 142, "references": null, "notes": null, "text": [47448, 47449], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93446, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93447, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93448, "fields": {"name": "Miklosich", "review": false, "start_date": "1813-11-20", "end_date": "1891-03-07", "start_date_written": "20.11.1813", "end_date_written": "7.3.1891", "status": "", "source": 141, "references": null, "notes": null, "text": [47450, 47451], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93449, "fields": {"name": "Radomer\u0161\u010dak, sr. Murska Sobota", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93452, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93453, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93469, "fields": {"name": "Meithner", "review": false, "start_date": "1892-05-27", "end_date": "1942-12-13", "start_date_written": "27.5.1892", "end_date_written": "13.12.1942", "status": "", "source": 140, "references": null, "notes": null, "text": [47460, 47461], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93470, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93471, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93481, "fields": {"name": "Margulies", "review": false, "start_date": "1817-01-01", "end_date": "1880-01-01", "start_date_written": "1817", "end_date_written": "1880", "status": "", "source": 139, "references": null, "notes": null, "text": [47466, 47467], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93482, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93483, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93484, "fields": {"name": "M\u00e1nesov\u00e1", "review": false, "start_date": "1817-01-21", "end_date": null, "start_date_written": "21.1.1817", "end_date_written": "1883.6", "status": "", "source": 137, "references": null, "notes": null, "text": [47468, 47469], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93485, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93486, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93487, "fields": {"name": "M\u00e1nes", "review": false, "start_date": "1828-07-17", "end_date": "1880-08-05", "start_date_written": "17.7.1828", "end_date_written": "5.8.1880", "status": "", "source": 138, "references": null, "notes": null, "text": [47470, 47471], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93488, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93489, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93510, "fields": {"name": "Mayer", "review": false, "start_date": "1894-02-20", "end_date": "1944-07-01", "start_date_written": "20.2.1894", "end_date_written": "1.7.1944", "status": "", "source": 136, "references": null, "notes": null, "text": [47482, 47483], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93511, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93512, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93513, "fields": {"name": "Mahl-Schedl von Alpenburg", "review": false, "start_date": "1806-10-27", "end_date": "1873-04-01", "start_date_written": "27.10.1806", "end_date_written": "1.4.1873", "status": "", "source": 135, "references": null, "notes": null, "text": [47484, 47485], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93514, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93515, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93516, "fields": {"name": "Nov\u00e1\u010dek", "review": false, "start_date": "1860-04-07", "end_date": "1929-08-12", "start_date_written": "7.4.1860", "end_date_written": "12.8.1929", "status": "", "source": 145, "references": null, "notes": null, "text": [47486, 47487], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93517, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93518, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93540, "fields": {"name": "Ortmann", "review": false, "start_date": "1874-03-10", "end_date": "1939-11-22", "start_date_written": "10.3.1874", "end_date_written": "22.11.1939", "status": "", "source": 147, "references": null, "notes": null, "text": [47502, 47503], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93541, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93542, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93546, "fields": {"name": "Oellacher", "review": false, "start_date": "1804-02-16", "end_date": "1880-08-16", "start_date_written": "16.2.1804", "end_date_written": "16.8.1880", "status": "", "source": 146, "references": null, "notes": null, "text": [47506, 47507], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93547, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93548, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93561, "fields": {"name": "Poljanec", "review": false, "start_date": "1872-09-23", "end_date": "1944-08-08", "start_date_written": "23.9.1872", "end_date_written": "8.8.1944", "status": "", "source": 151, "references": null, "notes": null, "text": [47516, 47517], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93562, "fields": {"name": "Bre\u017eice, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93565, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93566, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93573, "fields": {"name": "Petzold", "review": false, "start_date": "1859-11-26", "end_date": "1932-07-15", "start_date_written": "26.11.1859", "end_date_written": "15.7.1932", "status": "", "source": 150, "references": null, "notes": null, "text": [47522, 47523], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93574, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93575, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93588, "fields": {"name": "Peithner von Lichtenfels", "review": false, "start_date": "1833-11-18", "end_date": "1913-01-22", "start_date_written": "18.11.1833", "end_date_written": "22.1.1913", "status": "", "source": 149, "references": null, "notes": null, "text": [47530, 47531], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93589, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93590, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93600, "fields": {"name": "Patera", "review": false, "start_date": "1819-07-11", "end_date": "1894-06-26", "start_date_written": "11.7.1819", "end_date_written": "26.6.1894", "status": "", "source": 148, "references": null, "notes": null, "text": [47536, 47537], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93601, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93602, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93609, "fields": {"name": "Rumpler", "review": false, "start_date": "1771-02-03", "end_date": "1846-03-17", "start_date_written": "3.2.1771", "end_date_written": "17.3.1846", "status": "", "source": 158, "references": null, "notes": null, "text": [47540, 47541], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93610, "fields": {"name": "Seekirchen a. Wallersee", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93613, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93614, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93615, "fields": {"name": "Rotter", "review": false, "start_date": "1868-11-30", "end_date": "1945-09-18", "start_date_written": "30.11.1868", "end_date_written": "18.9.1945", "status": "", "source": 157, "references": null, "notes": null, "text": [47542, 47543], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93616, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93617, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93639, "fields": {"name": "Revertera von Salandra", "review": false, "start_date": "1827-01-21", "end_date": "1904-04-28", "start_date_written": "21.1.1827", "end_date_written": "28.4.1904", "status": "", "source": 156, "references": null, "notes": null, "text": [47556, 47557], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93640, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93641, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93642, "fields": {"name": "Reichenberger", "review": false, "start_date": "1770-11-24", "end_date": "1854-10-26", "start_date_written": "24.11.1770", "end_date_written": "26.10.1854", "status": "", "source": 154, "references": null, "notes": null, "text": [47558, 47559], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93643, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93644, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93645, "fields": {"name": "Reiser", "review": false, "start_date": "1861-12-21", "end_date": "1936-03-31", "start_date_written": "21.12.1861", "end_date_written": "31.3.1936", "status": "", "source": 155, "references": null, "notes": null, "text": [47560, 47561], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93646, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93647, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93651, "fields": {"name": "Randa", "review": false, "start_date": "1874-05-24", "end_date": "1941-08-13", "start_date_written": "24.5.1874", "end_date_written": "13.8.1941", "status": "", "source": 153, "references": null, "notes": null, "text": [47564, 47565], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93652, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93653, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93654, "fields": {"name": "Radakovi\u010d", "review": false, "start_date": "1866-04-25", "end_date": "1934-08-15", "start_date_written": "25.4.1866", "end_date_written": "15.8.1934", "status": "", "source": 152, "references": null, "notes": null, "text": [47566, 47567], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93655, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93656, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93657, "fields": {"name": "Szigligeti", "review": false, "start_date": "1814-03-08", "end_date": "1878-01-19", "start_date_written": "8.3.1814", "end_date_written": "19.1.1878", "status": "", "source": 194, "references": null, "notes": null, "text": [47568, 47569], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93658, "fields": {"name": "Oradea-Olosig, jud. Bihor", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93661, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93662, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93663, "fields": {"name": "Szurmay von Uzsok", "review": false, "start_date": "1860-12-19", "end_date": "1945-03-26", "start_date_written": "19.12.1860", "end_date_written": "26.3.1945", "status": "", "source": 195, "references": null, "notes": null, "text": [47570, 47571], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93664, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93665, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93678, "fields": {"name": "St\u00fclz", "review": false, "start_date": "1799-02-23", "end_date": "1872-06-28", "start_date_written": "23.2.1799", "end_date_written": "28.6.1872", "status": "", "source": 193, "references": null, "notes": null, "text": [47580, 47581], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93679, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93680, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93684, "fields": {"name": "Stowasser", "review": false, "start_date": "1887-10-21", "end_date": "1934-02-19", "start_date_written": "21.10.1887", "end_date_written": "19.2.1934", "status": "", "source": 192, "references": null, "notes": null, "text": [47584, 47585], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93685, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93686, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93702, "fields": {"name": "Steindler", "review": false, "start_date": "1879-10-28", "end_date": "1933-12-21", "start_date_written": "28.10.1879", "end_date_written": "21.12.1933", "status": "", "source": 190, "references": null, "notes": null, "text": [47594, 47595], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93703, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93704, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93705, "fields": {"name": "Stein", "review": false, "start_date": "1891-09-19", "end_date": "1945-02-25", "start_date_written": "19.9.1891", "end_date_written": "25.2.1945", "status": "", "source": 191, "references": null, "notes": null, "text": [47596, 47597], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93706, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93707, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93714, "fields": {"name": "Stariha", "review": false, "start_date": "1845-05-12", "end_date": "1915-12-15", "start_date_written": "12.5.1845", "end_date_written": "15.12.1915", "status": "", "source": 189, "references": null, "notes": null, "text": [47602, 47603], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93715, "fields": {"name": "Sadinja vas, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93718, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93719, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93748, "fields": {"name": "\u0160njari\u0107", "review": false, "start_date": "1851-06-22", "end_date": "1930-01-28", "start_date_written": "22.6.1851", "end_date_written": "28.1.1930", "status": "", "source": 188, "references": null, "notes": null, "text": [47614, 47615], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93749, "fields": {"name": "\u010canak, sr. Gospi\u0107", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93752, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93753, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93779, "fields": {"name": "Sichulski", "review": false, "start_date": "1879-01-17", "end_date": "1942-11-06", "start_date_written": "17.1.1879", "end_date_written": "6.11.1942", "status": "", "source": 187, "references": null, "notes": null, "text": [47626, 47627], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93780, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93781, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93785, "fields": {"name": "Settari", "review": false, "start_date": "1841-10-04", "end_date": "1905-01-29", "start_date_written": "4.10.1841", "end_date_written": "29.1.1905", "status": "", "source": 186, "references": null, "notes": null, "text": [47630, 47631], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93786, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93787, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93791, "fields": {"name": "Sehnal", "review": false, "start_date": "1851-12-22", "end_date": "1910-09-12", "start_date_written": "22.12.1851", "end_date_written": "12.9.1910", "status": "", "source": 185, "references": null, "notes": null, "text": [47634, 47635], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93792, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93793, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93800, "fields": {"name": "Schwartz", "review": false, "start_date": "1852-02-28", "end_date": "1929-09-15", "start_date_written": "28.2.1852", "end_date_written": "15.9.1929", "status": "", "source": 181, "references": null, "notes": null, "text": [47640, 47641], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93801, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93802, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93803, "fields": {"name": "Schwarz", "review": false, "start_date": "1840-11-16", "end_date": "1903-12-28", "start_date_written": "16.11.1840", "end_date_written": "28.12.1903", "status": "", "source": 182, "references": null, "notes": null, "text": [47642, 47643], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93804, "fields": {"name": "\u0160umperk-Temenice, kr. Olomouck\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93807, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93808, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93809, "fields": {"name": "Schwarz", "review": false, "start_date": "1811-11-06", "end_date": "1879-05-07", "start_date_written": "6.11.1811", "end_date_written": "7.5.1879", "status": "", "source": 183, "references": null, "notes": null, "text": [47644, 47645], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93810, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93811, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93815, "fields": {"name": "Schweitzer", "review": false, "start_date": "1815-02-01", "end_date": "1896-07-09", "start_date_written": "1.2.1815", "end_date_written": "9.7.1896", "status": "", "source": 184, "references": null, "notes": null, "text": [47648, 47649], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93816, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93817, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93818, "fields": {"name": "Schwabl", "review": false, "start_date": "1854-06-29", "end_date": "1923-04-16", "start_date_written": "29.6.1854", "end_date_written": "16.4.1923", "status": "", "source": 180, "references": null, "notes": null, "text": [47650, 47651], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93819, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93820, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93836, "fields": {"name": "Schu\u00ebcker", "review": false, "start_date": "1860-11-16", "end_date": "1911-11-09", "start_date_written": "16.11.1860", "end_date_written": "9.11.1911", "status": "", "source": 179, "references": null, "notes": null, "text": [47660, 47661], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93837, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93838, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93839, "fields": {"name": "Schr\u00f6dl", "review": false, "start_date": "1841-07-07", "end_date": "1908-12-05", "start_date_written": "7.7.1841", "end_date_written": "5.12.1908", "status": "", "source": 178, "references": null, "notes": null, "text": [47662, 47663], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93841, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93854, "fields": {"name": "Schreyer", "review": false, "start_date": "1876-12-09", "end_date": "1950-04-14", "start_date_written": "9.12.1876", "end_date_written": "14.4.1950", "status": "", "source": 177, "references": null, "notes": null, "text": [47672, 47673], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93855, "fields": {"name": "B\u0159idli\u010dn\u00e1, kr. Moravskoslezsk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93858, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93859, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93863, "fields": {"name": "Scholz", "review": false, "start_date": "1819-08-20", "end_date": "1902-05-19", "start_date_written": "20.8.1819", "end_date_written": "19.5.1902", "status": "", "source": 175, "references": null, "notes": null, "text": [47676, 47677], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93864, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93865, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93866, "fields": {"name": "Schrammel", "review": false, "start_date": "1850-05-22", "end_date": "1893-06-17", "start_date_written": "22.5.1850", "end_date_written": "17.6.1893", "status": "", "source": 176, "references": null, "notes": null, "text": [47678, 47679], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93867, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93868, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93878, "fields": {"name": "Scholl", "review": false, "start_date": "1805-01-01", "end_date": "1884-12-12", "start_date_written": "1805", "end_date_written": "12.12.1884", "status": "", "source": 174, "references": null, "notes": null, "text": [47684, 47685], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93879, "fields": {"name": "Regio oder Rea (?)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93880, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93881, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93891, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1804-06-30", "end_date": "1880-12-19", "start_date_written": "30.6.1804", "end_date_written": "19.12.1880", "status": "", "source": 172, "references": null, "notes": null, "text": [47688, 47689], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93892, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93893, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93894, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1863-09-12", "end_date": "1930-03-09", "start_date_written": "12.9.1863", "end_date_written": "9.3.1930", "status": "", "source": 173, "references": null, "notes": null, "text": [47690, 47691], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93895, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93896, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93900, "fields": {"name": "Schnitzler", "review": false, "start_date": "1865-07-13", "end_date": "1939-06-29", "start_date_written": "13.7.1865", "end_date_written": "29.6.1939", "status": "", "source": 169, "references": null, "notes": null, "text": [47694, 47695], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93901, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93902, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93903, "fields": {"name": "Schober", "review": false, "start_date": "1856-12-15", "end_date": "1917-03-07", "start_date_written": "15.12.1856", "end_date_written": "7.3.1917", "status": "", "source": 170, "references": null, "notes": null, "text": [47696, 47697], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93905, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93909, "fields": {"name": "Schoeller", "review": false, "start_date": "1826-10-05", "end_date": "1889-06-25", "start_date_written": "5.10.1826", "end_date_written": "25.6.1889", "status": "", "source": 171, "references": null, "notes": null, "text": [47700, 47701], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93910, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93911, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93921, "fields": {"name": "Schmutzler", "review": false, "start_date": "1864-03-29", "end_date": "1940-06-20", "start_date_written": "29.3.1864", "end_date_written": "20.6.1940", "status": "", "source": 168, "references": null, "notes": null, "text": [47706, 47707], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93922, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93923, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93933, "fields": {"name": "Schmidt", "review": false, "start_date": "1904-03-04", "end_date": "1942-11-16", "start_date_written": "4.3.1904", "end_date_written": "16.11.1942", "status": "", "source": 167, "references": null, "notes": null, "text": [47712, 47713], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93934, "fields": {"name": "Davydivka, obl. \u010cernivci", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93937, "fields": {"name": "Girenbad b. Hinwil, Kanton Z\u00fcrich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93938, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93939, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93940, "fields": {"name": "Schmidt", "review": false, "start_date": "1826-12-09", "end_date": "1892-03-28", "start_date_written": "9.12.1826", "end_date_written": "28.3.1892", "status": "", "source": 166, "references": null, "notes": null, "text": [47714, 47715], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93941, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93942, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93946, "fields": {"name": "Schmal", "review": false, "start_date": "1844-09-23", "end_date": "1900-12-24", "start_date_written": "23.9.1844", "end_date_written": "24.12.1900", "status": "", "source": 164, "references": null, "notes": null, "text": [47718, 47719], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93947, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93948, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93955, "fields": {"name": "Schmidt-Beauchez", "review": false, "start_date": "1848-06-06", "end_date": "1912-12-14", "start_date_written": "6.6.1848", "end_date_written": "14.12.1912", "status": "", "source": 165, "references": null, "notes": null, "text": [47724, 47725], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93956, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93957, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93958, "fields": {"name": "Schindler", "review": false, "start_date": "1835-06-23", "end_date": "1911-02-22", "start_date_written": "23.6.1835", "end_date_written": "22.2.1911", "status": "", "source": 163, "references": null, "notes": null, "text": [47726, 47727], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93959, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93960, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93961, "fields": {"name": "Scheu", "review": false, "start_date": "1841-09-15", "end_date": "1904-10-12", "start_date_written": "15.9.1841", "end_date_written": "12.10.1904", "status": "", "source": 161, "references": null, "notes": null, "text": [47728, 47729], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93962, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93963, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93964, "fields": {"name": "Schikaneder", "review": false, "start_date": "1855-02-27", "end_date": "1924-11-15", "start_date_written": "27.2.1855", "end_date_written": "15.11.1924", "status": "", "source": 162, "references": null, "notes": null, "text": [47730, 47731], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93965, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93966, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93967, "fields": {"name": "Schell", "review": false, "start_date": "1892-12-19", "end_date": "1945-06-02", "start_date_written": "19.12.1892", "end_date_written": "2.6.1945", "status": "", "source": 159, "references": null, "notes": null, "text": [47732, 47733], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93968, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93969, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93970, "fields": {"name": "Schenk", "review": false, "start_date": "1840-08-23", "end_date": "1902-08-17", "start_date_written": "23.8.1840", "end_date_written": "17.8.1902", "status": "", "source": 160, "references": null, "notes": null, "text": [47734, 47735], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93971, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93972, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93988, "fields": {"name": "T\u00f6lgyessy", "review": false, "start_date": "1853-05-01", "end_date": "1920-02-02", "start_date_written": "1.5.1853", "end_date_written": "2.2.1920", "status": "", "source": 201, "references": null, "notes": null, "text": [47746, 47747], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93989, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93990, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93991, "fields": {"name": "Thun und Hohenstein", "review": false, "start_date": "1763-03-28", "end_date": "1818-10-09", "start_date_written": "28.3.1763", "end_date_written": "9.10.1818", "status": "", "source": 200, "references": null, "notes": null, "text": [47748, 47749], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93992, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93993, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94003, "fields": {"name": "Teschenberg", "review": false, "start_date": "1836-05-21", "end_date": "1886-02-25", "start_date_written": "21.5.1836", "end_date_written": "25.2.1886", "status": "", "source": 197, "references": null, "notes": null, "text": [47754, 47755], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94006, "fields": {"name": "Tetmajer", "review": false, "start_date": "1865-02-12", "end_date": "1940-01-18", "start_date_written": "12.2.1865", "end_date_written": "18.1.1940", "status": "", "source": 198, "references": null, "notes": null, "text": [47756, 47757], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94007, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94008, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94009, "fields": {"name": "Teuber", "review": false, "start_date": "1877-05-11", "end_date": "1943-02-03", "start_date_written": "11.5.1877", "end_date_written": "3.2.1943", "status": "", "source": 199, "references": null, "notes": null, "text": [47758, 47759], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94018, "fields": {"name": "Tauber", "review": false, "start_date": "1891-05-16", "end_date": "1948-01-08", "start_date_written": "16.5.1891", "end_date_written": "8.1.1948", "status": "", "source": 196, "references": null, "notes": null, "text": [47764, 47765], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94102, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpunkt des Realismus u*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94103, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpuncte des Realismus *. - 1884-85", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94104, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Die Grundzu\u0308ge der Aristotelischen Psychologie. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94105, "fields": {"name": "Volkmann von Volkmar, Wilhelm F.: Lehrbuch der Psychologie vom Standpuncte des Realismus *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94120, "fields": {"name": "Hegel, Carl: Die Ordnungen der Gerechtigkeit in der florentinischen Republik. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94121, "fields": {"name": "Hegel, Georg W.: Vorlesungen u\u0308ber die Philosophie der Geschichte. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94122, "fields": {"name": "Hegel, Carl: U\u0308ber den historischen Werth der a\u0308lteren Dante-Commentare. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94123, "fields": {"name": "Hegel, Carl: Sta\u0308dte und Gilden der germanischen Vo\u0308lker im Mittelalter. - 1891", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94124, "fields": {"name": "Vorlesungen u\u0308ber die Philosophie der Geschichte. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94125, "fields": {"name": "Hegel, Carl: Die deutsche Sache und die deutschen Hochschulen: Rede am 4. November 1870. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94126, "fields": {"name": "Hegel, Carl: Die Chronik des Dino Compagni. - 1875", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94127, "fields": {"name": "Hegel, Carl: Die Entstehung des deutschen Sta\u0308dtewesens. - 1898", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94128, "fields": {"name": "Hegel, Carl: Geschichte der meklenburgischen Landsta\u0308nde bis z. J. 1555. - 1856", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94129, "fields": {"name": "Hegel, Carl: Geschichte der Sta\u0308dteverfassung von Italien seit der Zeit der ro\u0308mischen Herr*. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94131, "fields": {"name": "Herbart, Johann M.: Aufrichtige Gedanken von dem Unterrichte kleiner Kinder, vornemlich i*. - 1738", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94132, "fields": {"name": "Herbart, Johann M.: De notitia linguae Hebraicae necessario et facile comparanda. - 1737", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94133, "fields": {"name": "Herbart, Johann M.: Unvorgreifliche Gedanken von Verbesserung der bey Erlernung der Latei*. - 1741", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94134, "fields": {"name": "Herbart, Johann M.: An Christus tentatorem suum statim noverit, nec ne, paucis disquirit *. - 1738", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94135, "fields": {"name": "Herbart, Johann M.: Kurtzer Entwurff von den vornehmsten Quellen des Verderbens der Jugend. - 1736", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94136, "fields": {"name": "Herbart, Johann M.: Thomam incredulum resurrectionis Christi certissimum testem producit *. - 1740", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94137, "fields": {"name": "Herbart, Johann M.: Sendschreiben von den gewo\u0308hnlichen Trostgru\u0308nden bey dem fru\u0308hzeitigen *. - [ca. 1740]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94138, "fields": {"name": "Herbart, Johann Michael: De magis aegyptiacis. - 1741.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94139, "fields": {"name": "Herbart, Johann M.: Tritissimum illud: conjugia sunt fatalia, denuo tritum dissertatione *. - 1736", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94140, "fields": {"name": "Herbart, Johann M.: Trauer-Rede ... u\u0308ber den Verlust Friderichs V, Erbko\u0308niges zu Da\u0308nnemar*. - 1766", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94141, "fields": {"name": "Herbart, Johann M.: Kurzer Erweis, da\u00df alle Studierende eine Historische Erkenntni\u00df von g*. - 1740", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94160, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94161, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94162, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94163, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94164, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94165, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94166, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94167, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94168, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94169, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94170, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94171, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94174, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94175, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94247, "fields": {"name": "Grundlinien der Psychologie. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94248, "fields": {"name": "Psychologie der Raumwahrnehmung des Auges. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94249, "fields": {"name": "Hundert psychologische Schulversuche mit Angabe der Apparate. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94250, "fields": {"name": "Ho\u0308fler, Alois: Hundert psychologische Schulversuche mit Angabe der Apparate", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94251, "fields": {"name": "Grundzu\u0308ge der allgemeinen A\u0308sthetik. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94307, "fields": {"name": "Westermarck, Edward A.: The history of human marriage. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94308, "fields": {"name": "Westermarck, Edward A.: Ritual and belief in Morocco. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94309, "fields": {"name": "Westermarck, Edward A.: The Origin and development of the moral ideas", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94310, "fields": {"name": "Numelin, Ragnar: The Wandering Spirit. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94311, "fields": {"name": "Westermarck, Edward A.: Marriage Ceremonies in Marocco. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94312, "fields": {"name": "Westermarck, Edward A.: The Future of mariage in western civilisation. - 1937", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94313, "fields": {"name": "Balfour, Henry: Anthropological essays. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94314, "fields": {"name": "Westermarck, Edward A.: Geschichte der menschlichen Ehe. - 1893", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94315, "fields": {"name": "Westermarck, Edward A.: Ursprung und Entwicklung der Moralbegriffe", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94323, "fields": {"name": "Bartos\u030c, Frantis\u030cek M.: Litera\u0301rni C\u030cinnost M. Jakoubka ze Str\u030cibra. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94324, "fields": {"name": "Soupis rukopis\u00b0u Na\u0301rodni\u0301ho Musea v Praze. - 1926 -", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94351, "fields": {"name": "Psychologische Untersuchungen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94352, "fields": {"name": "Hauptpuncte der Logik. - 1806", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94353, "fields": {"name": "Pedagogia generale dedotta dal fine dell'educazione", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94354, "fields": {"name": "Hauptpuncte der Logik. - 1808", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94355, "fields": {"name": "Analytische Beleuchtung des Naturrechts und der Moral ... - 1896", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94356, "fields": {"name": "Gespra\u0308che u\u0308ber das Bo\u0308se.... - 1817", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94357, "fields": {"name": "U\u0308ber die Unangreifbarkeit der Schellingischen Lehre. - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94358, "fields": {"name": "Pedagogia generale", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94359, "fields": {"name": "Pisma pedagogiczne", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94360, "fields": {"name": "Allgemeine practische Philosophie. - 1808", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94361, "fields": {"name": "Erinnerung an die Go\u0308ttingische Katastrophe im Jahre 1837. - 1842", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94362, "fields": {"name": "De attentionis mensura causisque primariis. - 1822", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94433, "fields": {"name": "Schleicher, August: Sprachvergleichende Untersuchungen [Bd. II: \"Linguistische...\"]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94434, "fields": {"name": "Schleicher, August: Die Deutsche Sprache. - 1879", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94435, "fields": {"name": "Indogermanische Chrestomathie. - 1869", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94436, "fields": {"name": "Schleicher, August: La the\u0301orie de Darwin et la science du langage. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94437, "fields": {"name": "Schleicher, August: U\u0308ber die Bedeutung der Sprache fu\u0308r die Naturgeschichte des Menschen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94438, "fields": {"name": "Schleicher, August: Die Deutsche Sprache. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94439, "fields": {"name": "Schleicher, August: Die Darwinsche Theorie und die Sprachwissenschaft. - 1863", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94440, "fields": {"name": "Litauische Ma\u0308rchen, Sprichworte, Ra\u0308tsel und Lieder. - 1857", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94441, "fields": {"name": "Schleicher, August: Compendium der vergleichenden Grammatik der Indogermanischen Sprachen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94442, "fields": {"name": "Schleicher, August: Compendium der vergleichenden Grammatik der Indogermanischen Sprachen. - 1876", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94822, "fields": {"name": "Der Aufstieg der Begabten. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94823, "fields": {"name": "Der deutsche Klassizismus und das Bildungswesen der Gegenwart. - 1928", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94824, "fields": {"name": "Der jugendliche Mensch . - 1932", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94825, "fields": {"name": "Lebensformen. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94826, "fields": {"name": "Lebenserfahrung. - 1945", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94827, "fields": {"name": "Psychologie des Jugendalters. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94828, "fields": {"name": "Der Bildungswert der Heimatkunde. - 1943", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94829, "fields": {"name": "Psychologie des Jugendalters. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94830, "fields": {"name": "Psychologie des Jugendalters. - 1924", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94831, "fields": {"name": "Weltfro\u0308mmigkeit. - 1941", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94885, "fields": {"name": "Kleinere Schriften zur Pa\u0308dagogik. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94886, "fields": {"name": "Fro\u0308bel, Friedrich W.: Briefwechsel mit Kindern. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94887, "fields": {"name": "Das Verma\u0308chtnis Friedrich Fro\u0308bels an unsere Zeit. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94888, "fields": {"name": "Fro\u0308bel, Friedrich W.: Menschenerziehung. - [1927]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94889, "fields": {"name": "Fro\u0308bel, Friedrich W.: An unser deutsches Volk!. - 1820", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94890, "fields": {"name": "Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkunst. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94891, "fields": {"name": "Fro\u0308bel, Friedrich W.: Friedrich Fro\u0308bel, der Mensch, Denker und Erzieher. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94892, "fields": {"name": "Menschenerziehung. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94893, "fields": {"name": "Fro\u0308bel, Friedrich W.: Kleinere Schriften zur Pa\u0308dagogik. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94894, "fields": {"name": "Fro\u0308bel, Friedrich W.: Friedrich Fro\u0308bel und die Muhme Schmidt. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94895, "fields": {"name": "An unser deutsches Volk!. - 1820", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94896, "fields": {"name": "Fro\u0308bel, Friedrich W.: Das Verma\u0308chtnis Friedrich Fro\u0308bels an unsere Zeit. - 1926", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94897, "fields": {"name": "Friedrich Fro\u0308bel, der Mensch, Denker und Erzieher. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94898, "fields": {"name": "Menschenerziehung. - [1927]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94899, "fields": {"name": "Fro\u0308bel, Friedrich W.: Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkunst. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94900, "fields": {"name": "Briefwechsel mit Kindern. - 1940", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94901, "fields": {"name": "Friedrich Fro\u0308bel und die Muhme Schmidt. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94902, "fields": {"name": "Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkuns*. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94903, "fields": {"name": "Fro\u0308bel, Friedrich W.: Menschenerziehung. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94904, "fields": {"name": "Fro\u0308bel, Friedrich W.: Die Menschenerziehung, die Erziehungs-, Unterrichts- und Lehrkuns*. - 1826", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95024, "fields": {"name": "Aesthetik. - 1858-1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95025, "fields": {"name": "Philosophische Propaedeutik. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95026, "fields": {"name": "Leibnitz und Herbart. - 1849", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95027, "fields": {"name": "Herbart, Johann F.: Ungedruckte Briefe von und an Herbart. - 1877", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95028, "fields": {"name": "Das Rechtsprinzip bei Leibnitz. - 1852", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95029, "fields": {"name": "Studien und Kritiken zur Philosophie und Aesthetik. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95030, "fields": {"name": "Guerillaskrieg. - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95043, "fields": {"name": "Ennius, Quintus: Ennianae poesis reliquiae. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95044, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1885", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95045, "fields": {"name": "Ennius, Quintus: Poesis reliquiae. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95046, "fields": {"name": "M. Tullii Ciceronis de legibus libri", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95047, "fields": {"name": "De arte poetica liber", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95048, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95049, "fields": {"name": "Plautus, Titus M.: Menaechmi. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95050, "fields": {"name": "Vahlen, Johannes: In M. Terentii Varronis saturarum Menippearum reliquias coniectanea. - 1858", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95051, "fields": {"name": "Vahlen, Johannes: Lorenzo Valla. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95052, "fields": {"name": "Lachmann, Karl: Briefe an Moritz Haupt. - 1892", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95053, "fields": {"name": "Naevius, Cnaeus: De bello Punico. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95054, "fields": {"name": "Catullus, Gaius V.: Carmina. - 1879", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95123, "fields": {"name": "Die wichtigsten philosophischen Fachausdru\u0308cke in historischer Anordnung. - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95124, "fields": {"name": "Pa\u0308dagogische Vortra\u0308ge u\u0308ber die Hebung der geistigen Tha\u0308tigkeit durch den *. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95125, "fields": {"name": "Seidenberger, Johann B.: Grundlinien idealer Weltanschauung. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95126, "fields": {"name": "Aristoteles als Pa\u0308dagog und Didaktiker. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95127, "fields": {"name": "Die Wissenschaft vom Gesichtspunkte der katholischen Wahrheit. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95128, "fields": {"name": "Die soziale Aufgabe der ho\u0308heren Schulen. - 1891", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95129, "fields": {"name": "Aus Ho\u0308rsaal und Schulstube. - 1904", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95130, "fields": {"name": "Pythagoreische Erziehungsweisheit. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95131, "fields": {"name": "Geschichte des Idealismus. - 1907", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95156, "fields": {"name": "Kru\u0301dy, Gyula: Ady Endre e\u0301jszaka\u0301i. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95157, "fields": {"name": "Kru\u0301dy, Gyula: Munkai", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95158, "fields": {"name": "Kru\u0301dy, Gyula: Magyar Ko\u0308zta\u0300rsasa\u0300g almanachja. - 1988", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95159, "fields": {"name": "Kru\u0301dy, Gyula: Festeu\u0301 kira\u0301ly. - o. J.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95160, "fields": {"name": "Kru\u0301dy, Gyula: A has ezeregye\u0301jszaka\u0301ja. - [1990]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95161, "fields": {"name": "Kru\u0301dy, Gyula: Va\u0301logatott novella\u0301k. - 1990", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95162, "fields": {"name": "Kru\u0301dy, Gyula: Aranyke\u0301zutcai sze\u0301p napok. - 1978", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95163, "fields": {"name": "Kru\u0301dy, Gyula: A magyar jakobinnsok. - [um 1930]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95164, "fields": {"name": "Kru\u0301dy, Gyula: Az elso\u0308 Habsburg. - [um 1930]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95397, "fields": {"name": "Notes sur Paris. - 1883", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95398, "fields": {"name": "Notes sur l'Angleterre. - 1872", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95399, "fields": {"name": "Du suffrage universel et de la manie\u0301re de voter. - 1872", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95400, "fields": {"name": "Philosophie der Kunst", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95401, "fields": {"name": "E\u0301tienne Mayran. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95402, "fields": {"name": "De l'ide\u0301al dans l'art. - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95403, "fields": {"name": "Graindorge, Fre\u0301de\u0301ric T. [Pseud.]: La politique ale\u0301atoire. - [1915]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95404, "fields": {"name": "Philosophie de l'art", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95405, "fields": {"name": "Nouveaux essais de critique et d'histoire. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95406, "fields": {"name": "Derniers essais de critique et d'histoire. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95407, "fields": {"name": "Essais de critique et d'histoire. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95582, "fields": {"name": "Volkssagen aus Vorarlberg. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95583, "fields": {"name": "Volkssagen aus Voralberg. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95584, "fields": {"name": "Beitra\u0308ge zur deutschen Mythologie. - 1862", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95596, "fields": {"name": "Beobachtungen u\u0308ber das Gefu\u0308hl des Scho\u0308nen und Erhabenen. - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95597, "fields": {"name": "Die Religion innerhalb der Grenzen der blossen Vernunft. - 1869", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95598, "fields": {"name": "Beobachtungen u\u0308ber das Gefu\u0308hl des Scho\u0308nen und Erhabenen. - 1766", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95599, "fields": {"name": "Kritik der Urteilskraft. - 1790 [u. o\u0308.]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95600, "fields": {"name": "Gesammelte Schriften", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95601, "fields": {"name": "Metaphysische Anfangsgru\u0308nde der Naturwissenschaft. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95602, "fields": {"name": "Die Religion innerhalb der Grenzen der blo\u00dfen Vernunft. - 1794", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95603, "fields": {"name": "Die Religion innerhalb der Grenzen der blossen Vernunft. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95604, "fields": {"name": "Die Religion innerhalb der Grenzen der blo\u00dfen Vernunft. - 1793", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95847, "fields": {"name": "Das Pestalozzische Institut an das Publikum. - 1811", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95848, "fields": {"name": "Pestalozzi's Erziehungsunternehmung im Verha\u0308ltni\u00df zur Zeitkultur. - 1812", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95867, "fields": {"name": "Bernheim, Ernst: Lehrbuch der historischen Methode. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95868, "fields": {"name": "Bernheim, Ernst: Die ungenu\u0308gende Ausdrucksfa\u0308higkeit der Studierenden. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95869, "fields": {"name": "Bernheim, Ernst: Die gefa\u0308hrdete Stellung unserer deutschen Universita\u0308ten. - 1899", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95870, "fields": {"name": "Bernheim, Ernst: Lehrbuch der historischen Methode. - 1894", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95871, "fields": {"name": "Bernheim, Ernst: Einleitung in die Geschichtswissenschaft. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95872, "fields": {"name": "Bernheim, Ernst: Der Universita\u0308tsunterricht und die Erfordernisse der Gegenwart. - 1898", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95873, "fields": {"name": "Bernheim, Ernst: Julius von Pflugk - Harttung. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95874, "fields": {"name": "Bernheim, Ernst: Geschichtswissenschaft und Erkenntnisstheorie. - 1900 ca.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95875, "fields": {"name": "Bernheim, Ernst: Mittelalterliche Zeitanschauungen in ihrem Einfluss auf Politik und Gesc*. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95876, "fields": {"name": "Bernheim, Ernst: Geschichtsforschung und Geschichtsphilosophie. - 1880", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95893, "fields": {"name": "Lucubratio theologico-moralis circa praecipuum moralitatis systema de conscientia et actibus humanis. - 1747", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95929, "fields": {"name": "Einige Bemerkungen u\u0308ber die Composition des Sophokleischen Philoktet. - 1893", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95930, "fields": {"name": "Das Ko\u0308nigreich Polen vor dem Kriege <1815-1914>. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95931, "fields": {"name": "Janicki, Klemens: Clementis Janicii Carmina ed., praefatione instr., annot. ill. Ludovicu*. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95932, "fields": {"name": "Balkan und naher Orient. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95949, "fields": {"name": "Meyer, Kuno: The instructions of King Cormac mac Airt. - 1909", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95950, "fields": {"name": "Meyer, Kuno: The death-tales of the Ulster heroes. - 1906", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95951, "fields": {"name": "Selections from ancient Irish poetry. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95952, "fields": {"name": "Meyer, Kuno: The Triads of Ireland. - 1906", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95953, "fields": {"name": "Meyer, Kuno: Learning in Ireland in the fifth century and the transmission of letters. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95954, "fields": {"name": "Meyer, Kuno: Fianaigecht. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95955, "fields": {"name": "Meyer, Kuno: Betha Colma\u0301in maic Lu\u0301acha\u0301in. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95956, "fields": {"name": "Peredur ab Efrawe. - 1887", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 95957, "fields": {"name": "The Voyage of Bran Son of Febal to the Land of the Living", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96143, "fields": {"name": "Chronicon Fuchsio-Lupino-Oltardinum sive Annales Hungarici et Transsilvanici", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96144, "fields": {"name": "Aktenma\u0308ssige Darstellung der ungarischen u. siebenbu\u0308rgischen Landtags-*. - 1866", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96145, "fields": {"name": "Bearb. von: Statuten der allgemeinen Kronsta\u0308dter Sparcasse. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96146, "fields": {"name": "Schriftsteller-Lexikon oder biographisch-litera\u0308rische Denk-Bla\u0308tter der Siebenbu\u0308rger Deutschen. - 1868-", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96208, "fields": {"name": "Schuster, Mauriz: Tibull Studien. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96209, "fields": {"name": "Kappelmacher, Alfred: Die Literatur der R\u00f6mer bis zur Karolingerzeit. - 1926-34", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96210, "fields": {"name": "Plinius Caecilius Secundus, Gaius: Epistularum libri novem. - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96211, "fields": {"name": "Schuster, Mauriz: De C. Sollii Apollinaris Sidonii imitationibus studiisque Horatianis. - 1905/06", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96221, "fields": {"name": "Quintilianus, Marcus F.: Institutionis oratoriae libri XII.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96222, "fields": {"name": "Radermacher, Ludwig: Mythos und Sage bei den Griechen. - [1943]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96223, "fields": {"name": "\"Fr\u00f6sche\"", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96224, "fields": {"name": "Radermacher, Ludwig: Das Jenseits im Mythos der Hellenen. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96225, "fields": {"name": "Qui dicitur de elocutione libellus", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96226, "fields": {"name": "Radermacher, Ludwig: Mythos und Sage bei den Griechen. - 1938", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96458, "fields": {"name": "Harmonia sanctorum quatuor Evangeliorum. - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96459, "fields": {"name": "R\u00f6mischer Katechismus. - 1765", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96460, "fields": {"name": "Ars metrica ad stylum elegiacum P. Ovidii Nasonis. - 1755", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96461, "fields": {"name": "Gloria Filiorum Patres Eorum. - 1748", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96462, "fields": {"name": "Monumenta veteris Ecclesiae Brixinensis. - 1765", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96463, "fields": {"name": "Catechismus Romanus abbreviatus. - 1770 - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96464, "fields": {"name": "Aetas millenaria Ecclesiae Aguntinae in Norico.. - 1772", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96465, "fields": {"name": "Ars metrica ad stylum elegiacum P. Ovidii Nasonis plurimis exemplis ... - 1748", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96466, "fields": {"name": "Annales Ecclesiae Sabionensis. - 1760 - 1767", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96467, "fields": {"name": "Praktischer Unterricht f\u00fcr seine Dorfschullehrer und Pfarrkinder. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96620, "fields": {"name": "Manin, Daniele: Venezia 1848-1849. - 1877", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96621, "fields": {"name": "Manin, Daniele: Epistolario politico. - 1878", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96622, "fields": {"name": "Manin, Daniele: Della Veneta Giurisprudenza civile, mercantile e criminale. - 1848", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96623, "fields": {"name": "Manin, Daniele: Venise 1848-1849. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96728, "fields": {"name": "Intelligenz und Wille. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96729, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96730, "fields": {"name": "\u00dcber Institute f\u00fcr Jugendkunde und die Gr\u00fcndung eines Instituts f\u00fcr Jugen*. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96731, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96732, "fields": {"name": "Die Entstehung der ersten Wortbedeutungen beim Kinde. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96733, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96734, "fields": {"name": "P\u00e4dagogisch-psychologische Forschungen. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96735, "fields": {"name": "Pedagogia experimental. - 1960", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96736, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96737, "fields": {"name": "System der \u00c4sthetik. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96738, "fields": {"name": "Die Sprache des Kindes. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96740, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96741, "fields": {"name": "Die Entstehung der ersten Wortbedeutungen beim Kinde. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96742, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96743, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96744, "fields": {"name": "Pedagogia experimental. - 1960", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96745, "fields": {"name": "P\u00e4dagogisch-psychologische Forschungen. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96746, "fields": {"name": "Intelligenz und Wille. - 1913", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96747, "fields": {"name": "Die Sprache des Kindes. - 1903", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96748, "fields": {"name": "Einf\u00fchrung in die \u00c4sthetik der Gegenwart. - 1908", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96749, "fields": {"name": "System der \u00c4sthetik. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96750, "fields": {"name": "\u00dcber Institute f\u00fcr Jugendkunde und die Gr\u00fcndung eines Instituts f\u00fcr Jugen*. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96758, "fields": {"name": "Laudivius : Laudini Eovitis hierosolymitani ad Franciscum Beltrandum ... - 1511", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96759, "fields": {"name": "Magni Turci, i.e. Mahometi Secundi, Turcarum Imperatoris, Epistolae. - 1680", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96813, "fields": {"name": "Geschichte des Mittelalters. - 1910", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96814, "fields": {"name": "Bedeutende M\u00e4nner d\u00fcrens. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96815, "fields": {"name": "Forschungen zur geschichte Ludwigs des Bayern. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96816, "fields": {"name": "Festschrift zum goldenen Jubil\u00e4um des katholischen Gesellen-Vereins in Neuss. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96817, "fields": {"name": "Die Bulle Ne praetereat und die Reconciliationsverhandlungen Ludwigs des Bayers mit dem Papste Johann XXII. - 1885", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96858, "fields": {"name": "Salzburg Und Theile Von Baiern Und \u00d6sterreich. - 1807", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96859, "fields": {"name": "Schlacht bey Biberach. - s.a. [1813]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96860, "fields": {"name": "Plan zur \u00dcbersicht der Kriegsbegebenheiten zwischen der Lahn ... - [1813]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96861, "fields": {"name": "M\u00fcnchen mit Seinen Umgebungen. - [ca. 1840]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96862, "fields": {"name": "Schlacht bey Biberach am zweiten October 1796. - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96863, "fields": {"name": "Neueste General-Post- [und] Strassen-Karte der Oesterreichischen Monarchie. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96864, "fields": {"name": "Plan zur \u00dcbersicht der Kriegsbegebenheiten zwischen der Lahn ... - 1813", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96865, "fields": {"name": "Charte von Oesterreich Ob Der Enns. - 1802", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96947, "fields": {"name": "Obermaier, Hugo: Las Pinturas rupestres del Barranco de Valltorta . - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96948, "fields": {"name": "Obermaier, Hugo: Yacimiento prehist\u00f3rico de las Carolinas . - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96949, "fields": {"name": "Obermaier, Hugo: Los Glaciares cuaternarios de la Sierra del Guadarrama. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96950, "fields": {"name": "Obermaier, Hugo: Fossil Man in Spain. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96951, "fields": {"name": "Obermaier, Hugo: Estudio de los Glaciares de los Picos de Europa. - 1914", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96952, "fields": {"name": "Obermaier, Hugo: Los Glaciares cuaternarios de Sierra Nevada. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96953, "fields": {"name": "Obermaier, Hugo: El hombre f\u00f3sil. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96954, "fields": {"name": "Obermaier, Hugo: El dolmen de Matarrubilla . - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96955, "fields": {"name": "Obermaier, Hugo: Contribuci\u00f3n al estudio del Glaciarismo cuaternario de la Sierra de Gredos. - 1916", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 96956, "fields": {"name": "Obermaier, Hugo: La Cueva del Buxu . - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97430, "fields": {"name": "\u00d6MV - OMV. - 1998", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97529, "fields": {"name": "R\u00fcbezahl. - 1970", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97530, "fields": {"name": "Wie die Welt entdeckt wurde. - 1968", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97531, "fields": {"name": "Das @goldene Spyri-Buch. - 1966", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97532, "fields": {"name": "Heidi. - 1965", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97533, "fields": {"name": "Die @sch\u00f6nsten M\u00e4rchen. - 1967", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97534, "fields": {"name": "Kinder- und Hausm\u00e4rchen. - 2002", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97578, "fields": {"name": "Europ\u00e4ische Integration und die Vereinigten Staaten von Amerika", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97592, "fields": {"name": "Jaroszewicz, Piotr: Przerywam milczenie .... - 1991", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97593, "fields": {"name": "Gierek & Jaroszewicz zeznaj\u0105. - 1990", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97617, "fields": {"name": "Zastosowanie metody Kowalowa w wielkim przemy\u015ble chemicznym", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97623, "fields": {"name": "Neue Wege zur wirtschaftlichen Gestaltung des Bahnbetriebes", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97657, "fields": {"name": "Der @neue Weg der Selbst\u00e4ndigen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97707, "fields": {"name": "Die @Sozialversicherung der Heimatvertriebenen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97723, "fields": {"name": "Kultur- und Sittengeschichte des nieder\u00f6sterreichischen Dorfes. - 1953", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97753, "fields": {"name": "Die @Werksteinindustrie in Niederdonau", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97790, "fields": {"name": "Die @\u00f6ffentlich-gemeinn\u00fctzige Sph\u00e4re des Bankwesens im nationalsozialistischen Staat", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97834, "fields": {"name": "Als die Nacht verging. - 1955", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97849, "fields": {"name": "M\u00fctterliche Schmertzen der unter dem Cre\u00fctz h\u00f6chst betr\u00fcbt stehender Mutter Jesu Mariae. - 1717", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97884, "fields": {"name": "Grundz\u00fcge der Volkswirtschaftslehre. - 1930", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97888, "fields": {"name": "Die @Wirtschaft und Industrie Irans", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97896, "fields": {"name": "Die @Altesunterst\u00fctzung und die Jugendeinstellung", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97933, "fields": {"name": "Sonderpostmarke 50 Jahre \u00f6sterreichischer St\u00e4dtebund", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97943, "fields": {"name": "Zagoskin, Michail N.: Izbrannoe. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97944, "fields": {"name": "Semenov, Vladimir S.: Aleksandr Gercen. - 1989", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97945, "fields": {"name": "Leskov, Nikolaj S.: Zachudalyj rod. - 1985", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97976, "fields": {"name": "Wolf, Hugo: [Manuel Venegas ]. - 1986", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97977, "fields": {"name": "Wolf, Hugo: [Spanisches Liederbuch / Ausw.]. - \u00a91978", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 97986, "fields": {"name": "Die @Qualit\u00e4t des Lebens verbessern", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98006, "fields": {"name": "Aus Wilhelm von Tegetthoff's Nachlass. - 1882", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98024, "fields": {"name": "\u00dcber das Verh\u00e4ltnis von Wace's Roman de Brut zu seiner Quelle, der Historia regum Britanniae des Gottfried von Monmouth", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98116, "fields": {"name": "wien", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98183, "fields": {"name": "Lange, Ludwig: Reiseberichte aus Griechenland. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98184, "fields": {"name": "Lange, Ludwig: Original-Ansichten der vornehmsten St\u00e4dte in Deutschland. - 1832 - 1867", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98185, "fields": {"name": "Lange, Ludwig: Die geschichtliche Entwicklung des Bewegungsbegriffes und ihr voraussich*. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98237, "fields": {"name": "Anselm Feuerbachs Briefe an seine Mutter. - 1911", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98296, "fields": {"name": "Laurent, Paul M.: Histoire de l'empereur Napol\u00e9on. - 1843", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98297, "fields": {"name": "LaFontaine, Jean de: Fables choisies de LaFontaine. - 1818", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98298, "fields": {"name": "Laurent, Paul M.: Histoire de l'empereur Napol\u00e9on. - 1839", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98299, "fields": {"name": "Zw\u00f6lf Stahlstiche zu der Geschichte Napoleons. - 1839", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98300, "fields": {"name": "Laurent, Paul M.: Geschichte des Kaisers Napoleon. - 1840", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98301, "fields": {"name": "Vernet, Horace: Ru\u00dfland. - 1856", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98348, "fields": {"name": "Bryant, William C.: Poems. - 1847", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98551, "fields": {"name": "Hess, Heinrich: Die Fresco-Gem\u00e4lde der K\u00f6niglichen Allerheiligen Hofkapelle zu M\u00fcnchen. - 1837", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98569, "fields": {"name": "Spahn, Martin: Philipp Veit. - 1901", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98570, "fields": {"name": "Schlegel, Dorothea von: Dorothea v. Schlegel geb. Mendelssohn und deren S\u00f6hne Johannes *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98579, "fields": {"name": "Raffaello : Le Logge di Rafaele nel Vaticano", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98580, "fields": {"name": "Raffaello : VII tabulae actorum apostolicorum p.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98581, "fields": {"name": "Apuleius : Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98582, "fields": {"name": "Raffaello : Le Loggie di Raffaello nel Vaticano. - [1772 - 1776]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98583, "fields": {"name": "Buonarroti, Michel A.: Gedichte. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98584, "fields": {"name": "Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98585, "fields": {"name": "Dorigny, Nicolas: Psyches et Amoris nuptiae ac fabula. - 1693", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98586, "fields": {"name": "Ill. zu: Apuleius : Amor und Psyche. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98587, "fields": {"name": "Apuleius Madaurensis, Lucius: Psyche. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98588, "fields": {"name": "Palaestra amoris dicata Veneri", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98604, "fields": {"name": "Waldm\u00fcller, Ferdinand G.: Bilder und Erlebnisse. - 1920 ca.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98605, "fields": {"name": "Waldm\u00fcller, Ferdinand G.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98606, "fields": {"name": "Ferdinand Georg Waldm\u00fcller zum 200. Geburtstag. - 1993", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98696, "fields": {"name": "Overbeck, Friedrich: Friedrich Overbeck's Triumph der Religion in den K\u00fcnsten. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98697, "fields": {"name": "Overbeck, Friedrich: Jesus amator parvulorum. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98714, "fields": {"name": "(Graf) Hans Wilczek erz\u00e4hlt seinen Enkeln Erinnerungen ... - 1933", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98722, "fields": {"name": "Briefe. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98723, "fields": {"name": "Studien zur Gorgo. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98724, "fields": {"name": "Aus meinem Leben 1859-1888. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98725, "fields": {"name": "Wilhelm : Meine Vorfahren. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98726, "fields": {"name": "Trauer und Treue. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98727, "fields": {"name": "Kaiserreden. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98728, "fields": {"name": "Wilhelm : Studien zur Gorgo. - 1936", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98729, "fields": {"name": "Oncken, Wilhelm: Unser Heldenkaiser. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98730, "fields": {"name": "Meine Vorfahren. - 1929", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98731, "fields": {"name": "Vergleichende Geschichtstabellen von 1878 bis zum*. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98732, "fields": {"name": "Mack, Eugen: Das Rottweiler Steuerbuch von 1441. - 1917", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98733, "fields": {"name": "Wilhelm : Briefe. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98734, "fields": {"name": "Klages, Ernst: Heil, Kaiser, Dir!", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98735, "fields": {"name": "Wilhelm : Vergleichende Geschichtstabellen von 1878 bis zum*. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98736, "fields": {"name": "Wilhelm : Aus meinem Leben 1859-1888. - 1927", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98737, "fields": {"name": "Wilhelm : Kaiserreden. - 1902", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98886, "fields": {"name": "An die Gantze Christenheit Ein Hochwichtige Frag ... - 1620", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98891, "fields": {"name": "Feldz\u00fcge in Ungarn und den angr\u00e4nzenden Provinzen. - 1788", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98892, "fields": {"name": "L'operazioni militari fatte in Ungaria (1683-1694). - 1771", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98893, "fields": {"name": "Des Grafen Veterani Feldz\u00fcge in Ungarn .\u0324 von 1683 - 1694. - 1788", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98922, "fields": {"name": "Zim\u0101m al-\u0121an\u0101 al-mu\u1e6drib fi n-na\u1e93m as-s\u0101\u02bfir f\u012b aq\u0101\u1e63\u012b al-ma\u0121rib. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98923, "fields": {"name": "Tar\u0101\u01f5im ri\u01f5\u0101l. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98924, "fields": {"name": "Arabische und persische Handschriften. - [1921]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98925, "fields": {"name": "Biographien von Gew\u00e4hrm\u00e4nnern des Ibn Is\u1e25\u00e2g, haupts\u00e4chlich aus a\u1e0f-\u1e0eahab\u00ee. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98980, "fields": {"name": "Der @\u00e4gyptische Joseph", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98990, "fields": {"name": "HJerinn sind begriffen vier Buecher von menschlicher Proportion durch Albrechten Duerer ... 1528. (VD16 ZV 23128)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98991, "fields": {"name": "Albrecht D\u00fcrer und Wilibald Pirkheimer. - 1828", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98992, "fields": {"name": "Diurnale seu liber precum. - 1514", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98993, "fields": {"name": "Alberti Dureri clarissimi pictoris et Geometrae de Sym\u0303etria partium in rectis formis ... 1532. (VD16 D 2860)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98994, "fields": {"name": "Holzschnitte. - s.a.", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98995, "fields": {"name": "Unterweisung der Messung mit dem Zirkel und Richtscheit. - 1538", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98996, "fields": {"name": "Institutiones geometricae. - 1535", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98997, "fields": {"name": "Elementorum geometricorum libri. - 1606", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98998, "fields": {"name": "Birgitta : Regula sancti salvatoris. 1517. (VD16 B 5594)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98999, "fields": {"name": "M\u0101 Sh\u0101 All\u0101h al-Mi\u1e63r\u012b: MESSAHALAH DE SCIENTIA MOTVS ORBIS ... [Ed. stud. (Ioann.Stabii ... )][\u00dcbers. v. Gerardus ... 1504. (VD16 M 1326)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99000, "fields": {"name": "Hjeri\u00f1 sind begriffen vier biicher von menschlicher Proportion durch Albrechten Duerer von ... 1528. (VD16 D 2859)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99001, "fields": {"name": "Brant, Sebastian: Nauis stultifera a domino sebastiano Brant prim\u0169 edificata: \\[et] lepidissimis teutonice lingue ... 1506. (VD16 B 7078)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99002, "fields": {"name": "Elementorum geometricorum libri. - 1532", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99003, "fields": {"name": "Maximilian I. : Oratio ad su\u0169 \\[pro...]ri\u0169 angel\u0169. DEus \\[pro...]itius esto mihi peccatori. Et sis mihi custos ... 1514. (VD16 M 1657)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99004, "fields": {"name": "Icones Sacrae. - 1604", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99005, "fields": {"name": "Schwalbe, Benedikt: EPITOME IN DIVAE PARTHENICES MARIAE HISTORIAM AB ALBERTO DVRERO NORICO PER FIGVRAS DIGES TAM ... 1511. (VD16 S 4585)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99006, "fields": {"name": "Apocalipsis c\u0169 figuris [von Albrecht D\u00fcrer]. 1511. (VD16 B 5248)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99007, "fields": {"name": "Vier b\u00fccher von menschlicher Proportion. - 1528", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99008, "fields": {"name": "Schwalbe, Benedikt: Passio domini nostri Jesu. ex hieronymo Paduano. Dominico Mancino. Sedulio. et Baptista ... 1511. (VD16 S 4587)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99009, "fields": {"name": "Opera. - 1604", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99075, "fields": {"name": "In memoriam. - 1873", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99092, "fields": {"name": "F\u00fcnf Dichtungen. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99093, "fields": {"name": "Scheffel, Joseph V. von: Gaudeamus!. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99094, "fields": {"name": "Scheffel, Joseph V. von: Frau Aventiure. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99095, "fields": {"name": "Gaudeamus!. - 1868", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99096, "fields": {"name": "Der Trompeter von S\u00e4kkingen. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99097, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1854", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99098, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1900", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99099, "fields": {"name": "Scheffel, Joseph V. von: Juniperus. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99100, "fields": {"name": "Frau Aventiure. - 1870", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99101, "fields": {"name": "Das Gabelbachlied. - [1900]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99102, "fields": {"name": "Scheffel, Joseph V. von: Der Trompeter von S\u00e4kkingen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99103, "fields": {"name": "Ekkehard. - 1855", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99104, "fields": {"name": "Juniperus. - 1871", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99105, "fields": {"name": "Scheffel, Joseph V. von: Ekkehard. - 1855", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99106, "fields": {"name": "Scheffel, Joseph V. von: Das Gabelbachlied. - [1900]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99107, "fields": {"name": "Das Grosse Fass zu Heidelberg. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99108, "fields": {"name": "Scheffel, Joseph V. von: F\u00fcnf Dichtungen. - 1889", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99109, "fields": {"name": "Scheffel, Joseph V. von: Das Grosse Fass zu Heidelberg. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99110, "fields": {"name": "Der Trompeter von S\u00e4kkingen. - 1865", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99156, "fields": {"name": "Faust", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99336, "fields": {"name": "Souscription \u00e0 la gravure repr\u00e9sentant le portrait en pied de M. David. - [ca. 1810]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99337, "fields": {"name": "Le Tableau des Sabines, expos\u00e9 publiquement au Palais National des Sciences et des Arts. - Ca. 1790", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99352, "fields": {"name": "Hamilton, William: Collection of Engravings from ancient Vases. - 1791 - 1795", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99353, "fields": {"name": "Soltau, Dietrich W.: Reineke der Fuchs. - 1830", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99354, "fields": {"name": "Hamilton, William: Collection of engravings from ancient Vases of pure Greek workmanship *", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99355, "fields": {"name": "Tischbein, Johann H.: Homer nach Antiken gezeichnet. - 1801 - 1821", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99356, "fields": {"name": "Tischbein, Johann H.: Figures d'Hom\u00e8re dessin\u00e9es d'apr\u00e8s l'antique. - 1801", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99357, "fields": {"name": "B\u00f6ttiger, Carl A.: Umrisse griechischer Gem\u00e4lde auf antiken i. J. 1789 u. 1790 in Campani*", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99358, "fields": {"name": "Tischbein, Johann H.: Homer nach Antiken gezeichnet", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99369, "fields": {"name": "Museum \u00e9trusque de Lucien Bonaparte, prince de Carpino. Fouilles de 1828 \u00e0 1829. Vases *. - 1829", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99370, "fields": {"name": "Bonaparte, Lucien: R\u00e9volution de brumaire, ou relation des principaux \u00e9v\u00e9venments des *. - 1845", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99371, "fields": {"name": "Bonaparte, Lucien: M\u00e9moires de Lucien Bonaparte prince de Canino. - 1836", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99372, "fields": {"name": "Bonaparte, Lucien: Charlemagne ou l'\u00e9glise d\u00e9livr\u00e9e", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99373, "fields": {"name": "Museum Etrusque de Lucien Bonaparte Prince de Canino. - 1829", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99374, "fields": {"name": "Bonaparte, Lucien: Charle Magne ou l'Eglise delivr\u00e9e. - 1815", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99375, "fields": {"name": "Bonaparte, Lucien: La verit\u00e9 sur les Cent-Jours. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99376, "fields": {"name": "Bonaparte, Lucien: M\u00e9moires de Lucien Bonaparte prince de Canino", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99377, "fields": {"name": "Bonaparte, Lucien: La v\u00e9rit\u00e9 sur les cent-jours. - 1835", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99378, "fields": {"name": "Bonaparte, Lucien: Discours prononc\u00e9 dans le temple de Mars. - [1800]", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99416, "fields": {"name": "Erinnerungen an Ernst von Lasaulx. - 1861", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99417, "fields": {"name": "Adam, Albrecht: Aus dem Leben eines Schlachtenmalers. - 1886", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99418, "fields": {"name": "Geschichte der altdeutschen Dichtkunst in Bayern. - 1862", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99419, "fields": {"name": "Geschichte der deutschen Literatur. - 1853", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99420, "fields": {"name": "Die Entwicklung des deutschen Theaters im Mittelalter und das Ammerg*. - 1861", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99421, "fields": {"name": "Lebenserinnerungen eines 90j\u00e4hr. Altm\u00fcncheners. - 1921", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99422, "fields": {"name": "Kaiser Ludwig der Bayer und sein Stift zu Ettal. - 1860", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99423, "fields": {"name": "Franz Graf Pocci. - 1890", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99591, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99744, "fields": {"name": "\u00dcber die Geschwindigkeit der Hydrolyse der Hexafluoride von Schwefel, Selen und Tellur", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99841, "fields": {"name": "Kolloidchemie. - 1912", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99842, "fields": {"name": "\u00dcber Kolloidchemie unter bes. Ber\u00fccksichtigung d. anorg. Kolloide .... - 1935", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99843, "fields": {"name": "Kolloidchemie. - 1918", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99844, "fields": {"name": "Das kolloide Gold. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99845, "fields": {"name": "Kurzer Leitfaden der technischen Gasanalyse. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99846, "fields": {"name": "Zur Erkenntnis der Kolloide. - 1905", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99847, "fields": {"name": "Zur Erkenntnis der Kolloide. - 1919", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99848, "fields": {"name": "Kolloidchemie. - 1920", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99849, "fields": {"name": "Kolloidchemie. - 1925", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99850, "fields": {"name": "Kolloidchemie. - 1922", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.source", "pk": 1, "fields": {"orig_filename": "Geographiedaten.xlsx", "indexed": false, "pubinfo": "Export of \u00d6BL geo db (3.2016)", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 102, "fields": {"orig_filename": "Bahr_Hermann_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f.", "author": "", "orig_id": 1405476}}, {"model": "metainfo.source", "pk": 103, "fields": {"orig_filename": "Celakovsky_Jaromir_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416946}}, {"model": "metainfo.source", "pk": 104, "fields": {"orig_filename": "Celakovsky_Ladislav_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416947}}, {"model": "metainfo.source", "pk": 105, "fields": {"orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416953}}, {"model": "metainfo.source", "pk": 106, "fields": {"orig_filename": "Charlemont_Hugo_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417029}}, {"model": "metainfo.source", "pk": 107, "fields": {"orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417140}}, {"model": "metainfo.source", "pk": 108, "fields": {"orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417315}}, {"model": "metainfo.source", "pk": 109, "fields": {"orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417317}}, {"model": "metainfo.source", "pk": 110, "fields": {"orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417316}}, {"model": "metainfo.source", "pk": 111, "fields": {"orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417320}}, {"model": "metainfo.source", "pk": 112, "fields": {"orig_filename": "Conze_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f.", "author": "", "orig_id": 1417417}}, {"model": "metainfo.source", "pk": 113, "fields": {"orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417431}}, {"model": "metainfo.source", "pk": 114, "fields": {"orig_filename": "Czerny_Adalbert_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417613}}, {"model": "metainfo.source", "pk": 116, "fields": {"orig_filename": "Czetz_Johann_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f.", "author": "", "orig_id": 1417689}}, {"model": "metainfo.source", "pk": 117, "fields": {"orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417691}}, {"model": "metainfo.source", "pk": 118, "fields": {"orig_filename": "Defregger_Franz_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417167}}, {"model": "metainfo.source", "pk": 119, "fields": {"orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417262}}, {"model": "metainfo.source", "pk": 120, "fields": {"orig_filename": "Doderer_Wilhelm_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421589}}, {"model": "metainfo.source", "pk": 121, "fields": {"orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422065}}, {"model": "metainfo.source", "pk": 122, "fields": {"orig_filename": "Holovsky_Hilde_1917_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417020}}, {"model": "metainfo.source", "pk": 123, "fields": {"orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412571}}, {"model": "metainfo.source", "pk": 124, "fields": {"orig_filename": "Lapaine_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f.", "author": "", "orig_id": 1412681}}, {"model": "metainfo.source", "pk": 125, "fields": {"orig_filename": "Lefler_Heinrich_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413578}}, {"model": "metainfo.source", "pk": 126, "fields": {"orig_filename": "Leichter_Kaethe_1895_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413749}}, {"model": "metainfo.source", "pk": 127, "fields": {"orig_filename": "Leidesdorf_Franz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f.", "author": "", "orig_id": 1413751}}, {"model": "metainfo.source", "pk": 128, "fields": {"orig_filename": "Leitgeb_Hubert_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f.", "author": "", "orig_id": 1413852}}, {"model": "metainfo.source", "pk": 129, "fields": {"orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412686}}, {"model": "metainfo.source", "pk": 130, "fields": {"orig_filename": "Lichtblau_Adolf_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411908}}, {"model": "metainfo.source", "pk": 131, "fields": {"orig_filename": "Lichtblau_Ludwig_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f.", "author": "", "orig_id": 1411907}}, {"model": "metainfo.source", "pk": 132, "fields": {"orig_filename": "Lobmeyr_Josef_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263", "author": "", "orig_id": 1411542}}, {"model": "metainfo.source", "pk": 133, "fields": {"orig_filename": "Loewy_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297", "author": "", "orig_id": 1411913}}, {"model": "metainfo.source", "pk": 134, "fields": {"orig_filename": "Lorenz_Heinrich_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316", "author": "", "orig_id": 1412111}}, {"model": "metainfo.source", "pk": 135, "fields": {"orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f.", "author": "", "orig_id": 1411846}}, {"model": "metainfo.source", "pk": 136, "fields": {"orig_filename": "Maier_Karl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412133}}, {"model": "metainfo.source", "pk": 137, "fields": {"orig_filename": "Manesova_Amalie_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f.", "author": "", "orig_id": 1409111}}, {"model": "metainfo.source", "pk": 138, "fields": {"orig_filename": "Manes_Quido_1828_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409109}}, {"model": "metainfo.source", "pk": 139, "fields": {"orig_filename": "Margulies_Berl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1409490}}, {"model": "metainfo.source", "pk": 140, "fields": {"orig_filename": "Meithner_Karl_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f.", "author": "", "orig_id": 1413879}}, {"model": "metainfo.source", "pk": 141, "fields": {"orig_filename": "Miklosich_Franz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f.", "author": "", "orig_id": 1413368}}, {"model": "metainfo.source", "pk": 142, "fields": {"orig_filename": "Millosicz_Georg_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f.", "author": "", "orig_id": 1413706}}, {"model": "metainfo.source", "pk": 143, "fields": {"orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412553}}, {"model": "metainfo.source", "pk": 144, "fields": {"orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413568}}, {"model": "metainfo.source", "pk": 145, "fields": {"orig_filename": "Novacek_Rudolf_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f.", "author": "", "orig_id": 1408134}}, {"model": "metainfo.source", "pk": 146, "fields": {"orig_filename": "Oellacher_Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408688}}, {"model": "metainfo.source", "pk": 147, "fields": {"orig_filename": "Ortmann_Rudolf_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409161}}, {"model": "metainfo.source", "pk": 148, "fields": {"orig_filename": "Patera_Adolf_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f.", "author": "", "orig_id": 1408720}}, {"model": "metainfo.source", "pk": 149, "fields": {"orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f.", "author": "", "orig_id": 1409360}}, {"model": "metainfo.source", "pk": 150, "fields": {"orig_filename": "Petzold_Emil_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407914}}, {"model": "metainfo.source", "pk": 151, "fields": {"orig_filename": "Poljanec_Leopold_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410619}}, {"model": "metainfo.source", "pk": 152, "fields": {"orig_filename": "Radakovic_Michael_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f.", "author": "", "orig_id": 1409702}}, {"model": "metainfo.source", "pk": 153, "fields": {"orig_filename": "Randa_Maximilian_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411", "author": "", "orig_id": 1410086}}, {"model": "metainfo.source", "pk": 154, "fields": {"orig_filename": "Reichenberger_Andreas_1770_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f.", "author": "", "orig_id": 1406805}}, {"model": "metainfo.source", "pk": 155, "fields": {"orig_filename": "Reiser_Othmar_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406978}}, {"model": "metainfo.source", "pk": 156, "fields": {"orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f.", "author": "", "orig_id": 1407193}}, {"model": "metainfo.source", "pk": 157, "fields": {"orig_filename": "Rotter_Johann_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f.", "author": "", "orig_id": 1407684}}, {"model": "metainfo.source", "pk": 158, "fields": {"orig_filename": "Rumpler_Matthias_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327", "author": "", "orig_id": 1407832}}, {"model": "metainfo.source", "pk": 159, "fields": {"orig_filename": "Schell_Karl_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f.", "author": "", "orig_id": 1406179}}, {"model": "metainfo.source", "pk": 160, "fields": {"orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f.", "author": "", "orig_id": 1406202}}, {"model": "metainfo.source", "pk": 161, "fields": {"orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f.", "author": "", "orig_id": 1406044}}, {"model": "metainfo.source", "pk": 162, "fields": {"orig_filename": "Schikaneder_Jakub_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f.", "author": "", "orig_id": 1406374}}, {"model": "metainfo.source", "pk": 163, "fields": {"orig_filename": "Schindler_Josef_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153", "author": "", "orig_id": 1406252}}, {"model": "metainfo.source", "pk": 164, "fields": {"orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406496}}, {"model": "metainfo.source", "pk": 165, "fields": {"orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f.", "author": "", "orig_id": 1406721}}, {"model": "metainfo.source", "pk": 166, "fields": {"orig_filename": "Schmid_Anton_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f.", "author": "", "orig_id": 1406531}}, {"model": "metainfo.source", "pk": 167, "fields": {"orig_filename": "Schmid_Joseph_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f.", "author": "", "orig_id": 1406597}}, {"model": "metainfo.source", "pk": 168, "fields": {"orig_filename": "Schmutzler_Leopold_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f.", "author": "", "orig_id": 1406623}}, {"model": "metainfo.source", "pk": 169, "fields": {"orig_filename": "Schnitzler_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f.", "author": "", "orig_id": 1406896}}, {"model": "metainfo.source", "pk": 170, "fields": {"orig_filename": "Schober_Alfred_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f.", "author": "", "orig_id": 1406912}}, {"model": "metainfo.source", "pk": 171, "fields": {"orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405414}}, {"model": "metainfo.source", "pk": 172, "fields": {"orig_filename": "Schoenberger_Adolf_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405629}}, {"model": "metainfo.source", "pk": 173, "fields": {"orig_filename": "Schoenberger_Benno_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405634}}, {"model": "metainfo.source", "pk": 174, "fields": {"orig_filename": "Scholl_Joseph_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f.", "author": "", "orig_id": 1412321}}, {"model": "metainfo.source", "pk": 175, "fields": {"orig_filename": "Scholz_Franz_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412411}}, {"model": "metainfo.source", "pk": 176, "fields": {"orig_filename": "Schrammel_Johann_1850_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff.", "author": "", "orig_id": 1411222}}, {"model": "metainfo.source", "pk": 177, "fields": {"orig_filename": "Schreyer_Johann_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411681}}, {"model": "metainfo.source", "pk": 178, "fields": {"orig_filename": "Schroedl_Leopold_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236", "author": "", "orig_id": 1411777}}, {"model": "metainfo.source", "pk": 179, "fields": {"orig_filename": "Schuecker_Edmund_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f.", "author": "", "orig_id": 1412171}}, {"model": "metainfo.source", "pk": 180, "fields": {"orig_filename": "Schwabl_Franz_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f.", "author": "", "orig_id": 1420210}}, {"model": "metainfo.source", "pk": 181, "fields": {"orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f.", "author": "", "orig_id": 1420456}}, {"model": "metainfo.source", "pk": 182, "fields": {"orig_filename": "Schwarz_Johann_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439", "author": "", "orig_id": 1420439}}, {"model": "metainfo.source", "pk": 183, "fields": {"orig_filename": "Schwarz_Kaspar_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445", "author": "", "orig_id": 1420450}}, {"model": "metainfo.source", "pk": 184, "fields": {"orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f.", "author": "", "orig_id": 1439729}}, {"model": "metainfo.source", "pk": 185, "fields": {"orig_filename": "Sehnal_Eugen_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f.", "author": "", "orig_id": 1439478}}, {"model": "metainfo.source", "pk": 186, "fields": {"orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197", "author": "", "orig_id": 1450886}}, {"model": "metainfo.source", "pk": 187, "fields": {"orig_filename": "Sichulski_Kazimierz_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223", "author": "", "orig_id": 1450008}}, {"model": "metainfo.source", "pk": 188, "fields": {"orig_filename": "Snjaric_Lukas_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384", "author": "", "orig_id": 1457373}}, {"model": "metainfo.source", "pk": 189, "fields": {"orig_filename": "Stariha_Janez-Nep_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105", "author": "", "orig_id": 1428070}}, {"model": "metainfo.source", "pk": 190, "fields": {"orig_filename": "Steindler_Olga_1879_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f.", "author": "", "orig_id": 1430730}}, {"model": "metainfo.source", "pk": 191, "fields": {"orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149", "author": "", "orig_id": 1428363}}, {"model": "metainfo.source", "pk": 192, "fields": {"orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f.", "author": "", "orig_id": 1434284}}, {"model": "metainfo.source", "pk": 193, "fields": {"orig_filename": "Stuelz_Jodok_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443", "author": "", "orig_id": 1433097}}, {"model": "metainfo.source", "pk": 194, "fields": {"orig_filename": "Szigligeti_Ede_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154", "author": "", "orig_id": 1434706}}, {"model": "metainfo.source", "pk": 195, "fields": {"orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178", "author": "", "orig_id": 1435139}}, {"model": "metainfo.source", "pk": 196, "fields": {"orig_filename": "Tauber_Richard_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff.", "author": "", "orig_id": 1422288}}, {"model": "metainfo.source", "pk": 197, "fields": {"orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257", "author": "", "orig_id": 1424387}}, {"model": "metainfo.source", "pk": 198, "fields": {"orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 2047416}}, {"model": "metainfo.source", "pk": 199, "fields": {"orig_filename": "Teuber_Emmerich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f.", "author": "", "orig_id": 1448255}}, {"model": "metainfo.source", "pk": 200, "fields": {"orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f.", "author": "", "orig_id": 1424667}}, {"model": "metainfo.source", "pk": 201, "fields": {"orig_filename": "Toelgyessy_Artur_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1458532}}, {"model": "metainfo.source", "pk": 202, "fields": {"orig_filename": "Novotny_Johann_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408236}}, {"model": "metainfo.source", "pk": 203, "fields": {"orig_filename": "Konrath_Matthias_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415528}}, {"model": "metainfo.source", "pk": 204, "fields": {"orig_filename": "Schreyer_Albert_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222", "author": "", "orig_id": 1411613}}, {"model": "metainfo.source", "pk": 205, "fields": {"orig_filename": "Tafatscher_Franz_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 185f.", "author": "", "orig_id": 1458119}}, {"model": "metainfo.source", "pk": 206, "fields": {"orig_filename": "Schoen_Karl_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38", "author": "", "orig_id": 1405460}}, {"model": "metainfo.source", "pk": 207, "fields": {"orig_filename": "Leonardi_Demetrio_1796_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142f.", "author": "", "orig_id": 1412785}}, {"model": "metainfo.source", "pk": 208, "fields": {"orig_filename": "Seyler_Joseph-Anton_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 211", "author": "", "orig_id": 1450963}}, {"model": "metainfo.source", "pk": 209, "fields": {"orig_filename": "Lobisser_Switbert_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257f.", "author": "", "orig_id": 1411455}}, {"model": "metainfo.source", "pk": 210, "fields": {"orig_filename": "Oesterreicher_Tobias_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408703}}, {"model": "metainfo.source", "pk": 211, "fields": {"orig_filename": "Schoefft_August_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 14", "author": "", "orig_id": 1405401}}, {"model": "metainfo.source", "pk": 212, "fields": {"orig_filename": "Slanc_Karel_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348", "author": "", "orig_id": 1459134}}, {"model": "metainfo.source", "pk": 213, "fields": {"orig_filename": "Bruckner_Anton_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117ff.", "author": "", "orig_id": 1420614}}, {"model": "metainfo.source", "pk": 214, "fields": {"orig_filename": "Bettelheim_Anton_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78f.", "author": "", "orig_id": 1418603}}, {"model": "metainfo.source", "pk": 215, "fields": {"orig_filename": "Resch_Franz_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84", "author": "", "orig_id": 1407002}}, {"model": "metainfo.source", "pk": 216, "fields": {"orig_filename": "Schmid_Josef_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275", "author": "", "orig_id": 1406594}}, {"model": "metainfo.source", "pk": 217, "fields": {"orig_filename": "Schrey-Redlwerth_Robert_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220", "author": "", "orig_id": 1411607}}, {"model": "metainfo.source", "pk": 218, "fields": {"orig_filename": "Szalay_Imre_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109f.", "author": "", "orig_id": 1434929}}, {"model": "metainfo.source", "pk": 219, "fields": {"orig_filename": "Nicoladoni_Karl_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 113", "author": "", "orig_id": 1408941}}, {"model": "metainfo.source", "pk": 220, "fields": {"orig_filename": "Schmelkes_Gottfried_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 232", "author": "", "orig_id": 1406508}}, {"model": "metainfo.source", "pk": 221, "fields": {"orig_filename": "Melzer_Raimund_1808_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412625}}, {"model": "metainfo.source", "pk": 222, "fields": {"orig_filename": "Schumann_Richard_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 367f.", "author": "", "orig_id": 1419960}}, {"model": "metainfo.source", "pk": 223, "fields": {"orig_filename": "Kovachich_Jozsef-Miklos_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416438}}, {"model": "metainfo.source", "pk": 224, "fields": {"orig_filename": "Kanya_Kalman_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414424}}, {"model": "metainfo.source", "pk": 225, "fields": {"orig_filename": "Mueller-Reichenstein_Franz-Josef_1742_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431", "author": "", "orig_id": 1413644}}, {"model": "metainfo.source", "pk": 226, "fields": {"orig_filename": "Todesco_Moritz_1816_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 364", "author": "", "orig_id": 1423650}}, {"model": "metainfo.source", "pk": 227, "fields": {"orig_filename": "Schmutzer_Philipp-Maximilian_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 350f.", "author": "", "orig_id": 1406711}}, {"model": "metainfo.source", "pk": 228, "fields": {"orig_filename": "Luger_Engelbert_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356", "author": "", "orig_id": 1411114}}, {"model": "metainfo.source", "pk": 229, "fields": {"orig_filename": "Levec_Vladimir_1877_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411633}}, {"model": "metainfo.source", "pk": 230, "fields": {"orig_filename": "Marchesi_Pompeo_1789_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409376}}, {"model": "metainfo.source", "pk": 231, "fields": {"orig_filename": "Schubert-Soldern_Zdenko_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278f.", "author": "", "orig_id": 1412151}}, {"model": "metainfo.source", "pk": 232, "fields": {"orig_filename": "Komaromy_Ferenc_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415419}}, {"model": "metainfo.source", "pk": 233, "fields": {"orig_filename": "Schmid_Josef-Alois_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 277f.", "author": "", "orig_id": 1406404}}, {"model": "metainfo.source", "pk": 234, "fields": {"orig_filename": "Foglar_Ludwig_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421447}}, {"model": "metainfo.source", "pk": 235, "fields": {"orig_filename": "Schwarzenberg_Johann-Ii_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13", "author": "", "orig_id": 1439586}}, {"model": "metainfo.source", "pk": 236, "fields": {"orig_filename": "Rienoessl_Heinrich_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156", "author": "", "orig_id": 1407336}}, {"model": "metainfo.source", "pk": 237, "fields": {"orig_filename": "Koszta_Jozsef_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157", "author": "", "orig_id": 1416337}}, {"model": "metainfo.source", "pk": 238, "fields": {"orig_filename": "Schulz_Ferdinand_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 345", "author": "", "orig_id": 1419820}}, {"model": "metainfo.source", "pk": 239, "fields": {"orig_filename": "Grosz_Wilhelm_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419394}}, {"model": "metainfo.source", "pk": 240, "fields": {"orig_filename": "Schoen_Anton_1782_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 30", "author": "", "orig_id": 1405445}}, {"model": "metainfo.source", "pk": 241, "fields": {"orig_filename": "Lelli_Giovanni-Batt_1827_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412507}}, {"model": "metainfo.source", "pk": 242, "fields": {"orig_filename": "Hermann_Heinrich_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286f.", "author": "", "orig_id": 1420735}}, {"model": "metainfo.source", "pk": 243, "fields": {"orig_filename": "Perathoner_Anton_1864_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408094}}, {"model": "metainfo.source", "pk": 244, "fields": {"orig_filename": "Steiger-Amstein_Anton-David_1755_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 145", "author": "", "orig_id": 1428303}}, {"model": "metainfo.source", "pk": 245, "fields": {"orig_filename": "Lorinser_Karl-Ignaz_1796_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412207}}, {"model": "metainfo.source", "pk": 246, "fields": {"orig_filename": "Kofler_Ephraim_1811_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416314}}, {"model": "metainfo.source", "pk": 247, "fields": {"orig_filename": "Kunesch_Adalbert_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415762}}, {"model": "metainfo.source", "pk": 248, "fields": {"orig_filename": "Leybold_Heinrich-Gustav-Adolf_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411807}}, {"model": "metainfo.source", "pk": 249, "fields": {"orig_filename": "Kautsky_Hans_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415121}}, {"model": "metainfo.source", "pk": 250, "fields": {"orig_filename": "Rodler_Walther_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197", "author": "", "orig_id": 1407341}}, {"model": "metainfo.source", "pk": 251, "fields": {"orig_filename": "Tadra_Ferdinand_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 184f.", "author": "", "orig_id": 1422350}}, {"model": "metainfo.source", "pk": 252, "fields": {"orig_filename": "Jelinek_Hugo_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414241}}, {"model": "metainfo.source", "pk": 253, "fields": {"orig_filename": "Lunacek_Vladimir_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369f.", "author": "", "orig_id": 1411298}}, {"model": "metainfo.source", "pk": 254, "fields": {"orig_filename": "Krzisch_Josef-Friedrich_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308f.", "author": "", "orig_id": 1416645}}, {"model": "metainfo.source", "pk": 255, "fields": {"orig_filename": "Roller_Julius_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226", "author": "", "orig_id": 1407462}}, {"model": "metainfo.source", "pk": 256, "fields": {"orig_filename": "Marco_Josef_1781_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409382}}, {"model": "metainfo.source", "pk": 257, "fields": {"orig_filename": "Innerkofler_Veit_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37f.", "author": "", "orig_id": 1414586}}, {"model": "metainfo.source", "pk": 258, "fields": {"orig_filename": "Jaklic_Fran_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63f.", "author": "", "orig_id": 1414992}}, {"model": "metainfo.source", "pk": 259, "fields": {"orig_filename": "Gerl_Thaddaeus_1774_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421767}}, {"model": "metainfo.source", "pk": 260, "fields": {"orig_filename": "Schroeer_Rudolf_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411782}}, {"model": "metainfo.source", "pk": 261, "fields": {"orig_filename": "Schuster_Gustav_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 386f.", "author": "", "orig_id": 1420053}}, {"model": "metainfo.source", "pk": 262, "fields": {"orig_filename": "Tisza-Borosjenoe_Kalman_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 356f.", "author": "", "orig_id": 1423923}}, {"model": "metainfo.source", "pk": 263, "fields": {"orig_filename": "Stadler_Toni_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 76", "author": "", "orig_id": 1428975}}, {"model": "metainfo.source", "pk": 264, "fields": {"orig_filename": "Karvasy_Agoston_1809_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414782}}, {"model": "metainfo.source", "pk": 265, "fields": {"orig_filename": "Nagy-Somlyo_Franz_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410851}}, {"model": "metainfo.source", "pk": 266, "fields": {"orig_filename": "Soxhlet_Eugen__1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438506}}, {"model": "metainfo.source", "pk": 267, "fields": {"orig_filename": "Steller_Johann_1768_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 203f.", "author": "", "orig_id": 1429692}}, {"model": "metainfo.source", "pk": 268, "fields": {"orig_filename": "Perkonig_Josef-Friedrich_1890_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1470836}}, {"model": "metainfo.source", "pk": 269, "fields": {"orig_filename": "Malonyay_Dezsoe_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409008}}, {"model": "metainfo.source", "pk": 270, "fields": {"orig_filename": "Klemm_Joseph-Ferdinand_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396f.", "author": "", "orig_id": 1419193}}, {"model": "metainfo.source", "pk": 271, "fields": {"orig_filename": "Csorich-Monte-Creto_Anton_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417520}}, {"model": "metainfo.source", "pk": 272, "fields": {"orig_filename": "Gebauer_Franz-Xaver_1784_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421573}}, {"model": "metainfo.source", "pk": 273, "fields": {"orig_filename": "Rosmini-Serbati_Antonio_1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 259f.", "author": "", "orig_id": 1407594}}, {"model": "metainfo.source", "pk": 274, "fields": {"orig_filename": "Hetz_Anton_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417179}}, {"model": "metainfo.source", "pk": 275, "fields": {"orig_filename": "Strickner_Andreas_1863_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402", "author": "", "orig_id": 1432936}}, {"model": "metainfo.source", "pk": 276, "fields": {"orig_filename": "Schoeller_Gustav_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405411}}, {"model": "metainfo.source", "pk": 277, "fields": {"orig_filename": "Kurowski_Marie_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415936}}, {"model": "metainfo.source", "pk": 278, "fields": {"orig_filename": "Sorgato_Antonio_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431", "author": "", "orig_id": 1468243}}, {"model": "metainfo.source", "pk": 279, "fields": {"orig_filename": "Seuffert_Bernhard-Joseph-Luther_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198f.", "author": "", "orig_id": 1450890}}, {"model": "metainfo.source", "pk": 280, "fields": {"orig_filename": "Froehlich_Friedrich-Wilhelm_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420792}}, {"model": "metainfo.source", "pk": 281, "fields": {"orig_filename": "Meder_Eduard_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182f.", "author": "", "orig_id": 1413614}}, {"model": "metainfo.source", "pk": 282, "fields": {"orig_filename": "Kapaun_Franz_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218f.", "author": "", "orig_id": 1414426}}, {"model": "metainfo.source", "pk": 283, "fields": {"orig_filename": "Schlier_Johann-Ev_1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 204f.", "author": "", "orig_id": 1406456}}, {"model": "metainfo.source", "pk": 284, "fields": {"orig_filename": "Hauser_Franz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418597}}, {"model": "metainfo.source", "pk": 285, "fields": {"orig_filename": "Szabo_Endre_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 99", "author": "", "orig_id": 1455287}}, {"model": "metainfo.source", "pk": 286, "fields": {"orig_filename": "Beyschlag_Otto_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420077}}, {"model": "metainfo.source", "pk": 287, "fields": {"orig_filename": "Stubenberg_Joseph_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 436f.", "author": "", "orig_id": 1432740}}, {"model": "metainfo.source", "pk": 288, "fields": {"orig_filename": "Scholz-Benneburg_Franz_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 135f.", "author": "", "orig_id": 1412425}}, {"model": "metainfo.source", "pk": 289, "fields": {"orig_filename": "Haswell_John_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 206f.", "author": "", "orig_id": 1418485}}, {"model": "metainfo.source", "pk": 290, "fields": {"orig_filename": "Kaessmayer_Moriz_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169f.", "author": "", "orig_id": 1415115}}, {"model": "metainfo.source", "pk": 291, "fields": {"orig_filename": "Skoff_Primus_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327", "author": "", "orig_id": 1458861}}, {"model": "metainfo.source", "pk": 292, "fields": {"orig_filename": "Schrecker_Maximilian_1857_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 184", "author": "", "orig_id": 1411315}}, {"model": "metainfo.source", "pk": 293, "fields": {"orig_filename": "Motloch_Theodor_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413202}}, {"model": "metainfo.source", "pk": 294, "fields": {"orig_filename": "Kubitschek_Wilhelm_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 314f.", "author": "", "orig_id": 1415287}}, {"model": "metainfo.source", "pk": 295, "fields": {"orig_filename": "Neuhauser_Albert_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85f.", "author": "", "orig_id": 1408658}}, {"model": "metainfo.source", "pk": 296, "fields": {"orig_filename": "Spielmann_Alois_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1426788}}, {"model": "metainfo.source", "pk": 297, "fields": {"orig_filename": "Kolarsky_Antonin_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416518}}, {"model": "metainfo.source", "pk": 298, "fields": {"orig_filename": "Hessen-Homburg_Friedrich-Joseph-Ludwig-Karl-August_1769_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417099}}, {"model": "metainfo.source", "pk": 299, "fields": {"orig_filename": "Skene_Alfred_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 320f.", "author": "", "orig_id": 1458777}}, {"model": "metainfo.source", "pk": 300, "fields": {"orig_filename": "Linder_Josef_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412383}}, {"model": "metainfo.source", "pk": 301, "fields": {"orig_filename": "Schmedes_Erik_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 229", "author": "", "orig_id": 1406502}}, {"model": "metainfo.source", "pk": 302, "fields": {"orig_filename": "Brunner_Eduard_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420629}}, {"model": "metainfo.source", "pk": 303, "fields": {"orig_filename": "Salvagnini_Enrico_1836_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 397", "author": "", "orig_id": 1407933}}, {"model": "metainfo.source", "pk": 304, "fields": {"orig_filename": "Fernkorn_Anton-Dominik_1813_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420952}}, {"model": "metainfo.source", "pk": 305, "fields": {"orig_filename": "Marburg_Otto_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409302}}, {"model": "metainfo.source", "pk": 306, "fields": {"orig_filename": "Polic_Ladislav_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410605}}, {"model": "metainfo.source", "pk": 307, "fields": {"orig_filename": "Kudelka_Josef_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415369}}, {"model": "metainfo.source", "pk": 308, "fields": {"orig_filename": "Oss_Domenico_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 258f.", "author": "", "orig_id": 1409240}}, {"model": "metainfo.source", "pk": 309, "fields": {"orig_filename": "Perko_Ivan-Andrej_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408195}}, {"model": "metainfo.source", "pk": 310, "fields": {"orig_filename": "Groebner_Josef-Mathias_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419070}}, {"model": "metainfo.source", "pk": 311, "fields": {"orig_filename": "Hofmann_Paul_1798_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416823}}, {"model": "metainfo.source", "pk": 312, "fields": {"orig_filename": "Kaan-Albest_Jindrich_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161f.", "author": "", "orig_id": 1415021}}, {"model": "metainfo.source", "pk": 313, "fields": {"orig_filename": "Schweiger-Lerchenfeld_Amand_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 40f.", "author": "", "orig_id": 1439716}}, {"model": "metainfo.source", "pk": 314, "fields": {"orig_filename": "Kudernatsch_Vinzenz_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415370}}, {"model": "metainfo.source", "pk": 315, "fields": {"orig_filename": "Berlepsch_Franz_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74f.", "author": "", "orig_id": 1421210}}, {"model": "metainfo.source", "pk": 316, "fields": {"orig_filename": "Reichel_Karl-Anton_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29f.", "author": "", "orig_id": 1406800}}, {"model": "metainfo.source", "pk": 317, "fields": {"orig_filename": "Lavos_Josef_1807_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413046}}, {"model": "metainfo.source", "pk": 318, "fields": {"orig_filename": "Hecke_Ludwig_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234", "author": "", "orig_id": 1417361}}, {"model": "metainfo.source", "pk": 319, "fields": {"orig_filename": "Stolba_Josef_1846_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 310", "author": "", "orig_id": 1431030}}, {"model": "metainfo.source", "pk": 320, "fields": {"orig_filename": "Putzker_Albrecht_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349", "author": "", "orig_id": 1409516}}, {"model": "metainfo.source", "pk": 321, "fields": {"orig_filename": "Babukic_Vjekoslav_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420828}}, {"model": "metainfo.source", "pk": 322, "fields": {"orig_filename": "Sonndorfer_Rudolf_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 420", "author": "", "orig_id": 1438691}}, {"model": "metainfo.source", "pk": 323, "fields": {"orig_filename": "Ivekovic_Franjo_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48f.", "author": "", "orig_id": 1414757}}, {"model": "metainfo.source", "pk": 324, "fields": {"orig_filename": "Phillips_George_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 45", "author": "", "orig_id": 1410402}}, {"model": "metainfo.source", "pk": 325, "fields": {"orig_filename": "Pokorny_Alois_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160", "author": "", "orig_id": 1410349}}, {"model": "metainfo.source", "pk": 326, "fields": {"orig_filename": "Sauter_Anton-Eleutherius_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 445f.", "author": "", "orig_id": 1408043}}, {"model": "metainfo.source", "pk": 327, "fields": {"orig_filename": "Schwoiser_Eduard_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66", "author": "", "orig_id": 1440116}}, {"model": "metainfo.source", "pk": 328, "fields": {"orig_filename": "Kralik-Meyrswalden_Wilhelm_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 200", "author": "", "orig_id": 1415353}}, {"model": "metainfo.source", "pk": 329, "fields": {"orig_filename": "Moses_Leopold_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390f.", "author": "", "orig_id": 1413190}}, {"model": "metainfo.source", "pk": 330, "fields": {"orig_filename": "Meindl_Konrad_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195", "author": "", "orig_id": 1413790}}, {"model": "metainfo.source", "pk": 331, "fields": {"orig_filename": "Moser_Alois_1905_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385", "author": "", "orig_id": 1413107}}, {"model": "metainfo.source", "pk": 332, "fields": {"orig_filename": "Fuegner_Heinrich_1822_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420975}}, {"model": "metainfo.source", "pk": 333, "fields": {"orig_filename": "Kober_Leo_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411344}}, {"model": "metainfo.source", "pk": 334, "fields": {"orig_filename": "Martinez_August_1794_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 116f.", "author": "", "orig_id": 1408480}}, {"model": "metainfo.source", "pk": 335, "fields": {"orig_filename": "Mniszek-Tchorznicki_Aleksander_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332", "author": "", "orig_id": 1412459}}, {"model": "metainfo.source", "pk": 336, "fields": {"orig_filename": "Goldhammer_Leo_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23", "author": "", "orig_id": 1418348}}, {"model": "metainfo.source", "pk": 337, "fields": {"orig_filename": "Bruck_Karl-Ludwig_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420612}}, {"model": "metainfo.source", "pk": 338, "fields": {"orig_filename": "Rieger_Roman_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151f.", "author": "", "orig_id": 1407324}}, {"model": "metainfo.source", "pk": 339, "fields": {"orig_filename": "Lauer_Joseph_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48", "author": "", "orig_id": 1412961}}, {"model": "metainfo.source", "pk": 340, "fields": {"orig_filename": "Litta-Visconti-Arese_Giulio-Renato_1763_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250", "author": "", "orig_id": 1411369}}, {"model": "metainfo.source", "pk": 341, "fields": {"orig_filename": "Maier_Franz_1814_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422", "author": "", "orig_id": 1411953}}, {"model": "metainfo.source", "pk": 342, "fields": {"orig_filename": "Egg_Josef_1820_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420938}}, {"model": "metainfo.source", "pk": 343, "fields": {"orig_filename": "Schoenfeld_Adolf_1828_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 70", "author": "", "orig_id": 1405787}}, {"model": "metainfo.source", "pk": 344, "fields": {"orig_filename": "Schroeder_Artur_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 228f.", "author": "", "orig_id": 1411696}}, {"model": "metainfo.source", "pk": 345, "fields": {"orig_filename": "Merk_Josef_1795_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230", "author": "", "orig_id": 1412730}}, {"model": "metainfo.source", "pk": 346, "fields": {"orig_filename": "Kun_Bertalan_1817_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346f.", "author": "", "orig_id": 1415748}}, {"model": "metainfo.source", "pk": 347, "fields": {"orig_filename": "Hauser_Anton_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418595}}, {"model": "metainfo.source", "pk": 348, "fields": {"orig_filename": "Hron_Karl_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417591}}, {"model": "metainfo.source", "pk": 349, "fields": {"orig_filename": "Tepina_Lovro_1882_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 251", "author": "", "orig_id": 2168097}}, {"model": "metainfo.source", "pk": 350, "fields": {"orig_filename": "Herrmann_Leopold-Franz_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416984}}, {"model": "metainfo.source", "pk": 351, "fields": {"orig_filename": "Pakies_Jozef-Henryk_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 293f.", "author": "", "orig_id": 1408168}}, {"model": "metainfo.source", "pk": 352, "fields": {"orig_filename": "Korn_Maximilian_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129f.", "author": "", "orig_id": 1411921}}, {"model": "metainfo.source", "pk": 353, "fields": {"orig_filename": "Caffi_Francesco_1778_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416761}}, {"model": "metainfo.source", "pk": 354, "fields": {"orig_filename": "Nizalowski_Franciszek_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409217}}, {"model": "metainfo.source", "pk": 355, "fields": {"orig_filename": "Hoenig_Franz_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417932}}, {"model": "metainfo.source", "pk": 356, "fields": {"orig_filename": "Presl_Jan-Svatopluk_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 267", "author": "", "orig_id": 1410065}}, {"model": "metainfo.source", "pk": 357, "fields": {"orig_filename": "Spagnoli_Antonio_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 445", "author": "", "orig_id": 1426809}}, {"model": "metainfo.source", "pk": 358, "fields": {"orig_filename": "Eberhart_Ernest_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422159}}, {"model": "metainfo.source", "pk": 359, "fields": {"orig_filename": "Meixner_Paul-Hermann_1891_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206", "author": "", "orig_id": 1413886}}, {"model": "metainfo.source", "pk": 360, "fields": {"orig_filename": "Kalic_Dimitrije-Mita_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414094}}, {"model": "metainfo.source", "pk": 361, "fields": {"orig_filename": "Gappmayr_Peter_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421371}}, {"model": "metainfo.source", "pk": 362, "fields": {"orig_filename": "Kirchl_Adolf_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414721}}, {"model": "metainfo.source", "pk": 363, "fields": {"orig_filename": "Szarnovszky_Ferenc_1863_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 118f.", "author": "", "orig_id": 1435900}}, {"model": "metainfo.source", "pk": 364, "fields": {"orig_filename": "Silberer_Franz_1871_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 260f.", "author": "", "orig_id": 1458072}}, {"model": "metainfo.source", "pk": 365, "fields": {"orig_filename": "Schwarzenberg-Czerny_Franciszek_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 26", "author": "", "orig_id": 1439602}}, {"model": "metainfo.source", "pk": 366, "fields": {"orig_filename": "Sestak_Adalbert_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 196", "author": "", "orig_id": 1450884}}, {"model": "metainfo.source", "pk": 367, "fields": {"orig_filename": "Okunevskyj_Jaroslaw_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408868}}, {"model": "metainfo.source", "pk": 368, "fields": {"orig_filename": "Perathoner_Johann_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411f.", "author": "", "orig_id": 1408095}}, {"model": "metainfo.source", "pk": 369, "fields": {"orig_filename": "Hebbel_Christian-Friedrich_1813_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229ff.", "author": "", "orig_id": 1417352}}, {"model": "metainfo.source", "pk": 370, "fields": {"orig_filename": "Frank_Gustav_1807_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421643}}, {"model": "metainfo.source", "pk": 371, "fields": {"orig_filename": "Gams_Eduard_1874_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421281}}, {"model": "metainfo.source", "pk": 372, "fields": {"orig_filename": "Perini_Carlo_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 420f.", "author": "", "orig_id": 1408191}}, {"model": "metainfo.source", "pk": 373, "fields": {"orig_filename": "Morandell_Josef-Valentin_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 366", "author": "", "orig_id": 1412840}}, {"model": "metainfo.source", "pk": 374, "fields": {"orig_filename": "Barak_Josef_1833_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405703}}, {"model": "metainfo.source", "pk": 375, "fields": {"orig_filename": "Leitenberger_Franz_1761_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 112", "author": "", "orig_id": 1413844}}, {"model": "metainfo.source", "pk": 376, "fields": {"orig_filename": "Kovacs_Edgar_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416446}}, {"model": "metainfo.source", "pk": 377, "fields": {"orig_filename": "Jakab_Elek_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414926}}, {"model": "metainfo.source", "pk": 378, "fields": {"orig_filename": "Steyskal_Karl-Franz_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245", "author": "", "orig_id": 1429359}}, {"model": "metainfo.source", "pk": 379, "fields": {"orig_filename": "Seefehlner_Egon-Ewald_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 97f.", "author": "", "orig_id": 1439335}}, {"model": "metainfo.source", "pk": 380, "fields": {"orig_filename": "Klein_Franz_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378", "author": "", "orig_id": 1418778}}, {"model": "metainfo.source", "pk": 381, "fields": {"orig_filename": "Soxhlet_Franz_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 438", "author": "", "orig_id": 1438508}}, {"model": "metainfo.source", "pk": 382, "fields": {"orig_filename": "Krenner_Jozsef-Sandor_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416013}}, {"model": "metainfo.source", "pk": 383, "fields": {"orig_filename": "Sava_Karl_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447", "author": "", "orig_id": 1408046}}, {"model": "metainfo.source", "pk": 384, "fields": {"orig_filename": "Halban_Hans_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157f.", "author": "", "orig_id": 1419254}}, {"model": "metainfo.source", "pk": 385, "fields": {"orig_filename": "Kowarz_Wilhelm-Maria_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416610}}, {"model": "metainfo.source", "pk": 386, "fields": {"orig_filename": "Herzfelder_Henriette_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417077}}, {"model": "metainfo.source", "pk": 387, "fields": {"orig_filename": "Stoessl_Otto_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298", "author": "", "orig_id": 1431896}}, {"model": "metainfo.source", "pk": 388, "fields": {"orig_filename": "Issleib_Ludwig_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414744}}, {"model": "metainfo.source", "pk": 389, "fields": {"orig_filename": "Lindenthaler_Michael_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412382}}, {"model": "metainfo.source", "pk": 390, "fields": {"orig_filename": "Spitzer_Josef-Anton_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 40f.", "author": "", "orig_id": 1429173}}, {"model": "metainfo.source", "pk": 391, "fields": {"orig_filename": "Krauss_Hans-Nikolaus_1861_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415723}}, {"model": "metainfo.source", "pk": 392, "fields": {"orig_filename": "Luksch_Richard-Joseph_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 367", "author": "", "orig_id": 1411289}}, {"model": "metainfo.source", "pk": 393, "fields": {"orig_filename": "Hatvany-Deutsch_Josef_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418493}}, {"model": "metainfo.source", "pk": 394, "fields": {"orig_filename": "Oberziner_Lodovico_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408585}}, {"model": "metainfo.source", "pk": 395, "fields": {"orig_filename": "Hausotter_Johann_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418680}}, {"model": "metainfo.source", "pk": 396, "fields": {"orig_filename": "Thornton_Jonathan_1776_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311", "author": "", "orig_id": 2264957}}, {"model": "metainfo.source", "pk": 397, "fields": {"orig_filename": "Thoroczkai-Wigand_Ede_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311f.", "author": "", "orig_id": 2175396}}, {"model": "metainfo.source", "pk": 398, "fields": {"orig_filename": "Thorsch_Alexander_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 312f.", "author": "", "orig_id": 1424538}}, {"model": "metainfo.source", "pk": 399, "fields": {"orig_filename": "Thorsch_Alphons_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313", "author": "", "orig_id": 1414481}}, {"model": "metainfo.source", "pk": 400, "fields": {"orig_filename": "Thorsch_David_1832_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313", "author": "", "orig_id": 2247326}}, {"model": "metainfo.source", "pk": 401, "fields": {"orig_filename": "Thorsch_Ernestine_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 2281795}}, {"model": "metainfo.source", "pk": 402, "fields": {"orig_filename": "Thorsch_Koppelmann_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 313f.", "author": "", "orig_id": 2262624}}, {"model": "metainfo.source", "pk": 403, "fields": {"orig_filename": "Thorsch_Otto_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 1424541}}, {"model": "metainfo.source", "pk": 404, "fields": {"orig_filename": "Thorsch_Philipp_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314", "author": "", "orig_id": 1424542}}, {"model": "metainfo.source", "pk": 405, "fields": {"orig_filename": "Thuemen_Felix_1839_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 314f.", "author": "", "orig_id": 1424543}}, {"model": "metainfo.source", "pk": 406, "fields": {"orig_filename": "Thuerheim_Andreas-Joseph_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 315f.", "author": "", "orig_id": 1424545}}, {"model": "metainfo.source", "pk": 407, "fields": {"orig_filename": "Thuerheim_Louise_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 316", "author": "", "orig_id": 1424546}}, {"model": "metainfo.source", "pk": 408, "fields": {"orig_filename": "Thugut_Franz-Maria_1736_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 316f.", "author": "", "orig_id": 1424578}}, {"model": "metainfo.source", "pk": 409, "fields": {"orig_filename": "Thuille_Ludwig_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 317f.", "author": "", "orig_id": 1424581}}, {"model": "metainfo.source", "pk": 410, "fields": {"orig_filename": "Thullie_Maksymilian-Marceli_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 318f.", "author": "", "orig_id": 1424583}}, {"model": "metainfo.source", "pk": 411, "fields": {"orig_filename": "Thumser_Viktor_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320", "author": "", "orig_id": 1424631}}, {"model": "metainfo.source", "pk": 412, "fields": {"orig_filename": "Thum_Anton_1788_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 319", "author": "", "orig_id": 1424586}}, {"model": "metainfo.source", "pk": 413, "fields": {"orig_filename": "Thum_Theodor_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 319f.", "author": "", "orig_id": 1449321}}, {"model": "metainfo.source", "pk": 414, "fields": {"orig_filename": "Thun-Hohenstein-Salm-Reifferscheid_Christiane_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 329f.", "author": "", "orig_id": 1423753}}, {"model": "metainfo.source", "pk": 415, "fields": {"orig_filename": "Thun-Hohenstein-Salm-Reifferscheid_Oswald_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 330f.", "author": "", "orig_id": 1423714}}, {"model": "metainfo.source", "pk": 416, "fields": {"orig_filename": "Thun-Hohenstein_Franz-Anton_1809_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 323f.", "author": "", "orig_id": 1424114}}, {"model": "metainfo.source", "pk": 417, "fields": {"orig_filename": "Thun-Hohenstein_Franz_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 321f.", "author": "", "orig_id": 1424013}}, {"model": "metainfo.source", "pk": 418, "fields": {"orig_filename": "Thun-Hohenstein_Franz_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 322f.", "author": "", "orig_id": 1424117}}, {"model": "metainfo.source", "pk": 419, "fields": {"orig_filename": "Thun-Hohenstein_Friedrich_1810_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 324", "author": "", "orig_id": 1424118}}, {"model": "metainfo.source", "pk": 420, "fields": {"orig_filename": "Thun-Hohenstein_Galeazzo-Maria-Fra_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 324f.", "author": "", "orig_id": 1424153}}, {"model": "metainfo.source", "pk": 421, "fields": {"orig_filename": "Thun-Hohenstein_Guido_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 325", "author": "", "orig_id": 1424154}}, {"model": "metainfo.source", "pk": 422, "fields": {"orig_filename": "Thun-Hohenstein_Jaroslav_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 325f.", "author": "", "orig_id": 1443096}}, {"model": "metainfo.source", "pk": 423, "fields": {"orig_filename": "Thun-Hohenstein_Karl_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 326", "author": "", "orig_id": 1456388}}, {"model": "metainfo.source", "pk": 424, "fields": {"orig_filename": "Thun-Hohenstein_Leopold-Leonhard_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 327f.", "author": "", "orig_id": 1424149}}, {"model": "metainfo.source", "pk": 425, "fields": {"orig_filename": "Thun-Hohenstein_Leo_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 326f.", "author": "", "orig_id": 1424159}}, {"model": "metainfo.source", "pk": 426, "fields": {"orig_filename": "Thun-Hohenstein_Maximilian_1887_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 328f.", "author": "", "orig_id": 1424560}}, {"model": "metainfo.source", "pk": 427, "fields": {"orig_filename": "Thun-Hohenstein_Sigmund_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 329", "author": "", "orig_id": 1423752}}, {"model": "metainfo.source", "pk": 428, "fields": {"orig_filename": "Thurn-Taxis_Alexander_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331", "author": "", "orig_id": 1448599}}, {"model": "metainfo.source", "pk": 429, "fields": {"orig_filename": "Thurn-Taxis_Emerich_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331", "author": "", "orig_id": 1423762}}, {"model": "metainfo.source", "pk": 430, "fields": {"orig_filename": "Thurn-Taxis_Friedrich-Hannibal_1799_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 331f.", "author": "", "orig_id": 1423763}}, {"model": "metainfo.source", "pk": 431, "fields": {"orig_filename": "Thurn-Taxis_Wilhelm_1801_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 332", "author": "", "orig_id": 1423811}}, {"model": "metainfo.source", "pk": 432, "fields": {"orig_filename": "Thurn-Valsassina-Como-Vercelli_Georg_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 333", "author": "", "orig_id": 1423860}}, {"model": "metainfo.source", "pk": 433, "fields": {"orig_filename": "Thurn-Valsassina_Gustav_1836_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 332f.", "author": "", "orig_id": 1423816}}, {"model": "metainfo.source", "pk": 434, "fields": {"orig_filename": "Thurnes_Heinrich_1833_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 333f.", "author": "", "orig_id": 1447456}}, {"model": "metainfo.source", "pk": 435, "fields": {"orig_filename": "Thurneyssen_Friedrich_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 334", "author": "", "orig_id": 1423866}}, {"model": "metainfo.source", "pk": 436, "fields": {"orig_filename": "Thurnher_Johann_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 334f.", "author": "", "orig_id": 1423869}}, {"model": "metainfo.source", "pk": 437, "fields": {"orig_filename": "Thurnher_Martin_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 335", "author": "", "orig_id": 1423870}}, {"model": "metainfo.source", "pk": 438, "fields": {"orig_filename": "Thurwieser_Peter-Karl_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 335f.", "author": "", "orig_id": 1423912}}, {"model": "metainfo.source", "pk": 439, "fields": {"orig_filename": "Thury_Zoltan_1870_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 336", "author": "", "orig_id": 2195847}}, {"model": "metainfo.source", "pk": 440, "fields": {"orig_filename": "Tichatschek_Joseph-Alois_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 336f.", "author": "", "orig_id": 1423956}}, {"model": "metainfo.source", "pk": 441, "fields": {"orig_filename": "Tichy_Hans_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 337f.", "author": "", "orig_id": 1423411}}, {"model": "metainfo.source", "pk": 442, "fields": {"orig_filename": "Tichy_Karol-Maria-Jozef_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 338", "author": "", "orig_id": 2166155}}, {"model": "metainfo.source", "pk": 443, "fields": {"orig_filename": "Tieber_Ben_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 338f.", "author": "", "orig_id": 1415068}}, {"model": "metainfo.source", "pk": 444, "fields": {"orig_filename": "Tiefenbacher_Ludwig-E_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 339", "author": "", "orig_id": 1423439}}, {"model": "metainfo.source", "pk": 445, "fields": {"orig_filename": "Tiefenthaler_Paula_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 339f.", "author": "", "orig_id": 1423504}}, {"model": "metainfo.source", "pk": 446, "fields": {"orig_filename": "Tieftrunk_Karel_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 340", "author": "", "orig_id": 1423505}}, {"model": "metainfo.source", "pk": 447, "fields": {"orig_filename": "Tietze_Emil_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 341f.", "author": "", "orig_id": 1423546}}, {"model": "metainfo.source", "pk": 448, "fields": {"orig_filename": "Tietz_Karl_1831_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 341", "author": "", "orig_id": 1423542}}, {"model": "metainfo.source", "pk": 449, "fields": {"orig_filename": "Tihanyi_Kalman_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 342f.", "author": "", "orig_id": 2195874}}, {"model": "metainfo.source", "pk": 450, "fields": {"orig_filename": "Tihanyi_Lajos_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 343", "author": "", "orig_id": 1423577}}, {"model": "metainfo.source", "pk": 451, "fields": {"orig_filename": "Tilgner_Friedrich-Rudolf_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 343f.", "author": "", "orig_id": 1423608}}, {"model": "metainfo.source", "pk": 452, "fields": {"orig_filename": "Tilgner_Victor-Oskar_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 344f.", "author": "", "orig_id": 1423685}}, {"model": "metainfo.source", "pk": 453, "fields": {"orig_filename": "Till-Kostryn_Ernst_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 346f.", "author": "", "orig_id": 2245535}}, {"model": "metainfo.source", "pk": 454, "fields": {"orig_filename": "Tiller-Turnfort_Karl_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348", "author": "", "orig_id": 1423728}}, {"model": "metainfo.source", "pk": 455, "fields": {"orig_filename": "Tiller_Karel_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348", "author": "", "orig_id": 1423725}}, {"model": "metainfo.source", "pk": 456, "fields": {"orig_filename": "Tille_Vaclav_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 347f.", "author": "", "orig_id": 1472596}}, {"model": "metainfo.source", "pk": 457, "fields": {"orig_filename": "Till_Johann_1827_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 345f.", "author": "", "orig_id": 1447460}}, {"model": "metainfo.source", "pk": 458, "fields": {"orig_filename": "Till_Leopold_1830_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 345f.", "author": "", "orig_id": 1423718}}, {"model": "metainfo.source", "pk": 459, "fields": {"orig_filename": "Till_Vinzenz_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 346", "author": "", "orig_id": 1423720}}, {"model": "metainfo.source", "pk": 460, "fields": {"orig_filename": "Tilser_Frantisek_1825_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 348f.", "author": "", "orig_id": 1455775}}, {"model": "metainfo.source", "pk": 461, "fields": {"orig_filename": "Timar_Szaniszlo_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 349", "author": "", "orig_id": 1454709}}, {"model": "metainfo.source", "pk": 462, "fields": {"orig_filename": "Timeus_Ruggero_1892_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 349f.", "author": "", "orig_id": 2168227}}, {"model": "metainfo.source", "pk": 463, "fields": {"orig_filename": "Timon-Schmerrhoff-Szedlicsna_Akos_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 350", "author": "", "orig_id": 1458903}}, {"model": "metainfo.source", "pk": 464, "fields": {"orig_filename": "Tinkhauser_Johann-Nepomuk_1787_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 351", "author": "", "orig_id": 1423820}}, {"model": "metainfo.source", "pk": 465, "fields": {"orig_filename": "Tinter-Marienwil_Wilhelm_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 351f.", "author": "", "orig_id": 1423823}}, {"model": "metainfo.source", "pk": 466, "fields": {"orig_filename": "Tinti_Karl-Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 352", "author": "", "orig_id": 1423825}}, {"model": "metainfo.source", "pk": 467, "fields": {"orig_filename": "Tiring_Victor_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353", "author": "", "orig_id": 2246184}}, {"model": "metainfo.source", "pk": 468, "fields": {"orig_filename": "Tirka_Demeter-Theodor_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353", "author": "", "orig_id": 1423831}}, {"model": "metainfo.source", "pk": 469, "fields": {"orig_filename": "Tischer_Frantisek_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354", "author": "", "orig_id": 1423873}}, {"model": "metainfo.source", "pk": 470, "fields": {"orig_filename": "Tischer_Frantisek_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 353f.", "author": "", "orig_id": 1423874}}, {"model": "metainfo.source", "pk": 471, "fields": {"orig_filename": "Tischler_Ludwig_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354", "author": "", "orig_id": 1423880}}, {"model": "metainfo.source", "pk": 472, "fields": {"orig_filename": "Tiso_Jozef_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 354ff.", "author": "", "orig_id": 1423884}}, {"model": "metainfo.source", "pk": 473, "fields": {"orig_filename": "Tisza-Borosjenoe-Szeged_Istvan_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 357f.", "author": "", "orig_id": 1423886}}, {"model": "metainfo.source", "pk": 474, "fields": {"orig_filename": "Titl_Anton-Emil_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 358", "author": "", "orig_id": 1423926}}, {"model": "metainfo.source", "pk": 475, "fields": {"orig_filename": "Titta_Wenzel_1863_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 359", "author": "", "orig_id": 1423928}}, {"model": "metainfo.source", "pk": 476, "fields": {"orig_filename": "Tkac_Jaroslav_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 359f.", "author": "", "orig_id": 2172718}}, {"model": "metainfo.source", "pk": 477, "fields": {"orig_filename": "Tkany_Wilhelm_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 360", "author": "", "orig_id": 1423414}}, {"model": "metainfo.source", "pk": 478, "fields": {"orig_filename": "Tluchor_Alois_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 360f.", "author": "", "orig_id": 1423416}}, {"model": "metainfo.source", "pk": 479, "fields": {"orig_filename": "Tobiasek_Stanislav_1874_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 361", "author": "", "orig_id": 1423420}}, {"model": "metainfo.source", "pk": 480, "fields": {"orig_filename": "Tobner_Adolf_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 361f.", "author": "", "orig_id": 1423449}}, {"model": "metainfo.source", "pk": 481, "fields": {"orig_filename": "Todesco_Eduard_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 362f.", "author": "", "orig_id": 1444900}}, {"model": "metainfo.source", "pk": 482, "fields": {"orig_filename": "Todesco_Hermann_1791_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 363", "author": "", "orig_id": 1423647}}, {"model": "metainfo.source", "pk": 483, "fields": {"orig_filename": "Todesco_Max_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 363f.", "author": "", "orig_id": 1423648}}, {"model": "metainfo.source", "pk": 484, "fields": {"orig_filename": "Todesco_Sophie_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 364f.", "author": "", "orig_id": 1423651}}, {"model": "metainfo.source", "pk": 485, "fields": {"orig_filename": "Toegl_Martin-Albert_1753_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 365", "author": "", "orig_id": 1423660}}, {"model": "metainfo.source", "pk": 486, "fields": {"orig_filename": "Toelg_Franz_1877_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 365f.", "author": "", "orig_id": 1430741}}, {"model": "metainfo.source", "pk": 487, "fields": {"orig_filename": "Toelk_Josef_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1423658}}, {"model": "metainfo.source", "pk": 488, "fields": {"orig_filename": "Toeltenyi_Szaniszlo_1795_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366f.", "author": "", "orig_id": 1455930}}, {"model": "metainfo.source", "pk": 489, "fields": {"orig_filename": "Toemoerkeny_Istvan_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 367f.", "author": "", "orig_id": 1458604}}, {"model": "metainfo.source", "pk": 490, "fields": {"orig_filename": "Toepler_August-Joseph_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 368", "author": "", "orig_id": 1423694}}, {"model": "metainfo.source", "pk": 491, "fields": {"orig_filename": "Toeply_Robert_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 368f.", "author": "", "orig_id": 1423697}}, {"model": "metainfo.source", "pk": 492, "fields": {"orig_filename": "Tersztyanszky-Nadas_Karl_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 255f.", "author": "", "orig_id": 1424314}}, {"model": "metainfo.source", "pk": 493, "fields": {"orig_filename": "Terzky_Karl-August_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 256", "author": "", "orig_id": 1424313}}, {"model": "metainfo.source", "pk": 494, "fields": {"orig_filename": "Tesar_Frantisek_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 256f.", "author": "", "orig_id": 1452815}}, {"model": "metainfo.source", "pk": 495, "fields": {"orig_filename": "Teschner_Richard-Heinrich_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257ff.", "author": "", "orig_id": 1424389}}, {"model": "metainfo.source", "pk": 496, "fields": {"orig_filename": "Tesla_Nikola_1856_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 259f.", "author": "", "orig_id": 1424431}}, {"model": "metainfo.source", "pk": 497, "fields": {"orig_filename": "Tesnohlidek_Rudolf_1882_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 260", "author": "", "orig_id": 2173405}}, {"model": "metainfo.source", "pk": 498, "fields": {"orig_filename": "Tessedik_Ferenc_1800_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261", "author": "", "orig_id": 1451717}}, {"model": "metainfo.source", "pk": 499, "fields": {"orig_filename": "Tessedik_Samuel-Iii_1777_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261", "author": "", "orig_id": 1451723}}, {"model": "metainfo.source", "pk": 500, "fields": {"orig_filename": "Tessedik_Samuel-Ii_1742_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 260f.", "author": "", "orig_id": 1451722}}, {"model": "metainfo.source", "pk": 501, "fields": {"orig_filename": "Tessenow_Heinrich_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 261f.", "author": "", "orig_id": 1424438}}, {"model": "metainfo.source", "pk": 502, "fields": {"orig_filename": "Testa_Bartholomaeus-Iii_1804_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262", "author": "", "orig_id": 1451728}}, {"model": "metainfo.source", "pk": 503, "fields": {"orig_filename": "Testa_Heinrich_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262f.", "author": "", "orig_id": 1424467}}, {"model": "metainfo.source", "pk": 504, "fields": {"orig_filename": "Testa_Heinrich_1821_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 1451726}}, {"model": "metainfo.source", "pk": 505, "fields": {"orig_filename": "Testa_Karl_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 262", "author": "", "orig_id": 1451731}}, {"model": "metainfo.source", "pk": 506, "fields": {"orig_filename": "Tetmajer_Ludwig_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263f.", "author": "", "orig_id": 1424470}}, {"model": "metainfo.source", "pk": 507, "fields": {"orig_filename": "Tetmajer_Wlodzimierz_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 264f.", "author": "", "orig_id": 2167036}}, {"model": "metainfo.source", "pk": 508, "fields": {"orig_filename": "Tettenborn_Friedrich-Karl_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 265f.", "author": "", "orig_id": 1424472}}, {"model": "metainfo.source", "pk": 509, "fields": {"orig_filename": "Teuber_Emma_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266", "author": "", "orig_id": 2171732}}, {"model": "metainfo.source", "pk": 510, "fields": {"orig_filename": "Teuber_Josef_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 267f.", "author": "", "orig_id": 1424476}}, {"model": "metainfo.source", "pk": 511, "fields": {"orig_filename": "Teuber_Maurus_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 267", "author": "", "orig_id": 2202195}}, {"model": "metainfo.source", "pk": 512, "fields": {"orig_filename": "Teuber_Moritz_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269", "author": "", "orig_id": 1424477}}, {"model": "metainfo.source", "pk": 513, "fields": {"orig_filename": "Teuber_Oskar-Karl_1852_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 268", "author": "", "orig_id": 1424478}}, {"model": "metainfo.source", "pk": 514, "fields": {"orig_filename": "Teuber_Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269", "author": "", "orig_id": 1424516}}, {"model": "metainfo.source", "pk": 515, "fields": {"orig_filename": "Teuchert-Kauffmann-Traunsteinburg_Friedrich_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 270", "author": "", "orig_id": 1424517}}, {"model": "metainfo.source", "pk": 516, "fields": {"orig_filename": "Teuchert_Friedrich_1797_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 269f.", "author": "", "orig_id": 1451793}}, {"model": "metainfo.source", "pk": 517, "fields": {"orig_filename": "Teuffenbach-Tiefenbach-Masswegg_Albin_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 270f.", "author": "", "orig_id": 1424523}}, {"model": "metainfo.source", "pk": 518, "fields": {"orig_filename": "Teutsch_Friedrich_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 271", "author": "", "orig_id": 1424524}}, {"model": "metainfo.source", "pk": 519, "fields": {"orig_filename": "Teutsch_Georg-Daniel_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 271f.", "author": "", "orig_id": 1422743}}, {"model": "metainfo.source", "pk": 520, "fields": {"orig_filename": "Teweles_Heinrich_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 273f.", "author": "", "orig_id": 1424605}}, {"model": "metainfo.source", "pk": 521, "fields": {"orig_filename": "Tewele_Franz_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 272f.", "author": "", "orig_id": 1424604}}, {"model": "metainfo.source", "pk": 522, "fields": {"orig_filename": "Tewes_August_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274", "author": "", "orig_id": 1424606}}, {"model": "metainfo.source", "pk": 523, "fields": {"orig_filename": "Teyber_Anton_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274f.", "author": "", "orig_id": 1424608}}, {"model": "metainfo.source", "pk": 524, "fields": {"orig_filename": "Teyber_Eleonora_1789_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 274f.", "author": "", "orig_id": 1431988}}, {"model": "metainfo.source", "pk": 525, "fields": {"orig_filename": "Teyber_Elisabeth_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 1448326}}, {"model": "metainfo.source", "pk": 526, "fields": {"orig_filename": "Teyber_Elisabeth_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275", "author": "", "orig_id": 2182812}}, {"model": "metainfo.source", "pk": 527, "fields": {"orig_filename": "Teyber_Maria-Barbara-Francisca_1750_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 2281460}}, {"model": "metainfo.source", "pk": 528, "fields": {"orig_filename": "Teyber_Therese_1760_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 275f.", "author": "", "orig_id": 1448256}}, {"model": "metainfo.source", "pk": 529, "fields": {"orig_filename": "Tezner_Friedrich_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 276", "author": "", "orig_id": 1424609}}, {"model": "metainfo.source", "pk": 530, "fields": {"orig_filename": "Thaisz_Lajos_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 276f.", "author": "", "orig_id": 2195763}}, {"model": "metainfo.source", "pk": 531, "fields": {"orig_filename": "Thalberg_Sigismund_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277", "author": "", "orig_id": 1424641}}, {"model": "metainfo.source", "pk": 532, "fields": {"orig_filename": "Thaler_Andreas_1883_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277f.", "author": "", "orig_id": 1424643}}, {"model": "metainfo.source", "pk": 533, "fields": {"orig_filename": "Thaler_Franz-Christian_1759_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 278f.", "author": "", "orig_id": 1447652}}, {"model": "metainfo.source", "pk": 534, "fields": {"orig_filename": "Thaler_Josef_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 279", "author": "", "orig_id": 1424648}}, {"model": "metainfo.source", "pk": 535, "fields": {"orig_filename": "Thaler_Karl_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 279f.", "author": "", "orig_id": 1424680}}, {"model": "metainfo.source", "pk": 536, "fields": {"orig_filename": "Thaler_Rafael_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 280", "author": "", "orig_id": 1424682}}, {"model": "metainfo.source", "pk": 537, "fields": {"orig_filename": "Thalhammer_Janos_1847_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 280f.", "author": "", "orig_id": 2200131}}, {"model": "metainfo.source", "pk": 538, "fields": {"orig_filename": "Thaller_Kathi_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281", "author": "", "orig_id": 1424048}}, {"model": "metainfo.source", "pk": 539, "fields": {"orig_filename": "Thaller_Willi_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281f.", "author": "", "orig_id": 1423997}}, {"model": "metainfo.source", "pk": 540, "fields": {"orig_filename": "Thalloczy_Lajos_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 282f.", "author": "", "orig_id": 1424091}}, {"model": "metainfo.source", "pk": 541, "fields": {"orig_filename": "Thalmayr_Franz_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 283f.", "author": "", "orig_id": 1424050}}, {"model": "metainfo.source", "pk": 542, "fields": {"orig_filename": "Thaly_Kalman_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 284", "author": "", "orig_id": 1424093}}, {"model": "metainfo.source", "pk": 543, "fields": {"orig_filename": "Thaly_Zsigmond_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 284f.", "author": "", "orig_id": 1452118}}, {"model": "metainfo.source", "pk": 544, "fields": {"orig_filename": "Tham_Karel-Ignac_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 285f.", "author": "", "orig_id": 1452120}}, {"model": "metainfo.source", "pk": 545, "fields": {"orig_filename": "Tham_Vaclav_1765_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 285f.", "author": "", "orig_id": 1424094}}, {"model": "metainfo.source", "pk": 546, "fields": {"orig_filename": "Than-Nemesapat_Karoly_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 286f.", "author": "", "orig_id": 1424131}}, {"model": "metainfo.source", "pk": 547, "fields": {"orig_filename": "Than_Mor_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 286", "author": "", "orig_id": 1424095}}, {"model": "metainfo.source", "pk": 548, "fields": {"orig_filename": "Thausing_Moriz_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 287f.", "author": "", "orig_id": 1424137}}, {"model": "metainfo.source", "pk": 549, "fields": {"orig_filename": "Theer_Adolf_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288", "author": "", "orig_id": 1424141}}, {"model": "metainfo.source", "pk": 550, "fields": {"orig_filename": "Theer_Albert_1815_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288", "author": "", "orig_id": 1424181}}, {"model": "metainfo.source", "pk": 551, "fields": {"orig_filename": "Theer_Otakar_1880_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 288f.", "author": "", "orig_id": 1424182}}, {"model": "metainfo.source", "pk": 552, "fields": {"orig_filename": "Theer_Robert_1808_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 289", "author": "", "orig_id": 1424183}}, {"model": "metainfo.source", "pk": 553, "fields": {"orig_filename": "Thek-Kisnarda_Endre_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 289f.", "author": "", "orig_id": 2195823}}, {"model": "metainfo.source", "pk": 554, "fields": {"orig_filename": "Thenen_Josef_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 290", "author": "", "orig_id": 1424360}}, {"model": "metainfo.source", "pk": 555, "fields": {"orig_filename": "Thenen_Julie_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 291", "author": "", "orig_id": 1424361}}, {"model": "metainfo.source", "pk": 556, "fields": {"orig_filename": "Thern_Karl_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 291f.", "author": "", "orig_id": 1424363}}, {"model": "metainfo.source", "pk": 557, "fields": {"orig_filename": "Thern_Louis_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424392}}, {"model": "metainfo.source", "pk": 558, "fields": {"orig_filename": "Thern_Wilhelm_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424393}}, {"model": "metainfo.source", "pk": 559, "fields": {"orig_filename": "Theuer_Max_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292", "author": "", "orig_id": 1424398}}, {"model": "metainfo.source", "pk": 560, "fields": {"orig_filename": "Thewrewk-Ponor_Emil_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 292f.", "author": "", "orig_id": 1455990}}, {"model": "metainfo.source", "pk": 561, "fields": {"orig_filename": "Thewrewk-Ponor_Jozsef_1793_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 293", "author": "", "orig_id": 1456041}}, {"model": "metainfo.source", "pk": 562, "fields": {"orig_filename": "Theyer_Franz-Seraphin_1809_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 294", "author": "", "orig_id": 1424403}}, {"model": "metainfo.source", "pk": 563, "fields": {"orig_filename": "Theyer_Leopold_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 294f.", "author": "", "orig_id": 1440559}}, {"model": "metainfo.source", "pk": 564, "fields": {"orig_filename": "Theyer_Theodor_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 295", "author": "", "orig_id": 1424404}}, {"model": "metainfo.source", "pk": 565, "fields": {"orig_filename": "Theyer_Theodor_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 295", "author": "", "orig_id": 1424405}}, {"model": "metainfo.source", "pk": 566, "fields": {"orig_filename": "Thiele_Franz_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 296f.", "author": "", "orig_id": 1424448}}, {"model": "metainfo.source", "pk": 567, "fields": {"orig_filename": "Thiele_Friedrich_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 297", "author": "", "orig_id": 1424450}}, {"model": "metainfo.source", "pk": 568, "fields": {"orig_filename": "Thielisch_Johann-Christian_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 297", "author": "", "orig_id": 1424483}}, {"model": "metainfo.source", "pk": 569, "fields": {"orig_filename": "Thiel_Viktor_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 296", "author": "", "orig_id": 1424444}}, {"model": "metainfo.source", "pk": 570, "fields": {"orig_filename": "Thienemann_Otto_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 298", "author": "", "orig_id": 1424528}}, {"model": "metainfo.source", "pk": 571, "fields": {"orig_filename": "Thimig_Hugo_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 298f.", "author": "", "orig_id": 1424652}}, {"model": "metainfo.source", "pk": 572, "fields": {"orig_filename": "Thinnfeld_Ferdinand_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 299f.", "author": "", "orig_id": 1456121}}, {"model": "metainfo.source", "pk": 573, "fields": {"orig_filename": "Thirring_Gusztav-Adolf_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 300", "author": "", "orig_id": 1458897}}, {"model": "metainfo.source", "pk": 574, "fields": {"orig_filename": "Thoeni_Christian_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 301", "author": "", "orig_id": 1424103}}, {"model": "metainfo.source", "pk": 575, "fields": {"orig_filename": "Thoeny_Eduard_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 300f.", "author": "", "orig_id": 1424106}}, {"model": "metainfo.source", "pk": 576, "fields": {"orig_filename": "Thoeny_Wilhelm_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 301f.", "author": "", "orig_id": 1424107}}, {"model": "metainfo.source", "pk": 577, "fields": {"orig_filename": "Thomas_Edward_1794_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 302f.", "author": "", "orig_id": 1424197}}, {"model": "metainfo.source", "pk": 578, "fields": {"orig_filename": "Thomas_Rudolf_1895_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 303f.", "author": "", "orig_id": 2256695}}, {"model": "metainfo.source", "pk": 579, "fields": {"orig_filename": "Thomayer_Frantisek_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 304", "author": "", "orig_id": 1424209}}, {"model": "metainfo.source", "pk": 580, "fields": {"orig_filename": "Thomayer_Josef_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 304f.", "author": "", "orig_id": 1424239}}, {"model": "metainfo.source", "pk": 581, "fields": {"orig_filename": "Thome_Franz_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 305f.", "author": "", "orig_id": 1424242}}, {"model": "metainfo.source", "pk": 582, "fields": {"orig_filename": "Thommen_Achilles_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 306f.", "author": "", "orig_id": 1424246}}, {"model": "metainfo.source", "pk": 583, "fields": {"orig_filename": "Thonet_August_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308f.", "author": "", "orig_id": 1424283}}, {"model": "metainfo.source", "pk": 584, "fields": {"orig_filename": "Thonet_Jakob_1841_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309", "author": "", "orig_id": 1424288}}, {"model": "metainfo.source", "pk": 585, "fields": {"orig_filename": "Thonet_Josef_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308", "author": "", "orig_id": 1424289}}, {"model": "metainfo.source", "pk": 586, "fields": {"orig_filename": "Thonet_Michael_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 307f.", "author": "", "orig_id": 1424487}}, {"model": "metainfo.source", "pk": 587, "fields": {"orig_filename": "Thonet_Michael_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 308f.", "author": "", "orig_id": 2187975}}, {"model": "metainfo.source", "pk": 588, "fields": {"orig_filename": "Thonner_Franz_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309", "author": "", "orig_id": 1424492}}, {"model": "metainfo.source", "pk": 589, "fields": {"orig_filename": "Thon_Osias_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 307", "author": "", "orig_id": 1424247}}, {"model": "metainfo.source", "pk": 590, "fields": {"orig_filename": "Thoren_Otto_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 309f.", "author": "", "orig_id": 1424498}}, {"model": "metainfo.source", "pk": 591, "fields": {"orig_filename": "Thorma_Janos_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 310f.", "author": "", "orig_id": 2167112}}, {"model": "metainfo.source", "pk": 592, "fields": {"orig_filename": "Thornton_Johann_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 311", "author": "", "orig_id": 1424537}}, {"model": "metainfo.source", "pk": 593, "fields": {"orig_filename": "Tangl_Eduard-Joseph_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 195f.", "author": "", "orig_id": 1422659}}, {"model": "metainfo.source", "pk": 594, "fields": {"orig_filename": "Tangl_Karlmann_1799_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 196f.", "author": "", "orig_id": 1422691}}, {"model": "metainfo.source", "pk": 595, "fields": {"orig_filename": "Tangl_Michael_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 197f.", "author": "", "orig_id": 1422692}}, {"model": "metainfo.source", "pk": 596, "fields": {"orig_filename": "Tantardini_Antonio_1829_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198", "author": "", "orig_id": 1422737}}, {"model": "metainfo.source", "pk": 597, "fields": {"orig_filename": "Tanzer_Valentin-Leopold_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198", "author": "", "orig_id": 2141313}}, {"model": "metainfo.source", "pk": 598, "fields": {"orig_filename": "Tappeiner-Tappein_Franz_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 198ff.", "author": "", "orig_id": 1422782}}, {"model": "metainfo.source", "pk": 599, "fields": {"orig_filename": "Tappeiner-Tappein_Hermann_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 199f.", "author": "", "orig_id": 1422200}}, {"model": "metainfo.source", "pk": 600, "fields": {"orig_filename": "Tapper_Josef_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200", "author": "", "orig_id": 1422201}}, {"model": "metainfo.source", "pk": 601, "fields": {"orig_filename": "Tarnai_Janos_1843_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200f.", "author": "", "orig_id": 1422237}}, {"model": "metainfo.source", "pk": 602, "fields": {"orig_filename": "Tarnavschi_Teodor_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 200f.", "author": "", "orig_id": 1422238}}, {"model": "metainfo.source", "pk": 603, "fields": {"orig_filename": "Tarnavschi_Vasile_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 201", "author": "", "orig_id": 1422239}}, {"model": "metainfo.source", "pk": 604, "fields": {"orig_filename": "Tarnoczy-Sprinzenberg_Bertha_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 202f.", "author": "", "orig_id": 1422241}}, {"model": "metainfo.source", "pk": 605, "fields": {"orig_filename": "Tarnoczy_Maximilian-Joseph_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 201f.", "author": "", "orig_id": 1422245}}, {"model": "metainfo.source", "pk": 606, "fields": {"orig_filename": "Tarnowski_Adam_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 203", "author": "", "orig_id": 1422272}}, {"model": "metainfo.source", "pk": 607, "fields": {"orig_filename": "Tarnowski_Jan-Dzierzyslaw_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 204", "author": "", "orig_id": 1422274}}, {"model": "metainfo.source", "pk": 608, "fields": {"orig_filename": "Tarnowski_Jan-Felix-Amor_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 203f.", "author": "", "orig_id": 1422283}}, {"model": "metainfo.source", "pk": 609, "fields": {"orig_filename": "Tarnowski_Stanislaw_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 204f.", "author": "", "orig_id": 1422311}}, {"model": "metainfo.source", "pk": 610, "fields": {"orig_filename": "Tarnowski_Wladyslaw_1836_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 205", "author": "", "orig_id": 1422312}}, {"model": "metainfo.source", "pk": 611, "fields": {"orig_filename": "Tartaruga_Ubald_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 205f.", "author": "", "orig_id": 1424428}}, {"model": "metainfo.source", "pk": 612, "fields": {"orig_filename": "Tauber_Alfred_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 207f.", "author": "", "orig_id": 1422397}}, {"model": "metainfo.source", "pk": 613, "fields": {"orig_filename": "Tauber_Anton-Richard_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 209f.", "author": "", "orig_id": 1422400}}, {"model": "metainfo.source", "pk": 614, "fields": {"orig_filename": "Tauber_Josef-Samuel_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208", "author": "", "orig_id": 1422406}}, {"model": "metainfo.source", "pk": 615, "fields": {"orig_filename": "Taubes-Lebenswarth_Johann_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 210", "author": "", "orig_id": 1422329}}, {"model": "metainfo.source", "pk": 616, "fields": {"orig_filename": "Taubes_Loebl_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 210", "author": "", "orig_id": 1422327}}, {"model": "metainfo.source", "pk": 617, "fields": {"orig_filename": "Taube_Erika_1913_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 207", "author": "", "orig_id": 1824004}}, {"model": "metainfo.source", "pk": 618, "fields": {"orig_filename": "Taub_Siegfried_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 206f.", "author": "", "orig_id": 1443032}}, {"model": "metainfo.source", "pk": 619, "fields": {"orig_filename": "Taufer_Josef_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 211", "author": "", "orig_id": 1422367}}, {"model": "metainfo.source", "pk": 620, "fields": {"orig_filename": "Tauffer_Vilmos_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 211f.", "author": "", "orig_id": 1422370}}, {"model": "metainfo.source", "pk": 621, "fields": {"orig_filename": "Taurer-Gallenstein_Anton_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 213", "author": "", "orig_id": 1422374}}, {"model": "metainfo.source", "pk": 622, "fields": {"orig_filename": "Taurer-Gallenstein_Hans_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 212f.", "author": "", "orig_id": 1422375}}, {"model": "metainfo.source", "pk": 623, "fields": {"orig_filename": "Taurer-Gallenstein_Johann-Nepomuk_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 213", "author": "", "orig_id": 1422376}}, {"model": "metainfo.source", "pk": 624, "fields": {"orig_filename": "Tausch-Gloeckelsthurn_Leopold_1858_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 214f.", "author": "", "orig_id": 1422410}}, {"model": "metainfo.source", "pk": 625, "fields": {"orig_filename": "Tauschek_Gustav_1899_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 215", "author": "", "orig_id": 1422416}}, {"model": "metainfo.source", "pk": 626, "fields": {"orig_filename": "Tauscher_Gyula-Agoston_1833_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 215f.", "author": "", "orig_id": 2210139}}, {"model": "metainfo.source", "pk": 627, "fields": {"orig_filename": "Tauschinski_Hippolyt_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 216", "author": "", "orig_id": 1424291}}, {"model": "metainfo.source", "pk": 628, "fields": {"orig_filename": "Tausch_Ignaz-Friedrich_1793_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 214", "author": "", "orig_id": 1422407}}, {"model": "metainfo.source", "pk": 629, "fields": {"orig_filename": "Tausenau_Karl_1813_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 216f.", "author": "", "orig_id": 1424295}}, {"model": "metainfo.source", "pk": 630, "fields": {"orig_filename": "Tausk_Viktor_1879_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 217f.", "author": "", "orig_id": 1424329}}, {"model": "metainfo.source", "pk": 631, "fields": {"orig_filename": "Taussig_Ervin_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 218f.", "author": "", "orig_id": 2173303}}, {"model": "metainfo.source", "pk": 632, "fields": {"orig_filename": "Taussig_Helene_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 219", "author": "", "orig_id": 1424337}}, {"model": "metainfo.source", "pk": 633, "fields": {"orig_filename": "Taussig_Otto_1879_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 219f.", "author": "", "orig_id": 1424340}}, {"model": "metainfo.source", "pk": 634, "fields": {"orig_filename": "Taussig_Sigmund_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 220f.", "author": "", "orig_id": 1424341}}, {"model": "metainfo.source", "pk": 635, "fields": {"orig_filename": "Taussig_Theodor_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 221f.", "author": "", "orig_id": 1424138}}, {"model": "metainfo.source", "pk": 636, "fields": {"orig_filename": "Tautenhayn_Ernst_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424372}}, {"model": "metainfo.source", "pk": 637, "fields": {"orig_filename": "Tautenhayn_Josef_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 222f.", "author": "", "orig_id": 1424459}}, {"model": "metainfo.source", "pk": 638, "fields": {"orig_filename": "Tautenhayn_Karl_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424460}}, {"model": "metainfo.source", "pk": 639, "fields": {"orig_filename": "Tautenhayn_Richard_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223", "author": "", "orig_id": 1424461}}, {"model": "metainfo.source", "pk": 640, "fields": {"orig_filename": "Taux_Alois_1817_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 223f.", "author": "", "orig_id": 1424463}}, {"model": "metainfo.source", "pk": 641, "fields": {"orig_filename": "Taux_Anna_1820_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224", "author": "", "orig_id": 1452531}}, {"model": "metainfo.source", "pk": 642, "fields": {"orig_filename": "Tavcar_Franja_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224f.", "author": "", "orig_id": 2167958}}, {"model": "metainfo.source", "pk": 643, "fields": {"orig_filename": "Tavcar_Ivan_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 224f.", "author": "", "orig_id": 1424465}}, {"model": "metainfo.source", "pk": 644, "fields": {"orig_filename": "Tavella_Franz_1844_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 225", "author": "", "orig_id": 1424466}}, {"model": "metainfo.source", "pk": 645, "fields": {"orig_filename": "Tayerle_Rudolf_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 225f.", "author": "", "orig_id": 2202879}}, {"model": "metainfo.source", "pk": 646, "fields": {"orig_filename": "Techet_Carl_1877_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 226", "author": "", "orig_id": 1424504}}, {"model": "metainfo.source", "pk": 647, "fields": {"orig_filename": "Teclu_Nicolae_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 227", "author": "", "orig_id": 1424509}}, {"model": "metainfo.source", "pk": 648, "fields": {"orig_filename": "Tegetthoff_Karl_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 227f.", "author": "", "orig_id": 1424548}}, {"model": "metainfo.source", "pk": 649, "fields": {"orig_filename": "Tegetthoff_Wilhelm_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 228", "author": "", "orig_id": 1424549}}, {"model": "metainfo.source", "pk": 650, "fields": {"orig_filename": "Teglas_Gabor_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 228f.", "author": "", "orig_id": 1452545}}, {"model": "metainfo.source", "pk": 651, "fields": {"orig_filename": "Teichgraeber_Franz_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 229", "author": "", "orig_id": 1424354}}, {"model": "metainfo.source", "pk": 652, "fields": {"orig_filename": "Teige_Josef_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 229f.", "author": "", "orig_id": 1424559}}, {"model": "metainfo.source", "pk": 653, "fields": {"orig_filename": "Teimer-Wildau_Martin-Rochus_1778_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 230", "author": "", "orig_id": 1424588}}, {"model": "metainfo.source", "pk": 654, "fields": {"orig_filename": "Teirich_Ferdinand_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 230f.", "author": "", "orig_id": 1424592}}, {"model": "metainfo.source", "pk": 655, "fields": {"orig_filename": "Teirich_Valentin_1844_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 231f.", "author": "", "orig_id": 1424594}}, {"model": "metainfo.source", "pk": 656, "fields": {"orig_filename": "Teisseyre_Karol-Wawrzyniec_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 232", "author": "", "orig_id": 2208573}}, {"model": "metainfo.source", "pk": 657, "fields": {"orig_filename": "Telcs_Ede_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 232f.", "author": "", "orig_id": 1424599}}, {"model": "metainfo.source", "pk": 658, "fields": {"orig_filename": "Teleki-Szek_Blanka_1806_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 233f.", "author": "", "orig_id": 1424675}}, {"model": "metainfo.source", "pk": 659, "fields": {"orig_filename": "Teleki-Szek_Jozsef_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 234", "author": "", "orig_id": 1424633}}, {"model": "metainfo.source", "pk": 660, "fields": {"orig_filename": "Teleki-Szek_Juliska_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 234", "author": "", "orig_id": 1424634}}, {"model": "metainfo.source", "pk": 661, "fields": {"orig_filename": "Teleki-Szek_Laszlo_1764_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 235", "author": "", "orig_id": 1424635}}, {"model": "metainfo.source", "pk": 662, "fields": {"orig_filename": "Teleki-Szek_Laszlo_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135f.", "author": "", "orig_id": 1424679}}, {"model": "metainfo.source", "pk": 663, "fields": {"orig_filename": "Teleki-Szek_Pal_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 236f.", "author": "", "orig_id": 1424029}}, {"model": "metainfo.source", "pk": 664, "fields": {"orig_filename": "Teleki-Szek_Samuel_1739_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 237", "author": "", "orig_id": 1452681}}, {"model": "metainfo.source", "pk": 665, "fields": {"orig_filename": "Teleki-Szek_Samuel_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 238", "author": "", "orig_id": 1424024}}, {"model": "metainfo.source", "pk": 666, "fields": {"orig_filename": "Teleki-Szek_Sandor_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 238f.", "author": "", "orig_id": 1452612}}, {"model": "metainfo.source", "pk": 667, "fields": {"orig_filename": "Telepy_Gyoergy_1800_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 239f.", "author": "", "orig_id": 1452737}}, {"model": "metainfo.source", "pk": 668, "fields": {"orig_filename": "Telepy_Karoly_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 240", "author": "", "orig_id": 1424030}}, {"model": "metainfo.source", "pk": 669, "fields": {"orig_filename": "Telfner_Josef_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 240", "author": "", "orig_id": 1424032}}, {"model": "metainfo.source", "pk": 670, "fields": {"orig_filename": "Telfy_Ivan_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241", "author": "", "orig_id": 1452739}}, {"model": "metainfo.source", "pk": 671, "fields": {"orig_filename": "Teller_Alfred_1881_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241f.", "author": "", "orig_id": 2162627}}, {"model": "metainfo.source", "pk": 672, "fields": {"orig_filename": "Teller_Friedrich_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 242f.", "author": "", "orig_id": 1424038}}, {"model": "metainfo.source", "pk": 673, "fields": {"orig_filename": "Telle_Carl_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 241", "author": "", "orig_id": 1424035}}, {"model": "metainfo.source", "pk": 674, "fields": {"orig_filename": "Telmann_Fritz_1873_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 243", "author": "", "orig_id": 1424075}}, {"model": "metainfo.source", "pk": 675, "fields": {"orig_filename": "Teltscher_Josef-Eduard_1801_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 243f.", "author": "", "orig_id": 1424077}}, {"model": "metainfo.source", "pk": 676, "fields": {"orig_filename": "Temesvary_Rezsoe_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 244", "author": "", "orig_id": 1454705}}, {"model": "metainfo.source", "pk": 677, "fields": {"orig_filename": "Temple_Hans_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 244f.", "author": "", "orig_id": 1424087}}, {"model": "metainfo.source", "pk": 678, "fields": {"orig_filename": "Tempsky_Karl-Friedrich-Rudolph_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 245f.", "author": "", "orig_id": 1424121}}, {"model": "metainfo.source", "pk": 679, "fields": {"orig_filename": "Tencer_Pal_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 246", "author": "", "orig_id": 1454707}}, {"model": "metainfo.source", "pk": 680, "fields": {"orig_filename": "Tendler_Franz_1790_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 246f.", "author": "", "orig_id": 1828342}}, {"model": "metainfo.source", "pk": 681, "fields": {"orig_filename": "Tendler_Franz_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 247", "author": "", "orig_id": 1424124}}, {"model": "metainfo.source", "pk": 682, "fields": {"orig_filename": "Tendler_Johann-Max_1811_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 248", "author": "", "orig_id": 1424125}}, {"model": "metainfo.source", "pk": 683, "fields": {"orig_filename": "Tendler_Johann-Patriz_1777_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 247f.", "author": "", "orig_id": 1447379}}, {"model": "metainfo.source", "pk": 684, "fields": {"orig_filename": "Tendler_Mathias_1753_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 248f.", "author": "", "orig_id": 1424130}}, {"model": "metainfo.source", "pk": 685, "fields": {"orig_filename": "Tengler_Theodor_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 249", "author": "", "orig_id": 2189010}}, {"model": "metainfo.source", "pk": 686, "fields": {"orig_filename": "Tennenbaum_Ludwig_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 249f.", "author": "", "orig_id": 1424164}}, {"model": "metainfo.source", "pk": 687, "fields": {"orig_filename": "Teodorowicz_Jozef-Teofil_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 250", "author": "", "orig_id": 1424180}}, {"model": "metainfo.source", "pk": 688, "fields": {"orig_filename": "Teply_Frantisek_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 251f.", "author": "", "orig_id": 2173349}}, {"model": "metainfo.source", "pk": 689, "fields": {"orig_filename": "Terc_Filip_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 252f.", "author": "", "orig_id": 2141244}}, {"model": "metainfo.source", "pk": 690, "fields": {"orig_filename": "Terey_Gabor_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 253", "author": "", "orig_id": 1424223}}, {"model": "metainfo.source", "pk": 691, "fields": {"orig_filename": "Terpinc_Fidelis_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 253f.", "author": "", "orig_id": 1424265}}, {"model": "metainfo.source", "pk": 692, "fields": {"orig_filename": "Terschak_Emil_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 254f.", "author": "", "orig_id": 1424268}}, {"model": "metainfo.source", "pk": 693, "fields": {"orig_filename": "Szentgyoergyi_Istvan_1842_1931.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1456743}}, {"model": "metainfo.source", "pk": 694, "fields": {"orig_filename": "Szentirmay_Elemer_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145", "author": "", "orig_id": 1459184}}, {"model": "metainfo.source", "pk": 695, "fields": {"orig_filename": "Szentkereszti-Zagon_Sigmund_1745_1823.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435288}}, {"model": "metainfo.source", "pk": 696, "fields": {"orig_filename": "Szentkiralyi-Komjatszegi_Akos_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145f.", "author": "", "orig_id": 1459185}}, {"model": "metainfo.source", "pk": 697, "fields": {"orig_filename": "Szentkiralyi-Komjatszegi_Zsigmond_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 145f.", "author": "", "orig_id": 2134411}}, {"model": "metainfo.source", "pk": 698, "fields": {"orig_filename": "Szentpeteri_Jozsef_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 146", "author": "", "orig_id": 1435349}}, {"model": "metainfo.source", "pk": 699, "fields": {"orig_filename": "Szentpetery-Sajoszentpeter_Zsigmond_1798_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 146f.", "author": "", "orig_id": 1459188}}, {"model": "metainfo.source", "pk": 700, "fields": {"orig_filename": "Szeparowicz_Johann_1843_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 147", "author": "", "orig_id": 2170466}}, {"model": "metainfo.source", "pk": 701, "fields": {"orig_filename": "Szepesy_Ignac_1780_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 147f.", "author": "", "orig_id": 1434553}}, {"model": "metainfo.source", "pk": 702, "fields": {"orig_filename": "Szeps_Julius_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 148", "author": "", "orig_id": 1434560}}, {"model": "metainfo.source", "pk": 703, "fields": {"orig_filename": "Szeps_Moritz_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 148f.", "author": "", "orig_id": 1434563}}, {"model": "metainfo.source", "pk": 704, "fields": {"orig_filename": "Szeptycki-Szeptyce_Andrej_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 149f.", "author": "", "orig_id": 1434601}}, {"model": "metainfo.source", "pk": 705, "fields": {"orig_filename": "Szeptycki-Szeptyce_Jan-Kanty_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2199910}}, {"model": "metainfo.source", "pk": 706, "fields": {"orig_filename": "Szeptycki-Szeptyce_Klemens_1869_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2159182}}, {"model": "metainfo.source", "pk": 707, "fields": {"orig_filename": "Szeptycki-Szeptyce_Stanislaw_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 151", "author": "", "orig_id": 1434602}}, {"model": "metainfo.source", "pk": 708, "fields": {"orig_filename": "Szerb_Antal_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2081817}}, {"model": "metainfo.source", "pk": 709, "fields": {"orig_filename": "Szerdahelyi_Jozsef_1804_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 151f.", "author": "", "orig_id": 1434606}}, {"model": "metainfo.source", "pk": 710, "fields": {"orig_filename": "Szerdahelyi_Kalman_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 152", "author": "", "orig_id": 1434603}}, {"model": "metainfo.source", "pk": 711, "fields": {"orig_filename": "Szerelmey_Miklos_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 152f.", "author": "", "orig_id": 1434612}}, {"model": "metainfo.source", "pk": 712, "fields": {"orig_filename": "Szigeti_Imre_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1459250}}, {"model": "metainfo.source", "pk": 713, "fields": {"orig_filename": "Szigeti_Jolan_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1456899}}, {"model": "metainfo.source", "pk": 714, "fields": {"orig_filename": "Szigeti_Jozsef_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 153", "author": "", "orig_id": 1434666}}, {"model": "metainfo.source", "pk": 715, "fields": {"orig_filename": "Szika_Jani_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154f.", "author": "", "orig_id": 1434718}}, {"model": "metainfo.source", "pk": 716, "fields": {"orig_filename": "Szilagyi-Szilagysomlo-Horogszegh_Lilla_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 157f.", "author": "", "orig_id": 1459252}}, {"model": "metainfo.source", "pk": 717, "fields": {"orig_filename": "Szilagyi-Szilagysomlo-Horogszegh_Pal_1793_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 157f.", "author": "", "orig_id": 1434827}}, {"model": "metainfo.source", "pk": 718, "fields": {"orig_filename": "Szilagyi_Dezsoe_1840_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 155f.", "author": "", "orig_id": 1434668}}, {"model": "metainfo.source", "pk": 719, "fields": {"orig_filename": "Szilagyi_Ete_1844_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 155f.", "author": "", "orig_id": 1459261}}, {"model": "metainfo.source", "pk": 720, "fields": {"orig_filename": "Szilagyi_Ferenc_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156", "author": "", "orig_id": 1434768}}, {"model": "metainfo.source", "pk": 721, "fields": {"orig_filename": "Szilagyi_Ferenc_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156", "author": "", "orig_id": 1434770}}, {"model": "metainfo.source", "pk": 722, "fields": {"orig_filename": "Szilagyi_Sandor_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 156f.", "author": "", "orig_id": 1434763}}, {"model": "metainfo.source", "pk": 723, "fields": {"orig_filename": "Szilasy_Janos_1795_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158", "author": "", "orig_id": 1434836}}, {"model": "metainfo.source", "pk": 724, "fields": {"orig_filename": "Szily-Nagyszigeth_Kalman_1838_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 159f.", "author": "", "orig_id": 1434960}}, {"model": "metainfo.source", "pk": 725, "fields": {"orig_filename": "Szily-Szilsarkany_Adolf_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 160", "author": "", "orig_id": 1434894}}, {"model": "metainfo.source", "pk": 726, "fields": {"orig_filename": "Szily_Aurel_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158f.", "author": "", "orig_id": 1434898}}, {"model": "metainfo.source", "pk": 727, "fields": {"orig_filename": "Szily_Pal_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 158f.", "author": "", "orig_id": 2154427}}, {"model": "metainfo.source", "pk": 728, "fields": {"orig_filename": "Szinnyei_Ferenc_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161", "author": "", "orig_id": 2163355}}, {"model": "metainfo.source", "pk": 729, "fields": {"orig_filename": "Szinnyei_Jozsef_1830_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 160f.", "author": "", "orig_id": 1434968}}, {"model": "metainfo.source", "pk": 730, "fields": {"orig_filename": "Szinnyei_Jozsef_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161", "author": "", "orig_id": 1434969}}, {"model": "metainfo.source", "pk": 731, "fields": {"orig_filename": "Szinyei-Merse_Pal_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 161f.", "author": "", "orig_id": 1434971}}, {"model": "metainfo.source", "pk": 732, "fields": {"orig_filename": "Szkalnitzky_Antal_1836_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 162f.", "author": "", "orig_id": 1435037}}, {"model": "metainfo.source", "pk": 733, "fields": {"orig_filename": "Szlavy-Erkenez-Okany_Jozsef_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 163f.", "author": "", "orig_id": 1435047}}, {"model": "metainfo.source", "pk": 734, "fields": {"orig_filename": "Szmrecsanyi_Lajos_1851_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164", "author": "", "orig_id": 1457146}}, {"model": "metainfo.source", "pk": 735, "fields": {"orig_filename": "Szmrecsanyi_Pal_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164", "author": "", "orig_id": 1435108}}, {"model": "metainfo.source", "pk": 736, "fields": {"orig_filename": "Szoboszlai-Pap_Istvan_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 164f.", "author": "", "orig_id": 1435113}}, {"model": "metainfo.source", "pk": 737, "fields": {"orig_filename": "Szoedy_Szilard_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 165", "author": "", "orig_id": 1432895}}, {"model": "metainfo.source", "pk": 738, "fields": {"orig_filename": "Szoegyeny-Magyarszoegyen_Zsigmond_1775_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 166f.", "author": "", "orig_id": 1435123}}, {"model": "metainfo.source", "pk": 739, "fields": {"orig_filename": "Szoegyeny-Marich-Magyarszoegyen-Szolgaegyhaza_Laszlo_1806_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 165ff.", "author": "", "orig_id": 1435121}}, {"model": "metainfo.source", "pk": 740, "fields": {"orig_filename": "Szoegyeny-Marich-Magyarszoegyen-Szolgaegyhaza_Laszlo_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 167", "author": "", "orig_id": 1435167}}, {"model": "metainfo.source", "pk": 741, "fields": {"orig_filename": "Szoelloesy-Szabo_Lajos_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 167f.", "author": "", "orig_id": 1435174}}, {"model": "metainfo.source", "pk": 742, "fields": {"orig_filename": "Szoelloesy-Szabo_Roza_1841_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 168", "author": "", "orig_id": 2252336}}, {"model": "metainfo.source", "pk": 743, "fields": {"orig_filename": "Szoenyi_Otto_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 168f.", "author": "", "orig_id": 1435177}}, {"model": "metainfo.source", "pk": 744, "fields": {"orig_filename": "Szoldatits_Ferenc_1820_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 169", "author": "", "orig_id": 1435181}}, {"model": "metainfo.source", "pk": 745, "fields": {"orig_filename": "Szold_Benjamin_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1437733}}, {"model": "metainfo.source", "pk": 746, "fields": {"orig_filename": "Szombathy_Josef_1853_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 169f.", "author": "", "orig_id": 1435419}}, {"model": "metainfo.source", "pk": 747, "fields": {"orig_filename": "Szomory_Dezsoe_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 170", "author": "", "orig_id": 2194367}}, {"model": "metainfo.source", "pk": 748, "fields": {"orig_filename": "Szontagh-Iglo-Zabar_Abraham_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 172f.", "author": "", "orig_id": 1435425}}, {"model": "metainfo.source", "pk": 749, "fields": {"orig_filename": "Szontagh-Iglo-Zabar_Pal_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 173", "author": "", "orig_id": 1457151}}, {"model": "metainfo.source", "pk": 750, "fields": {"orig_filename": "Szontagh-Iglo_Gusztav-Adolf_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 170f.", "author": "", "orig_id": 1435429}}, {"model": "metainfo.source", "pk": 751, "fields": {"orig_filename": "Szontagh-Iglo_Miklos_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 171f.", "author": "", "orig_id": 1435430}}, {"model": "metainfo.source", "pk": 752, "fields": {"orig_filename": "Szontagh-Iglo_Tamas_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 172", "author": "", "orig_id": 1457152}}, {"model": "metainfo.source", "pk": 753, "fields": {"orig_filename": "Sztavjanik_Gustav_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 173f.", "author": "", "orig_id": 1427136}}, {"model": "metainfo.source", "pk": 754, "fields": {"orig_filename": "Szterenyi-Brasso_Jozsef_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 174f.", "author": "", "orig_id": 1434791}}, {"model": "metainfo.source", "pk": 755, "fields": {"orig_filename": "Szterenyi_Hugo_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 174", "author": "", "orig_id": 1437734}}, {"model": "metainfo.source", "pk": 756, "fields": {"orig_filename": "Sztoczek_Jozsef_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 175", "author": "", "orig_id": 1434793}}, {"model": "metainfo.source", "pk": 757, "fields": {"orig_filename": "Sztupa_Andor_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 175f.", "author": "", "orig_id": 2180773}}, {"model": "metainfo.source", "pk": 758, "fields": {"orig_filename": "Szujski_Jozef_1835_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 176", "author": "", "orig_id": 1435133}}, {"model": "metainfo.source", "pk": 759, "fields": {"orig_filename": "Szulislawski_Adam_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 176f.", "author": "", "orig_id": 2194357}}, {"model": "metainfo.source", "pk": 760, "fields": {"orig_filename": "Szuper_Karoly_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 177", "author": "", "orig_id": 1457963}}, {"model": "metainfo.source", "pk": 761, "fields": {"orig_filename": "Szuppan_Zsigmond_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 177f.", "author": "", "orig_id": 1435138}}, {"model": "metainfo.source", "pk": 762, "fields": {"orig_filename": "Szvorenyi_Jozsef_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178f.", "author": "", "orig_id": 1435185}}, {"model": "metainfo.source", "pk": 763, "fields": {"orig_filename": "Szymonowicz_Grzegorz-Michal_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 179f.", "author": "", "orig_id": 1435189}}, {"model": "metainfo.source", "pk": 764, "fields": {"orig_filename": "Szymonowicz_Jan-Jakub_1740_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 179f.", "author": "", "orig_id": 1435192}}, {"model": "metainfo.source", "pk": 765, "fields": {"orig_filename": "Szymonowicz_Wladyslaw_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 180", "author": "", "orig_id": 2189328}}, {"model": "metainfo.source", "pk": 766, "fields": {"orig_filename": "Szyszylowicz_Ignaz_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 180f.", "author": "", "orig_id": 2141207}}, {"model": "metainfo.source", "pk": 767, "fields": {"orig_filename": "Taaffe_Eduard-Franz-Joseph_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 181f.", "author": "", "orig_id": 1422721}}, {"model": "metainfo.source", "pk": 768, "fields": {"orig_filename": "Taaffe_Ludwig-Patrick-Johannes_1791_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 182f.", "author": "", "orig_id": 1422724}}, {"model": "metainfo.source", "pk": 769, "fields": {"orig_filename": "Tabacchi_Odoardo_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 183", "author": "", "orig_id": 2133986}}, {"model": "metainfo.source", "pk": 770, "fields": {"orig_filename": "Taborsky_Frantisek_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 183f.", "author": "", "orig_id": 1422772}}, {"model": "metainfo.source", "pk": 771, "fields": {"orig_filename": "Taenzer_Aron-Arnold_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 185", "author": "", "orig_id": 1422391}}, {"model": "metainfo.source", "pk": 772, "fields": {"orig_filename": "Taganyi_Karoly_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 186f.", "author": "", "orig_id": 1457972}}, {"model": "metainfo.source", "pk": 773, "fields": {"orig_filename": "Taglang_Hugo_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 187f.", "author": "", "orig_id": 1422511}}, {"model": "metainfo.source", "pk": 774, "fields": {"orig_filename": "Taglicht_Israel_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188", "author": "", "orig_id": 1422513}}, {"model": "metainfo.source", "pk": 775, "fields": {"orig_filename": "Taglioni_Filippo_1777_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188f.", "author": "", "orig_id": 1452382}}, {"model": "metainfo.source", "pk": 776, "fields": {"orig_filename": "Taglioni_Marie_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 188f.", "author": "", "orig_id": 1422516}}, {"model": "metainfo.source", "pk": 777, "fields": {"orig_filename": "Taglioni_Marie_1833_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 1422536}}, {"model": "metainfo.source", "pk": 778, "fields": {"orig_filename": "Taglioni_Paul_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 1422535}}, {"model": "metainfo.source", "pk": 779, "fields": {"orig_filename": "Taglioni_Salvatore_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189", "author": "", "orig_id": 2252495}}, {"model": "metainfo.source", "pk": 780, "fields": {"orig_filename": "Takacs_Menyhert-Ferenc_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 189f.", "author": "", "orig_id": 1457974}}, {"model": "metainfo.source", "pk": 781, "fields": {"orig_filename": "Talatzko-Gestieticz_Johann-Adam_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 191", "author": "", "orig_id": 1422576}}, {"model": "metainfo.source", "pk": 782, "fields": {"orig_filename": "Tallyai_Daniel_1760_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 191f.", "author": "", "orig_id": 1458043}}, {"model": "metainfo.source", "pk": 783, "fields": {"orig_filename": "Talowski_Teodor-Marian_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 192", "author": "", "orig_id": 1422580}}, {"model": "metainfo.source", "pk": 784, "fields": {"orig_filename": "Tal_Ernst-Peter_1888_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 190f.", "author": "", "orig_id": 1422570}}, {"model": "metainfo.source", "pk": 785, "fields": {"orig_filename": "Tamasy-Fogaras_Arpad_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 192f.", "author": "", "orig_id": 1422607}}, {"model": "metainfo.source", "pk": 786, "fields": {"orig_filename": "Tancsics_Mihaly_1799_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 193", "author": "", "orig_id": 1422734}}, {"model": "metainfo.source", "pk": 787, "fields": {"orig_filename": "Tandler-Tanningen_Joseph-Franz_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 194", "author": "", "orig_id": 1422657}}, {"model": "metainfo.source", "pk": 788, "fields": {"orig_filename": "Tandler_Josef-Jakub_1765_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 193f.", "author": "", "orig_id": 1422654}}, {"model": "metainfo.source", "pk": 789, "fields": {"orig_filename": "Tandler_Julius_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 194f.", "author": "", "orig_id": 1422655}}, {"model": "metainfo.source", "pk": 790, "fields": {"orig_filename": "Tandor_Otto_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 195", "author": "", "orig_id": 1458049}}, {"model": "metainfo.source", "pk": 791, "fields": {"orig_filename": "Syniewski_Wiktor_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 94f.", "author": "", "orig_id": 1435820}}, {"model": "metainfo.source", "pk": 792, "fields": {"orig_filename": "Syroczynski_Leon_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 95f.", "author": "", "orig_id": 2137621}}, {"model": "metainfo.source", "pk": 793, "fields": {"orig_filename": "Syrski_Szymon-Adam_1829_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 96", "author": "", "orig_id": 2027088}}, {"model": "metainfo.source", "pk": 794, "fields": {"orig_filename": "Sytko_Josef_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436012}}, {"model": "metainfo.source", "pk": 795, "fields": {"orig_filename": "Szablik_Istvan_1746_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 96f.", "author": "", "orig_id": 1455284}}, {"model": "metainfo.source", "pk": 796, "fields": {"orig_filename": "Szablya-Frischauf_Ernesztin_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 97", "author": "", "orig_id": 1433211}}, {"model": "metainfo.source", "pk": 797, "fields": {"orig_filename": "Szabo-Kisgeresd_Imre_1820_1865.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436131}}, {"model": "metainfo.source", "pk": 798, "fields": {"orig_filename": "Szaboky_Adolph_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 102f.", "author": "", "orig_id": 1435720}}, {"model": "metainfo.source", "pk": 799, "fields": {"orig_filename": "Szabolcsi_Max_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 103", "author": "", "orig_id": 1455354}}, {"model": "metainfo.source", "pk": 800, "fields": {"orig_filename": "Szabolcska_Mihaly_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 103f.", "author": "", "orig_id": 1455356}}, {"model": "metainfo.source", "pk": 801, "fields": {"orig_filename": "Szabo_Alajos_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 97f.", "author": "", "orig_id": 1436116}}, {"model": "metainfo.source", "pk": 802, "fields": {"orig_filename": "Szabo_Basilius_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 98", "author": "", "orig_id": 1436120}}, {"model": "metainfo.source", "pk": 803, "fields": {"orig_filename": "Szabo_Denes_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 101", "author": "", "orig_id": 1455289}}, {"model": "metainfo.source", "pk": 804, "fields": {"orig_filename": "Szabo_Dezsoe_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 98f.", "author": "", "orig_id": 1436126}}, {"model": "metainfo.source", "pk": 805, "fields": {"orig_filename": "Szabo_Ignacz_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436181}}, {"model": "metainfo.source", "pk": 806, "fields": {"orig_filename": "Szabo_Istvan_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100", "author": "", "orig_id": 1436364}}, {"model": "metainfo.source", "pk": 807, "fields": {"orig_filename": "Szabo_Jozsef_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100", "author": "", "orig_id": 1457039}}, {"model": "metainfo.source", "pk": 808, "fields": {"orig_filename": "Szabo_Jozsef_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 100f.", "author": "", "orig_id": 1435679}}, {"model": "metainfo.source", "pk": 809, "fields": {"orig_filename": "Szabo_Karoly_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 101f.", "author": "", "orig_id": 1436421}}, {"model": "metainfo.source", "pk": 810, "fields": {"orig_filename": "Szabo_Xaver-Ferenc_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1457450}}, {"model": "metainfo.source", "pk": 811, "fields": {"orig_filename": "Szacsvay-Esztelnek_Imre_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 104f.", "author": "", "orig_id": 1455359}}, {"model": "metainfo.source", "pk": 812, "fields": {"orig_filename": "Szacsvay_Sandor_1752_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 104", "author": "", "orig_id": 1455358}}, {"model": "metainfo.source", "pk": 813, "fields": {"orig_filename": "Szadeczky-Kardoss_Gyula_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 105f.", "author": "", "orig_id": 1457456}}, {"model": "metainfo.source", "pk": 814, "fields": {"orig_filename": "Szadeczky-Kardoss_Lajos_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106", "author": "", "orig_id": 1458906}}, {"model": "metainfo.source", "pk": 815, "fields": {"orig_filename": "Szajbely_Henrik_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106", "author": "", "orig_id": 1435338}}, {"model": "metainfo.source", "pk": 816, "fields": {"orig_filename": "Szajnocha_Karol_1818_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 106f.", "author": "", "orig_id": 1435784}}, {"model": "metainfo.source", "pk": 817, "fields": {"orig_filename": "Szajnocha_Wladyslaw_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 107f.", "author": "", "orig_id": 1435786}}, {"model": "metainfo.source", "pk": 818, "fields": {"orig_filename": "Szalai_Istvan_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 108", "author": "", "orig_id": 1434932}}, {"model": "metainfo.source", "pk": 819, "fields": {"orig_filename": "Szalardi_Mor_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 108f.", "author": "", "orig_id": 1435840}}, {"model": "metainfo.source", "pk": 820, "fields": {"orig_filename": "Szalay-Kemend_Imre_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 110f.", "author": "", "orig_id": 1434928}}, {"model": "metainfo.source", "pk": 821, "fields": {"orig_filename": "Szalay-Kemend_Laszlo_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 111", "author": "", "orig_id": 1434936}}, {"model": "metainfo.source", "pk": 822, "fields": {"orig_filename": "Szalay_Fruzina_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109", "author": "", "orig_id": 1457477}}, {"model": "metainfo.source", "pk": 823, "fields": {"orig_filename": "Szalay_Imre_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 109f.", "author": "", "orig_id": 1434931}}, {"model": "metainfo.source", "pk": 824, "fields": {"orig_filename": "Szalay_Peter_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 110", "author": "", "orig_id": 1426792}}, {"model": "metainfo.source", "pk": 825, "fields": {"orig_filename": "Szale_Istvan_1818_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 111f.", "author": "", "orig_id": 1434939}}, {"model": "metainfo.source", "pk": 826, "fields": {"orig_filename": "Szale_Janos_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 112", "author": "", "orig_id": 1433274}}, {"model": "metainfo.source", "pk": 827, "fields": {"orig_filename": "Szamossy_Elek_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113", "author": "", "orig_id": 1435902}}, {"model": "metainfo.source", "pk": 828, "fields": {"orig_filename": "Szamossy_Laszlo_1866_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113", "author": "", "orig_id": 1433208}}, {"model": "metainfo.source", "pk": 829, "fields": {"orig_filename": "Szam_Geza_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 112f.", "author": "", "orig_id": 1457562}}, {"model": "metainfo.source", "pk": 830, "fields": {"orig_filename": "Szana_Tamas_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 113f.", "author": "", "orig_id": 1435007}}, {"model": "metainfo.source", "pk": 831, "fields": {"orig_filename": "Szanto_Emil_1857_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 114", "author": "", "orig_id": 1435016}}, {"model": "metainfo.source", "pk": 832, "fields": {"orig_filename": "Szanto_Menyhert_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 114f.", "author": "", "orig_id": 1457630}}, {"model": "metainfo.source", "pk": 833, "fields": {"orig_filename": "Szanto_Simon_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 115", "author": "", "orig_id": 1435074}}, {"model": "metainfo.source", "pk": 834, "fields": {"orig_filename": "Szanto_Theodor_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 115f.", "author": "", "orig_id": 1435075}}, {"model": "metainfo.source", "pk": 835, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Franz_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 116", "author": "", "orig_id": 1435079}}, {"model": "metainfo.source", "pk": 836, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Gyula_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 116f.", "author": "", "orig_id": 1435329}}, {"model": "metainfo.source", "pk": 837, "fields": {"orig_filename": "Szapary-Szapar-Muraszombat-Szecsisziget_Ladislaus_1831_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 117f.", "author": "", "orig_id": 1435269}}, {"model": "metainfo.source", "pk": 838, "fields": {"orig_filename": "Szaraniewicz_Izydor_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 118", "author": "", "orig_id": 1435332}}, {"model": "metainfo.source", "pk": 839, "fields": {"orig_filename": "Szarvady_Frigyes_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435335}}, {"model": "metainfo.source", "pk": 840, "fields": {"orig_filename": "Szarvassy_Arthur_1873_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 120", "author": "", "orig_id": 1435336}}, {"model": "metainfo.source", "pk": 841, "fields": {"orig_filename": "Szarvas_Gabor_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 119f.", "author": "", "orig_id": 1458986}}, {"model": "metainfo.source", "pk": 842, "fields": {"orig_filename": "Szaster_Antoni_1759_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 120f.", "author": "", "orig_id": 1435339}}, {"model": "metainfo.source", "pk": 843, "fields": {"orig_filename": "Szaster_Wincenty_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121", "author": "", "orig_id": 2162661}}, {"model": "metainfo.source", "pk": 844, "fields": {"orig_filename": "Szasz-Szemerja_Bela_1840_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121f.", "author": "", "orig_id": 1458987}}, {"model": "metainfo.source", "pk": 845, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1798_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122", "author": "", "orig_id": 1435390}}, {"model": "metainfo.source", "pk": 846, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122f.", "author": "", "orig_id": 1435391}}, {"model": "metainfo.source", "pk": 847, "fields": {"orig_filename": "Szasz-Szemerja_Karoly_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 123", "author": "", "orig_id": 1435392}}, {"model": "metainfo.source", "pk": 848, "fields": {"orig_filename": "Szasz-Szemerja_Polixenia_1831_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 122f.", "author": "", "orig_id": 1458990}}, {"model": "metainfo.source", "pk": 849, "fields": {"orig_filename": "Szaszy-Szasz_Bela_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 123f.", "author": "", "orig_id": 1457717}}, {"model": "metainfo.source", "pk": 850, "fields": {"orig_filename": "Szasz_Gyula_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 121", "author": "", "orig_id": 1435389}}, {"model": "metainfo.source", "pk": 851, "fields": {"orig_filename": "Szathmary-Laczkoczy_Lujza_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 125", "author": "", "orig_id": 1435447}}, {"model": "metainfo.source", "pk": 852, "fields": {"orig_filename": "Szathmary_Pap-Karoly_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 124f.", "author": "", "orig_id": 1435405}}, {"model": "metainfo.source", "pk": 853, "fields": {"orig_filename": "Szatmari_Mor_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 125f.", "author": "", "orig_id": 1454510}}, {"model": "metainfo.source", "pk": 854, "fields": {"orig_filename": "Szczepanik_Jan_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 126f.", "author": "", "orig_id": 1434636}}, {"model": "metainfo.source", "pk": 855, "fields": {"orig_filename": "Szczepanowski_Stanislaw-Ignacy_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 127f.", "author": "", "orig_id": 1434641}}, {"model": "metainfo.source", "pk": 856, "fields": {"orig_filename": "Szczepanski_Wladislaw_1877_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128", "author": "", "orig_id": 1434644}}, {"model": "metainfo.source", "pk": 857, "fields": {"orig_filename": "Szczucki_Wincenty_1786_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128", "author": "", "orig_id": 1434646}}, {"model": "metainfo.source", "pk": 858, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Bela_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 128f.", "author": "", "orig_id": 1426683}}, {"model": "metainfo.source", "pk": 859, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Ferenc_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 129f.", "author": "", "orig_id": 1434813}}, {"model": "metainfo.source", "pk": 860, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Gyula_1829_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434819}}, {"model": "metainfo.source", "pk": 861, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Imre_1825_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 130", "author": "", "orig_id": 1434876}}, {"model": "metainfo.source", "pk": 862, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Istvan_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 131f.", "author": "", "orig_id": 1434816}}, {"model": "metainfo.source", "pk": 863, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Lajos_1781_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 130", "author": "", "orig_id": 1434822}}, {"model": "metainfo.source", "pk": 864, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Lajos_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434873}}, {"model": "metainfo.source", "pk": 865, "fields": {"orig_filename": "Szechenyi-Sarvar-Felsoevidek_Pal_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 132", "author": "", "orig_id": 1457730}}, {"model": "metainfo.source", "pk": 866, "fields": {"orig_filename": "Szecsen-Temerin_Antal_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 132f.", "author": "", "orig_id": 1434884}}, {"model": "metainfo.source", "pk": 867, "fields": {"orig_filename": "Szecsen-Temerin_Miklos_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 133f.", "author": "", "orig_id": 1434886}}, {"model": "metainfo.source", "pk": 868, "fields": {"orig_filename": "Szecsi_Antal_1856_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 134", "author": "", "orig_id": 1434887}}, {"model": "metainfo.source", "pk": 869, "fields": {"orig_filename": "Szekely-Adamos_Agoston_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 136", "author": "", "orig_id": 1434954}}, {"model": "metainfo.source", "pk": 870, "fields": {"orig_filename": "Szekely-Adamos_Bertalan_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135f.", "author": "", "orig_id": 1435027}}, {"model": "metainfo.source", "pk": 871, "fields": {"orig_filename": "Szekely_Ferenc_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 134f.", "author": "", "orig_id": 1434959}}, {"model": "metainfo.source", "pk": 872, "fields": {"orig_filename": "Szekely_Josef_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 135", "author": "", "orig_id": 1435021}}, {"model": "metainfo.source", "pk": 873, "fields": {"orig_filename": "Szekrenyessy-Szekelyhid-Kemer_Kalman_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 136f.", "author": "", "orig_id": 1459099}}, {"model": "metainfo.source", "pk": 874, "fields": {"orig_filename": "Szekula_Mor_1839_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137", "author": "", "orig_id": 1435896}}, {"model": "metainfo.source", "pk": 875, "fields": {"orig_filename": "Szelestey_Laszlo_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137", "author": "", "orig_id": 1435094}}, {"model": "metainfo.source", "pk": 876, "fields": {"orig_filename": "Szell-Duka-Szentgyoergyvoelgy_Kalman_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 137f.", "author": "", "orig_id": 1435098}}, {"model": "metainfo.source", "pk": 877, "fields": {"orig_filename": "Szemere_Bertalan_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 138f.", "author": "", "orig_id": 1435104}}, {"model": "metainfo.source", "pk": 878, "fields": {"orig_filename": "Szemere_Krisztina_1792_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140", "author": "", "orig_id": 1459175}}, {"model": "metainfo.source", "pk": 879, "fields": {"orig_filename": "Szemere_Miklos_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 139", "author": "", "orig_id": 1435153}}, {"model": "metainfo.source", "pk": 880, "fields": {"orig_filename": "Szemere_Pal_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 139f.", "author": "", "orig_id": 1435155}}, {"model": "metainfo.source", "pk": 881, "fields": {"orig_filename": "Szemler_Mihaly_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140", "author": "", "orig_id": 1435162}}, {"model": "metainfo.source", "pk": 882, "fields": {"orig_filename": "Szenczy_Ferenc_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 140f.", "author": "", "orig_id": 1435224}}, {"model": "metainfo.source", "pk": 883, "fields": {"orig_filename": "Szenczy_Imre-Jozsef_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 141", "author": "", "orig_id": 1435223}}, {"model": "metainfo.source", "pk": 884, "fields": {"orig_filename": "Szende-Keresztes_Bela_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 142", "author": "", "orig_id": 1435226}}, {"model": "metainfo.source", "pk": 885, "fields": {"orig_filename": "Szende_Pal_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 141f.", "author": "", "orig_id": 1435227}}, {"model": "metainfo.source", "pk": 886, "fields": {"orig_filename": "Szendrei-Mindszent_Janos_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 142f.", "author": "", "orig_id": 1459179}}, {"model": "metainfo.source", "pk": 887, "fields": {"orig_filename": "Szendy_Arpad_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 143f.", "author": "", "orig_id": 1459180}}, {"model": "metainfo.source", "pk": 888, "fields": {"orig_filename": "Szenes_Fueloep_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 144", "author": "", "orig_id": 1433018}}, {"model": "metainfo.source", "pk": 889, "fields": {"orig_filename": "Szent-Istvanyi_Gyula_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 144f.", "author": "", "orig_id": 1435298}}, {"model": "metainfo.source", "pk": 890, "fields": {"orig_filename": "Suman_Josip_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46f.", "author": "", "orig_id": 1435792}}, {"model": "metainfo.source", "pk": 891, "fields": {"orig_filename": "Sumec_Josef_1867_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 48", "author": "", "orig_id": 1435849}}, {"model": "metainfo.source", "pk": 892, "fields": {"orig_filename": "Sumin_Jiri_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 48f.", "author": "", "orig_id": 1472593}}, {"model": "metainfo.source", "pk": 893, "fields": {"orig_filename": "Sundecic_Jovan_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 49", "author": "", "orig_id": 1435917}}, {"model": "metainfo.source", "pk": 894, "fields": {"orig_filename": "Sunstenau-Schuetzenthal_Heinrich_1780_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 49f.", "author": "", "orig_id": 1435974}}, {"model": "metainfo.source", "pk": 895, "fields": {"orig_filename": "Supan_Alexander-Georg_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 51", "author": "", "orig_id": 1432211}}, {"model": "metainfo.source", "pk": 896, "fields": {"orig_filename": "Supilo_Frano_1870_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 51f.", "author": "", "orig_id": 1436271}}, {"model": "metainfo.source", "pk": 897, "fields": {"orig_filename": "Supljikac-Vitez_Stevan_1786_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 52", "author": "", "orig_id": 1436281}}, {"model": "metainfo.source", "pk": 898, "fields": {"orig_filename": "Suppantschitsch_Johann-Anton_1785_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 54f.", "author": "", "orig_id": 1435491}}, {"model": "metainfo.source", "pk": 899, "fields": {"orig_filename": "Suppantschitsch_Richard_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 55", "author": "", "orig_id": 1937201}}, {"model": "metainfo.source", "pk": 900, "fields": {"orig_filename": "Suppantschitsch_Viktor_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 55f.", "author": "", "orig_id": 1435495}}, {"model": "metainfo.source", "pk": 901, "fields": {"orig_filename": "Suppan_Anna_1891_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436326}}, {"model": "metainfo.source", "pk": 902, "fields": {"orig_filename": "Suppan_Carl-Viktor_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 52f.", "author": "", "orig_id": 1436330}}, {"model": "metainfo.source", "pk": 903, "fields": {"orig_filename": "Suppan_Joachim_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 53", "author": "", "orig_id": 1436332}}, {"model": "metainfo.source", "pk": 904, "fields": {"orig_filename": "Suppan_Josef_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 53f.", "author": "", "orig_id": 1436213}}, {"model": "metainfo.source", "pk": 905, "fields": {"orig_filename": "Suppe_Franz_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 56f.", "author": "", "orig_id": 1432376}}, {"model": "metainfo.source", "pk": 906, "fields": {"orig_filename": "Sup_Prokop-Bartolomej_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 50f.", "author": "", "orig_id": 1435976}}, {"model": "metainfo.source", "pk": 907, "fields": {"orig_filename": "Suranyi_Janos_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435568}}, {"model": "metainfo.source", "pk": 908, "fields": {"orig_filename": "Surmin_Duro_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 57", "author": "", "orig_id": 1435569}}, {"model": "metainfo.source", "pk": 909, "fields": {"orig_filename": "Susan_Johann_1796_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 57f.", "author": "", "orig_id": 1435630}}, {"model": "metainfo.source", "pk": 910, "fields": {"orig_filename": "Suschitzky_Philipp_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 58", "author": "", "orig_id": 1454373}}, {"model": "metainfo.source", "pk": 911, "fields": {"orig_filename": "Suschitzky_Wilhelm_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 58f.", "author": "", "orig_id": 1432377}}, {"model": "metainfo.source", "pk": 912, "fields": {"orig_filename": "Susil_Frantisek_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 59", "author": "", "orig_id": 1435643}}, {"model": "metainfo.source", "pk": 913, "fields": {"orig_filename": "Suske_Ferdinand_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 59f.", "author": "", "orig_id": 1435695}}, {"model": "metainfo.source", "pk": 914, "fields": {"orig_filename": "Sussin_Mathilde_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 60", "author": "", "orig_id": 1449942}}, {"model": "metainfo.source", "pk": 915, "fields": {"orig_filename": "Susta_Josef_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 60f.", "author": "", "orig_id": 1435752}}, {"model": "metainfo.source", "pk": 916, "fields": {"orig_filename": "Susta_Josef_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 61f.", "author": "", "orig_id": 1435754}}, {"model": "metainfo.source", "pk": 917, "fields": {"orig_filename": "Susta_Vaclav_1871_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2145126}}, {"model": "metainfo.source", "pk": 918, "fields": {"orig_filename": "Sustek_Daniel_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435756}}, {"model": "metainfo.source", "pk": 919, "fields": {"orig_filename": "Sustersic_Ivan_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 62", "author": "", "orig_id": 1435765}}, {"model": "metainfo.source", "pk": 920, "fields": {"orig_filename": "Sust_Janez_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2152139}}, {"model": "metainfo.source", "pk": 921, "fields": {"orig_filename": "Sutnar_Jaroslav_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 62f.", "author": "", "orig_id": 1435809}}, {"model": "metainfo.source", "pk": 922, "fields": {"orig_filename": "Sutter_Joseph_1781_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 63", "author": "", "orig_id": 1435864}}, {"model": "metainfo.source", "pk": 923, "fields": {"orig_filename": "Suttner_Arthur-Gundaccar_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 63f.", "author": "", "orig_id": 1435868}}, {"model": "metainfo.source", "pk": 924, "fields": {"orig_filename": "Suttner_Bertha_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64f.", "author": "", "orig_id": 1431923}}, {"model": "metainfo.source", "pk": 925, "fields": {"orig_filename": "Suttner_Johann_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 65f.", "author": "", "orig_id": 1868058}}, {"model": "metainfo.source", "pk": 926, "fields": {"orig_filename": "Suttner_Karl-Gundaccar_1819_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64", "author": "", "orig_id": 1469416}}, {"model": "metainfo.source", "pk": 927, "fields": {"orig_filename": "Suttner_Marie-Louise_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 64", "author": "", "orig_id": 1435928}}, {"model": "metainfo.source", "pk": 928, "fields": {"orig_filename": "Svab-Malostransky_Josef_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1437357}}, {"model": "metainfo.source", "pk": 929, "fields": {"orig_filename": "Svab_Karel_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2292637}}, {"model": "metainfo.source", "pk": 930, "fields": {"orig_filename": "Svaiczer_Gabor_1784_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 66", "author": "", "orig_id": 1436056}}, {"model": "metainfo.source", "pk": 931, "fields": {"orig_filename": "Svambera_Vaclav_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 66f.", "author": "", "orig_id": 1436058}}, {"model": "metainfo.source", "pk": 932, "fields": {"orig_filename": "Svanda-Semcic_Karel_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 67", "author": "", "orig_id": 1825501}}, {"model": "metainfo.source", "pk": 933, "fields": {"orig_filename": "Svanda-Semcic_Pavel_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 67f.", "author": "", "orig_id": 1436097}}, {"model": "metainfo.source", "pk": 934, "fields": {"orig_filename": "Svanda-Semcic_Pavel_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 2007184}}, {"model": "metainfo.source", "pk": 935, "fields": {"orig_filename": "Svatek_Josef-Jan_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 1436110}}, {"model": "metainfo.source", "pk": 936, "fields": {"orig_filename": "Svatek_Josef_1835_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68", "author": "", "orig_id": 1436111}}, {"model": "metainfo.source", "pk": 937, "fields": {"orig_filename": "Svatova_Tereza_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 68f.", "author": "", "orig_id": 1825456}}, {"model": "metainfo.source", "pk": 938, "fields": {"orig_filename": "Sveceny_Antonin_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 69", "author": "", "orig_id": 1436161}}, {"model": "metainfo.source", "pk": 939, "fields": {"orig_filename": "Svehla_Antonin_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 69f.", "author": "", "orig_id": 1436164}}, {"model": "metainfo.source", "pk": 940, "fields": {"orig_filename": "Svenda_Frantisek-De-Paula_1741_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 70", "author": "", "orig_id": 1436165}}, {"model": "metainfo.source", "pk": 941, "fields": {"orig_filename": "Svenk_Karel_1917_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436166}}, {"model": "metainfo.source", "pk": 942, "fields": {"orig_filename": "Svetec_Luka_1826_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71", "author": "", "orig_id": 1436171}}, {"model": "metainfo.source", "pk": 943, "fields": {"orig_filename": "Svetlin_Wilhelm_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71", "author": "", "orig_id": 1436179}}, {"model": "metainfo.source", "pk": 944, "fields": {"orig_filename": "Sviha_Karel_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 71f.", "author": "", "orig_id": 1436220}}, {"model": "metainfo.source", "pk": 945, "fields": {"orig_filename": "Svitil_Johann_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 72", "author": "", "orig_id": 1436225}}, {"model": "metainfo.source", "pk": 946, "fields": {"orig_filename": "Svoboda_Adalbert_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 72f.", "author": "", "orig_id": 1436231}}, {"model": "metainfo.source", "pk": 947, "fields": {"orig_filename": "Svoboda_Anton-Dobroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 73f.", "author": "", "orig_id": 1436237}}, {"model": "metainfo.source", "pk": 948, "fields": {"orig_filename": "Svoboda_Frantisek-Jan_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 74", "author": "", "orig_id": 1436295}}, {"model": "metainfo.source", "pk": 949, "fields": {"orig_filename": "Svoboda_Frantisek-Xav_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 75", "author": "", "orig_id": 1436290}}, {"model": "metainfo.source", "pk": 950, "fields": {"orig_filename": "Svoboda_Jindrich_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 75f.", "author": "", "orig_id": 1436343}}, {"model": "metainfo.source", "pk": 951, "fields": {"orig_filename": "Svoboda_Johann_1803_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 73", "author": "", "orig_id": 1436344}}, {"model": "metainfo.source", "pk": 952, "fields": {"orig_filename": "Svoboda_Josef_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436349}}, {"model": "metainfo.source", "pk": 953, "fields": {"orig_filename": "Svoboda_Karl_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 76", "author": "", "orig_id": 1436397}}, {"model": "metainfo.source", "pk": 954, "fields": {"orig_filename": "Svoboda_Vaclav-Alois_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 76f.", "author": "", "orig_id": 1435513}}, {"model": "metainfo.source", "pk": 955, "fields": {"orig_filename": "Svoboda_Vaclav_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435511}}, {"model": "metainfo.source", "pk": 956, "fields": {"orig_filename": "Svobodova-Goldmannova_Frantiska_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 74", "author": "", "orig_id": 2169822}}, {"model": "metainfo.source", "pk": 957, "fields": {"orig_filename": "Svobodova_Ruzena_1868_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 77", "author": "", "orig_id": 1435509}}, {"model": "metainfo.source", "pk": 958, "fields": {"orig_filename": "Svozil_Josef_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 77f.", "author": "", "orig_id": 1435522}}, {"model": "metainfo.source", "pk": 959, "fields": {"orig_filename": "Swensson_Carl-Gustav_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 78f.", "author": "", "orig_id": 1435577}}, {"model": "metainfo.source", "pk": 960, "fields": {"orig_filename": "Swerts_Jan_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 79", "author": "", "orig_id": 1435578}}, {"model": "metainfo.source", "pk": 961, "fields": {"orig_filename": "Sweth_Kajetan_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 79f.", "author": "", "orig_id": 1435579}}, {"model": "metainfo.source", "pk": 962, "fields": {"orig_filename": "Swida_Franz_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 80", "author": "", "orig_id": 1440818}}, {"model": "metainfo.source", "pk": 963, "fields": {"orig_filename": "Swierkiewicz_Edward_1808_1875.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1447981}}, {"model": "metainfo.source", "pk": 964, "fields": {"orig_filename": "Swiezy_Ignaz_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 80f.", "author": "", "orig_id": 1435586}}, {"model": "metainfo.source", "pk": 965, "fields": {"orig_filename": "Swoboda_Adalbert-Constantin_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 81", "author": "", "orig_id": 1433206}}, {"model": "metainfo.source", "pk": 966, "fields": {"orig_filename": "Swoboda_Albin_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 81f.", "author": "", "orig_id": 1432917}}, {"model": "metainfo.source", "pk": 967, "fields": {"orig_filename": "Swoboda_August_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82f.", "author": "", "orig_id": 1436238}}, {"model": "metainfo.source", "pk": 968, "fields": {"orig_filename": "Swoboda_Eduard_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 83", "author": "", "orig_id": 1432379}}, {"model": "metainfo.source", "pk": 969, "fields": {"orig_filename": "Swoboda_Emerich-Alexius_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 83f.", "author": "", "orig_id": 1405674}}, {"model": "metainfo.source", "pk": 970, "fields": {"orig_filename": "Swoboda_Ernst_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 84f.", "author": "", "orig_id": 1436288}}, {"model": "metainfo.source", "pk": 971, "fields": {"orig_filename": "Swoboda_Franz_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 85", "author": "", "orig_id": 1436294}}, {"model": "metainfo.source", "pk": 972, "fields": {"orig_filename": "Swoboda_Friederike_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82", "author": "", "orig_id": 1450020}}, {"model": "metainfo.source", "pk": 973, "fields": {"orig_filename": "Swoboda_Heinrich_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 85f.", "author": "", "orig_id": 1436339}}, {"model": "metainfo.source", "pk": 974, "fields": {"orig_filename": "Swoboda_Heinrich_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 86", "author": "", "orig_id": 1436340}}, {"model": "metainfo.source", "pk": 975, "fields": {"orig_filename": "Swoboda_Josefine_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 87f.", "author": "", "orig_id": 1436396}}, {"model": "metainfo.source", "pk": 976, "fields": {"orig_filename": "Swoboda_Josef_1806_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 87", "author": "", "orig_id": 1436395}}, {"model": "metainfo.source", "pk": 977, "fields": {"orig_filename": "Swoboda_Karl_1882_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 88", "author": "", "orig_id": 1436398}}, {"model": "metainfo.source", "pk": 978, "fields": {"orig_filename": "Swoboda_Margarete_1872_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 82", "author": "", "orig_id": 1436403}}, {"model": "metainfo.source", "pk": 979, "fields": {"orig_filename": "Swoboda_Rudolf_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 88f.", "author": "", "orig_id": 1435508}}, {"model": "metainfo.source", "pk": 980, "fields": {"orig_filename": "Swoboda_Rudolph_1819_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 89", "author": "", "orig_id": 1435507}}, {"model": "metainfo.source", "pk": 981, "fields": {"orig_filename": "Swoboda_Wenzel_1772_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 89f.", "author": "", "orig_id": 1435512}}, {"model": "metainfo.source", "pk": 982, "fields": {"orig_filename": "Sychra_Josef-Cyril_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90f.", "author": "", "orig_id": 2163157}}, {"model": "metainfo.source", "pk": 983, "fields": {"orig_filename": "Sychra_Matej-Josef_1776_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90", "author": "", "orig_id": 1435656}}, {"model": "metainfo.source", "pk": 984, "fields": {"orig_filename": "Sychra_Method-Lumir_1884_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91", "author": "", "orig_id": 2163168}}, {"model": "metainfo.source", "pk": 985, "fields": {"orig_filename": "Sychra_Vaclav_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 90f.", "author": "", "orig_id": 1435653}}, {"model": "metainfo.source", "pk": 986, "fields": {"orig_filename": "Sykora_Karl_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91", "author": "", "orig_id": 1435767}}, {"model": "metainfo.source", "pk": 987, "fields": {"orig_filename": "Syllaba_Ladislav_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 91f.", "author": "", "orig_id": 1435770}}, {"model": "metainfo.source", "pk": 988, "fields": {"orig_filename": "Sylvester_Hans_1897_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 92f.", "author": "", "orig_id": 1435774}}, {"model": "metainfo.source", "pk": 989, "fields": {"orig_filename": "Sylvester_Julius_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 93", "author": "", "orig_id": 1435948}}, {"model": "metainfo.source", "pk": 990, "fields": {"orig_filename": "Symersky_Josef_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 94", "author": "", "orig_id": 1435817}}, {"model": "metainfo.source", "pk": 991, "fields": {"orig_filename": "Sym_Igo_1896_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 93f.", "author": "", "orig_id": 1450023}}, {"model": "metainfo.source", "pk": 992, "fields": {"orig_filename": "Synek_Adolf_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2171789}}, {"model": "metainfo.source", "pk": 993, "fields": {"orig_filename": "Synek_Karel_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2292750}}, {"model": "metainfo.source", "pk": 994, "fields": {"orig_filename": "Stuermer_Karl_1792_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445f.", "author": "", "orig_id": 1433166}}, {"model": "metainfo.source", "pk": 995, "fields": {"orig_filename": "Stuerzer_Rudolf_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 446", "author": "", "orig_id": 1433167}}, {"model": "metainfo.source", "pk": 996, "fields": {"orig_filename": "Stuflesser_Ferdinand_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 446f.", "author": "", "orig_id": 1433095}}, {"model": "metainfo.source", "pk": 997, "fields": {"orig_filename": "Stukart_Moriz_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 447", "author": "", "orig_id": 1432965}}, {"model": "metainfo.source", "pk": 998, "fields": {"orig_filename": "Stulc_Vaclav_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 447f.", "author": "", "orig_id": 1433235}}, {"model": "metainfo.source", "pk": 999, "fields": {"orig_filename": "Stulli_Gioachino_1729_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 448", "author": "", "orig_id": 1433237}}, {"model": "metainfo.source", "pk": 1000, "fields": {"orig_filename": "Stulli_Luca_1772_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1", "author": "", "orig_id": 1433238}}, {"model": "metainfo.source", "pk": 1001, "fields": {"orig_filename": "Stummer-Tavarnok_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1f.", "author": "", "orig_id": 1433311}}, {"model": "metainfo.source", "pk": 1002, "fields": {"orig_filename": "Stummer-Tavarnok_August-Wilhelm_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 2", "author": "", "orig_id": 1433417}}, {"model": "metainfo.source", "pk": 1003, "fields": {"orig_filename": "Stummer-Traunfels_Josef-Mauritius_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 2f.", "author": "", "orig_id": 1433465}}, {"model": "metainfo.source", "pk": 1004, "fields": {"orig_filename": "Stummer-Traunfels_Robert_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3", "author": "", "orig_id": 1935819}}, {"model": "metainfo.source", "pk": 1005, "fields": {"orig_filename": "Stummer-Traunfels_Rudolf_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3", "author": "", "orig_id": 1433466}}, {"model": "metainfo.source", "pk": 1006, "fields": {"orig_filename": "Stummer_Karl_1825_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 1f.", "author": "", "orig_id": 1433243}}, {"model": "metainfo.source", "pk": 1007, "fields": {"orig_filename": "Stumpf-Brentano_Karl-Friedrich_1829_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 4f.", "author": "", "orig_id": 1433476}}, {"model": "metainfo.source", "pk": 1008, "fields": {"orig_filename": "Stumpf_Franz_1876_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 3f.", "author": "", "orig_id": 1433471}}, {"model": "metainfo.source", "pk": 1009, "fields": {"orig_filename": "Stundl_Theodor_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 5", "author": "", "orig_id": 1433524}}, {"model": "metainfo.source", "pk": 1010, "fields": {"orig_filename": "Stuparich_Carlo_1894_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 5", "author": "", "orig_id": 1433531}}, {"model": "metainfo.source", "pk": 1011, "fields": {"orig_filename": "Stuparich_Giani_1891_1961.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1978680}}, {"model": "metainfo.source", "pk": 1012, "fields": {"orig_filename": "Stupecky_Josef_1848_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6", "author": "", "orig_id": 1433533}}, {"model": "metainfo.source", "pk": 1013, "fields": {"orig_filename": "Stupka_Walter_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6", "author": "", "orig_id": 1433583}}, {"model": "metainfo.source", "pk": 1014, "fields": {"orig_filename": "Stupper_Carl_1808_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 6f.", "author": "", "orig_id": 1433592}}, {"model": "metainfo.source", "pk": 1015, "fields": {"orig_filename": "Sturany_Johann_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1840197}}, {"model": "metainfo.source", "pk": 1016, "fields": {"orig_filename": "Sturany_Josef_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1840203}}, {"model": "metainfo.source", "pk": 1017, "fields": {"orig_filename": "Sturany_Moritz_1862_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 10f.", "author": "", "orig_id": 1432753}}, {"model": "metainfo.source", "pk": 1018, "fields": {"orig_filename": "Sturany_Rudolf_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 11", "author": "", "orig_id": 1430742}}, {"model": "metainfo.source", "pk": 1019, "fields": {"orig_filename": "Sturm-Skrla_Egge_1894_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 15", "author": "", "orig_id": 1432929}}, {"model": "metainfo.source", "pk": 1020, "fields": {"orig_filename": "Sturm_Albert_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 11f.", "author": "", "orig_id": 1432754}}, {"model": "metainfo.source", "pk": 1021, "fields": {"orig_filename": "Sturm_Ambros_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 12", "author": "", "orig_id": 1432756}}, {"model": "metainfo.source", "pk": 1022, "fields": {"orig_filename": "Sturm_Anton_1787_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 12", "author": "", "orig_id": 1432757}}, {"model": "metainfo.source", "pk": 1023, "fields": {"orig_filename": "Sturm_Eduard_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 13", "author": "", "orig_id": 1432797}}, {"model": "metainfo.source", "pk": 1024, "fields": {"orig_filename": "Sturm_Friedrich_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 13f.", "author": "", "orig_id": 1432803}}, {"model": "metainfo.source", "pk": 1025, "fields": {"orig_filename": "Sturm_Georg_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 14", "author": "", "orig_id": 1432808}}, {"model": "metainfo.source", "pk": 1026, "fields": {"orig_filename": "Sturm_Josef_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 14f.", "author": "", "orig_id": 1432920}}, {"model": "metainfo.source", "pk": 1027, "fields": {"orig_filename": "Stursa_Jan_1880_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 15f.", "author": "", "orig_id": 1433054}}, {"model": "metainfo.source", "pk": 1028, "fields": {"orig_filename": "Stur_Dionys_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 7", "author": "", "orig_id": 1432686}}, {"model": "metainfo.source", "pk": 1029, "fields": {"orig_filename": "Stur_Jan_1895_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 7f.", "author": "", "orig_id": 1432690}}, {"model": "metainfo.source", "pk": 1030, "fields": {"orig_filename": "Stur_Karl_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 8f.", "author": "", "orig_id": 1432745}}, {"model": "metainfo.source", "pk": 1031, "fields": {"orig_filename": "Stur_Karol_1811_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9", "author": "", "orig_id": 1432696}}, {"model": "metainfo.source", "pk": 1032, "fields": {"orig_filename": "Stur_Ludovit_1815_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9f.", "author": "", "orig_id": 1432751}}, {"model": "metainfo.source", "pk": 1033, "fields": {"orig_filename": "Stur_Samuel_1789_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 9", "author": "", "orig_id": 1995250}}, {"model": "metainfo.source", "pk": 1034, "fields": {"orig_filename": "Stutterheim_Alfred_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 16", "author": "", "orig_id": 1840215}}, {"model": "metainfo.source", "pk": 1035, "fields": {"orig_filename": "Stutterheim_Johann_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17", "author": "", "orig_id": 1433106}}, {"model": "metainfo.source", "pk": 1036, "fields": {"orig_filename": "Stutterheim_Joseph_1764_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 16f.", "author": "", "orig_id": 1433107}}, {"model": "metainfo.source", "pk": 1037, "fields": {"orig_filename": "Stuwer_Anton_1804_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17f.", "author": "", "orig_id": 1433111}}, {"model": "metainfo.source", "pk": 1038, "fields": {"orig_filename": "Stuwer_Anton_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 17f.", "author": "", "orig_id": 1433110}}, {"model": "metainfo.source", "pk": 1039, "fields": {"orig_filename": "Stwertka_Julius_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 18", "author": "", "orig_id": 1433117}}, {"model": "metainfo.source", "pk": 1040, "fields": {"orig_filename": "Stwrtnik_Augustin-Wenzeslaus_1755_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 19", "author": "", "orig_id": 1433185}}, {"model": "metainfo.source", "pk": 1041, "fields": {"orig_filename": "Stwrtnik_Augustin_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 18f.", "author": "", "orig_id": 1433186}}, {"model": "metainfo.source", "pk": 1042, "fields": {"orig_filename": "Styblo_Bedrich_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 19f.", "author": "", "orig_id": 1825264}}, {"model": "metainfo.source", "pk": 1043, "fields": {"orig_filename": "Styka_Jan_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 20", "author": "", "orig_id": 1433194}}, {"model": "metainfo.source", "pk": 1044, "fields": {"orig_filename": "Styrsky_Jindrich_1899_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 20f.", "author": "", "orig_id": 1433196}}, {"model": "metainfo.source", "pk": 1045, "fields": {"orig_filename": "Subak_Julius_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 21f.", "author": "", "orig_id": 1433380}}, {"model": "metainfo.source", "pk": 1046, "fields": {"orig_filename": "Subert_Frantisek-Adolf_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 22f.", "author": "", "orig_id": 1433419}}, {"model": "metainfo.source", "pk": 1047, "fields": {"orig_filename": "Subic_Ivan_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 25", "author": "", "orig_id": 2162055}}, {"model": "metainfo.source", "pk": 1048, "fields": {"orig_filename": "Subic_Janez_1850_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 23", "author": "", "orig_id": 1965644}}, {"model": "metainfo.source", "pk": 1049, "fields": {"orig_filename": "Subic_Jurij_1855_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 23f.", "author": "", "orig_id": 1433429}}, {"model": "metainfo.source", "pk": 1050, "fields": {"orig_filename": "Subic_Simon_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 24", "author": "", "orig_id": 1433431}}, {"model": "metainfo.source", "pk": 1051, "fields": {"orig_filename": "Subic_Vladimir_1894_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 24f.", "author": "", "orig_id": 1980230}}, {"model": "metainfo.source", "pk": 1052, "fields": {"orig_filename": "Succovaty-Vezza_Eduard_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 25f.", "author": "", "orig_id": 1433480}}, {"model": "metainfo.source", "pk": 1053, "fields": {"orig_filename": "Sucharda_Edward_1891_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 26", "author": "", "orig_id": 2133057}}, {"model": "metainfo.source", "pk": 1054, "fields": {"orig_filename": "Sucharda_Stanislav_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 26f.", "author": "", "orig_id": 1433542}}, {"model": "metainfo.source", "pk": 1055, "fields": {"orig_filename": "Suchecki_Henryk-Ignacy_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 27", "author": "", "orig_id": 1433544}}, {"model": "metainfo.source", "pk": 1056, "fields": {"orig_filename": "Sucher_Joseph_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 27f.", "author": "", "orig_id": 1433549}}, {"model": "metainfo.source", "pk": 1057, "fields": {"orig_filename": "Sucher_Rosa_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 28", "author": "", "orig_id": 2193480}}, {"model": "metainfo.source", "pk": 1058, "fields": {"orig_filename": "Suchsland_Leopold_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 28f.", "author": "", "orig_id": 1433595}}, {"model": "metainfo.source", "pk": 1059, "fields": {"orig_filename": "Suchy_Adalbert_1783_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 29", "author": "", "orig_id": 1433283}}, {"model": "metainfo.source", "pk": 1060, "fields": {"orig_filename": "Suchy_Carl_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 29f.", "author": "", "orig_id": 1433284}}, {"model": "metainfo.source", "pk": 1061, "fields": {"orig_filename": "Suchy_Franz_1860_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 30", "author": "", "orig_id": 1433285}}, {"model": "metainfo.source", "pk": 1062, "fields": {"orig_filename": "Suck_Rosa_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 30f.", "author": "", "orig_id": 1433339}}, {"model": "metainfo.source", "pk": 1063, "fields": {"orig_filename": "Suda_Stanislav_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 31", "author": "", "orig_id": 1472590}}, {"model": "metainfo.source", "pk": 1064, "fields": {"orig_filename": "Suess-Hellrat_Friedrich_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 37", "author": "", "orig_id": 1453182}}, {"model": "metainfo.source", "pk": 1065, "fields": {"orig_filename": "Suessemilch_Gustav_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432835}}, {"model": "metainfo.source", "pk": 1066, "fields": {"orig_filename": "Suessmann_Hermann_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36f.", "author": "", "orig_id": 1435904}}, {"model": "metainfo.source", "pk": 1067, "fields": {"orig_filename": "Suess_Adolph-Heinrich_1797_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 31f.", "author": "", "orig_id": 1432723}}, {"model": "metainfo.source", "pk": 1068, "fields": {"orig_filename": "Suess_Eduard_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 32f.", "author": "", "orig_id": 1427985}}, {"model": "metainfo.source", "pk": 1069, "fields": {"orig_filename": "Suess_Franz-Eduard_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 33f.", "author": "", "orig_id": 1432724}}, {"model": "metainfo.source", "pk": 1070, "fields": {"orig_filename": "Suess_Friedrich_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 34f.", "author": "", "orig_id": 1432725}}, {"model": "metainfo.source", "pk": 1071, "fields": {"orig_filename": "Suess_Maria-Vincenz_1802_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 35", "author": "", "orig_id": 1432831}}, {"model": "metainfo.source", "pk": 1072, "fields": {"orig_filename": "Suess_Martin_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432783}}, {"model": "metainfo.source", "pk": 1073, "fields": {"orig_filename": "Suess_Nandor_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 35", "author": "", "orig_id": 1458216}}, {"model": "metainfo.source", "pk": 1074, "fields": {"orig_filename": "Suess_Walter_1905_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36", "author": "", "orig_id": 1424426}}, {"model": "metainfo.source", "pk": 1075, "fields": {"orig_filename": "Suess_Walter_1912_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 36", "author": "", "orig_id": 1437731}}, {"model": "metainfo.source", "pk": 1076, "fields": {"orig_filename": "Sufflay_Milan_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 37f.", "author": "", "orig_id": 1435959}}, {"model": "metainfo.source", "pk": 1077, "fields": {"orig_filename": "Sugar_Nikolaus_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 38f.", "author": "", "orig_id": 1436138}}, {"model": "metainfo.source", "pk": 1078, "fields": {"orig_filename": "Suhajda_Ludovit-Matej_1806_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 39", "author": "", "orig_id": 1436144}}, {"model": "metainfo.source", "pk": 1079, "fields": {"orig_filename": "Suhayda_Janos_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 39f.", "author": "", "orig_id": 1436147}}, {"model": "metainfo.source", "pk": 1080, "fields": {"orig_filename": "Suida_Wilhelm_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 40", "author": "", "orig_id": 1436194}}, {"model": "metainfo.source", "pk": 1081, "fields": {"orig_filename": "Sujanszky_Anton_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 40f.", "author": "", "orig_id": 1436256}}, {"model": "metainfo.source", "pk": 1082, "fields": {"orig_filename": "Suklje_Fran_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 42", "author": "", "orig_id": 1436318}}, {"model": "metainfo.source", "pk": 1083, "fields": {"orig_filename": "Sukup_Max_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1436366}}, {"model": "metainfo.source", "pk": 1084, "fields": {"orig_filename": "Suk_Josef_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 41", "author": "", "orig_id": 1436260}}, {"model": "metainfo.source", "pk": 1085, "fields": {"orig_filename": "Suk_Vaclav-Frantisek_1883_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 41f.", "author": "", "orig_id": 1825410}}, {"model": "metainfo.source", "pk": 1086, "fields": {"orig_filename": "Sulc_Otakar_1869_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 42f.", "author": "", "orig_id": 1436375}}, {"model": "metainfo.source", "pk": 1087, "fields": {"orig_filename": "Sulek_Bohuslav-Karol_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 43f.", "author": "", "orig_id": 1436379}}, {"model": "metainfo.source", "pk": 1088, "fields": {"orig_filename": "Sulek_Jan_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 43", "author": "", "orig_id": 1436381}}, {"model": "metainfo.source", "pk": 1089, "fields": {"orig_filename": "Sulke_Rudolf_1885_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2052674}}, {"model": "metainfo.source", "pk": 1090, "fields": {"orig_filename": "Sulzboeck_Amandus_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 44", "author": "", "orig_id": 1435547}}, {"model": "metainfo.source", "pk": 1091, "fields": {"orig_filename": "Sulzer_Henriette_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435551}}, {"model": "metainfo.source", "pk": 1092, "fields": {"orig_filename": "Sulzer_Joseph_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435687}}, {"model": "metainfo.source", "pk": 1093, "fields": {"orig_filename": "Sulzer_Julius_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435688}}, {"model": "metainfo.source", "pk": 1094, "fields": {"orig_filename": "Sulzer_Marie_1828_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435691}}, {"model": "metainfo.source", "pk": 1095, "fields": {"orig_filename": "Sulzer_Rudolf_1883_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45", "author": "", "orig_id": 1435737}}, {"model": "metainfo.source", "pk": 1096, "fields": {"orig_filename": "Sulzer_Salomon_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 45f.", "author": "", "orig_id": 1435738}}, {"model": "metainfo.source", "pk": 1097, "fields": {"orig_filename": "Sulzer_Sophie_1840_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 46", "author": "", "orig_id": 1435746}}, {"model": "metainfo.source", "pk": 1098, "fields": {"orig_filename": "Sumanovic_Sava_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 63, 2012), S. 47f.", "author": "", "orig_id": 1999359}}, {"model": "metainfo.source", "pk": 1099, "fields": {"orig_filename": "Strele_Anton_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 396f.", "author": "", "orig_id": 1419706}}, {"model": "metainfo.source", "pk": 1100, "fields": {"orig_filename": "Strele_Georg_1861_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 397f.", "author": "", "orig_id": 1433978}}, {"model": "metainfo.source", "pk": 1101, "fields": {"orig_filename": "Strelli_Richard_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 398", "author": "", "orig_id": 1434206}}, {"model": "metainfo.source", "pk": 1102, "fields": {"orig_filename": "Stremayr_Karl_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 398f.", "author": "", "orig_id": 1434209}}, {"model": "metainfo.source", "pk": 1103, "fields": {"orig_filename": "Strepponi_Feliciano_1797_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 399", "author": "", "orig_id": 1434215}}, {"model": "metainfo.source", "pk": 1104, "fields": {"orig_filename": "Strepponi_Giuseppina_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 399", "author": "", "orig_id": 1434216}}, {"model": "metainfo.source", "pk": 1105, "fields": {"orig_filename": "Streussenberger_Franz_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400", "author": "", "orig_id": 1432934}}, {"model": "metainfo.source", "pk": 1106, "fields": {"orig_filename": "Strezek_Franz-K_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400", "author": "", "orig_id": 1434256}}, {"model": "metainfo.source", "pk": 1107, "fields": {"orig_filename": "Stricker_Robert_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 400f.", "author": "", "orig_id": 1434317}}, {"model": "metainfo.source", "pk": 1108, "fields": {"orig_filename": "Stricker_Salomon_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 401f.", "author": "", "orig_id": 1434320}}, {"model": "metainfo.source", "pk": 1109, "fields": {"orig_filename": "Strickner_Anton_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402f.", "author": "", "orig_id": 1434324}}, {"model": "metainfo.source", "pk": 1110, "fields": {"orig_filename": "Strickner_Anton_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402f.", "author": "", "orig_id": 1447295}}, {"model": "metainfo.source", "pk": 1111, "fields": {"orig_filename": "Strickner_Franz_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 402", "author": "", "orig_id": 2106134}}, {"model": "metainfo.source", "pk": 1112, "fields": {"orig_filename": "Strickner_Joseph-Leopold_1744_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403", "author": "", "orig_id": 1434327}}, {"model": "metainfo.source", "pk": 1113, "fields": {"orig_filename": "Strictius_Ludwig_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403", "author": "", "orig_id": 1434328}}, {"model": "metainfo.source", "pk": 1114, "fields": {"orig_filename": "Strigl_Richard_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 403f.", "author": "", "orig_id": 1434392}}, {"model": "metainfo.source", "pk": 1115, "fields": {"orig_filename": "Strigl_Theres_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 404", "author": "", "orig_id": 1447651}}, {"model": "metainfo.source", "pk": 1116, "fields": {"orig_filename": "Strindberg_Frida_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 404f.", "author": "", "orig_id": 1427845}}, {"model": "metainfo.source", "pk": 1117, "fields": {"orig_filename": "Stringari_Remo_1879_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 405", "author": "", "orig_id": 1434395}}, {"model": "metainfo.source", "pk": 1118, "fields": {"orig_filename": "Strisower_Leo_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 405f.", "author": "", "orig_id": 1434396}}, {"model": "metainfo.source", "pk": 1119, "fields": {"orig_filename": "Stritar_Josip_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 406f.", "author": "", "orig_id": 1434397}}, {"model": "metainfo.source", "pk": 1120, "fields": {"orig_filename": "Stritof_Anton_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407", "author": "", "orig_id": 1825120}}, {"model": "metainfo.source", "pk": 1121, "fields": {"orig_filename": "Stritof_Niko_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407f.", "author": "", "orig_id": 1434399}}, {"model": "metainfo.source", "pk": 1122, "fields": {"orig_filename": "Stritt_Marie_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 407f.", "author": "", "orig_id": 1434445}}, {"model": "metainfo.source", "pk": 1123, "fields": {"orig_filename": "Strnadt_Julius_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 409f.", "author": "", "orig_id": 1434514}}, {"model": "metainfo.source", "pk": 1124, "fields": {"orig_filename": "Strnad_Josef_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 408", "author": "", "orig_id": 1825261}}, {"model": "metainfo.source", "pk": 1125, "fields": {"orig_filename": "Strnad_Oskar_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 408f.", "author": "", "orig_id": 1434510}}, {"model": "metainfo.source", "pk": 1126, "fields": {"orig_filename": "Strobach-Kleisberg_Josef_1803_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 412", "author": "", "orig_id": 1433654}}, {"model": "metainfo.source", "pk": 1127, "fields": {"orig_filename": "Strobach_Antonin_1814_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410", "author": "", "orig_id": 1433645}}, {"model": "metainfo.source", "pk": 1128, "fields": {"orig_filename": "Strobach_Franz_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410f.", "author": "", "orig_id": 1433646}}, {"model": "metainfo.source", "pk": 1129, "fields": {"orig_filename": "Strobach_Josef-Karl_1852_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 411", "author": "", "orig_id": 1433647}}, {"model": "metainfo.source", "pk": 1130, "fields": {"orig_filename": "Strobach_Josef_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410f.", "author": "", "orig_id": 2003924}}, {"model": "metainfo.source", "pk": 1131, "fields": {"orig_filename": "Strobach_Paul_1776_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 411f.", "author": "", "orig_id": 1433650}}, {"model": "metainfo.source", "pk": 1132, "fields": {"orig_filename": "Strobach_Zdenek_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 410", "author": "", "orig_id": 1433653}}, {"model": "metainfo.source", "pk": 1133, "fields": {"orig_filename": "Strobel_Peregrin_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 412f.", "author": "", "orig_id": 1433659}}, {"model": "metainfo.source", "pk": 1134, "fields": {"orig_filename": "Strobentz_Frigyes_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 413", "author": "", "orig_id": 1433703}}, {"model": "metainfo.source", "pk": 1135, "fields": {"orig_filename": "Strobl-Ravelsberg_Ferdinand_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417", "author": "", "orig_id": 1433831}}, {"model": "metainfo.source", "pk": 1136, "fields": {"orig_filename": "Strobl_Alajos_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 413f.", "author": "", "orig_id": 1433706}}, {"model": "metainfo.source", "pk": 1137, "fields": {"orig_filename": "Strobl_Gabriel_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 414f.", "author": "", "orig_id": 1430743}}, {"model": "metainfo.source", "pk": 1138, "fields": {"orig_filename": "Strobl_Johann_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 415", "author": "", "orig_id": 1433714}}, {"model": "metainfo.source", "pk": 1139, "fields": {"orig_filename": "Strobl_Joseph_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 415f.", "author": "", "orig_id": 1433715}}, {"model": "metainfo.source", "pk": 1140, "fields": {"orig_filename": "Strobl_Karl-Hans_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 416f.", "author": "", "orig_id": 1433768}}, {"model": "metainfo.source", "pk": 1141, "fields": {"orig_filename": "Strobl_Richard_1874_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417", "author": "", "orig_id": 1465412}}, {"model": "metainfo.source", "pk": 1142, "fields": {"orig_filename": "Strobl_Zsofia_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 414", "author": "", "orig_id": 1455270}}, {"model": "metainfo.source", "pk": 1143, "fields": {"orig_filename": "Stroehl_Hugo-Gerard_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 417f.", "author": "", "orig_id": 1433880}}, {"model": "metainfo.source", "pk": 1144, "fields": {"orig_filename": "Stroehmer_Ludwig_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 418f.", "author": "", "orig_id": 1433881}}, {"model": "metainfo.source", "pk": 1145, "fields": {"orig_filename": "Strohal_Emil-August_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 420", "author": "", "orig_id": 1433930}}, {"model": "metainfo.source", "pk": 1146, "fields": {"orig_filename": "Strohal_Jakob_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 420f.", "author": "", "orig_id": 1433933}}, {"model": "metainfo.source", "pk": 1147, "fields": {"orig_filename": "Strohmayer_Alois_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 421", "author": "", "orig_id": 1433941}}, {"model": "metainfo.source", "pk": 1148, "fields": {"orig_filename": "Strohmayer_Anton_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 421f.", "author": "", "orig_id": 1433942}}, {"model": "metainfo.source", "pk": 1149, "fields": {"orig_filename": "Strohmayr_Otto_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 422", "author": "", "orig_id": 1433079}}, {"model": "metainfo.source", "pk": 1150, "fields": {"orig_filename": "Strohmer_Friedrich_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 422f.", "author": "", "orig_id": 1433082}}, {"model": "metainfo.source", "pk": 1151, "fields": {"orig_filename": "Stroh_Rudolf_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 419", "author": "", "orig_id": 1433886}}, {"model": "metainfo.source", "pk": 1152, "fields": {"orig_filename": "Stroh_Sebastian_1792_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 419f.", "author": "", "orig_id": 1433928}}, {"model": "metainfo.source", "pk": 1153, "fields": {"orig_filename": "Stroj_Mihael_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423", "author": "", "orig_id": 1433295}}, {"model": "metainfo.source", "pk": 1154, "fields": {"orig_filename": "Stromszky_Franz-Samuel_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423", "author": "", "orig_id": 1433159}}, {"model": "metainfo.source", "pk": 1155, "fields": {"orig_filename": "Stronski_Franciszek-Dionizij-Kaspar_1803_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 423f.", "author": "", "orig_id": 1433161}}, {"model": "metainfo.source", "pk": 1156, "fields": {"orig_filename": "Strossmayer_Josip-Juraj_1815_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 425", "author": "", "orig_id": 1433228}}, {"model": "metainfo.source", "pk": 1157, "fields": {"orig_filename": "Stross_Emanuel_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433221}}, {"model": "metainfo.source", "pk": 1158, "fields": {"orig_filename": "Stross_Rudolf_1872_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433225}}, {"model": "metainfo.source", "pk": 1159, "fields": {"orig_filename": "Stross_Walter_1882_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 424f.", "author": "", "orig_id": 1433226}}, {"model": "metainfo.source", "pk": 1160, "fields": {"orig_filename": "Strouhal_Vincenc_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 425f.", "author": "", "orig_id": 1433232}}, {"model": "metainfo.source", "pk": 1161, "fields": {"orig_filename": "Stroupeznicka_Marie_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 426f.", "author": "", "orig_id": 1433234}}, {"model": "metainfo.source", "pk": 1162, "fields": {"orig_filename": "Stroupeznicky_Ladislav_1850_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 426f.", "author": "", "orig_id": 1433233}}, {"model": "metainfo.source", "pk": 1163, "fields": {"orig_filename": "Struber_Joseph_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 427", "author": "", "orig_id": 1433302}}, {"model": "metainfo.source", "pk": 1164, "fields": {"orig_filename": "Strucker_Jakob_1761_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 427f.", "author": "", "orig_id": 1433305}}, {"model": "metainfo.source", "pk": 1165, "fields": {"orig_filename": "Strukelj_Mihael_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 428", "author": "", "orig_id": 1433452}}, {"model": "metainfo.source", "pk": 1166, "fields": {"orig_filename": "Strupi_Simon_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 428f.", "author": "", "orig_id": 1433462}}, {"model": "metainfo.source", "pk": 1167, "fields": {"orig_filename": "Struschka_Hermann_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429", "author": "", "orig_id": 1433464}}, {"model": "metainfo.source", "pk": 1168, "fields": {"orig_filename": "Struska_Johann_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429", "author": "", "orig_id": 1433508}}, {"model": "metainfo.source", "pk": 1169, "fields": {"orig_filename": "Struszkiewicz_Jerzy_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 429f.", "author": "", "orig_id": 1897706}}, {"model": "metainfo.source", "pk": 1170, "fields": {"orig_filename": "Struszkiewicz_Wladyslaw_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 430", "author": "", "orig_id": 1433509}}, {"model": "metainfo.source", "pk": 1171, "fields": {"orig_filename": "Stryjenski_Karol_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 430f.", "author": "", "orig_id": 1473826}}, {"model": "metainfo.source", "pk": 1172, "fields": {"orig_filename": "Stryjenski_Tadeusz_1849_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 431", "author": "", "orig_id": 1473825}}, {"model": "metainfo.source", "pk": 1173, "fields": {"orig_filename": "Strzelecka_Maria_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 431f.", "author": "", "orig_id": 1880578}}, {"model": "metainfo.source", "pk": 1174, "fields": {"orig_filename": "Strzelecki_Feliks-Jozef_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 432f.", "author": "", "orig_id": 1433518}}, {"model": "metainfo.source", "pk": 1175, "fields": {"orig_filename": "Strzemcha_Paul_1844_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 433", "author": "", "orig_id": 1433568}}, {"model": "metainfo.source", "pk": 1176, "fields": {"orig_filename": "Strzygowski_Franz_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 433f.", "author": "", "orig_id": 1437150}}, {"model": "metainfo.source", "pk": 1177, "fields": {"orig_filename": "Strzygowski_Josef_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 434f.", "author": "", "orig_id": 1431924}}, {"model": "metainfo.source", "pk": 1178, "fields": {"orig_filename": "Stubel_Eleonora_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1432727}}, {"model": "metainfo.source", "pk": 1179, "fields": {"orig_filename": "Stubel_Eugenie_1860_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1433574}}, {"model": "metainfo.source", "pk": 1180, "fields": {"orig_filename": "Stubel_Ludmilla-Hildegard_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 2106143}}, {"model": "metainfo.source", "pk": 1181, "fields": {"orig_filename": "Stubel_Marie_1845_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 435f.", "author": "", "orig_id": 1469438}}, {"model": "metainfo.source", "pk": 1182, "fields": {"orig_filename": "Stubenberg_Anna_1821_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 436", "author": "", "orig_id": 1432733}}, {"model": "metainfo.source", "pk": 1183, "fields": {"orig_filename": "Stubenberg_Felix_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432734}}, {"model": "metainfo.source", "pk": 1184, "fields": {"orig_filename": "Stubenrauch_Leopold_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438", "author": "", "orig_id": 1432788}}, {"model": "metainfo.source", "pk": 1185, "fields": {"orig_filename": "Stubenrauch_Moriz_1811_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 437", "author": "", "orig_id": 1432789}}, {"model": "metainfo.source", "pk": 1186, "fields": {"orig_filename": "Stubenrauch_Philipp_1784_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 437f.", "author": "", "orig_id": 1432791}}, {"model": "metainfo.source", "pk": 1187, "fields": {"orig_filename": "Stuchlik_Kamil_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438", "author": "", "orig_id": 1911405}}, {"model": "metainfo.source", "pk": 1188, "fields": {"orig_filename": "Stuchlik_Konstantin_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 438f.", "author": "", "orig_id": 1911393}}, {"model": "metainfo.source", "pk": 1189, "fields": {"orig_filename": "Studnicka_Alois_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 439", "author": "", "orig_id": 1433025}}, {"model": "metainfo.source", "pk": 1190, "fields": {"orig_filename": "Studnicka_Franz-Josef_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 439f.", "author": "", "orig_id": 1433027}}, {"model": "metainfo.source", "pk": 1191, "fields": {"orig_filename": "Studniczka_Franz_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 440f.", "author": "", "orig_id": 1433029}}, {"model": "metainfo.source", "pk": 1192, "fields": {"orig_filename": "Studynskyj_Kyrylo_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 441", "author": "", "orig_id": 1963747}}, {"model": "metainfo.source", "pk": 1193, "fields": {"orig_filename": "Stueber_Friedrich_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 441f.", "author": "", "orig_id": 1433093}}, {"model": "metainfo.source", "pk": 1194, "fields": {"orig_filename": "Stuedl_Johann_1839_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 442", "author": "", "orig_id": 1433094}}, {"model": "metainfo.source", "pk": 1195, "fields": {"orig_filename": "Stuelpnagel_Ernst_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 442f.", "author": "", "orig_id": 1433096}}, {"model": "metainfo.source", "pk": 1196, "fields": {"orig_filename": "Stuergkh_Josef_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443f.", "author": "", "orig_id": 1433101}}, {"model": "metainfo.source", "pk": 1197, "fields": {"orig_filename": "Stuergkh_Karl_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 444f.", "author": "", "orig_id": 1433102}}, {"model": "metainfo.source", "pk": 1198, "fields": {"orig_filename": "Stuermer_Bartholomaeus_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445", "author": "", "orig_id": 1433164}}, {"model": "metainfo.source", "pk": 1199, "fields": {"orig_filename": "Stuermer_Ignaz_1750_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 445f.", "author": "", "orig_id": 1433165}}, {"model": "metainfo.source", "pk": 1200, "fields": {"orig_filename": "Strakosch-Feldringen_Georg_1898_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 351", "author": "", "orig_id": 1434485}}, {"model": "metainfo.source", "pk": 1201, "fields": {"orig_filename": "Strakosch-Feldringen_Siegfried_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 351f.", "author": "", "orig_id": 1433737}}, {"model": "metainfo.source", "pk": 1202, "fields": {"orig_filename": "Strakosch-Grassmann_Gustav_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 352f.", "author": "", "orig_id": 1433745}}, {"model": "metainfo.source", "pk": 1203, "fields": {"orig_filename": "Strakosch_Alexander_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 345f.", "author": "", "orig_id": 1434536}}, {"model": "metainfo.source", "pk": 1204, "fields": {"orig_filename": "Strakosch_Alexander_1879_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2088731}}, {"model": "metainfo.source", "pk": 1205, "fields": {"orig_filename": "Strakosch_Felix_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 346", "author": "", "orig_id": 1434546}}, {"model": "metainfo.source", "pk": 1206, "fields": {"orig_filename": "Strakosch_Ferdinand_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1981757}}, {"model": "metainfo.source", "pk": 1207, "fields": {"orig_filename": "Strakosch_Henry_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 346f.", "author": "", "orig_id": 1823700}}, {"model": "metainfo.source", "pk": 1208, "fields": {"orig_filename": "Strakosch_Irma_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 347", "author": "", "orig_id": 1449787}}, {"model": "metainfo.source", "pk": 1209, "fields": {"orig_filename": "Strakosch_Jonas_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 347f.", "author": "", "orig_id": 1433622}}, {"model": "metainfo.source", "pk": 1210, "fields": {"orig_filename": "Strakosch_Julius_1852_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 348f.", "author": "", "orig_id": 1473429}}, {"model": "metainfo.source", "pk": 1211, "fields": {"orig_filename": "Strakosch_Ludwig_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 349", "author": "", "orig_id": 1433623}}, {"model": "metainfo.source", "pk": 1212, "fields": {"orig_filename": "Strakosch_Max_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1981760}}, {"model": "metainfo.source", "pk": 1213, "fields": {"orig_filename": "Strakosch_Moriz_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 349f.", "author": "", "orig_id": 1433627}}, {"model": "metainfo.source", "pk": 1214, "fields": {"orig_filename": "Strakosch_Salomon_1795_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350", "author": "", "orig_id": 1433677}}, {"model": "metainfo.source", "pk": 1215, "fields": {"orig_filename": "Strakosch_Simon_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 350f.", "author": "", "orig_id": 1433736}}, {"model": "metainfo.source", "pk": 1216, "fields": {"orig_filename": "Strambio_Gaetano_1752_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433907}}, {"model": "metainfo.source", "pk": 1217, "fields": {"orig_filename": "Strambio_Gaetano_1820_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433911}}, {"model": "metainfo.source", "pk": 1218, "fields": {"orig_filename": "Strambio_Giovanni_1780_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 353", "author": "", "orig_id": 1433912}}, {"model": "metainfo.source", "pk": 1219, "fields": {"orig_filename": "Strampfer_Friedrich_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 354", "author": "", "orig_id": 1433795}}, {"model": "metainfo.source", "pk": 1220, "fields": {"orig_filename": "Stranecka_Frantiska_1839_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 354f.", "author": "", "orig_id": 1825244}}, {"model": "metainfo.source", "pk": 1221, "fields": {"orig_filename": "Stranig_Albin_1908_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 355", "author": "", "orig_id": 1433802}}, {"model": "metainfo.source", "pk": 1222, "fields": {"orig_filename": "Stranik_Erwin_1898_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 355f.", "author": "", "orig_id": 1433853}}, {"model": "metainfo.source", "pk": 1223, "fields": {"orig_filename": "Stransky-Dresdenberg_Franz_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358f.", "author": "", "orig_id": 1434016}}, {"model": "metainfo.source", "pk": 1224, "fields": {"orig_filename": "Stransky_Adolf_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 356f.", "author": "", "orig_id": 1433854}}, {"model": "metainfo.source", "pk": 1225, "fields": {"orig_filename": "Stransky_Emil_1889_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 357", "author": "", "orig_id": 1427604}}, {"model": "metainfo.source", "pk": 1226, "fields": {"orig_filename": "Stransky_Felix_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 357f.", "author": "", "orig_id": 1433859}}, {"model": "metainfo.source", "pk": 1227, "fields": {"orig_filename": "Stransky_Josef_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358", "author": "", "orig_id": 1433957}}, {"model": "metainfo.source", "pk": 1228, "fields": {"orig_filename": "Stransky_Sigmund_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 358", "author": "", "orig_id": 1434015}}, {"model": "metainfo.source", "pk": 1229, "fields": {"orig_filename": "Straschiripka_Johann-Bapt_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 359f.", "author": "", "orig_id": 1434024}}, {"model": "metainfo.source", "pk": 1230, "fields": {"orig_filename": "Strasoldo_Joseph-Philipp-Adam_1738_1824.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434301}}, {"model": "metainfo.source", "pk": 1231, "fields": {"orig_filename": "Strass-Hohenstraeten_Karl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 360", "author": "", "orig_id": 1434027}}, {"model": "metainfo.source", "pk": 1232, "fields": {"orig_filename": "Strasser_Alois_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 360f.", "author": "", "orig_id": 1434074}}, {"model": "metainfo.source", "pk": 1233, "fields": {"orig_filename": "Strasser_Artur_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 361", "author": "", "orig_id": 1434075}}, {"model": "metainfo.source", "pk": 1234, "fields": {"orig_filename": "Strasser_Ferdinand_1901_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 362", "author": "", "orig_id": 1434081}}, {"model": "metainfo.source", "pk": 1235, "fields": {"orig_filename": "Strasser_Gabriel_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 362", "author": "", "orig_id": 1434135}}, {"model": "metainfo.source", "pk": 1236, "fields": {"orig_filename": "Strasser_Josef_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 363f.", "author": "", "orig_id": 1434247}}, {"model": "metainfo.source", "pk": 1237, "fields": {"orig_filename": "Strasser_Josef_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 363", "author": "", "orig_id": 1445066}}, {"model": "metainfo.source", "pk": 1238, "fields": {"orig_filename": "Strasser_Pius_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 364", "author": "", "orig_id": 1434195}}, {"model": "metainfo.source", "pk": 1239, "fields": {"orig_filename": "Strassgschwandtner_Anton_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 364f.", "author": "", "orig_id": 1434246}}, {"model": "metainfo.source", "pk": 1240, "fields": {"orig_filename": "Strassmann_Marie_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 365", "author": "", "orig_id": 1434250}}, {"model": "metainfo.source", "pk": 1241, "fields": {"orig_filename": "Strassni_Fritz_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434254}}, {"model": "metainfo.source", "pk": 1242, "fields": {"orig_filename": "Strassoldo-Graffemberg_Julius-Caesar_1791_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 365f.", "author": "", "orig_id": 1434305}}, {"model": "metainfo.source", "pk": 1243, "fields": {"orig_filename": "Strassoldo-Graffemberg_Michael_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 366", "author": "", "orig_id": 1434309}}, {"model": "metainfo.source", "pk": 1244, "fields": {"orig_filename": "Strassoldo-Sotto_Giulio-Giuseppe_1771_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 366f.", "author": "", "orig_id": 1434303}}, {"model": "metainfo.source", "pk": 1245, "fields": {"orig_filename": "Straszewski_Florian_1767_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 367", "author": "", "orig_id": 1434311}}, {"model": "metainfo.source", "pk": 1246, "fields": {"orig_filename": "Straszewski_Maurycy_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 367f.", "author": "", "orig_id": 1870456}}, {"model": "metainfo.source", "pk": 1247, "fields": {"orig_filename": "Stratico_Simone-Filippo_1733_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 368", "author": "", "orig_id": 1434367}}, {"model": "metainfo.source", "pk": 1248, "fields": {"orig_filename": "Stratil_Frantisek_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 368f.", "author": "", "orig_id": 1434369}}, {"model": "metainfo.source", "pk": 1249, "fields": {"orig_filename": "Stratimirovic_Djordje_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 369", "author": "", "orig_id": 1434377}}, {"model": "metainfo.source", "pk": 1250, "fields": {"orig_filename": "Stratimirovic_Stephan_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 369f.", "author": "", "orig_id": 1434376}}, {"model": "metainfo.source", "pk": 1251, "fields": {"orig_filename": "Strattmann_Benedikt_1760_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 370", "author": "", "orig_id": 2106677}}, {"model": "metainfo.source", "pk": 1252, "fields": {"orig_filename": "Strattmann_Paul_1755_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 370", "author": "", "orig_id": 1434441}}, {"model": "metainfo.source", "pk": 1253, "fields": {"orig_filename": "Straub_Adolf_1808_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371", "author": "", "orig_id": 1434443}}, {"model": "metainfo.source", "pk": 1254, "fields": {"orig_filename": "Straub_Anton_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371", "author": "", "orig_id": 1434487}}, {"model": "metainfo.source", "pk": 1255, "fields": {"orig_filename": "Straub_Josef-Ignaz_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 371f.", "author": "", "orig_id": 1434490}}, {"model": "metainfo.source", "pk": 1256, "fields": {"orig_filename": "Straucher_Benno_1854_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 372f.", "author": "", "orig_id": 1433639}}, {"model": "metainfo.source", "pk": 1257, "fields": {"orig_filename": "Strauch_Antonin_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 372", "author": "", "orig_id": 1434500}}, {"model": "metainfo.source", "pk": 1258, "fields": {"orig_filename": "Strauss_Anton_1775_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373f.", "author": "", "orig_id": 1433643}}, {"model": "metainfo.source", "pk": 1259, "fields": {"orig_filename": "Strauss_Eduard_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 374f.", "author": "", "orig_id": 1432287}}, {"model": "metainfo.source", "pk": 1260, "fields": {"orig_filename": "Strauss_Emil_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 375", "author": "", "orig_id": 1433695}}, {"model": "metainfo.source", "pk": 1261, "fields": {"orig_filename": "Strauss_Ferdinand_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 375f.", "author": "", "orig_id": 1433696}}, {"model": "metainfo.source", "pk": 1262, "fields": {"orig_filename": "Strauss_Georg_1800_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 376", "author": "", "orig_id": 1433699}}, {"model": "metainfo.source", "pk": 1263, "fields": {"orig_filename": "Strauss_Henriette_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 376f.", "author": "", "orig_id": 1425833}}, {"model": "metainfo.source", "pk": 1264, "fields": {"orig_filename": "Strauss_Johanna_1890_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 380", "author": "", "orig_id": 1981308}}, {"model": "metainfo.source", "pk": 1265, "fields": {"orig_filename": "Strauss_Johann_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 377f.", "author": "", "orig_id": 1432041}}, {"model": "metainfo.source", "pk": 1266, "fields": {"orig_filename": "Strauss_Johann_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 378f.", "author": "", "orig_id": 1432329}}, {"model": "metainfo.source", "pk": 1267, "fields": {"orig_filename": "Strauss_Johann_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 379f.", "author": "", "orig_id": 1432288}}, {"model": "metainfo.source", "pk": 1268, "fields": {"orig_filename": "Strauss_Josef_1827_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 380f.", "author": "", "orig_id": 1432330}}, {"model": "metainfo.source", "pk": 1269, "fields": {"orig_filename": "Strauss_Joseph_1793_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 381f.", "author": "", "orig_id": 1433753}}, {"model": "metainfo.source", "pk": 1270, "fields": {"orig_filename": "Strauss_Magdalena_1764_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 374", "author": "", "orig_id": 1433758}}, {"model": "metainfo.source", "pk": 1271, "fields": {"orig_filename": "Strauss_Richard_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 382f.", "author": "", "orig_id": 1433760}}, {"model": "metainfo.source", "pk": 1272, "fields": {"orig_filename": "Strauss_Siegmund_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 383", "author": "", "orig_id": 1433805}}, {"model": "metainfo.source", "pk": 1273, "fields": {"orig_filename": "Strausz_Adolf_1853_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 384", "author": "", "orig_id": 1433690}}, {"model": "metainfo.source", "pk": 1274, "fields": {"orig_filename": "Straus_Leo_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373", "author": "", "orig_id": 1433755}}, {"model": "metainfo.source", "pk": 1275, "fields": {"orig_filename": "Strazza_Giovanni_1817_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 384f.", "author": "", "orig_id": 1433814}}, {"model": "metainfo.source", "pk": 1276, "fields": {"orig_filename": "Strecker_Emil_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 385", "author": "", "orig_id": 1433872}}, {"model": "metainfo.source", "pk": 1277, "fields": {"orig_filename": "Streffleur_Valentin_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 385f.", "author": "", "orig_id": 1433921}}, {"model": "metainfo.source", "pk": 1278, "fields": {"orig_filename": "Strehl_Johann_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 386", "author": "", "orig_id": 1433975}}, {"model": "metainfo.source", "pk": 1279, "fields": {"orig_filename": "Streicher_Andreas_1761_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 386f.", "author": "", "orig_id": 1433987}}, {"model": "metainfo.source", "pk": 1280, "fields": {"orig_filename": "Streicher_Emil_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 2004805}}, {"model": "metainfo.source", "pk": 1281, "fields": {"orig_filename": "Streicher_Gustav_1873_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 387", "author": "", "orig_id": 1433984}}, {"model": "metainfo.source", "pk": 1282, "fields": {"orig_filename": "Streicher_Heinrich_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1433985}}, {"model": "metainfo.source", "pk": 1283, "fields": {"orig_filename": "Streicher_Johann-Bapt_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1432331}}, {"model": "metainfo.source", "pk": 1284, "fields": {"orig_filename": "Streicher_Joseph_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389", "author": "", "orig_id": 1434031}}, {"model": "metainfo.source", "pk": 1285, "fields": {"orig_filename": "Streicher_Karl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 388", "author": "", "orig_id": 1434032}}, {"model": "metainfo.source", "pk": 1286, "fields": {"orig_filename": "Streicher_Nanette_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389", "author": "", "orig_id": 1434036}}, {"model": "metainfo.source", "pk": 1287, "fields": {"orig_filename": "Streicher_Theodor_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 389f.", "author": "", "orig_id": 1434037}}, {"model": "metainfo.source", "pk": 1288, "fields": {"orig_filename": "Streintz_Franz_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 390", "author": "", "orig_id": 1434043}}, {"model": "metainfo.source", "pk": 1289, "fields": {"orig_filename": "Streintz_Heinrich_1848_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 390f.", "author": "", "orig_id": 1434044}}, {"model": "metainfo.source", "pk": 1290, "fields": {"orig_filename": "Streinz_Wenzel-Matern_1792_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 391", "author": "", "orig_id": 1434045}}, {"model": "metainfo.source", "pk": 1291, "fields": {"orig_filename": "Streissler_Eduard_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1434086}}, {"model": "metainfo.source", "pk": 1292, "fields": {"orig_filename": "Streiter_Joseph_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393f.", "author": "", "orig_id": 1427584}}, {"model": "metainfo.source", "pk": 1293, "fields": {"orig_filename": "Streiter_Oswald_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 394", "author": "", "orig_id": 1434097}}, {"model": "metainfo.source", "pk": 1294, "fields": {"orig_filename": "Streitmann_Karl_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 394f.", "author": "", "orig_id": 1434098}}, {"model": "metainfo.source", "pk": 1295, "fields": {"orig_filename": "Streitmann_Luise_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395", "author": "", "orig_id": 1434144}}, {"model": "metainfo.source", "pk": 1296, "fields": {"orig_filename": "Streitmann_Rosa_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395", "author": "", "orig_id": 1434146}}, {"model": "metainfo.source", "pk": 1297, "fields": {"orig_filename": "Streitt_Franciszek_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 395f.", "author": "", "orig_id": 1434147}}, {"model": "metainfo.source", "pk": 1298, "fields": {"orig_filename": "Streit_Andreas_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 391f.", "author": "", "orig_id": 1432333}}, {"model": "metainfo.source", "pk": 1299, "fields": {"orig_filename": "Streit_Ignaz_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393", "author": "", "orig_id": 1434090}}, {"model": "metainfo.source", "pk": 1300, "fields": {"orig_filename": "Streit_Karl_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 392f.", "author": "", "orig_id": 1434093}}, {"model": "metainfo.source", "pk": 1301, "fields": {"orig_filename": "Streit_Moriz_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 393", "author": "", "orig_id": 1434094}}, {"model": "metainfo.source", "pk": 1302, "fields": {"orig_filename": "Strekelj_Karl_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 396", "author": "", "orig_id": 1434150}}, {"model": "metainfo.source", "pk": 1303, "fields": {"orig_filename": "Stohl_Lukas_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300f.", "author": "", "orig_id": 1432057}}, {"model": "metainfo.source", "pk": 1304, "fields": {"orig_filename": "Stohl_Marie_1828_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300", "author": "", "orig_id": 1896533}}, {"model": "metainfo.source", "pk": 1305, "fields": {"orig_filename": "Stohl_Michael_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 301", "author": "", "orig_id": 1431402}}, {"model": "metainfo.source", "pk": 1306, "fields": {"orig_filename": "Stohr_Franz-Heinrich-Anton_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 301f.", "author": "", "orig_id": 1431403}}, {"model": "metainfo.source", "pk": 1307, "fields": {"orig_filename": "Stoiber_Ernst_1833_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302", "author": "", "orig_id": 1431407}}, {"model": "metainfo.source", "pk": 1308, "fields": {"orig_filename": "Stoitzner_Karl_1834_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302", "author": "", "orig_id": 1431505}}, {"model": "metainfo.source", "pk": 1309, "fields": {"orig_filename": "Stoitzner_Konstantin_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 302f.", "author": "", "orig_id": 1431510}}, {"model": "metainfo.source", "pk": 1310, "fields": {"orig_filename": "Stoitzner_Walter-Gottfried_1889_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 303", "author": "", "orig_id": 1431639}}, {"model": "metainfo.source", "pk": 1311, "fields": {"orig_filename": "Stojakovic_Georg_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 303f.", "author": "", "orig_id": 1431646}}, {"model": "metainfo.source", "pk": 1312, "fields": {"orig_filename": "Stojalowski_Stanislaw_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 304", "author": "", "orig_id": 1431649}}, {"model": "metainfo.source", "pk": 1313, "fields": {"orig_filename": "Stojanovic_Mijat_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 306", "author": "", "orig_id": 1431802}}, {"model": "metainfo.source", "pk": 1314, "fields": {"orig_filename": "Stojan_Antonin-Cyril_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 304f.", "author": "", "orig_id": 1431696}}, {"model": "metainfo.source", "pk": 1315, "fields": {"orig_filename": "Stojan_Betty_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 305f.", "author": "", "orig_id": 1431688}}, {"model": "metainfo.source", "pk": 1316, "fields": {"orig_filename": "Stojan_Mihael_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 306", "author": "", "orig_id": 1431743}}, {"model": "metainfo.source", "pk": 1317, "fields": {"orig_filename": "Stojowski_Michal_1763_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307", "author": "", "orig_id": 1887941}}, {"model": "metainfo.source", "pk": 1318, "fields": {"orig_filename": "Stokes_Marianne_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307", "author": "", "orig_id": 1431810}}, {"model": "metainfo.source", "pk": 1319, "fields": {"orig_filename": "Stoklasa_Julius_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 307f.", "author": "", "orig_id": 1431022}}, {"model": "metainfo.source", "pk": 1320, "fields": {"orig_filename": "Stokowski_Apolinary_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 308f.", "author": "", "orig_id": 1888028}}, {"model": "metainfo.source", "pk": 1321, "fields": {"orig_filename": "Stolarczyk_Jozef_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 309", "author": "", "orig_id": 1887952}}, {"model": "metainfo.source", "pk": 1322, "fields": {"orig_filename": "Stolba_Frantisek_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 309f.", "author": "", "orig_id": 1431027}}, {"model": "metainfo.source", "pk": 1323, "fields": {"orig_filename": "Stolba_Leopold_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 310f.", "author": "", "orig_id": 1431031}}, {"model": "metainfo.source", "pk": 1324, "fields": {"orig_filename": "Stoliczka_Ferdinand_1838_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 311", "author": "", "orig_id": 1426682}}, {"model": "metainfo.source", "pk": 1325, "fields": {"orig_filename": "Stollberg_Ignaz-Georg_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 313f.", "author": "", "orig_id": 1431201}}, {"model": "metainfo.source", "pk": 1326, "fields": {"orig_filename": "Stollewerk_Nina_1825_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314", "author": "", "orig_id": 1843791}}, {"model": "metainfo.source", "pk": 1327, "fields": {"orig_filename": "Stoll_August_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 311f.", "author": "", "orig_id": 1431141}}, {"model": "metainfo.source", "pk": 1328, "fields": {"orig_filename": "Stoll_Gisela_1867_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312", "author": "", "orig_id": 1981171}}, {"model": "metainfo.source", "pk": 1329, "fields": {"orig_filename": "Stoll_Joseph-Ludwig_1777_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312f.", "author": "", "orig_id": 1449018}}, {"model": "metainfo.source", "pk": 1330, "fields": {"orig_filename": "Stoll_Karl_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 312", "author": "", "orig_id": 1981167}}, {"model": "metainfo.source", "pk": 1331, "fields": {"orig_filename": "Stoll_Peter_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 313", "author": "", "orig_id": 1431199}}, {"model": "metainfo.source", "pk": 1332, "fields": {"orig_filename": "Stolovsky_Eduard_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314f.", "author": "", "orig_id": 1431433}}, {"model": "metainfo.source", "pk": 1333, "fields": {"orig_filename": "Stolovsky_Josef_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 314f.", "author": "", "orig_id": 1825085}}, {"model": "metainfo.source", "pk": 1334, "fields": {"orig_filename": "Stolper_Gustav_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 315", "author": "", "orig_id": 1431470}}, {"model": "metainfo.source", "pk": 1335, "fields": {"orig_filename": "Stolzissi_Peter-Regalat_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 320", "author": "", "orig_id": 1431149}}, {"model": "metainfo.source", "pk": 1336, "fields": {"orig_filename": "Stolz_Albert_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 315f.", "author": "", "orig_id": 1431533}}, {"model": "metainfo.source", "pk": 1337, "fields": {"orig_filename": "Stolz_Eduard_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 316", "author": "", "orig_id": 1431592}}, {"model": "metainfo.source", "pk": 1338, "fields": {"orig_filename": "Stolz_Friedrich_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 316f.", "author": "", "orig_id": 1431599}}, {"model": "metainfo.source", "pk": 1339, "fields": {"orig_filename": "Stolz_Friedrich_1878_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 319", "author": "", "orig_id": 1469679}}, {"model": "metainfo.source", "pk": 1340, "fields": {"orig_filename": "Stolz_Ignaz_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 317", "author": "", "orig_id": 1431650}}, {"model": "metainfo.source", "pk": 1341, "fields": {"orig_filename": "Stolz_Josef_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 317f.", "author": "", "orig_id": 1431753}}, {"model": "metainfo.source", "pk": 1342, "fields": {"orig_filename": "Stolz_Michael_1820_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 318", "author": "", "orig_id": 1431765}}, {"model": "metainfo.source", "pk": 1343, "fields": {"orig_filename": "Stolz_Otto_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 318f.", "author": "", "orig_id": 1431812}}, {"model": "metainfo.source", "pk": 1344, "fields": {"orig_filename": "Stolz_Teresa_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 319f.", "author": "", "orig_id": 1431269}}, {"model": "metainfo.source", "pk": 1345, "fields": {"orig_filename": "Stonner_Rudolf_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 320f.", "author": "", "orig_id": 1431212}}, {"model": "metainfo.source", "pk": 1346, "fields": {"orig_filename": "Stooss_Carl_1849_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 321f.", "author": "", "orig_id": 1431214}}, {"model": "metainfo.source", "pk": 1347, "fields": {"orig_filename": "Stoos_Pavao_1806_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 321", "author": "", "orig_id": 1431218}}, {"model": "metainfo.source", "pk": 1348, "fields": {"orig_filename": "Stopczanski_Aleksander_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 322", "author": "", "orig_id": 1880446}}, {"model": "metainfo.source", "pk": 1349, "fields": {"orig_filename": "Stoppani_Antonio_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 322f.", "author": "", "orig_id": 1431271}}, {"model": "metainfo.source", "pk": 1350, "fields": {"orig_filename": "Stoppani_Johann-Bapt_1778_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 323f.", "author": "", "orig_id": 1431272}}, {"model": "metainfo.source", "pk": 1351, "fields": {"orig_filename": "Stoppel_Marzellinus_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1431273}}, {"model": "metainfo.source", "pk": 1352, "fields": {"orig_filename": "Storch_Anton-M_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1432233}}, {"model": "metainfo.source", "pk": 1353, "fields": {"orig_filename": "Storch_Anton_1843_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1431277}}, {"model": "metainfo.source", "pk": 1354, "fields": {"orig_filename": "Storch_Frantisek_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324", "author": "", "orig_id": 1431279}}, {"model": "metainfo.source", "pk": 1355, "fields": {"orig_filename": "Storch_Franz-De-Paula_1763_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 324f.", "author": "", "orig_id": 1431281}}, {"model": "metainfo.source", "pk": 1356, "fields": {"orig_filename": "Storch_Franz-De-Paula_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 325", "author": "", "orig_id": 1433989}}, {"model": "metainfo.source", "pk": 1357, "fields": {"orig_filename": "Storch_Karel-Boleslav_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 325f.", "author": "", "orig_id": 1433991}}, {"model": "metainfo.source", "pk": 1358, "fields": {"orig_filename": "Storch_Karl_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 326", "author": "", "orig_id": 1433990}}, {"model": "metainfo.source", "pk": 1359, "fields": {"orig_filename": "Storch_Ludwig_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 326f.", "author": "", "orig_id": 1433994}}, {"model": "metainfo.source", "pk": 1360, "fields": {"orig_filename": "Storck_Josef_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 327", "author": "", "orig_id": 1433997}}, {"model": "metainfo.source", "pk": 1361, "fields": {"orig_filename": "Storek_Edwin_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 327f.", "author": "", "orig_id": 1433999}}, {"model": "metainfo.source", "pk": 1362, "fields": {"orig_filename": "Storek_Heinrich_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328", "author": "", "orig_id": 1434000}}, {"model": "metainfo.source", "pk": 1363, "fields": {"orig_filename": "Storek_Ignaz_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328", "author": "", "orig_id": 1876615}}, {"model": "metainfo.source", "pk": 1364, "fields": {"orig_filename": "Storfer_Adolf-Joseph_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 328f.", "author": "", "orig_id": 1434046}}, {"model": "metainfo.source", "pk": 1365, "fields": {"orig_filename": "Storfer_Berthold_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 329f.", "author": "", "orig_id": 1415091}}, {"model": "metainfo.source", "pk": 1366, "fields": {"orig_filename": "Storno_Ferenc_1821_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 330f.", "author": "", "orig_id": 1434049}}, {"model": "metainfo.source", "pk": 1367, "fields": {"orig_filename": "Storno_Ferenc_1851_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 330f.", "author": "", "orig_id": 1455113}}, {"model": "metainfo.source", "pk": 1368, "fields": {"orig_filename": "Storno_Kalman_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331", "author": "", "orig_id": 1894422}}, {"model": "metainfo.source", "pk": 1369, "fields": {"orig_filename": "Stossich_Adolf_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331f.", "author": "", "orig_id": 1434054}}, {"model": "metainfo.source", "pk": 1370, "fields": {"orig_filename": "Stossich_Michele_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 331f.", "author": "", "orig_id": 1430744}}, {"model": "metainfo.source", "pk": 1371, "fields": {"orig_filename": "Stotter_Michael_1813_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 332", "author": "", "orig_id": 1434099}}, {"model": "metainfo.source", "pk": 1372, "fields": {"orig_filename": "Stourzh_Alois_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 332f.", "author": "", "orig_id": 1434162}}, {"model": "metainfo.source", "pk": 1373, "fields": {"orig_filename": "Stourzh_Helene_1890_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1950511}}, {"model": "metainfo.source", "pk": 1374, "fields": {"orig_filename": "Stourzh_Herbert_1889_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333", "author": "", "orig_id": 1434222}}, {"model": "metainfo.source", "pk": 1375, "fields": {"orig_filename": "Stowasser_Adolf_1842_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1876595}}, {"model": "metainfo.source", "pk": 1376, "fields": {"orig_filename": "Stowasser_Anton-Rudolf_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1876587}}, {"model": "metainfo.source", "pk": 1377, "fields": {"orig_filename": "Stowasser_Ignaz_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333f.", "author": "", "orig_id": 1434281}}, {"model": "metainfo.source", "pk": 1378, "fields": {"orig_filename": "Stowasser_Ignaz_1852_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 333f.", "author": "", "orig_id": 1876578}}, {"model": "metainfo.source", "pk": 1379, "fields": {"orig_filename": "Stowasser_Josef-Maria_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334", "author": "", "orig_id": 1433669}}, {"model": "metainfo.source", "pk": 1380, "fields": {"orig_filename": "Stowasser_Josef_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1449308}}, {"model": "metainfo.source", "pk": 1381, "fields": {"orig_filename": "Stowasser_Julius_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1449310}}, {"model": "metainfo.source", "pk": 1382, "fields": {"orig_filename": "Stowasser_Wenzel_1803_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 335f.", "author": "", "orig_id": 1433664}}, {"model": "metainfo.source", "pk": 1383, "fields": {"orig_filename": "Stozek_Wlodzimierz-Antoni_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 336", "author": "", "orig_id": 1880463}}, {"model": "metainfo.source", "pk": 1384, "fields": {"orig_filename": "Straberger_Josef_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 336f.", "author": "", "orig_id": 1433721}}, {"model": "metainfo.source", "pk": 1385, "fields": {"orig_filename": "Strache_Eduard_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 337f.", "author": "", "orig_id": 1433774}}, {"model": "metainfo.source", "pk": 1386, "fields": {"orig_filename": "Strache_Franz-Eduard_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 338", "author": "", "orig_id": 1468682}}, {"model": "metainfo.source", "pk": 1387, "fields": {"orig_filename": "Strache_Hugo_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 338f.", "author": "", "orig_id": 1433775}}, {"model": "metainfo.source", "pk": 1388, "fields": {"orig_filename": "Strachovsky_Josef_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 339", "author": "", "orig_id": 1433783}}, {"model": "metainfo.source", "pk": 1389, "fields": {"orig_filename": "Strach_Hermann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 337", "author": "", "orig_id": 1433734}}, {"model": "metainfo.source", "pk": 1390, "fields": {"orig_filename": "Stradal_August_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 339f.", "author": "", "orig_id": 1433897}}, {"model": "metainfo.source", "pk": 1391, "fields": {"orig_filename": "Stradal_Emmy_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 340", "author": "", "orig_id": 1433902}}, {"model": "metainfo.source", "pk": 1392, "fields": {"orig_filename": "Stradal_Hildegard_1864_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 340f.", "author": "", "orig_id": 1433945}}, {"model": "metainfo.source", "pk": 1393, "fields": {"orig_filename": "Stradner_Alois_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 341", "author": "", "orig_id": 1433956}}, {"model": "metainfo.source", "pk": 1394, "fields": {"orig_filename": "Stradner_Josef_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 341", "author": "", "orig_id": 1434414}}, {"model": "metainfo.source", "pk": 1395, "fields": {"orig_filename": "Straessle_Friedrich_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342", "author": "", "orig_id": 1434418}}, {"model": "metainfo.source", "pk": 1396, "fields": {"orig_filename": "Straessle_Josef_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342", "author": "", "orig_id": 1434419}}, {"model": "metainfo.source", "pk": 1397, "fields": {"orig_filename": "Straganz_Max_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 342f.", "author": "", "orig_id": 1434424}}, {"model": "metainfo.source", "pk": 1398, "fields": {"orig_filename": "Strahl_Eduard-Josef_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343", "author": "", "orig_id": 1434468}}, {"model": "metainfo.source", "pk": 1399, "fields": {"orig_filename": "Strahl_Karl-Friedrich-Josef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343", "author": "", "orig_id": 1434469}}, {"model": "metainfo.source", "pk": 1400, "fields": {"orig_filename": "Strakaty_Jan_1835_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344f.", "author": "", "orig_id": 1434482}}, {"model": "metainfo.source", "pk": 1401, "fields": {"orig_filename": "Strakaty_Karel_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 345", "author": "", "orig_id": 1434483}}, {"model": "metainfo.source", "pk": 1402, "fields": {"orig_filename": "Straka_Adolf-Vilem_1825_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 343f.", "author": "", "orig_id": 1434472}}, {"model": "metainfo.source", "pk": 1403, "fields": {"orig_filename": "Straka_Gustav-Arnost_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344", "author": "", "orig_id": 1434475}}, {"model": "metainfo.source", "pk": 1404, "fields": {"orig_filename": "Straka_Josef_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 344", "author": "", "orig_id": 1434477}}, {"model": "metainfo.source", "pk": 1405, "fields": {"orig_filename": "Stifft_Andreas_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256", "author": "", "orig_id": 1432243}}, {"model": "metainfo.source", "pk": 1406, "fields": {"orig_filename": "Stifft_Andreas_1819_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256f.", "author": "", "orig_id": 1432244}}, {"model": "metainfo.source", "pk": 1407, "fields": {"orig_filename": "Stifter_Adalbert_1805_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 259f.", "author": "", "orig_id": 1432253}}, {"model": "metainfo.source", "pk": 1408, "fields": {"orig_filename": "Stifter_Magnus_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 260f.", "author": "", "orig_id": 1980265}}, {"model": "metainfo.source", "pk": 1409, "fields": {"orig_filename": "Stift_Anton_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 258f.", "author": "", "orig_id": 1432247}}, {"model": "metainfo.source", "pk": 1410, "fields": {"orig_filename": "Stift_Wilhelm_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 259", "author": "", "orig_id": 1432252}}, {"model": "metainfo.source", "pk": 1411, "fields": {"orig_filename": "Stiger_Johann-Ev_1776_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 261", "author": "", "orig_id": 1432295}}, {"model": "metainfo.source", "pk": 1412, "fields": {"orig_filename": "Stiger_Joseph-Leopold_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 261f.", "author": "", "orig_id": 1432297}}, {"model": "metainfo.source", "pk": 1413, "fields": {"orig_filename": "Stigleitner_Hans_1899_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 262", "author": "", "orig_id": 1432300}}, {"model": "metainfo.source", "pk": 1414, "fields": {"orig_filename": "Stigler_Josef_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 262f.", "author": "", "orig_id": 1432301}}, {"model": "metainfo.source", "pk": 1415, "fields": {"orig_filename": "Stigler_Karl_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263", "author": "", "orig_id": 1432302}}, {"model": "metainfo.source", "pk": 1416, "fields": {"orig_filename": "Stigler_Wilhelm_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263", "author": "", "orig_id": 1473922}}, {"model": "metainfo.source", "pk": 1417, "fields": {"orig_filename": "Stiglmayr_Joseph_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 263f.", "author": "", "orig_id": 1432341}}, {"model": "metainfo.source", "pk": 1418, "fields": {"orig_filename": "Stiller_Bertalan_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 264", "author": "", "orig_id": 1432346}}, {"model": "metainfo.source", "pk": 1419, "fields": {"orig_filename": "Stillfried-Rathenitz_August_1806_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265", "author": "", "orig_id": 1432347}}, {"model": "metainfo.source", "pk": 1420, "fields": {"orig_filename": "Stillfried-Rathenitz_Franz-De-Paula_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 264f.", "author": "", "orig_id": 1472854}}, {"model": "metainfo.source", "pk": 1421, "fields": {"orig_filename": "Stillfried-Rathenitz_Raimund_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265", "author": "", "orig_id": 1432390}}, {"model": "metainfo.source", "pk": 1422, "fields": {"orig_filename": "Stingeder_Franz_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 265f.", "author": "", "orig_id": 1432396}}, {"model": "metainfo.source", "pk": 1423, "fields": {"orig_filename": "Stingel_Vincenz_1761_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 266", "author": "", "orig_id": 1432397}}, {"model": "metainfo.source", "pk": 1424, "fields": {"orig_filename": "Stingl_Anton_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 266f.", "author": "", "orig_id": 1449013}}, {"model": "metainfo.source", "pk": 1425, "fields": {"orig_filename": "Stingl_Hans_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267", "author": "", "orig_id": 1432402}}, {"model": "metainfo.source", "pk": 1426, "fields": {"orig_filename": "Stipcak_Leopold_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1432451}}, {"model": "metainfo.source", "pk": 1427, "fields": {"orig_filename": "Stipperger_Adolf_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267", "author": "", "orig_id": 1432456}}, {"model": "metainfo.source", "pk": 1428, "fields": {"orig_filename": "Stipperger_Bernhard_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268", "author": "", "orig_id": 1474715}}, {"model": "metainfo.source", "pk": 1429, "fields": {"orig_filename": "Stipperger_Johann-Bernhard_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268", "author": "", "orig_id": 1474716}}, {"model": "metainfo.source", "pk": 1430, "fields": {"orig_filename": "Stipperger_Johann-Ev_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 267f.", "author": "", "orig_id": 1432457}}, {"model": "metainfo.source", "pk": 1431, "fields": {"orig_filename": "Stippler_Johann_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1432494}}, {"model": "metainfo.source", "pk": 1432, "fields": {"orig_filename": "Stipsicz-Ternowa_Joseph_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 268f.", "author": "", "orig_id": 1432500}}, {"model": "metainfo.source", "pk": 1433, "fields": {"orig_filename": "Stirba-Stirbitz_Franciszek_1780_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269", "author": "", "orig_id": 1880562}}, {"model": "metainfo.source", "pk": 1434, "fields": {"orig_filename": "Stivin_Josef_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269", "author": "", "orig_id": 1432508}}, {"model": "metainfo.source", "pk": 1435, "fields": {"orig_filename": "Stix_Edmund_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 269f.", "author": "", "orig_id": 1432549}}, {"model": "metainfo.source", "pk": 1436, "fields": {"orig_filename": "Stix_Karl_1860_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 270", "author": "", "orig_id": 1432551}}, {"model": "metainfo.source", "pk": 1437, "fields": {"orig_filename": "Stobiecki_Stefan-Antoni_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 270f.", "author": "", "orig_id": 1880548}}, {"model": "metainfo.source", "pk": 1438, "fields": {"orig_filename": "Stobinski_Feliks-Leon_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271", "author": "", "orig_id": 1860838}}, {"model": "metainfo.source", "pk": 1439, "fields": {"orig_filename": "Stobinski_Feliks_1803_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271", "author": "", "orig_id": 1860851}}, {"model": "metainfo.source", "pk": 1440, "fields": {"orig_filename": "Stobnicki_Feliks_1800_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 271f.", "author": "", "orig_id": 1887993}}, {"model": "metainfo.source", "pk": 1441, "fields": {"orig_filename": "Stockert_Dora_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 274f.", "author": "", "orig_id": 1432669}}, {"model": "metainfo.source", "pk": 1442, "fields": {"orig_filename": "Stockert_Franz_1822_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275", "author": "", "orig_id": 1432616}}, {"model": "metainfo.source", "pk": 1443, "fields": {"orig_filename": "Stockert_Leopold_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275", "author": "", "orig_id": 1980636}}, {"model": "metainfo.source", "pk": 1444, "fields": {"orig_filename": "Stockert_Ludwig_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 275f.", "author": "", "orig_id": 1432666}}, {"model": "metainfo.source", "pk": 1445, "fields": {"orig_filename": "Stockert_Robert_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 276", "author": "", "orig_id": 1432667}}, {"model": "metainfo.source", "pk": 1446, "fields": {"orig_filename": "Stocker_Eduard_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 273f.", "author": "", "orig_id": 1432604}}, {"model": "metainfo.source", "pk": 1447, "fields": {"orig_filename": "Stocker_Leopold_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 274", "author": "", "orig_id": 1432609}}, {"model": "metainfo.source", "pk": 1448, "fields": {"orig_filename": "Stocker_Stefan_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 273f.", "author": "", "orig_id": 1432613}}, {"model": "metainfo.source", "pk": 1449, "fields": {"orig_filename": "Stockhammer_Emerich_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 276f.", "author": "", "orig_id": 1432671}}, {"model": "metainfo.source", "pk": 1450, "fields": {"orig_filename": "Stockhammer_Wolfgang_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277", "author": "", "orig_id": 1432673}}, {"model": "metainfo.source", "pk": 1451, "fields": {"orig_filename": "Stockinger_Tamas_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277", "author": "", "orig_id": 1432680}}, {"model": "metainfo.source", "pk": 1452, "fields": {"orig_filename": "Stockmann_Leopold_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278", "author": "", "orig_id": 1431824}}, {"model": "metainfo.source", "pk": 1453, "fields": {"orig_filename": "Stockmann_Nikolaus_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 277f.", "author": "", "orig_id": 1431827}}, {"model": "metainfo.source", "pk": 1454, "fields": {"orig_filename": "Stockmar_Ernest-Leopold_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278", "author": "", "orig_id": 1868185}}, {"model": "metainfo.source", "pk": 1455, "fields": {"orig_filename": "Stockmayer_Siegfried_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 278f.", "author": "", "orig_id": 1431825}}, {"model": "metainfo.source", "pk": 1456, "fields": {"orig_filename": "Stocky_Albin_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 279", "author": "", "orig_id": 1431828}}, {"model": "metainfo.source", "pk": 1457, "fields": {"orig_filename": "Stock_Jan_1881_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 272", "author": "", "orig_id": 1880539}}, {"model": "metainfo.source", "pk": 1458, "fields": {"orig_filename": "Stock_Norbert_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 272f.", "author": "", "orig_id": 1475250}}, {"model": "metainfo.source", "pk": 1459, "fields": {"orig_filename": "Stodola_Aurel_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 279f.", "author": "", "orig_id": 1431829}}, {"model": "metainfo.source", "pk": 1460, "fields": {"orig_filename": "Stodola_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 280", "author": "", "orig_id": 1431830}}, {"model": "metainfo.source", "pk": 1461, "fields": {"orig_filename": "Stodola_Kornel-Milan_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 280f.", "author": "", "orig_id": 1431881}}, {"model": "metainfo.source", "pk": 1462, "fields": {"orig_filename": "Stodor_Adam_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 281", "author": "", "orig_id": 1832905}}, {"model": "metainfo.source", "pk": 1463, "fields": {"orig_filename": "Stoeber_Franz-Xav_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 282", "author": "", "orig_id": 1431884}}, {"model": "metainfo.source", "pk": 1464, "fields": {"orig_filename": "Stoeber_Franz_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 281f.", "author": "", "orig_id": 1431885}}, {"model": "metainfo.source", "pk": 1465, "fields": {"orig_filename": "Stoeber_Joseph_1768_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 282f.", "author": "", "orig_id": 1431891}}, {"model": "metainfo.source", "pk": 1466, "fields": {"orig_filename": "Stoeckholzer-Hirschfeld_Josef_1805_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 283", "author": "", "orig_id": 1431936}}, {"model": "metainfo.source", "pk": 1467, "fields": {"orig_filename": "Stoeckler_Emanuel_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 285", "author": "", "orig_id": 1432096}}, {"model": "metainfo.source", "pk": 1468, "fields": {"orig_filename": "Stoeckler_Josef_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 285f.", "author": "", "orig_id": 1432097}}, {"model": "metainfo.source", "pk": 1469, "fields": {"orig_filename": "Stoeckli_Augustin_1857_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286", "author": "", "orig_id": 1432148}}, {"model": "metainfo.source", "pk": 1470, "fields": {"orig_filename": "Stoeckl_Adolf_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 283f.", "author": "", "orig_id": 1431937}}, {"model": "metainfo.source", "pk": 1471, "fields": {"orig_filename": "Stoeckl_Andreas-Franz_1834_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 284", "author": "", "orig_id": 1431938}}, {"model": "metainfo.source", "pk": 1472, "fields": {"orig_filename": "Stoeckl_Sebastian_1752_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 284f.", "author": "", "orig_id": 1432093}}, {"model": "metainfo.source", "pk": 1473, "fields": {"orig_filename": "Stoegbauer_Adam_1881_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286", "author": "", "orig_id": 1880426}}, {"model": "metainfo.source", "pk": 1474, "fields": {"orig_filename": "Stoeger-Steiner-Steinstaetten_Rudolf_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291", "author": "", "orig_id": 1432361}}, {"model": "metainfo.source", "pk": 1475, "fields": {"orig_filename": "Stoegermayer_Karl_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291", "author": "", "orig_id": 1432404}}, {"model": "metainfo.source", "pk": 1476, "fields": {"orig_filename": "Stoeger_Adolf_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287f.", "author": "", "orig_id": 1825021}}, {"model": "metainfo.source", "pk": 1477, "fields": {"orig_filename": "Stoeger_Arthur_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 286f.", "author": "", "orig_id": 1432212}}, {"model": "metainfo.source", "pk": 1478, "fields": {"orig_filename": "Stoeger_Auguste_1836_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287", "author": "", "orig_id": 1432215}}, {"model": "metainfo.source", "pk": 1479, "fields": {"orig_filename": "Stoeger_Carl_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 287f.", "author": "", "orig_id": 1825028}}, {"model": "metainfo.source", "pk": 1480, "fields": {"orig_filename": "Stoeger_Emilie_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288", "author": "", "orig_id": 1432255}}, {"model": "metainfo.source", "pk": 1481, "fields": {"orig_filename": "Stoeger_Johann-August_1791_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288f.", "author": "", "orig_id": 1432309}}, {"model": "metainfo.source", "pk": 1482, "fields": {"orig_filename": "Stoeger_Johann-Nep_1792_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 289", "author": "", "orig_id": 1432258}}, {"model": "metainfo.source", "pk": 1483, "fields": {"orig_filename": "Stoeger_Johanna_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 288f.", "author": "", "orig_id": 1436463}}, {"model": "metainfo.source", "pk": 1484, "fields": {"orig_filename": "Stoeger_Josef_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 289f.", "author": "", "orig_id": 1432313}}, {"model": "metainfo.source", "pk": 1485, "fields": {"orig_filename": "Stoeger_Leopold_1814_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 290", "author": "", "orig_id": 1432351}}, {"model": "metainfo.source", "pk": 1486, "fields": {"orig_filename": "Stoeger_Michael-Franz_1796_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 290f.", "author": "", "orig_id": 1432356}}, {"model": "metainfo.source", "pk": 1487, "fields": {"orig_filename": "Stoehr_Adolf_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 291f.", "author": "", "orig_id": 1432408}}, {"model": "metainfo.source", "pk": 1488, "fields": {"orig_filename": "Stoehr_August_1764_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 292", "author": "", "orig_id": 1432412}}, {"model": "metainfo.source", "pk": 1489, "fields": {"orig_filename": "Stoehr_Ernst_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 292f.", "author": "", "orig_id": 1432415}}, {"model": "metainfo.source", "pk": 1490, "fields": {"orig_filename": "Stoehr_Hugo_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 293f.", "author": "", "orig_id": 1432418}}, {"model": "metainfo.source", "pk": 1491, "fields": {"orig_filename": "Stoekl_Erich-Karl-Hans_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294", "author": "", "orig_id": 1432088}}, {"model": "metainfo.source", "pk": 1492, "fields": {"orig_filename": "Stoekl_Helene_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294f.", "author": "", "orig_id": 1432514}}, {"model": "metainfo.source", "pk": 1493, "fields": {"orig_filename": "Stoekl_Rudolf_1827_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 294f.", "author": "", "orig_id": 1432516}}, {"model": "metainfo.source", "pk": 1494, "fields": {"orig_filename": "Stoelzle_Carl-Anton_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 295", "author": "", "orig_id": 1432567}}, {"model": "metainfo.source", "pk": 1495, "fields": {"orig_filename": "Stoelzle_Rudolf_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 295f.", "author": "", "orig_id": 1432571}}, {"model": "metainfo.source", "pk": 1496, "fields": {"orig_filename": "Stoerck_Paul_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 296", "author": "", "orig_id": 1432574}}, {"model": "metainfo.source", "pk": 1497, "fields": {"orig_filename": "Stoerk_Carl_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 296f.", "author": "", "orig_id": 1449017}}, {"model": "metainfo.source", "pk": 1498, "fields": {"orig_filename": "Stoerk_Felix-Otto_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 297", "author": "", "orig_id": 1432580}}, {"model": "metainfo.source", "pk": 1499, "fields": {"orig_filename": "Stoerk_Oskar_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 297f.", "author": "", "orig_id": 1432620}}, {"model": "metainfo.source", "pk": 1500, "fields": {"orig_filename": "Stoessl_Adolf_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298", "author": "", "orig_id": 1431849}}, {"model": "metainfo.source", "pk": 1501, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_August_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432006}}, {"model": "metainfo.source", "pk": 1502, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Emil-Richard_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 298f.", "author": "", "orig_id": 1432008}}, {"model": "metainfo.source", "pk": 1503, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Maria-Josefa_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432012}}, {"model": "metainfo.source", "pk": 1504, "fields": {"orig_filename": "Stoffella-Dalta-Rupe_Peter_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 299", "author": "", "orig_id": 1432014}}, {"model": "metainfo.source", "pk": 1505, "fields": {"orig_filename": "Stohl_Franz_1799_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300", "author": "", "orig_id": 1432021}}, {"model": "metainfo.source", "pk": 1506, "fields": {"orig_filename": "Stohl_Heinrich_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 300f.", "author": "", "orig_id": 1432052}}, {"model": "metainfo.source", "pk": 1507, "fields": {"orig_filename": "Stephan-Victor___1817_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 213", "author": "", "orig_id": 1428410}}, {"model": "metainfo.source", "pk": 1508, "fields": {"orig_filename": "Stephani_Albert_1810_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 213f.", "author": "", "orig_id": 1429654}}, {"model": "metainfo.source", "pk": 1509, "fields": {"orig_filename": "Stephani_Rudolf_1817_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 214", "author": "", "orig_id": 1429590}}, {"model": "metainfo.source", "pk": 1510, "fields": {"orig_filename": "Stephann_Carl_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 214f.", "author": "", "orig_id": 1429646}}, {"model": "metainfo.source", "pk": 1511, "fields": {"orig_filename": "Stephan_Martin_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212f.", "author": "", "orig_id": 1429587}}, {"model": "metainfo.source", "pk": 1512, "fields": {"orig_filename": "Stepischnegg_Jakob-Maximilian_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 215", "author": "", "orig_id": 1429752}}, {"model": "metainfo.source", "pk": 1513, "fields": {"orig_filename": "Stepnicka_Frantisek_1785_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 215f.", "author": "", "orig_id": 1429753}}, {"model": "metainfo.source", "pk": 1514, "fields": {"orig_filename": "Stepski-Doliwa_Friedrich_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 216", "author": "", "orig_id": 1430024}}, {"model": "metainfo.source", "pk": 1515, "fields": {"orig_filename": "Sterba-Boehm_Jan-Stanislav_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 216f.", "author": "", "orig_id": 1472595}}, {"model": "metainfo.source", "pk": 1516, "fields": {"orig_filename": "Sterger_Jozef_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 217", "author": "", "orig_id": 1430089}}, {"model": "metainfo.source", "pk": 1517, "fields": {"orig_filename": "Sterio_Karoly_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 217f.", "author": "", "orig_id": 1430127}}, {"model": "metainfo.source", "pk": 1518, "fields": {"orig_filename": "Sterka-Sulucz-Kerpenyes_Alexander_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219f.", "author": "", "orig_id": 1429323}}, {"model": "metainfo.source", "pk": 1519, "fields": {"orig_filename": "Sterk_Andreas-Maria_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 218", "author": "", "orig_id": 1430129}}, {"model": "metainfo.source", "pk": 1520, "fields": {"orig_filename": "Sterk_Izidor_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 218f.", "author": "", "orig_id": 1430133}}, {"model": "metainfo.source", "pk": 1521, "fields": {"orig_filename": "Sterk_Julius_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219", "author": "", "orig_id": 1429313}}, {"model": "metainfo.source", "pk": 1522, "fields": {"orig_filename": "Sterk_Wilhelm_1880_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 219", "author": "", "orig_id": 1429317}}, {"model": "metainfo.source", "pk": 1523, "fields": {"orig_filename": "Stermich-Valcrociata_Anton_1798_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 220f.", "author": "", "orig_id": 1429328}}, {"model": "metainfo.source", "pk": 1524, "fields": {"orig_filename": "Stermich-Valcrociata_Nicolo_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 220f.", "author": "", "orig_id": 1429388}}, {"model": "metainfo.source", "pk": 1525, "fields": {"orig_filename": "Stermich-Valcrociata_Pietro_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221", "author": "", "orig_id": 1429389}}, {"model": "metainfo.source", "pk": 1526, "fields": {"orig_filename": "Stermich-Valcrociata_Simeone_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221", "author": "", "orig_id": 1429381}}, {"model": "metainfo.source", "pk": 1527, "fields": {"orig_filename": "Sternad_Rudolf_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230f.", "author": "", "orig_id": 1429989}}, {"model": "metainfo.source", "pk": 1528, "fields": {"orig_filename": "Sternbach_Hermann_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 231", "author": "", "orig_id": 1430034}}, {"model": "metainfo.source", "pk": 1529, "fields": {"orig_filename": "Sternbach_Ludwik_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 231f.", "author": "", "orig_id": 1845100}}, {"model": "metainfo.source", "pk": 1530, "fields": {"orig_filename": "Sternbach_Maria-Theresia_1775_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 232", "author": "", "orig_id": 1430035}}, {"model": "metainfo.source", "pk": 1531, "fields": {"orig_filename": "Sternbach_Paul-Anton-Maria_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 232f.", "author": "", "orig_id": 1430037}}, {"model": "metainfo.source", "pk": 1532, "fields": {"orig_filename": "Sternbach_Samuel-Leo_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 233", "author": "", "orig_id": 1454363}}, {"model": "metainfo.source", "pk": 1533, "fields": {"orig_filename": "Sternberg-Manderscheid_Franz-Josef_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 237", "author": "", "orig_id": 1430139}}, {"model": "metainfo.source", "pk": 1534, "fields": {"orig_filename": "Sternberg_Adalbert-Wenzel_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 233f.", "author": "", "orig_id": 1430090}}, {"model": "metainfo.source", "pk": 1535, "fields": {"orig_filename": "Sternberg_Adolf_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234", "author": "", "orig_id": 1458639}}, {"model": "metainfo.source", "pk": 1536, "fields": {"orig_filename": "Sternberg_Carl_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234f.", "author": "", "orig_id": 1430096}}, {"model": "metainfo.source", "pk": 1537, "fields": {"orig_filename": "Sternberg_Julian_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 235", "author": "", "orig_id": 1430095}}, {"model": "metainfo.source", "pk": 1538, "fields": {"orig_filename": "Sternberg_Kaspar_1761_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 235f.", "author": "", "orig_id": 1430097}}, {"model": "metainfo.source", "pk": 1539, "fields": {"orig_filename": "Sternberg_Leopold_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 236", "author": "", "orig_id": 1430098}}, {"model": "metainfo.source", "pk": 1540, "fields": {"orig_filename": "Sternberg_Maximilian_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 236f.", "author": "", "orig_id": 1430136}}, {"model": "metainfo.source", "pk": 1541, "fields": {"orig_filename": "Sternberg_Otto_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 234", "author": "", "orig_id": 1822979}}, {"model": "metainfo.source", "pk": 1542, "fields": {"orig_filename": "Sterneck_Berthold_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238", "author": "", "orig_id": 1449779}}, {"model": "metainfo.source", "pk": 1543, "fields": {"orig_filename": "Sterneck_Margarethe_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238", "author": "", "orig_id": 1474852}}, {"model": "metainfo.source", "pk": 1544, "fields": {"orig_filename": "Sternen_Matej_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 238f.", "author": "", "orig_id": 1429335}}, {"model": "metainfo.source", "pk": 1545, "fields": {"orig_filename": "Sterne_Felix_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 237f.", "author": "", "orig_id": 1430146}}, {"model": "metainfo.source", "pk": 1546, "fields": {"orig_filename": "Sternfeld_Jacques_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 239", "author": "", "orig_id": 1429336}}, {"model": "metainfo.source", "pk": 1547, "fields": {"orig_filename": "Sternglas_Oskar_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 239f.", "author": "", "orig_id": 1472341}}, {"model": "metainfo.source", "pk": 1548, "fields": {"orig_filename": "Stern_Alexander_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 221f.", "author": "", "orig_id": 1429537}}, {"model": "metainfo.source", "pk": 1549, "fields": {"orig_filename": "Stern_Alexander_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 222", "author": "", "orig_id": 1430275}}, {"model": "metainfo.source", "pk": 1550, "fields": {"orig_filename": "Stern_Alfred_1831_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 222f.", "author": "", "orig_id": 1429539}}, {"model": "metainfo.source", "pk": 1551, "fields": {"orig_filename": "Stern_Anton_1827_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223", "author": "", "orig_id": 1429710}}, {"model": "metainfo.source", "pk": 1552, "fields": {"orig_filename": "Stern_Arthur_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223f.", "author": "", "orig_id": 1457863}}, {"model": "metainfo.source", "pk": 1553, "fields": {"orig_filename": "Stern_Bernhard_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 224", "author": "", "orig_id": 1435006}}, {"model": "metainfo.source", "pk": 1554, "fields": {"orig_filename": "Stern_Evzen_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 224f.", "author": "", "orig_id": 1429717}}, {"model": "metainfo.source", "pk": 1555, "fields": {"orig_filename": "Stern_Friedrich_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 225", "author": "", "orig_id": 1429719}}, {"model": "metainfo.source", "pk": 1556, "fields": {"orig_filename": "Stern_Hugo_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 225f.", "author": "", "orig_id": 1429766}}, {"model": "metainfo.source", "pk": 1557, "fields": {"orig_filename": "Stern_Josef_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 226", "author": "", "orig_id": 1429771}}, {"model": "metainfo.source", "pk": 1558, "fields": {"orig_filename": "Stern_Josef_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 226f.", "author": "", "orig_id": 1429882}}, {"model": "metainfo.source", "pk": 1559, "fields": {"orig_filename": "Stern_Julius-Bernhard_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228", "author": "", "orig_id": 1429818}}, {"model": "metainfo.source", "pk": 1560, "fields": {"orig_filename": "Stern_Julius_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 227", "author": "", "orig_id": 1429817}}, {"model": "metainfo.source", "pk": 1561, "fields": {"orig_filename": "Stern_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 227f.", "author": "", "orig_id": 1429819}}, {"model": "metainfo.source", "pk": 1562, "fields": {"orig_filename": "Stern_Leopold_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228", "author": "", "orig_id": 1437615}}, {"model": "metainfo.source", "pk": 1563, "fields": {"orig_filename": "Stern_Maurice-Reinhold_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 228f.", "author": "", "orig_id": 1429829}}, {"model": "metainfo.source", "pk": 1564, "fields": {"orig_filename": "Stern_Max-Emanuel_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 229", "author": "", "orig_id": 1429932}}, {"model": "metainfo.source", "pk": 1565, "fields": {"orig_filename": "Stern_Richard_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 229f.", "author": "", "orig_id": 1429937}}, {"model": "metainfo.source", "pk": 1566, "fields": {"orig_filename": "Stern_Robert_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230", "author": "", "orig_id": 1429979}}, {"model": "metainfo.source", "pk": 1567, "fields": {"orig_filename": "Stern_Samuel_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 230", "author": "", "orig_id": 1429985}}, {"model": "metainfo.source", "pk": 1568, "fields": {"orig_filename": "Stern_Victor_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 223", "author": "", "orig_id": 1429987}}, {"model": "metainfo.source", "pk": 1569, "fields": {"orig_filename": "Sterrer_Franz_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1429624}}, {"model": "metainfo.source", "pk": 1570, "fields": {"orig_filename": "Sterrer_Josef_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1432169}}, {"model": "metainfo.source", "pk": 1571, "fields": {"orig_filename": "Sterrer_Karl_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240", "author": "", "orig_id": 1432171}}, {"model": "metainfo.source", "pk": 1572, "fields": {"orig_filename": "Sterzinger_Joseph-Elias_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 241", "author": "", "orig_id": 1432230}}, {"model": "metainfo.source", "pk": 1573, "fields": {"orig_filename": "Sterzinger_Othmar-Hugo_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 241f.", "author": "", "orig_id": 1432235}}, {"model": "metainfo.source", "pk": 1574, "fields": {"orig_filename": "Sterz_Vinzenz__1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 240f.", "author": "", "orig_id": 1432181}}, {"model": "metainfo.source", "pk": 1575, "fields": {"orig_filename": "Steska_Viktor_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 242", "author": "", "orig_id": 1432239}}, {"model": "metainfo.source", "pk": 1576, "fields": {"orig_filename": "Stetka_Gyula_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 242f.", "author": "", "orig_id": 1455112}}, {"model": "metainfo.source", "pk": 1577, "fields": {"orig_filename": "Steub_Ludwig_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 243", "author": "", "orig_id": 1432282}}, {"model": "metainfo.source", "pk": 1578, "fields": {"orig_filename": "Steudel_Johann-Heinrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 243f.", "author": "", "orig_id": 1432283}}, {"model": "metainfo.source", "pk": 1579, "fields": {"orig_filename": "Steurer_Isidor_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 244", "author": "", "orig_id": 1432388}}, {"model": "metainfo.source", "pk": 1580, "fields": {"orig_filename": "Steurer_Leopold_1921_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 244", "author": "", "orig_id": 1432389}}, {"model": "metainfo.source", "pk": 1581, "fields": {"orig_filename": "Steyrer_Franz-Karl_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245", "author": "", "orig_id": 1432436}}, {"model": "metainfo.source", "pk": 1582, "fields": {"orig_filename": "Stiassny-Elzhaim_Felix_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1431865}}, {"model": "metainfo.source", "pk": 1583, "fields": {"orig_filename": "Stiassny_Eduard_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1432656}}, {"model": "metainfo.source", "pk": 1584, "fields": {"orig_filename": "Stiassny_Ignaz_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 245f.", "author": "", "orig_id": 1433449}}, {"model": "metainfo.source", "pk": 1585, "fields": {"orig_filename": "Stiassny_Wilhelm_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 246f.", "author": "", "orig_id": 1431991}}, {"model": "metainfo.source", "pk": 1586, "fields": {"orig_filename": "Stibic_Zdenko_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247", "author": "", "orig_id": 1468947}}, {"model": "metainfo.source", "pk": 1587, "fields": {"orig_filename": "Stibral_Franz_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 247f.", "author": "", "orig_id": 1431874}}, {"model": "metainfo.source", "pk": 1588, "fields": {"orig_filename": "Stibral_Jiri_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 248", "author": "", "orig_id": 1431877}}, {"model": "metainfo.source", "pk": 1589, "fields": {"orig_filename": "Stichlberger_Max_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 249", "author": "", "orig_id": 1431920}}, {"model": "metainfo.source", "pk": 1590, "fields": {"orig_filename": "Stich_Ignaz_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 248f.", "author": "", "orig_id": 1431879}}, {"model": "metainfo.source", "pk": 1591, "fields": {"orig_filename": "Stieber_Georg_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 249", "author": "", "orig_id": 1432037}}, {"model": "metainfo.source", "pk": 1592, "fields": {"orig_filename": "Stieber_Miloslav_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432043}}, {"model": "metainfo.source", "pk": 1593, "fields": {"orig_filename": "Stiebitz_Alois-Josef_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432077}}, {"model": "metainfo.source", "pk": 1594, "fields": {"orig_filename": "Stiebitz_Josef_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250", "author": "", "orig_id": 1432078}}, {"model": "metainfo.source", "pk": 1595, "fields": {"orig_filename": "Stiefler_Georg_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 251f.", "author": "", "orig_id": 1432124}}, {"model": "metainfo.source", "pk": 1596, "fields": {"orig_filename": "Stiefsohn_Ignaz_1911_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 252", "author": "", "orig_id": 1432125}}, {"model": "metainfo.source", "pk": 1597, "fields": {"orig_filename": "Stief_Sebastian_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 250f.", "author": "", "orig_id": 1432084}}, {"model": "metainfo.source", "pk": 1598, "fields": {"orig_filename": "Stieger_Franz_1843_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 252", "author": "", "orig_id": 1432127}}, {"model": "metainfo.source", "pk": 1599, "fields": {"orig_filename": "Stieger_Johann_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253", "author": "", "orig_id": 1432129}}, {"model": "metainfo.source", "pk": 1600, "fields": {"orig_filename": "Stiegler_Karl_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253", "author": "", "orig_id": 1432137}}, {"model": "metainfo.source", "pk": 1601, "fields": {"orig_filename": "Stieglitz_Franz-De-Paula_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 253f.", "author": "", "orig_id": 1432139}}, {"model": "metainfo.source", "pk": 1602, "fields": {"orig_filename": "Stiepan_Oskar_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 254", "author": "", "orig_id": 1427648}}, {"model": "metainfo.source", "pk": 1603, "fields": {"orig_filename": "Stiepel_Heinrich-Tugendhold_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 254f.", "author": "", "orig_id": 1432187}}, {"model": "metainfo.source", "pk": 1604, "fields": {"orig_filename": "Stiepel_Wilhelm-Friedrich-Johann_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 255", "author": "", "orig_id": 1432189}}, {"model": "metainfo.source", "pk": 1605, "fields": {"orig_filename": "Stierle-Holzmeister_Josef_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 256", "author": "", "orig_id": 1432195}}, {"model": "metainfo.source", "pk": 1606, "fields": {"orig_filename": "Stierle_Maria-Henrietta_1755_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 255f.", "author": "", "orig_id": 1470581}}, {"model": "metainfo.source", "pk": 1607, "fields": {"orig_filename": "Stifft-Gottlieb_Angela_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 258", "author": "", "orig_id": 1432246}}, {"model": "metainfo.source", "pk": 1608, "fields": {"orig_filename": "Stifft_Andreas-Joseph_1760_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 257f.", "author": "", "orig_id": 1432245}}, {"model": "metainfo.source", "pk": 1609, "fields": {"orig_filename": "Steiner_Julius_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172", "author": "", "orig_id": 1430397}}, {"model": "metainfo.source", "pk": 1610, "fields": {"orig_filename": "Steiner_Leopold_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 174", "author": "", "orig_id": 1430442}}, {"model": "metainfo.source", "pk": 1611, "fields": {"orig_filename": "Steiner_Ludwig_1888_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 174f.", "author": "", "orig_id": 1471203}}, {"model": "metainfo.source", "pk": 1612, "fields": {"orig_filename": "Steiner_Maximilian_1830_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 175", "author": "", "orig_id": 1430482}}, {"model": "metainfo.source", "pk": 1613, "fields": {"orig_filename": "Steiner_Maximilian_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 175f.", "author": "", "orig_id": 1430584}}, {"model": "metainfo.source", "pk": 1614, "fields": {"orig_filename": "Steiner_Melchior_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 176", "author": "", "orig_id": 1430586}}, {"model": "metainfo.source", "pk": 1615, "fields": {"orig_filename": "Steiner_Rudolf-Joseph-Lorenz_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 176f.", "author": "", "orig_id": 1430633}}, {"model": "metainfo.source", "pk": 1616, "fields": {"orig_filename": "Steiner_Sebastian_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 177f.", "author": "", "orig_id": 1430637}}, {"model": "metainfo.source", "pk": 1617, "fields": {"orig_filename": "Steiner_Siegfried_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178", "author": "", "orig_id": 1823320}}, {"model": "metainfo.source", "pk": 1618, "fields": {"orig_filename": "Steiner_Sigmund-Anton_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178f.", "author": "", "orig_id": 1430640}}, {"model": "metainfo.source", "pk": 1619, "fields": {"orig_filename": "Steiner_Sigmund_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 178", "author": "", "orig_id": 1430639}}, {"model": "metainfo.source", "pk": 1620, "fields": {"orig_filename": "Steiner_Viktor_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 179", "author": "", "orig_id": 1430642}}, {"model": "metainfo.source", "pk": 1621, "fields": {"orig_filename": "Steinfeld_Franz_1750_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430312}}, {"model": "metainfo.source", "pk": 1622, "fields": {"orig_filename": "Steinfeld_Franz_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430311}}, {"model": "metainfo.source", "pk": 1623, "fields": {"orig_filename": "Steinfeld_Wilhelm_1816_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183", "author": "", "orig_id": 1430313}}, {"model": "metainfo.source", "pk": 1624, "fields": {"orig_filename": "Steingraber_Sigmund_1837_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 183f.", "author": "", "orig_id": 1430318}}, {"model": "metainfo.source", "pk": 1625, "fields": {"orig_filename": "Steinhaeusl_Otto_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 184", "author": "", "orig_id": 1430360}}, {"model": "metainfo.source", "pk": 1626, "fields": {"orig_filename": "Steinhardt_Antal_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 185", "author": "", "orig_id": 1458631}}, {"model": "metainfo.source", "pk": 1627, "fields": {"orig_filename": "Steinhard_Erich_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 184f.", "author": "", "orig_id": 1430461}}, {"model": "metainfo.source", "pk": 1628, "fields": {"orig_filename": "Steinhauser_Adolf-Maximilian_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 185f.", "author": "", "orig_id": 1430555}}, {"model": "metainfo.source", "pk": 1629, "fields": {"orig_filename": "Steinhauser_Anton_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 186", "author": "", "orig_id": 1430556}}, {"model": "metainfo.source", "pk": 1630, "fields": {"orig_filename": "Steinhauser_Anton_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 186f.", "author": "", "orig_id": 1430564}}, {"model": "metainfo.source", "pk": 1631, "fields": {"orig_filename": "Steinhauser_Josef_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187", "author": "", "orig_id": 1430664}}, {"model": "metainfo.source", "pk": 1632, "fields": {"orig_filename": "Steinhauser_Robert_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187", "author": "", "orig_id": 1430668}}, {"model": "metainfo.source", "pk": 1633, "fields": {"orig_filename": "Steinhausz_Gyula_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1430552}}, {"model": "metainfo.source", "pk": 1634, "fields": {"orig_filename": "Steinheil_Carl-August_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 187f.", "author": "", "orig_id": 1430769}}, {"model": "metainfo.source", "pk": 1635, "fields": {"orig_filename": "Steinherz_Samuel_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 188", "author": "", "orig_id": 1430773}}, {"model": "metainfo.source", "pk": 1636, "fields": {"orig_filename": "Steininger_Augustin_1794_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 188f.", "author": "", "orig_id": 1430818}}, {"model": "metainfo.source", "pk": 1637, "fields": {"orig_filename": "Steininger_Johann-Nep_1856_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 189", "author": "", "orig_id": 1472588}}, {"model": "metainfo.source", "pk": 1638, "fields": {"orig_filename": "Steininger_Josef_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 189f.", "author": "", "orig_id": 1430826}}, {"model": "metainfo.source", "pk": 1639, "fields": {"orig_filename": "Steininger_Karl_1772_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190", "author": "", "orig_id": 1430829}}, {"model": "metainfo.source", "pk": 1640, "fields": {"orig_filename": "Steininger_Karl_1804_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190", "author": "", "orig_id": 1430866}}, {"model": "metainfo.source", "pk": 1641, "fields": {"orig_filename": "Steininger_Karl_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 190f.", "author": "", "orig_id": 1843702}}, {"model": "metainfo.source", "pk": 1642, "fields": {"orig_filename": "Steinitz-Moser_Marie_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 192f.", "author": "", "orig_id": 1430332}}, {"model": "metainfo.source", "pk": 1643, "fields": {"orig_filename": "Steinitz_Eduard_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193", "author": "", "orig_id": 1430876}}, {"model": "metainfo.source", "pk": 1644, "fields": {"orig_filename": "Steinitz_Heinrich_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 191", "author": "", "orig_id": 1430915}}, {"model": "metainfo.source", "pk": 1645, "fields": {"orig_filename": "Steinitz_Leo_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 191f.", "author": "", "orig_id": 1430294}}, {"model": "metainfo.source", "pk": 1646, "fields": {"orig_filename": "Steinitz_Wilhelm_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 192", "author": "", "orig_id": 1414679}}, {"model": "metainfo.source", "pk": 1647, "fields": {"orig_filename": "Steinkeller_Piotr-Antoni_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193", "author": "", "orig_id": 1430337}}, {"model": "metainfo.source", "pk": 1648, "fields": {"orig_filename": "Steinkeller_Rudolf_1805_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 193f.", "author": "", "orig_id": 1430339}}, {"model": "metainfo.source", "pk": 1649, "fields": {"orig_filename": "Steinko_Franz_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 194", "author": "", "orig_id": 1430343}}, {"model": "metainfo.source", "pk": 1650, "fields": {"orig_filename": "Steinlechner_Paul_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 195", "author": "", "orig_id": 1430432}}, {"model": "metainfo.source", "pk": 1651, "fields": {"orig_filename": "Steinle_Eduard-Jakob_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 194f.", "author": "", "orig_id": 1430380}}, {"model": "metainfo.source", "pk": 1652, "fields": {"orig_filename": "Steinmann_Josef-Johann_1779_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 196", "author": "", "orig_id": 1429670}}, {"model": "metainfo.source", "pk": 1653, "fields": {"orig_filename": "Steinmayr_Johann_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 196f.", "author": "", "orig_id": 1429728}}, {"model": "metainfo.source", "pk": 1654, "fields": {"orig_filename": "Steinmetzer_Franz-Xav_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197", "author": "", "orig_id": 1429836}}, {"model": "metainfo.source", "pk": 1655, "fields": {"orig_filename": "Steinringer_Ferdinand_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197", "author": "", "orig_id": 1429838}}, {"model": "metainfo.source", "pk": 1656, "fields": {"orig_filename": "Steinsberg_Moritz_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 197f.", "author": "", "orig_id": 1429842}}, {"model": "metainfo.source", "pk": 1657, "fields": {"orig_filename": "Steinschneider_Hermann_1889_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 198", "author": "", "orig_id": 1429845}}, {"model": "metainfo.source", "pk": 1658, "fields": {"orig_filename": "Steinschneider_Moritz_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 198f.", "author": "", "orig_id": 1429884}}, {"model": "metainfo.source", "pk": 1659, "fields": {"orig_filename": "Steinschneider_Otto_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 199f.", "author": "", "orig_id": 1449930}}, {"model": "metainfo.source", "pk": 1660, "fields": {"orig_filename": "Steinsky_Wilhelm_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200", "author": "", "orig_id": 1429889}}, {"model": "metainfo.source", "pk": 1661, "fields": {"orig_filename": "Steinwender_Angelus_1895_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200", "author": "", "orig_id": 1429891}}, {"model": "metainfo.source", "pk": 1662, "fields": {"orig_filename": "Steinwender_Otto_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 200f.", "author": "", "orig_id": 1429894}}, {"model": "metainfo.source", "pk": 1663, "fields": {"orig_filename": "Steinwenter_Arthur_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 201", "author": "", "orig_id": 1430102}}, {"model": "metainfo.source", "pk": 1664, "fields": {"orig_filename": "Stein_Alwin_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 145f.", "author": "", "orig_id": 1428310}}, {"model": "metainfo.source", "pk": 1665, "fields": {"orig_filename": "Stein_Anton-Joseph_1759_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 146", "author": "", "orig_id": 1428311}}, {"model": "metainfo.source", "pk": 1666, "fields": {"orig_filename": "Stein_Arthur_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 146f.", "author": "", "orig_id": 1428313}}, {"model": "metainfo.source", "pk": 1667, "fields": {"orig_filename": "Stein_Carl-Andreas_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 147", "author": "", "orig_id": 1428432}}, {"model": "metainfo.source", "pk": 1668, "fields": {"orig_filename": "Stein_Carl-Robert_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 147f.", "author": "", "orig_id": 1428433}}, {"model": "metainfo.source", "pk": 1669, "fields": {"orig_filename": "Stein_Conrad_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428434}}, {"model": "metainfo.source", "pk": 1670, "fields": {"orig_filename": "Stein_Emerich_1762_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428360}}, {"model": "metainfo.source", "pk": 1671, "fields": {"orig_filename": "Stein_Franz_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149f.", "author": "", "orig_id": 1428367}}, {"model": "metainfo.source", "pk": 1672, "fields": {"orig_filename": "Stein_Friedrich-Johann-Philipp-Emil_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150", "author": "", "orig_id": 1428368}}, {"model": "metainfo.source", "pk": 1673, "fields": {"orig_filename": "Stein_Helene_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156", "author": "", "orig_id": 1464855}}, {"model": "metainfo.source", "pk": 1674, "fields": {"orig_filename": "Stein_Isidor_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150f.", "author": "", "orig_id": 1470349}}, {"model": "metainfo.source", "pk": 1675, "fields": {"orig_filename": "Stein_Karl_1801_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 148", "author": "", "orig_id": 1428430}}, {"model": "metainfo.source", "pk": 1676, "fields": {"orig_filename": "Stein_Leo_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 151", "author": "", "orig_id": 1428474}}, {"model": "metainfo.source", "pk": 1677, "fields": {"orig_filename": "Stein_Lorenz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 151f.", "author": "", "orig_id": 1428476}}, {"model": "metainfo.source", "pk": 1678, "fields": {"orig_filename": "Stein_Ludwig_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 152f.", "author": "", "orig_id": 1428530}}, {"model": "metainfo.source", "pk": 1679, "fields": {"orig_filename": "Stein_Marc-Aurel_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 153", "author": "", "orig_id": 1428532}}, {"model": "metainfo.source", "pk": 1680, "fields": {"orig_filename": "Stein_Markus_1845_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 153f.", "author": "", "orig_id": 1428534}}, {"model": "metainfo.source", "pk": 1681, "fields": {"orig_filename": "Stein_Matthaeus-Andreas_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 154", "author": "", "orig_id": 1428536}}, {"model": "metainfo.source", "pk": 1682, "fields": {"orig_filename": "Stein_Maximilian_1814_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 154f.", "author": "", "orig_id": 1428537}}, {"model": "metainfo.source", "pk": 1683, "fields": {"orig_filename": "Stein_Otto_1893_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 155", "author": "", "orig_id": 1438161}}, {"model": "metainfo.source", "pk": 1684, "fields": {"orig_filename": "Stein_Richard_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 155f.", "author": "", "orig_id": 1427751}}, {"model": "metainfo.source", "pk": 1685, "fields": {"orig_filename": "Stein_Salomon_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 150", "author": "", "orig_id": 1470348}}, {"model": "metainfo.source", "pk": 1686, "fields": {"orig_filename": "Stein_Viktor_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156", "author": "", "orig_id": 1427755}}, {"model": "metainfo.source", "pk": 1687, "fields": {"orig_filename": "Steiskal_Theodor_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 201f.", "author": "", "orig_id": 1429407}}, {"model": "metainfo.source", "pk": 1688, "fields": {"orig_filename": "Stejskal_Franz_1829_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 202", "author": "", "orig_id": 1429354}}, {"model": "metainfo.source", "pk": 1689, "fields": {"orig_filename": "Stejskal_Karl-Borr-Franz-Josef_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 202f.", "author": "", "orig_id": 1429356}}, {"model": "metainfo.source", "pk": 1690, "fields": {"orig_filename": "Stekel_Wilhelm_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 203", "author": "", "orig_id": 1429515}}, {"model": "metainfo.source", "pk": 1691, "fields": {"orig_filename": "Stellwag-Carion_Alois-Peter-Franz_1753_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 204", "author": "", "orig_id": 1429739}}, {"model": "metainfo.source", "pk": 1692, "fields": {"orig_filename": "Stellwag-Carion_Carl_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 204f.", "author": "", "orig_id": 1429897}}, {"model": "metainfo.source", "pk": 1693, "fields": {"orig_filename": "Stelzel_Franz_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 205", "author": "", "orig_id": 1429898}}, {"model": "metainfo.source", "pk": 1694, "fields": {"orig_filename": "Stelzhamer_Franz-Xav_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 205f.", "author": "", "orig_id": 1427194}}, {"model": "metainfo.source", "pk": 1695, "fields": {"orig_filename": "Stelzhamer_Johann-Christoph_1750_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 206f.", "author": "", "orig_id": 1429956}}, {"model": "metainfo.source", "pk": 1696, "fields": {"orig_filename": "Stelzhammer_Anton_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207", "author": "", "orig_id": 1429911}}, {"model": "metainfo.source", "pk": 1697, "fields": {"orig_filename": "Stelzhammer_Ferdinand_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207", "author": "", "orig_id": 1429951}}, {"model": "metainfo.source", "pk": 1698, "fields": {"orig_filename": "Stembera_Matej-Dobromir_1806_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 207f.", "author": "", "orig_id": 1430067}}, {"model": "metainfo.source", "pk": 1699, "fields": {"orig_filename": "Stempfer_Georg_1887_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208", "author": "", "orig_id": 1429298}}, {"model": "metainfo.source", "pk": 1700, "fields": {"orig_filename": "Stenc_Jan_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208", "author": "", "orig_id": 1429310}}, {"model": "metainfo.source", "pk": 1701, "fields": {"orig_filename": "Stenner_Peter-Joseph_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 208f.", "author": "", "orig_id": 1429371}}, {"model": "metainfo.source", "pk": 1702, "fields": {"orig_filename": "Stenta_Mario_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 209", "author": "", "orig_id": 1429430}}, {"model": "metainfo.source", "pk": 1703, "fields": {"orig_filename": "Stenta_Michele_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 209f.", "author": "", "orig_id": 1429431}}, {"model": "metainfo.source", "pk": 1704, "fields": {"orig_filename": "Stentrup_Ferdinand-Alois_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 210", "author": "", "orig_id": 1429434}}, {"model": "metainfo.source", "pk": 1705, "fields": {"orig_filename": "Stenzinger-Hillardt_Gabriele-Wilhelmine_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 210", "author": "", "orig_id": 1429480}}, {"model": "metainfo.source", "pk": 1706, "fields": {"orig_filename": "Stepanek_Jan-Nep_1783_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 211f.", "author": "", "orig_id": 1429526}}, {"model": "metainfo.source", "pk": 1707, "fields": {"orig_filename": "Stepanek_Karel_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212", "author": "", "orig_id": 1464125}}, {"model": "metainfo.source", "pk": 1708, "fields": {"orig_filename": "Stepankova_Antonie_1820_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 212", "author": "", "orig_id": 1429521}}, {"model": "metainfo.source", "pk": 1709, "fields": {"orig_filename": "Stepan_Vaclav_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 211", "author": "", "orig_id": 1429520}}, {"model": "metainfo.source", "pk": 1710, "fields": {"orig_filename": "Staude_Franz_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119", "author": "", "orig_id": 1427785}}, {"model": "metainfo.source", "pk": 1711, "fields": {"orig_filename": "Staudigl_Gisela_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427793}}, {"model": "metainfo.source", "pk": 1712, "fields": {"orig_filename": "Staudigl_Joseph_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427792}}, {"model": "metainfo.source", "pk": 1713, "fields": {"orig_filename": "Staudigl_Joseph_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120", "author": "", "orig_id": 1427791}}, {"model": "metainfo.source", "pk": 1714, "fields": {"orig_filename": "Staudigl_Oskar-Wilhelm_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 120f.", "author": "", "orig_id": 1427837}}, {"model": "metainfo.source", "pk": 1715, "fields": {"orig_filename": "Staudigl_Rudolf_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 121f.", "author": "", "orig_id": 1427900}}, {"model": "metainfo.source", "pk": 1716, "fields": {"orig_filename": "Staud_Johann_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 117f.", "author": "", "orig_id": 1427732}}, {"model": "metainfo.source", "pk": 1717, "fields": {"orig_filename": "Staufer_Johann-Anton_1806_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123", "author": "", "orig_id": 1427960}}, {"model": "metainfo.source", "pk": 1718, "fields": {"orig_filename": "Staufer_Johann-Georg_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 122f.", "author": "", "orig_id": 1427961}}, {"model": "metainfo.source", "pk": 1719, "fields": {"orig_filename": "Stauffer_Josef_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123", "author": "", "orig_id": 1427962}}, {"model": "metainfo.source", "pk": 1720, "fields": {"orig_filename": "Stauffer_Viktor_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 123f.", "author": "", "orig_id": 1427996}}, {"model": "metainfo.source", "pk": 1721, "fields": {"orig_filename": "Stauf_Ottokar_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 122", "author": "", "orig_id": 1428136}}, {"model": "metainfo.source", "pk": 1722, "fields": {"orig_filename": "Stauracz_Franz-Xav_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 124", "author": "", "orig_id": 1427998}}, {"model": "metainfo.source", "pk": 1723, "fields": {"orig_filename": "Stava_Julius_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 124f.", "author": "", "orig_id": 1453784}}, {"model": "metainfo.source", "pk": 1724, "fields": {"orig_filename": "Stawa_Franz-Anton_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 125", "author": "", "orig_id": 1428001}}, {"model": "metainfo.source", "pk": 1725, "fields": {"orig_filename": "Stecher-Sebenitz_Ferdinand-Jozef_1779_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 126f.", "author": "", "orig_id": 1428191}}, {"model": "metainfo.source", "pk": 1726, "fields": {"orig_filename": "Stecher_Franz-Anton_1814_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 126", "author": "", "orig_id": 1428014}}, {"model": "metainfo.source", "pk": 1727, "fields": {"orig_filename": "Stech_Vaclav_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 125f.", "author": "", "orig_id": 1428149}}, {"model": "metainfo.source", "pk": 1728, "fields": {"orig_filename": "Steckelmacher_Moritz_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 127", "author": "", "orig_id": 1428295}}, {"model": "metainfo.source", "pk": 1729, "fields": {"orig_filename": "Stecker_Anton_1855_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 127f.", "author": "", "orig_id": 1426641}}, {"model": "metainfo.source", "pk": 1730, "fields": {"orig_filename": "Stecker_Karel_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 128", "author": "", "orig_id": 1428297}}, {"model": "metainfo.source", "pk": 1731, "fields": {"orig_filename": "Stecker_Michael_1786_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 128f.", "author": "", "orig_id": 1428299}}, {"model": "metainfo.source", "pk": 1732, "fields": {"orig_filename": "Steczkowski_Jan-Kanty_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 129", "author": "", "orig_id": 1428346}}, {"model": "metainfo.source", "pk": 1733, "fields": {"orig_filename": "Steczkowski_Jan-Kanty_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 129f.", "author": "", "orig_id": 1428347}}, {"model": "metainfo.source", "pk": 1734, "fields": {"orig_filename": "Steczynski_Maciej-Bogusz-Zygmunt_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 130", "author": "", "orig_id": 1428349}}, {"model": "metainfo.source", "pk": 1735, "fields": {"orig_filename": "Steeb_Christian_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 130f.", "author": "", "orig_id": 1428355}}, {"model": "metainfo.source", "pk": 1736, "fields": {"orig_filename": "Steeb_Gustav_1845_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131", "author": "", "orig_id": 1463259}}, {"model": "metainfo.source", "pk": 1737, "fields": {"orig_filename": "Steeb_Johann-Bapt_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131", "author": "", "orig_id": 1428405}}, {"model": "metainfo.source", "pk": 1738, "fields": {"orig_filename": "Stefanelli_Ioan_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132", "author": "", "orig_id": 1428519}}, {"model": "metainfo.source", "pk": 1739, "fields": {"orig_filename": "Stefanik_Milan-Rastislav_1880_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 133f.", "author": "", "orig_id": 1428527}}, {"model": "metainfo.source", "pk": 1740, "fields": {"orig_filename": "Stefani_Jan_1746_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132f.", "author": "", "orig_id": 1428523}}, {"model": "metainfo.source", "pk": 1741, "fields": {"orig_filename": "Stefanovic-Vilovo_Johann_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134", "author": "", "orig_id": 1427747}}, {"model": "metainfo.source", "pk": 1742, "fields": {"orig_filename": "Stefanovic_Franjo_1879_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134", "author": "", "orig_id": 1427736}}, {"model": "metainfo.source", "pk": 1743, "fields": {"orig_filename": "Stefanowicz_Samuel-Cyrill_1755_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 134f.", "author": "", "orig_id": 1427797}}, {"model": "metainfo.source", "pk": 1744, "fields": {"orig_filename": "Stefanyk_Vasyl_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 135", "author": "", "orig_id": 1427800}}, {"model": "metainfo.source", "pk": 1745, "fields": {"orig_filename": "Stefan_Christian_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 131f.", "author": "", "orig_id": 1428462}}, {"model": "metainfo.source", "pk": 1746, "fields": {"orig_filename": "Stefan_Josef_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 132", "author": "", "orig_id": 1428465}}, {"model": "metainfo.source", "pk": 1747, "fields": {"orig_filename": "Steffal_Vaclav_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 135f.", "author": "", "orig_id": 1427850}}, {"model": "metainfo.source", "pk": 1748, "fields": {"orig_filename": "Steffen_Karl-Emanuel_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 136", "author": "", "orig_id": 1427863}}, {"model": "metainfo.source", "pk": 1749, "fields": {"orig_filename": "Stegensek_Avgustin_1875_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 136f.", "author": "", "orig_id": 1427918}}, {"model": "metainfo.source", "pk": 1750, "fields": {"orig_filename": "Steger_Anton_1768_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 137", "author": "", "orig_id": 1427920}}, {"model": "metainfo.source", "pk": 1751, "fields": {"orig_filename": "Steger_Emil_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 137", "author": "", "orig_id": 1437608}}, {"model": "metainfo.source", "pk": 1752, "fields": {"orig_filename": "Steger_Franz_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 138", "author": "", "orig_id": 1427921}}, {"model": "metainfo.source", "pk": 1753, "fields": {"orig_filename": "Steger_Heinrich_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 138f.", "author": "", "orig_id": 1428012}}, {"model": "metainfo.source", "pk": 1754, "fields": {"orig_filename": "Steger_Joseph_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 139", "author": "", "orig_id": 1428047}}, {"model": "metainfo.source", "pk": 1755, "fields": {"orig_filename": "Stegmayer_Ferdinand_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 139f.", "author": "", "orig_id": 1428058}}, {"model": "metainfo.source", "pk": 1756, "fields": {"orig_filename": "Stegmayer_Karl_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 140", "author": "", "orig_id": 1428059}}, {"model": "metainfo.source", "pk": 1757, "fields": {"orig_filename": "Stegmayer_Matthaeus_1771_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 140", "author": "", "orig_id": 1428060}}, {"model": "metainfo.source", "pk": 1758, "fields": {"orig_filename": "Stegnar_Felix_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1428097}}, {"model": "metainfo.source", "pk": 1759, "fields": {"orig_filename": "Stehle_Adele_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1467852}}, {"model": "metainfo.source", "pk": 1760, "fields": {"orig_filename": "Stehle_Franz_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141", "author": "", "orig_id": 1841950}}, {"model": "metainfo.source", "pk": 1761, "fields": {"orig_filename": "Stehlik-Cenkow-Treustaett_Emanuel_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 141f.", "author": "", "orig_id": 1428101}}, {"model": "metainfo.source", "pk": 1762, "fields": {"orig_filename": "Stehlin_Sebastian_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142", "author": "", "orig_id": 1428153}}, {"model": "metainfo.source", "pk": 1763, "fields": {"orig_filename": "Stehlin_Stanislaus_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142", "author": "", "orig_id": 1428154}}, {"model": "metainfo.source", "pk": 1764, "fields": {"orig_filename": "Steidele_Raphael-Johann_1737_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 142f.", "author": "", "orig_id": 1428158}}, {"model": "metainfo.source", "pk": 1765, "fields": {"orig_filename": "Steidler_Josef_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 143f.", "author": "", "orig_id": 1428198}}, {"model": "metainfo.source", "pk": 1766, "fields": {"orig_filename": "Steidle_Richard_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 143", "author": "", "orig_id": 1428196}}, {"model": "metainfo.source", "pk": 1767, "fields": {"orig_filename": "Steigentesch_Ernst-August_1774_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 144", "author": "", "orig_id": 1427641}}, {"model": "metainfo.source", "pk": 1768, "fields": {"orig_filename": "Steiger_Benedikt_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 144f.", "author": "", "orig_id": 1428202}}, {"model": "metainfo.source", "pk": 1769, "fields": {"orig_filename": "Steinach_Eugen_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 156f.", "author": "", "orig_id": 1427603}}, {"model": "metainfo.source", "pk": 1770, "fields": {"orig_filename": "Steinach_Simon_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 157f.", "author": "", "orig_id": 1427762}}, {"model": "metainfo.source", "pk": 1771, "fields": {"orig_filename": "Steinach_Wilhelm_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 158", "author": "", "orig_id": 1427807}}, {"model": "metainfo.source", "pk": 1772, "fields": {"orig_filename": "Steinacker_Edmund_1839_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 158f.", "author": "", "orig_id": 1428180}}, {"model": "metainfo.source", "pk": 1773, "fields": {"orig_filename": "Steinacker_Gustav-Wilhelm_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 159", "author": "", "orig_id": 1427810}}, {"model": "metainfo.source", "pk": 1774, "fields": {"orig_filename": "Steinbach_Emil_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 159f.", "author": "", "orig_id": 1427877}}, {"model": "metainfo.source", "pk": 1775, "fields": {"orig_filename": "Steinbach_Gustav_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 160", "author": "", "orig_id": 1427880}}, {"model": "metainfo.source", "pk": 1776, "fields": {"orig_filename": "Steinbach_Josef_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427884}}, {"model": "metainfo.source", "pk": 1777, "fields": {"orig_filename": "Steinbach_Josef_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 160f.", "author": "", "orig_id": 1427924}}, {"model": "metainfo.source", "pk": 1778, "fields": {"orig_filename": "Steinbach_Leopold_1904_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161", "author": "", "orig_id": 1427925}}, {"model": "metainfo.source", "pk": 1779, "fields": {"orig_filename": "Steinberger_Marianne_1887_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161", "author": "", "orig_id": 1448192}}, {"model": "metainfo.source", "pk": 1780, "fields": {"orig_filename": "Steinberger_Philipp_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 161f.", "author": "", "orig_id": 1428018}}, {"model": "metainfo.source", "pk": 1781, "fields": {"orig_filename": "Steinberg_Julius_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427976}}, {"model": "metainfo.source", "pk": 1782, "fields": {"orig_filename": "Steinbrener_Johann_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 162", "author": "", "orig_id": 1430566}}, {"model": "metainfo.source", "pk": 1783, "fields": {"orig_filename": "Steinbrener_Rupert_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 162f.", "author": "", "orig_id": 1842549}}, {"model": "metainfo.source", "pk": 1784, "fields": {"orig_filename": "Steinbuechel-Rheinwall_Anton_1790_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 163", "author": "", "orig_id": 1430572}}, {"model": "metainfo.source", "pk": 1785, "fields": {"orig_filename": "Steindachner_Franz_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 164", "author": "", "orig_id": 1430623}}, {"model": "metainfo.source", "pk": 1786, "fields": {"orig_filename": "Steindl_Imre_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 164f.", "author": "", "orig_id": 1430626}}, {"model": "metainfo.source", "pk": 1787, "fields": {"orig_filename": "Steindl_Mathias-Paulus_1761_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165", "author": "", "orig_id": 1430684}}, {"model": "metainfo.source", "pk": 1788, "fields": {"orig_filename": "Steinebach_Friedrich_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166", "author": "", "orig_id": 1430733}}, {"model": "metainfo.source", "pk": 1789, "fields": {"orig_filename": "Steinegger_Ambros_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166", "author": "", "orig_id": 1430737}}, {"model": "metainfo.source", "pk": 1790, "fields": {"orig_filename": "Steinegger_Otto_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 166f.", "author": "", "orig_id": 1430833}}, {"model": "metainfo.source", "pk": 1791, "fields": {"orig_filename": "Steiner-Felsburg_Albrecht_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 180", "author": "", "orig_id": 1430691}}, {"model": "metainfo.source", "pk": 1792, "fields": {"orig_filename": "Steiner-Pfungen_Eduard_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181", "author": "", "orig_id": 1430270}}, {"model": "metainfo.source", "pk": 1793, "fields": {"orig_filename": "Steiner-Pfungen_Joseph_1767_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 180f.", "author": "", "orig_id": 1430305}}, {"model": "metainfo.source", "pk": 1794, "fields": {"orig_filename": "Steiner-Pfungen_Robert-Wilhelm-Joseph_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181", "author": "", "orig_id": 1430306}}, {"model": "metainfo.source", "pk": 1795, "fields": {"orig_filename": "Steiner-Prag_Hugo_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 181f.", "author": "", "orig_id": 1430307}}, {"model": "metainfo.source", "pk": 1796, "fields": {"orig_filename": "Steiner-Wischenbart_Josef_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 182f.", "author": "", "orig_id": 1430308}}, {"model": "metainfo.source", "pk": 1797, "fields": {"orig_filename": "Steiner_Agnes-Klara_1813_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 167", "author": "", "orig_id": 1430480}}, {"model": "metainfo.source", "pk": 1798, "fields": {"orig_filename": "Steiner_Bernd_1884_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 167f.", "author": "", "orig_id": 1430935}}, {"model": "metainfo.source", "pk": 1799, "fields": {"orig_filename": "Steiner_Franz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 168", "author": "", "orig_id": 1430201}}, {"model": "metainfo.source", "pk": 1800, "fields": {"orig_filename": "Steiner_Friedrich_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 168f.", "author": "", "orig_id": 1430247}}, {"model": "metainfo.source", "pk": 1801, "fields": {"orig_filename": "Steiner_Fueloep_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 169", "author": "", "orig_id": 1430630}}, {"model": "metainfo.source", "pk": 1802, "fields": {"orig_filename": "Steiner_Gabor_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 169f.", "author": "", "orig_id": 1430250}}, {"model": "metainfo.source", "pk": 1803, "fields": {"orig_filename": "Steiner_Hanna_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 170f.", "author": "", "orig_id": 1430253}}, {"model": "metainfo.source", "pk": 1804, "fields": {"orig_filename": "Steiner_Heinrich-Elchanan_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 171", "author": "", "orig_id": 1430295}}, {"model": "metainfo.source", "pk": 1805, "fields": {"orig_filename": "Steiner_Hermann_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 171f.", "author": "", "orig_id": 1842752}}, {"model": "metainfo.source", "pk": 1806, "fields": {"orig_filename": "Steiner_Johann_1833_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172f.", "author": "", "orig_id": 1430303}}, {"model": "metainfo.source", "pk": 1807, "fields": {"orig_filename": "Steiner_Josef_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 173", "author": "", "orig_id": 1430357}}, {"model": "metainfo.source", "pk": 1808, "fields": {"orig_filename": "Steiner_Jo_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 172", "author": "", "orig_id": 1430388}}, {"model": "metainfo.source", "pk": 1809, "fields": {"orig_filename": "Steiner_Julius_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 173f.", "author": "", "orig_id": 1430393}}, {"model": "metainfo.source", "pk": 1810, "fields": {"orig_filename": "Steiner_Julius_1863_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 177f.", "author": "", "orig_id": 1430395}}, {"model": "metainfo.source", "pk": 1811, "fields": {"orig_filename": "Stadler_Joseph_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 74", "author": "", "orig_id": 1429027}}, {"model": "metainfo.source", "pk": 1812, "fields": {"orig_filename": "Stadler_Josip_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 74f.", "author": "", "orig_id": 1429062}}, {"model": "metainfo.source", "pk": 1813, "fields": {"orig_filename": "Stadler_Maximilian_1748_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 75f.", "author": "", "orig_id": 1429066}}, {"model": "metainfo.source", "pk": 1814, "fields": {"orig_filename": "Stadlmayr_Franz_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 76", "author": "", "orig_id": 1429149}}, {"model": "metainfo.source", "pk": 1815, "fields": {"orig_filename": "Stadl_Josef_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 70f.", "author": "", "orig_id": 1428923}}, {"model": "metainfo.source", "pk": 1816, "fields": {"orig_filename": "Stadl_Peter_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 71", "author": "", "orig_id": 1428926}}, {"model": "metainfo.source", "pk": 1817, "fields": {"orig_filename": "Stadnicki_Jan_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77", "author": "", "orig_id": 1429204}}, {"model": "metainfo.source", "pk": 1818, "fields": {"orig_filename": "Stadnicki_Kazimierz_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77", "author": "", "orig_id": 1429205}}, {"model": "metainfo.source", "pk": 1819, "fields": {"orig_filename": "Stadnicki_Stanislaw-Jan-Kanty_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 77f.", "author": "", "orig_id": 1429207}}, {"model": "metainfo.source", "pk": 1820, "fields": {"orig_filename": "Staehlin_Gustav-Adolf_1816_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1429261}}, {"model": "metainfo.source", "pk": 1821, "fields": {"orig_filename": "Staehlin_Heinrich-August_1812_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1429262}}, {"model": "metainfo.source", "pk": 1822, "fields": {"orig_filename": "Staehlin_Karl_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78", "author": "", "orig_id": 1428570}}, {"model": "metainfo.source", "pk": 1823, "fields": {"orig_filename": "Staetter_Philipp_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 78f.", "author": "", "orig_id": 1464534}}, {"model": "metainfo.source", "pk": 1824, "fields": {"orig_filename": "Staffler_Johann-Jakob_1783_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 79f.", "author": "", "orig_id": 1428662}}, {"model": "metainfo.source", "pk": 1825, "fields": {"orig_filename": "Staffler_Josef_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 80", "author": "", "orig_id": 1428664}}, {"model": "metainfo.source", "pk": 1826, "fields": {"orig_filename": "Staff_Alois_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 79", "author": "", "orig_id": 1428610}}, {"model": "metainfo.source", "pk": 1827, "fields": {"orig_filename": "Stafl_Otakar_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 80f.", "author": "", "orig_id": 1464916}}, {"model": "metainfo.source", "pk": 1828, "fields": {"orig_filename": "Stahly_Gyoergy_1809_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82", "author": "", "orig_id": 1428217}}, {"model": "metainfo.source", "pk": 1829, "fields": {"orig_filename": "Stahly_Ignacz_1787_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82", "author": "", "orig_id": 1428219}}, {"model": "metainfo.source", "pk": 1830, "fields": {"orig_filename": "Stahl_Ludwig_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 81", "author": "", "orig_id": 1428170}}, {"model": "metainfo.source", "pk": 1831, "fields": {"orig_filename": "Stahl_Philipp_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 81f.", "author": "", "orig_id": 1428174}}, {"model": "metainfo.source", "pk": 1832, "fields": {"orig_filename": "Stainer_Karl_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 82f.", "author": "", "orig_id": 1448660}}, {"model": "metainfo.source", "pk": 1833, "fields": {"orig_filename": "Staininger_Michael_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 83", "author": "", "orig_id": 1428253}}, {"model": "metainfo.source", "pk": 1834, "fields": {"orig_filename": "Stalmach_Paul_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 83f.", "author": "", "orig_id": 1428316}}, {"model": "metainfo.source", "pk": 1835, "fields": {"orig_filename": "Stalzer_Hans_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 84", "author": "", "orig_id": 1428317}}, {"model": "metainfo.source", "pk": 1836, "fields": {"orig_filename": "Stalzer_Josef_1880_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 84f.", "author": "", "orig_id": 1428318}}, {"model": "metainfo.source", "pk": 1837, "fields": {"orig_filename": "Stammhammer_Josef_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 85f.", "author": "", "orig_id": 1428327}}, {"model": "metainfo.source", "pk": 1838, "fields": {"orig_filename": "Stamm_Ferdinand_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 85", "author": "", "orig_id": 1428323}}, {"model": "metainfo.source", "pk": 1839, "fields": {"orig_filename": "Stampfer_Coelestin_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 86", "author": "", "orig_id": 1428381}}, {"model": "metainfo.source", "pk": 1840, "fields": {"orig_filename": "Stampfer_Simon_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 86f.", "author": "", "orig_id": 1428387}}, {"model": "metainfo.source", "pk": 1841, "fields": {"orig_filename": "Stampfl_Josef_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 87", "author": "", "orig_id": 1428437}}, {"model": "metainfo.source", "pk": 1842, "fields": {"orig_filename": "Standfest_Franz_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88", "author": "", "orig_id": 1428446}}, {"model": "metainfo.source", "pk": 1843, "fields": {"orig_filename": "Standl_Ivan_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88", "author": "", "orig_id": 1428448}}, {"model": "metainfo.source", "pk": 1844, "fields": {"orig_filename": "Standthartner_Josef_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 88f.", "author": "", "orig_id": 1428502}}, {"model": "metainfo.source", "pk": 1845, "fields": {"orig_filename": "Stand_Adolf_1870_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 87f.", "author": "", "orig_id": 1428442}}, {"model": "metainfo.source", "pk": 1846, "fields": {"orig_filename": "Stanecki_Tomasz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 89", "author": "", "orig_id": 1429203}}, {"model": "metainfo.source", "pk": 1847, "fields": {"orig_filename": "Stanek_Frantisek_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 89f.", "author": "", "orig_id": 1428451}}, {"model": "metainfo.source", "pk": 1848, "fields": {"orig_filename": "Stanek_Jan_1828_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 90", "author": "", "orig_id": 1428482}}, {"model": "metainfo.source", "pk": 1849, "fields": {"orig_filename": "Stanek_Josef_1883_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 90f.", "author": "", "orig_id": 1464803}}, {"model": "metainfo.source", "pk": 1850, "fields": {"orig_filename": "Stanek_Vaclav_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 91", "author": "", "orig_id": 1428484}}, {"model": "metainfo.source", "pk": 1851, "fields": {"orig_filename": "Stanic_Konstantin_1756_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 91f.", "author": "", "orig_id": 1427765}}, {"model": "metainfo.source", "pk": 1852, "fields": {"orig_filename": "Stanic_Valentin_1774_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 92f.", "author": "", "orig_id": 1427764}}, {"model": "metainfo.source", "pk": 1853, "fields": {"orig_filename": "Stanislawski_Jan-Grzegorz_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427773}}, {"model": "metainfo.source", "pk": 1854, "fields": {"orig_filename": "Stanke_Franz_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427777}}, {"model": "metainfo.source", "pk": 1855, "fields": {"orig_filename": "Stanke_Leopold-Franz_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 93", "author": "", "orig_id": 1427778}}, {"model": "metainfo.source", "pk": 1856, "fields": {"orig_filename": "Stankovich_Pietro-Mattia_1771_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 94f.", "author": "", "orig_id": 1428440}}, {"model": "metainfo.source", "pk": 1857, "fields": {"orig_filename": "Stankovic_Kornelije_1831_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 94", "author": "", "orig_id": 1427779}}, {"model": "metainfo.source", "pk": 1858, "fields": {"orig_filename": "Stankovsky_Josef-Jiri_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 95", "author": "", "orig_id": 1427824}}, {"model": "metainfo.source", "pk": 1859, "fields": {"orig_filename": "Stanojevic_Stanoje_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 95f.", "author": "", "orig_id": 1427825}}, {"model": "metainfo.source", "pk": 1860, "fields": {"orig_filename": "Stanonik_Franz_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 96", "author": "", "orig_id": 1427827}}, {"model": "metainfo.source", "pk": 1861, "fields": {"orig_filename": "Stapf_Johann-Josef-Anton_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 96f.", "author": "", "orig_id": 1427885}}, {"model": "metainfo.source", "pk": 1862, "fields": {"orig_filename": "Stapf_Josef_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98", "author": "", "orig_id": 1470903}}, {"model": "metainfo.source", "pk": 1863, "fields": {"orig_filename": "Stapf_Josef_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98", "author": "", "orig_id": 1470388}}, {"model": "metainfo.source", "pk": 1864, "fields": {"orig_filename": "Stapf_Joseph-Ambros_1785_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97", "author": "", "orig_id": 1427836}}, {"model": "metainfo.source", "pk": 1865, "fields": {"orig_filename": "Stapf_Joseph_1779_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97", "author": "", "orig_id": 1470387}}, {"model": "metainfo.source", "pk": 1866, "fields": {"orig_filename": "Stapf_Martin_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 97f.", "author": "", "orig_id": 1427886}}, {"model": "metainfo.source", "pk": 1867, "fields": {"orig_filename": "Stapf_Otto_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 98f.", "author": "", "orig_id": 1427887}}, {"model": "metainfo.source", "pk": 1868, "fields": {"orig_filename": "Stapf_Thomas_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 99", "author": "", "orig_id": 1427888}}, {"model": "metainfo.source", "pk": 1869, "fields": {"orig_filename": "Starcevic_Ante_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 99f.", "author": "", "orig_id": 1427893}}, {"model": "metainfo.source", "pk": 1870, "fields": {"orig_filename": "Starcevic_David_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100", "author": "", "orig_id": 1427894}}, {"model": "metainfo.source", "pk": 1871, "fields": {"orig_filename": "Starcevic_Mile_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100", "author": "", "orig_id": 1427895}}, {"model": "metainfo.source", "pk": 1872, "fields": {"orig_filename": "Starck_Johann-Anton_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 100f.", "author": "", "orig_id": 1427938}}, {"model": "metainfo.source", "pk": 1873, "fields": {"orig_filename": "Starck_Johann-David_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 101", "author": "", "orig_id": 1427939}}, {"model": "metainfo.source", "pk": 1874, "fields": {"orig_filename": "Starek_Ludovit_1803_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102", "author": "", "orig_id": 1427982}}, {"model": "metainfo.source", "pk": 1875, "fields": {"orig_filename": "Stare_Josip_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 101", "author": "", "orig_id": 1427947}}, {"model": "metainfo.source", "pk": 1876, "fields": {"orig_filename": "Starhemberg_Anton-Gundakar_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102", "author": "", "orig_id": 1427984}}, {"model": "metainfo.source", "pk": 1877, "fields": {"orig_filename": "Starhemberg_Camillo-Heinrich_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 102f.", "author": "", "orig_id": 1427986}}, {"model": "metainfo.source", "pk": 1878, "fields": {"orig_filename": "Starhemberg_Camillo-Ruediger_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103", "author": "", "orig_id": 1427987}}, {"model": "metainfo.source", "pk": 1879, "fields": {"orig_filename": "Starhemberg_Ernst-Ruediger_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103", "author": "", "orig_id": 1427989}}, {"model": "metainfo.source", "pk": 1880, "fields": {"orig_filename": "Starhemberg_Franziska_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 103f.", "author": "", "orig_id": 1428027}}, {"model": "metainfo.source", "pk": 1881, "fields": {"orig_filename": "Starhemberg_Ludwig_1762_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 104f.", "author": "", "orig_id": 1428034}}, {"model": "metainfo.source", "pk": 1882, "fields": {"orig_filename": "Stark-Rungberg_Franz-Xav_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 108", "author": "", "orig_id": 1428126}}, {"model": "metainfo.source", "pk": 1883, "fields": {"orig_filename": "Starkenstein_Emil_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 109f.", "author": "", "orig_id": 1427600}}, {"model": "metainfo.source", "pk": 1884, "fields": {"orig_filename": "Starke_Friedrich_1774_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 108f.", "author": "", "orig_id": 1428129}}, {"model": "metainfo.source", "pk": 1885, "fields": {"orig_filename": "Starkl_Gottfried_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 110", "author": "", "orig_id": 1428275}}, {"model": "metainfo.source", "pk": 1886, "fields": {"orig_filename": "Stark_Adele_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105f.", "author": "", "orig_id": 1428072}}, {"model": "metainfo.source", "pk": 1887, "fields": {"orig_filename": "Stark_Franz-Anton_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 106", "author": "", "orig_id": 1428081}}, {"model": "metainfo.source", "pk": 1888, "fields": {"orig_filename": "Stark_Johannes_1794_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 106", "author": "", "orig_id": 1428083}}, {"model": "metainfo.source", "pk": 1889, "fields": {"orig_filename": "Stark_Josef-August_1782_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107", "author": "", "orig_id": 1428118}}, {"model": "metainfo.source", "pk": 1890, "fields": {"orig_filename": "Stark_Lipot_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107", "author": "", "orig_id": 1428122}}, {"model": "metainfo.source", "pk": 1891, "fields": {"orig_filename": "Stark_Simon_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 107f.", "author": "", "orig_id": 1427943}}, {"model": "metainfo.source", "pk": 1892, "fields": {"orig_filename": "Starlinger_Josef_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 110f.", "author": "", "orig_id": 1428277}}, {"model": "metainfo.source", "pk": 1893, "fields": {"orig_filename": "Stary_Emanuel_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111", "author": "", "orig_id": 1428285}}, {"model": "metainfo.source", "pk": 1894, "fields": {"orig_filename": "Stary_Emanuel_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111", "author": "", "orig_id": 1428330}}, {"model": "metainfo.source", "pk": 1895, "fields": {"orig_filename": "Stary_Sigismund-Anton_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 111f.", "author": "", "orig_id": 1428332}}, {"model": "metainfo.source", "pk": 1896, "fields": {"orig_filename": "Starzengruber_Josef_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112", "author": "", "orig_id": 1428334}}, {"model": "metainfo.source", "pk": 1897, "fields": {"orig_filename": "Starzer_Albert_1863_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112", "author": "", "orig_id": 1428339}}, {"model": "metainfo.source", "pk": 1898, "fields": {"orig_filename": "Starzynski_Stanislaw_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 112f.", "author": "", "orig_id": 1428344}}, {"model": "metainfo.source", "pk": 1899, "fields": {"orig_filename": "Stastny_Alfons-Bohumil_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 113f.", "author": "", "orig_id": 1464123}}, {"model": "metainfo.source", "pk": 1900, "fields": {"orig_filename": "Stastny_Alfons_1831_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 113", "author": "", "orig_id": 1428394}}, {"model": "metainfo.source", "pk": 1901, "fields": {"orig_filename": "Stastny_Bernard-Vaclav_1760_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114", "author": "", "orig_id": 1428395}}, {"model": "metainfo.source", "pk": 1902, "fields": {"orig_filename": "Stastny_Jan_1764_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114", "author": "", "orig_id": 1468140}}, {"model": "metainfo.source", "pk": 1903, "fields": {"orig_filename": "Stastny_Vladimir_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 114f.", "author": "", "orig_id": 1428508}}, {"model": "metainfo.source", "pk": 1904, "fields": {"orig_filename": "Stattler_Henryk-Antoni_1834_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115", "author": "", "orig_id": 1428510}}, {"model": "metainfo.source", "pk": 1905, "fields": {"orig_filename": "Stattler_Stanislaw_1836_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115", "author": "", "orig_id": 1428512}}, {"model": "metainfo.source", "pk": 1906, "fields": {"orig_filename": "Stattler_Wojciech-Korneli_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 115f.", "author": "", "orig_id": 1428509}}, {"model": "metainfo.source", "pk": 1907, "fields": {"orig_filename": "Staub_Franz_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 116", "author": "", "orig_id": 1427722}}, {"model": "metainfo.source", "pk": 1908, "fields": {"orig_filename": "Staub_Moritz_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 116f.", "author": "", "orig_id": 1427725}}, {"model": "metainfo.source", "pk": 1909, "fields": {"orig_filename": "Staudach_Emma-Antonia_1834_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 118f.", "author": "", "orig_id": 1427783}}, {"model": "metainfo.source", "pk": 1910, "fields": {"orig_filename": "Stauda_August_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 118", "author": "", "orig_id": 1427734}}, {"model": "metainfo.source", "pk": 1911, "fields": {"orig_filename": "Staudenheim_Jakob_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119", "author": "", "orig_id": 1427787}}, {"model": "metainfo.source", "pk": 1912, "fields": {"orig_filename": "Stauder_Hermann_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 119f.", "author": "", "orig_id": 1430582}}, {"model": "metainfo.source", "pk": 1913, "fields": {"orig_filename": "Spies_Hermann_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 26", "author": "", "orig_id": 1426893}}, {"model": "metainfo.source", "pk": 1914, "fields": {"orig_filename": "Spillar_Jaroslav_1869_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 27", "author": "", "orig_id": 1426177}}, {"model": "metainfo.source", "pk": 1915, "fields": {"orig_filename": "Spillar_Karel_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 27f.", "author": "", "orig_id": 1429006}}, {"model": "metainfo.source", "pk": 1916, "fields": {"orig_filename": "Spiller_Philipp_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28", "author": "", "orig_id": 1426180}}, {"model": "metainfo.source", "pk": 1917, "fields": {"orig_filename": "Spina_Anton_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28", "author": "", "orig_id": 1426186}}, {"model": "metainfo.source", "pk": 1918, "fields": {"orig_filename": "Spina_Arnold_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 28f.", "author": "", "orig_id": 1426187}}, {"model": "metainfo.source", "pk": 1919, "fields": {"orig_filename": "Spina_Carl-Anton_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 29", "author": "", "orig_id": 1426189}}, {"model": "metainfo.source", "pk": 1920, "fields": {"orig_filename": "Spina_Franz_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 29f.", "author": "", "orig_id": 1426188}}, {"model": "metainfo.source", "pk": 1921, "fields": {"orig_filename": "Spindler_Ervin_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30", "author": "", "orig_id": 1426235}}, {"model": "metainfo.source", "pk": 1922, "fields": {"orig_filename": "Spinka_Anna__1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30f.", "author": "", "orig_id": 1470622}}, {"model": "metainfo.source", "pk": 1923, "fields": {"orig_filename": "Spinka_Vaclav_1796_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 30f.", "author": "", "orig_id": 1426244}}, {"model": "metainfo.source", "pk": 1924, "fields": {"orig_filename": "Spira_Jacob-Fritz_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 31f.", "author": "", "orig_id": 1426249}}, {"model": "metainfo.source", "pk": 1925, "fields": {"orig_filename": "Spirk_Antonin-Ferdinand_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426451}}, {"model": "metainfo.source", "pk": 1926, "fields": {"orig_filename": "Spirk_Antonin_1838_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426450}}, {"model": "metainfo.source", "pk": 1927, "fields": {"orig_filename": "Spiro_Ede_1805_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32", "author": "", "orig_id": 1426455}}, {"model": "metainfo.source", "pk": 1928, "fields": {"orig_filename": "Spiro_Ignaz_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 32f.", "author": "", "orig_id": 1426457}}, {"model": "metainfo.source", "pk": 1929, "fields": {"orig_filename": "Spiss_Cassian_1866_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 33f.", "author": "", "orig_id": 1428834}}, {"model": "metainfo.source", "pk": 1930, "fields": {"orig_filename": "Spis_Stanislaw_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 33", "author": "", "orig_id": 1428831}}, {"model": "metainfo.source", "pk": 1931, "fields": {"orig_filename": "Spitaler_Rudolf_1859_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 34f.", "author": "", "orig_id": 1428881}}, {"model": "metainfo.source", "pk": 1932, "fields": {"orig_filename": "Spitzeder_Josef_1794_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 36f.", "author": "", "orig_id": 1429037}}, {"model": "metainfo.source", "pk": 1933, "fields": {"orig_filename": "Spitzer_Alexander_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37", "author": "", "orig_id": 1429031}}, {"model": "metainfo.source", "pk": 1934, "fields": {"orig_filename": "Spitzer_Berthold_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37", "author": "", "orig_id": 1429072}}, {"model": "metainfo.source", "pk": 1935, "fields": {"orig_filename": "Spitzer_Daniel_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 37f.", "author": "", "orig_id": 1429122}}, {"model": "metainfo.source", "pk": 1936, "fields": {"orig_filename": "Spitzer_Emanuel_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 38f.", "author": "", "orig_id": 1429157}}, {"model": "metainfo.source", "pk": 1937, "fields": {"orig_filename": "Spitzer_Frederic_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 39", "author": "", "orig_id": 1454350}}, {"model": "metainfo.source", "pk": 1938, "fields": {"orig_filename": "Spitzer_Friedrich-Viktor_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 39f.", "author": "", "orig_id": 1429160}}, {"model": "metainfo.source", "pk": 1939, "fields": {"orig_filename": "Spitzer_Hugo_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 40", "author": "", "orig_id": 1429168}}, {"model": "metainfo.source", "pk": 1940, "fields": {"orig_filename": "Spitzer_Leonie-Adele_1891_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 41", "author": "", "orig_id": 1437605}}, {"model": "metainfo.source", "pk": 1941, "fields": {"orig_filename": "Spitzer_Rudolf-Lothar_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 41f.", "author": "", "orig_id": 1429224}}, {"model": "metainfo.source", "pk": 1942, "fields": {"orig_filename": "Spitzer_Salomon_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 42", "author": "", "orig_id": 1454378}}, {"model": "metainfo.source", "pk": 1943, "fields": {"orig_filename": "Spitzer_Sigmund_1813_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 42f.", "author": "", "orig_id": 1429268}}, {"model": "metainfo.source", "pk": 1944, "fields": {"orig_filename": "Spitzer_Simon_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 43", "author": "", "orig_id": 1429270}}, {"model": "metainfo.source", "pk": 1945, "fields": {"orig_filename": "Spitz_Albrecht_1883_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 35", "author": "", "orig_id": 1428887}}, {"model": "metainfo.source", "pk": 1946, "fields": {"orig_filename": "Spitz_Ernst_1902_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 35f.", "author": "", "orig_id": 1428889}}, {"model": "metainfo.source", "pk": 1947, "fields": {"orig_filename": "Spitz_Heinrich-Otto_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 36", "author": "", "orig_id": 1428934}}, {"model": "metainfo.source", "pk": 1948, "fields": {"orig_filename": "Spleny-Mihaldy_Franz_1768_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1470624}}, {"model": "metainfo.source", "pk": 1949, "fields": {"orig_filename": "Spleny-Mihaldy_Gabriel_1734_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 43f.", "author": "", "orig_id": 1428583}}, {"model": "metainfo.source", "pk": 1950, "fields": {"orig_filename": "Spleny-Mihaldy_Ignaz-Pankraz-Galeaz_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1428582}}, {"model": "metainfo.source", "pk": 1951, "fields": {"orig_filename": "Spleny-Mihaldy_Ludwig_1817_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44", "author": "", "orig_id": 1428622}}, {"model": "metainfo.source", "pk": 1952, "fields": {"orig_filename": "Spoerlin_Michael_1784_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 44f.", "author": "", "orig_id": 1428624}}, {"model": "metainfo.source", "pk": 1953, "fields": {"orig_filename": "Spoerr_Franz-Xav_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 45", "author": "", "orig_id": 1428677}}, {"model": "metainfo.source", "pk": 1954, "fields": {"orig_filename": "Spoerr_Martin_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 45f.", "author": "", "orig_id": 1428679}}, {"model": "metainfo.source", "pk": 1955, "fields": {"orig_filename": "Sponer_Andor_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 46", "author": "", "orig_id": 1428722}}, {"model": "metainfo.source", "pk": 1956, "fields": {"orig_filename": "Sporschil_Johann-Chrysostomus_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 46f.", "author": "", "orig_id": 1428851}}, {"model": "metainfo.source", "pk": 1957, "fields": {"orig_filename": "Spott_Jan_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 47", "author": "", "orig_id": 1428895}}, {"model": "metainfo.source", "pk": 1958, "fields": {"orig_filename": "Spott_Karel_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 47f.", "author": "", "orig_id": 1428896}}, {"model": "metainfo.source", "pk": 1959, "fields": {"orig_filename": "Sprecher-Bernegg_Arthur-Heinrich_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 48", "author": "", "orig_id": 1428953}}, {"model": "metainfo.source", "pk": 1960, "fields": {"orig_filename": "Sprenger_Aloys_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 49", "author": "", "orig_id": 1428997}}, {"model": "metainfo.source", "pk": 1961, "fields": {"orig_filename": "Sprenger_Paul-Eduard_1798_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 49f.", "author": "", "orig_id": 1429000}}, {"model": "metainfo.source", "pk": 1962, "fields": {"orig_filename": "Spreng_Anton_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 48f.", "author": "", "orig_id": 1428994}}, {"model": "metainfo.source", "pk": 1963, "fields": {"orig_filename": "Springer_Adalbert_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 50", "author": "", "orig_id": 1429052}}, {"model": "metainfo.source", "pk": 1964, "fields": {"orig_filename": "Springer_Adolf_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55", "author": "", "orig_id": 1469855}}, {"model": "metainfo.source", "pk": 1965, "fields": {"orig_filename": "Springer_Alfred_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429053}}, {"model": "metainfo.source", "pk": 1966, "fields": {"orig_filename": "Springer_Anton-Heinrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 50f.", "author": "", "orig_id": 1429079}}, {"model": "metainfo.source", "pk": 1967, "fields": {"orig_filename": "Springer_Franz_1791_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 51f.", "author": "", "orig_id": 1429085}}, {"model": "metainfo.source", "pk": 1968, "fields": {"orig_filename": "Springer_Gustav_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429088}}, {"model": "metainfo.source", "pk": 1969, "fields": {"orig_filename": "Springer_Gustav_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53", "author": "", "orig_id": 1429089}}, {"model": "metainfo.source", "pk": 1970, "fields": {"orig_filename": "Springer_Hermann_1845_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52", "author": "", "orig_id": 1429090}}, {"model": "metainfo.source", "pk": 1971, "fields": {"orig_filename": "Springer_Hugo_1873_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 52f.", "author": "", "orig_id": 1429133}}, {"model": "metainfo.source", "pk": 1972, "fields": {"orig_filename": "Springer_Johann_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53f.", "author": "", "orig_id": 1429136}}, {"model": "metainfo.source", "pk": 1973, "fields": {"orig_filename": "Springer_Johann_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 53", "author": "", "orig_id": 1429176}}, {"model": "metainfo.source", "pk": 1974, "fields": {"orig_filename": "Springer_Max_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 54", "author": "", "orig_id": 1429184}}, {"model": "metainfo.source", "pk": 1975, "fields": {"orig_filename": "Springer_Sidonie_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 54f.", "author": "", "orig_id": 1429188}}, {"model": "metainfo.source", "pk": 1976, "fields": {"orig_filename": "Springer_Sigmund_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55", "author": "", "orig_id": 1429189}}, {"model": "metainfo.source", "pk": 1977, "fields": {"orig_filename": "Sprinzl_Josef_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 55f.", "author": "", "orig_id": 1429291}}, {"model": "metainfo.source", "pk": 1978, "fields": {"orig_filename": "Sprung_Franz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 56", "author": "", "orig_id": 1428547}}, {"model": "metainfo.source", "pk": 1979, "fields": {"orig_filename": "Spurny_Athanasius-A-S-Sophia_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 56f.", "author": "", "orig_id": 1470902}}, {"model": "metainfo.source", "pk": 1980, "fields": {"orig_filename": "Spurzheim_Johann-Christoph_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57", "author": "", "orig_id": 1470900}}, {"model": "metainfo.source", "pk": 1981, "fields": {"orig_filename": "Spurzheim_Karl_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57", "author": "", "orig_id": 1428589}}, {"model": "metainfo.source", "pk": 1982, "fields": {"orig_filename": "Squarcina_Giovanni_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 57f.", "author": "", "orig_id": 1428594}}, {"model": "metainfo.source", "pk": 1983, "fields": {"orig_filename": "Sramko_Paul_1743_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 58", "author": "", "orig_id": 1465729}}, {"model": "metainfo.source", "pk": 1984, "fields": {"orig_filename": "Srbik_Robert_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59f.", "author": "", "orig_id": 1428603}}, {"model": "metainfo.source", "pk": 1985, "fields": {"orig_filename": "Srbova_Anna_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 60f.", "author": "", "orig_id": 1428604}}, {"model": "metainfo.source", "pk": 1986, "fields": {"orig_filename": "Srb_Adolf_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 58f.", "author": "", "orig_id": 1429248}}, {"model": "metainfo.source", "pk": 1987, "fields": {"orig_filename": "Srb_Josef_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59", "author": "", "orig_id": 1429253}}, {"model": "metainfo.source", "pk": 1988, "fields": {"orig_filename": "Srb_Vladimir_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 59", "author": "", "orig_id": 1429251}}, {"model": "metainfo.source", "pk": 1989, "fields": {"orig_filename": "Srdinko_Frantisek_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 61", "author": "", "orig_id": 1428645}}, {"model": "metainfo.source", "pk": 1990, "fields": {"orig_filename": "Srdinko_Hynek_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62", "author": "", "orig_id": 1428646}}, {"model": "metainfo.source", "pk": 1991, "fields": {"orig_filename": "Srdinko_Otakar_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 61f.", "author": "", "orig_id": 1428647}}, {"model": "metainfo.source", "pk": 1992, "fields": {"orig_filename": "Srna_Carl_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62", "author": "", "orig_id": 1428656}}, {"model": "metainfo.source", "pk": 1993, "fields": {"orig_filename": "Srobar_Vavro_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 62f.", "author": "", "orig_id": 1428660}}, {"model": "metainfo.source", "pk": 1994, "fields": {"orig_filename": "Srom_Frantisek_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 63", "author": "", "orig_id": 1428747}}, {"model": "metainfo.source", "pk": 1995, "fields": {"orig_filename": "Srutek_Josef-Anton_1822_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 63f.", "author": "", "orig_id": 1428779}}, {"model": "metainfo.source", "pk": 1996, "fields": {"orig_filename": "Stabinger_Ferdinand_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64", "author": "", "orig_id": 1428788}}, {"model": "metainfo.source", "pk": 1997, "fields": {"orig_filename": "Stacherski_Antoni-Wladyslaw_1831_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 66f.", "author": "", "orig_id": 1428823}}, {"model": "metainfo.source", "pk": 1998, "fields": {"orig_filename": "Stache_Friedrich-August_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 65f.", "author": "", "orig_id": 1428792}}, {"model": "metainfo.source", "pk": 1999, "fields": {"orig_filename": "Stache_Karl-Heinrich-Hector-Guido_1833_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 66", "author": "", "orig_id": 1428822}}, {"model": "metainfo.source", "pk": 2000, "fields": {"orig_filename": "Stachiewicz_Piotr_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 67", "author": "", "orig_id": 1467159}}, {"model": "metainfo.source", "pk": 2001, "fields": {"orig_filename": "Stachowicz_Michal-Franciszek_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 67f.", "author": "", "orig_id": 1428867}}, {"model": "metainfo.source", "pk": 2002, "fields": {"orig_filename": "Stachowicz_Teodor-Baltazar_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68", "author": "", "orig_id": 1470901}}, {"model": "metainfo.source", "pk": 2003, "fields": {"orig_filename": "Stach_Friedrich_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64", "author": "", "orig_id": 1426845}}, {"model": "metainfo.source", "pk": 2004, "fields": {"orig_filename": "Stach_Vaclav_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 64f.", "author": "", "orig_id": 1428789}}, {"model": "metainfo.source", "pk": 2005, "fields": {"orig_filename": "Stadion-Thannhausen_Emerich_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68", "author": "", "orig_id": 1428874}}, {"model": "metainfo.source", "pk": 2006, "fields": {"orig_filename": "Stadion-Thannhausen_Philipp-Franz_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 68f.", "author": "", "orig_id": 1428877}}, {"model": "metainfo.source", "pk": 2007, "fields": {"orig_filename": "Stadion-Warthausen_Franz_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 69", "author": "", "orig_id": 1428878}}, {"model": "metainfo.source", "pk": 2008, "fields": {"orig_filename": "Stadion-Warthausen_Johann-Philipp-Karl_1763_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 69f.", "author": "", "orig_id": 1428879}}, {"model": "metainfo.source", "pk": 2009, "fields": {"orig_filename": "Stadler_Albert_1794_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 71f.", "author": "", "orig_id": 1428969}}, {"model": "metainfo.source", "pk": 2010, "fields": {"orig_filename": "Stadler_Alfred_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72", "author": "", "orig_id": 1428970}}, {"model": "metainfo.source", "pk": 2011, "fields": {"orig_filename": "Stadler_Alois-Martin_1792_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72", "author": "", "orig_id": 1428971}}, {"model": "metainfo.source", "pk": 2012, "fields": {"orig_filename": "Stadler_Arthur_1892_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 72f.", "author": "", "orig_id": 1428976}}, {"model": "metainfo.source", "pk": 2013, "fields": {"orig_filename": "Stadler_Dominik_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 73", "author": "", "orig_id": 1429014}}, {"model": "metainfo.source", "pk": 2014, "fields": {"orig_filename": "Stadler_Josef_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 73f.", "author": "", "orig_id": 1429026}}, {"model": "metainfo.source", "pk": 2015, "fields": {"orig_filename": "Soretic_Theodor_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430f.", "author": "", "orig_id": 1457376}}, {"model": "metainfo.source", "pk": 2016, "fields": {"orig_filename": "Sorgato_Antonio-Maria_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431", "author": "", "orig_id": 1439094}}, {"model": "metainfo.source", "pk": 2017, "fields": {"orig_filename": "Sorgo_Josef_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 431f.", "author": "", "orig_id": 1439198}}, {"model": "metainfo.source", "pk": 2018, "fields": {"orig_filename": "Sorsich-Severin_Adalbert_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432", "author": "", "orig_id": 1439214}}, {"model": "metainfo.source", "pk": 2019, "fields": {"orig_filename": "Soster_Bartolomeo_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432", "author": "", "orig_id": 1438313}}, {"model": "metainfo.source", "pk": 2020, "fields": {"orig_filename": "Soterius-Sachsenheim_Arthur_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 432f.", "author": "", "orig_id": 1439215}}, {"model": "metainfo.source", "pk": 2021, "fields": {"orig_filename": "Sothen_Johann-Carl_1823_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433", "author": "", "orig_id": 1438319}}, {"model": "metainfo.source", "pk": 2022, "fields": {"orig_filename": "Sotriffer_Christian_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434", "author": "", "orig_id": 1463764}}, {"model": "metainfo.source", "pk": 2023, "fields": {"orig_filename": "Sotriffer_Johann-Jakob_1796_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433f.", "author": "", "orig_id": 1438322}}, {"model": "metainfo.source", "pk": 2024, "fields": {"orig_filename": "Sotriffer_Joseph_1802_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 433f.", "author": "", "orig_id": 1463763}}, {"model": "metainfo.source", "pk": 2025, "fields": {"orig_filename": "Soucek_Stanislav_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434", "author": "", "orig_id": 1438333}}, {"model": "metainfo.source", "pk": 2026, "fields": {"orig_filename": "Soukup_Frantisek_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 434f.", "author": "", "orig_id": 1438372}}, {"model": "metainfo.source", "pk": 2027, "fields": {"orig_filename": "Soulavy_Ottokar_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 435", "author": "", "orig_id": 1454266}}, {"model": "metainfo.source", "pk": 2028, "fields": {"orig_filename": "Sourek_Antonin-Vaclav_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 435f.", "author": "", "orig_id": 1438389}}, {"model": "metainfo.source", "pk": 2029, "fields": {"orig_filename": "Souvan_Ferdinand_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1456643}}, {"model": "metainfo.source", "pk": 2030, "fields": {"orig_filename": "Souvan_Ferdinand_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1464310}}, {"model": "metainfo.source", "pk": 2031, "fields": {"orig_filename": "Souvan_Franc-Ks_1799_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1438439}}, {"model": "metainfo.source", "pk": 2032, "fields": {"orig_filename": "Souvan_Franc-Ks_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436", "author": "", "orig_id": 1438440}}, {"model": "metainfo.source", "pk": 2033, "fields": {"orig_filename": "Sova_Antonin_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 436f.", "author": "", "orig_id": 1438442}}, {"model": "metainfo.source", "pk": 2034, "fields": {"orig_filename": "Sowinski_Ignaz_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438449}}, {"model": "metainfo.source", "pk": 2035, "fields": {"orig_filename": "Soxhlet_Felix_1804_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437f.", "author": "", "orig_id": 1438507}}, {"model": "metainfo.source", "pk": 2036, "fields": {"orig_filename": "Soxhlet_Hubert__1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 437", "author": "", "orig_id": 1438509}}, {"model": "metainfo.source", "pk": 2037, "fields": {"orig_filename": "Soyfer_Jura_1912_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 438f.", "author": "", "orig_id": 1438512}}, {"model": "metainfo.source", "pk": 2038, "fields": {"orig_filename": "Soyka_Isidor_1850_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 439f.", "author": "", "orig_id": 1438514}}, {"model": "metainfo.source", "pk": 2039, "fields": {"orig_filename": "Soyka_Viktor_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440", "author": "", "orig_id": 1438519}}, {"model": "metainfo.source", "pk": 2040, "fields": {"orig_filename": "Spacek_Richard_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440", "author": "", "orig_id": 1426611}}, {"model": "metainfo.source", "pk": 2041, "fields": {"orig_filename": "Spacil_Jan_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 440f.", "author": "", "orig_id": 1426615}}, {"model": "metainfo.source", "pk": 2042, "fields": {"orig_filename": "Spaengler_Alois_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 441", "author": "", "orig_id": 1426617}}, {"model": "metainfo.source", "pk": 2043, "fields": {"orig_filename": "Spaengler_Alois_1824_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 441f.", "author": "", "orig_id": 1426618}}, {"model": "metainfo.source", "pk": 2044, "fields": {"orig_filename": "Spaengler_Carl_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 442", "author": "", "orig_id": 1426702}}, {"model": "metainfo.source", "pk": 2045, "fields": {"orig_filename": "Spaengler_Ludwig_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 442f.", "author": "", "orig_id": 1426706}}, {"model": "metainfo.source", "pk": 2046, "fields": {"orig_filename": "Spaengler_Rudolf_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 443", "author": "", "orig_id": 1426707}}, {"model": "metainfo.source", "pk": 2047, "fields": {"orig_filename": "Spaeter_Carl_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 443f.", "author": "", "orig_id": 1426709}}, {"model": "metainfo.source", "pk": 2048, "fields": {"orig_filename": "Spaeth_Ernst_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 444", "author": "", "orig_id": 1426754}}, {"model": "metainfo.source", "pk": 2049, "fields": {"orig_filename": "Spaeth_Franz-Xav_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 444f.", "author": "", "orig_id": 1426755}}, {"model": "metainfo.source", "pk": 2050, "fields": {"orig_filename": "Spaeth_Josef_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 445", "author": "", "orig_id": 1426758}}, {"model": "metainfo.source", "pk": 2051, "fields": {"orig_filename": "Spala_Vaclav_1885_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 446", "author": "", "orig_id": 1426817}}, {"model": "metainfo.source", "pk": 2052, "fields": {"orig_filename": "Spalowsky_Franz_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 446f.", "author": "", "orig_id": 1448627}}, {"model": "metainfo.source", "pk": 2053, "fields": {"orig_filename": "Spandl_Hermann_1899_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 447", "author": "", "orig_id": 1458549}}, {"model": "metainfo.source", "pk": 2054, "fields": {"orig_filename": "Spannagel_Rudolf_1866_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 448", "author": "", "orig_id": 1426154}}, {"model": "metainfo.source", "pk": 2055, "fields": {"orig_filename": "Spanner_Anton-Carl_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1", "author": "", "orig_id": 1426326}}, {"model": "metainfo.source", "pk": 2056, "fields": {"orig_filename": "Spannocchi_Lelio_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1", "author": "", "orig_id": 1426334}}, {"model": "metainfo.source", "pk": 2057, "fields": {"orig_filename": "Spannocchi_Peter-Leopold_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 1f.", "author": "", "orig_id": 1426336}}, {"model": "metainfo.source", "pk": 2058, "fields": {"orig_filename": "Spannring_Hubert_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 2", "author": "", "orig_id": 1426381}}, {"model": "metainfo.source", "pk": 2059, "fields": {"orig_filename": "Spann_Othmar_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 447f.", "author": "", "orig_id": 1426924}}, {"model": "metainfo.source", "pk": 2060, "fields": {"orig_filename": "Spanyik_Glycer_1781_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3", "author": "", "orig_id": 1426389}}, {"model": "metainfo.source", "pk": 2061, "fields": {"orig_filename": "Spanyik_Kornel_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3", "author": "", "orig_id": 1426391}}, {"model": "metainfo.source", "pk": 2062, "fields": {"orig_filename": "Spanyi_Bela_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 2f.", "author": "", "orig_id": 1426386}}, {"model": "metainfo.source", "pk": 2063, "fields": {"orig_filename": "Sparber_Josaphat_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 3f.", "author": "", "orig_id": 1426434}}, {"model": "metainfo.source", "pk": 2064, "fields": {"orig_filename": "Spatny_Frantisek_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 4", "author": "", "orig_id": 1426487}}, {"model": "metainfo.source", "pk": 2065, "fields": {"orig_filename": "Spatzenegger_Leopold_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 4f.", "author": "", "orig_id": 1426576}}, {"model": "metainfo.source", "pk": 2066, "fields": {"orig_filename": "Spatzier_Johann-Nep-Florian_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 5", "author": "", "orig_id": 1426578}}, {"model": "metainfo.source", "pk": 2067, "fields": {"orig_filename": "Spaun_Anton_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 5f.", "author": "", "orig_id": 1426581}}, {"model": "metainfo.source", "pk": 2068, "fields": {"orig_filename": "Spaun_Franz-Anton_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 6", "author": "", "orig_id": 1426584}}, {"model": "metainfo.source", "pk": 2069, "fields": {"orig_filename": "Spaun_Hermann_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 6f.", "author": "", "orig_id": 1426586}}, {"model": "metainfo.source", "pk": 2070, "fields": {"orig_filename": "Spaun_Josef_1788_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7", "author": "", "orig_id": 1426621}}, {"model": "metainfo.source", "pk": 2071, "fields": {"orig_filename": "Spaun_Marie_1795_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7", "author": "", "orig_id": 1426627}}, {"model": "metainfo.source", "pk": 2072, "fields": {"orig_filename": "Spaun_Max_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 7f.", "author": "", "orig_id": 1426629}}, {"model": "metainfo.source", "pk": 2073, "fields": {"orig_filename": "Spaur_Friedrich-Franz-Joseph_1756_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 8", "author": "", "orig_id": 1426669}}, {"model": "metainfo.source", "pk": 2074, "fields": {"orig_filename": "Spaur_Marie_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 8f.", "author": "", "orig_id": 1426625}}, {"model": "metainfo.source", "pk": 2075, "fields": {"orig_filename": "Spaur_Philipp_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9", "author": "", "orig_id": 1426714}}, {"model": "metainfo.source", "pk": 2076, "fields": {"orig_filename": "Spechtenhauser_Johann-Bapt_1760_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 10f.", "author": "", "orig_id": 1426766}}, {"model": "metainfo.source", "pk": 2077, "fields": {"orig_filename": "Specht_Josef-Anton_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9f.", "author": "", "orig_id": 1451940}}, {"model": "metainfo.source", "pk": 2078, "fields": {"orig_filename": "Specht_Richard_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 10", "author": "", "orig_id": 1426762}}, {"model": "metainfo.source", "pk": 2079, "fields": {"orig_filename": "Spech_Johann_1767_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 9", "author": "", "orig_id": 1426725}}, {"model": "metainfo.source", "pk": 2080, "fields": {"orig_filename": "Speckbacher_Andreas_1798_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 11", "author": "", "orig_id": 1426771}}, {"model": "metainfo.source", "pk": 2081, "fields": {"orig_filename": "Speckbacher_Caspar_1819_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 11f.", "author": "", "orig_id": 1426772}}, {"model": "metainfo.source", "pk": 2082, "fields": {"orig_filename": "Speckbacher_Josef_1767_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 12", "author": "", "orig_id": 1426820}}, {"model": "metainfo.source", "pk": 2083, "fields": {"orig_filename": "Speckmoser_Ulrich_1781_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 12f.", "author": "", "orig_id": 1426824}}, {"model": "metainfo.source", "pk": 2084, "fields": {"orig_filename": "Specz-Ladhaza_Rudolf_1798_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 13", "author": "", "orig_id": 1426826}}, {"model": "metainfo.source", "pk": 2085, "fields": {"orig_filename": "Speidel-Haeberle_Else_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 14", "author": "", "orig_id": 1426829}}, {"model": "metainfo.source", "pk": 2086, "fields": {"orig_filename": "Speidel_Ludwig_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 13f.", "author": "", "orig_id": 1426828}}, {"model": "metainfo.source", "pk": 2087, "fields": {"orig_filename": "Speiser_Paul_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 14f.", "author": "", "orig_id": 1426873}}, {"model": "metainfo.source", "pk": 2088, "fields": {"orig_filename": "Spendou_Joseph_1757_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 15", "author": "", "orig_id": 1426878}}, {"model": "metainfo.source", "pk": 2089, "fields": {"orig_filename": "Spens-Booden_Alois_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 15f.", "author": "", "orig_id": 1426925}}, {"model": "metainfo.source", "pk": 2090, "fields": {"orig_filename": "Spens-Booden_Emanuel_1831_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 16", "author": "", "orig_id": 1437146}}, {"model": "metainfo.source", "pk": 2091, "fields": {"orig_filename": "Sperber_Hugo_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 16f.", "author": "", "orig_id": 1426935}}, {"model": "metainfo.source", "pk": 2092, "fields": {"orig_filename": "Sperk_Bernhard_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 17", "author": "", "orig_id": 1426167}}, {"model": "metainfo.source", "pk": 2093, "fields": {"orig_filename": "Speyer_Agnes_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 17f.", "author": "", "orig_id": 1426287}}, {"model": "metainfo.source", "pk": 2094, "fields": {"orig_filename": "Spezger_Carl_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18", "author": "", "orig_id": 1426284}}, {"model": "metainfo.source", "pk": 2095, "fields": {"orig_filename": "Spidlen_Frantisek_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18", "author": "", "orig_id": 1426292}}, {"model": "metainfo.source", "pk": 2096, "fields": {"orig_filename": "Spiegelfeld_Markus_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20f.", "author": "", "orig_id": 1426493}}, {"model": "metainfo.source", "pk": 2097, "fields": {"orig_filename": "Spiegel_Emil_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20", "author": "", "orig_id": 1426343}}, {"model": "metainfo.source", "pk": 2098, "fields": {"orig_filename": "Spiegel_Frigyes_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 18f.", "author": "", "orig_id": 1454339}}, {"model": "metainfo.source", "pk": 2099, "fields": {"orig_filename": "Spiegel_Kaethe_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 19", "author": "", "orig_id": 1438181}}, {"model": "metainfo.source", "pk": 2100, "fields": {"orig_filename": "Spiegel_Ludwig_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 19f.", "author": "", "orig_id": 1426442}}, {"model": "metainfo.source", "pk": 2101, "fields": {"orig_filename": "Spiegel_Magda_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 20", "author": "", "orig_id": 1426400}}, {"model": "metainfo.source", "pk": 2102, "fields": {"orig_filename": "Spiegl-Thurnsee_Edgar_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 21", "author": "", "orig_id": 1426342}}, {"model": "metainfo.source", "pk": 2103, "fields": {"orig_filename": "Spiegl-Thurnsee_Edgar_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 21f.", "author": "", "orig_id": 1426500}}, {"model": "metainfo.source", "pk": 2104, "fields": {"orig_filename": "Spiegler_Eduard_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 22", "author": "", "orig_id": 1426502}}, {"model": "metainfo.source", "pk": 2105, "fields": {"orig_filename": "Spielmann_Emmerich_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1469652}}, {"model": "metainfo.source", "pk": 2106, "fields": {"orig_filename": "Spielmann_Ferdinand_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23", "author": "", "orig_id": 1470620}}, {"model": "metainfo.source", "pk": 2107, "fields": {"orig_filename": "Spielmann_Johann_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 23f.", "author": "", "orig_id": 1426840}}, {"model": "metainfo.source", "pk": 2108, "fields": {"orig_filename": "Spielmann_Julius_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 24", "author": "", "orig_id": 1426842}}, {"model": "metainfo.source", "pk": 2109, "fields": {"orig_filename": "Spielmann_Julius_1872_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 24f.", "author": "", "orig_id": 1426844}}, {"model": "metainfo.source", "pk": 2110, "fields": {"orig_filename": "Spielmann_Leopold_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25", "author": "", "orig_id": 1426884}}, {"model": "metainfo.source", "pk": 2111, "fields": {"orig_filename": "Spielmann_Melanie_1885_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25", "author": "", "orig_id": 1426886}}, {"model": "metainfo.source", "pk": 2112, "fields": {"orig_filename": "Spielmann_Rudolf_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 25f.", "author": "", "orig_id": 1426889}}, {"model": "metainfo.source", "pk": 2113, "fields": {"orig_filename": "Spiess_Friedrich-Wilhelm_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 26f.", "author": "", "orig_id": 1426940}}, {"model": "metainfo.source", "pk": 2114, "fields": {"orig_filename": "Sobitschka_Coelestin_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387", "author": "", "orig_id": 1439351}}, {"model": "metainfo.source", "pk": 2115, "fields": {"orig_filename": "Sobota_Emil_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387f.", "author": "", "orig_id": 1461518}}, {"model": "metainfo.source", "pk": 2116, "fields": {"orig_filename": "Sobotka_Benedikt_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 388", "author": "", "orig_id": 1439420}}, {"model": "metainfo.source", "pk": 2117, "fields": {"orig_filename": "Sobotka_Jan_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 388f.", "author": "", "orig_id": 1439494}}, {"model": "metainfo.source", "pk": 2118, "fields": {"orig_filename": "Sobotka_Primus_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 389", "author": "", "orig_id": 1457815}}, {"model": "metainfo.source", "pk": 2119, "fields": {"orig_filename": "Sobo_Jenoe_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 387", "author": "", "orig_id": 1439416}}, {"model": "metainfo.source", "pk": 2120, "fields": {"orig_filename": "Sochaniewicz_Kazimierz-Roman_1892_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 390", "author": "", "orig_id": 1438414}}, {"model": "metainfo.source", "pk": 2121, "fields": {"orig_filename": "Sochan_Pavol_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 389f.", "author": "", "orig_id": 1438413}}, {"model": "metainfo.source", "pk": 2122, "fields": {"orig_filename": "Sochor-Friedrichsthal_Eduard_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 391f.", "author": "", "orig_id": 1438472}}, {"model": "metainfo.source", "pk": 2123, "fields": {"orig_filename": "Sochor-Friedrichsthal_Eduard_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1468177}}, {"model": "metainfo.source", "pk": 2124, "fields": {"orig_filename": "Sochor-Friedrichsthal_Friedrich_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1438473}}, {"model": "metainfo.source", "pk": 2125, "fields": {"orig_filename": "Sochor_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 390f.", "author": "", "orig_id": 1457811}}, {"model": "metainfo.source", "pk": 2126, "fields": {"orig_filename": "Sochor_Vaclav_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 391", "author": "", "orig_id": 1438470}}, {"model": "metainfo.source", "pk": 2127, "fields": {"orig_filename": "Socin_Constantino_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392", "author": "", "orig_id": 1438475}}, {"model": "metainfo.source", "pk": 2128, "fields": {"orig_filename": "Sockl_Clara-Adelheid_1822_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 393", "author": "", "orig_id": 1438316}}, {"model": "metainfo.source", "pk": 2129, "fields": {"orig_filename": "Sockl_Theodor-Benedikt_1815_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 392f.", "author": "", "orig_id": 1438477}}, {"model": "metainfo.source", "pk": 2130, "fields": {"orig_filename": "Soczynski_Karol-Teodor_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 393f.", "author": "", "orig_id": 1438478}}, {"model": "metainfo.source", "pk": 2131, "fields": {"orig_filename": "Soelder-Prakenstein_Friedrich_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394", "author": "", "orig_id": 1438485}}, {"model": "metainfo.source", "pk": 2132, "fields": {"orig_filename": "Soellner_Elisabeth_1776_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394f.", "author": "", "orig_id": 1438538}}, {"model": "metainfo.source", "pk": 2133, "fields": {"orig_filename": "Soellner_Johann_1769_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 394", "author": "", "orig_id": 1461776}}, {"model": "metainfo.source", "pk": 2134, "fields": {"orig_filename": "Soeser_Ferdinand-Leopold_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395", "author": "", "orig_id": 1438546}}, {"model": "metainfo.source", "pk": 2135, "fields": {"orig_filename": "Soeser_Maximilian_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395", "author": "", "orig_id": 1438547}}, {"model": "metainfo.source", "pk": 2136, "fields": {"orig_filename": "Soffe_Emil-Ludwig_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 395f.", "author": "", "orig_id": 1438551}}, {"model": "metainfo.source", "pk": 2137, "fields": {"orig_filename": "Sogni_Giuseppe_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 396", "author": "", "orig_id": 1438611}}, {"model": "metainfo.source", "pk": 2138, "fields": {"orig_filename": "Sohm_Bonifaz_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 396f.", "author": "", "orig_id": 1438619}}, {"model": "metainfo.source", "pk": 2139, "fields": {"orig_filename": "Sojer_Johannes-Kapistran_1798_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397", "author": "", "orig_id": 1438676}}, {"model": "metainfo.source", "pk": 2140, "fields": {"orig_filename": "Sojka_Jan-Erazim_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397", "author": "", "orig_id": 1438681}}, {"model": "metainfo.source", "pk": 2141, "fields": {"orig_filename": "Sojka_Mathias_1740_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 397f.", "author": "", "orig_id": 1438682}}, {"model": "metainfo.source", "pk": 2142, "fields": {"orig_filename": "Sokcevic_Josip_1811_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 398", "author": "", "orig_id": 1438686}}, {"model": "metainfo.source", "pk": 2143, "fields": {"orig_filename": "Sokolar_Franz_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401", "author": "", "orig_id": 1438778}}, {"model": "metainfo.source", "pk": 2144, "fields": {"orig_filename": "Sokoltuma_Frantisek_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401", "author": "", "orig_id": 1463423}}, {"model": "metainfo.source", "pk": 2145, "fields": {"orig_filename": "Sokol_Antonin-H_1847_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 398f.", "author": "", "orig_id": 1438732}}, {"model": "metainfo.source", "pk": 2146, "fields": {"orig_filename": "Sokol_Bernardin_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399", "author": "", "orig_id": 1438733}}, {"model": "metainfo.source", "pk": 2147, "fields": {"orig_filename": "Sokol_Frantisek_1779_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399", "author": "", "orig_id": 1438734}}, {"model": "metainfo.source", "pk": 2148, "fields": {"orig_filename": "Sokol_Josef-Vendelin_1821_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 399f.", "author": "", "orig_id": 1438736}}, {"model": "metainfo.source", "pk": 2149, "fields": {"orig_filename": "Sokol_Karel-Stanislav_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 400", "author": "", "orig_id": 1438738}}, {"model": "metainfo.source", "pk": 2150, "fields": {"orig_filename": "Sokol_Rudolf_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 400f.", "author": "", "orig_id": 1438739}}, {"model": "metainfo.source", "pk": 2151, "fields": {"orig_filename": "Sokopp_Johann_1913_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 401f.", "author": "", "orig_id": 1438785}}, {"model": "metainfo.source", "pk": 2152, "fields": {"orig_filename": "Solc_Jindrich_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402", "author": "", "orig_id": 1438846}}, {"model": "metainfo.source", "pk": 2153, "fields": {"orig_filename": "Solc_Vaclav_1838_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402", "author": "", "orig_id": 1438847}}, {"model": "metainfo.source", "pk": 2154, "fields": {"orig_filename": "Solecki-Ostoja_Lukasz_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 402f.", "author": "", "orig_id": 1438893}}, {"model": "metainfo.source", "pk": 2155, "fields": {"orig_filename": "Solerti_Luigi_1846_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 403", "author": "", "orig_id": 1438896}}, {"model": "metainfo.source", "pk": 2156, "fields": {"orig_filename": "Solin_Josef-Marcell_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 403f.", "author": "", "orig_id": 1438897}}, {"model": "metainfo.source", "pk": 2157, "fields": {"orig_filename": "Solitro_Giulio_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404", "author": "", "orig_id": 1438818}}, {"model": "metainfo.source", "pk": 2158, "fields": {"orig_filename": "Solitro_Vincenzo_1820_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404", "author": "", "orig_id": 1438820}}, {"model": "metainfo.source", "pk": 2159, "fields": {"orig_filename": "Sollinger_Johann-Paul_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 404f.", "author": "", "orig_id": 1438901}}, {"model": "metainfo.source", "pk": 2160, "fields": {"orig_filename": "Solomonica_Alexander_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 405", "author": "", "orig_id": 1440865}}, {"model": "metainfo.source", "pk": 2161, "fields": {"orig_filename": "Soltesz_Andreas_1802_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 405f.", "author": "", "orig_id": 1438948}}, {"model": "metainfo.source", "pk": 2162, "fields": {"orig_filename": "Soltesz_Janos_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406", "author": "", "orig_id": 1438952}}, {"model": "metainfo.source", "pk": 2163, "fields": {"orig_filename": "Soltesz_Miksa_1830_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406", "author": "", "orig_id": 1438953}}, {"model": "metainfo.source", "pk": 2164, "fields": {"orig_filename": "Soltys_Mieczyslaw-Tadeusz_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 406f.", "author": "", "orig_id": 1438960}}, {"model": "metainfo.source", "pk": 2165, "fields": {"orig_filename": "Somaini_Francesco_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 407", "author": "", "orig_id": 1438964}}, {"model": "metainfo.source", "pk": 2166, "fields": {"orig_filename": "Somerau-Beeckh_Maximilian-Joseph-Gottfried_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 408", "author": "", "orig_id": 1438430}}, {"model": "metainfo.source", "pk": 2167, "fields": {"orig_filename": "Somer_Karl_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 407f.", "author": "", "orig_id": 1438361}}, {"model": "metainfo.source", "pk": 2168, "fields": {"orig_filename": "Sommariva_Giovanni-Battista_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 409f.", "author": "", "orig_id": 1439026}}, {"model": "metainfo.source", "pk": 2169, "fields": {"orig_filename": "Sommariva_Hannibal_1755_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410", "author": "", "orig_id": 1438765}}, {"model": "metainfo.source", "pk": 2170, "fields": {"orig_filename": "Sommaruga_Erwin-Franz_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410", "author": "", "orig_id": 1439028}}, {"model": "metainfo.source", "pk": 2171, "fields": {"orig_filename": "Sommaruga_Franz-Philipp_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 410f.", "author": "", "orig_id": 1439072}}, {"model": "metainfo.source", "pk": 2172, "fields": {"orig_filename": "Sommaruga_Franz-Vincenz-Emanuel_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 411f.", "author": "", "orig_id": 1439029}}, {"model": "metainfo.source", "pk": 2173, "fields": {"orig_filename": "Sommaruga_Guido_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 411", "author": "", "orig_id": 1439073}}, {"model": "metainfo.source", "pk": 2174, "fields": {"orig_filename": "Somma_Antonio_1809_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 408f.", "author": "", "orig_id": 1438813}}, {"model": "metainfo.source", "pk": 2175, "fields": {"orig_filename": "Sommerfeld_Wilhelm_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416", "author": "", "orig_id": 1438495}}, {"model": "metainfo.source", "pk": 2176, "fields": {"orig_filename": "Sommer_Emil_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 412", "author": "", "orig_id": 1439131}}, {"model": "metainfo.source", "pk": 2177, "fields": {"orig_filename": "Sommer_Franz_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 412f.", "author": "", "orig_id": 1439135}}, {"model": "metainfo.source", "pk": 2178, "fields": {"orig_filename": "Sommer_Johann-Gottfried_1783_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 413", "author": "", "orig_id": 1427491}}, {"model": "metainfo.source", "pk": 2179, "fields": {"orig_filename": "Sommer_Josef-Heinrich_1888_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 413f.", "author": "", "orig_id": 1438307}}, {"model": "metainfo.source", "pk": 2180, "fields": {"orig_filename": "Sommer_Leopold_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 414", "author": "", "orig_id": 1438363}}, {"model": "metainfo.source", "pk": 2181, "fields": {"orig_filename": "Sommer_Otakar_1885_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 414f.", "author": "", "orig_id": 1438365}}, {"model": "metainfo.source", "pk": 2182, "fields": {"orig_filename": "Sommer_Rudolf_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 415", "author": "", "orig_id": 1438425}}, {"model": "metainfo.source", "pk": 2183, "fields": {"orig_filename": "Sommer_Rudolf_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 415f.", "author": "", "orig_id": 1438426}}, {"model": "metainfo.source", "pk": 2184, "fields": {"orig_filename": "Somogyi-Csizmazia_Alexander_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1438505}}, {"model": "metainfo.source", "pk": 2185, "fields": {"orig_filename": "Somogyi-Csizmazia_Barbara_1780_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1462380}}, {"model": "metainfo.source", "pk": 2186, "fields": {"orig_filename": "Somogyi-Csizmazia_Karl_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416f.", "author": "", "orig_id": 1438556}}, {"model": "metainfo.source", "pk": 2187, "fields": {"orig_filename": "Somogyi_Ede_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 416", "author": "", "orig_id": 1454261}}, {"model": "metainfo.source", "pk": 2188, "fields": {"orig_filename": "Somos_Istvan-Balint_1893_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417", "author": "", "orig_id": 1438560}}, {"model": "metainfo.source", "pk": 2189, "fields": {"orig_filename": "Somssich-Saard_Jozsef_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418", "author": "", "orig_id": 1438629}}, {"model": "metainfo.source", "pk": 2190, "fields": {"orig_filename": "Somssich_Miklos_1784_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418", "author": "", "orig_id": 1438568}}, {"model": "metainfo.source", "pk": 2191, "fields": {"orig_filename": "Somssich_Pal_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 417f.", "author": "", "orig_id": 1438569}}, {"model": "metainfo.source", "pk": 2192, "fields": {"orig_filename": "Sondermann_Franz-Wilhelm_1787_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 418f.", "author": "", "orig_id": 1438634}}, {"model": "metainfo.source", "pk": 2193, "fields": {"orig_filename": "Sonklar-Innstaedten_Karl-Albrecht_1816_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 419f.", "author": "", "orig_id": 1438638}}, {"model": "metainfo.source", "pk": 2194, "fields": {"orig_filename": "Sonnenfeld_Kurt_1893_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421", "author": "", "orig_id": 1438752}}, {"model": "metainfo.source", "pk": 2195, "fields": {"orig_filename": "Sonnenfeld_Michael_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421", "author": "", "orig_id": 1438753}}, {"model": "metainfo.source", "pk": 2196, "fields": {"orig_filename": "Sonnenfeld_Zsigmond_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 421f.", "author": "", "orig_id": 1438792}}, {"model": "metainfo.source", "pk": 2197, "fields": {"orig_filename": "Sonnenfels_Joseph_1733_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 422f.", "author": "", "orig_id": 1438868}}, {"model": "metainfo.source", "pk": 2198, "fields": {"orig_filename": "Sonnenleiter_Johannes_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 423", "author": "", "orig_id": 1438796}}, {"model": "metainfo.source", "pk": 2199, "fields": {"orig_filename": "Sonnenschein_Adolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 423f.", "author": "", "orig_id": 1438797}}, {"model": "metainfo.source", "pk": 2200, "fields": {"orig_filename": "Sonnenthal_Adolf_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424", "author": "", "orig_id": 1438804}}, {"model": "metainfo.source", "pk": 2201, "fields": {"orig_filename": "Sonnenthal_Hans-Friedrich_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 425", "author": "", "orig_id": 1438850}}, {"model": "metainfo.source", "pk": 2202, "fields": {"orig_filename": "Sonnenthal_Hermine_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424", "author": "", "orig_id": 1438342}}, {"model": "metainfo.source", "pk": 2203, "fields": {"orig_filename": "Sonnenthal_Samuel_1840_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 424f.", "author": "", "orig_id": 1438853}}, {"model": "metainfo.source", "pk": 2204, "fields": {"orig_filename": "Sonne_Abraham_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 420f.", "author": "", "orig_id": 1438697}}, {"model": "metainfo.source", "pk": 2205, "fields": {"orig_filename": "Sonnleithner_Ignaz_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 425f.", "author": "", "orig_id": 1438864}}, {"model": "metainfo.source", "pk": 2206, "fields": {"orig_filename": "Sonnleithner_Joseph-Ferdinand_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 426", "author": "", "orig_id": 1440796}}, {"model": "metainfo.source", "pk": 2207, "fields": {"orig_filename": "Sonnleithner_Leopold_1797_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 426f.", "author": "", "orig_id": 1438912}}, {"model": "metainfo.source", "pk": 2208, "fields": {"orig_filename": "Sonnleithner_Maximilian_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 427", "author": "", "orig_id": 1438913}}, {"model": "metainfo.source", "pk": 2209, "fields": {"orig_filename": "Sonntag_Kunes_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 427f.", "author": "", "orig_id": 1438969}}, {"model": "metainfo.source", "pk": 2210, "fields": {"orig_filename": "Sontag_Henriette_1806_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 428f.", "author": "", "orig_id": 1438976}}, {"model": "metainfo.source", "pk": 2211, "fields": {"orig_filename": "Sonzogno_Edoardo_1836_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 429", "author": "", "orig_id": 1454639}}, {"model": "metainfo.source", "pk": 2212, "fields": {"orig_filename": "Sophie_Friederike_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 429f.", "author": "", "orig_id": 1439038}}, {"model": "metainfo.source", "pk": 2213, "fields": {"orig_filename": "Sopron_Ignaz_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430", "author": "", "orig_id": 1439040}}, {"model": "metainfo.source", "pk": 2214, "fields": {"orig_filename": "Soretic_Franz-De-Paula_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 430f.", "author": "", "orig_id": 1439092}}, {"model": "metainfo.source", "pk": 2215, "fields": {"orig_filename": "Skutetzky_Gustav_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459036}}, {"model": "metainfo.source", "pk": 2216, "fields": {"orig_filename": "Skutetzky_Hubert_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459039}}, {"model": "metainfo.source", "pk": 2217, "fields": {"orig_filename": "Skutetzky_Karl_1886_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342f.", "author": "", "orig_id": 1459040}}, {"model": "metainfo.source", "pk": 2218, "fields": {"orig_filename": "Skutetzky_Wilhelm_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 342", "author": "", "orig_id": 1459037}}, {"model": "metainfo.source", "pk": 2219, "fields": {"orig_filename": "Slabe_Eduard_1816_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343", "author": "", "orig_id": 1459041}}, {"model": "metainfo.source", "pk": 2220, "fields": {"orig_filename": "Sladecek_Rudolf_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343", "author": "", "orig_id": 1459042}}, {"model": "metainfo.source", "pk": 2221, "fields": {"orig_filename": "Sladek_Josef-Vaclav_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 343f.", "author": "", "orig_id": 1459043}}, {"model": "metainfo.source", "pk": 2222, "fields": {"orig_filename": "Sladek_Vaclav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 344", "author": "", "orig_id": 1459044}}, {"model": "metainfo.source", "pk": 2223, "fields": {"orig_filename": "Sladkovic_Andrej_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 344f.", "author": "", "orig_id": 1459045}}, {"model": "metainfo.source", "pk": 2224, "fields": {"orig_filename": "Sladkovsky_Karel_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 345", "author": "", "orig_id": 1459049}}, {"model": "metainfo.source", "pk": 2225, "fields": {"orig_filename": "Slajmer_Eduard_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 345f.", "author": "", "orig_id": 1459122}}, {"model": "metainfo.source", "pk": 2226, "fields": {"orig_filename": "Slama_Anton_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 346", "author": "", "orig_id": 1459123}}, {"model": "metainfo.source", "pk": 2227, "fields": {"orig_filename": "Slama_Frantisek-Josef_1792_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 347", "author": "", "orig_id": 1459130}}, {"model": "metainfo.source", "pk": 2228, "fields": {"orig_filename": "Slama_Frantisek_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 346f.", "author": "", "orig_id": 1459125}}, {"model": "metainfo.source", "pk": 2229, "fields": {"orig_filename": "Slama_Franz_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 347f.", "author": "", "orig_id": 1459132}}, {"model": "metainfo.source", "pk": 2230, "fields": {"orig_filename": "Slamenik_Frantisek_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348", "author": "", "orig_id": 1459133}}, {"model": "metainfo.source", "pk": 2231, "fields": {"orig_filename": "Slansky_Ludwig_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 348f.", "author": "", "orig_id": 1459135}}, {"model": "metainfo.source", "pk": 2232, "fields": {"orig_filename": "Slataper_Scipio_1888_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 349", "author": "", "orig_id": 1459136}}, {"model": "metainfo.source", "pk": 2233, "fields": {"orig_filename": "Slatin_Rudolf_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 350", "author": "", "orig_id": 1456019}}, {"model": "metainfo.source", "pk": 2234, "fields": {"orig_filename": "Slavicek_Antonin_1870_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 350f.", "author": "", "orig_id": 1459139}}, {"model": "metainfo.source", "pk": 2235, "fields": {"orig_filename": "Slavicek_Josef_1818_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 351", "author": "", "orig_id": 1459141}}, {"model": "metainfo.source", "pk": 2236, "fields": {"orig_filename": "Slavici_Ioan_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 351f.", "author": "", "orig_id": 1459142}}, {"model": "metainfo.source", "pk": 2237, "fields": {"orig_filename": "Slavik_Alfred_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 352", "author": "", "orig_id": 1459143}}, {"model": "metainfo.source", "pk": 2238, "fields": {"orig_filename": "Slavik_Antonin_1782_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1459257}}, {"model": "metainfo.source", "pk": 2239, "fields": {"orig_filename": "Slavik_Antonin_1810_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1459258}}, {"model": "metainfo.source", "pk": 2240, "fields": {"orig_filename": "Slavik_Ernst_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 352f.", "author": "", "orig_id": 1459144}}, {"model": "metainfo.source", "pk": 2241, "fields": {"orig_filename": "Slavik_Frantisek-Augustin_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353", "author": "", "orig_id": 1459260}}, {"model": "metainfo.source", "pk": 2242, "fields": {"orig_filename": "Slavik_Jan_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353", "author": "", "orig_id": 1458128}}, {"model": "metainfo.source", "pk": 2243, "fields": {"orig_filename": "Slavik_Josef_1806_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 353f.", "author": "", "orig_id": 1458130}}, {"model": "metainfo.source", "pk": 2244, "fields": {"orig_filename": "Slavik_Rudolf_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354", "author": "", "orig_id": 1458138}}, {"model": "metainfo.source", "pk": 2245, "fields": {"orig_filename": "Slavik_Vincenz_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 354f.", "author": "", "orig_id": 1458140}}, {"model": "metainfo.source", "pk": 2246, "fields": {"orig_filename": "Slavik_Vladimir_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355", "author": "", "orig_id": 1458141}}, {"model": "metainfo.source", "pk": 2247, "fields": {"orig_filename": "Slavkovsky_Karel_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355", "author": "", "orig_id": 1458144}}, {"model": "metainfo.source", "pk": 2248, "fields": {"orig_filename": "Slawikowski_Anton_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 355f.", "author": "", "orig_id": 1458148}}, {"model": "metainfo.source", "pk": 2249, "fields": {"orig_filename": "Slejhar_Josef-Karel_1864_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 356", "author": "", "orig_id": 1459011}}, {"model": "metainfo.source", "pk": 2250, "fields": {"orig_filename": "Slekovec_Matej_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 356f.", "author": "", "orig_id": 1459012}}, {"model": "metainfo.source", "pk": 2251, "fields": {"orig_filename": "Slezak_Elisabeth_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 357", "author": "", "orig_id": 1456815}}, {"model": "metainfo.source", "pk": 2252, "fields": {"orig_filename": "Slezak_Leo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 357f.", "author": "", "orig_id": 1456021}}, {"model": "metainfo.source", "pk": 2253, "fields": {"orig_filename": "Slezak_Otto_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 358", "author": "", "orig_id": 1459101}}, {"model": "metainfo.source", "pk": 2254, "fields": {"orig_filename": "Sliwinski_Jan_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 358f.", "author": "", "orig_id": 1459110}}, {"model": "metainfo.source", "pk": 2255, "fields": {"orig_filename": "Sloboda_Daniel_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359", "author": "", "orig_id": 1459119}}, {"model": "metainfo.source", "pk": 2256, "fields": {"orig_filename": "Slomkowski_Franciszek_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359", "author": "", "orig_id": 1459190}}, {"model": "metainfo.source", "pk": 2257, "fields": {"orig_filename": "Slomsek_Anton-Martin_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 359f.", "author": "", "orig_id": 1459191}}, {"model": "metainfo.source", "pk": 2258, "fields": {"orig_filename": "Slota_Juraj_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 360f.", "author": "", "orig_id": 1459195}}, {"model": "metainfo.source", "pk": 2259, "fields": {"orig_filename": "Slotwinski-Leliwa_Feliks_1788_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 361", "author": "", "orig_id": 1459198}}, {"model": "metainfo.source", "pk": 2260, "fields": {"orig_filename": "Slotwinski-Leliwa_Konstanty_1793_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 361f.", "author": "", "orig_id": 1459199}}, {"model": "metainfo.source", "pk": 2261, "fields": {"orig_filename": "Slovensky_Janko_1856_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362", "author": "", "orig_id": 1459205}}, {"model": "metainfo.source", "pk": 2262, "fields": {"orig_filename": "Sluka_Wilhelm-Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362", "author": "", "orig_id": 1459209}}, {"model": "metainfo.source", "pk": 2263, "fields": {"orig_filename": "Smaha_Josef_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 362f.", "author": "", "orig_id": 1459268}}, {"model": "metainfo.source", "pk": 2264, "fields": {"orig_filename": "Smal-Stockyj_Stephan_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 363f.", "author": "", "orig_id": 1459272}}, {"model": "metainfo.source", "pk": 2265, "fields": {"orig_filename": "Smareglia_Antonio_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364", "author": "", "orig_id": 1459273}}, {"model": "metainfo.source", "pk": 2266, "fields": {"orig_filename": "Smarzewski_Marcin_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364", "author": "", "orig_id": 1459274}}, {"model": "metainfo.source", "pk": 2267, "fields": {"orig_filename": "Smarzewski_Seweryn_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 364f.", "author": "", "orig_id": 1459275}}, {"model": "metainfo.source", "pk": 2268, "fields": {"orig_filename": "Smekal_Gustav_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 365", "author": "", "orig_id": 1457372}}, {"model": "metainfo.source", "pk": 2269, "fields": {"orig_filename": "Smeral_Bohumir_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 365f.", "author": "", "orig_id": 1459282}}, {"model": "metainfo.source", "pk": 2270, "fields": {"orig_filename": "Smetana_Augustin_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 366", "author": "", "orig_id": 1462221}}, {"model": "metainfo.source", "pk": 2271, "fields": {"orig_filename": "Smetana_Friedrich_1824_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 366ff.", "author": "", "orig_id": 1462222}}, {"model": "metainfo.source", "pk": 2272, "fields": {"orig_filename": "Smetana_Josef-Frantisek_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 368", "author": "", "orig_id": 1462224}}, {"model": "metainfo.source", "pk": 2273, "fields": {"orig_filename": "Smetana_Rudolf_1802_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 368f.", "author": "", "orig_id": 1462590}}, {"model": "metainfo.source", "pk": 2274, "fields": {"orig_filename": "Smetanka_Emil_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 369", "author": "", "orig_id": 1462225}}, {"model": "metainfo.source", "pk": 2275, "fields": {"orig_filename": "Smetazko_Moritz_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 369f.", "author": "", "orig_id": 1457481}}, {"model": "metainfo.source", "pk": 2276, "fields": {"orig_filename": "Smets_Wilhelm_1796_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411772}}, {"model": "metainfo.source", "pk": 2277, "fields": {"orig_filename": "Smiciklas_Tadija_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370", "author": "", "orig_id": 1462230}}, {"model": "metainfo.source", "pk": 2278, "fields": {"orig_filename": "Smicka_Frantisek_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370", "author": "", "orig_id": 1462231}}, {"model": "metainfo.source", "pk": 2279, "fields": {"orig_filename": "Smidek_Vladimir_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317", "author": "", "orig_id": 1406748}}, {"model": "metainfo.source", "pk": 2280, "fields": {"orig_filename": "Smid_Anton-Adam_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 370f.", "author": "", "orig_id": 1462232}}, {"model": "metainfo.source", "pk": 2281, "fields": {"orig_filename": "Smigelschi_Octavian_1866_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 371f.", "author": "", "orig_id": 1462233}}, {"model": "metainfo.source", "pk": 2282, "fields": {"orig_filename": "Smital_Ottokar_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 372", "author": "", "orig_id": 1462235}}, {"model": "metainfo.source", "pk": 2283, "fields": {"orig_filename": "Smola_Josef_1764_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 372f.", "author": "", "orig_id": 1458546}}, {"model": "metainfo.source", "pk": 2284, "fields": {"orig_filename": "Smola_Josef_1805_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373", "author": "", "orig_id": 1458547}}, {"model": "metainfo.source", "pk": 2285, "fields": {"orig_filename": "Smola_Karl_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373", "author": "", "orig_id": 1458548}}, {"model": "metainfo.source", "pk": 2286, "fields": {"orig_filename": "Smolenitz-Smolk_Leonidas_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 375", "author": "", "orig_id": 1457673}}, {"model": "metainfo.source", "pk": 2287, "fields": {"orig_filename": "Smolenitz-Smolk_Maria_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 374", "author": "", "orig_id": 1457919}}, {"model": "metainfo.source", "pk": 2288, "fields": {"orig_filename": "Smolenitz-Smolk_Nikolaus_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 374f.", "author": "", "orig_id": 1457920}}, {"model": "metainfo.source", "pk": 2289, "fields": {"orig_filename": "Smolenskin_Perez_1842_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 375f.", "author": "", "orig_id": 1462239}}, {"model": "metainfo.source", "pk": 2290, "fields": {"orig_filename": "Smolensky_Max_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376", "author": "", "orig_id": 1457471}}, {"model": "metainfo.source", "pk": 2291, "fields": {"orig_filename": "Smoler_Felix_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376", "author": "", "orig_id": 1462284}}, {"model": "metainfo.source", "pk": 2292, "fields": {"orig_filename": "Smoler_Franz-Xav_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 376f.", "author": "", "orig_id": 1462116}}, {"model": "metainfo.source", "pk": 2293, "fields": {"orig_filename": "Smoler_Moritz_1833_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 377", "author": "", "orig_id": 1462328}}, {"model": "metainfo.source", "pk": 2294, "fields": {"orig_filename": "Smole_Andreas_1800_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 373f.", "author": "", "orig_id": 1462237}}, {"model": "metainfo.source", "pk": 2295, "fields": {"orig_filename": "Smolik_Josef_1832_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 377", "author": "", "orig_id": 1462329}}, {"model": "metainfo.source", "pk": 2296, "fields": {"orig_filename": "Smolik_Julius_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378", "author": "", "orig_id": 1462330}}, {"model": "metainfo.source", "pk": 2297, "fields": {"orig_filename": "Smolik_Rupert_1832_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378", "author": "", "orig_id": 1462331}}, {"model": "metainfo.source", "pk": 2298, "fields": {"orig_filename": "Smolka_Alois_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 378f.", "author": "", "orig_id": 1462333}}, {"model": "metainfo.source", "pk": 2299, "fields": {"orig_filename": "Smolka_Franciszek-Ks_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 379f.", "author": "", "orig_id": 1458218}}, {"model": "metainfo.source", "pk": 2300, "fields": {"orig_filename": "Smolka_Franciszek_1810_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 379", "author": "", "orig_id": 1462334}}, {"model": "metainfo.source", "pk": 2301, "fields": {"orig_filename": "Smolka_Stanislaw_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380", "author": "", "orig_id": 1462335}}, {"model": "metainfo.source", "pk": 2302, "fields": {"orig_filename": "Smolle_Leo_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380", "author": "", "orig_id": 1462336}}, {"model": "metainfo.source", "pk": 2303, "fields": {"orig_filename": "Smoluchowski-Smolan_Marian-Wilhelm-Teofil_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 380f.", "author": "", "orig_id": 1462337}}, {"model": "metainfo.source", "pk": 2304, "fields": {"orig_filename": "Smreczynski_Franciszek_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 381f.", "author": "", "orig_id": 1462537}}, {"model": "metainfo.source", "pk": 2305, "fields": {"orig_filename": "Smrekar_Hinko_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 382", "author": "", "orig_id": 1462338}}, {"model": "metainfo.source", "pk": 2306, "fields": {"orig_filename": "Smutny_Franz_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 382f.", "author": "", "orig_id": 1462339}}, {"model": "metainfo.source", "pk": 2307, "fields": {"orig_filename": "Smycka_Jan_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383", "author": "", "orig_id": 1462340}}, {"model": "metainfo.source", "pk": 2308, "fields": {"orig_filename": "Snajdr_Karel-Sudimir_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383", "author": "", "orig_id": 1462341}}, {"model": "metainfo.source", "pk": 2309, "fields": {"orig_filename": "Snihurskyj_Johannes_1784_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 383f.", "author": "", "orig_id": 1462343}}, {"model": "metainfo.source", "pk": 2310, "fields": {"orig_filename": "Snoer_Johannes_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384f.", "author": "", "orig_id": 1462344}}, {"model": "metainfo.source", "pk": 2311, "fields": {"orig_filename": "Snopek_Frantisek_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1462345}}, {"model": "metainfo.source", "pk": 2312, "fields": {"orig_filename": "Sobek_Franz-Josef_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1439288}}, {"model": "metainfo.source", "pk": 2313, "fields": {"orig_filename": "Sobek_Johann_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385", "author": "", "orig_id": 1439289}}, {"model": "metainfo.source", "pk": 2314, "fields": {"orig_filename": "Sobek_Sobeslav_1897_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 385f.", "author": "", "orig_id": 1439342}}, {"model": "metainfo.source", "pk": 2315, "fields": {"orig_filename": "Sobieczky_Adolf_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 386", "author": "", "orig_id": 1439349}}, {"model": "metainfo.source", "pk": 2316, "fields": {"orig_filename": "Sobitschka-Wiesenhag_Josef-Richard_1854_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 386f.", "author": "", "orig_id": 1439415}}, {"model": "metainfo.source", "pk": 2317, "fields": {"orig_filename": "Singer_Samuel_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 300", "author": "", "orig_id": 1458570}}, {"model": "metainfo.source", "pk": 2318, "fields": {"orig_filename": "Singer_Siegfried_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301", "author": "", "orig_id": 1458572}}, {"model": "metainfo.source", "pk": 2319, "fields": {"orig_filename": "Singer_Sigmund_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 300f.", "author": "", "orig_id": 1458571}}, {"model": "metainfo.source", "pk": 2320, "fields": {"orig_filename": "Singer_Simon_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458562}}, {"model": "metainfo.source", "pk": 2321, "fields": {"orig_filename": "Singer_Stephan_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301", "author": "", "orig_id": 1458573}}, {"model": "metainfo.source", "pk": 2322, "fields": {"orig_filename": "Singer_Therese_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 302", "author": "", "orig_id": 1458575}}, {"model": "metainfo.source", "pk": 2323, "fields": {"orig_filename": "Singer_Wilhelm_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 301f.", "author": "", "orig_id": 1458574}}, {"model": "metainfo.source", "pk": 2324, "fields": {"orig_filename": "Singule_Rudolf_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 302f.", "author": "", "orig_id": 1458577}}, {"model": "metainfo.source", "pk": 2325, "fields": {"orig_filename": "Sinnacher_Franz-Anton_1772_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 303", "author": "", "orig_id": 1458579}}, {"model": "metainfo.source", "pk": 2326, "fields": {"orig_filename": "Sinwel_Rudolf_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 303f.", "author": "", "orig_id": 1458580}}, {"model": "metainfo.source", "pk": 2327, "fields": {"orig_filename": "Sioly_Johann_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 304", "author": "", "orig_id": 1458582}}, {"model": "metainfo.source", "pk": 2328, "fields": {"orig_filename": "Sipek-Siebeck_Karl_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305", "author": "", "orig_id": 1458586}}, {"model": "metainfo.source", "pk": 2329, "fields": {"orig_filename": "Sipek_Karel_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 304f.", "author": "", "orig_id": 1458583}}, {"model": "metainfo.source", "pk": 2330, "fields": {"orig_filename": "Sipos_Paul_1759_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305", "author": "", "orig_id": 1458587}}, {"model": "metainfo.source", "pk": 2331, "fields": {"orig_filename": "Sirk_Albert_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306f.", "author": "", "orig_id": 1458659}}, {"model": "metainfo.source", "pk": 2332, "fields": {"orig_filename": "Sir_Frantisek-Vaclav_1804_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306", "author": "", "orig_id": 1458656}}, {"model": "metainfo.source", "pk": 2333, "fields": {"orig_filename": "Sir_Frantisek_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 305f.", "author": "", "orig_id": 1458588}}, {"model": "metainfo.source", "pk": 2334, "fields": {"orig_filename": "Sir_Josef_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 306", "author": "", "orig_id": 1458657}}, {"model": "metainfo.source", "pk": 2335, "fields": {"orig_filename": "Sisic_Ferdo_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 307f.", "author": "", "orig_id": 1458663}}, {"model": "metainfo.source", "pk": 2336, "fields": {"orig_filename": "Sis_Frantisek_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 307", "author": "", "orig_id": 1458660}}, {"model": "metainfo.source", "pk": 2337, "fields": {"orig_filename": "Sitensky_Frantisek_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308", "author": "", "orig_id": 1458664}}, {"model": "metainfo.source", "pk": 2338, "fields": {"orig_filename": "Sittenberger_Hans_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 311f.", "author": "", "orig_id": 1458675}}, {"model": "metainfo.source", "pk": 2339, "fields": {"orig_filename": "Sitter_Karl_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 312", "author": "", "orig_id": 1458676}}, {"model": "metainfo.source", "pk": 2340, "fields": {"orig_filename": "Sitte_Camillo_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 309f.", "author": "", "orig_id": 1458669}}, {"model": "metainfo.source", "pk": 2341, "fields": {"orig_filename": "Sitte_Franz_1818_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310", "author": "", "orig_id": 1458670}}, {"model": "metainfo.source", "pk": 2342, "fields": {"orig_filename": "Sitte_Olga_1884_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310", "author": "", "orig_id": 1458671}}, {"model": "metainfo.source", "pk": 2343, "fields": {"orig_filename": "Sitte_Siegfried_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 310f.", "author": "", "orig_id": 1458673}}, {"model": "metainfo.source", "pk": 2344, "fields": {"orig_filename": "Sittig_Otto_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 312f.", "author": "", "orig_id": 1458677}}, {"model": "metainfo.source", "pk": 2345, "fields": {"orig_filename": "Sitt_Anton_1819_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308f.", "author": "", "orig_id": 1458666}}, {"model": "metainfo.source", "pk": 2346, "fields": {"orig_filename": "Sitt_Anton_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 309", "author": "", "orig_id": 1458667}}, {"model": "metainfo.source", "pk": 2347, "fields": {"orig_filename": "Sitt_Hans_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 308f.", "author": "", "orig_id": 1458665}}, {"model": "metainfo.source", "pk": 2348, "fields": {"orig_filename": "Siuschegg_Anton_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313", "author": "", "orig_id": 1458678}}, {"model": "metainfo.source", "pk": 2349, "fields": {"orig_filename": "Six_Michael_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313", "author": "", "orig_id": 1458679}}, {"model": "metainfo.source", "pk": 2350, "fields": {"orig_filename": "Skaba_Josef_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 313f.", "author": "", "orig_id": 1458680}}, {"model": "metainfo.source", "pk": 2351, "fields": {"orig_filename": "Skakoc_Giovanni_1752_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314", "author": "", "orig_id": 1458756}}, {"model": "metainfo.source", "pk": 2352, "fields": {"orig_filename": "Skakoc_Luidj_1758_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314", "author": "", "orig_id": 1458757}}, {"model": "metainfo.source", "pk": 2353, "fields": {"orig_filename": "Skalnik_Vaclav_1776_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 314f.", "author": "", "orig_id": 1455508}}, {"model": "metainfo.source", "pk": 2354, "fields": {"orig_filename": "Skalsky_Gustav-Adolf_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 315", "author": "", "orig_id": 1458760}}, {"model": "metainfo.source", "pk": 2355, "fields": {"orig_filename": "Skarbek_Aleksander-Wincenty-Jan_1874_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 315f.", "author": "", "orig_id": 1458761}}, {"model": "metainfo.source", "pk": 2356, "fields": {"orig_filename": "Skarbek_Stanislaw_1780_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 316", "author": "", "orig_id": 1458764}}, {"model": "metainfo.source", "pk": 2357, "fields": {"orig_filename": "Skarda_Jakub_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 316f.", "author": "", "orig_id": 1458765}}, {"model": "metainfo.source", "pk": 2358, "fields": {"orig_filename": "Skarda_Vaclav_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 317", "author": "", "orig_id": 1458766}}, {"model": "metainfo.source", "pk": 2359, "fields": {"orig_filename": "Skarda_Vladimir_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 317f.", "author": "", "orig_id": 1458767}}, {"model": "metainfo.source", "pk": 2360, "fields": {"orig_filename": "Skaret_Ferdinand_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 318", "author": "", "orig_id": 1458768}}, {"model": "metainfo.source", "pk": 2361, "fields": {"orig_filename": "Skarlandt_Julius_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 318", "author": "", "orig_id": 1458769}}, {"model": "metainfo.source", "pk": 2362, "fields": {"orig_filename": "Skarvan_Albert_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319", "author": "", "orig_id": 1458772}}, {"model": "metainfo.source", "pk": 2363, "fields": {"orig_filename": "Skedl_Arthur_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319f.", "author": "", "orig_id": 1458773}}, {"model": "metainfo.source", "pk": 2364, "fields": {"orig_filename": "Skedl_Josef-Michael_1818_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 319f.", "author": "", "orig_id": 1458774}}, {"model": "metainfo.source", "pk": 2365, "fields": {"orig_filename": "Skene_Alfred_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 320", "author": "", "orig_id": 1458775}}, {"model": "metainfo.source", "pk": 2366, "fields": {"orig_filename": "Skene_Alfred_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321", "author": "", "orig_id": 1458779}}, {"model": "metainfo.source", "pk": 2367, "fields": {"orig_filename": "Skene_August_1829_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321", "author": "", "orig_id": 1443236}}, {"model": "metainfo.source", "pk": 2368, "fields": {"orig_filename": "Skene_Richard_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321f.", "author": "", "orig_id": 1458780}}, {"model": "metainfo.source", "pk": 2369, "fields": {"orig_filename": "Skene_Richard_1909_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 321f.", "author": "", "orig_id": 1458781}}, {"model": "metainfo.source", "pk": 2370, "fields": {"orig_filename": "Skerle_August-Anton_1850_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458845}}, {"model": "metainfo.source", "pk": 2371, "fields": {"orig_filename": "Skerle_August_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458844}}, {"model": "metainfo.source", "pk": 2372, "fields": {"orig_filename": "Skerle_Mathilde-Franziska_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458846}}, {"model": "metainfo.source", "pk": 2373, "fields": {"orig_filename": "Sket_Jakob_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322", "author": "", "orig_id": 1458847}}, {"model": "metainfo.source", "pk": 2374, "fields": {"orig_filename": "Skiba_Eduard-Wladyslaw_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 322f.", "author": "", "orig_id": 1458850}}, {"model": "metainfo.source", "pk": 2375, "fields": {"orig_filename": "Skibinski_Karol_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 323", "author": "", "orig_id": 1458852}}, {"model": "metainfo.source", "pk": 2376, "fields": {"orig_filename": "Sklenarova-Mala_Otylie_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 323f.", "author": "", "orig_id": 1458853}}, {"model": "metainfo.source", "pk": 2377, "fields": {"orig_filename": "Skobel_Fryderyk-Kazimierz_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 324", "author": "", "orig_id": 1458856}}, {"model": "metainfo.source", "pk": 2378, "fields": {"orig_filename": "Skoczek_Erich_1908_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 324", "author": "", "orig_id": 1458857}}, {"model": "metainfo.source", "pk": 2379, "fields": {"orig_filename": "Skoda_Emil_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 325", "author": "", "orig_id": 1455509}}, {"model": "metainfo.source", "pk": 2380, "fields": {"orig_filename": "Skoda_Franz_1801_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 325f.", "author": "", "orig_id": 1455510}}, {"model": "metainfo.source", "pk": 2381, "fields": {"orig_filename": "Skoda_Josef_1805_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 326", "author": "", "orig_id": 1455511}}, {"model": "metainfo.source", "pk": 2382, "fields": {"orig_filename": "Skoda_Karl_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 326f.", "author": "", "orig_id": 1458860}}, {"model": "metainfo.source", "pk": 2383, "fields": {"orig_filename": "Skoda_Karl_1878_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327", "author": "", "orig_id": 1455560}}, {"model": "metainfo.source", "pk": 2384, "fields": {"orig_filename": "Skofitz_Alexander_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 327f.", "author": "", "orig_id": 1458862}}, {"model": "metainfo.source", "pk": 2385, "fields": {"orig_filename": "Skomal_Emil_1853_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328", "author": "", "orig_id": 1458863}}, {"model": "metainfo.source", "pk": 2386, "fields": {"orig_filename": "Skomal_Karl_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328", "author": "", "orig_id": 1458864}}, {"model": "metainfo.source", "pk": 2387, "fields": {"orig_filename": "Skopalik_Frantisek_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 328f.", "author": "", "orig_id": 1458865}}, {"model": "metainfo.source", "pk": 2388, "fields": {"orig_filename": "Skopalik_Frantisek_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 329", "author": "", "orig_id": 1458866}}, {"model": "metainfo.source", "pk": 2389, "fields": {"orig_filename": "Skopec_Jindrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 329f.", "author": "", "orig_id": 1442486}}, {"model": "metainfo.source", "pk": 2390, "fields": {"orig_filename": "Skorpil_Ferdinand_1903_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 330", "author": "", "orig_id": 1458867}}, {"model": "metainfo.source", "pk": 2391, "fields": {"orig_filename": "Skorpil_Hermenegild_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 330", "author": "", "orig_id": 1458937}}, {"model": "metainfo.source", "pk": 2392, "fields": {"orig_filename": "Skorpil_Josef_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458941}}, {"model": "metainfo.source", "pk": 2393, "fields": {"orig_filename": "Skorpil_Karel_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458938}}, {"model": "metainfo.source", "pk": 2394, "fields": {"orig_filename": "Skorpil_Vaclav_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458939}}, {"model": "metainfo.source", "pk": 2395, "fields": {"orig_filename": "Skorpil_Vladislav_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331", "author": "", "orig_id": 1458940}}, {"model": "metainfo.source", "pk": 2396, "fields": {"orig_filename": "Skrabec_Stanislav_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 331f.", "author": "", "orig_id": 1458942}}, {"model": "metainfo.source", "pk": 2397, "fields": {"orig_filename": "Skrach_Vasil_1891_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332", "author": "", "orig_id": 1458943}}, {"model": "metainfo.source", "pk": 2398, "fields": {"orig_filename": "Skramlik_Emilian_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332f.", "author": "", "orig_id": 1458945}}, {"model": "metainfo.source", "pk": 2399, "fields": {"orig_filename": "Skramlik_Jan_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 332f.", "author": "", "orig_id": 1458947}}, {"model": "metainfo.source", "pk": 2400, "fields": {"orig_filename": "Skraup_Karl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 333", "author": "", "orig_id": 1458948}}, {"model": "metainfo.source", "pk": 2401, "fields": {"orig_filename": "Skraup_Zdenko-Hans_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 333f.", "author": "", "orig_id": 1456018}}, {"model": "metainfo.source", "pk": 2402, "fields": {"orig_filename": "Skrbensky-Hriste_Leo_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 334", "author": "", "orig_id": 1458950}}, {"model": "metainfo.source", "pk": 2403, "fields": {"orig_filename": "Skrejsovsky_Frantisek_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 334f.", "author": "", "orig_id": 1458951}}, {"model": "metainfo.source", "pk": 2404, "fields": {"orig_filename": "Skrejsovsky_Jan-Stanislav_1831_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335", "author": "", "orig_id": 1458952}}, {"model": "metainfo.source", "pk": 2405, "fields": {"orig_filename": "Skribanek_Joseph_1788_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335", "author": "", "orig_id": 1458953}}, {"model": "metainfo.source", "pk": 2406, "fields": {"orig_filename": "Skrivan_Antonin_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 335f.", "author": "", "orig_id": 1458954}}, {"model": "metainfo.source", "pk": 2407, "fields": {"orig_filename": "Skrivan_Frantisek_1807_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 336", "author": "", "orig_id": 1458955}}, {"model": "metainfo.source", "pk": 2408, "fields": {"orig_filename": "Skrivan_Gustav_1831_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 336f.", "author": "", "orig_id": 1458956}}, {"model": "metainfo.source", "pk": 2409, "fields": {"orig_filename": "Skroup_Frantisek-Seraf_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 337", "author": "", "orig_id": 1458957}}, {"model": "metainfo.source", "pk": 2410, "fields": {"orig_filename": "Skroup_Jan-Nepomuk_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 337f.", "author": "", "orig_id": 1458958}}, {"model": "metainfo.source", "pk": 2411, "fields": {"orig_filename": "Skuhersky_Franz-Alois_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338", "author": "", "orig_id": 1458959}}, {"model": "metainfo.source", "pk": 2412, "fields": {"orig_filename": "Skuhersky_Franz-Xaver_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338", "author": "", "orig_id": 1459025}}, {"model": "metainfo.source", "pk": 2413, "fields": {"orig_filename": "Skuhersky_Rudolf_1828_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 338f.", "author": "", "orig_id": 1459026}}, {"model": "metainfo.source", "pk": 2414, "fields": {"orig_filename": "Skultety_August-Horislav_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 339", "author": "", "orig_id": 1459027}}, {"model": "metainfo.source", "pk": 2415, "fields": {"orig_filename": "Skultety_Jozef_1853_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 339f.", "author": "", "orig_id": 1459030}}, {"model": "metainfo.source", "pk": 2416, "fields": {"orig_filename": "Skuppa_Josef_1823_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 340", "author": "", "orig_id": 1459031}}, {"model": "metainfo.source", "pk": 2417, "fields": {"orig_filename": "Skurawy_Edmund_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 340f.", "author": "", "orig_id": 1459032}}, {"model": "metainfo.source", "pk": 2418, "fields": {"orig_filename": "Skutecky_Dominik_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 341", "author": "", "orig_id": 1459033}}, {"model": "metainfo.source", "pk": 2419, "fields": {"orig_filename": "Skutetzky_Alexander_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 341f.", "author": "", "orig_id": 1459035}}, {"model": "metainfo.source", "pk": 2420, "fields": {"orig_filename": "Sigora-Eulenstein_Anton-Heinrich_1772_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256", "author": "", "orig_id": 1457996}}, {"model": "metainfo.source", "pk": 2421, "fields": {"orig_filename": "Siklossy-Perness_Julius_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256f.", "author": "", "orig_id": 1457997}}, {"model": "metainfo.source", "pk": 2422, "fields": {"orig_filename": "Sikora_Franz_1863_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257", "author": "", "orig_id": 1458000}}, {"model": "metainfo.source", "pk": 2423, "fields": {"orig_filename": "Sikorski_Wladyslaw-Eugeniusz_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257f.", "author": "", "orig_id": 1458001}}, {"model": "metainfo.source", "pk": 2424, "fields": {"orig_filename": "Siko_Miklos_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 257", "author": "", "orig_id": 1457999}}, {"model": "metainfo.source", "pk": 2425, "fields": {"orig_filename": "Silberberg_Maximilian_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 259f.", "author": "", "orig_id": 1458068}}, {"model": "metainfo.source", "pk": 2426, "fields": {"orig_filename": "Silberbusch_David-Jeschajahu_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 260", "author": "", "orig_id": 1458071}}, {"model": "metainfo.source", "pk": 2427, "fields": {"orig_filename": "Silberer_Geza_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 261", "author": "", "orig_id": 1458073}}, {"model": "metainfo.source", "pk": 2428, "fields": {"orig_filename": "Silberer_Herbert_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 261f.", "author": "", "orig_id": 1458075}}, {"model": "metainfo.source", "pk": 2429, "fields": {"orig_filename": "Silberer_Rosa_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 262", "author": "", "orig_id": 1458076}}, {"model": "metainfo.source", "pk": 2430, "fields": {"orig_filename": "Silberer_Viktor_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 262f.", "author": "", "orig_id": 1458077}}, {"model": "metainfo.source", "pk": 2431, "fields": {"orig_filename": "Silberhuber_Anton_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 263", "author": "", "orig_id": 1458078}}, {"model": "metainfo.source", "pk": 2432, "fields": {"orig_filename": "Silbermark_Moriz-Viktor_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 263f.", "author": "", "orig_id": 1458079}}, {"model": "metainfo.source", "pk": 2433, "fields": {"orig_filename": "Silbernagl_Johann_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 264", "author": "", "orig_id": 1458080}}, {"model": "metainfo.source", "pk": 2434, "fields": {"orig_filename": "Silberstein_Adolf_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 264f.", "author": "", "orig_id": 1458081}}, {"model": "metainfo.source", "pk": 2435, "fields": {"orig_filename": "Silberstein_August_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265", "author": "", "orig_id": 1458083}}, {"model": "metainfo.source", "pk": 2436, "fields": {"orig_filename": "Silberstern_Philipp_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265", "author": "", "orig_id": 1458084}}, {"model": "metainfo.source", "pk": 2437, "fields": {"orig_filename": "Silbert_Johann-Peter_1778_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 265f.", "author": "", "orig_id": 1458085}}, {"model": "metainfo.source", "pk": 2438, "fields": {"orig_filename": "Silbert_Maria_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 266", "author": "", "orig_id": 1458087}}, {"model": "metainfo.source", "pk": 2439, "fields": {"orig_filename": "Silber_Max_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 258f.", "author": "", "orig_id": 1458004}}, {"model": "metainfo.source", "pk": 2440, "fields": {"orig_filename": "Silber_Philipp_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 259", "author": "", "orig_id": 1458067}}, {"model": "metainfo.source", "pk": 2441, "fields": {"orig_filename": "Sileny_Vaclav_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 266f.", "author": "", "orig_id": 1458088}}, {"model": "metainfo.source", "pk": 2442, "fields": {"orig_filename": "Silinger_Tomas-Eduard_1866_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 267f.", "author": "", "orig_id": 1458089}}, {"model": "metainfo.source", "pk": 2443, "fields": {"orig_filename": "Siller_Franz_1893_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268", "author": "", "orig_id": 1458090}}, {"model": "metainfo.source", "pk": 2444, "fields": {"orig_filename": "Siller_Heinrich_1884_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268", "author": "", "orig_id": 1458091}}, {"model": "metainfo.source", "pk": 2445, "fields": {"orig_filename": "Siller_Josef_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 268f.", "author": "", "orig_id": 1458152}}, {"model": "metainfo.source", "pk": 2446, "fields": {"orig_filename": "Silli_Giuseppe_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 269", "author": "", "orig_id": 1458154}}, {"model": "metainfo.source", "pk": 2447, "fields": {"orig_filename": "Silovic_Josip_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 269f.", "author": "", "orig_id": 1458155}}, {"model": "metainfo.source", "pk": 2448, "fields": {"orig_filename": "Silva-Tarouca_Ernst-Emanuel_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 270f.", "author": "", "orig_id": 1458157}}, {"model": "metainfo.source", "pk": 2449, "fields": {"orig_filename": "Silva-Tarouca_Franz-Josef_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 270", "author": "", "orig_id": 1458161}}, {"model": "metainfo.source", "pk": 2450, "fields": {"orig_filename": "Silvestri_Pietro_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271", "author": "", "orig_id": 1458162}}, {"model": "metainfo.source", "pk": 2451, "fields": {"orig_filename": "Silving_Bert_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271", "author": "", "orig_id": 1458163}}, {"model": "metainfo.source", "pk": 2452, "fields": {"orig_filename": "Sil_Josef_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 258", "author": "", "orig_id": 1458002}}, {"model": "metainfo.source", "pk": 2453, "fields": {"orig_filename": "Simacek_Frantisek_1834_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 271f.", "author": "", "orig_id": 1458164}}, {"model": "metainfo.source", "pk": 2454, "fields": {"orig_filename": "Simacek_Josef_1837_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 272", "author": "", "orig_id": 1458165}}, {"model": "metainfo.source", "pk": 2455, "fields": {"orig_filename": "Simacek_Matej-Anastasia_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 272f.", "author": "", "orig_id": 1458166}}, {"model": "metainfo.source", "pk": 2456, "fields": {"orig_filename": "Simai_Kristof_1742_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 273", "author": "", "orig_id": 1458167}}, {"model": "metainfo.source", "pk": 2457, "fields": {"orig_filename": "Simak_Josef-Vitezslav_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 273", "author": "", "orig_id": 1458168}}, {"model": "metainfo.source", "pk": 2458, "fields": {"orig_filename": "Simandl_Franz_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274", "author": "", "orig_id": 1458173}}, {"model": "metainfo.source", "pk": 2459, "fields": {"orig_filename": "Simbschen_Joseph-Anton_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274f.", "author": "", "orig_id": 1458174}}, {"model": "metainfo.source", "pk": 2460, "fields": {"orig_filename": "Simbschen_Joseph-Karl_1781_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 274f.", "author": "", "orig_id": 1458175}}, {"model": "metainfo.source", "pk": 2461, "fields": {"orig_filename": "Simbschen_Julius_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458177}}, {"model": "metainfo.source", "pk": 2462, "fields": {"orig_filename": "Simbschen_Karl_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458176}}, {"model": "metainfo.source", "pk": 2463, "fields": {"orig_filename": "Simecek_Frantisek_1842_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275", "author": "", "orig_id": 1458251}}, {"model": "metainfo.source", "pk": 2464, "fields": {"orig_filename": "Simeoner_Archangelus_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 275f.", "author": "", "orig_id": 1458252}}, {"model": "metainfo.source", "pk": 2465, "fields": {"orig_filename": "Simerka_Vaclav_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276", "author": "", "orig_id": 1458253}}, {"model": "metainfo.source", "pk": 2466, "fields": {"orig_filename": "Simic_Antun-Branko_1898_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276", "author": "", "orig_id": 1458254}}, {"model": "metainfo.source", "pk": 2467, "fields": {"orig_filename": "Simic_Pavle_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 276f.", "author": "", "orig_id": 1458256}}, {"model": "metainfo.source", "pk": 2468, "fields": {"orig_filename": "Simiginowicz-Staufe_Ludwig-Adolf_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 277f.", "author": "", "orig_id": 1458258}}, {"model": "metainfo.source", "pk": 2469, "fields": {"orig_filename": "Simitsch-Hohenblum_Alfred_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278", "author": "", "orig_id": 1458260}}, {"model": "metainfo.source", "pk": 2470, "fields": {"orig_filename": "Simitsch-Hohenblum_Josef_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278", "author": "", "orig_id": 1458261}}, {"model": "metainfo.source", "pk": 2471, "fields": {"orig_filename": "Simm-Mayer_Marie_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458266}}, {"model": "metainfo.source", "pk": 2472, "fields": {"orig_filename": "Simm_Anton_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 278f.", "author": "", "orig_id": 1458263}}, {"model": "metainfo.source", "pk": 2473, "fields": {"orig_filename": "Simm_Franz-Xaver_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458264}}, {"model": "metainfo.source", "pk": 2474, "fields": {"orig_filename": "Simonek-Mladatov_Josef_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 281f.", "author": "", "orig_id": 1458365}}, {"model": "metainfo.source", "pk": 2475, "fields": {"orig_filename": "Simonetti_Giovanni_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 282", "author": "", "orig_id": 1458366}}, {"model": "metainfo.source", "pk": 2476, "fields": {"orig_filename": "Simonic_Franz_1847_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 282f.", "author": "", "orig_id": 1458368}}, {"model": "metainfo.source", "pk": 2477, "fields": {"orig_filename": "Simonides_Alois_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283", "author": "", "orig_id": 1458370}}, {"model": "metainfo.source", "pk": 2478, "fields": {"orig_filename": "Simonkai_Lajos_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283", "author": "", "orig_id": 1458371}}, {"model": "metainfo.source", "pk": 2479, "fields": {"orig_filename": "Simons_Rainer_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 283f.", "author": "", "orig_id": 1458372}}, {"model": "metainfo.source", "pk": 2480, "fields": {"orig_filename": "Simonyi-Semadam_Sandor_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287f.", "author": "", "orig_id": 1458383}}, {"model": "metainfo.source", "pk": 2481, "fields": {"orig_filename": "Simonyi-Vitezvar_Jozsef_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 288", "author": "", "orig_id": 1458384}}, {"model": "metainfo.source", "pk": 2482, "fields": {"orig_filename": "Simonyi-Vitezvar_Lajos_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 288f.", "author": "", "orig_id": 1458385}}, {"model": "metainfo.source", "pk": 2483, "fields": {"orig_filename": "Simonyi_Antal_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 286", "author": "", "orig_id": 1458378}}, {"model": "metainfo.source", "pk": 2484, "fields": {"orig_filename": "Simonyi_Ernoe_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 286f.", "author": "", "orig_id": 1458379}}, {"model": "metainfo.source", "pk": 2485, "fields": {"orig_filename": "Simonyi_Karoline-Johanna_1803_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287", "author": "", "orig_id": 1458380}}, {"model": "metainfo.source", "pk": 2486, "fields": {"orig_filename": "Simonyi_Zsigmond_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 287", "author": "", "orig_id": 1458382}}, {"model": "metainfo.source", "pk": 2487, "fields": {"orig_filename": "Simony_Friedrich_1813_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 284", "author": "", "orig_id": 1458374}}, {"model": "metainfo.source", "pk": 2488, "fields": {"orig_filename": "Simony_Leopold_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 284f.", "author": "", "orig_id": 1458375}}, {"model": "metainfo.source", "pk": 2489, "fields": {"orig_filename": "Simony_Oskar_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 285f.", "author": "", "orig_id": 1458377}}, {"model": "metainfo.source", "pk": 2490, "fields": {"orig_filename": "Simony_Stefan_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 285", "author": "", "orig_id": 1458376}}, {"model": "metainfo.source", "pk": 2491, "fields": {"orig_filename": "Simon_Josef_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279f.", "author": "", "orig_id": 1458268}}, {"model": "metainfo.source", "pk": 2492, "fields": {"orig_filename": "Simon_Oscar_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 280", "author": "", "orig_id": 1458273}}, {"model": "metainfo.source", "pk": 2493, "fields": {"orig_filename": "Simon_Sigismund_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 280f.", "author": "", "orig_id": 1458274}}, {"model": "metainfo.source", "pk": 2494, "fields": {"orig_filename": "Simon_T-Frantisek_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 281", "author": "", "orig_id": 1458276}}, {"model": "metainfo.source", "pk": 2495, "fields": {"orig_filename": "Simor_Janos_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289", "author": "", "orig_id": 1458386}}, {"model": "metainfo.source", "pk": 2496, "fields": {"orig_filename": "Simo_Ferenc_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 279", "author": "", "orig_id": 1458267}}, {"model": "metainfo.source", "pk": 2497, "fields": {"orig_filename": "Simunich_Balthasar_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289", "author": "", "orig_id": 1458388}}, {"model": "metainfo.source", "pk": 2498, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Georg-Simon_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 289f.", "author": "", "orig_id": 1458464}}, {"model": "metainfo.source", "pk": 2499, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Johann-Simon_1804_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 290", "author": "", "orig_id": 1458465}}, {"model": "metainfo.source", "pk": 2500, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Simon-Georg_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 290f.", "author": "", "orig_id": 1458466}}, {"model": "metainfo.source", "pk": 2501, "fields": {"orig_filename": "Sina-Hodos-Kizdia_Simon-Georg_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 291", "author": "", "orig_id": 1458468}}, {"model": "metainfo.source", "pk": 2502, "fields": {"orig_filename": "Sincai_Gheorghe_1754_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 291f.", "author": "", "orig_id": 1458470}}, {"model": "metainfo.source", "pk": 2503, "fields": {"orig_filename": "Sindelar_Matthias_1903_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 292", "author": "", "orig_id": 1458471}}, {"model": "metainfo.source", "pk": 2504, "fields": {"orig_filename": "Singer_Clara__1967.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458487}}, {"model": "metainfo.source", "pk": 2505, "fields": {"orig_filename": "Singer_Edmund_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293", "author": "", "orig_id": 1458472}}, {"model": "metainfo.source", "pk": 2506, "fields": {"orig_filename": "Singer_Edmund_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293f.", "author": "", "orig_id": 1458473}}, {"model": "metainfo.source", "pk": 2507, "fields": {"orig_filename": "Singer_Emanuel_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294", "author": "", "orig_id": 1458475}}, {"model": "metainfo.source", "pk": 2508, "fields": {"orig_filename": "Singer_Emil_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294", "author": "", "orig_id": 1458476}}, {"model": "metainfo.source", "pk": 2509, "fields": {"orig_filename": "Singer_Franz-Ignaz_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 294f.", "author": "", "orig_id": 1458478}}, {"model": "metainfo.source", "pk": 2510, "fields": {"orig_filename": "Singer_Friedrich_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 293", "author": "", "orig_id": 1458474}}, {"model": "metainfo.source", "pk": 2511, "fields": {"orig_filename": "Singer_Gustav_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 295", "author": "", "orig_id": 1458479}}, {"model": "metainfo.source", "pk": 2512, "fields": {"orig_filename": "Singer_Heinrich-Joseph_1855_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 295f.", "author": "", "orig_id": 1458480}}, {"model": "metainfo.source", "pk": 2513, "fields": {"orig_filename": "Singer_Isidor_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 296", "author": "", "orig_id": 1458482}}, {"model": "metainfo.source", "pk": 2514, "fields": {"orig_filename": "Singer_Isidor_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 296f.", "author": "", "orig_id": 1458483}}, {"model": "metainfo.source", "pk": 2515, "fields": {"orig_filename": "Singer_Jakob_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458484}}, {"model": "metainfo.source", "pk": 2516, "fields": {"orig_filename": "Singer_Joseph_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297", "author": "", "orig_id": 1458485}}, {"model": "metainfo.source", "pk": 2517, "fields": {"orig_filename": "Singer_Julius_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 297f.", "author": "", "orig_id": 1458563}}, {"model": "metainfo.source", "pk": 2518, "fields": {"orig_filename": "Singer_Karl-Max-Friedrich_1888_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 298", "author": "", "orig_id": 1458565}}, {"model": "metainfo.source", "pk": 2519, "fields": {"orig_filename": "Singer_Ludvik_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 298f.", "author": "", "orig_id": 1458566}}, {"model": "metainfo.source", "pk": 2520, "fields": {"orig_filename": "Singer_Max_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 299", "author": "", "orig_id": 1458567}}, {"model": "metainfo.source", "pk": 2521, "fields": {"orig_filename": "Singer_Petrus-Von-Alcantara_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 299f.", "author": "", "orig_id": 1458568}}, {"model": "metainfo.source", "pk": 2522, "fields": {"orig_filename": "Seykora_Oldrich-V_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210f.", "author": "", "orig_id": 1450962}}, {"model": "metainfo.source", "pk": 2523, "fields": {"orig_filename": "Seyler_Karoly_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 211f.", "author": "", "orig_id": 1450964}}, {"model": "metainfo.source", "pk": 2524, "fields": {"orig_filename": "Seyller_Otto_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212", "author": "", "orig_id": 1450965}}, {"model": "metainfo.source", "pk": 2525, "fields": {"orig_filename": "Seyrer_Ignaz_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212", "author": "", "orig_id": 1450966}}, {"model": "metainfo.source", "pk": 2526, "fields": {"orig_filename": "Seyrl_Franz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 212f.", "author": "", "orig_id": 1450967}}, {"model": "metainfo.source", "pk": 2527, "fields": {"orig_filename": "Seyrl_Rudolf_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213", "author": "", "orig_id": 1450968}}, {"model": "metainfo.source", "pk": 2528, "fields": {"orig_filename": "Seyss-Inquart_Arthur_1892_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213f.", "author": "", "orig_id": 1449992}}, {"model": "metainfo.source", "pk": 2529, "fields": {"orig_filename": "Seyss-Inquart_Richard_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 214f.", "author": "", "orig_id": 1449993}}, {"model": "metainfo.source", "pk": 2530, "fields": {"orig_filename": "Seyss_Ludwig_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 213", "author": "", "orig_id": 1450969}}, {"model": "metainfo.source", "pk": 2531, "fields": {"orig_filename": "Sfetez_Giovanni_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 215", "author": "", "orig_id": 1449994}}, {"model": "metainfo.source", "pk": 2532, "fields": {"orig_filename": "Sfondrini_Achille_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 215f.", "author": "", "orig_id": 1449995}}, {"model": "metainfo.source", "pk": 2533, "fields": {"orig_filename": "Sforzi_Giuseppe_1801_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 216", "author": "", "orig_id": 1449996}}, {"model": "metainfo.source", "pk": 2534, "fields": {"orig_filename": "Shivitz_Valentin-Matthias_1828_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 216f.", "author": "", "orig_id": 1449997}}, {"model": "metainfo.source", "pk": 2535, "fields": {"orig_filename": "Siber_Alfons_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 217", "author": "", "orig_id": 1449999}}, {"model": "metainfo.source", "pk": 2536, "fields": {"orig_filename": "Siber_Franz_1751_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 217f.", "author": "", "orig_id": 1450000}}, {"model": "metainfo.source", "pk": 2537, "fields": {"orig_filename": "Siboni_Giuseppe-Vincenzo-Antonio_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 218", "author": "", "orig_id": 1450001}}, {"model": "metainfo.source", "pk": 2538, "fields": {"orig_filename": "Sicard-Sicardsburg_August_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 219f.", "author": "", "orig_id": 1450003}}, {"model": "metainfo.source", "pk": 2539, "fields": {"orig_filename": "Sicharter_Barbara_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 220f.", "author": "", "orig_id": 1450005}}, {"model": "metainfo.source", "pk": 2540, "fields": {"orig_filename": "Sicha_Anton-Jaroslav_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 220", "author": "", "orig_id": 1450004}}, {"model": "metainfo.source", "pk": 2541, "fields": {"orig_filename": "Sichrovsky_Heinrich-Joachim_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 221f.", "author": "", "orig_id": 1450006}}, {"model": "metainfo.source", "pk": 2542, "fields": {"orig_filename": "Sichrovsky_Joseph_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 222f.", "author": "", "orig_id": 1450007}}, {"model": "metainfo.source", "pk": 2543, "fields": {"orig_filename": "Sickel_Theodor_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223f.", "author": "", "orig_id": 1450009}}, {"model": "metainfo.source", "pk": 2544, "fields": {"orig_filename": "Sic_Albert-Franc_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 218f.", "author": "", "orig_id": 1450002}}, {"model": "metainfo.source", "pk": 2545, "fields": {"orig_filename": "Sidoli_Alessandro_1812_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 224f.", "author": "", "orig_id": 1450010}}, {"model": "metainfo.source", "pk": 2546, "fields": {"orig_filename": "Sidorowicz_Zygmunt_1846_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225", "author": "", "orig_id": 1450012}}, {"model": "metainfo.source", "pk": 2547, "fields": {"orig_filename": "Sidor_Andrzej_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225", "author": "", "orig_id": 1450011}}, {"model": "metainfo.source", "pk": 2548, "fields": {"orig_filename": "Siebeck_Rudolph_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 225f.", "author": "", "orig_id": 1450013}}, {"model": "metainfo.source", "pk": 2549, "fields": {"orig_filename": "Siebenrock_Friedrich_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 226", "author": "", "orig_id": 1450014}}, {"model": "metainfo.source", "pk": 2550, "fields": {"orig_filename": "Sieberer_Anton_1901_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 228", "author": "", "orig_id": 1450075}}, {"model": "metainfo.source", "pk": 2551, "fields": {"orig_filename": "Sieberer_Johann_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 228f.", "author": "", "orig_id": 1450076}}, {"model": "metainfo.source", "pk": 2552, "fields": {"orig_filename": "Sieber_Ferdinand_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 226f.", "author": "", "orig_id": 1450015}}, {"model": "metainfo.source", "pk": 2553, "fields": {"orig_filename": "Sieber_Franz-Wilhelm_1789_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 227", "author": "", "orig_id": 1450016}}, {"model": "metainfo.source", "pk": 2554, "fields": {"orig_filename": "Sieber_Karl-Laurenz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 227f.", "author": "", "orig_id": 1450017}}, {"model": "metainfo.source", "pk": 2555, "fields": {"orig_filename": "Siebinger_Josef_1800_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 229", "author": "", "orig_id": 1450077}}, {"model": "metainfo.source", "pk": 2556, "fields": {"orig_filename": "Siebold_Alexander_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 229", "author": "", "orig_id": 1450078}}, {"model": "metainfo.source", "pk": 2557, "fields": {"orig_filename": "Siebold_Heinrich_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230", "author": "", "orig_id": 1450079}}, {"model": "metainfo.source", "pk": 2558, "fields": {"orig_filename": "Siedek_Oskar_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230f.", "author": "", "orig_id": 1450080}}, {"model": "metainfo.source", "pk": 2559, "fields": {"orig_filename": "Siedek_Peter-Karl_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 230f.", "author": "", "orig_id": 1450081}}, {"model": "metainfo.source", "pk": 2560, "fields": {"orig_filename": "Siedek_Richard_1859_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 231", "author": "", "orig_id": 1445586}}, {"model": "metainfo.source", "pk": 2561, "fields": {"orig_filename": "Siedek_Viktor_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 231f.", "author": "", "orig_id": 1450082}}, {"model": "metainfo.source", "pk": 2562, "fields": {"orig_filename": "Sieder_Adolf_1913_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232", "author": "", "orig_id": 1450084}}, {"model": "metainfo.source", "pk": 2563, "fields": {"orig_filename": "Sieder_Josef_1918_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232", "author": "", "orig_id": 1450083}}, {"model": "metainfo.source", "pk": 2564, "fields": {"orig_filename": "Siedlecki_Michal-Marian_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 232f.", "author": "", "orig_id": 1450085}}, {"model": "metainfo.source", "pk": 2565, "fields": {"orig_filename": "Siegelbaum_Leo_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236", "author": "", "orig_id": 1450092}}, {"model": "metainfo.source", "pk": 2566, "fields": {"orig_filename": "Siegele_Josef_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236f.", "author": "", "orig_id": 1450093}}, {"model": "metainfo.source", "pk": 2567, "fields": {"orig_filename": "Siegel_Carl_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234f.", "author": "", "orig_id": 1420065}}, {"model": "metainfo.source", "pk": 2568, "fields": {"orig_filename": "Siegel_Ernst_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 235", "author": "", "orig_id": 1426316}}, {"model": "metainfo.source", "pk": 2569, "fields": {"orig_filename": "Siegel_Franz_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 235f.", "author": "", "orig_id": 1450090}}, {"model": "metainfo.source", "pk": 2570, "fields": {"orig_filename": "Siegel_Heinrich_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 236", "author": "", "orig_id": 1450091}}, {"model": "metainfo.source", "pk": 2571, "fields": {"orig_filename": "Sieger_Eduard_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 237", "author": "", "orig_id": 1450094}}, {"model": "metainfo.source", "pk": 2572, "fields": {"orig_filename": "Sieger_Robert_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450095}}, {"model": "metainfo.source", "pk": 2573, "fields": {"orig_filename": "Sieger_Robert_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450097}}, {"model": "metainfo.source", "pk": 2574, "fields": {"orig_filename": "Sieger_Viktor_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 238", "author": "", "orig_id": 1450096}}, {"model": "metainfo.source", "pk": 2575, "fields": {"orig_filename": "Siege_Adolf_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 233f.", "author": "", "orig_id": 1450086}}, {"model": "metainfo.source", "pk": 2576, "fields": {"orig_filename": "Siege_Gustav_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450089}}, {"model": "metainfo.source", "pk": 2577, "fields": {"orig_filename": "Siege_Ignaz_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450087}}, {"model": "metainfo.source", "pk": 2578, "fields": {"orig_filename": "Siege_Josef_1790_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 234", "author": "", "orig_id": 1450088}}, {"model": "metainfo.source", "pk": 2579, "fields": {"orig_filename": "Sieghart_Rudolf_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 239", "author": "", "orig_id": 1450098}}, {"model": "metainfo.source", "pk": 2580, "fields": {"orig_filename": "Siegler-Eberswald_Heinrich_1774_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244", "author": "", "orig_id": 1457895}}, {"model": "metainfo.source", "pk": 2581, "fields": {"orig_filename": "Siegler-Eberswald_Ida_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244f.", "author": "", "orig_id": 1427965}}, {"model": "metainfo.source", "pk": 2582, "fields": {"orig_filename": "Siegl_Carl-Ignaz_1802_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 239f.", "author": "", "orig_id": 1450099}}, {"model": "metainfo.source", "pk": 2583, "fields": {"orig_filename": "Siegl_Eduard_1831_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 240", "author": "", "orig_id": 1450100}}, {"model": "metainfo.source", "pk": 2584, "fields": {"orig_filename": "Siegl_Emil_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 240f.", "author": "", "orig_id": 1450150}}, {"model": "metainfo.source", "pk": 2585, "fields": {"orig_filename": "Siegl_Johann_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242", "author": "", "orig_id": 1457821}}, {"model": "metainfo.source", "pk": 2586, "fields": {"orig_filename": "Siegl_Johann_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241", "author": "", "orig_id": 1457819}}, {"model": "metainfo.source", "pk": 2587, "fields": {"orig_filename": "Siegl_Karl_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241f.", "author": "", "orig_id": 1457820}}, {"model": "metainfo.source", "pk": 2588, "fields": {"orig_filename": "Siegl_Karl_1851_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242", "author": "", "orig_id": 1457822}}, {"model": "metainfo.source", "pk": 2589, "fields": {"orig_filename": "Siegl_Max_1856_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 242f.", "author": "", "orig_id": 1457823}}, {"model": "metainfo.source", "pk": 2590, "fields": {"orig_filename": "Siegl_Meinrad_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243", "author": "", "orig_id": 1457824}}, {"model": "metainfo.source", "pk": 2591, "fields": {"orig_filename": "Siegl_Richard_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243f.", "author": "", "orig_id": 1457893}}, {"model": "metainfo.source", "pk": 2592, "fields": {"orig_filename": "Siegl_Robert_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 243f.", "author": "", "orig_id": 1457892}}, {"model": "metainfo.source", "pk": 2593, "fields": {"orig_filename": "Siegl_Robert_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 241", "author": "", "orig_id": 1457818}}, {"model": "metainfo.source", "pk": 2594, "fields": {"orig_filename": "Siegl_Rudolf_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 244", "author": "", "orig_id": 1457894}}, {"model": "metainfo.source", "pk": 2595, "fields": {"orig_filename": "Siegmund_Adolf_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245", "author": "", "orig_id": 1457899}}, {"model": "metainfo.source", "pk": 2596, "fields": {"orig_filename": "Siegmund_Anton_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245f.", "author": "", "orig_id": 1457900}}, {"model": "metainfo.source", "pk": 2597, "fields": {"orig_filename": "Siegmund_Ferdinand_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 246", "author": "", "orig_id": 1457902}}, {"model": "metainfo.source", "pk": 2598, "fields": {"orig_filename": "Siegmund_Franz-Florian_1785_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 247", "author": "", "orig_id": 1457906}}, {"model": "metainfo.source", "pk": 2599, "fields": {"orig_filename": "Siegmund_Franz_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 246f.", "author": "", "orig_id": 1457903}}, {"model": "metainfo.source", "pk": 2600, "fields": {"orig_filename": "Siegmund_Gustav_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248f.", "author": "", "orig_id": 1457911}}, {"model": "metainfo.source", "pk": 2601, "fields": {"orig_filename": "Siegmund_Hans_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 247f.", "author": "", "orig_id": 1457908}}, {"model": "metainfo.source", "pk": 2602, "fields": {"orig_filename": "Siegmund_Heinrich_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 245f.", "author": "", "orig_id": 1457901}}, {"model": "metainfo.source", "pk": 2603, "fields": {"orig_filename": "Siegmund_Wilhelm_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248", "author": "", "orig_id": 1457909}}, {"model": "metainfo.source", "pk": 2604, "fields": {"orig_filename": "Siegmund_Wilhelm_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 248f.", "author": "", "orig_id": 1457910}}, {"model": "metainfo.source", "pk": 2605, "fields": {"orig_filename": "Siegris_Emmerich_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457912}}, {"model": "metainfo.source", "pk": 2606, "fields": {"orig_filename": "Siemianowski_Franciszek-Ksawery_1811_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457914}}, {"model": "metainfo.source", "pk": 2607, "fields": {"orig_filename": "Siemianowski_Maksymilian_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 249", "author": "", "orig_id": 1457913}}, {"model": "metainfo.source", "pk": 2608, "fields": {"orig_filename": "Sierakowski_Sebastian_1743_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 250", "author": "", "orig_id": 1457915}}, {"model": "metainfo.source", "pk": 2609, "fields": {"orig_filename": "Sies_Josef-Nikolaus_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 250f.", "author": "", "orig_id": 1457916}}, {"model": "metainfo.source", "pk": 2610, "fields": {"orig_filename": "Sigerus_Emil_1854_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 251", "author": "", "orig_id": 1457981}}, {"model": "metainfo.source", "pk": 2611, "fields": {"orig_filename": "Sigerus_Peter_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 251f.", "author": "", "orig_id": 1457982}}, {"model": "metainfo.source", "pk": 2612, "fields": {"orig_filename": "Sighartner_Anton-Franz_1790_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457983}}, {"model": "metainfo.source", "pk": 2613, "fields": {"orig_filename": "Sighartner_Friedrich_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457984}}, {"model": "metainfo.source", "pk": 2614, "fields": {"orig_filename": "Sighele-Siegenfels_Lorenzo_1761_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252", "author": "", "orig_id": 1457985}}, {"model": "metainfo.source", "pk": 2615, "fields": {"orig_filename": "Sigl_Alfred-Ludwig_1854_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 253", "author": "", "orig_id": 1457986}}, {"model": "metainfo.source", "pk": 2616, "fields": {"orig_filename": "Sigl_Georg_1811_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 252f.", "author": "", "orig_id": 1416630}}, {"model": "metainfo.source", "pk": 2617, "fields": {"orig_filename": "Sigl_Josef_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 253f.", "author": "", "orig_id": 1457987}}, {"model": "metainfo.source", "pk": 2618, "fields": {"orig_filename": "Sigmund-Ilanor_Karl-Ludwig_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254f.", "author": "", "orig_id": 1457992}}, {"model": "metainfo.source", "pk": 2619, "fields": {"orig_filename": "Sigmundt_Friedrich_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 255", "author": "", "orig_id": 1457993}}, {"model": "metainfo.source", "pk": 2620, "fields": {"orig_filename": "Sigmundt_Ludwig_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 255", "author": "", "orig_id": 1457994}}, {"model": "metainfo.source", "pk": 2621, "fields": {"orig_filename": "Sigmund_Adolf_1892_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254", "author": "", "orig_id": 1457990}}, {"model": "metainfo.source", "pk": 2622, "fields": {"orig_filename": "Sigmund_Alois_1853_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 254", "author": "", "orig_id": 1457991}}, {"model": "metainfo.source", "pk": 2623, "fields": {"orig_filename": "Signoroni_Bartolomeo_1797_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 57, 2004), S. 256", "author": "", "orig_id": 1457995}}, {"model": "metainfo.source", "pk": 2624, "fields": {"orig_filename": "Sembratowicz_Joseph_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164", "author": "", "orig_id": 1450647}}, {"model": "metainfo.source", "pk": 2625, "fields": {"orig_filename": "Sembratowicz_Sylvester_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164f.", "author": "", "orig_id": 1450648}}, {"model": "metainfo.source", "pk": 2626, "fields": {"orig_filename": "Sembrich_Marcella_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 165f.", "author": "", "orig_id": 1450649}}, {"model": "metainfo.source", "pk": 2627, "fields": {"orig_filename": "Semeleder_Friedrich-Anton_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 166", "author": "", "orig_id": 1450651}}, {"model": "metainfo.source", "pk": 2628, "fields": {"orig_filename": "Semelrock_Johann-Bapt_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 166f.", "author": "", "orig_id": 1450652}}, {"model": "metainfo.source", "pk": 2629, "fields": {"orig_filename": "Semkowicz_Aleksander_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 167", "author": "", "orig_id": 1450653}}, {"model": "metainfo.source", "pk": 2630, "fields": {"orig_filename": "Semkowicz_Wladyslaw-Jan-Aleksander_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 167f.", "author": "", "orig_id": 1450654}}, {"model": "metainfo.source", "pk": 2631, "fields": {"orig_filename": "Semmelweis_Ignaz-Philipp_1818_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 168f.", "author": "", "orig_id": 1450655}}, {"model": "metainfo.source", "pk": 2632, "fields": {"orig_filename": "Semper_Gottfried_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 169f.", "author": "", "orig_id": 1450656}}, {"model": "metainfo.source", "pk": 2633, "fields": {"orig_filename": "Semper_Hans_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 170", "author": "", "orig_id": 1450657}}, {"model": "metainfo.source", "pk": 2634, "fields": {"orig_filename": "Semsey-Semse_Gustav_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171", "author": "", "orig_id": 1450694}}, {"model": "metainfo.source", "pk": 2635, "fields": {"orig_filename": "Semsey_Andor_1833_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171", "author": "", "orig_id": 1450658}}, {"model": "metainfo.source", "pk": 2636, "fields": {"orig_filename": "Senders_Ernestine_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 172", "author": "", "orig_id": 1450697}}, {"model": "metainfo.source", "pk": 2637, "fields": {"orig_filename": "Senfelder_Leopold_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 172f.", "author": "", "orig_id": 1450698}}, {"model": "metainfo.source", "pk": 2638, "fields": {"orig_filename": "Senfft-Pilsach_Friedrich-Christian-Ludwig_1774_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 173", "author": "", "orig_id": 1450699}}, {"model": "metainfo.source", "pk": 2639, "fields": {"orig_filename": "Senft_Emanuel_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 173f.", "author": "", "orig_id": 1450701}}, {"model": "metainfo.source", "pk": 2640, "fields": {"orig_filename": "Senger_Anton_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 174", "author": "", "orig_id": 1450702}}, {"model": "metainfo.source", "pk": 2641, "fields": {"orig_filename": "Senger_Joseph_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 175", "author": "", "orig_id": 1450703}}, {"model": "metainfo.source", "pk": 2642, "fields": {"orig_filename": "Sengschmitt_Berthold_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 175", "author": "", "orig_id": 1450704}}, {"model": "metainfo.source", "pk": 2643, "fields": {"orig_filename": "Senhofer_Karl_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176", "author": "", "orig_id": 1450705}}, {"model": "metainfo.source", "pk": 2644, "fields": {"orig_filename": "Senitzer_Paul-Maria_1761_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176", "author": "", "orig_id": 1450706}}, {"model": "metainfo.source", "pk": 2645, "fields": {"orig_filename": "Senkowski_Michal-Piotr_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177", "author": "", "orig_id": 1450709}}, {"model": "metainfo.source", "pk": 2646, "fields": {"orig_filename": "Senko_Michal_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 176f.", "author": "", "orig_id": 1450707}}, {"model": "metainfo.source", "pk": 2647, "fields": {"orig_filename": "Senner_Joseph-Henry_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 178", "author": "", "orig_id": 1450717}}, {"model": "metainfo.source", "pk": 2648, "fields": {"orig_filename": "Sennholz_Gustav_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 178f.", "author": "", "orig_id": 1450719}}, {"model": "metainfo.source", "pk": 2649, "fields": {"orig_filename": "Sennovitz_Adolf_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 179", "author": "", "orig_id": 1450720}}, {"model": "metainfo.source", "pk": 2650, "fields": {"orig_filename": "Sennyey-Kis-Sennye_Paul_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 179f.", "author": "", "orig_id": 1450722}}, {"model": "metainfo.source", "pk": 2651, "fields": {"orig_filename": "Senn_Franz_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177", "author": "", "orig_id": 1450711}}, {"model": "metainfo.source", "pk": 2652, "fields": {"orig_filename": "Senn_Johann-Chrysostomos_1795_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 177f.", "author": "", "orig_id": 1450715}}, {"model": "metainfo.source", "pk": 2653, "fields": {"orig_filename": "Senoa_August_1838_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 180", "author": "", "orig_id": 1450759}}, {"model": "metainfo.source", "pk": 2654, "fields": {"orig_filename": "Senoa_Branko_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 180f.", "author": "", "orig_id": 1450761}}, {"model": "metainfo.source", "pk": 2655, "fields": {"orig_filename": "Senoner_Adolf_1806_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 181", "author": "", "orig_id": 1450762}}, {"model": "metainfo.source", "pk": 2656, "fields": {"orig_filename": "Senyei_Karoly_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 181f.", "author": "", "orig_id": 1450764}}, {"model": "metainfo.source", "pk": 2657, "fields": {"orig_filename": "Sen_Edo_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 171f.", "author": "", "orig_id": 1450695}}, {"model": "metainfo.source", "pk": 2658, "fields": {"orig_filename": "Seovaud-Bastide_Friedrich_1759_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182", "author": "", "orig_id": 1450765}}, {"model": "metainfo.source", "pk": 2659, "fields": {"orig_filename": "Sepp_Peter-Damian_1818_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182", "author": "", "orig_id": 1450766}}, {"model": "metainfo.source", "pk": 2660, "fields": {"orig_filename": "Sequens_Franz_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 182f.", "author": "", "orig_id": 1450768}}, {"model": "metainfo.source", "pk": 2661, "fields": {"orig_filename": "Seracky_Frantisek_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 183", "author": "", "orig_id": 1450769}}, {"model": "metainfo.source", "pk": 2662, "fields": {"orig_filename": "Serafini_Filippo_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 183f.", "author": "", "orig_id": 1450771}}, {"model": "metainfo.source", "pk": 2663, "fields": {"orig_filename": "Seraphin_Friedrich-Wilhelm_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 184f.", "author": "", "orig_id": 1450772}}, {"model": "metainfo.source", "pk": 2664, "fields": {"orig_filename": "Serassi_Carlo_1777_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185", "author": "", "orig_id": 1450775}}, {"model": "metainfo.source", "pk": 2665, "fields": {"orig_filename": "Serassi_Giuseppe-Il-Giovane_1750_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185", "author": "", "orig_id": 1450773}}, {"model": "metainfo.source", "pk": 2666, "fields": {"orig_filename": "Seredynski_Hipolit-August_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 185f.", "author": "", "orig_id": 1450777}}, {"model": "metainfo.source", "pk": 2667, "fields": {"orig_filename": "Seredynski_Wladyslaw_1841_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186", "author": "", "orig_id": 1450779}}, {"model": "metainfo.source", "pk": 2668, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Alois_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186f.", "author": "", "orig_id": 1450813}}, {"model": "metainfo.source", "pk": 2669, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Gabriel_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 186f.", "author": "", "orig_id": 1450780}}, {"model": "metainfo.source", "pk": 2670, "fields": {"orig_filename": "Serenyi-Kis-Sereny_Otto-Johann_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 187", "author": "", "orig_id": 1450815}}, {"model": "metainfo.source", "pk": 2671, "fields": {"orig_filename": "Serko_Alfred_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 187f.", "author": "", "orig_id": 1450817}}, {"model": "metainfo.source", "pk": 2672, "fields": {"orig_filename": "Serko_Alfred_1910_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188", "author": "", "orig_id": 1450818}}, {"model": "metainfo.source", "pk": 2673, "fields": {"orig_filename": "Serly_Lajos_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188", "author": "", "orig_id": 1450819}}, {"model": "metainfo.source", "pk": 2674, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Alexandrine_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 189f.", "author": "", "orig_id": 1450824}}, {"model": "metainfo.source", "pk": 2675, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Karl-Johann-Peter_1793_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 188f.", "author": "", "orig_id": 1450821}}, {"model": "metainfo.source", "pk": 2676, "fields": {"orig_filename": "Sermage-Szomszedvar-Medvedgrad_Richard_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 189f.", "author": "", "orig_id": 1450822}}, {"model": "metainfo.source", "pk": 2677, "fields": {"orig_filename": "Sernec_Janko_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 190", "author": "", "orig_id": 1450826}}, {"model": "metainfo.source", "pk": 2678, "fields": {"orig_filename": "Sernec_Josip_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 190", "author": "", "orig_id": 1450827}}, {"model": "metainfo.source", "pk": 2679, "fields": {"orig_filename": "Serner_Walter_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 191", "author": "", "orig_id": 1450829}}, {"model": "metainfo.source", "pk": 2680, "fields": {"orig_filename": "Serravallo_Vittorio_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 191f.", "author": "", "orig_id": 1450831}}, {"model": "metainfo.source", "pk": 2681, "fields": {"orig_filename": "Serres-Wieczffinski_August_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 192", "author": "", "orig_id": 1450832}}, {"model": "metainfo.source", "pk": 2682, "fields": {"orig_filename": "Sersawy_Viktor_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 192f.", "author": "", "orig_id": 1450875}}, {"model": "metainfo.source", "pk": 2683, "fields": {"orig_filename": "Servaes_Franz_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 193", "author": "", "orig_id": 1450876}}, {"model": "metainfo.source", "pk": 2684, "fields": {"orig_filename": "Serwaczynski_Stanislaw_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 193f.", "author": "", "orig_id": 1450877}}, {"model": "metainfo.source", "pk": 2685, "fields": {"orig_filename": "Serwatowski_Ladislaus_1873_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194", "author": "", "orig_id": 1450879}}, {"model": "metainfo.source", "pk": 2686, "fields": {"orig_filename": "Serwatowski_Theodor-Alfred_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194", "author": "", "orig_id": 1450878}}, {"model": "metainfo.source", "pk": 2687, "fields": {"orig_filename": "Serwatowski_Walerian_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 194f.", "author": "", "orig_id": 1450880}}, {"model": "metainfo.source", "pk": 2688, "fields": {"orig_filename": "Sessler-Herzinger_Viktor-Felix_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195f.", "author": "", "orig_id": 1450883}}, {"model": "metainfo.source", "pk": 2689, "fields": {"orig_filename": "Sessler_Josef_1763_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195", "author": "", "orig_id": 1450881}}, {"model": "metainfo.source", "pk": 2690, "fields": {"orig_filename": "Sessler_Max_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 195", "author": "", "orig_id": 1450882}}, {"model": "metainfo.source", "pk": 2691, "fields": {"orig_filename": "Sestan_Ada_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 196f.", "author": "", "orig_id": 1450885}}, {"model": "metainfo.source", "pk": 2692, "fields": {"orig_filename": "Setzer_Franz-Xaver_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198", "author": "", "orig_id": 1450888}}, {"model": "metainfo.source", "pk": 2693, "fields": {"orig_filename": "Setznagel_Alexander_1801_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 198", "author": "", "orig_id": 1450889}}, {"model": "metainfo.source", "pk": 2694, "fields": {"orig_filename": "Setz_Friedrich_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197f.", "author": "", "orig_id": 1450887}}, {"model": "metainfo.source", "pk": 2695, "fields": {"orig_filename": "Seuffert_Eduard_1819_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 199f.", "author": "", "orig_id": 1450891}}, {"model": "metainfo.source", "pk": 2696, "fields": {"orig_filename": "Seuffert_Franz-Martin_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200", "author": "", "orig_id": 1450892}}, {"model": "metainfo.source", "pk": 2697, "fields": {"orig_filename": "Seutter-Loetzen_Carl-Friedrich_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200f.", "author": "", "orig_id": 1450893}}, {"model": "metainfo.source", "pk": 2698, "fields": {"orig_filename": "Seutter-Loetzen_Eduard_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201", "author": "", "orig_id": 1450895}}, {"model": "metainfo.source", "pk": 2699, "fields": {"orig_filename": "Seutter-Loetzen_Hermann_1863_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 200f.", "author": "", "orig_id": 1450894}}, {"model": "metainfo.source", "pk": 2700, "fields": {"orig_filename": "Seutter-Loetzen_Johann-Konrad_1864_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201f.", "author": "", "orig_id": 1450897}}, {"model": "metainfo.source", "pk": 2701, "fields": {"orig_filename": "Seutter-Loetzen_Ruediger_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 201f.", "author": "", "orig_id": 1450896}}, {"model": "metainfo.source", "pk": 2702, "fields": {"orig_filename": "Sevcik_Frantisek_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 202", "author": "", "orig_id": 1450898}}, {"model": "metainfo.source", "pk": 2703, "fields": {"orig_filename": "Sevcik_Franz-Friedrich_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 202f.", "author": "", "orig_id": 1450899}}, {"model": "metainfo.source", "pk": 2704, "fields": {"orig_filename": "Sevcik_Otakar_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 203", "author": "", "orig_id": 1450943}}, {"model": "metainfo.source", "pk": 2705, "fields": {"orig_filename": "Sever_Albert_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 203f.", "author": "", "orig_id": 1450944}}, {"model": "metainfo.source", "pk": 2706, "fields": {"orig_filename": "Seybel_Emil_1816_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 204f.", "author": "", "orig_id": 1450946}}, {"model": "metainfo.source", "pk": 2707, "fields": {"orig_filename": "Seybel_Otto_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450947}}, {"model": "metainfo.source", "pk": 2708, "fields": {"orig_filename": "Seybel_Paul_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450948}}, {"model": "metainfo.source", "pk": 2709, "fields": {"orig_filename": "Seyczek_Lorenz_1798_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205", "author": "", "orig_id": 1450949}}, {"model": "metainfo.source", "pk": 2710, "fields": {"orig_filename": "Seydelmann_Armin_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205f.", "author": "", "orig_id": 1450950}}, {"model": "metainfo.source", "pk": 2711, "fields": {"orig_filename": "Seydelmann_Susanne_1884_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 205f.", "author": "", "orig_id": 1450951}}, {"model": "metainfo.source", "pk": 2712, "fields": {"orig_filename": "Seydler_Anton_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 207f.", "author": "", "orig_id": 1450955}}, {"model": "metainfo.source", "pk": 2713, "fields": {"orig_filename": "Seydler_August-Johann-Friedrich_1849_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 206f.", "author": "", "orig_id": 1450953}}, {"model": "metainfo.source", "pk": 2714, "fields": {"orig_filename": "Seydler_Ludwig-Carl_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 207f.", "author": "", "orig_id": 1450954}}, {"model": "metainfo.source", "pk": 2715, "fields": {"orig_filename": "Seydl_Jenoe_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 206", "author": "", "orig_id": 1450952}}, {"model": "metainfo.source", "pk": 2716, "fields": {"orig_filename": "Seyfarth_Gustaw_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208", "author": "", "orig_id": 1450956}}, {"model": "metainfo.source", "pk": 2717, "fields": {"orig_filename": "Seyfert_Bernhard_1817_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208", "author": "", "orig_id": 1450957}}, {"model": "metainfo.source", "pk": 2718, "fields": {"orig_filename": "Seyffertitz_Carl-Maria-Josef-Leopold_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 208f.", "author": "", "orig_id": 1450958}}, {"model": "metainfo.source", "pk": 2719, "fields": {"orig_filename": "Seyfried_Ferdinand_1811_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210", "author": "", "orig_id": 1450961}}, {"model": "metainfo.source", "pk": 2720, "fields": {"orig_filename": "Seyfried_Ignaz_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 209f.", "author": "", "orig_id": 1450959}}, {"model": "metainfo.source", "pk": 2721, "fields": {"orig_filename": "Seyfried_Josef_1780_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 210", "author": "", "orig_id": 1450960}}, {"model": "metainfo.source", "pk": 2722, "fields": {"orig_filename": "Seykora_Hugo_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1435769}}, {"model": "metainfo.source", "pk": 2723, "fields": {"orig_filename": "Segvic_Matej-Marin_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114", "author": "", "orig_id": 1439477}}, {"model": "metainfo.source", "pk": 2724, "fields": {"orig_filename": "Seibt-Ringenhart_Gottfried_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 115f.", "author": "", "orig_id": 1439480}}, {"model": "metainfo.source", "pk": 2725, "fields": {"orig_filename": "Seib_Wilhelm_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 115", "author": "", "orig_id": 1439479}}, {"model": "metainfo.source", "pk": 2726, "fields": {"orig_filename": "Seidan_Thomas_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116", "author": "", "orig_id": 1439481}}, {"model": "metainfo.source", "pk": 2727, "fields": {"orig_filename": "Seidan_Wenzel_1817_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116", "author": "", "orig_id": 1439482}}, {"model": "metainfo.source", "pk": 2728, "fields": {"orig_filename": "Seidel_Gustav_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 116f.", "author": "", "orig_id": 1439483}}, {"model": "metainfo.source", "pk": 2729, "fields": {"orig_filename": "Seidel_Ludwig-Wilhelm_1802_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117", "author": "", "orig_id": 1439484}}, {"model": "metainfo.source", "pk": 2730, "fields": {"orig_filename": "Seidel_Ludwig_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117", "author": "", "orig_id": 1439485}}, {"model": "metainfo.source", "pk": 2731, "fields": {"orig_filename": "Seidel_Moriz_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 117f.", "author": "", "orig_id": 1439486}}, {"model": "metainfo.source", "pk": 2732, "fields": {"orig_filename": "Seidensacher_Karl_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 118", "author": "", "orig_id": 1439487}}, {"model": "metainfo.source", "pk": 2733, "fields": {"orig_filename": "Seidl-Hohenveldern_Eduard_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129", "author": "", "orig_id": 1451511}}, {"model": "metainfo.source", "pk": 2734, "fields": {"orig_filename": "Seidl-Kraus_Auguste_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 119f.", "author": "", "orig_id": 1439542}}, {"model": "metainfo.source", "pk": 2735, "fields": {"orig_filename": "Seidler-Feuchtenegg_Ernst_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 131f.", "author": "", "orig_id": 1451515}}, {"model": "metainfo.source", "pk": 2736, "fields": {"orig_filename": "Seidler-Wranitzky_Karoline_1790_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 132", "author": "", "orig_id": 1451517}}, {"model": "metainfo.source", "pk": 2737, "fields": {"orig_filename": "Seidler_Adolf_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129f.", "author": "", "orig_id": 1451512}}, {"model": "metainfo.source", "pk": 2738, "fields": {"orig_filename": "Seidler_Friedrich-Johann_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 130", "author": "", "orig_id": 1451513}}, {"model": "metainfo.source", "pk": 2739, "fields": {"orig_filename": "Seidler_Gustav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 130f.", "author": "", "orig_id": 1451514}}, {"model": "metainfo.source", "pk": 2740, "fields": {"orig_filename": "Seidlitz_Julius_1814_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 132f.", "author": "", "orig_id": 1451518}}, {"model": "metainfo.source", "pk": 2741, "fields": {"orig_filename": "Seidl_Adolf-L_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 118f.", "author": "", "orig_id": 1439540}}, {"model": "metainfo.source", "pk": 2742, "fields": {"orig_filename": "Seidl_Anton_1850_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 119f.", "author": "", "orig_id": 1439541}}, {"model": "metainfo.source", "pk": 2743, "fields": {"orig_filename": "Seidl_Carl_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 120", "author": "", "orig_id": 1439544}}, {"model": "metainfo.source", "pk": 2744, "fields": {"orig_filename": "Seidl_Emanuel_1815_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121", "author": "", "orig_id": 1451440}}, {"model": "metainfo.source", "pk": 2745, "fields": {"orig_filename": "Seidl_Ferdinand_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121", "author": "", "orig_id": 1451441}}, {"model": "metainfo.source", "pk": 2746, "fields": {"orig_filename": "Seidl_Ferdo_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 121f.", "author": "", "orig_id": 1451442}}, {"model": "metainfo.source", "pk": 2747, "fields": {"orig_filename": "Seidl_Franz_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 122", "author": "", "orig_id": 1451443}}, {"model": "metainfo.source", "pk": 2748, "fields": {"orig_filename": "Seidl_Ignaz_1788_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123", "author": "", "orig_id": 1451445}}, {"model": "metainfo.source", "pk": 2749, "fields": {"orig_filename": "Seidl_Ignaz_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 122f.", "author": "", "orig_id": 1451444}}, {"model": "metainfo.source", "pk": 2750, "fields": {"orig_filename": "Seidl_Ignaz_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123f.", "author": "", "orig_id": 1451446}}, {"model": "metainfo.source", "pk": 2751, "fields": {"orig_filename": "Seidl_Ignaz_1883_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 123f.", "author": "", "orig_id": 1451447}}, {"model": "metainfo.source", "pk": 2752, "fields": {"orig_filename": "Seidl_Johann-Gabriel_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 124f.", "author": "", "orig_id": 1451448}}, {"model": "metainfo.source", "pk": 2753, "fields": {"orig_filename": "Seidl_Karl_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 125", "author": "", "orig_id": 1451502}}, {"model": "metainfo.source", "pk": 2754, "fields": {"orig_filename": "Seidl_Kurt_1902_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 125f.", "author": "", "orig_id": 1451503}}, {"model": "metainfo.source", "pk": 2755, "fields": {"orig_filename": "Seidl_Max_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126", "author": "", "orig_id": 1451504}}, {"model": "metainfo.source", "pk": 2756, "fields": {"orig_filename": "Seidl_Michael_1767_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126", "author": "", "orig_id": 1451505}}, {"model": "metainfo.source", "pk": 2757, "fields": {"orig_filename": "Seidl_Siegfried_1911_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 126f.", "author": "", "orig_id": 1451506}}, {"model": "metainfo.source", "pk": 2758, "fields": {"orig_filename": "Seidl_Walter_1905_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 127f.", "author": "", "orig_id": 1451507}}, {"model": "metainfo.source", "pk": 2759, "fields": {"orig_filename": "Seidl_Wenzel-Benno_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 128f.", "author": "", "orig_id": 1451509}}, {"model": "metainfo.source", "pk": 2760, "fields": {"orig_filename": "Seidl_Wenzel_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 128", "author": "", "orig_id": 1451508}}, {"model": "metainfo.source", "pk": 2761, "fields": {"orig_filename": "Seidl_Werner_1914_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 129", "author": "", "orig_id": 1451510}}, {"model": "metainfo.source", "pk": 2762, "fields": {"orig_filename": "Seidmann_Karl_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 133", "author": "", "orig_id": 1451520}}, {"model": "metainfo.source", "pk": 2763, "fields": {"orig_filename": "Seidner_Wilhelm_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134", "author": "", "orig_id": 1451521}}, {"model": "metainfo.source", "pk": 2764, "fields": {"orig_filename": "Seifert_Adolf_1826_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134f.", "author": "", "orig_id": 1451523}}, {"model": "metainfo.source", "pk": 2765, "fields": {"orig_filename": "Seifert_Adolf_1902_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 135", "author": "", "orig_id": 1451524}}, {"model": "metainfo.source", "pk": 2766, "fields": {"orig_filename": "Seifert_Alfred_1850_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 135f.", "author": "", "orig_id": 1451525}}, {"model": "metainfo.source", "pk": 2767, "fields": {"orig_filename": "Seifert_Anton_1826_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136", "author": "", "orig_id": 1451526}}, {"model": "metainfo.source", "pk": 2768, "fields": {"orig_filename": "Seifert_Jakub_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136f.", "author": "", "orig_id": 1451527}}, {"model": "metainfo.source", "pk": 2769, "fields": {"orig_filename": "Seifert_Johann_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 137", "author": "", "orig_id": 1451575}}, {"model": "metainfo.source", "pk": 2770, "fields": {"orig_filename": "Seifert_Josef_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 137f.", "author": "", "orig_id": 1451576}}, {"model": "metainfo.source", "pk": 2771, "fields": {"orig_filename": "Seifert_Joseph_1808_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 138", "author": "", "orig_id": 1451577}}, {"model": "metainfo.source", "pk": 2772, "fields": {"orig_filename": "Seifert_Wenzel_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 138f.", "author": "", "orig_id": 1451578}}, {"model": "metainfo.source", "pk": 2773, "fields": {"orig_filename": "Seifman_Piotr-Stefan_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 139", "author": "", "orig_id": 1451579}}, {"model": "metainfo.source", "pk": 2774, "fields": {"orig_filename": "Seif_Theodor_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 134", "author": "", "orig_id": 1451522}}, {"model": "metainfo.source", "pk": 2775, "fields": {"orig_filename": "Seigerschmied_Jozef_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 139f.", "author": "", "orig_id": 1451580}}, {"model": "metainfo.source", "pk": 2776, "fields": {"orig_filename": "Seilern-Aspang_Karl-Maximilian_1825_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451581}}, {"model": "metainfo.source", "pk": 2777, "fields": {"orig_filename": "Seiller_Alois_1833_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451582}}, {"model": "metainfo.source", "pk": 2778, "fields": {"orig_filename": "Seiller_Ernst-Kaspar_1870_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140", "author": "", "orig_id": 1451583}}, {"model": "metainfo.source", "pk": 2779, "fields": {"orig_filename": "Seiller_Johann-Kaspar_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 140f.", "author": "", "orig_id": 1451584}}, {"model": "metainfo.source", "pk": 2780, "fields": {"orig_filename": "Seiner_Franz-Josef_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 141f.", "author": "", "orig_id": 1451585}}, {"model": "metainfo.source", "pk": 2781, "fields": {"orig_filename": "Seipelt_Josepha_1815_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144", "author": "", "orig_id": 1451588}}, {"model": "metainfo.source", "pk": 2782, "fields": {"orig_filename": "Seipelt_Joseph_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 143f.", "author": "", "orig_id": 1451587}}, {"model": "metainfo.source", "pk": 2783, "fields": {"orig_filename": "Seipel_Ignaz_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 142f.", "author": "", "orig_id": 1451586}}, {"model": "metainfo.source", "pk": 2784, "fields": {"orig_filename": "Seipka_Adolf_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144", "author": "", "orig_id": 1451589}}, {"model": "metainfo.source", "pk": 2785, "fields": {"orig_filename": "Seisl_Johann_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 144f.", "author": "", "orig_id": 1451590}}, {"model": "metainfo.source", "pk": 2786, "fields": {"orig_filename": "Seismit-Doda_Federico_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145", "author": "", "orig_id": 1451591}}, {"model": "metainfo.source", "pk": 2787, "fields": {"orig_filename": "Seismit-Doda_Luigi_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145", "author": "", "orig_id": 1451592}}, {"model": "metainfo.source", "pk": 2788, "fields": {"orig_filename": "Seitner_Moritz_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 145f.", "author": "", "orig_id": 1451593}}, {"model": "metainfo.source", "pk": 2789, "fields": {"orig_filename": "Seitz-Treffen_Heinrich_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147", "author": "", "orig_id": 1451595}}, {"model": "metainfo.source", "pk": 2790, "fields": {"orig_filename": "Seitz_Karl_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 146f.", "author": "", "orig_id": 1451594}}, {"model": "metainfo.source", "pk": 2791, "fields": {"orig_filename": "Seivert_Gustav_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147", "author": "", "orig_id": 1451596}}, {"model": "metainfo.source", "pk": 2792, "fields": {"orig_filename": "Sejnost_Josef_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 147f.", "author": "", "orig_id": 1451597}}, {"model": "metainfo.source", "pk": 2793, "fields": {"orig_filename": "Seka_Reinhard_1898_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 148", "author": "", "orig_id": 1451637}}, {"model": "metainfo.source", "pk": 2794, "fields": {"orig_filename": "Sekera_Wenzel-Johann_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 148f.", "author": "", "orig_id": 1451638}}, {"model": "metainfo.source", "pk": 2795, "fields": {"orig_filename": "Sekker_Franz_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 149", "author": "", "orig_id": 1451639}}, {"model": "metainfo.source", "pk": 2796, "fields": {"orig_filename": "Sekyra_Josef_1812_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 149f.", "author": "", "orig_id": 1451640}}, {"model": "metainfo.source", "pk": 2797, "fields": {"orig_filename": "Selb_Josef-Anton_1784_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 150", "author": "", "orig_id": 1451641}}, {"model": "metainfo.source", "pk": 2798, "fields": {"orig_filename": "Selb_Karl_1760_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 150f.", "author": "", "orig_id": 1451642}}, {"model": "metainfo.source", "pk": 2799, "fields": {"orig_filename": "Selch_Emerich_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 151", "author": "", "orig_id": 1451643}}, {"model": "metainfo.source", "pk": 2800, "fields": {"orig_filename": "Seleskowitz_Louise_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 151f.", "author": "", "orig_id": 1451644}}, {"model": "metainfo.source", "pk": 2801, "fields": {"orig_filename": "Seliger_Josef_1870_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 152", "author": "", "orig_id": 1451645}}, {"model": "metainfo.source", "pk": 2802, "fields": {"orig_filename": "Seligmann_Adalbert-Franz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 152f.", "author": "", "orig_id": 1451646}}, {"model": "metainfo.source", "pk": 2803, "fields": {"orig_filename": "Seligmann_Berthold_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153", "author": "", "orig_id": 1451647}}, {"model": "metainfo.source", "pk": 2804, "fields": {"orig_filename": "Seligmann_Franz-Romeo_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 154f.", "author": "", "orig_id": 1451650}}, {"model": "metainfo.source", "pk": 2805, "fields": {"orig_filename": "Seligmann_Franz_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153f.", "author": "", "orig_id": 1451649}}, {"model": "metainfo.source", "pk": 2806, "fields": {"orig_filename": "Seligmann_Julius_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 153", "author": "", "orig_id": 1451648}}, {"model": "metainfo.source", "pk": 2807, "fields": {"orig_filename": "Seligmann_Leopold_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 155", "author": "", "orig_id": 1451651}}, {"model": "metainfo.source", "pk": 2808, "fields": {"orig_filename": "Selim_Josma_1884_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 155f.", "author": "", "orig_id": 1451653}}, {"model": "metainfo.source", "pk": 2809, "fields": {"orig_filename": "Selinger_Engelbert-Maximilian_1802_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 156f.", "author": "", "orig_id": 1451656}}, {"model": "metainfo.source", "pk": 2810, "fields": {"orig_filename": "Seling_Emil_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 156", "author": "", "orig_id": 1451655}}, {"model": "metainfo.source", "pk": 2811, "fields": {"orig_filename": "Seljan_Mirko_1871_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157", "author": "", "orig_id": 1451658}}, {"model": "metainfo.source", "pk": 2812, "fields": {"orig_filename": "Seljan_Stjepan_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157", "author": "", "orig_id": 1451659}}, {"model": "metainfo.source", "pk": 2813, "fields": {"orig_filename": "Sellemond_Peter_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 158", "author": "", "orig_id": 1451661}}, {"model": "metainfo.source", "pk": 2814, "fields": {"orig_filename": "Sellenati_Hans_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 158f.", "author": "", "orig_id": 1450633}}, {"model": "metainfo.source", "pk": 2815, "fields": {"orig_filename": "Sellenati_Mathilde_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 159", "author": "", "orig_id": 1450634}}, {"model": "metainfo.source", "pk": 2816, "fields": {"orig_filename": "Selleny_Joseph_1824_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 159f.", "author": "", "orig_id": 1450637}}, {"model": "metainfo.source", "pk": 2817, "fields": {"orig_filename": "Selle_Friedrich_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 157f.", "author": "", "orig_id": 1451660}}, {"model": "metainfo.source", "pk": 2818, "fields": {"orig_filename": "Sellmann_Franz-Seraph_1747_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 160", "author": "", "orig_id": 1450638}}, {"model": "metainfo.source", "pk": 2819, "fields": {"orig_filename": "Sellner_Joseph_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 160f.", "author": "", "orig_id": 1450639}}, {"model": "metainfo.source", "pk": 2820, "fields": {"orig_filename": "Seltsam_Ferdinand_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 161", "author": "", "orig_id": 1450640}}, {"model": "metainfo.source", "pk": 2821, "fields": {"orig_filename": "Selvatico_Pietro-Estense_1803_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 162f.", "author": "", "orig_id": 1450642}}, {"model": "metainfo.source", "pk": 2822, "fields": {"orig_filename": "Selva_Giovanni-Antonio_1751_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 161f.", "author": "", "orig_id": 1450641}}, {"model": "metainfo.source", "pk": 2823, "fields": {"orig_filename": "Sembera_Alois-Vojtech_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 163f.", "author": "", "orig_id": 1450643}}, {"model": "metainfo.source", "pk": 2824, "fields": {"orig_filename": "Sembera_Joseph_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 164", "author": "", "orig_id": 1450645}}, {"model": "metainfo.source", "pk": 2825, "fields": {"orig_filename": "Semberova_Zdenka_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 163", "author": "", "orig_id": 1450644}}, {"model": "metainfo.source", "pk": 2826, "fields": {"orig_filename": "Schwing_Karel_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 63f.", "author": "", "orig_id": 1440108}}, {"model": "metainfo.source", "pk": 2827, "fields": {"orig_filename": "Schwinner_Josef_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 64f.", "author": "", "orig_id": 1440111}}, {"model": "metainfo.source", "pk": 2828, "fields": {"orig_filename": "Schwippel_Karl_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 65", "author": "", "orig_id": 1440112}}, {"model": "metainfo.source", "pk": 2829, "fields": {"orig_filename": "Schwitzer_Basilius_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 65f.", "author": "", "orig_id": 1440113}}, {"model": "metainfo.source", "pk": 2830, "fields": {"orig_filename": "Schwitzer_Berthold_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66", "author": "", "orig_id": 1440115}}, {"model": "metainfo.source", "pk": 2831, "fields": {"orig_filename": "Schwoy_Franz-Xaver_1783_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 66f.", "author": "", "orig_id": 1440117}}, {"model": "metainfo.source", "pk": 2832, "fields": {"orig_filename": "Scitovsky-Nagy-Ker_Johann-Baptist_1795_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 67", "author": "", "orig_id": 1440118}}, {"model": "metainfo.source", "pk": 2833, "fields": {"orig_filename": "Scolik_Charles_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 67f.", "author": "", "orig_id": 1440120}}, {"model": "metainfo.source", "pk": 2834, "fields": {"orig_filename": "Scomparini_Eugenio_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 68f.", "author": "", "orig_id": 1440122}}, {"model": "metainfo.source", "pk": 2835, "fields": {"orig_filename": "Scopinich-Kuestenhort_Johann-Anton_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69", "author": "", "orig_id": 1440123}}, {"model": "metainfo.source", "pk": 2836, "fields": {"orig_filename": "Scrinzi-Montecroce_Giovanni-Battista_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69", "author": "", "orig_id": 1440125}}, {"model": "metainfo.source", "pk": 2837, "fields": {"orig_filename": "Scudier_Anton_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 69f.", "author": "", "orig_id": 1440127}}, {"model": "metainfo.source", "pk": 2838, "fields": {"orig_filename": "Scurat_Vasyl_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 70", "author": "", "orig_id": 1440128}}, {"model": "metainfo.source", "pk": 2839, "fields": {"orig_filename": "Scutta_Andreas_1806_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 70f.", "author": "", "orig_id": 1440167}}, {"model": "metainfo.source", "pk": 2840, "fields": {"orig_filename": "Scutta_Josefine_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 71f.", "author": "", "orig_id": 1440168}}, {"model": "metainfo.source", "pk": 2841, "fields": {"orig_filename": "Seback_Vinzenz_1805_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 72", "author": "", "orig_id": 1440169}}, {"model": "metainfo.source", "pk": 2842, "fields": {"orig_filename": "Seberini_Andreas_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75", "author": "", "orig_id": 1440183}}, {"model": "metainfo.source", "pk": 2843, "fields": {"orig_filename": "Seberini_Gustav-Adolf_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 72f.", "author": "", "orig_id": 1440175}}, {"model": "metainfo.source", "pk": 2844, "fields": {"orig_filename": "Seberini_Johann-Michael_1825_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 74", "author": "", "orig_id": 1440181}}, {"model": "metainfo.source", "pk": 2845, "fields": {"orig_filename": "Seberini_Johann_1780_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 73f.", "author": "", "orig_id": 1440179}}, {"model": "metainfo.source", "pk": 2846, "fields": {"orig_filename": "Seberini_Ludwig-Sigmund_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 73", "author": "", "orig_id": 1440176}}, {"model": "metainfo.source", "pk": 2847, "fields": {"orig_filename": "Seberini_Ludwig_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 74f.", "author": "", "orig_id": 1440182}}, {"model": "metainfo.source", "pk": 2848, "fields": {"orig_filename": "Sebesta_Milos_1883_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75", "author": "", "orig_id": 1440233}}, {"model": "metainfo.source", "pk": 2849, "fields": {"orig_filename": "Sebesta_Vojtech_1844_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 75f.", "author": "", "orig_id": 1440235}}, {"model": "metainfo.source", "pk": 2850, "fields": {"orig_filename": "Sebestyen_Gyula_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76", "author": "", "orig_id": 1440236}}, {"model": "metainfo.source", "pk": 2851, "fields": {"orig_filename": "Sebor_Josef_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76", "author": "", "orig_id": 1440238}}, {"model": "metainfo.source", "pk": 2852, "fields": {"orig_filename": "Sebor_Karel-Richard_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 76f.", "author": "", "orig_id": 1440239}}, {"model": "metainfo.source", "pk": 2853, "fields": {"orig_filename": "Sebottendorf-Rose_Franz-Ludwig_1741_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 77f.", "author": "", "orig_id": 1440242}}, {"model": "metainfo.source", "pk": 2854, "fields": {"orig_filename": "Sebottendorf-Rose_Karl-Philipp_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 77f.", "author": "", "orig_id": 1440241}}, {"model": "metainfo.source", "pk": 2855, "fields": {"orig_filename": "Sebottendorf-Rose_Moritz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78", "author": "", "orig_id": 1440246}}, {"model": "metainfo.source", "pk": 2856, "fields": {"orig_filename": "Secco-Suardo_Gerolamo_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78f.", "author": "", "orig_id": 1439252}}, {"model": "metainfo.source", "pk": 2857, "fields": {"orig_filename": "Secco_Andrea_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 78", "author": "", "orig_id": 1439251}}, {"model": "metainfo.source", "pk": 2858, "fields": {"orig_filename": "Sechter_Eduard-Engelbert_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 80", "author": "", "orig_id": 1439255}}, {"model": "metainfo.source", "pk": 2859, "fields": {"orig_filename": "Sechter_Simon_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 79f.", "author": "", "orig_id": 1439254}}, {"model": "metainfo.source", "pk": 2860, "fields": {"orig_filename": "Seckendorff-Gudent_Arthur_1845_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 80f.", "author": "", "orig_id": 1439257}}, {"model": "metainfo.source", "pk": 2861, "fields": {"orig_filename": "Secky_Franz_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 81", "author": "", "orig_id": 1439258}}, {"model": "metainfo.source", "pk": 2862, "fields": {"orig_filename": "Sedej_Francisek-Borgia_1854_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 81f.", "author": "", "orig_id": 1439259}}, {"model": "metainfo.source", "pk": 2863, "fields": {"orig_filename": "Sedelmaier_Maria-Johanna_1811_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 82f.", "author": "", "orig_id": 1439260}}, {"model": "metainfo.source", "pk": 2864, "fields": {"orig_filename": "Sederl_Josef_1813_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 83", "author": "", "orig_id": 1439261}}, {"model": "metainfo.source", "pk": 2865, "fields": {"orig_filename": "Sedlacek_August_1843_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 83f.", "author": "", "orig_id": 1439262}}, {"model": "metainfo.source", "pk": 2866, "fields": {"orig_filename": "Sedlacek_Ernestus_1796_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86", "author": "", "orig_id": 1439268}}, {"model": "metainfo.source", "pk": 2867, "fields": {"orig_filename": "Sedlacek_Franz-August_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 84", "author": "", "orig_id": 1439264}}, {"model": "metainfo.source", "pk": 2868, "fields": {"orig_filename": "Sedlacek_Jaroslav_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 84f.", "author": "", "orig_id": 1439265}}, {"model": "metainfo.source", "pk": 2869, "fields": {"orig_filename": "Sedlacek_Josef-Vojtech_1785_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 85", "author": "", "orig_id": 1439266}}, {"model": "metainfo.source", "pk": 2870, "fields": {"orig_filename": "Sedlacek_Wilhelm-Ludwig_1793_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 85f.", "author": "", "orig_id": 1439267}}, {"model": "metainfo.source", "pk": 2871, "fields": {"orig_filename": "Sedlaczek-Harkenfeld_Johann-Nepomuk_1759_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 87f.", "author": "", "orig_id": 1439272}}, {"model": "metainfo.source", "pk": 2872, "fields": {"orig_filename": "Sedlaczek_Emil-Maria_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86", "author": "", "orig_id": 1439269}}, {"model": "metainfo.source", "pk": 2873, "fields": {"orig_filename": "Sedlaczek_Stephan_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 86f.", "author": "", "orig_id": 1439270}}, {"model": "metainfo.source", "pk": 2874, "fields": {"orig_filename": "Sedlaczek_Walter_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 87", "author": "", "orig_id": 1439271}}, {"model": "metainfo.source", "pk": 2875, "fields": {"orig_filename": "Sedlak_Hanns_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 88", "author": "", "orig_id": 1439273}}, {"model": "metainfo.source", "pk": 2876, "fields": {"orig_filename": "Sedlak_Jan_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 88f.", "author": "", "orig_id": 1439274}}, {"model": "metainfo.source", "pk": 2877, "fields": {"orig_filename": "Sedlak_Johann-Nepomuk_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 89f.", "author": "", "orig_id": 1439318}}, {"model": "metainfo.source", "pk": 2878, "fields": {"orig_filename": "Sedlak_Johann_1820_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 89", "author": "", "orig_id": 1439317}}, {"model": "metainfo.source", "pk": 2879, "fields": {"orig_filename": "Sedlak_Karl_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90", "author": "", "orig_id": 1439319}}, {"model": "metainfo.source", "pk": 2880, "fields": {"orig_filename": "Sedlak_Rudolf_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90", "author": "", "orig_id": 1439320}}, {"model": "metainfo.source", "pk": 2881, "fields": {"orig_filename": "Sedlak_Wenzel_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 90f.", "author": "", "orig_id": 1439321}}, {"model": "metainfo.source", "pk": 2882, "fields": {"orig_filename": "Sedlitzky_Wenzel-Adalbert_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 91f.", "author": "", "orig_id": 1439323}}, {"model": "metainfo.source", "pk": 2883, "fields": {"orig_filename": "Sedlmayer_Heinrich-Stephan_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92", "author": "", "orig_id": 1439324}}, {"model": "metainfo.source", "pk": 2884, "fields": {"orig_filename": "Sedlmayer_Wilhelm_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92", "author": "", "orig_id": 1439325}}, {"model": "metainfo.source", "pk": 2885, "fields": {"orig_filename": "Sedlmayr_Ernst-Conrad_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 92f.", "author": "", "orig_id": 1439326}}, {"model": "metainfo.source", "pk": 2886, "fields": {"orig_filename": "Sedlnitzky-Choltitz_Josef_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 93f.", "author": "", "orig_id": 1439327}}, {"model": "metainfo.source", "pk": 2887, "fields": {"orig_filename": "Sedlnitzky-Odrowas-Choltic_Stanislaus_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 94", "author": "", "orig_id": 1439328}}, {"model": "metainfo.source", "pk": 2888, "fields": {"orig_filename": "Sedlnitzky-Odrowaz-Choltitz_Leopold_1787_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 94f.", "author": "", "orig_id": 1439329}}, {"model": "metainfo.source", "pk": 2889, "fields": {"orig_filename": "Seeauer_Wilhelm-Desiderius_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 95", "author": "", "orig_id": 1439330}}, {"model": "metainfo.source", "pk": 2890, "fields": {"orig_filename": "Seebacher_Johann_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 95f.", "author": "", "orig_id": 1439332}}, {"model": "metainfo.source", "pk": 2891, "fields": {"orig_filename": "Seeber_Joseph_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 96", "author": "", "orig_id": 1439333}}, {"model": "metainfo.source", "pk": 2892, "fields": {"orig_filename": "Seeboeck_Philibert_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 96f.", "author": "", "orig_id": 1439334}}, {"model": "metainfo.source", "pk": 2893, "fields": {"orig_filename": "Seefelder_Richard_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 98", "author": "", "orig_id": 1439336}}, {"model": "metainfo.source", "pk": 2894, "fields": {"orig_filename": "Seefeldner_Oskar_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 98f.", "author": "", "orig_id": 1439337}}, {"model": "metainfo.source", "pk": 2895, "fields": {"orig_filename": "Seegen_Joseph_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 99", "author": "", "orig_id": 1439338}}, {"model": "metainfo.source", "pk": 2896, "fields": {"orig_filename": "Seeger_Ludwig-Eduard_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 100", "author": "", "orig_id": 1439340}}, {"model": "metainfo.source", "pk": 2897, "fields": {"orig_filename": "Seeger_Ludwig_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 99f.", "author": "", "orig_id": 1439339}}, {"model": "metainfo.source", "pk": 2898, "fields": {"orig_filename": "Seeger_Rudolf_1888_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 100f.", "author": "", "orig_id": 1439341}}, {"model": "metainfo.source", "pk": 2899, "fields": {"orig_filename": "Seeger_Theodor_1858_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101", "author": "", "orig_id": 1439391}}, {"model": "metainfo.source", "pk": 2900, "fields": {"orig_filename": "Seehofer_Therese_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101", "author": "", "orig_id": 1439393}}, {"model": "metainfo.source", "pk": 2901, "fields": {"orig_filename": "Seeland_Ferdinand-Maximilian_1821_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 101f.", "author": "", "orig_id": 1439394}}, {"model": "metainfo.source", "pk": 2902, "fields": {"orig_filename": "Seeliger_Karl_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 102", "author": "", "orig_id": 1439396}}, {"model": "metainfo.source", "pk": 2903, "fields": {"orig_filename": "Seelos_Franz_1873_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 102f.", "author": "", "orig_id": 1439397}}, {"model": "metainfo.source", "pk": 2904, "fields": {"orig_filename": "Seelos_Franz_1905_1962.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103", "author": "", "orig_id": 1439400}}, {"model": "metainfo.source", "pk": 2905, "fields": {"orig_filename": "Seelos_Gottfried_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103", "author": "", "orig_id": 1439401}}, {"model": "metainfo.source", "pk": 2906, "fields": {"orig_filename": "Seelos_Gustav_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 103f.", "author": "", "orig_id": 1439402}}, {"model": "metainfo.source", "pk": 2907, "fields": {"orig_filename": "Seelos_Ignaz_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 104", "author": "", "orig_id": 1439403}}, {"model": "metainfo.source", "pk": 2908, "fields": {"orig_filename": "Seemann-Treuenwart_Albin_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106", "author": "", "orig_id": 1439407}}, {"model": "metainfo.source", "pk": 2909, "fields": {"orig_filename": "Seemann-Treuenwart_Johanna_1849_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106f.", "author": "", "orig_id": 1439409}}, {"model": "metainfo.source", "pk": 2910, "fields": {"orig_filename": "Seemann-Treuenwart_Karl-Ottokar_1837_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 106", "author": "", "orig_id": 1439408}}, {"model": "metainfo.source", "pk": 2911, "fields": {"orig_filename": "Seemann_Friedrich_1884_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 104f.", "author": "", "orig_id": 1439404}}, {"model": "metainfo.source", "pk": 2912, "fields": {"orig_filename": "Seemann_Herbert_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 105", "author": "", "orig_id": 1439405}}, {"model": "metainfo.source", "pk": 2913, "fields": {"orig_filename": "Seemann_Margarete_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 105f.", "author": "", "orig_id": 1439406}}, {"model": "metainfo.source", "pk": 2914, "fields": {"orig_filename": "Seemueller_Joseph_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 107", "author": "", "orig_id": 1439411}}, {"model": "metainfo.source", "pk": 2915, "fields": {"orig_filename": "Seethaler_Johann-Andreas_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 107f.", "author": "", "orig_id": 1439412}}, {"model": "metainfo.source", "pk": 2916, "fields": {"orig_filename": "Segantini_Giovanni_1858_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 108f.", "author": "", "orig_id": 1439413}}, {"model": "metainfo.source", "pk": 2917, "fields": {"orig_filename": "Segato_Girolamo_1792_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 109f.", "author": "", "orig_id": 1439414}}, {"model": "metainfo.source", "pk": 2918, "fields": {"orig_filename": "Segel_Benjamin_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 110f.", "author": "", "orig_id": 1439468}}, {"model": "metainfo.source", "pk": 2919, "fields": {"orig_filename": "Segel_Isaak_1879_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 110", "author": "", "orig_id": 1439469}}, {"model": "metainfo.source", "pk": 2920, "fields": {"orig_filename": "Segenschmid_Franz-Xaver_1839_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 111f.", "author": "", "orig_id": 1439471}}, {"model": "metainfo.source", "pk": 2921, "fields": {"orig_filename": "Segen_David_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 111", "author": "", "orig_id": 1439470}}, {"model": "metainfo.source", "pk": 2922, "fields": {"orig_filename": "Segur-Cabanac_August-Franz-Marzellus_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112", "author": "", "orig_id": 1439474}}, {"model": "metainfo.source", "pk": 2923, "fields": {"orig_filename": "Segur-Cabanac_August_1881_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112", "author": "", "orig_id": 1439473}}, {"model": "metainfo.source", "pk": 2924, "fields": {"orig_filename": "Segur-Cabanac_Viktor-Julius-Ignaz-August_1869_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 112f.", "author": "", "orig_id": 1439475}}, {"model": "metainfo.source", "pk": 2925, "fields": {"orig_filename": "Segusini_Giuseppe_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 113f.", "author": "", "orig_id": 1439476}}, {"model": "metainfo.source", "pk": 2926, "fields": {"orig_filename": "Schwarz_Franz_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 433f.", "author": "", "orig_id": 1420373}}, {"model": "metainfo.source", "pk": 2927, "fields": {"orig_filename": "Schwarz_Friederike_1910_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 434f.", "author": "", "orig_id": 1420376}}, {"model": "metainfo.source", "pk": 2928, "fields": {"orig_filename": "Schwarz_Gavro_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435", "author": "", "orig_id": 1420377}}, {"model": "metainfo.source", "pk": 2929, "fields": {"orig_filename": "Schwarz_Gottfried_1877_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435", "author": "", "orig_id": 1420378}}, {"model": "metainfo.source", "pk": 2930, "fields": {"orig_filename": "Schwarz_Gyula_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 435f.", "author": "", "orig_id": 1420379}}, {"model": "metainfo.source", "pk": 2931, "fields": {"orig_filename": "Schwarz_Heinrich_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 436f.", "author": "", "orig_id": 1420380}}, {"model": "metainfo.source", "pk": 2932, "fields": {"orig_filename": "Schwarz_Heinrich_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 437f.", "author": "", "orig_id": 1420381}}, {"model": "metainfo.source", "pk": 2933, "fields": {"orig_filename": "Schwarz_Ignaz_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 438", "author": "", "orig_id": 1420437}}, {"model": "metainfo.source", "pk": 2934, "fields": {"orig_filename": "Schwarz_Jakub_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 438f.", "author": "", "orig_id": 1420438}}, {"model": "metainfo.source", "pk": 2935, "fields": {"orig_filename": "Schwarz_Johann-Michael_1774_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439f.", "author": "", "orig_id": 1420440}}, {"model": "metainfo.source", "pk": 2936, "fields": {"orig_filename": "Schwarz_Josef_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 440", "author": "", "orig_id": 1420441}}, {"model": "metainfo.source", "pk": 2937, "fields": {"orig_filename": "Schwarz_Josef_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 440f.", "author": "", "orig_id": 1420442}}, {"model": "metainfo.source", "pk": 2938, "fields": {"orig_filename": "Schwarz_Julie_1798_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 444f.", "author": "", "orig_id": 1420449}}, {"model": "metainfo.source", "pk": 2939, "fields": {"orig_filename": "Schwarz_Julius-Anton_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 441", "author": "", "orig_id": 1420443}}, {"model": "metainfo.source", "pk": 2940, "fields": {"orig_filename": "Schwarz_Karel-Martin_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 441f.", "author": "", "orig_id": 1420444}}, {"model": "metainfo.source", "pk": 2941, "fields": {"orig_filename": "Schwarz_Karl-Wilhelm-Emanuel_1768_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 444f.", "author": "", "orig_id": 1420448}}, {"model": "metainfo.source", "pk": 2942, "fields": {"orig_filename": "Schwarz_Karl_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 442f.", "author": "", "orig_id": 1420445}}, {"model": "metainfo.source", "pk": 2943, "fields": {"orig_filename": "Schwarz_Karl_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 443", "author": "", "orig_id": 1420446}}, {"model": "metainfo.source", "pk": 2944, "fields": {"orig_filename": "Schwarz_Karl_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 443f.", "author": "", "orig_id": 1420447}}, {"model": "metainfo.source", "pk": 2945, "fields": {"orig_filename": "Schwarz_Kaspar_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445f.", "author": "", "orig_id": 1420451}}, {"model": "metainfo.source", "pk": 2946, "fields": {"orig_filename": "Schwarz_Lambert_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 446", "author": "", "orig_id": 1420452}}, {"model": "metainfo.source", "pk": 2947, "fields": {"orig_filename": "Schwarz_Leopold_1812_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 446f.", "author": "", "orig_id": 1420453}}, {"model": "metainfo.source", "pk": 2948, "fields": {"orig_filename": "Schwarz_Leopold_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 447", "author": "", "orig_id": 1420454}}, {"model": "metainfo.source", "pk": 2949, "fields": {"orig_filename": "Schwarz_Ljudevit_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6f.", "author": "", "orig_id": 1439460}}, {"model": "metainfo.source", "pk": 2950, "fields": {"orig_filename": "Schwarz_Ludwig-Franz_1833_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 447f.", "author": "", "orig_id": 1420455}}, {"model": "metainfo.source", "pk": 2951, "fields": {"orig_filename": "Schwarz_Marie_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 1", "author": "", "orig_id": 1439382}}, {"model": "metainfo.source", "pk": 2952, "fields": {"orig_filename": "Schwarz_Oswald_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 1f.", "author": "", "orig_id": 1439383}}, {"model": "metainfo.source", "pk": 2953, "fields": {"orig_filename": "Schwarz_Otto_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 2", "author": "", "orig_id": 1439384}}, {"model": "metainfo.source", "pk": 2954, "fields": {"orig_filename": "Schwarz_Paul_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 2f.", "author": "", "orig_id": 1439387}}, {"model": "metainfo.source", "pk": 2955, "fields": {"orig_filename": "Schwarz_Philipp_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3", "author": "", "orig_id": 1439389}}, {"model": "metainfo.source", "pk": 2956, "fields": {"orig_filename": "Schwarz_Rudolf_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3", "author": "", "orig_id": 1439390}}, {"model": "metainfo.source", "pk": 2957, "fields": {"orig_filename": "Schwarz_Rudolf_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 3f.", "author": "", "orig_id": 1439445}}, {"model": "metainfo.source", "pk": 2958, "fields": {"orig_filename": "Schwarz_Sebastian_1809_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4", "author": "", "orig_id": 1439446}}, {"model": "metainfo.source", "pk": 2959, "fields": {"orig_filename": "Schwarz_Sigismund_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4f.", "author": "", "orig_id": 1439449}}, {"model": "metainfo.source", "pk": 2960, "fields": {"orig_filename": "Schwarz_Stefan_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 5f.", "author": "", "orig_id": 1439454}}, {"model": "metainfo.source", "pk": 2961, "fields": {"orig_filename": "Schwarz_Thiemo_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6", "author": "", "orig_id": 1439455}}, {"model": "metainfo.source", "pk": 2962, "fields": {"orig_filename": "Schwarz_Vilim_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 6f.", "author": "", "orig_id": 1439456}}, {"model": "metainfo.source", "pk": 2963, "fields": {"orig_filename": "Schwarz_Vinzenz_1902_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 7", "author": "", "orig_id": 1439458}}, {"model": "metainfo.source", "pk": 2964, "fields": {"orig_filename": "Schwarz_Wenzel_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 7f.", "author": "", "orig_id": 1439459}}, {"model": "metainfo.source", "pk": 2965, "fields": {"orig_filename": "Schwarz_Wenzel_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 8", "author": "", "orig_id": 1439463}}, {"model": "metainfo.source", "pk": 2966, "fields": {"orig_filename": "Schwathe_Hans_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 35f.", "author": "", "orig_id": 1439666}}, {"model": "metainfo.source", "pk": 2967, "fields": {"orig_filename": "Schwayer_Adolf_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 36", "author": "", "orig_id": 1439667}}, {"model": "metainfo.source", "pk": 2968, "fields": {"orig_filename": "Schwechler_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 36f.", "author": "", "orig_id": 1439668}}, {"model": "metainfo.source", "pk": 2969, "fields": {"orig_filename": "Schwediauer_Franz-Xaver_1748_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 37", "author": "", "orig_id": 1439669}}, {"model": "metainfo.source", "pk": 2970, "fields": {"orig_filename": "Schwegel_Joseph_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 37f.", "author": "", "orig_id": 1439670}}, {"model": "metainfo.source", "pk": 2971, "fields": {"orig_filename": "Schweickhardt_Franz-Xaver-Joseph_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 38f.", "author": "", "orig_id": 1439711}}, {"model": "metainfo.source", "pk": 2972, "fields": {"orig_filename": "Schweidel_Jozsef_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 39", "author": "", "orig_id": 1439712}}, {"model": "metainfo.source", "pk": 2973, "fields": {"orig_filename": "Schweidler_Egon_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 39f.", "author": "", "orig_id": 1439713}}, {"model": "metainfo.source", "pk": 2974, "fields": {"orig_filename": "Schweiger_Alois_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 40", "author": "", "orig_id": 1439714}}, {"model": "metainfo.source", "pk": 2975, "fields": {"orig_filename": "Schweiggl_Josef_1761_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 41", "author": "", "orig_id": 1439717}}, {"model": "metainfo.source", "pk": 2976, "fields": {"orig_filename": "Schweighofer_Carl_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439723}}, {"model": "metainfo.source", "pk": 2977, "fields": {"orig_filename": "Schweighofer_Felix_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 41f.", "author": "", "orig_id": 1439718}}, {"model": "metainfo.source", "pk": 2978, "fields": {"orig_filename": "Schweighofer_Franz-Johann_1797_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 42f.", "author": "", "orig_id": 1439720}}, {"model": "metainfo.source", "pk": 2979, "fields": {"orig_filename": "Schweighofer_Gustav_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 42", "author": "", "orig_id": 1439719}}, {"model": "metainfo.source", "pk": 2980, "fields": {"orig_filename": "Schweighofer_Johann-Michael_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439721}}, {"model": "metainfo.source", "pk": 2981, "fields": {"orig_filename": "Schweighofer_Johann-Michael_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439722}}, {"model": "metainfo.source", "pk": 2982, "fields": {"orig_filename": "Schweighofer_Johann_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43", "author": "", "orig_id": 1439724}}, {"model": "metainfo.source", "pk": 2983, "fields": {"orig_filename": "Schweighofer_Josef_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 43f.", "author": "", "orig_id": 1439725}}, {"model": "metainfo.source", "pk": 2984, "fields": {"orig_filename": "Schweikart_Karl-Gottlieb_1772_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44", "author": "", "orig_id": 1439726}}, {"model": "metainfo.source", "pk": 2985, "fields": {"orig_filename": "Schweitzer_Eduard_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44", "author": "", "orig_id": 1439727}}, {"model": "metainfo.source", "pk": 2986, "fields": {"orig_filename": "Schweitzer_Josef_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45", "author": "", "orig_id": 1439731}}, {"model": "metainfo.source", "pk": 2987, "fields": {"orig_filename": "Schweizer_Albert_1884_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45f.", "author": "", "orig_id": 1439735}}, {"model": "metainfo.source", "pk": 2988, "fields": {"orig_filename": "Schweizer_Carl_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 45f.", "author": "", "orig_id": 1439733}}, {"model": "metainfo.source", "pk": 2989, "fields": {"orig_filename": "Schwemminger_Heinrich_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46", "author": "", "orig_id": 1439785}}, {"model": "metainfo.source", "pk": 2990, "fields": {"orig_filename": "Schwemminger_Joseph_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46", "author": "", "orig_id": 1439787}}, {"model": "metainfo.source", "pk": 2991, "fields": {"orig_filename": "Schwendenwein-Lanauberg_August_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 46f.", "author": "", "orig_id": 1439789}}, {"model": "metainfo.source", "pk": 2992, "fields": {"orig_filename": "Schwender_Carl_1839_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439793}}, {"model": "metainfo.source", "pk": 2993, "fields": {"orig_filename": "Schwender_Karl-Ludwig_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 47f.", "author": "", "orig_id": 1439790}}, {"model": "metainfo.source", "pk": 2994, "fields": {"orig_filename": "Schweninger_Carl_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439798}}, {"model": "metainfo.source", "pk": 2995, "fields": {"orig_filename": "Schweninger_Carl_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439796}}, {"model": "metainfo.source", "pk": 2996, "fields": {"orig_filename": "Schweninger_Rosa_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48", "author": "", "orig_id": 1439797}}, {"model": "metainfo.source", "pk": 2997, "fields": {"orig_filename": "Schwenninger_Florian_1809_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 48f.", "author": "", "orig_id": 1439800}}, {"model": "metainfo.source", "pk": 2998, "fields": {"orig_filename": "Schwerdfeger_Engelbert_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 50", "author": "", "orig_id": 1439805}}, {"model": "metainfo.source", "pk": 2999, "fields": {"orig_filename": "Schwerdfeger_Josef-Adolf_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 50f.", "author": "", "orig_id": 1439807}}, {"model": "metainfo.source", "pk": 3000, "fields": {"orig_filename": "Schwerdling_Johann-Nepomuk_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 51", "author": "", "orig_id": 1439808}}, {"model": "metainfo.source", "pk": 3001, "fields": {"orig_filename": "Schwerdtner_Carl-Maria_1874_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 51f.", "author": "", "orig_id": 1439809}}, {"model": "metainfo.source", "pk": 3002, "fields": {"orig_filename": "Schwerdtner_Hugo_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 52", "author": "", "orig_id": 1439810}}, {"model": "metainfo.source", "pk": 3003, "fields": {"orig_filename": "Schwerdtner_Johann_1834_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 52f.", "author": "", "orig_id": 1439857}}, {"model": "metainfo.source", "pk": 3004, "fields": {"orig_filename": "Schwert_Leopold_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53", "author": "", "orig_id": 1439859}}, {"model": "metainfo.source", "pk": 3005, "fields": {"orig_filename": "Schwerzek_Carl_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53", "author": "", "orig_id": 1439861}}, {"model": "metainfo.source", "pk": 3006, "fields": {"orig_filename": "Schwerzenbach_Carl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 53f.", "author": "", "orig_id": 1439862}}, {"model": "metainfo.source", "pk": 3007, "fields": {"orig_filename": "Schwer_Hans-Arnold_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 49", "author": "", "orig_id": 1439802}}, {"model": "metainfo.source", "pk": 3008, "fields": {"orig_filename": "Schwer_Josef-Alexander_1846_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 49f.", "author": "", "orig_id": 1439803}}, {"model": "metainfo.source", "pk": 3009, "fields": {"orig_filename": "Schwetz_Johann-Baptist_1803_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 54f.", "author": "", "orig_id": 1439865}}, {"model": "metainfo.source", "pk": 3010, "fields": {"orig_filename": "Schwickert_Friedrich_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 56", "author": "", "orig_id": 1439870}}, {"model": "metainfo.source", "pk": 3011, "fields": {"orig_filename": "Schwicker_Johann-Heinrich_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 55f.", "author": "", "orig_id": 1439867}}, {"model": "metainfo.source", "pk": 3012, "fields": {"orig_filename": "Schwiedland_Eugen-Peter_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 56f.", "author": "", "orig_id": 1439871}}, {"model": "metainfo.source", "pk": 3013, "fields": {"orig_filename": "Schwienbacher_Johann_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 57", "author": "", "orig_id": 1439872}}, {"model": "metainfo.source", "pk": 3014, "fields": {"orig_filename": "Schwimmer_Ernoe-Lajos_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 57f.", "author": "", "orig_id": 1439873}}, {"model": "metainfo.source", "pk": 3015, "fields": {"orig_filename": "Schwindel_Bernhard_1787_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 63", "author": "", "orig_id": 1439928}}, {"model": "metainfo.source", "pk": 3016, "fields": {"orig_filename": "Schwind_August_1800_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 58", "author": "", "orig_id": 1439874}}, {"model": "metainfo.source", "pk": 3017, "fields": {"orig_filename": "Schwind_Ernst_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 58f.", "author": "", "orig_id": 1439875}}, {"model": "metainfo.source", "pk": 3018, "fields": {"orig_filename": "Schwind_Franz-Karl-Augustin_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 59f.", "author": "", "orig_id": 1439877}}, {"model": "metainfo.source", "pk": 3019, "fields": {"orig_filename": "Schwind_Gertrud_1878_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62", "author": "", "orig_id": 1439927}}, {"model": "metainfo.source", "pk": 3020, "fields": {"orig_filename": "Schwind_Johann-Franz_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 60", "author": "", "orig_id": 1439878}}, {"model": "metainfo.source", "pk": 3021, "fields": {"orig_filename": "Schwind_Moritz_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 60ff.", "author": "", "orig_id": 1439880}}, {"model": "metainfo.source", "pk": 3022, "fields": {"orig_filename": "Schwind_Wilhelm-August-Moritz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62", "author": "", "orig_id": 1439923}}, {"model": "metainfo.source", "pk": 3023, "fields": {"orig_filename": "Schwind_Wolfgang_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 62f.", "author": "", "orig_id": 1439925}}, {"model": "metainfo.source", "pk": 3024, "fields": {"orig_filename": "Schwingshackl_Johann_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 64", "author": "", "orig_id": 1440109}}, {"model": "metainfo.source", "pk": 3025, "fields": {"orig_filename": "Schwab_Adolf_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 402", "author": "", "orig_id": 1420143}}, {"model": "metainfo.source", "pk": 3026, "fields": {"orig_filename": "Schwab_Adolph_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 402f.", "author": "", "orig_id": 1420196}}, {"model": "metainfo.source", "pk": 3027, "fields": {"orig_filename": "Schwab_Anton_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 403", "author": "", "orig_id": 1420197}}, {"model": "metainfo.source", "pk": 3028, "fields": {"orig_filename": "Schwab_Arnost_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420204}}, {"model": "metainfo.source", "pk": 3029, "fields": {"orig_filename": "Schwab_Erasmus_1831_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 403f.", "author": "", "orig_id": 1420198}}, {"model": "metainfo.source", "pk": 3030, "fields": {"orig_filename": "Schwab_Franz_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 404", "author": "", "orig_id": 1420199}}, {"model": "metainfo.source", "pk": 3031, "fields": {"orig_filename": "Schwab_Johann_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 404f.", "author": "", "orig_id": 1420200}}, {"model": "metainfo.source", "pk": 3032, "fields": {"orig_filename": "Schwab_Josef_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 405f.", "author": "", "orig_id": 1420201}}, {"model": "metainfo.source", "pk": 3033, "fields": {"orig_filename": "Schwab_Loew_1794_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420202}}, {"model": "metainfo.source", "pk": 3034, "fields": {"orig_filename": "Schwab_Vaclav_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 406", "author": "", "orig_id": 1420203}}, {"model": "metainfo.source", "pk": 3035, "fields": {"orig_filename": "Schwach_Caroline_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410", "author": "", "orig_id": 1420213}}, {"model": "metainfo.source", "pk": 3036, "fields": {"orig_filename": "Schwach_Heinrich-August_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410", "author": "", "orig_id": 1420214}}, {"model": "metainfo.source", "pk": 3037, "fields": {"orig_filename": "Schwackhoefer_Franz_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 410f.", "author": "", "orig_id": 1420215}}, {"model": "metainfo.source", "pk": 3038, "fields": {"orig_filename": "Schwaerzler_Franz-Xav_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 411f.", "author": "", "orig_id": 1420216}}, {"model": "metainfo.source", "pk": 3039, "fields": {"orig_filename": "Schwager_Benedikt_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 412", "author": "", "orig_id": 1420217}}, {"model": "metainfo.source", "pk": 3040, "fields": {"orig_filename": "Schwager_Ernst-Otto_1882_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 412f.", "author": "", "orig_id": 1420218}}, {"model": "metainfo.source", "pk": 3041, "fields": {"orig_filename": "Schwager_Richard_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 413", "author": "", "orig_id": 1420219}}, {"model": "metainfo.source", "pk": 3042, "fields": {"orig_filename": "Schwagula_Ignaz_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 413f.", "author": "", "orig_id": 1420279}}, {"model": "metainfo.source", "pk": 3043, "fields": {"orig_filename": "Schwaiger_Franz_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 414", "author": "", "orig_id": 1420280}}, {"model": "metainfo.source", "pk": 3044, "fields": {"orig_filename": "Schwaiger_Hanus_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 414f.", "author": "", "orig_id": 1420281}}, {"model": "metainfo.source", "pk": 3045, "fields": {"orig_filename": "Schwaiger_Michael-Joseph_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 415", "author": "", "orig_id": 1420282}}, {"model": "metainfo.source", "pk": 3046, "fields": {"orig_filename": "Schwaighofer_Franz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 415f.", "author": "", "orig_id": 1420283}}, {"model": "metainfo.source", "pk": 3047, "fields": {"orig_filename": "Schwaighofer_Johann-Bapt_1818_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416", "author": "", "orig_id": 1420285}}, {"model": "metainfo.source", "pk": 3048, "fields": {"orig_filename": "Schwaighofer_Roman_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416", "author": "", "orig_id": 1420284}}, {"model": "metainfo.source", "pk": 3049, "fields": {"orig_filename": "Schwalm_Georg_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 416f.", "author": "", "orig_id": 1420286}}, {"model": "metainfo.source", "pk": 3050, "fields": {"orig_filename": "Schwanda_Mathias_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 417", "author": "", "orig_id": 1420287}}, {"model": "metainfo.source", "pk": 3051, "fields": {"orig_filename": "Schwanenberg_Josef-Franz-Ignaz_1762_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 417f.", "author": "", "orig_id": 1420288}}, {"model": "metainfo.source", "pk": 3052, "fields": {"orig_filename": "Schwanenfeld_Sebastian_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 418", "author": "", "orig_id": 1420289}}, {"model": "metainfo.source", "pk": 3053, "fields": {"orig_filename": "Schwara_Johann_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 418f.", "author": "", "orig_id": 1420290}}, {"model": "metainfo.source", "pk": 3054, "fields": {"orig_filename": "Schwartner_Martin_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 419f.", "author": "", "orig_id": 1420291}}, {"model": "metainfo.source", "pk": 3055, "fields": {"orig_filename": "Schwarz-Hiller-Jiskor_Rudolf_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 8f.", "author": "", "orig_id": 1439465}}, {"model": "metainfo.source", "pk": 3056, "fields": {"orig_filename": "Schwarz-Karsten_Theodor_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 9", "author": "", "orig_id": 1439466}}, {"model": "metainfo.source", "pk": 3057, "fields": {"orig_filename": "Schwarz-Mohrenstern_Gustav-Franziskus-Maria_1809_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 9f.", "author": "", "orig_id": 1439525}}, {"model": "metainfo.source", "pk": 3058, "fields": {"orig_filename": "Schwarz-Mohrenstern_Johann-Jakob_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 10", "author": "", "orig_id": 1439527}}, {"model": "metainfo.source", "pk": 3059, "fields": {"orig_filename": "Schwarz-Senborn_Wilhelm_1816_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 10f.", "author": "", "orig_id": 1439532}}, {"model": "metainfo.source", "pk": 3060, "fields": {"orig_filename": "Schwarz-Waldegg_Fritz_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 11", "author": "", "orig_id": 1439533}}, {"model": "metainfo.source", "pk": 3061, "fields": {"orig_filename": "Schwarzbach_Josef_1853_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 11f.", "author": "", "orig_id": 1439537}}, {"model": "metainfo.source", "pk": 3062, "fields": {"orig_filename": "Schwarzenau_Erwin_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 12", "author": "", "orig_id": 1439538}}, {"model": "metainfo.source", "pk": 3063, "fields": {"orig_filename": "Schwarzenberger_Rupert_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 26f.", "author": "", "orig_id": 1439603}}, {"model": "metainfo.source", "pk": 3064, "fields": {"orig_filename": "Schwarzenberg_Adolf-Josef_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 12f.", "author": "", "orig_id": 1439539}}, {"model": "metainfo.source", "pk": 3065, "fields": {"orig_filename": "Schwarzenberg_Adolph_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13", "author": "", "orig_id": 1439585}}, {"model": "metainfo.source", "pk": 3066, "fields": {"orig_filename": "Schwarzenberg_Edmund_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 13f.", "author": "", "orig_id": 1439587}}, {"model": "metainfo.source", "pk": 3067, "fields": {"orig_filename": "Schwarzenberg_Ernst_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 14f.", "author": "", "orig_id": 1439588}}, {"model": "metainfo.source", "pk": 3068, "fields": {"orig_filename": "Schwarzenberg_Felix_1800_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 15ff.", "author": "", "orig_id": 1439589}}, {"model": "metainfo.source", "pk": 3069, "fields": {"orig_filename": "Schwarzenberg_Felix_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 17", "author": "", "orig_id": 1439590}}, {"model": "metainfo.source", "pk": 3070, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1799_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 18f.", "author": "", "orig_id": 1439591}}, {"model": "metainfo.source", "pk": 3071, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 19f.", "author": "", "orig_id": 1439592}}, {"model": "metainfo.source", "pk": 3072, "fields": {"orig_filename": "Schwarzenberg_Friedrich_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 20f.", "author": "", "orig_id": 1439593}}, {"model": "metainfo.source", "pk": 3073, "fields": {"orig_filename": "Schwarzenberg_Johann-Adolf-Ii_1799_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 21f.", "author": "", "orig_id": 1439594}}, {"model": "metainfo.source", "pk": 3074, "fields": {"orig_filename": "Schwarzenberg_Josef-Ii_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 22", "author": "", "orig_id": 1439595}}, {"model": "metainfo.source", "pk": 3075, "fields": {"orig_filename": "Schwarzenberg_Karl-I-Philipp_1771_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 22f.", "author": "", "orig_id": 1439596}}, {"model": "metainfo.source", "pk": 3076, "fields": {"orig_filename": "Schwarzenberg_Karl-Iii_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 24", "author": "", "orig_id": 1439598}}, {"model": "metainfo.source", "pk": 3077, "fields": {"orig_filename": "Schwarzenberg_Karl-Ii_1802_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 23f.", "author": "", "orig_id": 1439597}}, {"model": "metainfo.source", "pk": 3078, "fields": {"orig_filename": "Schwarzenberg_Karl-Iv_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 24f.", "author": "", "orig_id": 1439599}}, {"model": "metainfo.source", "pk": 3079, "fields": {"orig_filename": "Schwarzenberg_Maria-Anna_1768_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 25", "author": "", "orig_id": 1439600}}, {"model": "metainfo.source", "pk": 3080, "fields": {"orig_filename": "Schwarzenberg_Maria-Karoline_1775_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 25f.", "author": "", "orig_id": 1439601}}, {"model": "metainfo.source", "pk": 3081, "fields": {"orig_filename": "Schwarzenbrunner_Bonifaz_1790_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 27", "author": "", "orig_id": 1439604}}, {"model": "metainfo.source", "pk": 3082, "fields": {"orig_filename": "Schwarzer-Babarcz_Ferenc_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29", "author": "", "orig_id": 1439652}}, {"model": "metainfo.source", "pk": 3083, "fields": {"orig_filename": "Schwarzer-Babarcz_Otto_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29f.", "author": "", "orig_id": 1439653}}, {"model": "metainfo.source", "pk": 3084, "fields": {"orig_filename": "Schwarzer-Heldenstamm_Ernst_1808_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 30f.", "author": "", "orig_id": 1439654}}, {"model": "metainfo.source", "pk": 3085, "fields": {"orig_filename": "Schwarzer-Heldenstamm_Guido_1834_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31", "author": "", "orig_id": 1439656}}, {"model": "metainfo.source", "pk": 3086, "fields": {"orig_filename": "Schwarzer_Alois_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 28", "author": "", "orig_id": 1439606}}, {"model": "metainfo.source", "pk": 3087, "fields": {"orig_filename": "Schwarzer_Franz_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 28", "author": "", "orig_id": 1439649}}, {"model": "metainfo.source", "pk": 3088, "fields": {"orig_filename": "Schwarzer_Johann_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 29", "author": "", "orig_id": 1439651}}, {"model": "metainfo.source", "pk": 3089, "fields": {"orig_filename": "Schwarzgruber_Rudolf_1900_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31", "author": "", "orig_id": 1439657}}, {"model": "metainfo.source", "pk": 3090, "fields": {"orig_filename": "Schwarzinger_Johann_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 31f.", "author": "", "orig_id": 1439658}}, {"model": "metainfo.source", "pk": 3091, "fields": {"orig_filename": "Schwarzinger_Josef_1848_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 32", "author": "", "orig_id": 1439659}}, {"model": "metainfo.source", "pk": 3092, "fields": {"orig_filename": "Schwarzkopf_Gustav_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 32f.", "author": "", "orig_id": 1439660}}, {"model": "metainfo.source", "pk": 3093, "fields": {"orig_filename": "Schwarzmann_David_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 33", "author": "", "orig_id": 1439661}}, {"model": "metainfo.source", "pk": 3094, "fields": {"orig_filename": "Schwarzmann_Joseph-Anton_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 33f.", "author": "", "orig_id": 1439662}}, {"model": "metainfo.source", "pk": 3095, "fields": {"orig_filename": "Schwarzwald_Eugenie_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 34f.", "author": "", "orig_id": 1439663}}, {"model": "metainfo.source", "pk": 3096, "fields": {"orig_filename": "Schwarzwald_Hermann_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 35", "author": "", "orig_id": 1439664}}, {"model": "metainfo.source", "pk": 3097, "fields": {"orig_filename": "Schwarz_Adam_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 420", "author": "", "orig_id": 1420292}}, {"model": "metainfo.source", "pk": 3098, "fields": {"orig_filename": "Schwarz_Adolf_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 420f.", "author": "", "orig_id": 1420293}}, {"model": "metainfo.source", "pk": 3099, "fields": {"orig_filename": "Schwarz_Adolf_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 421", "author": "", "orig_id": 1420294}}, {"model": "metainfo.source", "pk": 3100, "fields": {"orig_filename": "Schwarz_Adolf_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 421f.", "author": "", "orig_id": 1420295}}, {"model": "metainfo.source", "pk": 3101, "fields": {"orig_filename": "Schwarz_Adolf_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 422", "author": "", "orig_id": 1420296}}, {"model": "metainfo.source", "pk": 3102, "fields": {"orig_filename": "Schwarz_Alois_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 422f.", "author": "", "orig_id": 1420297}}, {"model": "metainfo.source", "pk": 3103, "fields": {"orig_filename": "Schwarz_Anton_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 423f.", "author": "", "orig_id": 1420298}}, {"model": "metainfo.source", "pk": 3104, "fields": {"orig_filename": "Schwarz_Anton_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424", "author": "", "orig_id": 1420299}}, {"model": "metainfo.source", "pk": 3105, "fields": {"orig_filename": "Schwarz_Anton_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424", "author": "", "orig_id": 1420300}}, {"model": "metainfo.source", "pk": 3106, "fields": {"orig_filename": "Schwarz_Anton_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 424f.", "author": "", "orig_id": 1420301}}, {"model": "metainfo.source", "pk": 3107, "fields": {"orig_filename": "Schwarz_Antun_1832_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426", "author": "", "orig_id": 1420302}}, {"model": "metainfo.source", "pk": 3108, "fields": {"orig_filename": "Schwarz_Arthur-Zacharias_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426", "author": "", "orig_id": 1420303}}, {"model": "metainfo.source", "pk": 3109, "fields": {"orig_filename": "Schwarz_Arthur_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 431", "author": "", "orig_id": 1420369}}, {"model": "metainfo.source", "pk": 3110, "fields": {"orig_filename": "Schwarz_Bertha_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 426f.", "author": "", "orig_id": 1420359}}, {"model": "metainfo.source", "pk": 3111, "fields": {"orig_filename": "Schwarz_Caspar-Friedrich_1881_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428", "author": "", "orig_id": 1420361}}, {"model": "metainfo.source", "pk": 3112, "fields": {"orig_filename": "Schwarz_Caspar_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 427f.", "author": "", "orig_id": 1420360}}, {"model": "metainfo.source", "pk": 3113, "fields": {"orig_filename": "Schwarz_Cornel_1774_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428", "author": "", "orig_id": 1420362}}, {"model": "metainfo.source", "pk": 3114, "fields": {"orig_filename": "Schwarz_Cornel_1813_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 428f.", "author": "", "orig_id": 1420364}}, {"model": "metainfo.source", "pk": 3115, "fields": {"orig_filename": "Schwarz_David_1850_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 429f.", "author": "", "orig_id": 1420365}}, {"model": "metainfo.source", "pk": 3116, "fields": {"orig_filename": "Schwarz_Eduard_1831_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 430", "author": "", "orig_id": 1420366}}, {"model": "metainfo.source", "pk": 3117, "fields": {"orig_filename": "Schwarz_Eduard_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 430f.", "author": "", "orig_id": 1420367}}, {"model": "metainfo.source", "pk": 3118, "fields": {"orig_filename": "Schwarz_Emil_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 431", "author": "", "orig_id": 1420368}}, {"model": "metainfo.source", "pk": 3119, "fields": {"orig_filename": "Schwarz_Ernst-Matthias_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 432", "author": "", "orig_id": 1420370}}, {"model": "metainfo.source", "pk": 3120, "fields": {"orig_filename": "Schwarz_Ernst_1805_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 4f.", "author": "", "orig_id": 1439450}}, {"model": "metainfo.source", "pk": 3121, "fields": {"orig_filename": "Schwarz_Ferdinand_1852_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 432f.", "author": "", "orig_id": 1420371}}, {"model": "metainfo.source", "pk": 3122, "fields": {"orig_filename": "Schwarz_Frantisek_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 433", "author": "", "orig_id": 1420372}}, {"model": "metainfo.source", "pk": 3123, "fields": {"orig_filename": "Schwarz_Franz-Sales_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 434", "author": "", "orig_id": 1420374}}, {"model": "metainfo.source", "pk": 3124, "fields": {"orig_filename": "Schulz_Benedict_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342", "author": "", "orig_id": 1419772}}, {"model": "metainfo.source", "pk": 3125, "fields": {"orig_filename": "Schulz_Bruno_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342ff.", "author": "", "orig_id": 1419817}}, {"model": "metainfo.source", "pk": 3126, "fields": {"orig_filename": "Schulz_Emil-Emanuel-Eugen_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 344", "author": "", "orig_id": 1419818}}, {"model": "metainfo.source", "pk": 3127, "fields": {"orig_filename": "Schulz_Ferdinand_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 344f.", "author": "", "orig_id": 1419819}}, {"model": "metainfo.source", "pk": 3128, "fields": {"orig_filename": "Schulz_Ferenc_1838_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 345f.", "author": "", "orig_id": 1419821}}, {"model": "metainfo.source", "pk": 3129, "fields": {"orig_filename": "Schulz_Hugo_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 346", "author": "", "orig_id": 1419822}}, {"model": "metainfo.source", "pk": 3130, "fields": {"orig_filename": "Schulz_Izydor_1881_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 346f.", "author": "", "orig_id": 1419823}}, {"model": "metainfo.source", "pk": 3131, "fields": {"orig_filename": "Schulz_Josefine_1791_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 348", "author": "", "orig_id": 1419826}}, {"model": "metainfo.source", "pk": 3132, "fields": {"orig_filename": "Schulz_Josef_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 347f.", "author": "", "orig_id": 1419825}}, {"model": "metainfo.source", "pk": 3133, "fields": {"orig_filename": "Schulz_Karel_1899_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 348f.", "author": "", "orig_id": 1419827}}, {"model": "metainfo.source", "pk": 3134, "fields": {"orig_filename": "Schulz_Katharina_1750_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 349", "author": "", "orig_id": 1419828}}, {"model": "metainfo.source", "pk": 3135, "fields": {"orig_filename": "Schulz_Leopold_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 350", "author": "", "orig_id": 1419829}}, {"model": "metainfo.source", "pk": 3136, "fields": {"orig_filename": "Schulz_Otakar-Eugen_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 350f.", "author": "", "orig_id": 1419830}}, {"model": "metainfo.source", "pk": 3137, "fields": {"orig_filename": "Schulz_Paul_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 351", "author": "", "orig_id": 1419831}}, {"model": "metainfo.source", "pk": 3138, "fields": {"orig_filename": "Schulz_Richard_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 351f.", "author": "", "orig_id": 1419832}}, {"model": "metainfo.source", "pk": 3139, "fields": {"orig_filename": "Schulz_Theodor_1815_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352", "author": "", "orig_id": 1419833}}, {"model": "metainfo.source", "pk": 3140, "fields": {"orig_filename": "Schulz_Theodor_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352", "author": "", "orig_id": 1419834}}, {"model": "metainfo.source", "pk": 3141, "fields": {"orig_filename": "Schulz_Wolfgang_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 352f.", "author": "", "orig_id": 1419835}}, {"model": "metainfo.source", "pk": 3142, "fields": {"orig_filename": "Schumacher-Marienfrid_Anton_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 363f.", "author": "", "orig_id": 1419955}}, {"model": "metainfo.source", "pk": 3143, "fields": {"orig_filename": "Schumacher-Marienfrid_Eckart_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 364f.", "author": "", "orig_id": 1419956}}, {"model": "metainfo.source", "pk": 3144, "fields": {"orig_filename": "Schumacher-Marienfrid_Siegmund_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 365f.", "author": "", "orig_id": 1419957}}, {"model": "metainfo.source", "pk": 3145, "fields": {"orig_filename": "Schumacher-Taennengau_Albert_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 366", "author": "", "orig_id": 1419958}}, {"model": "metainfo.source", "pk": 3146, "fields": {"orig_filename": "Schumacher_Alois_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 358", "author": "", "orig_id": 1419889}}, {"model": "metainfo.source", "pk": 3147, "fields": {"orig_filename": "Schumacher_Andreas_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 358f.", "author": "", "orig_id": 1419895}}, {"model": "metainfo.source", "pk": 3148, "fields": {"orig_filename": "Schumacher_Casimir-Carl_1766_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 359f.", "author": "", "orig_id": 1419896}}, {"model": "metainfo.source", "pk": 3149, "fields": {"orig_filename": "Schumacher_Franz_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360", "author": "", "orig_id": 1419897}}, {"model": "metainfo.source", "pk": 3150, "fields": {"orig_filename": "Schumacher_Ignaz_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360f.", "author": "", "orig_id": 1419899}}, {"model": "metainfo.source", "pk": 3151, "fields": {"orig_filename": "Schumacher_Johann-Nep_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 361f.", "author": "", "orig_id": 1419900}}, {"model": "metainfo.source", "pk": 3152, "fields": {"orig_filename": "Schumacher_Josef_1894_1971.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 360", "author": "", "orig_id": 1419898}}, {"model": "metainfo.source", "pk": 3153, "fields": {"orig_filename": "Schumacher_Oskar_1894_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 362", "author": "", "orig_id": 1419901}}, {"model": "metainfo.source", "pk": 3154, "fields": {"orig_filename": "Schumacher_Philipp_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 362f.", "author": "", "orig_id": 1419954}}, {"model": "metainfo.source", "pk": 3155, "fields": {"orig_filename": "Schumann-Heink_Ernestine_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 368f.", "author": "", "orig_id": 1419961}}, {"model": "metainfo.source", "pk": 3156, "fields": {"orig_filename": "Schumann_Carl_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 366f.", "author": "", "orig_id": 1419959}}, {"model": "metainfo.source", "pk": 3157, "fields": {"orig_filename": "Schumi_Franz_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 369", "author": "", "orig_id": 1419962}}, {"model": "metainfo.source", "pk": 3158, "fields": {"orig_filename": "Schumpeter_Joseph-Alois_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 369ff.", "author": "", "orig_id": 1419963}}, {"model": "metainfo.source", "pk": 3159, "fields": {"orig_filename": "Schunda_Jozsef_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419965}}, {"model": "metainfo.source", "pk": 3160, "fields": {"orig_filename": "Schunda_Karoly_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419966}}, {"model": "metainfo.source", "pk": 3161, "fields": {"orig_filename": "Schunda_Vencel-Jozsef_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371", "author": "", "orig_id": 1419964}}, {"model": "metainfo.source", "pk": 3162, "fields": {"orig_filename": "Schupfer_Francesco_1833_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 371f.", "author": "", "orig_id": 1419968}}, {"model": "metainfo.source", "pk": 3163, "fields": {"orig_filename": "Schuppanzigh-Frankenbach_Emanuel_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 374", "author": "", "orig_id": 1419973}}, {"model": "metainfo.source", "pk": 3164, "fields": {"orig_filename": "Schuppanzigh_Ignaz_1776_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 373f.", "author": "", "orig_id": 1419972}}, {"model": "metainfo.source", "pk": 3165, "fields": {"orig_filename": "Schuppli_Paul_1861_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 374f.", "author": "", "orig_id": 1419974}}, {"model": "metainfo.source", "pk": 3166, "fields": {"orig_filename": "Schupp_Ferdinand_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 372f.", "author": "", "orig_id": 1419970}}, {"model": "metainfo.source", "pk": 3167, "fields": {"orig_filename": "Schupp_Helena-Eleonora-Joanna_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 373", "author": "", "orig_id": 1419971}}, {"model": "metainfo.source", "pk": 3168, "fields": {"orig_filename": "Schurda_Ignaz_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 378", "author": "", "orig_id": 1420039}}, {"model": "metainfo.source", "pk": 3169, "fields": {"orig_filename": "Schurz_Anton-Xaver_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 378f.", "author": "", "orig_id": 1420040}}, {"model": "metainfo.source", "pk": 3170, "fields": {"orig_filename": "Schur_Ferdinand-August-Eduard_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 376f.", "author": "", "orig_id": 1419976}}, {"model": "metainfo.source", "pk": 3171, "fields": {"orig_filename": "Schur_Ferdinand_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 375f.", "author": "", "orig_id": 1419975}}, {"model": "metainfo.source", "pk": 3172, "fields": {"orig_filename": "Schur_Moritz_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 377f.", "author": "", "orig_id": 1420038}}, {"model": "metainfo.source", "pk": 3173, "fields": {"orig_filename": "Schuschny_Grete_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 379", "author": "", "orig_id": 1420042}}, {"model": "metainfo.source", "pk": 3174, "fields": {"orig_filename": "Schuschny_Hans_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 379f.", "author": "", "orig_id": 1420041}}, {"model": "metainfo.source", "pk": 3175, "fields": {"orig_filename": "Schuselka-Bruening_Ida_1817_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 380ff.", "author": "", "orig_id": 1420044}}, {"model": "metainfo.source", "pk": 3176, "fields": {"orig_filename": "Schuselka_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 380", "author": "", "orig_id": 1420043}}, {"model": "metainfo.source", "pk": 3177, "fields": {"orig_filename": "Schustala_Adolf_1855_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 382", "author": "", "orig_id": 1420046}}, {"model": "metainfo.source", "pk": 3178, "fields": {"orig_filename": "Schustala_Ignaz_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 382f.", "author": "", "orig_id": 1420045}}, {"model": "metainfo.source", "pk": 3179, "fields": {"orig_filename": "Schustala_Ignaz_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 383", "author": "", "orig_id": 1420047}}, {"model": "metainfo.source", "pk": 3180, "fields": {"orig_filename": "Schusteckh-Herve_Emanuel_1750_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 383f.", "author": "", "orig_id": 1420048}}, {"model": "metainfo.source", "pk": 3181, "fields": {"orig_filename": "Schuster-Baernrode_Robert_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 398", "author": "", "orig_id": 1420133}}, {"model": "metainfo.source", "pk": 3182, "fields": {"orig_filename": "Schuster-Bonnott_Ferdinand_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 399", "author": "", "orig_id": 1420135}}, {"model": "metainfo.source", "pk": 3183, "fields": {"orig_filename": "Schuster-Bonnott_Maximilian_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 398f.", "author": "", "orig_id": 1420134}}, {"model": "metainfo.source", "pk": 3184, "fields": {"orig_filename": "Schuster-Bonnott_Rudolf_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 399f.", "author": "", "orig_id": 1420136}}, {"model": "metainfo.source", "pk": 3185, "fields": {"orig_filename": "Schuster-Herineanu_Johann_1883_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400", "author": "", "orig_id": 1420138}}, {"model": "metainfo.source", "pk": 3186, "fields": {"orig_filename": "Schustermann_Adolf_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400f.", "author": "", "orig_id": 1420137}}, {"model": "metainfo.source", "pk": 3187, "fields": {"orig_filename": "Schustermann_Josef_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 400f.", "author": "", "orig_id": 1420139}}, {"model": "metainfo.source", "pk": 3188, "fields": {"orig_filename": "Schuster_Andreas_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 384", "author": "", "orig_id": 1420049}}, {"model": "metainfo.source", "pk": 3189, "fields": {"orig_filename": "Schuster_Franz_1904_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 384f.", "author": "", "orig_id": 1420050}}, {"model": "metainfo.source", "pk": 3190, "fields": {"orig_filename": "Schuster_Friedrich-Wilhelm_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 385f.", "author": "", "orig_id": 1420052}}, {"model": "metainfo.source", "pk": 3191, "fields": {"orig_filename": "Schuster_Friedrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 385", "author": "", "orig_id": 1420051}}, {"model": "metainfo.source", "pk": 3192, "fields": {"orig_filename": "Schuster_Heinrich-Maria_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 387f.", "author": "", "orig_id": 1420055}}, {"model": "metainfo.source", "pk": 3193, "fields": {"orig_filename": "Schuster_Heinrich_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 387", "author": "", "orig_id": 1420054}}, {"model": "metainfo.source", "pk": 3194, "fields": {"orig_filename": "Schuster_Ignaz_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 388f.", "author": "", "orig_id": 1420056}}, {"model": "metainfo.source", "pk": 3195, "fields": {"orig_filename": "Schuster_Janos-Konstanz_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390", "author": "", "orig_id": 1420057}}, {"model": "metainfo.source", "pk": 3196, "fields": {"orig_filename": "Schuster_Johann-Leopold_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390", "author": "", "orig_id": 1420058}}, {"model": "metainfo.source", "pk": 3197, "fields": {"orig_filename": "Schuster_Johann-Traugott_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 390f.", "author": "", "orig_id": 1420059}}, {"model": "metainfo.source", "pk": 3198, "fields": {"orig_filename": "Schuster_Josef-Anton_1770_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391f.", "author": "", "orig_id": 1420120}}, {"model": "metainfo.source", "pk": 3199, "fields": {"orig_filename": "Schuster_Josef_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391", "author": "", "orig_id": 1420060}}, {"model": "metainfo.source", "pk": 3200, "fields": {"orig_filename": "Schuster_Joseph_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 392", "author": "", "orig_id": 1420121}}, {"model": "metainfo.source", "pk": 3201, "fields": {"orig_filename": "Schuster_Joseph_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 392f.", "author": "", "orig_id": 1420122}}, {"model": "metainfo.source", "pk": 3202, "fields": {"orig_filename": "Schuster_Karl-Maria_1871_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 391", "author": "", "orig_id": 1420119}}, {"model": "metainfo.source", "pk": 3203, "fields": {"orig_filename": "Schuster_Konstantin_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 393", "author": "", "orig_id": 1420123}}, {"model": "metainfo.source", "pk": 3204, "fields": {"orig_filename": "Schuster_Leopoldine_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 394f.", "author": "", "orig_id": 1420125}}, {"model": "metainfo.source", "pk": 3205, "fields": {"orig_filename": "Schuster_Leopold_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 393f.", "author": "", "orig_id": 1420124}}, {"model": "metainfo.source", "pk": 3206, "fields": {"orig_filename": "Schuster_Mathias_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 395", "author": "", "orig_id": 1420126}}, {"model": "metainfo.source", "pk": 3207, "fields": {"orig_filename": "Schuster_Max_1856_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 395", "author": "", "orig_id": 1420127}}, {"model": "metainfo.source", "pk": 3208, "fields": {"orig_filename": "Schuster_Michael_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 396", "author": "", "orig_id": 1420129}}, {"model": "metainfo.source", "pk": 3209, "fields": {"orig_filename": "Schuster_Richard_1867_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 396f.", "author": "", "orig_id": 1420130}}, {"model": "metainfo.source", "pk": 3210, "fields": {"orig_filename": "Schuster_Vaclav_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 397", "author": "", "orig_id": 1420131}}, {"model": "metainfo.source", "pk": 3211, "fields": {"orig_filename": "Schuster_Valentin-J_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 397f.", "author": "", "orig_id": 1420132}}, {"model": "metainfo.source", "pk": 3212, "fields": {"orig_filename": "Schustler_Karl_1811_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401", "author": "", "orig_id": 1420142}}, {"model": "metainfo.source", "pk": 3213, "fields": {"orig_filename": "Schustler_Moritz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401", "author": "", "orig_id": 1420140}}, {"model": "metainfo.source", "pk": 3214, "fields": {"orig_filename": "Schwaab_Josef_1856_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 401f.", "author": "", "orig_id": 1420141}}, {"model": "metainfo.source", "pk": 3215, "fields": {"orig_filename": "Schwabach_Erik-Ernst_1891_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407", "author": "", "orig_id": 1420205}}, {"model": "metainfo.source", "pk": 3216, "fields": {"orig_filename": "Schwabe-Waisenfreund_Carl_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 408f.", "author": "", "orig_id": 1420209}}, {"model": "metainfo.source", "pk": 3217, "fields": {"orig_filename": "Schwabe-Waisenfreund_Rudolf_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409", "author": "", "orig_id": 1420212}}, {"model": "metainfo.source", "pk": 3218, "fields": {"orig_filename": "Schwabe-Waisenfreund_Vinzenz_1783_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409", "author": "", "orig_id": 1420211}}, {"model": "metainfo.source", "pk": 3219, "fields": {"orig_filename": "Schwabe_Georg-Friedrich_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407f.", "author": "", "orig_id": 1420206}}, {"model": "metainfo.source", "pk": 3220, "fields": {"orig_filename": "Schwabe_Gustav-Adolf_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 408", "author": "", "orig_id": 1420208}}, {"model": "metainfo.source", "pk": 3221, "fields": {"orig_filename": "Schwabe_Karl-Traugott-Friedrich_1819_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 407f.", "author": "", "orig_id": 1420207}}, {"model": "metainfo.source", "pk": 3222, "fields": {"orig_filename": "Schuette-Warensberg_Adolph_1777_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412267}}, {"model": "metainfo.source", "pk": 3223, "fields": {"orig_filename": "Schuettelkopf_Balthasar_1863_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298f.", "author": "", "orig_id": 1412338}}, {"model": "metainfo.source", "pk": 3224, "fields": {"orig_filename": "Schuetzenberger_Alois_1792_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 306f.", "author": "", "orig_id": 1412440}}, {"model": "metainfo.source", "pk": 3225, "fields": {"orig_filename": "Schuetzenhofer_Viktor_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307", "author": "", "orig_id": 1412441}}, {"model": "metainfo.source", "pk": 3226, "fields": {"orig_filename": "Schuetzenhofer_Viktor_1878_1961.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307", "author": "", "orig_id": 1412442}}, {"model": "metainfo.source", "pk": 3227, "fields": {"orig_filename": "Schuetze_Theodor-Reinhold_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 306", "author": "", "orig_id": 1412439}}, {"model": "metainfo.source", "pk": 3228, "fields": {"orig_filename": "Schuetz_Amalie_1803_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 299f.", "author": "", "orig_id": 1412339}}, {"model": "metainfo.source", "pk": 3229, "fields": {"orig_filename": "Schuetz_Anna-Maria_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300", "author": "", "orig_id": 1412341}}, {"model": "metainfo.source", "pk": 3230, "fields": {"orig_filename": "Schuetz_Arnold_1832_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412434}}, {"model": "metainfo.source", "pk": 3231, "fields": {"orig_filename": "Schuetz_Arthur_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 304", "author": "", "orig_id": 1412359}}, {"model": "metainfo.source", "pk": 3232, "fields": {"orig_filename": "Schuetz_Berta_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300f.", "author": "", "orig_id": 1412343}}, {"model": "metainfo.source", "pk": 3233, "fields": {"orig_filename": "Schuetz_Bertha_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412347}}, {"model": "metainfo.source", "pk": 3234, "fields": {"orig_filename": "Schuetz_Christian_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300", "author": "", "orig_id": 1412342}}, {"model": "metainfo.source", "pk": 3235, "fields": {"orig_filename": "Schuetz_Emil_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301f.", "author": "", "orig_id": 1412348}}, {"model": "metainfo.source", "pk": 3236, "fields": {"orig_filename": "Schuetz_Friedrich_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 302", "author": "", "orig_id": 1412349}}, {"model": "metainfo.source", "pk": 3237, "fields": {"orig_filename": "Schuetz_Friedrich_1894_1985.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412351}}, {"model": "metainfo.source", "pk": 3238, "fields": {"orig_filename": "Schuetz_Gustav_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 302f.", "author": "", "orig_id": 1412350}}, {"model": "metainfo.source", "pk": 3239, "fields": {"orig_filename": "Schuetz_Ignatz-Zacharias_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412354}}, {"model": "metainfo.source", "pk": 3240, "fields": {"orig_filename": "Schuetz_Jakob-Abraham_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303f.", "author": "", "orig_id": 1412358}}, {"model": "metainfo.source", "pk": 3241, "fields": {"orig_filename": "Schuetz_Julius_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412356}}, {"model": "metainfo.source", "pk": 3242, "fields": {"orig_filename": "Schuetz_Julius_1876_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 304f.", "author": "", "orig_id": 1412360}}, {"model": "metainfo.source", "pk": 3243, "fields": {"orig_filename": "Schuetz_Karl-August_1790_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 299f.", "author": "", "orig_id": 1412340}}, {"model": "metainfo.source", "pk": 3244, "fields": {"orig_filename": "Schuetz_Karl_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412361}}, {"model": "metainfo.source", "pk": 3245, "fields": {"orig_filename": "Schuetz_Karl_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412355}}, {"model": "metainfo.source", "pk": 3246, "fields": {"orig_filename": "Schuetz_Ludwig-Richard_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305", "author": "", "orig_id": 1412362}}, {"model": "metainfo.source", "pk": 3247, "fields": {"orig_filename": "Schuetz_Ludwig_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412357}}, {"model": "metainfo.source", "pk": 3248, "fields": {"orig_filename": "Schuetz_Maria-Anna_1759_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 305f.", "author": "", "orig_id": 1412435}}, {"model": "metainfo.source", "pk": 3249, "fields": {"orig_filename": "Schuetz_Otto-Heinrich_1901_1981.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412352}}, {"model": "metainfo.source", "pk": 3250, "fields": {"orig_filename": "Schuetz_Paul-J_1891_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 303", "author": "", "orig_id": 1412353}}, {"model": "metainfo.source", "pk": 3251, "fields": {"orig_filename": "Schufinsky_Victor_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 307f.", "author": "", "orig_id": 1412444}}, {"model": "metainfo.source", "pk": 3252, "fields": {"orig_filename": "Schufried_Dominik_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308", "author": "", "orig_id": 1412446}}, {"model": "metainfo.source", "pk": 3253, "fields": {"orig_filename": "Schufried_Jakob_1785_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308", "author": "", "orig_id": 1412445}}, {"model": "metainfo.source", "pk": 3254, "fields": {"orig_filename": "Schuhmeier_Franz_1864_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 311f.", "author": "", "orig_id": 1412454}}, {"model": "metainfo.source", "pk": 3255, "fields": {"orig_filename": "Schuh_Adam_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 308f.", "author": "", "orig_id": 1412447}}, {"model": "metainfo.source", "pk": 3256, "fields": {"orig_filename": "Schuh_Carl_1806_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 309", "author": "", "orig_id": 1412448}}, {"model": "metainfo.source", "pk": 3257, "fields": {"orig_filename": "Schuh_Franz_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 309f.", "author": "", "orig_id": 1412449}}, {"model": "metainfo.source", "pk": 3258, "fields": {"orig_filename": "Schuh_Hermine_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 310", "author": "", "orig_id": 1412450}}, {"model": "metainfo.source", "pk": 3259, "fields": {"orig_filename": "Schuh_Rudolf_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 310f.", "author": "", "orig_id": 1412451}}, {"model": "metainfo.source", "pk": 3260, "fields": {"orig_filename": "Schukic_Lazar_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 312", "author": "", "orig_id": 1412455}}, {"model": "metainfo.source", "pk": 3261, "fields": {"orig_filename": "Schukowitz_Hans_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 312f.", "author": "", "orig_id": 1412456}}, {"model": "metainfo.source", "pk": 3262, "fields": {"orig_filename": "Schulbaum_Moses_1833_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 313", "author": "", "orig_id": 1411047}}, {"model": "metainfo.source", "pk": 3263, "fields": {"orig_filename": "Schuldes_Julius_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 313f.", "author": "", "orig_id": 1411048}}, {"model": "metainfo.source", "pk": 3264, "fields": {"orig_filename": "Schulek_Frigyes_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 314f.", "author": "", "orig_id": 1411049}}, {"model": "metainfo.source", "pk": 3265, "fields": {"orig_filename": "Schulek_Vilmos_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 315f.", "author": "", "orig_id": 1411050}}, {"model": "metainfo.source", "pk": 3266, "fields": {"orig_filename": "Schulenburg_Hans-Daniel-Matthias_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316", "author": "", "orig_id": 1411051}}, {"model": "metainfo.source", "pk": 3267, "fields": {"orig_filename": "Schuler-Libloy_Friedrich_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 319f.", "author": "", "orig_id": 1411059}}, {"model": "metainfo.source", "pk": 3268, "fields": {"orig_filename": "Schuler_Carl-Franz_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316f.", "author": "", "orig_id": 1411052}}, {"model": "metainfo.source", "pk": 3269, "fields": {"orig_filename": "Schuler_Franz_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 317", "author": "", "orig_id": 1411054}}, {"model": "metainfo.source", "pk": 3270, "fields": {"orig_filename": "Schuler_Hans_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 317f.", "author": "", "orig_id": 1411055}}, {"model": "metainfo.source", "pk": 3271, "fields": {"orig_filename": "Schuler_Johann_1770_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 318", "author": "", "orig_id": 1411057}}, {"model": "metainfo.source", "pk": 3272, "fields": {"orig_filename": "Schuler_Johann_1800_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 318f.", "author": "", "orig_id": 1411056}}, {"model": "metainfo.source", "pk": 3273, "fields": {"orig_filename": "Schuler_Josef_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 319", "author": "", "orig_id": 1411058}}, {"model": "metainfo.source", "pk": 3274, "fields": {"orig_filename": "Schuler_Walter_1891_1976.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 316", "author": "", "orig_id": 1411053}}, {"model": "metainfo.source", "pk": 3275, "fields": {"orig_filename": "Schulheim_Hyacinth_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 320", "author": "", "orig_id": 1411060}}, {"model": "metainfo.source", "pk": 3276, "fields": {"orig_filename": "Schulhoff_Erwin_1894_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 322f.", "author": "", "orig_id": 1411065}}, {"model": "metainfo.source", "pk": 3277, "fields": {"orig_filename": "Schulhoff_Julius_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 323", "author": "", "orig_id": 1411066}}, {"model": "metainfo.source", "pk": 3278, "fields": {"orig_filename": "Schulhof_Josef_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 320f.", "author": "", "orig_id": 1411061}}, {"model": "metainfo.source", "pk": 3279, "fields": {"orig_filename": "Schulhof_Leopold_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 321", "author": "", "orig_id": 1411063}}, {"model": "metainfo.source", "pk": 3280, "fields": {"orig_filename": "Schulhof_Stanislav_1864_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 321f.", "author": "", "orig_id": 1411064}}, {"model": "metainfo.source", "pk": 3281, "fields": {"orig_filename": "Schuller-Goetzburg_Eduard_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 330", "author": "", "orig_id": 1411158}}, {"model": "metainfo.source", "pk": 3282, "fields": {"orig_filename": "Schullern-Schrattenhofen_Anton_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 330f.", "author": "", "orig_id": 1411159}}, {"model": "metainfo.source", "pk": 3283, "fields": {"orig_filename": "Schullern-Schrattenhofen_Heinrich_1865_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 331", "author": "", "orig_id": 1411160}}, {"model": "metainfo.source", "pk": 3284, "fields": {"orig_filename": "Schullern-Schrattenhofen_Hermann_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 331f.", "author": "", "orig_id": 1411161}}, {"model": "metainfo.source", "pk": 3285, "fields": {"orig_filename": "Schullerus_Adolf_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 332f.", "author": "", "orig_id": 1411162}}, {"model": "metainfo.source", "pk": 3286, "fields": {"orig_filename": "Schullerus_Eduard_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333", "author": "", "orig_id": 1411163}}, {"model": "metainfo.source", "pk": 3287, "fields": {"orig_filename": "Schullerus_Fritz_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333f.", "author": "", "orig_id": 1411164}}, {"model": "metainfo.source", "pk": 3288, "fields": {"orig_filename": "Schullerus_Gustav-Adolf_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 334", "author": "", "orig_id": 1411166}}, {"model": "metainfo.source", "pk": 3289, "fields": {"orig_filename": "Schullerus_Pauline_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 334f.", "author": "", "orig_id": 1411236}}, {"model": "metainfo.source", "pk": 3290, "fields": {"orig_filename": "Schullerus_Trude_1889_1981.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 333f.", "author": "", "orig_id": 1411165}}, {"model": "metainfo.source", "pk": 3291, "fields": {"orig_filename": "Schuller_Albert_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 323f.", "author": "", "orig_id": 1411069}}, {"model": "metainfo.source", "pk": 3292, "fields": {"orig_filename": "Schuller_Alois_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411071}}, {"model": "metainfo.source", "pk": 3293, "fields": {"orig_filename": "Schuller_Betty_1860_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 327f.", "author": "", "orig_id": 1411152}}, {"model": "metainfo.source", "pk": 3294, "fields": {"orig_filename": "Schuller_Friedrich_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411145}}, {"model": "metainfo.source", "pk": 3295, "fields": {"orig_filename": "Schuller_Georg-Adolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 325f.", "author": "", "orig_id": 1411147}}, {"model": "metainfo.source", "pk": 3296, "fields": {"orig_filename": "Schuller_Georg_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 325", "author": "", "orig_id": 1411146}}, {"model": "metainfo.source", "pk": 3297, "fields": {"orig_filename": "Schuller_Guenther_1904_1995.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 324", "author": "", "orig_id": 1411070}}, {"model": "metainfo.source", "pk": 3298, "fields": {"orig_filename": "Schuller_Gustav_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326", "author": "", "orig_id": 1411148}}, {"model": "metainfo.source", "pk": 3299, "fields": {"orig_filename": "Schuller_Hermann_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326", "author": "", "orig_id": 1411149}}, {"model": "metainfo.source", "pk": 3300, "fields": {"orig_filename": "Schuller_Johann-Karl_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 326f.", "author": "", "orig_id": 1411150}}, {"model": "metainfo.source", "pk": 3301, "fields": {"orig_filename": "Schuller_Ludwig-Friedrich_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 327f.", "author": "", "orig_id": 1411151}}, {"model": "metainfo.source", "pk": 3302, "fields": {"orig_filename": "Schuller_Marie_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 328", "author": "", "orig_id": 1411153}}, {"model": "metainfo.source", "pk": 3303, "fields": {"orig_filename": "Schuller_Michael-Gottlieb_1802_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 328f.", "author": "", "orig_id": 1411154}}, {"model": "metainfo.source", "pk": 3304, "fields": {"orig_filename": "Schuller_Moriz_1825_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329", "author": "", "orig_id": 1411155}}, {"model": "metainfo.source", "pk": 3305, "fields": {"orig_filename": "Schuller_Richard_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329", "author": "", "orig_id": 1411156}}, {"model": "metainfo.source", "pk": 3306, "fields": {"orig_filename": "Schuller_Wenzel_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 329f.", "author": "", "orig_id": 1411157}}, {"model": "metainfo.source", "pk": 3307, "fields": {"orig_filename": "Schuloff_Robert_1883_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 335f.", "author": "", "orig_id": 1411237}}, {"model": "metainfo.source", "pk": 3308, "fields": {"orig_filename": "Schuloff_Theodor_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 336", "author": "", "orig_id": 1411238}}, {"model": "metainfo.source", "pk": 3309, "fields": {"orig_filename": "Schulpe-Toeroekkanizsa_Georg_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 336f.", "author": "", "orig_id": 1411239}}, {"model": "metainfo.source", "pk": 3310, "fields": {"orig_filename": "Schultes_Joseph-August_1773_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 338f.", "author": "", "orig_id": 1419764}}, {"model": "metainfo.source", "pk": 3311, "fields": {"orig_filename": "Schultes_Julius-Hermann_1804_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 339f.", "author": "", "orig_id": 1419765}}, {"model": "metainfo.source", "pk": 3312, "fields": {"orig_filename": "Schultes_Sigismund_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 340", "author": "", "orig_id": 1419767}}, {"model": "metainfo.source", "pk": 3313, "fields": {"orig_filename": "Schulte_Albert_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 337", "author": "", "orig_id": 1419761}}, {"model": "metainfo.source", "pk": 3314, "fields": {"orig_filename": "Schulte_Julius_1881_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 337f.", "author": "", "orig_id": 1419763}}, {"model": "metainfo.source", "pk": 3315, "fields": {"orig_filename": "Schultheiss_Ernst_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 340f.", "author": "", "orig_id": 1419768}}, {"model": "metainfo.source", "pk": 3316, "fields": {"orig_filename": "Schultzen_Anna_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 341", "author": "", "orig_id": 1419769}}, {"model": "metainfo.source", "pk": 3317, "fields": {"orig_filename": "Schulz-Strassnitzki_Leopold-Karl_1803_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 353f.", "author": "", "orig_id": 1419838}}, {"model": "metainfo.source", "pk": 3318, "fields": {"orig_filename": "Schulzer-Mueggenburg_Stephan_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 356f.", "author": "", "orig_id": 1419886}}, {"model": "metainfo.source", "pk": 3319, "fields": {"orig_filename": "Schulze_Franz-Eilhard_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 354f.", "author": "", "orig_id": 1419884}}, {"model": "metainfo.source", "pk": 3320, "fields": {"orig_filename": "Schulze_Karoline_1745_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 355f.", "author": "", "orig_id": 1419885}}, {"model": "metainfo.source", "pk": 3321, "fields": {"orig_filename": "Schulzig_Franz-Joseph-Florian_1787_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 357", "author": "", "orig_id": 1419887}}, {"model": "metainfo.source", "pk": 3322, "fields": {"orig_filename": "Schulzova_Anezka_1868_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 357f.", "author": "", "orig_id": 1419888}}, {"model": "metainfo.source", "pk": 3323, "fields": {"orig_filename": "Schulz_Alwin_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 341f.", "author": "", "orig_id": 1419770}}, {"model": "metainfo.source", "pk": 3324, "fields": {"orig_filename": "Schulz_Antonin_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 342", "author": "", "orig_id": 1419771}}, {"model": "metainfo.source", "pk": 3325, "fields": {"orig_filename": "Schroff_Emanuel-Stephan_1799_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 249f.", "author": "", "orig_id": 1411875}}, {"model": "metainfo.source", "pk": 3326, "fields": {"orig_filename": "Schroff_Karl-Damian_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 250f.", "author": "", "orig_id": 1411877}}, {"model": "metainfo.source", "pk": 3327, "fields": {"orig_filename": "Schroff_Karl_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 250", "author": "", "orig_id": 1411876}}, {"model": "metainfo.source", "pk": 3328, "fields": {"orig_filename": "Schroll_Anton_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 251f.", "author": "", "orig_id": 1411878}}, {"model": "metainfo.source", "pk": 3329, "fields": {"orig_filename": "Schroll_Beda_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 252f.", "author": "", "orig_id": 1411879}}, {"model": "metainfo.source", "pk": 3330, "fields": {"orig_filename": "Schroll_Benedict_1790_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253", "author": "", "orig_id": 1411880}}, {"model": "metainfo.source", "pk": 3331, "fields": {"orig_filename": "Schroll_Benedikt_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253", "author": "", "orig_id": 1411881}}, {"model": "metainfo.source", "pk": 3332, "fields": {"orig_filename": "Schroll_Caspar-Melchior-Balthasar_1756_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 253f.", "author": "", "orig_id": 1411882}}, {"model": "metainfo.source", "pk": 3333, "fields": {"orig_filename": "Schroll_Josef_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 254", "author": "", "orig_id": 1411883}}, {"model": "metainfo.source", "pk": 3334, "fields": {"orig_filename": "Schroth_Albine_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 254f.", "author": "", "orig_id": 1411884}}, {"model": "metainfo.source", "pk": 3335, "fields": {"orig_filename": "Schroth_Alexander_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256", "author": "", "orig_id": 1411888}}, {"model": "metainfo.source", "pk": 3336, "fields": {"orig_filename": "Schroth_Andreas_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255", "author": "", "orig_id": 1411885}}, {"model": "metainfo.source", "pk": 3337, "fields": {"orig_filename": "Schroth_Emanuel_1832_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255", "author": "", "orig_id": 1411886}}, {"model": "metainfo.source", "pk": 3338, "fields": {"orig_filename": "Schroth_Eugen_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 255f.", "author": "", "orig_id": 1411887}}, {"model": "metainfo.source", "pk": 3339, "fields": {"orig_filename": "Schroth_Jakob_1773_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256", "author": "", "orig_id": 1411889}}, {"model": "metainfo.source", "pk": 3340, "fields": {"orig_filename": "Schroth_Johann_1798_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 256f.", "author": "", "orig_id": 1411961}}, {"model": "metainfo.source", "pk": 3341, "fields": {"orig_filename": "Schroth_Karl_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411962}}, {"model": "metainfo.source", "pk": 3342, "fields": {"orig_filename": "Schroth_Karl_1898_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411963}}, {"model": "metainfo.source", "pk": 3343, "fields": {"orig_filename": "Schrottenbach_Heinrich_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 262", "author": "", "orig_id": 1411977}}, {"model": "metainfo.source", "pk": 3344, "fields": {"orig_filename": "Schrottenbach_Heinz_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 262f.", "author": "", "orig_id": 1411978}}, {"model": "metainfo.source", "pk": 3345, "fields": {"orig_filename": "Schrotter_Ignaz_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 263", "author": "", "orig_id": 1411979}}, {"model": "metainfo.source", "pk": 3346, "fields": {"orig_filename": "Schrott_Alois_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257f.", "author": "", "orig_id": 1411965}}, {"model": "metainfo.source", "pk": 3347, "fields": {"orig_filename": "Schrott_Anton_1801_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 257", "author": "", "orig_id": 1411966}}, {"model": "metainfo.source", "pk": 3348, "fields": {"orig_filename": "Schrott_Christian_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258f.", "author": "", "orig_id": 1411969}}, {"model": "metainfo.source", "pk": 3349, "fields": {"orig_filename": "Schrott_Ferdinand_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 259", "author": "", "orig_id": 1411970}}, {"model": "metainfo.source", "pk": 3350, "fields": {"orig_filename": "Schrott_Hans_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 259f.", "author": "", "orig_id": 1411971}}, {"model": "metainfo.source", "pk": 3351, "fields": {"orig_filename": "Schrott_Jakob_1804_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 260", "author": "", "orig_id": 1411972}}, {"model": "metainfo.source", "pk": 3352, "fields": {"orig_filename": "Schrott_Josip_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 260f.", "author": "", "orig_id": 1411973}}, {"model": "metainfo.source", "pk": 3353, "fields": {"orig_filename": "Schrott_Maria_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 261", "author": "", "orig_id": 1411974}}, {"model": "metainfo.source", "pk": 3354, "fields": {"orig_filename": "Schrott_Othmar_1883_1963.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258", "author": "", "orig_id": 1411968}}, {"model": "metainfo.source", "pk": 3355, "fields": {"orig_filename": "Schrott_Vincenz_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 261f.", "author": "", "orig_id": 1411975}}, {"model": "metainfo.source", "pk": 3356, "fields": {"orig_filename": "Schrotzberg_Franz_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 263f.", "author": "", "orig_id": 1411980}}, {"model": "metainfo.source", "pk": 3357, "fields": {"orig_filename": "Schruf_Toni_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 264f.", "author": "", "orig_id": 1411981}}, {"model": "metainfo.source", "pk": 3358, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Emil_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 265f.", "author": "", "orig_id": 1411983}}, {"model": "metainfo.source", "pk": 3359, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Lothar_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 266f.", "author": "", "orig_id": 1412052}}, {"model": "metainfo.source", "pk": 3360, "fields": {"orig_filename": "Schrutka-Rechtenstamm_Marianne_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 267", "author": "", "orig_id": 1412053}}, {"model": "metainfo.source", "pk": 3361, "fields": {"orig_filename": "Schrutka_Ignaz_1802_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 266", "author": "", "orig_id": 1411984}}, {"model": "metainfo.source", "pk": 3362, "fields": {"orig_filename": "Schrutka_Mauritius-Kanicensis_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 265", "author": "", "orig_id": 1411982}}, {"model": "metainfo.source", "pk": 3363, "fields": {"orig_filename": "Schrutz_Andreas_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 267f.", "author": "", "orig_id": 1412054}}, {"model": "metainfo.source", "pk": 3364, "fields": {"orig_filename": "Schrutz_Demetrius_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 268", "author": "", "orig_id": 1412055}}, {"model": "metainfo.source", "pk": 3365, "fields": {"orig_filename": "Schubauer_Josef_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 268f.", "author": "", "orig_id": 1412056}}, {"model": "metainfo.source", "pk": 3366, "fields": {"orig_filename": "Schubert-Soldern_Eduard-Viktor_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 277f.", "author": "", "orig_id": 1412150}}, {"model": "metainfo.source", "pk": 3367, "fields": {"orig_filename": "Schubert-Soldern_Fortunat_1867_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278f.", "author": "", "orig_id": 1412154}}, {"model": "metainfo.source", "pk": 3368, "fields": {"orig_filename": "Schubert-Soldern_Rainer_1900_1974.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 279", "author": "", "orig_id": 1412155}}, {"model": "metainfo.source", "pk": 3369, "fields": {"orig_filename": "Schubert-Soldern_Victor_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278", "author": "", "orig_id": 1412153}}, {"model": "metainfo.source", "pk": 3370, "fields": {"orig_filename": "Schubert_Andreas-Theodor_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412065}}, {"model": "metainfo.source", "pk": 3371, "fields": {"orig_filename": "Schubert_Andreas_1767_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 269f.", "author": "", "orig_id": 1412057}}, {"model": "metainfo.source", "pk": 3372, "fields": {"orig_filename": "Schubert_Andreas_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 269f.", "author": "", "orig_id": 1412058}}, {"model": "metainfo.source", "pk": 3373, "fields": {"orig_filename": "Schubert_Ferdinand-Lukas_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 270f.", "author": "", "orig_id": 1412060}}, {"model": "metainfo.source", "pk": 3374, "fields": {"orig_filename": "Schubert_Ferdinand_1824_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 270", "author": "", "orig_id": 1412059}}, {"model": "metainfo.source", "pk": 3375, "fields": {"orig_filename": "Schubert_Franz-Peter_1797_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 271ff.", "author": "", "orig_id": 1412061}}, {"model": "metainfo.source", "pk": 3376, "fields": {"orig_filename": "Schubert_Franz-Theodor_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412062}}, {"model": "metainfo.source", "pk": 3377, "fields": {"orig_filename": "Schubert_Heinrich-Karl_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274f.", "author": "", "orig_id": 1412066}}, {"model": "metainfo.source", "pk": 3378, "fields": {"orig_filename": "Schubert_Hermann_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275", "author": "", "orig_id": 1412067}}, {"model": "metainfo.source", "pk": 3379, "fields": {"orig_filename": "Schubert_Ignaz_1785_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412063}}, {"model": "metainfo.source", "pk": 3380, "fields": {"orig_filename": "Schubert_Joseph_1754_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275", "author": "", "orig_id": 1412068}}, {"model": "metainfo.source", "pk": 3381, "fields": {"orig_filename": "Schubert_Karl_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 275f.", "author": "", "orig_id": 1412069}}, {"model": "metainfo.source", "pk": 3382, "fields": {"orig_filename": "Schubert_Karl_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 276", "author": "", "orig_id": 1412071}}, {"model": "metainfo.source", "pk": 3383, "fields": {"orig_filename": "Schubert_Maria-Theresia_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 274", "author": "", "orig_id": 1412064}}, {"model": "metainfo.source", "pk": 3384, "fields": {"orig_filename": "Schubert_Ottokar_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 276f.", "author": "", "orig_id": 1412072}}, {"model": "metainfo.source", "pk": 3385, "fields": {"orig_filename": "Schubert_Otto_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 278", "author": "", "orig_id": 1412152}}, {"model": "metainfo.source", "pk": 3386, "fields": {"orig_filename": "Schubert_Richard_1876_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 277", "author": "", "orig_id": 1412149}}, {"model": "metainfo.source", "pk": 3387, "fields": {"orig_filename": "Schuchardt_Hugo_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 282f.", "author": "", "orig_id": 1412164}}, {"model": "metainfo.source", "pk": 3388, "fields": {"orig_filename": "Schuchart_August_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 283f.", "author": "", "orig_id": 1412165}}, {"model": "metainfo.source", "pk": 3389, "fields": {"orig_filename": "Schuchter_Joseph_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 284", "author": "", "orig_id": 1412166}}, {"model": "metainfo.source", "pk": 3390, "fields": {"orig_filename": "Schuch_Carl-Eduard_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 279f.", "author": "", "orig_id": 1412157}}, {"model": "metainfo.source", "pk": 3391, "fields": {"orig_filename": "Schuch_Clementine_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 280f.", "author": "", "orig_id": 1412158}}, {"model": "metainfo.source", "pk": 3392, "fields": {"orig_filename": "Schuch_Ernst-Gottfried_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 281", "author": "", "orig_id": 1412159}}, {"model": "metainfo.source", "pk": 3393, "fields": {"orig_filename": "Schuch_Julius-Maria-Franz_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 281f.", "author": "", "orig_id": 1412160}}, {"model": "metainfo.source", "pk": 3394, "fields": {"orig_filename": "Schuch_Leopold_1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 282", "author": "", "orig_id": 1412161}}, {"model": "metainfo.source", "pk": 3395, "fields": {"orig_filename": "Schudrich_Jakub_1906_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285", "author": "", "orig_id": 1412167}}, {"model": "metainfo.source", "pk": 3396, "fields": {"orig_filename": "Schuech-Capanema_Wilhelm_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285f.", "author": "", "orig_id": 1412169}}, {"model": "metainfo.source", "pk": 3397, "fields": {"orig_filename": "Schuecht_Franz_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286", "author": "", "orig_id": 1412170}}, {"model": "metainfo.source", "pk": 3398, "fields": {"orig_filename": "Schuech_Rochus_1788_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 285f.", "author": "", "orig_id": 1412168}}, {"model": "metainfo.source", "pk": 3399, "fields": {"orig_filename": "Schuecker_Heinrich_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287", "author": "", "orig_id": 1412172}}, {"model": "metainfo.source", "pk": 3400, "fields": {"orig_filename": "Schuecker_Joseph-E_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287", "author": "", "orig_id": 1412173}}, {"model": "metainfo.source", "pk": 3401, "fields": {"orig_filename": "Schuecker_Karl_1836_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 287f.", "author": "", "orig_id": 1412174}}, {"model": "metainfo.source", "pk": 3402, "fields": {"orig_filename": "Schuecker_Zdenko_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 288", "author": "", "orig_id": 1412175}}, {"model": "metainfo.source", "pk": 3403, "fields": {"orig_filename": "Schuecking_Alfred_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 288f.", "author": "", "orig_id": 1412244}}, {"model": "metainfo.source", "pk": 3404, "fields": {"orig_filename": "Schuecktanz_Anton_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289", "author": "", "orig_id": 1412246}}, {"model": "metainfo.source", "pk": 3405, "fields": {"orig_filename": "Schuecktanz_Karl_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289", "author": "", "orig_id": 1412245}}, {"model": "metainfo.source", "pk": 3406, "fields": {"orig_filename": "Schueler_Friedrich-Julius_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 289f.", "author": "", "orig_id": 1412247}}, {"model": "metainfo.source", "pk": 3407, "fields": {"orig_filename": "Schueler_Max-Joseph_1818_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 290", "author": "", "orig_id": 1412248}}, {"model": "metainfo.source", "pk": 3408, "fields": {"orig_filename": "Schueller_Franz_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 290f.", "author": "", "orig_id": 1412249}}, {"model": "metainfo.source", "pk": 3409, "fields": {"orig_filename": "Schueller_Maximilian_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291", "author": "", "orig_id": 1412251}}, {"model": "metainfo.source", "pk": 3410, "fields": {"orig_filename": "Schueller_Otto-Alois_1892_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291", "author": "", "orig_id": 1412250}}, {"model": "metainfo.source", "pk": 3411, "fields": {"orig_filename": "Schuenke_Robert_1855_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 291f.", "author": "", "orig_id": 1412252}}, {"model": "metainfo.source", "pk": 3412, "fields": {"orig_filename": "Schuerer-Waldheim_Anton_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 292f.", "author": "", "orig_id": 1412254}}, {"model": "metainfo.source", "pk": 3413, "fields": {"orig_filename": "Schuerer-Waldheim_Anton_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294", "author": "", "orig_id": 1412259}}, {"model": "metainfo.source", "pk": 3414, "fields": {"orig_filename": "Schuerer-Waldheim_Fritz_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 293f.", "author": "", "orig_id": 1412256}}, {"model": "metainfo.source", "pk": 3415, "fields": {"orig_filename": "Schuerer-Waldheim_Helena_1859_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 293", "author": "", "orig_id": 1412255}}, {"model": "metainfo.source", "pk": 3416, "fields": {"orig_filename": "Schuerer-Waldheim_Ludwig_1861_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 295", "author": "", "orig_id": 1412260}}, {"model": "metainfo.source", "pk": 3417, "fields": {"orig_filename": "Schuerer-Waldheim_Max_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294", "author": "", "orig_id": 1412257}}, {"model": "metainfo.source", "pk": 3418, "fields": {"orig_filename": "Schuerer-Waldheim_Rudolf_1832_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 294f.", "author": "", "orig_id": 1412258}}, {"model": "metainfo.source", "pk": 3419, "fields": {"orig_filename": "Schuerer_Franz-De-Paula_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 292", "author": "", "orig_id": 1412253}}, {"model": "metainfo.source", "pk": 3420, "fields": {"orig_filename": "Schuerff_Hans_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 295f.", "author": "", "orig_id": 1412261}}, {"model": "metainfo.source", "pk": 3421, "fields": {"orig_filename": "Schuermayer_Ignaz-Heinrich_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 296", "author": "", "orig_id": 1412262}}, {"model": "metainfo.source", "pk": 3422, "fields": {"orig_filename": "Schuessler_Rudolf_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 296f.", "author": "", "orig_id": 1412263}}, {"model": "metainfo.source", "pk": 3423, "fields": {"orig_filename": "Schuetky_Fernande_1845_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412265}}, {"model": "metainfo.source", "pk": 3424, "fields": {"orig_filename": "Schuetky_Franz-Josef_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 297f.", "author": "", "orig_id": 1412264}}, {"model": "metainfo.source", "pk": 3425, "fields": {"orig_filename": "Schuetky_Richard_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 298", "author": "", "orig_id": 1412266}}, {"model": "metainfo.source", "pk": 3426, "fields": {"orig_filename": "Schreiber_Josef_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 195", "author": "", "orig_id": 1411414}}, {"model": "metainfo.source", "pk": 3427, "fields": {"orig_filename": "Schreiber_Josef_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 195f.", "author": "", "orig_id": 1411415}}, {"model": "metainfo.source", "pk": 3428, "fields": {"orig_filename": "Schreiber_Karl_1733_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 196", "author": "", "orig_id": 1411417}}, {"model": "metainfo.source", "pk": 3429, "fields": {"orig_filename": "Schreiber_Karl_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 197", "author": "", "orig_id": 1411418}}, {"model": "metainfo.source", "pk": 3430, "fields": {"orig_filename": "Schreiber_Moses_1762_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 197f.", "author": "", "orig_id": 1411419}}, {"model": "metainfo.source", "pk": 3431, "fields": {"orig_filename": "Schreiber_Simon_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 198", "author": "", "orig_id": 1411420}}, {"model": "metainfo.source", "pk": 3432, "fields": {"orig_filename": "Schreiblmayr_Petrus_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 200f.", "author": "", "orig_id": 1411491}}, {"model": "metainfo.source", "pk": 3433, "fields": {"orig_filename": "Schreier_Maximilian_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 201f.", "author": "", "orig_id": 1411492}}, {"model": "metainfo.source", "pk": 3434, "fields": {"orig_filename": "Schreier_Maximilian_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203", "author": "", "orig_id": 1411497}}, {"model": "metainfo.source", "pk": 3435, "fields": {"orig_filename": "Schreier_Otto_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 202", "author": "", "orig_id": 1411493}}, {"model": "metainfo.source", "pk": 3436, "fields": {"orig_filename": "Schreier_Schulim_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 202f.", "author": "", "orig_id": 1411496}}, {"model": "metainfo.source", "pk": 3437, "fields": {"orig_filename": "Schreier_Theodor_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203", "author": "", "orig_id": 1411498}}, {"model": "metainfo.source", "pk": 3438, "fields": {"orig_filename": "Schreier_Uri-Schrage-Feiwel-Halevi_1819_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 203f.", "author": "", "orig_id": 1411499}}, {"model": "metainfo.source", "pk": 3439, "fields": {"orig_filename": "Schreiner_Abraham_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204", "author": "", "orig_id": 1411500}}, {"model": "metainfo.source", "pk": 3440, "fields": {"orig_filename": "Schreiner_Adolf_1823_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204", "author": "", "orig_id": 1411501}}, {"model": "metainfo.source", "pk": 3441, "fields": {"orig_filename": "Schreiner_Anton_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 204f.", "author": "", "orig_id": 1411503}}, {"model": "metainfo.source", "pk": 3442, "fields": {"orig_filename": "Schreiner_Emerich_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 205f.", "author": "", "orig_id": 1411504}}, {"model": "metainfo.source", "pk": 3443, "fields": {"orig_filename": "Schreiner_Franz_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 206", "author": "", "orig_id": 1411506}}, {"model": "metainfo.source", "pk": 3444, "fields": {"orig_filename": "Schreiner_Franz_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 206f.", "author": "", "orig_id": 1411507}}, {"model": "metainfo.source", "pk": 3445, "fields": {"orig_filename": "Schreiner_Friedrich-Karl-Gustav_1863_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 205f.", "author": "", "orig_id": 1411505}}, {"model": "metainfo.source", "pk": 3446, "fields": {"orig_filename": "Schreiner_Gustav-Franz-Xav_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 208f.", "author": "", "orig_id": 1411510}}, {"model": "metainfo.source", "pk": 3447, "fields": {"orig_filename": "Schreiner_Gustav_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 207", "author": "", "orig_id": 1411508}}, {"model": "metainfo.source", "pk": 3448, "fields": {"orig_filename": "Schreiner_Gustav_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 207f.", "author": "", "orig_id": 1411509}}, {"model": "metainfo.source", "pk": 3449, "fields": {"orig_filename": "Schreiner_Jakob_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 209", "author": "", "orig_id": 1411511}}, {"model": "metainfo.source", "pk": 3450, "fields": {"orig_filename": "Schreiner_Johann-Nep_1766_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 209f.", "author": "", "orig_id": 1411512}}, {"model": "metainfo.source", "pk": 3451, "fields": {"orig_filename": "Schreiner_Josef-Johann-Nep_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 210", "author": "", "orig_id": 1411513}}, {"model": "metainfo.source", "pk": 3452, "fields": {"orig_filename": "Schreiner_Karl_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 210f.", "author": "", "orig_id": 1411514}}, {"model": "metainfo.source", "pk": 3453, "fields": {"orig_filename": "Schreiner_Martin-Mordekhai_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 211", "author": "", "orig_id": 1411588}}, {"model": "metainfo.source", "pk": 3454, "fields": {"orig_filename": "Schreiner_Moriz_1824_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 211f.", "author": "", "orig_id": 1411589}}, {"model": "metainfo.source", "pk": 3455, "fields": {"orig_filename": "Schreiner_Rupert_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 212f.", "author": "", "orig_id": 1411590}}, {"model": "metainfo.source", "pk": 3456, "fields": {"orig_filename": "Schreiter_Franz-Xav_1801_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213", "author": "", "orig_id": 1411592}}, {"model": "metainfo.source", "pk": 3457, "fields": {"orig_filename": "Schreiter_Franz_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213", "author": "", "orig_id": 1411591}}, {"model": "metainfo.source", "pk": 3458, "fields": {"orig_filename": "Schreitter-Schwarzenfeld_Adolf_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 213f.", "author": "", "orig_id": 1411593}}, {"model": "metainfo.source", "pk": 3459, "fields": {"orig_filename": "Schreker_Franz_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 214f.", "author": "", "orig_id": 1411594}}, {"model": "metainfo.source", "pk": 3460, "fields": {"orig_filename": "Schrems_Johann_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 215", "author": "", "orig_id": 1411595}}, {"model": "metainfo.source", "pk": 3461, "fields": {"orig_filename": "Schrenck-Notzing-Egmating_Aloys-Josef_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 216", "author": "", "orig_id": 1411596}}, {"model": "metainfo.source", "pk": 3462, "fields": {"orig_filename": "Schrenk_Anton_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217", "author": "", "orig_id": 1411598}}, {"model": "metainfo.source", "pk": 3463, "fields": {"orig_filename": "Schrenk_Franz_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 216f.", "author": "", "orig_id": 1411597}}, {"model": "metainfo.source", "pk": 3464, "fields": {"orig_filename": "Schrenk_Wenzl_1849_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217", "author": "", "orig_id": 1411599}}, {"model": "metainfo.source", "pk": 3465, "fields": {"orig_filename": "Schrenzel_Moses_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 217f.", "author": "", "orig_id": 1411600}}, {"model": "metainfo.source", "pk": 3466, "fields": {"orig_filename": "Schreter_Gustav-Adolph_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 218", "author": "", "orig_id": 1411601}}, {"model": "metainfo.source", "pk": 3467, "fields": {"orig_filename": "Schretter_Georg_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 218f.", "author": "", "orig_id": 1411602}}, {"model": "metainfo.source", "pk": 3468, "fields": {"orig_filename": "Schretter_Josef_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 219", "author": "", "orig_id": 1411603}}, {"model": "metainfo.source", "pk": 3469, "fields": {"orig_filename": "Schreuer_Hans_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 219f.", "author": "", "orig_id": 1411605}}, {"model": "metainfo.source", "pk": 3470, "fields": {"orig_filename": "Schreuer_Zdenko_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220", "author": "", "orig_id": 1411606}}, {"model": "metainfo.source", "pk": 3471, "fields": {"orig_filename": "Schreyber_Franz-Sal_1796_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 220f.", "author": "", "orig_id": 1411608}}, {"model": "metainfo.source", "pk": 3472, "fields": {"orig_filename": "Schreyer_Adalbert_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411610}}, {"model": "metainfo.source", "pk": 3473, "fields": {"orig_filename": "Schreyer_Adalbert_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221f.", "author": "", "orig_id": 1411609}}, {"model": "metainfo.source", "pk": 3474, "fields": {"orig_filename": "Schreyer_Alois_1859_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411611}}, {"model": "metainfo.source", "pk": 3475, "fields": {"orig_filename": "Schreyer_Friedrich_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222", "author": "", "orig_id": 1411614}}, {"model": "metainfo.source", "pk": 3476, "fields": {"orig_filename": "Schreyer_Isaac_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 222f.", "author": "", "orig_id": 1411680}}, {"model": "metainfo.source", "pk": 3477, "fields": {"orig_filename": "Schreyer_Marcell_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411682}}, {"model": "metainfo.source", "pk": 3478, "fields": {"orig_filename": "Schreyer_Renata_1897_1983.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 221", "author": "", "orig_id": 1411612}}, {"model": "metainfo.source", "pk": 3479, "fields": {"orig_filename": "Schreyer_Richard_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223f.", "author": "", "orig_id": 1411683}}, {"model": "metainfo.source", "pk": 3480, "fields": {"orig_filename": "Schreyvogel_Joseph_1768_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 224f.", "author": "", "orig_id": 1411684}}, {"model": "metainfo.source", "pk": 3481, "fields": {"orig_filename": "Schriefer_Wilhelm_1865_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 225", "author": "", "orig_id": 1411685}}, {"model": "metainfo.source", "pk": 3482, "fields": {"orig_filename": "Schroeckenfux_Carl_1847_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411690}}, {"model": "metainfo.source", "pk": 3483, "fields": {"orig_filename": "Schroeckenfux_Franz-Paul_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411689}}, {"model": "metainfo.source", "pk": 3484, "fields": {"orig_filename": "Schroeckenfux_Franz_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 225f.", "author": "", "orig_id": 1411688}}, {"model": "metainfo.source", "pk": 3485, "fields": {"orig_filename": "Schroeckenfux_Gottlieb_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226f.", "author": "", "orig_id": 1411692}}, {"model": "metainfo.source", "pk": 3486, "fields": {"orig_filename": "Schroeckenfux_Michael_1848_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 226", "author": "", "orig_id": 1411691}}, {"model": "metainfo.source", "pk": 3487, "fields": {"orig_filename": "Schroeckenstein_Franz-Xav_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 227", "author": "", "orig_id": 1411693}}, {"model": "metainfo.source", "pk": 3488, "fields": {"orig_filename": "Schroeckinger-Neudenberg_Julius_1813_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 228", "author": "", "orig_id": 1411695}}, {"model": "metainfo.source", "pk": 3489, "fields": {"orig_filename": "Schroeckinger_Carl-Johann-Franz_1798_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 227", "author": "", "orig_id": 1411694}}, {"model": "metainfo.source", "pk": 3490, "fields": {"orig_filename": "Schroeder_Auguste_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411771}}, {"model": "metainfo.source", "pk": 3491, "fields": {"orig_filename": "Schroeder_Eduard-August_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 229f.", "author": "", "orig_id": 1411697}}, {"model": "metainfo.source", "pk": 3492, "fields": {"orig_filename": "Schroeder_Elisabeth_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 233", "author": "", "orig_id": 1411770}}, {"model": "metainfo.source", "pk": 3493, "fields": {"orig_filename": "Schroeder_Heinrich_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230", "author": "", "orig_id": 1411698}}, {"model": "metainfo.source", "pk": 3494, "fields": {"orig_filename": "Schroeder_Johann_1869_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230", "author": "", "orig_id": 1411699}}, {"model": "metainfo.source", "pk": 3495, "fields": {"orig_filename": "Schroeder_Julius_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 230f.", "author": "", "orig_id": 1411700}}, {"model": "metainfo.source", "pk": 3496, "fields": {"orig_filename": "Schroeder_Leopold_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 231f.", "author": "", "orig_id": 1411701}}, {"model": "metainfo.source", "pk": 3497, "fields": {"orig_filename": "Schroeder_Sophie_1781_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 232ff.", "author": "", "orig_id": 1411769}}, {"model": "metainfo.source", "pk": 3498, "fields": {"orig_filename": "Schroeder_Wilhelmine_1804_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 234f.", "author": "", "orig_id": 1411773}}, {"model": "metainfo.source", "pk": 3499, "fields": {"orig_filename": "Schroedinger_Rudolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 235", "author": "", "orig_id": 1411775}}, {"model": "metainfo.source", "pk": 3500, "fields": {"orig_filename": "Schroedl_Anton_1820_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 235f.", "author": "", "orig_id": 1411776}}, {"model": "metainfo.source", "pk": 3501, "fields": {"orig_filename": "Schroedl_Norbert-Michael_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 237f.", "author": "", "orig_id": 1411779}}, {"model": "metainfo.source", "pk": 3502, "fields": {"orig_filename": "Schroedl_Norbert_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236f.", "author": "", "orig_id": 1411778}}, {"model": "metainfo.source", "pk": 3503, "fields": {"orig_filename": "Schroeer_Arnold_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 238", "author": "", "orig_id": 1411780}}, {"model": "metainfo.source", "pk": 3504, "fields": {"orig_filename": "Schroeer_Karl-Julius_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 238f.", "author": "", "orig_id": 1411781}}, {"model": "metainfo.source", "pk": 3505, "fields": {"orig_filename": "Schroeer_Robert_1856_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411783}}, {"model": "metainfo.source", "pk": 3506, "fields": {"orig_filename": "Schroeer_Therese_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240", "author": "", "orig_id": 1411784}}, {"model": "metainfo.source", "pk": 3507, "fields": {"orig_filename": "Schroeer_Tobias-Gottfried_1791_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 240f.", "author": "", "orig_id": 1411785}}, {"model": "metainfo.source", "pk": 3508, "fields": {"orig_filename": "Schroell_Josef-Anton_1820_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 242", "author": "", "orig_id": 1411787}}, {"model": "metainfo.source", "pk": 3509, "fields": {"orig_filename": "Schroeter_Carl-Josef_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411863}}, {"model": "metainfo.source", "pk": 3510, "fields": {"orig_filename": "Schroeter_Ernst-Manfred_1880_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411864}}, {"model": "metainfo.source", "pk": 3511, "fields": {"orig_filename": "Schroeter_Johann-Heinrich-Friedrich_1738_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 242f.", "author": "", "orig_id": 1411788}}, {"model": "metainfo.source", "pk": 3512, "fields": {"orig_filename": "Schroeter_Moritz_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411792}}, {"model": "metainfo.source", "pk": 3513, "fields": {"orig_filename": "Schroeter_Moriz_1813_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243f.", "author": "", "orig_id": 1411791}}, {"model": "metainfo.source", "pk": 3514, "fields": {"orig_filename": "Schroetter-Kristelli_Alfred_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 245f.", "author": "", "orig_id": 1411869}}, {"model": "metainfo.source", "pk": 3515, "fields": {"orig_filename": "Schroetter-Kristelli_Antonie_1828_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 247", "author": "", "orig_id": 1411872}}, {"model": "metainfo.source", "pk": 3516, "fields": {"orig_filename": "Schroetter-Kristelli_Anton_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 246f.", "author": "", "orig_id": 1411871}}, {"model": "metainfo.source", "pk": 3517, "fields": {"orig_filename": "Schroetter-Kristelli_Hermann_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 247f.", "author": "", "orig_id": 1411873}}, {"model": "metainfo.source", "pk": 3518, "fields": {"orig_filename": "Schroetter-Kristelli_Leopold_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 248f.", "author": "", "orig_id": 1411874}}, {"model": "metainfo.source", "pk": 3519, "fields": {"orig_filename": "Schroetter_Bernhard_1772_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244", "author": "", "orig_id": 1411865}}, {"model": "metainfo.source", "pk": 3520, "fields": {"orig_filename": "Schroetter_Hans_1891_1965.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 246", "author": "", "orig_id": 1411870}}, {"model": "metainfo.source", "pk": 3521, "fields": {"orig_filename": "Schroetter_Hugo_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 244f.", "author": "", "orig_id": 1411866}}, {"model": "metainfo.source", "pk": 3522, "fields": {"orig_filename": "Schorisch_Robert_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 142f.", "author": "", "orig_id": 1411029}}, {"model": "metainfo.source", "pk": 3523, "fields": {"orig_filename": "Schornboeck_Alois_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 144", "author": "", "orig_id": 1411032}}, {"model": "metainfo.source", "pk": 3524, "fields": {"orig_filename": "Schornstein_Max_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 144f.", "author": "", "orig_id": 1411033}}, {"model": "metainfo.source", "pk": 3525, "fields": {"orig_filename": "Schorn_Johann_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 143", "author": "", "orig_id": 1411030}}, {"model": "metainfo.source", "pk": 3526, "fields": {"orig_filename": "Schorn_Josef_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 143f.", "author": "", "orig_id": 1411031}}, {"model": "metainfo.source", "pk": 3527, "fields": {"orig_filename": "Schorr_Anshel_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 145", "author": "", "orig_id": 1411034}}, {"model": "metainfo.source", "pk": 3528, "fields": {"orig_filename": "Schorr_Mayer_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 145f.", "author": "", "orig_id": 1411035}}, {"model": "metainfo.source", "pk": 3529, "fields": {"orig_filename": "Schorr_Moses_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 146f.", "author": "", "orig_id": 1411036}}, {"model": "metainfo.source", "pk": 3530, "fields": {"orig_filename": "Schorr_Naphtali-Mendel_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147", "author": "", "orig_id": 1411038}}, {"model": "metainfo.source", "pk": 3531, "fields": {"orig_filename": "Schorr_Osias-Heschel_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147", "author": "", "orig_id": 1411037}}, {"model": "metainfo.source", "pk": 3532, "fields": {"orig_filename": "Schor_Baruch_1823_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 141", "author": "", "orig_id": 1411026}}, {"model": "metainfo.source", "pk": 3533, "fields": {"orig_filename": "Schosberger-Tornya_Heinrich_1833_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 148", "author": "", "orig_id": 1411040}}, {"model": "metainfo.source", "pk": 3534, "fields": {"orig_filename": "Schosberger-Tornya_Sigmund_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 147f.", "author": "", "orig_id": 1411039}}, {"model": "metainfo.source", "pk": 3535, "fields": {"orig_filename": "Schosberger-Tornya_Simon-Wolf_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 148f.", "author": "", "orig_id": 1411041}}, {"model": "metainfo.source", "pk": 3536, "fields": {"orig_filename": "Schossel_Andras_1824_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 149", "author": "", "orig_id": 1411042}}, {"model": "metainfo.source", "pk": 3537, "fields": {"orig_filename": "Schosser_Anton_1801_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 149f.", "author": "", "orig_id": 1411043}}, {"model": "metainfo.source", "pk": 3538, "fields": {"orig_filename": "Schottky_Julius-Max_1797_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 153f.", "author": "", "orig_id": 1411122}}, {"model": "metainfo.source", "pk": 3539, "fields": {"orig_filename": "Schottlaender_Julius_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 154f.", "author": "", "orig_id": 1411123}}, {"model": "metainfo.source", "pk": 3540, "fields": {"orig_filename": "Schott_Anselm_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 150", "author": "", "orig_id": 1411044}}, {"model": "metainfo.source", "pk": 3541, "fields": {"orig_filename": "Schott_Anton_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 150f.", "author": "", "orig_id": 1411045}}, {"model": "metainfo.source", "pk": 3542, "fields": {"orig_filename": "Schott_Ferdinand_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 151", "author": "", "orig_id": 1411046}}, {"model": "metainfo.source", "pk": 3543, "fields": {"orig_filename": "Schott_Heinrich-Wilhelm_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 152f.", "author": "", "orig_id": 1411120}}, {"model": "metainfo.source", "pk": 3544, "fields": {"orig_filename": "Schott_Heinrich_1759_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 151f.", "author": "", "orig_id": 1411119}}, {"model": "metainfo.source", "pk": 3545, "fields": {"orig_filename": "Schouppe_Alfred_1812_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 155", "author": "", "orig_id": 1411124}}, {"model": "metainfo.source", "pk": 3546, "fields": {"orig_filename": "Schowanek_Johann-Karl-Andreas_1905_1964.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 156", "author": "", "orig_id": 1411126}}, {"model": "metainfo.source", "pk": 3547, "fields": {"orig_filename": "Schowanek_Johann_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 155f.", "author": "", "orig_id": 1411125}}, {"model": "metainfo.source", "pk": 3548, "fields": {"orig_filename": "Schrader_Clemens_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 156f.", "author": "", "orig_id": 1411127}}, {"model": "metainfo.source", "pk": 3549, "fields": {"orig_filename": "Schrader_Hans_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 157f.", "author": "", "orig_id": 1411128}}, {"model": "metainfo.source", "pk": 3550, "fields": {"orig_filename": "Schraffl_Joseph_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 158f.", "author": "", "orig_id": 1411130}}, {"model": "metainfo.source", "pk": 3551, "fields": {"orig_filename": "Schramek_Emilie_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164", "author": "", "orig_id": 1411140}}, {"model": "metainfo.source", "pk": 3552, "fields": {"orig_filename": "Schramek_Johann-Josef_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164f.", "author": "", "orig_id": 1411142}}, {"model": "metainfo.source", "pk": 3553, "fields": {"orig_filename": "Schramek_Josef_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 165", "author": "", "orig_id": 1411143}}, {"model": "metainfo.source", "pk": 3554, "fields": {"orig_filename": "Schramek_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 164", "author": "", "orig_id": 1411141}}, {"model": "metainfo.source", "pk": 3555, "fields": {"orig_filename": "Schramek_Max_1879_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 165f.", "author": "", "orig_id": 1411144}}, {"model": "metainfo.source", "pk": 3556, "fields": {"orig_filename": "Schraml_Carl_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 166", "author": "", "orig_id": 1411213}}, {"model": "metainfo.source", "pk": 3557, "fields": {"orig_filename": "Schraml_Franz_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 166f.", "author": "", "orig_id": 1411214}}, {"model": "metainfo.source", "pk": 3558, "fields": {"orig_filename": "Schramm-Zittau_Rudolf_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 170f.", "author": "", "orig_id": 1411220}}, {"model": "metainfo.source", "pk": 3559, "fields": {"orig_filename": "Schrammel_Anton_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171", "author": "", "orig_id": 1411221}}, {"model": "metainfo.source", "pk": 3560, "fields": {"orig_filename": "Schrammel_Joseph_1852_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171f.", "author": "", "orig_id": 1411223}}, {"model": "metainfo.source", "pk": 3561, "fields": {"orig_filename": "Schramm_Anna_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 167f.", "author": "", "orig_id": 1411215}}, {"model": "metainfo.source", "pk": 3562, "fields": {"orig_filename": "Schramm_August_1907_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 168", "author": "", "orig_id": 1411216}}, {"model": "metainfo.source", "pk": 3563, "fields": {"orig_filename": "Schramm_Hilary-Paulin_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 168f.", "author": "", "orig_id": 1411217}}, {"model": "metainfo.source", "pk": 3564, "fields": {"orig_filename": "Schramm_Johann-Heinrich_1810_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 169", "author": "", "orig_id": 1411218}}, {"model": "metainfo.source", "pk": 3565, "fields": {"orig_filename": "Schramm_Julian_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 169f.", "author": "", "orig_id": 1411219}}, {"model": "metainfo.source", "pk": 3566, "fields": {"orig_filename": "Schram_Adolf_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 159", "author": "", "orig_id": 1411131}}, {"model": "metainfo.source", "pk": 3567, "fields": {"orig_filename": "Schram_Alois-Hans_1864_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 159f.", "author": "", "orig_id": 1411132}}, {"model": "metainfo.source", "pk": 3568, "fields": {"orig_filename": "Schram_August_1843_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 160", "author": "", "orig_id": 1411133}}, {"model": "metainfo.source", "pk": 3569, "fields": {"orig_filename": "Schram_Franz-Leopold-Matthias_1758_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 160f.", "author": "", "orig_id": 1411134}}, {"model": "metainfo.source", "pk": 3570, "fields": {"orig_filename": "Schram_Josef_1831_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 161", "author": "", "orig_id": 1411135}}, {"model": "metainfo.source", "pk": 3571, "fields": {"orig_filename": "Schram_Karl_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 161f.", "author": "", "orig_id": 1411136}}, {"model": "metainfo.source", "pk": 3572, "fields": {"orig_filename": "Schram_Robert-Gustav_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 162f.", "author": "", "orig_id": 1411137}}, {"model": "metainfo.source", "pk": 3573, "fields": {"orig_filename": "Schram_Stephan_1821_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 163", "author": "", "orig_id": 1411138}}, {"model": "metainfo.source", "pk": 3574, "fields": {"orig_filename": "Schram_Wilhelm-Karl_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 163f.", "author": "", "orig_id": 1411139}}, {"model": "metainfo.source", "pk": 3575, "fields": {"orig_filename": "Schrangl_Franz_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 173", "author": "", "orig_id": 1411224}}, {"model": "metainfo.source", "pk": 3576, "fields": {"orig_filename": "Schranil_Josef_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 173f.", "author": "", "orig_id": 1411225}}, {"model": "metainfo.source", "pk": 3577, "fields": {"orig_filename": "Schranil_Wenzel_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 174", "author": "", "orig_id": 1411226}}, {"model": "metainfo.source", "pk": 3578, "fields": {"orig_filename": "Schranka_Eduard-Maria_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 177", "author": "", "orig_id": 1411231}}, {"model": "metainfo.source", "pk": 3579, "fields": {"orig_filename": "Schrank_Franz-De-Paula_1747_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 174f.", "author": "", "orig_id": 1411227}}, {"model": "metainfo.source", "pk": 3580, "fields": {"orig_filename": "Schrank_Johann-Ferdinand_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 175f.", "author": "", "orig_id": 1411228}}, {"model": "metainfo.source", "pk": 3581, "fields": {"orig_filename": "Schrank_Josef_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 176", "author": "", "orig_id": 1411229}}, {"model": "metainfo.source", "pk": 3582, "fields": {"orig_filename": "Schrank_Ludwig_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 176f.", "author": "", "orig_id": 1411230}}, {"model": "metainfo.source", "pk": 3583, "fields": {"orig_filename": "Schrantz_Alfred_1867_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 177f.", "author": "", "orig_id": 1411232}}, {"model": "metainfo.source", "pk": 3584, "fields": {"orig_filename": "Schrantz_Johann_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411304}}, {"model": "metainfo.source", "pk": 3585, "fields": {"orig_filename": "Schrantz_Otto_1871_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411233}}, {"model": "metainfo.source", "pk": 3586, "fields": {"orig_filename": "Schrantz_Wilhelm_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178", "author": "", "orig_id": 1411235}}, {"model": "metainfo.source", "pk": 3587, "fields": {"orig_filename": "Schrattenbach_Vinzenz-Joseph_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 180f.", "author": "", "orig_id": 1411308}}, {"model": "metainfo.source", "pk": 3588, "fields": {"orig_filename": "Schratt_Johann-Chrysostomus_1773_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 179", "author": "", "orig_id": 1411306}}, {"model": "metainfo.source", "pk": 3589, "fields": {"orig_filename": "Schratt_Johann_1803_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 178f.", "author": "", "orig_id": 1411305}}, {"model": "metainfo.source", "pk": 3590, "fields": {"orig_filename": "Schratt_Katharina_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 179f.", "author": "", "orig_id": 1411307}}, {"model": "metainfo.source", "pk": 3591, "fields": {"orig_filename": "Schrauf_Albrecht_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 181f.", "author": "", "orig_id": 1411309}}, {"model": "metainfo.source", "pk": 3592, "fields": {"orig_filename": "Schrauf_Karl_1835_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 182f.", "author": "", "orig_id": 1411310}}, {"model": "metainfo.source", "pk": 3593, "fields": {"orig_filename": "Schreckenthal_Hannes_1873_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183", "author": "", "orig_id": 1411312}}, {"model": "metainfo.source", "pk": 3594, "fields": {"orig_filename": "Schrecker_Ignaz-Franz_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183f.", "author": "", "orig_id": 1411314}}, {"model": "metainfo.source", "pk": 3595, "fields": {"orig_filename": "Schreck_Adam_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 183", "author": "", "orig_id": 1411311}}, {"model": "metainfo.source", "pk": 3596, "fields": {"orig_filename": "Schreder_Julius-Aloysius_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 184f.", "author": "", "orig_id": 1411316}}, {"model": "metainfo.source", "pk": 3597, "fields": {"orig_filename": "Schreder_Karl_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185", "author": "", "orig_id": 1411317}}, {"model": "metainfo.source", "pk": 3598, "fields": {"orig_filename": "Schreder_Rudolf_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185", "author": "", "orig_id": 1411318}}, {"model": "metainfo.source", "pk": 3599, "fields": {"orig_filename": "Schreiber-Krieger_Adele_1871_1957.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 196", "author": "", "orig_id": 1411416}}, {"model": "metainfo.source", "pk": 3600, "fields": {"orig_filename": "Schreibers_Joseph-Ludwig_1793_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 198f.", "author": "", "orig_id": 1411421}}, {"model": "metainfo.source", "pk": 3601, "fields": {"orig_filename": "Schreibers_Karl-Franz_1775_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 199f.", "author": "", "orig_id": 1411422}}, {"model": "metainfo.source", "pk": 3602, "fields": {"orig_filename": "Schreiber_Abraham-Samuel-Benjamin-Wolf_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 185f.", "author": "", "orig_id": 1411319}}, {"model": "metainfo.source", "pk": 3603, "fields": {"orig_filename": "Schreiber_Adalbert_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191", "author": "", "orig_id": 1411405}}, {"model": "metainfo.source", "pk": 3604, "fields": {"orig_filename": "Schreiber_Adolf_1881_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 186", "author": "", "orig_id": 1411320}}, {"model": "metainfo.source", "pk": 3605, "fields": {"orig_filename": "Schreiber_Alex_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411403}}, {"model": "metainfo.source", "pk": 3606, "fields": {"orig_filename": "Schreiber_Alfred_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 186f.", "author": "", "orig_id": 1411321}}, {"model": "metainfo.source", "pk": 3607, "fields": {"orig_filename": "Schreiber_August_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 187", "author": "", "orig_id": 1411322}}, {"model": "metainfo.source", "pk": 3608, "fields": {"orig_filename": "Schreiber_Bernhard_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 187f.", "author": "", "orig_id": 1411323}}, {"model": "metainfo.source", "pk": 3609, "fields": {"orig_filename": "Schreiber_Clara_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 188", "author": "", "orig_id": 1411324}}, {"model": "metainfo.source", "pk": 3610, "fields": {"orig_filename": "Schreiber_David_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 188f.", "author": "", "orig_id": 1411325}}, {"model": "metainfo.source", "pk": 3611, "fields": {"orig_filename": "Schreiber_Egid_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 189", "author": "", "orig_id": 1411326}}, {"model": "metainfo.source", "pk": 3612, "fields": {"orig_filename": "Schreiber_Emanuel_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 189f.", "author": "", "orig_id": 1411327}}, {"model": "metainfo.source", "pk": 3613, "fields": {"orig_filename": "Schreiber_Franz_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411328}}, {"model": "metainfo.source", "pk": 3614, "fields": {"orig_filename": "Schreiber_Franz_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190", "author": "", "orig_id": 1411402}}, {"model": "metainfo.source", "pk": 3615, "fields": {"orig_filename": "Schreiber_Franz_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 190f.", "author": "", "orig_id": 1411404}}, {"model": "metainfo.source", "pk": 3616, "fields": {"orig_filename": "Schreiber_Friedrich_1879_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191", "author": "", "orig_id": 1411407}}, {"model": "metainfo.source", "pk": 3617, "fields": {"orig_filename": "Schreiber_Hans_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 191f.", "author": "", "orig_id": 1411408}}, {"model": "metainfo.source", "pk": 3618, "fields": {"orig_filename": "Schreiber_Heinrich_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 192f.", "author": "", "orig_id": 1411409}}, {"model": "metainfo.source", "pk": 3619, "fields": {"orig_filename": "Schreiber_Johann-Max_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194", "author": "", "orig_id": 1411412}}, {"model": "metainfo.source", "pk": 3620, "fields": {"orig_filename": "Schreiber_Johann_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 193f.", "author": "", "orig_id": 1411410}}, {"model": "metainfo.source", "pk": 3621, "fields": {"orig_filename": "Schreiber_Johann_1845_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194", "author": "", "orig_id": 1411411}}, {"model": "metainfo.source", "pk": 3622, "fields": {"orig_filename": "Schreiber_Josef_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 194f.", "author": "", "orig_id": 1411413}}, {"model": "metainfo.source", "pk": 3623, "fields": {"orig_filename": "Schoenthaler_Franz_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 95", "author": "", "orig_id": 1405890}}, {"model": "metainfo.source", "pk": 3624, "fields": {"orig_filename": "Schoenthaler_Jakob_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 95f.", "author": "", "orig_id": 1405891}}, {"model": "metainfo.source", "pk": 3625, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Franz-Simon_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 97", "author": "", "orig_id": 1405893}}, {"model": "metainfo.source", "pk": 3626, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Franz_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 96f.", "author": "", "orig_id": 1405892}}, {"model": "metainfo.source", "pk": 3627, "fields": {"orig_filename": "Schoenthan-Pernwaldt_Paul_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 97f.", "author": "", "orig_id": 1405894}}, {"model": "metainfo.source", "pk": 3628, "fields": {"orig_filename": "Schoenwisner_Stephan_1738_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 98", "author": "", "orig_id": 1405896}}, {"model": "metainfo.source", "pk": 3629, "fields": {"orig_filename": "Schoen_Bruno_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 30f.", "author": "", "orig_id": 1405446}}, {"model": "metainfo.source", "pk": 3630, "fields": {"orig_filename": "Schoen_Eduard_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 31f.", "author": "", "orig_id": 1405447}}, {"model": "metainfo.source", "pk": 3631, "fields": {"orig_filename": "Schoen_Friedrich_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 32f.", "author": "", "orig_id": 1405448}}, {"model": "metainfo.source", "pk": 3632, "fields": {"orig_filename": "Schoen_Jacob_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 33", "author": "", "orig_id": 1405452}}, {"model": "metainfo.source", "pk": 3633, "fields": {"orig_filename": "Schoen_Johann-Bapt_1841_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 34f.", "author": "", "orig_id": 1405454}}, {"model": "metainfo.source", "pk": 3634, "fields": {"orig_filename": "Schoen_Johann-Carl_1805_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 35", "author": "", "orig_id": 1405455}}, {"model": "metainfo.source", "pk": 3635, "fields": {"orig_filename": "Schoen_Johann-Georg_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 35f.", "author": "", "orig_id": 1405456}}, {"model": "metainfo.source", "pk": 3636, "fields": {"orig_filename": "Schoen_Johann_1802_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 33f.", "author": "", "orig_id": 1405453}}, {"model": "metainfo.source", "pk": 3637, "fields": {"orig_filename": "Schoen_Josef_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 36f.", "author": "", "orig_id": 1405457}}, {"model": "metainfo.source", "pk": 3638, "fields": {"orig_filename": "Schoen_Josef_1809_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 37", "author": "", "orig_id": 1405458}}, {"model": "metainfo.source", "pk": 3639, "fields": {"orig_filename": "Schoen_Josef_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 37f.", "author": "", "orig_id": 1405459}}, {"model": "metainfo.source", "pk": 3640, "fields": {"orig_filename": "Schoen_Karl_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38", "author": "", "orig_id": 1405461}}, {"model": "metainfo.source", "pk": 3641, "fields": {"orig_filename": "Schoen_Lorenz_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 38f.", "author": "", "orig_id": 1405462}}, {"model": "metainfo.source", "pk": 3642, "fields": {"orig_filename": "Schoen_Luise_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405463}}, {"model": "metainfo.source", "pk": 3643, "fields": {"orig_filename": "Schoen_Moritz_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405464}}, {"model": "metainfo.source", "pk": 3644, "fields": {"orig_filename": "Schoepf-Merei_Agoston_1805_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 105", "author": "", "orig_id": 1405959}}, {"model": "metainfo.source", "pk": 3645, "fields": {"orig_filename": "Schoepfer_Aemilian_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 105ff.", "author": "", "orig_id": 1405962}}, {"model": "metainfo.source", "pk": 3646, "fields": {"orig_filename": "Schoepfer_Franz-Xav_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 107", "author": "", "orig_id": 1405963}}, {"model": "metainfo.source", "pk": 3647, "fields": {"orig_filename": "Schoepfer_Friedrich-Anton_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 107f.", "author": "", "orig_id": 1405964}}, {"model": "metainfo.source", "pk": 3648, "fields": {"orig_filename": "Schoepfer_Heinrich_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 108", "author": "", "orig_id": 1405965}}, {"model": "metainfo.source", "pk": 3649, "fields": {"orig_filename": "Schoepfer_Jakob_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 108f.", "author": "", "orig_id": 1405966}}, {"model": "metainfo.source", "pk": 3650, "fields": {"orig_filename": "Schoepfer_Mathaeus-Michael_1739_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 109", "author": "", "orig_id": 1405967}}, {"model": "metainfo.source", "pk": 3651, "fields": {"orig_filename": "Schoepfleuthner_Anton_1845_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 109f.", "author": "", "orig_id": 1405968}}, {"model": "metainfo.source", "pk": 3652, "fields": {"orig_filename": "Schoepf_Albin-Franz_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 99", "author": "", "orig_id": 1405897}}, {"model": "metainfo.source", "pk": 3653, "fields": {"orig_filename": "Schoepf_Alois_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 102", "author": "", "orig_id": 1405954}}, {"model": "metainfo.source", "pk": 3654, "fields": {"orig_filename": "Schoepf_Bertrand_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 99f.", "author": "", "orig_id": 1405898}}, {"model": "metainfo.source", "pk": 3655, "fields": {"orig_filename": "Schoepf_Franz_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100", "author": "", "orig_id": 1405899}}, {"model": "metainfo.source", "pk": 3656, "fields": {"orig_filename": "Schoepf_Heinrich_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100", "author": "", "orig_id": 1442214}}, {"model": "metainfo.source", "pk": 3657, "fields": {"orig_filename": "Schoepf_Ignaz_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 100f.", "author": "", "orig_id": 1405900}}, {"model": "metainfo.source", "pk": 3658, "fields": {"orig_filename": "Schoepf_Johann-Bapt_1824_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 101f.", "author": "", "orig_id": 1405902}}, {"model": "metainfo.source", "pk": 3659, "fields": {"orig_filename": "Schoepf_Johann_1811_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 101", "author": "", "orig_id": 1405901}}, {"model": "metainfo.source", "pk": 3660, "fields": {"orig_filename": "Schoepf_Josef_1745_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 102f.", "author": "", "orig_id": 1405955}}, {"model": "metainfo.source", "pk": 3661, "fields": {"orig_filename": "Schoepf_Josef_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 103", "author": "", "orig_id": 1405956}}, {"model": "metainfo.source", "pk": 3662, "fields": {"orig_filename": "Schoepf_Joseph-Anton_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 103f.", "author": "", "orig_id": 1405957}}, {"model": "metainfo.source", "pk": 3663, "fields": {"orig_filename": "Schoepf_Lorenz_1793_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104", "author": "", "orig_id": 1405960}}, {"model": "metainfo.source", "pk": 3664, "fields": {"orig_filename": "Schoepf_Peter-Paul_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104f.", "author": "", "orig_id": 1405958}}, {"model": "metainfo.source", "pk": 3665, "fields": {"orig_filename": "Schoepf_Peter_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 104", "author": "", "orig_id": 1405961}}, {"model": "metainfo.source", "pk": 3666, "fields": {"orig_filename": "Schoepl_Gustav_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 110f.", "author": "", "orig_id": 1405969}}, {"model": "metainfo.source", "pk": 3667, "fields": {"orig_filename": "Schoeppe_Karl_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 111", "author": "", "orig_id": 1405970}}, {"model": "metainfo.source", "pk": 3668, "fields": {"orig_filename": "Schoeppe_Karl_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 111f.", "author": "", "orig_id": 1405971}}, {"model": "metainfo.source", "pk": 3669, "fields": {"orig_filename": "Schoeppl_Hugo_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 112", "author": "", "orig_id": 1405972}}, {"model": "metainfo.source", "pk": 3670, "fields": {"orig_filename": "Schoesler_Joseph-Johann_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 112f.", "author": "", "orig_id": 1405973}}, {"model": "metainfo.source", "pk": 3671, "fields": {"orig_filename": "Schofka_Octavius_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 113f.", "author": "", "orig_id": 1412239}}, {"model": "metainfo.source", "pk": 3672, "fields": {"orig_filename": "Schoibl_Leopold_1786_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 114", "author": "", "orig_id": 1412240}}, {"model": "metainfo.source", "pk": 3673, "fields": {"orig_filename": "Schoiswohl_Michael_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 114f.", "author": "", "orig_id": 1412241}}, {"model": "metainfo.source", "pk": 3674, "fields": {"orig_filename": "Scholcz_Szepesi-Rudolf_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 115", "author": "", "orig_id": 1412242}}, {"model": "metainfo.source", "pk": 3675, "fields": {"orig_filename": "Scholley_Otto_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 120", "author": "", "orig_id": 1412323}}, {"model": "metainfo.source", "pk": 3676, "fields": {"orig_filename": "Schollich_Ernst_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 120f.", "author": "", "orig_id": 1412324}}, {"model": "metainfo.source", "pk": 3677, "fields": {"orig_filename": "Scholl_Emil_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 115f.", "author": "", "orig_id": 1412243}}, {"model": "metainfo.source", "pk": 3678, "fields": {"orig_filename": "Scholl_Franz_1772_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 116f.", "author": "", "orig_id": 1412318}}, {"model": "metainfo.source", "pk": 3679, "fields": {"orig_filename": "Scholl_Georg_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 117", "author": "", "orig_id": 1412319}}, {"model": "metainfo.source", "pk": 3680, "fields": {"orig_filename": "Scholl_Heinrich_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118", "author": "", "orig_id": 1412320}}, {"model": "metainfo.source", "pk": 3681, "fields": {"orig_filename": "Scholl_Roland_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 119f.", "author": "", "orig_id": 1412322}}, {"model": "metainfo.source", "pk": 3682, "fields": {"orig_filename": "Scholtys_Hans-Heinz_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 121f.", "author": "", "orig_id": 1412325}}, {"model": "metainfo.source", "pk": 3683, "fields": {"orig_filename": "Scholtz-Matheocz_Johann-Emil_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123f.", "author": "", "orig_id": 1412331}}, {"model": "metainfo.source", "pk": 3684, "fields": {"orig_filename": "Scholtz_August_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122", "author": "", "orig_id": 1412326}}, {"model": "metainfo.source", "pk": 3685, "fields": {"orig_filename": "Scholtz_Friedrich_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122", "author": "", "orig_id": 1412327}}, {"model": "metainfo.source", "pk": 3686, "fields": {"orig_filename": "Scholtz_Gustav_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 122f.", "author": "", "orig_id": 1412328}}, {"model": "metainfo.source", "pk": 3687, "fields": {"orig_filename": "Scholtz_Johan_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124", "author": "", "orig_id": 1412332}}, {"model": "metainfo.source", "pk": 3688, "fields": {"orig_filename": "Scholtz_Julius_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123", "author": "", "orig_id": 1412329}}, {"model": "metainfo.source", "pk": 3689, "fields": {"orig_filename": "Scholtz_Karl-August_1799_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 123f.", "author": "", "orig_id": 1412330}}, {"model": "metainfo.source", "pk": 3690, "fields": {"orig_filename": "Scholz-Zelezny_Helene_1882_1974.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130", "author": "", "orig_id": 1412417}}, {"model": "metainfo.source", "pk": 3691, "fields": {"orig_filename": "Scholz_Adolf_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124", "author": "", "orig_id": 1412333}}, {"model": "metainfo.source", "pk": 3692, "fields": {"orig_filename": "Scholz_Alois_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 124f.", "author": "", "orig_id": 1412334}}, {"model": "metainfo.source", "pk": 3693, "fields": {"orig_filename": "Scholz_Auguste_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 125", "author": "", "orig_id": 1412335}}, {"model": "metainfo.source", "pk": 3694, "fields": {"orig_filename": "Scholz_Benjamin_1786_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 125f.", "author": "", "orig_id": 1412336}}, {"model": "metainfo.source", "pk": 3695, "fields": {"orig_filename": "Scholz_Eduard_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 126f.", "author": "", "orig_id": 1412337}}, {"model": "metainfo.source", "pk": 3696, "fields": {"orig_filename": "Scholz_Erhard-Hugo_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412410}}, {"model": "metainfo.source", "pk": 3697, "fields": {"orig_filename": "Scholz_Heinrich-Karl_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127f.", "author": "", "orig_id": 1412412}}, {"model": "metainfo.source", "pk": 3698, "fields": {"orig_filename": "Scholz_Josefa_1765_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 129f.", "author": "", "orig_id": 1412414}}, {"model": "metainfo.source", "pk": 3699, "fields": {"orig_filename": "Scholz_Josef_1835_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 128f.", "author": "", "orig_id": 1412413}}, {"model": "metainfo.source", "pk": 3700, "fields": {"orig_filename": "Scholz_Leopold_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 129", "author": "", "orig_id": 1412415}}, {"model": "metainfo.source", "pk": 3701, "fields": {"orig_filename": "Scholz_Marie_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130", "author": "", "orig_id": 1412416}}, {"model": "metainfo.source", "pk": 3702, "fields": {"orig_filename": "Scholz_Maximilian_1743_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 130f.", "author": "", "orig_id": 1412418}}, {"model": "metainfo.source", "pk": 3703, "fields": {"orig_filename": "Scholz_Paul_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 131", "author": "", "orig_id": 1412419}}, {"model": "metainfo.source", "pk": 3704, "fields": {"orig_filename": "Scholz_Roman_1912_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 131f.", "author": "", "orig_id": 1412420}}, {"model": "metainfo.source", "pk": 3705, "fields": {"orig_filename": "Scholz_Wenzel_1787_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 132ff.", "author": "", "orig_id": 1412421}}, {"model": "metainfo.source", "pk": 3706, "fields": {"orig_filename": "Scholz_Wilhelm_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 134", "author": "", "orig_id": 1412422}}, {"model": "metainfo.source", "pk": 3707, "fields": {"orig_filename": "Scholz_Wilhelm_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 134f.", "author": "", "orig_id": 1412423}}, {"model": "metainfo.source", "pk": 3708, "fields": {"orig_filename": "Scholz_Wilhelm_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 135", "author": "", "orig_id": 1412424}}, {"model": "metainfo.source", "pk": 3709, "fields": {"orig_filename": "Schonka_Franz-Xav_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136", "author": "", "orig_id": 1412427}}, {"model": "metainfo.source", "pk": 3710, "fields": {"orig_filename": "Schonta-Seedank_Carl_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136", "author": "", "orig_id": 1412429}}, {"model": "metainfo.source", "pk": 3711, "fields": {"orig_filename": "Schonta-Seedank_Emmerich-Zeno_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 136f.", "author": "", "orig_id": 1412428}}, {"model": "metainfo.source", "pk": 3712, "fields": {"orig_filename": "Schoof_Heinrich_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 137f.", "author": "", "orig_id": 1412430}}, {"model": "metainfo.source", "pk": 3713, "fields": {"orig_filename": "Schoosleitner_Franz_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 138f.", "author": "", "orig_id": 1412431}}, {"model": "metainfo.source", "pk": 3714, "fields": {"orig_filename": "Schopf_Franz_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139", "author": "", "orig_id": 1412432}}, {"model": "metainfo.source", "pk": 3715, "fields": {"orig_filename": "Schopf_Johann-Ev_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139", "author": "", "orig_id": 1412433}}, {"model": "metainfo.source", "pk": 3716, "fields": {"orig_filename": "Schopf_Wenzel-Gustav_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 139f.", "author": "", "orig_id": 1411022}}, {"model": "metainfo.source", "pk": 3717, "fields": {"orig_filename": "Schopper_Klemens-Isidor_1878_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140", "author": "", "orig_id": 1411024}}, {"model": "metainfo.source", "pk": 3718, "fields": {"orig_filename": "Schopper_Valentin_1771_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140f.", "author": "", "orig_id": 1411025}}, {"model": "metainfo.source", "pk": 3719, "fields": {"orig_filename": "Schopp_Norbert_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 140", "author": "", "orig_id": 1411023}}, {"model": "metainfo.source", "pk": 3720, "fields": {"orig_filename": "Schordan_Zsigmond_1794_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 141f.", "author": "", "orig_id": 1411027}}, {"model": "metainfo.source", "pk": 3721, "fields": {"orig_filename": "Schoreys_Frantisek-Josef_1872_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 142", "author": "", "orig_id": 1411028}}, {"model": "metainfo.source", "pk": 3722, "fields": {"orig_filename": "Schoenauer_Franz_1913_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 44", "author": "", "orig_id": 1405607}}, {"model": "metainfo.source", "pk": 3723, "fields": {"orig_filename": "Schoenauer_Johann-Michael_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45", "author": "", "orig_id": 1405620}}, {"model": "metainfo.source", "pk": 3724, "fields": {"orig_filename": "Schoenauer_Johann-Nep_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45", "author": "", "orig_id": 1405621}}, {"model": "metainfo.source", "pk": 3725, "fields": {"orig_filename": "Schoenauer_Johann_1778_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 44f.", "author": "", "orig_id": 1405608}}, {"model": "metainfo.source", "pk": 3726, "fields": {"orig_filename": "Schoenauer_Magdalena_1778_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 45f.", "author": "", "orig_id": 1405622}}, {"model": "metainfo.source", "pk": 3727, "fields": {"orig_filename": "Schoenauer_Otto_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 46f.", "author": "", "orig_id": 1405623}}, {"model": "metainfo.source", "pk": 3728, "fields": {"orig_filename": "Schoenau_Johann-Nep_1753_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 43f.", "author": "", "orig_id": 1405605}}, {"model": "metainfo.source", "pk": 3729, "fields": {"orig_filename": "Schoenau_Johann_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 43", "author": "", "orig_id": 1405604}}, {"model": "metainfo.source", "pk": 3730, "fields": {"orig_filename": "Schoenbach_Anton-Emanuel_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 47f.", "author": "", "orig_id": 1405624}}, {"model": "metainfo.source", "pk": 3731, "fields": {"orig_filename": "Schoenbach_Josef_1818_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48", "author": "", "orig_id": 1405625}}, {"model": "metainfo.source", "pk": 3732, "fields": {"orig_filename": "Schoenbauer_Vinzenz_1780_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48", "author": "", "orig_id": 1405626}}, {"model": "metainfo.source", "pk": 3733, "fields": {"orig_filename": "Schoenberger_Andreas-Corsinus_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49f.", "author": "", "orig_id": 1405630}}, {"model": "metainfo.source", "pk": 3734, "fields": {"orig_filename": "Schoenberger_Anton_1830_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 50", "author": "", "orig_id": 1405631}}, {"model": "metainfo.source", "pk": 3735, "fields": {"orig_filename": "Schoenberger_Bela_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 50f.", "author": "", "orig_id": 1405632}}, {"model": "metainfo.source", "pk": 3736, "fields": {"orig_filename": "Schoenberger_Bruno_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405633}}, {"model": "metainfo.source", "pk": 3737, "fields": {"orig_filename": "Schoenberger_Franz-Anton_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51f.", "author": "", "orig_id": 1405635}}, {"model": "metainfo.source", "pk": 3738, "fields": {"orig_filename": "Schoenberger_Hugo_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52", "author": "", "orig_id": 1405638}}, {"model": "metainfo.source", "pk": 3739, "fields": {"orig_filename": "Schoenberger_Hyazinth-Maria_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52f.", "author": "", "orig_id": 1405639}}, {"model": "metainfo.source", "pk": 3740, "fields": {"orig_filename": "Schoenberger_Lorenz-Adolf_1768_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 53", "author": "", "orig_id": 1405640}}, {"model": "metainfo.source", "pk": 3741, "fields": {"orig_filename": "Schoenberger_Richard_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 52", "author": "", "orig_id": 1405636}}, {"model": "metainfo.source", "pk": 3742, "fields": {"orig_filename": "Schoenberger_Victor_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 53f.", "author": "", "orig_id": 1405641}}, {"model": "metainfo.source", "pk": 3743, "fields": {"orig_filename": "Schoenberg_Adolf_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405628}}, {"model": "metainfo.source", "pk": 3744, "fields": {"orig_filename": "Schoenberg_Johann-Nep_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 48f.", "author": "", "orig_id": 1405627}}, {"model": "metainfo.source", "pk": 3745, "fields": {"orig_filename": "Schoenbichler_Carl-Hans_1920_1992.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55", "author": "", "orig_id": 1405755}}, {"model": "metainfo.source", "pk": 3746, "fields": {"orig_filename": "Schoenbichler_Johann-Bapt_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 54f.", "author": "", "orig_id": 1405642}}, {"model": "metainfo.source", "pk": 3747, "fields": {"orig_filename": "Schoenbichler_Johann-Emanuel_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55", "author": "", "orig_id": 1405644}}, {"model": "metainfo.source", "pk": 3748, "fields": {"orig_filename": "Schoenbichler_Karl_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 55f.", "author": "", "orig_id": 1405756}}, {"model": "metainfo.source", "pk": 3749, "fields": {"orig_filename": "Schoenbichler_Philippine_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 54", "author": "", "orig_id": 1405643}}, {"model": "metainfo.source", "pk": 3750, "fields": {"orig_filename": "Schoenborn-Buchheim_Carl-Theodor_1790_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58f.", "author": "", "orig_id": 1405762}}, {"model": "metainfo.source", "pk": 3751, "fields": {"orig_filename": "Schoenborn_Adalbert-Josef_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 56", "author": "", "orig_id": 1405757}}, {"model": "metainfo.source", "pk": 3752, "fields": {"orig_filename": "Schoenborn_Franz-De-Paula_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 56f.", "author": "", "orig_id": 1405758}}, {"model": "metainfo.source", "pk": 3753, "fields": {"orig_filename": "Schoenborn_Friedrich_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 57f.", "author": "", "orig_id": 1405759}}, {"model": "metainfo.source", "pk": 3754, "fields": {"orig_filename": "Schoenborn_Johann_1864_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58", "author": "", "orig_id": 1405761}}, {"model": "metainfo.source", "pk": 3755, "fields": {"orig_filename": "Schoenborn_Karl_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 58", "author": "", "orig_id": 1405760}}, {"model": "metainfo.source", "pk": 3756, "fields": {"orig_filename": "Schoenbrunner_Franz-Xav_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60", "author": "", "orig_id": 1405767}}, {"model": "metainfo.source", "pk": 3757, "fields": {"orig_filename": "Schoenbrunner_Ignaz-Johann_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59", "author": "", "orig_id": 1405764}}, {"model": "metainfo.source", "pk": 3758, "fields": {"orig_filename": "Schoenbrunner_Josef_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59f.", "author": "", "orig_id": 1405765}}, {"model": "metainfo.source", "pk": 3759, "fields": {"orig_filename": "Schoenbrunner_Karl_1832_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60", "author": "", "orig_id": 1405766}}, {"model": "metainfo.source", "pk": 3760, "fields": {"orig_filename": "Schoenbrunn_Hugo_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 59", "author": "", "orig_id": 1405763}}, {"model": "metainfo.source", "pk": 3761, "fields": {"orig_filename": "Schoenburg-Hartenstein_Alexander_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60f.", "author": "", "orig_id": 1405768}}, {"model": "metainfo.source", "pk": 3762, "fields": {"orig_filename": "Schoenburg-Hartenstein_Alois_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 61f.", "author": "", "orig_id": 1405770}}, {"model": "metainfo.source", "pk": 3763, "fields": {"orig_filename": "Schoenburg-Hartenstein_Eduard_1787_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 60f.", "author": "", "orig_id": 1405769}}, {"model": "metainfo.source", "pk": 3764, "fields": {"orig_filename": "Schoenburg-Hartenstein_Johannes_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 62f.", "author": "", "orig_id": 1405771}}, {"model": "metainfo.source", "pk": 3765, "fields": {"orig_filename": "Schoendorfer_Josef_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 63", "author": "", "orig_id": 1405772}}, {"model": "metainfo.source", "pk": 3766, "fields": {"orig_filename": "Schoenecker_Dionys_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64f.", "author": "", "orig_id": 1405776}}, {"model": "metainfo.source", "pk": 3767, "fields": {"orig_filename": "Schoenecker_Eduard_1885_1963.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 65", "author": "", "orig_id": 1405777}}, {"model": "metainfo.source", "pk": 3768, "fields": {"orig_filename": "Schoenefeldt_August_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 65f.", "author": "", "orig_id": 1405778}}, {"model": "metainfo.source", "pk": 3769, "fields": {"orig_filename": "Schoenerer_Alexandrine_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 66", "author": "", "orig_id": 1405780}}, {"model": "metainfo.source", "pk": 3770, "fields": {"orig_filename": "Schoenerer_Georg_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 66ff.", "author": "", "orig_id": 1405781}}, {"model": "metainfo.source", "pk": 3771, "fields": {"orig_filename": "Schoenerer_Mathias_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 68f.", "author": "", "orig_id": 1405782}}, {"model": "metainfo.source", "pk": 3772, "fields": {"orig_filename": "Schoenermark_Ludwig_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 69", "author": "", "orig_id": 1405783}}, {"model": "metainfo.source", "pk": 3773, "fields": {"orig_filename": "Schoeney_Lazarus_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 69f.", "author": "", "orig_id": 1405786}}, {"model": "metainfo.source", "pk": 3774, "fields": {"orig_filename": "Schoene_Hermann_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 63f.", "author": "", "orig_id": 1405773}}, {"model": "metainfo.source", "pk": 3775, "fields": {"orig_filename": "Schoene_Ludwig_1845_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64", "author": "", "orig_id": 1405774}}, {"model": "metainfo.source", "pk": 3776, "fields": {"orig_filename": "Schoene_Moric_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 64", "author": "", "orig_id": 1405775}}, {"model": "metainfo.source", "pk": 3777, "fields": {"orig_filename": "Schoenfeldt_Karl_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405814}}, {"model": "metainfo.source", "pk": 3778, "fields": {"orig_filename": "Schoenfeldt_Luise_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 80", "author": "", "orig_id": 1405818}}, {"model": "metainfo.source", "pk": 3779, "fields": {"orig_filename": "Schoenfeldt_Maximilian_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405817}}, {"model": "metainfo.source", "pk": 3780, "fields": {"orig_filename": "Schoenfeldt_Rudolf_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 79f.", "author": "", "orig_id": 1405816}}, {"model": "metainfo.source", "pk": 3781, "fields": {"orig_filename": "Schoenfeld_Anton_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 70f.", "author": "", "orig_id": 1405788}}, {"model": "metainfo.source", "pk": 3782, "fields": {"orig_filename": "Schoenfeld_August_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71", "author": "", "orig_id": 1405790}}, {"model": "metainfo.source", "pk": 3783, "fields": {"orig_filename": "Schoenfeld_Baruch_1787_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71f.", "author": "", "orig_id": 1405791}}, {"model": "metainfo.source", "pk": 3784, "fields": {"orig_filename": "Schoenfeld_Constantin_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78f.", "author": "", "orig_id": 1405813}}, {"model": "metainfo.source", "pk": 3785, "fields": {"orig_filename": "Schoenfeld_Eduard_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 72f.", "author": "", "orig_id": 1405792}}, {"model": "metainfo.source", "pk": 3786, "fields": {"orig_filename": "Schoenfeld_Franz-Julius_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405804}}, {"model": "metainfo.source", "pk": 3787, "fields": {"orig_filename": "Schoenfeld_Heinrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 73", "author": "", "orig_id": 1405793}}, {"model": "metainfo.source", "pk": 3788, "fields": {"orig_filename": "Schoenfeld_Ignaz_1778_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 73f.", "author": "", "orig_id": 1405795}}, {"model": "metainfo.source", "pk": 3789, "fields": {"orig_filename": "Schoenfeld_Johann-Ferdinand_1750_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 74f.", "author": "", "orig_id": 1405798}}, {"model": "metainfo.source", "pk": 3790, "fields": {"orig_filename": "Schoenfeld_Josef_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 75f.", "author": "", "orig_id": 1405800}}, {"model": "metainfo.source", "pk": 3791, "fields": {"orig_filename": "Schoenfeld_Karl-Emil_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 76", "author": "", "orig_id": 1405801}}, {"model": "metainfo.source", "pk": 3792, "fields": {"orig_filename": "Schoenfeld_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405806}}, {"model": "metainfo.source", "pk": 3793, "fields": {"orig_filename": "Schoenfeld_Louise_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 76f.", "author": "", "orig_id": 1405802}}, {"model": "metainfo.source", "pk": 3794, "fields": {"orig_filename": "Schoenfeld_Peter_1784_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 77", "author": "", "orig_id": 1405807}}, {"model": "metainfo.source", "pk": 3795, "fields": {"orig_filename": "Schoenfeld_Rudolf_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78", "author": "", "orig_id": 1405809}}, {"model": "metainfo.source", "pk": 3796, "fields": {"orig_filename": "Schoenfeld_Theodor_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 78f.", "author": "", "orig_id": 1405811}}, {"model": "metainfo.source", "pk": 3797, "fields": {"orig_filename": "Schoenfeld_Wenzel_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 71", "author": "", "orig_id": 1419669}}, {"model": "metainfo.source", "pk": 3798, "fields": {"orig_filename": "Schoenhaber-Wengerot_Heinrich_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 80f.", "author": "", "orig_id": 1405819}}, {"model": "metainfo.source", "pk": 3799, "fields": {"orig_filename": "Schoenhals_Georg_1784_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 82", "author": "", "orig_id": 1405821}}, {"model": "metainfo.source", "pk": 3800, "fields": {"orig_filename": "Schoenhals_Karl_1788_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 81f.", "author": "", "orig_id": 1405820}}, {"model": "metainfo.source", "pk": 3801, "fields": {"orig_filename": "Schoenherr_David_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 82f.", "author": "", "orig_id": 1405822}}, {"model": "metainfo.source", "pk": 3802, "fields": {"orig_filename": "Schoenherr_Gyula_1864_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 83f.", "author": "", "orig_id": 1405824}}, {"model": "metainfo.source", "pk": 3803, "fields": {"orig_filename": "Schoenherr_Joseph_1809_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 84f.", "author": "", "orig_id": 1405826}}, {"model": "metainfo.source", "pk": 3804, "fields": {"orig_filename": "Schoenherr_Karl_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 85f.", "author": "", "orig_id": 1405827}}, {"model": "metainfo.source", "pk": 3805, "fields": {"orig_filename": "Schoenhoff_Leopold_1853_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 87", "author": "", "orig_id": 1405829}}, {"model": "metainfo.source", "pk": 3806, "fields": {"orig_filename": "Schoenhof_Egon_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 86f.", "author": "", "orig_id": 1405828}}, {"model": "metainfo.source", "pk": 3807, "fields": {"orig_filename": "Schoenholz_Friedrich-Anton_1801_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 87f.", "author": "", "orig_id": 1405719}}, {"model": "metainfo.source", "pk": 3808, "fields": {"orig_filename": "Schoeninger_Franz-Xav-Leopold_1790_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 89", "author": "", "orig_id": 1405721}}, {"model": "metainfo.source", "pk": 3809, "fields": {"orig_filename": "Schoeninger_Franz-Xav_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 88f.", "author": "", "orig_id": 1405720}}, {"model": "metainfo.source", "pk": 3810, "fields": {"orig_filename": "Schoenlaub_Fidelis_1805_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 89f.", "author": "", "orig_id": 1405722}}, {"model": "metainfo.source", "pk": 3811, "fields": {"orig_filename": "Schoenmann_Josef_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 90", "author": "", "orig_id": 1405723}}, {"model": "metainfo.source", "pk": 3812, "fields": {"orig_filename": "Schoenn_Alois_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 90f.", "author": "", "orig_id": 1405724}}, {"model": "metainfo.source", "pk": 3813, "fields": {"orig_filename": "Schoenn_Ricka_1867_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 91", "author": "", "orig_id": 1405725}}, {"model": "metainfo.source", "pk": 3814, "fields": {"orig_filename": "Schoenowsky-Schoenwies_Adalbert_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 91f.", "author": "", "orig_id": 1405726}}, {"model": "metainfo.source", "pk": 3815, "fields": {"orig_filename": "Schoenowsky-Schoenwies_Maximilian_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 92f.", "author": "", "orig_id": 1405727}}, {"model": "metainfo.source", "pk": 3816, "fields": {"orig_filename": "Schoenpflug_Fritz_1900_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 93", "author": "", "orig_id": 1405886}}, {"model": "metainfo.source", "pk": 3817, "fields": {"orig_filename": "Schoenschuetz_Josef_1788_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94", "author": "", "orig_id": 1405887}}, {"model": "metainfo.source", "pk": 3818, "fields": {"orig_filename": "Schoensteiner_Friedrich_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94f.", "author": "", "orig_id": 1405889}}, {"model": "metainfo.source", "pk": 3819, "fields": {"orig_filename": "Schoenstein_Karl_1796_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 94", "author": "", "orig_id": 1405888}}, {"model": "metainfo.source", "pk": 3820, "fields": {"orig_filename": "Schnitzer_Casimir_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406", "author": "", "orig_id": 1406891}}, {"model": "metainfo.source", "pk": 3821, "fields": {"orig_filename": "Schnitzer_Ignaz_1839_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406f.", "author": "", "orig_id": 1406892}}, {"model": "metainfo.source", "pk": 3822, "fields": {"orig_filename": "Schnitzer_Manuel_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 407", "author": "", "orig_id": 1407292}}, {"model": "metainfo.source", "pk": 3823, "fields": {"orig_filename": "Schnitzler_Arthur_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 407ff.", "author": "", "orig_id": 1406893}}, {"model": "metainfo.source", "pk": 3824, "fields": {"orig_filename": "Schnitzler_Ferdinand_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 409f.", "author": "", "orig_id": 1406894}}, {"model": "metainfo.source", "pk": 3825, "fields": {"orig_filename": "Schnitzler_Johann_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 410f.", "author": "", "orig_id": 1406895}}, {"model": "metainfo.source", "pk": 3826, "fields": {"orig_filename": "Schnopfhagen_Emil_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 412", "author": "", "orig_id": 1406897}}, {"model": "metainfo.source", "pk": 3827, "fields": {"orig_filename": "Schnopfhagen_Franz_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 412f.", "author": "", "orig_id": 1406898}}, {"model": "metainfo.source", "pk": 3828, "fields": {"orig_filename": "Schnopfhagen_Hans_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 413f.", "author": "", "orig_id": 1406899}}, {"model": "metainfo.source", "pk": 3829, "fields": {"orig_filename": "Schnopfhagen_Hans_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 414", "author": "", "orig_id": 1406900}}, {"model": "metainfo.source", "pk": 3830, "fields": {"orig_filename": "Schnorr-Carolsfeld_Eduard_1790_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 415", "author": "", "orig_id": 1406902}}, {"model": "metainfo.source", "pk": 3831, "fields": {"orig_filename": "Schnorr-Carolsfeld_Julius-Veit-Hans_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 414f.", "author": "", "orig_id": 1406901}}, {"model": "metainfo.source", "pk": 3832, "fields": {"orig_filename": "Schnorr-Carolsfeld_Karl_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416", "author": "", "orig_id": 1406905}}, {"model": "metainfo.source", "pk": 3833, "fields": {"orig_filename": "Schnorr-Carolsfeld_Ludwig-Ferdinand_1788_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416", "author": "", "orig_id": 1406904}}, {"model": "metainfo.source", "pk": 3834, "fields": {"orig_filename": "Schnorr-Carolsfeld_Ludwig_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 415", "author": "", "orig_id": 1406903}}, {"model": "metainfo.source", "pk": 3835, "fields": {"orig_filename": "Schnuer-Peplowski_Stanislaw_1859_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 416f.", "author": "", "orig_id": 1406906}}, {"model": "metainfo.source", "pk": 3836, "fields": {"orig_filename": "Schnuerer_Franz_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 417f.", "author": "", "orig_id": 1406907}}, {"model": "metainfo.source", "pk": 3837, "fields": {"orig_filename": "Schnuerer_Josef_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 418", "author": "", "orig_id": 1406908}}, {"model": "metainfo.source", "pk": 3838, "fields": {"orig_filename": "Schnuerer_Maria-Josefa_1889_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 418f.", "author": "", "orig_id": 1406909}}, {"model": "metainfo.source", "pk": 3839, "fields": {"orig_filename": "Schnur_David_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419", "author": "", "orig_id": 1406910}}, {"model": "metainfo.source", "pk": 3840, "fields": {"orig_filename": "Schnur_Harry-C_1907_1979.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419", "author": "", "orig_id": 1406911}}, {"model": "metainfo.source", "pk": 3841, "fields": {"orig_filename": "Schoberlechner_Caecilia_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427", "author": "", "orig_id": 1406924}}, {"model": "metainfo.source", "pk": 3842, "fields": {"orig_filename": "Schoberlechner_Franz-De-Paula-Jakob_1797_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 426f.", "author": "", "orig_id": 1406921}}, {"model": "metainfo.source", "pk": 3843, "fields": {"orig_filename": "Schoberlechner_Johann-Karl_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427", "author": "", "orig_id": 1406923}}, {"model": "metainfo.source", "pk": 3844, "fields": {"orig_filename": "Schoberlechner_Sophie_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 427f.", "author": "", "orig_id": 1406925}}, {"model": "metainfo.source", "pk": 3845, "fields": {"orig_filename": "Schobert_Ernst_1893_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 428", "author": "", "orig_id": 1406926}}, {"model": "metainfo.source", "pk": 3846, "fields": {"orig_filename": "Schober_Franz_1796_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 420f.", "author": "", "orig_id": 1406913}}, {"model": "metainfo.source", "pk": 3847, "fields": {"orig_filename": "Schober_Franz_1911_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 421", "author": "", "orig_id": 1406914}}, {"model": "metainfo.source", "pk": 3848, "fields": {"orig_filename": "Schober_Ildefons_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 421f.", "author": "", "orig_id": 1406915}}, {"model": "metainfo.source", "pk": 3849, "fields": {"orig_filename": "Schober_Johann-Bapt_1783_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 422f.", "author": "", "orig_id": 1406916}}, {"model": "metainfo.source", "pk": 3850, "fields": {"orig_filename": "Schober_Johannes_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 423ff.", "author": "", "orig_id": 1406918}}, {"model": "metainfo.source", "pk": 3851, "fields": {"orig_filename": "Schober_Johann_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 423", "author": "", "orig_id": 1406917}}, {"model": "metainfo.source", "pk": 3852, "fields": {"orig_filename": "Schober_Karl-Johann_1844_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 425f.", "author": "", "orig_id": 1406920}}, {"model": "metainfo.source", "pk": 3853, "fields": {"orig_filename": "Schober_Karl_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 425", "author": "", "orig_id": 1406919}}, {"model": "metainfo.source", "pk": 3854, "fields": {"orig_filename": "Schoblik_Friedrich_1901_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1", "author": "", "orig_id": 1405373}}, {"model": "metainfo.source", "pk": 3855, "fields": {"orig_filename": "Schobloch_Anton_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1", "author": "", "orig_id": 1405374}}, {"model": "metainfo.source", "pk": 3856, "fields": {"orig_filename": "Schock_Joseph_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 1f.", "author": "", "orig_id": 1405375}}, {"model": "metainfo.source", "pk": 3857, "fields": {"orig_filename": "Schodel_Rozalia_1811_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 2", "author": "", "orig_id": 1405376}}, {"model": "metainfo.source", "pk": 3858, "fields": {"orig_filename": "Schoderboeck_Margaretha_1887_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 3", "author": "", "orig_id": 1405378}}, {"model": "metainfo.source", "pk": 3859, "fields": {"orig_filename": "Schoder_Joseph_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 2f.", "author": "", "orig_id": 1405377}}, {"model": "metainfo.source", "pk": 3860, "fields": {"orig_filename": "Schodterer_Engelbert_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 3f.", "author": "", "orig_id": 1405379}}, {"model": "metainfo.source", "pk": 3861, "fields": {"orig_filename": "Schodterer_Robert-Franz_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 4", "author": "", "orig_id": 1405380}}, {"model": "metainfo.source", "pk": 3862, "fields": {"orig_filename": "Schoebel_Emmanuel-Johann_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 4f.", "author": "", "orig_id": 1405381}}, {"model": "metainfo.source", "pk": 3863, "fields": {"orig_filename": "Schoebel_Johann-Paul_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5", "author": "", "orig_id": 1405382}}, {"model": "metainfo.source", "pk": 3864, "fields": {"orig_filename": "Schoeberl_Franz_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5", "author": "", "orig_id": 1405383}}, {"model": "metainfo.source", "pk": 3865, "fields": {"orig_filename": "Schoeberl_Mathias_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 5f.", "author": "", "orig_id": 1405384}}, {"model": "metainfo.source", "pk": 3866, "fields": {"orig_filename": "Schoebl_Franz_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 6", "author": "", "orig_id": 1405385}}, {"model": "metainfo.source", "pk": 3867, "fields": {"orig_filename": "Schoebl_Joseph_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 6f.", "author": "", "orig_id": 1405386}}, {"model": "metainfo.source", "pk": 3868, "fields": {"orig_filename": "Schoebl_Otto_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 7f.", "author": "", "orig_id": 1405387}}, {"model": "metainfo.source", "pk": 3869, "fields": {"orig_filename": "Schoedlberger_Johann-Nepomuk_1779_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 8f.", "author": "", "orig_id": 1405391}}, {"model": "metainfo.source", "pk": 3870, "fields": {"orig_filename": "Schoedler_Franz_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 9", "author": "", "orig_id": 1405392}}, {"model": "metainfo.source", "pk": 3871, "fields": {"orig_filename": "Schoedl_Max_1834_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 8", "author": "", "orig_id": 1405390}}, {"model": "metainfo.source", "pk": 3872, "fields": {"orig_filename": "Schoefer_Eugen_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 9f.", "author": "", "orig_id": 1405393}}, {"model": "metainfo.source", "pk": 3873, "fields": {"orig_filename": "Schoefer_Johann_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 10", "author": "", "orig_id": 1405394}}, {"model": "metainfo.source", "pk": 3874, "fields": {"orig_filename": "Schoefer_Robert_1926_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1419707}}, {"model": "metainfo.source", "pk": 3875, "fields": {"orig_filename": "Schoeffel_Johann_1754_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 10f.", "author": "", "orig_id": 1405395}}, {"model": "metainfo.source", "pk": 3876, "fields": {"orig_filename": "Schoeffel_Joseph_1832_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 11f.", "author": "", "orig_id": 1405396}}, {"model": "metainfo.source", "pk": 3877, "fields": {"orig_filename": "Schoeffel_Rudolf_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 12f.", "author": "", "orig_id": 1405397}}, {"model": "metainfo.source", "pk": 3878, "fields": {"orig_filename": "Schoeffl_Josef_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 13", "author": "", "orig_id": 1405399}}, {"model": "metainfo.source", "pk": 3879, "fields": {"orig_filename": "Schoeffmann_Maria_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 13f.", "author": "", "orig_id": 1405400}}, {"model": "metainfo.source", "pk": 3880, "fields": {"orig_filename": "Schoefmann_Karl_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 14f.", "author": "", "orig_id": 1405402}}, {"model": "metainfo.source", "pk": 3881, "fields": {"orig_filename": "Schoelhammer-Schoelhaim_Johann_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 15", "author": "", "orig_id": 1405403}}, {"model": "metainfo.source", "pk": 3882, "fields": {"orig_filename": "Schoeller_Adolf-Philipp_1832_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405439}}, {"model": "metainfo.source", "pk": 3883, "fields": {"orig_filename": "Schoeller_Alexander_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 18f.", "author": "", "orig_id": 1405409}}, {"model": "metainfo.source", "pk": 3884, "fields": {"orig_filename": "Schoeller_Eduard_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405415}}, {"model": "metainfo.source", "pk": 3885, "fields": {"orig_filename": "Schoeller_Ferdinand_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 19f.", "author": "", "orig_id": 1405410}}, {"model": "metainfo.source", "pk": 3886, "fields": {"orig_filename": "Schoeller_Friedrich_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405441}}, {"model": "metainfo.source", "pk": 3887, "fields": {"orig_filename": "Schoeller_Friedrich_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405413}}, {"model": "metainfo.source", "pk": 3888, "fields": {"orig_filename": "Schoeller_Gustav_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 20f.", "author": "", "orig_id": 1405412}}, {"model": "metainfo.source", "pk": 3889, "fields": {"orig_filename": "Schoeller_Hans_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21f.", "author": "", "orig_id": 1405416}}, {"model": "metainfo.source", "pk": 3890, "fields": {"orig_filename": "Schoeller_Johann-Christian_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 22", "author": "", "orig_id": 1405417}}, {"model": "metainfo.source", "pk": 3891, "fields": {"orig_filename": "Schoeller_Joseph_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 22f.", "author": "", "orig_id": 1405418}}, {"model": "metainfo.source", "pk": 3892, "fields": {"orig_filename": "Schoeller_Paul-Eduard_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 23f.", "author": "", "orig_id": 1405419}}, {"model": "metainfo.source", "pk": 3893, "fields": {"orig_filename": "Schoeller_Pauline_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 24", "author": "", "orig_id": 1405430}}, {"model": "metainfo.source", "pk": 3894, "fields": {"orig_filename": "Schoeller_Philipp-Alois_1892_1977.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25f.", "author": "", "orig_id": 1405433}}, {"model": "metainfo.source", "pk": 3895, "fields": {"orig_filename": "Schoeller_Philipp-Johann_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25", "author": "", "orig_id": 1405431}}, {"model": "metainfo.source", "pk": 3896, "fields": {"orig_filename": "Schoeller_Philipp-Joseph_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 25f.", "author": "", "orig_id": 1405432}}, {"model": "metainfo.source", "pk": 3897, "fields": {"orig_filename": "Schoeller_Philipp-Wilhelm_1797_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 26", "author": "", "orig_id": 1405434}}, {"model": "metainfo.source", "pk": 3898, "fields": {"orig_filename": "Schoeller_Philipp-Wilhelm_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 26f.", "author": "", "orig_id": 1405436}}, {"model": "metainfo.source", "pk": 3899, "fields": {"orig_filename": "Schoeller_Richard_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 27f.", "author": "", "orig_id": 1405437}}, {"model": "metainfo.source", "pk": 3900, "fields": {"orig_filename": "Schoeller_Robert_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28", "author": "", "orig_id": 1405438}}, {"model": "metainfo.source", "pk": 3901, "fields": {"orig_filename": "Schoellnast_Franz_1775_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 28f.", "author": "", "orig_id": 1405442}}, {"model": "metainfo.source", "pk": 3902, "fields": {"orig_filename": "Schoellnast_Johann-Bapt_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 29", "author": "", "orig_id": 1405443}}, {"model": "metainfo.source", "pk": 3903, "fields": {"orig_filename": "Schoell_Adolf_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 15f.", "author": "", "orig_id": 1405404}}, {"model": "metainfo.source", "pk": 3904, "fields": {"orig_filename": "Schoell_August_1787_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16f.", "author": "", "orig_id": 1405407}}, {"model": "metainfo.source", "pk": 3905, "fields": {"orig_filename": "Schoell_Fritz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16", "author": "", "orig_id": 1405406}}, {"model": "metainfo.source", "pk": 3906, "fields": {"orig_filename": "Schoell_Jakob-Friedrich_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 17f.", "author": "", "orig_id": 1405408}}, {"model": "metainfo.source", "pk": 3907, "fields": {"orig_filename": "Schoell_Rudolf_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 16", "author": "", "orig_id": 1405405}}, {"model": "metainfo.source", "pk": 3908, "fields": {"orig_filename": "Schoelzig_Amandus_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 29f.", "author": "", "orig_id": 1405444}}, {"model": "metainfo.source", "pk": 3909, "fields": {"orig_filename": "Schoen-Liebingen_Josef_1797_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39", "author": "", "orig_id": 1405466}}, {"model": "metainfo.source", "pk": 3910, "fields": {"orig_filename": "Schoen-Liebingen_Ludwig_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40", "author": "", "orig_id": 1405363}}, {"model": "metainfo.source", "pk": 3911, "fields": {"orig_filename": "Schoen-Liebingen_Robert_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 39f.", "author": "", "orig_id": 1405465}}, {"model": "metainfo.source", "pk": 3912, "fields": {"orig_filename": "Schoenach_Alois_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40", "author": "", "orig_id": 1405364}}, {"model": "metainfo.source", "pk": 3913, "fields": {"orig_filename": "Schoenach_Hugo_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 40f.", "author": "", "orig_id": 1405365}}, {"model": "metainfo.source", "pk": 3914, "fields": {"orig_filename": "Schoenach_Ludwig_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 41", "author": "", "orig_id": 1405366}}, {"model": "metainfo.source", "pk": 3915, "fields": {"orig_filename": "Schoenaich_Franz-Xaver_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 41f.", "author": "", "orig_id": 1405367}}, {"model": "metainfo.source", "pk": 3916, "fields": {"orig_filename": "Schoenaich_Gustav_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 42f.", "author": "", "orig_id": 1405679}}, {"model": "metainfo.source", "pk": 3917, "fields": {"orig_filename": "Schnack-Herbosegg_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 356f.", "author": "", "orig_id": 1406642}}, {"model": "metainfo.source", "pk": 3918, "fields": {"orig_filename": "Schnaitmann_Thomas_1796_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 1406643}}, {"model": "metainfo.source", "pk": 3919, "fields": {"orig_filename": "Schnapper-Wimsbach_Moritz_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358f.", "author": "", "orig_id": 1406648}}, {"model": "metainfo.source", "pk": 3920, "fields": {"orig_filename": "Schnapper_Anton_1790_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 1406644}}, {"model": "metainfo.source", "pk": 3921, "fields": {"orig_filename": "Schnapper_Ber_1906_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357f.", "author": "", "orig_id": 1406645}}, {"model": "metainfo.source", "pk": 3922, "fields": {"orig_filename": "Schnapper_Maria_1800_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 357", "author": "", "orig_id": 2096507}}, {"model": "metainfo.source", "pk": 3923, "fields": {"orig_filename": "Schnapper_Max_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358", "author": "", "orig_id": 1406646}}, {"model": "metainfo.source", "pk": 3924, "fields": {"orig_filename": "Schnapper_Mayer-Arthur_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 358", "author": "", "orig_id": 1406647}}, {"model": "metainfo.source", "pk": 3925, "fields": {"orig_filename": "Schnarf_Karl_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 359", "author": "", "orig_id": 1406649}}, {"model": "metainfo.source", "pk": 3926, "fields": {"orig_filename": "Schnattinger_Friedrich-Alexander_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406650}}, {"model": "metainfo.source", "pk": 3927, "fields": {"orig_filename": "Schnaubelt_Heinrich_1814_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406651}}, {"model": "metainfo.source", "pk": 3928, "fields": {"orig_filename": "Schnayder_Jozef_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 360", "author": "", "orig_id": 1406652}}, {"model": "metainfo.source", "pk": 3929, "fields": {"orig_filename": "Schneck_Karl_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361", "author": "", "orig_id": 1406653}}, {"model": "metainfo.source", "pk": 3930, "fields": {"orig_filename": "Schneeberger_Franz-Julius_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361f.", "author": "", "orig_id": 1406655}}, {"model": "metainfo.source", "pk": 3931, "fields": {"orig_filename": "Schneeberger_Konrad_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 362f.", "author": "", "orig_id": 1406657}}, {"model": "metainfo.source", "pk": 3932, "fields": {"orig_filename": "Schneedorfer_Leo_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 363", "author": "", "orig_id": 1406658}}, {"model": "metainfo.source", "pk": 3933, "fields": {"orig_filename": "Schneefuss_Friedrich_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 363f.", "author": "", "orig_id": 1406659}}, {"model": "metainfo.source", "pk": 3934, "fields": {"orig_filename": "Schneefuss_Wilhelm_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 364", "author": "", "orig_id": 1406660}}, {"model": "metainfo.source", "pk": 3935, "fields": {"orig_filename": "Schneegans_Ludwig_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 364f.", "author": "", "orig_id": 1406661}}, {"model": "metainfo.source", "pk": 3936, "fields": {"orig_filename": "Schneeweiss_Franz_1877_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 365f.", "author": "", "orig_id": 1406664}}, {"model": "metainfo.source", "pk": 3937, "fields": {"orig_filename": "Schneeweiss_Josef_1847_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406667}}, {"model": "metainfo.source", "pk": 3938, "fields": {"orig_filename": "Schneeweiss_Martin-Franz_1883_1965.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406665}}, {"model": "metainfo.source", "pk": 3939, "fields": {"orig_filename": "Schneeweiss_Martin_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366", "author": "", "orig_id": 1406666}}, {"model": "metainfo.source", "pk": 3940, "fields": {"orig_filename": "Schneeweiss_Martin_1907_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 366f.", "author": "", "orig_id": 1406668}}, {"model": "metainfo.source", "pk": 3941, "fields": {"orig_filename": "Schneeweiss_Robert_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367", "author": "", "orig_id": 1406669}}, {"model": "metainfo.source", "pk": 3942, "fields": {"orig_filename": "Schneeweis_Karl_1745_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 365", "author": "", "orig_id": 1406662}}, {"model": "metainfo.source", "pk": 3943, "fields": {"orig_filename": "Schnee_Emil_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 361", "author": "", "orig_id": 1406654}}, {"model": "metainfo.source", "pk": 3944, "fields": {"orig_filename": "Schnegg_Alphons_1895_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367", "author": "", "orig_id": 1406670}}, {"model": "metainfo.source", "pk": 3945, "fields": {"orig_filename": "Schnehen_Max-Karl-Hugo_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 367f.", "author": "", "orig_id": 1406671}}, {"model": "metainfo.source", "pk": 3946, "fields": {"orig_filename": "Schnehen_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 368", "author": "", "orig_id": 1406816}}, {"model": "metainfo.source", "pk": 3947, "fields": {"orig_filename": "Schneid-Treuenfeld_Josef_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 368f.", "author": "", "orig_id": 1406817}}, {"model": "metainfo.source", "pk": 3948, "fields": {"orig_filename": "Schneider-Arno_Josepha_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 387", "author": "", "orig_id": 1406853}}, {"model": "metainfo.source", "pk": 3949, "fields": {"orig_filename": "Schneider-Arno_Joseph_1810_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386f.", "author": "", "orig_id": 1406852}}, {"model": "metainfo.source", "pk": 3950, "fields": {"orig_filename": "Schneider-Arno_Karl_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 387f.", "author": "", "orig_id": 1406854}}, {"model": "metainfo.source", "pk": 3951, "fields": {"orig_filename": "Schneider-Arno_Karl_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 388", "author": "", "orig_id": 1406855}}, {"model": "metainfo.source", "pk": 3952, "fields": {"orig_filename": "Schneider-Arno_Ludwig_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 388f.", "author": "", "orig_id": 1406856}}, {"model": "metainfo.source", "pk": 3953, "fields": {"orig_filename": "Schneider-Manns-Au_Josef_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 389f.", "author": "", "orig_id": 1406857}}, {"model": "metainfo.source", "pk": 3954, "fields": {"orig_filename": "Schneiderhan_Franz_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 390", "author": "", "orig_id": 1406858}}, {"model": "metainfo.source", "pk": 3955, "fields": {"orig_filename": "Schneider_Alois_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 369", "author": "", "orig_id": 1406818}}, {"model": "metainfo.source", "pk": 3956, "fields": {"orig_filename": "Schneider_Anton-Andreas_1774_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 369", "author": "", "orig_id": 1406819}}, {"model": "metainfo.source", "pk": 3957, "fields": {"orig_filename": "Schneider_Antoni-Julian_1825_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 370", "author": "", "orig_id": 1406820}}, {"model": "metainfo.source", "pk": 3958, "fields": {"orig_filename": "Schneider_Artur_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 370f.", "author": "", "orig_id": 1406821}}, {"model": "metainfo.source", "pk": 3959, "fields": {"orig_filename": "Schneider_August_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 371", "author": "", "orig_id": 1406822}}, {"model": "metainfo.source", "pk": 3960, "fields": {"orig_filename": "Schneider_Carl-Samuel_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 371f.", "author": "", "orig_id": 1406823}}, {"model": "metainfo.source", "pk": 3961, "fields": {"orig_filename": "Schneider_Christian_1742_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 372f.", "author": "", "orig_id": 1406824}}, {"model": "metainfo.source", "pk": 3962, "fields": {"orig_filename": "Schneider_Constantin_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 373", "author": "", "orig_id": 1406825}}, {"model": "metainfo.source", "pk": 3963, "fields": {"orig_filename": "Schneider_Ernst_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 373f.", "author": "", "orig_id": 1406826}}, {"model": "metainfo.source", "pk": 3964, "fields": {"orig_filename": "Schneider_Ferdinand_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 374", "author": "", "orig_id": 1406827}}, {"model": "metainfo.source", "pk": 3965, "fields": {"orig_filename": "Schneider_Franz-Anton_1777_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 376", "author": "", "orig_id": 1406830}}, {"model": "metainfo.source", "pk": 3966, "fields": {"orig_filename": "Schneider_Franz-Coelestin_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 376f.", "author": "", "orig_id": 1406831}}, {"model": "metainfo.source", "pk": 3967, "fields": {"orig_filename": "Schneider_Franz-Xav_1789_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 377f.", "author": "", "orig_id": 1406832}}, {"model": "metainfo.source", "pk": 3968, "fields": {"orig_filename": "Schneider_Franz-Xav_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 378", "author": "", "orig_id": 1406833}}, {"model": "metainfo.source", "pk": 3969, "fields": {"orig_filename": "Schneider_Franz_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 374f.", "author": "", "orig_id": 1406828}}, {"model": "metainfo.source", "pk": 3970, "fields": {"orig_filename": "Schneider_Franz_1801_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 375f.", "author": "", "orig_id": 1406829}}, {"model": "metainfo.source", "pk": 3971, "fields": {"orig_filename": "Schneider_Hans_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 378f.", "author": "", "orig_id": 1406834}}, {"model": "metainfo.source", "pk": 3972, "fields": {"orig_filename": "Schneider_Hans_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379", "author": "", "orig_id": 1406835}}, {"model": "metainfo.source", "pk": 3973, "fields": {"orig_filename": "Schneider_Hermann-Josef_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379", "author": "", "orig_id": 1406836}}, {"model": "metainfo.source", "pk": 3974, "fields": {"orig_filename": "Schneider_Johann-Aloys_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 380f.", "author": "", "orig_id": 1406838}}, {"model": "metainfo.source", "pk": 3975, "fields": {"orig_filename": "Schneider_Johann-Bapt_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 379f.", "author": "", "orig_id": 1406837}}, {"model": "metainfo.source", "pk": 3976, "fields": {"orig_filename": "Schneider_Josef_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 381", "author": "", "orig_id": 1406839}}, {"model": "metainfo.source", "pk": 3977, "fields": {"orig_filename": "Schneider_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 381f.", "author": "", "orig_id": 1406840}}, {"model": "metainfo.source", "pk": 3978, "fields": {"orig_filename": "Schneider_Josef_1897_1984.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406850}}, {"model": "metainfo.source", "pk": 3979, "fields": {"orig_filename": "Schneider_Julia_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382", "author": "", "orig_id": 1406841}}, {"model": "metainfo.source", "pk": 3980, "fields": {"orig_filename": "Schneider_Karl-Camillo_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382f.", "author": "", "orig_id": 1406843}}, {"model": "metainfo.source", "pk": 3981, "fields": {"orig_filename": "Schneider_Karl_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 382", "author": "", "orig_id": 1406842}}, {"model": "metainfo.source", "pk": 3982, "fields": {"orig_filename": "Schneider_Ludwig_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 383f.", "author": "", "orig_id": 1406844}}, {"model": "metainfo.source", "pk": 3983, "fields": {"orig_filename": "Schneider_Max_1902_1988.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406851}}, {"model": "metainfo.source", "pk": 3984, "fields": {"orig_filename": "Schneider_Oswald_1900_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 384", "author": "", "orig_id": 1406845}}, {"model": "metainfo.source", "pk": 3985, "fields": {"orig_filename": "Schneider_Robert_1854_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 384f.", "author": "", "orig_id": 1406846}}, {"model": "metainfo.source", "pk": 3986, "fields": {"orig_filename": "Schneider_Stanislaw-Jan_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 385f.", "author": "", "orig_id": 1406848}}, {"model": "metainfo.source", "pk": 3987, "fields": {"orig_filename": "Schneider_Wilhelm_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 386", "author": "", "orig_id": 1406849}}, {"model": "metainfo.source", "pk": 3988, "fields": {"orig_filename": "Schnek_Friedrich_1900_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 390f.", "author": "", "orig_id": 1406859}}, {"model": "metainfo.source", "pk": 3989, "fields": {"orig_filename": "Schnek_Isidor_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 391f.", "author": "", "orig_id": 1406860}}, {"model": "metainfo.source", "pk": 3990, "fields": {"orig_filename": "Schnellar_Hans_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 394f.", "author": "", "orig_id": 1406866}}, {"model": "metainfo.source", "pk": 3991, "fields": {"orig_filename": "Schneller-Mohrthal_Otto_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 399f.", "author": "", "orig_id": 1406874}}, {"model": "metainfo.source", "pk": 3992, "fields": {"orig_filename": "Schneller_August_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 395", "author": "", "orig_id": 1406867}}, {"model": "metainfo.source", "pk": 3993, "fields": {"orig_filename": "Schneller_Christian_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 395f.", "author": "", "orig_id": 1406868}}, {"model": "metainfo.source", "pk": 3994, "fields": {"orig_filename": "Schneller_Istvan_1847_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 396", "author": "", "orig_id": 1406869}}, {"model": "metainfo.source", "pk": 3995, "fields": {"orig_filename": "Schneller_Josef-Anton_1796_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 396f.", "author": "", "orig_id": 1406870}}, {"model": "metainfo.source", "pk": 3996, "fields": {"orig_filename": "Schneller_Joseph_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 397", "author": "", "orig_id": 1406871}}, {"model": "metainfo.source", "pk": 3997, "fields": {"orig_filename": "Schneller_Julius-Franz-Borgias_1777_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 397f.", "author": "", "orig_id": 1406872}}, {"model": "metainfo.source", "pk": 3998, "fields": {"orig_filename": "Schneller_Karl_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 398f.", "author": "", "orig_id": 1406873}}, {"model": "metainfo.source", "pk": 3999, "fields": {"orig_filename": "Schnellinger_Josef_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 400", "author": "", "orig_id": 1406875}}, {"model": "metainfo.source", "pk": 4000, "fields": {"orig_filename": "Schnell_Friedrich_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 392", "author": "", "orig_id": 1406861}}, {"model": "metainfo.source", "pk": 4001, "fields": {"orig_filename": "Schnell_Josef_1822_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 392f.", "author": "", "orig_id": 1406862}}, {"model": "metainfo.source", "pk": 4002, "fields": {"orig_filename": "Schnell_Joseph_1822_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 393", "author": "", "orig_id": 1406863}}, {"model": "metainfo.source", "pk": 4003, "fields": {"orig_filename": "Schnell_Karl-Ernst_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 393f.", "author": "", "orig_id": 1406864}}, {"model": "metainfo.source", "pk": 4004, "fields": {"orig_filename": "Schnell_Ludwig-Franz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 394", "author": "", "orig_id": 1406865}}, {"model": "metainfo.source", "pk": 4005, "fields": {"orig_filename": "Schnepfleitner_Josef_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 400", "author": "", "orig_id": 1406876}}, {"model": "metainfo.source", "pk": 4006, "fields": {"orig_filename": "Schnerich_Alfred_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406877}}, {"model": "metainfo.source", "pk": 4007, "fields": {"orig_filename": "Schnerich_Franz-Xav_1771_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406878}}, {"model": "metainfo.source", "pk": 4008, "fields": {"orig_filename": "Schnerich_Franz-Xav_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406880}}, {"model": "metainfo.source", "pk": 4009, "fields": {"orig_filename": "Schnerich_Gotthard_1821_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401f.", "author": "", "orig_id": 1406881}}, {"model": "metainfo.source", "pk": 4010, "fields": {"orig_filename": "Schnerich_Wilhelm_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 401", "author": "", "orig_id": 1406879}}, {"model": "metainfo.source", "pk": 4011, "fields": {"orig_filename": "Schnider_August_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 402", "author": "", "orig_id": 1406882}}, {"model": "metainfo.source", "pk": 4012, "fields": {"orig_filename": "Schnierer_Alfred_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 402f.", "author": "", "orig_id": 1406883}}, {"model": "metainfo.source", "pk": 4013, "fields": {"orig_filename": "Schnierer_Julius_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 403", "author": "", "orig_id": 1406884}}, {"model": "metainfo.source", "pk": 4014, "fields": {"orig_filename": "Schnirch_Bohuslav_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 403f.", "author": "", "orig_id": 1406885}}, {"model": "metainfo.source", "pk": 4015, "fields": {"orig_filename": "Schnirch_Friedrich_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 404f.", "author": "", "orig_id": 1406886}}, {"model": "metainfo.source", "pk": 4016, "fields": {"orig_filename": "Schnirer_Friedrich_1889_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405", "author": "", "orig_id": 1406889}}, {"model": "metainfo.source", "pk": 4017, "fields": {"orig_filename": "Schnirer_Josef_1888_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405", "author": "", "orig_id": 1406888}}, {"model": "metainfo.source", "pk": 4018, "fields": {"orig_filename": "Schnirer_Moritz-Tobias_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 405f.", "author": "", "orig_id": 1406887}}, {"model": "metainfo.source", "pk": 4019, "fields": {"orig_filename": "Schnitzer_Alois_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 406", "author": "", "orig_id": 1406890}}, {"model": "metainfo.source", "pk": 4020, "fields": {"orig_filename": "Schmid_Leopold_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 284f.", "author": "", "orig_id": 1406419}}, {"model": "metainfo.source", "pk": 4021, "fields": {"orig_filename": "Schmid_Ludwig_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285", "author": "", "orig_id": 1406420}}, {"model": "metainfo.source", "pk": 4022, "fields": {"orig_filename": "Schmid_Ludwig_1880_1957.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285", "author": "", "orig_id": 1406421}}, {"model": "metainfo.source", "pk": 4023, "fields": {"orig_filename": "Schmid_Maria_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 285f.", "author": "", "orig_id": 1406422}}, {"model": "metainfo.source", "pk": 4024, "fields": {"orig_filename": "Schmid_Martin_1775_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 286", "author": "", "orig_id": 1406423}}, {"model": "metainfo.source", "pk": 4025, "fields": {"orig_filename": "Schmid_Mathias-Andreas_1742_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 287", "author": "", "orig_id": 1406425}}, {"model": "metainfo.source", "pk": 4026, "fields": {"orig_filename": "Schmid_Mathias_1835_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 286f.", "author": "", "orig_id": 1406424}}, {"model": "metainfo.source", "pk": 4027, "fields": {"orig_filename": "Schmid_Maximilian-Florian_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 288", "author": "", "orig_id": 1406427}}, {"model": "metainfo.source", "pk": 4028, "fields": {"orig_filename": "Schmid_Maximilian_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406534}}, {"model": "metainfo.source", "pk": 4029, "fields": {"orig_filename": "Schmid_Max_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 287f.", "author": "", "orig_id": 1406426}}, {"model": "metainfo.source", "pk": 4030, "fields": {"orig_filename": "Schmid_Mieczyslaw-Henryk_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289", "author": "", "orig_id": 1406428}}, {"model": "metainfo.source", "pk": 4031, "fields": {"orig_filename": "Schmid_Moriz_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289", "author": "", "orig_id": 1406429}}, {"model": "metainfo.source", "pk": 4032, "fields": {"orig_filename": "Schmid_Nikolaus_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 289f.", "author": "", "orig_id": 1406430}}, {"model": "metainfo.source", "pk": 4033, "fields": {"orig_filename": "Schmid_Oskar_1838_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 290", "author": "", "orig_id": 1406431}}, {"model": "metainfo.source", "pk": 4034, "fields": {"orig_filename": "Schmid_Oskar_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 290f.", "author": "", "orig_id": 1406432}}, {"model": "metainfo.source", "pk": 4035, "fields": {"orig_filename": "Schmid_Oskar_1897_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 291", "author": "", "orig_id": 1406433}}, {"model": "metainfo.source", "pk": 4036, "fields": {"orig_filename": "Schmid_Otto_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 291f.", "author": "", "orig_id": 1406434}}, {"model": "metainfo.source", "pk": 4037, "fields": {"orig_filename": "Schmid_Peter_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292", "author": "", "orig_id": 1406435}}, {"model": "metainfo.source", "pk": 4038, "fields": {"orig_filename": "Schmid_Richard_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406533}}, {"model": "metainfo.source", "pk": 4039, "fields": {"orig_filename": "Schmid_Richard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292", "author": "", "orig_id": 1406436}}, {"model": "metainfo.source", "pk": 4040, "fields": {"orig_filename": "Schmid_Robert-Hans_1870_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 292f.", "author": "", "orig_id": 1406437}}, {"model": "metainfo.source", "pk": 4041, "fields": {"orig_filename": "Schmid_Rudolf-Viktor_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283", "author": "", "orig_id": 1406416}}, {"model": "metainfo.source", "pk": 4042, "fields": {"orig_filename": "Schmid_Rudolf_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 293f.", "author": "", "orig_id": 1406438}}, {"model": "metainfo.source", "pk": 4043, "fields": {"orig_filename": "Schmid_Rudolf_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 294", "author": "", "orig_id": 1406439}}, {"model": "metainfo.source", "pk": 4044, "fields": {"orig_filename": "Schmid_Sandor_1855_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 294f.", "author": "", "orig_id": 1406440}}, {"model": "metainfo.source", "pk": 4045, "fields": {"orig_filename": "Schmid_Siegfried_1774_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 295f.", "author": "", "orig_id": 1406441}}, {"model": "metainfo.source", "pk": 4046, "fields": {"orig_filename": "Schmid_Sigismund_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 296", "author": "", "orig_id": 1406442}}, {"model": "metainfo.source", "pk": 4047, "fields": {"orig_filename": "Schmid_Theodor-Edmund_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406449}}, {"model": "metainfo.source", "pk": 4048, "fields": {"orig_filename": "Schmid_Theodor_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 296f.", "author": "", "orig_id": 1406443}}, {"model": "metainfo.source", "pk": 4049, "fields": {"orig_filename": "Schmid_Theodor_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 297", "author": "", "orig_id": 1406444}}, {"model": "metainfo.source", "pk": 4050, "fields": {"orig_filename": "Schmid_Valentin_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406445}}, {"model": "metainfo.source", "pk": 4051, "fields": {"orig_filename": "Schmid_Victor-Anton_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298f.", "author": "", "orig_id": 1406446}}, {"model": "metainfo.source", "pk": 4052, "fields": {"orig_filename": "Schmid_Victor-Ladislaus_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406447}}, {"model": "metainfo.source", "pk": 4053, "fields": {"orig_filename": "Schmid_Walter_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 299", "author": "", "orig_id": 1406450}}, {"model": "metainfo.source", "pk": 4054, "fields": {"orig_filename": "Schmid_Wilhelm-Joseph_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 301f.", "author": "", "orig_id": 1406715}}, {"model": "metainfo.source", "pk": 4055, "fields": {"orig_filename": "Schmid_Wilhelm-Matthaeus_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 302f.", "author": "", "orig_id": 1406716}}, {"model": "metainfo.source", "pk": 4056, "fields": {"orig_filename": "Schmid_Wilhelm_1817_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 299f.", "author": "", "orig_id": 1406451}}, {"model": "metainfo.source", "pk": 4057, "fields": {"orig_filename": "Schmid_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 300f.", "author": "", "orig_id": 1406452}}, {"model": "metainfo.source", "pk": 4058, "fields": {"orig_filename": "Schmid_Wilhelm_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 301", "author": "", "orig_id": 1406453}}, {"model": "metainfo.source", "pk": 4059, "fields": {"orig_filename": "Schmid_Wladyslaw_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 303", "author": "", "orig_id": 1406717}}, {"model": "metainfo.source", "pk": 4060, "fields": {"orig_filename": "Schmiedel_Johann-Bapt_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 328", "author": "", "orig_id": 1406607}}, {"model": "metainfo.source", "pk": 4061, "fields": {"orig_filename": "Schmieder_Pius_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 329", "author": "", "orig_id": 1406608}}, {"model": "metainfo.source", "pk": 4062, "fields": {"orig_filename": "Schmiedl_Adolph-Abraham_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 329f.", "author": "", "orig_id": 1406609}}, {"model": "metainfo.source", "pk": 4063, "fields": {"orig_filename": "Schmiedl_Georg_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 330", "author": "", "orig_id": 1406610}}, {"model": "metainfo.source", "pk": 4064, "fields": {"orig_filename": "Schmieger_Adolf-Josef_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 330f.", "author": "", "orig_id": 1406611}}, {"model": "metainfo.source", "pk": 4065, "fields": {"orig_filename": "Schmieger_Ignaz-Anton_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 331", "author": "", "orig_id": 1406612}}, {"model": "metainfo.source", "pk": 4066, "fields": {"orig_filename": "Schmieger_Wilhelm_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 331f.", "author": "", "orig_id": 1406613}}, {"model": "metainfo.source", "pk": 4067, "fields": {"orig_filename": "Schmigoz_Julius_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 332", "author": "", "orig_id": 1406614}}, {"model": "metainfo.source", "pk": 4068, "fields": {"orig_filename": "Schmilauer_Alois_1837_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 332f.", "author": "", "orig_id": 1406615}}, {"model": "metainfo.source", "pk": 4069, "fields": {"orig_filename": "Schmirger_Johann_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 333", "author": "", "orig_id": 1406616}}, {"model": "metainfo.source", "pk": 4070, "fields": {"orig_filename": "Schmirl_Hans_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 333f.", "author": "", "orig_id": 1406617}}, {"model": "metainfo.source", "pk": 4071, "fields": {"orig_filename": "Schmitson_Teutwart_1830_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 334", "author": "", "orig_id": 1406618}}, {"model": "metainfo.source", "pk": 4072, "fields": {"orig_filename": "Schmitten_Eduard_1814_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 334f.", "author": "", "orig_id": 1406619}}, {"model": "metainfo.source", "pk": 4073, "fields": {"orig_filename": "Schmitzhausen-Bruckherr-Donau_Franz_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406676}}, {"model": "metainfo.source", "pk": 4074, "fields": {"orig_filename": "Schmitzhausen_Marie_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 338f.", "author": "", "orig_id": 1406675}}, {"model": "metainfo.source", "pk": 4075, "fields": {"orig_filename": "Schmitz_Ettore_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 335f.", "author": "", "orig_id": 1406621}}, {"model": "metainfo.source", "pk": 4076, "fields": {"orig_filename": "Schmitz_Franz_1874_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 336f.", "author": "", "orig_id": 1406622}}, {"model": "metainfo.source", "pk": 4077, "fields": {"orig_filename": "Schmitz_Johann-Georg_1765_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 337", "author": "", "orig_id": 1406672}}, {"model": "metainfo.source", "pk": 4078, "fields": {"orig_filename": "Schmitz_Oskar-A-H_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 337f.", "author": "", "orig_id": 1406673}}, {"model": "metainfo.source", "pk": 4079, "fields": {"orig_filename": "Schmitz_Siegfried_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 338", "author": "", "orig_id": 1406674}}, {"model": "metainfo.source", "pk": 4080, "fields": {"orig_filename": "Schmoeger_Alois_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406677}}, {"model": "metainfo.source", "pk": 4081, "fields": {"orig_filename": "Schmoelzer_Caroline_1840_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406679}}, {"model": "metainfo.source", "pk": 4082, "fields": {"orig_filename": "Schmoelzer_Conrad_1862_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339", "author": "", "orig_id": 1406678}}, {"model": "metainfo.source", "pk": 4083, "fields": {"orig_filename": "Schmoelzer_Hans_1856_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 339f.", "author": "", "orig_id": 1406680}}, {"model": "metainfo.source", "pk": 4084, "fields": {"orig_filename": "Schmoelzer_Jakob-Eduard_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 340", "author": "", "orig_id": 1406681}}, {"model": "metainfo.source", "pk": 4085, "fields": {"orig_filename": "Schmoelzer_Josef_1821_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 340f.", "author": "", "orig_id": 1406682}}, {"model": "metainfo.source", "pk": 4086, "fields": {"orig_filename": "Schmolka_Marie_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 341f.", "author": "", "orig_id": 1406684}}, {"model": "metainfo.source", "pk": 4087, "fields": {"orig_filename": "Schmolk_Frigdian_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 341", "author": "", "orig_id": 1406683}}, {"model": "metainfo.source", "pk": 4088, "fields": {"orig_filename": "Schmoll-Eisenwerth_Karl_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 342f.", "author": "", "orig_id": 1406695}}, {"model": "metainfo.source", "pk": 4089, "fields": {"orig_filename": "Schmoll_Karl_1852_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 342", "author": "", "orig_id": 1406694}}, {"model": "metainfo.source", "pk": 4090, "fields": {"orig_filename": "Schmonn_Joseph_1785_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 343f.", "author": "", "orig_id": 1406696}}, {"model": "metainfo.source", "pk": 4091, "fields": {"orig_filename": "Schmoranzer_Josef_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 345f.", "author": "", "orig_id": 1406700}}, {"model": "metainfo.source", "pk": 4092, "fields": {"orig_filename": "Schmoranz_Frantisek_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344", "author": "", "orig_id": 1406697}}, {"model": "metainfo.source", "pk": 4093, "fields": {"orig_filename": "Schmoranz_Frantisek_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344", "author": "", "orig_id": 1406698}}, {"model": "metainfo.source", "pk": 4094, "fields": {"orig_filename": "Schmoranz_Gustav_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 344f.", "author": "", "orig_id": 1406699}}, {"model": "metainfo.source", "pk": 4095, "fields": {"orig_filename": "Schmuckenschlaeger_Adolf_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406701}}, {"model": "metainfo.source", "pk": 4096, "fields": {"orig_filename": "Schmuckenschlaeger_Antonin_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406703}}, {"model": "metainfo.source", "pk": 4097, "fields": {"orig_filename": "Schmuckenschlaeger_Michael_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346", "author": "", "orig_id": 1406702}}, {"model": "metainfo.source", "pk": 4098, "fields": {"orig_filename": "Schmueck_Franz_1797_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 346f.", "author": "", "orig_id": 1406704}}, {"model": "metainfo.source", "pk": 4099, "fields": {"orig_filename": "Schmued_Ludwig_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 347", "author": "", "orig_id": 1406705}}, {"model": "metainfo.source", "pk": 4100, "fields": {"orig_filename": "Schmutzer_Alice_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 348f.", "author": "", "orig_id": 1406707}}, {"model": "metainfo.source", "pk": 4101, "fields": {"orig_filename": "Schmutzer_Anton_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 349", "author": "", "orig_id": 1406708}}, {"model": "metainfo.source", "pk": 4102, "fields": {"orig_filename": "Schmutzer_Ferdinand_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 349f.", "author": "", "orig_id": 1406709}}, {"model": "metainfo.source", "pk": 4103, "fields": {"orig_filename": "Schmutzer_Hermine_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406714}}, {"model": "metainfo.source", "pk": 4104, "fields": {"orig_filename": "Schmutzer_Philippine_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406713}}, {"model": "metainfo.source", "pk": 4105, "fields": {"orig_filename": "Schmutzer_Philipp_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 350", "author": "", "orig_id": 1406710}}, {"model": "metainfo.source", "pk": 4106, "fields": {"orig_filename": "Schmutzer_Wilhelm_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351", "author": "", "orig_id": 1406712}}, {"model": "metainfo.source", "pk": 4107, "fields": {"orig_filename": "Schmutz_Karl_1787_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 347f.", "author": "", "orig_id": 1406706}}, {"model": "metainfo.source", "pk": 4108, "fields": {"orig_filename": "Schnabel_August_1821_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352", "author": "", "orig_id": 1406626}}, {"model": "metainfo.source", "pk": 4109, "fields": {"orig_filename": "Schnabel_Franz_1900_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1407290}}, {"model": "metainfo.source", "pk": 4110, "fields": {"orig_filename": "Schnabel_Georg-Norbert_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352", "author": "", "orig_id": 1406624}}, {"model": "metainfo.source", "pk": 4111, "fields": {"orig_filename": "Schnabel_Gottlieb_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1406625}}, {"model": "metainfo.source", "pk": 4112, "fields": {"orig_filename": "Schnabel_Hans_1902_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 352f.", "author": "", "orig_id": 1407291}}, {"model": "metainfo.source", "pk": 4113, "fields": {"orig_filename": "Schnabel_Isidor_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 353f.", "author": "", "orig_id": 1406627}}, {"model": "metainfo.source", "pk": 4114, "fields": {"orig_filename": "Schnabel_Louis_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 354", "author": "", "orig_id": 1406628}}, {"model": "metainfo.source", "pk": 4115, "fields": {"orig_filename": "Schnabl_Friedrich_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 354f.", "author": "", "orig_id": 1406630}}, {"model": "metainfo.source", "pk": 4116, "fields": {"orig_filename": "Schnabl_Jacob_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406637}}, {"model": "metainfo.source", "pk": 4117, "fields": {"orig_filename": "Schnabl_Josef_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406639}}, {"model": "metainfo.source", "pk": 4118, "fields": {"orig_filename": "Schnabl_Leopold_1846_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355f.", "author": "", "orig_id": 1406640}}, {"model": "metainfo.source", "pk": 4119, "fields": {"orig_filename": "Schnabl_Leo_1870_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 355", "author": "", "orig_id": 1406638}}, {"model": "metainfo.source", "pk": 4120, "fields": {"orig_filename": "Schnabl_Moriz_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 356", "author": "", "orig_id": 1406641}}, {"model": "metainfo.source", "pk": 4121, "fields": {"orig_filename": "Schmidl_Edmund_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322", "author": "", "orig_id": 1406755}}, {"model": "metainfo.source", "pk": 4122, "fields": {"orig_filename": "Schmidl_Eduard-Adam-Gorgonius_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322f.", "author": "", "orig_id": 1406757}}, {"model": "metainfo.source", "pk": 4123, "fields": {"orig_filename": "Schmidl_Emil-C_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406758}}, {"model": "metainfo.source", "pk": 4124, "fields": {"orig_filename": "Schmidl_Julius_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 322", "author": "", "orig_id": 1406756}}, {"model": "metainfo.source", "pk": 4125, "fields": {"orig_filename": "Schmidl_Ludwig_1811_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323f.", "author": "", "orig_id": 1406761}}, {"model": "metainfo.source", "pk": 4126, "fields": {"orig_filename": "Schmidl_Ludwig_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406759}}, {"model": "metainfo.source", "pk": 4127, "fields": {"orig_filename": "Schmidl_Ludwig_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 324f.", "author": "", "orig_id": 1406762}}, {"model": "metainfo.source", "pk": 4128, "fields": {"orig_filename": "Schmidl_Marianne_1890_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325", "author": "", "orig_id": 1406763}}, {"model": "metainfo.source", "pk": 4129, "fields": {"orig_filename": "Schmidl_Michael_1779_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325f.", "author": "", "orig_id": 1406598}}, {"model": "metainfo.source", "pk": 4130, "fields": {"orig_filename": "Schmidl_Rudolf-E_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 323", "author": "", "orig_id": 1406760}}, {"model": "metainfo.source", "pk": 4131, "fields": {"orig_filename": "Schmidl_Rudolf_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406603}}, {"model": "metainfo.source", "pk": 4132, "fields": {"orig_filename": "Schmidl_Rupert_1735_1788.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326", "author": "", "orig_id": 1406602}}, {"model": "metainfo.source", "pk": 4133, "fields": {"orig_filename": "Schmidl_Rupert_1773_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326", "author": "", "orig_id": 1406601}}, {"model": "metainfo.source", "pk": 4134, "fields": {"orig_filename": "Schmidl_Wenzl-Ludwig_1811_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406604}}, {"model": "metainfo.source", "pk": 4135, "fields": {"orig_filename": "Schmidl_Wenzl_1783_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 326f.", "author": "", "orig_id": 1406600}}, {"model": "metainfo.source", "pk": 4136, "fields": {"orig_filename": "Schmidl_Wilhelm_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327", "author": "", "orig_id": 1406605}}, {"model": "metainfo.source", "pk": 4137, "fields": {"orig_filename": "Schmidtmayer_Rudolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 327f.", "author": "", "orig_id": 1406606}}, {"model": "metainfo.source", "pk": 4138, "fields": {"orig_filename": "Schmid_Adalbert_1804_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 237f.", "author": "", "orig_id": 1406522}}, {"model": "metainfo.source", "pk": 4139, "fields": {"orig_filename": "Schmid_Adalbert_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 238", "author": "", "orig_id": 1406523}}, {"model": "metainfo.source", "pk": 4140, "fields": {"orig_filename": "Schmid_Adam-August_1777_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 238f.", "author": "", "orig_id": 1406524}}, {"model": "metainfo.source", "pk": 4141, "fields": {"orig_filename": "Schmid_Agnes_1831_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 239", "author": "", "orig_id": 1406525}}, {"model": "metainfo.source", "pk": 4142, "fields": {"orig_filename": "Schmid_Albert-Eugen-Edmund_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 240", "author": "", "orig_id": 1406527}}, {"model": "metainfo.source", "pk": 4143, "fields": {"orig_filename": "Schmid_Albert_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 239f.", "author": "", "orig_id": 1406526}}, {"model": "metainfo.source", "pk": 4144, "fields": {"orig_filename": "Schmid_Alfred_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 298", "author": "", "orig_id": 1406448}}, {"model": "metainfo.source", "pk": 4145, "fields": {"orig_filename": "Schmid_Alois_1798_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 240f.", "author": "", "orig_id": 1406528}}, {"model": "metainfo.source", "pk": 4146, "fields": {"orig_filename": "Schmid_Anton_1765_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 241", "author": "", "orig_id": 1406529}}, {"model": "metainfo.source", "pk": 4147, "fields": {"orig_filename": "Schmid_Anton_1787_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 241f.", "author": "", "orig_id": 1406530}}, {"model": "metainfo.source", "pk": 4148, "fields": {"orig_filename": "Schmid_Anton_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242", "author": "", "orig_id": 1406532}}, {"model": "metainfo.source", "pk": 4149, "fields": {"orig_filename": "Schmid_Anton_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 243", "author": "", "orig_id": 1406535}}, {"model": "metainfo.source", "pk": 4150, "fields": {"orig_filename": "Schmid_Anton_1900_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 243f.", "author": "", "orig_id": 1406536}}, {"model": "metainfo.source", "pk": 4151, "fields": {"orig_filename": "Schmid_Arnold_1903_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 244f.", "author": "", "orig_id": 1406537}}, {"model": "metainfo.source", "pk": 4152, "fields": {"orig_filename": "Schmid_Arthur_1866_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245", "author": "", "orig_id": 1406539}}, {"model": "metainfo.source", "pk": 4153, "fields": {"orig_filename": "Schmid_August_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245f.", "author": "", "orig_id": 1406540}}, {"model": "metainfo.source", "pk": 4154, "fields": {"orig_filename": "Schmid_August_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 246f.", "author": "", "orig_id": 1406541}}, {"model": "metainfo.source", "pk": 4155, "fields": {"orig_filename": "Schmid_Carl-Eugen_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 247f.", "author": "", "orig_id": 1406543}}, {"model": "metainfo.source", "pk": 4156, "fields": {"orig_filename": "Schmid_Carl-Friedrich-Heinrich_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 248f.", "author": "", "orig_id": 1406544}}, {"model": "metainfo.source", "pk": 4157, "fields": {"orig_filename": "Schmid_Carl-Jakob-Ludwig_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249", "author": "", "orig_id": 1406545}}, {"model": "metainfo.source", "pk": 4158, "fields": {"orig_filename": "Schmid_Carl-Wilhelm_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249", "author": "", "orig_id": 1406546}}, {"model": "metainfo.source", "pk": 4159, "fields": {"orig_filename": "Schmid_Carl_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 247", "author": "", "orig_id": 1406542}}, {"model": "metainfo.source", "pk": 4160, "fields": {"orig_filename": "Schmid_Cordula_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 249f.", "author": "", "orig_id": 1406547}}, {"model": "metainfo.source", "pk": 4161, "fields": {"orig_filename": "Schmid_Eduard-Johann_1846_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250f.", "author": "", "orig_id": 1406549}}, {"model": "metainfo.source", "pk": 4162, "fields": {"orig_filename": "Schmid_Eduard-Oskar_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 251f.", "author": "", "orig_id": 1406551}}, {"model": "metainfo.source", "pk": 4163, "fields": {"orig_filename": "Schmid_Eduard_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250", "author": "", "orig_id": 1406548}}, {"model": "metainfo.source", "pk": 4164, "fields": {"orig_filename": "Schmid_Erich-August_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 252", "author": "", "orig_id": 1406552}}, {"model": "metainfo.source", "pk": 4165, "fields": {"orig_filename": "Schmid_Ernst_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 252f.", "author": "", "orig_id": 1406553}}, {"model": "metainfo.source", "pk": 4166, "fields": {"orig_filename": "Schmid_Eugen-Heinrich_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 253f.", "author": "", "orig_id": 1406555}}, {"model": "metainfo.source", "pk": 4167, "fields": {"orig_filename": "Schmid_Ferdinand-Jozef_1791_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 254f.", "author": "", "orig_id": 1406557}}, {"model": "metainfo.source", "pk": 4168, "fields": {"orig_filename": "Schmid_Ferdinand_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 254", "author": "", "orig_id": 1406556}}, {"model": "metainfo.source", "pk": 4169, "fields": {"orig_filename": "Schmid_Florian_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 255f.", "author": "", "orig_id": 1406558}}, {"model": "metainfo.source", "pk": 4170, "fields": {"orig_filename": "Schmid_Franz-X-Robert_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261f.", "author": "", "orig_id": 1406568}}, {"model": "metainfo.source", "pk": 4171, "fields": {"orig_filename": "Schmid_Franz-X_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 260f.", "author": "", "orig_id": 1406565}}, {"model": "metainfo.source", "pk": 4172, "fields": {"orig_filename": "Schmid_Franz-X_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261", "author": "", "orig_id": 1406566}}, {"model": "metainfo.source", "pk": 4173, "fields": {"orig_filename": "Schmid_Franz_1764_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 256", "author": "", "orig_id": 1406559}}, {"model": "metainfo.source", "pk": 4174, "fields": {"orig_filename": "Schmid_Franz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 256f.", "author": "", "orig_id": 1406560}}, {"model": "metainfo.source", "pk": 4175, "fields": {"orig_filename": "Schmid_Franz_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 257", "author": "", "orig_id": 1406561}}, {"model": "metainfo.source", "pk": 4176, "fields": {"orig_filename": "Schmid_Franz_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 257f.", "author": "", "orig_id": 1406562}}, {"model": "metainfo.source", "pk": 4177, "fields": {"orig_filename": "Schmid_Franz_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 258", "author": "", "orig_id": 1406563}}, {"model": "metainfo.source", "pk": 4178, "fields": {"orig_filename": "Schmid_Franz_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 258ff.", "author": "", "orig_id": 1406564}}, {"model": "metainfo.source", "pk": 4179, "fields": {"orig_filename": "Schmid_Friedrich_1821_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 262", "author": "", "orig_id": 1406569}}, {"model": "metainfo.source", "pk": 4180, "fields": {"orig_filename": "Schmid_Friedrich_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 262ff.", "author": "", "orig_id": 1406570}}, {"model": "metainfo.source", "pk": 4181, "fields": {"orig_filename": "Schmid_Friedrich_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 264", "author": "", "orig_id": 1406571}}, {"model": "metainfo.source", "pk": 4182, "fields": {"orig_filename": "Schmid_Georg-Fidelis_1741_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 265f.", "author": "", "orig_id": 1406575}}, {"model": "metainfo.source", "pk": 4183, "fields": {"orig_filename": "Schmid_Georg_1844_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 264f.", "author": "", "orig_id": 1406573}}, {"model": "metainfo.source", "pk": 4184, "fields": {"orig_filename": "Schmid_Georg_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 265", "author": "", "orig_id": 1406574}}, {"model": "metainfo.source", "pk": 4185, "fields": {"orig_filename": "Schmid_Gustav-Johann-Leopold_1826_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 267", "author": "", "orig_id": 1406577}}, {"model": "metainfo.source", "pk": 4186, "fields": {"orig_filename": "Schmid_Gustav_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 266f.", "author": "", "orig_id": 1406576}}, {"model": "metainfo.source", "pk": 4187, "fields": {"orig_filename": "Schmid_Hans_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 267f.", "author": "", "orig_id": 1406578}}, {"model": "metainfo.source", "pk": 4188, "fields": {"orig_filename": "Schmid_Heinrich-Daniel_1805_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270f.", "author": "", "orig_id": 1406585}}, {"model": "metainfo.source", "pk": 4189, "fields": {"orig_filename": "Schmid_Heinrich_1779_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 268", "author": "", "orig_id": 1406579}}, {"model": "metainfo.source", "pk": 4190, "fields": {"orig_filename": "Schmid_Heinrich_1809_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 268f.", "author": "", "orig_id": 1406580}}, {"model": "metainfo.source", "pk": 4191, "fields": {"orig_filename": "Schmid_Heinrich_1815_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 269f.", "author": "", "orig_id": 1406581}}, {"model": "metainfo.source", "pk": 4192, "fields": {"orig_filename": "Schmid_Heinrich_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270", "author": "", "orig_id": 1406583}}, {"model": "metainfo.source", "pk": 4193, "fields": {"orig_filename": "Schmid_Heinrich_1849_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 270", "author": "", "orig_id": 1406584}}, {"model": "metainfo.source", "pk": 4194, "fields": {"orig_filename": "Schmid_Henryk-Leopold_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 271f.", "author": "", "orig_id": 1406586}}, {"model": "metainfo.source", "pk": 4195, "fields": {"orig_filename": "Schmid_Hermann_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 272", "author": "", "orig_id": 1406587}}, {"model": "metainfo.source", "pk": 4196, "fields": {"orig_filename": "Schmid_Hugo_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273", "author": "", "orig_id": 1406588}}, {"model": "metainfo.source", "pk": 4197, "fields": {"orig_filename": "Schmid_Hugo_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273", "author": "", "orig_id": 1406589}}, {"model": "metainfo.source", "pk": 4198, "fields": {"orig_filename": "Schmid_Janos-Gyoergy_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 273f.", "author": "", "orig_id": 1406590}}, {"model": "metainfo.source", "pk": 4199, "fields": {"orig_filename": "Schmid_Johann-Joseph_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 274f.", "author": "", "orig_id": 1406592}}, {"model": "metainfo.source", "pk": 4200, "fields": {"orig_filename": "Schmid_Johanna-Carolina_1794_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275", "author": "", "orig_id": 1406593}}, {"model": "metainfo.source", "pk": 4201, "fields": {"orig_filename": "Schmid_Johann_1776_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 269", "author": "", "orig_id": 1406582}}, {"model": "metainfo.source", "pk": 4202, "fields": {"orig_filename": "Schmid_Johann_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 274", "author": "", "orig_id": 1406591}}, {"model": "metainfo.source", "pk": 4203, "fields": {"orig_filename": "Schmid_Josef-Eduard_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 278", "author": "", "orig_id": 1406405}}, {"model": "metainfo.source", "pk": 4204, "fields": {"orig_filename": "Schmid_Josefine_1837_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 278f.", "author": "", "orig_id": 1406407}}, {"model": "metainfo.source", "pk": 4205, "fields": {"orig_filename": "Schmid_Josef_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 275f.", "author": "", "orig_id": 1406595}}, {"model": "metainfo.source", "pk": 4206, "fields": {"orig_filename": "Schmid_Josef_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276", "author": "", "orig_id": 2036249}}, {"model": "metainfo.source", "pk": 4207, "fields": {"orig_filename": "Schmid_Josef_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276", "author": "", "orig_id": 1406596}}, {"model": "metainfo.source", "pk": 4208, "fields": {"orig_filename": "Schmid_Joseph_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 261", "author": "", "orig_id": 1406567}}, {"model": "metainfo.source", "pk": 4209, "fields": {"orig_filename": "Schmid_Julius_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 279f.", "author": "", "orig_id": 1406408}}, {"model": "metainfo.source", "pk": 4210, "fields": {"orig_filename": "Schmid_Karl-Florian_1823_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283", "author": "", "orig_id": 1406415}}, {"model": "metainfo.source", "pk": 4211, "fields": {"orig_filename": "Schmid_Karl_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 280", "author": "", "orig_id": 1406409}}, {"model": "metainfo.source", "pk": 4212, "fields": {"orig_filename": "Schmid_Karl_1825_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 280f.", "author": "", "orig_id": 1406410}}, {"model": "metainfo.source", "pk": 4213, "fields": {"orig_filename": "Schmid_Karl_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 281", "author": "", "orig_id": 1406411}}, {"model": "metainfo.source", "pk": 4214, "fields": {"orig_filename": "Schmid_Karl_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 253", "author": "", "orig_id": 1406554}}, {"model": "metainfo.source", "pk": 4215, "fields": {"orig_filename": "Schmid_Karl_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 281f.", "author": "", "orig_id": 1406412}}, {"model": "metainfo.source", "pk": 4216, "fields": {"orig_filename": "Schmid_Karl_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 282", "author": "", "orig_id": 1406413}}, {"model": "metainfo.source", "pk": 4217, "fields": {"orig_filename": "Schmid_Karl_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 282f.", "author": "", "orig_id": 1406414}}, {"model": "metainfo.source", "pk": 4218, "fields": {"orig_filename": "Schmid_Karl_1905_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 245", "author": "", "orig_id": 1406538}}, {"model": "metainfo.source", "pk": 4219, "fields": {"orig_filename": "Schmid_Koloman_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 283f.", "author": "", "orig_id": 1406417}}, {"model": "metainfo.source", "pk": 4220, "fields": {"orig_filename": "Schmid_Leopold_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 284", "author": "", "orig_id": 1406418}}, {"model": "metainfo.source", "pk": 4221, "fields": {"orig_filename": "Schlinger_Katharina_1869_1954.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207", "author": "", "orig_id": 1406461}}, {"model": "metainfo.source", "pk": 4222, "fields": {"orig_filename": "Schlitter-Niedernberg_Karl_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 208f.", "author": "", "orig_id": 1406464}}, {"model": "metainfo.source", "pk": 4223, "fields": {"orig_filename": "Schlitter_Hanns_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207f.", "author": "", "orig_id": 1406462}}, {"model": "metainfo.source", "pk": 4224, "fields": {"orig_filename": "Schlitter_Johann_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 208", "author": "", "orig_id": 1406463}}, {"model": "metainfo.source", "pk": 4225, "fields": {"orig_filename": "Schloegelhofer_Edmund_1836_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 209f.", "author": "", "orig_id": 1406465}}, {"model": "metainfo.source", "pk": 4226, "fields": {"orig_filename": "Schloegelhofer_Franz_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210", "author": "", "orig_id": 1406466}}, {"model": "metainfo.source", "pk": 4227, "fields": {"orig_filename": "Schloegl_Alfons_1886_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210", "author": "", "orig_id": 1406467}}, {"model": "metainfo.source", "pk": 4228, "fields": {"orig_filename": "Schloegl_Friedrich_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 210f.", "author": "", "orig_id": 1406468}}, {"model": "metainfo.source", "pk": 4229, "fields": {"orig_filename": "Schloegl_Josefine_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 211", "author": "", "orig_id": 1406469}}, {"model": "metainfo.source", "pk": 4230, "fields": {"orig_filename": "Schloegl_Nivard_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 211f.", "author": "", "orig_id": 1406470}}, {"model": "metainfo.source", "pk": 4231, "fields": {"orig_filename": "Schloenbach_Urban_1841_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 212", "author": "", "orig_id": 1406471}}, {"model": "metainfo.source", "pk": 4232, "fields": {"orig_filename": "Schloer_Alois_1805_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 213", "author": "", "orig_id": 1406472}}, {"model": "metainfo.source", "pk": 4233, "fields": {"orig_filename": "Schloessinger_Wilhelm_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 214f.", "author": "", "orig_id": 1406475}}, {"model": "metainfo.source", "pk": 4234, "fields": {"orig_filename": "Schloess_Heinrich-Edmund_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 213f.", "author": "", "orig_id": 1406473}}, {"model": "metainfo.source", "pk": 4235, "fields": {"orig_filename": "Schloess_Karl-Johann_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 214", "author": "", "orig_id": 1406474}}, {"model": "metainfo.source", "pk": 4236, "fields": {"orig_filename": "Schloffer_Alois_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 215", "author": "", "orig_id": 1406476}}, {"model": "metainfo.source", "pk": 4237, "fields": {"orig_filename": "Schloffer_Hermann-Alexander_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 215f.", "author": "", "orig_id": 1406477}}, {"model": "metainfo.source", "pk": 4238, "fields": {"orig_filename": "Schloissnigg_Johann-Nep_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 216f.", "author": "", "orig_id": 1406478}}, {"model": "metainfo.source", "pk": 4239, "fields": {"orig_filename": "Schloissnigg_Theodor-Wilhelm_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 217", "author": "", "orig_id": 1406479}}, {"model": "metainfo.source", "pk": 4240, "fields": {"orig_filename": "Schlossar_Anton_1849_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 217f.", "author": "", "orig_id": 1406480}}, {"model": "metainfo.source", "pk": 4241, "fields": {"orig_filename": "Schlossar_Viktor_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 218", "author": "", "orig_id": 1406481}}, {"model": "metainfo.source", "pk": 4242, "fields": {"orig_filename": "Schlosser-Klekovski_Josip_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 219f.", "author": "", "orig_id": 1406484}}, {"model": "metainfo.source", "pk": 4243, "fields": {"orig_filename": "Schlosser_Julius-Alwin_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 218f.", "author": "", "orig_id": 1406482}}, {"model": "metainfo.source", "pk": 4244, "fields": {"orig_filename": "Schlosser_Theodor_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 219", "author": "", "orig_id": 1406483}}, {"model": "metainfo.source", "pk": 4245, "fields": {"orig_filename": "Schlossnikel_Hieronymus_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 220", "author": "", "orig_id": 1406485}}, {"model": "metainfo.source", "pk": 4246, "fields": {"orig_filename": "Schlotterbeck_Wilhelm-Friedrich_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 220f.", "author": "", "orig_id": 1406486}}, {"model": "metainfo.source", "pk": 4247, "fields": {"orig_filename": "Schlucker_Philipp_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 221", "author": "", "orig_id": 2036478}}, {"model": "metainfo.source", "pk": 4248, "fields": {"orig_filename": "Schluga-Rastenfeld_August_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 221f.", "author": "", "orig_id": 1406487}}, {"model": "metainfo.source", "pk": 4249, "fields": {"orig_filename": "Schluga-Rastenfeld_Franz-Sales_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 222", "author": "", "orig_id": 1406488}}, {"model": "metainfo.source", "pk": 4250, "fields": {"orig_filename": "Schlumberger-Goldeck_Gustav_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 2036503}}, {"model": "metainfo.source", "pk": 4251, "fields": {"orig_filename": "Schlumberger-Goldeck_Otto_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 1422951}}, {"model": "metainfo.source", "pk": 4252, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert-Alwin_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 1406490}}, {"model": "metainfo.source", "pk": 4253, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223", "author": "", "orig_id": 2036512}}, {"model": "metainfo.source", "pk": 4254, "fields": {"orig_filename": "Schlumberger-Goldeck_Robert_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 222f.", "author": "", "orig_id": 1406489}}, {"model": "metainfo.source", "pk": 4255, "fields": {"orig_filename": "Schlumpf_Sigmund-Franz-Joseph_1819_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 223f.", "author": "", "orig_id": 1406491}}, {"model": "metainfo.source", "pk": 4256, "fields": {"orig_filename": "Schlusche_Eduard_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 224f.", "author": "", "orig_id": 1406492}}, {"model": "metainfo.source", "pk": 4257, "fields": {"orig_filename": "Schmaeck-Stregen_Emilia_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 225", "author": "", "orig_id": 1406493}}, {"model": "metainfo.source", "pk": 4258, "fields": {"orig_filename": "Schmalfuss_Anton_1821_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226f.", "author": "", "orig_id": 1406497}}, {"model": "metainfo.source", "pk": 4259, "fields": {"orig_filename": "Schmalz_Josef_1804_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 227", "author": "", "orig_id": 1406498}}, {"model": "metainfo.source", "pk": 4260, "fields": {"orig_filename": "Schmal_Adolf_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 225f.", "author": "", "orig_id": 1406494}}, {"model": "metainfo.source", "pk": 4261, "fields": {"orig_filename": "Schmal_Felix_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406495}}, {"model": "metainfo.source", "pk": 4262, "fields": {"orig_filename": "Schmarda_Anton_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 228", "author": "", "orig_id": 1406500}}, {"model": "metainfo.source", "pk": 4263, "fields": {"orig_filename": "Schmarda_Karl-Johann_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 227f.", "author": "", "orig_id": 1406499}}, {"model": "metainfo.source", "pk": 4264, "fields": {"orig_filename": "Schmarda_Ludwig-Karl_1819_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 228f.", "author": "", "orig_id": 1406501}}, {"model": "metainfo.source", "pk": 4265, "fields": {"orig_filename": "Schmeidel_Gustav_1895_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 229f.", "author": "", "orig_id": 1406503}}, {"model": "metainfo.source", "pk": 4266, "fields": {"orig_filename": "Schmeja_Edmund_1837_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 230f.", "author": "", "orig_id": 1406504}}, {"model": "metainfo.source", "pk": 4267, "fields": {"orig_filename": "Schmeja_Ernst_1868_1954.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231", "author": "", "orig_id": 1406506}}, {"model": "metainfo.source", "pk": 4268, "fields": {"orig_filename": "Schmeja_Maximilian-Karl_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231", "author": "", "orig_id": 1406505}}, {"model": "metainfo.source", "pk": 4269, "fields": {"orig_filename": "Schmelkes_Gedaljah_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 231f.", "author": "", "orig_id": 1406507}}, {"model": "metainfo.source", "pk": 4270, "fields": {"orig_filename": "Schmelzer_Antonin-Stanislav_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 232f.", "author": "", "orig_id": 1406509}}, {"model": "metainfo.source", "pk": 4271, "fields": {"orig_filename": "Schmelzer_Karl_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233", "author": "", "orig_id": 1406510}}, {"model": "metainfo.source", "pk": 4272, "fields": {"orig_filename": "Schmerber_Hugo_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233f.", "author": "", "orig_id": 1406512}}, {"model": "metainfo.source", "pk": 4273, "fields": {"orig_filename": "Schmerling_Anton_1805_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234f.", "author": "", "orig_id": 1406513}}, {"model": "metainfo.source", "pk": 4274, "fields": {"orig_filename": "Schmerling_Joseph_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 235", "author": "", "orig_id": 1406516}}, {"model": "metainfo.source", "pk": 4275, "fields": {"orig_filename": "Schmerling_Moriz_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234", "author": "", "orig_id": 1406515}}, {"model": "metainfo.source", "pk": 4276, "fields": {"orig_filename": "Schmerling_Rainer_1810_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 234", "author": "", "orig_id": 1406514}}, {"model": "metainfo.source", "pk": 4277, "fields": {"orig_filename": "Schmerz_Hermann_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 235f.", "author": "", "orig_id": 1406518}}, {"model": "metainfo.source", "pk": 4278, "fields": {"orig_filename": "Schmerz_Leopold_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236", "author": "", "orig_id": 1406519}}, {"model": "metainfo.source", "pk": 4279, "fields": {"orig_filename": "Schmer_Josefine_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 233", "author": "", "orig_id": 1406511}}, {"model": "metainfo.source", "pk": 4280, "fields": {"orig_filename": "Schmetzer_Gustav-Julius_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236", "author": "", "orig_id": 1406520}}, {"model": "metainfo.source", "pk": 4281, "fields": {"orig_filename": "Schmeykal_Franz_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 236f.", "author": "", "orig_id": 1406521}}, {"model": "metainfo.source", "pk": 4282, "fields": {"orig_filename": "Schmid-Altenheim_Konrad_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 303f.", "author": "", "orig_id": 1406718}}, {"model": "metainfo.source", "pk": 4283, "fields": {"orig_filename": "Schmid-Altenstadt_Karl-August_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 304", "author": "", "orig_id": 1406719}}, {"model": "metainfo.source", "pk": 4284, "fields": {"orig_filename": "Schmid-Altenstadt_Maximilian-Von_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 304f.", "author": "", "orig_id": 1406720}}, {"model": "metainfo.source", "pk": 4285, "fields": {"orig_filename": "Schmid-Bergenhold_Johann-Ferdinand_1786_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 306", "author": "", "orig_id": 1406722}}, {"model": "metainfo.source", "pk": 4286, "fields": {"orig_filename": "Schmid-Boneti_Hugo_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 306f.", "author": "", "orig_id": 1406723}}, {"model": "metainfo.source", "pk": 4287, "fields": {"orig_filename": "Schmid-Gasteiger_Felix_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307", "author": "", "orig_id": 1406724}}, {"model": "metainfo.source", "pk": 4288, "fields": {"orig_filename": "Schmid-Georgenegg_Albert_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307", "author": "", "orig_id": 1406725}}, {"model": "metainfo.source", "pk": 4289, "fields": {"orig_filename": "Schmid-Renner_Franz_1851_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 307f.", "author": "", "orig_id": 1406726}}, {"model": "metainfo.source", "pk": 4290, "fields": {"orig_filename": "Schmid-Reutte_Ludwig_1862_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308", "author": "", "orig_id": 1406727}}, {"model": "metainfo.source", "pk": 4291, "fields": {"orig_filename": "Schmid-Schmidsfelden_Adolf_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308f.", "author": "", "orig_id": 1406728}}, {"model": "metainfo.source", "pk": 4292, "fields": {"orig_filename": "Schmid-Schmidsfelden_August_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 308", "author": "", "orig_id": 1406729}}, {"model": "metainfo.source", "pk": 4293, "fields": {"orig_filename": "Schmid-Schmidsfelden_Emil-Josef-Johann_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 310", "author": "", "orig_id": 1406734}}, {"model": "metainfo.source", "pk": 4294, "fields": {"orig_filename": "Schmid-Schmidsfelden_Ferdinand-Anton_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406731}}, {"model": "metainfo.source", "pk": 4295, "fields": {"orig_filename": "Schmid-Schmidsfelden_Josef-Karl-Mathaeus_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309f.", "author": "", "orig_id": 1406733}}, {"model": "metainfo.source", "pk": 4296, "fields": {"orig_filename": "Schmid-Schmidsfelden_Josef-Karl_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406730}}, {"model": "metainfo.source", "pk": 4297, "fields": {"orig_filename": "Schmid-Schmidsfelden_Maximilian-Constantin_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 309", "author": "", "orig_id": 1406732}}, {"model": "metainfo.source", "pk": 4298, "fields": {"orig_filename": "Schmid-Schmidsfelden_Moriz_1836_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 310f.", "author": "", "orig_id": 1406735}}, {"model": "metainfo.source", "pk": 4299, "fields": {"orig_filename": "Schmid-Schmidsfelden_Victor-Johann-Bapt_1860_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 311", "author": "", "orig_id": 1406736}}, {"model": "metainfo.source", "pk": 4300, "fields": {"orig_filename": "Schmid-Schmidsfelden_Walter-Johann-Friedrich_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 311f.", "author": "", "orig_id": 1406737}}, {"model": "metainfo.source", "pk": 4301, "fields": {"orig_filename": "Schmid-Tavera_Anton_1793_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 312", "author": "", "orig_id": 1406738}}, {"model": "metainfo.source", "pk": 4302, "fields": {"orig_filename": "Schmid-Tavera_Ernst_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 312f.", "author": "", "orig_id": 1406739}}, {"model": "metainfo.source", "pk": 4303, "fields": {"orig_filename": "Schmid-Tavera_Karl_1832_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 313f.", "author": "", "orig_id": 1406740}}, {"model": "metainfo.source", "pk": 4304, "fields": {"orig_filename": "Schmid-Zabierow_Franz_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 314", "author": "", "orig_id": 1406741}}, {"model": "metainfo.source", "pk": 4305, "fields": {"orig_filename": "Schmidbauer_Lambert_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 314f.", "author": "", "orig_id": 1406742}}, {"model": "metainfo.source", "pk": 4306, "fields": {"orig_filename": "Schmidberger_Josef_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 315", "author": "", "orig_id": 1406743}}, {"model": "metainfo.source", "pk": 4307, "fields": {"orig_filename": "Schmidburg_Joseph-Camillo_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 315f.", "author": "", "orig_id": 1406744}}, {"model": "metainfo.source", "pk": 4308, "fields": {"orig_filename": "Schmidburg_Rudolf_1810_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 316", "author": "", "orig_id": 1406745}}, {"model": "metainfo.source", "pk": 4309, "fields": {"orig_filename": "Schmidek_Karl_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 316f.", "author": "", "orig_id": 1406746}}, {"model": "metainfo.source", "pk": 4310, "fields": {"orig_filename": "Schmidek_Karl_1834_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317", "author": "", "orig_id": 1406747}}, {"model": "metainfo.source", "pk": 4311, "fields": {"orig_filename": "Schmiderer_Joseph-Ignaz_1755_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 317f.", "author": "", "orig_id": 1406749}}, {"model": "metainfo.source", "pk": 4312, "fields": {"orig_filename": "Schmidgruber_Anton_1837_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 318f.", "author": "", "orig_id": 1406750}}, {"model": "metainfo.source", "pk": 4313, "fields": {"orig_filename": "Schmidinger_Josef_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 319", "author": "", "orig_id": 1406751}}, {"model": "metainfo.source", "pk": 4314, "fields": {"orig_filename": "Schmidkunz_Hans_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 319f.", "author": "", "orig_id": 1406752}}, {"model": "metainfo.source", "pk": 4315, "fields": {"orig_filename": "Schmidl_Adolf_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 320f.", "author": "", "orig_id": 1406753}}, {"model": "metainfo.source", "pk": 4316, "fields": {"orig_filename": "Schmidl_Anna_1782_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 325f.", "author": "", "orig_id": 1406599}}, {"model": "metainfo.source", "pk": 4317, "fields": {"orig_filename": "Schmidl_Carlo_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 321f.", "author": "", "orig_id": 1406754}}, {"model": "metainfo.source", "pk": 4318, "fields": {"orig_filename": "Schindler_Samuel_1762_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 155f.", "author": "", "orig_id": 1406258}}, {"model": "metainfo.source", "pk": 4319, "fields": {"orig_filename": "Schindler_Vinzenz-Karl_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 156", "author": "", "orig_id": 1406308}}, {"model": "metainfo.source", "pk": 4320, "fields": {"orig_filename": "Schindloecker_Eugen_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 157", "author": "", "orig_id": 1406310}}, {"model": "metainfo.source", "pk": 4321, "fields": {"orig_filename": "Schindloecker_Philipp_1753_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 157", "author": "", "orig_id": 1406311}}, {"model": "metainfo.source", "pk": 4322, "fields": {"orig_filename": "Schindloecker_Wolfgang_1789_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406312}}, {"model": "metainfo.source", "pk": 4323, "fields": {"orig_filename": "Schinko_Raimund_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406313}}, {"model": "metainfo.source", "pk": 4324, "fields": {"orig_filename": "Schinnagl_Maurus_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158", "author": "", "orig_id": 1406314}}, {"model": "metainfo.source", "pk": 4325, "fields": {"orig_filename": "Schinzel_Josef_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 158f.", "author": "", "orig_id": 1406315}}, {"model": "metainfo.source", "pk": 4326, "fields": {"orig_filename": "Schio_Almerico_1836_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 159f.", "author": "", "orig_id": 1406316}}, {"model": "metainfo.source", "pk": 4327, "fields": {"orig_filename": "Schiper_Ignacy_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 160", "author": "", "orig_id": 1406317}}, {"model": "metainfo.source", "pk": 4328, "fields": {"orig_filename": "Schipper_Jakob_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 160f.", "author": "", "orig_id": 1406318}}, {"model": "metainfo.source", "pk": 4329, "fields": {"orig_filename": "Schirkhuber_Moricz_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 161", "author": "", "orig_id": 1406319}}, {"model": "metainfo.source", "pk": 4330, "fields": {"orig_filename": "Schirmer_Adolf_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 161f.", "author": "", "orig_id": 1406320}}, {"model": "metainfo.source", "pk": 4331, "fields": {"orig_filename": "Schirmer_Friedrich_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162", "author": "", "orig_id": 1406321}}, {"model": "metainfo.source", "pk": 4332, "fields": {"orig_filename": "Schirmer_Otto_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162", "author": "", "orig_id": 1406322}}, {"model": "metainfo.source", "pk": 4333, "fields": {"orig_filename": "Schirmer_Wilhelm-Kajetan_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 162f.", "author": "", "orig_id": 1406323}}, {"model": "metainfo.source", "pk": 4334, "fields": {"orig_filename": "Schirnboeck_Ferdinand_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 163", "author": "", "orig_id": 1406324}}, {"model": "metainfo.source", "pk": 4335, "fields": {"orig_filename": "Schirndinger-Schirnding_Ferdinand-Leopold_1808_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 163f.", "author": "", "orig_id": 1406325}}, {"model": "metainfo.source", "pk": 4336, "fields": {"orig_filename": "Schirnhofer_Gerhard_1819_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 164", "author": "", "orig_id": 1406326}}, {"model": "metainfo.source", "pk": 4337, "fields": {"orig_filename": "Schissel-Fleschenberg_Otmar_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 164f.", "author": "", "orig_id": 1406327}}, {"model": "metainfo.source", "pk": 4338, "fields": {"orig_filename": "Schittenhelm_Anton_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165", "author": "", "orig_id": 1406328}}, {"model": "metainfo.source", "pk": 4339, "fields": {"orig_filename": "Schitter_Balthasar_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165", "author": "", "orig_id": 1406329}}, {"model": "metainfo.source", "pk": 4340, "fields": {"orig_filename": "Schivert_Gustav-Albert_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 165f.", "author": "", "orig_id": 1406330}}, {"model": "metainfo.source", "pk": 4341, "fields": {"orig_filename": "Schiviz-Schivizhoffen_Ludwig_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166", "author": "", "orig_id": 1406331}}, {"model": "metainfo.source", "pk": 4342, "fields": {"orig_filename": "Schlaeger_Antonie_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166", "author": "", "orig_id": 1406332}}, {"model": "metainfo.source", "pk": 4343, "fields": {"orig_filename": "Schlaeger_Hans_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 166f.", "author": "", "orig_id": 1406333}}, {"model": "metainfo.source", "pk": 4344, "fields": {"orig_filename": "Schlagenhaufer_Friedrich_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 167", "author": "", "orig_id": 1406334}}, {"model": "metainfo.source", "pk": 4345, "fields": {"orig_filename": "Schlager_Johann-Ev_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 167f.", "author": "", "orig_id": 1406335}}, {"model": "metainfo.source", "pk": 4346, "fields": {"orig_filename": "Schlager_Ludwig_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 168f.", "author": "", "orig_id": 1406336}}, {"model": "metainfo.source", "pk": 4347, "fields": {"orig_filename": "Schlager_Marcellinus_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 169", "author": "", "orig_id": 1406337}}, {"model": "metainfo.source", "pk": 4348, "fields": {"orig_filename": "Schlaghamer_Richard_1871_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 169f.", "author": "", "orig_id": 1406338}}, {"model": "metainfo.source", "pk": 4349, "fields": {"orig_filename": "Schlangenhausen_Emma_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170", "author": "", "orig_id": 1406339}}, {"model": "metainfo.source", "pk": 4350, "fields": {"orig_filename": "Schlar_Josef_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170", "author": "", "orig_id": 1406340}}, {"model": "metainfo.source", "pk": 4351, "fields": {"orig_filename": "Schlattauer_Rudolf_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 170f.", "author": "", "orig_id": 1406341}}, {"model": "metainfo.source", "pk": 4352, "fields": {"orig_filename": "Schlauch_Loerinc_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 171", "author": "", "orig_id": 1406342}}, {"model": "metainfo.source", "pk": 4353, "fields": {"orig_filename": "Schlechta-Hrochow_Friedrich-Peter-Maria-Emanuel_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 172f.", "author": "", "orig_id": 1406345}}, {"model": "metainfo.source", "pk": 4354, "fields": {"orig_filename": "Schlechta-Hrochow_Peter-Josef_1792_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 173", "author": "", "orig_id": 1406346}}, {"model": "metainfo.source", "pk": 4355, "fields": {"orig_filename": "Schlechta-Wschehrd_Franz-X-Vinzenz_1765_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 174", "author": "", "orig_id": 1406348}}, {"model": "metainfo.source", "pk": 4356, "fields": {"orig_filename": "Schlechta-Wschehrd_Franz-X_1796_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 173f.", "author": "", "orig_id": 1406347}}, {"model": "metainfo.source", "pk": 4357, "fields": {"orig_filename": "Schlechta-Wschehrd_Kamill-Franz-Karl-Adam_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 174f.", "author": "", "orig_id": 1406349}}, {"model": "metainfo.source", "pk": 4358, "fields": {"orig_filename": "Schlechta-Wschehrd_Ottokar-Maria_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 175", "author": "", "orig_id": 1406350}}, {"model": "metainfo.source", "pk": 4359, "fields": {"orig_filename": "Schlechta_Franz_1833_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 171f.", "author": "", "orig_id": 1406343}}, {"model": "metainfo.source", "pk": 4360, "fields": {"orig_filename": "Schlechta_Peter-Josef-Dominik_1765_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 172", "author": "", "orig_id": 1406344}}, {"model": "metainfo.source", "pk": 4361, "fields": {"orig_filename": "Schlechter_Josef-Dominik_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 175f.", "author": "", "orig_id": 1406351}}, {"model": "metainfo.source", "pk": 4362, "fields": {"orig_filename": "Schlechter_Karl_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 176", "author": "", "orig_id": 1406353}}, {"model": "metainfo.source", "pk": 4363, "fields": {"orig_filename": "Schlegel_Anton_1878_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 177", "author": "", "orig_id": 1406354}}, {"model": "metainfo.source", "pk": 4364, "fields": {"orig_filename": "Schlegel_Dorothea_1764_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 177f.", "author": "", "orig_id": 1406259}}, {"model": "metainfo.source", "pk": 4365, "fields": {"orig_filename": "Schlegel_Friedrich_1772_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 178f.", "author": "", "orig_id": 1406260}}, {"model": "metainfo.source", "pk": 4366, "fields": {"orig_filename": "Schlegel_Joseph_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 179f.", "author": "", "orig_id": 1406261}}, {"model": "metainfo.source", "pk": 4367, "fields": {"orig_filename": "Schlegel_Richard_1906_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 180", "author": "", "orig_id": 1406262}}, {"model": "metainfo.source", "pk": 4368, "fields": {"orig_filename": "Schlegel_Thomas_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 180f.", "author": "", "orig_id": 1406263}}, {"model": "metainfo.source", "pk": 4369, "fields": {"orig_filename": "Schleifer_Mathias-Leopold_1771_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 181", "author": "", "orig_id": 1406265}}, {"model": "metainfo.source", "pk": 4370, "fields": {"orig_filename": "Schleifer_Moriz-Leopold_1817_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 181f.", "author": "", "orig_id": 1406266}}, {"model": "metainfo.source", "pk": 4371, "fields": {"orig_filename": "Schleimer_Hans_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 182", "author": "", "orig_id": 1406267}}, {"model": "metainfo.source", "pk": 4372, "fields": {"orig_filename": "Schleindl_Franz_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 183", "author": "", "orig_id": 1406269}}, {"model": "metainfo.source", "pk": 4373, "fields": {"orig_filename": "Schleinitz_Alexandra_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 183f.", "author": "", "orig_id": 1406270}}, {"model": "metainfo.source", "pk": 4374, "fields": {"orig_filename": "Schlein_Anton-Franz_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 182f.", "author": "", "orig_id": 1406268}}, {"model": "metainfo.source", "pk": 4375, "fields": {"orig_filename": "Schleissner_Felix_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 184f.", "author": "", "orig_id": 1406272}}, {"model": "metainfo.source", "pk": 4376, "fields": {"orig_filename": "Schleiss_Franz-De-Paula_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 184", "author": "", "orig_id": 1406271}}, {"model": "metainfo.source", "pk": 4377, "fields": {"orig_filename": "Schlemmer_Anton_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185", "author": "", "orig_id": 1406273}}, {"model": "metainfo.source", "pk": 4378, "fields": {"orig_filename": "Schlemmer_Anton_1883_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185", "author": "", "orig_id": 1406274}}, {"model": "metainfo.source", "pk": 4379, "fields": {"orig_filename": "Schlemmer_Fritz_1884_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 185f.", "author": "", "orig_id": 1406275}}, {"model": "metainfo.source", "pk": 4380, "fields": {"orig_filename": "Schlenk_Karl-Heinrich_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 186f.", "author": "", "orig_id": 1406276}}, {"model": "metainfo.source", "pk": 4381, "fields": {"orig_filename": "Schlenther_Paula_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188", "author": "", "orig_id": 1406278}}, {"model": "metainfo.source", "pk": 4382, "fields": {"orig_filename": "Schlenther_Paul_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 187f.", "author": "", "orig_id": 1406277}}, {"model": "metainfo.source", "pk": 4383, "fields": {"orig_filename": "Schlenz_Johann_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188", "author": "", "orig_id": 1406279}}, {"model": "metainfo.source", "pk": 4384, "fields": {"orig_filename": "Schleps_Karl_1802_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 188f.", "author": "", "orig_id": 1406280}}, {"model": "metainfo.source", "pk": 4385, "fields": {"orig_filename": "Schlesinger_Akiva-Joseph_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406281}}, {"model": "metainfo.source", "pk": 4386, "fields": {"orig_filename": "Schlesinger_Anton_1853_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406282}}, {"model": "metainfo.source", "pk": 4387, "fields": {"orig_filename": "Schlesinger_Bernhard_1773_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 189", "author": "", "orig_id": 1406283}}, {"model": "metainfo.source", "pk": 4388, "fields": {"orig_filename": "Schlesinger_Guenther_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 190", "author": "", "orig_id": 1406284}}, {"model": "metainfo.source", "pk": 4389, "fields": {"orig_filename": "Schlesinger_Hans_1896_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 190f.", "author": "", "orig_id": 1406285}}, {"model": "metainfo.source", "pk": 4390, "fields": {"orig_filename": "Schlesinger_Hermann_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 191", "author": "", "orig_id": 1406286}}, {"model": "metainfo.source", "pk": 4391, "fields": {"orig_filename": "Schlesinger_Ignac_1810_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 191f.", "author": "", "orig_id": 1406287}}, {"model": "metainfo.source", "pk": 4392, "fields": {"orig_filename": "Schlesinger_Josef_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 192", "author": "", "orig_id": 1406288}}, {"model": "metainfo.source", "pk": 4393, "fields": {"orig_filename": "Schlesinger_Julie_1815_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193", "author": "", "orig_id": 1406289}}, {"model": "metainfo.source", "pk": 4394, "fields": {"orig_filename": "Schlesinger_Karl-M_1847_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 194", "author": "", "orig_id": 1406292}}, {"model": "metainfo.source", "pk": 4395, "fields": {"orig_filename": "Schlesinger_Karl_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193", "author": "", "orig_id": 1406290}}, {"model": "metainfo.source", "pk": 4396, "fields": {"orig_filename": "Schlesinger_Karl_1889_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 193f.", "author": "", "orig_id": 1406291}}, {"model": "metainfo.source", "pk": 4397, "fields": {"orig_filename": "Schlesinger_Louis_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 194f.", "author": "", "orig_id": 1406293}}, {"model": "metainfo.source", "pk": 4398, "fields": {"orig_filename": "Schlesinger_Ludwig_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 195f.", "author": "", "orig_id": 1406294}}, {"model": "metainfo.source", "pk": 4399, "fields": {"orig_filename": "Schlesinger_Ludwig_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 196f.", "author": "", "orig_id": 1406295}}, {"model": "metainfo.source", "pk": 4400, "fields": {"orig_filename": "Schlesinger_Martin_1751_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 197", "author": "", "orig_id": 1406296}}, {"model": "metainfo.source", "pk": 4401, "fields": {"orig_filename": "Schlesinger_Max_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 197f.", "author": "", "orig_id": 1406297}}, {"model": "metainfo.source", "pk": 4402, "fields": {"orig_filename": "Schlesinger_Max_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 199", "author": "", "orig_id": 2036451}}, {"model": "metainfo.source", "pk": 4403, "fields": {"orig_filename": "Schlesinger_Sigmund_1811_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 198", "author": "", "orig_id": 1406298}}, {"model": "metainfo.source", "pk": 4404, "fields": {"orig_filename": "Schlesinger_Sigmund_1832_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 198f.", "author": "", "orig_id": 1406299}}, {"model": "metainfo.source", "pk": 4405, "fields": {"orig_filename": "Schlesinger_Therese_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 199f.", "author": "", "orig_id": 1406300}}, {"model": "metainfo.source", "pk": 4406, "fields": {"orig_filename": "Schlesinger_Wilhelm_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 200", "author": "", "orig_id": 1406301}}, {"model": "metainfo.source", "pk": 4407, "fields": {"orig_filename": "Schlesinger_Wilhelm_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 200f.", "author": "", "orig_id": 1406302}}, {"model": "metainfo.source", "pk": 4408, "fields": {"orig_filename": "Schlesinger_Wilhelm_1894_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 201", "author": "", "orig_id": 1406303}}, {"model": "metainfo.source", "pk": 4409, "fields": {"orig_filename": "Schleussner_Josef_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 201", "author": "", "orig_id": 1406304}}, {"model": "metainfo.source", "pk": 4410, "fields": {"orig_filename": "Schleyer-Pontemalghera_Leopold_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 202", "author": "", "orig_id": 1406305}}, {"model": "metainfo.source", "pk": 4411, "fields": {"orig_filename": "Schlichtinger_Wolfgang_1745_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 202f.", "author": "", "orig_id": 1406306}}, {"model": "metainfo.source", "pk": 4412, "fields": {"orig_filename": "Schlickinger_Max_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 204", "author": "", "orig_id": 1406455}}, {"model": "metainfo.source", "pk": 4413, "fields": {"orig_filename": "Schlick_Dominikus_1816_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 203", "author": "", "orig_id": 1406307}}, {"model": "metainfo.source", "pk": 4414, "fields": {"orig_filename": "Schlick_Moritz_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 203f.", "author": "", "orig_id": 1406454}}, {"model": "metainfo.source", "pk": 4415, "fields": {"orig_filename": "Schliessmann_Hans_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 205f.", "author": "", "orig_id": 1406457}}, {"model": "metainfo.source", "pk": 4416, "fields": {"orig_filename": "Schlik-Bassano-Weisskirchen_Maria-Elisabeth_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 206", "author": "", "orig_id": 1406458}}, {"model": "metainfo.source", "pk": 4417, "fields": {"orig_filename": "Schlimp_Karl_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 206f.", "author": "", "orig_id": 1406459}}, {"model": "metainfo.source", "pk": 4418, "fields": {"orig_filename": "Schlinger_Anton_1870_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 207", "author": "", "orig_id": 1406460}}, {"model": "metainfo.source", "pk": 4419, "fields": {"orig_filename": "Schicht_Georg_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105", "author": "", "orig_id": 1406060}}, {"model": "metainfo.source", "pk": 4420, "fields": {"orig_filename": "Schicht_Georg_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105", "author": "", "orig_id": 1406061}}, {"model": "metainfo.source", "pk": 4421, "fields": {"orig_filename": "Schicht_Johann_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 105f.", "author": "", "orig_id": 1406062}}, {"model": "metainfo.source", "pk": 4422, "fields": {"orig_filename": "Schicht_Josef_1880_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 106", "author": "", "orig_id": 1406063}}, {"model": "metainfo.source", "pk": 4423, "fields": {"orig_filename": "Schickedanz_Albert_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 107", "author": "", "orig_id": 1406065}}, {"model": "metainfo.source", "pk": 4424, "fields": {"orig_filename": "Schicker_Josef_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 107", "author": "", "orig_id": 1406066}}, {"model": "metainfo.source", "pk": 4425, "fields": {"orig_filename": "Schickh_Antonie_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 108", "author": "", "orig_id": 1406067}}, {"model": "metainfo.source", "pk": 4426, "fields": {"orig_filename": "Schickh_Johann-Valentin_1770_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 108f.", "author": "", "orig_id": 1406068}}, {"model": "metainfo.source", "pk": 4427, "fields": {"orig_filename": "Schickh_Josef-Kilian_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 109", "author": "", "orig_id": 1406069}}, {"model": "metainfo.source", "pk": 4428, "fields": {"orig_filename": "Schick_Moses_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 106f.", "author": "", "orig_id": 1406064}}, {"model": "metainfo.source", "pk": 4429, "fields": {"orig_filename": "Schider_Fritz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 109f.", "author": "", "orig_id": 1406070}}, {"model": "metainfo.source", "pk": 4430, "fields": {"orig_filename": "Schidlof_Arthur_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 110", "author": "", "orig_id": 1406071}}, {"model": "metainfo.source", "pk": 4431, "fields": {"orig_filename": "Schieberth_Hermann_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 110f.", "author": "", "orig_id": 1406072}}, {"model": "metainfo.source", "pk": 4432, "fields": {"orig_filename": "Schiebl_Ignac_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111", "author": "", "orig_id": 1406073}}, {"model": "metainfo.source", "pk": 4433, "fields": {"orig_filename": "Schiebl_Jaroslav_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111", "author": "", "orig_id": 1406074}}, {"model": "metainfo.source", "pk": 4434, "fields": {"orig_filename": "Schiedermayr_Johann-Bapt_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 111f.", "author": "", "orig_id": 1406075}}, {"model": "metainfo.source", "pk": 4435, "fields": {"orig_filename": "Schiedermayr_Johann-Bapt_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 112", "author": "", "orig_id": 1406076}}, {"model": "metainfo.source", "pk": 4436, "fields": {"orig_filename": "Schiedermayr_Karl_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 112f.", "author": "", "orig_id": 1406077}}, {"model": "metainfo.source", "pk": 4437, "fields": {"orig_filename": "Schiefthaler_Franz_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 113", "author": "", "orig_id": 1406078}}, {"model": "metainfo.source", "pk": 4438, "fields": {"orig_filename": "Schiegl_Wilhelm_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 113f.", "author": "", "orig_id": 1406079}}, {"model": "metainfo.source", "pk": 4439, "fields": {"orig_filename": "Schiele_Egon_1890_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115ff.", "author": "", "orig_id": 1406084}}, {"model": "metainfo.source", "pk": 4440, "fields": {"orig_filename": "Schiel_Heinrich-Josef_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 114", "author": "", "orig_id": 1406080}}, {"model": "metainfo.source", "pk": 4441, "fields": {"orig_filename": "Schiel_Karl_1851_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 114f.", "author": "", "orig_id": 1406081}}, {"model": "metainfo.source", "pk": 4442, "fields": {"orig_filename": "Schiel_Samuel-Traugott_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115", "author": "", "orig_id": 1406083}}, {"model": "metainfo.source", "pk": 4443, "fields": {"orig_filename": "Schiel_Samuel_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 115", "author": "", "orig_id": 1406082}}, {"model": "metainfo.source", "pk": 4444, "fields": {"orig_filename": "Schiepek_Josef_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117", "author": "", "orig_id": 1406086}}, {"model": "metainfo.source", "pk": 4445, "fields": {"orig_filename": "Schierer_Franz_1819_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117", "author": "", "orig_id": 1406087}}, {"model": "metainfo.source", "pk": 4446, "fields": {"orig_filename": "Schierl-Moorburg_Karl_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 117f.", "author": "", "orig_id": 1406088}}, {"model": "metainfo.source", "pk": 4447, "fields": {"orig_filename": "Schiesler_Ignac-Jan_1782_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118", "author": "", "orig_id": 1406089}}, {"model": "metainfo.source", "pk": 4448, "fields": {"orig_filename": "Schiessl-Perstorff_Franz_1844_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118", "author": "", "orig_id": 1406090}}, {"model": "metainfo.source", "pk": 4449, "fields": {"orig_filename": "Schiessler_Sebastian-Willibald_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 118f.", "author": "", "orig_id": 1406091}}, {"model": "metainfo.source", "pk": 4450, "fields": {"orig_filename": "Schiestl_Anton-Martin_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 119f.", "author": "", "orig_id": 1406356}}, {"model": "metainfo.source", "pk": 4451, "fields": {"orig_filename": "Schiestl_Anton_1808_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 119", "author": "", "orig_id": 1406355}}, {"model": "metainfo.source", "pk": 4452, "fields": {"orig_filename": "Schiestl_Leopold_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 120f.", "author": "", "orig_id": 1406357}}, {"model": "metainfo.source", "pk": 4453, "fields": {"orig_filename": "Schiestl_Matthaeus_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 121", "author": "", "orig_id": 1406358}}, {"model": "metainfo.source", "pk": 4454, "fields": {"orig_filename": "Schiffel_Adalbert_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 123f.", "author": "", "orig_id": 1406362}}, {"model": "metainfo.source", "pk": 4455, "fields": {"orig_filename": "Schifferer_Josef_1906_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124", "author": "", "orig_id": 1406364}}, {"model": "metainfo.source", "pk": 4456, "fields": {"orig_filename": "Schiffer_Anton_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124", "author": "", "orig_id": 1406363}}, {"model": "metainfo.source", "pk": 4457, "fields": {"orig_filename": "Schiffmann_Jost-Joseph-Niklas_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 124f.", "author": "", "orig_id": 1406365}}, {"model": "metainfo.source", "pk": 4458, "fields": {"orig_filename": "Schiffmann_Konrad_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 125f.", "author": "", "orig_id": 1406366}}, {"model": "metainfo.source", "pk": 4459, "fields": {"orig_filename": "Schiffner_Franz_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 126", "author": "", "orig_id": 1406367}}, {"model": "metainfo.source", "pk": 4460, "fields": {"orig_filename": "Schiffner_Karl_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 126f.", "author": "", "orig_id": 1406368}}, {"model": "metainfo.source", "pk": 4461, "fields": {"orig_filename": "Schiffner_Ludwig_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 127", "author": "", "orig_id": 1406369}}, {"model": "metainfo.source", "pk": 4462, "fields": {"orig_filename": "Schiffner_Viktor-Ferdinand_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 127f.", "author": "", "orig_id": 1406370}}, {"model": "metainfo.source", "pk": 4463, "fields": {"orig_filename": "Schiff_Eduard-Liberius_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 121f.", "author": "", "orig_id": 1406359}}, {"model": "metainfo.source", "pk": 4464, "fields": {"orig_filename": "Schiff_Josef_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 122", "author": "", "orig_id": 1406360}}, {"model": "metainfo.source", "pk": 4465, "fields": {"orig_filename": "Schiff_Walter_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 122f.", "author": "", "orig_id": 1406361}}, {"model": "metainfo.source", "pk": 4466, "fields": {"orig_filename": "Schifkorn_Rudolf_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 128", "author": "", "orig_id": 1406371}}, {"model": "metainfo.source", "pk": 4467, "fields": {"orig_filename": "Schikaneder_Eleonore_1751_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129", "author": "", "orig_id": 1406373}}, {"model": "metainfo.source", "pk": 4468, "fields": {"orig_filename": "Schikaneder_Karl_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 130", "author": "", "orig_id": 1406375}}, {"model": "metainfo.source", "pk": 4469, "fields": {"orig_filename": "Schik_Ignaz_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129", "author": "", "orig_id": 1406372}}, {"model": "metainfo.source", "pk": 4470, "fields": {"orig_filename": "Schildbach_Johann-Gottlieb_1765_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 131", "author": "", "orig_id": 1406378}}, {"model": "metainfo.source", "pk": 4471, "fields": {"orig_filename": "Schilder_Paul-Ferdinand_1886_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 131f.", "author": "", "orig_id": 1406379}}, {"model": "metainfo.source", "pk": 4472, "fields": {"orig_filename": "Schildkraut_Rudolf_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 132f.", "author": "", "orig_id": 1406380}}, {"model": "metainfo.source", "pk": 4473, "fields": {"orig_filename": "Schild_Theodor-Franz_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 130f.", "author": "", "orig_id": 1406376}}, {"model": "metainfo.source", "pk": 4474, "fields": {"orig_filename": "Schili_Matthaeus-Christian_1762_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 133", "author": "", "orig_id": 1406381}}, {"model": "metainfo.source", "pk": 4475, "fields": {"orig_filename": "Schiller-Szinessy_Solomon-Marcus_1820_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136f.", "author": "", "orig_id": 1406390}}, {"model": "metainfo.source", "pk": 4476, "fields": {"orig_filename": "Schiller_Franz-Ferdinand_1773_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134", "author": "", "orig_id": 1406383}}, {"model": "metainfo.source", "pk": 4477, "fields": {"orig_filename": "Schiller_Friedrich_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134", "author": "", "orig_id": 1406384}}, {"model": "metainfo.source", "pk": 4478, "fields": {"orig_filename": "Schiller_Geza_1895_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 134f.", "author": "", "orig_id": 1406385}}, {"model": "metainfo.source", "pk": 4479, "fields": {"orig_filename": "Schiller_Josef_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 135", "author": "", "orig_id": 1406386}}, {"model": "metainfo.source", "pk": 4480, "fields": {"orig_filename": "Schiller_Katharina_1829_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 135f.", "author": "", "orig_id": 1406387}}, {"model": "metainfo.source", "pk": 4481, "fields": {"orig_filename": "Schiller_Salomon_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136", "author": "", "orig_id": 1406388}}, {"model": "metainfo.source", "pk": 4482, "fields": {"orig_filename": "Schiller_Siegmund_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 136", "author": "", "orig_id": 1406389}}, {"model": "metainfo.source", "pk": 4483, "fields": {"orig_filename": "Schilling-Henrichau_August_1815_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 137f.", "author": "", "orig_id": 1406392}}, {"model": "metainfo.source", "pk": 4484, "fields": {"orig_filename": "Schillinger_Franz_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 138", "author": "", "orig_id": 1406393}}, {"model": "metainfo.source", "pk": 4485, "fields": {"orig_filename": "Schilling_Julius_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 137", "author": "", "orig_id": 1406391}}, {"model": "metainfo.source", "pk": 4486, "fields": {"orig_filename": "Schill_Salamon_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 133f.", "author": "", "orig_id": 1406382}}, {"model": "metainfo.source", "pk": 4487, "fields": {"orig_filename": "Schimek_Otto_1925_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 138f.", "author": "", "orig_id": 1406394}}, {"model": "metainfo.source", "pk": 4488, "fields": {"orig_filename": "Schimkowitz_Herbert_1898_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140", "author": "", "orig_id": 1406396}}, {"model": "metainfo.source", "pk": 4489, "fields": {"orig_filename": "Schimkowitz_Othmar_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140", "author": "", "orig_id": 1406397}}, {"model": "metainfo.source", "pk": 4490, "fields": {"orig_filename": "Schimko_Friedrich-Daniel_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 139f.", "author": "", "orig_id": 1406395}}, {"model": "metainfo.source", "pk": 4491, "fields": {"orig_filename": "Schimmer_Gustav-Adolph_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 140f.", "author": "", "orig_id": 1406398}}, {"model": "metainfo.source", "pk": 4492, "fields": {"orig_filename": "Schimmer_Karl-August_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 141f.", "author": "", "orig_id": 1406399}}, {"model": "metainfo.source", "pk": 4493, "fields": {"orig_filename": "Schimonsky-Schimony_Emanuel_1752_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142f.", "author": "", "orig_id": 1406402}}, {"model": "metainfo.source", "pk": 4494, "fields": {"orig_filename": "Schimon_Adolf_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142", "author": "", "orig_id": 1406400}}, {"model": "metainfo.source", "pk": 4495, "fields": {"orig_filename": "Schimon_Ferdinand_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 142", "author": "", "orig_id": 1406401}}, {"model": "metainfo.source", "pk": 4496, "fields": {"orig_filename": "Schimser_Johann-Bapt_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 143", "author": "", "orig_id": 1406403}}, {"model": "metainfo.source", "pk": 4497, "fields": {"orig_filename": "Schindelar_Adalbert_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 143f.", "author": "", "orig_id": 1406236}}, {"model": "metainfo.source", "pk": 4498, "fields": {"orig_filename": "Schindelka_Hugo_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144", "author": "", "orig_id": 1406237}}, {"model": "metainfo.source", "pk": 4499, "fields": {"orig_filename": "Schindler-Schindelheim_Johann-Bapt_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 156f.", "author": "", "orig_id": 1406309}}, {"model": "metainfo.source", "pk": 4500, "fields": {"orig_filename": "Schindler_Albert_1805_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144", "author": "", "orig_id": 1406238}}, {"model": "metainfo.source", "pk": 4501, "fields": {"orig_filename": "Schindler_Alexander-Julius_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 144ff.", "author": "", "orig_id": 1406239}}, {"model": "metainfo.source", "pk": 4502, "fields": {"orig_filename": "Schindler_Anna-Margaretha_1892_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 146", "author": "", "orig_id": 1406240}}, {"model": "metainfo.source", "pk": 4503, "fields": {"orig_filename": "Schindler_Anton-Felix_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 146f.", "author": "", "orig_id": 1406241}}, {"model": "metainfo.source", "pk": 4504, "fields": {"orig_filename": "Schindler_Carl_1821_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 147", "author": "", "orig_id": 1406242}}, {"model": "metainfo.source", "pk": 4505, "fields": {"orig_filename": "Schindler_Cosmus_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 147f.", "author": "", "orig_id": 1406243}}, {"model": "metainfo.source", "pk": 4506, "fields": {"orig_filename": "Schindler_Emanuel_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 148", "author": "", "orig_id": 1406244}}, {"model": "metainfo.source", "pk": 4507, "fields": {"orig_filename": "Schindler_Emil-Jakob_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 148f.", "author": "", "orig_id": 1406245}}, {"model": "metainfo.source", "pk": 4508, "fields": {"orig_filename": "Schindler_Franz-Friedrich_1854_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 149f.", "author": "", "orig_id": 1406246}}, {"model": "metainfo.source", "pk": 4509, "fields": {"orig_filename": "Schindler_Franz-Martin_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 150", "author": "", "orig_id": 1406247}}, {"model": "metainfo.source", "pk": 4510, "fields": {"orig_filename": "Schindler_Fridolin_1788_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 150f.", "author": "", "orig_id": 1406248}}, {"model": "metainfo.source", "pk": 4511, "fields": {"orig_filename": "Schindler_Friedrich-Wilhelm_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 151f.", "author": "", "orig_id": 1406249}}, {"model": "metainfo.source", "pk": 4512, "fields": {"orig_filename": "Schindler_Johann-Josef_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 152f.", "author": "", "orig_id": 1406251}}, {"model": "metainfo.source", "pk": 4513, "fields": {"orig_filename": "Schindler_Johann_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 152", "author": "", "orig_id": 1406250}}, {"model": "metainfo.source", "pk": 4514, "fields": {"orig_filename": "Schindler_Josef_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153f.", "author": "", "orig_id": 1406253}}, {"model": "metainfo.source", "pk": 4515, "fields": {"orig_filename": "Schindler_Karl_1768_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154", "author": "", "orig_id": 1406254}}, {"model": "metainfo.source", "pk": 4516, "fields": {"orig_filename": "Schindler_Michael-Norbert_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154", "author": "", "orig_id": 1406255}}, {"model": "metainfo.source", "pk": 4517, "fields": {"orig_filename": "Schindler_Robert_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 154f.", "author": "", "orig_id": 1406256}}, {"model": "metainfo.source", "pk": 4518, "fields": {"orig_filename": "Schindler_Rudolf_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 155", "author": "", "orig_id": 1406257}}, {"model": "metainfo.source", "pk": 4519, "fields": {"orig_filename": "Schedle_Franz-X_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 57f.", "author": "", "orig_id": 1406140}}, {"model": "metainfo.source", "pk": 4520, "fields": {"orig_filename": "Schedy_Sandor_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58", "author": "", "orig_id": 1406150}}, {"model": "metainfo.source", "pk": 4521, "fields": {"orig_filename": "Scheel_Florus_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58", "author": "", "orig_id": 1406151}}, {"model": "metainfo.source", "pk": 4522, "fields": {"orig_filename": "Scheff-Hohentraun_Julius_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 58f.", "author": "", "orig_id": 1406152}}, {"model": "metainfo.source", "pk": 4523, "fields": {"orig_filename": "Scheffer-Leonhardshoff_Johann-Evangelist_1795_1822.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431977}}, {"model": "metainfo.source", "pk": 4524, "fields": {"orig_filename": "Scheiber_Samuel-Hugo_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406155}}, {"model": "metainfo.source", "pk": 4525, "fields": {"orig_filename": "Scheibe_Friedrich-Hermann_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 59", "author": "", "orig_id": 1406153}}, {"model": "metainfo.source", "pk": 4526, "fields": {"orig_filename": "Scheibe_Theodor_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 59f.", "author": "", "orig_id": 1406154}}, {"model": "metainfo.source", "pk": 4527, "fields": {"orig_filename": "Scheibl_Susanna_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406156}}, {"model": "metainfo.source", "pk": 4528, "fields": {"orig_filename": "Scheibner_Gebhard_1872_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 60", "author": "", "orig_id": 1406157}}, {"model": "metainfo.source", "pk": 4529, "fields": {"orig_filename": "Scheicher_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 61", "author": "", "orig_id": 1406159}}, {"model": "metainfo.source", "pk": 4530, "fields": {"orig_filename": "Scheichl_Frantisek-Ladislav_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 61f.", "author": "", "orig_id": 1406160}}, {"model": "metainfo.source", "pk": 4531, "fields": {"orig_filename": "Scheichl_Franz_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 62", "author": "", "orig_id": 1406161}}, {"model": "metainfo.source", "pk": 4532, "fields": {"orig_filename": "Scheidela_Hinko_1874_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 63", "author": "", "orig_id": 1406163}}, {"model": "metainfo.source", "pk": 4533, "fields": {"orig_filename": "Scheidlein_Georg_1747_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 63f.", "author": "", "orig_id": 1406165}}, {"model": "metainfo.source", "pk": 4534, "fields": {"orig_filename": "Scheidtenberger_Karl_1827_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 64", "author": "", "orig_id": 1406166}}, {"model": "metainfo.source", "pk": 4535, "fields": {"orig_filename": "Scheid_Georg-Adam_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 62f.", "author": "", "orig_id": 1406162}}, {"model": "metainfo.source", "pk": 4536, "fields": {"orig_filename": "Scheiger_Josef_1801_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 64f.", "author": "", "orig_id": 1406167}}, {"model": "metainfo.source", "pk": 4537, "fields": {"orig_filename": "Scheimpflug_Karl_1856_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 65", "author": "", "orig_id": 1406169}}, {"model": "metainfo.source", "pk": 4538, "fields": {"orig_filename": "Scheimpflug_Theodor_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 65f.", "author": "", "orig_id": 1406170}}, {"model": "metainfo.source", "pk": 4539, "fields": {"orig_filename": "Scheindler_August_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 67", "author": "", "orig_id": 1406172}}, {"model": "metainfo.source", "pk": 4540, "fields": {"orig_filename": "Scheiner_Andreas-Gottlieb_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 67f.", "author": "", "orig_id": 1406173}}, {"model": "metainfo.source", "pk": 4541, "fields": {"orig_filename": "Scheiner_Josef_1798_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 68", "author": "", "orig_id": 1406174}}, {"model": "metainfo.source", "pk": 4542, "fields": {"orig_filename": "Scheiner_Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 68f.", "author": "", "orig_id": 1406175}}, {"model": "metainfo.source", "pk": 4543, "fields": {"orig_filename": "Scheinpflug_Karel_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 69f.", "author": "", "orig_id": 1406176}}, {"model": "metainfo.source", "pk": 4544, "fields": {"orig_filename": "Scheint_Daniel-Gottlieb_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70", "author": "", "orig_id": 1406177}}, {"model": "metainfo.source", "pk": 4545, "fields": {"orig_filename": "Schein_Abraham-Myron_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 66f.", "author": "", "orig_id": 1406171}}, {"model": "metainfo.source", "pk": 4546, "fields": {"orig_filename": "Schellander_Irene_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71", "author": "", "orig_id": 1406180}}, {"model": "metainfo.source", "pk": 4547, "fields": {"orig_filename": "Schellander_Josef_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71", "author": "", "orig_id": 1406181}}, {"model": "metainfo.source", "pk": 4548, "fields": {"orig_filename": "Schellein_Karl_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72", "author": "", "orig_id": 1406184}}, {"model": "metainfo.source", "pk": 4549, "fields": {"orig_filename": "Scheller_Arthur_1876_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72f.", "author": "", "orig_id": 1406185}}, {"model": "metainfo.source", "pk": 4550, "fields": {"orig_filename": "Schelle_Eduard_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 71f.", "author": "", "orig_id": 1406182}}, {"model": "metainfo.source", "pk": 4551, "fields": {"orig_filename": "Schelle_Ludwig-Robert_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 72", "author": "", "orig_id": 1406183}}, {"model": "metainfo.source", "pk": 4552, "fields": {"orig_filename": "Schell_Anton_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70", "author": "", "orig_id": 1406178}}, {"model": "metainfo.source", "pk": 4553, "fields": {"orig_filename": "Schels_Johann-Bapt_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 73f.", "author": "", "orig_id": 1406186}}, {"model": "metainfo.source", "pk": 4554, "fields": {"orig_filename": "Schelver_Hugo_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74", "author": "", "orig_id": 1406187}}, {"model": "metainfo.source", "pk": 4555, "fields": {"orig_filename": "Schembera_Viktor-Karl_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74f.", "author": "", "orig_id": 1406189}}, {"model": "metainfo.source", "pk": 4556, "fields": {"orig_filename": "Schember_Konrad_1811_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 74", "author": "", "orig_id": 1406188}}, {"model": "metainfo.source", "pk": 4557, "fields": {"orig_filename": "Schembor_Friedrich_1898_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 75", "author": "", "orig_id": 1406190}}, {"model": "metainfo.source", "pk": 4558, "fields": {"orig_filename": "Schemerl-Leythenbach_Josef-Maria_1754_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 75f.", "author": "", "orig_id": 1406191}}, {"model": "metainfo.source", "pk": 4559, "fields": {"orig_filename": "Schemua_Blasius_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 76", "author": "", "orig_id": 1406192}}, {"model": "metainfo.source", "pk": 4560, "fields": {"orig_filename": "Schemua_Johann_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 76f.", "author": "", "orig_id": 1406193}}, {"model": "metainfo.source", "pk": 4561, "fields": {"orig_filename": "Schenacher_Johann-Georg_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77", "author": "", "orig_id": 1406194}}, {"model": "metainfo.source", "pk": 4562, "fields": {"orig_filename": "Schenek-Tasnad_Istvan_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77", "author": "", "orig_id": 1406195}}, {"model": "metainfo.source", "pk": 4563, "fields": {"orig_filename": "Schenkel_Theodor_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80", "author": "", "orig_id": 1406203}}, {"model": "metainfo.source", "pk": 4564, "fields": {"orig_filename": "Schenkenbach_Friedrich_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80", "author": "", "orig_id": 1406204}}, {"model": "metainfo.source", "pk": 4565, "fields": {"orig_filename": "Schenker_Gottfried_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 80f.", "author": "", "orig_id": 1406205}}, {"model": "metainfo.source", "pk": 4566, "fields": {"orig_filename": "Schenker_Heinrich_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 81f.", "author": "", "orig_id": 1406206}}, {"model": "metainfo.source", "pk": 4567, "fields": {"orig_filename": "Schenker_Martin_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82", "author": "", "orig_id": 1406207}}, {"model": "metainfo.source", "pk": 4568, "fields": {"orig_filename": "Schenkl_Adolf_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82", "author": "", "orig_id": 1406208}}, {"model": "metainfo.source", "pk": 4569, "fields": {"orig_filename": "Schenkl_Heinrich_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 82f.", "author": "", "orig_id": 1406209}}, {"model": "metainfo.source", "pk": 4570, "fields": {"orig_filename": "Schenkl_Karl_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 83f.", "author": "", "orig_id": 1406210}}, {"model": "metainfo.source", "pk": 4571, "fields": {"orig_filename": "Schenk_Alois-David_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 77f.", "author": "", "orig_id": 1406196}}, {"model": "metainfo.source", "pk": 4572, "fields": {"orig_filename": "Schenk_Hugo_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 281", "author": "", "orig_id": 2085225}}, {"model": "metainfo.source", "pk": 4573, "fields": {"orig_filename": "Schenk_Johann-Bapt_1753_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78", "author": "", "orig_id": 1406197}}, {"model": "metainfo.source", "pk": 4574, "fields": {"orig_filename": "Schenk_Johann_1829_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78", "author": "", "orig_id": 1406198}}, {"model": "metainfo.source", "pk": 4575, "fields": {"orig_filename": "Schenk_Josef-Eduard_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 78f.", "author": "", "orig_id": 1406199}}, {"model": "metainfo.source", "pk": 4576, "fields": {"orig_filename": "Schenk_Josef-Wilhelm_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79", "author": "", "orig_id": 1406200}}, {"model": "metainfo.source", "pk": 4577, "fields": {"orig_filename": "Schenk_Martin_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79", "author": "", "orig_id": 1406201}}, {"model": "metainfo.source", "pk": 4578, "fields": {"orig_filename": "Schennich_Emil-Anton_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 84f.", "author": "", "orig_id": 1406211}}, {"model": "metainfo.source", "pk": 4579, "fields": {"orig_filename": "Schenzl_Guido_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 85", "author": "", "orig_id": 1406212}}, {"model": "metainfo.source", "pk": 4580, "fields": {"orig_filename": "Scherber_Gustav_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 85f.", "author": "", "orig_id": 1406213}}, {"model": "metainfo.source", "pk": 4581, "fields": {"orig_filename": "Scherer_Augustin_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86", "author": "", "orig_id": 1406214}}, {"model": "metainfo.source", "pk": 4582, "fields": {"orig_filename": "Scherer_Franz-Wolfram_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86", "author": "", "orig_id": 1406215}}, {"model": "metainfo.source", "pk": 4583, "fields": {"orig_filename": "Scherer_Johann-Baptist-Andreas_1755_1844.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2085743}}, {"model": "metainfo.source", "pk": 4584, "fields": {"orig_filename": "Scherer_Marie_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 86f.", "author": "", "orig_id": 1406216}}, {"model": "metainfo.source", "pk": 4585, "fields": {"orig_filename": "Scherer_Martin_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87", "author": "", "orig_id": 1406217}}, {"model": "metainfo.source", "pk": 4586, "fields": {"orig_filename": "Scherer_Rosa_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87", "author": "", "orig_id": 1406218}}, {"model": "metainfo.source", "pk": 4587, "fields": {"orig_filename": "Scherer_Rudolf_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 87f.", "author": "", "orig_id": 1406219}}, {"model": "metainfo.source", "pk": 4588, "fields": {"orig_filename": "Scherer_Sophie_1817_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 88", "author": "", "orig_id": 1406220}}, {"model": "metainfo.source", "pk": 4589, "fields": {"orig_filename": "Scherer_Wilhelm_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 88ff.", "author": "", "orig_id": 1406221}}, {"model": "metainfo.source", "pk": 4590, "fields": {"orig_filename": "Scherfel_Aurelius-Wilhelm_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 90", "author": "", "orig_id": 1406222}}, {"model": "metainfo.source", "pk": 4591, "fields": {"orig_filename": "Scherg_Georg-Alfred_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 90f.", "author": "", "orig_id": 1406223}}, {"model": "metainfo.source", "pk": 4592, "fields": {"orig_filename": "Scherndl_Balthasar_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91", "author": "", "orig_id": 1406224}}, {"model": "metainfo.source", "pk": 4593, "fields": {"orig_filename": "Scherpe_Johann_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91", "author": "", "orig_id": 1406225}}, {"model": "metainfo.source", "pk": 4594, "fields": {"orig_filename": "Scherzer_Franz-Jakob_1743_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 91f.", "author": "", "orig_id": 1406226}}, {"model": "metainfo.source", "pk": 4595, "fields": {"orig_filename": "Scherzer_Ivan_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 92", "author": "", "orig_id": 1406227}}, {"model": "metainfo.source", "pk": 4596, "fields": {"orig_filename": "Scherzer_Johann-Georg_1776_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 92f.", "author": "", "orig_id": 1406228}}, {"model": "metainfo.source", "pk": 4597, "fields": {"orig_filename": "Scherzer_Karl_1821_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 93f.", "author": "", "orig_id": 1406229}}, {"model": "metainfo.source", "pk": 4598, "fields": {"orig_filename": "Schestag_August_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 94f.", "author": "", "orig_id": 1406230}}, {"model": "metainfo.source", "pk": 4599, "fields": {"orig_filename": "Schestag_Franz_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 95", "author": "", "orig_id": 1406231}}, {"model": "metainfo.source", "pk": 4600, "fields": {"orig_filename": "Scheth-Bohuslaw_Josef-Leopold_1764_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 95f.", "author": "", "orig_id": 1406232}}, {"model": "metainfo.source", "pk": 4601, "fields": {"orig_filename": "Scheuchenstuel_Karl_1792_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 98", "author": "", "orig_id": 1406045}}, {"model": "metainfo.source", "pk": 4602, "fields": {"orig_filename": "Scheuchenstuel_Viktor_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99", "author": "", "orig_id": 1406046}}, {"model": "metainfo.source", "pk": 4603, "fields": {"orig_filename": "Scheuer_Oskar-Franz_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99", "author": "", "orig_id": 1406047}}, {"model": "metainfo.source", "pk": 4604, "fields": {"orig_filename": "Scheuthauer_Gustav_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 99f.", "author": "", "orig_id": 1406048}}, {"model": "metainfo.source", "pk": 4605, "fields": {"orig_filename": "Scheu_Andreas_1844_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 96", "author": "", "orig_id": 1406233}}, {"model": "metainfo.source", "pk": 4606, "fields": {"orig_filename": "Scheu_Gustav_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 96f.", "author": "", "orig_id": 1406234}}, {"model": "metainfo.source", "pk": 4607, "fields": {"orig_filename": "Scheu_Heinrich_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97", "author": "", "orig_id": 1406235}}, {"model": "metainfo.source", "pk": 4608, "fields": {"orig_filename": "Schey-Koromla_Friedrich_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 100f.", "author": "", "orig_id": 1406049}}, {"model": "metainfo.source", "pk": 4609, "fields": {"orig_filename": "Schey-Koromla_Josef_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 101", "author": "", "orig_id": 1406050}}, {"model": "metainfo.source", "pk": 4610, "fields": {"orig_filename": "Schey-Koromla_Philipp_1798_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 101f.", "author": "", "orig_id": 1406051}}, {"model": "metainfo.source", "pk": 4611, "fields": {"orig_filename": "Scheyerer_Franz_1762_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102", "author": "", "orig_id": 1406053}}, {"model": "metainfo.source", "pk": 4612, "fields": {"orig_filename": "Scheyer_Moriz_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102", "author": "", "orig_id": 1406052}}, {"model": "metainfo.source", "pk": 4613, "fields": {"orig_filename": "Scheyrer_Ludwig_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 102f.", "author": "", "orig_id": 1406054}}, {"model": "metainfo.source", "pk": 4614, "fields": {"orig_filename": "Schgraffer_Jakob-Johann_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103", "author": "", "orig_id": 1406055}}, {"model": "metainfo.source", "pk": 4615, "fields": {"orig_filename": "Schiavi_Lorenzo_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103", "author": "", "orig_id": 1406056}}, {"model": "metainfo.source", "pk": 4616, "fields": {"orig_filename": "Schiavone_Natale_1777_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 103f.", "author": "", "orig_id": 1406057}}, {"model": "metainfo.source", "pk": 4617, "fields": {"orig_filename": "Schiavoni_Felice_1803_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 104", "author": "", "orig_id": 1406058}}, {"model": "metainfo.source", "pk": 4618, "fields": {"orig_filename": "Schiavuzzi_Bernardo_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 104f.", "author": "", "orig_id": 1406059}}, {"model": "metainfo.source", "pk": 4619, "fields": {"orig_filename": "Scanagatta_Francesca_1781_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 12", "author": "", "orig_id": 1405999}}, {"model": "metainfo.source", "pk": 4620, "fields": {"orig_filename": "Scanzoni-Lichtenfels_Friedrich-Wilhelm_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 12f.", "author": "", "orig_id": 1406000}}, {"model": "metainfo.source", "pk": 4621, "fields": {"orig_filename": "Scaramella_Giuseppe_1761_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 13", "author": "", "orig_id": 1406001}}, {"model": "metainfo.source", "pk": 4622, "fields": {"orig_filename": "Scaria_Emil_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 13f.", "author": "", "orig_id": 1406002}}, {"model": "metainfo.source", "pk": 4623, "fields": {"orig_filename": "Scarpa_Antonio_1752_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 14", "author": "", "orig_id": 1405903}}, {"model": "metainfo.source", "pk": 4624, "fields": {"orig_filename": "Scarpa_Iginio_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 14f.", "author": "", "orig_id": 1405904}}, {"model": "metainfo.source", "pk": 4625, "fields": {"orig_filename": "Scek_Virgilij_1889_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15", "author": "", "orig_id": 1405905}}, {"model": "metainfo.source", "pk": 4626, "fields": {"orig_filename": "Schabl_Georg_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15", "author": "", "orig_id": 1405906}}, {"model": "metainfo.source", "pk": 4627, "fields": {"orig_filename": "Schabus_Jakob_1825_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 15f.", "author": "", "orig_id": 1405907}}, {"model": "metainfo.source", "pk": 4628, "fields": {"orig_filename": "Schacherl_Gustav_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16", "author": "", "orig_id": 1405908}}, {"model": "metainfo.source", "pk": 4629, "fields": {"orig_filename": "Schacherl_Gustav_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16", "author": "", "orig_id": 1405909}}, {"model": "metainfo.source", "pk": 4630, "fields": {"orig_filename": "Schacherl_Michael_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 16f.", "author": "", "orig_id": 1405911}}, {"model": "metainfo.source", "pk": 4631, "fields": {"orig_filename": "Schachinger_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 17", "author": "", "orig_id": 1405910}}, {"model": "metainfo.source", "pk": 4632, "fields": {"orig_filename": "Schachinger_Norbert_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 17", "author": "", "orig_id": 1405912}}, {"model": "metainfo.source", "pk": 4633, "fields": {"orig_filename": "Schachinger_Rudolf_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18", "author": "", "orig_id": 1405913}}, {"model": "metainfo.source", "pk": 4634, "fields": {"orig_filename": "Schachleiter_Alban_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18", "author": "", "orig_id": 1405914}}, {"model": "metainfo.source", "pk": 4635, "fields": {"orig_filename": "Schachner_Friedrich_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 18f.", "author": "", "orig_id": 1405915}}, {"model": "metainfo.source", "pk": 4636, "fields": {"orig_filename": "Schachner_Josef-Rudolf_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 19", "author": "", "orig_id": 1405916}}, {"model": "metainfo.source", "pk": 4637, "fields": {"orig_filename": "Schack_Adolf-Wilhelm_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 19f.", "author": "", "orig_id": 1405917}}, {"model": "metainfo.source", "pk": 4638, "fields": {"orig_filename": "Schack_Benedikt-Emanuel_1758_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 20", "author": "", "orig_id": 1405918}}, {"model": "metainfo.source", "pk": 4639, "fields": {"orig_filename": "Schack_Friedrich-Otto_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405919}}, {"model": "metainfo.source", "pk": 4640, "fields": {"orig_filename": "Schadek_Moriz_1840_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405920}}, {"model": "metainfo.source", "pk": 4641, "fields": {"orig_filename": "Schaden_Karl_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21", "author": "", "orig_id": 1405921}}, {"model": "metainfo.source", "pk": 4642, "fields": {"orig_filename": "Schader_Alois_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 21f.", "author": "", "orig_id": 1405922}}, {"model": "metainfo.source", "pk": 4643, "fields": {"orig_filename": "Schadetzky_Karl_1792_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22", "author": "", "orig_id": 1405923}}, {"model": "metainfo.source", "pk": 4644, "fields": {"orig_filename": "Schaedler_Johann-Georg_1777_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22", "author": "", "orig_id": 1405924}}, {"model": "metainfo.source", "pk": 4645, "fields": {"orig_filename": "Schaefer_Anton_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 22f.", "author": "", "orig_id": 1405925}}, {"model": "metainfo.source", "pk": 4646, "fields": {"orig_filename": "Schaefer_Hugo_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 23", "author": "", "orig_id": 1405926}}, {"model": "metainfo.source", "pk": 4647, "fields": {"orig_filename": "Schaeffer-Wienwald_August_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 24", "author": "", "orig_id": 1405928}}, {"model": "metainfo.source", "pk": 4648, "fields": {"orig_filename": "Schaeffer_Georg-Sylvester_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 23f.", "author": "", "orig_id": 1405927}}, {"model": "metainfo.source", "pk": 4649, "fields": {"orig_filename": "Schaeffler_Theodor-Heinrich-Otto_1838_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 25f.", "author": "", "orig_id": 1405930}}, {"model": "metainfo.source", "pk": 4650, "fields": {"orig_filename": "Schaeffle_Albert-Eberhard-Friedrich_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 24f.", "author": "", "orig_id": 1405929}}, {"model": "metainfo.source", "pk": 4651, "fields": {"orig_filename": "Schaelzky_Robert_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 26", "author": "", "orig_id": 1405931}}, {"model": "metainfo.source", "pk": 4652, "fields": {"orig_filename": "Schaffenrath_Alois_1794_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 26f.", "author": "", "orig_id": 1405932}}, {"model": "metainfo.source", "pk": 4653, "fields": {"orig_filename": "Schaffer_Alexander_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 27", "author": "", "orig_id": 1405933}}, {"model": "metainfo.source", "pk": 4654, "fields": {"orig_filename": "Schaffer_Josef_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 27f.", "author": "", "orig_id": 1405934}}, {"model": "metainfo.source", "pk": 4655, "fields": {"orig_filename": "Schaffer_Karoly_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28", "author": "", "orig_id": 1405935}}, {"model": "metainfo.source", "pk": 4656, "fields": {"orig_filename": "Schaffgotsch_Johann-Anton-Ernst_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28", "author": "", "orig_id": 1405936}}, {"model": "metainfo.source", "pk": 4657, "fields": {"orig_filename": "Schaffgotsch_Levin-Gotthard_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 28f.", "author": "", "orig_id": 1405937}}, {"model": "metainfo.source", "pk": 4658, "fields": {"orig_filename": "Schaffgotsch_Mechthild-Maria-Vom-Armen-Kinde-Jesus_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 29", "author": "", "orig_id": 1405938}}, {"model": "metainfo.source", "pk": 4659, "fields": {"orig_filename": "Schaffner_Max_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 29", "author": "", "orig_id": 1405939}}, {"model": "metainfo.source", "pk": 4660, "fields": {"orig_filename": "Schafzahl_Franz-X_1767_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30", "author": "", "orig_id": 1405940}}, {"model": "metainfo.source", "pk": 4661, "fields": {"orig_filename": "Schager-Eckartsau_Albin_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30", "author": "", "orig_id": 1405941}}, {"model": "metainfo.source", "pk": 4662, "fields": {"orig_filename": "Schalit_Leon_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 30f.", "author": "", "orig_id": 1405942}}, {"model": "metainfo.source", "pk": 4663, "fields": {"orig_filename": "Schalk_Franz_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 31f.", "author": "", "orig_id": 1405943}}, {"model": "metainfo.source", "pk": 4664, "fields": {"orig_filename": "Schalk_Josef_1857_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 32", "author": "", "orig_id": 1405944}}, {"model": "metainfo.source", "pk": 4665, "fields": {"orig_filename": "Schalk_Karl_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 32f.", "author": "", "orig_id": 1405945}}, {"model": "metainfo.source", "pk": 4666, "fields": {"orig_filename": "Schall-Falkenforst_Josef_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 33", "author": "", "orig_id": 1405946}}, {"model": "metainfo.source", "pk": 4667, "fields": {"orig_filename": "Schaller_Anton-Ferdinand_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 33f.", "author": "", "orig_id": 1405947}}, {"model": "metainfo.source", "pk": 4668, "fields": {"orig_filename": "Schaller_Georg_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34", "author": "", "orig_id": 1405948}}, {"model": "metainfo.source", "pk": 4669, "fields": {"orig_filename": "Schaller_Gustav_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34", "author": "", "orig_id": 1405949}}, {"model": "metainfo.source", "pk": 4670, "fields": {"orig_filename": "Schaller_Johann-Nep_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 34f.", "author": "", "orig_id": 1405950}}, {"model": "metainfo.source", "pk": 4671, "fields": {"orig_filename": "Schaller_Ludwig_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35", "author": "", "orig_id": 1405951}}, {"model": "metainfo.source", "pk": 4672, "fields": {"orig_filename": "Schallgruber_Josef-Franz_1769_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35", "author": "", "orig_id": 1405952}}, {"model": "metainfo.source", "pk": 4673, "fields": {"orig_filename": "Schamann_Franz_1876_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 35f.", "author": "", "orig_id": 1405953}}, {"model": "metainfo.source", "pk": 4674, "fields": {"orig_filename": "Schamberger_Frantisek-X_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36", "author": "", "orig_id": 1406092}}, {"model": "metainfo.source", "pk": 4675, "fields": {"orig_filename": "Schamberger_Julie_1846_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36", "author": "", "orig_id": 1406093}}, {"model": "metainfo.source", "pk": 4676, "fields": {"orig_filename": "Schamschula_Rudolf_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 37f.", "author": "", "orig_id": 1406096}}, {"model": "metainfo.source", "pk": 4677, "fields": {"orig_filename": "Schams_Franz-Josef_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 36f.", "author": "", "orig_id": 1406094}}, {"model": "metainfo.source", "pk": 4678, "fields": {"orig_filename": "Schams_Franz-X_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 37", "author": "", "orig_id": 1406095}}, {"model": "metainfo.source", "pk": 4679, "fields": {"orig_filename": "Schanilec_Josef_1860_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 38", "author": "", "orig_id": 1406097}}, {"model": "metainfo.source", "pk": 4680, "fields": {"orig_filename": "Schantl_Josef-Hermann_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 38f.", "author": "", "orig_id": 1406098}}, {"model": "metainfo.source", "pk": 4681, "fields": {"orig_filename": "Schanzer_Rudolf_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39", "author": "", "orig_id": 1406099}}, {"model": "metainfo.source", "pk": 4682, "fields": {"orig_filename": "Schanzer_Stanislaus_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39", "author": "", "orig_id": 1406100}}, {"model": "metainfo.source", "pk": 4683, "fields": {"orig_filename": "Schapira_Chaim-Elazar_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 39f.", "author": "", "orig_id": 1406101}}, {"model": "metainfo.source", "pk": 4684, "fields": {"orig_filename": "Schapira_Meir_1887_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40", "author": "", "orig_id": 1406102}}, {"model": "metainfo.source", "pk": 4685, "fields": {"orig_filename": "Schapira_Zevi-Hirsch_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40", "author": "", "orig_id": 1406104}}, {"model": "metainfo.source", "pk": 4686, "fields": {"orig_filename": "Scharff_Anton_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41f.", "author": "", "orig_id": 1406107}}, {"model": "metainfo.source", "pk": 4687, "fields": {"orig_filename": "Scharf_Alexander_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 40f.", "author": "", "orig_id": 1406103}}, {"model": "metainfo.source", "pk": 4688, "fields": {"orig_filename": "Scharf_Jakub_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41", "author": "", "orig_id": 1406105}}, {"model": "metainfo.source", "pk": 4689, "fields": {"orig_filename": "Scharf_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 41", "author": "", "orig_id": 1406106}}, {"model": "metainfo.source", "pk": 4690, "fields": {"orig_filename": "Schariczer-Reny_Georg_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 42", "author": "", "orig_id": 1406108}}, {"model": "metainfo.source", "pk": 4691, "fields": {"orig_filename": "Scharizer_Rudolf_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 42f.", "author": "", "orig_id": 1406109}}, {"model": "metainfo.source", "pk": 4692, "fields": {"orig_filename": "Scharschmid-Adlertreu_Franz_1800_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43", "author": "", "orig_id": 1406110}}, {"model": "metainfo.source", "pk": 4693, "fields": {"orig_filename": "Scharschmid-Adlertreu_Maximilian_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43", "author": "", "orig_id": 1406111}}, {"model": "metainfo.source", "pk": 4694, "fields": {"orig_filename": "Schartner_Gilbert_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 43f.", "author": "", "orig_id": 1406112}}, {"model": "metainfo.source", "pk": 4695, "fields": {"orig_filename": "Schaschl_Johann_1822_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44", "author": "", "orig_id": 1406113}}, {"model": "metainfo.source", "pk": 4696, "fields": {"orig_filename": "Schaser_Johann-Georg_1792_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44", "author": "", "orig_id": 1406114}}, {"model": "metainfo.source", "pk": 4697, "fields": {"orig_filename": "Schattenfroh_Arthur_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 44f.", "author": "", "orig_id": 1406115}}, {"model": "metainfo.source", "pk": 4698, "fields": {"orig_filename": "Schatzmayr_Wilhelm_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 46", "author": "", "orig_id": 1406118}}, {"model": "metainfo.source", "pk": 4699, "fields": {"orig_filename": "Schatz_Adelgott_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 45", "author": "", "orig_id": 1406116}}, {"model": "metainfo.source", "pk": 4700, "fields": {"orig_filename": "Schatz_Josef_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 45f.", "author": "", "orig_id": 1406117}}, {"model": "metainfo.source", "pk": 4701, "fields": {"orig_filename": "Schaub_Franz_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 46f.", "author": "", "orig_id": 1406119}}, {"model": "metainfo.source", "pk": 4702, "fields": {"orig_filename": "Schauenstein_Adolf_1827_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 47", "author": "", "orig_id": 1406120}}, {"model": "metainfo.source", "pk": 4703, "fields": {"orig_filename": "Schauenstein_Anton_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 47", "author": "", "orig_id": 1406121}}, {"model": "metainfo.source", "pk": 4704, "fields": {"orig_filename": "Schauenstein_Walther_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48", "author": "", "orig_id": 1406122}}, {"model": "metainfo.source", "pk": 4705, "fields": {"orig_filename": "Schauer_Antonin_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48", "author": "", "orig_id": 1406123}}, {"model": "metainfo.source", "pk": 4706, "fields": {"orig_filename": "Schauer_Hubert-Gordon_1862_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 48f.", "author": "", "orig_id": 1406124}}, {"model": "metainfo.source", "pk": 4707, "fields": {"orig_filename": "Schauer_Hugo_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 49", "author": "", "orig_id": 1406125}}, {"model": "metainfo.source", "pk": 4708, "fields": {"orig_filename": "Schauer_Johann_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 49f.", "author": "", "orig_id": 1406126}}, {"model": "metainfo.source", "pk": 4709, "fields": {"orig_filename": "Schaukal_Richard_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 50f.", "author": "", "orig_id": 1406127}}, {"model": "metainfo.source", "pk": 4710, "fields": {"orig_filename": "Schaumann-Fuerstenburg_Franz_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 51f.", "author": "", "orig_id": 1406128}}, {"model": "metainfo.source", "pk": 4711, "fields": {"orig_filename": "Schaumburg_Karl_1770_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 52", "author": "", "orig_id": 1406129}}, {"model": "metainfo.source", "pk": 4712, "fields": {"orig_filename": "Schaup_Wilhelm_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 52f.", "author": "", "orig_id": 1406130}}, {"model": "metainfo.source", "pk": 4713, "fields": {"orig_filename": "Schaurhofer_August_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 53", "author": "", "orig_id": 1406131}}, {"model": "metainfo.source", "pk": 4714, "fields": {"orig_filename": "Schauta_Friedrich_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 53f.", "author": "", "orig_id": 1406132}}, {"model": "metainfo.source", "pk": 4715, "fields": {"orig_filename": "Schawerda_Karl_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 54", "author": "", "orig_id": 1406133}}, {"model": "metainfo.source", "pk": 4716, "fields": {"orig_filename": "Schebek_Edmund_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 54f.", "author": "", "orig_id": 1406134}}, {"model": "metainfo.source", "pk": 4717, "fields": {"orig_filename": "Schebek_Gabriel_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 55", "author": "", "orig_id": 1406135}}, {"model": "metainfo.source", "pk": 4718, "fields": {"orig_filename": "Schebest_Agnese_1813_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 55f.", "author": "", "orig_id": 1406136}}, {"model": "metainfo.source", "pk": 4719, "fields": {"orig_filename": "Scheck_Ferdinand_1827_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 56", "author": "", "orig_id": 1406137}}, {"model": "metainfo.source", "pk": 4720, "fields": {"orig_filename": "Scheda_Josef_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 56f.", "author": "", "orig_id": 1406138}}, {"model": "metainfo.source", "pk": 4721, "fields": {"orig_filename": "Schedius_Lajos-Janos_1768_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 57", "author": "", "orig_id": 1406139}}, {"model": "metainfo.source", "pk": 4722, "fields": {"orig_filename": "Sandrinelli_Luigi_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413", "author": "", "orig_id": 1407974}}, {"model": "metainfo.source", "pk": 4723, "fields": {"orig_filename": "Sandri_Giulio_1789_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413", "author": "", "orig_id": 1407973}}, {"model": "metainfo.source", "pk": 4724, "fields": {"orig_filename": "Sandrock_Adele_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 413f.", "author": "", "orig_id": 1407975}}, {"model": "metainfo.source", "pk": 4725, "fields": {"orig_filename": "Sanguszko_Eustachy-Stanislaw_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 414f.", "author": "", "orig_id": 1407976}}, {"model": "metainfo.source", "pk": 4726, "fields": {"orig_filename": "Sanguszko_Wladyslaw-Hieronim_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 415", "author": "", "orig_id": 1407977}}, {"model": "metainfo.source", "pk": 4727, "fields": {"orig_filename": "Santel_Aleksander_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 415f.", "author": "", "orig_id": 1407979}}, {"model": "metainfo.source", "pk": 4728, "fields": {"orig_filename": "Santel_Avgusta_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416", "author": "", "orig_id": 1407980}}, {"model": "metainfo.source", "pk": 4729, "fields": {"orig_filename": "Santel_Henrietta_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416", "author": "", "orig_id": 1407981}}, {"model": "metainfo.source", "pk": 4730, "fields": {"orig_filename": "Santifaller_Maria-Christina_1904_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422698}}, {"model": "metainfo.source", "pk": 4731, "fields": {"orig_filename": "Santini_Giovanni_1787_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 417", "author": "", "orig_id": 1407983}}, {"model": "metainfo.source", "pk": 4732, "fields": {"orig_filename": "Santi_Sebastiano_1789_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 416f.", "author": "", "orig_id": 1407982}}, {"model": "metainfo.source", "pk": 4733, "fields": {"orig_filename": "Santner_Johann_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 417f.", "author": "", "orig_id": 1407984}}, {"model": "metainfo.source", "pk": 4734, "fields": {"orig_filename": "Santner_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 418", "author": "", "orig_id": 1407985}}, {"model": "metainfo.source", "pk": 4735, "fields": {"orig_filename": "Santoni_Giuseppe_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 418f.", "author": "", "orig_id": 1407986}}, {"model": "metainfo.source", "pk": 4736, "fields": {"orig_filename": "Sanzin_Rudolf_1874_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 419", "author": "", "orig_id": 1407987}}, {"model": "metainfo.source", "pk": 4737, "fields": {"orig_filename": "Saphir_Moritz-Gottlieb_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 419f.", "author": "", "orig_id": 1407988}}, {"model": "metainfo.source", "pk": 4738, "fields": {"orig_filename": "Sapieha_Adam-Stanislaw_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 420f.", "author": "", "orig_id": 1407989}}, {"model": "metainfo.source", "pk": 4739, "fields": {"orig_filename": "Sapieha_Leon_1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 421", "author": "", "orig_id": 1407991}}, {"model": "metainfo.source", "pk": 4740, "fields": {"orig_filename": "Sapieha_Wladyslaw-Leon_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 421f.", "author": "", "orig_id": 1407990}}, {"model": "metainfo.source", "pk": 4741, "fields": {"orig_filename": "Sapik_Vojtech_1888_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 422", "author": "", "orig_id": 1407992}}, {"model": "metainfo.source", "pk": 4742, "fields": {"orig_filename": "Saporiti_Teresa_1763_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 422f.", "author": "", "orig_id": 1407993}}, {"model": "metainfo.source", "pk": 4743, "fields": {"orig_filename": "Sarbu_Ion_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407994}}, {"model": "metainfo.source", "pk": 4744, "fields": {"orig_filename": "Sardagna-Meanberg-Hohenstein_Carlo-Emanuele_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407995}}, {"model": "metainfo.source", "pk": 4745, "fields": {"orig_filename": "Sardagna-Meanberg-Hohenstein_Josef_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423", "author": "", "orig_id": 1407996}}, {"model": "metainfo.source", "pk": 4746, "fields": {"orig_filename": "Sare_Jozef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 423f.", "author": "", "orig_id": 1407997}}, {"model": "metainfo.source", "pk": 4747, "fields": {"orig_filename": "Sarg_Johann-Heinrich-Karl_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 424", "author": "", "orig_id": 1407998}}, {"model": "metainfo.source", "pk": 4748, "fields": {"orig_filename": "Sarkotic-Lovcen_Stefan_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 424f.", "author": "", "orig_id": 1407999}}, {"model": "metainfo.source", "pk": 4749, "fields": {"orig_filename": "Sarna_Wladyslaw_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 425f.", "author": "", "orig_id": 1408000}}, {"model": "metainfo.source", "pk": 4750, "fields": {"orig_filename": "Sarnecki_Zygmunt_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426", "author": "", "orig_id": 1408001}}, {"model": "metainfo.source", "pk": 4751, "fields": {"orig_filename": "Sarnicki_Klemens_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426", "author": "", "orig_id": 1408002}}, {"model": "metainfo.source", "pk": 4752, "fields": {"orig_filename": "Sarnthein_Ludwig_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 426f.", "author": "", "orig_id": 1408003}}, {"model": "metainfo.source", "pk": 4753, "fields": {"orig_filename": "Sarosi-Poka_Lajos_1816_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427", "author": "", "orig_id": 1408004}}, {"model": "metainfo.source", "pk": 4754, "fields": {"orig_filename": "Sartorelli_Giambattista_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427", "author": "", "orig_id": 1408005}}, {"model": "metainfo.source", "pk": 4755, "fields": {"orig_filename": "Sartori-Montecroce_Tullius_1862_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 428f.", "author": "", "orig_id": 1408007}}, {"model": "metainfo.source", "pk": 4756, "fields": {"orig_filename": "Sartorio_Giovanni-Guglielmo_1789_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429", "author": "", "orig_id": 1408008}}, {"model": "metainfo.source", "pk": 4757, "fields": {"orig_filename": "Sartori_Franz_1782_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 427f.", "author": "", "orig_id": 1408006}}, {"model": "metainfo.source", "pk": 4758, "fields": {"orig_filename": "Sartory_Dominikus-A-Jesu-Maria_1809_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429", "author": "", "orig_id": 1408009}}, {"model": "metainfo.source", "pk": 4759, "fields": {"orig_filename": "Sartory_Johann_1759_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 429f.", "author": "", "orig_id": 1408010}}, {"model": "metainfo.source", "pk": 4760, "fields": {"orig_filename": "Sartory_Josefa_1771_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 430f.", "author": "", "orig_id": 1408011}}, {"model": "metainfo.source", "pk": 4761, "fields": {"orig_filename": "Sarvary_Pal_1765_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431", "author": "", "orig_id": 1408012}}, {"model": "metainfo.source", "pk": 4762, "fields": {"orig_filename": "Saselj_Ivan-Feliks_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431", "author": "", "orig_id": 1408013}}, {"model": "metainfo.source", "pk": 4763, "fields": {"orig_filename": "Sasinek_Frantisek_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 431f.", "author": "", "orig_id": 1408014}}, {"model": "metainfo.source", "pk": 4764, "fields": {"orig_filename": "Saska_Leo-Frantisek_1832_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 432", "author": "", "orig_id": 1408015}}, {"model": "metainfo.source", "pk": 4765, "fields": {"orig_filename": "Saskevyc_Markijan_1811_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 432f.", "author": "", "orig_id": 1408016}}, {"model": "metainfo.source", "pk": 4766, "fields": {"orig_filename": "Sasko_Martin_1807_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 433", "author": "", "orig_id": 1408018}}, {"model": "metainfo.source", "pk": 4767, "fields": {"orig_filename": "Sasku_Karoly_1806_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 433f.", "author": "", "orig_id": 1408017}}, {"model": "metainfo.source", "pk": 4768, "fields": {"orig_filename": "Sassmann_Hanns_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434", "author": "", "orig_id": 1408019}}, {"model": "metainfo.source", "pk": 4769, "fields": {"orig_filename": "Satke_Otto_1898_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434", "author": "", "orig_id": 1408020}}, {"model": "metainfo.source", "pk": 4770, "fields": {"orig_filename": "Satter_Gustav_1832_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 434f.", "author": "", "orig_id": 1408021}}, {"model": "metainfo.source", "pk": 4771, "fields": {"orig_filename": "Sattler_Hubert_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 435", "author": "", "orig_id": 1408022}}, {"model": "metainfo.source", "pk": 4772, "fields": {"orig_filename": "Sattler_Johann-Michael_1786_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 435f.", "author": "", "orig_id": 1408023}}, {"model": "metainfo.source", "pk": 4773, "fields": {"orig_filename": "Sattler_Josef-Ignaz_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 436", "author": "", "orig_id": 1408024}}, {"model": "metainfo.source", "pk": 4774, "fields": {"orig_filename": "Sattner_Hugolin_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 436f.", "author": "", "orig_id": 1408025}}, {"model": "metainfo.source", "pk": 4775, "fields": {"orig_filename": "Saturnik_Theodor_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 437", "author": "", "orig_id": 1408026}}, {"model": "metainfo.source", "pk": 4776, "fields": {"orig_filename": "Saudek_Emil_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 437", "author": "", "orig_id": 1408027}}, {"model": "metainfo.source", "pk": 4777, "fields": {"orig_filename": "Saudek_Robert_1880_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 438", "author": "", "orig_id": 1408028}}, {"model": "metainfo.source", "pk": 4778, "fields": {"orig_filename": "Sauer-Aichried_Emil-Georg_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 442f.", "author": "", "orig_id": 1408037}}, {"model": "metainfo.source", "pk": 4779, "fields": {"orig_filename": "Sauer-Csaky-Nordendorf_Eugen_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 443", "author": "", "orig_id": 1408038}}, {"model": "metainfo.source", "pk": 4780, "fields": {"orig_filename": "Sauer_August_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 438f.", "author": "", "orig_id": 1408029}}, {"model": "metainfo.source", "pk": 4781, "fields": {"orig_filename": "Sauer_Edmund_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 439f.", "author": "", "orig_id": 1408030}}, {"model": "metainfo.source", "pk": 4782, "fields": {"orig_filename": "Sauer_Georg_1802_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440", "author": "", "orig_id": 1408031}}, {"model": "metainfo.source", "pk": 4783, "fields": {"orig_filename": "Sauer_Ignac_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440", "author": "", "orig_id": 1408032}}, {"model": "metainfo.source", "pk": 4784, "fields": {"orig_filename": "Sauer_Ignaz_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 440f.", "author": "", "orig_id": 1408033}}, {"model": "metainfo.source", "pk": 4785, "fields": {"orig_filename": "Sauer_Julius_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 441", "author": "", "orig_id": 1408034}}, {"model": "metainfo.source", "pk": 4786, "fields": {"orig_filename": "Sauer_Karl_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 441f.", "author": "", "orig_id": 1408035}}, {"model": "metainfo.source", "pk": 4787, "fields": {"orig_filename": "Sauer_Wilhelm_1892_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 442", "author": "", "orig_id": 1408036}}, {"model": "metainfo.source", "pk": 4788, "fields": {"orig_filename": "Saulich_Angelo_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 444", "author": "", "orig_id": 1408040}}, {"model": "metainfo.source", "pk": 4789, "fields": {"orig_filename": "Saul_Friedrich-Karl-Theodor_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 443f.", "author": "", "orig_id": 1408039}}, {"model": "metainfo.source", "pk": 4790, "fields": {"orig_filename": "Saurau_Franz-Josef_1760_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 444f.", "author": "", "orig_id": 1408041}}, {"model": "metainfo.source", "pk": 4791, "fields": {"orig_filename": "Sauter_Andreas_1802_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 445", "author": "", "orig_id": 1408042}}, {"model": "metainfo.source", "pk": 4792, "fields": {"orig_filename": "Sauter_Benedikt_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 446", "author": "", "orig_id": 1408044}}, {"model": "metainfo.source", "pk": 4793, "fields": {"orig_filename": "Sauter_Ferdinand_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 446f.", "author": "", "orig_id": 1408045}}, {"model": "metainfo.source", "pk": 4794, "fields": {"orig_filename": "Savart_Louis_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447", "author": "", "orig_id": 1408047}}, {"model": "metainfo.source", "pk": 4795, "fields": {"orig_filename": "Savic_Gavro_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 447f.", "author": "", "orig_id": 1408049}}, {"model": "metainfo.source", "pk": 4796, "fields": {"orig_filename": "Savic_Tonka_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 448", "author": "", "orig_id": 1408050}}, {"model": "metainfo.source", "pk": 4797, "fields": {"orig_filename": "Savic_Zarko_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 448", "author": "", "orig_id": 1408051}}, {"model": "metainfo.source", "pk": 4798, "fields": {"orig_filename": "Savinsek_Slavko_1897_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1", "author": "", "orig_id": 1405974}}, {"model": "metainfo.source", "pk": 4799, "fields": {"orig_filename": "Savio_Franz-Leopold_1801_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1", "author": "", "orig_id": 1405975}}, {"model": "metainfo.source", "pk": 4800, "fields": {"orig_filename": "Savits_Jocza_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 1f.", "author": "", "orig_id": 1405976}}, {"model": "metainfo.source", "pk": 4801, "fields": {"orig_filename": "Sawczynski_Henryk_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 2", "author": "", "orig_id": 1405977}}, {"model": "metainfo.source", "pk": 4802, "fields": {"orig_filename": "Sawczynski_Zygmunt_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 2f.", "author": "", "orig_id": 1405978}}, {"model": "metainfo.source", "pk": 4803, "fields": {"orig_filename": "Sawicki-Stella_Jan_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 4", "author": "", "orig_id": 1405982}}, {"model": "metainfo.source", "pk": 4804, "fields": {"orig_filename": "Sawicki_Edward_1833_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3", "author": "", "orig_id": 1405979}}, {"model": "metainfo.source", "pk": 4805, "fields": {"orig_filename": "Sawicki_Karl-Nikolaus_1792_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3", "author": "", "orig_id": 1405980}}, {"model": "metainfo.source", "pk": 4806, "fields": {"orig_filename": "Sawicki_Ludomir_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 3f.", "author": "", "orig_id": 1405981}}, {"model": "metainfo.source", "pk": 4807, "fields": {"orig_filename": "Sawiczewski_Florian_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 4f.", "author": "", "orig_id": 1405983}}, {"model": "metainfo.source", "pk": 4808, "fields": {"orig_filename": "Sawiczewski_Julian-Jozef_1795_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5", "author": "", "orig_id": 1405984}}, {"model": "metainfo.source", "pk": 4809, "fields": {"orig_filename": "Saxeneder_Josef_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 6f.", "author": "", "orig_id": 1405987}}, {"model": "metainfo.source", "pk": 4810, "fields": {"orig_filename": "Saxl_Friedrich_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7", "author": "", "orig_id": 1405988}}, {"model": "metainfo.source", "pk": 4811, "fields": {"orig_filename": "Saxl_Ignaz_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7", "author": "", "orig_id": 1405989}}, {"model": "metainfo.source", "pk": 4812, "fields": {"orig_filename": "Saxl_Maximilian_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 7f.", "author": "", "orig_id": 1405990}}, {"model": "metainfo.source", "pk": 4813, "fields": {"orig_filename": "Saxl_Paul_1880_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 8", "author": "", "orig_id": 1405991}}, {"model": "metainfo.source", "pk": 4814, "fields": {"orig_filename": "Sax_Emanuel-Hans_1857_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5", "author": "", "orig_id": 1406984}}, {"model": "metainfo.source", "pk": 4815, "fields": {"orig_filename": "Sax_Emil_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 5f.", "author": "", "orig_id": 1405985}}, {"model": "metainfo.source", "pk": 4816, "fields": {"orig_filename": "Sax_Josef_1761_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 6", "author": "", "orig_id": 1405986}}, {"model": "metainfo.source", "pk": 4817, "fields": {"orig_filename": "Sbiera_Ion-Gheorghe_1836_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 8f.", "author": "", "orig_id": 1405992}}, {"model": "metainfo.source", "pk": 4818, "fields": {"orig_filename": "Sbiera_Radu_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9", "author": "", "orig_id": 1405993}}, {"model": "metainfo.source", "pk": 4819, "fields": {"orig_filename": "Sbrizaj_Ivan_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9", "author": "", "orig_id": 1405994}}, {"model": "metainfo.source", "pk": 4820, "fields": {"orig_filename": "Scala_Arthur_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 9f.", "author": "", "orig_id": 1405995}}, {"model": "metainfo.source", "pk": 4821, "fields": {"orig_filename": "Scala_Ferdinand_1866_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 10", "author": "", "orig_id": 1405996}}, {"model": "metainfo.source", "pk": 4822, "fields": {"orig_filename": "Scala_Rudolf_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 10f.", "author": "", "orig_id": 1405997}}, {"model": "metainfo.source", "pk": 4823, "fields": {"orig_filename": "Scalvini_Giovita_1791_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 11f.", "author": "", "orig_id": 1405998}}, {"model": "metainfo.source", "pk": 4824, "fields": {"orig_filename": "Sachse-Rothenberg_Friedrich_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370", "author": "", "orig_id": 1407818}}, {"model": "metainfo.source", "pk": 4825, "fields": {"orig_filename": "Sachsel_Siegmund_1873_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370", "author": "", "orig_id": 1407819}}, {"model": "metainfo.source", "pk": 4826, "fields": {"orig_filename": "Sachsen-Coburg-Gotha_Ferdinand-August-Georg_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 370f.", "author": "", "orig_id": 1407820}}, {"model": "metainfo.source", "pk": 4827, "fields": {"orig_filename": "Sachsen-Coburg-Gotha_Ferdinand-Philipp_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 371", "author": "", "orig_id": 1407822}}, {"model": "metainfo.source", "pk": 4828, "fields": {"orig_filename": "Sachs_Moriz_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369", "author": "", "orig_id": 1407815}}, {"model": "metainfo.source", "pk": 4829, "fields": {"orig_filename": "Sacken_Adolf_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 371f.", "author": "", "orig_id": 1407824}}, {"model": "metainfo.source", "pk": 4830, "fields": {"orig_filename": "Sacken_Eduard_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 372f.", "author": "", "orig_id": 1407730}}, {"model": "metainfo.source", "pk": 4831, "fields": {"orig_filename": "Sadger_Isidor_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373", "author": "", "orig_id": 1407731}}, {"model": "metainfo.source", "pk": 4832, "fields": {"orig_filename": "Sadil_Meinrad_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373", "author": "", "orig_id": 1407732}}, {"model": "metainfo.source", "pk": 4833, "fields": {"orig_filename": "Sadleder_Karl_1883_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 373f.", "author": "", "orig_id": 1407733}}, {"model": "metainfo.source", "pk": 4834, "fields": {"orig_filename": "Sadler_Josef_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374", "author": "", "orig_id": 1407734}}, {"model": "metainfo.source", "pk": 4835, "fields": {"orig_filename": "Sadlowski_Wladyslaw_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374", "author": "", "orig_id": 1407736}}, {"model": "metainfo.source", "pk": 4836, "fields": {"orig_filename": "Sadowski_Jan-Nep_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 374f.", "author": "", "orig_id": 1407737}}, {"model": "metainfo.source", "pk": 4837, "fields": {"orig_filename": "Safarik_Pavel-Josef_1795_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 375f.", "author": "", "orig_id": 1407738}}, {"model": "metainfo.source", "pk": 4838, "fields": {"orig_filename": "Safarik_Vojtech_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 376", "author": "", "orig_id": 1407739}}, {"model": "metainfo.source", "pk": 4839, "fields": {"orig_filename": "Saff_Vojtech-Eduard_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 376f.", "author": "", "orig_id": 1407740}}, {"model": "metainfo.source", "pk": 4840, "fields": {"orig_filename": "Safranek_Frantisek_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377", "author": "", "orig_id": 1407741}}, {"model": "metainfo.source", "pk": 4841, "fields": {"orig_filename": "Safranek_Jan_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377", "author": "", "orig_id": 1407742}}, {"model": "metainfo.source", "pk": 4842, "fields": {"orig_filename": "Sagredo_Agostino_1798_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 377f.", "author": "", "orig_id": 1407743}}, {"model": "metainfo.source", "pk": 4843, "fields": {"orig_filename": "Saguna_Andreiu_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 378", "author": "", "orig_id": 1407745}}, {"model": "metainfo.source", "pk": 4844, "fields": {"orig_filename": "Sahla_Richard_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379", "author": "", "orig_id": 1407746}}, {"model": "metainfo.source", "pk": 4845, "fields": {"orig_filename": "Sahulka_Johann_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379", "author": "", "orig_id": 1407747}}, {"model": "metainfo.source", "pk": 4846, "fields": {"orig_filename": "Sailer_Franz_1792_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 379f.", "author": "", "orig_id": 1407748}}, {"model": "metainfo.source", "pk": 4847, "fields": {"orig_filename": "Sailer_Josef_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380", "author": "", "orig_id": 1407750}}, {"model": "metainfo.source", "pk": 4848, "fields": {"orig_filename": "Sailer_Leopold_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380", "author": "", "orig_id": 1407751}}, {"model": "metainfo.source", "pk": 4849, "fields": {"orig_filename": "Saint-Julien-Wallsee_Klemens_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407753}}, {"model": "metainfo.source", "pk": 4850, "fields": {"orig_filename": "Sain_Isidoro_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 380f.", "author": "", "orig_id": 1407752}}, {"model": "metainfo.source", "pk": 4851, "fields": {"orig_filename": "Sajevic_Aleksandar_1843_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407754}}, {"model": "metainfo.source", "pk": 4852, "fields": {"orig_filename": "Sajevic_Ivana_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381", "author": "", "orig_id": 1407755}}, {"model": "metainfo.source", "pk": 4853, "fields": {"orig_filename": "Sakser_Frank_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 381f.", "author": "", "orig_id": 1407756}}, {"model": "metainfo.source", "pk": 4854, "fields": {"orig_filename": "Salaba_August_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382", "author": "", "orig_id": 1407757}}, {"model": "metainfo.source", "pk": 4855, "fields": {"orig_filename": "Salaba_Josef_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382", "author": "", "orig_id": 1407758}}, {"model": "metainfo.source", "pk": 4856, "fields": {"orig_filename": "Salamon_Ferenc_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 382f.", "author": "", "orig_id": 1407759}}, {"model": "metainfo.source", "pk": 4857, "fields": {"orig_filename": "Salamon_Jozsef_1790_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 383", "author": "", "orig_id": 1407760}}, {"model": "metainfo.source", "pk": 4858, "fields": {"orig_filename": "Salata_Francesco_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 383f.", "author": "", "orig_id": 1407761}}, {"model": "metainfo.source", "pk": 4859, "fields": {"orig_filename": "Salcher_Josef_1861_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 384", "author": "", "orig_id": 1407763}}, {"model": "metainfo.source", "pk": 4860, "fields": {"orig_filename": "Salcher_Mathias_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 384", "author": "", "orig_id": 1407764}}, {"model": "metainfo.source", "pk": 4861, "fields": {"orig_filename": "Salcher_Robert_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385", "author": "", "orig_id": 1407765}}, {"model": "metainfo.source", "pk": 4862, "fields": {"orig_filename": "Salcher_Rudolf_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385", "author": "", "orig_id": 1407766}}, {"model": "metainfo.source", "pk": 4863, "fields": {"orig_filename": "Salda_Frantisek-X_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 385f.", "author": "", "orig_id": 1407767}}, {"model": "metainfo.source", "pk": 4864, "fields": {"orig_filename": "Salghetti-Drioli_Franjo_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 386", "author": "", "orig_id": 1407768}}, {"model": "metainfo.source", "pk": 4865, "fields": {"orig_filename": "Salgo_Jakab_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 386f.", "author": "", "orig_id": 1407769}}, {"model": "metainfo.source", "pk": 4866, "fields": {"orig_filename": "Salieri_Antonio_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 387", "author": "", "orig_id": 1407770}}, {"model": "metainfo.source", "pk": 4867, "fields": {"orig_filename": "Salis-Samaden_Karl_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 387f.", "author": "", "orig_id": 1407771}}, {"model": "metainfo.source", "pk": 4868, "fields": {"orig_filename": "Salis-Seewis_Johann-Ulrich_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 388", "author": "", "orig_id": 1407772}}, {"model": "metainfo.source", "pk": 4869, "fields": {"orig_filename": "Salis-Soglio_Daniel_1826_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 388f.", "author": "", "orig_id": 1407773}}, {"model": "metainfo.source", "pk": 4870, "fields": {"orig_filename": "Salkind_Alexander_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389", "author": "", "orig_id": 1407774}}, {"model": "metainfo.source", "pk": 4871, "fields": {"orig_filename": "Sallinger_Richard_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389", "author": "", "orig_id": 1407775}}, {"model": "metainfo.source", "pk": 4872, "fields": {"orig_filename": "Sallmayer_Hermann-Karl_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 389f.", "author": "", "orig_id": 1407776}}, {"model": "metainfo.source", "pk": 4873, "fields": {"orig_filename": "Salm-Reifferscheidt_Franz-X_1749_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 390f.", "author": "", "orig_id": 1407919}}, {"model": "metainfo.source", "pk": 4874, "fields": {"orig_filename": "Salm-Reifferscheidt_Hugo-Franz_1776_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 391", "author": "", "orig_id": 1407920}}, {"model": "metainfo.source", "pk": 4875, "fields": {"orig_filename": "Salm-Reifferscheidt_Hugo-Karl-Eduard_1803_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 391f.", "author": "", "orig_id": 1407921}}, {"model": "metainfo.source", "pk": 4876, "fields": {"orig_filename": "Salmen_Franz-Josef_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392", "author": "", "orig_id": 1407922}}, {"model": "metainfo.source", "pk": 4877, "fields": {"orig_filename": "Salmini_Vittorio_1832_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392", "author": "", "orig_id": 1407923}}, {"model": "metainfo.source", "pk": 4878, "fields": {"orig_filename": "Salomon-Friedberg_Emanuel_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 393", "author": "", "orig_id": 1407925}}, {"model": "metainfo.source", "pk": 4879, "fields": {"orig_filename": "Salomoni_Filippo_1801_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 393f.", "author": "", "orig_id": 1407926}}, {"model": "metainfo.source", "pk": 4880, "fields": {"orig_filename": "Salomon_Johann-Michael_1793_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 392f.", "author": "", "orig_id": 1407924}}, {"model": "metainfo.source", "pk": 4881, "fields": {"orig_filename": "Saloni_Aleksander_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394", "author": "", "orig_id": 1407927}}, {"model": "metainfo.source", "pk": 4882, "fields": {"orig_filename": "Saloun_Ladislav-Jan_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394", "author": "", "orig_id": 1407928}}, {"model": "metainfo.source", "pk": 4883, "fields": {"orig_filename": "Salten_Felix_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 394f.", "author": "", "orig_id": 1407929}}, {"model": "metainfo.source", "pk": 4884, "fields": {"orig_filename": "Salus_Hugo_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 395f.", "author": "", "orig_id": 1407930}}, {"model": "metainfo.source", "pk": 4885, "fields": {"orig_filename": "Salvadori_Giovanni-Batt_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 396f.", "author": "", "orig_id": 1407932}}, {"model": "metainfo.source", "pk": 4886, "fields": {"orig_filename": "Salva_Karol_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 396", "author": "", "orig_id": 1407931}}, {"model": "metainfo.source", "pk": 4887, "fields": {"orig_filename": "Salviati_Antonio_1816_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 398", "author": "", "orig_id": 1407935}}, {"model": "metainfo.source", "pk": 4888, "fields": {"orig_filename": "Salvi_Luigi-Matteo_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 397f.", "author": "", "orig_id": 1407934}}, {"model": "metainfo.source", "pk": 4889, "fields": {"orig_filename": "Salvotti-Eichenkraft-Bindeburg_Anton_1789_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 398f.", "author": "", "orig_id": 1407936}}, {"model": "metainfo.source", "pk": 4890, "fields": {"orig_filename": "Salzbacher_Josef_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 399", "author": "", "orig_id": 1407937}}, {"model": "metainfo.source", "pk": 4891, "fields": {"orig_filename": "Salzer_Anselm_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 399f.", "author": "", "orig_id": 1407938}}, {"model": "metainfo.source", "pk": 4892, "fields": {"orig_filename": "Salzer_Franz_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400", "author": "", "orig_id": 1407939}}, {"model": "metainfo.source", "pk": 4893, "fields": {"orig_filename": "Salzer_Friedrich-Franz_1827_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400", "author": "", "orig_id": 1407940}}, {"model": "metainfo.source", "pk": 4894, "fields": {"orig_filename": "Salzer_Johann_1840_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 400f.", "author": "", "orig_id": 1407941}}, {"model": "metainfo.source", "pk": 4895, "fields": {"orig_filename": "Salzer_Josef_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 401", "author": "", "orig_id": 1407942}}, {"model": "metainfo.source", "pk": 4896, "fields": {"orig_filename": "Salzer_Matthaeus-Kaspar_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 401f.", "author": "", "orig_id": 1407943}}, {"model": "metainfo.source", "pk": 4897, "fields": {"orig_filename": "Salzer_Robert-Karl_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402", "author": "", "orig_id": 1407944}}, {"model": "metainfo.source", "pk": 4898, "fields": {"orig_filename": "Salzgeber_Peter_1789_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402", "author": "", "orig_id": 1407945}}, {"model": "metainfo.source", "pk": 4899, "fields": {"orig_filename": "Salzmann_Johann_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 402f.", "author": "", "orig_id": 1407946}}, {"model": "metainfo.source", "pk": 4900, "fields": {"orig_filename": "Salzmann_Josef_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403", "author": "", "orig_id": 1407947}}, {"model": "metainfo.source", "pk": 4901, "fields": {"orig_filename": "Salzmann_Karl-Aubert_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403", "author": "", "orig_id": 1407948}}, {"model": "metainfo.source", "pk": 4902, "fields": {"orig_filename": "Salzmann_Karl-Gottfried_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 403f.", "author": "", "orig_id": 1407949}}, {"model": "metainfo.source", "pk": 4903, "fields": {"orig_filename": "Samalik_Josef_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404f.", "author": "", "orig_id": 1407953}}, {"model": "metainfo.source", "pk": 4904, "fields": {"orig_filename": "Samal_Jan_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404", "author": "", "orig_id": 1407951}}, {"model": "metainfo.source", "pk": 4905, "fields": {"orig_filename": "Samal_Premysl_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 404", "author": "", "orig_id": 1407952}}, {"model": "metainfo.source", "pk": 4906, "fields": {"orig_filename": "Samanek_Vaclav_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407954}}, {"model": "metainfo.source", "pk": 4907, "fields": {"orig_filename": "Samanek_Vinzenz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407955}}, {"model": "metainfo.source", "pk": 4908, "fields": {"orig_filename": "Samarjay_Karl_1821_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405", "author": "", "orig_id": 1407956}}, {"model": "metainfo.source", "pk": 4909, "fields": {"orig_filename": "Samassa_Albert_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 405f.", "author": "", "orig_id": 1407957}}, {"model": "metainfo.source", "pk": 4910, "fields": {"orig_filename": "Samassa_Anton_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 406", "author": "", "orig_id": 1407958}}, {"model": "metainfo.source", "pk": 4911, "fields": {"orig_filename": "Samassa_Jozsef_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 406f.", "author": "", "orig_id": 1407959}}, {"model": "metainfo.source", "pk": 4912, "fields": {"orig_filename": "Samassa_Max_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 407", "author": "", "orig_id": 1407960}}, {"model": "metainfo.source", "pk": 4913, "fields": {"orig_filename": "Samassa_Paul_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 407f.", "author": "", "orig_id": 1407961}}, {"model": "metainfo.source", "pk": 4914, "fields": {"orig_filename": "Samec_Janko_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408", "author": "", "orig_id": 1407962}}, {"model": "metainfo.source", "pk": 4915, "fields": {"orig_filename": "Samek_Frantisek_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408", "author": "", "orig_id": 1407963}}, {"model": "metainfo.source", "pk": 4916, "fields": {"orig_filename": "Samelson_Szymon_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 408f.", "author": "", "orig_id": 1407964}}, {"model": "metainfo.source", "pk": 4917, "fields": {"orig_filename": "Sames_Josef_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 409", "author": "", "orig_id": 1409581}}, {"model": "metainfo.source", "pk": 4918, "fields": {"orig_filename": "Samhaber_Edward_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 409f.", "author": "", "orig_id": 1407965}}, {"model": "metainfo.source", "pk": 4919, "fields": {"orig_filename": "Sammern-Frankenegg_Ferdinand_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 410", "author": "", "orig_id": 1407966}}, {"model": "metainfo.source", "pk": 4920, "fields": {"orig_filename": "Samolewicz_Zygmunt_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 410f.", "author": "", "orig_id": 1407967}}, {"model": "metainfo.source", "pk": 4921, "fields": {"orig_filename": "Sanda_Frantisek_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411", "author": "", "orig_id": 1407968}}, {"model": "metainfo.source", "pk": 4922, "fields": {"orig_filename": "Sander_Fritz_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411", "author": "", "orig_id": 1407969}}, {"model": "metainfo.source", "pk": 4923, "fields": {"orig_filename": "Sander_Hermann_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 411f.", "author": "", "orig_id": 1407970}}, {"model": "metainfo.source", "pk": 4924, "fields": {"orig_filename": "Sandner_Anton_1906_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 412", "author": "", "orig_id": 1407971}}, {"model": "metainfo.source", "pk": 4925, "fields": {"orig_filename": "Sandor-Szlavnicza_Moric_1805_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 45, 1988), S. 412f.", "author": "", "orig_id": 1407972}}, {"model": "metainfo.source", "pk": 4926, "fields": {"orig_filename": "Rumpler_Edmund_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325f.", "author": "", "orig_id": 1407830}}, {"model": "metainfo.source", "pk": 4927, "fields": {"orig_filename": "Rumpler_Franz_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 326f.", "author": "", "orig_id": 1407831}}, {"model": "metainfo.source", "pk": 4928, "fields": {"orig_filename": "Rumy_Karl-Georg_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327f.", "author": "", "orig_id": 1407833}}, {"model": "metainfo.source", "pk": 4929, "fields": {"orig_filename": "Rungaldier_Ignaz_1799_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328", "author": "", "orig_id": 1407834}}, {"model": "metainfo.source", "pk": 4930, "fields": {"orig_filename": "Runk_Franz-Ferdinand_1764_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328", "author": "", "orig_id": 1407835}}, {"model": "metainfo.source", "pk": 4931, "fields": {"orig_filename": "Rupertsberger_Matthias_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 328f.", "author": "", "orig_id": 1407836}}, {"model": "metainfo.source", "pk": 4932, "fields": {"orig_filename": "Rupnik_Carlo-Vigilio_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329", "author": "", "orig_id": 1407837}}, {"model": "metainfo.source", "pk": 4933, "fields": {"orig_filename": "Rupp-Nyilhegy_Jakab_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329f.", "author": "", "orig_id": 1407839}}, {"model": "metainfo.source", "pk": 4934, "fields": {"orig_filename": "Ruppeldt_Milos_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330", "author": "", "orig_id": 1407840}}, {"model": "metainfo.source", "pk": 4935, "fields": {"orig_filename": "Ruppert_Karl_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330", "author": "", "orig_id": 1407841}}, {"model": "metainfo.source", "pk": 4936, "fields": {"orig_filename": "Rupprecht_Johann-Bapt_1776_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 330f.", "author": "", "orig_id": 1407842}}, {"model": "metainfo.source", "pk": 4937, "fields": {"orig_filename": "Rupp_Mathilde_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 329", "author": "", "orig_id": 1407838}}, {"model": "metainfo.source", "pk": 4938, "fields": {"orig_filename": "Rusca_Marco_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331", "author": "", "orig_id": 1407844}}, {"model": "metainfo.source", "pk": 4939, "fields": {"orig_filename": "Ruschka_Franz_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331f.", "author": "", "orig_id": 1407845}}, {"model": "metainfo.source", "pk": 4940, "fields": {"orig_filename": "Rusjan_Edvard_1886_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 332", "author": "", "orig_id": 1407846}}, {"model": "metainfo.source", "pk": 4941, "fields": {"orig_filename": "Russegger_Josef_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 334f.", "author": "", "orig_id": 1407851}}, {"model": "metainfo.source", "pk": 4942, "fields": {"orig_filename": "Russ_Karl_1779_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 332f.", "author": "", "orig_id": 1407847}}, {"model": "metainfo.source", "pk": 4943, "fields": {"orig_filename": "Russ_Leander_1809_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 333", "author": "", "orig_id": 1407848}}, {"model": "metainfo.source", "pk": 4944, "fields": {"orig_filename": "Russ_Robert_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 333f.", "author": "", "orig_id": 1407849}}, {"model": "metainfo.source", "pk": 4945, "fields": {"orig_filename": "Russ_Viktor-Wilhelm_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 334", "author": "", "orig_id": 1407850}}, {"model": "metainfo.source", "pk": 4946, "fields": {"orig_filename": "Ruston_Joseph-John-I_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 336", "author": "", "orig_id": 1407854}}, {"model": "metainfo.source", "pk": 4947, "fields": {"orig_filename": "Rust_Johann-Heinrich_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 335f.", "author": "", "orig_id": 1407853}}, {"model": "metainfo.source", "pk": 4948, "fields": {"orig_filename": "Rust_Johann-Nep_1775_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 335", "author": "", "orig_id": 1407852}}, {"model": "metainfo.source", "pk": 4949, "fields": {"orig_filename": "Ruszkowska_Helena_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 336f.", "author": "", "orig_id": 1407855}}, {"model": "metainfo.source", "pk": 4950, "fields": {"orig_filename": "Rus_Joze_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 331", "author": "", "orig_id": 1407843}}, {"model": "metainfo.source", "pk": 4951, "fields": {"orig_filename": "Rutar_Simon_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337", "author": "", "orig_id": 1407856}}, {"model": "metainfo.source", "pk": 4952, "fields": {"orig_filename": "Rutha_Heinrich_1897_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337", "author": "", "orig_id": 1407857}}, {"model": "metainfo.source", "pk": 4953, "fields": {"orig_filename": "Ruthner_Anton_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 337f.", "author": "", "orig_id": 1407858}}, {"model": "metainfo.source", "pk": 4954, "fields": {"orig_filename": "Rutkowski_Maksymilian_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 338", "author": "", "orig_id": 1407859}}, {"model": "metainfo.source", "pk": 4955, "fields": {"orig_filename": "Rutowski_Tadeusz_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 338f.", "author": "", "orig_id": 1407860}}, {"model": "metainfo.source", "pk": 4956, "fields": {"orig_filename": "Rutra_Arthur-Ernst_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 339", "author": "", "orig_id": 1407861}}, {"model": "metainfo.source", "pk": 4957, "fields": {"orig_filename": "Ruttenstein_Konstanze_1835_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 339f.", "author": "", "orig_id": 1407862}}, {"model": "metainfo.source", "pk": 4958, "fields": {"orig_filename": "Ruttenstock_Jakob_1776_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 340", "author": "", "orig_id": 1407863}}, {"model": "metainfo.source", "pk": 4959, "fields": {"orig_filename": "Ruttin_Erich_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 340f.", "author": "", "orig_id": 1407864}}, {"model": "metainfo.source", "pk": 4960, "fields": {"orig_filename": "Rutzky-Brennau_Andreas_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341", "author": "", "orig_id": 1407866}}, {"model": "metainfo.source", "pk": 4961, "fields": {"orig_filename": "Rutz_Benno_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341", "author": "", "orig_id": 1407865}}, {"model": "metainfo.source", "pk": 4962, "fields": {"orig_filename": "Ruvarac_Dimitrije_1842_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 341f.", "author": "", "orig_id": 1407867}}, {"model": "metainfo.source", "pk": 4963, "fields": {"orig_filename": "Ruvarac_Ilarion_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342", "author": "", "orig_id": 1407868}}, {"model": "metainfo.source", "pk": 4964, "fields": {"orig_filename": "Ruzicka-Strozzi_Marija_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 345", "author": "", "orig_id": 1407712}}, {"model": "metainfo.source", "pk": 4965, "fields": {"orig_filename": "Ruzicka_Alois_1849_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342", "author": "", "orig_id": 1407869}}, {"model": "metainfo.source", "pk": 4966, "fields": {"orig_filename": "Ruzicka_Apollo_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 342f.", "author": "", "orig_id": 1407870}}, {"model": "metainfo.source", "pk": 4967, "fields": {"orig_filename": "Ruzicka_Jan_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407871}}, {"model": "metainfo.source", "pk": 4968, "fields": {"orig_filename": "Ruzicka_Josef_1808_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407872}}, {"model": "metainfo.source", "pk": 4969, "fields": {"orig_filename": "Ruzicka_Leon_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343", "author": "", "orig_id": 1407708}}, {"model": "metainfo.source", "pk": 4970, "fields": {"orig_filename": "Ruzicka_Pavel-Miroslav_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 343f.", "author": "", "orig_id": 1407709}}, {"model": "metainfo.source", "pk": 4971, "fields": {"orig_filename": "Ruzicka_Vladislav_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 344", "author": "", "orig_id": 1407710}}, {"model": "metainfo.source", "pk": 4972, "fields": {"orig_filename": "Ruzicka_Wenzel_1757_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 344f.", "author": "", "orig_id": 1407711}}, {"model": "metainfo.source", "pk": 4973, "fields": {"orig_filename": "Ruziewicz_Stanislaw_1889_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 345", "author": "", "orig_id": 1407713}}, {"model": "metainfo.source", "pk": 4974, "fields": {"orig_filename": "Ruzitska_Gyoergy_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346", "author": "", "orig_id": 1407714}}, {"model": "metainfo.source", "pk": 4975, "fields": {"orig_filename": "Rybak_Otakar_1886_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347", "author": "", "orig_id": 1407718}}, {"model": "metainfo.source", "pk": 4976, "fields": {"orig_filename": "Rybarski_Roman_1887_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348", "author": "", "orig_id": 1407720}}, {"model": "metainfo.source", "pk": 4977, "fields": {"orig_filename": "Rybar_Otokar_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347f.", "author": "", "orig_id": 1407719}}, {"model": "metainfo.source", "pk": 4978, "fields": {"orig_filename": "Ryba_Jakub-Jan_1765_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346", "author": "", "orig_id": 1407715}}, {"model": "metainfo.source", "pk": 4979, "fields": {"orig_filename": "Ryba_Josef-Jakub_1795_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 346f.", "author": "", "orig_id": 1407716}}, {"model": "metainfo.source", "pk": 4980, "fields": {"orig_filename": "Ryba_Vilem_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 347", "author": "", "orig_id": 1407717}}, {"model": "metainfo.source", "pk": 4981, "fields": {"orig_filename": "Rybczynski_Mieczyslaw_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348", "author": "", "orig_id": 1407721}}, {"model": "metainfo.source", "pk": 4982, "fields": {"orig_filename": "Rybicka_Antonin-Frantisek_1812_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 348f.", "author": "", "orig_id": 1407722}}, {"model": "metainfo.source", "pk": 4983, "fields": {"orig_filename": "Rychnovsky_Ernst_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 349", "author": "", "orig_id": 1407723}}, {"model": "metainfo.source", "pk": 4984, "fields": {"orig_filename": "Rychter_Jozef_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350", "author": "", "orig_id": 1407724}}, {"model": "metainfo.source", "pk": 4985, "fields": {"orig_filename": "Rychtrmoc_Robert_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350", "author": "", "orig_id": 1407725}}, {"model": "metainfo.source", "pk": 4986, "fields": {"orig_filename": "Rydel_Lucjan-Antoni_1870_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 351", "author": "", "orig_id": 1407727}}, {"model": "metainfo.source", "pk": 4987, "fields": {"orig_filename": "Rydel_Lucjan_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 350f.", "author": "", "orig_id": 1407726}}, {"model": "metainfo.source", "pk": 4988, "fields": {"orig_filename": "Rydygier_Ludwik_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 351f.", "author": "", "orig_id": 1407728}}, {"model": "metainfo.source", "pk": 4989, "fields": {"orig_filename": "Rydz_Edward_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352", "author": "", "orig_id": 1407729}}, {"model": "metainfo.source", "pk": 4990, "fields": {"orig_filename": "Rytir_Jaroslav_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352", "author": "", "orig_id": 1407777}}, {"model": "metainfo.source", "pk": 4991, "fields": {"orig_filename": "Ryzner_Cenek_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 352f.", "author": "", "orig_id": 1407778}}, {"model": "metainfo.source", "pk": 4992, "fields": {"orig_filename": "Rzach_Alois_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 353", "author": "", "orig_id": 1407779}}, {"model": "metainfo.source", "pk": 4993, "fields": {"orig_filename": "Rzehaczek_Karl_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 353f.", "author": "", "orig_id": 1407780}}, {"model": "metainfo.source", "pk": 4994, "fields": {"orig_filename": "Rzehak_Anton_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 354", "author": "", "orig_id": 1407781}}, {"model": "metainfo.source", "pk": 4995, "fields": {"orig_filename": "Rzehak_Emil_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 354f.", "author": "", "orig_id": 1407782}}, {"model": "metainfo.source", "pk": 4996, "fields": {"orig_filename": "Rzepinski_Stanislaw_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355", "author": "", "orig_id": 1407783}}, {"model": "metainfo.source", "pk": 4997, "fields": {"orig_filename": "Rzesacz_Ernst_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355", "author": "", "orig_id": 1407784}}, {"model": "metainfo.source", "pk": 4998, "fields": {"orig_filename": "Rzesinski_Jan-Kanty_1803_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 355f.", "author": "", "orig_id": 1407785}}, {"model": "metainfo.source", "pk": 4999, "fields": {"orig_filename": "Rzewuski_Leon_1808_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 356", "author": "", "orig_id": 1407786}}, {"model": "metainfo.source", "pk": 5000, "fields": {"orig_filename": "Rzewuski_Walery_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 356f.", "author": "", "orig_id": 1407787}}, {"model": "metainfo.source", "pk": 5001, "fields": {"orig_filename": "Rziha_Franz_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 357", "author": "", "orig_id": 1407788}}, {"model": "metainfo.source", "pk": 5002, "fields": {"orig_filename": "Saal_Ignaz_1761_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 357", "author": "", "orig_id": 1407789}}, {"model": "metainfo.source", "pk": 5003, "fields": {"orig_filename": "Saar_Ferdinand_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 358f.", "author": "", "orig_id": 1407790}}, {"model": "metainfo.source", "pk": 5004, "fields": {"orig_filename": "Saar_Guenther_1878_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 359", "author": "", "orig_id": 1407791}}, {"model": "metainfo.source", "pk": 5005, "fields": {"orig_filename": "Saar_Karl_1797_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 359f.", "author": "", "orig_id": 1407792}}, {"model": "metainfo.source", "pk": 5006, "fields": {"orig_filename": "Sabala-Krzeptowski_Jan_1809_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360", "author": "", "orig_id": 1407793}}, {"model": "metainfo.source", "pk": 5007, "fields": {"orig_filename": "Sabalich_Giuseppe_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360", "author": "", "orig_id": 1407794}}, {"model": "metainfo.source", "pk": 5008, "fields": {"orig_filename": "Sabathil_Rudolf_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 360f.", "author": "", "orig_id": 1407795}}, {"model": "metainfo.source", "pk": 5009, "fields": {"orig_filename": "Sabic_Marin_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361", "author": "", "orig_id": 1407796}}, {"model": "metainfo.source", "pk": 5010, "fields": {"orig_filename": "Sabidussi_Hans_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361", "author": "", "orig_id": 1407797}}, {"model": "metainfo.source", "pk": 5011, "fields": {"orig_filename": "Sabina_Karel_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 361f.", "author": "", "orig_id": 1407799}}, {"model": "metainfo.source", "pk": 5012, "fields": {"orig_filename": "Sablatnig_Josef_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 362", "author": "", "orig_id": 1407800}}, {"model": "metainfo.source", "pk": 5013, "fields": {"orig_filename": "Sablik_Franz_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 362f.", "author": "", "orig_id": 1407801}}, {"model": "metainfo.source", "pk": 5014, "fields": {"orig_filename": "Sabljar_Mijat_1790_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 363", "author": "", "orig_id": 1407802}}, {"model": "metainfo.source", "pk": 5015, "fields": {"orig_filename": "Sabowski_Wladyslaw_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 363f.", "author": "", "orig_id": 1407803}}, {"model": "metainfo.source", "pk": 5016, "fields": {"orig_filename": "Sabransky_Heinrich_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 364", "author": "", "orig_id": 1407804}}, {"model": "metainfo.source", "pk": 5017, "fields": {"orig_filename": "Saccardo_Pier-Andrea_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 364f.", "author": "", "orig_id": 1407805}}, {"model": "metainfo.source", "pk": 5018, "fields": {"orig_filename": "Sacchetti_Antonio_1790_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 365", "author": "", "orig_id": 1407806}}, {"model": "metainfo.source", "pk": 5019, "fields": {"orig_filename": "Sacchetti_Lorenzo_1759_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 365f.", "author": "", "orig_id": 1407807}}, {"model": "metainfo.source", "pk": 5020, "fields": {"orig_filename": "Sacher-Masoch_Leopold_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367ff.", "author": "", "orig_id": 1407813}}, {"model": "metainfo.source", "pk": 5021, "fields": {"orig_filename": "Sacher-Masoch_Wanda_1845_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1442024}}, {"model": "metainfo.source", "pk": 5022, "fields": {"orig_filename": "Sacher_Anna_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366", "author": "", "orig_id": 1407808}}, {"model": "metainfo.source", "pk": 5023, "fields": {"orig_filename": "Sacher_Eduard_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366", "author": "", "orig_id": 1407809}}, {"model": "metainfo.source", "pk": 5024, "fields": {"orig_filename": "Sacher_Eduard_1843_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 366f.", "author": "", "orig_id": 1407810}}, {"model": "metainfo.source", "pk": 5025, "fields": {"orig_filename": "Sacher_Emanuel_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367", "author": "", "orig_id": 1407811}}, {"model": "metainfo.source", "pk": 5026, "fields": {"orig_filename": "Sacher_Franz_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 367", "author": "", "orig_id": 1407812}}, {"model": "metainfo.source", "pk": 5027, "fields": {"orig_filename": "Sachsalber_Adolf_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369", "author": "", "orig_id": 1407816}}, {"model": "metainfo.source", "pk": 5028, "fields": {"orig_filename": "Sachse-Hofmeister_Anna_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 369f.", "author": "", "orig_id": 1407817}}, {"model": "metainfo.source", "pk": 5029, "fields": {"orig_filename": "Roth_Imrich-Emanuel_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277", "author": "", "orig_id": 1407637}}, {"model": "metainfo.source", "pk": 5030, "fields": {"orig_filename": "Roth_Johann-Bapt_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277", "author": "", "orig_id": 1407638}}, {"model": "metainfo.source", "pk": 5031, "fields": {"orig_filename": "Roth_Johann_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 277f.", "author": "", "orig_id": 1407639}}, {"model": "metainfo.source", "pk": 5032, "fields": {"orig_filename": "Roth_Josef_1894_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 278f.", "author": "", "orig_id": 1407640}}, {"model": "metainfo.source", "pk": 5033, "fields": {"orig_filename": "Roth_Julius_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 279", "author": "", "orig_id": 1407641}}, {"model": "metainfo.source", "pk": 5034, "fields": {"orig_filename": "Roth_Louis_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 279f.", "author": "", "orig_id": 1407642}}, {"model": "metainfo.source", "pk": 5035, "fields": {"orig_filename": "Roth_Martin_1841_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280", "author": "", "orig_id": 1407643}}, {"model": "metainfo.source", "pk": 5036, "fields": {"orig_filename": "Roth_Richard-Karl_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280", "author": "", "orig_id": 1407644}}, {"model": "metainfo.source", "pk": 5037, "fields": {"orig_filename": "Roth_Samuel-Lajos_1851_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 280f.", "author": "", "orig_id": 1407645}}, {"model": "metainfo.source", "pk": 5038, "fields": {"orig_filename": "Roth_Stefan-Ludwig_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 281f.", "author": "", "orig_id": 1407646}}, {"model": "metainfo.source", "pk": 5039, "fields": {"orig_filename": "Roth_Viktor_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 282", "author": "", "orig_id": 1407647}}, {"model": "metainfo.source", "pk": 5040, "fields": {"orig_filename": "Rotky_Karl_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291", "author": "", "orig_id": 1407669}}, {"model": "metainfo.source", "pk": 5041, "fields": {"orig_filename": "Rottauscher-Malata_Alfred_1888_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292f.", "author": "", "orig_id": 1407675}}, {"model": "metainfo.source", "pk": 5042, "fields": {"orig_filename": "Rottauscher-Malata_Karl_1812_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293", "author": "", "orig_id": 1407676}}, {"model": "metainfo.source", "pk": 5043, "fields": {"orig_filename": "Rottauscher-Malata_Maximilian_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293", "author": "", "orig_id": 1407677}}, {"model": "metainfo.source", "pk": 5044, "fields": {"orig_filename": "Rotta_Antonio_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292", "author": "", "orig_id": 1407674}}, {"model": "metainfo.source", "pk": 5045, "fields": {"orig_filename": "Rottenberger_Friedrich-Leo_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294", "author": "", "orig_id": 1407679}}, {"model": "metainfo.source", "pk": 5046, "fields": {"orig_filename": "Rottenberger_Josef_1760_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294", "author": "", "orig_id": 1407680}}, {"model": "metainfo.source", "pk": 5047, "fields": {"orig_filename": "Rottenberg_Ludwig_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 293f.", "author": "", "orig_id": 1407678}}, {"model": "metainfo.source", "pk": 5048, "fields": {"orig_filename": "Rotter_Ferdinand-Amand_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 294f.", "author": "", "orig_id": 1407681}}, {"model": "metainfo.source", "pk": 5049, "fields": {"orig_filename": "Rotter_Frantisek_1831_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295", "author": "", "orig_id": 1407682}}, {"model": "metainfo.source", "pk": 5050, "fields": {"orig_filename": "Rotter_Johann-Nep_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295", "author": "", "orig_id": 1407683}}, {"model": "metainfo.source", "pk": 5051, "fields": {"orig_filename": "Rotter_Kurt_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296", "author": "", "orig_id": 1407685}}, {"model": "metainfo.source", "pk": 5052, "fields": {"orig_filename": "Rotter_Ludwig_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296", "author": "", "orig_id": 1407686}}, {"model": "metainfo.source", "pk": 5053, "fields": {"orig_filename": "Rottini_Gabriele_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 296f.", "author": "", "orig_id": 1407687}}, {"model": "metainfo.source", "pk": 5054, "fields": {"orig_filename": "Rottler_Berthold_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297", "author": "", "orig_id": 1407688}}, {"model": "metainfo.source", "pk": 5055, "fields": {"orig_filename": "Rottleuthner_Wilhelm-Johann_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297", "author": "", "orig_id": 1407689}}, {"model": "metainfo.source", "pk": 5056, "fields": {"orig_filename": "Rottonara_Franz-Angelo_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 297f.", "author": "", "orig_id": 1407690}}, {"model": "metainfo.source", "pk": 5057, "fields": {"orig_filename": "Rott_Hans_1858_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291f.", "author": "", "orig_id": 1407670}}, {"model": "metainfo.source", "pk": 5058, "fields": {"orig_filename": "Rott_Vincenc-Josef_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 292", "author": "", "orig_id": 1407673}}, {"model": "metainfo.source", "pk": 5059, "fields": {"orig_filename": "Rouschal_Ernst_1911_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 298", "author": "", "orig_id": 1407691}}, {"model": "metainfo.source", "pk": 5060, "fields": {"orig_filename": "Rovani_Giuseppe_1818_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 298f.", "author": "", "orig_id": 1407692}}, {"model": "metainfo.source", "pk": 5061, "fields": {"orig_filename": "Rovelli_Pietro_1793_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299", "author": "", "orig_id": 1407693}}, {"model": "metainfo.source", "pk": 5062, "fields": {"orig_filename": "Rovnianek_Peter-Vitazoslav_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299", "author": "", "orig_id": 1407694}}, {"model": "metainfo.source", "pk": 5063, "fields": {"orig_filename": "Rowid_Henryk_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 299f.", "author": "", "orig_id": 1407695}}, {"model": "metainfo.source", "pk": 5064, "fields": {"orig_filename": "Rowland_Wilhelm_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 300", "author": "", "orig_id": 1407696}}, {"model": "metainfo.source", "pk": 5065, "fields": {"orig_filename": "Royt_Vaclav_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 301", "author": "", "orig_id": 1407698}}, {"model": "metainfo.source", "pk": 5066, "fields": {"orig_filename": "Roy_Vladimir_1885_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 300f.", "author": "", "orig_id": 1407697}}, {"model": "metainfo.source", "pk": 5067, "fields": {"orig_filename": "Rozek_Karel_1876_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 301f.", "author": "", "orig_id": 1407699}}, {"model": "metainfo.source", "pk": 5068, "fields": {"orig_filename": "Rozenits_Demetrius_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407700}}, {"model": "metainfo.source", "pk": 5069, "fields": {"orig_filename": "Rozenits_Lukas_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407701}}, {"model": "metainfo.source", "pk": 5070, "fields": {"orig_filename": "Rozic_Antun_1787_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302", "author": "", "orig_id": 1407702}}, {"model": "metainfo.source", "pk": 5071, "fields": {"orig_filename": "Rozic_Valentin_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 302f.", "author": "", "orig_id": 1407703}}, {"model": "metainfo.source", "pk": 5072, "fields": {"orig_filename": "Rozic_Vatroslav_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303", "author": "", "orig_id": 1407704}}, {"model": "metainfo.source", "pk": 5073, "fields": {"orig_filename": "Rozkosny_Jan_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303", "author": "", "orig_id": 1407705}}, {"model": "metainfo.source", "pk": 5074, "fields": {"orig_filename": "Rozman_Jozef_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 303f.", "author": "", "orig_id": 1407706}}, {"model": "metainfo.source", "pk": 5075, "fields": {"orig_filename": "Roznay_Samuel_1787_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304", "author": "", "orig_id": 1407707}}, {"model": "metainfo.source", "pk": 5076, "fields": {"orig_filename": "Rozsavoelgyi_Mark_1789_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304f.", "author": "", "orig_id": 1407514}}, {"model": "metainfo.source", "pk": 5077, "fields": {"orig_filename": "Rozsay-Murakoez_Jozsef_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305", "author": "", "orig_id": 1407515}}, {"model": "metainfo.source", "pk": 5078, "fields": {"orig_filename": "Rozsa_Sandor_1813_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 304", "author": "", "orig_id": 1407513}}, {"model": "metainfo.source", "pk": 5079, "fields": {"orig_filename": "Rozvoda_Jaroslav_1869_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305", "author": "", "orig_id": 1407517}}, {"model": "metainfo.source", "pk": 5080, "fields": {"orig_filename": "Rozwadowski_Jan-Michal_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 305f.", "author": "", "orig_id": 1407518}}, {"model": "metainfo.source", "pk": 5081, "fields": {"orig_filename": "Ruard_Leopold_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 306", "author": "", "orig_id": 1407519}}, {"model": "metainfo.source", "pk": 5082, "fields": {"orig_filename": "Ruault-Frappart_Louis_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 306f.", "author": "", "orig_id": 1407520}}, {"model": "metainfo.source", "pk": 5083, "fields": {"orig_filename": "Rubczynski_Witold_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 307", "author": "", "orig_id": 1407521}}, {"model": "metainfo.source", "pk": 5084, "fields": {"orig_filename": "Rubelli-Sturmfest_Ludwig_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 307f.", "author": "", "orig_id": 1407522}}, {"model": "metainfo.source", "pk": 5085, "fields": {"orig_filename": "Ruben_Christian_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308", "author": "", "orig_id": 1407523}}, {"model": "metainfo.source", "pk": 5086, "fields": {"orig_filename": "Ruben_Franz-Leo_1842_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308", "author": "", "orig_id": 1407524}}, {"model": "metainfo.source", "pk": 5087, "fields": {"orig_filename": "Ruber_Ignaz_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 308f.", "author": "", "orig_id": 1407525}}, {"model": "metainfo.source", "pk": 5088, "fields": {"orig_filename": "Rubes_Frantisek-Jaromir_1814_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 309", "author": "", "orig_id": 1407526}}, {"model": "metainfo.source", "pk": 5089, "fields": {"orig_filename": "Rubinstein_Siegmund_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310f.", "author": "", "orig_id": 1407529}}, {"model": "metainfo.source", "pk": 5090, "fields": {"orig_filename": "Rubin_David_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 309f.", "author": "", "orig_id": 1407527}}, {"model": "metainfo.source", "pk": 5091, "fields": {"orig_filename": "Rubin_Salomon_1823_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310", "author": "", "orig_id": 1407528}}, {"model": "metainfo.source", "pk": 5092, "fields": {"orig_filename": "Rubritius_Hans_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 310f.", "author": "", "orig_id": 1407530}}, {"model": "metainfo.source", "pk": 5093, "fields": {"orig_filename": "Ruchinger_Giuseppe_1761_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407531}}, {"model": "metainfo.source", "pk": 5094, "fields": {"orig_filename": "Ruchinger_Giuseppe_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407532}}, {"model": "metainfo.source", "pk": 5095, "fields": {"orig_filename": "Rudas_Geroe_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311f.", "author": "", "orig_id": 1407534}}, {"model": "metainfo.source", "pk": 5096, "fields": {"orig_filename": "Ruda_Prokop_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 311", "author": "", "orig_id": 1407533}}, {"model": "metainfo.source", "pk": 5097, "fields": {"orig_filename": "Rudczinsky_Karl_1751_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 312", "author": "", "orig_id": 1407535}}, {"model": "metainfo.source", "pk": 5098, "fields": {"orig_filename": "Rudel_Olga_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 312f.", "author": "", "orig_id": 1407536}}, {"model": "metainfo.source", "pk": 5099, "fields": {"orig_filename": "Rudigier_Franz-Josef_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 313f.", "author": "", "orig_id": 1407537}}, {"model": "metainfo.source", "pk": 5100, "fields": {"orig_filename": "Rudmas_Simon_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 314", "author": "", "orig_id": 1407538}}, {"model": "metainfo.source", "pk": 5101, "fields": {"orig_filename": "Rudnay-Rudna-Divekujfalu_Alexander_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 314f.", "author": "", "orig_id": 1407539}}, {"model": "metainfo.source", "pk": 5102, "fields": {"orig_filename": "Rudolf_Alfred_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 315", "author": "", "orig_id": 1407540}}, {"model": "metainfo.source", "pk": 5103, "fields": {"orig_filename": "Rudolf_Franz-Karl-Josef_1858_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 315f.", "author": "", "orig_id": 1407541}}, {"model": "metainfo.source", "pk": 5104, "fields": {"orig_filename": "Rudolf_Johann-Josef-Rainer_1788_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 316f.", "author": "", "orig_id": 1407542}}, {"model": "metainfo.source", "pk": 5105, "fields": {"orig_filename": "Rudolph_Karl_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407543}}, {"model": "metainfo.source", "pk": 5106, "fields": {"orig_filename": "Rudorfer_Franz_1897_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407544}}, {"model": "metainfo.source", "pk": 5107, "fields": {"orig_filename": "Rudovsky_Josef_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317", "author": "", "orig_id": 1407545}}, {"model": "metainfo.source", "pk": 5108, "fields": {"orig_filename": "Rudroff_Andreas_1744_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 317f.", "author": "", "orig_id": 1407546}}, {"model": "metainfo.source", "pk": 5109, "fields": {"orig_filename": "Rudtorffer_Franz-X_1760_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 318", "author": "", "orig_id": 1409582}}, {"model": "metainfo.source", "pk": 5110, "fields": {"orig_filename": "Rudzki_Maurycy-Pius_1862_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 318f.", "author": "", "orig_id": 1409583}}, {"model": "metainfo.source", "pk": 5111, "fields": {"orig_filename": "Rueckauf_Anton_1855_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319", "author": "", "orig_id": 1409584}}, {"model": "metainfo.source", "pk": 5112, "fields": {"orig_filename": "Rueckl_Engelbert_1888_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319", "author": "", "orig_id": 1409585}}, {"model": "metainfo.source", "pk": 5113, "fields": {"orig_filename": "Rueffer_Eduard_1835_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407547}}, {"model": "metainfo.source", "pk": 5114, "fields": {"orig_filename": "Rueff_Johann_1806_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 319f.", "author": "", "orig_id": 1409586}}, {"model": "metainfo.source", "pk": 5115, "fields": {"orig_filename": "Ruesch_Josef-Ignaz_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407548}}, {"model": "metainfo.source", "pk": 5116, "fields": {"orig_filename": "Ruesch_Josef-Ignaz_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 320", "author": "", "orig_id": 1407549}}, {"model": "metainfo.source", "pk": 5117, "fields": {"orig_filename": "Ruesch_Karl-Alfred_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407550}}, {"model": "metainfo.source", "pk": 5118, "fields": {"orig_filename": "Ruetgers_Guido_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407551}}, {"model": "metainfo.source", "pk": 5119, "fields": {"orig_filename": "Rufeisen_Josef_1887_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321f.", "author": "", "orig_id": 1407553}}, {"model": "metainfo.source", "pk": 5120, "fields": {"orig_filename": "Ruffini_Giovanni-Batt_1821_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322", "author": "", "orig_id": 1407554}}, {"model": "metainfo.source", "pk": 5121, "fields": {"orig_filename": "Rufinatscha_Johann_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322", "author": "", "orig_id": 1407555}}, {"model": "metainfo.source", "pk": 5122, "fields": {"orig_filename": "Ruf_Sebastian_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 321", "author": "", "orig_id": 1407552}}, {"model": "metainfo.source", "pk": 5123, "fields": {"orig_filename": "Ruge_Klara-Ottilie_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 322f.", "author": "", "orig_id": 1407556}}, {"model": "metainfo.source", "pk": 5124, "fields": {"orig_filename": "Ruggera_Kamillo_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 323", "author": "", "orig_id": 1407557}}, {"model": "metainfo.source", "pk": 5125, "fields": {"orig_filename": "Ruhmann_Adolf_1832_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 323f.", "author": "", "orig_id": 1407558}}, {"model": "metainfo.source", "pk": 5126, "fields": {"orig_filename": "Rukavina_Fridrik_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407559}}, {"model": "metainfo.source", "pk": 5127, "fields": {"orig_filename": "Rulikowski-Poradow_Ludwik_1784_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407560}}, {"model": "metainfo.source", "pk": 5128, "fields": {"orig_filename": "Rumann_Jan_1876_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324", "author": "", "orig_id": 1407825}}, {"model": "metainfo.source", "pk": 5129, "fields": {"orig_filename": "Rumbold_Karl_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 324f.", "author": "", "orig_id": 1407826}}, {"model": "metainfo.source", "pk": 5130, "fields": {"orig_filename": "Rummelhardt_Karl_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325", "author": "", "orig_id": 1407827}}, {"model": "metainfo.source", "pk": 5131, "fields": {"orig_filename": "Rumpelmayer_Viktor_1830_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 325", "author": "", "orig_id": 1407829}}, {"model": "metainfo.source", "pk": 5132, "fields": {"orig_filename": "Rosegger_Sepp_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 246f.", "author": "", "orig_id": 1407413}}, {"model": "metainfo.source", "pk": 5133, "fields": {"orig_filename": "Rosenbaum_Alfred_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 248", "author": "", "orig_id": 1407562}}, {"model": "metainfo.source", "pk": 5134, "fields": {"orig_filename": "Rosenbaum_Josef-Karl_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 248f.", "author": "", "orig_id": 1407563}}, {"model": "metainfo.source", "pk": 5135, "fields": {"orig_filename": "Rosenbaum_Kory-Elisabeth_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249", "author": "", "orig_id": 1407564}}, {"model": "metainfo.source", "pk": 5136, "fields": {"orig_filename": "Rosenbaum_Moses-Chaim-Litcs_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249", "author": "", "orig_id": 1407565}}, {"model": "metainfo.source", "pk": 5137, "fields": {"orig_filename": "Rosenbaum_Richard_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 249f.", "author": "", "orig_id": 1407566}}, {"model": "metainfo.source", "pk": 5138, "fields": {"orig_filename": "Rosenbaum_Sigmund_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 250", "author": "", "orig_id": 1407567}}, {"model": "metainfo.source", "pk": 5139, "fields": {"orig_filename": "Rosenbaum_Therese_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 250f.", "author": "", "orig_id": 1407568}}, {"model": "metainfo.source", "pk": 5140, "fields": {"orig_filename": "Rosenberg_Karl_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251", "author": "", "orig_id": 1407569}}, {"model": "metainfo.source", "pk": 5141, "fields": {"orig_filename": "Rosenberg_Moritz_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251", "author": "", "orig_id": 1407570}}, {"model": "metainfo.source", "pk": 5142, "fields": {"orig_filename": "Rosenberg_Samuel_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 251f.", "author": "", "orig_id": 1407571}}, {"model": "metainfo.source", "pk": 5143, "fields": {"orig_filename": "Rosenblatt_Alfred_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252", "author": "", "orig_id": 1407572}}, {"model": "metainfo.source", "pk": 5144, "fields": {"orig_filename": "Rosenegger_Josef_1767_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252", "author": "", "orig_id": 1407573}}, {"model": "metainfo.source", "pk": 5145, "fields": {"orig_filename": "Rosenfeld_Maurice_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 252f.", "author": "", "orig_id": 1407575}}, {"model": "metainfo.source", "pk": 5146, "fields": {"orig_filename": "Rosenfeld_Viktor_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407576}}, {"model": "metainfo.source", "pk": 5147, "fields": {"orig_filename": "Rosenkranz_Wenzel-Josef_1797_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407577}}, {"model": "metainfo.source", "pk": 5148, "fields": {"orig_filename": "Rosenthal_Felix_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253", "author": "", "orig_id": 1407578}}, {"model": "metainfo.source", "pk": 5149, "fields": {"orig_filename": "Rosenthal_Friedrich_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 253f.", "author": "", "orig_id": 1407579}}, {"model": "metainfo.source", "pk": 5150, "fields": {"orig_filename": "Rosenthal_Moriz_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 254", "author": "", "orig_id": 1407580}}, {"model": "metainfo.source", "pk": 5151, "fields": {"orig_filename": "Rosenthal_Moriz_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 254f.", "author": "", "orig_id": 1407581}}, {"model": "metainfo.source", "pk": 5152, "fields": {"orig_filename": "Rosenthal_Philipp_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 255", "author": "", "orig_id": 1407582}}, {"model": "metainfo.source", "pk": 5153, "fields": {"orig_filename": "Rosenzweig-Schwannau_Vinzenz_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 255f.", "author": "", "orig_id": 1407584}}, {"model": "metainfo.source", "pk": 5154, "fields": {"orig_filename": "Rosen_Julius_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 247", "author": "", "orig_id": 1407414}}, {"model": "metainfo.source", "pk": 5155, "fields": {"orig_filename": "Roser_Franz-De-P_1779_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256", "author": "", "orig_id": 1407585}}, {"model": "metainfo.source", "pk": 5156, "fields": {"orig_filename": "Roser_Franz-Moritz_1818_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256", "author": "", "orig_id": 1407586}}, {"model": "metainfo.source", "pk": 5157, "fields": {"orig_filename": "Roser_Magdalena_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 256f.", "author": "", "orig_id": 1407587}}, {"model": "metainfo.source", "pk": 5158, "fields": {"orig_filename": "Rose_Arnold-Josef_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 243f.", "author": "", "orig_id": 1407407}}, {"model": "metainfo.source", "pk": 5159, "fields": {"orig_filename": "Rose_Eduard_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244", "author": "", "orig_id": 1407408}}, {"model": "metainfo.source", "pk": 5160, "fields": {"orig_filename": "Rose_Giovanni-Luigi_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244", "author": "", "orig_id": 1407409}}, {"model": "metainfo.source", "pk": 5161, "fields": {"orig_filename": "Rose_Maksymilian_1883_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 244f.", "author": "", "orig_id": 1407410}}, {"model": "metainfo.source", "pk": 5162, "fields": {"orig_filename": "Rosiwal_August_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 257", "author": "", "orig_id": 1407588}}, {"model": "metainfo.source", "pk": 5163, "fields": {"orig_filename": "Roskiewicz_Johann_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 257", "author": "", "orig_id": 1407589}}, {"model": "metainfo.source", "pk": 5164, "fields": {"orig_filename": "Roskoff_Georg-Gustav_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258", "author": "", "orig_id": 1407590}}, {"model": "metainfo.source", "pk": 5165, "fields": {"orig_filename": "Roskot_Jan-Krtitel_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258", "author": "", "orig_id": 1407591}}, {"model": "metainfo.source", "pk": 5166, "fields": {"orig_filename": "Roskovanyi-Roskovany_Agoston_1807_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 258f.", "author": "", "orig_id": 1407592}}, {"model": "metainfo.source", "pk": 5167, "fields": {"orig_filename": "Rosner_Aleksander_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260", "author": "", "orig_id": 1407595}}, {"model": "metainfo.source", "pk": 5168, "fields": {"orig_filename": "Rosner_Antoni_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260", "author": "", "orig_id": 1407596}}, {"model": "metainfo.source", "pk": 5169, "fields": {"orig_filename": "Rosner_Ignacy-Juliusz_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 260f.", "author": "", "orig_id": 1407597}}, {"model": "metainfo.source", "pk": 5170, "fields": {"orig_filename": "Rosner_Jehuda-Segal_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261", "author": "", "orig_id": 1407598}}, {"model": "metainfo.source", "pk": 5171, "fields": {"orig_filename": "Rosner_Leopold_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261", "author": "", "orig_id": 1407599}}, {"model": "metainfo.source", "pk": 5172, "fields": {"orig_filename": "Rosnik_Franz_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 261f.", "author": "", "orig_id": 1407600}}, {"model": "metainfo.source", "pk": 5173, "fields": {"orig_filename": "Rossbacher_Rudolf_1806_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262", "author": "", "orig_id": 1409578}}, {"model": "metainfo.source", "pk": 5174, "fields": {"orig_filename": "Rossbach_Richard_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262", "author": "", "orig_id": 1407601}}, {"model": "metainfo.source", "pk": 5175, "fields": {"orig_filename": "Rossen_Ferdinand_1785_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 262f.", "author": "", "orig_id": 1407602}}, {"model": "metainfo.source", "pk": 5176, "fields": {"orig_filename": "Rossetti-Scander_Domenico_1774_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263f.", "author": "", "orig_id": 1407605}}, {"model": "metainfo.source", "pk": 5177, "fields": {"orig_filename": "Rossetti_Antonio_1819_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263", "author": "", "orig_id": 1407603}}, {"model": "metainfo.source", "pk": 5178, "fields": {"orig_filename": "Rossetti_Francesco_1833_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 263", "author": "", "orig_id": 1407604}}, {"model": "metainfo.source", "pk": 5179, "fields": {"orig_filename": "Rossi_Cesare_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 264f.", "author": "", "orig_id": 1407606}}, {"model": "metainfo.source", "pk": 5180, "fields": {"orig_filename": "Rossi_Gaetano_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265", "author": "", "orig_id": 1407607}}, {"model": "metainfo.source", "pk": 5181, "fields": {"orig_filename": "Rossi_Giacomo_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265", "author": "", "orig_id": 1407608}}, {"model": "metainfo.source", "pk": 5182, "fields": {"orig_filename": "Rossi_Giacomo_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 265f.", "author": "", "orig_id": 1407609}}, {"model": "metainfo.source", "pk": 5183, "fields": {"orig_filename": "Rossi_Giovanni-Alvise_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266", "author": "", "orig_id": 1407610}}, {"model": "metainfo.source", "pk": 5184, "fields": {"orig_filename": "Rossi_Hugo_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266", "author": "", "orig_id": 1407611}}, {"model": "metainfo.source", "pk": 5185, "fields": {"orig_filename": "Rossi_Ljudevit_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 266f.", "author": "", "orig_id": 1407612}}, {"model": "metainfo.source", "pk": 5186, "fields": {"orig_filename": "Rossi_Luigi-Maria_1819_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267", "author": "", "orig_id": 1407613}}, {"model": "metainfo.source", "pk": 5187, "fields": {"orig_filename": "Rossi_Marcello_1862_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267", "author": "", "orig_id": 1407614}}, {"model": "metainfo.source", "pk": 5188, "fields": {"orig_filename": "Rossi_Paul_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 267f.", "author": "", "orig_id": 1407615}}, {"model": "metainfo.source", "pk": 5189, "fields": {"orig_filename": "Rostafinski_Jozef-Tomasz_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268f.", "author": "", "orig_id": 1407617}}, {"model": "metainfo.source", "pk": 5190, "fields": {"orig_filename": "Rosthorn_Alfons_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 269", "author": "", "orig_id": 1407618}}, {"model": "metainfo.source", "pk": 5191, "fields": {"orig_filename": "Rosthorn_Arthur_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 269f.", "author": "", "orig_id": 1407619}}, {"model": "metainfo.source", "pk": 5192, "fields": {"orig_filename": "Rosthorn_August_1789_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 270", "author": "", "orig_id": 1407620}}, {"model": "metainfo.source", "pk": 5193, "fields": {"orig_filename": "Rosthorn_Franz_1796_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 270f.", "author": "", "orig_id": 1407621}}, {"model": "metainfo.source", "pk": 5194, "fields": {"orig_filename": "Rosthorn_Josef_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 271", "author": "", "orig_id": 1407622}}, {"model": "metainfo.source", "pk": 5195, "fields": {"orig_filename": "Rosthorn_Matthaeus_1782_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 271f.", "author": "", "orig_id": 1407623}}, {"model": "metainfo.source", "pk": 5196, "fields": {"orig_filename": "Rosthorn_Oskar_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 272", "author": "", "orig_id": 1407624}}, {"model": "metainfo.source", "pk": 5197, "fields": {"orig_filename": "Rostworowski_Karol-Hubert_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 272f.", "author": "", "orig_id": 1407625}}, {"model": "metainfo.source", "pk": 5198, "fields": {"orig_filename": "Rostworowski_Michal_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273", "author": "", "orig_id": 1407626}}, {"model": "metainfo.source", "pk": 5199, "fields": {"orig_filename": "Rost_Leopold_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268", "author": "", "orig_id": 1407616}}, {"model": "metainfo.source", "pk": 5200, "fields": {"orig_filename": "Rost_Rudolf_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 268", "author": "", "orig_id": 1409579}}, {"model": "metainfo.source", "pk": 5201, "fields": {"orig_filename": "Roszkowski_Julian_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273", "author": "", "orig_id": 1407627}}, {"model": "metainfo.source", "pk": 5202, "fields": {"orig_filename": "Ros_Bostjan_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407398}}, {"model": "metainfo.source", "pk": 5203, "fields": {"orig_filename": "Rota_Giuseppe_1823_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 273f.", "author": "", "orig_id": 1407628}}, {"model": "metainfo.source", "pk": 5204, "fields": {"orig_filename": "Rota_Giuseppe_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274", "author": "", "orig_id": 1407629}}, {"model": "metainfo.source", "pk": 5205, "fields": {"orig_filename": "Rotenstreich_Ephraim-Fischel_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274", "author": "", "orig_id": 1407630}}, {"model": "metainfo.source", "pk": 5206, "fields": {"orig_filename": "Roth-Limanowa-Lapanow_Josef_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 282f.", "author": "", "orig_id": 1407648}}, {"model": "metainfo.source", "pk": 5207, "fields": {"orig_filename": "Roth-Pongyolok_Adolf_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283", "author": "", "orig_id": 1407649}}, {"model": "metainfo.source", "pk": 5208, "fields": {"orig_filename": "Roth-Telegd_Ludwig_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283", "author": "", "orig_id": 1407650}}, {"model": "metainfo.source", "pk": 5209, "fields": {"orig_filename": "Rothaug_Alexander_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 283f.", "author": "", "orig_id": 1407651}}, {"model": "metainfo.source", "pk": 5210, "fields": {"orig_filename": "Rothauser_Therese_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284", "author": "", "orig_id": 1407652}}, {"model": "metainfo.source", "pk": 5211, "fields": {"orig_filename": "Rothberger_Karl-Julius_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284", "author": "", "orig_id": 1407653}}, {"model": "metainfo.source", "pk": 5212, "fields": {"orig_filename": "Rothblum_David_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 284f.", "author": "", "orig_id": 1407654}}, {"model": "metainfo.source", "pk": 5213, "fields": {"orig_filename": "Rothenflue_Augustin_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 285f.", "author": "", "orig_id": 1407656}}, {"model": "metainfo.source", "pk": 5214, "fields": {"orig_filename": "Rothermann_Peter-Daniel_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286", "author": "", "orig_id": 1409580}}, {"model": "metainfo.source", "pk": 5215, "fields": {"orig_filename": "Rother_Karl_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286", "author": "", "orig_id": 1407657}}, {"model": "metainfo.source", "pk": 5216, "fields": {"orig_filename": "Rothe_Hermann_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 285", "author": "", "orig_id": 1407655}}, {"model": "metainfo.source", "pk": 5217, "fields": {"orig_filename": "Rothkirch-Panthen_Karl_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 286f.", "author": "", "orig_id": 1407658}}, {"model": "metainfo.source", "pk": 5218, "fields": {"orig_filename": "Rothkirch-Panthen_Leonhard_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287", "author": "", "orig_id": 1407659}}, {"model": "metainfo.source", "pk": 5219, "fields": {"orig_filename": "Rothmann_Armin_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287", "author": "", "orig_id": 1407660}}, {"model": "metainfo.source", "pk": 5220, "fields": {"orig_filename": "Rothmund-Burgwall_Adolf_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 288", "author": "", "orig_id": 1407662}}, {"model": "metainfo.source", "pk": 5221, "fields": {"orig_filename": "Rothmund_Viktor_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 287f.", "author": "", "orig_id": 1407661}}, {"model": "metainfo.source", "pk": 5222, "fields": {"orig_filename": "Rothschild_Albert-Salomon-Anselm_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 288", "author": "", "orig_id": 1407663}}, {"model": "metainfo.source", "pk": 5223, "fields": {"orig_filename": "Rothschild_Anselm-Salomon_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289", "author": "", "orig_id": 1407664}}, {"model": "metainfo.source", "pk": 5224, "fields": {"orig_filename": "Rothschild_Nathaniel-Mayer-Anselm_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289", "author": "", "orig_id": 1407665}}, {"model": "metainfo.source", "pk": 5225, "fields": {"orig_filename": "Rothschild_Salomon-Mayer_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 289f.", "author": "", "orig_id": 1407666}}, {"model": "metainfo.source", "pk": 5226, "fields": {"orig_filename": "Rothschuetz_Emil_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 290f.", "author": "", "orig_id": 1407667}}, {"model": "metainfo.source", "pk": 5227, "fields": {"orig_filename": "Rothziegel_Leo_1892_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 291", "author": "", "orig_id": 1407668}}, {"model": "metainfo.source", "pk": 5228, "fields": {"orig_filename": "Roth_Aron_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 274f.", "author": "", "orig_id": 1407631}}, {"model": "metainfo.source", "pk": 5229, "fields": {"orig_filename": "Roth_August_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275", "author": "", "orig_id": 1407632}}, {"model": "metainfo.source", "pk": 5230, "fields": {"orig_filename": "Roth_Daniel_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275", "author": "", "orig_id": 1407633}}, {"model": "metainfo.source", "pk": 5231, "fields": {"orig_filename": "Roth_Franz_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 275f.", "author": "", "orig_id": 1407634}}, {"model": "metainfo.source", "pk": 5232, "fields": {"orig_filename": "Roth_Georg_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 276", "author": "", "orig_id": 1407635}}, {"model": "metainfo.source", "pk": 5233, "fields": {"orig_filename": "Roth_Hieronymus_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 276f.", "author": "", "orig_id": 1407636}}, {"model": "metainfo.source", "pk": 5234, "fields": {"orig_filename": "Roemer_Karl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202f.", "author": "", "orig_id": 1407355}}, {"model": "metainfo.source", "pk": 5235, "fields": {"orig_filename": "Roeschel_Franz_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203", "author": "", "orig_id": 1407357}}, {"model": "metainfo.source", "pk": 5236, "fields": {"orig_filename": "Roesch_Ludwig_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203", "author": "", "orig_id": 1407356}}, {"model": "metainfo.source", "pk": 5237, "fields": {"orig_filename": "Roesler-Ehrenstahl_Ignaz_1765_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 205", "author": "", "orig_id": 1407362}}, {"model": "metainfo.source", "pk": 5238, "fields": {"orig_filename": "Roesler_Augustin_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 203f.", "author": "", "orig_id": 1407358}}, {"model": "metainfo.source", "pk": 5239, "fields": {"orig_filename": "Roesler_Franz_1876_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204", "author": "", "orig_id": 1407359}}, {"model": "metainfo.source", "pk": 5240, "fields": {"orig_filename": "Roesler_Leonhard_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204", "author": "", "orig_id": 1407360}}, {"model": "metainfo.source", "pk": 5241, "fields": {"orig_filename": "Roesler_Robert_1836_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 204f.", "author": "", "orig_id": 1407361}}, {"model": "metainfo.source", "pk": 5242, "fields": {"orig_filename": "Roesner_Karl_1804_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 205f.", "author": "", "orig_id": 1407363}}, {"model": "metainfo.source", "pk": 5243, "fields": {"orig_filename": "Roessel_Albin_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 206", "author": "", "orig_id": 1407364}}, {"model": "metainfo.source", "pk": 5244, "fields": {"orig_filename": "Roessler_Emil-Franz_1815_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 206f.", "author": "", "orig_id": 1407365}}, {"model": "metainfo.source", "pk": 5245, "fields": {"orig_filename": "Roessler_Ervin_1876_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 207", "author": "", "orig_id": 1407415}}, {"model": "metainfo.source", "pk": 5246, "fields": {"orig_filename": "Roessler_Johannes-Bapt_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 207f.", "author": "", "orig_id": 1407416}}, {"model": "metainfo.source", "pk": 5247, "fields": {"orig_filename": "Roessler_Josef_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407417}}, {"model": "metainfo.source", "pk": 5248, "fields": {"orig_filename": "Roessler_Karl_1864_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407418}}, {"model": "metainfo.source", "pk": 5249, "fields": {"orig_filename": "Roessler_Matej_1754_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208", "author": "", "orig_id": 1407419}}, {"model": "metainfo.source", "pk": 5250, "fields": {"orig_filename": "Roessler_Mauriz_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 208f.", "author": "", "orig_id": 1407420}}, {"model": "metainfo.source", "pk": 5251, "fields": {"orig_filename": "Roessler_Richard_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 209f.", "author": "", "orig_id": 1407421}}, {"model": "metainfo.source", "pk": 5252, "fields": {"orig_filename": "Roessler_Stefan_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210", "author": "", "orig_id": 1407422}}, {"model": "metainfo.source", "pk": 5253, "fields": {"orig_filename": "Roetzer_Karl_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210", "author": "", "orig_id": 1407423}}, {"model": "metainfo.source", "pk": 5254, "fields": {"orig_filename": "Roever_Heinrich_1827_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 210f.", "author": "", "orig_id": 1407424}}, {"model": "metainfo.source", "pk": 5255, "fields": {"orig_filename": "Rogala_Wojciech_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211", "author": "", "orig_id": 1407426}}, {"model": "metainfo.source", "pk": 5256, "fields": {"orig_filename": "Rogalski-Puch_Adalbert_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211", "author": "", "orig_id": 1407427}}, {"model": "metainfo.source", "pk": 5257, "fields": {"orig_filename": "Rogge_Walter_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 211f.", "author": "", "orig_id": 1407428}}, {"model": "metainfo.source", "pk": 5258, "fields": {"orig_filename": "Rogosz-Ostoja_Jozef-Atanazy_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 212", "author": "", "orig_id": 1407429}}, {"model": "metainfo.source", "pk": 5259, "fields": {"orig_filename": "Rogulja_Petar_1888_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 212f.", "author": "", "orig_id": 1407430}}, {"model": "metainfo.source", "pk": 5260, "fields": {"orig_filename": "Rohan_Karel-Jan_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213", "author": "", "orig_id": 1407431}}, {"model": "metainfo.source", "pk": 5261, "fields": {"orig_filename": "Rohlena_Josef_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213", "author": "", "orig_id": 1407432}}, {"model": "metainfo.source", "pk": 5262, "fields": {"orig_filename": "Rohling_August_1839_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 213f.", "author": "", "orig_id": 1407433}}, {"model": "metainfo.source", "pk": 5263, "fields": {"orig_filename": "Rohm-Hermannstaedten_Alfred_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 214", "author": "", "orig_id": 1407434}}, {"model": "metainfo.source", "pk": 5264, "fields": {"orig_filename": "Rohr-Denta_Franz_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 214f.", "author": "", "orig_id": 1407435}}, {"model": "metainfo.source", "pk": 5265, "fields": {"orig_filename": "Rohrauer_Alois_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407436}}, {"model": "metainfo.source", "pk": 5266, "fields": {"orig_filename": "Rohrbacher_Josef_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407437}}, {"model": "metainfo.source", "pk": 5267, "fields": {"orig_filename": "Rohrbacher_Josef_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215", "author": "", "orig_id": 1407438}}, {"model": "metainfo.source", "pk": 5268, "fields": {"orig_filename": "Rohrer_Rudolf-Maria_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 216", "author": "", "orig_id": 1407440}}, {"model": "metainfo.source", "pk": 5269, "fields": {"orig_filename": "Rohrer_Rudolf_1805_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 215f.", "author": "", "orig_id": 1407439}}, {"model": "metainfo.source", "pk": 5270, "fields": {"orig_filename": "Rohrman_Viljem_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 216f.", "author": "", "orig_id": 1407441}}, {"model": "metainfo.source", "pk": 5271, "fields": {"orig_filename": "Rohs_Martha_1909_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1952799}}, {"model": "metainfo.source", "pk": 5272, "fields": {"orig_filename": "Roj-Gasienica_Wojciech_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 217", "author": "", "orig_id": 1407442}}, {"model": "metainfo.source", "pk": 5273, "fields": {"orig_filename": "Rojacher_Ignaz_1844_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 217f.", "author": "", "orig_id": 1407443}}, {"model": "metainfo.source", "pk": 5274, "fields": {"orig_filename": "Rojc_Anton_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218", "author": "", "orig_id": 1407444}}, {"model": "metainfo.source", "pk": 5275, "fields": {"orig_filename": "Rojc_Milan_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218", "author": "", "orig_id": 1407445}}, {"model": "metainfo.source", "pk": 5276, "fields": {"orig_filename": "Rojina_Francisek_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 218f.", "author": "", "orig_id": 1407446}}, {"model": "metainfo.source", "pk": 5277, "fields": {"orig_filename": "Rojka_Friedrich_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 219", "author": "", "orig_id": 1407447}}, {"model": "metainfo.source", "pk": 5278, "fields": {"orig_filename": "Rojko_Kaspar_1744_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 219f.", "author": "", "orig_id": 1407448}}, {"model": "metainfo.source", "pk": 5279, "fields": {"orig_filename": "Rokeach_Issachar-Dow-Baer_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220", "author": "", "orig_id": 1407449}}, {"model": "metainfo.source", "pk": 5280, "fields": {"orig_filename": "Rokeach_Schalom_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220", "author": "", "orig_id": 1407450}}, {"model": "metainfo.source", "pk": 5281, "fields": {"orig_filename": "Rokitansky_Friedrich-Karl_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 220f.", "author": "", "orig_id": 1407451}}, {"model": "metainfo.source", "pk": 5282, "fields": {"orig_filename": "Rokitansky_Hans_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 221", "author": "", "orig_id": 1407452}}, {"model": "metainfo.source", "pk": 5283, "fields": {"orig_filename": "Rokitansky_Karl_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 221f.", "author": "", "orig_id": 1407453}}, {"model": "metainfo.source", "pk": 5284, "fields": {"orig_filename": "Rokitansky_Karl_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 222f.", "author": "", "orig_id": 1407454}}, {"model": "metainfo.source", "pk": 5285, "fields": {"orig_filename": "Rokos_Frantisek-Alexander_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223", "author": "", "orig_id": 1407455}}, {"model": "metainfo.source", "pk": 5286, "fields": {"orig_filename": "Roksandic_Simeon_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223", "author": "", "orig_id": 1407456}}, {"model": "metainfo.source", "pk": 5287, "fields": {"orig_filename": "Rolla_Alessandro_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224", "author": "", "orig_id": 1407458}}, {"model": "metainfo.source", "pk": 5288, "fields": {"orig_filename": "Rolleder_Anton_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224", "author": "", "orig_id": 1407459}}, {"model": "metainfo.source", "pk": 5289, "fields": {"orig_filename": "Roller_Alfred_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 224ff.", "author": "", "orig_id": 1407460}}, {"model": "metainfo.source", "pk": 5290, "fields": {"orig_filename": "Roller_Josef_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226", "author": "", "orig_id": 1407461}}, {"model": "metainfo.source", "pk": 5291, "fields": {"orig_filename": "Roller_Margarete_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 226f.", "author": "", "orig_id": 1407463}}, {"model": "metainfo.source", "pk": 5292, "fields": {"orig_filename": "Rollett_Alexander_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 227f.", "author": "", "orig_id": 1407464}}, {"model": "metainfo.source", "pk": 5293, "fields": {"orig_filename": "Rollett_Anton_1778_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 228", "author": "", "orig_id": 1407465}}, {"model": "metainfo.source", "pk": 5294, "fields": {"orig_filename": "Rollett_Hermann_1819_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 228f.", "author": "", "orig_id": 1407366}}, {"model": "metainfo.source", "pk": 5295, "fields": {"orig_filename": "Rollinger_Karl_1817_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 229", "author": "", "orig_id": 1407367}}, {"model": "metainfo.source", "pk": 5296, "fields": {"orig_filename": "Roll_Karl_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 223f.", "author": "", "orig_id": 1407457}}, {"model": "metainfo.source", "pk": 5297, "fields": {"orig_filename": "Romako_Anton_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 229f.", "author": "", "orig_id": 1407368}}, {"model": "metainfo.source", "pk": 5298, "fields": {"orig_filename": "Romanin_Leon-Vita_1770_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230", "author": "", "orig_id": 1407369}}, {"model": "metainfo.source", "pk": 5299, "fields": {"orig_filename": "Romano-Ringe_Johann-Julius_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231", "author": "", "orig_id": 1407371}}, {"model": "metainfo.source", "pk": 5300, "fields": {"orig_filename": "Romanowski_Mieczyslaw_1833_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231", "author": "", "orig_id": 1407372}}, {"model": "metainfo.source", "pk": 5301, "fields": {"orig_filename": "Romano_Girolamo_1765_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230f.", "author": "", "orig_id": 1407370}}, {"model": "metainfo.source", "pk": 5302, "fields": {"orig_filename": "Roman_Alexandru_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 230", "author": "", "orig_id": 1407374}}, {"model": "metainfo.source", "pk": 5303, "fields": {"orig_filename": "Romaszkan_Grzegorz-Jozef_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 231f.", "author": "", "orig_id": 1407373}}, {"model": "metainfo.source", "pk": 5304, "fields": {"orig_filename": "Rombauer_Johann_1782_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 232", "author": "", "orig_id": 1407375}}, {"model": "metainfo.source", "pk": 5305, "fields": {"orig_filename": "Romer-Kis-Enyiczke_Stefan_1788_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233", "author": "", "orig_id": 1407378}}, {"model": "metainfo.source", "pk": 5306, "fields": {"orig_filename": "Romer_Floridus_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 232f.", "author": "", "orig_id": 1407376}}, {"model": "metainfo.source", "pk": 5307, "fields": {"orig_filename": "Romer_Johann_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233", "author": "", "orig_id": 1407377}}, {"model": "metainfo.source", "pk": 5308, "fields": {"orig_filename": "Romich_Siegfried_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 233f.", "author": "", "orig_id": 1407379}}, {"model": "metainfo.source", "pk": 5309, "fields": {"orig_filename": "Romilli_Bartolomeo-Carlo_1795_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234", "author": "", "orig_id": 1407380}}, {"model": "metainfo.source", "pk": 5310, "fields": {"orig_filename": "Ronacher_Anton_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235", "author": "", "orig_id": 1407383}}, {"model": "metainfo.source", "pk": 5311, "fields": {"orig_filename": "Ronai_Janos_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235", "author": "", "orig_id": 1407404}}, {"model": "metainfo.source", "pk": 5312, "fields": {"orig_filename": "Ronay-Lipto-Ujvar_Franz-X-Gustav_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236", "author": "", "orig_id": 1407385}}, {"model": "metainfo.source", "pk": 5313, "fields": {"orig_filename": "Ronay_Jacint-Janos_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 235f.", "author": "", "orig_id": 1407384}}, {"model": "metainfo.source", "pk": 5314, "fields": {"orig_filename": "Rona_Samuel_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234", "author": "", "orig_id": 1407381}}, {"model": "metainfo.source", "pk": 5315, "fields": {"orig_filename": "Rona_Zsigmond_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 234f.", "author": "", "orig_id": 1407382}}, {"model": "metainfo.source", "pk": 5316, "fields": {"orig_filename": "Roncali_Leone_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236", "author": "", "orig_id": 1407386}}, {"model": "metainfo.source", "pk": 5317, "fields": {"orig_filename": "Ronconi_Domenico_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 236f.", "author": "", "orig_id": 1407387}}, {"model": "metainfo.source", "pk": 5318, "fields": {"orig_filename": "Ronconi_Giorgio_1810_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237", "author": "", "orig_id": 1407388}}, {"model": "metainfo.source", "pk": 5319, "fields": {"orig_filename": "Ronconi_Giovanni-Batt_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237", "author": "", "orig_id": 1407389}}, {"model": "metainfo.source", "pk": 5320, "fields": {"orig_filename": "Roncourt_Albert_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 237f.", "author": "", "orig_id": 1407390}}, {"model": "metainfo.source", "pk": 5321, "fields": {"orig_filename": "Rondolini_Lorenzo_1752_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238", "author": "", "orig_id": 1407391}}, {"model": "metainfo.source", "pk": 5322, "fields": {"orig_filename": "Ronsperger_Benedikt_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238", "author": "", "orig_id": 1407392}}, {"model": "metainfo.source", "pk": 5323, "fields": {"orig_filename": "Ronzani_Domenico_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 238f.", "author": "", "orig_id": 1407393}}, {"model": "metainfo.source", "pk": 5324, "fields": {"orig_filename": "Roose_Friedrich_1767_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 239f.", "author": "", "orig_id": 1407395}}, {"model": "metainfo.source", "pk": 5325, "fields": {"orig_filename": "Roosz_Peter_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407396}}, {"model": "metainfo.source", "pk": 5326, "fields": {"orig_filename": "Roos_Emil_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 239", "author": "", "orig_id": 1407394}}, {"model": "metainfo.source", "pk": 5327, "fields": {"orig_filename": "Roretz_Albrecht_1846_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240", "author": "", "orig_id": 1407397}}, {"model": "metainfo.source", "pk": 5328, "fields": {"orig_filename": "Rosam_Vaclav_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241", "author": "", "orig_id": 1407400}}, {"model": "metainfo.source", "pk": 5329, "fields": {"orig_filename": "Rosanes_Jakob_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241", "author": "", "orig_id": 1407401}}, {"model": "metainfo.source", "pk": 5330, "fields": {"orig_filename": "Rosas_Anton_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 241f.", "author": "", "orig_id": 1407402}}, {"model": "metainfo.source", "pk": 5331, "fields": {"orig_filename": "Rosa_Costantino_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 240f.", "author": "", "orig_id": 1407399}}, {"model": "metainfo.source", "pk": 5332, "fields": {"orig_filename": "Rosche_Alfred_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 242", "author": "", "orig_id": 1407403}}, {"model": "metainfo.source", "pk": 5333, "fields": {"orig_filename": "Roschmann-Hoerburg_Anton-Leopold_1777_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 242f.", "author": "", "orig_id": 1407405}}, {"model": "metainfo.source", "pk": 5334, "fields": {"orig_filename": "Rosciszewski-Junosza_Adam_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 243", "author": "", "orig_id": 1407406}}, {"model": "metainfo.source", "pk": 5335, "fields": {"orig_filename": "Rosegger_Peter_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 245f.", "author": "", "orig_id": 1407411}}, {"model": "metainfo.source", "pk": 5336, "fields": {"orig_filename": "Rosegger_Rupert_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 246", "author": "", "orig_id": 1407412}}, {"model": "metainfo.source", "pk": 5337, "fields": {"orig_filename": "Righetti_Giovanni_1766_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 161f.", "author": "", "orig_id": 1407150}}, {"model": "metainfo.source", "pk": 5338, "fields": {"orig_filename": "Righetti_Giovanni_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162", "author": "", "orig_id": 1407151}}, {"model": "metainfo.source", "pk": 5339, "fields": {"orig_filename": "Rigler_Gustav_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162", "author": "", "orig_id": 1407152}}, {"model": "metainfo.source", "pk": 5340, "fields": {"orig_filename": "Rigler_Lorenz_1815_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 162f.", "author": "", "orig_id": 1407153}}, {"model": "metainfo.source", "pk": 5341, "fields": {"orig_filename": "Rigler_Peter-Paul_1796_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 163", "author": "", "orig_id": 1407154}}, {"model": "metainfo.source", "pk": 5342, "fields": {"orig_filename": "Riha_Martin_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 163f.", "author": "", "orig_id": 1407155}}, {"model": "metainfo.source", "pk": 5343, "fields": {"orig_filename": "Rihovsky_Vojtech_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 164", "author": "", "orig_id": 1407156}}, {"model": "metainfo.source", "pk": 5344, "fields": {"orig_filename": "Rilke_Rainer-Maria_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 164ff.", "author": "", "orig_id": 1407157}}, {"model": "metainfo.source", "pk": 5345, "fields": {"orig_filename": "Rill_Josef_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166", "author": "", "orig_id": 1407158}}, {"model": "metainfo.source", "pk": 5346, "fields": {"orig_filename": "Rimboeck_Karl_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166", "author": "", "orig_id": 1407159}}, {"model": "metainfo.source", "pk": 5347, "fields": {"orig_filename": "Rimely_Karoly_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 166f.", "author": "", "orig_id": 1407160}}, {"model": "metainfo.source", "pk": 5348, "fields": {"orig_filename": "Rimmer_Adalbert_1818_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407161}}, {"model": "metainfo.source", "pk": 5349, "fields": {"orig_filename": "Rinaldini_Anton_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407162}}, {"model": "metainfo.source", "pk": 5350, "fields": {"orig_filename": "Rinaldini_Teodoro_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167", "author": "", "orig_id": 1407163}}, {"model": "metainfo.source", "pk": 5351, "fields": {"orig_filename": "Rincolini_Ernst-Karl_1785_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 167f.", "author": "", "orig_id": 1407164}}, {"model": "metainfo.source", "pk": 5352, "fields": {"orig_filename": "Ringelblum_Emanuel_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 168", "author": "", "orig_id": 1407165}}, {"model": "metainfo.source", "pk": 5353, "fields": {"orig_filename": "Ringelsheim_Josef_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 168f.", "author": "", "orig_id": 1407166}}, {"model": "metainfo.source", "pk": 5354, "fields": {"orig_filename": "Ringhoffer_Emanuel_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169", "author": "", "orig_id": 1407167}}, {"model": "metainfo.source", "pk": 5355, "fields": {"orig_filename": "Ringhoffer_Franz_1817_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169", "author": "", "orig_id": 1407168}}, {"model": "metainfo.source", "pk": 5356, "fields": {"orig_filename": "Ringhoffer_Franz_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 169f.", "author": "", "orig_id": 1407169}}, {"model": "metainfo.source", "pk": 5357, "fields": {"orig_filename": "Ringler_Florian_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170", "author": "", "orig_id": 1407170}}, {"model": "metainfo.source", "pk": 5358, "fields": {"orig_filename": "Ringler_Karl_1826_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170", "author": "", "orig_id": 1407171}}, {"model": "metainfo.source", "pk": 5359, "fields": {"orig_filename": "Rintelen_Anton_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 171", "author": "", "orig_id": 1407173}}, {"model": "metainfo.source", "pk": 5360, "fields": {"orig_filename": "Rintelen_Anton_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 171f.", "author": "", "orig_id": 1407174}}, {"model": "metainfo.source", "pk": 5361, "fields": {"orig_filename": "Rint_Johann_1814_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 170f.", "author": "", "orig_id": 1407172}}, {"model": "metainfo.source", "pk": 5362, "fields": {"orig_filename": "Riotte_Philipp-Jakob_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 172", "author": "", "orig_id": 1407175}}, {"model": "metainfo.source", "pk": 5363, "fields": {"orig_filename": "Ripamonti_Riccardo_1849_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 172f.", "author": "", "orig_id": 1407176}}, {"model": "metainfo.source", "pk": 5364, "fields": {"orig_filename": "Rippel_Johann_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173", "author": "", "orig_id": 1407177}}, {"model": "metainfo.source", "pk": 5365, "fields": {"orig_filename": "Ripper_Julius_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173", "author": "", "orig_id": 1407178}}, {"model": "metainfo.source", "pk": 5366, "fields": {"orig_filename": "Ripper_Maximilian_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 173f.", "author": "", "orig_id": 1407179}}, {"model": "metainfo.source", "pk": 5367, "fields": {"orig_filename": "Rippl-Ronai_Jozsef_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174", "author": "", "orig_id": 1407181}}, {"model": "metainfo.source", "pk": 5368, "fields": {"orig_filename": "Rippl_Eugen_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174", "author": "", "orig_id": 1407180}}, {"model": "metainfo.source", "pk": 5369, "fields": {"orig_filename": "Rismondo_Giovanni_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175", "author": "", "orig_id": 1407183}}, {"model": "metainfo.source", "pk": 5370, "fields": {"orig_filename": "Riss_Josef_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175", "author": "", "orig_id": 1407184}}, {"model": "metainfo.source", "pk": 5371, "fields": {"orig_filename": "Ristori_Adelaide_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 175f.", "author": "", "orig_id": 1407185}}, {"model": "metainfo.source", "pk": 5372, "fields": {"orig_filename": "Ristow_Gustav_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176", "author": "", "orig_id": 1407186}}, {"model": "metainfo.source", "pk": 5373, "fields": {"orig_filename": "Ris_Jenny_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 174f.", "author": "", "orig_id": 1407182}}, {"model": "metainfo.source", "pk": 5374, "fields": {"orig_filename": "Ritt-Jaufen_August_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176", "author": "", "orig_id": 1407187}}, {"model": "metainfo.source", "pk": 5375, "fields": {"orig_filename": "Ritter-Rittersberg_Johann_1780_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 178", "author": "", "orig_id": 1407468}}, {"model": "metainfo.source", "pk": 5376, "fields": {"orig_filename": "Ritter-Rittersberg_Ludwig_1809_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 178f.", "author": "", "orig_id": 1407469}}, {"model": "metainfo.source", "pk": 5377, "fields": {"orig_filename": "Ritter-Rittershayn_Gottfried_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179", "author": "", "orig_id": 1407470}}, {"model": "metainfo.source", "pk": 5378, "fields": {"orig_filename": "Ritter-Zahony_Eugen_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179", "author": "", "orig_id": 1407471}}, {"model": "metainfo.source", "pk": 5379, "fields": {"orig_filename": "Ritter-Zahony_Hektor_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 179f.", "author": "", "orig_id": 1407472}}, {"model": "metainfo.source", "pk": 5380, "fields": {"orig_filename": "Rittershausen_Hermann_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407473}}, {"model": "metainfo.source", "pk": 5381, "fields": {"orig_filename": "Ritter_Albert_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 176f.", "author": "", "orig_id": 1407188}}, {"model": "metainfo.source", "pk": 5382, "fields": {"orig_filename": "Ritter_Eduard_1809_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177", "author": "", "orig_id": 1407466}}, {"model": "metainfo.source", "pk": 5383, "fields": {"orig_filename": "Ritter_Franz_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177", "author": "", "orig_id": 1409577}}, {"model": "metainfo.source", "pk": 5384, "fields": {"orig_filename": "Ritter_Josef_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 177f.", "author": "", "orig_id": 1407467}}, {"model": "metainfo.source", "pk": 5385, "fields": {"orig_filename": "Rittig_Ivan_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407474}}, {"model": "metainfo.source", "pk": 5386, "fields": {"orig_filename": "Rittig_Johann_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180", "author": "", "orig_id": 1407475}}, {"model": "metainfo.source", "pk": 5387, "fields": {"orig_filename": "Rittinger_Peter_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 180f.", "author": "", "orig_id": 1407476}}, {"model": "metainfo.source", "pk": 5388, "fields": {"orig_filename": "Rittmeyer_Giulia-Cecilia_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 181", "author": "", "orig_id": 1407477}}, {"model": "metainfo.source", "pk": 5389, "fields": {"orig_filename": "Rittner_Edward_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 181f.", "author": "", "orig_id": 1407478}}, {"model": "metainfo.source", "pk": 5390, "fields": {"orig_filename": "Rittner_Rudolf_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 182f.", "author": "", "orig_id": 1407479}}, {"model": "metainfo.source", "pk": 5391, "fields": {"orig_filename": "Rittner_Thaddaeus_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 183", "author": "", "orig_id": 1407480}}, {"model": "metainfo.source", "pk": 5392, "fields": {"orig_filename": "Ritzberger_Albert_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 183f.", "author": "", "orig_id": 1407481}}, {"model": "metainfo.source", "pk": 5393, "fields": {"orig_filename": "Ritzberger_Engelbert_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184", "author": "", "orig_id": 1407483}}, {"model": "metainfo.source", "pk": 5394, "fields": {"orig_filename": "Ritzoffy_Nikola_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184", "author": "", "orig_id": 1407482}}, {"model": "metainfo.source", "pk": 5395, "fields": {"orig_filename": "Rizner_Ludovit-Vladimir_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 184f.", "author": "", "orig_id": 1407484}}, {"model": "metainfo.source", "pk": 5396, "fields": {"orig_filename": "Rizy_Theobald_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 185", "author": "", "orig_id": 1407485}}, {"model": "metainfo.source", "pk": 5397, "fields": {"orig_filename": "Rizzi_Lodovico_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1941331}}, {"model": "metainfo.source", "pk": 5398, "fields": {"orig_filename": "Rizzi_Luigi_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 185f.", "author": "", "orig_id": 1407486}}, {"model": "metainfo.source", "pk": 5399, "fields": {"orig_filename": "Rizzi_Vinzenz_1816_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 186", "author": "", "orig_id": 1407487}}, {"model": "metainfo.source", "pk": 5400, "fields": {"orig_filename": "Robert_Florent_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 186f.", "author": "", "orig_id": 1407488}}, {"model": "metainfo.source", "pk": 5401, "fields": {"orig_filename": "Robert_Julius_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 187", "author": "", "orig_id": 1407489}}, {"model": "metainfo.source", "pk": 5402, "fields": {"orig_filename": "Robert_Ludwig_1792_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 187f.", "author": "", "orig_id": 1407490}}, {"model": "metainfo.source", "pk": 5403, "fields": {"orig_filename": "Robert_Richard_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188", "author": "", "orig_id": 1407491}}, {"model": "metainfo.source", "pk": 5404, "fields": {"orig_filename": "Robic_Simon_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188", "author": "", "orig_id": 1407492}}, {"model": "metainfo.source", "pk": 5405, "fields": {"orig_filename": "Robinsohn_Isaak_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 189", "author": "", "orig_id": 1407494}}, {"model": "metainfo.source", "pk": 5406, "fields": {"orig_filename": "Robinson_Adolf_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 189", "author": "", "orig_id": 1407495}}, {"model": "metainfo.source", "pk": 5407, "fields": {"orig_filename": "Robins_Adolf_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 188f.", "author": "", "orig_id": 1407493}}, {"model": "metainfo.source", "pk": 5408, "fields": {"orig_filename": "Robitschek_Kurt_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 190", "author": "", "orig_id": 1407497}}, {"model": "metainfo.source", "pk": 5409, "fields": {"orig_filename": "Robitschek_Robert_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191", "author": "", "orig_id": 1407498}}, {"model": "metainfo.source", "pk": 5410, "fields": {"orig_filename": "Robitsch_Matthias_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 190", "author": "", "orig_id": 1407496}}, {"model": "metainfo.source", "pk": 5411, "fields": {"orig_filename": "Rochata_Karl_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191", "author": "", "orig_id": 1407499}}, {"model": "metainfo.source", "pk": 5412, "fields": {"orig_filename": "Rochelt_Franz_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 191f.", "author": "", "orig_id": 1407500}}, {"model": "metainfo.source", "pk": 5413, "fields": {"orig_filename": "Rochleder_Friedrich_1819_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 192", "author": "", "orig_id": 1407501}}, {"model": "metainfo.source", "pk": 5414, "fields": {"orig_filename": "Rochlitzer_Ludwig_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 192", "author": "", "orig_id": 1407502}}, {"model": "metainfo.source", "pk": 5415, "fields": {"orig_filename": "Rochowanski_Emil_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193", "author": "", "orig_id": 1407503}}, {"model": "metainfo.source", "pk": 5416, "fields": {"orig_filename": "Rodakowski_Henryk_1823_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193f.", "author": "", "orig_id": 1407505}}, {"model": "metainfo.source", "pk": 5417, "fields": {"orig_filename": "Rodakowski_Josef_1830_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194", "author": "", "orig_id": 1407506}}, {"model": "metainfo.source", "pk": 5418, "fields": {"orig_filename": "Rodakowski_Maximilian_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194", "author": "", "orig_id": 1407507}}, {"model": "metainfo.source", "pk": 5419, "fields": {"orig_filename": "Roda_Alexander_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 193", "author": "", "orig_id": 1407504}}, {"model": "metainfo.source", "pk": 5420, "fields": {"orig_filename": "Rode_Ignaz_1819_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 194f.", "author": "", "orig_id": 1407508}}, {"model": "metainfo.source", "pk": 5421, "fields": {"orig_filename": "Rode_Leon_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195", "author": "", "orig_id": 1407509}}, {"model": "metainfo.source", "pk": 5422, "fields": {"orig_filename": "Rode_Walther_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195", "author": "", "orig_id": 1407510}}, {"model": "metainfo.source", "pk": 5423, "fields": {"orig_filename": "Rodich_Gabriel_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 195f.", "author": "", "orig_id": 1407511}}, {"model": "metainfo.source", "pk": 5424, "fields": {"orig_filename": "Rodler_Adolf_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 196", "author": "", "orig_id": 1407512}}, {"model": "metainfo.source", "pk": 5425, "fields": {"orig_filename": "Rodler_Alfred_1861_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 196f.", "author": "", "orig_id": 1407339}}, {"model": "metainfo.source", "pk": 5426, "fields": {"orig_filename": "Rodler_Erich_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197", "author": "", "orig_id": 1407340}}, {"model": "metainfo.source", "pk": 5427, "fields": {"orig_filename": "Roebbeling_Hermann_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 197f.", "author": "", "orig_id": 1407342}}, {"model": "metainfo.source", "pk": 5428, "fields": {"orig_filename": "Roebl_Klemens_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 198", "author": "", "orig_id": 1407343}}, {"model": "metainfo.source", "pk": 5429, "fields": {"orig_filename": "Roeckel_August_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 199", "author": "", "orig_id": 1407345}}, {"model": "metainfo.source", "pk": 5430, "fields": {"orig_filename": "Roeck_Istvan_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 198f.", "author": "", "orig_id": 1407344}}, {"model": "metainfo.source", "pk": 5431, "fields": {"orig_filename": "Roeder_Gustav_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 199f.", "author": "", "orig_id": 1407346}}, {"model": "metainfo.source", "pk": 5432, "fields": {"orig_filename": "Roeggl_Alois_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 200", "author": "", "orig_id": 1407347}}, {"model": "metainfo.source", "pk": 5433, "fields": {"orig_filename": "Roeggl_Josef_1781_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 200f.", "author": "", "orig_id": 1407348}}, {"model": "metainfo.source", "pk": 5434, "fields": {"orig_filename": "Roehlich_Josef_1836_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407349}}, {"model": "metainfo.source", "pk": 5435, "fields": {"orig_filename": "Roehm_Ernst-Friedrich_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407350}}, {"model": "metainfo.source", "pk": 5436, "fields": {"orig_filename": "Roell_Anton_1832_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201", "author": "", "orig_id": 1407351}}, {"model": "metainfo.source", "pk": 5437, "fields": {"orig_filename": "Roell_Moritz-Friedrich_1818_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 201f.", "author": "", "orig_id": 1407352}}, {"model": "metainfo.source", "pk": 5438, "fields": {"orig_filename": "Roell_Viktor_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202", "author": "", "orig_id": 1407353}}, {"model": "metainfo.source", "pk": 5439, "fields": {"orig_filename": "Roemer_Julius-Paul_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 43, 1986), S. 202", "author": "", "orig_id": 1407354}}, {"model": "metainfo.source", "pk": 5440, "fields": {"orig_filename": "Richarz_Stefan_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407243}}, {"model": "metainfo.source", "pk": 5441, "fields": {"orig_filename": "Richter-Wittbach_Gustav_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131f.", "author": "", "orig_id": 1407272}}, {"model": "metainfo.source", "pk": 5442, "fields": {"orig_filename": "Richtera_Leopold_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132", "author": "", "orig_id": 1407273}}, {"model": "metainfo.source", "pk": 5443, "fields": {"orig_filename": "Richter_Aladar_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407244}}, {"model": "metainfo.source", "pk": 5444, "fields": {"orig_filename": "Richter_Albert_1843_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120", "author": "", "orig_id": 1407245}}, {"model": "metainfo.source", "pk": 5445, "fields": {"orig_filename": "Richter_Alexander_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 120f.", "author": "", "orig_id": 1407246}}, {"model": "metainfo.source", "pk": 5446, "fields": {"orig_filename": "Richter_Anton-Josef_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121f.", "author": "", "orig_id": 1407249}}, {"model": "metainfo.source", "pk": 5447, "fields": {"orig_filename": "Richter_Anton_1805_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121", "author": "", "orig_id": 1407247}}, {"model": "metainfo.source", "pk": 5448, "fields": {"orig_filename": "Richter_Anton_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 121", "author": "", "orig_id": 1407248}}, {"model": "metainfo.source", "pk": 5449, "fields": {"orig_filename": "Richter_Benedikt_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 122", "author": "", "orig_id": 1407250}}, {"model": "metainfo.source", "pk": 5450, "fields": {"orig_filename": "Richter_Eduard_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 122f.", "author": "", "orig_id": 1407251}}, {"model": "metainfo.source", "pk": 5451, "fields": {"orig_filename": "Richter_Elise_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 123f.", "author": "", "orig_id": 1407252}}, {"model": "metainfo.source", "pk": 5452, "fields": {"orig_filename": "Richter_Franz-X-Johann_1783_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 125", "author": "", "orig_id": 1407256}}, {"model": "metainfo.source", "pk": 5453, "fields": {"orig_filename": "Richter_Franz_1774_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124", "author": "", "orig_id": 1407253}}, {"model": "metainfo.source", "pk": 5454, "fields": {"orig_filename": "Richter_Franz_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124", "author": "", "orig_id": 1407254}}, {"model": "metainfo.source", "pk": 5455, "fields": {"orig_filename": "Richter_Franz_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 124f.", "author": "", "orig_id": 1407255}}, {"model": "metainfo.source", "pk": 5456, "fields": {"orig_filename": "Richter_Franz_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1455961}}, {"model": "metainfo.source", "pk": 5457, "fields": {"orig_filename": "Richter_Hans_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 125f.", "author": "", "orig_id": 1407257}}, {"model": "metainfo.source", "pk": 5458, "fields": {"orig_filename": "Richter_Heinrich-Hermann_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 126f.", "author": "", "orig_id": 1407258}}, {"model": "metainfo.source", "pk": 5459, "fields": {"orig_filename": "Richter_Heinrich-Moritz_1841_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127", "author": "", "orig_id": 1407259}}, {"model": "metainfo.source", "pk": 5460, "fields": {"orig_filename": "Richter_Helene_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127", "author": "", "orig_id": 1407260}}, {"model": "metainfo.source", "pk": 5461, "fields": {"orig_filename": "Richter_Johann-Anton_1782_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 127f.", "author": "", "orig_id": 1407261}}, {"model": "metainfo.source", "pk": 5462, "fields": {"orig_filename": "Richter_Johann-Julius_1878_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 128f.", "author": "", "orig_id": 1407262}}, {"model": "metainfo.source", "pk": 5463, "fields": {"orig_filename": "Richter_Josef-Karl_1880_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407263}}, {"model": "metainfo.source", "pk": 5464, "fields": {"orig_filename": "Richter_Karl-Max_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129f.", "author": "", "orig_id": 1407266}}, {"model": "metainfo.source", "pk": 5465, "fields": {"orig_filename": "Richter_Karl-Nikolaus_1850_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130", "author": "", "orig_id": 1407267}}, {"model": "metainfo.source", "pk": 5466, "fields": {"orig_filename": "Richter_Karl_1855_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407264}}, {"model": "metainfo.source", "pk": 5467, "fields": {"orig_filename": "Richter_Karl_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 129", "author": "", "orig_id": 1407265}}, {"model": "metainfo.source", "pk": 5468, "fields": {"orig_filename": "Richter_Paul_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130", "author": "", "orig_id": 1407268}}, {"model": "metainfo.source", "pk": 5469, "fields": {"orig_filename": "Richter_Pius_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 130f.", "author": "", "orig_id": 1407269}}, {"model": "metainfo.source", "pk": 5470, "fields": {"orig_filename": "Richter_Richard_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131", "author": "", "orig_id": 1407270}}, {"model": "metainfo.source", "pk": 5471, "fields": {"orig_filename": "Richter_Wilhelm_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 131", "author": "", "orig_id": 1407271}}, {"model": "metainfo.source", "pk": 5472, "fields": {"orig_filename": "Ricker_Anselm_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 133", "author": "", "orig_id": 1407277}}, {"model": "metainfo.source", "pk": 5473, "fields": {"orig_filename": "Rick_Johann-Kaspar_1808_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132", "author": "", "orig_id": 1407274}}, {"model": "metainfo.source", "pk": 5474, "fields": {"orig_filename": "Rick_Johannes_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 132f.", "author": "", "orig_id": 1407275}}, {"model": "metainfo.source", "pk": 5475, "fields": {"orig_filename": "Rick_Karl_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 133", "author": "", "orig_id": 1407276}}, {"model": "metainfo.source", "pk": 5476, "fields": {"orig_filename": "Ricordi_Giovanni_1785_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 134", "author": "", "orig_id": 1407278}}, {"model": "metainfo.source", "pk": 5477, "fields": {"orig_filename": "Ridler_Johann-Wilhelm_1772_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 134f.", "author": "", "orig_id": 1407279}}, {"model": "metainfo.source", "pk": 5478, "fields": {"orig_filename": "Riedel_Andreas_1748_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 135f.", "author": "", "orig_id": 1407281}}, {"model": "metainfo.source", "pk": 5479, "fields": {"orig_filename": "Riedel_Josef-Anton_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137", "author": "", "orig_id": 1407284}}, {"model": "metainfo.source", "pk": 5480, "fields": {"orig_filename": "Riedel_Josef-Gottfried_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137f.", "author": "", "orig_id": 1407285}}, {"model": "metainfo.source", "pk": 5481, "fields": {"orig_filename": "Riedel_Josef_1816_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 136f.", "author": "", "orig_id": 1407282}}, {"model": "metainfo.source", "pk": 5482, "fields": {"orig_filename": "Riedel_Josef_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 137", "author": "", "orig_id": 1407283}}, {"model": "metainfo.source", "pk": 5483, "fields": {"orig_filename": "Riedel_Wilhelm_1832_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 138", "author": "", "orig_id": 1407286}}, {"model": "metainfo.source", "pk": 5484, "fields": {"orig_filename": "Riederer-Dachsberg_Gustav_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407297}}, {"model": "metainfo.source", "pk": 5485, "fields": {"orig_filename": "Riederer_Ernst_1868_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 140f.", "author": "", "orig_id": 1407296}}, {"model": "metainfo.source", "pk": 5486, "fields": {"orig_filename": "Rieder_Alois_1836_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 138f.", "author": "", "orig_id": 1407287}}, {"model": "metainfo.source", "pk": 5487, "fields": {"orig_filename": "Rieder_Ambros-Matthias_1771_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407288}}, {"model": "metainfo.source", "pk": 5488, "fields": {"orig_filename": "Rieder_Franz_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407289}}, {"model": "metainfo.source", "pk": 5489, "fields": {"orig_filename": "Rieder_Georg_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139", "author": "", "orig_id": 1407293}}, {"model": "metainfo.source", "pk": 5490, "fields": {"orig_filename": "Rieder_Ignaz_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 139f.", "author": "", "orig_id": 1407294}}, {"model": "metainfo.source", "pk": 5491, "fields": {"orig_filename": "Rieder_Wilhelm-August_1796_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 140", "author": "", "orig_id": 1407295}}, {"model": "metainfo.source", "pk": 5492, "fields": {"orig_filename": "Riedinger_Anizet_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407298}}, {"model": "metainfo.source", "pk": 5493, "fields": {"orig_filename": "Riedinger_Hubert_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 141", "author": "", "orig_id": 1407299}}, {"model": "metainfo.source", "pk": 5494, "fields": {"orig_filename": "Riedl-Leuenstern_Josef_1786_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144f.", "author": "", "orig_id": 1407307}}, {"model": "metainfo.source", "pk": 5495, "fields": {"orig_filename": "Riedl-Riedenstein_Johann-Bapt_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 145", "author": "", "orig_id": 1407308}}, {"model": "metainfo.source", "pk": 5496, "fields": {"orig_filename": "Riedler_Alois_1850_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 145f.", "author": "", "orig_id": 1407309}}, {"model": "metainfo.source", "pk": 5497, "fields": {"orig_filename": "Riedler_Ferdinand_1796_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407310}}, {"model": "metainfo.source", "pk": 5498, "fields": {"orig_filename": "Riedl_Franz-X_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142", "author": "", "orig_id": 1407300}}, {"model": "metainfo.source", "pk": 5499, "fields": {"orig_filename": "Riedl_Frigyes_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142", "author": "", "orig_id": 1407301}}, {"model": "metainfo.source", "pk": 5500, "fields": {"orig_filename": "Riedl_Hubert_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 142f.", "author": "", "orig_id": 1407302}}, {"model": "metainfo.source", "pk": 5501, "fields": {"orig_filename": "Riedl_Johann_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 143", "author": "", "orig_id": 1407303}}, {"model": "metainfo.source", "pk": 5502, "fields": {"orig_filename": "Riedl_Richard_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 143f.", "author": "", "orig_id": 1407304}}, {"model": "metainfo.source", "pk": 5503, "fields": {"orig_filename": "Riedl_Robert_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144", "author": "", "orig_id": 1407305}}, {"model": "metainfo.source", "pk": 5504, "fields": {"orig_filename": "Riedl_Szende_1831_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 144", "author": "", "orig_id": 1407306}}, {"model": "metainfo.source", "pk": 5505, "fields": {"orig_filename": "Riedmiller_Bernhard_1757_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407311}}, {"model": "metainfo.source", "pk": 5506, "fields": {"orig_filename": "Rief_Johann-Georg_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146", "author": "", "orig_id": 1407312}}, {"model": "metainfo.source", "pk": 5507, "fields": {"orig_filename": "Rief_Josef-Cal_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 146f.", "author": "", "orig_id": 1407313}}, {"model": "metainfo.source", "pk": 5508, "fields": {"orig_filename": "Rieger_August_1886_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147", "author": "", "orig_id": 1407314}}, {"model": "metainfo.source", "pk": 5509, "fields": {"orig_filename": "Rieger_Bohuslav_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147", "author": "", "orig_id": 1407315}}, {"model": "metainfo.source", "pk": 5510, "fields": {"orig_filename": "Rieger_Eduard_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 147f.", "author": "", "orig_id": 1407316}}, {"model": "metainfo.source", "pk": 5511, "fields": {"orig_filename": "Rieger_Erwin_1889_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 148", "author": "", "orig_id": 1407317}}, {"model": "metainfo.source", "pk": 5512, "fields": {"orig_filename": "Rieger_Frantisek-Ladislav_1818_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 148ff.", "author": "", "orig_id": 1407318}}, {"model": "metainfo.source", "pk": 5513, "fields": {"orig_filename": "Rieger_Franz_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150", "author": "", "orig_id": 1407319}}, {"model": "metainfo.source", "pk": 5514, "fields": {"orig_filename": "Rieger_Gottfried_1764_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150", "author": "", "orig_id": 1407320}}, {"model": "metainfo.source", "pk": 5515, "fields": {"orig_filename": "Rieger_Josef_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 150f.", "author": "", "orig_id": 1407321}}, {"model": "metainfo.source", "pk": 5516, "fields": {"orig_filename": "Rieger_Josip_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151", "author": "", "orig_id": 1407322}}, {"model": "metainfo.source", "pk": 5517, "fields": {"orig_filename": "Rieger_Otto_1880_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 151", "author": "", "orig_id": 1407323}}, {"model": "metainfo.source", "pk": 5518, "fields": {"orig_filename": "Riegler_Alois_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407327}}, {"model": "metainfo.source", "pk": 5519, "fields": {"orig_filename": "Riegler_Ferdinand_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407328}}, {"model": "metainfo.source", "pk": 5520, "fields": {"orig_filename": "Riegler_Gideon_1880_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153", "author": "", "orig_id": 1407329}}, {"model": "metainfo.source", "pk": 5521, "fields": {"orig_filename": "Riegl_Alois_1858_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 152", "author": "", "orig_id": 1407325}}, {"model": "metainfo.source", "pk": 5522, "fields": {"orig_filename": "Riegl_Anton_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 152f.", "author": "", "orig_id": 1407326}}, {"model": "metainfo.source", "pk": 5523, "fields": {"orig_filename": "Riehl_Alois-Adolf_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 153f.", "author": "", "orig_id": 1407330}}, {"model": "metainfo.source", "pk": 5524, "fields": {"orig_filename": "Riehl_Anton_1820_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 154", "author": "", "orig_id": 1407331}}, {"model": "metainfo.source", "pk": 5525, "fields": {"orig_filename": "Riehl_Anton_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155", "author": "", "orig_id": 1407332}}, {"model": "metainfo.source", "pk": 5526, "fields": {"orig_filename": "Riehl_Gustav_1855_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155", "author": "", "orig_id": 1407333}}, {"model": "metainfo.source", "pk": 5527, "fields": {"orig_filename": "Riehl_Josef_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 155f.", "author": "", "orig_id": 1407334}}, {"model": "metainfo.source", "pk": 5528, "fields": {"orig_filename": "Riener_Martin_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156", "author": "", "orig_id": 1407335}}, {"model": "metainfo.source", "pk": 5529, "fields": {"orig_filename": "Riepl_Franz-X-Laurenz_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 156f.", "author": "", "orig_id": 1407337}}, {"model": "metainfo.source", "pk": 5530, "fields": {"orig_filename": "Riesel_Mijat_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 157", "author": "", "orig_id": 1407338}}, {"model": "metainfo.source", "pk": 5531, "fields": {"orig_filename": "Riesenfeld_Hugo_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 157f.", "author": "", "orig_id": 1407140}}, {"model": "metainfo.source", "pk": 5532, "fields": {"orig_filename": "Riesenhuber_Martin_1876_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158", "author": "", "orig_id": 1407141}}, {"model": "metainfo.source", "pk": 5533, "fields": {"orig_filename": "Rieser_Michael_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158", "author": "", "orig_id": 1407142}}, {"model": "metainfo.source", "pk": 5534, "fields": {"orig_filename": "Rieszner_Valerian_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 158f.", "author": "", "orig_id": 1407143}}, {"model": "metainfo.source", "pk": 5535, "fields": {"orig_filename": "Rietsch_Heinrich_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 159", "author": "", "orig_id": 1407144}}, {"model": "metainfo.source", "pk": 5536, "fields": {"orig_filename": "Rietti_Arturo_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 159f.", "author": "", "orig_id": 1407145}}, {"model": "metainfo.source", "pk": 5537, "fields": {"orig_filename": "Riewel_Hermann_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160", "author": "", "orig_id": 1407146}}, {"model": "metainfo.source", "pk": 5538, "fields": {"orig_filename": "Riezlmayr_Georg_1784_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160", "author": "", "orig_id": 1407147}}, {"model": "metainfo.source", "pk": 5539, "fields": {"orig_filename": "Rie_Therese_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 135", "author": "", "orig_id": 1407280}}, {"model": "metainfo.source", "pk": 5540, "fields": {"orig_filename": "Rigele_Alois_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 160f.", "author": "", "orig_id": 1407148}}, {"model": "metainfo.source", "pk": 5541, "fields": {"orig_filename": "Rigele_Friedrich_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 161", "author": "", "orig_id": 1407149}}, {"model": "metainfo.source", "pk": 5542, "fields": {"orig_filename": "Renk_Anton_1871_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 78f.", "author": "", "orig_id": 1406990}}, {"model": "metainfo.source", "pk": 5543, "fields": {"orig_filename": "Renner_Franz_1866_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79f.", "author": "", "orig_id": 1406993}}, {"model": "metainfo.source", "pk": 5544, "fields": {"orig_filename": "Renner_Giuseppe-Federico_1784_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 80", "author": "", "orig_id": 1406994}}, {"model": "metainfo.source", "pk": 5545, "fields": {"orig_filename": "Renner_Karl_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 80f.", "author": "", "orig_id": 1406995}}, {"model": "metainfo.source", "pk": 5546, "fields": {"orig_filename": "Renner_Maria-Johanna_1775_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 81f.", "author": "", "orig_id": 1406996}}, {"model": "metainfo.source", "pk": 5547, "fields": {"orig_filename": "Renner_Viktor_1846_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 82", "author": "", "orig_id": 1406997}}, {"model": "metainfo.source", "pk": 5548, "fields": {"orig_filename": "Renn_Franz-X_1784_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79", "author": "", "orig_id": 1406991}}, {"model": "metainfo.source", "pk": 5549, "fields": {"orig_filename": "Renn_Paul_1806_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 79", "author": "", "orig_id": 1406992}}, {"model": "metainfo.source", "pk": 5550, "fields": {"orig_filename": "Renz_Ernst-Jakob_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 82f.", "author": "", "orig_id": 1406998}}, {"model": "metainfo.source", "pk": 5551, "fields": {"orig_filename": "Repic_Alojzij_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 83", "author": "", "orig_id": 1406999}}, {"model": "metainfo.source", "pk": 5552, "fields": {"orig_filename": "Repta_Vasile-Vladimir_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 83f.", "author": "", "orig_id": 1407000}}, {"model": "metainfo.source", "pk": 5553, "fields": {"orig_filename": "Reschauer_Anton_1832_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85", "author": "", "orig_id": 1407004}}, {"model": "metainfo.source", "pk": 5554, "fields": {"orig_filename": "Reschauer_Heinrich_1838_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85", "author": "", "orig_id": 1407005}}, {"model": "metainfo.source", "pk": 5555, "fields": {"orig_filename": "Reschner_Martin_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 85f.", "author": "", "orig_id": 1407006}}, {"model": "metainfo.source", "pk": 5556, "fields": {"orig_filename": "Resch_Josef_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84f.", "author": "", "orig_id": 1407003}}, {"model": "metainfo.source", "pk": 5557, "fields": {"orig_filename": "Resel_Johann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 86", "author": "", "orig_id": 1407007}}, {"model": "metainfo.source", "pk": 5558, "fields": {"orig_filename": "Resetar_Milan_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 86f.", "author": "", "orig_id": 1407008}}, {"model": "metainfo.source", "pk": 5559, "fields": {"orig_filename": "Resetka_Michal_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87", "author": "", "orig_id": 1407009}}, {"model": "metainfo.source", "pk": 5560, "fields": {"orig_filename": "Reslhuber_Augustin_1808_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87", "author": "", "orig_id": 1407010}}, {"model": "metainfo.source", "pk": 5561, "fields": {"orig_filename": "Resner_Rudolf_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 87f.", "author": "", "orig_id": 1407011}}, {"model": "metainfo.source", "pk": 5562, "fields": {"orig_filename": "Ress-Blazkova_Vekoslava-Aloisia_1841_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88", "author": "", "orig_id": 1407012}}, {"model": "metainfo.source", "pk": 5563, "fields": {"orig_filename": "Ressel_Anton-Franz_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88", "author": "", "orig_id": 1407013}}, {"model": "metainfo.source", "pk": 5564, "fields": {"orig_filename": "Ressel_Gustav-Andreas_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 88f.", "author": "", "orig_id": 1407014}}, {"model": "metainfo.source", "pk": 5565, "fields": {"orig_filename": "Ressel_Josef_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 89f.", "author": "", "orig_id": 1407015}}, {"model": "metainfo.source", "pk": 5566, "fields": {"orig_filename": "Ressel_Wilhelm_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 90", "author": "", "orig_id": 1407016}}, {"model": "metainfo.source", "pk": 5567, "fields": {"orig_filename": "Ressig_Alfred_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 90f.", "author": "", "orig_id": 1407017}}, {"model": "metainfo.source", "pk": 5568, "fields": {"orig_filename": "Ressmann_Costantino_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91", "author": "", "orig_id": 1407018}}, {"model": "metainfo.source", "pk": 5569, "fields": {"orig_filename": "Resti-Ferrari_Johann-Bapt_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91", "author": "", "orig_id": 1407019}}, {"model": "metainfo.source", "pk": 5570, "fields": {"orig_filename": "Res_Alojzij_1893_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 84", "author": "", "orig_id": 1407001}}, {"model": "metainfo.source", "pk": 5571, "fields": {"orig_filename": "Rethi_Leopold_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 91f.", "author": "", "orig_id": 1407020}}, {"model": "metainfo.source", "pk": 5572, "fields": {"orig_filename": "Rethy_Laszlo_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92", "author": "", "orig_id": 1407021}}, {"model": "metainfo.source", "pk": 5573, "fields": {"orig_filename": "Rethy_Mor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92", "author": "", "orig_id": 1407022}}, {"model": "metainfo.source", "pk": 5574, "fields": {"orig_filename": "Reti_Richard_1889_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 92f.", "author": "", "orig_id": 1407023}}, {"model": "metainfo.source", "pk": 5575, "fields": {"orig_filename": "Rettensteiner_Werigand_1751_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93", "author": "", "orig_id": 1407024}}, {"model": "metainfo.source", "pk": 5576, "fields": {"orig_filename": "Rettich-Pirk_Sarolta_1863_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 94", "author": "", "orig_id": 1407027}}, {"model": "metainfo.source", "pk": 5577, "fields": {"orig_filename": "Rettich_Henriette_1813_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93", "author": "", "orig_id": 1407025}}, {"model": "metainfo.source", "pk": 5578, "fields": {"orig_filename": "Rettich_Julie_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 93f.", "author": "", "orig_id": 1407026}}, {"model": "metainfo.source", "pk": 5579, "fields": {"orig_filename": "Rettigova_Magdalena-Dobromila_1785_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 95", "author": "", "orig_id": 1407029}}, {"model": "metainfo.source", "pk": 5580, "fields": {"orig_filename": "Rettig_Jan-Alois-Sudiprav_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 94", "author": "", "orig_id": 1407028}}, {"model": "metainfo.source", "pk": 5581, "fields": {"orig_filename": "Retzer_Josef-Friedrich_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 95f.", "author": "", "orig_id": 1407030}}, {"model": "metainfo.source", "pk": 5582, "fields": {"orig_filename": "Reuling_Wilhelm-Ludwig_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 96", "author": "", "orig_id": 1407031}}, {"model": "metainfo.source", "pk": 5583, "fields": {"orig_filename": "Reumann_Jakob_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 96", "author": "", "orig_id": 1407032}}, {"model": "metainfo.source", "pk": 5584, "fields": {"orig_filename": "Reuss-Belce_Luise_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98f.", "author": "", "orig_id": 1407037}}, {"model": "metainfo.source", "pk": 5585, "fields": {"orig_filename": "Reuss_August-Emanuel_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 97", "author": "", "orig_id": 1407033}}, {"model": "metainfo.source", "pk": 5586, "fields": {"orig_filename": "Reuss_August-Leopold_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 97", "author": "", "orig_id": 1407034}}, {"model": "metainfo.source", "pk": 5587, "fields": {"orig_filename": "Reuss_Gustav_1818_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1407035}}, {"model": "metainfo.source", "pk": 5588, "fields": {"orig_filename": "Reuss_Leopold_1775_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1407036}}, {"model": "metainfo.source", "pk": 5589, "fields": {"orig_filename": "Reuss_Leo_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1465246}}, {"model": "metainfo.source", "pk": 5590, "fields": {"orig_filename": "Reuss_Samuel_1783_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 98", "author": "", "orig_id": 1409576}}, {"model": "metainfo.source", "pk": 5591, "fields": {"orig_filename": "Reuter_Jakob_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99", "author": "", "orig_id": 1407038}}, {"model": "metainfo.source", "pk": 5592, "fields": {"orig_filename": "Reutter-Vallone_Arthur_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99f.", "author": "", "orig_id": 1407190}}, {"model": "metainfo.source", "pk": 5593, "fields": {"orig_filename": "Reutter_Johannes_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 99", "author": "", "orig_id": 1407189}}, {"model": "metainfo.source", "pk": 5594, "fields": {"orig_filename": "Revai_Mor-Janos_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100", "author": "", "orig_id": 1407191}}, {"model": "metainfo.source", "pk": 5595, "fields": {"orig_filename": "Revere_Giuseppe_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100", "author": "", "orig_id": 1407192}}, {"model": "metainfo.source", "pk": 5596, "fields": {"orig_filename": "Revesz_Imre_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 101f.", "author": "", "orig_id": 1407194}}, {"model": "metainfo.source", "pk": 5597, "fields": {"orig_filename": "Revesz_Kalman_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102", "author": "", "orig_id": 1407195}}, {"model": "metainfo.source", "pk": 5598, "fields": {"orig_filename": "Reviczky_Gyula_1855_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102", "author": "", "orig_id": 1407196}}, {"model": "metainfo.source", "pk": 5599, "fields": {"orig_filename": "Revoltella_Pasquale_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 102f.", "author": "", "orig_id": 1407197}}, {"model": "metainfo.source", "pk": 5600, "fields": {"orig_filename": "Revy_Karl-Julius-Heinrich_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103", "author": "", "orig_id": 1407198}}, {"model": "metainfo.source", "pk": 5601, "fields": {"orig_filename": "Rewakowicz_Henryk_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103", "author": "", "orig_id": 1407199}}, {"model": "metainfo.source", "pk": 5602, "fields": {"orig_filename": "Reyberger_Anton_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104", "author": "", "orig_id": 1407202}}, {"model": "metainfo.source", "pk": 5603, "fields": {"orig_filename": "Reyer-Castagna_Costantino_1828_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 106f.", "author": "", "orig_id": 1407207}}, {"model": "metainfo.source", "pk": 5604, "fields": {"orig_filename": "Reyer_Carlo-Ferdinando_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104", "author": "", "orig_id": 1407203}}, {"model": "metainfo.source", "pk": 5605, "fields": {"orig_filename": "Reyer_Eduard_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 104f.", "author": "", "orig_id": 1407204}}, {"model": "metainfo.source", "pk": 5606, "fields": {"orig_filename": "Reyer_Francesco-Taddeo_1760_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 105f.", "author": "", "orig_id": 1407205}}, {"model": "metainfo.source", "pk": 5607, "fields": {"orig_filename": "Reyer_Konstantin-August_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 106", "author": "", "orig_id": 1407206}}, {"model": "metainfo.source", "pk": 5608, "fields": {"orig_filename": "Reyl-Hanisch-Greifenthal_Herbert_1898_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107", "author": "", "orig_id": 1407208}}, {"model": "metainfo.source", "pk": 5609, "fields": {"orig_filename": "Reymond_Moritz_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107", "author": "", "orig_id": 1407209}}, {"model": "metainfo.source", "pk": 5610, "fields": {"orig_filename": "Rey_Mikolaj_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 103f.", "author": "", "orig_id": 1407201}}, {"model": "metainfo.source", "pk": 5611, "fields": {"orig_filename": "Rezac_Frantisek-Josef_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 107f.", "author": "", "orig_id": 1407210}}, {"model": "metainfo.source", "pk": 5612, "fields": {"orig_filename": "Rezbanyay_Jozsef_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 108", "author": "", "orig_id": 1407211}}, {"model": "metainfo.source", "pk": 5613, "fields": {"orig_filename": "Rezek_Antonin_1853_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 108f.", "author": "", "orig_id": 1407212}}, {"model": "metainfo.source", "pk": 5614, "fields": {"orig_filename": "Rezek_Franz_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 109", "author": "", "orig_id": 1407213}}, {"model": "metainfo.source", "pk": 5615, "fields": {"orig_filename": "Reznicek_Emil-Josef-Nikolaus_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 109f.", "author": "", "orig_id": 1407215}}, {"model": "metainfo.source", "pk": 5616, "fields": {"orig_filename": "Reznicek_Ferdinand_1868_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 110", "author": "", "orig_id": 1407216}}, {"model": "metainfo.source", "pk": 5617, "fields": {"orig_filename": "Reznicek_Josef-Jindrich_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 110f.", "author": "", "orig_id": 1407217}}, {"model": "metainfo.source", "pk": 5618, "fields": {"orig_filename": "Reznicek_Josef-Urban_1851_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111", "author": "", "orig_id": 1407218}}, {"model": "metainfo.source", "pk": 5619, "fields": {"orig_filename": "Reznicek_Vaclav_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111", "author": "", "orig_id": 1407219}}, {"model": "metainfo.source", "pk": 5620, "fields": {"orig_filename": "Rhamm_Karl_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 111f.", "author": "", "orig_id": 1407220}}, {"model": "metainfo.source", "pk": 5621, "fields": {"orig_filename": "Rheden_Josef_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 112", "author": "", "orig_id": 1407221}}, {"model": "metainfo.source", "pk": 5622, "fields": {"orig_filename": "Rheinhardt_Emil-Alfons_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 112f.", "author": "", "orig_id": 1407222}}, {"model": "metainfo.source", "pk": 5623, "fields": {"orig_filename": "Rhemen-Barensfeld_Adolf_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 113", "author": "", "orig_id": 1407223}}, {"model": "metainfo.source", "pk": 5624, "fields": {"orig_filename": "Rhodokanakis_Nikolaus_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 113f.", "author": "", "orig_id": 1407224}}, {"model": "metainfo.source", "pk": 5625, "fields": {"orig_filename": "Rhomberg_Adolf_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407225}}, {"model": "metainfo.source", "pk": 5626, "fields": {"orig_filename": "Rhomberg_Franz-Martin_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407226}}, {"model": "metainfo.source", "pk": 5627, "fields": {"orig_filename": "Rhomberg_Hanno_1819_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114", "author": "", "orig_id": 1407227}}, {"model": "metainfo.source", "pk": 5628, "fields": {"orig_filename": "Rhomberg_Johann-Josef_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 114f.", "author": "", "orig_id": 1407228}}, {"model": "metainfo.source", "pk": 5629, "fields": {"orig_filename": "Rhomberg_Josef-Anton_1775_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407229}}, {"model": "metainfo.source", "pk": 5630, "fields": {"orig_filename": "Rhomberg_Josef-Anton_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407230}}, {"model": "metainfo.source", "pk": 5631, "fields": {"orig_filename": "Rhomberg_Julius_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 115", "author": "", "orig_id": 1407231}}, {"model": "metainfo.source", "pk": 5632, "fields": {"orig_filename": "Rhomberg_Lorenz_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407232}}, {"model": "metainfo.source", "pk": 5633, "fields": {"orig_filename": "Rhomberg_Wilhelm_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407233}}, {"model": "metainfo.source", "pk": 5634, "fields": {"orig_filename": "Ribarz_Rudolf_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116", "author": "", "orig_id": 1407234}}, {"model": "metainfo.source", "pk": 5635, "fields": {"orig_filename": "Riboldi_Agostino-Gaetano_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 116f.", "author": "", "orig_id": 1407235}}, {"model": "metainfo.source", "pk": 5636, "fields": {"orig_filename": "Riccabona-Reichenfels_Benedikt_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 117", "author": "", "orig_id": 1407236}}, {"model": "metainfo.source", "pk": 5637, "fields": {"orig_filename": "Riccabona-Reichenfels_Felix-Adam_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 117f.", "author": "", "orig_id": 1407237}}, {"model": "metainfo.source", "pk": 5638, "fields": {"orig_filename": "Riccabona-Reichenfels_Julius_1835_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118", "author": "", "orig_id": 1407238}}, {"model": "metainfo.source", "pk": 5639, "fields": {"orig_filename": "Ricci-Montecorona_Vittore_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 119", "author": "", "orig_id": 1407241}}, {"model": "metainfo.source", "pk": 5640, "fields": {"orig_filename": "Ricci_Federico_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118", "author": "", "orig_id": 1407239}}, {"model": "metainfo.source", "pk": 5641, "fields": {"orig_filename": "Ricci_Luigi_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 118f.", "author": "", "orig_id": 1407240}}, {"model": "metainfo.source", "pk": 5642, "fields": {"orig_filename": "Richard_Frieda_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 119f.", "author": "", "orig_id": 1407242}}, {"model": "metainfo.source", "pk": 5643, "fields": {"orig_filename": "Reinelt_Carlo_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 41f.", "author": "", "orig_id": 1407107}}, {"model": "metainfo.source", "pk": 5644, "fields": {"orig_filename": "Reiner_Andreas_1760_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42", "author": "", "orig_id": 1407108}}, {"model": "metainfo.source", "pk": 5645, "fields": {"orig_filename": "Reiner_Johann-Bapt_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42", "author": "", "orig_id": 1407109}}, {"model": "metainfo.source", "pk": 5646, "fields": {"orig_filename": "Reiner_Max_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 42f.", "author": "", "orig_id": 1407110}}, {"model": "metainfo.source", "pk": 5647, "fields": {"orig_filename": "Reinhardt_Heinrich_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43", "author": "", "orig_id": 1407111}}, {"model": "metainfo.source", "pk": 5648, "fields": {"orig_filename": "Reinhardt_Heinrich_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43", "author": "", "orig_id": 1409575}}, {"model": "metainfo.source", "pk": 5649, "fields": {"orig_filename": "Reinhardt_Max_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 43ff.", "author": "", "orig_id": 1407112}}, {"model": "metainfo.source", "pk": 5650, "fields": {"orig_filename": "Reinhart-Thurnfels-Ferklehen_Ignaz_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407113}}, {"model": "metainfo.source", "pk": 5651, "fields": {"orig_filename": "Reinhart-Thurnfels-Ferklehen_Josef_1745_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407114}}, {"model": "metainfo.source", "pk": 5652, "fields": {"orig_filename": "Reinhold_Franz_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407115}}, {"model": "metainfo.source", "pk": 5653, "fields": {"orig_filename": "Reinhold_Friedrich-Josef_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45f.", "author": "", "orig_id": 1407117}}, {"model": "metainfo.source", "pk": 5654, "fields": {"orig_filename": "Reinhold_Friedrich-Philipp_1779_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407118}}, {"model": "metainfo.source", "pk": 5655, "fields": {"orig_filename": "Reinhold_Friedrich_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 45", "author": "", "orig_id": 1407116}}, {"model": "metainfo.source", "pk": 5656, "fields": {"orig_filename": "Reinhold_Josef_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407119}}, {"model": "metainfo.source", "pk": 5657, "fields": {"orig_filename": "Reinhold_Josef_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46", "author": "", "orig_id": 1407120}}, {"model": "metainfo.source", "pk": 5658, "fields": {"orig_filename": "Reinhold_Karl-Leonhard_1758_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 47", "author": "", "orig_id": 1407122}}, {"model": "metainfo.source", "pk": 5659, "fields": {"orig_filename": "Reinhold_Karl_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 46f.", "author": "", "orig_id": 1407121}}, {"model": "metainfo.source", "pk": 5660, "fields": {"orig_filename": "Reininger_Franz_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 47f.", "author": "", "orig_id": 1407123}}, {"model": "metainfo.source", "pk": 5661, "fields": {"orig_filename": "Reininger_Heinrich_1860_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48", "author": "", "orig_id": 1407125}}, {"model": "metainfo.source", "pk": 5662, "fields": {"orig_filename": "Reininger_Karl_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48", "author": "", "orig_id": 1407124}}, {"model": "metainfo.source", "pk": 5663, "fields": {"orig_filename": "Reininghaus_Johann-Peter_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 48f.", "author": "", "orig_id": 1407126}}, {"model": "metainfo.source", "pk": 5664, "fields": {"orig_filename": "Reinisch_Franz_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 49", "author": "", "orig_id": 1407127}}, {"model": "metainfo.source", "pk": 5665, "fields": {"orig_filename": "Reinisch_Karl-Ludwig_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 49f.", "author": "", "orig_id": 1407128}}, {"model": "metainfo.source", "pk": 5666, "fields": {"orig_filename": "Reinisch_Simon-Leo_1832_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 50f.", "author": "", "orig_id": 1407129}}, {"model": "metainfo.source", "pk": 5667, "fields": {"orig_filename": "Reinitzer_Benjamin_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51", "author": "", "orig_id": 1407130}}, {"model": "metainfo.source", "pk": 5668, "fields": {"orig_filename": "Reinitzer_Friedrich-Richard-Kornelius_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51", "author": "", "orig_id": 1407131}}, {"model": "metainfo.source", "pk": 5669, "fields": {"orig_filename": "Reinlaender_Wilhelm_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 51f.", "author": "", "orig_id": 1407132}}, {"model": "metainfo.source", "pk": 5670, "fields": {"orig_filename": "Reinoehl_Rainer_1854_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407133}}, {"model": "metainfo.source", "pk": 5671, "fields": {"orig_filename": "Reinoehl_Wilhelm_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407134}}, {"model": "metainfo.source", "pk": 5672, "fields": {"orig_filename": "Reinold_Ferdinand_1885_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52", "author": "", "orig_id": 1407135}}, {"model": "metainfo.source", "pk": 5673, "fields": {"orig_filename": "Reinsberg_Josef_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 52f.", "author": "", "orig_id": 1407136}}, {"model": "metainfo.source", "pk": 5674, "fields": {"orig_filename": "Reinthaler_Johannes_1824_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53", "author": "", "orig_id": 1407137}}, {"model": "metainfo.source", "pk": 5675, "fields": {"orig_filename": "Reinthaler_Marie_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53", "author": "", "orig_id": 1407138}}, {"model": "metainfo.source", "pk": 5676, "fields": {"orig_filename": "Reisacher_Alois_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54", "author": "", "orig_id": 1406967}}, {"model": "metainfo.source", "pk": 5677, "fields": {"orig_filename": "Reischek_Andreas_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 56", "author": "", "orig_id": 1406971}}, {"model": "metainfo.source", "pk": 5678, "fields": {"orig_filename": "Reischer_Thomas_1781_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 56f.", "author": "", "orig_id": 1406973}}, {"model": "metainfo.source", "pk": 5679, "fields": {"orig_filename": "Reischl_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57", "author": "", "orig_id": 1406974}}, {"model": "metainfo.source", "pk": 5680, "fields": {"orig_filename": "Reisch_Emil_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54f.", "author": "", "orig_id": 1406968}}, {"model": "metainfo.source", "pk": 5681, "fields": {"orig_filename": "Reisch_Franz_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 55", "author": "", "orig_id": 1406969}}, {"model": "metainfo.source", "pk": 5682, "fields": {"orig_filename": "Reisch_Richard_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 55f.", "author": "", "orig_id": 1406970}}, {"model": "metainfo.source", "pk": 5683, "fields": {"orig_filename": "Reiser_Fridolin_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57", "author": "", "orig_id": 1406975}}, {"model": "metainfo.source", "pk": 5684, "fields": {"orig_filename": "Reiser_Matthaeus_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 57f.", "author": "", "orig_id": 1406976}}, {"model": "metainfo.source", "pk": 5685, "fields": {"orig_filename": "Reiser_Othmar_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406977}}, {"model": "metainfo.source", "pk": 5686, "fields": {"orig_filename": "Reisich_Josef_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406985}}, {"model": "metainfo.source", "pk": 5687, "fields": {"orig_filename": "Reisinger_Franz_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58f.", "author": "", "orig_id": 1406986}}, {"model": "metainfo.source", "pk": 5688, "fields": {"orig_filename": "Reisinger_Leopold_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 59", "author": "", "orig_id": 1406987}}, {"model": "metainfo.source", "pk": 5689, "fields": {"orig_filename": "Reisinger_Wenzel-Julius_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 59f.", "author": "", "orig_id": 1406988}}, {"model": "metainfo.source", "pk": 5690, "fields": {"orig_filename": "Reissacher_Karl_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61", "author": "", "orig_id": 1407042}}, {"model": "metainfo.source", "pk": 5691, "fields": {"orig_filename": "Reissek_Siegfried_1819_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61f.", "author": "", "orig_id": 1407043}}, {"model": "metainfo.source", "pk": 5692, "fields": {"orig_filename": "Reissenberger_Karl-Friedrich_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62", "author": "", "orig_id": 1407044}}, {"model": "metainfo.source", "pk": 5693, "fields": {"orig_filename": "Reissenberger_Ludwig_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62", "author": "", "orig_id": 1407045}}, {"model": "metainfo.source", "pk": 5694, "fields": {"orig_filename": "Reisser_Christoph_1836_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 62f.", "author": "", "orig_id": 1407046}}, {"model": "metainfo.source", "pk": 5695, "fields": {"orig_filename": "Reisser_Franz-De-P-Michael_1769_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63", "author": "", "orig_id": 1407047}}, {"model": "metainfo.source", "pk": 5696, "fields": {"orig_filename": "Reiss_Anton_1741_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60", "author": "", "orig_id": 1406989}}, {"model": "metainfo.source", "pk": 5697, "fields": {"orig_filename": "Reiss_Eduard_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60", "author": "", "orig_id": 1407039}}, {"model": "metainfo.source", "pk": 5698, "fields": {"orig_filename": "Reiss_Heinrich_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 60f.", "author": "", "orig_id": 1407040}}, {"model": "metainfo.source", "pk": 5699, "fields": {"orig_filename": "Reiss_Wladyslaw_1866_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 61", "author": "", "orig_id": 1407041}}, {"model": "metainfo.source", "pk": 5700, "fields": {"orig_filename": "Reis_Isaak_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 53f.", "author": "", "orig_id": 1407139}}, {"model": "metainfo.source", "pk": 5701, "fields": {"orig_filename": "Reis_Wiktor-Feliks_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 54", "author": "", "orig_id": 1406965}}, {"model": "metainfo.source", "pk": 5702, "fields": {"orig_filename": "Reitenberger_Kaspar-Karl_1779_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63", "author": "", "orig_id": 1407048}}, {"model": "metainfo.source", "pk": 5703, "fields": {"orig_filename": "Reiterer_Ernst_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407056}}, {"model": "metainfo.source", "pk": 5704, "fields": {"orig_filename": "Reiterer_Josef_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407057}}, {"model": "metainfo.source", "pk": 5705, "fields": {"orig_filename": "Reiterer_Karl_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66f.", "author": "", "orig_id": 1407058}}, {"model": "metainfo.source", "pk": 5706, "fields": {"orig_filename": "Reiter_Franz-X_1875_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 63f.", "author": "", "orig_id": 1407049}}, {"model": "metainfo.source", "pk": 5707, "fields": {"orig_filename": "Reiter_Johann-Bapt_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 64", "author": "", "orig_id": 1407050}}, {"model": "metainfo.source", "pk": 5708, "fields": {"orig_filename": "Reiter_Johannes-Maria_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 64f.", "author": "", "orig_id": 1407051}}, {"model": "metainfo.source", "pk": 5709, "fields": {"orig_filename": "Reiter_Josef_1805_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65", "author": "", "orig_id": 1407052}}, {"model": "metainfo.source", "pk": 5710, "fields": {"orig_filename": "Reiter_Josef_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65", "author": "", "orig_id": 1407053}}, {"model": "metainfo.source", "pk": 5711, "fields": {"orig_filename": "Reiter_Josef_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 65f.", "author": "", "orig_id": 1407054}}, {"model": "metainfo.source", "pk": 5712, "fields": {"orig_filename": "Reiter_Matthaeus-Simon_1750_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 66", "author": "", "orig_id": 1407055}}, {"model": "metainfo.source", "pk": 5713, "fields": {"orig_filename": "Reither_Josef_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 67", "author": "", "orig_id": 1407059}}, {"model": "metainfo.source", "pk": 5714, "fields": {"orig_filename": "Reithmann_Christian_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 67f.", "author": "", "orig_id": 1407060}}, {"model": "metainfo.source", "pk": 5715, "fields": {"orig_filename": "Reithmeyer_Karl_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 68", "author": "", "orig_id": 1407061}}, {"model": "metainfo.source", "pk": 5716, "fields": {"orig_filename": "Reithoffer_Johann-Nep_1781_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 68f.", "author": "", "orig_id": 1407062}}, {"model": "metainfo.source", "pk": 5717, "fields": {"orig_filename": "Reitlechner_Gregor_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69", "author": "", "orig_id": 1407063}}, {"model": "metainfo.source", "pk": 5718, "fields": {"orig_filename": "Reitlechner_Karl_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69", "author": "", "orig_id": 1407064}}, {"model": "metainfo.source", "pk": 5719, "fields": {"orig_filename": "Reitler_Josef_1883_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 69f.", "author": "", "orig_id": 1407065}}, {"model": "metainfo.source", "pk": 5720, "fields": {"orig_filename": "Reitler_Marzellin-Adalbert_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 70", "author": "", "orig_id": 1407066}}, {"model": "metainfo.source", "pk": 5721, "fields": {"orig_filename": "Reitterer_Franz-X_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71f.", "author": "", "orig_id": 1407070}}, {"model": "metainfo.source", "pk": 5722, "fields": {"orig_filename": "Reitter_Edmund_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 70f.", "author": "", "orig_id": 1407067}}, {"model": "metainfo.source", "pk": 5723, "fields": {"orig_filename": "Reitter_Georg_1898_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71", "author": "", "orig_id": 1407068}}, {"model": "metainfo.source", "pk": 5724, "fields": {"orig_filename": "Reitter_Michael_1781_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 71", "author": "", "orig_id": 1407069}}, {"model": "metainfo.source", "pk": 5725, "fields": {"orig_filename": "Reitzenbeck_Heinrich_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 72f.", "author": "", "orig_id": 1407072}}, {"model": "metainfo.source", "pk": 5726, "fields": {"orig_filename": "Reitzes_Sigmund_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407073}}, {"model": "metainfo.source", "pk": 5727, "fields": {"orig_filename": "Reitz_Konstantin_1817_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 72", "author": "", "orig_id": 1407071}}, {"model": "metainfo.source", "pk": 5728, "fields": {"orig_filename": "Reizner_Janos_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407074}}, {"model": "metainfo.source", "pk": 5729, "fields": {"orig_filename": "Rejtoe_Sandor_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73", "author": "", "orig_id": 1407075}}, {"model": "metainfo.source", "pk": 5730, "fields": {"orig_filename": "Rejzek_Anton_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 73f.", "author": "", "orig_id": 1407076}}, {"model": "metainfo.source", "pk": 5731, "fields": {"orig_filename": "Rektorzik_Franz-X_1793_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74", "author": "", "orig_id": 1407077}}, {"model": "metainfo.source", "pk": 5732, "fields": {"orig_filename": "Rella_Anton_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74", "author": "", "orig_id": 1407078}}, {"model": "metainfo.source", "pk": 5733, "fields": {"orig_filename": "Rembold_Otto_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 74f.", "author": "", "orig_id": 1407079}}, {"model": "metainfo.source", "pk": 5734, "fields": {"orig_filename": "Remenyi_Antal_1825_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75", "author": "", "orig_id": 1407080}}, {"model": "metainfo.source", "pk": 5735, "fields": {"orig_filename": "Remenyi_Ede_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75", "author": "", "orig_id": 1407081}}, {"model": "metainfo.source", "pk": 5736, "fields": {"orig_filename": "Remmark_Karl_1802_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 75f.", "author": "", "orig_id": 1407082}}, {"model": "metainfo.source", "pk": 5737, "fields": {"orig_filename": "Remy-Berzenkovich-Szillas_Emil-Otto_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76", "author": "", "orig_id": 1407084}}, {"model": "metainfo.source", "pk": 5738, "fields": {"orig_filename": "Remy-Berzenkovich-Szillas_Ladislaus_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76f.", "author": "", "orig_id": 1407085}}, {"model": "metainfo.source", "pk": 5739, "fields": {"orig_filename": "Remy_Ludwig-Gabriel_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 76", "author": "", "orig_id": 1407083}}, {"model": "metainfo.source", "pk": 5740, "fields": {"orig_filename": "Renard_Marie_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77", "author": "", "orig_id": 1407086}}, {"model": "metainfo.source", "pk": 5741, "fields": {"orig_filename": "Rencki_Roman_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77", "author": "", "orig_id": 1407087}}, {"model": "metainfo.source", "pk": 5742, "fields": {"orig_filename": "Rendic_Ivan_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 77f.", "author": "", "orig_id": 1407088}}, {"model": "metainfo.source", "pk": 5743, "fields": {"orig_filename": "Renier_Stefano-Andrea_1759_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 78", "author": "", "orig_id": 1407089}}, {"model": "metainfo.source", "pk": 5744, "fields": {"orig_filename": "Renker_Gustav_1889_1967.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1866399}}, {"model": "metainfo.source", "pk": 5745, "fields": {"orig_filename": "Rebel_Hans_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1f.", "author": "", "orig_id": 1406929}}, {"model": "metainfo.source", "pk": 5746, "fields": {"orig_filename": "Rebhann-Aspernbruck_Georg_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 2f.", "author": "", "orig_id": 1406931}}, {"model": "metainfo.source", "pk": 5747, "fields": {"orig_filename": "Rebicek_Josef_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 3", "author": "", "orig_id": 1406932}}, {"model": "metainfo.source", "pk": 5748, "fields": {"orig_filename": "Rechbauer_Karl_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 3f.", "author": "", "orig_id": 1406933}}, {"model": "metainfo.source", "pk": 5749, "fields": {"orig_filename": "Rechberg-Rothenloewen_Johann-Bernhard_1806_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 4f.", "author": "", "orig_id": 1406934}}, {"model": "metainfo.source", "pk": 5750, "fields": {"orig_filename": "Rechberger-Rechkron_Josef_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6", "author": "", "orig_id": 1406938}}, {"model": "metainfo.source", "pk": 5751, "fields": {"orig_filename": "Rechberger_Augustin_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5", "author": "", "orig_id": 1406935}}, {"model": "metainfo.source", "pk": 5752, "fields": {"orig_filename": "Rechberger_Franz_1771_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5", "author": "", "orig_id": 1406936}}, {"model": "metainfo.source", "pk": 5753, "fields": {"orig_filename": "Rechberger_Heinrich_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 5f.", "author": "", "orig_id": 1406937}}, {"model": "metainfo.source", "pk": 5754, "fields": {"orig_filename": "Reckendorfer_Ferdinand_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6", "author": "", "orig_id": 1406939}}, {"model": "metainfo.source", "pk": 5755, "fields": {"orig_filename": "Recsei_Viktor_1858_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 6f.", "author": "", "orig_id": 1406940}}, {"model": "metainfo.source", "pk": 5756, "fields": {"orig_filename": "Recsy_Emil_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7", "author": "", "orig_id": 1406941}}, {"model": "metainfo.source", "pk": 5757, "fields": {"orig_filename": "Reden_Alexander_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7", "author": "", "orig_id": 1829257}}, {"model": "metainfo.source", "pk": 5758, "fields": {"orig_filename": "Redler_Ferdinand_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8f.", "author": "", "orig_id": 1406946}}, {"model": "metainfo.source", "pk": 5759, "fields": {"orig_filename": "Redler_Karoline-Maria_1883_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9", "author": "", "orig_id": 1406947}}, {"model": "metainfo.source", "pk": 5760, "fields": {"orig_filename": "Redlich-Redensbruck_Otto_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 12f.", "author": "", "orig_id": 1406954}}, {"model": "metainfo.source", "pk": 5761, "fields": {"orig_filename": "Redlich_Emil_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9", "author": "", "orig_id": 1406948}}, {"model": "metainfo.source", "pk": 5762, "fields": {"orig_filename": "Redlich_Friedrich_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 9f.", "author": "", "orig_id": 1406949}}, {"model": "metainfo.source", "pk": 5763, "fields": {"orig_filename": "Redlich_Josef_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 10f.", "author": "", "orig_id": 1406950}}, {"model": "metainfo.source", "pk": 5764, "fields": {"orig_filename": "Redlich_Karl-August_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11", "author": "", "orig_id": 1406952}}, {"model": "metainfo.source", "pk": 5765, "fields": {"orig_filename": "Redlich_Karl_1860_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11", "author": "", "orig_id": 1406951}}, {"model": "metainfo.source", "pk": 5766, "fields": {"orig_filename": "Redlich_Oswald_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 11f.", "author": "", "orig_id": 1406953}}, {"model": "metainfo.source", "pk": 5767, "fields": {"orig_filename": "Redl_Alfred_1864_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 7f.", "author": "", "orig_id": 1406942}}, {"model": "metainfo.source", "pk": 5768, "fields": {"orig_filename": "Redl_Alois_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406943}}, {"model": "metainfo.source", "pk": 5769, "fields": {"orig_filename": "Redl_Johann_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406944}}, {"model": "metainfo.source", "pk": 5770, "fields": {"orig_filename": "Redl_Josef_1774_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 8", "author": "", "orig_id": 1406945}}, {"model": "metainfo.source", "pk": 5771, "fields": {"orig_filename": "Redtenbacher_Ferdinand-Jakob_1809_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 13", "author": "", "orig_id": 1406955}}, {"model": "metainfo.source", "pk": 5772, "fields": {"orig_filename": "Redtenbacher_Josef_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 13f.", "author": "", "orig_id": 1406956}}, {"model": "metainfo.source", "pk": 5773, "fields": {"orig_filename": "Redtenbacher_Josef_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14", "author": "", "orig_id": 1406957}}, {"model": "metainfo.source", "pk": 5774, "fields": {"orig_filename": "Redtenbacher_Leo_1845_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14", "author": "", "orig_id": 1406958}}, {"model": "metainfo.source", "pk": 5775, "fields": {"orig_filename": "Redtenbacher_Ludwig_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 14f.", "author": "", "orig_id": 1406959}}, {"model": "metainfo.source", "pk": 5776, "fields": {"orig_filename": "Redtenbacher_Simon_1844_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406960}}, {"model": "metainfo.source", "pk": 5777, "fields": {"orig_filename": "Ree_Luis_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406961}}, {"model": "metainfo.source", "pk": 5778, "fields": {"orig_filename": "Regeczi_Josef_1851_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15", "author": "", "orig_id": 1406962}}, {"model": "metainfo.source", "pk": 5779, "fields": {"orig_filename": "Regenhart_Alois_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 16", "author": "", "orig_id": 1406964}}, {"model": "metainfo.source", "pk": 5780, "fields": {"orig_filename": "Regenhart_Alois_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 16f.", "author": "", "orig_id": 1406764}}, {"model": "metainfo.source", "pk": 5781, "fields": {"orig_filename": "Regensdorff_Carlo_1792_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17", "author": "", "orig_id": 1406765}}, {"model": "metainfo.source", "pk": 5782, "fields": {"orig_filename": "Regenspursky-Regeny_Karl_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17", "author": "", "orig_id": 1406766}}, {"model": "metainfo.source", "pk": 5783, "fields": {"orig_filename": "Regen_Johann_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 15f.", "author": "", "orig_id": 1406963}}, {"model": "metainfo.source", "pk": 5784, "fields": {"orig_filename": "Reger_Tadeusz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 17f.", "author": "", "orig_id": 1406767}}, {"model": "metainfo.source", "pk": 5785, "fields": {"orig_filename": "Reggio_Isacco-Samuele_1784_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 18", "author": "", "orig_id": 1406768}}, {"model": "metainfo.source", "pk": 5786, "fields": {"orig_filename": "Regli_Adalbert_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 18f.", "author": "", "orig_id": 1406769}}, {"model": "metainfo.source", "pk": 5787, "fields": {"orig_filename": "Regner-Bleyleben_Oktavian_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19", "author": "", "orig_id": 1406771}}, {"model": "metainfo.source", "pk": 5788, "fields": {"orig_filename": "Regner_Josef_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19", "author": "", "orig_id": 1406770}}, {"model": "metainfo.source", "pk": 5789, "fields": {"orig_filename": "Reguly_Antal_1819_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 19f.", "author": "", "orig_id": 1406772}}, {"model": "metainfo.source", "pk": 5790, "fields": {"orig_filename": "Rehakova_Anna_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21", "author": "", "orig_id": 1406778}}, {"model": "metainfo.source", "pk": 5791, "fields": {"orig_filename": "Rehak_Gejza_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406775}}, {"model": "metainfo.source", "pk": 5792, "fields": {"orig_filename": "Rehak_Jan_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20f.", "author": "", "orig_id": 1406776}}, {"model": "metainfo.source", "pk": 5793, "fields": {"orig_filename": "Rehak_Stanislav_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21", "author": "", "orig_id": 1406777}}, {"model": "metainfo.source", "pk": 5794, "fields": {"orig_filename": "Rehatschek_Anton_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 21f.", "author": "", "orig_id": 1406779}}, {"model": "metainfo.source", "pk": 5795, "fields": {"orig_filename": "Rehman_Antoni_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 22", "author": "", "orig_id": 1406780}}, {"model": "metainfo.source", "pk": 5796, "fields": {"orig_filename": "Rehor_Karl_1906_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 22f.", "author": "", "orig_id": 1406781}}, {"model": "metainfo.source", "pk": 5797, "fields": {"orig_filename": "Rehrl_Franz_1890_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23", "author": "", "orig_id": 1406782}}, {"model": "metainfo.source", "pk": 5798, "fields": {"orig_filename": "Rehrl_Kaspar_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23", "author": "", "orig_id": 1406783}}, {"model": "metainfo.source", "pk": 5799, "fields": {"orig_filename": "Reh_Franz_1861_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406773}}, {"model": "metainfo.source", "pk": 5800, "fields": {"orig_filename": "Reh_Karl-Christian_1888_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 20", "author": "", "orig_id": 1406774}}, {"model": "metainfo.source", "pk": 5801, "fields": {"orig_filename": "Reibmayr_Albert_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 23f.", "author": "", "orig_id": 1406784}}, {"model": "metainfo.source", "pk": 5802, "fields": {"orig_filename": "Reichardt_Alexander_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27f.", "author": "", "orig_id": 1406795}}, {"model": "metainfo.source", "pk": 5803, "fields": {"orig_filename": "Reichardt_Heinrich-Wilhelm_1835_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 28", "author": "", "orig_id": 1406796}}, {"model": "metainfo.source", "pk": 5804, "fields": {"orig_filename": "Reicha_Anton-Josef_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27", "author": "", "orig_id": 1406794}}, {"model": "metainfo.source", "pk": 5805, "fields": {"orig_filename": "Reichelt_Johann_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 30f.", "author": "", "orig_id": 1406802}}, {"model": "metainfo.source", "pk": 5806, "fields": {"orig_filename": "Reichel_Anton_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 28f.", "author": "", "orig_id": 1406797}}, {"model": "metainfo.source", "pk": 5807, "fields": {"orig_filename": "Reichel_Heinrich_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29", "author": "", "orig_id": 1406798}}, {"model": "metainfo.source", "pk": 5808, "fields": {"orig_filename": "Reichel_Josef_1819_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 29", "author": "", "orig_id": 1406799}}, {"model": "metainfo.source", "pk": 5809, "fields": {"orig_filename": "Reichel_Wolfgang_1858_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 30", "author": "", "orig_id": 1406801}}, {"model": "metainfo.source", "pk": 5810, "fields": {"orig_filename": "Reichenbach_Karl-Ludwig_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31", "author": "", "orig_id": 1406803}}, {"model": "metainfo.source", "pk": 5811, "fields": {"orig_filename": "Reichenberger_Hugo_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 32", "author": "", "orig_id": 1406806}}, {"model": "metainfo.source", "pk": 5812, "fields": {"orig_filename": "Reichenberg_Franz_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31", "author": "", "orig_id": 1406804}}, {"model": "metainfo.source", "pk": 5813, "fields": {"orig_filename": "Reichert_Adam_1853_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406809}}, {"model": "metainfo.source", "pk": 5814, "fields": {"orig_filename": "Reichert_Heinrich_1801_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406810}}, {"model": "metainfo.source", "pk": 5815, "fields": {"orig_filename": "Reichert_Heinz_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33f.", "author": "", "orig_id": 1406811}}, {"model": "metainfo.source", "pk": 5816, "fields": {"orig_filename": "Reichert_Karl-Friedrich-Wilhelm_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 34f.", "author": "", "orig_id": 1406813}}, {"model": "metainfo.source", "pk": 5817, "fields": {"orig_filename": "Reichert_Karl_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 34", "author": "", "orig_id": 1406812}}, {"model": "metainfo.source", "pk": 5818, "fields": {"orig_filename": "Reichert_Vaclav_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35", "author": "", "orig_id": 1406814}}, {"model": "metainfo.source", "pk": 5819, "fields": {"orig_filename": "Reicher_Emanuel_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 32f.", "author": "", "orig_id": 1406807}}, {"model": "metainfo.source", "pk": 5820, "fields": {"orig_filename": "Reicher_Heinrich_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 33", "author": "", "orig_id": 1406808}}, {"model": "metainfo.source", "pk": 5821, "fields": {"orig_filename": "Reichhart_Gottfried_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35", "author": "", "orig_id": 1406815}}, {"model": "metainfo.source", "pk": 5822, "fields": {"orig_filename": "Reichlin-Meldegg_Wilhelm_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36", "author": "", "orig_id": 1407092}}, {"model": "metainfo.source", "pk": 5823, "fields": {"orig_filename": "Reichl_Josef_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 35f.", "author": "", "orig_id": 1407090}}, {"model": "metainfo.source", "pk": 5824, "fields": {"orig_filename": "Reichl_Josef_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36", "author": "", "orig_id": 1407091}}, {"model": "metainfo.source", "pk": 5825, "fields": {"orig_filename": "Reichmann_Theodor_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 36f.", "author": "", "orig_id": 1407093}}, {"model": "metainfo.source", "pk": 5826, "fields": {"orig_filename": "Reichstadt_Napoleon-Franz-Karl_1811_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 37", "author": "", "orig_id": 1407094}}, {"model": "metainfo.source", "pk": 5827, "fields": {"orig_filename": "Reichwein_Leopold_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 37f.", "author": "", "orig_id": 1407095}}, {"model": "metainfo.source", "pk": 5828, "fields": {"orig_filename": "Reich_Eduard_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 24", "author": "", "orig_id": 1406785}}, {"model": "metainfo.source", "pk": 5829, "fields": {"orig_filename": "Reich_Emil_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 24f.", "author": "", "orig_id": 1406786}}, {"model": "metainfo.source", "pk": 5830, "fields": {"orig_filename": "Reich_Ignac_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25", "author": "", "orig_id": 1406787}}, {"model": "metainfo.source", "pk": 5831, "fields": {"orig_filename": "Reich_Jakob_1838_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25", "author": "", "orig_id": 1406788}}, {"model": "metainfo.source", "pk": 5832, "fields": {"orig_filename": "Reich_Leon_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 25f.", "author": "", "orig_id": 1406789}}, {"model": "metainfo.source", "pk": 5833, "fields": {"orig_filename": "Reich_Max_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26", "author": "", "orig_id": 1406791}}, {"model": "metainfo.source", "pk": 5834, "fields": {"orig_filename": "Reich_Moritz_1831_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26", "author": "", "orig_id": 1406792}}, {"model": "metainfo.source", "pk": 5835, "fields": {"orig_filename": "Reich_Theodor_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 26f.", "author": "", "orig_id": 1406793}}, {"model": "metainfo.source", "pk": 5836, "fields": {"orig_filename": "Reider_Simon_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407096}}, {"model": "metainfo.source", "pk": 5837, "fields": {"orig_filename": "Reidinger_Anton_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407097}}, {"model": "metainfo.source", "pk": 5838, "fields": {"orig_filename": "Reiffenstein_Gottlieb-Benjamin_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38", "author": "", "orig_id": 1407098}}, {"model": "metainfo.source", "pk": 5839, "fields": {"orig_filename": "Reifner_Vinzenz_1878_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 38f.", "author": "", "orig_id": 1407099}}, {"model": "metainfo.source", "pk": 5840, "fields": {"orig_filename": "Reifschneider_Konrad_1909_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39", "author": "", "orig_id": 1407100}}, {"model": "metainfo.source", "pk": 5841, "fields": {"orig_filename": "Reilly_Franz-Johann-Josef_1766_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39f.", "author": "", "orig_id": 1407102}}, {"model": "metainfo.source", "pk": 5842, "fields": {"orig_filename": "Reil_Johann-Anton-Friedrich_1773_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 39", "author": "", "orig_id": 1407101}}, {"model": "metainfo.source", "pk": 5843, "fields": {"orig_filename": "Reimann_Martin_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40", "author": "", "orig_id": 1407104}}, {"model": "metainfo.source", "pk": 5844, "fields": {"orig_filename": "Reimers_Georg_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40f.", "author": "", "orig_id": 1407105}}, {"model": "metainfo.source", "pk": 5845, "fields": {"orig_filename": "Reim_Johann-Vinzenz_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 40", "author": "", "orig_id": 1407103}}, {"model": "metainfo.source", "pk": 5846, "fields": {"orig_filename": "Reindl_Johann-Bapt_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 41", "author": "", "orig_id": 1407106}}, {"model": "metainfo.source", "pk": 5847, "fields": {"orig_filename": "Randa_Antonin_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 410f.", "author": "", "orig_id": 1410085}}, {"model": "metainfo.source", "pk": 5848, "fields": {"orig_filename": "Randegger_Alberto-Iginio_1880_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412", "author": "", "orig_id": 1410088}}, {"model": "metainfo.source", "pk": 5849, "fields": {"orig_filename": "Randegger_Alberto_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411f.", "author": "", "orig_id": 1410087}}, {"model": "metainfo.source", "pk": 5850, "fields": {"orig_filename": "Randegger_Mayer_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412", "author": "", "orig_id": 1410089}}, {"model": "metainfo.source", "pk": 5851, "fields": {"orig_filename": "Randhartinger_Benedikt_1802_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 412f.", "author": "", "orig_id": 1410090}}, {"model": "metainfo.source", "pk": 5852, "fields": {"orig_filename": "Randolf_Josef_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413", "author": "", "orig_id": 1410091}}, {"model": "metainfo.source", "pk": 5853, "fields": {"orig_filename": "Ranftl_Johann-Ev_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413", "author": "", "orig_id": 1410092}}, {"model": "metainfo.source", "pk": 5854, "fields": {"orig_filename": "Ranftl_Matthias-Johann_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 413f.", "author": "", "orig_id": 1410093}}, {"model": "metainfo.source", "pk": 5855, "fields": {"orig_filename": "Ranggetiner_Christian_1833_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 414", "author": "", "orig_id": 1410094}}, {"model": "metainfo.source", "pk": 5856, "fields": {"orig_filename": "Rankl_Richard_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416", "author": "", "orig_id": 1410099}}, {"model": "metainfo.source", "pk": 5857, "fields": {"orig_filename": "Rank_Josef_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 414f.", "author": "", "orig_id": 1410096}}, {"model": "metainfo.source", "pk": 5858, "fields": {"orig_filename": "Rank_Josef_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 415", "author": "", "orig_id": 1410097}}, {"model": "metainfo.source", "pk": 5859, "fields": {"orig_filename": "Rank_Otto_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 415f.", "author": "", "orig_id": 1410098}}, {"model": "metainfo.source", "pk": 5860, "fields": {"orig_filename": "Rannicher_Jakob_1823_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416", "author": "", "orig_id": 1410174}}, {"model": "metainfo.source", "pk": 5861, "fields": {"orig_filename": "Ranolder_Janos_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 416f.", "author": "", "orig_id": 1410175}}, {"model": "metainfo.source", "pk": 5862, "fields": {"orig_filename": "Ransonnet-Villez_Eugen_1838_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417", "author": "", "orig_id": 1410176}}, {"model": "metainfo.source", "pk": 5863, "fields": {"orig_filename": "Ranzenberger_Hugo_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417", "author": "", "orig_id": 1410177}}, {"model": "metainfo.source", "pk": 5864, "fields": {"orig_filename": "Ranzenhofer_Adolf_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 417f.", "author": "", "orig_id": 1410178}}, {"model": "metainfo.source", "pk": 5865, "fields": {"orig_filename": "Ranzi_Egon_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 418", "author": "", "orig_id": 1410179}}, {"model": "metainfo.source", "pk": 5866, "fields": {"orig_filename": "Ranzoni_Emerich_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 418f.", "author": "", "orig_id": 1410180}}, {"model": "metainfo.source", "pk": 5867, "fields": {"orig_filename": "Ranzoni_Gustav_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 419", "author": "", "orig_id": 1410181}}, {"model": "metainfo.source", "pk": 5868, "fields": {"orig_filename": "Rapaics_Raimund_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 419f.", "author": "", "orig_id": 1410182}}, {"model": "metainfo.source", "pk": 5869, "fields": {"orig_filename": "Rapoc_Fran_1842_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420", "author": "", "orig_id": 1410183}}, {"model": "metainfo.source", "pk": 5870, "fields": {"orig_filename": "Rapoldi_Martin_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420", "author": "", "orig_id": 1410184}}, {"model": "metainfo.source", "pk": 5871, "fields": {"orig_filename": "Rapoport-Porada_Arnold-Chaim_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 422f.", "author": "", "orig_id": 1410190}}, {"model": "metainfo.source", "pk": 5872, "fields": {"orig_filename": "Rapoport_Benjamin-Zeeb-Wolf-Hakohen_1754_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 420f.", "author": "", "orig_id": 1410185}}, {"model": "metainfo.source", "pk": 5873, "fields": {"orig_filename": "Rapoport_Mordche-W_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421", "author": "", "orig_id": 1410186}}, {"model": "metainfo.source", "pk": 5874, "fields": {"orig_filename": "Rapoport_Moriz_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421", "author": "", "orig_id": 1410187}}, {"model": "metainfo.source", "pk": 5875, "fields": {"orig_filename": "Rapoport_Salomon-Juda-Loeb_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 421f.", "author": "", "orig_id": 1410188}}, {"model": "metainfo.source", "pk": 5876, "fields": {"orig_filename": "Rapoport_Samuel_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 422", "author": "", "orig_id": 1410189}}, {"model": "metainfo.source", "pk": 5877, "fields": {"orig_filename": "Rapp-Heidenburg_Franz_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424", "author": "", "orig_id": 1410194}}, {"model": "metainfo.source", "pk": 5878, "fields": {"orig_filename": "Rappel_Jakob_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424", "author": "", "orig_id": 1410195}}, {"model": "metainfo.source", "pk": 5879, "fields": {"orig_filename": "Rappoldi_Eduard_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425", "author": "", "orig_id": 1410197}}, {"model": "metainfo.source", "pk": 5880, "fields": {"orig_filename": "Rappoldi_Laura_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425", "author": "", "orig_id": 1410198}}, {"model": "metainfo.source", "pk": 5881, "fields": {"orig_filename": "Rappold_Ferdinand_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 424f.", "author": "", "orig_id": 1410196}}, {"model": "metainfo.source", "pk": 5882, "fields": {"orig_filename": "Rapp_Johann_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423", "author": "", "orig_id": 1410191}}, {"model": "metainfo.source", "pk": 5883, "fields": {"orig_filename": "Rapp_Josef_1780_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423", "author": "", "orig_id": 1410192}}, {"model": "metainfo.source", "pk": 5884, "fields": {"orig_filename": "Rapp_Ludwig_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 423f.", "author": "", "orig_id": 1410193}}, {"model": "metainfo.source", "pk": 5885, "fields": {"orig_filename": "Raschke_Hermann_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 425f.", "author": "", "orig_id": 1410273}}, {"model": "metainfo.source", "pk": 5886, "fields": {"orig_filename": "Raschke_Rudolf_1923_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426", "author": "", "orig_id": 1410274}}, {"model": "metainfo.source", "pk": 5887, "fields": {"orig_filename": "Rasim_Otto_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426", "author": "", "orig_id": 1410275}}, {"model": "metainfo.source", "pk": 5888, "fields": {"orig_filename": "Rasin_Alois_1867_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 426f.", "author": "", "orig_id": 1410276}}, {"model": "metainfo.source", "pk": 5889, "fields": {"orig_filename": "Raskaj_Slava_1877_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 427", "author": "", "orig_id": 1410277}}, {"model": "metainfo.source", "pk": 5890, "fields": {"orig_filename": "Rastic_Daniel_1794_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410280}}, {"model": "metainfo.source", "pk": 5891, "fields": {"orig_filename": "Rast_August_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 427f.", "author": "", "orig_id": 1410278}}, {"model": "metainfo.source", "pk": 5892, "fields": {"orig_filename": "Rast_Ferdinand-Gregor_1808_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410279}}, {"model": "metainfo.source", "pk": 5893, "fields": {"orig_filename": "Rataj_Jan_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428f.", "author": "", "orig_id": 1410284}}, {"model": "metainfo.source", "pk": 5894, "fields": {"orig_filename": "Rataj_Maciej_1884_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429", "author": "", "orig_id": 1410285}}, {"model": "metainfo.source", "pk": 5895, "fields": {"orig_filename": "Rathausky_Johann_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431f.", "author": "", "orig_id": 1410293}}, {"model": "metainfo.source", "pk": 5896, "fields": {"orig_filename": "Rathay_Emerich_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 432", "author": "", "orig_id": 1410294}}, {"model": "metainfo.source", "pk": 5897, "fields": {"orig_filename": "Rathner_Wilhelmine_1863_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 432", "author": "", "orig_id": 1410295}}, {"model": "metainfo.source", "pk": 5898, "fields": {"orig_filename": "Rathofer_Augustin_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410296}}, {"model": "metainfo.source", "pk": 5899, "fields": {"orig_filename": "Rath_Gyoergy_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429", "author": "", "orig_id": 1410286}}, {"model": "metainfo.source", "pk": 5900, "fields": {"orig_filename": "Rath_Heinrich_1792_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 429f.", "author": "", "orig_id": 1410287}}, {"model": "metainfo.source", "pk": 5901, "fields": {"orig_filename": "Rath_Josef_1772_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410288}}, {"model": "metainfo.source", "pk": 5902, "fields": {"orig_filename": "Rath_Karoly_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410289}}, {"model": "metainfo.source", "pk": 5903, "fields": {"orig_filename": "Rath_Karoly_1829_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 430", "author": "", "orig_id": 1410290}}, {"model": "metainfo.source", "pk": 5904, "fields": {"orig_filename": "Rath_Mor_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431", "author": "", "orig_id": 1410291}}, {"model": "metainfo.source", "pk": 5905, "fields": {"orig_filename": "Rath_Zoltan_1863_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 431", "author": "", "orig_id": 1410292}}, {"model": "metainfo.source", "pk": 5906, "fields": {"orig_filename": "Ratini_Luigi_1880_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410297}}, {"model": "metainfo.source", "pk": 5907, "fields": {"orig_filename": "Ratiu_Ioan_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433", "author": "", "orig_id": 1410373}}, {"model": "metainfo.source", "pk": 5908, "fields": {"orig_filename": "Ratzenberger_Franz_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434", "author": "", "orig_id": 1410376}}, {"model": "metainfo.source", "pk": 5909, "fields": {"orig_filename": "Ratzenhofer_Gustav_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434f.", "author": "", "orig_id": 1410377}}, {"model": "metainfo.source", "pk": 5910, "fields": {"orig_filename": "Ratz_Alfred_1882_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 433f.", "author": "", "orig_id": 1410374}}, {"model": "metainfo.source", "pk": 5911, "fields": {"orig_filename": "Ratz_Johann-Kaspar_1786_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 434", "author": "", "orig_id": 1410375}}, {"model": "metainfo.source", "pk": 5912, "fields": {"orig_filename": "Rat_Gherasim_1793_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 428", "author": "", "orig_id": 1410282}}, {"model": "metainfo.source", "pk": 5913, "fields": {"orig_filename": "Rauber_Eugen-Siegfried_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 435", "author": "", "orig_id": 1410378}}, {"model": "metainfo.source", "pk": 5914, "fields": {"orig_filename": "Rauchberg_Heinrich_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437f.", "author": "", "orig_id": 1410385}}, {"model": "metainfo.source", "pk": 5915, "fields": {"orig_filename": "Rauchinger_Heinrich_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438", "author": "", "orig_id": 1410386}}, {"model": "metainfo.source", "pk": 5916, "fields": {"orig_filename": "Rauch_Anton_1801_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 435", "author": "", "orig_id": 1410379}}, {"model": "metainfo.source", "pk": 5917, "fields": {"orig_filename": "Rauch_Felizian_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436", "author": "", "orig_id": 1410380}}, {"model": "metainfo.source", "pk": 5918, "fields": {"orig_filename": "Rauch_Johann_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436", "author": "", "orig_id": 1410381}}, {"model": "metainfo.source", "pk": 5919, "fields": {"orig_filename": "Rauch_Josef_1765_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 436f.", "author": "", "orig_id": 1410382}}, {"model": "metainfo.source", "pk": 5920, "fields": {"orig_filename": "Rauch_Levin_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437", "author": "", "orig_id": 1410383}}, {"model": "metainfo.source", "pk": 5921, "fields": {"orig_filename": "Rauch_Pavao_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 437", "author": "", "orig_id": 1410384}}, {"model": "metainfo.source", "pk": 5922, "fields": {"orig_filename": "Rauhofer_Josef_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438f.", "author": "", "orig_id": 1410388}}, {"model": "metainfo.source", "pk": 5923, "fields": {"orig_filename": "Rauh_Johann_1803_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 438", "author": "", "orig_id": 1410387}}, {"model": "metainfo.source", "pk": 5924, "fields": {"orig_filename": "Raunegger_Ferdinand_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 439", "author": "", "orig_id": 1410389}}, {"model": "metainfo.source", "pk": 5925, "fields": {"orig_filename": "Raunicher_Matteo_1776_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 439f.", "author": "", "orig_id": 1410390}}, {"model": "metainfo.source", "pk": 5926, "fields": {"orig_filename": "Raupenstrauch_Gustav-Adolf_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 440", "author": "", "orig_id": 1410391}}, {"model": "metainfo.source", "pk": 5927, "fields": {"orig_filename": "Rausar_Josef-Zdenek_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 440f.", "author": "", "orig_id": 1410392}}, {"model": "metainfo.source", "pk": 5928, "fields": {"orig_filename": "Rausch-Traubenberg_Franz_1743_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441", "author": "", "orig_id": 1410394}}, {"model": "metainfo.source", "pk": 5929, "fields": {"orig_filename": "Rauscher-Stainberg_Ernst_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443f.", "author": "", "orig_id": 1410470}}, {"model": "metainfo.source", "pk": 5930, "fields": {"orig_filename": "Rauscher_Jakob_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441f.", "author": "", "orig_id": 1410395}}, {"model": "metainfo.source", "pk": 5931, "fields": {"orig_filename": "Rauscher_Josef-Othmar_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 442f.", "author": "", "orig_id": 1410467}}, {"model": "metainfo.source", "pk": 5932, "fields": {"orig_filename": "Rauscher_Michael_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443", "author": "", "orig_id": 1410468}}, {"model": "metainfo.source", "pk": 5933, "fields": {"orig_filename": "Rauscher_Robert_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 443", "author": "", "orig_id": 1410469}}, {"model": "metainfo.source", "pk": 5934, "fields": {"orig_filename": "Rausch_Karl_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 441", "author": "", "orig_id": 1410393}}, {"model": "metainfo.source", "pk": 5935, "fields": {"orig_filename": "Rautenkranz_Josef-Frantisek-Miloslav_1776_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 444", "author": "", "orig_id": 1410471}}, {"model": "metainfo.source", "pk": 5936, "fields": {"orig_filename": "Rauter_Johann-Bapt-Albin_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 444f.", "author": "", "orig_id": 1410472}}, {"model": "metainfo.source", "pk": 5937, "fields": {"orig_filename": "Ravnikar_Matevz_1802_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445", "author": "", "orig_id": 1410473}}, {"model": "metainfo.source", "pk": 5938, "fields": {"orig_filename": "Raymann_Adolf_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446", "author": "", "orig_id": 1410476}}, {"model": "metainfo.source", "pk": 5939, "fields": {"orig_filename": "Rayman_Bohuslav_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445f.", "author": "", "orig_id": 1410475}}, {"model": "metainfo.source", "pk": 5940, "fields": {"orig_filename": "Ray_Pietro_1773_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 445", "author": "", "orig_id": 1410474}}, {"model": "metainfo.source", "pk": 5941, "fields": {"orig_filename": "Razga_Pal_1798_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446f.", "author": "", "orig_id": 1410478}}, {"model": "metainfo.source", "pk": 5942, "fields": {"orig_filename": "Razlag_Radoslav-Jakob_1826_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 447", "author": "", "orig_id": 1410479}}, {"model": "metainfo.source", "pk": 5943, "fields": {"orig_filename": "Razumovsky_Andreas_1752_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 447f.", "author": "", "orig_id": 1410480}}, {"model": "metainfo.source", "pk": 5944, "fields": {"orig_filename": "Razumovsky_Gregor_1759_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 448", "author": "", "orig_id": 1410481}}, {"model": "metainfo.source", "pk": 5945, "fields": {"orig_filename": "Razun_Matej_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 448", "author": "", "orig_id": 1410482}}, {"model": "metainfo.source", "pk": 5946, "fields": {"orig_filename": "Razus_Martin_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1", "author": "", "orig_id": 1406927}}, {"model": "metainfo.source", "pk": 5947, "fields": {"orig_filename": "Raz_Arnost_1884_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 446", "author": "", "orig_id": 1410477}}, {"model": "metainfo.source", "pk": 5948, "fields": {"orig_filename": "Reali_Giuseppe-Maria_1799_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 1", "author": "", "orig_id": 1406928}}, {"model": "metainfo.source", "pk": 5949, "fields": {"orig_filename": "Rebell_Josef_1787_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 2", "author": "", "orig_id": 1406930}}, {"model": "metainfo.source", "pk": 5950, "fields": {"orig_filename": "Raday-Rada_Gedeon_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369", "author": "", "orig_id": 1409705}}, {"model": "metainfo.source", "pk": 5951, "fields": {"orig_filename": "Raday-Rada_Gedeon_1841_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369", "author": "", "orig_id": 1409706}}, {"model": "metainfo.source", "pk": 5952, "fields": {"orig_filename": "Radek_Karl-Bernhardovic_1885_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 369f.", "author": "", "orig_id": 1409707}}, {"model": "metainfo.source", "pk": 5953, "fields": {"orig_filename": "Rademacher_Paul_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 370", "author": "", "orig_id": 1409708}}, {"model": "metainfo.source", "pk": 5954, "fields": {"orig_filename": "Radetzky-Radetz_Johann-Josef-Wenzel_1766_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 370f.", "author": "", "orig_id": 1409709}}, {"model": "metainfo.source", "pk": 5955, "fields": {"orig_filename": "Radicevic_Bozidar_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 373f.", "author": "", "orig_id": 1409713}}, {"model": "metainfo.source", "pk": 5956, "fields": {"orig_filename": "Radicevic_Branko_1824_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374", "author": "", "orig_id": 1409714}}, {"model": "metainfo.source", "pk": 5957, "fields": {"orig_filename": "Radics_Peter-Paul_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374", "author": "", "orig_id": 1409715}}, {"model": "metainfo.source", "pk": 5958, "fields": {"orig_filename": "Radic_Antun_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 372", "author": "", "orig_id": 1409711}}, {"model": "metainfo.source", "pk": 5959, "fields": {"orig_filename": "Radic_Stjepan_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 372f.", "author": "", "orig_id": 1409712}}, {"model": "metainfo.source", "pk": 5960, "fields": {"orig_filename": "Radimsky_Vaclav_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 374f.", "author": "", "orig_id": 1409716}}, {"model": "metainfo.source", "pk": 5961, "fields": {"orig_filename": "Radimsky_Vaclav_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375", "author": "", "orig_id": 1409717}}, {"model": "metainfo.source", "pk": 5962, "fields": {"orig_filename": "Radimsky_Wenzel_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375", "author": "", "orig_id": 1409718}}, {"model": "metainfo.source", "pk": 5963, "fields": {"orig_filename": "Radinger-Radinghofen_Karl_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 376f.", "author": "", "orig_id": 1409720}}, {"model": "metainfo.source", "pk": 5964, "fields": {"orig_filename": "Radinger_Johann_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 375f.", "author": "", "orig_id": 1409719}}, {"model": "metainfo.source", "pk": 5965, "fields": {"orig_filename": "Radivojevich_Paul_1759_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377", "author": "", "orig_id": 1409721}}, {"model": "metainfo.source", "pk": 5966, "fields": {"orig_filename": "Radi_Lorenzo_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 371f.", "author": "", "orig_id": 1409710}}, {"model": "metainfo.source", "pk": 5967, "fields": {"orig_filename": "Radler_Friedrich-Johann_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 378f.", "author": "", "orig_id": 1409795}}, {"model": "metainfo.source", "pk": 5968, "fields": {"orig_filename": "Radlinsky_Andrej-Ludovit_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 379", "author": "", "orig_id": 1409796}}, {"model": "metainfo.source", "pk": 5969, "fields": {"orig_filename": "Radl_Anton_1774_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377", "author": "", "orig_id": 1409722}}, {"model": "metainfo.source", "pk": 5970, "fields": {"orig_filename": "Radl_Emanuel_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 377f.", "author": "", "orig_id": 1409723}}, {"model": "metainfo.source", "pk": 5971, "fields": {"orig_filename": "Radnitzky_August_1810_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 379", "author": "", "orig_id": 1409797}}, {"model": "metainfo.source", "pk": 5972, "fields": {"orig_filename": "Radnitzky_Franz_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409798}}, {"model": "metainfo.source", "pk": 5973, "fields": {"orig_filename": "Radnitzky_Karl_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409799}}, {"model": "metainfo.source", "pk": 5974, "fields": {"orig_filename": "Rado-Hilgermann_Laura_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380f.", "author": "", "orig_id": 1409801}}, {"model": "metainfo.source", "pk": 5975, "fields": {"orig_filename": "Rado-Szent-Martony_Gedeon_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381", "author": "", "orig_id": 1409802}}, {"model": "metainfo.source", "pk": 5976, "fields": {"orig_filename": "Rados_Gusztav_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381", "author": "", "orig_id": 1409803}}, {"model": "metainfo.source", "pk": 5977, "fields": {"orig_filename": "Rado_Antal_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 380", "author": "", "orig_id": 1409800}}, {"model": "metainfo.source", "pk": 5978, "fields": {"orig_filename": "Radvanszky-Radvany-Sajokaza_Bela_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 381f.", "author": "", "orig_id": 1409804}}, {"model": "metainfo.source", "pk": 5979, "fields": {"orig_filename": "Radwanski_Feliks-Pius_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 382f.", "author": "", "orig_id": 1409806}}, {"model": "metainfo.source", "pk": 5980, "fields": {"orig_filename": "Radwanski_Feliks_1789_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 382", "author": "", "orig_id": 1409805}}, {"model": "metainfo.source", "pk": 5981, "fields": {"orig_filename": "Radzikowski-Eljasz_Jan-Kanty-Walery_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 383", "author": "", "orig_id": 1409807}}, {"model": "metainfo.source", "pk": 5982, "fields": {"orig_filename": "Radzikowski-Eljasz_Stanislaw-Wojciech_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 383f.", "author": "", "orig_id": 1409808}}, {"model": "metainfo.source", "pk": 5983, "fields": {"orig_filename": "Radziminski-Luba_Zygmunt_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 384", "author": "", "orig_id": 1409809}}, {"model": "metainfo.source", "pk": 5984, "fields": {"orig_filename": "Radziszewski_Bronislaw_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 384", "author": "", "orig_id": 1409810}}, {"model": "metainfo.source", "pk": 5985, "fields": {"orig_filename": "Radziwonski_Jan_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409811}}, {"model": "metainfo.source", "pk": 5986, "fields": {"orig_filename": "Rad_Jakob-Christof_1799_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 366f.", "author": "", "orig_id": 1409633}}, {"model": "metainfo.source", "pk": 5987, "fields": {"orig_filename": "Raedler_Karl-Robert_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409812}}, {"model": "metainfo.source", "pk": 5988, "fields": {"orig_filename": "Raedlhammer_Karl_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385", "author": "", "orig_id": 1409813}}, {"model": "metainfo.source", "pk": 5989, "fields": {"orig_filename": "Raevskij_Michail-Fedorovic_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 385f.", "author": "", "orig_id": 1409814}}, {"model": "metainfo.source", "pk": 5990, "fields": {"orig_filename": "Rafacz_Jozef_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 386", "author": "", "orig_id": 1409815}}, {"model": "metainfo.source", "pk": 5991, "fields": {"orig_filename": "Rafael_Franz-X_1816_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 386f.", "author": "", "orig_id": 1409816}}, {"model": "metainfo.source", "pk": 5992, "fields": {"orig_filename": "Rafes_Moses_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387", "author": "", "orig_id": 1409817}}, {"model": "metainfo.source", "pk": 5993, "fields": {"orig_filename": "Raffalt_Ignaz_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387", "author": "", "orig_id": 1409886}}, {"model": "metainfo.source", "pk": 5994, "fields": {"orig_filename": "Raffalt_Johann-Gualbert_1836_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 387f.", "author": "", "orig_id": 1409887}}, {"model": "metainfo.source", "pk": 5995, "fields": {"orig_filename": "Raffay_Leopold_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388", "author": "", "orig_id": 1409888}}, {"model": "metainfo.source", "pk": 5996, "fields": {"orig_filename": "Raffay_Sandor_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388", "author": "", "orig_id": 1409745}}, {"model": "metainfo.source", "pk": 5997, "fields": {"orig_filename": "Raffeiner_Emanuel_1881_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 388f.", "author": "", "orig_id": 1409889}}, {"model": "metainfo.source", "pk": 5998, "fields": {"orig_filename": "Raffeiner_Johann-Stefan_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 389", "author": "", "orig_id": 1409890}}, {"model": "metainfo.source", "pk": 5999, "fields": {"orig_filename": "Raffelsberger_Franz_1793_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 389f.", "author": "", "orig_id": 1409891}}, {"model": "metainfo.source", "pk": 6000, "fields": {"orig_filename": "Raffl_Franz_1775_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390", "author": "", "orig_id": 1409892}}, {"model": "metainfo.source", "pk": 6001, "fields": {"orig_filename": "Raffl_Johannes_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390", "author": "", "orig_id": 1409893}}, {"model": "metainfo.source", "pk": 6002, "fields": {"orig_filename": "Rahl_Karl-Heinrich_1779_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409895}}, {"model": "metainfo.source", "pk": 6003, "fields": {"orig_filename": "Rahl_Karl_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 390f.", "author": "", "orig_id": 1409894}}, {"model": "metainfo.source", "pk": 6004, "fields": {"orig_filename": "Raicevich_Massimiliano-Roberto_1878_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409897}}, {"model": "metainfo.source", "pk": 6005, "fields": {"orig_filename": "Raic_Bozidar_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 391", "author": "", "orig_id": 1409896}}, {"model": "metainfo.source", "pk": 6006, "fields": {"orig_filename": "Raimann_Emil_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409898}}, {"model": "metainfo.source", "pk": 6007, "fields": {"orig_filename": "Raimann_Franz_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409899}}, {"model": "metainfo.source", "pk": 6008, "fields": {"orig_filename": "Raimann_Johann-Nep_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392", "author": "", "orig_id": 1409900}}, {"model": "metainfo.source", "pk": 6009, "fields": {"orig_filename": "Raimann_Rudolf_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 392f.", "author": "", "orig_id": 1409901}}, {"model": "metainfo.source", "pk": 6010, "fields": {"orig_filename": "Raimondi_Antonio_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 393", "author": "", "orig_id": 1409902}}, {"model": "metainfo.source", "pk": 6011, "fields": {"orig_filename": "Raimondi_Lorenz_1752_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 393f.", "author": "", "orig_id": 1409903}}, {"model": "metainfo.source", "pk": 6012, "fields": {"orig_filename": "Raimund_Ferdinand_1790_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 394f.", "author": "", "orig_id": 1409904}}, {"model": "metainfo.source", "pk": 6013, "fields": {"orig_filename": "Rainer-Ferdinand___1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 395f.", "author": "", "orig_id": 1409905}}, {"model": "metainfo.source", "pk": 6014, "fields": {"orig_filename": "Rainer-Harbach_Hans_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398f.", "author": "", "orig_id": 1409982}}, {"model": "metainfo.source", "pk": 6015, "fields": {"orig_filename": "Rainer-Josef___1783_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 396", "author": "", "orig_id": 1409906}}, {"model": "metainfo.source", "pk": 6016, "fields": {"orig_filename": "Rainer_Johann-Georg_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 396", "author": "", "orig_id": 1409907}}, {"model": "metainfo.source", "pk": 6017, "fields": {"orig_filename": "Rainer_Josef_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397", "author": "", "orig_id": 1409908}}, {"model": "metainfo.source", "pk": 6018, "fields": {"orig_filename": "Rainer_Ludwig_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397", "author": "", "orig_id": 1409909}}, {"model": "metainfo.source", "pk": 6019, "fields": {"orig_filename": "Rainer_Oskar_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 397f.", "author": "", "orig_id": 1409910}}, {"model": "metainfo.source", "pk": 6020, "fields": {"orig_filename": "Rainer_Paul_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398", "author": "", "orig_id": 1409980}}, {"model": "metainfo.source", "pk": 6021, "fields": {"orig_filename": "Rainer_Virgil_1871_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 398", "author": "", "orig_id": 1409981}}, {"model": "metainfo.source", "pk": 6022, "fields": {"orig_filename": "Rainoldi_Paul_1781_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 399f.", "author": "", "orig_id": 1409984}}, {"model": "metainfo.source", "pk": 6023, "fields": {"orig_filename": "Rainold_Karl-Eduard_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 399", "author": "", "orig_id": 1409983}}, {"model": "metainfo.source", "pk": 6024, "fields": {"orig_filename": "Raisp-Caliga_Erwin_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400", "author": "", "orig_id": 1409986}}, {"model": "metainfo.source", "pk": 6025, "fields": {"orig_filename": "Rais_Karel-Vaclav_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400", "author": "", "orig_id": 1409985}}, {"model": "metainfo.source", "pk": 6026, "fields": {"orig_filename": "Rajacic-Brinski_Josif_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 400f.", "author": "", "orig_id": 1409987}}, {"model": "metainfo.source", "pk": 6027, "fields": {"orig_filename": "Rajkovic_Djordje_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401", "author": "", "orig_id": 1409988}}, {"model": "metainfo.source", "pk": 6028, "fields": {"orig_filename": "Rajman_Franz-Josef_1762_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401", "author": "", "orig_id": 1409989}}, {"model": "metainfo.source", "pk": 6029, "fields": {"orig_filename": "Rakic_Vikentije_1750_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409991}}, {"model": "metainfo.source", "pk": 6030, "fields": {"orig_filename": "Rakosi-Mindszent_Jenoe_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402f.", "author": "", "orig_id": 1409994}}, {"model": "metainfo.source", "pk": 6031, "fields": {"orig_filename": "Rakosi_Szidi_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409992}}, {"model": "metainfo.source", "pk": 6032, "fields": {"orig_filename": "Rakosi_Viktor_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 402", "author": "", "orig_id": 1409993}}, {"model": "metainfo.source", "pk": 6033, "fields": {"orig_filename": "Rakous_Vojtech_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 403", "author": "", "orig_id": 1409995}}, {"model": "metainfo.source", "pk": 6034, "fields": {"orig_filename": "Rakovac_Dragutin_1813_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 403f.", "author": "", "orig_id": 1409996}}, {"model": "metainfo.source", "pk": 6035, "fields": {"orig_filename": "Rakovszky-Nagyrako-Nagyselmecz_Adalbert_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404", "author": "", "orig_id": 1409997}}, {"model": "metainfo.source", "pk": 6036, "fields": {"orig_filename": "Rakowianu_Robert_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404", "author": "", "orig_id": 1409998}}, {"model": "metainfo.source", "pk": 6037, "fields": {"orig_filename": "Rakowitsch_Adolf_1860_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 404f.", "author": "", "orig_id": 1409999}}, {"model": "metainfo.source", "pk": 6038, "fields": {"orig_filename": "Rakusch_Julius_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410000}}, {"model": "metainfo.source", "pk": 6039, "fields": {"orig_filename": "Rak_Jan_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 401f.", "author": "", "orig_id": 1409990}}, {"model": "metainfo.source", "pk": 6040, "fields": {"orig_filename": "Ralli_Cimone_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410001}}, {"model": "metainfo.source", "pk": 6041, "fields": {"orig_filename": "Ralli_Paolo_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 405", "author": "", "orig_id": 1410002}}, {"model": "metainfo.source", "pk": 6042, "fields": {"orig_filename": "Ramberg_Arthur-Georg_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406", "author": "", "orig_id": 1410074}}, {"model": "metainfo.source", "pk": 6043, "fields": {"orig_filename": "Ramberg_August_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406", "author": "", "orig_id": 1410075}}, {"model": "metainfo.source", "pk": 6044, "fields": {"orig_filename": "Ramberg_Hermann_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 406f.", "author": "", "orig_id": 1410076}}, {"model": "metainfo.source", "pk": 6045, "fields": {"orig_filename": "Ramek_Rudolf_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 407", "author": "", "orig_id": 1410077}}, {"model": "metainfo.source", "pk": 6046, "fields": {"orig_filename": "Ramello_Luigi_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 407f.", "author": "", "orig_id": 1410078}}, {"model": "metainfo.source", "pk": 6047, "fields": {"orig_filename": "Ramelmayr_Adam_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408", "author": "", "orig_id": 1410079}}, {"model": "metainfo.source", "pk": 6048, "fields": {"orig_filename": "Ramming-Riedkirchen_Wilhelm_1815_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408", "author": "", "orig_id": 1410080}}, {"model": "metainfo.source", "pk": 6049, "fields": {"orig_filename": "Ramsauer_Ernst_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 408f.", "author": "", "orig_id": 1410081}}, {"model": "metainfo.source", "pk": 6050, "fields": {"orig_filename": "Ramsauer_Johann-Georg_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 409", "author": "", "orig_id": 1410082}}, {"model": "metainfo.source", "pk": 6051, "fields": {"orig_filename": "Ramult_Stefan-Samuel_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 409f.", "author": "", "orig_id": 1410083}}, {"model": "metainfo.source", "pk": 6052, "fields": {"orig_filename": "Ramus_Pierre_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 410", "author": "", "orig_id": 1410084}}, {"model": "metainfo.source", "pk": 6053, "fields": {"orig_filename": "Pulgher_Domenico_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410746}}, {"model": "metainfo.source", "pk": 6054, "fields": {"orig_filename": "Pulic_Juraj_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410816}}, {"model": "metainfo.source", "pk": 6055, "fields": {"orig_filename": "Pulitzer_Josef_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330f.", "author": "", "orig_id": 1410817}}, {"model": "metainfo.source", "pk": 6056, "fields": {"orig_filename": "Pulkrabek_Josef_1887_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 331", "author": "", "orig_id": 1410818}}, {"model": "metainfo.source", "pk": 6057, "fields": {"orig_filename": "Pulle_Leopoldo_1835_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 331f.", "author": "", "orig_id": 1410819}}, {"model": "metainfo.source", "pk": 6058, "fields": {"orig_filename": "Pulszky-Cselfalva-Lubocz_Agost_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 332", "author": "", "orig_id": 1410820}}, {"model": "metainfo.source", "pk": 6059, "fields": {"orig_filename": "Pulszky-Cselfalva-Lubocz_Ferenc_1814_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 332f.", "author": "", "orig_id": 1410821}}, {"model": "metainfo.source", "pk": 6060, "fields": {"orig_filename": "Pult_Simeon_1740_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333", "author": "", "orig_id": 1410822}}, {"model": "metainfo.source", "pk": 6061, "fields": {"orig_filename": "Puluj_Johann_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333", "author": "", "orig_id": 1410823}}, {"model": "metainfo.source", "pk": 6062, "fields": {"orig_filename": "Pulz_Ludwig_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 333f.", "author": "", "orig_id": 1410824}}, {"model": "metainfo.source", "pk": 6063, "fields": {"orig_filename": "Pummerer_Anton-Georg_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334", "author": "", "orig_id": 1410825}}, {"model": "metainfo.source", "pk": 6064, "fields": {"orig_filename": "Pumnul_Aron_1818_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334", "author": "", "orig_id": 1410826}}, {"model": "metainfo.source", "pk": 6065, "fields": {"orig_filename": "Pungur_Gyula_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 334f.", "author": "", "orig_id": 1410827}}, {"model": "metainfo.source", "pk": 6066, "fields": {"orig_filename": "Puntar_Josip_1884_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 335", "author": "", "orig_id": 1410828}}, {"model": "metainfo.source", "pk": 6067, "fields": {"orig_filename": "Puntigam_Anton_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 335f.", "author": "", "orig_id": 1410829}}, {"model": "metainfo.source", "pk": 6068, "fields": {"orig_filename": "Puntschart_Paul_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336", "author": "", "orig_id": 1410830}}, {"model": "metainfo.source", "pk": 6069, "fields": {"orig_filename": "Puntschart_Valentin_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336", "author": "", "orig_id": 1410831}}, {"model": "metainfo.source", "pk": 6070, "fields": {"orig_filename": "Pupin_Michael-Idvorsky_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 336f.", "author": "", "orig_id": 1410832}}, {"model": "metainfo.source", "pk": 6071, "fields": {"orig_filename": "Pupovac_Dominik_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337", "author": "", "orig_id": 1410833}}, {"model": "metainfo.source", "pk": 6072, "fields": {"orig_filename": "Pupp_Julius_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337", "author": "", "orig_id": 1410834}}, {"model": "metainfo.source", "pk": 6073, "fields": {"orig_filename": "Purger_Johann-Bapt_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 337f.", "author": "", "orig_id": 1410835}}, {"model": "metainfo.source", "pk": 6074, "fields": {"orig_filename": "Purkarthofer_Matthias_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338", "author": "", "orig_id": 1410836}}, {"model": "metainfo.source", "pk": 6075, "fields": {"orig_filename": "Purkyne_Cyrill_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338", "author": "", "orig_id": 1410837}}, {"model": "metainfo.source", "pk": 6076, "fields": {"orig_filename": "Purkyne_Emanuel_1831_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 338f.", "author": "", "orig_id": 1410838}}, {"model": "metainfo.source", "pk": 6077, "fields": {"orig_filename": "Purkyne_Jan-Ev_1787_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 339", "author": "", "orig_id": 1410905}}, {"model": "metainfo.source", "pk": 6078, "fields": {"orig_filename": "Purkyne_Josef-Heinrich_1793_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 339f.", "author": "", "orig_id": 1410906}}, {"model": "metainfo.source", "pk": 6079, "fields": {"orig_filename": "Purkyne_Karel_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340", "author": "", "orig_id": 1410907}}, {"model": "metainfo.source", "pk": 6080, "fields": {"orig_filename": "Purschka_Norbert_1813_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340", "author": "", "orig_id": 1410908}}, {"model": "metainfo.source", "pk": 6081, "fields": {"orig_filename": "Purtscheller_Ludwig_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 340f.", "author": "", "orig_id": 1410910}}, {"model": "metainfo.source", "pk": 6082, "fields": {"orig_filename": "Purtscher-Eschenburg_Franz-X_1768_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342", "author": "", "orig_id": 1410913}}, {"model": "metainfo.source", "pk": 6083, "fields": {"orig_filename": "Purtscher_Adolf_1819_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 341", "author": "", "orig_id": 1410911}}, {"model": "metainfo.source", "pk": 6084, "fields": {"orig_filename": "Purtscher_Othmar_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 341f.", "author": "", "orig_id": 1410912}}, {"model": "metainfo.source", "pk": 6085, "fields": {"orig_filename": "Puscariu_Emil_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342", "author": "", "orig_id": 1410914}}, {"model": "metainfo.source", "pk": 6086, "fields": {"orig_filename": "Puscariu_Sextil_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 342f.", "author": "", "orig_id": 1410915}}, {"model": "metainfo.source", "pk": 6087, "fields": {"orig_filename": "Puschi_Alberto_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343", "author": "", "orig_id": 1410917}}, {"model": "metainfo.source", "pk": 6088, "fields": {"orig_filename": "Puschl_Karl_1825_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343f.", "author": "", "orig_id": 1410918}}, {"model": "metainfo.source", "pk": 6089, "fields": {"orig_filename": "Puschl_Leopold_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 344", "author": "", "orig_id": 1410919}}, {"model": "metainfo.source", "pk": 6090, "fields": {"orig_filename": "Puschmann_Theodor_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 344", "author": "", "orig_id": 1410920}}, {"model": "metainfo.source", "pk": 6091, "fields": {"orig_filename": "Pusch_Karl_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 343", "author": "", "orig_id": 1410916}}, {"model": "metainfo.source", "pk": 6092, "fields": {"orig_filename": "Puskas-Ditro_Tivadar_1844_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345", "author": "", "orig_id": 1410921}}, {"model": "metainfo.source", "pk": 6093, "fields": {"orig_filename": "Pusswald_Karl_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345", "author": "", "orig_id": 1410922}}, {"model": "metainfo.source", "pk": 6094, "fields": {"orig_filename": "Puszet_Ludwik_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 345f.", "author": "", "orig_id": 1410923}}, {"model": "metainfo.source", "pk": 6095, "fields": {"orig_filename": "Puthon_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 346", "author": "", "orig_id": 1410924}}, {"model": "metainfo.source", "pk": 6096, "fields": {"orig_filename": "Putick_Viljem_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 346f.", "author": "", "orig_id": 1410926}}, {"model": "metainfo.source", "pk": 6097, "fields": {"orig_filename": "Putinati_Alessandro_1801_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410927}}, {"model": "metainfo.source", "pk": 6098, "fields": {"orig_filename": "Putinati_Francesco_1775_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410928}}, {"model": "metainfo.source", "pk": 6099, "fields": {"orig_filename": "Putzer-Reibegg_Johann_1801_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348f.", "author": "", "orig_id": 1409515}}, {"model": "metainfo.source", "pk": 6100, "fields": {"orig_filename": "Putz_Franz_1873_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347", "author": "", "orig_id": 1410929}}, {"model": "metainfo.source", "pk": 6101, "fields": {"orig_filename": "Putz_Gottlieb_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 347f.", "author": "", "orig_id": 1410930}}, {"model": "metainfo.source", "pk": 6102, "fields": {"orig_filename": "Putz_Josef_1877_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348", "author": "", "orig_id": 1410931}}, {"model": "metainfo.source", "pk": 6103, "fields": {"orig_filename": "Putz_Leo_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 348", "author": "", "orig_id": 1409514}}, {"model": "metainfo.source", "pk": 6104, "fields": {"orig_filename": "Puzyna_Jan_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349", "author": "", "orig_id": 1409517}}, {"model": "metainfo.source", "pk": 6105, "fields": {"orig_filename": "Puzyna_Jozef_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 349f.", "author": "", "orig_id": 1409518}}, {"model": "metainfo.source", "pk": 6106, "fields": {"orig_filename": "Pyrker-Felsoe-Eoer_Johann-Ladislaus_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 350", "author": "", "orig_id": 1409519}}, {"model": "metainfo.source", "pk": 6107, "fields": {"orig_filename": "Quadrat_Bernhard_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 350f.", "author": "", "orig_id": 1409520}}, {"model": "metainfo.source", "pk": 6108, "fields": {"orig_filename": "Quadrio_Maurizio_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351f.", "author": "", "orig_id": 1409523}}, {"model": "metainfo.source", "pk": 6109, "fields": {"orig_filename": "Quadri_Antonio_1776_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351", "author": "", "orig_id": 1409521}}, {"model": "metainfo.source", "pk": 6110, "fields": {"orig_filename": "Quadri_Giovanni-Batt_1780_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 351", "author": "", "orig_id": 1409522}}, {"model": "metainfo.source", "pk": 6111, "fields": {"orig_filename": "Quarenghi_Giacomo-Antonio-Domenico_1744_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 352", "author": "", "orig_id": 1409524}}, {"model": "metainfo.source", "pk": 6112, "fields": {"orig_filename": "Quarenghi_Guglielmo_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 352f.", "author": "", "orig_id": 1409525}}, {"model": "metainfo.source", "pk": 6113, "fields": {"orig_filename": "Quast_Johann-Zacharias_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 353", "author": "", "orig_id": 1409526}}, {"model": "metainfo.source", "pk": 6114, "fields": {"orig_filename": "Querena_Lattanzio_1768_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 353f.", "author": "", "orig_id": 1409527}}, {"model": "metainfo.source", "pk": 6115, "fields": {"orig_filename": "Querini-Stampalia_Giovanni_1799_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354", "author": "", "orig_id": 1409528}}, {"model": "metainfo.source", "pk": 6116, "fields": {"orig_filename": "Quidenus_Franz_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354", "author": "", "orig_id": 1409529}}, {"model": "metainfo.source", "pk": 6117, "fields": {"orig_filename": "Quiquerez-Beaujeu_Ferdo_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355", "author": "", "orig_id": 1409531}}, {"model": "metainfo.source", "pk": 6118, "fields": {"orig_filename": "Quiquerez_Hermann_1849_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 354f.", "author": "", "orig_id": 1409530}}, {"model": "metainfo.source", "pk": 6119, "fields": {"orig_filename": "Quittner_Rudolf_1872_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355", "author": "", "orig_id": 1409532}}, {"model": "metainfo.source", "pk": 6120, "fields": {"orig_filename": "Raab-Rabenau_Karl_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357", "author": "", "orig_id": 1409538}}, {"model": "metainfo.source", "pk": 6121, "fields": {"orig_filename": "Raabe_Josef-Ludwig_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357f.", "author": "", "orig_id": 1409539}}, {"model": "metainfo.source", "pk": 6122, "fields": {"orig_filename": "Raabe_Karl-August_1804_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358", "author": "", "orig_id": 1409610}}, {"model": "metainfo.source", "pk": 6123, "fields": {"orig_filename": "Raabl-Werner_Heinrich_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358", "author": "", "orig_id": 1409611}}, {"model": "metainfo.source", "pk": 6124, "fields": {"orig_filename": "Raab_Franz_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 355f.", "author": "", "orig_id": 1409533}}, {"model": "metainfo.source", "pk": 6125, "fields": {"orig_filename": "Raab_Georg-Martin-Ignaz_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356", "author": "", "orig_id": 1409534}}, {"model": "metainfo.source", "pk": 6126, "fields": {"orig_filename": "Raab_Isidor_1826_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356", "author": "", "orig_id": 1409535}}, {"model": "metainfo.source", "pk": 6127, "fields": {"orig_filename": "Raab_Johann_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 356f.", "author": "", "orig_id": 1409536}}, {"model": "metainfo.source", "pk": 6128, "fields": {"orig_filename": "Raab_Josef_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 357", "author": "", "orig_id": 1409537}}, {"model": "metainfo.source", "pk": 6129, "fields": {"orig_filename": "Rabboni_Giuseppe_1800_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409613}}, {"model": "metainfo.source", "pk": 6130, "fields": {"orig_filename": "Rabeder_Simon_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409614}}, {"model": "metainfo.source", "pk": 6131, "fields": {"orig_filename": "Rabensteiner_Augustin_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359", "author": "", "orig_id": 1409615}}, {"model": "metainfo.source", "pk": 6132, "fields": {"orig_filename": "Rabensteiner_Eduard_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 359f.", "author": "", "orig_id": 1409616}}, {"model": "metainfo.source", "pk": 6133, "fields": {"orig_filename": "Rabl_Hans_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 360", "author": "", "orig_id": 1409617}}, {"model": "metainfo.source", "pk": 6134, "fields": {"orig_filename": "Rabl_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 360f.", "author": "", "orig_id": 1409618}}, {"model": "metainfo.source", "pk": 6135, "fields": {"orig_filename": "Rabl_Karl_1787_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361", "author": "", "orig_id": 1409744}}, {"model": "metainfo.source", "pk": 6136, "fields": {"orig_filename": "Rabl_Karl_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361", "author": "", "orig_id": 1409619}}, {"model": "metainfo.source", "pk": 6137, "fields": {"orig_filename": "Rabl_Walter_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 361f.", "author": "", "orig_id": 1409620}}, {"model": "metainfo.source", "pk": 6138, "fields": {"orig_filename": "Rab_Vaclav_1804_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 358f.", "author": "", "orig_id": 1409612}}, {"model": "metainfo.source", "pk": 6139, "fields": {"orig_filename": "Racchetti_Alessandro_1789_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409621}}, {"model": "metainfo.source", "pk": 6140, "fields": {"orig_filename": "Racchetti_Vincenzo_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409622}}, {"model": "metainfo.source", "pk": 6141, "fields": {"orig_filename": "Racek_Adolf_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362", "author": "", "orig_id": 1409623}}, {"model": "metainfo.source", "pk": 6142, "fields": {"orig_filename": "Rachmann_Wilhelm_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 362f.", "author": "", "orig_id": 1409624}}, {"model": "metainfo.source", "pk": 6143, "fields": {"orig_filename": "Raciborski_Aleksander_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 363", "author": "", "orig_id": 1409625}}, {"model": "metainfo.source", "pk": 6144, "fields": {"orig_filename": "Raciborski_Marian_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 363f.", "author": "", "orig_id": 1409626}}, {"model": "metainfo.source", "pk": 6145, "fields": {"orig_filename": "Racic_Josip_1885_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 364", "author": "", "orig_id": 1409627}}, {"model": "metainfo.source", "pk": 6146, "fields": {"orig_filename": "Racki_Franjo_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 364f.", "author": "", "orig_id": 1409628}}, {"model": "metainfo.source", "pk": 6147, "fields": {"orig_filename": "Raczynski_Jan-Rudolf_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 366", "author": "", "orig_id": 1409632}}, {"model": "metainfo.source", "pk": 6148, "fields": {"orig_filename": "Racz_Kalman_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365", "author": "", "orig_id": 1409629}}, {"model": "metainfo.source", "pk": 6149, "fields": {"orig_filename": "Racz_Karoly_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365", "author": "", "orig_id": 1409630}}, {"model": "metainfo.source", "pk": 6150, "fields": {"orig_filename": "Racz_Lajos_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 365f.", "author": "", "orig_id": 1409631}}, {"model": "metainfo.source", "pk": 6151, "fields": {"orig_filename": "Radacsi_Gyoergy_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367", "author": "", "orig_id": 1409700}}, {"model": "metainfo.source", "pk": 6152, "fields": {"orig_filename": "Radaelli_Giuseppe_1833_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367", "author": "", "orig_id": 1409701}}, {"model": "metainfo.source", "pk": 6153, "fields": {"orig_filename": "Radakovics_Jozsef_1823_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 368", "author": "", "orig_id": 1409703}}, {"model": "metainfo.source", "pk": 6154, "fields": {"orig_filename": "Raday-Rada_Gedeon_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 368f.", "author": "", "orig_id": 1409704}}, {"model": "metainfo.source", "pk": 6155, "fields": {"orig_filename": "Prochaska_Frantisek-X_1740_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410364}}, {"model": "metainfo.source", "pk": 6156, "fields": {"orig_filename": "Prochaska_Frantisek_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292f.", "author": "", "orig_id": 1410365}}, {"model": "metainfo.source", "pk": 6157, "fields": {"orig_filename": "Prochaska_Frantisek_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 293", "author": "", "orig_id": 1410366}}, {"model": "metainfo.source", "pk": 6158, "fields": {"orig_filename": "Prochaska_Frantisek_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 293f.", "author": "", "orig_id": 1410367}}, {"model": "metainfo.source", "pk": 6159, "fields": {"orig_filename": "Prochaska_Georg_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294", "author": "", "orig_id": 1410368}}, {"model": "metainfo.source", "pk": 6160, "fields": {"orig_filename": "Prochaska_Ignaz-Josef_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294", "author": "", "orig_id": 1409743}}, {"model": "metainfo.source", "pk": 6161, "fields": {"orig_filename": "Prochaska_Josef-Vladimir_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 294f.", "author": "", "orig_id": 1410369}}, {"model": "metainfo.source", "pk": 6162, "fields": {"orig_filename": "Prochaska_Julius_1859_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295", "author": "", "orig_id": 1410370}}, {"model": "metainfo.source", "pk": 6163, "fields": {"orig_filename": "Prochaska_Julius_1863_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295", "author": "", "orig_id": 1410371}}, {"model": "metainfo.source", "pk": 6164, "fields": {"orig_filename": "Prochaska_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 295f.", "author": "", "orig_id": 1410372}}, {"model": "metainfo.source", "pk": 6165, "fields": {"orig_filename": "Prochaska_Ludevit_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 296", "author": "", "orig_id": 1410443}}, {"model": "metainfo.source", "pk": 6166, "fields": {"orig_filename": "Prochaska_Ottokar_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 296f.", "author": "", "orig_id": 1410444}}, {"model": "metainfo.source", "pk": 6167, "fields": {"orig_filename": "Prochaska_Ottokar_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297", "author": "", "orig_id": 1410445}}, {"model": "metainfo.source", "pk": 6168, "fields": {"orig_filename": "Prochaska_Robert_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297", "author": "", "orig_id": 1410446}}, {"model": "metainfo.source", "pk": 6169, "fields": {"orig_filename": "Prochaska_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 297f.", "author": "", "orig_id": 1410447}}, {"model": "metainfo.source", "pk": 6170, "fields": {"orig_filename": "Proch_Heinrich_1809_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 290f.", "author": "", "orig_id": 1410359}}, {"model": "metainfo.source", "pk": 6171, "fields": {"orig_filename": "Prockner_Franz-Kajetan_1783_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298", "author": "", "orig_id": 1410449}}, {"model": "metainfo.source", "pk": 6172, "fields": {"orig_filename": "Procksch_Rudolf_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298f.", "author": "", "orig_id": 1410450}}, {"model": "metainfo.source", "pk": 6173, "fields": {"orig_filename": "Prodan_Ivo_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299", "author": "", "orig_id": 1410451}}, {"model": "metainfo.source", "pk": 6174, "fields": {"orig_filename": "Prodinger_Hans_1887_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299", "author": "", "orig_id": 1410452}}, {"model": "metainfo.source", "pk": 6175, "fields": {"orig_filename": "Prodinger_Karl_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 299f.", "author": "", "orig_id": 1410453}}, {"model": "metainfo.source", "pk": 6176, "fields": {"orig_filename": "Proell_Karl_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300", "author": "", "orig_id": 1410454}}, {"model": "metainfo.source", "pk": 6177, "fields": {"orig_filename": "Proell_Laurenz_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300", "author": "", "orig_id": 1410455}}, {"model": "metainfo.source", "pk": 6178, "fields": {"orig_filename": "Profeld_Hubert_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 300f.", "author": "", "orig_id": 1410456}}, {"model": "metainfo.source", "pk": 6179, "fields": {"orig_filename": "Prokesch-Osten_Anton_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 301f.", "author": "", "orig_id": 1410457}}, {"model": "metainfo.source", "pk": 6180, "fields": {"orig_filename": "Prokop_August_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302", "author": "", "orig_id": 1410460}}, {"model": "metainfo.source", "pk": 6181, "fields": {"orig_filename": "Prokop_Josef_1898_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302", "author": "", "orig_id": 1410461}}, {"model": "metainfo.source", "pk": 6182, "fields": {"orig_filename": "Prokosch_Anton_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 302f.", "author": "", "orig_id": 1410462}}, {"model": "metainfo.source", "pk": 6183, "fields": {"orig_filename": "Prokosch_Eduard_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 303", "author": "", "orig_id": 1410463}}, {"model": "metainfo.source", "pk": 6184, "fields": {"orig_filename": "Proksch_Anton_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 303", "author": "", "orig_id": 1410464}}, {"model": "metainfo.source", "pk": 6185, "fields": {"orig_filename": "Proksch_Johann-Karl_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 303f.", "author": "", "orig_id": 1410465}}, {"model": "metainfo.source", "pk": 6186, "fields": {"orig_filename": "Proksch_Josef_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304", "author": "", "orig_id": 1410466}}, {"model": "metainfo.source", "pk": 6187, "fields": {"orig_filename": "Proksch_Josef_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304", "author": "", "orig_id": 1410535}}, {"model": "metainfo.source", "pk": 6188, "fields": {"orig_filename": "Promberger_Johann_1779_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305", "author": "", "orig_id": 1410537}}, {"model": "metainfo.source", "pk": 6189, "fields": {"orig_filename": "Promberger_Johann_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305", "author": "", "orig_id": 1410538}}, {"model": "metainfo.source", "pk": 6190, "fields": {"orig_filename": "Promber_Adolf_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 304f.", "author": "", "orig_id": 1410536}}, {"model": "metainfo.source", "pk": 6191, "fields": {"orig_filename": "Pronay-Totprona-Blatnica_Gabor_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 305f.", "author": "", "orig_id": 1410539}}, {"model": "metainfo.source", "pk": 6192, "fields": {"orig_filename": "Proschek_Ignaz_1827_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306", "author": "", "orig_id": 1410540}}, {"model": "metainfo.source", "pk": 6193, "fields": {"orig_filename": "Proschko_Franz-Isidor_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306", "author": "", "orig_id": 1410541}}, {"model": "metainfo.source", "pk": 6194, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Emanuel_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 306f.", "author": "", "orig_id": 1410542}}, {"model": "metainfo.source", "pk": 6195, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Emanuel_1849_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 307f.", "author": "", "orig_id": 1410543}}, {"model": "metainfo.source", "pk": 6196, "fields": {"orig_filename": "Proskowetz-Proskow-Marstorff_Maximilian_1851_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308", "author": "", "orig_id": 1410544}}, {"model": "metainfo.source", "pk": 6197, "fields": {"orig_filename": "Prosniz_Adolf_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308", "author": "", "orig_id": 1410545}}, {"model": "metainfo.source", "pk": 6198, "fields": {"orig_filename": "Prost_Josef_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 308f.", "author": "", "orig_id": 1410546}}, {"model": "metainfo.source", "pk": 6199, "fields": {"orig_filename": "Provazek-Lanov_Stanislaus_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 309", "author": "", "orig_id": 1410547}}, {"model": "metainfo.source", "pk": 6200, "fields": {"orig_filename": "Provaznik_Anatol_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 309f.", "author": "", "orig_id": 1410548}}, {"model": "metainfo.source", "pk": 6201, "fields": {"orig_filename": "Prucha_Jindrich_1886_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 310", "author": "", "orig_id": 1410549}}, {"model": "metainfo.source", "pk": 6202, "fields": {"orig_filename": "Pruckner_Karoline_1832_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 310", "author": "", "orig_id": 1410550}}, {"model": "metainfo.source", "pk": 6203, "fields": {"orig_filename": "Pruenster_Georg_1774_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410551}}, {"model": "metainfo.source", "pk": 6204, "fields": {"orig_filename": "Pruenster_Johann_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410552}}, {"model": "metainfo.source", "pk": 6205, "fields": {"orig_filename": "Prueschenk-Lindenhoven_Otto_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311", "author": "", "orig_id": 1410553}}, {"model": "metainfo.source", "pk": 6206, "fields": {"orig_filename": "Pruewer_Julius_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 311f.", "author": "", "orig_id": 1410554}}, {"model": "metainfo.source", "pk": 6207, "fields": {"orig_filename": "Prugger_Franz-Sales_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312", "author": "", "orig_id": 1410555}}, {"model": "metainfo.source", "pk": 6208, "fields": {"orig_filename": "Prusak_Josef_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312", "author": "", "orig_id": 1410556}}, {"model": "metainfo.source", "pk": 6209, "fields": {"orig_filename": "Prutscher_Otto_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 312f.", "author": "", "orig_id": 1410557}}, {"model": "metainfo.source", "pk": 6210, "fields": {"orig_filename": "Pruzsinszky_Pal_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313", "author": "", "orig_id": 1410558}}, {"model": "metainfo.source", "pk": 6211, "fields": {"orig_filename": "Prybila_Karl_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313", "author": "", "orig_id": 1410626}}, {"model": "metainfo.source", "pk": 6212, "fields": {"orig_filename": "Prylinski_Tomasz_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 313f.", "author": "", "orig_id": 1410627}}, {"model": "metainfo.source", "pk": 6213, "fields": {"orig_filename": "Przedak-Burgwehr_Karl_1837_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314", "author": "", "orig_id": 1410629}}, {"model": "metainfo.source", "pk": 6214, "fields": {"orig_filename": "Przedak_Aladar-Guido_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314", "author": "", "orig_id": 1410628}}, {"model": "metainfo.source", "pk": 6215, "fields": {"orig_filename": "Przibram-Gladona_Ludwig_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 315", "author": "", "orig_id": 1410631}}, {"model": "metainfo.source", "pk": 6216, "fields": {"orig_filename": "Przibram_Hans-Leo_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 314f.", "author": "", "orig_id": 1410630}}, {"model": "metainfo.source", "pk": 6217, "fields": {"orig_filename": "Przybyszewski_Stanislaw_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 315f.", "author": "", "orig_id": 1410632}}, {"model": "metainfo.source", "pk": 6218, "fields": {"orig_filename": "Przychocki_Gustaw-Edward_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 316", "author": "", "orig_id": 1410633}}, {"model": "metainfo.source", "pk": 6219, "fields": {"orig_filename": "Przylecki_Stanislaw_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 316f.", "author": "", "orig_id": 1410634}}, {"model": "metainfo.source", "pk": 6220, "fields": {"orig_filename": "Pschorn_Karl_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317", "author": "", "orig_id": 1410635}}, {"model": "metainfo.source", "pk": 6221, "fields": {"orig_filename": "Psenner_Anton_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317", "author": "", "orig_id": 1410636}}, {"model": "metainfo.source", "pk": 6222, "fields": {"orig_filename": "Psenner_Josef_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 317f.", "author": "", "orig_id": 1410637}}, {"model": "metainfo.source", "pk": 6223, "fields": {"orig_filename": "Psenner_Ludwig_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318", "author": "", "orig_id": 1410638}}, {"model": "metainfo.source", "pk": 6224, "fields": {"orig_filename": "Psensky_Felix_1897_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318", "author": "", "orig_id": 1410639}}, {"model": "metainfo.source", "pk": 6225, "fields": {"orig_filename": "Pserhofer_Arthur_1873_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 318f.", "author": "", "orig_id": 1410640}}, {"model": "metainfo.source", "pk": 6226, "fields": {"orig_filename": "Pstross_Frantisek-Vaclav_1823_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319", "author": "", "orig_id": 1410641}}, {"model": "metainfo.source", "pk": 6227, "fields": {"orig_filename": "Ptasnik_Jan_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319", "author": "", "orig_id": 1410642}}, {"model": "metainfo.source", "pk": 6228, "fields": {"orig_filename": "Pucelj_Ivan_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 320", "author": "", "orig_id": 1410644}}, {"model": "metainfo.source", "pk": 6229, "fields": {"orig_filename": "Puchalski_Stanislaus_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321", "author": "", "orig_id": 1410646}}, {"model": "metainfo.source", "pk": 6230, "fields": {"orig_filename": "Pucherna_Antonin_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321", "author": "", "orig_id": 1410648}}, {"model": "metainfo.source", "pk": 6231, "fields": {"orig_filename": "Pucherna_Eduard_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 321f.", "author": "", "orig_id": 1410649}}, {"model": "metainfo.source", "pk": 6232, "fields": {"orig_filename": "Pucherna_Wilhelm_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322", "author": "", "orig_id": 1410722}}, {"model": "metainfo.source", "pk": 6233, "fields": {"orig_filename": "Puchinger_Erwin_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322", "author": "", "orig_id": 1410723}}, {"model": "metainfo.source", "pk": 6234, "fields": {"orig_filename": "Puchmayr_Franz_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 322f.", "author": "", "orig_id": 1410724}}, {"model": "metainfo.source", "pk": 6235, "fields": {"orig_filename": "Puchner_Karl_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323", "author": "", "orig_id": 1410725}}, {"model": "metainfo.source", "pk": 6236, "fields": {"orig_filename": "Puchta_Anton_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323", "author": "", "orig_id": 1410726}}, {"model": "metainfo.source", "pk": 6237, "fields": {"orig_filename": "Puch_Johann_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 320f.", "author": "", "orig_id": 1410645}}, {"model": "metainfo.source", "pk": 6238, "fields": {"orig_filename": "Pucic_Medo_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 323f.", "author": "", "orig_id": 1410727}}, {"model": "metainfo.source", "pk": 6239, "fields": {"orig_filename": "Pucic_Niko_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324", "author": "", "orig_id": 1410728}}, {"model": "metainfo.source", "pk": 6240, "fields": {"orig_filename": "Puc_Dinko_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 319f.", "author": "", "orig_id": 1410643}}, {"model": "metainfo.source", "pk": 6241, "fields": {"orig_filename": "Puecher-Passavalli_Luigi_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324", "author": "", "orig_id": 1410729}}, {"model": "metainfo.source", "pk": 6242, "fields": {"orig_filename": "Puechler_Benedikt_1797_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 324f.", "author": "", "orig_id": 1410730}}, {"model": "metainfo.source", "pk": 6243, "fields": {"orig_filename": "Puellacher_Leopold-Josef_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325", "author": "", "orig_id": 1410731}}, {"model": "metainfo.source", "pk": 6244, "fields": {"orig_filename": "Puempel_Petrus_1772_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325", "author": "", "orig_id": 1410732}}, {"model": "metainfo.source", "pk": 6245, "fields": {"orig_filename": "Puercker-Puerkhain_Vinzenz_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 325f.", "author": "", "orig_id": 1410733}}, {"model": "metainfo.source", "pk": 6246, "fields": {"orig_filename": "Puerstinger_Josef_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326", "author": "", "orig_id": 1410734}}, {"model": "metainfo.source", "pk": 6247, "fields": {"orig_filename": "Puerthner_Johann-Karl_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326", "author": "", "orig_id": 1410735}}, {"model": "metainfo.source", "pk": 6248, "fields": {"orig_filename": "Puettner_Josef-Karl-Bartholomaeus_1821_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 326f.", "author": "", "orig_id": 1410736}}, {"model": "metainfo.source", "pk": 6249, "fields": {"orig_filename": "Puff_Ferdinand_1809_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327", "author": "", "orig_id": 1410737}}, {"model": "metainfo.source", "pk": 6250, "fields": {"orig_filename": "Puff_Rudolf-Gustav_1808_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327", "author": "", "orig_id": 1410738}}, {"model": "metainfo.source", "pk": 6251, "fields": {"orig_filename": "Pugelj_Milan_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 327f.", "author": "", "orig_id": 1410739}}, {"model": "metainfo.source", "pk": 6252, "fields": {"orig_filename": "Puhallo-Brlog_Paul_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 328", "author": "", "orig_id": 1410740}}, {"model": "metainfo.source", "pk": 6253, "fields": {"orig_filename": "Puhar_Janez-Avgustin_1814_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 328f.", "author": "", "orig_id": 1410741}}, {"model": "metainfo.source", "pk": 6254, "fields": {"orig_filename": "Pukanszky_Bela_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410742}}, {"model": "metainfo.source", "pk": 6255, "fields": {"orig_filename": "Puksec_Ema_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410743}}, {"model": "metainfo.source", "pk": 6256, "fields": {"orig_filename": "Puky-Bizak_Akos_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 329", "author": "", "orig_id": 1410744}}, {"model": "metainfo.source", "pk": 6257, "fields": {"orig_filename": "Puky-Bizak_Miklos_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 330", "author": "", "orig_id": 1410745}}, {"model": "metainfo.source", "pk": 6258, "fields": {"orig_filename": "Preidl-Hassenbrunn_Franz_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 254f.", "author": "", "orig_id": 1409964}}, {"model": "metainfo.source", "pk": 6259, "fields": {"orig_filename": "Preindlsberger-Preindlsperg_Josef_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255", "author": "", "orig_id": 1409966}}, {"model": "metainfo.source", "pk": 6260, "fields": {"orig_filename": "Preindlsberger-Preindlsperg_Milena_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255f.", "author": "", "orig_id": 1409967}}, {"model": "metainfo.source", "pk": 6261, "fields": {"orig_filename": "Preindl_Ferdinand_1881_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2086599}}, {"model": "metainfo.source", "pk": 6262, "fields": {"orig_filename": "Preindl_Josef_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 255", "author": "", "orig_id": 1409965}}, {"model": "metainfo.source", "pk": 6263, "fields": {"orig_filename": "Preisegger_Ignaz_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409970}}, {"model": "metainfo.source", "pk": 6264, "fields": {"orig_filename": "Preisinger_Josef_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256f.", "author": "", "orig_id": 1409971}}, {"model": "metainfo.source", "pk": 6265, "fields": {"orig_filename": "Preisler_Jan_1872_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257", "author": "", "orig_id": 1409972}}, {"model": "metainfo.source", "pk": 6266, "fields": {"orig_filename": "Preissig_Vojtech_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258f.", "author": "", "orig_id": 1409976}}, {"model": "metainfo.source", "pk": 6267, "fields": {"orig_filename": "Preissler_Ferdinand_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259", "author": "", "orig_id": 1409978}}, {"model": "metainfo.source", "pk": 6268, "fields": {"orig_filename": "Preissler_Oskar_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259", "author": "", "orig_id": 1409979}}, {"model": "metainfo.source", "pk": 6269, "fields": {"orig_filename": "Preissmann_Ernest_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 259f.", "author": "", "orig_id": 1410049}}, {"model": "metainfo.source", "pk": 6270, "fields": {"orig_filename": "Preissova_Gabriela_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 260", "author": "", "orig_id": 1410050}}, {"model": "metainfo.source", "pk": 6271, "fields": {"orig_filename": "Preiss_Balthasar_1765_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257", "author": "", "orig_id": 1409973}}, {"model": "metainfo.source", "pk": 6272, "fields": {"orig_filename": "Preiss_Jaroslav_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 257f.", "author": "", "orig_id": 1409974}}, {"model": "metainfo.source", "pk": 6273, "fields": {"orig_filename": "Preiss_Kornelius_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258", "author": "", "orig_id": 1409975}}, {"model": "metainfo.source", "pk": 6274, "fields": {"orig_filename": "Preiss_Rudolf_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 258", "author": "", "orig_id": 1409977}}, {"model": "metainfo.source", "pk": 6275, "fields": {"orig_filename": "Preisz_Hugo_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 260f.", "author": "", "orig_id": 1410051}}, {"model": "metainfo.source", "pk": 6276, "fields": {"orig_filename": "Preis_Karel_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409968}}, {"model": "metainfo.source", "pk": 6277, "fields": {"orig_filename": "Preis_Karl_1913_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 256", "author": "", "orig_id": 1409969}}, {"model": "metainfo.source", "pk": 6278, "fields": {"orig_filename": "Prejac_Djuro_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261", "author": "", "orig_id": 1410052}}, {"model": "metainfo.source", "pk": 6279, "fields": {"orig_filename": "Preleuthner_Johann_1807_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261", "author": "", "orig_id": 1410053}}, {"model": "metainfo.source", "pk": 6280, "fields": {"orig_filename": "Prelog_Matija_1813_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 261f.", "author": "", "orig_id": 1410054}}, {"model": "metainfo.source", "pk": 6281, "fields": {"orig_filename": "Prelog_Milan_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262", "author": "", "orig_id": 1410055}}, {"model": "metainfo.source", "pk": 6282, "fields": {"orig_filename": "Premerstein_Anton_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262f.", "author": "", "orig_id": 1410057}}, {"model": "metainfo.source", "pk": 6283, "fields": {"orig_filename": "Premrou_Josip_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 263", "author": "", "orig_id": 1410058}}, {"model": "metainfo.source", "pk": 6284, "fields": {"orig_filename": "Prem_Simon_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 262", "author": "", "orig_id": 1410056}}, {"model": "metainfo.source", "pk": 6285, "fields": {"orig_filename": "Prendel_Viktor-Anton-Franz_1766_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 263f.", "author": "", "orig_id": 1410059}}, {"model": "metainfo.source", "pk": 6286, "fields": {"orig_filename": "Prenninger_Karl_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264", "author": "", "orig_id": 1410060}}, {"model": "metainfo.source", "pk": 6287, "fields": {"orig_filename": "Prepeluh_Albin_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264", "author": "", "orig_id": 1410061}}, {"model": "metainfo.source", "pk": 6288, "fields": {"orig_filename": "Preradovic_Petar_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 264f.", "author": "", "orig_id": 1410062}}, {"model": "metainfo.source", "pk": 6289, "fields": {"orig_filename": "Preradovic_Zora_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 265f.", "author": "", "orig_id": 1410063}}, {"model": "metainfo.source", "pk": 6290, "fields": {"orig_filename": "Preseren_France_1800_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 266f.", "author": "", "orig_id": 1410064}}, {"model": "metainfo.source", "pk": 6291, "fields": {"orig_filename": "Presl_Karel-Borivoj_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 267f.", "author": "", "orig_id": 1410066}}, {"model": "metainfo.source", "pk": 6292, "fields": {"orig_filename": "Pressburger_Richard_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410067}}, {"model": "metainfo.source", "pk": 6293, "fields": {"orig_filename": "Pressel_Wilhelm_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410068}}, {"model": "metainfo.source", "pk": 6294, "fields": {"orig_filename": "Presuhn_August_1841_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268", "author": "", "orig_id": 1410069}}, {"model": "metainfo.source", "pk": 6295, "fields": {"orig_filename": "Pretis-Cagnodo_Sisinio_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 268f.", "author": "", "orig_id": 1410070}}, {"model": "metainfo.source", "pk": 6296, "fields": {"orig_filename": "Pretsch_Paul_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 269", "author": "", "orig_id": 1410071}}, {"model": "metainfo.source", "pk": 6297, "fields": {"orig_filename": "Prettner_Johann_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 269f.", "author": "", "orig_id": 1410072}}, {"model": "metainfo.source", "pk": 6298, "fields": {"orig_filename": "Prettner_Matej_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410073}}, {"model": "metainfo.source", "pk": 6299, "fields": {"orig_filename": "Pretz-Proetzenberg_Josef_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410149}}, {"model": "metainfo.source", "pk": 6300, "fields": {"orig_filename": "Preussler_Robert_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 271f.", "author": "", "orig_id": 1410153}}, {"model": "metainfo.source", "pk": 6301, "fields": {"orig_filename": "Preuss_Arthur_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270f.", "author": "", "orig_id": 1410151}}, {"model": "metainfo.source", "pk": 6302, "fields": {"orig_filename": "Preuss_Paul_1886_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 271", "author": "", "orig_id": 1410152}}, {"model": "metainfo.source", "pk": 6303, "fields": {"orig_filename": "Preu_Ignaz_1788_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 270", "author": "", "orig_id": 1410150}}, {"model": "metainfo.source", "pk": 6304, "fields": {"orig_filename": "Preyer_Gottfried_1807_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 272f.", "author": "", "orig_id": 1410155}}, {"model": "metainfo.source", "pk": 6305, "fields": {"orig_filename": "Preyer_Hermann_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273", "author": "", "orig_id": 1410156}}, {"model": "metainfo.source", "pk": 6306, "fields": {"orig_filename": "Preyer_Johann-Nep_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273", "author": "", "orig_id": 1410157}}, {"model": "metainfo.source", "pk": 6307, "fields": {"orig_filename": "Preysz_Moric_1829_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 273f.", "author": "", "orig_id": 1410158}}, {"model": "metainfo.source", "pk": 6308, "fields": {"orig_filename": "Prey_Adalbert_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 272", "author": "", "orig_id": 1410154}}, {"model": "metainfo.source", "pk": 6309, "fields": {"orig_filename": "Pribicevic_Svetozar_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 274", "author": "", "orig_id": 1410160}}, {"model": "metainfo.source", "pk": 6310, "fields": {"orig_filename": "Pribram_Alfred-Francis_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275", "author": "", "orig_id": 1410162}}, {"model": "metainfo.source", "pk": 6311, "fields": {"orig_filename": "Pribram_Alfred_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 274f.", "author": "", "orig_id": 1410161}}, {"model": "metainfo.source", "pk": 6312, "fields": {"orig_filename": "Pribram_Ernst-August_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275", "author": "", "orig_id": 1410163}}, {"model": "metainfo.source", "pk": 6313, "fields": {"orig_filename": "Pribram_Hugo_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 275f.", "author": "", "orig_id": 1410164}}, {"model": "metainfo.source", "pk": 6314, "fields": {"orig_filename": "Pribram_Richard_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276", "author": "", "orig_id": 1410165}}, {"model": "metainfo.source", "pk": 6315, "fields": {"orig_filename": "Pribyl_Leo-Eugen_1848_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276", "author": "", "orig_id": 1410166}}, {"model": "metainfo.source", "pk": 6316, "fields": {"orig_filename": "Price_Julius_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 276f.", "author": "", "orig_id": 1410167}}, {"model": "metainfo.source", "pk": 6317, "fields": {"orig_filename": "Priebsch_Josef_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277", "author": "", "orig_id": 1410168}}, {"model": "metainfo.source", "pk": 6318, "fields": {"orig_filename": "Priebsch_Robert_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277", "author": "", "orig_id": 1410169}}, {"model": "metainfo.source", "pk": 6319, "fields": {"orig_filename": "Prielle_Kornelia_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 277f.", "author": "", "orig_id": 1410170}}, {"model": "metainfo.source", "pk": 6320, "fields": {"orig_filename": "Priessnitz_Vinzenz_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278", "author": "", "orig_id": 1410171}}, {"model": "metainfo.source", "pk": 6321, "fields": {"orig_filename": "Prihoda_Eduard_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278", "author": "", "orig_id": 1410172}}, {"model": "metainfo.source", "pk": 6322, "fields": {"orig_filename": "Prihonsky_Franz_1788_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 278f.", "author": "", "orig_id": 1410173}}, {"model": "metainfo.source", "pk": 6323, "fields": {"orig_filename": "Prijatelj_Ivan_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 279", "author": "", "orig_id": 1410248}}, {"model": "metainfo.source", "pk": 6324, "fields": {"orig_filename": "Prikryl_Ondrej_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410249}}, {"model": "metainfo.source", "pk": 6325, "fields": {"orig_filename": "Prill_Karl_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410250}}, {"model": "metainfo.source", "pk": 6326, "fields": {"orig_filename": "Primavesi-Primamonte_Viktor_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280f.", "author": "", "orig_id": 1410252}}, {"model": "metainfo.source", "pk": 6327, "fields": {"orig_filename": "Primavesi_Eduard_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 280", "author": "", "orig_id": 1410251}}, {"model": "metainfo.source", "pk": 6328, "fields": {"orig_filename": "Primic_Janez-Nep_1785_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 281", "author": "", "orig_id": 1410253}}, {"model": "metainfo.source", "pk": 6329, "fields": {"orig_filename": "Primisser_Alois_1796_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 281f.", "author": "", "orig_id": 1410254}}, {"model": "metainfo.source", "pk": 6330, "fields": {"orig_filename": "Primisser_Johann-Bapt_1739_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282", "author": "", "orig_id": 1410255}}, {"model": "metainfo.source", "pk": 6331, "fields": {"orig_filename": "Prina_Luigi_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282", "author": "", "orig_id": 1410256}}, {"model": "metainfo.source", "pk": 6332, "fields": {"orig_filename": "Princip_Gavrilo_1894_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 282f.", "author": "", "orig_id": 1410257}}, {"model": "metainfo.source", "pk": 6333, "fields": {"orig_filename": "Prinzhofer_August_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410262}}, {"model": "metainfo.source", "pk": 6334, "fields": {"orig_filename": "Prinzinger_August_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284f.", "author": "", "orig_id": 1410263}}, {"model": "metainfo.source", "pk": 6335, "fields": {"orig_filename": "Prinzinger_August_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285", "author": "", "orig_id": 1410264}}, {"model": "metainfo.source", "pk": 6336, "fields": {"orig_filename": "Prinzinger_Heinrich_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285", "author": "", "orig_id": 1410265}}, {"model": "metainfo.source", "pk": 6337, "fields": {"orig_filename": "Prinz_Franz_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 283", "author": "", "orig_id": 1410258}}, {"model": "metainfo.source", "pk": 6338, "fields": {"orig_filename": "Prinz_Karl-Ludwig_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410260}}, {"model": "metainfo.source", "pk": 6339, "fields": {"orig_filename": "Prinz_Karl_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 283f.", "author": "", "orig_id": 1410259}}, {"model": "metainfo.source", "pk": 6340, "fields": {"orig_filename": "Prinz_Moriz_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 284", "author": "", "orig_id": 1410261}}, {"model": "metainfo.source", "pk": 6341, "fields": {"orig_filename": "Prisching_Franz_1866_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 285f.", "author": "", "orig_id": 1410266}}, {"model": "metainfo.source", "pk": 6342, "fields": {"orig_filename": "Pritz_Franz-X_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 286", "author": "", "orig_id": 1410267}}, {"model": "metainfo.source", "pk": 6343, "fields": {"orig_filename": "Privoznik_Eduard_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 286f.", "author": "", "orig_id": 1410268}}, {"model": "metainfo.source", "pk": 6344, "fields": {"orig_filename": "Prix_Johann-Nep_1836_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410269}}, {"model": "metainfo.source", "pk": 6345, "fields": {"orig_filename": "Probizer_Guido_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410271}}, {"model": "metainfo.source", "pk": 6346, "fields": {"orig_filename": "Proboscht_Josef-Wenzel_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287", "author": "", "orig_id": 1410272}}, {"model": "metainfo.source", "pk": 6347, "fields": {"orig_filename": "Probstner-Neulublau-Jakubjan_Andreas-Julius_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410356}}, {"model": "metainfo.source", "pk": 6348, "fields": {"orig_filename": "Probstner-Neulublau-Jakubjan_Arthur-Napoleon_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289f.", "author": "", "orig_id": 1410357}}, {"model": "metainfo.source", "pk": 6349, "fields": {"orig_filename": "Probst_Jakob_1791_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 287f.", "author": "", "orig_id": 1410350}}, {"model": "metainfo.source", "pk": 6350, "fields": {"orig_filename": "Probst_Johann-Eugen_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 288", "author": "", "orig_id": 1410352}}, {"model": "metainfo.source", "pk": 6351, "fields": {"orig_filename": "Probst_Johann-Nep_1756_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 288", "author": "", "orig_id": 1410351}}, {"model": "metainfo.source", "pk": 6352, "fields": {"orig_filename": "Probst_Josef-Benedikt_1773_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410354}}, {"model": "metainfo.source", "pk": 6353, "fields": {"orig_filename": "Probst_Josef_1808_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410353}}, {"model": "metainfo.source", "pk": 6354, "fields": {"orig_filename": "Probst_Karl_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 289", "author": "", "orig_id": 1410355}}, {"model": "metainfo.source", "pk": 6355, "fields": {"orig_filename": "Probszt-Ohstorff_Emil_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 290", "author": "", "orig_id": 1410358}}, {"model": "metainfo.source", "pk": 6356, "fields": {"orig_filename": "Prochaska-Muehlkampf_Alois_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 298", "author": "", "orig_id": 1410448}}, {"model": "metainfo.source", "pk": 6357, "fields": {"orig_filename": "Prochaska_Antonin_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 291f.", "author": "", "orig_id": 1410361}}, {"model": "metainfo.source", "pk": 6358, "fields": {"orig_filename": "Prochaska_Antoni_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 291", "author": "", "orig_id": 1410360}}, {"model": "metainfo.source", "pk": 6359, "fields": {"orig_filename": "Prochaska_Arnost_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410362}}, {"model": "metainfo.source", "pk": 6360, "fields": {"orig_filename": "Prochaska_Emil_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 292", "author": "", "orig_id": 1410363}}, {"model": "metainfo.source", "pk": 6361, "fields": {"orig_filename": "Posch_Alois_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216", "author": "", "orig_id": 1409500}}, {"model": "metainfo.source", "pk": 6362, "fields": {"orig_filename": "Posch_Andreas_1770_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216", "author": "", "orig_id": 1409501}}, {"model": "metainfo.source", "pk": 6363, "fields": {"orig_filename": "Posch_Eduard-Roman_1856_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 216f.", "author": "", "orig_id": 1409502}}, {"model": "metainfo.source", "pk": 6364, "fields": {"orig_filename": "Posch_Josef_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 217", "author": "", "orig_id": 1409503}}, {"model": "metainfo.source", "pk": 6365, "fields": {"orig_filename": "Posch_Leonhard_1750_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 217f.", "author": "", "orig_id": 1409504}}, {"model": "metainfo.source", "pk": 6366, "fields": {"orig_filename": "Posch_Marie_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409505}}, {"model": "metainfo.source", "pk": 6367, "fields": {"orig_filename": "Posch_Rudolf_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409506}}, {"model": "metainfo.source", "pk": 6368, "fields": {"orig_filename": "Posener_Johann-Paul_1793_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219", "author": "", "orig_id": 1409509}}, {"model": "metainfo.source", "pk": 6369, "fields": {"orig_filename": "Posepny_Franz_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219", "author": "", "orig_id": 1409510}}, {"model": "metainfo.source", "pk": 6370, "fields": {"orig_filename": "Posewitz_Samuel_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 219f.", "author": "", "orig_id": 1409511}}, {"model": "metainfo.source", "pk": 6371, "fields": {"orig_filename": "Posewitz_Theodor_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409512}}, {"model": "metainfo.source", "pk": 6372, "fields": {"orig_filename": "Posilovic_Josip-Juraj_1834_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409513}}, {"model": "metainfo.source", "pk": 6373, "fields": {"orig_filename": "Posonyi_Alexander_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220", "author": "", "orig_id": 1409587}}, {"model": "metainfo.source", "pk": 6374, "fields": {"orig_filename": "Pospichal_Eduard-Ludvik_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 220f.", "author": "", "orig_id": 1409588}}, {"model": "metainfo.source", "pk": 6375, "fields": {"orig_filename": "Pospisil_Josef_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409590}}, {"model": "metainfo.source", "pk": 6376, "fields": {"orig_filename": "Pospisil_Kristian-Eduard_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409591}}, {"model": "metainfo.source", "pk": 6377, "fields": {"orig_filename": "Pospisil_Vilem_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221", "author": "", "orig_id": 1409592}}, {"model": "metainfo.source", "pk": 6378, "fields": {"orig_filename": "Possanner-Ehrenthal_Bruno_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 221f.", "author": "", "orig_id": 1409593}}, {"model": "metainfo.source", "pk": 6379, "fields": {"orig_filename": "Possanner-Ehrenthal_Ernst_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409594}}, {"model": "metainfo.source", "pk": 6380, "fields": {"orig_filename": "Possanner-Ehrenthal_Gabriele_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409595}}, {"model": "metainfo.source", "pk": 6381, "fields": {"orig_filename": "Posselt-Csorich_Anton_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 223", "author": "", "orig_id": 1409598}}, {"model": "metainfo.source", "pk": 6382, "fields": {"orig_filename": "Posselt_Adolf-Heinrich_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222", "author": "", "orig_id": 1409596}}, {"model": "metainfo.source", "pk": 6383, "fields": {"orig_filename": "Posselt_Kajetan_1809_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 222f.", "author": "", "orig_id": 1409597}}, {"model": "metainfo.source", "pk": 6384, "fields": {"orig_filename": "Possinger-Choborski_Ludwig_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 223f.", "author": "", "orig_id": 1409599}}, {"model": "metainfo.source", "pk": 6385, "fields": {"orig_filename": "Posta_Bela_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409600}}, {"model": "metainfo.source", "pk": 6386, "fields": {"orig_filename": "Postelt_Alois_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409601}}, {"model": "metainfo.source", "pk": 6387, "fields": {"orig_filename": "Postinger_Carlo-Teodoro_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224", "author": "", "orig_id": 1409602}}, {"model": "metainfo.source", "pk": 6388, "fields": {"orig_filename": "Postl_Karel_1769_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 224f.", "author": "", "orig_id": 1409603}}, {"model": "metainfo.source", "pk": 6389, "fields": {"orig_filename": "Postl_Karl_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 225f.", "author": "", "orig_id": 1409604}}, {"model": "metainfo.source", "pk": 6390, "fields": {"orig_filename": "Postolka_August_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 226", "author": "", "orig_id": 1409605}}, {"model": "metainfo.source", "pk": 6391, "fields": {"orig_filename": "Potier-Echelles_Rudolf_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 226f.", "author": "", "orig_id": 1409606}}, {"model": "metainfo.source", "pk": 6392, "fields": {"orig_filename": "Potiorek_Oskar_1853_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 227", "author": "", "orig_id": 1409607}}, {"model": "metainfo.source", "pk": 6393, "fields": {"orig_filename": "Potkanski_Jan-Nep-Karol_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 227f.", "author": "", "orig_id": 1409608}}, {"model": "metainfo.source", "pk": 6394, "fields": {"orig_filename": "Potlis_Michael_1812_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 228", "author": "", "orig_id": 1409609}}, {"model": "metainfo.source", "pk": 6395, "fields": {"orig_filename": "Potocka_Katarzyna_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 228f.", "author": "", "orig_id": 1409678}}, {"model": "metainfo.source", "pk": 6396, "fields": {"orig_filename": "Potocka_Zofia_1790_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229", "author": "", "orig_id": 1409679}}, {"model": "metainfo.source", "pk": 6397, "fields": {"orig_filename": "Potocki_Adam_1822_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229", "author": "", "orig_id": 1409680}}, {"model": "metainfo.source", "pk": 6398, "fields": {"orig_filename": "Potocki_Alfred_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 229f.", "author": "", "orig_id": 1409681}}, {"model": "metainfo.source", "pk": 6399, "fields": {"orig_filename": "Potocki_Alfred_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 230", "author": "", "orig_id": 1409682}}, {"model": "metainfo.source", "pk": 6400, "fields": {"orig_filename": "Potocki_Andrzej_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 230f.", "author": "", "orig_id": 1409683}}, {"model": "metainfo.source", "pk": 6401, "fields": {"orig_filename": "Potocki_Artur-Stanislaw_1787_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231", "author": "", "orig_id": 1409685}}, {"model": "metainfo.source", "pk": 6402, "fields": {"orig_filename": "Potocki_Artur_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231", "author": "", "orig_id": 1409684}}, {"model": "metainfo.source", "pk": 6403, "fields": {"orig_filename": "Potocnik_Blaz_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 231f.", "author": "", "orig_id": 1409686}}, {"model": "metainfo.source", "pk": 6404, "fields": {"orig_filename": "Potocnik_Hermann_1892_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232", "author": "", "orig_id": 1409687}}, {"model": "metainfo.source", "pk": 6405, "fields": {"orig_filename": "Potocnik_Janez_1749_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232", "author": "", "orig_id": 1409688}}, {"model": "metainfo.source", "pk": 6406, "fields": {"orig_filename": "Potocnjak_Franko_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 232f.", "author": "", "orig_id": 1409689}}, {"model": "metainfo.source", "pk": 6407, "fields": {"orig_filename": "Potoczek_Jan_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233", "author": "", "orig_id": 1409690}}, {"model": "metainfo.source", "pk": 6408, "fields": {"orig_filename": "Potoczek_Stanislaw_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233", "author": "", "orig_id": 1409691}}, {"model": "metainfo.source", "pk": 6409, "fields": {"orig_filename": "Potpeschnigg_Heinrich_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 233f.", "author": "", "orig_id": 1409692}}, {"model": "metainfo.source", "pk": 6410, "fields": {"orig_filename": "Pottenburg_Nikolaus_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409695}}, {"model": "metainfo.source", "pk": 6411, "fields": {"orig_filename": "Pott_August_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409693}}, {"model": "metainfo.source", "pk": 6412, "fields": {"orig_filename": "Pott_Emil_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 234", "author": "", "orig_id": 1409694}}, {"model": "metainfo.source", "pk": 6413, "fields": {"orig_filename": "Potyka_Hugo_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235", "author": "", "orig_id": 1409696}}, {"model": "metainfo.source", "pk": 6414, "fields": {"orig_filename": "Povoden_Simon_1753_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235", "author": "", "orig_id": 1409697}}, {"model": "metainfo.source", "pk": 6415, "fields": {"orig_filename": "Povse_Franc_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 235f.", "author": "", "orig_id": 1409698}}, {"model": "metainfo.source", "pk": 6416, "fields": {"orig_filename": "Powidaj_Ludwik_1830_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409699}}, {"model": "metainfo.source", "pk": 6417, "fields": {"orig_filename": "Pozdech_Josef_1811_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409773}}, {"model": "metainfo.source", "pk": 6418, "fields": {"orig_filename": "Pozzi_Giovanni_1769_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409774}}, {"model": "metainfo.source", "pk": 6419, "fields": {"orig_filename": "Pracher_Franz_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236", "author": "", "orig_id": 1409775}}, {"model": "metainfo.source", "pk": 6420, "fields": {"orig_filename": "Prachner_Vaclav_1784_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 236f.", "author": "", "orig_id": 1409776}}, {"model": "metainfo.source", "pk": 6421, "fields": {"orig_filename": "Prade_Heinrich_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 237", "author": "", "orig_id": 1409777}}, {"model": "metainfo.source", "pk": 6422, "fields": {"orig_filename": "Praeuscher_Hermann_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 237f.", "author": "", "orig_id": 1409778}}, {"model": "metainfo.source", "pk": 6423, "fields": {"orig_filename": "Prager_Albert_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409779}}, {"model": "metainfo.source", "pk": 6424, "fields": {"orig_filename": "Prager_Olga_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409780}}, {"model": "metainfo.source", "pk": 6425, "fields": {"orig_filename": "Prandstetter_Ignaz_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409781}}, {"model": "metainfo.source", "pk": 6426, "fields": {"orig_filename": "Prantl_Jakob-Isidor_1772_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 238", "author": "", "orig_id": 1409782}}, {"model": "metainfo.source", "pk": 6427, "fields": {"orig_filename": "Prantl_Therese_1839_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239", "author": "", "orig_id": 1409783}}, {"model": "metainfo.source", "pk": 6428, "fields": {"orig_filename": "Prantner_Ferdinand_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239", "author": "", "orig_id": 1409784}}, {"model": "metainfo.source", "pk": 6429, "fields": {"orig_filename": "Praprotnik_Andrej_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 239f.", "author": "", "orig_id": 1409785}}, {"model": "metainfo.source", "pk": 6430, "fields": {"orig_filename": "Praprotnik_Franc_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240", "author": "", "orig_id": 1409786}}, {"model": "metainfo.source", "pk": 6431, "fields": {"orig_filename": "Praschniker_Kamillo_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 241f.", "author": "", "orig_id": 1409789}}, {"model": "metainfo.source", "pk": 6432, "fields": {"orig_filename": "Prasch_Adolf_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240", "author": "", "orig_id": 1409787}}, {"model": "metainfo.source", "pk": 6433, "fields": {"orig_filename": "Prasch_Alois_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 240f.", "author": "", "orig_id": 1409788}}, {"model": "metainfo.source", "pk": 6434, "fields": {"orig_filename": "Prasek_Justin-V_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242", "author": "", "orig_id": 1409790}}, {"model": "metainfo.source", "pk": 6435, "fields": {"orig_filename": "Prasek_Karel_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242", "author": "", "orig_id": 1409791}}, {"model": "metainfo.source", "pk": 6436, "fields": {"orig_filename": "Prasek_Vincenc_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 242f.", "author": "", "orig_id": 1409792}}, {"model": "metainfo.source", "pk": 6437, "fields": {"orig_filename": "Prasil_Wilhelm-Wenzel_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 243", "author": "", "orig_id": 1409793}}, {"model": "metainfo.source", "pk": 6438, "fields": {"orig_filename": "Prasnikar_Alois_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 243f.", "author": "", "orig_id": 1409794}}, {"model": "metainfo.source", "pk": 6439, "fields": {"orig_filename": "Prati_Eugenio_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 244", "author": "", "orig_id": 1409865}}, {"model": "metainfo.source", "pk": 6440, "fields": {"orig_filename": "Prati_Giovanni_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 244f.", "author": "", "orig_id": 1409866}}, {"model": "metainfo.source", "pk": 6441, "fields": {"orig_filename": "Prati_Romualdo_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 245", "author": "", "orig_id": 1409867}}, {"model": "metainfo.source", "pk": 6442, "fields": {"orig_filename": "Pratobevera-Wiesborn_Adolf_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246f.", "author": "", "orig_id": 1409871}}, {"model": "metainfo.source", "pk": 6443, "fields": {"orig_filename": "Pratobevera-Wiesborn_Karl-Josef_1769_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247", "author": "", "orig_id": 1409872}}, {"model": "metainfo.source", "pk": 6444, "fields": {"orig_filename": "Pratobevera_Eduard_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246", "author": "", "orig_id": 1409869}}, {"model": "metainfo.source", "pk": 6445, "fields": {"orig_filename": "Pratobevera_Katharina_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 246", "author": "", "orig_id": 1409870}}, {"model": "metainfo.source", "pk": 6446, "fields": {"orig_filename": "Prato_Giovanni_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 245f.", "author": "", "orig_id": 1409868}}, {"model": "metainfo.source", "pk": 6447, "fields": {"orig_filename": "Prattes_Markus_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247", "author": "", "orig_id": 1409873}}, {"model": "metainfo.source", "pk": 6448, "fields": {"orig_filename": "Prausnitz_Wilhelm_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248", "author": "", "orig_id": 1409876}}, {"model": "metainfo.source", "pk": 6449, "fields": {"orig_filename": "Praus_Josip_1829_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 247f.", "author": "", "orig_id": 1409874}}, {"model": "metainfo.source", "pk": 6450, "fields": {"orig_filename": "Prawdik-Maehrau_Franz_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248", "author": "", "orig_id": 1409877}}, {"model": "metainfo.source", "pk": 6451, "fields": {"orig_filename": "Praxmarer_Josef_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 248f.", "author": "", "orig_id": 1409878}}, {"model": "metainfo.source", "pk": 6452, "fields": {"orig_filename": "Prazakova_Klara_1891_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250", "author": "", "orig_id": 1409882}}, {"model": "metainfo.source", "pk": 6453, "fields": {"orig_filename": "Prazak_Alois_1820_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 249", "author": "", "orig_id": 1409879}}, {"model": "metainfo.source", "pk": 6454, "fields": {"orig_filename": "Prazak_Jiri_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 249f.", "author": "", "orig_id": 1409880}}, {"model": "metainfo.source", "pk": 6455, "fields": {"orig_filename": "Prazak_Ottokar_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250", "author": "", "orig_id": 1409881}}, {"model": "metainfo.source", "pk": 6456, "fields": {"orig_filename": "Prazmowski_Adam_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 250f.", "author": "", "orig_id": 1409883}}, {"model": "metainfo.source", "pk": 6457, "fields": {"orig_filename": "Prazner_Marian_1746_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251", "author": "", "orig_id": 1409884}}, {"model": "metainfo.source", "pk": 6458, "fields": {"orig_filename": "Precan_Leopold_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251", "author": "", "orig_id": 1409885}}, {"model": "metainfo.source", "pk": 6459, "fields": {"orig_filename": "Prechtler_Johann-Otto_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 252f.", "author": "", "orig_id": 1409959}}, {"model": "metainfo.source", "pk": 6460, "fields": {"orig_filename": "Prechtl_Johann-Josef_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 251f.", "author": "", "orig_id": 1409958}}, {"model": "metainfo.source", "pk": 6461, "fields": {"orig_filename": "Predelli_Riccardo_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253", "author": "", "orig_id": 1409960}}, {"model": "metainfo.source", "pk": 6462, "fields": {"orig_filename": "Preen_Hugo_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253", "author": "", "orig_id": 1409961}}, {"model": "metainfo.source", "pk": 6463, "fields": {"orig_filename": "Pregant_Johann_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 253f.", "author": "", "orig_id": 1409962}}, {"model": "metainfo.source", "pk": 6464, "fields": {"orig_filename": "Pregl_Fritz_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 254", "author": "", "orig_id": 1409963}}, {"model": "metainfo.source", "pk": 6465, "fields": {"orig_filename": "Poller_Kaspar_1783_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410625}}, {"model": "metainfo.source", "pk": 6466, "fields": {"orig_filename": "Poller_Magdalena_1786_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 183", "author": "", "orig_id": 1410696}}, {"model": "metainfo.source", "pk": 6467, "fields": {"orig_filename": "Pollet_Johann_1814_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 183", "author": "", "orig_id": 1410697}}, {"model": "metainfo.source", "pk": 6468, "fields": {"orig_filename": "Polley_Karl_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410698}}, {"model": "metainfo.source", "pk": 6469, "fields": {"orig_filename": "Pollhammer_Josef_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410699}}, {"model": "metainfo.source", "pk": 6470, "fields": {"orig_filename": "Polliack_Giovanni_1903_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410704}}, {"model": "metainfo.source", "pk": 6471, "fields": {"orig_filename": "Pollini_Ciro_1782_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185f.", "author": "", "orig_id": 1410705}}, {"model": "metainfo.source", "pk": 6472, "fields": {"orig_filename": "Pollini_Franz_1762_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410706}}, {"model": "metainfo.source", "pk": 6473, "fields": {"orig_filename": "Pollitzer_Adolf_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410707}}, {"model": "metainfo.source", "pk": 6474, "fields": {"orig_filename": "Polli_Carlo_1894_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184", "author": "", "orig_id": 1410700}}, {"model": "metainfo.source", "pk": 6475, "fields": {"orig_filename": "Polli_Edoardo_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 184f.", "author": "", "orig_id": 1410701}}, {"model": "metainfo.source", "pk": 6476, "fields": {"orig_filename": "Polli_Giorgio_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410702}}, {"model": "metainfo.source", "pk": 6477, "fields": {"orig_filename": "Polli_Giovanni_1826_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 185", "author": "", "orig_id": 1410703}}, {"model": "metainfo.source", "pk": 6478, "fields": {"orig_filename": "Polonyi_Geza_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 186", "author": "", "orig_id": 1410708}}, {"model": "metainfo.source", "pk": 6479, "fields": {"orig_filename": "Polsterer_Adalbert-Johann_1798_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410709}}, {"model": "metainfo.source", "pk": 6480, "fields": {"orig_filename": "Polsterer_Rudolf_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410710}}, {"model": "metainfo.source", "pk": 6481, "fields": {"orig_filename": "Polt_Johann-Josef_1775_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187", "author": "", "orig_id": 1410711}}, {"model": "metainfo.source", "pk": 6482, "fields": {"orig_filename": "Polya_Jakab_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 187f.", "author": "", "orig_id": 1410712}}, {"model": "metainfo.source", "pk": 6483, "fields": {"orig_filename": "Polya_Jozsef_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188", "author": "", "orig_id": 1410713}}, {"model": "metainfo.source", "pk": 6484, "fields": {"orig_filename": "Polzelli_Alois-Anton_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188", "author": "", "orig_id": 1410714}}, {"model": "metainfo.source", "pk": 6485, "fields": {"orig_filename": "Polzelli_Luigia_1760_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 188f.", "author": "", "orig_id": 1410715}}, {"model": "metainfo.source", "pk": 6486, "fields": {"orig_filename": "Polzer-Hoditz-Wolframitz_Arthur_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189", "author": "", "orig_id": 1410717}}, {"model": "metainfo.source", "pk": 6487, "fields": {"orig_filename": "Polzer_Aurelius_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189", "author": "", "orig_id": 1410716}}, {"model": "metainfo.source", "pk": 6488, "fields": {"orig_filename": "Pomeranz_Caesar_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 189f.", "author": "", "orig_id": 1410718}}, {"model": "metainfo.source", "pk": 6489, "fields": {"orig_filename": "Pomiankowski_Josef_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190", "author": "", "orig_id": 1410719}}, {"model": "metainfo.source", "pk": 6490, "fields": {"orig_filename": "Pommer_Gustav-Adolf_1851_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190", "author": "", "orig_id": 1410720}}, {"model": "metainfo.source", "pk": 6491, "fields": {"orig_filename": "Pommer_Josef_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 190f.", "author": "", "orig_id": 1410721}}, {"model": "metainfo.source", "pk": 6492, "fields": {"orig_filename": "Pompery_Janos_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191", "author": "", "orig_id": 1410795}}, {"model": "metainfo.source", "pk": 6493, "fields": {"orig_filename": "Pomutiu_George_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191", "author": "", "orig_id": 1410796}}, {"model": "metainfo.source", "pk": 6494, "fields": {"orig_filename": "Ponchielli_Amilcare_1834_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 191f.", "author": "", "orig_id": 1410797}}, {"model": "metainfo.source", "pk": 6495, "fields": {"orig_filename": "Ponebsek_Janko_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410798}}, {"model": "metainfo.source", "pk": 6496, "fields": {"orig_filename": "Pongracz-Szent-Miklos-Ovar_Arthur_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410799}}, {"model": "metainfo.source", "pk": 6497, "fields": {"orig_filename": "Pongratz_Josef_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 192", "author": "", "orig_id": 1410800}}, {"model": "metainfo.source", "pk": 6498, "fields": {"orig_filename": "Pongratz_Karl_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410801}}, {"model": "metainfo.source", "pk": 6499, "fields": {"orig_filename": "Ponheimer_Kilian_1757_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410802}}, {"model": "metainfo.source", "pk": 6500, "fields": {"orig_filename": "Pontini_Friedrich_1874_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193", "author": "", "orig_id": 1410803}}, {"model": "metainfo.source", "pk": 6501, "fields": {"orig_filename": "Pontz-Engelshofen_Kandidus_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 193f.", "author": "", "orig_id": 1410804}}, {"model": "metainfo.source", "pk": 6502, "fields": {"orig_filename": "Pop-Martian_Dionisie_1829_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194", "author": "", "orig_id": 1410806}}, {"model": "metainfo.source", "pk": 6503, "fields": {"orig_filename": "Poparic_Bare_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194f.", "author": "", "orig_id": 1410807}}, {"model": "metainfo.source", "pk": 6504, "fields": {"orig_filename": "Popea_Nicolae_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410808}}, {"model": "metainfo.source", "pk": 6505, "fields": {"orig_filename": "Popelka_Augustin_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410809}}, {"model": "metainfo.source", "pk": 6506, "fields": {"orig_filename": "Popelka_Rudolf_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195", "author": "", "orig_id": 1410810}}, {"model": "metainfo.source", "pk": 6507, "fields": {"orig_filename": "Popeller_Johann_1816_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 195f.", "author": "", "orig_id": 1410811}}, {"model": "metainfo.source", "pk": 6508, "fields": {"orig_filename": "Popescu_Ioan_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410812}}, {"model": "metainfo.source", "pk": 6509, "fields": {"orig_filename": "Popescu_Nicolae_1835_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410813}}, {"model": "metainfo.source", "pk": 6510, "fields": {"orig_filename": "Popielski_Leon_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197", "author": "", "orig_id": 1410882}}, {"model": "metainfo.source", "pk": 6511, "fields": {"orig_filename": "Popiel_Jan_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196", "author": "", "orig_id": 1410815}}, {"model": "metainfo.source", "pk": 6512, "fields": {"orig_filename": "Popiel_Pawel_1807_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 196f.", "author": "", "orig_id": 1410814}}, {"model": "metainfo.source", "pk": 6513, "fields": {"orig_filename": "Popovici-Barcianu_Daniil_1847_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199", "author": "", "orig_id": 1410889}}, {"model": "metainfo.source", "pk": 6514, "fields": {"orig_filename": "Popovici-Barcianu_Sava_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199f.", "author": "", "orig_id": 1410890}}, {"model": "metainfo.source", "pk": 6515, "fields": {"orig_filename": "Popovici_Aurel-Constantin_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198f.", "author": "", "orig_id": 1410887}}, {"model": "metainfo.source", "pk": 6516, "fields": {"orig_filename": "Popovici_Gheorghe_1863_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 199", "author": "", "orig_id": 1410888}}, {"model": "metainfo.source", "pk": 6517, "fields": {"orig_filename": "Popovics_Sandor_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 200", "author": "", "orig_id": 1410891}}, {"model": "metainfo.source", "pk": 6518, "fields": {"orig_filename": "Popovic_Aca_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197", "author": "", "orig_id": 1410883}}, {"model": "metainfo.source", "pk": 6519, "fields": {"orig_filename": "Popovic_Jovan-Sterija_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 197f.", "author": "", "orig_id": 1410884}}, {"model": "metainfo.source", "pk": 6520, "fields": {"orig_filename": "Popovic_Mita_1841_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198", "author": "", "orig_id": 1410885}}, {"model": "metainfo.source", "pk": 6521, "fields": {"orig_filename": "Popovic_Stevan_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 198", "author": "", "orig_id": 1410886}}, {"model": "metainfo.source", "pk": 6522, "fields": {"orig_filename": "Popper-Podhragy_Leopold_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410904}}, {"model": "metainfo.source", "pk": 6523, "fields": {"orig_filename": "Popper_David_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 204", "author": "", "orig_id": 1410900}}, {"model": "metainfo.source", "pk": 6524, "fields": {"orig_filename": "Popper_Josef_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 205", "author": "", "orig_id": 1410901}}, {"model": "metainfo.source", "pk": 6525, "fields": {"orig_filename": "Popper_Siegfried_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 205f.", "author": "", "orig_id": 1410902}}, {"model": "metainfo.source", "pk": 6526, "fields": {"orig_filename": "Popper_Wilhelm_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410903}}, {"model": "metainfo.source", "pk": 6527, "fields": {"orig_filename": "Poppinger_Karl_1902_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206", "author": "", "orig_id": 1410980}}, {"model": "metainfo.source", "pk": 6528, "fields": {"orig_filename": "Popp_Adelheid_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 200f.", "author": "", "orig_id": 1410892}}, {"model": "metainfo.source", "pk": 6529, "fields": {"orig_filename": "Popp_Arnost-Bruno_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 201", "author": "", "orig_id": 1410893}}, {"model": "metainfo.source", "pk": 6530, "fields": {"orig_filename": "Popp_Augustin_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 201f.", "author": "", "orig_id": 1410894}}, {"model": "metainfo.source", "pk": 6531, "fields": {"orig_filename": "Popp_Julius_1849_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 202", "author": "", "orig_id": 1410895}}, {"model": "metainfo.source", "pk": 6532, "fields": {"orig_filename": "Popp_Leonidas_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 202f.", "author": "", "orig_id": 1410896}}, {"model": "metainfo.source", "pk": 6533, "fields": {"orig_filename": "Popp_Mihai_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203", "author": "", "orig_id": 1410897}}, {"model": "metainfo.source", "pk": 6534, "fields": {"orig_filename": "Popp_Vasile_1789_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203", "author": "", "orig_id": 1410898}}, {"model": "metainfo.source", "pk": 6535, "fields": {"orig_filename": "Popp_Wilhelm_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 203f.", "author": "", "orig_id": 1410899}}, {"model": "metainfo.source", "pk": 6536, "fields": {"orig_filename": "Pop_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 194", "author": "", "orig_id": 1410805}}, {"model": "metainfo.source", "pk": 6537, "fields": {"orig_filename": "Porak-Varna_Ernst_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 207", "author": "", "orig_id": 1410982}}, {"model": "metainfo.source", "pk": 6538, "fields": {"orig_filename": "Porcia_Franz_1753_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 207", "author": "", "orig_id": 1410983}}, {"model": "metainfo.source", "pk": 6539, "fields": {"orig_filename": "Porcius_Florian_1816_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410984}}, {"model": "metainfo.source", "pk": 6540, "fields": {"orig_filename": "Pordes_Friedrich_1890_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410985}}, {"model": "metainfo.source", "pk": 6541, "fields": {"orig_filename": "Porges-Portheim_Eduard_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410990}}, {"model": "metainfo.source", "pk": 6542, "fields": {"orig_filename": "Porges-Portheim_Juda-Leopold_1785_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410991}}, {"model": "metainfo.source", "pk": 6543, "fields": {"orig_filename": "Porges-Portheim_Max_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209f.", "author": "", "orig_id": 1410992}}, {"model": "metainfo.source", "pk": 6544, "fields": {"orig_filename": "Porges-Portheim_Moses_1781_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210", "author": "", "orig_id": 1410993}}, {"model": "metainfo.source", "pk": 6545, "fields": {"orig_filename": "Porges_Edmund_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208", "author": "", "orig_id": 1410986}}, {"model": "metainfo.source", "pk": 6546, "fields": {"orig_filename": "Porges_Heinrich_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 208f.", "author": "", "orig_id": 1410987}}, {"model": "metainfo.source", "pk": 6547, "fields": {"orig_filename": "Porges_Nathan_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410988}}, {"model": "metainfo.source", "pk": 6548, "fields": {"orig_filename": "Porges_Philipp_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 209", "author": "", "orig_id": 1410989}}, {"model": "metainfo.source", "pk": 6549, "fields": {"orig_filename": "Porro-Lambertenghi_Giulio_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211", "author": "", "orig_id": 1410996}}, {"model": "metainfo.source", "pk": 6550, "fields": {"orig_filename": "Porro_Edoardo_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210f.", "author": "", "orig_id": 1410995}}, {"model": "metainfo.source", "pk": 6551, "fields": {"orig_filename": "Porr_Arthur_1872_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 210", "author": "", "orig_id": 1410994}}, {"model": "metainfo.source", "pk": 6552, "fields": {"orig_filename": "Porsch_Josef_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211", "author": "", "orig_id": 1410997}}, {"model": "metainfo.source", "pk": 6553, "fields": {"orig_filename": "Porta_Carlo_1775_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 211f.", "author": "", "orig_id": 1410998}}, {"model": "metainfo.source", "pk": 6554, "fields": {"orig_filename": "Porta_Luigi_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 212", "author": "", "orig_id": 1410999}}, {"model": "metainfo.source", "pk": 6555, "fields": {"orig_filename": "Porta_Pietro_1832_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 212f.", "author": "", "orig_id": 1411000}}, {"model": "metainfo.source", "pk": 6556, "fields": {"orig_filename": "Portele_Karl_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213", "author": "", "orig_id": 1411001}}, {"model": "metainfo.source", "pk": 6557, "fields": {"orig_filename": "Portenschlag-Ledermayer_Franz_1772_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213", "author": "", "orig_id": 1411002}}, {"model": "metainfo.source", "pk": 6558, "fields": {"orig_filename": "Porth_Wenzel_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 213f.", "author": "", "orig_id": 1409491}}, {"model": "metainfo.source", "pk": 6559, "fields": {"orig_filename": "Portugall_Ferdinand_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214", "author": "", "orig_id": 1409492}}, {"model": "metainfo.source", "pk": 6560, "fields": {"orig_filename": "Porubsky_Josef_1811_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214", "author": "", "orig_id": 1409493}}, {"model": "metainfo.source", "pk": 6561, "fields": {"orig_filename": "Porumbescu_Ciprian_1853_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 214f.", "author": "", "orig_id": 1409494}}, {"model": "metainfo.source", "pk": 6562, "fields": {"orig_filename": "Porumbescu_Iraclie_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409495}}, {"model": "metainfo.source", "pk": 6563, "fields": {"orig_filename": "Porzer_Josef_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409496}}, {"model": "metainfo.source", "pk": 6564, "fields": {"orig_filename": "Porzsolt_Kalman_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215", "author": "", "orig_id": 1409497}}, {"model": "metainfo.source", "pk": 6565, "fields": {"orig_filename": "Por_Antal_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 206f.", "author": "", "orig_id": 1410981}}, {"model": "metainfo.source", "pk": 6566, "fields": {"orig_filename": "Posa_Lajos_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 215f.", "author": "", "orig_id": 1409498}}, {"model": "metainfo.source", "pk": 6567, "fields": {"orig_filename": "Poschacher-Arelshoeh_Johann-Wilhelm_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218f.", "author": "", "orig_id": 1409508}}, {"model": "metainfo.source", "pk": 6568, "fields": {"orig_filename": "Poschacher_Anton_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 38, 1981), S. 218", "author": "", "orig_id": 1409507}}, {"model": "metainfo.source", "pk": 6569, "fields": {"orig_filename": "Poettickh-Pettenegg_Eduard-Gaston_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 148f.", "author": "", "orig_id": 1410236}}, {"model": "metainfo.source", "pk": 6570, "fields": {"orig_filename": "Poetting-Persing_Gustav_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410237}}, {"model": "metainfo.source", "pk": 6571, "fields": {"orig_filename": "Poetting-Persing_Karl_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410238}}, {"model": "metainfo.source", "pk": 6572, "fields": {"orig_filename": "Poetzelberger_Robert_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149", "author": "", "orig_id": 1410239}}, {"model": "metainfo.source", "pk": 6573, "fields": {"orig_filename": "Poetzl_Eduard_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 149f.", "author": "", "orig_id": 1410240}}, {"model": "metainfo.source", "pk": 6574, "fields": {"orig_filename": "Pogacar_Janez-Zlatoust_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150", "author": "", "orig_id": 1410241}}, {"model": "metainfo.source", "pk": 6575, "fields": {"orig_filename": "Pogacnik_Franz_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150", "author": "", "orig_id": 1410243}}, {"model": "metainfo.source", "pk": 6576, "fields": {"orig_filename": "Pogacnik_Jozef_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 150f.", "author": "", "orig_id": 1410242}}, {"model": "metainfo.source", "pk": 6577, "fields": {"orig_filename": "Pogatscher_Alois_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151", "author": "", "orig_id": 1410244}}, {"model": "metainfo.source", "pk": 6578, "fields": {"orig_filename": "Pogatscher_Heinrich_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151", "author": "", "orig_id": 1410245}}, {"model": "metainfo.source", "pk": 6579, "fields": {"orig_filename": "Pogatscher_Rudolf_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 151f.", "author": "", "orig_id": 1410246}}, {"model": "metainfo.source", "pk": 6580, "fields": {"orig_filename": "Pogatschnig_Valentin_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410247}}, {"model": "metainfo.source", "pk": 6581, "fields": {"orig_filename": "Poggi_Cesare_1802_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410324}}, {"model": "metainfo.source", "pk": 6582, "fields": {"orig_filename": "Pogna_Giovanni_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410325}}, {"model": "metainfo.source", "pk": 6583, "fields": {"orig_filename": "Pogna_Giuseppe_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 152", "author": "", "orig_id": 1410326}}, {"model": "metainfo.source", "pk": 6584, "fields": {"orig_filename": "Pogranyi-Nagy_Geza_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153", "author": "", "orig_id": 1410327}}, {"model": "metainfo.source", "pk": 6585, "fields": {"orig_filename": "Pohl-Meiser_Viktoria_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 157", "author": "", "orig_id": 1410339}}, {"model": "metainfo.source", "pk": 6586, "fields": {"orig_filename": "Pohler_Amand_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 157f.", "author": "", "orig_id": 1410340}}, {"model": "metainfo.source", "pk": 6587, "fields": {"orig_filename": "Pohlig_Johannes_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410341}}, {"model": "metainfo.source", "pk": 6588, "fields": {"orig_filename": "Pohlig_Karl_1858_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410342}}, {"model": "metainfo.source", "pk": 6589, "fields": {"orig_filename": "Pohl_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153", "author": "", "orig_id": 1410328}}, {"model": "metainfo.source", "pk": 6590, "fields": {"orig_filename": "Pohl_Johann-Emanuel_1782_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154", "author": "", "orig_id": 1410330}}, {"model": "metainfo.source", "pk": 6591, "fields": {"orig_filename": "Pohl_Johann-Franz_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154", "author": "", "orig_id": 1410331}}, {"model": "metainfo.source", "pk": 6592, "fields": {"orig_filename": "Pohl_Johann_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 153f.", "author": "", "orig_id": 1410329}}, {"model": "metainfo.source", "pk": 6593, "fields": {"orig_filename": "Pohl_Josef_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 154f.", "author": "", "orig_id": 1410332}}, {"model": "metainfo.source", "pk": 6594, "fields": {"orig_filename": "Pohl_Julius_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155", "author": "", "orig_id": 1410333}}, {"model": "metainfo.source", "pk": 6595, "fields": {"orig_filename": "Pohl_Karl-Ferdinand_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155", "author": "", "orig_id": 1410334}}, {"model": "metainfo.source", "pk": 6596, "fields": {"orig_filename": "Pohl_Max_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 155f.", "author": "", "orig_id": 1410335}}, {"model": "metainfo.source", "pk": 6597, "fields": {"orig_filename": "Pohl_Robert_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 156", "author": "", "orig_id": 1410336}}, {"model": "metainfo.source", "pk": 6598, "fields": {"orig_filename": "Pohl_Wenzel_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 156f.", "author": "", "orig_id": 1410337}}, {"model": "metainfo.source", "pk": 6599, "fields": {"orig_filename": "Pohnert_Karl_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158", "author": "", "orig_id": 1410343}}, {"model": "metainfo.source", "pk": 6600, "fields": {"orig_filename": "Pojatzi_Florian_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 158f.", "author": "", "orig_id": 1410344}}, {"model": "metainfo.source", "pk": 6601, "fields": {"orig_filename": "Poklukar_Josip_1837_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159", "author": "", "orig_id": 1410345}}, {"model": "metainfo.source", "pk": 6602, "fields": {"orig_filename": "Pokoly_Jozsef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159", "author": "", "orig_id": 1410346}}, {"model": "metainfo.source", "pk": 6603, "fields": {"orig_filename": "Pokorny-Fuerstenschild_Alois_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410428}}, {"model": "metainfo.source", "pk": 6604, "fields": {"orig_filename": "Pokorny_Adalbert_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160", "author": "", "orig_id": 1410348}}, {"model": "metainfo.source", "pk": 6605, "fields": {"orig_filename": "Pokorny_Alois_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 160f.", "author": "", "orig_id": 1410420}}, {"model": "metainfo.source", "pk": 6606, "fields": {"orig_filename": "Pokorny_Emanuel_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 161", "author": "", "orig_id": 1410421}}, {"model": "metainfo.source", "pk": 6607, "fields": {"orig_filename": "Pokorny_Franz_1797_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 161f.", "author": "", "orig_id": 1410422}}, {"model": "metainfo.source", "pk": 6608, "fields": {"orig_filename": "Pokorny_Johann_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162", "author": "", "orig_id": 1410423}}, {"model": "metainfo.source", "pk": 6609, "fields": {"orig_filename": "Pokorny_Josef-Vaclav_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162", "author": "", "orig_id": 1410424}}, {"model": "metainfo.source", "pk": 6610, "fields": {"orig_filename": "Pokorny_Rudolf_1853_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 162f.", "author": "", "orig_id": 1410425}}, {"model": "metainfo.source", "pk": 6611, "fields": {"orig_filename": "Pokorny_Rudolf_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410426}}, {"model": "metainfo.source", "pk": 6612, "fields": {"orig_filename": "Pokorny_Wilhelm_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163", "author": "", "orig_id": 1410427}}, {"model": "metainfo.source", "pk": 6613, "fields": {"orig_filename": "Pokorn_Franc_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 159f.", "author": "", "orig_id": 1410347}}, {"model": "metainfo.source", "pk": 6614, "fields": {"orig_filename": "Pokutynski_Filip_1829_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 163f.", "author": "", "orig_id": 1410429}}, {"model": "metainfo.source", "pk": 6615, "fields": {"orig_filename": "Pokutynski_Jozef_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 164", "author": "", "orig_id": 1410430}}, {"model": "metainfo.source", "pk": 6616, "fields": {"orig_filename": "Pol-Pollenburg_Wincenty_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 164f.", "author": "", "orig_id": 1410431}}, {"model": "metainfo.source", "pk": 6617, "fields": {"orig_filename": "Polacco_Luigi_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165", "author": "", "orig_id": 1410432}}, {"model": "metainfo.source", "pk": 6618, "fields": {"orig_filename": "Polacek_Karel_1892_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165", "author": "", "orig_id": 1410433}}, {"model": "metainfo.source", "pk": 6619, "fields": {"orig_filename": "Polaczek_Stanislaw-Karol_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 165f.", "author": "", "orig_id": 1410434}}, {"model": "metainfo.source", "pk": 6620, "fields": {"orig_filename": "Polaczkowna_Helena_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410435}}, {"model": "metainfo.source", "pk": 6621, "fields": {"orig_filename": "Polak-Klumberg_Alexander_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410527}}, {"model": "metainfo.source", "pk": 6622, "fields": {"orig_filename": "Polak-Parnau_Bernhard_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410528}}, {"model": "metainfo.source", "pk": 6623, "fields": {"orig_filename": "Polak-Parnegg_Leopold_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174", "author": "", "orig_id": 1410529}}, {"model": "metainfo.source", "pk": 6624, "fields": {"orig_filename": "Polak-Rudin_Adolf_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 174f.", "author": "", "orig_id": 1410530}}, {"model": "metainfo.source", "pk": 6625, "fields": {"orig_filename": "Polak_Antal_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410436}}, {"model": "metainfo.source", "pk": 6626, "fields": {"orig_filename": "Polak_Chaim_1834_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166", "author": "", "orig_id": 1410437}}, {"model": "metainfo.source", "pk": 6627, "fields": {"orig_filename": "Polak_David-Rudolf_1814_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 166f.", "author": "", "orig_id": 1410438}}, {"model": "metainfo.source", "pk": 6628, "fields": {"orig_filename": "Polak_Ernst_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 167", "author": "", "orig_id": 1410439}}, {"model": "metainfo.source", "pk": 6629, "fields": {"orig_filename": "Polak_Ferdinande_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 167f.", "author": "", "orig_id": 1410440}}, {"model": "metainfo.source", "pk": 6630, "fields": {"orig_filename": "Polak_Friedrich_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 168", "author": "", "orig_id": 1410441}}, {"model": "metainfo.source", "pk": 6631, "fields": {"orig_filename": "Polak_Gustav_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 168f.", "author": "", "orig_id": 1410442}}, {"model": "metainfo.source", "pk": 6632, "fields": {"orig_filename": "Polak_Heinrich_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 169", "author": "", "orig_id": 1410511}}, {"model": "metainfo.source", "pk": 6633, "fields": {"orig_filename": "Polak_Irma_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 169f.", "author": "", "orig_id": 1410512}}, {"model": "metainfo.source", "pk": 6634, "fields": {"orig_filename": "Polak_Jacques_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410513}}, {"model": "metainfo.source", "pk": 6635, "fields": {"orig_filename": "Polak_Jakob-Eduard_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410514}}, {"model": "metainfo.source", "pk": 6636, "fields": {"orig_filename": "Polak_Joachim_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 170", "author": "", "orig_id": 1410515}}, {"model": "metainfo.source", "pk": 6637, "fields": {"orig_filename": "Polak_Josef_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410516}}, {"model": "metainfo.source", "pk": 6638, "fields": {"orig_filename": "Polak_Julius_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410517}}, {"model": "metainfo.source", "pk": 6639, "fields": {"orig_filename": "Polak_Lazar_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410518}}, {"model": "metainfo.source", "pk": 6640, "fields": {"orig_filename": "Polak_Leo_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 171", "author": "", "orig_id": 1410519}}, {"model": "metainfo.source", "pk": 6641, "fields": {"orig_filename": "Polak_Mihaly_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410520}}, {"model": "metainfo.source", "pk": 6642, "fields": {"orig_filename": "Polak_Miksa_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410521}}, {"model": "metainfo.source", "pk": 6643, "fields": {"orig_filename": "Polak_Otto_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172", "author": "", "orig_id": 1410522}}, {"model": "metainfo.source", "pk": 6644, "fields": {"orig_filename": "Polak_Rudolf_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 172f.", "author": "", "orig_id": 1410523}}, {"model": "metainfo.source", "pk": 6645, "fields": {"orig_filename": "Polak_Viljem_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173", "author": "", "orig_id": 1410524}}, {"model": "metainfo.source", "pk": 6646, "fields": {"orig_filename": "Polak_Vinzenz_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173", "author": "", "orig_id": 1410525}}, {"model": "metainfo.source", "pk": 6647, "fields": {"orig_filename": "Polak_Wilhelm-Johann_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 173f.", "author": "", "orig_id": 1410526}}, {"model": "metainfo.source", "pk": 6648, "fields": {"orig_filename": "Polansky_Stanislaus_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 175", "author": "", "orig_id": 1410531}}, {"model": "metainfo.source", "pk": 6649, "fields": {"orig_filename": "Polek_Johann_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 175f.", "author": "", "orig_id": 1410532}}, {"model": "metainfo.source", "pk": 6650, "fields": {"orig_filename": "Polesini_Gian-Paolo_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410533}}, {"model": "metainfo.source", "pk": 6651, "fields": {"orig_filename": "Polic-Kamov_Janko_1886_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410607}}, {"model": "metainfo.source", "pk": 6652, "fields": {"orig_filename": "Polic_Martin_1850_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176f.", "author": "", "orig_id": 1410606}}, {"model": "metainfo.source", "pk": 6653, "fields": {"orig_filename": "Polikeit_Karl_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410608}}, {"model": "metainfo.source", "pk": 6654, "fields": {"orig_filename": "Polit-Desancic_Mihailo_1833_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 177", "author": "", "orig_id": 1410609}}, {"model": "metainfo.source", "pk": 6655, "fields": {"orig_filename": "Politeo_Dinko_1854_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178", "author": "", "orig_id": 1410610}}, {"model": "metainfo.source", "pk": 6656, "fields": {"orig_filename": "Politeo_Giorgio_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178", "author": "", "orig_id": 1410611}}, {"model": "metainfo.source", "pk": 6657, "fields": {"orig_filename": "Politi_Odorico_1785_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 178f.", "author": "", "orig_id": 1410612}}, {"model": "metainfo.source", "pk": 6658, "fields": {"orig_filename": "Politzer-Csapo_Zsigmond_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180", "author": "", "orig_id": 1410615}}, {"model": "metainfo.source", "pk": 6659, "fields": {"orig_filename": "Politzer_Adam_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 179", "author": "", "orig_id": 1410613}}, {"model": "metainfo.source", "pk": 6660, "fields": {"orig_filename": "Politzer_Leopold-Maximilian_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 179f.", "author": "", "orig_id": 1410614}}, {"model": "metainfo.source", "pk": 6661, "fields": {"orig_filename": "Polivka_Jiri_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180", "author": "", "orig_id": 1410616}}, {"model": "metainfo.source", "pk": 6662, "fields": {"orig_filename": "Polivka_Vladimir_1896_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 180f.", "author": "", "orig_id": 1410617}}, {"model": "metainfo.source", "pk": 6663, "fields": {"orig_filename": "Poli_Baldassarre_1795_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 176", "author": "", "orig_id": 1410534}}, {"model": "metainfo.source", "pk": 6664, "fields": {"orig_filename": "Poljak_Izidor_1883_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410618}}, {"model": "metainfo.source", "pk": 6665, "fields": {"orig_filename": "Poljanec_Ljudmila_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181f.", "author": "", "orig_id": 1410620}}, {"model": "metainfo.source", "pk": 6666, "fields": {"orig_filename": "Poljanec_Vinko_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410621}}, {"model": "metainfo.source", "pk": 6667, "fields": {"orig_filename": "Polka_Anna_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410622}}, {"model": "metainfo.source", "pk": 6668, "fields": {"orig_filename": "Pollanetz_Josef_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182", "author": "", "orig_id": 1410623}}, {"model": "metainfo.source", "pk": 6669, "fields": {"orig_filename": "Poller_Alfons_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 182f.", "author": "", "orig_id": 1410624}}, {"model": "metainfo.source", "pk": 6670, "fields": {"orig_filename": "Plank_Josef_1815_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115f.", "author": "", "orig_id": 1409840}}, {"model": "metainfo.source", "pk": 6671, "fields": {"orig_filename": "Planner-Plann_Julius_1827_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409842}}, {"model": "metainfo.source", "pk": 6672, "fields": {"orig_filename": "Plantan_Ivan_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409843}}, {"model": "metainfo.source", "pk": 6673, "fields": {"orig_filename": "Plappart-Frauenberg_Joachim-Friedrich_1753_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116f.", "author": "", "orig_id": 1409844}}, {"model": "metainfo.source", "pk": 6674, "fields": {"orig_filename": "Plappart-Leenheer_Anton_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409845}}, {"model": "metainfo.source", "pk": 6675, "fields": {"orig_filename": "Plappart-Leenheer_August_1836_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409846}}, {"model": "metainfo.source", "pk": 6676, "fields": {"orig_filename": "Plaschkes_Leopold_1884_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117", "author": "", "orig_id": 1409847}}, {"model": "metainfo.source", "pk": 6677, "fields": {"orig_filename": "Plaseller_Josef_1812_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 117f.", "author": "", "orig_id": 1409848}}, {"model": "metainfo.source", "pk": 6678, "fields": {"orig_filename": "Plass_Karl_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409849}}, {"model": "metainfo.source", "pk": 6679, "fields": {"orig_filename": "Plattensteiner_Christian_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409851}}, {"model": "metainfo.source", "pk": 6680, "fields": {"orig_filename": "Platter_Julius_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409852}}, {"model": "metainfo.source", "pk": 6681, "fields": {"orig_filename": "Platte_August_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 118", "author": "", "orig_id": 1409850}}, {"model": "metainfo.source", "pk": 6682, "fields": {"orig_filename": "Plattner_Albert_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409853}}, {"model": "metainfo.source", "pk": 6683, "fields": {"orig_filename": "Plattner_Christian_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409854}}, {"model": "metainfo.source", "pk": 6684, "fields": {"orig_filename": "Plattner_Franz_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119", "author": "", "orig_id": 1409855}}, {"model": "metainfo.source", "pk": 6685, "fields": {"orig_filename": "Plattner_Johann_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 119f.", "author": "", "orig_id": 1409856}}, {"model": "metainfo.source", "pk": 6686, "fields": {"orig_filename": "Platzer_Ignac-Michael_1757_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409858}}, {"model": "metainfo.source", "pk": 6687, "fields": {"orig_filename": "Platzer_Robert_1831_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409859}}, {"model": "metainfo.source", "pk": 6688, "fields": {"orig_filename": "Plauert_Arno_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120", "author": "", "orig_id": 1409860}}, {"model": "metainfo.source", "pk": 6689, "fields": {"orig_filename": "Plechacek_Aloisia_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121", "author": "", "orig_id": 1409862}}, {"model": "metainfo.source", "pk": 6690, "fields": {"orig_filename": "Plech_Johann_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 120f.", "author": "", "orig_id": 1409861}}, {"model": "metainfo.source", "pk": 6691, "fields": {"orig_filename": "Plecnik_Janez_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121", "author": "", "orig_id": 1409863}}, {"model": "metainfo.source", "pk": 6692, "fields": {"orig_filename": "Pleischl_Adolf-Martin_1787_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 121f.", "author": "", "orig_id": 1409864}}, {"model": "metainfo.source", "pk": 6693, "fields": {"orig_filename": "Plemel_Valentin_1820_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122", "author": "", "orig_id": 1409935}}, {"model": "metainfo.source", "pk": 6694, "fields": {"orig_filename": "Plenciz_Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122", "author": "", "orig_id": 1409937}}, {"model": "metainfo.source", "pk": 6695, "fields": {"orig_filename": "Plener_Ernst_1841_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 122f.", "author": "", "orig_id": 1409938}}, {"model": "metainfo.source", "pk": 6696, "fields": {"orig_filename": "Plener_Ignaz_1810_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123", "author": "", "orig_id": 1409939}}, {"model": "metainfo.source", "pk": 6697, "fields": {"orig_filename": "Plenker_Theodor_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123", "author": "", "orig_id": 1409940}}, {"model": "metainfo.source", "pk": 6698, "fields": {"orig_filename": "Plentzner-Scharneck_Gustav_1842_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 123f.", "author": "", "orig_id": 1409941}}, {"model": "metainfo.source", "pk": 6699, "fields": {"orig_filename": "Pleschner-Eichstett_Eduard_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409943}}, {"model": "metainfo.source", "pk": 6700, "fields": {"orig_filename": "Pleschner_Hans-Gallus_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409942}}, {"model": "metainfo.source", "pk": 6701, "fields": {"orig_filename": "Plesser_Alois_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124f.", "author": "", "orig_id": 1409945}}, {"model": "metainfo.source", "pk": 6702, "fields": {"orig_filename": "Plessing_Rudolf_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409946}}, {"model": "metainfo.source", "pk": 6703, "fields": {"orig_filename": "Pless_Franz_1819_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 124", "author": "", "orig_id": 1409944}}, {"model": "metainfo.source", "pk": 6704, "fields": {"orig_filename": "Plestenjak_Jan_1899_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409947}}, {"model": "metainfo.source", "pk": 6705, "fields": {"orig_filename": "Pletersnik_Maks_1840_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125", "author": "", "orig_id": 1409948}}, {"model": "metainfo.source", "pk": 6706, "fields": {"orig_filename": "Pletz_Josef_1788_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 125f.", "author": "", "orig_id": 1409949}}, {"model": "metainfo.source", "pk": 6707, "fields": {"orig_filename": "Pleyel_Ignaz-Josef_1757_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 126", "author": "", "orig_id": 1409950}}, {"model": "metainfo.source", "pk": 6708, "fields": {"orig_filename": "Pleyer_Kleophas_1898_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 126f.", "author": "", "orig_id": 1409951}}, {"model": "metainfo.source", "pk": 6709, "fields": {"orig_filename": "Plichta_Soma_1832_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 127", "author": "", "orig_id": 1409952}}, {"model": "metainfo.source", "pk": 6710, "fields": {"orig_filename": "Pliveric_Josip_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 127", "author": "", "orig_id": 1409953}}, {"model": "metainfo.source", "pk": 6711, "fields": {"orig_filename": "Ploechl_Josef_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409954}}, {"model": "metainfo.source", "pk": 6712, "fields": {"orig_filename": "Ploehn_Robert_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409955}}, {"model": "metainfo.source", "pk": 6713, "fields": {"orig_filename": "Ploessl_Simon_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128", "author": "", "orig_id": 1409956}}, {"model": "metainfo.source", "pk": 6714, "fields": {"orig_filename": "Ploj_Miroslav_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 128f.", "author": "", "orig_id": 1409957}}, {"model": "metainfo.source", "pk": 6715, "fields": {"orig_filename": "Ploner_Innozenz_1865_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410026}}, {"model": "metainfo.source", "pk": 6716, "fields": {"orig_filename": "Ploner_Josef_1841_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410027}}, {"model": "metainfo.source", "pk": 6717, "fields": {"orig_filename": "Plosz_Pal_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129", "author": "", "orig_id": 1410028}}, {"model": "metainfo.source", "pk": 6718, "fields": {"orig_filename": "Plosz_Sandor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 129f.", "author": "", "orig_id": 1410029}}, {"model": "metainfo.source", "pk": 6719, "fields": {"orig_filename": "Pluhar_Ladislav_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410030}}, {"model": "metainfo.source", "pk": 6720, "fields": {"orig_filename": "Pluskal_Frantisek_1811_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410031}}, {"model": "metainfo.source", "pk": 6721, "fields": {"orig_filename": "Poche_Adolf_1811_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130", "author": "", "orig_id": 1410032}}, {"model": "metainfo.source", "pk": 6722, "fields": {"orig_filename": "Pockstaller_Pirmin_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131f.", "author": "", "orig_id": 1410036}}, {"model": "metainfo.source", "pk": 6723, "fields": {"orig_filename": "Pock_Alexander_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 130f.", "author": "", "orig_id": 1410033}}, {"model": "metainfo.source", "pk": 6724, "fields": {"orig_filename": "Pock_Friedrich_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131", "author": "", "orig_id": 1410034}}, {"model": "metainfo.source", "pk": 6725, "fields": {"orig_filename": "Pock_Julius_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 131", "author": "", "orig_id": 1410035}}, {"model": "metainfo.source", "pk": 6726, "fields": {"orig_filename": "Pocta_Filip_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410037}}, {"model": "metainfo.source", "pk": 6727, "fields": {"orig_filename": "Podaubsky_Eugen_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410038}}, {"model": "metainfo.source", "pk": 6728, "fields": {"orig_filename": "Podhajsky_Alois_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132", "author": "", "orig_id": 1410040}}, {"model": "metainfo.source", "pk": 6729, "fields": {"orig_filename": "Podhajsky_Vincenc_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 132f.", "author": "", "orig_id": 1410041}}, {"model": "metainfo.source", "pk": 6730, "fields": {"orig_filename": "Podhorsky_Katharina_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133", "author": "", "orig_id": 1410042}}, {"model": "metainfo.source", "pk": 6731, "fields": {"orig_filename": "Podhradsky_Josef_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133", "author": "", "orig_id": 1410043}}, {"model": "metainfo.source", "pk": 6732, "fields": {"orig_filename": "Podhradsky_Josef_1823_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 133f.", "author": "", "orig_id": 1410044}}, {"model": "metainfo.source", "pk": 6733, "fields": {"orig_filename": "Podkonitzky_Adam_1750_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 134", "author": "", "orig_id": 1410045}}, {"model": "metainfo.source", "pk": 6734, "fields": {"orig_filename": "Podlaha_Antonin_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 134f.", "author": "", "orig_id": 1410046}}, {"model": "metainfo.source", "pk": 6735, "fields": {"orig_filename": "Podlewski_Walerian_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135", "author": "", "orig_id": 1410047}}, {"model": "metainfo.source", "pk": 6736, "fields": {"orig_filename": "Podlipny_Jan_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135", "author": "", "orig_id": 1410048}}, {"model": "metainfo.source", "pk": 6737, "fields": {"orig_filename": "Podlipska_Sofie_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 135f.", "author": "", "orig_id": 1410126}}, {"model": "metainfo.source", "pk": 6738, "fields": {"orig_filename": "Podlipsky_Josef_1816_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 136", "author": "", "orig_id": 1410127}}, {"model": "metainfo.source", "pk": 6739, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Frigyes_1824_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 136f.", "author": "", "orig_id": 1410128}}, {"model": "metainfo.source", "pk": 6740, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Geza_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410129}}, {"model": "metainfo.source", "pk": 6741, "fields": {"orig_filename": "Podmaniczky-Aszod-Podmanin_Jozsef_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410130}}, {"model": "metainfo.source", "pk": 6742, "fields": {"orig_filename": "Podraczky_Josef_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137", "author": "", "orig_id": 1410131}}, {"model": "metainfo.source", "pk": 6743, "fields": {"orig_filename": "Poech_Franz-Josef_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 137f.", "author": "", "orig_id": 1410132}}, {"model": "metainfo.source", "pk": 6744, "fields": {"orig_filename": "Poech_Rudolf_1870_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 138f.", "author": "", "orig_id": 1410133}}, {"model": "metainfo.source", "pk": 6745, "fields": {"orig_filename": "Poeck_Friedrich_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 139", "author": "", "orig_id": 1410134}}, {"model": "metainfo.source", "pk": 6746, "fields": {"orig_filename": "Poeck_Gregor_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 139f.", "author": "", "orig_id": 1410135}}, {"model": "metainfo.source", "pk": 6747, "fields": {"orig_filename": "Poeder_Franz_1779_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140", "author": "", "orig_id": 1410136}}, {"model": "metainfo.source", "pk": 6748, "fields": {"orig_filename": "Poehacker_Leopold_1782_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140", "author": "", "orig_id": 1410137}}, {"model": "metainfo.source", "pk": 6749, "fields": {"orig_filename": "Poehnl_Hans_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 140f.", "author": "", "orig_id": 1410138}}, {"model": "metainfo.source", "pk": 6750, "fields": {"orig_filename": "Poelleritzer_Leopold_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410141}}, {"model": "metainfo.source", "pk": 6751, "fields": {"orig_filename": "Poellnitz_Ernst_1813_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410142}}, {"model": "metainfo.source", "pk": 6752, "fields": {"orig_filename": "Poell_Alfred_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410139}}, {"model": "metainfo.source", "pk": 6753, "fields": {"orig_filename": "Poell_Josef_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 141", "author": "", "orig_id": 1410140}}, {"model": "metainfo.source", "pk": 6754, "fields": {"orig_filename": "Poelt-Poeltenberg_Ernst_1807_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410144}}, {"model": "metainfo.source", "pk": 6755, "fields": {"orig_filename": "Poelt_Klara_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410143}}, {"model": "metainfo.source", "pk": 6756, "fields": {"orig_filename": "Poelzer_Amalie_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 142", "author": "", "orig_id": 1410145}}, {"model": "metainfo.source", "pk": 6757, "fields": {"orig_filename": "Poelzer_Johann_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143", "author": "", "orig_id": 1410146}}, {"model": "metainfo.source", "pk": 6758, "fields": {"orig_filename": "Poelzl_Franz-Xaver_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143", "author": "", "orig_id": 1410147}}, {"model": "metainfo.source", "pk": 6759, "fields": {"orig_filename": "Poenninger_Franz_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 143f.", "author": "", "orig_id": 1410148}}, {"model": "metainfo.source", "pk": 6760, "fields": {"orig_filename": "Poenninger_Laurenz_1776_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410222}}, {"model": "metainfo.source", "pk": 6761, "fields": {"orig_filename": "Poerner_Josef_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410223}}, {"model": "metainfo.source", "pk": 6762, "fields": {"orig_filename": "Poeschl_Alexander_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144", "author": "", "orig_id": 1410224}}, {"model": "metainfo.source", "pk": 6763, "fields": {"orig_filename": "Poeschl_Josef_1794_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 144f.", "author": "", "orig_id": 1410225}}, {"model": "metainfo.source", "pk": 6764, "fields": {"orig_filename": "Poeschl_Rudolf_1852_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145", "author": "", "orig_id": 1410226}}, {"model": "metainfo.source", "pk": 6765, "fields": {"orig_filename": "Poeschl_Viktor_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145", "author": "", "orig_id": 1410227}}, {"model": "metainfo.source", "pk": 6766, "fields": {"orig_filename": "Poesinger_Bernhard_1877_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 145f.", "author": "", "orig_id": 1410228}}, {"model": "metainfo.source", "pk": 6767, "fields": {"orig_filename": "Poesinger_Rudolf_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410229}}, {"model": "metainfo.source", "pk": 6768, "fields": {"orig_filename": "Poessinger_Franz-Alexander_1767_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410230}}, {"model": "metainfo.source", "pk": 6769, "fields": {"orig_filename": "Poessl_Wilhelm_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146", "author": "", "orig_id": 1410231}}, {"model": "metainfo.source", "pk": 6770, "fields": {"orig_filename": "Poestion_Josef-Calasanz_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 147", "author": "", "orig_id": 1410233}}, {"model": "metainfo.source", "pk": 6771, "fields": {"orig_filename": "Poestion_Josef_1741_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 146f.", "author": "", "orig_id": 1410232}}, {"model": "metainfo.source", "pk": 6772, "fields": {"orig_filename": "Poetsch_Ignaz-Sigismund_1823_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 148", "author": "", "orig_id": 1410235}}, {"model": "metainfo.source", "pk": 6773, "fields": {"orig_filename": "Poetsch_Ignaz_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 147f.", "author": "", "orig_id": 1410234}}, {"model": "metainfo.source", "pk": 6774, "fields": {"orig_filename": "Pinkas_Ladislav_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410793}}, {"model": "metainfo.source", "pk": 6775, "fields": {"orig_filename": "Pinkas_Sobeslav-Hippolyt_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410794}}, {"model": "metainfo.source", "pk": 6776, "fields": {"orig_filename": "Pino-Friedenthal_Arthur-Georg_1843_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84", "author": "", "orig_id": 1410860}}, {"model": "metainfo.source", "pk": 6777, "fields": {"orig_filename": "Pino-Friedenthal_Felix-Maria_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 84f.", "author": "", "orig_id": 1410861}}, {"model": "metainfo.source", "pk": 6778, "fields": {"orig_filename": "Pinsker_Simcha_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 85f.", "author": "", "orig_id": 1410863}}, {"model": "metainfo.source", "pk": 6779, "fields": {"orig_filename": "Pins_Emil_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 85", "author": "", "orig_id": 1410862}}, {"model": "metainfo.source", "pk": 6780, "fields": {"orig_filename": "Pintaric_Fortunat_1798_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410866}}, {"model": "metainfo.source", "pk": 6781, "fields": {"orig_filename": "Pintar_Lovro_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410864}}, {"model": "metainfo.source", "pk": 6782, "fields": {"orig_filename": "Pintar_Luka_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86", "author": "", "orig_id": 1410865}}, {"model": "metainfo.source", "pk": 6783, "fields": {"orig_filename": "Pintner_Theodor_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 86f.", "author": "", "orig_id": 1410867}}, {"model": "metainfo.source", "pk": 6784, "fields": {"orig_filename": "Piotrowski_Gustaw_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87", "author": "", "orig_id": 1410868}}, {"model": "metainfo.source", "pk": 6785, "fields": {"orig_filename": "Piotrowski_Gustaw_1863_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87", "author": "", "orig_id": 1410869}}, {"model": "metainfo.source", "pk": 6786, "fields": {"orig_filename": "Pipitz_Franz_1815_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 87f.", "author": "", "orig_id": 1410870}}, {"model": "metainfo.source", "pk": 6787, "fields": {"orig_filename": "Pipitz_Josef_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 88", "author": "", "orig_id": 1410871}}, {"model": "metainfo.source", "pk": 6788, "fields": {"orig_filename": "Pippich_Karel_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 88f.", "author": "", "orig_id": 1410872}}, {"model": "metainfo.source", "pk": 6789, "fields": {"orig_filename": "Pippich_Karl_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410873}}, {"model": "metainfo.source", "pk": 6790, "fields": {"orig_filename": "Pirchala_Emerich_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410877}}, {"model": "metainfo.source", "pk": 6791, "fields": {"orig_filename": "Pirchan_Emil_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410878}}, {"model": "metainfo.source", "pk": 6792, "fields": {"orig_filename": "Pirchegger_Anton_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90", "author": "", "orig_id": 1410879}}, {"model": "metainfo.source", "pk": 6793, "fields": {"orig_filename": "Pirchegger_Simon_1889_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 90f.", "author": "", "orig_id": 1410880}}, {"model": "metainfo.source", "pk": 6794, "fields": {"orig_filename": "Pirchl_Johann-Rudolf_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 91", "author": "", "orig_id": 1410881}}, {"model": "metainfo.source", "pk": 6795, "fields": {"orig_filename": "Pirckmayer_Friedrich_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 91f.", "author": "", "orig_id": 1410955}}, {"model": "metainfo.source", "pk": 6796, "fields": {"orig_filename": "Pirc_Alojzij_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410874}}, {"model": "metainfo.source", "pk": 6797, "fields": {"orig_filename": "Pirc_Ciril_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89", "author": "", "orig_id": 1410875}}, {"model": "metainfo.source", "pk": 6798, "fields": {"orig_filename": "Pirc_Franc_1785_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 89f.", "author": "", "orig_id": 1410876}}, {"model": "metainfo.source", "pk": 6799, "fields": {"orig_filename": "Piret-Bihain_Eugen_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410956}}, {"model": "metainfo.source", "pk": 6800, "fields": {"orig_filename": "Pirhalla_Martin_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410957}}, {"model": "metainfo.source", "pk": 6801, "fields": {"orig_filename": "Piringer_Benedikt_1775_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92", "author": "", "orig_id": 1410958}}, {"model": "metainfo.source", "pk": 6802, "fields": {"orig_filename": "Piringer_Ferdinand_1780_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 92f.", "author": "", "orig_id": 1410959}}, {"model": "metainfo.source", "pk": 6803, "fields": {"orig_filename": "Piringer_Josef-Friedrich_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410960}}, {"model": "metainfo.source", "pk": 6804, "fields": {"orig_filename": "Piringer_Michael_1763_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410961}}, {"model": "metainfo.source", "pk": 6805, "fields": {"orig_filename": "Piringer_Otto_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93", "author": "", "orig_id": 1410962}}, {"model": "metainfo.source", "pk": 6806, "fields": {"orig_filename": "Pirjevec_Avgust_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 93f.", "author": "", "orig_id": 1410963}}, {"model": "metainfo.source", "pk": 6807, "fields": {"orig_filename": "Pirker_Max_1886_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410964}}, {"model": "metainfo.source", "pk": 6808, "fields": {"orig_filename": "Pirkhert_Eduard-Max_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410965}}, {"model": "metainfo.source", "pk": 6809, "fields": {"orig_filename": "Pirko_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94", "author": "", "orig_id": 1410966}}, {"model": "metainfo.source", "pk": 6810, "fields": {"orig_filename": "Pirnat_Niko_1903_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 94f.", "author": "", "orig_id": 1410967}}, {"model": "metainfo.source", "pk": 6811, "fields": {"orig_filename": "Pirner_Maxmilian_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 95", "author": "", "orig_id": 1410968}}, {"model": "metainfo.source", "pk": 6812, "fields": {"orig_filename": "Pirquet-Cesenatico_Klemens_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 95f.", "author": "", "orig_id": 1410969}}, {"model": "metainfo.source", "pk": 6813, "fields": {"orig_filename": "Pirsch_Adolf_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410970}}, {"model": "metainfo.source", "pk": 6814, "fields": {"orig_filename": "Piscalar_Alois-Urban_1817_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410971}}, {"model": "metainfo.source", "pk": 6815, "fields": {"orig_filename": "Piscel_Antonio_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 96", "author": "", "orig_id": 1410972}}, {"model": "metainfo.source", "pk": 6816, "fields": {"orig_filename": "Pischek_Johann_1814_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410973}}, {"model": "metainfo.source", "pk": 6817, "fields": {"orig_filename": "Pischinger_Karl_1823_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410974}}, {"model": "metainfo.source", "pk": 6818, "fields": {"orig_filename": "Pischinger_Oskar_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97", "author": "", "orig_id": 1410975}}, {"model": "metainfo.source", "pk": 6819, "fields": {"orig_filename": "Pischitz_Georg_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 97f.", "author": "", "orig_id": 1410976}}, {"model": "metainfo.source", "pk": 6820, "fields": {"orig_filename": "Pischl_Franz_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410977}}, {"model": "metainfo.source", "pk": 6821, "fields": {"orig_filename": "Pischof_Alfred_1882_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410978}}, {"model": "metainfo.source", "pk": 6822, "fields": {"orig_filename": "Pischof_Matthias_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98", "author": "", "orig_id": 1410979}}, {"model": "metainfo.source", "pk": 6823, "fields": {"orig_filename": "Piskacek_Ludwig_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99", "author": "", "orig_id": 1409566}}, {"model": "metainfo.source", "pk": 6824, "fields": {"orig_filename": "Piskac_Bedrich_1898_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 98f.", "author": "", "orig_id": 1409565}}, {"model": "metainfo.source", "pk": 6825, "fields": {"orig_filename": "Pisko_Franz-Josef_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99", "author": "", "orig_id": 1409567}}, {"model": "metainfo.source", "pk": 6826, "fields": {"orig_filename": "Pisko_Ignaz_1828_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 99f.", "author": "", "orig_id": 1409568}}, {"model": "metainfo.source", "pk": 6827, "fields": {"orig_filename": "Pisko_Oskar_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 100", "author": "", "orig_id": 1409569}}, {"model": "metainfo.source", "pk": 6828, "fields": {"orig_filename": "Pisling_Theophil_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 100f.", "author": "", "orig_id": 1409570}}, {"model": "metainfo.source", "pk": 6829, "fields": {"orig_filename": "Pistek_Franciszek_1786_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409655}}, {"model": "metainfo.source", "pk": 6830, "fields": {"orig_filename": "Pistor_Betty_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409656}}, {"model": "metainfo.source", "pk": 6831, "fields": {"orig_filename": "Pistor_Felix_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 101", "author": "", "orig_id": 1409657}}, {"model": "metainfo.source", "pk": 6832, "fields": {"orig_filename": "Pistor_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409658}}, {"model": "metainfo.source", "pk": 6833, "fields": {"orig_filename": "Pisztory_Mor_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409659}}, {"model": "metainfo.source", "pk": 6834, "fields": {"orig_filename": "Pitacco_Giorgio_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102", "author": "", "orig_id": 1409660}}, {"model": "metainfo.source", "pk": 6835, "fields": {"orig_filename": "Pitha_Franz_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 102f.", "author": "", "orig_id": 1409661}}, {"model": "metainfo.source", "pk": 6836, "fields": {"orig_filename": "Pitha_Vaclav_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103", "author": "", "orig_id": 1409662}}, {"model": "metainfo.source", "pk": 6837, "fields": {"orig_filename": "Pitner_Franz_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103", "author": "", "orig_id": 1409663}}, {"model": "metainfo.source", "pk": 6838, "fields": {"orig_filename": "Pitner_Maximilian_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 103f.", "author": "", "orig_id": 1409664}}, {"model": "metainfo.source", "pk": 6839, "fields": {"orig_filename": "Pitra_Franz_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104", "author": "", "orig_id": 1409665}}, {"model": "metainfo.source", "pk": 6840, "fields": {"orig_filename": "Pitreich_Anton_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104", "author": "", "orig_id": 1409666}}, {"model": "metainfo.source", "pk": 6841, "fields": {"orig_filename": "Pitreich_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 104f.", "author": "", "orig_id": 1409667}}, {"model": "metainfo.source", "pk": 6842, "fields": {"orig_filename": "Pitreich_Heinrich_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105", "author": "", "orig_id": 1409668}}, {"model": "metainfo.source", "pk": 6843, "fields": {"orig_filename": "Pitreich_Maximilian_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105", "author": "", "orig_id": 1409669}}, {"model": "metainfo.source", "pk": 6844, "fields": {"orig_filename": "Pitsch_Karl-Franz_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 105f.", "author": "", "orig_id": 1409670}}, {"model": "metainfo.source", "pk": 6845, "fields": {"orig_filename": "Pittani_Antonio_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106", "author": "", "orig_id": 1409671}}, {"model": "metainfo.source", "pk": 6846, "fields": {"orig_filename": "Pittel_Adolf_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106", "author": "", "orig_id": 1409741}}, {"model": "metainfo.source", "pk": 6847, "fields": {"orig_filename": "Pittel_Heinrich_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 106f.", "author": "", "orig_id": 1409672}}, {"model": "metainfo.source", "pk": 6848, "fields": {"orig_filename": "Pitteri_Riccardo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107", "author": "", "orig_id": 1409673}}, {"model": "metainfo.source", "pk": 6849, "fields": {"orig_filename": "Pittermann_Emil-Artur_1885_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107", "author": "", "orig_id": 1409674}}, {"model": "metainfo.source", "pk": 6850, "fields": {"orig_filename": "Pittner_Anton_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 107f.", "author": "", "orig_id": 1409675}}, {"model": "metainfo.source", "pk": 6851, "fields": {"orig_filename": "Pittner_Wilhelm_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409676}}, {"model": "metainfo.source", "pk": 6852, "fields": {"orig_filename": "Pittoni_Valentino_1872_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409677}}, {"model": "metainfo.source", "pk": 6853, "fields": {"orig_filename": "Pitzer_Martin_1803_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108", "author": "", "orig_id": 1409749}}, {"model": "metainfo.source", "pk": 6854, "fields": {"orig_filename": "Pitzinger_Franz_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 108f.", "author": "", "orig_id": 1409750}}, {"model": "metainfo.source", "pk": 6855, "fields": {"orig_filename": "Piuariu-Molnar_Ioan_1749_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109", "author": "", "orig_id": 1409751}}, {"model": "metainfo.source", "pk": 6856, "fields": {"orig_filename": "Piva_Giovanni_1798_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109", "author": "", "orig_id": 1409752}}, {"model": "metainfo.source", "pk": 6857, "fields": {"orig_filename": "Pivko_Ljudevit_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 109f.", "author": "", "orig_id": 1409753}}, {"model": "metainfo.source", "pk": 6858, "fields": {"orig_filename": "Pivoda_Frantisek_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110", "author": "", "orig_id": 1409754}}, {"model": "metainfo.source", "pk": 6859, "fields": {"orig_filename": "Pixis_Friedrich-Wilhelm_1785_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110", "author": "", "orig_id": 1409755}}, {"model": "metainfo.source", "pk": 6860, "fields": {"orig_filename": "Pixis_Theodor_1831_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 110f.", "author": "", "orig_id": 1409756}}, {"model": "metainfo.source", "pk": 6861, "fields": {"orig_filename": "Pizzamano_Josef_1809_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111", "author": "", "orig_id": 1409757}}, {"model": "metainfo.source", "pk": 6862, "fields": {"orig_filename": "Pizzighelli_Giuseppe_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111", "author": "", "orig_id": 1409758}}, {"model": "metainfo.source", "pk": 6863, "fields": {"orig_filename": "Pizzini-Daltofonte_Antonio_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 111f.", "author": "", "orig_id": 1409759}}, {"model": "metainfo.source", "pk": 6864, "fields": {"orig_filename": "Placek_Boleslav_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112", "author": "", "orig_id": 1409760}}, {"model": "metainfo.source", "pk": 6865, "fields": {"orig_filename": "Placek_Frantisek_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112", "author": "", "orig_id": 1409761}}, {"model": "metainfo.source", "pk": 6866, "fields": {"orig_filename": "Plachutta_Josef_1827_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 112f.", "author": "", "orig_id": 1409762}}, {"model": "metainfo.source", "pk": 6867, "fields": {"orig_filename": "Plachy_Antonin_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409763}}, {"model": "metainfo.source", "pk": 6868, "fields": {"orig_filename": "Plachy_Vaclav_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409764}}, {"model": "metainfo.source", "pk": 6869, "fields": {"orig_filename": "Plaichinger_Karl_1880_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 113", "author": "", "orig_id": 1409765}}, {"model": "metainfo.source", "pk": 6870, "fields": {"orig_filename": "Plaichinger_Mathilde_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409766}}, {"model": "metainfo.source", "pk": 6871, "fields": {"orig_filename": "Plakolm_Johann_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409767}}, {"model": "metainfo.source", "pk": 6872, "fields": {"orig_filename": "Plancic_Juraj_1899_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114", "author": "", "orig_id": 1409768}}, {"model": "metainfo.source", "pk": 6873, "fields": {"orig_filename": "Planck-Planckburg_Franz_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 114f.", "author": "", "orig_id": 1409769}}, {"model": "metainfo.source", "pk": 6874, "fields": {"orig_filename": "Planck-Planckburg_Karl-Franz_1833_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409770}}, {"model": "metainfo.source", "pk": 6875, "fields": {"orig_filename": "Planckh_Viktor_1904_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409771}}, {"model": "metainfo.source", "pk": 6876, "fields": {"orig_filename": "Plankensteiner_Arnold_1824_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 116", "author": "", "orig_id": 1409841}}, {"model": "metainfo.source", "pk": 6877, "fields": {"orig_filename": "Plank_Beda_1741_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 115", "author": "", "orig_id": 1409772}}, {"model": "metainfo.source", "pk": 6878, "fields": {"orig_filename": "Piazza_Saulle_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410414}}, {"model": "metainfo.source", "pk": 6879, "fields": {"orig_filename": "Piaz_Giovanni-Battista_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48f.", "author": "", "orig_id": 1410412}}, {"model": "metainfo.source", "pk": 6880, "fields": {"orig_filename": "Pia_Julius_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 46", "author": "", "orig_id": 1410404}}, {"model": "metainfo.source", "pk": 6881, "fields": {"orig_filename": "Picciola_Giuseppe_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49f.", "author": "", "orig_id": 1410416}}, {"model": "metainfo.source", "pk": 6882, "fields": {"orig_filename": "Piccoli_Giorgio_1840_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50", "author": "", "orig_id": 1410417}}, {"model": "metainfo.source", "pk": 6883, "fields": {"orig_filename": "Picek_Vaclav-Jaromir_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50", "author": "", "orig_id": 1410418}}, {"model": "metainfo.source", "pk": 6884, "fields": {"orig_filename": "Pichelmayer_Karl_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 50f.", "author": "", "orig_id": 1410419}}, {"model": "metainfo.source", "pk": 6885, "fields": {"orig_filename": "Pichler-Rautenkar_Adolf_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59", "author": "", "orig_id": 1410506}}, {"model": "metainfo.source", "pk": 6886, "fields": {"orig_filename": "Pichler_Anton-Andreas_1770_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52", "author": "", "orig_id": 1410489}}, {"model": "metainfo.source", "pk": 6887, "fields": {"orig_filename": "Pichler_Anton_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52", "author": "", "orig_id": 1410488}}, {"model": "metainfo.source", "pk": 6888, "fields": {"orig_filename": "Pichler_Elisabeth_1783_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 52f.", "author": "", "orig_id": 1410490}}, {"model": "metainfo.source", "pk": 6889, "fields": {"orig_filename": "Pichler_Franz_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 53f.", "author": "", "orig_id": 1410491}}, {"model": "metainfo.source", "pk": 6890, "fields": {"orig_filename": "Pichler_Franz_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54", "author": "", "orig_id": 1410492}}, {"model": "metainfo.source", "pk": 6891, "fields": {"orig_filename": "Pichler_Friedrich_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54", "author": "", "orig_id": 1410493}}, {"model": "metainfo.source", "pk": 6892, "fields": {"orig_filename": "Pichler_Johann_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 54f.", "author": "", "orig_id": 1410494}}, {"model": "metainfo.source", "pk": 6893, "fields": {"orig_filename": "Pichler_Johann_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55", "author": "", "orig_id": 1410495}}, {"model": "metainfo.source", "pk": 6894, "fields": {"orig_filename": "Pichler_Josef_1765_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55", "author": "", "orig_id": 1410496}}, {"model": "metainfo.source", "pk": 6895, "fields": {"orig_filename": "Pichler_Josef_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 55f.", "author": "", "orig_id": 1410497}}, {"model": "metainfo.source", "pk": 6896, "fields": {"orig_filename": "Pichler_Karl_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 56", "author": "", "orig_id": 1410498}}, {"model": "metainfo.source", "pk": 6897, "fields": {"orig_filename": "Pichler_Karoline_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 56f.", "author": "", "orig_id": 1410499}}, {"model": "metainfo.source", "pk": 6898, "fields": {"orig_filename": "Pichler_Kasper_1796_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410500}}, {"model": "metainfo.source", "pk": 6899, "fields": {"orig_filename": "Pichler_Kletus_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410501}}, {"model": "metainfo.source", "pk": 6900, "fields": {"orig_filename": "Pichler_Luigi_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57", "author": "", "orig_id": 1410502}}, {"model": "metainfo.source", "pk": 6901, "fields": {"orig_filename": "Pichler_Maximilian_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 57f.", "author": "", "orig_id": 1410503}}, {"model": "metainfo.source", "pk": 6902, "fields": {"orig_filename": "Pichler_Rudolf_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58", "author": "", "orig_id": 1410504}}, {"model": "metainfo.source", "pk": 6903, "fields": {"orig_filename": "Pichler_Thomas_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58", "author": "", "orig_id": 1409740}}, {"model": "metainfo.source", "pk": 6904, "fields": {"orig_filename": "Pichler_Wilhelm_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 58f.", "author": "", "orig_id": 1410505}}, {"model": "metainfo.source", "pk": 6905, "fields": {"orig_filename": "Pichlova_Frantiska_1811_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59", "author": "", "orig_id": 1410507}}, {"model": "metainfo.source", "pk": 6906, "fields": {"orig_filename": "Pichl_Alois-Ludwig_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 51", "author": "", "orig_id": 1410486}}, {"model": "metainfo.source", "pk": 6907, "fields": {"orig_filename": "Pichl_Josef-Bojislav_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 51f.", "author": "", "orig_id": 1410487}}, {"model": "metainfo.source", "pk": 6908, "fields": {"orig_filename": "Pickert_Karl_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410589}}, {"model": "metainfo.source", "pk": 6909, "fields": {"orig_filename": "Pickl-Witkenberg_Wilhelm_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410590}}, {"model": "metainfo.source", "pk": 6910, "fields": {"orig_filename": "Pick_Adolfo_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 59f.", "author": "", "orig_id": 1410508}}, {"model": "metainfo.source", "pk": 6911, "fields": {"orig_filename": "Pick_Alois_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60", "author": "", "orig_id": 1410509}}, {"model": "metainfo.source", "pk": 6912, "fields": {"orig_filename": "Pick_Arnold_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60", "author": "", "orig_id": 1410510}}, {"model": "metainfo.source", "pk": 6913, "fields": {"orig_filename": "Pick_Friedrich_1867_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 60f.", "author": "", "orig_id": 1410581}}, {"model": "metainfo.source", "pk": 6914, "fields": {"orig_filename": "Pick_Georg-Alexander_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61", "author": "", "orig_id": 1410582}}, {"model": "metainfo.source", "pk": 6915, "fields": {"orig_filename": "Pick_Gustav_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61", "author": "", "orig_id": 1410583}}, {"model": "metainfo.source", "pk": 6916, "fields": {"orig_filename": "Pick_Karl_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 61f.", "author": "", "orig_id": 1410585}}, {"model": "metainfo.source", "pk": 6917, "fields": {"orig_filename": "Pick_Otto_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62", "author": "", "orig_id": 1410586}}, {"model": "metainfo.source", "pk": 6918, "fields": {"orig_filename": "Pick_Philipp-Josef_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62", "author": "", "orig_id": 1410587}}, {"model": "metainfo.source", "pk": 6919, "fields": {"orig_filename": "Pick_Walter_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 62f.", "author": "", "orig_id": 1410588}}, {"model": "metainfo.source", "pk": 6920, "fields": {"orig_filename": "Picman_Josip_1904_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63", "author": "", "orig_id": 1410591}}, {"model": "metainfo.source", "pk": 6921, "fields": {"orig_filename": "Pic_Josef-Ladislav_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410415}}, {"model": "metainfo.source", "pk": 6922, "fields": {"orig_filename": "Pidoll-Quintenbach_Michael_1851_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 63f.", "author": "", "orig_id": 1410592}}, {"model": "metainfo.source", "pk": 6923, "fields": {"orig_filename": "Piekosinski_Franciszek_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 64", "author": "", "orig_id": 1410593}}, {"model": "metainfo.source", "pk": 6924, "fields": {"orig_filename": "Pielsticker_Ludwig_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 64", "author": "", "orig_id": 1410594}}, {"model": "metainfo.source", "pk": 6925, "fields": {"orig_filename": "Pieniazek_Czeslaw-Teofil_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65", "author": "", "orig_id": 1410595}}, {"model": "metainfo.source", "pk": 6926, "fields": {"orig_filename": "Pieniazek_Przemyslaw-Wiktor_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65", "author": "", "orig_id": 1410596}}, {"model": "metainfo.source", "pk": 6927, "fields": {"orig_filename": "Pienkowski_Stefan-Kazimierz_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 65f.", "author": "", "orig_id": 1410597}}, {"model": "metainfo.source", "pk": 6928, "fields": {"orig_filename": "Piepenhagen_August_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66", "author": "", "orig_id": 1410598}}, {"model": "metainfo.source", "pk": 6929, "fields": {"orig_filename": "Pierling_Jakob_1784_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66", "author": "", "orig_id": 1410599}}, {"model": "metainfo.source", "pk": 6930, "fields": {"orig_filename": "Pierre_Viktor_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 66f.", "author": "", "orig_id": 1410600}}, {"model": "metainfo.source", "pk": 6931, "fields": {"orig_filename": "Pierus_Theodor_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67", "author": "", "orig_id": 1410601}}, {"model": "metainfo.source", "pk": 6932, "fields": {"orig_filename": "Pierwipfl_Michael-Wolfgang_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67", "author": "", "orig_id": 1410602}}, {"model": "metainfo.source", "pk": 6933, "fields": {"orig_filename": "Piessinger_Maximilian_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 67f.", "author": "", "orig_id": 1410603}}, {"model": "metainfo.source", "pk": 6934, "fields": {"orig_filename": "Pietak_Leonard_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410604}}, {"model": "metainfo.source", "pk": 6935, "fields": {"orig_filename": "Pietor_Ambro_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410673}}, {"model": "metainfo.source", "pk": 6936, "fields": {"orig_filename": "Pietruski_Oktaw_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68", "author": "", "orig_id": 1410674}}, {"model": "metainfo.source", "pk": 6937, "fields": {"orig_filename": "Pietruski_Stanislaw-Konstanty_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 68f.", "author": "", "orig_id": 1410675}}, {"model": "metainfo.source", "pk": 6938, "fields": {"orig_filename": "Pietrzikowsky_Eduard_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69", "author": "", "orig_id": 1410676}}, {"model": "metainfo.source", "pk": 6939, "fields": {"orig_filename": "Pietschmann_Adolf_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69", "author": "", "orig_id": 1410677}}, {"model": "metainfo.source", "pk": 6940, "fields": {"orig_filename": "Piette-Rivage_Prosper_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 69f.", "author": "", "orig_id": 1410678}}, {"model": "metainfo.source", "pk": 6941, "fields": {"orig_filename": "Piette-Rivage_Prosper_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70", "author": "", "orig_id": 1410679}}, {"model": "metainfo.source", "pk": 6942, "fields": {"orig_filename": "Pietznigg_Franz_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70", "author": "", "orig_id": 1410680}}, {"model": "metainfo.source", "pk": 6943, "fields": {"orig_filename": "Piffl_Friedrich_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 70f.", "author": "", "orig_id": 1410681}}, {"model": "metainfo.source", "pk": 6944, "fields": {"orig_filename": "Piffl_Otto_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71", "author": "", "orig_id": 1410682}}, {"model": "metainfo.source", "pk": 6945, "fields": {"orig_filename": "Piffrader_Johann_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71", "author": "", "orig_id": 1410683}}, {"model": "metainfo.source", "pk": 6946, "fields": {"orig_filename": "Piger_Johann_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410685}}, {"model": "metainfo.source", "pk": 6947, "fields": {"orig_filename": "Pig_Franz-Anton_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 71f.", "author": "", "orig_id": 1410684}}, {"model": "metainfo.source", "pk": 6948, "fields": {"orig_filename": "Pikhart_Antonin_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410687}}, {"model": "metainfo.source", "pk": 6949, "fields": {"orig_filename": "Piksa_Maria-Samuela_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410688}}, {"model": "metainfo.source", "pk": 6950, "fields": {"orig_filename": "Pik_Franciszek_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72", "author": "", "orig_id": 1410686}}, {"model": "metainfo.source", "pk": 6951, "fields": {"orig_filename": "Pilarski_Valentin-Kasimir_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74", "author": "", "orig_id": 1410692}}, {"model": "metainfo.source", "pk": 6952, "fields": {"orig_filename": "Pilar_Djuro_1846_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 72f.", "author": "", "orig_id": 1410689}}, {"model": "metainfo.source", "pk": 6953, "fields": {"orig_filename": "Pilar_Ivo_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 73", "author": "", "orig_id": 1410690}}, {"model": "metainfo.source", "pk": 6954, "fields": {"orig_filename": "Pilar_Martin_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 73", "author": "", "orig_id": 1410691}}, {"model": "metainfo.source", "pk": 6955, "fields": {"orig_filename": "Pilat_Josef-Anton_1782_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74", "author": "", "orig_id": 1410693}}, {"model": "metainfo.source", "pk": 6956, "fields": {"orig_filename": "Pilat_Roman_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 74f.", "author": "", "orig_id": 1410694}}, {"model": "metainfo.source", "pk": 6957, "fields": {"orig_filename": "Pilat_Tadeusz_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 75", "author": "", "orig_id": 1410695}}, {"model": "metainfo.source", "pk": 6958, "fields": {"orig_filename": "Pilat_Wladyslaw_1857_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 75f.", "author": "", "orig_id": 1410769}}, {"model": "metainfo.source", "pk": 6959, "fields": {"orig_filename": "Pilhal_Karl_1822_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410770}}, {"model": "metainfo.source", "pk": 6960, "fields": {"orig_filename": "Pillepic-Lippahora_Rudolf_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410772}}, {"model": "metainfo.source", "pk": 6961, "fields": {"orig_filename": "Pillepich_Pietro_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76f.", "author": "", "orig_id": 1410773}}, {"model": "metainfo.source", "pk": 6962, "fields": {"orig_filename": "Pillersdorff_Franz_1786_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77", "author": "", "orig_id": 1410775}}, {"model": "metainfo.source", "pk": 6963, "fields": {"orig_filename": "Piller_Piotr_1801_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77", "author": "", "orig_id": 1410774}}, {"model": "metainfo.source", "pk": 6964, "fields": {"orig_filename": "Pillewizer_Emerich_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 77f.", "author": "", "orig_id": 1410776}}, {"model": "metainfo.source", "pk": 6965, "fields": {"orig_filename": "Pillewizer_Michaela_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410777}}, {"model": "metainfo.source", "pk": 6966, "fields": {"orig_filename": "Pillwax_Johann_1814_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410778}}, {"model": "metainfo.source", "pk": 6967, "fields": {"orig_filename": "Pillwax_Viktor-Josef_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78", "author": "", "orig_id": 1410779}}, {"model": "metainfo.source", "pk": 6968, "fields": {"orig_filename": "Pillwein_Benedikt_1779_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 78f.", "author": "", "orig_id": 1410780}}, {"model": "metainfo.source", "pk": 6969, "fields": {"orig_filename": "Pill_Karl-Emanuel_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 76", "author": "", "orig_id": 1410771}}, {"model": "metainfo.source", "pk": 6970, "fields": {"orig_filename": "Piltz_Jan_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 79", "author": "", "orig_id": 1410781}}, {"model": "metainfo.source", "pk": 6971, "fields": {"orig_filename": "Pilz_Vinzenz_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 79f.", "author": "", "orig_id": 1410782}}, {"model": "metainfo.source", "pk": 6972, "fields": {"orig_filename": "Pinali_Vincenzo_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80", "author": "", "orig_id": 1410783}}, {"model": "metainfo.source", "pk": 6973, "fields": {"orig_filename": "Pincherle_Salvatore_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80", "author": "", "orig_id": 1410784}}, {"model": "metainfo.source", "pk": 6974, "fields": {"orig_filename": "Pindter_Emil-Friedrich_1836_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 80f.", "author": "", "orig_id": 1410785}}, {"model": "metainfo.source", "pk": 6975, "fields": {"orig_filename": "Pineles_Friedrich_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 81", "author": "", "orig_id": 1410786}}, {"model": "metainfo.source", "pk": 6976, "fields": {"orig_filename": "Pineles_Hirsch-Mendel_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 81f.", "author": "", "orig_id": 1410787}}, {"model": "metainfo.source", "pk": 6977, "fields": {"orig_filename": "Pineles_Samuel_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82", "author": "", "orig_id": 1410788}}, {"model": "metainfo.source", "pk": 6978, "fields": {"orig_filename": "Pineles_Stanislaus_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82", "author": "", "orig_id": 1410789}}, {"model": "metainfo.source", "pk": 6979, "fields": {"orig_filename": "Pinggera_Johann_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 82f.", "author": "", "orig_id": 1410790}}, {"model": "metainfo.source", "pk": 6980, "fields": {"orig_filename": "Pininski_Leon_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 83", "author": "", "orig_id": 1410791}}, {"model": "metainfo.source", "pk": 6981, "fields": {"orig_filename": "Pinkas_Adolf-Maria_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 83f.", "author": "", "orig_id": 1410792}}, {"model": "metainfo.source", "pk": 6982, "fields": {"orig_filename": "Petter_Franz-Xaver_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12f.", "author": "", "orig_id": 1409739}}, {"model": "metainfo.source", "pk": 6983, "fields": {"orig_filename": "Petter_Theodor-Josef_1822_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407902}}, {"model": "metainfo.source", "pk": 6984, "fields": {"orig_filename": "Pettko_Jan_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14", "author": "", "orig_id": 1407906}}, {"model": "metainfo.source", "pk": 6985, "fields": {"orig_filename": "Petz-Hohenrhode_Eduard_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407910}}, {"model": "metainfo.source", "pk": 6986, "fields": {"orig_filename": "Petzer-Rasenheim_Anton_1794_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407911}}, {"model": "metainfo.source", "pk": 6987, "fields": {"orig_filename": "Petzmayer_Johann_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407912}}, {"model": "metainfo.source", "pk": 6988, "fields": {"orig_filename": "Petzold_Alfons_1882_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 16f.", "author": "", "orig_id": 1407913}}, {"model": "metainfo.source", "pk": 6989, "fields": {"orig_filename": "Petzold_Marie_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407915}}, {"model": "metainfo.source", "pk": 6990, "fields": {"orig_filename": "Petzval_Josef-Maximilian_1807_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17f.", "author": "", "orig_id": 1407916}}, {"model": "metainfo.source", "pk": 6991, "fields": {"orig_filename": "Petzval_Otto_1809_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 18f.", "author": "", "orig_id": 1407917}}, {"model": "metainfo.source", "pk": 6992, "fields": {"orig_filename": "Petz_Anton_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14", "author": "", "orig_id": 1407907}}, {"model": "metainfo.source", "pk": 6993, "fields": {"orig_filename": "Petz_Gedeon_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 14f.", "author": "", "orig_id": 1407908}}, {"model": "metainfo.source", "pk": 6994, "fields": {"orig_filename": "Petz_Josef_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 15", "author": "", "orig_id": 1407909}}, {"model": "metainfo.source", "pk": 6995, "fields": {"orig_filename": "Peucker_Karl_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19", "author": "", "orig_id": 1407918}}, {"model": "metainfo.source", "pk": 6996, "fields": {"orig_filename": "Peutlschmid_Robert_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19", "author": "", "orig_id": 1410100}}, {"model": "metainfo.source", "pk": 6997, "fields": {"orig_filename": "Pewny_Josef_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 19f.", "author": "", "orig_id": 1410101}}, {"model": "metainfo.source", "pk": 6998, "fields": {"orig_filename": "Peyerle_Wilhelm_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410102}}, {"model": "metainfo.source", "pk": 6999, "fields": {"orig_filename": "Peyfuss_Karl-Johann_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410103}}, {"model": "metainfo.source", "pk": 7000, "fields": {"orig_filename": "Peyrer-Heimstaett_Karl_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20", "author": "", "orig_id": 1410104}}, {"model": "metainfo.source", "pk": 7001, "fields": {"orig_filename": "Peyritsch_Johann-Josef_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 20f.", "author": "", "orig_id": 1410105}}, {"model": "metainfo.source", "pk": 7002, "fields": {"orig_filename": "Pezolt_Georg_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 21", "author": "", "orig_id": 1410106}}, {"model": "metainfo.source", "pk": 7003, "fields": {"orig_filename": "Pezolt_Ludwig_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 21f.", "author": "", "orig_id": 1410107}}, {"model": "metainfo.source", "pk": 7004, "fields": {"orig_filename": "Pezzey_August_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410108}}, {"model": "metainfo.source", "pk": 7005, "fields": {"orig_filename": "Pezzey_August_1875_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410109}}, {"model": "metainfo.source", "pk": 7006, "fields": {"orig_filename": "Pezzicar_Francesco_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410112}}, {"model": "metainfo.source", "pk": 7007, "fields": {"orig_filename": "Pezzi_Francesco_1781_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410110}}, {"model": "metainfo.source", "pk": 7008, "fields": {"orig_filename": "Pezzi_Pietro_1757_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22", "author": "", "orig_id": 1410111}}, {"model": "metainfo.source", "pk": 7009, "fields": {"orig_filename": "Pezzl_Johann_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 22f.", "author": "", "orig_id": 1410113}}, {"model": "metainfo.source", "pk": 7010, "fields": {"orig_filename": "Pfaffinger_Michaela_1862_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24", "author": "", "orig_id": 1410117}}, {"model": "metainfo.source", "pk": 7011, "fields": {"orig_filename": "Pfaff_Annetta_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 23", "author": "", "orig_id": 1410114}}, {"model": "metainfo.source", "pk": 7012, "fields": {"orig_filename": "Pfaff_Ivo_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 23f.", "author": "", "orig_id": 1410115}}, {"model": "metainfo.source", "pk": 7013, "fields": {"orig_filename": "Pfaff_Wilhelm_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24", "author": "", "orig_id": 1410116}}, {"model": "metainfo.source", "pk": 7014, "fields": {"orig_filename": "Pfanhauser_Wilhelm_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 24f.", "author": "", "orig_id": 1410118}}, {"model": "metainfo.source", "pk": 7015, "fields": {"orig_filename": "Pfanner_Franz_1825_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 25", "author": "", "orig_id": 1410119}}, {"model": "metainfo.source", "pk": 7016, "fields": {"orig_filename": "Pfannl_Heinrich_1870_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 25f.", "author": "", "orig_id": 1410120}}, {"model": "metainfo.source", "pk": 7017, "fields": {"orig_filename": "Pfaundler-Hadermur_Leopold_1839_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 26f.", "author": "", "orig_id": 1410122}}, {"model": "metainfo.source", "pk": 7018, "fields": {"orig_filename": "Pfaundler-Hadermur_Meinhard_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 27", "author": "", "orig_id": 1410123}}, {"model": "metainfo.source", "pk": 7019, "fields": {"orig_filename": "Pfaundler-Sternfeld_Alois_1765_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 27f.", "author": "", "orig_id": 1410124}}, {"model": "metainfo.source", "pk": 7020, "fields": {"orig_filename": "Pfaundler-Sternfeld_Johann-Georg_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28", "author": "", "orig_id": 1410125}}, {"model": "metainfo.source", "pk": 7021, "fields": {"orig_filename": "Pfaundler_Ignaz-Johann_1808_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 26", "author": "", "orig_id": 1410121}}, {"model": "metainfo.source", "pk": 7022, "fields": {"orig_filename": "Pfausler_Peter-Paul_1871_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28", "author": "", "orig_id": 1410199}}, {"model": "metainfo.source", "pk": 7023, "fields": {"orig_filename": "Pfefferle_Josef_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410202}}, {"model": "metainfo.source", "pk": 7024, "fields": {"orig_filename": "Pfeffer_Karl_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 28f.", "author": "", "orig_id": 1410200}}, {"model": "metainfo.source", "pk": 7025, "fields": {"orig_filename": "Pfeffer_Rudolf_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410201}}, {"model": "metainfo.source", "pk": 7026, "fields": {"orig_filename": "Pfeifer-Forstheim_Johann_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35", "author": "", "orig_id": 1410219}}, {"model": "metainfo.source", "pk": 7027, "fields": {"orig_filename": "Pfeifer-Julienfels_Ferdinand_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35", "author": "", "orig_id": 1410220}}, {"model": "metainfo.source", "pk": 7028, "fields": {"orig_filename": "Pfeifer-Wellheim_Ferdinand_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 35f.", "author": "", "orig_id": 1410221}}, {"model": "metainfo.source", "pk": 7029, "fields": {"orig_filename": "Pfeifer-Wellheim_Heinrich_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36", "author": "", "orig_id": 1410298}}, {"model": "metainfo.source", "pk": 7030, "fields": {"orig_filename": "Pfeifer_Anselm_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29", "author": "", "orig_id": 1410203}}, {"model": "metainfo.source", "pk": 7031, "fields": {"orig_filename": "Pfeifer_Franz-Julius_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 30f.", "author": "", "orig_id": 1410205}}, {"model": "metainfo.source", "pk": 7032, "fields": {"orig_filename": "Pfeifer_Franz_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 29f.", "author": "", "orig_id": 1410204}}, {"model": "metainfo.source", "pk": 7033, "fields": {"orig_filename": "Pfeifer_Heinrich_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31", "author": "", "orig_id": 1410206}}, {"model": "metainfo.source", "pk": 7034, "fields": {"orig_filename": "Pfeifer_Hermann_1877_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31", "author": "", "orig_id": 1410207}}, {"model": "metainfo.source", "pk": 7035, "fields": {"orig_filename": "Pfeifer_Ida_1797_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 31f.", "author": "", "orig_id": 1410208}}, {"model": "metainfo.source", "pk": 7036, "fields": {"orig_filename": "Pfeifer_Johann_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32", "author": "", "orig_id": 1410209}}, {"model": "metainfo.source", "pk": 7037, "fields": {"orig_filename": "Pfeifer_Josef-Anton_1776_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32f.", "author": "", "orig_id": 1410211}}, {"model": "metainfo.source", "pk": 7038, "fields": {"orig_filename": "Pfeifer_Josef_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 32", "author": "", "orig_id": 1410210}}, {"model": "metainfo.source", "pk": 7039, "fields": {"orig_filename": "Pfeifer_Josip_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33", "author": "", "orig_id": 1410212}}, {"model": "metainfo.source", "pk": 7040, "fields": {"orig_filename": "Pfeifer_Julius-Anton_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410215}}, {"model": "metainfo.source", "pk": 7041, "fields": {"orig_filename": "Pfeifer_Juliusz_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410216}}, {"model": "metainfo.source", "pk": 7042, "fields": {"orig_filename": "Pfeifer_Julius_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33", "author": "", "orig_id": 1410213}}, {"model": "metainfo.source", "pk": 7043, "fields": {"orig_filename": "Pfeifer_Julius_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 33f.", "author": "", "orig_id": 1410214}}, {"model": "metainfo.source", "pk": 7044, "fields": {"orig_filename": "Pfeifer_Karl-Hermann_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34", "author": "", "orig_id": 1410217}}, {"model": "metainfo.source", "pk": 7045, "fields": {"orig_filename": "Pfeifer_Theodor_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 34f.", "author": "", "orig_id": 1410218}}, {"model": "metainfo.source", "pk": 7046, "fields": {"orig_filename": "Pfeiffenberger_Karl-Gottlieb_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36", "author": "", "orig_id": 1410299}}, {"model": "metainfo.source", "pk": 7047, "fields": {"orig_filename": "Pfersche_Emil_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 36f.", "author": "", "orig_id": 1410300}}, {"model": "metainfo.source", "pk": 7048, "fields": {"orig_filename": "Pferschy_Karl_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410301}}, {"model": "metainfo.source", "pk": 7049, "fields": {"orig_filename": "Pfersmann-Eichthal_Alois_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410302}}, {"model": "metainfo.source", "pk": 7050, "fields": {"orig_filename": "Pfest_Leopold-Ladislaus_1769_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37", "author": "", "orig_id": 1410303}}, {"model": "metainfo.source", "pk": 7051, "fields": {"orig_filename": "Pfiffer_Karl_1805_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 37f.", "author": "", "orig_id": 1410304}}, {"model": "metainfo.source", "pk": 7052, "fields": {"orig_filename": "Pfiffer_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410305}}, {"model": "metainfo.source", "pk": 7053, "fields": {"orig_filename": "Pfisterer_Ferdinand_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410306}}, {"model": "metainfo.source", "pk": 7054, "fields": {"orig_filename": "Pfistermeister_Karl_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38", "author": "", "orig_id": 1410307}}, {"model": "metainfo.source", "pk": 7055, "fields": {"orig_filename": "Pfizmaier_August_1808_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 38f.", "author": "", "orig_id": 1410308}}, {"model": "metainfo.source", "pk": 7056, "fields": {"orig_filename": "Pflanzer-Baltin_Karl_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 39", "author": "", "orig_id": 1410309}}, {"model": "metainfo.source", "pk": 7057, "fields": {"orig_filename": "Pflanzl_Otto_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 39f.", "author": "", "orig_id": 1410310}}, {"model": "metainfo.source", "pk": 7058, "fields": {"orig_filename": "Pfleger-Wertenau_Anton_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410311}}, {"model": "metainfo.source", "pk": 7059, "fields": {"orig_filename": "Pfluegl_Albert_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410312}}, {"model": "metainfo.source", "pk": 7060, "fields": {"orig_filename": "Pfluger_Josef_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40f.", "author": "", "orig_id": 1410314}}, {"model": "metainfo.source", "pk": 7061, "fields": {"orig_filename": "Pflug_Ottokar_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 40", "author": "", "orig_id": 1410313}}, {"model": "metainfo.source", "pk": 7062, "fields": {"orig_filename": "Pfohl_Ferdinand_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41", "author": "", "orig_id": 1410315}}, {"model": "metainfo.source", "pk": 7063, "fields": {"orig_filename": "Pfretzschner_Norbert_1817_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41", "author": "", "orig_id": 1410316}}, {"model": "metainfo.source", "pk": 7064, "fields": {"orig_filename": "Pfretzschner_Norbert_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 41f.", "author": "", "orig_id": 1410317}}, {"model": "metainfo.source", "pk": 7065, "fields": {"orig_filename": "Pfundheller_Josef_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410319}}, {"model": "metainfo.source", "pk": 7066, "fields": {"orig_filename": "Pfund_Alois_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410318}}, {"model": "metainfo.source", "pk": 7067, "fields": {"orig_filename": "Pfurtscheller_Michael_1776_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410320}}, {"model": "metainfo.source", "pk": 7068, "fields": {"orig_filename": "Pfusterschmid-Hardtenstein_Karl_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42", "author": "", "orig_id": 1410322}}, {"model": "metainfo.source", "pk": 7069, "fields": {"orig_filename": "Philippi_Josef_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43", "author": "", "orig_id": 1410398}}, {"model": "metainfo.source", "pk": 7070, "fields": {"orig_filename": "Philippovich-Philippsberg_Eugen_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43f.", "author": "", "orig_id": 1410399}}, {"model": "metainfo.source", "pk": 7071, "fields": {"orig_filename": "Philippovich-Philippsberg_Franz_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 44", "author": "", "orig_id": 1410400}}, {"model": "metainfo.source", "pk": 7072, "fields": {"orig_filename": "Philippovich-Philippsberg_Josef_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 44f.", "author": "", "orig_id": 1410401}}, {"model": "metainfo.source", "pk": 7073, "fields": {"orig_filename": "Philipp_Karl_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 42f.", "author": "", "orig_id": 1410323}}, {"model": "metainfo.source", "pk": 7074, "fields": {"orig_filename": "Philipp_Peter_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 43", "author": "", "orig_id": 1410396}}, {"model": "metainfo.source", "pk": 7075, "fields": {"orig_filename": "Phleps_Artur_1881_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 45f.", "author": "", "orig_id": 1410403}}, {"model": "metainfo.source", "pk": 7076, "fields": {"orig_filename": "Pian_Antonio_1784_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 46f.", "author": "", "orig_id": 1410405}}, {"model": "metainfo.source", "pk": 7077, "fields": {"orig_filename": "Pian_Giovanni_1813_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47", "author": "", "orig_id": 1410407}}, {"model": "metainfo.source", "pk": 7078, "fields": {"orig_filename": "Piasecki_Eugeniusz_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47", "author": "", "orig_id": 1410408}}, {"model": "metainfo.source", "pk": 7079, "fields": {"orig_filename": "Piatkiewicz_Ludwik_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 47f.", "author": "", "orig_id": 1410409}}, {"model": "metainfo.source", "pk": 7080, "fields": {"orig_filename": "Piatnik_Ferdinand_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48", "author": "", "orig_id": 1410410}}, {"model": "metainfo.source", "pk": 7081, "fields": {"orig_filename": "Piave_Francesco-Maria_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 48", "author": "", "orig_id": 1410411}}, {"model": "metainfo.source", "pk": 7082, "fields": {"orig_filename": "Piazza_Giulio_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 49", "author": "", "orig_id": 1410413}}, {"model": "metainfo.source", "pk": 7083, "fields": {"orig_filename": "Peroutka_Emanuel_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408282}}, {"model": "metainfo.source", "pk": 7084, "fields": {"orig_filename": "Persa_Alois_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408283}}, {"model": "metainfo.source", "pk": 7085, "fields": {"orig_filename": "Perthaler_Johann_1816_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429f.", "author": "", "orig_id": 1408284}}, {"model": "metainfo.source", "pk": 7086, "fields": {"orig_filename": "Perthaler_Karoline-Josefa-Ottilia_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430", "author": "", "orig_id": 1408285}}, {"model": "metainfo.source", "pk": 7087, "fields": {"orig_filename": "Pertik_Otto_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430", "author": "", "orig_id": 1408286}}, {"model": "metainfo.source", "pk": 7088, "fields": {"orig_filename": "Pertile_Antonio_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 430f.", "author": "", "orig_id": 1408287}}, {"model": "metainfo.source", "pk": 7089, "fields": {"orig_filename": "Pertile_Giambattista_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 431", "author": "", "orig_id": 1408288}}, {"model": "metainfo.source", "pk": 7090, "fields": {"orig_filename": "Pertsch_Matteo_1769_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 431f.", "author": "", "orig_id": 1408289}}, {"model": "metainfo.source", "pk": 7091, "fields": {"orig_filename": "Perugia_Alberto-Moise_1843_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432", "author": "", "orig_id": 1408290}}, {"model": "metainfo.source", "pk": 7092, "fields": {"orig_filename": "Perusek_Harvey-Gregory_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432", "author": "", "orig_id": 1408291}}, {"model": "metainfo.source", "pk": 7093, "fields": {"orig_filename": "Perusek_Rajko_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 432f.", "author": "", "orig_id": 1408354}}, {"model": "metainfo.source", "pk": 7094, "fields": {"orig_filename": "Perutz_Alfred_1885_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408355}}, {"model": "metainfo.source", "pk": 7095, "fields": {"orig_filename": "Peruzzini_Giovanni_1815_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408358}}, {"model": "metainfo.source", "pk": 7096, "fields": {"orig_filename": "Peruzzi_Franc_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408356}}, {"model": "metainfo.source", "pk": 7097, "fields": {"orig_filename": "Peruzzi_Svitoslav-Mihael_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 433", "author": "", "orig_id": 1408357}}, {"model": "metainfo.source", "pk": 7098, "fields": {"orig_filename": "Pervanoglu_Pietro_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408359}}, {"model": "metainfo.source", "pk": 7099, "fields": {"orig_filename": "Pesamosca_Osvaldo_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408360}}, {"model": "metainfo.source", "pk": 7100, "fields": {"orig_filename": "Pesante_Antonio_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408361}}, {"model": "metainfo.source", "pk": 7101, "fields": {"orig_filename": "Pesante_Giovanni_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434", "author": "", "orig_id": 1408362}}, {"model": "metainfo.source", "pk": 7102, "fields": {"orig_filename": "Peschka_Franz_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 434f.", "author": "", "orig_id": 1408363}}, {"model": "metainfo.source", "pk": 7103, "fields": {"orig_filename": "Peschka_Gustav-Adolf-Viktor_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435", "author": "", "orig_id": 1408364}}, {"model": "metainfo.source", "pk": 7104, "fields": {"orig_filename": "Peschka_Heinrich-Stefan_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435", "author": "", "orig_id": 1408365}}, {"model": "metainfo.source", "pk": 7105, "fields": {"orig_filename": "Peschka_Minna_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 435f.", "author": "", "orig_id": 1408366}}, {"model": "metainfo.source", "pk": 7106, "fields": {"orig_filename": "Peschke_Julius-Paul_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408367}}, {"model": "metainfo.source", "pk": 7107, "fields": {"orig_filename": "Pesendorfer_Friedrich-Josef_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408368}}, {"model": "metainfo.source", "pk": 7108, "fields": {"orig_filename": "Pesendorfer_Josef_1791_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 436", "author": "", "orig_id": 1408369}}, {"model": "metainfo.source", "pk": 7109, "fields": {"orig_filename": "Pesina_Matej_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408370}}, {"model": "metainfo.source", "pk": 7110, "fields": {"orig_filename": "Pesjak_Luiza_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408371}}, {"model": "metainfo.source", "pk": 7111, "fields": {"orig_filename": "Pesjak_Mihael_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408372}}, {"model": "metainfo.source", "pk": 7112, "fields": {"orig_filename": "Peska_Bedrich_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437", "author": "", "orig_id": 1408375}}, {"model": "metainfo.source", "pk": 7113, "fields": {"orig_filename": "Pessic-Koschnadol_Maximilian_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 437f.", "author": "", "orig_id": 1408376}}, {"model": "metainfo.source", "pk": 7114, "fields": {"orig_filename": "Pesta_Karl_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438", "author": "", "orig_id": 1408377}}, {"model": "metainfo.source", "pk": 7115, "fields": {"orig_filename": "Pesty_Frigyes_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438", "author": "", "orig_id": 1408448}}, {"model": "metainfo.source", "pk": 7116, "fields": {"orig_filename": "Petak_Vaclav_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 438f.", "author": "", "orig_id": 1408449}}, {"model": "metainfo.source", "pk": 7117, "fields": {"orig_filename": "Peteani-Steinberg_Arthur_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408451}}, {"model": "metainfo.source", "pk": 7118, "fields": {"orig_filename": "Peteani_Antonio_1789_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408450}}, {"model": "metainfo.source", "pk": 7119, "fields": {"orig_filename": "Petenyi_Salamon-Janos_1799_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439", "author": "", "orig_id": 1408452}}, {"model": "metainfo.source", "pk": 7120, "fields": {"orig_filename": "Peter-Ferdinand__1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 439f.", "author": "", "orig_id": 1408453}}, {"model": "metainfo.source", "pk": 7121, "fields": {"orig_filename": "Petera_Franz-Xaver-Bohuslav_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408457}}, {"model": "metainfo.source", "pk": 7122, "fields": {"orig_filename": "Peterfi_Karoly_1790_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408458}}, {"model": "metainfo.source", "pk": 7123, "fields": {"orig_filename": "Peterfy_Jenoe_1850_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441", "author": "", "orig_id": 1408459}}, {"model": "metainfo.source", "pk": 7124, "fields": {"orig_filename": "Peterka_Otto_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 441f.", "author": "", "orig_id": 1408460}}, {"model": "metainfo.source", "pk": 7125, "fields": {"orig_filename": "Peterka_Rudolf_1894_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442", "author": "", "orig_id": 1408461}}, {"model": "metainfo.source", "pk": 7126, "fields": {"orig_filename": "Peterlini_Dominik-Josef_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442", "author": "", "orig_id": 1408462}}, {"model": "metainfo.source", "pk": 7127, "fields": {"orig_filename": "Peterlongo_Johann_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 442f.", "author": "", "orig_id": 1408463}}, {"model": "metainfo.source", "pk": 7128, "fields": {"orig_filename": "Petermandl_Anton_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 443", "author": "", "orig_id": 1408464}}, {"model": "metainfo.source", "pk": 7129, "fields": {"orig_filename": "Petermann_Helene_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 443f.", "author": "", "orig_id": 1408465}}, {"model": "metainfo.source", "pk": 7130, "fields": {"orig_filename": "Petermann_Reinhard-E_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408466}}, {"model": "metainfo.source", "pk": 7131, "fields": {"orig_filename": "Peterseim_Marcin_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445", "author": "", "orig_id": 1408470}}, {"model": "metainfo.source", "pk": 7132, "fields": {"orig_filename": "Petersilka_Karl_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445", "author": "", "orig_id": 1408542}}, {"model": "metainfo.source", "pk": 7133, "fields": {"orig_filename": "Peters_Guido_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408467}}, {"model": "metainfo.source", "pk": 7134, "fields": {"orig_filename": "Peters_Ignaz_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444", "author": "", "orig_id": 1408468}}, {"model": "metainfo.source", "pk": 7135, "fields": {"orig_filename": "Peters_Karl-Ferdinand_1825_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 444f.", "author": "", "orig_id": 1408469}}, {"model": "metainfo.source", "pk": 7136, "fields": {"orig_filename": "Peter_Emanuel-Thomas_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408454}}, {"model": "metainfo.source", "pk": 7137, "fields": {"orig_filename": "Peter_Franz_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408455}}, {"model": "metainfo.source", "pk": 7138, "fields": {"orig_filename": "Peter_Johann-Wenzel_1745_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 440", "author": "", "orig_id": 1408456}}, {"model": "metainfo.source", "pk": 7139, "fields": {"orig_filename": "Pethe-Kisszanto_Ferenc_1763_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 445f.", "author": "", "orig_id": 1408543}}, {"model": "metainfo.source", "pk": 7140, "fields": {"orig_filename": "Pethes_Imre_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 446", "author": "", "orig_id": 1408544}}, {"model": "metainfo.source", "pk": 7141, "fields": {"orig_filename": "Petkovsek_Jozef_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 447", "author": "", "orig_id": 1408546}}, {"model": "metainfo.source", "pk": 7142, "fields": {"orig_filename": "Petko_Koloman_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 446f.", "author": "", "orig_id": 1408545}}, {"model": "metainfo.source", "pk": 7143, "fields": {"orig_filename": "Petoefi_Sandor_1823_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 447f.", "author": "", "orig_id": 1408547}}, {"model": "metainfo.source", "pk": 7144, "fields": {"orig_filename": "Petra-Petrescu_Nicolae_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 448", "author": "", "orig_id": 1408549}}, {"model": "metainfo.source", "pk": 7145, "fields": {"orig_filename": "Petracic_Franjo_1833_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408052}}, {"model": "metainfo.source", "pk": 7146, "fields": {"orig_filename": "Petrak_Alois_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408053}}, {"model": "metainfo.source", "pk": 7147, "fields": {"orig_filename": "Petranovic_Bozidar_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408054}}, {"model": "metainfo.source", "pk": 7148, "fields": {"orig_filename": "Petraschek_Karl_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2", "author": "", "orig_id": 1408056}}, {"model": "metainfo.source", "pk": 7149, "fields": {"orig_filename": "Petrasch_Konrad_1807_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 1", "author": "", "orig_id": 1408055}}, {"model": "metainfo.source", "pk": 7150, "fields": {"orig_filename": "Petrass_Ilona_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2", "author": "", "orig_id": 1408057}}, {"model": "metainfo.source", "pk": 7151, "fields": {"orig_filename": "Petravic_Ante_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 2f.", "author": "", "orig_id": 1408058}}, {"model": "metainfo.source", "pk": 7152, "fields": {"orig_filename": "Petricevic_Georg_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4", "author": "", "orig_id": 1407874}}, {"model": "metainfo.source", "pk": 7153, "fields": {"orig_filename": "Petrichevich-Horvath-Szeplak_Lazar_1807_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4f.", "author": "", "orig_id": 1407875}}, {"model": "metainfo.source", "pk": 7154, "fields": {"orig_filename": "Petric_Ante_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 4", "author": "", "orig_id": 1407873}}, {"model": "metainfo.source", "pk": 7155, "fields": {"orig_filename": "Petrikovich_Jan_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407878}}, {"model": "metainfo.source", "pk": 7156, "fields": {"orig_filename": "Petrik_Geza_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407876}}, {"model": "metainfo.source", "pk": 7157, "fields": {"orig_filename": "Petrik_Lajos_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5", "author": "", "orig_id": 1407877}}, {"model": "metainfo.source", "pk": 7158, "fields": {"orig_filename": "Petrina_Franz-Adam_1799_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 5f.", "author": "", "orig_id": 1407879}}, {"model": "metainfo.source", "pk": 7159, "fields": {"orig_filename": "Petrina_Theodor_1842_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407880}}, {"model": "metainfo.source", "pk": 7160, "fields": {"orig_filename": "Petrino_Alexander_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407881}}, {"model": "metainfo.source", "pk": 7161, "fields": {"orig_filename": "Petrivalsky_Julius_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6", "author": "", "orig_id": 1407882}}, {"model": "metainfo.source", "pk": 7162, "fields": {"orig_filename": "Petri_Bernhard_1767_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3", "author": "", "orig_id": 1408059}}, {"model": "metainfo.source", "pk": 7163, "fields": {"orig_filename": "Petri_Elek_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3", "author": "", "orig_id": 1408060}}, {"model": "metainfo.source", "pk": 7164, "fields": {"orig_filename": "Petri_Karl_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 3f.", "author": "", "orig_id": 1408061}}, {"model": "metainfo.source", "pk": 7165, "fields": {"orig_filename": "Petrlik_Kristian_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 6f.", "author": "", "orig_id": 1407883}}, {"model": "metainfo.source", "pk": 7166, "fields": {"orig_filename": "Petrovic_Leo_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407884}}, {"model": "metainfo.source", "pk": 7167, "fields": {"orig_filename": "Petrovits_Demeter_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407886}}, {"model": "metainfo.source", "pk": 7168, "fields": {"orig_filename": "Petrovits_Ladislaus-Eugen_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7", "author": "", "orig_id": 1407887}}, {"model": "metainfo.source", "pk": 7169, "fields": {"orig_filename": "Petrusevyc_Anton_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 7f.", "author": "", "orig_id": 1407888}}, {"model": "metainfo.source", "pk": 7170, "fields": {"orig_filename": "Petruska_Franz_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8", "author": "", "orig_id": 1407889}}, {"model": "metainfo.source", "pk": 7171, "fields": {"orig_filename": "Petr_Vaclav_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 448", "author": "", "orig_id": 1408548}}, {"model": "metainfo.source", "pk": 7172, "fields": {"orig_filename": "Petschacher_Michael-Alexander_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8", "author": "", "orig_id": 1407890}}, {"model": "metainfo.source", "pk": 7173, "fields": {"orig_filename": "Petschek_Georg_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 8f.", "author": "", "orig_id": 1407891}}, {"model": "metainfo.source", "pk": 7174, "fields": {"orig_filename": "Petschek_Ignaz_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 9", "author": "", "orig_id": 1407892}}, {"model": "metainfo.source", "pk": 7175, "fields": {"orig_filename": "Petschek_Julius_1856_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 9f.", "author": "", "orig_id": 1407893}}, {"model": "metainfo.source", "pk": 7176, "fields": {"orig_filename": "Petschenig_Michael_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10", "author": "", "orig_id": 1407894}}, {"model": "metainfo.source", "pk": 7177, "fields": {"orig_filename": "Petschnig_Emil_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10", "author": "", "orig_id": 1407895}}, {"model": "metainfo.source", "pk": 7178, "fields": {"orig_filename": "Petschnig_Johann_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 10f.", "author": "", "orig_id": 1407896}}, {"model": "metainfo.source", "pk": 7179, "fields": {"orig_filename": "Pettenkofer_August_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 11", "author": "", "orig_id": 1407898}}, {"model": "metainfo.source", "pk": 7180, "fields": {"orig_filename": "Pettera_Guenter_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407903}}, {"model": "metainfo.source", "pk": 7181, "fields": {"orig_filename": "Pettersch_Karl-Hugo_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13f.", "author": "", "orig_id": 1407905}}, {"model": "metainfo.source", "pk": 7182, "fields": {"orig_filename": "Petters_Vilem_1826_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 13", "author": "", "orig_id": 1407904}}, {"model": "metainfo.source", "pk": 7183, "fields": {"orig_filename": "Petter_Alexander_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 11", "author": "", "orig_id": 1407899}}, {"model": "metainfo.source", "pk": 7184, "fields": {"orig_filename": "Petter_Anton_1781_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1407900}}, {"model": "metainfo.source", "pk": 7185, "fields": {"orig_filename": "Petter_August_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1407901}}, {"model": "metainfo.source", "pk": 7186, "fields": {"orig_filename": "Petter_Franz-Josef_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 12", "author": "", "orig_id": 1409738}}, {"model": "metainfo.source", "pk": 7187, "fields": {"orig_filename": "Pejacsevich-Veroecze_Julian_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409364}}, {"model": "metainfo.source", "pk": 7188, "fields": {"orig_filename": "Pejacsevich-Veroecze_Ladislav_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409365}}, {"model": "metainfo.source", "pk": 7189, "fields": {"orig_filename": "Pejacsevich-Veroecze_Nikolaus_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394f.", "author": "", "orig_id": 1409366}}, {"model": "metainfo.source", "pk": 7190, "fields": {"orig_filename": "Pejacsevich-Veroecze_Teodor_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395", "author": "", "orig_id": 1409367}}, {"model": "metainfo.source", "pk": 7191, "fields": {"orig_filename": "Pejko_Juraj_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395", "author": "", "orig_id": 1409368}}, {"model": "metainfo.source", "pk": 7192, "fields": {"orig_filename": "Pekarek_Josef_1899_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397", "author": "", "orig_id": 1409370}}, {"model": "metainfo.source", "pk": 7193, "fields": {"orig_filename": "Pekar_Josef_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 395ff.", "author": "", "orig_id": 1409369}}, {"model": "metainfo.source", "pk": 7194, "fields": {"orig_filename": "Pelczar_Jozef-Sebastian_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397f.", "author": "", "orig_id": 1409372}}, {"model": "metainfo.source", "pk": 7195, "fields": {"orig_filename": "Pelc_Hynek_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 397", "author": "", "orig_id": 1409371}}, {"model": "metainfo.source", "pk": 7196, "fields": {"orig_filename": "Peles_Julian_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398", "author": "", "orig_id": 1409440}}, {"model": "metainfo.source", "pk": 7197, "fields": {"orig_filename": "Pelican_Heinrich_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398", "author": "", "orig_id": 1409441}}, {"model": "metainfo.source", "pk": 7198, "fields": {"orig_filename": "Pelikan-Plauenwald_Josef_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399", "author": "", "orig_id": 1409443}}, {"model": "metainfo.source", "pk": 7199, "fields": {"orig_filename": "Pelikan_Anton_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 398f.", "author": "", "orig_id": 1409442}}, {"model": "metainfo.source", "pk": 7200, "fields": {"orig_filename": "Pellegrini_Francesco_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399", "author": "", "orig_id": 1409444}}, {"model": "metainfo.source", "pk": 7201, "fields": {"orig_filename": "Pellegrini_Gaetano_1824_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 399f.", "author": "", "orig_id": 1409445}}, {"model": "metainfo.source", "pk": 7202, "fields": {"orig_filename": "Pellegrini_Giulio_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400", "author": "", "orig_id": 1409446}}, {"model": "metainfo.source", "pk": 7203, "fields": {"orig_filename": "Pellico_Silvio_1789_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400", "author": "", "orig_id": 1409447}}, {"model": "metainfo.source", "pk": 7204, "fields": {"orig_filename": "Pellis_Ugo_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 400f.", "author": "", "orig_id": 1409448}}, {"model": "metainfo.source", "pk": 7205, "fields": {"orig_filename": "Pelzel-Pelzeln_August_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 401f.", "author": "", "orig_id": 1409450}}, {"model": "metainfo.source", "pk": 7206, "fields": {"orig_filename": "Pelzel-Pelzeln_Marie_1830_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 402", "author": "", "orig_id": 1409451}}, {"model": "metainfo.source", "pk": 7207, "fields": {"orig_filename": "Pelzel-Staffalo_Henriette_1877_1962.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 258", "author": "", "orig_id": 1411967}}, {"model": "metainfo.source", "pk": 7208, "fields": {"orig_filename": "Pelz_Karel_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 401", "author": "", "orig_id": 1409449}}, {"model": "metainfo.source", "pk": 7209, "fields": {"orig_filename": "Pembaur_Josef_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 402f.", "author": "", "orig_id": 1409452}}, {"model": "metainfo.source", "pk": 7210, "fields": {"orig_filename": "Pembaur_Josef_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 403", "author": "", "orig_id": 1409453}}, {"model": "metainfo.source", "pk": 7211, "fields": {"orig_filename": "Pembaur_Karl-Maria_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 403f.", "author": "", "orig_id": 1409454}}, {"model": "metainfo.source", "pk": 7212, "fields": {"orig_filename": "Penck_Albrecht_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 404", "author": "", "orig_id": 1409455}}, {"model": "metainfo.source", "pk": 7213, "fields": {"orig_filename": "Pendl_Emanuel_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 404f.", "author": "", "orig_id": 1409456}}, {"model": "metainfo.source", "pk": 7214, "fields": {"orig_filename": "Pendl_Erwin_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405", "author": "", "orig_id": 1409457}}, {"model": "metainfo.source", "pk": 7215, "fields": {"orig_filename": "Pendl_Franz-Xaver_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405", "author": "", "orig_id": 1409458}}, {"model": "metainfo.source", "pk": 7216, "fields": {"orig_filename": "Pendl_Johann_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 405f.", "author": "", "orig_id": 1409459}}, {"model": "metainfo.source", "pk": 7217, "fields": {"orig_filename": "Penecke_Karl-Alfons_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406", "author": "", "orig_id": 1409460}}, {"model": "metainfo.source", "pk": 7218, "fields": {"orig_filename": "Pengg-Auheim_Johann_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406f.", "author": "", "orig_id": 1409462}}, {"model": "metainfo.source", "pk": 7219, "fields": {"orig_filename": "Pengg-Auheim_Johann_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 407", "author": "", "orig_id": 1409463}}, {"model": "metainfo.source", "pk": 7220, "fields": {"orig_filename": "Pengg_Aegyd_1788_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 406", "author": "", "orig_id": 1409461}}, {"model": "metainfo.source", "pk": 7221, "fields": {"orig_filename": "Penic_Dujam_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 407f.", "author": "", "orig_id": 1409464}}, {"model": "metainfo.source", "pk": 7222, "fields": {"orig_filename": "Penizek_Josef_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408", "author": "", "orig_id": 1409465}}, {"model": "metainfo.source", "pk": 7223, "fields": {"orig_filename": "Penka_Ignacy-Jozef_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408", "author": "", "orig_id": 1413143}}, {"model": "metainfo.source", "pk": 7224, "fields": {"orig_filename": "Penkler_Josef_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 408f.", "author": "", "orig_id": 1409466}}, {"model": "metainfo.source", "pk": 7225, "fields": {"orig_filename": "Penn_Heinrich-Moritz_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 409", "author": "", "orig_id": 1408087}}, {"model": "metainfo.source", "pk": 7226, "fields": {"orig_filename": "Penn_Josef_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 409f.", "author": "", "orig_id": 1408088}}, {"model": "metainfo.source", "pk": 7227, "fields": {"orig_filename": "Penther_Arnold_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410", "author": "", "orig_id": 1408089}}, {"model": "metainfo.source", "pk": 7228, "fields": {"orig_filename": "Penther_Daniel_1837_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410", "author": "", "orig_id": 1408090}}, {"model": "metainfo.source", "pk": 7229, "fields": {"orig_filename": "Penzig-Franz_Edgar_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408093}}, {"model": "metainfo.source", "pk": 7230, "fields": {"orig_filename": "Penz_Alois_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 410f.", "author": "", "orig_id": 1408091}}, {"model": "metainfo.source", "pk": 7231, "fields": {"orig_filename": "Penz_Ludwig_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 411", "author": "", "orig_id": 1408092}}, {"model": "metainfo.source", "pk": 7232, "fields": {"orig_filename": "Perathoner_Julius_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408096}}, {"model": "metainfo.source", "pk": 7233, "fields": {"orig_filename": "Percevic-Odavna_Franz_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408098}}, {"model": "metainfo.source", "pk": 7234, "fields": {"orig_filename": "Perczel-Bonyhad_Bela_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412", "author": "", "orig_id": 1408099}}, {"model": "metainfo.source", "pk": 7235, "fields": {"orig_filename": "Perczel-Bonyhad_Dezsoe_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 412f.", "author": "", "orig_id": 1408100}}, {"model": "metainfo.source", "pk": 7236, "fields": {"orig_filename": "Perczel-Bonyhad_Miklos_1812_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413", "author": "", "orig_id": 1408101}}, {"model": "metainfo.source", "pk": 7237, "fields": {"orig_filename": "Perczel-Bonyhad_Mor_1811_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413", "author": "", "orig_id": 1408102}}, {"model": "metainfo.source", "pk": 7238, "fields": {"orig_filename": "Peregriny_Elek_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 413f.", "author": "", "orig_id": 1408104}}, {"model": "metainfo.source", "pk": 7239, "fields": {"orig_filename": "Pereira-Arnstein_Henriette_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 414", "author": "", "orig_id": 1408106}}, {"model": "metainfo.source", "pk": 7240, "fields": {"orig_filename": "Pereira-Arnstein_Ludwig_1803_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 414f.", "author": "", "orig_id": 1408107}}, {"model": "metainfo.source", "pk": 7241, "fields": {"orig_filename": "Pereira-Arnstein_Viktor_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415", "author": "", "orig_id": 1408108}}, {"model": "metainfo.source", "pk": 7242, "fields": {"orig_filename": "Perek_Vaclav_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415", "author": "", "orig_id": 1408109}}, {"model": "metainfo.source", "pk": 7243, "fields": {"orig_filename": "Perels_Emil_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 415f.", "author": "", "orig_id": 1408110}}, {"model": "metainfo.source", "pk": 7244, "fields": {"orig_filename": "Perenyi_Zsigmond_1783_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408111}}, {"model": "metainfo.source", "pk": 7245, "fields": {"orig_filename": "Peretti_Luigi_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408112}}, {"model": "metainfo.source", "pk": 7246, "fields": {"orig_filename": "Perez_Paolo_1822_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416", "author": "", "orig_id": 1408177}}, {"model": "metainfo.source", "pk": 7247, "fields": {"orig_filename": "Pergelt_Anton_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 416f.", "author": "", "orig_id": 1408178}}, {"model": "metainfo.source", "pk": 7248, "fields": {"orig_filename": "Pergen_Anton_1799_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408179}}, {"model": "metainfo.source", "pk": 7249, "fields": {"orig_filename": "Perger-Pergenau_Heinrich_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408186}}, {"model": "metainfo.source", "pk": 7250, "fields": {"orig_filename": "Perger_Anton_1809_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408180}}, {"model": "metainfo.source", "pk": 7251, "fields": {"orig_filename": "Perger_Hugo_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417", "author": "", "orig_id": 1408181}}, {"model": "metainfo.source", "pk": 7252, "fields": {"orig_filename": "Perger_Janos_1791_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 417f.", "author": "", "orig_id": 1408182}}, {"model": "metainfo.source", "pk": 7253, "fields": {"orig_filename": "Perger_Janos_1819_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418", "author": "", "orig_id": 1408183}}, {"model": "metainfo.source", "pk": 7254, "fields": {"orig_filename": "Perger_Richard_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418", "author": "", "orig_id": 1408184}}, {"model": "metainfo.source", "pk": 7255, "fields": {"orig_filename": "Perger_Sigmund-Ferdinand_1778_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 418f.", "author": "", "orig_id": 1408185}}, {"model": "metainfo.source", "pk": 7256, "fields": {"orig_filename": "Perhauz_Giovanni_1854_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408187}}, {"model": "metainfo.source", "pk": 7257, "fields": {"orig_filename": "Perinello_Carlo_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419", "author": "", "orig_id": 1408188}}, {"model": "metainfo.source", "pk": 7258, "fields": {"orig_filename": "Perinet_Joachim_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 419f.", "author": "", "orig_id": 1408189}}, {"model": "metainfo.source", "pk": 7259, "fields": {"orig_filename": "Perini_Agostino_1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 420", "author": "", "orig_id": 1408190}}, {"model": "metainfo.source", "pk": 7260, "fields": {"orig_filename": "Perini_Quintilio_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421", "author": "", "orig_id": 1408192}}, {"model": "metainfo.source", "pk": 7261, "fields": {"orig_filename": "Perkmann_Robert_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421", "author": "", "orig_id": 1408193}}, {"model": "metainfo.source", "pk": 7262, "fields": {"orig_filename": "Perkmann_Rochus_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 421f.", "author": "", "orig_id": 1408194}}, {"model": "metainfo.source", "pk": 7263, "fields": {"orig_filename": "Perko-Greiffenbuehl_Josef_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408196}}, {"model": "metainfo.source", "pk": 7264, "fields": {"orig_filename": "Perkovac_Ivan_1826_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422", "author": "", "orig_id": 1408197}}, {"model": "metainfo.source", "pk": 7265, "fields": {"orig_filename": "Perktold_Josef-Anton_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 422f.", "author": "", "orig_id": 1408198}}, {"model": "metainfo.source", "pk": 7266, "fields": {"orig_filename": "Perl-Hildrichsburg_Ferdinand_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408202}}, {"model": "metainfo.source", "pk": 7267, "fields": {"orig_filename": "Perlath-Kaltenburg_Josef-Anton_1756_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408266}}, {"model": "metainfo.source", "pk": 7268, "fields": {"orig_filename": "Perlberger_Leo_1890_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424", "author": "", "orig_id": 1408267}}, {"model": "metainfo.source", "pk": 7269, "fields": {"orig_filename": "Perles_Josef_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 424f.", "author": "", "orig_id": 1408268}}, {"model": "metainfo.source", "pk": 7270, "fields": {"orig_filename": "Perles_Moritz_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425", "author": "", "orig_id": 1408269}}, {"model": "metainfo.source", "pk": 7271, "fields": {"orig_filename": "Perlis_Julius_1880_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425", "author": "", "orig_id": 1408270}}, {"model": "metainfo.source", "pk": 7272, "fields": {"orig_filename": "Perlmutter_Izsak_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 425f.", "author": "", "orig_id": 1408271}}, {"model": "metainfo.source", "pk": 7273, "fields": {"orig_filename": "Perls_Armin_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408272}}, {"model": "metainfo.source", "pk": 7274, "fields": {"orig_filename": "Perl_Henriette_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423", "author": "", "orig_id": 1408199}}, {"model": "metainfo.source", "pk": 7275, "fields": {"orig_filename": "Perl_Karl_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423", "author": "", "orig_id": 1408200}}, {"model": "metainfo.source", "pk": 7276, "fields": {"orig_filename": "Perl_Moriz_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 423f.", "author": "", "orig_id": 1408201}}, {"model": "metainfo.source", "pk": 7277, "fields": {"orig_filename": "Perneder_Franz_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408273}}, {"model": "metainfo.source", "pk": 7278, "fields": {"orig_filename": "Pernerstorfer_Engelbert_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427", "author": "", "orig_id": 1408276}}, {"model": "metainfo.source", "pk": 7279, "fields": {"orig_filename": "Perner_Jan_1815_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426", "author": "", "orig_id": 1408274}}, {"model": "metainfo.source", "pk": 7280, "fields": {"orig_filename": "Perner_Jaroslav_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 426f.", "author": "", "orig_id": 1408275}}, {"model": "metainfo.source", "pk": 7281, "fields": {"orig_filename": "Pernhart_Markus_1824_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427", "author": "", "orig_id": 1408277}}, {"model": "metainfo.source", "pk": 7282, "fields": {"orig_filename": "Pernlochner_Franz_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 427f.", "author": "", "orig_id": 1408278}}, {"model": "metainfo.source", "pk": 7283, "fields": {"orig_filename": "Pernstein_Matthias_1795_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 428", "author": "", "orig_id": 1408279}}, {"model": "metainfo.source", "pk": 7284, "fields": {"orig_filename": "Perntner_Josef-Maria_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 428f.", "author": "", "orig_id": 1408280}}, {"model": "metainfo.source", "pk": 7285, "fields": {"orig_filename": "Pernwerth-Baernstein_Wilhelm_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 429", "author": "", "orig_id": 1408281}}, {"model": "metainfo.source", "pk": 7286, "fields": {"orig_filename": "Pautsch_Fryderyk_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 357f.", "author": "", "orig_id": 1408903}}, {"model": "metainfo.source", "pk": 7287, "fields": {"orig_filename": "Pavai-Vajna_Gabriel_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358", "author": "", "orig_id": 1408904}}, {"model": "metainfo.source", "pk": 7288, "fields": {"orig_filename": "Pavani_Eugenio_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358", "author": "", "orig_id": 1408905}}, {"model": "metainfo.source", "pk": 7289, "fields": {"orig_filename": "Pavec_Anton_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 358f.", "author": "", "orig_id": 1408906}}, {"model": "metainfo.source", "pk": 7290, "fields": {"orig_filename": "Pavek_Ludwig_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359", "author": "", "orig_id": 1408907}}, {"model": "metainfo.source", "pk": 7291, "fields": {"orig_filename": "Pavelic_Milan_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408981}}, {"model": "metainfo.source", "pk": 7292, "fields": {"orig_filename": "Pavellic_Georg_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408982}}, {"model": "metainfo.source", "pk": 7293, "fields": {"orig_filename": "Pavel_Avgust_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359", "author": "", "orig_id": 1408978}}, {"model": "metainfo.source", "pk": 7294, "fields": {"orig_filename": "Pavel_Janos_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 359f.", "author": "", "orig_id": 1408979}}, {"model": "metainfo.source", "pk": 7295, "fields": {"orig_filename": "Pavel_Raphael_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360", "author": "", "orig_id": 1408980}}, {"model": "metainfo.source", "pk": 7296, "fields": {"orig_filename": "Pavic_Armin_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 360f.", "author": "", "orig_id": 1408983}}, {"model": "metainfo.source", "pk": 7297, "fields": {"orig_filename": "Pavic_Josip_1887_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361", "author": "", "orig_id": 1408984}}, {"model": "metainfo.source", "pk": 7298, "fields": {"orig_filename": "Pavic_Matija_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361", "author": "", "orig_id": 1408985}}, {"model": "metainfo.source", "pk": 7299, "fields": {"orig_filename": "Pavissich_Luigi-Cesare_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 361f.", "author": "", "orig_id": 1408986}}, {"model": "metainfo.source", "pk": 7300, "fields": {"orig_filename": "Pavlicek_Antonin_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362", "author": "", "orig_id": 1408987}}, {"model": "metainfo.source", "pk": 7301, "fields": {"orig_filename": "Pavlikov_Theophil_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362", "author": "", "orig_id": 1408988}}, {"model": "metainfo.source", "pk": 7302, "fields": {"orig_filename": "Pavlinovic_Mihovil_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363", "author": "", "orig_id": 1408991}}, {"model": "metainfo.source", "pk": 7303, "fields": {"orig_filename": "Pavlin_Alfonz_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 362f.", "author": "", "orig_id": 1408989}}, {"model": "metainfo.source", "pk": 7304, "fields": {"orig_filename": "Pavlin_Franc_1860_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363", "author": "", "orig_id": 1408990}}, {"model": "metainfo.source", "pk": 7305, "fields": {"orig_filename": "Pavlis_Jan_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 363f.", "author": "", "orig_id": 1408992}}, {"model": "metainfo.source", "pk": 7306, "fields": {"orig_filename": "Pavlis_Johann_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408993}}, {"model": "metainfo.source", "pk": 7307, "fields": {"orig_filename": "Pavlovic_Stevan_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408994}}, {"model": "metainfo.source", "pk": 7308, "fields": {"orig_filename": "Pavlovic_Teodor_1804_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408995}}, {"model": "metainfo.source", "pk": 7309, "fields": {"orig_filename": "Pavlovyc_Oleksandr_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364", "author": "", "orig_id": 1408996}}, {"model": "metainfo.source", "pk": 7310, "fields": {"orig_filename": "Pavlu_Bohdan_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 364f.", "author": "", "orig_id": 1409066}}, {"model": "metainfo.source", "pk": 7311, "fields": {"orig_filename": "Pavlyk_Mychajlo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 365", "author": "", "orig_id": 1409067}}, {"model": "metainfo.source", "pk": 7312, "fields": {"orig_filename": "Paweck_Heinrich_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 365f.", "author": "", "orig_id": 1409068}}, {"model": "metainfo.source", "pk": 7313, "fields": {"orig_filename": "Pawel_Jaroslaus_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 366", "author": "", "orig_id": 1409069}}, {"model": "metainfo.source", "pk": 7314, "fields": {"orig_filename": "Pawlewski_Bronislaw_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 366f.", "author": "", "orig_id": 1409070}}, {"model": "metainfo.source", "pk": 7315, "fields": {"orig_filename": "Pawlikowski_Jan-Gwalbert_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 368f.", "author": "", "orig_id": 1409075}}, {"model": "metainfo.source", "pk": 7316, "fields": {"orig_filename": "Pawlikowski_Jozef-Benedykt_1770_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369", "author": "", "orig_id": 1409076}}, {"model": "metainfo.source", "pk": 7317, "fields": {"orig_filename": "Pawlikowski_Jozef-Gwalbert_1793_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369", "author": "", "orig_id": 1409077}}, {"model": "metainfo.source", "pk": 7318, "fields": {"orig_filename": "Pawlikowski_Mieczyslaw-Gwalbert-Henryk_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 369f.", "author": "", "orig_id": 1409078}}, {"model": "metainfo.source", "pk": 7319, "fields": {"orig_filename": "Pawlikowski_Tadeusz_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 370f.", "author": "", "orig_id": 1409079}}, {"model": "metainfo.source", "pk": 7320, "fields": {"orig_filename": "Pawlik_Franz_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367", "author": "", "orig_id": 1409071}}, {"model": "metainfo.source", "pk": 7321, "fields": {"orig_filename": "Pawlik_Karel_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367", "author": "", "orig_id": 1409072}}, {"model": "metainfo.source", "pk": 7322, "fields": {"orig_filename": "Pawlik_Oswald_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 367f.", "author": "", "orig_id": 1409073}}, {"model": "metainfo.source", "pk": 7323, "fields": {"orig_filename": "Pawlik_Stefan_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 368", "author": "", "orig_id": 1409074}}, {"model": "metainfo.source", "pk": 7324, "fields": {"orig_filename": "Pawlitschek_Alfred-Guntram_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371", "author": "", "orig_id": 1409080}}, {"model": "metainfo.source", "pk": 7325, "fields": {"orig_filename": "Pawlowicz_Edward_1815_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371", "author": "", "orig_id": 1409081}}, {"model": "metainfo.source", "pk": 7326, "fields": {"orig_filename": "Pawlowski-Jaroslaw_Alexander_1830_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372", "author": "", "orig_id": 1409084}}, {"model": "metainfo.source", "pk": 7327, "fields": {"orig_filename": "Pawlowski_Franciszek_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 371f.", "author": "", "orig_id": 1409082}}, {"model": "metainfo.source", "pk": 7328, "fields": {"orig_filename": "Pawlowski_Johann_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372", "author": "", "orig_id": 1409083}}, {"model": "metainfo.source", "pk": 7329, "fields": {"orig_filename": "Pax_Ferdinand-Albin_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 372f.", "author": "", "orig_id": 1409085}}, {"model": "metainfo.source", "pk": 7330, "fields": {"orig_filename": "Pax_Johann_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409086}}, {"model": "metainfo.source", "pk": 7331, "fields": {"orig_filename": "Payer-Thurn_Rudolf_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 375f.", "author": "", "orig_id": 1409166}}, {"model": "metainfo.source", "pk": 7332, "fields": {"orig_filename": "Payer_Anton_1853_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409087}}, {"model": "metainfo.source", "pk": 7333, "fields": {"orig_filename": "Payer_Ernst_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373", "author": "", "orig_id": 1409088}}, {"model": "metainfo.source", "pk": 7334, "fields": {"orig_filename": "Payer_Hieronymus_1787_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 373f.", "author": "", "orig_id": 1409089}}, {"model": "metainfo.source", "pk": 7335, "fields": {"orig_filename": "Payer_Hugo_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374", "author": "", "orig_id": 1409163}}, {"model": "metainfo.source", "pk": 7336, "fields": {"orig_filename": "Payer_Janez_1825_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374", "author": "", "orig_id": 1409164}}, {"model": "metainfo.source", "pk": 7337, "fields": {"orig_filename": "Payer_Julius_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 374f.", "author": "", "orig_id": 1409165}}, {"model": "metainfo.source", "pk": 7338, "fields": {"orig_filename": "Payr_Artur_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 376f.", "author": "", "orig_id": 1409167}}, {"model": "metainfo.source", "pk": 7339, "fields": {"orig_filename": "Payr_Erwin_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 377", "author": "", "orig_id": 1409168}}, {"model": "metainfo.source", "pk": 7340, "fields": {"orig_filename": "Payr_Karl_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 377f.", "author": "", "orig_id": 1409169}}, {"model": "metainfo.source", "pk": 7341, "fields": {"orig_filename": "Payr_Sandor_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378", "author": "", "orig_id": 1409170}}, {"model": "metainfo.source", "pk": 7342, "fields": {"orig_filename": "Pazaurek_Gustav-Edmund_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378", "author": "", "orig_id": 1409171}}, {"model": "metainfo.source", "pk": 7343, "fields": {"orig_filename": "Pazmandi-Horvat_Endre_1778_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379", "author": "", "orig_id": 1409173}}, {"model": "metainfo.source", "pk": 7344, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379", "author": "", "orig_id": 1409174}}, {"model": "metainfo.source", "pk": 7345, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1816_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 379f.", "author": "", "orig_id": 1409175}}, {"model": "metainfo.source", "pk": 7346, "fields": {"orig_filename": "Pazmandy-Szomor-Szomodor_Denes_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409176}}, {"model": "metainfo.source", "pk": 7347, "fields": {"orig_filename": "Pazman_Josip_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 378f.", "author": "", "orig_id": 1409172}}, {"model": "metainfo.source", "pk": 7348, "fields": {"orig_filename": "Pazourek_Josef_1862_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409177}}, {"model": "metainfo.source", "pk": 7349, "fields": {"orig_filename": "Pazze_Pietro-Augusto_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 380", "author": "", "orig_id": 1409178}}, {"model": "metainfo.source", "pk": 7350, "fields": {"orig_filename": "Pebal_Leopold_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409179}}, {"model": "metainfo.source", "pk": 7351, "fields": {"orig_filename": "Pecchio-Weitenfeld_Adolf_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409180}}, {"model": "metainfo.source", "pk": 7352, "fields": {"orig_filename": "Pechacek_Franz-Martin_1763_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409256}}, {"model": "metainfo.source", "pk": 7353, "fields": {"orig_filename": "Pechacek_Franz-Xaver_1793_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409257}}, {"model": "metainfo.source", "pk": 7354, "fields": {"orig_filename": "Pechan-Praegenberg_Franz_1830_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382", "author": "", "orig_id": 1409258}}, {"model": "metainfo.source", "pk": 7355, "fields": {"orig_filename": "Pechany_Adolf_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 382f.", "author": "", "orig_id": 1409259}}, {"model": "metainfo.source", "pk": 7356, "fields": {"orig_filename": "Peche_Dagobert_1887_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 383", "author": "", "orig_id": 1409260}}, {"model": "metainfo.source", "pk": 7357, "fields": {"orig_filename": "Peche_Ernest_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 383", "author": "", "orig_id": 1409261}}, {"model": "metainfo.source", "pk": 7358, "fields": {"orig_filename": "Peche_Ferdinand_1820_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384", "author": "", "orig_id": 1409262}}, {"model": "metainfo.source", "pk": 7359, "fields": {"orig_filename": "Peche_Karl_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384", "author": "", "orig_id": 1409263}}, {"model": "metainfo.source", "pk": 7360, "fields": {"orig_filename": "Pechmann-Massen_Eduard_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 384f.", "author": "", "orig_id": 1409264}}, {"model": "metainfo.source", "pk": 7361, "fields": {"orig_filename": "Pechova_Alzbeta_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385", "author": "", "orig_id": 1409265}}, {"model": "metainfo.source", "pk": 7362, "fields": {"orig_filename": "Pechy-Pechujfalu_Tamas_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385", "author": "", "orig_id": 1409266}}, {"model": "metainfo.source", "pk": 7363, "fields": {"orig_filename": "Pech_Antal_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381", "author": "", "orig_id": 1409181}}, {"model": "metainfo.source", "pk": 7364, "fields": {"orig_filename": "Pech_Jozsef_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 381f.", "author": "", "orig_id": 1409182}}, {"model": "metainfo.source", "pk": 7365, "fields": {"orig_filename": "Pecirka_Ferdinand-Otokar_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 385f.", "author": "", "orig_id": 1409267}}, {"model": "metainfo.source", "pk": 7366, "fields": {"orig_filename": "Pecirka_Josef_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409268}}, {"model": "metainfo.source", "pk": 7367, "fields": {"orig_filename": "Peckary_Karl_1848_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409272}}, {"model": "metainfo.source", "pk": 7368, "fields": {"orig_filename": "Pecka_Josef-Boleslav_1849_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409271}}, {"model": "metainfo.source", "pk": 7369, "fields": {"orig_filename": "Peck_Edmund-Anton_1830_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409269}}, {"model": "metainfo.source", "pk": 7370, "fields": {"orig_filename": "Peck_Philipp_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 386", "author": "", "orig_id": 1409270}}, {"model": "metainfo.source", "pk": 7371, "fields": {"orig_filename": "Peczely_Jozsef_1789_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387f.", "author": "", "orig_id": 1409274}}, {"model": "metainfo.source", "pk": 7372, "fields": {"orig_filename": "Pecz_Vilmos_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 387", "author": "", "orig_id": 1409273}}, {"model": "metainfo.source", "pk": 7373, "fields": {"orig_filename": "Pederzolli_Giuseppe_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409275}}, {"model": "metainfo.source", "pk": 7374, "fields": {"orig_filename": "Pedrotti_Giovanni_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409276}}, {"model": "metainfo.source", "pk": 7375, "fields": {"orig_filename": "Peer-Egerthal_Josef-Johann_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389", "author": "", "orig_id": 1409352}}, {"model": "metainfo.source", "pk": 7376, "fields": {"orig_filename": "Peer_Heinrich_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 388", "author": "", "orig_id": 1409277}}, {"model": "metainfo.source", "pk": 7377, "fields": {"orig_filename": "Peer_Johann-Paul_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389", "author": "", "orig_id": 1409278}}, {"model": "metainfo.source", "pk": 7378, "fields": {"orig_filename": "Peez_Alexander-Ernst_1829_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 389f.", "author": "", "orig_id": 1409353}}, {"model": "metainfo.source", "pk": 7379, "fields": {"orig_filename": "Pegger_Johann_1850_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 390", "author": "", "orig_id": 1409354}}, {"model": "metainfo.source", "pk": 7380, "fields": {"orig_filename": "Peham_Heinrich_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 390f.", "author": "", "orig_id": 1409355}}, {"model": "metainfo.source", "pk": 7381, "fields": {"orig_filename": "Pehersdorfer_Anna_1849_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391", "author": "", "orig_id": 1409356}}, {"model": "metainfo.source", "pk": 7382, "fields": {"orig_filename": "Pehr_Franz_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391", "author": "", "orig_id": 1409357}}, {"model": "metainfo.source", "pk": 7383, "fields": {"orig_filename": "Peinlich_Richard_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 391f.", "author": "", "orig_id": 1409358}}, {"model": "metainfo.source", "pk": 7384, "fields": {"orig_filename": "Peisker_Johannes_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392", "author": "", "orig_id": 1409359}}, {"model": "metainfo.source", "pk": 7385, "fields": {"orig_filename": "Peithner-Lichtenfels_Rudolf_1848_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 393", "author": "", "orig_id": 1409361}}, {"model": "metainfo.source", "pk": 7386, "fields": {"orig_filename": "Peithner-Lichtenfels_Thaddaeus_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 393f.", "author": "", "orig_id": 1409362}}, {"model": "metainfo.source", "pk": 7387, "fields": {"orig_filename": "Peitler_Antal-Jozsef_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 394", "author": "", "orig_id": 1409363}}, {"model": "metainfo.source", "pk": 7388, "fields": {"orig_filename": "Paradis_Maria-Theresia_1759_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323f.", "author": "", "orig_id": 1408530}}, {"model": "metainfo.source", "pk": 7389, "fields": {"orig_filename": "Parapat_Janez_1838_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324", "author": "", "orig_id": 1408531}}, {"model": "metainfo.source", "pk": 7390, "fields": {"orig_filename": "Parenski_Stanislaw_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324", "author": "", "orig_id": 1408532}}, {"model": "metainfo.source", "pk": 7391, "fields": {"orig_filename": "Parente_Aron-Isak_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 324f.", "author": "", "orig_id": 1408533}}, {"model": "metainfo.source", "pk": 7392, "fields": {"orig_filename": "Parente_Marco_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408534}}, {"model": "metainfo.source", "pk": 7393, "fields": {"orig_filename": "Pargfrider_Josef-Gottfried_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408535}}, {"model": "metainfo.source", "pk": 7394, "fields": {"orig_filename": "Parin_Gino_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325f.", "author": "", "orig_id": 1408537}}, {"model": "metainfo.source", "pk": 7395, "fields": {"orig_filename": "Parisini_Emil_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326", "author": "", "orig_id": 1408539}}, {"model": "metainfo.source", "pk": 7396, "fields": {"orig_filename": "Parisi_Giuseppe_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326", "author": "", "orig_id": 1408538}}, {"model": "metainfo.source", "pk": 7397, "fields": {"orig_filename": "Pari_Anton-Giuseppe_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 325", "author": "", "orig_id": 1408536}}, {"model": "metainfo.source", "pk": 7398, "fields": {"orig_filename": "Parmann_Oskar_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327", "author": "", "orig_id": 1408541}}, {"model": "metainfo.source", "pk": 7399, "fields": {"orig_filename": "Parma_Viktor_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 326f.", "author": "", "orig_id": 1408540}}, {"model": "metainfo.source", "pk": 7400, "fields": {"orig_filename": "Parrot_Jakob_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327", "author": "", "orig_id": 1408608}}, {"model": "metainfo.source", "pk": 7401, "fields": {"orig_filename": "Parschalk_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 327f.", "author": "", "orig_id": 1408609}}, {"model": "metainfo.source", "pk": 7402, "fields": {"orig_filename": "Partsch_Anton_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328", "author": "", "orig_id": 1408610}}, {"model": "metainfo.source", "pk": 7403, "fields": {"orig_filename": "Partsch_Franz-Xaver_1760_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328", "author": "", "orig_id": 1408611}}, {"model": "metainfo.source", "pk": 7404, "fields": {"orig_filename": "Partsch_Paul-Maria_1791_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 328f.", "author": "", "orig_id": 1408612}}, {"model": "metainfo.source", "pk": 7405, "fields": {"orig_filename": "Parttart_Alois_1841_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329", "author": "", "orig_id": 1408613}}, {"model": "metainfo.source", "pk": 7406, "fields": {"orig_filename": "Parvy-Kis-Konya_Sandor_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329", "author": "", "orig_id": 1408614}}, {"model": "metainfo.source", "pk": 7407, "fields": {"orig_filename": "Pasaric_Josip_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 329f.", "author": "", "orig_id": 1408615}}, {"model": "metainfo.source", "pk": 7408, "fields": {"orig_filename": "Pascher-Osserburg_Karl_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330f.", "author": "", "orig_id": 1408618}}, {"model": "metainfo.source", "pk": 7409, "fields": {"orig_filename": "Pascher_Adolf_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330", "author": "", "orig_id": 1408616}}, {"model": "metainfo.source", "pk": 7410, "fields": {"orig_filename": "Pascher_Johann_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 330", "author": "", "orig_id": 1408617}}, {"model": "metainfo.source", "pk": 7411, "fields": {"orig_filename": "Paschkis_Heinrich_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408619}}, {"model": "metainfo.source", "pk": 7412, "fields": {"orig_filename": "Pascolato_Alessandro_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408620}}, {"model": "metainfo.source", "pk": 7413, "fields": {"orig_filename": "Pascoletto_Hadrian_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 331", "author": "", "orig_id": 1408621}}, {"model": "metainfo.source", "pk": 7414, "fields": {"orig_filename": "Pascotini-Ehrenfels_Carlo_1797_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1408622}}, {"model": "metainfo.source", "pk": 7415, "fields": {"orig_filename": "Pascotini-Ehrenfels_Giovanni_1761_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1408623}}, {"model": "metainfo.source", "pk": 7416, "fields": {"orig_filename": "Pascutti_Antonio_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332", "author": "", "orig_id": 1471927}}, {"model": "metainfo.source", "pk": 7417, "fields": {"orig_filename": "Pasini_Lodovico_1804_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 332f.", "author": "", "orig_id": 1408624}}, {"model": "metainfo.source", "pk": 7418, "fields": {"orig_filename": "Pasini_Valentino_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 333", "author": "", "orig_id": 1408625}}, {"model": "metainfo.source", "pk": 7419, "fields": {"orig_filename": "Paska_Josef_1828_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 333f.", "author": "", "orig_id": 1408626}}, {"model": "metainfo.source", "pk": 7420, "fields": {"orig_filename": "Paskovits_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408627}}, {"model": "metainfo.source", "pk": 7421, "fields": {"orig_filename": "Pasqualati-Osterberg_Amalia_1818_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408628}}, {"model": "metainfo.source", "pk": 7422, "fields": {"orig_filename": "Pasqualigo-Sacchi_Giuseppe_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335", "author": "", "orig_id": 1408630}}, {"model": "metainfo.source", "pk": 7423, "fields": {"orig_filename": "Pasqualigo_Nicolo_1770_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 334", "author": "", "orig_id": 1408629}}, {"model": "metainfo.source", "pk": 7424, "fields": {"orig_filename": "Pasquich_Johann_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335", "author": "", "orig_id": 1408631}}, {"model": "metainfo.source", "pk": 7425, "fields": {"orig_filename": "Passini_Johann_1798_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 335f.", "author": "", "orig_id": 1408705}}, {"model": "metainfo.source", "pk": 7426, "fields": {"orig_filename": "Passini_Ludwig-Johann_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336", "author": "", "orig_id": 1408706}}, {"model": "metainfo.source", "pk": 7427, "fields": {"orig_filename": "Passy_Anton_1788_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336", "author": "", "orig_id": 1408707}}, {"model": "metainfo.source", "pk": 7428, "fields": {"orig_filename": "Pasta_Giuditta-Maria-Costanza_1797_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 336f.", "author": "", "orig_id": 1408708}}, {"model": "metainfo.source", "pk": 7429, "fields": {"orig_filename": "Pasteiner_Gyula_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 337", "author": "", "orig_id": 1408709}}, {"model": "metainfo.source", "pk": 7430, "fields": {"orig_filename": "Pastor-Camperfelden_Ludwig_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338", "author": "", "orig_id": 1408711}}, {"model": "metainfo.source", "pk": 7431, "fields": {"orig_filename": "Pastor_Leon_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 337", "author": "", "orig_id": 1408710}}, {"model": "metainfo.source", "pk": 7432, "fields": {"orig_filename": "Pastree_Julius_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338", "author": "", "orig_id": 1408712}}, {"model": "metainfo.source", "pk": 7433, "fields": {"orig_filename": "Pastrnek_Frantisek_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 338f.", "author": "", "orig_id": 1408713}}, {"model": "metainfo.source", "pk": 7434, "fields": {"orig_filename": "Paszkowski_Leon_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339", "author": "", "orig_id": 1408714}}, {"model": "metainfo.source", "pk": 7435, "fields": {"orig_filename": "Paszthory_Emerich_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339", "author": "", "orig_id": 1408715}}, {"model": "metainfo.source", "pk": 7436, "fields": {"orig_filename": "Patay_Janos_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 339f.", "author": "", "orig_id": 1408716}}, {"model": "metainfo.source", "pk": 7437, "fields": {"orig_filename": "Patek_Karl_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408717}}, {"model": "metainfo.source", "pk": 7438, "fields": {"orig_filename": "Patera_Adolf_1836_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 341", "author": "", "orig_id": 1408721}}, {"model": "metainfo.source", "pk": 7439, "fields": {"orig_filename": "Patera_Lothar_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 341f.", "author": "", "orig_id": 1408722}}, {"model": "metainfo.source", "pk": 7440, "fields": {"orig_filename": "Pater_Arpad_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408718}}, {"model": "metainfo.source", "pk": 7441, "fields": {"orig_filename": "Pater_Bela_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340", "author": "", "orig_id": 1408719}}, {"model": "metainfo.source", "pk": 7442, "fields": {"orig_filename": "Patigler_Josef_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342", "author": "", "orig_id": 1408723}}, {"model": "metainfo.source", "pk": 7443, "fields": {"orig_filename": "Patiss_Georg_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342", "author": "", "orig_id": 1408724}}, {"model": "metainfo.source", "pk": 7444, "fields": {"orig_filename": "Patrcka_Michal-Silorad_1787_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 342f.", "author": "", "orig_id": 1408725}}, {"model": "metainfo.source", "pk": 7445, "fields": {"orig_filename": "Patruban_Karl_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343", "author": "", "orig_id": 1408726}}, {"model": "metainfo.source", "pk": 7446, "fields": {"orig_filename": "Patscheider_Albuin-Maria_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344", "author": "", "orig_id": 1408797}}, {"model": "metainfo.source", "pk": 7447, "fields": {"orig_filename": "Patsch_Josef_1786_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343", "author": "", "orig_id": 1408727}}, {"model": "metainfo.source", "pk": 7448, "fields": {"orig_filename": "Patsch_Karl_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 343f.", "author": "", "orig_id": 1408728}}, {"model": "metainfo.source", "pk": 7449, "fields": {"orig_filename": "Pattai_Robert_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344", "author": "", "orig_id": 1408798}}, {"model": "metainfo.source", "pk": 7450, "fields": {"orig_filename": "Patuzzi_Gaetano-Lionello_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 344f.", "author": "", "orig_id": 1408799}}, {"model": "metainfo.source", "pk": 7451, "fields": {"orig_filename": "Patzak_Franz_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408800}}, {"model": "metainfo.source", "pk": 7452, "fields": {"orig_filename": "Patzke_Edmund_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408801}}, {"model": "metainfo.source", "pk": 7453, "fields": {"orig_filename": "Paudler_Amand_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 345", "author": "", "orig_id": 1408802}}, {"model": "metainfo.source", "pk": 7454, "fields": {"orig_filename": "Pauer_Ernst_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346", "author": "", "orig_id": 1408803}}, {"model": "metainfo.source", "pk": 7455, "fields": {"orig_filename": "Pauer_Franz_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346", "author": "", "orig_id": 1408804}}, {"model": "metainfo.source", "pk": 7456, "fields": {"orig_filename": "Pauer_Janos_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 346f.", "author": "", "orig_id": 1408805}}, {"model": "metainfo.source", "pk": 7457, "fields": {"orig_filename": "Pauer_Josef-Chrysostomus_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347", "author": "", "orig_id": 1408806}}, {"model": "metainfo.source", "pk": 7458, "fields": {"orig_filename": "Paukert-Hohenfranken_Johann_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408809}}, {"model": "metainfo.source", "pk": 7459, "fields": {"orig_filename": "Paukert_Franz_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347f.", "author": "", "orig_id": 1408808}}, {"model": "metainfo.source", "pk": 7460, "fields": {"orig_filename": "Pauker_Wolfgang_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 347", "author": "", "orig_id": 1408807}}, {"model": "metainfo.source", "pk": 7461, "fields": {"orig_filename": "Paulal_Karl_1879_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348f.", "author": "", "orig_id": 1408813}}, {"model": "metainfo.source", "pk": 7462, "fields": {"orig_filename": "Paulay_Ede_1836_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349", "author": "", "orig_id": 1408814}}, {"model": "metainfo.source", "pk": 7463, "fields": {"orig_filename": "Pauler_Gyula_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349", "author": "", "orig_id": 1408815}}, {"model": "metainfo.source", "pk": 7464, "fields": {"orig_filename": "Pauler_Tivadar_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 349f.", "author": "", "orig_id": 1408816}}, {"model": "metainfo.source", "pk": 7465, "fields": {"orig_filename": "Paulick_Friedrich-Georg_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 350f.", "author": "", "orig_id": 1408818}}, {"model": "metainfo.source", "pk": 7466, "fields": {"orig_filename": "Paulik_Janos_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 351", "author": "", "orig_id": 1408819}}, {"model": "metainfo.source", "pk": 7467, "fields": {"orig_filename": "Pauliny-Toth_Viliam_1826_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352f.", "author": "", "orig_id": 1408888}}, {"model": "metainfo.source", "pk": 7468, "fields": {"orig_filename": "Pauliny_Jakob-Josef_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 351f.", "author": "", "orig_id": 1408820}}, {"model": "metainfo.source", "pk": 7469, "fields": {"orig_filename": "Pauliny_Ladislav_1815_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352", "author": "", "orig_id": 1408886}}, {"model": "metainfo.source", "pk": 7470, "fields": {"orig_filename": "Pauliny_Sigismund_1750_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 352", "author": "", "orig_id": 1408887}}, {"model": "metainfo.source", "pk": 7471, "fields": {"orig_filename": "Paulitschke_Philipp_1854_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 353f.", "author": "", "orig_id": 1408890}}, {"model": "metainfo.source", "pk": 7472, "fields": {"orig_filename": "Paulitsch_Michael_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 353", "author": "", "orig_id": 1408889}}, {"model": "metainfo.source", "pk": 7473, "fields": {"orig_filename": "Pauli_Hertha_1906_1973.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412346}}, {"model": "metainfo.source", "pk": 7474, "fields": {"orig_filename": "Pauli_Ignacy-Jakub_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 350", "author": "", "orig_id": 1408817}}, {"model": "metainfo.source", "pk": 7475, "fields": {"orig_filename": "Pauli_Wolfgang-Ernst_1900_1958.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 301", "author": "", "orig_id": 1412345}}, {"model": "metainfo.source", "pk": 7476, "fields": {"orig_filename": "Pauli_Wolfgang-Josef_1869_1955.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 300f.", "author": "", "orig_id": 1412344}}, {"model": "metainfo.source", "pk": 7477, "fields": {"orig_filename": "Paulmichl_Alois_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408891}}, {"model": "metainfo.source", "pk": 7478, "fields": {"orig_filename": "Paulmichl_Karl_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408892}}, {"model": "metainfo.source", "pk": 7479, "fields": {"orig_filename": "Paulucci-Roncole_Hamilcar_1773_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408893}}, {"model": "metainfo.source", "pk": 7480, "fields": {"orig_filename": "Pauly_Max_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354", "author": "", "orig_id": 1408894}}, {"model": "metainfo.source", "pk": 7481, "fields": {"orig_filename": "Paul_Gustav_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408810}}, {"model": "metainfo.source", "pk": 7482, "fields": {"orig_filename": "Paul_Ludwig_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 348", "author": "", "orig_id": 1408811}}, {"model": "metainfo.source", "pk": 7483, "fields": {"orig_filename": "Paumgartner_Johann_1844_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 354f.", "author": "", "orig_id": 1408895}}, {"model": "metainfo.source", "pk": 7484, "fields": {"orig_filename": "Paumgartner_Rosa_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 355", "author": "", "orig_id": 1408896}}, {"model": "metainfo.source", "pk": 7485, "fields": {"orig_filename": "Paumgartten_Franz-Xaver_1811_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 355f.", "author": "", "orig_id": 1408897}}, {"model": "metainfo.source", "pk": 7486, "fields": {"orig_filename": "Paungarten_Emma_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408898}}, {"model": "metainfo.source", "pk": 7487, "fields": {"orig_filename": "Paur_Emil_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408899}}, {"model": "metainfo.source", "pk": 7488, "fields": {"orig_filename": "Paur_Ignaz_1778_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356", "author": "", "orig_id": 1408900}}, {"model": "metainfo.source", "pk": 7489, "fields": {"orig_filename": "Paur_Ivan_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 356f.", "author": "", "orig_id": 1408901}}, {"model": "metainfo.source", "pk": 7490, "fields": {"orig_filename": "Pausinger_Franz-August_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 357", "author": "", "orig_id": 1408902}}, {"model": "metainfo.source", "pk": 7491, "fields": {"orig_filename": "Pagani_Giovanni-Battista_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 287", "author": "", "orig_id": 1408080}}, {"model": "metainfo.source", "pk": 7492, "fields": {"orig_filename": "Pagay_Hans_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288", "author": "", "orig_id": 1408082}}, {"model": "metainfo.source", "pk": 7493, "fields": {"orig_filename": "Pagello_Pietro_1807_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288", "author": "", "orig_id": 1408083}}, {"model": "metainfo.source", "pk": 7494, "fields": {"orig_filename": "Paget_Charles-Octavius_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 288f.", "author": "", "orig_id": 1408084}}, {"model": "metainfo.source", "pk": 7495, "fields": {"orig_filename": "Paget_Frederick_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408085}}, {"model": "metainfo.source", "pk": 7496, "fields": {"orig_filename": "Pagliaruzzi_Josip_1859_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408086}}, {"model": "metainfo.source", "pk": 7497, "fields": {"orig_filename": "Pagnini_Silvio_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289", "author": "", "orig_id": 1408155}}, {"model": "metainfo.source", "pk": 7498, "fields": {"orig_filename": "Paic_Josef_1867_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 289f.", "author": "", "orig_id": 1408156}}, {"model": "metainfo.source", "pk": 7499, "fields": {"orig_filename": "Pailler_Wilhelm_1838_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408157}}, {"model": "metainfo.source", "pk": 7500, "fields": {"orig_filename": "Paini_Carlo_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408158}}, {"model": "metainfo.source", "pk": 7501, "fields": {"orig_filename": "Paintl_Paul_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290", "author": "", "orig_id": 1408159}}, {"model": "metainfo.source", "pk": 7502, "fields": {"orig_filename": "Paintner_Michael-Anton_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 290f.", "author": "", "orig_id": 1408160}}, {"model": "metainfo.source", "pk": 7503, "fields": {"orig_filename": "Pajer_Robert_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291", "author": "", "orig_id": 1408161}}, {"model": "metainfo.source", "pk": 7504, "fields": {"orig_filename": "Pajgert_Adam_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291", "author": "", "orig_id": 1408162}}, {"model": "metainfo.source", "pk": 7505, "fields": {"orig_filename": "Pajgert_Jozef_1799_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 291f.", "author": "", "orig_id": 1408163}}, {"model": "metainfo.source", "pk": 7506, "fields": {"orig_filename": "Pajk_Johann_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292", "author": "", "orig_id": 1408164}}, {"model": "metainfo.source", "pk": 7507, "fields": {"orig_filename": "Pajk_Pavlina_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292", "author": "", "orig_id": 1408165}}, {"model": "metainfo.source", "pk": 7508, "fields": {"orig_filename": "Pajor_Sandor_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 292f.", "author": "", "orig_id": 1408166}}, {"model": "metainfo.source", "pk": 7509, "fields": {"orig_filename": "Pakh_Albert_1823_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 293", "author": "", "orig_id": 1408167}}, {"model": "metainfo.source", "pk": 7510, "fields": {"orig_filename": "Palacky_Frantisek_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 294ff.", "author": "", "orig_id": 1408170}}, {"model": "metainfo.source", "pk": 7511, "fields": {"orig_filename": "Palacky_Jan_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 296", "author": "", "orig_id": 1408171}}, {"model": "metainfo.source", "pk": 7512, "fields": {"orig_filename": "Palarik_Jan_1822_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 296f.", "author": "", "orig_id": 1408172}}, {"model": "metainfo.source", "pk": 7513, "fields": {"orig_filename": "Palasthy-Palasth-Keczihocz_Pal_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297", "author": "", "orig_id": 1408173}}, {"model": "metainfo.source", "pk": 7514, "fields": {"orig_filename": "Paldus_Josef_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297", "author": "", "orig_id": 1408174}}, {"model": "metainfo.source", "pk": 7515, "fields": {"orig_filename": "Paleocapa_Pietro_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 297f.", "author": "", "orig_id": 1408175}}, {"model": "metainfo.source", "pk": 7516, "fields": {"orig_filename": "Paletz_Emanuel_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298", "author": "", "orig_id": 1408176}}, {"model": "metainfo.source", "pk": 7517, "fields": {"orig_filename": "Palffi-Tarcsafalva_Janos_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298", "author": "", "orig_id": 1408246}}, {"model": "metainfo.source", "pk": 7518, "fields": {"orig_filename": "Palffy-Erdoed_Ferdinand_1774_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 299", "author": "", "orig_id": 1408248}}, {"model": "metainfo.source", "pk": 7519, "fields": {"orig_filename": "Palffy-Erdoed_Lipot_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 299f.", "author": "", "orig_id": 1408249}}, {"model": "metainfo.source", "pk": 7520, "fields": {"orig_filename": "Palffy-Erdoed_Moriz_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 300", "author": "", "orig_id": 1408250}}, {"model": "metainfo.source", "pk": 7521, "fields": {"orig_filename": "Palffy_Albert_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 298f.", "author": "", "orig_id": 1408247}}, {"model": "metainfo.source", "pk": 7522, "fields": {"orig_filename": "Palisa_Johann_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 300f.", "author": "", "orig_id": 1408251}}, {"model": "metainfo.source", "pk": 7523, "fields": {"orig_filename": "Palkovic_Jiri_1769_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 301", "author": "", "orig_id": 1408252}}, {"model": "metainfo.source", "pk": 7524, "fields": {"orig_filename": "Palkovic_Juraj_1763_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 301f.", "author": "", "orig_id": 1408253}}, {"model": "metainfo.source", "pk": 7525, "fields": {"orig_filename": "Pallavicini_Alfred_1848_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302f.", "author": "", "orig_id": 1408256}}, {"model": "metainfo.source", "pk": 7526, "fields": {"orig_filename": "Pallavicini_Janos_1848_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 303", "author": "", "orig_id": 1408257}}, {"model": "metainfo.source", "pk": 7527, "fields": {"orig_filename": "Palla_Anton_1836_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302", "author": "", "orig_id": 1408254}}, {"model": "metainfo.source", "pk": 7528, "fields": {"orig_filename": "Palla_Eduard_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 302", "author": "", "orig_id": 1408255}}, {"model": "metainfo.source", "pk": 7529, "fields": {"orig_filename": "Pallenberg_Max_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 303f.", "author": "", "orig_id": 1408258}}, {"model": "metainfo.source", "pk": 7530, "fields": {"orig_filename": "Palles_Georg_1753_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 304", "author": "", "orig_id": 1408259}}, {"model": "metainfo.source", "pk": 7531, "fields": {"orig_filename": "Pallhuber_Johann_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 304f.", "author": "", "orig_id": 1408260}}, {"model": "metainfo.source", "pk": 7532, "fields": {"orig_filename": "Palliardi_Jaroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408261}}, {"model": "metainfo.source", "pk": 7533, "fields": {"orig_filename": "Palmer_Georg_1796_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 71f.", "author": "", "orig_id": 1430970}}, {"model": "metainfo.source", "pk": 7534, "fields": {"orig_filename": "Palme_Elias_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408263}}, {"model": "metainfo.source", "pk": 7535, "fields": {"orig_filename": "Palme_Franz-Friedrich_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305f.", "author": "", "orig_id": 1408264}}, {"model": "metainfo.source", "pk": 7536, "fields": {"orig_filename": "Palme_Ignaz-Samuel_1806_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306", "author": "", "orig_id": 1408265}}, {"model": "metainfo.source", "pk": 7537, "fields": {"orig_filename": "Palmovic_Andrija_1847_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306", "author": "", "orig_id": 1408332}}, {"model": "metainfo.source", "pk": 7538, "fields": {"orig_filename": "Palm_Josef_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 305", "author": "", "orig_id": 1408262}}, {"model": "metainfo.source", "pk": 7539, "fields": {"orig_filename": "Palsovic_Anton_1771_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 306f.", "author": "", "orig_id": 1408333}}, {"model": "metainfo.source", "pk": 7540, "fields": {"orig_filename": "Paltauf_Arnold_1860_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 307", "author": "", "orig_id": 1408334}}, {"model": "metainfo.source", "pk": 7541, "fields": {"orig_filename": "Paltauf_Richard_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 307f.", "author": "", "orig_id": 1408335}}, {"model": "metainfo.source", "pk": 7542, "fields": {"orig_filename": "Palugyay-Nagypalugya-Bodafalva_Imre_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408336}}, {"model": "metainfo.source", "pk": 7543, "fields": {"orig_filename": "Pal_Jakob_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 294", "author": "", "orig_id": 1408169}}, {"model": "metainfo.source", "pk": 7544, "fields": {"orig_filename": "Pamer_Fritz-Egon_1900_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408337}}, {"model": "metainfo.source", "pk": 7545, "fields": {"orig_filename": "Pammer_Bruno_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308", "author": "", "orig_id": 1408338}}, {"model": "metainfo.source", "pk": 7546, "fields": {"orig_filename": "Pammer_Maximilian_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 308f.", "author": "", "orig_id": 1408339}}, {"model": "metainfo.source", "pk": 7547, "fields": {"orig_filename": "Pancera_Gabriele_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309", "author": "", "orig_id": 1408340}}, {"model": "metainfo.source", "pk": 7548, "fields": {"orig_filename": "Pancic_Josif_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309", "author": "", "orig_id": 1408341}}, {"model": "metainfo.source", "pk": 7549, "fields": {"orig_filename": "Panciera_Valentino_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 309f.", "author": "", "orig_id": 1408342}}, {"model": "metainfo.source", "pk": 7550, "fields": {"orig_filename": "Panczel-Albis_Daniel_1759_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310", "author": "", "orig_id": 1408343}}, {"model": "metainfo.source", "pk": 7551, "fields": {"orig_filename": "Pandzic_Kreso_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310", "author": "", "orig_id": 1408344}}, {"model": "metainfo.source", "pk": 7552, "fields": {"orig_filename": "Panek_Kazimierz_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 310f.", "author": "", "orig_id": 1408345}}, {"model": "metainfo.source", "pk": 7553, "fields": {"orig_filename": "Paneth_Josef_1857_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311", "author": "", "orig_id": 1408347}}, {"model": "metainfo.source", "pk": 7554, "fields": {"orig_filename": "Panet_Ezechiel_1783_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311", "author": "", "orig_id": 1408346}}, {"model": "metainfo.source", "pk": 7555, "fields": {"orig_filename": "Pangerl_Franz_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 311f.", "author": "", "orig_id": 1408348}}, {"model": "metainfo.source", "pk": 7556, "fields": {"orig_filename": "Pangerl_Matthias_1834_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312", "author": "", "orig_id": 1408349}}, {"model": "metainfo.source", "pk": 7557, "fields": {"orig_filename": "Panhans_Franz_1869_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312", "author": "", "orig_id": 1408350}}, {"model": "metainfo.source", "pk": 7558, "fields": {"orig_filename": "Panholzer_Arthur_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 312f.", "author": "", "orig_id": 1408351}}, {"model": "metainfo.source", "pk": 7559, "fields": {"orig_filename": "Panholzer_Johann_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408352}}, {"model": "metainfo.source", "pk": 7560, "fields": {"orig_filename": "Panizza_Augusto_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408353}}, {"model": "metainfo.source", "pk": 7561, "fields": {"orig_filename": "Panizza_Bartolomeo_1785_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313", "author": "", "orig_id": 1408425}}, {"model": "metainfo.source", "pk": 7562, "fields": {"orig_filename": "Panizza_Bernardino_1827_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 313f.", "author": "", "orig_id": 1408426}}, {"model": "metainfo.source", "pk": 7563, "fields": {"orig_filename": "Panizza_Giovanni-Battista_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314", "author": "", "orig_id": 1408427}}, {"model": "metainfo.source", "pk": 7564, "fields": {"orig_filename": "Pankowski_Kazimierz_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314", "author": "", "orig_id": 1408429}}, {"model": "metainfo.source", "pk": 7565, "fields": {"orig_filename": "Pankowski_Mieczyslaw_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 314f.", "author": "", "orig_id": 1408430}}, {"model": "metainfo.source", "pk": 7566, "fields": {"orig_filename": "Pannasch_Anton_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315", "author": "", "orig_id": 1408431}}, {"model": "metainfo.source", "pk": 7567, "fields": {"orig_filename": "Panny_Josef_1794_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315", "author": "", "orig_id": 1408432}}, {"model": "metainfo.source", "pk": 7568, "fields": {"orig_filename": "Panschab_Justin_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 315f.", "author": "", "orig_id": 1408433}}, {"model": "metainfo.source", "pk": 7569, "fields": {"orig_filename": "Pantocsek_Jozef_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316", "author": "", "orig_id": 1408434}}, {"model": "metainfo.source", "pk": 7570, "fields": {"orig_filename": "Pantocsek_Leo-Valent_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316", "author": "", "orig_id": 1408435}}, {"model": "metainfo.source", "pk": 7571, "fields": {"orig_filename": "Pantucek_Ferdinand_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 316f.", "author": "", "orig_id": 1408436}}, {"model": "metainfo.source", "pk": 7572, "fields": {"orig_filename": "Pantz_Anton_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317", "author": "", "orig_id": 1408437}}, {"model": "metainfo.source", "pk": 7573, "fields": {"orig_filename": "Panwitz_Friedrich-Wilhelm_1788_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317", "author": "", "orig_id": 1408438}}, {"model": "metainfo.source", "pk": 7574, "fields": {"orig_filename": "Panyrek_Duchoslav_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 317f.", "author": "", "orig_id": 1408439}}, {"model": "metainfo.source", "pk": 7575, "fields": {"orig_filename": "Panzer_Friedrich_1876_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408440}}, {"model": "metainfo.source", "pk": 7576, "fields": {"orig_filename": "Panzl_Johann_1786_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408441}}, {"model": "metainfo.source", "pk": 7577, "fields": {"orig_filename": "Paoletti_Antonio-Ermolao_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318", "author": "", "orig_id": 1408442}}, {"model": "metainfo.source", "pk": 7578, "fields": {"orig_filename": "Paoli_Francesco_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 318f.", "author": "", "orig_id": 1408444}}, {"model": "metainfo.source", "pk": 7579, "fields": {"orig_filename": "Papadopoli-Aldobrandini_Nicolo_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408519}}, {"model": "metainfo.source", "pk": 7580, "fields": {"orig_filename": "Papadopoli_Antonio_1815_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319f.", "author": "", "orig_id": 1408518}}, {"model": "metainfo.source", "pk": 7581, "fields": {"orig_filename": "Papaleoni_Giuseppe_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408520}}, {"model": "metainfo.source", "pk": 7582, "fields": {"orig_filename": "Papay_Samuel_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 320", "author": "", "orig_id": 1408521}}, {"model": "metainfo.source", "pk": 7583, "fields": {"orig_filename": "Papee_Fryderyk_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321", "author": "", "orig_id": 1408522}}, {"model": "metainfo.source", "pk": 7584, "fields": {"orig_filename": "Papic_Josip_1881_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321", "author": "", "orig_id": 1408523}}, {"model": "metainfo.source", "pk": 7585, "fields": {"orig_filename": "Papin_Heinrich_1786_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 321f.", "author": "", "orig_id": 1408524}}, {"model": "metainfo.source", "pk": 7586, "fields": {"orig_filename": "Papiu-Ilarian_Alexandru_1827_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 322", "author": "", "orig_id": 1408525}}, {"model": "metainfo.source", "pk": 7587, "fields": {"orig_filename": "Papp-Keresztes_Miklos_1837_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 322f.", "author": "", "orig_id": 1408526}}, {"model": "metainfo.source", "pk": 7588, "fields": {"orig_filename": "Pappafava_Vladimiro_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408527}}, {"model": "metainfo.source", "pk": 7589, "fields": {"orig_filename": "Pappenheim_Martin_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408528}}, {"model": "metainfo.source", "pk": 7590, "fields": {"orig_filename": "Pap_Gabor_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408445}}, {"model": "metainfo.source", "pk": 7591, "fields": {"orig_filename": "Pap_Istvan_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408446}}, {"model": "metainfo.source", "pk": 7592, "fields": {"orig_filename": "Pap_Istvan_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 319", "author": "", "orig_id": 1408447}}, {"model": "metainfo.source", "pk": 7593, "fields": {"orig_filename": "Paradeiser_Wenzel_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 323", "author": "", "orig_id": 1408529}}, {"model": "metainfo.source", "pk": 7594, "fields": {"orig_filename": "Ornstein_Zwi-Hirsch__1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249", "author": "", "orig_id": 1409147}}, {"model": "metainfo.source", "pk": 7595, "fields": {"orig_filename": "Oroszhegyi-Szabo_Jozsa_1822_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249f.", "author": "", "orig_id": 1409148}}, {"model": "metainfo.source", "pk": 7596, "fields": {"orig_filename": "Orozen_Fran_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250", "author": "", "orig_id": 1409149}}, {"model": "metainfo.source", "pk": 7597, "fields": {"orig_filename": "Orozen_Ignaz_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250", "author": "", "orig_id": 1412811}}, {"model": "metainfo.source", "pk": 7598, "fields": {"orig_filename": "Orsini-Rosenberg_Felix_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252", "author": "", "orig_id": 1409152}}, {"model": "metainfo.source", "pk": 7599, "fields": {"orig_filename": "Orsini-Rosenberg_Franz_1761_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252", "author": "", "orig_id": 1409153}}, {"model": "metainfo.source", "pk": 7600, "fields": {"orig_filename": "Orsini-Rosenberg_Karl-Dominik-Maximilian_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 252f.", "author": "", "orig_id": 1409154}}, {"model": "metainfo.source", "pk": 7601, "fields": {"orig_filename": "Orsini-Rosenberg_Maximilian_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253", "author": "", "orig_id": 1409155}}, {"model": "metainfo.source", "pk": 7602, "fields": {"orig_filename": "Orsi_Osvaldo_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 250f.", "author": "", "orig_id": 1409150}}, {"model": "metainfo.source", "pk": 7603, "fields": {"orig_filename": "Orsi_Paolo_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 251f.", "author": "", "orig_id": 1409151}}, {"model": "metainfo.source", "pk": 7604, "fields": {"orig_filename": "Orszagh_Jozef_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253", "author": "", "orig_id": 1409156}}, {"model": "metainfo.source", "pk": 7605, "fields": {"orig_filename": "Orszagh_Pavol_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 253f.", "author": "", "orig_id": 1409157}}, {"model": "metainfo.source", "pk": 7606, "fields": {"orig_filename": "Orth_Johann_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 254", "author": "", "orig_id": 1409158}}, {"model": "metainfo.source", "pk": 7607, "fields": {"orig_filename": "Ortmann_Anton_1801_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 254f.", "author": "", "orig_id": 1409159}}, {"model": "metainfo.source", "pk": 7608, "fields": {"orig_filename": "Ortmann_Johann_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409160}}, {"model": "metainfo.source", "pk": 7609, "fields": {"orig_filename": "Ortner-Rodenstaett_Norbert_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256", "author": "", "orig_id": 1409233}}, {"model": "metainfo.source", "pk": 7610, "fields": {"orig_filename": "Ortner_Max_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255f.", "author": "", "orig_id": 1409162}}, {"model": "metainfo.source", "pk": 7611, "fields": {"orig_filename": "Ortner_Peter_1813_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256", "author": "", "orig_id": 1409232}}, {"model": "metainfo.source", "pk": 7612, "fields": {"orig_filename": "Ortvay_Tivadar_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 256f.", "author": "", "orig_id": 1409234}}, {"model": "metainfo.source", "pk": 7613, "fields": {"orig_filename": "Ortwein_Magnus_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257", "author": "", "orig_id": 1409235}}, {"model": "metainfo.source", "pk": 7614, "fields": {"orig_filename": "Orzechowicz_Boleslaw_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257", "author": "", "orig_id": 1409236}}, {"model": "metainfo.source", "pk": 7615, "fields": {"orig_filename": "Oser_Johann_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 257f.", "author": "", "orig_id": 1409237}}, {"model": "metainfo.source", "pk": 7616, "fields": {"orig_filename": "Oser_Leopold_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 258", "author": "", "orig_id": 1409238}}, {"model": "metainfo.source", "pk": 7617, "fields": {"orig_filename": "Oss-Mazzurana_Paolo_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259", "author": "", "orig_id": 1409241}}, {"model": "metainfo.source", "pk": 7618, "fields": {"orig_filename": "Ossikovszky_Josef_1844_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259", "author": "", "orig_id": 1409242}}, {"model": "metainfo.source", "pk": 7619, "fields": {"orig_filename": "Ossolinska_Ludwika-Roza_1797_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 259f.", "author": "", "orig_id": 1409243}}, {"model": "metainfo.source", "pk": 7620, "fields": {"orig_filename": "Ossolinski_Jozef-Maksymilian_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260", "author": "", "orig_id": 1409244}}, {"model": "metainfo.source", "pk": 7621, "fields": {"orig_filename": "Ostapcuk_Jacko_1873_1959.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260", "author": "", "orig_id": 1409245}}, {"model": "metainfo.source", "pk": 7622, "fields": {"orig_filename": "Ostaszewski-Baranski_Kazimierz-Piotr_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 260f.", "author": "", "orig_id": 1409247}}, {"model": "metainfo.source", "pk": 7623, "fields": {"orig_filename": "Osterc_Slavko_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261", "author": "", "orig_id": 1409249}}, {"model": "metainfo.source", "pk": 7624, "fields": {"orig_filename": "Osterlamm_Ernest_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261", "author": "", "orig_id": 1409250}}, {"model": "metainfo.source", "pk": 7625, "fields": {"orig_filename": "Ostermayer_Adolf_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 261f.", "author": "", "orig_id": 1409251}}, {"model": "metainfo.source", "pk": 7626, "fields": {"orig_filename": "Osternacher_Johann_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 262f.", "author": "", "orig_id": 1409252}}, {"model": "metainfo.source", "pk": 7627, "fields": {"orig_filename": "Ostojic_Tihomir_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263", "author": "", "orig_id": 1409253}}, {"model": "metainfo.source", "pk": 7628, "fields": {"orig_filename": "Ostrcil_Anton_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263", "author": "", "orig_id": 1409254}}, {"model": "metainfo.source", "pk": 7629, "fields": {"orig_filename": "Ostrcil_Otakar_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 263f.", "author": "", "orig_id": 1409255}}, {"model": "metainfo.source", "pk": 7630, "fields": {"orig_filename": "Ostrozynski_Wladyslaw_1857_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 264", "author": "", "orig_id": 1409329}}, {"model": "metainfo.source", "pk": 7631, "fields": {"orig_filename": "Osullivan-Grass_Elisabeth-Charlotte_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 264f.", "author": "", "orig_id": 1409330}}, {"model": "metainfo.source", "pk": 7632, "fields": {"orig_filename": "Osvald_Frantisek-Richard_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 265", "author": "", "orig_id": 1409331}}, {"model": "metainfo.source", "pk": 7633, "fields": {"orig_filename": "Oswald_Franz_1790_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 265f.", "author": "", "orig_id": 1409332}}, {"model": "metainfo.source", "pk": 7634, "fields": {"orig_filename": "Osztenburg_Julius_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266", "author": "", "orig_id": 1409333}}, {"model": "metainfo.source", "pk": 7635, "fields": {"orig_filename": "Otremba_Karol-Fryderyk-August_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266", "author": "", "orig_id": 1409334}}, {"model": "metainfo.source", "pk": 7636, "fields": {"orig_filename": "Ottava_Ignac_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268", "author": "", "orig_id": 1409339}}, {"model": "metainfo.source", "pk": 7637, "fields": {"orig_filename": "Ottel_Klemens_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268", "author": "", "orig_id": 1409340}}, {"model": "metainfo.source", "pk": 7638, "fields": {"orig_filename": "Ottendorfer_Oswald_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 268f.", "author": "", "orig_id": 1409341}}, {"model": "metainfo.source", "pk": 7639, "fields": {"orig_filename": "Ottenfels-Gschwind_Franz_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 269", "author": "", "orig_id": 1412812}}, {"model": "metainfo.source", "pk": 7640, "fields": {"orig_filename": "Ottenthaler-Ottenthal_Emil_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 269f.", "author": "", "orig_id": 1409342}}, {"model": "metainfo.source", "pk": 7641, "fields": {"orig_filename": "Ottenthaler-Ottenthal_Kaspar_1780_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 270", "author": "", "orig_id": 1409343}}, {"model": "metainfo.source", "pk": 7642, "fields": {"orig_filename": "Otto-Kirchberg_Anton_1760_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409347}}, {"model": "metainfo.source", "pk": 7643, "fields": {"orig_filename": "Otto-Ottenfeld_Maximilian_1777_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409348}}, {"model": "metainfo.source", "pk": 7644, "fields": {"orig_filename": "Otto_Jan_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 271", "author": "", "orig_id": 1409345}}, {"model": "metainfo.source", "pk": 7645, "fields": {"orig_filename": "Otto_Johann-Karl-Theodor_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 271", "author": "", "orig_id": 1409346}}, {"model": "metainfo.source", "pk": 7646, "fields": {"orig_filename": "Otto__1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 270f.", "author": "", "orig_id": 1409344}}, {"model": "metainfo.source", "pk": 7647, "fields": {"orig_filename": "Ott_Adolf_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 266f.", "author": "", "orig_id": 1409335}}, {"model": "metainfo.source", "pk": 7648, "fields": {"orig_filename": "Ott_Emil_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267", "author": "", "orig_id": 1409336}}, {"model": "metainfo.source", "pk": 7649, "fields": {"orig_filename": "Ott_Josef-Friedrich_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267", "author": "", "orig_id": 1409337}}, {"model": "metainfo.source", "pk": 7650, "fields": {"orig_filename": "Ott_Karl_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 267f.", "author": "", "orig_id": 1409338}}, {"model": "metainfo.source", "pk": 7651, "fields": {"orig_filename": "Ovari_Kelemen_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272", "author": "", "orig_id": 1409349}}, {"model": "metainfo.source", "pk": 7652, "fields": {"orig_filename": "Ovary_Lipot_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 272f.", "author": "", "orig_id": 1409350}}, {"model": "metainfo.source", "pk": 7653, "fields": {"orig_filename": "Ozarkevyc_Ivan_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 273", "author": "", "orig_id": 1409417}}, {"model": "metainfo.source", "pk": 7654, "fields": {"orig_filename": "Ozegovic-Barlabasevec-Bela_Metel_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409419}}, {"model": "metainfo.source", "pk": 7655, "fields": {"orig_filename": "Ozegovic-Barlabasevec_Mirko_1775_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 273", "author": "", "orig_id": 1409418}}, {"model": "metainfo.source", "pk": 7656, "fields": {"orig_filename": "Ozlberger_Karl_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409420}}, {"model": "metainfo.source", "pk": 7657, "fields": {"orig_filename": "Ozvald_Karel_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274", "author": "", "orig_id": 1409421}}, {"model": "metainfo.source", "pk": 7658, "fields": {"orig_filename": "Paal_Karl_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 274f.", "author": "", "orig_id": 1409422}}, {"model": "metainfo.source", "pk": 7659, "fields": {"orig_filename": "Paal_Laszlo_1846_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275", "author": "", "orig_id": 1409423}}, {"model": "metainfo.source", "pk": 7660, "fields": {"orig_filename": "Paar_Alois_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275", "author": "", "orig_id": 1409424}}, {"model": "metainfo.source", "pk": 7661, "fields": {"orig_filename": "Paar_Eduard_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 275f.", "author": "", "orig_id": 1409425}}, {"model": "metainfo.source", "pk": 7662, "fields": {"orig_filename": "Paar_Hermann_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409426}}, {"model": "metainfo.source", "pk": 7663, "fields": {"orig_filename": "Paasdorfer_Leopold_1856_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409427}}, {"model": "metainfo.source", "pk": 7664, "fields": {"orig_filename": "Pabisch_Franz-Josef_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276", "author": "", "orig_id": 1409428}}, {"model": "metainfo.source", "pk": 7665, "fields": {"orig_filename": "Pablasek_Matthias_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 276f.", "author": "", "orig_id": 1409429}}, {"model": "metainfo.source", "pk": 7666, "fields": {"orig_filename": "Pabst_Heinrich-Wilhelm_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 277", "author": "", "orig_id": 1409430}}, {"model": "metainfo.source", "pk": 7667, "fields": {"orig_filename": "Pabst_Johann-Heinrich_1785_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278", "author": "", "orig_id": 1409432}}, {"model": "metainfo.source", "pk": 7668, "fields": {"orig_filename": "Pabst_Johann_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 277f.", "author": "", "orig_id": 1409431}}, {"model": "metainfo.source", "pk": 7669, "fields": {"orig_filename": "Pacak_Bedrich_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278", "author": "", "orig_id": 1409433}}, {"model": "metainfo.source", "pk": 7670, "fields": {"orig_filename": "Pacal_Franz_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 278f.", "author": "", "orig_id": 1409434}}, {"model": "metainfo.source", "pk": 7671, "fields": {"orig_filename": "Pacchioni_Giovanni_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409435}}, {"model": "metainfo.source", "pk": 7672, "fields": {"orig_filename": "Pace-Friedensberg_Anton_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409436}}, {"model": "metainfo.source", "pk": 7673, "fields": {"orig_filename": "Pacher-Theinburg_Gustav_1839_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281", "author": "", "orig_id": 1408063}}, {"model": "metainfo.source", "pk": 7674, "fields": {"orig_filename": "Pacher-Theinburg_Johann-Martin_1772_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281", "author": "", "orig_id": 1408064}}, {"model": "metainfo.source", "pk": 7675, "fields": {"orig_filename": "Pacher-Theinburg_Paul_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 281f.", "author": "", "orig_id": 1408065}}, {"model": "metainfo.source", "pk": 7676, "fields": {"orig_filename": "Pacher_Anton_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279", "author": "", "orig_id": 1409437}}, {"model": "metainfo.source", "pk": 7677, "fields": {"orig_filename": "Pacher_David_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 279f.", "author": "", "orig_id": 1409438}}, {"model": "metainfo.source", "pk": 7678, "fields": {"orig_filename": "Pacher_Josef-Adalbert_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 280", "author": "", "orig_id": 1409439}}, {"model": "metainfo.source", "pk": 7679, "fields": {"orig_filename": "Pacher_Raphael_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 280", "author": "", "orig_id": 1408062}}, {"model": "metainfo.source", "pk": 7680, "fields": {"orig_filename": "Pachinger_Anton-Maximilian_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 282", "author": "", "orig_id": 1408066}}, {"model": "metainfo.source", "pk": 7681, "fields": {"orig_filename": "Pachler_Faust_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 282f.", "author": "", "orig_id": 1408067}}, {"model": "metainfo.source", "pk": 7682, "fields": {"orig_filename": "Pachler_Marie-Leopoldine_1794_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283", "author": "", "orig_id": 1408068}}, {"model": "metainfo.source", "pk": 7683, "fields": {"orig_filename": "Pachmann_Theodor_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283", "author": "", "orig_id": 1408069}}, {"model": "metainfo.source", "pk": 7684, "fields": {"orig_filename": "Pachner-Eggenstorf_Anton_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 283f.", "author": "", "orig_id": 1408070}}, {"model": "metainfo.source", "pk": 7685, "fields": {"orig_filename": "Pachta-Rayhofen_Johann-Josef-Philipp_1723_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284", "author": "", "orig_id": 1408071}}, {"model": "metainfo.source", "pk": 7686, "fields": {"orig_filename": "Pacic_Jovan_1771_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284", "author": "", "orig_id": 1408072}}, {"model": "metainfo.source", "pk": 7687, "fields": {"orig_filename": "Packeny-Kilstaedten_Friedrich_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 284f.", "author": "", "orig_id": 1408073}}, {"model": "metainfo.source", "pk": 7688, "fields": {"orig_filename": "Pacold_Jiri_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408074}}, {"model": "metainfo.source", "pk": 7689, "fields": {"orig_filename": "Padiaur_Karl_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408075}}, {"model": "metainfo.source", "pk": 7690, "fields": {"orig_filename": "Padovan_Giglio_1836_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285", "author": "", "orig_id": 1408076}}, {"model": "metainfo.source", "pk": 7691, "fields": {"orig_filename": "Padovan_Guglielmo_1859_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 285f.", "author": "", "orig_id": 1408077}}, {"model": "metainfo.source", "pk": 7692, "fields": {"orig_filename": "Pagaczewski_Julian_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 286", "author": "", "orig_id": 1408078}}, {"model": "metainfo.source", "pk": 7693, "fields": {"orig_filename": "Paganetti_Gustav_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 286f.", "author": "", "orig_id": 1408079}}, {"model": "metainfo.source", "pk": 7694, "fields": {"orig_filename": "Pagani-Cesa_Giuseppe-Urbano_1757_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 287f.", "author": "", "orig_id": 1408081}}, {"model": "metainfo.source", "pk": 7695, "fields": {"orig_filename": "Oeri-Fueloep_Gabor_1739_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210f.", "author": "", "orig_id": 1408697}}, {"model": "metainfo.source", "pk": 7696, "fields": {"orig_filename": "Oerley_Leopold_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 211", "author": "", "orig_id": 1408698}}, {"model": "metainfo.source", "pk": 7697, "fields": {"orig_filename": "Oerley_Robert_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 211f.", "author": "", "orig_id": 1408699}}, {"model": "metainfo.source", "pk": 7698, "fields": {"orig_filename": "Oer_Franz_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210", "author": "", "orig_id": 1408695}}, {"model": "metainfo.source", "pk": 7699, "fields": {"orig_filename": "Oesterlein_Nikolaus-Johannes_1841_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 212f.", "author": "", "orig_id": 1408701}}, {"model": "metainfo.source", "pk": 7700, "fields": {"orig_filename": "Oesterlein_Nikolaus_1804_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 212", "author": "", "orig_id": 1408700}}, {"model": "metainfo.source", "pk": 7701, "fields": {"orig_filename": "Oesterreich_Franz_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408702}}, {"model": "metainfo.source", "pk": 7702, "fields": {"orig_filename": "Oettel_Karl_1767_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213", "author": "", "orig_id": 1408704}}, {"model": "metainfo.source", "pk": 7703, "fields": {"orig_filename": "Oettinger_Jozef_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 213f.", "author": "", "orig_id": 1408774}}, {"model": "metainfo.source", "pk": 7704, "fields": {"orig_filename": "Oettl_Johann_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 214", "author": "", "orig_id": 1408775}}, {"model": "metainfo.source", "pk": 7705, "fields": {"orig_filename": "Oetvoes_Agoston_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 214", "author": "", "orig_id": 1408776}}, {"model": "metainfo.source", "pk": 7706, "fields": {"orig_filename": "Ofenheim-Ponteuxin_Viktor_1820_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 215", "author": "", "orig_id": 1408777}}, {"model": "metainfo.source", "pk": 7707, "fields": {"orig_filename": "Offermann_Karl_1792_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 215f.", "author": "", "orig_id": 1408778}}, {"model": "metainfo.source", "pk": 7708, "fields": {"orig_filename": "Offermann_Karl_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408779}}, {"model": "metainfo.source", "pk": 7709, "fields": {"orig_filename": "Offermann_Karl_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408780}}, {"model": "metainfo.source", "pk": 7710, "fields": {"orig_filename": "Offermann_Theodor_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216", "author": "", "orig_id": 1408781}}, {"model": "metainfo.source", "pk": 7711, "fields": {"orig_filename": "Offner_Johann-Michael_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 216f.", "author": "", "orig_id": 1408782}}, {"model": "metainfo.source", "pk": 7712, "fields": {"orig_filename": "Ofner_Hermann_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217", "author": "", "orig_id": 1408783}}, {"model": "metainfo.source", "pk": 7713, "fields": {"orig_filename": "Ofner_Johann_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217", "author": "", "orig_id": 1408784}}, {"model": "metainfo.source", "pk": 7714, "fields": {"orig_filename": "Ofner_Julius_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 217f.", "author": "", "orig_id": 1408785}}, {"model": "metainfo.source", "pk": 7715, "fields": {"orig_filename": "Ogrinec_Josip_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 218", "author": "", "orig_id": 1408786}}, {"model": "metainfo.source", "pk": 7716, "fields": {"orig_filename": "Ogrizovic_Milan_1877_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 218f.", "author": "", "orig_id": 1408787}}, {"model": "metainfo.source", "pk": 7717, "fields": {"orig_filename": "Oheral_Jan_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 219", "author": "", "orig_id": 1408788}}, {"model": "metainfo.source", "pk": 7718, "fields": {"orig_filename": "Ohligs_Bernhard-Wilhelm_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 219f.", "author": "", "orig_id": 1408789}}, {"model": "metainfo.source", "pk": 7719, "fields": {"orig_filename": "Ohmann_Friedrich_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 220", "author": "", "orig_id": 1408790}}, {"model": "metainfo.source", "pk": 7720, "fields": {"orig_filename": "Ohonovskyj_Omeljan-Mychajlovyc_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 220f.", "author": "", "orig_id": 1408791}}, {"model": "metainfo.source", "pk": 7721, "fields": {"orig_filename": "Ohorn_Anton_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 221", "author": "", "orig_id": 1408792}}, {"model": "metainfo.source", "pk": 7722, "fields": {"orig_filename": "Ohrfandl_Heinrich-Karl_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 221f.", "author": "", "orig_id": 1408793}}, {"model": "metainfo.source", "pk": 7723, "fields": {"orig_filename": "Ohrwalder_Josef_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222", "author": "", "orig_id": 1408794}}, {"model": "metainfo.source", "pk": 7724, "fields": {"orig_filename": "Oitzinger_Anton_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222", "author": "", "orig_id": 1408795}}, {"model": "metainfo.source", "pk": 7725, "fields": {"orig_filename": "Okon_Eugeniusz_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 222f.", "author": "", "orig_id": 1408796}}, {"model": "metainfo.source", "pk": 7726, "fields": {"orig_filename": "Okretic_Ivan_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408866}}, {"model": "metainfo.source", "pk": 7727, "fields": {"orig_filename": "Okrugic_Ilija_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223", "author": "", "orig_id": 1408867}}, {"model": "metainfo.source", "pk": 7728, "fields": {"orig_filename": "Okunevskyj_Theophil_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 223f.", "author": "", "orig_id": 1408869}}, {"model": "metainfo.source", "pk": 7729, "fields": {"orig_filename": "Olah_Gusztav_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224", "author": "", "orig_id": 1408870}}, {"model": "metainfo.source", "pk": 7730, "fields": {"orig_filename": "Olariu_Iuliu-Iosif_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224", "author": "", "orig_id": 1408871}}, {"model": "metainfo.source", "pk": 7731, "fields": {"orig_filename": "Olbrich_Josef-Maria_1867_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 224ff.", "author": "", "orig_id": 1408872}}, {"model": "metainfo.source", "pk": 7732, "fields": {"orig_filename": "Oldenburg_Elimar-Anton-Guenther-Friedrich_1844_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226", "author": "", "orig_id": 1408874}}, {"model": "metainfo.source", "pk": 7733, "fields": {"orig_filename": "Oldenburg_Rudolf_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226", "author": "", "orig_id": 1408873}}, {"model": "metainfo.source", "pk": 7734, "fields": {"orig_filename": "Olearski_Kazimierz_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 226f.", "author": "", "orig_id": 1408875}}, {"model": "metainfo.source", "pk": 7735, "fields": {"orig_filename": "Olesnyckyj_Evhen_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 227", "author": "", "orig_id": 1408876}}, {"model": "metainfo.source", "pk": 7736, "fields": {"orig_filename": "Olexik_Paul_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 227f.", "author": "", "orig_id": 1408877}}, {"model": "metainfo.source", "pk": 7737, "fields": {"orig_filename": "Oliva_Giovanni_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228", "author": "", "orig_id": 1408878}}, {"model": "metainfo.source", "pk": 7738, "fields": {"orig_filename": "Olschowy_Julius_1862_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228", "author": "", "orig_id": 1408879}}, {"model": "metainfo.source", "pk": 7739, "fields": {"orig_filename": "Olszewski_Karol-Stanislaw_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 228f.", "author": "", "orig_id": 1408880}}, {"model": "metainfo.source", "pk": 7740, "fields": {"orig_filename": "Olszewski_Michal_1868_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 229", "author": "", "orig_id": 1408881}}, {"model": "metainfo.source", "pk": 7741, "fields": {"orig_filename": "Olynch-Town_Karl_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230", "author": "", "orig_id": 1408883}}, {"model": "metainfo.source", "pk": 7742, "fields": {"orig_filename": "Omerza_Franc_1885_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230", "author": "", "orig_id": 1408884}}, {"model": "metainfo.source", "pk": 7743, "fields": {"orig_filename": "Onciul_Dimitrie_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 230f.", "author": "", "orig_id": 1408885}}, {"model": "metainfo.source", "pk": 7744, "fields": {"orig_filename": "Onciul_Isidor_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408955}}, {"model": "metainfo.source", "pk": 7745, "fields": {"orig_filename": "Ondricek_Frantisek_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408956}}, {"model": "metainfo.source", "pk": 7746, "fields": {"orig_filename": "Ondrusek_Frantisek_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231", "author": "", "orig_id": 1408957}}, {"model": "metainfo.source", "pk": 7747, "fields": {"orig_filename": "Onken_Karl-Eduard_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 231f.", "author": "", "orig_id": 1408958}}, {"model": "metainfo.source", "pk": 7748, "fields": {"orig_filename": "Onodi_Adolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232", "author": "", "orig_id": 1408959}}, {"model": "metainfo.source", "pk": 7749, "fields": {"orig_filename": "Ontl_August_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232", "author": "", "orig_id": 1408960}}, {"model": "metainfo.source", "pk": 7750, "fields": {"orig_filename": "Opeka_Mihael_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 232f.", "author": "", "orig_id": 1408961}}, {"model": "metainfo.source", "pk": 7751, "fields": {"orig_filename": "Opel_Kamillo_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 233", "author": "", "orig_id": 1408962}}, {"model": "metainfo.source", "pk": 7752, "fields": {"orig_filename": "Opitz_Ambros_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 233f.", "author": "", "orig_id": 1408963}}, {"model": "metainfo.source", "pk": 7753, "fields": {"orig_filename": "Opitz_Coelestinus_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234", "author": "", "orig_id": 1408964}}, {"model": "metainfo.source", "pk": 7754, "fields": {"orig_filename": "Opitz_Heinrich_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234", "author": "", "orig_id": 1408965}}, {"model": "metainfo.source", "pk": 7755, "fields": {"orig_filename": "Opiz_Georg-Emanuel_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 234f.", "author": "", "orig_id": 1408966}}, {"model": "metainfo.source", "pk": 7756, "fields": {"orig_filename": "Opiz_Philipp-Maximilian_1787_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235", "author": "", "orig_id": 1408967}}, {"model": "metainfo.source", "pk": 7757, "fields": {"orig_filename": "Opolski_Stanislaw_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235", "author": "", "orig_id": 1408968}}, {"model": "metainfo.source", "pk": 7758, "fields": {"orig_filename": "Opolsky_Jan_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 235f.", "author": "", "orig_id": 1408969}}, {"model": "metainfo.source", "pk": 7759, "fields": {"orig_filename": "Oppenheimer_Felix-Hermann_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238", "author": "", "orig_id": 1408976}}, {"model": "metainfo.source", "pk": 7760, "fields": {"orig_filename": "Oppenheim_Adolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236", "author": "", "orig_id": 1408970}}, {"model": "metainfo.source", "pk": 7761, "fields": {"orig_filename": "Oppenheim_David_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236", "author": "", "orig_id": 1408971}}, {"model": "metainfo.source", "pk": 7762, "fields": {"orig_filename": "Oppenheim_Joachim_1832_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 236f.", "author": "", "orig_id": 1408972}}, {"model": "metainfo.source", "pk": 7763, "fields": {"orig_filename": "Oppenheim_Josef_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 237", "author": "", "orig_id": 1408973}}, {"model": "metainfo.source", "pk": 7764, "fields": {"orig_filename": "Oppenheim_Moritz_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 237", "author": "", "orig_id": 1408974}}, {"model": "metainfo.source", "pk": 7765, "fields": {"orig_filename": "Oppenheim_Samuel_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238", "author": "", "orig_id": 1408975}}, {"model": "metainfo.source", "pk": 7766, "fields": {"orig_filename": "Oppolzer_Egon_1869_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 238f.", "author": "", "orig_id": 1408977}}, {"model": "metainfo.source", "pk": 7767, "fields": {"orig_filename": "Oppolzer_Johann_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 239", "author": "", "orig_id": 1409043}}, {"model": "metainfo.source", "pk": 7768, "fields": {"orig_filename": "Oppolzer_Theodor_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 239f.", "author": "", "orig_id": 1409044}}, {"model": "metainfo.source", "pk": 7769, "fields": {"orig_filename": "Opydo_Franciszek_1856_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 240", "author": "", "orig_id": 1409046}}, {"model": "metainfo.source", "pk": 7770, "fields": {"orig_filename": "Orazen_Ivan_1869_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 240f.", "author": "", "orig_id": 1409045}}, {"model": "metainfo.source", "pk": 7771, "fields": {"orig_filename": "Orban-Lengyelfalva_Balazs_1830_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241", "author": "", "orig_id": 1409047}}, {"model": "metainfo.source", "pk": 7772, "fields": {"orig_filename": "Orbok-Koekoesd_Mor_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241f.", "author": "", "orig_id": 1409049}}, {"model": "metainfo.source", "pk": 7773, "fields": {"orig_filename": "Orbok_Lorand_1884_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 241", "author": "", "orig_id": 1409048}}, {"model": "metainfo.source", "pk": 7774, "fields": {"orig_filename": "Orczy-Orczi_Bela_1822_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409050}}, {"model": "metainfo.source", "pk": 7775, "fields": {"orig_filename": "Ordody-Ordod_Lajos_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409051}}, {"model": "metainfo.source", "pk": 7776, "fields": {"orig_filename": "Ordody-Ordod_Pal_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409052}}, {"model": "metainfo.source", "pk": 7777, "fields": {"orig_filename": "Orefici_Francesco_1771_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 242", "author": "", "orig_id": 1409053}}, {"model": "metainfo.source", "pk": 7778, "fields": {"orig_filename": "Orel_Dobroslav_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243", "author": "", "orig_id": 1409054}}, {"model": "metainfo.source", "pk": 7779, "fields": {"orig_filename": "Orel_Eduard_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243", "author": "", "orig_id": 1409055}}, {"model": "metainfo.source", "pk": 7780, "fields": {"orig_filename": "Orel_Eduard_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 243f.", "author": "", "orig_id": 1409056}}, {"model": "metainfo.source", "pk": 7781, "fields": {"orig_filename": "Orel_Johann_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244", "author": "", "orig_id": 1409057}}, {"model": "metainfo.source", "pk": 7782, "fields": {"orig_filename": "Orel_Josef_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244", "author": "", "orig_id": 1409058}}, {"model": "metainfo.source", "pk": 7783, "fields": {"orig_filename": "Orel_Walther_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 244f.", "author": "", "orig_id": 1409059}}, {"model": "metainfo.source", "pk": 7784, "fields": {"orig_filename": "Orges_Hermann_1821_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245", "author": "", "orig_id": 1409060}}, {"model": "metainfo.source", "pk": 7785, "fields": {"orig_filename": "Orgler_Flavian_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245", "author": "", "orig_id": 1409061}}, {"model": "metainfo.source", "pk": 7786, "fields": {"orig_filename": "Orlai-Petrich_Soma_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 245f.", "author": "", "orig_id": 1409062}}, {"model": "metainfo.source", "pk": 7787, "fields": {"orig_filename": "Orlandini_Giovanni_1804_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246", "author": "", "orig_id": 1409063}}, {"model": "metainfo.source", "pk": 7788, "fields": {"orig_filename": "Orlay_Janos_1770_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246", "author": "", "orig_id": 1409064}}, {"model": "metainfo.source", "pk": 7789, "fields": {"orig_filename": "Orliczek_Alois_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 246f.", "author": "", "orig_id": 1409065}}, {"model": "metainfo.source", "pk": 7790, "fields": {"orig_filename": "Orlik_Emil_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 247", "author": "", "orig_id": 1409140}}, {"model": "metainfo.source", "pk": 7791, "fields": {"orig_filename": "Ormis_Samuel_1824_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 247f.", "author": "", "orig_id": 1409141}}, {"model": "metainfo.source", "pk": 7792, "fields": {"orig_filename": "Ormody-Ormod_Vilmos_1838_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409142}}, {"model": "metainfo.source", "pk": 7793, "fields": {"orig_filename": "Ormos-Csicser_Zsigmond_1813_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409143}}, {"model": "metainfo.source", "pk": 7794, "fields": {"orig_filename": "Ornig_Josef_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248", "author": "", "orig_id": 1409144}}, {"model": "metainfo.source", "pk": 7795, "fields": {"orig_filename": "Ornstein_Jakob-Meschulam_1775_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 248f.", "author": "", "orig_id": 1409145}}, {"model": "metainfo.source", "pk": 7796, "fields": {"orig_filename": "Ornstein_Moses_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 249", "author": "", "orig_id": 1409146}}, {"model": "metainfo.source", "pk": 7797, "fields": {"orig_filename": "Nuckowski_Jan_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175f.", "author": "", "orig_id": 1408315}}, {"model": "metainfo.source", "pk": 7798, "fields": {"orig_filename": "Nuechtern_August_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 176", "author": "", "orig_id": 1408316}}, {"model": "metainfo.source", "pk": 7799, "fields": {"orig_filename": "Nuell_Eduard_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 176f.", "author": "", "orig_id": 1408317}}, {"model": "metainfo.source", "pk": 7800, "fields": {"orig_filename": "Nuic_Andjeo_1850_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408319}}, {"model": "metainfo.source", "pk": 7801, "fields": {"orig_filename": "Nuic_Arkandjeo_1896_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408318}}, {"model": "metainfo.source", "pk": 7802, "fields": {"orig_filename": "Nunnenmacher-Roellfeld_Ludwig_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 177", "author": "", "orig_id": 1408320}}, {"model": "metainfo.source", "pk": 7803, "fields": {"orig_filename": "Nusbaum-Hilarowicz_Jozef_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178", "author": "", "orig_id": 1408321}}, {"model": "metainfo.source", "pk": 7804, "fields": {"orig_filename": "Nussbaumer_Michael_1785_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178", "author": "", "orig_id": 1408322}}, {"model": "metainfo.source", "pk": 7805, "fields": {"orig_filename": "Nussbaumer_Otto_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 178f.", "author": "", "orig_id": 1408323}}, {"model": "metainfo.source", "pk": 7806, "fields": {"orig_filename": "Nussbaumer_Thiemo_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408324}}, {"model": "metainfo.source", "pk": 7807, "fields": {"orig_filename": "Nusshard_Franz-Willibald_1785_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408325}}, {"model": "metainfo.source", "pk": 7808, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Adolf_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179", "author": "", "orig_id": 1408326}}, {"model": "metainfo.source", "pk": 7809, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Albert_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 179f.", "author": "", "orig_id": 1408327}}, {"model": "metainfo.source", "pk": 7810, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Antal_1803_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180", "author": "", "orig_id": 1408328}}, {"model": "metainfo.source", "pk": 7811, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Jenoe_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180", "author": "", "orig_id": 1408329}}, {"model": "metainfo.source", "pk": 7812, "fields": {"orig_filename": "Nyary-Nyaregyhaza_Pal_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 180f.", "author": "", "orig_id": 1408330}}, {"model": "metainfo.source", "pk": 7813, "fields": {"orig_filename": "Nydrle_Antonin_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181", "author": "", "orig_id": 1408331}}, {"model": "metainfo.source", "pk": 7814, "fields": {"orig_filename": "Nyiri-Szekely_Alexander_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181", "author": "", "orig_id": 1408400}}, {"model": "metainfo.source", "pk": 7815, "fields": {"orig_filename": "Nyiry_Istvan_1776_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 181f.", "author": "", "orig_id": 1408401}}, {"model": "metainfo.source", "pk": 7816, "fields": {"orig_filename": "Nyulassy_Anton_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182", "author": "", "orig_id": 1408402}}, {"model": "metainfo.source", "pk": 7817, "fields": {"orig_filename": "Obach_Theobald_1843_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182", "author": "", "orig_id": 1408403}}, {"model": "metainfo.source", "pk": 7818, "fields": {"orig_filename": "Obalinski_Alfred_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 182f.", "author": "", "orig_id": 1408404}}, {"model": "metainfo.source", "pk": 7819, "fields": {"orig_filename": "Obentraut_Adolf_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 183", "author": "", "orig_id": 1408405}}, {"model": "metainfo.source", "pk": 7820, "fields": {"orig_filename": "Obentraut_Johann-Karl_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 183f.", "author": "", "orig_id": 1408406}}, {"model": "metainfo.source", "pk": 7821, "fields": {"orig_filename": "Oberascher_Emmerich_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184", "author": "", "orig_id": 1408407}}, {"model": "metainfo.source", "pk": 7822, "fields": {"orig_filename": "Oberdank_Wilhelm_1858_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184", "author": "", "orig_id": 1408409}}, {"model": "metainfo.source", "pk": 7823, "fields": {"orig_filename": "Oberegger_Matthaeus_1829_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 184f.", "author": "", "orig_id": 1408410}}, {"model": "metainfo.source", "pk": 7824, "fields": {"orig_filename": "Oberer_Franz_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408411}}, {"model": "metainfo.source", "pk": 7825, "fields": {"orig_filename": "Oberforcher_Josef_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408412}}, {"model": "metainfo.source", "pk": 7826, "fields": {"orig_filename": "Oberhauser_Rudolf_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185", "author": "", "orig_id": 1408413}}, {"model": "metainfo.source", "pk": 7827, "fields": {"orig_filename": "Oberhummer_Eugen_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 185f.", "author": "", "orig_id": 1408414}}, {"model": "metainfo.source", "pk": 7828, "fields": {"orig_filename": "Oberkamp_Rudolf_1825_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 186", "author": "", "orig_id": 1408415}}, {"model": "metainfo.source", "pk": 7829, "fields": {"orig_filename": "Oberkofler_Anton_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 186f.", "author": "", "orig_id": 1408416}}, {"model": "metainfo.source", "pk": 7830, "fields": {"orig_filename": "Oberlaender_Alfred_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408417}}, {"model": "metainfo.source", "pk": 7831, "fields": {"orig_filename": "Oberlaender_Moritz-Jakob_1831_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408418}}, {"model": "metainfo.source", "pk": 7832, "fields": {"orig_filename": "Oberleithner_Karl_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 187", "author": "", "orig_id": 1408419}}, {"model": "metainfo.source", "pk": 7833, "fields": {"orig_filename": "Oberleithner_Max_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408420}}, {"model": "metainfo.source", "pk": 7834, "fields": {"orig_filename": "Oberleitner_Andreas_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408421}}, {"model": "metainfo.source", "pk": 7835, "fields": {"orig_filename": "Oberleitner_Franz_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188", "author": "", "orig_id": 1408422}}, {"model": "metainfo.source", "pk": 7836, "fields": {"orig_filename": "Oberleitner_Karl_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 188f.", "author": "", "orig_id": 1408423}}, {"model": "metainfo.source", "pk": 7837, "fields": {"orig_filename": "Oberlercher_Paul-Gabriel_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 189", "author": "", "orig_id": 1408424}}, {"model": "metainfo.source", "pk": 7838, "fields": {"orig_filename": "Obermayer-Marnach_Kamillo_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191", "author": "", "orig_id": 1408497}}, {"model": "metainfo.source", "pk": 7839, "fields": {"orig_filename": "Obermayer-Rechtsinn_Wilhelm_1816_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191", "author": "", "orig_id": 1408498}}, {"model": "metainfo.source", "pk": 7840, "fields": {"orig_filename": "Obermayer_Albert_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 189f.", "author": "", "orig_id": 1408492}}, {"model": "metainfo.source", "pk": 7841, "fields": {"orig_filename": "Obermayer_August_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190", "author": "", "orig_id": 1408493}}, {"model": "metainfo.source", "pk": 7842, "fields": {"orig_filename": "Obermayer_Friedrich_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190", "author": "", "orig_id": 1408494}}, {"model": "metainfo.source", "pk": 7843, "fields": {"orig_filename": "Obermayer_Peter-Eugen_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 190f.", "author": "", "orig_id": 1408495}}, {"model": "metainfo.source", "pk": 7844, "fields": {"orig_filename": "Obermueller_Ignaz_1815_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 191f.", "author": "", "orig_id": 1408499}}, {"model": "metainfo.source", "pk": 7845, "fields": {"orig_filename": "Obermuellner_Adolf_1833_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 192", "author": "", "orig_id": 1408500}}, {"model": "metainfo.source", "pk": 7846, "fields": {"orig_filename": "Oberndorfer_Johann_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 192", "author": "", "orig_id": 1408502}}, {"model": "metainfo.source", "pk": 7847, "fields": {"orig_filename": "Obernyik_Karoly_1814_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408503}}, {"model": "metainfo.source", "pk": 7848, "fields": {"orig_filename": "Oberparleiter_Ignaz_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408504}}, {"model": "metainfo.source", "pk": 7849, "fields": {"orig_filename": "Oberrauch_Heinrich_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193", "author": "", "orig_id": 1408505}}, {"model": "metainfo.source", "pk": 7850, "fields": {"orig_filename": "Oberschall_Adolf_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 193f.", "author": "", "orig_id": 1408506}}, {"model": "metainfo.source", "pk": 7851, "fields": {"orig_filename": "Oberschall_Pal_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194", "author": "", "orig_id": 1408507}}, {"model": "metainfo.source", "pk": 7852, "fields": {"orig_filename": "Obersteiner_Heinrich_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194", "author": "", "orig_id": 1408508}}, {"model": "metainfo.source", "pk": 7853, "fields": {"orig_filename": "Obersteiner_Johann_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 194f.", "author": "", "orig_id": 1408509}}, {"model": "metainfo.source", "pk": 7854, "fields": {"orig_filename": "Obersteiner_Ludwig_1899_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195", "author": "", "orig_id": 1408510}}, {"model": "metainfo.source", "pk": 7855, "fields": {"orig_filename": "Oberstolz_Rudolf_1865_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195", "author": "", "orig_id": 1408511}}, {"model": "metainfo.source", "pk": 7856, "fields": {"orig_filename": "Obertimpfler_Karl_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 196", "author": "", "orig_id": 1408513}}, {"model": "metainfo.source", "pk": 7857, "fields": {"orig_filename": "Obert_Franz_1828_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 195f.", "author": "", "orig_id": 1408512}}, {"model": "metainfo.source", "pk": 7858, "fields": {"orig_filename": "Oberwalder_Jakob_1829_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 196f.", "author": "", "orig_id": 1408514}}, {"model": "metainfo.source", "pk": 7859, "fields": {"orig_filename": "Oberwalder_Oskar_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197", "author": "", "orig_id": 1408515}}, {"model": "metainfo.source", "pk": 7860, "fields": {"orig_filename": "Oberwalder_Thomas_1858_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197", "author": "", "orig_id": 1408516}}, {"model": "metainfo.source", "pk": 7861, "fields": {"orig_filename": "Oberweis_Josef_1826_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 197f.", "author": "", "orig_id": 1408517}}, {"model": "metainfo.source", "pk": 7862, "fields": {"orig_filename": "Oberziner_Giovanni-Amennone_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408584}}, {"model": "metainfo.source", "pk": 7863, "fields": {"orig_filename": "Obhlidal_Thomas_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198", "author": "", "orig_id": 1408586}}, {"model": "metainfo.source", "pk": 7864, "fields": {"orig_filename": "Oblak_Vatroslav_1864_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 198f.", "author": "", "orig_id": 1408587}}, {"model": "metainfo.source", "pk": 7865, "fields": {"orig_filename": "Obminski_Tadeusz_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 199f.", "author": "", "orig_id": 1408588}}, {"model": "metainfo.source", "pk": 7866, "fields": {"orig_filename": "Oborny_Adolf_1840_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200", "author": "", "orig_id": 1408589}}, {"model": "metainfo.source", "pk": 7867, "fields": {"orig_filename": "Obrist_Johann-Georg_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200", "author": "", "orig_id": 1408591}}, {"model": "metainfo.source", "pk": 7868, "fields": {"orig_filename": "Obrist_Walther_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 200f.", "author": "", "orig_id": 1408592}}, {"model": "metainfo.source", "pk": 7869, "fields": {"orig_filename": "Obrovsky_Jakub_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201", "author": "", "orig_id": 1408593}}, {"model": "metainfo.source", "pk": 7870, "fields": {"orig_filename": "Obruca_Rudolf_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201", "author": "", "orig_id": 1412810}}, {"model": "metainfo.source", "pk": 7871, "fields": {"orig_filename": "Obrzut_Andrzej_1854_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 201f.", "author": "", "orig_id": 1408594}}, {"model": "metainfo.source", "pk": 7872, "fields": {"orig_filename": "Obweger_Jakob_1857_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408595}}, {"model": "metainfo.source", "pk": 7873, "fields": {"orig_filename": "Obwexer_Paul_1828_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408596}}, {"model": "metainfo.source", "pk": 7874, "fields": {"orig_filename": "Obwurzer_Herbert_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202", "author": "", "orig_id": 1408597}}, {"model": "metainfo.source", "pk": 7875, "fields": {"orig_filename": "Ochenkowski_Wladyslaw_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 202f.", "author": "", "orig_id": 1408598}}, {"model": "metainfo.source", "pk": 7876, "fields": {"orig_filename": "Ochrymovyc_Ksenofont_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 203", "author": "", "orig_id": 1408599}}, {"model": "metainfo.source", "pk": 7877, "fields": {"orig_filename": "Ochsenheimer_Ferdinand_1767_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 203f.", "author": "", "orig_id": 1408600}}, {"model": "metainfo.source", "pk": 7878, "fields": {"orig_filename": "Ochsenheimer_Friedrich_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204", "author": "", "orig_id": 1408601}}, {"model": "metainfo.source", "pk": 7879, "fields": {"orig_filename": "Ocsvay_Ferenc_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204", "author": "", "orig_id": 1408602}}, {"model": "metainfo.source", "pk": 7880, "fields": {"orig_filename": "Odehnal_Franz_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 204f.", "author": "", "orig_id": 1408603}}, {"model": "metainfo.source", "pk": 7881, "fields": {"orig_filename": "Odelga_Adolf_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408604}}, {"model": "metainfo.source", "pk": 7882, "fields": {"orig_filename": "Odescalchi_Artur_1836_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408605}}, {"model": "metainfo.source", "pk": 7883, "fields": {"orig_filename": "Odkolek-Ujezd_Adolf_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205", "author": "", "orig_id": 1408606}}, {"model": "metainfo.source", "pk": 7884, "fields": {"orig_filename": "Odonell-Tyrconell_Heinrich-Lamoral_1802_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 205f.", "author": "", "orig_id": 1408607}}, {"model": "metainfo.source", "pk": 7885, "fields": {"orig_filename": "Odonell-Tyrconell_Maximilian-Karl_1812_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 206", "author": "", "orig_id": 1408682}}, {"model": "metainfo.source", "pk": 7886, "fields": {"orig_filename": "Odry-Pacser_Lehel_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 206f.", "author": "", "orig_id": 1408683}}, {"model": "metainfo.source", "pk": 7887, "fields": {"orig_filename": "Odrzywolski_Kazimierz_1860_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408684}}, {"model": "metainfo.source", "pk": 7888, "fields": {"orig_filename": "Odvalil_Frantisek_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408685}}, {"model": "metainfo.source", "pk": 7889, "fields": {"orig_filename": "Oehri_Franz-Josef_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207", "author": "", "orig_id": 1408686}}, {"model": "metainfo.source", "pk": 7890, "fields": {"orig_filename": "Oekroess_Balint_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 207f.", "author": "", "orig_id": 1408687}}, {"model": "metainfo.source", "pk": 7891, "fields": {"orig_filename": "Oellacher_Josef_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408689}}, {"model": "metainfo.source", "pk": 7892, "fields": {"orig_filename": "Oelwein_Arthur_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208f.", "author": "", "orig_id": 1408690}}, {"model": "metainfo.source", "pk": 7893, "fields": {"orig_filename": "Oelzelt-Newin_Anton_1817_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408693}}, {"model": "metainfo.source", "pk": 7894, "fields": {"orig_filename": "Oelzelt-Newin_Anton_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209f.", "author": "", "orig_id": 1408694}}, {"model": "metainfo.source", "pk": 7895, "fields": {"orig_filename": "Oelz_Josef-Anton_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408692}}, {"model": "metainfo.source", "pk": 7896, "fields": {"orig_filename": "Oelz_Josef_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 209", "author": "", "orig_id": 1408691}}, {"model": "metainfo.source", "pk": 7897, "fields": {"orig_filename": "Oereg_Janos_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 210", "author": "", "orig_id": 1408696}}, {"model": "metainfo.source", "pk": 7898, "fields": {"orig_filename": "Njegovan_Maximilian_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137f.", "author": "", "orig_id": 1409218}}, {"model": "metainfo.source", "pk": 7899, "fields": {"orig_filename": "Njegovan_Viktor_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138", "author": "", "orig_id": 1409219}}, {"model": "metainfo.source", "pk": 7900, "fields": {"orig_filename": "Nobel_Edmund_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138", "author": "", "orig_id": 1409220}}, {"model": "metainfo.source", "pk": 7901, "fields": {"orig_filename": "Nobel_Josef_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 138f.", "author": "", "orig_id": 1409221}}, {"model": "metainfo.source", "pk": 7902, "fields": {"orig_filename": "Nobile_Carlo_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 139", "author": "", "orig_id": 1409222}}, {"model": "metainfo.source", "pk": 7903, "fields": {"orig_filename": "Nobile_Peter_1774_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 139f.", "author": "", "orig_id": 1409223}}, {"model": "metainfo.source", "pk": 7904, "fields": {"orig_filename": "Nobili_Johann_1798_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 140f.", "author": "", "orig_id": 1409224}}, {"model": "metainfo.source", "pk": 7905, "fields": {"orig_filename": "Nobl_Gabor_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409225}}, {"model": "metainfo.source", "pk": 7906, "fields": {"orig_filename": "Nodilo_Natko_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409226}}, {"model": "metainfo.source", "pk": 7907, "fields": {"orig_filename": "Noe-Nordberg_Karl-Gustav_1798_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142f.", "author": "", "orig_id": 1409231}}, {"model": "metainfo.source", "pk": 7908, "fields": {"orig_filename": "Noerdling_Wilhelm_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143", "author": "", "orig_id": 1409304}}, {"model": "metainfo.source", "pk": 7909, "fields": {"orig_filename": "Noesslboeck_Ignaz_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143", "author": "", "orig_id": 1409305}}, {"model": "metainfo.source", "pk": 7910, "fields": {"orig_filename": "Noetel_Louis_1837_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 143f.", "author": "", "orig_id": 1409306}}, {"model": "metainfo.source", "pk": 7911, "fields": {"orig_filename": "Noetzl_Karl-Philipp_1789_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409307}}, {"model": "metainfo.source", "pk": 7912, "fields": {"orig_filename": "Noe_Franz_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 141", "author": "", "orig_id": 1409227}}, {"model": "metainfo.source", "pk": 7913, "fields": {"orig_filename": "Noe_Heinrich_1835_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409229}}, {"model": "metainfo.source", "pk": 7914, "fields": {"orig_filename": "Noe_Heinrich_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409228}}, {"model": "metainfo.source", "pk": 7915, "fields": {"orig_filename": "Noe_Oskar_1872_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 142", "author": "", "orig_id": 1409230}}, {"model": "metainfo.source", "pk": 7916, "fields": {"orig_filename": "Nogall_Johann_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409308}}, {"model": "metainfo.source", "pk": 7917, "fields": {"orig_filename": "Noggler_Anselm_1872_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144", "author": "", "orig_id": 1409309}}, {"model": "metainfo.source", "pk": 7918, "fields": {"orig_filename": "Noggler_Anton_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 144f.", "author": "", "orig_id": 1409310}}, {"model": "metainfo.source", "pk": 7919, "fields": {"orig_filename": "Noldin_Hieronymus_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 145", "author": "", "orig_id": 1409311}}, {"model": "metainfo.source", "pk": 7920, "fields": {"orig_filename": "Noldin_Josef_1888_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 145f.", "author": "", "orig_id": 1409312}}, {"model": "metainfo.source", "pk": 7921, "fields": {"orig_filename": "Nolli_Josip_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 146", "author": "", "orig_id": 1409313}}, {"model": "metainfo.source", "pk": 7922, "fields": {"orig_filename": "Noltsch_Wenzel-Ottokar_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 146f.", "author": "", "orig_id": 1409314}}, {"model": "metainfo.source", "pk": 7923, "fields": {"orig_filename": "Noorden_Karl_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 147", "author": "", "orig_id": 1409315}}, {"model": "metainfo.source", "pk": 7924, "fields": {"orig_filename": "Noot_Hugo_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 147f.", "author": "", "orig_id": 1409316}}, {"model": "metainfo.source", "pk": 7925, "fields": {"orig_filename": "Nopcsa-Felsoeszilvas_Franz_1815_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148", "author": "", "orig_id": 1409318}}, {"model": "metainfo.source", "pk": 7926, "fields": {"orig_filename": "Nopcsa-Felsoeszilvas_Franz_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148", "author": "", "orig_id": 1409317}}, {"model": "metainfo.source", "pk": 7927, "fields": {"orig_filename": "Norbert_Karl_1893_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 148f.", "author": "", "orig_id": 1409319}}, {"model": "metainfo.source", "pk": 7928, "fields": {"orig_filename": "Nordau_Max_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 149f.", "author": "", "orig_id": 1409321}}, {"model": "metainfo.source", "pk": 7929, "fields": {"orig_filename": "Nordio_Enrico_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 150", "author": "", "orig_id": 1409322}}, {"model": "metainfo.source", "pk": 7930, "fields": {"orig_filename": "Nordmann_Johann_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 150f.", "author": "", "orig_id": 1409323}}, {"model": "metainfo.source", "pk": 7931, "fields": {"orig_filename": "Nord_Wilhelm_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 149", "author": "", "orig_id": 1409320}}, {"model": "metainfo.source", "pk": 7932, "fields": {"orig_filename": "Noren_Heinrich-Suso-Johannes_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151", "author": "", "orig_id": 1409324}}, {"model": "metainfo.source", "pk": 7933, "fields": {"orig_filename": "Norini_Emil_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151", "author": "", "orig_id": 1409325}}, {"model": "metainfo.source", "pk": 7934, "fields": {"orig_filename": "Norman-Neruda_Ludwig_1864_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 151f.", "author": "", "orig_id": 1409327}}, {"model": "metainfo.source", "pk": 7935, "fields": {"orig_filename": "Normann-Friedenfels_Eduard_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152", "author": "", "orig_id": 1409395}}, {"model": "metainfo.source", "pk": 7936, "fields": {"orig_filename": "Norst_Anton_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152", "author": "", "orig_id": 1409396}}, {"model": "metainfo.source", "pk": 7937, "fields": {"orig_filename": "Nosievici_Stefan_1833_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 152f.", "author": "", "orig_id": 1409397}}, {"model": "metainfo.source", "pk": 7938, "fields": {"orig_filename": "Nosinich_Johann_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153", "author": "", "orig_id": 1409398}}, {"model": "metainfo.source", "pk": 7939, "fields": {"orig_filename": "Noska_Franz_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153", "author": "", "orig_id": 1409399}}, {"model": "metainfo.source", "pk": 7940, "fields": {"orig_filename": "Nossberger_Adolf_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 153f.", "author": "", "orig_id": 1409400}}, {"model": "metainfo.source", "pk": 7941, "fields": {"orig_filename": "Nossberger_Ferdinand_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154", "author": "", "orig_id": 1409401}}, {"model": "metainfo.source", "pk": 7942, "fields": {"orig_filename": "Nossek_Meinrad_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154", "author": "", "orig_id": 1409402}}, {"model": "metainfo.source", "pk": 7943, "fields": {"orig_filename": "Nossig_Alfred_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 154f.", "author": "", "orig_id": 1409403}}, {"model": "metainfo.source", "pk": 7944, "fields": {"orig_filename": "Nostitz-Rieneck_Albert-Franz_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155", "author": "", "orig_id": 1409405}}, {"model": "metainfo.source", "pk": 7945, "fields": {"orig_filename": "Nostitz-Rieneck_Albert_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155", "author": "", "orig_id": 1409404}}, {"model": "metainfo.source", "pk": 7946, "fields": {"orig_filename": "Nostitz-Rieneck_Erwein-Felix-Maria_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 155f.", "author": "", "orig_id": 1409406}}, {"model": "metainfo.source", "pk": 7947, "fields": {"orig_filename": "Nostitz-Rieneck_Hermann_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 156", "author": "", "orig_id": 1409407}}, {"model": "metainfo.source", "pk": 7948, "fields": {"orig_filename": "Nostitz-Rieneck_Johann_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 156", "author": "", "orig_id": 1409408}}, {"model": "metainfo.source", "pk": 7949, "fields": {"orig_filename": "Nostitz-Rieneck_Karl-Erwein_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409409}}, {"model": "metainfo.source", "pk": 7950, "fields": {"orig_filename": "Nostitz-Rieneck_Robert_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409410}}, {"model": "metainfo.source", "pk": 7951, "fields": {"orig_filename": "Noszlopy_Gaspar_1822_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157", "author": "", "orig_id": 1409411}}, {"model": "metainfo.source", "pk": 7952, "fields": {"orig_filename": "Nothnagel_Hermann_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 158", "author": "", "orig_id": 1409413}}, {"model": "metainfo.source", "pk": 7953, "fields": {"orig_filename": "Noth_Friedrich-Julius_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 157f.", "author": "", "orig_id": 1409412}}, {"model": "metainfo.source", "pk": 7954, "fields": {"orig_filename": "Nottebohm_Martin-Gustav_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 158f.", "author": "", "orig_id": 1409414}}, {"model": "metainfo.source", "pk": 7955, "fields": {"orig_filename": "Notz_Eugen_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159", "author": "", "orig_id": 1409415}}, {"model": "metainfo.source", "pk": 7956, "fields": {"orig_filename": "Nouseul_Johann_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159", "author": "", "orig_id": 1409416}}, {"model": "metainfo.source", "pk": 7957, "fields": {"orig_filename": "Novacek_Vojtech-Jaromir_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408135}}, {"model": "metainfo.source", "pk": 7958, "fields": {"orig_filename": "Novak-Arienti_Guido_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 168f.", "author": "", "orig_id": 1408229}}, {"model": "metainfo.source", "pk": 7959, "fields": {"orig_filename": "Novakova_Tereza_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169", "author": "", "orig_id": 1408230}}, {"model": "metainfo.source", "pk": 7960, "fields": {"orig_filename": "Novakovic_Stefan__1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169", "author": "", "orig_id": 1408231}}, {"model": "metainfo.source", "pk": 7961, "fields": {"orig_filename": "Novak_Anton_1848_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408136}}, {"model": "metainfo.source", "pk": 7962, "fields": {"orig_filename": "Novak_Anton_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 160", "author": "", "orig_id": 1408137}}, {"model": "metainfo.source", "pk": 7963, "fields": {"orig_filename": "Novak_Arne_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161", "author": "", "orig_id": 1408138}}, {"model": "metainfo.source", "pk": 7964, "fields": {"orig_filename": "Novak_Ernst_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161", "author": "", "orig_id": 1408139}}, {"model": "metainfo.source", "pk": 7965, "fields": {"orig_filename": "Novak_Ernst_1891_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 161f.", "author": "", "orig_id": 1408140}}, {"model": "metainfo.source", "pk": 7966, "fields": {"orig_filename": "Novak_Franc_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162", "author": "", "orig_id": 1408142}}, {"model": "metainfo.source", "pk": 7967, "fields": {"orig_filename": "Novak_Fran_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162", "author": "", "orig_id": 1408141}}, {"model": "metainfo.source", "pk": 7968, "fields": {"orig_filename": "Novak_Gustav_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 162f.", "author": "", "orig_id": 1408143}}, {"model": "metainfo.source", "pk": 7969, "fields": {"orig_filename": "Novak_Jan-Bedrich_1872_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 163", "author": "", "orig_id": 1408144}}, {"model": "metainfo.source", "pk": 7970, "fields": {"orig_filename": "Novak_Jan-Vaclav_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 163f.", "author": "", "orig_id": 1408145}}, {"model": "metainfo.source", "pk": 7971, "fields": {"orig_filename": "Novak_Janez_1756_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408146}}, {"model": "metainfo.source", "pk": 7972, "fields": {"orig_filename": "Novak_Johann_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408147}}, {"model": "metainfo.source", "pk": 7973, "fields": {"orig_filename": "Novak_Josef_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 164", "author": "", "orig_id": 1408148}}, {"model": "metainfo.source", "pk": 7974, "fields": {"orig_filename": "Novak_Josef_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408149}}, {"model": "metainfo.source", "pk": 7975, "fields": {"orig_filename": "Novak_Josip_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408150}}, {"model": "metainfo.source", "pk": 7976, "fields": {"orig_filename": "Novak_Julian_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165", "author": "", "orig_id": 1408151}}, {"model": "metainfo.source", "pk": 7977, "fields": {"orig_filename": "Novak_Karl-Friedrich_1882_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 165f.", "author": "", "orig_id": 1408152}}, {"model": "metainfo.source", "pk": 7978, "fields": {"orig_filename": "Novak_Lajos_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166", "author": "", "orig_id": 1408153}}, {"model": "metainfo.source", "pk": 7979, "fields": {"orig_filename": "Novak_Peter_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166", "author": "", "orig_id": 1408154}}, {"model": "metainfo.source", "pk": 7980, "fields": {"orig_filename": "Novak_Robert_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 166f.", "author": "", "orig_id": 1408225}}, {"model": "metainfo.source", "pk": 7981, "fields": {"orig_filename": "Novak_Vilko_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 167", "author": "", "orig_id": 1408226}}, {"model": "metainfo.source", "pk": 7982, "fields": {"orig_filename": "Novak_Vitezslav_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 167f.", "author": "", "orig_id": 1408227}}, {"model": "metainfo.source", "pk": 7983, "fields": {"orig_filename": "Novak_Vjenceslav_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 168", "author": "", "orig_id": 1408228}}, {"model": "metainfo.source", "pk": 7984, "fields": {"orig_filename": "Novic_Otocanin-Joksim_1806_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 169f.", "author": "", "orig_id": 1408232}}, {"model": "metainfo.source", "pk": 7985, "fields": {"orig_filename": "Novotny_Aurel_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170", "author": "", "orig_id": 1408233}}, {"model": "metainfo.source", "pk": 7986, "fields": {"orig_filename": "Novotny_Eduard_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170", "author": "", "orig_id": 1408234}}, {"model": "metainfo.source", "pk": 7987, "fields": {"orig_filename": "Novotny_Jindrich_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 170f.", "author": "", "orig_id": 1408235}}, {"model": "metainfo.source", "pk": 7988, "fields": {"orig_filename": "Novotny_Karl_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408237}}, {"model": "metainfo.source", "pk": 7989, "fields": {"orig_filename": "Novotny_Stjepan_1833_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408238}}, {"model": "metainfo.source", "pk": 7990, "fields": {"orig_filename": "Novotny_Theodor_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 171", "author": "", "orig_id": 1408239}}, {"model": "metainfo.source", "pk": 7991, "fields": {"orig_filename": "Novotny_Vaclav_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172", "author": "", "orig_id": 1408240}}, {"model": "metainfo.source", "pk": 7992, "fields": {"orig_filename": "Novotny_Walter_1920_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172", "author": "", "orig_id": 1408241}}, {"model": "metainfo.source", "pk": 7993, "fields": {"orig_filename": "Novy_Franz_1900_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 172f.", "author": "", "orig_id": 1408242}}, {"model": "metainfo.source", "pk": 7994, "fields": {"orig_filename": "Nowaczynski_Adolf_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 173", "author": "", "orig_id": 1408243}}, {"model": "metainfo.source", "pk": 7995, "fields": {"orig_filename": "Nowakowski_Jan_1796_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 173f.", "author": "", "orig_id": 1408244}}, {"model": "metainfo.source", "pk": 7996, "fields": {"orig_filename": "Nowakowski_Waclaw_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 174", "author": "", "orig_id": 1408245}}, {"model": "metainfo.source", "pk": 7997, "fields": {"orig_filename": "Nowicki-Sila_Maksymilian_1826_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175", "author": "", "orig_id": 1408313}}, {"model": "metainfo.source", "pk": 7998, "fields": {"orig_filename": "Nowicki_Franciszek-Henryk_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 174f.", "author": "", "orig_id": 1408312}}, {"model": "metainfo.source", "pk": 7999, "fields": {"orig_filename": "Nuchten_Josef_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 175", "author": "", "orig_id": 1408314}}, {"model": "metainfo.source", "pk": 8000, "fields": {"orig_filename": "Neuner_Jakob-Anton_1806_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408843}}, {"model": "metainfo.source", "pk": 8001, "fields": {"orig_filename": "Neuner_Johann_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408844}}, {"model": "metainfo.source", "pk": 8002, "fields": {"orig_filename": "Neupauer_Franz-Xaver_1753_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101", "author": "", "orig_id": 1408845}}, {"model": "metainfo.source", "pk": 8003, "fields": {"orig_filename": "Neurath_Anna_1877_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 101f.", "author": "", "orig_id": 1408846}}, {"model": "metainfo.source", "pk": 8004, "fields": {"orig_filename": "Neurath_Otto_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 102f.", "author": "", "orig_id": 1408847}}, {"model": "metainfo.source", "pk": 8005, "fields": {"orig_filename": "Neurath_Wilhelm_1840_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 103", "author": "", "orig_id": 1408848}}, {"model": "metainfo.source", "pk": 8006, "fields": {"orig_filename": "Neureiter_Ferdinand_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 103f.", "author": "", "orig_id": 1408849}}, {"model": "metainfo.source", "pk": 8007, "fields": {"orig_filename": "Neureiter_Michael_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104", "author": "", "orig_id": 1408850}}, {"model": "metainfo.source", "pk": 8008, "fields": {"orig_filename": "Neureutter_Bohdan_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104", "author": "", "orig_id": 1408851}}, {"model": "metainfo.source", "pk": 8009, "fields": {"orig_filename": "Neusser_Edmund_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 104f.", "author": "", "orig_id": 1408853}}, {"model": "metainfo.source", "pk": 8010, "fields": {"orig_filename": "Neusser_Karl_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105", "author": "", "orig_id": 1408854}}, {"model": "metainfo.source", "pk": 8011, "fields": {"orig_filename": "Neustaedter-Stuermer_Odo_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105f.", "author": "", "orig_id": 1408856}}, {"model": "metainfo.source", "pk": 8012, "fields": {"orig_filename": "Neustaedter_Josef_1796_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 105", "author": "", "orig_id": 1408855}}, {"model": "metainfo.source", "pk": 8013, "fields": {"orig_filename": "Neuwall_Albert_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 106", "author": "", "orig_id": 1408857}}, {"model": "metainfo.source", "pk": 8014, "fields": {"orig_filename": "Neuwirth-Neufels_Theodor_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408864}}, {"model": "metainfo.source", "pk": 8015, "fields": {"orig_filename": "Neuwirth_August_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 106f.", "author": "", "orig_id": 1408859}}, {"model": "metainfo.source", "pk": 8016, "fields": {"orig_filename": "Neuwirth_Josef_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 107", "author": "", "orig_id": 1408860}}, {"model": "metainfo.source", "pk": 8017, "fields": {"orig_filename": "Neuwirth_Josef_1855_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 107f.", "author": "", "orig_id": 1408861}}, {"model": "metainfo.source", "pk": 8018, "fields": {"orig_filename": "Neuwirth_Rosa_1883_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408862}}, {"model": "metainfo.source", "pk": 8019, "fields": {"orig_filename": "Neuwirth_Viktor_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108", "author": "", "orig_id": 1408863}}, {"model": "metainfo.source", "pk": 8020, "fields": {"orig_filename": "Nevinny_Josef_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 108f.", "author": "", "orig_id": 1408865}}, {"model": "metainfo.source", "pk": 8021, "fields": {"orig_filename": "Nevole_Milan_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 109", "author": "", "orig_id": 1408930}}, {"model": "metainfo.source", "pk": 8022, "fields": {"orig_filename": "Nevy_Laszlo_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 109f.", "author": "", "orig_id": 1408931}}, {"model": "metainfo.source", "pk": 8023, "fields": {"orig_filename": "Newald_Johann_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408932}}, {"model": "metainfo.source", "pk": 8024, "fields": {"orig_filename": "Newald_Julius_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408933}}, {"model": "metainfo.source", "pk": 8025, "fields": {"orig_filename": "Neydhart_Josef_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 111", "author": "", "orig_id": 1412809}}, {"model": "metainfo.source", "pk": 8026, "fields": {"orig_filename": "Ney_David_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110", "author": "", "orig_id": 1408934}}, {"model": "metainfo.source", "pk": 8027, "fields": {"orig_filename": "Ney_Ferenc_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 110f.", "author": "", "orig_id": 1408935}}, {"model": "metainfo.source", "pk": 8028, "fields": {"orig_filename": "Nickerl_Franz-Anton_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 111f.", "author": "", "orig_id": 1408937}}, {"model": "metainfo.source", "pk": 8029, "fields": {"orig_filename": "Nickerl_Ottokar_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112", "author": "", "orig_id": 1408938}}, {"model": "metainfo.source", "pk": 8030, "fields": {"orig_filename": "Nickl-Oppavar_Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112", "author": "", "orig_id": 1408939}}, {"model": "metainfo.source", "pk": 8031, "fields": {"orig_filename": "Nicoara_Moise_1784_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 112f.", "author": "", "orig_id": 1408940}}, {"model": "metainfo.source", "pk": 8032, "fields": {"orig_filename": "Nicolodi_Aurelio_1894_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 113f.", "author": "", "orig_id": 1408942}}, {"model": "metainfo.source", "pk": 8033, "fields": {"orig_filename": "Nicolussi_Paolaz-Simon_1852_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114", "author": "", "orig_id": 1408943}}, {"model": "metainfo.source", "pk": 8034, "fields": {"orig_filename": "Nida-Ruemelin_Wilhelm_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114", "author": "", "orig_id": 1408944}}, {"model": "metainfo.source", "pk": 8035, "fields": {"orig_filename": "Nidecki_Tomasz-Napoleon_1806_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 114f.", "author": "", "orig_id": 1408945}}, {"model": "metainfo.source", "pk": 8036, "fields": {"orig_filename": "Niebauer_Anton_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 115", "author": "", "orig_id": 1408946}}, {"model": "metainfo.source", "pk": 8037, "fields": {"orig_filename": "Niederegger_Alois_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 115f.", "author": "", "orig_id": 1408947}}, {"model": "metainfo.source", "pk": 8038, "fields": {"orig_filename": "Niedergesaess_Robert_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 116", "author": "", "orig_id": 1408948}}, {"model": "metainfo.source", "pk": 8039, "fields": {"orig_filename": "Niederist_Josef_1809_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 116f.", "author": "", "orig_id": 1408949}}, {"model": "metainfo.source", "pk": 8040, "fields": {"orig_filename": "Niederle_Jindrich_1840_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 117", "author": "", "orig_id": 1408950}}, {"model": "metainfo.source", "pk": 8041, "fields": {"orig_filename": "Niederle_Lubor_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 117f.", "author": "", "orig_id": 1408951}}, {"model": "metainfo.source", "pk": 8042, "fields": {"orig_filename": "Niedermaier_Franz-Xaver_1864_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408952}}, {"model": "metainfo.source", "pk": 8043, "fields": {"orig_filename": "Niedermaier_Matthias_1750_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408953}}, {"model": "metainfo.source", "pk": 8044, "fields": {"orig_filename": "Niedermann_Johann_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 118", "author": "", "orig_id": 1408954}}, {"model": "metainfo.source", "pk": 8045, "fields": {"orig_filename": "Niederwieser_Johann_1853_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409021}}, {"model": "metainfo.source", "pk": 8046, "fields": {"orig_filename": "Niedrist_Arsenius_1828_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409022}}, {"model": "metainfo.source", "pk": 8047, "fields": {"orig_filename": "Niedrist_Karl-Anton_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119", "author": "", "orig_id": 1409023}}, {"model": "metainfo.source", "pk": 8048, "fields": {"orig_filename": "Niedzialkowska_Wiktoria_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 119f.", "author": "", "orig_id": 1409024}}, {"model": "metainfo.source", "pk": 8049, "fields": {"orig_filename": "Niedzialkowski_Janusz_1848_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409025}}, {"model": "metainfo.source", "pk": 8050, "fields": {"orig_filename": "Niedzielski_Julian_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409026}}, {"model": "metainfo.source", "pk": 8051, "fields": {"orig_filename": "Niedzielski_Stanislaw_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120", "author": "", "orig_id": 1409027}}, {"model": "metainfo.source", "pk": 8052, "fields": {"orig_filename": "Niedzwiecki_Zygmunt_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 120f.", "author": "", "orig_id": 1409028}}, {"model": "metainfo.source", "pk": 8053, "fields": {"orig_filename": "Niedzwiedzki_Julian_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121", "author": "", "orig_id": 1409029}}, {"model": "metainfo.source", "pk": 8054, "fields": {"orig_filename": "Niemann_Georg_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121", "author": "", "orig_id": 1409030}}, {"model": "metainfo.source", "pk": 8055, "fields": {"orig_filename": "Niembsch-Strehlenau_Nikolaus-Franz_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 121f.", "author": "", "orig_id": 1409031}}, {"model": "metainfo.source", "pk": 8056, "fields": {"orig_filename": "Niementowski_Stefan_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 122f.", "author": "", "orig_id": 1409032}}, {"model": "metainfo.source", "pk": 8057, "fields": {"orig_filename": "Niemetschek_Franz_1766_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123", "author": "", "orig_id": 1409033}}, {"model": "metainfo.source", "pk": 8058, "fields": {"orig_filename": "Niemilowicz_Wladyslaw_1863_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123", "author": "", "orig_id": 1409034}}, {"model": "metainfo.source", "pk": 8059, "fields": {"orig_filename": "Niemirower_Jakub-Izaak_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 123f.", "author": "", "orig_id": 1409035}}, {"model": "metainfo.source", "pk": 8060, "fields": {"orig_filename": "Niemtschik_Rudolf_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409036}}, {"model": "metainfo.source", "pk": 8061, "fields": {"orig_filename": "Nierhaus_Karl_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409037}}, {"model": "metainfo.source", "pk": 8062, "fields": {"orig_filename": "Niernsee_Rudolf_1810_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124", "author": "", "orig_id": 1409038}}, {"model": "metainfo.source", "pk": 8063, "fields": {"orig_filename": "Niese_Johanna_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 124f.", "author": "", "orig_id": 1409039}}, {"model": "metainfo.source", "pk": 8064, "fields": {"orig_filename": "Niesiolowski-Niesiolowice_Viktor_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 125f.", "author": "", "orig_id": 1409040}}, {"model": "metainfo.source", "pk": 8065, "fields": {"orig_filename": "Niessl-Mayendorf_Gustav_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 126f.", "author": "", "orig_id": 1409041}}, {"model": "metainfo.source", "pk": 8066, "fields": {"orig_filename": "Niessner_Moritz_1898_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409042}}, {"model": "metainfo.source", "pk": 8067, "fields": {"orig_filename": "Niewiadomski_Stanislaw_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409116}}, {"model": "metainfo.source", "pk": 8068, "fields": {"orig_filename": "Nigg_Josef_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127", "author": "", "orig_id": 1409117}}, {"model": "metainfo.source", "pk": 8069, "fields": {"orig_filename": "Nigg_Marianne_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 127f.", "author": "", "orig_id": 1409118}}, {"model": "metainfo.source", "pk": 8070, "fields": {"orig_filename": "Niglutsch_Josef_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409119}}, {"model": "metainfo.source", "pk": 8071, "fields": {"orig_filename": "Nigrin_Vela_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409120}}, {"model": "metainfo.source", "pk": 8072, "fields": {"orig_filename": "Nikisch_Arthur_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 128", "author": "", "orig_id": 1409121}}, {"model": "metainfo.source", "pk": 8073, "fields": {"orig_filename": "Nikitsch-Boulles-Estenau_Paul_1878_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409122}}, {"model": "metainfo.source", "pk": 8074, "fields": {"orig_filename": "Niklas_Valentin_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409123}}, {"model": "metainfo.source", "pk": 8075, "fields": {"orig_filename": "Nikodem_Arthur_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129", "author": "", "orig_id": 1409124}}, {"model": "metainfo.source", "pk": 8076, "fields": {"orig_filename": "Nikolajevic_Djordje_1807_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130", "author": "", "orig_id": 1409126}}, {"model": "metainfo.source", "pk": 8077, "fields": {"orig_filename": "Nikola_Josef_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 129f.", "author": "", "orig_id": 1409125}}, {"model": "metainfo.source", "pk": 8078, "fields": {"orig_filename": "Nikoletti_Angela_1905_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130", "author": "", "orig_id": 1409127}}, {"model": "metainfo.source", "pk": 8079, "fields": {"orig_filename": "Nikolics_Sandor_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409132}}, {"model": "metainfo.source", "pk": 8080, "fields": {"orig_filename": "Nikolic_Atanasije_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 130f.", "author": "", "orig_id": 1409128}}, {"model": "metainfo.source", "pk": 8081, "fields": {"orig_filename": "Nikolic_Isidor_1805_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409129}}, {"model": "metainfo.source", "pk": 8082, "fields": {"orig_filename": "Nikolic_Sergije_1816_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409130}}, {"model": "metainfo.source", "pk": 8083, "fields": {"orig_filename": "Nikolic_Vladimir_1829_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131", "author": "", "orig_id": 1409131}}, {"model": "metainfo.source", "pk": 8084, "fields": {"orig_filename": "Nikolowsky_Anton_1855_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 131f.", "author": "", "orig_id": 1409133}}, {"model": "metainfo.source", "pk": 8085, "fields": {"orig_filename": "Nilles_Nikolaus_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 132", "author": "", "orig_id": 1409134}}, {"model": "metainfo.source", "pk": 8086, "fields": {"orig_filename": "Ninni_Alessandro-Pericle_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 132f.", "author": "", "orig_id": 1409135}}, {"model": "metainfo.source", "pk": 8087, "fields": {"orig_filename": "Nippel-Weyerheim_Franz-Xaver_1787_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133", "author": "", "orig_id": 1409136}}, {"model": "metainfo.source", "pk": 8088, "fields": {"orig_filename": "Nischler_Franz-Xaver_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133", "author": "", "orig_id": 1409137}}, {"model": "metainfo.source", "pk": 8089, "fields": {"orig_filename": "Nisius_Johann_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 133f.", "author": "", "orig_id": 1409138}}, {"model": "metainfo.source", "pk": 8090, "fields": {"orig_filename": "Nissel_Franz_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 134", "author": "", "orig_id": 1409139}}, {"model": "metainfo.source", "pk": 8091, "fields": {"orig_filename": "Nissen_Konstanze_1762_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 134f.", "author": "", "orig_id": 1409207}}, {"model": "metainfo.source", "pk": 8092, "fields": {"orig_filename": "Nissl_Anton_1852_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135", "author": "", "orig_id": 1409208}}, {"model": "metainfo.source", "pk": 8093, "fields": {"orig_filename": "Nissl_Franz_1771_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135", "author": "", "orig_id": 1409209}}, {"model": "metainfo.source", "pk": 8094, "fields": {"orig_filename": "Nissl_Franz_1852_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 135f.", "author": "", "orig_id": 1409210}}, {"model": "metainfo.source", "pk": 8095, "fields": {"orig_filename": "Nitsche-Hohenplan_Friedrich_1835_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136", "author": "", "orig_id": 1409212}}, {"model": "metainfo.source", "pk": 8096, "fields": {"orig_filename": "Nitsche_Johannes-Josef-Friedrich_1759_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136", "author": "", "orig_id": 1409211}}, {"model": "metainfo.source", "pk": 8097, "fields": {"orig_filename": "Nitschner_Josef_1805_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 136f.", "author": "", "orig_id": 1409213}}, {"model": "metainfo.source", "pk": 8098, "fields": {"orig_filename": "Nittel_Anton_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409214}}, {"model": "metainfo.source", "pk": 8099, "fields": {"orig_filename": "Nittner_Eduard_1885_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409215}}, {"model": "metainfo.source", "pk": 8100, "fields": {"orig_filename": "Nitzelberger_Moritz_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 137", "author": "", "orig_id": 1409216}}, {"model": "metainfo.source", "pk": 8101, "fields": {"orig_filename": "Nemes-Janoshalma_Marcell_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409828}}, {"model": "metainfo.source", "pk": 8102, "fields": {"orig_filename": "Nemethy-Nemetfalva_August_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409833}}, {"model": "metainfo.source", "pk": 8103, "fields": {"orig_filename": "Nemethy_Geza_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66", "author": "", "orig_id": 1409829}}, {"model": "metainfo.source", "pk": 8104, "fields": {"orig_filename": "Nemethy_Johann_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66", "author": "", "orig_id": 1409830}}, {"model": "metainfo.source", "pk": 8105, "fields": {"orig_filename": "Nemethy_Josef_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 66f.", "author": "", "orig_id": 1409831}}, {"model": "metainfo.source", "pk": 8106, "fields": {"orig_filename": "Nemethy_Karoly_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409832}}, {"model": "metainfo.source", "pk": 8107, "fields": {"orig_filename": "Nemetschek-Foehren_Heinrich_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 67", "author": "", "orig_id": 1409834}}, {"model": "metainfo.source", "pk": 8108, "fields": {"orig_filename": "Nemetz_Andreas_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409835}}, {"model": "metainfo.source", "pk": 8109, "fields": {"orig_filename": "Nendtvich_Karoly-Miksa_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409836}}, {"model": "metainfo.source", "pk": 8110, "fields": {"orig_filename": "Nentwich_Josef_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68", "author": "", "orig_id": 1409837}}, {"model": "metainfo.source", "pk": 8111, "fields": {"orig_filename": "Nentwich_Milo_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 68f.", "author": "", "orig_id": 1409838}}, {"model": "metainfo.source", "pk": 8112, "fields": {"orig_filename": "Nepalleck_Wilhelm-Friedrich_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409839}}, {"model": "metainfo.source", "pk": 8113, "fields": {"orig_filename": "Nerat_Miha_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409911}}, {"model": "metainfo.source", "pk": 8114, "fields": {"orig_filename": "Neruda_Franz_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69", "author": "", "orig_id": 1409912}}, {"model": "metainfo.source", "pk": 8115, "fields": {"orig_filename": "Neruda_Jan_1834_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 69f.", "author": "", "orig_id": 1409913}}, {"model": "metainfo.source", "pk": 8116, "fields": {"orig_filename": "Neruda_Wilma_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 70", "author": "", "orig_id": 1409914}}, {"model": "metainfo.source", "pk": 8117, "fields": {"orig_filename": "Nerz_Ludwig_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 70f.", "author": "", "orig_id": 1409915}}, {"model": "metainfo.source", "pk": 8118, "fields": {"orig_filename": "Neseni_Robert_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71", "author": "", "orig_id": 1409916}}, {"model": "metainfo.source", "pk": 8119, "fields": {"orig_filename": "Nesper_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71", "author": "", "orig_id": 1409918}}, {"model": "metainfo.source", "pk": 8120, "fields": {"orig_filename": "Nesselthaler_Andreas_1746_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72", "author": "", "orig_id": 1409921}}, {"model": "metainfo.source", "pk": 8121, "fields": {"orig_filename": "Nessel_Eduard_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 71f.", "author": "", "orig_id": 1409919}}, {"model": "metainfo.source", "pk": 8122, "fields": {"orig_filename": "Nessel_Franz_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72", "author": "", "orig_id": 1409920}}, {"model": "metainfo.source", "pk": 8123, "fields": {"orig_filename": "Nessler_Nikolaus_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 72f.", "author": "", "orig_id": 1409922}}, {"model": "metainfo.source", "pk": 8124, "fields": {"orig_filename": "Nestlehner_Alphons_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409923}}, {"model": "metainfo.source", "pk": 8125, "fields": {"orig_filename": "Nestler_Johann-Karl_1783_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409924}}, {"model": "metainfo.source", "pk": 8126, "fields": {"orig_filename": "Nestorovic_Uros-Stefan_1765_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73", "author": "", "orig_id": 1409925}}, {"model": "metainfo.source", "pk": 8127, "fields": {"orig_filename": "Nestroy_Johann_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 73ff.", "author": "", "orig_id": 1409926}}, {"model": "metainfo.source", "pk": 8128, "fields": {"orig_filename": "Nesvera_Josef_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 75", "author": "", "orig_id": 1409927}}, {"model": "metainfo.source", "pk": 8129, "fields": {"orig_filename": "Netoliczka_Eugen_1825_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 75f.", "author": "", "orig_id": 1409928}}, {"model": "metainfo.source", "pk": 8130, "fields": {"orig_filename": "Netoliczka_Oskar-Franz-Josef_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76", "author": "", "orig_id": 1409929}}, {"model": "metainfo.source", "pk": 8131, "fields": {"orig_filename": "Netolitzky_August_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76", "author": "", "orig_id": 1409930}}, {"model": "metainfo.source", "pk": 8132, "fields": {"orig_filename": "Netolitzky_Friedrich_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 76f.", "author": "", "orig_id": 1409931}}, {"model": "metainfo.source", "pk": 8133, "fields": {"orig_filename": "Netolitzky_Julius_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 77", "author": "", "orig_id": 1409932}}, {"model": "metainfo.source", "pk": 8134, "fields": {"orig_filename": "Netuschill_Josef_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 77", "author": "", "orig_id": 1409933}}, {"model": "metainfo.source", "pk": 8135, "fields": {"orig_filename": "Netzer_Johann-Josef_1808_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 78", "author": "", "orig_id": 1409934}}, {"model": "metainfo.source", "pk": 8136, "fields": {"orig_filename": "Neubauer_Adolf_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 78f.", "author": "", "orig_id": 1410003}}, {"model": "metainfo.source", "pk": 8137, "fields": {"orig_filename": "Neubauer_Gustav-Adolf_1824_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79", "author": "", "orig_id": 1410005}}, {"model": "metainfo.source", "pk": 8138, "fields": {"orig_filename": "Neubauer_Johann_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79", "author": "", "orig_id": 1410006}}, {"model": "metainfo.source", "pk": 8139, "fields": {"orig_filename": "Neubauer_Josef_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 79f.", "author": "", "orig_id": 1410007}}, {"model": "metainfo.source", "pk": 8140, "fields": {"orig_filename": "Neubauer_Maximilian-Hermann_1879_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80", "author": "", "orig_id": 1410008}}, {"model": "metainfo.source", "pk": 8141, "fields": {"orig_filename": "Neubauer_Rudolf-Vinzenz_1822_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80f.", "author": "", "orig_id": 1410010}}, {"model": "metainfo.source", "pk": 8142, "fields": {"orig_filename": "Neubauer_Rudolf_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 80", "author": "", "orig_id": 1410009}}, {"model": "metainfo.source", "pk": 8143, "fields": {"orig_filename": "Neuberger_Rudolf_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410013}}, {"model": "metainfo.source", "pk": 8144, "fields": {"orig_filename": "Neuber_August_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 81", "author": "", "orig_id": 1410011}}, {"model": "metainfo.source", "pk": 8145, "fields": {"orig_filename": "Neuber_Wilhelm_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 81f.", "author": "", "orig_id": 1410012}}, {"model": "metainfo.source", "pk": 8146, "fields": {"orig_filename": "Neuboeck_Peter_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410014}}, {"model": "metainfo.source", "pk": 8147, "fields": {"orig_filename": "Neuburger_Otto_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82", "author": "", "orig_id": 1410015}}, {"model": "metainfo.source", "pk": 8148, "fields": {"orig_filename": "Neuda_Max_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 82f.", "author": "", "orig_id": 1410016}}, {"model": "metainfo.source", "pk": 8149, "fields": {"orig_filename": "Neudeck_Andreas_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410017}}, {"model": "metainfo.source", "pk": 8150, "fields": {"orig_filename": "Neudoerfer_Ignaz-Josef_1825_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410018}}, {"model": "metainfo.source", "pk": 8151, "fields": {"orig_filename": "Neuerer_Gottfried_1828_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83", "author": "", "orig_id": 1410019}}, {"model": "metainfo.source", "pk": 8152, "fields": {"orig_filename": "Neufeld_Eugen_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 83f.", "author": "", "orig_id": 1410020}}, {"model": "metainfo.source", "pk": 8153, "fields": {"orig_filename": "Neugart_Trudpert_1742_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84", "author": "", "orig_id": 1410021}}, {"model": "metainfo.source", "pk": 8154, "fields": {"orig_filename": "Neugebauer-Aszod_Laszlo_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84f.", "author": "", "orig_id": 1410023}}, {"model": "metainfo.source", "pk": 8155, "fields": {"orig_filename": "Neugebauer_Josef_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 84", "author": "", "orig_id": 1410022}}, {"model": "metainfo.source", "pk": 8156, "fields": {"orig_filename": "Neugeboren_Daniel-Georg_1759_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1410024}}, {"model": "metainfo.source", "pk": 8157, "fields": {"orig_filename": "Neugeboren_Johann-Ludwig_1806_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1410025}}, {"model": "metainfo.source", "pk": 8158, "fields": {"orig_filename": "Neugeboren_Karl_1789_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 85", "author": "", "orig_id": 1408656}}, {"model": "metainfo.source", "pk": 8159, "fields": {"orig_filename": "Neuhauser_Franz_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86", "author": "", "orig_id": 1408659}}, {"model": "metainfo.source", "pk": 8160, "fields": {"orig_filename": "Neuhofer_Franz-Karl_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86", "author": "", "orig_id": 1408660}}, {"model": "metainfo.source", "pk": 8161, "fields": {"orig_filename": "Neuhold-Neuholdau_Johann_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 86f.", "author": "", "orig_id": 1408661}}, {"model": "metainfo.source", "pk": 8162, "fields": {"orig_filename": "Neukomm_Sigismund_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87", "author": "", "orig_id": 1408662}}, {"model": "metainfo.source", "pk": 8163, "fields": {"orig_filename": "Neuling_Vinzenz_1795_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87", "author": "", "orig_id": 1408663}}, {"model": "metainfo.source", "pk": 8164, "fields": {"orig_filename": "Neumaier_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 87f.", "author": "", "orig_id": 1408664}}, {"model": "metainfo.source", "pk": 8165, "fields": {"orig_filename": "Neumaier_Melchior_1845_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 88", "author": "", "orig_id": 1408665}}, {"model": "metainfo.source", "pk": 8166, "fields": {"orig_filename": "Neumaier_Rudolf_1887_1977.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454874}}, {"model": "metainfo.source", "pk": 8167, "fields": {"orig_filename": "Neumaier_Vinzenz_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 88f.", "author": "", "orig_id": 1408666}}, {"model": "metainfo.source", "pk": 8168, "fields": {"orig_filename": "Neumann-Ditterswaldt_Adolf_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 96", "author": "", "orig_id": 1408763}}, {"model": "metainfo.source", "pk": 8169, "fields": {"orig_filename": "Neumann-Heilwart_Isidor_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 96f.", "author": "", "orig_id": 1408764}}, {"model": "metainfo.source", "pk": 8170, "fields": {"orig_filename": "Neumann-Heilwart_Paul_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97", "author": "", "orig_id": 1408765}}, {"model": "metainfo.source", "pk": 8171, "fields": {"orig_filename": "Neumann-Hethars_Heinrich_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97", "author": "", "orig_id": 1408766}}, {"model": "metainfo.source", "pk": 8172, "fields": {"orig_filename": "Neumann-Spallart_Anatol_1872_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 97f.", "author": "", "orig_id": 1408768}}, {"model": "metainfo.source", "pk": 8173, "fields": {"orig_filename": "Neumann-Spallart_Franz-Xaver_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 98", "author": "", "orig_id": 1408769}}, {"model": "metainfo.source", "pk": 8174, "fields": {"orig_filename": "Neumann-Spallart_Josef-Franz_1797_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 98f.", "author": "", "orig_id": 1408770}}, {"model": "metainfo.source", "pk": 8175, "fields": {"orig_filename": "Neumann-Spallart_Julius_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 99", "author": "", "orig_id": 1408771}}, {"model": "metainfo.source", "pk": 8176, "fields": {"orig_filename": "Neumann_Alexander_1856_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89", "author": "", "orig_id": 1408667}}, {"model": "metainfo.source", "pk": 8177, "fields": {"orig_filename": "Neumann_Alois_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89", "author": "", "orig_id": 1408668}}, {"model": "metainfo.source", "pk": 8178, "fields": {"orig_filename": "Neumann_Angelo_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 89f.", "author": "", "orig_id": 1408669}}, {"model": "metainfo.source", "pk": 8179, "fields": {"orig_filename": "Neumann_Anna-Maria_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408670}}, {"model": "metainfo.source", "pk": 8180, "fields": {"orig_filename": "Neumann_August_1879_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408671}}, {"model": "metainfo.source", "pk": 8181, "fields": {"orig_filename": "Neumann_Dragutin_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408672}}, {"model": "metainfo.source", "pk": 8182, "fields": {"orig_filename": "Neumann_Frantisek_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90", "author": "", "orig_id": 1408673}}, {"model": "metainfo.source", "pk": 8183, "fields": {"orig_filename": "Neumann_Franz_1744_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 90f.", "author": "", "orig_id": 1408674}}, {"model": "metainfo.source", "pk": 8184, "fields": {"orig_filename": "Neumann_Franz_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91", "author": "", "orig_id": 1408675}}, {"model": "metainfo.source", "pk": 8185, "fields": {"orig_filename": "Neumann_Johann-Christian_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91", "author": "", "orig_id": 1408676}}, {"model": "metainfo.source", "pk": 8186, "fields": {"orig_filename": "Neumann_Johann-Philipp_1774_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 91f.", "author": "", "orig_id": 1408677}}, {"model": "metainfo.source", "pk": 8187, "fields": {"orig_filename": "Neumann_Johannes_1811_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408678}}, {"model": "metainfo.source", "pk": 8188, "fields": {"orig_filename": "Neumann_Josef_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408679}}, {"model": "metainfo.source", "pk": 8189, "fields": {"orig_filename": "Neumann_Josef_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92", "author": "", "orig_id": 1408680}}, {"model": "metainfo.source", "pk": 8190, "fields": {"orig_filename": "Neumann_Julius_1827_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 92f.", "author": "", "orig_id": 1408681}}, {"model": "metainfo.source", "pk": 8191, "fields": {"orig_filename": "Neumann_Julius_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408754}}, {"model": "metainfo.source", "pk": 8192, "fields": {"orig_filename": "Neumann_Karl-August_1771_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408755}}, {"model": "metainfo.source", "pk": 8193, "fields": {"orig_filename": "Neumann_Karl-Eugen_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93", "author": "", "orig_id": 1408756}}, {"model": "metainfo.source", "pk": 8194, "fields": {"orig_filename": "Neumann_Karoly_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 93f.", "author": "", "orig_id": 1408757}}, {"model": "metainfo.source", "pk": 8195, "fields": {"orig_filename": "Neumann_Leopold_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 94", "author": "", "orig_id": 1408760}}, {"model": "metainfo.source", "pk": 8196, "fields": {"orig_filename": "Neumann_Stanislav_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 94f.", "author": "", "orig_id": 1408758}}, {"model": "metainfo.source", "pk": 8197, "fields": {"orig_filename": "Neumann_Wenzel_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95", "author": "", "orig_id": 1408759}}, {"model": "metainfo.source", "pk": 8198, "fields": {"orig_filename": "Neumann_Wilhelm-Anton_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95f.", "author": "", "orig_id": 1408762}}, {"model": "metainfo.source", "pk": 8199, "fields": {"orig_filename": "Neumann_Wilhelm_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 95", "author": "", "orig_id": 1408761}}, {"model": "metainfo.source", "pk": 8200, "fields": {"orig_filename": "Neumark_David_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 99f.", "author": "", "orig_id": 1408772}}, {"model": "metainfo.source", "pk": 8201, "fields": {"orig_filename": "Neumueller_Anton_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 100", "author": "", "orig_id": 1408773}}, {"model": "metainfo.source", "pk": 8202, "fields": {"orig_filename": "Neuner_Christoph_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 100f.", "author": "", "orig_id": 1408842}}, {"model": "metainfo.source", "pk": 8203, "fields": {"orig_filename": "Nagy_Paul_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410765}}, {"model": "metainfo.source", "pk": 8204, "fields": {"orig_filename": "Nagy_Peter_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410766}}, {"model": "metainfo.source", "pk": 8205, "fields": {"orig_filename": "Nagy_Samuel_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410767}}, {"model": "metainfo.source", "pk": 8206, "fields": {"orig_filename": "Nagy_Zsigmond_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25", "author": "", "orig_id": 1410768}}, {"model": "metainfo.source", "pk": 8207, "fields": {"orig_filename": "Najmajer_Marie_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30f.", "author": "", "orig_id": 1410854}}, {"model": "metainfo.source", "pk": 8208, "fields": {"orig_filename": "Nakic_Filip-Franjo_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410855}}, {"model": "metainfo.source", "pk": 8209, "fields": {"orig_filename": "Nakovic_Mihovil_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410857}}, {"model": "metainfo.source", "pk": 8210, "fields": {"orig_filename": "Nako_Antonije_1817_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31", "author": "", "orig_id": 1410856}}, {"model": "metainfo.source", "pk": 8211, "fields": {"orig_filename": "Namias_Giacinto_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 31f.", "author": "", "orig_id": 1410858}}, {"model": "metainfo.source", "pk": 8212, "fields": {"orig_filename": "Napadiewicz-Wieckowski_Edward_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32", "author": "", "orig_id": 1410859}}, {"model": "metainfo.source", "pk": 8213, "fields": {"orig_filename": "Napadiewicz-Wieckowski_Mikolaj_1779_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32", "author": "", "orig_id": 1410932}}, {"model": "metainfo.source", "pk": 8214, "fields": {"orig_filename": "Napotnik_Michael_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 32f.", "author": "", "orig_id": 1410933}}, {"model": "metainfo.source", "pk": 8215, "fields": {"orig_filename": "Napp_Cyrill_1792_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33", "author": "", "orig_id": 1410934}}, {"model": "metainfo.source", "pk": 8216, "fields": {"orig_filename": "Napravil_Friedrich_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33", "author": "", "orig_id": 1410935}}, {"model": "metainfo.source", "pk": 8217, "fields": {"orig_filename": "Napravnik_Eduard_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 33f.", "author": "", "orig_id": 1410936}}, {"model": "metainfo.source", "pk": 8218, "fields": {"orig_filename": "Naprstek_Vojta_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34", "author": "", "orig_id": 1410937}}, {"model": "metainfo.source", "pk": 8219, "fields": {"orig_filename": "Narajewski_Stanislaw_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34", "author": "", "orig_id": 1410938}}, {"model": "metainfo.source", "pk": 8220, "fields": {"orig_filename": "Narath_Albert_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 34f.", "author": "", "orig_id": 1410939}}, {"model": "metainfo.source", "pk": 8221, "fields": {"orig_filename": "Nardin_Julij_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35", "author": "", "orig_id": 1410942}}, {"model": "metainfo.source", "pk": 8222, "fields": {"orig_filename": "Nardi_Francesco_1808_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35", "author": "", "orig_id": 1410941}}, {"model": "metainfo.source", "pk": 8223, "fields": {"orig_filename": "Nardo_Giandomenico_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 35f.", "author": "", "orig_id": 1410943}}, {"model": "metainfo.source", "pk": 8224, "fields": {"orig_filename": "Naschberger_Andreas_1843_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36", "author": "", "orig_id": 1410945}}, {"model": "metainfo.source", "pk": 8225, "fields": {"orig_filename": "Nascher_Eduard_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36", "author": "", "orig_id": 1410946}}, {"model": "metainfo.source", "pk": 8226, "fields": {"orig_filename": "Naske_Alois_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 36f.", "author": "", "orig_id": 1410947}}, {"model": "metainfo.source", "pk": 8227, "fields": {"orig_filename": "Naske_Emilie_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410948}}, {"model": "metainfo.source", "pk": 8228, "fields": {"orig_filename": "Naswetter_Emil_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410949}}, {"model": "metainfo.source", "pk": 8229, "fields": {"orig_filename": "Natanson_Wladyslaw_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 37", "author": "", "orig_id": 1410950}}, {"model": "metainfo.source", "pk": 8230, "fields": {"orig_filename": "Nathan_Arturo_1891_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38", "author": "", "orig_id": 1410951}}, {"model": "metainfo.source", "pk": 8231, "fields": {"orig_filename": "Natonek_Josef_1813_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38", "author": "", "orig_id": 1410952}}, {"model": "metainfo.source", "pk": 8232, "fields": {"orig_filename": "Natorp_Maria-Anna_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 38f.", "author": "", "orig_id": 1410953}}, {"model": "metainfo.source", "pk": 8233, "fields": {"orig_filename": "Natosevic_Djordje_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39", "author": "", "orig_id": 1409540}}, {"model": "metainfo.source", "pk": 8234, "fields": {"orig_filename": "Natterer_Johann-August_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 40f.", "author": "", "orig_id": 1409543}}, {"model": "metainfo.source", "pk": 8235, "fields": {"orig_filename": "Natterer_Johann_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39f.", "author": "", "orig_id": 1409542}}, {"model": "metainfo.source", "pk": 8236, "fields": {"orig_filename": "Natterer_Josef_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41", "author": "", "orig_id": 1409544}}, {"model": "metainfo.source", "pk": 8237, "fields": {"orig_filename": "Natterer_Konrad_1860_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41", "author": "", "orig_id": 1409545}}, {"model": "metainfo.source", "pk": 8238, "fields": {"orig_filename": "Natter_Heinrich_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 39", "author": "", "orig_id": 1409541}}, {"model": "metainfo.source", "pk": 8239, "fields": {"orig_filename": "Natzler_Leopold_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 41f.", "author": "", "orig_id": 1409546}}, {"model": "metainfo.source", "pk": 8240, "fields": {"orig_filename": "Natzler_Siegmund_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 42", "author": "", "orig_id": 1409547}}, {"model": "metainfo.source", "pk": 8241, "fields": {"orig_filename": "Naufock_Albert_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 42f.", "author": "", "orig_id": 1409548}}, {"model": "metainfo.source", "pk": 8242, "fields": {"orig_filename": "Nauheimer_Stefanie_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 43", "author": "", "orig_id": 1409549}}, {"model": "metainfo.source", "pk": 8243, "fields": {"orig_filename": "Navarini_Octavius_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44f.", "author": "", "orig_id": 1409554}}, {"model": "metainfo.source", "pk": 8244, "fields": {"orig_filename": "Nava_Alexander_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 43f.", "author": "", "orig_id": 1409550}}, {"model": "metainfo.source", "pk": 8245, "fields": {"orig_filename": "Nava_Antonio-Maria_1755_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409551}}, {"model": "metainfo.source", "pk": 8246, "fields": {"orig_filename": "Nava_Davide_1813_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409552}}, {"model": "metainfo.source", "pk": 8247, "fields": {"orig_filename": "Nava_Gabrio-Maria_1758_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 44", "author": "", "orig_id": 1409553}}, {"model": "metainfo.source", "pk": 8248, "fields": {"orig_filename": "Nave_Johann_1831_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45", "author": "", "orig_id": 1409555}}, {"model": "metainfo.source", "pk": 8249, "fields": {"orig_filename": "Navratil-Szalok_Imre_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47f.", "author": "", "orig_id": 1409563}}, {"model": "metainfo.source", "pk": 8250, "fields": {"orig_filename": "Navratil_Ivan_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45f.", "author": "", "orig_id": 1409557}}, {"model": "metainfo.source", "pk": 8251, "fields": {"orig_filename": "Navratil_Johann_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 46", "author": "", "orig_id": 1409558}}, {"model": "metainfo.source", "pk": 8252, "fields": {"orig_filename": "Navratil_Josef_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 46f.", "author": "", "orig_id": 1409559}}, {"model": "metainfo.source", "pk": 8253, "fields": {"orig_filename": "Navratil_Karel_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409560}}, {"model": "metainfo.source", "pk": 8254, "fields": {"orig_filename": "Navratil_Karl_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409561}}, {"model": "metainfo.source", "pk": 8255, "fields": {"orig_filename": "Navratil_Michal_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 47", "author": "", "orig_id": 1409562}}, {"model": "metainfo.source", "pk": 8256, "fields": {"orig_filename": "Navrat_Vinzenz_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 45", "author": "", "orig_id": 1409556}}, {"model": "metainfo.source", "pk": 8257, "fields": {"orig_filename": "Navrockyj_Volodymyr_1847_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48", "author": "", "orig_id": 1409564}}, {"model": "metainfo.source", "pk": 8258, "fields": {"orig_filename": "Nawiasky_Eduard_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48", "author": "", "orig_id": 1409634}}, {"model": "metainfo.source", "pk": 8259, "fields": {"orig_filename": "Nazari_Giovan-Battista_1791_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 48f.", "author": "", "orig_id": 1409635}}, {"model": "metainfo.source", "pk": 8260, "fields": {"orig_filename": "Nebehay_Gustav_1881_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49", "author": "", "orig_id": 1409636}}, {"model": "metainfo.source", "pk": 8261, "fields": {"orig_filename": "Nebesky_Jan_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49", "author": "", "orig_id": 1409637}}, {"model": "metainfo.source", "pk": 8262, "fields": {"orig_filename": "Nebesky_Vaclav-Bolemir_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 49f.", "author": "", "orig_id": 1409638}}, {"model": "metainfo.source", "pk": 8263, "fields": {"orig_filename": "Nebuschka_Franz-Josef_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409639}}, {"model": "metainfo.source", "pk": 8264, "fields": {"orig_filename": "Necasek_Frantisek_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409640}}, {"model": "metainfo.source", "pk": 8265, "fields": {"orig_filename": "Nechansky_Arnold_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50", "author": "", "orig_id": 1409641}}, {"model": "metainfo.source", "pk": 8266, "fields": {"orig_filename": "Necker_Moritz_1857_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 50f.", "author": "", "orig_id": 1409642}}, {"model": "metainfo.source", "pk": 8267, "fields": {"orig_filename": "Neckheim_Hans_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51", "author": "", "orig_id": 1409643}}, {"model": "metainfo.source", "pk": 8268, "fields": {"orig_filename": "Necsey_Istvan_1870_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51", "author": "", "orig_id": 1409644}}, {"model": "metainfo.source", "pk": 8269, "fields": {"orig_filename": "Nedbal_Oskar_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 51f.", "author": "", "orig_id": 1409645}}, {"model": "metainfo.source", "pk": 8270, "fields": {"orig_filename": "Nedeljko_Fran_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52", "author": "", "orig_id": 1409646}}, {"model": "metainfo.source", "pk": 8271, "fields": {"orig_filename": "Nedelkowitsch_Ernst_1846_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52", "author": "", "orig_id": 1409647}}, {"model": "metainfo.source", "pk": 8272, "fields": {"orig_filename": "Neder_Emil_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 52f.", "author": "", "orig_id": 1409648}}, {"model": "metainfo.source", "pk": 8273, "fields": {"orig_filename": "Neder_Johann-Michael_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53", "author": "", "orig_id": 1409649}}, {"model": "metainfo.source", "pk": 8274, "fields": {"orig_filename": "Nedic_Martin_1810_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53", "author": "", "orig_id": 1409650}}, {"model": "metainfo.source", "pk": 8275, "fields": {"orig_filename": "Nedoma_Jan_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 53f.", "author": "", "orig_id": 1409651}}, {"model": "metainfo.source", "pk": 8276, "fields": {"orig_filename": "Nedopil_Leopold_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409652}}, {"model": "metainfo.source", "pk": 8277, "fields": {"orig_filename": "Nedopil_Mauric_1847_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409653}}, {"model": "metainfo.source", "pk": 8278, "fields": {"orig_filename": "Nedved_Anton_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54", "author": "", "orig_id": 1409654}}, {"model": "metainfo.source", "pk": 8279, "fields": {"orig_filename": "Nedved_Milos_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 54f.", "author": "", "orig_id": 1409724}}, {"model": "metainfo.source", "pk": 8280, "fields": {"orig_filename": "Neeb_Johann-Philipp_1806_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 55", "author": "", "orig_id": 1409725}}, {"model": "metainfo.source", "pk": 8281, "fields": {"orig_filename": "Neefe_Hermann-Josef_1790_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 55f.", "author": "", "orig_id": 1409726}}, {"model": "metainfo.source", "pk": 8282, "fields": {"orig_filename": "Neelmeyer_Ludwig_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1409727}}, {"model": "metainfo.source", "pk": 8283, "fields": {"orig_filename": "Neffat_Anton_1893_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1409728}}, {"model": "metainfo.source", "pk": 8284, "fields": {"orig_filename": "Neffzern_Karl_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56", "author": "", "orig_id": 1412808}}, {"model": "metainfo.source", "pk": 8285, "fields": {"orig_filename": "Negrelli-Moldelbe_Alois_1799_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 56f.", "author": "", "orig_id": 1409729}}, {"model": "metainfo.source", "pk": 8286, "fields": {"orig_filename": "Negri_Cristoforo_1808_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 57f.", "author": "", "orig_id": 1409730}}, {"model": "metainfo.source", "pk": 8287, "fields": {"orig_filename": "Negri_Gaetano_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 58f.", "author": "", "orig_id": 1409731}}, {"model": "metainfo.source", "pk": 8288, "fields": {"orig_filename": "Negri_Giambattista_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59", "author": "", "orig_id": 1409732}}, {"model": "metainfo.source", "pk": 8289, "fields": {"orig_filename": "Negyesy_Laszlo_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59", "author": "", "orig_id": 1409733}}, {"model": "metainfo.source", "pk": 8290, "fields": {"orig_filename": "Nehajev_Milutin_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 59f.", "author": "", "orig_id": 1409734}}, {"model": "metainfo.source", "pk": 8291, "fields": {"orig_filename": "Nehr_Alexander_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60", "author": "", "orig_id": 1409735}}, {"model": "metainfo.source", "pk": 8292, "fields": {"orig_filename": "Nehr_Johann-Josef_1757_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60", "author": "", "orig_id": 1409736}}, {"model": "metainfo.source", "pk": 8293, "fields": {"orig_filename": "Neidhart_Alois_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 60f.", "author": "", "orig_id": 1409737}}, {"model": "metainfo.source", "pk": 8294, "fields": {"orig_filename": "Neidl_Franz_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61", "author": "", "orig_id": 1409746}}, {"model": "metainfo.source", "pk": 8295, "fields": {"orig_filename": "Neidl_Johann-Josef_1776_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61", "author": "", "orig_id": 1409747}}, {"model": "metainfo.source", "pk": 8296, "fields": {"orig_filename": "Neilreich_August_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 61f.", "author": "", "orig_id": 1409748}}, {"model": "metainfo.source", "pk": 8297, "fields": {"orig_filename": "Nejebse_Johann_1809_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409818}}, {"model": "metainfo.source", "pk": 8298, "fields": {"orig_filename": "Nejedly_Jan_1776_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409819}}, {"model": "metainfo.source", "pk": 8299, "fields": {"orig_filename": "Nejedly_Vojtech_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62", "author": "", "orig_id": 1409820}}, {"model": "metainfo.source", "pk": 8300, "fields": {"orig_filename": "Nell-Nellenburg-Damenacker_Franz-Anton-Maria_1794_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 62f.", "author": "", "orig_id": 1409821}}, {"model": "metainfo.source", "pk": 8301, "fields": {"orig_filename": "Nemcic-Gostovinski_Antun_1816_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 63", "author": "", "orig_id": 1409822}}, {"model": "metainfo.source", "pk": 8302, "fields": {"orig_filename": "Nemcova_Bozena_1820_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 63f.", "author": "", "orig_id": 1409823}}, {"model": "metainfo.source", "pk": 8303, "fields": {"orig_filename": "Nemecek_Johann_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 64", "author": "", "orig_id": 1409824}}, {"model": "metainfo.source", "pk": 8304, "fields": {"orig_filename": "Nemecic-Bihacgrad_Josef_1832_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 64f.", "author": "", "orig_id": 1409825}}, {"model": "metainfo.source", "pk": 8305, "fields": {"orig_filename": "Nemecky_Daniel-Mathias_1762_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409826}}, {"model": "metainfo.source", "pk": 8306, "fields": {"orig_filename": "Nemenyi_Imre_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 65", "author": "", "orig_id": 1409827}}, {"model": "metainfo.source", "pk": 8307, "fields": {"orig_filename": "Munih_Andrej_1875_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413743}}, {"model": "metainfo.source", "pk": 8308, "fields": {"orig_filename": "Munkacsi_Albert_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441f.", "author": "", "orig_id": 1413745}}, {"model": "metainfo.source", "pk": 8309, "fields": {"orig_filename": "Munkacsi_Bernat_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 442", "author": "", "orig_id": 1413746}}, {"model": "metainfo.source", "pk": 8310, "fields": {"orig_filename": "Munkacsy_Mihaly_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 442f.", "author": "", "orig_id": 1413747}}, {"model": "metainfo.source", "pk": 8311, "fields": {"orig_filename": "Munk_Adolf_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413744}}, {"model": "metainfo.source", "pk": 8312, "fields": {"orig_filename": "Munsch_Josef_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 443", "author": "", "orig_id": 1413748}}, {"model": "metainfo.source", "pk": 8313, "fields": {"orig_filename": "Munsch_Leopold_1826_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 443f.", "author": "", "orig_id": 1413820}}, {"model": "metainfo.source", "pk": 8314, "fields": {"orig_filename": "Munyay_Antal_1787_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413821}}, {"model": "metainfo.source", "pk": 8315, "fields": {"orig_filename": "Muratti_Giusto_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413823}}, {"model": "metainfo.source", "pk": 8316, "fields": {"orig_filename": "Muratti_Spartaco_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444f.", "author": "", "orig_id": 1413824}}, {"model": "metainfo.source", "pk": 8317, "fields": {"orig_filename": "Murat_Marko_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 444", "author": "", "orig_id": 1413822}}, {"model": "metainfo.source", "pk": 8318, "fields": {"orig_filename": "Muresan_Andrei_1816_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413825}}, {"model": "metainfo.source", "pk": 8319, "fields": {"orig_filename": "Muresianu_Iacob_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413826}}, {"model": "metainfo.source", "pk": 8320, "fields": {"orig_filename": "Murgas_Josef_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445", "author": "", "orig_id": 1413827}}, {"model": "metainfo.source", "pk": 8321, "fields": {"orig_filename": "Murgu_Eftimie_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 445f.", "author": "", "orig_id": 1413828}}, {"model": "metainfo.source", "pk": 8322, "fields": {"orig_filename": "Murko_Anton_1809_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446", "author": "", "orig_id": 1413829}}, {"model": "metainfo.source", "pk": 8323, "fields": {"orig_filename": "Murnik_Ivan_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446f.", "author": "", "orig_id": 1413831}}, {"model": "metainfo.source", "pk": 8324, "fields": {"orig_filename": "Murnik_Othmar_1835_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447", "author": "", "orig_id": 1413832}}, {"model": "metainfo.source", "pk": 8325, "fields": {"orig_filename": "Murnik_Rado_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447", "author": "", "orig_id": 1413833}}, {"model": "metainfo.source", "pk": 8326, "fields": {"orig_filename": "Murn_Josip_1879_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 446", "author": "", "orig_id": 1413830}}, {"model": "metainfo.source", "pk": 8327, "fields": {"orig_filename": "Murr_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 447f.", "author": "", "orig_id": 1413834}}, {"model": "metainfo.source", "pk": 8328, "fields": {"orig_filename": "Mursec_Jozef_1807_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 448", "author": "", "orig_id": 1413835}}, {"model": "metainfo.source", "pk": 8329, "fields": {"orig_filename": "Musger_August_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 448", "author": "", "orig_id": 1413836}}, {"model": "metainfo.source", "pk": 8330, "fields": {"orig_filename": "Musicki_Lukijan_1777_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1", "author": "", "orig_id": 1410484}}, {"model": "metainfo.source", "pk": 8331, "fields": {"orig_filename": "Music_August_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1", "author": "", "orig_id": 1410483}}, {"model": "metainfo.source", "pk": 8332, "fields": {"orig_filename": "Musil_Alois_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 1f.", "author": "", "orig_id": 1410485}}, {"model": "metainfo.source", "pk": 8333, "fields": {"orig_filename": "Musil_Robert_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 2f.", "author": "", "orig_id": 1410559}}, {"model": "metainfo.source", "pk": 8334, "fields": {"orig_filename": "Mussafia_Adolf_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 3f.", "author": "", "orig_id": 1410560}}, {"model": "metainfo.source", "pk": 8335, "fields": {"orig_filename": "Mussoni_Cajetan_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 4", "author": "", "orig_id": 1410561}}, {"model": "metainfo.source", "pk": 8336, "fields": {"orig_filename": "Musulin-Gomirje_Alexander_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 4f.", "author": "", "orig_id": 1410562}}, {"model": "metainfo.source", "pk": 8337, "fields": {"orig_filename": "Muszynski-Arenhort_Oskar_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5", "author": "", "orig_id": 1410563}}, {"model": "metainfo.source", "pk": 8338, "fields": {"orig_filename": "Muther_Ludwig_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410566}}, {"model": "metainfo.source", "pk": 8339, "fields": {"orig_filename": "Muth_Peter_1784_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5", "author": "", "orig_id": 1410564}}, {"model": "metainfo.source", "pk": 8340, "fields": {"orig_filename": "Muth_Richard_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 5f.", "author": "", "orig_id": 1410565}}, {"model": "metainfo.source", "pk": 8341, "fields": {"orig_filename": "Mutinelli_Giambattista_1747_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410567}}, {"model": "metainfo.source", "pk": 8342, "fields": {"orig_filename": "Mutschlechner_Anton_1795_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6", "author": "", "orig_id": 1410568}}, {"model": "metainfo.source", "pk": 8343, "fields": {"orig_filename": "Mutschlechner_Josef_1876_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 6f.", "author": "", "orig_id": 1410569}}, {"model": "metainfo.source", "pk": 8344, "fields": {"orig_filename": "Muzakova_Johanka_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 7", "author": "", "orig_id": 1410570}}, {"model": "metainfo.source", "pk": 8345, "fields": {"orig_filename": "Muzik_Augustin-Eugen_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 7f.", "author": "", "orig_id": 1410571}}, {"model": "metainfo.source", "pk": 8346, "fields": {"orig_filename": "Mycielski_Franciszek_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 8", "author": "", "orig_id": 1410572}}, {"model": "metainfo.source", "pk": 8347, "fields": {"orig_filename": "Mycielski_Jerzy_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 8", "author": "", "orig_id": 1410573}}, {"model": "metainfo.source", "pk": 8348, "fields": {"orig_filename": "Myrbach-Rheinfeld_Felician_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9", "author": "", "orig_id": 1410574}}, {"model": "metainfo.source", "pk": 8349, "fields": {"orig_filename": "Myrbach-Rheinfeld_Franz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9", "author": "", "orig_id": 1410575}}, {"model": "metainfo.source", "pk": 8350, "fields": {"orig_filename": "Myrdacz_Gustav_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 9f.", "author": "", "orig_id": 1410576}}, {"model": "metainfo.source", "pk": 8351, "fields": {"orig_filename": "Myrdacz_Paul_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10", "author": "", "orig_id": 1410577}}, {"model": "metainfo.source", "pk": 8352, "fields": {"orig_filename": "Myskovszky_Viktor_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10", "author": "", "orig_id": 1410578}}, {"model": "metainfo.source", "pk": 8353, "fields": {"orig_filename": "Myslbek_Josef-Vaclav_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 10f.", "author": "", "orig_id": 1410579}}, {"model": "metainfo.source", "pk": 8354, "fields": {"orig_filename": "Myslbek_Karel_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 11f.", "author": "", "orig_id": 1410580}}, {"model": "metainfo.source", "pk": 8355, "fields": {"orig_filename": "Mytteis_Viktor_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 12", "author": "", "orig_id": 1410650}}, {"model": "metainfo.source", "pk": 8356, "fields": {"orig_filename": "Naaff_Anton_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 12f.", "author": "", "orig_id": 1410651}}, {"model": "metainfo.source", "pk": 8357, "fields": {"orig_filename": "Nabergoj_Ivan_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 13", "author": "", "orig_id": 1410652}}, {"model": "metainfo.source", "pk": 8358, "fields": {"orig_filename": "Nabielak_Ludwik_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 13f.", "author": "", "orig_id": 1410653}}, {"model": "metainfo.source", "pk": 8359, "fields": {"orig_filename": "Naccari_Fortunato-Luigi_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14", "author": "", "orig_id": 1410654}}, {"model": "metainfo.source", "pk": 8360, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Ferenc_1801_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14", "author": "", "orig_id": 1410655}}, {"model": "metainfo.source", "pk": 8361, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Lipot_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 14f.", "author": "", "orig_id": 1410656}}, {"model": "metainfo.source", "pk": 8362, "fields": {"orig_filename": "Nadasdy-Nadasd-Fogarasfoeld_Mihaly_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410657}}, {"model": "metainfo.source", "pk": 8363, "fields": {"orig_filename": "Nadaskay_Bela_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410658}}, {"model": "metainfo.source", "pk": 8364, "fields": {"orig_filename": "Nadaskay_Lajos_1816_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15", "author": "", "orig_id": 1410659}}, {"model": "metainfo.source", "pk": 8365, "fields": {"orig_filename": "Nadherny_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 15f.", "author": "", "orig_id": 1410660}}, {"model": "metainfo.source", "pk": 8366, "fields": {"orig_filename": "Nadherny_Ignaz_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410661}}, {"model": "metainfo.source", "pk": 8367, "fields": {"orig_filename": "Nadherny_Johann_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410662}}, {"model": "metainfo.source", "pk": 8368, "fields": {"orig_filename": "Nadler_Gustav-Adolf_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16", "author": "", "orig_id": 1410663}}, {"model": "metainfo.source", "pk": 8369, "fields": {"orig_filename": "Nadler_Johann-Friedrich-Ernst_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 16f.", "author": "", "orig_id": 1410664}}, {"model": "metainfo.source", "pk": 8370, "fields": {"orig_filename": "Nadler_Robert_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17", "author": "", "orig_id": 1410665}}, {"model": "metainfo.source", "pk": 8371, "fields": {"orig_filename": "Nadlisek-Bartol_Marica_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17", "author": "", "orig_id": 1410666}}, {"model": "metainfo.source", "pk": 8372, "fields": {"orig_filename": "Nadolski_Otto_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 17f.", "author": "", "orig_id": 1410667}}, {"model": "metainfo.source", "pk": 8373, "fields": {"orig_filename": "Naegle_August_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410668}}, {"model": "metainfo.source", "pk": 8374, "fields": {"orig_filename": "Nagele_Hugo_1880_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19", "author": "", "orig_id": 1410747}}, {"model": "metainfo.source", "pk": 8375, "fields": {"orig_filename": "Nagel_Ignaz_1831_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410669}}, {"model": "metainfo.source", "pk": 8376, "fields": {"orig_filename": "Nagel_Leo_1835_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18", "author": "", "orig_id": 1410670}}, {"model": "metainfo.source", "pk": 8377, "fields": {"orig_filename": "Nagel_Robert-Siegfried_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 18f.", "author": "", "orig_id": 1410671}}, {"model": "metainfo.source", "pk": 8378, "fields": {"orig_filename": "Nagel_Rudolf_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19", "author": "", "orig_id": 1410672}}, {"model": "metainfo.source", "pk": 8379, "fields": {"orig_filename": "Nagiller_Matthaeus_1815_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 19f.", "author": "", "orig_id": 1410748}}, {"model": "metainfo.source", "pk": 8380, "fields": {"orig_filename": "Nagl_Alfred_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20", "author": "", "orig_id": 1410749}}, {"model": "metainfo.source", "pk": 8381, "fields": {"orig_filename": "Nagl_Erasmus_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20", "author": "", "orig_id": 1410750}}, {"model": "metainfo.source", "pk": 8382, "fields": {"orig_filename": "Nagl_Franz-Xaver_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 20f.", "author": "", "orig_id": 1410751}}, {"model": "metainfo.source", "pk": 8383, "fields": {"orig_filename": "Nagl_Johann-Willibald_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21", "author": "", "orig_id": 1410752}}, {"model": "metainfo.source", "pk": 8384, "fields": {"orig_filename": "Nagnzaun_Albert_1777_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21", "author": "", "orig_id": 1410753}}, {"model": "metainfo.source", "pk": 8385, "fields": {"orig_filename": "Nagnzaun_Michael_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 21f.", "author": "", "orig_id": 1410754}}, {"model": "metainfo.source", "pk": 8386, "fields": {"orig_filename": "Nagy-Alsoszopor_Imre_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 25f.", "author": "", "orig_id": 1410839}}, {"model": "metainfo.source", "pk": 8387, "fields": {"orig_filename": "Nagy-Alsoszopor_Ladislaus_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 26", "author": "", "orig_id": 1410840}}, {"model": "metainfo.source", "pk": 8388, "fields": {"orig_filename": "Nagy-Felsoebuek_Pal_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 26f.", "author": "", "orig_id": 1410841}}, {"model": "metainfo.source", "pk": 8389, "fields": {"orig_filename": "Nagy-Felsoeeoer_Ernoe_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 27", "author": "", "orig_id": 1410842}}, {"model": "metainfo.source", "pk": 8390, "fields": {"orig_filename": "Nagy-Felsoegyoer_Ivan_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 27", "author": "", "orig_id": 1410843}}, {"model": "metainfo.source", "pk": 8391, "fields": {"orig_filename": "Nagy-Kaal_Elek_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410844}}, {"model": "metainfo.source", "pk": 8392, "fields": {"orig_filename": "Nagy-Nagyrev_Sandor_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410845}}, {"model": "metainfo.source", "pk": 8393, "fields": {"orig_filename": "Nagy-Sandor_Jozsef_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28", "author": "", "orig_id": 1410846}}, {"model": "metainfo.source", "pk": 8394, "fields": {"orig_filename": "Nagy-Tasnad_Gyula_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 28f.", "author": "", "orig_id": 1410847}}, {"model": "metainfo.source", "pk": 8395, "fields": {"orig_filename": "Nagy-Toeboer-Ethe_Adalbert_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410848}}, {"model": "metainfo.source", "pk": 8396, "fields": {"orig_filename": "Nagy-Toeboer-Ethe_Karl_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410849}}, {"model": "metainfo.source", "pk": 8397, "fields": {"orig_filename": "Nagy-Ueroegd_Miklos_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 29", "author": "", "orig_id": 1410850}}, {"model": "metainfo.source", "pk": 8398, "fields": {"orig_filename": "Nagy-Versegh_Ferenc_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30", "author": "", "orig_id": 1410852}}, {"model": "metainfo.source", "pk": 8399, "fields": {"orig_filename": "Nagyvathy_Janos_1755_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 30", "author": "", "orig_id": 1410853}}, {"model": "metainfo.source", "pk": 8400, "fields": {"orig_filename": "Nagy_Aleksander_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410755}}, {"model": "metainfo.source", "pk": 8401, "fields": {"orig_filename": "Nagy_Dezsoe-Balint_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410756}}, {"model": "metainfo.source", "pk": 8402, "fields": {"orig_filename": "Nagy_Geza_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410757}}, {"model": "metainfo.source", "pk": 8403, "fields": {"orig_filename": "Nagy_Gusztav_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 22", "author": "", "orig_id": 1410758}}, {"model": "metainfo.source", "pk": 8404, "fields": {"orig_filename": "Nagy_Ignac_1810_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410759}}, {"model": "metainfo.source", "pk": 8405, "fields": {"orig_filename": "Nagy_Janos_1809_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410760}}, {"model": "metainfo.source", "pk": 8406, "fields": {"orig_filename": "Nagy_Jozsef_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23", "author": "", "orig_id": 1410761}}, {"model": "metainfo.source", "pk": 8407, "fields": {"orig_filename": "Nagy_Karoly_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 23f.", "author": "", "orig_id": 1410762}}, {"model": "metainfo.source", "pk": 8408, "fields": {"orig_filename": "Nagy_Martin_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410763}}, {"model": "metainfo.source", "pk": 8409, "fields": {"orig_filename": "Nagy_Mihaly_1788_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 31, 1976), S. 24", "author": "", "orig_id": 1410764}}, {"model": "metainfo.source", "pk": 8410, "fields": {"orig_filename": "Muehlmann_Josef_1805_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413378}}, {"model": "metainfo.source", "pk": 8411, "fields": {"orig_filename": "Muehlvenzl_Josef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406f.", "author": "", "orig_id": 1413379}}, {"model": "metainfo.source", "pk": 8412, "fields": {"orig_filename": "Muehringer_Elise_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407", "author": "", "orig_id": 1413380}}, {"model": "metainfo.source", "pk": 8413, "fields": {"orig_filename": "Muellendorff_Julius_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407", "author": "", "orig_id": 1413381}}, {"model": "metainfo.source", "pk": 8414, "fields": {"orig_filename": "Mueller-Elblein_Arthur_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413638}}, {"model": "metainfo.source", "pk": 8415, "fields": {"orig_filename": "Mueller-Guttenbrunn_Herbert_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413639}}, {"model": "metainfo.source", "pk": 8416, "fields": {"orig_filename": "Mueller-Martini_Johanna_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413640}}, {"model": "metainfo.source", "pk": 8417, "fields": {"orig_filename": "Mueller-Martini_Otto_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413641}}, {"model": "metainfo.source", "pk": 8418, "fields": {"orig_filename": "Mueller-Muehlwerth_Alexander_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430", "author": "", "orig_id": 1413642}}, {"model": "metainfo.source", "pk": 8419, "fields": {"orig_filename": "Mueller-Nitterdorf_Adam_1779_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 430f.", "author": "", "orig_id": 1413643}}, {"model": "metainfo.source", "pk": 8420, "fields": {"orig_filename": "Mueller-Roghoj_Heinrich_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431", "author": "", "orig_id": 1413645}}, {"model": "metainfo.source", "pk": 8421, "fields": {"orig_filename": "Mueller-Szentgyoergy_Kalman_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 431f.", "author": "", "orig_id": 1413646}}, {"model": "metainfo.source", "pk": 8422, "fields": {"orig_filename": "Mueller-Thomamuehl_Wenzel_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432", "author": "", "orig_id": 1413647}}, {"model": "metainfo.source", "pk": 8423, "fields": {"orig_filename": "Mueller_Adam_1852_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 407f.", "author": "", "orig_id": 1413382}}, {"model": "metainfo.source", "pk": 8424, "fields": {"orig_filename": "Mueller_Adolf_1801_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 408", "author": "", "orig_id": 1413383}}, {"model": "metainfo.source", "pk": 8425, "fields": {"orig_filename": "Mueller_Anton_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 408f.", "author": "", "orig_id": 1413384}}, {"model": "metainfo.source", "pk": 8426, "fields": {"orig_filename": "Mueller_Anton_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409", "author": "", "orig_id": 1413386}}, {"model": "metainfo.source", "pk": 8427, "fields": {"orig_filename": "Mueller_Anton_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409", "author": "", "orig_id": 1413385}}, {"model": "metainfo.source", "pk": 8428, "fields": {"orig_filename": "Mueller_Christian-Leo_1799_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 409f.", "author": "", "orig_id": 1413387}}, {"model": "metainfo.source", "pk": 8429, "fields": {"orig_filename": "Mueller_David-Heinrich_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 410f.", "author": "", "orig_id": 1413388}}, {"model": "metainfo.source", "pk": 8430, "fields": {"orig_filename": "Mueller_Emil_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411", "author": "", "orig_id": 1413389}}, {"model": "metainfo.source", "pk": 8431, "fields": {"orig_filename": "Mueller_Ernest_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411", "author": "", "orig_id": 1413390}}, {"model": "metainfo.source", "pk": 8432, "fields": {"orig_filename": "Mueller_Ernst_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 411f.", "author": "", "orig_id": 1413391}}, {"model": "metainfo.source", "pk": 8433, "fields": {"orig_filename": "Mueller_Erwin_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412", "author": "", "orig_id": 1413392}}, {"model": "metainfo.source", "pk": 8434, "fields": {"orig_filename": "Mueller_Franz-Anton_1817_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412f.", "author": "", "orig_id": 1413394}}, {"model": "metainfo.source", "pk": 8435, "fields": {"orig_filename": "Mueller_Franz-Josef_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 413", "author": "", "orig_id": 1413458}}, {"model": "metainfo.source", "pk": 8436, "fields": {"orig_filename": "Mueller_Franz-Xaver_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 413f.", "author": "", "orig_id": 1413459}}, {"model": "metainfo.source", "pk": 8437, "fields": {"orig_filename": "Mueller_Franz_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 412", "author": "", "orig_id": 1413393}}, {"model": "metainfo.source", "pk": 8438, "fields": {"orig_filename": "Mueller_Friedrich-Josef_1768_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243", "author": "", "orig_id": 1411789}}, {"model": "metainfo.source", "pk": 8439, "fields": {"orig_filename": "Mueller_Friedrich_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414", "author": "", "orig_id": 1413460}}, {"model": "metainfo.source", "pk": 8440, "fields": {"orig_filename": "Mueller_Friedrich_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414", "author": "", "orig_id": 1413461}}, {"model": "metainfo.source", "pk": 8441, "fields": {"orig_filename": "Mueller_Friedrich_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 414f.", "author": "", "orig_id": 1413462}}, {"model": "metainfo.source", "pk": 8442, "fields": {"orig_filename": "Mueller_Friedrich_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415", "author": "", "orig_id": 1413463}}, {"model": "metainfo.source", "pk": 8443, "fields": {"orig_filename": "Mueller_Georg_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415", "author": "", "orig_id": 1413464}}, {"model": "metainfo.source", "pk": 8444, "fields": {"orig_filename": "Mueller_Georg_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 415f.", "author": "", "orig_id": 1413465}}, {"model": "metainfo.source", "pk": 8445, "fields": {"orig_filename": "Mueller_Gregor_1842_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416", "author": "", "orig_id": 1413466}}, {"model": "metainfo.source", "pk": 8446, "fields": {"orig_filename": "Mueller_Gustav_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416", "author": "", "orig_id": 1413467}}, {"model": "metainfo.source", "pk": 8447, "fields": {"orig_filename": "Mueller_Hans_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 416f.", "author": "", "orig_id": 1413468}}, {"model": "metainfo.source", "pk": 8448, "fields": {"orig_filename": "Mueller_Hans_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 417", "author": "", "orig_id": 1413469}}, {"model": "metainfo.source", "pk": 8449, "fields": {"orig_filename": "Mueller_Hermann-Franz_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 417f.", "author": "", "orig_id": 1413470}}, {"model": "metainfo.source", "pk": 8450, "fields": {"orig_filename": "Mueller_Jan-Bohuslav_1823_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418", "author": "", "orig_id": 1413471}}, {"model": "metainfo.source", "pk": 8451, "fields": {"orig_filename": "Mueller_Joel_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418", "author": "", "orig_id": 1413472}}, {"model": "metainfo.source", "pk": 8452, "fields": {"orig_filename": "Mueller_Johann-Georg_1822_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413476}}, {"model": "metainfo.source", "pk": 8453, "fields": {"orig_filename": "Mueller_Johann-Jakob_1780_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419f.", "author": "", "orig_id": 1413477}}, {"model": "metainfo.source", "pk": 8454, "fields": {"orig_filename": "Mueller_Johann_1799_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 418f.", "author": "", "orig_id": 1413473}}, {"model": "metainfo.source", "pk": 8455, "fields": {"orig_filename": "Mueller_Johann_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413474}}, {"model": "metainfo.source", "pk": 8456, "fields": {"orig_filename": "Mueller_Johann_1832_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 419", "author": "", "orig_id": 1413475}}, {"model": "metainfo.source", "pk": 8457, "fields": {"orig_filename": "Mueller_Josef-Ferdinand_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 421f.", "author": "", "orig_id": 1413546}}, {"model": "metainfo.source", "pk": 8458, "fields": {"orig_filename": "Mueller_Josef-Franz_1811_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413547}}, {"model": "metainfo.source", "pk": 8459, "fields": {"orig_filename": "Mueller_Josefa-Hortensia_1766_1807.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 243", "author": "", "orig_id": 1411790}}, {"model": "metainfo.source", "pk": 8460, "fields": {"orig_filename": "Mueller_Josef_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420", "author": "", "orig_id": 1413478}}, {"model": "metainfo.source", "pk": 8461, "fields": {"orig_filename": "Mueller_Josef_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420", "author": "", "orig_id": 1413479}}, {"model": "metainfo.source", "pk": 8462, "fields": {"orig_filename": "Mueller_Josef_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 420f.", "author": "", "orig_id": 1413480}}, {"model": "metainfo.source", "pk": 8463, "fields": {"orig_filename": "Mueller_Josef_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 421", "author": "", "orig_id": 1413481}}, {"model": "metainfo.source", "pk": 8464, "fields": {"orig_filename": "Mueller_Karl_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413548}}, {"model": "metainfo.source", "pk": 8465, "fields": {"orig_filename": "Mueller_Laurentius_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422", "author": "", "orig_id": 1413549}}, {"model": "metainfo.source", "pk": 8466, "fields": {"orig_filename": "Mueller_Leopold-Karl_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 423f.", "author": "", "orig_id": 1413553}}, {"model": "metainfo.source", "pk": 8467, "fields": {"orig_filename": "Mueller_Leopold_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 422f.", "author": "", "orig_id": 1413551}}, {"model": "metainfo.source", "pk": 8468, "fields": {"orig_filename": "Mueller_Leopold_1870_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 423", "author": "", "orig_id": 1413552}}, {"model": "metainfo.source", "pk": 8469, "fields": {"orig_filename": "Mueller_Marie_1847_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413554}}, {"model": "metainfo.source", "pk": 8470, "fields": {"orig_filename": "Mueller_Otto_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413555}}, {"model": "metainfo.source", "pk": 8471, "fields": {"orig_filename": "Mueller_Otto_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 424", "author": "", "orig_id": 1413556}}, {"model": "metainfo.source", "pk": 8472, "fields": {"orig_filename": "Mueller_Paul_1895_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413557}}, {"model": "metainfo.source", "pk": 8473, "fields": {"orig_filename": "Mueller_Richard_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413558}}, {"model": "metainfo.source", "pk": 8474, "fields": {"orig_filename": "Mueller_Richard_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 425", "author": "", "orig_id": 1413559}}, {"model": "metainfo.source", "pk": 8475, "fields": {"orig_filename": "Mueller_Robert_1887_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426", "author": "", "orig_id": 1413560}}, {"model": "metainfo.source", "pk": 8476, "fields": {"orig_filename": "Mueller_Rudolf_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426", "author": "", "orig_id": 1413561}}, {"model": "metainfo.source", "pk": 8477, "fields": {"orig_filename": "Mueller_Rudolf_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 426f.", "author": "", "orig_id": 1413562}}, {"model": "metainfo.source", "pk": 8478, "fields": {"orig_filename": "Mueller_Rudolf_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 427", "author": "", "orig_id": 1413563}}, {"model": "metainfo.source", "pk": 8479, "fields": {"orig_filename": "Mueller_Sophie_1803_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 427", "author": "", "orig_id": 1413564}}, {"model": "metainfo.source", "pk": 8480, "fields": {"orig_filename": "Mueller_Therese_1791_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428", "author": "", "orig_id": 1413565}}, {"model": "metainfo.source", "pk": 8481, "fields": {"orig_filename": "Mueller_Wenzel_1759_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428", "author": "", "orig_id": 1413566}}, {"model": "metainfo.source", "pk": 8482, "fields": {"orig_filename": "Mueller_Willibald_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 428f.", "author": "", "orig_id": 1413567}}, {"model": "metainfo.source", "pk": 8483, "fields": {"orig_filename": "Mueller_Zeno_1818_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413569}}, {"model": "metainfo.source", "pk": 8484, "fields": {"orig_filename": "Muellner_Alfons_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432", "author": "", "orig_id": 1413648}}, {"model": "metainfo.source", "pk": 8485, "fields": {"orig_filename": "Muellner_Karl_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 432f.", "author": "", "orig_id": 1413649}}, {"model": "metainfo.source", "pk": 8486, "fields": {"orig_filename": "Muellner_Laurenz_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433", "author": "", "orig_id": 1413650}}, {"model": "metainfo.source", "pk": 8487, "fields": {"orig_filename": "Muellner_Matthias_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433", "author": "", "orig_id": 1413651}}, {"model": "metainfo.source", "pk": 8488, "fields": {"orig_filename": "Muench-Bellinghausen_Anton-Rudolf_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 433f.", "author": "", "orig_id": 1413652}}, {"model": "metainfo.source", "pk": 8489, "fields": {"orig_filename": "Muench-Bellinghausen_Eligius-Franz-Josef_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 434", "author": "", "orig_id": 1413653}}, {"model": "metainfo.source", "pk": 8490, "fields": {"orig_filename": "Muench-Bellinghausen_Joachim_1786_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 434f.", "author": "", "orig_id": 1413654}}, {"model": "metainfo.source", "pk": 8491, "fields": {"orig_filename": "Muendel-Feldberg_Josef_1829_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435", "author": "", "orig_id": 1413655}}, {"model": "metainfo.source", "pk": 8492, "fields": {"orig_filename": "Muenichsdorfer_Friedrich_1828_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435", "author": "", "orig_id": 1413656}}, {"model": "metainfo.source", "pk": 8493, "fields": {"orig_filename": "Muennich-Janosvoelgy_Adolf-Gustav_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413658}}, {"model": "metainfo.source", "pk": 8494, "fields": {"orig_filename": "Muennich-Janosvoelgy_Aurel-Adolf_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413659}}, {"model": "metainfo.source", "pk": 8495, "fields": {"orig_filename": "Muennich-Janosvoelgy_Koloman-Bela-Julius_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413727}}, {"model": "metainfo.source", "pk": 8496, "fields": {"orig_filename": "Muennich_Alexander_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 435f.", "author": "", "orig_id": 1413657}}, {"model": "metainfo.source", "pk": 8497, "fields": {"orig_filename": "Muensterberg_Rudolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436", "author": "", "orig_id": 1413728}}, {"model": "metainfo.source", "pk": 8498, "fields": {"orig_filename": "Muenzberg_Johann-Josef_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437f.", "author": "", "orig_id": 1413732}}, {"model": "metainfo.source", "pk": 8499, "fields": {"orig_filename": "Muenz_Bernhard_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 436f.", "author": "", "orig_id": 1413729}}, {"model": "metainfo.source", "pk": 8500, "fields": {"orig_filename": "Muenz_Sigmund_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437", "author": "", "orig_id": 1413730}}, {"model": "metainfo.source", "pk": 8501, "fields": {"orig_filename": "Muenz_Wilhelm_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 437", "author": "", "orig_id": 1413731}}, {"model": "metainfo.source", "pk": 8502, "fields": {"orig_filename": "Mugna_Pietro_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438", "author": "", "orig_id": 1413733}}, {"model": "metainfo.source", "pk": 8503, "fields": {"orig_filename": "Muhic_Pavao_1812_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438", "author": "", "orig_id": 1413734}}, {"model": "metainfo.source", "pk": 8504, "fields": {"orig_filename": "Muhr_Michael_1845_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 438f.", "author": "", "orig_id": 1413735}}, {"model": "metainfo.source", "pk": 8505, "fields": {"orig_filename": "Mulley_Oskar_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413737}}, {"model": "metainfo.source", "pk": 8506, "fields": {"orig_filename": "Mulle_Julius_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413736}}, {"model": "metainfo.source", "pk": 8507, "fields": {"orig_filename": "Mully-Oppenried_Robert_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 439", "author": "", "orig_id": 1413738}}, {"model": "metainfo.source", "pk": 8508, "fields": {"orig_filename": "Munding_Hans_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 440", "author": "", "orig_id": 1413739}}, {"model": "metainfo.source", "pk": 8509, "fields": {"orig_filename": "Mundy_Jaromir_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 440f.", "author": "", "orig_id": 1413741}}, {"model": "metainfo.source", "pk": 8510, "fields": {"orig_filename": "Munganast_Emil_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 441", "author": "", "orig_id": 1413742}}, {"model": "metainfo.source", "pk": 8511, "fields": {"orig_filename": "Moriggl_Alois_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372f.", "author": "", "orig_id": 1412930}}, {"model": "metainfo.source", "pk": 8512, "fields": {"orig_filename": "Moriggl_Augustin_1816_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373", "author": "", "orig_id": 1412931}}, {"model": "metainfo.source", "pk": 8513, "fields": {"orig_filename": "Moriggl_Josef_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373", "author": "", "orig_id": 1412932}}, {"model": "metainfo.source", "pk": 8514, "fields": {"orig_filename": "Moriggl_Simon_1817_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 373f.", "author": "", "orig_id": 1412933}}, {"model": "metainfo.source", "pk": 8515, "fields": {"orig_filename": "Moritsch_Anton_1851_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374", "author": "", "orig_id": 1412934}}, {"model": "metainfo.source", "pk": 8516, "fields": {"orig_filename": "Moro-Lin_Angelo_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 376", "author": "", "orig_id": 1413009}}, {"model": "metainfo.source", "pk": 8517, "fields": {"orig_filename": "Moroder_Franz_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 376f.", "author": "", "orig_id": 1413010}}, {"model": "metainfo.source", "pk": 8518, "fields": {"orig_filename": "Moroder_Josef-Theodor_1846_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413011}}, {"model": "metainfo.source", "pk": 8519, "fields": {"orig_filename": "Moroder_Rudolf_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413012}}, {"model": "metainfo.source", "pk": 8520, "fields": {"orig_filename": "Moroder_Wilhelm_1877_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413013}}, {"model": "metainfo.source", "pk": 8521, "fields": {"orig_filename": "Morosini_Nikolaus_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377", "author": "", "orig_id": 1413014}}, {"model": "metainfo.source", "pk": 8522, "fields": {"orig_filename": "Morozewicz_Jozef-Marian_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 377f.", "author": "", "orig_id": 1413015}}, {"model": "metainfo.source", "pk": 8523, "fields": {"orig_filename": "Moro_Eduard_1790_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374", "author": "", "orig_id": 1412935}}, {"model": "metainfo.source", "pk": 8524, "fields": {"orig_filename": "Moro_Franz_1782_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 374f.", "author": "", "orig_id": 1412936}}, {"model": "metainfo.source", "pk": 8525, "fields": {"orig_filename": "Moro_Max_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375", "author": "", "orig_id": 1412937}}, {"model": "metainfo.source", "pk": 8526, "fields": {"orig_filename": "Moro_Oswin_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375", "author": "", "orig_id": 1412938}}, {"model": "metainfo.source", "pk": 8527, "fields": {"orig_filename": "Moro_Thomas_1786_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 375f.", "author": "", "orig_id": 1413008}}, {"model": "metainfo.source", "pk": 8528, "fields": {"orig_filename": "Morpurgo_Alessandro_1859_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 378", "author": "", "orig_id": 1413016}}, {"model": "metainfo.source", "pk": 8529, "fields": {"orig_filename": "Morpurgo_Benedetto_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 378f.", "author": "", "orig_id": 1413017}}, {"model": "metainfo.source", "pk": 8530, "fields": {"orig_filename": "Morpurgo_Elio_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379", "author": "", "orig_id": 1413018}}, {"model": "metainfo.source", "pk": 8531, "fields": {"orig_filename": "Morpurgo_Emilio_1836_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379", "author": "", "orig_id": 1413019}}, {"model": "metainfo.source", "pk": 8532, "fields": {"orig_filename": "Morpurgo_Giuseppe-Lazzaro_1759_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380", "author": "", "orig_id": 1413021}}, {"model": "metainfo.source", "pk": 8533, "fields": {"orig_filename": "Morpurgo_Giuseppe_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 379f.", "author": "", "orig_id": 1413020}}, {"model": "metainfo.source", "pk": 8534, "fields": {"orig_filename": "Morpurgo_Guido_1868_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380", "author": "", "orig_id": 1413022}}, {"model": "metainfo.source", "pk": 8535, "fields": {"orig_filename": "Morpurgo_Rahel_1790_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 380f.", "author": "", "orig_id": 1413023}}, {"model": "metainfo.source", "pk": 8536, "fields": {"orig_filename": "Morpurgo_Salomone_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413024}}, {"model": "metainfo.source", "pk": 8537, "fields": {"orig_filename": "Morres_Wilhelm_1849_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413026}}, {"model": "metainfo.source", "pk": 8538, "fields": {"orig_filename": "Morre_Karl_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381", "author": "", "orig_id": 1413025}}, {"model": "metainfo.source", "pk": 8539, "fields": {"orig_filename": "Morsolin_Bernardo_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 381f.", "author": "", "orig_id": 1413027}}, {"model": "metainfo.source", "pk": 8540, "fields": {"orig_filename": "Morstadt_Vincenc_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413028}}, {"model": "metainfo.source", "pk": 8541, "fields": {"orig_filename": "Morvay_Gyoezoe_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413029}}, {"model": "metainfo.source", "pk": 8542, "fields": {"orig_filename": "Mor_Giuseppe_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364f.", "author": "", "orig_id": 1412836}}, {"model": "metainfo.source", "pk": 8543, "fields": {"orig_filename": "Moscheles_Ignaz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f.", "author": "", "orig_id": 1413099}}, {"model": "metainfo.source", "pk": 8544, "fields": {"orig_filename": "Moschen_Lamberto_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 383", "author": "", "orig_id": 1413100}}, {"model": "metainfo.source", "pk": 8545, "fields": {"orig_filename": "Mosche_Alfonz_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382", "author": "", "orig_id": 1413030}}, {"model": "metainfo.source", "pk": 8546, "fields": {"orig_filename": "Moschini_Giannantonio_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 383f.", "author": "", "orig_id": 1413101}}, {"model": "metainfo.source", "pk": 8547, "fields": {"orig_filename": "Moscon_Anton-Albert_1783_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413102}}, {"model": "metainfo.source", "pk": 8548, "fields": {"orig_filename": "Moscotto_Giovanni_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413103}}, {"model": "metainfo.source", "pk": 8549, "fields": {"orig_filename": "Mosel_Ignaz-Franz_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413104}}, {"model": "metainfo.source", "pk": 8550, "fields": {"orig_filename": "Mosel_Katharina_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 384", "author": "", "orig_id": 1413105}}, {"model": "metainfo.source", "pk": 8551, "fields": {"orig_filename": "Mosenthal_Salomon-Hermann_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385", "author": "", "orig_id": 1413106}}, {"model": "metainfo.source", "pk": 8552, "fields": {"orig_filename": "Moser-Mossbruch_Ignaz_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413189}}, {"model": "metainfo.source", "pk": 8553, "fields": {"orig_filename": "Moser_Anton_1872_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 385f.", "author": "", "orig_id": 1413108}}, {"model": "metainfo.source", "pk": 8554, "fields": {"orig_filename": "Moser_Bedrich_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413109}}, {"model": "metainfo.source", "pk": 8555, "fields": {"orig_filename": "Moser_Emil_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413110}}, {"model": "metainfo.source", "pk": 8556, "fields": {"orig_filename": "Moser_Ernst-Christian_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386", "author": "", "orig_id": 1413111}}, {"model": "metainfo.source", "pk": 8557, "fields": {"orig_filename": "Moser_Franz-Josef_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 386f.", "author": "", "orig_id": 1413112}}, {"model": "metainfo.source", "pk": 8558, "fields": {"orig_filename": "Moser_James_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413114}}, {"model": "metainfo.source", "pk": 8559, "fields": {"orig_filename": "Moser_Josef_1779_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413116}}, {"model": "metainfo.source", "pk": 8560, "fields": {"orig_filename": "Moser_Josef_1812_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387", "author": "", "orig_id": 1413117}}, {"model": "metainfo.source", "pk": 8561, "fields": {"orig_filename": "Moser_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 387f.", "author": "", "orig_id": 1413118}}, {"model": "metainfo.source", "pk": 8562, "fields": {"orig_filename": "Moser_Karl_1818_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388", "author": "", "orig_id": 1413119}}, {"model": "metainfo.source", "pk": 8563, "fields": {"orig_filename": "Moser_Karl_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388", "author": "", "orig_id": 1413120}}, {"model": "metainfo.source", "pk": 8564, "fields": {"orig_filename": "Moser_Koloman_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 388f.", "author": "", "orig_id": 1413121}}, {"model": "metainfo.source", "pk": 8565, "fields": {"orig_filename": "Moser_Ludwig-Karl_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389", "author": "", "orig_id": 1413123}}, {"model": "metainfo.source", "pk": 8566, "fields": {"orig_filename": "Moser_Ludwig_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389", "author": "", "orig_id": 1413122}}, {"model": "metainfo.source", "pk": 8567, "fields": {"orig_filename": "Moser_Maria-Anna_1756_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 389f.", "author": "", "orig_id": 1413124}}, {"model": "metainfo.source", "pk": 8568, "fields": {"orig_filename": "Moser_Paul_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413187}}, {"model": "metainfo.source", "pk": 8569, "fields": {"orig_filename": "Moser_Richard_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 390", "author": "", "orig_id": 1413188}}, {"model": "metainfo.source", "pk": 8570, "fields": {"orig_filename": "Mosetig-Moorhof_Albert_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 391", "author": "", "orig_id": 1413191}}, {"model": "metainfo.source", "pk": 8571, "fields": {"orig_filename": "Moshamer_Franz-Josef_1800_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 391f.", "author": "", "orig_id": 1413192}}, {"model": "metainfo.source", "pk": 8572, "fields": {"orig_filename": "Mosing_Guido-Konrad_1824_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392", "author": "", "orig_id": 1413195}}, {"model": "metainfo.source", "pk": 8573, "fields": {"orig_filename": "Mosinski-Zagrabvar_Adolf_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392", "author": "", "orig_id": 1413196}}, {"model": "metainfo.source", "pk": 8574, "fields": {"orig_filename": "Moskopp_Kaspar_1869_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 392f.", "author": "", "orig_id": 1413197}}, {"model": "metainfo.source", "pk": 8575, "fields": {"orig_filename": "Mosner_Frantisek_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413198}}, {"model": "metainfo.source", "pk": 8576, "fields": {"orig_filename": "Mossbach_Leopold_1735_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413200}}, {"model": "metainfo.source", "pk": 8577, "fields": {"orig_filename": "Mossig_Johann_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393", "author": "", "orig_id": 1413201}}, {"model": "metainfo.source", "pk": 8578, "fields": {"orig_filename": "Mottl-Standhartner_Henriette_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394", "author": "", "orig_id": 1413204}}, {"model": "metainfo.source", "pk": 8579, "fields": {"orig_filename": "Mottl_Felix_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 393f.", "author": "", "orig_id": 1413203}}, {"model": "metainfo.source", "pk": 8580, "fields": {"orig_filename": "Moudra_Pavla_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394", "author": "", "orig_id": 1413205}}, {"model": "metainfo.source", "pk": 8581, "fields": {"orig_filename": "Mourek_Vaclav-Emanuel_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 394f.", "author": "", "orig_id": 1413206}}, {"model": "metainfo.source", "pk": 8582, "fields": {"orig_filename": "Moy-Sons_Karl-Ernest_1799_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 395", "author": "", "orig_id": 1413207}}, {"model": "metainfo.source", "pk": 8583, "fields": {"orig_filename": "Moysa-Rosochacki_Stefan_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 395", "author": "", "orig_id": 1413208}}, {"model": "metainfo.source", "pk": 8584, "fields": {"orig_filename": "Moyzes_Mikulas_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396", "author": "", "orig_id": 1413280}}, {"model": "metainfo.source", "pk": 8585, "fields": {"orig_filename": "Moyzes_Stefan_1797_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396", "author": "", "orig_id": 1413210}}, {"model": "metainfo.source", "pk": 8586, "fields": {"orig_filename": "Mozart_Franz-Xaver-Wolfgang_1791_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 396f.", "author": "", "orig_id": 1413281}}, {"model": "metainfo.source", "pk": 8587, "fields": {"orig_filename": "Mozart_Joseph_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397", "author": "", "orig_id": 1413282}}, {"model": "metainfo.source", "pk": 8588, "fields": {"orig_filename": "Mozart_Maria-Anna_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397", "author": "", "orig_id": 1413283}}, {"model": "metainfo.source", "pk": 8589, "fields": {"orig_filename": "Mracek_Franz_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 397f.", "author": "", "orig_id": 1413284}}, {"model": "metainfo.source", "pk": 8590, "fields": {"orig_filename": "Mraczek_Joseph-Gustav_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413285}}, {"model": "metainfo.source", "pk": 8591, "fields": {"orig_filename": "Mrazovic_Avram_1756_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413287}}, {"model": "metainfo.source", "pk": 8592, "fields": {"orig_filename": "Mrazovic_Ladislav_1849_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413288}}, {"model": "metainfo.source", "pk": 8593, "fields": {"orig_filename": "Mrazovic_Matija_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413289}}, {"model": "metainfo.source", "pk": 8594, "fields": {"orig_filename": "Mraz_Josef_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 398", "author": "", "orig_id": 1413286}}, {"model": "metainfo.source", "pk": 8595, "fields": {"orig_filename": "Mrstik_Alois_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 399", "author": "", "orig_id": 1413290}}, {"model": "metainfo.source", "pk": 8596, "fields": {"orig_filename": "Mrstik_Vilem_1863_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400", "author": "", "orig_id": 1413291}}, {"model": "metainfo.source", "pk": 8597, "fields": {"orig_filename": "Muchar-Ried_Albert_1786_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 402f.", "author": "", "orig_id": 1413296}}, {"model": "metainfo.source", "pk": 8598, "fields": {"orig_filename": "Mucha_Alfons_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 401f.", "author": "", "orig_id": 1413294}}, {"model": "metainfo.source", "pk": 8599, "fields": {"orig_filename": "Mucha_Viktor_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 402", "author": "", "orig_id": 1413295}}, {"model": "metainfo.source", "pk": 8600, "fields": {"orig_filename": "Much_Matthaeus_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400", "author": "", "orig_id": 1413292}}, {"model": "metainfo.source", "pk": 8601, "fields": {"orig_filename": "Much_Rudolf_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 400f.", "author": "", "orig_id": 1413293}}, {"model": "metainfo.source", "pk": 8602, "fields": {"orig_filename": "Muczkowski_Jozef-Jakub_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 403f.", "author": "", "orig_id": 1413298}}, {"model": "metainfo.source", "pk": 8603, "fields": {"orig_filename": "Muczkowski_Jozef_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 403", "author": "", "orig_id": 1413297}}, {"model": "metainfo.source", "pk": 8604, "fields": {"orig_filename": "Mudrich_Andreas_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413299}}, {"model": "metainfo.source", "pk": 8605, "fields": {"orig_filename": "Mudrony_Soma_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413300}}, {"model": "metainfo.source", "pk": 8606, "fields": {"orig_filename": "Mueck_Alfred_1912_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404", "author": "", "orig_id": 1413371}}, {"model": "metainfo.source", "pk": 8607, "fields": {"orig_filename": "Mueck_Marie_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 404f.", "author": "", "orig_id": 1413372}}, {"model": "metainfo.source", "pk": 8608, "fields": {"orig_filename": "Mueck_Maximilian_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 405", "author": "", "orig_id": 1413373}}, {"model": "metainfo.source", "pk": 8609, "fields": {"orig_filename": "Muehlbacher_Engelbert_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 405f.", "author": "", "orig_id": 1413374}}, {"model": "metainfo.source", "pk": 8610, "fields": {"orig_filename": "Muehlbacher_Josef_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413375}}, {"model": "metainfo.source", "pk": 8611, "fields": {"orig_filename": "Muehlberger_Karl_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 406", "author": "", "orig_id": 1413376}}, {"model": "metainfo.source", "pk": 8612, "fields": {"orig_filename": "Moedlinger_Josef_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338", "author": "", "orig_id": 1412548}}, {"model": "metainfo.source", "pk": 8613, "fields": {"orig_filename": "Moeller_Josef_1848_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338f.", "author": "", "orig_id": 1412549}}, {"model": "metainfo.source", "pk": 8614, "fields": {"orig_filename": "Moeltner_Zeno_1852_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339", "author": "", "orig_id": 1412550}}, {"model": "metainfo.source", "pk": 8615, "fields": {"orig_filename": "Moering_Karl_1810_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339", "author": "", "orig_id": 1412551}}, {"model": "metainfo.source", "pk": 8616, "fields": {"orig_filename": "Moerk-Moerkenstein_Alexander_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 339f.", "author": "", "orig_id": 1412552}}, {"model": "metainfo.source", "pk": 8617, "fields": {"orig_filename": "Moerth_Johann_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412554}}, {"model": "metainfo.source", "pk": 8618, "fields": {"orig_filename": "Moerzinger_Johann_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412555}}, {"model": "metainfo.source", "pk": 8619, "fields": {"orig_filename": "Moeser_Karl_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340f.", "author": "", "orig_id": 1412556}}, {"model": "metainfo.source", "pk": 8620, "fields": {"orig_filename": "Moeser_Wilfried_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341", "author": "", "orig_id": 1412557}}, {"model": "metainfo.source", "pk": 8621, "fields": {"orig_filename": "Moessl_Johannes-Chrysostomus_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341", "author": "", "orig_id": 1412558}}, {"model": "metainfo.source", "pk": 8622, "fields": {"orig_filename": "Moessl_Roman_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 341f.", "author": "", "orig_id": 1412559}}, {"model": "metainfo.source", "pk": 8623, "fields": {"orig_filename": "Moessmer_Josef_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412560}}, {"model": "metainfo.source", "pk": 8624, "fields": {"orig_filename": "Moga_Johann_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412561}}, {"model": "metainfo.source", "pk": 8625, "fields": {"orig_filename": "Moga_Vasile_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342", "author": "", "orig_id": 1412562}}, {"model": "metainfo.source", "pk": 8626, "fields": {"orig_filename": "Moggioli_Umberto_1886_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 342f.", "author": "", "orig_id": 1412563}}, {"model": "metainfo.source", "pk": 8627, "fields": {"orig_filename": "Mohaupt_Franz_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412564}}, {"model": "metainfo.source", "pk": 8628, "fields": {"orig_filename": "Mohl_Adolf_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412565}}, {"model": "metainfo.source", "pk": 8629, "fields": {"orig_filename": "Mohn_Ludwig_1797_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343", "author": "", "orig_id": 1412566}}, {"model": "metainfo.source", "pk": 8630, "fields": {"orig_filename": "Mohorovicic_Andrija_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 343f.", "author": "", "orig_id": 1412567}}, {"model": "metainfo.source", "pk": 8631, "fields": {"orig_filename": "Mohr_Abraham-Mendel_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 344", "author": "", "orig_id": 1412568}}, {"model": "metainfo.source", "pk": 8632, "fields": {"orig_filename": "Mohr_Josef_1792_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 344f.", "author": "", "orig_id": 1412569}}, {"model": "metainfo.source", "pk": 8633, "fields": {"orig_filename": "Mohs_Friedrich_1773_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 345", "author": "", "orig_id": 1412570}}, {"model": "metainfo.source", "pk": 8634, "fields": {"orig_filename": "Mohylnyckyj_Antin-Ljubyc_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 345f.", "author": "", "orig_id": 1412637}}, {"model": "metainfo.source", "pk": 8635, "fields": {"orig_filename": "Moise_Giovanni_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 346", "author": "", "orig_id": 1412638}}, {"model": "metainfo.source", "pk": 8636, "fields": {"orig_filename": "Moissi_Alexander_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 346f.", "author": "", "orig_id": 1412639}}, {"model": "metainfo.source", "pk": 8637, "fields": {"orig_filename": "Mojsisovics-Mojsvar_August_1848_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 347", "author": "", "orig_id": 1412640}}, {"model": "metainfo.source", "pk": 8638, "fields": {"orig_filename": "Mojsisovics-Mojsvar_Georg_1799_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 247f.", "author": "", "orig_id": 1412641}}, {"model": "metainfo.source", "pk": 8639, "fields": {"orig_filename": "Mojsisovics-Mojsvar_Johann-August-Edmund_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 348f.", "author": "", "orig_id": 1412642}}, {"model": "metainfo.source", "pk": 8640, "fields": {"orig_filename": "Moklowski_Kazimierz_1869_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349", "author": "", "orig_id": 1412643}}, {"model": "metainfo.source", "pk": 8641, "fields": {"orig_filename": "Mokry_Endre_1827_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349", "author": "", "orig_id": 1412644}}, {"model": "metainfo.source", "pk": 8642, "fields": {"orig_filename": "Mokry_Otakar_1853_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 349f.", "author": "", "orig_id": 1412645}}, {"model": "metainfo.source", "pk": 8643, "fields": {"orig_filename": "Mokry_Samuel_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412646}}, {"model": "metainfo.source", "pk": 8644, "fields": {"orig_filename": "Molden_Berthold_1853_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412647}}, {"model": "metainfo.source", "pk": 8645, "fields": {"orig_filename": "Moldovan_Gergely_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350", "author": "", "orig_id": 1412648}}, {"model": "metainfo.source", "pk": 8646, "fields": {"orig_filename": "Moldovan_Ioan-Micu_1833_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 350f.", "author": "", "orig_id": 1412649}}, {"model": "metainfo.source", "pk": 8647, "fields": {"orig_filename": "Molin_Johann_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351", "author": "", "orig_id": 1412650}}, {"model": "metainfo.source", "pk": 8648, "fields": {"orig_filename": "Molisch_Hans_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351", "author": "", "orig_id": 1412651}}, {"model": "metainfo.source", "pk": 8649, "fields": {"orig_filename": "Molitor_Simon_1766_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 351f.", "author": "", "orig_id": 1412652}}, {"model": "metainfo.source", "pk": 8650, "fields": {"orig_filename": "Mollinary-Monte-Pastello_Anton_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 354f.", "author": "", "orig_id": 1412732}}, {"model": "metainfo.source", "pk": 8651, "fields": {"orig_filename": "Mollo_Tranquillo_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355", "author": "", "orig_id": 1412733}}, {"model": "metainfo.source", "pk": 8652, "fields": {"orig_filename": "Moll_Franz_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352", "author": "", "orig_id": 1412653}}, {"model": "metainfo.source", "pk": 8653, "fields": {"orig_filename": "Moll_Franz_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352", "author": "", "orig_id": 1412654}}, {"model": "metainfo.source", "pk": 8654, "fields": {"orig_filename": "Moll_Johann_1797_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 352f.", "author": "", "orig_id": 1412655}}, {"model": "metainfo.source", "pk": 8655, "fields": {"orig_filename": "Moll_Karl-Ehrenbert_1760_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 353f.", "author": "", "orig_id": 1412657}}, {"model": "metainfo.source", "pk": 8656, "fields": {"orig_filename": "Moll_Karl_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 353", "author": "", "orig_id": 1412656}}, {"model": "metainfo.source", "pk": 8657, "fields": {"orig_filename": "Moll_Leopold_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 354", "author": "", "orig_id": 1412658}}, {"model": "metainfo.source", "pk": 8658, "fields": {"orig_filename": "Molnar-Kapos_Viktor_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357f.", "author": "", "orig_id": 1412743}}, {"model": "metainfo.source", "pk": 8659, "fields": {"orig_filename": "Molnar_Aladar_1839_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355", "author": "", "orig_id": 1412734}}, {"model": "metainfo.source", "pk": 8660, "fields": {"orig_filename": "Molnar_Antal_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 355f.", "author": "", "orig_id": 1412735}}, {"model": "metainfo.source", "pk": 8661, "fields": {"orig_filename": "Molnar_Daniel-Bohumil_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412736}}, {"model": "metainfo.source", "pk": 8662, "fields": {"orig_filename": "Molnar_Daniel-Bohumil_1856_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412737}}, {"model": "metainfo.source", "pk": 8663, "fields": {"orig_filename": "Molnar_Gyoergy_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356", "author": "", "orig_id": 1412738}}, {"model": "metainfo.source", "pk": 8664, "fields": {"orig_filename": "Molnar_Janos_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412740}}, {"model": "metainfo.source", "pk": 8665, "fields": {"orig_filename": "Molnar_Jan_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 356f.", "author": "", "orig_id": 1412739}}, {"model": "metainfo.source", "pk": 8666, "fields": {"orig_filename": "Molnar_Jozsef_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412741}}, {"model": "metainfo.source", "pk": 8667, "fields": {"orig_filename": "Molnar_Laszlo_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 357", "author": "", "orig_id": 1412742}}, {"model": "metainfo.source", "pk": 8668, "fields": {"orig_filename": "Moltke_Maximlian-Leopold_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358", "author": "", "orig_id": 1412744}}, {"model": "metainfo.source", "pk": 8669, "fields": {"orig_filename": "Mondel_Friedrich_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358", "author": "", "orig_id": 1412745}}, {"model": "metainfo.source", "pk": 8670, "fields": {"orig_filename": "Mone_Albert_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 358f.", "author": "", "orig_id": 1412746}}, {"model": "metainfo.source", "pk": 8671, "fields": {"orig_filename": "Monico_Jacopo_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412748}}, {"model": "metainfo.source", "pk": 8672, "fields": {"orig_filename": "Monschein_Johanna_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1980867}}, {"model": "metainfo.source", "pk": 8673, "fields": {"orig_filename": "Monsorno_Gian-Maria_1768_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412749}}, {"model": "metainfo.source", "pk": 8674, "fields": {"orig_filename": "Montag_Antonie_1835_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359", "author": "", "orig_id": 1412750}}, {"model": "metainfo.source", "pk": 8675, "fields": {"orig_filename": "Montecuccoli-Erri_Rudolf_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 359f.", "author": "", "orig_id": 1412751}}, {"model": "metainfo.source", "pk": 8676, "fields": {"orig_filename": "Montecuccoli-Laderchi_Albert_1802_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 360", "author": "", "orig_id": 1412752}}, {"model": "metainfo.source", "pk": 8677, "fields": {"orig_filename": "Montel-Treuenfest_Johannes_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 360f.", "author": "", "orig_id": 1412753}}, {"model": "metainfo.source", "pk": 8678, "fields": {"orig_filename": "Montenuovo_Alfred_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 361", "author": "", "orig_id": 1412754}}, {"model": "metainfo.source", "pk": 8679, "fields": {"orig_filename": "Montenuovo_Wilhelm-Albrecht_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 361f.", "author": "", "orig_id": 1412825}}, {"model": "metainfo.source", "pk": 8680, "fields": {"orig_filename": "Monti_Alessandro_1818_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362", "author": "", "orig_id": 1412826}}, {"model": "metainfo.source", "pk": 8681, "fields": {"orig_filename": "Monti_Alois_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362", "author": "", "orig_id": 1412827}}, {"model": "metainfo.source", "pk": 8682, "fields": {"orig_filename": "Monti_Lovro_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 362f.", "author": "", "orig_id": 1412828}}, {"model": "metainfo.source", "pk": 8683, "fields": {"orig_filename": "Montleart_Wilhelmine_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412829}}, {"model": "metainfo.source", "pk": 8684, "fields": {"orig_filename": "Montlong_Oskar_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412830}}, {"model": "metainfo.source", "pk": 8685, "fields": {"orig_filename": "Montluisant_Bruno_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363", "author": "", "orig_id": 1412831}}, {"model": "metainfo.source", "pk": 8686, "fields": {"orig_filename": "Montluisant_Johann_1768_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 363f.", "author": "", "orig_id": 1412832}}, {"model": "metainfo.source", "pk": 8687, "fields": {"orig_filename": "Moor-Felsoeoer_Anna_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412833}}, {"model": "metainfo.source", "pk": 8688, "fields": {"orig_filename": "Moosbrugger_Gebhard_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412834}}, {"model": "metainfo.source", "pk": 8689, "fields": {"orig_filename": "Moosmann_Franz-Xaver_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 364", "author": "", "orig_id": 1412835}}, {"model": "metainfo.source", "pk": 8690, "fields": {"orig_filename": "Mor-Sunnegg-Morberg_Therese_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365", "author": "", "orig_id": 1412837}}, {"model": "metainfo.source", "pk": 8691, "fields": {"orig_filename": "Mor-Sunnegg-Morberg_Viktor-Max_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365", "author": "", "orig_id": 1412838}}, {"model": "metainfo.source", "pk": 8692, "fields": {"orig_filename": "Moraczewski_Jedrzej-Edward_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 365f.", "author": "", "orig_id": 1412839}}, {"model": "metainfo.source", "pk": 8693, "fields": {"orig_filename": "Morariu-Andrievici_Constantin_1835_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367", "author": "", "orig_id": 1412843}}, {"model": "metainfo.source", "pk": 8694, "fields": {"orig_filename": "Morariu-Andrievici_Silvestru_1818_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367f.", "author": "", "orig_id": 1412844}}, {"model": "metainfo.source", "pk": 8695, "fields": {"orig_filename": "Morariu_Constantin_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 366f.", "author": "", "orig_id": 1412841}}, {"model": "metainfo.source", "pk": 8696, "fields": {"orig_filename": "Morariu_Victor_1881_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 367", "author": "", "orig_id": 1412842}}, {"model": "metainfo.source", "pk": 8697, "fields": {"orig_filename": "Moravcsik_Ernoe-Emil_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412845}}, {"model": "metainfo.source", "pk": 8698, "fields": {"orig_filename": "Morawetz-Klienfeld_Otto_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412915}}, {"model": "metainfo.source", "pk": 8699, "fields": {"orig_filename": "Morawitz_Karl_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 368", "author": "", "orig_id": 1412916}}, {"model": "metainfo.source", "pk": 8700, "fields": {"orig_filename": "Morawitz_Moritz_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412917}}, {"model": "metainfo.source", "pk": 8701, "fields": {"orig_filename": "Morawski_Kazimierz_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412918}}, {"model": "metainfo.source", "pk": 8702, "fields": {"orig_filename": "Morawski_Marian_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369", "author": "", "orig_id": 1412919}}, {"model": "metainfo.source", "pk": 8703, "fields": {"orig_filename": "Morawski_Seweryn-Antoni_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 369f.", "author": "", "orig_id": 1412920}}, {"model": "metainfo.source", "pk": 8704, "fields": {"orig_filename": "Morawski_Szczesny_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370", "author": "", "orig_id": 1412921}}, {"model": "metainfo.source", "pk": 8705, "fields": {"orig_filename": "Morawski_Theodor_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370", "author": "", "orig_id": 1412922}}, {"model": "metainfo.source", "pk": 8706, "fields": {"orig_filename": "Morawski_Zdzislaw_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 370f.", "author": "", "orig_id": 1412923}}, {"model": "metainfo.source", "pk": 8707, "fields": {"orig_filename": "Moreau_Karl_1758_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371", "author": "", "orig_id": 1412924}}, {"model": "metainfo.source", "pk": 8708, "fields": {"orig_filename": "Moreau_Nikolaus_1805_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371", "author": "", "orig_id": 1412925}}, {"model": "metainfo.source", "pk": 8709, "fields": {"orig_filename": "Morelli_Giovanni_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 371f.", "author": "", "orig_id": 1412926}}, {"model": "metainfo.source", "pk": 8710, "fields": {"orig_filename": "Morelli_Gusztav_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412927}}, {"model": "metainfo.source", "pk": 8711, "fields": {"orig_filename": "Morelly_Franz_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412928}}, {"model": "metainfo.source", "pk": 8712, "fields": {"orig_filename": "Morgenbesser_Aleksander_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 372", "author": "", "orig_id": 1412929}}, {"model": "metainfo.source", "pk": 8713, "fields": {"orig_filename": "Miller-Aichholz_August_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303f.", "author": "", "orig_id": 1413633}}, {"model": "metainfo.source", "pk": 8714, "fields": {"orig_filename": "Miller-Aichholz_Josef-Maria_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 304", "author": "", "orig_id": 1413634}}, {"model": "metainfo.source", "pk": 8715, "fields": {"orig_filename": "Miller-Aichholz_Viktor_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 304f.", "author": "", "orig_id": 1413635}}, {"model": "metainfo.source", "pk": 8716, "fields": {"orig_filename": "Miller-Aichholz_Vinzenz_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 305", "author": "", "orig_id": 1411336}}, {"model": "metainfo.source", "pk": 8717, "fields": {"orig_filename": "Miller-Hauenfels_Albert_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 305f.", "author": "", "orig_id": 1413636}}, {"model": "metainfo.source", "pk": 8718, "fields": {"orig_filename": "Milleret_Jozef_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306", "author": "", "orig_id": 1413637}}, {"model": "metainfo.source", "pk": 8719, "fields": {"orig_filename": "Miller_Jakob-Ferdinand_1749_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 302f.", "author": "", "orig_id": 1413629}}, {"model": "metainfo.source", "pk": 8720, "fields": {"orig_filename": "Miller_Josef-Georg_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413630}}, {"model": "metainfo.source", "pk": 8721, "fields": {"orig_filename": "Miller_Josef-Kassian_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413631}}, {"model": "metainfo.source", "pk": 8722, "fields": {"orig_filename": "Miller_Martin_1769_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 303", "author": "", "orig_id": 1413632}}, {"model": "metainfo.source", "pk": 8723, "fields": {"orig_filename": "Millesi_Johann-Matthias_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306", "author": "", "orig_id": 1413703}}, {"model": "metainfo.source", "pk": 8724, "fields": {"orig_filename": "Mille_Ernst_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300", "author": "", "orig_id": 1413623}}, {"model": "metainfo.source", "pk": 8725, "fields": {"orig_filename": "Millinkovic_Theodor_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 306f.", "author": "", "orig_id": 1413704}}, {"model": "metainfo.source", "pk": 8726, "fields": {"orig_filename": "Milloecker_Karl_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307", "author": "", "orig_id": 1413705}}, {"model": "metainfo.source", "pk": 8727, "fields": {"orig_filename": "Milobar_Fran_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308", "author": "", "orig_id": 1413707}}, {"model": "metainfo.source", "pk": 8728, "fields": {"orig_filename": "Milosevic_Josip_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308", "author": "", "orig_id": 1413709}}, {"model": "metainfo.source", "pk": 8729, "fields": {"orig_filename": "Milota_Albert_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 308f.", "author": "", "orig_id": 1413710}}, {"model": "metainfo.source", "pk": 8730, "fields": {"orig_filename": "Milski_Aleksander_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413712}}, {"model": "metainfo.source", "pk": 8731, "fields": {"orig_filename": "Miltner_Frantisek-Karel_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413713}}, {"model": "metainfo.source", "pk": 8732, "fields": {"orig_filename": "Miltner_Jan-Bohuslav_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413714}}, {"model": "metainfo.source", "pk": 8733, "fields": {"orig_filename": "Miltner_Jindrich-Otakar_1828_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309", "author": "", "orig_id": 1413715}}, {"model": "metainfo.source", "pk": 8734, "fields": {"orig_filename": "Minarelli-Fitzgerald_Alexander_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 309f.", "author": "", "orig_id": 1413716}}, {"model": "metainfo.source", "pk": 8735, "fields": {"orig_filename": "Minarik_Stanislav_1884_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 310", "author": "", "orig_id": 1413717}}, {"model": "metainfo.source", "pk": 8736, "fields": {"orig_filename": "Mingazzi-Modigliano_Eduard_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 310f.", "author": "", "orig_id": 1413718}}, {"model": "metainfo.source", "pk": 8737, "fields": {"orig_filename": "Minichthaler_Joseph_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413719}}, {"model": "metainfo.source", "pk": 8738, "fields": {"orig_filename": "Miniussi_Lorenzo_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413720}}, {"model": "metainfo.source", "pk": 8739, "fields": {"orig_filename": "Mink_Therese_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311", "author": "", "orig_id": 1413721}}, {"model": "metainfo.source", "pk": 8740, "fields": {"orig_filename": "Minor_Jakob_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 311f.", "author": "", "orig_id": 1413722}}, {"model": "metainfo.source", "pk": 8741, "fields": {"orig_filename": "Minutillo_Franz_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 312f.", "author": "", "orig_id": 1413723}}, {"model": "metainfo.source", "pk": 8742, "fields": {"orig_filename": "Miodonski_Adam-Stefan_1861_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 313", "author": "", "orig_id": 1413724}}, {"model": "metainfo.source", "pk": 8743, "fields": {"orig_filename": "Mioni_Ugo_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 313f.", "author": "", "orig_id": 1413725}}, {"model": "metainfo.source", "pk": 8744, "fields": {"orig_filename": "Mirani_Johann-Heinrich_1802_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314", "author": "", "orig_id": 1413726}}, {"model": "metainfo.source", "pk": 8745, "fields": {"orig_filename": "Mirani_Therese_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314", "author": "", "orig_id": 1413796}}, {"model": "metainfo.source", "pk": 8746, "fields": {"orig_filename": "Mircse-Baratos_Janos_1834_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 314f.", "author": "", "orig_id": 1413797}}, {"model": "metainfo.source", "pk": 8747, "fields": {"orig_filename": "Miricka_August_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413798}}, {"model": "metainfo.source", "pk": 8748, "fields": {"orig_filename": "Mirijovsky_Emanuel_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413799}}, {"model": "metainfo.source", "pk": 8749, "fields": {"orig_filename": "Mirtl_Franz_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315", "author": "", "orig_id": 1413800}}, {"model": "metainfo.source", "pk": 8750, "fields": {"orig_filename": "Misar_Olga_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2186744}}, {"model": "metainfo.source", "pk": 8751, "fields": {"orig_filename": "Mischler_Ernst_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 315f.", "author": "", "orig_id": 1413801}}, {"model": "metainfo.source", "pk": 8752, "fields": {"orig_filename": "Misel_Jadwiga-Helena_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 316f.", "author": "", "orig_id": 1413802}}, {"model": "metainfo.source", "pk": 8753, "fields": {"orig_filename": "Mises_Herman_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 317", "author": "", "orig_id": 1413804}}, {"model": "metainfo.source", "pk": 8754, "fields": {"orig_filename": "Mises_Majer-Jerachmiel_1801_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 317f.", "author": "", "orig_id": 1413806}}, {"model": "metainfo.source", "pk": 8755, "fields": {"orig_filename": "Misic_Alojzije_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318", "author": "", "orig_id": 1413808}}, {"model": "metainfo.source", "pk": 8756, "fields": {"orig_filename": "Misik_Stefan_1843_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318", "author": "", "orig_id": 1413809}}, {"model": "metainfo.source", "pk": 8757, "fields": {"orig_filename": "Misiolek_Leon_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 318f.", "author": "", "orig_id": 1413810}}, {"model": "metainfo.source", "pk": 8758, "fields": {"orig_filename": "Miskatovic_Josip_1836_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319", "author": "", "orig_id": 1413811}}, {"model": "metainfo.source", "pk": 8759, "fields": {"orig_filename": "Miskov_Andjeo-Marija_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319", "author": "", "orig_id": 1411340}}, {"model": "metainfo.source", "pk": 8760, "fields": {"orig_filename": "Mislej_Jozef-Peter_1761_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 319f.", "author": "", "orig_id": 1413812}}, {"model": "metainfo.source", "pk": 8761, "fields": {"orig_filename": "Missia_Jakob_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413813}}, {"model": "metainfo.source", "pk": 8762, "fields": {"orig_filename": "Missong_Alexander_1837_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413815}}, {"model": "metainfo.source", "pk": 8763, "fields": {"orig_filename": "Misson_Josef_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320", "author": "", "orig_id": 1413814}}, {"model": "metainfo.source", "pk": 8764, "fields": {"orig_filename": "Mitis_Georg_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 320f.", "author": "", "orig_id": 1413816}}, {"model": "metainfo.source", "pk": 8765, "fields": {"orig_filename": "Mitis_Heinrich_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321", "author": "", "orig_id": 1413817}}, {"model": "metainfo.source", "pk": 8766, "fields": {"orig_filename": "Mitis_Ignaz_1771_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321", "author": "", "orig_id": 1413818}}, {"model": "metainfo.source", "pk": 8767, "fields": {"orig_filename": "Mitis_Silvio_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 321f.", "author": "", "orig_id": 1413819}}, {"model": "metainfo.source", "pk": 8768, "fields": {"orig_filename": "Mitlacher_Wilhelm_1872_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322", "author": "", "orig_id": 1413887}}, {"model": "metainfo.source", "pk": 8769, "fields": {"orig_filename": "Mitrofanovici_Vasile_1831_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322", "author": "", "orig_id": 1413888}}, {"model": "metainfo.source", "pk": 8770, "fields": {"orig_filename": "Mitrovics_Gyula_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413890}}, {"model": "metainfo.source", "pk": 8771, "fields": {"orig_filename": "Mitrovic_Andro_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 322f.", "author": "", "orig_id": 1413889}}, {"model": "metainfo.source", "pk": 8772, "fields": {"orig_filename": "Mitrovsky_Milan-Thomka_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413891}}, {"model": "metainfo.source", "pk": 8773, "fields": {"orig_filename": "Mitscha-Maerheim_Josef_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323", "author": "", "orig_id": 1413892}}, {"model": "metainfo.source", "pk": 8774, "fields": {"orig_filename": "Mitteis_Heinrich_1889_1952.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1462886}}, {"model": "metainfo.source", "pk": 8775, "fields": {"orig_filename": "Mitteis_Ludwig_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 323f.", "author": "", "orig_id": 1413893}}, {"model": "metainfo.source", "pk": 8776, "fields": {"orig_filename": "Mittell_Karl-Josef_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324", "author": "", "orig_id": 1413894}}, {"model": "metainfo.source", "pk": 8777, "fields": {"orig_filename": "Mitterberger_Karl-Philipp_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324f.", "author": "", "orig_id": 1413895}}, {"model": "metainfo.source", "pk": 8778, "fields": {"orig_filename": "Mitterer_Franz-Xaver_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 324f.", "author": "", "orig_id": 1411339}}, {"model": "metainfo.source", "pk": 8779, "fields": {"orig_filename": "Mitterer_Ignaz_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 325", "author": "", "orig_id": 1413896}}, {"model": "metainfo.source", "pk": 8780, "fields": {"orig_filename": "Mitterhofer_Leopold_1761_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 325f.", "author": "", "orig_id": 1413897}}, {"model": "metainfo.source", "pk": 8781, "fields": {"orig_filename": "Mitterhofer_Peter_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 326", "author": "", "orig_id": 1413898}}, {"model": "metainfo.source", "pk": 8782, "fields": {"orig_filename": "Mitterrutzner_Johannes-Chrysostomus_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 326f.", "author": "", "orig_id": 1413899}}, {"model": "metainfo.source", "pk": 8783, "fields": {"orig_filename": "Mitterwurzer_Anton-Friedrich_1844_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 327", "author": "", "orig_id": 1413900}}, {"model": "metainfo.source", "pk": 8784, "fields": {"orig_filename": "Mitterwurzer_Anton-Georg_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 327f.", "author": "", "orig_id": 1413901}}, {"model": "metainfo.source", "pk": 8785, "fields": {"orig_filename": "Mitterwurzer_Wilhelmine_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 328", "author": "", "orig_id": 1413902}}, {"model": "metainfo.source", "pk": 8786, "fields": {"orig_filename": "Mittler_Johann_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 328", "author": "", "orig_id": 1413903}}, {"model": "metainfo.source", "pk": 8787, "fields": {"orig_filename": "Mittrowsky-Mittrowitz-Nemischl_Anton-Friedrich_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413904}}, {"model": "metainfo.source", "pk": 8788, "fields": {"orig_filename": "Mittrowsky-Mittrowitz-Nemischl_Josef_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413905}}, {"model": "metainfo.source", "pk": 8789, "fields": {"orig_filename": "Mitzka_Franz-Xaver_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329", "author": "", "orig_id": 1413906}}, {"model": "metainfo.source", "pk": 8790, "fields": {"orig_filename": "Mladenovic_Georg_1857_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 329f.", "author": "", "orig_id": 1413907}}, {"model": "metainfo.source", "pk": 8791, "fields": {"orig_filename": "Mlakar_Ivan_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330", "author": "", "orig_id": 1413908}}, {"model": "metainfo.source", "pk": 8792, "fields": {"orig_filename": "Mlcoch_Melichar_1833_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330", "author": "", "orig_id": 1413909}}, {"model": "metainfo.source", "pk": 8793, "fields": {"orig_filename": "Mlodnicka_Wanda_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 330f.", "author": "", "orig_id": 1413910}}, {"model": "metainfo.source", "pk": 8794, "fields": {"orig_filename": "Mlodnicki_Karol_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 331", "author": "", "orig_id": 1412457}}, {"model": "metainfo.source", "pk": 8795, "fields": {"orig_filename": "Mlynek_Ludwik_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 331f.", "author": "", "orig_id": 1412458}}, {"model": "metainfo.source", "pk": 8796, "fields": {"orig_filename": "Moar_Francesco_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332", "author": "", "orig_id": 1412460}}, {"model": "metainfo.source", "pk": 8797, "fields": {"orig_filename": "Mochnacki_Bazyli_1777_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 332f.", "author": "", "orig_id": 1412461}}, {"model": "metainfo.source", "pk": 8798, "fields": {"orig_filename": "Mochnacki_Edmund_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333", "author": "", "orig_id": 1412462}}, {"model": "metainfo.source", "pk": 8799, "fields": {"orig_filename": "Mocker_Ferdinand_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333", "author": "", "orig_id": 1412463}}, {"model": "metainfo.source", "pk": 8800, "fields": {"orig_filename": "Mocker_Josef_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 333f.", "author": "", "orig_id": 1412464}}, {"model": "metainfo.source", "pk": 8801, "fields": {"orig_filename": "Mocko_Jan_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334", "author": "", "orig_id": 1412465}}, {"model": "metainfo.source", "pk": 8802, "fields": {"orig_filename": "Mocnik_Franz_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334", "author": "", "orig_id": 1412466}}, {"model": "metainfo.source", "pk": 8803, "fields": {"orig_filename": "Mocsary-Bocsar_Lajos_1826_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335", "author": "", "orig_id": 1412468}}, {"model": "metainfo.source", "pk": 8804, "fields": {"orig_filename": "Mocsary_Sandor_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 334f.", "author": "", "orig_id": 1412467}}, {"model": "metainfo.source", "pk": 8805, "fields": {"orig_filename": "Moczik_Felizian-Josef_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335", "author": "", "orig_id": 1412469}}, {"model": "metainfo.source", "pk": 8806, "fields": {"orig_filename": "Modell_Elisabeth_1820_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 335f.", "author": "", "orig_id": 1412470}}, {"model": "metainfo.source", "pk": 8807, "fields": {"orig_filename": "Modena_Giacomo_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 336", "author": "", "orig_id": 1412471}}, {"model": "metainfo.source", "pk": 8808, "fields": {"orig_filename": "Modena_Gustavo_1803_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 336f.", "author": "", "orig_id": 1412472}}, {"model": "metainfo.source", "pk": 8809, "fields": {"orig_filename": "Modl_Josef_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412473}}, {"model": "metainfo.source", "pk": 8810, "fields": {"orig_filename": "Modl_Viktoria_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412474}}, {"model": "metainfo.source", "pk": 8811, "fields": {"orig_filename": "Modrinjak_Stefan_1774_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337", "author": "", "orig_id": 1412475}}, {"model": "metainfo.source", "pk": 8812, "fields": {"orig_filename": "Moeckeln_Karl_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 337f.", "author": "", "orig_id": 1412477}}, {"model": "metainfo.source", "pk": 8813, "fields": {"orig_filename": "Moeckesch_Martin-Samuel_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 338", "author": "", "orig_id": 1412478}}, {"model": "metainfo.source", "pk": 8814, "fields": {"orig_filename": "Micholitsch_Adalbert_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265", "author": "", "orig_id": 1413179}}, {"model": "metainfo.source", "pk": 8815, "fields": {"orig_filename": "Micklitz_Julius_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 266", "author": "", "orig_id": 1413181}}, {"model": "metainfo.source", "pk": 8816, "fields": {"orig_filename": "Micklitz_Robert_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 266f.", "author": "", "orig_id": 1413182}}, {"model": "metainfo.source", "pk": 8817, "fields": {"orig_filename": "Micklitz_Theodor_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 267", "author": "", "orig_id": 1413183}}, {"model": "metainfo.source", "pk": 8818, "fields": {"orig_filename": "Mickl_Johann_1893_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265f.", "author": "", "orig_id": 1413180}}, {"model": "metainfo.source", "pk": 8819, "fields": {"orig_filename": "Micskey_Imre_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 267f.", "author": "", "orig_id": 1413184}}, {"model": "metainfo.source", "pk": 8820, "fields": {"orig_filename": "Miczynski_Kazimierz_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268", "author": "", "orig_id": 1413185}}, {"model": "metainfo.source", "pk": 8821, "fields": {"orig_filename": "Midelburg_Leopold_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268", "author": "", "orig_id": 1413186}}, {"model": "metainfo.source", "pk": 8822, "fields": {"orig_filename": "Mielichhofer_Alphons_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 268f.", "author": "", "orig_id": 1413258}}, {"model": "metainfo.source", "pk": 8823, "fields": {"orig_filename": "Mielichhofer_Ludwig_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269", "author": "", "orig_id": 1413259}}, {"model": "metainfo.source", "pk": 8824, "fields": {"orig_filename": "Mielichhofer_Mathias_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269", "author": "", "orig_id": 1413260}}, {"model": "metainfo.source", "pk": 8825, "fields": {"orig_filename": "Mieroszewski_Stanislaw_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 269f.", "author": "", "orig_id": 1413261}}, {"model": "metainfo.source", "pk": 8826, "fields": {"orig_filename": "Miesbach_Alois_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 270f.", "author": "", "orig_id": 1413262}}, {"model": "metainfo.source", "pk": 8827, "fields": {"orig_filename": "Mieses_Fabius_1824_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 271", "author": "", "orig_id": 1413263}}, {"model": "metainfo.source", "pk": 8828, "fields": {"orig_filename": "Mieses_Jehuda-Lejb_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 271f.", "author": "", "orig_id": 1413264}}, {"model": "metainfo.source", "pk": 8829, "fields": {"orig_filename": "Mieses_Mathias_1885_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413265}}, {"model": "metainfo.source", "pk": 8830, "fields": {"orig_filename": "Miesowicz_Erwin_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413266}}, {"model": "metainfo.source", "pk": 8831, "fields": {"orig_filename": "Miessl-Treuenstadt_Felix_1778_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413268}}, {"model": "metainfo.source", "pk": 8832, "fields": {"orig_filename": "Miess_Friedrich_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 272", "author": "", "orig_id": 1413267}}, {"model": "metainfo.source", "pk": 8833, "fields": {"orig_filename": "Miethke_Otto-Maria_1881_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413269}}, {"model": "metainfo.source", "pk": 8834, "fields": {"orig_filename": "Mietzl-Stende_August_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413270}}, {"model": "metainfo.source", "pk": 8835, "fields": {"orig_filename": "Migerka_Franz_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 273", "author": "", "orig_id": 1413271}}, {"model": "metainfo.source", "pk": 8836, "fields": {"orig_filename": "Migerka_Helene_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413272}}, {"model": "metainfo.source", "pk": 8837, "fields": {"orig_filename": "Migerka_Katharina_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413273}}, {"model": "metainfo.source", "pk": 8838, "fields": {"orig_filename": "Migotti_Adolf_1850_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274", "author": "", "orig_id": 1413274}}, {"model": "metainfo.source", "pk": 8839, "fields": {"orig_filename": "Mihacevic_Lovro_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 274f.", "author": "", "orig_id": 1413275}}, {"model": "metainfo.source", "pk": 8840, "fields": {"orig_filename": "Mihalik-Hernadszurdok_Jozsef_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275", "author": "", "orig_id": 1413276}}, {"model": "metainfo.source", "pk": 8841, "fields": {"orig_filename": "Mihalik-Madunycz_Janos_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275", "author": "", "orig_id": 1413277}}, {"model": "metainfo.source", "pk": 8842, "fields": {"orig_filename": "Mihaljevic_Benko_1768_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 275f.", "author": "", "orig_id": 1413278}}, {"model": "metainfo.source", "pk": 8843, "fields": {"orig_filename": "Mihaljevic_Michael_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413279}}, {"model": "metainfo.source", "pk": 8844, "fields": {"orig_filename": "Mihalkovics_Geza_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413349}}, {"model": "metainfo.source", "pk": 8845, "fields": {"orig_filename": "Mihalovich_Oedoen_1842_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413353}}, {"model": "metainfo.source", "pk": 8846, "fields": {"orig_filename": "Mihalovic_Antun_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276", "author": "", "orig_id": 1413350}}, {"model": "metainfo.source", "pk": 8847, "fields": {"orig_filename": "Mihalovic_Josip_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 276f.", "author": "", "orig_id": 1413351}}, {"model": "metainfo.source", "pk": 8848, "fields": {"orig_filename": "Mihalyfi_Akos_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413354}}, {"model": "metainfo.source", "pk": 8849, "fields": {"orig_filename": "Mihalyfi_Karoly_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277", "author": "", "orig_id": 1413355}}, {"model": "metainfo.source", "pk": 8850, "fields": {"orig_filename": "Mihalyi-Boegoez_Karoly_1808_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 277f.", "author": "", "orig_id": 1413356}}, {"model": "metainfo.source", "pk": 8851, "fields": {"orig_filename": "Mihanovic-Frankenhardt_Karl_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278", "author": "", "orig_id": 1413357}}, {"model": "metainfo.source", "pk": 8852, "fields": {"orig_filename": "Mihanovic-Petropoljski_Antun_1796_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278", "author": "", "orig_id": 1413358}}, {"model": "metainfo.source", "pk": 8853, "fields": {"orig_filename": "Mihevc_Ignacij_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 278f.", "author": "", "orig_id": 1413359}}, {"model": "metainfo.source", "pk": 8854, "fields": {"orig_filename": "Mihicic_Milica_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 279", "author": "", "orig_id": 1413360}}, {"model": "metainfo.source", "pk": 8855, "fields": {"orig_filename": "Mikan_Johann-Christian_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280", "author": "", "orig_id": 1413363}}, {"model": "metainfo.source", "pk": 8856, "fields": {"orig_filename": "Mika_Sandor_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280", "author": "", "orig_id": 1413362}}, {"model": "metainfo.source", "pk": 8857, "fields": {"orig_filename": "Mikes-Zabola_Kelemen_1820_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281", "author": "", "orig_id": 1413365}}, {"model": "metainfo.source", "pk": 8858, "fields": {"orig_filename": "Mikes_Adolf_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 280f.", "author": "", "orig_id": 1413364}}, {"model": "metainfo.source", "pk": 8859, "fields": {"orig_filename": "Miklavec_Peter_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281", "author": "", "orig_id": 1413366}}, {"model": "metainfo.source", "pk": 8860, "fields": {"orig_filename": "Miklossy_Josef_1792_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 282", "author": "", "orig_id": 1413369}}, {"model": "metainfo.source", "pk": 8861, "fields": {"orig_filename": "Miklosy_Istvan_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283", "author": "", "orig_id": 1413370}}, {"model": "metainfo.source", "pk": 8862, "fields": {"orig_filename": "Miklousic_Tomas_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283", "author": "", "orig_id": 1413436}}, {"model": "metainfo.source", "pk": 8863, "fields": {"orig_filename": "Miko-Hidveg_Imre_1805_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 283f.", "author": "", "orig_id": 1413437}}, {"model": "metainfo.source", "pk": 8864, "fields": {"orig_filename": "Mikolasch_Karol-Henryk_1837_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284", "author": "", "orig_id": 1413438}}, {"model": "metainfo.source", "pk": 8865, "fields": {"orig_filename": "Mikosch_Karl_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284", "author": "", "orig_id": 1413439}}, {"model": "metainfo.source", "pk": 8866, "fields": {"orig_filename": "Mikovec_Ferdinand-Bretislav_1826_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 284f.", "author": "", "orig_id": 1413440}}, {"model": "metainfo.source", "pk": 8867, "fields": {"orig_filename": "Mikovics_Robert_1852_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285", "author": "", "orig_id": 1413441}}, {"model": "metainfo.source", "pk": 8868, "fields": {"orig_filename": "Mikscha_Ferdinand_1829_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413444}}, {"model": "metainfo.source", "pk": 8869, "fields": {"orig_filename": "Mikschowsky_Franz_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413445}}, {"model": "metainfo.source", "pk": 8870, "fields": {"orig_filename": "Miksch_Hans_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285", "author": "", "orig_id": 1413442}}, {"model": "metainfo.source", "pk": 8871, "fields": {"orig_filename": "Miksch_Johann-Alois_1765_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 285f.", "author": "", "orig_id": 1413443}}, {"model": "metainfo.source", "pk": 8872, "fields": {"orig_filename": "Mikse_Mikolas_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413446}}, {"model": "metainfo.source", "pk": 8873, "fields": {"orig_filename": "Miksicek_Matej_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286", "author": "", "orig_id": 1413447}}, {"model": "metainfo.source", "pk": 8874, "fields": {"orig_filename": "Mikszath_Kalman_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 286f.", "author": "", "orig_id": 1413448}}, {"model": "metainfo.source", "pk": 8875, "fields": {"orig_filename": "Mikulas_Josef_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 287f.", "author": "", "orig_id": 1413449}}, {"model": "metainfo.source", "pk": 8876, "fields": {"orig_filename": "Mikulicz-Radecki_Johann_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288f.", "author": "", "orig_id": 1413452}}, {"model": "metainfo.source", "pk": 8877, "fields": {"orig_filename": "Mikulicz-Radecki_Valerian_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289", "author": "", "orig_id": 1413453}}, {"model": "metainfo.source", "pk": 8878, "fields": {"orig_filename": "Mikulic_Martin_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288", "author": "", "orig_id": 1413451}}, {"model": "metainfo.source", "pk": 8879, "fields": {"orig_filename": "Mikuli_Karl_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 288", "author": "", "orig_id": 1413450}}, {"model": "metainfo.source", "pk": 8880, "fields": {"orig_filename": "Mikulowski-Pomorski_Jozef_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289", "author": "", "orig_id": 1413454}}, {"model": "metainfo.source", "pk": 8881, "fields": {"orig_filename": "Mik_Josef_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 279f.", "author": "", "orig_id": 1413361}}, {"model": "metainfo.source", "pk": 8882, "fields": {"orig_filename": "Miladinovic_Milena_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 289f.", "author": "", "orig_id": 1413455}}, {"model": "metainfo.source", "pk": 8883, "fields": {"orig_filename": "Milakovic_Josip_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290", "author": "", "orig_id": 1413456}}, {"model": "metainfo.source", "pk": 8884, "fields": {"orig_filename": "Milanes_Wolfgang_1767_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290f.", "author": "", "orig_id": 1413526}}, {"model": "metainfo.source", "pk": 8885, "fields": {"orig_filename": "Milan_Adele_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 290", "author": "", "orig_id": 1413457}}, {"model": "metainfo.source", "pk": 8886, "fields": {"orig_filename": "Milasinovic_Franjo_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291", "author": "", "orig_id": 1413527}}, {"model": "metainfo.source", "pk": 8887, "fields": {"orig_filename": "Milaszewski_Adam_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291", "author": "", "orig_id": 1413528}}, {"model": "metainfo.source", "pk": 8888, "fields": {"orig_filename": "Milcetic_Ivan_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 291f.", "author": "", "orig_id": 1413529}}, {"model": "metainfo.source", "pk": 8889, "fields": {"orig_filename": "Milcinovic_Andrija_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292", "author": "", "orig_id": 1413530}}, {"model": "metainfo.source", "pk": 8890, "fields": {"orig_filename": "Milcinski_Fran_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292", "author": "", "orig_id": 1413531}}, {"model": "metainfo.source", "pk": 8891, "fields": {"orig_filename": "Milder-Hauptmann_Anna-Pauline_1785_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 294", "author": "", "orig_id": 1413535}}, {"model": "metainfo.source", "pk": 8892, "fields": {"orig_filename": "Milde_Hugo_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 292f.", "author": "", "orig_id": 1413532}}, {"model": "metainfo.source", "pk": 8893, "fields": {"orig_filename": "Milde_Johann_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 293", "author": "", "orig_id": 1413533}}, {"model": "metainfo.source", "pk": 8894, "fields": {"orig_filename": "Milde_Vinzenz-Eduard_1777_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 293f.", "author": "", "orig_id": 1413534}}, {"model": "metainfo.source", "pk": 8895, "fields": {"orig_filename": "Mildner_Moritz_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 294f.", "author": "", "orig_id": 1413536}}, {"model": "metainfo.source", "pk": 8896, "fields": {"orig_filename": "Mildschuh_Vilibald_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413537}}, {"model": "metainfo.source", "pk": 8897, "fields": {"orig_filename": "Miler_Ferdo-Zivko_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413538}}, {"model": "metainfo.source", "pk": 8898, "fields": {"orig_filename": "Mileta_Jeronim_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295", "author": "", "orig_id": 1413539}}, {"model": "metainfo.source", "pk": 8899, "fields": {"orig_filename": "Miletic_Ambro_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 295f.", "author": "", "orig_id": 1413540}}, {"model": "metainfo.source", "pk": 8900, "fields": {"orig_filename": "Miletic_Stjepan_1868_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296", "author": "", "orig_id": 1413541}}, {"model": "metainfo.source", "pk": 8901, "fields": {"orig_filename": "Miletic_Svetozar_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296", "author": "", "orig_id": 1413542}}, {"model": "metainfo.source", "pk": 8902, "fields": {"orig_filename": "Milewski_Jozef_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 296f.", "author": "", "orig_id": 1413543}}, {"model": "metainfo.source", "pk": 8903, "fields": {"orig_filename": "Milicevic_Franjo_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297f.", "author": "", "orig_id": 1413617}}, {"model": "metainfo.source", "pk": 8904, "fields": {"orig_filename": "Milic_Jozef-Rudolf_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297", "author": "", "orig_id": 1413544}}, {"model": "metainfo.source", "pk": 8905, "fields": {"orig_filename": "Milic_Vicko_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 297", "author": "", "orig_id": 1413545}}, {"model": "metainfo.source", "pk": 8906, "fields": {"orig_filename": "Milinovic_Simun_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 298", "author": "", "orig_id": 1413618}}, {"model": "metainfo.source", "pk": 8907, "fields": {"orig_filename": "Militzer_Hermann_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 298f.", "author": "", "orig_id": 1413619}}, {"model": "metainfo.source", "pk": 8908, "fields": {"orig_filename": "Millanich_Alois_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299", "author": "", "orig_id": 1413620}}, {"model": "metainfo.source", "pk": 8909, "fields": {"orig_filename": "Millard_Edward_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299", "author": "", "orig_id": 1413621}}, {"model": "metainfo.source", "pk": 8910, "fields": {"orig_filename": "Millauer_Franz-Xaver_1784_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 299f.", "author": "", "orig_id": 1413622}}, {"model": "metainfo.source", "pk": 8911, "fields": {"orig_filename": "Milleker_Felix_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300", "author": "", "orig_id": 1413624}}, {"model": "metainfo.source", "pk": 8912, "fields": {"orig_filename": "Millemoth_Anton_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 300f.", "author": "", "orig_id": 1413625}}, {"model": "metainfo.source", "pk": 8913, "fields": {"orig_filename": "Millenkovich_Benno_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301", "author": "", "orig_id": 1413626}}, {"model": "metainfo.source", "pk": 8914, "fields": {"orig_filename": "Millenkovich_Max_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301", "author": "", "orig_id": 1413627}}, {"model": "metainfo.source", "pk": 8915, "fields": {"orig_filename": "Millenkovich_Stefan_1836_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 301f.", "author": "", "orig_id": 1413628}}, {"model": "metainfo.source", "pk": 8916, "fields": {"orig_filename": "Merkl-Reinsee_Jakob_1814_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412803}}, {"model": "metainfo.source", "pk": 8917, "fields": {"orig_filename": "Merklas_Wenzel_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231f.", "author": "", "orig_id": 1412804}}, {"model": "metainfo.source", "pk": 8918, "fields": {"orig_filename": "Merkle_Meinrad_1781_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412805}}, {"model": "metainfo.source", "pk": 8919, "fields": {"orig_filename": "Merkl_Adolf-Julius_1890_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1469550}}, {"model": "metainfo.source", "pk": 8920, "fields": {"orig_filename": "Merkl_Rudolf_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412802}}, {"model": "metainfo.source", "pk": 8921, "fields": {"orig_filename": "Merkt_Eduard_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412806}}, {"model": "metainfo.source", "pk": 8922, "fields": {"orig_filename": "Merk_Ludwig_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230f.", "author": "", "orig_id": 1412731}}, {"model": "metainfo.source", "pk": 8923, "fields": {"orig_filename": "Merlato_Gaetano_1807_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 232", "author": "", "orig_id": 1412807}}, {"model": "metainfo.source", "pk": 8924, "fields": {"orig_filename": "Merlet_Alexander-Erwin_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412813}}, {"model": "metainfo.source", "pk": 8925, "fields": {"orig_filename": "Merlitschek_Rita_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412814}}, {"model": "metainfo.source", "pk": 8926, "fields": {"orig_filename": "Merode_Karl_1853_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412815}}, {"model": "metainfo.source", "pk": 8927, "fields": {"orig_filename": "Mersich_Johann_1862_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234", "author": "", "orig_id": 1412817}}, {"model": "metainfo.source", "pk": 8928, "fields": {"orig_filename": "Mersich_Martin_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234", "author": "", "orig_id": 1412818}}, {"model": "metainfo.source", "pk": 8929, "fields": {"orig_filename": "Mersich_Matthaeus_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 234f.", "author": "", "orig_id": 1412819}}, {"model": "metainfo.source", "pk": 8930, "fields": {"orig_filename": "Mersi_Andreas_1779_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 233", "author": "", "orig_id": 1412816}}, {"model": "metainfo.source", "pk": 8931, "fields": {"orig_filename": "Merta_Anton_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412820}}, {"model": "metainfo.source", "pk": 8932, "fields": {"orig_filename": "Merta_Emanuel_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412821}}, {"model": "metainfo.source", "pk": 8933, "fields": {"orig_filename": "Mertens_Franz_1840_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412823}}, {"model": "metainfo.source", "pk": 8934, "fields": {"orig_filename": "Mertens_Heinrich_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412824}}, {"model": "metainfo.source", "pk": 8935, "fields": {"orig_filename": "Mertens_Karl_1803_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412890}}, {"model": "metainfo.source", "pk": 8936, "fields": {"orig_filename": "Mertens_Ludwig_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236", "author": "", "orig_id": 1412891}}, {"model": "metainfo.source", "pk": 8937, "fields": {"orig_filename": "Merten_Eduard_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 235", "author": "", "orig_id": 1412822}}, {"model": "metainfo.source", "pk": 8938, "fields": {"orig_filename": "Mertha_Rudolf_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412893}}, {"model": "metainfo.source", "pk": 8939, "fields": {"orig_filename": "Merth_Bernhard_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 236f.", "author": "", "orig_id": 1412892}}, {"model": "metainfo.source", "pk": 8940, "fields": {"orig_filename": "Mertz_Johann-Kaspar_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412894}}, {"model": "metainfo.source", "pk": 8941, "fields": {"orig_filename": "Merunowicz_Teofil_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237", "author": "", "orig_id": 1412895}}, {"model": "metainfo.source", "pk": 8942, "fields": {"orig_filename": "Merveldt_Franz_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 237f.", "author": "", "orig_id": 1412896}}, {"model": "metainfo.source", "pk": 8943, "fields": {"orig_filename": "Merwart_Karl_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238", "author": "", "orig_id": 1412897}}, {"model": "metainfo.source", "pk": 8944, "fields": {"orig_filename": "Merwart_Paul_1855_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238", "author": "", "orig_id": 1412898}}, {"model": "metainfo.source", "pk": 8945, "fields": {"orig_filename": "Merz_Alfred_1880_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 238f.", "author": "", "orig_id": 1412899}}, {"model": "metainfo.source", "pk": 8946, "fields": {"orig_filename": "Meschendoerfer_Josef-Traugott_1832_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 239", "author": "", "orig_id": 1412900}}, {"model": "metainfo.source", "pk": 8947, "fields": {"orig_filename": "Mesesnel_France_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 239f.", "author": "", "orig_id": 1412901}}, {"model": "metainfo.source", "pk": 8948, "fields": {"orig_filename": "Mesic_Matija_1826_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 240", "author": "", "orig_id": 1412902}}, {"model": "metainfo.source", "pk": 8949, "fields": {"orig_filename": "Mesk_Josef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 240f.", "author": "", "orig_id": 1412903}}, {"model": "metainfo.source", "pk": 8950, "fields": {"orig_filename": "Mesota_Ioan-G_1837_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241", "author": "", "orig_id": 1412904}}, {"model": "metainfo.source", "pk": 8951, "fields": {"orig_filename": "Messenboeck_Hubert_1887_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241", "author": "", "orig_id": 1412905}}, {"model": "metainfo.source", "pk": 8952, "fields": {"orig_filename": "Messenhauser_Wenzel-Georg_1811_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 241f.", "author": "", "orig_id": 1412906}}, {"model": "metainfo.source", "pk": 8953, "fields": {"orig_filename": "Messerklinger_Johann_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242", "author": "", "orig_id": 1412908}}, {"model": "metainfo.source", "pk": 8954, "fields": {"orig_filename": "Messer_Max_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242", "author": "", "orig_id": 1412907}}, {"model": "metainfo.source", "pk": 8955, "fields": {"orig_filename": "Messmer_Alois_1822_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 242f.", "author": "", "orig_id": 1412909}}, {"model": "metainfo.source", "pk": 8956, "fields": {"orig_filename": "Messner_Anton_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412910}}, {"model": "metainfo.source", "pk": 8957, "fields": {"orig_filename": "Messner_Josef_1822_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412911}}, {"model": "metainfo.source", "pk": 8958, "fields": {"orig_filename": "Messner_Josef_1837_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243", "author": "", "orig_id": 1412912}}, {"model": "metainfo.source", "pk": 8959, "fields": {"orig_filename": "Messner_Paul_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 243f.", "author": "", "orig_id": 1412913}}, {"model": "metainfo.source", "pk": 8960, "fields": {"orig_filename": "Messner_Theresia_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 244", "author": "", "orig_id": 1412914}}, {"model": "metainfo.source", "pk": 8961, "fields": {"orig_filename": "Mestan_Franz_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 244f.", "author": "", "orig_id": 1412985}}, {"model": "metainfo.source", "pk": 8962, "fields": {"orig_filename": "Mestrozi_Paul_1771_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 245", "author": "", "orig_id": 1412986}}, {"model": "metainfo.source", "pk": 8963, "fields": {"orig_filename": "Mestrozi_Paul_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 245f.", "author": "", "orig_id": 1412987}}, {"model": "metainfo.source", "pk": 8964, "fields": {"orig_filename": "Meszaros_Lazar_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246", "author": "", "orig_id": 1412988}}, {"model": "metainfo.source", "pk": 8965, "fields": {"orig_filename": "Meszoely_Geza_1844_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246", "author": "", "orig_id": 1412989}}, {"model": "metainfo.source", "pk": 8966, "fields": {"orig_filename": "Metelko_Fran_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 246f.", "author": "", "orig_id": 1412990}}, {"model": "metainfo.source", "pk": 8967, "fields": {"orig_filename": "Metianu_Ioan_1828_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247", "author": "", "orig_id": 1412991}}, {"model": "metainfo.source", "pk": 8968, "fields": {"orig_filename": "Metnitz_Gustav_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247", "author": "", "orig_id": 1412992}}, {"model": "metainfo.source", "pk": 8969, "fields": {"orig_filename": "Metschl_Karl_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 247f.", "author": "", "orig_id": 1412993}}, {"model": "metainfo.source", "pk": 8970, "fields": {"orig_filename": "Mettelet_Anatol_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 248", "author": "", "orig_id": 1412994}}, {"model": "metainfo.source", "pk": 8971, "fields": {"orig_filename": "Metternich-Sandor_Pauline_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 248f.", "author": "", "orig_id": 1412995}}, {"model": "metainfo.source", "pk": 8972, "fields": {"orig_filename": "Metternich-Winneburg_Klemens-Wenzel-Lothar_1773_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 249f.", "author": "", "orig_id": 1412996}}, {"model": "metainfo.source", "pk": 8973, "fields": {"orig_filename": "Metternich-Winneburg_Richard-Klemens_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250", "author": "", "orig_id": 1412997}}, {"model": "metainfo.source", "pk": 8974, "fields": {"orig_filename": "Metz-Spondalunga_Rudolf_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250f.", "author": "", "orig_id": 1412999}}, {"model": "metainfo.source", "pk": 8975, "fields": {"orig_filename": "Metzburg_Johann_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251", "author": "", "orig_id": 1413000}}, {"model": "metainfo.source", "pk": 8976, "fields": {"orig_filename": "Metzger_Hugo_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251", "author": "", "orig_id": 1413001}}, {"model": "metainfo.source", "pk": 8977, "fields": {"orig_filename": "Metzger_Josef_1870_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 251f.", "author": "", "orig_id": 1413002}}, {"model": "metainfo.source", "pk": 8978, "fields": {"orig_filename": "Metzger_Max-Josef_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252", "author": "", "orig_id": 1413003}}, {"model": "metainfo.source", "pk": 8979, "fields": {"orig_filename": "Metzler-Loewy_Pauline_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252f.", "author": "", "orig_id": 1413005}}, {"model": "metainfo.source", "pk": 8980, "fields": {"orig_filename": "Metzler_Johann-Jakob_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 252", "author": "", "orig_id": 1413004}}, {"model": "metainfo.source", "pk": 8981, "fields": {"orig_filename": "Metzner_Hugo_1882_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253", "author": "", "orig_id": 1413006}}, {"model": "metainfo.source", "pk": 8982, "fields": {"orig_filename": "Metzner_Karl_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253", "author": "", "orig_id": 1413007}}, {"model": "metainfo.source", "pk": 8983, "fields": {"orig_filename": "Metz_Karl_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 250", "author": "", "orig_id": 1412998}}, {"model": "metainfo.source", "pk": 8984, "fields": {"orig_filename": "Meurer_Julius_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 253f.", "author": "", "orig_id": 1413077}}, {"model": "metainfo.source", "pk": 8985, "fields": {"orig_filename": "Meusburger_Karl_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 254", "author": "", "orig_id": 1413078}}, {"model": "metainfo.source", "pk": 8986, "fields": {"orig_filename": "Meyndt_Georg_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 254f.", "author": "", "orig_id": 1413079}}, {"model": "metainfo.source", "pk": 8987, "fields": {"orig_filename": "Meynert_Hermann-Guenther_1808_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 255", "author": "", "orig_id": 1413080}}, {"model": "metainfo.source", "pk": 8988, "fields": {"orig_filename": "Meynert_Theodor_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 255f.", "author": "", "orig_id": 1413081}}, {"model": "metainfo.source", "pk": 8989, "fields": {"orig_filename": "Meznik_Anton_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 256", "author": "", "orig_id": 1413082}}, {"model": "metainfo.source", "pk": 8990, "fields": {"orig_filename": "Miari_Antonio_1754_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 256", "author": "", "orig_id": 1413083}}, {"model": "metainfo.source", "pk": 8991, "fields": {"orig_filename": "Micatek_Ludovit_1874_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413084}}, {"model": "metainfo.source", "pk": 8992, "fields": {"orig_filename": "Miceu_Giuseppe_1873_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413085}}, {"model": "metainfo.source", "pk": 8993, "fields": {"orig_filename": "Michaelis_Franz_1841_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257f.", "author": "", "orig_id": 1413087}}, {"model": "metainfo.source", "pk": 8994, "fields": {"orig_filename": "Michaelis_Johann_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413088}}, {"model": "metainfo.source", "pk": 8995, "fields": {"orig_filename": "Michaelis_Ludwig-Johann_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413089}}, {"model": "metainfo.source", "pk": 8996, "fields": {"orig_filename": "Michael_Emil_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 257", "author": "", "orig_id": 1413086}}, {"model": "metainfo.source", "pk": 8997, "fields": {"orig_filename": "Michalek_Ludwig_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258", "author": "", "orig_id": 1413090}}, {"model": "metainfo.source", "pk": 8998, "fields": {"orig_filename": "Michalitschke_Anton_1861_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 258f.", "author": "", "orig_id": 1413091}}, {"model": "metainfo.source", "pk": 8999, "fields": {"orig_filename": "Michalovich_Johann_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259", "author": "", "orig_id": 1413092}}, {"model": "metainfo.source", "pk": 9000, "fields": {"orig_filename": "Michalowski_Jozef_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259", "author": "", "orig_id": 1413093}}, {"model": "metainfo.source", "pk": 9001, "fields": {"orig_filename": "Michalowski_Piotr_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 259f.", "author": "", "orig_id": 1413094}}, {"model": "metainfo.source", "pk": 9002, "fields": {"orig_filename": "Michalski_Konstanty_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 260", "author": "", "orig_id": 1413095}}, {"model": "metainfo.source", "pk": 9003, "fields": {"orig_filename": "Michalski_Michal_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 260f.", "author": "", "orig_id": 1413096}}, {"model": "metainfo.source", "pk": 9004, "fields": {"orig_filename": "Michejda_Franciszek_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261", "author": "", "orig_id": 1413097}}, {"model": "metainfo.source", "pk": 9005, "fields": {"orig_filename": "Michejda_Jan_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261", "author": "", "orig_id": 1413098}}, {"model": "metainfo.source", "pk": 9006, "fields": {"orig_filename": "Michejda_Wladyslaw_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 261f.", "author": "", "orig_id": 1413166}}, {"model": "metainfo.source", "pk": 9007, "fields": {"orig_filename": "Michelazzi_Agostino_1732_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413169}}, {"model": "metainfo.source", "pk": 9008, "fields": {"orig_filename": "Michelic_Anton_1748_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413170}}, {"model": "metainfo.source", "pk": 9009, "fields": {"orig_filename": "Michelstaedter_Carlo_1887_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262f.", "author": "", "orig_id": 1413171}}, {"model": "metainfo.source", "pk": 9010, "fields": {"orig_filename": "Michel_Adalbert-Theodor_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413167}}, {"model": "metainfo.source", "pk": 9011, "fields": {"orig_filename": "Michel_Philipp-Adalbert_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 262", "author": "", "orig_id": 1413168}}, {"model": "metainfo.source", "pk": 9012, "fields": {"orig_filename": "Michetschlaeger_Heinrich_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263", "author": "", "orig_id": 1413172}}, {"model": "metainfo.source", "pk": 9013, "fields": {"orig_filename": "Micheuz_Jurij_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263", "author": "", "orig_id": 1413173}}, {"model": "metainfo.source", "pk": 9014, "fields": {"orig_filename": "Michl_Frantisek_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 263f.", "author": "", "orig_id": 1413174}}, {"model": "metainfo.source", "pk": 9015, "fields": {"orig_filename": "Michl_Josef-Vaclav_1810_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264", "author": "", "orig_id": 1413175}}, {"model": "metainfo.source", "pk": 9016, "fields": {"orig_filename": "Michl_Leopold_1764_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264", "author": "", "orig_id": 1413176}}, {"model": "metainfo.source", "pk": 9017, "fields": {"orig_filename": "Michna-Watzenau_Emanuel_1772_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 264f.", "author": "", "orig_id": 1413177}}, {"model": "metainfo.source", "pk": 9018, "fields": {"orig_filename": "Michnay_Andreas-Daniel_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 265", "author": "", "orig_id": 1413178}}, {"model": "metainfo.source", "pk": 9019, "fields": {"orig_filename": "Meichl_Georg_1791_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193f.", "author": "", "orig_id": 1413787}}, {"model": "metainfo.source", "pk": 9020, "fields": {"orig_filename": "Meilbek_Josef_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 194", "author": "", "orig_id": 1413788}}, {"model": "metainfo.source", "pk": 9021, "fields": {"orig_filename": "Meiller_Andreas_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 194f.", "author": "", "orig_id": 1413789}}, {"model": "metainfo.source", "pk": 9022, "fields": {"orig_filename": "Meineckova_Tylda_1888_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195", "author": "", "orig_id": 1413791}}, {"model": "metainfo.source", "pk": 9023, "fields": {"orig_filename": "Meinert_Joseph-Georg_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 195f.", "author": "", "orig_id": 1413792}}, {"model": "metainfo.source", "pk": 9024, "fields": {"orig_filename": "Meingast_Adalbert-Mathias_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 196", "author": "", "orig_id": 1413793}}, {"model": "metainfo.source", "pk": 9025, "fields": {"orig_filename": "Meinl_Julius_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 196f.", "author": "", "orig_id": 1413794}}, {"model": "metainfo.source", "pk": 9026, "fields": {"orig_filename": "Meinong-Handschuchsheim_Alexius_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 197f.", "author": "", "orig_id": 1413795}}, {"model": "metainfo.source", "pk": 9027, "fields": {"orig_filename": "Meinong-Handschuchsheim_Rafael_1849_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413865}}, {"model": "metainfo.source", "pk": 9028, "fields": {"orig_filename": "Meinzinger-Meinzingen_Franz_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413866}}, {"model": "metainfo.source", "pk": 9029, "fields": {"orig_filename": "Meisels_Dow-Beer_1798_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198f.", "author": "", "orig_id": 1413868}}, {"model": "metainfo.source", "pk": 9030, "fields": {"orig_filename": "Meisel_Franz_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 198", "author": "", "orig_id": 1413867}}, {"model": "metainfo.source", "pk": 9031, "fields": {"orig_filename": "Meisl_Hugo_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 199", "author": "", "orig_id": 1413869}}, {"model": "metainfo.source", "pk": 9032, "fields": {"orig_filename": "Meisl_Karl_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 199f.", "author": "", "orig_id": 1413870}}, {"model": "metainfo.source", "pk": 9033, "fields": {"orig_filename": "Meissl_Emerich_1855_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200", "author": "", "orig_id": 1413871}}, {"model": "metainfo.source", "pk": 9034, "fields": {"orig_filename": "Meissner_Alfred_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200", "author": "", "orig_id": 1413873}}, {"model": "metainfo.source", "pk": 9035, "fields": {"orig_filename": "Meissner_Alfred_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 200f.", "author": "", "orig_id": 1413872}}, {"model": "metainfo.source", "pk": 9036, "fields": {"orig_filename": "Meissner_Franziska_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 201", "author": "", "orig_id": 1413874}}, {"model": "metainfo.source", "pk": 9037, "fields": {"orig_filename": "Meissner_Johannes-Friedrich_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 201f.", "author": "", "orig_id": 1413875}}, {"model": "metainfo.source", "pk": 9038, "fields": {"orig_filename": "Meissner_Karl-Ludwig_1809_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202", "author": "", "orig_id": 1412873}}, {"model": "metainfo.source", "pk": 9039, "fields": {"orig_filename": "Meissner_Leopold-Florian_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202", "author": "", "orig_id": 1413876}}, {"model": "metainfo.source", "pk": 9040, "fields": {"orig_filename": "Meissner_Paul-Traugott_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 202f.", "author": "", "orig_id": 1413877}}, {"model": "metainfo.source", "pk": 9041, "fields": {"orig_filename": "Meister_Johann_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203", "author": "", "orig_id": 1413878}}, {"model": "metainfo.source", "pk": 9042, "fields": {"orig_filename": "Meixner-Zweienstamm_Otto_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206", "author": "", "orig_id": 1412524}}, {"model": "metainfo.source", "pk": 9043, "fields": {"orig_filename": "Meixner_Adolf_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413880}}, {"model": "metainfo.source", "pk": 9044, "fields": {"orig_filename": "Meixner_Heinrich_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413881}}, {"model": "metainfo.source", "pk": 9045, "fields": {"orig_filename": "Meixner_Johann_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204", "author": "", "orig_id": 1413882}}, {"model": "metainfo.source", "pk": 9046, "fields": {"orig_filename": "Meixner_Josef_1889_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 204f.", "author": "", "orig_id": 1413883}}, {"model": "metainfo.source", "pk": 9047, "fields": {"orig_filename": "Meixner_Julius_1850_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 205", "author": "", "orig_id": 1413884}}, {"model": "metainfo.source", "pk": 9048, "fields": {"orig_filename": "Meixner_Karl-Wilhelm_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 205f.", "author": "", "orig_id": 1413885}}, {"model": "metainfo.source", "pk": 9049, "fields": {"orig_filename": "Mejsnar_Hynek-Jaroslav_1837_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 206f.", "author": "", "orig_id": 1412525}}, {"model": "metainfo.source", "pk": 9050, "fields": {"orig_filename": "Mekler_Siegfried_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 207", "author": "", "orig_id": 1412526}}, {"model": "metainfo.source", "pk": 9051, "fields": {"orig_filename": "Melan_Joseph_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 207f.", "author": "", "orig_id": 1412527}}, {"model": "metainfo.source", "pk": 9052, "fields": {"orig_filename": "Melas_Heinrich_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412528}}, {"model": "metainfo.source", "pk": 9053, "fields": {"orig_filename": "Melchiori_Josef_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412529}}, {"model": "metainfo.source", "pk": 9054, "fields": {"orig_filename": "Melczer_Gustav_1869_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208", "author": "", "orig_id": 1412530}}, {"model": "metainfo.source", "pk": 9055, "fields": {"orig_filename": "Meletzki_Emil_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 208f.", "author": "", "orig_id": 1412531}}, {"model": "metainfo.source", "pk": 9056, "fields": {"orig_filename": "Melichar_Frantisek_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209", "author": "", "orig_id": 1412533}}, {"model": "metainfo.source", "pk": 9057, "fields": {"orig_filename": "Melichar_Franz_1835_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209f.", "author": "", "orig_id": 1412534}}, {"model": "metainfo.source", "pk": 9058, "fields": {"orig_filename": "Melichar_Josef-Jaroslav_1819_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210", "author": "", "orig_id": 1412535}}, {"model": "metainfo.source", "pk": 9059, "fields": {"orig_filename": "Melichar_Leopold_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210", "author": "", "orig_id": 1412536}}, {"model": "metainfo.source", "pk": 9060, "fields": {"orig_filename": "Melicher_Ludwig-Josef_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 210f.", "author": "", "orig_id": 1412537}}, {"model": "metainfo.source", "pk": 9061, "fields": {"orig_filename": "Melicher_Theophil_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211", "author": "", "orig_id": 1412538}}, {"model": "metainfo.source", "pk": 9062, "fields": {"orig_filename": "Melic_Johann_1763_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 209", "author": "", "orig_id": 1412532}}, {"model": "metainfo.source", "pk": 9063, "fields": {"orig_filename": "Melingo_Achilles_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211", "author": "", "orig_id": 1412539}}, {"model": "metainfo.source", "pk": 9064, "fields": {"orig_filename": "Melion_Josef_1813_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 211f.", "author": "", "orig_id": 1412540}}, {"model": "metainfo.source", "pk": 9065, "fields": {"orig_filename": "Melion_Julius_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412541}}, {"model": "metainfo.source", "pk": 9066, "fields": {"orig_filename": "Melisova_Antonie_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412543}}, {"model": "metainfo.source", "pk": 9067, "fields": {"orig_filename": "Melis_Emanuel-Anton_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212", "author": "", "orig_id": 1412542}}, {"model": "metainfo.source", "pk": 9068, "fields": {"orig_filename": "Melkus_Dragan_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 212f.", "author": "", "orig_id": 1412544}}, {"model": "metainfo.source", "pk": 9069, "fields": {"orig_filename": "Mellitzer_Georg_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214", "author": "", "orig_id": 1412616}}, {"model": "metainfo.source", "pk": 9070, "fields": {"orig_filename": "Melly_Eduard_1814_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214f.", "author": "", "orig_id": 1412617}}, {"model": "metainfo.source", "pk": 9071, "fields": {"orig_filename": "Mell_Alexander_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 213", "author": "", "orig_id": 1412545}}, {"model": "metainfo.source", "pk": 9072, "fields": {"orig_filename": "Mell_Anton_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 213f.", "author": "", "orig_id": 1412546}}, {"model": "metainfo.source", "pk": 9073, "fields": {"orig_filename": "Mell_Richard_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 214", "author": "", "orig_id": 1412547}}, {"model": "metainfo.source", "pk": 9074, "fields": {"orig_filename": "Meltzl_Hugo_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215", "author": "", "orig_id": 1412618}}, {"model": "metainfo.source", "pk": 9075, "fields": {"orig_filename": "Meltzl_Oskar_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215", "author": "", "orig_id": 1412619}}, {"model": "metainfo.source", "pk": 9076, "fields": {"orig_filename": "Melzer-Orienburg_Joseph_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412626}}, {"model": "metainfo.source", "pk": 9077, "fields": {"orig_filename": "Melzer_Anton_1781_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 215f.", "author": "", "orig_id": 1412620}}, {"model": "metainfo.source", "pk": 9078, "fields": {"orig_filename": "Melzer_Anton_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412621}}, {"model": "metainfo.source", "pk": 9079, "fields": {"orig_filename": "Melzer_Jakob_1782_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412622}}, {"model": "metainfo.source", "pk": 9080, "fields": {"orig_filename": "Melzer_Karl_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216", "author": "", "orig_id": 1412623}}, {"model": "metainfo.source", "pk": 9081, "fields": {"orig_filename": "Melzer_Otto_1869_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 216f.", "author": "", "orig_id": 1412624}}, {"model": "metainfo.source", "pk": 9082, "fields": {"orig_filename": "Mencik_Ferdinand_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217", "author": "", "orig_id": 1412628}}, {"model": "metainfo.source", "pk": 9083, "fields": {"orig_filename": "Mencinger_Janez_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 217f.", "author": "", "orig_id": 1412627}}, {"model": "metainfo.source", "pk": 9084, "fields": {"orig_filename": "Mencl_Josef-Branislav_1815_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 218", "author": "", "orig_id": 1412629}}, {"model": "metainfo.source", "pk": 9085, "fields": {"orig_filename": "Mendel_Gregor_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 218f.", "author": "", "orig_id": 1412630}}, {"model": "metainfo.source", "pk": 9086, "fields": {"orig_filename": "Meneghelli_Antonio-Maria_1765_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 219", "author": "", "orig_id": 1412631}}, {"model": "metainfo.source", "pk": 9087, "fields": {"orig_filename": "Meneghini_Giuseppe_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 219f.", "author": "", "orig_id": 1412632}}, {"model": "metainfo.source", "pk": 9088, "fields": {"orig_filename": "Menevischian_Gabriel_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 220", "author": "", "orig_id": 1412633}}, {"model": "metainfo.source", "pk": 9089, "fields": {"orig_filename": "Menger_Anton_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 220f.", "author": "", "orig_id": 1412634}}, {"model": "metainfo.source", "pk": 9090, "fields": {"orig_filename": "Menger_Karl_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 221f.", "author": "", "orig_id": 1412635}}, {"model": "metainfo.source", "pk": 9091, "fields": {"orig_filename": "Menger_Max_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 222", "author": "", "orig_id": 1412636}}, {"model": "metainfo.source", "pk": 9092, "fields": {"orig_filename": "Menghin-Brezburg_Giuseppe_1786_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412708}}, {"model": "metainfo.source", "pk": 9093, "fields": {"orig_filename": "Menghin_Alois_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 222f.", "author": "", "orig_id": 1412707}}, {"model": "metainfo.source", "pk": 9094, "fields": {"orig_filename": "Menghin_Oswald_1888_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431851}}, {"model": "metainfo.source", "pk": 9095, "fields": {"orig_filename": "Mennel_Alois_1894_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1470164}}, {"model": "metainfo.source", "pk": 9096, "fields": {"orig_filename": "Mennel_Josef_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412709}}, {"model": "metainfo.source", "pk": 9097, "fields": {"orig_filename": "Mensdorff-Pouilly-Dietrichstein_Albert_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412711}}, {"model": "metainfo.source", "pk": 9098, "fields": {"orig_filename": "Mensdorff-Pouilly_Arthur_1817_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 223", "author": "", "orig_id": 1412710}}, {"model": "metainfo.source", "pk": 9099, "fields": {"orig_filename": "Mensi-Klarbach_Daniel_1781_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412712}}, {"model": "metainfo.source", "pk": 9100, "fields": {"orig_filename": "Mensi-Klarbach_Franz_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224", "author": "", "orig_id": 1412714}}, {"model": "metainfo.source", "pk": 9101, "fields": {"orig_filename": "Mensik_Jan_1885_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 224f.", "author": "", "orig_id": 1412713}}, {"model": "metainfo.source", "pk": 9102, "fields": {"orig_filename": "Mentasti_Alois_1887_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1455889}}, {"model": "metainfo.source", "pk": 9103, "fields": {"orig_filename": "Mentovich_Ferenc_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225", "author": "", "orig_id": 1412715}}, {"model": "metainfo.source", "pk": 9104, "fields": {"orig_filename": "Menzel_Adolf_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225f.", "author": "", "orig_id": 1412717}}, {"model": "metainfo.source", "pk": 9105, "fields": {"orig_filename": "Menzel_Karl_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 226", "author": "", "orig_id": 1412718}}, {"model": "metainfo.source", "pk": 9106, "fields": {"orig_filename": "Menz_Karl_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 225", "author": "", "orig_id": 1412716}}, {"model": "metainfo.source", "pk": 9107, "fields": {"orig_filename": "Meran_Anna-Maria_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 226f.", "author": "", "orig_id": 1412719}}, {"model": "metainfo.source", "pk": 9108, "fields": {"orig_filename": "Meraviglia-Crivelli_Rudolf-Johann_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412720}}, {"model": "metainfo.source", "pk": 9109, "fields": {"orig_filename": "Mercy_Heinrich_1826_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412721}}, {"model": "metainfo.source", "pk": 9110, "fields": {"orig_filename": "Merenyi_Lajos_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227", "author": "", "orig_id": 1412722}}, {"model": "metainfo.source", "pk": 9111, "fields": {"orig_filename": "Meretta_Anna_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 227f.", "author": "", "orig_id": 1412723}}, {"model": "metainfo.source", "pk": 9112, "fields": {"orig_filename": "Merey-Kapos-Mere_Kajetan_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 228", "author": "", "orig_id": 1412724}}, {"model": "metainfo.source", "pk": 9113, "fields": {"orig_filename": "Merhar_Alojzij_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 228f.", "author": "", "orig_id": 1412725}}, {"model": "metainfo.source", "pk": 9114, "fields": {"orig_filename": "Merhar_Ivan_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229", "author": "", "orig_id": 1412726}}, {"model": "metainfo.source", "pk": 9115, "fields": {"orig_filename": "Merhaut_Josef_1863_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229", "author": "", "orig_id": 1412727}}, {"model": "metainfo.source", "pk": 9116, "fields": {"orig_filename": "Meringer_Rudolf_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 229f.", "author": "", "orig_id": 1412728}}, {"model": "metainfo.source", "pk": 9117, "fields": {"orig_filename": "Merizzi_Erik_1873_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 230", "author": "", "orig_id": 1412729}}, {"model": "metainfo.source", "pk": 9118, "fields": {"orig_filename": "Merkel_Rudolf_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 231", "author": "", "orig_id": 1412801}}, {"model": "metainfo.source", "pk": 9119, "fields": {"orig_filename": "Maurovic_Antun_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413348}}, {"model": "metainfo.source", "pk": 9120, "fields": {"orig_filename": "Mauss_Anton_1868_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413413}}, {"model": "metainfo.source", "pk": 9121, "fields": {"orig_filename": "Mauss_Jozef_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 159", "author": "", "orig_id": 1413414}}, {"model": "metainfo.source", "pk": 9122, "fields": {"orig_filename": "Mauthner-Mauthstein_Ludwig-Wilhelm_1806_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 163", "author": "", "orig_id": 1413423}}, {"model": "metainfo.source", "pk": 9123, "fields": {"orig_filename": "Mauthner_Eugen-Moritz_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 160", "author": "", "orig_id": 1413415}}, {"model": "metainfo.source", "pk": 9124, "fields": {"orig_filename": "Mauthner_Fritz_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 160f.", "author": "", "orig_id": 1413416}}, {"model": "metainfo.source", "pk": 9125, "fields": {"orig_filename": "Mauthner_Gustav_1848_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 161", "author": "", "orig_id": 1413417}}, {"model": "metainfo.source", "pk": 9126, "fields": {"orig_filename": "Mauthner_Josef_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 161f.", "author": "", "orig_id": 1413418}}, {"model": "metainfo.source", "pk": 9127, "fields": {"orig_filename": "Mauthner_Julius_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162", "author": "", "orig_id": 1413419}}, {"model": "metainfo.source", "pk": 9128, "fields": {"orig_filename": "Mauthner_Ludwig_1840_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162", "author": "", "orig_id": 1413420}}, {"model": "metainfo.source", "pk": 9129, "fields": {"orig_filename": "Mauthner_Max_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 162f.", "author": "", "orig_id": 1413421}}, {"model": "metainfo.source", "pk": 9130, "fields": {"orig_filename": "Mauthner_Philipp_1835_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 163", "author": "", "orig_id": 1413422}}, {"model": "metainfo.source", "pk": 9131, "fields": {"orig_filename": "Mautner-Markhof_Adolf-Ignaz_1801_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 165f.", "author": "", "orig_id": 1413429}}, {"model": "metainfo.source", "pk": 9132, "fields": {"orig_filename": "Mautner-Markhof_Editha_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166", "author": "", "orig_id": 1413430}}, {"model": "metainfo.source", "pk": 9133, "fields": {"orig_filename": "Mautner-Markhof_Georg-Anton_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166", "author": "", "orig_id": 1413431}}, {"model": "metainfo.source", "pk": 9134, "fields": {"orig_filename": "Mautner-Markhof_Georg-Heinrich_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 166f.", "author": "", "orig_id": 1413432}}, {"model": "metainfo.source", "pk": 9135, "fields": {"orig_filename": "Mautner-Markhof_Karl-Ferdinand_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167", "author": "", "orig_id": 1413433}}, {"model": "metainfo.source", "pk": 9136, "fields": {"orig_filename": "Mautner-Markhof_Manfred_1903_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1425243}}, {"model": "metainfo.source", "pk": 9137, "fields": {"orig_filename": "Mautner_Eduard_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 164", "author": "", "orig_id": 1413424}}, {"model": "metainfo.source", "pk": 9138, "fields": {"orig_filename": "Mautner_Isaac_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413425}}, {"model": "metainfo.source", "pk": 9139, "fields": {"orig_filename": "Mautner_Isidor_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413426}}, {"model": "metainfo.source", "pk": 9140, "fields": {"orig_filename": "Mautner_Konrad_1880_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413427}}, {"model": "metainfo.source", "pk": 9141, "fields": {"orig_filename": "Mautner_Stephan_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413428}}, {"model": "metainfo.source", "pk": 9142, "fields": {"orig_filename": "Mautschka_Hans_1888_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167", "author": "", "orig_id": 1413434}}, {"model": "metainfo.source", "pk": 9143, "fields": {"orig_filename": "Max-Wachstein_Emanuel_1810_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168", "author": "", "orig_id": 1413505}}, {"model": "metainfo.source", "pk": 9144, "fields": {"orig_filename": "Maximilian-Josef___1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168f.", "author": "", "orig_id": 1413507}}, {"model": "metainfo.source", "pk": 9145, "fields": {"orig_filename": "Max_Gabriel-Cornelius_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 167f.", "author": "", "orig_id": 1413435}}, {"model": "metainfo.source", "pk": 9146, "fields": {"orig_filename": "Max_Josef_1804_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 168", "author": "", "orig_id": 1413504}}, {"model": "metainfo.source", "pk": 9147, "fields": {"orig_filename": "Mayburger_Josef_1814_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170", "author": "", "orig_id": 1413510}}, {"model": "metainfo.source", "pk": 9148, "fields": {"orig_filename": "Maydl_Karel_1853_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170f.", "author": "", "orig_id": 1413511}}, {"model": "metainfo.source", "pk": 9149, "fields": {"orig_filename": "Maylender_Michele_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171", "author": "", "orig_id": 1413512}}, {"model": "metainfo.source", "pk": 9150, "fields": {"orig_filename": "Mayseder_Joseph_1789_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171", "author": "", "orig_id": 1413513}}, {"model": "metainfo.source", "pk": 9151, "fields": {"orig_filename": "Maytner_Alberta_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 171f.", "author": "", "orig_id": 1413514}}, {"model": "metainfo.source", "pk": 9152, "fields": {"orig_filename": "Maywald_Karl_1814_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413515}}, {"model": "metainfo.source", "pk": 9153, "fields": {"orig_filename": "May_Albert-Alexis_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 169f.", "author": "", "orig_id": 1413508}}, {"model": "metainfo.source", "pk": 9154, "fields": {"orig_filename": "May_Matthias_1884_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 170", "author": "", "orig_id": 1413509}}, {"model": "metainfo.source", "pk": 9155, "fields": {"orig_filename": "Mazagg_Siegfried_1902_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413516}}, {"model": "metainfo.source", "pk": 9156, "fields": {"orig_filename": "Mazanowski_Antoni_1858_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172", "author": "", "orig_id": 1413517}}, {"model": "metainfo.source", "pk": 9157, "fields": {"orig_filename": "Mazegger_Bernard_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 172f.", "author": "", "orig_id": 1413518}}, {"model": "metainfo.source", "pk": 9158, "fields": {"orig_filename": "Mazegger_Bernhard_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 173", "author": "", "orig_id": 1413519}}, {"model": "metainfo.source", "pk": 9159, "fields": {"orig_filename": "Mazelle_Eduard_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 173f.", "author": "", "orig_id": 1413520}}, {"model": "metainfo.source", "pk": 9160, "fields": {"orig_filename": "Mazgon_Anton_1812_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413521}}, {"model": "metainfo.source", "pk": 9161, "fields": {"orig_filename": "Mazuranic_Antun_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413522}}, {"model": "metainfo.source", "pk": 9162, "fields": {"orig_filename": "Mazuranic_Bogoslav_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174", "author": "", "orig_id": 1413523}}, {"model": "metainfo.source", "pk": 9163, "fields": {"orig_filename": "Mazuranic_Fran-Vladimir_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 174f.", "author": "", "orig_id": 1413524}}, {"model": "metainfo.source", "pk": 9164, "fields": {"orig_filename": "Mazuranic_Ivan_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 175f.", "author": "", "orig_id": 1413525}}, {"model": "metainfo.source", "pk": 9165, "fields": {"orig_filename": "Mazuranic_Matija_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 176", "author": "", "orig_id": 1413593}}, {"model": "metainfo.source", "pk": 9166, "fields": {"orig_filename": "Mazuranic_Vladimir_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 176", "author": "", "orig_id": 1413594}}, {"model": "metainfo.source", "pk": 9167, "fields": {"orig_filename": "Mazzetti-Roccanova_Anton_1784_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413595}}, {"model": "metainfo.source", "pk": 9168, "fields": {"orig_filename": "Mazzoleni_Paolo_1831_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413596}}, {"model": "metainfo.source", "pk": 9169, "fields": {"orig_filename": "Mazzucato_Alberto_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177", "author": "", "orig_id": 1413597}}, {"model": "metainfo.source", "pk": 9170, "fields": {"orig_filename": "Mazzura_Lav_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 177f.", "author": "", "orig_id": 1413598}}, {"model": "metainfo.source", "pk": 9171, "fields": {"orig_filename": "Mazzura_Sime_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413599}}, {"model": "metainfo.source", "pk": 9172, "fields": {"orig_filename": "Mebus_Eduard_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413600}}, {"model": "metainfo.source", "pk": 9173, "fields": {"orig_filename": "Mebus_Maximiliane_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178", "author": "", "orig_id": 1413601}}, {"model": "metainfo.source", "pk": 9174, "fields": {"orig_filename": "Mecenseffy_Artur_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 178f.", "author": "", "orig_id": 1413602}}, {"model": "metainfo.source", "pk": 9175, "fields": {"orig_filename": "Mecenseffy_Emil_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179", "author": "", "orig_id": 1413603}}, {"model": "metainfo.source", "pk": 9176, "fields": {"orig_filename": "Mecherzynski_Karol_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179", "author": "", "orig_id": 1413604}}, {"model": "metainfo.source", "pk": 9177, "fields": {"orig_filename": "Mechetti_Pietro_1777_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 179f.", "author": "", "orig_id": 1413605}}, {"model": "metainfo.source", "pk": 9178, "fields": {"orig_filename": "Mechwart-Belecska_Andreas_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180", "author": "", "orig_id": 1413606}}, {"model": "metainfo.source", "pk": 9179, "fields": {"orig_filename": "Mecsery-Tsoor_Daniel_1759_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180", "author": "", "orig_id": 1413607}}, {"model": "metainfo.source", "pk": 9180, "fields": {"orig_filename": "Mecsery-Tsoor_Karl_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 180f.", "author": "", "orig_id": 1413608}}, {"model": "metainfo.source", "pk": 9181, "fields": {"orig_filename": "Medakovic_Bogdan_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181", "author": "", "orig_id": 1413609}}, {"model": "metainfo.source", "pk": 9182, "fields": {"orig_filename": "Medakovic_Danilo_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181", "author": "", "orig_id": 1413610}}, {"model": "metainfo.source", "pk": 9183, "fields": {"orig_filename": "Medek_Rudolf_1890_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 181f.", "author": "", "orig_id": 1413611}}, {"model": "metainfo.source", "pk": 9184, "fields": {"orig_filename": "Medelhammer_Albin-Johann_1776_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182", "author": "", "orig_id": 1413612}}, {"model": "metainfo.source", "pk": 9185, "fields": {"orig_filename": "Medelsky_Hermine_1884_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2008003}}, {"model": "metainfo.source", "pk": 9186, "fields": {"orig_filename": "Medelsky_Josef_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 182", "author": "", "orig_id": 1413613}}, {"model": "metainfo.source", "pk": 9187, "fields": {"orig_filename": "Mederitsch_Johann_1752_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183", "author": "", "orig_id": 1413616}}, {"model": "metainfo.source", "pk": 9188, "fields": {"orig_filename": "Meder_Josef_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183", "author": "", "orig_id": 1413615}}, {"model": "metainfo.source", "pk": 9189, "fields": {"orig_filename": "Medgyes_Lajos_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 183f.", "author": "", "orig_id": 1413685}}, {"model": "metainfo.source", "pk": 9190, "fields": {"orig_filename": "Medic_Danilo_1844_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413686}}, {"model": "metainfo.source", "pk": 9191, "fields": {"orig_filename": "Medic_Mojo_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413687}}, {"model": "metainfo.source", "pk": 9192, "fields": {"orig_filename": "Medinger_Johann_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184", "author": "", "orig_id": 1413688}}, {"model": "metainfo.source", "pk": 9193, "fields": {"orig_filename": "Medinger_Wilhelm_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 184f.", "author": "", "orig_id": 1413689}}, {"model": "metainfo.source", "pk": 9194, "fields": {"orig_filename": "Medini_Milorad_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185", "author": "", "orig_id": 1413690}}, {"model": "metainfo.source", "pk": 9195, "fields": {"orig_filename": "Mediz_Emilie_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185", "author": "", "orig_id": 1413691}}, {"model": "metainfo.source", "pk": 9196, "fields": {"orig_filename": "Mediz_Karl_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 185f.", "author": "", "orig_id": 1413692}}, {"model": "metainfo.source", "pk": 9197, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Alajos_1784_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186", "author": "", "orig_id": 1413693}}, {"model": "metainfo.source", "pk": 9198, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Cezar_1824_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186", "author": "", "orig_id": 1413694}}, {"model": "metainfo.source", "pk": 9199, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Denes_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 186f.", "author": "", "orig_id": 1413695}}, {"model": "metainfo.source", "pk": 9200, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Laszlo_1819_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187", "author": "", "orig_id": 1413696}}, {"model": "metainfo.source", "pk": 9201, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Laszlo_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187", "author": "", "orig_id": 1413697}}, {"model": "metainfo.source", "pk": 9202, "fields": {"orig_filename": "Mednyanszky-Mednye-Medgyes_Sandor_1816_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 187f.", "author": "", "orig_id": 1413698}}, {"model": "metainfo.source", "pk": 9203, "fields": {"orig_filename": "Medovic_Celestin_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413699}}, {"model": "metainfo.source", "pk": 9204, "fields": {"orig_filename": "Medvecky_Karl-Anton_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413700}}, {"model": "metainfo.source", "pk": 9205, "fields": {"orig_filename": "Medveczky_Frigyes_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188", "author": "", "orig_id": 1413701}}, {"model": "metainfo.source", "pk": 9206, "fields": {"orig_filename": "Medved_Anton_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 188f.", "author": "", "orig_id": 1413702}}, {"model": "metainfo.source", "pk": 9207, "fields": {"orig_filename": "Medved_Anton_1869_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 189", "author": "", "orig_id": 1413773}}, {"model": "metainfo.source", "pk": 9208, "fields": {"orig_filename": "Meeraus_Robert_1899_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 189f.", "author": "", "orig_id": 1413774}}, {"model": "metainfo.source", "pk": 9209, "fields": {"orig_filename": "Megerle-Muehlfeld_Eugen-Alexander_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190f.", "author": "", "orig_id": 1413777}}, {"model": "metainfo.source", "pk": 9210, "fields": {"orig_filename": "Megerle-Muehlfeld_Johann-Georg_1780_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413778}}, {"model": "metainfo.source", "pk": 9211, "fields": {"orig_filename": "Megerle_Julius_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190", "author": "", "orig_id": 1413775}}, {"model": "metainfo.source", "pk": 9212, "fields": {"orig_filename": "Megerle_Therese_1813_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 190", "author": "", "orig_id": 1413776}}, {"model": "metainfo.source", "pk": 9213, "fields": {"orig_filename": "Megusar_Franc_1876_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413779}}, {"model": "metainfo.source", "pk": 9214, "fields": {"orig_filename": "Megyeri_Dezsoe_1857_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191", "author": "", "orig_id": 1413780}}, {"model": "metainfo.source", "pk": 9215, "fields": {"orig_filename": "Megyeri_Karoly_1798_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 191f.", "author": "", "orig_id": 1413781}}, {"model": "metainfo.source", "pk": 9216, "fields": {"orig_filename": "Mehes_Samuel_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192", "author": "", "orig_id": 1413782}}, {"model": "metainfo.source", "pk": 9217, "fields": {"orig_filename": "Mehoffer_Joseph_1786_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192", "author": "", "orig_id": 1413783}}, {"model": "metainfo.source", "pk": 9218, "fields": {"orig_filename": "Mehoffer_Jozef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 192f.", "author": "", "orig_id": 1413784}}, {"model": "metainfo.source", "pk": 9219, "fields": {"orig_filename": "Mehoffer_Rudolf_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193", "author": "", "orig_id": 1413785}}, {"model": "metainfo.source", "pk": 9220, "fields": {"orig_filename": "Mehr_Robert_1886_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 193", "author": "", "orig_id": 1413786}}, {"model": "metainfo.source", "pk": 9221, "fields": {"orig_filename": "Maschek-Maasburg_Michael-Friedrich_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1408573}}, {"model": "metainfo.source", "pk": 9222, "fields": {"orig_filename": "Maschek_Friedrich_1849_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1412604}}, {"model": "metainfo.source", "pk": 9223, "fields": {"orig_filename": "Maschek_Heinrich_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 125", "author": "", "orig_id": 1408572}}, {"model": "metainfo.source", "pk": 9224, "fields": {"orig_filename": "Maschka_Josef_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27), S. 126", "author": "", "orig_id": 1467314}}, {"model": "metainfo.source", "pk": 9225, "fields": {"orig_filename": "Maschke_Hans_1853_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408575}}, {"model": "metainfo.source", "pk": 9226, "fields": {"orig_filename": "Masek_Frantisek_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408576}}, {"model": "metainfo.source", "pk": 9227, "fields": {"orig_filename": "Masek_Gaspar_1794_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126", "author": "", "orig_id": 1408577}}, {"model": "metainfo.source", "pk": 9228, "fields": {"orig_filename": "Masek_Kamilo_1831_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 126f.", "author": "", "orig_id": 1408578}}, {"model": "metainfo.source", "pk": 9229, "fields": {"orig_filename": "Masek_Karel_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 127", "author": "", "orig_id": 1408579}}, {"model": "metainfo.source", "pk": 9230, "fields": {"orig_filename": "Masek_Pavel-Lambert_1761_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 127", "author": "", "orig_id": 1408580}}, {"model": "metainfo.source", "pk": 9231, "fields": {"orig_filename": "Masek_Vincenz_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 128", "author": "", "orig_id": 1408581}}, {"model": "metainfo.source", "pk": 9232, "fields": {"orig_filename": "Maselj_Fran_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 128f.", "author": "", "orig_id": 1408582}}, {"model": "metainfo.source", "pk": 9233, "fields": {"orig_filename": "Masic_Nikola_1852_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129", "author": "", "orig_id": 1408583}}, {"model": "metainfo.source", "pk": 9234, "fields": {"orig_filename": "Masik_Emil_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129", "author": "", "orig_id": 1413054}}, {"model": "metainfo.source", "pk": 9235, "fields": {"orig_filename": "Maska_Karel-Jaroslav_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 129f.", "author": "", "orig_id": 1413055}}, {"model": "metainfo.source", "pk": 9236, "fields": {"orig_filename": "Maslowski_Ludwik_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413056}}, {"model": "metainfo.source", "pk": 9237, "fields": {"orig_filename": "Masoch_Franciszek_1763_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413057}}, {"model": "metainfo.source", "pk": 9238, "fields": {"orig_filename": "Massak_Franz_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130", "author": "", "orig_id": 1413058}}, {"model": "metainfo.source", "pk": 9239, "fields": {"orig_filename": "Massalongo_Abramo-Bartolommeo_1824_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 130f.", "author": "", "orig_id": 1413059}}, {"model": "metainfo.source", "pk": 9240, "fields": {"orig_filename": "Massalongo_Caro-Benigno_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 131", "author": "", "orig_id": 1413060}}, {"model": "metainfo.source", "pk": 9241, "fields": {"orig_filename": "Massari_Julius_1845_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 131f.", "author": "", "orig_id": 1413061}}, {"model": "metainfo.source", "pk": 9242, "fields": {"orig_filename": "Mastalka_Jindrich_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413062}}, {"model": "metainfo.source", "pk": 9243, "fields": {"orig_filename": "Maszkowski_Jan_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413063}}, {"model": "metainfo.source", "pk": 9244, "fields": {"orig_filename": "Maszkowski_Karol_1830_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 132", "author": "", "orig_id": 1413064}}, {"model": "metainfo.source", "pk": 9245, "fields": {"orig_filename": "Maszkowski_Karol_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413065}}, {"model": "metainfo.source", "pk": 9246, "fields": {"orig_filename": "Maszkowski_Marceli_1837_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413066}}, {"model": "metainfo.source", "pk": 9247, "fields": {"orig_filename": "Masznyik_Endre_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133", "author": "", "orig_id": 1413067}}, {"model": "metainfo.source", "pk": 9248, "fields": {"orig_filename": "Mataja_Emilie_1855_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 133f.", "author": "", "orig_id": 1413068}}, {"model": "metainfo.source", "pk": 9249, "fields": {"orig_filename": "Mataja_Heinrich_1877_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 134f.", "author": "", "orig_id": 1413069}}, {"model": "metainfo.source", "pk": 9250, "fields": {"orig_filename": "Mataja_Viktor_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413070}}, {"model": "metainfo.source", "pk": 9251, "fields": {"orig_filename": "Matakiewicz_Antoni_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413071}}, {"model": "metainfo.source", "pk": 9252, "fields": {"orig_filename": "Matakiewicz_Maksymilian_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 135", "author": "", "orig_id": 1413072}}, {"model": "metainfo.source", "pk": 9253, "fields": {"orig_filename": "Matas_Antun-Konstantin_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413073}}, {"model": "metainfo.source", "pk": 9254, "fields": {"orig_filename": "Matcovich_Enrico_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413074}}, {"model": "metainfo.source", "pk": 9255, "fields": {"orig_filename": "Mategczek_Eduard_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136", "author": "", "orig_id": 1413075}}, {"model": "metainfo.source", "pk": 9256, "fields": {"orig_filename": "Matejcek_Antonin_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 136f.", "author": "", "orig_id": 1413076}}, {"model": "metainfo.source", "pk": 9257, "fields": {"orig_filename": "Matejka_Bohumil_1867_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137", "author": "", "orig_id": 1413144}}, {"model": "metainfo.source", "pk": 9258, "fields": {"orig_filename": "Matejka_Josef_1879_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137", "author": "", "orig_id": 1413145}}, {"model": "metainfo.source", "pk": 9259, "fields": {"orig_filename": "Matejko_Theo_1893_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413146}}, {"model": "metainfo.source", "pk": 9260, "fields": {"orig_filename": "Matejko_Franciszek-Ksawery-Edward_1828_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 137f.", "author": "", "orig_id": 1413147}}, {"model": "metainfo.source", "pk": 9261, "fields": {"orig_filename": "Matejko_Jan_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138", "author": "", "orig_id": 1413148}}, {"model": "metainfo.source", "pk": 9262, "fields": {"orig_filename": "Matejovsky_Philip-Karl_1820_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138", "author": "", "orig_id": 1413149}}, {"model": "metainfo.source", "pk": 9263, "fields": {"orig_filename": "Matek_Blaz_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 138f.", "author": "", "orig_id": 1413150}}, {"model": "metainfo.source", "pk": 9264, "fields": {"orig_filename": "Materna_Amalia_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 139", "author": "", "orig_id": 1413151}}, {"model": "metainfo.source", "pk": 9265, "fields": {"orig_filename": "Materna_Rudolf_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 139f.", "author": "", "orig_id": 1413152}}, {"model": "metainfo.source", "pk": 9266, "fields": {"orig_filename": "Maternova_Pavla_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413153}}, {"model": "metainfo.source", "pk": 9267, "fields": {"orig_filename": "Mathes-Bilabruck_Karl_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413155}}, {"model": "metainfo.source", "pk": 9268, "fields": {"orig_filename": "Mathesius_Vilem_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140f.", "author": "", "orig_id": 1413156}}, {"model": "metainfo.source", "pk": 9269, "fields": {"orig_filename": "Mathes_Michael_1814_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 140", "author": "", "orig_id": 1413154}}, {"model": "metainfo.source", "pk": 9270, "fields": {"orig_filename": "Mathiowitz_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 141", "author": "", "orig_id": 1413157}}, {"model": "metainfo.source", "pk": 9271, "fields": {"orig_filename": "Mathis-Treustadt_Johann-Martin_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 141f.", "author": "", "orig_id": 1413158}}, {"model": "metainfo.source", "pk": 9272, "fields": {"orig_filename": "Maticevic_Stjepan_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142", "author": "", "orig_id": 1413160}}, {"model": "metainfo.source", "pk": 9273, "fields": {"orig_filename": "Matic_Eugen_1889_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142", "author": "", "orig_id": 1413159}}, {"model": "metainfo.source", "pk": 9274, "fields": {"orig_filename": "Matiegka_Jindrich_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 142f.", "author": "", "orig_id": 1413161}}, {"model": "metainfo.source", "pk": 9275, "fields": {"orig_filename": "Matiegka_Wenzel-Thomas_1773_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413162}}, {"model": "metainfo.source", "pk": 9276, "fields": {"orig_filename": "Matijevic_Pavao_1867_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413163}}, {"model": "metainfo.source", "pk": 9277, "fields": {"orig_filename": "Matikian_Alexander_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143", "author": "", "orig_id": 1413164}}, {"model": "metainfo.source", "pk": 9278, "fields": {"orig_filename": "Matkovic_Jakov_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 143f.", "author": "", "orig_id": 1413165}}, {"model": "metainfo.source", "pk": 9279, "fields": {"orig_filename": "Matkovic_Petar_1830_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413233}}, {"model": "metainfo.source", "pk": 9280, "fields": {"orig_filename": "Matlakowski_Wladyslaw_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413234}}, {"model": "metainfo.source", "pk": 9281, "fields": {"orig_filename": "Matlekovits_Sandor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144", "author": "", "orig_id": 1413235}}, {"model": "metainfo.source", "pk": 9282, "fields": {"orig_filename": "Matosch_Anton_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 145", "author": "", "orig_id": 1413237}}, {"model": "metainfo.source", "pk": 9283, "fields": {"orig_filename": "Matos_Antun-Gustav_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 144f.", "author": "", "orig_id": 1413236}}, {"model": "metainfo.source", "pk": 9284, "fields": {"orig_filename": "Matouschek_Franz_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 145f.", "author": "", "orig_id": 1413238}}, {"model": "metainfo.source", "pk": 9285, "fields": {"orig_filename": "Matousek_Josef_1840_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146", "author": "", "orig_id": 1413239}}, {"model": "metainfo.source", "pk": 9286, "fields": {"orig_filename": "Matousek_Josef_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146", "author": "", "orig_id": 1413240}}, {"model": "metainfo.source", "pk": 9287, "fields": {"orig_filename": "Matras_Franz-Eduard_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 146f.", "author": "", "orig_id": 1413241}}, {"model": "metainfo.source", "pk": 9288, "fields": {"orig_filename": "Matras_Josef_1832_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 147", "author": "", "orig_id": 1413242}}, {"model": "metainfo.source", "pk": 9289, "fields": {"orig_filename": "Matscheg_Anton_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 148", "author": "", "orig_id": 1413244}}, {"model": "metainfo.source", "pk": 9290, "fields": {"orig_filename": "Matscheko_Michael_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 148", "author": "", "orig_id": 1413245}}, {"model": "metainfo.source", "pk": 9291, "fields": {"orig_filename": "Matschnig_Eleonore_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413246}}, {"model": "metainfo.source", "pk": 9292, "fields": {"orig_filename": "Matsch_Franz_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 147f.", "author": "", "orig_id": 1413243}}, {"model": "metainfo.source", "pk": 9293, "fields": {"orig_filename": "Mattanovich_Erwin_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413249}}, {"model": "metainfo.source", "pk": 9294, "fields": {"orig_filename": "Mattanovic_Ernst_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413248}}, {"model": "metainfo.source", "pk": 9295, "fields": {"orig_filename": "Mattauschek_Emil_1870_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413251}}, {"model": "metainfo.source", "pk": 9296, "fields": {"orig_filename": "Mattausch_Franz_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149f.", "author": "", "orig_id": 1413250}}, {"model": "metainfo.source", "pk": 9297, "fields": {"orig_filename": "Mattoni_Heinrich_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413252}}, {"model": "metainfo.source", "pk": 9298, "fields": {"orig_filename": "Mattuschka_Ignaz_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 151f.", "author": "", "orig_id": 1413255}}, {"model": "metainfo.source", "pk": 9299, "fields": {"orig_filename": "Mattus_Jaroslav_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150", "author": "", "orig_id": 1413254}}, {"model": "metainfo.source", "pk": 9300, "fields": {"orig_filename": "Mattus_Karel_1836_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 150f.", "author": "", "orig_id": 1413253}}, {"model": "metainfo.source", "pk": 9301, "fields": {"orig_filename": "Matt_Georg_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 149", "author": "", "orig_id": 1413247}}, {"model": "metainfo.source", "pk": 9302, "fields": {"orig_filename": "Matunak_Michal_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413256}}, {"model": "metainfo.source", "pk": 9303, "fields": {"orig_filename": "Matuska_Janko_1821_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413325}}, {"model": "metainfo.source", "pk": 9304, "fields": {"orig_filename": "Matyas_Florian_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152", "author": "", "orig_id": 1413326}}, {"model": "metainfo.source", "pk": 9305, "fields": {"orig_filename": "Matzenauer_Antonin_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 152f.", "author": "", "orig_id": 1413327}}, {"model": "metainfo.source", "pk": 9306, "fields": {"orig_filename": "Matzenauer_Engelbert_1820_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153", "author": "", "orig_id": 1413328}}, {"model": "metainfo.source", "pk": 9307, "fields": {"orig_filename": "Matzenauer_Josef_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153", "author": "", "orig_id": 1413329}}, {"model": "metainfo.source", "pk": 9308, "fields": {"orig_filename": "Matzenauer_Rudolf_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 153f.", "author": "", "orig_id": 1413330}}, {"model": "metainfo.source", "pk": 9309, "fields": {"orig_filename": "Matzenkopf_Franz-Xaver_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413331}}, {"model": "metainfo.source", "pk": 9310, "fields": {"orig_filename": "Matzgeller_Michael_1775_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413332}}, {"model": "metainfo.source", "pk": 9311, "fields": {"orig_filename": "Matzinger_Franz_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 154", "author": "", "orig_id": 1413333}}, {"model": "metainfo.source", "pk": 9312, "fields": {"orig_filename": "Matzinger_Stephan_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413334}}, {"model": "metainfo.source", "pk": 9313, "fields": {"orig_filename": "Matzura_Josef_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413335}}, {"model": "metainfo.source", "pk": 9314, "fields": {"orig_filename": "Mauermann_Max_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155", "author": "", "orig_id": 1413337}}, {"model": "metainfo.source", "pk": 9315, "fields": {"orig_filename": "Mauksch_Thomas_1749_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 155f.", "author": "", "orig_id": 1413338}}, {"model": "metainfo.source", "pk": 9316, "fields": {"orig_filename": "Mauler-Elisenau_Josef_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156", "author": "", "orig_id": 1413339}}, {"model": "metainfo.source", "pk": 9317, "fields": {"orig_filename": "Maupas_Petar-Dujam_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156", "author": "", "orig_id": 1413340}}, {"model": "metainfo.source", "pk": 9318, "fields": {"orig_filename": "Mauracher_Matthias_1788_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 156f.", "author": "", "orig_id": 1413341}}, {"model": "metainfo.source", "pk": 9319, "fields": {"orig_filename": "Maurer_Ferdinand_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157", "author": "", "orig_id": 1413342}}, {"model": "metainfo.source", "pk": 9320, "fields": {"orig_filename": "Maurer_Franz_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157", "author": "", "orig_id": 1413343}}, {"model": "metainfo.source", "pk": 9321, "fields": {"orig_filename": "Maurer_Joseph-Karl_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413345}}, {"model": "metainfo.source", "pk": 9322, "fields": {"orig_filename": "Maurer_Joseph-Valentin_1797_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413346}}, {"model": "metainfo.source", "pk": 9323, "fields": {"orig_filename": "Maurer_Joseph_1853_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 157f.", "author": "", "orig_id": 1413344}}, {"model": "metainfo.source", "pk": 9324, "fields": {"orig_filename": "Maurig-Sarnfeld_Ernst_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 158", "author": "", "orig_id": 1413347}}, {"model": "metainfo.source", "pk": 9325, "fields": {"orig_filename": "Mariassy-Markusfalva-Batizfalva_Bela_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90", "author": "", "orig_id": 1408126}}, {"model": "metainfo.source", "pk": 9326, "fields": {"orig_filename": "Mariassy-Markusfalva-Batizfalva_Janos_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90", "author": "", "orig_id": 1408128}}, {"model": "metainfo.source", "pk": 9327, "fields": {"orig_filename": "Maric_Josip_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 90f.", "author": "", "orig_id": 1408127}}, {"model": "metainfo.source", "pk": 9328, "fields": {"orig_filename": "Marienburger_Georg_1751_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408131}}, {"model": "metainfo.source", "pk": 9329, "fields": {"orig_filename": "Marienburg_Georg-Friedrich_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408129}}, {"model": "metainfo.source", "pk": 9330, "fields": {"orig_filename": "Marienburg_Lukas-Joseph_1770_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91", "author": "", "orig_id": 1408130}}, {"model": "metainfo.source", "pk": 9331, "fields": {"orig_filename": "Marijanovic_Stjepan_1794_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 91f.", "author": "", "orig_id": 1408132}}, {"model": "metainfo.source", "pk": 9332, "fields": {"orig_filename": "Marik_Bohuslav_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92", "author": "", "orig_id": 1408133}}, {"model": "metainfo.source", "pk": 9333, "fields": {"orig_filename": "Marik_Frantisek_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92", "author": "", "orig_id": 1408204}}, {"model": "metainfo.source", "pk": 9334, "fields": {"orig_filename": "Marik_Vaclav_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 92f.", "author": "", "orig_id": 1408203}}, {"model": "metainfo.source", "pk": 9335, "fields": {"orig_filename": "Marinelli_Ernst_1824_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408205}}, {"model": "metainfo.source", "pk": 9336, "fields": {"orig_filename": "Marinitsch_Josef_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408207}}, {"model": "metainfo.source", "pk": 9337, "fields": {"orig_filename": "Marini_Ignazio_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93", "author": "", "orig_id": 1408206}}, {"model": "metainfo.source", "pk": 9338, "fields": {"orig_filename": "Mariot_Emil_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 93f.", "author": "", "orig_id": 1408208}}, {"model": "metainfo.source", "pk": 9339, "fields": {"orig_filename": "Markbreit_Leopold_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94", "author": "", "orig_id": 1408210}}, {"model": "metainfo.source", "pk": 9340, "fields": {"orig_filename": "Markic_Mihael_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408214}}, {"model": "metainfo.source", "pk": 9341, "fields": {"orig_filename": "Markiewicz_Dominik-Jan_1761_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95f.", "author": "", "orig_id": 1408215}}, {"model": "metainfo.source", "pk": 9342, "fields": {"orig_filename": "Markiewicz_Roman_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96", "author": "", "orig_id": 1408216}}, {"model": "metainfo.source", "pk": 9343, "fields": {"orig_filename": "Marki_Anton_1759_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94f.", "author": "", "orig_id": 1408211}}, {"model": "metainfo.source", "pk": 9344, "fields": {"orig_filename": "Marki_Samuel_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408212}}, {"model": "metainfo.source", "pk": 9345, "fields": {"orig_filename": "Marki_Sandor_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 95", "author": "", "orig_id": 1408213}}, {"model": "metainfo.source", "pk": 9346, "fields": {"orig_filename": "Markl_Andreas_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96", "author": "", "orig_id": 1408217}}, {"model": "metainfo.source", "pk": 9347, "fields": {"orig_filename": "Markl_Bohumil_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 96f.", "author": "", "orig_id": 1408218}}, {"model": "metainfo.source", "pk": 9348, "fields": {"orig_filename": "Markl_Moritz_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408219}}, {"model": "metainfo.source", "pk": 9349, "fields": {"orig_filename": "Markovic-Adamov_Pavle_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98f.", "author": "", "orig_id": 1408292}}, {"model": "metainfo.source", "pk": 9350, "fields": {"orig_filename": "Markovic_Franjo_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408222}}, {"model": "metainfo.source", "pk": 9351, "fields": {"orig_filename": "Markovic_Ivan_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408223}}, {"model": "metainfo.source", "pk": 9352, "fields": {"orig_filename": "Markovic_Marijan_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 98", "author": "", "orig_id": 1408224}}, {"model": "metainfo.source", "pk": 9353, "fields": {"orig_filename": "Markovits_Adalbert_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 99", "author": "", "orig_id": 1408293}}, {"model": "metainfo.source", "pk": 9354, "fields": {"orig_filename": "Markovits_Ivan-Theodor_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 99f.", "author": "", "orig_id": 1408294}}, {"model": "metainfo.source", "pk": 9355, "fields": {"orig_filename": "Markowicz_Artur_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100", "author": "", "orig_id": 1408295}}, {"model": "metainfo.source", "pk": 9356, "fields": {"orig_filename": "Markowski_Jozef_1860_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100", "author": "", "orig_id": 1408296}}, {"model": "metainfo.source", "pk": 9357, "fields": {"orig_filename": "Markowski_Jozef_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 100f.", "author": "", "orig_id": 1466818}}, {"model": "metainfo.source", "pk": 9358, "fields": {"orig_filename": "Markowsky_August-Maria_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 101", "author": "", "orig_id": 1408297}}, {"model": "metainfo.source", "pk": 9359, "fields": {"orig_filename": "Marko_Karoly_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408220}}, {"model": "metainfo.source", "pk": 9360, "fields": {"orig_filename": "Marko_Miklos_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 97", "author": "", "orig_id": 1408221}}, {"model": "metainfo.source", "pk": 9361, "fields": {"orig_filename": "Marktanner-Turneretscher_Gottlieb_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 101f.", "author": "", "orig_id": 1408298}}, {"model": "metainfo.source", "pk": 9362, "fields": {"orig_filename": "Markusovszky_Lajos_1815_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408303}}, {"model": "metainfo.source", "pk": 9363, "fields": {"orig_filename": "Markusovszky_Samuel_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408304}}, {"model": "metainfo.source", "pk": 9364, "fields": {"orig_filename": "Markus_Adalbert_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408299}}, {"model": "metainfo.source", "pk": 9365, "fields": {"orig_filename": "Markus_Emilia_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408300}}, {"model": "metainfo.source", "pk": 9366, "fields": {"orig_filename": "Markus_Jordan-Kajetan_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 102", "author": "", "orig_id": 1408301}}, {"model": "metainfo.source", "pk": 9367, "fields": {"orig_filename": "Markus_Jozsef_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103", "author": "", "orig_id": 1408302}}, {"model": "metainfo.source", "pk": 9368, "fields": {"orig_filename": "Mark_Abraham-Jakob_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 94", "author": "", "orig_id": 1408209}}, {"model": "metainfo.source", "pk": 9369, "fields": {"orig_filename": "Marlin_Josef_1824_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 103f.", "author": "", "orig_id": 1408305}}, {"model": "metainfo.source", "pk": 9370, "fields": {"orig_filename": "Marmorek_Alexander_1865_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 104", "author": "", "orig_id": 1408306}}, {"model": "metainfo.source", "pk": 9371, "fields": {"orig_filename": "Marmorek_Oskar_1863_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 104f.", "author": "", "orig_id": 1408307}}, {"model": "metainfo.source", "pk": 9372, "fields": {"orig_filename": "Marno-Eichenhorst_Adolf_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105f.", "author": "", "orig_id": 1408310}}, {"model": "metainfo.source", "pk": 9373, "fields": {"orig_filename": "Marno_Ernst_1844_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105", "author": "", "orig_id": 1408309}}, {"model": "metainfo.source", "pk": 9374, "fields": {"orig_filename": "Marn_Josip_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 105", "author": "", "orig_id": 1408308}}, {"model": "metainfo.source", "pk": 9375, "fields": {"orig_filename": "Maroicic-Madonna-Monte_Ambros-Georg-Wilhelm_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106", "author": "", "orig_id": 1408311}}, {"model": "metainfo.source", "pk": 9376, "fields": {"orig_filename": "Maroicic-Madonna-Monte_Josef_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106", "author": "", "orig_id": 1408378}}, {"model": "metainfo.source", "pk": 9377, "fields": {"orig_filename": "Marold_Ludek_1865_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 106f.", "author": "", "orig_id": 1408379}}, {"model": "metainfo.source", "pk": 9378, "fields": {"orig_filename": "Maroli_Rudolf-Johann-Emil_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107", "author": "", "orig_id": 1408380}}, {"model": "metainfo.source", "pk": 9379, "fields": {"orig_filename": "Marothy-Soltesova_Elena_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107", "author": "", "orig_id": 1408381}}, {"model": "metainfo.source", "pk": 9380, "fields": {"orig_filename": "Marovich_Anna_1815_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 107f.", "author": "", "orig_id": 1408382}}, {"model": "metainfo.source", "pk": 9381, "fields": {"orig_filename": "Marquart_Friedrich_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408383}}, {"model": "metainfo.source", "pk": 9382, "fields": {"orig_filename": "Marsal-Petrovsky_Gustav_1862_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408385}}, {"model": "metainfo.source", "pk": 9383, "fields": {"orig_filename": "Marsano_Wilhelm_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109", "author": "", "orig_id": 1408387}}, {"model": "metainfo.source", "pk": 9384, "fields": {"orig_filename": "Marsan_Robert_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108f.", "author": "", "orig_id": 1408386}}, {"model": "metainfo.source", "pk": 9385, "fields": {"orig_filename": "Marschalko_Johann_1818_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109", "author": "", "orig_id": 1408388}}, {"model": "metainfo.source", "pk": 9386, "fields": {"orig_filename": "Marschall_Godfried_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 109f.", "author": "", "orig_id": 1408389}}, {"model": "metainfo.source", "pk": 9387, "fields": {"orig_filename": "Marschan_Josef-Wilhelm_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110", "author": "", "orig_id": 1408390}}, {"model": "metainfo.source", "pk": 9388, "fields": {"orig_filename": "Marschner_Franz-Ludwig_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110", "author": "", "orig_id": 1408391}}, {"model": "metainfo.source", "pk": 9389, "fields": {"orig_filename": "Marschner_Franz-Vinzenz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 110f.", "author": "", "orig_id": 1408392}}, {"model": "metainfo.source", "pk": 9390, "fields": {"orig_filename": "Marschner_Robert-Anton_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408393}}, {"model": "metainfo.source", "pk": 9391, "fields": {"orig_filename": "Marsilli_Francesco-Antonio_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408395}}, {"model": "metainfo.source", "pk": 9392, "fields": {"orig_filename": "Marsoner_Rudolf_1899_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 111", "author": "", "orig_id": 1408394}}, {"model": "metainfo.source", "pk": 9393, "fields": {"orig_filename": "Mars_Antoni_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 108", "author": "", "orig_id": 1408384}}, {"model": "metainfo.source", "pk": 9394, "fields": {"orig_filename": "Marterer_Ferdinand_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112", "author": "", "orig_id": 1408397}}, {"model": "metainfo.source", "pk": 9395, "fields": {"orig_filename": "Martic_Grgo_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112", "author": "", "orig_id": 1408398}}, {"model": "metainfo.source", "pk": 9396, "fields": {"orig_filename": "Martinak_Eduard_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114f.", "author": "", "orig_id": 1408474}}, {"model": "metainfo.source", "pk": 9397, "fields": {"orig_filename": "Martinak_Heinrich_1826_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115", "author": "", "orig_id": 1408475}}, {"model": "metainfo.source", "pk": 9398, "fields": {"orig_filename": "Martinek_Robert_1889_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115", "author": "", "orig_id": 1408476}}, {"model": "metainfo.source", "pk": 9399, "fields": {"orig_filename": "Martinelli_Louise_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 115f.", "author": "", "orig_id": 1408477}}, {"model": "metainfo.source", "pk": 9400, "fields": {"orig_filename": "Martinelli_Ludwig_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 116", "author": "", "orig_id": 1408478}}, {"model": "metainfo.source", "pk": 9401, "fields": {"orig_filename": "Martinez_August_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 117", "author": "", "orig_id": 1408479}}, {"model": "metainfo.source", "pk": 9402, "fields": {"orig_filename": "Martini_Karl-Wilhelm_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 117", "author": "", "orig_id": 1408481}}, {"model": "metainfo.source", "pk": 9403, "fields": {"orig_filename": "Martinu_Jan_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408482}}, {"model": "metainfo.source", "pk": 9404, "fields": {"orig_filename": "Martiny-Malastow_Hugo_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408484}}, {"model": "metainfo.source", "pk": 9405, "fields": {"orig_filename": "Martiny_Koloman_1864_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118", "author": "", "orig_id": 1408483}}, {"model": "metainfo.source", "pk": 9406, "fields": {"orig_filename": "Martin_Anton_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 112f.", "author": "", "orig_id": 1408399}}, {"model": "metainfo.source", "pk": 9407, "fields": {"orig_filename": "Martin_Franz_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 113f.", "author": "", "orig_id": 1408471}}, {"model": "metainfo.source", "pk": 9408, "fields": {"orig_filename": "Martin_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114", "author": "", "orig_id": 1408472}}, {"model": "metainfo.source", "pk": 9409, "fields": {"orig_filename": "Martin_Lajos_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 114", "author": "", "orig_id": 1408473}}, {"model": "metainfo.source", "pk": 9410, "fields": {"orig_filename": "Martius_Anton_1794_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 118f.", "author": "", "orig_id": 1408485}}, {"model": "metainfo.source", "pk": 9411, "fields": {"orig_filename": "Marton-Zsarolyan-Mand_Istvan_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119", "author": "", "orig_id": 1408486}}, {"model": "metainfo.source", "pk": 9412, "fields": {"orig_filename": "Martovyc_Les_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119", "author": "", "orig_id": 1408487}}, {"model": "metainfo.source", "pk": 9413, "fields": {"orig_filename": "Marty_Anton_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 119f.", "author": "", "orig_id": 1408488}}, {"model": "metainfo.source", "pk": 9414, "fields": {"orig_filename": "Marun_Lujo_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120", "author": "", "orig_id": 1408489}}, {"model": "metainfo.source", "pk": 9415, "fields": {"orig_filename": "Marussig_Anton_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120", "author": "", "orig_id": 1408490}}, {"model": "metainfo.source", "pk": 9416, "fields": {"orig_filename": "Marx-Marxberg_Wilhelm_1815_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 121f.", "author": "", "orig_id": 1408563}}, {"model": "metainfo.source", "pk": 9417, "fields": {"orig_filename": "Marx_Anton-Maria_1886_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 120f.", "author": "", "orig_id": 1408491}}, {"model": "metainfo.source", "pk": 9418, "fields": {"orig_filename": "Marx_Friedrich_1830_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 121", "author": "", "orig_id": 1408562}}, {"model": "metainfo.source", "pk": 9419, "fields": {"orig_filename": "Maryanski_Walery-Ostoya_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408564}}, {"model": "metainfo.source", "pk": 9420, "fields": {"orig_filename": "Marzani-Stainhof-Neuhaus_Carlo_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408565}}, {"model": "metainfo.source", "pk": 9421, "fields": {"orig_filename": "Marzari-Pencati_Giuseppe_1779_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122", "author": "", "orig_id": 1408566}}, {"model": "metainfo.source", "pk": 9422, "fields": {"orig_filename": "Marzik_Thomas_1810_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 122f.", "author": "", "orig_id": 1408567}}, {"model": "metainfo.source", "pk": 9423, "fields": {"orig_filename": "Masaidek_Franz-Friedrich_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123", "author": "", "orig_id": 1408568}}, {"model": "metainfo.source", "pk": 9424, "fields": {"orig_filename": "Masaryk_Herbert_1880_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123", "author": "", "orig_id": 1408569}}, {"model": "metainfo.source", "pk": 9425, "fields": {"orig_filename": "Masaryk_Thomas_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 123f.", "author": "", "orig_id": 1408570}}, {"model": "metainfo.source", "pk": 9426, "fields": {"orig_filename": "Maschat_Josef_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 27, 1974), S. 124", "author": "", "orig_id": 1408571}}, {"model": "metainfo.source", "pk": 9427, "fields": {"orig_filename": "Mannagetta-Lerchenau_Johann-Wilhelm_1785_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56", "author": "", "orig_id": 1409192}}, {"model": "metainfo.source", "pk": 9428, "fields": {"orig_filename": "Manner_Josef_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56", "author": "", "orig_id": 1409193}}, {"model": "metainfo.source", "pk": 9429, "fields": {"orig_filename": "Mannheimer_Isak-Noa_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 56f.", "author": "", "orig_id": 1409194}}, {"model": "metainfo.source", "pk": 9430, "fields": {"orig_filename": "Mannlicher_Ferdinand_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 57f.", "author": "", "orig_id": 1409196}}, {"model": "metainfo.source", "pk": 9431, "fields": {"orig_filename": "Mannl_Oswald_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 57", "author": "", "orig_id": 1409195}}, {"model": "metainfo.source", "pk": 9432, "fields": {"orig_filename": "Mannsbarth_Franz_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 58", "author": "", "orig_id": 1409197}}, {"model": "metainfo.source", "pk": 9433, "fields": {"orig_filename": "Mannsfeld_Hieronymus_1842_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 58f.", "author": "", "orig_id": 1409198}}, {"model": "metainfo.source", "pk": 9434, "fields": {"orig_filename": "Mann_Jakob_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409188}}, {"model": "metainfo.source", "pk": 9435, "fields": {"orig_filename": "Mann_Maurycy_1814_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54f.", "author": "", "orig_id": 1409189}}, {"model": "metainfo.source", "pk": 9436, "fields": {"orig_filename": "Mann_Oskar_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 55", "author": "", "orig_id": 1409190}}, {"model": "metainfo.source", "pk": 9437, "fields": {"orig_filename": "Manojlovic_Gavro_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59", "author": "", "orig_id": 1409199}}, {"model": "metainfo.source", "pk": 9438, "fields": {"orig_filename": "Manojlovic_Michael_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59", "author": "", "orig_id": 1409200}}, {"model": "metainfo.source", "pk": 9439, "fields": {"orig_filename": "Manojlovic_Svetozar_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 59f.", "author": "", "orig_id": 1409201}}, {"model": "metainfo.source", "pk": 9440, "fields": {"orig_filename": "Manowarda-Jana_Eberhard_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409202}}, {"model": "metainfo.source", "pk": 9441, "fields": {"orig_filename": "Manowarda-Jana_Josef_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409203}}, {"model": "metainfo.source", "pk": 9442, "fields": {"orig_filename": "Manschgo_Johann_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409205}}, {"model": "metainfo.source", "pk": 9443, "fields": {"orig_filename": "Mansch_Philipp_1838_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 60", "author": "", "orig_id": 1409204}}, {"model": "metainfo.source", "pk": 9444, "fields": {"orig_filename": "Mansfeld_August-Heinrich_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409206}}, {"model": "metainfo.source", "pk": 9445, "fields": {"orig_filename": "Mansfeld_Heinrich-Josef_1785_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409279}}, {"model": "metainfo.source", "pk": 9446, "fields": {"orig_filename": "Mansfeld_Josef_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61", "author": "", "orig_id": 1409280}}, {"model": "metainfo.source", "pk": 9447, "fields": {"orig_filename": "Mansfeld_Moritz_1859_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 61f.", "author": "", "orig_id": 1409281}}, {"model": "metainfo.source", "pk": 9448, "fields": {"orig_filename": "Mantler_August_1830_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409282}}, {"model": "metainfo.source", "pk": 9449, "fields": {"orig_filename": "Mantler_Heinrich_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409283}}, {"model": "metainfo.source", "pk": 9450, "fields": {"orig_filename": "Mantuani_Josef_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62", "author": "", "orig_id": 1409284}}, {"model": "metainfo.source", "pk": 9451, "fields": {"orig_filename": "Manussi-Montesole_Alfred_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 62f.", "author": "", "orig_id": 1409285}}, {"model": "metainfo.source", "pk": 9452, "fields": {"orig_filename": "Manussi-Montesole_Ferdinand-Karl_1809_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63", "author": "", "orig_id": 1409287}}, {"model": "metainfo.source", "pk": 9453, "fields": {"orig_filename": "Manussi-Montesole_Ferdinand_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63", "author": "", "orig_id": 1409286}}, {"model": "metainfo.source", "pk": 9454, "fields": {"orig_filename": "Manz-Mariensee_Anton_1757_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 63f.", "author": "", "orig_id": 1409288}}, {"model": "metainfo.source", "pk": 9455, "fields": {"orig_filename": "Manz-Mariensee_Vinzenz_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409289}}, {"model": "metainfo.source", "pk": 9456, "fields": {"orig_filename": "Manzer_Josef-Dionys_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409290}}, {"model": "metainfo.source", "pk": 9457, "fields": {"orig_filename": "Manzer_Robert_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64", "author": "", "orig_id": 1409291}}, {"model": "metainfo.source", "pk": 9458, "fields": {"orig_filename": "Manzoni_Alessandro_1785_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 64f.", "author": "", "orig_id": 1409292}}, {"model": "metainfo.source", "pk": 9459, "fields": {"orig_filename": "Marak_Julius_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 65f.", "author": "", "orig_id": 1409293}}, {"model": "metainfo.source", "pk": 9460, "fields": {"orig_filename": "Marasca_Pietro_1808_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66", "author": "", "orig_id": 1409295}}, {"model": "metainfo.source", "pk": 9461, "fields": {"orig_filename": "Marasse_Mieczyslaw_1840_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66f.", "author": "", "orig_id": 1409296}}, {"model": "metainfo.source", "pk": 9462, "fields": {"orig_filename": "Marastoni_Jakab_1804_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409297}}, {"model": "metainfo.source", "pk": 9463, "fields": {"orig_filename": "Marastoni_Josef_1834_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409298}}, {"model": "metainfo.source", "pk": 9464, "fields": {"orig_filename": "Maras_Raimund_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 66", "author": "", "orig_id": 1409294}}, {"model": "metainfo.source", "pk": 9465, "fields": {"orig_filename": "Maratka_Josef_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67f.", "author": "", "orig_id": 1409300}}, {"model": "metainfo.source", "pk": 9466, "fields": {"orig_filename": "Marat_Franz_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 67", "author": "", "orig_id": 1409299}}, {"model": "metainfo.source", "pk": 9467, "fields": {"orig_filename": "Marbach_Adolf_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409301}}, {"model": "metainfo.source", "pk": 9468, "fields": {"orig_filename": "Marcantellj-Serravalle_Bernhard_1755_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68", "author": "", "orig_id": 1409303}}, {"model": "metainfo.source", "pk": 9469, "fields": {"orig_filename": "Marceljic_Josip_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 68f.", "author": "", "orig_id": 1409373}}, {"model": "metainfo.source", "pk": 9470, "fields": {"orig_filename": "Marcher_Matthias_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409374}}, {"model": "metainfo.source", "pk": 9471, "fields": {"orig_filename": "Marchesetti_Carlo_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 69", "author": "", "orig_id": 1409375}}, {"model": "metainfo.source", "pk": 9472, "fields": {"orig_filename": "Marchetti_Prospero_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 71", "author": "", "orig_id": 1409379}}, {"model": "metainfo.source", "pk": 9473, "fields": {"orig_filename": "Marchet_Arthur_1892_1980.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1467303}}, {"model": "metainfo.source", "pk": 9474, "fields": {"orig_filename": "Marchet_Gustav_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 70", "author": "", "orig_id": 1409377}}, {"model": "metainfo.source", "pk": 9475, "fields": {"orig_filename": "Marchet_Julius_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 70f.", "author": "", "orig_id": 1409378}}, {"model": "metainfo.source", "pk": 9476, "fields": {"orig_filename": "Marchlewski_Leon-Pawel_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 71f.", "author": "", "orig_id": 1409380}}, {"model": "metainfo.source", "pk": 9477, "fields": {"orig_filename": "Marchwicki_Zdzislaw_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409381}}, {"model": "metainfo.source", "pk": 9478, "fields": {"orig_filename": "Marcolini_Francesco-Maria_1779_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409383}}, {"model": "metainfo.source", "pk": 9479, "fields": {"orig_filename": "Marconi_Leonard_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72", "author": "", "orig_id": 1409384}}, {"model": "metainfo.source", "pk": 9480, "fields": {"orig_filename": "Marcus_Siegfried_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 72f.", "author": "", "orig_id": 1409385}}, {"model": "metainfo.source", "pk": 9481, "fields": {"orig_filename": "Marczali_Henrik_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 73", "author": "", "orig_id": 1409386}}, {"model": "metainfo.source", "pk": 9482, "fields": {"orig_filename": "Mardetschlaeger_Franz_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74", "author": "", "orig_id": 1409387}}, {"model": "metainfo.source", "pk": 9483, "fields": {"orig_filename": "Mareck_Alois-Titus_1819_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74", "author": "", "orig_id": 1409388}}, {"model": "metainfo.source", "pk": 9484, "fields": {"orig_filename": "Mareda_Wenzel-Franz_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 74f.", "author": "", "orig_id": 1409389}}, {"model": "metainfo.source", "pk": 9485, "fields": {"orig_filename": "Marek_Antonin_1785_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75", "author": "", "orig_id": 1409390}}, {"model": "metainfo.source", "pk": 9486, "fields": {"orig_filename": "Marek_Ferdinand_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75", "author": "", "orig_id": 1409391}}, {"model": "metainfo.source", "pk": 9487, "fields": {"orig_filename": "Marek_Jan-Jindrich_1803_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 75f.", "author": "", "orig_id": 1409392}}, {"model": "metainfo.source", "pk": 9488, "fields": {"orig_filename": "Marek_Karl_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76", "author": "", "orig_id": 1409393}}, {"model": "metainfo.source", "pk": 9489, "fields": {"orig_filename": "Marek_Ludvik-Bohumil_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76", "author": "", "orig_id": 1409394}}, {"model": "metainfo.source", "pk": 9490, "fields": {"orig_filename": "Marek_Zygmunt_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 76f.", "author": "", "orig_id": 1409467}}, {"model": "metainfo.source", "pk": 9491, "fields": {"orig_filename": "Marenzeller_Edmund-Oskar_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77", "author": "", "orig_id": 1409468}}, {"model": "metainfo.source", "pk": 9492, "fields": {"orig_filename": "Marenzeller_Emil_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77", "author": "", "orig_id": 1409469}}, {"model": "metainfo.source", "pk": 9493, "fields": {"orig_filename": "Marenzeller_Matthias_1765_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 77f.", "author": "", "orig_id": 1409470}}, {"model": "metainfo.source", "pk": 9494, "fields": {"orig_filename": "Marenzi_Franz_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 78", "author": "", "orig_id": 1409471}}, {"model": "metainfo.source", "pk": 9495, "fields": {"orig_filename": "Marenzi_Franz_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 78f.", "author": "", "orig_id": 1409472}}, {"model": "metainfo.source", "pk": 9496, "fields": {"orig_filename": "Mareschall-Bieberstein_Wenzel-Philipp-Leopold_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 81", "author": "", "orig_id": 1409479}}, {"model": "metainfo.source", "pk": 9497, "fields": {"orig_filename": "Maresch_Johann_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80", "author": "", "orig_id": 1409476}}, {"model": "metainfo.source", "pk": 9498, "fields": {"orig_filename": "Maresch_Otto_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80", "author": "", "orig_id": 1409477}}, {"model": "metainfo.source", "pk": 9499, "fields": {"orig_filename": "Maresch_Rudolf_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 80f.", "author": "", "orig_id": 1409478}}, {"model": "metainfo.source", "pk": 9500, "fields": {"orig_filename": "Mares_Bohumil_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79", "author": "", "orig_id": 1409473}}, {"model": "metainfo.source", "pk": 9501, "fields": {"orig_filename": "Mares_Frantisek_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79", "author": "", "orig_id": 1409474}}, {"model": "metainfo.source", "pk": 9502, "fields": {"orig_filename": "Mares_Frantisek_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 79f.", "author": "", "orig_id": 1409475}}, {"model": "metainfo.source", "pk": 9503, "fields": {"orig_filename": "Mareta_Hugo_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 81f.", "author": "", "orig_id": 1409480}}, {"model": "metainfo.source", "pk": 9504, "fields": {"orig_filename": "Maretich-Riv-Alpon_Eduard_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82", "author": "", "orig_id": 1409483}}, {"model": "metainfo.source", "pk": 9505, "fields": {"orig_filename": "Maretich-Riv-Alpon_Gedeon_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82", "author": "", "orig_id": 1409481}}, {"model": "metainfo.source", "pk": 9506, "fields": {"orig_filename": "Maretzek_Max_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 82f.", "author": "", "orig_id": 1409482}}, {"model": "metainfo.source", "pk": 9507, "fields": {"orig_filename": "Margelik_Franz_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409484}}, {"model": "metainfo.source", "pk": 9508, "fields": {"orig_filename": "Margocsy_Jozsef_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409486}}, {"model": "metainfo.source", "pk": 9509, "fields": {"orig_filename": "Margosches_Max_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83f.", "author": "", "orig_id": 1409487}}, {"model": "metainfo.source", "pk": 9510, "fields": {"orig_filename": "Margo_Tivadar_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 83", "author": "", "orig_id": 1409485}}, {"model": "metainfo.source", "pk": 9511, "fields": {"orig_filename": "Margreiter_Jakob_1762_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 84", "author": "", "orig_id": 1409488}}, {"model": "metainfo.source", "pk": 9512, "fields": {"orig_filename": "Margules_Max_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 84f.", "author": "", "orig_id": 1409489}}, {"model": "metainfo.source", "pk": 9513, "fields": {"orig_filename": "Margulies_Otto_1899_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1408113}}, {"model": "metainfo.source", "pk": 9514, "fields": {"orig_filename": "Margulies_Samuel-Hersch_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1408114}}, {"model": "metainfo.source", "pk": 9515, "fields": {"orig_filename": "Margutti_Albert_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85f.", "author": "", "orig_id": 1408115}}, {"model": "metainfo.source", "pk": 9516, "fields": {"orig_filename": "Maria-Anna__1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86", "author": "", "orig_id": 1408116}}, {"model": "metainfo.source", "pk": 9517, "fields": {"orig_filename": "Maria-Charlotte__1840_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86", "author": "", "orig_id": 1408117}}, {"model": "metainfo.source", "pk": 9518, "fields": {"orig_filename": "Maria-Christina__1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 86f.", "author": "", "orig_id": 1408118}}, {"model": "metainfo.source", "pk": 9519, "fields": {"orig_filename": "Maria-Dorothea___1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 87", "author": "", "orig_id": 1408119}}, {"model": "metainfo.source", "pk": 9520, "fields": {"orig_filename": "Maria-Louise__1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 87f.", "author": "", "orig_id": 1408120}}, {"model": "metainfo.source", "pk": 9521, "fields": {"orig_filename": "Maria-Ludovica__1787_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 88f.", "author": "", "orig_id": 1408121}}, {"model": "metainfo.source", "pk": 9522, "fields": {"orig_filename": "Maria-Theresia__1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408122}}, {"model": "metainfo.source", "pk": 9523, "fields": {"orig_filename": "Maria-Valerie___1868_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408123}}, {"model": "metainfo.source", "pk": 9524, "fields": {"orig_filename": "Mariacher_Stephan_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89", "author": "", "orig_id": 1408124}}, {"model": "metainfo.source", "pk": 9525, "fields": {"orig_filename": "Marian_Simion-Florea_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 89f.", "author": "", "orig_id": 1408125}}, {"model": "metainfo.source", "pk": 9526, "fields": {"orig_filename": "Mailath-Szekhely_Gyoergy_1786_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19f.", "author": "", "orig_id": 1408750}}, {"model": "metainfo.source", "pk": 9527, "fields": {"orig_filename": "Mailath-Szekhely_Gyoergy_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20", "author": "", "orig_id": 1408751}}, {"model": "metainfo.source", "pk": 9528, "fields": {"orig_filename": "Mailath-Szekhely_Janos_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20", "author": "", "orig_id": 1408752}}, {"model": "metainfo.source", "pk": 9529, "fields": {"orig_filename": "Mailhac_Pauline-Rebekka_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 20f.", "author": "", "orig_id": 1408753}}, {"model": "metainfo.source", "pk": 9530, "fields": {"orig_filename": "Maiorescu_Ioan_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 21f.", "author": "", "orig_id": 1408822}}, {"model": "metainfo.source", "pk": 9531, "fields": {"orig_filename": "Maior_Petru_1761_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 21", "author": "", "orig_id": 1408821}}, {"model": "metainfo.source", "pk": 9532, "fields": {"orig_filename": "Maischberger_Thomas_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 22", "author": "", "orig_id": 1408823}}, {"model": "metainfo.source", "pk": 9533, "fields": {"orig_filename": "Maister_Rudolf_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 22f.", "author": "", "orig_id": 1408824}}, {"model": "metainfo.source", "pk": 9534, "fields": {"orig_filename": "Maitisch_Ferdinand_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23", "author": "", "orig_id": 1408825}}, {"model": "metainfo.source", "pk": 9535, "fields": {"orig_filename": "Maixner_Emerich_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23", "author": "", "orig_id": 1408826}}, {"model": "metainfo.source", "pk": 9536, "fields": {"orig_filename": "Maixner_Franjo_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 23f.", "author": "", "orig_id": 1408827}}, {"model": "metainfo.source", "pk": 9537, "fields": {"orig_filename": "Maixner_Petr_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 24", "author": "", "orig_id": 1408828}}, {"model": "metainfo.source", "pk": 9538, "fields": {"orig_filename": "Mai_Angelo_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 415f.", "author": "", "orig_id": 1411858}}, {"model": "metainfo.source", "pk": 9539, "fields": {"orig_filename": "Majaron_Danilo_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25", "author": "", "orig_id": 1408830}}, {"model": "metainfo.source", "pk": 9540, "fields": {"orig_filename": "Majar_Matija_1809_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 24f.", "author": "", "orig_id": 1408829}}, {"model": "metainfo.source", "pk": 9541, "fields": {"orig_filename": "Majcen_Juraj_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25", "author": "", "orig_id": 1408831}}, {"model": "metainfo.source", "pk": 9542, "fields": {"orig_filename": "Majchrowicz_Franciszek_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 25f.", "author": "", "orig_id": 1408832}}, {"model": "metainfo.source", "pk": 9543, "fields": {"orig_filename": "Majdic_Peter_1823_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26", "author": "", "orig_id": 1408833}}, {"model": "metainfo.source", "pk": 9544, "fields": {"orig_filename": "Majernik_Cyprian_1909_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 27f.", "author": "", "orig_id": 1408837}}, {"model": "metainfo.source", "pk": 9545, "fields": {"orig_filename": "Majersky_Adalbert_1866_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28", "author": "", "orig_id": 1408838}}, {"model": "metainfo.source", "pk": 9546, "fields": {"orig_filename": "Majer_Antonin_1826_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26", "author": "", "orig_id": 1408834}}, {"model": "metainfo.source", "pk": 9547, "fields": {"orig_filename": "Majer_Jozef_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 26f.", "author": "", "orig_id": 1408835}}, {"model": "metainfo.source", "pk": 9548, "fields": {"orig_filename": "Majer_Stephan_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 27", "author": "", "orig_id": 1408836}}, {"model": "metainfo.source", "pk": 9549, "fields": {"orig_filename": "Majewski_Bronislaw_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28", "author": "", "orig_id": 1408839}}, {"model": "metainfo.source", "pk": 9550, "fields": {"orig_filename": "Majewski_Stefan_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 28f.", "author": "", "orig_id": 1408840}}, {"model": "metainfo.source", "pk": 9551, "fields": {"orig_filename": "Majic_Anto_1877_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408841}}, {"model": "metainfo.source", "pk": 9552, "fields": {"orig_filename": "Majlath-Szekhely_Bela_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408908}}, {"model": "metainfo.source", "pk": 9553, "fields": {"orig_filename": "Majunke_Gedeon_1854_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29", "author": "", "orig_id": 1408909}}, {"model": "metainfo.source", "pk": 9554, "fields": {"orig_filename": "Makart_Hans_1840_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 29ff.", "author": "", "orig_id": 1408910}}, {"model": "metainfo.source", "pk": 9555, "fields": {"orig_filename": "Makovej_Osyp_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31", "author": "", "orig_id": 1408911}}, {"model": "metainfo.source", "pk": 9556, "fields": {"orig_filename": "Makovicky_Dusan_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31", "author": "", "orig_id": 1408912}}, {"model": "metainfo.source", "pk": 9557, "fields": {"orig_filename": "Makowsky_Alexander_1833_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 31f.", "author": "", "orig_id": 1408913}}, {"model": "metainfo.source", "pk": 9558, "fields": {"orig_filename": "Malavasic_Franc_1818_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32", "author": "", "orig_id": 1408914}}, {"model": "metainfo.source", "pk": 9559, "fields": {"orig_filename": "Malcher_Adolfine_1858_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32", "author": "", "orig_id": 1408915}}, {"model": "metainfo.source", "pk": 9560, "fields": {"orig_filename": "Malczewski-Tarnawa_Julius_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 33", "author": "", "orig_id": 1408917}}, {"model": "metainfo.source", "pk": 9561, "fields": {"orig_filename": "Malczewski_Jacek_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 32f.", "author": "", "orig_id": 1408916}}, {"model": "metainfo.source", "pk": 9562, "fields": {"orig_filename": "Malecki_Antoni_1821_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 33f.", "author": "", "orig_id": 1408918}}, {"model": "metainfo.source", "pk": 9563, "fields": {"orig_filename": "Malek-Werthenfels_Franz_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408919}}, {"model": "metainfo.source", "pk": 9564, "fields": {"orig_filename": "Malfatti-Monteregio_Johann_1775_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35", "author": "", "orig_id": 1408924}}, {"model": "metainfo.source", "pk": 9565, "fields": {"orig_filename": "Malfatti-Rohrenbach-Dezza_Leopold_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35f.", "author": "", "orig_id": 1408925}}, {"model": "metainfo.source", "pk": 9566, "fields": {"orig_filename": "Malfatti_Alois_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408920}}, {"model": "metainfo.source", "pk": 9567, "fields": {"orig_filename": "Malfatti_Andrea_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34", "author": "", "orig_id": 1408921}}, {"model": "metainfo.source", "pk": 9568, "fields": {"orig_filename": "Malfatti_Emanuele_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 34f.", "author": "", "orig_id": 1408922}}, {"model": "metainfo.source", "pk": 9569, "fields": {"orig_filename": "Malfatti_Valeriano_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 35", "author": "", "orig_id": 1408923}}, {"model": "metainfo.source", "pk": 9570, "fields": {"orig_filename": "Malinescu_Vasile_1817_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408926}}, {"model": "metainfo.source", "pk": 9571, "fields": {"orig_filename": "Malinowski_Lucjan_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408927}}, {"model": "metainfo.source", "pk": 9572, "fields": {"orig_filename": "Malinsky_Frantisek_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 36", "author": "", "orig_id": 1408928}}, {"model": "metainfo.source", "pk": 9573, "fields": {"orig_filename": "Malinsky_Josef_1752_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408929}}, {"model": "metainfo.source", "pk": 9574, "fields": {"orig_filename": "Malirova_Helena_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408997}}, {"model": "metainfo.source", "pk": 9575, "fields": {"orig_filename": "Maliwa_Edmund_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 37", "author": "", "orig_id": 1408998}}, {"model": "metainfo.source", "pk": 9576, "fields": {"orig_filename": "Malkowski_Andrzej_1889_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38", "author": "", "orig_id": 1408999}}, {"model": "metainfo.source", "pk": 9577, "fields": {"orig_filename": "Mallinger_Mathilde_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38f.", "author": "", "orig_id": 1409001}}, {"model": "metainfo.source", "pk": 9578, "fields": {"orig_filename": "Mallin_Ivo_1853_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 38", "author": "", "orig_id": 1409000}}, {"model": "metainfo.source", "pk": 9579, "fields": {"orig_filename": "Mallitsch_Ferdinand_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409002}}, {"model": "metainfo.source", "pk": 9580, "fields": {"orig_filename": "Mallner-Marsegg_Hermann_1829_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409003}}, {"model": "metainfo.source", "pk": 9581, "fields": {"orig_filename": "Mally-Dusarov_Jan_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39f.", "author": "", "orig_id": 1409005}}, {"model": "metainfo.source", "pk": 9582, "fields": {"orig_filename": "Mally_Ernst_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 39", "author": "", "orig_id": 1409004}}, {"model": "metainfo.source", "pk": 9583, "fields": {"orig_filename": "Malmer_Martin_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409006}}, {"model": "metainfo.source", "pk": 9584, "fields": {"orig_filename": "Maloch_Antonin-Vankomil_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40", "author": "", "orig_id": 1409007}}, {"model": "metainfo.source", "pk": 9585, "fields": {"orig_filename": "Malovrh_Miroslav_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 40f.", "author": "", "orig_id": 1409009}}, {"model": "metainfo.source", "pk": 9586, "fields": {"orig_filename": "Malter_Henry_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41", "author": "", "orig_id": 1409010}}, {"model": "metainfo.source", "pk": 9587, "fields": {"orig_filename": "Maltz-Maltenau_Karl-Ludwig_1788_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41", "author": "", "orig_id": 1409011}}, {"model": "metainfo.source", "pk": 9588, "fields": {"orig_filename": "Maly-Vevanovic_Vinzenz_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44", "author": "", "orig_id": 1409017}}, {"model": "metainfo.source", "pk": 9589, "fields": {"orig_filename": "Maly_Franz_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 41f.", "author": "", "orig_id": 1409012}}, {"model": "metainfo.source", "pk": 9590, "fields": {"orig_filename": "Maly_Jakub_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 42", "author": "", "orig_id": 1409013}}, {"model": "metainfo.source", "pk": 9591, "fields": {"orig_filename": "Maly_Jiri_1899_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 42f.", "author": "", "orig_id": 1409014}}, {"model": "metainfo.source", "pk": 9592, "fields": {"orig_filename": "Maly_Joseph-Karl_1797_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 43", "author": "", "orig_id": 1409015}}, {"model": "metainfo.source", "pk": 9593, "fields": {"orig_filename": "Maly_Richard_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 43f.", "author": "", "orig_id": 1409016}}, {"model": "metainfo.source", "pk": 9594, "fields": {"orig_filename": "Mampe_Emma_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44", "author": "", "orig_id": 1409018}}, {"model": "metainfo.source", "pk": 9595, "fields": {"orig_filename": "Mamroth_Fedor_1851_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 44f.", "author": "", "orig_id": 1409019}}, {"model": "metainfo.source", "pk": 9596, "fields": {"orig_filename": "Mamula_Lazarus_1795_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45", "author": "", "orig_id": 1409020}}, {"model": "metainfo.source", "pk": 9597, "fields": {"orig_filename": "Manci_Filippo_1836_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45", "author": "", "orig_id": 1409090}}, {"model": "metainfo.source", "pk": 9598, "fields": {"orig_filename": "Manci_Sigismondo_1734_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 45f.", "author": "", "orig_id": 1409091}}, {"model": "metainfo.source", "pk": 9599, "fields": {"orig_filename": "Mandell_Ludwig_1784_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409093}}, {"model": "metainfo.source", "pk": 9600, "fields": {"orig_filename": "Mandel_Cyril_1873_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409092}}, {"model": "metainfo.source", "pk": 9601, "fields": {"orig_filename": "Mandic_Antun_1740_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409094}}, {"model": "metainfo.source", "pk": 9602, "fields": {"orig_filename": "Mandic_Matko_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46", "author": "", "orig_id": 1409095}}, {"model": "metainfo.source", "pk": 9603, "fields": {"orig_filename": "Mandler_Ernst_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409102}}, {"model": "metainfo.source", "pk": 9604, "fields": {"orig_filename": "Mandlick_August_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409103}}, {"model": "metainfo.source", "pk": 9605, "fields": {"orig_filename": "Mandl_Albert_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 46f.", "author": "", "orig_id": 1409096}}, {"model": "metainfo.source", "pk": 9606, "fields": {"orig_filename": "Mandl_Ignaz_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47", "author": "", "orig_id": 1409097}}, {"model": "metainfo.source", "pk": 9607, "fields": {"orig_filename": "Mandl_Johannes_1899_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47", "author": "", "orig_id": 1409098}}, {"model": "metainfo.source", "pk": 9608, "fields": {"orig_filename": "Mandl_Julius_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 47f.", "author": "", "orig_id": 1409099}}, {"model": "metainfo.source", "pk": 9609, "fields": {"orig_filename": "Mandl_Leopold_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409100}}, {"model": "metainfo.source", "pk": 9610, "fields": {"orig_filename": "Mandl_Richard_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 48", "author": "", "orig_id": 1409101}}, {"model": "metainfo.source", "pk": 9611, "fields": {"orig_filename": "Mandrovic_Adam_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409104}}, {"model": "metainfo.source", "pk": 9612, "fields": {"orig_filename": "Mandyczewski_Eusebius_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409105}}, {"model": "metainfo.source", "pk": 9613, "fields": {"orig_filename": "Mandyczewski_Konstantin_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49", "author": "", "orig_id": 1409106}}, {"model": "metainfo.source", "pk": 9614, "fields": {"orig_filename": "Manes_Antonin_1784_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 49f.", "author": "", "orig_id": 1409107}}, {"model": "metainfo.source", "pk": 9615, "fields": {"orig_filename": "Manes_Josef_1820_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 50f.", "author": "", "orig_id": 1409108}}, {"model": "metainfo.source", "pk": 9616, "fields": {"orig_filename": "Manes_Vaclav_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409110}}, {"model": "metainfo.source", "pk": 9617, "fields": {"orig_filename": "Manfredini_Luigi_1771_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409112}}, {"model": "metainfo.source", "pk": 9618, "fields": {"orig_filename": "Manfroni-Manfort_Moriz_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409114}}, {"model": "metainfo.source", "pk": 9619, "fields": {"orig_filename": "Manfroni_Mario_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52", "author": "", "orig_id": 1409113}}, {"model": "metainfo.source", "pk": 9620, "fields": {"orig_filename": "Mangra_Vasile_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53", "author": "", "orig_id": 1409183}}, {"model": "metainfo.source", "pk": 9621, "fields": {"orig_filename": "Mang_Hermann_1883_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 52f.", "author": "", "orig_id": 1409115}}, {"model": "metainfo.source", "pk": 9622, "fields": {"orig_filename": "Maniecki_Wojciech_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53", "author": "", "orig_id": 1409184}}, {"model": "metainfo.source", "pk": 9623, "fields": {"orig_filename": "Maniu_Vasile_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 53f.", "author": "", "orig_id": 1409185}}, {"model": "metainfo.source", "pk": 9624, "fields": {"orig_filename": "Mankowski_Antoni_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409186}}, {"model": "metainfo.source", "pk": 9625, "fields": {"orig_filename": "Mankowski_Boleslaw_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 54", "author": "", "orig_id": 1409187}}, {"model": "metainfo.source", "pk": 9626, "fields": {"orig_filename": "Mannaberg_Julius_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 55", "author": "", "orig_id": 1409191}}, {"model": "metainfo.source", "pk": 9627, "fields": {"orig_filename": "Maier_Alexius_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416f.", "author": "", "orig_id": 1411861}}, {"model": "metainfo.source", "pk": 9628, "fields": {"orig_filename": "Maier_Ambros_1849_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411862}}, {"model": "metainfo.source", "pk": 9629, "fields": {"orig_filename": "Maier_Angela_1807_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411935}}, {"model": "metainfo.source", "pk": 9630, "fields": {"orig_filename": "Maier_Antonio_1862_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418f.", "author": "", "orig_id": 1411940}}, {"model": "metainfo.source", "pk": 9631, "fields": {"orig_filename": "Maier_Anton_1776_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417", "author": "", "orig_id": 1411936}}, {"model": "metainfo.source", "pk": 9632, "fields": {"orig_filename": "Maier_Anton_1780_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 417f.", "author": "", "orig_id": 1411937}}, {"model": "metainfo.source", "pk": 9633, "fields": {"orig_filename": "Maier_Anton_1838_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418", "author": "", "orig_id": 1411938}}, {"model": "metainfo.source", "pk": 9634, "fields": {"orig_filename": "Maier_Anton_1903_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 418", "author": "", "orig_id": 1411939}}, {"model": "metainfo.source", "pk": 9635, "fields": {"orig_filename": "Maier_August-Georg_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411941}}, {"model": "metainfo.source", "pk": 9636, "fields": {"orig_filename": "Maier_August-Konrad_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411942}}, {"model": "metainfo.source", "pk": 9637, "fields": {"orig_filename": "Maier_Christian_1812_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419", "author": "", "orig_id": 1411943}}, {"model": "metainfo.source", "pk": 9638, "fields": {"orig_filename": "Maier_Dominik_1809_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 419f.", "author": "", "orig_id": 1411944}}, {"model": "metainfo.source", "pk": 9639, "fields": {"orig_filename": "Maier_Edgar_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420", "author": "", "orig_id": 1411945}}, {"model": "metainfo.source", "pk": 9640, "fields": {"orig_filename": "Maier_Emil_1822_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420", "author": "", "orig_id": 1411946}}, {"model": "metainfo.source", "pk": 9641, "fields": {"orig_filename": "Maier_Emil_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 420f.", "author": "", "orig_id": 1411947}}, {"model": "metainfo.source", "pk": 9642, "fields": {"orig_filename": "Maier_Endre_1859_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411948}}, {"model": "metainfo.source", "pk": 9643, "fields": {"orig_filename": "Maier_Erich-August_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411949}}, {"model": "metainfo.source", "pk": 9644, "fields": {"orig_filename": "Maier_Ernst_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421", "author": "", "orig_id": 1411950}}, {"model": "metainfo.source", "pk": 9645, "fields": {"orig_filename": "Maier_Ernst_1839_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 421f.", "author": "", "orig_id": 1411951}}, {"model": "metainfo.source", "pk": 9646, "fields": {"orig_filename": "Maier_Ferdinand_1767_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422", "author": "", "orig_id": 1411952}}, {"model": "metainfo.source", "pk": 9647, "fields": {"orig_filename": "Maier_Franz-Martin_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423f.", "author": "", "orig_id": 1411957}}, {"model": "metainfo.source", "pk": 9648, "fields": {"orig_filename": "Maier_Franz-Xaver_1756_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411958}}, {"model": "metainfo.source", "pk": 9649, "fields": {"orig_filename": "Maier_Franz_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 422f.", "author": "", "orig_id": 1411954}}, {"model": "metainfo.source", "pk": 9650, "fields": {"orig_filename": "Maier_Franz_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423", "author": "", "orig_id": 1411955}}, {"model": "metainfo.source", "pk": 9651, "fields": {"orig_filename": "Maier_Franz_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 423", "author": "", "orig_id": 1411956}}, {"model": "metainfo.source", "pk": 9652, "fields": {"orig_filename": "Maier_Friedrich_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411959}}, {"model": "metainfo.source", "pk": 9653, "fields": {"orig_filename": "Maier_Friedrich_1887_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424", "author": "", "orig_id": 1411960}}, {"model": "metainfo.source", "pk": 9654, "fields": {"orig_filename": "Maier_Fritz-Franz_1844_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 424f.", "author": "", "orig_id": 1412029}}, {"model": "metainfo.source", "pk": 9655, "fields": {"orig_filename": "Maier_Georg_1768_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425", "author": "", "orig_id": 1412030}}, {"model": "metainfo.source", "pk": 9656, "fields": {"orig_filename": "Maier_Giovanni_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425", "author": "", "orig_id": 1412031}}, {"model": "metainfo.source", "pk": 9657, "fields": {"orig_filename": "Maier_Guido_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 425f.", "author": "", "orig_id": 1412032}}, {"model": "metainfo.source", "pk": 9658, "fields": {"orig_filename": "Maier_Gustav_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 426", "author": "", "orig_id": 1412033}}, {"model": "metainfo.source", "pk": 9659, "fields": {"orig_filename": "Maier_Hans-Horst_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 426f.", "author": "", "orig_id": 1412034}}, {"model": "metainfo.source", "pk": 9660, "fields": {"orig_filename": "Maier_Hans-Leopold_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 427", "author": "", "orig_id": 1412038}}, {"model": "metainfo.source", "pk": 9661, "fields": {"orig_filename": "Maier_Hans-Paul_1872_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 427f.", "author": "", "orig_id": 1412039}}, {"model": "metainfo.source", "pk": 9662, "fields": {"orig_filename": "Maier_Heinrich_1908_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428", "author": "", "orig_id": 1412040}}, {"model": "metainfo.source", "pk": 9663, "fields": {"orig_filename": "Maier_Ignaz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428", "author": "", "orig_id": 1412041}}, {"model": "metainfo.source", "pk": 9664, "fields": {"orig_filename": "Maier_Jaroslav_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 428f.", "author": "", "orig_id": 1412042}}, {"model": "metainfo.source", "pk": 9665, "fields": {"orig_filename": "Maier_Johann-Alexius_1778_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430", "author": "", "orig_id": 1412047}}, {"model": "metainfo.source", "pk": 9666, "fields": {"orig_filename": "Maier_Johann-Alois_1801_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430f.", "author": "", "orig_id": 1412048}}, {"model": "metainfo.source", "pk": 9667, "fields": {"orig_filename": "Maier_Johann-Georg_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412049}}, {"model": "metainfo.source", "pk": 9668, "fields": {"orig_filename": "Maier_Johann-Georg_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412050}}, {"model": "metainfo.source", "pk": 9669, "fields": {"orig_filename": "Maier_Johann-Georg_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431", "author": "", "orig_id": 1412051}}, {"model": "metainfo.source", "pk": 9670, "fields": {"orig_filename": "Maier_Johann-Georg_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 431f.", "author": "", "orig_id": 1412122}}, {"model": "metainfo.source", "pk": 9671, "fields": {"orig_filename": "Maier_Johann_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429", "author": "", "orig_id": 1412043}}, {"model": "metainfo.source", "pk": 9672, "fields": {"orig_filename": "Maier_Johann_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429", "author": "", "orig_id": 1412044}}, {"model": "metainfo.source", "pk": 9673, "fields": {"orig_filename": "Maier_Johann_1845_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 429f.", "author": "", "orig_id": 1412045}}, {"model": "metainfo.source", "pk": 9674, "fields": {"orig_filename": "Maier_Johann_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 430", "author": "", "orig_id": 1412046}}, {"model": "metainfo.source", "pk": 9675, "fields": {"orig_filename": "Maier_Josef_1791_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432", "author": "", "orig_id": 1412123}}, {"model": "metainfo.source", "pk": 9676, "fields": {"orig_filename": "Maier_Josef_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432f.", "author": "", "orig_id": 1420358}}, {"model": "metainfo.source", "pk": 9677, "fields": {"orig_filename": "Maier_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 432", "author": "", "orig_id": 1420357}}, {"model": "metainfo.source", "pk": 9678, "fields": {"orig_filename": "Maier_Josef_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433", "author": "", "orig_id": 1412124}}, {"model": "metainfo.source", "pk": 9679, "fields": {"orig_filename": "Maier_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433", "author": "", "orig_id": 1412125}}, {"model": "metainfo.source", "pk": 9680, "fields": {"orig_filename": "Maier_Julius_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 433f.", "author": "", "orig_id": 1412126}}, {"model": "metainfo.source", "pk": 9681, "fields": {"orig_filename": "Maier_Karl-Ernst_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412134}}, {"model": "metainfo.source", "pk": 9682, "fields": {"orig_filename": "Maier_Karl_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412127}}, {"model": "metainfo.source", "pk": 9683, "fields": {"orig_filename": "Maier_Karl_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412128}}, {"model": "metainfo.source", "pk": 9684, "fields": {"orig_filename": "Maier_Karl_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 434", "author": "", "orig_id": 1412129}}, {"model": "metainfo.source", "pk": 9685, "fields": {"orig_filename": "Maier_Karl_1855_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435", "author": "", "orig_id": 1412130}}, {"model": "metainfo.source", "pk": 9686, "fields": {"orig_filename": "Maier_Karl_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435", "author": "", "orig_id": 1412132}}, {"model": "metainfo.source", "pk": 9687, "fields": {"orig_filename": "Maier_Karl_1876_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 435f.", "author": "", "orig_id": 1412131}}, {"model": "metainfo.source", "pk": 9688, "fields": {"orig_filename": "Maier_Lambert_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436f.", "author": "", "orig_id": 1412135}}, {"model": "metainfo.source", "pk": 9689, "fields": {"orig_filename": "Maier_Laurenz_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412137}}, {"model": "metainfo.source", "pk": 9690, "fields": {"orig_filename": "Maier_Leopold_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412136}}, {"model": "metainfo.source", "pk": 9691, "fields": {"orig_filename": "Maier_Leopold_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412138}}, {"model": "metainfo.source", "pk": 9692, "fields": {"orig_filename": "Maier_Ludwig_1778_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437", "author": "", "orig_id": 1412139}}, {"model": "metainfo.source", "pk": 9693, "fields": {"orig_filename": "Maier_Ludwig_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 437f.", "author": "", "orig_id": 1412140}}, {"model": "metainfo.source", "pk": 9694, "fields": {"orig_filename": "Maier_Martin_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412141}}, {"model": "metainfo.source", "pk": 9695, "fields": {"orig_filename": "Maier_Mauricio_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412142}}, {"model": "metainfo.source", "pk": 9696, "fields": {"orig_filename": "Maier_Maximilian_1848_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438f.", "author": "", "orig_id": 1412144}}, {"model": "metainfo.source", "pk": 9697, "fields": {"orig_filename": "Maier_Max_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 438", "author": "", "orig_id": 1412143}}, {"model": "metainfo.source", "pk": 9698, "fields": {"orig_filename": "Maier_Michael_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 439", "author": "", "orig_id": 1412145}}, {"model": "metainfo.source", "pk": 9699, "fields": {"orig_filename": "Maier_Michael_1864_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 439f.", "author": "", "orig_id": 1412146}}, {"model": "metainfo.source", "pk": 9700, "fields": {"orig_filename": "Maier_Oskar_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 440f.", "author": "", "orig_id": 1412147}}, {"model": "metainfo.source", "pk": 9701, "fields": {"orig_filename": "Maier_Philipp-Benitius_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441", "author": "", "orig_id": 1412223}}, {"model": "metainfo.source", "pk": 9702, "fields": {"orig_filename": "Maier_Philipp_1799_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441", "author": "", "orig_id": 1412148}}, {"model": "metainfo.source", "pk": 9703, "fields": {"orig_filename": "Maier_Richard_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 441f.", "author": "", "orig_id": 1412224}}, {"model": "metainfo.source", "pk": 9704, "fields": {"orig_filename": "Maier_Robert-Alois_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412228}}, {"model": "metainfo.source", "pk": 9705, "fields": {"orig_filename": "Maier_Robert_1855_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 443", "author": "", "orig_id": 1412226}}, {"model": "metainfo.source", "pk": 9706, "fields": {"orig_filename": "Maier_Robert_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 442f.", "author": "", "orig_id": 1412225}}, {"model": "metainfo.source", "pk": 9707, "fields": {"orig_filename": "Maier_Robert_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 443", "author": "", "orig_id": 1412227}}, {"model": "metainfo.source", "pk": 9708, "fields": {"orig_filename": "Maier_Rudolf_1837_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412229}}, {"model": "metainfo.source", "pk": 9709, "fields": {"orig_filename": "Maier_Rudolf_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412230}}, {"model": "metainfo.source", "pk": 9710, "fields": {"orig_filename": "Maier_Rudolf_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444", "author": "", "orig_id": 1412231}}, {"model": "metainfo.source", "pk": 9711, "fields": {"orig_filename": "Maier_Rudolf_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 444f.", "author": "", "orig_id": 1412232}}, {"model": "metainfo.source", "pk": 9712, "fields": {"orig_filename": "Maier_Rupert_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445", "author": "", "orig_id": 1412233}}, {"model": "metainfo.source", "pk": 9713, "fields": {"orig_filename": "Maier_Salesius_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445", "author": "", "orig_id": 1412234}}, {"model": "metainfo.source", "pk": 9714, "fields": {"orig_filename": "Maier_Salomon_1835_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 445f.", "author": "", "orig_id": 1412235}}, {"model": "metainfo.source", "pk": 9715, "fields": {"orig_filename": "Maier_Sebastian_1773_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446", "author": "", "orig_id": 1412236}}, {"model": "metainfo.source", "pk": 9716, "fields": {"orig_filename": "Maier_Sebastian_1845_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446", "author": "", "orig_id": 1412237}}, {"model": "metainfo.source", "pk": 9717, "fields": {"orig_filename": "Maier_Siegmund_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 446f.", "author": "", "orig_id": 1412238}}, {"model": "metainfo.source", "pk": 9718, "fields": {"orig_filename": "Maier_Sigmund_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 447", "author": "", "orig_id": 1412035}}, {"model": "metainfo.source", "pk": 9719, "fields": {"orig_filename": "Maier_Simon-Martin_1788_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 448", "author": "", "orig_id": 1412037}}, {"model": "metainfo.source", "pk": 9720, "fields": {"orig_filename": "Maier_Simon_1779_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 448", "author": "", "orig_id": 1412036}}, {"model": "metainfo.source", "pk": 9721, "fields": {"orig_filename": "Maier_Stefan_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1", "author": "", "orig_id": 1408550}}, {"model": "metainfo.source", "pk": 9722, "fields": {"orig_filename": "Maier_Tadeas_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1", "author": "", "orig_id": 1408551}}, {"model": "metainfo.source", "pk": 9723, "fields": {"orig_filename": "Maier_Theodor-Heinrich_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2", "author": "", "orig_id": 1408553}}, {"model": "metainfo.source", "pk": 9724, "fields": {"orig_filename": "Maier_Theodor_1788_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 1f.", "author": "", "orig_id": 1408552}}, {"model": "metainfo.source", "pk": 9725, "fields": {"orig_filename": "Maier_Walther_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2", "author": "", "orig_id": 1408554}}, {"model": "metainfo.source", "pk": 9726, "fields": {"orig_filename": "Maier_Wilhelm_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 2f.", "author": "", "orig_id": 1408555}}, {"model": "metainfo.source", "pk": 9727, "fields": {"orig_filename": "Maier_Wolf_1776_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408556}}, {"model": "metainfo.source", "pk": 9728, "fields": {"orig_filename": "Mailath-Szekhely_Antal_1801_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408747}}, {"model": "metainfo.source", "pk": 9729, "fields": {"orig_filename": "Mailath-Szekhely_Gusztav-Karoly_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408749}}, {"model": "metainfo.source", "pk": 9730, "fields": {"orig_filename": "Madarasz_Viktor_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 397", "author": "", "orig_id": 1411662}}, {"model": "metainfo.source", "pk": 9731, "fields": {"orig_filename": "Maderspach_Karoly_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399", "author": "", "orig_id": 1411669}}, {"model": "metainfo.source", "pk": 9732, "fields": {"orig_filename": "Madersperger_Josef_1768_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399f.", "author": "", "orig_id": 1411670}}, {"model": "metainfo.source", "pk": 9733, "fields": {"orig_filename": "Mader_Eduard_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411664}}, {"model": "metainfo.source", "pk": 9734, "fields": {"orig_filename": "Mader_Georg_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411665}}, {"model": "metainfo.source", "pk": 9735, "fields": {"orig_filename": "Mader_Johann_1796_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398", "author": "", "orig_id": 1411666}}, {"model": "metainfo.source", "pk": 9736, "fields": {"orig_filename": "Mader_Linus_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 398f.", "author": "", "orig_id": 1411667}}, {"model": "metainfo.source", "pk": 9737, "fields": {"orig_filename": "Mader_Raoul_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 399", "author": "", "orig_id": 1411668}}, {"model": "metainfo.source", "pk": 9738, "fields": {"orig_filename": "Madeyski-Poray_Stanislaw-Jerzy_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400f.", "author": "", "orig_id": 1411674}}, {"model": "metainfo.source", "pk": 9739, "fields": {"orig_filename": "Madeyski_Antoni_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411671}}, {"model": "metainfo.source", "pk": 9740, "fields": {"orig_filename": "Madeyski_Edward_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411672}}, {"model": "metainfo.source", "pk": 9741, "fields": {"orig_filename": "Madeyski_Marceli_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 400", "author": "", "orig_id": 1411673}}, {"model": "metainfo.source", "pk": 9742, "fields": {"orig_filename": "Madjera_Karl-Gustav-Adolf_1828_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 401", "author": "", "orig_id": 1411675}}, {"model": "metainfo.source", "pk": 9743, "fields": {"orig_filename": "Madjera_Wolfgang_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 401f.", "author": "", "orig_id": 1411676}}, {"model": "metainfo.source", "pk": 9744, "fields": {"orig_filename": "Madlener_Andreas_1844_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411678}}, {"model": "metainfo.source", "pk": 9745, "fields": {"orig_filename": "Madlener_Johann_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411679}}, {"model": "metainfo.source", "pk": 9746, "fields": {"orig_filename": "Madl_Karel_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402", "author": "", "orig_id": 1411677}}, {"model": "metainfo.source", "pk": 9747, "fields": {"orig_filename": "Madonizza_Antonio_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 402f.", "author": "", "orig_id": 1411746}}, {"model": "metainfo.source", "pk": 9748, "fields": {"orig_filename": "Madurowicz_Maurycy_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 403", "author": "", "orig_id": 1411747}}, {"model": "metainfo.source", "pk": 9749, "fields": {"orig_filename": "Madva_Franz_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 403", "author": "", "orig_id": 1411748}}, {"model": "metainfo.source", "pk": 9750, "fields": {"orig_filename": "Maehler_Willibrord-Josef_1787_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404", "author": "", "orig_id": 1411749}}, {"model": "metainfo.source", "pk": 9751, "fields": {"orig_filename": "Maelzel_Johann_1772_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404", "author": "", "orig_id": 1411750}}, {"model": "metainfo.source", "pk": 9752, "fields": {"orig_filename": "Maendl-Bughardt_Maximilian_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 404f.", "author": "", "orig_id": 1411751}}, {"model": "metainfo.source", "pk": 9753, "fields": {"orig_filename": "Maetzler_Anton_1780_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411753}}, {"model": "metainfo.source", "pk": 9754, "fields": {"orig_filename": "Maffei_Andrea_1798_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411754}}, {"model": "metainfo.source", "pk": 9755, "fields": {"orig_filename": "Maffei_Giuseppe_1775_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405", "author": "", "orig_id": 1411755}}, {"model": "metainfo.source", "pk": 9756, "fields": {"orig_filename": "Magarasevic_Georgije_1793_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 405f.", "author": "", "orig_id": 1411756}}, {"model": "metainfo.source", "pk": 9757, "fields": {"orig_filename": "Magda_Pal_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406", "author": "", "orig_id": 1411757}}, {"model": "metainfo.source", "pk": 9758, "fields": {"orig_filename": "Magdeburg_Johann_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406", "author": "", "orig_id": 1411758}}, {"model": "metainfo.source", "pk": 9759, "fields": {"orig_filename": "Magdeburg_Karl_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 406f.", "author": "", "orig_id": 1411759}}, {"model": "metainfo.source", "pk": 9760, "fields": {"orig_filename": "Magerstein_Vinzenz-Theodor_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407f.", "author": "", "orig_id": 1411763}}, {"model": "metainfo.source", "pk": 9761, "fields": {"orig_filename": "Mager_Alois_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411760}}, {"model": "metainfo.source", "pk": 9762, "fields": {"orig_filename": "Mager_Anton_1762_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411761}}, {"model": "metainfo.source", "pk": 9763, "fields": {"orig_filename": "Mager_Wilhelm_1871_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 407", "author": "", "orig_id": 1411762}}, {"model": "metainfo.source", "pk": 9764, "fields": {"orig_filename": "Mages-Kompillan_Alois_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411764}}, {"model": "metainfo.source", "pk": 9765, "fields": {"orig_filename": "Mages-Kompillan_Maria_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411765}}, {"model": "metainfo.source", "pk": 9766, "fields": {"orig_filename": "Magg_Julius_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408", "author": "", "orig_id": 1411766}}, {"model": "metainfo.source", "pk": 9767, "fields": {"orig_filename": "Magg_Julius_1884_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 408f.", "author": "", "orig_id": 1411767}}, {"model": "metainfo.source", "pk": 9768, "fields": {"orig_filename": "Magnuszewski_Dominik_1810_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411768}}, {"model": "metainfo.source", "pk": 9769, "fields": {"orig_filename": "Magocsy-Dietz_Sandor_1855_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411841}}, {"model": "metainfo.source", "pk": 9770, "fields": {"orig_filename": "Magolic_Srecko_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409", "author": "", "orig_id": 1411842}}, {"model": "metainfo.source", "pk": 9771, "fields": {"orig_filename": "Magrini_Antonio_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 409f.", "author": "", "orig_id": 1411843}}, {"model": "metainfo.source", "pk": 9772, "fields": {"orig_filename": "Magyar-Oetoemoes_Laszlo_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410", "author": "", "orig_id": 1411845}}, {"model": "metainfo.source", "pk": 9773, "fields": {"orig_filename": "Magyar_Emmerich_1847_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410", "author": "", "orig_id": 1411844}}, {"model": "metainfo.source", "pk": 9774, "fields": {"orig_filename": "Mahler_Ede_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 411", "author": "", "orig_id": 1411847}}, {"model": "metainfo.source", "pk": 9775, "fields": {"orig_filename": "Mahler_Gustav_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 411f.", "author": "", "orig_id": 1411848}}, {"model": "metainfo.source", "pk": 9776, "fields": {"orig_filename": "Mahlknecht_Edmund_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 412f.", "author": "", "orig_id": 1411849}}, {"model": "metainfo.source", "pk": 9777, "fields": {"orig_filename": "Mahlknecht_Johann-Dominik_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411850}}, {"model": "metainfo.source", "pk": 9778, "fields": {"orig_filename": "Mahlknecht_Josef-Anton_1827_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411851}}, {"model": "metainfo.source", "pk": 9779, "fields": {"orig_filename": "Mahlknecht_Karl_1810_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413", "author": "", "orig_id": 1411852}}, {"model": "metainfo.source", "pk": 9780, "fields": {"orig_filename": "Mahnic_Anton_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 413f.", "author": "", "orig_id": 1411853}}, {"model": "metainfo.source", "pk": 9781, "fields": {"orig_filename": "Mahnke_Karl_1764_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414", "author": "", "orig_id": 1411854}}, {"model": "metainfo.source", "pk": 9782, "fields": {"orig_filename": "Mahorcig_Josef_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414", "author": "", "orig_id": 1411855}}, {"model": "metainfo.source", "pk": 9783, "fields": {"orig_filename": "Mahr_Gustav_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 414f.", "author": "", "orig_id": 1411856}}, {"model": "metainfo.source", "pk": 9784, "fields": {"orig_filename": "Mahr_Jakob-Franz_1800_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 415", "author": "", "orig_id": 1411857}}, {"model": "metainfo.source", "pk": 9785, "fields": {"orig_filename": "Maier-Ahrdorff_Eduard_1804_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408557}}, {"model": "metainfo.source", "pk": 9786, "fields": {"orig_filename": "Maier-Graefe_Julius_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3", "author": "", "orig_id": 1408558}}, {"model": "metainfo.source", "pk": 9787, "fields": {"orig_filename": "Maier-Gravenegg_Josef_1780_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 3f.", "author": "", "orig_id": 1408559}}, {"model": "metainfo.source", "pk": 9788, "fields": {"orig_filename": "Maier-Gunthof_Albert_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4", "author": "", "orig_id": 1408560}}, {"model": "metainfo.source", "pk": 9789, "fields": {"orig_filename": "Maier-Harting_Robert_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4", "author": "", "orig_id": 1408561}}, {"model": "metainfo.source", "pk": 9790, "fields": {"orig_filename": "Maier-Loewenschwerdt_Franz-Xaver_1794_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 4f.", "author": "", "orig_id": 1408632}}, {"model": "metainfo.source", "pk": 9791, "fields": {"orig_filename": "Maier-Luebke_Wilhelm_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5", "author": "", "orig_id": 1408633}}, {"model": "metainfo.source", "pk": 9792, "fields": {"orig_filename": "Maier-Marnegg_Edmund_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5", "author": "", "orig_id": 1408634}}, {"model": "metainfo.source", "pk": 9793, "fields": {"orig_filename": "Maier-Mayrau_Kajetan_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 5f.", "author": "", "orig_id": 1408635}}, {"model": "metainfo.source", "pk": 9794, "fields": {"orig_filename": "Maier-Melnhof_Franz_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 6f.", "author": "", "orig_id": 1408636}}, {"model": "metainfo.source", "pk": 9795, "fields": {"orig_filename": "Maier-Melnhof_Franz_1854_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7", "author": "", "orig_id": 1408637}}, {"model": "metainfo.source", "pk": 9796, "fields": {"orig_filename": "Maier-Melnhof_Karl_1811_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7", "author": "", "orig_id": 1408638}}, {"model": "metainfo.source", "pk": 9797, "fields": {"orig_filename": "Maier-Montearabico_Anton_1824_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 7f.", "author": "", "orig_id": 1408639}}, {"model": "metainfo.source", "pk": 9798, "fields": {"orig_filename": "Maier-Tenneburg_Felix_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408640}}, {"model": "metainfo.source", "pk": 9799, "fields": {"orig_filename": "Maier-Wallerstain-Ahrdorff_Maximilian_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408641}}, {"model": "metainfo.source", "pk": 9800, "fields": {"orig_filename": "Maierecker_Franz_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 8", "author": "", "orig_id": 1408642}}, {"model": "metainfo.source", "pk": 9801, "fields": {"orig_filename": "Maiereder_Julius_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9", "author": "", "orig_id": 1408643}}, {"model": "metainfo.source", "pk": 9802, "fields": {"orig_filename": "Maiereder_Karl_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9", "author": "", "orig_id": 1408644}}, {"model": "metainfo.source", "pk": 9803, "fields": {"orig_filename": "Maiereder_Rosa_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 9f.", "author": "", "orig_id": 1408645}}, {"model": "metainfo.source", "pk": 9804, "fields": {"orig_filename": "Maiereder_Rudolf_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 10f.", "author": "", "orig_id": 1408646}}, {"model": "metainfo.source", "pk": 9805, "fields": {"orig_filename": "Maierhofen-Koburg-Anger_Stephan_1751_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408647}}, {"model": "metainfo.source", "pk": 9806, "fields": {"orig_filename": "Maierhofen-Koburg-Anger_Virgil_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408648}}, {"model": "metainfo.source", "pk": 9807, "fields": {"orig_filename": "Maierhofer-Gruenbuehel_Ferdinand_1798_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408737}}, {"model": "metainfo.source", "pk": 9808, "fields": {"orig_filename": "Maierhofer_Adolf_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11", "author": "", "orig_id": 1408649}}, {"model": "metainfo.source", "pk": 9809, "fields": {"orig_filename": "Maierhofer_Bernhard_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 11f.", "author": "", "orig_id": 1408650}}, {"model": "metainfo.source", "pk": 9810, "fields": {"orig_filename": "Maierhofer_Franz_1822_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 12", "author": "", "orig_id": 1408651}}, {"model": "metainfo.source", "pk": 9811, "fields": {"orig_filename": "Maierhofer_Franz_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 12f.", "author": "", "orig_id": 1408652}}, {"model": "metainfo.source", "pk": 9812, "fields": {"orig_filename": "Maierhofer_Gottfried_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13", "author": "", "orig_id": 1408653}}, {"model": "metainfo.source", "pk": 9813, "fields": {"orig_filename": "Maierhofer_Johann_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13", "author": "", "orig_id": 1408654}}, {"model": "metainfo.source", "pk": 9814, "fields": {"orig_filename": "Maierhofer_Johann_1787_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 13f.", "author": "", "orig_id": 1408655}}, {"model": "metainfo.source", "pk": 9815, "fields": {"orig_filename": "Maierhofer_Josef_1848_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14", "author": "", "orig_id": 1408729}}, {"model": "metainfo.source", "pk": 9816, "fields": {"orig_filename": "Maierhofer_Josef_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14", "author": "", "orig_id": 1408730}}, {"model": "metainfo.source", "pk": 9817, "fields": {"orig_filename": "Maierhofer_Karl-Wilhelm_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408733}}, {"model": "metainfo.source", "pk": 9818, "fields": {"orig_filename": "Maierhofer_Karl_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 14f.", "author": "", "orig_id": 1408731}}, {"model": "metainfo.source", "pk": 9819, "fields": {"orig_filename": "Maierhofer_Karl_1837_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408732}}, {"model": "metainfo.source", "pk": 9820, "fields": {"orig_filename": "Maierhofer_Max_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15", "author": "", "orig_id": 1408734}}, {"model": "metainfo.source", "pk": 9821, "fields": {"orig_filename": "Maierhofer_Sebastian_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 15f.", "author": "", "orig_id": 1408735}}, {"model": "metainfo.source", "pk": 9822, "fields": {"orig_filename": "Maierhofer_Theodor_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408736}}, {"model": "metainfo.source", "pk": 9823, "fields": {"orig_filename": "Maierhoffer-Vedropolje_Eberhard_1870_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16f.", "author": "", "orig_id": 1408739}}, {"model": "metainfo.source", "pk": 9824, "fields": {"orig_filename": "Maierhoffer_Wilhelm_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 16", "author": "", "orig_id": 1408738}}, {"model": "metainfo.source", "pk": 9825, "fields": {"orig_filename": "Maierink_Gustav_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 17", "author": "", "orig_id": 1408740}}, {"model": "metainfo.source", "pk": 9826, "fields": {"orig_filename": "Maierl_Anton_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 17f.", "author": "", "orig_id": 1408741}}, {"model": "metainfo.source", "pk": 9827, "fields": {"orig_filename": "Maiern-Hohenberg_Gottfried_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 18f.", "author": "", "orig_id": 1408743}}, {"model": "metainfo.source", "pk": 9828, "fields": {"orig_filename": "Maiern_Franz-Ferdinand_1799_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 18", "author": "", "orig_id": 1408742}}, {"model": "metainfo.source", "pk": 9829, "fields": {"orig_filename": "Maiers_Karl_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 19", "author": "", "orig_id": 1408746}}, {"model": "metainfo.source", "pk": 9830, "fields": {"orig_filename": "Maier_Adolf_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416", "author": "", "orig_id": 1411859}}, {"model": "metainfo.source", "pk": 9831, "fields": {"orig_filename": "Maier_Adolf_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 416", "author": "", "orig_id": 1411860}}, {"model": "metainfo.source", "pk": 9832, "fields": {"orig_filename": "Lukacsy_Kristof_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362f.", "author": "", "orig_id": 1411207}}, {"model": "metainfo.source", "pk": 9833, "fields": {"orig_filename": "Lukacsy_Sandor_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411208}}, {"model": "metainfo.source", "pk": 9834, "fields": {"orig_filename": "Lukacs_Bela_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411200}}, {"model": "metainfo.source", "pk": 9835, "fields": {"orig_filename": "Lukacs_Gyoergy_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411201}}, {"model": "metainfo.source", "pk": 9836, "fields": {"orig_filename": "Lukacs_Gyoergy_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361", "author": "", "orig_id": 1411202}}, {"model": "metainfo.source", "pk": 9837, "fields": {"orig_filename": "Lukacs_Laszlo_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 361f.", "author": "", "orig_id": 1411203}}, {"model": "metainfo.source", "pk": 9838, "fields": {"orig_filename": "Lukacs_Moric_1812_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411204}}, {"model": "metainfo.source", "pk": 9839, "fields": {"orig_filename": "Lukacs_Sandor_1822_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411205}}, {"model": "metainfo.source", "pk": 9840, "fields": {"orig_filename": "Lukasek_Josef-Vaclav_1874_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364", "author": "", "orig_id": 1411212}}, {"model": "metainfo.source", "pk": 9841, "fields": {"orig_filename": "Lukasiewicz-Lada_Wlodzimierz_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364f.", "author": "", "orig_id": 1411283}}, {"model": "metainfo.source", "pk": 9842, "fields": {"orig_filename": "Lukasiewicz_Ignacy_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 364", "author": "", "orig_id": 1411282}}, {"model": "metainfo.source", "pk": 9843, "fields": {"orig_filename": "Lukaszewicz_Leslaw_1809_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 365", "author": "", "orig_id": 1411284}}, {"model": "metainfo.source", "pk": 9844, "fields": {"orig_filename": "Lukas_Gustav_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411209}}, {"model": "metainfo.source", "pk": 9845, "fields": {"orig_filename": "Lukas_Josef_1835_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363", "author": "", "orig_id": 1411210}}, {"model": "metainfo.source", "pk": 9846, "fields": {"orig_filename": "Lukas_Josef_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 363f.", "author": "", "orig_id": 1411211}}, {"model": "metainfo.source", "pk": 9847, "fields": {"orig_filename": "Lukes_Jan-Ludevit_1824_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 365f.", "author": "", "orig_id": 1411285}}, {"model": "metainfo.source", "pk": 9848, "fields": {"orig_filename": "Lukes_Johann_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366", "author": "", "orig_id": 1411286}}, {"model": "metainfo.source", "pk": 9849, "fields": {"orig_filename": "Lukovic_Antun_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366", "author": "", "orig_id": 1411287}}, {"model": "metainfo.source", "pk": 9850, "fields": {"orig_filename": "Luksch_Josef_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 366f.", "author": "", "orig_id": 1411288}}, {"model": "metainfo.source", "pk": 9851, "fields": {"orig_filename": "Lulic_Ante_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 367f.", "author": "", "orig_id": 1411290}}, {"model": "metainfo.source", "pk": 9852, "fields": {"orig_filename": "Lumbe-Mallonitz_Josef-Thaddaeus_1801_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411291}}, {"model": "metainfo.source", "pk": 9853, "fields": {"orig_filename": "Lumniczer_Sandor_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411293}}, {"model": "metainfo.source", "pk": 9854, "fields": {"orig_filename": "Lumnitzer_Johann-Georg_1783_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368", "author": "", "orig_id": 1411294}}, {"model": "metainfo.source", "pk": 9855, "fields": {"orig_filename": "Lumnitzer_Paul_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 368f.", "author": "", "orig_id": 1411295}}, {"model": "metainfo.source", "pk": 9856, "fields": {"orig_filename": "Lumpe_Heinrich_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369", "author": "", "orig_id": 1411296}}, {"model": "metainfo.source", "pk": 9857, "fields": {"orig_filename": "Luntz_Erwin_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411300}}, {"model": "metainfo.source", "pk": 9858, "fields": {"orig_filename": "Luntz_Ivo_1882_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411301}}, {"model": "metainfo.source", "pk": 9859, "fields": {"orig_filename": "Luntz_Victor_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 370", "author": "", "orig_id": 1411302}}, {"model": "metainfo.source", "pk": 9860, "fields": {"orig_filename": "Lunzer_Eduard_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371", "author": "", "orig_id": 1411303}}, {"model": "metainfo.source", "pk": 9861, "fields": {"orig_filename": "Lun_Karl_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 369", "author": "", "orig_id": 1411297}}, {"model": "metainfo.source", "pk": 9862, "fields": {"orig_filename": "Luppis-Rammer_Johann_1813_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371", "author": "", "orig_id": 1411379}}, {"model": "metainfo.source", "pk": 9863, "fields": {"orig_filename": "Lupul_Janko_1836_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372", "author": "", "orig_id": 1411382}}, {"model": "metainfo.source", "pk": 9864, "fields": {"orig_filename": "Lupul_Theodor_1838_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372", "author": "", "orig_id": 1411383}}, {"model": "metainfo.source", "pk": 9865, "fields": {"orig_filename": "Lupu_Florea_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 371f.", "author": "", "orig_id": 1411380}}, {"model": "metainfo.source", "pk": 9866, "fields": {"orig_filename": "Luschan_Felix_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 372f.", "author": "", "orig_id": 1411384}}, {"model": "metainfo.source", "pk": 9867, "fields": {"orig_filename": "Luschin-Ebengreuth_Arnold_1841_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 373f.", "author": "", "orig_id": 1411386}}, {"model": "metainfo.source", "pk": 9868, "fields": {"orig_filename": "Luschin_Franz-Xaver_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 373", "author": "", "orig_id": 1411385}}, {"model": "metainfo.source", "pk": 9869, "fields": {"orig_filename": "Lussana_Filippo_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 374", "author": "", "orig_id": 1411387}}, {"model": "metainfo.source", "pk": 9870, "fields": {"orig_filename": "Lussberger_Jakob_1813_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 374f.", "author": "", "orig_id": 1411388}}, {"model": "metainfo.source", "pk": 9871, "fields": {"orig_filename": "Lussnigg_Robert_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411389}}, {"model": "metainfo.source", "pk": 9872, "fields": {"orig_filename": "Lustgarten_Sigmund_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411390}}, {"model": "metainfo.source", "pk": 9873, "fields": {"orig_filename": "Lustig-Prean-Preanfeld-Fella_Heinrich_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376", "author": "", "orig_id": 1411393}}, {"model": "metainfo.source", "pk": 9874, "fields": {"orig_filename": "Lustig-Prean-Preanfeld_Karl_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376", "author": "", "orig_id": 1411392}}, {"model": "metainfo.source", "pk": 9875, "fields": {"orig_filename": "Lustig_Gustav_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 375", "author": "", "orig_id": 1411391}}, {"model": "metainfo.source", "pk": 9876, "fields": {"orig_filename": "Lustkandl_Wenzel_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 376f.", "author": "", "orig_id": 1411394}}, {"model": "metainfo.source", "pk": 9877, "fields": {"orig_filename": "Luszczkiewicz_Wladyslaw_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 377", "author": "", "orig_id": 1411395}}, {"model": "metainfo.source", "pk": 9878, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Franz_1784_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378", "author": "", "orig_id": 1411397}}, {"model": "metainfo.source", "pk": 9879, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Karl-Anton-Josef_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378", "author": "", "orig_id": 1411398}}, {"model": "metainfo.source", "pk": 9880, "fields": {"orig_filename": "Lutterotti-Gazzolis-Langenthal_Otto_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 378f.", "author": "", "orig_id": 1411399}}, {"model": "metainfo.source", "pk": 9881, "fields": {"orig_filename": "Lutter_Nandor_1820_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 377f.", "author": "", "orig_id": 1411396}}, {"model": "metainfo.source", "pk": 9882, "fields": {"orig_filename": "Luttich-Luttichheim_Eduard_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379", "author": "", "orig_id": 1411401}}, {"model": "metainfo.source", "pk": 9883, "fields": {"orig_filename": "Luttich_Mila_1872_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2185402}}, {"model": "metainfo.source", "pk": 9884, "fields": {"orig_filename": "Lutti_Vincenzo_1832_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379", "author": "", "orig_id": 1411400}}, {"model": "metainfo.source", "pk": 9885, "fields": {"orig_filename": "Lutzer_Jenny_1816_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381", "author": "", "orig_id": 1411471}}, {"model": "metainfo.source", "pk": 9886, "fields": {"orig_filename": "Lutz_Andreas_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 379f.", "author": "", "orig_id": 1411466}}, {"model": "metainfo.source", "pk": 9887, "fields": {"orig_filename": "Lutz_Ernst_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411467}}, {"model": "metainfo.source", "pk": 9888, "fields": {"orig_filename": "Lutz_Franz-Xaver_1874_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411468}}, {"model": "metainfo.source", "pk": 9889, "fields": {"orig_filename": "Lutz_Josef-Anton_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380", "author": "", "orig_id": 1411469}}, {"model": "metainfo.source", "pk": 9890, "fields": {"orig_filename": "Lutz_Josef-Fidelis-Sebastian_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 380f.", "author": "", "orig_id": 1411470}}, {"model": "metainfo.source", "pk": 9891, "fields": {"orig_filename": "Luxardo_Eugen_1867_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382", "author": "", "orig_id": 1411474}}, {"model": "metainfo.source", "pk": 9892, "fields": {"orig_filename": "Lux_Anton_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381", "author": "", "orig_id": 1411472}}, {"model": "metainfo.source", "pk": 9893, "fields": {"orig_filename": "Lux_Josef-August_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 381f.", "author": "", "orig_id": 1411473}}, {"model": "metainfo.source", "pk": 9894, "fields": {"orig_filename": "Luze_Karl_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382", "author": "", "orig_id": 1411475}}, {"model": "metainfo.source", "pk": 9895, "fields": {"orig_filename": "Luzzatto_Filosseno_1829_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 382f.", "author": "", "orig_id": 1411476}}, {"model": "metainfo.source", "pk": 9896, "fields": {"orig_filename": "Luzzatto_Samuel-David_1800_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 383", "author": "", "orig_id": 1411477}}, {"model": "metainfo.source", "pk": 9897, "fields": {"orig_filename": "Maager_Carl_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 383f.", "author": "", "orig_id": 1411478}}, {"model": "metainfo.source", "pk": 9898, "fields": {"orig_filename": "Maassen_Friedrich-Bernhard_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384f.", "author": "", "orig_id": 1411483}}, {"model": "metainfo.source", "pk": 9899, "fields": {"orig_filename": "Maass_Alois-Simon_1758_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411480}}, {"model": "metainfo.source", "pk": 9900, "fields": {"orig_filename": "Maass_Ferdinand_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411481}}, {"model": "metainfo.source", "pk": 9901, "fields": {"orig_filename": "Maass_Friedrich-Otto_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 384", "author": "", "orig_id": 1411482}}, {"model": "metainfo.source", "pk": 9902, "fields": {"orig_filename": "Macalik-Ivanobran_Josef_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 385", "author": "", "orig_id": 1411484}}, {"model": "metainfo.source", "pk": 9903, "fields": {"orig_filename": "Macan_Jakub-Rafael_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 385f.", "author": "", "orig_id": 1411485}}, {"model": "metainfo.source", "pk": 9904, "fields": {"orig_filename": "Macasy_Gustav_1871_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386", "author": "", "orig_id": 1411486}}, {"model": "metainfo.source", "pk": 9905, "fields": {"orig_filename": "Macca_Antonio_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386", "author": "", "orig_id": 1411487}}, {"model": "metainfo.source", "pk": 9906, "fields": {"orig_filename": "Macchio_Karl_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387", "author": "", "orig_id": 1411489}}, {"model": "metainfo.source", "pk": 9907, "fields": {"orig_filename": "Macchi_Mauro_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 386f.", "author": "", "orig_id": 1411488}}, {"model": "metainfo.source", "pk": 9908, "fields": {"orig_filename": "Macek_Antonin_1872_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387", "author": "", "orig_id": 1411490}}, {"model": "metainfo.source", "pk": 9909, "fields": {"orig_filename": "Macelariu_Ilie_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 387f.", "author": "", "orig_id": 1411568}}, {"model": "metainfo.source", "pk": 9910, "fields": {"orig_filename": "Machacek_Simeon-Karel_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390f.", "author": "", "orig_id": 1411573}}, {"model": "metainfo.source", "pk": 9911, "fields": {"orig_filename": "Machac_Ladislav_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390", "author": "", "orig_id": 1411574}}, {"model": "metainfo.source", "pk": 9912, "fields": {"orig_filename": "Machalski_Maksymilian_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391", "author": "", "orig_id": 1411576}}, {"model": "metainfo.source", "pk": 9913, "fields": {"orig_filename": "Machal_Jan_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391", "author": "", "orig_id": 1411575}}, {"model": "metainfo.source", "pk": 9914, "fields": {"orig_filename": "Machanek_Ignaz_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 391f.", "author": "", "orig_id": 1411577}}, {"model": "metainfo.source", "pk": 9915, "fields": {"orig_filename": "Machar_Josef-Svatopluk_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 392f.", "author": "", "orig_id": 1411578}}, {"model": "metainfo.source", "pk": 9916, "fields": {"orig_filename": "Macha_Karel-Hynek_1810_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 390", "author": "", "orig_id": 1411572}}, {"model": "metainfo.source", "pk": 9917, "fields": {"orig_filename": "Machek_Antonin_1775_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393", "author": "", "orig_id": 1411579}}, {"model": "metainfo.source", "pk": 9918, "fields": {"orig_filename": "Machek_Emanuel_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393", "author": "", "orig_id": 1411580}}, {"model": "metainfo.source", "pk": 9919, "fields": {"orig_filename": "Machek_Ernst_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 393f.", "author": "", "orig_id": 1411581}}, {"model": "metainfo.source", "pk": 9920, "fields": {"orig_filename": "Macher_Matthias_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394", "author": "", "orig_id": 1411582}}, {"model": "metainfo.source", "pk": 9921, "fields": {"orig_filename": "Macher_Maximilian_1882_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394", "author": "", "orig_id": 1411583}}, {"model": "metainfo.source", "pk": 9922, "fields": {"orig_filename": "Machold_Joseph_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 394f.", "author": "", "orig_id": 1411584}}, {"model": "metainfo.source", "pk": 9923, "fields": {"orig_filename": "Mach_Edmund_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 388", "author": "", "orig_id": 1411569}}, {"model": "metainfo.source", "pk": 9924, "fields": {"orig_filename": "Mach_Ernst_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 388f.", "author": "", "orig_id": 1411570}}, {"model": "metainfo.source", "pk": 9925, "fields": {"orig_filename": "Mach_Franz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 389f.", "author": "", "orig_id": 1411571}}, {"model": "metainfo.source", "pk": 9926, "fields": {"orig_filename": "Maciejowski_Ignacy_1839_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395", "author": "", "orig_id": 1411585}}, {"model": "metainfo.source", "pk": 9927, "fields": {"orig_filename": "Mack_Jozsef_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395", "author": "", "orig_id": 1411586}}, {"model": "metainfo.source", "pk": 9928, "fields": {"orig_filename": "Mack_Karl_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 395f.", "author": "", "orig_id": 1411587}}, {"model": "metainfo.source", "pk": 9929, "fields": {"orig_filename": "Macun_Ivan_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411658}}, {"model": "metainfo.source", "pk": 9930, "fields": {"orig_filename": "Maczka_Jozef_1888_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411659}}, {"model": "metainfo.source", "pk": 9931, "fields": {"orig_filename": "Maczynski_Jozef_1807_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396", "author": "", "orig_id": 1411660}}, {"model": "metainfo.source", "pk": 9932, "fields": {"orig_filename": "Madach_Imre_1823_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 396f.", "author": "", "orig_id": 1411661}}, {"model": "metainfo.source", "pk": 9933, "fields": {"orig_filename": "Madarasz-Kisfalud_Laszlo_1811_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 397f.", "author": "", "orig_id": 1411663}}, {"model": "metainfo.source", "pk": 9934, "fields": {"orig_filename": "Loss_Giuseppe_1831_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412221}}, {"model": "metainfo.source", "pk": 9935, "fields": {"orig_filename": "Lostak_Jan_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412222}}, {"model": "metainfo.source", "pk": 9936, "fields": {"orig_filename": "Los_Jan_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325f.", "author": "", "orig_id": 1412212}}, {"model": "metainfo.source", "pk": 9937, "fields": {"orig_filename": "Lotheissen_Ferdinand_1833_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329f.", "author": "", "orig_id": 1412293}}, {"model": "metainfo.source", "pk": 9938, "fields": {"orig_filename": "Lotheissen_Georg_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330", "author": "", "orig_id": 1412294}}, {"model": "metainfo.source", "pk": 9939, "fields": {"orig_filename": "Lothringen_Karl-Eugen_1751_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330", "author": "", "orig_id": 1412295}}, {"model": "metainfo.source", "pk": 9940, "fields": {"orig_filename": "Lotti-Santa_Marcella_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412299}}, {"model": "metainfo.source", "pk": 9941, "fields": {"orig_filename": "Lott_Franz-Karl_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 330f.", "author": "", "orig_id": 1412296}}, {"model": "metainfo.source", "pk": 9942, "fields": {"orig_filename": "Lott_Gustav-Christian_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412297}}, {"model": "metainfo.source", "pk": 9943, "fields": {"orig_filename": "Lott_Julius_1836_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 331", "author": "", "orig_id": 1412298}}, {"model": "metainfo.source", "pk": 9944, "fields": {"orig_filename": "Lotz_Karoly_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332", "author": "", "orig_id": 1412300}}, {"model": "metainfo.source", "pk": 9945, "fields": {"orig_filename": "Lotz_Wilhelm_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332", "author": "", "orig_id": 1412301}}, {"model": "metainfo.source", "pk": 9946, "fields": {"orig_filename": "Louis-Wawel_Jozef_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 332f.", "author": "", "orig_id": 1412302}}, {"model": "metainfo.source", "pk": 9947, "fields": {"orig_filename": "Lovassy_Andor_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412303}}, {"model": "metainfo.source", "pk": 9948, "fields": {"orig_filename": "Lovassy_Laszlo_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412304}}, {"model": "metainfo.source", "pk": 9949, "fields": {"orig_filename": "Lovassy_Sandor_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412305}}, {"model": "metainfo.source", "pk": 9950, "fields": {"orig_filename": "Lovati_Teodoro_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 333", "author": "", "orig_id": 1412306}}, {"model": "metainfo.source", "pk": 9951, "fields": {"orig_filename": "Loverini_Ponziano_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412307}}, {"model": "metainfo.source", "pk": 9952, "fields": {"orig_filename": "Lovetto_Karl_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412308}}, {"model": "metainfo.source", "pk": 9953, "fields": {"orig_filename": "Lovich_Adam_1760_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334", "author": "", "orig_id": 1412309}}, {"model": "metainfo.source", "pk": 9954, "fields": {"orig_filename": "Lovisato_Domenico_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 334f.", "author": "", "orig_id": 1412310}}, {"model": "metainfo.source", "pk": 9955, "fields": {"orig_filename": "Lovrencic_Jakob_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412311}}, {"model": "metainfo.source", "pk": 9956, "fields": {"orig_filename": "Lowag_Josef_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412312}}, {"model": "metainfo.source", "pk": 9957, "fields": {"orig_filename": "Loyp_Joseph_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412313}}, {"model": "metainfo.source", "pk": 9958, "fields": {"orig_filename": "Lozica_Ivan_1910_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335", "author": "", "orig_id": 1412314}}, {"model": "metainfo.source", "pk": 9959, "fields": {"orig_filename": "Lozinski_Bronislaw_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 335f.", "author": "", "orig_id": 1412315}}, {"model": "metainfo.source", "pk": 9960, "fields": {"orig_filename": "Lozinski_Walery_1837_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336", "author": "", "orig_id": 1412316}}, {"model": "metainfo.source", "pk": 9961, "fields": {"orig_filename": "Lozinski_Wladyslaw_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336", "author": "", "orig_id": 1412317}}, {"model": "metainfo.source", "pk": 9962, "fields": {"orig_filename": "Lozovina_Vinko_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 336f.", "author": "", "orig_id": 1412387}}, {"model": "metainfo.source", "pk": 9963, "fields": {"orig_filename": "Lozynskyj_Josyp_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412388}}, {"model": "metainfo.source", "pk": 9964, "fields": {"orig_filename": "Lozynskyj_Mychajlo_1880_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412389}}, {"model": "metainfo.source", "pk": 9965, "fields": {"orig_filename": "Luber_Ludwig_1813_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 337", "author": "", "orig_id": 1412390}}, {"model": "metainfo.source", "pk": 9966, "fields": {"orig_filename": "Lubinski_Rudolf_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412391}}, {"model": "metainfo.source", "pk": 9967, "fields": {"orig_filename": "Lubomirski_Henryk_1777_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412392}}, {"model": "metainfo.source", "pk": 9968, "fields": {"orig_filename": "Lubomirski_Jerzy_1817_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412393}}, {"model": "metainfo.source", "pk": 9969, "fields": {"orig_filename": "Lubomirski_Kazimierz_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338", "author": "", "orig_id": 1412394}}, {"model": "metainfo.source", "pk": 9970, "fields": {"orig_filename": "Lubrich_Agost_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 338f.", "author": "", "orig_id": 1412395}}, {"model": "metainfo.source", "pk": 9971, "fields": {"orig_filename": "Lucam_Anna_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339", "author": "", "orig_id": 1412396}}, {"model": "metainfo.source", "pk": 9972, "fields": {"orig_filename": "Lucam_Carl_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339", "author": "", "orig_id": 1412397}}, {"model": "metainfo.source", "pk": 9973, "fields": {"orig_filename": "Lucam_Wilhelm_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 339f.", "author": "", "orig_id": 1412398}}, {"model": "metainfo.source", "pk": 9974, "fields": {"orig_filename": "Lucas_Carl-Wilhelm_1803_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340", "author": "", "orig_id": 1412399}}, {"model": "metainfo.source", "pk": 9975, "fields": {"orig_filename": "Lucatello_Luigi_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340", "author": "", "orig_id": 1412400}}, {"model": "metainfo.source", "pk": 9976, "fields": {"orig_filename": "Luccardi_Vincenzo_1811_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412402}}, {"model": "metainfo.source", "pk": 9977, "fields": {"orig_filename": "Lucca_Pauline_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 340f.", "author": "", "orig_id": 1412401}}, {"model": "metainfo.source", "pk": 9978, "fields": {"orig_filename": "Lucerna_Eduard_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412403}}, {"model": "metainfo.source", "pk": 9979, "fields": {"orig_filename": "Luchner_Oskar-Friedrich_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341", "author": "", "orig_id": 1412404}}, {"model": "metainfo.source", "pk": 9980, "fields": {"orig_filename": "Luciani_Tommaso_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 341f.", "author": "", "orig_id": 1412405}}, {"model": "metainfo.source", "pk": 9981, "fields": {"orig_filename": "Lucich_Geza_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 342", "author": "", "orig_id": 1412406}}, {"model": "metainfo.source", "pk": 9982, "fields": {"orig_filename": "Luckaj_Mychajlo_1789_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343", "author": "", "orig_id": 1412408}}, {"model": "metainfo.source", "pk": 9983, "fields": {"orig_filename": "Lucka_Emil_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 342f.", "author": "", "orig_id": 1412407}}, {"model": "metainfo.source", "pk": 9984, "fields": {"orig_filename": "Luckhardt_Fritz_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343", "author": "", "orig_id": 1412409}}, {"model": "metainfo.source", "pk": 9985, "fields": {"orig_filename": "Luckmann_Joseph_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 343f.", "author": "", "orig_id": 1411003}}, {"model": "metainfo.source", "pk": 9986, "fields": {"orig_filename": "Luckmann_Karl_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344", "author": "", "orig_id": 1411004}}, {"model": "metainfo.source", "pk": 9987, "fields": {"orig_filename": "Luckmann_Lambert-Carl_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344", "author": "", "orig_id": 1411005}}, {"model": "metainfo.source", "pk": 9988, "fields": {"orig_filename": "Ludescher_Beat_1777_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 344f.", "author": "", "orig_id": 1411006}}, {"model": "metainfo.source", "pk": 9989, "fields": {"orig_filename": "Ludewig_Anton-Edmund_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411007}}, {"model": "metainfo.source", "pk": 9990, "fields": {"orig_filename": "Ludig_Emanuel_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411008}}, {"model": "metainfo.source", "pk": 9991, "fields": {"orig_filename": "Ludolf_Emanuel_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345", "author": "", "orig_id": 1411009}}, {"model": "metainfo.source", "pk": 9992, "fields": {"orig_filename": "Ludvigh_Janos_1812_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 345f.", "author": "", "orig_id": 1411010}}, {"model": "metainfo.source", "pk": 9993, "fields": {"orig_filename": "Ludvigh_Samuel_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346", "author": "", "orig_id": 1411011}}, {"model": "metainfo.source", "pk": 9994, "fields": {"orig_filename": "Ludvik_Josef-Myslimir_1796_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346", "author": "", "orig_id": 1411012}}, {"model": "metainfo.source", "pk": 9995, "fields": {"orig_filename": "Ludwig_Alfred_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 346f.", "author": "", "orig_id": 1411013}}, {"model": "metainfo.source", "pk": 9996, "fields": {"orig_filename": "Ludwig_Bernhard-Hieronymus_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347", "author": "", "orig_id": 1411015}}, {"model": "metainfo.source", "pk": 9997, "fields": {"orig_filename": "Ludwig_Bernhard_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347", "author": "", "orig_id": 1411014}}, {"model": "metainfo.source", "pk": 9998, "fields": {"orig_filename": "Ludwig_Ernst_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 347f.", "author": "", "orig_id": 1411016}}, {"model": "metainfo.source", "pk": 9999, "fields": {"orig_filename": "Ludwig_Franz-Josef_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411017}}, {"model": "metainfo.source", "pk": 10000, "fields": {"orig_filename": "Ludwig_Franz-Xaver_1868_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411018}}, {"model": "metainfo.source", "pk": 10001, "fields": {"orig_filename": "Ludwig_Georg_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348", "author": "", "orig_id": 1411020}}, {"model": "metainfo.source", "pk": 10002, "fields": {"orig_filename": "Ludwig_Hermann-Wilhelm_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349", "author": "", "orig_id": 1411094}}, {"model": "metainfo.source", "pk": 10003, "fields": {"orig_filename": "Ludwig_Hermann_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 348f.", "author": "", "orig_id": 1411021}}, {"model": "metainfo.source", "pk": 10004, "fields": {"orig_filename": "Ludwig_Joseph-Anton_1784_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349", "author": "", "orig_id": 1411095}}, {"model": "metainfo.source", "pk": 10005, "fields": {"orig_filename": "Ludwig_Karl_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 349f.", "author": "", "orig_id": 1411096}}, {"model": "metainfo.source", "pk": 10006, "fields": {"orig_filename": "Ludwig_Karl_1861_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350", "author": "", "orig_id": 1411097}}, {"model": "metainfo.source", "pk": 10007, "fields": {"orig_filename": "Ludwig_Karl_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350", "author": "", "orig_id": 1411098}}, {"model": "metainfo.source", "pk": 10008, "fields": {"orig_filename": "Ludwig_Salvator_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 350f.", "author": "", "orig_id": 1411099}}, {"model": "metainfo.source", "pk": 10009, "fields": {"orig_filename": "Ludwig_Viktor_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351", "author": "", "orig_id": 1411100}}, {"model": "metainfo.source", "pk": 10010, "fields": {"orig_filename": "Ludwik_Kamill_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351", "author": "", "orig_id": 1411101}}, {"model": "metainfo.source", "pk": 10011, "fields": {"orig_filename": "Ludwik_Paul_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 351f.", "author": "", "orig_id": 1411102}}, {"model": "metainfo.source", "pk": 10012, "fields": {"orig_filename": "Lueger_Karl_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 352f.", "author": "", "orig_id": 1411103}}, {"model": "metainfo.source", "pk": 10013, "fields": {"orig_filename": "Luenemann_Erich_1881_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353", "author": "", "orig_id": 1411104}}, {"model": "metainfo.source", "pk": 10014, "fields": {"orig_filename": "Luessner_Moritz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353", "author": "", "orig_id": 1411105}}, {"model": "metainfo.source", "pk": 10015, "fields": {"orig_filename": "Luetgendorff-Leinburg_Ferdinand_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 353f.", "author": "", "orig_id": 1411106}}, {"model": "metainfo.source", "pk": 10016, "fields": {"orig_filename": "Luetgendorff-Leinburg_Otto-Gottfried_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411107}}, {"model": "metainfo.source", "pk": 10017, "fields": {"orig_filename": "Luetgendorff-Leinburg_Willibald-Leo_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411108}}, {"model": "metainfo.source", "pk": 10018, "fields": {"orig_filename": "Luetzow_Franz_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354", "author": "", "orig_id": 1411109}}, {"model": "metainfo.source", "pk": 10019, "fields": {"orig_filename": "Luetzow_Heinrich_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 354f.", "author": "", "orig_id": 1411110}}, {"model": "metainfo.source", "pk": 10020, "fields": {"orig_filename": "Luetzow_Karl_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355", "author": "", "orig_id": 1411111}}, {"model": "metainfo.source", "pk": 10021, "fields": {"orig_filename": "Lugert_Josef_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356f.", "author": "", "orig_id": 1411116}}, {"model": "metainfo.source", "pk": 10022, "fields": {"orig_filename": "Luger_Alfred_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355", "author": "", "orig_id": 1411112}}, {"model": "metainfo.source", "pk": 10023, "fields": {"orig_filename": "Luger_Alphons_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 355f.", "author": "", "orig_id": 1411113}}, {"model": "metainfo.source", "pk": 10024, "fields": {"orig_filename": "Luger_Georg_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 356", "author": "", "orig_id": 1411115}}, {"model": "metainfo.source", "pk": 10025, "fields": {"orig_filename": "Luggin_Hans_1863_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 357", "author": "", "orig_id": 1411117}}, {"model": "metainfo.source", "pk": 10026, "fields": {"orig_filename": "Luggin_Josef_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 357f.", "author": "", "orig_id": 1411118}}, {"model": "metainfo.source", "pk": 10027, "fields": {"orig_filename": "Lugnani_Giuseppe_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411191}}, {"model": "metainfo.source", "pk": 10028, "fields": {"orig_filename": "Lugossy_Jozsef_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411192}}, {"model": "metainfo.source", "pk": 10029, "fields": {"orig_filename": "Luh_Heinrich_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358", "author": "", "orig_id": 1411193}}, {"model": "metainfo.source", "pk": 10030, "fields": {"orig_filename": "Luick_Karl_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 358f.", "author": "", "orig_id": 1411194}}, {"model": "metainfo.source", "pk": 10031, "fields": {"orig_filename": "Luithlen_Friedrich_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 359", "author": "", "orig_id": 1411195}}, {"model": "metainfo.source", "pk": 10032, "fields": {"orig_filename": "Luithlen_Hugo_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 359f.", "author": "", "orig_id": 1411196}}, {"model": "metainfo.source", "pk": 10033, "fields": {"orig_filename": "Luithlen_Marie_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360", "author": "", "orig_id": 1411197}}, {"model": "metainfo.source", "pk": 10034, "fields": {"orig_filename": "Luithlen_Martha_1866_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360", "author": "", "orig_id": 1411198}}, {"model": "metainfo.source", "pk": 10035, "fields": {"orig_filename": "Lukachich-Somorja_Geza_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 360f.", "author": "", "orig_id": 1411199}}, {"model": "metainfo.source", "pk": 10036, "fields": {"orig_filename": "Lukacsy_Imre_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 362", "author": "", "orig_id": 1411206}}, {"model": "metainfo.source", "pk": 10037, "fields": {"orig_filename": "Loewinger_Cilli_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 294f.", "author": "", "orig_id": 1411836}}, {"model": "metainfo.source", "pk": 10038, "fields": {"orig_filename": "Loewit_Moritz_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 295", "author": "", "orig_id": 1411837}}, {"model": "metainfo.source", "pk": 10039, "fields": {"orig_filename": "Loewl-Lenkenthal_Ferdinand_1856_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 295f.", "author": "", "orig_id": 1411838}}, {"model": "metainfo.source", "pk": 10040, "fields": {"orig_filename": "Loewy_Albert_1816_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411839}}, {"model": "metainfo.source", "pk": 10041, "fields": {"orig_filename": "Loewy_Antonie_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411840}}, {"model": "metainfo.source", "pk": 10042, "fields": {"orig_filename": "Loewy_Emanuel_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296", "author": "", "orig_id": 1411911}}, {"model": "metainfo.source", "pk": 10043, "fields": {"orig_filename": "Loewy_Josef_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 296f.", "author": "", "orig_id": 1411912}}, {"model": "metainfo.source", "pk": 10044, "fields": {"orig_filename": "Loewy_Moritz_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297f.", "author": "", "orig_id": 1411914}}, {"model": "metainfo.source", "pk": 10045, "fields": {"orig_filename": "Loewy_Siegfried_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298", "author": "", "orig_id": 1411915}}, {"model": "metainfo.source", "pk": 10046, "fields": {"orig_filename": "Loew_Georg_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411734}}, {"model": "metainfo.source", "pk": 10047, "fields": {"orig_filename": "Loew_Immanuel_1854_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411735}}, {"model": "metainfo.source", "pk": 10048, "fields": {"orig_filename": "Loew_Joseph_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283f.", "author": "", "orig_id": 1411736}}, {"model": "metainfo.source", "pk": 10049, "fields": {"orig_filename": "Loew_Karl_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 284", "author": "", "orig_id": 1411737}}, {"model": "metainfo.source", "pk": 10050, "fields": {"orig_filename": "Loew_Konrad_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 284f.", "author": "", "orig_id": 1411738}}, {"model": "metainfo.source", "pk": 10051, "fields": {"orig_filename": "Loew_Leopold_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 285", "author": "", "orig_id": 1411739}}, {"model": "metainfo.source", "pk": 10052, "fields": {"orig_filename": "Loew_Moritz_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 285f.", "author": "", "orig_id": 1411740}}, {"model": "metainfo.source", "pk": 10053, "fields": {"orig_filename": "Loew_Philipp_1860_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411742}}, {"model": "metainfo.source", "pk": 10054, "fields": {"orig_filename": "Loew_Philip_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411741}}, {"model": "metainfo.source", "pk": 10055, "fields": {"orig_filename": "Loew_Tobias_1844_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411743}}, {"model": "metainfo.source", "pk": 10056, "fields": {"orig_filename": "Loew_Wilhelm_1812_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286", "author": "", "orig_id": 1411744}}, {"model": "metainfo.source", "pk": 10057, "fields": {"orig_filename": "Logothetti_Hugo_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298", "author": "", "orig_id": 1411916}}, {"model": "metainfo.source", "pk": 10058, "fields": {"orig_filename": "Lohan_Robert_1884_1953.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 298f.", "author": "", "orig_id": 1411917}}, {"model": "metainfo.source", "pk": 10059, "fields": {"orig_filename": "Lohner_Heinrich_1786_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299", "author": "", "orig_id": 1411918}}, {"model": "metainfo.source", "pk": 10060, "fields": {"orig_filename": "Lohner_Jakob_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299", "author": "", "orig_id": 1411919}}, {"model": "metainfo.source", "pk": 10061, "fields": {"orig_filename": "Lohner_Ludwig_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 299f.", "author": "", "orig_id": 1411920}}, {"model": "metainfo.source", "pk": 10062, "fields": {"orig_filename": "Lohninger_Joseph_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 300", "author": "", "orig_id": 1411922}}, {"model": "metainfo.source", "pk": 10063, "fields": {"orig_filename": "Lohr_Otto_1847_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 300f.", "author": "", "orig_id": 1411923}}, {"model": "metainfo.source", "pk": 10064, "fields": {"orig_filename": "Lohsing_Ernst_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301", "author": "", "orig_id": 1411924}}, {"model": "metainfo.source", "pk": 10065, "fields": {"orig_filename": "Lohwag_Ernst_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301", "author": "", "orig_id": 1411925}}, {"model": "metainfo.source", "pk": 10066, "fields": {"orig_filename": "Lohwag_Heinrich_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 301f.", "author": "", "orig_id": 1411926}}, {"model": "metainfo.source", "pk": 10067, "fields": {"orig_filename": "Loidl_Karl_1908_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411927}}, {"model": "metainfo.source", "pk": 10068, "fields": {"orig_filename": "Loidol_Oddo_1858_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411928}}, {"model": "metainfo.source", "pk": 10069, "fields": {"orig_filename": "Loimann_Gustav_1853_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302", "author": "", "orig_id": 1411929}}, {"model": "metainfo.source", "pk": 10070, "fields": {"orig_filename": "Loinger_Vitus_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 302f.", "author": "", "orig_id": 1411930}}, {"model": "metainfo.source", "pk": 10071, "fields": {"orig_filename": "Lojko-Tisovsky_August_1843_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303", "author": "", "orig_id": 1411931}}, {"model": "metainfo.source", "pk": 10072, "fields": {"orig_filename": "Lokar_Anton_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303", "author": "", "orig_id": 1411932}}, {"model": "metainfo.source", "pk": 10073, "fields": {"orig_filename": "Lolek_Stanislav_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 303f.", "author": "", "orig_id": 1411933}}, {"model": "metainfo.source", "pk": 10074, "fields": {"orig_filename": "Lolli_Eude_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1411934}}, {"model": "metainfo.source", "pk": 10075, "fields": {"orig_filename": "Lombardini_Alexander_1851_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1412008}}, {"model": "metainfo.source", "pk": 10076, "fields": {"orig_filename": "Lombardini_Elia_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 304", "author": "", "orig_id": 1412009}}, {"model": "metainfo.source", "pk": 10077, "fields": {"orig_filename": "Lombroso_Ezechia-Marco_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1412010}}, {"model": "metainfo.source", "pk": 10078, "fields": {"orig_filename": "Lomnicki_Jaroslaw-Ludomir_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305", "author": "", "orig_id": 1412011}}, {"model": "metainfo.source", "pk": 10079, "fields": {"orig_filename": "Lomnicki_Marian_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305", "author": "", "orig_id": 1412012}}, {"model": "metainfo.source", "pk": 10080, "fields": {"orig_filename": "Longhi_Giuseppe_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 305f.", "author": "", "orig_id": 1412013}}, {"model": "metainfo.source", "pk": 10081, "fields": {"orig_filename": "Longo_Emanuele_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306", "author": "", "orig_id": 1412014}}, {"model": "metainfo.source", "pk": 10082, "fields": {"orig_filename": "Lonkay_Antal_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306", "author": "", "orig_id": 1412015}}, {"model": "metainfo.source", "pk": 10083, "fields": {"orig_filename": "Lonovics_Jozsef_1793_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 306f.", "author": "", "orig_id": 1412016}}, {"model": "metainfo.source", "pk": 10084, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Albert_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307", "author": "", "orig_id": 1412017}}, {"model": "metainfo.source", "pk": 10085, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Gabor_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307", "author": "", "orig_id": 1412018}}, {"model": "metainfo.source", "pk": 10086, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Menyhert_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 307f.", "author": "", "orig_id": 1412019}}, {"model": "metainfo.source", "pk": 10087, "fields": {"orig_filename": "Lonyay-Nagylonya-Vasarosnameny_Stephanie_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308", "author": "", "orig_id": 1412020}}, {"model": "metainfo.source", "pk": 10088, "fields": {"orig_filename": "Lonza_Antonio_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308", "author": "", "orig_id": 1412021}}, {"model": "metainfo.source", "pk": 10089, "fields": {"orig_filename": "Loosey_Karl-Friedrich_1814_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412028}}, {"model": "metainfo.source", "pk": 10090, "fields": {"orig_filename": "Loos_Adolf_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 308f.", "author": "", "orig_id": 1412022}}, {"model": "metainfo.source", "pk": 10091, "fields": {"orig_filename": "Loos_Friedrich_1797_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 309f.", "author": "", "orig_id": 1412023}}, {"model": "metainfo.source", "pk": 10092, "fields": {"orig_filename": "Loos_Johann_1863_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310", "author": "", "orig_id": 1412024}}, {"model": "metainfo.source", "pk": 10093, "fields": {"orig_filename": "Loos_Josef_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310", "author": "", "orig_id": 1412025}}, {"model": "metainfo.source", "pk": 10094, "fields": {"orig_filename": "Loos_Kurt-Camillo_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 310f.", "author": "", "orig_id": 1412026}}, {"model": "metainfo.source", "pk": 10095, "fields": {"orig_filename": "Loos_Lina_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412027}}, {"model": "metainfo.source", "pk": 10096, "fields": {"orig_filename": "Lopasic_Dusan_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 311", "author": "", "orig_id": 1412100}}, {"model": "metainfo.source", "pk": 10097, "fields": {"orig_filename": "Lopasic_Radoslav_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412101}}, {"model": "metainfo.source", "pk": 10098, "fields": {"orig_filename": "Lorantfi_Antal_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412102}}, {"model": "metainfo.source", "pk": 10099, "fields": {"orig_filename": "Lorber_Franz_1846_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312", "author": "", "orig_id": 1412103}}, {"model": "metainfo.source", "pk": 10100, "fields": {"orig_filename": "Lorber_Jakob_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 312f.", "author": "", "orig_id": 1412104}}, {"model": "metainfo.source", "pk": 10101, "fields": {"orig_filename": "Lorens_Carl_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 313", "author": "", "orig_id": 1412105}}, {"model": "metainfo.source", "pk": 10102, "fields": {"orig_filename": "Lorentz-Langendorf_Johann-Ludwig_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 313f.", "author": "", "orig_id": 1412106}}, {"model": "metainfo.source", "pk": 10103, "fields": {"orig_filename": "Lorenz-Liburnau_Josef-Roman_1825_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 319f.", "author": "", "orig_id": 1412119}}, {"model": "metainfo.source", "pk": 10104, "fields": {"orig_filename": "Lorenz-Liburnau_Ludwig_1856_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 320f.", "author": "", "orig_id": 1412120}}, {"model": "metainfo.source", "pk": 10105, "fields": {"orig_filename": "Lorenzetti_Giuseppe_1834_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412121}}, {"model": "metainfo.source", "pk": 10106, "fields": {"orig_filename": "Lorenzi_Bartolomeo_1732_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412198}}, {"model": "metainfo.source", "pk": 10107, "fields": {"orig_filename": "Lorenzoni_Antonio_1755_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 321", "author": "", "orig_id": 1412199}}, {"model": "metainfo.source", "pk": 10108, "fields": {"orig_filename": "Lorenzoni_Franz_1890_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322", "author": "", "orig_id": 1412200}}, {"model": "metainfo.source", "pk": 10109, "fields": {"orig_filename": "Lorenzoni_Giovanni_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322", "author": "", "orig_id": 1412201}}, {"model": "metainfo.source", "pk": 10110, "fields": {"orig_filename": "Lorenzoni_Giuseppe_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 322f.", "author": "", "orig_id": 1412202}}, {"model": "metainfo.source", "pk": 10111, "fields": {"orig_filename": "Lorenzutti_Lorenzo_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 323", "author": "", "orig_id": 1412203}}, {"model": "metainfo.source", "pk": 10112, "fields": {"orig_filename": "Lorenz_Adolf_1854_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 314f.", "author": "", "orig_id": 1412107}}, {"model": "metainfo.source", "pk": 10113, "fields": {"orig_filename": "Lorenz_Alfred-Ottokar_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315", "author": "", "orig_id": 1412108}}, {"model": "metainfo.source", "pk": 10114, "fields": {"orig_filename": "Lorenz_Emil_1889_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1461233}}, {"model": "metainfo.source", "pk": 10115, "fields": {"orig_filename": "Lorenz_Franz_1803_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315", "author": "", "orig_id": 1412109}}, {"model": "metainfo.source", "pk": 10116, "fields": {"orig_filename": "Lorenz_Hans_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 315f.", "author": "", "orig_id": 1412110}}, {"model": "metainfo.source", "pk": 10117, "fields": {"orig_filename": "Lorenz_Johann-Jakob_1807_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317", "author": "", "orig_id": 1412113}}, {"model": "metainfo.source", "pk": 10118, "fields": {"orig_filename": "Lorenz_Johann_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316f.", "author": "", "orig_id": 1412112}}, {"model": "metainfo.source", "pk": 10119, "fields": {"orig_filename": "Lorenz_Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317", "author": "", "orig_id": 1412114}}, {"model": "metainfo.source", "pk": 10120, "fields": {"orig_filename": "Lorenz_Karl_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 317f.", "author": "", "orig_id": 1412115}}, {"model": "metainfo.source", "pk": 10121, "fields": {"orig_filename": "Lorenz_Martin_1748_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 318", "author": "", "orig_id": 1412116}}, {"model": "metainfo.source", "pk": 10122, "fields": {"orig_filename": "Lorenz_Ottokar_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 318f.", "author": "", "orig_id": 1412117}}, {"model": "metainfo.source", "pk": 10123, "fields": {"orig_filename": "Lorenz_Richard_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 319", "author": "", "orig_id": 1412118}}, {"model": "metainfo.source", "pk": 10124, "fields": {"orig_filename": "Lorinser_Friedrich-Wilhelm_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 323f.", "author": "", "orig_id": 1412204}}, {"model": "metainfo.source", "pk": 10125, "fields": {"orig_filename": "Lorinser_Gisela_1856_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412205}}, {"model": "metainfo.source", "pk": 10126, "fields": {"orig_filename": "Lorinser_Gustav_1811_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324", "author": "", "orig_id": 1412206}}, {"model": "metainfo.source", "pk": 10127, "fields": {"orig_filename": "Loritz_Urban_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 324f.", "author": "", "orig_id": 1412208}}, {"model": "metainfo.source", "pk": 10128, "fields": {"orig_filename": "Lorkovic_Blaz_1839_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325", "author": "", "orig_id": 1412209}}, {"model": "metainfo.source", "pk": 10129, "fields": {"orig_filename": "Lorkovic_Ivan_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 325", "author": "", "orig_id": 1412210}}, {"model": "metainfo.source", "pk": 10130, "fields": {"orig_filename": "Los-Grotkow_Wlodzimierz-Adam-Aleksander_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326", "author": "", "orig_id": 1412213}}, {"model": "metainfo.source", "pk": 10131, "fields": {"orig_filename": "Losa_Vaclav_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326", "author": "", "orig_id": 1412214}}, {"model": "metainfo.source", "pk": 10132, "fields": {"orig_filename": "Loschmidt_Johann-Josef_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 326f.", "author": "", "orig_id": 1412215}}, {"model": "metainfo.source", "pk": 10133, "fields": {"orig_filename": "Loserth_Johann_1846_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 328f.", "author": "", "orig_id": 1412218}}, {"model": "metainfo.source", "pk": 10134, "fields": {"orig_filename": "Losert_Benedikt_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 327f.", "author": "", "orig_id": 1412217}}, {"model": "metainfo.source", "pk": 10135, "fields": {"orig_filename": "Loser_Franz_1862_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 327", "author": "", "orig_id": 1412216}}, {"model": "metainfo.source", "pk": 10136, "fields": {"orig_filename": "Loskay_Gabriel_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412219}}, {"model": "metainfo.source", "pk": 10137, "fields": {"orig_filename": "Losonczy_Laszlo_1812_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 329", "author": "", "orig_id": 1412220}}, {"model": "metainfo.source", "pk": 10138, "fields": {"orig_filename": "Littrow_Hermann_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251", "author": "", "orig_id": 1411372}}, {"model": "metainfo.source", "pk": 10139, "fields": {"orig_filename": "Littrow_Joseph-Johann_1781_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251f.", "author": "", "orig_id": 1411373}}, {"model": "metainfo.source", "pk": 10140, "fields": {"orig_filename": "Littrow_Karl-Ludwig_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 252f.", "author": "", "orig_id": 1411374}}, {"model": "metainfo.source", "pk": 10141, "fields": {"orig_filename": "Litzelhofen_Eduard_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253", "author": "", "orig_id": 1411375}}, {"model": "metainfo.source", "pk": 10142, "fields": {"orig_filename": "Livadic-Wiesner_Branimir_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253", "author": "", "orig_id": 1411376}}, {"model": "metainfo.source", "pk": 10143, "fields": {"orig_filename": "Livadic-Wiesner_Ferdo_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 253f.", "author": "", "orig_id": 1411444}}, {"model": "metainfo.source", "pk": 10144, "fields": {"orig_filename": "Liverati_Giovanni_1772_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254", "author": "", "orig_id": 1411445}}, {"model": "metainfo.source", "pk": 10145, "fields": {"orig_filename": "Liznar_Josef_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254", "author": "", "orig_id": 1411447}}, {"model": "metainfo.source", "pk": 10146, "fields": {"orig_filename": "Ljubibratic_Mico_1839_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 254f.", "author": "", "orig_id": 1411446}}, {"model": "metainfo.source", "pk": 10147, "fields": {"orig_filename": "Ljubic_Sime_1822_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 255", "author": "", "orig_id": 1411448}}, {"model": "metainfo.source", "pk": 10148, "fields": {"orig_filename": "Ljubisa_Stjepan-Mitrov_1824_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 255f.", "author": "", "orig_id": 1411449}}, {"model": "metainfo.source", "pk": 10149, "fields": {"orig_filename": "Ljubsa_Matija_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411450}}, {"model": "metainfo.source", "pk": 10150, "fields": {"orig_filename": "Lobarzewski_Hiacynt-Jan_1818_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411451}}, {"model": "metainfo.source", "pk": 10151, "fields": {"orig_filename": "Lobenstock_Heinrich_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 256", "author": "", "orig_id": 1411452}}, {"model": "metainfo.source", "pk": 10152, "fields": {"orig_filename": "Lobeski_Felicjan_1815_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257", "author": "", "orig_id": 1411453}}, {"model": "metainfo.source", "pk": 10153, "fields": {"orig_filename": "Lobinger_Karl_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 257", "author": "", "orig_id": 1411454}}, {"model": "metainfo.source", "pk": 10154, "fields": {"orig_filename": "Lobkowitz_Anton-Isidor_1773_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258", "author": "", "orig_id": 1411456}}, {"model": "metainfo.source", "pk": 10155, "fields": {"orig_filename": "Lobkowitz_Ferdinand_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258", "author": "", "orig_id": 1411457}}, {"model": "metainfo.source", "pk": 10156, "fields": {"orig_filename": "Lobkowitz_Ferdinand_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 258f.", "author": "", "orig_id": 1411458}}, {"model": "metainfo.source", "pk": 10157, "fields": {"orig_filename": "Lobkowitz_Georg-Christian_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 259f.", "author": "", "orig_id": 1411459}}, {"model": "metainfo.source", "pk": 10158, "fields": {"orig_filename": "Lobkowitz_Johann_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260", "author": "", "orig_id": 1411460}}, {"model": "metainfo.source", "pk": 10159, "fields": {"orig_filename": "Lobkowitz_Josef-Franz-Maximilian_1772_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260f.", "author": "", "orig_id": 1411462}}, {"model": "metainfo.source", "pk": 10160, "fields": {"orig_filename": "Lobkowitz_Josef-Franz_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 260", "author": "", "orig_id": 1411461}}, {"model": "metainfo.source", "pk": 10161, "fields": {"orig_filename": "Lobkowitz_Karl-Johann-Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 261", "author": "", "orig_id": 1411463}}, {"model": "metainfo.source", "pk": 10162, "fields": {"orig_filename": "Lobkowitz_Rudolf_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262", "author": "", "orig_id": 1411464}}, {"model": "metainfo.source", "pk": 10163, "fields": {"orig_filename": "Lobkowitz_Zdenko_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262", "author": "", "orig_id": 1411465}}, {"model": "metainfo.source", "pk": 10164, "fields": {"orig_filename": "Lobmayer_Antun_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 262f.", "author": "", "orig_id": 1411541}}, {"model": "metainfo.source", "pk": 10165, "fields": {"orig_filename": "Lobmeyr_Ludwig_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263f.", "author": "", "orig_id": 1411543}}, {"model": "metainfo.source", "pk": 10166, "fields": {"orig_filename": "Lobos_Ignacy_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411544}}, {"model": "metainfo.source", "pk": 10167, "fields": {"orig_filename": "Locatelli-Milesi_Giuseppe_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411549}}, {"model": "metainfo.source", "pk": 10168, "fields": {"orig_filename": "Locatelli_Giacomo_1756_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411545}}, {"model": "metainfo.source", "pk": 10169, "fields": {"orig_filename": "Locatelli_Gian-Francesco_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264", "author": "", "orig_id": 1411546}}, {"model": "metainfo.source", "pk": 10170, "fields": {"orig_filename": "Locatelli_Pasino_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 264f.", "author": "", "orig_id": 1411547}}, {"model": "metainfo.source", "pk": 10171, "fields": {"orig_filename": "Locatelli_Tommaso_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411548}}, {"model": "metainfo.source", "pk": 10172, "fields": {"orig_filename": "Locella_Guglielmo_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 265", "author": "", "orig_id": 1411550}}, {"model": "metainfo.source", "pk": 10173, "fields": {"orig_filename": "Lochau_Viktor-Albrecht_1765_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411551}}, {"model": "metainfo.source", "pk": 10174, "fields": {"orig_filename": "Lochis_Carlo_1843_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411552}}, {"model": "metainfo.source", "pk": 10175, "fields": {"orig_filename": "Lochis_Guglielmo_1789_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411553}}, {"model": "metainfo.source", "pk": 10176, "fields": {"orig_filename": "Lochner_Johann_1756_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266", "author": "", "orig_id": 1411554}}, {"model": "metainfo.source", "pk": 10177, "fields": {"orig_filename": "Locker_Anton_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 266f.", "author": "", "orig_id": 1411555}}, {"model": "metainfo.source", "pk": 10178, "fields": {"orig_filename": "Loczka_Jozsef_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267", "author": "", "orig_id": 1411556}}, {"model": "metainfo.source", "pk": 10179, "fields": {"orig_filename": "Loczy_Lajos_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267", "author": "", "orig_id": 1411557}}, {"model": "metainfo.source", "pk": 10180, "fields": {"orig_filename": "Loder_Matthaeus_1781_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268", "author": "", "orig_id": 1411559}}, {"model": "metainfo.source", "pk": 10181, "fields": {"orig_filename": "Lode_Alois_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 267f.", "author": "", "orig_id": 1411558}}, {"model": "metainfo.source", "pk": 10182, "fields": {"orig_filename": "Lodi_Emanuele_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268", "author": "", "orig_id": 1411560}}, {"model": "metainfo.source", "pk": 10183, "fields": {"orig_filename": "Lodrini_Antonio_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 268f.", "author": "", "orig_id": 1411561}}, {"model": "metainfo.source", "pk": 10184, "fields": {"orig_filename": "Lodron-Laterano_Caspar_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411562}}, {"model": "metainfo.source", "pk": 10185, "fields": {"orig_filename": "Lodron-Laterano_Konstantin_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411563}}, {"model": "metainfo.source", "pk": 10186, "fields": {"orig_filename": "Loebisch_Wilhelm-Franz_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 269", "author": "", "orig_id": 1411564}}, {"model": "metainfo.source", "pk": 10187, "fields": {"orig_filename": "Loebl-Tauernstorff_Johann_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270f.", "author": "", "orig_id": 1411567}}, {"model": "metainfo.source", "pk": 10188, "fields": {"orig_filename": "Loebl_Emil_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270", "author": "", "orig_id": 1411565}}, {"model": "metainfo.source", "pk": 10189, "fields": {"orig_filename": "Loebl_Hermann_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 270", "author": "", "orig_id": 1411566}}, {"model": "metainfo.source", "pk": 10190, "fields": {"orig_filename": "Loeffler_Alexander_1866_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 271f.", "author": "", "orig_id": 1411637}}, {"model": "metainfo.source", "pk": 10191, "fields": {"orig_filename": "Loeffler_Karl_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272", "author": "", "orig_id": 1411638}}, {"model": "metainfo.source", "pk": 10192, "fields": {"orig_filename": "Loeffler_Leopold_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272", "author": "", "orig_id": 1411639}}, {"model": "metainfo.source", "pk": 10193, "fields": {"orig_filename": "Loeff_Anton_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 271", "author": "", "orig_id": 1411636}}, {"model": "metainfo.source", "pk": 10194, "fields": {"orig_filename": "Loefler_Franz_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 272f.", "author": "", "orig_id": 1411640}}, {"model": "metainfo.source", "pk": 10195, "fields": {"orig_filename": "Loeger_Anton_1813_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 273", "author": "", "orig_id": 1411641}}, {"model": "metainfo.source", "pk": 10196, "fields": {"orig_filename": "Loeherer_Andor_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 273f.", "author": "", "orig_id": 1411642}}, {"model": "metainfo.source", "pk": 10197, "fields": {"orig_filename": "Loehner_Fritz_1883_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274", "author": "", "orig_id": 1411643}}, {"model": "metainfo.source", "pk": 10198, "fields": {"orig_filename": "Loehner_Hermann_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274", "author": "", "orig_id": 1411644}}, {"model": "metainfo.source", "pk": 10199, "fields": {"orig_filename": "Loehner_Josef_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 274f.", "author": "", "orig_id": 1411645}}, {"model": "metainfo.source", "pk": 10200, "fields": {"orig_filename": "Loehner_Ludwig_1812_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 275", "author": "", "orig_id": 1411646}}, {"model": "metainfo.source", "pk": 10201, "fields": {"orig_filename": "Loehneysen_Hilbert_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 275f.", "author": "", "orig_id": 1411647}}, {"model": "metainfo.source", "pk": 10202, "fields": {"orig_filename": "Loehr_Alexander_1885_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 276", "author": "", "orig_id": 1411648}}, {"model": "metainfo.source", "pk": 10203, "fields": {"orig_filename": "Loehr_August_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 276f.", "author": "", "orig_id": 1411649}}, {"model": "metainfo.source", "pk": 10204, "fields": {"orig_filename": "Loehr_Grete_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 277", "author": "", "orig_id": 1411650}}, {"model": "metainfo.source", "pk": 10205, "fields": {"orig_filename": "Loehr_Moritz_1810_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 277f.", "author": "", "orig_id": 1411651}}, {"model": "metainfo.source", "pk": 10206, "fields": {"orig_filename": "Loenhart_Ferenc_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278", "author": "", "orig_id": 1411652}}, {"model": "metainfo.source", "pk": 10207, "fields": {"orig_filename": "Loerenthey_Imre_1867_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278", "author": "", "orig_id": 1411653}}, {"model": "metainfo.source", "pk": 10208, "fields": {"orig_filename": "Loescher_Leopoldine_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279", "author": "", "orig_id": 1411656}}, {"model": "metainfo.source", "pk": 10209, "fields": {"orig_filename": "Loesche_Karl-David-Georg_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 278f.", "author": "", "orig_id": 1411654}}, {"model": "metainfo.source", "pk": 10210, "fields": {"orig_filename": "Loesche_Naema_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279", "author": "", "orig_id": 1411655}}, {"model": "metainfo.source", "pk": 10211, "fields": {"orig_filename": "Loeschner_Joseph-Wilhelm_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 279f.", "author": "", "orig_id": 1411657}}, {"model": "metainfo.source", "pk": 10212, "fields": {"orig_filename": "Loeschner_Richard_1879_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 280", "author": "", "orig_id": 1411725}}, {"model": "metainfo.source", "pk": 10213, "fields": {"orig_filename": "Loeschnigg_Hans_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281", "author": "", "orig_id": 1411727}}, {"model": "metainfo.source", "pk": 10214, "fields": {"orig_filename": "Loeschnig_Josef_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 280f.", "author": "", "orig_id": 1411726}}, {"model": "metainfo.source", "pk": 10215, "fields": {"orig_filename": "Loessl_Franz-Xaver_1801_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281", "author": "", "orig_id": 1411728}}, {"model": "metainfo.source", "pk": 10216, "fields": {"orig_filename": "Loessl_Friedrich_1817_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 281f.", "author": "", "orig_id": 1411729}}, {"model": "metainfo.source", "pk": 10217, "fields": {"orig_filename": "Loessl_Rudolf_1872_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282", "author": "", "orig_id": 1411730}}, {"model": "metainfo.source", "pk": 10218, "fields": {"orig_filename": "Loete_Jozsef_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282", "author": "", "orig_id": 1411731}}, {"model": "metainfo.source", "pk": 10219, "fields": {"orig_filename": "Loevenstein_Jan_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 282f.", "author": "", "orig_id": 1411732}}, {"model": "metainfo.source", "pk": 10220, "fields": {"orig_filename": "Loevey_Klara_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 283", "author": "", "orig_id": 1411733}}, {"model": "metainfo.source", "pk": 10221, "fields": {"orig_filename": "Loewenbach_Georg_1872_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291", "author": "", "orig_id": 1411827}}, {"model": "metainfo.source", "pk": 10222, "fields": {"orig_filename": "Loewenfeld-Russ_Johann_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291", "author": "", "orig_id": 1411828}}, {"model": "metainfo.source", "pk": 10223, "fields": {"orig_filename": "Loewenstein-Opoka_Nathan_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292", "author": "", "orig_id": 1411831}}, {"model": "metainfo.source", "pk": 10224, "fields": {"orig_filename": "Loewenstein_Ernst_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 291f.", "author": "", "orig_id": 1411829}}, {"model": "metainfo.source", "pk": 10225, "fields": {"orig_filename": "Loewenstein_Moritz_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292", "author": "", "orig_id": 1411830}}, {"model": "metainfo.source", "pk": 10226, "fields": {"orig_filename": "Loewenthal_Jakob_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 292f.", "author": "", "orig_id": 1411832}}, {"model": "metainfo.source", "pk": 10227, "fields": {"orig_filename": "Loewenthal_Johann_1803_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 293", "author": "", "orig_id": 1411833}}, {"model": "metainfo.source", "pk": 10228, "fields": {"orig_filename": "Loewenthal_Max_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 293f.", "author": "", "orig_id": 1411834}}, {"model": "metainfo.source", "pk": 10229, "fields": {"orig_filename": "Loewenthal_Sophie_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 294", "author": "", "orig_id": 1411835}}, {"model": "metainfo.source", "pk": 10230, "fields": {"orig_filename": "Loewe_Alexander_1808_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 286f.", "author": "", "orig_id": 1411745}}, {"model": "metainfo.source", "pk": 10231, "fields": {"orig_filename": "Loewe_Anna_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 287", "author": "", "orig_id": 1411819}}, {"model": "metainfo.source", "pk": 10232, "fields": {"orig_filename": "Loewe_Ferdinand_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 287", "author": "", "orig_id": 1411820}}, {"model": "metainfo.source", "pk": 10233, "fields": {"orig_filename": "Loewe_Gustav_1865_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 288", "author": "", "orig_id": 1411821}}, {"model": "metainfo.source", "pk": 10234, "fields": {"orig_filename": "Loewe_Johann-Heinrich_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 288", "author": "", "orig_id": 1411822}}, {"model": "metainfo.source", "pk": 10235, "fields": {"orig_filename": "Loewe_Julie-Sophie_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 289", "author": "", "orig_id": 1411823}}, {"model": "metainfo.source", "pk": 10236, "fields": {"orig_filename": "Loewe_Ludwig_1794_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 289f.", "author": "", "orig_id": 1411824}}, {"model": "metainfo.source", "pk": 10237, "fields": {"orig_filename": "Loewe_Sophie-Johanna_1815_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 290", "author": "", "orig_id": 1411825}}, {"model": "metainfo.source", "pk": 10238, "fields": {"orig_filename": "Loewe_Theodor_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 290f.", "author": "", "orig_id": 1411826}}, {"model": "metainfo.source", "pk": 10239, "fields": {"orig_filename": "Limbourg_Maximilian_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216f.", "author": "", "orig_id": 1412372}}, {"model": "metainfo.source", "pk": 10240, "fields": {"orig_filename": "Linberger_Istvan_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412373}}, {"model": "metainfo.source", "pk": 10241, "fields": {"orig_filename": "Lindau_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 218f.", "author": "", "orig_id": 1412378}}, {"model": "metainfo.source", "pk": 10242, "fields": {"orig_filename": "Linda_Josef_1789_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 218", "author": "", "orig_id": 1412377}}, {"model": "metainfo.source", "pk": 10243, "fields": {"orig_filename": "Lindenau_Karl-Friedrich_1746_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219", "author": "", "orig_id": 1412380}}, {"model": "metainfo.source", "pk": 10244, "fields": {"orig_filename": "Lindenthal_Gustav_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219f.", "author": "", "orig_id": 1412381}}, {"model": "metainfo.source", "pk": 10245, "fields": {"orig_filename": "Linden_Joseph-Sigmund_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 219", "author": "", "orig_id": 1412379}}, {"model": "metainfo.source", "pk": 10246, "fields": {"orig_filename": "Linder_Karl_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220", "author": "", "orig_id": 1412384}}, {"model": "metainfo.source", "pk": 10247, "fields": {"orig_filename": "Lindheim_Alfred_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 220f.", "author": "", "orig_id": 1412385}}, {"model": "metainfo.source", "pk": 10248, "fields": {"orig_filename": "Lindheim_Hermann-Dietrich_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 221", "author": "", "orig_id": 1412386}}, {"model": "metainfo.source", "pk": 10249, "fields": {"orig_filename": "Lindheim_Wilhelm_1835_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 221", "author": "", "orig_id": 1411072}}, {"model": "metainfo.source", "pk": 10250, "fields": {"orig_filename": "Lindner_Anton-Friedrich_1800_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222", "author": "", "orig_id": 1411074}}, {"model": "metainfo.source", "pk": 10251, "fields": {"orig_filename": "Lindner_Anton_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222", "author": "", "orig_id": 1411073}}, {"model": "metainfo.source", "pk": 10252, "fields": {"orig_filename": "Lindner_Ernst_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 222f.", "author": "", "orig_id": 1411075}}, {"model": "metainfo.source", "pk": 10253, "fields": {"orig_filename": "Lindner_Gustav_1836_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411076}}, {"model": "metainfo.source", "pk": 10254, "fields": {"orig_filename": "Lindner_Karl_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411077}}, {"model": "metainfo.source", "pk": 10255, "fields": {"orig_filename": "Lindner_Pirmin_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223", "author": "", "orig_id": 1411078}}, {"model": "metainfo.source", "pk": 10256, "fields": {"orig_filename": "Lind_Eduard_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412374}}, {"model": "metainfo.source", "pk": 10257, "fields": {"orig_filename": "Lind_Emil_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217", "author": "", "orig_id": 1412375}}, {"model": "metainfo.source", "pk": 10258, "fields": {"orig_filename": "Lind_Karl_1831_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 217f.", "author": "", "orig_id": 1412376}}, {"model": "metainfo.source", "pk": 10259, "fields": {"orig_filename": "Lingiardi_Giovanni-Batt_1765_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 223f.", "author": "", "orig_id": 1411079}}, {"model": "metainfo.source", "pk": 10260, "fields": {"orig_filename": "Linhart_Emil_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411080}}, {"model": "metainfo.source", "pk": 10261, "fields": {"orig_filename": "Linhart_Gyoergy_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411081}}, {"model": "metainfo.source", "pk": 10262, "fields": {"orig_filename": "Linhart_Karel_1882_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224", "author": "", "orig_id": 1411082}}, {"model": "metainfo.source", "pk": 10263, "fields": {"orig_filename": "Link-Dessauer_Antonie_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411087}}, {"model": "metainfo.source", "pk": 10264, "fields": {"orig_filename": "Linke-Crawford_Frank_1893_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 227f.", "author": "", "orig_id": 1411092}}, {"model": "metainfo.source", "pk": 10265, "fields": {"orig_filename": "Linke_Franz_1880_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411088}}, {"model": "metainfo.source", "pk": 10266, "fields": {"orig_filename": "Linke_Friedrich_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226", "author": "", "orig_id": 1411089}}, {"model": "metainfo.source", "pk": 10267, "fields": {"orig_filename": "Linke_Joseph_1783_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 226f.", "author": "", "orig_id": 1411090}}, {"model": "metainfo.source", "pk": 10268, "fields": {"orig_filename": "Linke_Karl_1884_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 227", "author": "", "orig_id": 1411091}}, {"model": "metainfo.source", "pk": 10269, "fields": {"orig_filename": "Links_Rudolf_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411093}}, {"model": "metainfo.source", "pk": 10270, "fields": {"orig_filename": "Link_Adolf_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 224f.", "author": "", "orig_id": 1411083}}, {"model": "metainfo.source", "pk": 10271, "fields": {"orig_filename": "Link_Anton_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225", "author": "", "orig_id": 1411084}}, {"model": "metainfo.source", "pk": 10272, "fields": {"orig_filename": "Link_Augustin_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225", "author": "", "orig_id": 1411085}}, {"model": "metainfo.source", "pk": 10273, "fields": {"orig_filename": "Link_Leopold_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 225f.", "author": "", "orig_id": 1411086}}, {"model": "metainfo.source", "pk": 10274, "fields": {"orig_filename": "Linnemann_Eduard_1841_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411167}}, {"model": "metainfo.source", "pk": 10275, "fields": {"orig_filename": "Linnert_Gustav_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228", "author": "", "orig_id": 1411168}}, {"model": "metainfo.source", "pk": 10276, "fields": {"orig_filename": "Linsbauer_Karl_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 228f.", "author": "", "orig_id": 1411169}}, {"model": "metainfo.source", "pk": 10277, "fields": {"orig_filename": "Linsbauer_Ludwig_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229", "author": "", "orig_id": 1411170}}, {"model": "metainfo.source", "pk": 10278, "fields": {"orig_filename": "Linsmeier_Anton_1840_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229", "author": "", "orig_id": 1411171}}, {"model": "metainfo.source", "pk": 10279, "fields": {"orig_filename": "Linzbauer_Franz-Xaver_1807_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 229f.", "author": "", "orig_id": 1411172}}, {"model": "metainfo.source", "pk": 10280, "fields": {"orig_filename": "Linzinger_Ludwig_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230", "author": "", "orig_id": 1411173}}, {"model": "metainfo.source", "pk": 10281, "fields": {"orig_filename": "Lioy_Paolo_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230", "author": "", "orig_id": 1411174}}, {"model": "metainfo.source", "pk": 10282, "fields": {"orig_filename": "Lipcsey-Bilke_Adam_1864_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 230f.", "author": "", "orig_id": 1411175}}, {"model": "metainfo.source", "pk": 10283, "fields": {"orig_filename": "Lipiner_Siegfried_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231", "author": "", "orig_id": 1411177}}, {"model": "metainfo.source", "pk": 10284, "fields": {"orig_filename": "Lipinski_Hipolit_1846_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231", "author": "", "orig_id": 1411178}}, {"model": "metainfo.source", "pk": 10285, "fields": {"orig_filename": "Lipinski_Karl-Joseph_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 231f.", "author": "", "orig_id": 1411179}}, {"model": "metainfo.source", "pk": 10286, "fields": {"orig_filename": "Lipinski_Kazimierz_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 232", "author": "", "orig_id": 1411180}}, {"model": "metainfo.source", "pk": 10287, "fields": {"orig_filename": "Lipold_Marko-Vincenc_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 232", "author": "", "orig_id": 1411181}}, {"model": "metainfo.source", "pk": 10288, "fields": {"orig_filename": "Liposcak_Anton_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233", "author": "", "orig_id": 1411182}}, {"model": "metainfo.source", "pk": 10289, "fields": {"orig_filename": "Lipovniczky-Lipovnok_Istvan_1814_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233", "author": "", "orig_id": 1411183}}, {"model": "metainfo.source", "pk": 10290, "fields": {"orig_filename": "Lipparini_Lodovico_1800_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411186}}, {"model": "metainfo.source", "pk": 10291, "fields": {"orig_filename": "Lippay-Zombor_Gaspar_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234f.", "author": "", "orig_id": 1411188}}, {"model": "metainfo.source", "pk": 10292, "fields": {"orig_filename": "Lippay_Bartholomaeus-Dominik_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411187}}, {"model": "metainfo.source", "pk": 10293, "fields": {"orig_filename": "Lippert-Granberg_Josef-Erwin_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236", "author": "", "orig_id": 1411260}}, {"model": "metainfo.source", "pk": 10294, "fields": {"orig_filename": "Lippert-Granberg_Josephine_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236", "author": "", "orig_id": 1411261}}, {"model": "metainfo.source", "pk": 10295, "fields": {"orig_filename": "Lippert_Christian_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235", "author": "", "orig_id": 1411189}}, {"model": "metainfo.source", "pk": 10296, "fields": {"orig_filename": "Lippert_Josef_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235", "author": "", "orig_id": 1411190}}, {"model": "metainfo.source", "pk": 10297, "fields": {"orig_filename": "Lippert_Julius_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 235f.", "author": "", "orig_id": 1411259}}, {"model": "metainfo.source", "pk": 10298, "fields": {"orig_filename": "Lippich-Korong_Elek_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1416637}}, {"model": "metainfo.source", "pk": 10299, "fields": {"orig_filename": "Lippich-Lindburg_Friedrich_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1411264}}, {"model": "metainfo.source", "pk": 10300, "fields": {"orig_filename": "Lippich_Ferdinand_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 236f.", "author": "", "orig_id": 1411262}}, {"model": "metainfo.source", "pk": 10301, "fields": {"orig_filename": "Lippich_Franz-Wilhelm_1799_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237", "author": "", "orig_id": 1411263}}, {"model": "metainfo.source", "pk": 10302, "fields": {"orig_filename": "Lippitt_Mathilde-Maria-Floriana_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 237f.", "author": "", "orig_id": 1411265}}, {"model": "metainfo.source", "pk": 10303, "fields": {"orig_filename": "Lippmann_Edmund-Oscar_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 238", "author": "", "orig_id": 1411266}}, {"model": "metainfo.source", "pk": 10304, "fields": {"orig_filename": "Lippmann_Eduard_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 238f.", "author": "", "orig_id": 1411267}}, {"model": "metainfo.source", "pk": 10305, "fields": {"orig_filename": "Lippmann_Friedrich_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 239", "author": "", "orig_id": 1411268}}, {"model": "metainfo.source", "pk": 10306, "fields": {"orig_filename": "Lippowitz_Jakob_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 239", "author": "", "orig_id": 1411269}}, {"model": "metainfo.source", "pk": 10307, "fields": {"orig_filename": "Lipp_Eduard_1831_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 233f.", "author": "", "orig_id": 1411184}}, {"model": "metainfo.source", "pk": 10308, "fields": {"orig_filename": "Lipp_Vilmos_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 234", "author": "", "orig_id": 1411185}}, {"model": "metainfo.source", "pk": 10309, "fields": {"orig_filename": "Lipschuetz_Benjamin_1878_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411270}}, {"model": "metainfo.source", "pk": 10310, "fields": {"orig_filename": "Lipschuetz_Elieser-Meir_1879_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411271}}, {"model": "metainfo.source", "pk": 10311, "fields": {"orig_filename": "Lipschuetz_Leopold_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240", "author": "", "orig_id": 1411272}}, {"model": "metainfo.source", "pk": 10312, "fields": {"orig_filename": "Lipszky-Szedlicsna_Janos_1766_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 240f.", "author": "", "orig_id": 1411273}}, {"model": "metainfo.source", "pk": 10313, "fields": {"orig_filename": "Lipthay-Kisfalud_Antal_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241", "author": "", "orig_id": 1411274}}, {"model": "metainfo.source", "pk": 10314, "fields": {"orig_filename": "Lipthay-Kisfalud_Sandor_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241", "author": "", "orig_id": 1411275}}, {"model": "metainfo.source", "pk": 10315, "fields": {"orig_filename": "Lisinski_Vatroslav_1819_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 241f.", "author": "", "orig_id": 1411276}}, {"model": "metainfo.source", "pk": 10316, "fields": {"orig_filename": "Liska_Antonin_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242", "author": "", "orig_id": 1411277}}, {"model": "metainfo.source", "pk": 10317, "fields": {"orig_filename": "Liska_Emanuel-Krescenc_1852_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242", "author": "", "orig_id": 1411278}}, {"model": "metainfo.source", "pk": 10318, "fields": {"orig_filename": "Liske_Ksawery_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 242f.", "author": "", "orig_id": 1411279}}, {"model": "metainfo.source", "pk": 10319, "fields": {"orig_filename": "Lissauer_Ernst_1882_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243", "author": "", "orig_id": 1411281}}, {"model": "metainfo.source", "pk": 10320, "fields": {"orig_filename": "Lissa_Jakob__1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243", "author": "", "orig_id": 1411280}}, {"model": "metainfo.source", "pk": 10321, "fields": {"orig_filename": "Lissoni_Andrea_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 243f.", "author": "", "orig_id": 1411353}}, {"model": "metainfo.source", "pk": 10322, "fields": {"orig_filename": "Lissoni_Antonio_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244", "author": "", "orig_id": 1411354}}, {"model": "metainfo.source", "pk": 10323, "fields": {"orig_filename": "List_Camillo_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244", "author": "", "orig_id": 1411355}}, {"model": "metainfo.source", "pk": 10324, "fields": {"orig_filename": "List_Franz_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 244f.", "author": "", "orig_id": 1411356}}, {"model": "metainfo.source", "pk": 10325, "fields": {"orig_filename": "List_Guido_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 245", "author": "", "orig_id": 1411357}}, {"model": "metainfo.source", "pk": 10326, "fields": {"orig_filename": "List_Rosa_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 245", "author": "", "orig_id": 1411358}}, {"model": "metainfo.source", "pk": 10327, "fields": {"orig_filename": "List_Wilhelm_1864_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411359}}, {"model": "metainfo.source", "pk": 10328, "fields": {"orig_filename": "Liszkay_Gustav_1843_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411360}}, {"model": "metainfo.source", "pk": 10329, "fields": {"orig_filename": "Liszkay_Jozsef_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246", "author": "", "orig_id": 1411361}}, {"model": "metainfo.source", "pk": 10330, "fields": {"orig_filename": "Liszt_Anton-Joseph_1863_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 246f.", "author": "", "orig_id": 1411362}}, {"model": "metainfo.source", "pk": 10331, "fields": {"orig_filename": "Liszt_Eduard_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247", "author": "", "orig_id": 1411363}}, {"model": "metainfo.source", "pk": 10332, "fields": {"orig_filename": "Liszt_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f.", "author": "", "orig_id": 1411364}}, {"model": "metainfo.source", "pk": 10333, "fields": {"orig_filename": "Liszt_Franz_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 248f.", "author": "", "orig_id": 1411365}}, {"model": "metainfo.source", "pk": 10334, "fields": {"orig_filename": "Litschauer_Karl-Josef_1830_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249", "author": "", "orig_id": 1411366}}, {"model": "metainfo.source", "pk": 10335, "fields": {"orig_filename": "Litschauer_Lajos_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249", "author": "", "orig_id": 1416635}}, {"model": "metainfo.source", "pk": 10336, "fields": {"orig_filename": "Litschauer_Lajos_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 249f.", "author": "", "orig_id": 1411367}}, {"model": "metainfo.source", "pk": 10337, "fields": {"orig_filename": "Litta_Pompeo_1781_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250", "author": "", "orig_id": 1411368}}, {"model": "metainfo.source", "pk": 10338, "fields": {"orig_filename": "Littrow_Auguste_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 250f.", "author": "", "orig_id": 1411370}}, {"model": "metainfo.source", "pk": 10339, "fields": {"orig_filename": "Littrow_Franz_1821_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 251", "author": "", "orig_id": 1411371}}, {"model": "metainfo.source", "pk": 10340, "fields": {"orig_filename": "Lichtenstadt_Johann_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411990}}, {"model": "metainfo.source", "pk": 10341, "fields": {"orig_filename": "Lichtensteiner_Meinrad_1759_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411992}}, {"model": "metainfo.source", "pk": 10342, "fields": {"orig_filename": "Lichtenstein_Ferenc-Lajos_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411991}}, {"model": "metainfo.source", "pk": 10343, "fields": {"orig_filename": "Lichtenstern_Ludwig_1821_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 187", "author": "", "orig_id": 1411993}}, {"model": "metainfo.source", "pk": 10344, "fields": {"orig_filename": "Lichtenstern_Richard_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411994}}, {"model": "metainfo.source", "pk": 10345, "fields": {"orig_filename": "Lichtenstern_Wilhelm_1828_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411995}}, {"model": "metainfo.source", "pk": 10346, "fields": {"orig_filename": "Lichtenthal_Peter_1780_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188", "author": "", "orig_id": 1411996}}, {"model": "metainfo.source", "pk": 10347, "fields": {"orig_filename": "Lichtwitz_Leopold_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 188f.", "author": "", "orig_id": 1411997}}, {"model": "metainfo.source", "pk": 10348, "fields": {"orig_filename": "Licht_Ferdinand_1748_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183f.", "author": "", "orig_id": 1411905}}, {"model": "metainfo.source", "pk": 10349, "fields": {"orig_filename": "Licht_Stephan_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411906}}, {"model": "metainfo.source", "pk": 10350, "fields": {"orig_filename": "Lickl_Aegidius-Karl_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1411998}}, {"model": "metainfo.source", "pk": 10351, "fields": {"orig_filename": "Lickl_Johann-Georg_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1411999}}, {"model": "metainfo.source", "pk": 10352, "fields": {"orig_filename": "Lickl_Karl-Georg_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1412000}}, {"model": "metainfo.source", "pk": 10353, "fields": {"orig_filename": "Lidl_Johann_1787_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189", "author": "", "orig_id": 1412001}}, {"model": "metainfo.source", "pk": 10354, "fields": {"orig_filename": "Lidl_Josef_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 189f.", "author": "", "orig_id": 1412002}}, {"model": "metainfo.source", "pk": 10355, "fields": {"orig_filename": "Lidmansky_Adelbert-Josef_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412003}}, {"model": "metainfo.source", "pk": 10356, "fields": {"orig_filename": "Lieban_Julius_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190f.", "author": "", "orig_id": 1412006}}, {"model": "metainfo.source", "pk": 10357, "fields": {"orig_filename": "Liebbald_Beni_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412007}}, {"model": "metainfo.source", "pk": 10358, "fields": {"orig_filename": "Liebbald_Julius-Thomas_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412075}}, {"model": "metainfo.source", "pk": 10359, "fields": {"orig_filename": "Liebe-Kreutzner_Joseph_1830_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191", "author": "", "orig_id": 1412076}}, {"model": "metainfo.source", "pk": 10360, "fields": {"orig_filename": "Liebel_Ignaz_1754_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 191f.", "author": "", "orig_id": 1412077}}, {"model": "metainfo.source", "pk": 10361, "fields": {"orig_filename": "Liebenberg-Zsittin_Adolf_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 193f.", "author": "", "orig_id": 1412083}}, {"model": "metainfo.source", "pk": 10362, "fields": {"orig_filename": "Liebener-Monte-Cristallo_Leonhard_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194", "author": "", "orig_id": 1412084}}, {"model": "metainfo.source", "pk": 10363, "fields": {"orig_filename": "Liebenwein_Josef-Richard_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194", "author": "", "orig_id": 1412085}}, {"model": "metainfo.source", "pk": 10364, "fields": {"orig_filename": "Liebenwein_Maximilian_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 194f.", "author": "", "orig_id": 1412086}}, {"model": "metainfo.source", "pk": 10365, "fields": {"orig_filename": "Lieben_Adolf_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412078}}, {"model": "metainfo.source", "pk": 10366, "fields": {"orig_filename": "Lieben_Koppelmann_1812_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412079}}, {"model": "metainfo.source", "pk": 10367, "fields": {"orig_filename": "Lieben_Leopold_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 192", "author": "", "orig_id": 1412080}}, {"model": "metainfo.source", "pk": 10368, "fields": {"orig_filename": "Lieben_Robert_1878_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 193", "author": "", "orig_id": 1412081}}, {"model": "metainfo.source", "pk": 10369, "fields": {"orig_filename": "Lieben_Salomon-Hugo_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 193", "author": "", "orig_id": 1412082}}, {"model": "metainfo.source", "pk": 10370, "fields": {"orig_filename": "Liebermann-Szentloerinc_Leo_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 196", "author": "", "orig_id": 1412090}}, {"model": "metainfo.source", "pk": 10371, "fields": {"orig_filename": "Liebermann_Herman_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195f.", "author": "", "orig_id": 1412089}}, {"model": "metainfo.source", "pk": 10372, "fields": {"orig_filename": "Liebert_Franz_1814_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 196f.", "author": "", "orig_id": 1412091}}, {"model": "metainfo.source", "pk": 10373, "fields": {"orig_filename": "Lieberzeit_Anna_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412092}}, {"model": "metainfo.source", "pk": 10374, "fields": {"orig_filename": "Lieber_August_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195", "author": "", "orig_id": 1412087}}, {"model": "metainfo.source", "pk": 10375, "fields": {"orig_filename": "Lieber_Georg-Diethelm_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 195", "author": "", "orig_id": 1412088}}, {"model": "metainfo.source", "pk": 10376, "fields": {"orig_filename": "Liebhardt_Ida_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412093}}, {"model": "metainfo.source", "pk": 10377, "fields": {"orig_filename": "Liebhardt_Ignaz_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412094}}, {"model": "metainfo.source", "pk": 10378, "fields": {"orig_filename": "Liebhardt_Luise_1828_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197", "author": "", "orig_id": 1412095}}, {"model": "metainfo.source", "pk": 10379, "fields": {"orig_filename": "Liebich_Christoph_1783_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 197f.", "author": "", "orig_id": 1412096}}, {"model": "metainfo.source", "pk": 10380, "fields": {"orig_filename": "Liebich_Johann-Carl_1773_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198", "author": "", "orig_id": 1412097}}, {"model": "metainfo.source", "pk": 10381, "fields": {"orig_filename": "Liebieg_Franz_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198", "author": "", "orig_id": 1412099}}, {"model": "metainfo.source", "pk": 10382, "fields": {"orig_filename": "Liebieg_Franz_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 198f.", "author": "", "orig_id": 1412176}}, {"model": "metainfo.source", "pk": 10383, "fields": {"orig_filename": "Liebieg_Heinrich_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199", "author": "", "orig_id": 1412098}}, {"model": "metainfo.source", "pk": 10384, "fields": {"orig_filename": "Liebieg_Johann_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199", "author": "", "orig_id": 1412177}}, {"model": "metainfo.source", "pk": 10385, "fields": {"orig_filename": "Liebisch_Joachim_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 199f.", "author": "", "orig_id": 1412178}}, {"model": "metainfo.source", "pk": 10386, "fields": {"orig_filename": "Liebisch_Rudolf_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412179}}, {"model": "metainfo.source", "pk": 10387, "fields": {"orig_filename": "Liebleitner_Karl_1858_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200f.", "author": "", "orig_id": 1412182}}, {"model": "metainfo.source", "pk": 10388, "fields": {"orig_filename": "Liebl_Franz-Alois_1760_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412180}}, {"model": "metainfo.source", "pk": 10389, "fields": {"orig_filename": "Liebl_Hans_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 200", "author": "", "orig_id": 1412181}}, {"model": "metainfo.source", "pk": 10390, "fields": {"orig_filename": "Liebscher_Adolf_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412183}}, {"model": "metainfo.source", "pk": 10391, "fields": {"orig_filename": "Liebscher_Karel_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412184}}, {"model": "metainfo.source", "pk": 10392, "fields": {"orig_filename": "Liebstoeckl_Hans_1872_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201", "author": "", "orig_id": 1412185}}, {"model": "metainfo.source", "pk": 10393, "fields": {"orig_filename": "Liebus_Adalbert_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 201f.", "author": "", "orig_id": 1412186}}, {"model": "metainfo.source", "pk": 10394, "fields": {"orig_filename": "Lieb_Josef_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412004}}, {"model": "metainfo.source", "pk": 10395, "fields": {"orig_filename": "Lieb_Leopold_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 190", "author": "", "orig_id": 1412005}}, {"model": "metainfo.source", "pk": 10396, "fields": {"orig_filename": "Liechtenberg-Mordaxt-Schneeberg_Arthur_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202", "author": "", "orig_id": 1412187}}, {"model": "metainfo.source", "pk": 10397, "fields": {"orig_filename": "Liechtenberg-Schneeberg_Nikolaus_1789_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202", "author": "", "orig_id": 1412188}}, {"model": "metainfo.source", "pk": 10398, "fields": {"orig_filename": "Liechtenstein_Alfred_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 202f.", "author": "", "orig_id": 1412189}}, {"model": "metainfo.source", "pk": 10399, "fields": {"orig_filename": "Liechtenstein_Aloys_1796_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 203", "author": "", "orig_id": 1412190}}, {"model": "metainfo.source", "pk": 10400, "fields": {"orig_filename": "Liechtenstein_Aloys_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 203f.", "author": "", "orig_id": 1412191}}, {"model": "metainfo.source", "pk": 10401, "fields": {"orig_filename": "Liechtenstein_Franz_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 204", "author": "", "orig_id": 1412192}}, {"model": "metainfo.source", "pk": 10402, "fields": {"orig_filename": "Liechtenstein_Franz_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 204f.", "author": "", "orig_id": 1412193}}, {"model": "metainfo.source", "pk": 10403, "fields": {"orig_filename": "Liechtenstein_Friedrich_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 205", "author": "", "orig_id": 1412194}}, {"model": "metainfo.source", "pk": 10404, "fields": {"orig_filename": "Liechtenstein_Johann_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 205f.", "author": "", "orig_id": 1412195}}, {"model": "metainfo.source", "pk": 10405, "fields": {"orig_filename": "Liechtenstein_Karl_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 206", "author": "", "orig_id": 1412196}}, {"model": "metainfo.source", "pk": 10406, "fields": {"orig_filename": "Liechtenstein_Rudolf_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 206f.", "author": "", "orig_id": 1412197}}, {"model": "metainfo.source", "pk": 10407, "fields": {"orig_filename": "Liechtenstern_Joseph-Marx_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207", "author": "", "orig_id": 1412268}}, {"model": "metainfo.source", "pk": 10408, "fields": {"orig_filename": "Liedeck_Georg_1882_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207", "author": "", "orig_id": 1412269}}, {"model": "metainfo.source", "pk": 10409, "fields": {"orig_filename": "Liedemann_Martin_1767_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 207f.", "author": "", "orig_id": 1412270}}, {"model": "metainfo.source", "pk": 10410, "fields": {"orig_filename": "Lieder_Friedrich-Johann-Gottlieb_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1412271}}, {"model": "metainfo.source", "pk": 10411, "fields": {"orig_filename": "Liedtke_Marie_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1412272}}, {"model": "metainfo.source", "pk": 10412, "fields": {"orig_filename": "Liegel_Emanuel_1859_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208", "author": "", "orig_id": 1416636}}, {"model": "metainfo.source", "pk": 10413, "fields": {"orig_filename": "Liegel_Georg_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 208f.", "author": "", "orig_id": 1412273}}, {"model": "metainfo.source", "pk": 10414, "fields": {"orig_filename": "Lieger_Paulus_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209", "author": "", "orig_id": 1412274}}, {"model": "metainfo.source", "pk": 10415, "fields": {"orig_filename": "Liegler_Leopold_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209", "author": "", "orig_id": 1412275}}, {"model": "metainfo.source", "pk": 10416, "fields": {"orig_filename": "Lielegg_Andreas_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 209f.", "author": "", "orig_id": 1412276}}, {"model": "metainfo.source", "pk": 10417, "fields": {"orig_filename": "Lienbacher_Georg_1822_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412277}}, {"model": "metainfo.source", "pk": 10418, "fields": {"orig_filename": "Lienbacher_Matthias_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412278}}, {"model": "metainfo.source", "pk": 10419, "fields": {"orig_filename": "Lierheimer_Bernhard_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412280}}, {"model": "metainfo.source", "pk": 10420, "fields": {"orig_filename": "Lier_Jan_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 210", "author": "", "orig_id": 1412279}}, {"model": "metainfo.source", "pk": 10421, "fields": {"orig_filename": "Lieschnigg_Karl_1871_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412281}}, {"model": "metainfo.source", "pk": 10422, "fields": {"orig_filename": "Liewehr_Fred_1909_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426543}}, {"model": "metainfo.source", "pk": 10423, "fields": {"orig_filename": "Liezen-Mayer_Sandor_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412282}}, {"model": "metainfo.source", "pk": 10424, "fields": {"orig_filename": "Liftl_Franz_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211", "author": "", "orig_id": 1412283}}, {"model": "metainfo.source", "pk": 10425, "fields": {"orig_filename": "Ligeti_Antal_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 211f.", "author": "", "orig_id": 1412284}}, {"model": "metainfo.source", "pk": 10426, "fields": {"orig_filename": "Ligges_Georg_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412285}}, {"model": "metainfo.source", "pk": 10427, "fields": {"orig_filename": "Liharzik_Franz_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412286}}, {"model": "metainfo.source", "pk": 10428, "fields": {"orig_filename": "Liharzik_Franz_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212", "author": "", "orig_id": 1412287}}, {"model": "metainfo.source", "pk": 10429, "fields": {"orig_filename": "Lihotzky_Erwin_1887_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 212f.", "author": "", "orig_id": 1412288}}, {"model": "metainfo.source", "pk": 10430, "fields": {"orig_filename": "Likavetz_Joseph-Kal_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213", "author": "", "orig_id": 1412289}}, {"model": "metainfo.source", "pk": 10431, "fields": {"orig_filename": "Likoser-Sprengbrueck_Josef_1839_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213", "author": "", "orig_id": 1412290}}, {"model": "metainfo.source", "pk": 10432, "fields": {"orig_filename": "Lilek_Emilijan_1851_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 213f.", "author": "", "orig_id": 1412291}}, {"model": "metainfo.source", "pk": 10433, "fields": {"orig_filename": "Lilia-Westegg_Karl_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412292}}, {"model": "metainfo.source", "pk": 10434, "fields": {"orig_filename": "Lilien_Efraim_1874_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412364}}, {"model": "metainfo.source", "pk": 10435, "fields": {"orig_filename": "Lilien_Maximilian_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412365}}, {"model": "metainfo.source", "pk": 10436, "fields": {"orig_filename": "Lilie_Adolf_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214", "author": "", "orig_id": 1412363}}, {"model": "metainfo.source", "pk": 10437, "fields": {"orig_filename": "Lill-Lilienbach_Karl_1798_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 215", "author": "", "orig_id": 1412367}}, {"model": "metainfo.source", "pk": 10438, "fields": {"orig_filename": "Lill_Eduard_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 214f.", "author": "", "orig_id": 1412366}}, {"model": "metainfo.source", "pk": 10439, "fields": {"orig_filename": "Limanowski_Boleslaw_1835_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 215f.", "author": "", "orig_id": 1412368}}, {"model": "metainfo.source", "pk": 10440, "fields": {"orig_filename": "Limbacher_Rudolf_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412369}}, {"model": "metainfo.source", "pk": 10441, "fields": {"orig_filename": "Limbeck-Lilienau_Max_1865_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412370}}, {"model": "metainfo.source", "pk": 10442, "fields": {"orig_filename": "Limbeck-Lilienau_Rudolf_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 216", "author": "", "orig_id": 1412371}}, {"model": "metainfo.source", "pk": 10443, "fields": {"orig_filename": "Leseticky_Vojtech_1830_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155", "author": "", "orig_id": 1412972}}, {"model": "metainfo.source", "pk": 10444, "fields": {"orig_filename": "Lesic_Matilda_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155", "author": "", "orig_id": 1412973}}, {"model": "metainfo.source", "pk": 10445, "fields": {"orig_filename": "Lesic_Toso_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 155f.", "author": "", "orig_id": 1412974}}, {"model": "metainfo.source", "pk": 10446, "fields": {"orig_filename": "Leska_Stepan_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156", "author": "", "orig_id": 1412975}}, {"model": "metainfo.source", "pk": 10447, "fields": {"orig_filename": "Leskovar_Janko_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156", "author": "", "orig_id": 1412976}}, {"model": "metainfo.source", "pk": 10448, "fields": {"orig_filename": "Leskovec_Anton_1891_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 156f.", "author": "", "orig_id": 1412977}}, {"model": "metainfo.source", "pk": 10449, "fields": {"orig_filename": "Lesonitzky_Otto_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412978}}, {"model": "metainfo.source", "pk": 10450, "fields": {"orig_filename": "Lessel_Franciszek_1780_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412979}}, {"model": "metainfo.source", "pk": 10451, "fields": {"orig_filename": "Lessenyey_Franz_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157", "author": "", "orig_id": 1412980}}, {"model": "metainfo.source", "pk": 10452, "fields": {"orig_filename": "Lessiak_Primus_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 157f.", "author": "", "orig_id": 1412981}}, {"model": "metainfo.source", "pk": 10453, "fields": {"orig_filename": "Lestocq_Hermann_1887_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158", "author": "", "orig_id": 1412982}}, {"model": "metainfo.source", "pk": 10454, "fields": {"orig_filename": "Leszai-Fogaras_Daniel_1798_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158", "author": "", "orig_id": 1412983}}, {"model": "metainfo.source", "pk": 10455, "fields": {"orig_filename": "Leth_Julius-Johann-Bapt_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 158f.", "author": "", "orig_id": 1412984}}, {"model": "metainfo.source", "pk": 10456, "fields": {"orig_filename": "Leth_Karl_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411615}}, {"model": "metainfo.source", "pk": 10457, "fields": {"orig_filename": "Letowski_Ludwik_1786_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411616}}, {"model": "metainfo.source", "pk": 10458, "fields": {"orig_filename": "Letsch_Louis_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159", "author": "", "orig_id": 1411617}}, {"model": "metainfo.source", "pk": 10459, "fields": {"orig_filename": "Letteris_Meirha-Levi_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 159f.", "author": "", "orig_id": 1411618}}, {"model": "metainfo.source", "pk": 10460, "fields": {"orig_filename": "Leuchert_Eduard_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 160", "author": "", "orig_id": 1411619}}, {"model": "metainfo.source", "pk": 10461, "fields": {"orig_filename": "Leuchs_Kurt_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 160f.", "author": "", "orig_id": 1411620}}, {"model": "metainfo.source", "pk": 10462, "fields": {"orig_filename": "Leutelt_Gustav_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 161", "author": "", "orig_id": 1411621}}, {"model": "metainfo.source", "pk": 10463, "fields": {"orig_filename": "Leutner_Karl_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 161f.", "author": "", "orig_id": 1411622}}, {"model": "metainfo.source", "pk": 10464, "fields": {"orig_filename": "Leuzendorf-Campo-Santa-Lucia_Arthur_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411623}}, {"model": "metainfo.source", "pk": 10465, "fields": {"orig_filename": "Levar_Ivan_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411624}}, {"model": "metainfo.source", "pk": 10466, "fields": {"orig_filename": "Levati_Ambrogio_1790_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162", "author": "", "orig_id": 1411625}}, {"model": "metainfo.source", "pk": 10467, "fields": {"orig_filename": "Levay-Kistelek_Henrik_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163f.", "author": "", "orig_id": 1411630}}, {"model": "metainfo.source", "pk": 10468, "fields": {"orig_filename": "Levay-Kistelek_Lajos_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 164", "author": "", "orig_id": 1411631}}, {"model": "metainfo.source", "pk": 10469, "fields": {"orig_filename": "Levay_Imre_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 162f.", "author": "", "orig_id": 1411626}}, {"model": "metainfo.source", "pk": 10470, "fields": {"orig_filename": "Levay_Jozsef_1825_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411627}}, {"model": "metainfo.source", "pk": 10471, "fields": {"orig_filename": "Levay_Lajos_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411628}}, {"model": "metainfo.source", "pk": 10472, "fields": {"orig_filename": "Levay_Mihaly_1862_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 163", "author": "", "orig_id": 1411629}}, {"model": "metainfo.source", "pk": 10473, "fields": {"orig_filename": "Levec_Fran_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 164", "author": "", "orig_id": 1411632}}, {"model": "metainfo.source", "pk": 10474, "fields": {"orig_filename": "Levetzow_Karl-Michael_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411634}}, {"model": "metainfo.source", "pk": 10475, "fields": {"orig_filename": "Levi-Civita_Giacomo_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411705}}, {"model": "metainfo.source", "pk": 10476, "fields": {"orig_filename": "Levicnik_Jernej_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411706}}, {"model": "metainfo.source", "pk": 10477, "fields": {"orig_filename": "Levicnik_Jozef_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166", "author": "", "orig_id": 1411707}}, {"model": "metainfo.source", "pk": 10478, "fields": {"orig_filename": "Levitschnigg-Glomberg_Heinrich_1810_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 166f.", "author": "", "orig_id": 1411708}}, {"model": "metainfo.source", "pk": 10479, "fields": {"orig_filename": "Levi_Angelo_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411635}}, {"model": "metainfo.source", "pk": 10480, "fields": {"orig_filename": "Levi_Moise-Giuseppe_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165", "author": "", "orig_id": 1411703}}, {"model": "metainfo.source", "pk": 10481, "fields": {"orig_filename": "Levi_Samuele__1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 165f.", "author": "", "orig_id": 1411704}}, {"model": "metainfo.source", "pk": 10482, "fields": {"orig_filename": "Levnaic-Iwanski-Iwanina_Nikolaus_1882_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 167", "author": "", "orig_id": 1411709}}, {"model": "metainfo.source", "pk": 10483, "fields": {"orig_filename": "Levstik_Fran_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 167f.", "author": "", "orig_id": 1411710}}, {"model": "metainfo.source", "pk": 10484, "fields": {"orig_filename": "Levyckyj_Josyp_1801_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411713}}, {"model": "metainfo.source", "pk": 10485, "fields": {"orig_filename": "Levyckyj_Volodymyr_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411714}}, {"model": "metainfo.source", "pk": 10486, "fields": {"orig_filename": "Levy_Louis-Eduard_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 168", "author": "", "orig_id": 1411711}}, {"model": "metainfo.source", "pk": 10487, "fields": {"orig_filename": "Levy_Vaclav_1820_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 168f.", "author": "", "orig_id": 1411712}}, {"model": "metainfo.source", "pk": 10488, "fields": {"orig_filename": "Lewandowski_Rudolf_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169", "author": "", "orig_id": 1411715}}, {"model": "metainfo.source", "pk": 10489, "fields": {"orig_filename": "Lewandowski_Stanislaus-Roman_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 169f.", "author": "", "orig_id": 1411716}}, {"model": "metainfo.source", "pk": 10490, "fields": {"orig_filename": "Lewartow-Lewartowski_Heinrich_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411717}}, {"model": "metainfo.source", "pk": 10491, "fields": {"orig_filename": "Lewicki_Anatol_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411718}}, {"model": "metainfo.source", "pk": 10492, "fields": {"orig_filename": "Lewicki_Antoni_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 170", "author": "", "orig_id": 1411719}}, {"model": "metainfo.source", "pk": 10493, "fields": {"orig_filename": "Lewicki_Leonidas_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411720}}, {"model": "metainfo.source", "pk": 10494, "fields": {"orig_filename": "Lewicki_Michael_1774_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411721}}, {"model": "metainfo.source", "pk": 10495, "fields": {"orig_filename": "Lewinger_Ernst_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171f.", "author": "", "orig_id": 1411723}}, {"model": "metainfo.source", "pk": 10496, "fields": {"orig_filename": "Lewinsky-Precheisen_Olga_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173", "author": "", "orig_id": 1411794}}, {"model": "metainfo.source", "pk": 10497, "fields": {"orig_filename": "Lewinsky_Josef_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 172", "author": "", "orig_id": 1411724}}, {"model": "metainfo.source", "pk": 10498, "fields": {"orig_filename": "Lewinsky_Josef_1839_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 172f.", "author": "", "orig_id": 1411793}}, {"model": "metainfo.source", "pk": 10499, "fields": {"orig_filename": "Lewin_Jakab_1828_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 171", "author": "", "orig_id": 1411722}}, {"model": "metainfo.source", "pk": 10500, "fields": {"orig_filename": "Lewohl_Karl_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173", "author": "", "orig_id": 1411795}}, {"model": "metainfo.source", "pk": 10501, "fields": {"orig_filename": "Lewy_Eduard-Constantin_1796_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411797}}, {"model": "metainfo.source", "pk": 10502, "fields": {"orig_filename": "Lewy_Eduard_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 173f.", "author": "", "orig_id": 1411796}}, {"model": "metainfo.source", "pk": 10503, "fields": {"orig_filename": "Lewy_Gustav_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411798}}, {"model": "metainfo.source", "pk": 10504, "fields": {"orig_filename": "Lexa-Aehrenthal_Johann-Bapt_1777_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175", "author": "", "orig_id": 1411803}}, {"model": "metainfo.source", "pk": 10505, "fields": {"orig_filename": "Lexa_Josef_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174f.", "author": "", "orig_id": 1411801}}, {"model": "metainfo.source", "pk": 10506, "fields": {"orig_filename": "Lexer_Matthias_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175", "author": "", "orig_id": 1411804}}, {"model": "metainfo.source", "pk": 10507, "fields": {"orig_filename": "Lex_Franz_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411799}}, {"model": "metainfo.source", "pk": 10508, "fields": {"orig_filename": "Lex_Gabriel_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 174", "author": "", "orig_id": 1411800}}, {"model": "metainfo.source", "pk": 10509, "fields": {"orig_filename": "Leybold_Eduard-Friedrich_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411806}}, {"model": "metainfo.source", "pk": 10510, "fields": {"orig_filename": "Leybold_Johann-Friedrich_1755_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176", "author": "", "orig_id": 1411808}}, {"model": "metainfo.source", "pk": 10511, "fields": {"orig_filename": "Leybold_Karl-Jakob-Theodor_1786_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 176f.", "author": "", "orig_id": 1411809}}, {"model": "metainfo.source", "pk": 10512, "fields": {"orig_filename": "Leybold_Rudolf-Moritz_1806_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177", "author": "", "orig_id": 1411810}}, {"model": "metainfo.source", "pk": 10513, "fields": {"orig_filename": "Leydolt_Franz_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177", "author": "", "orig_id": 1411811}}, {"model": "metainfo.source", "pk": 10514, "fields": {"orig_filename": "Leykam_Anatol_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 177f.", "author": "", "orig_id": 1411812}}, {"model": "metainfo.source", "pk": 10515, "fields": {"orig_filename": "Leykam_Andreas_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411813}}, {"model": "metainfo.source", "pk": 10516, "fields": {"orig_filename": "Leyrer_Rudolf_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411814}}, {"model": "metainfo.source", "pk": 10517, "fields": {"orig_filename": "Ley_Erhard_1753_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 175f.", "author": "", "orig_id": 1411805}}, {"model": "metainfo.source", "pk": 10518, "fields": {"orig_filename": "Lhota_Antonin_1812_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 178", "author": "", "orig_id": 1411815}}, {"model": "metainfo.source", "pk": 10519, "fields": {"orig_filename": "Lhota_Jan-Nep_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179", "author": "", "orig_id": 1411816}}, {"model": "metainfo.source", "pk": 10520, "fields": {"orig_filename": "Lhotsky_Bohuslav_1879_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179", "author": "", "orig_id": 1411817}}, {"model": "metainfo.source", "pk": 10521, "fields": {"orig_filename": "Lhotsky_Jan_1800_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 179f.", "author": "", "orig_id": 1411818}}, {"model": "metainfo.source", "pk": 10522, "fields": {"orig_filename": "Lhotzky_Alphons_1867_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411890}}, {"model": "metainfo.source", "pk": 10523, "fields": {"orig_filename": "Libansky_Josef_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411891}}, {"model": "metainfo.source", "pk": 10524, "fields": {"orig_filename": "Libay_Karoly-Lajos_1816_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180", "author": "", "orig_id": 1411892}}, {"model": "metainfo.source", "pk": 10525, "fields": {"orig_filename": "Libay_Samuel_1782_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 180f.", "author": "", "orig_id": 1411893}}, {"model": "metainfo.source", "pk": 10526, "fields": {"orig_filename": "Libenyi_Janos_1831_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411894}}, {"model": "metainfo.source", "pk": 10527, "fields": {"orig_filename": "Liberali_Giulio-Angelo_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411896}}, {"model": "metainfo.source", "pk": 10528, "fields": {"orig_filename": "Libera_Anna-Barbara_1805_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411895}}, {"model": "metainfo.source", "pk": 10529, "fields": {"orig_filename": "Libesny_Kurt_1892_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 181", "author": "", "orig_id": 1411897}}, {"model": "metainfo.source", "pk": 10530, "fields": {"orig_filename": "Libitzky_Leopold_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411898}}, {"model": "metainfo.source", "pk": 10531, "fields": {"orig_filename": "Lichard_Daniel_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411899}}, {"model": "metainfo.source", "pk": 10532, "fields": {"orig_filename": "Lichard_Milan_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182", "author": "", "orig_id": 1411900}}, {"model": "metainfo.source", "pk": 10533, "fields": {"orig_filename": "Lichner_Pal_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 182f.", "author": "", "orig_id": 1411901}}, {"model": "metainfo.source", "pk": 10534, "fields": {"orig_filename": "Lichnowsky_Eduard-Maria_1789_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183", "author": "", "orig_id": 1411903}}, {"model": "metainfo.source", "pk": 10535, "fields": {"orig_filename": "Lichnowsky_Wilhelm_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 183", "author": "", "orig_id": 1411904}}, {"model": "metainfo.source", "pk": 10536, "fields": {"orig_filename": "Lichtblau_Stephan_1753_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411909}}, {"model": "metainfo.source", "pk": 10537, "fields": {"orig_filename": "Lichtenberg_Emil_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411910}}, {"model": "metainfo.source", "pk": 10538, "fields": {"orig_filename": "Lichtenberg_Reinhold_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185", "author": "", "orig_id": 1411985}}, {"model": "metainfo.source", "pk": 10539, "fields": {"orig_filename": "Lichtenecker_Karl_1882_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 185f.", "author": "", "orig_id": 1411986}}, {"model": "metainfo.source", "pk": 10540, "fields": {"orig_filename": "Lichtenecker_Norbert_1897_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411987}}, {"model": "metainfo.source", "pk": 10541, "fields": {"orig_filename": "Lichtenegger_Sepp_1909_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411988}}, {"model": "metainfo.source", "pk": 10542, "fields": {"orig_filename": "Lichtenheld_Adolf_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 186", "author": "", "orig_id": 1411989}}, {"model": "metainfo.source", "pk": 10543, "fields": {"orig_filename": "Lemach_Anton-Karl_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122f.", "author": "", "orig_id": 1412508}}, {"model": "metainfo.source", "pk": 10544, "fields": {"orig_filename": "Lemaic-Pasan-Brdo_Georg_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123", "author": "", "orig_id": 1412509}}, {"model": "metainfo.source", "pk": 10545, "fields": {"orig_filename": "Lemayer_Karl_1841_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123", "author": "", "orig_id": 1412510}}, {"model": "metainfo.source", "pk": 10546, "fields": {"orig_filename": "Lemberger_Heinrich_1813_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124", "author": "", "orig_id": 1412512}}, {"model": "metainfo.source", "pk": 10547, "fields": {"orig_filename": "Lemberg_Eduard_1832_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 123f.", "author": "", "orig_id": 1412511}}, {"model": "metainfo.source", "pk": 10548, "fields": {"orig_filename": "Lemmermayer_Fritz_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124", "author": "", "orig_id": 1412513}}, {"model": "metainfo.source", "pk": 10549, "fields": {"orig_filename": "Lemoch_Ignaz_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 124f.", "author": "", "orig_id": 1412514}}, {"model": "metainfo.source", "pk": 10550, "fields": {"orig_filename": "Lemoch_Johann-Nep_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412515}}, {"model": "metainfo.source", "pk": 10551, "fields": {"orig_filename": "Lemoch_Josef_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412516}}, {"model": "metainfo.source", "pk": 10552, "fields": {"orig_filename": "Lemoch_Vincenz_1792_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412517}}, {"model": "metainfo.source", "pk": 10553, "fields": {"orig_filename": "Lemonnier_Anton_1819_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 125", "author": "", "orig_id": 1412518}}, {"model": "metainfo.source", "pk": 10554, "fields": {"orig_filename": "Lemonnier_Theodor_1826_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412519}}, {"model": "metainfo.source", "pk": 10555, "fields": {"orig_filename": "Lempicki_Zygmunt_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412520}}, {"model": "metainfo.source", "pk": 10556, "fields": {"orig_filename": "Lenarcic_Andrija_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 126", "author": "", "orig_id": 1412521}}, {"model": "metainfo.source", "pk": 10557, "fields": {"orig_filename": "Lenard_Philipp-Eduard-Anton_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 127", "author": "", "orig_id": 1412522}}, {"model": "metainfo.source", "pk": 10558, "fields": {"orig_filename": "Lencses_Antal-Jozsef_1797_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 127f.", "author": "", "orig_id": 1412594}}, {"model": "metainfo.source", "pk": 10559, "fields": {"orig_filename": "Lencz_Oedoen_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128", "author": "", "orig_id": 1412595}}, {"model": "metainfo.source", "pk": 10560, "fields": {"orig_filename": "Lendecke_Gustav_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128", "author": "", "orig_id": 1412596}}, {"model": "metainfo.source", "pk": 10561, "fields": {"orig_filename": "Lendlmayer-Lendenfeld_Robert_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 129", "author": "", "orig_id": 1412598}}, {"model": "metainfo.source", "pk": 10562, "fields": {"orig_filename": "Lendl_Adolf_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 128f.", "author": "", "orig_id": 1412597}}, {"model": "metainfo.source", "pk": 10563, "fields": {"orig_filename": "Lendovsek_Josip_1854_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 129f.", "author": "", "orig_id": 1412599}}, {"model": "metainfo.source", "pk": 10564, "fields": {"orig_filename": "Lendovsek_Mihael_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130", "author": "", "orig_id": 1412600}}, {"model": "metainfo.source", "pk": 10565, "fields": {"orig_filename": "Lendvai_Erwin_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130", "author": "", "orig_id": 1412601}}, {"model": "metainfo.source", "pk": 10566, "fields": {"orig_filename": "Lendvay-Fancsy_Ilka_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412606}}, {"model": "metainfo.source", "pk": 10567, "fields": {"orig_filename": "Lendvay-Hivatal_Aniko_1814_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412607}}, {"model": "metainfo.source", "pk": 10568, "fields": {"orig_filename": "Lendvay_Benoe_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 130f.", "author": "", "orig_id": 1412602}}, {"model": "metainfo.source", "pk": 10569, "fields": {"orig_filename": "Lendvay_Marton_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412603}}, {"model": "metainfo.source", "pk": 10570, "fields": {"orig_filename": "Lendvay_Marton_1830_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131", "author": "", "orig_id": 1412605}}, {"model": "metainfo.source", "pk": 10571, "fields": {"orig_filename": "Lenecek_Ottokar_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 131f.", "author": "", "orig_id": 1412608}}, {"model": "metainfo.source", "pk": 10572, "fields": {"orig_filename": "Lener_Josef_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412609}}, {"model": "metainfo.source", "pk": 10573, "fields": {"orig_filename": "Lener_Justinian_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412610}}, {"model": "metainfo.source", "pk": 10574, "fields": {"orig_filename": "Lengnick_Artur_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412611}}, {"model": "metainfo.source", "pk": 10575, "fields": {"orig_filename": "Lengsteiner_Josef_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132", "author": "", "orig_id": 1412612}}, {"model": "metainfo.source", "pk": 10576, "fields": {"orig_filename": "Lengyel-Ebesfalva_Bela_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133", "author": "", "orig_id": 1412614}}, {"model": "metainfo.source", "pk": 10577, "fields": {"orig_filename": "Lengyel-Szakallosfalva_Nikolaus_1802_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133", "author": "", "orig_id": 1412615}}, {"model": "metainfo.source", "pk": 10578, "fields": {"orig_filename": "Lengyel_Jozsef_1770_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 132f.", "author": "", "orig_id": 1412613}}, {"model": "metainfo.source", "pk": 10579, "fields": {"orig_filename": "Lenhard_Johann_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 133f.", "author": "", "orig_id": 1412682}}, {"model": "metainfo.source", "pk": 10580, "fields": {"orig_filename": "Lenhossek_Jozsef_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 134", "author": "", "orig_id": 1412684}}, {"model": "metainfo.source", "pk": 10581, "fields": {"orig_filename": "Lenhossek_Mihaly_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 134", "author": "", "orig_id": 1412685}}, {"model": "metainfo.source", "pk": 10582, "fields": {"orig_filename": "Lenisch_Johanna_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412687}}, {"model": "metainfo.source", "pk": 10583, "fields": {"orig_filename": "Lenk-Burgheim-Gansheim_Heinrich_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412689}}, {"model": "metainfo.source", "pk": 10584, "fields": {"orig_filename": "Lenk-Treuenfeld_Ignaz_1766_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135f.", "author": "", "orig_id": 1412690}}, {"model": "metainfo.source", "pk": 10585, "fields": {"orig_filename": "Lenk-Wolfsberg_Rudolf_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136", "author": "", "orig_id": 1412691}}, {"model": "metainfo.source", "pk": 10586, "fields": {"orig_filename": "Lenk-Wolfsberg_Wilhelm_1809_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136", "author": "", "orig_id": 1412692}}, {"model": "metainfo.source", "pk": 10587, "fields": {"orig_filename": "Lenkei_Samuel_1825_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 136f.", "author": "", "orig_id": 1412693}}, {"model": "metainfo.source", "pk": 10588, "fields": {"orig_filename": "Lenkey_Janos_1807_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137", "author": "", "orig_id": 1412694}}, {"model": "metainfo.source", "pk": 10589, "fields": {"orig_filename": "Lenk_Friedrich-Andreas_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412688}}, {"model": "metainfo.source", "pk": 10590, "fields": {"orig_filename": "Lenoble-Edlersberg_Josef_1749_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137", "author": "", "orig_id": 1412695}}, {"model": "metainfo.source", "pk": 10591, "fields": {"orig_filename": "Lentl_Johann-Nep_1756_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 137f.", "author": "", "orig_id": 1412696}}, {"model": "metainfo.source", "pk": 10592, "fields": {"orig_filename": "Lentner_Ferdinand_1840_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 138", "author": "", "orig_id": 1412697}}, {"model": "metainfo.source", "pk": 10593, "fields": {"orig_filename": "Lentner_Josef-Friedrich_1814_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 138", "author": "", "orig_id": 1412698}}, {"model": "metainfo.source", "pk": 10594, "fields": {"orig_filename": "Lentulaj_Mirko_1774_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1412699}}, {"model": "metainfo.source", "pk": 10595, "fields": {"orig_filename": "Lenz_Alfred_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1416077}}, {"model": "metainfo.source", "pk": 10596, "fields": {"orig_filename": "Lenz_Antonin_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139", "author": "", "orig_id": 1412700}}, {"model": "metainfo.source", "pk": 10597, "fields": {"orig_filename": "Lenz_Maximilian_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 139f.", "author": "", "orig_id": 1412701}}, {"model": "metainfo.source", "pk": 10598, "fields": {"orig_filename": "Lenz_Oskar_1848_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 140", "author": "", "orig_id": 1412702}}, {"model": "metainfo.source", "pk": 10599, "fields": {"orig_filename": "Leobner_Heinrich_1860_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412704}}, {"model": "metainfo.source", "pk": 10600, "fields": {"orig_filename": "Leonardi_Giuseppe_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412786}}, {"model": "metainfo.source", "pk": 10601, "fields": {"orig_filename": "Leonardi_Pietro_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412787}}, {"model": "metainfo.source", "pk": 10602, "fields": {"orig_filename": "Leonhardt_Andreas_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144", "author": "", "orig_id": 1412790}}, {"model": "metainfo.source", "pk": 10603, "fields": {"orig_filename": "Leonhardt_Gustav_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144", "author": "", "orig_id": 1412791}}, {"model": "metainfo.source", "pk": 10604, "fields": {"orig_filename": "Leonhardt_Johann_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 144f.", "author": "", "orig_id": 1412792}}, {"model": "metainfo.source", "pk": 10605, "fields": {"orig_filename": "Leonhard_Daniel-Joseph_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143", "author": "", "orig_id": 1412788}}, {"model": "metainfo.source", "pk": 10606, "fields": {"orig_filename": "Leonhard_Johann-Michael_1782_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 143f.", "author": "", "orig_id": 1412789}}, {"model": "metainfo.source", "pk": 10607, "fields": {"orig_filename": "Leon_Friedrich-Vinzenz_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412705}}, {"model": "metainfo.source", "pk": 10608, "fields": {"orig_filename": "Leon_Gottlieb_1757_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141", "author": "", "orig_id": 1412779}}, {"model": "metainfo.source", "pk": 10609, "fields": {"orig_filename": "Leon_Gustav_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 141f.", "author": "", "orig_id": 1412780}}, {"model": "metainfo.source", "pk": 10610, "fields": {"orig_filename": "Leon_Johann-Barthlmae_1802_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142", "author": "", "orig_id": 1412781}}, {"model": "metainfo.source", "pk": 10611, "fields": {"orig_filename": "Leon_Raimund_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 142", "author": "", "orig_id": 1412782}}, {"model": "metainfo.source", "pk": 10612, "fields": {"orig_filename": "Leopold-Salvator___1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 146", "author": "", "orig_id": 1412795}}, {"model": "metainfo.source", "pk": 10613, "fields": {"orig_filename": "Leopolder_Johann_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 146f.", "author": "", "orig_id": 1412796}}, {"model": "metainfo.source", "pk": 10614, "fields": {"orig_filename": "Leopoldine__1797_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 147", "author": "", "orig_id": 1412797}}, {"model": "metainfo.source", "pk": 10615, "fields": {"orig_filename": "Leopold__1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 145", "author": "", "orig_id": 1412793}}, {"model": "metainfo.source", "pk": 10616, "fields": {"orig_filename": "Leopold__1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 145f.", "author": "", "orig_id": 1412794}}, {"model": "metainfo.source", "pk": 10617, "fields": {"orig_filename": "Leoster_Leopold-Heinrich_1866_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 147f.", "author": "", "orig_id": 1412874}}, {"model": "metainfo.source", "pk": 10618, "fields": {"orig_filename": "Leo_Juliusz_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 140f.", "author": "", "orig_id": 1412703}}, {"model": "metainfo.source", "pk": 10619, "fields": {"orig_filename": "Lepar_Frantisek_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148", "author": "", "orig_id": 1412875}}, {"model": "metainfo.source", "pk": 10620, "fields": {"orig_filename": "Lepkowski_Jozef_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148", "author": "", "orig_id": 1412876}}, {"model": "metainfo.source", "pk": 10621, "fields": {"orig_filename": "Lepkyj_Bohdan-Sylvestrovyc_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 148f.", "author": "", "orig_id": 1412877}}, {"model": "metainfo.source", "pk": 10622, "fields": {"orig_filename": "Leppin_Paul_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412878}}, {"model": "metainfo.source", "pk": 10623, "fields": {"orig_filename": "Lepsenyi_Miklos-Jozsef_1860_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412879}}, {"model": "metainfo.source", "pk": 10624, "fields": {"orig_filename": "Lepszy_Leonard_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 149", "author": "", "orig_id": 1412880}}, {"model": "metainfo.source", "pk": 10625, "fields": {"orig_filename": "Lepuschuetz_Johann_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412881}}, {"model": "metainfo.source", "pk": 10626, "fields": {"orig_filename": "Lercher_Ludwig_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 152f.", "author": "", "orig_id": 1412889}}, {"model": "metainfo.source", "pk": 10627, "fields": {"orig_filename": "Lerch_Egon_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412882}}, {"model": "metainfo.source", "pk": 10628, "fields": {"orig_filename": "Lerch_Friedrich_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150", "author": "", "orig_id": 1412883}}, {"model": "metainfo.source", "pk": 10629, "fields": {"orig_filename": "Lerch_Johann-Alexander_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 150f.", "author": "", "orig_id": 1412884}}, {"model": "metainfo.source", "pk": 10630, "fields": {"orig_filename": "Lerch_Joseph-Udo_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151", "author": "", "orig_id": 1412885}}, {"model": "metainfo.source", "pk": 10631, "fields": {"orig_filename": "Lerch_Matyas_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151", "author": "", "orig_id": 1412886}}, {"model": "metainfo.source", "pk": 10632, "fields": {"orig_filename": "Lerch_Theodor_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 151f.", "author": "", "orig_id": 1412887}}, {"model": "metainfo.source", "pk": 10633, "fields": {"orig_filename": "Lerch_Wenzel_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 152", "author": "", "orig_id": 1412888}}, {"model": "metainfo.source", "pk": 10634, "fields": {"orig_filename": "Lergetporer_Alois_1786_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153", "author": "", "orig_id": 1412963}}, {"model": "metainfo.source", "pk": 10635, "fields": {"orig_filename": "Lergetporer_Peter-Nikolaus_1749_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153", "author": "", "orig_id": 1412964}}, {"model": "metainfo.source", "pk": 10636, "fields": {"orig_filename": "Lerman_Dragutin_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 153f.", "author": "", "orig_id": 1412965}}, {"model": "metainfo.source", "pk": 10637, "fields": {"orig_filename": "Leschanowsky_Lothar_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412966}}, {"model": "metainfo.source", "pk": 10638, "fields": {"orig_filename": "Leschen_Wilhelm_1781_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412967}}, {"model": "metainfo.source", "pk": 10639, "fields": {"orig_filename": "Leschetitzky_Theodor_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412968}}, {"model": "metainfo.source", "pk": 10640, "fields": {"orig_filename": "Leschinger_Karl-Konrad_1866_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412969}}, {"model": "metainfo.source", "pk": 10641, "fields": {"orig_filename": "Leser_Gratian_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154", "author": "", "orig_id": 1412971}}, {"model": "metainfo.source", "pk": 10642, "fields": {"orig_filename": "Leser_Ludwig_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 154f.", "author": "", "orig_id": 1412970}}, {"model": "metainfo.source", "pk": 10643, "fields": {"orig_filename": "Ledochowski_Mieczyslaw_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87f.", "author": "", "orig_id": 1413571}}, {"model": "metainfo.source", "pk": 10644, "fields": {"orig_filename": "Ledochowski_Timotheus_1792_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 88", "author": "", "orig_id": 1413572}}, {"model": "metainfo.source", "pk": 10645, "fields": {"orig_filename": "Ledochowski_Wladimir_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 88f.", "author": "", "orig_id": 1413573}}, {"model": "metainfo.source", "pk": 10646, "fields": {"orig_filename": "Leeb_Josef-Anton_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89", "author": "", "orig_id": 1413574}}, {"model": "metainfo.source", "pk": 10647, "fields": {"orig_filename": "Leeb_Willibald_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89", "author": "", "orig_id": 1413575}}, {"model": "metainfo.source", "pk": 10648, "fields": {"orig_filename": "Leeder_Karl_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 89f.", "author": "", "orig_id": 1413576}}, {"model": "metainfo.source", "pk": 10649, "fields": {"orig_filename": "Lefler_Franz_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413577}}, {"model": "metainfo.source", "pk": 10650, "fields": {"orig_filename": "Legay-Lierfels_Albert_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90f.", "author": "", "orig_id": 1413579}}, {"model": "metainfo.source", "pk": 10651, "fields": {"orig_filename": "Legeditsch_Ignaz_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91", "author": "", "orig_id": 1413580}}, {"model": "metainfo.source", "pk": 10652, "fields": {"orig_filename": "Leger_Karel_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91", "author": "", "orig_id": 1413581}}, {"model": "metainfo.source", "pk": 10653, "fields": {"orig_filename": "Legler_Friedrich_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 91f.", "author": "", "orig_id": 1413582}}, {"model": "metainfo.source", "pk": 10654, "fields": {"orig_filename": "Legnani_Rinaldo-Luigi_1790_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413583}}, {"model": "metainfo.source", "pk": 10655, "fields": {"orig_filename": "Legnazzi-Dossi_Alessandro_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413585}}, {"model": "metainfo.source", "pk": 10656, "fields": {"orig_filename": "Legnazzi_Enrico-Nestore_1826_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92", "author": "", "orig_id": 1413584}}, {"model": "metainfo.source", "pk": 10657, "fields": {"orig_filename": "Legrady_Karoly_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 92f.", "author": "", "orig_id": 1413586}}, {"model": "metainfo.source", "pk": 10658, "fields": {"orig_filename": "Lehar_Franz_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413587}}, {"model": "metainfo.source", "pk": 10659, "fields": {"orig_filename": "Lehar_Franz_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413588}}, {"model": "metainfo.source", "pk": 10660, "fields": {"orig_filename": "Lehmann-Haupt_Carl_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 96f.", "author": "", "orig_id": 1413665}}, {"model": "metainfo.source", "pk": 10661, "fields": {"orig_filename": "Lehmann_Adolf_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 93", "author": "", "orig_id": 1413589}}, {"model": "metainfo.source", "pk": 10662, "fields": {"orig_filename": "Lehmann_Franz-Kaspar_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413591}}, {"model": "metainfo.source", "pk": 10663, "fields": {"orig_filename": "Lehmann_Georg_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413590}}, {"model": "metainfo.source", "pk": 10664, "fields": {"orig_filename": "Lehmann_Guido_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413592}}, {"model": "metainfo.source", "pk": 10665, "fields": {"orig_filename": "Lehmann_Heinrich_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 94", "author": "", "orig_id": 1413660}}, {"model": "metainfo.source", "pk": 10666, "fields": {"orig_filename": "Lehmann_Josef_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95", "author": "", "orig_id": 1413661}}, {"model": "metainfo.source", "pk": 10667, "fields": {"orig_filename": "Lehmann_Lilli_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95", "author": "", "orig_id": 1413662}}, {"model": "metainfo.source", "pk": 10668, "fields": {"orig_filename": "Lehmann_Moritz_1819_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 95f.", "author": "", "orig_id": 1413663}}, {"model": "metainfo.source", "pk": 10669, "fields": {"orig_filename": "Lehmann_Otto_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 96", "author": "", "orig_id": 1413664}}, {"model": "metainfo.source", "pk": 10670, "fields": {"orig_filename": "Lehne-Lehnsheim_Gustav_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97", "author": "", "orig_id": 1413666}}, {"model": "metainfo.source", "pk": 10671, "fields": {"orig_filename": "Lehnert_Joseph_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413674}}, {"model": "metainfo.source", "pk": 10672, "fields": {"orig_filename": "Lehner_Elise_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97", "author": "", "orig_id": 1413667}}, {"model": "metainfo.source", "pk": 10673, "fields": {"orig_filename": "Lehner_Ferdinand_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 97f.", "author": "", "orig_id": 1413668}}, {"model": "metainfo.source", "pk": 10674, "fields": {"orig_filename": "Lehner_Franz-De-Paula_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413669}}, {"model": "metainfo.source", "pk": 10675, "fields": {"orig_filename": "Lehner_Franz-Xaver_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413670}}, {"model": "metainfo.source", "pk": 10676, "fields": {"orig_filename": "Lehner_Josef_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98", "author": "", "orig_id": 1413671}}, {"model": "metainfo.source", "pk": 10677, "fields": {"orig_filename": "Lehner_Rudolf-Julius_1883_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413673}}, {"model": "metainfo.source", "pk": 10678, "fields": {"orig_filename": "Lehner_Rudolf_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 98f.", "author": "", "orig_id": 1413672}}, {"model": "metainfo.source", "pk": 10679, "fields": {"orig_filename": "Lehoczky_Tivadar_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 99", "author": "", "orig_id": 1413675}}, {"model": "metainfo.source", "pk": 10680, "fields": {"orig_filename": "Lehr_Albert_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413676}}, {"model": "metainfo.source", "pk": 10681, "fields": {"orig_filename": "Lehr_Zsigmond_1841_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413677}}, {"model": "metainfo.source", "pk": 10682, "fields": {"orig_filename": "Leibenfrost_Franz-Heinrich_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100f.", "author": "", "orig_id": 1413679}}, {"model": "metainfo.source", "pk": 10683, "fields": {"orig_filename": "Leibenfrost_Franz_1790_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 100", "author": "", "orig_id": 1413678}}, {"model": "metainfo.source", "pk": 10684, "fields": {"orig_filename": "Leibenfrost_Hermann_1844_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 101", "author": "", "orig_id": 1413680}}, {"model": "metainfo.source", "pk": 10685, "fields": {"orig_filename": "Leibitzer_Johann_1763_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 101", "author": "", "orig_id": 1413681}}, {"model": "metainfo.source", "pk": 10686, "fields": {"orig_filename": "Leicht_Ferdinand_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1416076}}, {"model": "metainfo.source", "pk": 10687, "fields": {"orig_filename": "Leicht_Hans_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1413682}}, {"model": "metainfo.source", "pk": 10688, "fields": {"orig_filename": "Leicht_Michele_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102", "author": "", "orig_id": 1413683}}, {"model": "metainfo.source", "pk": 10689, "fields": {"orig_filename": "Leicht_Wilhelm_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 102f.", "author": "", "orig_id": 1413684}}, {"model": "metainfo.source", "pk": 10690, "fields": {"orig_filename": "Leidenfrost_Robert_1827_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413750}}, {"model": "metainfo.source", "pk": 10691, "fields": {"orig_filename": "Leidesdorfer-Neuwall_Markus_1753_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105", "author": "", "orig_id": 1413756}}, {"model": "metainfo.source", "pk": 10692, "fields": {"orig_filename": "Leidesdorf_Franz-Emil_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104", "author": "", "orig_id": 1413752}}, {"model": "metainfo.source", "pk": 10693, "fields": {"orig_filename": "Leidesdorf_Leopold-Franz_1793_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104", "author": "", "orig_id": 1413753}}, {"model": "metainfo.source", "pk": 10694, "fields": {"orig_filename": "Leidesdorf_Maximilian-Joseph_1787_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105", "author": "", "orig_id": 1413755}}, {"model": "metainfo.source", "pk": 10695, "fields": {"orig_filename": "Leidesdorf_Maximilian_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 104f.", "author": "", "orig_id": 1413754}}, {"model": "metainfo.source", "pk": 10696, "fields": {"orig_filename": "Leidler_Rudolf_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 106", "author": "", "orig_id": 1413758}}, {"model": "metainfo.source", "pk": 10697, "fields": {"orig_filename": "Leidl_Karl_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 105f.", "author": "", "orig_id": 1413757}}, {"model": "metainfo.source", "pk": 10698, "fields": {"orig_filename": "Leifer_Franz_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 106", "author": "", "orig_id": 1413759}}, {"model": "metainfo.source", "pk": 10699, "fields": {"orig_filename": "Leifer_Therese_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 107", "author": "", "orig_id": 1413760}}, {"model": "metainfo.source", "pk": 10700, "fields": {"orig_filename": "Leifhelm_Hans_1891_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 107f.", "author": "", "orig_id": 1413761}}, {"model": "metainfo.source", "pk": 10701, "fields": {"orig_filename": "Leigheb_Giovanni_1812_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413763}}, {"model": "metainfo.source", "pk": 10702, "fields": {"orig_filename": "Leimdoerfer_David_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413764}}, {"model": "metainfo.source", "pk": 10703, "fields": {"orig_filename": "Leiner_Carl_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108", "author": "", "orig_id": 1413765}}, {"model": "metainfo.source", "pk": 10704, "fields": {"orig_filename": "Leiningen-Westerburg_Karl_1819_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 108f.", "author": "", "orig_id": 1413766}}, {"model": "metainfo.source", "pk": 10705, "fields": {"orig_filename": "Leinner_Anton_1813_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413767}}, {"model": "metainfo.source", "pk": 10706, "fields": {"orig_filename": "Leipziger_Vilmos_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413768}}, {"model": "metainfo.source", "pk": 10707, "fields": {"orig_filename": "Leis-Paschbach_Anton_1777_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109", "author": "", "orig_id": 1413769}}, {"model": "metainfo.source", "pk": 10708, "fields": {"orig_filename": "Leisching_Eduard_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 109f.", "author": "", "orig_id": 1413770}}, {"model": "metainfo.source", "pk": 10709, "fields": {"orig_filename": "Leisching_Julius_1865_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110", "author": "", "orig_id": 1413771}}, {"model": "metainfo.source", "pk": 10710, "fields": {"orig_filename": "Leisek_Friedrich_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110", "author": "", "orig_id": 1413772}}, {"model": "metainfo.source", "pk": 10711, "fields": {"orig_filename": "Leisek_Georg_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 110f.", "author": "", "orig_id": 1413841}}, {"model": "metainfo.source", "pk": 10712, "fields": {"orig_filename": "Leiss_Hans_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 111", "author": "", "orig_id": 1413842}}, {"model": "metainfo.source", "pk": 10713, "fields": {"orig_filename": "Leistler_Carl_1805_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 111f.", "author": "", "orig_id": 1413843}}, {"model": "metainfo.source", "pk": 10714, "fields": {"orig_filename": "Leitenberger_Friedrich-Franz-Josef_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113", "author": "", "orig_id": 1413846}}, {"model": "metainfo.source", "pk": 10715, "fields": {"orig_filename": "Leitenberger_Friedrich_1801_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 112", "author": "", "orig_id": 1413845}}, {"model": "metainfo.source", "pk": 10716, "fields": {"orig_filename": "Leitenberger_Friedrich_1862_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113", "author": "", "orig_id": 1416075}}, {"model": "metainfo.source", "pk": 10717, "fields": {"orig_filename": "Leitenberger_Karl_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 113f.", "author": "", "orig_id": 1413847}}, {"model": "metainfo.source", "pk": 10718, "fields": {"orig_filename": "Leiter-Lososina_Anton_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413849}}, {"model": "metainfo.source", "pk": 10719, "fields": {"orig_filename": "Leitermayer_Alexander_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413850}}, {"model": "metainfo.source", "pk": 10720, "fields": {"orig_filename": "Leiter_Josef_1830_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413848}}, {"model": "metainfo.source", "pk": 10721, "fields": {"orig_filename": "Leitgeb_Hans_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114", "author": "", "orig_id": 1413851}}, {"model": "metainfo.source", "pk": 10722, "fields": {"orig_filename": "Leitgeb_Lorenz_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 115", "author": "", "orig_id": 1413853}}, {"model": "metainfo.source", "pk": 10723, "fields": {"orig_filename": "Leithe_Friedrich_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 115", "author": "", "orig_id": 1413854}}, {"model": "metainfo.source", "pk": 10724, "fields": {"orig_filename": "Leithner_Eduard_1815_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116", "author": "", "orig_id": 1413855}}, {"model": "metainfo.source", "pk": 10725, "fields": {"orig_filename": "Leithner_Ernst_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116", "author": "", "orig_id": 1413856}}, {"model": "metainfo.source", "pk": 10726, "fields": {"orig_filename": "Leithner_Hermann_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 116f.", "author": "", "orig_id": 1413857}}, {"model": "metainfo.source", "pk": 10727, "fields": {"orig_filename": "Leithner_Josef_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413858}}, {"model": "metainfo.source", "pk": 10728, "fields": {"orig_filename": "Leitich_Albert_1869_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413859}}, {"model": "metainfo.source", "pk": 10729, "fields": {"orig_filename": "Leitner_Alois_1876_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117", "author": "", "orig_id": 1413860}}, {"model": "metainfo.source", "pk": 10730, "fields": {"orig_filename": "Leitner_Emanuel_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 117f.", "author": "", "orig_id": 1413861}}, {"model": "metainfo.source", "pk": 10731, "fields": {"orig_filename": "Leitner_Franz_1849_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 118", "author": "", "orig_id": 1413862}}, {"model": "metainfo.source", "pk": 10732, "fields": {"orig_filename": "Leitner_Friedrich_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 118f.", "author": "", "orig_id": 1413863}}, {"model": "metainfo.source", "pk": 10733, "fields": {"orig_filename": "Leitner_Gottlieb-William_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119", "author": "", "orig_id": 1413864}}, {"model": "metainfo.source", "pk": 10734, "fields": {"orig_filename": "Leitner_Johann-Georg_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119", "author": "", "orig_id": 1412500}}, {"model": "metainfo.source", "pk": 10735, "fields": {"orig_filename": "Leitner_Karl-Gottfried_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 119f.", "author": "", "orig_id": 1412501}}, {"model": "metainfo.source", "pk": 10736, "fields": {"orig_filename": "Leitner_Quirin_1834_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 120f.", "author": "", "orig_id": 1412502}}, {"model": "metainfo.source", "pk": 10737, "fields": {"orig_filename": "Leitz_Heinrich-Friedrich_1886_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 121", "author": "", "orig_id": 1412503}}, {"model": "metainfo.source", "pk": 10738, "fields": {"orig_filename": "Leixner-Gruenberg_Othmar_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 121", "author": "", "orig_id": 1412504}}, {"model": "metainfo.source", "pk": 10739, "fields": {"orig_filename": "Leixner-Gruenberg_Otto_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412505}}, {"model": "metainfo.source", "pk": 10740, "fields": {"orig_filename": "Lejet_Nicolas_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 122", "author": "", "orig_id": 1412506}}, {"model": "metainfo.source", "pk": 10741, "fields": {"orig_filename": "Laxa_Wladimir_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54", "author": "", "orig_id": 1413049}}, {"model": "metainfo.source", "pk": 10742, "fields": {"orig_filename": "Layer_Leopold_1752_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54f.", "author": "", "orig_id": 1413051}}, {"model": "metainfo.source", "pk": 10743, "fields": {"orig_filename": "Layer_Max_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 55", "author": "", "orig_id": 1413052}}, {"model": "metainfo.source", "pk": 10744, "fields": {"orig_filename": "Layer_Michael_1796_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 55f.", "author": "", "orig_id": 1413053}}, {"model": "metainfo.source", "pk": 10745, "fields": {"orig_filename": "Lay_Srecko_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 54", "author": "", "orig_id": 1413050}}, {"model": "metainfo.source", "pk": 10746, "fields": {"orig_filename": "Lazansky-Bukowa_Leopold_1808_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413125}}, {"model": "metainfo.source", "pk": 10747, "fields": {"orig_filename": "Lazansky-Bukowa_Procop_1771_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413126}}, {"model": "metainfo.source", "pk": 10748, "fields": {"orig_filename": "Lazar-Szarhegy_Gyoergy_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413133}}, {"model": "metainfo.source", "pk": 10749, "fields": {"orig_filename": "Lazar-Szarhegy_Jozsef_1782_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413134}}, {"model": "metainfo.source", "pk": 10750, "fields": {"orig_filename": "Lazar-Szarhegy_Kalman_1827_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413135}}, {"model": "metainfo.source", "pk": 10751, "fields": {"orig_filename": "Lazar-Szarhegy_Laszlo_1780_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 58", "author": "", "orig_id": 1413136}}, {"model": "metainfo.source", "pk": 10752, "fields": {"orig_filename": "Lazar-Szarhegy_Miklos_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413137}}, {"model": "metainfo.source", "pk": 10753, "fields": {"orig_filename": "Lazara_Francesco_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413138}}, {"model": "metainfo.source", "pk": 10754, "fields": {"orig_filename": "Lazara_Giovanni_1744_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59", "author": "", "orig_id": 1413212}}, {"model": "metainfo.source", "pk": 10755, "fields": {"orig_filename": "Lazarich-Lindaro_Josef_1784_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413213}}, {"model": "metainfo.source", "pk": 10756, "fields": {"orig_filename": "Lazarini_Giacomo-Lodovico_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413214}}, {"model": "metainfo.source", "pk": 10757, "fields": {"orig_filename": "Lazarini_Josef-Philibert_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 60", "author": "", "orig_id": 1413215}}, {"model": "metainfo.source", "pk": 10758, "fields": {"orig_filename": "Lazari_Vincenzo_1823_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 59f.", "author": "", "orig_id": 1413211}}, {"model": "metainfo.source", "pk": 10759, "fields": {"orig_filename": "Lazarski_Jozef_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413216}}, {"model": "metainfo.source", "pk": 10760, "fields": {"orig_filename": "Lazarski_Stanislaw_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413217}}, {"model": "metainfo.source", "pk": 10761, "fields": {"orig_filename": "Lazar_Auguste_1887_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436976}}, {"model": "metainfo.source", "pk": 10762, "fields": {"orig_filename": "Lazar_Erwin_1877_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 56", "author": "", "orig_id": 1413127}}, {"model": "metainfo.source", "pk": 10763, "fields": {"orig_filename": "Lazar_Gheorghe_1779_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413128}}, {"model": "metainfo.source", "pk": 10764, "fields": {"orig_filename": "Lazar_Gyula_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413129}}, {"model": "metainfo.source", "pk": 10765, "fields": {"orig_filename": "Lazar_Istvan_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413130}}, {"model": "metainfo.source", "pk": 10766, "fields": {"orig_filename": "Lazar_Maria_1895_1948.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1449979}}, {"model": "metainfo.source", "pk": 10767, "fields": {"orig_filename": "Lazar_Pal-L_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57", "author": "", "orig_id": 1413131}}, {"model": "metainfo.source", "pk": 10768, "fields": {"orig_filename": "Lazar_Vilmos_1815_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 57f.", "author": "", "orig_id": 1413132}}, {"model": "metainfo.source", "pk": 10769, "fields": {"orig_filename": "Lazzarini_Giuseppe-Edgardo_1832_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 62", "author": "", "orig_id": 1413220}}, {"model": "metainfo.source", "pk": 10770, "fields": {"orig_filename": "Lazzari_Francesco_1791_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61", "author": "", "orig_id": 1413218}}, {"model": "metainfo.source", "pk": 10771, "fields": {"orig_filename": "Lazzari_Silvio_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 61f.", "author": "", "orig_id": 1413219}}, {"model": "metainfo.source", "pk": 10772, "fields": {"orig_filename": "Lazzati_Antonio_1821_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 62f.", "author": "", "orig_id": 1413221}}, {"model": "metainfo.source", "pk": 10773, "fields": {"orig_filename": "Lebeau_Aurel_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63", "author": "", "orig_id": 1413223}}, {"model": "metainfo.source", "pk": 10774, "fields": {"orig_filename": "Lebeda_Anton-Vinzenz_1797_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63f.", "author": "", "orig_id": 1413224}}, {"model": "metainfo.source", "pk": 10775, "fields": {"orig_filename": "Lebeda_Anton-Vinzenz_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 64", "author": "", "orig_id": 1413225}}, {"model": "metainfo.source", "pk": 10776, "fields": {"orig_filename": "Lebeda_Ferdinand_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 64f.", "author": "", "orig_id": 1413226}}, {"model": "metainfo.source", "pk": 10777, "fields": {"orig_filename": "Lebeda_Otakar_1877_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65", "author": "", "orig_id": 1413227}}, {"model": "metainfo.source", "pk": 10778, "fields": {"orig_filename": "Lebenhart_Filip_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65", "author": "", "orig_id": 1413228}}, {"model": "metainfo.source", "pk": 10779, "fields": {"orig_filename": "Leberl_Hans_1871_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413230}}, {"model": "metainfo.source", "pk": 10780, "fields": {"orig_filename": "Leber_Max_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 65f.", "author": "", "orig_id": 1413229}}, {"model": "metainfo.source", "pk": 10781, "fields": {"orig_filename": "Lebiedzki_Eduard_1862_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413231}}, {"model": "metainfo.source", "pk": 10782, "fields": {"orig_filename": "Lebinger_Norbert_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66", "author": "", "orig_id": 1413232}}, {"model": "metainfo.source", "pk": 10783, "fields": {"orig_filename": "Lebmacher_Carl_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 66f.", "author": "", "orig_id": 1413301}}, {"model": "metainfo.source", "pk": 10784, "fields": {"orig_filename": "Lebouton_Alois_1881_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 67", "author": "", "orig_id": 1413302}}, {"model": "metainfo.source", "pk": 10785, "fields": {"orig_filename": "Lebschy_Dominik_1799_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 67f.", "author": "", "orig_id": 1413303}}, {"model": "metainfo.source", "pk": 10786, "fields": {"orig_filename": "Lebstueck_Maria_1830_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413304}}, {"model": "metainfo.source", "pk": 10787, "fields": {"orig_filename": "Lebzeltern_Josef_1781_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413306}}, {"model": "metainfo.source", "pk": 10788, "fields": {"orig_filename": "Lebzeltern_Ludwig_1774_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 69", "author": "", "orig_id": 1413307}}, {"model": "metainfo.source", "pk": 10789, "fields": {"orig_filename": "Lebzelter_Viktor_1889_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 68", "author": "", "orig_id": 1413305}}, {"model": "metainfo.source", "pk": 10790, "fields": {"orig_filename": "Leb_Josef_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 63", "author": "", "orig_id": 1413222}}, {"model": "metainfo.source", "pk": 10791, "fields": {"orig_filename": "Lecca_Constantin_1807_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 69f.", "author": "", "orig_id": 1413308}}, {"model": "metainfo.source", "pk": 10792, "fields": {"orig_filename": "Lecher_Ernst_1856_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 70", "author": "", "orig_id": 1413309}}, {"model": "metainfo.source", "pk": 10793, "fields": {"orig_filename": "Lecher_Helene_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 70f.", "author": "", "orig_id": 1413310}}, {"model": "metainfo.source", "pk": 10794, "fields": {"orig_filename": "Lecher_Otto_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413311}}, {"model": "metainfo.source", "pk": 10795, "fields": {"orig_filename": "Lecher_Zacharias-Konrad_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413312}}, {"model": "metainfo.source", "pk": 10796, "fields": {"orig_filename": "Lechi_Angelo_1769_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71", "author": "", "orig_id": 1413313}}, {"model": "metainfo.source", "pk": 10797, "fields": {"orig_filename": "Lechi_Giacomo_1768_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 71f.", "author": "", "orig_id": 1413314}}, {"model": "metainfo.source", "pk": 10798, "fields": {"orig_filename": "Lechi_Giuseppe_1766_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 72", "author": "", "orig_id": 1413315}}, {"model": "metainfo.source", "pk": 10799, "fields": {"orig_filename": "Lechi_Luigi_1786_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 72f.", "author": "", "orig_id": 1413316}}, {"model": "metainfo.source", "pk": 10800, "fields": {"orig_filename": "Lechi_Teodoro_1778_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 73", "author": "", "orig_id": 1413317}}, {"model": "metainfo.source", "pk": 10801, "fields": {"orig_filename": "Lechleitner_Franz_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 73f.", "author": "", "orig_id": 1413318}}, {"model": "metainfo.source", "pk": 10802, "fields": {"orig_filename": "Lechleitner_Johannes-Bapt_1764_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74", "author": "", "orig_id": 1413319}}, {"model": "metainfo.source", "pk": 10803, "fields": {"orig_filename": "Lechleitner_Robert_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74", "author": "", "orig_id": 1413320}}, {"model": "metainfo.source", "pk": 10804, "fields": {"orig_filename": "Lechleitner_Wilhelm_1779_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 74f.", "author": "", "orig_id": 1413321}}, {"model": "metainfo.source", "pk": 10805, "fields": {"orig_filename": "Lechner_Agost_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75", "author": "", "orig_id": 1413322}}, {"model": "metainfo.source", "pk": 10806, "fields": {"orig_filename": "Lechner_Anton_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75", "author": "", "orig_id": 1413323}}, {"model": "metainfo.source", "pk": 10807, "fields": {"orig_filename": "Lechner_Franziska_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76", "author": "", "orig_id": 1413395}}, {"model": "metainfo.source", "pk": 10808, "fields": {"orig_filename": "Lechner_Franz_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 75f.", "author": "", "orig_id": 1413324}}, {"model": "metainfo.source", "pk": 10809, "fields": {"orig_filename": "Lechner_Gyula_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76", "author": "", "orig_id": 1413396}}, {"model": "metainfo.source", "pk": 10810, "fields": {"orig_filename": "Lechner_Johann_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 76f.", "author": "", "orig_id": 1413397}}, {"model": "metainfo.source", "pk": 10811, "fields": {"orig_filename": "Lechner_Karl_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413398}}, {"model": "metainfo.source", "pk": 10812, "fields": {"orig_filename": "Lechner_Karoly_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413399}}, {"model": "metainfo.source", "pk": 10813, "fields": {"orig_filename": "Lechner_Lajos_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77", "author": "", "orig_id": 1413400}}, {"model": "metainfo.source", "pk": 10814, "fields": {"orig_filename": "Lechner_Ludwig_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 77f.", "author": "", "orig_id": 1413401}}, {"model": "metainfo.source", "pk": 10815, "fields": {"orig_filename": "Lechner_Michael_1785_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78", "author": "", "orig_id": 1413402}}, {"model": "metainfo.source", "pk": 10816, "fields": {"orig_filename": "Lechner_Oedoen_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78", "author": "", "orig_id": 1413403}}, {"model": "metainfo.source", "pk": 10817, "fields": {"orig_filename": "Lechthaler_Josef_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 78f.", "author": "", "orig_id": 1413404}}, {"model": "metainfo.source", "pk": 10818, "fields": {"orig_filename": "Leciejewski_Jan_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 79", "author": "", "orig_id": 1413405}}, {"model": "metainfo.source", "pk": 10819, "fields": {"orig_filename": "Leddihn_Adolph_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 79", "author": "", "orig_id": 1413406}}, {"model": "metainfo.source", "pk": 10820, "fields": {"orig_filename": "Ledebur-Wicheln_Johann_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80", "author": "", "orig_id": 1413407}}, {"model": "metainfo.source", "pk": 10821, "fields": {"orig_filename": "Ledererova-Seifertova_Terezie_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 136f.", "author": "", "orig_id": 1451574}}, {"model": "metainfo.source", "pk": 10822, "fields": {"orig_filename": "Lederer_Abraham_1827_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81", "author": "", "orig_id": 1413484}}, {"model": "metainfo.source", "pk": 10823, "fields": {"orig_filename": "Lederer_Alexander_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81", "author": "", "orig_id": 1413486}}, {"model": "metainfo.source", "pk": 10824, "fields": {"orig_filename": "Lederer_Anton_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 81f.", "author": "", "orig_id": 1413485}}, {"model": "metainfo.source", "pk": 10825, "fields": {"orig_filename": "Lederer_Bela_1860_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413487}}, {"model": "metainfo.source", "pk": 10826, "fields": {"orig_filename": "Lederer_Carl-Ramon-Soter_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413488}}, {"model": "metainfo.source", "pk": 10827, "fields": {"orig_filename": "Lederer_Eduard_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82", "author": "", "orig_id": 1413489}}, {"model": "metainfo.source", "pk": 10828, "fields": {"orig_filename": "Lederer_Emil_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 82f.", "author": "", "orig_id": 1413490}}, {"model": "metainfo.source", "pk": 10829, "fields": {"orig_filename": "Lederer_Hugo_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413491}}, {"model": "metainfo.source", "pk": 10830, "fields": {"orig_filename": "Lederer_Joachim_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413492}}, {"model": "metainfo.source", "pk": 10831, "fields": {"orig_filename": "Lederer_Karl-Joseph-Alois_1772_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84", "author": "", "orig_id": 1413494}}, {"model": "metainfo.source", "pk": 10832, "fields": {"orig_filename": "Lederer_Karl_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 83", "author": "", "orig_id": 1413493}}, {"model": "metainfo.source", "pk": 10833, "fields": {"orig_filename": "Lederer_Leo_1883_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84", "author": "", "orig_id": 1413495}}, {"model": "metainfo.source", "pk": 10834, "fields": {"orig_filename": "Lederer_Max_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 84f.", "author": "", "orig_id": 1413496}}, {"model": "metainfo.source", "pk": 10835, "fields": {"orig_filename": "Lederer_Max_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85", "author": "", "orig_id": 1413497}}, {"model": "metainfo.source", "pk": 10836, "fields": {"orig_filename": "Lederer_Sandor_1852_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85", "author": "", "orig_id": 1413499}}, {"model": "metainfo.source", "pk": 10837, "fields": {"orig_filename": "Ledermaier_Josef_1910_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 85f.", "author": "", "orig_id": 1413498}}, {"model": "metainfo.source", "pk": 10838, "fields": {"orig_filename": "Ledersteger_Alois-Paul_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86", "author": "", "orig_id": 1413500}}, {"model": "metainfo.source", "pk": 10839, "fields": {"orig_filename": "Leder_August-Paul_1870_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80", "author": "", "orig_id": 1413408}}, {"model": "metainfo.source", "pk": 10840, "fields": {"orig_filename": "Leder_Hans_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 80f.", "author": "", "orig_id": 1413409}}, {"model": "metainfo.source", "pk": 10841, "fields": {"orig_filename": "Ledl_Artur_1878_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86", "author": "", "orig_id": 1413501}}, {"model": "metainfo.source", "pk": 10842, "fields": {"orig_filename": "Ledochowska_Maria-Theresia_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 86f.", "author": "", "orig_id": 1413502}}, {"model": "metainfo.source", "pk": 10843, "fields": {"orig_filename": "Ledochowska_Maria-Ursula_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87", "author": "", "orig_id": 1413503}}, {"model": "metainfo.source", "pk": 10844, "fields": {"orig_filename": "Ledochowski_Antoni_1755_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 87", "author": "", "orig_id": 1413570}}, {"model": "metainfo.source", "pk": 10845, "fields": {"orig_filename": "Lany_Karel-Bohuslav_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412667}}, {"model": "metainfo.source", "pk": 10846, "fields": {"orig_filename": "Lany_Karel-Eduard_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19f.", "author": "", "orig_id": 1412668}}, {"model": "metainfo.source", "pk": 10847, "fields": {"orig_filename": "Lanza_Frano_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21f.", "author": "", "orig_id": 1412674}}, {"model": "metainfo.source", "pk": 10848, "fields": {"orig_filename": "Lanzedelly_August_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412675}}, {"model": "metainfo.source", "pk": 10849, "fields": {"orig_filename": "Lanzedelly_Josef_1772_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412676}}, {"model": "metainfo.source", "pk": 10850, "fields": {"orig_filename": "Lanzedelly_Josef_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22", "author": "", "orig_id": 1412677}}, {"model": "metainfo.source", "pk": 10851, "fields": {"orig_filename": "Lanzedelly_Karl_1815_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 22f.", "author": "", "orig_id": 1412678}}, {"model": "metainfo.source", "pk": 10852, "fields": {"orig_filename": "Lanzendoerfer_Ferdinand_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23", "author": "", "orig_id": 1412679}}, {"model": "metainfo.source", "pk": 10853, "fields": {"orig_filename": "Lanzinger_Hubert_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23", "author": "", "orig_id": 1412680}}, {"model": "metainfo.source", "pk": 10854, "fields": {"orig_filename": "Lanz_Engelbert_1820_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21", "author": "", "orig_id": 1412672}}, {"model": "metainfo.source", "pk": 10855, "fields": {"orig_filename": "Lanz_Katharina_1771_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 21", "author": "", "orig_id": 1412673}}, {"model": "metainfo.source", "pk": 10856, "fields": {"orig_filename": "Lapajne_Ivan_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24", "author": "", "orig_id": 1412755}}, {"model": "metainfo.source", "pk": 10857, "fields": {"orig_filename": "Lapajne_Stanko_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24", "author": "", "orig_id": 1412756}}, {"model": "metainfo.source", "pk": 10858, "fields": {"orig_filename": "Lapinski_Teofil_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 24f.", "author": "", "orig_id": 1412757}}, {"model": "metainfo.source", "pk": 10859, "fields": {"orig_filename": "Lapp_Daniel_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 25", "author": "", "orig_id": 1412758}}, {"model": "metainfo.source", "pk": 10860, "fields": {"orig_filename": "Lapp_Friedrich-August_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 25f.", "author": "", "orig_id": 1412759}}, {"model": "metainfo.source", "pk": 10861, "fields": {"orig_filename": "Lapsinszky_Janos_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412760}}, {"model": "metainfo.source", "pk": 10862, "fields": {"orig_filename": "Larber_Giovanni_1786_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412761}}, {"model": "metainfo.source", "pk": 10863, "fields": {"orig_filename": "Larch_Hans_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26", "author": "", "orig_id": 1412762}}, {"model": "metainfo.source", "pk": 10864, "fields": {"orig_filename": "Lardschneider_Archangelus-Ciampac_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 26f.", "author": "", "orig_id": 1412763}}, {"model": "metainfo.source", "pk": 10865, "fields": {"orig_filename": "Larisch-Moennich_Heinrich_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 27f.", "author": "", "orig_id": 1412765}}, {"model": "metainfo.source", "pk": 10866, "fields": {"orig_filename": "Larisch-Moennich_Johann_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28", "author": "", "orig_id": 1412766}}, {"model": "metainfo.source", "pk": 10867, "fields": {"orig_filename": "Larisch_Rudolf_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 27", "author": "", "orig_id": 1412764}}, {"model": "metainfo.source", "pk": 10868, "fields": {"orig_filename": "Laroche_Jakob_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28", "author": "", "orig_id": 1412767}}, {"model": "metainfo.source", "pk": 10869, "fields": {"orig_filename": "Laroche_Karl_1794_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 28f.", "author": "", "orig_id": 1412768}}, {"model": "metainfo.source", "pk": 10870, "fields": {"orig_filename": "Laroche_Michael-Johann_1805_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 29", "author": "", "orig_id": 1412769}}, {"model": "metainfo.source", "pk": 10871, "fields": {"orig_filename": "Larwin_Hans_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 29f.", "author": "", "orig_id": 1412770}}, {"model": "metainfo.source", "pk": 10872, "fields": {"orig_filename": "Laschan-Moorland_Anton_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412774}}, {"model": "metainfo.source", "pk": 10873, "fields": {"orig_filename": "Laschan-Solstein_Ignaz_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30f.", "author": "", "orig_id": 1412773}}, {"model": "metainfo.source", "pk": 10874, "fields": {"orig_filename": "Laschitzer_Simon_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31", "author": "", "orig_id": 1412775}}, {"model": "metainfo.source", "pk": 10875, "fields": {"orig_filename": "Lasch_Richard_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412771}}, {"model": "metainfo.source", "pk": 10876, "fields": {"orig_filename": "Lasch_Simon_1796_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 30", "author": "", "orig_id": 1412772}}, {"model": "metainfo.source", "pk": 10877, "fields": {"orig_filename": "Lascny-Folkusfalva_Katharina_1789_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31", "author": "", "orig_id": 1412776}}, {"model": "metainfo.source", "pk": 10878, "fields": {"orig_filename": "Laser_Simon-Menachem_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 31f.", "author": "", "orig_id": 1412777}}, {"model": "metainfo.source", "pk": 10879, "fields": {"orig_filename": "Lasinio_Basilio_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32", "author": "", "orig_id": 1412778}}, {"model": "metainfo.source", "pk": 10880, "fields": {"orig_filename": "Lasinio_Carlo_1759_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32", "author": "", "orig_id": 1412846}}, {"model": "metainfo.source", "pk": 10881, "fields": {"orig_filename": "Laska_Gustav_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 33", "author": "", "orig_id": 1412848}}, {"model": "metainfo.source", "pk": 10882, "fields": {"orig_filename": "Laska_Julius_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 33f.", "author": "", "orig_id": 1412849}}, {"model": "metainfo.source", "pk": 10883, "fields": {"orig_filename": "Lask_Emil_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 32f.", "author": "", "orig_id": 1412847}}, {"model": "metainfo.source", "pk": 10884, "fields": {"orig_filename": "Lasocki_Zygmunt_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34", "author": "", "orig_id": 1412850}}, {"model": "metainfo.source", "pk": 10885, "fields": {"orig_filename": "Lassel_Matthias_1760_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34", "author": "", "orig_id": 1412851}}, {"model": "metainfo.source", "pk": 10886, "fields": {"orig_filename": "Lassel_Rudolf_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 34f.", "author": "", "orig_id": 1412852}}, {"model": "metainfo.source", "pk": 10887, "fields": {"orig_filename": "Lasser-Zollheim_Johann-Bapt_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35", "author": "", "orig_id": 1412853}}, {"model": "metainfo.source", "pk": 10888, "fields": {"orig_filename": "Lasser-Zollheim_Josef_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35", "author": "", "orig_id": 1412854}}, {"model": "metainfo.source", "pk": 10889, "fields": {"orig_filename": "Lassu_Istvan_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 35f.", "author": "", "orig_id": 1412855}}, {"model": "metainfo.source", "pk": 10890, "fields": {"orig_filename": "Lastovka_Karel_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412859}}, {"model": "metainfo.source", "pk": 10891, "fields": {"orig_filename": "Last_Adolf_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36", "author": "", "orig_id": 1412856}}, {"model": "metainfo.source", "pk": 10892, "fields": {"orig_filename": "Last_Albert_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36", "author": "", "orig_id": 1412857}}, {"model": "metainfo.source", "pk": 10893, "fields": {"orig_filename": "Last_Isaak_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 36f.", "author": "", "orig_id": 1412858}}, {"model": "metainfo.source", "pk": 10894, "fields": {"orig_filename": "Laszlo-Lombos_Fueloep-Elek_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37f.", "author": "", "orig_id": 1412862}}, {"model": "metainfo.source", "pk": 10895, "fields": {"orig_filename": "Laszlo_Jozsef_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412861}}, {"model": "metainfo.source", "pk": 10896, "fields": {"orig_filename": "Laszowski_Emilij_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412863}}, {"model": "metainfo.source", "pk": 10897, "fields": {"orig_filename": "Lasz_Samu_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 37", "author": "", "orig_id": 1412860}}, {"model": "metainfo.source", "pk": 10898, "fields": {"orig_filename": "Latabar_Endre_1812_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412864}}, {"model": "metainfo.source", "pk": 10899, "fields": {"orig_filename": "Latabar_Kalman_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38", "author": "", "orig_id": 1412865}}, {"model": "metainfo.source", "pk": 10900, "fields": {"orig_filename": "Latas_Omer_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 38f.", "author": "", "orig_id": 1412866}}, {"model": "metainfo.source", "pk": 10901, "fields": {"orig_filename": "Latkoczy_Mihaly_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39", "author": "", "orig_id": 1412867}}, {"model": "metainfo.source", "pk": 10902, "fields": {"orig_filename": "Latkowski_Jozef_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39", "author": "", "orig_id": 1412868}}, {"model": "metainfo.source", "pk": 10903, "fields": {"orig_filename": "Latour-Thurmburg_Josef_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 39f.", "author": "", "orig_id": 1412869}}, {"model": "metainfo.source", "pk": 10904, "fields": {"orig_filename": "Latour-Voivre_Elvine_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412870}}, {"model": "metainfo.source", "pk": 10905, "fields": {"orig_filename": "Latschenberger_Johann_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412939}}, {"model": "metainfo.source", "pk": 10906, "fields": {"orig_filename": "Latscher-Lauendorf_Julius_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412942}}, {"model": "metainfo.source", "pk": 10907, "fields": {"orig_filename": "Latscher_Johann_1840_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40", "author": "", "orig_id": 1412940}}, {"model": "metainfo.source", "pk": 10908, "fields": {"orig_filename": "Latscher_Viktor_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 40f.", "author": "", "orig_id": 1412941}}, {"model": "metainfo.source", "pk": 10909, "fields": {"orig_filename": "Latschka_Adam_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412943}}, {"model": "metainfo.source", "pk": 10910, "fields": {"orig_filename": "Latterer-Lintenburg_Adolf-Constantin_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 41", "author": "", "orig_id": 1412944}}, {"model": "metainfo.source", "pk": 10911, "fields": {"orig_filename": "Latterer-Lintenburg_Joseph-Johann_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42", "author": "", "orig_id": 1412945}}, {"model": "metainfo.source", "pk": 10912, "fields": {"orig_filename": "Lattermann_Christoph_1753_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42", "author": "", "orig_id": 1412946}}, {"model": "metainfo.source", "pk": 10913, "fields": {"orig_filename": "Lattes_Elia_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 42f.", "author": "", "orig_id": 1412947}}, {"model": "metainfo.source", "pk": 10914, "fields": {"orig_filename": "Latzel_Robert_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43", "author": "", "orig_id": 1412948}}, {"model": "metainfo.source", "pk": 10915, "fields": {"orig_filename": "Latzina_Francisco_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43", "author": "", "orig_id": 1412949}}, {"model": "metainfo.source", "pk": 10916, "fields": {"orig_filename": "Latzko_Adolph-Andreas_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 43f.", "author": "", "orig_id": 1412950}}, {"model": "metainfo.source", "pk": 10917, "fields": {"orig_filename": "Latzko_Wilhelm_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44", "author": "", "orig_id": 1412951}}, {"model": "metainfo.source", "pk": 10918, "fields": {"orig_filename": "Laube_Gustav-Carl_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44f.", "author": "", "orig_id": 1412953}}, {"model": "metainfo.source", "pk": 10919, "fields": {"orig_filename": "Laube_Heinrich_1806_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 45f.", "author": "", "orig_id": 1412954}}, {"model": "metainfo.source", "pk": 10920, "fields": {"orig_filename": "Laube_Iduna_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46", "author": "", "orig_id": 1412955}}, {"model": "metainfo.source", "pk": 10921, "fields": {"orig_filename": "Laube_Josef_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46", "author": "", "orig_id": 1412956}}, {"model": "metainfo.source", "pk": 10922, "fields": {"orig_filename": "Laubheimer_Otto_1882_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 46f.", "author": "", "orig_id": 1412957}}, {"model": "metainfo.source", "pk": 10923, "fields": {"orig_filename": "Laub_Ferdinand_1832_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 44", "author": "", "orig_id": 1412952}}, {"model": "metainfo.source", "pk": 10924, "fields": {"orig_filename": "Lauche_Wilhelm_1859_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 47", "author": "", "orig_id": 1412958}}, {"model": "metainfo.source", "pk": 10925, "fields": {"orig_filename": "Lauda_Ernst_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2082311}}, {"model": "metainfo.source", "pk": 10926, "fields": {"orig_filename": "Lauda_Richard_1873_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 47f.", "author": "", "orig_id": 1412959}}, {"model": "metainfo.source", "pk": 10927, "fields": {"orig_filename": "Laudi_Vitale_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48", "author": "", "orig_id": 1412960}}, {"model": "metainfo.source", "pk": 10928, "fields": {"orig_filename": "Lauer_Joseph_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 48f.", "author": "", "orig_id": 1412962}}, {"model": "metainfo.source", "pk": 10929, "fields": {"orig_filename": "Laufberger_Ferdinand-Julius-Wilhelm_1829_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49", "author": "", "orig_id": 1413031}}, {"model": "metainfo.source", "pk": 10930, "fields": {"orig_filename": "Laufenauer_Karoly_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49", "author": "", "orig_id": 1413032}}, {"model": "metainfo.source", "pk": 10931, "fields": {"orig_filename": "Lauka_Gusztav_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 49f.", "author": "", "orig_id": 1413033}}, {"model": "metainfo.source", "pk": 10932, "fields": {"orig_filename": "Laurencin-Darmond_Ferdinand-Peter_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413034}}, {"model": "metainfo.source", "pk": 10933, "fields": {"orig_filename": "Laurenzi_Ludwig_1788_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413035}}, {"model": "metainfo.source", "pk": 10934, "fields": {"orig_filename": "Laurin_Franz-Xaver_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 50", "author": "", "orig_id": 1413036}}, {"model": "metainfo.source", "pk": 10935, "fields": {"orig_filename": "Laurin_Giambattista_1793_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413037}}, {"model": "metainfo.source", "pk": 10936, "fields": {"orig_filename": "Laurin_Vaclav_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413038}}, {"model": "metainfo.source", "pk": 10937, "fields": {"orig_filename": "Lauska_Franz_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51f.", "author": "", "orig_id": 1413040}}, {"model": "metainfo.source", "pk": 10938, "fields": {"orig_filename": "Laus_Heinrich_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 51", "author": "", "orig_id": 1413039}}, {"model": "metainfo.source", "pk": 10939, "fields": {"orig_filename": "Lautenburg_Sigmund_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413041}}, {"model": "metainfo.source", "pk": 10940, "fields": {"orig_filename": "Lauterer_Jakob_1777_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413042}}, {"model": "metainfo.source", "pk": 10941, "fields": {"orig_filename": "Lauzil_Karl_1842_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52f.", "author": "", "orig_id": 1413044}}, {"model": "metainfo.source", "pk": 10942, "fields": {"orig_filename": "Lauzi_Giovanni_1800_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 52", "author": "", "orig_id": 1413043}}, {"model": "metainfo.source", "pk": 10943, "fields": {"orig_filename": "Lavaggi_Gaspare_1849_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413045}}, {"model": "metainfo.source", "pk": 10944, "fields": {"orig_filename": "Lavotta_Jan_1764_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53", "author": "", "orig_id": 1413047}}, {"model": "metainfo.source", "pk": 10945, "fields": {"orig_filename": "Lavric_Karel_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 53f.", "author": "", "orig_id": 1413048}}, {"model": "metainfo.source", "pk": 10946, "fields": {"orig_filename": "Landriani_Giuseppe_1824_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415316}}, {"model": "metainfo.source", "pk": 10947, "fields": {"orig_filename": "Landriani_Paolo_1757_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415317}}, {"model": "metainfo.source", "pk": 10948, "fields": {"orig_filename": "Landsberger-Freideck_Adolf_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432f.", "author": "", "orig_id": 1415318}}, {"model": "metainfo.source", "pk": 10949, "fields": {"orig_filename": "Landsteiner_Karl-Borr_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 434f.", "author": "", "orig_id": 1415389}}, {"model": "metainfo.source", "pk": 10950, "fields": {"orig_filename": "Landsteiner_Karl_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 433f.", "author": "", "orig_id": 1415319}}, {"model": "metainfo.source", "pk": 10951, "fields": {"orig_filename": "Landwehr-Pragenau_Ottokar_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 435", "author": "", "orig_id": 1415390}}, {"model": "metainfo.source", "pk": 10952, "fields": {"orig_filename": "Landy_Friedrich-Ludwig_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 435f.", "author": "", "orig_id": 1415391}}, {"model": "metainfo.source", "pk": 10953, "fields": {"orig_filename": "Laner-Orsova_Victor_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415394}}, {"model": "metainfo.source", "pk": 10954, "fields": {"orig_filename": "Laner_Albino_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415392}}, {"model": "metainfo.source", "pk": 10955, "fields": {"orig_filename": "Laner_Georg_1778_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436", "author": "", "orig_id": 1415393}}, {"model": "metainfo.source", "pk": 10956, "fields": {"orig_filename": "Lanfranchi_Luigi_1782_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 436f.", "author": "", "orig_id": 1415395}}, {"model": "metainfo.source", "pk": 10957, "fields": {"orig_filename": "Lanfranconi_Enea-Grazioso_1850_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437", "author": "", "orig_id": 1415396}}, {"model": "metainfo.source", "pk": 10958, "fields": {"orig_filename": "Lanfrey_Anton_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437", "author": "", "orig_id": 1415397}}, {"model": "metainfo.source", "pk": 10959, "fields": {"orig_filename": "Lang-Csanakfalva_Lajos_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 445", "author": "", "orig_id": 1415488}}, {"model": "metainfo.source", "pk": 10960, "fields": {"orig_filename": "Lang-Hanstadt_Johannes-Nep_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 445f.", "author": "", "orig_id": 1415489}}, {"model": "metainfo.source", "pk": 10961, "fields": {"orig_filename": "Langauer_Franz_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446", "author": "", "orig_id": 1415490}}, {"model": "metainfo.source", "pk": 10962, "fields": {"orig_filename": "Lange-Burgenkron_Emil_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413837}}, {"model": "metainfo.source", "pk": 10963, "fields": {"orig_filename": "Lange-Burgenkron_Peter-Traugott_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413838}}, {"model": "metainfo.source", "pk": 10964, "fields": {"orig_filename": "Langenau_Eduard-George-Wilhelm_1787_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1", "author": "", "orig_id": 1413839}}, {"model": "metainfo.source", "pk": 10965, "fields": {"orig_filename": "Langenau_Ferdinand_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 1f.", "author": "", "orig_id": 1413840}}, {"model": "metainfo.source", "pk": 10966, "fields": {"orig_filename": "Langenau_Friedrich-Karl-Gustav_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2", "author": "", "orig_id": 1412479}}, {"model": "metainfo.source", "pk": 10967, "fields": {"orig_filename": "Langenbacher_Ferdinand_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2", "author": "", "orig_id": 1412480}}, {"model": "metainfo.source", "pk": 10968, "fields": {"orig_filename": "Langenbacher_Johann_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 2f.", "author": "", "orig_id": 1412481}}, {"model": "metainfo.source", "pk": 10969, "fields": {"orig_filename": "Langer-Edenberg_Karl_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 8", "author": "", "orig_id": 1412496}}, {"model": "metainfo.source", "pk": 10970, "fields": {"orig_filename": "Langer-Koningshoykt_Albert_1864_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 8f.", "author": "", "orig_id": 1412497}}, {"model": "metainfo.source", "pk": 10971, "fields": {"orig_filename": "Langer-Langenrode_Hermann_1875_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412498}}, {"model": "metainfo.source", "pk": 10972, "fields": {"orig_filename": "Langer-Lannsperg_Carl-Edmund_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412499}}, {"model": "metainfo.source", "pk": 10973, "fields": {"orig_filename": "Langer_Angela_1886_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 3", "author": "", "orig_id": 1412482}}, {"model": "metainfo.source", "pk": 10974, "fields": {"orig_filename": "Langer_Anton_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 3f.", "author": "", "orig_id": 1412483}}, {"model": "metainfo.source", "pk": 10975, "fields": {"orig_filename": "Langer_Eduard_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 4", "author": "", "orig_id": 1412484}}, {"model": "metainfo.source", "pk": 10976, "fields": {"orig_filename": "Langer_Jiri_1894_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 4f.", "author": "", "orig_id": 1412485}}, {"model": "metainfo.source", "pk": 10977, "fields": {"orig_filename": "Langer_Johann_1793_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5", "author": "", "orig_id": 1412486}}, {"model": "metainfo.source", "pk": 10978, "fields": {"orig_filename": "Langer_Johann_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5", "author": "", "orig_id": 1412487}}, {"model": "metainfo.source", "pk": 10979, "fields": {"orig_filename": "Langer_Josef-Jaroslav_1806_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6", "author": "", "orig_id": 1412489}}, {"model": "metainfo.source", "pk": 10980, "fields": {"orig_filename": "Langer_Josef_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 5f.", "author": "", "orig_id": 1412488}}, {"model": "metainfo.source", "pk": 10981, "fields": {"orig_filename": "Langer_Karl_1863_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6", "author": "", "orig_id": 1412490}}, {"model": "metainfo.source", "pk": 10982, "fields": {"orig_filename": "Langer_Robert_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 6f.", "author": "", "orig_id": 1412493}}, {"model": "metainfo.source", "pk": 10983, "fields": {"orig_filename": "Langer_Rudolf_1858_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412491}}, {"model": "metainfo.source", "pk": 10984, "fields": {"orig_filename": "Langer_Siegfried_1857_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412492}}, {"model": "metainfo.source", "pk": 10985, "fields": {"orig_filename": "Langer_Theodor_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7", "author": "", "orig_id": 1412494}}, {"model": "metainfo.source", "pk": 10986, "fields": {"orig_filename": "Langer_Theodor_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 7f.", "author": "", "orig_id": 1412495}}, {"model": "metainfo.source", "pk": 10987, "fields": {"orig_filename": "Lange_Aloysia-Maria-Antonia_1758_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446", "author": "", "orig_id": 1415491}}, {"model": "metainfo.source", "pk": 10988, "fields": {"orig_filename": "Lange_Antoni_1779_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 446f.", "author": "", "orig_id": 1415492}}, {"model": "metainfo.source", "pk": 10989, "fields": {"orig_filename": "Lange_Conrad_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447", "author": "", "orig_id": 1415493}}, {"model": "metainfo.source", "pk": 10990, "fields": {"orig_filename": "Lange_Fritz_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447", "author": "", "orig_id": 1415494}}, {"model": "metainfo.source", "pk": 10991, "fields": {"orig_filename": "Lange_Joseph_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 447f.", "author": "", "orig_id": 1415495}}, {"model": "metainfo.source", "pk": 10992, "fields": {"orig_filename": "Lange_Otto_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415496}}, {"model": "metainfo.source", "pk": 10993, "fields": {"orig_filename": "Lange_Paul_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415497}}, {"model": "metainfo.source", "pk": 10994, "fields": {"orig_filename": "Lange_Wilhelm_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 448", "author": "", "orig_id": 1415498}}, {"model": "metainfo.source", "pk": 10995, "fields": {"orig_filename": "Langhoffer_August_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9f.", "author": "", "orig_id": 1412573}}, {"model": "metainfo.source", "pk": 10996, "fields": {"orig_filename": "Langhy_Istvan_1796_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10", "author": "", "orig_id": 1412574}}, {"model": "metainfo.source", "pk": 10997, "fields": {"orig_filename": "Langh_Boldizsar_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412572}}, {"model": "metainfo.source", "pk": 10998, "fields": {"orig_filename": "Langkammer_Karl_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10", "author": "", "orig_id": 1412575}}, {"model": "metainfo.source", "pk": 10999, "fields": {"orig_filename": "Langkammer_Marianna-Margaretha_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 10f.", "author": "", "orig_id": 1412576}}, {"model": "metainfo.source", "pk": 11000, "fields": {"orig_filename": "Langl_Joseph_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 11", "author": "", "orig_id": 1412577}}, {"model": "metainfo.source", "pk": 11001, "fields": {"orig_filename": "Langmann_Philipp_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 11f.", "author": "", "orig_id": 1412578}}, {"model": "metainfo.source", "pk": 11002, "fields": {"orig_filename": "Langner_Karl_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412579}}, {"model": "metainfo.source", "pk": 11003, "fields": {"orig_filename": "Langthaler_Franz_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412580}}, {"model": "metainfo.source", "pk": 11004, "fields": {"orig_filename": "Langthaler_Johann-Bapt_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412581}}, {"model": "metainfo.source", "pk": 11005, "fields": {"orig_filename": "Langthaler_Matthias_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 12", "author": "", "orig_id": 1412582}}, {"model": "metainfo.source", "pk": 11006, "fields": {"orig_filename": "Langus_Henrika_1836_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412583}}, {"model": "metainfo.source", "pk": 11007, "fields": {"orig_filename": "Langus_Matej_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412584}}, {"model": "metainfo.source", "pk": 11008, "fields": {"orig_filename": "Langweil_Antonin_1791_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13", "author": "", "orig_id": 1412585}}, {"model": "metainfo.source", "pk": 11009, "fields": {"orig_filename": "Lang_Adam-Janos_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 437f.", "author": "", "orig_id": 1415398}}, {"model": "metainfo.source", "pk": 11010, "fields": {"orig_filename": "Lang_Adolf-Ferenc_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 438f.", "author": "", "orig_id": 1415400}}, {"model": "metainfo.source", "pk": 11011, "fields": {"orig_filename": "Lang_Adolf_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 438", "author": "", "orig_id": 1415399}}, {"model": "metainfo.source", "pk": 11012, "fields": {"orig_filename": "Lang_Alois_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 439", "author": "", "orig_id": 1415401}}, {"model": "metainfo.source", "pk": 11013, "fields": {"orig_filename": "Lang_Eduard_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 439f.", "author": "", "orig_id": 1415402}}, {"model": "metainfo.source", "pk": 11014, "fields": {"orig_filename": "Lang_Ella_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415403}}, {"model": "metainfo.source", "pk": 11015, "fields": {"orig_filename": "Lang_Franz-Xaver_1770_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415405}}, {"model": "metainfo.source", "pk": 11016, "fields": {"orig_filename": "Lang_Franz_1848_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415404}}, {"model": "metainfo.source", "pk": 11017, "fields": {"orig_filename": "Lang_Gustav-Johann_1838_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440", "author": "", "orig_id": 1415406}}, {"model": "metainfo.source", "pk": 11018, "fields": {"orig_filename": "Lang_Heinrich_1810_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 440f.", "author": "", "orig_id": 1415407}}, {"model": "metainfo.source", "pk": 11019, "fields": {"orig_filename": "Lang_Ignaz-Gabriel_1768_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415408}}, {"model": "metainfo.source", "pk": 11020, "fields": {"orig_filename": "Lang_Johann-Bapt-Fortunat_1775_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415411}}, {"model": "metainfo.source", "pk": 11021, "fields": {"orig_filename": "Lang_Johann-Bapt_1736_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415409}}, {"model": "metainfo.source", "pk": 11022, "fields": {"orig_filename": "Lang_Johann-Bapt_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 441", "author": "", "orig_id": 1415410}}, {"model": "metainfo.source", "pk": 11023, "fields": {"orig_filename": "Lang_Josef-Nikolaus_1776_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415412}}, {"model": "metainfo.source", "pk": 11024, "fields": {"orig_filename": "Lang_Josip_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442", "author": "", "orig_id": 1415413}}, {"model": "metainfo.source", "pk": 11025, "fields": {"orig_filename": "Lang_Karl-Maria_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 442f.", "author": "", "orig_id": 1415414}}, {"model": "metainfo.source", "pk": 11026, "fields": {"orig_filename": "Lang_Leonhard_1843_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 443", "author": "", "orig_id": 1415485}}, {"model": "metainfo.source", "pk": 11027, "fields": {"orig_filename": "Lang_Marie_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 443f.", "author": "", "orig_id": 1415486}}, {"model": "metainfo.source", "pk": 11028, "fields": {"orig_filename": "Lang_Victor_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 444f.", "author": "", "orig_id": 1415487}}, {"model": "metainfo.source", "pk": 11029, "fields": {"orig_filename": "Lanius_Frida_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 13f.", "author": "", "orig_id": 1412586}}, {"model": "metainfo.source", "pk": 11030, "fields": {"orig_filename": "Lanjus-Wellenburg_Friedrich_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14", "author": "", "orig_id": 1412587}}, {"model": "metainfo.source", "pk": 11031, "fields": {"orig_filename": "Lanjus-Wellenburg_Karl_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14", "author": "", "orig_id": 1412588}}, {"model": "metainfo.source", "pk": 11032, "fields": {"orig_filename": "Lanna_Adalbert_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 14f.", "author": "", "orig_id": 1412589}}, {"model": "metainfo.source", "pk": 11033, "fields": {"orig_filename": "Lanner_Alois_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 15", "author": "", "orig_id": 1412590}}, {"model": "metainfo.source", "pk": 11034, "fields": {"orig_filename": "Lanner_Joseph_1801_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 15f.", "author": "", "orig_id": 1412591}}, {"model": "metainfo.source", "pk": 11035, "fields": {"orig_filename": "Lanner_Katharina_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 16", "author": "", "orig_id": 1412592}}, {"model": "metainfo.source", "pk": 11036, "fields": {"orig_filename": "Lanner_Thaddaeus_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 16f.", "author": "", "orig_id": 1412593}}, {"model": "metainfo.source", "pk": 11037, "fields": {"orig_filename": "Lannoy_Heinrich-Eduard-Josef_1787_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 17", "author": "", "orig_id": 1412659}}, {"model": "metainfo.source", "pk": 11038, "fields": {"orig_filename": "Lanstjak_Pavel-Ferdinand_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 17f.", "author": "", "orig_id": 1412660}}, {"model": "metainfo.source", "pk": 11039, "fields": {"orig_filename": "Lantana_Giovanni-Battista_1793_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412661}}, {"model": "metainfo.source", "pk": 11040, "fields": {"orig_filename": "Lantner_Ferdinand_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412662}}, {"model": "metainfo.source", "pk": 11041, "fields": {"orig_filename": "Lantschner_Anton_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18", "author": "", "orig_id": 1412663}}, {"model": "metainfo.source", "pk": 11042, "fields": {"orig_filename": "Lantschner_Georg_1772_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 18f.", "author": "", "orig_id": 1412664}}, {"model": "metainfo.source", "pk": 11043, "fields": {"orig_filename": "Lantschner_Ludwig_1826_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412665}}, {"model": "metainfo.source", "pk": 11044, "fields": {"orig_filename": "Lanyi_Bertalan_1851_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20", "author": "", "orig_id": 1412669}}, {"model": "metainfo.source", "pk": 11045, "fields": {"orig_filename": "Lanyi_Karol_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20", "author": "", "orig_id": 1412670}}, {"model": "metainfo.source", "pk": 11046, "fields": {"orig_filename": "Lanyi_Samuel_1791_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 20f.", "author": "", "orig_id": 1412671}}, {"model": "metainfo.source", "pk": 11047, "fields": {"orig_filename": "Lany_Emil-Pavel_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 19", "author": "", "orig_id": 1412666}}, {"model": "metainfo.source", "pk": 11048, "fields": {"orig_filename": "Laemel_Simon_1766_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416396}}, {"model": "metainfo.source", "pk": 11049, "fields": {"orig_filename": "Laemmermayr_Ludwig_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401f.", "author": "", "orig_id": 1416397}}, {"model": "metainfo.source", "pk": 11050, "fields": {"orig_filename": "Lafar_Franz_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402", "author": "", "orig_id": 1416398}}, {"model": "metainfo.source", "pk": 11051, "fields": {"orig_filename": "Lafite_Carl_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402", "author": "", "orig_id": 1416399}}, {"model": "metainfo.source", "pk": 11052, "fields": {"orig_filename": "Lafite_Carl_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 402f.", "author": "", "orig_id": 1416400}}, {"model": "metainfo.source", "pk": 11053, "fields": {"orig_filename": "Lafite_Ernst_1826_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403", "author": "", "orig_id": 1416401}}, {"model": "metainfo.source", "pk": 11054, "fields": {"orig_filename": "Laginja_Matko_1852_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403", "author": "", "orig_id": 1416402}}, {"model": "metainfo.source", "pk": 11055, "fields": {"orig_filename": "Lahmer_Robert-Johann_1846_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416404}}, {"model": "metainfo.source", "pk": 11056, "fields": {"orig_filename": "Lahner_Gyoergy_1793_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416475}}, {"model": "metainfo.source", "pk": 11057, "fields": {"orig_filename": "Lahner_Johann-Georg_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416476}}, {"model": "metainfo.source", "pk": 11058, "fields": {"orig_filename": "Lahner_Karl_1842_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404", "author": "", "orig_id": 1416477}}, {"model": "metainfo.source", "pk": 11059, "fields": {"orig_filename": "Lah_Ivan_1881_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 403f.", "author": "", "orig_id": 1416403}}, {"model": "metainfo.source", "pk": 11060, "fields": {"orig_filename": "Laichter_Jan_1858_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 404f.", "author": "", "orig_id": 1416478}}, {"model": "metainfo.source", "pk": 11061, "fields": {"orig_filename": "Laichter_Josef_1864_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405", "author": "", "orig_id": 1419389}}, {"model": "metainfo.source", "pk": 11062, "fields": {"orig_filename": "Laimegger_Josef_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405", "author": "", "orig_id": 1416479}}, {"model": "metainfo.source", "pk": 11063, "fields": {"orig_filename": "Laimer_Josef_1794_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 405f.", "author": "", "orig_id": 1416480}}, {"model": "metainfo.source", "pk": 11064, "fields": {"orig_filename": "Lainer_Alexander_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406", "author": "", "orig_id": 1416481}}, {"model": "metainfo.source", "pk": 11065, "fields": {"orig_filename": "Lair_Franz-Xaver_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406", "author": "", "orig_id": 1416482}}, {"model": "metainfo.source", "pk": 11066, "fields": {"orig_filename": "Laitner_Paul_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 406f.", "author": "", "orig_id": 1416483}}, {"model": "metainfo.source", "pk": 11067, "fields": {"orig_filename": "Laizner_Josef_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416484}}, {"model": "metainfo.source", "pk": 11068, "fields": {"orig_filename": "Lakatos_Karoly_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416485}}, {"model": "metainfo.source", "pk": 11069, "fields": {"orig_filename": "Lakatos_Sandor_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416486}}, {"model": "metainfo.source", "pk": 11070, "fields": {"orig_filename": "Lakits_Ferenc_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407", "author": "", "orig_id": 1416487}}, {"model": "metainfo.source", "pk": 11071, "fields": {"orig_filename": "Lakits_Juraj-Zigmund_1739_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 407f.", "author": "", "orig_id": 1416488}}, {"model": "metainfo.source", "pk": 11072, "fields": {"orig_filename": "Laky_Janos-Demeter_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416489}}, {"model": "metainfo.source", "pk": 11073, "fields": {"orig_filename": "Lalic_Nikola_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416490}}, {"model": "metainfo.source", "pk": 11074, "fields": {"orig_filename": "Lallemand_Friedrich_1812_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408", "author": "", "orig_id": 1416491}}, {"model": "metainfo.source", "pk": 11075, "fields": {"orig_filename": "Lallemand_Marcus-Conrad_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 408f.", "author": "", "orig_id": 1416492}}, {"model": "metainfo.source", "pk": 11076, "fields": {"orig_filename": "Lallemand_Siegmund_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409", "author": "", "orig_id": 1416493}}, {"model": "metainfo.source", "pk": 11077, "fields": {"orig_filename": "Lamatsch-Warnemuende_Paul_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410", "author": "", "orig_id": 1416497}}, {"model": "metainfo.source", "pk": 11078, "fields": {"orig_filename": "Lamatsch_Johann_1817_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410", "author": "", "orig_id": 1416496}}, {"model": "metainfo.source", "pk": 11079, "fields": {"orig_filename": "Lama_Matthias_1780_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409f.", "author": "", "orig_id": 1416495}}, {"model": "metainfo.source", "pk": 11080, "fields": {"orig_filename": "Lambel_Hans_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 410f.", "author": "", "orig_id": 1416498}}, {"model": "metainfo.source", "pk": 11081, "fields": {"orig_filename": "Lamberg-Sprinzenstein_Anton-Franz-De-Paula_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412", "author": "", "orig_id": 1416569}}, {"model": "metainfo.source", "pk": 11082, "fields": {"orig_filename": "Lamberg_Carl-Raimund_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416499}}, {"model": "metainfo.source", "pk": 11083, "fields": {"orig_filename": "Lamberg_Franz-Emerich_1832_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416567}}, {"model": "metainfo.source", "pk": 11084, "fields": {"orig_filename": "Lamberg_Hugo-Raimund_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 411", "author": "", "orig_id": 1416568}}, {"model": "metainfo.source", "pk": 11085, "fields": {"orig_filename": "Lamberti_Camille-Joseph_1747_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412f.", "author": "", "orig_id": 1416571}}, {"model": "metainfo.source", "pk": 11086, "fields": {"orig_filename": "Lamberti_Giacomo_1762_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413", "author": "", "orig_id": 1416572}}, {"model": "metainfo.source", "pk": 11087, "fields": {"orig_filename": "Lamberti_Luigi_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413", "author": "", "orig_id": 1416573}}, {"model": "metainfo.source", "pk": 11088, "fields": {"orig_filename": "Lambertz_Maximilian_1882_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1459440}}, {"model": "metainfo.source", "pk": 11089, "fields": {"orig_filename": "Lambert_Adam_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 412", "author": "", "orig_id": 1416570}}, {"model": "metainfo.source", "pk": 11090, "fields": {"orig_filename": "Lambl_Johann-Bapt_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 413f.", "author": "", "orig_id": 1416574}}, {"model": "metainfo.source", "pk": 11091, "fields": {"orig_filename": "Lambl_Karl_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416575}}, {"model": "metainfo.source", "pk": 11092, "fields": {"orig_filename": "Lambl_Vilem-Dusan_1824_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416576}}, {"model": "metainfo.source", "pk": 11093, "fields": {"orig_filename": "Lamborg_Otto_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416577}}, {"model": "metainfo.source", "pk": 11094, "fields": {"orig_filename": "Lambrecht_Rudolf_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414", "author": "", "orig_id": 1416578}}, {"model": "metainfo.source", "pk": 11095, "fields": {"orig_filename": "Lamezan-Salins_Eduard_1835_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 414f.", "author": "", "orig_id": 1416579}}, {"model": "metainfo.source", "pk": 11096, "fields": {"orig_filename": "Lamezan-Salins_Robert_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 415", "author": "", "orig_id": 1416580}}, {"model": "metainfo.source", "pk": 11097, "fields": {"orig_filename": "Lammasch_Heinrich_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 415f.", "author": "", "orig_id": 1416581}}, {"model": "metainfo.source", "pk": 11098, "fields": {"orig_filename": "Lammer_Eugen-Guido_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 416f.", "author": "", "orig_id": 1416583}}, {"model": "metainfo.source", "pk": 11099, "fields": {"orig_filename": "Lamotte-Frintropp_Franz_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 417", "author": "", "orig_id": 1416584}}, {"model": "metainfo.source", "pk": 11100, "fields": {"orig_filename": "Lampa_Anton_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 417f.", "author": "", "orig_id": 1416585}}, {"model": "metainfo.source", "pk": 11101, "fields": {"orig_filename": "Lampel_Josef_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418f.", "author": "", "orig_id": 1416587}}, {"model": "metainfo.source", "pk": 11102, "fields": {"orig_filename": "Lampertico_Fedele_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419", "author": "", "orig_id": 1416652}}, {"model": "metainfo.source", "pk": 11103, "fields": {"orig_filename": "Lampert_Carl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419", "author": "", "orig_id": 1416651}}, {"model": "metainfo.source", "pk": 11104, "fields": {"orig_filename": "Lampe_Evgen_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418", "author": "", "orig_id": 1416582}}, {"model": "metainfo.source", "pk": 11105, "fields": {"orig_filename": "Lampe_Francisek_1859_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 418", "author": "", "orig_id": 1416586}}, {"model": "metainfo.source", "pk": 11106, "fields": {"orig_filename": "Lampi_Alexander_1810_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 419f.", "author": "", "orig_id": 1416653}}, {"model": "metainfo.source", "pk": 11107, "fields": {"orig_filename": "Lampi_Franz-Ferdinand_1782_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 420", "author": "", "orig_id": 1416654}}, {"model": "metainfo.source", "pk": 11108, "fields": {"orig_filename": "Lampi_Johann-Bapt-Matthias_1807_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416657}}, {"model": "metainfo.source", "pk": 11109, "fields": {"orig_filename": "Lampi_Johann-Bapt_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 420", "author": "", "orig_id": 1416655}}, {"model": "metainfo.source", "pk": 11110, "fields": {"orig_filename": "Lampi_Johann-Bapt_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416656}}, {"model": "metainfo.source", "pk": 11111, "fields": {"orig_filename": "Lamprecht_Johann-Ev_1816_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421", "author": "", "orig_id": 1416658}}, {"model": "metainfo.source", "pk": 11112, "fields": {"orig_filename": "Lamprecht_Lukas_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 421f.", "author": "", "orig_id": 1416659}}, {"model": "metainfo.source", "pk": 11113, "fields": {"orig_filename": "Lamprecht_Rudolf_1781_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416660}}, {"model": "metainfo.source", "pk": 11114, "fields": {"orig_filename": "Lampugnani_Achille_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416661}}, {"model": "metainfo.source", "pk": 11115, "fields": {"orig_filename": "Lampugnani_Alessandro__1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416662}}, {"model": "metainfo.source", "pk": 11116, "fields": {"orig_filename": "Lam_Jan-Pawel-Ferdynand_1838_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 409", "author": "", "orig_id": 1416494}}, {"model": "metainfo.source", "pk": 11117, "fields": {"orig_filename": "Lancerotto_Egisto_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422", "author": "", "orig_id": 1416663}}, {"model": "metainfo.source", "pk": 11118, "fields": {"orig_filename": "Lancetti_Vincenzo_1767_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 422f.", "author": "", "orig_id": 1416664}}, {"model": "metainfo.source", "pk": 11119, "fields": {"orig_filename": "Lanckoronski-Brzezie_Karl_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423", "author": "", "orig_id": 1416665}}, {"model": "metainfo.source", "pk": 11120, "fields": {"orig_filename": "Lanczy_Gyula_1850_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423", "author": "", "orig_id": 1416666}}, {"model": "metainfo.source", "pk": 11121, "fields": {"orig_filename": "Lanczy_Ilka_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 423f.", "author": "", "orig_id": 1416667}}, {"model": "metainfo.source", "pk": 11122, "fields": {"orig_filename": "Lanczy_Leo_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416668}}, {"model": "metainfo.source", "pk": 11123, "fields": {"orig_filename": "Landauer_Robert_1908_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427", "author": "", "orig_id": 1415300}}, {"model": "metainfo.source", "pk": 11124, "fields": {"orig_filename": "Landauer_Stephan_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427f.", "author": "", "orig_id": 1415301}}, {"model": "metainfo.source", "pk": 11125, "fields": {"orig_filename": "Landau_Alajos_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416669}}, {"model": "metainfo.source", "pk": 11126, "fields": {"orig_filename": "Landau_Alfred_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424", "author": "", "orig_id": 1416670}}, {"model": "metainfo.source", "pk": 11127, "fields": {"orig_filename": "Landau_Hermann-Joseph_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 424f.", "author": "", "orig_id": 1416671}}, {"model": "metainfo.source", "pk": 11128, "fields": {"orig_filename": "Landau_Israel_1758_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416672}}, {"model": "metainfo.source", "pk": 11129, "fields": {"orig_filename": "Landau_Jehuda-Leib_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416673}}, {"model": "metainfo.source", "pk": 11130, "fields": {"orig_filename": "Landau_Jehuda-Menachem_1861_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425", "author": "", "orig_id": 1416674}}, {"model": "metainfo.source", "pk": 11131, "fields": {"orig_filename": "Landau_Leopold_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415296}}, {"model": "metainfo.source", "pk": 11132, "fields": {"orig_filename": "Landau_Leo_1877_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 425f.", "author": "", "orig_id": 1416675}}, {"model": "metainfo.source", "pk": 11133, "fields": {"orig_filename": "Landau_Leo_1878_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415295}}, {"model": "metainfo.source", "pk": 11134, "fields": {"orig_filename": "Landau_Leo_1891_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1459628}}, {"model": "metainfo.source", "pk": 11135, "fields": {"orig_filename": "Landau_Markus_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426", "author": "", "orig_id": 1415297}}, {"model": "metainfo.source", "pk": 11136, "fields": {"orig_filename": "Landau_Max_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 426f.", "author": "", "orig_id": 1415298}}, {"model": "metainfo.source", "pk": 11137, "fields": {"orig_filename": "Landau_Max_1886_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 427", "author": "", "orig_id": 1415299}}, {"model": "metainfo.source", "pk": 11138, "fields": {"orig_filename": "Landerer-Fueskut_Lajos_1800_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415302}}, {"model": "metainfo.source", "pk": 11139, "fields": {"orig_filename": "Landesberger_Adolf_1858_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415304}}, {"model": "metainfo.source", "pk": 11140, "fields": {"orig_filename": "Landesberg_Alexander_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428", "author": "", "orig_id": 1415303}}, {"model": "metainfo.source", "pk": 11141, "fields": {"orig_filename": "Landesmann_Heinrich_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 428f.", "author": "", "orig_id": 1415305}}, {"model": "metainfo.source", "pk": 11142, "fields": {"orig_filename": "Landfras_Alois-Josef_1797_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 429f.", "author": "", "orig_id": 1415306}}, {"model": "metainfo.source", "pk": 11143, "fields": {"orig_filename": "Landi-Pindemonte_Isotta_1750_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430", "author": "", "orig_id": 1415307}}, {"model": "metainfo.source", "pk": 11144, "fields": {"orig_filename": "Landler_Jenoe_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430", "author": "", "orig_id": 1415308}}, {"model": "metainfo.source", "pk": 11145, "fields": {"orig_filename": "Landmann_Julius_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 430f.", "author": "", "orig_id": 1415309}}, {"model": "metainfo.source", "pk": 11146, "fields": {"orig_filename": "Landner_Johann-Bapt_1780_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415310}}, {"model": "metainfo.source", "pk": 11147, "fields": {"orig_filename": "Landner_Josef_1883_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415311}}, {"model": "metainfo.source", "pk": 11148, "fields": {"orig_filename": "Landriani_Alessandro_1856_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431", "author": "", "orig_id": 1415312}}, {"model": "metainfo.source", "pk": 11149, "fields": {"orig_filename": "Landriani_Carlo_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 431f.", "author": "", "orig_id": 1415313}}, {"model": "metainfo.source", "pk": 11150, "fields": {"orig_filename": "Landriani_Carlo_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415314}}, {"model": "metainfo.source", "pk": 11151, "fields": {"orig_filename": "Landriani_Gaetano_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 432", "author": "", "orig_id": 1415315}}, {"model": "metainfo.source", "pk": 11152, "fields": {"orig_filename": "Kurzbauer_Josefine_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416021}}, {"model": "metainfo.source", "pk": 11153, "fields": {"orig_filename": "Kurzova_Ruzena_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416022}}, {"model": "metainfo.source", "pk": 11154, "fields": {"orig_filename": "Kurzweil_Max_1867_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369f.", "author": "", "orig_id": 1416023}}, {"model": "metainfo.source", "pk": 11155, "fields": {"orig_filename": "Kurzwernhart_Robert_1824_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370", "author": "", "orig_id": 1416024}}, {"model": "metainfo.source", "pk": 11156, "fields": {"orig_filename": "Kurz_Anton_1799_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 366", "author": "", "orig_id": 1415942}}, {"model": "metainfo.source", "pk": 11157, "fields": {"orig_filename": "Kurz_Franz_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 366", "author": "", "orig_id": 1415943}}, {"model": "metainfo.source", "pk": 11158, "fields": {"orig_filename": "Kurz_Karl-Friedrich_1852_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367", "author": "", "orig_id": 1415944}}, {"model": "metainfo.source", "pk": 11159, "fields": {"orig_filename": "Kurz_Selma_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367", "author": "", "orig_id": 1416014}}, {"model": "metainfo.source", "pk": 11160, "fields": {"orig_filename": "Kurz_Vilem_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 367f.", "author": "", "orig_id": 1416015}}, {"model": "metainfo.source", "pk": 11161, "fields": {"orig_filename": "Kusar_Marcel_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370", "author": "", "orig_id": 1416025}}, {"model": "metainfo.source", "pk": 11162, "fields": {"orig_filename": "Kuschar_Rudolf_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 370f.", "author": "", "orig_id": 1416026}}, {"model": "metainfo.source", "pk": 11163, "fields": {"orig_filename": "Kusdas_Rudolf_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371", "author": "", "orig_id": 1416027}}, {"model": "metainfo.source", "pk": 11164, "fields": {"orig_filename": "Kusej_Radoslav_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371", "author": "", "orig_id": 1416028}}, {"model": "metainfo.source", "pk": 11165, "fields": {"orig_filename": "Kuslan_Dragojlo_1817_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 371f.", "author": "", "orig_id": 1416029}}, {"model": "metainfo.source", "pk": 11166, "fields": {"orig_filename": "Kusmanek-Burgneustaedten_Hermann_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372", "author": "", "orig_id": 1416030}}, {"model": "metainfo.source", "pk": 11167, "fields": {"orig_filename": "Kuster_Josef_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372", "author": "", "orig_id": 1416031}}, {"model": "metainfo.source", "pk": 11168, "fields": {"orig_filename": "Kusy-Dubrav_Emanuel_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373", "author": "", "orig_id": 1416033}}, {"model": "metainfo.source", "pk": 11169, "fields": {"orig_filename": "Kusy_Wolfgang_1842_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 372f.", "author": "", "orig_id": 1416032}}, {"model": "metainfo.source", "pk": 11170, "fields": {"orig_filename": "Kuthy_Lajos_1813_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373", "author": "", "orig_id": 1416034}}, {"model": "metainfo.source", "pk": 11171, "fields": {"orig_filename": "Kutiak_August-Ignaz_1881_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 373f.", "author": "", "orig_id": 1416035}}, {"model": "metainfo.source", "pk": 11172, "fields": {"orig_filename": "Kutrzeba_Stanislaw_1876_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374", "author": "", "orig_id": 1416036}}, {"model": "metainfo.source", "pk": 11173, "fields": {"orig_filename": "Kutscha-Lissberg_Ida_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374", "author": "", "orig_id": 1416037}}, {"model": "metainfo.source", "pk": 11174, "fields": {"orig_filename": "Kutschera-Woborsky_Oswald_1887_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 376", "author": "", "orig_id": 1416114}}, {"model": "metainfo.source", "pk": 11175, "fields": {"orig_filename": "Kutschera_Fritz_1883_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 374f.", "author": "", "orig_id": 1416108}}, {"model": "metainfo.source", "pk": 11176, "fields": {"orig_filename": "Kutschera_Hugo_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416109}}, {"model": "metainfo.source", "pk": 11177, "fields": {"orig_filename": "Kutschera_Johann-Nep_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416110}}, {"model": "metainfo.source", "pk": 11178, "fields": {"orig_filename": "Kutschera_Richard_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416111}}, {"model": "metainfo.source", "pk": 11179, "fields": {"orig_filename": "Kutschera_Tilly_1890_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375", "author": "", "orig_id": 1416112}}, {"model": "metainfo.source", "pk": 11180, "fields": {"orig_filename": "Kutschera_Viktor_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 375f.", "author": "", "orig_id": 1416113}}, {"model": "metainfo.source", "pk": 11181, "fields": {"orig_filename": "Kutschker_Johann-Rudolf_1810_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 376f.", "author": "", "orig_id": 1416115}}, {"model": "metainfo.source", "pk": 11182, "fields": {"orig_filename": "Kuttnar_Franz-Xaver_1793_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416116}}, {"model": "metainfo.source", "pk": 11183, "fields": {"orig_filename": "Kuun-Osdola_Geza_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416117}}, {"model": "metainfo.source", "pk": 11184, "fields": {"orig_filename": "Kuun-Osdola_Kocsard_1803_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377", "author": "", "orig_id": 1416118}}, {"model": "metainfo.source", "pk": 11185, "fields": {"orig_filename": "Kuwasseg_Josef_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 377f.", "author": "", "orig_id": 1416119}}, {"model": "metainfo.source", "pk": 11186, "fields": {"orig_filename": "Kuwasseg_Karl-Josef_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378", "author": "", "orig_id": 1416120}}, {"model": "metainfo.source", "pk": 11187, "fields": {"orig_filename": "Kuwasseg_Leopold_1804_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378", "author": "", "orig_id": 1416121}}, {"model": "metainfo.source", "pk": 11188, "fields": {"orig_filename": "Kux_Johann_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 378f.", "author": "", "orig_id": 1416122}}, {"model": "metainfo.source", "pk": 11189, "fields": {"orig_filename": "Kuzel_Hans_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379", "author": "", "orig_id": 1416123}}, {"model": "metainfo.source", "pk": 11190, "fields": {"orig_filename": "Kuzmanic_Ante_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379f.", "author": "", "orig_id": 1416125}}, {"model": "metainfo.source", "pk": 11191, "fields": {"orig_filename": "Kuzmanovic_Adalbert_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380", "author": "", "orig_id": 1416126}}, {"model": "metainfo.source", "pk": 11192, "fields": {"orig_filename": "Kuzmany_Karol_1806_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380", "author": "", "orig_id": 1419388}}, {"model": "metainfo.source", "pk": 11193, "fields": {"orig_filename": "Kuzma_Bohumil_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 379", "author": "", "orig_id": 1416124}}, {"model": "metainfo.source", "pk": 11194, "fields": {"orig_filename": "Kuzmik_Pal_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 380f.", "author": "", "orig_id": 1416127}}, {"model": "metainfo.source", "pk": 11195, "fields": {"orig_filename": "Kuzsinszky_Balint_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416128}}, {"model": "metainfo.source", "pk": 11196, "fields": {"orig_filename": "Kvacala_Jan_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416129}}, {"model": "metainfo.source", "pk": 11197, "fields": {"orig_filename": "Kvapil_Frantisek_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381", "author": "", "orig_id": 1416198}}, {"model": "metainfo.source", "pk": 11198, "fields": {"orig_filename": "Kvapil_Jaroslav_1868_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 381f.", "author": "", "orig_id": 1416199}}, {"model": "metainfo.source", "pk": 11199, "fields": {"orig_filename": "Kvassay_Jenoe_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 382f.", "author": "", "orig_id": 1416200}}, {"model": "metainfo.source", "pk": 11200, "fields": {"orig_filename": "Kvaternik_Eugen_1825_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 383", "author": "", "orig_id": 1416201}}, {"model": "metainfo.source", "pk": 11201, "fields": {"orig_filename": "Kvaternik_Slavko_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 383f.", "author": "", "orig_id": 1416202}}, {"model": "metainfo.source", "pk": 11202, "fields": {"orig_filename": "Kveder_Zofka_1878_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 384", "author": "", "orig_id": 1416203}}, {"model": "metainfo.source", "pk": 11203, "fields": {"orig_filename": "Kvet_Frantisek-Bolemir_1825_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 384", "author": "", "orig_id": 1416204}}, {"model": "metainfo.source", "pk": 11204, "fields": {"orig_filename": "Kvicala_Jan_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385", "author": "", "orig_id": 1416205}}, {"model": "metainfo.source", "pk": 11205, "fields": {"orig_filename": "Kwapil_Johann_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385", "author": "", "orig_id": 1416206}}, {"model": "metainfo.source", "pk": 11206, "fields": {"orig_filename": "Kwaysser_Marie_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 385f.", "author": "", "orig_id": 1416207}}, {"model": "metainfo.source", "pk": 11207, "fields": {"orig_filename": "Kwietniewski_Kazimierz_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416208}}, {"model": "metainfo.source", "pk": 11208, "fields": {"orig_filename": "Kwisda_Adolf_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416209}}, {"model": "metainfo.source", "pk": 11209, "fields": {"orig_filename": "Kwisda_Ferdinand_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386", "author": "", "orig_id": 1416210}}, {"model": "metainfo.source", "pk": 11210, "fields": {"orig_filename": "Kwizda-Hochstern_Franz-Johann_1827_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 386f.", "author": "", "orig_id": 1416211}}, {"model": "metainfo.source", "pk": 11211, "fields": {"orig_filename": "Kypta_Johann_1813_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 387", "author": "", "orig_id": 1416212}}, {"model": "metainfo.source", "pk": 11212, "fields": {"orig_filename": "Kyrle_Georg_1887_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 387f.", "author": "", "orig_id": 1416213}}, {"model": "metainfo.source", "pk": 11213, "fields": {"orig_filename": "Kyrle_Josef_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 388", "author": "", "orig_id": 1416214}}, {"model": "metainfo.source", "pk": 11214, "fields": {"orig_filename": "Kyselak_Joseph_1799_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389", "author": "", "orig_id": 1416216}}, {"model": "metainfo.source", "pk": 11215, "fields": {"orig_filename": "Kysela_Frantisek_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 388f.", "author": "", "orig_id": 1416215}}, {"model": "metainfo.source", "pk": 11216, "fields": {"orig_filename": "Laaba-Rosenfeld_Menrad_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389", "author": "", "orig_id": 1416217}}, {"model": "metainfo.source", "pk": 11217, "fields": {"orig_filename": "Laban_Ferdinand_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 389f.", "author": "", "orig_id": 1416218}}, {"model": "metainfo.source", "pk": 11218, "fields": {"orig_filename": "Labitzky_August_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 390", "author": "", "orig_id": 1416219}}, {"model": "metainfo.source", "pk": 11219, "fields": {"orig_filename": "Labitzky_Frantisek-Josef_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 390f.", "author": "", "orig_id": 1416287}}, {"model": "metainfo.source", "pk": 11220, "fields": {"orig_filename": "Labler_Ludvik_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416288}}, {"model": "metainfo.source", "pk": 11221, "fields": {"orig_filename": "Labler_Wladimir_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416289}}, {"model": "metainfo.source", "pk": 11222, "fields": {"orig_filename": "Laborfalvy_Roza_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391f.", "author": "", "orig_id": 1416291}}, {"model": "metainfo.source", "pk": 11223, "fields": {"orig_filename": "Labor_Josef_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 391", "author": "", "orig_id": 1416290}}, {"model": "metainfo.source", "pk": 11224, "fields": {"orig_filename": "Labus_Carlo_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416292}}, {"model": "metainfo.source", "pk": 11225, "fields": {"orig_filename": "Labus_Giovanni-Antonio_1806_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416294}}, {"model": "metainfo.source", "pk": 11226, "fields": {"orig_filename": "Labus_Giovanni_1775_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392", "author": "", "orig_id": 1416293}}, {"model": "metainfo.source", "pk": 11227, "fields": {"orig_filename": "Laccataris_Demeter_1798_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 392f.", "author": "", "orig_id": 1416295}}, {"model": "metainfo.source", "pk": 11228, "fields": {"orig_filename": "Lacher_Karl_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393", "author": "", "orig_id": 1416297}}, {"model": "metainfo.source", "pk": 11229, "fields": {"orig_filename": "Lachmann_Friedrich_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393f.", "author": "", "orig_id": 1416298}}, {"model": "metainfo.source", "pk": 11230, "fields": {"orig_filename": "Lachmayr_Johann_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394", "author": "", "orig_id": 1416299}}, {"model": "metainfo.source", "pk": 11231, "fields": {"orig_filename": "Lachnith_Ludwig-Wenzel_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394", "author": "", "orig_id": 1416300}}, {"model": "metainfo.source", "pk": 11232, "fields": {"orig_filename": "Lachowicz_Bronislaw_1857_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 394f.", "author": "", "orig_id": 1416301}}, {"model": "metainfo.source", "pk": 11233, "fields": {"orig_filename": "Lach_Friedrich_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 393", "author": "", "orig_id": 1416296}}, {"model": "metainfo.source", "pk": 11234, "fields": {"orig_filename": "Lacina_Josef_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416302}}, {"model": "metainfo.source", "pk": 11235, "fields": {"orig_filename": "Lackner_Hans_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416304}}, {"model": "metainfo.source", "pk": 11236, "fields": {"orig_filename": "Lackner_Johann_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395f.", "author": "", "orig_id": 1416305}}, {"model": "metainfo.source", "pk": 11237, "fields": {"orig_filename": "Lack_Stanislaw_1876_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 395", "author": "", "orig_id": 1416303}}, {"model": "metainfo.source", "pk": 11238, "fields": {"orig_filename": "Laczai-Szabo_Jozsef_1764_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396", "author": "", "orig_id": 1416307}}, {"model": "metainfo.source", "pk": 11239, "fields": {"orig_filename": "Laczko_Dezsoe_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396", "author": "", "orig_id": 1416308}}, {"model": "metainfo.source", "pk": 11240, "fields": {"orig_filename": "Ladanyi_Gedeon_1824_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 396f.", "author": "", "orig_id": 1416310}}, {"model": "metainfo.source", "pk": 11241, "fields": {"orig_filename": "Ladecky_Jan_1861_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397", "author": "", "orig_id": 1416381}}, {"model": "metainfo.source", "pk": 11242, "fields": {"orig_filename": "Ladinig_Martin_1852_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397", "author": "", "orig_id": 1416382}}, {"model": "metainfo.source", "pk": 11243, "fields": {"orig_filename": "Ladnowski_Aleksander_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 397f.", "author": "", "orig_id": 1416383}}, {"model": "metainfo.source", "pk": 11244, "fields": {"orig_filename": "Ladstaetter_Peter_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 398", "author": "", "orig_id": 1416384}}, {"model": "metainfo.source", "pk": 11245, "fields": {"orig_filename": "Ladstaetter_Peter_1816_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 398f.", "author": "", "orig_id": 1416385}}, {"model": "metainfo.source", "pk": 11246, "fields": {"orig_filename": "Ladurner_Adolf_1798_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416386}}, {"model": "metainfo.source", "pk": 11247, "fields": {"orig_filename": "Ladurner_Alois_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416387}}, {"model": "metainfo.source", "pk": 11248, "fields": {"orig_filename": "Ladurner_Anton_1795_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399", "author": "", "orig_id": 1416388}}, {"model": "metainfo.source", "pk": 11249, "fields": {"orig_filename": "Ladurner_Ignaz-Anton_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 399f.", "author": "", "orig_id": 1416389}}, {"model": "metainfo.source", "pk": 11250, "fields": {"orig_filename": "Ladurner_Joseph-Alois_1769_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416390}}, {"model": "metainfo.source", "pk": 11251, "fields": {"orig_filename": "Ladurner_Joseph-Jacob_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416391}}, {"model": "metainfo.source", "pk": 11252, "fields": {"orig_filename": "Ladurner_Justinian_1808_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400", "author": "", "orig_id": 1416392}}, {"model": "metainfo.source", "pk": 11253, "fields": {"orig_filename": "Ladurner_Matthias_1772_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 400f.", "author": "", "orig_id": 1416393}}, {"model": "metainfo.source", "pk": 11254, "fields": {"orig_filename": "Ladziansky-Ledenyi_Julius_1903_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416394}}, {"model": "metainfo.source", "pk": 11255, "fields": {"orig_filename": "Laemel_Leopold_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 20, 1969), S. 401", "author": "", "orig_id": 1416395}}, {"model": "metainfo.source", "pk": 11256, "fields": {"orig_filename": "Kuhn_Carl-Friedrich_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415571}}, {"model": "metainfo.source", "pk": 11257, "fields": {"orig_filename": "Kuhn_Dismas_1834_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335f.", "author": "", "orig_id": 1415572}}, {"model": "metainfo.source", "pk": 11258, "fields": {"orig_filename": "Kuhn_Ernst_1859_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336", "author": "", "orig_id": 1415573}}, {"model": "metainfo.source", "pk": 11259, "fields": {"orig_filename": "Kuhn_Franz-Xaver_1888_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336", "author": "", "orig_id": 1415574}}, {"model": "metainfo.source", "pk": 11260, "fields": {"orig_filename": "Kuh_Anton_1890_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1458929}}, {"model": "metainfo.source", "pk": 11261, "fields": {"orig_filename": "Kuh_David_1819_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 332f.", "author": "", "orig_id": 1415564}}, {"model": "metainfo.source", "pk": 11262, "fields": {"orig_filename": "Kuh_Emil_1828_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333", "author": "", "orig_id": 1415565}}, {"model": "metainfo.source", "pk": 11263, "fields": {"orig_filename": "Kujundzic_Kosta_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337", "author": "", "orig_id": 1415577}}, {"model": "metainfo.source", "pk": 11264, "fields": {"orig_filename": "Kukovic_Josip_1782_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415651}}, {"model": "metainfo.source", "pk": 11265, "fields": {"orig_filename": "Kukucin_Martin_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415652}}, {"model": "metainfo.source", "pk": 11266, "fields": {"orig_filename": "Kukula_Otakar_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415653}}, {"model": "metainfo.source", "pk": 11267, "fields": {"orig_filename": "Kukula_Richard-Cornelius_1862_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339", "author": "", "orig_id": 1415655}}, {"model": "metainfo.source", "pk": 11268, "fields": {"orig_filename": "Kukula_Richard_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339", "author": "", "orig_id": 1415654}}, {"model": "metainfo.source", "pk": 11269, "fields": {"orig_filename": "Kukuljevic-Sakcinski_Ivan_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 339f.", "author": "", "orig_id": 1415656}}, {"model": "metainfo.source", "pk": 11270, "fields": {"orig_filename": "Kuk_Karl_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337f.", "author": "", "orig_id": 1415578}}, {"model": "metainfo.source", "pk": 11271, "fields": {"orig_filename": "Kuk_Wladimir_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 338", "author": "", "orig_id": 1415650}}, {"model": "metainfo.source", "pk": 11272, "fields": {"orig_filename": "Kulczycki_Ludwik_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 340", "author": "", "orig_id": 1415657}}, {"model": "metainfo.source", "pk": 11273, "fields": {"orig_filename": "Kulda_Benes-Metod_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 340f.", "author": "", "orig_id": 1415658}}, {"model": "metainfo.source", "pk": 11274, "fields": {"orig_filename": "Kulik_Jakob-Philipp_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341", "author": "", "orig_id": 1415659}}, {"model": "metainfo.source", "pk": 11275, "fields": {"orig_filename": "Kulisch_Max_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341", "author": "", "orig_id": 1415660}}, {"model": "metainfo.source", "pk": 11276, "fields": {"orig_filename": "Kulka_Adolf_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 341f.", "author": "", "orig_id": 1415661}}, {"model": "metainfo.source", "pk": 11277, "fields": {"orig_filename": "Kulka_Georg_1897_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342", "author": "", "orig_id": 1415662}}, {"model": "metainfo.source", "pk": 11278, "fields": {"orig_filename": "Kulka_Leopoldine_1872_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342", "author": "", "orig_id": 1415663}}, {"model": "metainfo.source", "pk": 11279, "fields": {"orig_filename": "Kulke_Eduard_1831_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 342f.", "author": "", "orig_id": 1415664}}, {"model": "metainfo.source", "pk": 11280, "fields": {"orig_filename": "Kulmer_Franjo_1806_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415665}}, {"model": "metainfo.source", "pk": 11281, "fields": {"orig_filename": "Kulmer_Friedrich_1814_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415666}}, {"model": "metainfo.source", "pk": 11282, "fields": {"orig_filename": "Kulovec_Fran-S_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343", "author": "", "orig_id": 1415667}}, {"model": "metainfo.source", "pk": 11283, "fields": {"orig_filename": "Kulp-Trolcov_Vojtech_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 343f.", "author": "", "orig_id": 1415668}}, {"model": "metainfo.source", "pk": 11284, "fields": {"orig_filename": "Kulstrunk_Franz_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415669}}, {"model": "metainfo.source", "pk": 11285, "fields": {"orig_filename": "Kultsar_Istvan_1760_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415670}}, {"model": "metainfo.source", "pk": 11286, "fields": {"orig_filename": "Kumaniecki_Kazimierz-Wladyslaw_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344", "author": "", "orig_id": 1415671}}, {"model": "metainfo.source", "pk": 11287, "fields": {"orig_filename": "Kumar_Josef-August_1789_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 344f.", "author": "", "orig_id": 1415742}}, {"model": "metainfo.source", "pk": 11288, "fields": {"orig_filename": "Kumicic_Eugen_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 345", "author": "", "orig_id": 1415744}}, {"model": "metainfo.source", "pk": 11289, "fields": {"orig_filename": "Kummer-Falkenfehd_Heinrich_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346", "author": "", "orig_id": 1415746}}, {"model": "metainfo.source", "pk": 11290, "fields": {"orig_filename": "Kummer_Karl-Ferdinand_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 345f.", "author": "", "orig_id": 1415745}}, {"model": "metainfo.source", "pk": 11291, "fields": {"orig_filename": "Kumpf_Johann-Gottfried_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 346", "author": "", "orig_id": 1415747}}, {"model": "metainfo.source", "pk": 11292, "fields": {"orig_filename": "Kuna_Franz_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415750}}, {"model": "metainfo.source", "pk": 11293, "fields": {"orig_filename": "Kuncze_Leo_1840_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415753}}, {"model": "metainfo.source", "pk": 11294, "fields": {"orig_filename": "Kuncz_Adolf-Josef_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347f.", "author": "", "orig_id": 1415752}}, {"model": "metainfo.source", "pk": 11295, "fields": {"orig_filename": "Kunc_Matija_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415751}}, {"model": "metainfo.source", "pk": 11296, "fields": {"orig_filename": "Kundegraber_Michael_1844_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415754}}, {"model": "metainfo.source", "pk": 11297, "fields": {"orig_filename": "Kundek_Josip_1809_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415755}}, {"model": "metainfo.source", "pk": 11298, "fields": {"orig_filename": "Kundigraber_Hermann_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 349", "author": "", "orig_id": 1415757}}, {"model": "metainfo.source", "pk": 11299, "fields": {"orig_filename": "Kundi_Julius_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 348", "author": "", "orig_id": 1415756}}, {"model": "metainfo.source", "pk": 11300, "fields": {"orig_filename": "Kundmann_Karl_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 349f.", "author": "", "orig_id": 1415758}}, {"model": "metainfo.source", "pk": 11301, "fields": {"orig_filename": "Kundrat-Lueftenfeld_Josef_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 350f.", "author": "", "orig_id": 1415760}}, {"model": "metainfo.source", "pk": 11302, "fields": {"orig_filename": "Kundrat_Johann_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 350", "author": "", "orig_id": 1415759}}, {"model": "metainfo.source", "pk": 11303, "fields": {"orig_filename": "Kunerth_Johann-Leopold_1784_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415761}}, {"model": "metainfo.source", "pk": 11304, "fields": {"orig_filename": "Kunike_Adolf-Friedrich_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351", "author": "", "orig_id": 1415831}}, {"model": "metainfo.source", "pk": 11305, "fields": {"orig_filename": "Kunitsch_Michael_1765_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352", "author": "", "orig_id": 1415833}}, {"model": "metainfo.source", "pk": 11306, "fields": {"orig_filename": "Kunits_Ludwig-Maria_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 351f.", "author": "", "orig_id": 1415832}}, {"model": "metainfo.source", "pk": 11307, "fields": {"orig_filename": "Kunitzer_Moses_1774_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352", "author": "", "orig_id": 1415834}}, {"model": "metainfo.source", "pk": 11308, "fields": {"orig_filename": "Kunos_Ignac_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 352f.", "author": "", "orig_id": 1415835}}, {"model": "metainfo.source", "pk": 11309, "fields": {"orig_filename": "Kunsic_Ivan_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415836}}, {"model": "metainfo.source", "pk": 11310, "fields": {"orig_filename": "Kunst_Karl_1895_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415837}}, {"model": "metainfo.source", "pk": 11311, "fields": {"orig_filename": "Kunszt_Josef_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353", "author": "", "orig_id": 1415838}}, {"model": "metainfo.source", "pk": 11312, "fields": {"orig_filename": "Kuntschak_Abund_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 353f.", "author": "", "orig_id": 1415839}}, {"model": "metainfo.source", "pk": 11313, "fields": {"orig_filename": "Kunwald_Ernst_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415840}}, {"model": "metainfo.source", "pk": 11314, "fields": {"orig_filename": "Kunwald_Gottfried_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415841}}, {"model": "metainfo.source", "pk": 11315, "fields": {"orig_filename": "Kuny_Domokos_1754_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354", "author": "", "orig_id": 1415842}}, {"model": "metainfo.source", "pk": 11316, "fields": {"orig_filename": "Kunzek-Lichton_August_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357", "author": "", "orig_id": 1415851}}, {"model": "metainfo.source", "pk": 11317, "fields": {"orig_filename": "Kunze_Wilhelm_1799_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356f.", "author": "", "orig_id": 1415850}}, {"model": "metainfo.source", "pk": 11318, "fields": {"orig_filename": "Kunz_Anton-Thomas_1756_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 354f.", "author": "", "orig_id": 1415843}}, {"model": "metainfo.source", "pk": 11319, "fields": {"orig_filename": "Kunz_Carlo_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415844}}, {"model": "metainfo.source", "pk": 11320, "fields": {"orig_filename": "Kunz_Eduard_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1442472}}, {"model": "metainfo.source", "pk": 11321, "fields": {"orig_filename": "Kunz_Gottfried_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415845}}, {"model": "metainfo.source", "pk": 11322, "fields": {"orig_filename": "Kunz_Johann-Karl-Kassian_1832_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355", "author": "", "orig_id": 1415846}}, {"model": "metainfo.source", "pk": 11323, "fields": {"orig_filename": "Kunz_Josef_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 355f.", "author": "", "orig_id": 1415847}}, {"model": "metainfo.source", "pk": 11324, "fields": {"orig_filename": "Kunz_Ludwig-Adam_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356", "author": "", "orig_id": 1415848}}, {"model": "metainfo.source", "pk": 11325, "fields": {"orig_filename": "Kunz_Otto_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 356", "author": "", "orig_id": 1415849}}, {"model": "metainfo.source", "pk": 11326, "fields": {"orig_filename": "Kun_Frantisek_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 347", "author": "", "orig_id": 1415749}}, {"model": "metainfo.source", "pk": 11327, "fields": {"orig_filename": "Kupcok_Samuel_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357", "author": "", "orig_id": 1415852}}, {"model": "metainfo.source", "pk": 11328, "fields": {"orig_filename": "Kupelwieser_Franz_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 357f.", "author": "", "orig_id": 1415853}}, {"model": "metainfo.source", "pk": 11329, "fields": {"orig_filename": "Kupelwieser_Hans_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 358", "author": "", "orig_id": 1415854}}, {"model": "metainfo.source", "pk": 11330, "fields": {"orig_filename": "Kupelwieser_Karl_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 359", "author": "", "orig_id": 1415855}}, {"model": "metainfo.source", "pk": 11331, "fields": {"orig_filename": "Kupelwieser_Leopold_1796_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 359f.", "author": "", "orig_id": 1415921}}, {"model": "metainfo.source", "pk": 11332, "fields": {"orig_filename": "Kupelwieser_Paul_1843_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 360", "author": "", "orig_id": 1411495}}, {"model": "metainfo.source", "pk": 11333, "fields": {"orig_filename": "Kupfer-Berger_Ludmilla_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415923}}, {"model": "metainfo.source", "pk": 11334, "fields": {"orig_filename": "Kupfer-Gomansky_Caesarine_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415924}}, {"model": "metainfo.source", "pk": 11335, "fields": {"orig_filename": "Kupfer_Johann-Michael_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 360f.", "author": "", "orig_id": 1415922}}, {"model": "metainfo.source", "pk": 11336, "fields": {"orig_filename": "Kupka_Josef_1862_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361", "author": "", "orig_id": 1415925}}, {"model": "metainfo.source", "pk": 11337, "fields": {"orig_filename": "Kupka_Peter-Friedrich_1846_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 361f.", "author": "", "orig_id": 1415926}}, {"model": "metainfo.source", "pk": 11338, "fields": {"orig_filename": "Kuppa_Josef_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415927}}, {"model": "metainfo.source", "pk": 11339, "fields": {"orig_filename": "Kuppe_Rudolf_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415928}}, {"model": "metainfo.source", "pk": 11340, "fields": {"orig_filename": "Kurak_Frantisek_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415929}}, {"model": "metainfo.source", "pk": 11341, "fields": {"orig_filename": "Kuralt_Franjo_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362", "author": "", "orig_id": 1415930}}, {"model": "metainfo.source", "pk": 11342, "fields": {"orig_filename": "Kuranda_Felix_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 362f.", "author": "", "orig_id": 1415931}}, {"model": "metainfo.source", "pk": 11343, "fields": {"orig_filename": "Kuranda_Ignaz_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 363", "author": "", "orig_id": 1415932}}, {"model": "metainfo.source", "pk": 11344, "fields": {"orig_filename": "Kurelac_Fran_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 363f.", "author": "", "orig_id": 1415933}}, {"model": "metainfo.source", "pk": 11345, "fields": {"orig_filename": "Kurka_Adalbert-Josef_1785_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415934}}, {"model": "metainfo.source", "pk": 11346, "fields": {"orig_filename": "Kurlaender-Kornfeld_Franz-August_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364", "author": "", "orig_id": 1415935}}, {"model": "metainfo.source", "pk": 11347, "fields": {"orig_filename": "Kurrein_Adolf_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 364f.", "author": "", "orig_id": 1415937}}, {"model": "metainfo.source", "pk": 11348, "fields": {"orig_filename": "Kurth_Betty_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415938}}, {"model": "metainfo.source", "pk": 11349, "fields": {"orig_filename": "Kurth_Ernst_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415939}}, {"model": "metainfo.source", "pk": 11350, "fields": {"orig_filename": "Kurtz_Arthur_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365", "author": "", "orig_id": 1415940}}, {"model": "metainfo.source", "pk": 11351, "fields": {"orig_filename": "Kurtz_August_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 365f.", "author": "", "orig_id": 1415941}}, {"model": "metainfo.source", "pk": 11352, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Franz_1807_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416016}}, {"model": "metainfo.source", "pk": 11353, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Ludwig_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416017}}, {"model": "metainfo.source", "pk": 11354, "fields": {"orig_filename": "Kurz-Thurn-Goldenstein_Patritius-Cajetan-Franz_1758_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368", "author": "", "orig_id": 1416018}}, {"model": "metainfo.source", "pk": 11355, "fields": {"orig_filename": "Kurzawa_Anton_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 368f.", "author": "", "orig_id": 1416019}}, {"model": "metainfo.source", "pk": 11356, "fields": {"orig_filename": "Kurzbauer_Hans-Eduard_1840_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 369", "author": "", "orig_id": 1416020}}, {"model": "metainfo.source", "pk": 11357, "fields": {"orig_filename": "Kruis_Karl_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302", "author": "", "orig_id": 1416555}}, {"model": "metainfo.source", "pk": 11358, "fields": {"orig_filename": "Krukowski_Joseph_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302f.", "author": "", "orig_id": 1416556}}, {"model": "metainfo.source", "pk": 11359, "fields": {"orig_filename": "Krumholz_Ferdinand_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303", "author": "", "orig_id": 1416557}}, {"model": "metainfo.source", "pk": 11360, "fields": {"orig_filename": "Krumpholz_Johann_1846_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303", "author": "", "orig_id": 1416559}}, {"model": "metainfo.source", "pk": 11361, "fields": {"orig_filename": "Krupka_Josef_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 303f.", "author": "", "orig_id": 1416560}}, {"model": "metainfo.source", "pk": 11362, "fields": {"orig_filename": "Krupp_Arthur_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 304", "author": "", "orig_id": 1416561}}, {"model": "metainfo.source", "pk": 11363, "fields": {"orig_filename": "Krupp_Hermann_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 304f.", "author": "", "orig_id": 1416562}}, {"model": "metainfo.source", "pk": 11364, "fields": {"orig_filename": "Kruselnyckyj_Antin-Volodyslavovyc_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416564}}, {"model": "metainfo.source", "pk": 11365, "fields": {"orig_filename": "Kruselnyckyj_Ivan-Antonovyc_1905_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416565}}, {"model": "metainfo.source", "pk": 11366, "fields": {"orig_filename": "Krus_Franz_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 305f.", "author": "", "orig_id": 1416563}}, {"model": "metainfo.source", "pk": 11367, "fields": {"orig_filename": "Kruzik_Anton_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306", "author": "", "orig_id": 1416566}}, {"model": "metainfo.source", "pk": 11368, "fields": {"orig_filename": "Krycinski_Walerian_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 306f.", "author": "", "orig_id": 1416638}}, {"model": "metainfo.source", "pk": 11369, "fields": {"orig_filename": "Krystin_Jaroslav_1892_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416639}}, {"model": "metainfo.source", "pk": 11370, "fields": {"orig_filename": "Krystufek_Frantisek-X_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416640}}, {"model": "metainfo.source", "pk": 11371, "fields": {"orig_filename": "Krystufek_Jan-Miloslav_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307", "author": "", "orig_id": 1416641}}, {"model": "metainfo.source", "pk": 11372, "fields": {"orig_filename": "Krzeczunowicz_Kornel_1818_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 307f.", "author": "", "orig_id": 1416642}}, {"model": "metainfo.source", "pk": 11373, "fields": {"orig_filename": "Krzesz_Mecina-Jozef_1860_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308", "author": "", "orig_id": 1416643}}, {"model": "metainfo.source", "pk": 11374, "fields": {"orig_filename": "Krzic_Anton_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 308", "author": "", "orig_id": 1416644}}, {"model": "metainfo.source", "pk": 11375, "fields": {"orig_filename": "Krziz_August-Karl_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309", "author": "", "orig_id": 1416646}}, {"model": "metainfo.source", "pk": 11376, "fields": {"orig_filename": "Krzyzanowski_Stanislaw_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309", "author": "", "orig_id": 1416647}}, {"model": "metainfo.source", "pk": 11377, "fields": {"orig_filename": "Kubala_Ludwig_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 309f.", "author": "", "orig_id": 1416648}}, {"model": "metainfo.source", "pk": 11378, "fields": {"orig_filename": "Kubani_Ludovit_1830_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1416649}}, {"model": "metainfo.source", "pk": 11379, "fields": {"orig_filename": "Kubelik_Jan_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1416650}}, {"model": "metainfo.source", "pk": 11380, "fields": {"orig_filename": "Kubelka_August_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310", "author": "", "orig_id": 1415275}}, {"model": "metainfo.source", "pk": 11381, "fields": {"orig_filename": "Kubena_Heinrich_1855_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 310f.", "author": "", "orig_id": 1415276}}, {"model": "metainfo.source", "pk": 11382, "fields": {"orig_filename": "Kubicek_Emanuel_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415277}}, {"model": "metainfo.source", "pk": 11383, "fields": {"orig_filename": "Kubiena_Friedrich_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415278}}, {"model": "metainfo.source", "pk": 11384, "fields": {"orig_filename": "Kubik_Julius_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311", "author": "", "orig_id": 1415279}}, {"model": "metainfo.source", "pk": 11385, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Agoston_1799_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 311f.", "author": "", "orig_id": 1415280}}, {"model": "metainfo.source", "pk": 11386, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Ferenc_1796_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415281}}, {"model": "metainfo.source", "pk": 11387, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Ferenc_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415282}}, {"model": "metainfo.source", "pk": 11388, "fields": {"orig_filename": "Kubinyi-Felsoekubin_Lajos_1821_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312", "author": "", "orig_id": 1415283}}, {"model": "metainfo.source", "pk": 11389, "fields": {"orig_filename": "Kubinzky_Emil_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 312f.", "author": "", "orig_id": 1415284}}, {"model": "metainfo.source", "pk": 11390, "fields": {"orig_filename": "Kubista_Bohumil_1884_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 313", "author": "", "orig_id": 1415285}}, {"model": "metainfo.source", "pk": 11391, "fields": {"orig_filename": "Kubitschek_Rudolf_1895_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 313f.", "author": "", "orig_id": 1415286}}, {"model": "metainfo.source", "pk": 11392, "fields": {"orig_filename": "Kubitza_Oskar_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315", "author": "", "orig_id": 1415288}}, {"model": "metainfo.source", "pk": 11393, "fields": {"orig_filename": "Kubr_Stanislav_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315", "author": "", "orig_id": 1415289}}, {"model": "metainfo.source", "pk": 11394, "fields": {"orig_filename": "Kucera_Bohumil_1874_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 315f.", "author": "", "orig_id": 1415290}}, {"model": "metainfo.source", "pk": 11395, "fields": {"orig_filename": "Kucera_Frantisek_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316", "author": "", "orig_id": 1415291}}, {"model": "metainfo.source", "pk": 11396, "fields": {"orig_filename": "Kucera_Jan-Jakub_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316f.", "author": "", "orig_id": 1415293}}, {"model": "metainfo.source", "pk": 11397, "fields": {"orig_filename": "Kucera_Jan_1838_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 316", "author": "", "orig_id": 1415292}}, {"model": "metainfo.source", "pk": 11398, "fields": {"orig_filename": "Kucera_Karel_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1419223}}, {"model": "metainfo.source", "pk": 11399, "fields": {"orig_filename": "Kucera_Oton_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415294}}, {"model": "metainfo.source", "pk": 11400, "fields": {"orig_filename": "Kucera_Pavel_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415365}}, {"model": "metainfo.source", "pk": 11401, "fields": {"orig_filename": "Kuchar_Johann-Bapt_1751_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317", "author": "", "orig_id": 1415366}}, {"model": "metainfo.source", "pk": 11402, "fields": {"orig_filename": "Kucher_Josef_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 317f.", "author": "", "orig_id": 1415367}}, {"model": "metainfo.source", "pk": 11403, "fields": {"orig_filename": "Kuchynka_Vojtech_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318", "author": "", "orig_id": 1415368}}, {"model": "metainfo.source", "pk": 11404, "fields": {"orig_filename": "Kudler_Joseph_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 318f.", "author": "", "orig_id": 1415371}}, {"model": "metainfo.source", "pk": 11405, "fields": {"orig_filename": "Kudlich_Hans_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 319", "author": "", "orig_id": 1415372}}, {"model": "metainfo.source", "pk": 11406, "fields": {"orig_filename": "Kudriaffsky_Euphemia_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 319f.", "author": "", "orig_id": 1415373}}, {"model": "metainfo.source", "pk": 11407, "fields": {"orig_filename": "Kudriaffsky_Johann_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415374}}, {"model": "metainfo.source", "pk": 11408, "fields": {"orig_filename": "Kuebeck-Kuebau_Blanche_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415375}}, {"model": "metainfo.source", "pk": 11409, "fields": {"orig_filename": "Kuebeck-Kuebau_Guido_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320", "author": "", "orig_id": 1415376}}, {"model": "metainfo.source", "pk": 11410, "fields": {"orig_filename": "Kuebeck-Kuebau_Karl-Friedrich_1780_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 320f.", "author": "", "orig_id": 1415377}}, {"model": "metainfo.source", "pk": 11411, "fields": {"orig_filename": "Kuefstein_Franz_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415378}}, {"model": "metainfo.source", "pk": 11412, "fields": {"orig_filename": "Kuefstein_Johann-Ferdinand_1752_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415379}}, {"model": "metainfo.source", "pk": 11413, "fields": {"orig_filename": "Kuefstein_Karl_1838_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 321", "author": "", "orig_id": 1415380}}, {"model": "metainfo.source", "pk": 11414, "fields": {"orig_filename": "Kuehlbrandt_Ernst_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415381}}, {"model": "metainfo.source", "pk": 11415, "fields": {"orig_filename": "Kuehnelt_Anton_1842_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323f.", "author": "", "orig_id": 1415388}}, {"model": "metainfo.source", "pk": 11416, "fields": {"orig_filename": "Kuehnelt_Hugo_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415463}}, {"model": "metainfo.source", "pk": 11417, "fields": {"orig_filename": "Kuehnelt_Richard_1877_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415464}}, {"model": "metainfo.source", "pk": 11418, "fields": {"orig_filename": "Kuehnel_Gustav_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323", "author": "", "orig_id": 1415386}}, {"model": "metainfo.source", "pk": 11419, "fields": {"orig_filename": "Kuehnel_Reinhold-Wilhelm_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 323", "author": "", "orig_id": 1415387}}, {"model": "metainfo.source", "pk": 11420, "fields": {"orig_filename": "Kuehnert_Franz_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324", "author": "", "orig_id": 1415465}}, {"model": "metainfo.source", "pk": 11421, "fields": {"orig_filename": "Kuehne_Ferdinand-Karl_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415384}}, {"model": "metainfo.source", "pk": 11422, "fields": {"orig_filename": "Kuehne_Karl-Ludwig-August_1845_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322f.", "author": "", "orig_id": 1415385}}, {"model": "metainfo.source", "pk": 11423, "fields": {"orig_filename": "Kuehns_Volkmar_1832_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 324f.", "author": "", "orig_id": 1415466}}, {"model": "metainfo.source", "pk": 11424, "fields": {"orig_filename": "Kuehn_Josef_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415382}}, {"model": "metainfo.source", "pk": 11425, "fields": {"orig_filename": "Kuehn_Karl-Friedrich_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 322", "author": "", "orig_id": 1415383}}, {"model": "metainfo.source", "pk": 11426, "fields": {"orig_filename": "Kuehschelm_Josef_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325", "author": "", "orig_id": 1415467}}, {"model": "metainfo.source", "pk": 11427, "fields": {"orig_filename": "Kuelfoeldi_Viktor_1844_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325", "author": "", "orig_id": 1415468}}, {"model": "metainfo.source", "pk": 11428, "fields": {"orig_filename": "Kuenburg_Gandolph_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326", "author": "", "orig_id": 1415470}}, {"model": "metainfo.source", "pk": 11429, "fields": {"orig_filename": "Kuenburg_Maria-Bertha_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326", "author": "", "orig_id": 1415471}}, {"model": "metainfo.source", "pk": 11430, "fields": {"orig_filename": "Kuenl_Pavel_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 326f.", "author": "", "orig_id": 1415472}}, {"model": "metainfo.source", "pk": 11431, "fields": {"orig_filename": "Kuensberg_Sophie_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415473}}, {"model": "metainfo.source", "pk": 11432, "fields": {"orig_filename": "Kuenssberg_Eberhard_1881_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415477}}, {"model": "metainfo.source", "pk": 11433, "fields": {"orig_filename": "Kuenzel_Robert_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327", "author": "", "orig_id": 1415478}}, {"model": "metainfo.source", "pk": 11434, "fields": {"orig_filename": "Kuen_Alois-Heinrich_1779_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 325f.", "author": "", "orig_id": 1415469}}, {"model": "metainfo.source", "pk": 11435, "fields": {"orig_filename": "Kuernberger_Ferdinand_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 327f.", "author": "", "orig_id": 1415479}}, {"model": "metainfo.source", "pk": 11436, "fields": {"orig_filename": "Kuerschak_Jozsef_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 328", "author": "", "orig_id": 1415480}}, {"model": "metainfo.source", "pk": 11437, "fields": {"orig_filename": "Kuerschner_Franz_1840_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 328f.", "author": "", "orig_id": 1415481}}, {"model": "metainfo.source", "pk": 11438, "fields": {"orig_filename": "Kuersinger_Ignaz_1795_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415482}}, {"model": "metainfo.source", "pk": 11439, "fields": {"orig_filename": "Kuerzinger_Paul-Ignaz_1750_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415483}}, {"model": "metainfo.source", "pk": 11440, "fields": {"orig_filename": "Kuffner_Christoph-Johann-Anton_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329", "author": "", "orig_id": 1415484}}, {"model": "metainfo.source", "pk": 11441, "fields": {"orig_filename": "Kuffner_Karl_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 329f.", "author": "", "orig_id": 1415556}}, {"model": "metainfo.source", "pk": 11442, "fields": {"orig_filename": "Kuffner_Moritz_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330", "author": "", "orig_id": 1415557}}, {"model": "metainfo.source", "pk": 11443, "fields": {"orig_filename": "Kugler_Emil_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330", "author": "", "orig_id": 1415558}}, {"model": "metainfo.source", "pk": 11444, "fields": {"orig_filename": "Kugler_Josef_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 330f.", "author": "", "orig_id": 1415559}}, {"model": "metainfo.source", "pk": 11445, "fields": {"orig_filename": "Kugler_Paul-Franz_1836_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415560}}, {"model": "metainfo.source", "pk": 11446, "fields": {"orig_filename": "Kuglmayr_Gotthard_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415561}}, {"model": "metainfo.source", "pk": 11447, "fields": {"orig_filename": "Kugstatscher-Treuensinn_Josef_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331", "author": "", "orig_id": 1415562}}, {"model": "metainfo.source", "pk": 11448, "fields": {"orig_filename": "Kugy_Julius_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 331f.", "author": "", "orig_id": 1415563}}, {"model": "metainfo.source", "pk": 11449, "fields": {"orig_filename": "Kuh-Chrobak_Paul-Robert_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333", "author": "", "orig_id": 1415566}}, {"model": "metainfo.source", "pk": 11450, "fields": {"orig_filename": "Kuhac_Franjo_1834_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 333f.", "author": "", "orig_id": 1415567}}, {"model": "metainfo.source", "pk": 11451, "fields": {"orig_filename": "Kuhar_Lovro_1893_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 334f.", "author": "", "orig_id": 1415568}}, {"model": "metainfo.source", "pk": 11452, "fields": {"orig_filename": "Kuhe_Wilhelm_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415569}}, {"model": "metainfo.source", "pk": 11453, "fields": {"orig_filename": "Kuhn-Kuhnenfeld_Franz_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 336f.", "author": "", "orig_id": 1415575}}, {"model": "metainfo.source", "pk": 11454, "fields": {"orig_filename": "Kuhn-Kunietitz_Johann_1788_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 337", "author": "", "orig_id": 1415576}}, {"model": "metainfo.source", "pk": 11455, "fields": {"orig_filename": "Kuhn_Andreas_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 335", "author": "", "orig_id": 1415570}}, {"model": "metainfo.source", "pk": 11456, "fields": {"orig_filename": "Kreutzer_Carl-Joseph_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 267", "author": "", "orig_id": 1416105}}, {"model": "metainfo.source", "pk": 11457, "fields": {"orig_filename": "Kreutzer_Conrad_1780_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 267f.", "author": "", "orig_id": 1416106}}, {"model": "metainfo.source", "pk": 11458, "fields": {"orig_filename": "Kreutzinger_Josef_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416107}}, {"model": "metainfo.source", "pk": 11459, "fields": {"orig_filename": "Kreuzer_Heinrich_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416174}}, {"model": "metainfo.source", "pk": 11460, "fields": {"orig_filename": "Kreuzer_Konrad_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 268", "author": "", "orig_id": 1416175}}, {"model": "metainfo.source", "pk": 11461, "fields": {"orig_filename": "Kreuzer_Vinzenz_1809_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416176}}, {"model": "metainfo.source", "pk": 11462, "fields": {"orig_filename": "Kreysa_Eduard_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416177}}, {"model": "metainfo.source", "pk": 11463, "fields": {"orig_filename": "Krezma_Franjo_1862_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416178}}, {"model": "metainfo.source", "pk": 11464, "fields": {"orig_filename": "Kricensky_Josef-Jaroslav_1812_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416179}}, {"model": "metainfo.source", "pk": 11465, "fields": {"orig_filename": "Kricka_Petr_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416182}}, {"model": "metainfo.source", "pk": 11466, "fields": {"orig_filename": "Krickel_Josef-Adalbert_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416183}}, {"model": "metainfo.source", "pk": 11467, "fields": {"orig_filename": "Krick_Julius_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416180}}, {"model": "metainfo.source", "pk": 11468, "fields": {"orig_filename": "Krick_Otto-Emil_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 269", "author": "", "orig_id": 1416181}}, {"model": "metainfo.source", "pk": 11469, "fields": {"orig_filename": "Kriebaum_Franz-Xaver_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270", "author": "", "orig_id": 1416184}}, {"model": "metainfo.source", "pk": 11470, "fields": {"orig_filename": "Krieg-Hochfelden_Edith_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 270f.", "author": "", "orig_id": 1416185}}, {"model": "metainfo.source", "pk": 11471, "fields": {"orig_filename": "Krieg-Hochfelden_Franz_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271", "author": "", "orig_id": 1416186}}, {"model": "metainfo.source", "pk": 11472, "fields": {"orig_filename": "Krieger_Koloman_1819_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271", "author": "", "orig_id": 1416187}}, {"model": "metainfo.source", "pk": 11473, "fields": {"orig_filename": "Krieghammer_Edmund_1832_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 271f.", "author": "", "orig_id": 1416188}}, {"model": "metainfo.source", "pk": 11474, "fields": {"orig_filename": "Kriegs-Au_Adolf_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272", "author": "", "orig_id": 1416189}}, {"model": "metainfo.source", "pk": 11475, "fields": {"orig_filename": "Kriehuber_Friedrich_1834_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272", "author": "", "orig_id": 1416190}}, {"model": "metainfo.source", "pk": 11476, "fields": {"orig_filename": "Kriehuber_Josef_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 273f.", "author": "", "orig_id": 1416192}}, {"model": "metainfo.source", "pk": 11477, "fields": {"orig_filename": "Kriehuber_Joseph_1799_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 272f.", "author": "", "orig_id": 1416191}}, {"model": "metainfo.source", "pk": 11478, "fields": {"orig_filename": "Kriesmayr_Anton_1810_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274", "author": "", "orig_id": 1416193}}, {"model": "metainfo.source", "pk": 11479, "fields": {"orig_filename": "Krimer_Wenzeslaus_1795_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274", "author": "", "orig_id": 1416194}}, {"model": "metainfo.source", "pk": 11480, "fields": {"orig_filename": "Kripp-Prunberg-Krippach_Sigmund_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 274f.", "author": "", "orig_id": 1416195}}, {"model": "metainfo.source", "pk": 11481, "fields": {"orig_filename": "Krippel_Heinrich_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275", "author": "", "orig_id": 1416196}}, {"model": "metainfo.source", "pk": 11482, "fields": {"orig_filename": "Krischke_Otto_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275f.", "author": "", "orig_id": 1416266}}, {"model": "metainfo.source", "pk": 11483, "fields": {"orig_filename": "Krisch_Rudolf_1876_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 275", "author": "", "orig_id": 1416197}}, {"model": "metainfo.source", "pk": 11484, "fields": {"orig_filename": "Krismanic_Gideon_1817_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 276", "author": "", "orig_id": 1416267}}, {"model": "metainfo.source", "pk": 11485, "fields": {"orig_filename": "Krismer_Stefan_1777_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 276f.", "author": "", "orig_id": 1416268}}, {"model": "metainfo.source", "pk": 11486, "fields": {"orig_filename": "Krisper_Valentin_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277", "author": "", "orig_id": 1416269}}, {"model": "metainfo.source", "pk": 11487, "fields": {"orig_filename": "Kristan_Anton_1881_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277f.", "author": "", "orig_id": 1416271}}, {"model": "metainfo.source", "pk": 11488, "fields": {"orig_filename": "Kristijanovic_Ignjat_1796_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416272}}, {"model": "metainfo.source", "pk": 11489, "fields": {"orig_filename": "Kristinus_Karl-Raimund_1843_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416273}}, {"model": "metainfo.source", "pk": 11490, "fields": {"orig_filename": "Kristoffy_Jozsef_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278", "author": "", "orig_id": 1416274}}, {"model": "metainfo.source", "pk": 11491, "fields": {"orig_filename": "Krist_Josef_1830_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 277", "author": "", "orig_id": 1416270}}, {"model": "metainfo.source", "pk": 11492, "fields": {"orig_filename": "Kritek_Karl_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 278f.", "author": "", "orig_id": 1416275}}, {"model": "metainfo.source", "pk": 11493, "fields": {"orig_filename": "Kriza_Janos_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416281}}, {"model": "metainfo.source", "pk": 11494, "fields": {"orig_filename": "Krizek_Vaclav_1833_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416282}}, {"model": "metainfo.source", "pk": 11495, "fields": {"orig_filename": "Krizenecky_Rudolf_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280f.", "author": "", "orig_id": 1416283}}, {"model": "metainfo.source", "pk": 11496, "fields": {"orig_filename": "Krizik_Franz_1847_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281", "author": "", "orig_id": 1416284}}, {"model": "metainfo.source", "pk": 11497, "fields": {"orig_filename": "Krizkovsky_Pavel_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 282", "author": "", "orig_id": 1416361}}, {"model": "metainfo.source", "pk": 11498, "fields": {"orig_filename": "Krizko_Bohuslav_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281", "author": "", "orig_id": 1416285}}, {"model": "metainfo.source", "pk": 11499, "fields": {"orig_filename": "Krizko_Jaromir-Vitazoslav_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 281f.", "author": "", "orig_id": 1416286}}, {"model": "metainfo.source", "pk": 11500, "fields": {"orig_filename": "Krizko_Pavel_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 282", "author": "", "orig_id": 1416360}}, {"model": "metainfo.source", "pk": 11501, "fields": {"orig_filename": "Krizmanic_Ivan_1766_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416362}}, {"model": "metainfo.source", "pk": 11502, "fields": {"orig_filename": "Kriz_Arpad_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279", "author": "", "orig_id": 1416276}}, {"model": "metainfo.source", "pk": 11503, "fields": {"orig_filename": "Kriz_Ferdinand_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279", "author": "", "orig_id": 1416277}}, {"model": "metainfo.source", "pk": 11504, "fields": {"orig_filename": "Kriz_Martin_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 279f.", "author": "", "orig_id": 1416278}}, {"model": "metainfo.source", "pk": 11505, "fields": {"orig_filename": "Kriz_Wenzel_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 280", "author": "", "orig_id": 1416280}}, {"model": "metainfo.source", "pk": 11506, "fields": {"orig_filename": "Krmpotic_Ivan_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416363}}, {"model": "metainfo.source", "pk": 11507, "fields": {"orig_filename": "Krnic_Bogoljub_1874_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416364}}, {"model": "metainfo.source", "pk": 11508, "fields": {"orig_filename": "Krnic_Ivan_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283", "author": "", "orig_id": 1416365}}, {"model": "metainfo.source", "pk": 11509, "fields": {"orig_filename": "Krnka_Karl-Sylvester_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 283f.", "author": "", "orig_id": 1416366}}, {"model": "metainfo.source", "pk": 11510, "fields": {"orig_filename": "Krnka_Sylvester_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 284f.", "author": "", "orig_id": 1416367}}, {"model": "metainfo.source", "pk": 11511, "fields": {"orig_filename": "Krobath_Karl_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 285", "author": "", "orig_id": 1416368}}, {"model": "metainfo.source", "pk": 11512, "fields": {"orig_filename": "Krobatin_Alexander_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 285f.", "author": "", "orig_id": 1416369}}, {"model": "metainfo.source", "pk": 11513, "fields": {"orig_filename": "Krochmal_Nachman_1785_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416370}}, {"model": "metainfo.source", "pk": 11514, "fields": {"orig_filename": "Kroepsch_Friedrich-Anton_1806_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416372}}, {"model": "metainfo.source", "pk": 11515, "fields": {"orig_filename": "Kroepsch_Wilhelm_1807_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416371}}, {"model": "metainfo.source", "pk": 11516, "fields": {"orig_filename": "Kroess_Alois_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 286", "author": "", "orig_id": 1416373}}, {"model": "metainfo.source", "pk": 11517, "fields": {"orig_filename": "Krofta_Kamil_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 287", "author": "", "orig_id": 1416374}}, {"model": "metainfo.source", "pk": 11518, "fields": {"orig_filename": "Kroh_Josef_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416375}}, {"model": "metainfo.source", "pk": 11519, "fields": {"orig_filename": "Krolmus_Vaclav_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416376}}, {"model": "metainfo.source", "pk": 11520, "fields": {"orig_filename": "Krombholz_Anton_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 288", "author": "", "orig_id": 1416377}}, {"model": "metainfo.source", "pk": 11521, "fields": {"orig_filename": "Krombholz_Ernst_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289", "author": "", "orig_id": 1416378}}, {"model": "metainfo.source", "pk": 11522, "fields": {"orig_filename": "Krombholz_Julius-Vincenz_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289", "author": "", "orig_id": 1416379}}, {"model": "metainfo.source", "pk": 11523, "fields": {"orig_filename": "Krommer_Franz_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 289f.", "author": "", "orig_id": 1416380}}, {"model": "metainfo.source", "pk": 11524, "fields": {"orig_filename": "Kronau_Friederike_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 290", "author": "", "orig_id": 1416451}}, {"model": "metainfo.source", "pk": 11525, "fields": {"orig_filename": "Kronawetter_Ferdinand_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 290f.", "author": "", "orig_id": 1416452}}, {"model": "metainfo.source", "pk": 11526, "fields": {"orig_filename": "Kronbauer_Rudolf-Jaroslav_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416453}}, {"model": "metainfo.source", "pk": 11527, "fields": {"orig_filename": "Kronberger_Franz_1810_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416454}}, {"model": "metainfo.source", "pk": 11528, "fields": {"orig_filename": "Kronberger_Karl_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291", "author": "", "orig_id": 1416455}}, {"model": "metainfo.source", "pk": 11529, "fields": {"orig_filename": "Kronecker_Gunther_1803_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 291f.", "author": "", "orig_id": 1416456}}, {"model": "metainfo.source", "pk": 11530, "fields": {"orig_filename": "Kronegger_Rudolf_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416457}}, {"model": "metainfo.source", "pk": 11531, "fields": {"orig_filename": "Kronenfels_Josef_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1419222}}, {"model": "metainfo.source", "pk": 11532, "fields": {"orig_filename": "Krones-Marchland_Franz_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 294", "author": "", "orig_id": 1416462}}, {"model": "metainfo.source", "pk": 11533, "fields": {"orig_filename": "Krones_Hilde_1910_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416458}}, {"model": "metainfo.source", "pk": 11534, "fields": {"orig_filename": "Krones_Josef-Franz_1797_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292", "author": "", "orig_id": 1416459}}, {"model": "metainfo.source", "pk": 11535, "fields": {"orig_filename": "Krones_Ludwig_1785_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 292f.", "author": "", "orig_id": 1416460}}, {"model": "metainfo.source", "pk": 11536, "fields": {"orig_filename": "Krones_Therese_1801_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 293f.", "author": "", "orig_id": 1416461}}, {"model": "metainfo.source", "pk": 11537, "fields": {"orig_filename": "Kronfeld_Adolf_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 294f.", "author": "", "orig_id": 1416463}}, {"model": "metainfo.source", "pk": 11538, "fields": {"orig_filename": "Kronfeld_Ernst-F-Moriz_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295", "author": "", "orig_id": 1416464}}, {"model": "metainfo.source", "pk": 11539, "fields": {"orig_filename": "Kronfeld_Robert_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295", "author": "", "orig_id": 1416465}}, {"model": "metainfo.source", "pk": 11540, "fields": {"orig_filename": "Kronfeld_Robert_1904_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 295f.", "author": "", "orig_id": 1416466}}, {"model": "metainfo.source", "pk": 11541, "fields": {"orig_filename": "Kronfuss_Karl_1858_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296", "author": "", "orig_id": 1416467}}, {"model": "metainfo.source", "pk": 11542, "fields": {"orig_filename": "Kronstein_August-Stefan_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296", "author": "", "orig_id": 1416468}}, {"model": "metainfo.source", "pk": 11543, "fields": {"orig_filename": "Kropatschek_Alfred_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 296f.", "author": "", "orig_id": 1416469}}, {"model": "metainfo.source", "pk": 11544, "fields": {"orig_filename": "Krosch_Josef_1840_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416470}}, {"model": "metainfo.source", "pk": 11545, "fields": {"orig_filename": "Krotenthaller_Anton_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416471}}, {"model": "metainfo.source", "pk": 11546, "fields": {"orig_filename": "Krottenthaler_Karl_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297", "author": "", "orig_id": 1416472}}, {"model": "metainfo.source", "pk": 11547, "fields": {"orig_filename": "Kroupa_Gustav_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 297f.", "author": "", "orig_id": 1416473}}, {"model": "metainfo.source", "pk": 11548, "fields": {"orig_filename": "Krsic_Jovan_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 298", "author": "", "orig_id": 1416474}}, {"model": "metainfo.source", "pk": 11549, "fields": {"orig_filename": "Krsnjavi_Izidor_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 298f.", "author": "", "orig_id": 1416544}}, {"model": "metainfo.source", "pk": 11550, "fields": {"orig_filename": "Krticzka-Jaden_Hans_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299", "author": "", "orig_id": 1416545}}, {"model": "metainfo.source", "pk": 11551, "fields": {"orig_filename": "Kruczkiewicz_Bronislaw-Ignacy_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299", "author": "", "orig_id": 1416546}}, {"model": "metainfo.source", "pk": 11552, "fields": {"orig_filename": "Krueckl_Franz_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 299f.", "author": "", "orig_id": 1416547}}, {"model": "metainfo.source", "pk": 11553, "fields": {"orig_filename": "Krueger_Karl-Friedrich_1765_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 300", "author": "", "orig_id": 1416548}}, {"model": "metainfo.source", "pk": 11554, "fields": {"orig_filename": "Kruegner_Ignaz-Sales_1781_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 300", "author": "", "orig_id": 1416549}}, {"model": "metainfo.source", "pk": 11555, "fields": {"orig_filename": "Kruepl_Anton_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416550}}, {"model": "metainfo.source", "pk": 11556, "fields": {"orig_filename": "Kruesz_Karoly-Krizosztom_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416551}}, {"model": "metainfo.source", "pk": 11557, "fields": {"orig_filename": "Krufft_Nikolaus_1779_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301", "author": "", "orig_id": 1416552}}, {"model": "metainfo.source", "pk": 11558, "fields": {"orig_filename": "Krug_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 301f.", "author": "", "orig_id": 1416553}}, {"model": "metainfo.source", "pk": 11559, "fields": {"orig_filename": "Kruis_Ferdinand_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 19, 1968), S. 302", "author": "", "orig_id": 1416554}}, {"model": "metainfo.source", "pk": 11560, "fields": {"orig_filename": "Kraus_Friedrich_1858_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226f.", "author": "", "orig_id": 1415649}}, {"model": "metainfo.source", "pk": 11561, "fields": {"orig_filename": "Kraus_Fritz_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 227f.", "author": "", "orig_id": 1415721}}, {"model": "metainfo.source", "pk": 11562, "fields": {"orig_filename": "Kraus_Honorius_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228f.", "author": "", "orig_id": 1415725}}, {"model": "metainfo.source", "pk": 11563, "fields": {"orig_filename": "Kraus_Jakob_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229", "author": "", "orig_id": 1415726}}, {"model": "metainfo.source", "pk": 11564, "fields": {"orig_filename": "Kraus_Johann-Wenzel_1791_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229", "author": "", "orig_id": 1415727}}, {"model": "metainfo.source", "pk": 11565, "fields": {"orig_filename": "Kraus_Karl_1764_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 229f.", "author": "", "orig_id": 1415728}}, {"model": "metainfo.source", "pk": 11566, "fields": {"orig_filename": "Kraus_Karl_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 230ff.", "author": "", "orig_id": 1415730}}, {"model": "metainfo.source", "pk": 11567, "fields": {"orig_filename": "Kraus_Konrad_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415731}}, {"model": "metainfo.source", "pk": 11568, "fields": {"orig_filename": "Kraus_Marie-Gabriele_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415732}}, {"model": "metainfo.source", "pk": 11569, "fields": {"orig_filename": "Kraus_Oskar_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232", "author": "", "orig_id": 1415733}}, {"model": "metainfo.source", "pk": 11570, "fields": {"orig_filename": "Kraus_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 233f.", "author": "", "orig_id": 1415735}}, {"model": "metainfo.source", "pk": 11571, "fields": {"orig_filename": "Kraus_Samuel_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234", "author": "", "orig_id": 1415737}}, {"model": "metainfo.source", "pk": 11572, "fields": {"orig_filename": "Kraus_Viktor_1845_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234f.", "author": "", "orig_id": 1415738}}, {"model": "metainfo.source", "pk": 11573, "fields": {"orig_filename": "Krauthauf_Ferdinand_1830_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415809}}, {"model": "metainfo.source", "pk": 11574, "fields": {"orig_filename": "Krautschneider_Odorich_1818_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415810}}, {"model": "metainfo.source", "pk": 11575, "fields": {"orig_filename": "Krautwald-Annau_Joseph_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236f.", "author": "", "orig_id": 1415811}}, {"model": "metainfo.source", "pk": 11576, "fields": {"orig_filename": "Krauz-Kelles_Kazimierz_1872_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 237", "author": "", "orig_id": 1415812}}, {"model": "metainfo.source", "pk": 11577, "fields": {"orig_filename": "Kravogl_Johann-Nep_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415814}}, {"model": "metainfo.source", "pk": 11578, "fields": {"orig_filename": "Kravogl_Johann_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 237f.", "author": "", "orig_id": 1415813}}, {"model": "metainfo.source", "pk": 11579, "fields": {"orig_filename": "Kravogl_Josef_1870_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415815}}, {"model": "metainfo.source", "pk": 11580, "fields": {"orig_filename": "Kravogl_Paula_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238", "author": "", "orig_id": 1415816}}, {"model": "metainfo.source", "pk": 11581, "fields": {"orig_filename": "Krawani_August_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 238f.", "author": "", "orig_id": 1415817}}, {"model": "metainfo.source", "pk": 11582, "fields": {"orig_filename": "Krcal_August_1862_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239", "author": "", "orig_id": 1415818}}, {"model": "metainfo.source", "pk": 11583, "fields": {"orig_filename": "Krcek_Franz_1869_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239", "author": "", "orig_id": 1415819}}, {"model": "metainfo.source", "pk": 11584, "fields": {"orig_filename": "Krcmar_Jan_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 239f.", "author": "", "orig_id": 1415820}}, {"model": "metainfo.source", "pk": 11585, "fields": {"orig_filename": "Krcmery_August-Horislav_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240", "author": "", "orig_id": 1415821}}, {"model": "metainfo.source", "pk": 11586, "fields": {"orig_filename": "Krebs_Hans_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240", "author": "", "orig_id": 1415822}}, {"model": "metainfo.source", "pk": 11587, "fields": {"orig_filename": "Krebs_Norbert_1876_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 240ff.", "author": "", "orig_id": 1415823}}, {"model": "metainfo.source", "pk": 11588, "fields": {"orig_filename": "Krechowiecki_Adam_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415824}}, {"model": "metainfo.source", "pk": 11589, "fields": {"orig_filename": "Kreco_Pero_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415825}}, {"model": "metainfo.source", "pk": 11590, "fields": {"orig_filename": "Krehahn_Karl_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415826}}, {"model": "metainfo.source", "pk": 11591, "fields": {"orig_filename": "Kreibich_Franz-Jakob_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415827}}, {"model": "metainfo.source", "pk": 11592, "fields": {"orig_filename": "Kreibich_Hans-Robert_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 242", "author": "", "orig_id": 1415828}}, {"model": "metainfo.source", "pk": 11593, "fields": {"orig_filename": "Kreibig_Eduard_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415829}}, {"model": "metainfo.source", "pk": 11594, "fields": {"orig_filename": "Kreibig_Josef-Clemens_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415830}}, {"model": "metainfo.source", "pk": 11595, "fields": {"orig_filename": "Kreichel_Andreas_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 243", "author": "", "orig_id": 1415899}}, {"model": "metainfo.source", "pk": 11596, "fields": {"orig_filename": "Kreichgauer_Damian_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415900}}, {"model": "metainfo.source", "pk": 11597, "fields": {"orig_filename": "Kreidl_Alois_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415901}}, {"model": "metainfo.source", "pk": 11598, "fields": {"orig_filename": "Kreidl_Regina_1874_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244", "author": "", "orig_id": 1415902}}, {"model": "metainfo.source", "pk": 11599, "fields": {"orig_filename": "Kreil_Benno_1779_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 244f.", "author": "", "orig_id": 1415903}}, {"model": "metainfo.source", "pk": 11600, "fields": {"orig_filename": "Kreil_Karl_1798_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 245", "author": "", "orig_id": 1415904}}, {"model": "metainfo.source", "pk": 11601, "fields": {"orig_filename": "Kreisler_Karl_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 245f.", "author": "", "orig_id": 1415905}}, {"model": "metainfo.source", "pk": 11602, "fields": {"orig_filename": "Kreissle-Hellborn_Heinrich_1822_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246", "author": "", "orig_id": 1415906}}, {"model": "metainfo.source", "pk": 11603, "fields": {"orig_filename": "Krejcar_Jaromir_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246", "author": "", "orig_id": 1415907}}, {"model": "metainfo.source", "pk": 11604, "fields": {"orig_filename": "Krejci_Dobroslav_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 246f.", "author": "", "orig_id": 1415908}}, {"model": "metainfo.source", "pk": 11605, "fields": {"orig_filename": "Krejci_Frantisek-Vaclav_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 247", "author": "", "orig_id": 1415909}}, {"model": "metainfo.source", "pk": 11606, "fields": {"orig_filename": "Krejci_Jan_1825_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 247f.", "author": "", "orig_id": 1415910}}, {"model": "metainfo.source", "pk": 11607, "fields": {"orig_filename": "Krejci_Jan_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415911}}, {"model": "metainfo.source", "pk": 11608, "fields": {"orig_filename": "Krejci_Joseph_1821_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415912}}, {"model": "metainfo.source", "pk": 11609, "fields": {"orig_filename": "Krejci_Peter-Franz_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248", "author": "", "orig_id": 1415913}}, {"model": "metainfo.source", "pk": 11610, "fields": {"orig_filename": "Krejcsi_Rezsoe_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 248f.", "author": "", "orig_id": 1415914}}, {"model": "metainfo.source", "pk": 11611, "fields": {"orig_filename": "Krekich-Strassoldo-Treuland_Hans_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250", "author": "", "orig_id": 1415918}}, {"model": "metainfo.source", "pk": 11612, "fields": {"orig_filename": "Krek_Gregor-Gojmir_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 249f.", "author": "", "orig_id": 1415916}}, {"model": "metainfo.source", "pk": 11613, "fields": {"orig_filename": "Krek_Gregor_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 249", "author": "", "orig_id": 1415915}}, {"model": "metainfo.source", "pk": 11614, "fields": {"orig_filename": "Krek_Janez-Ev_1865_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250", "author": "", "orig_id": 1415917}}, {"model": "metainfo.source", "pk": 11615, "fields": {"orig_filename": "Kreljanovic-Albinoni_Ivan_1777_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 250f.", "author": "", "orig_id": 1415919}}, {"model": "metainfo.source", "pk": 11616, "fields": {"orig_filename": "Kremann_Robert_1879_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251", "author": "", "orig_id": 1415920}}, {"model": "metainfo.source", "pk": 11617, "fields": {"orig_filename": "Kremeir_Anna_1862_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251", "author": "", "orig_id": 1415989}}, {"model": "metainfo.source", "pk": 11618, "fields": {"orig_filename": "Kremel_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 251f.", "author": "", "orig_id": 1415990}}, {"model": "metainfo.source", "pk": 11619, "fields": {"orig_filename": "Kremenetzky_Johann_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 252", "author": "", "orig_id": 1415991}}, {"model": "metainfo.source", "pk": 11620, "fields": {"orig_filename": "Kremer-Auenrode_Alois-Silverius_1797_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1415998}}, {"model": "metainfo.source", "pk": 11621, "fields": {"orig_filename": "Kremer-Auenrode_Hugo_1833_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1415999}}, {"model": "metainfo.source", "pk": 11622, "fields": {"orig_filename": "Kremer_Aleksander-August-Kazimierz_1813_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 252f.", "author": "", "orig_id": 1415992}}, {"model": "metainfo.source", "pk": 11623, "fields": {"orig_filename": "Kremer_Alfred_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 253f.", "author": "", "orig_id": 1415993}}, {"model": "metainfo.source", "pk": 11624, "fields": {"orig_filename": "Kremer_Johann-Heinrich_1794_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254", "author": "", "orig_id": 1415994}}, {"model": "metainfo.source", "pk": 11625, "fields": {"orig_filename": "Kremer_Jozef_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254", "author": "", "orig_id": 1415995}}, {"model": "metainfo.source", "pk": 11626, "fields": {"orig_filename": "Kremer_Karol-Roman_1812_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 254f.", "author": "", "orig_id": 1415996}}, {"model": "metainfo.source", "pk": 11627, "fields": {"orig_filename": "Kremlicka_Rudolf_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255", "author": "", "orig_id": 1416000}}, {"model": "metainfo.source", "pk": 11628, "fields": {"orig_filename": "Krempel_Heinrich_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 255f.", "author": "", "orig_id": 1416001}}, {"model": "metainfo.source", "pk": 11629, "fields": {"orig_filename": "Krempl_Anton_1790_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256", "author": "", "orig_id": 1416002}}, {"model": "metainfo.source", "pk": 11630, "fields": {"orig_filename": "Krempl_Josef_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256", "author": "", "orig_id": 1416003}}, {"model": "metainfo.source", "pk": 11631, "fields": {"orig_filename": "Kremser_Eduard_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 256f.", "author": "", "orig_id": 1416004}}, {"model": "metainfo.source", "pk": 11632, "fields": {"orig_filename": "Krenek_Karl_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 257f.", "author": "", "orig_id": 1416006}}, {"model": "metainfo.source", "pk": 11633, "fields": {"orig_filename": "Krennwallner_Paul_1876_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416083}}, {"model": "metainfo.source", "pk": 11634, "fields": {"orig_filename": "Krenn_August_1908_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416007}}, {"model": "metainfo.source", "pk": 11635, "fields": {"orig_filename": "Krenn_Edmund_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416008}}, {"model": "metainfo.source", "pk": 11636, "fields": {"orig_filename": "Krenn_Franz_1816_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258", "author": "", "orig_id": 1416009}}, {"model": "metainfo.source", "pk": 11637, "fields": {"orig_filename": "Krenn_Karl_1908_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 258f.", "author": "", "orig_id": 1416010}}, {"model": "metainfo.source", "pk": 11638, "fields": {"orig_filename": "Krenn_Leopold_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416011}}, {"model": "metainfo.source", "pk": 11639, "fields": {"orig_filename": "Krenn_Robert-Adolf_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259", "author": "", "orig_id": 1416012}}, {"model": "metainfo.source", "pk": 11640, "fields": {"orig_filename": "Kren_Otto_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 257", "author": "", "orig_id": 1416005}}, {"model": "metainfo.source", "pk": 11641, "fields": {"orig_filename": "Krepper_Johann_1799_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416085}}, {"model": "metainfo.source", "pk": 11642, "fields": {"orig_filename": "Krepp_Ignaz_1801_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 259f.", "author": "", "orig_id": 1416084}}, {"model": "metainfo.source", "pk": 11643, "fields": {"orig_filename": "Kreser_Milan_1876_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416086}}, {"model": "metainfo.source", "pk": 11644, "fields": {"orig_filename": "Kresic_Mijo_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1419221}}, {"model": "metainfo.source", "pk": 11645, "fields": {"orig_filename": "Kresnik_Franjo_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260", "author": "", "orig_id": 1416087}}, {"model": "metainfo.source", "pk": 11646, "fields": {"orig_filename": "Kresnik_Peter_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 260f.", "author": "", "orig_id": 1416088}}, {"model": "metainfo.source", "pk": 11647, "fields": {"orig_filename": "Kress-Kressenstein_Georg_1783_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416090}}, {"model": "metainfo.source", "pk": 11648, "fields": {"orig_filename": "Kress_Josef_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 261", "author": "", "orig_id": 1416089}}, {"model": "metainfo.source", "pk": 11649, "fields": {"orig_filename": "Kress_Wilhelm_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 261f.", "author": "", "orig_id": 1411494}}, {"model": "metainfo.source", "pk": 11650, "fields": {"orig_filename": "Krestin_Lazar_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416091}}, {"model": "metainfo.source", "pk": 11651, "fields": {"orig_filename": "Kresznerics_Ferenc_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262", "author": "", "orig_id": 1416092}}, {"model": "metainfo.source", "pk": 11652, "fields": {"orig_filename": "Kretschmann_Theobald_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 262f.", "author": "", "orig_id": 1416093}}, {"model": "metainfo.source", "pk": 11653, "fields": {"orig_filename": "Kretschmar_Paul-Gustav_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 263", "author": "", "orig_id": 1416094}}, {"model": "metainfo.source", "pk": 11654, "fields": {"orig_filename": "Kretschmayr_Heinrich_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 263f.", "author": "", "orig_id": 1416095}}, {"model": "metainfo.source", "pk": 11655, "fields": {"orig_filename": "Kretschy_Michael_1839_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416096}}, {"model": "metainfo.source", "pk": 11656, "fields": {"orig_filename": "Kretzer-Immertreu_Josef_1807_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265", "author": "", "orig_id": 1416099}}, {"model": "metainfo.source", "pk": 11657, "fields": {"orig_filename": "Kretz_Leodegar_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416097}}, {"model": "metainfo.source", "pk": 11658, "fields": {"orig_filename": "Kretz_Richard_1865_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 264", "author": "", "orig_id": 1416098}}, {"model": "metainfo.source", "pk": 11659, "fields": {"orig_filename": "Kreuter_Franz-Xaver_1842_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265", "author": "", "orig_id": 1416100}}, {"model": "metainfo.source", "pk": 11660, "fields": {"orig_filename": "Kreuter_Julius_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 265f.", "author": "", "orig_id": 1416101}}, {"model": "metainfo.source", "pk": 11661, "fields": {"orig_filename": "Kreutner_Simon_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 266", "author": "", "orig_id": 1416102}}, {"model": "metainfo.source", "pk": 11662, "fields": {"orig_filename": "Kreutzberg_Karl-Josef_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 266f.", "author": "", "orig_id": 1416104}}, {"model": "metainfo.source", "pk": 11663, "fields": {"orig_filename": "Krajcik_Johann_1804_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415272}}, {"model": "metainfo.source", "pk": 11664, "fields": {"orig_filename": "Krajner_Imre_1791_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415273}}, {"model": "metainfo.source", "pk": 11665, "fields": {"orig_filename": "Krakauer_Alexander_1866_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196", "author": "", "orig_id": 1415274}}, {"model": "metainfo.source", "pk": 11666, "fields": {"orig_filename": "Kral-Dobra-Voda_Adalbert_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197f.", "author": "", "orig_id": 1415347}}, {"model": "metainfo.source", "pk": 11667, "fields": {"orig_filename": "Kralicek_Rudolf_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198", "author": "", "orig_id": 1415348}}, {"model": "metainfo.source", "pk": 11668, "fields": {"orig_filename": "Kralik-Meyrswalden_Mathilde_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 199", "author": "", "orig_id": 1415351}}, {"model": "metainfo.source", "pk": 11669, "fields": {"orig_filename": "Kralik-Meyrswalden_Richard_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 199f.", "author": "", "orig_id": 1415352}}, {"model": "metainfo.source", "pk": 11670, "fields": {"orig_filename": "Kralik_Emil_1864_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198", "author": "", "orig_id": 1415349}}, {"model": "metainfo.source", "pk": 11671, "fields": {"orig_filename": "Kralik_Emil_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 198f.", "author": "", "orig_id": 1415350}}, {"model": "metainfo.source", "pk": 11672, "fields": {"orig_filename": "Kralj-Milarov_Ivka_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415355}}, {"model": "metainfo.source", "pk": 11673, "fields": {"orig_filename": "Kraljevic_Andeo_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415356}}, {"model": "metainfo.source", "pk": 11674, "fields": {"orig_filename": "Kraljevic_Benedikt_1765_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415357}}, {"model": "metainfo.source", "pk": 11675, "fields": {"orig_filename": "Kraljevic_Miroslav_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201", "author": "", "orig_id": 1415358}}, {"model": "metainfo.source", "pk": 11676, "fields": {"orig_filename": "Kraljevic_Miroslav_1885_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 201f.", "author": "", "orig_id": 1415359}}, {"model": "metainfo.source", "pk": 11677, "fields": {"orig_filename": "Kralj_Ivan_1792_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 200f.", "author": "", "orig_id": 1415354}}, {"model": "metainfo.source", "pk": 11678, "fields": {"orig_filename": "Krallert_Franz_1834_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202", "author": "", "orig_id": 1415361}}, {"model": "metainfo.source", "pk": 11679, "fields": {"orig_filename": "Krall_Jakob_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202", "author": "", "orig_id": 1415360}}, {"model": "metainfo.source", "pk": 11680, "fields": {"orig_filename": "Kral_Janko_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 196f.", "author": "", "orig_id": 1415343}}, {"model": "metainfo.source", "pk": 11681, "fields": {"orig_filename": "Kral_Johann-Nep_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415345}}, {"model": "metainfo.source", "pk": 11682, "fields": {"orig_filename": "Kral_Johann_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415344}}, {"model": "metainfo.source", "pk": 11683, "fields": {"orig_filename": "Kral_Josef_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 197", "author": "", "orig_id": 1415346}}, {"model": "metainfo.source", "pk": 11684, "fields": {"orig_filename": "Kramar_Karel_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 202ff.", "author": "", "orig_id": 1415362}}, {"model": "metainfo.source", "pk": 11685, "fields": {"orig_filename": "Kramberger_Ernest_1843_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415363}}, {"model": "metainfo.source", "pk": 11686, "fields": {"orig_filename": "Kramberger_Sofija_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415364}}, {"model": "metainfo.source", "pk": 11687, "fields": {"orig_filename": "Kramer-Drauburg_Max_1891_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205f.", "author": "", "orig_id": 1415444}}, {"model": "metainfo.source", "pk": 11688, "fields": {"orig_filename": "Kramerius_Vaclav-Rodomil_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415445}}, {"model": "metainfo.source", "pk": 11689, "fields": {"orig_filename": "Kramer_Ernst_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415439}}, {"model": "metainfo.source", "pk": 11690, "fields": {"orig_filename": "Kramer_Franz_1748_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204", "author": "", "orig_id": 1415440}}, {"model": "metainfo.source", "pk": 11691, "fields": {"orig_filename": "Kramer_Friedrich_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 204f.", "author": "", "orig_id": 1415441}}, {"model": "metainfo.source", "pk": 11692, "fields": {"orig_filename": "Kramer_Hans_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205", "author": "", "orig_id": 1415442}}, {"model": "metainfo.source", "pk": 11693, "fields": {"orig_filename": "Kramer_Leopold_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 205", "author": "", "orig_id": 1415443}}, {"model": "metainfo.source", "pk": 11694, "fields": {"orig_filename": "Krammer_Franz_1798_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415446}}, {"model": "metainfo.source", "pk": 11695, "fields": {"orig_filename": "Kramolin_Eduard_1807_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206", "author": "", "orig_id": 1415447}}, {"model": "metainfo.source", "pk": 11696, "fields": {"orig_filename": "Kramolis_Cenek_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 206f.", "author": "", "orig_id": 1415448}}, {"model": "metainfo.source", "pk": 11697, "fields": {"orig_filename": "Kramsall_Emil_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207", "author": "", "orig_id": 1415449}}, {"model": "metainfo.source", "pk": 11698, "fields": {"orig_filename": "Kranewitter_Alois_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207", "author": "", "orig_id": 1415450}}, {"model": "metainfo.source", "pk": 11699, "fields": {"orig_filename": "Kranewitter_Franz_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 207f.", "author": "", "orig_id": 1415451}}, {"model": "metainfo.source", "pk": 11700, "fields": {"orig_filename": "Kranewitter_Joseph_1758_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 208", "author": "", "orig_id": 1415452}}, {"model": "metainfo.source", "pk": 11701, "fields": {"orig_filename": "Kranjcevic_Silvije-Strahimir_1865_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 208f.", "author": "", "orig_id": 1415453}}, {"model": "metainfo.source", "pk": 11702, "fields": {"orig_filename": "Kranner_Josef-Andreas_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 209", "author": "", "orig_id": 1415454}}, {"model": "metainfo.source", "pk": 11703, "fields": {"orig_filename": "Kranzler_Johann-Georg_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415457}}, {"model": "metainfo.source", "pk": 11704, "fields": {"orig_filename": "Kranzl_Johann_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415456}}, {"model": "metainfo.source", "pk": 11705, "fields": {"orig_filename": "Kranz_Ludwig_1829_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 209f.", "author": "", "orig_id": 1415455}}, {"model": "metainfo.source", "pk": 11706, "fields": {"orig_filename": "Krapac_Ivan_1843_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210", "author": "", "orig_id": 1415458}}, {"model": "metainfo.source", "pk": 11707, "fields": {"orig_filename": "Krapf_Albert_1766_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 210f.", "author": "", "orig_id": 1415459}}, {"model": "metainfo.source", "pk": 11708, "fields": {"orig_filename": "Krapf_Philipp-Jakob_1854_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211", "author": "", "orig_id": 1415460}}, {"model": "metainfo.source", "pk": 11709, "fields": {"orig_filename": "Krapka_Josef_1862_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211", "author": "", "orig_id": 1415461}}, {"model": "metainfo.source", "pk": 11710, "fields": {"orig_filename": "Krasan_Franz_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 211f.", "author": "", "orig_id": 1415462}}, {"model": "metainfo.source", "pk": 11711, "fields": {"orig_filename": "Krasicki_Kazimierz_1807_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415535}}, {"model": "metainfo.source", "pk": 11712, "fields": {"orig_filename": "Krasl_Frantisek_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415536}}, {"model": "metainfo.source", "pk": 11713, "fields": {"orig_filename": "Krasnopolski_Horaz_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212", "author": "", "orig_id": 1415537}}, {"model": "metainfo.source", "pk": 11714, "fields": {"orig_filename": "Krasny-Ergen_Arnold_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213", "author": "", "orig_id": 1415539}}, {"model": "metainfo.source", "pk": 11715, "fields": {"orig_filename": "Krasny_Frantisek_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 212f.", "author": "", "orig_id": 1415538}}, {"model": "metainfo.source", "pk": 11716, "fields": {"orig_filename": "Krassberger_Sigmund_1822_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213", "author": "", "orig_id": 1415540}}, {"model": "metainfo.source", "pk": 11717, "fields": {"orig_filename": "Krasser_Fridolin_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 213f.", "author": "", "orig_id": 1415541}}, {"model": "metainfo.source", "pk": 11718, "fields": {"orig_filename": "Krassnigg_Rudolf_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214", "author": "", "orig_id": 1415542}}, {"model": "metainfo.source", "pk": 11719, "fields": {"orig_filename": "Krastel_Friedrich_1839_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214", "author": "", "orig_id": 1415543}}, {"model": "metainfo.source", "pk": 11720, "fields": {"orig_filename": "Kratky-Baschik_Anton_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415547}}, {"model": "metainfo.source", "pk": 11721, "fields": {"orig_filename": "Kratky_Hans_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 214f.", "author": "", "orig_id": 1415544}}, {"model": "metainfo.source", "pk": 11722, "fields": {"orig_filename": "Kratky_Richard_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415545}}, {"model": "metainfo.source", "pk": 11723, "fields": {"orig_filename": "Kratky_Therese_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415546}}, {"model": "metainfo.source", "pk": 11724, "fields": {"orig_filename": "Kratochvil_Augustin_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215", "author": "", "orig_id": 1415548}}, {"model": "metainfo.source", "pk": 11725, "fields": {"orig_filename": "Kratochvil_Jaroslav_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 215f.", "author": "", "orig_id": 1415549}}, {"model": "metainfo.source", "pk": 11726, "fields": {"orig_filename": "Kratochvil_Josef_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216", "author": "", "orig_id": 1415550}}, {"model": "metainfo.source", "pk": 11727, "fields": {"orig_filename": "Kratochvil_Vaclav_1861_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216", "author": "", "orig_id": 1415551}}, {"model": "metainfo.source", "pk": 11728, "fields": {"orig_filename": "Kratschmer-Forstburg_Florian_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 216f.", "author": "", "orig_id": 1415552}}, {"model": "metainfo.source", "pk": 11729, "fields": {"orig_filename": "Kratter_Franz_1758_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217", "author": "", "orig_id": 1415553}}, {"model": "metainfo.source", "pk": 11730, "fields": {"orig_filename": "Kratter_Franz_1760_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217", "author": "", "orig_id": 1415554}}, {"model": "metainfo.source", "pk": 11731, "fields": {"orig_filename": "Kratter_Julius_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 217f.", "author": "", "orig_id": 1415555}}, {"model": "metainfo.source", "pk": 11732, "fields": {"orig_filename": "Krattner_Karl_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 218", "author": "", "orig_id": 1415626}}, {"model": "metainfo.source", "pk": 11733, "fields": {"orig_filename": "Kratzer_Karl_1827_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415629}}, {"model": "metainfo.source", "pk": 11734, "fields": {"orig_filename": "Kratzl_Karl_1852_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415630}}, {"model": "metainfo.source", "pk": 11735, "fields": {"orig_filename": "Kratzmann_Ernst_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219f.", "author": "", "orig_id": 1415631}}, {"model": "metainfo.source", "pk": 11736, "fields": {"orig_filename": "Kratzmann_Karl-Gustav-Philipp_1812_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220", "author": "", "orig_id": 1415632}}, {"model": "metainfo.source", "pk": 11737, "fields": {"orig_filename": "Kratzwall_Franz_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220", "author": "", "orig_id": 1415633}}, {"model": "metainfo.source", "pk": 11738, "fields": {"orig_filename": "Kratz_Anna_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 218f.", "author": "", "orig_id": 1415627}}, {"model": "metainfo.source", "pk": 11739, "fields": {"orig_filename": "Kratz_Josefine_1876_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 219", "author": "", "orig_id": 1415628}}, {"model": "metainfo.source", "pk": 11740, "fields": {"orig_filename": "Kraus-Elislago_Anton-Joseph_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 235", "author": "", "orig_id": 1415739}}, {"model": "metainfo.source", "pk": 11741, "fields": {"orig_filename": "Kraus-Elislago_Heinrich_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 235", "author": "", "orig_id": 1415740}}, {"model": "metainfo.source", "pk": 11742, "fields": {"orig_filename": "Krause_Otto-Hermann_1870_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415741}}, {"model": "metainfo.source", "pk": 11743, "fields": {"orig_filename": "Kraushaar_Karl_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 236", "author": "", "orig_id": 1415808}}, {"model": "metainfo.source", "pk": 11744, "fields": {"orig_filename": "Krauss_Franz_1837_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226", "author": "", "orig_id": 1415647}}, {"model": "metainfo.source", "pk": 11745, "fields": {"orig_filename": "Krauss_Franz_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 226", "author": "", "orig_id": 1415648}}, {"model": "metainfo.source", "pk": 11746, "fields": {"orig_filename": "Krauss_Gustav-Johannes_1864_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415722}}, {"model": "metainfo.source", "pk": 11747, "fields": {"orig_filename": "Krauss_Helene_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 228", "author": "", "orig_id": 1415724}}, {"model": "metainfo.source", "pk": 11748, "fields": {"orig_filename": "Krauss_Karl_1789_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 230", "author": "", "orig_id": 1415729}}, {"model": "metainfo.source", "pk": 11749, "fields": {"orig_filename": "Krauss_Philipp_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 232f.", "author": "", "orig_id": 1415734}}, {"model": "metainfo.source", "pk": 11750, "fields": {"orig_filename": "Krauss_Rudolf_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 234", "author": "", "orig_id": 1415736}}, {"model": "metainfo.source", "pk": 11751, "fields": {"orig_filename": "Kraus_Alfred_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 220f.", "author": "", "orig_id": 1415634}}, {"model": "metainfo.source", "pk": 11752, "fields": {"orig_filename": "Kraus_Alfred_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 221f.", "author": "", "orig_id": 1415635}}, {"model": "metainfo.source", "pk": 11753, "fields": {"orig_filename": "Kraus_Alois_1840_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1415636}}, {"model": "metainfo.source", "pk": 11754, "fields": {"orig_filename": "Kraus_August_1812_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222", "author": "", "orig_id": 1415637}}, {"model": "metainfo.source", "pk": 11755, "fields": {"orig_filename": "Kraus_Clementine_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222", "author": "", "orig_id": 1415638}}, {"model": "metainfo.source", "pk": 11756, "fields": {"orig_filename": "Kraus_Eduard_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 222f.", "author": "", "orig_id": 1415639}}, {"model": "metainfo.source", "pk": 11757, "fields": {"orig_filename": "Kraus_Emil_1897_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 223", "author": "", "orig_id": 1415640}}, {"model": "metainfo.source", "pk": 11758, "fields": {"orig_filename": "Kraus_Ernst-Wilhelm_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 223f.", "author": "", "orig_id": 1415641}}, {"model": "metainfo.source", "pk": 11759, "fields": {"orig_filename": "Kraus_Felix_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 224", "author": "", "orig_id": 1415642}}, {"model": "metainfo.source", "pk": 11760, "fields": {"orig_filename": "Kraus_Felix_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 224f.", "author": "", "orig_id": 1415643}}, {"model": "metainfo.source", "pk": 11761, "fields": {"orig_filename": "Kraus_Felix_1887_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225", "author": "", "orig_id": 1415644}}, {"model": "metainfo.source", "pk": 11762, "fields": {"orig_filename": "Kraus_Ferdinand_1848_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225", "author": "", "orig_id": 1415645}}, {"model": "metainfo.source", "pk": 11763, "fields": {"orig_filename": "Kraus_Franz_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 225f.", "author": "", "orig_id": 1415646}}, {"model": "metainfo.source", "pk": 11764, "fields": {"orig_filename": "Kraus_Friedrich-Salomon_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 227", "author": "", "orig_id": 1415720}}, {"model": "metainfo.source", "pk": 11765, "fields": {"orig_filename": "Kovacevic_Ferdo_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416436}}, {"model": "metainfo.source", "pk": 11766, "fields": {"orig_filename": "Kovacevic_Milovan_1905_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166f.", "author": "", "orig_id": 1416437}}, {"model": "metainfo.source", "pk": 11767, "fields": {"orig_filename": "Kovachich_Marton-Gyoergy_1744_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416439}}, {"model": "metainfo.source", "pk": 11768, "fields": {"orig_filename": "Kovacic_Ante_1854_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167", "author": "", "orig_id": 1416440}}, {"model": "metainfo.source", "pk": 11769, "fields": {"orig_filename": "Kovacic_Fran_1867_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 167f.", "author": "", "orig_id": 1416441}}, {"model": "metainfo.source", "pk": 11770, "fields": {"orig_filename": "Kovacic_Ivan_1913_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 168", "author": "", "orig_id": 1416442}}, {"model": "metainfo.source", "pk": 11771, "fields": {"orig_filename": "Kovacic_Viktor_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 168", "author": "", "orig_id": 1416443}}, {"model": "metainfo.source", "pk": 11772, "fields": {"orig_filename": "Kovacs-Erdoetelek_Jozsef_1832_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416534}}, {"model": "metainfo.source", "pk": 11773, "fields": {"orig_filename": "Kovacs-Kevehaza_Gyula_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416535}}, {"model": "metainfo.source", "pk": 11774, "fields": {"orig_filename": "Kovacs-Martiny_Paul-Gabriel_1782_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416536}}, {"model": "metainfo.source", "pk": 11775, "fields": {"orig_filename": "Kovacs-Nagyajta_Istvan_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 173", "author": "", "orig_id": 1416537}}, {"model": "metainfo.source", "pk": 11776, "fields": {"orig_filename": "Kovacs-Sebestyen_Endre_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416538}}, {"model": "metainfo.source", "pk": 11777, "fields": {"orig_filename": "Kovacs_Albert_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416444}}, {"model": "metainfo.source", "pk": 11778, "fields": {"orig_filename": "Kovacs_August_1747_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169", "author": "", "orig_id": 1416445}}, {"model": "metainfo.source", "pk": 11779, "fields": {"orig_filename": "Kovacs_Friedrich_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 169f.", "author": "", "orig_id": 1416447}}, {"model": "metainfo.source", "pk": 11780, "fields": {"orig_filename": "Kovacs_Gyula_1815_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416448}}, {"model": "metainfo.source", "pk": 11781, "fields": {"orig_filename": "Kovacs_Josef_1799_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416449}}, {"model": "metainfo.source", "pk": 11782, "fields": {"orig_filename": "Kovacs_Karel_1880_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170", "author": "", "orig_id": 1416450}}, {"model": "metainfo.source", "pk": 11783, "fields": {"orig_filename": "Kovacs_Lajos_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 170f.", "author": "", "orig_id": 1416524}}, {"model": "metainfo.source", "pk": 11784, "fields": {"orig_filename": "Kovacs_Markus-Anton_1815_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416526}}, {"model": "metainfo.source", "pk": 11785, "fields": {"orig_filename": "Kovacs_Markus_1782_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416525}}, {"model": "metainfo.source", "pk": 11786, "fields": {"orig_filename": "Kovacs_Matyas_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416527}}, {"model": "metainfo.source", "pk": 11787, "fields": {"orig_filename": "Kovacs_Mihaly_1768_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 171", "author": "", "orig_id": 1416528}}, {"model": "metainfo.source", "pk": 11788, "fields": {"orig_filename": "Kovacs_Mihaly_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416529}}, {"model": "metainfo.source", "pk": 11789, "fields": {"orig_filename": "Kovacs_Oedoen_1844_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416530}}, {"model": "metainfo.source", "pk": 11790, "fields": {"orig_filename": "Kovacs_Pal_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416531}}, {"model": "metainfo.source", "pk": 11791, "fields": {"orig_filename": "Kovacs_Pal_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172", "author": "", "orig_id": 1416532}}, {"model": "metainfo.source", "pk": 11792, "fields": {"orig_filename": "Kovacs_Pal_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 172f.", "author": "", "orig_id": 1416533}}, {"model": "metainfo.source", "pk": 11793, "fields": {"orig_filename": "Kovarik_Frantisek_1865_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416540}}, {"model": "metainfo.source", "pk": 11794, "fields": {"orig_filename": "Kovarovic_Karel_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416541}}, {"model": "metainfo.source", "pk": 11795, "fields": {"orig_filename": "Kovar_Emanuel_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174", "author": "", "orig_id": 1416539}}, {"model": "metainfo.source", "pk": 11796, "fields": {"orig_filename": "Kowalczyk_Johann_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 174f.", "author": "", "orig_id": 1416542}}, {"model": "metainfo.source", "pk": 11797, "fields": {"orig_filename": "Kowarzik_Josef_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416611}}, {"model": "metainfo.source", "pk": 11798, "fields": {"orig_filename": "Kowarzik_Rudolf_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175f.", "author": "", "orig_id": 1416612}}, {"model": "metainfo.source", "pk": 11799, "fields": {"orig_filename": "Kowarz_Ferdinand_1838_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 175", "author": "", "orig_id": 1416543}}, {"model": "metainfo.source", "pk": 11800, "fields": {"orig_filename": "Koydl_Theodor_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416613}}, {"model": "metainfo.source", "pk": 11801, "fields": {"orig_filename": "Kozacek_Joseph_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416614}}, {"model": "metainfo.source", "pk": 11802, "fields": {"orig_filename": "Kozakiewicz_Antoni_1841_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416616}}, {"model": "metainfo.source", "pk": 11803, "fields": {"orig_filename": "Kozak_Jevhen_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176", "author": "", "orig_id": 1416615}}, {"model": "metainfo.source", "pk": 11804, "fields": {"orig_filename": "Kozanek_Jan_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 176f.", "author": "", "orig_id": 1416617}}, {"model": "metainfo.source", "pk": 11805, "fields": {"orig_filename": "Kozarac_Ivan_1885_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416618}}, {"model": "metainfo.source", "pk": 11806, "fields": {"orig_filename": "Kozarac_Josip_1858_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416619}}, {"model": "metainfo.source", "pk": 11807, "fields": {"orig_filename": "Kozarcanin_Ivo_1911_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177", "author": "", "orig_id": 1416620}}, {"model": "metainfo.source", "pk": 11808, "fields": {"orig_filename": "Kozelj_Matija_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 177f.", "author": "", "orig_id": 1416621}}, {"model": "metainfo.source", "pk": 11809, "fields": {"orig_filename": "Kozeluch_Katharina_1785_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178", "author": "", "orig_id": 1416622}}, {"model": "metainfo.source", "pk": 11810, "fields": {"orig_filename": "Kozeluch_Leopold-Anton_1747_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178", "author": "", "orig_id": 1416623}}, {"model": "metainfo.source", "pk": 11811, "fields": {"orig_filename": "Kozenn_Blasius_1821_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 178f.", "author": "", "orig_id": 1416624}}, {"model": "metainfo.source", "pk": 11812, "fields": {"orig_filename": "Kozicki_Wladyslaw_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416625}}, {"model": "metainfo.source", "pk": 11813, "fields": {"orig_filename": "Kozics_Franz_1864_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416626}}, {"model": "metainfo.source", "pk": 11814, "fields": {"orig_filename": "Koziebrodzki_Wladyslaw-Bolesta_1839_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 179", "author": "", "orig_id": 1416627}}, {"model": "metainfo.source", "pk": 11815, "fields": {"orig_filename": "Kozina_Alexander_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416628}}, {"model": "metainfo.source", "pk": 11816, "fields": {"orig_filename": "Kozisek_Josef_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416629}}, {"model": "metainfo.source", "pk": 11817, "fields": {"orig_filename": "Kozlowski_Wlodzimierz_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180", "author": "", "orig_id": 1416700}}, {"model": "metainfo.source", "pk": 11818, "fields": {"orig_filename": "Kozlowski_Zygmunt-Bolesta_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 180f.", "author": "", "orig_id": 1416701}}, {"model": "metainfo.source", "pk": 11819, "fields": {"orig_filename": "Kozma_Andor_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181", "author": "", "orig_id": 1416702}}, {"model": "metainfo.source", "pk": 11820, "fields": {"orig_filename": "Kozmian_Stanislaw_1836_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181", "author": "", "orig_id": 1416703}}, {"model": "metainfo.source", "pk": 11821, "fields": {"orig_filename": "Kozubowski_Antoni_1805_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 181f.", "author": "", "orig_id": 1416704}}, {"model": "metainfo.source", "pk": 11822, "fields": {"orig_filename": "Kraal_Josef_1887_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416705}}, {"model": "metainfo.source", "pk": 11823, "fields": {"orig_filename": "Kracher_Ferdinand_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416706}}, {"model": "metainfo.source", "pk": 11824, "fields": {"orig_filename": "Kracher_Joseph-Mathias_1752_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182", "author": "", "orig_id": 1416707}}, {"model": "metainfo.source", "pk": 11825, "fields": {"orig_filename": "Krackowizer_Ernst_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 182f.", "author": "", "orig_id": 1416708}}, {"model": "metainfo.source", "pk": 11826, "fields": {"orig_filename": "Krackowizer_Ferdinand_1844_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183", "author": "", "orig_id": 1416709}}, {"model": "metainfo.source", "pk": 11827, "fields": {"orig_filename": "Krackowizer_Ferdinand_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183", "author": "", "orig_id": 1416710}}, {"model": "metainfo.source", "pk": 11828, "fields": {"orig_filename": "Krackowizer_Franz-Stefan_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 183f.", "author": "", "orig_id": 1416711}}, {"model": "metainfo.source", "pk": 11829, "fields": {"orig_filename": "Krackowizer_Hermann_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416712}}, {"model": "metainfo.source", "pk": 11830, "fields": {"orig_filename": "Kraegel_Ernst-Josef_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416713}}, {"model": "metainfo.source", "pk": 11831, "fields": {"orig_filename": "Kraehmer_Caroline_1794_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184", "author": "", "orig_id": 1416714}}, {"model": "metainfo.source", "pk": 11832, "fields": {"orig_filename": "Kraehmer_Johann-Ernst_1795_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 184f.", "author": "", "orig_id": 1416715}}, {"model": "metainfo.source", "pk": 11833, "fields": {"orig_filename": "Kraelitz-Greifenhorst_Friedrich-Johann_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185", "author": "", "orig_id": 1416716}}, {"model": "metainfo.source", "pk": 11834, "fields": {"orig_filename": "Kraemer-Widl_Marie_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 186", "author": "", "orig_id": 1416720}}, {"model": "metainfo.source", "pk": 11835, "fields": {"orig_filename": "Kraemer_August_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185", "author": "", "orig_id": 1416717}}, {"model": "metainfo.source", "pk": 11836, "fields": {"orig_filename": "Kraemer_Johann-Viktor_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 185f.", "author": "", "orig_id": 1416718}}, {"model": "metainfo.source", "pk": 11837, "fields": {"orig_filename": "Kraemer_Richard_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 186", "author": "", "orig_id": 1416719}}, {"model": "metainfo.source", "pk": 11838, "fields": {"orig_filename": "Kraenzl_Josef-Leopold_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416721}}, {"model": "metainfo.source", "pk": 11839, "fields": {"orig_filename": "Kraenzl_Susanne_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416722}}, {"model": "metainfo.source", "pk": 11840, "fields": {"orig_filename": "Krafft-Ebing_Richard_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 190f.", "author": "", "orig_id": 1415253}}, {"model": "metainfo.source", "pk": 11841, "fields": {"orig_filename": "Krafft_Albrecht_1816_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187", "author": "", "orig_id": 1416723}}, {"model": "metainfo.source", "pk": 11842, "fields": {"orig_filename": "Krafft_Barbara_1764_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 187f.", "author": "", "orig_id": 1416724}}, {"model": "metainfo.source", "pk": 11843, "fields": {"orig_filename": "Krafft_Guido_1844_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 188", "author": "", "orig_id": 1415249}}, {"model": "metainfo.source", "pk": 11844, "fields": {"orig_filename": "Krafft_Johann-Peter_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 188f.", "author": "", "orig_id": 1415250}}, {"model": "metainfo.source", "pk": 11845, "fields": {"orig_filename": "Krafft_Josef_1786_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 189f.", "author": "", "orig_id": 1415251}}, {"model": "metainfo.source", "pk": 11846, "fields": {"orig_filename": "Krafft_Marie_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 190", "author": "", "orig_id": 1415252}}, {"model": "metainfo.source", "pk": 11847, "fields": {"orig_filename": "Kraftel_Richard_1860_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415262}}, {"model": "metainfo.source", "pk": 11848, "fields": {"orig_filename": "Kraft_Alois_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415254}}, {"model": "metainfo.source", "pk": 11849, "fields": {"orig_filename": "Kraft_Amalie_1840_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415255}}, {"model": "metainfo.source", "pk": 11850, "fields": {"orig_filename": "Kraft_Anton_1752_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191", "author": "", "orig_id": 1415256}}, {"model": "metainfo.source", "pk": 11851, "fields": {"orig_filename": "Kraft_August_1891_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1456200}}, {"model": "metainfo.source", "pk": 11852, "fields": {"orig_filename": "Kraft_Emil_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 191f.", "author": "", "orig_id": 1415257}}, {"model": "metainfo.source", "pk": 11853, "fields": {"orig_filename": "Kraft_Josef_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415258}}, {"model": "metainfo.source", "pk": 11854, "fields": {"orig_filename": "Kraft_Karl_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415259}}, {"model": "metainfo.source", "pk": 11855, "fields": {"orig_filename": "Kraft_Maximilian_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 192", "author": "", "orig_id": 1415260}}, {"model": "metainfo.source", "pk": 11856, "fields": {"orig_filename": "Kraft_Nikolaus_1778_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415261}}, {"model": "metainfo.source", "pk": 11857, "fields": {"orig_filename": "Krahl_Ernst-August_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415263}}, {"model": "metainfo.source", "pk": 11858, "fields": {"orig_filename": "Krahl_Karl_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193", "author": "", "orig_id": 1415264}}, {"model": "metainfo.source", "pk": 11859, "fields": {"orig_filename": "Krahuletz_Johann_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 193f.", "author": "", "orig_id": 1415265}}, {"model": "metainfo.source", "pk": 11860, "fields": {"orig_filename": "Kraigher-Porges_Josepha_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415266}}, {"model": "metainfo.source", "pk": 11861, "fields": {"orig_filename": "Krainer_Paul_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415267}}, {"model": "metainfo.source", "pk": 11862, "fields": {"orig_filename": "Krainski_Maurycy_1804_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194", "author": "", "orig_id": 1415268}}, {"model": "metainfo.source", "pk": 11863, "fields": {"orig_filename": "Krainz_Johann_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 194f.", "author": "", "orig_id": 1415269}}, {"model": "metainfo.source", "pk": 11864, "fields": {"orig_filename": "Krainz_Josef_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 195", "author": "", "orig_id": 1415270}}, {"model": "metainfo.source", "pk": 11865, "fields": {"orig_filename": "Krainz_Wilfried_1895_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 18, 1968), S. 195f.", "author": "", "orig_id": 1415271}}, {"model": "metainfo.source", "pk": 11866, "fields": {"orig_filename": "Korn_Johann-Michael_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129", "author": "", "orig_id": 1415885}}, {"model": "metainfo.source", "pk": 11867, "fields": {"orig_filename": "Korn_Philipp-Anton_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415886}}, {"model": "metainfo.source", "pk": 11868, "fields": {"orig_filename": "Korn_Wenzel_1832_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415887}}, {"model": "metainfo.source", "pk": 11869, "fields": {"orig_filename": "Korn_Wilhelmine_1786_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415888}}, {"model": "metainfo.source", "pk": 11870, "fields": {"orig_filename": "Korolija_Mirko_1886_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415971}}, {"model": "metainfo.source", "pk": 11871, "fields": {"orig_filename": "Korompay_Adolf_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415972}}, {"model": "metainfo.source", "pk": 11872, "fields": {"orig_filename": "Korompay_Gustav_1833_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135", "author": "", "orig_id": 1415973}}, {"model": "metainfo.source", "pk": 11873, "fields": {"orig_filename": "Korosec_Anton_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 135f.", "author": "", "orig_id": 1415974}}, {"model": "metainfo.source", "pk": 11874, "fields": {"orig_filename": "Korper-Marienwerth_Karl_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 136", "author": "", "orig_id": 1415975}}, {"model": "metainfo.source", "pk": 11875, "fields": {"orig_filename": "Korponay-Komonka_Janos_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415976}}, {"model": "metainfo.source", "pk": 11876, "fields": {"orig_filename": "Korschann_Franz_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415977}}, {"model": "metainfo.source", "pk": 11877, "fields": {"orig_filename": "Korschann_Karl_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415978}}, {"model": "metainfo.source", "pk": 11878, "fields": {"orig_filename": "Korschann_Rudolf_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137", "author": "", "orig_id": 1415979}}, {"model": "metainfo.source", "pk": 11879, "fields": {"orig_filename": "Kortleitner_Franz-Xaver_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 137f.", "author": "", "orig_id": 1415980}}, {"model": "metainfo.source", "pk": 11880, "fields": {"orig_filename": "Kortschak_Johann_1849_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415981}}, {"model": "metainfo.source", "pk": 11881, "fields": {"orig_filename": "Kortz_Paul_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415982}}, {"model": "metainfo.source", "pk": 11882, "fields": {"orig_filename": "Korytko_Emil_1813_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138", "author": "", "orig_id": 1415983}}, {"model": "metainfo.source", "pk": 11883, "fields": {"orig_filename": "Korytowski_Wiltold_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 138f.", "author": "", "orig_id": 1415984}}, {"model": "metainfo.source", "pk": 11884, "fields": {"orig_filename": "Korzeniowski_Jozef_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 139", "author": "", "orig_id": 1415985}}, {"model": "metainfo.source", "pk": 11885, "fields": {"orig_filename": "Kosarek_Adolf_1830_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140", "author": "", "orig_id": 1415988}}, {"model": "metainfo.source", "pk": 11886, "fields": {"orig_filename": "Kosar_Franc_1823_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140", "author": "", "orig_id": 1415987}}, {"model": "metainfo.source", "pk": 11887, "fields": {"orig_filename": "Koscak_Ivan_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 140f.", "author": "", "orig_id": 1416064}}, {"model": "metainfo.source", "pk": 11888, "fields": {"orig_filename": "Koscevic_Vjekoslav_1866_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416065}}, {"model": "metainfo.source", "pk": 11889, "fields": {"orig_filename": "Koschat_Thomas_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141f.", "author": "", "orig_id": 1416079}}, {"model": "metainfo.source", "pk": 11890, "fields": {"orig_filename": "Koschich_Tobias-Karl_1829_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142", "author": "", "orig_id": 1416080}}, {"model": "metainfo.source", "pk": 11891, "fields": {"orig_filename": "Koschier_Hans_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142", "author": "", "orig_id": 1416081}}, {"model": "metainfo.source", "pk": 11892, "fields": {"orig_filename": "Koschier_Laurenz_1804_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 142f.", "author": "", "orig_id": 1416082}}, {"model": "metainfo.source", "pk": 11893, "fields": {"orig_filename": "Kosch_Franz_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416066}}, {"model": "metainfo.source", "pk": 11894, "fields": {"orig_filename": "Kosch_Josef_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 141", "author": "", "orig_id": 1416078}}, {"model": "metainfo.source", "pk": 11895, "fields": {"orig_filename": "Kosegarten_Wilhelm_1792_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143", "author": "", "orig_id": 1416153}}, {"model": "metainfo.source", "pk": 11896, "fields": {"orig_filename": "Kosek_Josef_1780_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143", "author": "", "orig_id": 1416155}}, {"model": "metainfo.source", "pk": 11897, "fields": {"orig_filename": "Kosel_Hermann-Clemens_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 143f.", "author": "", "orig_id": 1416156}}, {"model": "metainfo.source", "pk": 11898, "fields": {"orig_filename": "Kosel_Mansuet-Johann_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144", "author": "", "orig_id": 1416157}}, {"model": "metainfo.source", "pk": 11899, "fields": {"orig_filename": "Kosic_Baldo_1829_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144", "author": "", "orig_id": 1416158}}, {"model": "metainfo.source", "pk": 11900, "fields": {"orig_filename": "Kosier_Ljubomir_1897_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 144f.", "author": "", "orig_id": 1416159}}, {"model": "metainfo.source", "pk": 11901, "fields": {"orig_filename": "Kosina_Jan-Ev_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416160}}, {"model": "metainfo.source", "pk": 11902, "fields": {"orig_filename": "Kosinski_Wladyslaw_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416161}}, {"model": "metainfo.source", "pk": 11903, "fields": {"orig_filename": "Kosir_Franc_1906_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145", "author": "", "orig_id": 1416162}}, {"model": "metainfo.source", "pk": 11904, "fields": {"orig_filename": "Kosir_Pavel_1878_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 145f.", "author": "", "orig_id": 1416164}}, {"model": "metainfo.source", "pk": 11905, "fields": {"orig_filename": "Kosjek_Gustav_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416165}}, {"model": "metainfo.source", "pk": 11906, "fields": {"orig_filename": "Kosler_Franz-Xaver_1864_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416166}}, {"model": "metainfo.source", "pk": 11907, "fields": {"orig_filename": "Kosler_Josef_1822_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146", "author": "", "orig_id": 1416167}}, {"model": "metainfo.source", "pk": 11908, "fields": {"orig_filename": "Kosler_Peter_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 146f.", "author": "", "orig_id": 1416168}}, {"model": "metainfo.source", "pk": 11909, "fields": {"orig_filename": "Kosmac_Jurij_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147", "author": "", "orig_id": 1416169}}, {"model": "metainfo.source", "pk": 11910, "fields": {"orig_filename": "Kosmak_Vaclav_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147", "author": "", "orig_id": 1416170}}, {"model": "metainfo.source", "pk": 11911, "fields": {"orig_filename": "Kosovel_Srecko_1904_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 147f.", "author": "", "orig_id": 1416171}}, {"model": "metainfo.source", "pk": 11912, "fields": {"orig_filename": "Kossak_Juliusz-Fortunat_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149", "author": "", "orig_id": 1416243}}, {"model": "metainfo.source", "pk": 11913, "fields": {"orig_filename": "Kossak_Karl-Ludwig_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149", "author": "", "orig_id": 1416244}}, {"model": "metainfo.source", "pk": 11914, "fields": {"orig_filename": "Kossak_Leon_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 149f.", "author": "", "orig_id": 1416245}}, {"model": "metainfo.source", "pk": 11915, "fields": {"orig_filename": "Kossak_Wojciech_1856_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 150", "author": "", "orig_id": 1416246}}, {"model": "metainfo.source", "pk": 11916, "fields": {"orig_filename": "Kossmat_Franz_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 150f.", "author": "", "orig_id": 1416247}}, {"model": "metainfo.source", "pk": 11917, "fields": {"orig_filename": "Kossovich_Karoly_1803_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416248}}, {"model": "metainfo.source", "pk": 11918, "fields": {"orig_filename": "Kossowicz_Alexander_1874_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416249}}, {"model": "metainfo.source", "pk": 11919, "fields": {"orig_filename": "Kossowski_Henryk_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151", "author": "", "orig_id": 1416250}}, {"model": "metainfo.source", "pk": 11920, "fields": {"orig_filename": "Kossuth-Udvard-Kossut_Ferenc_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 151f.", "author": "", "orig_id": 1416251}}, {"model": "metainfo.source", "pk": 11921, "fields": {"orig_filename": "Kossuth-Udvard-Kossut_Lajos_1802_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 152f.", "author": "", "orig_id": 1416252}}, {"model": "metainfo.source", "pk": 11922, "fields": {"orig_filename": "Koss_Karl_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 148", "author": "", "orig_id": 1416172}}, {"model": "metainfo.source", "pk": 11923, "fields": {"orig_filename": "Koss_Rudolf_1884_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 148f.", "author": "", "orig_id": 1416173}}, {"model": "metainfo.source", "pk": 11924, "fields": {"orig_filename": "Kostanecki_Kazimierz_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 153f.", "author": "", "orig_id": 1416253}}, {"model": "metainfo.source", "pk": 11925, "fields": {"orig_filename": "Kostelecky_Vincenz-Franz_1801_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154", "author": "", "orig_id": 1416254}}, {"model": "metainfo.source", "pk": 11926, "fields": {"orig_filename": "Kostersitz-Marenhorst_Karl_1839_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154f.", "author": "", "orig_id": 1416256}}, {"model": "metainfo.source", "pk": 11927, "fields": {"orig_filename": "Kostersitz_Ubald_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 154", "author": "", "orig_id": 1416255}}, {"model": "metainfo.source", "pk": 11928, "fields": {"orig_filename": "Kostetzky_Dominik_1753_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155", "author": "", "orig_id": 1416257}}, {"model": "metainfo.source", "pk": 11929, "fields": {"orig_filename": "Kostial_Ivan_1877_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155", "author": "", "orig_id": 1416258}}, {"model": "metainfo.source", "pk": 11930, "fields": {"orig_filename": "Kostic_Lazar_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 155f.", "author": "", "orig_id": 1416259}}, {"model": "metainfo.source", "pk": 11931, "fields": {"orig_filename": "Kostic_Milan_1876_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416260}}, {"model": "metainfo.source", "pk": 11932, "fields": {"orig_filename": "Kostin-Kolakiewicz_Adrienne_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416261}}, {"model": "metainfo.source", "pk": 11933, "fields": {"orig_filename": "Kostlivy_Stanislav_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416262}}, {"model": "metainfo.source", "pk": 11934, "fields": {"orig_filename": "Kostner_Alois_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156", "author": "", "orig_id": 1416263}}, {"model": "metainfo.source", "pk": 11935, "fields": {"orig_filename": "Kostrencic_Ivan_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 156f.", "author": "", "orig_id": 1416264}}, {"model": "metainfo.source", "pk": 11936, "fields": {"orig_filename": "Kosutany_Tamas_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157", "author": "", "orig_id": 1416265}}, {"model": "metainfo.source", "pk": 11937, "fields": {"orig_filename": "Kosztka_Tivadar_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 157f.", "author": "", "orig_id": 1416338}}, {"model": "metainfo.source", "pk": 11938, "fields": {"orig_filename": "Kos_Franc_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 139f.", "author": "", "orig_id": 1415986}}, {"model": "metainfo.source", "pk": 11939, "fields": {"orig_filename": "Kotarbinski_Jozef_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 158", "author": "", "orig_id": 1416339}}, {"model": "metainfo.source", "pk": 11940, "fields": {"orig_filename": "Kotera_Jan_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 158f.", "author": "", "orig_id": 1416340}}, {"model": "metainfo.source", "pk": 11941, "fields": {"orig_filename": "Kothgasser_Anton_1769_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 159", "author": "", "orig_id": 1416341}}, {"model": "metainfo.source", "pk": 11942, "fields": {"orig_filename": "Kotlar_Vaclav_1871_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416342}}, {"model": "metainfo.source", "pk": 11943, "fields": {"orig_filename": "Kotschy_Heinrich-Joh-Gottfried_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416343}}, {"model": "metainfo.source", "pk": 11944, "fields": {"orig_filename": "Kotschy_Theodor_1813_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160", "author": "", "orig_id": 1416344}}, {"model": "metainfo.source", "pk": 11945, "fields": {"orig_filename": "Kotsis_Aleksander_1836_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 160f.", "author": "", "orig_id": 1416345}}, {"model": "metainfo.source", "pk": 11946, "fields": {"orig_filename": "Kotsmich_Vojtech_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416346}}, {"model": "metainfo.source", "pk": 11947, "fields": {"orig_filename": "Kottaun_Leopold_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416349}}, {"model": "metainfo.source", "pk": 11948, "fields": {"orig_filename": "Kotterba_Karl_1800_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161f.", "author": "", "orig_id": 1416350}}, {"model": "metainfo.source", "pk": 11949, "fields": {"orig_filename": "Kottie_Johann-Nep_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162", "author": "", "orig_id": 1416351}}, {"model": "metainfo.source", "pk": 11950, "fields": {"orig_filename": "Kottulinsky-Kottulin_Adalbert_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162", "author": "", "orig_id": 1416352}}, {"model": "metainfo.source", "pk": 11951, "fields": {"orig_filename": "Kott_Frantisek-Bedrich_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416347}}, {"model": "metainfo.source", "pk": 11952, "fields": {"orig_filename": "Kott_Frantisek-Stepan_1825_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 161", "author": "", "orig_id": 1416348}}, {"model": "metainfo.source", "pk": 11953, "fields": {"orig_filename": "Kotula_Rudolf_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 162f.", "author": "", "orig_id": 1416353}}, {"model": "metainfo.source", "pk": 11954, "fields": {"orig_filename": "Kotzian_Josef-Maria_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416355}}, {"model": "metainfo.source", "pk": 11955, "fields": {"orig_filename": "Kotzian_Josef_1822_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416354}}, {"model": "metainfo.source", "pk": 11956, "fields": {"orig_filename": "Kotz_Hedwig_1899_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2091921}}, {"model": "metainfo.source", "pk": 11957, "fields": {"orig_filename": "Koubek_Jan-Pravoslav_1805_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163", "author": "", "orig_id": 1416356}}, {"model": "metainfo.source", "pk": 11958, "fields": {"orig_filename": "Koudela-Jelinkov_Josef_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 163f.", "author": "", "orig_id": 1416357}}, {"model": "metainfo.source", "pk": 11959, "fields": {"orig_filename": "Koudelka_Alfred_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 164", "author": "", "orig_id": 1416358}}, {"model": "metainfo.source", "pk": 11960, "fields": {"orig_filename": "Koudelka_Joseph_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 164f.", "author": "", "orig_id": 1416359}}, {"model": "metainfo.source", "pk": 11961, "fields": {"orig_filename": "Koudelka_Pauline_1806_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416429}}, {"model": "metainfo.source", "pk": 11962, "fields": {"orig_filename": "Koukl_Antonin_1860_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416430}}, {"model": "metainfo.source", "pk": 11963, "fields": {"orig_filename": "Koula_Jan_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165", "author": "", "orig_id": 1416431}}, {"model": "metainfo.source", "pk": 11964, "fields": {"orig_filename": "Koumas_Konstantin-Michael_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 165f.", "author": "", "orig_id": 1416432}}, {"model": "metainfo.source", "pk": 11965, "fields": {"orig_filename": "Kounic_Vaclav_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416433}}, {"model": "metainfo.source", "pk": 11966, "fields": {"orig_filename": "Kounitzky_Franz_1880_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416434}}, {"model": "metainfo.source", "pk": 11967, "fields": {"orig_filename": "Kovacevic_Andrija_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 166", "author": "", "orig_id": 1416435}}, {"model": "metainfo.source", "pk": 11968, "fields": {"orig_filename": "Kompert_Leopold_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104", "author": "", "orig_id": 1415510}}, {"model": "metainfo.source", "pk": 11969, "fields": {"orig_filename": "Kompert_Marie_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104", "author": "", "orig_id": 1415511}}, {"model": "metainfo.source", "pk": 11970, "fields": {"orig_filename": "Komzak_Karl_1850_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 104f.", "author": "", "orig_id": 1415512}}, {"model": "metainfo.source", "pk": 11971, "fields": {"orig_filename": "Koncz_Jozsef_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415514}}, {"model": "metainfo.source", "pk": 11972, "fields": {"orig_filename": "Konek_Sandor_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415515}}, {"model": "metainfo.source", "pk": 11973, "fields": {"orig_filename": "Konhaeuser_Franz_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105", "author": "", "orig_id": 1415516}}, {"model": "metainfo.source", "pk": 11974, "fields": {"orig_filename": "Konicek_Oldrich_1886_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 105f.", "author": "", "orig_id": 1415517}}, {"model": "metainfo.source", "pk": 11975, "fields": {"orig_filename": "Koniuszko_Waclaw_1854_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106", "author": "", "orig_id": 1415518}}, {"model": "metainfo.source", "pk": 11976, "fields": {"orig_filename": "Konkoly-Thege_Miklos_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106", "author": "", "orig_id": 1415519}}, {"model": "metainfo.source", "pk": 11977, "fields": {"orig_filename": "Konopa_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 106f.", "author": "", "orig_id": 1415520}}, {"model": "metainfo.source", "pk": 11978, "fields": {"orig_filename": "Konopnicka_Maria_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415521}}, {"model": "metainfo.source", "pk": 11979, "fields": {"orig_filename": "Konrad_Heinrich_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415522}}, {"model": "metainfo.source", "pk": 11980, "fields": {"orig_filename": "Konrad_Johann_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107", "author": "", "orig_id": 1415523}}, {"model": "metainfo.source", "pk": 11981, "fields": {"orig_filename": "Konrad_Josef-Deograt_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 107f.", "author": "", "orig_id": 1415524}}, {"model": "metainfo.source", "pk": 11982, "fields": {"orig_filename": "Konrad_Karel_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415525}}, {"model": "metainfo.source", "pk": 11983, "fields": {"orig_filename": "Konrad_Karl_1874_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108", "author": "", "orig_id": 1415526}}, {"model": "metainfo.source", "pk": 11984, "fields": {"orig_filename": "Konried_Julius_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 108f.", "author": "", "orig_id": 1415529}}, {"model": "metainfo.source", "pk": 11985, "fields": {"orig_filename": "Konsek_Valentin_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415531}}, {"model": "metainfo.source", "pk": 11986, "fields": {"orig_filename": "Konstantin_Frieda_1884_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415532}}, {"model": "metainfo.source", "pk": 11987, "fields": {"orig_filename": "Kontak_Antun_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415605}}, {"model": "metainfo.source", "pk": 11988, "fields": {"orig_filename": "Konta_Ignaz_1838_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415534}}, {"model": "metainfo.source", "pk": 11989, "fields": {"orig_filename": "Konti_Isidor_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415606}}, {"model": "metainfo.source", "pk": 11990, "fields": {"orig_filename": "Kontschnigg_Peter_1844_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415607}}, {"model": "metainfo.source", "pk": 11991, "fields": {"orig_filename": "Kontski_Antoni_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110", "author": "", "orig_id": 1415608}}, {"model": "metainfo.source", "pk": 11992, "fields": {"orig_filename": "Kontski_Karel_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 110f.", "author": "", "orig_id": 1415609}}, {"model": "metainfo.source", "pk": 11993, "fields": {"orig_filename": "Kont_Ignac_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 109", "author": "", "orig_id": 1415533}}, {"model": "metainfo.source", "pk": 11994, "fields": {"orig_filename": "Konupek_Jan_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415610}}, {"model": "metainfo.source", "pk": 11995, "fields": {"orig_filename": "Konyi_Mano_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415611}}, {"model": "metainfo.source", "pk": 11996, "fields": {"orig_filename": "Kopacsy_Jozsef_1775_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112", "author": "", "orig_id": 1415614}}, {"model": "metainfo.source", "pk": 11997, "fields": {"orig_filename": "Kopac_Josip_1863_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 111", "author": "", "orig_id": 1415613}}, {"model": "metainfo.source", "pk": 11998, "fields": {"orig_filename": "Kopajtic_Sigismund_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112", "author": "", "orig_id": 1415615}}, {"model": "metainfo.source", "pk": 11999, "fields": {"orig_filename": "Kopallik_Franz_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415618}}, {"model": "metainfo.source", "pk": 12000, "fields": {"orig_filename": "Kopallik_Joseph_1849_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415619}}, {"model": "metainfo.source", "pk": 12001, "fields": {"orig_filename": "Kopal_Karl_1788_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 112f.", "author": "", "orig_id": 1415616}}, {"model": "metainfo.source", "pk": 12002, "fields": {"orig_filename": "Kopal_Leopold_1785_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113", "author": "", "orig_id": 1415617}}, {"model": "metainfo.source", "pk": 12003, "fields": {"orig_filename": "Kopatsch_Johann_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 113f.", "author": "", "orig_id": 1415620}}, {"model": "metainfo.source", "pk": 12004, "fields": {"orig_filename": "Kopecky_Matej_1775_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114", "author": "", "orig_id": 1415621}}, {"model": "metainfo.source", "pk": 12005, "fields": {"orig_filename": "Kopecky_Otakar_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114", "author": "", "orig_id": 1415622}}, {"model": "metainfo.source", "pk": 12006, "fields": {"orig_filename": "Kopernicki_Izydor_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 114f.", "author": "", "orig_id": 1415623}}, {"model": "metainfo.source", "pk": 12007, "fields": {"orig_filename": "Kopetzky_Franz-Johann_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415625}}, {"model": "metainfo.source", "pk": 12008, "fields": {"orig_filename": "Kopetzky_Olga_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415698}}, {"model": "metainfo.source", "pk": 12009, "fields": {"orig_filename": "Kopetz_Wenzel-Gustav_1782_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415624}}, {"model": "metainfo.source", "pk": 12010, "fields": {"orig_filename": "Kopff_Johann-Vincenz_1763_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115", "author": "", "orig_id": 1415699}}, {"model": "metainfo.source", "pk": 12011, "fields": {"orig_filename": "Kopff_Wiktor_1805_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 115f.", "author": "", "orig_id": 1415700}}, {"model": "metainfo.source", "pk": 12012, "fields": {"orig_filename": "Kopfinger-Trebbienau_Eugen_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 116", "author": "", "orig_id": 1415701}}, {"model": "metainfo.source", "pk": 12013, "fields": {"orig_filename": "Kopitar_Bartholomaeus_1780_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 116f.", "author": "", "orig_id": 1415702}}, {"model": "metainfo.source", "pk": 12014, "fields": {"orig_filename": "Kopko_Petro-Maksymovyc_1886_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117", "author": "", "orig_id": 1415703}}, {"model": "metainfo.source", "pk": 12015, "fields": {"orig_filename": "Koplenig_Hilde_1904_2002.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1437316}}, {"model": "metainfo.source", "pk": 12016, "fields": {"orig_filename": "Kopler_Leopold_1881_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117", "author": "", "orig_id": 1415704}}, {"model": "metainfo.source", "pk": 12017, "fields": {"orig_filename": "Koplhuber_Leopold_1763_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 117f.", "author": "", "orig_id": 1415705}}, {"model": "metainfo.source", "pk": 12018, "fields": {"orig_filename": "Koppay_Josef-Arpad_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415709}}, {"model": "metainfo.source", "pk": 12019, "fields": {"orig_filename": "Koppel_Gustav_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415710}}, {"model": "metainfo.source", "pk": 12020, "fields": {"orig_filename": "Koppel_Hans_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119", "author": "", "orig_id": 1415711}}, {"model": "metainfo.source", "pk": 12021, "fields": {"orig_filename": "Koppensteiner_Anton-Michael_1787_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 119f.", "author": "", "orig_id": 1415712}}, {"model": "metainfo.source", "pk": 12022, "fields": {"orig_filename": "Koppitz_Rudolf_1884_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415713}}, {"model": "metainfo.source", "pk": 12023, "fields": {"orig_filename": "Koppmann_Adolf_1781_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415715}}, {"model": "metainfo.source", "pk": 12024, "fields": {"orig_filename": "Kopp_Georg_1837_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118", "author": "", "orig_id": 1415706}}, {"model": "metainfo.source", "pk": 12025, "fields": {"orig_filename": "Kopp_Hermann_1863_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118", "author": "", "orig_id": 1415707}}, {"model": "metainfo.source", "pk": 12026, "fields": {"orig_filename": "Kopp_Josef_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 118f.", "author": "", "orig_id": 1415708}}, {"model": "metainfo.source", "pk": 12027, "fields": {"orig_filename": "Koprivnik_Janez_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415716}}, {"model": "metainfo.source", "pk": 12028, "fields": {"orig_filename": "Kopstein_Regina_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120", "author": "", "orig_id": 1415717}}, {"model": "metainfo.source", "pk": 12029, "fields": {"orig_filename": "Korac_Vitomir_1877_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 120f.", "author": "", "orig_id": 1415718}}, {"model": "metainfo.source", "pk": 12030, "fields": {"orig_filename": "Korajac_Vilim_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415719}}, {"model": "metainfo.source", "pk": 12031, "fields": {"orig_filename": "Koralt_Franz_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415788}}, {"model": "metainfo.source", "pk": 12032, "fields": {"orig_filename": "Koranyi_Frigyes_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415790}}, {"model": "metainfo.source", "pk": 12033, "fields": {"orig_filename": "Koranyi_Sandor_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415791}}, {"model": "metainfo.source", "pk": 12034, "fields": {"orig_filename": "Koran_Josef-Jan_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 121", "author": "", "orig_id": 1415789}}, {"model": "metainfo.source", "pk": 12035, "fields": {"orig_filename": "Korb-Weidenheim_Karl_1836_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122f.", "author": "", "orig_id": 1415793}}, {"model": "metainfo.source", "pk": 12036, "fields": {"orig_filename": "Korber-Korborn_Gregor-Norbert_1749_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123", "author": "", "orig_id": 1415794}}, {"model": "metainfo.source", "pk": 12037, "fields": {"orig_filename": "Korbuly_Johann_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123", "author": "", "orig_id": 1415795}}, {"model": "metainfo.source", "pk": 12038, "fields": {"orig_filename": "Korb_Floris-Nandor_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 122", "author": "", "orig_id": 1415792}}, {"model": "metainfo.source", "pk": 12039, "fields": {"orig_filename": "Korcian_Benedikt_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 123f.", "author": "", "orig_id": 1415796}}, {"model": "metainfo.source", "pk": 12040, "fields": {"orig_filename": "Korczynski_Anton_1879_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124", "author": "", "orig_id": 1415798}}, {"model": "metainfo.source", "pk": 12041, "fields": {"orig_filename": "Korczynski_Edward_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124", "author": "", "orig_id": 1415799}}, {"model": "metainfo.source", "pk": 12042, "fields": {"orig_filename": "Kordac_Franz_1852_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 124f.", "author": "", "orig_id": 1415800}}, {"model": "metainfo.source", "pk": 12043, "fields": {"orig_filename": "Kordelic_Karel_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415801}}, {"model": "metainfo.source", "pk": 12044, "fields": {"orig_filename": "Kordes_Leopold_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415802}}, {"model": "metainfo.source", "pk": 12045, "fields": {"orig_filename": "Kordon_Fridolin_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125", "author": "", "orig_id": 1415803}}, {"model": "metainfo.source", "pk": 12046, "fields": {"orig_filename": "Korecki_Leon_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 125f.", "author": "", "orig_id": 1415804}}, {"model": "metainfo.source", "pk": 12047, "fields": {"orig_filename": "Korenic_Stjepan_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415805}}, {"model": "metainfo.source", "pk": 12048, "fields": {"orig_filename": "Korensky_Franz_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415806}}, {"model": "metainfo.source", "pk": 12049, "fields": {"orig_filename": "Korensky_Josef_1847_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126", "author": "", "orig_id": 1415807}}, {"model": "metainfo.source", "pk": 12050, "fields": {"orig_filename": "Korinek_Frantisek-Branislav_1831_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 126f.", "author": "", "orig_id": 1415878}}, {"model": "metainfo.source", "pk": 12051, "fields": {"orig_filename": "Korinek_Josef-Miloslav_1899_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 127", "author": "", "orig_id": 1415879}}, {"model": "metainfo.source", "pk": 12052, "fields": {"orig_filename": "Koristka_Karel-Frantisek-Edvard_1825_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 127f.", "author": "", "orig_id": 1415880}}, {"model": "metainfo.source", "pk": 12053, "fields": {"orig_filename": "Koritschoner_Franz_1892_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128", "author": "", "orig_id": 1415881}}, {"model": "metainfo.source", "pk": 12054, "fields": {"orig_filename": "Korizmics_Laszlo_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128", "author": "", "orig_id": 1415882}}, {"model": "metainfo.source", "pk": 12055, "fields": {"orig_filename": "Korlevic_Antun_1851_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 128f.", "author": "", "orig_id": 1415883}}, {"model": "metainfo.source", "pk": 12056, "fields": {"orig_filename": "Korn-Korningen_Victor_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130", "author": "", "orig_id": 1415889}}, {"model": "metainfo.source", "pk": 12057, "fields": {"orig_filename": "Kornauth_Hans_1851_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 130f.", "author": "", "orig_id": 1415890}}, {"model": "metainfo.source", "pk": 12058, "fields": {"orig_filename": "Kornberger_Richard_1909_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415891}}, {"model": "metainfo.source", "pk": 12059, "fields": {"orig_filename": "Korner_Philipp-Thaddaeus_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415892}}, {"model": "metainfo.source", "pk": 12060, "fields": {"orig_filename": "Kornfeld_Aron_1795_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131", "author": "", "orig_id": 1415893}}, {"model": "metainfo.source", "pk": 12061, "fields": {"orig_filename": "Kornfeld_Paul_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 131f.", "author": "", "orig_id": 1415894}}, {"model": "metainfo.source", "pk": 12062, "fields": {"orig_filename": "Kornfeld_Siegmund_1852_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415895}}, {"model": "metainfo.source", "pk": 12063, "fields": {"orig_filename": "Kornfeld_Siegmund_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415896}}, {"model": "metainfo.source", "pk": 12064, "fields": {"orig_filename": "Korngold_Julius-Leopold_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132", "author": "", "orig_id": 1415897}}, {"model": "metainfo.source", "pk": 12065, "fields": {"orig_filename": "Kornhaeusel_Josef-Georg_1782_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 132f.", "author": "", "orig_id": 1415898}}, {"model": "metainfo.source", "pk": 12066, "fields": {"orig_filename": "Kornheisl_Franz_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 133", "author": "", "orig_id": 1415966}}, {"model": "metainfo.source", "pk": 12067, "fields": {"orig_filename": "Kornhuber_Andreas_1824_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 133f.", "author": "", "orig_id": 1415967}}, {"model": "metainfo.source", "pk": 12068, "fields": {"orig_filename": "Kornitzer_Alois_1857_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 134", "author": "", "orig_id": 1415969}}, {"model": "metainfo.source", "pk": 12069, "fields": {"orig_filename": "Korntheuer_Friedrich-Josef_1779_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 134f.", "author": "", "orig_id": 1415970}}, {"model": "metainfo.source", "pk": 12070, "fields": {"orig_filename": "Korn_Alfred_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 129", "author": "", "orig_id": 1415884}}, {"model": "metainfo.source", "pk": 12071, "fields": {"orig_filename": "Kolar_Heinrich_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71f.", "author": "", "orig_id": 1416512}}, {"model": "metainfo.source", "pk": 12072, "fields": {"orig_filename": "Kolar_Josef-Jiri_1812_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72", "author": "", "orig_id": 1416514}}, {"model": "metainfo.source", "pk": 12073, "fields": {"orig_filename": "Kolar_Josef_1830_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72", "author": "", "orig_id": 1416513}}, {"model": "metainfo.source", "pk": 12074, "fields": {"orig_filename": "Kolatschek_Julius_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416519}}, {"model": "metainfo.source", "pk": 12075, "fields": {"orig_filename": "Kola_Richard_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70f.", "author": "", "orig_id": 1416507}}, {"model": "metainfo.source", "pk": 12076, "fields": {"orig_filename": "Kolbany_Paul_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416589}}, {"model": "metainfo.source", "pk": 12077, "fields": {"orig_filename": "Kolbenhayer_Ferenc_1840_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416593}}, {"model": "metainfo.source", "pk": 12078, "fields": {"orig_filename": "Kolbenheyer_Gyula_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416594}}, {"model": "metainfo.source", "pk": 12079, "fields": {"orig_filename": "Kolbenheyer_Karl_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77", "author": "", "orig_id": 1416595}}, {"model": "metainfo.source", "pk": 12080, "fields": {"orig_filename": "Kolbenheyer_Moric_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77", "author": "", "orig_id": 1416596}}, {"model": "metainfo.source", "pk": 12081, "fields": {"orig_filename": "Kolbenschlag_Friedrich_1869_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 77f.", "author": "", "orig_id": 1416597}}, {"model": "metainfo.source", "pk": 12082, "fields": {"orig_filename": "Kolbensteiner_Wilhelm_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78", "author": "", "orig_id": 1416598}}, {"model": "metainfo.source", "pk": 12083, "fields": {"orig_filename": "Kolben_Emil_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 76", "author": "", "orig_id": 1416592}}, {"model": "metainfo.source", "pk": 12084, "fields": {"orig_filename": "Kolberg_Joseph_1832_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78", "author": "", "orig_id": 1416599}}, {"model": "metainfo.source", "pk": 12085, "fields": {"orig_filename": "Kolberg_Oskar-Henryk_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 78f.", "author": "", "orig_id": 1416600}}, {"model": "metainfo.source", "pk": 12086, "fields": {"orig_filename": "Kolbe_Friedrich_1828_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416590}}, {"model": "metainfo.source", "pk": 12087, "fields": {"orig_filename": "Kolbe_Josef_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75f.", "author": "", "orig_id": 1416591}}, {"model": "metainfo.source", "pk": 12088, "fields": {"orig_filename": "Kolb_Alexis_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73f.", "author": "", "orig_id": 1416520}}, {"model": "metainfo.source", "pk": 12089, "fields": {"orig_filename": "Kolb_Alois_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74", "author": "", "orig_id": 1416521}}, {"model": "metainfo.source", "pk": 12090, "fields": {"orig_filename": "Kolb_Johann-Georg_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74", "author": "", "orig_id": 1416522}}, {"model": "metainfo.source", "pk": 12091, "fields": {"orig_filename": "Kolb_Josef_1843_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 74f.", "author": "", "orig_id": 1416523}}, {"model": "metainfo.source", "pk": 12092, "fields": {"orig_filename": "Kolb_Viktor_1856_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 75", "author": "", "orig_id": 1416588}}, {"model": "metainfo.source", "pk": 12093, "fields": {"orig_filename": "Kolder_Josef_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416601}}, {"model": "metainfo.source", "pk": 12094, "fields": {"orig_filename": "Kolenc_Anton_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416602}}, {"model": "metainfo.source", "pk": 12095, "fields": {"orig_filename": "Kolesovsky_Zikmund-Michael_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79", "author": "", "orig_id": 1416603}}, {"model": "metainfo.source", "pk": 12096, "fields": {"orig_filename": "Kolessa_Filaret-Mychajlovyc_1871_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 79f.", "author": "", "orig_id": 1416604}}, {"model": "metainfo.source", "pk": 12097, "fields": {"orig_filename": "Kolessa_Oleksandr-Mychajlovyc_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 80", "author": "", "orig_id": 1416605}}, {"model": "metainfo.source", "pk": 12098, "fields": {"orig_filename": "Kolig_Anton_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 80f.", "author": "", "orig_id": 1416606}}, {"model": "metainfo.source", "pk": 12099, "fields": {"orig_filename": "Koliha_Jan_1890_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 81f.", "author": "", "orig_id": 1416607}}, {"model": "metainfo.source", "pk": 12100, "fields": {"orig_filename": "Kolischer_Emil_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82f.", "author": "", "orig_id": 1416677}}, {"model": "metainfo.source", "pk": 12101, "fields": {"orig_filename": "Kolisch_Ignaz_1837_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416608}}, {"model": "metainfo.source", "pk": 12102, "fields": {"orig_filename": "Kolisch_Rudolf_1867_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416609}}, {"model": "metainfo.source", "pk": 12103, "fields": {"orig_filename": "Kolisch_Sigmund_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 82", "author": "", "orig_id": 1416676}}, {"model": "metainfo.source", "pk": 12104, "fields": {"orig_filename": "Kolisko_Alexander_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 83", "author": "", "orig_id": 1416678}}, {"model": "metainfo.source", "pk": 12105, "fields": {"orig_filename": "Kolisko_Eugen_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 2 (15.03.2013)", "author": "", "orig_id": 1441213}}, {"model": "metainfo.source", "pk": 12106, "fields": {"orig_filename": "Kolisko_Hans_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416680}}, {"model": "metainfo.source", "pk": 12107, "fields": {"orig_filename": "Kolisko_Rudolf_1859_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416679}}, {"model": "metainfo.source", "pk": 12108, "fields": {"orig_filename": "Kolland_Engelbert_1827_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416682}}, {"model": "metainfo.source", "pk": 12109, "fields": {"orig_filename": "Kollanyi_Ferenc_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84f.", "author": "", "orig_id": 1416683}}, {"model": "metainfo.source", "pk": 12110, "fields": {"orig_filename": "Kollarz_Adolf_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86", "author": "", "orig_id": 1416686}}, {"model": "metainfo.source", "pk": 12111, "fields": {"orig_filename": "Kollarz_Franz_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86", "author": "", "orig_id": 1416687}}, {"model": "metainfo.source", "pk": 12112, "fields": {"orig_filename": "Kollarz_Friedrich_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 86f.", "author": "", "orig_id": 1416688}}, {"model": "metainfo.source", "pk": 12113, "fields": {"orig_filename": "Kollar_Jan_1793_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 85", "author": "", "orig_id": 1416684}}, {"model": "metainfo.source", "pk": 12114, "fields": {"orig_filename": "Kollar_Vincenz_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 85f.", "author": "", "orig_id": 1416685}}, {"model": "metainfo.source", "pk": 12115, "fields": {"orig_filename": "Kollert_Viktor_1887_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1416699}}, {"model": "metainfo.source", "pk": 12116, "fields": {"orig_filename": "Koller_Alexander_1813_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87", "author": "", "orig_id": 1416689}}, {"model": "metainfo.source", "pk": 12117, "fields": {"orig_filename": "Koller_Benedikt-Joseph-Maria_1767_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87", "author": "", "orig_id": 1416690}}, {"model": "metainfo.source", "pk": 12118, "fields": {"orig_filename": "Koller_Bronislawa_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 87f.", "author": "", "orig_id": 1416691}}, {"model": "metainfo.source", "pk": 12119, "fields": {"orig_filename": "Koller_Franz_1767_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416692}}, {"model": "metainfo.source", "pk": 12120, "fields": {"orig_filename": "Koller_Josef_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416693}}, {"model": "metainfo.source", "pk": 12121, "fields": {"orig_filename": "Koller_Karl_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88", "author": "", "orig_id": 1416694}}, {"model": "metainfo.source", "pk": 12122, "fields": {"orig_filename": "Koller_Marian_1792_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 88f.", "author": "", "orig_id": 1416695}}, {"model": "metainfo.source", "pk": 12123, "fields": {"orig_filename": "Koller_Oswald_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 89", "author": "", "orig_id": 1416696}}, {"model": "metainfo.source", "pk": 12124, "fields": {"orig_filename": "Koller_Rudolf_1825_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 89f.", "author": "", "orig_id": 1416697}}, {"model": "metainfo.source", "pk": 12125, "fields": {"orig_filename": "Koller_Wilhelm_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1416698}}, {"model": "metainfo.source", "pk": 12126, "fields": {"orig_filename": "Kolletschka_Jakob_1803_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90", "author": "", "orig_id": 1415320}}, {"model": "metainfo.source", "pk": 12127, "fields": {"orig_filename": "Kollmaneck_Ferdinand_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 90f.", "author": "", "orig_id": 1415321}}, {"model": "metainfo.source", "pk": 12128, "fields": {"orig_filename": "Kollmann_Hynek_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91", "author": "", "orig_id": 1415322}}, {"model": "metainfo.source", "pk": 12129, "fields": {"orig_filename": "Kollmann_Ignaz_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91", "author": "", "orig_id": 1415323}}, {"model": "metainfo.source", "pk": 12130, "fields": {"orig_filename": "Kollmann_Robert_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 91f.", "author": "", "orig_id": 1415324}}, {"model": "metainfo.source", "pk": 12131, "fields": {"orig_filename": "Kollonits-Kollegrad_Maximilian_1761_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92", "author": "", "orig_id": 1415325}}, {"model": "metainfo.source", "pk": 12132, "fields": {"orig_filename": "Koll_Franz_1894_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 84", "author": "", "orig_id": 1416681}}, {"model": "metainfo.source", "pk": 12133, "fields": {"orig_filename": "Kolman_Karel_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415328}}, {"model": "metainfo.source", "pk": 12134, "fields": {"orig_filename": "Kolmar_Edmund_1841_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415329}}, {"model": "metainfo.source", "pk": 12135, "fields": {"orig_filename": "Kolmar_Jozsef_1769_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415330}}, {"model": "metainfo.source", "pk": 12136, "fields": {"orig_filename": "Kolmer_Gustav_1846_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93", "author": "", "orig_id": 1415331}}, {"model": "metainfo.source", "pk": 12137, "fields": {"orig_filename": "Kolmer_Walter_1879_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 93f.", "author": "", "orig_id": 1415332}}, {"model": "metainfo.source", "pk": 12138, "fields": {"orig_filename": "Kolm_Berta_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92", "author": "", "orig_id": 1415326}}, {"model": "metainfo.source", "pk": 12139, "fields": {"orig_filename": "Kolm_Gustav-Anton_1865_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 92f.", "author": "", "orig_id": 1415327}}, {"model": "metainfo.source", "pk": 12140, "fields": {"orig_filename": "Kolodziejczyk_Edmund_1888_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 94", "author": "", "orig_id": 1415333}}, {"model": "metainfo.source", "pk": 12141, "fields": {"orig_filename": "Kolodziejski_Walery_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 94f.", "author": "", "orig_id": 1415334}}, {"model": "metainfo.source", "pk": 12142, "fields": {"orig_filename": "Kolombatovic_Juraj_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415335}}, {"model": "metainfo.source", "pk": 12143, "fields": {"orig_filename": "Kolossvary_Sandor_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415336}}, {"model": "metainfo.source", "pk": 12144, "fields": {"orig_filename": "Kolosvary_Sandor_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95", "author": "", "orig_id": 1415337}}, {"model": "metainfo.source", "pk": 12145, "fields": {"orig_filename": "Kolowrat-Krakowsky_Alexander-Josef_1886_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 95f.", "author": "", "orig_id": 1415338}}, {"model": "metainfo.source", "pk": 12146, "fields": {"orig_filename": "Kolowrat-Krakowsky_Alois-Joseph_1759_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 96", "author": "", "orig_id": 1415339}}, {"model": "metainfo.source", "pk": 12147, "fields": {"orig_filename": "Kolowrat-Krakowsky_Johann-Nep-Karl_1748_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 96", "author": "", "orig_id": 1415340}}, {"model": "metainfo.source", "pk": 12148, "fields": {"orig_filename": "Kolowrat-Krakowsky_Leopold_1804_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97", "author": "", "orig_id": 1415341}}, {"model": "metainfo.source", "pk": 12149, "fields": {"orig_filename": "Kolowrat-Liebsteinsky_Franz-Anton_1778_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97", "author": "", "orig_id": 1415342}}, {"model": "metainfo.source", "pk": 12150, "fields": {"orig_filename": "Kolowrat-Liebsteinsky_Vinzenz-Maria_1750_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 97f.", "author": "", "orig_id": 1415415}}, {"model": "metainfo.source", "pk": 12151, "fields": {"orig_filename": "Kolp_Engelbert_1840_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415416}}, {"model": "metainfo.source", "pk": 12152, "fields": {"orig_filename": "Komarek_Franz-Xaver_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415417}}, {"model": "metainfo.source", "pk": 12153, "fields": {"orig_filename": "Komaromy_Andras_1861_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98", "author": "", "orig_id": 1415418}}, {"model": "metainfo.source", "pk": 12154, "fields": {"orig_filename": "Komatar_Franc_1875_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 98f.", "author": "", "orig_id": 1415420}}, {"model": "metainfo.source", "pk": 12155, "fields": {"orig_filename": "Komauer_Edwin_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99", "author": "", "orig_id": 1415421}}, {"model": "metainfo.source", "pk": 12156, "fields": {"orig_filename": "Komenda_Anton_1795_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99", "author": "", "orig_id": 1415422}}, {"model": "metainfo.source", "pk": 12157, "fields": {"orig_filename": "Komers-Lindenbach_Camillo_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100", "author": "", "orig_id": 1415424}}, {"model": "metainfo.source", "pk": 12158, "fields": {"orig_filename": "Komers-Lindenbach_Emanuel-Heinrich_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100", "author": "", "orig_id": 1415425}}, {"model": "metainfo.source", "pk": 12159, "fields": {"orig_filename": "Komers-Lindenbach_Karl-Eduard_1797_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 100f.", "author": "", "orig_id": 1415426}}, {"model": "metainfo.source", "pk": 12160, "fields": {"orig_filename": "Komers_Anton-Emanuel_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 99f.", "author": "", "orig_id": 1415423}}, {"model": "metainfo.source", "pk": 12161, "fields": {"orig_filename": "Kometer_Bartholomaeus_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415427}}, {"model": "metainfo.source", "pk": 12162, "fields": {"orig_filename": "Kometer_Franz-Michael_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415428}}, {"model": "metainfo.source", "pk": 12163, "fields": {"orig_filename": "Kometer_Johann-Ev_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101", "author": "", "orig_id": 1415429}}, {"model": "metainfo.source", "pk": 12164, "fields": {"orig_filename": "Komjathy_Jenoe_1858_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 101f.", "author": "", "orig_id": 1415430}}, {"model": "metainfo.source", "pk": 12165, "fields": {"orig_filename": "Komlossy_Ferenc_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415431}}, {"model": "metainfo.source", "pk": 12166, "fields": {"orig_filename": "Komlossy_Ida_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415432}}, {"model": "metainfo.source", "pk": 12167, "fields": {"orig_filename": "Komlosy_Franz_1817_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102", "author": "", "orig_id": 1415433}}, {"model": "metainfo.source", "pk": 12168, "fields": {"orig_filename": "Komm_Ferdinand_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 102f.", "author": "", "orig_id": 1415434}}, {"model": "metainfo.source", "pk": 12169, "fields": {"orig_filename": "Komorowski_Stephan-Julius-Maria_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415435}}, {"model": "metainfo.source", "pk": 12170, "fields": {"orig_filename": "Komorzynski_Johann_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415436}}, {"model": "metainfo.source", "pk": 12171, "fields": {"orig_filename": "Komorzynski_Ludwig_1844_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103", "author": "", "orig_id": 1415437}}, {"model": "metainfo.source", "pk": 12172, "fields": {"orig_filename": "Kompatscher_Andreas_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 17, 1967), S. 103f.", "author": "", "orig_id": 1415438}}, {"model": "metainfo.source", "pk": 12173, "fields": {"orig_filename": "Koennen-Horak-Hoehenkampf_Ludwig_1861_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41f.", "author": "", "orig_id": 1416135}}, {"model": "metainfo.source", "pk": 12174, "fields": {"orig_filename": "Koenyoeki_Jozsef_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416136}}, {"model": "metainfo.source", "pk": 12175, "fields": {"orig_filename": "Koenyves-Toth_Mihaly_1809_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416137}}, {"model": "metainfo.source", "pk": 12176, "fields": {"orig_filename": "Koepfle_Josef-Anton_1757_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42", "author": "", "orig_id": 1416138}}, {"model": "metainfo.source", "pk": 12177, "fields": {"orig_filename": "Koepl_Robert_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 42f.", "author": "", "orig_id": 1416139}}, {"model": "metainfo.source", "pk": 12178, "fields": {"orig_filename": "Koepp-Felsenthal_Anton_1766_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416140}}, {"model": "metainfo.source", "pk": 12179, "fields": {"orig_filename": "Koepp-Felsenthal_Rudolf_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416141}}, {"model": "metainfo.source", "pk": 12180, "fields": {"orig_filename": "Koeppel_Karl_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416142}}, {"model": "metainfo.source", "pk": 12181, "fields": {"orig_filename": "Koeppner_Karl_1871_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 43", "author": "", "orig_id": 1416143}}, {"model": "metainfo.source", "pk": 12182, "fields": {"orig_filename": "Koerber-Horwitz_Grete_1895_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46", "author": "", "orig_id": 1416149}}, {"model": "metainfo.source", "pk": 12183, "fields": {"orig_filename": "Koerber_Ernest_1850_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 44f.", "author": "", "orig_id": 1416144}}, {"model": "metainfo.source", "pk": 12184, "fields": {"orig_filename": "Koerber_Karl_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416145}}, {"model": "metainfo.source", "pk": 12185, "fields": {"orig_filename": "Koerber_Marie_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416146}}, {"model": "metainfo.source", "pk": 12186, "fields": {"orig_filename": "Koerber_Otto_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45", "author": "", "orig_id": 1416147}}, {"model": "metainfo.source", "pk": 12187, "fields": {"orig_filename": "Koerber_Philipp_1812_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 45f.", "author": "", "orig_id": 1416148}}, {"model": "metainfo.source", "pk": 12188, "fields": {"orig_filename": "Koerbler_Djuro_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46", "author": "", "orig_id": 1416150}}, {"model": "metainfo.source", "pk": 12189, "fields": {"orig_filename": "Koerner_Eduard_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 46f.", "author": "", "orig_id": 1416151}}, {"model": "metainfo.source", "pk": 12190, "fields": {"orig_filename": "Koerner_Josef_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47", "author": "", "orig_id": 1416152}}, {"model": "metainfo.source", "pk": 12191, "fields": {"orig_filename": "Koerner_Moritz_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47", "author": "", "orig_id": 1416220}}, {"model": "metainfo.source", "pk": 12192, "fields": {"orig_filename": "Koernyei_Janos_1831_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 47f.", "author": "", "orig_id": 1416221}}, {"model": "metainfo.source", "pk": 12193, "fields": {"orig_filename": "Koeroesfoei-Kriesch_Aladar_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 48", "author": "", "orig_id": 1416222}}, {"model": "metainfo.source", "pk": 12194, "fields": {"orig_filename": "Koeroesi-Csoma_Sandor_1784_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49", "author": "", "orig_id": 1416224}}, {"model": "metainfo.source", "pk": 12195, "fields": {"orig_filename": "Koeroesi_Josef_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 48", "author": "", "orig_id": 1416223}}, {"model": "metainfo.source", "pk": 12196, "fields": {"orig_filename": "Koeroesy-Szanto_Josef_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49", "author": "", "orig_id": 1416225}}, {"model": "metainfo.source", "pk": 12197, "fields": {"orig_filename": "Koerschner_Leander_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 49f.", "author": "", "orig_id": 1416226}}, {"model": "metainfo.source", "pk": 12198, "fields": {"orig_filename": "Koessler_Hans_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50", "author": "", "orig_id": 1416227}}, {"model": "metainfo.source", "pk": 12199, "fields": {"orig_filename": "Koessler_Kornelius_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50", "author": "", "orig_id": 1416228}}, {"model": "metainfo.source", "pk": 12200, "fields": {"orig_filename": "Koessler_Ludwig_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 50f.", "author": "", "orig_id": 1416229}}, {"model": "metainfo.source", "pk": 12201, "fields": {"orig_filename": "Koester_Alexander_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416230}}, {"model": "metainfo.source", "pk": 12202, "fields": {"orig_filename": "Koestinger_Franz_1844_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416231}}, {"model": "metainfo.source", "pk": 12203, "fields": {"orig_filename": "Koestler_Hugo_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51", "author": "", "orig_id": 1416232}}, {"model": "metainfo.source", "pk": 12204, "fields": {"orig_filename": "Koestlin_August_1825_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 51f.", "author": "", "orig_id": 1416233}}, {"model": "metainfo.source", "pk": 12205, "fields": {"orig_filename": "Koeszegi-Brandl_Gusztav_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416234}}, {"model": "metainfo.source", "pk": 12206, "fields": {"orig_filename": "Koeteles_Samuel_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416235}}, {"model": "metainfo.source", "pk": 12207, "fields": {"orig_filename": "Koettstorfer_Josef_1835_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52", "author": "", "orig_id": 1416236}}, {"model": "metainfo.source", "pk": 12208, "fields": {"orig_filename": "Koevary_Laszlo_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 52f.", "author": "", "orig_id": 1416237}}, {"model": "metainfo.source", "pk": 12209, "fields": {"orig_filename": "Koever_Lajos_1825_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53", "author": "", "orig_id": 1416238}}, {"model": "metainfo.source", "pk": 12210, "fields": {"orig_filename": "Koevesligethy_Rado_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53", "author": "", "orig_id": 1416240}}, {"model": "metainfo.source", "pk": 12211, "fields": {"orig_filename": "Koevess-Koevesshaza_Hermann_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 53f.", "author": "", "orig_id": 1416241}}, {"model": "metainfo.source", "pk": 12212, "fields": {"orig_filename": "Koevy_Sandor_1763_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 54", "author": "", "orig_id": 1416242}}, {"model": "metainfo.source", "pk": 12213, "fields": {"orig_filename": "Koffler_Jozef_1896_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 54", "author": "", "orig_id": 1416311}}, {"model": "metainfo.source", "pk": 12214, "fields": {"orig_filename": "Kofler_Adelheid_1889_1985.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2080799}}, {"model": "metainfo.source", "pk": 12215, "fields": {"orig_filename": "Kofler_Albertine_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416312}}, {"model": "metainfo.source", "pk": 12216, "fields": {"orig_filename": "Kofler_Anton_1855_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416313}}, {"model": "metainfo.source", "pk": 12217, "fields": {"orig_filename": "Kofler_Irenaeus_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 55", "author": "", "orig_id": 1416315}}, {"model": "metainfo.source", "pk": 12218, "fields": {"orig_filename": "Kofler_Johann-Ev_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416316}}, {"model": "metainfo.source", "pk": 12219, "fields": {"orig_filename": "Kofler_Johann-Nep_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416317}}, {"model": "metainfo.source", "pk": 12220, "fields": {"orig_filename": "Kofler_Leo_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416318}}, {"model": "metainfo.source", "pk": 12221, "fields": {"orig_filename": "Kofler_Nikolaus_1776_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 56", "author": "", "orig_id": 1416319}}, {"model": "metainfo.source", "pk": 12222, "fields": {"orig_filename": "Kofler_Oswald_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57f.", "author": "", "orig_id": 1416320}}, {"model": "metainfo.source", "pk": 12223, "fields": {"orig_filename": "Kofler_Wilhelmine_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416321}}, {"model": "metainfo.source", "pk": 12224, "fields": {"orig_filename": "Kogerer_Heinrich_1819_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416322}}, {"model": "metainfo.source", "pk": 12225, "fields": {"orig_filename": "Koglbauer_Br-Benno_1862_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416324}}, {"model": "metainfo.source", "pk": 12226, "fields": {"orig_filename": "Kogler_Ferdinand_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57f.", "author": "", "orig_id": 1416326}}, {"model": "metainfo.source", "pk": 12227, "fields": {"orig_filename": "Kogler_Michael_1763_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58", "author": "", "orig_id": 1416327}}, {"model": "metainfo.source", "pk": 12228, "fields": {"orig_filename": "Koglgruber_Cajetan_1817_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58", "author": "", "orig_id": 1416328}}, {"model": "metainfo.source", "pk": 12229, "fields": {"orig_filename": "Kogl_Karol-Bernard_1763_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 57", "author": "", "orig_id": 1416323}}, {"model": "metainfo.source", "pk": 12230, "fields": {"orig_filename": "Koharic_Janko_1877_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 58f.", "author": "", "orig_id": 1416329}}, {"model": "metainfo.source", "pk": 12231, "fields": {"orig_filename": "Kohen_Giambattista_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416330}}, {"model": "metainfo.source", "pk": 12232, "fields": {"orig_filename": "Kohen_Sidonie_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416331}}, {"model": "metainfo.source", "pk": 12233, "fields": {"orig_filename": "Kohl-Kohlenegg_Leonhard_1834_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60f.", "author": "", "orig_id": 1416336}}, {"model": "metainfo.source", "pk": 12234, "fields": {"orig_filename": "Kohl-Kohlenegg_Lorenz_1783_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61", "author": "", "orig_id": 1416405}}, {"model": "metainfo.source", "pk": 12235, "fields": {"orig_filename": "Kohlenberg_Josef_1796_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61", "author": "", "orig_id": 1416406}}, {"model": "metainfo.source", "pk": 12236, "fields": {"orig_filename": "Kohler_Johann-Michael_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62", "author": "", "orig_id": 1416408}}, {"model": "metainfo.source", "pk": 12237, "fields": {"orig_filename": "Kohler_Johann_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 61f.", "author": "", "orig_id": 1416407}}, {"model": "metainfo.source", "pk": 12238, "fields": {"orig_filename": "Kohler_Karl-Felix_1838_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62", "author": "", "orig_id": 1416409}}, {"model": "metainfo.source", "pk": 12239, "fields": {"orig_filename": "Kohlfuerst_Ludwig_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 62f.", "author": "", "orig_id": 1416410}}, {"model": "metainfo.source", "pk": 12240, "fields": {"orig_filename": "Kohlgruber_Josef_1783_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63", "author": "", "orig_id": 1416411}}, {"model": "metainfo.source", "pk": 12241, "fields": {"orig_filename": "Kohlmayer_Paul_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63", "author": "", "orig_id": 1416412}}, {"model": "metainfo.source", "pk": 12242, "fields": {"orig_filename": "Kohlmuenzer_Ernst_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 63f.", "author": "", "orig_id": 1416413}}, {"model": "metainfo.source", "pk": 12243, "fields": {"orig_filename": "Kohlrausch_Otto_1842_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64", "author": "", "orig_id": 1416414}}, {"model": "metainfo.source", "pk": 12244, "fields": {"orig_filename": "Kohlruss_Alfred_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64", "author": "", "orig_id": 1416415}}, {"model": "metainfo.source", "pk": 12245, "fields": {"orig_filename": "Kohl_Emil_1862_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59", "author": "", "orig_id": 1416332}}, {"model": "metainfo.source", "pk": 12246, "fields": {"orig_filename": "Kohl_Franz-Friedrich_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 59f.", "author": "", "orig_id": 1416333}}, {"model": "metainfo.source", "pk": 12247, "fields": {"orig_filename": "Kohl_Josef_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60", "author": "", "orig_id": 1416334}}, {"model": "metainfo.source", "pk": 12248, "fields": {"orig_filename": "Kohl_Ludwig_1746_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 60", "author": "", "orig_id": 1416335}}, {"model": "metainfo.source", "pk": 12249, "fields": {"orig_filename": "Kohn_Abraham_1807_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 64f.", "author": "", "orig_id": 1416416}}, {"model": "metainfo.source", "pk": 12250, "fields": {"orig_filename": "Kohn_Edmund_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416417}}, {"model": "metainfo.source", "pk": 12251, "fields": {"orig_filename": "Kohn_Gustav_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416419}}, {"model": "metainfo.source", "pk": 12252, "fields": {"orig_filename": "Kohn_Gustav_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65", "author": "", "orig_id": 1416420}}, {"model": "metainfo.source", "pk": 12253, "fields": {"orig_filename": "Kohn_Josef_1804_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 65f.", "author": "", "orig_id": 1416421}}, {"model": "metainfo.source", "pk": 12254, "fields": {"orig_filename": "Kohn_Josef_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66", "author": "", "orig_id": 1416422}}, {"model": "metainfo.source", "pk": 12255, "fields": {"orig_filename": "Kohn_Karl-Ferdinand_1833_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66", "author": "", "orig_id": 1416423}}, {"model": "metainfo.source", "pk": 12256, "fields": {"orig_filename": "Kohn_Salomon_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 66f.", "author": "", "orig_id": 1416424}}, {"model": "metainfo.source", "pk": 12257, "fields": {"orig_filename": "Kohn_Samuel_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416425}}, {"model": "metainfo.source", "pk": 12258, "fields": {"orig_filename": "Kohn_Theodor_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416426}}, {"model": "metainfo.source", "pk": 12259, "fields": {"orig_filename": "Kohrl_Ludwig_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67", "author": "", "orig_id": 1416427}}, {"model": "metainfo.source", "pk": 12260, "fields": {"orig_filename": "Kohut_Adolf_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 67f.", "author": "", "orig_id": 1416428}}, {"model": "metainfo.source", "pk": 12261, "fields": {"orig_filename": "Kohut_Alexander_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 68", "author": "", "orig_id": 1416500}}, {"model": "metainfo.source", "pk": 12262, "fields": {"orig_filename": "Koiner_Simon_1921_1994.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1427092}}, {"model": "metainfo.source", "pk": 12263, "fields": {"orig_filename": "Kojovic_Antun_1751_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416501}}, {"model": "metainfo.source", "pk": 12264, "fields": {"orig_filename": "Kokeil_Friedrich_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416502}}, {"model": "metainfo.source", "pk": 12265, "fields": {"orig_filename": "Kokesch_Oser_1859_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69", "author": "", "orig_id": 1416503}}, {"model": "metainfo.source", "pk": 12266, "fields": {"orig_filename": "Kokol_Karl_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70", "author": "", "orig_id": 1416505}}, {"model": "metainfo.source", "pk": 12267, "fields": {"orig_filename": "Kokotovic_Nikola_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 70", "author": "", "orig_id": 1416506}}, {"model": "metainfo.source", "pk": 12268, "fields": {"orig_filename": "Koko_Demeter_1891_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 69f.", "author": "", "orig_id": 1416504}}, {"model": "metainfo.source", "pk": 12269, "fields": {"orig_filename": "Kolacek_Frantisek_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416508}}, {"model": "metainfo.source", "pk": 12270, "fields": {"orig_filename": "Kolacek_Frantisek_1881_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416509}}, {"model": "metainfo.source", "pk": 12271, "fields": {"orig_filename": "Kolander_Vatroslav_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 71", "author": "", "orig_id": 1416510}}, {"model": "metainfo.source", "pk": 12272, "fields": {"orig_filename": "Kolaric-Kisur_Rudolf_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416516}}, {"model": "metainfo.source", "pk": 12273, "fields": {"orig_filename": "Kolaric_Mirko_1850_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 72f.", "author": "", "orig_id": 1416515}}, {"model": "metainfo.source", "pk": 12274, "fields": {"orig_filename": "Kolarovic_Dimitrije_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 73", "author": "", "orig_id": 1416517}}, {"model": "metainfo.source", "pk": 12275, "fields": {"orig_filename": "Kocevar_Stefan_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411438}}, {"model": "metainfo.source", "pk": 12276, "fields": {"orig_filename": "Koch-Langentreu_Adolf_1829_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411537}}, {"model": "metainfo.source", "pk": 12277, "fields": {"orig_filename": "Koch-Langentreu_Fr-Caecilia_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411538}}, {"model": "metainfo.source", "pk": 12278, "fields": {"orig_filename": "Koch-Langentreu_Josef_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411539}}, {"model": "metainfo.source", "pk": 12279, "fields": {"orig_filename": "Koch-Sternfeld_Josef-Judas-Thadd-Ernest_1778_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20f.", "author": "", "orig_id": 1411540}}, {"model": "metainfo.source", "pk": 12280, "fields": {"orig_filename": "Koch-Thanheimb_Josef_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21", "author": "", "orig_id": 1415856}}, {"model": "metainfo.source", "pk": 12281, "fields": {"orig_filename": "Kochanowski-Korwinau_Alfred_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415859}}, {"model": "metainfo.source", "pk": 12282, "fields": {"orig_filename": "Kochanowski-Stawczan_Anton_1817_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415860}}, {"model": "metainfo.source", "pk": 12283, "fields": {"orig_filename": "Kochanowski_Hieronim_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21", "author": "", "orig_id": 1415857}}, {"model": "metainfo.source", "pk": 12284, "fields": {"orig_filename": "Kochanowski_Roman_1856_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 21f.", "author": "", "orig_id": 1415858}}, {"model": "metainfo.source", "pk": 12285, "fields": {"orig_filename": "Kochmann_Leopold_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22", "author": "", "orig_id": 1415861}}, {"model": "metainfo.source", "pk": 12286, "fields": {"orig_filename": "Kochmeister_Friedrich_1816_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 22f.", "author": "", "orig_id": 1415862}}, {"model": "metainfo.source", "pk": 12287, "fields": {"orig_filename": "Koch_Alois_1846_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12f.", "author": "", "orig_id": 1411439}}, {"model": "metainfo.source", "pk": 12288, "fields": {"orig_filename": "Koch_Antal_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13", "author": "", "orig_id": 1411440}}, {"model": "metainfo.source", "pk": 12289, "fields": {"orig_filename": "Koch_Augustin_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13", "author": "", "orig_id": 1411441}}, {"model": "metainfo.source", "pk": 12290, "fields": {"orig_filename": "Koch_Carl-Matthias_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 13f.", "author": "", "orig_id": 1411442}}, {"model": "metainfo.source", "pk": 12291, "fields": {"orig_filename": "Koch_Ciril-Metod_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411443}}, {"model": "metainfo.source", "pk": 12292, "fields": {"orig_filename": "Koch_Ernest_1755_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411515}}, {"model": "metainfo.source", "pk": 12293, "fields": {"orig_filename": "Koch_Felix_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14", "author": "", "orig_id": 1411516}}, {"model": "metainfo.source", "pk": 12294, "fields": {"orig_filename": "Koch_Ferdo_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 14f.", "author": "", "orig_id": 1411517}}, {"model": "metainfo.source", "pk": 12295, "fields": {"orig_filename": "Koch_Franz_1832_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411518}}, {"model": "metainfo.source", "pk": 12296, "fields": {"orig_filename": "Koch_Franz_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411519}}, {"model": "metainfo.source", "pk": 12297, "fields": {"orig_filename": "Koch_Gaudentius_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15", "author": "", "orig_id": 1411520}}, {"model": "metainfo.source", "pk": 12298, "fields": {"orig_filename": "Koch_Gustav-Adolf_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 15f.", "author": "", "orig_id": 1411521}}, {"model": "metainfo.source", "pk": 12299, "fields": {"orig_filename": "Koch_Heinrich_1781_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16", "author": "", "orig_id": 1411522}}, {"model": "metainfo.source", "pk": 12300, "fields": {"orig_filename": "Koch_Jakob-Ernst-Iii_1865_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17", "author": "", "orig_id": 1411527}}, {"model": "metainfo.source", "pk": 12301, "fields": {"orig_filename": "Koch_Jakob-Ernst-Ii_1836_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17", "author": "", "orig_id": 1411526}}, {"model": "metainfo.source", "pk": 12302, "fields": {"orig_filename": "Koch_Jakob-Ernst-I_1797_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16f.", "author": "", "orig_id": 1411524}}, {"model": "metainfo.source", "pk": 12303, "fields": {"orig_filename": "Koch_Jakob_1744_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 16", "author": "", "orig_id": 1411523}}, {"model": "metainfo.source", "pk": 12304, "fields": {"orig_filename": "Koch_Josef-Anton_1768_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 17f.", "author": "", "orig_id": 1411528}}, {"model": "metainfo.source", "pk": 12305, "fields": {"orig_filename": "Koch_Josef-Friedrich_1838_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411529}}, {"model": "metainfo.source", "pk": 12306, "fields": {"orig_filename": "Koch_Karl-Wilhelm_1785_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411531}}, {"model": "metainfo.source", "pk": 12307, "fields": {"orig_filename": "Koch_Karl__.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18", "author": "", "orig_id": 1411530}}, {"model": "metainfo.source", "pk": 12308, "fields": {"orig_filename": "Koch_Leopold_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 18f.", "author": "", "orig_id": 1411532}}, {"model": "metainfo.source", "pk": 12309, "fields": {"orig_filename": "Koch_Ludwig_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 19", "author": "", "orig_id": 1411533}}, {"model": "metainfo.source", "pk": 12310, "fields": {"orig_filename": "Koch_Matthias_1798_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 19f.", "author": "", "orig_id": 1411534}}, {"model": "metainfo.source", "pk": 12311, "fields": {"orig_filename": "Koch_Stephan_1772_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 20", "author": "", "orig_id": 1411536}}, {"model": "metainfo.source", "pk": 12312, "fields": {"orig_filename": "Kociancic_Stefan_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23f.", "author": "", "orig_id": 1415866}}, {"model": "metainfo.source", "pk": 12313, "fields": {"orig_filename": "Kocian_Jaroslav_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415863}}, {"model": "metainfo.source", "pk": 12314, "fields": {"orig_filename": "Kocian_Quido_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415864}}, {"model": "metainfo.source", "pk": 12315, "fields": {"orig_filename": "Kocian_Samuel_1857_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 23", "author": "", "orig_id": 1415865}}, {"model": "metainfo.source", "pk": 12316, "fields": {"orig_filename": "Kocic_Petar_1877_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415867}}, {"model": "metainfo.source", "pk": 12317, "fields": {"orig_filename": "Kocijancic_Josip_1849_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415868}}, {"model": "metainfo.source", "pk": 12318, "fields": {"orig_filename": "Kock-Gothenfels_Josef_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415869}}, {"model": "metainfo.source", "pk": 12319, "fields": {"orig_filename": "Koczirz_Adolf_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 24", "author": "", "orig_id": 1415870}}, {"model": "metainfo.source", "pk": 12320, "fields": {"orig_filename": "Koczynski_Stefan_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415871}}, {"model": "metainfo.source", "pk": 12321, "fields": {"orig_filename": "Kodermann_Zoelestin_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415873}}, {"model": "metainfo.source", "pk": 12322, "fields": {"orig_filename": "Koder_Anton_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25", "author": "", "orig_id": 1415872}}, {"model": "metainfo.source", "pk": 12323, "fields": {"orig_filename": "Kodolitsch-Neuweinsberg-Khag_Oswald_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415876}}, {"model": "metainfo.source", "pk": 12324, "fields": {"orig_filename": "Kodolitsch_Alphons_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 25f.", "author": "", "orig_id": 1415874}}, {"model": "metainfo.source", "pk": 12325, "fields": {"orig_filename": "Kodolitsch_Theodor_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415875}}, {"model": "metainfo.source", "pk": 12326, "fields": {"orig_filename": "Kodweiss_Friedrich_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26", "author": "", "orig_id": 1415877}}, {"model": "metainfo.source", "pk": 12327, "fields": {"orig_filename": "Kodym_Filip-Stanislav_1811_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 26f.", "author": "", "orig_id": 1415945}}, {"model": "metainfo.source", "pk": 12328, "fields": {"orig_filename": "Kodym_Frantisek_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 27", "author": "", "orig_id": 1415946}}, {"model": "metainfo.source", "pk": 12329, "fields": {"orig_filename": "Koechel_Ludwig_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 27f.", "author": "", "orig_id": 1415947}}, {"model": "metainfo.source", "pk": 12330, "fields": {"orig_filename": "Koechert_Alexander-Emanuel_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415948}}, {"model": "metainfo.source", "pk": 12331, "fields": {"orig_filename": "Koechler_Johann_1869_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415949}}, {"model": "metainfo.source", "pk": 12332, "fields": {"orig_filename": "Koechlin_Heinrich_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28", "author": "", "orig_id": 1415950}}, {"model": "metainfo.source", "pk": 12333, "fields": {"orig_filename": "Koechlin_Karl_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 28f.", "author": "", "orig_id": 1415951}}, {"model": "metainfo.source", "pk": 12334, "fields": {"orig_filename": "Koechlin_Rudolf_1862_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29", "author": "", "orig_id": 1415952}}, {"model": "metainfo.source", "pk": 12335, "fields": {"orig_filename": "Koeck-Gmeiner_Maria_1878_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 30f.", "author": "", "orig_id": 1415956}}, {"model": "metainfo.source", "pk": 12336, "fields": {"orig_filename": "Koeck_Georg_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29", "author": "", "orig_id": 1415953}}, {"model": "metainfo.source", "pk": 12337, "fields": {"orig_filename": "Koeck_Gustav_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 29f.", "author": "", "orig_id": 1415954}}, {"model": "metainfo.source", "pk": 12338, "fields": {"orig_filename": "Koeck_Michael_1760_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 30", "author": "", "orig_id": 1415955}}, {"model": "metainfo.source", "pk": 12339, "fields": {"orig_filename": "Koeferl_Josef_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415957}}, {"model": "metainfo.source", "pk": 12340, "fields": {"orig_filename": "Koeffinger_Johann-Paul_1786_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415958}}, {"model": "metainfo.source", "pk": 12341, "fields": {"orig_filename": "Koegl_Josef-Sebastian_1803_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415959}}, {"model": "metainfo.source", "pk": 12342, "fields": {"orig_filename": "Koehler-Damwehr_Else_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31f.", "author": "", "orig_id": 1415961}}, {"model": "metainfo.source", "pk": 12343, "fields": {"orig_filename": "Koehler_Josef_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 31", "author": "", "orig_id": 1415960}}, {"model": "metainfo.source", "pk": 12344, "fields": {"orig_filename": "Koelbel_Karl_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415962}}, {"model": "metainfo.source", "pk": 12345, "fields": {"orig_filename": "Koelbl_Anton_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415963}}, {"model": "metainfo.source", "pk": 12346, "fields": {"orig_filename": "Koelbl_Walter_1891_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32", "author": "", "orig_id": 1415964}}, {"model": "metainfo.source", "pk": 12347, "fields": {"orig_filename": "Koelcsey_Ferenc_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 32f.", "author": "", "orig_id": 1415965}}, {"model": "metainfo.source", "pk": 12348, "fields": {"orig_filename": "Koelgen_Ferdinand_1824_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416038}}, {"model": "metainfo.source", "pk": 12349, "fields": {"orig_filename": "Koelloe_Miklos_1861_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416040}}, {"model": "metainfo.source", "pk": 12350, "fields": {"orig_filename": "Koell_Karl_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33", "author": "", "orig_id": 1416039}}, {"model": "metainfo.source", "pk": 12351, "fields": {"orig_filename": "Koelmel_Anton_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 33f.", "author": "", "orig_id": 1416041}}, {"model": "metainfo.source", "pk": 12352, "fields": {"orig_filename": "Koemm_Johann-Nep_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416042}}, {"model": "metainfo.source", "pk": 12353, "fields": {"orig_filename": "Koenig-Karsthof_Adolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38f.", "author": "", "orig_id": 1416057}}, {"model": "metainfo.source", "pk": 12354, "fields": {"orig_filename": "Koenig-Lorinser_Minna_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416058}}, {"model": "metainfo.source", "pk": 12355, "fields": {"orig_filename": "Koenigsberger_Friedrich_1823_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416060}}, {"model": "metainfo.source", "pk": 12356, "fields": {"orig_filename": "Koenigsberg_Alfred_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416059}}, {"model": "metainfo.source", "pk": 12357, "fields": {"orig_filename": "Koenigsbrun-Schaup_Franz-Joseph_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 39", "author": "", "orig_id": 1416061}}, {"model": "metainfo.source", "pk": 12358, "fields": {"orig_filename": "Koenigsbrunn_Artur_1839_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416062}}, {"model": "metainfo.source", "pk": 12359, "fields": {"orig_filename": "Koenigsbrunn_Hermann_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416063}}, {"model": "metainfo.source", "pk": 12360, "fields": {"orig_filename": "Koenigsegg-Aulendorf_Alfred_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40", "author": "", "orig_id": 1416130}}, {"model": "metainfo.source", "pk": 12361, "fields": {"orig_filename": "Koenigshofer_Karl_1787_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 40f.", "author": "", "orig_id": 1416131}}, {"model": "metainfo.source", "pk": 12362, "fields": {"orig_filename": "Koenigstein_Leopold_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416132}}, {"model": "metainfo.source", "pk": 12363, "fields": {"orig_filename": "Koenigswarter_Jonas_1807_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416133}}, {"model": "metainfo.source", "pk": 12364, "fields": {"orig_filename": "Koenigswarter_Moriz_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 41", "author": "", "orig_id": 1416134}}, {"model": "metainfo.source", "pk": 12365, "fields": {"orig_filename": "Koenig_Friedrich_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416043}}, {"model": "metainfo.source", "pk": 12366, "fields": {"orig_filename": "Koenig_Friedrich_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34", "author": "", "orig_id": 1416044}}, {"model": "metainfo.source", "pk": 12367, "fields": {"orig_filename": "Koenig_Gustav-Adolf_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 35", "author": "", "orig_id": 1416046}}, {"model": "metainfo.source", "pk": 12368, "fields": {"orig_filename": "Koenig_Gustav_1825_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 34f.", "author": "", "orig_id": 1416045}}, {"model": "metainfo.source", "pk": 12369, "fields": {"orig_filename": "Koenig_Gyula_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 35f.", "author": "", "orig_id": 1416047}}, {"model": "metainfo.source", "pk": 12370, "fields": {"orig_filename": "Koenig_Johann-Paul_1790_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36", "author": "", "orig_id": 1416048}}, {"model": "metainfo.source", "pk": 12371, "fields": {"orig_filename": "Koenig_Josef_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36", "author": "", "orig_id": 1416049}}, {"model": "metainfo.source", "pk": 12372, "fields": {"orig_filename": "Koenig_Karl_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 36f.", "author": "", "orig_id": 1416050}}, {"model": "metainfo.source", "pk": 12373, "fields": {"orig_filename": "Koenig_Karol_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416051}}, {"model": "metainfo.source", "pk": 12374, "fields": {"orig_filename": "Koenig_Leo_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416052}}, {"model": "metainfo.source", "pk": 12375, "fields": {"orig_filename": "Koenig_Otto_1882_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 37", "author": "", "orig_id": 1416053}}, {"model": "metainfo.source", "pk": 12376, "fields": {"orig_filename": "Koenig_Peter_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416054}}, {"model": "metainfo.source", "pk": 12377, "fields": {"orig_filename": "Koenig_Rudolf_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416055}}, {"model": "metainfo.source", "pk": 12378, "fields": {"orig_filename": "Koenig_Sophie_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 38", "author": "", "orig_id": 1416056}}, {"model": "metainfo.source", "pk": 12379, "fields": {"orig_filename": "Knapp_Johann_1778_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418509}}, {"model": "metainfo.source", "pk": 12380, "fields": {"orig_filename": "Knapp_Josef_1810_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431f.", "author": "", "orig_id": 1418510}}, {"model": "metainfo.source", "pk": 12381, "fields": {"orig_filename": "Knapp_Karl_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432", "author": "", "orig_id": 1418511}}, {"model": "metainfo.source", "pk": 12382, "fields": {"orig_filename": "Knapp_Ludwig_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432", "author": "", "orig_id": 1418512}}, {"model": "metainfo.source", "pk": 12383, "fields": {"orig_filename": "Knauer_Emil_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 432f.", "author": "", "orig_id": 1418513}}, {"model": "metainfo.source", "pk": 12384, "fields": {"orig_filename": "Knauer_Friedrich-Karl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433", "author": "", "orig_id": 1418696}}, {"model": "metainfo.source", "pk": 12385, "fields": {"orig_filename": "Knauer_Vinzenz_1828_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433", "author": "", "orig_id": 1418697}}, {"model": "metainfo.source", "pk": 12386, "fields": {"orig_filename": "Knaus_Hermann-Hubertus_1892_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1452147}}, {"model": "metainfo.source", "pk": 12387, "fields": {"orig_filename": "Knauz_Nandor_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 433f.", "author": "", "orig_id": 1418698}}, {"model": "metainfo.source", "pk": 12388, "fields": {"orig_filename": "Knebelsberger_Leopold_1814_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418699}}, {"model": "metainfo.source", "pk": 12389, "fields": {"orig_filename": "Knechtl-Ostenburg_Anton_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418701}}, {"model": "metainfo.source", "pk": 12390, "fields": {"orig_filename": "Knechtl_Josef_1771_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434", "author": "", "orig_id": 1418700}}, {"model": "metainfo.source", "pk": 12391, "fields": {"orig_filename": "Knedlhans_Jan_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 434f.", "author": "", "orig_id": 1418702}}, {"model": "metainfo.source", "pk": 12392, "fields": {"orig_filename": "Kneifel_Reginald_1761_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418703}}, {"model": "metainfo.source", "pk": 12393, "fields": {"orig_filename": "Kneisel_Franz_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418704}}, {"model": "metainfo.source", "pk": 12394, "fields": {"orig_filename": "Kneissler-Maixdorf_Leodegar_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435", "author": "", "orig_id": 1418705}}, {"model": "metainfo.source", "pk": 12395, "fields": {"orig_filename": "Knepper_Wilhelm_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 435f.", "author": "", "orig_id": 1418706}}, {"model": "metainfo.source", "pk": 12396, "fields": {"orig_filename": "Kneringer_Johann-Paul_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418709}}, {"model": "metainfo.source", "pk": 12397, "fields": {"orig_filename": "Kner_Izidor_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418707}}, {"model": "metainfo.source", "pk": 12398, "fields": {"orig_filename": "Kner_Rudolf_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 436", "author": "", "orig_id": 1418708}}, {"model": "metainfo.source", "pk": 12399, "fields": {"orig_filename": "Kneschke_Martha-Th_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437", "author": "", "orig_id": 1418710}}, {"model": "metainfo.source", "pk": 12400, "fields": {"orig_filename": "Knett_Josef_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437", "author": "", "orig_id": 1418711}}, {"model": "metainfo.source", "pk": 12401, "fields": {"orig_filename": "Knezevic-Szent-Helena_Vinko_1755_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438f.", "author": "", "orig_id": 1418786}}, {"model": "metainfo.source", "pk": 12402, "fields": {"orig_filename": "Knezevic_Antun_1834_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418784}}, {"model": "metainfo.source", "pk": 12403, "fields": {"orig_filename": "Knezevic_Stevan_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418785}}, {"model": "metainfo.source", "pk": 12404, "fields": {"orig_filename": "Knezic_Josip-Kajetan_1786_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418787}}, {"model": "metainfo.source", "pk": 12405, "fields": {"orig_filename": "Knez_Anton_1856_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 437f.", "author": "", "orig_id": 1418712}}, {"model": "metainfo.source", "pk": 12406, "fields": {"orig_filename": "Knez_Ivan_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 438", "author": "", "orig_id": 1418713}}, {"model": "metainfo.source", "pk": 12407, "fields": {"orig_filename": "Kniaziolucki_Severin_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418788}}, {"model": "metainfo.source", "pk": 12408, "fields": {"orig_filename": "Kniely_Konrad_1887_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439", "author": "", "orig_id": 1418789}}, {"model": "metainfo.source", "pk": 12409, "fields": {"orig_filename": "Kniep_Julius_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 439f.", "author": "", "orig_id": 1418790}}, {"model": "metainfo.source", "pk": 12410, "fields": {"orig_filename": "Knieschek_Johann_1856_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440", "author": "", "orig_id": 1418791}}, {"model": "metainfo.source", "pk": 12411, "fields": {"orig_filename": "Knipfelberger_Magnus_1747_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440", "author": "", "orig_id": 1418792}}, {"model": "metainfo.source", "pk": 12412, "fields": {"orig_filename": "Knirsch_Hans_1877_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 440f.", "author": "", "orig_id": 1418794}}, {"model": "metainfo.source", "pk": 12413, "fields": {"orig_filename": "Knitel-Stainer_Anna_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418798}}, {"model": "metainfo.source", "pk": 12414, "fields": {"orig_filename": "Knitel_Johann_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418796}}, {"model": "metainfo.source", "pk": 12415, "fields": {"orig_filename": "Knitel_Josef-Alois_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441", "author": "", "orig_id": 1418797}}, {"model": "metainfo.source", "pk": 12416, "fields": {"orig_filename": "Knittl_Karel_1853_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 441f.", "author": "", "orig_id": 1418799}}, {"model": "metainfo.source", "pk": 12417, "fields": {"orig_filename": "Knittl_Michael_1850_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418800}}, {"model": "metainfo.source", "pk": 12418, "fields": {"orig_filename": "Knize_Frantisek-Max_1784_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418801}}, {"model": "metainfo.source", "pk": 12419, "fields": {"orig_filename": "Knize_Therese_1782_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442", "author": "", "orig_id": 1418802}}, {"model": "metainfo.source", "pk": 12420, "fields": {"orig_filename": "Knoblehar_Ignacij_1819_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 442f.", "author": "", "orig_id": 1418868}}, {"model": "metainfo.source", "pk": 12421, "fields": {"orig_filename": "Knobloch_Johann-Wenzel_1757_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 443", "author": "", "orig_id": 1418869}}, {"model": "metainfo.source", "pk": 12422, "fields": {"orig_filename": "Knoch_Gottlieb_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 443", "author": "", "orig_id": 1418870}}, {"model": "metainfo.source", "pk": 12423, "fields": {"orig_filename": "Knoch_Philipp_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418871}}, {"model": "metainfo.source", "pk": 12424, "fields": {"orig_filename": "Knoebel_Robert_1874_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418873}}, {"model": "metainfo.source", "pk": 12425, "fields": {"orig_filename": "Knoechel_Franz_1839_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418875}}, {"model": "metainfo.source", "pk": 12426, "fields": {"orig_filename": "Knoechel_Franz_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444", "author": "", "orig_id": 1418874}}, {"model": "metainfo.source", "pk": 12427, "fields": {"orig_filename": "Knoechl_Hans_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 444f.", "author": "", "orig_id": 1418877}}, {"model": "metainfo.source", "pk": 12428, "fields": {"orig_filename": "Knoefel_Robert_1834_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445", "author": "", "orig_id": 1418878}}, {"model": "metainfo.source", "pk": 12429, "fields": {"orig_filename": "Knoefler_Josef_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445", "author": "", "orig_id": 1418879}}, {"model": "metainfo.source", "pk": 12430, "fields": {"orig_filename": "Knoell_Pius_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 445f.", "author": "", "orig_id": 1418880}}, {"model": "metainfo.source", "pk": 12431, "fields": {"orig_filename": "Knoepfelmacher_Wilhelm_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418881}}, {"model": "metainfo.source", "pk": 12432, "fields": {"orig_filename": "Knoepfler_Alois_1827_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418882}}, {"model": "metainfo.source", "pk": 12433, "fields": {"orig_filename": "Knoerlein_Josef_1806_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418883}}, {"model": "metainfo.source", "pk": 12434, "fields": {"orig_filename": "Knoflach_Augustin_1783_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446", "author": "", "orig_id": 1418884}}, {"model": "metainfo.source", "pk": 12435, "fields": {"orig_filename": "Knoflach_Johann-Cap_1779_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 446f.", "author": "", "orig_id": 1418885}}, {"model": "metainfo.source", "pk": 12436, "fields": {"orig_filename": "Knoller_Richard_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 448", "author": "", "orig_id": 1418962}}, {"model": "metainfo.source", "pk": 12437, "fields": {"orig_filename": "Knoll_Albert_1796_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418888}}, {"model": "metainfo.source", "pk": 12438, "fields": {"orig_filename": "Knoll_Joseph-Leonhard_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418890}}, {"model": "metainfo.source", "pk": 12439, "fields": {"orig_filename": "Knoll_Petar_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447", "author": "", "orig_id": 1418891}}, {"model": "metainfo.source", "pk": 12440, "fields": {"orig_filename": "Knoll_Philipp_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 447f.", "author": "", "orig_id": 1418959}}, {"model": "metainfo.source", "pk": 12441, "fields": {"orig_filename": "Knoll_Rudolf_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 448", "author": "", "orig_id": 1418960}}, {"model": "metainfo.source", "pk": 12442, "fields": {"orig_filename": "Knolz_Joseph-Johann_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1", "author": "", "orig_id": 1411240}}, {"model": "metainfo.source", "pk": 12443, "fields": {"orig_filename": "Knopf_Carl-Benno-Rudolf_1874_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1", "author": "", "orig_id": 1411241}}, {"model": "metainfo.source", "pk": 12444, "fields": {"orig_filename": "Knopp-Kirchwald_Norbert_1856_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2", "author": "", "orig_id": 1411243}}, {"model": "metainfo.source", "pk": 12445, "fields": {"orig_filename": "Knopp_Jozsef_1825_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 1f.", "author": "", "orig_id": 1411242}}, {"model": "metainfo.source", "pk": 12446, "fields": {"orig_filename": "Knorr_Josefine_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2", "author": "", "orig_id": 1411244}}, {"model": "metainfo.source", "pk": 12447, "fields": {"orig_filename": "Knothe_Franz_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 2f.", "author": "", "orig_id": 1411245}}, {"model": "metainfo.source", "pk": 12448, "fields": {"orig_filename": "Knotz_Alfred_1845_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411246}}, {"model": "metainfo.source", "pk": 12449, "fields": {"orig_filename": "Knuepfer_Benes_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411247}}, {"model": "metainfo.source", "pk": 12450, "fields": {"orig_filename": "Kobald_Engelbert_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411250}}, {"model": "metainfo.source", "pk": 12451, "fields": {"orig_filename": "Kobald_Franz_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411251}}, {"model": "metainfo.source", "pk": 12452, "fields": {"orig_filename": "Kobal_France_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3f.", "author": "", "orig_id": 1411249}}, {"model": "metainfo.source", "pk": 12453, "fields": {"orig_filename": "Koban_Anton_1875_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4", "author": "", "orig_id": 1411252}}, {"model": "metainfo.source", "pk": 12454, "fields": {"orig_filename": "Kobatsch_Rudolf_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 4f.", "author": "", "orig_id": 1411253}}, {"model": "metainfo.source", "pk": 12455, "fields": {"orig_filename": "Kobbe_Johann_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411254}}, {"model": "metainfo.source", "pk": 12456, "fields": {"orig_filename": "Kobelkoff_Nikolaus_1851_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5f.", "author": "", "orig_id": 1411257}}, {"model": "metainfo.source", "pk": 12457, "fields": {"orig_filename": "Koberwein_Elisabeth_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411347}}, {"model": "metainfo.source", "pk": 12458, "fields": {"orig_filename": "Koberwein_Joseph_1774_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411348}}, {"model": "metainfo.source", "pk": 12459, "fields": {"orig_filename": "Koberwein_Sophie_1783_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7f.", "author": "", "orig_id": 1411349}}, {"model": "metainfo.source", "pk": 12460, "fields": {"orig_filename": "Kober_Franz_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 6", "author": "", "orig_id": 1411342}}, {"model": "metainfo.source", "pk": 12461, "fields": {"orig_filename": "Kober_Guido_1829_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 6", "author": "", "orig_id": 1411343}}, {"model": "metainfo.source", "pk": 12462, "fields": {"orig_filename": "Kober_Maximilian_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 7", "author": "", "orig_id": 1411345}}, {"model": "metainfo.source", "pk": 12463, "fields": {"orig_filename": "Kobes_Karl_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8", "author": "", "orig_id": 1411350}}, {"model": "metainfo.source", "pk": 12464, "fields": {"orig_filename": "Kobe_Julius_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411255}}, {"model": "metainfo.source", "pk": 12465, "fields": {"orig_filename": "Kobe_Jurij_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 5", "author": "", "orig_id": 1411256}}, {"model": "metainfo.source", "pk": 12466, "fields": {"orig_filename": "Kobierski_Carl_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8", "author": "", "orig_id": 1411351}}, {"model": "metainfo.source", "pk": 12467, "fields": {"orig_filename": "Kobilca_Ivana_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 8f.", "author": "", "orig_id": 1411352}}, {"model": "metainfo.source", "pk": 12468, "fields": {"orig_filename": "Koblar_Anton_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9", "author": "", "orig_id": 1411424}}, {"model": "metainfo.source", "pk": 12469, "fields": {"orig_filename": "Kobler_Andreas_1816_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9", "author": "", "orig_id": 1411425}}, {"model": "metainfo.source", "pk": 12470, "fields": {"orig_filename": "Kobler_Franz_1882_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465580}}, {"model": "metainfo.source", "pk": 12471, "fields": {"orig_filename": "Kobler_Giovanni_1811_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 9f.", "author": "", "orig_id": 1411426}}, {"model": "metainfo.source", "pk": 12472, "fields": {"orig_filename": "Koblic_Jindrich_1876_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411427}}, {"model": "metainfo.source", "pk": 12473, "fields": {"orig_filename": "Kobliska_Alois_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411428}}, {"model": "metainfo.source", "pk": 12474, "fields": {"orig_filename": "Koblitz-Willmburg_Johann-Ludwig_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411430}}, {"model": "metainfo.source", "pk": 12475, "fields": {"orig_filename": "Koblitz-Willmburg_Johann_1818_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10", "author": "", "orig_id": 1411429}}, {"model": "metainfo.source", "pk": 12476, "fields": {"orig_filename": "Kobylicza_Lucian_1803_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 10f.", "author": "", "orig_id": 1411431}}, {"model": "metainfo.source", "pk": 12477, "fields": {"orig_filename": "Kobyljanska_Olga_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411432}}, {"model": "metainfo.source", "pk": 12478, "fields": {"orig_filename": "Kobyljanskyj_Anton_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411433}}, {"model": "metainfo.source", "pk": 12479, "fields": {"orig_filename": "Kob_Anton_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 3", "author": "", "orig_id": 1411248}}, {"model": "metainfo.source", "pk": 12480, "fields": {"orig_filename": "Koca_Djuro_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 11", "author": "", "orig_id": 1411434}}, {"model": "metainfo.source", "pk": 12481, "fields": {"orig_filename": "Kocbek_Fran_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411435}}, {"model": "metainfo.source", "pk": 12482, "fields": {"orig_filename": "Kocevar_Ferdo_1833_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 4 (Lfg. 16, 1966), S. 12", "author": "", "orig_id": 1411437}}, {"model": "metainfo.source", "pk": 12483, "fields": {"orig_filename": "Klier_Karl-Maria_1888_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419281}}, {"model": "metainfo.source", "pk": 12484, "fields": {"orig_filename": "Klietmann_Alfred_1884_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419282}}, {"model": "metainfo.source", "pk": 12485, "fields": {"orig_filename": "Klika_Josef_1833_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404", "author": "", "orig_id": 1419284}}, {"model": "metainfo.source", "pk": 12486, "fields": {"orig_filename": "Klimann_Thomas_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405f.", "author": "", "orig_id": 1419289}}, {"model": "metainfo.source", "pk": 12487, "fields": {"orig_filename": "Klima_Anton_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 404f.", "author": "", "orig_id": 1419285}}, {"model": "metainfo.source", "pk": 12488, "fields": {"orig_filename": "Klima_Jiri-Vaclav_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419286}}, {"model": "metainfo.source", "pk": 12489, "fields": {"orig_filename": "Klima_Josef_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419287}}, {"model": "metainfo.source", "pk": 12490, "fields": {"orig_filename": "Klima_Ladislav_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 405", "author": "", "orig_id": 1419288}}, {"model": "metainfo.source", "pk": 12491, "fields": {"orig_filename": "Kliment_Josef_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419290}}, {"model": "metainfo.source", "pk": 12492, "fields": {"orig_filename": "Kliment_Leopold_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419291}}, {"model": "metainfo.source", "pk": 12493, "fields": {"orig_filename": "Kliment_Vaclav_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419292}}, {"model": "metainfo.source", "pk": 12494, "fields": {"orig_filename": "Klimesch_Johann-Matthaeus_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419354}}, {"model": "metainfo.source", "pk": 12495, "fields": {"orig_filename": "Klimesch_Josef_1884_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406", "author": "", "orig_id": 1419356}}, {"model": "metainfo.source", "pk": 12496, "fields": {"orig_filename": "Klimesch_Philipp_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 406f.", "author": "", "orig_id": 1419357}}, {"model": "metainfo.source", "pk": 12497, "fields": {"orig_filename": "Klimke_Friedrich_1878_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419358}}, {"model": "metainfo.source", "pk": 12498, "fields": {"orig_filename": "Klimm_Mihaly_1851_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419359}}, {"model": "metainfo.source", "pk": 12499, "fields": {"orig_filename": "Klimont_Isidor_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407", "author": "", "orig_id": 1419360}}, {"model": "metainfo.source", "pk": 12500, "fields": {"orig_filename": "Klimsch_Edgar_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 407f.", "author": "", "orig_id": 1419361}}, {"model": "metainfo.source", "pk": 12501, "fields": {"orig_filename": "Klimsch_Ferdinand-Karl_1812_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408", "author": "", "orig_id": 1419362}}, {"model": "metainfo.source", "pk": 12502, "fields": {"orig_filename": "Klimsch_Robert_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408", "author": "", "orig_id": 1419364}}, {"model": "metainfo.source", "pk": 12503, "fields": {"orig_filename": "Klimt_Ernst_1864_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 408f.", "author": "", "orig_id": 1419365}}, {"model": "metainfo.source", "pk": 12504, "fields": {"orig_filename": "Klimt_Georg_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 409", "author": "", "orig_id": 1419366}}, {"model": "metainfo.source", "pk": 12505, "fields": {"orig_filename": "Klimt_Gustav_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 409f.", "author": "", "orig_id": 1419367}}, {"model": "metainfo.source", "pk": 12506, "fields": {"orig_filename": "Klineberger_Bohdan_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 410", "author": "", "orig_id": 1419368}}, {"model": "metainfo.source", "pk": 12507, "fields": {"orig_filename": "Klingatsch_Adolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 410", "author": "", "orig_id": 1419369}}, {"model": "metainfo.source", "pk": 12508, "fields": {"orig_filename": "Klinger_Heinrich_1896_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411", "author": "", "orig_id": 1419371}}, {"model": "metainfo.source", "pk": 12509, "fields": {"orig_filename": "Klinger_Richard_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411", "author": "", "orig_id": 1419372}}, {"model": "metainfo.source", "pk": 12510, "fields": {"orig_filename": "Klingler_Eduard_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 411f.", "author": "", "orig_id": 1419440}}, {"model": "metainfo.source", "pk": 12511, "fields": {"orig_filename": "Klingmann_Philipp_1762_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419441}}, {"model": "metainfo.source", "pk": 12512, "fields": {"orig_filename": "Klingspor_Guido_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419442}}, {"model": "metainfo.source", "pk": 12513, "fields": {"orig_filename": "Klinkosch_Carl_1797_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419443}}, {"model": "metainfo.source", "pk": 12514, "fields": {"orig_filename": "Klinkosch_Josef-Carl_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412", "author": "", "orig_id": 1419444}}, {"model": "metainfo.source", "pk": 12515, "fields": {"orig_filename": "Klinkowstroem_Alphons_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 412f.", "author": "", "orig_id": 1420902}}, {"model": "metainfo.source", "pk": 12516, "fields": {"orig_filename": "Klinkowstroem_Friedrich-August_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413", "author": "", "orig_id": 1419445}}, {"model": "metainfo.source", "pk": 12517, "fields": {"orig_filename": "Klinkowstroem_Josef_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413", "author": "", "orig_id": 1419446}}, {"model": "metainfo.source", "pk": 12518, "fields": {"orig_filename": "Klinkowstroem_Max_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 413f.", "author": "", "orig_id": 1419447}}, {"model": "metainfo.source", "pk": 12519, "fields": {"orig_filename": "Klir_Antonin_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414", "author": "", "orig_id": 1419448}}, {"model": "metainfo.source", "pk": 12520, "fields": {"orig_filename": "Klischnigg_Eduard_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414", "author": "", "orig_id": 1419449}}, {"model": "metainfo.source", "pk": 12521, "fields": {"orig_filename": "Klitsch_Wilhelm_1882_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 414f.", "author": "", "orig_id": 1419451}}, {"model": "metainfo.source", "pk": 12522, "fields": {"orig_filename": "Kloboucek_Josef_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419455}}, {"model": "metainfo.source", "pk": 12523, "fields": {"orig_filename": "Klobucar_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419456}}, {"model": "metainfo.source", "pk": 12524, "fields": {"orig_filename": "Klobusiczky-Klobusicz_Peter_1752_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416f.", "author": "", "orig_id": 1419549}}, {"model": "metainfo.source", "pk": 12525, "fields": {"orig_filename": "Klobus_Hugo_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419457}}, {"model": "metainfo.source", "pk": 12526, "fields": {"orig_filename": "Klob_Friedrich_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415", "author": "", "orig_id": 1419452}}, {"model": "metainfo.source", "pk": 12527, "fields": {"orig_filename": "Klob_Julius_1831_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415", "author": "", "orig_id": 1413139}}, {"model": "metainfo.source", "pk": 12528, "fields": {"orig_filename": "Klob_Karl-Maria_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 415f.", "author": "", "orig_id": 1419453}}, {"model": "metainfo.source", "pk": 12529, "fields": {"orig_filename": "Klob_Otto_1876_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 416", "author": "", "orig_id": 1419454}}, {"model": "metainfo.source", "pk": 12530, "fields": {"orig_filename": "Klocker_Johann_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419550}}, {"model": "metainfo.source", "pk": 12531, "fields": {"orig_filename": "Klodic-Sabladoski_Anton_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419551}}, {"model": "metainfo.source", "pk": 12532, "fields": {"orig_filename": "Klodzinski_Adam_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417", "author": "", "orig_id": 1419552}}, {"model": "metainfo.source", "pk": 12533, "fields": {"orig_filename": "Kloeckner_Gustav_1814_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 417f.", "author": "", "orig_id": 1419553}}, {"model": "metainfo.source", "pk": 12534, "fields": {"orig_filename": "Kloepfer_Hans_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418", "author": "", "orig_id": 1419554}}, {"model": "metainfo.source", "pk": 12535, "fields": {"orig_filename": "Klofac_Vaclav_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418", "author": "", "orig_id": 1419555}}, {"model": "metainfo.source", "pk": 12536, "fields": {"orig_filename": "Kloiber_Franz_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 418f.", "author": "", "orig_id": 1419556}}, {"model": "metainfo.source", "pk": 12537, "fields": {"orig_filename": "Klopfer_Karl-Eduard_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 419", "author": "", "orig_id": 1418237}}, {"model": "metainfo.source", "pk": 12538, "fields": {"orig_filename": "Klopp_Onno_1822_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 419", "author": "", "orig_id": 1418238}}, {"model": "metainfo.source", "pk": 12539, "fields": {"orig_filename": "Klopp_Wiard_1860_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418239}}, {"model": "metainfo.source", "pk": 12540, "fields": {"orig_filename": "Klopstein-Ennsbruck_Joseph_1763_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418240}}, {"model": "metainfo.source", "pk": 12541, "fields": {"orig_filename": "Klose_Antonin-Jaroslav_1861_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418241}}, {"model": "metainfo.source", "pk": 12542, "fields": {"orig_filename": "Klose_Olivier_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418242}}, {"model": "metainfo.source", "pk": 12543, "fields": {"orig_filename": "Kloss_Joseph-Ferdinand_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 420", "author": "", "orig_id": 1418243}}, {"model": "metainfo.source", "pk": 12544, "fields": {"orig_filename": "Kloss_Richard_1872_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418244}}, {"model": "metainfo.source", "pk": 12545, "fields": {"orig_filename": "Klostermann_Karl_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418245}}, {"model": "metainfo.source", "pk": 12546, "fields": {"orig_filename": "Klotz_Edmund_1855_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418246}}, {"model": "metainfo.source", "pk": 12547, "fields": {"orig_filename": "Klotz_Gottlieb_1780_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421", "author": "", "orig_id": 1418247}}, {"model": "metainfo.source", "pk": 12548, "fields": {"orig_filename": "Klotz_Hermann_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 421f.", "author": "", "orig_id": 1418248}}, {"model": "metainfo.source", "pk": 12549, "fields": {"orig_filename": "Klotz_Magdalena_1844_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418249}}, {"model": "metainfo.source", "pk": 12550, "fields": {"orig_filename": "Kloucek_Celda_1855_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418250}}, {"model": "metainfo.source", "pk": 12551, "fields": {"orig_filename": "Kluch_Joseph_1748_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418251}}, {"model": "metainfo.source", "pk": 12552, "fields": {"orig_filename": "Kluczenko_Basil_1844_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422", "author": "", "orig_id": 1418252}}, {"model": "metainfo.source", "pk": 12553, "fields": {"orig_filename": "Klueger_Karl_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 422f.", "author": "", "orig_id": 1418253}}, {"model": "metainfo.source", "pk": 12554, "fields": {"orig_filename": "Klug-Klugenwald_Sigmund_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418330}}, {"model": "metainfo.source", "pk": 12555, "fields": {"orig_filename": "Kluger-Teschenburg_Adolf_1830_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424", "author": "", "orig_id": 1418333}}, {"model": "metainfo.source", "pk": 12556, "fields": {"orig_filename": "Kluger_Josef_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418331}}, {"model": "metainfo.source", "pk": 12557, "fields": {"orig_filename": "Kluger_Salomon-B-Jehudah-Ahron_1783_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423f.", "author": "", "orig_id": 1418332}}, {"model": "metainfo.source", "pk": 12558, "fields": {"orig_filename": "Klug_Alfred_1883_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418254}}, {"model": "metainfo.source", "pk": 12559, "fields": {"orig_filename": "Klug_Nandor_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 423", "author": "", "orig_id": 1418255}}, {"model": "metainfo.source", "pk": 12560, "fields": {"orig_filename": "Kluibenschedl_Alois_1772_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424", "author": "", "orig_id": 1418334}}, {"model": "metainfo.source", "pk": 12561, "fields": {"orig_filename": "Kluibenschedl_Heinrich_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 424f.", "author": "", "orig_id": 1418336}}, {"model": "metainfo.source", "pk": 12562, "fields": {"orig_filename": "Klumpar_Jan-Kvetoslav_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418338}}, {"model": "metainfo.source", "pk": 12563, "fields": {"orig_filename": "Klun_Karl_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418339}}, {"model": "metainfo.source", "pk": 12564, "fields": {"orig_filename": "Klun_Vinzenz-Ferrer_1823_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425", "author": "", "orig_id": 1418340}}, {"model": "metainfo.source", "pk": 12565, "fields": {"orig_filename": "Klusacek_Karel-Ladislav_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 425f.", "author": "", "orig_id": 1418341}}, {"model": "metainfo.source", "pk": 12566, "fields": {"orig_filename": "Klusemann_Erich_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418342}}, {"model": "metainfo.source", "pk": 12567, "fields": {"orig_filename": "Klusemann_Otto-Karl-Heinrich_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418343}}, {"model": "metainfo.source", "pk": 12568, "fields": {"orig_filename": "Klutschak_Franz_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426", "author": "", "orig_id": 1418344}}, {"model": "metainfo.source", "pk": 12569, "fields": {"orig_filename": "Klvana_Josef_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 426f.", "author": "", "orig_id": 1418417}}, {"model": "metainfo.source", "pk": 12570, "fields": {"orig_filename": "Kment_Adele_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418418}}, {"model": "metainfo.source", "pk": 12571, "fields": {"orig_filename": "Kmetitsch_Agnes_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418420}}, {"model": "metainfo.source", "pk": 12572, "fields": {"orig_filename": "Kmety_Gyoergy_1813_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427f.", "author": "", "orig_id": 1418422}}, {"model": "metainfo.source", "pk": 12573, "fields": {"orig_filename": "Kmet_Andrej_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 427", "author": "", "orig_id": 1418419}}, {"model": "metainfo.source", "pk": 12574, "fields": {"orig_filename": "Kminek-Szedlo_Johann_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418423}}, {"model": "metainfo.source", "pk": 12575, "fields": {"orig_filename": "Kmoch_Frantisek_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418424}}, {"model": "metainfo.source", "pk": 12576, "fields": {"orig_filename": "Kmosko_Mihaly_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428", "author": "", "orig_id": 1418426}}, {"model": "metainfo.source", "pk": 12577, "fields": {"orig_filename": "Knaack_Wilhelm_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 428f.", "author": "", "orig_id": 1418427}}, {"model": "metainfo.source", "pk": 12578, "fields": {"orig_filename": "Knabl_Hermann_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418428}}, {"model": "metainfo.source", "pk": 12579, "fields": {"orig_filename": "Knabl_Josef_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418429}}, {"model": "metainfo.source", "pk": 12580, "fields": {"orig_filename": "Knabl_Richard_1789_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 429", "author": "", "orig_id": 1418430}}, {"model": "metainfo.source", "pk": 12581, "fields": {"orig_filename": "Knafelc_Alojzij_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418432}}, {"model": "metainfo.source", "pk": 12582, "fields": {"orig_filename": "Knaffl-Lenz-Fohnsdorf_Karl_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418434}}, {"model": "metainfo.source", "pk": 12583, "fields": {"orig_filename": "Knaffl-Lenz_Johann-Felix_1769_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430", "author": "", "orig_id": 1418433}}, {"model": "metainfo.source", "pk": 12584, "fields": {"orig_filename": "Knaflic_Josip_1880_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 430f.", "author": "", "orig_id": 1418435}}, {"model": "metainfo.source", "pk": 12585, "fields": {"orig_filename": "Knajsl_Matej_1805_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418507}}, {"model": "metainfo.source", "pk": 12586, "fields": {"orig_filename": "Knapp_Blasius_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 431", "author": "", "orig_id": 1418508}}, {"model": "metainfo.source", "pk": 12587, "fields": {"orig_filename": "Klebs_Theodor-Albrecht-Edwin_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 374", "author": "", "orig_id": 1418763}}, {"model": "metainfo.source", "pk": 12588, "fields": {"orig_filename": "Klecanda_Jan_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418764}}, {"model": "metainfo.source", "pk": 12589, "fields": {"orig_filename": "Kleczynski_Johann-Bapt_1756_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418765}}, {"model": "metainfo.source", "pk": 12590, "fields": {"orig_filename": "Kleemann_Therese-Marie_1820_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418767}}, {"model": "metainfo.source", "pk": 12591, "fields": {"orig_filename": "Klee_Hermann_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375", "author": "", "orig_id": 1418766}}, {"model": "metainfo.source", "pk": 12592, "fields": {"orig_filename": "Kleibel_Anton_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 375f.", "author": "", "orig_id": 1418769}}, {"model": "metainfo.source", "pk": 12593, "fields": {"orig_filename": "Kleiber_Karl_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418770}}, {"model": "metainfo.source", "pk": 12594, "fields": {"orig_filename": "Klein-Ehrenwalten_August_1824_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418943}}, {"model": "metainfo.source", "pk": 12595, "fields": {"orig_filename": "Klein-Rhoden_Rudolf_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418944}}, {"model": "metainfo.source", "pk": 12596, "fields": {"orig_filename": "Kleinert_Josef-Edgar_1859_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387", "author": "", "orig_id": 1418947}}, {"model": "metainfo.source", "pk": 12597, "fields": {"orig_filename": "Kleinert_Karl-Erasmus_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387", "author": "", "orig_id": 1418948}}, {"model": "metainfo.source", "pk": 12598, "fields": {"orig_filename": "Kleiner_Oskar_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386", "author": "", "orig_id": 1418945}}, {"model": "metainfo.source", "pk": 12599, "fields": {"orig_filename": "Kleiner_Viktor_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 386f.", "author": "", "orig_id": 1418946}}, {"model": "metainfo.source", "pk": 12600, "fields": {"orig_filename": "Kleinfercher_Johann_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 387f.", "author": "", "orig_id": 1418949}}, {"model": "metainfo.source", "pk": 12601, "fields": {"orig_filename": "Kleinhans_Edmund_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388", "author": "", "orig_id": 1418950}}, {"model": "metainfo.source", "pk": 12602, "fields": {"orig_filename": "Kleinhans_Friedrich_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388", "author": "", "orig_id": 1418951}}, {"model": "metainfo.source", "pk": 12603, "fields": {"orig_filename": "Kleinhans_Josef-Barth_1774_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 388f.", "author": "", "orig_id": 1418952}}, {"model": "metainfo.source", "pk": 12604, "fields": {"orig_filename": "Kleinheinz_Franz-Xaver_1765_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1418953}}, {"model": "metainfo.source", "pk": 12605, "fields": {"orig_filename": "Kleinmayr_Ferdinand-Josef_1801_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1419031}}, {"model": "metainfo.source", "pk": 12606, "fields": {"orig_filename": "Kleinmayr_Ferdinand_1863_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 389", "author": "", "orig_id": 1419032}}, {"model": "metainfo.source", "pk": 12607, "fields": {"orig_filename": "Kleinmayr_Ferdo_1881_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419033}}, {"model": "metainfo.source", "pk": 12608, "fields": {"orig_filename": "Kleinmayr_Ignaz_1795_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419035}}, {"model": "metainfo.source", "pk": 12609, "fields": {"orig_filename": "Kleinmayr_Ignaz_1830_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390", "author": "", "orig_id": 1419036}}, {"model": "metainfo.source", "pk": 12610, "fields": {"orig_filename": "Kleinmayr_Julij_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 390f.", "author": "", "orig_id": 1419038}}, {"model": "metainfo.source", "pk": 12611, "fields": {"orig_filename": "Kleinoscheg_Anton_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 391", "author": "", "orig_id": 1419039}}, {"model": "metainfo.source", "pk": 12612, "fields": {"orig_filename": "Kleinoscheg_Max_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 391f.", "author": "", "orig_id": 1419040}}, {"model": "metainfo.source", "pk": 12613, "fields": {"orig_filename": "Kleinpeter_Johann_1869_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419041}}, {"model": "metainfo.source", "pk": 12614, "fields": {"orig_filename": "Kleinschmid_Friedrich-August_1749_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419042}}, {"model": "metainfo.source", "pk": 12615, "fields": {"orig_filename": "Kleinsorg_Raphael_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419044}}, {"model": "metainfo.source", "pk": 12616, "fields": {"orig_filename": "Kleinwaechter_Alois_1807_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392", "author": "", "orig_id": 1419114}}, {"model": "metainfo.source", "pk": 12617, "fields": {"orig_filename": "Kleinwaechter_Friedrich_1838_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 392f.", "author": "", "orig_id": 1419112}}, {"model": "metainfo.source", "pk": 12618, "fields": {"orig_filename": "Kleinwaechter_Ludwig_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419115}}, {"model": "metainfo.source", "pk": 12619, "fields": {"orig_filename": "Klein_Adolf_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418771}}, {"model": "metainfo.source", "pk": 12620, "fields": {"orig_filename": "Klein_Adolf_1847_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376", "author": "", "orig_id": 1418772}}, {"model": "metainfo.source", "pk": 12621, "fields": {"orig_filename": "Klein_Anton_1788_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 376f.", "author": "", "orig_id": 1418773}}, {"model": "metainfo.source", "pk": 12622, "fields": {"orig_filename": "Klein_Anton_1830_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418774}}, {"model": "metainfo.source", "pk": 12623, "fields": {"orig_filename": "Klein_Arthur_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418775}}, {"model": "metainfo.source", "pk": 12624, "fields": {"orig_filename": "Klein_Edward-Emanuel_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377", "author": "", "orig_id": 1418776}}, {"model": "metainfo.source", "pk": 12625, "fields": {"orig_filename": "Klein_Franz_1777_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 377f.", "author": "", "orig_id": 1418777}}, {"model": "metainfo.source", "pk": 12626, "fields": {"orig_filename": "Klein_Franz_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378", "author": "", "orig_id": 1418779}}, {"model": "metainfo.source", "pk": 12627, "fields": {"orig_filename": "Klein_Franz_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 378f.", "author": "", "orig_id": 1418780}}, {"model": "metainfo.source", "pk": 12628, "fields": {"orig_filename": "Klein_Gisela_1873_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454295}}, {"model": "metainfo.source", "pk": 12629, "fields": {"orig_filename": "Klein_Gyula_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 379f.", "author": "", "orig_id": 1418781}}, {"model": "metainfo.source", "pk": 12630, "fields": {"orig_filename": "Klein_Heinrich_1756_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418782}}, {"model": "metainfo.source", "pk": 12631, "fields": {"orig_filename": "Klein_Hubert_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418849}}, {"model": "metainfo.source", "pk": 12632, "fields": {"orig_filename": "Klein_Hugo_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 380", "author": "", "orig_id": 1418850}}, {"model": "metainfo.source", "pk": 12633, "fields": {"orig_filename": "Klein_Hugo_1873_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418851}}, {"model": "metainfo.source", "pk": 12634, "fields": {"orig_filename": "Klein_Johann-Adam_1792_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418852}}, {"model": "metainfo.source", "pk": 12635, "fields": {"orig_filename": "Klein_Johann-Ev_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381", "author": "", "orig_id": 1418853}}, {"model": "metainfo.source", "pk": 12636, "fields": {"orig_filename": "Klein_Johann-Samuel_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 381f.", "author": "", "orig_id": 1418854}}, {"model": "metainfo.source", "pk": 12637, "fields": {"orig_filename": "Klein_Johann-Wilhelm_1765_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 382", "author": "", "orig_id": 1418855}}, {"model": "metainfo.source", "pk": 12638, "fields": {"orig_filename": "Klein_Josef_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383", "author": "", "orig_id": 1418857}}, {"model": "metainfo.source", "pk": 12639, "fields": {"orig_filename": "Klein_Joseph_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 382f.", "author": "", "orig_id": 1418856}}, {"model": "metainfo.source", "pk": 12640, "fields": {"orig_filename": "Klein_Julius-Leopold_1808_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383", "author": "", "orig_id": 1418858}}, {"model": "metainfo.source", "pk": 12641, "fields": {"orig_filename": "Klein_Ludwig_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 383f.", "author": "", "orig_id": 1418859}}, {"model": "metainfo.source", "pk": 12642, "fields": {"orig_filename": "Klein_Martin_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418860}}, {"model": "metainfo.source", "pk": 12643, "fields": {"orig_filename": "Klein_Max_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418861}}, {"model": "metainfo.source", "pk": 12644, "fields": {"orig_filename": "Klein_Norbert_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 384", "author": "", "orig_id": 1418862}}, {"model": "metainfo.source", "pk": 12645, "fields": {"orig_filename": "Klein_Regine_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418865}}, {"model": "metainfo.source", "pk": 12646, "fields": {"orig_filename": "Klein_Salomon_1845_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418867}}, {"model": "metainfo.source", "pk": 12647, "fields": {"orig_filename": "Klein_Samuel_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418939}}, {"model": "metainfo.source", "pk": 12648, "fields": {"orig_filename": "Klein_Thomas_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385", "author": "", "orig_id": 1418940}}, {"model": "metainfo.source", "pk": 12649, "fields": {"orig_filename": "Klein_Wilhelm_1850_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 385f.", "author": "", "orig_id": 1418941}}, {"model": "metainfo.source", "pk": 12650, "fields": {"orig_filename": "Kleiss_Herbert_1930_2000.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1434435}}, {"model": "metainfo.source", "pk": 12651, "fields": {"orig_filename": "Klekler_Pauline_1876_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419118}}, {"model": "metainfo.source", "pk": 12652, "fields": {"orig_filename": "Klekl_Jozef_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419116}}, {"model": "metainfo.source", "pk": 12653, "fields": {"orig_filename": "Klekl_Jozef_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 393", "author": "", "orig_id": 1419117}}, {"model": "metainfo.source", "pk": 12654, "fields": {"orig_filename": "Klemencic_Ferdinand_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419120}}, {"model": "metainfo.source", "pk": 12655, "fields": {"orig_filename": "Klemencic_Ignaz_1853_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394", "author": "", "orig_id": 1419121}}, {"model": "metainfo.source", "pk": 12656, "fields": {"orig_filename": "Klemencic_Igo_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 394f.", "author": "", "orig_id": 1419122}}, {"model": "metainfo.source", "pk": 12657, "fields": {"orig_filename": "Klemensiewicz_Edmund_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419124}}, {"model": "metainfo.source", "pk": 12658, "fields": {"orig_filename": "Klemensiewicz_Rudolf_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419125}}, {"model": "metainfo.source", "pk": 12659, "fields": {"orig_filename": "Klemensiewicz_Zygmunt_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395f.", "author": "", "orig_id": 1419126}}, {"model": "metainfo.source", "pk": 12660, "fields": {"orig_filename": "Klemens_Josef-Bozetech_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 395", "author": "", "orig_id": 1419123}}, {"model": "metainfo.source", "pk": 12661, "fields": {"orig_filename": "Klement_Vaclav_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419127}}, {"model": "metainfo.source", "pk": 12662, "fields": {"orig_filename": "Klemme_Josef-Ludwig_1861_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419194}}, {"model": "metainfo.source", "pk": 12663, "fields": {"orig_filename": "Klemm_Friedrich_1795_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419128}}, {"model": "metainfo.source", "pk": 12664, "fields": {"orig_filename": "Klemm_Josef_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 396", "author": "", "orig_id": 1419129}}, {"model": "metainfo.source", "pk": 12665, "fields": {"orig_filename": "Klemt_Agathon_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419195}}, {"model": "metainfo.source", "pk": 12666, "fields": {"orig_filename": "Klenau-Janowitz_Johann_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419196}}, {"model": "metainfo.source", "pk": 12667, "fields": {"orig_filename": "Klepsch-Roden_Eduard_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397", "author": "", "orig_id": 1419197}}, {"model": "metainfo.source", "pk": 12668, "fields": {"orig_filename": "Klesheim_Anton_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 397f.", "author": "", "orig_id": 1419198}}, {"model": "metainfo.source", "pk": 12669, "fields": {"orig_filename": "Kletler_Bruno_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398", "author": "", "orig_id": 1419199}}, {"model": "metainfo.source", "pk": 12670, "fields": {"orig_filename": "Kletzinsky_Vinzenz_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398", "author": "", "orig_id": 1419200}}, {"model": "metainfo.source", "pk": 12671, "fields": {"orig_filename": "Kletzl_Otto_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 398f.", "author": "", "orig_id": 1419201}}, {"model": "metainfo.source", "pk": 12672, "fields": {"orig_filename": "Kleutgen_Joseph-Wilhelm-Karl_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 399", "author": "", "orig_id": 1419202}}, {"model": "metainfo.source", "pk": 12673, "fields": {"orig_filename": "Kleyle_Franz-Joachim_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 399f.", "author": "", "orig_id": 1419203}}, {"model": "metainfo.source", "pk": 12674, "fields": {"orig_filename": "Kleyle_Karl_1812_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 400", "author": "", "orig_id": 1419204}}, {"model": "metainfo.source", "pk": 12675, "fields": {"orig_filename": "Klicka_Josef_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419206}}, {"model": "metainfo.source", "pk": 12676, "fields": {"orig_filename": "Klicman_Ladislav_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419207}}, {"model": "metainfo.source", "pk": 12677, "fields": {"orig_filename": "Klicpera_Ivan_1845_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401", "author": "", "orig_id": 1419208}}, {"model": "metainfo.source", "pk": 12678, "fields": {"orig_filename": "Klicpera_Vaclav-Kliment_1792_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 401f.", "author": "", "orig_id": 1419210}}, {"model": "metainfo.source", "pk": 12679, "fields": {"orig_filename": "Klic_Karel_1841_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 400f.", "author": "", "orig_id": 1419205}}, {"model": "metainfo.source", "pk": 12680, "fields": {"orig_filename": "Klieba_Michael_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419211}}, {"model": "metainfo.source", "pk": 12681, "fields": {"orig_filename": "Kliebenschaedl_Johann-Josef_1811_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419212}}, {"model": "metainfo.source", "pk": 12682, "fields": {"orig_filename": "Kliebert_Karl_1849_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419275}}, {"model": "metainfo.source", "pk": 12683, "fields": {"orig_filename": "Klieber_Eduard_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402", "author": "", "orig_id": 1419273}}, {"model": "metainfo.source", "pk": 12684, "fields": {"orig_filename": "Klieber_Josef_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 402f.", "author": "", "orig_id": 1419274}}, {"model": "metainfo.source", "pk": 12685, "fields": {"orig_filename": "Kliegl_Jozsef_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419276}}, {"model": "metainfo.source", "pk": 12686, "fields": {"orig_filename": "Klier_Cenek_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419277}}, {"model": "metainfo.source", "pk": 12687, "fields": {"orig_filename": "Klier_Franz_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403", "author": "", "orig_id": 1419279}}, {"model": "metainfo.source", "pk": 12688, "fields": {"orig_filename": "Klier_Jakob_1790_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 15, 1965), S. 403f.", "author": "", "orig_id": 1419280}}, {"model": "metainfo.source", "pk": 12689, "fields": {"orig_filename": "Kirchsteiger_Hans_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414732}}, {"model": "metainfo.source", "pk": 12690, "fields": {"orig_filename": "Kirch_Franz_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337f.", "author": "", "orig_id": 1414649}}, {"model": "metainfo.source", "pk": 12691, "fields": {"orig_filename": "Kirnbauer-Erzstaett_Johann_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414733}}, {"model": "metainfo.source", "pk": 12692, "fields": {"orig_filename": "Kirnbauer-Erzstaett_Philipp_1819_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343", "author": "", "orig_id": 1414734}}, {"model": "metainfo.source", "pk": 12693, "fields": {"orig_filename": "Kirnig_Alois_1840_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 343f.", "author": "", "orig_id": 1414735}}, {"model": "metainfo.source", "pk": 12694, "fields": {"orig_filename": "Kirpal_Alfred_1867_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414800}}, {"model": "metainfo.source", "pk": 12695, "fields": {"orig_filename": "Kirschner_Aloisia_1854_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 345f.", "author": "", "orig_id": 1414805}}, {"model": "metainfo.source", "pk": 12696, "fields": {"orig_filename": "Kirschner_Cornelius_1858_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346", "author": "", "orig_id": 1414806}}, {"model": "metainfo.source", "pk": 12697, "fields": {"orig_filename": "Kirschner_Ferdinand_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414807}}, {"model": "metainfo.source", "pk": 12698, "fields": {"orig_filename": "Kirsch_Arnold_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414801}}, {"model": "metainfo.source", "pk": 12699, "fields": {"orig_filename": "Kirsch_August_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344", "author": "", "orig_id": 1414802}}, {"model": "metainfo.source", "pk": 12700, "fields": {"orig_filename": "Kirsch_Bernhard_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 344f.", "author": "", "orig_id": 1414803}}, {"model": "metainfo.source", "pk": 12701, "fields": {"orig_filename": "Kirsch_Otto_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 345", "author": "", "orig_id": 1414804}}, {"model": "metainfo.source", "pk": 12702, "fields": {"orig_filename": "Kirstein_August_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346f.", "author": "", "orig_id": 1414809}}, {"model": "metainfo.source", "pk": 12703, "fields": {"orig_filename": "Kirste_Johann-Otto-Ferdinand_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 346", "author": "", "orig_id": 1414808}}, {"model": "metainfo.source", "pk": 12704, "fields": {"orig_filename": "Kisa_Anton-Karl_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 347", "author": "", "orig_id": 1414810}}, {"model": "metainfo.source", "pk": 12705, "fields": {"orig_filename": "Kisch_Alexander_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 347f.", "author": "", "orig_id": 1414811}}, {"model": "metainfo.source", "pk": 12706, "fields": {"orig_filename": "Kisch_Egon_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 348f.", "author": "", "orig_id": 1414812}}, {"model": "metainfo.source", "pk": 12707, "fields": {"orig_filename": "Kisch_Enoch-Heinrich_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 349", "author": "", "orig_id": 1414813}}, {"model": "metainfo.source", "pk": 12708, "fields": {"orig_filename": "Kisch_Gustav-Oswald_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 349f.", "author": "", "orig_id": 1414814}}, {"model": "metainfo.source", "pk": 12709, "fields": {"orig_filename": "Kisch_Wilhelm-Maximilian_1827_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414815}}, {"model": "metainfo.source", "pk": 12710, "fields": {"orig_filename": "Kiseljak_Mara_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414816}}, {"model": "metainfo.source", "pk": 12711, "fields": {"orig_filename": "Kiseljak_Marije_1883_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414817}}, {"model": "metainfo.source", "pk": 12712, "fields": {"orig_filename": "Kiseljak_Vladimir_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350", "author": "", "orig_id": 1414818}}, {"model": "metainfo.source", "pk": 12713, "fields": {"orig_filename": "Kisfaludy_Karoly_1788_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 350f.", "author": "", "orig_id": 1414819}}, {"model": "metainfo.source", "pk": 12714, "fields": {"orig_filename": "Kisfaludy_Sandor_1772_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351", "author": "", "orig_id": 1414820}}, {"model": "metainfo.source", "pk": 12715, "fields": {"orig_filename": "Kisic_Vinko_1879_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351", "author": "", "orig_id": 1414888}}, {"model": "metainfo.source", "pk": 12716, "fields": {"orig_filename": "Kisielewski_Jan-August_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 351f.", "author": "", "orig_id": 1414889}}, {"model": "metainfo.source", "pk": 12717, "fields": {"orig_filename": "Kispatic_Mijo_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352", "author": "", "orig_id": 1414890}}, {"model": "metainfo.source", "pk": 12718, "fields": {"orig_filename": "Kiss-Ittebe-Elemer_Ernoe_1800_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414980}}, {"model": "metainfo.source", "pk": 12719, "fields": {"orig_filename": "Kiss-Nemesker_Miklos_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414981}}, {"model": "metainfo.source", "pk": 12720, "fields": {"orig_filename": "Kissling_Adolf_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356f.", "author": "", "orig_id": 1414982}}, {"model": "metainfo.source", "pk": 12721, "fields": {"orig_filename": "Kissner-Scheurich_Babette_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 357", "author": "", "orig_id": 1414983}}, {"model": "metainfo.source", "pk": 12722, "fields": {"orig_filename": "Kiss_Aron_1815_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352", "author": "", "orig_id": 1414891}}, {"model": "metainfo.source", "pk": 12723, "fields": {"orig_filename": "Kiss_Aron_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 352f.", "author": "", "orig_id": 1414892}}, {"model": "metainfo.source", "pk": 12724, "fields": {"orig_filename": "Kiss_Balint_1772_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414893}}, {"model": "metainfo.source", "pk": 12725, "fields": {"orig_filename": "Kiss_Balint_1802_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414894}}, {"model": "metainfo.source", "pk": 12726, "fields": {"orig_filename": "Kiss_Ferenc_1862_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414895}}, {"model": "metainfo.source", "pk": 12727, "fields": {"orig_filename": "Kiss_Franz_1791_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353", "author": "", "orig_id": 1414896}}, {"model": "metainfo.source", "pk": 12728, "fields": {"orig_filename": "Kiss_Gyoergy_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 353f.", "author": "", "orig_id": 1414898}}, {"model": "metainfo.source", "pk": 12729, "fields": {"orig_filename": "Kiss_Istvan_1857_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354", "author": "", "orig_id": 1414899}}, {"model": "metainfo.source", "pk": 12730, "fields": {"orig_filename": "Kiss_Janos_1770_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354", "author": "", "orig_id": 1414900}}, {"model": "metainfo.source", "pk": 12731, "fields": {"orig_filename": "Kiss_Janos_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 354f.", "author": "", "orig_id": 1414901}}, {"model": "metainfo.source", "pk": 12732, "fields": {"orig_filename": "Kiss_Josef_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414902}}, {"model": "metainfo.source", "pk": 12733, "fields": {"orig_filename": "Kiss_Jozsef_1765_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414903}}, {"model": "metainfo.source", "pk": 12734, "fields": {"orig_filename": "Kiss_Jozsef_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414975}}, {"model": "metainfo.source", "pk": 12735, "fields": {"orig_filename": "Kiss_Kalman_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355", "author": "", "orig_id": 1414976}}, {"model": "metainfo.source", "pk": 12736, "fields": {"orig_filename": "Kiss_Karoly_1793_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 355f.", "author": "", "orig_id": 1414977}}, {"model": "metainfo.source", "pk": 12737, "fields": {"orig_filename": "Kiss_Karoly_1858_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 356", "author": "", "orig_id": 1414978}}, {"model": "metainfo.source", "pk": 12738, "fields": {"orig_filename": "Kitaibel_Paul_1757_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 357f.", "author": "", "orig_id": 1414222}}, {"model": "metainfo.source", "pk": 12739, "fields": {"orig_filename": "Kitir_Joseph_1867_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358", "author": "", "orig_id": 1414223}}, {"model": "metainfo.source", "pk": 12740, "fields": {"orig_filename": "Kitschelt_Lothar_1910_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358", "author": "", "orig_id": 1414224}}, {"model": "metainfo.source", "pk": 12741, "fields": {"orig_filename": "Kittel_Anton__1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 358f.", "author": "", "orig_id": 1414225}}, {"model": "metainfo.source", "pk": 12742, "fields": {"orig_filename": "Kittel_Gerhard_1888_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 359", "author": "", "orig_id": 1414226}}, {"model": "metainfo.source", "pk": 12743, "fields": {"orig_filename": "Kittl_Ernst_1854_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 359f.", "author": "", "orig_id": 1414228}}, {"model": "metainfo.source", "pk": 12744, "fields": {"orig_filename": "Kittl_Johann-Friedrich_1806_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 360", "author": "", "orig_id": 1414229}}, {"model": "metainfo.source", "pk": 12745, "fields": {"orig_filename": "Kittner_Alexander_1809_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 360", "author": "", "orig_id": 1414230}}, {"model": "metainfo.source", "pk": 12746, "fields": {"orig_filename": "Kittner_Patriz_1809_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414231}}, {"model": "metainfo.source", "pk": 12747, "fields": {"orig_filename": "Kitzler_Otto_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414232}}, {"model": "metainfo.source", "pk": 12748, "fields": {"orig_filename": "Kiurina_Berta_1888_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414233}}, {"model": "metainfo.source", "pk": 12749, "fields": {"orig_filename": "Kiuver_Stephan-Agontz_1740_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361", "author": "", "orig_id": 1414234}}, {"model": "metainfo.source", "pk": 12750, "fields": {"orig_filename": "Kiwisch-Rotterau_Franz_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 361f.", "author": "", "orig_id": 1414235}}, {"model": "metainfo.source", "pk": 12751, "fields": {"orig_filename": "Klaar_Alfred_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 362", "author": "", "orig_id": 1414236}}, {"model": "metainfo.source", "pk": 12752, "fields": {"orig_filename": "Klacel_Matous_1808_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 362f.", "author": "", "orig_id": 1414237}}, {"model": "metainfo.source", "pk": 12753, "fields": {"orig_filename": "Klaczko_Julian_1828_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414238}}, {"model": "metainfo.source", "pk": 12754, "fields": {"orig_filename": "Kladivo_Bohumil_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414239}}, {"model": "metainfo.source", "pk": 12755, "fields": {"orig_filename": "Klaeger_Emil_1880_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363", "author": "", "orig_id": 1414240}}, {"model": "metainfo.source", "pk": 12756, "fields": {"orig_filename": "Klaehr_Franziska_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 363f.", "author": "", "orig_id": 1414304}}, {"model": "metainfo.source", "pk": 12757, "fields": {"orig_filename": "Klafsky_Katharina_1855_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 364", "author": "", "orig_id": 1414305}}, {"model": "metainfo.source", "pk": 12758, "fields": {"orig_filename": "Klahs_Ignatz_1802_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 364f.", "author": "", "orig_id": 1414306}}, {"model": "metainfo.source", "pk": 12759, "fields": {"orig_filename": "Klaic_Franjo_1819_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365", "author": "", "orig_id": 1414307}}, {"model": "metainfo.source", "pk": 12760, "fields": {"orig_filename": "Klaic_Miho_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365", "author": "", "orig_id": 1414308}}, {"model": "metainfo.source", "pk": 12761, "fields": {"orig_filename": "Klaic_Vjekoslav_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 365f.", "author": "", "orig_id": 1414309}}, {"model": "metainfo.source", "pk": 12762, "fields": {"orig_filename": "Klajic_Jovan_1815_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414310}}, {"model": "metainfo.source", "pk": 12763, "fields": {"orig_filename": "Klama_Odilo_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414311}}, {"model": "metainfo.source", "pk": 12764, "fields": {"orig_filename": "Klammer_Nicolaus_1769_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414312}}, {"model": "metainfo.source", "pk": 12765, "fields": {"orig_filename": "Klammer_Richard_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366", "author": "", "orig_id": 1414313}}, {"model": "metainfo.source", "pk": 12766, "fields": {"orig_filename": "Klang_Heinrich-Adalbert_1875_1954.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1454721}}, {"model": "metainfo.source", "pk": 12767, "fields": {"orig_filename": "Klang_James_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 366f.", "author": "", "orig_id": 1414314}}, {"model": "metainfo.source", "pk": 12768, "fields": {"orig_filename": "Klapalek_Frantisek_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367", "author": "", "orig_id": 1414315}}, {"model": "metainfo.source", "pk": 12769, "fields": {"orig_filename": "Klapeer_Anton_1770_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367", "author": "", "orig_id": 1414316}}, {"model": "metainfo.source", "pk": 12770, "fields": {"orig_filename": "Klapka_Georg_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 367f.", "author": "", "orig_id": 1414317}}, {"model": "metainfo.source", "pk": 12771, "fields": {"orig_filename": "Klapp_Michael_1834_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 368", "author": "", "orig_id": 1414318}}, {"model": "metainfo.source", "pk": 12772, "fields": {"orig_filename": "Klapsia_Heinrich_1907_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 368f.", "author": "", "orig_id": 1414319}}, {"model": "metainfo.source", "pk": 12773, "fields": {"orig_filename": "Klar_Alois_1763_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369", "author": "", "orig_id": 1414320}}, {"model": "metainfo.source", "pk": 12774, "fields": {"orig_filename": "Klar_Christoph_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369", "author": "", "orig_id": 1414321}}, {"model": "metainfo.source", "pk": 12775, "fields": {"orig_filename": "Klar_Paul-Alois_1801_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 369f.", "author": "", "orig_id": 1414322}}, {"model": "metainfo.source", "pk": 12776, "fields": {"orig_filename": "Klar_Rudolf-Maria_1845_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414387}}, {"model": "metainfo.source", "pk": 12777, "fields": {"orig_filename": "Klastersky_Antonin_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414386}}, {"model": "metainfo.source", "pk": 12778, "fields": {"orig_filename": "Klatscher_Alfred_1858_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414388}}, {"model": "metainfo.source", "pk": 12779, "fields": {"orig_filename": "Klaudi_Josef_1861_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370", "author": "", "orig_id": 1414389}}, {"model": "metainfo.source", "pk": 12780, "fields": {"orig_filename": "Klaudy_Karel-Leopold_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 370f.", "author": "", "orig_id": 1414390}}, {"model": "metainfo.source", "pk": 12781, "fields": {"orig_filename": "Klausberger_Maria-Leopoldine_1888_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371f.", "author": "", "orig_id": 1414394}}, {"model": "metainfo.source", "pk": 12782, "fields": {"orig_filename": "Klausner_Hubert_1892_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372", "author": "", "orig_id": 1414395}}, {"model": "metainfo.source", "pk": 12783, "fields": {"orig_filename": "Klaus_Johannes_1847_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414391}}, {"model": "metainfo.source", "pk": 12784, "fields": {"orig_filename": "Klaus_Josef_1807_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414393}}, {"model": "metainfo.source", "pk": 12785, "fields": {"orig_filename": "Klaus_Raimund_1812_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 371", "author": "", "orig_id": 1414392}}, {"model": "metainfo.source", "pk": 12786, "fields": {"orig_filename": "Klauzal_Gabor_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372", "author": "", "orig_id": 1414396}}, {"model": "metainfo.source", "pk": 12787, "fields": {"orig_filename": "Klauzal_Imre_1799_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 372f.", "author": "", "orig_id": 1414397}}, {"model": "metainfo.source", "pk": 12788, "fields": {"orig_filename": "Klavik_Frantisek-Josef_1798_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414398}}, {"model": "metainfo.source", "pk": 12789, "fields": {"orig_filename": "Klavzar_Ernest_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414399}}, {"model": "metainfo.source", "pk": 12790, "fields": {"orig_filename": "Klebelsberg-Thumburg_Franz_1774_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373", "author": "", "orig_id": 1414400}}, {"model": "metainfo.source", "pk": 12791, "fields": {"orig_filename": "Klebelsberg-Thumburg_Hieronymus_1800_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 373f.", "author": "", "orig_id": 1414401}}, {"model": "metainfo.source", "pk": 12792, "fields": {"orig_filename": "Klebelsberg-Thumburg_Jakob-Philipp_1749_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 374", "author": "", "orig_id": 1414402}}, {"model": "metainfo.source", "pk": 12793, "fields": {"orig_filename": "Kettner_Adolf_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414298}}, {"model": "metainfo.source", "pk": 12794, "fields": {"orig_filename": "Kettner_Ferdinand_1779_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414299}}, {"model": "metainfo.source", "pk": 12795, "fields": {"orig_filename": "Kezdi-Kovacs_Laszlo_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414300}}, {"model": "metainfo.source", "pk": 12796, "fields": {"orig_filename": "Khackhl_Thomas_1791_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314f.", "author": "", "orig_id": 1414301}}, {"model": "metainfo.source", "pk": 12797, "fields": {"orig_filename": "Khautz-Eulenthal_Karl_1802_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 315", "author": "", "orig_id": 1414303}}, {"model": "metainfo.source", "pk": 12798, "fields": {"orig_filename": "Khayll_Alois_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 315f.", "author": "", "orig_id": 1414366}}, {"model": "metainfo.source", "pk": 12799, "fields": {"orig_filename": "Khayll_Josef_1781_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414367}}, {"model": "metainfo.source", "pk": 12800, "fields": {"orig_filename": "Kheil_Karel-Petr_1817_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414369}}, {"model": "metainfo.source", "pk": 12801, "fields": {"orig_filename": "Kheil_Karel-Petr_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414368}}, {"model": "metainfo.source", "pk": 12802, "fields": {"orig_filename": "Kherndl_Antal_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316", "author": "", "orig_id": 1414370}}, {"model": "metainfo.source", "pk": 12803, "fields": {"orig_filename": "Khevenhueller-Metsch_Rudolf_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 316f.", "author": "", "orig_id": 1414371}}, {"model": "metainfo.source", "pk": 12804, "fields": {"orig_filename": "Khittel-Westhort_Jaroslav_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414373}}, {"model": "metainfo.source", "pk": 12805, "fields": {"orig_filename": "Khittel_Rudolf_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414372}}, {"model": "metainfo.source", "pk": 12806, "fields": {"orig_filename": "Khoss-Sternegg_August_1819_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414374}}, {"model": "metainfo.source", "pk": 12807, "fields": {"orig_filename": "Khoss-Sternegg_Johann_1823_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317", "author": "", "orig_id": 1414375}}, {"model": "metainfo.source", "pk": 12808, "fields": {"orig_filename": "Khoss-Sternegg_Josef_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 317f.", "author": "", "orig_id": 1414376}}, {"model": "metainfo.source", "pk": 12809, "fields": {"orig_filename": "Khuen-Hedervary_Karoly_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414378}}, {"model": "metainfo.source", "pk": 12810, "fields": {"orig_filename": "Khuenberg_Sophie_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414379}}, {"model": "metainfo.source", "pk": 12811, "fields": {"orig_filename": "Khuenl_Jacob-Rudolph_1775_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318f.", "author": "", "orig_id": 1414380}}, {"model": "metainfo.source", "pk": 12812, "fields": {"orig_filename": "Khuen_Theodor-Franz-Maria_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 318", "author": "", "orig_id": 1414377}}, {"model": "metainfo.source", "pk": 12813, "fields": {"orig_filename": "Khuepach-Ried-Zimmerlehen-Haslburg_Viktor_1859_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414381}}, {"model": "metainfo.source", "pk": 12814, "fields": {"orig_filename": "Khull-Kholwald_Ferdinand_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414382}}, {"model": "metainfo.source", "pk": 12815, "fields": {"orig_filename": "Kicinski_Bruno_1796_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 319", "author": "", "orig_id": 1414383}}, {"model": "metainfo.source", "pk": 12816, "fields": {"orig_filename": "Kickh_Clemens_1827_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320", "author": "", "orig_id": 1414385}}, {"model": "metainfo.source", "pk": 12817, "fields": {"orig_filename": "Kick_Friedrich_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320", "author": "", "orig_id": 1414384}}, {"model": "metainfo.source", "pk": 12818, "fields": {"orig_filename": "Kidric_Franc_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 320f.", "author": "", "orig_id": 1414446}}, {"model": "metainfo.source", "pk": 12819, "fields": {"orig_filename": "Kiechl_Johann_1804_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414447}}, {"model": "metainfo.source", "pk": 12820, "fields": {"orig_filename": "Kiechl_Josef_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414448}}, {"model": "metainfo.source", "pk": 12821, "fields": {"orig_filename": "Kiechl_Josef_1807_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321", "author": "", "orig_id": 1414449}}, {"model": "metainfo.source", "pk": 12822, "fields": {"orig_filename": "Kiedron_Jozef_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 321f.", "author": "", "orig_id": 1414450}}, {"model": "metainfo.source", "pk": 12823, "fields": {"orig_filename": "Kielmansegge_Alexander_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322", "author": "", "orig_id": 1414452}}, {"model": "metainfo.source", "pk": 12824, "fields": {"orig_filename": "Kielmansegg_Erich_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322", "author": "", "orig_id": 1414451}}, {"model": "metainfo.source", "pk": 12825, "fields": {"orig_filename": "Kiem_Martin_1829_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 322f.", "author": "", "orig_id": 1414453}}, {"model": "metainfo.source", "pk": 12826, "fields": {"orig_filename": "Kienast_Friedrich-August_1853_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414454}}, {"model": "metainfo.source", "pk": 12827, "fields": {"orig_filename": "Kiendl_Anton_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414458}}, {"model": "metainfo.source", "pk": 12828, "fields": {"orig_filename": "Kiener_Franz_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414460}}, {"model": "metainfo.source", "pk": 12829, "fields": {"orig_filename": "Kiene_Kurt_1891_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323", "author": "", "orig_id": 1414459}}, {"model": "metainfo.source", "pk": 12830, "fields": {"orig_filename": "Kieninger_Johann-Georg_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 323f.", "author": "", "orig_id": 1414461}}, {"model": "metainfo.source", "pk": 12831, "fields": {"orig_filename": "Kienmayer_Michael_1755_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414462}}, {"model": "metainfo.source", "pk": 12832, "fields": {"orig_filename": "Kienreich_Franz-Xaver_1806_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414463}}, {"model": "metainfo.source", "pk": 12833, "fields": {"orig_filename": "Kienreich_Johann-Nep-Andreas_1759_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324", "author": "", "orig_id": 1414464}}, {"model": "metainfo.source", "pk": 12834, "fields": {"orig_filename": "Kienzl_Hermann_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 324f.", "author": "", "orig_id": 1414465}}, {"model": "metainfo.source", "pk": 12835, "fields": {"orig_filename": "Kienzl_Josef_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 325", "author": "", "orig_id": 1414466}}, {"model": "metainfo.source", "pk": 12836, "fields": {"orig_filename": "Kienzl_Wilhelm_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 325f.", "author": "", "orig_id": 1414538}}, {"model": "metainfo.source", "pk": 12837, "fields": {"orig_filename": "Kienzl_Wilhelm_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 326", "author": "", "orig_id": 1414539}}, {"model": "metainfo.source", "pk": 12838, "fields": {"orig_filename": "Kierschner_Eduard_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 326f.", "author": "", "orig_id": 1414540}}, {"model": "metainfo.source", "pk": 12839, "fields": {"orig_filename": "Kierschner_Franz_1833_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414541}}, {"model": "metainfo.source", "pk": 12840, "fields": {"orig_filename": "Kiesewetter-Wiesenbrunn_Irene_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414544}}, {"model": "metainfo.source", "pk": 12841, "fields": {"orig_filename": "Kiesewetter-Wiesenbrunn_Raphael-Georg_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327f.", "author": "", "orig_id": 1414545}}, {"model": "metainfo.source", "pk": 12842, "fields": {"orig_filename": "Kiesling_Daniel_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414546}}, {"model": "metainfo.source", "pk": 12843, "fields": {"orig_filename": "Kiesling_Leopold_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414547}}, {"model": "metainfo.source", "pk": 12844, "fields": {"orig_filename": "Kiesslich_Anton_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 328", "author": "", "orig_id": 1414548}}, {"model": "metainfo.source", "pk": 12845, "fields": {"orig_filename": "Kiessling_Franz-Xaver_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329", "author": "", "orig_id": 1414549}}, {"model": "metainfo.source", "pk": 12846, "fields": {"orig_filename": "Kiessling_Johann-Tobias_1742_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329", "author": "", "orig_id": 1414550}}, {"model": "metainfo.source", "pk": 12847, "fields": {"orig_filename": "Kies_Heinrich_1778_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 327", "author": "", "orig_id": 1414542}}, {"model": "metainfo.source", "pk": 12848, "fields": {"orig_filename": "Kikic_Hasan_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 329f.", "author": "", "orig_id": 1414552}}, {"model": "metainfo.source", "pk": 12849, "fields": {"orig_filename": "Kilanyi_Ludwig_1819_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414553}}, {"model": "metainfo.source", "pk": 12850, "fields": {"orig_filename": "Kilanyi_Therese_1830_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414554}}, {"model": "metainfo.source", "pk": 12851, "fields": {"orig_filename": "Kilenyi_Janos_1805_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414555}}, {"model": "metainfo.source", "pk": 12852, "fields": {"orig_filename": "Kilian-Gayrsperg_Franz-Xaver_1854_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414556}}, {"model": "metainfo.source", "pk": 12853, "fields": {"orig_filename": "Kimmel_Fidelis_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 330", "author": "", "orig_id": 1414557}}, {"model": "metainfo.source", "pk": 12854, "fields": {"orig_filename": "Kimnach_Ladislaus_1857_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414558}}, {"model": "metainfo.source", "pk": 12855, "fields": {"orig_filename": "Kindermann_Rudolf_1897_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414560}}, {"model": "metainfo.source", "pk": 12856, "fields": {"orig_filename": "Kindinger_Eduard_1833_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414561}}, {"model": "metainfo.source", "pk": 12857, "fields": {"orig_filename": "Kindinger_Ignaz_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414632}}, {"model": "metainfo.source", "pk": 12858, "fields": {"orig_filename": "Kind_Alexander_1890_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331", "author": "", "orig_id": 1414559}}, {"model": "metainfo.source", "pk": 12859, "fields": {"orig_filename": "Kininger_Vincenz-Georg_1767_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 331f.", "author": "", "orig_id": 1414633}}, {"model": "metainfo.source", "pk": 12860, "fields": {"orig_filename": "Kink_Anton_1820_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 332", "author": "", "orig_id": 1414634}}, {"model": "metainfo.source", "pk": 12861, "fields": {"orig_filename": "Kink_Franz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 332f.", "author": "", "orig_id": 1414635}}, {"model": "metainfo.source", "pk": 12862, "fields": {"orig_filename": "Kink_Julius_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 333", "author": "", "orig_id": 1414636}}, {"model": "metainfo.source", "pk": 12863, "fields": {"orig_filename": "Kink_Martin_1800_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 333f.", "author": "", "orig_id": 1414637}}, {"model": "metainfo.source", "pk": 12864, "fields": {"orig_filename": "Kink_Rudolf_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 334", "author": "", "orig_id": 1414638}}, {"model": "metainfo.source", "pk": 12865, "fields": {"orig_filename": "Kinsele-Eckberg_Josef_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 334f.", "author": "", "orig_id": 1414639}}, {"model": "metainfo.source", "pk": 12866, "fields": {"orig_filename": "Kinsky-Wchinitz-Tettau_Carl_1858_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414640}}, {"model": "metainfo.source", "pk": 12867, "fields": {"orig_filename": "Kinsky-Wchinitz-Tettau_Christian_1777_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414641}}, {"model": "metainfo.source", "pk": 12868, "fields": {"orig_filename": "Kinter_Maurus_1842_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335", "author": "", "orig_id": 1414642}}, {"model": "metainfo.source", "pk": 12869, "fields": {"orig_filename": "Kinzel_Josef_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336", "author": "", "orig_id": 1414644}}, {"model": "metainfo.source", "pk": 12870, "fields": {"orig_filename": "Kinzer_Karl_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336", "author": "", "orig_id": 1414645}}, {"model": "metainfo.source", "pk": 12871, "fields": {"orig_filename": "Kinzl_Josef_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 336f.", "author": "", "orig_id": 1414646}}, {"model": "metainfo.source", "pk": 12872, "fields": {"orig_filename": "Kinz_Ferdinand_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 335f.", "author": "", "orig_id": 1414643}}, {"model": "metainfo.source", "pk": 12873, "fields": {"orig_filename": "Kirac_Luka_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337", "author": "", "orig_id": 1414647}}, {"model": "metainfo.source", "pk": 12874, "fields": {"orig_filename": "Kiralyi_Pal_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 337", "author": "", "orig_id": 1414648}}, {"model": "metainfo.source", "pk": 12875, "fields": {"orig_filename": "Kirchbach-Lauterbach_Johann_1858_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414650}}, {"model": "metainfo.source", "pk": 12876, "fields": {"orig_filename": "Kirchbach-Lauterbach_Karl_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414651}}, {"model": "metainfo.source", "pk": 12877, "fields": {"orig_filename": "Kirchberger_Johann-Ev_1862_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338", "author": "", "orig_id": 1414652}}, {"model": "metainfo.source", "pk": 12878, "fields": {"orig_filename": "Kirchebner_Anton-Alois_1823_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 338f.", "author": "", "orig_id": 1414653}}, {"model": "metainfo.source", "pk": 12879, "fields": {"orig_filename": "Kirchebner_Franz-Xaver_1736_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414715}}, {"model": "metainfo.source", "pk": 12880, "fields": {"orig_filename": "Kirchebner_Peter-Paul_1812_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414716}}, {"model": "metainfo.source", "pk": 12881, "fields": {"orig_filename": "Kirchenberger_Salomon_1848_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414717}}, {"model": "metainfo.source", "pk": 12882, "fields": {"orig_filename": "Kirchgaesser-Rheinhoven_Julius_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339", "author": "", "orig_id": 1414718}}, {"model": "metainfo.source", "pk": 12883, "fields": {"orig_filename": "Kirchhammer_Alexander_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 339f.", "author": "", "orig_id": 1414719}}, {"model": "metainfo.source", "pk": 12884, "fields": {"orig_filename": "Kirchhoffer_Rudolf_1817_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414720}}, {"model": "metainfo.source", "pk": 12885, "fields": {"orig_filename": "Kirchlechner_Alfons_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340", "author": "", "orig_id": 1414722}}, {"model": "metainfo.source", "pk": 12886, "fields": {"orig_filename": "Kirchlehner_Ferenc_1791_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 340f.", "author": "", "orig_id": 1414723}}, {"model": "metainfo.source", "pk": 12887, "fields": {"orig_filename": "Kirchmayer_Wincenty-Marcin-Kanty_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414724}}, {"model": "metainfo.source", "pk": 12888, "fields": {"orig_filename": "Kirchmayr_Hermann_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414725}}, {"model": "metainfo.source", "pk": 12889, "fields": {"orig_filename": "Kirchner_Hermann_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341", "author": "", "orig_id": 1414726}}, {"model": "metainfo.source", "pk": 12890, "fields": {"orig_filename": "Kirchner_Johann-Carl_1821_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 341f.", "author": "", "orig_id": 1414727}}, {"model": "metainfo.source", "pk": 12891, "fields": {"orig_filename": "Kirchner_Leopold-Anton_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414728}}, {"model": "metainfo.source", "pk": 12892, "fields": {"orig_filename": "Kirchner_Raphael_1875_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414729}}, {"model": "metainfo.source", "pk": 12893, "fields": {"orig_filename": "Kirchner_Theodor_1862_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342", "author": "", "orig_id": 1414730}}, {"model": "metainfo.source", "pk": 12894, "fields": {"orig_filename": "Kirchsberg_Ernestine_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 342f.", "author": "", "orig_id": 1414731}}, {"model": "metainfo.source", "pk": 12895, "fields": {"orig_filename": "Keil-Eichenthurn_Othmar_1888_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282f.", "author": "", "orig_id": 1415218}}, {"model": "metainfo.source", "pk": 12896, "fields": {"orig_filename": "Keil_Anton_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281f.", "author": "", "orig_id": 1415215}}, {"model": "metainfo.source", "pk": 12897, "fields": {"orig_filename": "Keil_Franz_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282", "author": "", "orig_id": 1415216}}, {"model": "metainfo.source", "pk": 12898, "fields": {"orig_filename": "Keil_Franz_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 282", "author": "", "orig_id": 1415217}}, {"model": "metainfo.source", "pk": 12899, "fields": {"orig_filename": "Keim_Franz_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 283", "author": "", "orig_id": 1415219}}, {"model": "metainfo.source", "pk": 12900, "fields": {"orig_filename": "Keintzel_Georg_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 283f.", "author": "", "orig_id": 1415220}}, {"model": "metainfo.source", "pk": 12901, "fields": {"orig_filename": "Keissler_Karl_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415221}}, {"model": "metainfo.source", "pk": 12902, "fields": {"orig_filename": "Keiter_Ernst_1843_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415222}}, {"model": "metainfo.source", "pk": 12903, "fields": {"orig_filename": "Keitler_Heinrich_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415223}}, {"model": "metainfo.source", "pk": 12904, "fields": {"orig_filename": "Keki_Richard_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284", "author": "", "orig_id": 1415224}}, {"model": "metainfo.source", "pk": 12905, "fields": {"orig_filename": "Kelbetz_Ludwig_1905_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 284f.", "author": "", "orig_id": 1415225}}, {"model": "metainfo.source", "pk": 12906, "fields": {"orig_filename": "Kelemen_Imre_1746_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1415226}}, {"model": "metainfo.source", "pk": 12907, "fields": {"orig_filename": "Keler_Albert-Paul_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1413935}}, {"model": "metainfo.source", "pk": 12908, "fields": {"orig_filename": "Keleti_Gusztav-Frigyes_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285", "author": "", "orig_id": 1413936}}, {"model": "metainfo.source", "pk": 12909, "fields": {"orig_filename": "Keleti_Karoly_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 285f.", "author": "", "orig_id": 1413937}}, {"model": "metainfo.source", "pk": 12910, "fields": {"orig_filename": "Kellermann_Georg_1827_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413951}}, {"model": "metainfo.source", "pk": 12911, "fields": {"orig_filename": "Keller_Alfred_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286f.", "author": "", "orig_id": 1413941}}, {"model": "metainfo.source", "pk": 12912, "fields": {"orig_filename": "Keller_Franz-Carl_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287", "author": "", "orig_id": 1413942}}, {"model": "metainfo.source", "pk": 12913, "fields": {"orig_filename": "Keller_Gustav_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287", "author": "", "orig_id": 1413943}}, {"model": "metainfo.source", "pk": 12914, "fields": {"orig_filename": "Keller_Heinrich_1866_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 287f.", "author": "", "orig_id": 1413944}}, {"model": "metainfo.source", "pk": 12915, "fields": {"orig_filename": "Keller_Karl-Ludwig-Adam_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 288", "author": "", "orig_id": 1413945}}, {"model": "metainfo.source", "pk": 12916, "fields": {"orig_filename": "Keller_Konstantin_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413946}}, {"model": "metainfo.source", "pk": 12917, "fields": {"orig_filename": "Keller_Otto_1838_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413947}}, {"model": "metainfo.source", "pk": 12918, "fields": {"orig_filename": "Keller_Otto_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413948}}, {"model": "metainfo.source", "pk": 12919, "fields": {"orig_filename": "Keller_Rosa_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 289", "author": "", "orig_id": 1413949}}, {"model": "metainfo.source", "pk": 12920, "fields": {"orig_filename": "Keller_Seraphin_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413950}}, {"model": "metainfo.source", "pk": 12921, "fields": {"orig_filename": "Kelle_Carl_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286", "author": "", "orig_id": 1413938}}, {"model": "metainfo.source", "pk": 12922, "fields": {"orig_filename": "Kelle_Johann_1828_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 286", "author": "", "orig_id": 1413939}}, {"model": "metainfo.source", "pk": 12923, "fields": {"orig_filename": "Kellner-Koellenstein_Friedrich-Marcus_1802_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 291", "author": "", "orig_id": 1413954}}, {"model": "metainfo.source", "pk": 12924, "fields": {"orig_filename": "Kellner_Karl_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290", "author": "", "orig_id": 1413952}}, {"model": "metainfo.source", "pk": 12925, "fields": {"orig_filename": "Kellner_Leon_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 290f.", "author": "", "orig_id": 1413953}}, {"model": "metainfo.source", "pk": 12926, "fields": {"orig_filename": "Kelsen_Hans_1881_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1452604}}, {"model": "metainfo.source", "pk": 12927, "fields": {"orig_filename": "Kematmueller_Heinrich-Nikolaus_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 291f.", "author": "", "orig_id": 1413955}}, {"model": "metainfo.source", "pk": 12928, "fields": {"orig_filename": "Kemenater_Peter-Johann_1783_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1413956}}, {"model": "metainfo.source", "pk": 12929, "fields": {"orig_filename": "Kemendy_Jenoe_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1413957}}, {"model": "metainfo.source", "pk": 12930, "fields": {"orig_filename": "Kemeny_Jozsef_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292", "author": "", "orig_id": 1414028}}, {"model": "metainfo.source", "pk": 12931, "fields": {"orig_filename": "Kemeny_Zsigmond_1814_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 292f.", "author": "", "orig_id": 1414029}}, {"model": "metainfo.source", "pk": 12932, "fields": {"orig_filename": "Kempen-Fichtenstamm_Johann-Franz_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414030}}, {"model": "metainfo.source", "pk": 12933, "fields": {"orig_filename": "Kempf_Julije_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414031}}, {"model": "metainfo.source", "pk": 12934, "fields": {"orig_filename": "Kenda_Josip_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293", "author": "", "orig_id": 1414032}}, {"model": "metainfo.source", "pk": 12935, "fields": {"orig_filename": "Kenda_Josip_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 293f.", "author": "", "orig_id": 1414033}}, {"model": "metainfo.source", "pk": 12936, "fields": {"orig_filename": "Kende_Oskar_1881_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414034}}, {"model": "metainfo.source", "pk": 12937, "fields": {"orig_filename": "Kendler_Rudolf_1813_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414037}}, {"model": "metainfo.source", "pk": 12938, "fields": {"orig_filename": "Kengelac_Emilijan_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414038}}, {"model": "metainfo.source", "pk": 12939, "fields": {"orig_filename": "Kengelac_Pavao_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294", "author": "", "orig_id": 1414039}}, {"model": "metainfo.source", "pk": 12940, "fields": {"orig_filename": "Kenner_Anton_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 294f.", "author": "", "orig_id": 1414040}}, {"model": "metainfo.source", "pk": 12941, "fields": {"orig_filename": "Kenner_Friedrich_1834_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 295", "author": "", "orig_id": 1414041}}, {"model": "metainfo.source", "pk": 12942, "fields": {"orig_filename": "Kenner_Joseph_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 295f.", "author": "", "orig_id": 1414042}}, {"model": "metainfo.source", "pk": 12943, "fields": {"orig_filename": "Kennessey_Bela_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414043}}, {"model": "metainfo.source", "pk": 12944, "fields": {"orig_filename": "Kepka_Karel-Hugo_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414044}}, {"model": "metainfo.source", "pk": 12945, "fields": {"orig_filename": "Keppler_Zoelestin_1784_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414045}}, {"model": "metainfo.source", "pk": 12946, "fields": {"orig_filename": "Kepplinger_Josef_1849_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296", "author": "", "orig_id": 1414046}}, {"model": "metainfo.source", "pk": 12947, "fields": {"orig_filename": "Kerausch_Josef_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 296f.", "author": "", "orig_id": 1414047}}, {"model": "metainfo.source", "pk": 12948, "fields": {"orig_filename": "Kerber_Erwin_1891_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297", "author": "", "orig_id": 1414048}}, {"model": "metainfo.source", "pk": 12949, "fields": {"orig_filename": "Kerber_Hermann_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297", "author": "", "orig_id": 1414115}}, {"model": "metainfo.source", "pk": 12950, "fields": {"orig_filename": "Kerchnawe_Hugo_1872_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 297f.", "author": "", "orig_id": 1414116}}, {"model": "metainfo.source", "pk": 12951, "fields": {"orig_filename": "Kerekes_Ferenc_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298", "author": "", "orig_id": 1414117}}, {"model": "metainfo.source", "pk": 12952, "fields": {"orig_filename": "Kerer_Johann_1808_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298", "author": "", "orig_id": 1414118}}, {"model": "metainfo.source", "pk": 12953, "fields": {"orig_filename": "Keresztes_Jozsef_1846_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 298f.", "author": "", "orig_id": 1414119}}, {"model": "metainfo.source", "pk": 12954, "fields": {"orig_filename": "Kerhart_Oldrich_1895_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414120}}, {"model": "metainfo.source", "pk": 12955, "fields": {"orig_filename": "Kerkapoly_Karoly_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414121}}, {"model": "metainfo.source", "pk": 12956, "fields": {"orig_filename": "Kerl_Wilhelm_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299", "author": "", "orig_id": 1414122}}, {"model": "metainfo.source", "pk": 12957, "fields": {"orig_filename": "Kermauner_Fritz_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 299f.", "author": "", "orig_id": 1414123}}, {"model": "metainfo.source", "pk": 12958, "fields": {"orig_filename": "Kermavner_Valentin_1835_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414125}}, {"model": "metainfo.source", "pk": 12959, "fields": {"orig_filename": "Kern-Kernburg_Josef-Theodor_1785_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302", "author": "", "orig_id": 1414133}}, {"model": "metainfo.source", "pk": 12960, "fields": {"orig_filename": "Kerner-Marilaun_Anton_1831_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302ff.", "author": "", "orig_id": 1414201}}, {"model": "metainfo.source", "pk": 12961, "fields": {"orig_filename": "Kerner-Marilaun_Fritz_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304", "author": "", "orig_id": 1414202}}, {"model": "metainfo.source", "pk": 12962, "fields": {"orig_filename": "Kerner_Josef-Anton_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 302", "author": "", "orig_id": 1414200}}, {"model": "metainfo.source", "pk": 12963, "fields": {"orig_filename": "Kernic_Anka_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304", "author": "", "orig_id": 1414203}}, {"model": "metainfo.source", "pk": 12964, "fields": {"orig_filename": "Kernic_Beatrix_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 304f.", "author": "", "orig_id": 1414204}}, {"model": "metainfo.source", "pk": 12965, "fields": {"orig_filename": "Kernstock_Ernst_1852_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 305", "author": "", "orig_id": 1414205}}, {"model": "metainfo.source", "pk": 12966, "fields": {"orig_filename": "Kernstock_Ottokar_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 305f.", "author": "", "orig_id": 1414206}}, {"model": "metainfo.source", "pk": 12967, "fields": {"orig_filename": "Kern_Adolf_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414126}}, {"model": "metainfo.source", "pk": 12968, "fields": {"orig_filename": "Kern_Hermann_1838_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414127}}, {"model": "metainfo.source", "pk": 12969, "fields": {"orig_filename": "Kern_Josef_1790_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 300", "author": "", "orig_id": 1414128}}, {"model": "metainfo.source", "pk": 12970, "fields": {"orig_filename": "Kern_Josef_1856_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301", "author": "", "orig_id": 1414129}}, {"model": "metainfo.source", "pk": 12971, "fields": {"orig_filename": "Kern_Matthaeus_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301", "author": "", "orig_id": 1414131}}, {"model": "metainfo.source", "pk": 12972, "fields": {"orig_filename": "Kern_Vinzenz_1760_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 301f.", "author": "", "orig_id": 1414132}}, {"model": "metainfo.source", "pk": 12973, "fields": {"orig_filename": "Kerpely-Krassai_Antal_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306", "author": "", "orig_id": 1414208}}, {"model": "metainfo.source", "pk": 12974, "fields": {"orig_filename": "Kerpely-Krassai_Anton_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306f.", "author": "", "orig_id": 1414209}}, {"model": "metainfo.source", "pk": 12975, "fields": {"orig_filename": "Kerpel_Leopold_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 306", "author": "", "orig_id": 1414207}}, {"model": "metainfo.source", "pk": 12976, "fields": {"orig_filename": "Kerpen_Wilhelm_1741_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414210}}, {"model": "metainfo.source", "pk": 12977, "fields": {"orig_filename": "Kerschbaumer_Anton_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307f.", "author": "", "orig_id": 1414213}}, {"model": "metainfo.source", "pk": 12978, "fields": {"orig_filename": "Kerschbaumer_Richard_1887_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308", "author": "", "orig_id": 1414214}}, {"model": "metainfo.source", "pk": 12979, "fields": {"orig_filename": "Kerschbaumer_Rosa_1854_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308", "author": "", "orig_id": 1414215}}, {"model": "metainfo.source", "pk": 12980, "fields": {"orig_filename": "Kerschbaum_Hans_1887_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414212}}, {"model": "metainfo.source", "pk": 12981, "fields": {"orig_filename": "Kerschner_Ludwig_1859_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 308f.", "author": "", "orig_id": 1414216}}, {"model": "metainfo.source", "pk": 12982, "fields": {"orig_filename": "Kersch_Ferenc_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 307", "author": "", "orig_id": 1414211}}, {"model": "metainfo.source", "pk": 12983, "fields": {"orig_filename": "Kersnik_Janko_1852_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414217}}, {"model": "metainfo.source", "pk": 12984, "fields": {"orig_filename": "Kerstan_Karl-Ludwig-Ferdinand_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414218}}, {"model": "metainfo.source", "pk": 12985, "fields": {"orig_filename": "Kertbeny_Imre-Maria_1825_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309", "author": "", "orig_id": 1414219}}, {"model": "metainfo.source", "pk": 12986, "fields": {"orig_filename": "Kertesz_Adolf_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 309f.", "author": "", "orig_id": 1414285}}, {"model": "metainfo.source", "pk": 12987, "fields": {"orig_filename": "Kesanski_Jovan_1879_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414286}}, {"model": "metainfo.source", "pk": 12988, "fields": {"orig_filename": "Keschmann_Anton_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414287}}, {"model": "metainfo.source", "pk": 12989, "fields": {"orig_filename": "Kessel_Johannes_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 310", "author": "", "orig_id": 1414288}}, {"model": "metainfo.source", "pk": 12990, "fields": {"orig_filename": "Kessler_Engelbert_1834_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311", "author": "", "orig_id": 1414289}}, {"model": "metainfo.source", "pk": 12991, "fields": {"orig_filename": "Kesslitz_Wilhelm_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311", "author": "", "orig_id": 1414290}}, {"model": "metainfo.source", "pk": 12992, "fields": {"orig_filename": "Kestercanek_Franjo_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 311f.", "author": "", "orig_id": 1414291}}, {"model": "metainfo.source", "pk": 12993, "fields": {"orig_filename": "Kestler_Martin_1808_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312", "author": "", "orig_id": 1414292}}, {"model": "metainfo.source", "pk": 12994, "fields": {"orig_filename": "Kestranek_Paul_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312", "author": "", "orig_id": 1414293}}, {"model": "metainfo.source", "pk": 12995, "fields": {"orig_filename": "Ketly-Csurgo_Karoly_1839_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 312f.", "author": "", "orig_id": 1414294}}, {"model": "metainfo.source", "pk": 12996, "fields": {"orig_filename": "Ketrzynski_Wojciech_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 313", "author": "", "orig_id": 1414295}}, {"model": "metainfo.source", "pk": 12997, "fields": {"orig_filename": "Kettel_Johann-Georg_1789_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 314", "author": "", "orig_id": 1414297}}, {"model": "metainfo.source", "pk": 12998, "fields": {"orig_filename": "Kette_Dragotin_1876_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 14, 1964), S. 313f.", "author": "", "orig_id": 1414296}}, {"model": "metainfo.source", "pk": 12999, "fields": {"orig_filename": "Kaserer_Josef_1842_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414791}}, {"model": "metainfo.source", "pk": 13000, "fields": {"orig_filename": "Kaserer_Philipp_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414792}}, {"model": "metainfo.source", "pk": 13001, "fields": {"orig_filename": "Kaser_Kurt_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414788}}, {"model": "metainfo.source", "pk": 13002, "fields": {"orig_filename": "Kaser_Ludwig_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251f.", "author": "", "orig_id": 1414789}}, {"model": "metainfo.source", "pk": 13003, "fields": {"orig_filename": "Kashmann_Guiseppe_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252", "author": "", "orig_id": 1414794}}, {"model": "metainfo.source", "pk": 13004, "fields": {"orig_filename": "Kaska_Franz_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 252f.", "author": "", "orig_id": 1414795}}, {"model": "metainfo.source", "pk": 13005, "fields": {"orig_filename": "Kaska_Jan_1810_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414796}}, {"model": "metainfo.source", "pk": 13006, "fields": {"orig_filename": "Kasparides_Eduard_1858_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253f.", "author": "", "orig_id": 1414867}}, {"model": "metainfo.source", "pk": 13007, "fields": {"orig_filename": "Kaspar_Adolf_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414798}}, {"model": "metainfo.source", "pk": 13008, "fields": {"orig_filename": "Kaspar_Fritz_1885_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 253", "author": "", "orig_id": 1414799}}, {"model": "metainfo.source", "pk": 13009, "fields": {"orig_filename": "Kasperowski_Adam_1792_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254f.", "author": "", "orig_id": 1414870}}, {"model": "metainfo.source", "pk": 13010, "fields": {"orig_filename": "Kasper_Adolf_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254", "author": "", "orig_id": 1414868}}, {"model": "metainfo.source", "pk": 13011, "fields": {"orig_filename": "Kasper_Ludwig_1893_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 254", "author": "", "orig_id": 1414869}}, {"model": "metainfo.source", "pk": 13012, "fields": {"orig_filename": "Kaspret_Anton_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 255", "author": "", "orig_id": 1414871}}, {"model": "metainfo.source", "pk": 13013, "fields": {"orig_filename": "Kasprowicz_Jan_1860_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 255f.", "author": "", "orig_id": 1414872}}, {"model": "metainfo.source", "pk": 13014, "fields": {"orig_filename": "Kasprowicz_Kajetan_1858_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414873}}, {"model": "metainfo.source", "pk": 13015, "fields": {"orig_filename": "Kasselik_Ferenc_1800_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414874}}, {"model": "metainfo.source", "pk": 13016, "fields": {"orig_filename": "Kassin_Josef_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414875}}, {"model": "metainfo.source", "pk": 13017, "fields": {"orig_filename": "Kassowitz-Cvijic_Antonija_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414878}}, {"model": "metainfo.source", "pk": 13018, "fields": {"orig_filename": "Kassowitz_Emilie_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256", "author": "", "orig_id": 1414876}}, {"model": "metainfo.source", "pk": 13019, "fields": {"orig_filename": "Kassowitz_Max_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 256f.", "author": "", "orig_id": 1414877}}, {"model": "metainfo.source", "pk": 13020, "fields": {"orig_filename": "Kast-Ebelsberg_Michael_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414879}}, {"model": "metainfo.source", "pk": 13021, "fields": {"orig_filename": "Kastelic_Jakob_1897_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257", "author": "", "orig_id": 1414880}}, {"model": "metainfo.source", "pk": 13022, "fields": {"orig_filename": "Kastelic_Miha_1796_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 257f.", "author": "", "orig_id": 1414881}}, {"model": "metainfo.source", "pk": 13023, "fields": {"orig_filename": "Kastil_Alfred_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414882}}, {"model": "metainfo.source", "pk": 13024, "fields": {"orig_filename": "Kastlunger_Peter_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414883}}, {"model": "metainfo.source", "pk": 13025, "fields": {"orig_filename": "Kastner-Michalitschke_Else_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 260", "author": "", "orig_id": 1414956}}, {"model": "metainfo.source", "pk": 13026, "fields": {"orig_filename": "Kastner_Alfred_1870_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258", "author": "", "orig_id": 1414884}}, {"model": "metainfo.source", "pk": 13027, "fields": {"orig_filename": "Kastner_Eduard-Fedor_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 258f.", "author": "", "orig_id": 1414885}}, {"model": "metainfo.source", "pk": 13028, "fields": {"orig_filename": "Kastner_Emerich_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414886}}, {"model": "metainfo.source", "pk": 13029, "fields": {"orig_filename": "Kastner_Johann-Ev_1772_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414887}}, {"model": "metainfo.source", "pk": 13030, "fields": {"orig_filename": "Kastner_Josef_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414953}}, {"model": "metainfo.source", "pk": 13031, "fields": {"orig_filename": "Kastner_Josef_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259", "author": "", "orig_id": 1414954}}, {"model": "metainfo.source", "pk": 13032, "fields": {"orig_filename": "Kastner_Karl_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 259f.", "author": "", "orig_id": 1414955}}, {"model": "metainfo.source", "pk": 13033, "fields": {"orig_filename": "Kasumovic_Ivan_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 260f.", "author": "", "orig_id": 1414957}}, {"model": "metainfo.source", "pk": 13034, "fields": {"orig_filename": "Kasznica_Jozef_1834_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414958}}, {"model": "metainfo.source", "pk": 13035, "fields": {"orig_filename": "Kas_Igo_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414783}}, {"model": "metainfo.source", "pk": 13036, "fields": {"orig_filename": "Katalinic_Ivan_1779_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414959}}, {"model": "metainfo.source", "pk": 13037, "fields": {"orig_filename": "Katancic_Matija-Petar_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261", "author": "", "orig_id": 1414960}}, {"model": "metainfo.source", "pk": 13038, "fields": {"orig_filename": "Katerdjian_Josef_1820_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 261f.", "author": "", "orig_id": 1414961}}, {"model": "metainfo.source", "pk": 13039, "fields": {"orig_filename": "Katholicky_Marie_1849_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262", "author": "", "orig_id": 1414962}}, {"model": "metainfo.source", "pk": 13040, "fields": {"orig_filename": "Kathrein_Theodor_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262", "author": "", "orig_id": 1414963}}, {"model": "metainfo.source", "pk": 13041, "fields": {"orig_filename": "Katona_Jozsef_1791_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 262f.", "author": "", "orig_id": 1414964}}, {"model": "metainfo.source", "pk": 13042, "fields": {"orig_filename": "Katscher_Berta_1860_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414965}}, {"model": "metainfo.source", "pk": 13043, "fields": {"orig_filename": "Katscher_Leopold_1853_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414966}}, {"model": "metainfo.source", "pk": 13044, "fields": {"orig_filename": "Katscher_Max_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263", "author": "", "orig_id": 1414967}}, {"model": "metainfo.source", "pk": 13045, "fields": {"orig_filename": "Katschthaler_Eduard_1857_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 263f.", "author": "", "orig_id": 1414968}}, {"model": "metainfo.source", "pk": 13046, "fields": {"orig_filename": "Katschthaler_Johann-Bapt_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414969}}, {"model": "metainfo.source", "pk": 13047, "fields": {"orig_filename": "Katunaric_Ante_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414970}}, {"model": "metainfo.source", "pk": 13048, "fields": {"orig_filename": "Katuric_Mihajlo_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264", "author": "", "orig_id": 1414971}}, {"model": "metainfo.source", "pk": 13049, "fields": {"orig_filename": "Katzenellenbogen_Oskar_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265", "author": "", "orig_id": 1414973}}, {"model": "metainfo.source", "pk": 13050, "fields": {"orig_filename": "Katzer_Anton_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265", "author": "", "orig_id": 1414974}}, {"model": "metainfo.source", "pk": 13051, "fields": {"orig_filename": "Katzer_Friedrich-Xaver_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415035}}, {"model": "metainfo.source", "pk": 13052, "fields": {"orig_filename": "Katzer_Friedrich_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 265f.", "author": "", "orig_id": 1415034}}, {"model": "metainfo.source", "pk": 13053, "fields": {"orig_filename": "Katzer_Ignaz_1785_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415036}}, {"model": "metainfo.source", "pk": 13054, "fields": {"orig_filename": "Katzinger_Franz-Sal_1884_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266", "author": "", "orig_id": 1415037}}, {"model": "metainfo.source", "pk": 13055, "fields": {"orig_filename": "Katzler_Vinzenz_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 266f.", "author": "", "orig_id": 1415038}}, {"model": "metainfo.source", "pk": 13056, "fields": {"orig_filename": "Katzmayr_Richard_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415039}}, {"model": "metainfo.source", "pk": 13057, "fields": {"orig_filename": "Katzung_Rudolf_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415040}}, {"model": "metainfo.source", "pk": 13058, "fields": {"orig_filename": "Katz_Hermann_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 264f.", "author": "", "orig_id": 1414972}}, {"model": "metainfo.source", "pk": 13059, "fields": {"orig_filename": "Kaucic_Fridolin_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267", "author": "", "orig_id": 1415041}}, {"model": "metainfo.source", "pk": 13060, "fields": {"orig_filename": "Kauders_Otto_1893_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 267f.", "author": "", "orig_id": 1415042}}, {"model": "metainfo.source", "pk": 13061, "fields": {"orig_filename": "Kauer_Anton_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 268", "author": "", "orig_id": 1415043}}, {"model": "metainfo.source", "pk": 13062, "fields": {"orig_filename": "Kauer_Ferdinand_1751_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 268f.", "author": "", "orig_id": 1415044}}, {"model": "metainfo.source", "pk": 13063, "fields": {"orig_filename": "Kauer_Robert_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269", "author": "", "orig_id": 1415045}}, {"model": "metainfo.source", "pk": 13064, "fields": {"orig_filename": "Kauffung_Richard_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269", "author": "", "orig_id": 1415046}}, {"model": "metainfo.source", "pk": 13065, "fields": {"orig_filename": "Kaufmann_Adolf_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 269f.", "author": "", "orig_id": 1415047}}, {"model": "metainfo.source", "pk": 13066, "fields": {"orig_filename": "Kaufmann_David_1852_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270", "author": "", "orig_id": 1415048}}, {"model": "metainfo.source", "pk": 13067, "fields": {"orig_filename": "Kaufmann_Eugenie_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270", "author": "", "orig_id": 1415049}}, {"model": "metainfo.source", "pk": 13068, "fields": {"orig_filename": "Kaufmann_Felix_1895_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 270f.", "author": "", "orig_id": 1415050}}, {"model": "metainfo.source", "pk": 13069, "fields": {"orig_filename": "Kaufmann_Isidor_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 271", "author": "", "orig_id": 1415051}}, {"model": "metainfo.source", "pk": 13070, "fields": {"orig_filename": "Kaufmann_Johann-Peter_1764_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 271f.", "author": "", "orig_id": 1415052}}, {"model": "metainfo.source", "pk": 13071, "fields": {"orig_filename": "Kaufmann_Rudolf_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415053}}, {"model": "metainfo.source", "pk": 13072, "fields": {"orig_filename": "Kaulich_Josef_1827_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415054}}, {"model": "metainfo.source", "pk": 13073, "fields": {"orig_filename": "Kaulich_Wilhelm_1833_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272", "author": "", "orig_id": 1415055}}, {"model": "metainfo.source", "pk": 13074, "fields": {"orig_filename": "Kauperz_Johann-Veit_1741_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273", "author": "", "orig_id": 1415117}}, {"model": "metainfo.source", "pk": 13075, "fields": {"orig_filename": "Kaup_Ignaz_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 272f.", "author": "", "orig_id": 1415056}}, {"model": "metainfo.source", "pk": 13076, "fields": {"orig_filename": "Kauser_Jozsef_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273", "author": "", "orig_id": 1415118}}, {"model": "metainfo.source", "pk": 13077, "fields": {"orig_filename": "Kautsch_Heinrich_1859_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 273f.", "author": "", "orig_id": 1415119}}, {"model": "metainfo.source", "pk": 13078, "fields": {"orig_filename": "Kautsch_Jakob_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415120}}, {"model": "metainfo.source", "pk": 13079, "fields": {"orig_filename": "Kautsky_Jan_1827_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274", "author": "", "orig_id": 1415124}}, {"model": "metainfo.source", "pk": 13080, "fields": {"orig_filename": "Kautsky_Karl_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 274f.", "author": "", "orig_id": 1415122}}, {"model": "metainfo.source", "pk": 13081, "fields": {"orig_filename": "Kautsky_Wilhelmine_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 275f.", "author": "", "orig_id": 1415123}}, {"model": "metainfo.source", "pk": 13082, "fields": {"orig_filename": "Kautz_Gyula_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415125}}, {"model": "metainfo.source", "pk": 13083, "fields": {"orig_filename": "Kavan_Frantisek_1866_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415126}}, {"model": "metainfo.source", "pk": 13084, "fields": {"orig_filename": "Kavcic_Andrej_1752_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276", "author": "", "orig_id": 1415127}}, {"model": "metainfo.source", "pk": 13085, "fields": {"orig_filename": "Kavcic_Jakob_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 276f.", "author": "", "orig_id": 1415128}}, {"model": "metainfo.source", "pk": 13086, "fields": {"orig_filename": "Kavcic_Matija_1802_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415129}}, {"model": "metainfo.source", "pk": 13087, "fields": {"orig_filename": "Kavcnik_Ivan_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415130}}, {"model": "metainfo.source", "pk": 13088, "fields": {"orig_filename": "Kaym_Franz_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277", "author": "", "orig_id": 1415131}}, {"model": "metainfo.source", "pk": 13089, "fields": {"orig_filename": "Kayser_Karl-Gangolf_1837_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 277f.", "author": "", "orig_id": 1415132}}, {"model": "metainfo.source", "pk": 13090, "fields": {"orig_filename": "Kazali_Pasko-Antun_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278", "author": "", "orig_id": 1415133}}, {"model": "metainfo.source", "pk": 13091, "fields": {"orig_filename": "Kazinczy_Ferenc_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278", "author": "", "orig_id": 1415134}}, {"model": "metainfo.source", "pk": 13092, "fields": {"orig_filename": "Kazinczy_Gabor_1818_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 278f.", "author": "", "orig_id": 1415135}}, {"model": "metainfo.source", "pk": 13093, "fields": {"orig_filename": "Kaznacic_Antun_1784_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279", "author": "", "orig_id": 1415205}}, {"model": "metainfo.source", "pk": 13094, "fields": {"orig_filename": "Kaznacic_Ivan-August_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279", "author": "", "orig_id": 1415206}}, {"model": "metainfo.source", "pk": 13095, "fields": {"orig_filename": "Kecskemethy-Csapo_Istvan_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280", "author": "", "orig_id": 1415208}}, {"model": "metainfo.source", "pk": 13096, "fields": {"orig_filename": "Kecskemethy_Aurel_1827_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 279f.", "author": "", "orig_id": 1415207}}, {"model": "metainfo.source", "pk": 13097, "fields": {"orig_filename": "Kedzior_Andrzej_1851_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280", "author": "", "orig_id": 1415209}}, {"model": "metainfo.source", "pk": 13098, "fields": {"orig_filename": "Keess_Stephan_1774_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415211}}, {"model": "metainfo.source", "pk": 13099, "fields": {"orig_filename": "Kees_Georg_1822_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 280f.", "author": "", "orig_id": 1415210}}, {"model": "metainfo.source", "pk": 13100, "fields": {"orig_filename": "Keglevich-Buzin_Gabor_1784_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415212}}, {"model": "metainfo.source", "pk": 13101, "fields": {"orig_filename": "Keglevich-Buzin_Istvan_1840_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415213}}, {"model": "metainfo.source", "pk": 13102, "fields": {"orig_filename": "Keiblinger_Ignaz_1797_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 281", "author": "", "orig_id": 1415214}}, {"model": "metainfo.source", "pk": 13103, "fields": {"orig_filename": "Kanitz_Luise_1908_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1440187}}, {"model": "metainfo.source", "pk": 13104, "fields": {"orig_filename": "Kanitz_Otto-Felix_1894_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414360}}, {"model": "metainfo.source", "pk": 13105, "fields": {"orig_filename": "Kanka_Daniel_1776_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414361}}, {"model": "metainfo.source", "pk": 13106, "fields": {"orig_filename": "Kanka_Johann-Nep_1772_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216", "author": "", "orig_id": 1414362}}, {"model": "metainfo.source", "pk": 13107, "fields": {"orig_filename": "Kanne_Friedrich-August_1778_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217", "author": "", "orig_id": 1414364}}, {"model": "metainfo.source", "pk": 13108, "fields": {"orig_filename": "Kann_August_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 216f.", "author": "", "orig_id": 1414363}}, {"model": "metainfo.source", "pk": 13109, "fields": {"orig_filename": "Kanski_Mikolaj_1817_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217", "author": "", "orig_id": 1414365}}, {"model": "metainfo.source", "pk": 13110, "fields": {"orig_filename": "Kantner_Karl_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 217f.", "author": "", "orig_id": 1414422}}, {"model": "metainfo.source", "pk": 13111, "fields": {"orig_filename": "Kantor_Georg_1893_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414423}}, {"model": "metainfo.source", "pk": 13112, "fields": {"orig_filename": "Kanyaro_Ferenc_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 218", "author": "", "orig_id": 1414425}}, {"model": "metainfo.source", "pk": 13113, "fields": {"orig_filename": "Kapeller_Josef_1796_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414427}}, {"model": "metainfo.source", "pk": 13114, "fields": {"orig_filename": "Kapeller_Karl_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414428}}, {"model": "metainfo.source", "pk": 13115, "fields": {"orig_filename": "Kapferer_Johann-Peter_1820_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219", "author": "", "orig_id": 1414429}}, {"model": "metainfo.source", "pk": 13116, "fields": {"orig_filename": "Kapferer_Josef-Simon_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 219f.", "author": "", "orig_id": 1414430}}, {"model": "metainfo.source", "pk": 13117, "fields": {"orig_filename": "Kapferer_Karl_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220", "author": "", "orig_id": 1414431}}, {"model": "metainfo.source", "pk": 13118, "fields": {"orig_filename": "Kapff_Franziska_1849_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220", "author": "", "orig_id": 1414432}}, {"model": "metainfo.source", "pk": 13119, "fields": {"orig_filename": "Kapic_Juraj_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 220f.", "author": "", "orig_id": 1414433}}, {"model": "metainfo.source", "pk": 13120, "fields": {"orig_filename": "Kaplan_Rosina_1869_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 221", "author": "", "orig_id": 1414434}}, {"model": "metainfo.source", "pk": 13121, "fields": {"orig_filename": "Kaplan_Viktor_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 221f.", "author": "", "orig_id": 1414435}}, {"model": "metainfo.source", "pk": 13122, "fields": {"orig_filename": "Kaposi_Moritz_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 222", "author": "", "orig_id": 1414436}}, {"model": "metainfo.source", "pk": 13123, "fields": {"orig_filename": "Kappel-Savenau_Karl-Maria_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224", "author": "", "orig_id": 1414440}}, {"model": "metainfo.source", "pk": 13124, "fields": {"orig_filename": "Kappel-Savenau_Vincenz-Ludwig_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224", "author": "", "orig_id": 1414441}}, {"model": "metainfo.source", "pk": 13125, "fields": {"orig_filename": "Kappelmacher_Alfred_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 224f.", "author": "", "orig_id": 1414442}}, {"model": "metainfo.source", "pk": 13126, "fields": {"orig_filename": "Kappel_Fritz_1895_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 223", "author": "", "orig_id": 1414439}}, {"model": "metainfo.source", "pk": 13127, "fields": {"orig_filename": "Kapper_Anton_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 225", "author": "", "orig_id": 1414443}}, {"model": "metainfo.source", "pk": 13128, "fields": {"orig_filename": "Kapper_Siegfried_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 225", "author": "", "orig_id": 1414444}}, {"model": "metainfo.source", "pk": 13129, "fields": {"orig_filename": "Kappler_Adolf_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414445}}, {"model": "metainfo.source", "pk": 13130, "fields": {"orig_filename": "Kapp_Gisbert_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 222f.", "author": "", "orig_id": 1414437}}, {"model": "metainfo.source", "pk": 13131, "fields": {"orig_filename": "Kapp_Gustav_1831_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 223", "author": "", "orig_id": 1414438}}, {"model": "metainfo.source", "pk": 13132, "fields": {"orig_filename": "Kapral_Vaclav_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414518}}, {"model": "metainfo.source", "pk": 13133, "fields": {"orig_filename": "Kapras_Jan_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414519}}, {"model": "metainfo.source", "pk": 13134, "fields": {"orig_filename": "Kapri_Mathilde_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226", "author": "", "orig_id": 1414520}}, {"model": "metainfo.source", "pk": 13135, "fields": {"orig_filename": "Kapri_Rudolf_1887_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 226f.", "author": "", "orig_id": 1414521}}, {"model": "metainfo.source", "pk": 13136, "fields": {"orig_filename": "Kapsamer_Georg_1871_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 227", "author": "", "orig_id": 1414522}}, {"model": "metainfo.source", "pk": 13137, "fields": {"orig_filename": "Kapsch_Georg_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 227f.", "author": "", "orig_id": 1414523}}, {"model": "metainfo.source", "pk": 13138, "fields": {"orig_filename": "Kapuscinski_Jozef_1818_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 228", "author": "", "orig_id": 1414524}}, {"model": "metainfo.source", "pk": 13139, "fields": {"orig_filename": "Karabacek_Joseph_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 228f.", "author": "", "orig_id": 1414525}}, {"model": "metainfo.source", "pk": 13140, "fields": {"orig_filename": "Karacson_Mihaly_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229", "author": "", "orig_id": 1414527}}, {"model": "metainfo.source", "pk": 13141, "fields": {"orig_filename": "Karacs_Ferenc_1770_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229", "author": "", "orig_id": 1414526}}, {"model": "metainfo.source", "pk": 13142, "fields": {"orig_filename": "Karadzic_Vuk-Stefanovic_1787_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 229f.", "author": "", "orig_id": 1414528}}, {"model": "metainfo.source", "pk": 13143, "fields": {"orig_filename": "Karafiat_Jan_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230", "author": "", "orig_id": 1414529}}, {"model": "metainfo.source", "pk": 13144, "fields": {"orig_filename": "Karajan_Max-Theodor_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230", "author": "", "orig_id": 1414530}}, {"model": "metainfo.source", "pk": 13145, "fields": {"orig_filename": "Karajan_Theodor-Georg_1810_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 230f.", "author": "", "orig_id": 1414531}}, {"model": "metainfo.source", "pk": 13146, "fields": {"orig_filename": "Karaman_Luka_1855_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 231", "author": "", "orig_id": 1414532}}, {"model": "metainfo.source", "pk": 13147, "fields": {"orig_filename": "Karasek_Josef_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232", "author": "", "orig_id": 1414534}}, {"model": "metainfo.source", "pk": 13148, "fields": {"orig_filename": "Karas_Vjekoslav_1829_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 231f.", "author": "", "orig_id": 1414533}}, {"model": "metainfo.source", "pk": 13149, "fields": {"orig_filename": "Karbowiak_Antoni_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232", "author": "", "orig_id": 1414535}}, {"model": "metainfo.source", "pk": 13150, "fields": {"orig_filename": "Karczag_Wilhelm_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 232f.", "author": "", "orig_id": 1414536}}, {"model": "metainfo.source", "pk": 13151, "fields": {"orig_filename": "Kardos_Gyula_1857_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414537}}, {"model": "metainfo.source", "pk": 13152, "fields": {"orig_filename": "Kardos_Janos_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414611}}, {"model": "metainfo.source", "pk": 13153, "fields": {"orig_filename": "Kareis_Josef_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414612}}, {"model": "metainfo.source", "pk": 13154, "fields": {"orig_filename": "Karell_Ludwig_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414615}}, {"model": "metainfo.source", "pk": 13155, "fields": {"orig_filename": "Karel_Eduard_1861_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233", "author": "", "orig_id": 1414613}}, {"model": "metainfo.source", "pk": 13156, "fields": {"orig_filename": "Karel_Rudolf_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 233f.", "author": "", "orig_id": 1414614}}, {"model": "metainfo.source", "pk": 13157, "fields": {"orig_filename": "Karger_Adolf_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414617}}, {"model": "metainfo.source", "pk": 13158, "fields": {"orig_filename": "Karger_Karl_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234f.", "author": "", "orig_id": 1414618}}, {"model": "metainfo.source", "pk": 13159, "fields": {"orig_filename": "Kargl_Franz_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414619}}, {"model": "metainfo.source", "pk": 13160, "fields": {"orig_filename": "Karg_Anton_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 234", "author": "", "orig_id": 1414616}}, {"model": "metainfo.source", "pk": 13161, "fields": {"orig_filename": "Karika_Janos_1808_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414620}}, {"model": "metainfo.source", "pk": 13162, "fields": {"orig_filename": "Karinger_Anton_1829_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235", "author": "", "orig_id": 1414621}}, {"model": "metainfo.source", "pk": 13163, "fields": {"orig_filename": "Karl-Ludwig_Joseph-Maria_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 240", "author": "", "orig_id": 1414626}}, {"model": "metainfo.source", "pk": 13164, "fields": {"orig_filename": "Karlic_Petar_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 240f.", "author": "", "orig_id": 1414627}}, {"model": "metainfo.source", "pk": 13165, "fields": {"orig_filename": "Karlik_Berta-Emilie_1904_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1451679}}, {"model": "metainfo.source", "pk": 13166, "fields": {"orig_filename": "Karlik_Hanus_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241", "author": "", "orig_id": 1414628}}, {"model": "metainfo.source", "pk": 13167, "fields": {"orig_filename": "Karlik_Johann_1807_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241", "author": "", "orig_id": 1414629}}, {"model": "metainfo.source", "pk": 13168, "fields": {"orig_filename": "Karlinsky_Anton-Hans_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242", "author": "", "orig_id": 1414691}}, {"model": "metainfo.source", "pk": 13169, "fields": {"orig_filename": "Karlin_Alma-Maximiliana_1889_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 241f.", "author": "", "orig_id": 1414630}}, {"model": "metainfo.source", "pk": 13170, "fields": {"orig_filename": "Karlin_Andrej_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242", "author": "", "orig_id": 1414631}}, {"model": "metainfo.source", "pk": 13171, "fields": {"orig_filename": "Karlon_Alois_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 242f.", "author": "", "orig_id": 1414692}}, {"model": "metainfo.source", "pk": 13172, "fields": {"orig_filename": "Karlon_Johann_1824_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414693}}, {"model": "metainfo.source", "pk": 13173, "fields": {"orig_filename": "Karlovszky_Bertalan_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414694}}, {"model": "metainfo.source", "pk": 13174, "fields": {"orig_filename": "Karl_Alexander_1824_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 235f.", "author": "", "orig_id": 1414622}}, {"model": "metainfo.source", "pk": 13175, "fields": {"orig_filename": "Karl_Franz-Joseph_1887_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 236ff.", "author": "", "orig_id": 1414623}}, {"model": "metainfo.source", "pk": 13176, "fields": {"orig_filename": "Karl_Heinrich-Ernst_1781_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 239", "author": "", "orig_id": 1414624}}, {"model": "metainfo.source", "pk": 13177, "fields": {"orig_filename": "Karl_Ludwig_1771_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 239f.", "author": "", "orig_id": 1414625}}, {"model": "metainfo.source", "pk": 13178, "fields": {"orig_filename": "Karman_Mor_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243", "author": "", "orig_id": 1414695}}, {"model": "metainfo.source", "pk": 13179, "fields": {"orig_filename": "Karmarsch_Karl_1803_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 243f.", "author": "", "orig_id": 1414696}}, {"model": "metainfo.source", "pk": 13180, "fields": {"orig_filename": "Karner_Lambert_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 244", "author": "", "orig_id": 1414697}}, {"model": "metainfo.source", "pk": 13181, "fields": {"orig_filename": "Karner_Leopold_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 244f.", "author": "", "orig_id": 1414698}}, {"model": "metainfo.source", "pk": 13182, "fields": {"orig_filename": "Karny_Heinrich-Hugo_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414699}}, {"model": "metainfo.source", "pk": 13183, "fields": {"orig_filename": "Karoline-Auguste__1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414701}}, {"model": "metainfo.source", "pk": 13184, "fields": {"orig_filename": "Karolyi_Alajos_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414702}}, {"model": "metainfo.source", "pk": 13185, "fields": {"orig_filename": "Karolyi_Arpad_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414703}}, {"model": "metainfo.source", "pk": 13186, "fields": {"orig_filename": "Karolyi_Gyoergy_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 246", "author": "", "orig_id": 1414704}}, {"model": "metainfo.source", "pk": 13187, "fields": {"orig_filename": "Karolyi_Istvan_1797_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414705}}, {"model": "metainfo.source", "pk": 13188, "fields": {"orig_filename": "Karolyi_Sandor_1831_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414706}}, {"model": "metainfo.source", "pk": 13189, "fields": {"orig_filename": "Karo_Ezechiel_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 245", "author": "", "orig_id": 1414700}}, {"model": "metainfo.source", "pk": 13190, "fields": {"orig_filename": "Karpath_Ludwig_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414707}}, {"model": "metainfo.source", "pk": 13191, "fields": {"orig_filename": "Karpaty_Rudolf_1857_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247", "author": "", "orig_id": 1414708}}, {"model": "metainfo.source", "pk": 13192, "fields": {"orig_filename": "Karpeles_Georges_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 247f.", "author": "", "orig_id": 1414709}}, {"model": "metainfo.source", "pk": 13193, "fields": {"orig_filename": "Karpeles_Gustav_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248", "author": "", "orig_id": 1414710}}, {"model": "metainfo.source", "pk": 13194, "fields": {"orig_filename": "Karpellus_Adolf_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248", "author": "", "orig_id": 1414711}}, {"model": "metainfo.source", "pk": 13195, "fields": {"orig_filename": "Karpf_Fritz_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 248f.", "author": "", "orig_id": 1414712}}, {"model": "metainfo.source", "pk": 13196, "fields": {"orig_filename": "Karplus_Johann-Paul_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249", "author": "", "orig_id": 1414713}}, {"model": "metainfo.source", "pk": 13197, "fields": {"orig_filename": "Karrer_Felix_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249", "author": "", "orig_id": 1414714}}, {"model": "metainfo.source", "pk": 13198, "fields": {"orig_filename": "Karsay-Teth_Sandor_1814_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 249f.", "author": "", "orig_id": 1414778}}, {"model": "metainfo.source", "pk": 13199, "fields": {"orig_filename": "Karst-Karstenwerth_Franz_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414779}}, {"model": "metainfo.source", "pk": 13200, "fields": {"orig_filename": "Kartsch_Josef_1811_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414780}}, {"model": "metainfo.source", "pk": 13201, "fields": {"orig_filename": "Karvaly_Maurus_1860_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 250", "author": "", "orig_id": 1414781}}, {"model": "metainfo.source", "pk": 13202, "fields": {"orig_filename": "Kasalovsky_Josef_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414784}}, {"model": "metainfo.source", "pk": 13203, "fields": {"orig_filename": "Kasapinovic_Svetislav_1839_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414785}}, {"model": "metainfo.source", "pk": 13204, "fields": {"orig_filename": "Kaschnitz-Weinberg_Julius_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 251", "author": "", "orig_id": 1414787}}, {"model": "metainfo.source", "pk": 13205, "fields": {"orig_filename": "Kaiser_Karl_1873_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183f.", "author": "", "orig_id": 1413930}}, {"model": "metainfo.source", "pk": 13206, "fields": {"orig_filename": "Kaiser_Karl_1914_1999.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2089969}}, {"model": "metainfo.source", "pk": 13207, "fields": {"orig_filename": "Kaiser_Koloman_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413931}}, {"model": "metainfo.source", "pk": 13208, "fields": {"orig_filename": "Kaiser_Ludwig_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413932}}, {"model": "metainfo.source", "pk": 13209, "fields": {"orig_filename": "Kaiser_Philipp_1832_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413933}}, {"model": "metainfo.source", "pk": 13210, "fields": {"orig_filename": "Kaizl_Josef_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 185f.", "author": "", "orig_id": 1414012}}, {"model": "metainfo.source", "pk": 13211, "fields": {"orig_filename": "Kakonyi-Csep-Kakony_Franz_1762_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186", "author": "", "orig_id": 1414013}}, {"model": "metainfo.source", "pk": 13212, "fields": {"orig_filename": "Kalac_Ante_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186", "author": "", "orig_id": 1414014}}, {"model": "metainfo.source", "pk": 13213, "fields": {"orig_filename": "Kalan_Andrej_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 186f.", "author": "", "orig_id": 1414015}}, {"model": "metainfo.source", "pk": 13214, "fields": {"orig_filename": "Kalbeck_Florian_1920_1996.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419671}}, {"model": "metainfo.source", "pk": 13215, "fields": {"orig_filename": "Kalbeck_Max_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 187", "author": "", "orig_id": 1414016}}, {"model": "metainfo.source", "pk": 13216, "fields": {"orig_filename": "Kalbeck_Paul-Johannes_1884_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 187f.", "author": "", "orig_id": 1414017}}, {"model": "metainfo.source", "pk": 13217, "fields": {"orig_filename": "Kalbrunner_Hermann-Josef_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188", "author": "", "orig_id": 1414018}}, {"model": "metainfo.source", "pk": 13218, "fields": {"orig_filename": "Kalchbrenner_Karl_1807_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188", "author": "", "orig_id": 1414019}}, {"model": "metainfo.source", "pk": 13219, "fields": {"orig_filename": "Kalchegger-Kalchberg_Franz_1807_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 188f.", "author": "", "orig_id": 1414020}}, {"model": "metainfo.source", "pk": 13220, "fields": {"orig_filename": "Kalchegger-Kalchberg_Johann_1765_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 189f.", "author": "", "orig_id": 1414021}}, {"model": "metainfo.source", "pk": 13221, "fields": {"orig_filename": "Kalchegger-Kalchberg_Josef_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 190f.", "author": "", "orig_id": 1414022}}, {"model": "metainfo.source", "pk": 13222, "fields": {"orig_filename": "Kalchegger-Kalchberg_Wilhelm_1807_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414023}}, {"model": "metainfo.source", "pk": 13223, "fields": {"orig_filename": "Kalcher_Anton_1800_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414024}}, {"model": "metainfo.source", "pk": 13224, "fields": {"orig_filename": "Kalcher_Severin_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191", "author": "", "orig_id": 1414025}}, {"model": "metainfo.source", "pk": 13225, "fields": {"orig_filename": "Kaldy_Adam_1763_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 191f.", "author": "", "orig_id": 1414026}}, {"model": "metainfo.source", "pk": 13226, "fields": {"orig_filename": "Kalemkiar_Gregoris_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414027}}, {"model": "metainfo.source", "pk": 13227, "fields": {"orig_filename": "Kalicki_Bernard_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 192", "author": "", "orig_id": 1414095}}, {"model": "metainfo.source", "pk": 13228, "fields": {"orig_filename": "Kalina-Jaethenstein_Mathias_1772_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193", "author": "", "orig_id": 1414097}}, {"model": "metainfo.source", "pk": 13229, "fields": {"orig_filename": "Kalina_Antoni_1846_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193", "author": "", "orig_id": 1414096}}, {"model": "metainfo.source", "pk": 13230, "fields": {"orig_filename": "Kalinka_Ernst_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 193f.", "author": "", "orig_id": 1414098}}, {"model": "metainfo.source", "pk": 13231, "fields": {"orig_filename": "Kalinka_Walerian_1826_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 194", "author": "", "orig_id": 1414099}}, {"model": "metainfo.source", "pk": 13232, "fields": {"orig_filename": "Kalister_Janez-Nep_1806_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 194f.", "author": "", "orig_id": 1414100}}, {"model": "metainfo.source", "pk": 13233, "fields": {"orig_filename": "Kaliwoda_Franz_1820_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414101}}, {"model": "metainfo.source", "pk": 13234, "fields": {"orig_filename": "Kalkum_Maurus_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414102}}, {"model": "metainfo.source", "pk": 13235, "fields": {"orig_filename": "Kallab_Ferdinand-Viktor_1847_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195", "author": "", "orig_id": 1414103}}, {"model": "metainfo.source", "pk": 13236, "fields": {"orig_filename": "Kallab_Wolfgang_1875_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 195f.", "author": "", "orig_id": 1414104}}, {"model": "metainfo.source", "pk": 13237, "fields": {"orig_filename": "Kallay-Nagy-Kallo_Beni_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196", "author": "", "orig_id": 1414106}}, {"model": "metainfo.source", "pk": 13238, "fields": {"orig_filename": "Kallay_Oedoen_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196", "author": "", "orig_id": 1414105}}, {"model": "metainfo.source", "pk": 13239, "fields": {"orig_filename": "Kallenbach_Jozef_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 196f.", "author": "", "orig_id": 1414107}}, {"model": "metainfo.source", "pk": 13240, "fields": {"orig_filename": "Kaller_Adolf_1889_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414108}}, {"model": "metainfo.source", "pk": 13241, "fields": {"orig_filename": "Kalliauer_Anton-Christoph_1760_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414109}}, {"model": "metainfo.source", "pk": 13242, "fields": {"orig_filename": "Kallina-Urbanow_Alois_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414112}}, {"model": "metainfo.source", "pk": 13243, "fields": {"orig_filename": "Kallina_Anna_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197", "author": "", "orig_id": 1414110}}, {"model": "metainfo.source", "pk": 13244, "fields": {"orig_filename": "Kallina_Maurus_1844_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 197f.", "author": "", "orig_id": 1414111}}, {"model": "metainfo.source", "pk": 13245, "fields": {"orig_filename": "Kallir_Ludwig_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414113}}, {"model": "metainfo.source", "pk": 13246, "fields": {"orig_filename": "Kalliwoda_Johann-Wenzel_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 198", "author": "", "orig_id": 1414114}}, {"model": "metainfo.source", "pk": 13247, "fields": {"orig_filename": "Kallos_Ede_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414178}}, {"model": "metainfo.source", "pk": 13248, "fields": {"orig_filename": "Kalmann_Wilhelm_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414180}}, {"model": "metainfo.source", "pk": 13249, "fields": {"orig_filename": "Kalman_Farkas_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414179}}, {"model": "metainfo.source", "pk": 13250, "fields": {"orig_filename": "Kalmar_Elsa_1876_1956.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199", "author": "", "orig_id": 1414181}}, {"model": "metainfo.source", "pk": 13251, "fields": {"orig_filename": "Kalmsteiner_Johann_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 199f.", "author": "", "orig_id": 1414182}}, {"model": "metainfo.source", "pk": 13252, "fields": {"orig_filename": "Kalnoky-Koeroespatak_Gustav-Sigmund_1832_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 200", "author": "", "orig_id": 1414183}}, {"model": "metainfo.source", "pk": 13253, "fields": {"orig_filename": "Kalny_Heribertus_1844_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 200f.", "author": "", "orig_id": 1414184}}, {"model": "metainfo.source", "pk": 13254, "fields": {"orig_filename": "Kalousek_Josef_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201", "author": "", "orig_id": 1414185}}, {"model": "metainfo.source", "pk": 13255, "fields": {"orig_filename": "Kalousek_Vratislav_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201", "author": "", "orig_id": 1414186}}, {"model": "metainfo.source", "pk": 13256, "fields": {"orig_filename": "Kalser-Maasfeld_Franz_1860_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414188}}, {"model": "metainfo.source", "pk": 13257, "fields": {"orig_filename": "Kalser_Leo_1888_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 201f.", "author": "", "orig_id": 1414187}}, {"model": "metainfo.source", "pk": 13258, "fields": {"orig_filename": "Kaltenbaeck_Johann-Paul_1804_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414189}}, {"model": "metainfo.source", "pk": 13259, "fields": {"orig_filename": "Kaltenboeck_Bodo_1893_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202", "author": "", "orig_id": 1414190}}, {"model": "metainfo.source", "pk": 13260, "fields": {"orig_filename": "Kaltenbrunner_Ernst_1903_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 202f.", "author": "", "orig_id": 1414191}}, {"model": "metainfo.source", "pk": 13261, "fields": {"orig_filename": "Kaltenbrunner_Ferdinand_1851_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 203", "author": "", "orig_id": 1414192}}, {"model": "metainfo.source", "pk": 13262, "fields": {"orig_filename": "Kaltenbrunner_Karl-Adam_1804_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 203f.", "author": "", "orig_id": 1414193}}, {"model": "metainfo.source", "pk": 13263, "fields": {"orig_filename": "Kaltenegger-Riedhorst_Friedrich_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204f.", "author": "", "orig_id": 1414196}}, {"model": "metainfo.source", "pk": 13264, "fields": {"orig_filename": "Kaltenegger_Leonidas_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204", "author": "", "orig_id": 1414195}}, {"model": "metainfo.source", "pk": 13265, "fields": {"orig_filename": "Kaltenegger_Leo_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 204", "author": "", "orig_id": 1414194}}, {"model": "metainfo.source", "pk": 13266, "fields": {"orig_filename": "Kaltenhauser_Franziska_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 205", "author": "", "orig_id": 1414197}}, {"model": "metainfo.source", "pk": 13267, "fields": {"orig_filename": "Kaltneker-Wallkampf_Hans_1895_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 205f.", "author": "", "orig_id": 1414198}}, {"model": "metainfo.source", "pk": 13268, "fields": {"orig_filename": "Kaltner_Balthasar_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414199}}, {"model": "metainfo.source", "pk": 13269, "fields": {"orig_filename": "Kaltner_Josef_1757_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414264}}, {"model": "metainfo.source", "pk": 13270, "fields": {"orig_filename": "Kaluza_Augustin_1776_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414265}}, {"model": "metainfo.source", "pk": 13271, "fields": {"orig_filename": "Kalvoda_Alois_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 206", "author": "", "orig_id": 1414266}}, {"model": "metainfo.source", "pk": 13272, "fields": {"orig_filename": "Kalvoda_Josef_1874_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414267}}, {"model": "metainfo.source", "pk": 13273, "fields": {"orig_filename": "Kamenarovic_Pavao_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414268}}, {"model": "metainfo.source", "pk": 13274, "fields": {"orig_filename": "Kamieniobrodzki_Alfred_1844_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414269}}, {"model": "metainfo.source", "pk": 13275, "fields": {"orig_filename": "Kamienski_Maciej_1734_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207", "author": "", "orig_id": 1414270}}, {"model": "metainfo.source", "pk": 13276, "fields": {"orig_filename": "Kaminka_Aharon_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 207f.", "author": "", "orig_id": 1414271}}, {"model": "metainfo.source", "pk": 13277, "fields": {"orig_filename": "Kaminski_Ignacy_1820_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414272}}, {"model": "metainfo.source", "pk": 13278, "fields": {"orig_filename": "Kaminski_Jan-Nep_1777_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414273}}, {"model": "metainfo.source", "pk": 13279, "fields": {"orig_filename": "Kaminski_Kazimierz_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208", "author": "", "orig_id": 1414274}}, {"model": "metainfo.source", "pk": 13280, "fields": {"orig_filename": "Kamitz_Reinhard_1907_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426666}}, {"model": "metainfo.source", "pk": 13281, "fields": {"orig_filename": "Kamler_Heinrich_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 208f.", "author": "", "orig_id": 1414275}}, {"model": "metainfo.source", "pk": 13282, "fields": {"orig_filename": "Kamler_Heinrich_1864_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414276}}, {"model": "metainfo.source", "pk": 13283, "fields": {"orig_filename": "Kammerer_Emil_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414277}}, {"model": "metainfo.source", "pk": 13284, "fields": {"orig_filename": "Kammerer_Gustav_1866_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209", "author": "", "orig_id": 1414278}}, {"model": "metainfo.source", "pk": 13285, "fields": {"orig_filename": "Kammerer_Paul_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 209f.", "author": "", "orig_id": 1414279}}, {"model": "metainfo.source", "pk": 13286, "fields": {"orig_filename": "Kamniker_Franz_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 210", "author": "", "orig_id": 1414280}}, {"model": "metainfo.source", "pk": 13287, "fields": {"orig_filename": "Kamocki_Stanislaw_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 210f.", "author": "", "orig_id": 1414281}}, {"model": "metainfo.source", "pk": 13288, "fields": {"orig_filename": "Kamory_Samuel_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414282}}, {"model": "metainfo.source", "pk": 13289, "fields": {"orig_filename": "Kampelik_Frantisek-Cyril_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414283}}, {"model": "metainfo.source", "pk": 13290, "fields": {"orig_filename": "Kampf_Karl-Heinrich_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211", "author": "", "orig_id": 1414284}}, {"model": "metainfo.source", "pk": 13291, "fields": {"orig_filename": "Kampmann-Freund_Johanna_1888_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414347}}, {"model": "metainfo.source", "pk": 13292, "fields": {"orig_filename": "Kampmann_Karl_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 211f.", "author": "", "orig_id": 1414346}}, {"model": "metainfo.source", "pk": 13293, "fields": {"orig_filename": "Kancnik_Andrej_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414348}}, {"model": "metainfo.source", "pk": 13294, "fields": {"orig_filename": "Kandelsdorfer_Karl_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212", "author": "", "orig_id": 1414349}}, {"model": "metainfo.source", "pk": 13295, "fields": {"orig_filename": "Kandler_Franz-Sales_1792_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 212f.", "author": "", "orig_id": 1414350}}, {"model": "metainfo.source", "pk": 13296, "fields": {"orig_filename": "Kandler_Peter_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 213", "author": "", "orig_id": 1414351}}, {"model": "metainfo.source", "pk": 13297, "fields": {"orig_filename": "Kandler_Wilhelm_1816_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 213f.", "author": "", "orig_id": 1414352}}, {"model": "metainfo.source", "pk": 13298, "fields": {"orig_filename": "Kando_Kalman_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422556}}, {"model": "metainfo.source", "pk": 13299, "fields": {"orig_filename": "Kanera-Tynbrugg_Josef_1854_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414353}}, {"model": "metainfo.source", "pk": 13300, "fields": {"orig_filename": "Kangel_Anton_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414354}}, {"model": "metainfo.source", "pk": 13301, "fields": {"orig_filename": "Kangrga_Jovan_1871_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414355}}, {"model": "metainfo.source", "pk": 13302, "fields": {"orig_filename": "Kaniak_Karl_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214", "author": "", "orig_id": 1414356}}, {"model": "metainfo.source", "pk": 13303, "fields": {"orig_filename": "Kanik_Franz_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 214f.", "author": "", "orig_id": 1414357}}, {"model": "metainfo.source", "pk": 13304, "fields": {"orig_filename": "Kanitz_August_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 215", "author": "", "orig_id": 1414358}}, {"model": "metainfo.source", "pk": 13305, "fields": {"orig_filename": "Kanitz_Ernst_1896_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1439279}}, {"model": "metainfo.source", "pk": 13306, "fields": {"orig_filename": "Kanitz_Felix-Philipp_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 13, 1963), S. 215f.", "author": "", "orig_id": 1414359}}, {"model": "metainfo.source", "pk": 13307, "fields": {"orig_filename": "Jurende_Karl-Josef_1780_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155f.", "author": "", "orig_id": 1414942}}, {"model": "metainfo.source", "pk": 13308, "fields": {"orig_filename": "Jurenka_Hugo_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156", "author": "", "orig_id": 1414943}}, {"model": "metainfo.source", "pk": 13309, "fields": {"orig_filename": "Jurinac_Adolfo_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156", "author": "", "orig_id": 1414944}}, {"model": "metainfo.source", "pk": 13310, "fields": {"orig_filename": "Juritsch_Georg_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 156f.", "author": "", "orig_id": 1414945}}, {"model": "metainfo.source", "pk": 13311, "fields": {"orig_filename": "Jurjevic-Tuol_Josef_1785_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414946}}, {"model": "metainfo.source", "pk": 13312, "fields": {"orig_filename": "Jurkovic_Ivan_1893_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414947}}, {"model": "metainfo.source", "pk": 13313, "fields": {"orig_filename": "Jurkovic_Janko_1827_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157", "author": "", "orig_id": 1414948}}, {"model": "metainfo.source", "pk": 13314, "fields": {"orig_filename": "Jury_Hugo_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 157f.", "author": "", "orig_id": 1414949}}, {"model": "metainfo.source", "pk": 13315, "fields": {"orig_filename": "Jussel_Anton_1816_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414950}}, {"model": "metainfo.source", "pk": 13316, "fields": {"orig_filename": "Juster_Heinrich_1876_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158f.", "author": "", "orig_id": 1415011}}, {"model": "metainfo.source", "pk": 13317, "fields": {"orig_filename": "Justh_Gyula_1850_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415012}}, {"model": "metainfo.source", "pk": 13318, "fields": {"orig_filename": "Justh_Zsigmond_1863_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415013}}, {"model": "metainfo.source", "pk": 13319, "fields": {"orig_filename": "Justin_Rajko_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159", "author": "", "orig_id": 1415014}}, {"model": "metainfo.source", "pk": 13320, "fields": {"orig_filename": "Just_Eduard-Alexander_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414951}}, {"model": "metainfo.source", "pk": 13321, "fields": {"orig_filename": "Just_Karl_1808_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 158", "author": "", "orig_id": 1414952}}, {"model": "metainfo.source", "pk": 13322, "fields": {"orig_filename": "Juvancic_Friderik_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160", "author": "", "orig_id": 1415016}}, {"model": "metainfo.source", "pk": 13323, "fields": {"orig_filename": "Juvan_Franz_1861_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 159f.", "author": "", "orig_id": 1415015}}, {"model": "metainfo.source", "pk": 13324, "fields": {"orig_filename": "Kaan-Albest_Julius_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415022}}, {"model": "metainfo.source", "pk": 13325, "fields": {"orig_filename": "Kaan-Albest_Samuel-Heinrich_1776_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415023}}, {"model": "metainfo.source", "pk": 13326, "fields": {"orig_filename": "Kaan_Arthur_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160", "author": "", "orig_id": 1415017}}, {"model": "metainfo.source", "pk": 13327, "fields": {"orig_filename": "Kaan_Eduard_1826_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 160f.", "author": "", "orig_id": 1415018}}, {"model": "metainfo.source", "pk": 13328, "fields": {"orig_filename": "Kaan_Ernst-Robert_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161", "author": "", "orig_id": 1415019}}, {"model": "metainfo.source", "pk": 13329, "fields": {"orig_filename": "Kaan_Wilhelm_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 161", "author": "", "orig_id": 1415020}}, {"model": "metainfo.source", "pk": 13330, "fields": {"orig_filename": "Kabasta_Oswald_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162", "author": "", "orig_id": 1415024}}, {"model": "metainfo.source", "pk": 13331, "fields": {"orig_filename": "Kabat_Maurycy_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 162f.", "author": "", "orig_id": 1415025}}, {"model": "metainfo.source", "pk": 13332, "fields": {"orig_filename": "Kabelik_Jan_1864_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415026}}, {"model": "metainfo.source", "pk": 13333, "fields": {"orig_filename": "Kablik_Josephine_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415027}}, {"model": "metainfo.source", "pk": 13334, "fields": {"orig_filename": "Kacanski_Vladislav-Stevan_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415028}}, {"model": "metainfo.source", "pk": 13335, "fields": {"orig_filename": "Kachler_Georg_1764_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163", "author": "", "orig_id": 1415029}}, {"model": "metainfo.source", "pk": 13336, "fields": {"orig_filename": "Kachler_Josef_1847_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 163f.", "author": "", "orig_id": 1415030}}, {"model": "metainfo.source", "pk": 13337, "fields": {"orig_filename": "Kachler_Michael_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415031}}, {"model": "metainfo.source", "pk": 13338, "fields": {"orig_filename": "Kachler_Peter_1811_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415032}}, {"model": "metainfo.source", "pk": 13339, "fields": {"orig_filename": "Kaczkowski_Zygmunt_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164", "author": "", "orig_id": 1415033}}, {"model": "metainfo.source", "pk": 13340, "fields": {"orig_filename": "Kadelburg_Gustav_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 164f.", "author": "", "orig_id": 1415094}}, {"model": "metainfo.source", "pk": 13341, "fields": {"orig_filename": "Kadelburg_Heinrich_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415095}}, {"model": "metainfo.source", "pk": 13342, "fields": {"orig_filename": "Kaderavek_Johann-Eugen_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415096}}, {"model": "metainfo.source", "pk": 13343, "fields": {"orig_filename": "Kaderschafka_Karl_1893_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415097}}, {"model": "metainfo.source", "pk": 13344, "fields": {"orig_filename": "Kadich-Pferd_Hans_1864_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165", "author": "", "orig_id": 1415098}}, {"model": "metainfo.source", "pk": 13345, "fields": {"orig_filename": "Kadich-Pferd_Heinrich_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 165f.", "author": "", "orig_id": 1415099}}, {"model": "metainfo.source", "pk": 13346, "fields": {"orig_filename": "Kadlcak_Josef_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166", "author": "", "orig_id": 1415100}}, {"model": "metainfo.source", "pk": 13347, "fields": {"orig_filename": "Kadlcik_Franz-Bretislav_1847_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166", "author": "", "orig_id": 1415101}}, {"model": "metainfo.source", "pk": 13348, "fields": {"orig_filename": "Kadlec_Karel_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 166f.", "author": "", "orig_id": 1415102}}, {"model": "metainfo.source", "pk": 13349, "fields": {"orig_filename": "Kadlik_Franz_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415103}}, {"model": "metainfo.source", "pk": 13350, "fields": {"orig_filename": "Kadmon_Stella_1902_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1430492}}, {"model": "metainfo.source", "pk": 13351, "fields": {"orig_filename": "Kadrnozka_Leo_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415104}}, {"model": "metainfo.source", "pk": 13352, "fields": {"orig_filename": "Kaefer_Viktor_1799_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167", "author": "", "orig_id": 1415105}}, {"model": "metainfo.source", "pk": 13353, "fields": {"orig_filename": "Kaempf_Moritz_1835_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 167f.", "author": "", "orig_id": 1415106}}, {"model": "metainfo.source", "pk": 13354, "fields": {"orig_filename": "Kaempf_Saul-Isaac_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415107}}, {"model": "metainfo.source", "pk": 13355, "fields": {"orig_filename": "Kaergling_Johann-Tobias_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415108}}, {"model": "metainfo.source", "pk": 13356, "fields": {"orig_filename": "Kaerle_Johann_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168", "author": "", "orig_id": 1415109}}, {"model": "metainfo.source", "pk": 13357, "fields": {"orig_filename": "Kaerle_Josef_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 168f.", "author": "", "orig_id": 1420791}}, {"model": "metainfo.source", "pk": 13358, "fields": {"orig_filename": "Kaesebacher_Alois_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415110}}, {"model": "metainfo.source", "pk": 13359, "fields": {"orig_filename": "Kaesmayer_Karl_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415111}}, {"model": "metainfo.source", "pk": 13360, "fields": {"orig_filename": "Kaessmann_Franz_1751_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415112}}, {"model": "metainfo.source", "pk": 13361, "fields": {"orig_filename": "Kaessmann_Josef_1784_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 169", "author": "", "orig_id": 1415113}}, {"model": "metainfo.source", "pk": 13362, "fields": {"orig_filename": "Kaestner_Josef-Viktor_1828_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415181}}, {"model": "metainfo.source", "pk": 13363, "fields": {"orig_filename": "Kafka_Bohumil_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415182}}, {"model": "metainfo.source", "pk": 13364, "fields": {"orig_filename": "Kafka_Eduard-Michael_1864_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170", "author": "", "orig_id": 1415183}}, {"model": "metainfo.source", "pk": 13365, "fields": {"orig_filename": "Kafka_Franz_1883_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 170f.", "author": "", "orig_id": 1415184}}, {"model": "metainfo.source", "pk": 13366, "fields": {"orig_filename": "Kafka_Heinrich_1844_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 171", "author": "", "orig_id": 1415185}}, {"model": "metainfo.source", "pk": 13367, "fields": {"orig_filename": "Kafka_Johann-Nep_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 171f.", "author": "", "orig_id": 1415186}}, {"model": "metainfo.source", "pk": 13368, "fields": {"orig_filename": "Kafka_Josef_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415187}}, {"model": "metainfo.source", "pk": 13369, "fields": {"orig_filename": "Kafka_Josef_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415188}}, {"model": "metainfo.source", "pk": 13370, "fields": {"orig_filename": "Kaftan_Johann_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415189}}, {"model": "metainfo.source", "pk": 13371, "fields": {"orig_filename": "Kager-Mayregg_Karl_1819_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172", "author": "", "orig_id": 1415190}}, {"model": "metainfo.source", "pk": 13372, "fields": {"orig_filename": "Kager-Paugger-Groebner_Hugo_1847_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 172f.", "author": "", "orig_id": 1415191}}, {"model": "metainfo.source", "pk": 13373, "fields": {"orig_filename": "Kagerbauer_Peter_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173", "author": "", "orig_id": 1415192}}, {"model": "metainfo.source", "pk": 13374, "fields": {"orig_filename": "Kahane_Arthur_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173", "author": "", "orig_id": 1415193}}, {"model": "metainfo.source", "pk": 13375, "fields": {"orig_filename": "Kahler_Eugen_1882_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174", "author": "", "orig_id": 1415195}}, {"model": "metainfo.source", "pk": 13376, "fields": {"orig_filename": "Kahler_Karl_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174", "author": "", "orig_id": 1415196}}, {"model": "metainfo.source", "pk": 13377, "fields": {"orig_filename": "Kahler_Otto_1849_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 174f.", "author": "", "orig_id": 1415197}}, {"model": "metainfo.source", "pk": 13378, "fields": {"orig_filename": "Kahler_Otto_1878_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175", "author": "", "orig_id": 1415198}}, {"model": "metainfo.source", "pk": 13379, "fields": {"orig_filename": "Kahl_Fr-Gerhard-Maria_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 173f.", "author": "", "orig_id": 1415194}}, {"model": "metainfo.source", "pk": 13380, "fields": {"orig_filename": "Kahn_Josef_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175", "author": "", "orig_id": 1415199}}, {"model": "metainfo.source", "pk": 13381, "fields": {"orig_filename": "Kahrer_Max_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415201}}, {"model": "metainfo.source", "pk": 13382, "fields": {"orig_filename": "Kahr_Heinrich_1888_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 175f.", "author": "", "orig_id": 1415200}}, {"model": "metainfo.source", "pk": 13383, "fields": {"orig_filename": "Kailan_Anton_1879_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415202}}, {"model": "metainfo.source", "pk": 13384, "fields": {"orig_filename": "Kailer-Kaltenfels_Karl_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176", "author": "", "orig_id": 1415203}}, {"model": "metainfo.source", "pk": 13385, "fields": {"orig_filename": "Kaindlstorfer_Johann_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 177f.", "author": "", "orig_id": 1413912}}, {"model": "metainfo.source", "pk": 13386, "fields": {"orig_filename": "Kaindl_Raimund-Friedrich_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 177", "author": "", "orig_id": 1413911}}, {"model": "metainfo.source", "pk": 13387, "fields": {"orig_filename": "Kainersdorfer_Johann-Matthias_1778_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178", "author": "", "orig_id": 1413913}}, {"model": "metainfo.source", "pk": 13388, "fields": {"orig_filename": "Kainradl_Leo_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178", "author": "", "orig_id": 1413914}}, {"model": "metainfo.source", "pk": 13389, "fields": {"orig_filename": "Kainz-Holland_Marianne_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413917}}, {"model": "metainfo.source", "pk": 13390, "fields": {"orig_filename": "Kainz-Prause_Clothilde-Emilie_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413918}}, {"model": "metainfo.source", "pk": 13391, "fields": {"orig_filename": "Kainzbauer_Ludwig_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413919}}, {"model": "metainfo.source", "pk": 13392, "fields": {"orig_filename": "Kainz_Josef-Gottfried-Ignaz_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 178f.", "author": "", "orig_id": 1413915}}, {"model": "metainfo.source", "pk": 13393, "fields": {"orig_filename": "Kainz_Josef-Wolfgang_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 179f.", "author": "", "orig_id": 1413916}}, {"model": "metainfo.source", "pk": 13394, "fields": {"orig_filename": "Kain_Johann_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 176f.", "author": "", "orig_id": 1415204}}, {"model": "metainfo.source", "pk": 13395, "fields": {"orig_filename": "Kaiser-Falkenthal_Ignaz_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1413934}}, {"model": "metainfo.source", "pk": 13396, "fields": {"orig_filename": "Kaiser-Herbst_Carl_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184", "author": "", "orig_id": 1414008}}, {"model": "metainfo.source", "pk": 13397, "fields": {"orig_filename": "Kaiser-Trauenstern_Felix-Josef_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 184f.", "author": "", "orig_id": 1414009}}, {"model": "metainfo.source", "pk": 13398, "fields": {"orig_filename": "Kaiserfeld_Moriz_1811_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 185", "author": "", "orig_id": 1414010}}, {"model": "metainfo.source", "pk": 13399, "fields": {"orig_filename": "Kaiser_Alexander_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180", "author": "", "orig_id": 1413920}}, {"model": "metainfo.source", "pk": 13400, "fields": {"orig_filename": "Kaiser_Anton_1863_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 180f.", "author": "", "orig_id": 1413921}}, {"model": "metainfo.source", "pk": 13401, "fields": {"orig_filename": "Kaiser_August_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413922}}, {"model": "metainfo.source", "pk": 13402, "fields": {"orig_filename": "Kaiser_Eduard_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413923}}, {"model": "metainfo.source", "pk": 13403, "fields": {"orig_filename": "Kaiser_Eduard_1831_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181", "author": "", "orig_id": 1413924}}, {"model": "metainfo.source", "pk": 13404, "fields": {"orig_filename": "Kaiser_Friedrich_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 181f.", "author": "", "orig_id": 1413925}}, {"model": "metainfo.source", "pk": 13405, "fields": {"orig_filename": "Kaiser_Johann-Nep_1792_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 182", "author": "", "orig_id": 1413926}}, {"model": "metainfo.source", "pk": 13406, "fields": {"orig_filename": "Kaiser_Josef-Franz-Xaver_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 182f.", "author": "", "orig_id": 1413927}}, {"model": "metainfo.source", "pk": 13407, "fields": {"orig_filename": "Kaiser_Josef-Maria_1824_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183", "author": "", "orig_id": 1413928}}, {"model": "metainfo.source", "pk": 13408, "fields": {"orig_filename": "Kaiser_Julius_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 183", "author": "", "orig_id": 1413929}}, {"model": "metainfo.source", "pk": 13409, "fields": {"orig_filename": "John_Amand_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414506}}, {"model": "metainfo.source", "pk": 13410, "fields": {"orig_filename": "John_Charles_1872_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414507}}, {"model": "metainfo.source", "pk": 13411, "fields": {"orig_filename": "John_Franz_1815_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124f.", "author": "", "orig_id": 1414508}}, {"model": "metainfo.source", "pk": 13412, "fields": {"orig_filename": "John_Friedrich_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 125", "author": "", "orig_id": 1414510}}, {"model": "metainfo.source", "pk": 13413, "fields": {"orig_filename": "John_Friedrich_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 125", "author": "", "orig_id": 1414509}}, {"model": "metainfo.source", "pk": 13414, "fields": {"orig_filename": "John_Hanns_1891_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414511}}, {"model": "metainfo.source", "pk": 13415, "fields": {"orig_filename": "John_Vinzenz_1838_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414512}}, {"model": "metainfo.source", "pk": 13416, "fields": {"orig_filename": "John_Wilhelm_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126", "author": "", "orig_id": 1414513}}, {"model": "metainfo.source", "pk": 13417, "fields": {"orig_filename": "Jokai_Mor_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 127", "author": "", "orig_id": 1414515}}, {"model": "metainfo.source", "pk": 13418, "fields": {"orig_filename": "Jokely_Janos_1826_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 127", "author": "", "orig_id": 1414587}}, {"model": "metainfo.source", "pk": 13419, "fields": {"orig_filename": "Jokl_Norbert_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414588}}, {"model": "metainfo.source", "pk": 13420, "fields": {"orig_filename": "Jolles_Adolf_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414589}}, {"model": "metainfo.source", "pk": 13421, "fields": {"orig_filename": "Joly_Ferdinand_1765_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128", "author": "", "orig_id": 1414590}}, {"model": "metainfo.source", "pk": 13422, "fields": {"orig_filename": "Jonak-Freyenwald_Gustav_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414592}}, {"model": "metainfo.source", "pk": 13423, "fields": {"orig_filename": "Jonak_Eberhard-Antonin_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 128f.", "author": "", "orig_id": 1414591}}, {"model": "metainfo.source", "pk": 13424, "fields": {"orig_filename": "Joo_Istvan_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414593}}, {"model": "metainfo.source", "pk": 13425, "fields": {"orig_filename": "Joppi_Vincenzo_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414594}}, {"model": "metainfo.source", "pk": 13426, "fields": {"orig_filename": "Jordan-Rozwadowski-Gross-Rozwadow_Thaddaeus_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132f.", "author": "", "orig_id": 1414604}}, {"model": "metainfo.source", "pk": 13427, "fields": {"orig_filename": "Jordan_Eduard_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129", "author": "", "orig_id": 1414595}}, {"model": "metainfo.source", "pk": 13428, "fields": {"orig_filename": "Jordan_Franz-Sylvester_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 129f.", "author": "", "orig_id": 1414596}}, {"model": "metainfo.source", "pk": 13429, "fields": {"orig_filename": "Jordan_Franz-Xaver_1741_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 130", "author": "", "orig_id": 1414597}}, {"model": "metainfo.source", "pk": 13430, "fields": {"orig_filename": "Jordan_Henryk_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 130f.", "author": "", "orig_id": 1414598}}, {"model": "metainfo.source", "pk": 13431, "fields": {"orig_filename": "Jordan_Jan-Petr_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131", "author": "", "orig_id": 1414599}}, {"model": "metainfo.source", "pk": 13432, "fields": {"orig_filename": "Jordan_Josef_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131", "author": "", "orig_id": 1414600}}, {"model": "metainfo.source", "pk": 13433, "fields": {"orig_filename": "Jordan_Karl_1863_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 131f.", "author": "", "orig_id": 1414601}}, {"model": "metainfo.source", "pk": 13434, "fields": {"orig_filename": "Jordan_Peter_1751_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132", "author": "", "orig_id": 1414602}}, {"model": "metainfo.source", "pk": 13435, "fields": {"orig_filename": "Jordan_Richard_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 132", "author": "", "orig_id": 1414603}}, {"model": "metainfo.source", "pk": 13436, "fields": {"orig_filename": "Jorgovanic_Richard_1853_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414605}}, {"model": "metainfo.source", "pk": 13437, "fields": {"orig_filename": "Jorkasch-Koch_Adolf_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414606}}, {"model": "metainfo.source", "pk": 13438, "fields": {"orig_filename": "Jorkasch-Koch_Adolf_1848_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414607}}, {"model": "metainfo.source", "pk": 13439, "fields": {"orig_filename": "Josch_Eduard_1799_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133", "author": "", "orig_id": 1414608}}, {"model": "metainfo.source", "pk": 13440, "fields": {"orig_filename": "Joseffy_Rafael_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 133f.", "author": "", "orig_id": 1414609}}, {"model": "metainfo.source", "pk": 13441, "fields": {"orig_filename": "Josephy_Gustav_1820_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135f.", "author": "", "orig_id": 1414680}}, {"model": "metainfo.source", "pk": 13442, "fields": {"orig_filename": "Josephy_Gustav_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136", "author": "", "orig_id": 1414681}}, {"model": "metainfo.source", "pk": 13443, "fields": {"orig_filename": "Joseph_Anton-Johann_1776_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 134", "author": "", "orig_id": 1414610}}, {"model": "metainfo.source", "pk": 13444, "fields": {"orig_filename": "Joseph_Carl-Ludwig_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 134f.", "author": "", "orig_id": 1414676}}, {"model": "metainfo.source", "pk": 13445, "fields": {"orig_filename": "Joseph_Ferdinand-Salvator_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135", "author": "", "orig_id": 1414677}}, {"model": "metainfo.source", "pk": 13446, "fields": {"orig_filename": "Joseph_Heinrich_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 135", "author": "", "orig_id": 1414678}}, {"model": "metainfo.source", "pk": 13447, "fields": {"orig_filename": "Josika-Branyicska_Miklos_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136", "author": "", "orig_id": 1414682}}, {"model": "metainfo.source", "pk": 13448, "fields": {"orig_filename": "Josika-Branyicska_Samu_1805_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 136f.", "author": "", "orig_id": 1414683}}, {"model": "metainfo.source", "pk": 13449, "fields": {"orig_filename": "Joss_Marcus_1844_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137", "author": "", "orig_id": 1414684}}, {"model": "metainfo.source", "pk": 13450, "fields": {"orig_filename": "Jovanovic-Batut_Milan_1847_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138f.", "author": "", "orig_id": 1414758}}, {"model": "metainfo.source", "pk": 13451, "fields": {"orig_filename": "Jovanovic_Anastas_1817_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137", "author": "", "orig_id": 1414685}}, {"model": "metainfo.source", "pk": 13452, "fields": {"orig_filename": "Jovanovic_Jovan_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 137f.", "author": "", "orig_id": 1414686}}, {"model": "metainfo.source", "pk": 13453, "fields": {"orig_filename": "Jovanovic_Kosta_1849_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414687}}, {"model": "metainfo.source", "pk": 13454, "fields": {"orig_filename": "Jovanovic_Milan_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414688}}, {"model": "metainfo.source", "pk": 13455, "fields": {"orig_filename": "Jovanovic_Stephan_1828_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414689}}, {"model": "metainfo.source", "pk": 13456, "fields": {"orig_filename": "Jovanovic_Tosa_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 138", "author": "", "orig_id": 1414690}}, {"model": "metainfo.source", "pk": 13457, "fields": {"orig_filename": "Jovic_Spiridon_1801_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139", "author": "", "orig_id": 1414759}}, {"model": "metainfo.source", "pk": 13458, "fields": {"orig_filename": "Jozeffy_Pal_1775_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139", "author": "", "orig_id": 1414760}}, {"model": "metainfo.source", "pk": 13459, "fields": {"orig_filename": "Jozefovic_Oskar_1890_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 139f.", "author": "", "orig_id": 1414761}}, {"model": "metainfo.source", "pk": 13460, "fields": {"orig_filename": "Juch_Emma-Antonia-Johanna_1863_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140", "author": "", "orig_id": 1414762}}, {"model": "metainfo.source", "pk": 13461, "fields": {"orig_filename": "Juch_Ernst_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140", "author": "", "orig_id": 1414763}}, {"model": "metainfo.source", "pk": 13462, "fields": {"orig_filename": "Juda_Adele_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141", "author": "", "orig_id": 1414765}}, {"model": "metainfo.source", "pk": 13463, "fields": {"orig_filename": "Juda_Albin_1848_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141", "author": "", "orig_id": 1414766}}, {"model": "metainfo.source", "pk": 13464, "fields": {"orig_filename": "Jud_Roman_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 140f.", "author": "", "orig_id": 1414764}}, {"model": "metainfo.source", "pk": 13465, "fields": {"orig_filename": "Juelg_Bernhard_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 141f.", "author": "", "orig_id": 1414767}}, {"model": "metainfo.source", "pk": 13466, "fields": {"orig_filename": "Juellig_Max_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414768}}, {"model": "metainfo.source", "pk": 13467, "fields": {"orig_filename": "Juenger_Vinzenz_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414769}}, {"model": "metainfo.source", "pk": 13468, "fields": {"orig_filename": "Jueptner-Jonstorff_Hans_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142", "author": "", "orig_id": 1414770}}, {"model": "metainfo.source", "pk": 13469, "fields": {"orig_filename": "Juestel_Josef-Alois_1765_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 142f.", "author": "", "orig_id": 1414771}}, {"model": "metainfo.source", "pk": 13470, "fields": {"orig_filename": "Juethner_Julius_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 143f.", "author": "", "orig_id": 1414772}}, {"model": "metainfo.source", "pk": 13471, "fields": {"orig_filename": "Juettner_Josef_1775_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414773}}, {"model": "metainfo.source", "pk": 13472, "fields": {"orig_filename": "Juffinger_Georg_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414774}}, {"model": "metainfo.source", "pk": 13473, "fields": {"orig_filename": "Juffinger_Michael_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414775}}, {"model": "metainfo.source", "pk": 13474, "fields": {"orig_filename": "Jugenicz-Boldoghegy_Anton_1773_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414777}}, {"model": "metainfo.source", "pk": 13475, "fields": {"orig_filename": "Jugoviz_Rudolf_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414843}}, {"model": "metainfo.source", "pk": 13476, "fields": {"orig_filename": "Jug_Klement_1898_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 144", "author": "", "orig_id": 1414776}}, {"model": "metainfo.source", "pk": 13477, "fields": {"orig_filename": "Juhasz_Karl_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414844}}, {"model": "metainfo.source", "pk": 13478, "fields": {"orig_filename": "Jukel_Karl_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 145", "author": "", "orig_id": 1414845}}, {"model": "metainfo.source", "pk": 13479, "fields": {"orig_filename": "Jukic_Ante_1873_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414846}}, {"model": "metainfo.source", "pk": 13480, "fields": {"orig_filename": "Jukic_Ivan-Franjo_1818_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414847}}, {"model": "metainfo.source", "pk": 13481, "fields": {"orig_filename": "Julisch_Hermine_1850_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414848}}, {"model": "metainfo.source", "pk": 13482, "fields": {"orig_filename": "Julius_Paul_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146", "author": "", "orig_id": 1414849}}, {"model": "metainfo.source", "pk": 13483, "fields": {"orig_filename": "Jummerspach_Fritz_1878_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 146f.", "author": "", "orig_id": 1414850}}, {"model": "metainfo.source", "pk": 13484, "fields": {"orig_filename": "Junck_Karl_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414851}}, {"model": "metainfo.source", "pk": 13485, "fields": {"orig_filename": "Jungbauer_Gustav_1886_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149", "author": "", "orig_id": 1414858}}, {"model": "metainfo.source", "pk": 13486, "fields": {"orig_filename": "Jungbauer_Raimund_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149", "author": "", "orig_id": 1414859}}, {"model": "metainfo.source", "pk": 13487, "fields": {"orig_filename": "Junger_Franz_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 149f.", "author": "", "orig_id": 1414860}}, {"model": "metainfo.source", "pk": 13488, "fields": {"orig_filename": "Junger_Michael_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414861}}, {"model": "metainfo.source", "pk": 13489, "fields": {"orig_filename": "Jungl_Anton_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414862}}, {"model": "metainfo.source", "pk": 13490, "fields": {"orig_filename": "Jungmair_Rudolf_1813_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414863}}, {"model": "metainfo.source", "pk": 13491, "fields": {"orig_filename": "Jungmann_Albert_1824_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150", "author": "", "orig_id": 1414864}}, {"model": "metainfo.source", "pk": 13492, "fields": {"orig_filename": "Jungmann_Anton-Johann_1775_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 150f.", "author": "", "orig_id": 1414865}}, {"model": "metainfo.source", "pk": 13493, "fields": {"orig_filename": "Jungmann_Flora_1859_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414866}}, {"model": "metainfo.source", "pk": 13494, "fields": {"orig_filename": "Jungmann_Jan_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414928}}, {"model": "metainfo.source", "pk": 13495, "fields": {"orig_filename": "Jungmann_Josef_1773_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414929}}, {"model": "metainfo.source", "pk": 13496, "fields": {"orig_filename": "Jungmann_Josef_1830_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151", "author": "", "orig_id": 1414930}}, {"model": "metainfo.source", "pk": 13497, "fields": {"orig_filename": "Jungwirth_Adalbert_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 151f.", "author": "", "orig_id": 1414931}}, {"model": "metainfo.source", "pk": 13498, "fields": {"orig_filename": "Jungwirth_Josef_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152", "author": "", "orig_id": 1414932}}, {"model": "metainfo.source", "pk": 13499, "fields": {"orig_filename": "Jung_Amand_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414852}}, {"model": "metainfo.source", "pk": 13500, "fields": {"orig_filename": "Jung_Edmund_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147", "author": "", "orig_id": 1414853}}, {"model": "metainfo.source", "pk": 13501, "fields": {"orig_filename": "Jung_Giuseppe_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 147f.", "author": "", "orig_id": 1414854}}, {"model": "metainfo.source", "pk": 13502, "fields": {"orig_filename": "Jung_Julius_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148", "author": "", "orig_id": 1414855}}, {"model": "metainfo.source", "pk": 13503, "fields": {"orig_filename": "Jung_Moriz_1885_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148", "author": "", "orig_id": 1414856}}, {"model": "metainfo.source", "pk": 13504, "fields": {"orig_filename": "Jung_Rudolf_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 148f.", "author": "", "orig_id": 1414857}}, {"model": "metainfo.source", "pk": 13505, "fields": {"orig_filename": "Junker_Christian_1757_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 153", "author": "", "orig_id": 1414935}}, {"model": "metainfo.source", "pk": 13506, "fields": {"orig_filename": "Junker_Karl_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 153f.", "author": "", "orig_id": 1414936}}, {"model": "metainfo.source", "pk": 13507, "fields": {"orig_filename": "Junk_Rudolf_1880_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152", "author": "", "orig_id": 1414933}}, {"model": "metainfo.source", "pk": 13508, "fields": {"orig_filename": "Junk_Viktor_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 152f.", "author": "", "orig_id": 1414934}}, {"model": "metainfo.source", "pk": 13509, "fields": {"orig_filename": "Juranyi_Lajos_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154", "author": "", "orig_id": 1414937}}, {"model": "metainfo.source", "pk": 13510, "fields": {"orig_filename": "Juraschek_Franz_1849_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154", "author": "", "orig_id": 1414938}}, {"model": "metainfo.source", "pk": 13511, "fields": {"orig_filename": "Juratzka_Jakob_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 154f.", "author": "", "orig_id": 1414939}}, {"model": "metainfo.source", "pk": 13512, "fields": {"orig_filename": "Jurcic_Josip_1844_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155", "author": "", "orig_id": 1414940}}, {"model": "metainfo.source", "pk": 13513, "fields": {"orig_filename": "Jurek_Wilhelm-August_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 155", "author": "", "orig_id": 1414941}}, {"model": "metainfo.source", "pk": 13514, "fields": {"orig_filename": "Jeglic_Anton-Bonaventura_1850_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92f.", "author": "", "orig_id": 1414091}}, {"model": "metainfo.source", "pk": 13515, "fields": {"orig_filename": "Jehle_Ludwig_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93", "author": "", "orig_id": 1414092}}, {"model": "metainfo.source", "pk": 13516, "fields": {"orig_filename": "Jehly_Georg_1848_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93", "author": "", "orig_id": 1414093}}, {"model": "metainfo.source", "pk": 13517, "fields": {"orig_filename": "Jehly_Jacob_1854_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 93f.", "author": "", "orig_id": 1414156}}, {"model": "metainfo.source", "pk": 13518, "fields": {"orig_filename": "Jeiteles_Eleonore_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414157}}, {"model": "metainfo.source", "pk": 13519, "fields": {"orig_filename": "Jeitteles_Adalbert_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414158}}, {"model": "metainfo.source", "pk": 13520, "fields": {"orig_filename": "Jeitteles_Alois-Isidor_1794_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414159}}, {"model": "metainfo.source", "pk": 13521, "fields": {"orig_filename": "Jeitteles_Andreas-Ludwig_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94", "author": "", "orig_id": 1414160}}, {"model": "metainfo.source", "pk": 13522, "fields": {"orig_filename": "Jeitteles_Isaac_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 94f.", "author": "", "orig_id": 1414161}}, {"model": "metainfo.source", "pk": 13523, "fields": {"orig_filename": "Jeitteles_Ludwig-Heinrich_1830_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95", "author": "", "orig_id": 1414162}}, {"model": "metainfo.source", "pk": 13524, "fields": {"orig_filename": "Jeitteles_Richard_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95", "author": "", "orig_id": 1414163}}, {"model": "metainfo.source", "pk": 13525, "fields": {"orig_filename": "Jekelfalussy-Jekelfalus-Margitfalva_Josef_1849_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 95f.", "author": "", "orig_id": 1414164}}, {"model": "metainfo.source", "pk": 13526, "fields": {"orig_filename": "Jekelfalussy-Jekelfalus-Margitfalva_Ludwig_1848_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414165}}, {"model": "metainfo.source", "pk": 13527, "fields": {"orig_filename": "Jelacic-Buzim_Josef_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 99f.", "author": "", "orig_id": 1414245}}, {"model": "metainfo.source", "pk": 13528, "fields": {"orig_filename": "Jelenic_Julijan_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414169}}, {"model": "metainfo.source", "pk": 13529, "fields": {"orig_filename": "Jelenko_Siegfried_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414170}}, {"model": "metainfo.source", "pk": 13530, "fields": {"orig_filename": "Jelenska_Irma_1852_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414171}}, {"model": "metainfo.source", "pk": 13531, "fields": {"orig_filename": "Jelen_Alois_1801_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414168}}, {"model": "metainfo.source", "pk": 13532, "fields": {"orig_filename": "Jele_Albert_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414166}}, {"model": "metainfo.source", "pk": 13533, "fields": {"orig_filename": "Jele_Kaspar_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 96", "author": "", "orig_id": 1414167}}, {"model": "metainfo.source", "pk": 13534, "fields": {"orig_filename": "Jelic_Luka_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414173}}, {"model": "metainfo.source", "pk": 13535, "fields": {"orig_filename": "Jelinek_Alfons_1836_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 97", "author": "", "orig_id": 1414174}}, {"model": "metainfo.source", "pk": 13536, "fields": {"orig_filename": "Jelinek_Edmund_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414175}}, {"model": "metainfo.source", "pk": 13537, "fields": {"orig_filename": "Jelinek_Franz-Xaver_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414177}}, {"model": "metainfo.source", "pk": 13538, "fields": {"orig_filename": "Jelinek_Franz_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414176}}, {"model": "metainfo.source", "pk": 13539, "fields": {"orig_filename": "Jelinek_Josef_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98", "author": "", "orig_id": 1414242}}, {"model": "metainfo.source", "pk": 13540, "fields": {"orig_filename": "Jelinek_Karl_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 98f.", "author": "", "orig_id": 1414243}}, {"model": "metainfo.source", "pk": 13541, "fields": {"orig_filename": "Jelinek_Wilhelm_1845_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 99", "author": "", "orig_id": 1414244}}, {"model": "metainfo.source", "pk": 13542, "fields": {"orig_filename": "Jellinek-Mercedes_Emil_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414253}}, {"model": "metainfo.source", "pk": 13543, "fields": {"orig_filename": "Jellinek_Adolf_1820_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 100f.", "author": "", "orig_id": 1414246}}, {"model": "metainfo.source", "pk": 13544, "fields": {"orig_filename": "Jellinek_Camilla_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 101", "author": "", "orig_id": 1414247}}, {"model": "metainfo.source", "pk": 13545, "fields": {"orig_filename": "Jellinek_Georg_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 101f.", "author": "", "orig_id": 1414248}}, {"model": "metainfo.source", "pk": 13546, "fields": {"orig_filename": "Jellinek_Hermann_1822_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102", "author": "", "orig_id": 1414249}}, {"model": "metainfo.source", "pk": 13547, "fields": {"orig_filename": "Jellinek_Max-Hermann_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102", "author": "", "orig_id": 1414250}}, {"model": "metainfo.source", "pk": 13548, "fields": {"orig_filename": "Jellinek_Moritz_1828_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 102f.", "author": "", "orig_id": 1414251}}, {"model": "metainfo.source", "pk": 13549, "fields": {"orig_filename": "Jellinek_Oskar_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414252}}, {"model": "metainfo.source", "pk": 13550, "fields": {"orig_filename": "Jelovsek_Ernestine_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103", "author": "", "orig_id": 1414254}}, {"model": "metainfo.source", "pk": 13551, "fields": {"orig_filename": "Jendrassik_Ernoe_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 103f.", "author": "", "orig_id": 1414255}}, {"model": "metainfo.source", "pk": 13552, "fields": {"orig_filename": "Jendrassik_Jenoe-Lipot-Andras_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1414256}}, {"model": "metainfo.source", "pk": 13553, "fields": {"orig_filename": "Jenewein_Felix_1857_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1421744}}, {"model": "metainfo.source", "pk": 13554, "fields": {"orig_filename": "Jenger_Johann-Baptist_1792_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104", "author": "", "orig_id": 1414257}}, {"model": "metainfo.source", "pk": 13555, "fields": {"orig_filename": "Jenikowsky_Franz_1880_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 104f.", "author": "", "orig_id": 1414258}}, {"model": "metainfo.source", "pk": 13556, "fields": {"orig_filename": "Jenke_Heinrich_1823_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105", "author": "", "orig_id": 1414259}}, {"model": "metainfo.source", "pk": 13557, "fields": {"orig_filename": "Jenko_Davorin_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105", "author": "", "orig_id": 1414260}}, {"model": "metainfo.source", "pk": 13558, "fields": {"orig_filename": "Jenko_Simon_1835_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 105f.", "author": "", "orig_id": 1414261}}, {"model": "metainfo.source", "pk": 13559, "fields": {"orig_filename": "Jenny_Karl_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 106", "author": "", "orig_id": 1414262}}, {"model": "metainfo.source", "pk": 13560, "fields": {"orig_filename": "Jenny_Melchior_1785_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 106f.", "author": "", "orig_id": 1414263}}, {"model": "metainfo.source", "pk": 13561, "fields": {"orig_filename": "Jenny_Rudolf-Christoph_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107", "author": "", "orig_id": 1414323}}, {"model": "metainfo.source", "pk": 13562, "fields": {"orig_filename": "Jenny_Samuel_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107", "author": "", "orig_id": 1414324}}, {"model": "metainfo.source", "pk": 13563, "fields": {"orig_filename": "Jentsch_August_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 107f.", "author": "", "orig_id": 1414325}}, {"model": "metainfo.source", "pk": 13564, "fields": {"orig_filename": "Jentzsch_Robert-Bruno_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108", "author": "", "orig_id": 1414326}}, {"model": "metainfo.source", "pk": 13565, "fields": {"orig_filename": "Jenull_Johann_1773_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108", "author": "", "orig_id": 1414327}}, {"model": "metainfo.source", "pk": 13566, "fields": {"orig_filename": "Jenull_Sebastian_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 108f.", "author": "", "orig_id": 1414328}}, {"model": "metainfo.source", "pk": 13567, "fields": {"orig_filename": "Jerabek_Frantisek-Venceslav_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414329}}, {"model": "metainfo.source", "pk": 13568, "fields": {"orig_filename": "Jerabek_Vaclav_1845_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414330}}, {"model": "metainfo.source", "pk": 13569, "fields": {"orig_filename": "Jeraj_Franciska_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109", "author": "", "orig_id": 1414331}}, {"model": "metainfo.source", "pk": 13570, "fields": {"orig_filename": "Jeran_Luka_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 109f.", "author": "", "orig_id": 1414332}}, {"model": "metainfo.source", "pk": 13571, "fields": {"orig_filename": "Jeremias_Bohuslav_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414334}}, {"model": "metainfo.source", "pk": 13572, "fields": {"orig_filename": "Jeremias_Jaroslav_1889_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414335}}, {"model": "metainfo.source", "pk": 13573, "fields": {"orig_filename": "Jergitsch_Ferdinand_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414336}}, {"model": "metainfo.source", "pk": 13574, "fields": {"orig_filename": "Jerisa_Fran_1829_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110", "author": "", "orig_id": 1414337}}, {"model": "metainfo.source", "pk": 13575, "fields": {"orig_filename": "Jerney_Janos_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 110f.", "author": "", "orig_id": 1414338}}, {"model": "metainfo.source", "pk": 13576, "fields": {"orig_filename": "Jerusalem_Wilhelm_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 111", "author": "", "orig_id": 1414339}}, {"model": "metainfo.source", "pk": 13577, "fields": {"orig_filename": "Jesenko_Fran_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 111f.", "author": "", "orig_id": 1414340}}, {"model": "metainfo.source", "pk": 13578, "fields": {"orig_filename": "Jesenko_Janez_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414341}}, {"model": "metainfo.source", "pk": 13579, "fields": {"orig_filename": "Jesenska_Ruzena_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414342}}, {"model": "metainfo.source", "pk": 13580, "fields": {"orig_filename": "Jessen_Asmus-Christian_1835_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414343}}, {"model": "metainfo.source", "pk": 13581, "fields": {"orig_filename": "Jessernigg_Gabriel_1818_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414344}}, {"model": "metainfo.source", "pk": 13582, "fields": {"orig_filename": "Jettel-Ettenach_Emil_1846_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112f.", "author": "", "orig_id": 1414404}}, {"model": "metainfo.source", "pk": 13583, "fields": {"orig_filename": "Jettel_Wladimir_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 112", "author": "", "orig_id": 1414403}}, {"model": "metainfo.source", "pk": 13584, "fields": {"orig_filename": "Jettmar_Rudolf_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 113", "author": "", "orig_id": 1414405}}, {"model": "metainfo.source", "pk": 13585, "fields": {"orig_filename": "Jezbera_Frantisek-Jan_1829_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 113", "author": "", "orig_id": 1414406}}, {"model": "metainfo.source", "pk": 13586, "fields": {"orig_filename": "Jezek_Jan_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414407}}, {"model": "metainfo.source", "pk": 13587, "fields": {"orig_filename": "Jicinsky_Ferdinand_1846_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414408}}, {"model": "metainfo.source", "pk": 13588, "fields": {"orig_filename": "Jicinsky_Karl_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414409}}, {"model": "metainfo.source", "pk": 13589, "fields": {"orig_filename": "Jihn-Solwegen_Friedrich_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414410}}, {"model": "metainfo.source", "pk": 13590, "fields": {"orig_filename": "Jiranek_Milos_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114", "author": "", "orig_id": 1414411}}, {"model": "metainfo.source", "pk": 13591, "fields": {"orig_filename": "Jirani_Otakar_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 114f.", "author": "", "orig_id": 1414412}}, {"model": "metainfo.source", "pk": 13592, "fields": {"orig_filename": "Jirasek_Alois_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 115", "author": "", "orig_id": 1414413}}, {"model": "metainfo.source", "pk": 13593, "fields": {"orig_filename": "Jirecek-Samokov_Hermenegild_1827_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117", "author": "", "orig_id": 1414416}}, {"model": "metainfo.source", "pk": 13594, "fields": {"orig_filename": "Jirecek_Josef-Konstantin_1854_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 116f.", "author": "", "orig_id": 1414415}}, {"model": "metainfo.source", "pk": 13595, "fields": {"orig_filename": "Jirecek_Josef_1825_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 115f.", "author": "", "orig_id": 1414414}}, {"model": "metainfo.source", "pk": 13596, "fields": {"orig_filename": "Jirousek_Anton_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117", "author": "", "orig_id": 1414417}}, {"model": "metainfo.source", "pk": 13597, "fields": {"orig_filename": "Jirsik_Johann-Valerian_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 117f.", "author": "", "orig_id": 1414418}}, {"model": "metainfo.source", "pk": 13598, "fields": {"orig_filename": "Jirus_Bohuslav_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118", "author": "", "orig_id": 1414419}}, {"model": "metainfo.source", "pk": 13599, "fields": {"orig_filename": "Joachim_Amalie_1839_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118", "author": "", "orig_id": 1414420}}, {"model": "metainfo.source", "pk": 13600, "fields": {"orig_filename": "Joachim_Josef_1831_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 118f.", "author": "", "orig_id": 1414421}}, {"model": "metainfo.source", "pk": 13601, "fields": {"orig_filename": "Joanovic_Djordje_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414491}}, {"model": "metainfo.source", "pk": 13602, "fields": {"orig_filename": "Jobst_Carl_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414493}}, {"model": "metainfo.source", "pk": 13603, "fields": {"orig_filename": "Jobst_Franz_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119f.", "author": "", "orig_id": 1414494}}, {"model": "metainfo.source", "pk": 13604, "fields": {"orig_filename": "Job_Ignjat_1895_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 119", "author": "", "orig_id": 1414492}}, {"model": "metainfo.source", "pk": 13605, "fields": {"orig_filename": "Jochum_Josef-Anton_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 120", "author": "", "orig_id": 1414495}}, {"model": "metainfo.source", "pk": 13606, "fields": {"orig_filename": "Jodl_Friedrich_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 120f.", "author": "", "orig_id": 1414496}}, {"model": "metainfo.source", "pk": 13607, "fields": {"orig_filename": "Jodl_Margarete_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414497}}, {"model": "metainfo.source", "pk": 13608, "fields": {"orig_filename": "Joelson_Robert_1829_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414498}}, {"model": "metainfo.source", "pk": 13609, "fields": {"orig_filename": "Joendl_Johann-Philipp_1782_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121", "author": "", "orig_id": 1414499}}, {"model": "metainfo.source", "pk": 13610, "fields": {"orig_filename": "Joers_Paul_1856_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 121f.", "author": "", "orig_id": 1414500}}, {"model": "metainfo.source", "pk": 13611, "fields": {"orig_filename": "Johanny_Erich-Adolf_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123", "author": "", "orig_id": 1414502}}, {"model": "metainfo.source", "pk": 13612, "fields": {"orig_filename": "Johanny_Lothar_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123", "author": "", "orig_id": 1414503}}, {"model": "metainfo.source", "pk": 13613, "fields": {"orig_filename": "Johann_Bapt-Joseph-Fabian-Sebastian_1782_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 122f.", "author": "", "orig_id": 1414501}}, {"model": "metainfo.source", "pk": 13614, "fields": {"orig_filename": "Joherl_Ignaz-Heinrich_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 123f.", "author": "", "orig_id": 1414504}}, {"model": "metainfo.source", "pk": 13615, "fields": {"orig_filename": "John-Johnesberg_Conrad-Heinrich_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 126f.", "author": "", "orig_id": 1414514}}, {"model": "metainfo.source", "pk": 13616, "fields": {"orig_filename": "John_Alois_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 12, 1962), S. 124", "author": "", "orig_id": 1414505}}, {"model": "metainfo.source", "pk": 13617, "fields": {"orig_filename": "Jaksch_Amalie_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414996}}, {"model": "metainfo.source", "pk": 13618, "fields": {"orig_filename": "Jaksch_Friedrich_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414997}}, {"model": "metainfo.source", "pk": 13619, "fields": {"orig_filename": "Jaksch_Josef_1861_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65", "author": "", "orig_id": 1414998}}, {"model": "metainfo.source", "pk": 13620, "fields": {"orig_filename": "Jaksic_Djuro_1832_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415003}}, {"model": "metainfo.source", "pk": 13621, "fields": {"orig_filename": "Jaksi_Josef_1874_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66f.", "author": "", "orig_id": 1415002}}, {"model": "metainfo.source", "pk": 13622, "fields": {"orig_filename": "Jakubec_Jan_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415004}}, {"model": "metainfo.source", "pk": 13623, "fields": {"orig_filename": "Jalowetz_Eduard_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67", "author": "", "orig_id": 1415005}}, {"model": "metainfo.source", "pk": 13624, "fields": {"orig_filename": "Jama_Matija_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 67f.", "author": "", "orig_id": 1415006}}, {"model": "metainfo.source", "pk": 13625, "fields": {"orig_filename": "Jambor_Pal_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68", "author": "", "orig_id": 1415007}}, {"model": "metainfo.source", "pk": 13626, "fields": {"orig_filename": "Jambrisak_Marija_1847_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68", "author": "", "orig_id": 1415008}}, {"model": "metainfo.source", "pk": 13627, "fields": {"orig_filename": "Jamrich_Maria-Helene_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 68f.", "author": "", "orig_id": 1415009}}, {"model": "metainfo.source", "pk": 13628, "fields": {"orig_filename": "Jamsek_Franc_1840_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415073}}, {"model": "metainfo.source", "pk": 13629, "fields": {"orig_filename": "Janacek_Leos_1854_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415075}}, {"model": "metainfo.source", "pk": 13630, "fields": {"orig_filename": "Janauschek_Franziska-Magdalena_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69f.", "author": "", "orig_id": 1415076}}, {"model": "metainfo.source", "pk": 13631, "fields": {"orig_filename": "Janauschek_Leopold_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70", "author": "", "orig_id": 1415077}}, {"model": "metainfo.source", "pk": 13632, "fields": {"orig_filename": "Janauschek_Wilhelm-Raphael_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70", "author": "", "orig_id": 1415078}}, {"model": "metainfo.source", "pk": 13633, "fields": {"orig_filename": "Jancso_Benedek_1854_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 70f.", "author": "", "orig_id": 1415079}}, {"model": "metainfo.source", "pk": 13634, "fields": {"orig_filename": "Jancso_Gyoergy_1853_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415080}}, {"model": "metainfo.source", "pk": 13635, "fields": {"orig_filename": "Jandera_Joseph-Ladislaus_1776_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415081}}, {"model": "metainfo.source", "pk": 13636, "fields": {"orig_filename": "Jandrisevits_Peter_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415082}}, {"model": "metainfo.source", "pk": 13637, "fields": {"orig_filename": "Janecek_Gustav_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415083}}, {"model": "metainfo.source", "pk": 13638, "fields": {"orig_filename": "Janecka_Josef_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 71", "author": "", "orig_id": 1415084}}, {"model": "metainfo.source", "pk": 13639, "fields": {"orig_filename": "Janezic_Anton_1828_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415085}}, {"model": "metainfo.source", "pk": 13640, "fields": {"orig_filename": "Janiczek_Wladimir_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415086}}, {"model": "metainfo.source", "pk": 13641, "fields": {"orig_filename": "Janisch_Antonie_1848_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72", "author": "", "orig_id": 1415087}}, {"model": "metainfo.source", "pk": 13642, "fields": {"orig_filename": "Janisch_Eduard_1868_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 72f.", "author": "", "orig_id": 1415088}}, {"model": "metainfo.source", "pk": 13643, "fields": {"orig_filename": "Janiss_Johann_1808_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73", "author": "", "orig_id": 1415089}}, {"model": "metainfo.source", "pk": 13644, "fields": {"orig_filename": "Janitschek_Maria_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73", "author": "", "orig_id": 1415092}}, {"model": "metainfo.source", "pk": 13645, "fields": {"orig_filename": "Janka-Bulcs_Viktor_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74", "author": "", "orig_id": 1415156}}, {"model": "metainfo.source", "pk": 13646, "fields": {"orig_filename": "Janka_Gabriel_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 73f.", "author": "", "orig_id": 1415093}}, {"model": "metainfo.source", "pk": 13647, "fields": {"orig_filename": "Jankovich_Miklos_1773_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415159}}, {"model": "metainfo.source", "pk": 13648, "fields": {"orig_filename": "Jankovits_Julius_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415160}}, {"model": "metainfo.source", "pk": 13649, "fields": {"orig_filename": "Janko_Josef_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74", "author": "", "orig_id": 1415157}}, {"model": "metainfo.source", "pk": 13650, "fields": {"orig_filename": "Janko_Paul_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 74f.", "author": "", "orig_id": 1415158}}, {"model": "metainfo.source", "pk": 13651, "fields": {"orig_filename": "Jannitti_August_1866_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415161}}, {"model": "metainfo.source", "pk": 13652, "fields": {"orig_filename": "Janosik_Jan_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415163}}, {"model": "metainfo.source", "pk": 13653, "fields": {"orig_filename": "Janosi_Bela_1857_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75", "author": "", "orig_id": 1415162}}, {"model": "metainfo.source", "pk": 13654, "fields": {"orig_filename": "Janovsky_Jaroslav_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 75f.", "author": "", "orig_id": 1415164}}, {"model": "metainfo.source", "pk": 13655, "fields": {"orig_filename": "Janovsky_Vitezslav_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415165}}, {"model": "metainfo.source", "pk": 13656, "fields": {"orig_filename": "Jansa_Leopold_1795_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415166}}, {"model": "metainfo.source", "pk": 13657, "fields": {"orig_filename": "Jansa_Wenzel_1859_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415167}}, {"model": "metainfo.source", "pk": 13658, "fields": {"orig_filename": "Janscheck_Valentin_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76", "author": "", "orig_id": 1415168}}, {"model": "metainfo.source", "pk": 13659, "fields": {"orig_filename": "Janschitz_Eduard_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 76f.", "author": "", "orig_id": 1415169}}, {"model": "metainfo.source", "pk": 13660, "fields": {"orig_filename": "Jansky_Jan_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77", "author": "", "orig_id": 1415170}}, {"model": "metainfo.source", "pk": 13661, "fields": {"orig_filename": "Jantsch_Franz_1898_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77", "author": "", "orig_id": 1415171}}, {"model": "metainfo.source", "pk": 13662, "fields": {"orig_filename": "Jantsch_Heinrich_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 77f.", "author": "", "orig_id": 1415172}}, {"model": "metainfo.source", "pk": 13663, "fields": {"orig_filename": "Januschke_Johann_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415173}}, {"model": "metainfo.source", "pk": 13664, "fields": {"orig_filename": "Januschowsky_Georgine_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415174}}, {"model": "metainfo.source", "pk": 13665, "fields": {"orig_filename": "Janusic_Jurislav_1881_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415175}}, {"model": "metainfo.source", "pk": 13666, "fields": {"orig_filename": "Jan_Giorgio_1791_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 69", "author": "", "orig_id": 1415074}}, {"model": "metainfo.source", "pk": 13667, "fields": {"orig_filename": "Jaques-Dalcroze_Emile_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79", "author": "", "orig_id": 1415177}}, {"model": "metainfo.source", "pk": 13668, "fields": {"orig_filename": "Jaques_Heinrich_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 78", "author": "", "orig_id": 1415176}}, {"model": "metainfo.source", "pk": 13669, "fields": {"orig_filename": "Jara_Johann_1900_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79", "author": "", "orig_id": 1415178}}, {"model": "metainfo.source", "pk": 13670, "fields": {"orig_filename": "Jarcke_Karl-Ernst_1801_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80", "author": "", "orig_id": 1415180}}, {"model": "metainfo.source", "pk": 13671, "fields": {"orig_filename": "Jarc_Miran_1900_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 79f.", "author": "", "orig_id": 1415179}}, {"model": "metainfo.source", "pk": 13672, "fields": {"orig_filename": "Jaresch_Johann_1786_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80", "author": "", "orig_id": 1413983}}, {"model": "metainfo.source", "pk": 13673, "fields": {"orig_filename": "Jarisch_Adolf_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 80f.", "author": "", "orig_id": 1413984}}, {"model": "metainfo.source", "pk": 13674, "fields": {"orig_filename": "Jarisch_Anton-Hieronymus_1818_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413985}}, {"model": "metainfo.source", "pk": 13675, "fields": {"orig_filename": "Jarl-Sakellarios_Karin_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413987}}, {"model": "metainfo.source", "pk": 13676, "fields": {"orig_filename": "Jarl_Otto_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81", "author": "", "orig_id": 1413986}}, {"model": "metainfo.source", "pk": 13677, "fields": {"orig_filename": "Jarmund_Stanislaw_1824_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 81f.", "author": "", "orig_id": 1413988}}, {"model": "metainfo.source", "pk": 13678, "fields": {"orig_filename": "Jarnevic_Dragojla_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413989}}, {"model": "metainfo.source", "pk": 13679, "fields": {"orig_filename": "Jarnik_Jan-Urban_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413990}}, {"model": "metainfo.source", "pk": 13680, "fields": {"orig_filename": "Jarnik_Urban_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82", "author": "", "orig_id": 1413991}}, {"model": "metainfo.source", "pk": 13681, "fields": {"orig_filename": "Jarno_Georg_1868_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 82f.", "author": "", "orig_id": 1413992}}, {"model": "metainfo.source", "pk": 13682, "fields": {"orig_filename": "Jarno_Josef_1866_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83", "author": "", "orig_id": 1413994}}, {"model": "metainfo.source", "pk": 13683, "fields": {"orig_filename": "Jaronek_Bohumir_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83", "author": "", "orig_id": 1413995}}, {"model": "metainfo.source", "pk": 13684, "fields": {"orig_filename": "Jarosch_Joseph_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 83f.", "author": "", "orig_id": 1413996}}, {"model": "metainfo.source", "pk": 13685, "fields": {"orig_filename": "Jarycevskyj_Sylvestr_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413997}}, {"model": "metainfo.source", "pk": 13686, "fields": {"orig_filename": "Jarz_Konrad_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413998}}, {"model": "metainfo.source", "pk": 13687, "fields": {"orig_filename": "Jaschke_Franz_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84", "author": "", "orig_id": 1413999}}, {"model": "metainfo.source", "pk": 13688, "fields": {"orig_filename": "Jaschke_Franz_1862_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 84f.", "author": "", "orig_id": 1414000}}, {"model": "metainfo.source", "pk": 13689, "fields": {"orig_filename": "Jaskewitz_Josef-Franz_1805_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414001}}, {"model": "metainfo.source", "pk": 13690, "fields": {"orig_filename": "Jasper_Friedrich_1847_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414002}}, {"model": "metainfo.source", "pk": 13691, "fields": {"orig_filename": "Jasper_Viktor_1848_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85", "author": "", "orig_id": 1414003}}, {"model": "metainfo.source", "pk": 13692, "fields": {"orig_filename": "Jassnueger_Johann-Nep_1766_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 85f.", "author": "", "orig_id": 1414004}}, {"model": "metainfo.source", "pk": 13693, "fields": {"orig_filename": "Jaszai_Marie_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414005}}, {"model": "metainfo.source", "pk": 13694, "fields": {"orig_filename": "Jaszai_Samu_1859_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414006}}, {"model": "metainfo.source", "pk": 13695, "fields": {"orig_filename": "Jaszay_Pal_1809_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414007}}, {"model": "metainfo.source", "pk": 13696, "fields": {"orig_filename": "Jaszowski_Stanislaw_1803_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414072}}, {"model": "metainfo.source", "pk": 13697, "fields": {"orig_filename": "Jauernig_Jakob_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414073}}, {"model": "metainfo.source", "pk": 13698, "fields": {"orig_filename": "Jaumann_Gustav_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 86", "author": "", "orig_id": 1414074}}, {"model": "metainfo.source", "pk": 13699, "fields": {"orig_filename": "Jauner-Schroffenegg_August_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414077}}, {"model": "metainfo.source", "pk": 13700, "fields": {"orig_filename": "Jauner_Franz_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414075}}, {"model": "metainfo.source", "pk": 13701, "fields": {"orig_filename": "Jauner_Heinrich_1833_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87", "author": "", "orig_id": 1414076}}, {"model": "metainfo.source", "pk": 13702, "fields": {"orig_filename": "Jautz_Karl_1780_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 87f.", "author": "", "orig_id": 1414078}}, {"model": "metainfo.source", "pk": 13703, "fields": {"orig_filename": "Javornik_Placidus_1803_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421745}}, {"model": "metainfo.source", "pk": 13704, "fields": {"orig_filename": "Javorskij_Julian-A_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421819}}, {"model": "metainfo.source", "pk": 13705, "fields": {"orig_filename": "Javurek_Karl_1815_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421820}}, {"model": "metainfo.source", "pk": 13706, "fields": {"orig_filename": "Jaworski_Apolinary_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 88", "author": "", "orig_id": 1421821}}, {"model": "metainfo.source", "pk": 13707, "fields": {"orig_filename": "Jaworski_Franciszek_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89", "author": "", "orig_id": 1421822}}, {"model": "metainfo.source", "pk": 13708, "fields": {"orig_filename": "Jaworski_Wladyslaw-Leopold_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89", "author": "", "orig_id": 1421823}}, {"model": "metainfo.source", "pk": 13709, "fields": {"orig_filename": "Jax_Johann_1842_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 89f.", "author": "", "orig_id": 1421824}}, {"model": "metainfo.source", "pk": 13710, "fields": {"orig_filename": "Jebacin_Anton_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414080}}, {"model": "metainfo.source", "pk": 13711, "fields": {"orig_filename": "Jeblinger_Raimund_1853_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414081}}, {"model": "metainfo.source", "pk": 13712, "fields": {"orig_filename": "Jeckel_Fortunat_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414082}}, {"model": "metainfo.source", "pk": 13713, "fields": {"orig_filename": "Jeczmieniowski_Karl_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90", "author": "", "orig_id": 1414083}}, {"model": "metainfo.source", "pk": 13714, "fields": {"orig_filename": "Jedek_Karl_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 90f.", "author": "", "orig_id": 1414084}}, {"model": "metainfo.source", "pk": 13715, "fields": {"orig_filename": "Jedina-Palombini_Leopold_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414086}}, {"model": "metainfo.source", "pk": 13716, "fields": {"orig_filename": "Jedina_Hermann_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414085}}, {"model": "metainfo.source", "pk": 13717, "fields": {"orig_filename": "Jedlicka_Bohdan_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 91", "author": "", "orig_id": 1414087}}, {"model": "metainfo.source", "pk": 13718, "fields": {"orig_filename": "Jedlicka_Rudolf_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414088}}, {"model": "metainfo.source", "pk": 13719, "fields": {"orig_filename": "Jedlik_Anyos_1800_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414089}}, {"model": "metainfo.source", "pk": 13720, "fields": {"orig_filename": "Jedrzejowicz_Adam_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 92", "author": "", "orig_id": 1414090}}, {"model": "metainfo.source", "pk": 13721, "fields": {"orig_filename": "Innerkofler_Josef-I_1802_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414582}}, {"model": "metainfo.source", "pk": 13722, "fields": {"orig_filename": "Innerkofler_Michael-Ii_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414584}}, {"model": "metainfo.source", "pk": 13723, "fields": {"orig_filename": "Innerkofler_Michael-I_1844_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414583}}, {"model": "metainfo.source", "pk": 13724, "fields": {"orig_filename": "Innerkofler_Sepp_1865_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 37", "author": "", "orig_id": 1414585}}, {"model": "metainfo.source", "pk": 13725, "fields": {"orig_filename": "Insam_Johann_1775_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414654}}, {"model": "metainfo.source", "pk": 13726, "fields": {"orig_filename": "Inthaler_Daniel_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414656}}, {"model": "metainfo.source", "pk": 13727, "fields": {"orig_filename": "Inthal_Kaspar_1845_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38", "author": "", "orig_id": 1414655}}, {"model": "metainfo.source", "pk": 13728, "fields": {"orig_filename": "Inwald-Waldtreu_Josef_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 38f.", "author": "", "orig_id": 1414657}}, {"model": "metainfo.source", "pk": 13729, "fields": {"orig_filename": "Inzaghi_Karl_1777_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 39", "author": "", "orig_id": 1414658}}, {"model": "metainfo.source", "pk": 13730, "fields": {"orig_filename": "Ipavic_Benjamin_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 39", "author": "", "orig_id": 1414659}}, {"model": "metainfo.source", "pk": 13731, "fields": {"orig_filename": "Ipavic_Gustav_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414660}}, {"model": "metainfo.source", "pk": 13732, "fields": {"orig_filename": "Ipavic_Josip_1873_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414661}}, {"model": "metainfo.source", "pk": 13733, "fields": {"orig_filename": "Ipold_Rudolf_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414662}}, {"model": "metainfo.source", "pk": 13734, "fields": {"orig_filename": "Ippen_Josef-A_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40", "author": "", "orig_id": 1414663}}, {"model": "metainfo.source", "pk": 13735, "fields": {"orig_filename": "Ippen_Theodor_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 40f.", "author": "", "orig_id": 1414664}}, {"model": "metainfo.source", "pk": 13736, "fields": {"orig_filename": "Ipsen_Carl_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414665}}, {"model": "metainfo.source", "pk": 13737, "fields": {"orig_filename": "Iranyi_Daniel_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414666}}, {"model": "metainfo.source", "pk": 13738, "fields": {"orig_filename": "Irasky_Jakob_1766_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41", "author": "", "orig_id": 1414667}}, {"model": "metainfo.source", "pk": 13739, "fields": {"orig_filename": "Irinyi_Janos_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 41f.", "author": "", "orig_id": 1414668}}, {"model": "metainfo.source", "pk": 13740, "fields": {"orig_filename": "Irinyi_Jozsef_1822_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414669}}, {"model": "metainfo.source", "pk": 13741, "fields": {"orig_filename": "Irmann_Heinrich-Otto_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414670}}, {"model": "metainfo.source", "pk": 13742, "fields": {"orig_filename": "Irmler_Heinrich_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414671}}, {"model": "metainfo.source", "pk": 13743, "fields": {"orig_filename": "Irresberger_Carl-Caspar_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42", "author": "", "orig_id": 1414672}}, {"model": "metainfo.source", "pk": 13744, "fields": {"orig_filename": "Irsay_Arthur_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 42f.", "author": "", "orig_id": 1414673}}, {"model": "metainfo.source", "pk": 13745, "fields": {"orig_filename": "Irschik_Magda_1841_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414674}}, {"model": "metainfo.source", "pk": 13746, "fields": {"orig_filename": "Isbary_Rudolf-Friedrich-Ernst_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414675}}, {"model": "metainfo.source", "pk": 13747, "fields": {"orig_filename": "Isenflamm_Carl_1775_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43", "author": "", "orig_id": 1414736}}, {"model": "metainfo.source", "pk": 13748, "fields": {"orig_filename": "Isfordink-Kostnitz_Johann-Nep_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 43f.", "author": "", "orig_id": 1414737}}, {"model": "metainfo.source", "pk": 13749, "fields": {"orig_filename": "Iska_Franz_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414738}}, {"model": "metainfo.source", "pk": 13750, "fields": {"orig_filename": "Iskierski_Julius_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414739}}, {"model": "metainfo.source", "pk": 13751, "fields": {"orig_filename": "Israel_Daniel_1859_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44", "author": "", "orig_id": 1414740}}, {"model": "metainfo.source", "pk": 13752, "fields": {"orig_filename": "Issaakowicz_Isaak_1824_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 44f.", "author": "", "orig_id": 1414741}}, {"model": "metainfo.source", "pk": 13753, "fields": {"orig_filename": "Isser-Gaudententhurn_Johanna_1802_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414742}}, {"model": "metainfo.source", "pk": 13754, "fields": {"orig_filename": "Isser-Gaudententhurn_Max_1851_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45", "author": "", "orig_id": 1414743}}, {"model": "metainfo.source", "pk": 13755, "fields": {"orig_filename": "Issler_Richard_1842_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 45f.", "author": "", "orig_id": 1414745}}, {"model": "metainfo.source", "pk": 13756, "fields": {"orig_filename": "Istoczy_Geza_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414746}}, {"model": "metainfo.source", "pk": 13757, "fields": {"orig_filename": "Istvanffi-Csikmadefalva_Gyula_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414747}}, {"model": "metainfo.source", "pk": 13758, "fields": {"orig_filename": "Itzinger_Karl_1888_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46", "author": "", "orig_id": 1414748}}, {"model": "metainfo.source", "pk": 13759, "fields": {"orig_filename": "Ivakic_Joza_1879_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 46f.", "author": "", "orig_id": 1414749}}, {"model": "metainfo.source", "pk": 13760, "fields": {"orig_filename": "Ivancan_Ljudevit_1853_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414750}}, {"model": "metainfo.source", "pk": 13761, "fields": {"orig_filename": "Ivanisevic_Frano_1863_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414751}}, {"model": "metainfo.source", "pk": 13762, "fields": {"orig_filename": "Ivanka_Imre_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47", "author": "", "orig_id": 1414752}}, {"model": "metainfo.source", "pk": 13763, "fields": {"orig_filename": "Ivanovic_Katarina_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 47f.", "author": "", "orig_id": 1414753}}, {"model": "metainfo.source", "pk": 13764, "fields": {"orig_filename": "Ivanyi_Oedoen_1854_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414754}}, {"model": "metainfo.source", "pk": 13765, "fields": {"orig_filename": "Ivcic_Simon_1759_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414755}}, {"model": "metainfo.source", "pk": 13766, "fields": {"orig_filename": "Ivekovic_Ciril-M_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 48", "author": "", "orig_id": 1414756}}, {"model": "metainfo.source", "pk": 13767, "fields": {"orig_filename": "Ivekovic_Oton_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414821}}, {"model": "metainfo.source", "pk": 13768, "fields": {"orig_filename": "Ivicevic_Stjepan_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414823}}, {"model": "metainfo.source", "pk": 13769, "fields": {"orig_filename": "Ivic_Aleksa_1881_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49", "author": "", "orig_id": 1414822}}, {"model": "metainfo.source", "pk": 13770, "fields": {"orig_filename": "Ivkanec_Tomislav_1844_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 49f.", "author": "", "orig_id": 1414824}}, {"model": "metainfo.source", "pk": 13771, "fields": {"orig_filename": "Izso_Miklos_1831_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50", "author": "", "orig_id": 1414825}}, {"model": "metainfo.source", "pk": 13772, "fields": {"orig_filename": "Jablanczy_Julius_1846_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50", "author": "", "orig_id": 1414826}}, {"model": "metainfo.source", "pk": 13773, "fields": {"orig_filename": "Jablonowski_Karl_1807_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 50f.", "author": "", "orig_id": 1414827}}, {"model": "metainfo.source", "pk": 13774, "fields": {"orig_filename": "Jabornegg-Altenfels_Michael-Franz_1797_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51", "author": "", "orig_id": 1414828}}, {"model": "metainfo.source", "pk": 13775, "fields": {"orig_filename": "Jabornegg-Gamsenegg-Moderndorf_Markus_1837_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51", "author": "", "orig_id": 1414829}}, {"model": "metainfo.source", "pk": 13776, "fields": {"orig_filename": "Jachimowicz_Theodor_1800_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 51f.", "author": "", "orig_id": 1414830}}, {"model": "metainfo.source", "pk": 13777, "fields": {"orig_filename": "Jacob_Josef_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52", "author": "", "orig_id": 1414831}}, {"model": "metainfo.source", "pk": 13778, "fields": {"orig_filename": "Jacquin_Joseph-Franz_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52", "author": "", "orig_id": 1414832}}, {"model": "metainfo.source", "pk": 13779, "fields": {"orig_filename": "Jacquin_Nicolaus-Joseph_1727_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 52f.", "author": "", "orig_id": 1414833}}, {"model": "metainfo.source", "pk": 13780, "fields": {"orig_filename": "Jaeckel_Josef_1778_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53", "author": "", "orig_id": 1414834}}, {"model": "metainfo.source", "pk": 13781, "fields": {"orig_filename": "Jaeger-Jaxthal_Eduard_1818_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57f.", "author": "", "orig_id": 1414911}}, {"model": "metainfo.source", "pk": 13782, "fields": {"orig_filename": "Jaeger-Jaxthal_Friedrich_1784_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 58", "author": "", "orig_id": 1414912}}, {"model": "metainfo.source", "pk": 13783, "fields": {"orig_filename": "Jaeger_Adolf_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53", "author": "", "orig_id": 1414835}}, {"model": "metainfo.source", "pk": 13784, "fields": {"orig_filename": "Jaeger_Albert_1801_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 53f.", "author": "", "orig_id": 1414836}}, {"model": "metainfo.source", "pk": 13785, "fields": {"orig_filename": "Jaeger_Alderich_1746_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54", "author": "", "orig_id": 1414837}}, {"model": "metainfo.source", "pk": 13786, "fields": {"orig_filename": "Jaeger_Anna_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54", "author": "", "orig_id": 1414838}}, {"model": "metainfo.source", "pk": 13787, "fields": {"orig_filename": "Jaeger_Ferdinand_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 54f.", "author": "", "orig_id": 1414839}}, {"model": "metainfo.source", "pk": 13788, "fields": {"orig_filename": "Jaeger_Franz_1780_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414840}}, {"model": "metainfo.source", "pk": 13789, "fields": {"orig_filename": "Jaeger_Franz_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414841}}, {"model": "metainfo.source", "pk": 13790, "fields": {"orig_filename": "Jaeger_Gustav-Maria_1835_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 56", "author": "", "orig_id": 1414906}}, {"model": "metainfo.source", "pk": 13791, "fields": {"orig_filename": "Jaeger_Gustav_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55", "author": "", "orig_id": 1414904}}, {"model": "metainfo.source", "pk": 13792, "fields": {"orig_filename": "Jaeger_Gustav_1865_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 55f.", "author": "", "orig_id": 1414905}}, {"model": "metainfo.source", "pk": 13793, "fields": {"orig_filename": "Jaeger_Karl_1836_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 56f.", "author": "", "orig_id": 1414907}}, {"model": "metainfo.source", "pk": 13794, "fields": {"orig_filename": "Jaeger_Matthias_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414908}}, {"model": "metainfo.source", "pk": 13795, "fields": {"orig_filename": "Jaeger_Robert_1890_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414909}}, {"model": "metainfo.source", "pk": 13796, "fields": {"orig_filename": "Jaeger_Vital_1858_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 57", "author": "", "orig_id": 1414910}}, {"model": "metainfo.source", "pk": 13797, "fields": {"orig_filename": "Jaekel_Franz-Josef_1836_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 58f.", "author": "", "orig_id": 1414913}}, {"model": "metainfo.source", "pk": 13798, "fields": {"orig_filename": "Jaell_Alfred_1832_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414914}}, {"model": "metainfo.source", "pk": 13799, "fields": {"orig_filename": "Jaffe_Max_1845_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414915}}, {"model": "metainfo.source", "pk": 13800, "fields": {"orig_filename": "Jagemann_Carl_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2179610}}, {"model": "metainfo.source", "pk": 13801, "fields": {"orig_filename": "Jager_Francis_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59", "author": "", "orig_id": 1414916}}, {"model": "metainfo.source", "pk": 13802, "fields": {"orig_filename": "Jagic_Vatroslav_1838_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 59f.", "author": "", "orig_id": 1414917}}, {"model": "metainfo.source", "pk": 13803, "fields": {"orig_filename": "Jahne_Ludwig_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62f.", "author": "", "orig_id": 1414925}}, {"model": "metainfo.source", "pk": 13804, "fields": {"orig_filename": "Jahn_Alois_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 60", "author": "", "orig_id": 1414918}}, {"model": "metainfo.source", "pk": 13805, "fields": {"orig_filename": "Jahn_Gustav_1850_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 60f.", "author": "", "orig_id": 1414919}}, {"model": "metainfo.source", "pk": 13806, "fields": {"orig_filename": "Jahn_Gustav_1879_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 61", "author": "", "orig_id": 1414920}}, {"model": "metainfo.source", "pk": 13807, "fields": {"orig_filename": "Jahn_Jaroslav-Jilji_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 61f.", "author": "", "orig_id": 1414921}}, {"model": "metainfo.source", "pk": 13808, "fields": {"orig_filename": "Jahn_Jilji-Vratislav_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414922}}, {"model": "metainfo.source", "pk": 13809, "fields": {"orig_filename": "Jahn_Marie_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414923}}, {"model": "metainfo.source", "pk": 13810, "fields": {"orig_filename": "Jahn_Wilhelm_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 62", "author": "", "orig_id": 1414924}}, {"model": "metainfo.source", "pk": 13811, "fields": {"orig_filename": "Jakesch_Alexander_1862_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414927}}, {"model": "metainfo.source", "pk": 13812, "fields": {"orig_filename": "Jakesch_Heinrich_1867_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414990}}, {"model": "metainfo.source", "pk": 13813, "fields": {"orig_filename": "Jakitsch_Richard_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 63", "author": "", "orig_id": 1414991}}, {"model": "metainfo.source", "pk": 13814, "fields": {"orig_filename": "Jakob-Herminenthal_Wilhelm_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64", "author": "", "orig_id": 1414993}}, {"model": "metainfo.source", "pk": 13815, "fields": {"orig_filename": "Jakobey_Karoly_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64", "author": "", "orig_id": 1414994}}, {"model": "metainfo.source", "pk": 13816, "fields": {"orig_filename": "Jakopic_Richard_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 64f.", "author": "", "orig_id": 1414995}}, {"model": "metainfo.source", "pk": 13817, "fields": {"orig_filename": "Jaksch-Wartenhorst_Anton_1810_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 65f.", "author": "", "orig_id": 1414999}}, {"model": "metainfo.source", "pk": 13818, "fields": {"orig_filename": "Jaksch-Wartenhorst_August_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66", "author": "", "orig_id": 1415000}}, {"model": "metainfo.source", "pk": 13819, "fields": {"orig_filename": "Jaksch-Wartenhorst_Rudolf_1855_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 66", "author": "", "orig_id": 1415001}}, {"model": "metainfo.source", "pk": 13820, "fields": {"orig_filename": "Hummelauer_Franz_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415603}}, {"model": "metainfo.source", "pk": 13821, "fields": {"orig_filename": "Hummel_Carl_1769_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8f.", "author": "", "orig_id": 1415596}}, {"model": "metainfo.source", "pk": 13822, "fields": {"orig_filename": "Hummel_Christian_1787_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9", "author": "", "orig_id": 1415597}}, {"model": "metainfo.source", "pk": 13823, "fields": {"orig_filename": "Hummel_Johann-Ludwig_1754_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9", "author": "", "orig_id": 1415598}}, {"model": "metainfo.source", "pk": 13824, "fields": {"orig_filename": "Hummel_Johann-Nep_1778_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 9f.", "author": "", "orig_id": 1415599}}, {"model": "metainfo.source", "pk": 13825, "fields": {"orig_filename": "Hummel_Joseph-Friedrich_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415600}}, {"model": "metainfo.source", "pk": 13826, "fields": {"orig_filename": "Hummel_Karl_1801_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415601}}, {"model": "metainfo.source", "pk": 13827, "fields": {"orig_filename": "Hummel_Luise_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10", "author": "", "orig_id": 1415602}}, {"model": "metainfo.source", "pk": 13828, "fields": {"orig_filename": "Hummer_Andre_1868_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 10f.", "author": "", "orig_id": 1415604}}, {"model": "metainfo.source", "pk": 13829, "fields": {"orig_filename": "Hunanian_Leontius_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415673}}, {"model": "metainfo.source", "pk": 13830, "fields": {"orig_filename": "Huna_Ludwig_1872_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415672}}, {"model": "metainfo.source", "pk": 13831, "fields": {"orig_filename": "Hundertpfund_Liberat_1806_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11", "author": "", "orig_id": 1415674}}, {"model": "metainfo.source", "pk": 13832, "fields": {"orig_filename": "Hunfalvy_Johann_1820_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 11f.", "author": "", "orig_id": 1415675}}, {"model": "metainfo.source", "pk": 13833, "fields": {"orig_filename": "Hunfalvy_Paul_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415676}}, {"model": "metainfo.source", "pk": 13834, "fields": {"orig_filename": "Hunglinger_Andreas-Magnus_1763_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415677}}, {"model": "metainfo.source", "pk": 13835, "fields": {"orig_filename": "Hunold_Balthasar_1828_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12", "author": "", "orig_id": 1415678}}, {"model": "metainfo.source", "pk": 13836, "fields": {"orig_filename": "Hupfauf_Johann-Peregrin_1856_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 12f.", "author": "", "orig_id": 1415679}}, {"model": "metainfo.source", "pk": 13837, "fields": {"orig_filename": "Hupfer_Karl_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13", "author": "", "orig_id": 1415680}}, {"model": "metainfo.source", "pk": 13838, "fields": {"orig_filename": "Hupka_Joseph_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13", "author": "", "orig_id": 1415681}}, {"model": "metainfo.source", "pk": 13839, "fields": {"orig_filename": "Huppert_Karl-Hugo_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 13f.", "author": "", "orig_id": 1415682}}, {"model": "metainfo.source", "pk": 13840, "fields": {"orig_filename": "Hurdalek_Josef-Franz_1746_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14", "author": "", "orig_id": 1415683}}, {"model": "metainfo.source", "pk": 13841, "fields": {"orig_filename": "Hurter-Ammann_Franz_1824_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14f.", "author": "", "orig_id": 1415685}}, {"model": "metainfo.source", "pk": 13842, "fields": {"orig_filename": "Hurter-Ammann_Friedrich-Emanuel_1787_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 14", "author": "", "orig_id": 1415684}}, {"model": "metainfo.source", "pk": 13843, "fields": {"orig_filename": "Hurter-Ammann_Heinrich_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15", "author": "", "orig_id": 1415686}}, {"model": "metainfo.source", "pk": 13844, "fields": {"orig_filename": "Hurter-Ammann_Hugo_1832_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15", "author": "", "orig_id": 1415687}}, {"model": "metainfo.source", "pk": 13845, "fields": {"orig_filename": "Husnik_Jakob_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 15f.", "author": "", "orig_id": 1415688}}, {"model": "metainfo.source", "pk": 13846, "fields": {"orig_filename": "Hussak_Eugen_1856_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16", "author": "", "orig_id": 1415690}}, {"model": "metainfo.source", "pk": 13847, "fields": {"orig_filename": "Hussarek-Heinlein_Max_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16f.", "author": "", "orig_id": 1415691}}, {"model": "metainfo.source", "pk": 13848, "fields": {"orig_filename": "Husserl_Edmund_1859_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 17f.", "author": "", "orig_id": 1415692}}, {"model": "metainfo.source", "pk": 13849, "fields": {"orig_filename": "Hussian_Raphael-Ferdinand_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415693}}, {"model": "metainfo.source", "pk": 13850, "fields": {"orig_filename": "Huss_Karl_1761_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 16", "author": "", "orig_id": 1415689}}, {"model": "metainfo.source", "pk": 13851, "fields": {"orig_filename": "Huter_Andreas_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415695}}, {"model": "metainfo.source", "pk": 13852, "fields": {"orig_filename": "Huter_Josef-Franz_1777_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415696}}, {"model": "metainfo.source", "pk": 13853, "fields": {"orig_filename": "Huter_Josef_1843_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 18", "author": "", "orig_id": 1415694}}, {"model": "metainfo.source", "pk": 13854, "fields": {"orig_filename": "Huter_Rupert_1834_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415697}}, {"model": "metainfo.source", "pk": 13855, "fields": {"orig_filename": "Hutschenreiter_Viktor-Max_1828_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415763}}, {"model": "metainfo.source", "pk": 13856, "fields": {"orig_filename": "Huttary_Josef_1842_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415764}}, {"model": "metainfo.source", "pk": 13857, "fields": {"orig_filename": "Hutterer_Johann_1835_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415767}}, {"model": "metainfo.source", "pk": 13858, "fields": {"orig_filename": "Hutterstrasser-Scheidl_Lili_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415769}}, {"model": "metainfo.source", "pk": 13859, "fields": {"orig_filename": "Hutterstrasser_Carl_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415768}}, {"model": "metainfo.source", "pk": 13860, "fields": {"orig_filename": "Hutter_Josef_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19", "author": "", "orig_id": 1415765}}, {"model": "metainfo.source", "pk": 13861, "fields": {"orig_filename": "Hutter_Theodor_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 19f.", "author": "", "orig_id": 1415766}}, {"model": "metainfo.source", "pk": 13862, "fields": {"orig_filename": "Huwyler_Hugo_1878_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20", "author": "", "orig_id": 1415770}}, {"model": "metainfo.source", "pk": 13863, "fields": {"orig_filename": "Huyer_Reinhold_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 20f.", "author": "", "orig_id": 1415771}}, {"model": "metainfo.source", "pk": 13864, "fields": {"orig_filename": "Huyn_Johann-Karl_1812_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415772}}, {"model": "metainfo.source", "pk": 13865, "fields": {"orig_filename": "Huyn_Karl-Georg_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415773}}, {"model": "metainfo.source", "pk": 13866, "fields": {"orig_filename": "Huyn_Paul_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21", "author": "", "orig_id": 1415774}}, {"model": "metainfo.source", "pk": 13867, "fields": {"orig_filename": "Hyam_Johann_1733_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 21f.", "author": "", "orig_id": 1415775}}, {"model": "metainfo.source", "pk": 13868, "fields": {"orig_filename": "Hybes_Josef_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2173843}}, {"model": "metainfo.source", "pk": 13869, "fields": {"orig_filename": "Hybler_Wenzel_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22", "author": "", "orig_id": 1415776}}, {"model": "metainfo.source", "pk": 13870, "fields": {"orig_filename": "Hye-Glunek_Anton-Josef_1807_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22", "author": "", "orig_id": 1415777}}, {"model": "metainfo.source", "pk": 13871, "fields": {"orig_filename": "Hynais_Vojtech_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 22f.", "author": "", "orig_id": 1415778}}, {"model": "metainfo.source", "pk": 13872, "fields": {"orig_filename": "Hyrtl_Auguste_1816_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23", "author": "", "orig_id": 1415779}}, {"model": "metainfo.source", "pk": 13873, "fields": {"orig_filename": "Hyrtl_Jakob_1799_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23", "author": "", "orig_id": 1415780}}, {"model": "metainfo.source", "pk": 13874, "fields": {"orig_filename": "Hyrtl_Josef_1810_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 23f.", "author": "", "orig_id": 1415781}}, {"model": "metainfo.source", "pk": 13875, "fields": {"orig_filename": "Hysel_Franz-Eduard_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 24f.", "author": "", "orig_id": 1415782}}, {"model": "metainfo.source", "pk": 13876, "fields": {"orig_filename": "Ibach_Alfred_1902_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415783}}, {"model": "metainfo.source", "pk": 13877, "fields": {"orig_filename": "Ibler_Janko_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415785}}, {"model": "metainfo.source", "pk": 13878, "fields": {"orig_filename": "Ibl_Franz_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25", "author": "", "orig_id": 1415784}}, {"model": "metainfo.source", "pk": 13879, "fields": {"orig_filename": "Ichhaeuser_Josef_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 25f.", "author": "", "orig_id": 1415786}}, {"model": "metainfo.source", "pk": 13880, "fields": {"orig_filename": "Iellico_Giuseppe_1855_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1415787}}, {"model": "metainfo.source", "pk": 13881, "fields": {"orig_filename": "Igel_Benzion_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1414467}}, {"model": "metainfo.source", "pk": 13882, "fields": {"orig_filename": "Igler_Gustav_1842_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26", "author": "", "orig_id": 1414468}}, {"model": "metainfo.source", "pk": 13883, "fields": {"orig_filename": "Ignjatovic_Jakov_1824_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 26f.", "author": "", "orig_id": 1414469}}, {"model": "metainfo.source", "pk": 13884, "fields": {"orig_filename": "Ihasz_Daniel_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414470}}, {"model": "metainfo.source", "pk": 13885, "fields": {"orig_filename": "Ilesic_Fran_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414471}}, {"model": "metainfo.source", "pk": 13886, "fields": {"orig_filename": "Ilg_Albert_1847_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27", "author": "", "orig_id": 1414472}}, {"model": "metainfo.source", "pk": 13887, "fields": {"orig_filename": "Ilg_Johann-Georg_1771_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 27f.", "author": "", "orig_id": 1414473}}, {"model": "metainfo.source", "pk": 13888, "fields": {"orig_filename": "Ilic-Oriovcanin_Luka_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414474}}, {"model": "metainfo.source", "pk": 13889, "fields": {"orig_filename": "Ilijasevic_Stjepan_1814_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414475}}, {"model": "metainfo.source", "pk": 13890, "fields": {"orig_filename": "Ilijic_Stjepko_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414476}}, {"model": "metainfo.source", "pk": 13891, "fields": {"orig_filename": "Illem_Franz-Josef-Georg_1865_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28", "author": "", "orig_id": 1414477}}, {"model": "metainfo.source", "pk": 13892, "fields": {"orig_filename": "Illing_Vilma_1871_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 28f.", "author": "", "orig_id": 1414478}}, {"model": "metainfo.source", "pk": 13893, "fields": {"orig_filename": "Illitsch_Alexander_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414479}}, {"model": "metainfo.source", "pk": 13894, "fields": {"orig_filename": "Illmer_Hans_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414482}}, {"model": "metainfo.source", "pk": 13895, "fields": {"orig_filename": "Illner_Karl_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414483}}, {"model": "metainfo.source", "pk": 13896, "fields": {"orig_filename": "Ilmer_Andreas_1778_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29", "author": "", "orig_id": 1414480}}, {"model": "metainfo.source", "pk": 13897, "fields": {"orig_filename": "Ilosvay-Nagy-Ilosva_Lajos_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 29f.", "author": "", "orig_id": 1414484}}, {"model": "metainfo.source", "pk": 13898, "fields": {"orig_filename": "Ilwof_Franz_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30", "author": "", "orig_id": 1414485}}, {"model": "metainfo.source", "pk": 13899, "fields": {"orig_filename": "Imendoerffer_Benno_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30", "author": "", "orig_id": 1414486}}, {"model": "metainfo.source", "pk": 13900, "fields": {"orig_filename": "Imre_Sandor_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 30f.", "author": "", "orig_id": 1414487}}, {"model": "metainfo.source", "pk": 13901, "fields": {"orig_filename": "Inama-Sternegg_Fanny_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414490}}, {"model": "metainfo.source", "pk": 13902, "fields": {"orig_filename": "Inama-Sternegg_Johann-Paul_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 32", "author": "", "orig_id": 1414562}}, {"model": "metainfo.source", "pk": 13903, "fields": {"orig_filename": "Inama-Sternegg_Karl-Theodor_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414564}}, {"model": "metainfo.source", "pk": 13904, "fields": {"orig_filename": "Inama-Sternegg_Karl_1871_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 32", "author": "", "orig_id": 1414563}}, {"model": "metainfo.source", "pk": 13905, "fields": {"orig_filename": "Inama_Adalbert_1798_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414488}}, {"model": "metainfo.source", "pk": 13906, "fields": {"orig_filename": "Inama_Vigilio_1835_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 31", "author": "", "orig_id": 1414489}}, {"model": "metainfo.source", "pk": 13907, "fields": {"orig_filename": "Inauen_Andreas_1880_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 33", "author": "", "orig_id": 1414565}}, {"model": "metainfo.source", "pk": 13908, "fields": {"orig_filename": "Indra_Alois_1849_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 33f.", "author": "", "orig_id": 1414566}}, {"model": "metainfo.source", "pk": 13909, "fields": {"orig_filename": "Inffeld_Adolf_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414567}}, {"model": "metainfo.source", "pk": 13910, "fields": {"orig_filename": "Ingarden_Roman_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414568}}, {"model": "metainfo.source", "pk": 13911, "fields": {"orig_filename": "Ingerle_Rudolf-F_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34", "author": "", "orig_id": 1414569}}, {"model": "metainfo.source", "pk": 13912, "fields": {"orig_filename": "Inghirami_Giovanni_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 34f.", "author": "", "orig_id": 1414570}}, {"model": "metainfo.source", "pk": 13913, "fields": {"orig_filename": "Ingigian_Lukas_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414571}}, {"model": "metainfo.source", "pk": 13914, "fields": {"orig_filename": "Ingwer_Isidor_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414572}}, {"model": "metainfo.source", "pk": 13915, "fields": {"orig_filename": "Inlaender_Ludwig_1849_1900.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414573}}, {"model": "metainfo.source", "pk": 13916, "fields": {"orig_filename": "Innerhofer_Franz_1847_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414574}}, {"model": "metainfo.source", "pk": 13917, "fields": {"orig_filename": "Innerhofer_Franz_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414576}}, {"model": "metainfo.source", "pk": 13918, "fields": {"orig_filename": "Innerhofer_Franz_1884_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 35", "author": "", "orig_id": 1414575}}, {"model": "metainfo.source", "pk": 13919, "fields": {"orig_filename": "Innerhofer_Johann_1837_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414577}}, {"model": "metainfo.source", "pk": 13920, "fields": {"orig_filename": "Innerkofler_Adolf_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414578}}, {"model": "metainfo.source", "pk": 13921, "fields": {"orig_filename": "Innerkofler_Christian_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414579}}, {"model": "metainfo.source", "pk": 13922, "fields": {"orig_filename": "Innerkofler_Franz_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414580}}, {"model": "metainfo.source", "pk": 13923, "fields": {"orig_filename": "Innerkofler_Johann-Jakob_1833_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 36", "author": "", "orig_id": 1414581}}, {"model": "metainfo.source", "pk": 13924, "fields": {"orig_filename": "Horvat_Rudolf_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417397}}, {"model": "metainfo.source", "pk": 13925, "fields": {"orig_filename": "Horvat_Stephan_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417398}}, {"model": "metainfo.source", "pk": 13926, "fields": {"orig_filename": "Horwitz_Karl_1884_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431f.", "author": "", "orig_id": 1417407}}, {"model": "metainfo.source", "pk": 13927, "fields": {"orig_filename": "Horwitz_Willibald_1843_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417409}}, {"model": "metainfo.source", "pk": 13928, "fields": {"orig_filename": "Horzalka_Johann_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417410}}, {"model": "metainfo.source", "pk": 13929, "fields": {"orig_filename": "Horzeyschy_Kaethe_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417411}}, {"model": "metainfo.source", "pk": 13930, "fields": {"orig_filename": "Hoschek_Fritz_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417482}}, {"model": "metainfo.source", "pk": 13931, "fields": {"orig_filename": "Hoschna_Karl_1876_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432", "author": "", "orig_id": 1417484}}, {"model": "metainfo.source", "pk": 13932, "fields": {"orig_filename": "Hoser_Josef-Karl-Eduard_1770_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 432f.", "author": "", "orig_id": 1417485}}, {"model": "metainfo.source", "pk": 13933, "fields": {"orig_filename": "Hossinger_Julius_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433", "author": "", "orig_id": 1417486}}, {"model": "metainfo.source", "pk": 13934, "fields": {"orig_filename": "Hossner_Josef_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433", "author": "", "orig_id": 1417487}}, {"model": "metainfo.source", "pk": 13935, "fields": {"orig_filename": "Hostasch_Josef_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417489}}, {"model": "metainfo.source", "pk": 13936, "fields": {"orig_filename": "Hostinsky_Otakar_1847_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417491}}, {"model": "metainfo.source", "pk": 13937, "fields": {"orig_filename": "Host_Nicolaus-Thomas_1761_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 433f.", "author": "", "orig_id": 1417488}}, {"model": "metainfo.source", "pk": 13938, "fields": {"orig_filename": "Hotze_Friedrich_1833_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434", "author": "", "orig_id": 1417492}}, {"model": "metainfo.source", "pk": 13939, "fields": {"orig_filename": "Houdek_Vitezslav_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 434f.", "author": "", "orig_id": 1417493}}, {"model": "metainfo.source", "pk": 13940, "fields": {"orig_filename": "Hovorka-Zderas_Oskar_1866_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417495}}, {"model": "metainfo.source", "pk": 13941, "fields": {"orig_filename": "Hoyos-Sprinzenstein_Johann-Ernst_1779_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417497}}, {"model": "metainfo.source", "pk": 13942, "fields": {"orig_filename": "Hoyos-Sprinzenstein_Rudolf_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417498}}, {"model": "metainfo.source", "pk": 13943, "fields": {"orig_filename": "Hoyos_Alexander_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417496}}, {"model": "metainfo.source", "pk": 13944, "fields": {"orig_filename": "Hozhevar_Johann_1829_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435", "author": "", "orig_id": 1417499}}, {"model": "metainfo.source", "pk": 13945, "fields": {"orig_filename": "Hrabak_Josef_1833_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 435f.", "author": "", "orig_id": 1417500}}, {"model": "metainfo.source", "pk": 13946, "fields": {"orig_filename": "Hrabovsky-Hrabova_Johann_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417501}}, {"model": "metainfo.source", "pk": 13947, "fields": {"orig_filename": "Hrachowina_Karl_1845_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417503}}, {"model": "metainfo.source", "pk": 13948, "fields": {"orig_filename": "Hrach_Ferdinand_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436", "author": "", "orig_id": 1417502}}, {"model": "metainfo.source", "pk": 13949, "fields": {"orig_filename": "Hradeczky_Hermann_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 436f.", "author": "", "orig_id": 1417504}}, {"model": "metainfo.source", "pk": 13950, "fields": {"orig_filename": "Hradeczky_Johann-Nep_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417575}}, {"model": "metainfo.source", "pk": 13951, "fields": {"orig_filename": "Hranilovic-Cvetasin_Hinko_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417577}}, {"model": "metainfo.source", "pk": 13952, "fields": {"orig_filename": "Hranilovic_Jovan_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417576}}, {"model": "metainfo.source", "pk": 13953, "fields": {"orig_filename": "Hrdina_Josef-Leopold_1856_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437", "author": "", "orig_id": 1417578}}, {"model": "metainfo.source", "pk": 13954, "fields": {"orig_filename": "Hrdlicka_Ales_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 437f.", "author": "", "orig_id": 1417579}}, {"model": "metainfo.source", "pk": 13955, "fields": {"orig_filename": "Hreljanovic_Ivo_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 438", "author": "", "orig_id": 1417580}}, {"model": "metainfo.source", "pk": 13956, "fields": {"orig_filename": "Hren_Jakob_1830_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 438f.", "author": "", "orig_id": 1417581}}, {"model": "metainfo.source", "pk": 13957, "fields": {"orig_filename": "Hribar_Ivan_1851_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417582}}, {"model": "metainfo.source", "pk": 13958, "fields": {"orig_filename": "Hrimaly_Adalbert_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417583}}, {"model": "metainfo.source", "pk": 13959, "fields": {"orig_filename": "Hrncir_Thomas_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417584}}, {"model": "metainfo.source", "pk": 13960, "fields": {"orig_filename": "Hrnczyrz_Emma_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439", "author": "", "orig_id": 1417585}}, {"model": "metainfo.source", "pk": 13961, "fields": {"orig_filename": "Hrodegh_Anton_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 439f.", "author": "", "orig_id": 1417586}}, {"model": "metainfo.source", "pk": 13962, "fields": {"orig_filename": "Hromada_Anton_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417587}}, {"model": "metainfo.source", "pk": 13963, "fields": {"orig_filename": "Hromatko_Johann-Nep-Norbert_1783_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440", "author": "", "orig_id": 1417590}}, {"model": "metainfo.source", "pk": 13964, "fields": {"orig_filename": "Hrovat_Ladislav_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 440f.", "author": "", "orig_id": 1417592}}, {"model": "metainfo.source", "pk": 13965, "fields": {"orig_filename": "Hruby_Sergius-Josef_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2033381}}, {"model": "metainfo.source", "pk": 13966, "fields": {"orig_filename": "Hruschauer_Franz_1807_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417593}}, {"model": "metainfo.source", "pk": 13967, "fields": {"orig_filename": "Hruschka_Annie_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417594}}, {"model": "metainfo.source", "pk": 13968, "fields": {"orig_filename": "Hruschka_Ella_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417595}}, {"model": "metainfo.source", "pk": 13969, "fields": {"orig_filename": "Hrussoczy_Marie_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417596}}, {"model": "metainfo.source", "pk": 13970, "fields": {"orig_filename": "Hruza_Ernst_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441", "author": "", "orig_id": 1417597}}, {"model": "metainfo.source", "pk": 13971, "fields": {"orig_filename": "Hubad_Franc_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 441f.", "author": "", "orig_id": 1417664}}, {"model": "metainfo.source", "pk": 13972, "fields": {"orig_filename": "Hubad_Matej_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417665}}, {"model": "metainfo.source", "pk": 13973, "fields": {"orig_filename": "Hubay_Jenoe_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417666}}, {"model": "metainfo.source", "pk": 13974, "fields": {"orig_filename": "Huber-Penig_Johann_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417680}}, {"model": "metainfo.source", "pk": 13975, "fields": {"orig_filename": "Huber-Penig_Paul_1771_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417681}}, {"model": "metainfo.source", "pk": 13976, "fields": {"orig_filename": "Huberman_Bronislav_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445f.", "author": "", "orig_id": 1417682}}, {"model": "metainfo.source", "pk": 13977, "fields": {"orig_filename": "Hubert_Josef_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417683}}, {"model": "metainfo.source", "pk": 13978, "fields": {"orig_filename": "Huber_Adolf_1874_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442", "author": "", "orig_id": 1417667}}, {"model": "metainfo.source", "pk": 13979, "fields": {"orig_filename": "Huber_Alfons_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 442f.", "author": "", "orig_id": 1417668}}, {"model": "metainfo.source", "pk": 13980, "fields": {"orig_filename": "Huber_Antonie_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443", "author": "", "orig_id": 1417670}}, {"model": "metainfo.source", "pk": 13981, "fields": {"orig_filename": "Huber_Anton_1768_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443", "author": "", "orig_id": 1417669}}, {"model": "metainfo.source", "pk": 13982, "fields": {"orig_filename": "Huber_Carl-Rudolf_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 443f.", "author": "", "orig_id": 1417671}}, {"model": "metainfo.source", "pk": 13983, "fields": {"orig_filename": "Huber_Christian-Wilhelm_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417672}}, {"model": "metainfo.source", "pk": 13984, "fields": {"orig_filename": "Huber_Josef_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417673}}, {"model": "metainfo.source", "pk": 13985, "fields": {"orig_filename": "Huber_Josef_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417674}}, {"model": "metainfo.source", "pk": 13986, "fields": {"orig_filename": "Huber_Josef_1867_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417675}}, {"model": "metainfo.source", "pk": 13987, "fields": {"orig_filename": "Huber_Leopold_1766_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 444", "author": "", "orig_id": 1417676}}, {"model": "metainfo.source", "pk": 13988, "fields": {"orig_filename": "Huber_Maximilian_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417677}}, {"model": "metainfo.source", "pk": 13989, "fields": {"orig_filename": "Huber_Nikolaus_1833_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 445", "author": "", "orig_id": 1417678}}, {"model": "metainfo.source", "pk": 13990, "fields": {"orig_filename": "Hudak_Ede-Agost_1822_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417684}}, {"model": "metainfo.source", "pk": 13991, "fields": {"orig_filename": "Hudecek_Antonin_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417686}}, {"model": "metainfo.source", "pk": 13992, "fields": {"orig_filename": "Hudec_Jozef_1863_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446", "author": "", "orig_id": 1417685}}, {"model": "metainfo.source", "pk": 13993, "fields": {"orig_filename": "Hudelist_Josef_1759_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 446f.", "author": "", "orig_id": 1417687}}, {"model": "metainfo.source", "pk": 13994, "fields": {"orig_filename": "Hudetz_Josef_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417758}}, {"model": "metainfo.source", "pk": 13995, "fields": {"orig_filename": "Hueber_Anton_1861_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1453704}}, {"model": "metainfo.source", "pk": 13996, "fields": {"orig_filename": "Hueber_Hans_1813_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417759}}, {"model": "metainfo.source", "pk": 13997, "fields": {"orig_filename": "Hueber_Johann-Nep_1802_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1420822}}, {"model": "metainfo.source", "pk": 13998, "fields": {"orig_filename": "Huebler_Franz_1770_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415500}}, {"model": "metainfo.source", "pk": 13999, "fields": {"orig_filename": "Huebl_Albert_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447", "author": "", "orig_id": 1417760}}, {"model": "metainfo.source", "pk": 14000, "fields": {"orig_filename": "Huebl_Arthur_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 447f.", "author": "", "orig_id": 1417761}}, {"model": "metainfo.source", "pk": 14001, "fields": {"orig_filename": "Huebl_Harald-Hans_1913_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 448", "author": "", "orig_id": 1417762}}, {"model": "metainfo.source", "pk": 14002, "fields": {"orig_filename": "Huebl_Heinrich_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415499}}, {"model": "metainfo.source", "pk": 14003, "fields": {"orig_filename": "Huebmer_Georg_1755_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1", "author": "", "orig_id": 1415501}}, {"model": "metainfo.source", "pk": 14004, "fields": {"orig_filename": "Huebner_Anastasius_1789_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 1f.", "author": "", "orig_id": 1415502}}, {"model": "metainfo.source", "pk": 14005, "fields": {"orig_filename": "Huebner_Josef-Alexander_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415503}}, {"model": "metainfo.source", "pk": 14006, "fields": {"orig_filename": "Huebner_Ludwig_1839_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415504}}, {"model": "metainfo.source", "pk": 14007, "fields": {"orig_filename": "Huebner_Maria_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2", "author": "", "orig_id": 1415505}}, {"model": "metainfo.source", "pk": 14008, "fields": {"orig_filename": "Huebsch_Adolph_1830_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 2f.", "author": "", "orig_id": 1415506}}, {"model": "metainfo.source", "pk": 14009, "fields": {"orig_filename": "Huegel_Carl-Alexander_1796_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415507}}, {"model": "metainfo.source", "pk": 14010, "fields": {"orig_filename": "Huegel_Clemens-Wenzel_1792_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415508}}, {"model": "metainfo.source", "pk": 14011, "fields": {"orig_filename": "Huegel_Eduard_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3", "author": "", "orig_id": 1415509}}, {"model": "metainfo.source", "pk": 14012, "fields": {"orig_filename": "Huelgerth_Heribert_1847_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 3f.", "author": "", "orig_id": 1415579}}, {"model": "metainfo.source", "pk": 14013, "fields": {"orig_filename": "Huelgerth_Ludwig_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4", "author": "", "orig_id": 1415580}}, {"model": "metainfo.source", "pk": 14014, "fields": {"orig_filename": "Huemer_Georg_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4", "author": "", "orig_id": 1415581}}, {"model": "metainfo.source", "pk": 14015, "fields": {"orig_filename": "Huemer_Hans_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 4f.", "author": "", "orig_id": 1415582}}, {"model": "metainfo.source", "pk": 14016, "fields": {"orig_filename": "Huemer_Johann_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5", "author": "", "orig_id": 1415583}}, {"model": "metainfo.source", "pk": 14017, "fields": {"orig_filename": "Huerth_Theobald_1795_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5", "author": "", "orig_id": 1415584}}, {"model": "metainfo.source", "pk": 14018, "fields": {"orig_filename": "Huesing_Georg_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 5f.", "author": "", "orig_id": 1415585}}, {"model": "metainfo.source", "pk": 14019, "fields": {"orig_filename": "Hueter_Heinrich_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6", "author": "", "orig_id": 1415586}}, {"model": "metainfo.source", "pk": 14020, "fields": {"orig_filename": "Huettenbrenner_Anselm_1794_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6", "author": "", "orig_id": 1415587}}, {"model": "metainfo.source", "pk": 14021, "fields": {"orig_filename": "Huettenbrenner_Erich_1878_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 6f.", "author": "", "orig_id": 1415588}}, {"model": "metainfo.source", "pk": 14022, "fields": {"orig_filename": "Huetter_Elias_1774_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 7", "author": "", "orig_id": 1415589}}, {"model": "metainfo.source", "pk": 14023, "fields": {"orig_filename": "Huetter_Emil_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 7", "author": "", "orig_id": 1415590}}, {"model": "metainfo.source", "pk": 14024, "fields": {"orig_filename": "Hugelmann_Karl_1844_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415591}}, {"model": "metainfo.source", "pk": 14025, "fields": {"orig_filename": "Hula_Anton_1896_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415594}}, {"model": "metainfo.source", "pk": 14026, "fields": {"orig_filename": "Hula_Eduard_1862_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 3 (Lfg. 11, 1961), S. 8", "author": "", "orig_id": 1415595}}, {"model": "metainfo.source", "pk": 14027, "fields": {"orig_filename": "Hollitzer_Carl_1831_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417011}}, {"model": "metainfo.source", "pk": 14028, "fields": {"orig_filename": "Hollosy_Justinian_1819_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417015}}, {"model": "metainfo.source", "pk": 14029, "fields": {"orig_filename": "Hollosy_Simon_1857_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417016}}, {"model": "metainfo.source", "pk": 14030, "fields": {"orig_filename": "Hollos_Laszlo_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403f.", "author": "", "orig_id": 1417014}}, {"model": "metainfo.source", "pk": 14031, "fields": {"orig_filename": "Hollo_Barnabas_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417012}}, {"model": "metainfo.source", "pk": 14032, "fields": {"orig_filename": "Hollo_Ludwig_1859_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1417013}}, {"model": "metainfo.source", "pk": 14033, "fields": {"orig_filename": "Hollpein_Heinrich_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417017}}, {"model": "metainfo.source", "pk": 14034, "fields": {"orig_filename": "Hollschek_Karl_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404", "author": "", "orig_id": 1417018}}, {"model": "metainfo.source", "pk": 14035, "fields": {"orig_filename": "Holly_Jan_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 404f.", "author": "", "orig_id": 1417019}}, {"model": "metainfo.source", "pk": 14036, "fields": {"orig_filename": "Holl_Lukas_1903_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417006}}, {"model": "metainfo.source", "pk": 14037, "fields": {"orig_filename": "Holl_Moritz_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417007}}, {"model": "metainfo.source", "pk": 14038, "fields": {"orig_filename": "Holtei_Luise_1800_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417021}}, {"model": "metainfo.source", "pk": 14039, "fields": {"orig_filename": "Holter_Markus_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417022}}, {"model": "metainfo.source", "pk": 14040, "fields": {"orig_filename": "Holter_Wenzel_1827_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405f.", "author": "", "orig_id": 1417023}}, {"model": "metainfo.source", "pk": 14041, "fields": {"orig_filename": "Holuby_Josef-Ludwig_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406f.", "author": "", "orig_id": 1417027}}, {"model": "metainfo.source", "pk": 14042, "fields": {"orig_filename": "Holub_Emil_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417024}}, {"model": "metainfo.source", "pk": 14043, "fields": {"orig_filename": "Holub_Georg_1861_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417025}}, {"model": "metainfo.source", "pk": 14044, "fields": {"orig_filename": "Holub_Karl_1830_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 406", "author": "", "orig_id": 1417026}}, {"model": "metainfo.source", "pk": 14045, "fields": {"orig_filename": "Holy_Josef_1874_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417101}}, {"model": "metainfo.source", "pk": 14046, "fields": {"orig_filename": "Holzapfel_Joseph_1815_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417103}}, {"model": "metainfo.source", "pk": 14047, "fields": {"orig_filename": "Holzapfel_Rudolf-Maria_1874_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407f.", "author": "", "orig_id": 1417104}}, {"model": "metainfo.source", "pk": 14048, "fields": {"orig_filename": "Holzer_Joseph_1824_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408", "author": "", "orig_id": 1417105}}, {"model": "metainfo.source", "pk": 14049, "fields": {"orig_filename": "Holzgethan_Georg_1799_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408", "author": "", "orig_id": 1417106}}, {"model": "metainfo.source", "pk": 14050, "fields": {"orig_filename": "Holzgethan_Ludwig_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 408f.", "author": "", "orig_id": 1417107}}, {"model": "metainfo.source", "pk": 14051, "fields": {"orig_filename": "Holzhammer_Josef_1850_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 409", "author": "", "orig_id": 1417108}}, {"model": "metainfo.source", "pk": 14052, "fields": {"orig_filename": "Holzhausen_Adolf_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 409", "author": "", "orig_id": 1417109}}, {"model": "metainfo.source", "pk": 14053, "fields": {"orig_filename": "Holzhausen_Fritz_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1417110}}, {"model": "metainfo.source", "pk": 14054, "fields": {"orig_filename": "Holzinger-Janaburg_Ferdinand_1836_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1417111}}, {"model": "metainfo.source", "pk": 14055, "fields": {"orig_filename": "Holzinger-Weidich_Carl_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410f.", "author": "", "orig_id": 1417112}}, {"model": "metainfo.source", "pk": 14056, "fields": {"orig_filename": "Holzinger_Rudolf_1898_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 410", "author": "", "orig_id": 1420820}}, {"model": "metainfo.source", "pk": 14057, "fields": {"orig_filename": "Holzknecht-Hort_Robert_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417114}}, {"model": "metainfo.source", "pk": 14058, "fields": {"orig_filename": "Holzknecht_Guido_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417113}}, {"model": "metainfo.source", "pk": 14059, "fields": {"orig_filename": "Holzmann_Michael_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411", "author": "", "orig_id": 1417115}}, {"model": "metainfo.source", "pk": 14060, "fields": {"orig_filename": "Holz_Vatroslav_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 407", "author": "", "orig_id": 1417102}}, {"model": "metainfo.source", "pk": 14061, "fields": {"orig_filename": "Homann-Herimberg_Emil_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 411f.", "author": "", "orig_id": 1417116}}, {"model": "metainfo.source", "pk": 14062, "fields": {"orig_filename": "Homberg_Herz_1749_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417117}}, {"model": "metainfo.source", "pk": 14063, "fields": {"orig_filename": "Homma_Hans_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417118}}, {"model": "metainfo.source", "pk": 14064, "fields": {"orig_filename": "Homolatsch_Josef_1812_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412", "author": "", "orig_id": 1417119}}, {"model": "metainfo.source", "pk": 14065, "fields": {"orig_filename": "Homolka_Benno_1860_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 412f.", "author": "", "orig_id": 1417120}}, {"model": "metainfo.source", "pk": 14066, "fields": {"orig_filename": "Honauer_Franz_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417121}}, {"model": "metainfo.source", "pk": 14067, "fields": {"orig_filename": "Honeder_Karl_1874_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417122}}, {"model": "metainfo.source", "pk": 14068, "fields": {"orig_filename": "Honigberger_Johann-Martin_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413", "author": "", "orig_id": 1417123}}, {"model": "metainfo.source", "pk": 14069, "fields": {"orig_filename": "Hontschik_Henriette_1852_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 413f.", "author": "", "orig_id": 1417124}}, {"model": "metainfo.source", "pk": 14070, "fields": {"orig_filename": "Hoor-Horocz_Karl_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414", "author": "", "orig_id": 1417125}}, {"model": "metainfo.source", "pk": 14071, "fields": {"orig_filename": "Hopfen_Franz_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414", "author": "", "orig_id": 1417196}}, {"model": "metainfo.source", "pk": 14072, "fields": {"orig_filename": "Hopffer_Albert_1854_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 414f.", "author": "", "orig_id": 1417197}}, {"model": "metainfo.source", "pk": 14073, "fields": {"orig_filename": "Hopfgartner_Karl_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417198}}, {"model": "metainfo.source", "pk": 14074, "fields": {"orig_filename": "Hopfner_Friedrich_1881_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417199}}, {"model": "metainfo.source", "pk": 14075, "fields": {"orig_filename": "Hopfner_Isidor_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415", "author": "", "orig_id": 1417200}}, {"model": "metainfo.source", "pk": 14076, "fields": {"orig_filename": "Hopfner_Theodor_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 415f.", "author": "", "orig_id": 1417201}}, {"model": "metainfo.source", "pk": 14077, "fields": {"orig_filename": "Hoppe_Alfred_1869_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416f.", "author": "", "orig_id": 1417204}}, {"model": "metainfo.source", "pk": 14078, "fields": {"orig_filename": "Hoppe_Paul_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417205}}, {"model": "metainfo.source", "pk": 14079, "fields": {"orig_filename": "Hopp_Franz_1833_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416", "author": "", "orig_id": 1417202}}, {"model": "metainfo.source", "pk": 14080, "fields": {"orig_filename": "Hopp_Friedrich-Ernst_1789_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 416", "author": "", "orig_id": 1417203}}, {"model": "metainfo.source", "pk": 14081, "fields": {"orig_filename": "Horak_Eduard_1838_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417207}}, {"model": "metainfo.source", "pk": 14082, "fields": {"orig_filename": "Horak_Johann-Nep_1815_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417208}}, {"model": "metainfo.source", "pk": 14083, "fields": {"orig_filename": "Horak_Wenzel-Emanuel_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417f.", "author": "", "orig_id": 1417209}}, {"model": "metainfo.source", "pk": 14084, "fields": {"orig_filename": "Horanszky_Nandor_1838_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418", "author": "", "orig_id": 1417210}}, {"model": "metainfo.source", "pk": 14085, "fields": {"orig_filename": "Horawitz_Adalbert_1840_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418", "author": "", "orig_id": 1417211}}, {"model": "metainfo.source", "pk": 14086, "fields": {"orig_filename": "Hora_Engelbert_1867_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 417", "author": "", "orig_id": 1417206}}, {"model": "metainfo.source", "pk": 14087, "fields": {"orig_filename": "Horbaczewski_Johann_1854_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 418f.", "author": "", "orig_id": 1417212}}, {"model": "metainfo.source", "pk": 14088, "fields": {"orig_filename": "Horcicka_Adalbert_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417213}}, {"model": "metainfo.source", "pk": 14089, "fields": {"orig_filename": "Horcicka_Franz_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417214}}, {"model": "metainfo.source", "pk": 14090, "fields": {"orig_filename": "Horky_Josef_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419", "author": "", "orig_id": 1417215}}, {"model": "metainfo.source", "pk": 14091, "fields": {"orig_filename": "Hormayr-Hortenburg_Josef_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 419ff.", "author": "", "orig_id": 1417216}}, {"model": "metainfo.source", "pk": 14092, "fields": {"orig_filename": "Hormuzaki_Constantin_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417217}}, {"model": "metainfo.source", "pk": 14093, "fields": {"orig_filename": "Hormuzaki_Eudoxius_1812_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417289}}, {"model": "metainfo.source", "pk": 14094, "fields": {"orig_filename": "Hornbostel_August-Gottlieb_1786_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422", "author": "", "orig_id": 1417293}}, {"model": "metainfo.source", "pk": 14095, "fields": {"orig_filename": "Hornbostel_Carl_1825_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422f.", "author": "", "orig_id": 1417294}}, {"model": "metainfo.source", "pk": 14096, "fields": {"orig_filename": "Hornbostel_Christian-Georg_1778_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417295}}, {"model": "metainfo.source", "pk": 14097, "fields": {"orig_filename": "Hornbostel_Erich_1877_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417296}}, {"model": "metainfo.source", "pk": 14098, "fields": {"orig_filename": "Hornbostel_Helene_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423", "author": "", "orig_id": 1417297}}, {"model": "metainfo.source", "pk": 14099, "fields": {"orig_filename": "Hornbostel_Theodor-Friedrich_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 423f.", "author": "", "orig_id": 1417298}}, {"model": "metainfo.source", "pk": 14100, "fields": {"orig_filename": "Horner_Johann_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417299}}, {"model": "metainfo.source", "pk": 14101, "fields": {"orig_filename": "Hornich_Karl_1852_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417300}}, {"model": "metainfo.source", "pk": 14102, "fields": {"orig_filename": "Hornich_Rudolf_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424", "author": "", "orig_id": 1417301}}, {"model": "metainfo.source", "pk": 14103, "fields": {"orig_filename": "Hornig_Johann_1819_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 424f.", "author": "", "orig_id": 1417302}}, {"model": "metainfo.source", "pk": 14104, "fields": {"orig_filename": "Hornischer_Fanni_1845_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417303}}, {"model": "metainfo.source", "pk": 14105, "fields": {"orig_filename": "Hornoeck_Franz-Xaver_1751_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417304}}, {"model": "metainfo.source", "pk": 14106, "fields": {"orig_filename": "Hornstein_Karl_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425", "author": "", "orig_id": 1417305}}, {"model": "metainfo.source", "pk": 14107, "fields": {"orig_filename": "Horn_Johann-Philipp_1774_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421", "author": "", "orig_id": 1417290}}, {"model": "metainfo.source", "pk": 14108, "fields": {"orig_filename": "Horn_Kamillo_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 421f.", "author": "", "orig_id": 1417291}}, {"model": "metainfo.source", "pk": 14109, "fields": {"orig_filename": "Horn_Uffo-Daniel_1817_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 422", "author": "", "orig_id": 1417292}}, {"model": "metainfo.source", "pk": 14110, "fields": {"orig_filename": "Horowitz_Lazar_1803_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 425f.", "author": "", "orig_id": 1417306}}, {"model": "metainfo.source", "pk": 14111, "fields": {"orig_filename": "Horowitz_Leopold_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417307}}, {"model": "metainfo.source", "pk": 14112, "fields": {"orig_filename": "Horowitz_Samuel_1841_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417308}}, {"model": "metainfo.source", "pk": 14113, "fields": {"orig_filename": "Horschelt_Friedrich_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426", "author": "", "orig_id": 1417309}}, {"model": "metainfo.source", "pk": 14114, "fields": {"orig_filename": "Horschinek_Anton_1835_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 426f.", "author": "", "orig_id": 1417310}}, {"model": "metainfo.source", "pk": 14115, "fields": {"orig_filename": "Horsetzky-Hornthal_Adolf_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 427", "author": "", "orig_id": 1417311}}, {"model": "metainfo.source", "pk": 14116, "fields": {"orig_filename": "Horsetzky-Hornthal_Ernst_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 427f.", "author": "", "orig_id": 1417312}}, {"model": "metainfo.source", "pk": 14117, "fields": {"orig_filename": "Horsetzky-Hornthal_Karl_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428", "author": "", "orig_id": 1417313}}, {"model": "metainfo.source", "pk": 14118, "fields": {"orig_filename": "Horsetzky-Hornthal_Melanie_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428", "author": "", "orig_id": 1417314}}, {"model": "metainfo.source", "pk": 14119, "fields": {"orig_filename": "Horsky-Horskysfeld_Franz_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 428f.", "author": "", "orig_id": 1417389}}, {"model": "metainfo.source", "pk": 14120, "fields": {"orig_filename": "Horst_Franz_1862_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417391}}, {"model": "metainfo.source", "pk": 14121, "fields": {"orig_filename": "Horst_Julius_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417393}}, {"model": "metainfo.source", "pk": 14122, "fields": {"orig_filename": "Hortis_Attilio_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417394}}, {"model": "metainfo.source", "pk": 14123, "fields": {"orig_filename": "Horvat-Gottlieb_Anka_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417399}}, {"model": "metainfo.source", "pk": 14124, "fields": {"orig_filename": "Horvath_Cyrill_1804_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430", "author": "", "orig_id": 1417401}}, {"model": "metainfo.source", "pk": 14125, "fields": {"orig_filename": "Horvath_Geza_1847_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 430f.", "author": "", "orig_id": 1417402}}, {"model": "metainfo.source", "pk": 14126, "fields": {"orig_filename": "Horvath_Michael_1809_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431", "author": "", "orig_id": 1417405}}, {"model": "metainfo.source", "pk": 14127, "fields": {"orig_filename": "Horvath_Oedoen_1901_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 431", "author": "", "orig_id": 1417406}}, {"model": "metainfo.source", "pk": 14128, "fields": {"orig_filename": "Horvat_Franjo_1876_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429", "author": "", "orig_id": 1417395}}, {"model": "metainfo.source", "pk": 14129, "fields": {"orig_filename": "Horvat_Karlo_1874_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 429f.", "author": "", "orig_id": 1417396}}, {"model": "metainfo.source", "pk": 14130, "fields": {"orig_filename": "Hofbauer_Ferdinand_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418100}}, {"model": "metainfo.source", "pk": 14131, "fields": {"orig_filename": "Hofbauer_Josef_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418101}}, {"model": "metainfo.source", "pk": 14132, "fields": {"orig_filename": "Hofbauer_Josef_1886_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418102}}, {"model": "metainfo.source", "pk": 14133, "fields": {"orig_filename": "Hofbauer_Karl_1829_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371", "author": "", "orig_id": 1418103}}, {"model": "metainfo.source", "pk": 14134, "fields": {"orig_filename": "Hofbauer_Klemens-Maria_1751_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 371f.", "author": "", "orig_id": 1418104}}, {"model": "metainfo.source", "pk": 14135, "fields": {"orig_filename": "Hofbauer_Louis_1889_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372", "author": "", "orig_id": 1418105}}, {"model": "metainfo.source", "pk": 14136, "fields": {"orig_filename": "Hofbauer_Ludwig_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372", "author": "", "orig_id": 1418106}}, {"model": "metainfo.source", "pk": 14137, "fields": {"orig_filename": "Hofer_Franz_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 372f.", "author": "", "orig_id": 1418107}}, {"model": "metainfo.source", "pk": 14138, "fields": {"orig_filename": "Hofer_Franz_1885_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418108}}, {"model": "metainfo.source", "pk": 14139, "fields": {"orig_filename": "Hofer_Gottfried_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418109}}, {"model": "metainfo.source", "pk": 14140, "fields": {"orig_filename": "Hofer_Ignaz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418110}}, {"model": "metainfo.source", "pk": 14141, "fields": {"orig_filename": "Hofer_Johann_1757_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373", "author": "", "orig_id": 1418111}}, {"model": "metainfo.source", "pk": 14142, "fields": {"orig_filename": "Hofer_Josef_1820_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 373f.", "author": "", "orig_id": 1418112}}, {"model": "metainfo.source", "pk": 14143, "fields": {"orig_filename": "Hofer_Josef_1847_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418113}}, {"model": "metainfo.source", "pk": 14144, "fields": {"orig_filename": "Hofer_Joseph-Anton_1742_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418114}}, {"model": "metainfo.source", "pk": 14145, "fields": {"orig_filename": "Hofer_Josepha_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418115}}, {"model": "metainfo.source", "pk": 14146, "fields": {"orig_filename": "Hofer_Otto_1847_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 374", "author": "", "orig_id": 1418116}}, {"model": "metainfo.source", "pk": 14147, "fields": {"orig_filename": "Hofer_Sigi_1878_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436644}}, {"model": "metainfo.source", "pk": 14148, "fields": {"orig_filename": "Hoffer_Eduard_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418118}}, {"model": "metainfo.source", "pk": 14149, "fields": {"orig_filename": "Hoffer_Johann_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418119}}, {"model": "metainfo.source", "pk": 14150, "fields": {"orig_filename": "Hoffer_Karl_1824_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 375", "author": "", "orig_id": 1418120}}, {"model": "metainfo.source", "pk": 14151, "fields": {"orig_filename": "Hoffinger_Johann-Bapt_1825_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418121}}, {"model": "metainfo.source", "pk": 14152, "fields": {"orig_filename": "Hoffmann-Canstein_Olga_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 379f.", "author": "", "orig_id": 1416731}}, {"model": "metainfo.source", "pk": 14153, "fields": {"orig_filename": "Hoffmann_Cajetan_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418122}}, {"model": "metainfo.source", "pk": 14154, "fields": {"orig_filename": "Hoffmann_Camill_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418123}}, {"model": "metainfo.source", "pk": 14155, "fields": {"orig_filename": "Hoffmann_Emanuel_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376", "author": "", "orig_id": 1418124}}, {"model": "metainfo.source", "pk": 14156, "fields": {"orig_filename": "Hoffmann_Johann-Peter_1764_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377", "author": "", "orig_id": 1418126}}, {"model": "metainfo.source", "pk": 14157, "fields": {"orig_filename": "Hoffmann_Johann_1802_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 376f.", "author": "", "orig_id": 1418125}}, {"model": "metainfo.source", "pk": 14158, "fields": {"orig_filename": "Hoffmann_Josef-Raimund_1823_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416726}}, {"model": "metainfo.source", "pk": 14159, "fields": {"orig_filename": "Hoffmann_Josef_1831_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377", "author": "", "orig_id": 1418127}}, {"model": "metainfo.source", "pk": 14160, "fields": {"orig_filename": "Hoffmann_Josef_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 377f.", "author": "", "orig_id": 1416725}}, {"model": "metainfo.source", "pk": 14161, "fields": {"orig_filename": "Hoffmann_Karl_1872_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416727}}, {"model": "metainfo.source", "pk": 14162, "fields": {"orig_filename": "Hoffmann_Nina_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378", "author": "", "orig_id": 1416728}}, {"model": "metainfo.source", "pk": 14163, "fields": {"orig_filename": "Hoffmann_Richard-Adolf_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 378f.", "author": "", "orig_id": 1416729}}, {"model": "metainfo.source", "pk": 14164, "fields": {"orig_filename": "Hoffmann_Robert_1835_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 379", "author": "", "orig_id": 1416730}}, {"model": "metainfo.source", "pk": 14165, "fields": {"orig_filename": "Hofmann-Aspernburg_Edmund_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416824}}, {"model": "metainfo.source", "pk": 14166, "fields": {"orig_filename": "Hofmann-Hofmannsthal_Hugo_1874_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 385ff.", "author": "", "orig_id": 1416825}}, {"model": "metainfo.source", "pk": 14167, "fields": {"orig_filename": "Hofmann-Hofmannsthal_Isaak-Loew_1759_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416826}}, {"model": "metainfo.source", "pk": 14168, "fields": {"orig_filename": "Hofmann-Wellenhof_Viktor_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416827}}, {"model": "metainfo.source", "pk": 14169, "fields": {"orig_filename": "Hofmann_Adolf_1853_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416732}}, {"model": "metainfo.source", "pk": 14170, "fields": {"orig_filename": "Hofmann_Anton-Adalbert_1881_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416733}}, {"model": "metainfo.source", "pk": 14171, "fields": {"orig_filename": "Hofmann_Eduard_1837_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380", "author": "", "orig_id": 1416734}}, {"model": "metainfo.source", "pk": 14172, "fields": {"orig_filename": "Hofmann_Emil_1864_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 380f.", "author": "", "orig_id": 1416735}}, {"model": "metainfo.source", "pk": 14173, "fields": {"orig_filename": "Hofmann_Franz-Bruno_1869_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416737}}, {"model": "metainfo.source", "pk": 14174, "fields": {"orig_filename": "Hofmann_Franz_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416736}}, {"model": "metainfo.source", "pk": 14175, "fields": {"orig_filename": "Hofmann_Josef_1858_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381", "author": "", "orig_id": 1416738}}, {"model": "metainfo.source", "pk": 14176, "fields": {"orig_filename": "Hofmann_Joseph-Anton-Vincenz_1800_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 381f.", "author": "", "orig_id": 1416739}}, {"model": "metainfo.source", "pk": 14177, "fields": {"orig_filename": "Hofmann_Julius_1840_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416740}}, {"model": "metainfo.source", "pk": 14178, "fields": {"orig_filename": "Hofmann_Karl-Berthold_1842_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382f.", "author": "", "orig_id": 1416744}}, {"model": "metainfo.source", "pk": 14179, "fields": {"orig_filename": "Hofmann_Karl_1835_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416741}}, {"model": "metainfo.source", "pk": 14180, "fields": {"orig_filename": "Hofmann_Karl_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 382", "author": "", "orig_id": 1416742}}, {"model": "metainfo.source", "pk": 14181, "fields": {"orig_filename": "Hofmann_Karl_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416743}}, {"model": "metainfo.source", "pk": 14182, "fields": {"orig_filename": "Hofmann_Kleophas_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 383", "author": "", "orig_id": 1416745}}, {"model": "metainfo.source", "pk": 14183, "fields": {"orig_filename": "Hofmann_Leopold_1822_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 383f.", "author": "", "orig_id": 1416746}}, {"model": "metainfo.source", "pk": 14184, "fields": {"orig_filename": "Hofmann_Martha_1895_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1449603}}, {"model": "metainfo.source", "pk": 14185, "fields": {"orig_filename": "Hofmann_Michael_1860_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416747}}, {"model": "metainfo.source", "pk": 14186, "fields": {"orig_filename": "Hofmann_Ottokar_1843_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 384", "author": "", "orig_id": 1416822}}, {"model": "metainfo.source", "pk": 14187, "fields": {"orig_filename": "Hofmeister_Franz_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387", "author": "", "orig_id": 1416829}}, {"model": "metainfo.source", "pk": 14188, "fields": {"orig_filename": "Hofmokl_Johann-Eduard_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 387f.", "author": "", "orig_id": 1416830}}, {"model": "metainfo.source", "pk": 14189, "fields": {"orig_filename": "Hofner_Otto_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388", "author": "", "orig_id": 1416831}}, {"model": "metainfo.source", "pk": 14190, "fields": {"orig_filename": "Hofstaedter_Gotthard_1826_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388", "author": "", "orig_id": 1416832}}, {"model": "metainfo.source", "pk": 14191, "fields": {"orig_filename": "Hofzinser_Johann-Nep_1806_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 388f.", "author": "", "orig_id": 1416834}}, {"model": "metainfo.source", "pk": 14192, "fields": {"orig_filename": "Hoheisel_Konrad_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389", "author": "", "orig_id": 1416833}}, {"model": "metainfo.source", "pk": 14193, "fields": {"orig_filename": "Hoheisel_Marie_1873_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389", "author": "", "orig_id": 1416835}}, {"model": "metainfo.source", "pk": 14194, "fields": {"orig_filename": "Hohenberger_Franz_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 389f.", "author": "", "orig_id": 1416837}}, {"model": "metainfo.source", "pk": 14195, "fields": {"orig_filename": "Hohenbruck_Priska_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390", "author": "", "orig_id": 1416838}}, {"model": "metainfo.source", "pk": 14196, "fields": {"orig_filename": "Hohenbuehel_Ludwig_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390", "author": "", "orig_id": 1416839}}, {"model": "metainfo.source", "pk": 14197, "fields": {"orig_filename": "Hohenegger_Agapit_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 390f.", "author": "", "orig_id": 1416840}}, {"model": "metainfo.source", "pk": 14198, "fields": {"orig_filename": "Hohenegger_Ludwig_1807_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391", "author": "", "orig_id": 1416841}}, {"model": "metainfo.source", "pk": 14199, "fields": {"orig_filename": "Hohenfels-Berger_Stella_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391", "author": "", "orig_id": 1416842}}, {"model": "metainfo.source", "pk": 14200, "fields": {"orig_filename": "Hohenleitner_Fridolin_1883_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 391f.", "author": "", "orig_id": 1416844}}, {"model": "metainfo.source", "pk": 14201, "fields": {"orig_filename": "Hohenlohe-Ingelfingen_Friedrich-Karl-Wilhelm_1752_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392", "author": "", "orig_id": 1416845}}, {"model": "metainfo.source", "pk": 14202, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Gottfried_1867_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392", "author": "", "orig_id": 1416911}}, {"model": "metainfo.source", "pk": 14203, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konrad_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 392f.", "author": "", "orig_id": 1416912}}, {"model": "metainfo.source", "pk": 14204, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konstantin_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 393f.", "author": "", "orig_id": 1416913}}, {"model": "metainfo.source", "pk": 14205, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Konstantin_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 394", "author": "", "orig_id": 1416914}}, {"model": "metainfo.source", "pk": 14206, "fields": {"orig_filename": "Hohenlohe-Schillingsfuerst_Marie_1837_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 394f.", "author": "", "orig_id": 1416915}}, {"model": "metainfo.source", "pk": 14207, "fields": {"orig_filename": "Hohenlohe-Waldenburg-Schillingsfuerst_Alexander_1794_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 395", "author": "", "orig_id": 1416916}}, {"model": "metainfo.source", "pk": 14208, "fields": {"orig_filename": "Hohenwart_Franz-Josef-Hannibal_1771_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 395f.", "author": "", "orig_id": 1416917}}, {"model": "metainfo.source", "pk": 14209, "fields": {"orig_filename": "Hohenwart_Karl-Sigmund_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 396", "author": "", "orig_id": 1416918}}, {"model": "metainfo.source", "pk": 14210, "fields": {"orig_filename": "Hohenwart_Sigismund_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 396f.", "author": "", "orig_id": 1416919}}, {"model": "metainfo.source", "pk": 14211, "fields": {"orig_filename": "Hohenwart_Sigmund-Anton_1730_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 397", "author": "", "orig_id": 1416920}}, {"model": "metainfo.source", "pk": 14212, "fields": {"orig_filename": "Hohenzollern-Hechingen_Friedrich-Franz-Xaver_1757_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 397f.", "author": "", "orig_id": 1416921}}, {"model": "metainfo.source", "pk": 14213, "fields": {"orig_filename": "Hohlbaum_Alois_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416922}}, {"model": "metainfo.source", "pk": 14214, "fields": {"orig_filename": "Hohler_Emmerich-Thomas_1781_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416923}}, {"model": "metainfo.source", "pk": 14215, "fields": {"orig_filename": "Hohlfeld_Dora_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416924}}, {"model": "metainfo.source", "pk": 14216, "fields": {"orig_filename": "Hoic_Ivan_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398", "author": "", "orig_id": 1416925}}, {"model": "metainfo.source", "pk": 14217, "fields": {"orig_filename": "Holarek_Emil_1867_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 398f.", "author": "", "orig_id": 1416926}}, {"model": "metainfo.source", "pk": 14218, "fields": {"orig_filename": "Holaus_Maximilian_1823_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399", "author": "", "orig_id": 1416928}}, {"model": "metainfo.source", "pk": 14219, "fields": {"orig_filename": "Holaus_Simon_1814_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399", "author": "", "orig_id": 1416927}}, {"model": "metainfo.source", "pk": 14220, "fields": {"orig_filename": "Holbein-Holbeinsberg_Franz-Ignaz_1779_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 399f.", "author": "", "orig_id": 1416929}}, {"model": "metainfo.source", "pk": 14221, "fields": {"orig_filename": "Holczabek_Johann-Wilhelm_1843_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1420823}}, {"model": "metainfo.source", "pk": 14222, "fields": {"orig_filename": "Holenia_Romuald_1817_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416930}}, {"model": "metainfo.source", "pk": 14223, "fields": {"orig_filename": "Holetschek_Johann_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416931}}, {"model": "metainfo.source", "pk": 14224, "fields": {"orig_filename": "Holitscher_Arthur_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 400", "author": "", "orig_id": 1416932}}, {"model": "metainfo.source", "pk": 14225, "fields": {"orig_filename": "Holitscher_Philipp_1822_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1416933}}, {"model": "metainfo.source", "pk": 14226, "fields": {"orig_filename": "Holjac_Janko_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401", "author": "", "orig_id": 1417005}}, {"model": "metainfo.source", "pk": 14227, "fields": {"orig_filename": "Hollederer_Johann_1783_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 401f.", "author": "", "orig_id": 1417008}}, {"model": "metainfo.source", "pk": 14228, "fields": {"orig_filename": "Hollenstein_Stephanie_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 402", "author": "", "orig_id": 1417009}}, {"model": "metainfo.source", "pk": 14229, "fields": {"orig_filename": "Holler_Anton_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 402f.", "author": "", "orig_id": 1417010}}, {"model": "metainfo.source", "pk": 14230, "fields": {"orig_filename": "Hollitzer_Carl-Leopold_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 403", "author": "", "orig_id": 1420821}}, {"model": "metainfo.source", "pk": 14231, "fields": {"orig_filename": "Hitzl_Franz-De-Paula_1738_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339", "author": "", "orig_id": 1417733}}, {"model": "metainfo.source", "pk": 14232, "fields": {"orig_filename": "Hladnik_Franz_1773_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339f.", "author": "", "orig_id": 1417734}}, {"model": "metainfo.source", "pk": 14233, "fields": {"orig_filename": "Hladnik_Ignaz_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417735}}, {"model": "metainfo.source", "pk": 14234, "fields": {"orig_filename": "Hlasiwetz_Heinrich_1825_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417736}}, {"model": "metainfo.source", "pk": 14235, "fields": {"orig_filename": "Hlatky_Eduard_1834_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 340", "author": "", "orig_id": 1417737}}, {"model": "metainfo.source", "pk": 14236, "fields": {"orig_filename": "Hlavacek_Anton_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417739}}, {"model": "metainfo.source", "pk": 14237, "fields": {"orig_filename": "Hlava_Jaroslav_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417738}}, {"model": "metainfo.source", "pk": 14238, "fields": {"orig_filename": "Hlavka_Josef_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341", "author": "", "orig_id": 1417740}}, {"model": "metainfo.source", "pk": 14239, "fields": {"orig_filename": "Hlawaczek_Eduard_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 341f.", "author": "", "orig_id": 1417741}}, {"model": "metainfo.source", "pk": 14240, "fields": {"orig_filename": "Hlawati_Franz_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417742}}, {"model": "metainfo.source", "pk": 14241, "fields": {"orig_filename": "Hlawatsch_Karl-Ignatz_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128091}}, {"model": "metainfo.source", "pk": 14242, "fields": {"orig_filename": "Hlawatsch_Karl_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2053932}}, {"model": "metainfo.source", "pk": 14243, "fields": {"orig_filename": "Hlawatsch_Rudolf-Karl-Ferdinand_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128097}}, {"model": "metainfo.source", "pk": 14244, "fields": {"orig_filename": "Hocevar_Franz_1853_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417743}}, {"model": "metainfo.source", "pk": 14245, "fields": {"orig_filename": "Hoch-Mueller_Joseph-Anton_1794_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417745}}, {"model": "metainfo.source", "pk": 14246, "fields": {"orig_filename": "Hocheder_Johann-Karl_1800_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417746}}, {"model": "metainfo.source", "pk": 14247, "fields": {"orig_filename": "Hochegger_Franz_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417747}}, {"model": "metainfo.source", "pk": 14248, "fields": {"orig_filename": "Hochegger_Rudolf_1862_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343", "author": "", "orig_id": 1417748}}, {"model": "metainfo.source", "pk": 14249, "fields": {"orig_filename": "Hochenegg_Carl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 343f.", "author": "", "orig_id": 1417749}}, {"model": "metainfo.source", "pk": 14250, "fields": {"orig_filename": "Hochenegg_Julius_1859_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344", "author": "", "orig_id": 1417750}}, {"model": "metainfo.source", "pk": 14251, "fields": {"orig_filename": "Hochsinger_Carl_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344", "author": "", "orig_id": 1417751}}, {"model": "metainfo.source", "pk": 14252, "fields": {"orig_filename": "Hochstetter_Carl-Christian_1818_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 344f.", "author": "", "orig_id": 1417752}}, {"model": "metainfo.source", "pk": 14253, "fields": {"orig_filename": "Hochstetter_Ferdinand_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 345", "author": "", "orig_id": 1417753}}, {"model": "metainfo.source", "pk": 14254, "fields": {"orig_filename": "Hochstetter_Heinrich_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 345f.", "author": "", "orig_id": 1417754}}, {"model": "metainfo.source", "pk": 14255, "fields": {"orig_filename": "Hoch_Karl_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 342", "author": "", "orig_id": 1417744}}, {"model": "metainfo.source", "pk": 14256, "fields": {"orig_filename": "Hockauf_Josef_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417824}}, {"model": "metainfo.source", "pk": 14257, "fields": {"orig_filename": "Hock_Alexander_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417755}}, {"model": "metainfo.source", "pk": 14258, "fields": {"orig_filename": "Hock_Carl_1808_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417756}}, {"model": "metainfo.source", "pk": 14259, "fields": {"orig_filename": "Hock_Friedrich_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346", "author": "", "orig_id": 1417757}}, {"model": "metainfo.source", "pk": 14260, "fields": {"orig_filename": "Hock_Jakob_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 346f.", "author": "", "orig_id": 1417821}}, {"model": "metainfo.source", "pk": 14261, "fields": {"orig_filename": "Hock_Johann_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417822}}, {"model": "metainfo.source", "pk": 14262, "fields": {"orig_filename": "Hock_Stefan_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417823}}, {"model": "metainfo.source", "pk": 14263, "fields": {"orig_filename": "Hodek_Gustav_1832_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347", "author": "", "orig_id": 1417825}}, {"model": "metainfo.source", "pk": 14264, "fields": {"orig_filename": "Hoebarth_Franz_1778_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 347f.", "author": "", "orig_id": 1417826}}, {"model": "metainfo.source", "pk": 14265, "fields": {"orig_filename": "Hoechle_Johann-Bapt_1754_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348", "author": "", "orig_id": 1417828}}, {"model": "metainfo.source", "pk": 14266, "fields": {"orig_filename": "Hoechle_Leopold_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348", "author": "", "orig_id": 1417829}}, {"model": "metainfo.source", "pk": 14267, "fields": {"orig_filename": "Hoechsmann_Johannes_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 348f.", "author": "", "orig_id": 1417831}}, {"model": "metainfo.source", "pk": 14268, "fields": {"orig_filename": "Hoeck_Franz_1749_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417833}}, {"model": "metainfo.source", "pk": 14269, "fields": {"orig_filename": "Hoedl_Bonaventura-Constantin_1776_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417834}}, {"model": "metainfo.source", "pk": 14270, "fields": {"orig_filename": "Hoedl_Roman-Josef_1867_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417835}}, {"model": "metainfo.source", "pk": 14271, "fields": {"orig_filename": "Hoefele_Stephan_1860_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350", "author": "", "orig_id": 1417839}}, {"model": "metainfo.source", "pk": 14272, "fields": {"orig_filename": "Hoefel_Bernhard_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349", "author": "", "orig_id": 1417836}}, {"model": "metainfo.source", "pk": 14273, "fields": {"orig_filename": "Hoefel_Blasius_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 349f.", "author": "", "orig_id": 1417837}}, {"model": "metainfo.source", "pk": 14274, "fields": {"orig_filename": "Hoefel_Johann-Nepomuk_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350", "author": "", "orig_id": 1417838}}, {"model": "metainfo.source", "pk": 14275, "fields": {"orig_filename": "Hoefer-Feldsturm_Franz_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351", "author": "", "orig_id": 1417840}}, {"model": "metainfo.source", "pk": 14276, "fields": {"orig_filename": "Hoefer-Heimhalt_Hans_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351f.", "author": "", "orig_id": 1417843}}, {"model": "metainfo.source", "pk": 14277, "fields": {"orig_filename": "Hoefer_Josef_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 350f.", "author": "", "orig_id": 1417841}}, {"model": "metainfo.source", "pk": 14278, "fields": {"orig_filename": "Hoefer_Mathias_1754_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 351", "author": "", "orig_id": 1417842}}, {"model": "metainfo.source", "pk": 14279, "fields": {"orig_filename": "Hoefken-Hattingsheim_Rudolf_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353", "author": "", "orig_id": 1417845}}, {"model": "metainfo.source", "pk": 14280, "fields": {"orig_filename": "Hoefken_Gustav_1811_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 352f.", "author": "", "orig_id": 1417844}}, {"model": "metainfo.source", "pk": 14281, "fields": {"orig_filename": "Hoefler_Alois_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353", "author": "", "orig_id": 1417846}}, {"model": "metainfo.source", "pk": 14282, "fields": {"orig_filename": "Hoefler_Karl-Adolf-Constantin_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 353f.", "author": "", "orig_id": 1417908}}, {"model": "metainfo.source", "pk": 14283, "fields": {"orig_filename": "Hoefner_Gabriel_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 354f.", "author": "", "orig_id": 1417909}}, {"model": "metainfo.source", "pk": 14284, "fields": {"orig_filename": "Hoegelmueller_Georg_1770_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356", "author": "", "orig_id": 1417913}}, {"model": "metainfo.source", "pk": 14285, "fields": {"orig_filename": "Hoegel_Hugo_1854_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355", "author": "", "orig_id": 1417910}}, {"model": "metainfo.source", "pk": 14286, "fields": {"orig_filename": "Hoegel_Johann-Bapt_1820_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355", "author": "", "orig_id": 1417911}}, {"model": "metainfo.source", "pk": 14287, "fields": {"orig_filename": "Hoegel_Wilhelmine_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 355f.", "author": "", "orig_id": 1417912}}, {"model": "metainfo.source", "pk": 14288, "fields": {"orig_filename": "Hoeger_Joseph_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356", "author": "", "orig_id": 1417914}}, {"model": "metainfo.source", "pk": 14289, "fields": {"orig_filename": "Hoeger_Karl_1847_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 356f.", "author": "", "orig_id": 1417915}}, {"model": "metainfo.source", "pk": 14290, "fields": {"orig_filename": "Hoegler_Anton_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417916}}, {"model": "metainfo.source", "pk": 14291, "fields": {"orig_filename": "Hoegler_Franz_1802_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417917}}, {"model": "metainfo.source", "pk": 14292, "fields": {"orig_filename": "Hoegyes_Andreas_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357", "author": "", "orig_id": 1417918}}, {"model": "metainfo.source", "pk": 14293, "fields": {"orig_filename": "Hoehnel_Franz_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 357f.", "author": "", "orig_id": 1417919}}, {"model": "metainfo.source", "pk": 14294, "fields": {"orig_filename": "Hoehnel_Friedrich-Romilo_1826_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358", "author": "", "orig_id": 1417920}}, {"model": "metainfo.source", "pk": 14295, "fields": {"orig_filename": "Hoehnel_Ludwig_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358", "author": "", "orig_id": 1417921}}, {"model": "metainfo.source", "pk": 14296, "fields": {"orig_filename": "Hoehnel_Wilhelm-Gotthelf_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 358f.", "author": "", "orig_id": 1417922}}, {"model": "metainfo.source", "pk": 14297, "fields": {"orig_filename": "Hoelder_Alfred_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417923}}, {"model": "metainfo.source", "pk": 14298, "fields": {"orig_filename": "Hoellersberger_Robert_1924_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417924}}, {"model": "metainfo.source", "pk": 14299, "fields": {"orig_filename": "Hoelzel_Adolf_1853_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359", "author": "", "orig_id": 1417925}}, {"model": "metainfo.source", "pk": 14300, "fields": {"orig_filename": "Hoelzel_Eduard_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 359f.", "author": "", "orig_id": 1417926}}, {"model": "metainfo.source", "pk": 14301, "fields": {"orig_filename": "Hoelzel_Gustav_1813_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417927}}, {"model": "metainfo.source", "pk": 14302, "fields": {"orig_filename": "Hoelzlhuber_Franz_1826_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417929}}, {"model": "metainfo.source", "pk": 14303, "fields": {"orig_filename": "Hoelzl_Josef_1809_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360", "author": "", "orig_id": 1417928}}, {"model": "metainfo.source", "pk": 14304, "fields": {"orig_filename": "Hoenig-Greil_Auguste_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418002}}, {"model": "metainfo.source", "pk": 14305, "fields": {"orig_filename": "Hoenig-Hoenigsberg_Benedikt_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418004}}, {"model": "metainfo.source", "pk": 14306, "fields": {"orig_filename": "Hoenig-Hoenigsberg_Erich_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362", "author": "", "orig_id": 1418005}}, {"model": "metainfo.source", "pk": 14307, "fields": {"orig_filename": "Hoenigl_Dominik_1833_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 362f.", "author": "", "orig_id": 1418006}}, {"model": "metainfo.source", "pk": 14308, "fields": {"orig_filename": "Hoenigschmid_Otto_1878_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363", "author": "", "orig_id": 1418007}}, {"model": "metainfo.source", "pk": 14309, "fields": {"orig_filename": "Hoenigswald_Richard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363", "author": "", "orig_id": 1418008}}, {"model": "metainfo.source", "pk": 14310, "fields": {"orig_filename": "Hoenig_Franz_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417931}}, {"model": "metainfo.source", "pk": 14311, "fields": {"orig_filename": "Hoenig_Ignaz_1828_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361", "author": "", "orig_id": 1417933}}, {"model": "metainfo.source", "pk": 14312, "fields": {"orig_filename": "Hoenig_Max_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 361f.", "author": "", "orig_id": 1417934}}, {"model": "metainfo.source", "pk": 14313, "fields": {"orig_filename": "Hoen_Maximilian_1867_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 360f.", "author": "", "orig_id": 1417930}}, {"model": "metainfo.source", "pk": 14314, "fields": {"orig_filename": "Hoepler-Hermingen_Erwein_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 363f.", "author": "", "orig_id": 1418009}}, {"model": "metainfo.source", "pk": 14315, "fields": {"orig_filename": "Hoerbiger_Alois_1810_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 364", "author": "", "orig_id": 1418010}}, {"model": "metainfo.source", "pk": 14316, "fields": {"orig_filename": "Hoerbiger_Hanns_1860_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 364f.", "author": "", "orig_id": 1418012}}, {"model": "metainfo.source", "pk": 14317, "fields": {"orig_filename": "Hoerfarter_Matthaeus_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418013}}, {"model": "metainfo.source", "pk": 14318, "fields": {"orig_filename": "Hoerhager_Josef_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418014}}, {"model": "metainfo.source", "pk": 14319, "fields": {"orig_filename": "Hoermann-Hoerbach_Angelika_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 366", "author": "", "orig_id": 1418017}}, {"model": "metainfo.source", "pk": 14320, "fields": {"orig_filename": "Hoermann-Hoerbach_Ludwig_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 366f.", "author": "", "orig_id": 1418018}}, {"model": "metainfo.source", "pk": 14321, "fields": {"orig_filename": "Hoermann-Hoerbach_Theodor_1840_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367", "author": "", "orig_id": 1418019}}, {"model": "metainfo.source", "pk": 14322, "fields": {"orig_filename": "Hoermann-Hoerbach_Walther_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367", "author": "", "orig_id": 1418020}}, {"model": "metainfo.source", "pk": 14323, "fields": {"orig_filename": "Hoermann_Konstantin_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365", "author": "", "orig_id": 1418015}}, {"model": "metainfo.source", "pk": 14324, "fields": {"orig_filename": "Hoermann_Leopold_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 365f.", "author": "", "orig_id": 1418016}}, {"model": "metainfo.source", "pk": 14325, "fields": {"orig_filename": "Hoernes_Hermann_1858_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 367f.", "author": "", "orig_id": 1418021}}, {"model": "metainfo.source", "pk": 14326, "fields": {"orig_filename": "Hoernes_Moriz_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 368", "author": "", "orig_id": 1418022}}, {"model": "metainfo.source", "pk": 14327, "fields": {"orig_filename": "Hoernes_Moriz_1852_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 368f.", "author": "", "orig_id": 1418023}}, {"model": "metainfo.source", "pk": 14328, "fields": {"orig_filename": "Hoernes_Rudolf_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 369f.", "author": "", "orig_id": 1418024}}, {"model": "metainfo.source", "pk": 14329, "fields": {"orig_filename": "Hoertnagl_Hans_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418025}}, {"model": "metainfo.source", "pk": 14330, "fields": {"orig_filename": "Hoerwarter_Joseph-Eugen_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418026}}, {"model": "metainfo.source", "pk": 14331, "fields": {"orig_filename": "Hoesslinger_Guido_1871_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370", "author": "", "orig_id": 1418027}}, {"model": "metainfo.source", "pk": 14332, "fields": {"orig_filename": "Hoetzl_Josef_1866_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 370f.", "author": "", "orig_id": 1418028}}, {"model": "metainfo.source", "pk": 14333, "fields": {"orig_filename": "Heyer-Rosenfeld_Friedrich_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417192}}, {"model": "metainfo.source", "pk": 14334, "fields": {"orig_filename": "Heyl_Johann-Adolf_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417193}}, {"model": "metainfo.source", "pk": 14335, "fields": {"orig_filename": "Heyne_Wilhelm_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310f.", "author": "", "orig_id": 1417194}}, {"model": "metainfo.source", "pk": 14336, "fields": {"orig_filename": "Heyssler_Moritz_1814_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311", "author": "", "orig_id": 1417265}}, {"model": "metainfo.source", "pk": 14337, "fields": {"orig_filename": "Hey_Hans-Erwin_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417191}}, {"model": "metainfo.source", "pk": 14338, "fields": {"orig_filename": "Hibler_Emanuel_1865_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311", "author": "", "orig_id": 1417266}}, {"model": "metainfo.source", "pk": 14339, "fields": {"orig_filename": "Hibsch_Josef-Emanuel_1852_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 311f.", "author": "", "orig_id": 1417267}}, {"model": "metainfo.source", "pk": 14340, "fields": {"orig_filename": "Hickel_Karl_1811_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417268}}, {"model": "metainfo.source", "pk": 14341, "fields": {"orig_filename": "Hickmann_Anton-Leo_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417269}}, {"model": "metainfo.source", "pk": 14342, "fields": {"orig_filename": "Hidja_Georg-Anton_1752_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312", "author": "", "orig_id": 1417270}}, {"model": "metainfo.source", "pk": 14343, "fields": {"orig_filename": "Hieber_Karlmann_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 312f.", "author": "", "orig_id": 1417271}}, {"model": "metainfo.source", "pk": 14344, "fields": {"orig_filename": "Hiebl_Josef-Ferdinand_1862_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417272}}, {"model": "metainfo.source", "pk": 14345, "fields": {"orig_filename": "Hiebsch_Herbert_1905_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417273}}, {"model": "metainfo.source", "pk": 14346, "fields": {"orig_filename": "Hiebsch_Josef_1854_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417274}}, {"model": "metainfo.source", "pk": 14347, "fields": {"orig_filename": "Hieke_Wenzel_1852_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313", "author": "", "orig_id": 1417275}}, {"model": "metainfo.source", "pk": 14348, "fields": {"orig_filename": "Hiermann_Franz_1870_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 313f.", "author": "", "orig_id": 1417276}}, {"model": "metainfo.source", "pk": 14349, "fields": {"orig_filename": "Hieronimus_Otto_1879_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1451374}}, {"model": "metainfo.source", "pk": 14350, "fields": {"orig_filename": "Hieronymi_Karl_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417277}}, {"model": "metainfo.source", "pk": 14351, "fields": {"orig_filename": "Hieser_Otto_1850_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417278}}, {"model": "metainfo.source", "pk": 14352, "fields": {"orig_filename": "Hietzinger_Karl-Bernhard_1786_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314", "author": "", "orig_id": 1417279}}, {"model": "metainfo.source", "pk": 14353, "fields": {"orig_filename": "Hilbert_Kamill_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417283}}, {"model": "metainfo.source", "pk": 14354, "fields": {"orig_filename": "Hilber_Vincenz_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 314f.", "author": "", "orig_id": 1417282}}, {"model": "metainfo.source", "pk": 14355, "fields": {"orig_filename": "Hilchenbach_Karl-Wilhelm_1749_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417284}}, {"model": "metainfo.source", "pk": 14356, "fields": {"orig_filename": "Hildebrand_Richard_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417286}}, {"model": "metainfo.source", "pk": 14357, "fields": {"orig_filename": "Hildenbrand_Franz-Xaver_1789_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315f.", "author": "", "orig_id": 1417287}}, {"model": "metainfo.source", "pk": 14358, "fields": {"orig_filename": "Hildenbrand_Valentin-Johann_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417288}}, {"model": "metainfo.source", "pk": 14359, "fields": {"orig_filename": "Hildwein_Alois_1789_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417365}}, {"model": "metainfo.source", "pk": 14360, "fields": {"orig_filename": "Hild_Josef_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 315", "author": "", "orig_id": 1417285}}, {"model": "metainfo.source", "pk": 14361, "fields": {"orig_filename": "Hilgenreiner_Karl_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316", "author": "", "orig_id": 1417366}}, {"model": "metainfo.source", "pk": 14362, "fields": {"orig_filename": "Hillebrand_Karl_1861_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417368}}, {"model": "metainfo.source", "pk": 14363, "fields": {"orig_filename": "Hilleprandt_Franz_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417369}}, {"model": "metainfo.source", "pk": 14364, "fields": {"orig_filename": "Hiller_Johann_1748_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317", "author": "", "orig_id": 1417370}}, {"model": "metainfo.source", "pk": 14365, "fields": {"orig_filename": "Hiller_Karl_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 317f.", "author": "", "orig_id": 1417371}}, {"model": "metainfo.source", "pk": 14366, "fields": {"orig_filename": "Hille_Augustin-Bartholomaeus_1786_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 316f.", "author": "", "orig_id": 1417367}}, {"model": "metainfo.source", "pk": 14367, "fields": {"orig_filename": "Hillischer_Hermann-Theodor_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318", "author": "", "orig_id": 1417373}}, {"model": "metainfo.source", "pk": 14368, "fields": {"orig_filename": "Hillischer_Josef-Hermann_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318", "author": "", "orig_id": 1417374}}, {"model": "metainfo.source", "pk": 14369, "fields": {"orig_filename": "Hilpert_Helmut_1923_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 318f.", "author": "", "orig_id": 1417375}}, {"model": "metainfo.source", "pk": 14370, "fields": {"orig_filename": "Hilscher_Josef-Emanuel_1806_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417376}}, {"model": "metainfo.source", "pk": 14371, "fields": {"orig_filename": "Hilscher_Karl_1873_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417377}}, {"model": "metainfo.source", "pk": 14372, "fields": {"orig_filename": "Hilzer_Peter-Ignatz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417378}}, {"model": "metainfo.source", "pk": 14373, "fields": {"orig_filename": "Himmel-Agisburg_Heinrich_1843_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319", "author": "", "orig_id": 1417380}}, {"model": "metainfo.source", "pk": 14374, "fields": {"orig_filename": "Himmelbauer_Alfred_1884_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 319f.", "author": "", "orig_id": 1417381}}, {"model": "metainfo.source", "pk": 14375, "fields": {"orig_filename": "Himmelbauer_Franz_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417382}}, {"model": "metainfo.source", "pk": 14376, "fields": {"orig_filename": "Himmelbauer_Michael_1829_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417383}}, {"model": "metainfo.source", "pk": 14377, "fields": {"orig_filename": "Himmelbaur_Marietta_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320", "author": "", "orig_id": 1417384}}, {"model": "metainfo.source", "pk": 14378, "fields": {"orig_filename": "Himmelbaur_Wolfgang_1886_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 320f.", "author": "", "orig_id": 1417385}}, {"model": "metainfo.source", "pk": 14379, "fields": {"orig_filename": "Himsl_Ferdinand_1868_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321", "author": "", "orig_id": 1417386}}, {"model": "metainfo.source", "pk": 14380, "fields": {"orig_filename": "Hingenau_Otto-Bernhard-Gottlieb_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321", "author": "", "orig_id": 1417387}}, {"model": "metainfo.source", "pk": 14381, "fields": {"orig_filename": "Hinke_Johann_1837_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 321f.", "author": "", "orig_id": 1417388}}, {"model": "metainfo.source", "pk": 14382, "fields": {"orig_filename": "Hinkovic_Hinko_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417457}}, {"model": "metainfo.source", "pk": 14383, "fields": {"orig_filename": "Hinsenkamp_Therese_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417459}}, {"model": "metainfo.source", "pk": 14384, "fields": {"orig_filename": "Hinterberger_Friedrich_1826_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322", "author": "", "orig_id": 1417460}}, {"model": "metainfo.source", "pk": 14385, "fields": {"orig_filename": "Hinterberger_Hugo_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 322f.", "author": "", "orig_id": 1417461}}, {"model": "metainfo.source", "pk": 14386, "fields": {"orig_filename": "Hinterhuber_Georg_1768_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417462}}, {"model": "metainfo.source", "pk": 14387, "fields": {"orig_filename": "Hinterhuber_Julius_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417464}}, {"model": "metainfo.source", "pk": 14388, "fields": {"orig_filename": "Hinterhuber_Rudolf_1802_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417465}}, {"model": "metainfo.source", "pk": 14389, "fields": {"orig_filename": "Hinterlechner_Fulgentius_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323", "author": "", "orig_id": 1417466}}, {"model": "metainfo.source", "pk": 14390, "fields": {"orig_filename": "Hinterlechner_Karl_1874_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 323f.", "author": "", "orig_id": 1417467}}, {"model": "metainfo.source", "pk": 14391, "fields": {"orig_filename": "Hinterleithner_Josef_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 324", "author": "", "orig_id": 1417468}}, {"model": "metainfo.source", "pk": 14392, "fields": {"orig_filename": "Hinteroecker_Johann-Nep_1820_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 324f.", "author": "", "orig_id": 1417469}}, {"model": "metainfo.source", "pk": 14393, "fields": {"orig_filename": "Hinterschweiger_Ludwig_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325", "author": "", "orig_id": 1417471}}, {"model": "metainfo.source", "pk": 14394, "fields": {"orig_filename": "Hinterstoisser_Franz_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325", "author": "", "orig_id": 1417472}}, {"model": "metainfo.source", "pk": 14395, "fields": {"orig_filename": "Hinterstoisser_Hermann-Joseph_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 325f.", "author": "", "orig_id": 1417474}}, {"model": "metainfo.source", "pk": 14396, "fields": {"orig_filename": "Hinterstoisser_Joseph-Carl_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326", "author": "", "orig_id": 1417475}}, {"model": "metainfo.source", "pk": 14397, "fields": {"orig_filename": "Hinterwaldner_Johann-Max_1844_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326", "author": "", "orig_id": 1417476}}, {"model": "metainfo.source", "pk": 14398, "fields": {"orig_filename": "Hinterwaldner_Josef_1833_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 326f.", "author": "", "orig_id": 1417477}}, {"model": "metainfo.source", "pk": 14399, "fields": {"orig_filename": "Hintner_Johann_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417478}}, {"model": "metainfo.source", "pk": 14400, "fields": {"orig_filename": "Hintner_Michael_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417479}}, {"model": "metainfo.source", "pk": 14401, "fields": {"orig_filename": "Hintner_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417480}}, {"model": "metainfo.source", "pk": 14402, "fields": {"orig_filename": "Hintraeger_Moritz_1831_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327", "author": "", "orig_id": 1417481}}, {"model": "metainfo.source", "pk": 14403, "fields": {"orig_filename": "Hiptmair_Mathias_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 327f.", "author": "", "orig_id": 1417552}}, {"model": "metainfo.source", "pk": 14404, "fields": {"orig_filename": "Hirc_Dragutin_1853_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417553}}, {"model": "metainfo.source", "pk": 14405, "fields": {"orig_filename": "Hirc_Miroslav_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417554}}, {"model": "metainfo.source", "pk": 14406, "fields": {"orig_filename": "Hiremy-Hirschl_Adolf_1860_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328", "author": "", "orig_id": 1417556}}, {"model": "metainfo.source", "pk": 14407, "fields": {"orig_filename": "Hirn_Ferdinand_1875_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 328f.", "author": "", "orig_id": 1417557}}, {"model": "metainfo.source", "pk": 14408, "fields": {"orig_filename": "Hirn_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329", "author": "", "orig_id": 1417558}}, {"model": "metainfo.source", "pk": 14409, "fields": {"orig_filename": "Hirschberg_Aleksander_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331f.", "author": "", "orig_id": 1417566}}, {"model": "metainfo.source", "pk": 14410, "fields": {"orig_filename": "Hirschberg_Marie_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332", "author": "", "orig_id": 1417567}}, {"model": "metainfo.source", "pk": 14411, "fields": {"orig_filename": "Hirschfeld_Leo_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332", "author": "", "orig_id": 1417568}}, {"model": "metainfo.source", "pk": 14412, "fields": {"orig_filename": "Hirschfeld_Otto_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 332f.", "author": "", "orig_id": 1417569}}, {"model": "metainfo.source", "pk": 14413, "fields": {"orig_filename": "Hirschfeld_Robert_1857_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333", "author": "", "orig_id": 1417570}}, {"model": "metainfo.source", "pk": 14414, "fields": {"orig_filename": "Hirschfeld_Viktor_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333", "author": "", "orig_id": 1417571}}, {"model": "metainfo.source", "pk": 14415, "fields": {"orig_filename": "Hirschhaeuter_Joseph_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 333f.", "author": "", "orig_id": 1417572}}, {"model": "metainfo.source", "pk": 14416, "fields": {"orig_filename": "Hirschler_Anna_1846_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334", "author": "", "orig_id": 1417574}}, {"model": "metainfo.source", "pk": 14417, "fields": {"orig_filename": "Hirschler_Ignaz_1823_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334f.", "author": "", "orig_id": 1417642}}, {"model": "metainfo.source", "pk": 14418, "fields": {"orig_filename": "Hirschl_Josef-Adolf_1865_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 334", "author": "", "orig_id": 1417573}}, {"model": "metainfo.source", "pk": 14419, "fields": {"orig_filename": "Hirsch_Arnold_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329", "author": "", "orig_id": 1417559}}, {"model": "metainfo.source", "pk": 14420, "fields": {"orig_filename": "Hirsch_Hans_1878_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 329f.", "author": "", "orig_id": 1417560}}, {"model": "metainfo.source", "pk": 14421, "fields": {"orig_filename": "Hirsch_Helene_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 330", "author": "", "orig_id": 1417561}}, {"model": "metainfo.source", "pk": 14422, "fields": {"orig_filename": "Hirsch_Karl_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 330f.", "author": "", "orig_id": 1417562}}, {"model": "metainfo.source", "pk": 14423, "fields": {"orig_filename": "Hirsch_Moritz_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417563}}, {"model": "metainfo.source", "pk": 14424, "fields": {"orig_filename": "Hirsch_Oskar_1877_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417564}}, {"model": "metainfo.source", "pk": 14425, "fields": {"orig_filename": "Hirsch_Rudolf_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 331", "author": "", "orig_id": 1417565}}, {"model": "metainfo.source", "pk": 14426, "fields": {"orig_filename": "Hirtenfeld_Jaromir_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335", "author": "", "orig_id": 1417644}}, {"model": "metainfo.source", "pk": 14427, "fields": {"orig_filename": "Hirt_Max_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335", "author": "", "orig_id": 1417643}}, {"model": "metainfo.source", "pk": 14428, "fields": {"orig_filename": "Hitler_Adolf_1889_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 335ff.", "author": "", "orig_id": 1417646}}, {"model": "metainfo.source", "pk": 14429, "fields": {"orig_filename": "Hitschmann_Fritz_1870_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 337", "author": "", "orig_id": 1417647}}, {"model": "metainfo.source", "pk": 14430, "fields": {"orig_filename": "Hitschmann_Hugo-Heinrich_1838_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 337f.", "author": "", "orig_id": 1417648}}, {"model": "metainfo.source", "pk": 14431, "fields": {"orig_filename": "Hitschmann_Maximilian_1870_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417649}}, {"model": "metainfo.source", "pk": 14432, "fields": {"orig_filename": "Hittmair_Anton_1858_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417650}}, {"model": "metainfo.source", "pk": 14433, "fields": {"orig_filename": "Hittmair_Rudolf_1859_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338", "author": "", "orig_id": 1417662}}, {"model": "metainfo.source", "pk": 14434, "fields": {"orig_filename": "Hittmair_Rudolf_1889_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 338f.", "author": "", "orig_id": 1417663}}, {"model": "metainfo.source", "pk": 14435, "fields": {"orig_filename": "Hitzenthaler_Anton_1750_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 339", "author": "", "orig_id": 1417732}}, {"model": "metainfo.source", "pk": 14436, "fields": {"orig_filename": "Hering_Ewald_1834_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416815}}, {"model": "metainfo.source", "pk": 14437, "fields": {"orig_filename": "Hering_Ewald_1866_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416816}}, {"model": "metainfo.source", "pk": 14438, "fields": {"orig_filename": "Heritsch_Franz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283f.", "author": "", "orig_id": 1416817}}, {"model": "metainfo.source", "pk": 14439, "fields": {"orig_filename": "Herkner_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416818}}, {"model": "metainfo.source", "pk": 14440, "fields": {"orig_filename": "Herloss_Karl_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416819}}, {"model": "metainfo.source", "pk": 14441, "fields": {"orig_filename": "Hermann-Hermannsthal_Franz_1799_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416898}}, {"model": "metainfo.source", "pk": 14442, "fields": {"orig_filename": "Hermann_Albert_1864_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285", "author": "", "orig_id": 1416891}}, {"model": "metainfo.source", "pk": 14443, "fields": {"orig_filename": "Hermann_August-Gustav_1828_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285", "author": "", "orig_id": 1416892}}, {"model": "metainfo.source", "pk": 14444, "fields": {"orig_filename": "Hermann_Benedikt-Franz-Johann_1755_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 285f.", "author": "", "orig_id": 1416893}}, {"model": "metainfo.source", "pk": 14445, "fields": {"orig_filename": "Hermann_Franz_1827_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286", "author": "", "orig_id": 1420733}}, {"model": "metainfo.source", "pk": 14446, "fields": {"orig_filename": "Hermann_Friedrich_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 286", "author": "", "orig_id": 1420734}}, {"model": "metainfo.source", "pk": 14447, "fields": {"orig_filename": "Hermann_Hugo_1878_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287", "author": "", "orig_id": 1420736}}, {"model": "metainfo.source", "pk": 14448, "fields": {"orig_filename": "Hermann_Johann_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287", "author": "", "orig_id": 1420737}}, {"model": "metainfo.source", "pk": 14449, "fields": {"orig_filename": "Hermann_Johann_1800_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 287f.", "author": "", "orig_id": 1420738}}, {"model": "metainfo.source", "pk": 14450, "fields": {"orig_filename": "Hermann_Josef_1817_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416894}}, {"model": "metainfo.source", "pk": 14451, "fields": {"orig_filename": "Hermann_Julius_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416895}}, {"model": "metainfo.source", "pk": 14452, "fields": {"orig_filename": "Hermann_Leo_1842_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416896}}, {"model": "metainfo.source", "pk": 14453, "fields": {"orig_filename": "Hermann_Richard_1872_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 288", "author": "", "orig_id": 1416897}}, {"model": "metainfo.source", "pk": 14454, "fields": {"orig_filename": "Herman_Jan_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284", "author": "", "orig_id": 1416821}}, {"model": "metainfo.source", "pk": 14455, "fields": {"orig_filename": "Herman_Otto_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 284f.", "author": "", "orig_id": 1416890}}, {"model": "metainfo.source", "pk": 14456, "fields": {"orig_filename": "Herndl_Franz_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416899}}, {"model": "metainfo.source", "pk": 14457, "fields": {"orig_filename": "Hernler_Franz_1897_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416900}}, {"model": "metainfo.source", "pk": 14458, "fields": {"orig_filename": "Herold_Franz_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416901}}, {"model": "metainfo.source", "pk": 14459, "fields": {"orig_filename": "Herold_Jiri_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416902}}, {"model": "metainfo.source", "pk": 14460, "fields": {"orig_filename": "Herold_Josef_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289", "author": "", "orig_id": 1416903}}, {"model": "metainfo.source", "pk": 14461, "fields": {"orig_filename": "Herold_Josef_1861_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 289f.", "author": "", "orig_id": 1416904}}, {"model": "metainfo.source", "pk": 14462, "fields": {"orig_filename": "Herrenburg-Tuczek_Leopoldine_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416906}}, {"model": "metainfo.source", "pk": 14463, "fields": {"orig_filename": "Herring_Johann_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416907}}, {"model": "metainfo.source", "pk": 14464, "fields": {"orig_filename": "Herrmann-Herrnritt_Rudolf_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416985}}, {"model": "metainfo.source", "pk": 14465, "fields": {"orig_filename": "Herrmann_Anton_1851_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290f.", "author": "", "orig_id": 1416908}}, {"model": "metainfo.source", "pk": 14466, "fields": {"orig_filename": "Herrmann_August_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416909}}, {"model": "metainfo.source", "pk": 14467, "fields": {"orig_filename": "Herrmann_Edmund_1875_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416910}}, {"model": "metainfo.source", "pk": 14468, "fields": {"orig_filename": "Herrmann_Emanuel_1839_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291", "author": "", "orig_id": 1416981}}, {"model": "metainfo.source", "pk": 14469, "fields": {"orig_filename": "Herrmann_Fritz_1903_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 291f.", "author": "", "orig_id": 1416982}}, {"model": "metainfo.source", "pk": 14470, "fields": {"orig_filename": "Herrmann_Karl_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292", "author": "", "orig_id": 1416983}}, {"model": "metainfo.source", "pk": 14471, "fields": {"orig_filename": "Herrnheiser_Isidor_1861_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 292f.", "author": "", "orig_id": 1416986}}, {"model": "metainfo.source", "pk": 14472, "fields": {"orig_filename": "Herr_Josef-Philipp_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 290", "author": "", "orig_id": 1416905}}, {"model": "metainfo.source", "pk": 14473, "fields": {"orig_filename": "Herschel_Otto_1871_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416988}}, {"model": "metainfo.source", "pk": 14474, "fields": {"orig_filename": "Hertle_Josef_1871_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416989}}, {"model": "metainfo.source", "pk": 14475, "fields": {"orig_filename": "Hertzka_Emil_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293", "author": "", "orig_id": 1416990}}, {"model": "metainfo.source", "pk": 14476, "fields": {"orig_filename": "Hertzka_Jella_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 293f.", "author": "", "orig_id": 1416991}}, {"model": "metainfo.source", "pk": 14477, "fields": {"orig_filename": "Hertzka_Julius_1859_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294", "author": "", "orig_id": 1416992}}, {"model": "metainfo.source", "pk": 14478, "fields": {"orig_filename": "Hertzka_Theodor_1845_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294", "author": "", "orig_id": 1416993}}, {"model": "metainfo.source", "pk": 14479, "fields": {"orig_filename": "Herz-Rodenau_Johann-Jakob_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1416999}}, {"model": "metainfo.source", "pk": 14480, "fields": {"orig_filename": "Herzberg-Fraenkel_Leo_1827_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1417000}}, {"model": "metainfo.source", "pk": 14481, "fields": {"orig_filename": "Herzberg-Fraenkel_Sigmund_1857_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1420732}}, {"model": "metainfo.source", "pk": 14482, "fields": {"orig_filename": "Herzenskron_Hermann-Josef_1789_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296", "author": "", "orig_id": 1417001}}, {"model": "metainfo.source", "pk": 14483, "fields": {"orig_filename": "Herzenskron_Viktor_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 296f.", "author": "", "orig_id": 1417002}}, {"model": "metainfo.source", "pk": 14484, "fields": {"orig_filename": "Herzfeld_Adolf_1800_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297", "author": "", "orig_id": 1417003}}, {"model": "metainfo.source", "pk": 14485, "fields": {"orig_filename": "Herzfeld_Karl-August_1861_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297", "author": "", "orig_id": 1417004}}, {"model": "metainfo.source", "pk": 14486, "fields": {"orig_filename": "Herzfeld_Marie_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 297f.", "author": "", "orig_id": 1417075}}, {"model": "metainfo.source", "pk": 14487, "fields": {"orig_filename": "Herzfeld_Victor_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417076}}, {"model": "metainfo.source", "pk": 14488, "fields": {"orig_filename": "Herzig_Josef_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417078}}, {"model": "metainfo.source", "pk": 14489, "fields": {"orig_filename": "Herzinger_Anton_1763_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417079}}, {"model": "metainfo.source", "pk": 14490, "fields": {"orig_filename": "Herzka_Siegmund_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298", "author": "", "orig_id": 1417080}}, {"model": "metainfo.source", "pk": 14491, "fields": {"orig_filename": "Herzlieb_Franz_1797_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417083}}, {"model": "metainfo.source", "pk": 14492, "fields": {"orig_filename": "Herzl_Sigmund_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 298f.", "author": "", "orig_id": 1417081}}, {"model": "metainfo.source", "pk": 14493, "fields": {"orig_filename": "Herzl_Theodor_1860_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 299f.", "author": "", "orig_id": 1417082}}, {"model": "metainfo.source", "pk": 14494, "fields": {"orig_filename": "Herzmann_Josef_1859_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417084}}, {"model": "metainfo.source", "pk": 14495, "fields": {"orig_filename": "Herzmansky_August_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300", "author": "", "orig_id": 1417085}}, {"model": "metainfo.source", "pk": 14496, "fields": {"orig_filename": "Herzmansky_Bernhard_1852_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 300f.", "author": "", "orig_id": 1417086}}, {"model": "metainfo.source", "pk": 14497, "fields": {"orig_filename": "Herzogenberg_Heinrich_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302", "author": "", "orig_id": 1417090}}, {"model": "metainfo.source", "pk": 14498, "fields": {"orig_filename": "Herzog_David_1869_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1414793}}, {"model": "metainfo.source", "pk": 14499, "fields": {"orig_filename": "Herzog_Jakob_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1417087}}, {"model": "metainfo.source", "pk": 14500, "fields": {"orig_filename": "Herzog_Katharina_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301", "author": "", "orig_id": 1417088}}, {"model": "metainfo.source", "pk": 14501, "fields": {"orig_filename": "Herzog_Reginald-Oliver_1878_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 301f.", "author": "", "orig_id": 1417089}}, {"model": "metainfo.source", "pk": 14502, "fields": {"orig_filename": "Herz_Eugen_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 294f.", "author": "", "orig_id": 1416994}}, {"model": "metainfo.source", "pk": 14503, "fields": {"orig_filename": "Herz_Fritz_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416995}}, {"model": "metainfo.source", "pk": 14504, "fields": {"orig_filename": "Herz_Heinrich_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416996}}, {"model": "metainfo.source", "pk": 14505, "fields": {"orig_filename": "Herz_Maximilian_1837_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295", "author": "", "orig_id": 1416997}}, {"model": "metainfo.source", "pk": 14506, "fields": {"orig_filename": "Herz_Norbert_1858_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 295f.", "author": "", "orig_id": 1416998}}, {"model": "metainfo.source", "pk": 14507, "fields": {"orig_filename": "Heschl_Richard-Ladislaus_1824_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302f.", "author": "", "orig_id": 1417092}}, {"model": "metainfo.source", "pk": 14508, "fields": {"orig_filename": "Hesch_Wilhelm_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 302", "author": "", "orig_id": 1417091}}, {"model": "metainfo.source", "pk": 14509, "fields": {"orig_filename": "Hesse-Wartegg_Ernst_1854_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417097}}, {"model": "metainfo.source", "pk": 14510, "fields": {"orig_filename": "Hessen-Homburg_Ferdinand-Heinrich_1783_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417098}}, {"model": "metainfo.source", "pk": 14511, "fields": {"orig_filename": "Hessen-Homburg_Gustav-Adolph-Friedrich_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417100}}, {"model": "metainfo.source", "pk": 14512, "fields": {"orig_filename": "Hessen-Homburg_Philipp-August-Friedrich_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305", "author": "", "orig_id": 1417171}}, {"model": "metainfo.source", "pk": 14513, "fields": {"orig_filename": "Hessen-Rhein_Alexander-Ludwig-Georg-Friedrich-Emil_1823_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 305f.", "author": "", "orig_id": 1417172}}, {"model": "metainfo.source", "pk": 14514, "fields": {"orig_filename": "Hessen-Rhein_Emil-Maximilian-Leopold-August-Karl_1790_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417173}}, {"model": "metainfo.source", "pk": 14515, "fields": {"orig_filename": "Hessler_Ferdinand_1803_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417175}}, {"model": "metainfo.source", "pk": 14516, "fields": {"orig_filename": "Hessl_Gustav-August_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417174}}, {"model": "metainfo.source", "pk": 14517, "fields": {"orig_filename": "Hess_Bruno_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 303", "author": "", "orig_id": 1417093}}, {"model": "metainfo.source", "pk": 14518, "fields": {"orig_filename": "Hess_Heinrich_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 304", "author": "", "orig_id": 1417095}}, {"model": "metainfo.source", "pk": 14519, "fields": {"orig_filename": "Hess_Heinrich_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 303f.", "author": "", "orig_id": 1417094}}, {"model": "metainfo.source", "pk": 14520, "fields": {"orig_filename": "Hess_Philipp_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 304f.", "author": "", "orig_id": 1417096}}, {"model": "metainfo.source", "pk": 14521, "fields": {"orig_filename": "Hetschko_Alfred_1854_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 306", "author": "", "orig_id": 1417176}}, {"model": "metainfo.source", "pk": 14522, "fields": {"orig_filename": "Hetsey_Alice_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417177}}, {"model": "metainfo.source", "pk": 14523, "fields": {"orig_filename": "Hettwer_Emil_1847_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417178}}, {"model": "metainfo.source", "pk": 14524, "fields": {"orig_filename": "Hetzenauer_Michael_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307", "author": "", "orig_id": 1417180}}, {"model": "metainfo.source", "pk": 14525, "fields": {"orig_filename": "Hetzendorf-Hohenberg_Johann-Ferdinand_1732_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 307f.", "author": "", "orig_id": 1417181}}, {"model": "metainfo.source", "pk": 14526, "fields": {"orig_filename": "Heubach_Hans-Heinrich_1890_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308", "author": "", "orig_id": 1417182}}, {"model": "metainfo.source", "pk": 14527, "fields": {"orig_filename": "Heuberger_Leopold_1786_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308", "author": "", "orig_id": 1417183}}, {"model": "metainfo.source", "pk": 14528, "fields": {"orig_filename": "Heuberger_Richard-Franz-Joseph_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 308f.", "author": "", "orig_id": 1417184}}, {"model": "metainfo.source", "pk": 14529, "fields": {"orig_filename": "Heuffel_Johann_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417185}}, {"model": "metainfo.source", "pk": 14530, "fields": {"orig_filename": "Heurteur_Nikolaus_1781_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417187}}, {"model": "metainfo.source", "pk": 14531, "fields": {"orig_filename": "Heussenstamm-Heissenstein-Graefenhausen_Theodor_1801_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309", "author": "", "orig_id": 1417188}}, {"model": "metainfo.source", "pk": 14532, "fields": {"orig_filename": "Heveroch_Antonin_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 309f.", "author": "", "orig_id": 1417189}}, {"model": "metainfo.source", "pk": 14533, "fields": {"orig_filename": "Hevesi_Ludwig_1842_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 9, 1959), S. 310", "author": "", "orig_id": 1417190}}, {"model": "metainfo.source", "pk": 14534, "fields": {"orig_filename": "Hejda_Wilhelm_1868_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417731}}, {"model": "metainfo.source", "pk": 14535, "fields": {"orig_filename": "Helcelet_Johann_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417801}}, {"model": "metainfo.source", "pk": 14536, "fields": {"orig_filename": "Helcel_Antoni-Zygmunt_1808_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254f.", "author": "", "orig_id": 1417800}}, {"model": "metainfo.source", "pk": 14537, "fields": {"orig_filename": "Held_Johann-Theobald_1773_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417802}}, {"model": "metainfo.source", "pk": 14538, "fields": {"orig_filename": "Held_Leo_1874_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417803}}, {"model": "metainfo.source", "pk": 14539, "fields": {"orig_filename": "Held_Ludwig_1837_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417804}}, {"model": "metainfo.source", "pk": 14540, "fields": {"orig_filename": "Helfenstein_Alois_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417805}}, {"model": "metainfo.source", "pk": 14541, "fields": {"orig_filename": "Helferstorfer_Othmar_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256", "author": "", "orig_id": 1417807}}, {"model": "metainfo.source", "pk": 14542, "fields": {"orig_filename": "Helfert_Joseph-Alexander_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256f.", "author": "", "orig_id": 1417809}}, {"model": "metainfo.source", "pk": 14543, "fields": {"orig_filename": "Helfert_Joseph_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 256", "author": "", "orig_id": 1417808}}, {"model": "metainfo.source", "pk": 14544, "fields": {"orig_filename": "Helfert_Vladimir_1886_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 257", "author": "", "orig_id": 1417810}}, {"model": "metainfo.source", "pk": 14545, "fields": {"orig_filename": "Helfer_Johann-Wilhelm_1810_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 255", "author": "", "orig_id": 1417806}}, {"model": "metainfo.source", "pk": 14546, "fields": {"orig_filename": "Hellenbach_Lazar_1827_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417814}}, {"model": "metainfo.source", "pk": 14547, "fields": {"orig_filename": "Hellensteiner_Emma_1818_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417815}}, {"model": "metainfo.source", "pk": 14548, "fields": {"orig_filename": "Heller-Hellwald_Friedrich-Anton_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417897}}, {"model": "metainfo.source", "pk": 14549, "fields": {"orig_filename": "Heller-Hellwald_Friedrich-Jakob_1798_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417898}}, {"model": "metainfo.source", "pk": 14550, "fields": {"orig_filename": "Heller-Ostersetzer_Hermine_1874_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417900}}, {"model": "metainfo.source", "pk": 14551, "fields": {"orig_filename": "Heller_Eduard_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417816}}, {"model": "metainfo.source", "pk": 14552, "fields": {"orig_filename": "Heller_Gustav_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417817}}, {"model": "metainfo.source", "pk": 14553, "fields": {"orig_filename": "Heller_Hermann-Vinzenz_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417818}}, {"model": "metainfo.source", "pk": 14554, "fields": {"orig_filename": "Heller_Isidor_1816_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259", "author": "", "orig_id": 1417819}}, {"model": "metainfo.source", "pk": 14555, "fields": {"orig_filename": "Heller_Johann-Florian_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 259f.", "author": "", "orig_id": 1417820}}, {"model": "metainfo.source", "pk": 14556, "fields": {"orig_filename": "Heller_Josef_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417887}}, {"model": "metainfo.source", "pk": 14557, "fields": {"orig_filename": "Heller_Josef_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417888}}, {"model": "metainfo.source", "pk": 14558, "fields": {"orig_filename": "Heller_Kamill_1823_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260", "author": "", "orig_id": 1417889}}, {"model": "metainfo.source", "pk": 14559, "fields": {"orig_filename": "Heller_Karl-Bartholomaeus_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 260f.", "author": "", "orig_id": 1417891}}, {"model": "metainfo.source", "pk": 14560, "fields": {"orig_filename": "Heller_Karl-Maria_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417892}}, {"model": "metainfo.source", "pk": 14561, "fields": {"orig_filename": "Heller_Kurt_1898_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417893}}, {"model": "metainfo.source", "pk": 14562, "fields": {"orig_filename": "Heller_Prokop-Benedikt_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261", "author": "", "orig_id": 1417894}}, {"model": "metainfo.source", "pk": 14563, "fields": {"orig_filename": "Heller_Seligmann_1831_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 261f.", "author": "", "orig_id": 1417895}}, {"model": "metainfo.source", "pk": 14564, "fields": {"orig_filename": "Heller_Simon_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262", "author": "", "orig_id": 1417896}}, {"model": "metainfo.source", "pk": 14565, "fields": {"orig_filename": "Helletsgruber_Anton_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 262f.", "author": "", "orig_id": 1417901}}, {"model": "metainfo.source", "pk": 14566, "fields": {"orig_filename": "Hellich_Bohuslav_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417903}}, {"model": "metainfo.source", "pk": 14567, "fields": {"orig_filename": "Hellich_Josef-Adalbert_1807_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417904}}, {"model": "metainfo.source", "pk": 14568, "fields": {"orig_filename": "Hellmann_Alois-Philipp_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417905}}, {"model": "metainfo.source", "pk": 14569, "fields": {"orig_filename": "Hellmann_Heinrich_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417906}}, {"model": "metainfo.source", "pk": 14570, "fields": {"orig_filename": "Hellmann_Jakob_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263", "author": "", "orig_id": 1417978}}, {"model": "metainfo.source", "pk": 14571, "fields": {"orig_filename": "Hellmayr_Carl-Eduard_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 263f.", "author": "", "orig_id": 1417979}}, {"model": "metainfo.source", "pk": 14572, "fields": {"orig_filename": "Hellmer_Edmund_1850_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 264f.", "author": "", "orig_id": 1417980}}, {"model": "metainfo.source", "pk": 14573, "fields": {"orig_filename": "Hellmer_Edmund_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417981}}, {"model": "metainfo.source", "pk": 14574, "fields": {"orig_filename": "Hellmer_Johann-Karl_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417982}}, {"model": "metainfo.source", "pk": 14575, "fields": {"orig_filename": "Hellmesberger_Ferdinand_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265", "author": "", "orig_id": 1417983}}, {"model": "metainfo.source", "pk": 14576, "fields": {"orig_filename": "Hellmesberger_Georg_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 265f.", "author": "", "orig_id": 1417984}}, {"model": "metainfo.source", "pk": 14577, "fields": {"orig_filename": "Hellmesberger_Georg_1830_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266", "author": "", "orig_id": 1417985}}, {"model": "metainfo.source", "pk": 14578, "fields": {"orig_filename": "Hellmesberger_Joseph_1855_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266", "author": "", "orig_id": 1417987}}, {"model": "metainfo.source", "pk": 14579, "fields": {"orig_filename": "Hellwag_Konrad-Wilhelm_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 266f.", "author": "", "orig_id": 1417988}}, {"model": "metainfo.source", "pk": 14580, "fields": {"orig_filename": "Hellweger_Franz_1812_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267", "author": "", "orig_id": 1417989}}, {"model": "metainfo.source", "pk": 14581, "fields": {"orig_filename": "Hellweger_Michael_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267", "author": "", "orig_id": 1417990}}, {"model": "metainfo.source", "pk": 14582, "fields": {"orig_filename": "Helly_Carl_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 267f.", "author": "", "orig_id": 1417991}}, {"model": "metainfo.source", "pk": 14583, "fields": {"orig_filename": "Hell_Gustav_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417811}}, {"model": "metainfo.source", "pk": 14584, "fields": {"orig_filename": "Hell_Josef_1789_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 258", "author": "", "orig_id": 1417812}}, {"model": "metainfo.source", "pk": 14585, "fields": {"orig_filename": "Helmer_Gilbert_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268f.", "author": "", "orig_id": 1417995}}, {"model": "metainfo.source", "pk": 14586, "fields": {"orig_filename": "Helmer_Hermann_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417996}}, {"model": "metainfo.source", "pk": 14587, "fields": {"orig_filename": "Helmhacker_Rudolf_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269", "author": "", "orig_id": 1417997}}, {"model": "metainfo.source", "pk": 14588, "fields": {"orig_filename": "Helmreichen-Brunnfeld_Virgil_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269", "author": "", "orig_id": 1417998}}, {"model": "metainfo.source", "pk": 14589, "fields": {"orig_filename": "Helm_Joseph-Alois_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417992}}, {"model": "metainfo.source", "pk": 14590, "fields": {"orig_filename": "Helm_Theodor_1810_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417993}}, {"model": "metainfo.source", "pk": 14591, "fields": {"orig_filename": "Helm_Theodor_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 268", "author": "", "orig_id": 1417994}}, {"model": "metainfo.source", "pk": 14592, "fields": {"orig_filename": "Hemala_Franz_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 269f.", "author": "", "orig_id": 1417999}}, {"model": "metainfo.source", "pk": 14593, "fields": {"orig_filename": "Hemerlein_Karl_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270", "author": "", "orig_id": 1418000}}, {"model": "metainfo.source", "pk": 14594, "fields": {"orig_filename": "Hemmelmayr-Augustenfeld_Franz-Josef_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270", "author": "", "orig_id": 1418001}}, {"model": "metainfo.source", "pk": 14595, "fields": {"orig_filename": "Hempel_Gustav_1842_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 270f.", "author": "", "orig_id": 1418075}}, {"model": "metainfo.source", "pk": 14596, "fields": {"orig_filename": "Hempel_Josef_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 271", "author": "", "orig_id": 1418076}}, {"model": "metainfo.source", "pk": 14597, "fields": {"orig_filename": "Hempt_Adolf_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2178551}}, {"model": "metainfo.source", "pk": 14598, "fields": {"orig_filename": "Henckel-Donnersmarck_Hugo_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 271f.", "author": "", "orig_id": 1418077}}, {"model": "metainfo.source", "pk": 14599, "fields": {"orig_filename": "Hendel_Friedrich_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418078}}, {"model": "metainfo.source", "pk": 14600, "fields": {"orig_filename": "Hendel_Maximilian_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418079}}, {"model": "metainfo.source", "pk": 14601, "fields": {"orig_filename": "Hengelmueller-Hengervar_Ladislaus_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 272", "author": "", "orig_id": 1418080}}, {"model": "metainfo.source", "pk": 14602, "fields": {"orig_filename": "Hengst_Oswald_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418081}}, {"model": "metainfo.source", "pk": 14603, "fields": {"orig_filename": "Henikstein_Alfred_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418082}}, {"model": "metainfo.source", "pk": 14604, "fields": {"orig_filename": "Henneberg_Hugo_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273", "author": "", "orig_id": 1418083}}, {"model": "metainfo.source", "pk": 14605, "fields": {"orig_filename": "Henneberg_Johann-Bapt_1769_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 273f.", "author": "", "orig_id": 1418084}}, {"model": "metainfo.source", "pk": 14606, "fields": {"orig_filename": "Henning_Gottfried-Wilhelm_1829_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418085}}, {"model": "metainfo.source", "pk": 14607, "fields": {"orig_filename": "Henning_Karl_1860_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418086}}, {"model": "metainfo.source", "pk": 14608, "fields": {"orig_filename": "Henning_Roland_1896_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418087}}, {"model": "metainfo.source", "pk": 14609, "fields": {"orig_filename": "Henning_Theodor_1897_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 274", "author": "", "orig_id": 1418088}}, {"model": "metainfo.source", "pk": 14610, "fields": {"orig_filename": "Henrich_Josef_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418089}}, {"model": "metainfo.source", "pk": 14611, "fields": {"orig_filename": "Henschel_Gustav_1835_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418091}}, {"model": "metainfo.source", "pk": 14612, "fields": {"orig_filename": "Hensler_Karl-Friedrich_1759_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275", "author": "", "orig_id": 1418092}}, {"model": "metainfo.source", "pk": 14613, "fields": {"orig_filename": "Henszlmann_Emerich_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 275f.", "author": "", "orig_id": 1418093}}, {"model": "metainfo.source", "pk": 14614, "fields": {"orig_filename": "Hentzi-Arthurm_Heinrich_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276", "author": "", "orig_id": 1418094}}, {"model": "metainfo.source", "pk": 14615, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Anton-Seraphin_1767_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276", "author": "", "orig_id": 1418095}}, {"model": "metainfo.source", "pk": 14616, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Hans_1877_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 276f.", "author": "", "orig_id": 1418096}}, {"model": "metainfo.source", "pk": 14617, "fields": {"orig_filename": "Hepperger-Tirschtenberg-Hoffensthal_Josef_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 277", "author": "", "orig_id": 1418097}}, {"model": "metainfo.source", "pk": 14618, "fields": {"orig_filename": "Herbeck_Johann_1831_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 277f.", "author": "", "orig_id": 1418098}}, {"model": "metainfo.source", "pk": 14619, "fields": {"orig_filename": "Herbert-Kerchnawe_Ernst_1842_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416800}}, {"model": "metainfo.source", "pk": 14620, "fields": {"orig_filename": "Herberth_Carl_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416801}}, {"model": "metainfo.source", "pk": 14621, "fields": {"orig_filename": "Herbert_Albin_1787_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278", "author": "", "orig_id": 1418099}}, {"model": "metainfo.source", "pk": 14622, "fields": {"orig_filename": "Herbert_Franz-Paul_1819_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278f.", "author": "", "orig_id": 1416798}}, {"model": "metainfo.source", "pk": 14623, "fields": {"orig_filename": "Herbert_Franz_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 278", "author": "", "orig_id": 1416797}}, {"model": "metainfo.source", "pk": 14624, "fields": {"orig_filename": "Herbich_Franz_1791_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279", "author": "", "orig_id": 1416802}}, {"model": "metainfo.source", "pk": 14625, "fields": {"orig_filename": "Herbich_Franz_1821_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 279f.", "author": "", "orig_id": 1416803}}, {"model": "metainfo.source", "pk": 14626, "fields": {"orig_filename": "Herbsthoffer_Peter-Rudolf-Karl_1821_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416806}}, {"model": "metainfo.source", "pk": 14627, "fields": {"orig_filename": "Herbst_Eduard_1820_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 280f.", "author": "", "orig_id": 1416804}}, {"model": "metainfo.source", "pk": 14628, "fields": {"orig_filename": "Herbst_Friederike_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416805}}, {"model": "metainfo.source", "pk": 14629, "fields": {"orig_filename": "Herczel_Emanuel_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 281", "author": "", "orig_id": 1416807}}, {"model": "metainfo.source", "pk": 14630, "fields": {"orig_filename": "Herdlicka_Theodor_1840_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416808}}, {"model": "metainfo.source", "pk": 14631, "fields": {"orig_filename": "Herdtle_Hermann_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416809}}, {"model": "metainfo.source", "pk": 14632, "fields": {"orig_filename": "Herfurth_Franz-Karl_1853_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416810}}, {"model": "metainfo.source", "pk": 14633, "fields": {"orig_filename": "Hergesel_Franz_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416811}}, {"model": "metainfo.source", "pk": 14634, "fields": {"orig_filename": "Herget_Anton_1875_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 282", "author": "", "orig_id": 1416812}}, {"model": "metainfo.source", "pk": 14635, "fields": {"orig_filename": "Herget_Oskar_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416813}}, {"model": "metainfo.source", "pk": 14636, "fields": {"orig_filename": "Heric_Matija_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 283", "author": "", "orig_id": 1416814}}, {"model": "metainfo.source", "pk": 14637, "fields": {"orig_filename": "Hawel_Rudolf_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224f.", "author": "", "orig_id": 1418692}}, {"model": "metainfo.source", "pk": 14638, "fields": {"orig_filename": "Haydecker_Sebastian_1789_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1417340}}, {"model": "metainfo.source", "pk": 14639, "fields": {"orig_filename": "Haydinger_Franz_1797_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225f.", "author": "", "orig_id": 1417341}}, {"model": "metainfo.source", "pk": 14640, "fields": {"orig_filename": "Hayd_Karl_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1418695}}, {"model": "metainfo.source", "pk": 14641, "fields": {"orig_filename": "Hayek_August_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226", "author": "", "orig_id": 1417342}}, {"model": "metainfo.source", "pk": 14642, "fields": {"orig_filename": "Hayek_Gustav_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226", "author": "", "orig_id": 1417343}}, {"model": "metainfo.source", "pk": 14643, "fields": {"orig_filename": "Hayek_Hermann_1880_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 226f.", "author": "", "orig_id": 1417345}}, {"model": "metainfo.source", "pk": 14644, "fields": {"orig_filename": "Haymerle_Franz-Josef_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227", "author": "", "orig_id": 1417346}}, {"model": "metainfo.source", "pk": 14645, "fields": {"orig_filename": "Haymerle_Heinrich_1828_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227", "author": "", "orig_id": 1417347}}, {"model": "metainfo.source", "pk": 14646, "fields": {"orig_filename": "Haynald_Ludwig_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 227f.", "author": "", "orig_id": 1417348}}, {"model": "metainfo.source", "pk": 14647, "fields": {"orig_filename": "Haynau_Julius-Jacob_1786_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 228f.", "author": "", "orig_id": 1417349}}, {"model": "metainfo.source", "pk": 14648, "fields": {"orig_filename": "Hazslinszky-Hazslin_Friedrich-August_1818_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229", "author": "", "orig_id": 1417350}}, {"model": "metainfo.source", "pk": 14649, "fields": {"orig_filename": "Hazura_Karl_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 229", "author": "", "orig_id": 1417351}}, {"model": "metainfo.source", "pk": 14650, "fields": {"orig_filename": "Heberdey_Rudolf_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 231", "author": "", "orig_id": 1417353}}, {"model": "metainfo.source", "pk": 14651, "fields": {"orig_filename": "Heberle_Therese_1805_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417354}}, {"model": "metainfo.source", "pk": 14652, "fields": {"orig_filename": "Hebra_Ferdinand_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417355}}, {"model": "metainfo.source", "pk": 14653, "fields": {"orig_filename": "Hebra_Hans_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232", "author": "", "orig_id": 1417356}}, {"model": "metainfo.source", "pk": 14654, "fields": {"orig_filename": "Hechenblaikner_Ingenuin_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 232f.", "author": "", "orig_id": 1417357}}, {"model": "metainfo.source", "pk": 14655, "fields": {"orig_filename": "Hechenbleikner_Louis_1893_1983.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441921}}, {"model": "metainfo.source", "pk": 14656, "fields": {"orig_filename": "Hecht_Adolf_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417358}}, {"model": "metainfo.source", "pk": 14657, "fields": {"orig_filename": "Hecht_Karl-Wilhelm_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417359}}, {"model": "metainfo.source", "pk": 14658, "fields": {"orig_filename": "Hecht_Victor_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 233", "author": "", "orig_id": 1417360}}, {"model": "metainfo.source", "pk": 14659, "fields": {"orig_filename": "Heckel_Johann-Jakob_1790_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234f.", "author": "", "orig_id": 1417363}}, {"model": "metainfo.source", "pk": 14660, "fields": {"orig_filename": "Heckel_Karl-Ferdinand_1800_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417436}}, {"model": "metainfo.source", "pk": 14661, "fields": {"orig_filename": "Heckenast_Gustav_1811_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417437}}, {"model": "metainfo.source", "pk": 14662, "fields": {"orig_filename": "Hecke_Wenzel_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 234", "author": "", "orig_id": 1417362}}, {"model": "metainfo.source", "pk": 14663, "fields": {"orig_filename": "Hedrich_Franz_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417438}}, {"model": "metainfo.source", "pk": 14664, "fields": {"orig_filename": "Hedwig_Johann-Lukas_1802_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 235", "author": "", "orig_id": 1417439}}, {"model": "metainfo.source", "pk": 14665, "fields": {"orig_filename": "Heeger_Ernst_1783_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417440}}, {"model": "metainfo.source", "pk": 14666, "fields": {"orig_filename": "Heeger_Viktor_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417441}}, {"model": "metainfo.source", "pk": 14667, "fields": {"orig_filename": "Heffter-Hohenburg_Johann-Ignaz_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417443}}, {"model": "metainfo.source", "pk": 14668, "fields": {"orig_filename": "Hefft_Anton_1815_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417442}}, {"model": "metainfo.source", "pk": 14669, "fields": {"orig_filename": "Hefter_Gustav_1871_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236", "author": "", "orig_id": 1417444}}, {"model": "metainfo.source", "pk": 14670, "fields": {"orig_filename": "Hegedues-Eoer_Joseph-Franz_1803_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417446}}, {"model": "metainfo.source", "pk": 14671, "fields": {"orig_filename": "Hegedues_Alexander_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 236f.", "author": "", "orig_id": 1417445}}, {"model": "metainfo.source", "pk": 14672, "fields": {"orig_filename": "Hegele_Maximilian_1873_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417447}}, {"model": "metainfo.source", "pk": 14673, "fields": {"orig_filename": "Hegemann_Otmar_1869_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417448}}, {"model": "metainfo.source", "pk": 14674, "fields": {"orig_filename": "Hegenbarth_Emanuel-Franz_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237f.", "author": "", "orig_id": 1417450}}, {"model": "metainfo.source", "pk": 14675, "fields": {"orig_filename": "Hegenbarth_Ernst_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417451}}, {"model": "metainfo.source", "pk": 14676, "fields": {"orig_filename": "Hegenbart_Fritz_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 237", "author": "", "orig_id": 1417449}}, {"model": "metainfo.source", "pk": 14677, "fields": {"orig_filename": "Heger-Gasser_Eugenie_1866_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417529}}, {"model": "metainfo.source", "pk": 14678, "fields": {"orig_filename": "Heger_Franz_1766_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417452}}, {"model": "metainfo.source", "pk": 14679, "fields": {"orig_filename": "Heger_Franz_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 238", "author": "", "orig_id": 1417527}}, {"model": "metainfo.source", "pk": 14680, "fields": {"orig_filename": "Heger_Hans_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239", "author": "", "orig_id": 1417453}}, {"model": "metainfo.source", "pk": 14681, "fields": {"orig_filename": "Heger_Hilde_1899_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2057065}}, {"model": "metainfo.source", "pk": 14682, "fields": {"orig_filename": "Heger_Ignaz-Jakob_1808_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239f.", "author": "", "orig_id": 1417528}}, {"model": "metainfo.source", "pk": 14683, "fields": {"orig_filename": "Heger_Ignaz_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 239", "author": "", "orig_id": 1417455}}, {"model": "metainfo.source", "pk": 14684, "fields": {"orig_filename": "Heicke_Joseph_1811_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417530}}, {"model": "metainfo.source", "pk": 14685, "fields": {"orig_filename": "Heideloff_Josef_1747_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417533}}, {"model": "metainfo.source", "pk": 14686, "fields": {"orig_filename": "Heidenreich_Josef-Cal_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417534}}, {"model": "metainfo.source", "pk": 14687, "fields": {"orig_filename": "Heiderich_Franz_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 243", "author": "", "orig_id": 1417541}}, {"model": "metainfo.source", "pk": 14688, "fields": {"orig_filename": "Heider_Adolf_1858_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417535}}, {"model": "metainfo.source", "pk": 14689, "fields": {"orig_filename": "Heider_Arthur_1849_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417536}}, {"model": "metainfo.source", "pk": 14690, "fields": {"orig_filename": "Heider_Gustav_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241", "author": "", "orig_id": 1417537}}, {"model": "metainfo.source", "pk": 14691, "fields": {"orig_filename": "Heider_Karl_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 241f.", "author": "", "orig_id": 1417538}}, {"model": "metainfo.source", "pk": 14692, "fields": {"orig_filename": "Heider_Moriz_1816_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 242", "author": "", "orig_id": 1417539}}, {"model": "metainfo.source", "pk": 14693, "fields": {"orig_filename": "Heider_Paul_1868_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 242f.", "author": "", "orig_id": 1417540}}, {"model": "metainfo.source", "pk": 14694, "fields": {"orig_filename": "Heidler-Heilborn_Karl_1792_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 243f.", "author": "", "orig_id": 1417542}}, {"model": "metainfo.source", "pk": 14695, "fields": {"orig_filename": "Heidmann_Alberich_1808_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417543}}, {"model": "metainfo.source", "pk": 14696, "fields": {"orig_filename": "Heidmann_Johann-Anton_1772_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417544}}, {"model": "metainfo.source", "pk": 14697, "fields": {"orig_filename": "Heid_Nicolaus_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 240", "author": "", "orig_id": 1417532}}, {"model": "metainfo.source", "pk": 14698, "fields": {"orig_filename": "Heigl_Fritz_1895_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417545}}, {"model": "metainfo.source", "pk": 14699, "fields": {"orig_filename": "Heigl_Paul_1887_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1464354}}, {"model": "metainfo.source", "pk": 14700, "fields": {"orig_filename": "Heilinger_Alois_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1419004}}, {"model": "metainfo.source", "pk": 14701, "fields": {"orig_filename": "Heilmann_Albert_1832_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244", "author": "", "orig_id": 1417548}}, {"model": "metainfo.source", "pk": 14702, "fields": {"orig_filename": "Heilmann_Anton_1850_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 244f.", "author": "", "orig_id": 1417549}}, {"model": "metainfo.source", "pk": 14703, "fields": {"orig_filename": "Heim-San-Martino-Carso_Geza_1890_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417550}}, {"model": "metainfo.source", "pk": 14704, "fields": {"orig_filename": "Heimel_Marie-Sidonie_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417619}}, {"model": "metainfo.source", "pk": 14705, "fields": {"orig_filename": "Heimerl_Anton_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245", "author": "", "orig_id": 1417621}}, {"model": "metainfo.source", "pk": 14706, "fields": {"orig_filename": "Heinbucher-Bikessy_Joseph_1767_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246f.", "author": "", "orig_id": 1417627}}, {"model": "metainfo.source", "pk": 14707, "fields": {"orig_filename": "Heinefetter_Clara_1816_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247f.", "author": "", "orig_id": 1417632}}, {"model": "metainfo.source", "pk": 14708, "fields": {"orig_filename": "Heine_Albert_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417628}}, {"model": "metainfo.source", "pk": 14709, "fields": {"orig_filename": "Heine_Ferdinand_1839_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417629}}, {"model": "metainfo.source", "pk": 14710, "fields": {"orig_filename": "Heine_Karl-Wilhelm_1838_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 247", "author": "", "orig_id": 1417630}}, {"model": "metainfo.source", "pk": 14711, "fields": {"orig_filename": "Heinl_Franz_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417634}}, {"model": "metainfo.source", "pk": 14712, "fields": {"orig_filename": "Heinricher_Emil_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 250", "author": "", "orig_id": 1417713}}, {"model": "metainfo.source", "pk": 14713, "fields": {"orig_filename": "Heinrich_Albin_1785_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417635}}, {"model": "metainfo.source", "pk": 14714, "fields": {"orig_filename": "Heinrich_Anton-Philipp_1781_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248f.", "author": "", "orig_id": 1417638}}, {"model": "metainfo.source", "pk": 14715, "fields": {"orig_filename": "Heinrich_Anton_1830_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 248", "author": "", "orig_id": 1417637}}, {"model": "metainfo.source", "pk": 14716, "fields": {"orig_filename": "Heinrich_August_1794_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249", "author": "", "orig_id": 1417639}}, {"model": "metainfo.source", "pk": 14717, "fields": {"orig_filename": "Heinrich_Gustav_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417640}}, {"model": "metainfo.source", "pk": 14718, "fields": {"orig_filename": "Heinrich_Johann-Josef-Karl_1737_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249", "author": "", "orig_id": 1417711}}, {"model": "metainfo.source", "pk": 14719, "fields": {"orig_filename": "Heinrich_Josef_1837_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 249f.", "author": "", "orig_id": 1417712}}, {"model": "metainfo.source", "pk": 14720, "fields": {"orig_filename": "Heintl_Franz_1769_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 250f.", "author": "", "orig_id": 1417714}}, {"model": "metainfo.source", "pk": 14721, "fields": {"orig_filename": "Heintschel-Heinegg_Hanns-Georg_1919_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417715}}, {"model": "metainfo.source", "pk": 14722, "fields": {"orig_filename": "Heinzelmann_Johannes_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252", "author": "", "orig_id": 1417720}}, {"model": "metainfo.source", "pk": 14723, "fields": {"orig_filename": "Heinzel_Richard_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252", "author": "", "orig_id": 1417719}}, {"model": "metainfo.source", "pk": 14724, "fields": {"orig_filename": "Heinz_Julius_1839_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417716}}, {"model": "metainfo.source", "pk": 14725, "fields": {"orig_filename": "Heinz_Rudolf_1855_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251", "author": "", "orig_id": 1417717}}, {"model": "metainfo.source", "pk": 14726, "fields": {"orig_filename": "Heinz_Sebastian_1815_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 251f.", "author": "", "orig_id": 1417718}}, {"model": "metainfo.source", "pk": 14727, "fields": {"orig_filename": "Hein_Alois-Raimund_1852_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 245f.", "author": "", "orig_id": 1417623}}, {"model": "metainfo.source", "pk": 14728, "fields": {"orig_filename": "Hein_Franz_1808_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417624}}, {"model": "metainfo.source", "pk": 14729, "fields": {"orig_filename": "Hein_Sigmund_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417625}}, {"model": "metainfo.source", "pk": 14730, "fields": {"orig_filename": "Hein_Wilhelm_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 246", "author": "", "orig_id": 1417626}}, {"model": "metainfo.source", "pk": 14731, "fields": {"orig_filename": "Heischmann_Eugen_1886_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 252f.", "author": "", "orig_id": 1417722}}, {"model": "metainfo.source", "pk": 14732, "fields": {"orig_filename": "Heisinger_Adolf-Johann-Bapt_1808_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417723}}, {"model": "metainfo.source", "pk": 14733, "fields": {"orig_filename": "Heissl_Ernst_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417726}}, {"model": "metainfo.source", "pk": 14734, "fields": {"orig_filename": "Heiss_Berta_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417725}}, {"model": "metainfo.source", "pk": 14735, "fields": {"orig_filename": "Heitler_Moritz_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 253", "author": "", "orig_id": 1417727}}, {"model": "metainfo.source", "pk": 14736, "fields": {"orig_filename": "Heitzler_Karl_1839_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417728}}, {"model": "metainfo.source", "pk": 14737, "fields": {"orig_filename": "Heitzmann_Julius_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417729}}, {"model": "metainfo.source", "pk": 14738, "fields": {"orig_filename": "Heitzmann_Karl_1836_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 254", "author": "", "orig_id": 1417730}}, {"model": "metainfo.source", "pk": 14739, "fields": {"orig_filename": "Hartmann_Friedrich_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418321}}, {"model": "metainfo.source", "pk": 14740, "fields": {"orig_filename": "Hartmann_Friedrich_1876_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418322}}, {"model": "metainfo.source", "pk": 14741, "fields": {"orig_filename": "Hartmann_Helene_1843_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418323}}, {"model": "metainfo.source", "pk": 14742, "fields": {"orig_filename": "Hartmann_Karl_1867_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418324}}, {"model": "metainfo.source", "pk": 14743, "fields": {"orig_filename": "Hartmann_Ludo-Moritz_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195f.", "author": "", "orig_id": 1418325}}, {"model": "metainfo.source", "pk": 14744, "fields": {"orig_filename": "Hartmann_Moritz_1821_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 196f.", "author": "", "orig_id": 1418326}}, {"model": "metainfo.source", "pk": 14745, "fields": {"orig_filename": "Hartmann_Philipp-Karl_1773_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418327}}, {"model": "metainfo.source", "pk": 14746, "fields": {"orig_filename": "Hartmayr_Joseph_1815_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197f.", "author": "", "orig_id": 1418392}}, {"model": "metainfo.source", "pk": 14747, "fields": {"orig_filename": "Hartung_Ernst_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418393}}, {"model": "metainfo.source", "pk": 14748, "fields": {"orig_filename": "Harum_Peter_1825_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418394}}, {"model": "metainfo.source", "pk": 14749, "fields": {"orig_filename": "Haschek_Eduard_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198f.", "author": "", "orig_id": 1418396}}, {"model": "metainfo.source", "pk": 14750, "fields": {"orig_filename": "Haschka_Lorenz-Leopold_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418397}}, {"model": "metainfo.source", "pk": 14751, "fields": {"orig_filename": "Haschowec_Ferdinand_1902_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418398}}, {"model": "metainfo.source", "pk": 14752, "fields": {"orig_filename": "Hasch_Karl_1834_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 198", "author": "", "orig_id": 1418395}}, {"model": "metainfo.source", "pk": 14753, "fields": {"orig_filename": "Hasek_Jaroslav_1883_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 199", "author": "", "orig_id": 1418399}}, {"model": "metainfo.source", "pk": 14754, "fields": {"orig_filename": "Haselbach_Volkmar_1909_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2091927}}, {"model": "metainfo.source", "pk": 14755, "fields": {"orig_filename": "Hasenauer_Carl_1833_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418400}}, {"model": "metainfo.source", "pk": 14756, "fields": {"orig_filename": "Hasenhut_Anton_1766_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200", "author": "", "orig_id": 1418401}}, {"model": "metainfo.source", "pk": 14757, "fields": {"orig_filename": "Hasenhut_Martina-Pauline_1809_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200", "author": "", "orig_id": 1418402}}, {"model": "metainfo.source", "pk": 14758, "fields": {"orig_filename": "Hasenoehrl_Friedrich_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 200f.", "author": "", "orig_id": 1418403}}, {"model": "metainfo.source", "pk": 14759, "fields": {"orig_filename": "Hasenoehrl_Viktor_1834_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 201", "author": "", "orig_id": 1418404}}, {"model": "metainfo.source", "pk": 14760, "fields": {"orig_filename": "Haskovec_Ladislav_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 201", "author": "", "orig_id": 1418405}}, {"model": "metainfo.source", "pk": 14761, "fields": {"orig_filename": "Hasler_Karel_1879_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2171664}}, {"model": "metainfo.source", "pk": 14762, "fields": {"orig_filename": "Haslinger_Tobias_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418406}}, {"model": "metainfo.source", "pk": 14763, "fields": {"orig_filename": "Haslroither_Gerhard_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418407}}, {"model": "metainfo.source", "pk": 14764, "fields": {"orig_filename": "Hasner-Artha_Josef_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202", "author": "", "orig_id": 1418408}}, {"model": "metainfo.source", "pk": 14765, "fields": {"orig_filename": "Hasner-Artha_Leopold_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 202f.", "author": "", "orig_id": 1418409}}, {"model": "metainfo.source", "pk": 14766, "fields": {"orig_filename": "Hasnik_Josef_1811_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 203", "author": "", "orig_id": 1418410}}, {"model": "metainfo.source", "pk": 14767, "fields": {"orig_filename": "Haspinger_Joachim_1776_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 203f.", "author": "", "orig_id": 1418411}}, {"model": "metainfo.source", "pk": 14768, "fields": {"orig_filename": "Hassack_Karl_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418412}}, {"model": "metainfo.source", "pk": 14769, "fields": {"orig_filename": "Hasselt-Barth_Anna-Maria-Wilhelmine_1813_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418413}}, {"model": "metainfo.source", "pk": 14770, "fields": {"orig_filename": "Hasslinger-Hassingen_Johann-Nepomuk_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418414}}, {"model": "metainfo.source", "pk": 14771, "fields": {"orig_filename": "Hasslwander_Friedrich_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204", "author": "", "orig_id": 1418415}}, {"model": "metainfo.source", "pk": 14772, "fields": {"orig_filename": "Hasslwander_Joseph_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 204f.", "author": "", "orig_id": 1418416}}, {"model": "metainfo.source", "pk": 14773, "fields": {"orig_filename": "Hasslwanter_Johann_1805_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205", "author": "", "orig_id": 1418482}}, {"model": "metainfo.source", "pk": 14774, "fields": {"orig_filename": "Hassmann_Karl-Ludwig_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205", "author": "", "orig_id": 1418483}}, {"model": "metainfo.source", "pk": 14775, "fields": {"orig_filename": "Hassreiter_Josef_1845_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 205f.", "author": "", "orig_id": 1418484}}, {"model": "metainfo.source", "pk": 14776, "fields": {"orig_filename": "Hatheyer_Franz-Sales_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207", "author": "", "orig_id": 1418486}}, {"model": "metainfo.source", "pk": 14777, "fields": {"orig_filename": "Hatle_Eduard_1851_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207", "author": "", "orig_id": 1418487}}, {"model": "metainfo.source", "pk": 14778, "fields": {"orig_filename": "Hatschek_Berthold_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 207f.", "author": "", "orig_id": 1418488}}, {"model": "metainfo.source", "pk": 14779, "fields": {"orig_filename": "Hatschek_Ludwig_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208", "author": "", "orig_id": 1418489}}, {"model": "metainfo.source", "pk": 14780, "fields": {"orig_filename": "Hattala_Martin_1821_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208", "author": "", "orig_id": 1418490}}, {"model": "metainfo.source", "pk": 14781, "fields": {"orig_filename": "Hattler_Franz_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 208f.", "author": "", "orig_id": 1418491}}, {"model": "metainfo.source", "pk": 14782, "fields": {"orig_filename": "Hatvany-Deutsch_Alexander_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418492}}, {"model": "metainfo.source", "pk": 14783, "fields": {"orig_filename": "Hauberrisser_Georg-Joseph_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418495}}, {"model": "metainfo.source", "pk": 14784, "fields": {"orig_filename": "Hauberrisser_Georg_1781_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209", "author": "", "orig_id": 1418494}}, {"model": "metainfo.source", "pk": 14785, "fields": {"orig_filename": "Haubner_Matthaeus_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 209f.", "author": "", "orig_id": 1418496}}, {"model": "metainfo.source", "pk": 14786, "fields": {"orig_filename": "Hauck_Ferdinand_1845_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418497}}, {"model": "metainfo.source", "pk": 14787, "fields": {"orig_filename": "Haudek_Martin_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418498}}, {"model": "metainfo.source", "pk": 14788, "fields": {"orig_filename": "Hauder_Franz_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 210", "author": "", "orig_id": 1418499}}, {"model": "metainfo.source", "pk": 14789, "fields": {"orig_filename": "Hauer_Franz_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 211", "author": "", "orig_id": 1418500}}, {"model": "metainfo.source", "pk": 14790, "fields": {"orig_filename": "Hauer_Johann-Georg_1853_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 211f.", "author": "", "orig_id": 1418501}}, {"model": "metainfo.source", "pk": 14791, "fields": {"orig_filename": "Hauer_Joseph_1778_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418502}}, {"model": "metainfo.source", "pk": 14792, "fields": {"orig_filename": "Hauer_Julius_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418503}}, {"model": "metainfo.source", "pk": 14793, "fields": {"orig_filename": "Hauer_Karl_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212", "author": "", "orig_id": 1418504}}, {"model": "metainfo.source", "pk": 14794, "fields": {"orig_filename": "Hauffe_Leopold_1840_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 212f.", "author": "", "orig_id": 1418505}}, {"model": "metainfo.source", "pk": 14795, "fields": {"orig_filename": "Hauger_Georg_1792_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418506}}, {"model": "metainfo.source", "pk": 14796, "fields": {"orig_filename": "Haugwitz_Eugen-Wilhelm_1777_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418577}}, {"model": "metainfo.source", "pk": 14797, "fields": {"orig_filename": "Hauke_Franz_1852_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213", "author": "", "orig_id": 1418578}}, {"model": "metainfo.source", "pk": 14798, "fields": {"orig_filename": "Hauler_Edmund_1859_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 213f.", "author": "", "orig_id": 1418579}}, {"model": "metainfo.source", "pk": 14799, "fields": {"orig_filename": "Hauler_Johann_1829_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 214", "author": "", "orig_id": 1418580}}, {"model": "metainfo.source", "pk": 14800, "fields": {"orig_filename": "Haulik-Varallya_Georg_1788_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 214f.", "author": "", "orig_id": 1418581}}, {"model": "metainfo.source", "pk": 14801, "fields": {"orig_filename": "Haunold_Karl-Franz-Emanuel_1832_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418582}}, {"model": "metainfo.source", "pk": 14802, "fields": {"orig_filename": "Hauptfleisch_Johann_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418585}}, {"model": "metainfo.source", "pk": 14803, "fields": {"orig_filename": "Hauptmann_Franc_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418586}}, {"model": "metainfo.source", "pk": 14804, "fields": {"orig_filename": "Hauptmann_Lorenz_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215f.", "author": "", "orig_id": 1418587}}, {"model": "metainfo.source", "pk": 14805, "fields": {"orig_filename": "Haupt_Josef_1820_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418583}}, {"model": "metainfo.source", "pk": 14806, "fields": {"orig_filename": "Haupt_Karl_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 215", "author": "", "orig_id": 1418584}}, {"model": "metainfo.source", "pk": 14807, "fields": {"orig_filename": "Hauschka_Vinzenz_1766_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216", "author": "", "orig_id": 1418589}}, {"model": "metainfo.source", "pk": 14808, "fields": {"orig_filename": "Hauschner_Auguste_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216f.", "author": "", "orig_id": 1418590}}, {"model": "metainfo.source", "pk": 14809, "fields": {"orig_filename": "Hausegger_Friedrich_1837_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418591}}, {"model": "metainfo.source", "pk": 14810, "fields": {"orig_filename": "Hausegger_Siegmund_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418592}}, {"model": "metainfo.source", "pk": 14811, "fields": {"orig_filename": "Hauser_Alois_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418593}}, {"model": "metainfo.source", "pk": 14812, "fields": {"orig_filename": "Hauser_Anna_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 217", "author": "", "orig_id": 1418594}}, {"model": "metainfo.source", "pk": 14813, "fields": {"orig_filename": "Hauser_Eduard_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418596}}, {"model": "metainfo.source", "pk": 14814, "fields": {"orig_filename": "Hauser_Franz_1799_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218", "author": "", "orig_id": 1418598}}, {"model": "metainfo.source", "pk": 14815, "fields": {"orig_filename": "Hauser_Johann-Nepomuk_1866_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 218f.", "author": "", "orig_id": 1418599}}, {"model": "metainfo.source", "pk": 14816, "fields": {"orig_filename": "Hauser_Karl_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 219", "author": "", "orig_id": 1418600}}, {"model": "metainfo.source", "pk": 14817, "fields": {"orig_filename": "Hauser_Miska_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 219f.", "author": "", "orig_id": 1418601}}, {"model": "metainfo.source", "pk": 14818, "fields": {"orig_filename": "Hauser_Otto_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 220", "author": "", "orig_id": 1418602}}, {"model": "metainfo.source", "pk": 14819, "fields": {"orig_filename": "Hauser_Paul_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 220f.", "author": "", "orig_id": 1418672}}, {"model": "metainfo.source", "pk": 14820, "fields": {"orig_filename": "Hauslab_Franz_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 221", "author": "", "orig_id": 1418673}}, {"model": "metainfo.source", "pk": 14821, "fields": {"orig_filename": "Hauslab_Franz_1798_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 221", "author": "", "orig_id": 1418674}}, {"model": "metainfo.source", "pk": 14822, "fields": {"orig_filename": "Hausleithner_Rudolf_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418675}}, {"model": "metainfo.source", "pk": 14823, "fields": {"orig_filename": "Hausmann_Franz_1810_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418676}}, {"model": "metainfo.source", "pk": 14824, "fields": {"orig_filename": "Hausmann_Friedrich_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1451381}}, {"model": "metainfo.source", "pk": 14825, "fields": {"orig_filename": "Hausmann_Vaclav-Vlastimil_1850_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418677}}, {"model": "metainfo.source", "pk": 14826, "fields": {"orig_filename": "Hausmann_Walter_1877_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222", "author": "", "orig_id": 1418678}}, {"model": "metainfo.source", "pk": 14827, "fields": {"orig_filename": "Hausner_Otto_1827_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 222f.", "author": "", "orig_id": 1418679}}, {"model": "metainfo.source", "pk": 14828, "fields": {"orig_filename": "Haussmann_Franziska-Maria-Elisabeth_1818_1853.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2186811}}, {"model": "metainfo.source", "pk": 14829, "fields": {"orig_filename": "Hauswirth_Ernest_1818_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418681}}, {"model": "metainfo.source", "pk": 14830, "fields": {"orig_filename": "Haus_Anton_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 216", "author": "", "orig_id": 1418588}}, {"model": "metainfo.source", "pk": 14831, "fields": {"orig_filename": "Hauthaler_Willibald_1843_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 223", "author": "", "orig_id": 1418683}}, {"model": "metainfo.source", "pk": 14832, "fields": {"orig_filename": "Havelec_Josef_1816_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418685}}, {"model": "metainfo.source", "pk": 14833, "fields": {"orig_filename": "Havlicek_Hans_1891_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418687}}, {"model": "metainfo.source", "pk": 14834, "fields": {"orig_filename": "Havlicek_Karel_1821_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418688}}, {"model": "metainfo.source", "pk": 14835, "fields": {"orig_filename": "Havlicek_Vinzenz_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418690}}, {"model": "metainfo.source", "pk": 14836, "fields": {"orig_filename": "Havranek_Friedrich_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 224", "author": "", "orig_id": 1418691}}, {"model": "metainfo.source", "pk": 14837, "fields": {"orig_filename": "Hawelka_Friedrich_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 225", "author": "", "orig_id": 1418694}}, {"model": "metainfo.source", "pk": 14838, "fields": {"orig_filename": "Haltrich_Josef_1822_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419341}}, {"model": "metainfo.source", "pk": 14839, "fields": {"orig_filename": "Hamber_Edmund_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1457859}}, {"model": "metainfo.source", "pk": 14840, "fields": {"orig_filename": "Hamburger_Julius_1830_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419342}}, {"model": "metainfo.source", "pk": 14841, "fields": {"orig_filename": "Hamburger_Rudolf_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419343}}, {"model": "metainfo.source", "pk": 14842, "fields": {"orig_filename": "Hamerle_Andreas_1837_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163f.", "author": "", "orig_id": 1419344}}, {"model": "metainfo.source", "pk": 14843, "fields": {"orig_filename": "Hamernik_Josef_1810_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419346}}, {"model": "metainfo.source", "pk": 14844, "fields": {"orig_filename": "Hamik_Anton-Josef_1887_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1447869}}, {"model": "metainfo.source", "pk": 14845, "fields": {"orig_filename": "Hammel_Rudolf_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164f.", "author": "", "orig_id": 1419349}}, {"model": "metainfo.source", "pk": 14846, "fields": {"orig_filename": "Hammer-Purgstall_Joseph_1774_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165ff.", "author": "", "orig_id": 1419353}}, {"model": "metainfo.source", "pk": 14847, "fields": {"orig_filename": "Hammerle_Alois-Josef_1820_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419419}}, {"model": "metainfo.source", "pk": 14848, "fields": {"orig_filename": "Hammerling_Rupert_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168ff.", "author": "", "orig_id": 1419420}}, {"model": "metainfo.source", "pk": 14849, "fields": {"orig_filename": "Hammerl_Benedikt_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419417}}, {"model": "metainfo.source", "pk": 14850, "fields": {"orig_filename": "Hammerl_Hermann_1853_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 168", "author": "", "orig_id": 1419418}}, {"model": "metainfo.source", "pk": 14851, "fields": {"orig_filename": "Hammerschlag_Albert_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419421}}, {"model": "metainfo.source", "pk": 14852, "fields": {"orig_filename": "Hammerschlag_Peter_1902_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419422}}, {"model": "metainfo.source", "pk": 14853, "fields": {"orig_filename": "Hammerschmidt_Karl-Eduard_1801_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170", "author": "", "orig_id": 1419423}}, {"model": "metainfo.source", "pk": 14854, "fields": {"orig_filename": "Hammerstein-Equord_Hans_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 170f.", "author": "", "orig_id": 1419424}}, {"model": "metainfo.source", "pk": 14855, "fields": {"orig_filename": "Hammer_Hans_1865_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419350}}, {"model": "metainfo.source", "pk": 14856, "fields": {"orig_filename": "Hammer_Wilhelm-Arthur_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419352}}, {"model": "metainfo.source", "pk": 14857, "fields": {"orig_filename": "Hammer_Wilhelm_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 165", "author": "", "orig_id": 1419351}}, {"model": "metainfo.source", "pk": 14858, "fields": {"orig_filename": "Hamme_Eduard-Voitus_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419348}}, {"model": "metainfo.source", "pk": 14859, "fields": {"orig_filename": "Hamm_Wilhelm-Philipp_1820_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 164", "author": "", "orig_id": 1419347}}, {"model": "metainfo.source", "pk": 14860, "fields": {"orig_filename": "Hampel_Franz_1834_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419426}}, {"model": "metainfo.source", "pk": 14861, "fields": {"orig_filename": "Hampel_Hans_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419427}}, {"model": "metainfo.source", "pk": 14862, "fields": {"orig_filename": "Hampel_Josef_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171", "author": "", "orig_id": 1419428}}, {"model": "metainfo.source", "pk": 14863, "fields": {"orig_filename": "Hampel_Sigmund-Walter_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 171f.", "author": "", "orig_id": 1419429}}, {"model": "metainfo.source", "pk": 14864, "fields": {"orig_filename": "Hampel_Theodor_1802_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419430}}, {"model": "metainfo.source", "pk": 14865, "fields": {"orig_filename": "Hamperl_Roland_1901_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1420726}}, {"model": "metainfo.source", "pk": 14866, "fields": {"orig_filename": "Hampl-Haupolter_Emma_1897_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419431}}, {"model": "metainfo.source", "pk": 14867, "fields": {"orig_filename": "Hamza_Johann_1850_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172", "author": "", "orig_id": 1419432}}, {"model": "metainfo.source", "pk": 14868, "fields": {"orig_filename": "Hanak_Anton_1875_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 172f.", "author": "", "orig_id": 1419433}}, {"model": "metainfo.source", "pk": 14869, "fields": {"orig_filename": "Hanaman_Franjo_1878_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173", "author": "", "orig_id": 1419434}}, {"model": "metainfo.source", "pk": 14870, "fields": {"orig_filename": "Hanausek_Eduard_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173", "author": "", "orig_id": 1419435}}, {"model": "metainfo.source", "pk": 14871, "fields": {"orig_filename": "Hanausek_Gustav_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 173f.", "author": "", "orig_id": 1419436}}, {"model": "metainfo.source", "pk": 14872, "fields": {"orig_filename": "Hanausek_Thomas-Franz_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 174", "author": "", "orig_id": 1419437}}, {"model": "metainfo.source", "pk": 14873, "fields": {"orig_filename": "Handel-Mazzetti_Eduard_1885_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175", "author": "", "orig_id": 1419511}}, {"model": "metainfo.source", "pk": 14874, "fields": {"orig_filename": "Handel-Mazzetti_Heinrich_1882_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175f.", "author": "", "orig_id": 1419512}}, {"model": "metainfo.source", "pk": 14875, "fields": {"orig_filename": "Handel-Mazzetti_Viktor_1844_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419513}}, {"model": "metainfo.source", "pk": 14876, "fields": {"orig_filename": "Handel_Erasmus_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 174f.", "author": "", "orig_id": 1419438}}, {"model": "metainfo.source", "pk": 14877, "fields": {"orig_filename": "Handel_Rudolf_1821_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 175", "author": "", "orig_id": 1419439}}, {"model": "metainfo.source", "pk": 14878, "fields": {"orig_filename": "Handle_Augustin_1774_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419514}}, {"model": "metainfo.source", "pk": 14879, "fields": {"orig_filename": "Handlirsch_Adam_1864_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176", "author": "", "orig_id": 1419515}}, {"model": "metainfo.source", "pk": 14880, "fields": {"orig_filename": "Handlirsch_Anton_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 176f.", "author": "", "orig_id": 1419516}}, {"model": "metainfo.source", "pk": 14881, "fields": {"orig_filename": "Handloss_Karl_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177", "author": "", "orig_id": 1419517}}, {"model": "metainfo.source", "pk": 14882, "fields": {"orig_filename": "Handmann_Ludwig-Paul_1875_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177", "author": "", "orig_id": 1419518}}, {"model": "metainfo.source", "pk": 14883, "fields": {"orig_filename": "Handmann_Rudolf_1841_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 177f.", "author": "", "orig_id": 1419519}}, {"model": "metainfo.source", "pk": 14884, "fields": {"orig_filename": "Hanf_Blasius_1808_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178", "author": "", "orig_id": 1419520}}, {"model": "metainfo.source", "pk": 14885, "fields": {"orig_filename": "Hango_Hermann_1861_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178", "author": "", "orig_id": 1419521}}, {"model": "metainfo.source", "pk": 14886, "fields": {"orig_filename": "Hanka_Vaclav_1791_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 178f.", "author": "", "orig_id": 1419522}}, {"model": "metainfo.source", "pk": 14887, "fields": {"orig_filename": "Hanke_Viktor_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419523}}, {"model": "metainfo.source", "pk": 14888, "fields": {"orig_filename": "Hannack_Josef_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419527}}, {"model": "metainfo.source", "pk": 14889, "fields": {"orig_filename": "Hannak_Emanuel_1841_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419528}}, {"model": "metainfo.source", "pk": 14890, "fields": {"orig_filename": "Hanni_Lucius_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 180", "author": "", "orig_id": 1419529}}, {"model": "metainfo.source", "pk": 14891, "fields": {"orig_filename": "Hann_Franz-Gustav_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419524}}, {"model": "metainfo.source", "pk": 14892, "fields": {"orig_filename": "Hann_Georg_1897_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179", "author": "", "orig_id": 1419525}}, {"model": "metainfo.source", "pk": 14893, "fields": {"orig_filename": "Hann_Julius_1839_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 179f.", "author": "", "orig_id": 1419526}}, {"model": "metainfo.source", "pk": 14894, "fields": {"orig_filename": "Hanrieder_Norbert_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419530}}, {"model": "metainfo.source", "pk": 14895, "fields": {"orig_filename": "Hansch_Anton_1813_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419532}}, {"model": "metainfo.source", "pk": 14896, "fields": {"orig_filename": "Hansel_Vincenz_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 181", "author": "", "orig_id": 1419533}}, {"model": "metainfo.source", "pk": 14897, "fields": {"orig_filename": "Hansen_Theophil_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419534}}, {"model": "metainfo.source", "pk": 14898, "fields": {"orig_filename": "Hanser_Laurentius_1875_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1419535}}, {"model": "metainfo.source", "pk": 14899, "fields": {"orig_filename": "Hansgirg_Anton_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1419536}}, {"model": "metainfo.source", "pk": 14900, "fields": {"orig_filename": "Hansgirg_Karl-Viktor_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183", "author": "", "orig_id": 1418213}}, {"model": "metainfo.source", "pk": 14901, "fields": {"orig_filename": "Hanslick_Eduard_1825_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 183f.", "author": "", "orig_id": 1418214}}, {"model": "metainfo.source", "pk": 14902, "fields": {"orig_filename": "Hantken-Prudnik_Miksa_1821_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184", "author": "", "orig_id": 1418215}}, {"model": "metainfo.source", "pk": 14903, "fields": {"orig_filename": "Hanusch_Alois_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184", "author": "", "orig_id": 1418216}}, {"model": "metainfo.source", "pk": 14904, "fields": {"orig_filename": "Hanusch_Ferdinand_1866_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 184f.", "author": "", "orig_id": 1418217}}, {"model": "metainfo.source", "pk": 14905, "fields": {"orig_filename": "Hanusch_Ignaz-Jan_1812_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 185f.", "author": "", "orig_id": 1418218}}, {"model": "metainfo.source", "pk": 14906, "fields": {"orig_filename": "Harambasic_August_1861_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418220}}, {"model": "metainfo.source", "pk": 14907, "fields": {"orig_filename": "Harasser_Georg_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418221}}, {"model": "metainfo.source", "pk": 14908, "fields": {"orig_filename": "Harasser_Urban_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418222}}, {"model": "metainfo.source", "pk": 14909, "fields": {"orig_filename": "Hardegg_Johann-Anton-Leonhard_1773_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186", "author": "", "orig_id": 1418223}}, {"model": "metainfo.source", "pk": 14910, "fields": {"orig_filename": "Hardegg_Johann-Heinrich_1778_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 186f.", "author": "", "orig_id": 1418224}}, {"model": "metainfo.source", "pk": 14911, "fields": {"orig_filename": "Hardter_Andreas_1780_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187", "author": "", "orig_id": 1418225}}, {"model": "metainfo.source", "pk": 14912, "fields": {"orig_filename": "Hardtmuth_Joseph_1758_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187", "author": "", "orig_id": 1418226}}, {"model": "metainfo.source", "pk": 14913, "fields": {"orig_filename": "Hardy_John-George_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188", "author": "", "orig_id": 1418228}}, {"model": "metainfo.source", "pk": 14914, "fields": {"orig_filename": "Hardy_John_1821_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 187f.", "author": "", "orig_id": 1418227}}, {"model": "metainfo.source", "pk": 14915, "fields": {"orig_filename": "Haring_Johann_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188f.", "author": "", "orig_id": 1418230}}, {"model": "metainfo.source", "pk": 14916, "fields": {"orig_filename": "Hari_Paul_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 188", "author": "", "orig_id": 1418229}}, {"model": "metainfo.source", "pk": 14917, "fields": {"orig_filename": "Harlfinger_Richard_1873_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418232}}, {"model": "metainfo.source", "pk": 14918, "fields": {"orig_filename": "Harl_Johann-Paul_1772_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418231}}, {"model": "metainfo.source", "pk": 14919, "fields": {"orig_filename": "Harmati_Sandor_1892_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189", "author": "", "orig_id": 1418233}}, {"model": "metainfo.source", "pk": 14920, "fields": {"orig_filename": "Harmer_Leopold_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 189f.", "author": "", "orig_id": 1418234}}, {"model": "metainfo.source", "pk": 14921, "fields": {"orig_filename": "Harnisch_Johann-Baptist_1777_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418235}}, {"model": "metainfo.source", "pk": 14922, "fields": {"orig_filename": "Harpf_Adolf_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418236}}, {"model": "metainfo.source", "pk": 14923, "fields": {"orig_filename": "Harpf_August_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418304}}, {"model": "metainfo.source", "pk": 14924, "fields": {"orig_filename": "Harpner_Gustav_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190", "author": "", "orig_id": 1418305}}, {"model": "metainfo.source", "pk": 14925, "fields": {"orig_filename": "Harrach_Johann-Nepomuk_1828_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 190f.", "author": "", "orig_id": 1418306}}, {"model": "metainfo.source", "pk": 14926, "fields": {"orig_filename": "Harrach_Karl-Borr_1761_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191", "author": "", "orig_id": 1418307}}, {"model": "metainfo.source", "pk": 14927, "fields": {"orig_filename": "Harras-Harrasowsky_Philipp_1833_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191", "author": "", "orig_id": 1418308}}, {"model": "metainfo.source", "pk": 14928, "fields": {"orig_filename": "Harrer_Ignaz_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 191f.", "author": "", "orig_id": 1418309}}, {"model": "metainfo.source", "pk": 14929, "fields": {"orig_filename": "Hartauer_Andreas_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418310}}, {"model": "metainfo.source", "pk": 14930, "fields": {"orig_filename": "Hartel_Wilhelm_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418311}}, {"model": "metainfo.source", "pk": 14931, "fields": {"orig_filename": "Hartenthal_Mathilde_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 192", "author": "", "orig_id": 1418312}}, {"model": "metainfo.source", "pk": 14932, "fields": {"orig_filename": "Hartig_Franz_1789_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193", "author": "", "orig_id": 1418313}}, {"model": "metainfo.source", "pk": 14933, "fields": {"orig_filename": "Hartinger_Anton_1806_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193", "author": "", "orig_id": 1418314}}, {"model": "metainfo.source", "pk": 14934, "fields": {"orig_filename": "Hartlieb-Wallthor_Karl-Vinzenz_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194f.", "author": "", "orig_id": 1418319}}, {"model": "metainfo.source", "pk": 14935, "fields": {"orig_filename": "Hartl_Hans_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 193f.", "author": "", "orig_id": 1418315}}, {"model": "metainfo.source", "pk": 14936, "fields": {"orig_filename": "Hartl_Heinrich_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418316}}, {"model": "metainfo.source", "pk": 14937, "fields": {"orig_filename": "Hartl_Vinzenz_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418317}}, {"model": "metainfo.source", "pk": 14938, "fields": {"orig_filename": "Hartl_Wenzel_1830_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 194", "author": "", "orig_id": 1418318}}, {"model": "metainfo.source", "pk": 14939, "fields": {"orig_filename": "Hartmann-Franzenshuld_Ernst_1840_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418328}}, {"model": "metainfo.source", "pk": 14940, "fields": {"orig_filename": "Hartmann-Franzenshuld_Johann_1764_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 197", "author": "", "orig_id": 1418391}}, {"model": "metainfo.source", "pk": 14941, "fields": {"orig_filename": "Hartmann_Ernst_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 8, 1958), S. 195", "author": "", "orig_id": 1418320}}, {"model": "metainfo.source", "pk": 14942, "fields": {"orig_filename": "Hadzic_Osman-Nuri_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418927}}, {"model": "metainfo.source", "pk": 14943, "fields": {"orig_filename": "Haeckel_Anton__.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418929}}, {"model": "metainfo.source", "pk": 14944, "fields": {"orig_filename": "Haecker_Ludwig-Friedrich_1822_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418930}}, {"model": "metainfo.source", "pk": 14945, "fields": {"orig_filename": "Haefele_Engelhard_1870_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418931}}, {"model": "metainfo.source", "pk": 14946, "fields": {"orig_filename": "Haehnel_Amalie_1806_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418932}}, {"model": "metainfo.source", "pk": 14947, "fields": {"orig_filename": "Haemmerle_Baptist_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418933}}, {"model": "metainfo.source", "pk": 14948, "fields": {"orig_filename": "Haemmerle_Casimir_1847_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135", "author": "", "orig_id": 1418934}}, {"model": "metainfo.source", "pk": 14949, "fields": {"orig_filename": "Haemmerle_Franz-Martin_1815_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 135f.", "author": "", "orig_id": 1418935}}, {"model": "metainfo.source", "pk": 14950, "fields": {"orig_filename": "Haemmerle_Martin_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418936}}, {"model": "metainfo.source", "pk": 14951, "fields": {"orig_filename": "Haemmerle_Otto_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418937}}, {"model": "metainfo.source", "pk": 14952, "fields": {"orig_filename": "Haemmerle_Theodor_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136", "author": "", "orig_id": 1418938}}, {"model": "metainfo.source", "pk": 14953, "fields": {"orig_filename": "Haemmerle_Victor_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 136f.", "author": "", "orig_id": 1419005}}, {"model": "metainfo.source", "pk": 14954, "fields": {"orig_filename": "Haenisch_Aloys_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 137", "author": "", "orig_id": 1419006}}, {"model": "metainfo.source", "pk": 14955, "fields": {"orig_filename": "Haenke_Thaddaeus-Peregrinus_1761_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 137f.", "author": "", "orig_id": 1419007}}, {"model": "metainfo.source", "pk": 14956, "fields": {"orig_filename": "Haensel_Peter_1770_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419008}}, {"model": "metainfo.source", "pk": 14957, "fields": {"orig_filename": "Haerdtl_Eduard_1861_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419009}}, {"model": "metainfo.source", "pk": 14958, "fields": {"orig_filename": "Haerdtl_Guido_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138", "author": "", "orig_id": 1419010}}, {"model": "metainfo.source", "pk": 14959, "fields": {"orig_filename": "Haerdtl_Hugo_1846_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 138f.", "author": "", "orig_id": 1419011}}, {"model": "metainfo.source", "pk": 14960, "fields": {"orig_filename": "Haerdtl_Josef_1858_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419012}}, {"model": "metainfo.source", "pk": 14961, "fields": {"orig_filename": "Haerdtl_Karl_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419013}}, {"model": "metainfo.source", "pk": 14962, "fields": {"orig_filename": "Haettenschwiller_Joseph_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419014}}, {"model": "metainfo.source", "pk": 14963, "fields": {"orig_filename": "Haeusle_Johann-Michael_1809_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139", "author": "", "orig_id": 1419015}}, {"model": "metainfo.source", "pk": 14964, "fields": {"orig_filename": "Haeusle_Joseph_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 139f.", "author": "", "orig_id": 1419016}}, {"model": "metainfo.source", "pk": 14965, "fields": {"orig_filename": "Haeussermann_Reinhold_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140", "author": "", "orig_id": 1419017}}, {"model": "metainfo.source", "pk": 14966, "fields": {"orig_filename": "Hafferl_Franz-Anton_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140", "author": "", "orig_id": 1419019}}, {"model": "metainfo.source", "pk": 14967, "fields": {"orig_filename": "Hafferl_Josef-Heinrich_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 140f.", "author": "", "orig_id": 1419020}}, {"model": "metainfo.source", "pk": 14968, "fields": {"orig_filename": "Haffner_August-Otto-Wilhelm_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141", "author": "", "orig_id": 1419021}}, {"model": "metainfo.source", "pk": 14969, "fields": {"orig_filename": "Haffner_Karl_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141", "author": "", "orig_id": 1419023}}, {"model": "metainfo.source", "pk": 14970, "fields": {"orig_filename": "Hafner_Josef_1799_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 141f.", "author": "", "orig_id": 1419024}}, {"model": "metainfo.source", "pk": 14971, "fields": {"orig_filename": "Hafner_Josef_1875_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142", "author": "", "orig_id": 1419025}}, {"model": "metainfo.source", "pk": 14972, "fields": {"orig_filename": "Hafner_Karl_1875_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142", "author": "", "orig_id": 1419026}}, {"model": "metainfo.source", "pk": 14973, "fields": {"orig_filename": "Hafner_Karl_1905_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 142f.", "author": "", "orig_id": 1419027}}, {"model": "metainfo.source", "pk": 14974, "fields": {"orig_filename": "Hagenauer_Arnold_1871_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419094}}, {"model": "metainfo.source", "pk": 14975, "fields": {"orig_filename": "Hagenhofer_Franz_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419095}}, {"model": "metainfo.source", "pk": 14976, "fields": {"orig_filename": "Hagen_Johann-Georg_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419028}}, {"model": "metainfo.source", "pk": 14977, "fields": {"orig_filename": "Hagen_Kaspar_1820_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419090}}, {"model": "metainfo.source", "pk": 14978, "fields": {"orig_filename": "Hagen_Ludwig_1824_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143", "author": "", "orig_id": 1419091}}, {"model": "metainfo.source", "pk": 14979, "fields": {"orig_filename": "Hagen_Martin_1855_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 143f.", "author": "", "orig_id": 1419092}}, {"model": "metainfo.source", "pk": 14980, "fields": {"orig_filename": "Hagen_Theodor_1849_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144", "author": "", "orig_id": 1419093}}, {"model": "metainfo.source", "pk": 14981, "fields": {"orig_filename": "Hager-Allentsteig_Franz_1750_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145", "author": "", "orig_id": 1419101}}, {"model": "metainfo.source", "pk": 14982, "fields": {"orig_filename": "Hager_Edmund_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 144f.", "author": "", "orig_id": 1419098}}, {"model": "metainfo.source", "pk": 14983, "fields": {"orig_filename": "Hager_Evermod_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145", "author": "", "orig_id": 1419099}}, {"model": "metainfo.source", "pk": 14984, "fields": {"orig_filename": "Hagin_Heinrich_1875_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 145f.", "author": "", "orig_id": 1419102}}, {"model": "metainfo.source", "pk": 14985, "fields": {"orig_filename": "Hagleitner_Kaspar-Benedikt_1779_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 146", "author": "", "orig_id": 1419103}}, {"model": "metainfo.source", "pk": 14986, "fields": {"orig_filename": "Hagn_Theoderich_1816_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 146", "author": "", "orig_id": 1419104}}, {"model": "metainfo.source", "pk": 14987, "fields": {"orig_filename": "Hahnekamp_Georg_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419108}}, {"model": "metainfo.source", "pk": 14988, "fields": {"orig_filename": "Hahn_Hans_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419105}}, {"model": "metainfo.source", "pk": 14989, "fields": {"orig_filename": "Hahn_Johann-Georg_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147", "author": "", "orig_id": 1419106}}, {"model": "metainfo.source", "pk": 14990, "fields": {"orig_filename": "Haibel_Jakob_1762_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 147f.", "author": "", "orig_id": 1419109}}, {"model": "metainfo.source", "pk": 14991, "fields": {"orig_filename": "Haibel_Sophie_1767_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419110}}, {"model": "metainfo.source", "pk": 14992, "fields": {"orig_filename": "Haidacher_Sebastian_1866_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149", "author": "", "orig_id": 1419171}}, {"model": "metainfo.source", "pk": 14993, "fields": {"orig_filename": "Haidegger_Wendelin_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149", "author": "", "orig_id": 1419172}}, {"model": "metainfo.source", "pk": 14994, "fields": {"orig_filename": "Haider_Franz_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 149f.", "author": "", "orig_id": 1419173}}, {"model": "metainfo.source", "pk": 14995, "fields": {"orig_filename": "Haidinger_Wilhelm_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419174}}, {"model": "metainfo.source", "pk": 14996, "fields": {"orig_filename": "Haid_Franz_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419168}}, {"model": "metainfo.source", "pk": 14997, "fields": {"orig_filename": "Haid_Josef-Anton_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148", "author": "", "orig_id": 1419169}}, {"model": "metainfo.source", "pk": 14998, "fields": {"orig_filename": "Haid_Kassian_1879_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 148f.", "author": "", "orig_id": 1419170}}, {"model": "metainfo.source", "pk": 14999, "fields": {"orig_filename": "Haimann_Giuseppe_1828_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419175}}, {"model": "metainfo.source", "pk": 15000, "fields": {"orig_filename": "Haimberger_Anton_1795_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150", "author": "", "orig_id": 1419176}}, {"model": "metainfo.source", "pk": 15001, "fields": {"orig_filename": "Haimerl_Franz-Xaver_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 150f.", "author": "", "orig_id": 1419177}}, {"model": "metainfo.source", "pk": 15002, "fields": {"orig_filename": "Haindl_Anton-Franz_1803_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151", "author": "", "orig_id": 1419179}}, {"model": "metainfo.source", "pk": 15003, "fields": {"orig_filename": "Hainisch_Anton_1775_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151f.", "author": "", "orig_id": 1419181}}, {"model": "metainfo.source", "pk": 15004, "fields": {"orig_filename": "Hainisch_Marianne_1839_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 152", "author": "", "orig_id": 1419182}}, {"model": "metainfo.source", "pk": 15005, "fields": {"orig_filename": "Hainisch_Michael_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 152f.", "author": "", "orig_id": 1419183}}, {"model": "metainfo.source", "pk": 15006, "fields": {"orig_filename": "Hainmueller_Otto_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 153", "author": "", "orig_id": 1419184}}, {"model": "metainfo.source", "pk": 15007, "fields": {"orig_filename": "Hain_Joseph_1809_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 151", "author": "", "orig_id": 1419178}}, {"model": "metainfo.source", "pk": 15008, "fields": {"orig_filename": "Haiszler_Georg_1761_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 153", "author": "", "orig_id": 1419185}}, {"model": "metainfo.source", "pk": 15009, "fields": {"orig_filename": "Haitinger_Ludwig-Camillo_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 154", "author": "", "orig_id": 1419186}}, {"model": "metainfo.source", "pk": 15010, "fields": {"orig_filename": "Haitinger_Max_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 154f.", "author": "", "orig_id": 1419187}}, {"model": "metainfo.source", "pk": 15011, "fields": {"orig_filename": "Haizinger_Amalie_1800_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419188}}, {"model": "metainfo.source", "pk": 15012, "fields": {"orig_filename": "Haizinger_Anton_1796_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419189}}, {"model": "metainfo.source", "pk": 15013, "fields": {"orig_filename": "Hajdrih_Anton_1842_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419190}}, {"model": "metainfo.source", "pk": 15014, "fields": {"orig_filename": "Hajek_Markusz_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155", "author": "", "orig_id": 1419191}}, {"model": "metainfo.source", "pk": 15015, "fields": {"orig_filename": "Hajek_Salomon_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 155f.", "author": "", "orig_id": 1419192}}, {"model": "metainfo.source", "pk": 15016, "fields": {"orig_filename": "Hajnik_Emerich_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419247}}, {"model": "metainfo.source", "pk": 15017, "fields": {"orig_filename": "Hajnis_Frantisek_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419248}}, {"model": "metainfo.source", "pk": 15018, "fields": {"orig_filename": "Hakman_Eugen_1794_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419249}}, {"model": "metainfo.source", "pk": 15019, "fields": {"orig_filename": "Halacsy_Eugen_1842_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156", "author": "", "orig_id": 1419250}}, {"model": "metainfo.source", "pk": 15020, "fields": {"orig_filename": "Halasz_Emerich_1841_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 156f.", "author": "", "orig_id": 1419251}}, {"model": "metainfo.source", "pk": 15021, "fields": {"orig_filename": "Halauska_Ludwig_1827_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157", "author": "", "orig_id": 1419252}}, {"model": "metainfo.source", "pk": 15022, "fields": {"orig_filename": "Halban_Alfred_1865_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 157", "author": "", "orig_id": 1419253}}, {"model": "metainfo.source", "pk": 15023, "fields": {"orig_filename": "Halban_Josef_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419255}}, {"model": "metainfo.source", "pk": 15024, "fields": {"orig_filename": "Halban_Leo_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419256}}, {"model": "metainfo.source", "pk": 15025, "fields": {"orig_filename": "Halberstam_Sophie_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158", "author": "", "orig_id": 1419258}}, {"model": "metainfo.source", "pk": 15026, "fields": {"orig_filename": "Halbherr_Bernardino_1844_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 158f.", "author": "", "orig_id": 1419259}}, {"model": "metainfo.source", "pk": 15027, "fields": {"orig_filename": "Halbherr_Federico_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419263}}, {"model": "metainfo.source", "pk": 15028, "fields": {"orig_filename": "Halbhuber-Festwill_Anton_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419264}}, {"model": "metainfo.source", "pk": 15029, "fields": {"orig_filename": "Halbig_Andreas_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159", "author": "", "orig_id": 1419265}}, {"model": "metainfo.source", "pk": 15030, "fields": {"orig_filename": "Halek_Vitezlav_1835_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 159f.", "author": "", "orig_id": 1419266}}, {"model": "metainfo.source", "pk": 15031, "fields": {"orig_filename": "Halirsch_Friedrich-Ludwig_1802_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419268}}, {"model": "metainfo.source", "pk": 15032, "fields": {"orig_filename": "Halir_Karl_1859_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419267}}, {"model": "metainfo.source", "pk": 15033, "fields": {"orig_filename": "Hallaschka_Cassian_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419270}}, {"model": "metainfo.source", "pk": 15034, "fields": {"orig_filename": "Halla_Joseph_1814_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 160", "author": "", "orig_id": 1419269}}, {"model": "metainfo.source", "pk": 15035, "fields": {"orig_filename": "Hallenstein_Konrad-Adolf_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419272}}, {"model": "metainfo.source", "pk": 15036, "fields": {"orig_filename": "Haller-Hallenburg_Cezar_1822_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419331}}, {"model": "metainfo.source", "pk": 15037, "fields": {"orig_filename": "Haller_Franz_1796_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419329}}, {"model": "metainfo.source", "pk": 15038, "fields": {"orig_filename": "Haller_Johann-Ev_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419330}}, {"model": "metainfo.source", "pk": 15039, "fields": {"orig_filename": "Hallmayer_Viktorin_1831_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161", "author": "", "orig_id": 1419332}}, {"model": "metainfo.source", "pk": 15040, "fields": {"orig_filename": "Hallwich_Hermann_1838_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 161f.", "author": "", "orig_id": 1419333}}, {"model": "metainfo.source", "pk": 15041, "fields": {"orig_filename": "Halm_Anton_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162", "author": "", "orig_id": 1419334}}, {"model": "metainfo.source", "pk": 15042, "fields": {"orig_filename": "Halter_Josef_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162", "author": "", "orig_id": 1419338}}, {"model": "metainfo.source", "pk": 15043, "fields": {"orig_filename": "Halter_Rudolf_1860_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 162f.", "author": "", "orig_id": 1419339}}, {"model": "metainfo.source", "pk": 15044, "fields": {"orig_filename": "Haltmeyer_Georg_1803_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 163", "author": "", "orig_id": 1419340}}, {"model": "metainfo.source", "pk": 15045, "fields": {"orig_filename": "Gura_Eugen_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418481}}, {"model": "metainfo.source", "pk": 15046, "fields": {"orig_filename": "Guritzer_Johann_1897_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1448064}}, {"model": "metainfo.source", "pk": 15047, "fields": {"orig_filename": "Gurk_Eduard_1801_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108f.", "author": "", "orig_id": 1418553}}, {"model": "metainfo.source", "pk": 15048, "fields": {"orig_filename": "Gurlitt_Ludwig_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418554}}, {"model": "metainfo.source", "pk": 15049, "fields": {"orig_filename": "Gurlitt_Wilhelm_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418555}}, {"model": "metainfo.source", "pk": 15050, "fields": {"orig_filename": "Gurschner_Alice_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418556}}, {"model": "metainfo.source", "pk": 15051, "fields": {"orig_filename": "Gurschner_Emil_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109", "author": "", "orig_id": 1418557}}, {"model": "metainfo.source", "pk": 15052, "fields": {"orig_filename": "Guschelbauer_Edmund_1839_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 109f.", "author": "", "orig_id": 1418558}}, {"model": "metainfo.source", "pk": 15053, "fields": {"orig_filename": "Guseck-Glankirchen_Oskar_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110", "author": "", "orig_id": 1418559}}, {"model": "metainfo.source", "pk": 15054, "fields": {"orig_filename": "Gussenbauer_Karl_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110", "author": "", "orig_id": 1418560}}, {"model": "metainfo.source", "pk": 15055, "fields": {"orig_filename": "Gustermann_Anton-Wilhelm_1750_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 110f.", "author": "", "orig_id": 1418561}}, {"model": "metainfo.source", "pk": 15056, "fields": {"orig_filename": "Guth-Jarkovsky_Jiri-Stanislav_1861_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418562}}, {"model": "metainfo.source", "pk": 15057, "fields": {"orig_filename": "Gutheil-Schoder_Marie_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418563}}, {"model": "metainfo.source", "pk": 15058, "fields": {"orig_filename": "Gutjahr_Franz-Seraph_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111", "author": "", "orig_id": 1418564}}, {"model": "metainfo.source", "pk": 15059, "fields": {"orig_filename": "Gutmann_Max_1857_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 111f.", "author": "", "orig_id": 1418565}}, {"model": "metainfo.source", "pk": 15060, "fields": {"orig_filename": "Gutmann_Wilhelm_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418566}}, {"model": "metainfo.source", "pk": 15061, "fields": {"orig_filename": "Guttenberg_Adolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418567}}, {"model": "metainfo.source", "pk": 15062, "fields": {"orig_filename": "Guttenberg_Emil_1841_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112", "author": "", "orig_id": 1418568}}, {"model": "metainfo.source", "pk": 15063, "fields": {"orig_filename": "Guttmann_Leopoldine_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 112f.", "author": "", "orig_id": 1418569}}, {"model": "metainfo.source", "pk": 15064, "fields": {"orig_filename": "Guttmann_Oskar_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418570}}, {"model": "metainfo.source", "pk": 15065, "fields": {"orig_filename": "Gutwinski_Roman_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418571}}, {"model": "metainfo.source", "pk": 15066, "fields": {"orig_filename": "Guzman_Albert_1841_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418572}}, {"model": "metainfo.source", "pk": 15067, "fields": {"orig_filename": "Gwercher_Hans_1859_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418573}}, {"model": "metainfo.source", "pk": 15068, "fields": {"orig_filename": "Gwinner_Robert_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418574}}, {"model": "metainfo.source", "pk": 15069, "fields": {"orig_filename": "Gyarmathi_Samuel_1751_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113", "author": "", "orig_id": 1418575}}, {"model": "metainfo.source", "pk": 15070, "fields": {"orig_filename": "Gyoery-Nadudvar_Arpad_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 113f.", "author": "", "orig_id": 1418576}}, {"model": "metainfo.source", "pk": 15071, "fields": {"orig_filename": "Gyrowetz_Adalbert_1763_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114", "author": "", "orig_id": 1418647}}, {"model": "metainfo.source", "pk": 15072, "fields": {"orig_filename": "Gyulai-Maros-Nemeth-Nadaska_Franz_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114f.", "author": "", "orig_id": 1418649}}, {"model": "metainfo.source", "pk": 15073, "fields": {"orig_filename": "Gyulai-Maros-Nemeth-Nadaska_Ignaz_1765_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418650}}, {"model": "metainfo.source", "pk": 15074, "fields": {"orig_filename": "Gyulai_Paul_1826_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 114", "author": "", "orig_id": 1418648}}, {"model": "metainfo.source", "pk": 15075, "fields": {"orig_filename": "Haader_Hermine_1885_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418651}}, {"model": "metainfo.source", "pk": 15076, "fields": {"orig_filename": "Haagn_Julius_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418653}}, {"model": "metainfo.source", "pk": 15077, "fields": {"orig_filename": "Haag_Joseph_1786_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115", "author": "", "orig_id": 1418652}}, {"model": "metainfo.source", "pk": 15078, "fields": {"orig_filename": "Haanen_Cecil_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418656}}, {"model": "metainfo.source", "pk": 15079, "fields": {"orig_filename": "Haanen_Remi_1812_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418657}}, {"model": "metainfo.source", "pk": 15080, "fields": {"orig_filename": "Haan_Friedrich_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 115f.", "author": "", "orig_id": 1418654}}, {"model": "metainfo.source", "pk": 15081, "fields": {"orig_filename": "Haan_Mathias-Wilhelm_1737_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116", "author": "", "orig_id": 1418655}}, {"model": "metainfo.source", "pk": 15082, "fields": {"orig_filename": "Haardt-Hartenthurn_Vinzenz_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 116f.", "author": "", "orig_id": 1418658}}, {"model": "metainfo.source", "pk": 15083, "fields": {"orig_filename": "Haas-Teppichen_Eduard_1827_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418669}}, {"model": "metainfo.source", "pk": 15084, "fields": {"orig_filename": "Haase_Adolf-Theodor_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418670}}, {"model": "metainfo.source", "pk": 15085, "fields": {"orig_filename": "Haase_Josef-Ludwig_1848_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120", "author": "", "orig_id": 1418671}}, {"model": "metainfo.source", "pk": 15086, "fields": {"orig_filename": "Haase_Ludwig_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 120f.", "author": "", "orig_id": 1418740}}, {"model": "metainfo.source", "pk": 15087, "fields": {"orig_filename": "Haase_Theodor-Karl_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 121", "author": "", "orig_id": 1418741}}, {"model": "metainfo.source", "pk": 15088, "fields": {"orig_filename": "Haase_Wolfgang_1870_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 121f.", "author": "", "orig_id": 1418742}}, {"model": "metainfo.source", "pk": 15089, "fields": {"orig_filename": "Haas_Alois_1805_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117", "author": "", "orig_id": 1418659}}, {"model": "metainfo.source", "pk": 15090, "fields": {"orig_filename": "Haas_Arthur-Erich_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117", "author": "", "orig_id": 1418660}}, {"model": "metainfo.source", "pk": 15091, "fields": {"orig_filename": "Haas_Georg-Emanuel_1821_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 117f.", "author": "", "orig_id": 1418661}}, {"model": "metainfo.source", "pk": 15092, "fields": {"orig_filename": "Haas_Hermann_1846_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418662}}, {"model": "metainfo.source", "pk": 15093, "fields": {"orig_filename": "Haas_Karl_1825_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418663}}, {"model": "metainfo.source", "pk": 15094, "fields": {"orig_filename": "Haas_Michael_1810_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118", "author": "", "orig_id": 1418664}}, {"model": "metainfo.source", "pk": 15095, "fields": {"orig_filename": "Haas_Paul_1899_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 118f.", "author": "", "orig_id": 1418665}}, {"model": "metainfo.source", "pk": 15096, "fields": {"orig_filename": "Haas_Philipp_1791_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 119", "author": "", "orig_id": 1418666}}, {"model": "metainfo.source", "pk": 15097, "fields": {"orig_filename": "Haas_Rudolf_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 119", "author": "", "orig_id": 1418667}}, {"model": "metainfo.source", "pk": 15098, "fields": {"orig_filename": "Haas_Rudolf_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418668}}, {"model": "metainfo.source", "pk": 15099, "fields": {"orig_filename": "Habart_Johann_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418744}}, {"model": "metainfo.source", "pk": 15100, "fields": {"orig_filename": "Habel-Malinski_Eduard_1803_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418745}}, {"model": "metainfo.source", "pk": 15101, "fields": {"orig_filename": "Haber-Linsberg_Louis_1804_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122", "author": "", "orig_id": 1418746}}, {"model": "metainfo.source", "pk": 15102, "fields": {"orig_filename": "Haberda_Albin_1868_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 122f.", "author": "", "orig_id": 1418747}}, {"model": "metainfo.source", "pk": 15103, "fields": {"orig_filename": "Haberditzl_Franz-Martin_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418748}}, {"model": "metainfo.source", "pk": 15104, "fields": {"orig_filename": "Haberer-Kremshohenstein_Theodor_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418750}}, {"model": "metainfo.source", "pk": 15105, "fields": {"orig_filename": "Haberer_Ludwig_1846_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123", "author": "", "orig_id": 1418749}}, {"model": "metainfo.source", "pk": 15106, "fields": {"orig_filename": "Haberlandt_Edith_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124", "author": "", "orig_id": 1418752}}, {"model": "metainfo.source", "pk": 15107, "fields": {"orig_filename": "Haberlandt_Friedrich_1826_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124", "author": "", "orig_id": 1418753}}, {"model": "metainfo.source", "pk": 15108, "fields": {"orig_filename": "Haberlandt_Gottlieb_1854_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 124f.", "author": "", "orig_id": 1418754}}, {"model": "metainfo.source", "pk": 15109, "fields": {"orig_filename": "Haberlandt_Herbert-Eduard_1904_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2005234}}, {"model": "metainfo.source", "pk": 15110, "fields": {"orig_filename": "Haberlandt_Ludwig_1885_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125", "author": "", "orig_id": 1418755}}, {"model": "metainfo.source", "pk": 15111, "fields": {"orig_filename": "Haberlandt_Michael_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125", "author": "", "orig_id": 1418756}}, {"model": "metainfo.source", "pk": 15112, "fields": {"orig_filename": "Haberler_Franz_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418758}}, {"model": "metainfo.source", "pk": 15113, "fields": {"orig_filename": "Haberle_Karl-Konstantin_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 125f.", "author": "", "orig_id": 1418757}}, {"model": "metainfo.source", "pk": 15114, "fields": {"orig_filename": "Haberl_Gotthard-Johannes_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 123f.", "author": "", "orig_id": 1418751}}, {"model": "metainfo.source", "pk": 15115, "fields": {"orig_filename": "Habermann_Franz_1788_1866.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2005581}}, {"model": "metainfo.source", "pk": 15116, "fields": {"orig_filename": "Habermann_Johann-Ev_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418759}}, {"model": "metainfo.source", "pk": 15117, "fields": {"orig_filename": "Habermann_Josef_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126", "author": "", "orig_id": 1418760}}, {"model": "metainfo.source", "pk": 15118, "fields": {"orig_filename": "Habermann_Peter_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 126f.", "author": "", "orig_id": 1418761}}, {"model": "metainfo.source", "pk": 15119, "fields": {"orig_filename": "Habermayer_Christoph_1768_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418762}}, {"model": "metainfo.source", "pk": 15120, "fields": {"orig_filename": "Habert_Johann-Ev_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418825}}, {"model": "metainfo.source", "pk": 15121, "fields": {"orig_filename": "Haberzettl_Erna_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145075}}, {"model": "metainfo.source", "pk": 15122, "fields": {"orig_filename": "Habe_Hans_1911_1977.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443985}}, {"model": "metainfo.source", "pk": 15123, "fields": {"orig_filename": "Habich_Otto_1847_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418826}}, {"model": "metainfo.source", "pk": 15124, "fields": {"orig_filename": "Habietinek_Karl_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127", "author": "", "orig_id": 1418827}}, {"model": "metainfo.source", "pk": 15125, "fields": {"orig_filename": "Hablawetz_August-Egon_1833_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 127f.", "author": "", "orig_id": 1418828}}, {"model": "metainfo.source", "pk": 15126, "fields": {"orig_filename": "Haboeck_Franz_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418829}}, {"model": "metainfo.source", "pk": 15127, "fields": {"orig_filename": "Habrda_Johann_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418830}}, {"model": "metainfo.source", "pk": 15128, "fields": {"orig_filename": "Habrmann_Gustav_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418831}}, {"model": "metainfo.source", "pk": 15129, "fields": {"orig_filename": "Habtmann_Georg-Johann_1784_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128", "author": "", "orig_id": 1418832}}, {"model": "metainfo.source", "pk": 15130, "fields": {"orig_filename": "Hackelberg-Landau_Karl_1859_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130", "author": "", "orig_id": 1418838}}, {"model": "metainfo.source", "pk": 15131, "fields": {"orig_filename": "Hackel_Anton_1799_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129f.", "author": "", "orig_id": 1418836}}, {"model": "metainfo.source", "pk": 15132, "fields": {"orig_filename": "Hackel_Eduard_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130", "author": "", "orig_id": 1418837}}, {"model": "metainfo.source", "pk": 15133, "fields": {"orig_filename": "Hacker_Aemilius_1870_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 130f.", "author": "", "orig_id": 1418839}}, {"model": "metainfo.source", "pk": 15134, "fields": {"orig_filename": "Hacker_Benedikt_1769_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 131", "author": "", "orig_id": 1418915}}, {"model": "metainfo.source", "pk": 15135, "fields": {"orig_filename": "Hacker_Viktor_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 131f.", "author": "", "orig_id": 1418916}}, {"model": "metainfo.source", "pk": 15136, "fields": {"orig_filename": "Hackher-Hart_Franz-Xaver_1764_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418917}}, {"model": "metainfo.source", "pk": 15137, "fields": {"orig_filename": "Hackhofer_Josef_1863_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418918}}, {"model": "metainfo.source", "pk": 15138, "fields": {"orig_filename": "Hacksteiner_Johann_1770_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418919}}, {"model": "metainfo.source", "pk": 15139, "fields": {"orig_filename": "Hackstock_Karl_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132", "author": "", "orig_id": 1418920}}, {"model": "metainfo.source", "pk": 15140, "fields": {"orig_filename": "Hack_Josefine_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129", "author": "", "orig_id": 1418835}}, {"model": "metainfo.source", "pk": 15141, "fields": {"orig_filename": "Hack_Josef_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 129", "author": "", "orig_id": 1418834}}, {"model": "metainfo.source", "pk": 15142, "fields": {"orig_filename": "Hacquet-Motte_Belsazar_1739_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 132f.", "author": "", "orig_id": 1418921}}, {"model": "metainfo.source", "pk": 15143, "fields": {"orig_filename": "Hac_Rudolf_1883_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 128f.", "author": "", "orig_id": 1418833}}, {"model": "metainfo.source", "pk": 15144, "fields": {"orig_filename": "Hadaczek_Karl_1873_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133", "author": "", "orig_id": 1418922}}, {"model": "metainfo.source", "pk": 15145, "fields": {"orig_filename": "Haderlap_Lipe_1849_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133", "author": "", "orig_id": 1418923}}, {"model": "metainfo.source", "pk": 15146, "fields": {"orig_filename": "Hadik-Futak_Johann_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 133f.", "author": "", "orig_id": 1418924}}, {"model": "metainfo.source", "pk": 15147, "fields": {"orig_filename": "Hadwiger_Alois_1879_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418925}}, {"model": "metainfo.source", "pk": 15148, "fields": {"orig_filename": "Hadwiger_Viktor_1878_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 134", "author": "", "orig_id": 1418926}}, {"model": "metainfo.source", "pk": 15149, "fields": {"orig_filename": "Gruden_Josip-Valentin_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419493}}, {"model": "metainfo.source", "pk": 15150, "fields": {"orig_filename": "Grueber_Paul_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419494}}, {"model": "metainfo.source", "pk": 15151, "fields": {"orig_filename": "Gruebl_Raimund_1847_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419495}}, {"model": "metainfo.source", "pk": 15152, "fields": {"orig_filename": "Gruenbaum_Caroline_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419501}}, {"model": "metainfo.source", "pk": 15153, "fields": {"orig_filename": "Gruenbaum_Fritz_1880_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419502}}, {"model": "metainfo.source", "pk": 15154, "fields": {"orig_filename": "Gruenbaum_Johann-Christoph_1785_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419503}}, {"model": "metainfo.source", "pk": 15155, "fields": {"orig_filename": "Gruenbaum_Lorenz_1791_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419504}}, {"model": "metainfo.source", "pk": 15156, "fields": {"orig_filename": "Gruenbeck_Heinrich_1818_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419506}}, {"model": "metainfo.source", "pk": 15157, "fields": {"orig_filename": "Gruenberger_Alfred_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88f.", "author": "", "orig_id": 1419509}}, {"model": "metainfo.source", "pk": 15158, "fields": {"orig_filename": "Gruenberg_Johanna_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88", "author": "", "orig_id": 1419507}}, {"model": "metainfo.source", "pk": 15159, "fields": {"orig_filename": "Gruenberg_Karl_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 88", "author": "", "orig_id": 1419508}}, {"model": "metainfo.source", "pk": 15160, "fields": {"orig_filename": "Gruendorf_Karl_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1419510}}, {"model": "metainfo.source", "pk": 15161, "fields": {"orig_filename": "Gruenert_Max_1849_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418194}}, {"model": "metainfo.source", "pk": 15162, "fields": {"orig_filename": "Gruener_Joseph-Sebastian_1780_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418192}}, {"model": "metainfo.source", "pk": 15163, "fields": {"orig_filename": "Gruener_Karl-Franz_1780_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418193}}, {"model": "metainfo.source", "pk": 15164, "fields": {"orig_filename": "Gruenewald_Alfred_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 89", "author": "", "orig_id": 1418195}}, {"model": "metainfo.source", "pk": 15165, "fields": {"orig_filename": "Gruenfeld_Alfred_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418196}}, {"model": "metainfo.source", "pk": 15166, "fields": {"orig_filename": "Gruenfeld_Heinrich_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418197}}, {"model": "metainfo.source", "pk": 15167, "fields": {"orig_filename": "Gruenfeld_Josef_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418198}}, {"model": "metainfo.source", "pk": 15168, "fields": {"orig_filename": "Gruenfeld_Paul-Stefan_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418199}}, {"model": "metainfo.source", "pk": 15169, "fields": {"orig_filename": "Gruenfeld_Sophie_1856_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90", "author": "", "orig_id": 1418200}}, {"model": "metainfo.source", "pk": 15170, "fields": {"orig_filename": "Gruenhut_Karl-Samuel_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 90f.", "author": "", "orig_id": 1418201}}, {"model": "metainfo.source", "pk": 15171, "fields": {"orig_filename": "Grueninger_Franz-Xaver_1790_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418202}}, {"model": "metainfo.source", "pk": 15172, "fields": {"orig_filename": "Gruenne_Karl_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418203}}, {"model": "metainfo.source", "pk": 15173, "fields": {"orig_filename": "Gruenne_Philipp-Ferdinand_1762_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 91", "author": "", "orig_id": 1418204}}, {"model": "metainfo.source", "pk": 15174, "fields": {"orig_filename": "Gruenwald-Zerkovitz_Sidonie_1852_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92f.", "author": "", "orig_id": 1418209}}, {"model": "metainfo.source", "pk": 15175, "fields": {"orig_filename": "Gruenwald_Anton-Adalbert_1873_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418205}}, {"model": "metainfo.source", "pk": 15176, "fields": {"orig_filename": "Gruenwald_Anton-Karl_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418206}}, {"model": "metainfo.source", "pk": 15177, "fields": {"orig_filename": "Gruenwald_Bela_1839_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418207}}, {"model": "metainfo.source", "pk": 15178, "fields": {"orig_filename": "Gruenwald_Josef_1876_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 92", "author": "", "orig_id": 1418208}}, {"model": "metainfo.source", "pk": 15179, "fields": {"orig_filename": "Gruen_Adolf_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419496}}, {"model": "metainfo.source", "pk": 15180, "fields": {"orig_filename": "Gruen_Dionys_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86", "author": "", "orig_id": 1419498}}, {"model": "metainfo.source", "pk": 15181, "fields": {"orig_filename": "Gruen_Jakob-Moritz_1837_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 86f.", "author": "", "orig_id": 1419499}}, {"model": "metainfo.source", "pk": 15182, "fields": {"orig_filename": "Gruen_Johann-Nep_1751_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 87", "author": "", "orig_id": 1419500}}, {"model": "metainfo.source", "pk": 15183, "fields": {"orig_filename": "Gruessner_Anton_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418210}}, {"model": "metainfo.source", "pk": 15184, "fields": {"orig_filename": "Gruhenberg_Myra_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 373", "author": "", "orig_id": 1451693}}, {"model": "metainfo.source", "pk": 15185, "fields": {"orig_filename": "Grundmann_Franz_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418212}}, {"model": "metainfo.source", "pk": 15186, "fields": {"orig_filename": "Grund_Alfred_1875_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93", "author": "", "orig_id": 1418211}}, {"model": "metainfo.source", "pk": 15187, "fields": {"orig_filename": "Gruner_Ferdinand_1873_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 93f.", "author": "", "orig_id": 1418280}}, {"model": "metainfo.source", "pk": 15188, "fields": {"orig_filename": "Grunow_Albert_1826_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 94", "author": "", "orig_id": 1418281}}, {"model": "metainfo.source", "pk": 15189, "fields": {"orig_filename": "Gruntzel_Josef_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 94f.", "author": "", "orig_id": 1418282}}, {"model": "metainfo.source", "pk": 15190, "fields": {"orig_filename": "Gruscha_Anton-Josef_1820_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418283}}, {"model": "metainfo.source", "pk": 15191, "fields": {"orig_filename": "Gruss_Anton_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418284}}, {"model": "metainfo.source", "pk": 15192, "fields": {"orig_filename": "Gruss_Johann_1790_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418285}}, {"model": "metainfo.source", "pk": 15193, "fields": {"orig_filename": "Grutsch_Franz-Xaver_1810_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418287}}, {"model": "metainfo.source", "pk": 15194, "fields": {"orig_filename": "Grutsch_Franz_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 95", "author": "", "orig_id": 1418286}}, {"model": "metainfo.source", "pk": 15195, "fields": {"orig_filename": "Grysar_Karl-Josef_1801_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418288}}, {"model": "metainfo.source", "pk": 15196, "fields": {"orig_filename": "Grzybowski_Jozef_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 96", "author": "", "orig_id": 1418289}}, {"model": "metainfo.source", "pk": 15197, "fields": {"orig_filename": "Gsaller_Carl_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418290}}, {"model": "metainfo.source", "pk": 15198, "fields": {"orig_filename": "Gschiel_Jakob_1821_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418291}}, {"model": "metainfo.source", "pk": 15199, "fields": {"orig_filename": "Gschliesser_Ilka_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418292}}, {"model": "metainfo.source", "pk": 15200, "fields": {"orig_filename": "Gschwandner_Robert_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97", "author": "", "orig_id": 1418293}}, {"model": "metainfo.source", "pk": 15201, "fields": {"orig_filename": "Gschwandner_Sigismund_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 97f.", "author": "", "orig_id": 1418294}}, {"model": "metainfo.source", "pk": 15202, "fields": {"orig_filename": "Gschwari_Coelestin_1823_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418295}}, {"model": "metainfo.source", "pk": 15203, "fields": {"orig_filename": "Gsellhofer_Karl_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418298}}, {"model": "metainfo.source", "pk": 15204, "fields": {"orig_filename": "Gsell_Benedikt_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418296}}, {"model": "metainfo.source", "pk": 15205, "fields": {"orig_filename": "Gsell_Friedrich-Jakob_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98", "author": "", "orig_id": 1418297}}, {"model": "metainfo.source", "pk": 15206, "fields": {"orig_filename": "Gspan_Johann-Chrys_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418300}}, {"model": "metainfo.source", "pk": 15207, "fields": {"orig_filename": "Gspan_Peter-Erasmus_1790_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 98f.", "author": "", "orig_id": 1418299}}, {"model": "metainfo.source", "pk": 15208, "fields": {"orig_filename": "Gstirner_Adolf_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418301}}, {"model": "metainfo.source", "pk": 15209, "fields": {"orig_filename": "Gstrein_Alois_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418302}}, {"model": "metainfo.source", "pk": 15210, "fields": {"orig_filename": "Gsur_Karl-Friedrich_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99", "author": "", "orig_id": 1418303}}, {"model": "metainfo.source", "pk": 15211, "fields": {"orig_filename": "Gubin_Richard_1870_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 99f.", "author": "", "orig_id": 1418366}}, {"model": "metainfo.source", "pk": 15212, "fields": {"orig_filename": "Guby_Rudolf_1888_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418367}}, {"model": "metainfo.source", "pk": 15213, "fields": {"orig_filename": "Gudenus_Leopold_1843_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418369}}, {"model": "metainfo.source", "pk": 15214, "fields": {"orig_filename": "Guedemann_Moritz_1835_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418371}}, {"model": "metainfo.source", "pk": 15215, "fields": {"orig_filename": "Guede_Julius_1885_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2086589}}, {"model": "metainfo.source", "pk": 15216, "fields": {"orig_filename": "Guem_Johann-Franz_1755_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100", "author": "", "orig_id": 1418373}}, {"model": "metainfo.source", "pk": 15217, "fields": {"orig_filename": "Guenther_Anton_1783_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 100f.", "author": "", "orig_id": 1418372}}, {"model": "metainfo.source", "pk": 15218, "fields": {"orig_filename": "Guenther_Anton_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418374}}, {"model": "metainfo.source", "pk": 15219, "fields": {"orig_filename": "Guenther_Georg_1869_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418375}}, {"model": "metainfo.source", "pk": 15220, "fields": {"orig_filename": "Guenther_Gustav_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101", "author": "", "orig_id": 1418376}}, {"model": "metainfo.source", "pk": 15221, "fields": {"orig_filename": "Guenther_Otto_1845_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 101f.", "author": "", "orig_id": 1418377}}, {"model": "metainfo.source", "pk": 15222, "fields": {"orig_filename": "Guentner_Franz-Xaver_1790_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418378}}, {"model": "metainfo.source", "pk": 15223, "fields": {"orig_filename": "Guentner_Wenzel_1820_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418379}}, {"model": "metainfo.source", "pk": 15224, "fields": {"orig_filename": "Guenzl_Marie_1896_1983.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2085186}}, {"model": "metainfo.source", "pk": 15225, "fields": {"orig_filename": "Guerke_Norbert_1904_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102", "author": "", "orig_id": 1418380}}, {"model": "metainfo.source", "pk": 15226, "fields": {"orig_filename": "Guertler_Alfred_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 102f.", "author": "", "orig_id": 1418381}}, {"model": "metainfo.source", "pk": 15227, "fields": {"orig_filename": "Guertler_Hermann_1887_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418382}}, {"model": "metainfo.source", "pk": 15228, "fields": {"orig_filename": "Guertler_Josef_1862_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418383}}, {"model": "metainfo.source", "pk": 15229, "fields": {"orig_filename": "Guerzoni_Giuseppe_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103", "author": "", "orig_id": 1418384}}, {"model": "metainfo.source", "pk": 15230, "fields": {"orig_filename": "Guetl_Edmund_1879_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 103f.", "author": "", "orig_id": 1418385}}, {"model": "metainfo.source", "pk": 15231, "fields": {"orig_filename": "Guettenberger_Heinrich_1886_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418386}}, {"model": "metainfo.source", "pk": 15232, "fields": {"orig_filename": "Gufler_Josef_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418387}}, {"model": "metainfo.source", "pk": 15233, "fields": {"orig_filename": "Gugenbichler_Franz_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104", "author": "", "orig_id": 1418388}}, {"model": "metainfo.source", "pk": 15234, "fields": {"orig_filename": "Guggenberg-Riedhofen_Athanasius_1846_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418464}}, {"model": "metainfo.source", "pk": 15235, "fields": {"orig_filename": "Guggenberg-Riedhofen_Otto_1848_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418465}}, {"model": "metainfo.source", "pk": 15236, "fields": {"orig_filename": "Guggenberger_Adolf_1896_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418466}}, {"model": "metainfo.source", "pk": 15237, "fields": {"orig_filename": "Gugg_Anton_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 104f.", "author": "", "orig_id": 1418463}}, {"model": "metainfo.source", "pk": 15238, "fields": {"orig_filename": "Gugitz_Gustav_1836_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105", "author": "", "orig_id": 1418467}}, {"model": "metainfo.source", "pk": 15239, "fields": {"orig_filename": "Guglia_Eugen_1857_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 105f.", "author": "", "orig_id": 1418468}}, {"model": "metainfo.source", "pk": 15240, "fields": {"orig_filename": "Guicciardi_Giulietta_1784_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418469}}, {"model": "metainfo.source", "pk": 15241, "fields": {"orig_filename": "Gulbransson_Grete_1882_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418470}}, {"model": "metainfo.source", "pk": 15242, "fields": {"orig_filename": "Gull_Josef_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106", "author": "", "orig_id": 1418471}}, {"model": "metainfo.source", "pk": 15243, "fields": {"orig_filename": "Gumplowicz_Ludwig_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 106f.", "author": "", "orig_id": 1418472}}, {"model": "metainfo.source", "pk": 15244, "fields": {"orig_filename": "Gumplowicz_Maximilian-Ernest_1864_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418473}}, {"model": "metainfo.source", "pk": 15245, "fields": {"orig_filename": "Gundling_Julius_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418474}}, {"model": "metainfo.source", "pk": 15246, "fields": {"orig_filename": "Gunert_Herma_1905_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418475}}, {"model": "metainfo.source", "pk": 15247, "fields": {"orig_filename": "Gunesch_Adele_1832_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418476}}, {"model": "metainfo.source", "pk": 15248, "fields": {"orig_filename": "Gungl_Joseph_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1418477}}, {"model": "metainfo.source", "pk": 15249, "fields": {"orig_filename": "Gung_L_Johann_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107", "author": "", "orig_id": 1440651}}, {"model": "metainfo.source", "pk": 15250, "fields": {"orig_filename": "Gunolt_August_1849_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 107f.", "author": "", "orig_id": 1418478}}, {"model": "metainfo.source", "pk": 15251, "fields": {"orig_filename": "Gunz_Gustav-Georg_1831_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418479}}, {"model": "metainfo.source", "pk": 15252, "fields": {"orig_filename": "Guppenberger_Lambert_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 7, 1958), S. 108", "author": "", "orig_id": 1418480}}, {"model": "metainfo.source", "pk": 15253, "fields": {"orig_filename": "Greussing_Paul_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418913}}, {"model": "metainfo.source", "pk": 15254, "fields": {"orig_filename": "Greuter_Josef_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58f.", "author": "", "orig_id": 1418914}}, {"model": "metainfo.source", "pk": 15255, "fields": {"orig_filename": "Greutter_Franz_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418981}}, {"model": "metainfo.source", "pk": 15256, "fields": {"orig_filename": "Grevenberg_Julius_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418982}}, {"model": "metainfo.source", "pk": 15257, "fields": {"orig_filename": "Grey-Stipek_Valerie_1845_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418983}}, {"model": "metainfo.source", "pk": 15258, "fields": {"orig_filename": "Grienberger_Theodor_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59", "author": "", "orig_id": 1418984}}, {"model": "metainfo.source", "pk": 15259, "fields": {"orig_filename": "Griepenkerl_Christian_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 59f.", "author": "", "orig_id": 1418985}}, {"model": "metainfo.source", "pk": 15260, "fields": {"orig_filename": "Griesbach_Karl-Ludolf_1847_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418988}}, {"model": "metainfo.source", "pk": 15261, "fields": {"orig_filename": "Griessl_Rupert_1854_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418989}}, {"model": "metainfo.source", "pk": 15262, "fields": {"orig_filename": "Grieszelich_Ernst-Ludwig_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61", "author": "", "orig_id": 1418990}}, {"model": "metainfo.source", "pk": 15263, "fields": {"orig_filename": "Gries_Franz_1760_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418986}}, {"model": "metainfo.source", "pk": 15264, "fields": {"orig_filename": "Gries_Johann-Ev_1808_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 60", "author": "", "orig_id": 1418987}}, {"model": "metainfo.source", "pk": 15265, "fields": {"orig_filename": "Grillmayr_Johann-E-C_1809_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61", "author": "", "orig_id": 1418991}}, {"model": "metainfo.source", "pk": 15266, "fields": {"orig_filename": "Grillparzer_Franz_1791_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 61ff.", "author": "", "orig_id": 1418992}}, {"model": "metainfo.source", "pk": 15267, "fields": {"orig_filename": "Grimmich_Virgil_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418996}}, {"model": "metainfo.source", "pk": 15268, "fields": {"orig_filename": "Grimm_Ferdinand_1869_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 63", "author": "", "orig_id": 1418993}}, {"model": "metainfo.source", "pk": 15269, "fields": {"orig_filename": "Grimm_Hugo_1866_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 63f.", "author": "", "orig_id": 1418994}}, {"model": "metainfo.source", "pk": 15270, "fields": {"orig_filename": "Grimm_Leo_1889_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418995}}, {"model": "metainfo.source", "pk": 15271, "fields": {"orig_filename": "Grimus-Grimburg_Rudolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418997}}, {"model": "metainfo.source", "pk": 15272, "fields": {"orig_filename": "Grinner_Josef_1870_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64", "author": "", "orig_id": 1418998}}, {"model": "metainfo.source", "pk": 15273, "fields": {"orig_filename": "Grisar_Hartmann_1845_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 64f.", "author": "", "orig_id": 1418999}}, {"model": "metainfo.source", "pk": 15274, "fields": {"orig_filename": "Grisi_Carlotta_1821_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419000}}, {"model": "metainfo.source", "pk": 15275, "fields": {"orig_filename": "Grisi_Giulia_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419001}}, {"model": "metainfo.source", "pk": 15276, "fields": {"orig_filename": "Grissemann_Hans_1874_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65", "author": "", "orig_id": 1419002}}, {"model": "metainfo.source", "pk": 15277, "fields": {"orig_filename": "Grobben_Karl_1854_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 65f.", "author": "", "orig_id": 1419003}}, {"model": "metainfo.source", "pk": 15278, "fields": {"orig_filename": "Grocholski_Kazimierz_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419067}}, {"model": "metainfo.source", "pk": 15279, "fields": {"orig_filename": "Groder_Virgil_1856_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419068}}, {"model": "metainfo.source", "pk": 15280, "fields": {"orig_filename": "Groeben_August_1828_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 66", "author": "", "orig_id": 1419069}}, {"model": "metainfo.source", "pk": 15281, "fields": {"orig_filename": "Groeger_Adolf_1868_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419071}}, {"model": "metainfo.source", "pk": 15282, "fields": {"orig_filename": "Groeger_Florian_1871_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419072}}, {"model": "metainfo.source", "pk": 15283, "fields": {"orig_filename": "Groeger_Max_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67", "author": "", "orig_id": 1419073}}, {"model": "metainfo.source", "pk": 15284, "fields": {"orig_filename": "Groesser_Matthaeus_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 67f.", "author": "", "orig_id": 1419074}}, {"model": "metainfo.source", "pk": 15285, "fields": {"orig_filename": "Groessl_Wenzel_1856_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419075}}, {"model": "metainfo.source", "pk": 15286, "fields": {"orig_filename": "Grohar_Ivan_1867_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419077}}, {"model": "metainfo.source", "pk": 15287, "fields": {"orig_filename": "Grohmann_Adolf_1825_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68f.", "author": "", "orig_id": 1419078}}, {"model": "metainfo.source", "pk": 15288, "fields": {"orig_filename": "Grohmann_Carl_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 69", "author": "", "orig_id": 1419079}}, {"model": "metainfo.source", "pk": 15289, "fields": {"orig_filename": "Grohmann_Eduard_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 69f.", "author": "", "orig_id": 1419080}}, {"model": "metainfo.source", "pk": 15290, "fields": {"orig_filename": "Grohmann_Joseph_1792_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70", "author": "", "orig_id": 1419081}}, {"model": "metainfo.source", "pk": 15291, "fields": {"orig_filename": "Grohmann_Paul_1838_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70", "author": "", "orig_id": 1419082}}, {"model": "metainfo.source", "pk": 15292, "fields": {"orig_filename": "Grohs-Fligely_Anton_1825_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 70f.", "author": "", "orig_id": 1419083}}, {"model": "metainfo.source", "pk": 15293, "fields": {"orig_filename": "Groh_Jakob_1855_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 68", "author": "", "orig_id": 1419076}}, {"model": "metainfo.source", "pk": 15294, "fields": {"orig_filename": "Grolig_Moriz_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419084}}, {"model": "metainfo.source", "pk": 15295, "fields": {"orig_filename": "Groller-Mildensee_Maximilian_1838_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419087}}, {"model": "metainfo.source", "pk": 15296, "fields": {"orig_filename": "Groll_Andreas_1850_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71", "author": "", "orig_id": 1419085}}, {"model": "metainfo.source", "pk": 15297, "fields": {"orig_filename": "Gronemann_Karoline_1869_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 71f.", "author": "", "orig_id": 1419088}}, {"model": "metainfo.source", "pk": 15298, "fields": {"orig_filename": "Groner_Anton_1823_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419089}}, {"model": "metainfo.source", "pk": 15299, "fields": {"orig_filename": "Groner_Auguste_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419149}}, {"model": "metainfo.source", "pk": 15300, "fields": {"orig_filename": "Groner_Richard_1852_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419150}}, {"model": "metainfo.source", "pk": 15301, "fields": {"orig_filename": "Groppenberger-Bergenstamm_Alois_1754_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72", "author": "", "orig_id": 1419151}}, {"model": "metainfo.source", "pk": 15302, "fields": {"orig_filename": "Gross-Hoffinger_Anton-Johann_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 76f.", "author": "", "orig_id": 1419166}}, {"model": "metainfo.source", "pk": 15303, "fields": {"orig_filename": "Grossbauer-Waldstaett_Franz_1813_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419167}}, {"model": "metainfo.source", "pk": 15304, "fields": {"orig_filename": "Grossberg_Mimi_1905_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420526}}, {"model": "metainfo.source", "pk": 15305, "fields": {"orig_filename": "Grossberg_Norbert_1903_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1423092}}, {"model": "metainfo.source", "pk": 15306, "fields": {"orig_filename": "Grosschmid_Benjamin_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419391}}, {"model": "metainfo.source", "pk": 15307, "fields": {"orig_filename": "Grosse_Andreas_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419324}}, {"model": "metainfo.source", "pk": 15308, "fields": {"orig_filename": "Grossich_Antonio_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419326}}, {"model": "metainfo.source", "pk": 15309, "fields": {"orig_filename": "Grossi_Tommaso_1791_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77", "author": "", "orig_id": 1419325}}, {"model": "metainfo.source", "pk": 15310, "fields": {"orig_filename": "Grossmann_Michael_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 77f.", "author": "", "orig_id": 1419327}}, {"model": "metainfo.source", "pk": 15311, "fields": {"orig_filename": "Grossmann_Stefan_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419390}}, {"model": "metainfo.source", "pk": 15312, "fields": {"orig_filename": "Gross_Benedikt_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 72f.", "author": "", "orig_id": 1419153}}, {"model": "metainfo.source", "pk": 15313, "fields": {"orig_filename": "Gross_Ferdinand_1848_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419154}}, {"model": "metainfo.source", "pk": 15314, "fields": {"orig_filename": "Gross_Franz_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419155}}, {"model": "metainfo.source", "pk": 15315, "fields": {"orig_filename": "Gross_Gustav-Robert_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73f.", "author": "", "orig_id": 1419157}}, {"model": "metainfo.source", "pk": 15316, "fields": {"orig_filename": "Gross_Gustav_1856_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 73", "author": "", "orig_id": 1419156}}, {"model": "metainfo.source", "pk": 15317, "fields": {"orig_filename": "Gross_Hanns_1847_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74", "author": "", "orig_id": 1419158}}, {"model": "metainfo.source", "pk": 15318, "fields": {"orig_filename": "Gross_Heinrich_1839_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74", "author": "", "orig_id": 1419159}}, {"model": "metainfo.source", "pk": 15319, "fields": {"orig_filename": "Gross_Josef_1828_1890.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419160}}, {"model": "metainfo.source", "pk": 15320, "fields": {"orig_filename": "Gross_Josef_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 74f.", "author": "", "orig_id": 1419161}}, {"model": "metainfo.source", "pk": 15321, "fields": {"orig_filename": "Gross_Julius_1855_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75", "author": "", "orig_id": 1419162}}, {"model": "metainfo.source", "pk": 15322, "fields": {"orig_filename": "Gross_Karl_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75", "author": "", "orig_id": 1419163}}, {"model": "metainfo.source", "pk": 15323, "fields": {"orig_filename": "Gross_Lothar_1887_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 75f.", "author": "", "orig_id": 1419164}}, {"model": "metainfo.source", "pk": 15324, "fields": {"orig_filename": "Gross_Otto_1877_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1449030}}, {"model": "metainfo.source", "pk": 15325, "fields": {"orig_filename": "Gross_Wilhelm_1886_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 76", "author": "", "orig_id": 1419165}}, {"model": "metainfo.source", "pk": 15326, "fields": {"orig_filename": "Grosz_Karl_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419392}}, {"model": "metainfo.source", "pk": 15327, "fields": {"orig_filename": "Grosz_Siegfried_1869_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 78", "author": "", "orig_id": 1419393}}, {"model": "metainfo.source", "pk": 15328, "fields": {"orig_filename": "Grottger_Artur_1837_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419395}}, {"model": "metainfo.source", "pk": 15329, "fields": {"orig_filename": "Gruber-Gleichenberg_Franz_1886_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419488}}, {"model": "metainfo.source", "pk": 15330, "fields": {"orig_filename": "Gruber-Menninger_Ignaz_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84f.", "author": "", "orig_id": 1419489}}, {"model": "metainfo.source", "pk": 15331, "fields": {"orig_filename": "Gruber_Alois_1824_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419397}}, {"model": "metainfo.source", "pk": 15332, "fields": {"orig_filename": "Gruber_Augustin-Josef_1763_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419398}}, {"model": "metainfo.source", "pk": 15333, "fields": {"orig_filename": "Gruber_Dane_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419399}}, {"model": "metainfo.source", "pk": 15334, "fields": {"orig_filename": "Gruber_Franz-Xaver_1787_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80f.", "author": "", "orig_id": 1419401}}, {"model": "metainfo.source", "pk": 15335, "fields": {"orig_filename": "Gruber_Franz-Xaver_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419402}}, {"model": "metainfo.source", "pk": 15336, "fields": {"orig_filename": "Gruber_Franz-Xaver_1875_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419403}}, {"model": "metainfo.source", "pk": 15337, "fields": {"orig_filename": "Gruber_Franz_1837_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 80", "author": "", "orig_id": 1419400}}, {"model": "metainfo.source", "pk": 15338, "fields": {"orig_filename": "Gruber_Hans_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419404}}, {"model": "metainfo.source", "pk": 15339, "fields": {"orig_filename": "Gruber_Hans_1879_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81", "author": "", "orig_id": 1419405}}, {"model": "metainfo.source", "pk": 15340, "fields": {"orig_filename": "Gruber_Hermann_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 81f.", "author": "", "orig_id": 1419406}}, {"model": "metainfo.source", "pk": 15341, "fields": {"orig_filename": "Gruber_Ignaz_1803_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419407}}, {"model": "metainfo.source", "pk": 15342, "fields": {"orig_filename": "Gruber_Jakob_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419408}}, {"model": "metainfo.source", "pk": 15343, "fields": {"orig_filename": "Gruber_Josef_1827_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419409}}, {"model": "metainfo.source", "pk": 15344, "fields": {"orig_filename": "Gruber_Josef_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82", "author": "", "orig_id": 1419410}}, {"model": "metainfo.source", "pk": 15345, "fields": {"orig_filename": "Gruber_Josef_1865_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 82f.", "author": "", "orig_id": 1419411}}, {"model": "metainfo.source", "pk": 15346, "fields": {"orig_filename": "Gruber_Max_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419412}}, {"model": "metainfo.source", "pk": 15347, "fields": {"orig_filename": "Gruber_Oswald_1840_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419413}}, {"model": "metainfo.source", "pk": 15348, "fields": {"orig_filename": "Gruber_Peter_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 83", "author": "", "orig_id": 1419414}}, {"model": "metainfo.source", "pk": 15349, "fields": {"orig_filename": "Gruber_Rudolf_1864_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419415}}, {"model": "metainfo.source", "pk": 15350, "fields": {"orig_filename": "Gruber_Stanislaus_1867_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1419416}}, {"model": "metainfo.source", "pk": 15351, "fields": {"orig_filename": "Gruber_Wenzel_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 84", "author": "", "orig_id": 1421081}}, {"model": "metainfo.source", "pk": 15352, "fields": {"orig_filename": "Grube_August-Wilhelm_1816_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 79", "author": "", "orig_id": 1419396}}, {"model": "metainfo.source", "pk": 15353, "fields": {"orig_filename": "Grubhofer_Tony_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419490}}, {"model": "metainfo.source", "pk": 15354, "fields": {"orig_filename": "Gruby_David_1810_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419491}}, {"model": "metainfo.source", "pk": 15355, "fields": {"orig_filename": "Gruden_Igo_1893_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 85", "author": "", "orig_id": 1419492}}, {"model": "metainfo.source", "pk": 15356, "fields": {"orig_filename": "Gornik_Friedrich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418454}}, {"model": "metainfo.source", "pk": 15357, "fields": {"orig_filename": "Gorove_Stefan_1819_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418455}}, {"model": "metainfo.source", "pk": 15358, "fields": {"orig_filename": "Gorski_Anton_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33f.", "author": "", "orig_id": 1418456}}, {"model": "metainfo.source", "pk": 15359, "fields": {"orig_filename": "Gortani_Luigi_1850_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418457}}, {"model": "metainfo.source", "pk": 15360, "fields": {"orig_filename": "Gorup-Besanez_Eugen-Franz_1817_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418458}}, {"model": "metainfo.source", "pk": 15361, "fields": {"orig_filename": "Gorup-Besanez_Ferdinand-Johann_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418530}}, {"model": "metainfo.source", "pk": 15362, "fields": {"orig_filename": "Gorup-Slavinjski_Josip_1834_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34", "author": "", "orig_id": 1418531}}, {"model": "metainfo.source", "pk": 15363, "fields": {"orig_filename": "Gorzkowski-Gorzkow_Karl_1778_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418533}}, {"model": "metainfo.source", "pk": 15364, "fields": {"orig_filename": "Gorzkowski_Ludwik-Jedrzej_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 34f.", "author": "", "orig_id": 1418532}}, {"model": "metainfo.source", "pk": 15365, "fields": {"orig_filename": "Goslar_Julian-Maciej_1820_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418534}}, {"model": "metainfo.source", "pk": 15366, "fields": {"orig_filename": "Gossmann_Friederike_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418535}}, {"model": "metainfo.source", "pk": 15367, "fields": {"orig_filename": "Gostincar_Josip_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35", "author": "", "orig_id": 1418536}}, {"model": "metainfo.source", "pk": 15368, "fields": {"orig_filename": "Gostkowski_Roman_1837_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 35f.", "author": "", "orig_id": 1418537}}, {"model": "metainfo.source", "pk": 15369, "fields": {"orig_filename": "Goszczynski_Seweryn_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418538}}, {"model": "metainfo.source", "pk": 15370, "fields": {"orig_filename": "Gothard_Eugen_1857_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418539}}, {"model": "metainfo.source", "pk": 15371, "fields": {"orig_filename": "Gottdank_Josepha_1792_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418540}}, {"model": "metainfo.source", "pk": 15372, "fields": {"orig_filename": "Gotthilf-Miskolczy_Ernst_1865_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 36", "author": "", "orig_id": 1418541}}, {"model": "metainfo.source", "pk": 15373, "fields": {"orig_filename": "Gottlieb_Anna_1774_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418542}}, {"model": "metainfo.source", "pk": 15374, "fields": {"orig_filename": "Gottlieb_Johann_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418543}}, {"model": "metainfo.source", "pk": 15375, "fields": {"orig_filename": "Gottsleben_Ludwig_1836_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418544}}, {"model": "metainfo.source", "pk": 15376, "fields": {"orig_filename": "Govekar_Fran_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37", "author": "", "orig_id": 1418545}}, {"model": "metainfo.source", "pk": 15377, "fields": {"orig_filename": "Govekar_Minka_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 37f.", "author": "", "orig_id": 1418546}}, {"model": "metainfo.source", "pk": 15378, "fields": {"orig_filename": "Govrik_Gregor_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418547}}, {"model": "metainfo.source", "pk": 15379, "fields": {"orig_filename": "Graber_Hermann-Veit_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418548}}, {"model": "metainfo.source", "pk": 15380, "fields": {"orig_filename": "Graber_Vitus_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38", "author": "", "orig_id": 1418549}}, {"model": "metainfo.source", "pk": 15381, "fields": {"orig_filename": "Grabherr_Josef_1856_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 38f.", "author": "", "orig_id": 1418550}}, {"model": "metainfo.source", "pk": 15382, "fields": {"orig_filename": "Grabmann_Martin_1875_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39", "author": "", "orig_id": 1418551}}, {"model": "metainfo.source", "pk": 15383, "fields": {"orig_filename": "Grabmayr-Angerheim_Georg_1870_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39", "author": "", "orig_id": 1418552}}, {"model": "metainfo.source", "pk": 15384, "fields": {"orig_filename": "Grabmayr-Angerheim_Karl_1848_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 39f.", "author": "", "orig_id": 1418623}}, {"model": "metainfo.source", "pk": 15385, "fields": {"orig_filename": "Grabner_Leopold_1802_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40", "author": "", "orig_id": 1418624}}, {"model": "metainfo.source", "pk": 15386, "fields": {"orig_filename": "Grabowski_Ambrozy_1782_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40", "author": "", "orig_id": 1418625}}, {"model": "metainfo.source", "pk": 15387, "fields": {"orig_filename": "Grabowski_Lucjan-Kazimierz_1871_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 40f.", "author": "", "orig_id": 1418626}}, {"model": "metainfo.source", "pk": 15388, "fields": {"orig_filename": "Grabrijan_Jurij_1800_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41", "author": "", "orig_id": 1418627}}, {"model": "metainfo.source", "pk": 15389, "fields": {"orig_filename": "Grabski_Stanislaw_1871_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41", "author": "", "orig_id": 1418628}}, {"model": "metainfo.source", "pk": 15390, "fields": {"orig_filename": "Gradenigo_Giuseppe_1859_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 41f.", "author": "", "orig_id": 1418629}}, {"model": "metainfo.source", "pk": 15391, "fields": {"orig_filename": "Gradl_Heinrich_1842_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418630}}, {"model": "metainfo.source", "pk": 15392, "fields": {"orig_filename": "Graedener_Hermann_1844_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418631}}, {"model": "metainfo.source", "pk": 15393, "fields": {"orig_filename": "Graeffer_Franz_1785_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42f.", "author": "", "orig_id": 1418633}}, {"model": "metainfo.source", "pk": 15394, "fields": {"orig_filename": "Graeffe_Eduard_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 42", "author": "", "orig_id": 1418632}}, {"model": "metainfo.source", "pk": 15395, "fields": {"orig_filename": "Graener_Paul_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418634}}, {"model": "metainfo.source", "pk": 15396, "fields": {"orig_filename": "Graenzer_Josef_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418635}}, {"model": "metainfo.source", "pk": 15397, "fields": {"orig_filename": "Graf-Gaderthurn_Friedrich_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418643}}, {"model": "metainfo.source", "pk": 15398, "fields": {"orig_filename": "Grafenauer_Franc_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45f.", "author": "", "orig_id": 1418646}}, {"model": "metainfo.source", "pk": 15399, "fields": {"orig_filename": "Grafe_Felix_1888_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418644}}, {"model": "metainfo.source", "pk": 15400, "fields": {"orig_filename": "Grafe_Viktor_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418645}}, {"model": "metainfo.source", "pk": 15401, "fields": {"orig_filename": "Graff-Pancsova_Ludwig_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418715}}, {"model": "metainfo.source", "pk": 15402, "fields": {"orig_filename": "Graff_Kasimir-Romuald_1878_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418714}}, {"model": "metainfo.source", "pk": 15403, "fields": {"orig_filename": "Graf_Alexander_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418636}}, {"model": "metainfo.source", "pk": 15404, "fields": {"orig_filename": "Graf_Antonie_1845_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43", "author": "", "orig_id": 1418637}}, {"model": "metainfo.source", "pk": 15405, "fields": {"orig_filename": "Graf_Ferdinand_1907_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1434635}}, {"model": "metainfo.source", "pk": 15406, "fields": {"orig_filename": "Graf_Franz_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 43f.", "author": "", "orig_id": 1418638}}, {"model": "metainfo.source", "pk": 15407, "fields": {"orig_filename": "Graf_Josef_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44", "author": "", "orig_id": 1418639}}, {"model": "metainfo.source", "pk": 15408, "fields": {"orig_filename": "Graf_Ludwig-Ferdinand_1868_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44", "author": "", "orig_id": 1418640}}, {"model": "metainfo.source", "pk": 15409, "fields": {"orig_filename": "Graf_Rainer_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 44f.", "author": "", "orig_id": 1418641}}, {"model": "metainfo.source", "pk": 15410, "fields": {"orig_filename": "Graf_Siegmund_1801_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 45", "author": "", "orig_id": 1418642}}, {"model": "metainfo.source", "pk": 15411, "fields": {"orig_filename": "Grahor_Janko_1827_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46", "author": "", "orig_id": 1418716}}, {"model": "metainfo.source", "pk": 15412, "fields": {"orig_filename": "Grailich_Josef_1829_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 46f.", "author": "", "orig_id": 1418717}}, {"model": "metainfo.source", "pk": 15413, "fields": {"orig_filename": "Grandauer_Josef_1822_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418718}}, {"model": "metainfo.source", "pk": 15414, "fields": {"orig_filename": "Granichstaedten-Czerva_Otto_1841_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418720}}, {"model": "metainfo.source", "pk": 15415, "fields": {"orig_filename": "Granichstaedten_Bruno-Bernhard_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418719}}, {"model": "metainfo.source", "pk": 15416, "fields": {"orig_filename": "Granitsch_Georg_1833_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47", "author": "", "orig_id": 1418721}}, {"model": "metainfo.source", "pk": 15417, "fields": {"orig_filename": "Grasberger_Hans_1836_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418723}}, {"model": "metainfo.source", "pk": 15418, "fields": {"orig_filename": "Grasboeck_Theobald_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418724}}, {"model": "metainfo.source", "pk": 15419, "fields": {"orig_filename": "Graser_Karl_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418725}}, {"model": "metainfo.source", "pk": 15420, "fields": {"orig_filename": "Grassauer_Ferdinand_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418735}}, {"model": "metainfo.source", "pk": 15421, "fields": {"orig_filename": "Grasselli_Peter_1841_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418736}}, {"model": "metainfo.source", "pk": 15422, "fields": {"orig_filename": "Grassini_Giuseppina_1773_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418737}}, {"model": "metainfo.source", "pk": 15423, "fields": {"orig_filename": "Grassl-Rechten_Ignaz_1795_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49", "author": "", "orig_id": 1418738}}, {"model": "metainfo.source", "pk": 15424, "fields": {"orig_filename": "Grass_Franz-Xaver_1758_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 48", "author": "", "orig_id": 1418734}}, {"model": "metainfo.source", "pk": 15425, "fields": {"orig_filename": "Gras_Otto_1864_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 47f.", "author": "", "orig_id": 1418722}}, {"model": "metainfo.source", "pk": 15426, "fields": {"orig_filename": "Grauert_Wilhelm-Heinrich_1804_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50", "author": "", "orig_id": 1418804}}, {"model": "metainfo.source", "pk": 15427, "fields": {"orig_filename": "Grauer_Rudolf_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50", "author": "", "orig_id": 1418803}}, {"model": "metainfo.source", "pk": 15428, "fields": {"orig_filename": "Graus_Johann_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 50f.", "author": "", "orig_id": 1418805}}, {"model": "metainfo.source", "pk": 15429, "fields": {"orig_filename": "Grau_August_1863_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 49f.", "author": "", "orig_id": 1418739}}, {"model": "metainfo.source", "pk": 15430, "fields": {"orig_filename": "Grebmer-Wolfsthurn_Eduard_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 51", "author": "", "orig_id": 1418807}}, {"model": "metainfo.source", "pk": 15431, "fields": {"orig_filename": "Gredler_Andreas_1802_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 51f.", "author": "", "orig_id": 1418809}}, {"model": "metainfo.source", "pk": 15432, "fields": {"orig_filename": "Gredler_Ludwig_1831_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52", "author": "", "orig_id": 1418811}}, {"model": "metainfo.source", "pk": 15433, "fields": {"orig_filename": "Gredler_Vinzenz-Maria_1823_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52", "author": "", "orig_id": 1418813}}, {"model": "metainfo.source", "pk": 15434, "fields": {"orig_filename": "Grefe_Conrad_1823_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 52f.", "author": "", "orig_id": 1418814}}, {"model": "metainfo.source", "pk": 15435, "fields": {"orig_filename": "Gregorcic_Anton_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418818}}, {"model": "metainfo.source", "pk": 15436, "fields": {"orig_filename": "Gregorcic_Simon_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418819}}, {"model": "metainfo.source", "pk": 15437, "fields": {"orig_filename": "Gregorig_Josef_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418821}}, {"model": "metainfo.source", "pk": 15438, "fields": {"orig_filename": "Gregorin_Gustav_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418822}}, {"model": "metainfo.source", "pk": 15439, "fields": {"orig_filename": "Gregoritsch_Anton_1868_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418823}}, {"model": "metainfo.source", "pk": 15440, "fields": {"orig_filename": "Gregori_Ferdinand_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53f.", "author": "", "orig_id": 1418820}}, {"model": "metainfo.source", "pk": 15441, "fields": {"orig_filename": "Gregor_Hans_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418815}}, {"model": "metainfo.source", "pk": 15442, "fields": {"orig_filename": "Gregor_Nora_1901_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 53", "author": "", "orig_id": 1418816}}, {"model": "metainfo.source", "pk": 15443, "fields": {"orig_filename": "Gregr_Eduard_1827_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54", "author": "", "orig_id": 1418892}}, {"model": "metainfo.source", "pk": 15444, "fields": {"orig_filename": "Gregr_Julius_1831_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 54f.", "author": "", "orig_id": 1418894}}, {"model": "metainfo.source", "pk": 15445, "fields": {"orig_filename": "Greguss_Agost_1825_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418895}}, {"model": "metainfo.source", "pk": 15446, "fields": {"orig_filename": "Greiderer_Sebastian_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418897}}, {"model": "metainfo.source", "pk": 15447, "fields": {"orig_filename": "Greil_Alois_1841_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55", "author": "", "orig_id": 1418898}}, {"model": "metainfo.source", "pk": 15448, "fields": {"orig_filename": "Greil_Johann-Nep_1845_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 55f.", "author": "", "orig_id": 1418899}}, {"model": "metainfo.source", "pk": 15449, "fields": {"orig_filename": "Greil_Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418901}}, {"model": "metainfo.source", "pk": 15450, "fields": {"orig_filename": "Greiner_Leo_1876_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418902}}, {"model": "metainfo.source", "pk": 15451, "fields": {"orig_filename": "Greinwald_Thomas_1821_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418903}}, {"model": "metainfo.source", "pk": 15452, "fields": {"orig_filename": "Greinz_Christian_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56", "author": "", "orig_id": 1418904}}, {"model": "metainfo.source", "pk": 15453, "fields": {"orig_filename": "Greinz_Hugo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 56f.", "author": "", "orig_id": 1418906}}, {"model": "metainfo.source", "pk": 15454, "fields": {"orig_filename": "Greinz_Rudolf-Heinrich_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57", "author": "", "orig_id": 1418907}}, {"model": "metainfo.source", "pk": 15455, "fields": {"orig_filename": "Greipl_Rudolf_1901_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57", "author": "", "orig_id": 1418908}}, {"model": "metainfo.source", "pk": 15456, "fields": {"orig_filename": "Greisinger_Gustav-Adolf_1793_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 57f.", "author": "", "orig_id": 1418909}}, {"model": "metainfo.source", "pk": 15457, "fields": {"orig_filename": "Gremblich_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418910}}, {"model": "metainfo.source", "pk": 15458, "fields": {"orig_filename": "Grengg_Karl_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418911}}, {"model": "metainfo.source", "pk": 15459, "fields": {"orig_filename": "Grenser_Alfred_1838_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 58", "author": "", "orig_id": 1418912}}, {"model": "metainfo.source", "pk": 15460, "fields": {"orig_filename": "Glatz_Jakob_1776_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419478}}, {"model": "metainfo.source", "pk": 15461, "fields": {"orig_filename": "Glatz_Sebastian_1837_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419479}}, {"model": "metainfo.source", "pk": 15462, "fields": {"orig_filename": "Glawatsch_Franz_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419480}}, {"model": "metainfo.source", "pk": 15463, "fields": {"orig_filename": "Glax_Heinrich_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5", "author": "", "orig_id": 1419481}}, {"model": "metainfo.source", "pk": 15464, "fields": {"orig_filename": "Glax_Julius_1846_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 5f.", "author": "", "orig_id": 1419482}}, {"model": "metainfo.source", "pk": 15465, "fields": {"orig_filename": "Gleich_Josef-Alois_1772_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6", "author": "", "orig_id": 1419483}}, {"model": "metainfo.source", "pk": 15466, "fields": {"orig_filename": "Gleispach_Johann-Nepomuk_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6", "author": "", "orig_id": 1419484}}, {"model": "metainfo.source", "pk": 15467, "fields": {"orig_filename": "Gleispach_Karl-Josef_1811_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 6f.", "author": "", "orig_id": 1419485}}, {"model": "metainfo.source", "pk": 15468, "fields": {"orig_filename": "Gleispach_Wenzeslaus_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 7f.", "author": "", "orig_id": 1419486}}, {"model": "metainfo.source", "pk": 15469, "fields": {"orig_filename": "Gliber_Jakob_1825_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419487}}, {"model": "metainfo.source", "pk": 15470, "fields": {"orig_filename": "Glickh_Rudolf_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419557}}, {"model": "metainfo.source", "pk": 15471, "fields": {"orig_filename": "Gloeckel_Leopoldine_1871_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8", "author": "", "orig_id": 1419558}}, {"model": "metainfo.source", "pk": 15472, "fields": {"orig_filename": "Gloeckel_Otto_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 8f.", "author": "", "orig_id": 1419559}}, {"model": "metainfo.source", "pk": 15473, "fields": {"orig_filename": "Gloeckner_Berta_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 9", "author": "", "orig_id": 1419560}}, {"model": "metainfo.source", "pk": 15474, "fields": {"orig_filename": "Gloeggl_Franz-Xaver_1764_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 9f.", "author": "", "orig_id": 1419561}}, {"model": "metainfo.source", "pk": 15475, "fields": {"orig_filename": "Glonar_Joza_1885_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419562}}, {"model": "metainfo.source", "pk": 15476, "fields": {"orig_filename": "Glondys_Viktor_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419564}}, {"model": "metainfo.source", "pk": 15477, "fields": {"orig_filename": "Gloning_Kajetan-Alois_1836_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419565}}, {"model": "metainfo.source", "pk": 15478, "fields": {"orig_filename": "Gloria_Andrea_1821_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10", "author": "", "orig_id": 1419566}}, {"model": "metainfo.source", "pk": 15479, "fields": {"orig_filename": "Glossy_Karl_1848_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419568}}, {"model": "metainfo.source", "pk": 15480, "fields": {"orig_filename": "Gloss_Ludwig_1851_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 10f.", "author": "", "orig_id": 1419567}}, {"model": "metainfo.source", "pk": 15481, "fields": {"orig_filename": "Glowacki_Julius_1846_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419569}}, {"model": "metainfo.source", "pk": 15482, "fields": {"orig_filename": "Glowacki_Sylvia_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11", "author": "", "orig_id": 1419571}}, {"model": "metainfo.source", "pk": 15483, "fields": {"orig_filename": "Glueckselig_Gustav-Thormod_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12", "author": "", "orig_id": 1419574}}, {"model": "metainfo.source", "pk": 15484, "fields": {"orig_filename": "Gluecksmann_Heinrich_1864_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12f.", "author": "", "orig_id": 1419575}}, {"model": "metainfo.source", "pk": 15485, "fields": {"orig_filename": "Glueck_Babette-Elisabeth_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 11f.", "author": "", "orig_id": 1419572}}, {"model": "metainfo.source", "pk": 15486, "fields": {"orig_filename": "Glueck_Heinrich_1889_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 12", "author": "", "orig_id": 1419573}}, {"model": "metainfo.source", "pk": 15487, "fields": {"orig_filename": "Gmeiner_Franz-X_1752_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1418173}}, {"model": "metainfo.source", "pk": 15488, "fields": {"orig_filename": "Gmeiner_Josef-Anton_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1421076}}, {"model": "metainfo.source", "pk": 15489, "fields": {"orig_filename": "Gnad_Ernst_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13", "author": "", "orig_id": 1418182}}, {"model": "metainfo.source", "pk": 15490, "fields": {"orig_filename": "Gnirs_Anton_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 13f.", "author": "", "orig_id": 1418183}}, {"model": "metainfo.source", "pk": 15491, "fields": {"orig_filename": "Godai_Anton_1863_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418184}}, {"model": "metainfo.source", "pk": 15492, "fields": {"orig_filename": "Godebski_Franciszek-Ksawery_1801_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418185}}, {"model": "metainfo.source", "pk": 15493, "fields": {"orig_filename": "Godeffroy_Richard_1847_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 14", "author": "", "orig_id": 1418186}}, {"model": "metainfo.source", "pk": 15494, "fields": {"orig_filename": "Godina_Josip-Verdelski_1808_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418187}}, {"model": "metainfo.source", "pk": 15495, "fields": {"orig_filename": "Godlewski_Emil_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418188}}, {"model": "metainfo.source", "pk": 15496, "fields": {"orig_filename": "Godlewski_Karl_1862_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418189}}, {"model": "metainfo.source", "pk": 15497, "fields": {"orig_filename": "Godlewski_Tadeusz_1878_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418190}}, {"model": "metainfo.source", "pk": 15498, "fields": {"orig_filename": "Goebel_Carl_1824_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15", "author": "", "orig_id": 1418191}}, {"model": "metainfo.source", "pk": 15499, "fields": {"orig_filename": "Goelis_Leopold-Anton_1764_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 15f.", "author": "", "orig_id": 1418256}}, {"model": "metainfo.source", "pk": 15500, "fields": {"orig_filename": "Goellerich_August_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 16", "author": "", "orig_id": 1418257}}, {"model": "metainfo.source", "pk": 15501, "fields": {"orig_filename": "Goelsdorf_Karl_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 16f.", "author": "", "orig_id": 1418258}}, {"model": "metainfo.source", "pk": 15502, "fields": {"orig_filename": "Goelsdorf_Louis-Adolf_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418259}}, {"model": "metainfo.source", "pk": 15503, "fields": {"orig_filename": "Goepfert_Eduard_1836_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418260}}, {"model": "metainfo.source", "pk": 15504, "fields": {"orig_filename": "Goergey-Goergoe-Toporcz_Arthur_1818_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17", "author": "", "orig_id": 1418261}}, {"model": "metainfo.source", "pk": 15505, "fields": {"orig_filename": "Goerner_Karl_1858_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 17f.", "author": "", "orig_id": 1418262}}, {"model": "metainfo.source", "pk": 15506, "fields": {"orig_filename": "Goess_Anton_1816_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18", "author": "", "orig_id": 1418263}}, {"model": "metainfo.source", "pk": 15507, "fields": {"orig_filename": "Goess_Leopold_1848_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18", "author": "", "orig_id": 1421077}}, {"model": "metainfo.source", "pk": 15508, "fields": {"orig_filename": "Goess_Peter_1774_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 18f.", "author": "", "orig_id": 1418264}}, {"model": "metainfo.source", "pk": 15509, "fields": {"orig_filename": "Goess_Zeno-Vinzenz_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19", "author": "", "orig_id": 1418265}}, {"model": "metainfo.source", "pk": 15510, "fields": {"orig_filename": "Goestl_Fran_1865_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2192062}}, {"model": "metainfo.source", "pk": 15511, "fields": {"orig_filename": "Goethe_Hermann_1837_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19f.", "author": "", "orig_id": 1418267}}, {"model": "metainfo.source", "pk": 15512, "fields": {"orig_filename": "Goeth_Georg_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 19", "author": "", "orig_id": 1418266}}, {"model": "metainfo.source", "pk": 15513, "fields": {"orig_filename": "Goetz_Josef_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418269}}, {"model": "metainfo.source", "pk": 15514, "fields": {"orig_filename": "Goglia-Zlota-Lipa_Ferdinand_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418270}}, {"model": "metainfo.source", "pk": 15515, "fields": {"orig_filename": "Gohren_Karl-Theodor_1836_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20", "author": "", "orig_id": 1418271}}, {"model": "metainfo.source", "pk": 15516, "fields": {"orig_filename": "Goiginger_Ludwig_1863_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 20f.", "author": "", "orig_id": 1418272}}, {"model": "metainfo.source", "pk": 15517, "fields": {"orig_filename": "Golant_Nathan_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418273}}, {"model": "metainfo.source", "pk": 15518, "fields": {"orig_filename": "Goldbach-Sulittaborn_Anton_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418275}}, {"model": "metainfo.source", "pk": 15519, "fields": {"orig_filename": "Goldbacher_Alois_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418276}}, {"model": "metainfo.source", "pk": 15520, "fields": {"orig_filename": "Goldbacher_Gregor_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21f.", "author": "", "orig_id": 1418277}}, {"model": "metainfo.source", "pk": 15521, "fields": {"orig_filename": "Goldbaum_Wilhelm_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418278}}, {"model": "metainfo.source", "pk": 15522, "fields": {"orig_filename": "Goldberger_Richard_1875_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418279}}, {"model": "metainfo.source", "pk": 15523, "fields": {"orig_filename": "Goldegg_Hugo_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418345}}, {"model": "metainfo.source", "pk": 15524, "fields": {"orig_filename": "Goldemund_Heinrich_1863_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22", "author": "", "orig_id": 1418346}}, {"model": "metainfo.source", "pk": 15525, "fields": {"orig_filename": "Goldenthal_Jakob_1815_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 22f.", "author": "", "orig_id": 1418347}}, {"model": "metainfo.source", "pk": 15526, "fields": {"orig_filename": "Goldhann_Ludwig_1823_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23", "author": "", "orig_id": 1418349}}, {"model": "metainfo.source", "pk": 15527, "fields": {"orig_filename": "Goldmann_Arthur_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418352}}, {"model": "metainfo.source", "pk": 15528, "fields": {"orig_filename": "Goldmann_Emil_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418353}}, {"model": "metainfo.source", "pk": 15529, "fields": {"orig_filename": "Goldmann_Paul_1865_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24f.", "author": "", "orig_id": 1418354}}, {"model": "metainfo.source", "pk": 15530, "fields": {"orig_filename": "Goldman_Bernard_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 24", "author": "", "orig_id": 1418351}}, {"model": "metainfo.source", "pk": 15531, "fields": {"orig_filename": "Goldman_Salome_1870_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 23f.", "author": "", "orig_id": 1418350}}, {"model": "metainfo.source", "pk": 15532, "fields": {"orig_filename": "Goldmark_Karl_1830_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418355}}, {"model": "metainfo.source", "pk": 15533, "fields": {"orig_filename": "Goldscheider_Adalbert_1848_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418357}}, {"model": "metainfo.source", "pk": 15534, "fields": {"orig_filename": "Goldscheid_Rudolf_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25", "author": "", "orig_id": 1418356}}, {"model": "metainfo.source", "pk": 15535, "fields": {"orig_filename": "Goldschmidt_Adalbert_1848_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 25f.", "author": "", "orig_id": 1418358}}, {"model": "metainfo.source", "pk": 15536, "fields": {"orig_filename": "Goldschmidt_Heinrich-Jacob_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418359}}, {"model": "metainfo.source", "pk": 15537, "fields": {"orig_filename": "Goldschmidt_Hermann_1841_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418360}}, {"model": "metainfo.source", "pk": 15538, "fields": {"orig_filename": "Goldschmidt_Waldemar_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147103}}, {"model": "metainfo.source", "pk": 15539, "fields": {"orig_filename": "Goldschmiedt_Guido_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26", "author": "", "orig_id": 1418361}}, {"model": "metainfo.source", "pk": 15540, "fields": {"orig_filename": "Goldzieher_Ignaz_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 26f.", "author": "", "orig_id": 1418362}}, {"model": "metainfo.source", "pk": 15541, "fields": {"orig_filename": "Goldzieher_Vilmos_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 27", "author": "", "orig_id": 1418363}}, {"model": "metainfo.source", "pk": 15542, "fields": {"orig_filename": "Gold_Josef_1840_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 21", "author": "", "orig_id": 1418274}}, {"model": "metainfo.source", "pk": 15543, "fields": {"orig_filename": "Goller_Franz-Wenzel_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418436}}, {"model": "metainfo.source", "pk": 15544, "fields": {"orig_filename": "Gollner-Goldnenfels_Alois_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418437}}, {"model": "metainfo.source", "pk": 15545, "fields": {"orig_filename": "Gollob_Heinrich_1886_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418438}}, {"model": "metainfo.source", "pk": 15546, "fields": {"orig_filename": "Goll_Ernst_1887_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 27", "author": "", "orig_id": 1421078}}, {"model": "metainfo.source", "pk": 15547, "fields": {"orig_filename": "Goll_Jaroslav_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1418364}}, {"model": "metainfo.source", "pk": 15548, "fields": {"orig_filename": "Goll_Josef_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28", "author": "", "orig_id": 1418365}}, {"model": "metainfo.source", "pk": 15549, "fields": {"orig_filename": "Goltsch_Franz_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 28f.", "author": "", "orig_id": 1418440}}, {"model": "metainfo.source", "pk": 15550, "fields": {"orig_filename": "Goltz_Alexander-Demetrius_1857_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 29", "author": "", "orig_id": 1418441}}, {"model": "metainfo.source", "pk": 15551, "fields": {"orig_filename": "Goluchowski_Agenor-Maria-Adam_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 29f.", "author": "", "orig_id": 1418442}}, {"model": "metainfo.source", "pk": 15552, "fields": {"orig_filename": "Goluchowski_Agenor-Romuald-Onufr_1812_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 30", "author": "", "orig_id": 1418443}}, {"model": "metainfo.source", "pk": 15553, "fields": {"orig_filename": "Gomperz_Heinrich_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 30f.", "author": "", "orig_id": 1418444}}, {"model": "metainfo.source", "pk": 15554, "fields": {"orig_filename": "Gomperz_Julius_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31", "author": "", "orig_id": 1418445}}, {"model": "metainfo.source", "pk": 15555, "fields": {"orig_filename": "Gomperz_Max_1822_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31", "author": "", "orig_id": 1418446}}, {"model": "metainfo.source", "pk": 15556, "fields": {"orig_filename": "Gomperz_Theodor_1832_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 31f.", "author": "", "orig_id": 1418447}}, {"model": "metainfo.source", "pk": 15557, "fields": {"orig_filename": "Gondrecourt_Leopold_1816_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418448}}, {"model": "metainfo.source", "pk": 15558, "fields": {"orig_filename": "Gooss_Karl_1814_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418449}}, {"model": "metainfo.source", "pk": 15559, "fields": {"orig_filename": "Gooss_Karl_1844_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418450}}, {"model": "metainfo.source", "pk": 15560, "fields": {"orig_filename": "Gopcevic_Spiridon_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32", "author": "", "orig_id": 1418451}}, {"model": "metainfo.source", "pk": 15561, "fields": {"orig_filename": "Gordon_Marie_1812_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 32f.", "author": "", "orig_id": 1418452}}, {"model": "metainfo.source", "pk": 15562, "fields": {"orig_filename": "Gorjanovic-Kramberger_Dragutin_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 33", "author": "", "orig_id": 1418453}}, {"model": "metainfo.source", "pk": 15563, "fields": {"orig_filename": "Geringer_Philipp_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421761}}, {"model": "metainfo.source", "pk": 15564, "fields": {"orig_filename": "Gerisch_Eduard_1853_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421763}}, {"model": "metainfo.source", "pk": 15565, "fields": {"orig_filename": "Gerle_Wilhelm-Adolf_1783_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426f.", "author": "", "orig_id": 1421768}}, {"model": "metainfo.source", "pk": 15566, "fields": {"orig_filename": "Gerl_Franz_1764_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421764}}, {"model": "metainfo.source", "pk": 15567, "fields": {"orig_filename": "Gerl_Gustav_1841_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421765}}, {"model": "metainfo.source", "pk": 15568, "fields": {"orig_filename": "Gerl_Peter_1796_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421766}}, {"model": "metainfo.source", "pk": 15569, "fields": {"orig_filename": "German_Ludomir_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421842}}, {"model": "metainfo.source", "pk": 15570, "fields": {"orig_filename": "Germela_Raimund_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421843}}, {"model": "metainfo.source", "pk": 15571, "fields": {"orig_filename": "Germonik_Ludwig_1823_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421844}}, {"model": "metainfo.source", "pk": 15572, "fields": {"orig_filename": "Gernerth_Emmerich_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427", "author": "", "orig_id": 1421845}}, {"model": "metainfo.source", "pk": 15573, "fields": {"orig_filename": "Gerold_Carl_1783_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 427f.", "author": "", "orig_id": 1421846}}, {"model": "metainfo.source", "pk": 15574, "fields": {"orig_filename": "Gerold_Moriz_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428", "author": "", "orig_id": 1421847}}, {"model": "metainfo.source", "pk": 15575, "fields": {"orig_filename": "Gerold_Rosa_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428", "author": "", "orig_id": 1421848}}, {"model": "metainfo.source", "pk": 15576, "fields": {"orig_filename": "Gerstaecker-Simplon_Wenzel_1786_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421850}}, {"model": "metainfo.source", "pk": 15577, "fields": {"orig_filename": "Gerstel-Ucken_Gustav_1839_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421851}}, {"model": "metainfo.source", "pk": 15578, "fields": {"orig_filename": "Gerster-Gardini_Etelka_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421854}}, {"model": "metainfo.source", "pk": 15579, "fields": {"orig_filename": "Gerster_Gerold_1865_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421852}}, {"model": "metainfo.source", "pk": 15580, "fields": {"orig_filename": "Gerster_Thomas_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429", "author": "", "orig_id": 1421853}}, {"model": "metainfo.source", "pk": 15581, "fields": {"orig_filename": "Gerstl_Richard_1883_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 429f.", "author": "", "orig_id": 1421855}}, {"model": "metainfo.source", "pk": 15582, "fields": {"orig_filename": "Gerstmeyer_Josef_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421856}}, {"model": "metainfo.source", "pk": 15583, "fields": {"orig_filename": "Gerstner_Anton_1823_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421857}}, {"model": "metainfo.source", "pk": 15584, "fields": {"orig_filename": "Gerstner_Franz-Anton_1796_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421859}}, {"model": "metainfo.source", "pk": 15585, "fields": {"orig_filename": "Gerstner_Franz-Joseph_1756_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430f.", "author": "", "orig_id": 1421860}}, {"model": "metainfo.source", "pk": 15586, "fields": {"orig_filename": "Gerstner_Franz_1857_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 430", "author": "", "orig_id": 1421858}}, {"model": "metainfo.source", "pk": 15587, "fields": {"orig_filename": "Gerstner_Hans_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421861}}, {"model": "metainfo.source", "pk": 15588, "fields": {"orig_filename": "Gerst_Johann_1850_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 428f.", "author": "", "orig_id": 1421849}}, {"model": "metainfo.source", "pk": 15589, "fields": {"orig_filename": "Gersuny_Robert_1844_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421862}}, {"model": "metainfo.source", "pk": 15590, "fields": {"orig_filename": "Gesselbauer_Otto_1852_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 431", "author": "", "orig_id": 1421863}}, {"model": "metainfo.source", "pk": 15591, "fields": {"orig_filename": "Gessmann_Albert_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421864}}, {"model": "metainfo.source", "pk": 15592, "fields": {"orig_filename": "Gessner_Hubert_1871_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421865}}, {"model": "metainfo.source", "pk": 15593, "fields": {"orig_filename": "Gestrin_Franc_1865_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432", "author": "", "orig_id": 1421938}}, {"model": "metainfo.source", "pk": 15594, "fields": {"orig_filename": "Getzner_Christian_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 432f.", "author": "", "orig_id": 1421939}}, {"model": "metainfo.source", "pk": 15595, "fields": {"orig_filename": "Gevay_Anton_1796_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421940}}, {"model": "metainfo.source", "pk": 15596, "fields": {"orig_filename": "Gewey_Franz-Xaver-Karl_1764_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421941}}, {"model": "metainfo.source", "pk": 15597, "fields": {"orig_filename": "Geyer_August-Johann_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433", "author": "", "orig_id": 1421942}}, {"model": "metainfo.source", "pk": 15598, "fields": {"orig_filename": "Geyer_Eberhard_1899_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 433f.", "author": "", "orig_id": 1421943}}, {"model": "metainfo.source", "pk": 15599, "fields": {"orig_filename": "Geyer_Georg_1857_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 434", "author": "", "orig_id": 1421944}}, {"model": "metainfo.source", "pk": 15600, "fields": {"orig_filename": "Geyer_Rudolf_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 434f.", "author": "", "orig_id": 1421945}}, {"model": "metainfo.source", "pk": 15601, "fields": {"orig_filename": "Geyling_Carl_1814_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421946}}, {"model": "metainfo.source", "pk": 15602, "fields": {"orig_filename": "Geyling_Josef_1799_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421947}}, {"model": "metainfo.source", "pk": 15603, "fields": {"orig_filename": "Geyling_Margarete_1882_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421948}}, {"model": "metainfo.source", "pk": 15604, "fields": {"orig_filename": "Geyling_Rudolf_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435", "author": "", "orig_id": 1421949}}, {"model": "metainfo.source", "pk": 15605, "fields": {"orig_filename": "Geymueller_Heinrich_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 435f.", "author": "", "orig_id": 1421950}}, {"model": "metainfo.source", "pk": 15606, "fields": {"orig_filename": "Geymueller_Johann-Heinrich_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421951}}, {"model": "metainfo.source", "pk": 15607, "fields": {"orig_filename": "Gfoellner_Hans_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421952}}, {"model": "metainfo.source", "pk": 15608, "fields": {"orig_filename": "Gfoellner_Johannes-Maria_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436", "author": "", "orig_id": 1421953}}, {"model": "metainfo.source", "pk": 15609, "fields": {"orig_filename": "Ghega_Karl_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 436f.", "author": "", "orig_id": 1421954}}, {"model": "metainfo.source", "pk": 15610, "fields": {"orig_filename": "Gheri_Max_1847_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437", "author": "", "orig_id": 1421955}}, {"model": "metainfo.source", "pk": 15611, "fields": {"orig_filename": "Ghon_Anton_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437", "author": "", "orig_id": 1421956}}, {"model": "metainfo.source", "pk": 15612, "fields": {"orig_filename": "Ghon_Carl_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 437f.", "author": "", "orig_id": 1421957}}, {"model": "metainfo.source", "pk": 15613, "fields": {"orig_filename": "Ghyczy_Koloman_1808_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1420117}}, {"model": "metainfo.source", "pk": 15614, "fields": {"orig_filename": "Ghyczy_Paul_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421958}}, {"model": "metainfo.source", "pk": 15615, "fields": {"orig_filename": "Giacomini_Giacomo-Andrea_1796_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421959}}, {"model": "metainfo.source", "pk": 15616, "fields": {"orig_filename": "Giamgy_Philipp_1819_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438", "author": "", "orig_id": 1421960}}, {"model": "metainfo.source", "pk": 15617, "fields": {"orig_filename": "Gierach_Erich-Clemens_1881_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 438f.", "author": "", "orig_id": 1421961}}, {"model": "metainfo.source", "pk": 15618, "fields": {"orig_filename": "Giesl-Gieslingen_Wladimir_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 439", "author": "", "orig_id": 1421962}}, {"model": "metainfo.source", "pk": 15619, "fields": {"orig_filename": "Giesswein_Alexander_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 439f.", "author": "", "orig_id": 1422031}}, {"model": "metainfo.source", "pk": 15620, "fields": {"orig_filename": "Gigola_Giovanni-Battista_1769_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422032}}, {"model": "metainfo.source", "pk": 15621, "fields": {"orig_filename": "Gilewski_Karol_1832_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422033}}, {"model": "metainfo.source", "pk": 15622, "fields": {"orig_filename": "Giller_Agaton_1831_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440", "author": "", "orig_id": 1422034}}, {"model": "metainfo.source", "pk": 15623, "fields": {"orig_filename": "Gillmayr_Karl_1888_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 440f.", "author": "", "orig_id": 1422035}}, {"model": "metainfo.source", "pk": 15624, "fields": {"orig_filename": "Gilm-Rosenegg_Hermann_1812_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 441", "author": "", "orig_id": 1422036}}, {"model": "metainfo.source", "pk": 15625, "fields": {"orig_filename": "Gindely_Anton_1829_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 441f.", "author": "", "orig_id": 1422037}}, {"model": "metainfo.source", "pk": 15626, "fields": {"orig_filename": "Giner_Johann_1756_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422038}}, {"model": "metainfo.source", "pk": 15627, "fields": {"orig_filename": "Ginovszky_Josef_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422039}}, {"model": "metainfo.source", "pk": 15628, "fields": {"orig_filename": "Gintl_Heinrich-Eduard_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442", "author": "", "orig_id": 1422040}}, {"model": "metainfo.source", "pk": 15629, "fields": {"orig_filename": "Gintl_Julius-Wilhelm_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 443f.", "author": "", "orig_id": 1422043}}, {"model": "metainfo.source", "pk": 15630, "fields": {"orig_filename": "Gintl_Wilhelm-Friedrich_1843_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 442f.", "author": "", "orig_id": 1422041}}, {"model": "metainfo.source", "pk": 15631, "fields": {"orig_filename": "Gintl_Wilhelm-Heinrich_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 443", "author": "", "orig_id": 1422042}}, {"model": "metainfo.source", "pk": 15632, "fields": {"orig_filename": "Ginzberger_August_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422044}}, {"model": "metainfo.source", "pk": 15633, "fields": {"orig_filename": "Ginzel_Friedrich-Karl_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422047}}, {"model": "metainfo.source", "pk": 15634, "fields": {"orig_filename": "Ginzel_Hubert_1874_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422045}}, {"model": "metainfo.source", "pk": 15635, "fields": {"orig_filename": "Ginzel_Jakob_1792_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422046}}, {"model": "metainfo.source", "pk": 15636, "fields": {"orig_filename": "Ginzkey_Ignaz_1818_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 444", "author": "", "orig_id": 1422048}}, {"model": "metainfo.source", "pk": 15637, "fields": {"orig_filename": "Gioia_Melchiorre_1767_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422049}}, {"model": "metainfo.source", "pk": 15638, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Gottfried_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422051}}, {"model": "metainfo.source", "pk": 15639, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Ignaz_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445f.", "author": "", "orig_id": 1422052}}, {"model": "metainfo.source", "pk": 15640, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Joseph_1784_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422053}}, {"model": "metainfo.source", "pk": 15641, "fields": {"orig_filename": "Giovanelli-Gerstburg-Hoertenberg_Karl_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422054}}, {"model": "metainfo.source", "pk": 15642, "fields": {"orig_filename": "Giovanelli-Gerstburg_Benedikt_1775_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 445", "author": "", "orig_id": 1422050}}, {"model": "metainfo.source", "pk": 15643, "fields": {"orig_filename": "Girardi_Alexander_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446", "author": "", "orig_id": 1422123}}, {"model": "metainfo.source", "pk": 15644, "fields": {"orig_filename": "Giskra_Karl_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 446f.", "author": "", "orig_id": 1422125}}, {"model": "metainfo.source", "pk": 15645, "fields": {"orig_filename": "Gissendorf_Karl_1825_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422126}}, {"model": "metainfo.source", "pk": 15646, "fields": {"orig_filename": "Gitlbauer_Michael_1847_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422127}}, {"model": "metainfo.source", "pk": 15647, "fields": {"orig_filename": "Gitschthaler_Anton_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447", "author": "", "orig_id": 1422128}}, {"model": "metainfo.source", "pk": 15648, "fields": {"orig_filename": "Giugno_Karl_1818_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 447f.", "author": "", "orig_id": 1422129}}, {"model": "metainfo.source", "pk": 15649, "fields": {"orig_filename": "Giussani_Carlo_1840_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422130}}, {"model": "metainfo.source", "pk": 15650, "fields": {"orig_filename": "Glabinski_Stanislaw_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422131}}, {"model": "metainfo.source", "pk": 15651, "fields": {"orig_filename": "Glader_Kosmas_1863_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422132}}, {"model": "metainfo.source", "pk": 15652, "fields": {"orig_filename": "Glaeser_Franz_1798_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 448", "author": "", "orig_id": 1422133}}, {"model": "metainfo.source", "pk": 15653, "fields": {"orig_filename": "Glaessner_Arthur_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1", "author": "", "orig_id": 1418964}}, {"model": "metainfo.source", "pk": 15654, "fields": {"orig_filename": "Glaise-Horstenau_Edmund_1882_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1", "author": "", "orig_id": 1418965}}, {"model": "metainfo.source", "pk": 15655, "fields": {"orig_filename": "Glanz-Eicha_Egon_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418967}}, {"model": "metainfo.source", "pk": 15656, "fields": {"orig_filename": "Glanz-Eicha_Hugo_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418968}}, {"model": "metainfo.source", "pk": 15657, "fields": {"orig_filename": "Glanz_Joseph_1795_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 1f.", "author": "", "orig_id": 1418966}}, {"model": "metainfo.source", "pk": 15658, "fields": {"orig_filename": "Glaser_Arthur_1880_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1419471}}, {"model": "metainfo.source", "pk": 15659, "fields": {"orig_filename": "Glaser_Eduard_1855_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2f.", "author": "", "orig_id": 1419472}}, {"model": "metainfo.source", "pk": 15660, "fields": {"orig_filename": "Glaser_Erhard_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 3", "author": "", "orig_id": 1419473}}, {"model": "metainfo.source", "pk": 15661, "fields": {"orig_filename": "Glaser_Julius_1831_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 3f.", "author": "", "orig_id": 1419474}}, {"model": "metainfo.source", "pk": 15662, "fields": {"orig_filename": "Glaser_Karel_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4", "author": "", "orig_id": 1419475}}, {"model": "metainfo.source", "pk": 15663, "fields": {"orig_filename": "Glaser_Konrad_1903_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4", "author": "", "orig_id": 1419476}}, {"model": "metainfo.source", "pk": 15664, "fields": {"orig_filename": "Glaser_Rudolf_1801_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 4f.", "author": "", "orig_id": 1419477}}, {"model": "metainfo.source", "pk": 15665, "fields": {"orig_filename": "Glas_Franz_1865_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 6, 1957), S. 2", "author": "", "orig_id": 1418970}}, {"model": "metainfo.source", "pk": 15666, "fields": {"orig_filename": "Gartner_Anton_1817_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421451}}, {"model": "metainfo.source", "pk": 15667, "fields": {"orig_filename": "Gartner_Anton_1820_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421452}}, {"model": "metainfo.source", "pk": 15668, "fields": {"orig_filename": "Gartner_Hermine_1846_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421453}}, {"model": "metainfo.source", "pk": 15669, "fields": {"orig_filename": "Gartner_Josef_1796_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404", "author": "", "orig_id": 1421454}}, {"model": "metainfo.source", "pk": 15670, "fields": {"orig_filename": "Gartner_Theodor_1843_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 404f.", "author": "", "orig_id": 1421455}}, {"model": "metainfo.source", "pk": 15671, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Erasmus_1788_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421456}}, {"model": "metainfo.source", "pk": 15672, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Karl_1854_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421457}}, {"model": "metainfo.source", "pk": 15673, "fields": {"orig_filename": "Garzarolli-Thurnlackh_Peter_1774_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405", "author": "", "orig_id": 1421458}}, {"model": "metainfo.source", "pk": 15674, "fields": {"orig_filename": "Gasiorowski_Napoleon-Jan_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 405f.", "author": "", "orig_id": 1421459}}, {"model": "metainfo.source", "pk": 15675, "fields": {"orig_filename": "Gasser-Valhorn_Josef_1816_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421466}}, {"model": "metainfo.source", "pk": 15676, "fields": {"orig_filename": "Gasser_Georg_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421460}}, {"model": "metainfo.source", "pk": 15677, "fields": {"orig_filename": "Gasser_Gregor_1868_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421461}}, {"model": "metainfo.source", "pk": 15678, "fields": {"orig_filename": "Gasser_Hanns_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421462}}, {"model": "metainfo.source", "pk": 15679, "fields": {"orig_filename": "Gasser_Johann_1847_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406", "author": "", "orig_id": 1421463}}, {"model": "metainfo.source", "pk": 15680, "fields": {"orig_filename": "Gasser_Vinzenz-Ferrer_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421465}}, {"model": "metainfo.source", "pk": 15681, "fields": {"orig_filename": "Gasser_Vinzenz_1840_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 406f.", "author": "", "orig_id": 1421464}}, {"model": "metainfo.source", "pk": 15682, "fields": {"orig_filename": "Gassner_Andreas_1776_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407f.", "author": "", "orig_id": 1421468}}, {"model": "metainfo.source", "pk": 15683, "fields": {"orig_filename": "Gassner_Andreas_1809_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421469}}, {"model": "metainfo.source", "pk": 15684, "fields": {"orig_filename": "Gassner_Andre_1847_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 407", "author": "", "orig_id": 1421467}}, {"model": "metainfo.source", "pk": 15685, "fields": {"orig_filename": "Gassner_Anton_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421470}}, {"model": "metainfo.source", "pk": 15686, "fields": {"orig_filename": "Gassner_Ferdinand-Simon_1798_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421472}}, {"model": "metainfo.source", "pk": 15687, "fields": {"orig_filename": "Gassner_Ferdinand_1842_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421471}}, {"model": "metainfo.source", "pk": 15688, "fields": {"orig_filename": "Gassner_Franz-Josef_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408", "author": "", "orig_id": 1421473}}, {"model": "metainfo.source", "pk": 15689, "fields": {"orig_filename": "Gassner_Guido_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 408f.", "author": "", "orig_id": 1421474}}, {"model": "metainfo.source", "pk": 15690, "fields": {"orig_filename": "Gassner_Heinrich_1885_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421475}}, {"model": "metainfo.source", "pk": 15691, "fields": {"orig_filename": "Gassner_Johann_1821_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421476}}, {"model": "metainfo.source", "pk": 15692, "fields": {"orig_filename": "Gassner_Julius_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421477}}, {"model": "metainfo.source", "pk": 15693, "fields": {"orig_filename": "Gassner_Michael_1810_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409", "author": "", "orig_id": 1421554}}, {"model": "metainfo.source", "pk": 15694, "fields": {"orig_filename": "Gassner_Theodor_1804_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 409f.", "author": "", "orig_id": 1421555}}, {"model": "metainfo.source", "pk": 15695, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Albert-Josef_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421556}}, {"model": "metainfo.source", "pk": 15696, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Anton-Franz_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421557}}, {"model": "metainfo.source", "pk": 15697, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Erich_1873_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421558}}, {"model": "metainfo.source", "pk": 15698, "fields": {"orig_filename": "Gasteiger-Raabenstein-Kobach_Gustav_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421559}}, {"model": "metainfo.source", "pk": 15699, "fields": {"orig_filename": "Gatscher_Emanuel_1890_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421560}}, {"model": "metainfo.source", "pk": 15700, "fields": {"orig_filename": "Gatterer_Hilarius_1839_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410", "author": "", "orig_id": 1421561}}, {"model": "metainfo.source", "pk": 15701, "fields": {"orig_filename": "Gatterer_Michael_1862_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 410f.", "author": "", "orig_id": 1421562}}, {"model": "metainfo.source", "pk": 15702, "fields": {"orig_filename": "Gauby_Joseph_1851_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411", "author": "", "orig_id": 1421563}}, {"model": "metainfo.source", "pk": 15703, "fields": {"orig_filename": "Gauermann_Friedrich_1807_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411", "author": "", "orig_id": 1421564}}, {"model": "metainfo.source", "pk": 15704, "fields": {"orig_filename": "Gauermann_Jakob_1773_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 411f.", "author": "", "orig_id": 1421565}}, {"model": "metainfo.source", "pk": 15705, "fields": {"orig_filename": "Gaugl_Josef_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420104}}, {"model": "metainfo.source", "pk": 15706, "fields": {"orig_filename": "Gaulhofer_Karl_1885_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420107}}, {"model": "metainfo.source", "pk": 15707, "fields": {"orig_filename": "Gaul_Franz_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420105}}, {"model": "metainfo.source", "pk": 15708, "fields": {"orig_filename": "Gaul_Franz_1837_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420106}}, {"model": "metainfo.source", "pk": 15709, "fields": {"orig_filename": "Gaul_Gustav_1836_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 412", "author": "", "orig_id": 1420113}}, {"model": "metainfo.source", "pk": 15710, "fields": {"orig_filename": "Gaunersdorfer_Johann_1853_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420108}}, {"model": "metainfo.source", "pk": 15711, "fields": {"orig_filename": "Gaupmann_Rudolf_1811_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420109}}, {"model": "metainfo.source", "pk": 15712, "fields": {"orig_filename": "Gaupmann_Rudolf_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420110}}, {"model": "metainfo.source", "pk": 15713, "fields": {"orig_filename": "Gause_Wilhelm_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413", "author": "", "orig_id": 1420111}}, {"model": "metainfo.source", "pk": 15714, "fields": {"orig_filename": "Gautsch-Frankenthurn_Paul_1851_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 413f.", "author": "", "orig_id": 1420112}}, {"model": "metainfo.source", "pk": 15715, "fields": {"orig_filename": "Gavasini_Alois_1759_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421566}}, {"model": "metainfo.source", "pk": 15716, "fields": {"orig_filename": "Gavazzi_Artur_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421567}}, {"model": "metainfo.source", "pk": 15717, "fields": {"orig_filename": "Gawalewicz_Marian_1852_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421568}}, {"model": "metainfo.source", "pk": 15718, "fields": {"orig_filename": "Gawalowski_Anton-Karl-Wilhelm_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421569}}, {"model": "metainfo.source", "pk": 15719, "fields": {"orig_filename": "Gawalowski_Karl-Wilhelm_1861_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 414", "author": "", "orig_id": 1421570}}, {"model": "metainfo.source", "pk": 15720, "fields": {"orig_filename": "Gawelek_Franciszek_1884_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421571}}, {"model": "metainfo.source", "pk": 15721, "fields": {"orig_filename": "Gebauer-Fuelnegg_Erich_1901_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421575}}, {"model": "metainfo.source", "pk": 15722, "fields": {"orig_filename": "Gebauerova_Marie_1869_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421576}}, {"model": "metainfo.source", "pk": 15723, "fields": {"orig_filename": "Gebauer_Anton-Karl_1872_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421572}}, {"model": "metainfo.source", "pk": 15724, "fields": {"orig_filename": "Gebauer_Jan_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415", "author": "", "orig_id": 1421574}}, {"model": "metainfo.source", "pk": 15725, "fields": {"orig_filename": "Gebbel_Franz_1835_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 415f.", "author": "", "orig_id": 1421577}}, {"model": "metainfo.source", "pk": 15726, "fields": {"orig_filename": "Gebhardt_Lajos_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421648}}, {"model": "metainfo.source", "pk": 15727, "fields": {"orig_filename": "Gebhart_Andreas_1881_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421649}}, {"model": "metainfo.source", "pk": 15728, "fields": {"orig_filename": "Geczy_Stefan_1860_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416", "author": "", "orig_id": 1421650}}, {"model": "metainfo.source", "pk": 15729, "fields": {"orig_filename": "Gegenbauer_Leopold_1849_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 416f.", "author": "", "orig_id": 1421651}}, {"model": "metainfo.source", "pk": 15730, "fields": {"orig_filename": "Gegenbauer_Viktor_1884_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421652}}, {"model": "metainfo.source", "pk": 15731, "fields": {"orig_filename": "Gehmacher_Friedrich_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421653}}, {"model": "metainfo.source", "pk": 15732, "fields": {"orig_filename": "Geiger_Andreas_1773_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421654}}, {"model": "metainfo.source", "pk": 15733, "fields": {"orig_filename": "Geiger_Joseph_1810_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417", "author": "", "orig_id": 1421655}}, {"model": "metainfo.source", "pk": 15734, "fields": {"orig_filename": "Geiger_Karl-Josef_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 417f.", "author": "", "orig_id": 1421656}}, {"model": "metainfo.source", "pk": 15735, "fields": {"orig_filename": "Geiger_Peter-Johann-Nepomuk_1805_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421657}}, {"model": "metainfo.source", "pk": 15736, "fields": {"orig_filename": "Geissler_Ludwig_1878_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421658}}, {"model": "metainfo.source", "pk": 15737, "fields": {"orig_filename": "Geistinger_Marie_1836_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418", "author": "", "orig_id": 1421659}}, {"model": "metainfo.source", "pk": 15738, "fields": {"orig_filename": "Geitler-Armingen_Josef_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421661}}, {"model": "metainfo.source", "pk": 15739, "fields": {"orig_filename": "Geitler_Leopold-Vaclav_1847_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 418f.", "author": "", "orig_id": 1421660}}, {"model": "metainfo.source", "pk": 15740, "fields": {"orig_filename": "Gelber_Adolf_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421662}}, {"model": "metainfo.source", "pk": 15741, "fields": {"orig_filename": "Gelbhaus_Sigmund-Josua-Samuel_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421663}}, {"model": "metainfo.source", "pk": 15742, "fields": {"orig_filename": "Gelcich_Eugen_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419", "author": "", "orig_id": 1421664}}, {"model": "metainfo.source", "pk": 15743, "fields": {"orig_filename": "Geldern-Egmond-Arcen_Gustav_1837_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 419f.", "author": "", "orig_id": 1421665}}, {"model": "metainfo.source", "pk": 15744, "fields": {"orig_filename": "Gelinek_Joseph_1758_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421666}}, {"model": "metainfo.source", "pk": 15745, "fields": {"orig_filename": "Gelleri_Moritz_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421668}}, {"model": "metainfo.source", "pk": 15746, "fields": {"orig_filename": "Gellert_Grete_1879_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421669}}, {"model": "metainfo.source", "pk": 15747, "fields": {"orig_filename": "Geller_Leo_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 420", "author": "", "orig_id": 1421667}}, {"model": "metainfo.source", "pk": 15748, "fields": {"orig_filename": "Gelmi_Enrico_1855_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421670}}, {"model": "metainfo.source", "pk": 15749, "fields": {"orig_filename": "Geltch_Johann-Friedrich_1815_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421671}}, {"model": "metainfo.source", "pk": 15750, "fields": {"orig_filename": "Genczik_August_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421672}}, {"model": "metainfo.source", "pk": 15751, "fields": {"orig_filename": "Genee_Franz-Friedrich-Richard_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 421", "author": "", "orig_id": 1421673}}, {"model": "metainfo.source", "pk": 15752, "fields": {"orig_filename": "Genersich_Anton_1842_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421746}}, {"model": "metainfo.source", "pk": 15753, "fields": {"orig_filename": "Genersich_Christian_1759_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421747}}, {"model": "metainfo.source", "pk": 15754, "fields": {"orig_filename": "Genersich_Johann_1761_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421748}}, {"model": "metainfo.source", "pk": 15755, "fields": {"orig_filename": "Genersich_Samuel_1768_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422", "author": "", "orig_id": 1421749}}, {"model": "metainfo.source", "pk": 15756, "fields": {"orig_filename": "Gentz_Friedrich_1764_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 422ff.", "author": "", "orig_id": 1421750}}, {"model": "metainfo.source", "pk": 15757, "fields": {"orig_filename": "Gentz_Josef_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421751}}, {"model": "metainfo.source", "pk": 15758, "fields": {"orig_filename": "Georgievics_Georg_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421753}}, {"model": "metainfo.source", "pk": 15759, "fields": {"orig_filename": "Georgi_Friedrich-Robert_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421752}}, {"model": "metainfo.source", "pk": 15760, "fields": {"orig_filename": "Geppert_Anton_1829_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424f.", "author": "", "orig_id": 1421755}}, {"model": "metainfo.source", "pk": 15761, "fields": {"orig_filename": "Geppert_Menrad_1770_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421758}}, {"model": "metainfo.source", "pk": 15762, "fields": {"orig_filename": "Gepp_Jakob_1753_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 424", "author": "", "orig_id": 1421754}}, {"model": "metainfo.source", "pk": 15763, "fields": {"orig_filename": "Gerba_Raimund_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421756}}, {"model": "metainfo.source", "pk": 15764, "fields": {"orig_filename": "Gerbic_Fran_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421757}}, {"model": "metainfo.source", "pk": 15765, "fields": {"orig_filename": "Gerhardinger_Hermann_1888_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425", "author": "", "orig_id": 1421759}}, {"model": "metainfo.source", "pk": 15766, "fields": {"orig_filename": "Gericke_Wilhelm_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 425f.", "author": "", "orig_id": 1421760}}, {"model": "metainfo.source", "pk": 15767, "fields": {"orig_filename": "Geringer-Oedenberg_Gabriel_1758_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 426", "author": "", "orig_id": 1421762}}, {"model": "metainfo.source", "pk": 15768, "fields": {"orig_filename": "Fuehrer_Robert_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420976}}, {"model": "metainfo.source", "pk": 15769, "fields": {"orig_filename": "Fuehrich_Josef_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380f.", "author": "", "orig_id": 1420977}}, {"model": "metainfo.source", "pk": 15770, "fields": {"orig_filename": "Fuehrich_Maximilian_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420978}}, {"model": "metainfo.source", "pk": 15771, "fields": {"orig_filename": "Fueloep-Miller_Rene_1891_1963.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1435277}}, {"model": "metainfo.source", "pk": 15772, "fields": {"orig_filename": "Fuerst_Johann_1825_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420979}}, {"model": "metainfo.source", "pk": 15773, "fields": {"orig_filename": "Fuerst_Rudolf_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381", "author": "", "orig_id": 1420980}}, {"model": "metainfo.source", "pk": 15774, "fields": {"orig_filename": "Fuerth_Emil_1863_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 381f.", "author": "", "orig_id": 1420981}}, {"model": "metainfo.source", "pk": 15775, "fields": {"orig_filename": "Fuerth_Jaro_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2029584}}, {"model": "metainfo.source", "pk": 15776, "fields": {"orig_filename": "Fuerth_Otto_1867_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420982}}, {"model": "metainfo.source", "pk": 15777, "fields": {"orig_filename": "Fuester_Anton_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420983}}, {"model": "metainfo.source", "pk": 15778, "fields": {"orig_filename": "Fuetscher_Lorenz_1894_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382", "author": "", "orig_id": 1420984}}, {"model": "metainfo.source", "pk": 15779, "fields": {"orig_filename": "Fugger_Eberhard_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 382f.", "author": "", "orig_id": 1420985}}, {"model": "metainfo.source", "pk": 15780, "fields": {"orig_filename": "Fumagalli_Adolfo_1828_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420986}}, {"model": "metainfo.source", "pk": 15781, "fields": {"orig_filename": "Funk_Salomon_1866_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420987}}, {"model": "metainfo.source", "pk": 15782, "fields": {"orig_filename": "Funtek_Anton_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420988}}, {"model": "metainfo.source", "pk": 15783, "fields": {"orig_filename": "Furtwaengler_Philipp-Friedrich-Pius_1869_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 383", "author": "", "orig_id": 1420989}}, {"model": "metainfo.source", "pk": 15784, "fields": {"orig_filename": "Fussenegger_Ernst_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1421068}}, {"model": "metainfo.source", "pk": 15785, "fields": {"orig_filename": "Fuss_Heinrich_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420990}}, {"model": "metainfo.source", "pk": 15786, "fields": {"orig_filename": "Fuss_Johann-Ev_1777_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420991}}, {"model": "metainfo.source", "pk": 15787, "fields": {"orig_filename": "Fuss_Karl_1817_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1420992}}, {"model": "metainfo.source", "pk": 15788, "fields": {"orig_filename": "Fuss_Michael_1814_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 384", "author": "", "orig_id": 1421067}}, {"model": "metainfo.source", "pk": 15789, "fields": {"orig_filename": "Gaal_Eugen_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421069}}, {"model": "metainfo.source", "pk": 15790, "fields": {"orig_filename": "Gaal_Georg_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421070}}, {"model": "metainfo.source", "pk": 15791, "fields": {"orig_filename": "Gaal_Jozsef_1811_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421071}}, {"model": "metainfo.source", "pk": 15792, "fields": {"orig_filename": "Gabaglio_Antonio_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421072}}, {"model": "metainfo.source", "pk": 15793, "fields": {"orig_filename": "Gabelli_Antonio_1830_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421074}}, {"model": "metainfo.source", "pk": 15794, "fields": {"orig_filename": "Gabel_Heinrich_1873_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 385", "author": "", "orig_id": 1421073}}, {"model": "metainfo.source", "pk": 15795, "fields": {"orig_filename": "Gaber_Hans_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421075}}, {"model": "metainfo.source", "pk": 15796, "fields": {"orig_filename": "Gabillon_Ludwig_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421082}}, {"model": "metainfo.source", "pk": 15797, "fields": {"orig_filename": "Gablenz_Ludwig_1814_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386f.", "author": "", "orig_id": 1421084}}, {"model": "metainfo.source", "pk": 15798, "fields": {"orig_filename": "Gabler_Joseph_1824_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 387", "author": "", "orig_id": 1421085}}, {"model": "metainfo.source", "pk": 15799, "fields": {"orig_filename": "Gabler_Wilhelm_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421086}}, {"model": "metainfo.source", "pk": 15800, "fields": {"orig_filename": "Gabl_Alois_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 386", "author": "", "orig_id": 1421083}}, {"model": "metainfo.source", "pk": 15801, "fields": {"orig_filename": "Gabriely_Adolf_1829_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421087}}, {"model": "metainfo.source", "pk": 15802, "fields": {"orig_filename": "Gabrscek_Andrej_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421165}}, {"model": "metainfo.source", "pk": 15803, "fields": {"orig_filename": "Gaddi_Paolo_1806_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421166}}, {"model": "metainfo.source", "pk": 15804, "fields": {"orig_filename": "Gaehrich_Wenzel_1794_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388", "author": "", "orig_id": 1421168}}, {"model": "metainfo.source", "pk": 15805, "fields": {"orig_filename": "Gaensbacher_Johann-Bapt_1778_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 388f.", "author": "", "orig_id": 1421167}}, {"model": "metainfo.source", "pk": 15806, "fields": {"orig_filename": "Gaensbacher_Josef_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421169}}, {"model": "metainfo.source", "pk": 15807, "fields": {"orig_filename": "Gaertner_Corbinian_1751_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421170}}, {"model": "metainfo.source", "pk": 15808, "fields": {"orig_filename": "Gaertner_Friedrich_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389", "author": "", "orig_id": 1421171}}, {"model": "metainfo.source", "pk": 15809, "fields": {"orig_filename": "Gaertner_Gustav_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 389f.", "author": "", "orig_id": 1421172}}, {"model": "metainfo.source", "pk": 15810, "fields": {"orig_filename": "Gaertner_Nikolas_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390", "author": "", "orig_id": 1421173}}, {"model": "metainfo.source", "pk": 15811, "fields": {"orig_filename": "Gaertner_Wilhelm_1811_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390", "author": "", "orig_id": 1421174}}, {"model": "metainfo.source", "pk": 15812, "fields": {"orig_filename": "Gagern_Friedrich_1882_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 390f.", "author": "", "orig_id": 1421175}}, {"model": "metainfo.source", "pk": 15813, "fields": {"orig_filename": "Gagern_Max-Ludwig_1810_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 391f.", "author": "", "orig_id": 1421176}}, {"model": "metainfo.source", "pk": 15814, "fields": {"orig_filename": "Gaheis_Alexander_1869_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421177}}, {"model": "metainfo.source", "pk": 15815, "fields": {"orig_filename": "Gaigher_Horatius_1870_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421179}}, {"model": "metainfo.source", "pk": 15816, "fields": {"orig_filename": "Gaisberger_Joseph_1792_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 392", "author": "", "orig_id": 1421178}}, {"model": "metainfo.source", "pk": 15817, "fields": {"orig_filename": "Gaj_Ljudevit_1809_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421180}}, {"model": "metainfo.source", "pk": 15818, "fields": {"orig_filename": "Galehr_Fridolin_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421181}}, {"model": "metainfo.source", "pk": 15819, "fields": {"orig_filename": "Galgotzy_Anton_1837_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421182}}, {"model": "metainfo.source", "pk": 15820, "fields": {"orig_filename": "Galicz_Jan_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393", "author": "", "orig_id": 1421183}}, {"model": "metainfo.source", "pk": 15821, "fields": {"orig_filename": "Gallenberg_Wenzel-Robert_1783_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421263}}, {"model": "metainfo.source", "pk": 15822, "fields": {"orig_filename": "Gallenga_Antonio_1812_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421187}}, {"model": "metainfo.source", "pk": 15823, "fields": {"orig_filename": "Gallenstein_Meinrad_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394f.", "author": "", "orig_id": 1421264}}, {"model": "metainfo.source", "pk": 15824, "fields": {"orig_filename": "Gallesio_Giorgio_1772_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421265}}, {"model": "metainfo.source", "pk": 15825, "fields": {"orig_filename": "Galle_Ernst_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421186}}, {"model": "metainfo.source", "pk": 15826, "fields": {"orig_filename": "Gallina_Josef-Wilhelm_1820_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421266}}, {"model": "metainfo.source", "pk": 15827, "fields": {"orig_filename": "Gallini_Stefano_1756_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421267}}, {"model": "metainfo.source", "pk": 15828, "fields": {"orig_filename": "Galliny_Florentine_1845_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395", "author": "", "orig_id": 1421268}}, {"model": "metainfo.source", "pk": 15829, "fields": {"orig_filename": "Gallmeyer_Josefine_1838_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 395f.", "author": "", "orig_id": 1421269}}, {"model": "metainfo.source", "pk": 15830, "fields": {"orig_filename": "Gallois_Franz_1770_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421270}}, {"model": "metainfo.source", "pk": 15831, "fields": {"orig_filename": "Gallois_Ludwig_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421271}}, {"model": "metainfo.source", "pk": 15832, "fields": {"orig_filename": "Gallois_Moritz_1859_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421272}}, {"model": "metainfo.source", "pk": 15833, "fields": {"orig_filename": "Gall_Johann_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 393f.", "author": "", "orig_id": 1421184}}, {"model": "metainfo.source", "pk": 15834, "fields": {"orig_filename": "Gall_Josef_1820_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 394", "author": "", "orig_id": 1421185}}, {"model": "metainfo.source", "pk": 15835, "fields": {"orig_filename": "Galovic_Franjo_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421274}}, {"model": "metainfo.source", "pk": 15836, "fields": {"orig_filename": "Galston_Gottfried_1879_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396", "author": "", "orig_id": 1421275}}, {"model": "metainfo.source", "pk": 15837, "fields": {"orig_filename": "Galura_Bernhard_1764_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 396f.", "author": "", "orig_id": 1421276}}, {"model": "metainfo.source", "pk": 15838, "fields": {"orig_filename": "Galvagni_Peter-Cav_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421277}}, {"model": "metainfo.source", "pk": 15839, "fields": {"orig_filename": "Galvani_Giovanni_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421278}}, {"model": "metainfo.source", "pk": 15840, "fields": {"orig_filename": "Gamerith_Franz_1871_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397", "author": "", "orig_id": 1421279}}, {"model": "metainfo.source", "pk": 15841, "fields": {"orig_filename": "Gamerith_Walther_1903_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 397f.", "author": "", "orig_id": 1421280}}, {"model": "metainfo.source", "pk": 15842, "fields": {"orig_filename": "Ganahl_Arnold_1837_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421282}}, {"model": "metainfo.source", "pk": 15843, "fields": {"orig_filename": "Ganahl_Carl_1807_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421283}}, {"model": "metainfo.source", "pk": 15844, "fields": {"orig_filename": "Ganahl_Carl_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398", "author": "", "orig_id": 1421284}}, {"model": "metainfo.source", "pk": 15845, "fields": {"orig_filename": "Ganahl_Johann-Josef_1770_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421286}}, {"model": "metainfo.source", "pk": 15846, "fields": {"orig_filename": "Ganahl_Johann_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 398f.", "author": "", "orig_id": 1421285}}, {"model": "metainfo.source", "pk": 15847, "fields": {"orig_filename": "Ganahl_Karl-Hans_1905_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421287}}, {"model": "metainfo.source", "pk": 15848, "fields": {"orig_filename": "Ganahl_Rudolf_1833_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399", "author": "", "orig_id": 1421288}}, {"model": "metainfo.source", "pk": 15849, "fields": {"orig_filename": "Gander_Hieronymus_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 399f.", "author": "", "orig_id": 1421358}}, {"model": "metainfo.source", "pk": 15850, "fields": {"orig_filename": "Ganghofner_Friedrich_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421359}}, {"model": "metainfo.source", "pk": 15851, "fields": {"orig_filename": "Ganglbauer_Coelestin-Josef_1817_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400f.", "author": "", "orig_id": 1421363}}, {"model": "metainfo.source", "pk": 15852, "fields": {"orig_filename": "Ganglbauer_Ludwig_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421364}}, {"model": "metainfo.source", "pk": 15853, "fields": {"orig_filename": "Ganglberger_Johann-Wilhelm_1876_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421365}}, {"model": "metainfo.source", "pk": 15854, "fields": {"orig_filename": "Gangl_Alojz_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421360}}, {"model": "metainfo.source", "pk": 15855, "fields": {"orig_filename": "Gangl_Josef_1868_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1420103}}, {"model": "metainfo.source", "pk": 15856, "fields": {"orig_filename": "Gangl_Josef_1895_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421361}}, {"model": "metainfo.source", "pk": 15857, "fields": {"orig_filename": "Gangl_Virgil_1822_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 400", "author": "", "orig_id": 1421362}}, {"model": "metainfo.source", "pk": 15858, "fields": {"orig_filename": "Ganner_Anton-Maria_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401", "author": "", "orig_id": 1421366}}, {"model": "metainfo.source", "pk": 15859, "fields": {"orig_filename": "Gans-Ludassy_Julius_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 401f.", "author": "", "orig_id": 1421367}}, {"model": "metainfo.source", "pk": 15860, "fields": {"orig_filename": "Gans-Ludassy_Moritz_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421368}}, {"model": "metainfo.source", "pk": 15861, "fields": {"orig_filename": "Ganser_Anton_1835_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421369}}, {"model": "metainfo.source", "pk": 15862, "fields": {"orig_filename": "Gans_Johann_1886_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444515}}, {"model": "metainfo.source", "pk": 15863, "fields": {"orig_filename": "Ganz_Abraham_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402", "author": "", "orig_id": 1421370}}, {"model": "metainfo.source", "pk": 15864, "fields": {"orig_filename": "Garay_Janos_1812_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 402f.", "author": "", "orig_id": 1421372}}, {"model": "metainfo.source", "pk": 15865, "fields": {"orig_filename": "Garber_Josef_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421378}}, {"model": "metainfo.source", "pk": 15866, "fields": {"orig_filename": "Gardonyi_Geza_1863_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421379}}, {"model": "metainfo.source", "pk": 15867, "fields": {"orig_filename": "Gareis_Anton_1837_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421380}}, {"model": "metainfo.source", "pk": 15868, "fields": {"orig_filename": "Garger_Ernst_1892_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403", "author": "", "orig_id": 1421381}}, {"model": "metainfo.source", "pk": 15869, "fields": {"orig_filename": "Garovaglio_Santo_1805_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 5, 1957), S. 403f.", "author": "", "orig_id": 1421382}}, {"model": "metainfo.source", "pk": 15870, "fields": {"orig_filename": "Freuensfeld_Josip_1861_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422011}}, {"model": "metainfo.source", "pk": 15871, "fields": {"orig_filename": "Freundlich_Elisabeth_1906_2001.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1435143}}, {"model": "metainfo.source", "pk": 15872, "fields": {"orig_filename": "Freundlich_Emmi_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422015}}, {"model": "metainfo.source", "pk": 15873, "fields": {"orig_filename": "Freund_August_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422012}}, {"model": "metainfo.source", "pk": 15874, "fields": {"orig_filename": "Freund_Georg_1849_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358f.", "author": "", "orig_id": 1422013}}, {"model": "metainfo.source", "pk": 15875, "fields": {"orig_filename": "Freund_Leopold_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422014}}, {"model": "metainfo.source", "pk": 15876, "fields": {"orig_filename": "Freyer_Heinrich_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422020}}, {"model": "metainfo.source", "pk": 15877, "fields": {"orig_filename": "Freyn_Joseph-Franz_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422021}}, {"model": "metainfo.source", "pk": 15878, "fields": {"orig_filename": "Freyssmuth_Josef_1786_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422022}}, {"model": "metainfo.source", "pk": 15879, "fields": {"orig_filename": "Freytag_Gustav_1852_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422023}}, {"model": "metainfo.source", "pk": 15880, "fields": {"orig_filename": "Frey_Anton_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422016}}, {"model": "metainfo.source", "pk": 15881, "fields": {"orig_filename": "Frey_Friedrich_1799_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359", "author": "", "orig_id": 1422017}}, {"model": "metainfo.source", "pk": 15882, "fields": {"orig_filename": "Frey_Johanna_1867_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 359f.", "author": "", "orig_id": 1422018}}, {"model": "metainfo.source", "pk": 15883, "fields": {"orig_filename": "Frey_Wilhelm_1833_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 360", "author": "", "orig_id": 1422019}}, {"model": "metainfo.source", "pk": 15884, "fields": {"orig_filename": "Friberth_Karl_1736_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422024}}, {"model": "metainfo.source", "pk": 15885, "fields": {"orig_filename": "Frick_Karl_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422026}}, {"model": "metainfo.source", "pk": 15886, "fields": {"orig_filename": "Frida_Emil_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422027}}, {"model": "metainfo.source", "pk": 15887, "fields": {"orig_filename": "Frieberger_Gustav_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361", "author": "", "orig_id": 1422028}}, {"model": "metainfo.source", "pk": 15888, "fields": {"orig_filename": "Friedell_Egon_1878_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362", "author": "", "orig_id": 1422030}}, {"model": "metainfo.source", "pk": 15889, "fields": {"orig_filename": "Friedinger_Karl_1821_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362", "author": "", "orig_id": 1422100}}, {"model": "metainfo.source", "pk": 15890, "fields": {"orig_filename": "Friedjung_Heinrich_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 362f.", "author": "", "orig_id": 1422101}}, {"model": "metainfo.source", "pk": 15891, "fields": {"orig_filename": "Friedjung_Josef-K_1871_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422102}}, {"model": "metainfo.source", "pk": 15892, "fields": {"orig_filename": "Friedlaender-Malheim_Friedrich_1825_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422108}}, {"model": "metainfo.source", "pk": 15893, "fields": {"orig_filename": "Friedlaender_Adolf-A_1870_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363f.", "author": "", "orig_id": 1422105}}, {"model": "metainfo.source", "pk": 15894, "fields": {"orig_filename": "Friedlaender_Max_1829_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422106}}, {"model": "metainfo.source", "pk": 15895, "fields": {"orig_filename": "Friedlaender_Paul_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364", "author": "", "orig_id": 1422107}}, {"model": "metainfo.source", "pk": 15896, "fields": {"orig_filename": "Friedl_Richard_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422103}}, {"model": "metainfo.source", "pk": 15897, "fields": {"orig_filename": "Friedl_Theodor_1842_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 363", "author": "", "orig_id": 1422104}}, {"model": "metainfo.source", "pk": 15898, "fields": {"orig_filename": "Friedmann_Meir_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422110}}, {"model": "metainfo.source", "pk": 15899, "fields": {"orig_filename": "Friedmann_Otto-Bernhard_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422112}}, {"model": "metainfo.source", "pk": 15900, "fields": {"orig_filename": "Friedmann_Otto_1860_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365", "author": "", "orig_id": 1422111}}, {"model": "metainfo.source", "pk": 15901, "fields": {"orig_filename": "Friedmann_Siegwart_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 365f.", "author": "", "orig_id": 1422113}}, {"model": "metainfo.source", "pk": 15902, "fields": {"orig_filename": "Friedman_Ignaz_1882_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 364f.", "author": "", "orig_id": 1422109}}, {"model": "metainfo.source", "pk": 15903, "fields": {"orig_filename": "Friedrichsthal_Emanuel_1809_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422118}}, {"model": "metainfo.source", "pk": 15904, "fields": {"orig_filename": "Friedrich_Ferdinand-Leopold_1821_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422114}}, {"model": "metainfo.source", "pk": 15905, "fields": {"orig_filename": "Friedrich_Karl_1900_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422116}}, {"model": "metainfo.source", "pk": 15906, "fields": {"orig_filename": "Friedrich_Maria-Albrecht_1856_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366", "author": "", "orig_id": 1422115}}, {"model": "metainfo.source", "pk": 15907, "fields": {"orig_filename": "Friedwagner_Matthias_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 366f.", "author": "", "orig_id": 1422119}}, {"model": "metainfo.source", "pk": 15908, "fields": {"orig_filename": "Fried_Alfred-Hermann_1864_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 361f.", "author": "", "orig_id": 1422029}}, {"model": "metainfo.source", "pk": 15909, "fields": {"orig_filename": "Fries-Skene_Alfred_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422121}}, {"model": "metainfo.source", "pk": 15910, "fields": {"orig_filename": "Friesach_Karl_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422122}}, {"model": "metainfo.source", "pk": 15911, "fields": {"orig_filename": "Friese_Carl-Adolph_1831_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367f.", "author": "", "orig_id": 1420701}}, {"model": "metainfo.source", "pk": 15912, "fields": {"orig_filename": "Friese_Carl_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1420700}}, {"model": "metainfo.source", "pk": 15913, "fields": {"orig_filename": "Friess_Gottfried_1836_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420702}}, {"model": "metainfo.source", "pk": 15914, "fields": {"orig_filename": "Fries_Moritz-Christian_1777_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 367", "author": "", "orig_id": 1422120}}, {"model": "metainfo.source", "pk": 15915, "fields": {"orig_filename": "Frimberger_Johann-Georg_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420703}}, {"model": "metainfo.source", "pk": 15916, "fields": {"orig_filename": "Frimmel-Traisenau_Theodor_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368", "author": "", "orig_id": 1420704}}, {"model": "metainfo.source", "pk": 15917, "fields": {"orig_filename": "Frimont-Palota_Johann-Maria_1759_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 368f.", "author": "", "orig_id": 1420705}}, {"model": "metainfo.source", "pk": 15918, "fields": {"orig_filename": "Frind_Anton-Ludwig_1823_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420706}}, {"model": "metainfo.source", "pk": 15919, "fields": {"orig_filename": "Frind_Wenzel-Anton_1843_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420707}}, {"model": "metainfo.source", "pk": 15920, "fields": {"orig_filename": "Frint_Jakob_1766_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420708}}, {"model": "metainfo.source", "pk": 15921, "fields": {"orig_filename": "Frischauer_Berthold_1851_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420711}}, {"model": "metainfo.source", "pk": 15922, "fields": {"orig_filename": "Frischauf_Johannes_1837_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420712}}, {"model": "metainfo.source", "pk": 15923, "fields": {"orig_filename": "Frisch_Anton_1849_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369", "author": "", "orig_id": 1420709}}, {"model": "metainfo.source", "pk": 15924, "fields": {"orig_filename": "Frisch_Hans_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 369f.", "author": "", "orig_id": 1420710}}, {"model": "metainfo.source", "pk": 15925, "fields": {"orig_filename": "Fritsch_Anton_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370", "author": "", "orig_id": 1420713}}, {"model": "metainfo.source", "pk": 15926, "fields": {"orig_filename": "Fritsch_Carl_1812_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 370f.", "author": "", "orig_id": 1420714}}, {"model": "metainfo.source", "pk": 15927, "fields": {"orig_filename": "Fritsch_Johann_1849_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420715}}, {"model": "metainfo.source", "pk": 15928, "fields": {"orig_filename": "Fritsch_Karl_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420716}}, {"model": "metainfo.source", "pk": 15929, "fields": {"orig_filename": "Fritsch_Karl_1864_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371", "author": "", "orig_id": 1420717}}, {"model": "metainfo.source", "pk": 15930, "fields": {"orig_filename": "Frivaldszky_Emmerich_1799_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 371f.", "author": "", "orig_id": 1420718}}, {"model": "metainfo.source", "pk": 15931, "fields": {"orig_filename": "Frivaldszky_Johann_1822_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420719}}, {"model": "metainfo.source", "pk": 15932, "fields": {"orig_filename": "Frodl_Karl_1873_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420720}}, {"model": "metainfo.source", "pk": 15933, "fields": {"orig_filename": "Froehlich_Barbara_1797_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420723}}, {"model": "metainfo.source", "pk": 15934, "fields": {"orig_filename": "Froehlich_Georg_1872_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372f.", "author": "", "orig_id": 1420793}}, {"model": "metainfo.source", "pk": 15935, "fields": {"orig_filename": "Froehlich_Isidor_1853_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420794}}, {"model": "metainfo.source", "pk": 15936, "fields": {"orig_filename": "Froehlich_Josephine_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420795}}, {"model": "metainfo.source", "pk": 15937, "fields": {"orig_filename": "Froehlich_Katharina_1800_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420796}}, {"model": "metainfo.source", "pk": 15938, "fields": {"orig_filename": "Froehlich_Maria-Anna_1793_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 372", "author": "", "orig_id": 1420722}}, {"model": "metainfo.source", "pk": 15939, "fields": {"orig_filename": "Froeschel_Berthold-Ignaz_1813_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420797}}, {"model": "metainfo.source", "pk": 15940, "fields": {"orig_filename": "Froeschl_Karl_1848_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373", "author": "", "orig_id": 1420798}}, {"model": "metainfo.source", "pk": 15941, "fields": {"orig_filename": "Frohner_Johann_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128072}}, {"model": "metainfo.source", "pk": 15942, "fields": {"orig_filename": "Fromm_Emil_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 373f.", "author": "", "orig_id": 1420799}}, {"model": "metainfo.source", "pk": 15943, "fields": {"orig_filename": "Fromm_Karl-Josef_1873_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420800}}, {"model": "metainfo.source", "pk": 15944, "fields": {"orig_filename": "Fronius_Franz-Friedrich_1829_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420801}}, {"model": "metainfo.source", "pk": 15945, "fields": {"orig_filename": "Fronius_Karl-Josef_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420802}}, {"model": "metainfo.source", "pk": 15946, "fields": {"orig_filename": "Fronz_Emil_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374", "author": "", "orig_id": 1420803}}, {"model": "metainfo.source", "pk": 15947, "fields": {"orig_filename": "Fronz_Oskar_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 374f.", "author": "", "orig_id": 1420804}}, {"model": "metainfo.source", "pk": 15948, "fields": {"orig_filename": "Fronz_Richard_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420805}}, {"model": "metainfo.source", "pk": 15949, "fields": {"orig_filename": "Froon-Kirchrath_Josef_1740_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420806}}, {"model": "metainfo.source", "pk": 15950, "fields": {"orig_filename": "Fruehling_Carl_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420807}}, {"model": "metainfo.source", "pk": 15951, "fields": {"orig_filename": "Fruehwald_Ferdinand_1854_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420808}}, {"model": "metainfo.source", "pk": 15952, "fields": {"orig_filename": "Fruehwald_Wilhelm-Theodor_1816_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375", "author": "", "orig_id": 1420809}}, {"model": "metainfo.source", "pk": 15953, "fields": {"orig_filename": "Fruehwirth_Andreas_1845_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 375f.", "author": "", "orig_id": 1420810}}, {"model": "metainfo.source", "pk": 15954, "fields": {"orig_filename": "Fruwirth_Carl_1862_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420811}}, {"model": "metainfo.source", "pk": 15955, "fields": {"orig_filename": "Fruwirt_Ferdinand_1812_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420812}}, {"model": "metainfo.source", "pk": 15956, "fields": {"orig_filename": "Fruwirt_Ferdinand_1841_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376", "author": "", "orig_id": 1420813}}, {"model": "metainfo.source", "pk": 15957, "fields": {"orig_filename": "Frydmann-Prawy_Marcell_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 376f.", "author": "", "orig_id": 1420883}}, {"model": "metainfo.source", "pk": 15958, "fields": {"orig_filename": "Fuchs_Adalbert_1814_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420884}}, {"model": "metainfo.source", "pk": 15959, "fields": {"orig_filename": "Fuchs_Adalbert_1846_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420885}}, {"model": "metainfo.source", "pk": 15960, "fields": {"orig_filename": "Fuchs_Adalbert_1868_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 377", "author": "", "orig_id": 1420886}}, {"model": "metainfo.source", "pk": 15961, "fields": {"orig_filename": "Fuchs_Alfred_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420887}}, {"model": "metainfo.source", "pk": 15962, "fields": {"orig_filename": "Fuchs_Ernst_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420888}}, {"model": "metainfo.source", "pk": 15963, "fields": {"orig_filename": "Fuchs_Franz-Xaver_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420889}}, {"model": "metainfo.source", "pk": 15964, "fields": {"orig_filename": "Fuchs_Georg_1821_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378", "author": "", "orig_id": 1420890}}, {"model": "metainfo.source", "pk": 15965, "fields": {"orig_filename": "Fuchs_Johann-Nepomuk_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420892}}, {"model": "metainfo.source", "pk": 15966, "fields": {"orig_filename": "Fuchs_Johann-Nep_1766_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 378f.", "author": "", "orig_id": 1420891}}, {"model": "metainfo.source", "pk": 15967, "fields": {"orig_filename": "Fuchs_Robert_1847_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420893}}, {"model": "metainfo.source", "pk": 15968, "fields": {"orig_filename": "Fuchs_Siegmund_1859_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379", "author": "", "orig_id": 1420894}}, {"model": "metainfo.source", "pk": 15969, "fields": {"orig_filename": "Fuchs_Theodor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379", "author": "", "orig_id": 1420895}}, {"model": "metainfo.source", "pk": 15970, "fields": {"orig_filename": "Fuchs_Viktor_1840_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 379f.", "author": "", "orig_id": 1420896}}, {"model": "metainfo.source", "pk": 15971, "fields": {"orig_filename": "Fuchs_Wilhelm_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420897}}, {"model": "metainfo.source", "pk": 15972, "fields": {"orig_filename": "Fueger_Heinrich-Friedrich_1751_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 380", "author": "", "orig_id": 1420898}}, {"model": "metainfo.source", "pk": 15973, "fields": {"orig_filename": "Foetterle_Franz_1823_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421445}}, {"model": "metainfo.source", "pk": 15974, "fields": {"orig_filename": "Fogarasi_Johann_1801_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421446}}, {"model": "metainfo.source", "pk": 15975, "fields": {"orig_filename": "Folliot-Crenneville_Franz_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421449}}, {"model": "metainfo.source", "pk": 15976, "fields": {"orig_filename": "Folliot-Crenneville_Ludwig-Karl_1765_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421450}}, {"model": "metainfo.source", "pk": 15977, "fields": {"orig_filename": "Foll_Ferdinand_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334f.", "author": "", "orig_id": 1421448}}, {"model": "metainfo.source", "pk": 15978, "fields": {"orig_filename": "Folnegovic_Fran_1848_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421529}}, {"model": "metainfo.source", "pk": 15979, "fields": {"orig_filename": "Folnesics_Hans_1886_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421530}}, {"model": "metainfo.source", "pk": 15980, "fields": {"orig_filename": "Folnesics_Josef_1850_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 335", "author": "", "orig_id": 1421531}}, {"model": "metainfo.source", "pk": 15981, "fields": {"orig_filename": "Fonck_Leopold_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421532}}, {"model": "metainfo.source", "pk": 15982, "fields": {"orig_filename": "Forchheimer_Philipp_1852_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421533}}, {"model": "metainfo.source", "pk": 15983, "fields": {"orig_filename": "Forescu_Maria_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444597}}, {"model": "metainfo.source", "pk": 15984, "fields": {"orig_filename": "Foresti_Johann-Baptist_1776_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421535}}, {"model": "metainfo.source", "pk": 15985, "fields": {"orig_filename": "Forgach_Anton_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336", "author": "", "orig_id": 1421536}}, {"model": "metainfo.source", "pk": 15986, "fields": {"orig_filename": "Formanek_Eduard_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 336f.", "author": "", "orig_id": 1421537}}, {"model": "metainfo.source", "pk": 15987, "fields": {"orig_filename": "Formanek_Jaroslav_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421538}}, {"model": "metainfo.source", "pk": 15988, "fields": {"orig_filename": "Formanek_Romuald_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421539}}, {"model": "metainfo.source", "pk": 15989, "fields": {"orig_filename": "Formey_Alfred_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421540}}, {"model": "metainfo.source", "pk": 15990, "fields": {"orig_filename": "Forschneritsch_Alfred-Eduard_1872_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421541}}, {"model": "metainfo.source", "pk": 15991, "fields": {"orig_filename": "Forst-Battaglia_Otto_1889_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444316}}, {"model": "metainfo.source", "pk": 15992, "fields": {"orig_filename": "Forster-Brandt_Ellen_1866_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421547}}, {"model": "metainfo.source", "pk": 15993, "fields": {"orig_filename": "Forster_Adolf-Emanuel_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337", "author": "", "orig_id": 1421544}}, {"model": "metainfo.source", "pk": 15994, "fields": {"orig_filename": "Forster_Joseph_1845_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 337f.", "author": "", "orig_id": 1421545}}, {"model": "metainfo.source", "pk": 15995, "fields": {"orig_filename": "Forster_Zdenko_1860_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421546}}, {"model": "metainfo.source", "pk": 15996, "fields": {"orig_filename": "Forstner_August_1876_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338", "author": "", "orig_id": 1421548}}, {"model": "metainfo.source", "pk": 15997, "fields": {"orig_filename": "Forstner_Leopold_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421549}}, {"model": "metainfo.source", "pk": 15998, "fields": {"orig_filename": "Forti_Franz-Anton_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421551}}, {"model": "metainfo.source", "pk": 15999, "fields": {"orig_filename": "Fort_Josef_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 338f.", "author": "", "orig_id": 1421550}}, {"model": "metainfo.source", "pk": 16000, "fields": {"orig_filename": "Fossek_Wilhelm_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421552}}, {"model": "metainfo.source", "pk": 16001, "fields": {"orig_filename": "Fossel_Viktor_1846_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421553}}, {"model": "metainfo.source", "pk": 16002, "fields": {"orig_filename": "Foullon-Norbeeck_Heinrich_1850_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 339", "author": "", "orig_id": 1421623}}, {"model": "metainfo.source", "pk": 16003, "fields": {"orig_filename": "Fournier_Antonie_1809_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421625}}, {"model": "metainfo.source", "pk": 16004, "fields": {"orig_filename": "Fournier_August_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421626}}, {"model": "metainfo.source", "pk": 16005, "fields": {"orig_filename": "Fraenkel_Alexander_1857_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421627}}, {"model": "metainfo.source", "pk": 16006, "fields": {"orig_filename": "Fraenkel_Sigmund_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421628}}, {"model": "metainfo.source", "pk": 16007, "fields": {"orig_filename": "Fraenkel_Wilhelm_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 340", "author": "", "orig_id": 1421629}}, {"model": "metainfo.source", "pk": 16008, "fields": {"orig_filename": "Fraenzl_Friedrich_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421630}}, {"model": "metainfo.source", "pk": 16009, "fields": {"orig_filename": "Fraknoi_Wilhelm_1843_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421631}}, {"model": "metainfo.source", "pk": 16010, "fields": {"orig_filename": "Francesconi_Hermenegild_1795_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341f.", "author": "", "orig_id": 1421633}}, {"model": "metainfo.source", "pk": 16011, "fields": {"orig_filename": "France_Raoul-H_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 341", "author": "", "orig_id": 1421632}}, {"model": "metainfo.source", "pk": 16012, "fields": {"orig_filename": "Franchetti_Fortunata_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421634}}, {"model": "metainfo.source", "pk": 16013, "fields": {"orig_filename": "Francillo-Kaufmann_Hedwig_1878_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421635}}, {"model": "metainfo.source", "pk": 16014, "fields": {"orig_filename": "Franckel_Adolf_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421638}}, {"model": "metainfo.source", "pk": 16015, "fields": {"orig_filename": "Franck_Carl-Heinrich_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421636}}, {"model": "metainfo.source", "pk": 16016, "fields": {"orig_filename": "Franck_Karl_1806_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421637}}, {"model": "metainfo.source", "pk": 16017, "fields": {"orig_filename": "Franges-Mihanovic_Robert_1872_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342f.", "author": "", "orig_id": 1421640}}, {"model": "metainfo.source", "pk": 16018, "fields": {"orig_filename": "Franges_Otto_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 342", "author": "", "orig_id": 1421639}}, {"model": "metainfo.source", "pk": 16019, "fields": {"orig_filename": "Frankel_Zacharias_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421729}}, {"model": "metainfo.source", "pk": 16020, "fields": {"orig_filename": "Frankenberger_Johann_1807_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421730}}, {"model": "metainfo.source", "pk": 16021, "fields": {"orig_filename": "Franke_Ivan_1841_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421728}}, {"model": "metainfo.source", "pk": 16022, "fields": {"orig_filename": "Frankfurter_Salomon_1856_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421825}}, {"model": "metainfo.source", "pk": 16023, "fields": {"orig_filename": "Frankl-Gruen_Adolf_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421828}}, {"model": "metainfo.source", "pk": 16024, "fields": {"orig_filename": "Frankl-Hochwart_Lothar_1862_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421829}}, {"model": "metainfo.source", "pk": 16025, "fields": {"orig_filename": "Frankl-Hochwart_Ludwig-August_1810_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421830}}, {"model": "metainfo.source", "pk": 16026, "fields": {"orig_filename": "Frankl_Katharina_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421826}}, {"model": "metainfo.source", "pk": 16027, "fields": {"orig_filename": "Frankl_Pinkas-Fritz_1848_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 346", "author": "", "orig_id": 1421827}}, {"model": "metainfo.source", "pk": 16028, "fields": {"orig_filename": "Franko_Ivan_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 347", "author": "", "orig_id": 1421831}}, {"model": "metainfo.source", "pk": 16029, "fields": {"orig_filename": "Frank_Eduard_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421641}}, {"model": "metainfo.source", "pk": 16030, "fields": {"orig_filename": "Frank_Ernst_1847_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421642}}, {"model": "metainfo.source", "pk": 16031, "fields": {"orig_filename": "Frank_Gustav-Wilhelm_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 343", "author": "", "orig_id": 1421645}}, {"model": "metainfo.source", "pk": 16032, "fields": {"orig_filename": "Frank_Hans_1884_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421646}}, {"model": "metainfo.source", "pk": 16033, "fields": {"orig_filename": "Frank_Johann-Peter_1745_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421647}}, {"model": "metainfo.source", "pk": 16034, "fields": {"orig_filename": "Frank_Josip_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421721}}, {"model": "metainfo.source", "pk": 16035, "fields": {"orig_filename": "Frank_Liborius_1848_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421723}}, {"model": "metainfo.source", "pk": 16036, "fields": {"orig_filename": "Frank_Otto_1854_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344", "author": "", "orig_id": 1421724}}, {"model": "metainfo.source", "pk": 16037, "fields": {"orig_filename": "Frank_Peter-Anton_1746_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 344f.", "author": "", "orig_id": 1421725}}, {"model": "metainfo.source", "pk": 16038, "fields": {"orig_filename": "Frank_Rudolf_1862_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421726}}, {"model": "metainfo.source", "pk": 16039, "fields": {"orig_filename": "Frank_Rudolf_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 345", "author": "", "orig_id": 1421727}}, {"model": "metainfo.source", "pk": 16040, "fields": {"orig_filename": "Franz-Ferdinand___1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 350f.", "author": "", "orig_id": 1421838}}, {"model": "metainfo.source", "pk": 16041, "fields": {"orig_filename": "Franz-Joseph__1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 351f.", "author": "", "orig_id": 1421839}}, {"model": "metainfo.source", "pk": 16042, "fields": {"orig_filename": "Franz-Karl__1802_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421840}}, {"model": "metainfo.source", "pk": 16043, "fields": {"orig_filename": "Franz-Salvator__1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421841}}, {"model": "metainfo.source", "pk": 16044, "fields": {"orig_filename": "Franzelin_Johannes-B_1816_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421914}}, {"model": "metainfo.source", "pk": 16045, "fields": {"orig_filename": "Franzisci_Franz_1825_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353", "author": "", "orig_id": 1421915}}, {"model": "metainfo.source", "pk": 16046, "fields": {"orig_filename": "Franzos_Karl-Emil_1848_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 353f.", "author": "", "orig_id": 1421917}}, {"model": "metainfo.source", "pk": 16047, "fields": {"orig_filename": "Franz_Ferdinand-Geminian_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 350", "author": "", "orig_id": 1421837}}, {"model": "metainfo.source", "pk": 16048, "fields": {"orig_filename": "Franz_Gottfried_1803_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348", "author": "", "orig_id": 1421833}}, {"model": "metainfo.source", "pk": 16049, "fields": {"orig_filename": "Franz_Joseph-Carl-Ambros-Stanislaus_1779_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 349f.", "author": "", "orig_id": 1421836}}, {"model": "metainfo.source", "pk": 16050, "fields": {"orig_filename": "Franz_Rudolf_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348", "author": "", "orig_id": 1421834}}, {"model": "metainfo.source", "pk": 16051, "fields": {"orig_filename": "Franz__1768_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 348f.", "author": "", "orig_id": 1421835}}, {"model": "metainfo.source", "pk": 16052, "fields": {"orig_filename": "Frass_Rudolf_1880_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421919}}, {"model": "metainfo.source", "pk": 16053, "fields": {"orig_filename": "Frast_Johannes_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421920}}, {"model": "metainfo.source", "pk": 16054, "fields": {"orig_filename": "Frauendorfer_Marie_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421921}}, {"model": "metainfo.source", "pk": 16055, "fields": {"orig_filename": "Frauenfeld_Eduard_1853_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354", "author": "", "orig_id": 1421922}}, {"model": "metainfo.source", "pk": 16056, "fields": {"orig_filename": "Frauenfeld_Georg_1807_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 354f.", "author": "", "orig_id": 1421923}}, {"model": "metainfo.source", "pk": 16057, "fields": {"orig_filename": "Fraungruber_Hans_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421924}}, {"model": "metainfo.source", "pk": 16058, "fields": {"orig_filename": "Fraus-Wagner_Arrigo_1861_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421925}}, {"model": "metainfo.source", "pk": 16059, "fields": {"orig_filename": "Frauscher_Karl_1852_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421926}}, {"model": "metainfo.source", "pk": 16060, "fields": {"orig_filename": "Frauscher_Moritz_1859_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421927}}, {"model": "metainfo.source", "pk": 16061, "fields": {"orig_filename": "Fraydt-Fraydenegg_Otto_1851_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355", "author": "", "orig_id": 1421928}}, {"model": "metainfo.source", "pk": 16062, "fields": {"orig_filename": "Fredro_Aleksander_1793_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 355f.", "author": "", "orig_id": 1421929}}, {"model": "metainfo.source", "pk": 16063, "fields": {"orig_filename": "Fredro_Jan-Aleksander_1829_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421930}}, {"model": "metainfo.source", "pk": 16064, "fields": {"orig_filename": "Freh_Wilhelm_1910_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2128803}}, {"model": "metainfo.source", "pk": 16065, "fields": {"orig_filename": "Freiberger_Gustav_1853_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421931}}, {"model": "metainfo.source", "pk": 16066, "fields": {"orig_filename": "Freinademetz_Joseph_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421932}}, {"model": "metainfo.source", "pk": 16067, "fields": {"orig_filename": "Freindaller_Franz-Seraph-Jos_1753_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 356", "author": "", "orig_id": 1421933}}, {"model": "metainfo.source", "pk": 16068, "fields": {"orig_filename": "Freissauff-Neudegg_Felix_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357", "author": "", "orig_id": 1421934}}, {"model": "metainfo.source", "pk": 16069, "fields": {"orig_filename": "Frenzel_Karl_1871_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357", "author": "", "orig_id": 1421935}}, {"model": "metainfo.source", "pk": 16070, "fields": {"orig_filename": "Freudenreich_Dragutin_1862_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1421937}}, {"model": "metainfo.source", "pk": 16071, "fields": {"orig_filename": "Freudenreich_Josip_1827_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 358", "author": "", "orig_id": 1422010}}, {"model": "metainfo.source", "pk": 16072, "fields": {"orig_filename": "Freud_Anton-Walter_1921_2004.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128065}}, {"model": "metainfo.source", "pk": 16073, "fields": {"orig_filename": "Freud_Sigmund_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 357f.", "author": "", "orig_id": 1421936}}, {"model": "metainfo.source", "pk": 16074, "fields": {"orig_filename": "Filek-Wittinghausen_Egid_1874_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421055}}, {"model": "metainfo.source", "pk": 16075, "fields": {"orig_filename": "Filipovic_Ivan_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421056}}, {"model": "metainfo.source", "pk": 16076, "fields": {"orig_filename": "Fillunger_Johann_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314f.", "author": "", "orig_id": 1421058}}, {"model": "metainfo.source", "pk": 16077, "fields": {"orig_filename": "Fillunger_Marie_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421059}}, {"model": "metainfo.source", "pk": 16078, "fields": {"orig_filename": "Fillunger_Paul_1883_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421060}}, {"model": "metainfo.source", "pk": 16079, "fields": {"orig_filename": "Filtsch_Johann_1753_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421061}}, {"model": "metainfo.source", "pk": 16080, "fields": {"orig_filename": "Filtsch_Karl_1830_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315", "author": "", "orig_id": 1421062}}, {"model": "metainfo.source", "pk": 16081, "fields": {"orig_filename": "Filzer_Hans_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421064}}, {"model": "metainfo.source", "pk": 16082, "fields": {"orig_filename": "Filz_Fidelis_1777_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 315f.", "author": "", "orig_id": 1421063}}, {"model": "metainfo.source", "pk": 16083, "fields": {"orig_filename": "Finaczy_Ernst_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421065}}, {"model": "metainfo.source", "pk": 16084, "fields": {"orig_filename": "Findeisen_Julius_1809_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421066}}, {"model": "metainfo.source", "pk": 16085, "fields": {"orig_filename": "Finger_Alfred_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421140}}, {"model": "metainfo.source", "pk": 16086, "fields": {"orig_filename": "Finger_August_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316", "author": "", "orig_id": 1421141}}, {"model": "metainfo.source", "pk": 16087, "fields": {"orig_filename": "Finger_Ernst_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 316f.", "author": "", "orig_id": 1421142}}, {"model": "metainfo.source", "pk": 16088, "fields": {"orig_filename": "Finger_Josef_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421143}}, {"model": "metainfo.source", "pk": 16089, "fields": {"orig_filename": "Finger_Julius_1826_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421144}}, {"model": "metainfo.source", "pk": 16090, "fields": {"orig_filename": "Finkel_Ludwig-Michal-Emanuel_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421149}}, {"model": "metainfo.source", "pk": 16091, "fields": {"orig_filename": "Fink_Anton-Barnabas_1867_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421146}}, {"model": "metainfo.source", "pk": 16092, "fields": {"orig_filename": "Fink_Anton_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317", "author": "", "orig_id": 1421145}}, {"model": "metainfo.source", "pk": 16093, "fields": {"orig_filename": "Fink_Jodok_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 317f.", "author": "", "orig_id": 1421147}}, {"model": "metainfo.source", "pk": 16094, "fields": {"orig_filename": "Fink_Josef-Alois_1796_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421148}}, {"model": "metainfo.source", "pk": 16095, "fields": {"orig_filename": "Firnhaber_Friedrich_1818_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421150}}, {"model": "metainfo.source", "pk": 16096, "fields": {"orig_filename": "Firtsch_Georg_1860_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 318", "author": "", "orig_id": 1421151}}, {"model": "metainfo.source", "pk": 16097, "fields": {"orig_filename": "Fischbach_Johann_1797_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421152}}, {"model": "metainfo.source", "pk": 16098, "fields": {"orig_filename": "Fischel_Alfred_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421154}}, {"model": "metainfo.source", "pk": 16099, "fields": {"orig_filename": "Fischel_Alfred_1868_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421153}}, {"model": "metainfo.source", "pk": 16100, "fields": {"orig_filename": "Fischel_David-Gabriel_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421155}}, {"model": "metainfo.source", "pk": 16101, "fields": {"orig_filename": "Fischel_Ernst_1868_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421156}}, {"model": "metainfo.source", "pk": 16102, "fields": {"orig_filename": "Fischer-Ankern_Anton_1812_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421252}}, {"model": "metainfo.source", "pk": 16103, "fields": {"orig_filename": "Fischer-Roesslerstamm_Franz_1819_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421253}}, {"model": "metainfo.source", "pk": 16104, "fields": {"orig_filename": "Fischer-Roesslerstamm_Josef-Emanuel_1787_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421254}}, {"model": "metainfo.source", "pk": 16105, "fields": {"orig_filename": "Fischer-Zickhartsburg_Friedrich_1860_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421255}}, {"model": "metainfo.source", "pk": 16106, "fields": {"orig_filename": "Fischer_Albert_1830_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319", "author": "", "orig_id": 1421157}}, {"model": "metainfo.source", "pk": 16107, "fields": {"orig_filename": "Fischer_Alois_1796_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 319f.", "author": "", "orig_id": 1421158}}, {"model": "metainfo.source", "pk": 16108, "fields": {"orig_filename": "Fischer_Berthold_1807_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421159}}, {"model": "metainfo.source", "pk": 16109, "fields": {"orig_filename": "Fischer_Christian_1879_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421161}}, {"model": "metainfo.source", "pk": 16110, "fields": {"orig_filename": "Fischer_Cyrill_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421160}}, {"model": "metainfo.source", "pk": 16111, "fields": {"orig_filename": "Fischer_Daniel_1773_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320", "author": "", "orig_id": 1421162}}, {"model": "metainfo.source", "pk": 16112, "fields": {"orig_filename": "Fischer_Eduard_1846_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 320f.", "author": "", "orig_id": 1421163}}, {"model": "metainfo.source", "pk": 16113, "fields": {"orig_filename": "Fischer_Eduard_1862_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421164}}, {"model": "metainfo.source", "pk": 16114, "fields": {"orig_filename": "Fischer_Engelbert_1833_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421237}}, {"model": "metainfo.source", "pk": 16115, "fields": {"orig_filename": "Fischer_Felix_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421238}}, {"model": "metainfo.source", "pk": 16116, "fields": {"orig_filename": "Fischer_Franz_1857_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421239}}, {"model": "metainfo.source", "pk": 16117, "fields": {"orig_filename": "Fischer_Friedrich_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421240}}, {"model": "metainfo.source", "pk": 16118, "fields": {"orig_filename": "Fischer_Friedrich_1826_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321", "author": "", "orig_id": 1421241}}, {"model": "metainfo.source", "pk": 16119, "fields": {"orig_filename": "Fischer_Jacob_1849_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 321f.", "author": "", "orig_id": 1421242}}, {"model": "metainfo.source", "pk": 16120, "fields": {"orig_filename": "Fischer_Johann-Conrad_1773_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421243}}, {"model": "metainfo.source", "pk": 16121, "fields": {"orig_filename": "Fischer_Johann-Martin_1740_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421244}}, {"model": "metainfo.source", "pk": 16122, "fields": {"orig_filename": "Fischer_Josef_1858_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322", "author": "", "orig_id": 1421245}}, {"model": "metainfo.source", "pk": 16123, "fields": {"orig_filename": "Fischer_Joseph_1780_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 322f.", "author": "", "orig_id": 1421246}}, {"model": "metainfo.source", "pk": 16124, "fields": {"orig_filename": "Fischer_Karl-Wilhelm_1800_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421247}}, {"model": "metainfo.source", "pk": 16125, "fields": {"orig_filename": "Fischer_Lorenz-Maximilian_1782_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421248}}, {"model": "metainfo.source", "pk": 16126, "fields": {"orig_filename": "Fischer_Ludwig_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323", "author": "", "orig_id": 1421249}}, {"model": "metainfo.source", "pk": 16127, "fields": {"orig_filename": "Fischer_Rudolf_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 323f.", "author": "", "orig_id": 1421250}}, {"model": "metainfo.source", "pk": 16128, "fields": {"orig_filename": "Fischer_Sigmund-Caspar_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2172531}}, {"model": "metainfo.source", "pk": 16129, "fields": {"orig_filename": "Fischer_Wilhelm_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 324", "author": "", "orig_id": 1421251}}, {"model": "metainfo.source", "pk": 16130, "fields": {"orig_filename": "Fischhof_Adolf_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421256}}, {"model": "metainfo.source", "pk": 16131, "fields": {"orig_filename": "Fischhof_Joseph_1804_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325", "author": "", "orig_id": 1421257}}, {"model": "metainfo.source", "pk": 16132, "fields": {"orig_filename": "Fischnaler_Konrad_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 325f.", "author": "", "orig_id": 1421258}}, {"model": "metainfo.source", "pk": 16133, "fields": {"orig_filename": "Fitzinger_Franz_1800_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421259}}, {"model": "metainfo.source", "pk": 16134, "fields": {"orig_filename": "Fitzinger_Leopold-Joseph_1802_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421260}}, {"model": "metainfo.source", "pk": 16135, "fields": {"orig_filename": "Fitzner_Rudolf_1868_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421261}}, {"model": "metainfo.source", "pk": 16136, "fields": {"orig_filename": "Fjord_Olaf_1897_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2269398}}, {"model": "metainfo.source", "pk": 16137, "fields": {"orig_filename": "Flach_Jozef_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421262}}, {"model": "metainfo.source", "pk": 16138, "fields": {"orig_filename": "Flajsman_Jurij_1818_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326", "author": "", "orig_id": 1421335}}, {"model": "metainfo.source", "pk": 16139, "fields": {"orig_filename": "Flatt-Alfoeld_Karl_1853_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 326f.", "author": "", "orig_id": 1421336}}, {"model": "metainfo.source", "pk": 16140, "fields": {"orig_filename": "Flattich_Wilhelm_1826_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421337}}, {"model": "metainfo.source", "pk": 16141, "fields": {"orig_filename": "Flatz_Gebhard_1800_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421338}}, {"model": "metainfo.source", "pk": 16142, "fields": {"orig_filename": "Flechner_Pauline_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421339}}, {"model": "metainfo.source", "pk": 16143, "fields": {"orig_filename": "Fleckh_Johann-Anton_1822_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 327", "author": "", "orig_id": 1421340}}, {"model": "metainfo.source", "pk": 16144, "fields": {"orig_filename": "Fleischer-Eichenkranz_Ferdinand_1777_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421343}}, {"model": "metainfo.source", "pk": 16145, "fields": {"orig_filename": "Fleischer_Anton_1845_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421341}}, {"model": "metainfo.source", "pk": 16146, "fields": {"orig_filename": "Fleischer_Max_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421342}}, {"model": "metainfo.source", "pk": 16147, "fields": {"orig_filename": "Fleischhacker_Robert_1855_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1445120}}, {"model": "metainfo.source", "pk": 16148, "fields": {"orig_filename": "Fleischl-Marxow_Ernst_1846_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421344}}, {"model": "metainfo.source", "pk": 16149, "fields": {"orig_filename": "Fleischmann_Andreas_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328", "author": "", "orig_id": 1421345}}, {"model": "metainfo.source", "pk": 16150, "fields": {"orig_filename": "Fleischmann_Benno_1906_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 328f.", "author": "", "orig_id": 1421346}}, {"model": "metainfo.source", "pk": 16151, "fields": {"orig_filename": "Fleischmann_Leo_1871_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421347}}, {"model": "metainfo.source", "pk": 16152, "fields": {"orig_filename": "Fleischner_Josef_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421348}}, {"model": "metainfo.source", "pk": 16153, "fields": {"orig_filename": "Fleissner_Hans_1881_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421349}}, {"model": "metainfo.source", "pk": 16154, "fields": {"orig_filename": "Flesch_Carl_1873_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329", "author": "", "orig_id": 1421350}}, {"model": "metainfo.source", "pk": 16155, "fields": {"orig_filename": "Fleszar_Albin-Jan_1888_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 329f.", "author": "", "orig_id": 1421351}}, {"model": "metainfo.source", "pk": 16156, "fields": {"orig_filename": "Fligely_August_1810_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421352}}, {"model": "metainfo.source", "pk": 16157, "fields": {"orig_filename": "Flir_Alois-Kasimir_1805_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421353}}, {"model": "metainfo.source", "pk": 16158, "fields": {"orig_filename": "Flis_Janez_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421354}}, {"model": "metainfo.source", "pk": 16159, "fields": {"orig_filename": "Floderer_Wilhelm_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421355}}, {"model": "metainfo.source", "pk": 16160, "fields": {"orig_filename": "Floeck_Oswald_1874_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330", "author": "", "orig_id": 1421356}}, {"model": "metainfo.source", "pk": 16161, "fields": {"orig_filename": "Florschuetz_Josip_1864_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 330f.", "author": "", "orig_id": 1421357}}, {"model": "metainfo.source", "pk": 16162, "fields": {"orig_filename": "Fluck-Leidenkron_Josef-Bruno_1805_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421431}}, {"model": "metainfo.source", "pk": 16163, "fields": {"orig_filename": "Fluck-Leidenkron_Moriz-Bruno_1802_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421430}}, {"model": "metainfo.source", "pk": 16164, "fields": {"orig_filename": "Flunk_Matthias_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331", "author": "", "orig_id": 1421432}}, {"model": "metainfo.source", "pk": 16165, "fields": {"orig_filename": "Fodor_Joseph_1843_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 331f.", "author": "", "orig_id": 1421433}}, {"model": "metainfo.source", "pk": 16166, "fields": {"orig_filename": "Foelseis_Josef_1760_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421434}}, {"model": "metainfo.source", "pk": 16167, "fields": {"orig_filename": "Foerstel_Gertrude_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421435}}, {"model": "metainfo.source", "pk": 16168, "fields": {"orig_filename": "Foerster-Lauterer_Berta_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421442}}, {"model": "metainfo.source", "pk": 16169, "fields": {"orig_filename": "Foerster-Streffleur_Rudolf_1864_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333f.", "author": "", "orig_id": 1421443}}, {"model": "metainfo.source", "pk": 16170, "fields": {"orig_filename": "Foerster_Anton_1837_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332", "author": "", "orig_id": 1421436}}, {"model": "metainfo.source", "pk": 16171, "fields": {"orig_filename": "Foerster_August_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421437}}, {"model": "metainfo.source", "pk": 16172, "fields": {"orig_filename": "Foerster_Emil_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 332f.", "author": "", "orig_id": 1421438}}, {"model": "metainfo.source", "pk": 16173, "fields": {"orig_filename": "Foerster_Florentine_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421439}}, {"model": "metainfo.source", "pk": 16174, "fields": {"orig_filename": "Foerster_Ludwig-Christian-Friedrich_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421440}}, {"model": "metainfo.source", "pk": 16175, "fields": {"orig_filename": "Foerster_Wendelin_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 333", "author": "", "orig_id": 1421441}}, {"model": "metainfo.source", "pk": 16176, "fields": {"orig_filename": "Foest-Monshoff_Rudolf_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 334", "author": "", "orig_id": 1421444}}, {"model": "metainfo.source", "pk": 16177, "fields": {"orig_filename": "Feid_Joseph_1806_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420682}}, {"model": "metainfo.source", "pk": 16178, "fields": {"orig_filename": "Feifalik_Julius_1833_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290f.", "author": "", "orig_id": 1420683}}, {"model": "metainfo.source", "pk": 16179, "fields": {"orig_filename": "Feigel_Longin_1845_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420684}}, {"model": "metainfo.source", "pk": 16180, "fields": {"orig_filename": "Feigerle_Ignaz_1795_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420685}}, {"model": "metainfo.source", "pk": 16181, "fields": {"orig_filename": "Feigl_Hans_1869_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420686}}, {"model": "metainfo.source", "pk": 16182, "fields": {"orig_filename": "Feilmoser_Andreas_1777_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291f.", "author": "", "orig_id": 1420688}}, {"model": "metainfo.source", "pk": 16183, "fields": {"orig_filename": "Feil_Joseph_1811_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 291", "author": "", "orig_id": 1420687}}, {"model": "metainfo.source", "pk": 16184, "fields": {"orig_filename": "Feine_Paul_1859_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420690}}, {"model": "metainfo.source", "pk": 16185, "fields": {"orig_filename": "Fein_Johann_1864_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420689}}, {"model": "metainfo.source", "pk": 16186, "fields": {"orig_filename": "Feistmantel_Franz_1786_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420691}}, {"model": "metainfo.source", "pk": 16187, "fields": {"orig_filename": "Feistmantel_Karl_1819_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292", "author": "", "orig_id": 1420692}}, {"model": "metainfo.source", "pk": 16188, "fields": {"orig_filename": "Feistmantel_Karl_1833_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 292f.", "author": "", "orig_id": 1420693}}, {"model": "metainfo.source", "pk": 16189, "fields": {"orig_filename": "Feistmantel_Ottokar_1848_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420694}}, {"model": "metainfo.source", "pk": 16190, "fields": {"orig_filename": "Feistmantel_Rudolf_1805_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420695}}, {"model": "metainfo.source", "pk": 16191, "fields": {"orig_filename": "Feitler_Siegmund_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420696}}, {"model": "metainfo.source", "pk": 16192, "fields": {"orig_filename": "Fejerpataky_Ladislaus_1857_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293f.", "author": "", "orig_id": 1420698}}, {"model": "metainfo.source", "pk": 16193, "fields": {"orig_filename": "Fejervary-Komlos-Keresztes_Geza_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420699}}, {"model": "metainfo.source", "pk": 16194, "fields": {"orig_filename": "Fejer_Georg_1766_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 293", "author": "", "orig_id": 1420697}}, {"model": "metainfo.source", "pk": 16195, "fields": {"orig_filename": "Fekonja_Andrej_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420768}}, {"model": "metainfo.source", "pk": 16196, "fields": {"orig_filename": "Fekonja_Roman_1868_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420769}}, {"model": "metainfo.source", "pk": 16197, "fields": {"orig_filename": "Felbinger_Franz_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294", "author": "", "orig_id": 1420770}}, {"model": "metainfo.source", "pk": 16198, "fields": {"orig_filename": "Felderer_Hieronymus_1840_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420775}}, {"model": "metainfo.source", "pk": 16199, "fields": {"orig_filename": "Felder_Cajetan_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 294f.", "author": "", "orig_id": 1420772}}, {"model": "metainfo.source", "pk": 16200, "fields": {"orig_filename": "Felder_Franz-Michael_1839_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420773}}, {"model": "metainfo.source", "pk": 16201, "fields": {"orig_filename": "Felder_Rudolf_1842_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295", "author": "", "orig_id": 1420774}}, {"model": "metainfo.source", "pk": 16202, "fields": {"orig_filename": "Feldhammer_Jacob_1882_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2029476}}, {"model": "metainfo.source", "pk": 16203, "fields": {"orig_filename": "Feldkircher_Josef_1812_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 295f.", "author": "", "orig_id": 1420776}}, {"model": "metainfo.source", "pk": 16204, "fields": {"orig_filename": "Feldmann_Leopold_1802_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420778}}, {"model": "metainfo.source", "pk": 16205, "fields": {"orig_filename": "Feldman_Wilhelm_1868_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420777}}, {"model": "metainfo.source", "pk": 16206, "fields": {"orig_filename": "Feldner_Gundisalvus_1849_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420779}}, {"model": "metainfo.source", "pk": 16207, "fields": {"orig_filename": "Felgel-Farnholz_Anton_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420780}}, {"model": "metainfo.source", "pk": 16208, "fields": {"orig_filename": "Felix_Eugen_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296", "author": "", "orig_id": 1420782}}, {"model": "metainfo.source", "pk": 16209, "fields": {"orig_filename": "Felix_Herbert_1908_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147891}}, {"model": "metainfo.source", "pk": 16210, "fields": {"orig_filename": "Fellinger_Johann-Georg_1781_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 296f.", "author": "", "orig_id": 1420783}}, {"model": "metainfo.source", "pk": 16211, "fields": {"orig_filename": "Fellner-Feldegg_Christoph_1789_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420787}}, {"model": "metainfo.source", "pk": 16212, "fields": {"orig_filename": "Fellner-Feldegg_Ferdinand_1855_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420788}}, {"model": "metainfo.source", "pk": 16213, "fields": {"orig_filename": "Fellner_Ferdinand-I_1815_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420784}}, {"model": "metainfo.source", "pk": 16214, "fields": {"orig_filename": "Fellner_Ferdinand-Ii_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420785}}, {"model": "metainfo.source", "pk": 16215, "fields": {"orig_filename": "Fellner_Michael-Ignaz_1841_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420786}}, {"model": "metainfo.source", "pk": 16216, "fields": {"orig_filename": "Felmayer_Franz_1828_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 297", "author": "", "orig_id": 1420789}}, {"model": "metainfo.source", "pk": 16217, "fields": {"orig_filename": "Felner_Koloman_1750_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420861}}, {"model": "metainfo.source", "pk": 16218, "fields": {"orig_filename": "Felsenreich_Anton_1848_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420862}}, {"model": "metainfo.source", "pk": 16219, "fields": {"orig_filename": "Fendi_Peter_1796_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420863}}, {"model": "metainfo.source", "pk": 16220, "fields": {"orig_filename": "Fenner-Fenneberg_Daniel_1820_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298", "author": "", "orig_id": 1420864}}, {"model": "metainfo.source", "pk": 16221, "fields": {"orig_filename": "Fenyes_Alexius_1807_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 298f.", "author": "", "orig_id": 1420865}}, {"model": "metainfo.source", "pk": 16222, "fields": {"orig_filename": "Fenyi_Julius_1845_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299", "author": "", "orig_id": 1420866}}, {"model": "metainfo.source", "pk": 16223, "fields": {"orig_filename": "Fenzl_Eduard_1808_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299", "author": "", "orig_id": 1420867}}, {"model": "metainfo.source", "pk": 16224, "fields": {"orig_filename": "Ferdinand-Maximilian___1832_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300f.", "author": "", "orig_id": 1420872}}, {"model": "metainfo.source", "pk": 16225, "fields": {"orig_filename": "Ferdinand_I_1793_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 299f.", "author": "", "orig_id": 1420869}}, {"model": "metainfo.source", "pk": 16226, "fields": {"orig_filename": "Ferdinand_Karl-Josef_1781_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300", "author": "", "orig_id": 1420871}}, {"model": "metainfo.source", "pk": 16227, "fields": {"orig_filename": "Ferdinand__1769_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 300", "author": "", "orig_id": 1420870}}, {"model": "metainfo.source", "pk": 16228, "fields": {"orig_filename": "Ferenczi_Zoltan_1857_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 301", "author": "", "orig_id": 1420873}}, {"model": "metainfo.source", "pk": 16229, "fields": {"orig_filename": "Ferenczy_Franz_1835_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 301f.", "author": "", "orig_id": 1420874}}, {"model": "metainfo.source", "pk": 16230, "fields": {"orig_filename": "Ferenczy_Ida_1846_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420875}}, {"model": "metainfo.source", "pk": 16231, "fields": {"orig_filename": "Ferenczy_Josef_1855_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420877}}, {"model": "metainfo.source", "pk": 16232, "fields": {"orig_filename": "Ferenczy_Jose_1852_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420876}}, {"model": "metainfo.source", "pk": 16233, "fields": {"orig_filename": "Ferenczy_Karl_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420878}}, {"model": "metainfo.source", "pk": 16234, "fields": {"orig_filename": "Ferenczy_Stefan_1792_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420879}}, {"model": "metainfo.source", "pk": 16235, "fields": {"orig_filename": "Ferk_Franz_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 302", "author": "", "orig_id": 1420880}}, {"model": "metainfo.source", "pk": 16236, "fields": {"orig_filename": "Fermendzin_Eusebije_1845_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420881}}, {"model": "metainfo.source", "pk": 16237, "fields": {"orig_filename": "Fernau_Albert_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420882}}, {"model": "metainfo.source", "pk": 16238, "fields": {"orig_filename": "Ferrari_Emil_1843_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303", "author": "", "orig_id": 1420953}}, {"model": "metainfo.source", "pk": 16239, "fields": {"orig_filename": "Ferstel_Heinrich_1828_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 303f.", "author": "", "orig_id": 1420954}}, {"model": "metainfo.source", "pk": 16240, "fields": {"orig_filename": "Ferstel_Max_1859_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 304", "author": "", "orig_id": 1420955}}, {"model": "metainfo.source", "pk": 16241, "fields": {"orig_filename": "Fessler_Ignaz-Aurel_1756_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 304f.", "author": "", "orig_id": 1420956}}, {"model": "metainfo.source", "pk": 16242, "fields": {"orig_filename": "Fessler_Johann-Bapt_1803_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420957}}, {"model": "metainfo.source", "pk": 16243, "fields": {"orig_filename": "Fessler_Josef_1813_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420958}}, {"model": "metainfo.source", "pk": 16244, "fields": {"orig_filename": "Festerburg_Gerard-Edward_1843_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420961}}, {"model": "metainfo.source", "pk": 16245, "fields": {"orig_filename": "Festetics_Georg_1755_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420962}}, {"model": "metainfo.source", "pk": 16246, "fields": {"orig_filename": "Fest_Bernhard_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305", "author": "", "orig_id": 1420959}}, {"model": "metainfo.source", "pk": 16247, "fields": {"orig_filename": "Fest_Emerich_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 305f.", "author": "", "orig_id": 1420960}}, {"model": "metainfo.source", "pk": 16248, "fields": {"orig_filename": "Feszl_Friedrich_1821_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420963}}, {"model": "metainfo.source", "pk": 16249, "fields": {"orig_filename": "Feszty_Arpad_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306", "author": "", "orig_id": 1420964}}, {"model": "metainfo.source", "pk": 16250, "fields": {"orig_filename": "Feuchtersleben_Ernst_1806_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 306f.", "author": "", "orig_id": 1420965}}, {"model": "metainfo.source", "pk": 16251, "fields": {"orig_filename": "Feuchtwang_David_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420966}}, {"model": "metainfo.source", "pk": 16252, "fields": {"orig_filename": "Feuer_Nathanael_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420967}}, {"model": "metainfo.source", "pk": 16253, "fields": {"orig_filename": "Fey_Emil_1886_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307", "author": "", "orig_id": 1420968}}, {"model": "metainfo.source", "pk": 16254, "fields": {"orig_filename": "Fiala_Eduard_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 307f.", "author": "", "orig_id": 1420969}}, {"model": "metainfo.source", "pk": 16255, "fields": {"orig_filename": "Fiala_Franz_1861_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420970}}, {"model": "metainfo.source", "pk": 16256, "fields": {"orig_filename": "Fiala_Hans_1875_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420971}}, {"model": "metainfo.source", "pk": 16257, "fields": {"orig_filename": "Fibich_Stanislaw_1869_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420972}}, {"model": "metainfo.source", "pk": 16258, "fields": {"orig_filename": "Fibich_Zdenek_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308", "author": "", "orig_id": 1420973}}, {"model": "metainfo.source", "pk": 16259, "fields": {"orig_filename": "Fichtl_Franz_1762_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 308f.", "author": "", "orig_id": 1421042}}, {"model": "metainfo.source", "pk": 16260, "fields": {"orig_filename": "Fichtner_Carl_1805_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309", "author": "", "orig_id": 1421044}}, {"model": "metainfo.source", "pk": 16261, "fields": {"orig_filename": "Fickert_Auguste_1855_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 310", "author": "", "orig_id": 1421047}}, {"model": "metainfo.source", "pk": 16262, "fields": {"orig_filename": "Ficker_Adolph_1816_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309", "author": "", "orig_id": 1421045}}, {"model": "metainfo.source", "pk": 16263, "fields": {"orig_filename": "Ficker_Julius_1826_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 309f.", "author": "", "orig_id": 1421046}}, {"model": "metainfo.source", "pk": 16264, "fields": {"orig_filename": "Ficquelmont_Karl-Ludwig_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 310f.", "author": "", "orig_id": 1421048}}, {"model": "metainfo.source", "pk": 16265, "fields": {"orig_filename": "Fieber_Franz-Xaver_1807_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421050}}, {"model": "metainfo.source", "pk": 16266, "fields": {"orig_filename": "Fiedler_Bernhard_1816_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421051}}, {"model": "metainfo.source", "pk": 16267, "fields": {"orig_filename": "Fiedler_Bruno_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311f.", "author": "", "orig_id": 1421052}}, {"model": "metainfo.source", "pk": 16268, "fields": {"orig_filename": "Fiedler_Josef_1819_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420023}}, {"model": "metainfo.source", "pk": 16269, "fields": {"orig_filename": "Fiedler_Karl-Borromaeus_1817_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 311", "author": "", "orig_id": 1421049}}, {"model": "metainfo.source", "pk": 16270, "fields": {"orig_filename": "Fiedler_Tadeusz_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420024}}, {"model": "metainfo.source", "pk": 16271, "fields": {"orig_filename": "Fierich_Franciszek-Ksawery_1860_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420025}}, {"model": "metainfo.source", "pk": 16272, "fields": {"orig_filename": "Fierich_Maurycy_1856_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312", "author": "", "orig_id": 1420026}}, {"model": "metainfo.source", "pk": 16273, "fields": {"orig_filename": "Fierlinger_Julius_1829_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 312f.", "author": "", "orig_id": 1420027}}, {"model": "metainfo.source", "pk": 16274, "fields": {"orig_filename": "Figdor_Albert_1843_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420028}}, {"model": "metainfo.source", "pk": 16275, "fields": {"orig_filename": "Figdor_Wilhelm_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420029}}, {"model": "metainfo.source", "pk": 16276, "fields": {"orig_filename": "Figuly_Ignaz-Karl_1807_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313", "author": "", "orig_id": 1420030}}, {"model": "metainfo.source", "pk": 16277, "fields": {"orig_filename": "Fijalek_Jan-Nepomucen_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 313f.", "author": "", "orig_id": 1420031}}, {"model": "metainfo.source", "pk": 16278, "fields": {"orig_filename": "Fijan_Andrija_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421053}}, {"model": "metainfo.source", "pk": 16279, "fields": {"orig_filename": "Filarszky_Nandor_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 314", "author": "", "orig_id": 1421054}}, {"model": "metainfo.source", "pk": 16280, "fields": {"orig_filename": "Esterhazy_Paul-Iii-Anton_1786_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421890}}, {"model": "metainfo.source", "pk": 16281, "fields": {"orig_filename": "Estermann_Josef_1861_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269f.", "author": "", "orig_id": 1421891}}, {"model": "metainfo.source", "pk": 16282, "fields": {"orig_filename": "Estreicher_Alois-Raphael_1786_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421892}}, {"model": "metainfo.source", "pk": 16283, "fields": {"orig_filename": "Estreicher_Karl-Josef_1827_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421893}}, {"model": "metainfo.source", "pk": 16284, "fields": {"orig_filename": "Estreicher_Stanislaus_1869_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421894}}, {"model": "metainfo.source", "pk": 16285, "fields": {"orig_filename": "Eterovic_Karlo_1874_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270", "author": "", "orig_id": 1421895}}, {"model": "metainfo.source", "pk": 16286, "fields": {"orig_filename": "Ethofer_Rosa_1877_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 270f.", "author": "", "orig_id": 1421896}}, {"model": "metainfo.source", "pk": 16287, "fields": {"orig_filename": "Ethofer_Theodor-Josef_1849_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421897}}, {"model": "metainfo.source", "pk": 16288, "fields": {"orig_filename": "Etienne_Michael_1827_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421898}}, {"model": "metainfo.source", "pk": 16289, "fields": {"orig_filename": "Etrich_Igo_1879_1967.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1442254}}, {"model": "metainfo.source", "pk": 16290, "fields": {"orig_filename": "Ettel_Bonaventura_1866_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421899}}, {"model": "metainfo.source", "pk": 16291, "fields": {"orig_filename": "Ettenreich_Christian-Josef_1800_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421900}}, {"model": "metainfo.source", "pk": 16292, "fields": {"orig_filename": "Ettinger_Josef_1822_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421902}}, {"model": "metainfo.source", "pk": 16293, "fields": {"orig_filename": "Ettingshausen_Andreas_1796_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271f.", "author": "", "orig_id": 1421903}}, {"model": "metainfo.source", "pk": 16294, "fields": {"orig_filename": "Ettingshausen_Constantin_1826_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272", "author": "", "orig_id": 1421904}}, {"model": "metainfo.source", "pk": 16295, "fields": {"orig_filename": "Etti_Karl_1825_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 271", "author": "", "orig_id": 1421901}}, {"model": "metainfo.source", "pk": 16296, "fields": {"orig_filename": "Ettmayer-Adelsburg_Karl_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272", "author": "", "orig_id": 1421905}}, {"model": "metainfo.source", "pk": 16297, "fields": {"orig_filename": "Etzelt-Loewenfels_Josef_1769_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421907}}, {"model": "metainfo.source", "pk": 16298, "fields": {"orig_filename": "Etzel_Karl_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 272f.", "author": "", "orig_id": 1421906}}, {"model": "metainfo.source", "pk": 16299, "fields": {"orig_filename": "Eugling_Max_1880_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421908}}, {"model": "metainfo.source", "pk": 16300, "fields": {"orig_filename": "Eurich_Friedrich-Emanuel_1772_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421909}}, {"model": "metainfo.source", "pk": 16301, "fields": {"orig_filename": "Evers_Carl_1819_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273", "author": "", "orig_id": 1421910}}, {"model": "metainfo.source", "pk": 16302, "fields": {"orig_filename": "Ewald_Carl_1865_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 273f.", "author": "", "orig_id": 1421911}}, {"model": "metainfo.source", "pk": 16303, "fields": {"orig_filename": "Exl_Ferdinand_1875_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274", "author": "", "orig_id": 1421913}}, {"model": "metainfo.source", "pk": 16304, "fields": {"orig_filename": "Exner-Ewarten_Alfred_1875_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421991}}, {"model": "metainfo.source", "pk": 16305, "fields": {"orig_filename": "Exner-Ewarten_Felix-Maria_1876_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276f.", "author": "", "orig_id": 1421992}}, {"model": "metainfo.source", "pk": 16306, "fields": {"orig_filename": "Exner-Ewarten_Sigmund_1846_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421993}}, {"model": "metainfo.source", "pk": 16307, "fields": {"orig_filename": "Exner_Adolf_1841_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274", "author": "", "orig_id": 1421985}}, {"model": "metainfo.source", "pk": 16308, "fields": {"orig_filename": "Exner_Emilie_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 274f.", "author": "", "orig_id": 1421986}}, {"model": "metainfo.source", "pk": 16309, "fields": {"orig_filename": "Exner_Franz-Serafin_1802_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 275f.", "author": "", "orig_id": 1421988}}, {"model": "metainfo.source", "pk": 16310, "fields": {"orig_filename": "Exner_Franz_1849_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 275", "author": "", "orig_id": 1421987}}, {"model": "metainfo.source", "pk": 16311, "fields": {"orig_filename": "Exner_Karl_1842_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421989}}, {"model": "metainfo.source", "pk": 16312, "fields": {"orig_filename": "Exner_Wilhelm-Franz_1840_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 276", "author": "", "orig_id": 1421990}}, {"model": "metainfo.source", "pk": 16313, "fields": {"orig_filename": "Eybler_Joseph_1765_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421995}}, {"model": "metainfo.source", "pk": 16314, "fields": {"orig_filename": "Eybl_Franz_1806_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277", "author": "", "orig_id": 1421994}}, {"model": "metainfo.source", "pk": 16315, "fields": {"orig_filename": "Eybner_Otto_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 277f.", "author": "", "orig_id": 1421996}}, {"model": "metainfo.source", "pk": 16316, "fields": {"orig_filename": "Eyrl-Waldgries-Liebenaich_Georg_1849_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421997}}, {"model": "metainfo.source", "pk": 16317, "fields": {"orig_filename": "Eysler_Edmund_1874_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421998}}, {"model": "metainfo.source", "pk": 16318, "fields": {"orig_filename": "Eyssen_Vinzenz_1760_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278f.", "author": "", "orig_id": 1422000}}, {"model": "metainfo.source", "pk": 16319, "fields": {"orig_filename": "Fabbroni_Giovanni-Valentino-Mattia_1752_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422001}}, {"model": "metainfo.source", "pk": 16320, "fields": {"orig_filename": "Faber_Moritz_1837_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422002}}, {"model": "metainfo.source", "pk": 16321, "fields": {"orig_filename": "Fabian_Oskar_1846_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422003}}, {"model": "metainfo.source", "pk": 16322, "fields": {"orig_filename": "Fabini_Johann-Gottlieb_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279", "author": "", "orig_id": 1422004}}, {"model": "metainfo.source", "pk": 16323, "fields": {"orig_filename": "Fabini_Joseph-Samuel_1794_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 279f.", "author": "", "orig_id": 1422007}}, {"model": "metainfo.source", "pk": 16324, "fields": {"orig_filename": "Fabini_Ludwig_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422005}}, {"model": "metainfo.source", "pk": 16325, "fields": {"orig_filename": "Fabini_Theodor_1828_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422006}}, {"model": "metainfo.source", "pk": 16326, "fields": {"orig_filename": "Fabinyi_Rudolf_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422008}}, {"model": "metainfo.source", "pk": 16327, "fields": {"orig_filename": "Fabjancic_Vladislav_1894_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422009}}, {"model": "metainfo.source", "pk": 16328, "fields": {"orig_filename": "Fabricius_Otto_1857_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 280", "author": "", "orig_id": 1422075}}, {"model": "metainfo.source", "pk": 16329, "fields": {"orig_filename": "Fabris_Anton_1792_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422076}}, {"model": "metainfo.source", "pk": 16330, "fields": {"orig_filename": "Fabritius_Karl_1826_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422077}}, {"model": "metainfo.source", "pk": 16331, "fields": {"orig_filename": "Facchini_Francesco_1788_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422078}}, {"model": "metainfo.source", "pk": 16332, "fields": {"orig_filename": "Fadrusz_Johann_1858_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422079}}, {"model": "metainfo.source", "pk": 16333, "fields": {"orig_filename": "Faerber_Heinrich_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 281", "author": "", "orig_id": 1422080}}, {"model": "metainfo.source", "pk": 16334, "fields": {"orig_filename": "Faerber_Meir-Marcell_1908_1993.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465441}}, {"model": "metainfo.source", "pk": 16335, "fields": {"orig_filename": "Fahrbach_Josef_1804_1883.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422081}}, {"model": "metainfo.source", "pk": 16336, "fields": {"orig_filename": "Fahrbach_Philipp_1815_1885.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422082}}, {"model": "metainfo.source", "pk": 16337, "fields": {"orig_filename": "Fahringer_Josef_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422083}}, {"model": "metainfo.source", "pk": 16338, "fields": {"orig_filename": "Fahrngruber_Johannes_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422084}}, {"model": "metainfo.source", "pk": 16339, "fields": {"orig_filename": "Faistauer_Anton_1887_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282", "author": "", "orig_id": 1422085}}, {"model": "metainfo.source", "pk": 16340, "fields": {"orig_filename": "Fajgelj_Danilo_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 282f.", "author": "", "orig_id": 1422086}}, {"model": "metainfo.source", "pk": 16341, "fields": {"orig_filename": "Fajkmajer_Karl_1884_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422087}}, {"model": "metainfo.source", "pk": 16342, "fields": {"orig_filename": "Faktor_Emil_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422088}}, {"model": "metainfo.source", "pk": 16343, "fields": {"orig_filename": "Faktor_Franz-Josef_1861_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422089}}, {"model": "metainfo.source", "pk": 16344, "fields": {"orig_filename": "Falat_Julian_1853_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422090}}, {"model": "metainfo.source", "pk": 16345, "fields": {"orig_filename": "Falb_Rudolf_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 283", "author": "", "orig_id": 1422091}}, {"model": "metainfo.source", "pk": 16346, "fields": {"orig_filename": "Falke-Lilienstein_Hans_1862_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284f.", "author": "", "orig_id": 1422096}}, {"model": "metainfo.source", "pk": 16347, "fields": {"orig_filename": "Falkenhayn_Julius_1829_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422097}}, {"model": "metainfo.source", "pk": 16348, "fields": {"orig_filename": "Falke_Jakob_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422094}}, {"model": "metainfo.source", "pk": 16349, "fields": {"orig_filename": "Falke_Otto_1862_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422095}}, {"model": "metainfo.source", "pk": 16350, "fields": {"orig_filename": "Falkner_Julie_1867_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422098}}, {"model": "metainfo.source", "pk": 16351, "fields": {"orig_filename": "Falk_Maximilian_1828_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422092}}, {"model": "metainfo.source", "pk": 16352, "fields": {"orig_filename": "Falk_Norbert_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 284", "author": "", "orig_id": 1422093}}, {"model": "metainfo.source", "pk": 16353, "fields": {"orig_filename": "Faller_Nikola_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422165}}, {"model": "metainfo.source", "pk": 16354, "fields": {"orig_filename": "Fallmann_Engelbert_1884_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422166}}, {"model": "metainfo.source", "pk": 16355, "fields": {"orig_filename": "Fallmerayer_Jakob-Philipp_1790_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285f.", "author": "", "orig_id": 1422167}}, {"model": "metainfo.source", "pk": 16356, "fields": {"orig_filename": "Fallon_Ludwig-August_1776_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 286f.", "author": "", "orig_id": 1422168}}, {"model": "metainfo.source", "pk": 16357, "fields": {"orig_filename": "Fall_Leo_1873_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 285", "author": "", "orig_id": 1422099}}, {"model": "metainfo.source", "pk": 16358, "fields": {"orig_filename": "Falta_Wilhelm_1875_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422169}}, {"model": "metainfo.source", "pk": 16359, "fields": {"orig_filename": "Faltis_Evelyn_1890_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422170}}, {"model": "metainfo.source", "pk": 16360, "fields": {"orig_filename": "Faltis_Johann_1796_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422171}}, {"model": "metainfo.source", "pk": 16361, "fields": {"orig_filename": "Fancev_Franjo_1882_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422172}}, {"model": "metainfo.source", "pk": 16362, "fields": {"orig_filename": "Fanderlik_Joseph_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422173}}, {"model": "metainfo.source", "pk": 16363, "fields": {"orig_filename": "Fangor_Andrzej_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287", "author": "", "orig_id": 1422174}}, {"model": "metainfo.source", "pk": 16364, "fields": {"orig_filename": "Farga_Franz_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 287f.", "author": "", "orig_id": 1422175}}, {"model": "metainfo.source", "pk": 16365, "fields": {"orig_filename": "Farkas-Boeloen_Alexander_1795_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422177}}, {"model": "metainfo.source", "pk": 16366, "fields": {"orig_filename": "Farkas_Julius_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422176}}, {"model": "metainfo.source", "pk": 16367, "fields": {"orig_filename": "Farsky_Franz_1846_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422178}}, {"model": "metainfo.source", "pk": 16368, "fields": {"orig_filename": "Fassbender_Eugen_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1446406}}, {"model": "metainfo.source", "pk": 16369, "fields": {"orig_filename": "Fassel_Hirsch-Baer_1802_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422179}}, {"model": "metainfo.source", "pk": 16370, "fields": {"orig_filename": "Fasser_Rosa_1867_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 288", "author": "", "orig_id": 1422180}}, {"model": "metainfo.source", "pk": 16371, "fields": {"orig_filename": "Fatur_Lea_1865_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422181}}, {"model": "metainfo.source", "pk": 16372, "fields": {"orig_filename": "Faulmann_Karl_1835_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422182}}, {"model": "metainfo.source", "pk": 16373, "fields": {"orig_filename": "Fautz_Ludwig_1811_1880.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 3 (15.11.2014)", "author": "", "orig_id": 2247938}}, {"model": "metainfo.source", "pk": 16374, "fields": {"orig_filename": "Fay_Andreas_1786_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422183}}, {"model": "metainfo.source", "pk": 16375, "fields": {"orig_filename": "Fazekas_Michael_1766_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422184}}, {"model": "metainfo.source", "pk": 16376, "fields": {"orig_filename": "Federhofer_Karl_1885_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2082341}}, {"model": "metainfo.source", "pk": 16377, "fields": {"orig_filename": "Federler_Aloys_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422185}}, {"model": "metainfo.source", "pk": 16378, "fields": {"orig_filename": "Federn_Josef_1831_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 289", "author": "", "orig_id": 1422186}}, {"model": "metainfo.source", "pk": 16379, "fields": {"orig_filename": "Federowicz_Ignacy_1836_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420677}}, {"model": "metainfo.source", "pk": 16380, "fields": {"orig_filename": "Federowicz_Wladyslaw-Walenty_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420679}}, {"model": "metainfo.source", "pk": 16381, "fields": {"orig_filename": "Fedorowicz_Adam_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420678}}, {"model": "metainfo.source", "pk": 16382, "fields": {"orig_filename": "Feichter_Michael_1766_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420680}}, {"model": "metainfo.source", "pk": 16383, "fields": {"orig_filename": "Feichtinger_Johann-Nep_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 4, 1956), S. 290", "author": "", "orig_id": 1420681}}, {"model": "metainfo.source", "pk": 16384, "fields": {"orig_filename": "Endlicher_Stephan-Ladislaus_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 249", "author": "", "orig_id": 1421502}}, {"model": "metainfo.source", "pk": 16385, "fields": {"orig_filename": "Endl_Friedrich_1857_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248f.", "author": "", "orig_id": 1421429}}, {"model": "metainfo.source", "pk": 16386, "fields": {"orig_filename": "Endrici_Coelestin_1866_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 249f.", "author": "", "orig_id": 1421503}}, {"model": "metainfo.source", "pk": 16387, "fields": {"orig_filename": "Endroedy_Alexander_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421504}}, {"model": "metainfo.source", "pk": 16388, "fields": {"orig_filename": "Engehausen_Christine_1817_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421505}}, {"model": "metainfo.source", "pk": 16389, "fields": {"orig_filename": "Engel-Mainfelden_August_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421509}}, {"model": "metainfo.source", "pk": 16390, "fields": {"orig_filename": "Engelbrecht_August_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421510}}, {"model": "metainfo.source", "pk": 16391, "fields": {"orig_filename": "Engelhart_Josef_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251", "author": "", "orig_id": 1421511}}, {"model": "metainfo.source", "pk": 16392, "fields": {"orig_filename": "Engelmann_Eduard_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 251f.", "author": "", "orig_id": 1421512}}, {"model": "metainfo.source", "pk": 16393, "fields": {"orig_filename": "Engelmann_Eduard_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421513}}, {"model": "metainfo.source", "pk": 16394, "fields": {"orig_filename": "Engel_Franz_1898_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446234}}, {"model": "metainfo.source", "pk": 16395, "fields": {"orig_filename": "Engel_Friedrich_1867_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421506}}, {"model": "metainfo.source", "pk": 16396, "fields": {"orig_filename": "Engel_Jakob-Karl_1821_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421507}}, {"model": "metainfo.source", "pk": 16397, "fields": {"orig_filename": "Engel_Josef_1816_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 250", "author": "", "orig_id": 1421508}}, {"model": "metainfo.source", "pk": 16398, "fields": {"orig_filename": "Engel_Paul_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446243}}, {"model": "metainfo.source", "pk": 16399, "fields": {"orig_filename": "Engerth_Eduard_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421515}}, {"model": "metainfo.source", "pk": 16400, "fields": {"orig_filename": "Engerth_Erasmus_1796_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421516}}, {"model": "metainfo.source", "pk": 16401, "fields": {"orig_filename": "Engerth_Wilhelm_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 252", "author": "", "orig_id": 1421517}}, {"model": "metainfo.source", "pk": 16402, "fields": {"orig_filename": "Engeszer_Matyas_1812_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421518}}, {"model": "metainfo.source", "pk": 16403, "fields": {"orig_filename": "Englaender_Richard_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421522}}, {"model": "metainfo.source", "pk": 16404, "fields": {"orig_filename": "Englaender_Richard_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421523}}, {"model": "metainfo.source", "pk": 16405, "fields": {"orig_filename": "Englaender_Sigmund_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421524}}, {"model": "metainfo.source", "pk": 16406, "fields": {"orig_filename": "Englisch_Johann_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421525}}, {"model": "metainfo.source", "pk": 16407, "fields": {"orig_filename": "Englisch_Josef_1835_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253f.", "author": "", "orig_id": 1421526}}, {"model": "metainfo.source", "pk": 16408, "fields": {"orig_filename": "Englmann_Franz-Wilhelm_1862_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421527}}, {"model": "metainfo.source", "pk": 16409, "fields": {"orig_filename": "Engl_Hugo_1852_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421520}}, {"model": "metainfo.source", "pk": 16410, "fields": {"orig_filename": "Engl_Johann-Ev_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 253", "author": "", "orig_id": 1421521}}, {"model": "metainfo.source", "pk": 16411, "fields": {"orig_filename": "Enk-Burg_Karl-Maria_1808_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421528}}, {"model": "metainfo.source", "pk": 16412, "fields": {"orig_filename": "Enk-Burg_Michael_1788_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254", "author": "", "orig_id": 1421599}}, {"model": "metainfo.source", "pk": 16413, "fields": {"orig_filename": "Ennemoser_Josef_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 254f.", "author": "", "orig_id": 1421600}}, {"model": "metainfo.source", "pk": 16414, "fields": {"orig_filename": "Ens_Faustin_1782_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421602}}, {"model": "metainfo.source", "pk": 16415, "fields": {"orig_filename": "Entz_Geza_1842_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421603}}, {"model": "metainfo.source", "pk": 16416, "fields": {"orig_filename": "Enzenberg_Artur_1841_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255", "author": "", "orig_id": 1421604}}, {"model": "metainfo.source", "pk": 16417, "fields": {"orig_filename": "Enzenberg_Franz-Josef_1747_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 255f.", "author": "", "orig_id": 1421605}}, {"model": "metainfo.source", "pk": 16418, "fields": {"orig_filename": "Enzensperger_Bernhard_1788_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421606}}, {"model": "metainfo.source", "pk": 16419, "fields": {"orig_filename": "Enzensperger_Victor_1867_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421607}}, {"model": "metainfo.source", "pk": 16420, "fields": {"orig_filename": "Eoetvoes_Joseph_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256", "author": "", "orig_id": 1421608}}, {"model": "metainfo.source", "pk": 16421, "fields": {"orig_filename": "Eoetvoes_Karl_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 256f.", "author": "", "orig_id": 1421609}}, {"model": "metainfo.source", "pk": 16422, "fields": {"orig_filename": "Eoetvoes_Roland_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421610}}, {"model": "metainfo.source", "pk": 16423, "fields": {"orig_filename": "Eppich_Franz_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421611}}, {"model": "metainfo.source", "pk": 16424, "fields": {"orig_filename": "Eppich_Josef_1874_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257", "author": "", "orig_id": 1421612}}, {"model": "metainfo.source", "pk": 16425, "fields": {"orig_filename": "Eppinger_Hans_1846_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 257f.", "author": "", "orig_id": 1421613}}, {"model": "metainfo.source", "pk": 16426, "fields": {"orig_filename": "Eppinger_Hans_1879_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421614}}, {"model": "metainfo.source", "pk": 16427, "fields": {"orig_filename": "Eppstein_Julius_1846_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421615}}, {"model": "metainfo.source", "pk": 16428, "fields": {"orig_filename": "Epstein_Alexander_1867_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421616}}, {"model": "metainfo.source", "pk": 16429, "fields": {"orig_filename": "Epstein_Alois_1849_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 258", "author": "", "orig_id": 1421617}}, {"model": "metainfo.source", "pk": 16430, "fields": {"orig_filename": "Epstein_Jehudo_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421618}}, {"model": "metainfo.source", "pk": 16431, "fields": {"orig_filename": "Epstein_Julius_1832_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421619}}, {"model": "metainfo.source", "pk": 16432, "fields": {"orig_filename": "Epstein_Moritz_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421620}}, {"model": "metainfo.source", "pk": 16433, "fields": {"orig_filename": "Epstein_Richard_1869_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421621}}, {"model": "metainfo.source", "pk": 16434, "fields": {"orig_filename": "Erbach-Schoenberg_Karl-Eugen_1732_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421622}}, {"model": "metainfo.source", "pk": 16435, "fields": {"orig_filename": "Erban_Franz_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421697}}, {"model": "metainfo.source", "pk": 16436, "fields": {"orig_filename": "Erben_Anton_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 259", "author": "", "orig_id": 1421698}}, {"model": "metainfo.source", "pk": 16437, "fields": {"orig_filename": "Erben_Josef_1830_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421699}}, {"model": "metainfo.source", "pk": 16438, "fields": {"orig_filename": "Erben_Karl-Jaromir_1811_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421700}}, {"model": "metainfo.source", "pk": 16439, "fields": {"orig_filename": "Erben_Wilhelm_1864_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260", "author": "", "orig_id": 1421701}}, {"model": "metainfo.source", "pk": 16440, "fields": {"orig_filename": "Erdelyi_Johann_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 260f.", "author": "", "orig_id": 1421702}}, {"model": "metainfo.source", "pk": 16441, "fields": {"orig_filename": "Erdheim_Jakob_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421703}}, {"model": "metainfo.source", "pk": 16442, "fields": {"orig_filename": "Erdinger_Anton_1829_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421704}}, {"model": "metainfo.source", "pk": 16443, "fields": {"orig_filename": "Erdinger_Karl_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421705}}, {"model": "metainfo.source", "pk": 16444, "fields": {"orig_filename": "Erdoedy_Helene_1831_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421706}}, {"model": "metainfo.source", "pk": 16445, "fields": {"orig_filename": "Erhard_Andreas_1791_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 261", "author": "", "orig_id": 1421707}}, {"model": "metainfo.source", "pk": 16446, "fields": {"orig_filename": "Erhard_Ludwig_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421708}}, {"model": "metainfo.source", "pk": 16447, "fields": {"orig_filename": "Erhartt_Antonie_1826_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421709}}, {"model": "metainfo.source", "pk": 16448, "fields": {"orig_filename": "Erhartt_Louise_1844_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421710}}, {"model": "metainfo.source", "pk": 16449, "fields": {"orig_filename": "Erich_Maria_1865_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262", "author": "", "orig_id": 1421711}}, {"model": "metainfo.source", "pk": 16450, "fields": {"orig_filename": "Erjavec_Fran_1834_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 262f.", "author": "", "orig_id": 1421712}}, {"model": "metainfo.source", "pk": 16451, "fields": {"orig_filename": "Erkel_Elek_1843_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421713}}, {"model": "metainfo.source", "pk": 16452, "fields": {"orig_filename": "Erkel_Ferenc_1810_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421714}}, {"model": "metainfo.source", "pk": 16453, "fields": {"orig_filename": "Erkel_Gyula_1842_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421715}}, {"model": "metainfo.source", "pk": 16454, "fields": {"orig_filename": "Erkel_Sandor_1846_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421716}}, {"model": "metainfo.source", "pk": 16455, "fields": {"orig_filename": "Erker_Josef_1873_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263", "author": "", "orig_id": 1421717}}, {"model": "metainfo.source", "pk": 16456, "fields": {"orig_filename": "Erler_Franz-Christoph_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421720}}, {"model": "metainfo.source", "pk": 16457, "fields": {"orig_filename": "Erl_Anton_1848_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 263f.", "author": "", "orig_id": 1421718}}, {"model": "metainfo.source", "pk": 16458, "fields": {"orig_filename": "Erl_Joseph_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421719}}, {"model": "metainfo.source", "pk": 16459, "fields": {"orig_filename": "Ernest_Ludwig-Stefan_1826_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421793}}, {"model": "metainfo.source", "pk": 16460, "fields": {"orig_filename": "Ernst_Else_1874_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145473}}, {"model": "metainfo.source", "pk": 16461, "fields": {"orig_filename": "Ernst_Heinrich-Wilhelm_1814_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 264", "author": "", "orig_id": 1421794}}, {"model": "metainfo.source", "pk": 16462, "fields": {"orig_filename": "Ernst_Karl_1833_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421795}}, {"model": "metainfo.source", "pk": 16463, "fields": {"orig_filename": "Ernst_Leopold_1808_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421796}}, {"model": "metainfo.source", "pk": 16464, "fields": {"orig_filename": "Ernst_Marcin_1869_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421797}}, {"model": "metainfo.source", "pk": 16465, "fields": {"orig_filename": "Ernst_Rodolphe_1854_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421798}}, {"model": "metainfo.source", "pk": 16466, "fields": {"orig_filename": "Ernst_Wilhelm_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421799}}, {"model": "metainfo.source", "pk": 16467, "fields": {"orig_filename": "Eroess_Gyula_1855_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 265", "author": "", "orig_id": 1421800}}, {"model": "metainfo.source", "pk": 16468, "fields": {"orig_filename": "Errera_Ugo_1843_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421801}}, {"model": "metainfo.source", "pk": 16469, "fields": {"orig_filename": "Ersin_Alois_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421802}}, {"model": "metainfo.source", "pk": 16470, "fields": {"orig_filename": "Ertler_Bruno_1889_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421805}}, {"model": "metainfo.source", "pk": 16471, "fields": {"orig_filename": "Ertl_Dominik_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421803}}, {"model": "metainfo.source", "pk": 16472, "fields": {"orig_filename": "Ertl_Emil_1860_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421804}}, {"model": "metainfo.source", "pk": 16473, "fields": {"orig_filename": "Ertl_Moriz_1859_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420824}}, {"model": "metainfo.source", "pk": 16474, "fields": {"orig_filename": "Ertmann_Dorothea_1781_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266", "author": "", "orig_id": 1421806}}, {"model": "metainfo.source", "pk": 16475, "fields": {"orig_filename": "Erwein_Josef_1818_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 266f.", "author": "", "orig_id": 1421807}}, {"model": "metainfo.source", "pk": 16476, "fields": {"orig_filename": "Escherich_Gustav_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421809}}, {"model": "metainfo.source", "pk": 16477, "fields": {"orig_filename": "Escherich_Katharina_1855_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421810}}, {"model": "metainfo.source", "pk": 16478, "fields": {"orig_filename": "Escherich_Theodor_1857_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421811}}, {"model": "metainfo.source", "pk": 16479, "fields": {"orig_filename": "Eschig_Maximilian_1872_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421812}}, {"model": "metainfo.source", "pk": 16480, "fields": {"orig_filename": "Esch_Mathilde_1820_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 267", "author": "", "orig_id": 1421808}}, {"model": "metainfo.source", "pk": 16481, "fields": {"orig_filename": "Esders_Stefan_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421813}}, {"model": "metainfo.source", "pk": 16482, "fields": {"orig_filename": "Eskeles_Bernhard_1754_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421814}}, {"model": "metainfo.source", "pk": 16483, "fields": {"orig_filename": "Esser_Heinrich-Joseph_1818_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268", "author": "", "orig_id": 1421815}}, {"model": "metainfo.source", "pk": 16484, "fields": {"orig_filename": "Essigmann_Alois_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 268f.", "author": "", "orig_id": 1421816}}, {"model": "metainfo.source", "pk": 16485, "fields": {"orig_filename": "Esslair_Ferdinand_1772_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421817}}, {"model": "metainfo.source", "pk": 16486, "fields": {"orig_filename": "Estegar_Wartan-Joseph_1843_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421818}}, {"model": "metainfo.source", "pk": 16487, "fields": {"orig_filename": "Esterhazy_Moriz_1807_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421888}}, {"model": "metainfo.source", "pk": 16488, "fields": {"orig_filename": "Esterhazy_Nikolaus-Ii_1765_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 269", "author": "", "orig_id": 1421889}}, {"model": "metainfo.source", "pk": 16489, "fields": {"orig_filename": "Ehrhard_Albert-Josef-Maria_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 228", "author": "", "orig_id": 1421036}}, {"model": "metainfo.source", "pk": 16490, "fields": {"orig_filename": "Ehrhart-Ehrhartstein_Johann-Nep_1779_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421038}}, {"model": "metainfo.source", "pk": 16491, "fields": {"orig_filename": "Ehrhart_Vincenz_1823_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 228", "author": "", "orig_id": 1421037}}, {"model": "metainfo.source", "pk": 16492, "fields": {"orig_filename": "Ehrlich_Adolf_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421039}}, {"model": "metainfo.source", "pk": 16493, "fields": {"orig_filename": "Ehrlich_Eugen_1862_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421040}}, {"model": "metainfo.source", "pk": 16494, "fields": {"orig_filename": "Ehrlich_Franz-Karl_1808_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229", "author": "", "orig_id": 1421041}}, {"model": "metainfo.source", "pk": 16495, "fields": {"orig_filename": "Ehrlich_Heinrich_1822_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 229f.", "author": "", "orig_id": 1421116}}, {"model": "metainfo.source", "pk": 16496, "fields": {"orig_filename": "Ehrlich_Johann-Nep_1810_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421118}}, {"model": "metainfo.source", "pk": 16497, "fields": {"orig_filename": "Ehrlich_Johann_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421117}}, {"model": "metainfo.source", "pk": 16498, "fields": {"orig_filename": "Ehrlich_Josef-Ruben_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421119}}, {"model": "metainfo.source", "pk": 16499, "fields": {"orig_filename": "Ehrlich_Lambert_1878_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421120}}, {"model": "metainfo.source", "pk": 16500, "fields": {"orig_filename": "Ehrlich_Martin_1871_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230", "author": "", "orig_id": 1421121}}, {"model": "metainfo.source", "pk": 16501, "fields": {"orig_filename": "Ehrlich_Sigmund_1852_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 230f.", "author": "", "orig_id": 1421122}}, {"model": "metainfo.source", "pk": 16502, "fields": {"orig_filename": "Ehrlich_Urban_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421123}}, {"model": "metainfo.source", "pk": 16503, "fields": {"orig_filename": "Ehrmann_Camillo_1873_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421124}}, {"model": "metainfo.source", "pk": 16504, "fields": {"orig_filename": "Ehrmann_Martin_1795_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421125}}, {"model": "metainfo.source", "pk": 16505, "fields": {"orig_filename": "Ehrmann_Salomon_1854_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421126}}, {"model": "metainfo.source", "pk": 16506, "fields": {"orig_filename": "Eibenschuetz_Siegmund_1856_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231", "author": "", "orig_id": 1421127}}, {"model": "metainfo.source", "pk": 16507, "fields": {"orig_filename": "Eichberger_Josef_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 231f.", "author": "", "orig_id": 1421128}}, {"model": "metainfo.source", "pk": 16508, "fields": {"orig_filename": "Eichert_Franz_1857_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232", "author": "", "orig_id": 1421129}}, {"model": "metainfo.source", "pk": 16509, "fields": {"orig_filename": "Eichhorn_Ambros_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232", "author": "", "orig_id": 1421130}}, {"model": "metainfo.source", "pk": 16510, "fields": {"orig_filename": "Eichhorn_Rudolf_1853_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 232f.", "author": "", "orig_id": 1421131}}, {"model": "metainfo.source", "pk": 16511, "fields": {"orig_filename": "Eichler-Eichkron_Wilhelm_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421134}}, {"model": "metainfo.source", "pk": 16512, "fields": {"orig_filename": "Eichler_Ferdinand_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421132}}, {"model": "metainfo.source", "pk": 16513, "fields": {"orig_filename": "Eichler_Hermann_1842_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421133}}, {"model": "metainfo.source", "pk": 16514, "fields": {"orig_filename": "Eichmann_Carl-Julius_1805_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233", "author": "", "orig_id": 1421135}}, {"model": "metainfo.source", "pk": 16515, "fields": {"orig_filename": "Eigl_Josef_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 233f.", "author": "", "orig_id": 1421136}}, {"model": "metainfo.source", "pk": 16516, "fields": {"orig_filename": "Eigner_Moriz_1822_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421137}}, {"model": "metainfo.source", "pk": 16517, "fields": {"orig_filename": "Einfalt_Martin_1858_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421138}}, {"model": "metainfo.source", "pk": 16518, "fields": {"orig_filename": "Einoedshofer_Julius_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421139}}, {"model": "metainfo.source", "pk": 16519, "fields": {"orig_filename": "Einsle_Anton_1801_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234", "author": "", "orig_id": 1421212}}, {"model": "metainfo.source", "pk": 16520, "fields": {"orig_filename": "Einspieler_Andrej_1813_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 234f.", "author": "", "orig_id": 1421213}}, {"model": "metainfo.source", "pk": 16521, "fields": {"orig_filename": "Einspieler_Lambert_1840_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421214}}, {"model": "metainfo.source", "pk": 16522, "fields": {"orig_filename": "Einspinner_August_1870_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421215}}, {"model": "metainfo.source", "pk": 16523, "fields": {"orig_filename": "Eipeldauer_Franz_1802_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235", "author": "", "orig_id": 1421216}}, {"model": "metainfo.source", "pk": 16524, "fields": {"orig_filename": "Eisath_Georg_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 235f.", "author": "", "orig_id": 1421217}}, {"model": "metainfo.source", "pk": 16525, "fields": {"orig_filename": "Eiselsberg_Anton_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421218}}, {"model": "metainfo.source", "pk": 16526, "fields": {"orig_filename": "Eiselt_Jan-Bohumil_1831_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421219}}, {"model": "metainfo.source", "pk": 16527, "fields": {"orig_filename": "Eisenbach_Heinrich_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421220}}, {"model": "metainfo.source", "pk": 16528, "fields": {"orig_filename": "Eisenberger_Severyn_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236f.", "author": "", "orig_id": 1421222}}, {"model": "metainfo.source", "pk": 16529, "fields": {"orig_filename": "Eisenberg_Ludwig-Julius_1858_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 236", "author": "", "orig_id": 1421221}}, {"model": "metainfo.source", "pk": 16530, "fields": {"orig_filename": "Eisendle_Richard_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421223}}, {"model": "metainfo.source", "pk": 16531, "fields": {"orig_filename": "Eisenhuth_Djuro_1841_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421224}}, {"model": "metainfo.source", "pk": 16532, "fields": {"orig_filename": "Eisenmenger_August_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421225}}, {"model": "metainfo.source", "pk": 16533, "fields": {"orig_filename": "Eisenmenger_Viktor_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421226}}, {"model": "metainfo.source", "pk": 16534, "fields": {"orig_filename": "Eisenstecken_Josef_1779_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237", "author": "", "orig_id": 1421227}}, {"model": "metainfo.source", "pk": 16535, "fields": {"orig_filename": "Eisenstein_Arthur_1847_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 237f.", "author": "", "orig_id": 1421228}}, {"model": "metainfo.source", "pk": 16536, "fields": {"orig_filename": "Eiser_Anton_1800_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421229}}, {"model": "metainfo.source", "pk": 16537, "fields": {"orig_filename": "Eisler-Terramare_Georg_1889_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421236}}, {"model": "metainfo.source", "pk": 16538, "fields": {"orig_filename": "Eisler_Arnold_1879_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421230}}, {"model": "metainfo.source", "pk": 16539, "fields": {"orig_filename": "Eisler_Athanas_1875_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421231}}, {"model": "metainfo.source", "pk": 16540, "fields": {"orig_filename": "Eisler_Fritz_1883_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421232}}, {"model": "metainfo.source", "pk": 16541, "fields": {"orig_filename": "Eisler_Max_1855_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421233}}, {"model": "metainfo.source", "pk": 16542, "fields": {"orig_filename": "Eisler_Max_1881_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238", "author": "", "orig_id": 1421234}}, {"model": "metainfo.source", "pk": 16543, "fields": {"orig_filename": "Eisler_Rudolf_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 238f.", "author": "", "orig_id": 1421235}}, {"model": "metainfo.source", "pk": 16544, "fields": {"orig_filename": "Eissner_Franz-Xaver_1800_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421310}}, {"model": "metainfo.source", "pk": 16545, "fields": {"orig_filename": "Eisvogel_Gregor_1873_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421311}}, {"model": "metainfo.source", "pk": 16546, "fields": {"orig_filename": "Eitelberger-Edelberg_Jeanette_1838_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239", "author": "", "orig_id": 1421312}}, {"model": "metainfo.source", "pk": 16547, "fields": {"orig_filename": "Eitelberger-Edelberg_Rudolf_1817_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 239f.", "author": "", "orig_id": 1421313}}, {"model": "metainfo.source", "pk": 16548, "fields": {"orig_filename": "Eitl_Franz-Vincenz_1800_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421315}}, {"model": "metainfo.source", "pk": 16549, "fields": {"orig_filename": "Eitner_Wilhelm_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421314}}, {"model": "metainfo.source", "pk": 16550, "fields": {"orig_filename": "Ekert_Franz_1845_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421317}}, {"model": "metainfo.source", "pk": 16551, "fields": {"orig_filename": "Ekert_Karl_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421318}}, {"model": "metainfo.source", "pk": 16552, "fields": {"orig_filename": "Eker_Albert_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 240", "author": "", "orig_id": 1421316}}, {"model": "metainfo.source", "pk": 16553, "fields": {"orig_filename": "Ekielski_Wladyslaw_1855_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421319}}, {"model": "metainfo.source", "pk": 16554, "fields": {"orig_filename": "Ekstein_Otto_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421320}}, {"model": "metainfo.source", "pk": 16555, "fields": {"orig_filename": "Elbogen_Friedrich_1854_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421321}}, {"model": "metainfo.source", "pk": 16556, "fields": {"orig_filename": "Eldersch_Matthias_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241", "author": "", "orig_id": 1421322}}, {"model": "metainfo.source", "pk": 16557, "fields": {"orig_filename": "Eliatschek-Siebenburg_Wenzel_1779_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 241f.", "author": "", "orig_id": 1421323}}, {"model": "metainfo.source", "pk": 16558, "fields": {"orig_filename": "Elisabeth_Amalie-Eugenie_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421325}}, {"model": "metainfo.source", "pk": 16559, "fields": {"orig_filename": "Elizza_Elise_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421326}}, {"model": "metainfo.source", "pk": 16560, "fields": {"orig_filename": "Ellend_Bernhard_1869_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242", "author": "", "orig_id": 1421327}}, {"model": "metainfo.source", "pk": 16561, "fields": {"orig_filename": "Ellert_Gerhart_1900_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1427195}}, {"model": "metainfo.source", "pk": 16562, "fields": {"orig_filename": "Eller_Louis_1820_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 242f.", "author": "", "orig_id": 1421328}}, {"model": "metainfo.source", "pk": 16563, "fields": {"orig_filename": "Ellinger_Joseph_1814_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421329}}, {"model": "metainfo.source", "pk": 16564, "fields": {"orig_filename": "Ellison-Nidlef_Otto_1868_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421330}}, {"model": "metainfo.source", "pk": 16565, "fields": {"orig_filename": "Ellissen_Hubert_1888_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421331}}, {"model": "metainfo.source", "pk": 16566, "fields": {"orig_filename": "Ellmaurer_Josef_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243", "author": "", "orig_id": 1421332}}, {"model": "metainfo.source", "pk": 16567, "fields": {"orig_filename": "Elmayer-Vestenbrugg_Rudolf_1881_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1427613}}, {"model": "metainfo.source", "pk": 16568, "fields": {"orig_filename": "Elschnig_Marietta_1860_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 243f.", "author": "", "orig_id": 1421333}}, {"model": "metainfo.source", "pk": 16569, "fields": {"orig_filename": "Elssler_Franziska_1810_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421407}}, {"model": "metainfo.source", "pk": 16570, "fields": {"orig_filename": "Elssler_Johann-Florian_1769_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421334}}, {"model": "metainfo.source", "pk": 16571, "fields": {"orig_filename": "Elssler_Theresia_1808_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421408}}, {"model": "metainfo.source", "pk": 16572, "fields": {"orig_filename": "Elterlein_Johann-Georg_1806_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421409}}, {"model": "metainfo.source", "pk": 16573, "fields": {"orig_filename": "Elze_Ludwig-Theodor_1823_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 244", "author": "", "orig_id": 1421410}}, {"model": "metainfo.source", "pk": 16574, "fields": {"orig_filename": "Elzholz_Adolf_1867_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421411}}, {"model": "metainfo.source", "pk": 16575, "fields": {"orig_filename": "Embel_Franz-Xaver_1770_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421412}}, {"model": "metainfo.source", "pk": 16576, "fields": {"orig_filename": "Emich_Friedrich_1860_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421413}}, {"model": "metainfo.source", "pk": 16577, "fields": {"orig_filename": "Emich_Gustav_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421414}}, {"model": "metainfo.source", "pk": 16578, "fields": {"orig_filename": "Eminger_Joseph-Wilhelm_1801_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245", "author": "", "orig_id": 1421415}}, {"model": "metainfo.source", "pk": 16579, "fields": {"orig_filename": "Emler_Bonaventura_1831_1862.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1446156}}, {"model": "metainfo.source", "pk": 16580, "fields": {"orig_filename": "Emler_Josef_1836_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 245f.", "author": "", "orig_id": 1421416}}, {"model": "metainfo.source", "pk": 16581, "fields": {"orig_filename": "Emmer_Johannes_1849_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421417}}, {"model": "metainfo.source", "pk": 16582, "fields": {"orig_filename": "Emminger_Josef_1804_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421419}}, {"model": "metainfo.source", "pk": 16583, "fields": {"orig_filename": "Emperger_Friedrich-Ignaz_1862_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 246", "author": "", "orig_id": 1421421}}, {"model": "metainfo.source", "pk": 16584, "fields": {"orig_filename": "Emperger_Vinzenz-Benedikt_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421420}}, {"model": "metainfo.source", "pk": 16585, "fields": {"orig_filename": "Enderes_Aglaia_1836_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247f.", "author": "", "orig_id": 1421425}}, {"model": "metainfo.source", "pk": 16586, "fields": {"orig_filename": "Enderes_Bruno_1871_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421426}}, {"model": "metainfo.source", "pk": 16587, "fields": {"orig_filename": "Enderlen_Eugen_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421427}}, {"model": "metainfo.source", "pk": 16588, "fields": {"orig_filename": "Enders_Johann-Nep_1815_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 248", "author": "", "orig_id": 1421428}}, {"model": "metainfo.source", "pk": 16589, "fields": {"orig_filename": "Ender_Eduard_1822_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421422}}, {"model": "metainfo.source", "pk": 16590, "fields": {"orig_filename": "Ender_Johann-Nepomuk_1793_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421423}}, {"model": "metainfo.source", "pk": 16591, "fields": {"orig_filename": "Ender_Thomas_1793_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 247", "author": "", "orig_id": 1421424}}, {"model": "metainfo.source", "pk": 16592, "fields": {"orig_filename": "Dunin-Borkowski_Josef_1809_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422143}}, {"model": "metainfo.source", "pk": 16593, "fields": {"orig_filename": "Dunkler_Gaudentius-Andreas_1746_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422144}}, {"model": "metainfo.source", "pk": 16594, "fields": {"orig_filename": "Durdik_Josef_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1422145}}, {"model": "metainfo.source", "pk": 16595, "fields": {"orig_filename": "Durig_Josef_1833_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422146}}, {"model": "metainfo.source", "pk": 16596, "fields": {"orig_filename": "Dustmann-Meyer_Marie-Louise_1831_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205f.", "author": "", "orig_id": 1422147}}, {"model": "metainfo.source", "pk": 16597, "fields": {"orig_filename": "Dutczynski_Eduard_1823_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1421981}}, {"model": "metainfo.source", "pk": 16598, "fields": {"orig_filename": "Dutczynski_Irma_1869_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1421982}}, {"model": "metainfo.source", "pk": 16599, "fields": {"orig_filename": "Duval-Dampierre_Quirin_1863_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1422148}}, {"model": "metainfo.source", "pk": 16600, "fields": {"orig_filename": "Dvorak_Anton_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206", "author": "", "orig_id": 1422150}}, {"model": "metainfo.source", "pk": 16601, "fields": {"orig_filename": "Dvorak_Max_1874_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 206f.", "author": "", "orig_id": 1422151}}, {"model": "metainfo.source", "pk": 16602, "fields": {"orig_filename": "Dvorak_Xaver_1858_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422152}}, {"model": "metainfo.source", "pk": 16603, "fields": {"orig_filename": "Dworaczek_Wilhelm_1873_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422153}}, {"model": "metainfo.source", "pk": 16604, "fields": {"orig_filename": "Dyk_Viktor_1877_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422154}}, {"model": "metainfo.source", "pk": 16605, "fields": {"orig_filename": "Dzieduszycki_Maurycy_1813_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 207", "author": "", "orig_id": 1422155}}, {"model": "metainfo.source", "pk": 16606, "fields": {"orig_filename": "Ebenhoch_Alfred_1855_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422156}}, {"model": "metainfo.source", "pk": 16607, "fields": {"orig_filename": "Ebenspanger_Johannes_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422157}}, {"model": "metainfo.source", "pk": 16608, "fields": {"orig_filename": "Eberhard_Otto_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422158}}, {"model": "metainfo.source", "pk": 16609, "fields": {"orig_filename": "Eberle_Josef_1845_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422162}}, {"model": "metainfo.source", "pk": 16610, "fields": {"orig_filename": "Eberle_Joseph_1884_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208f.", "author": "", "orig_id": 1422161}}, {"model": "metainfo.source", "pk": 16611, "fields": {"orig_filename": "Eberl_Raimund_1766_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 208", "author": "", "orig_id": 1422160}}, {"model": "metainfo.source", "pk": 16612, "fields": {"orig_filename": "Ebermann_Leo_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422163}}, {"model": "metainfo.source", "pk": 16613, "fields": {"orig_filename": "Ebersberg_Joseph-Sigmund_1799_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1422164}}, {"model": "metainfo.source", "pk": 16614, "fields": {"orig_filename": "Ebersberg_Julius-Carl_1831_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1420745}}, {"model": "metainfo.source", "pk": 16615, "fields": {"orig_filename": "Ebersberg_Ottokar-Franz_1833_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209", "author": "", "orig_id": 1420746}}, {"model": "metainfo.source", "pk": 16616, "fields": {"orig_filename": "Ebert_Anton_1845_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 209f.", "author": "", "orig_id": 1420747}}, {"model": "metainfo.source", "pk": 16617, "fields": {"orig_filename": "Ebert_Karl-Egon_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420748}}, {"model": "metainfo.source", "pk": 16618, "fields": {"orig_filename": "Ebert_Ludwig_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420749}}, {"model": "metainfo.source", "pk": 16619, "fields": {"orig_filename": "Eble_Burkhard_1799_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420750}}, {"model": "metainfo.source", "pk": 16620, "fields": {"orig_filename": "Ebner-Eschenbach_Marie_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 211f.", "author": "", "orig_id": 1420754}}, {"model": "metainfo.source", "pk": 16621, "fields": {"orig_filename": "Ebner-Eschenbach_Moritz_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212", "author": "", "orig_id": 1420755}}, {"model": "metainfo.source", "pk": 16622, "fields": {"orig_filename": "Ebner-Rofenstein_Johann-Nep_1790_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212", "author": "", "orig_id": 1420756}}, {"model": "metainfo.source", "pk": 16623, "fields": {"orig_filename": "Ebner-Rofenstein_Viktor_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 212f.", "author": "", "orig_id": 1420757}}, {"model": "metainfo.source", "pk": 16624, "fields": {"orig_filename": "Ebner_Ferdinand_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210", "author": "", "orig_id": 1420751}}, {"model": "metainfo.source", "pk": 16625, "fields": {"orig_filename": "Ebner_Karl_1811_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 210f.", "author": "", "orig_id": 1420752}}, {"model": "metainfo.source", "pk": 16626, "fields": {"orig_filename": "Ebner_Karl_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 211", "author": "", "orig_id": 1420753}}, {"model": "metainfo.source", "pk": 16627, "fields": {"orig_filename": "Eckardt_Karl-Paul_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420758}}, {"model": "metainfo.source", "pk": 16628, "fields": {"orig_filename": "Eckardt_Ludwig_1827_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420759}}, {"model": "metainfo.source", "pk": 16629, "fields": {"orig_filename": "Eckardt_Siegfried-Gotthilf_1754_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213", "author": "", "orig_id": 1420760}}, {"model": "metainfo.source", "pk": 16630, "fields": {"orig_filename": "Eckel_Hermann_1875_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 213f.", "author": "", "orig_id": 1420761}}, {"model": "metainfo.source", "pk": 16631, "fields": {"orig_filename": "Eckert_Karl-Anton-Florian_1820_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420763}}, {"model": "metainfo.source", "pk": 16632, "fields": {"orig_filename": "Ecker_Johann-Matth-Alex_1766_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420762}}, {"model": "metainfo.source", "pk": 16633, "fields": {"orig_filename": "Eckhardt_Franz_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420764}}, {"model": "metainfo.source", "pk": 16634, "fields": {"orig_filename": "Eckinger_Johann-Nep_1856_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420765}}, {"model": "metainfo.source", "pk": 16635, "fields": {"orig_filename": "Eckl_Georg_1863_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214", "author": "", "orig_id": 1420766}}, {"model": "metainfo.source", "pk": 16636, "fields": {"orig_filename": "Eckstein_Gustav_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 214f.", "author": "", "orig_id": 1420767}}, {"model": "metainfo.source", "pk": 16637, "fields": {"orig_filename": "Economo-San-Serff_Constantin_1876_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420836}}, {"model": "metainfo.source", "pk": 16638, "fields": {"orig_filename": "Edelsheim-Gyulai_Leopold-Wilhelm_1826_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420837}}, {"model": "metainfo.source", "pk": 16639, "fields": {"orig_filename": "Eder_Franz-Albert_1818_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215", "author": "", "orig_id": 1420838}}, {"model": "metainfo.source", "pk": 16640, "fields": {"orig_filename": "Eder_Gustav_1861_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 215f.", "author": "", "orig_id": 1420839}}, {"model": "metainfo.source", "pk": 16641, "fields": {"orig_filename": "Eder_Hans_1890_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420840}}, {"model": "metainfo.source", "pk": 16642, "fields": {"orig_filename": "Eder_Josef-Maria_1855_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420843}}, {"model": "metainfo.source", "pk": 16643, "fields": {"orig_filename": "Eder_Josef_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420841}}, {"model": "metainfo.source", "pk": 16644, "fields": {"orig_filename": "Eder_Josef_1859_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216", "author": "", "orig_id": 1420842}}, {"model": "metainfo.source", "pk": 16645, "fields": {"orig_filename": "Eder_Josephine_1816_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 216f.", "author": "", "orig_id": 1420844}}, {"model": "metainfo.source", "pk": 16646, "fields": {"orig_filename": "Eder_Leopold_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420845}}, {"model": "metainfo.source", "pk": 16647, "fields": {"orig_filename": "Eder_Robert_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420846}}, {"model": "metainfo.source", "pk": 16648, "fields": {"orig_filename": "Eder_Wilhelm_1780_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420847}}, {"model": "metainfo.source", "pk": 16649, "fields": {"orig_filename": "Edlauer_Franz_1798_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 217", "author": "", "orig_id": 1420848}}, {"model": "metainfo.source", "pk": 16650, "fields": {"orig_filename": "Edlbacher_Joseph_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420849}}, {"model": "metainfo.source", "pk": 16651, "fields": {"orig_filename": "Edlbacher_Ludwig_1843_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420850}}, {"model": "metainfo.source", "pk": 16652, "fields": {"orig_filename": "Edlbacher_Maximilian-Josef-Augustin_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420851}}, {"model": "metainfo.source", "pk": 16653, "fields": {"orig_filename": "Edler_Karl-Erdmann_1844_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420852}}, {"model": "metainfo.source", "pk": 16654, "fields": {"orig_filename": "Edlmann_Ernst_1831_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420853}}, {"model": "metainfo.source", "pk": 16655, "fields": {"orig_filename": "Edlmann_Leopold_1858_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218", "author": "", "orig_id": 1420854}}, {"model": "metainfo.source", "pk": 16656, "fields": {"orig_filename": "Egarter_Ferdinand_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 218f.", "author": "", "orig_id": 1420855}}, {"model": "metainfo.source", "pk": 16657, "fields": {"orig_filename": "Egerer_Gislar_1844_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420933}}, {"model": "metainfo.source", "pk": 16658, "fields": {"orig_filename": "Egerer_Petrus_1820_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219f.", "author": "", "orig_id": 1420934}}, {"model": "metainfo.source", "pk": 16659, "fields": {"orig_filename": "Egermann_Friedrich_1777_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420935}}, {"model": "metainfo.source", "pk": 16660, "fields": {"orig_filename": "Egersdorfer_Alexander_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420936}}, {"model": "metainfo.source", "pk": 16661, "fields": {"orig_filename": "Eger_Alexander_1844_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420856}}, {"model": "metainfo.source", "pk": 16662, "fields": {"orig_filename": "Eger_Ferdinand_1868_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 219", "author": "", "orig_id": 1420932}}, {"model": "metainfo.source", "pk": 16663, "fields": {"orig_filename": "Eger_Paul_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442992}}, {"model": "metainfo.source", "pk": 16664, "fields": {"orig_filename": "Egger-Lienz_Albin_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 224f.", "author": "", "orig_id": 1421020}}, {"model": "metainfo.source", "pk": 16665, "fields": {"orig_filename": "Egger-Moellwald_Alois_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421021}}, {"model": "metainfo.source", "pk": 16666, "fields": {"orig_filename": "Egger_Bela_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221", "author": "", "orig_id": 1420939}}, {"model": "metainfo.source", "pk": 16667, "fields": {"orig_filename": "Egger_Berthold_1852_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221", "author": "", "orig_id": 1420940}}, {"model": "metainfo.source", "pk": 16668, "fields": {"orig_filename": "Egger_Ernst_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 221f.", "author": "", "orig_id": 1420941}}, {"model": "metainfo.source", "pk": 16669, "fields": {"orig_filename": "Egger_Ferdinand_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420942}}, {"model": "metainfo.source", "pk": 16670, "fields": {"orig_filename": "Egger_Franz-Joh-Nep_1768_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420944}}, {"model": "metainfo.source", "pk": 16671, "fields": {"orig_filename": "Egger_Franz_1765_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222", "author": "", "orig_id": 1420943}}, {"model": "metainfo.source", "pk": 16672, "fields": {"orig_filename": "Egger_Franz_1810_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 222f.", "author": "", "orig_id": 1420946}}, {"model": "metainfo.source", "pk": 16673, "fields": {"orig_filename": "Egger_Franz_1836_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420947}}, {"model": "metainfo.source", "pk": 16674, "fields": {"orig_filename": "Egger_Hermann_1873_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420948}}, {"model": "metainfo.source", "pk": 16675, "fields": {"orig_filename": "Egger_Johann-Bapt_1868_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223", "author": "", "orig_id": 1420949}}, {"model": "metainfo.source", "pk": 16676, "fields": {"orig_filename": "Egger_Johann-Georg_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 223f.", "author": "", "orig_id": 1420950}}, {"model": "metainfo.source", "pk": 16677, "fields": {"orig_filename": "Egger_Josef_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 224", "author": "", "orig_id": 1420951}}, {"model": "metainfo.source", "pk": 16678, "fields": {"orig_filename": "Egg_Franz_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 220", "author": "", "orig_id": 1420937}}, {"model": "metainfo.source", "pk": 16679, "fields": {"orig_filename": "Egner_Marie_1850_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421022}}, {"model": "metainfo.source", "pk": 16680, "fields": {"orig_filename": "Egressy_Beni_1814_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225", "author": "", "orig_id": 1421023}}, {"model": "metainfo.source", "pk": 16681, "fields": {"orig_filename": "Egressy_Gabor_1808_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 225f.", "author": "", "orig_id": 1421024}}, {"model": "metainfo.source", "pk": 16682, "fields": {"orig_filename": "Ehmann_Helene_1910_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2145466}}, {"model": "metainfo.source", "pk": 16683, "fields": {"orig_filename": "Ehnn_Bertha_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421026}}, {"model": "metainfo.source", "pk": 16684, "fields": {"orig_filename": "Ehrbar_Friedrich_1827_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421027}}, {"model": "metainfo.source", "pk": 16685, "fields": {"orig_filename": "Ehrenberger_Josef_1815_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421028}}, {"model": "metainfo.source", "pk": 16686, "fields": {"orig_filename": "Ehrenberg_Kurt_1896_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442592}}, {"model": "metainfo.source", "pk": 16687, "fields": {"orig_filename": "Ehrenfeld_Richard_1877_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226", "author": "", "orig_id": 1421029}}, {"model": "metainfo.source", "pk": 16688, "fields": {"orig_filename": "Ehrenfels_Christian_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 226f.", "author": "", "orig_id": 1421030}}, {"model": "metainfo.source", "pk": 16689, "fields": {"orig_filename": "Ehrenhofer_Walther-Edmund_1872_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421031}}, {"model": "metainfo.source", "pk": 16690, "fields": {"orig_filename": "Ehrenreich_Max-Leopold_1864_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421032}}, {"model": "metainfo.source", "pk": 16691, "fields": {"orig_filename": "Ehrenstein_Albert_1886_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421033}}, {"model": "metainfo.source", "pk": 16692, "fields": {"orig_filename": "Ehrenstein_Louise_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227", "author": "", "orig_id": 1421034}}, {"model": "metainfo.source", "pk": 16693, "fields": {"orig_filename": "Ehrenzweig_Armin_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 227f.", "author": "", "orig_id": 1421035}}, {"model": "metainfo.source", "pk": 16694, "fields": {"orig_filename": "Doczy_Ludwig_1845_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421588}}, {"model": "metainfo.source", "pk": 16695, "fields": {"orig_filename": "Doebler_Ludwig_1801_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421590}}, {"model": "metainfo.source", "pk": 16696, "fields": {"orig_filename": "Doebrentei_Gabriel_1785_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421591}}, {"model": "metainfo.source", "pk": 16697, "fields": {"orig_filename": "Doell-Gruenheim_Karl_1794_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421592}}, {"model": "metainfo.source", "pk": 16698, "fields": {"orig_filename": "Doeller_Johann_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190f.", "author": "", "orig_id": 1421593}}, {"model": "metainfo.source", "pk": 16699, "fields": {"orig_filename": "Doelter-Cisterich_Cornelius_1850_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421594}}, {"model": "metainfo.source", "pk": 16700, "fields": {"orig_filename": "Doepfner_Josef_1825_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421595}}, {"model": "metainfo.source", "pk": 16701, "fields": {"orig_filename": "Doerfl_Rudolf_1855_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421596}}, {"model": "metainfo.source", "pk": 16702, "fields": {"orig_filename": "Doernhoeffer_Friedrich_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191", "author": "", "orig_id": 1421598}}, {"model": "metainfo.source", "pk": 16703, "fields": {"orig_filename": "Doerr_August_1846_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 191f.", "author": "", "orig_id": 1421674}}, {"model": "metainfo.source", "pk": 16704, "fields": {"orig_filename": "Doery-Jobbahaza_Josef_1785_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421675}}, {"model": "metainfo.source", "pk": 16705, "fields": {"orig_filename": "Dolch_Moritz_1887_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421676}}, {"model": "metainfo.source", "pk": 16706, "fields": {"orig_filename": "Dollfuss_Engelbert_1892_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421677}}, {"model": "metainfo.source", "pk": 16707, "fields": {"orig_filename": "Dolliner_Georg_1794_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 192", "author": "", "orig_id": 1421678}}, {"model": "metainfo.source", "pk": 16708, "fields": {"orig_filename": "Dolliner_Thomas_1760_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421679}}, {"model": "metainfo.source", "pk": 16709, "fields": {"orig_filename": "Dollmayr_Hermann_1865_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421680}}, {"model": "metainfo.source", "pk": 16710, "fields": {"orig_filename": "Domanig-Roll_Roman-Cornelius_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421683}}, {"model": "metainfo.source", "pk": 16711, "fields": {"orig_filename": "Domanig_Karl_1851_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421681}}, {"model": "metainfo.source", "pk": 16712, "fields": {"orig_filename": "Domanig_Marie_1884_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421682}}, {"model": "metainfo.source", "pk": 16713, "fields": {"orig_filename": "Domaszewski_Alfred_1856_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421684}}, {"model": "metainfo.source", "pk": 16714, "fields": {"orig_filename": "Dombrowski_Ernst_1862_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 193", "author": "", "orig_id": 1421685}}, {"model": "metainfo.source", "pk": 16715, "fields": {"orig_filename": "Domes_Franz_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421686}}, {"model": "metainfo.source", "pk": 16716, "fields": {"orig_filename": "Domin_Franjo-Josip_1754_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421687}}, {"model": "metainfo.source", "pk": 16717, "fields": {"orig_filename": "Domjanic_Dragutin_1875_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421688}}, {"model": "metainfo.source", "pk": 16718, "fields": {"orig_filename": "Domokos_Josef_1762_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421689}}, {"model": "metainfo.source", "pk": 16719, "fields": {"orig_filename": "Donabaum_Josef_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421690}}, {"model": "metainfo.source", "pk": 16720, "fields": {"orig_filename": "Donath_Eduard_1848_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421693}}, {"model": "metainfo.source", "pk": 16721, "fields": {"orig_filename": "Donath_Julius_1850_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421694}}, {"model": "metainfo.source", "pk": 16722, "fields": {"orig_filename": "Donat_Johann-Daniel_1744_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194", "author": "", "orig_id": 1421691}}, {"model": "metainfo.source", "pk": 16723, "fields": {"orig_filename": "Donat_Josef_1868_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 194f.", "author": "", "orig_id": 1421692}}, {"model": "metainfo.source", "pk": 16724, "fields": {"orig_filename": "Donegani-Stilfserberg_Carlo_1775_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421695}}, {"model": "metainfo.source", "pk": 16725, "fields": {"orig_filename": "Donin_Ludwig_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421696}}, {"model": "metainfo.source", "pk": 16726, "fields": {"orig_filename": "Donizetti_Gaetano_1797_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421769}}, {"model": "metainfo.source", "pk": 16727, "fields": {"orig_filename": "Donizetti_Giuseppe_1788_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421770}}, {"model": "metainfo.source", "pk": 16728, "fields": {"orig_filename": "Dont_Jakob_1815_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 195", "author": "", "orig_id": 1421771}}, {"model": "metainfo.source", "pk": 16729, "fields": {"orig_filename": "Doppelbauer_Franz-Maria_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421772}}, {"model": "metainfo.source", "pk": 16730, "fields": {"orig_filename": "Doppler_Adolf_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421773}}, {"model": "metainfo.source", "pk": 16731, "fields": {"orig_filename": "Doppler_Adolf_1850_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421774}}, {"model": "metainfo.source", "pk": 16732, "fields": {"orig_filename": "Doppler_Christian_1803_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421775}}, {"model": "metainfo.source", "pk": 16733, "fields": {"orig_filename": "Doppler_Franz_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421776}}, {"model": "metainfo.source", "pk": 16734, "fields": {"orig_filename": "Doppler_Karl_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 196", "author": "", "orig_id": 1421777}}, {"model": "metainfo.source", "pk": 16735, "fields": {"orig_filename": "Dormus-Kilianshausen_Josef_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421779}}, {"model": "metainfo.source", "pk": 16736, "fields": {"orig_filename": "Dormus_Georg_1853_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421778}}, {"model": "metainfo.source", "pk": 16737, "fields": {"orig_filename": "Dorner_Johann-Konrad_1809_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421781}}, {"model": "metainfo.source", "pk": 16738, "fields": {"orig_filename": "Dorner_Peter_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421782}}, {"model": "metainfo.source", "pk": 16739, "fields": {"orig_filename": "Dostal-Lutinov_Karl_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421783}}, {"model": "metainfo.source", "pk": 16740, "fields": {"orig_filename": "Doublier_Othmar_1865_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421784}}, {"model": "metainfo.source", "pk": 16741, "fields": {"orig_filename": "Dovsky_Beatrice_1870_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421785}}, {"model": "metainfo.source", "pk": 16742, "fields": {"orig_filename": "Draexler_Karl-Ferdinand_1806_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197", "author": "", "orig_id": 1421786}}, {"model": "metainfo.source", "pk": 16743, "fields": {"orig_filename": "Drasche-Wartinberg_Heinrich_1811_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421788}}, {"model": "metainfo.source", "pk": 16744, "fields": {"orig_filename": "Drasche-Wartinberg_Richard_1850_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421789}}, {"model": "metainfo.source", "pk": 16745, "fields": {"orig_filename": "Drasche_Anton_1826_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 197f.", "author": "", "orig_id": 1421787}}, {"model": "metainfo.source", "pk": 16746, "fields": {"orig_filename": "Draskovic-Trakoscan_Johann_1770_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421790}}, {"model": "metainfo.source", "pk": 16747, "fields": {"orig_filename": "Draxler_Josef_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421791}}, {"model": "metainfo.source", "pk": 16748, "fields": {"orig_filename": "Drbal_Mathias-Amos_1829_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421792}}, {"model": "metainfo.source", "pk": 16749, "fields": {"orig_filename": "Drdla_Franz_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 198", "author": "", "orig_id": 1421866}}, {"model": "metainfo.source", "pk": 16750, "fields": {"orig_filename": "Drechsel_Anton_1751_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421867}}, {"model": "metainfo.source", "pk": 16751, "fields": {"orig_filename": "Drechsler_Josef_1782_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421868}}, {"model": "metainfo.source", "pk": 16752, "fields": {"orig_filename": "Drechsler_Karl_1814_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421869}}, {"model": "metainfo.source", "pk": 16753, "fields": {"orig_filename": "Dreger_Moritz_1868_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421870}}, {"model": "metainfo.source", "pk": 16754, "fields": {"orig_filename": "Dreger_Tom_1868_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1419946}}, {"model": "metainfo.source", "pk": 16755, "fields": {"orig_filename": "Dreher_Anton_1810_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199", "author": "", "orig_id": 1421963}}, {"model": "metainfo.source", "pk": 16756, "fields": {"orig_filename": "Dreher_Anton_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 199f.", "author": "", "orig_id": 1421964}}, {"model": "metainfo.source", "pk": 16757, "fields": {"orig_filename": "Dreher_Franz-Anton_1736_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421965}}, {"model": "metainfo.source", "pk": 16758, "fields": {"orig_filename": "Drescher_Karl-Wilhelm_1850_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421966}}, {"model": "metainfo.source", "pk": 16759, "fields": {"orig_filename": "Dressery_Wilhelm_1770_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421967}}, {"model": "metainfo.source", "pk": 16760, "fields": {"orig_filename": "Dressler_Raphael_1784_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421968}}, {"model": "metainfo.source", "pk": 16761, "fields": {"orig_filename": "Drexel_Johann_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421969}}, {"model": "metainfo.source", "pk": 16762, "fields": {"orig_filename": "Drexler_Anton_1858_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1442907}}, {"model": "metainfo.source", "pk": 16763, "fields": {"orig_filename": "Drexler_Josef_1850_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2256452}}, {"model": "metainfo.source", "pk": 16764, "fields": {"orig_filename": "Drexler_Karl_1861_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200", "author": "", "orig_id": 1421970}}, {"model": "metainfo.source", "pk": 16765, "fields": {"orig_filename": "Dreyer-Iller_Johann-Traugott_1803_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 200f.", "author": "", "orig_id": 1421971}}, {"model": "metainfo.source", "pk": 16766, "fields": {"orig_filename": "Dreyschock_Alexander_1818_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421972}}, {"model": "metainfo.source", "pk": 16767, "fields": {"orig_filename": "Drha_Anton_1879_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421973}}, {"model": "metainfo.source", "pk": 16768, "fields": {"orig_filename": "Drossbach_Paul_1866_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421974}}, {"model": "metainfo.source", "pk": 16769, "fields": {"orig_filename": "Drtina_Frantisek_1861_1925.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421975}}, {"model": "metainfo.source", "pk": 16770, "fields": {"orig_filename": "Druskowitz_Helene_1856_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421976}}, {"model": "metainfo.source", "pk": 16771, "fields": {"orig_filename": "Dubsky-Trebomyslice_Viktor_1834_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421977}}, {"model": "metainfo.source", "pk": 16772, "fields": {"orig_filename": "Duchek_Albert_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201", "author": "", "orig_id": 1421978}}, {"model": "metainfo.source", "pk": 16773, "fields": {"orig_filename": "Dudik_Beda_1815_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 201f.", "author": "", "orig_id": 1421983}}, {"model": "metainfo.source", "pk": 16774, "fields": {"orig_filename": "Duell_Alois-Franz_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1421984}}, {"model": "metainfo.source", "pk": 16775, "fields": {"orig_filename": "Duerauer_Franz-Josef_1854_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422055}}, {"model": "metainfo.source", "pk": 16776, "fields": {"orig_filename": "Duerlinger_Josef_1805_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422056}}, {"model": "metainfo.source", "pk": 16777, "fields": {"orig_filename": "Duerrnberger_Adolf_1838_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422057}}, {"model": "metainfo.source", "pk": 16778, "fields": {"orig_filename": "Duftschmid_Johann_1804_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422058}}, {"model": "metainfo.source", "pk": 16779, "fields": {"orig_filename": "Duftschmid_Kaspar_1767_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422059}}, {"model": "metainfo.source", "pk": 16780, "fields": {"orig_filename": "Dugonics_Andreas_1740_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202", "author": "", "orig_id": 1422060}}, {"model": "metainfo.source", "pk": 16781, "fields": {"orig_filename": "Duhm_Julius_1885_1955.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443109}}, {"model": "metainfo.source", "pk": 16782, "fields": {"orig_filename": "Duile_Josef_1776_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 202f.", "author": "", "orig_id": 1422061}}, {"model": "metainfo.source", "pk": 16783, "fields": {"orig_filename": "Duka-Kadar_Friedrich_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422062}}, {"model": "metainfo.source", "pk": 16784, "fields": {"orig_filename": "Dukes_Leopold_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422063}}, {"model": "metainfo.source", "pk": 16785, "fields": {"orig_filename": "Duller_Eduard_1809_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422064}}, {"model": "metainfo.source", "pk": 16786, "fields": {"orig_filename": "Dumba_Nikolaus_1830_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422066}}, {"model": "metainfo.source", "pk": 16787, "fields": {"orig_filename": "Dumreicher-Oesterreicher_Armand_1845_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203f.", "author": "", "orig_id": 1422067}}, {"model": "metainfo.source", "pk": 16788, "fields": {"orig_filename": "Dumreicher-Oesterreicher_Johann_1815_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422068}}, {"model": "metainfo.source", "pk": 16789, "fields": {"orig_filename": "Dunaiszky_Ladislaus_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422069}}, {"model": "metainfo.source", "pk": 16790, "fields": {"orig_filename": "Dunaiszky_Laurentius_1784_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422070}}, {"model": "metainfo.source", "pk": 16791, "fields": {"orig_filename": "Dunajewski_Albin_1817_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204", "author": "", "orig_id": 1422071}}, {"model": "metainfo.source", "pk": 16792, "fields": {"orig_filename": "Dunajewski_Julian_1822_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 204f.", "author": "", "orig_id": 1422072}}, {"model": "metainfo.source", "pk": 16793, "fields": {"orig_filename": "Dungel_Adalbert_1842_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422073}}, {"model": "metainfo.source", "pk": 16794, "fields": {"orig_filename": "Dunin-Borkowski_Alexander_1811_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 205", "author": "", "orig_id": 1422074}}, {"model": "metainfo.source", "pk": 16795, "fields": {"orig_filename": "Deininger_Julius_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1443709}}, {"model": "metainfo.source", "pk": 16796, "fields": {"orig_filename": "Del-Pero_Bartholomaeus_1850_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417250}}, {"model": "metainfo.source", "pk": 16797, "fields": {"orig_filename": "Dela-Croze_Johann-Nepomuk_1736_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417244}}, {"model": "metainfo.source", "pk": 16798, "fields": {"orig_filename": "Delci_Angelo-Maria_1754_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417245}}, {"model": "metainfo.source", "pk": 16799, "fields": {"orig_filename": "Delhaes_Istvan_1848_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417246}}, {"model": "metainfo.source", "pk": 16800, "fields": {"orig_filename": "Dellatorre-Valsassina_Michael_1757_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175f.", "author": "", "orig_id": 1417247}}, {"model": "metainfo.source", "pk": 16801, "fields": {"orig_filename": "Dellegrazie_Marie-Eugenie_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417248}}, {"model": "metainfo.source", "pk": 16802, "fields": {"orig_filename": "Delmont_Josef_1873_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417249}}, {"model": "metainfo.source", "pk": 16803, "fields": {"orig_filename": "Delrio_Josef-Giannatassio_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417251}}, {"model": "metainfo.source", "pk": 16804, "fields": {"orig_filename": "Delug_Alois_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176", "author": "", "orig_id": 1417252}}, {"model": "metainfo.source", "pk": 16805, "fields": {"orig_filename": "Delvert_Christian_1803_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 176f.", "author": "", "orig_id": 1417253}}, {"model": "metainfo.source", "pk": 16806, "fields": {"orig_filename": "Demagri_Egidius_1806_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417254}}, {"model": "metainfo.source", "pk": 16807, "fields": {"orig_filename": "Dembinski_Henryk_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417255}}, {"model": "metainfo.source", "pk": 16808, "fields": {"orig_filename": "Demelius_Ernst_1859_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417257}}, {"model": "metainfo.source", "pk": 16809, "fields": {"orig_filename": "Demelius_Gustav_1831_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417258}}, {"model": "metainfo.source", "pk": 16810, "fields": {"orig_filename": "Demel_Hans_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177", "author": "", "orig_id": 1417256}}, {"model": "metainfo.source", "pk": 16811, "fields": {"orig_filename": "Demeter_Dimitrija_1811_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 177f.", "author": "", "orig_id": 1417259}}, {"model": "metainfo.source", "pk": 16812, "fields": {"orig_filename": "Demian_Johann-Andreas_1770_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417260}}, {"model": "metainfo.source", "pk": 16813, "fields": {"orig_filename": "Demuth_Leopold_1860_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417261}}, {"model": "metainfo.source", "pk": 16814, "fields": {"orig_filename": "Denifle_Heinrich-Suso_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417263}}, {"model": "metainfo.source", "pk": 16815, "fields": {"orig_filename": "Derencin_Marijan_1836_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417264}}, {"model": "metainfo.source", "pk": 16816, "fields": {"orig_filename": "Deri_Max_1854_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1426849}}, {"model": "metainfo.source", "pk": 16817, "fields": {"orig_filename": "Dermota_Anton_1876_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178f.", "author": "", "orig_id": 1421289}}, {"model": "metainfo.source", "pk": 16818, "fields": {"orig_filename": "Derschatta_Julius_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421290}}, {"model": "metainfo.source", "pk": 16819, "fields": {"orig_filename": "Dery_Juliane_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421291}}, {"model": "metainfo.source", "pk": 16820, "fields": {"orig_filename": "Dery_Rosa_1793_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421292}}, {"model": "metainfo.source", "pk": 16821, "fields": {"orig_filename": "Desanti_Angelo_1847_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421293}}, {"model": "metainfo.source", "pk": 16822, "fields": {"orig_filename": "Deschmann_Karl_1821_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421294}}, {"model": "metainfo.source", "pk": 16823, "fields": {"orig_filename": "Desfours-Montville-Athienville_Franz-Josef_1765_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421295}}, {"model": "metainfo.source", "pk": 16824, "fields": {"orig_filename": "Desimoni_Albert_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 179", "author": "", "orig_id": 1421296}}, {"model": "metainfo.source", "pk": 16825, "fields": {"orig_filename": "Desquilles_Joseph_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421297}}, {"model": "metainfo.source", "pk": 16826, "fields": {"orig_filename": "Dessauer_Josef_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421298}}, {"model": "metainfo.source", "pk": 16827, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Aurel_1808_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421299}}, {"model": "metainfo.source", "pk": 16828, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Emil_1814_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421300}}, {"model": "metainfo.source", "pk": 16829, "fields": {"orig_filename": "Dessewffy-Czernek-Tarkeoe_Josef_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180", "author": "", "orig_id": 1421301}}, {"model": "metainfo.source", "pk": 16830, "fields": {"orig_filename": "Dessoff_Felix-Otto_1835_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 180f.", "author": "", "orig_id": 1421302}}, {"model": "metainfo.source", "pk": 16831, "fields": {"orig_filename": "Destinn_Emmy_1878_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421303}}, {"model": "metainfo.source", "pk": 16832, "fields": {"orig_filename": "Detela_Franz_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421304}}, {"model": "metainfo.source", "pk": 16833, "fields": {"orig_filename": "Detraux_Ludwig_1773_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421305}}, {"model": "metainfo.source", "pk": 16834, "fields": {"orig_filename": "Detraux_Maximilian_1766_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421306}}, {"model": "metainfo.source", "pk": 16835, "fields": {"orig_filename": "Deubler_Konrad_1814_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421307}}, {"model": "metainfo.source", "pk": 16836, "fields": {"orig_filename": "Deutelmoser_Ferdinand_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421308}}, {"model": "metainfo.source", "pk": 16837, "fields": {"orig_filename": "Deutsch-German_Alfred_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444413}}, {"model": "metainfo.source", "pk": 16838, "fields": {"orig_filename": "Deutsch_Karl_1859_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181", "author": "", "orig_id": 1421309}}, {"model": "metainfo.source", "pk": 16839, "fields": {"orig_filename": "Deutsch_Poldi_1853_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 181f.", "author": "", "orig_id": 1421383}}, {"model": "metainfo.source", "pk": 16840, "fields": {"orig_filename": "Devaulx_Karl_1776_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421384}}, {"model": "metainfo.source", "pk": 16841, "fields": {"orig_filename": "Devaux_Thierry_1748_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421385}}, {"model": "metainfo.source", "pk": 16842, "fields": {"orig_filename": "Devrient-Reinhold_Babette_1863_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421388}}, {"model": "metainfo.source", "pk": 16843, "fields": {"orig_filename": "Devrient_Max_1857_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421387}}, {"model": "metainfo.source", "pk": 16844, "fields": {"orig_filename": "Dewez_Josef-Wilhelm_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421389}}, {"model": "metainfo.source", "pk": 16845, "fields": {"orig_filename": "Deym-Stritez_Franz_1838_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182", "author": "", "orig_id": 1421390}}, {"model": "metainfo.source", "pk": 16846, "fields": {"orig_filename": "Dezelic_Velimir_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 182f.", "author": "", "orig_id": 1421391}}, {"model": "metainfo.source", "pk": 16847, "fields": {"orig_filename": "Dezman_Milivoj_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421392}}, {"model": "metainfo.source", "pk": 16848, "fields": {"orig_filename": "Diabelli_Anton_1781_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421393}}, {"model": "metainfo.source", "pk": 16849, "fields": {"orig_filename": "Diamant_Paul-Joseph_1887_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2133940}}, {"model": "metainfo.source", "pk": 16850, "fields": {"orig_filename": "Dickmann-Secherau_Eugen_1793_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421397}}, {"model": "metainfo.source", "pk": 16851, "fields": {"orig_filename": "Dick_Rudolf_1861_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421396}}, {"model": "metainfo.source", "pk": 16852, "fields": {"orig_filename": "Diedo_Antonio_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421399}}, {"model": "metainfo.source", "pk": 16853, "fields": {"orig_filename": "Diemer_Josef_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183f.", "author": "", "orig_id": 1421400}}, {"model": "metainfo.source", "pk": 16854, "fields": {"orig_filename": "Diem_Karl_1866_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 183", "author": "", "orig_id": 1421398}}, {"model": "metainfo.source", "pk": 16855, "fields": {"orig_filename": "Diener_Carl_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421401}}, {"model": "metainfo.source", "pk": 16856, "fields": {"orig_filename": "Dierzer-Traunthal_Josef_1800_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421402}}, {"model": "metainfo.source", "pk": 16857, "fields": {"orig_filename": "Diesing_Karl-Moriz_1800_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421403}}, {"model": "metainfo.source", "pk": 16858, "fields": {"orig_filename": "Dietl_Gottlieb_1862_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184", "author": "", "orig_id": 1421404}}, {"model": "metainfo.source", "pk": 16859, "fields": {"orig_filename": "Dietmann_Leopold_1857_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 184f.", "author": "", "orig_id": 1421405}}, {"model": "metainfo.source", "pk": 16860, "fields": {"orig_filename": "Dietrich-Hermannberg_Emanuel_1772_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421478}}, {"model": "metainfo.source", "pk": 16861, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Alexander_1813_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421479}}, {"model": "metainfo.source", "pk": 16862, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Franz-Josef_1767_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421480}}, {"model": "metainfo.source", "pk": 16863, "fields": {"orig_filename": "Dietrichstein-Nikolsburg_Moritz-I-Josef-Johann_1775_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421481}}, {"model": "metainfo.source", "pk": 16864, "fields": {"orig_filename": "Dietrich_Georg_1891_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421406}}, {"model": "metainfo.source", "pk": 16865, "fields": {"orig_filename": "Dietz_Max_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421482}}, {"model": "metainfo.source", "pk": 16866, "fields": {"orig_filename": "Dimitz_August_1827_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185", "author": "", "orig_id": 1421483}}, {"model": "metainfo.source", "pk": 16867, "fields": {"orig_filename": "Dimitz_Ludwig_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 185f.", "author": "", "orig_id": 1421484}}, {"model": "metainfo.source", "pk": 16868, "fields": {"orig_filename": "Dimmer_Friedrich_1855_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186", "author": "", "orig_id": 1421485}}, {"model": "metainfo.source", "pk": 16869, "fields": {"orig_filename": "Dingelstedt_Franz_1814_1881.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421486}}, {"model": "metainfo.source", "pk": 16870, "fields": {"orig_filename": "Dipauli_Andreas_1761_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186", "author": "", "orig_id": 1421487}}, {"model": "metainfo.source", "pk": 16871, "fields": {"orig_filename": "Dipauli_Josef_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 186f.", "author": "", "orig_id": 1421488}}, {"model": "metainfo.source", "pk": 16872, "fields": {"orig_filename": "Dirmoser_Oswald_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421489}}, {"model": "metainfo.source", "pk": 16873, "fields": {"orig_filename": "Dirmoser_Richard_1872_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421490}}, {"model": "metainfo.source", "pk": 16874, "fields": {"orig_filename": "Dirnboeck-Schulz_Jenny_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421492}}, {"model": "metainfo.source", "pk": 16875, "fields": {"orig_filename": "Dirnboeck_Jakob_1809_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421491}}, {"model": "metainfo.source", "pk": 16876, "fields": {"orig_filename": "Ditmar_Karl-Rudolf_1798_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421493}}, {"model": "metainfo.source", "pk": 16877, "fields": {"orig_filename": "Ditscheiner_Adolf-Gustav_1846_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421494}}, {"model": "metainfo.source", "pk": 16878, "fields": {"orig_filename": "Ditscheiner_Leander_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187", "author": "", "orig_id": 1421495}}, {"model": "metainfo.source", "pk": 16879, "fields": {"orig_filename": "Dittel_Leopold_1815_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 187f.", "author": "", "orig_id": 1421496}}, {"model": "metainfo.source", "pk": 16880, "fields": {"orig_filename": "Dittel_Leopold_1861_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421497}}, {"model": "metainfo.source", "pk": 16881, "fields": {"orig_filename": "Dittes_Christian-Friedrich_1829_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421498}}, {"model": "metainfo.source", "pk": 16882, "fields": {"orig_filename": "Dittes_Paul_1871_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1413412}}, {"model": "metainfo.source", "pk": 16883, "fields": {"orig_filename": "Dittler_Emil_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2005213}}, {"model": "metainfo.source", "pk": 16884, "fields": {"orig_filename": "Dittmarsch_Karl_1819_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421499}}, {"model": "metainfo.source", "pk": 16885, "fields": {"orig_filename": "Dittrich_Franz_1815_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421500}}, {"model": "metainfo.source", "pk": 16886, "fields": {"orig_filename": "Dittrich_Josef_1794_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421501}}, {"model": "metainfo.source", "pk": 16887, "fields": {"orig_filename": "Dlabacz_Gottfried-Johann_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188", "author": "", "orig_id": 1421578}}, {"model": "metainfo.source", "pk": 16888, "fields": {"orig_filename": "Dlustus_Ljuboje_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 188f.", "author": "", "orig_id": 1421579}}, {"model": "metainfo.source", "pk": 16889, "fields": {"orig_filename": "Dobernig_Johann-Wolfgang_1862_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421580}}, {"model": "metainfo.source", "pk": 16890, "fields": {"orig_filename": "Dobiaschofsky_Franz-Joseph_1818_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421581}}, {"model": "metainfo.source", "pk": 16891, "fields": {"orig_filename": "Doblhoff-Dier_Anton_1800_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421582}}, {"model": "metainfo.source", "pk": 16892, "fields": {"orig_filename": "Doblhoff-Dier_Josef_1844_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421583}}, {"model": "metainfo.source", "pk": 16893, "fields": {"orig_filename": "Doblhoff-Dier_Karl_1762_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421584}}, {"model": "metainfo.source", "pk": 16894, "fields": {"orig_filename": "Dobrila_Juraj_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189", "author": "", "orig_id": 1421585}}, {"model": "metainfo.source", "pk": 16895, "fields": {"orig_filename": "Dobrovsky_Josef_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 189f.", "author": "", "orig_id": 1421586}}, {"model": "metainfo.source", "pk": 16896, "fields": {"orig_filename": "Dobrzensky-Dobrzenitz_Anton_1807_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421587}}, {"model": "metainfo.source", "pk": 16897, "fields": {"orig_filename": "Czako_Siegmund_1820_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417601}}, {"model": "metainfo.source", "pk": 16898, "fields": {"orig_filename": "Czant_Hermann_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417602}}, {"model": "metainfo.source", "pk": 16899, "fields": {"orig_filename": "Czapek_Friedrich_1868_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417603}}, {"model": "metainfo.source", "pk": 16900, "fields": {"orig_filename": "Czapka-Winstetten_Ignaz_1791_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417604}}, {"model": "metainfo.source", "pk": 16901, "fields": {"orig_filename": "Czartoryski_Adam-Kasimir_1734_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160f.", "author": "", "orig_id": 1417605}}, {"model": "metainfo.source", "pk": 16902, "fields": {"orig_filename": "Czedik-Bruendelsberg-Eysenberg_Alois_1830_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417606}}, {"model": "metainfo.source", "pk": 16903, "fields": {"orig_filename": "Czermak_Franz_1822_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417607}}, {"model": "metainfo.source", "pk": 16904, "fields": {"orig_filename": "Czermak_Jaroslav_1831_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417608}}, {"model": "metainfo.source", "pk": 16905, "fields": {"orig_filename": "Czermak_Johann-Nep_1828_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417609}}, {"model": "metainfo.source", "pk": 16906, "fields": {"orig_filename": "Czermak_Joseph-Julius_1799_1851.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1443916}}, {"model": "metainfo.source", "pk": 16907, "fields": {"orig_filename": "Czermak_Joseph_1825_1872.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2254768}}, {"model": "metainfo.source", "pk": 16908, "fields": {"orig_filename": "Czernin_Johann-Rudolf_1757_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 161", "author": "", "orig_id": 1417610}}, {"model": "metainfo.source", "pk": 16909, "fields": {"orig_filename": "Czernin_Ottokar_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417611}}, {"model": "metainfo.source", "pk": 16910, "fields": {"orig_filename": "Czernits_Franz_1814_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417612}}, {"model": "metainfo.source", "pk": 16911, "fields": {"orig_filename": "Czerny_Albin_1821_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417614}}, {"model": "metainfo.source", "pk": 16912, "fields": {"orig_filename": "Czerny_Franz_1859_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417616}}, {"model": "metainfo.source", "pk": 16913, "fields": {"orig_filename": "Czerny_Karl_1877_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417617}}, {"model": "metainfo.source", "pk": 16914, "fields": {"orig_filename": "Czerny_Vinzenz_1842_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417618}}, {"model": "metainfo.source", "pk": 16915, "fields": {"orig_filename": "Czerwenka_Bernhard-Franz_1825_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163", "author": "", "orig_id": 1417688}}, {"model": "metainfo.source", "pk": 16916, "fields": {"orig_filename": "Czibulka_Alfons_1842_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417690}}, {"model": "metainfo.source", "pk": 16917, "fields": {"orig_filename": "Cziraky_Anton-Moses_1772_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417692}}, {"model": "metainfo.source", "pk": 16918, "fields": {"orig_filename": "Czizek_Johann-Bapt_1806_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417693}}, {"model": "metainfo.source", "pk": 16919, "fields": {"orig_filename": "Czoernig-Czernhausen_Karl_1804_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417694}}, {"model": "metainfo.source", "pk": 16920, "fields": {"orig_filename": "Czoernig-Czernhausen_Walter_1883_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164f.", "author": "", "orig_id": 1417695}}, {"model": "metainfo.source", "pk": 16921, "fields": {"orig_filename": "Czuber_Emanuel_1851_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417696}}, {"model": "metainfo.source", "pk": 16922, "fields": {"orig_filename": "Czuczor_Gregor_1800_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417697}}, {"model": "metainfo.source", "pk": 16923, "fields": {"orig_filename": "Czyhlarz_Karl_1833_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 165", "author": "", "orig_id": 1417698}}, {"model": "metainfo.source", "pk": 16924, "fields": {"orig_filename": "Czyzewicz_Adam-Zygmunt_1841_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2194443}}, {"model": "metainfo.source", "pk": 16925, "fields": {"orig_filename": "Dabancourt-Franqueville_Franz-Xaver_1815_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416969}}, {"model": "metainfo.source", "pk": 16926, "fields": {"orig_filename": "Dachler_Anton_1841_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416970}}, {"model": "metainfo.source", "pk": 16927, "fields": {"orig_filename": "Dachs_Josef_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416971}}, {"model": "metainfo.source", "pk": 16928, "fields": {"orig_filename": "Daeubler_Theodor_1876_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416972}}, {"model": "metainfo.source", "pk": 16929, "fields": {"orig_filename": "Dafert-Sensel-Timmer_Franz_1863_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416973}}, {"model": "metainfo.source", "pk": 16930, "fields": {"orig_filename": "Daffinger_Moritz-Michael_1790_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166", "author": "", "orig_id": 1416974}}, {"model": "metainfo.source", "pk": 16931, "fields": {"orig_filename": "Dahlen-Orlaburg_Hermann_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 166f.", "author": "", "orig_id": 1416975}}, {"model": "metainfo.source", "pk": 16932, "fields": {"orig_filename": "Dahlerup-Birch_Hans_1790_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416976}}, {"model": "metainfo.source", "pk": 16933, "fields": {"orig_filename": "Dajnko_Peter_1787_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416977}}, {"model": "metainfo.source", "pk": 16934, "fields": {"orig_filename": "Dalberg_Friedrich_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416978}}, {"model": "metainfo.source", "pk": 16935, "fields": {"orig_filename": "Dallacqua_Cesare_1821_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416979}}, {"model": "metainfo.source", "pk": 16936, "fields": {"orig_filename": "Dallago_Carl_1869_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1416980}}, {"model": "metainfo.source", "pk": 16937, "fields": {"orig_filename": "Dallatorre_Karl-Wilhelm_1850_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167", "author": "", "orig_id": 1417050}}, {"model": "metainfo.source", "pk": 16938, "fields": {"orig_filename": "Dallinger_Alfred_1926_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1428087}}, {"model": "metainfo.source", "pk": 16939, "fields": {"orig_filename": "Dallocca_Sophie_1807_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 426f.", "author": "", "orig_id": 1406922}}, {"model": "metainfo.source", "pk": 16940, "fields": {"orig_filename": "Dallongaro_Francesco_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 167f.", "author": "", "orig_id": 1417051}}, {"model": "metainfo.source", "pk": 16941, "fields": {"orig_filename": "Damboeck_Ludwig_1798_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417052}}, {"model": "metainfo.source", "pk": 16942, "fields": {"orig_filename": "Damianitsch_Martin_1807_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417054}}, {"model": "metainfo.source", "pk": 16943, "fields": {"orig_filename": "Damian_Josef_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417053}}, {"model": "metainfo.source", "pk": 16944, "fields": {"orig_filename": "Damjanich_Johann_1804_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417055}}, {"model": "metainfo.source", "pk": 16945, "fields": {"orig_filename": "Dandreis-Beausson_Josef-Julius_1788_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417056}}, {"model": "metainfo.source", "pk": 16946, "fields": {"orig_filename": "Danegger_Josef_1866_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417057}}, {"model": "metainfo.source", "pk": 16947, "fields": {"orig_filename": "Danei_Josef_1782_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417058}}, {"model": "metainfo.source", "pk": 16948, "fields": {"orig_filename": "Dangelmeier_Emil_1850_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168", "author": "", "orig_id": 1417059}}, {"model": "metainfo.source", "pk": 16949, "fields": {"orig_filename": "Danhauser_Josef_1805_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 168f.", "author": "", "orig_id": 1417060}}, {"model": "metainfo.source", "pk": 16950, "fields": {"orig_filename": "Danhelovsky_Konstantin_1857_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417061}}, {"model": "metainfo.source", "pk": 16951, "fields": {"orig_filename": "Dani-Gyarmata-Magyar-Cseke_Blasius_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417062}}, {"model": "metainfo.source", "pk": 16952, "fields": {"orig_filename": "Dankl-Krasnik_Viktor_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417063}}, {"model": "metainfo.source", "pk": 16953, "fields": {"orig_filename": "Danko_Josef-Karl_1829_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417064}}, {"model": "metainfo.source", "pk": 16954, "fields": {"orig_filename": "Danno_Josef_1742_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169", "author": "", "orig_id": 1417065}}, {"model": "metainfo.source", "pk": 16955, "fields": {"orig_filename": "Dantoni_Antonio_1801_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 169f.", "author": "", "orig_id": 1417066}}, {"model": "metainfo.source", "pk": 16956, "fields": {"orig_filename": "Dantscher-Kollersberg_Theodor_1844_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417067}}, {"model": "metainfo.source", "pk": 16957, "fields": {"orig_filename": "Danzer_Alfons_1842_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417068}}, {"model": "metainfo.source", "pk": 16958, "fields": {"orig_filename": "Daranyi_Ignaz_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417070}}, {"model": "metainfo.source", "pk": 16959, "fields": {"orig_filename": "Darnaut-Fix_Hugo_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417071}}, {"model": "metainfo.source", "pk": 16960, "fields": {"orig_filename": "Daspre-Hoobreuk_Konstantin_1787_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170", "author": "", "orig_id": 1417072}}, {"model": "metainfo.source", "pk": 16961, "fields": {"orig_filename": "Daublebsky-Sterneck-Ehrenstein_Jakob_1868_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1430148}}, {"model": "metainfo.source", "pk": 16962, "fields": {"orig_filename": "Daublebsky-Sterneck_Maximilian_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417074}}, {"model": "metainfo.source", "pk": 16963, "fields": {"orig_filename": "Daublebsky-Sterneck_Moritz_1834_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417146}}, {"model": "metainfo.source", "pk": 16964, "fields": {"orig_filename": "Daublebsky-Sterneck_Robert_1839_1910.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417147}}, {"model": "metainfo.source", "pk": 16965, "fields": {"orig_filename": "Daub_Hermann_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 170f.", "author": "", "orig_id": 1417073}}, {"model": "metainfo.source", "pk": 16966, "fields": {"orig_filename": "Dauthage_Adolf_1825_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417148}}, {"model": "metainfo.source", "pk": 16967, "fields": {"orig_filename": "David_Jakob-Julius_1859_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 171", "author": "", "orig_id": 1417149}}, {"model": "metainfo.source", "pk": 16968, "fields": {"orig_filename": "David_Martin-Alois_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417150}}, {"model": "metainfo.source", "pk": 16969, "fields": {"orig_filename": "David_Werner_1836_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417151}}, {"model": "metainfo.source", "pk": 16970, "fields": {"orig_filename": "Deak-Ebner_Ludwig_1850_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417153}}, {"model": "metainfo.source", "pk": 16971, "fields": {"orig_filename": "Deak_Franz_1803_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417152}}, {"model": "metainfo.source", "pk": 16972, "fields": {"orig_filename": "Deball_Leo-Anton-Karl_1853_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417154}}, {"model": "metainfo.source", "pk": 16973, "fields": {"orig_filename": "Debaut_Franz_1745_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417155}}, {"model": "metainfo.source", "pk": 16974, "fields": {"orig_filename": "Debois_Ferdinand_1835_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 172", "author": "", "orig_id": 1417156}}, {"model": "metainfo.source", "pk": 16975, "fields": {"orig_filename": "Debrois-Bruyck_Karl_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417157}}, {"model": "metainfo.source", "pk": 16976, "fields": {"orig_filename": "Decarli_Bruno_1877_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 250f.", "author": "", "orig_id": 1406550}}, {"model": "metainfo.source", "pk": 16977, "fields": {"orig_filename": "Decker_Gabriel_1821_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417158}}, {"model": "metainfo.source", "pk": 16978, "fields": {"orig_filename": "Decker_Georg_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417159}}, {"model": "metainfo.source", "pk": 16979, "fields": {"orig_filename": "Decker_Johann-Stephan_1784_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417160}}, {"model": "metainfo.source", "pk": 16980, "fields": {"orig_filename": "Decsey_Alexander_1854_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417161}}, {"model": "metainfo.source", "pk": 16981, "fields": {"orig_filename": "Decsey_Ernst_1870_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417162}}, {"model": "metainfo.source", "pk": 16982, "fields": {"orig_filename": "Dedekind_Alexander_1856_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173", "author": "", "orig_id": 1417163}}, {"model": "metainfo.source", "pk": 16983, "fields": {"orig_filename": "Dedic_Paul_1890_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 173f.", "author": "", "orig_id": 1417164}}, {"model": "metainfo.source", "pk": 16984, "fields": {"orig_filename": "Dedovic_Martin_1756_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417165}}, {"model": "metainfo.source", "pk": 16985, "fields": {"orig_filename": "Defabris_Giuseppe_1790_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417166}}, {"model": "metainfo.source", "pk": 16986, "fields": {"orig_filename": "Degen-Elsenau_Josef-Vinzenz_1762_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417169}}, {"model": "metainfo.source", "pk": 16987, "fields": {"orig_filename": "Degenfeld-Schonburg_August_1798_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174f.", "author": "", "orig_id": 1417170}}, {"model": "metainfo.source", "pk": 16988, "fields": {"orig_filename": "Degenfeld-Schonburg_Friedrich_1769_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417241}}, {"model": "metainfo.source", "pk": 16989, "fields": {"orig_filename": "Degen_Jakob_1760_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417168}}, {"model": "metainfo.source", "pk": 16990, "fields": {"orig_filename": "Degner_Erich-Wolfgang_1858_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417242}}, {"model": "metainfo.source", "pk": 16991, "fields": {"orig_filename": "Dehne_August_1830_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443704}}, {"model": "metainfo.source", "pk": 16992, "fields": {"orig_filename": "Deil_Eugen_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1419883}}, {"model": "metainfo.source", "pk": 16993, "fields": {"orig_filename": "Deinhard-Deinhardstein_Johann-Ludwig_1790_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 175", "author": "", "orig_id": 1417243}}, {"model": "metainfo.source", "pk": 16994, "fields": {"orig_filename": "Chmelensky_Ladislav_1860_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417220}}, {"model": "metainfo.source", "pk": 16995, "fields": {"orig_filename": "Chmel_Adam-Matthias_1770_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417144}}, {"model": "metainfo.source", "pk": 16996, "fields": {"orig_filename": "Chmel_Josef_1798_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417145}}, {"model": "metainfo.source", "pk": 16997, "fields": {"orig_filename": "Chocholousek_Prokop_1819_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417221}}, {"model": "metainfo.source", "pk": 16998, "fields": {"orig_filename": "Chodounsky_Karl_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417222}}, {"model": "metainfo.source", "pk": 16999, "fields": {"orig_filename": "Cholewa_Josip_1885_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2192006}}, {"model": "metainfo.source", "pk": 17000, "fields": {"orig_filename": "Chorherr_Franz-Xaver_1843_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417223}}, {"model": "metainfo.source", "pk": 17001, "fields": {"orig_filename": "Chorinsky_Karl_1828_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1419882}}, {"model": "metainfo.source", "pk": 17002, "fields": {"orig_filename": "Chotek_Johann-Rud_1749_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417224}}, {"model": "metainfo.source", "pk": 17003, "fields": {"orig_filename": "Chotek_Karl_1783_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417225}}, {"model": "metainfo.source", "pk": 17004, "fields": {"orig_filename": "Chotek_Sophie_1868_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 146", "author": "", "orig_id": 1417226}}, {"model": "metainfo.source", "pk": 17005, "fields": {"orig_filename": "Christ-Ehrenblueh_Josef_1770_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417228}}, {"model": "metainfo.source", "pk": 17006, "fields": {"orig_filename": "Christel_Franz_1865_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417229}}, {"model": "metainfo.source", "pk": 17007, "fields": {"orig_filename": "Christen_Wilhelm_1818_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417231}}, {"model": "metainfo.source", "pk": 17008, "fields": {"orig_filename": "Christians_Mady_1896_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2167471}}, {"model": "metainfo.source", "pk": 17009, "fields": {"orig_filename": "Christomanos_Konstantin_1867_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417232}}, {"model": "metainfo.source", "pk": 17010, "fields": {"orig_filename": "Christomanos_Theodor_1855_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417233}}, {"model": "metainfo.source", "pk": 17011, "fields": {"orig_filename": "Christ_Josef-Anton_1744_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417227}}, {"model": "metainfo.source", "pk": 17012, "fields": {"orig_filename": "Chrobak_Rudolf_1843_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147", "author": "", "orig_id": 1417234}}, {"model": "metainfo.source", "pk": 17013, "fields": {"orig_filename": "Chroust_Anton_1864_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 147f.", "author": "", "orig_id": 1417235}}, {"model": "metainfo.source", "pk": 17014, "fields": {"orig_filename": "Chvostek_Franz_1835_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417236}}, {"model": "metainfo.source", "pk": 17015, "fields": {"orig_filename": "Chvostek_Franz_1864_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417237}}, {"model": "metainfo.source", "pk": 17016, "fields": {"orig_filename": "Cicognara_Leopoldo_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417239}}, {"model": "metainfo.source", "pk": 17017, "fields": {"orig_filename": "Cicogna_Emanuele-Antonio_1789_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417238}}, {"model": "metainfo.source", "pk": 17018, "fields": {"orig_filename": "Cikos-Sesija_Bela_1864_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417240}}, {"model": "metainfo.source", "pk": 17019, "fields": {"orig_filename": "Cingr_Petr_1850_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2173829}}, {"model": "metainfo.source", "pk": 17020, "fields": {"orig_filename": "Clary-Aldringen_Manfred_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417318}}, {"model": "metainfo.source", "pk": 17021, "fields": {"orig_filename": "Clar_Conrad_1844_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1441329}}, {"model": "metainfo.source", "pk": 17022, "fields": {"orig_filename": "Clar_Franz_1812_1876.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1441328}}, {"model": "metainfo.source", "pk": 17023, "fields": {"orig_filename": "Clement_Franz_1780_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417321}}, {"model": "metainfo.source", "pk": 17024, "fields": {"orig_filename": "Coch_Georg-Theodor_1842_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1419881}}, {"model": "metainfo.source", "pk": 17025, "fields": {"orig_filename": "Coghetti_Francesco_1804_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417322}}, {"model": "metainfo.source", "pk": 17026, "fields": {"orig_filename": "Cohn_Heinrich_1855_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417323}}, {"model": "metainfo.source", "pk": 17027, "fields": {"orig_filename": "Cokor_Istvan_1849_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417324}}, {"model": "metainfo.source", "pk": 17028, "fields": {"orig_filename": "Colard_Hermann_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417325}}, {"model": "metainfo.source", "pk": 17029, "fields": {"orig_filename": "Colerus-Geldern_Egmont_1888_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417326}}, {"model": "metainfo.source", "pk": 17030, "fields": {"orig_filename": "Colerus-Geldern_Emil_1856_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150", "author": "", "orig_id": 1417327}}, {"model": "metainfo.source", "pk": 17031, "fields": {"orig_filename": "Collenbach_Gabriel_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 150f.", "author": "", "orig_id": 1417328}}, {"model": "metainfo.source", "pk": 17032, "fields": {"orig_filename": "Collery_Eduard_1790_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417329}}, {"model": "metainfo.source", "pk": 17033, "fields": {"orig_filename": "Collin_Matthaeus_1779_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417330}}, {"model": "metainfo.source", "pk": 17034, "fields": {"orig_filename": "Collmann_Alfred_1851_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417331}}, {"model": "metainfo.source", "pk": 17035, "fields": {"orig_filename": "Colloredo-Mannsfeld_Ferdinand_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417332}}, {"model": "metainfo.source", "pk": 17036, "fields": {"orig_filename": "Colloredo-Mannsfeld_Hieronymus_1775_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417333}}, {"model": "metainfo.source", "pk": 17037, "fields": {"orig_filename": "Colloredo-Mels-Wallsee_Joseph_1735_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 151", "author": "", "orig_id": 1417334}}, {"model": "metainfo.source", "pk": 17038, "fields": {"orig_filename": "Colloredo-Mels-Wallsee_Wenzel-Joseph_1738_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417335}}, {"model": "metainfo.source", "pk": 17039, "fields": {"orig_filename": "Comerio_Agostino_1784_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417336}}, {"model": "metainfo.source", "pk": 17040, "fields": {"orig_filename": "Comolli_Giovanni-Battista_1775_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417337}}, {"model": "metainfo.source", "pk": 17041, "fields": {"orig_filename": "Conconi_Mauro_1815_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417338}}, {"model": "metainfo.source", "pk": 17042, "fields": {"orig_filename": "Conegliano_Emanuele_1749_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417339}}, {"model": "metainfo.source", "pk": 17043, "fields": {"orig_filename": "Conn_Leopold_1820_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152", "author": "", "orig_id": 1417412}}, {"model": "metainfo.source", "pk": 17044, "fields": {"orig_filename": "Conrad-Eybesfeld_Siegmund_1821_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153", "author": "", "orig_id": 1417414}}, {"model": "metainfo.source", "pk": 17045, "fields": {"orig_filename": "Conrad-Hoetzendorf_Franz_1852_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153", "author": "", "orig_id": 1417415}}, {"model": "metainfo.source", "pk": 17046, "fields": {"orig_filename": "Conrad_Otto_1876_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 152f.", "author": "", "orig_id": 1417413}}, {"model": "metainfo.source", "pk": 17047, "fields": {"orig_filename": "Cop_Matija_1797_1835.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417418}}, {"model": "metainfo.source", "pk": 17048, "fields": {"orig_filename": "Corda_August-Karl-Josef_1805_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154", "author": "", "orig_id": 1417419}}, {"model": "metainfo.source", "pk": 17049, "fields": {"orig_filename": "Coreth_Emerich_1881_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154", "author": "", "orig_id": 1417420}}, {"model": "metainfo.source", "pk": 17050, "fields": {"orig_filename": "Cornelius_Hans-Peter_1888_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 154f.", "author": "", "orig_id": 1417421}}, {"model": "metainfo.source", "pk": 17051, "fields": {"orig_filename": "Cornet_Julius_1793_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417422}}, {"model": "metainfo.source", "pk": 17052, "fields": {"orig_filename": "Cornova_Ignaz_1740_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417423}}, {"model": "metainfo.source", "pk": 17053, "fields": {"orig_filename": "Coronini-Cronberg_Franz_1830_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417424}}, {"model": "metainfo.source", "pk": 17054, "fields": {"orig_filename": "Coronini-Cronberg_Johann-Baptist_1794_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417425}}, {"model": "metainfo.source", "pk": 17055, "fields": {"orig_filename": "Coronini-Cronberg_Karl_1818_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417426}}, {"model": "metainfo.source", "pk": 17056, "fields": {"orig_filename": "Correr_Teodoro_1750_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417427}}, {"model": "metainfo.source", "pk": 17057, "fields": {"orig_filename": "Costa_Karl_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 155", "author": "", "orig_id": 1417428}}, {"model": "metainfo.source", "pk": 17058, "fields": {"orig_filename": "Costenoble_Johanna_1777_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417429}}, {"model": "metainfo.source", "pk": 17059, "fields": {"orig_filename": "Costenoble_Karl_1837_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417430}}, {"model": "metainfo.source", "pk": 17060, "fields": {"orig_filename": "Coudenhove_Karl-Maria_1855_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417432}}, {"model": "metainfo.source", "pk": 17061, "fields": {"orig_filename": "Coudenhove_Maximilian_1865_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417433}}, {"model": "metainfo.source", "pk": 17062, "fields": {"orig_filename": "Coumont_Eduard_1861_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417434}}, {"model": "metainfo.source", "pk": 17063, "fields": {"orig_filename": "Crivelli_Antonio_1783_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417435}}, {"model": "metainfo.source", "pk": 17064, "fields": {"orig_filename": "Crncic_Menci-Klement_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417505}}, {"model": "metainfo.source", "pk": 17065, "fields": {"orig_filename": "Cronbach_Else_1879_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156f.", "author": "", "orig_id": 1417506}}, {"model": "metainfo.source", "pk": 17066, "fields": {"orig_filename": "Crophius-Kaisersieg_Ludwig_1792_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417507}}, {"model": "metainfo.source", "pk": 17067, "fields": {"orig_filename": "Cruewell_Gottlieb-August_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417508}}, {"model": "metainfo.source", "pk": 17068, "fields": {"orig_filename": "Crusius_Christian_1758_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417509}}, {"model": "metainfo.source", "pk": 17069, "fields": {"orig_filename": "Csanki_Deszoe_1857_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417510}}, {"model": "metainfo.source", "pk": 17070, "fields": {"orig_filename": "Csaplovics-Jescenova_Johann_1780_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417511}}, {"model": "metainfo.source", "pk": 17071, "fields": {"orig_filename": "Csemegi_Karl_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157", "author": "", "orig_id": 1417512}}, {"model": "metainfo.source", "pk": 17072, "fields": {"orig_filename": "Csengery_Anton_1822_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 157f.", "author": "", "orig_id": 1417513}}, {"model": "metainfo.source", "pk": 17073, "fields": {"orig_filename": "Csermak_Anton_1771_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417514}}, {"model": "metainfo.source", "pk": 17074, "fields": {"orig_filename": "Csiky_Gregor_1842_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417515}}, {"model": "metainfo.source", "pk": 17075, "fields": {"orig_filename": "Csillag_Rosa_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417516}}, {"model": "metainfo.source", "pk": 17076, "fields": {"orig_filename": "Csivich-Rohr_Ignaz_1752_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417517}}, {"model": "metainfo.source", "pk": 17077, "fields": {"orig_filename": "Csokor_Franz-Theodor_1885_1969.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438139}}, {"model": "metainfo.source", "pk": 17078, "fields": {"orig_filename": "Csok_Stephan_1865_1961.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417518}}, {"model": "metainfo.source", "pk": 17079, "fields": {"orig_filename": "Csonka_Janos_1852_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1910690}}, {"model": "metainfo.source", "pk": 17080, "fields": {"orig_filename": "Csorich-Monte-Creto_Alexander-Franz_1772_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 158", "author": "", "orig_id": 1417519}}, {"model": "metainfo.source", "pk": 17081, "fields": {"orig_filename": "Cuka_Jakov_1868_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417521}}, {"model": "metainfo.source", "pk": 17082, "fields": {"orig_filename": "Culoz_Karl_1785_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417522}}, {"model": "metainfo.source", "pk": 17083, "fields": {"orig_filename": "Cumberland_Ernst-August_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417523}}, {"model": "metainfo.source", "pk": 17084, "fields": {"orig_filename": "Cuntz_Otto_1865_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417524}}, {"model": "metainfo.source", "pk": 17085, "fields": {"orig_filename": "Cupr_Frantisek_1821_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417525}}, {"model": "metainfo.source", "pk": 17086, "fields": {"orig_filename": "Curinaldi_Alois_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159", "author": "", "orig_id": 1417526}}, {"model": "metainfo.source", "pk": 17087, "fields": {"orig_filename": "Cuscoleca_Julius_1872_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 159f.", "author": "", "orig_id": 1417598}}, {"model": "metainfo.source", "pk": 17088, "fields": {"orig_filename": "Cuvaj_Anton_1854_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417599}}, {"model": "metainfo.source", "pk": 17089, "fields": {"orig_filename": "Cvijic_Jovan_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 160", "author": "", "orig_id": 1417600}}, {"model": "metainfo.source", "pk": 17090, "fields": {"orig_filename": "Burrian_Karl_1870_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419746}}, {"model": "metainfo.source", "pk": 17091, "fields": {"orig_filename": "Burstyn_Gunther_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419747}}, {"model": "metainfo.source", "pk": 17092, "fields": {"orig_filename": "Buschmann_Alfred_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419748}}, {"model": "metainfo.source", "pk": 17093, "fields": {"orig_filename": "Buschmann_Dina_1857_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130", "author": "", "orig_id": 1419749}}, {"model": "metainfo.source", "pk": 17094, "fields": {"orig_filename": "Buschmann_Gotthard_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 130f.", "author": "", "orig_id": 1419750}}, {"model": "metainfo.source", "pk": 17095, "fields": {"orig_filename": "Busson_Arnold_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419751}}, {"model": "metainfo.source", "pk": 17096, "fields": {"orig_filename": "Busson_Paul_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419752}}, {"model": "metainfo.source", "pk": 17097, "fields": {"orig_filename": "Buttlar-Moscon_Alfred_1898_1972.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1442839}}, {"model": "metainfo.source", "pk": 17098, "fields": {"orig_filename": "Buttlar_Auguste_1796_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419753}}, {"model": "metainfo.source", "pk": 17099, "fields": {"orig_filename": "Buwa_Johann_1828_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419754}}, {"model": "metainfo.source", "pk": 17100, "fields": {"orig_filename": "Buzzi_Andreas_1779_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419799}}, {"model": "metainfo.source", "pk": 17101, "fields": {"orig_filename": "Bylandt-Rheidt_Artur-Maximilian_1821_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131f.", "author": "", "orig_id": 1419801}}, {"model": "metainfo.source", "pk": 17102, "fields": {"orig_filename": "Bylandt-Rheidt_Artur_1854_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 131", "author": "", "orig_id": 1419800}}, {"model": "metainfo.source", "pk": 17103, "fields": {"orig_filename": "Byloff_Fritz_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1419802}}, {"model": "metainfo.source", "pk": 17104, "fields": {"orig_filename": "Caboga_Bernhard_1785_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416758}}, {"model": "metainfo.source", "pk": 17105, "fields": {"orig_filename": "Cackovic_Miroslav_1865_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132", "author": "", "orig_id": 1416759}}, {"model": "metainfo.source", "pk": 17106, "fields": {"orig_filename": "Cada_Frantisek_1865_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416760}}, {"model": "metainfo.source", "pk": 17107, "fields": {"orig_filename": "Cagnola_Luigi_1762_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 132f.", "author": "", "orig_id": 1416762}}, {"model": "metainfo.source", "pk": 17108, "fields": {"orig_filename": "Cagnoni_Antonio_1828_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416763}}, {"model": "metainfo.source", "pk": 17109, "fields": {"orig_filename": "Calafati_Theodor_1843_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416764}}, {"model": "metainfo.source", "pk": 17110, "fields": {"orig_filename": "Calegari_Antonio_1757_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416765}}, {"model": "metainfo.source", "pk": 17111, "fields": {"orig_filename": "Calice_Heinrich_1831_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416766}}, {"model": "metainfo.source", "pk": 17112, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Friedrich_1854_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416767}}, {"model": "metainfo.source", "pk": 17113, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Guido_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133", "author": "", "orig_id": 1416768}}, {"model": "metainfo.source", "pk": 17114, "fields": {"orig_filename": "Call-Rosenburg-Kulmbach_Karl_1777_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 133f.", "author": "", "orig_id": 1416769}}, {"model": "metainfo.source", "pk": 17115, "fields": {"orig_filename": "Camesina_Albert_1806_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416770}}, {"model": "metainfo.source", "pk": 17116, "fields": {"orig_filename": "Campana-Spluegenberg_Anton_1776_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416771}}, {"model": "metainfo.source", "pk": 17117, "fields": {"orig_filename": "Canal-Malabaila_Josef-Emanuel_1745_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416772}}, {"model": "metainfo.source", "pk": 17118, "fields": {"orig_filename": "Canal_Gilbert_1849_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1419870}}, {"model": "metainfo.source", "pk": 17119, "fields": {"orig_filename": "Canaval_Michael-Franz_1798_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416846}}, {"model": "metainfo.source", "pk": 17120, "fields": {"orig_filename": "Canaval_Richard_1855_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 134", "author": "", "orig_id": 1416847}}, {"model": "metainfo.source", "pk": 17121, "fields": {"orig_filename": "Canciani_Alfonso_1863_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416848}}, {"model": "metainfo.source", "pk": 17122, "fields": {"orig_filename": "Canestrini_Giovanni_1835_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416849}}, {"model": "metainfo.source", "pk": 17123, "fields": {"orig_filename": "Cankar_Ivan_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416850}}, {"model": "metainfo.source", "pk": 17124, "fields": {"orig_filename": "Canova_Antonio_1757_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416851}}, {"model": "metainfo.source", "pk": 17125, "fields": {"orig_filename": "Cantani_Arnaldo_1837_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135", "author": "", "orig_id": 1416852}}, {"model": "metainfo.source", "pk": 17126, "fields": {"orig_filename": "Cantor_Matthias_1861_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 135f.", "author": "", "orig_id": 1416853}}, {"model": "metainfo.source", "pk": 17127, "fields": {"orig_filename": "Cantu_Cesare_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416854}}, {"model": "metainfo.source", "pk": 17128, "fields": {"orig_filename": "Capek-Chod_Karel-Matej_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416856}}, {"model": "metainfo.source", "pk": 17129, "fields": {"orig_filename": "Capek_Karel_1890_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416855}}, {"model": "metainfo.source", "pk": 17130, "fields": {"orig_filename": "Capelari_Friedrich_1884_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416857}}, {"model": "metainfo.source", "pk": 17131, "fields": {"orig_filename": "Capilleri_Wilhelm_1834_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416858}}, {"model": "metainfo.source", "pk": 17132, "fields": {"orig_filename": "Carabelli-Lunkaszprie_Georg_1787_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416860}}, {"model": "metainfo.source", "pk": 17133, "fields": {"orig_filename": "Carcano_Giulio_1812_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136f.", "author": "", "orig_id": 1416861}}, {"model": "metainfo.source", "pk": 17134, "fields": {"orig_filename": "Carlini_Francesco_1783_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416864}}, {"model": "metainfo.source", "pk": 17135, "fields": {"orig_filename": "Carneri_Bartholomaeus_1821_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416865}}, {"model": "metainfo.source", "pk": 17136, "fields": {"orig_filename": "Carrer_Luigi_1801_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416866}}, {"model": "metainfo.source", "pk": 17137, "fields": {"orig_filename": "Carro_Johann_1770_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416867}}, {"model": "metainfo.source", "pk": 17138, "fields": {"orig_filename": "Cartellieri_Wilhelm_1860_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416868}}, {"model": "metainfo.source", "pk": 17139, "fields": {"orig_filename": "Car_Lazar_1860_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 136", "author": "", "orig_id": 1416859}}, {"model": "metainfo.source", "pk": 17140, "fields": {"orig_filename": "Casati_Gabrio_1798_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137", "author": "", "orig_id": 1416869}}, {"model": "metainfo.source", "pk": 17141, "fields": {"orig_filename": "Cassinone_Alexander_1866_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 137f.", "author": "", "orig_id": 1416870}}, {"model": "metainfo.source", "pk": 17142, "fields": {"orig_filename": "Castelli_Ignaz-Franz_1781_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416871}}, {"model": "metainfo.source", "pk": 17143, "fields": {"orig_filename": "Castiglione_Johann_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416934}}, {"model": "metainfo.source", "pk": 17144, "fields": {"orig_filename": "Cathrein_Alois_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416935}}, {"model": "metainfo.source", "pk": 17145, "fields": {"orig_filename": "Catinelli_Maximilian_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416936}}, {"model": "metainfo.source", "pk": 17146, "fields": {"orig_filename": "Catty_Adolf_1823_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138", "author": "", "orig_id": 1416937}}, {"model": "metainfo.source", "pk": 17147, "fields": {"orig_filename": "Caucig_Franz_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 138f.", "author": "", "orig_id": 1416938}}, {"model": "metainfo.source", "pk": 17148, "fields": {"orig_filename": "Cavar_Alfred_1859_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416939}}, {"model": "metainfo.source", "pk": 17149, "fields": {"orig_filename": "Cazan_Dominik_1755_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416940}}, {"model": "metainfo.source", "pk": 17150, "fields": {"orig_filename": "Cebotari_Maria_1910_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416941}}, {"model": "metainfo.source", "pk": 17151, "fields": {"orig_filename": "Cech_Svatopluk_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416942}}, {"model": "metainfo.source", "pk": 17152, "fields": {"orig_filename": "Cegnar_Franz_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416943}}, {"model": "metainfo.source", "pk": 17153, "fields": {"orig_filename": "Ceipek_Josef_1844_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139", "author": "", "orig_id": 1416944}}, {"model": "metainfo.source", "pk": 17154, "fields": {"orig_filename": "Celakovsky_Frantisek-Lad_1799_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 139f.", "author": "", "orig_id": 1416945}}, {"model": "metainfo.source", "pk": 17155, "fields": {"orig_filename": "Celestin_Franz_1843_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416948}}, {"model": "metainfo.source", "pk": 17156, "fields": {"orig_filename": "Cermak_Wilhelm_1856_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416949}}, {"model": "metainfo.source", "pk": 17157, "fields": {"orig_filename": "Cerny_Thomas_1840_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416950}}, {"model": "metainfo.source", "pk": 17158, "fields": {"orig_filename": "Cerri_Caecilie_1872_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416951}}, {"model": "metainfo.source", "pk": 17159, "fields": {"orig_filename": "Cerri_Cajetan_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140f.", "author": "", "orig_id": 1416952}}, {"model": "metainfo.source", "pk": 17160, "fields": {"orig_filename": "Cesari_Antonio_1760_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416954}}, {"model": "metainfo.source", "pk": 17161, "fields": {"orig_filename": "Cevapovic_Gregor_1786_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416955}}, {"model": "metainfo.source", "pk": 17162, "fields": {"orig_filename": "Chadt_Josef_1812_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416956}}, {"model": "metainfo.source", "pk": 17163, "fields": {"orig_filename": "Chajes_Hirsch-Perez_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416957}}, {"model": "metainfo.source", "pk": 17164, "fields": {"orig_filename": "Chalupka_Samo_1812_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417028}}, {"model": "metainfo.source", "pk": 17165, "fields": {"orig_filename": "Chasteler-Courcelles_Johann-Gabriel_1763_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141f.", "author": "", "orig_id": 1417031}}, {"model": "metainfo.source", "pk": 17166, "fields": {"orig_filename": "Chavanne_Irene_1863_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417032}}, {"model": "metainfo.source", "pk": 17167, "fields": {"orig_filename": "Chavanne_Josef_1846_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417033}}, {"model": "metainfo.source", "pk": 17168, "fields": {"orig_filename": "Chezy_Wilhelm-Theodor_1806_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417034}}, {"model": "metainfo.source", "pk": 17169, "fields": {"orig_filename": "Chiari_Arthur_1851_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417035}}, {"model": "metainfo.source", "pk": 17170, "fields": {"orig_filename": "Chiari_Hans_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417036}}, {"model": "metainfo.source", "pk": 17171, "fields": {"orig_filename": "Chiari_Johann-Bapt_1817_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417037}}, {"model": "metainfo.source", "pk": 17172, "fields": {"orig_filename": "Chiari_Josef_1819_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142", "author": "", "orig_id": 1417038}}, {"model": "metainfo.source", "pk": 17173, "fields": {"orig_filename": "Chiari_Karl_1849_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 142f.", "author": "", "orig_id": 1417039}}, {"model": "metainfo.source", "pk": 17174, "fields": {"orig_filename": "Chiari_Max_1832_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417040}}, {"model": "metainfo.source", "pk": 17175, "fields": {"orig_filename": "Chiari_Ottokar_1853_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417041}}, {"model": "metainfo.source", "pk": 17176, "fields": {"orig_filename": "Chiavacci_Vinzenz_1847_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417042}}, {"model": "metainfo.source", "pk": 17177, "fields": {"orig_filename": "Chimani-Mannberg_Anton_1768_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417135}}, {"model": "metainfo.source", "pk": 17178, "fields": {"orig_filename": "Chimani_Leopold_1774_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 143", "author": "", "orig_id": 1417134}}, {"model": "metainfo.source", "pk": 17179, "fields": {"orig_filename": "Chiolich-Loewensberg_Hermann_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417136}}, {"model": "metainfo.source", "pk": 17180, "fields": {"orig_filename": "Chittussi_Anton_1847_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417137}}, {"model": "metainfo.source", "pk": 17181, "fields": {"orig_filename": "Chledowski_Kasimir_1843_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417138}}, {"model": "metainfo.source", "pk": 17182, "fields": {"orig_filename": "Chlumecky_Johann_1834_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417141}}, {"model": "metainfo.source", "pk": 17183, "fields": {"orig_filename": "Chlumecky_Leopold_1873_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144f.", "author": "", "orig_id": 1417142}}, {"model": "metainfo.source", "pk": 17184, "fields": {"orig_filename": "Chlumecky_Peter_1825_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417143}}, {"model": "metainfo.source", "pk": 17185, "fields": {"orig_filename": "Chmelarz_Eduard_1847_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145", "author": "", "orig_id": 1417218}}, {"model": "metainfo.source", "pk": 17186, "fields": {"orig_filename": "Chmelensky_Josef-Krasoslav_1800_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 145f.", "author": "", "orig_id": 1417219}}, {"model": "metainfo.source", "pk": 17187, "fields": {"orig_filename": "Brik_Johann-Emanuel_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420549}}, {"model": "metainfo.source", "pk": 17188, "fields": {"orig_filename": "Brioschi_Anton_1855_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420550}}, {"model": "metainfo.source", "pk": 17189, "fields": {"orig_filename": "Brioschi_Francesco_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420551}}, {"model": "metainfo.source", "pk": 17190, "fields": {"orig_filename": "Brioschi_Karl_1826_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420552}}, {"model": "metainfo.source", "pk": 17191, "fields": {"orig_filename": "Brioschi_Othmar_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420553}}, {"model": "metainfo.source", "pk": 17192, "fields": {"orig_filename": "Brlic-Mazuranic_Ivana_1874_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420556}}, {"model": "metainfo.source", "pk": 17193, "fields": {"orig_filename": "Brlic_Andrija-Torkvat_1826_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420554}}, {"model": "metainfo.source", "pk": 17194, "fields": {"orig_filename": "Brlic_Ignjat-Alojzije_1795_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420555}}, {"model": "metainfo.source", "pk": 17195, "fields": {"orig_filename": "Brociner_Marco_1852_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420557}}, {"model": "metainfo.source", "pk": 17196, "fields": {"orig_filename": "Brocky_Karl_1807_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420558}}, {"model": "metainfo.source", "pk": 17197, "fields": {"orig_filename": "Broda_Rudolf_1880_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115", "author": "", "orig_id": 1420559}}, {"model": "metainfo.source", "pk": 17198, "fields": {"orig_filename": "Brody_Alexander_1863_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 115f.", "author": "", "orig_id": 1420560}}, {"model": "metainfo.source", "pk": 17199, "fields": {"orig_filename": "Brodzinski_Kazimierz_1791_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420605}}, {"model": "metainfo.source", "pk": 17200, "fields": {"orig_filename": "Bronner_Ferdinand_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420606}}, {"model": "metainfo.source", "pk": 17201, "fields": {"orig_filename": "Brosch-Aarenau_Alexander_1870_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420608}}, {"model": "metainfo.source", "pk": 17202, "fields": {"orig_filename": "Brosch-Aarenau_Theodor_1869_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116f.", "author": "", "orig_id": 1420609}}, {"model": "metainfo.source", "pk": 17203, "fields": {"orig_filename": "Brosch_Moritz_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 116", "author": "", "orig_id": 1420607}}, {"model": "metainfo.source", "pk": 17204, "fields": {"orig_filename": "Brotanek_Rudolf_1870_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420610}}, {"model": "metainfo.source", "pk": 17205, "fields": {"orig_filename": "Brozik_Wenzel_1851_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420611}}, {"model": "metainfo.source", "pk": 17206, "fields": {"orig_filename": "Bruckner_Anton_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420615}}, {"model": "metainfo.source", "pk": 17207, "fields": {"orig_filename": "Bruckner_Ferdinand_1891_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1422506}}, {"model": "metainfo.source", "pk": 17208, "fields": {"orig_filename": "Bruck_Karl-Ludwig_1830_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 117", "author": "", "orig_id": 1420613}}, {"model": "metainfo.source", "pk": 17209, "fields": {"orig_filename": "Bruech_Oskar_1869_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420616}}, {"model": "metainfo.source", "pk": 17210, "fields": {"orig_filename": "Bruecke_Ernst-Theodor_1880_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420618}}, {"model": "metainfo.source", "pk": 17211, "fields": {"orig_filename": "Bruecke_Ernst-Wilhelm_1819_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119", "author": "", "orig_id": 1420617}}, {"model": "metainfo.source", "pk": 17212, "fields": {"orig_filename": "Brueckner_Alexander_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 119f.", "author": "", "orig_id": 1420619}}, {"model": "metainfo.source", "pk": 17213, "fields": {"orig_filename": "Brueckner_Eduard_1862_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420620}}, {"model": "metainfo.source", "pk": 17214, "fields": {"orig_filename": "Bruehl_Karl-Bernhard_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420621}}, {"model": "metainfo.source", "pk": 17215, "fields": {"orig_filename": "Bruell_Ignaz_1846_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420622}}, {"model": "metainfo.source", "pk": 17216, "fields": {"orig_filename": "Bruerovic_Marko_1770_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420623}}, {"model": "metainfo.source", "pk": 17217, "fields": {"orig_filename": "Brumowski_Godwin_1889_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420352}}, {"model": "metainfo.source", "pk": 17218, "fields": {"orig_filename": "Brunetti-Pisano_August_1870_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420624}}, {"model": "metainfo.source", "pk": 17219, "fields": {"orig_filename": "Brunlechner_August_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420625}}, {"model": "metainfo.source", "pk": 17220, "fields": {"orig_filename": "Brunmeyer_Andreas_1762_1815.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 120", "author": "", "orig_id": 1420626}}, {"model": "metainfo.source", "pk": 17221, "fields": {"orig_filename": "Brunnenmeister_Emil_1854_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420627}}, {"model": "metainfo.source", "pk": 17222, "fields": {"orig_filename": "Brunner_Armin_1861_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1420628}}, {"model": "metainfo.source", "pk": 17223, "fields": {"orig_filename": "Brunner_Heinrich_1840_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1419618}}, {"model": "metainfo.source", "pk": 17224, "fields": {"orig_filename": "Brunner_Moritz_1839_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121", "author": "", "orig_id": 1419619}}, {"model": "metainfo.source", "pk": 17225, "fields": {"orig_filename": "Brunner_Sebastian_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 121f.", "author": "", "orig_id": 1419620}}, {"model": "metainfo.source", "pk": 17226, "fields": {"orig_filename": "Brunner_Vratislav_1886_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419621}}, {"model": "metainfo.source", "pk": 17227, "fields": {"orig_filename": "Brunsmid_Josef_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419622}}, {"model": "metainfo.source", "pk": 17228, "fields": {"orig_filename": "Brunsvick_Therese_1775_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419623}}, {"model": "metainfo.source", "pk": 17229, "fields": {"orig_filename": "Bruzek_Anton_1915_2003.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1994566}}, {"model": "metainfo.source", "pk": 17230, "fields": {"orig_filename": "Bryk_Philipp_1842_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1419624}}, {"model": "metainfo.source", "pk": 17231, "fields": {"orig_filename": "Bubak_Franz_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1420334}}, {"model": "metainfo.source", "pk": 17232, "fields": {"orig_filename": "Bubna-Littitz_Ferdinand_1768_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 122", "author": "", "orig_id": 1420335}}, {"model": "metainfo.source", "pk": 17233, "fields": {"orig_filename": "Buchbinder_Bernhard_1852_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419625}}, {"model": "metainfo.source", "pk": 17234, "fields": {"orig_filename": "Bucher_Bruno_1826_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419626}}, {"model": "metainfo.source", "pk": 17235, "fields": {"orig_filename": "Buchholtz_Franz-Bernhard_1790_1838.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419627}}, {"model": "metainfo.source", "pk": 17236, "fields": {"orig_filename": "Buchmayer_Anton-Alois_1770_1851.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419629}}, {"model": "metainfo.source", "pk": 17237, "fields": {"orig_filename": "Buchowiecki_Josef_1839_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419630}}, {"model": "metainfo.source", "pk": 17238, "fields": {"orig_filename": "Buchta_Richard_1845_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419631}}, {"model": "metainfo.source", "pk": 17239, "fields": {"orig_filename": "Buchwald_Salomon_1873_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2093311}}, {"model": "metainfo.source", "pk": 17240, "fields": {"orig_filename": "Buconjic_Paskal_1834_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123", "author": "", "orig_id": 1419632}}, {"model": "metainfo.source", "pk": 17241, "fields": {"orig_filename": "Budau_Artur_1856_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 123f.", "author": "", "orig_id": 1419633}}, {"model": "metainfo.source", "pk": 17242, "fields": {"orig_filename": "Buday-Bator_Ignaz_1764_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419634}}, {"model": "metainfo.source", "pk": 17243, "fields": {"orig_filename": "Budenz_Josef_1836_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419635}}, {"model": "metainfo.source", "pk": 17244, "fields": {"orig_filename": "Bude_Leopold_1840_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1420511}}, {"model": "metainfo.source", "pk": 17245, "fields": {"orig_filename": "Budik_Peter_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419636}}, {"model": "metainfo.source", "pk": 17246, "fields": {"orig_filename": "Budinszky_Alexander_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419675}}, {"model": "metainfo.source", "pk": 17247, "fields": {"orig_filename": "Budmani_Pero_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419676}}, {"model": "metainfo.source", "pk": 17248, "fields": {"orig_filename": "Bueche_Josef_1848_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124", "author": "", "orig_id": 1419677}}, {"model": "metainfo.source", "pk": 17249, "fields": {"orig_filename": "Buedinger_Max_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 124f.", "author": "", "orig_id": 1419678}}, {"model": "metainfo.source", "pk": 17250, "fields": {"orig_filename": "Buehler_Georg_1837_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419679}}, {"model": "metainfo.source", "pk": 17251, "fields": {"orig_filename": "Buelow-Wendhausen_Paula_1845_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419680}}, {"model": "metainfo.source", "pk": 17252, "fields": {"orig_filename": "Bueltemeyer_Heinrich_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419681}}, {"model": "metainfo.source", "pk": 17253, "fields": {"orig_filename": "Buenker_Johann-Reinhard_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419682}}, {"model": "metainfo.source", "pk": 17254, "fields": {"orig_filename": "Buerde-Ney_Jenny_1824_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125", "author": "", "orig_id": 1419683}}, {"model": "metainfo.source", "pk": 17255, "fields": {"orig_filename": "Buerg_Johann-Tobias_1766_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 125f.", "author": "", "orig_id": 1419684}}, {"model": "metainfo.source", "pk": 17256, "fields": {"orig_filename": "Bukovac_Vlaho_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419685}}, {"model": "metainfo.source", "pk": 17257, "fields": {"orig_filename": "Bukovics-Kis-Alacska_Emmerich_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419686}}, {"model": "metainfo.source", "pk": 17258, "fields": {"orig_filename": "Bukovics-Kis-Alacska_Karl_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419869}}, {"model": "metainfo.source", "pk": 17259, "fields": {"orig_filename": "Bukowski-Stolzenburg_Gejza_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2005227}}, {"model": "metainfo.source", "pk": 17260, "fields": {"orig_filename": "Bulat_Gajo_1836_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419687}}, {"model": "metainfo.source", "pk": 17261, "fields": {"orig_filename": "Bulic_Frane_1846_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126", "author": "", "orig_id": 1419688}}, {"model": "metainfo.source", "pk": 17262, "fields": {"orig_filename": "Buol-Bernburg_Marie_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 126f.", "author": "", "orig_id": 1419689}}, {"model": "metainfo.source", "pk": 17263, "fields": {"orig_filename": "Buol-Schauenstein_Johann-Rud_1763_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419690}}, {"model": "metainfo.source", "pk": 17264, "fields": {"orig_filename": "Buol-Schauenstein_Karl-Ferdinand_1797_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419691}}, {"model": "metainfo.source", "pk": 17265, "fields": {"orig_filename": "Buquoi-Longueval_Georg-Franz-August_1781_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419692}}, {"model": "metainfo.source", "pk": 17266, "fields": {"orig_filename": "Buquoy_Ferdinand_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1420633}}, {"model": "metainfo.source", "pk": 17267, "fields": {"orig_filename": "Buratovich_Ivan-Santiago_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419693}}, {"model": "metainfo.source", "pk": 17268, "fields": {"orig_filename": "Burckhardt_Max-Eugen_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127", "author": "", "orig_id": 1419694}}, {"model": "metainfo.source", "pk": 17269, "fields": {"orig_filename": "Burde_Johann-Karl_1744_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 127f.", "author": "", "orig_id": 1419695}}, {"model": "metainfo.source", "pk": 17270, "fields": {"orig_filename": "Burde_Josef-Karl_1779_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419731}}, {"model": "metainfo.source", "pk": 17271, "fields": {"orig_filename": "Buresch_Karl_1878_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1415797}}, {"model": "metainfo.source", "pk": 17272, "fields": {"orig_filename": "Burgauner_Johann_1812_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419735}}, {"model": "metainfo.source", "pk": 17273, "fields": {"orig_filename": "Burger_Franz_1857_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419736}}, {"model": "metainfo.source", "pk": 17274, "fields": {"orig_filename": "Burger_Friedrich-Moritz_1804_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128f.", "author": "", "orig_id": 1419738}}, {"model": "metainfo.source", "pk": 17275, "fields": {"orig_filename": "Burger_Johann_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419739}}, {"model": "metainfo.source", "pk": 17276, "fields": {"orig_filename": "Burger_Leopold_1861_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419740}}, {"model": "metainfo.source", "pk": 17277, "fields": {"orig_filename": "Burger_Max_1850_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420639}}, {"model": "metainfo.source", "pk": 17278, "fields": {"orig_filename": "Burger_Wilhelm-J_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1420640}}, {"model": "metainfo.source", "pk": 17279, "fields": {"orig_filename": "Burghart_Hermann_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419741}}, {"model": "metainfo.source", "pk": 17280, "fields": {"orig_filename": "Burghauser_Wolfgang_1883_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419742}}, {"model": "metainfo.source", "pk": 17281, "fields": {"orig_filename": "Burg_Adam_1797_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419732}}, {"model": "metainfo.source", "pk": 17282, "fields": {"orig_filename": "Burg_Anton_1767_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419733}}, {"model": "metainfo.source", "pk": 17283, "fields": {"orig_filename": "Burg_Ferdinand_1868_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 128", "author": "", "orig_id": 1419734}}, {"model": "metainfo.source", "pk": 17284, "fields": {"orig_filename": "Burian-Rajecz_Stefan_1851_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129", "author": "", "orig_id": 1419743}}, {"model": "metainfo.source", "pk": 17285, "fields": {"orig_filename": "Burits-Pournay_Johann_1792_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 129f.", "author": "", "orig_id": 1419744}}, {"model": "metainfo.source", "pk": 17286, "fields": {"orig_filename": "Burjan_Hildegard_1883_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419745}}, {"model": "metainfo.source", "pk": 17287, "fields": {"orig_filename": "Bolyai-Bolya_Johann_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420323}}, {"model": "metainfo.source", "pk": 17288, "fields": {"orig_filename": "Bolyai-Bolya_Wolfgang_1775_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420324}}, {"model": "metainfo.source", "pk": 17289, "fields": {"orig_filename": "Bolzano_Bernhard_1781_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100f.", "author": "", "orig_id": 1421395}}, {"model": "metainfo.source", "pk": 17290, "fields": {"orig_filename": "Bolza_Eugenie_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1420325}}, {"model": "metainfo.source", "pk": 17291, "fields": {"orig_filename": "Bombelles_Karl-Albert_1832_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420326}}, {"model": "metainfo.source", "pk": 17292, "fields": {"orig_filename": "Bombelles_Ludwig-Philipp_1780_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420327}}, {"model": "metainfo.source", "pk": 17293, "fields": {"orig_filename": "Bondi_Emanuel_1820_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1421876}}, {"model": "metainfo.source", "pk": 17294, "fields": {"orig_filename": "Bondi_Gustav_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1462462}}, {"model": "metainfo.source", "pk": 17295, "fields": {"orig_filename": "Bondy_Ottilie_1832_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420328}}, {"model": "metainfo.source", "pk": 17296, "fields": {"orig_filename": "Bonelli_Karl_1756_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101", "author": "", "orig_id": 1420329}}, {"model": "metainfo.source", "pk": 17297, "fields": {"orig_filename": "Bonitz_Hermann_1814_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 101f.", "author": "", "orig_id": 1420330}}, {"model": "metainfo.source", "pk": 17298, "fields": {"orig_filename": "Bonn_Ferdinand_1861_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1421883}}, {"model": "metainfo.source", "pk": 17299, "fields": {"orig_filename": "Boos_Franz_1753_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420331}}, {"model": "metainfo.source", "pk": 17300, "fields": {"orig_filename": "Bordoni_Antonio_1789_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420332}}, {"model": "metainfo.source", "pk": 17301, "fields": {"orig_filename": "Boricky_Emanuel_1840_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102", "author": "", "orig_id": 1420333}}, {"model": "metainfo.source", "pk": 17302, "fields": {"orig_filename": "Borkowski_Karl_1829_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1421644}}, {"model": "metainfo.source", "pk": 17303, "fields": {"orig_filename": "Bormann_Eugen_1842_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 102f.", "author": "", "orig_id": 1421732}}, {"model": "metainfo.source", "pk": 17304, "fields": {"orig_filename": "Borochow_Leo_1881_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420336}}, {"model": "metainfo.source", "pk": 17305, "fields": {"orig_filename": "Boroevic-Bojna_Svetozar_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1421736}}, {"model": "metainfo.source", "pk": 17306, "fields": {"orig_filename": "Borsos_Josef_1821_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420337}}, {"model": "metainfo.source", "pk": 17307, "fields": {"orig_filename": "Bor_Jan_1886_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2059532}}, {"model": "metainfo.source", "pk": 17308, "fields": {"orig_filename": "Boschek_Anna_1874_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1416154}}, {"model": "metainfo.source", "pk": 17309, "fields": {"orig_filename": "Boschetti_Viktor_1871_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1422136}}, {"model": "metainfo.source", "pk": 17310, "fields": {"orig_filename": "Bosetti_Hermine_1875_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1420338}}, {"model": "metainfo.source", "pk": 17311, "fields": {"orig_filename": "Bosshart-Demergel_Marie_1854_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103", "author": "", "orig_id": 1422141}}, {"model": "metainfo.source", "pk": 17312, "fields": {"orig_filename": "Bossler_Marie_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 103f.", "author": "", "orig_id": 1420725}}, {"model": "metainfo.source", "pk": 17313, "fields": {"orig_filename": "Botgorschek_Karoline_1815_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420339}}, {"model": "metainfo.source", "pk": 17314, "fields": {"orig_filename": "Botic_Luka_1830_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420729}}, {"model": "metainfo.source", "pk": 17315, "fields": {"orig_filename": "Botstiber_Hugo_1875_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420727}}, {"model": "metainfo.source", "pk": 17316, "fields": {"orig_filename": "Boue_Ami_1794_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420393}}, {"model": "metainfo.source", "pk": 17317, "fields": {"orig_filename": "Bourguignon-Baumberg_Anton_1766_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420394}}, {"model": "metainfo.source", "pk": 17318, "fields": {"orig_filename": "Bowitsch_Ludwig_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420395}}, {"model": "metainfo.source", "pk": 17319, "fields": {"orig_filename": "Boxberg_Ernst_1822_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420396}}, {"model": "metainfo.source", "pk": 17320, "fields": {"orig_filename": "Bozdech_Emanuel_1841_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104", "author": "", "orig_id": 1420397}}, {"model": "metainfo.source", "pk": 17321, "fields": {"orig_filename": "Bozek_Josef_1782_1835.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1910665}}, {"model": "metainfo.source", "pk": 17322, "fields": {"orig_filename": "Bozek_Romuald_1814_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1461303}}, {"model": "metainfo.source", "pk": 17323, "fields": {"orig_filename": "Brabee_Ewald_1878_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 104f.", "author": "", "orig_id": 1420819}}, {"model": "metainfo.source", "pk": 17324, "fields": {"orig_filename": "Brachelli_Hugo-Franz_1834_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420398}}, {"model": "metainfo.source", "pk": 17325, "fields": {"orig_filename": "Bradaczek_Max_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420399}}, {"model": "metainfo.source", "pk": 17326, "fields": {"orig_filename": "Bradsky_Wenzel-Theodor_1833_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420400}}, {"model": "metainfo.source", "pk": 17327, "fields": {"orig_filename": "Brady_Thomas_1752_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420401}}, {"model": "metainfo.source", "pk": 17328, "fields": {"orig_filename": "Braf_Albin_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105", "author": "", "orig_id": 1420402}}, {"model": "metainfo.source", "pk": 17329, "fields": {"orig_filename": "Brahms_Johannes_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 105f.", "author": "", "orig_id": 1420403}}, {"model": "metainfo.source", "pk": 17330, "fields": {"orig_filename": "Brakl_Franz-Josef_1854_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106", "author": "", "orig_id": 1420404}}, {"model": "metainfo.source", "pk": 17331, "fields": {"orig_filename": "Brandeis_Friedrich_1835_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106f.", "author": "", "orig_id": 1420405}}, {"model": "metainfo.source", "pk": 17332, "fields": {"orig_filename": "Brandis_Clemens-Franz_1798_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420406}}, {"model": "metainfo.source", "pk": 17333, "fields": {"orig_filename": "Brandis_Otto_1848_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420407}}, {"model": "metainfo.source", "pk": 17334, "fields": {"orig_filename": "Brandl_Alois_1855_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420408}}, {"model": "metainfo.source", "pk": 17335, "fields": {"orig_filename": "Brandl_Leopold_1877_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1405543}}, {"model": "metainfo.source", "pk": 17336, "fields": {"orig_filename": "Brandl_Vinzenz_1834_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1420409}}, {"model": "metainfo.source", "pk": 17337, "fields": {"orig_filename": "Brandner_Konrad_1881_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419872}}, {"model": "metainfo.source", "pk": 17338, "fields": {"orig_filename": "Brandstetter_Hans_1854_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107", "author": "", "orig_id": 1411019}}, {"model": "metainfo.source", "pk": 17339, "fields": {"orig_filename": "Brandt_Marianne_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 107f.", "author": "", "orig_id": 1420411}}, {"model": "metainfo.source", "pk": 17340, "fields": {"orig_filename": "Brand_Michael_1816_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 106", "author": "", "orig_id": 1419868}}, {"model": "metainfo.source", "pk": 17341, "fields": {"orig_filename": "Brassloff_Stephan_1875_1943.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1888623}}, {"model": "metainfo.source", "pk": 17342, "fields": {"orig_filename": "Brauer_Friedrich-Moritz_1832_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420412}}, {"model": "metainfo.source", "pk": 17343, "fields": {"orig_filename": "Braumueller_Wilhelm_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420413}}, {"model": "metainfo.source", "pk": 17344, "fields": {"orig_filename": "Braun-Braunthal_Karl-Johann_1802_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108f.", "author": "", "orig_id": 1420468}}, {"model": "metainfo.source", "pk": 17345, "fields": {"orig_filename": "Braun-Fernwald_Karl_1822_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420469}}, {"model": "metainfo.source", "pk": 17346, "fields": {"orig_filename": "Brauner_Franz-August_1810_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420471}}, {"model": "metainfo.source", "pk": 17347, "fields": {"orig_filename": "Braune_Franz-Anton_1766_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420470}}, {"model": "metainfo.source", "pk": 17348, "fields": {"orig_filename": "Braunhofer_Anton-Georg_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162336}}, {"model": "metainfo.source", "pk": 17349, "fields": {"orig_filename": "Braun_Adolph_1819_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420414}}, {"model": "metainfo.source", "pk": 17350, "fields": {"orig_filename": "Braun_Gustav_1829_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420415}}, {"model": "metainfo.source", "pk": 17351, "fields": {"orig_filename": "Braun_Ludwig_1867_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419952}}, {"model": "metainfo.source", "pk": 17352, "fields": {"orig_filename": "Braun_Peter_1758_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420466}}, {"model": "metainfo.source", "pk": 17353, "fields": {"orig_filename": "Braun_Theodor_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 108", "author": "", "orig_id": 1420467}}, {"model": "metainfo.source", "pk": 17354, "fields": {"orig_filename": "Brausewetter_Viktor_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420472}}, {"model": "metainfo.source", "pk": 17355, "fields": {"orig_filename": "Brdlik_Karl_1874_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109", "author": "", "orig_id": 1420473}}, {"model": "metainfo.source", "pk": 17356, "fields": {"orig_filename": "Brecht_Walther_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 109f.", "author": "", "orig_id": 1420474}}, {"model": "metainfo.source", "pk": 17357, "fields": {"orig_filename": "Breden_Christiane_1844_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420476}}, {"model": "metainfo.source", "pk": 17358, "fields": {"orig_filename": "Brede_Auguste_1786_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420475}}, {"model": "metainfo.source", "pk": 17359, "fields": {"orig_filename": "Bree_Malvine_1860_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420477}}, {"model": "metainfo.source", "pk": 17360, "fields": {"orig_filename": "Breidler_Johann_1828_1913.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2058108}}, {"model": "metainfo.source", "pk": 17361, "fields": {"orig_filename": "Breidwieser_Theodor_1847_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420478}}, {"model": "metainfo.source", "pk": 17362, "fields": {"orig_filename": "Breisach_Wilhelm_1812_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420479}}, {"model": "metainfo.source", "pk": 17363, "fields": {"orig_filename": "Breisky_August_1830_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110", "author": "", "orig_id": 1420480}}, {"model": "metainfo.source", "pk": 17364, "fields": {"orig_filename": "Breisky_Walter_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 110f.", "author": "", "orig_id": 1420481}}, {"model": "metainfo.source", "pk": 17365, "fields": {"orig_filename": "Breitenlohner_Jakob_1833_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420483}}, {"model": "metainfo.source", "pk": 17366, "fields": {"orig_filename": "Breithaupt_Wilhelm_1809_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420484}}, {"model": "metainfo.source", "pk": 17367, "fields": {"orig_filename": "Breitner_Anton_1858_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420485}}, {"model": "metainfo.source", "pk": 17368, "fields": {"orig_filename": "Breitner_Hugo_1873_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420486}}, {"model": "metainfo.source", "pk": 17369, "fields": {"orig_filename": "Breitner_Josef_1864_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1421080}}, {"model": "metainfo.source", "pk": 17370, "fields": {"orig_filename": "Breit_Franz_1827_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111", "author": "", "orig_id": 1420482}}, {"model": "metainfo.source", "pk": 17371, "fields": {"orig_filename": "Brejc_Janko_1869_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2156144}}, {"model": "metainfo.source", "pk": 17372, "fields": {"orig_filename": "Brell_Heinrich_1877_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 111f.", "author": "", "orig_id": 1420487}}, {"model": "metainfo.source", "pk": 17373, "fields": {"orig_filename": "Bremser_Johann_1767_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420488}}, {"model": "metainfo.source", "pk": 17374, "fields": {"orig_filename": "Brenek_Anton_1848_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420118}}, {"model": "metainfo.source", "pk": 17375, "fields": {"orig_filename": "Brenner-Felsach_Ignaz_1772_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420538}}, {"model": "metainfo.source", "pk": 17376, "fields": {"orig_filename": "Brenner_Adam_1800_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 112", "author": "", "orig_id": 1420490}}, {"model": "metainfo.source", "pk": 17377, "fields": {"orig_filename": "Brenner_Anton_1896_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444231}}, {"model": "metainfo.source", "pk": 17378, "fields": {"orig_filename": "Brentano_Franz_1838_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420539}}, {"model": "metainfo.source", "pk": 17379, "fields": {"orig_filename": "Bresadola_Giacomo_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2), S. 112f.", "author": "", "orig_id": 1895501}}, {"model": "metainfo.source", "pk": 17380, "fields": {"orig_filename": "Brestel_Rudolf_1816_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420541}}, {"model": "metainfo.source", "pk": 17381, "fields": {"orig_filename": "Bretholz_Berthold_1862_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420542}}, {"model": "metainfo.source", "pk": 17382, "fields": {"orig_filename": "Bretschneider_Artur_1879_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1464994}}, {"model": "metainfo.source", "pk": 17383, "fields": {"orig_filename": "Bretschneider_Friedrich_1770_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420543}}, {"model": "metainfo.source", "pk": 17384, "fields": {"orig_filename": "Brettauer_Josef_1835_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113", "author": "", "orig_id": 1420544}}, {"model": "metainfo.source", "pk": 17385, "fields": {"orig_filename": "Breuer_Georg_1907_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2057464}}, {"model": "metainfo.source", "pk": 17386, "fields": {"orig_filename": "Breuer_Josef_1842_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 113f.", "author": "", "orig_id": 1420545}}, {"model": "metainfo.source", "pk": 17387, "fields": {"orig_filename": "Breuer_Katharina_1883_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1469458}}, {"model": "metainfo.source", "pk": 17388, "fields": {"orig_filename": "Brevillier_Ludwig_1800_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420546}}, {"model": "metainfo.source", "pk": 17389, "fields": {"orig_filename": "Breymann_Karl_1807_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420547}}, {"model": "metainfo.source", "pk": 17390, "fields": {"orig_filename": "Brezina_Otokar_1868_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 114", "author": "", "orig_id": 1420548}}, {"model": "metainfo.source", "pk": 17391, "fields": {"orig_filename": "Bischof_Marie_1842_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420160}}, {"model": "metainfo.source", "pk": 17392, "fields": {"orig_filename": "Bissingen-Nippenburg_Ferdinand-Ernst-Maria_1749_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420163}}, {"model": "metainfo.source", "pk": 17393, "fields": {"orig_filename": "Bitterl-Tessenberg_Maximilian_1851_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420162}}, {"model": "metainfo.source", "pk": 17394, "fields": {"orig_filename": "Bitterlich_Eduard_1833_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420161}}, {"model": "metainfo.source", "pk": 17395, "fields": {"orig_filename": "Bitterlich_Hans_1860_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419464}}, {"model": "metainfo.source", "pk": 17396, "fields": {"orig_filename": "Bittner_Adam_1777_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420164}}, {"model": "metainfo.source", "pk": 17397, "fields": {"orig_filename": "Bittner_Alexander_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1420165}}, {"model": "metainfo.source", "pk": 17398, "fields": {"orig_filename": "Bittner_Anton_1819_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419465}}, {"model": "metainfo.source", "pk": 17399, "fields": {"orig_filename": "Bittner_Franz_1867_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88f.", "author": "", "orig_id": 1420166}}, {"model": "metainfo.source", "pk": 17400, "fields": {"orig_filename": "Bittner_Josef_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162607}}, {"model": "metainfo.source", "pk": 17401, "fields": {"orig_filename": "Bittner_Julius_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1419467}}, {"model": "metainfo.source", "pk": 17402, "fields": {"orig_filename": "Bittner_Karl_1867_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1419468}}, {"model": "metainfo.source", "pk": 17403, "fields": {"orig_filename": "Bittner_Ludwig_1877_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89", "author": "", "orig_id": 1420167}}, {"model": "metainfo.source", "pk": 17404, "fields": {"orig_filename": "Bittner_Maximilian_1869_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 89f.", "author": "", "orig_id": 1420168}}, {"model": "metainfo.source", "pk": 17405, "fields": {"orig_filename": "Bizonfy_Franz_1828_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1419570}}, {"model": "metainfo.source", "pk": 17406, "fields": {"orig_filename": "Bizzarro_Paolo_1813_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420169}}, {"model": "metainfo.source", "pk": 17407, "fields": {"orig_filename": "Bjelik_Emmerich_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1418174}}, {"model": "metainfo.source", "pk": 17408, "fields": {"orig_filename": "Blaas_Eugen_1843_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420170}}, {"model": "metainfo.source", "pk": 17409, "fields": {"orig_filename": "Blaas_Josef_1851_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1418177}}, {"model": "metainfo.source", "pk": 17410, "fields": {"orig_filename": "Blaas_Julius_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90", "author": "", "orig_id": 1420171}}, {"model": "metainfo.source", "pk": 17411, "fields": {"orig_filename": "Blaas_Karl_1815_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 90f.", "author": "", "orig_id": 1418178}}, {"model": "metainfo.source", "pk": 17412, "fields": {"orig_filename": "Blagoevich_Emmerich_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420172}}, {"model": "metainfo.source", "pk": 17413, "fields": {"orig_filename": "Blahak_Josef_1780_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420174}}, {"model": "metainfo.source", "pk": 17414, "fields": {"orig_filename": "Blaha_Luise_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420173}}, {"model": "metainfo.source", "pk": 17415, "fields": {"orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418730}}, {"model": "metainfo.source", "pk": 17416, "fields": {"orig_filename": "Blamauer_Adolf-Albin_1847_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418732}}, {"model": "metainfo.source", "pk": 17417, "fields": {"orig_filename": "Blank_Johann-Konrad_1757_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418812}}, {"model": "metainfo.source", "pk": 17418, "fields": {"orig_filename": "Blaschke-Zwernikkirchen_Philipp_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1420175}}, {"model": "metainfo.source", "pk": 17419, "fields": {"orig_filename": "Blasel_Karl_1831_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91f.", "author": "", "orig_id": 1418733}}, {"model": "metainfo.source", "pk": 17420, "fields": {"orig_filename": "Blaskovics_Johann_1777_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420230}}, {"model": "metainfo.source", "pk": 17421, "fields": {"orig_filename": "Blathy_Otto-Titusz_1860_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1426353}}, {"model": "metainfo.source", "pk": 17422, "fields": {"orig_filename": "Blattl_Christian_1776_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1419232}}, {"model": "metainfo.source", "pk": 17423, "fields": {"orig_filename": "Blau_Tina_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419235}}, {"model": "metainfo.source", "pk": 17424, "fields": {"orig_filename": "Blau_Marietta_1894_1970.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436882}}, {"model": "metainfo.source", "pk": 17425, "fields": {"orig_filename": "Blazekovic_Karl_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420232}}, {"model": "metainfo.source", "pk": 17426, "fields": {"orig_filename": "Blechner_Heinrich_1845_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92", "author": "", "orig_id": 1420233}}, {"model": "metainfo.source", "pk": 17427, "fields": {"orig_filename": "Blechschmidt_Anton_1841_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 92f.", "author": "", "orig_id": 1420234}}, {"model": "metainfo.source", "pk": 17428, "fields": {"orig_filename": "Bleckmann_Johann-Heinrich_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1419240}}, {"model": "metainfo.source", "pk": 17429, "fields": {"orig_filename": "Bleibtreu_Sigismund_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1420235}}, {"model": "metainfo.source", "pk": 17430, "fields": {"orig_filename": "Bleiweis-Trsteniski_Janez_1808_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1419244}}, {"model": "metainfo.source", "pk": 17431, "fields": {"orig_filename": "Bleiweis-Trsteniski_Karel_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2191999}}, {"model": "metainfo.source", "pk": 17432, "fields": {"orig_filename": "Bleyer_Jakob_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419245}}, {"model": "metainfo.source", "pk": 17433, "fields": {"orig_filename": "Bliemetzrieder_Placidus-Franz_1867_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93", "author": "", "orig_id": 1420236}}, {"model": "metainfo.source", "pk": 17434, "fields": {"orig_filename": "Bloch_Chajim_1881_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444933}}, {"model": "metainfo.source", "pk": 17435, "fields": {"orig_filename": "Blodek_Wilhelm_1834_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 93f.", "author": "", "orig_id": 1419317}}, {"model": "metainfo.source", "pk": 17436, "fields": {"orig_filename": "Blodig_Hermann_1822_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420237}}, {"model": "metainfo.source", "pk": 17437, "fields": {"orig_filename": "Blome_Gustav_1829_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1419321}}, {"model": "metainfo.source", "pk": 17438, "fields": {"orig_filename": "Bluemelhuber_Michael_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1419323}}, {"model": "metainfo.source", "pk": 17439, "fields": {"orig_filename": "Bluemel_Franz_1839_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1405518}}, {"model": "metainfo.source", "pk": 17440, "fields": {"orig_filename": "Blumberger_Friedrich_1778_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420238}}, {"model": "metainfo.source", "pk": 17441, "fields": {"orig_filename": "Blumenbach-Wabruschek_Wenzel-Karl-Wolfgang_1791_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1418840}}, {"model": "metainfo.source", "pk": 17442, "fields": {"orig_filename": "Blumenthal_Josef_1782_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420240}}, {"model": "metainfo.source", "pk": 17443, "fields": {"orig_filename": "Blume_Ludwig_1846_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 94", "author": "", "orig_id": 1420239}}, {"model": "metainfo.source", "pk": 17444, "fields": {"orig_filename": "Bobek_Hans_1903_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444215}}, {"model": "metainfo.source", "pk": 17445, "fields": {"orig_filename": "Bobies_Carl-August_1898_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2164739}}, {"model": "metainfo.source", "pk": 17446, "fields": {"orig_filename": "Bobies_Franz_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420241}}, {"model": "metainfo.source", "pk": 17447, "fields": {"orig_filename": "Bobrzynski_Michael_1849_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1419022}}, {"model": "metainfo.source", "pk": 17448, "fields": {"orig_filename": "Bockenheimer-Bockenheim_Franz_1856_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420242}}, {"model": "metainfo.source", "pk": 17449, "fields": {"orig_filename": "Bocklet_Karl-Maria_1801_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420243}}, {"model": "metainfo.source", "pk": 17450, "fields": {"orig_filename": "Bock_Emil_1857_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1418686}}, {"model": "metainfo.source", "pk": 17451, "fields": {"orig_filename": "Boczek_Anton_1802_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1419107}}, {"model": "metainfo.source", "pk": 17452, "fields": {"orig_filename": "Bodemer_Jakob_1777_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420244}}, {"model": "metainfo.source", "pk": 17453, "fields": {"orig_filename": "Bodingbauer_Karl_1903_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1417456}}, {"model": "metainfo.source", "pk": 17454, "fields": {"orig_filename": "Boeck_Rupert_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95", "author": "", "orig_id": 1420245}}, {"model": "metainfo.source", "pk": 17455, "fields": {"orig_filename": "Boeheim_Wendelin_1832_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 95f.", "author": "", "orig_id": 1420246}}, {"model": "metainfo.source", "pk": 17456, "fields": {"orig_filename": "Boehler_Albert_1845_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417546}}, {"model": "metainfo.source", "pk": 17457, "fields": {"orig_filename": "Boehler_Friedrich_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420247}}, {"model": "metainfo.source", "pk": 17458, "fields": {"orig_filename": "Boehm-Bawerk_Eugen_1851_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417379}}, {"model": "metainfo.source", "pk": 17459, "fields": {"orig_filename": "Boehm-Boehmersheim_August_1858_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417458}}, {"model": "metainfo.source", "pk": 17460, "fields": {"orig_filename": "Boehm-Boehmersheim_Karl_1827_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1417463}}, {"model": "metainfo.source", "pk": 17461, "fields": {"orig_filename": "Boehm-Ermolli_Eduard_1856_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97f.", "author": "", "orig_id": 1417473}}, {"model": "metainfo.source", "pk": 17462, "fields": {"orig_filename": "Boehmerle_Emil_1853_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2267399}}, {"model": "metainfo.source", "pk": 17463, "fields": {"orig_filename": "Boehmerle_Karl_1851_1917.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2267403}}, {"model": "metainfo.source", "pk": 17464, "fields": {"orig_filename": "Boehm_Camillo_1828_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417636}}, {"model": "metainfo.source", "pk": 17465, "fields": {"orig_filename": "Boehm_Johann_1774_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420248}}, {"model": "metainfo.source", "pk": 17466, "fields": {"orig_filename": "Boehm_Josef-Georg_1807_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1417890}}, {"model": "metainfo.source", "pk": 17467, "fields": {"orig_filename": "Boehm_Josef_1841_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420250}}, {"model": "metainfo.source", "pk": 17468, "fields": {"orig_filename": "Boehm_Joseph-Anton_1831_1893.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417724}}, {"model": "metainfo.source", "pk": 17469, "fields": {"orig_filename": "Boehm_Joseph-Daniel_1794_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420251}}, {"model": "metainfo.source", "pk": 17470, "fields": {"orig_filename": "Boehm_Joseph_1795_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420249}}, {"model": "metainfo.source", "pk": 17471, "fields": {"orig_filename": "Boehm_Karl_1846_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 97", "author": "", "orig_id": 1420253}}, {"model": "metainfo.source", "pk": 17472, "fields": {"orig_filename": "Boehm_Sir-Joseph-Edgar_1834_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 96", "author": "", "orig_id": 1420252}}, {"model": "metainfo.source", "pk": 17473, "fields": {"orig_filename": "Boeriu-Polichna_Johann_1859_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420255}}, {"model": "metainfo.source", "pk": 17474, "fields": {"orig_filename": "Boer_Johann-Lukas_1751_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420254}}, {"model": "metainfo.source", "pk": 17475, "fields": {"orig_filename": "Boesendorfer_Ignaz_1796_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420315}}, {"model": "metainfo.source", "pk": 17476, "fields": {"orig_filename": "Boesendorfer_Ludwig_1835_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1417832}}, {"model": "metainfo.source", "pk": 17477, "fields": {"orig_filename": "Bogdan-Sturmbruck_Josef_1769_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420316}}, {"model": "metainfo.source", "pk": 17478, "fields": {"orig_filename": "Bogensberger_Gustav_1838_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 98", "author": "", "orig_id": 1420317}}, {"model": "metainfo.source", "pk": 17479, "fields": {"orig_filename": "Bogisic_Valtazar_1834_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420318}}, {"model": "metainfo.source", "pk": 17480, "fields": {"orig_filename": "Bognar_Friederike_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417400}}, {"model": "metainfo.source", "pk": 17481, "fields": {"orig_filename": "Bogovic_Mirko_1816_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417404}}, {"model": "metainfo.source", "pk": 17482, "fields": {"orig_filename": "Boguslawski_Adalbert_1757_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1420319}}, {"model": "metainfo.source", "pk": 17483, "fields": {"orig_filename": "Bohatsch_Ottokar-Zdenko_1843_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1994039}}, {"model": "metainfo.source", "pk": 17484, "fields": {"orig_filename": "Bohdal_Anton-Matthaeus_1900_2008.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193599}}, {"model": "metainfo.source", "pk": 17485, "fields": {"orig_filename": "Bohdal_Matthaeus_1863_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162616}}, {"model": "metainfo.source", "pk": 17486, "fields": {"orig_filename": "Bohrmann_Marianne_1849_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417045}}, {"model": "metainfo.source", "pk": 17487, "fields": {"orig_filename": "Bohr_Oskar_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1418144}}, {"model": "metainfo.source", "pk": 17488, "fields": {"orig_filename": "Bohutinsky_Anton_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2056777}}, {"model": "metainfo.source", "pk": 17489, "fields": {"orig_filename": "Bojer_Wenzlaus_1797_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420320}}, {"model": "metainfo.source", "pk": 17490, "fields": {"orig_filename": "Bojko_Jakob_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1420321}}, {"model": "metainfo.source", "pk": 17491, "fields": {"orig_filename": "Bolfras_Arthur_1838_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 99", "author": "", "orig_id": 1417128}}, {"model": "metainfo.source", "pk": 17492, "fields": {"orig_filename": "Boller_Anton_1811_1869.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420322}}, {"model": "metainfo.source", "pk": 17493, "fields": {"orig_filename": "Boltzmann_Ludwig_1844_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 100", "author": "", "orig_id": 1411332}}, {"model": "metainfo.source", "pk": 17494, "fields": {"orig_filename": "Bernard_Hans_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419993}}, {"model": "metainfo.source", "pk": 17495, "fields": {"orig_filename": "Bernard_Karl-Ambros_1808_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418954}}, {"model": "metainfo.source", "pk": 17496, "fields": {"orig_filename": "Bernard_Karl-Josef_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419994}}, {"model": "metainfo.source", "pk": 17497, "fields": {"orig_filename": "Bernatzik_Edmund_1854_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75f.", "author": "", "orig_id": 1419030}}, {"model": "metainfo.source", "pk": 17498, "fields": {"orig_filename": "Bernatzik_Wenzel_1821_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419034}}, {"model": "metainfo.source", "pk": 17499, "fields": {"orig_filename": "Bernatzik_Wilhelm_1853_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419037}}, {"model": "metainfo.source", "pk": 17500, "fields": {"orig_filename": "Bernay-Favancourt_Julius-Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419995}}, {"model": "metainfo.source", "pk": 17501, "fields": {"orig_filename": "Bernbrunn_Karl_1787_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419113}}, {"model": "metainfo.source", "pk": 17502, "fields": {"orig_filename": "Berndl_Florian_1856_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419278}}, {"model": "metainfo.source", "pk": 17503, "fields": {"orig_filename": "Bernheimer_Stefan_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419539}}, {"model": "metainfo.source", "pk": 17504, "fields": {"orig_filename": "Bernheimer_Walter-Ernst_1892_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76", "author": "", "orig_id": 1419996}}, {"model": "metainfo.source", "pk": 17505, "fields": {"orig_filename": "Bernstein-Porges_Elsa_1866_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419542}}, {"model": "metainfo.source", "pk": 17506, "fields": {"orig_filename": "Bernstein_Heinrich_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 76f.", "author": "", "orig_id": 1419997}}, {"model": "metainfo.source", "pk": 17507, "fields": {"orig_filename": "Bernt_Ferdinand_1876_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419545}}, {"model": "metainfo.source", "pk": 17508, "fields": {"orig_filename": "Bernt_Johann-Josef_1770_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419998}}, {"model": "metainfo.source", "pk": 17509, "fields": {"orig_filename": "Berres-Perez_Joseph_1821_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419548}}, {"model": "metainfo.source", "pk": 17510, "fields": {"orig_filename": "Berres_Josef_1796_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1419999}}, {"model": "metainfo.source", "pk": 17511, "fields": {"orig_filename": "Bersina-Siegenthal_Heinrich_1762_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1420000}}, {"model": "metainfo.source", "pk": 17512, "fields": {"orig_filename": "Bertalanffy_Ludwig_1901_1972.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444456}}, {"model": "metainfo.source", "pk": 17513, "fields": {"orig_filename": "Bertalan_Arpad_1898_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1420001}}, {"model": "metainfo.source", "pk": 17514, "fields": {"orig_filename": "Berte_Heinrich_1857_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77", "author": "", "orig_id": 1405372}}, {"model": "metainfo.source", "pk": 17515, "fields": {"orig_filename": "Bertha_Hans_1901_1964.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444457}}, {"model": "metainfo.source", "pk": 17516, "fields": {"orig_filename": "Berwerth_Friedrich-Martin_1850_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 77f.", "author": "", "orig_id": 1418518}}, {"model": "metainfo.source", "pk": 17517, "fields": {"orig_filename": "Berzeviczy-Berzevicze-Kakas-Lomnitz_Albert_1870_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420002}}, {"model": "metainfo.source", "pk": 17518, "fields": {"orig_filename": "Berzeviczy_Albert_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420003}}, {"model": "metainfo.source", "pk": 17519, "fields": {"orig_filename": "Besan_Karl_1773_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420004}}, {"model": "metainfo.source", "pk": 17520, "fields": {"orig_filename": "Beschorner_Alexander-Markus_1823_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420005}}, {"model": "metainfo.source", "pk": 17521, "fields": {"orig_filename": "Besel_Guido_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1418523}}, {"model": "metainfo.source", "pk": 17522, "fields": {"orig_filename": "Beskiba_Josef_1792_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1420006}}, {"model": "metainfo.source", "pk": 17523, "fields": {"orig_filename": "Beth_Marianne_1890_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443429}}, {"model": "metainfo.source", "pk": 17524, "fields": {"orig_filename": "Bettauer_Hugo_1877_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 78", "author": "", "orig_id": 1418529}}, {"model": "metainfo.source", "pk": 17525, "fields": {"orig_filename": "Bettelheim-Gabillon_Helene_1857_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418605}}, {"model": "metainfo.source", "pk": 17526, "fields": {"orig_filename": "Bettelheim_Bruno_1903_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1443434}}, {"model": "metainfo.source", "pk": 17527, "fields": {"orig_filename": "Bettelheim_Jakob_1841_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418604}}, {"model": "metainfo.source", "pk": 17528, "fields": {"orig_filename": "Bettelheim_Karoline_1843_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1420007}}, {"model": "metainfo.source", "pk": 17529, "fields": {"orig_filename": "Beurle_Karl_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79", "author": "", "orig_id": 1418607}}, {"model": "metainfo.source", "pk": 17530, "fields": {"orig_filename": "Beust_Friedrich-Ferdinand_1809_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 79f.", "author": "", "orig_id": 1418609}}, {"model": "metainfo.source", "pk": 17531, "fields": {"orig_filename": "Beust_Friedrich-Konstantin_1806_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420009}}, {"model": "metainfo.source", "pk": 17532, "fields": {"orig_filename": "Beyer_Johann_1801_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420011}}, {"model": "metainfo.source", "pk": 17533, "fields": {"orig_filename": "Beyer_Josef_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1418613}}, {"model": "metainfo.source", "pk": 17534, "fields": {"orig_filename": "Beyer_Rudolf_1810_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420012}}, {"model": "metainfo.source", "pk": 17535, "fields": {"orig_filename": "Beyfuss_Hermann_1857_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420075}}, {"model": "metainfo.source", "pk": 17536, "fields": {"orig_filename": "Beykow_Johann-Maria_1879_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420076}}, {"model": "metainfo.source", "pk": 17537, "fields": {"orig_filename": "Beysteiner_Elisabeth_1801_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1418618}}, {"model": "metainfo.source", "pk": 17538, "fields": {"orig_filename": "Bezecny_Josef_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 80", "author": "", "orig_id": 1420078}}, {"model": "metainfo.source", "pk": 17539, "fields": {"orig_filename": "Bianchi_Friedrich_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1419867}}, {"model": "metainfo.source", "pk": 17540, "fields": {"orig_filename": "Bianchi_Vinzenz-Ferrerius-Friedrich_1768_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420079}}, {"model": "metainfo.source", "pk": 17541, "fields": {"orig_filename": "Biankini_Juraj_1847_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420080}}, {"model": "metainfo.source", "pk": 17542, "fields": {"orig_filename": "Bibl_Andreas_1797_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420081}}, {"model": "metainfo.source", "pk": 17543, "fields": {"orig_filename": "Bibl_Rudolf_1832_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1420082}}, {"model": "metainfo.source", "pk": 17544, "fields": {"orig_filename": "Bibl_Viktor_1870_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1418961}}, {"model": "metainfo.source", "pk": 17545, "fields": {"orig_filename": "Bickell_Gustav_1838_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81", "author": "", "orig_id": 1418971}}, {"model": "metainfo.source", "pk": 17546, "fields": {"orig_filename": "Bick_Josef_1880_1952.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1428751}}, {"model": "metainfo.source", "pk": 17547, "fields": {"orig_filename": "Bidlo_Jaroslav_1868_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 81f.", "author": "", "orig_id": 1420083}}, {"model": "metainfo.source", "pk": 17548, "fields": {"orig_filename": "Bidschof_Friedrich_1864_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1912351}}, {"model": "metainfo.source", "pk": 17549, "fields": {"orig_filename": "Bieber_Friedrich-Julius_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1418973}}, {"model": "metainfo.source", "pk": 17550, "fields": {"orig_filename": "Bieber_Karl-Augustinus_1903_1996.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1418972}}, {"model": "metainfo.source", "pk": 17551, "fields": {"orig_filename": "Biebl_Rudolf_1820_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420084}}, {"model": "metainfo.source", "pk": 17552, "fields": {"orig_filename": "Biedermann_Felix_1870_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420085}}, {"model": "metainfo.source", "pk": 17553, "fields": {"orig_filename": "Biedermann_Hermann-Ignaz_1831_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420086}}, {"model": "metainfo.source", "pk": 17554, "fields": {"orig_filename": "Biedermann_Johann-Baptist_1844_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82", "author": "", "orig_id": 1420087}}, {"model": "metainfo.source", "pk": 17555, "fields": {"orig_filename": "Biegeleben_Ludwig-Maximilian_1812_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 82f.", "author": "", "orig_id": 1419048}}, {"model": "metainfo.source", "pk": 17556, "fields": {"orig_filename": "Biela_Wilhelm_1782_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419053}}, {"model": "metainfo.source", "pk": 17557, "fields": {"orig_filename": "Bielohlawek_Hermann_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419054}}, {"model": "metainfo.source", "pk": 17558, "fields": {"orig_filename": "Bielz_Eduard-Albrecht_1827_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419056}}, {"model": "metainfo.source", "pk": 17559, "fields": {"orig_filename": "Bielz_Michael_1787_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419057}}, {"model": "metainfo.source", "pk": 17560, "fields": {"orig_filename": "Bienefeld-Loewenkron_Wilhelm_1776_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1420088}}, {"model": "metainfo.source", "pk": 17561, "fields": {"orig_filename": "Bienenfeld_Elsa_1877_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1414897}}, {"model": "metainfo.source", "pk": 17562, "fields": {"orig_filename": "Bienenstein_Karl_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83", "author": "", "orig_id": 1419061}}, {"model": "metainfo.source", "pk": 17563, "fields": {"orig_filename": "Bienerth-Schmerling_Richard_1863_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 83f.", "author": "", "orig_id": 1419065}}, {"model": "metainfo.source", "pk": 17564, "fields": {"orig_filename": "Bierbaum_Matthias_1916_1995.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1445960}}, {"model": "metainfo.source", "pk": 17565, "fields": {"orig_filename": "Biermann_Otto_1858_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1420089}}, {"model": "metainfo.source", "pk": 17566, "fields": {"orig_filename": "Bignio_Louis_1839_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419138}}, {"model": "metainfo.source", "pk": 17567, "fields": {"orig_filename": "Bigot-Saint-Quentin_Karl_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419139}}, {"model": "metainfo.source", "pk": 17568, "fields": {"orig_filename": "Bilek_Franz_1872_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419144}}, {"model": "metainfo.source", "pk": 17569, "fields": {"orig_filename": "Bilgeri_Georg_1873_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84", "author": "", "orig_id": 1419147}}, {"model": "metainfo.source", "pk": 17570, "fields": {"orig_filename": "Bilinski_Leon_1846_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 84f.", "author": "", "orig_id": 1405542}}, {"model": "metainfo.source", "pk": 17571, "fields": {"orig_filename": "Billroth_Theodor-Christian_1829_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1419216}}, {"model": "metainfo.source", "pk": 17572, "fields": {"orig_filename": "Bill_Teddy_1900_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2195799}}, {"model": "metainfo.source", "pk": 17573, "fields": {"orig_filename": "Binder-Falbusch_Wilhelm_1779_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420092}}, {"model": "metainfo.source", "pk": 17574, "fields": {"orig_filename": "Binder-Kriegelstein_Franz_1774_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85f.", "author": "", "orig_id": 1420093}}, {"model": "metainfo.source", "pk": 17575, "fields": {"orig_filename": "Binder-Kriegelstein_Friedrich_1775_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420094}}, {"model": "metainfo.source", "pk": 17576, "fields": {"orig_filename": "Binder-Kriegelstein_Karl_1869_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420151}}, {"model": "metainfo.source", "pk": 17577, "fields": {"orig_filename": "Binder_Anton_1860_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1419225}}, {"model": "metainfo.source", "pk": 17578, "fields": {"orig_filename": "Binder_Georg-Paul_1784_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420090}}, {"model": "metainfo.source", "pk": 17579, "fields": {"orig_filename": "Binder_Joseph_1805_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 85", "author": "", "orig_id": 1420091}}, {"model": "metainfo.source", "pk": 17580, "fields": {"orig_filename": "Binder_Matthaeus-Josef_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1419295}}, {"model": "metainfo.source", "pk": 17581, "fields": {"orig_filename": "Binz_Johann-Georg_1748_1824.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419299}}, {"model": "metainfo.source", "pk": 17582, "fields": {"orig_filename": "Birago_Karl_1792_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420152}}, {"model": "metainfo.source", "pk": 17583, "fields": {"orig_filename": "Birkle_Suitbert_1876_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86f.", "author": "", "orig_id": 1420155}}, {"model": "metainfo.source", "pk": 17584, "fields": {"orig_filename": "Birk_Alfred_1855_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1419303}}, {"model": "metainfo.source", "pk": 17585, "fields": {"orig_filename": "Birk_Ernst_1810_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 86", "author": "", "orig_id": 1420153}}, {"model": "metainfo.source", "pk": 17586, "fields": {"orig_filename": "Birk_Karl_1887_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128051}}, {"model": "metainfo.source", "pk": 17587, "fields": {"orig_filename": "Birnbaum_Ferdinand_1892_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420156}}, {"model": "metainfo.source", "pk": 17588, "fields": {"orig_filename": "Birnbaum_Nathan_1864_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1419307}}, {"model": "metainfo.source", "pk": 17589, "fields": {"orig_filename": "Biro-Csik-Palfalva_Johann_1784_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420158}}, {"model": "metainfo.source", "pk": 17590, "fields": {"orig_filename": "Biro_Josef_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420157}}, {"model": "metainfo.source", "pk": 17591, "fields": {"orig_filename": "Bisching_Anton_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1420159}}, {"model": "metainfo.source", "pk": 17592, "fields": {"orig_filename": "Bischoff-Altenstern_Ignaz-Rudolf_1784_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419379}}, {"model": "metainfo.source", "pk": 17593, "fields": {"orig_filename": "Bischoff-Klammstein_Friedrich_1832_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 88", "author": "", "orig_id": 1419381}}, {"model": "metainfo.source", "pk": 17594, "fields": {"orig_filename": "Bischoff_Ferdinand_1826_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 87", "author": "", "orig_id": 1419377}}, {"model": "metainfo.source", "pk": 17595, "fields": {"orig_filename": "Beck_Max-Wladimir_1854_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406036}}, {"model": "metainfo.source", "pk": 17596, "fields": {"orig_filename": "Beck_Wilhelm_1822_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1421096}}, {"model": "metainfo.source", "pk": 17597, "fields": {"orig_filename": "Becsey-Volta_Stefan_1804_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421100}}, {"model": "metainfo.source", "pk": 17598, "fields": {"orig_filename": "Becvarovsky_Anton-Felix_1754_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421101}}, {"model": "metainfo.source", "pk": 17599, "fields": {"orig_filename": "Becziczka_Ambros_1780_1861.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1406147}}, {"model": "metainfo.source", "pk": 17600, "fields": {"orig_filename": "Bedeus-Scharberg_Josef_1783_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1421102}}, {"model": "metainfo.source", "pk": 17601, "fields": {"orig_filename": "Beer-Hofmann_Richard_1866_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64", "author": "", "orig_id": 1406632}}, {"model": "metainfo.source", "pk": 17602, "fields": {"orig_filename": "Beer_Adolf_1831_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406687}}, {"model": "metainfo.source", "pk": 17603, "fields": {"orig_filename": "Beer_Alois_1840_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1428815}}, {"model": "metainfo.source", "pk": 17604, "fields": {"orig_filename": "Beer_Georg-Josef_1763_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63f.", "author": "", "orig_id": 1421104}}, {"model": "metainfo.source", "pk": 17605, "fields": {"orig_filename": "Beer_Max-Josef_1851_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64", "author": "", "orig_id": 1421105}}, {"model": "metainfo.source", "pk": 17606, "fields": {"orig_filename": "Beer_Rudolf_1885_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1406629}}, {"model": "metainfo.source", "pk": 17607, "fields": {"orig_filename": "Beer_Theodor_1866_1919.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1833661}}, {"model": "metainfo.source", "pk": 17608, "fields": {"orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f.", "author": "", "orig_id": 1406636}}, {"model": "metainfo.source", "pk": 17609, "fields": {"orig_filename": "Beetz_Wilhelm_1844_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2001781}}, {"model": "metainfo.source", "pk": 17610, "fields": {"orig_filename": "Begovic_Milan_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1421106}}, {"model": "metainfo.source", "pk": 17611, "fields": {"orig_filename": "Behounek_Frantisek_1898_1973.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443974}}, {"model": "metainfo.source", "pk": 17612, "fields": {"orig_filename": "Behrend-Brandt_Magdalena_1828_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1421107}}, {"model": "metainfo.source", "pk": 17613, "fields": {"orig_filename": "Behrens_Peter_1868_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162569}}, {"model": "metainfo.source", "pk": 17614, "fields": {"orig_filename": "Behsel_Anton_1781_1838.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1406981}}, {"model": "metainfo.source", "pk": 17615, "fields": {"orig_filename": "Beichl_Karl_1874_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65", "author": "", "orig_id": 1406982}}, {"model": "metainfo.source", "pk": 17616, "fields": {"orig_filename": "Beidtel_Ignaz_1783_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 65f.", "author": "", "orig_id": 1407798}}, {"model": "metainfo.source", "pk": 17617, "fields": {"orig_filename": "Beigel_Hugo-Georg_1897_1978.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1465168}}, {"model": "metainfo.source", "pk": 17618, "fields": {"orig_filename": "Beinl-Bienenburg_Anton_1749_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1421108}}, {"model": "metainfo.source", "pk": 17619, "fields": {"orig_filename": "Beitzke_Hermann_1875_1953.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443982}}, {"model": "metainfo.source", "pk": 17620, "fields": {"orig_filename": "Bekessy_Imre_1887_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443986}}, {"model": "metainfo.source", "pk": 17621, "fields": {"orig_filename": "Bekk_Adolf_1830_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1407749}}, {"model": "metainfo.source", "pk": 17622, "fields": {"orig_filename": "Belar_Albin_1864_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1410321}}, {"model": "metainfo.source", "pk": 17623, "fields": {"orig_filename": "Belcredi_Ekbert_1816_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1421109}}, {"model": "metainfo.source", "pk": 17624, "fields": {"orig_filename": "Belcredi_Richard_1823_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1410397}}, {"model": "metainfo.source", "pk": 17625, "fields": {"orig_filename": "Bellac_Paul_1891_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2050650}}, {"model": "metainfo.source", "pk": 17626, "fields": {"orig_filename": "Bella_Johann-Levoslav_1843_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66", "author": "", "orig_id": 1409574}}, {"model": "metainfo.source", "pk": 17627, "fields": {"orig_filename": "Bellegarde_Heinrich_1756_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 66f.", "author": "", "orig_id": 1421110}}, {"model": "metainfo.source", "pk": 17628, "fields": {"orig_filename": "Belli_Giuseppe_1791_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421111}}, {"model": "metainfo.source", "pk": 17629, "fields": {"orig_filename": "Bellmond-Adlerhorst_Anton_1863_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1415060}}, {"model": "metainfo.source", "pk": 17630, "fields": {"orig_filename": "Belohlav_Josef_1882_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2006103}}, {"model": "metainfo.source", "pk": 17631, "fields": {"orig_filename": "Belrupt-Tissac_Karl_1826_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421112}}, {"model": "metainfo.source", "pk": 17632, "fields": {"orig_filename": "Beltrami_Giovanni_1777_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421113}}, {"model": "metainfo.source", "pk": 17633, "fields": {"orig_filename": "Belzoni_Giovanni-Batt_1778_1823.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1421114}}, {"model": "metainfo.source", "pk": 17634, "fields": {"orig_filename": "Bem_Josef_1795_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 67", "author": "", "orig_id": 1415067}}, {"model": "metainfo.source", "pk": 17635, "fields": {"orig_filename": "Benak_Franz_1838_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421115}}, {"model": "metainfo.source", "pk": 17636, "fields": {"orig_filename": "Benatzky_Ralph_1884_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444045}}, {"model": "metainfo.source", "pk": 17637, "fields": {"orig_filename": "Benda_Gustav_1846_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415136}}, {"model": "metainfo.source", "pk": 17638, "fields": {"orig_filename": "Bendel_Josef_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415139}}, {"model": "metainfo.source", "pk": 17639, "fields": {"orig_filename": "Bendl_Karl_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421188}}, {"model": "metainfo.source", "pk": 17640, "fields": {"orig_filename": "Benedek-Felsoe-Eoer_Ludwig_1804_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415144}}, {"model": "metainfo.source", "pk": 17641, "fields": {"orig_filename": "Benedek_Alexander_1818_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421190}}, {"model": "metainfo.source", "pk": 17642, "fields": {"orig_filename": "Benedetti_Thomas_1797_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1415145}}, {"model": "metainfo.source", "pk": 17643, "fields": {"orig_filename": "Benedikt_Edmund_1851_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68f.", "author": "", "orig_id": 1415146}}, {"model": "metainfo.source", "pk": 17644, "fields": {"orig_filename": "Benedikt_Moritz_1835_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415149}}, {"model": "metainfo.source", "pk": 17645, "fields": {"orig_filename": "Benedikt_Moritz_1849_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415150}}, {"model": "metainfo.source", "pk": 17646, "fields": {"orig_filename": "Benedikt_Rudolf_1852_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421191}}, {"model": "metainfo.source", "pk": 17647, "fields": {"orig_filename": "Benesch_Ladislaus_1845_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415230}}, {"model": "metainfo.source", "pk": 17648, "fields": {"orig_filename": "Bene_Franz_1775_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 68", "author": "", "orig_id": 1421189}}, {"model": "metainfo.source", "pk": 17649, "fields": {"orig_filename": "Benigni-Mildenberg_Josef-Heinrich_1782_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421193}}, {"model": "metainfo.source", "pk": 17650, "fields": {"orig_filename": "Benigni_Siegmund_1855_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1421192}}, {"model": "metainfo.source", "pk": 17651, "fields": {"orig_filename": "Benkert_Karl-Maria_1824_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1415237}}, {"model": "metainfo.source", "pk": 17652, "fields": {"orig_filename": "Benke_Hermann_1866_1937.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1990819}}, {"model": "metainfo.source", "pk": 17653, "fields": {"orig_filename": "Benkoe_Samuel_1743_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421194}}, {"model": "metainfo.source", "pk": 17654, "fields": {"orig_filename": "Benk_Johannes_1844_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 69", "author": "", "orig_id": 1415234}}, {"model": "metainfo.source", "pk": 17655, "fields": {"orig_filename": "Benndorf_Friedrich-August-Otto_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1415241}}, {"model": "metainfo.source", "pk": 17656, "fields": {"orig_filename": "Benndorf_Hans_1870_1953.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444057}}, {"model": "metainfo.source", "pk": 17657, "fields": {"orig_filename": "Bentheim-Steinfurt_Wilhelm-Friedrich_1782_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421195}}, {"model": "metainfo.source", "pk": 17658, "fields": {"orig_filename": "Benz-Albkron_Robert-Joseph_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1428245}}, {"model": "metainfo.source", "pk": 17659, "fields": {"orig_filename": "Berchet_Giovanni_1783_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421196}}, {"model": "metainfo.source", "pk": 17660, "fields": {"orig_filename": "Berchtold-Ungarschitz_Friedrich_1781_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 70", "author": "", "orig_id": 1421197}}, {"model": "metainfo.source", "pk": 17661, "fields": {"orig_filename": "Berchtold_Leopold_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71", "author": "", "orig_id": 1413961}}, {"model": "metainfo.source", "pk": 17662, "fields": {"orig_filename": "Bercic_Ivan_1824_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71", "author": "", "orig_id": 1421198}}, {"model": "metainfo.source", "pk": 17663, "fields": {"orig_filename": "Bergauer_Josef_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1421200}}, {"model": "metainfo.source", "pk": 17664, "fields": {"orig_filename": "Berger-Pleisse_Johann-Nepomuk_1768_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414054}}, {"model": "metainfo.source", "pk": 17665, "fields": {"orig_filename": "Berger-Stubenberg_Mathilde_1863_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421203}}, {"model": "metainfo.source", "pk": 17666, "fields": {"orig_filename": "Berger_Alfred_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1413977}}, {"model": "metainfo.source", "pk": 17667, "fields": {"orig_filename": "Berger_Alfred_1882_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2059070}}, {"model": "metainfo.source", "pk": 17668, "fields": {"orig_filename": "Berger_Artur_1892_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444261}}, {"model": "metainfo.source", "pk": 17669, "fields": {"orig_filename": "Berger_Franz_1841_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414050}}, {"model": "metainfo.source", "pk": 17670, "fields": {"orig_filename": "Berger_Franz_1853_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2162582}}, {"model": "metainfo.source", "pk": 17671, "fields": {"orig_filename": "Berger_Johann-Nepomuk_1816_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414057}}, {"model": "metainfo.source", "pk": 17672, "fields": {"orig_filename": "Berger_Josef_1898_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1862324}}, {"model": "metainfo.source", "pk": 17673, "fields": {"orig_filename": "Berger_Julius-Victor_1850_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72", "author": "", "orig_id": 1414058}}, {"model": "metainfo.source", "pk": 17674, "fields": {"orig_filename": "Berger_Rudolf_1874_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 72f.", "author": "", "orig_id": 1421201}}, {"model": "metainfo.source", "pk": 17675, "fields": {"orig_filename": "Berger_Thaddaeus_1774_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414064}}, {"model": "metainfo.source", "pk": 17676, "fields": {"orig_filename": "Berghofer_Amandus_1745_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421204}}, {"model": "metainfo.source", "pk": 17677, "fields": {"orig_filename": "Berghold_Alexander_1838_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421205}}, {"model": "metainfo.source", "pk": 17678, "fields": {"orig_filename": "Bergleitner_Johann_1774_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421206}}, {"model": "metainfo.source", "pk": 17679, "fields": {"orig_filename": "Bergler_Hans_1859_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1414136}}, {"model": "metainfo.source", "pk": 17680, "fields": {"orig_filename": "Bergler_Josef_1753_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 73", "author": "", "orig_id": 1421207}}, {"model": "metainfo.source", "pk": 17681, "fields": {"orig_filename": "Bergmann_Ernst_1844_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414137}}, {"model": "metainfo.source", "pk": 17682, "fields": {"orig_filename": "Bergmann_Hermann_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414138}}, {"model": "metainfo.source", "pk": 17683, "fields": {"orig_filename": "Bergmann_Josef_1796_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1405613}}, {"model": "metainfo.source", "pk": 17684, "fields": {"orig_filename": "Bergmann_Josef_1847_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1421208}}, {"model": "metainfo.source", "pk": 17685, "fields": {"orig_filename": "Bergmayr_Ignaz-Franz_1784_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1421209}}, {"model": "metainfo.source", "pk": 17686, "fields": {"orig_filename": "Bergmeister_Hermann_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414143}}, {"model": "metainfo.source", "pk": 17687, "fields": {"orig_filename": "Berg_Alban_1885_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 71f.", "author": "", "orig_id": 1413964}}, {"model": "metainfo.source", "pk": 17688, "fields": {"orig_filename": "Berg_Armin_1883_1956.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1436577}}, {"model": "metainfo.source", "pk": 17689, "fields": {"orig_filename": "Berks_Marie_1859_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414153}}, {"model": "metainfo.source", "pk": 17690, "fields": {"orig_filename": "Berla_Alois_1826_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 74", "author": "", "orig_id": 1414221}}, {"model": "metainfo.source", "pk": 17691, "fields": {"orig_filename": "Berlepsch_Maria-Goswina_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418768}}, {"model": "metainfo.source", "pk": 17692, "fields": {"orig_filename": "Berliner_Egon_1923_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2128029}}, {"model": "metainfo.source", "pk": 17693, "fields": {"orig_filename": "Bermann_Jeremias_1770_1855.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004092}}, {"model": "metainfo.source", "pk": 17694, "fields": {"orig_filename": "Bermann_Joseph_1810_1886.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1418864}}, {"model": "metainfo.source", "pk": 17695, "fields": {"orig_filename": "Bermann_Moritz_1823_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1418866}}, {"model": "metainfo.source", "pk": 17696, "fields": {"orig_filename": "Bermanschlaeger_Ludwig_1861_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1421211}}, {"model": "metainfo.source", "pk": 17697, "fields": {"orig_filename": "Bernacki_Ludwig_1882_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 75", "author": "", "orig_id": 1419992}}, {"model": "metainfo.source", "pk": 17698, "fields": {"orig_filename": "Barnay_Ludwig_1842_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50f.", "author": "", "orig_id": 1405594}}, {"model": "metainfo.source", "pk": 17699, "fields": {"orig_filename": "Baron_Arthur_1874_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004260}}, {"model": "metainfo.source", "pk": 17700, "fields": {"orig_filename": "Baross-Bellus_Gabor_1848_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2256297}}, {"model": "metainfo.source", "pk": 17701, "fields": {"orig_filename": "Baroti-Szabo_David_1739_1819.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1468792}}, {"model": "metainfo.source", "pk": 17702, "fields": {"orig_filename": "Barry_Alfred_1830_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405598}}, {"model": "metainfo.source", "pk": 17703, "fields": {"orig_filename": "Barsescu_Agathe_1859_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420995}}, {"model": "metainfo.source", "pk": 17704, "fields": {"orig_filename": "Barta_Richard_1911_1986.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444180}}, {"model": "metainfo.source", "pk": 17705, "fields": {"orig_filename": "Barth-Barthenau_Ludwig_1839_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405652}}, {"model": "metainfo.source", "pk": 17706, "fields": {"orig_filename": "Barth-Barthenheim_Johann-Bapt_1784_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420997}}, {"model": "metainfo.source", "pk": 17707, "fields": {"orig_filename": "Bartholemy_Peter_1771_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420998}}, {"model": "metainfo.source", "pk": 17708, "fields": {"orig_filename": "Barth_Gustav_1811_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420996}}, {"model": "metainfo.source", "pk": 17709, "fields": {"orig_filename": "Barth_Josef_1745_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1405650}}, {"model": "metainfo.source", "pk": 17710, "fields": {"orig_filename": "Barth_Otto_1876_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1405651}}, {"model": "metainfo.source", "pk": 17711, "fields": {"orig_filename": "Bartl_Johann_1765_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51", "author": "", "orig_id": 1420999}}, {"model": "metainfo.source", "pk": 17712, "fields": {"orig_filename": "Bartmann_Simon-Wilhelm_1878_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 51f.", "author": "", "orig_id": 1405656}}, {"model": "metainfo.source", "pk": 17713, "fields": {"orig_filename": "Bartsch_Adam-J_1757_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421000}}, {"model": "metainfo.source", "pk": 17714, "fields": {"orig_filename": "Bartsch_Friedrich-Josef-Adam_1798_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421001}}, {"model": "metainfo.source", "pk": 17715, "fields": {"orig_filename": "Barvir_Alois_1899_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444249}}, {"model": "metainfo.source", "pk": 17716, "fields": {"orig_filename": "Barvitius_Anton-Viktor_1823_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1421002}}, {"model": "metainfo.source", "pk": 17717, "fields": {"orig_filename": "Barvitius_Viktor_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405668}}, {"model": "metainfo.source", "pk": 17718, "fields": {"orig_filename": "Barwig_Franz_1868_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405669}}, {"model": "metainfo.source", "pk": 17719, "fields": {"orig_filename": "Basaricek_Stefan_1848_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421003}}, {"model": "metainfo.source", "pk": 17720, "fields": {"orig_filename": "Basch_Felix_1885_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1458840}}, {"model": "metainfo.source", "pk": 17721, "fields": {"orig_filename": "Basch_Samuel_1837_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1405673}}, {"model": "metainfo.source", "pk": 17722, "fields": {"orig_filename": "Bassi_Fernando_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52", "author": "", "orig_id": 1421004}}, {"model": "metainfo.source", "pk": 17723, "fields": {"orig_filename": "Bassi_Luigi_1776_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 52f.", "author": "", "orig_id": 1421005}}, {"model": "metainfo.source", "pk": 17724, "fields": {"orig_filename": "Bast_Gerhard_1911_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1469815}}, {"model": "metainfo.source", "pk": 17725, "fields": {"orig_filename": "Bata_Thomas_1876_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405808}}, {"model": "metainfo.source", "pk": 17726, "fields": {"orig_filename": "Batka_Richard_1868_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405815}}, {"model": "metainfo.source", "pk": 17727, "fields": {"orig_filename": "Bato_Ludwig_1886_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2059179}}, {"model": "metainfo.source", "pk": 17728, "fields": {"orig_filename": "Batthyany-Nemetujvar_Lajos_1807_1849.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1405834}}, {"model": "metainfo.source", "pk": 17729, "fields": {"orig_filename": "Batthyany-Strattmann_Ladislaus_1870_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1421006}}, {"model": "metainfo.source", "pk": 17730, "fields": {"orig_filename": "Batthyany_Franziska_1802_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53", "author": "", "orig_id": 1405832}}, {"model": "metainfo.source", "pk": 17731, "fields": {"orig_filename": "Battisti_Cesare_1875_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 53f.", "author": "", "orig_id": 1405836}}, {"model": "metainfo.source", "pk": 17732, "fields": {"orig_filename": "Bauchinger_Matthaeus_1851_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405838}}, {"model": "metainfo.source", "pk": 17733, "fields": {"orig_filename": "Baudiss_Leo_1861_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405840}}, {"model": "metainfo.source", "pk": 17734, "fields": {"orig_filename": "Baudius_Karl-Friedrich_1796_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1421007}}, {"model": "metainfo.source", "pk": 17735, "fields": {"orig_filename": "Bauernfeld_Eduard_1802_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56f.", "author": "", "orig_id": 1405876}}, {"model": "metainfo.source", "pk": 17736, "fields": {"orig_filename": "Bauernschmid_Karl-Eduard_1801_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1421013}}, {"model": "metainfo.source", "pk": 17737, "fields": {"orig_filename": "Bauer_Adolf_1855_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405844}}, {"model": "metainfo.source", "pk": 17738, "fields": {"orig_filename": "Bauer_Alexander_1836_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54", "author": "", "orig_id": 1405845}}, {"model": "metainfo.source", "pk": 17739, "fields": {"orig_filename": "Bauer_Anton_1865_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 54f.", "author": "", "orig_id": 1405847}}, {"model": "metainfo.source", "pk": 17740, "fields": {"orig_filename": "Bauer_Bruno_1880_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004327}}, {"model": "metainfo.source", "pk": 17741, "fields": {"orig_filename": "Bauer_Ferdinand-Lukas_1760_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405854}}, {"model": "metainfo.source", "pk": 17742, "fields": {"orig_filename": "Bauer_Ferdinand_1825_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1421008}}, {"model": "metainfo.source", "pk": 17743, "fields": {"orig_filename": "Bauer_Franz-Andreas_1758_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405855}}, {"model": "metainfo.source", "pk": 17744, "fields": {"orig_filename": "Bauer_Franz-Salesius_1841_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1405856}}, {"model": "metainfo.source", "pk": 17745, "fields": {"orig_filename": "Bauer_Franz_1798_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55", "author": "", "orig_id": 1421009}}, {"model": "metainfo.source", "pk": 17746, "fields": {"orig_filename": "Bauer_Harald_1901_1990.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444373}}, {"model": "metainfo.source", "pk": 17747, "fields": {"orig_filename": "Bauer_Johann_1889_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1467779}}, {"model": "metainfo.source", "pk": 17748, "fields": {"orig_filename": "Bauer_Josef_1817_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 55f.", "author": "", "orig_id": 1421010}}, {"model": "metainfo.source", "pk": 17749, "fields": {"orig_filename": "Bauer_Julius_1853_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1421011}}, {"model": "metainfo.source", "pk": 17750, "fields": {"orig_filename": "Bauer_Leopold_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405865}}, {"model": "metainfo.source", "pk": 17751, "fields": {"orig_filename": "Bauer_Otto-Heinrich_1900_1991.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2116484}}, {"model": "metainfo.source", "pk": 17752, "fields": {"orig_filename": "Bauer_Otto_1882_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1405869}}, {"model": "metainfo.source", "pk": 17753, "fields": {"orig_filename": "Bauer_Stefan_1865_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 56", "author": "", "orig_id": 1421012}}, {"model": "metainfo.source", "pk": 17754, "fields": {"orig_filename": "Baumann-Koryto_Josef_1865_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57f.", "author": "", "orig_id": 1421015}}, {"model": "metainfo.source", "pk": 17755, "fields": {"orig_filename": "Baumann_Alexander-Moritz_1814_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405877}}, {"model": "metainfo.source", "pk": 17756, "fields": {"orig_filename": "Baumann_Friedrich_1763_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1421014}}, {"model": "metainfo.source", "pk": 17757, "fields": {"orig_filename": "Baumann_Ludwig_1853_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405882}}, {"model": "metainfo.source", "pk": 17758, "fields": {"orig_filename": "Baumann_Oskar_1864_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 57", "author": "", "orig_id": 1405716}}, {"model": "metainfo.source", "pk": 17759, "fields": {"orig_filename": "Baumayer_Marie_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421016}}, {"model": "metainfo.source", "pk": 17760, "fields": {"orig_filename": "Baumberg_Antonie_1859_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405717}}, {"model": "metainfo.source", "pk": 17761, "fields": {"orig_filename": "Baumfeld_Rudolf-Lothar_1903_1988.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004277}}, {"model": "metainfo.source", "pk": 17762, "fields": {"orig_filename": "Baumgarten_Amand_1819_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405718}}, {"model": "metainfo.source", "pk": 17763, "fields": {"orig_filename": "Baumgarten_Anton_1820_1887.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2052596}}, {"model": "metainfo.source", "pk": 17764, "fields": {"orig_filename": "Baumgarten_Wilhelm_1885_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004165}}, {"model": "metainfo.source", "pk": 17765, "fields": {"orig_filename": "Baumgartner_Andreas_1793_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405676}}, {"model": "metainfo.source", "pk": 17766, "fields": {"orig_filename": "Baumgartner_Karl_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421088}}, {"model": "metainfo.source", "pk": 17767, "fields": {"orig_filename": "Baumrucker-Robelswald_Josef_1822_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1421089}}, {"model": "metainfo.source", "pk": 17768, "fields": {"orig_filename": "Baumueller_Bernhard_1827_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58", "author": "", "orig_id": 1405742}}, {"model": "metainfo.source", "pk": 17769, "fields": {"orig_filename": "Baum_Oskar_1883_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2283471}}, {"model": "metainfo.source", "pk": 17770, "fields": {"orig_filename": "Bayer-Buerck_Marie_1820_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406014}}, {"model": "metainfo.source", "pk": 17771, "fields": {"orig_filename": "Bayer_Franz-Rudolf_1780_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405753}}, {"model": "metainfo.source", "pk": 17772, "fields": {"orig_filename": "Bayer_Josef-August_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406009}}, {"model": "metainfo.source", "pk": 17773, "fields": {"orig_filename": "Bayer_Josef_1827_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 58f.", "author": "", "orig_id": 1406006}}, {"model": "metainfo.source", "pk": 17774, "fields": {"orig_filename": "Bayer_Josef_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1405369}}, {"model": "metainfo.source", "pk": 17775, "fields": {"orig_filename": "Bayer_Josef_1882_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406008}}, {"model": "metainfo.source", "pk": 17776, "fields": {"orig_filename": "Bayer_Karl-Emmerich-Robert_1835_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406012}}, {"model": "metainfo.source", "pk": 17777, "fields": {"orig_filename": "Bayer_Karl-Josef_1847_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59", "author": "", "orig_id": 1406011}}, {"model": "metainfo.source", "pk": 17778, "fields": {"orig_filename": "Bazzini_Antonio_1818_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 59f.", "author": "", "orig_id": 1421091}}, {"model": "metainfo.source", "pk": 17779, "fields": {"orig_filename": "Beaulieu-Marconnay_Jean-Pierre_1725_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421093}}, {"model": "metainfo.source", "pk": 17780, "fields": {"orig_filename": "Becher_Alfred-Julius_1803_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406022}}, {"model": "metainfo.source", "pk": 17781, "fields": {"orig_filename": "Becher_Siegfried_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406023}}, {"model": "metainfo.source", "pk": 17782, "fields": {"orig_filename": "Bechtold_Philipp-Christoph_1747_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421094}}, {"model": "metainfo.source", "pk": 17783, "fields": {"orig_filename": "Bechtolsheim_Anton_1834_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406025}}, {"model": "metainfo.source", "pk": 17784, "fields": {"orig_filename": "Beck-Mannagetta-Lerchenau_Guenther_1856_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1421097}}, {"model": "metainfo.source", "pk": 17785, "fields": {"orig_filename": "Beck-Mannagetta_Peter_1917_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1432469}}, {"model": "metainfo.source", "pk": 17786, "fields": {"orig_filename": "Beck-Rzikowsky_Friedrich_1830_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61f.", "author": "", "orig_id": 1406041}}, {"model": "metainfo.source", "pk": 17787, "fields": {"orig_filename": "Becker_Ludwig_1823_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1421099}}, {"model": "metainfo.source", "pk": 17788, "fields": {"orig_filename": "Becker_Moritz-Alois_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1405885}}, {"model": "metainfo.source", "pk": 17789, "fields": {"orig_filename": "Becker_Paul_1910_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1443740}}, {"model": "metainfo.source", "pk": 17790, "fields": {"orig_filename": "Becke_Franz-Karl_1818_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1405675}}, {"model": "metainfo.source", "pk": 17791, "fields": {"orig_filename": "Becke_Friedrich-Johann-Karl_1855_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62", "author": "", "orig_id": 1421098}}, {"model": "metainfo.source", "pk": 17792, "fields": {"orig_filename": "Beckh-Widmannstetter_Leopold_1841_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406143}}, {"model": "metainfo.source", "pk": 17793, "fields": {"orig_filename": "Beckh-Widmanstaetten_Alois_1753_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 62f.", "author": "", "orig_id": 1406142}}, {"model": "metainfo.source", "pk": 17794, "fields": {"orig_filename": "Beckmann_Friedrich_1803_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 63", "author": "", "orig_id": 1406144}}, {"model": "metainfo.source", "pk": 17795, "fields": {"orig_filename": "Beck_Friedrich_1802_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1406028}}, {"model": "metainfo.source", "pk": 17796, "fields": {"orig_filename": "Beck_Friedrich_1864_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60", "author": "", "orig_id": 1421095}}, {"model": "metainfo.source", "pk": 17797, "fields": {"orig_filename": "Beck_Guido_1903_1988.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1452317}}, {"model": "metainfo.source", "pk": 17798, "fields": {"orig_filename": "Beck_Johann-Nep_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 60f.", "author": "", "orig_id": 1406032}}, {"model": "metainfo.source", "pk": 17799, "fields": {"orig_filename": "Beck_Karl-Isidor_1817_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406034}}, {"model": "metainfo.source", "pk": 17800, "fields": {"orig_filename": "Beck_Karl_1814_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 61", "author": "", "orig_id": 1406033}}, {"model": "metainfo.source", "pk": 17801, "fields": {"orig_filename": "Augustin_Vinzenz_1780_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416884}}, {"model": "metainfo.source", "pk": 17802, "fields": {"orig_filename": "Auinger_Mathias_1811_1890.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2264764}}, {"model": "metainfo.source", "pk": 17803, "fields": {"orig_filename": "Auracher-Aurach_Josef-Christian_1756_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416885}}, {"model": "metainfo.source", "pk": 17804, "fields": {"orig_filename": "Aurednickova_Anna_1873_1957.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2167716}}, {"model": "metainfo.source", "pk": 17805, "fields": {"orig_filename": "Ausch_Karl-Michael_1893_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441859}}, {"model": "metainfo.source", "pk": 17806, "fields": {"orig_filename": "Auspitz_Heinrich_1835_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416886}}, {"model": "metainfo.source", "pk": 17807, "fields": {"orig_filename": "Auspitz_Rudolf_1834_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416887}}, {"model": "metainfo.source", "pk": 17808, "fields": {"orig_filename": "Ausserer_Carl_1844_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416888}}, {"model": "metainfo.source", "pk": 17809, "fields": {"orig_filename": "Ausserer_Carl_1883_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416889}}, {"model": "metainfo.source", "pk": 17810, "fields": {"orig_filename": "Ausserlechner_Gereon_1904_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468713}}, {"model": "metainfo.source", "pk": 17811, "fields": {"orig_filename": "Austerlitz_Friedrich_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416958}}, {"model": "metainfo.source", "pk": 17812, "fields": {"orig_filename": "Autsch_Angela_1900_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468715}}, {"model": "metainfo.source", "pk": 17813, "fields": {"orig_filename": "Avancini_Giustiniano_1807_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416959}}, {"model": "metainfo.source", "pk": 17814, "fields": {"orig_filename": "Avanzini_Giuseppe_1753_1826.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416960}}, {"model": "metainfo.source", "pk": 17815, "fields": {"orig_filename": "Avanzo_Dominik_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38", "author": "", "orig_id": 1416961}}, {"model": "metainfo.source", "pk": 17816, "fields": {"orig_filename": "Axentowicz_Theodor_1859_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 38f.", "author": "", "orig_id": 1416962}}, {"model": "metainfo.source", "pk": 17817, "fields": {"orig_filename": "Axmann_Ferdinand_1838_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416963}}, {"model": "metainfo.source", "pk": 17818, "fields": {"orig_filename": "Axmann_Josef_1793_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416964}}, {"model": "metainfo.source", "pk": 17819, "fields": {"orig_filename": "Axmann_Julius_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416965}}, {"model": "metainfo.source", "pk": 17820, "fields": {"orig_filename": "Ayrenhoff_Cornelius-Hermann_1733_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416966}}, {"model": "metainfo.source", "pk": 17821, "fields": {"orig_filename": "Azarian_Aristakes_1782_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416967}}, {"model": "metainfo.source", "pk": 17822, "fields": {"orig_filename": "Azbe_Anton_1862_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 39", "author": "", "orig_id": 1416968}}, {"model": "metainfo.source", "pk": 17823, "fields": {"orig_filename": "Baar_Hugo_1873_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405521}}, {"model": "metainfo.source", "pk": 17824, "fields": {"orig_filename": "Baar_Jindrich_1869_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420825}}, {"model": "metainfo.source", "pk": 17825, "fields": {"orig_filename": "Babak_Edward_1873_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420826}}, {"model": "metainfo.source", "pk": 17826, "fields": {"orig_filename": "Babik_Adeodatus_1738_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1420827}}, {"model": "metainfo.source", "pk": 17827, "fields": {"orig_filename": "Bacher_Eduard_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405549}}, {"model": "metainfo.source", "pk": 17828, "fields": {"orig_filename": "Bacher_Rudolf_1862_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405540}}, {"model": "metainfo.source", "pk": 17829, "fields": {"orig_filename": "Bachinger_Franz_1892_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1405556}}, {"model": "metainfo.source", "pk": 17830, "fields": {"orig_filename": "Bachlechner_Gregor_1808_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2025081}}, {"model": "metainfo.source", "pk": 17831, "fields": {"orig_filename": "Bachlechner_Josef_1871_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405557}}, {"model": "metainfo.source", "pk": 17832, "fields": {"orig_filename": "Bachmann_Adolf_1849_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405560}}, {"model": "metainfo.source", "pk": 17833, "fields": {"orig_filename": "Bachmann_Eugen_1834_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41f.", "author": "", "orig_id": 1420829}}, {"model": "metainfo.source", "pk": 17834, "fields": {"orig_filename": "Bachmann_Hermann_1856_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1405561}}, {"model": "metainfo.source", "pk": 17835, "fields": {"orig_filename": "Bachmann_Luise_1903_1976.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1440405}}, {"model": "metainfo.source", "pk": 17836, "fields": {"orig_filename": "Bachofen-Echt_Karl-Adolf_1830_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41f.", "author": "", "orig_id": 1405565}}, {"model": "metainfo.source", "pk": 17837, "fields": {"orig_filename": "Bachrach_Adolf_1853_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405566}}, {"model": "metainfo.source", "pk": 17838, "fields": {"orig_filename": "Bachrich_Sigmund_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405567}}, {"model": "metainfo.source", "pk": 17839, "fields": {"orig_filename": "Bach_Alexander_1813_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405534}}, {"model": "metainfo.source", "pk": 17840, "fields": {"orig_filename": "Bach_Eduard_1815_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 40", "author": "", "orig_id": 1405537}}, {"model": "metainfo.source", "pk": 17841, "fields": {"orig_filename": "Bach_Emilie_1840_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405538}}, {"model": "metainfo.source", "pk": 17842, "fields": {"orig_filename": "Bach_Friedrich_1817_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405544}}, {"model": "metainfo.source", "pk": 17843, "fields": {"orig_filename": "Bach_Otto_1833_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 41", "author": "", "orig_id": 1405548}}, {"model": "metainfo.source", "pk": 17844, "fields": {"orig_filename": "Bach_Theodor-Karl_1858_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405547}}, {"model": "metainfo.source", "pk": 17845, "fields": {"orig_filename": "Bacquehem_Olivier_1847_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1405573}}, {"model": "metainfo.source", "pk": 17846, "fields": {"orig_filename": "Bacsanyi_Gabriele_1775_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1420830}}, {"model": "metainfo.source", "pk": 17847, "fields": {"orig_filename": "Badaj_Alexander_1858_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42", "author": "", "orig_id": 1420831}}, {"model": "metainfo.source", "pk": 17848, "fields": {"orig_filename": "Badeni_Kasimir-Felix_1846_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 42f.", "author": "", "orig_id": 1405579}}, {"model": "metainfo.source", "pk": 17849, "fields": {"orig_filename": "Baer-Frisell_Christine_1887_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43", "author": "", "orig_id": 1420832}}, {"model": "metainfo.source", "pk": 17850, "fields": {"orig_filename": "Baernreither_Josef-Maria_1845_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43", "author": "", "orig_id": 1405471}}, {"model": "metainfo.source", "pk": 17851, "fields": {"orig_filename": "Baeuerle_Adolf_1786_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 43f.", "author": "", "orig_id": 1405472}}, {"model": "metainfo.source", "pk": 17852, "fields": {"orig_filename": "Baeuerle_Friederike_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420833}}, {"model": "metainfo.source", "pk": 17853, "fields": {"orig_filename": "Baeuerle_Katharina_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44", "author": "", "orig_id": 1405473}}, {"model": "metainfo.source", "pk": 17854, "fields": {"orig_filename": "Bahr-Mildenburg_Anna_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1405541}}, {"model": "metainfo.source", "pk": 17855, "fields": {"orig_filename": "Bahr_Alois_1834_1898.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1405475}}, {"model": "metainfo.source", "pk": 17856, "fields": {"orig_filename": "Baillet-Latour_Theodor_1780_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420835}}, {"model": "metainfo.source", "pk": 17857, "fields": {"orig_filename": "Baillet-Latour_Vinzenz_1848_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1405479}}, {"model": "metainfo.source", "pk": 17858, "fields": {"orig_filename": "Bail_Oskar_1869_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420834}}, {"model": "metainfo.source", "pk": 17859, "fields": {"orig_filename": "Bakalar_Johann-M_1857_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420903}}, {"model": "metainfo.source", "pk": 17860, "fields": {"orig_filename": "Bakody_Theodor_1825_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45", "author": "", "orig_id": 1420904}}, {"model": "metainfo.source", "pk": 17861, "fields": {"orig_filename": "Bakonyi_Emmerich_1768_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 45f.", "author": "", "orig_id": 1420905}}, {"model": "metainfo.source", "pk": 17862, "fields": {"orig_filename": "Balajthy_Robert_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420906}}, {"model": "metainfo.source", "pk": 17863, "fields": {"orig_filename": "Balassa_Johann_1814_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420907}}, {"model": "metainfo.source", "pk": 17864, "fields": {"orig_filename": "Balassa_Konstantin_1795_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420908}}, {"model": "metainfo.source", "pk": 17865, "fields": {"orig_filename": "Balatka_Hans_1827_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1405492}}, {"model": "metainfo.source", "pk": 17866, "fields": {"orig_filename": "Balbi_Adrian_1782_1848.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1420909}}, {"model": "metainfo.source", "pk": 17867, "fields": {"orig_filename": "Baldacci_Anton-Maximilian_1762_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46", "author": "", "orig_id": 1405496}}, {"model": "metainfo.source", "pk": 17868, "fields": {"orig_filename": "Ballagi_Moriz_1815_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 46f.", "author": "", "orig_id": 1420910}}, {"model": "metainfo.source", "pk": 17869, "fields": {"orig_filename": "Balling_Karl-Josef-Napoleon_1805_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420911}}, {"model": "metainfo.source", "pk": 17870, "fields": {"orig_filename": "Balucki_Michael_1837_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420912}}, {"model": "metainfo.source", "pk": 17871, "fields": {"orig_filename": "Bamberger_Eugen_1858_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1405680}}, {"model": "metainfo.source", "pk": 17872, "fields": {"orig_filename": "Bamberger_Heinrich_1822_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1405682}}, {"model": "metainfo.source", "pk": 17873, "fields": {"orig_filename": "Bamberger_Max_1861_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47f.", "author": "", "orig_id": 1420914}}, {"model": "metainfo.source", "pk": 17874, "fields": {"orig_filename": "Bamberg_Josef_1801_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 47", "author": "", "orig_id": 1420913}}, {"model": "metainfo.source", "pk": 17875, "fields": {"orig_filename": "Bancalari_Gustav_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420915}}, {"model": "metainfo.source", "pk": 17876, "fields": {"orig_filename": "Bandl_Ludwig_1842_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1421079}}, {"model": "metainfo.source", "pk": 17877, "fields": {"orig_filename": "Bandrowski_Alexander_1860_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420917}}, {"model": "metainfo.source", "pk": 17878, "fields": {"orig_filename": "Band_Moritz_1864_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1420916}}, {"model": "metainfo.source", "pk": 17879, "fields": {"orig_filename": "Banffy-Losoncz_Dezsoe_1843_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405689}}, {"model": "metainfo.source", "pk": 17880, "fields": {"orig_filename": "Banhans_Anton_1825_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405691}}, {"model": "metainfo.source", "pk": 17881, "fields": {"orig_filename": "Banhans_Karl_1861_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48", "author": "", "orig_id": 1405693}}, {"model": "metainfo.source", "pk": 17882, "fields": {"orig_filename": "Banki_Donat_1859_1922.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405695}}, {"model": "metainfo.source", "pk": 17883, "fields": {"orig_filename": "Barabas_Nikolaus_1810_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 48f.", "author": "", "orig_id": 1420918}}, {"model": "metainfo.source", "pk": 17884, "fields": {"orig_filename": "Barach-Rappaport_Karl-Siegmund_1834_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1420919}}, {"model": "metainfo.source", "pk": 17885, "fields": {"orig_filename": "Barach_Moritz_1818_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405584}}, {"model": "metainfo.source", "pk": 17886, "fields": {"orig_filename": "Barach_Rosa_1841_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1414455}}, {"model": "metainfo.source", "pk": 17887, "fields": {"orig_filename": "Barac_Milutin_1849_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1405701}}, {"model": "metainfo.source", "pk": 17888, "fields": {"orig_filename": "Baraga_Friedrich-Irenaeus_1797_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1405702}}, {"model": "metainfo.source", "pk": 17889, "fields": {"orig_filename": "Barany_Robert_1876_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1405704}}, {"model": "metainfo.source", "pk": 17890, "fields": {"orig_filename": "Barazetti_Sophie_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49", "author": "", "orig_id": 1420920}}, {"model": "metainfo.source", "pk": 17891, "fields": {"orig_filename": "Barbacovi_Franz-Virgil_1738_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 49f.", "author": "", "orig_id": 1405709}}, {"model": "metainfo.source", "pk": 17892, "fields": {"orig_filename": "Barbaczy_Josef_1750_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420921}}, {"model": "metainfo.source", "pk": 17893, "fields": {"orig_filename": "Barbisch_Hans_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420922}}, {"model": "metainfo.source", "pk": 17894, "fields": {"orig_filename": "Barb_Alphons-Augustinus_1901_1979.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1444036}}, {"model": "metainfo.source", "pk": 17895, "fields": {"orig_filename": "Barco_Josef_1798_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420923}}, {"model": "metainfo.source", "pk": 17896, "fields": {"orig_filename": "Bardach-Chlumberg_Hans_1897_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420924}}, {"model": "metainfo.source", "pk": 17897, "fields": {"orig_filename": "Barenyi_Bela_1907_1997.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1444040}}, {"model": "metainfo.source", "pk": 17898, "fields": {"orig_filename": "Bareuther_Ernst_1838_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420925}}, {"model": "metainfo.source", "pk": 17899, "fields": {"orig_filename": "Barion-Zellthal_Matthias_1785_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420926}}, {"model": "metainfo.source", "pk": 17900, "fields": {"orig_filename": "Barkany_Marie_1862_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420993}}, {"model": "metainfo.source", "pk": 17901, "fields": {"orig_filename": "Barle_Janko_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 50", "author": "", "orig_id": 1420994}}, {"model": "metainfo.source", "pk": 17902, "fields": {"orig_filename": "Antoniewicz_Johann_1858_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417972}}, {"model": "metainfo.source", "pk": 17903, "fields": {"orig_filename": "Antoniewicz_Karl_1807_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417973}}, {"model": "metainfo.source", "pk": 17904, "fields": {"orig_filename": "Antonius_Otto_1885_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417974}}, {"model": "metainfo.source", "pk": 17905, "fields": {"orig_filename": "Anton_Ferdinand_1843_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24f.", "author": "", "orig_id": 1417968}}, {"model": "metainfo.source", "pk": 17906, "fields": {"orig_filename": "Anton_Gabriel_1858_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417969}}, {"model": "metainfo.source", "pk": 17907, "fields": {"orig_filename": "Anton_Viktor_1779_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417970}}, {"model": "metainfo.source", "pk": 17908, "fields": {"orig_filename": "Anyz_Josef_1852_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417976}}, {"model": "metainfo.source", "pk": 17909, "fields": {"orig_filename": "Anzengruber_Johann_1810_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417977}}, {"model": "metainfo.source", "pk": 17910, "fields": {"orig_filename": "Anzengruber_Karl_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25f.", "author": "", "orig_id": 1418052}}, {"model": "metainfo.source", "pk": 17911, "fields": {"orig_filename": "Anzengruber_Ludwig_1839_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418053}}, {"model": "metainfo.source", "pk": 17912, "fields": {"orig_filename": "Anzoletti_Marco_1867_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418054}}, {"model": "metainfo.source", "pk": 17913, "fields": {"orig_filename": "Anzoletti_Patrizius_1838_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418055}}, {"model": "metainfo.source", "pk": 17914, "fields": {"orig_filename": "Appel_Christian_1785_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418056}}, {"model": "metainfo.source", "pk": 17915, "fields": {"orig_filename": "Appel_Johann-Nep_1826_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418057}}, {"model": "metainfo.source", "pk": 17916, "fields": {"orig_filename": "Appel_Josef-Franz_1767_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26", "author": "", "orig_id": 1418058}}, {"model": "metainfo.source", "pk": 17917, "fields": {"orig_filename": "Appel_Michael-Ludwig-E_1856_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 26f.", "author": "", "orig_id": 1418059}}, {"model": "metainfo.source", "pk": 17918, "fields": {"orig_filename": "Appel_Wilhelm_1875_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418060}}, {"model": "metainfo.source", "pk": 17919, "fields": {"orig_filename": "Appiani_Andreas_1754_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418061}}, {"model": "metainfo.source", "pk": 17920, "fields": {"orig_filename": "Apponyi_Albert_1846_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418062}}, {"model": "metainfo.source", "pk": 17921, "fields": {"orig_filename": "Apponyi_Alexander_1844_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418063}}, {"model": "metainfo.source", "pk": 17922, "fields": {"orig_filename": "Apponyi_Georg_1808_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418064}}, {"model": "metainfo.source", "pk": 17923, "fields": {"orig_filename": "Aptowitzer_Victor_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27", "author": "", "orig_id": 1418065}}, {"model": "metainfo.source", "pk": 17924, "fields": {"orig_filename": "Arany_Johann_1817_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 27f.", "author": "", "orig_id": 1418066}}, {"model": "metainfo.source", "pk": 17925, "fields": {"orig_filename": "Arbes_Jakub_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418067}}, {"model": "metainfo.source", "pk": 17926, "fields": {"orig_filename": "Arbter_Arthur_1846_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418069}}, {"model": "metainfo.source", "pk": 17927, "fields": {"orig_filename": "Arbter_Emil_1839_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418068}}, {"model": "metainfo.source", "pk": 17928, "fields": {"orig_filename": "Arendt_Ekkehard_1892_1954.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2028980}}, {"model": "metainfo.source", "pk": 17929, "fields": {"orig_filename": "Argenteau_Eugen_1741_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418070}}, {"model": "metainfo.source", "pk": 17930, "fields": {"orig_filename": "Arici_Cesare_1785_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418071}}, {"model": "metainfo.source", "pk": 17931, "fields": {"orig_filename": "Arigi_Julius_1895_1981.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441907}}, {"model": "metainfo.source", "pk": 17932, "fields": {"orig_filename": "Arleth_Erich_1856_1909.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418072}}, {"model": "metainfo.source", "pk": 17933, "fields": {"orig_filename": "Arlt_Ferdinand_1812_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418073}}, {"model": "metainfo.source", "pk": 17934, "fields": {"orig_filename": "Arnau_Karl_1843_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28", "author": "", "orig_id": 1418074}}, {"model": "metainfo.source", "pk": 17935, "fields": {"orig_filename": "Arnberger_Erik_1917_1987.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441954}}, {"model": "metainfo.source", "pk": 17936, "fields": {"orig_filename": "Arndts-Arnesberg_Karl-Ludwig_1803_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418155}}, {"model": "metainfo.source", "pk": 17937, "fields": {"orig_filename": "Arndt_Johannes_1842_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 28f.", "author": "", "orig_id": 1418154}}, {"model": "metainfo.source", "pk": 17938, "fields": {"orig_filename": "Arneth_Alfred_1819_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418156}}, {"model": "metainfo.source", "pk": 17939, "fields": {"orig_filename": "Arneth_Josef-Cal_1791_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418157}}, {"model": "metainfo.source", "pk": 17940, "fields": {"orig_filename": "Arneth_Michael_1771_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29", "author": "", "orig_id": 1418158}}, {"model": "metainfo.source", "pk": 17941, "fields": {"orig_filename": "Arnim_Hans_1859_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 29f.", "author": "", "orig_id": 1418159}}, {"model": "metainfo.source", "pk": 17942, "fields": {"orig_filename": "Arnold_Djuro_1854_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418160}}, {"model": "metainfo.source", "pk": 17943, "fields": {"orig_filename": "Arnold_Josef_1788_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418161}}, {"model": "metainfo.source", "pk": 17944, "fields": {"orig_filename": "Arnold_Josef_1823_1862.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193497}}, {"model": "metainfo.source", "pk": 17945, "fields": {"orig_filename": "Arnold_Robert-Franz_1872_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418162}}, {"model": "metainfo.source", "pk": 17946, "fields": {"orig_filename": "Arnsburg_Ludwig_1816_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418163}}, {"model": "metainfo.source", "pk": 17947, "fields": {"orig_filename": "Arnsburg_Marie_1862_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418164}}, {"model": "metainfo.source", "pk": 17948, "fields": {"orig_filename": "Arrigoni_Anton_1788_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418165}}, {"model": "metainfo.source", "pk": 17949, "fields": {"orig_filename": "Arrivabene_Ferdinand_1770_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30", "author": "", "orig_id": 1418166}}, {"model": "metainfo.source", "pk": 17950, "fields": {"orig_filename": "Artaria_Domenico_1775_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 30f.", "author": "", "orig_id": 1418167}}, {"model": "metainfo.source", "pk": 17951, "fields": {"orig_filename": "Arthaber_Gustav-Adolf_1864_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418168}}, {"model": "metainfo.source", "pk": 17952, "fields": {"orig_filename": "Arthaber_Rudolf_1795_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418169}}, {"model": "metainfo.source", "pk": 17953, "fields": {"orig_filename": "Artmann_Emil-Wilhelm_1871_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2003990}}, {"model": "metainfo.source", "pk": 17954, "fields": {"orig_filename": "Artmann_Ferdinand_1830_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418170}}, {"model": "metainfo.source", "pk": 17955, "fields": {"orig_filename": "Artner_Therese_1772_1829.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418171}}, {"model": "metainfo.source", "pk": 17956, "fields": {"orig_filename": "Arz-Straussenburg_Arthur_1857_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31", "author": "", "orig_id": 1418172}}, {"model": "metainfo.source", "pk": 17957, "fields": {"orig_filename": "Arzberger_Friedrich_1833_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 31f.", "author": "", "orig_id": 1416773}}, {"model": "metainfo.source", "pk": 17958, "fields": {"orig_filename": "Arzberger_Johann_1778_1835.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416774}}, {"model": "metainfo.source", "pk": 17959, "fields": {"orig_filename": "Arzberger_Moriz_1827_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416775}}, {"model": "metainfo.source", "pk": 17960, "fields": {"orig_filename": "Asboth_Oszkar_1852_1920.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2264594}}, {"model": "metainfo.source", "pk": 17961, "fields": {"orig_filename": "Aschauer-Achenrain-Lichtenthurn_Josef_1782_1843.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416776}}, {"model": "metainfo.source", "pk": 17962, "fields": {"orig_filename": "Aschbach_Josef_1801_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416777}}, {"model": "metainfo.source", "pk": 17963, "fields": {"orig_filename": "Ascher_Anton_1820_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416778}}, {"model": "metainfo.source", "pk": 17964, "fields": {"orig_filename": "Ascher_Franzi_1910_1991.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441445}}, {"model": "metainfo.source", "pk": 17965, "fields": {"orig_filename": "Ascher_Leo_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441446}}, {"model": "metainfo.source", "pk": 17966, "fields": {"orig_filename": "Ascoli_Graziadio-Isaia_1829_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 32", "author": "", "orig_id": 1416779}}, {"model": "metainfo.source", "pk": 17967, "fields": {"orig_filename": "Askerc_Anton_1856_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416780}}, {"model": "metainfo.source", "pk": 17968, "fields": {"orig_filename": "Aslan_Raoul_1886_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1430338}}, {"model": "metainfo.source", "pk": 17969, "fields": {"orig_filename": "Asnyk_Adam_1838_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416781}}, {"model": "metainfo.source", "pk": 17970, "fields": {"orig_filename": "Assemani_Simone_1752_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416783}}, {"model": "metainfo.source", "pk": 17971, "fields": {"orig_filename": "Assmayer_Ignaz_1790_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416784}}, {"model": "metainfo.source", "pk": 17972, "fields": {"orig_filename": "Asson_Michelangelo_1802_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416785}}, {"model": "metainfo.source", "pk": 17973, "fields": {"orig_filename": "Attems-Petzenstein_Heinrich_1834_1909.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416788}}, {"model": "metainfo.source", "pk": 17974, "fields": {"orig_filename": "Attems_Alexander_1814_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416786}}, {"model": "metainfo.source", "pk": 17975, "fields": {"orig_filename": "Attems_Ferdinand-Maria_1746_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 33", "author": "", "orig_id": 1416787}}, {"model": "metainfo.source", "pk": 17976, "fields": {"orig_filename": "Attems_Ignaz-Maria_1774_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416789}}, {"model": "metainfo.source", "pk": 17977, "fields": {"orig_filename": "Attems_Ottokar-Maria_1815_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1469022}}, {"model": "metainfo.source", "pk": 17978, "fields": {"orig_filename": "Attlmayer_Richard-Isidor_1831_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416790}}, {"model": "metainfo.source", "pk": 17979, "fields": {"orig_filename": "Attomyr_Joseph_1807_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416791}}, {"model": "metainfo.source", "pk": 17980, "fields": {"orig_filename": "Atzwanger_Hugo_1883_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1429374}}, {"model": "metainfo.source", "pk": 17981, "fields": {"orig_filename": "Atzwanger_Peter-Paul_1888_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441750}}, {"model": "metainfo.source", "pk": 17982, "fields": {"orig_filename": "Atz_Karl_1832_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416792}}, {"model": "metainfo.source", "pk": 17983, "fields": {"orig_filename": "Auckenthaler_Engelbert_1875_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416793}}, {"model": "metainfo.source", "pk": 17984, "fields": {"orig_filename": "Auckenthaler_Josef_1769_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416794}}, {"model": "metainfo.source", "pk": 17985, "fields": {"orig_filename": "Auer-Welsbach_Alois_1813_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34f.", "author": "", "orig_id": 1416796}}, {"model": "metainfo.source", "pk": 17986, "fields": {"orig_filename": "Auer-Welsbach_Karl_1858_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416872}}, {"model": "metainfo.source", "pk": 17987, "fields": {"orig_filename": "Auerhan_Jan_1880_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1992581}}, {"model": "metainfo.source", "pk": 17988, "fields": {"orig_filename": "Auernhammer_Josepha-Barbara_1758_1820.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447288}}, {"model": "metainfo.source", "pk": 17989, "fields": {"orig_filename": "Auernheimer_Raoul_1876_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416873}}, {"model": "metainfo.source", "pk": 17990, "fields": {"orig_filename": "Auersperg_Adolf_1821_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35", "author": "", "orig_id": 1416874}}, {"model": "metainfo.source", "pk": 17991, "fields": {"orig_filename": "Auersperg_Anton-Alexander_1806_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 35f.", "author": "", "orig_id": 1416875}}, {"model": "metainfo.source", "pk": 17992, "fields": {"orig_filename": "Auersperg_Gottfried-Leopold_1818_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416876}}, {"model": "metainfo.source", "pk": 17993, "fields": {"orig_filename": "Auersperg_Johann-Baptist_1745_1816.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1468711}}, {"model": "metainfo.source", "pk": 17994, "fields": {"orig_filename": "Auersperg_Karl-Wilhelm_1814_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416877}}, {"model": "metainfo.source", "pk": 17995, "fields": {"orig_filename": "Auersperg_Leopold_1855_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416878}}, {"model": "metainfo.source", "pk": 17996, "fields": {"orig_filename": "Auersperg_Maximilian_1771_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 36", "author": "", "orig_id": 1416879}}, {"model": "metainfo.source", "pk": 17997, "fields": {"orig_filename": "Auer_Erich_1923_2004.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441801}}, {"model": "metainfo.source", "pk": 17998, "fields": {"orig_filename": "Auer_Hans-Wilhelm_1847_1906.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004022}}, {"model": "metainfo.source", "pk": 17999, "fields": {"orig_filename": "Auer_Leopold_1845_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 34", "author": "", "orig_id": 1416795}}, {"model": "metainfo.source", "pk": 18000, "fields": {"orig_filename": "Auffenberg-Komarow_Moritz_1852_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416880}}, {"model": "metainfo.source", "pk": 18001, "fields": {"orig_filename": "Augenfeld_Alois_1865_1936.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004028}}, {"model": "metainfo.source", "pk": 18002, "fields": {"orig_filename": "Augenfeld_Felix_1893_1984.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2004033}}, {"model": "metainfo.source", "pk": 18003, "fields": {"orig_filename": "August-Auenfels_Georg_1773_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416881}}, {"model": "metainfo.source", "pk": 18004, "fields": {"orig_filename": "Augustin_Ferdinand_1807_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 37", "author": "", "orig_id": 1416883}}, {"model": "metainfo.source", "pk": 18005, "fields": {"orig_filename": "Augustin_Frantisek_1846_1908.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1992594}}, {"model": "metainfo.source", "pk": 18006, "fields": {"orig_filename": "Albini_Srecko_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418129}}, {"model": "metainfo.source", "pk": 18007, "fields": {"orig_filename": "Albori_Eugen_1838_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418131}}, {"model": "metainfo.source", "pk": 18008, "fields": {"orig_filename": "Albrecht_Friedrich-Rudolf_1817_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12f.", "author": "", "orig_id": 1418132}}, {"model": "metainfo.source", "pk": 18009, "fields": {"orig_filename": "Albrecht_Heinrich_1866_1922.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418133}}, {"model": "metainfo.source", "pk": 18010, "fields": {"orig_filename": "Albrecht_Hermine_1856_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418134}}, {"model": "metainfo.source", "pk": 18011, "fields": {"orig_filename": "Albrecht_Josef_1888_1974.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438986}}, {"model": "metainfo.source", "pk": 18012, "fields": {"orig_filename": "Albrecht_Kasimir_1738_1822.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418135}}, {"model": "metainfo.source", "pk": 18013, "fields": {"orig_filename": "Albrizzi-Teotochi_Isabella_1760_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418136}}, {"model": "metainfo.source", "pk": 18014, "fields": {"orig_filename": "Aleardi_Aleardo_1812_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 13", "author": "", "orig_id": 1418137}}, {"model": "metainfo.source", "pk": 18015, "fields": {"orig_filename": "Aleksic_Nikola_1811_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418138}}, {"model": "metainfo.source", "pk": 18016, "fields": {"orig_filename": "Alemann_Wilhelm_1798_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418139}}, {"model": "metainfo.source", "pk": 18017, "fields": {"orig_filename": "Ales_Mikulas_1852_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418145}}, {"model": "metainfo.source", "pk": 18018, "fields": {"orig_filename": "Alexander_Gustav_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418147}}, {"model": "metainfo.source", "pk": 18019, "fields": {"orig_filename": "Alexander__1857_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418146}}, {"model": "metainfo.source", "pk": 18020, "fields": {"orig_filename": "Alexandrovic_Ljubomir_1828_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418148}}, {"model": "metainfo.source", "pk": 18021, "fields": {"orig_filename": "Algyogyi_Hermann_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2089510}}, {"model": "metainfo.source", "pk": 18022, "fields": {"orig_filename": "Alle_Moriz_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 14", "author": "", "orig_id": 1418149}}, {"model": "metainfo.source", "pk": 18023, "fields": {"orig_filename": "Allram_Adele_1826_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1418152}}, {"model": "metainfo.source", "pk": 18024, "fields": {"orig_filename": "Allram_Josef_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1418153}}, {"model": "metainfo.source", "pk": 18025, "fields": {"orig_filename": "Alma_Marian_1860_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416748}}, {"model": "metainfo.source", "pk": 18026, "fields": {"orig_filename": "Alphons_Theodor_1860_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416749}}, {"model": "metainfo.source", "pk": 18027, "fields": {"orig_filename": "Alram_Hieronymus-Josef_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416750}}, {"model": "metainfo.source", "pk": 18028, "fields": {"orig_filename": "Alscher_Otto_1880_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416751}}, {"model": "metainfo.source", "pk": 18029, "fields": {"orig_filename": "Alschinger_Andreas_1791_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416752}}, {"model": "metainfo.source", "pk": 18030, "fields": {"orig_filename": "Altenweisel_Josef_1851_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1416757}}, {"model": "metainfo.source", "pk": 18031, "fields": {"orig_filename": "Alter-Waltrecht_Rudolf_1839_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417699}}, {"model": "metainfo.source", "pk": 18032, "fields": {"orig_filename": "Altmann_Adolf_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447709}}, {"model": "metainfo.source", "pk": 18033, "fields": {"orig_filename": "Altmann_Anton_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417701}}, {"model": "metainfo.source", "pk": 18034, "fields": {"orig_filename": "Altmann_Josef-Hermann_1845_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417702}}, {"model": "metainfo.source", "pk": 18035, "fields": {"orig_filename": "Altman_Josef_1777_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16", "author": "", "orig_id": 1417700}}, {"model": "metainfo.source", "pk": 18036, "fields": {"orig_filename": "Altmuetter_Georg_1787_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 16f.", "author": "", "orig_id": 1417703}}, {"model": "metainfo.source", "pk": 18037, "fields": {"orig_filename": "Altmutter_Franz_1745_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417704}}, {"model": "metainfo.source", "pk": 18038, "fields": {"orig_filename": "Altmutter_Placidus-Jakob_1780_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417705}}, {"model": "metainfo.source", "pk": 18039, "fields": {"orig_filename": "Alton_Johann-Baptist_1845_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417706}}, {"model": "metainfo.source", "pk": 18040, "fields": {"orig_filename": "Altschul_Elias_1812_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417707}}, {"model": "metainfo.source", "pk": 18041, "fields": {"orig_filename": "Altwirth_Heinrich_1868_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417708}}, {"model": "metainfo.source", "pk": 18042, "fields": {"orig_filename": "Alt_Franz_1824_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15", "author": "", "orig_id": 1416753}}, {"model": "metainfo.source", "pk": 18043, "fields": {"orig_filename": "Alt_Jakob_1789_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 15f.", "author": "", "orig_id": 1416754}}, {"model": "metainfo.source", "pk": 18044, "fields": {"orig_filename": "Alt_Rudolf_1812_1905.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1416755}}, {"model": "metainfo.source", "pk": 18045, "fields": {"orig_filename": "Amade_August_1867_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417709}}, {"model": "metainfo.source", "pk": 18046, "fields": {"orig_filename": "Amade_Thaddaeus_1783_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417710}}, {"model": "metainfo.source", "pk": 18047, "fields": {"orig_filename": "Amann_Johann_1765_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417780}}, {"model": "metainfo.source", "pk": 18048, "fields": {"orig_filename": "Amann_Paul_1884_1958.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1441439}}, {"model": "metainfo.source", "pk": 18049, "fields": {"orig_filename": "Amati_Carlo_1776_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17", "author": "", "orig_id": 1417781}}, {"model": "metainfo.source", "pk": 18050, "fields": {"orig_filename": "Ambrosi_Gustinus_1893_1975.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1439170}}, {"model": "metainfo.source", "pk": 18051, "fields": {"orig_filename": "Ambros_August-Wilhelm_1816_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 17f.", "author": "", "orig_id": 1417782}}, {"model": "metainfo.source", "pk": 18052, "fields": {"orig_filename": "Ambros_Josef_1845_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417783}}, {"model": "metainfo.source", "pk": 18053, "fields": {"orig_filename": "Ambrozy-Migazzi_Istvan_1869_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1824042}}, {"model": "metainfo.source", "pk": 18054, "fields": {"orig_filename": "Ambschell_Anton_1751_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417784}}, {"model": "metainfo.source", "pk": 18055, "fields": {"orig_filename": "Amerling_Friedrich_1803_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417785}}, {"model": "metainfo.source", "pk": 18056, "fields": {"orig_filename": "Amerling_Karel-Slavoj_1807_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417786}}, {"model": "metainfo.source", "pk": 18057, "fields": {"orig_filename": "Ameseder_Eduard_1856_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417787}}, {"model": "metainfo.source", "pk": 18058, "fields": {"orig_filename": "Ammann_Hartmann_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18", "author": "", "orig_id": 1417788}}, {"model": "metainfo.source", "pk": 18059, "fields": {"orig_filename": "Amonn_Marius_1879_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417791}}, {"model": "metainfo.source", "pk": 18060, "fields": {"orig_filename": "Amon_Anton_1862_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 18f.", "author": "", "orig_id": 1417789}}, {"model": "metainfo.source", "pk": 18061, "fields": {"orig_filename": "Amon_Johann-Franz_1754_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417790}}, {"model": "metainfo.source", "pk": 18062, "fields": {"orig_filename": "Ampferer_Otto_1875_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417792}}, {"model": "metainfo.source", "pk": 18063, "fields": {"orig_filename": "Amrus_Milan_1848_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417793}}, {"model": "metainfo.source", "pk": 18064, "fields": {"orig_filename": "Amschl_Sepp_1878_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417794}}, {"model": "metainfo.source", "pk": 18065, "fields": {"orig_filename": "Amster_Moritz_1831_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417795}}, {"model": "metainfo.source", "pk": 18066, "fields": {"orig_filename": "An-Der-Lan-Hochbrunn_Hartmann_1863_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417799}}, {"model": "metainfo.source", "pk": 18067, "fields": {"orig_filename": "Anczyc_Siegmund_1793_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417796}}, {"model": "metainfo.source", "pk": 18068, "fields": {"orig_filename": "Anczyc_Wladislaw-Ludwig_1823_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 19", "author": "", "orig_id": 1417797}}, {"model": "metainfo.source", "pk": 18069, "fields": {"orig_filename": "Anderle_Alois_1821_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417867}}, {"model": "metainfo.source", "pk": 18070, "fields": {"orig_filename": "Anderle_Josef_1881_1959.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 2025324}}, {"model": "metainfo.source", "pk": 18071, "fields": {"orig_filename": "Anderloni_Pietro_1785_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417868}}, {"model": "metainfo.source", "pk": 18072, "fields": {"orig_filename": "Andersag_Michael_1799_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417870}}, {"model": "metainfo.source", "pk": 18073, "fields": {"orig_filename": "Anders_Josef_1851_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20", "author": "", "orig_id": 1417869}}, {"model": "metainfo.source", "pk": 18074, "fields": {"orig_filename": "Andics_Hellmut_1922_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1420663}}, {"model": "metainfo.source", "pk": 18075, "fields": {"orig_filename": "Andrassy_Julius_1823_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 20f.", "author": "", "orig_id": 1417871}}, {"model": "metainfo.source", "pk": 18076, "fields": {"orig_filename": "Andrassy_Julius_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417872}}, {"model": "metainfo.source", "pk": 18077, "fields": {"orig_filename": "Andreas_Michael_1762_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417874}}, {"model": "metainfo.source", "pk": 18078, "fields": {"orig_filename": "Andree-Eysn_Marie_1847_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 278", "author": "", "orig_id": 1421999}}, {"model": "metainfo.source", "pk": 18079, "fields": {"orig_filename": "Andres_Leopold_1866_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417876}}, {"model": "metainfo.source", "pk": 18080, "fields": {"orig_filename": "Andre_Emil_1790_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21", "author": "", "orig_id": 1417873}}, {"model": "metainfo.source", "pk": 18081, "fields": {"orig_filename": "Andrian-Werburg_Ferdinand_1835_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 21f.", "author": "", "orig_id": 1417877}}, {"model": "metainfo.source", "pk": 18082, "fields": {"orig_filename": "Andrian-Werburg_Leopold_1875_1951.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1426151}}, {"model": "metainfo.source", "pk": 18083, "fields": {"orig_filename": "Andrian-Werburg_Viktor_1813_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417878}}, {"model": "metainfo.source", "pk": 18084, "fields": {"orig_filename": "Andrlik_Karl_1861_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417879}}, {"model": "metainfo.source", "pk": 18085, "fields": {"orig_filename": "Anelli_Angelo_1761_1820.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417880}}, {"model": "metainfo.source", "pk": 18086, "fields": {"orig_filename": "Angel-Katan_Anny_1898_1992.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1451379}}, {"model": "metainfo.source", "pk": 18087, "fields": {"orig_filename": "Angeler_Josef_1818_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417881}}, {"model": "metainfo.source", "pk": 18088, "fields": {"orig_filename": "Angeli_Heinrich_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22", "author": "", "orig_id": 1417882}}, {"model": "metainfo.source", "pk": 18089, "fields": {"orig_filename": "Angeli_Moriz_1829_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 22f.", "author": "", "orig_id": 1417883}}, {"model": "metainfo.source", "pk": 18090, "fields": {"orig_filename": "Angerer_Eduard_1816_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1419864}}, {"model": "metainfo.source", "pk": 18091, "fields": {"orig_filename": "Angerer_Hans_1871_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417884}}, {"model": "metainfo.source", "pk": 18092, "fields": {"orig_filename": "Angerer_Karl_1838_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417885}}, {"model": "metainfo.source", "pk": 18093, "fields": {"orig_filename": "Angerer_Ludwig_1827_1879.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1461160}}, {"model": "metainfo.source", "pk": 18094, "fields": {"orig_filename": "Angerer_Victor_1839_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1909856}}, {"model": "metainfo.source", "pk": 18095, "fields": {"orig_filename": "Angjelovic_Albert_1820_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417886}}, {"model": "metainfo.source", "pk": 18096, "fields": {"orig_filename": "Angyal_David_1857_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23", "author": "", "orig_id": 1417956}}, {"model": "metainfo.source", "pk": 18097, "fields": {"orig_filename": "Ankershofen_Gottlieb_1795_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 23f.", "author": "", "orig_id": 1417958}}, {"model": "metainfo.source", "pk": 18098, "fields": {"orig_filename": "Anker_Mathias-Josef_1771_1843.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417957}}, {"model": "metainfo.source", "pk": 18099, "fields": {"orig_filename": "Ankwicz_Andreas-Ludwig_1777_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417959}}, {"model": "metainfo.source", "pk": 18100, "fields": {"orig_filename": "Anrather_Karl_1861_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417960}}, {"model": "metainfo.source", "pk": 18101, "fields": {"orig_filename": "Anreiter_Alois_1803_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417961}}, {"model": "metainfo.source", "pk": 18102, "fields": {"orig_filename": "Anschuetz_Auguste_1819_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417962}}, {"model": "metainfo.source", "pk": 18103, "fields": {"orig_filename": "Anschuetz_Eduard_1797_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417963}}, {"model": "metainfo.source", "pk": 18104, "fields": {"orig_filename": "Anschuetz_Heinrich_1785_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417964}}, {"model": "metainfo.source", "pk": 18105, "fields": {"orig_filename": "Anthofer_Karl_1820_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417965}}, {"model": "metainfo.source", "pk": 18106, "fields": {"orig_filename": "Anthony-Siegenfeld_Alfred_1854_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417966}}, {"model": "metainfo.source", "pk": 18107, "fields": {"orig_filename": "Antoine_Franz-De-Paula_1768_1834.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 24", "author": "", "orig_id": 1417967}}, {"model": "metainfo.source", "pk": 18108, "fields": {"orig_filename": "Antoine_Franz-De-Paula_1815_1886.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1823997}}, {"model": "metainfo.source", "pk": 18109, "fields": {"orig_filename": "Antoncic_Anton_1864_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 25", "author": "", "orig_id": 1417971}}, {"model": "metainfo.source", "pk": 18110, "fields": {"orig_filename": "Abeles_Armin_1872_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2103840}}, {"model": "metainfo.source", "pk": 18111, "fields": {"orig_filename": "Abeles_Otto_1879_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1441402}}, {"model": "metainfo.source", "pk": 18112, "fields": {"orig_filename": "Abel_Franz_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1419807}}, {"model": "metainfo.source", "pk": 18113, "fields": {"orig_filename": "Abel_Friedrich_1844_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193586}}, {"model": "metainfo.source", "pk": 18114, "fields": {"orig_filename": "Abel_Heinrich_1843_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417764}}, {"model": "metainfo.source", "pk": 18115, "fields": {"orig_filename": "Abel_Josef_1764_1818.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417765}}, {"model": "metainfo.source", "pk": 18116, "fields": {"orig_filename": "Abel_Lothar_1841_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417766}}, {"model": "metainfo.source", "pk": 18117, "fields": {"orig_filename": "Abel_Ludwig_1811_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1993664}}, {"model": "metainfo.source", "pk": 18118, "fields": {"orig_filename": "Abel_Othenio_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 1", "author": "", "orig_id": 1417767}}, {"model": "metainfo.source", "pk": 18119, "fields": {"orig_filename": "Abel_Rudolf_1831_1882.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2193591}}, {"model": "metainfo.source", "pk": 18120, "fields": {"orig_filename": "Abendroth_Irene_1872_1932.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417768}}, {"model": "metainfo.source", "pk": 18121, "fields": {"orig_filename": "Abensperg-Traun_Hugo_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417769}}, {"model": "metainfo.source", "pk": 18122, "fields": {"orig_filename": "Abensperg-Traun_Otto-Ehrenreich_1848_1899.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431726}}, {"model": "metainfo.source", "pk": 18123, "fields": {"orig_filename": "Aberle_Karl_1818_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417770}}, {"model": "metainfo.source", "pk": 18124, "fields": {"orig_filename": "Aberle_Matthias_1784_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417771}}, {"model": "metainfo.source", "pk": 18125, "fields": {"orig_filename": "Abertolli_Ferdinand_1781_1844.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417773}}, {"model": "metainfo.source", "pk": 18126, "fields": {"orig_filename": "Abert_Josef_1832_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2", "author": "", "orig_id": 1417772}}, {"model": "metainfo.source", "pk": 18127, "fields": {"orig_filename": "Abrahamowicz_David_1839_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417775}}, {"model": "metainfo.source", "pk": 18128, "fields": {"orig_filename": "Abraham_Wladislaw_1860_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 2f.", "author": "", "orig_id": 1417774}}, {"model": "metainfo.source", "pk": 18129, "fields": {"orig_filename": "Abramovicz-Adelburg_Eduard_1804_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417777}}, {"model": "metainfo.source", "pk": 18130, "fields": {"orig_filename": "Abramovicz_Bronislaw_1837_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417776}}, {"model": "metainfo.source", "pk": 18131, "fields": {"orig_filename": "Abranyi_Emil_1851_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417778}}, {"model": "metainfo.source", "pk": 18132, "fields": {"orig_filename": "Abranyi_Kornel_1822_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417779}}, {"model": "metainfo.source", "pk": 18133, "fields": {"orig_filename": "Abranyi_Kornel_1849_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417847}}, {"model": "metainfo.source", "pk": 18134, "fields": {"orig_filename": "Absenger_Anton_1820_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417848}}, {"model": "metainfo.source", "pk": 18135, "fields": {"orig_filename": "Absolon_Karel_1877_1960.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438583}}, {"model": "metainfo.source", "pk": 18136, "fields": {"orig_filename": "Abt_Anton_1828_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417849}}, {"model": "metainfo.source", "pk": 18137, "fields": {"orig_filename": "Acerbi_Enrico_1785_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417850}}, {"model": "metainfo.source", "pk": 18138, "fields": {"orig_filename": "Acerbi_Giuseppe_1773_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3", "author": "", "orig_id": 1417851}}, {"model": "metainfo.source", "pk": 18139, "fields": {"orig_filename": "Achazel_Matthias_1779_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 3f.", "author": "", "orig_id": 1417852}}, {"model": "metainfo.source", "pk": 18140, "fields": {"orig_filename": "Achleuthner_Leonhard_1826_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417853}}, {"model": "metainfo.source", "pk": 18141, "fields": {"orig_filename": "Ackerl_Johann_1851_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431400}}, {"model": "metainfo.source", "pk": 18142, "fields": {"orig_filename": "Ackermann_Leopold_1771_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417854}}, {"model": "metainfo.source", "pk": 18143, "fields": {"orig_filename": "Ackner_Johann-Michael_1782_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417855}}, {"model": "metainfo.source", "pk": 18144, "fields": {"orig_filename": "Adamberger_Antonie_1790_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417858}}, {"model": "metainfo.source", "pk": 18145, "fields": {"orig_filename": "Adamczik_Josef_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417859}}, {"model": "metainfo.source", "pk": 18146, "fields": {"orig_filename": "Adamek_Bohumil_1848_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417860}}, {"model": "metainfo.source", "pk": 18147, "fields": {"orig_filename": "Adamek_Karel-Vaclav_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2147988}}, {"model": "metainfo.source", "pk": 18148, "fields": {"orig_filename": "Adamek_Karel_1840_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417863}}, {"model": "metainfo.source", "pk": 18149, "fields": {"orig_filename": "Adametz_Karoline_1879_1966.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1451307}}, {"model": "metainfo.source", "pk": 18150, "fields": {"orig_filename": "Adametz_Leopold_1861_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417861}}, {"model": "metainfo.source", "pk": 18151, "fields": {"orig_filename": "Adamic_Emil_1877_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417862}}, {"model": "metainfo.source", "pk": 18152, "fields": {"orig_filename": "Adamkiewicz_Albert_1850_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417864}}, {"model": "metainfo.source", "pk": 18153, "fields": {"orig_filename": "Adamovic_Lujo_1864_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 5", "author": "", "orig_id": 1417865}}, {"model": "metainfo.source", "pk": 18154, "fields": {"orig_filename": "Adams_John-Quincy_1873_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417866}}, {"model": "metainfo.source", "pk": 18155, "fields": {"orig_filename": "Adam_Heinrich_1839_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417856}}, {"model": "metainfo.source", "pk": 18156, "fields": {"orig_filename": "Adam_Karl_1876_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1431473}}, {"model": "metainfo.source", "pk": 18157, "fields": {"orig_filename": "Adam_Walter_1886_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 4", "author": "", "orig_id": 1417857}}, {"model": "metainfo.source", "pk": 18158, "fields": {"orig_filename": "Adelburg_August_1830_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417936}}, {"model": "metainfo.source", "pk": 18159, "fields": {"orig_filename": "Adler_Alfred_1870_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417937}}, {"model": "metainfo.source", "pk": 18160, "fields": {"orig_filename": "Adler_Emanuel_1873_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417938}}, {"model": "metainfo.source", "pk": 18161, "fields": {"orig_filename": "Adler_Emma_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431442}}, {"model": "metainfo.source", "pk": 18162, "fields": {"orig_filename": "Adler_Eugen_1862_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417939}}, {"model": "metainfo.source", "pk": 18163, "fields": {"orig_filename": "Adler_Felix_1876_1927.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1431187}}, {"model": "metainfo.source", "pk": 18164, "fields": {"orig_filename": "Adler_Friedrich_1857_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6", "author": "", "orig_id": 1417940}}, {"model": "metainfo.source", "pk": 18165, "fields": {"orig_filename": "Adler_Guido_1855_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 6f.", "author": "", "orig_id": 1417941}}, {"model": "metainfo.source", "pk": 18166, "fields": {"orig_filename": "Adler_Karl_1865_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417942}}, {"model": "metainfo.source", "pk": 18167, "fields": {"orig_filename": "Adler_Max_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417943}}, {"model": "metainfo.source", "pk": 18168, "fields": {"orig_filename": "Adler_Sigmund_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7", "author": "", "orig_id": 1417944}}, {"model": "metainfo.source", "pk": 18169, "fields": {"orig_filename": "Adler_Viktor_1852_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 7f.", "author": "", "orig_id": 1417945}}, {"model": "metainfo.source", "pk": 18170, "fields": {"orig_filename": "Adler_Vinzenz_1826_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417946}}, {"model": "metainfo.source", "pk": 18171, "fields": {"orig_filename": "Adlmueller_Fred_1909_1989.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438762}}, {"model": "metainfo.source", "pk": 18172, "fields": {"orig_filename": "Adolf_Helen_1895_1998.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 1 (01.03.2011)", "author": "", "orig_id": 1431418}}, {"model": "metainfo.source", "pk": 18173, "fields": {"orig_filename": "Adolph_Karl_1869_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417947}}, {"model": "metainfo.source", "pk": 18174, "fields": {"orig_filename": "Adrian-Dussek_Eduard_1871_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417949}}, {"model": "metainfo.source", "pk": 18175, "fields": {"orig_filename": "Adrian_Karl_1861_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417948}}, {"model": "metainfo.source", "pk": 18176, "fields": {"orig_filename": "Adrowitzer_Alfred_1916_1982.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 1438806}}, {"model": "metainfo.source", "pk": 18177, "fields": {"orig_filename": "Ady_Andreas_1877_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8", "author": "", "orig_id": 1417950}}, {"model": "metainfo.source", "pk": 18178, "fields": {"orig_filename": "Aehrenthal_Aloys_1854_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 8f.", "author": "", "orig_id": 1417951}}, {"model": "metainfo.source", "pk": 18179, "fields": {"orig_filename": "Aelschker_Edmund_1841_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417952}}, {"model": "metainfo.source", "pk": 18180, "fields": {"orig_filename": "Afritsch_Anton_1873_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417953}}, {"model": "metainfo.source", "pk": 18181, "fields": {"orig_filename": "Aglietti_Francesco_1757_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417954}}, {"model": "metainfo.source", "pk": 18182, "fields": {"orig_filename": "Aglio_Agostino_1777_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1417955}}, {"model": "metainfo.source", "pk": 18183, "fields": {"orig_filename": "Agnoletto_Angelo_1743_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418029}}, {"model": "metainfo.source", "pk": 18184, "fields": {"orig_filename": "Agricola_Karl_1779_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418030}}, {"model": "metainfo.source", "pk": 18185, "fields": {"orig_filename": "Ahna_Eleonore_1838_1865.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418031}}, {"model": "metainfo.source", "pk": 18186, "fields": {"orig_filename": "Ahna_Heinrich_1832_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418032}}, {"model": "metainfo.source", "pk": 18187, "fields": {"orig_filename": "Ahrer_Jacob_1888_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1447275}}, {"model": "metainfo.source", "pk": 18188, "fields": {"orig_filename": "Aichelberg_Ludwig_1865_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 9", "author": "", "orig_id": 1418033}}, {"model": "metainfo.source", "pk": 18189, "fields": {"orig_filename": "Aichelburg-Labia_Leopold_1853_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418035}}, {"model": "metainfo.source", "pk": 18190, "fields": {"orig_filename": "Aichelburg_Eugen_1862_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418034}}, {"model": "metainfo.source", "pk": 18191, "fields": {"orig_filename": "Aichen_Josef_1745_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418036}}, {"model": "metainfo.source", "pk": 18192, "fields": {"orig_filename": "Aicher_Anton_1859_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418037}}, {"model": "metainfo.source", "pk": 18193, "fields": {"orig_filename": "Aichhorn_Sigmund_1814_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 2254324}}, {"model": "metainfo.source", "pk": 18194, "fields": {"orig_filename": "Aichinger_Hermann_1885_1962.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438873}}, {"model": "metainfo.source", "pk": 18195, "fields": {"orig_filename": "Aichinger_Hermann_1917_1965.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 1, 2011)", "author": "", "orig_id": 1438876}}, {"model": "metainfo.source", "pk": 18196, "fields": {"orig_filename": "Aichinger_Johann-Ev_1805_1864.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418038}}, {"model": "metainfo.source", "pk": 18197, "fields": {"orig_filename": "Aichner_Simon_1818_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10", "author": "", "orig_id": 1418039}}, {"model": "metainfo.source", "pk": 18198, "fields": {"orig_filename": "Aigner_Franz_1882_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 10f.", "author": "", "orig_id": 1418040}}, {"model": "metainfo.source", "pk": 18199, "fields": {"orig_filename": "Aigner_Josef-Matthias_1818_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418041}}, {"model": "metainfo.source", "pk": 18200, "fields": {"orig_filename": "Aigner_Michael_1805_1861.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418042}}, {"model": "metainfo.source", "pk": 18201, "fields": {"orig_filename": "Ainhauser_Maria-Alberta-Eugenia_1812_1856.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 3, 2014)", "author": "", "orig_id": 1469933}}, {"model": "metainfo.source", "pk": 18202, "fields": {"orig_filename": "Ainmiller_Heinrich_1837_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418043}}, {"model": "metainfo.source", "pk": 18203, "fields": {"orig_filename": "Ajdukiewicz_Siegmund_1861_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418044}}, {"model": "metainfo.source", "pk": 18204, "fields": {"orig_filename": "Ajdukiewicz_Thaddaeus_1852_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418045}}, {"model": "metainfo.source", "pk": 18205, "fields": {"orig_filename": "Albach_Joseph-Stanislaus_1795_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418046}}, {"model": "metainfo.source", "pk": 18206, "fields": {"orig_filename": "Albach_Julius_1840_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11", "author": "", "orig_id": 1418047}}, {"model": "metainfo.source", "pk": 18207, "fields": {"orig_filename": "Alber-Glanstaetten_August_1825_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 11f.", "author": "", "orig_id": 1418048}}, {"model": "metainfo.source", "pk": 18208, "fields": {"orig_filename": "Albertolli_Giocondo_1742_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418128}}, {"model": "metainfo.source", "pk": 18209, "fields": {"orig_filename": "Albert_August_1854_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418049}}, {"model": "metainfo.source", "pk": 18210, "fields": {"orig_filename": "Albert_Eduard_1841_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418050}}, {"model": "metainfo.source", "pk": 18211, "fields": {"orig_filename": "Albert_Michael_1836_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 12", "author": "", "orig_id": 1418051}}, {"model": "metainfo.source", "pk": 18212, "fields": {"orig_filename": "Albieri_Pavel_1861_1901.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Bd. (Lfg. 2, 2013)", "author": "", "orig_id": 2147985}}, {"model": "metainfo.source", "pk": 18213, "fields": {"orig_filename": "Tschermak-Seysenegg_Gustav_1836_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 484f.", "author": "", "orig_id": 1425768}}, {"model": "metainfo.source", "pk": 18214, "fields": {"orig_filename": "Tschernich_Franz-Rudolf_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 485f.", "author": "", "orig_id": 1868111}}, {"model": "metainfo.source", "pk": 18215, "fields": {"orig_filename": "Tschiderer-Gleifheim_Ernst_1830_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 486f.", "author": "", "orig_id": 1425806}}, {"model": "metainfo.source", "pk": 18216, "fields": {"orig_filename": "Tschiderer-Gleifheim_Johann-Nepomuk_1777_1860.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 486f.", "author": "", "orig_id": 1425807}}, {"model": "metainfo.source", "pk": 18217, "fields": {"orig_filename": "Tschinkel_Anton_1811_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 487", "author": "", "orig_id": 1449391}}, {"model": "metainfo.source", "pk": 18218, "fields": {"orig_filename": "Tschinkel_August_1772_1833.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 487f.", "author": "", "orig_id": 1449390}}, {"model": "metainfo.source", "pk": 18219, "fields": {"orig_filename": "Tschinkel_Emanuel_1814_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488", "author": "", "orig_id": 1425811}}, {"model": "metainfo.source", "pk": 18220, "fields": {"orig_filename": "Tschinkel_Hans_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488f.", "author": "", "orig_id": 1445281}}, {"model": "metainfo.source", "pk": 18221, "fields": {"orig_filename": "Tschinkel_Theodor_1844_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 488", "author": "", "orig_id": 2298522}}, {"model": "metainfo.source", "pk": 18222, "fields": {"orig_filename": "Tschinkel_Wilhelm_1875_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 489", "author": "", "orig_id": 2292498}}, {"model": "metainfo.source", "pk": 18223, "fields": {"orig_filename": "Tschoell_Johann-Valentin_1749_1832.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 489f.", "author": "", "orig_id": 1425813}}, {"model": "metainfo.source", "pk": 18224, "fields": {"orig_filename": "Tschoepe_Emanuel_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 490f.", "author": "", "orig_id": 1425814}}, {"model": "metainfo.source", "pk": 18225, "fields": {"orig_filename": "Tschofenig_Gisela_1917_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 491", "author": "", "orig_id": 1425818}}, {"model": "metainfo.source", "pk": 18226, "fields": {"orig_filename": "Tschudi_Hugo_1851_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 491f.", "author": "", "orig_id": 1425855}}, {"model": "metainfo.source", "pk": 18227, "fields": {"orig_filename": "Tschudi_Johann-Jakob_1818_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 492f.", "author": "", "orig_id": 1425858}}, {"model": "metainfo.source", "pk": 18228, "fields": {"orig_filename": "Tschuggmall_Christian-Josef_1785_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 493f.", "author": "", "orig_id": 1425860}}, {"model": "metainfo.source", "pk": 18229, "fields": {"orig_filename": "Tschulik_Emanuel-Louis_1819_1847.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 493f.", "author": "", "orig_id": 1425863}}, {"model": "metainfo.source", "pk": 18230, "fields": {"orig_filename": "Tschuppik_Friedrich_1816_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 494f.", "author": "", "orig_id": 2294062}}, {"model": "metainfo.source", "pk": 18231, "fields": {"orig_filename": "Tschuppik_Karl_1876_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 495f.", "author": "", "orig_id": 1425864}}, {"model": "metainfo.source", "pk": 18232, "fields": {"orig_filename": "Tschurtschenthaler-Helmheim_Anton-Alois_1815_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 497", "author": "", "orig_id": 1425909}}, {"model": "metainfo.source", "pk": 18233, "fields": {"orig_filename": "Tschurtschenthaler-Helmheim_Heinrich_1858_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 497f.", "author": "", "orig_id": 2264192}}, {"model": "metainfo.source", "pk": 18234, "fields": {"orig_filename": "Tschurtschenthaler_Johann_1828_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 496", "author": "", "orig_id": 1425910}}, {"model": "metainfo.source", "pk": 18235, "fields": {"orig_filename": "Tschurtschenthaler_Paul_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 496f.", "author": "", "orig_id": 1425913}}, {"model": "metainfo.source", "pk": 18236, "fields": {"orig_filename": "Tschusi-Schmidhoffen_Viktor_1847_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 498f.", "author": "", "orig_id": 1425916}}, {"model": "metainfo.source", "pk": 18237, "fields": {"orig_filename": "Tucek_Vincenc_1773_1821.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 499", "author": "", "orig_id": 1425953}}, {"model": "metainfo.source", "pk": 18238, "fields": {"orig_filename": "Tucny_Alois_1881_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 499f.", "author": "", "orig_id": 2206927}}, {"model": "metainfo.source", "pk": 18239, "fields": {"orig_filename": "Tuczek_Anton_1824_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 500", "author": "", "orig_id": 1455589}}, {"model": "metainfo.source", "pk": 18240, "fields": {"orig_filename": "Tuedoes_Istvan_1866_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 500f.", "author": "", "orig_id": 1458424}}, {"model": "metainfo.source", "pk": 18241, "fields": {"orig_filename": "Tuerckheim-Altdorf_Friedrich-Rudolf_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 501f.", "author": "", "orig_id": 2264216}}, {"model": "metainfo.source", "pk": 18242, "fields": {"orig_filename": "Tuerck_Ludwig_1810_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 501", "author": "", "orig_id": 1425957}}, {"model": "metainfo.source", "pk": 18243, "fields": {"orig_filename": "Tuerkel_Siegfried-Karl_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 504f.", "author": "", "orig_id": 1425475}}, {"model": "metainfo.source", "pk": 18244, "fields": {"orig_filename": "Tuerkheim-Geisslern_Ludwig-Johann-Nepomuk_1817_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 505f.", "author": "", "orig_id": 1455594}}, {"model": "metainfo.source", "pk": 18245, "fields": {"orig_filename": "Tuerkheim_Ludwig_1777_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 505f.", "author": "", "orig_id": 1425994}}, {"model": "metainfo.source", "pk": 18246, "fields": {"orig_filename": "Tuerk_Eduard_1852_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 402", "author": "", "orig_id": 1425962}}, {"model": "metainfo.source", "pk": 18247, "fields": {"orig_filename": "Tuerk_Johann-Baptist_1775_1841.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 502f.", "author": "", "orig_id": 1425987}}, {"model": "metainfo.source", "pk": 18248, "fields": {"orig_filename": "Tuerk_Karl_1840_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 504", "author": "", "orig_id": 1425989}}, {"model": "metainfo.source", "pk": 18249, "fields": {"orig_filename": "Tuerk_Wilhelm_1871_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 503f.", "author": "", "orig_id": 1425992}}, {"model": "metainfo.source", "pk": 18250, "fields": {"orig_filename": "Tuerr_Istvan_1825_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 506", "author": "", "orig_id": 1429094}}, {"model": "metainfo.source", "pk": 18251, "fields": {"orig_filename": "Tuka_Vojtech_1880_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 506f.", "author": "", "orig_id": 1425998}}, {"model": "metainfo.source", "pk": 18252, "fields": {"orig_filename": "Tulka_Josef_1846_1882.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 507f.", "author": "", "orig_id": 2167733}}, {"model": "metainfo.source", "pk": 18253, "fields": {"orig_filename": "Tullinger_Bertha_1861_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509", "author": "", "orig_id": 2293250}}, {"model": "metainfo.source", "pk": 18254, "fields": {"orig_filename": "Tullinger_Moritz_1866_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509", "author": "", "orig_id": 2269989}}, {"model": "metainfo.source", "pk": 18255, "fields": {"orig_filename": "Tullinger_Paula_1858_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 508f.", "author": "", "orig_id": 1450315}}, {"model": "metainfo.source", "pk": 18256, "fields": {"orig_filename": "Tull_Oedoen_1870_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 508", "author": "", "orig_id": 1425999}}, {"model": "metainfo.source", "pk": 18257, "fields": {"orig_filename": "Tuma_Henrik_1858_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 509f.", "author": "", "orig_id": 1426003}}, {"model": "metainfo.source", "pk": 18258, "fields": {"orig_filename": "Tuma_Josef_1866_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 510f.", "author": "", "orig_id": 1426027}}, {"model": "metainfo.source", "pk": 18259, "fields": {"orig_filename": "Tuma_Karel_1843_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 511f.", "author": "", "orig_id": 1426028}}, {"model": "metainfo.source", "pk": 18260, "fields": {"orig_filename": "Tumova_Marie_1866_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 512", "author": "", "orig_id": 2293165}}, {"model": "metainfo.source", "pk": 18261, "fields": {"orig_filename": "Trapp_Werner_1773_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 426f.", "author": "", "orig_id": 1456014}}, {"model": "metainfo.source", "pk": 18262, "fields": {"orig_filename": "Trassler_Adolph-Karl_1793_1859.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1456087}}, {"model": "metainfo.source", "pk": 18263, "fields": {"orig_filename": "Trassler_Johann-Baptist_1787_1845.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1426130}}, {"model": "metainfo.source", "pk": 18264, "fields": {"orig_filename": "Trassler_Joseph-Georg_1759_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 427f.", "author": "", "orig_id": 1426131}}, {"model": "metainfo.source", "pk": 18265, "fields": {"orig_filename": "Trattinnick_Carl_1801_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 428f.", "author": "", "orig_id": 1456090}}, {"model": "metainfo.source", "pk": 18266, "fields": {"orig_filename": "Trattinnick_Leopold_1764_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 428f.", "author": "", "orig_id": 1426136}}, {"model": "metainfo.source", "pk": 18267, "fields": {"orig_filename": "Trattner-Karolyi-Karolypaty-Vasvar_Istvan_1794_1863.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 2200824}}, {"model": "metainfo.source", "pk": 18268, "fields": {"orig_filename": "Trattner-Petroza_Janos-Tamas_1789_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 1458430}}, {"model": "metainfo.source", "pk": 18269, "fields": {"orig_filename": "Trattner-Petroza_Matyas_1745_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429", "author": "", "orig_id": 2200701}}, {"model": "metainfo.source", "pk": 18270, "fields": {"orig_filename": "Traub_Hugo_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 431", "author": "", "orig_id": 2206758}}, {"model": "metainfo.source", "pk": 18271, "fields": {"orig_filename": "Traunfellner_Alois_1782_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 431f.", "author": "", "orig_id": 1425576}}, {"model": "metainfo.source", "pk": 18272, "fields": {"orig_filename": "Traunsteiner_Joseph_1798_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 432f.", "author": "", "orig_id": 1447654}}, {"model": "metainfo.source", "pk": 18273, "fields": {"orig_filename": "Trausch_Joseph-Karl_1842_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433", "author": "", "orig_id": 2201126}}, {"model": "metainfo.source", "pk": 18274, "fields": {"orig_filename": "Trausch_Joseph_1795_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433", "author": "", "orig_id": 1425612}}, {"model": "metainfo.source", "pk": 18275, "fields": {"orig_filename": "Trautenberger_Gustav-Gottlieb_1836_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 434f.", "author": "", "orig_id": 1425619}}, {"model": "metainfo.source", "pk": 18276, "fields": {"orig_filename": "Trautmann_Leopold_1766_1825.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 435", "author": "", "orig_id": 1425661}}, {"model": "metainfo.source", "pk": 18277, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Ferdinand_1749_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 435f.", "author": "", "orig_id": 1425669}}, {"model": "metainfo.source", "pk": 18278, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Ferdinand_1825_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 436f.", "author": "", "orig_id": 1425667}}, {"model": "metainfo.source", "pk": 18279, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Josef_1894_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 437f.", "author": "", "orig_id": 1456083}}, {"model": "metainfo.source", "pk": 18280, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Joseph-Ferdinand_1788_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 437", "author": "", "orig_id": 1425705}}, {"model": "metainfo.source", "pk": 18281, "fields": {"orig_filename": "Trauttmansdorff-Weinsberg_Maria-Thaddaeus_1761_1819.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 438", "author": "", "orig_id": 1425708}}, {"model": "metainfo.source", "pk": 18282, "fields": {"orig_filename": "Traut_Karl_1874_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 433f.", "author": "", "orig_id": 1425618}}, {"model": "metainfo.source", "pk": 18283, "fields": {"orig_filename": "Trauzl_Isidor_1840_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 438f.", "author": "", "orig_id": 1425712}}, {"model": "metainfo.source", "pk": 18284, "fields": {"orig_filename": "Trau_Carl_1811_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 429f.", "author": "", "orig_id": 1425482}}, {"model": "metainfo.source", "pk": 18285, "fields": {"orig_filename": "Trau_Franz_1842_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 430", "author": "", "orig_id": 1425481}}, {"model": "metainfo.source", "pk": 18286, "fields": {"orig_filename": "Trau_Franz_1881_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 430f.", "author": "", "orig_id": 1453314}}, {"model": "metainfo.source", "pk": 18287, "fields": {"orig_filename": "Trcka_Anton-Josef_1893_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 439f.", "author": "", "orig_id": 1425749}}, {"model": "metainfo.source", "pk": 18288, "fields": {"orig_filename": "Trebitsch-Lincoln_Ignatius-Timothy_1879_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 442f.", "author": "", "orig_id": 1425791}}, {"model": "metainfo.source", "pk": 18289, "fields": {"orig_filename": "Trebitsch_Arthur_1880_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1425752}}, {"model": "metainfo.source", "pk": 18290, "fields": {"orig_filename": "Trebitsch_Leopold_1842_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1414302}}, {"model": "metainfo.source", "pk": 18291, "fields": {"orig_filename": "Trebitsch_Nehemias_1779_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441", "author": "", "orig_id": 1425753}}, {"model": "metainfo.source", "pk": 18292, "fields": {"orig_filename": "Trebitsch_Oscar_1877_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 440f.", "author": "", "orig_id": 1453718}}, {"model": "metainfo.source", "pk": 18293, "fields": {"orig_filename": "Trebitsch_Rudolf_1876_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441f.", "author": "", "orig_id": 1425755}}, {"model": "metainfo.source", "pk": 18294, "fields": {"orig_filename": "Trebitsch_Sigmund_1828_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 441", "author": "", "orig_id": 2286076}}, {"model": "metainfo.source", "pk": 18295, "fields": {"orig_filename": "Treffer_Georg_1847_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 443f.", "author": "", "orig_id": 1425795}}, {"model": "metainfo.source", "pk": 18296, "fields": {"orig_filename": "Trefort_Agoston_1817_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 444", "author": "", "orig_id": 1425880}}, {"model": "metainfo.source", "pk": 18297, "fields": {"orig_filename": "Treiber_Josef_1872_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 444f.", "author": "", "orig_id": 1426138}}, {"model": "metainfo.source", "pk": 18298, "fields": {"orig_filename": "Treitl_Josef_1804_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 445f.", "author": "", "orig_id": 1426146}}, {"model": "metainfo.source", "pk": 18299, "fields": {"orig_filename": "Treitschke_Georg-Friedrich_1776_1842.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 446f.", "author": "", "orig_id": 1426147}}, {"model": "metainfo.source", "pk": 18300, "fields": {"orig_filename": "Treitschke_Magdalena_1788_1816.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 447", "author": "", "orig_id": 1456216}}, {"model": "metainfo.source", "pk": 18301, "fields": {"orig_filename": "Treitz_Vaclav_1819_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 447f.", "author": "", "orig_id": 1447929}}, {"model": "metainfo.source", "pk": 18302, "fields": {"orig_filename": "Tremler_Karoline-Wilhelmine_1791_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 449", "author": "", "orig_id": 2279028}}, {"model": "metainfo.source", "pk": 18303, "fields": {"orig_filename": "Tremler_Wenzel_1779_1851.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 448f.", "author": "", "orig_id": 1425442}}, {"model": "metainfo.source", "pk": 18304, "fields": {"orig_filename": "Treml_Friedrich_1816_1852.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 448", "author": "", "orig_id": 1425440}}, {"model": "metainfo.source", "pk": 18305, "fields": {"orig_filename": "Tremmel_Ludwig_1875_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 449f.", "author": "", "orig_id": 1450307}}, {"model": "metainfo.source", "pk": 18306, "fields": {"orig_filename": "Trenkler_Anton-Gustav_1811_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 450", "author": "", "orig_id": 1425490}}, {"model": "metainfo.source", "pk": 18307, "fields": {"orig_filename": "Trenkwalder_Dominik_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 452f.", "author": "", "orig_id": 1425537}}, {"model": "metainfo.source", "pk": 18308, "fields": {"orig_filename": "Trenkwald_Hermann_1866_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 450f.", "author": "", "orig_id": 1425493}}, {"model": "metainfo.source", "pk": 18309, "fields": {"orig_filename": "Trenkwald_Josef-Mathias_1824_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 451f.", "author": "", "orig_id": 1425494}}, {"model": "metainfo.source", "pk": 18310, "fields": {"orig_filename": "Trentini_Albert_1878_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 453", "author": "", "orig_id": 1424334}}, {"model": "metainfo.source", "pk": 18311, "fields": {"orig_filename": "Trentsensky_Josef_1794_1839.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454", "author": "", "orig_id": 1448566}}, {"model": "metainfo.source", "pk": 18312, "fields": {"orig_filename": "Trentsensky_Mathias_1790_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454", "author": "", "orig_id": 1425582}}, {"model": "metainfo.source", "pk": 18313, "fields": {"orig_filename": "Treo_Dragotin_1863_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 454f.", "author": "", "orig_id": 2169212}}, {"model": "metainfo.source", "pk": 18314, "fields": {"orig_filename": "Treo_Wilhelm_1845_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 455", "author": "", "orig_id": 2169408}}, {"model": "metainfo.source", "pk": 18315, "fields": {"orig_filename": "Tresic-Pavicic_Ante_1867_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 455f.", "author": "", "orig_id": 2047431}}, {"model": "metainfo.source", "pk": 18316, "fields": {"orig_filename": "Treuinfels_Leo-Maria_1848_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 456f.", "author": "", "orig_id": 1425674}}, {"model": "metainfo.source", "pk": 18317, "fields": {"orig_filename": "Treumann_Karl_1823_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 457f.", "author": "", "orig_id": 1425676}}, {"model": "metainfo.source", "pk": 18318, "fields": {"orig_filename": "Treumann_Louis_1872_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 458f.", "author": "", "orig_id": 1425677}}, {"model": "metainfo.source", "pk": 18319, "fields": {"orig_filename": "Treusch-Buttlar-Brandenfels_Oskar_1857_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 459", "author": "", "orig_id": 1425678}}, {"model": "metainfo.source", "pk": 18320, "fields": {"orig_filename": "Treval_Emil_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 459f.", "author": "", "orig_id": 2174359}}, {"model": "metainfo.source", "pk": 18321, "fields": {"orig_filename": "Treves_Emilio_1834_1916.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 460f.", "author": "", "orig_id": 1456353}}, {"model": "metainfo.source", "pk": 18322, "fields": {"orig_filename": "Treves_Sabato-Graziadio_1780_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461", "author": "", "orig_id": 1456359}}, {"model": "metainfo.source", "pk": 18323, "fields": {"orig_filename": "Trevisanato_Giuseppe-Luigi_1801_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461", "author": "", "orig_id": 1425719}}, {"model": "metainfo.source", "pk": 18324, "fields": {"orig_filename": "Triebensee_Henriette_1819_1853.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 462f.", "author": "", "orig_id": 2298411}}, {"model": "metainfo.source", "pk": 18325, "fields": {"orig_filename": "Triebensee_Josef_1772_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 462f.", "author": "", "orig_id": 1456419}}, {"model": "metainfo.source", "pk": 18326, "fields": {"orig_filename": "Trieb_Siegfried-Karl_1899_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 461f.", "author": "", "orig_id": 1447848}}, {"model": "metainfo.source", "pk": 18327, "fields": {"orig_filename": "Trientl_Adolf_1817_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463", "author": "", "orig_id": 1425842}}, {"model": "metainfo.source", "pk": 18328, "fields": {"orig_filename": "Trientl_Tobias_1822_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463", "author": "", "orig_id": 1425843}}, {"model": "metainfo.source", "pk": 18329, "fields": {"orig_filename": "Triesnecker_Franz-De-Paula_1745_1817.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 463f.", "author": "", "orig_id": 1425848}}, {"model": "metainfo.source", "pk": 18330, "fields": {"orig_filename": "Triulzi_Anton_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 464f.", "author": "", "orig_id": 1456429}}, {"model": "metainfo.source", "pk": 18331, "fields": {"orig_filename": "Triulzi_Anton_1863_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 465", "author": "", "orig_id": 1425895}}, {"model": "metainfo.source", "pk": 18332, "fields": {"orig_filename": "Trnina_Milka_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 465f.", "author": "", "orig_id": 1434342}}, {"model": "metainfo.source", "pk": 18333, "fields": {"orig_filename": "Trnka-Laberon_Ottokar_1871_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 466f.", "author": "", "orig_id": 1425903}}, {"model": "metainfo.source", "pk": 18334, "fields": {"orig_filename": "Trnka_Frantisek-Dobromysl_1798_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 466", "author": "", "orig_id": 2174389}}, {"model": "metainfo.source", "pk": 18335, "fields": {"orig_filename": "Trnobransky_Vaclav-Vilem_1819_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 467", "author": "", "orig_id": 2174401}}, {"model": "metainfo.source", "pk": 18336, "fields": {"orig_filename": "Trojan-Bylanfeld_Frantisek-Bretislav_1816_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 468f.", "author": "", "orig_id": 1455400}}, {"model": "metainfo.source", "pk": 18337, "fields": {"orig_filename": "Trojan_Alois-Pravoslav_1815_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 467f.", "author": "", "orig_id": 1426057}}, {"model": "metainfo.source", "pk": 18338, "fields": {"orig_filename": "Troll-Borostyani_Irma_1847_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 469f.", "author": "", "orig_id": 1426062}}, {"model": "metainfo.source", "pk": 18339, "fields": {"orig_filename": "Trollmann-Lovcenberg_Ignaz_1860_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 470", "author": "", "orig_id": 1426097}}, {"model": "metainfo.source", "pk": 18340, "fields": {"orig_filename": "Tropp_Neumann_1873_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 470f.", "author": "", "orig_id": 2202201}}, {"model": "metainfo.source", "pk": 18341, "fields": {"orig_filename": "Tropsch_Rudolf_1870_.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 471f.", "author": "", "orig_id": 1426101}}, {"model": "metainfo.source", "pk": 18342, "fields": {"orig_filename": "Trops_Stjepan_1871_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 471", "author": "", "orig_id": 1448671}}, {"model": "metainfo.source", "pk": 18343, "fields": {"orig_filename": "Troskow_Rudolf_1833_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 472", "author": "", "orig_id": 1423808}}, {"model": "metainfo.source", "pk": 18344, "fields": {"orig_filename": "Trost_Johann_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 472f.", "author": "", "orig_id": 1426104}}, {"model": "metainfo.source", "pk": 18345, "fields": {"orig_filename": "Trotter_Camillo_1862_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 473", "author": "", "orig_id": 1426108}}, {"model": "metainfo.source", "pk": 18346, "fields": {"orig_filename": "Trstenjak_Anton_1853_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 473f.", "author": "", "orig_id": 1425452}}, {"model": "metainfo.source", "pk": 18347, "fields": {"orig_filename": "Trstenjak_Davorin_1817_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 474", "author": "", "orig_id": 1425453}}, {"model": "metainfo.source", "pk": 18348, "fields": {"orig_filename": "Trstenjak_Davorin_1848_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 474f.", "author": "", "orig_id": 2169524}}, {"model": "metainfo.source", "pk": 18349, "fields": {"orig_filename": "Trubetzkoy_Nikolaj-Sergeevic_1890_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 475f.", "author": "", "orig_id": 1425456}}, {"model": "metainfo.source", "pk": 18350, "fields": {"orig_filename": "Truchsess-Waldburg-Zeil_Maria-Walburga_1762_1828.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 476", "author": "", "orig_id": 1425458}}, {"model": "metainfo.source", "pk": 18351, "fields": {"orig_filename": "Truhlar_Antonin_1849_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 476f.", "author": "", "orig_id": 1425631}}, {"model": "metainfo.source", "pk": 18352, "fields": {"orig_filename": "Truhlar_Josef_1840_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 477f.", "author": "", "orig_id": 1425632}}, {"model": "metainfo.source", "pk": 18353, "fields": {"orig_filename": "Trumbic_Ante_1864_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 478", "author": "", "orig_id": 1425633}}, {"model": "metainfo.source", "pk": 18354, "fields": {"orig_filename": "Truxa_Celestina_1852_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 478f.", "author": "", "orig_id": 1425640}}, {"model": "metainfo.source", "pk": 18355, "fields": {"orig_filename": "Truxa_Hans-Maria_1851_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 479f.", "author": "", "orig_id": 1425641}}, {"model": "metainfo.source", "pk": 18356, "fields": {"orig_filename": "Trylovskyj_Kyrylo_1864_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 480", "author": "", "orig_id": 1425643}}, {"model": "metainfo.source", "pk": 18357, "fields": {"orig_filename": "Tschabuschnigg_Adolf-Ignatz_1809_1877.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 480f.", "author": "", "orig_id": 1425683}}, {"model": "metainfo.source", "pk": 18358, "fields": {"orig_filename": "Tschager_Josef_1778_1856.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 481f.", "author": "", "orig_id": 1425685}}, {"model": "metainfo.source", "pk": 18359, "fields": {"orig_filename": "Tschallener_Johann-Nikolaus_1783_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 482", "author": "", "orig_id": 1425687}}, {"model": "metainfo.source", "pk": 18360, "fields": {"orig_filename": "Tschampa_Franziska_1853_1927.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 482f.", "author": "", "orig_id": 1455528}}, {"model": "metainfo.source", "pk": 18361, "fields": {"orig_filename": "Tschapeck_Hippolyt_1825_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 483", "author": "", "orig_id": 1468335}}, {"model": "metainfo.source", "pk": 18362, "fields": {"orig_filename": "Tschebull_Anton_1839_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 483f.", "author": "", "orig_id": 1825316}}, {"model": "metainfo.source", "pk": 18363, "fields": {"orig_filename": "Toepper_Andreas_1786_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 369f.", "author": "", "orig_id": 1423699}}, {"model": "metainfo.source", "pk": 18364, "fields": {"orig_filename": "Toerley-Csantaver_Jozsef_1858_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 370", "author": "", "orig_id": 2195987}}, {"model": "metainfo.source", "pk": 18365, "fields": {"orig_filename": "Toeroek-Csaford-Jobbahaza_Janos_1809_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 372ff.", "author": "", "orig_id": 1423733}}, {"model": "metainfo.source", "pk": 18366, "fields": {"orig_filename": "Toeroek-Nemescso_Ignac_1795_1849.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 373", "author": "", "orig_id": 1456066}}, {"model": "metainfo.source", "pk": 18367, "fields": {"orig_filename": "Toeroek-Ponor_Aurel_1842_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 373f.", "author": "", "orig_id": 1423730}}, {"model": "metainfo.source", "pk": 18368, "fields": {"orig_filename": "Toeroek_Gyula_1888_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 370f.", "author": "", "orig_id": 2196008}}, {"model": "metainfo.source", "pk": 18369, "fields": {"orig_filename": "Toeroek_Lajos_1863_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 371f.", "author": "", "orig_id": 1454773}}, {"model": "metainfo.source", "pk": 18370, "fields": {"orig_filename": "Toeroek_Pal_1808_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 372", "author": "", "orig_id": 1423737}}, {"model": "metainfo.source", "pk": 18371, "fields": {"orig_filename": "Toery_Emil_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374", "author": "", "orig_id": 1458609}}, {"model": "metainfo.source", "pk": 18372, "fields": {"orig_filename": "Toery_Gusztav_1857_1925.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374", "author": "", "orig_id": 1423739}}, {"model": "metainfo.source", "pk": 18373, "fields": {"orig_filename": "Tofan_George_1880_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 374f.", "author": "", "orig_id": 1423740}}, {"model": "metainfo.source", "pk": 18374, "fields": {"orig_filename": "Toggenburg_Georg-Otto_1810_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 375f.", "author": "", "orig_id": 1423776}}, {"model": "metainfo.source", "pk": 18375, "fields": {"orig_filename": "Toldt_Carl_1840_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 376", "author": "", "orig_id": 1423783}}, {"model": "metainfo.source", "pk": 18376, "fields": {"orig_filename": "Toldy_Ferenc_1805_1875.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 376f.", "author": "", "orig_id": 1423784}}, {"model": "metainfo.source", "pk": 18377, "fields": {"orig_filename": "Tollinger_Johann_1847_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 377f.", "author": "", "orig_id": 1423834}}, {"model": "metainfo.source", "pk": 18378, "fields": {"orig_filename": "Tolloczko_Stanislaw-Karol_1868_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 378f.", "author": "", "orig_id": 2239184}}, {"model": "metainfo.source", "pk": 18379, "fields": {"orig_filename": "Tolman_Bretislav_1873_1937.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 379", "author": "", "orig_id": 2206609}}, {"model": "metainfo.source", "pk": 18380, "fields": {"orig_filename": "Tolnai_Lajos_1837_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 379f.", "author": "", "orig_id": 2202613}}, {"model": "metainfo.source", "pk": 18381, "fields": {"orig_filename": "Tolnai_Simon_1867_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 380f.", "author": "", "orig_id": 1454771}}, {"model": "metainfo.source", "pk": 18382, "fields": {"orig_filename": "Tolomei_Giampaolo_1814_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381", "author": "", "orig_id": 1456146}}, {"model": "metainfo.source", "pk": 18383, "fields": {"orig_filename": "Toman_Aleksander_1851_1931.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381f.", "author": "", "orig_id": 2168393}}, {"model": "metainfo.source", "pk": 18384, "fields": {"orig_filename": "Toman_Hugo_1838_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 382f.", "author": "", "orig_id": 1423839}}, {"model": "metainfo.source", "pk": 18385, "fields": {"orig_filename": "Toman_Josipina_1833_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 383", "author": "", "orig_id": 1423840}}, {"model": "metainfo.source", "pk": 18386, "fields": {"orig_filename": "Toman_Karel_1877_1946.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 383f.", "author": "", "orig_id": 1444353}}, {"model": "metainfo.source", "pk": 18387, "fields": {"orig_filename": "Toman_Lovro_1827_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 384f.", "author": "", "orig_id": 1423841}}, {"model": "metainfo.source", "pk": 18388, "fields": {"orig_filename": "Tomaschek-Stradowa_Johann-Adolf_1822_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 387f.", "author": "", "orig_id": 1423939}}, {"model": "metainfo.source", "pk": 18389, "fields": {"orig_filename": "Tomaschek_Anton_1826_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 358", "author": "", "orig_id": 1442935}}, {"model": "metainfo.source", "pk": 18390, "fields": {"orig_filename": "Tomaschek_Ignaz_1824_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 385f.", "author": "", "orig_id": 1888528}}, {"model": "metainfo.source", "pk": 18391, "fields": {"orig_filename": "Tomaschek_Karl_1828_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 386f.", "author": "", "orig_id": 1423895}}, {"model": "metainfo.source", "pk": 18392, "fields": {"orig_filename": "Tomaschek_Wilhelm_1841_1901.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 387", "author": "", "orig_id": 1423457}}, {"model": "metainfo.source", "pk": 18393, "fields": {"orig_filename": "Tomasek_Frantisek_1869_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 388", "author": "", "orig_id": 1423459}}, {"model": "metainfo.source", "pk": 18394, "fields": {"orig_filename": "Tomasek_Vaclav-Jan_1774_1850.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 388f.", "author": "", "orig_id": 1423894}}, {"model": "metainfo.source", "pk": 18395, "fields": {"orig_filename": "Tomaselli_Carl_1809_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 389f.", "author": "", "orig_id": 1447920}}, {"model": "metainfo.source", "pk": 18396, "fields": {"orig_filename": "Tomaselli_Carl_1839_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390", "author": "", "orig_id": 2297827}}, {"model": "metainfo.source", "pk": 18397, "fields": {"orig_filename": "Tomaselli_Franz_1801_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390f.", "author": "", "orig_id": 1423485}}, {"model": "metainfo.source", "pk": 18398, "fields": {"orig_filename": "Tomaselli_Giuseppe_1758_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391", "author": "", "orig_id": 1423487}}, {"model": "metainfo.source", "pk": 18399, "fields": {"orig_filename": "Tomaselli_Ignaz_1812_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 390f.", "author": "", "orig_id": 1423486}}, {"model": "metainfo.source", "pk": 18400, "fields": {"orig_filename": "Tomaselli_Katharina_1811_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391", "author": "", "orig_id": 1423489}}, {"model": "metainfo.source", "pk": 18401, "fields": {"orig_filename": "Tomasic_Nikola_1864_1918.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 391f.", "author": "", "orig_id": 1423535}}, {"model": "metainfo.source", "pk": 18402, "fields": {"orig_filename": "Tomasini_Alois-Basil-Nikolaus_1779_1858.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 392f.", "author": "", "orig_id": 1823286}}, {"model": "metainfo.source", "pk": 18403, "fields": {"orig_filename": "Tomasini_Anton-Edmund_1775_1824.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 392f.", "author": "", "orig_id": 1823272}}, {"model": "metainfo.source", "pk": 18404, "fields": {"orig_filename": "Tomassich_Franz-Xaver_1761_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 393", "author": "", "orig_id": 1423534}}, {"model": "metainfo.source", "pk": 18405, "fields": {"orig_filename": "Tomaszczuk_Konstantin_1840_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 393f.", "author": "", "orig_id": 1423555}}, {"model": "metainfo.source", "pk": 18406, "fields": {"orig_filename": "Toma_Matthias-Rudolf_1792_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 381", "author": "", "orig_id": 1424146}}, {"model": "metainfo.source", "pk": 18407, "fields": {"orig_filename": "Tomcsanyi-Tomcsiny_Adam_1755_1831.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 394", "author": "", "orig_id": 1456262}}, {"model": "metainfo.source", "pk": 18408, "fields": {"orig_filename": "Tomec_Heinrich_1863_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 394f.", "author": "", "orig_id": 1423558}}, {"model": "metainfo.source", "pk": 18409, "fields": {"orig_filename": "Tomek_Wacslaw-Wladiwoj_1818_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 395f.", "author": "", "orig_id": 1423588}}, {"model": "metainfo.source", "pk": 18410, "fields": {"orig_filename": "Tomicek_Jan-Slavomir_1805_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 396", "author": "", "orig_id": 1456267}}, {"model": "metainfo.source", "pk": 18411, "fields": {"orig_filename": "Tominc_Jozef-Jakob_1790_1866.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 396f.", "author": "", "orig_id": 1978736}}, {"model": "metainfo.source", "pk": 18412, "fields": {"orig_filename": "Tominsek_Fran_1868_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 2168570}}, {"model": "metainfo.source", "pk": 18413, "fields": {"orig_filename": "Tominz_Alfredo_1854_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 1456270}}, {"model": "metainfo.source", "pk": 18414, "fields": {"orig_filename": "Tominz_Augusto_1818_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397", "author": "", "orig_id": 1456271}}, {"model": "metainfo.source", "pk": 18415, "fields": {"orig_filename": "Tommaseo_Niccolo_1802_1874.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 397f.", "author": "", "orig_id": 1423627}}, {"model": "metainfo.source", "pk": 18416, "fields": {"orig_filename": "Tommasini_Muzio-Giuseppe_1794_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 399f.", "author": "", "orig_id": 1456414}}, {"model": "metainfo.source", "pk": 18417, "fields": {"orig_filename": "Tommasi_Natale_1853_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 398f.", "author": "", "orig_id": 1423527}}, {"model": "metainfo.source", "pk": 18418, "fields": {"orig_filename": "Tompa_Mihaly_1817_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 400f.", "author": "", "orig_id": 1423664}}, {"model": "metainfo.source", "pk": 18419, "fields": {"orig_filename": "Tomsa_Frantisek-Bohumil_1793_1857.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 401", "author": "", "orig_id": 1456416}}, {"model": "metainfo.source", "pk": 18420, "fields": {"orig_filename": "Tomschik_Josef_1867_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 401f.", "author": "", "orig_id": 1423788}}, {"model": "metainfo.source", "pk": 18421, "fields": {"orig_filename": "Tomsic_Anton_1842_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 402f.", "author": "", "orig_id": 1456418}}, {"model": "metainfo.source", "pk": 18422, "fields": {"orig_filename": "Tomssa_Sylvester_1849_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 403", "author": "", "orig_id": 2199818}}, {"model": "metainfo.source", "pk": 18423, "fields": {"orig_filename": "Tonkli_Josip_1834_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 403f.", "author": "", "orig_id": 1423846}}, {"model": "metainfo.source", "pk": 18424, "fields": {"orig_filename": "Tonkli_Nikolaj_1844_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 404", "author": "", "orig_id": 2168757}}, {"model": "metainfo.source", "pk": 18425, "fields": {"orig_filename": "Tonner_Emanuel_1829_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 404f.", "author": "", "orig_id": 1423848}}, {"model": "metainfo.source", "pk": 18426, "fields": {"orig_filename": "Topic_Frantisek_1858_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405", "author": "", "orig_id": 2206716}}, {"model": "metainfo.source", "pk": 18427, "fields": {"orig_filename": "Topic_Jaroslav_1886_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405", "author": "", "orig_id": 2297892}}, {"model": "metainfo.source", "pk": 18428, "fields": {"orig_filename": "Topitz_Anton-Maria_1887_1949.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 406", "author": "", "orig_id": 1450247}}, {"model": "metainfo.source", "pk": 18429, "fields": {"orig_filename": "Topitz_Anton_1857_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 405f.", "author": "", "orig_id": 1423856}}, {"model": "metainfo.source", "pk": 18430, "fields": {"orig_filename": "Torbar_Josip_1824_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 406f.", "author": "", "orig_id": 1423858}}, {"model": "metainfo.source", "pk": 18431, "fields": {"orig_filename": "Torggler_Erich_1899_1938.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 407f.", "author": "", "orig_id": 1423899}}, {"model": "metainfo.source", "pk": 18432, "fields": {"orig_filename": "Torggler_Karl_1892_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 408", "author": "", "orig_id": 1423897}}, {"model": "metainfo.source", "pk": 18433, "fields": {"orig_filename": "Torma-Csicsokeresztur_Karoly_1829_1897.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 408f.", "author": "", "orig_id": 1455388}}, {"model": "metainfo.source", "pk": 18434, "fields": {"orig_filename": "Torma-Csicsokeresztur_Zsofia_1840_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 409", "author": "", "orig_id": 1423902}}, {"model": "metainfo.source", "pk": 18435, "fields": {"orig_filename": "Tormay-Nadudvar_Bela_1839_1906.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 410", "author": "", "orig_id": 1423903}}, {"model": "metainfo.source", "pk": 18436, "fields": {"orig_filename": "Tormay_Karoly_1804_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 409f.", "author": "", "orig_id": 1455449}}, {"model": "metainfo.source", "pk": 18437, "fields": {"orig_filename": "Tornai_Gyula_1861_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 410f.", "author": "", "orig_id": 1454772}}, {"model": "metainfo.source", "pk": 18438, "fields": {"orig_filename": "Tornquist_Alexander_1868_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 411", "author": "", "orig_id": 1423906}}, {"model": "metainfo.source", "pk": 18439, "fields": {"orig_filename": "Tornyai_Janos_1869_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 412", "author": "", "orig_id": 1423905}}, {"model": "metainfo.source", "pk": 18440, "fields": {"orig_filename": "Torosiewicz_Jozef_1784_1869.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 413", "author": "", "orig_id": 2262700}}, {"model": "metainfo.source", "pk": 18441, "fields": {"orig_filename": "Torosiewicz_Teodor_1789_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 412f.", "author": "", "orig_id": 1455457}}, {"model": "metainfo.source", "pk": 18442, "fields": {"orig_filename": "Toth-Fehergyarmat_Tihamer_1889_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 418f.", "author": "", "orig_id": 1425778}}, {"model": "metainfo.source", "pk": 18443, "fields": {"orig_filename": "Toth_Arpad_1886_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 413f.", "author": "", "orig_id": 2195965}}, {"model": "metainfo.source", "pk": 18444, "fields": {"orig_filename": "Toth_Bela_1857_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 414", "author": "", "orig_id": 1423988}}, {"model": "metainfo.source", "pk": 18445, "fields": {"orig_filename": "Toth_Imre_1857_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 414f.", "author": "", "orig_id": 1458519}}, {"model": "metainfo.source", "pk": 18446, "fields": {"orig_filename": "Toth_Jozsef_1823_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 415", "author": "", "orig_id": 1455790}}, {"model": "metainfo.source", "pk": 18447, "fields": {"orig_filename": "Toth_Kalman_1831_1881.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 415f.", "author": "", "orig_id": 1458524}}, {"model": "metainfo.source", "pk": 18448, "fields": {"orig_filename": "Toth_Laszlo_1869_1895.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 416", "author": "", "orig_id": 1458525}}, {"model": "metainfo.source", "pk": 18449, "fields": {"orig_filename": "Toth_Loerinc_1814_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 416f.", "author": "", "orig_id": 1425745}}, {"model": "metainfo.source", "pk": 18450, "fields": {"orig_filename": "Toth_Samuel_1838_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 417", "author": "", "orig_id": 1458528}}, {"model": "metainfo.source", "pk": 18451, "fields": {"orig_filename": "Toth_Victor_1846_1898.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 417f.", "author": "", "orig_id": 1425779}}, {"model": "metainfo.source", "pk": 18452, "fields": {"orig_filename": "Toth_Zoltan_1883_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 418", "author": "", "orig_id": 2195982}}, {"model": "metainfo.source", "pk": 18453, "fields": {"orig_filename": "Touaillon_Christine_1878_1928.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 419", "author": "", "orig_id": 1425787}}, {"model": "metainfo.source", "pk": 18454, "fields": {"orig_filename": "Toula_Franz_1845_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 419f.", "author": "", "orig_id": 1425788}}, {"model": "metainfo.source", "pk": 18455, "fields": {"orig_filename": "Trabert_Wilhelm_1863_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 420f.", "author": "", "orig_id": 1425828}}, {"model": "metainfo.source", "pk": 18456, "fields": {"orig_filename": "Traeger_Richard_1895_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 421", "author": "", "orig_id": 2170094}}, {"model": "metainfo.source", "pk": 18457, "fields": {"orig_filename": "Trakl_Georg_1887_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 421ff.", "author": "", "orig_id": 1425921}}, {"model": "metainfo.source", "pk": 18458, "fields": {"orig_filename": "Trakl_Grete_1892_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 422f.", "author": "", "orig_id": 1425922}}, {"model": "metainfo.source", "pk": 18459, "fields": {"orig_filename": "Trampler_Richard_1845_1907.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 423", "author": "", "orig_id": 1425926}}, {"model": "metainfo.source", "pk": 18460, "fields": {"orig_filename": "Trampota_Jan_1889_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 423f.", "author": "", "orig_id": 2166212}}, {"model": "metainfo.source", "pk": 18461, "fields": {"orig_filename": "Trampusch_Carl-Franz_1801_1862.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 424", "author": "", "orig_id": 1455958}}, {"model": "metainfo.source", "pk": 18462, "fields": {"orig_filename": "Trapp_August_1836_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 425", "author": "", "orig_id": 1456012}}, {"model": "metainfo.source", "pk": 18463, "fields": {"orig_filename": "Trapp_Georg_1880_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 424f.", "author": "", "orig_id": 1426046}}, {"model": "metainfo.source", "pk": 18464, "fields": {"orig_filename": "Trapp_Hede_1877_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 66, 2015), S. 425f.", "author": "", "orig_id": 1426079}}, {"model": "metainfo.source", "pk": 18465, "fields": {"orig_filename": "Frigessi-Rattalma-Nobile_Arnoldo_1881_1950.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301248}}, {"model": "metainfo.source", "pk": 18466, "fields": {"orig_filename": "Fuchs_Hans-Maria_1874_1933.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1445636}}, {"model": "metainfo.source", "pk": 18467, "fields": {"orig_filename": "Fuchs_Patriz_1789_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301462}}, {"model": "metainfo.source", "pk": 18468, "fields": {"orig_filename": "Fucik_Julius_1872_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1444491}}, {"model": "metainfo.source", "pk": 18469, "fields": {"orig_filename": "Gross_Anton_1841_1887.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297475}}, {"model": "metainfo.source", "pk": 18470, "fields": {"orig_filename": "Hatschek_Julius-Karl_1872_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419709}}, {"model": "metainfo.source", "pk": 18471, "fields": {"orig_filename": "Hermann-Otavsky_Karel_1866_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1451569}}, {"model": "metainfo.source", "pk": 18472, "fields": {"orig_filename": "Heyrovsky_Leopold_1852_1924.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1451357}}, {"model": "metainfo.source", "pk": 18473, "fields": {"orig_filename": "Hottner-Grefe_Anna_1867_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1449623}}, {"model": "metainfo.source", "pk": 18474, "fields": {"orig_filename": "Keller_Alois_1850_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301267}}, {"model": "metainfo.source", "pk": 18475, "fields": {"orig_filename": "Keller_Josef_1841_1897.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2299890}}, {"model": "metainfo.source", "pk": 18476, "fields": {"orig_filename": "Kotula_Boleslaus-Andreas_1849_1898.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301277}}, {"model": "metainfo.source", "pk": 18477, "fields": {"orig_filename": "Kraskovits_Guido_1881_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2299496}}, {"model": "metainfo.source", "pk": 18478, "fields": {"orig_filename": "Mitteregger_Josef_1832_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1462939}}, {"model": "metainfo.source", "pk": 18479, "fields": {"orig_filename": "Moser_Michael_1853_1912.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1465992}}, {"model": "metainfo.source", "pk": 18480, "fields": {"orig_filename": "Pozzi_Victor_1870_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1454702}}, {"model": "metainfo.source", "pk": 18481, "fields": {"orig_filename": "Sunjic_Marian-Ivo_1798_1860.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1435919}}, {"model": "metainfo.source", "pk": 18482, "fields": {"orig_filename": "Suran_Gabriel_1856_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1435567}}, {"model": "metainfo.source", "pk": 18483, "fields": {"orig_filename": "Abendroth_Mira__.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2579863}}, {"model": "metainfo.source", "pk": 18484, "fields": {"orig_filename": "Adam_Ernest_1868_1926.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1431401}}, {"model": "metainfo.source", "pk": 18485, "fields": {"orig_filename": "Allinger_Isidor_1820_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1450304}}, {"model": "metainfo.source", "pk": 18486, "fields": {"orig_filename": "Ambrosi_Francesco_1821_1897.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1467527}}, {"model": "metainfo.source", "pk": 18487, "fields": {"orig_filename": "Amon_Chrysostomus_1819_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1470091}}, {"model": "metainfo.source", "pk": 18488, "fields": {"orig_filename": "Arigler_Altmann_1768_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1470202}}, {"model": "metainfo.source", "pk": 18489, "fields": {"orig_filename": "Arnleitner_Friedrich_1845_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2132462}}, {"model": "metainfo.source", "pk": 18490, "fields": {"orig_filename": "Arnold_Wincenty_1864_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2296428}}, {"model": "metainfo.source", "pk": 18491, "fields": {"orig_filename": "Attlmayr_Aloisius_1815_1889.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1469023}}, {"model": "metainfo.source", "pk": 18492, "fields": {"orig_filename": "Auchentaller_Josef-Maria_1865_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2004015}}, {"model": "metainfo.source", "pk": 18493, "fields": {"orig_filename": "Augapfel_Julius_1892_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1468712}}, {"model": "metainfo.source", "pk": 18494, "fields": {"orig_filename": "Auspitz_Leopold_1838_1907.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2260846}}, {"model": "metainfo.source", "pk": 18495, "fields": {"orig_filename": "Babel-Fronsberg_Franz_1773_1841.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292583}}, {"model": "metainfo.source", "pk": 18496, "fields": {"orig_filename": "Babor_Konrad_1762_1846.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1468716}}, {"model": "metainfo.source", "pk": 18497, "fields": {"orig_filename": "Bachrich_Melly_1899_1938.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2004312}}, {"model": "metainfo.source", "pk": 18498, "fields": {"orig_filename": "Ballaban_Karol_1866_1946.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2293675}}, {"model": "metainfo.source", "pk": 18499, "fields": {"orig_filename": "Balsanek_Antonin_1865_1921.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292773}}, {"model": "metainfo.source", "pk": 18500, "fields": {"orig_filename": "Baracz_Roman_1856_1930.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292656}}, {"model": "metainfo.source", "pk": 18501, "fields": {"orig_filename": "Beck_Adolf_1863_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2281104}}, {"model": "metainfo.source", "pk": 18502, "fields": {"orig_filename": "Bednarski_Adam_1869_1941.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292843}}, {"model": "metainfo.source", "pk": 18503, "fields": {"orig_filename": "Belgiojoso_Cristina_1808_1871.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1456433}}, {"model": "metainfo.source", "pk": 18504, "fields": {"orig_filename": "Benedek-Kisbaczon_Elek_1859_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2265242}}, {"model": "metainfo.source", "pk": 18505, "fields": {"orig_filename": "Bergmann_Hilda_1878_1947.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1414139}}, {"model": "metainfo.source", "pk": 18506, "fields": {"orig_filename": "Bernau_Friedrich_1849_1904.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2047856}}, {"model": "metainfo.source", "pk": 18507, "fields": {"orig_filename": "Biedermann_Julius_1833_1903.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1459894}}, {"model": "metainfo.source", "pk": 18508, "fields": {"orig_filename": "Bikeles_Gustaw_1861_1918.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292554}}, {"model": "metainfo.source", "pk": 18509, "fields": {"orig_filename": "Bilczewski_Jozef_1860_1923.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419142}}, {"model": "metainfo.source", "pk": 18510, "fields": {"orig_filename": "Bilimek_Dominik_1813_1884.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419213}}, {"model": "metainfo.source", "pk": 18511, "fields": {"orig_filename": "Blodig_Karl_1820_1891.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1419318}}, {"model": "metainfo.source", "pk": 18512, "fields": {"orig_filename": "Boehm_August_1845_1916.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2267393}}, {"model": "metainfo.source", "pk": 18513, "fields": {"orig_filename": "Boernstein_Heinrich_1805_1892.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417661}}, {"model": "metainfo.source", "pk": 18514, "fields": {"orig_filename": "Bratu_Traian_1875_1940.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2265247}}, {"model": "metainfo.source", "pk": 18515, "fields": {"orig_filename": "Brittinger_Christian_1795_1869.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420192}}, {"model": "metainfo.source", "pk": 18516, "fields": {"orig_filename": "Brunnthaler_Josef-Georg_1871_1914.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420435}}, {"model": "metainfo.source", "pk": 18517, "fields": {"orig_filename": "Buchmueller_Anton_1782_1850.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2292577}}, {"model": "metainfo.source", "pk": 18518, "fields": {"orig_filename": "Burgerstein_Alfred_1850_1929.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420641}}, {"model": "metainfo.source", "pk": 18519, "fields": {"orig_filename": "Burgerstein_Joseph_1813_1873.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2300203}}, {"model": "metainfo.source", "pk": 18520, "fields": {"orig_filename": "Burgerstein_Leo_1853_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1827303}}, {"model": "metainfo.source", "pk": 18521, "fields": {"orig_filename": "Burger_Ernst_1915_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1475339}}, {"model": "metainfo.source", "pk": 18522, "fields": {"orig_filename": "Bykowski_Juliusz-Jan_1844_1915.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2296282}}, {"model": "metainfo.source", "pk": 18523, "fields": {"orig_filename": "Cieslar_Adolf_1858_1934.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2223856}}, {"model": "metainfo.source", "pk": 18524, "fields": {"orig_filename": "Costa_Etbin-Henrik_1832_1875.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297301}}, {"model": "metainfo.source", "pk": 18525, "fields": {"orig_filename": "Czerny_Carl_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417615}}, {"model": "metainfo.source", "pk": 18526, "fields": {"orig_filename": "Dafert-Sensel-Timmer_Otto_1888_1945.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2079331}}, {"model": "metainfo.source", "pk": 18527, "fields": {"orig_filename": "Daublebsky-Sterneck_Robert_1871_1928.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1876603}}, {"model": "metainfo.source", "pk": 18528, "fields": {"orig_filename": "Dombrowski-Paproz-Kruserevice_Raoul_1833_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2300357}}, {"model": "metainfo.source", "pk": 18529, "fields": {"orig_filename": "Fahrbach_Friedrich_1809_1867.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2224858}}, {"model": "metainfo.source", "pk": 18530, "fields": {"orig_filename": "Fahrbach_Philipp_1843_1894.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1446107}}, {"model": "metainfo.source", "pk": 18531, "fields": {"orig_filename": "Fellner_Ferdinand-Iii_1872_1911.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2295757}}, {"model": "metainfo.source", "pk": 18532, "fields": {"orig_filename": "Fischer_Leopoldine_1887_1948.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2301445}}, {"model": "metainfo.source", "pk": 18533, "fields": {"orig_filename": "Fischer_Paul_1876_1942.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2297369}}, {"model": "metainfo.source", "pk": 18534, "fields": {"orig_filename": "Fleischmann_Johann-Baptist_1864_1925.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2302168}}, {"model": "metainfo.source", "pk": 18535, "fields": {"orig_filename": "Fraenkel-Hahn_Louise_1878_1939.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1444776}}, {"model": "metainfo.source", "pk": 18536, "fields": {"orig_filename": "Friemel_Rudolf_1907_1944.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1469499}}, {"model": "metainfo.source", "pk": 18537, "fields": {"orig_filename": "Friese-Skuhra_Ernst-Robert_1886_1949.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 2266072}}, {"model": "metainfo.source", "pk": 18538, "fields": {"orig_filename": "Tepa_Franciszek-Tomasz_1828_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 250f.", "author": "", "orig_id": 1447985}}, {"model": "metainfo.source", "pk": 18539, "fields": {"orig_filename": "data/staribacher/staribacher_Personenliste_ms.csv", "indexed": false, "pubinfo": "File sent by Barbara Krautgartner Sep 27 2016", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 18540, "fields": {"orig_filename": "000", "indexed": false, "pubinfo": "", "author": "", "orig_id": null}}, {"model": "metainfo.source", "pk": 18541, "fields": {"orig_filename": "", "indexed": false, "pubinfo": "", "author": "", "orig_id": null}}, {"model": "metainfo.text", "pk": 12, "fields": {"kind": 2, "text": "seit 1992: Primorsko-goranska \u017eup.; a/Golf v. Rijeka, NO-Istrien;", "source": 1}}, {"model": "metainfo.text", "pk": 14, "fields": {"kind": 2, "text": "seit 1992: Primorsko-goranska \u017eup.; a/Golf v. Rijeka, NO-Istrien;", "source": 1}}, {"model": "metainfo.text", "pk": 59, "fields": {"kind": 2, "text": "= srez, seit 1992: Zagreba\u010dka \u017eup.; a/Save;", "source": 1}}, {"model": "metainfo.text", "pk": 173, "fields": {"kind": 2, "text": "(lt. Atl.'99 Star\u00e1 Dl. V. nicht mehr ausgewiesen), okr. Klatovy; ca. 4 km ssw Su\u0161ice, ca. 28 km ss\u00f6 Klatovy; [vgl. Biogr. \"Schell, Karl\"]", "source": 1}}, {"model": "metainfo.text", "pk": 181, "fields": {"kind": 2, "text": "= seit 1872/73: Zus.schl. v. Pest, Ofen/Buda u. Altofen/\u00d3buda;", "source": 1}}, {"model": "metainfo.text", "pk": 654, "fields": {"kind": 2, "text": "lt.K.Ku\u010da (tsch.) Umbenng 1921, 1956 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XX - Osta\u0161ov\"; ca. 3 km w. Liberec (Zentrum), a/\u00e4u\u00dfersten W-Rand der Stadt;", "source": 1}}, {"model": "metainfo.text", "pk": 784, "fields": {"kind": 2, "text": "= KG (2001: 1021 Einw.), Gem. Steindorf am Ossiacher See [Zusatz seit 1986], GerBez. Feldkirchen; 3,5 km wsw Steindorf, a/N-Ufer d. Ossiacher Sees (gg.\u00fcber Ort/Gem. u. Stift Ossiach a/d S-Seite des Sees: urspr. Gem. Glanhofen - 1894 von Steindf. abgetrennt u. in Ossiach umbenannt); [betr. Biogr. \"Dumba, Konst. Theo.\", gest. 1947]", "source": 1}}, {"model": "metainfo.text", "pk": 928, "fields": {"kind": 2, "text": "= jude\u0163; St. i. n\u00f6rdl. (rum\u00e4n.) Moldau;", "source": 1}}, {"model": "metainfo.text", "pk": 962, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 964, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 969, "fields": {"kind": 2, "text": "okr. N\u00e1chod; ca. 22 km n\u00f6 N\u00e1chod;", "source": 1}}, {"model": "metainfo.text", "pk": 971, "fields": {"kind": 2, "text": "okr. N\u00e1chod; ca. 22 km n\u00f6 N\u00e1chod;", "source": 1}}, {"model": "metainfo.text", "pk": 1011, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 1013, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 1017, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen;", "source": 1}}, {"model": "metainfo.text", "pk": 1029, "fields": {"kind": 2, "text": "obec u. okr. Hradec Kr\u00e1lov\u00e9; ca. 5 km ssw Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 1054, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; [betr. Biogr. \"Plaseller, Josef\", geb. 1812]", "source": 1}}, {"model": "metainfo.text", "pk": 1056, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen;", "source": 1}}, {"model": "metainfo.text", "pk": 1064, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1090, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1092, "fields": {"kind": 2, "text": "(seit 1990) St.Bez. (m\u011bst.obvod) Brno-st\u0159ed, (seit 1993 auch) Brno 1; ca. 2 km wsw Br\u00fcnn-Zentrum, a/d Schwarzawa (Svratka); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 1094, "fields": {"kind": 2, "text": "(seit 1990) mit 29 St.Bez.en (m\u011bstsk\u00ed \u010d\u00e1st, obvod), (seit 1993 auch) Brno 1 - 29 [vgl. K.Ku\u010da/1996, S.235/236], okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1096, "fields": {"kind": 2, "text": "okr. Brno-m\u011bsto; a/d M\u00fcndg d. Zwittawa (Svitava) i/d Schwarzawa (Svratka);", "source": 1}}, {"model": "metainfo.text", "pk": 1236, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige); [betr. Biogr. \"Buol-Bernburg, Marie\", gest. 23.5.1943]", "source": 1}}, {"model": "metainfo.text", "pk": 1467, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 2030, "fields": {"kind": 2, "text": "okr. Chomutov; ca. 4 km s\u00f6 Chomutov;", "source": 1}}, {"model": "metainfo.text", "pk": 2492, "fields": {"kind": 2, "text": "ca. 7 km n\u00f6 Sf\u00e2ntu Gheorghe;", "source": 1}}, {"model": "metainfo.text", "pk": 2571, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht orthograph. (nur Betonungshilfe)];", "source": 1}}, {"model": "metainfo.text", "pk": 2603, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht nicht orthograph., nur Betonungshilfe];", "source": 1}}, {"model": "metainfo.text", "pk": 2605, "fields": {"kind": 2, "text": "friaul. (furlan.): Gur\u00eczza, = prov(incia); St. l/d unteren Isonzo; [(mst) 'Gor\u00edzia': Akzent nicht nicht orthograph., nur Betonungshilfe];", "source": 1}}, {"model": "metainfo.text", "pk": 2675, "fields": {"kind": 2, "text": "eingem. (lt.IN) seit 1923, = Frakt. d. St.gem. Meran, prov. Bolzano/Bozen; 2,5 km n. Meran-Zentrum, w/Schlo\u00df Tirol; [betr. mehrere Biogr.: dt. gleichl. Weiler in Gem. Toblach!]", "source": 1}}, {"model": "metainfo.text", "pk": 2825, "fields": {"kind": 2, "text": "okr. \u0160umperk; ca. 6 km ssw Lou\u010dn\u00e1 nad Desnou, ca. 9 km nn\u00f6 \u0160umperk;", "source": 1}}, {"model": "metainfo.text", "pk": 2827, "fields": {"kind": 2, "text": "okr. \u0160umperk; ca. 6 km ssw Lou\u010dn\u00e1 nad Desnou, ca. 9 km nn\u00f6 \u0160umperk;", "source": 1}}, {"model": "metainfo.text", "pk": 3253, "fields": {"kind": 2, "text": "op. Maribor-Tabor (Post: Limbu\u0161), (OV'99) ob\u010d. u. upr.en. Maribor; (SlovAtl.'92) je 1 km w. Pekre (Pickerndorf) bzw. s\u00f6 Limbu\u0161 (Lembach) bzw. n\u00f6 (StreuSdlg) Vrhov Dol, ca. 6 km w. Marburg, r/d Drau; [betr. Biogr. \"Reiser Othmar\"]", "source": 1}}, {"model": "metainfo.text", "pk": 3255, "fields": {"kind": 2, "text": "op. Maribor-Tabor (Post: Limbu\u0161), (OV'99) ob\u010d. u. upr.en. Maribor; (SlovAtl.'92) je 1 km w. Pekre (Pickerndorf) bzw. s\u00f6 Limbu\u0161 (Lembach) bzw. n\u00f6 (StreuSdlg) Vrhov Dol, ca. 6 km w. Marburg, r/d Drau; [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 3300, "fields": {"kind": 2, "text": "Teil des (seit 1990) St.Bez. (m\u011bst.obvod) Brno-sever [Br\u00fcnn-Nord] (zus. mit Lesn\u00e1, Sob\u011b\u0161ice u. Teil v. \u010cern\u00e1 Pole), (seit 1993 auch) Brno 4, okr. Brno-m\u011bsto; ca. 3 km nn\u00f6 Br\u00fcnn-Zentrum;", "source": 1}}, {"model": "metainfo.text", "pk": 3504, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie; ca. 8 km nw Chrzan\u00f3w (dieses heute woj. ma\u0142opolskie), ca. 26 km \u00f6s\u00f6 Katowice (>50 km wnw Krak\u00f3w); [betr. hr/Stein, Ernst, geb. 1891 ']", "source": 1}}, {"model": "metainfo.text", "pk": 3663, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 3665, "fields": {"kind": 2, "text": "Zusatz (nur zum Gem.namen?) seit ? (nach 1964): com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe, prov. Bolzano/Bozen; ca. 12 km ssw Bozen, im \u00dcberetsch, r/d Etsch (Adige); [betr. Biogr. \"M\u00f6rl, Maria Th.\", geb. 1812]", "source": 1}}, {"model": "metainfo.text", "pk": 3930, "fields": {"kind": 2, "text": "St. am Kl. Szamos (Some\u015ful Mic);", "source": 1}}, {"model": "metainfo.text", "pk": 3932, "fields": {"kind": 2, "text": "St. am Kl. Szamos (Some\u015ful Mic);", "source": 1}}, {"model": "metainfo.text", "pk": 4052, "fields": {"kind": 2, "text": "= kraj (Kr\u00e1lov\u00e9hradeck\u00fd); St. a/d oberen Elbe (Labe);", "source": 1}}, {"model": "metainfo.text", "pk": 4438, "fields": {"kind": 2, "text": "St.teil seit 1954(?), okr. Hradec Kr\u00e1lov\u00e9; ca. 3 km w. Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 4453, "fields": {"kind": 2, "text": "Teil des (seit 1993) St.Bez. (m\u011bst. obvod) Brno-jih [Br\u00fcnn-S\u00fcd, seit 1993 auch Brno 7], okr. Brno-m\u011bsto; davor (ab 1990) namengebender St.Bez. \"Brno-Kom\u00e1rov\" (zus. mit 3 weiteren ehem. Gem./obec, darunter -->Horn\u00ed Her\u0161pice, dt. Obergerspitz); ca. 2 km ss\u00f6 Br\u00fcnn-Zentrum, a/d Pon\u00e1vka (vor Zus.fl. v. Schwarzawa/Svratka u. Zwittawa/Svitava); [betr. (u.a.) naw/Biogr.(innerhalb Text) \"Su\u0161il, Franti\u0161ek\": urspr. 'Kumritz (Kom\u00e1rov)']", "source": 1}}, {"model": "metainfo.text", "pk": 4512, "fields": {"kind": 2, "text": "obec Tou\u017eim, okr. Karlovy Vary; 2 km \u00f6. Koj\u0161ovice, ca. 4 km n\u00f6 Tou\u017eim, ca. 9 km w. \u017dlutice, ca. 20 km ss\u00f6 Karlovy Vary;", "source": 1}}, {"model": "metainfo.text", "pk": 4522, "fields": {"kind": 2, "text": "= srez; St. im mittleren Krain;", "source": 1}}, {"model": "metainfo.text", "pk": 4642, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 4644, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5041, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5043, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5045, "fields": {"kind": 2, "text": "= translit. lt.AdD (lt.AOS L'v\u00ecv: Akz. gravis!), ab 1991: = obl.; H.St. der Westukraine, a/d Poltawa;", "source": 1}}, {"model": "metainfo.text", "pk": 5083, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXX - Vratislavice nad Nisou\", seit 1990 (mit neuem Statut) 'm\u011bstsk\u00fd obvod\" (St.bezirk); ca. 4 km s\u00f6 Liberec (Zentrum), beidseits der Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 5085, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXX - Vratislavice nad Nisou\", seit 1990 (mit neuem Statut) 'm\u011bstsk\u00fd obvod' (St.bezirk); ca. 4 km s\u00f6 Liberec (Zentrum), beidseits der Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 5101, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-Zentrum, (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 5193, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5219, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5221, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5223, "fields": {"kind": 2, "text": "= srez, (OV'99) = upr.en.; St. a/d Drau;", "source": 1}}, {"model": "metainfo.text", "pk": 5344, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5346, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5348, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; a/\u00f6stl. Stadtrand;", "source": 1}}, {"model": "metainfo.text", "pk": 5350, "fields": {"kind": 2, "text": "ital. St.teilname (lt. K\u00fcheb.) nach 1940, eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio); [betr. Biogr. \"Mazegger, Bernh. d.J.\", gest. 1921, (miterw./Schrott, Alois) \"Pelzel v. Staff., Henriette\", gest. 1962, allerdings schon 2-namig ab 1948]", "source": 1}}, {"model": "metainfo.text", "pk": 5352, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-(Altstadt), (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 5353, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; (lt.wiki) eingeteilt in das eigentl. Meran (auch 'Altstadt'), --> Gratsch, sowie (s/d Altstadt) --> Obermais, --> Untermais, Labers u. Sinich; a/d Passer (vor Einm\u00fcndg i/d Etsch);", "source": 1}}, {"model": "metainfo.text", "pk": 5409, "fields": {"kind": 2, "text": "okr. Tachov; ca. 28 km \u00f6s\u00f6 Tachov;", "source": 1}}, {"model": "metainfo.text", "pk": 5576, "fields": {"kind": 2, "text": "okr. Teplice; ca. 15 km nw Teplice, a/dt.-s\u00e4chs. Grenze (8 km w. Cinovec/Zinnwald);", "source": 1}}, {"model": "metainfo.text", "pk": 5900, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. opolskie;", "source": 1}}, {"model": "metainfo.text", "pk": 6016, "fields": {"kind": 2, "text": "okr. Hradec Kr\u00e1lov\u00e9; ca. 4 km! ss\u00f6 Hradec Kr\u00e1lov\u00e9;", "source": 1}}, {"model": "metainfo.text", "pk": 6119, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VIII - Doln\u00ed Hanychov\"; 1 km nn\u00f6 --> Horn\u00ed Hanychov, ca. 3 km sw Liberec (Zentrum); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 6173, "fields": {"kind": 2, "text": "[betr. Mpg/Biogr. \"Ambr\u00f3zy-Migazzi, Istv\u00e1n\", geb. 1869]", "source": 1}}, {"model": "metainfo.text", "pk": 6308, "fields": {"kind": 2, "text": "Teil des (seit 1993) St.Bez. (m\u011bst.obvod) Brno-jih [Br\u00fcnn-S\u00fcd] (davor ab 1990 St.Bez. \"Kom\u00e1rov\"), (seit 1993 auch) Brno 7, okr. Brno-m\u011bsto; ca. 4 km s. Br\u00fcnn-Zentrum (n/\u00f6 von Autobahnkreuzung);", "source": 1}}, {"model": "metainfo.text", "pk": 6324, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec; seit 1980 (St.teil/\u010dtvrt) \"Liberec XIX - Horn\u00ed Hanychov\"; 1 km ssw --> Doln\u00ed Hanychov, ca. 4 km sw Liberec (Zentrum); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 6350, "fields": {"kind": 2, "text": "ital. St.teilname (lt. K\u00fcheb.) nach 1940, eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio);", "source": 1}}, {"model": "metainfo.text", "pk": 6352, "fields": {"kind": 2, "text": "eingem. (mit Ortsteil Labers) seit ? (zw. 1922 u. 1945), com. Merano, prov. Bolzano/Bozen; gg.\u00fcber der Altstadt Meran, n\u00f6 Untermais, l/d Passer (Passirio);", "source": 1}}, {"model": "metainfo.text", "pk": 6372, "fields": {"kind": 2, "text": "(tsch.) Umbenng nach 1918; 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VII - Horn\u00ed R\u016f\u017eodol\"; ca. 2 km ss\u00f6 --> \"R\u016f\u017eodol I\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [betr. Biogr. \"Schramm Augustin, *1907\"]", "source": 1}}, {"model": "metainfo.text", "pk": 6417, "fields": {"kind": 2, "text": "Teil des (seit 1990) St.Bez. (m\u011bst.obvod) Malom\u011b\u0159ice-Ob\u0159any, (seit 1993 auch) Brno 18, okr. Brno-m\u011bsto; ca. 7 km nn\u00f6 Br\u00fcnn-Zentrum; [betr. Biogr./hr \"\u0160tastny Vladim.\", gest. 1910]", "source": 1}}, {"model": "metainfo.text", "pk": 6431, "fields": {"kind": 2, "text": "St., sw Neusiedler See;", "source": 1}}, {"model": "metainfo.text", "pk": 6491, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 6493, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 6495, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava); [betr. Biogr. \"\u0160pa\u010dek, Richard\", gest. 1925]", "source": 1}}, {"model": "metainfo.text", "pk": 6497, "fields": {"kind": 2, "text": "= kraj (vor 2001: im okr., Severomoravsk\u00fd kraj); St. a/d oberen March (Morava);", "source": 1}}, {"model": "metainfo.text", "pk": 7122, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7124, "fields": {"kind": 2, "text": "okr. Hl.m. Praha, Praha 2 (Nov\u00e9 M\u011bsto); ON noch erhalten im Stra\u00dfennamen \"Podskalsk\u00e1\" (parallel zur Uferstr. zw. Nov\u00e9 M\u011bsto u. Vy\u0161ehrad); [betr. Biogr. \"Hedrich Franz\"]", "source": 1}}, {"model": "metainfo.text", "pk": 7126, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus 1 od. mehreren St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7128, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7130, "fields": {"kind": 2, "text": "= kraj (Hlavn\u00ed m\u011bsto Praha), ab 1. Juli 2001 neue Verw.gliederung in 22 Bezirke (spr\u00e1vn\u00ed obvod), tlw. bestehend aus St.teilen (m\u011bstsk\u00e1 \u010d\u00e1st);", "source": 1}}, {"model": "metainfo.text", "pk": 7171, "fields": {"kind": 2, "text": "= ab 1920, = kraj u. okr.;", "source": 1}}, {"model": "metainfo.text", "pk": 7173, "fields": {"kind": 2, "text": "Umbenng. = ab 1920 (lt.IN schon 6. 3. 1919), = kraj u. okr.; mit 17 St.Bez.en: Star\u00e9 Mesto, Ru\u017einov (1946, fr.: Prievoz), Vraku\u0148a (1.1. 1972), Podunajsk\u00e9 Biskupice (1.1. 1972), Nov\u00e9 Mesto, Ra\u010da (1946), Vajnory (1946), Kalova Ves (seit 1944), D\u00fabravka (1946), Lama\u010d (1946), Dev\u00edn (1946), Dev\u00ednska Nov\u00e1 (1.1. 1972) Ves, Z\u00e1horsk\u00e1 Bystrica (1.1. 1972), Petr\u017ealka (1946, r/Donau), Jarovce (1.1. 1972, r/Donau), Rusovce (1.1. 1972, r/Donau) und \u010cunovo (1.1. 1972, r/Donau);", "source": 1}}, {"model": "metainfo.text", "pk": 7681, "fields": {"kind": 2, "text": "tsch. ON nach 1918, 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XI - R\u016f\u017eodol I\"; ca. 2 km nnw \"R\u016f\u017eodol II\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 7683, "fields": {"kind": 2, "text": "tsch. ON nach 1918; 1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec VII - Horn\u00ed R\u016f\u017eodol\"; ca. 2 km ss\u00f6 --> \"R\u016f\u017eodol I\", 2,5 km sw Liberec (Zentrum), l/d oberen Lausitzer Nei\u00dfe (Lu\u017eick\u00e1 Nisa); [dzt. ohne entspr. Biogr.]", "source": 1}}, {"model": "metainfo.text", "pk": 7776, "fields": {"kind": 2, "text": "1946 zu obec Liberec, okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XIV - Ruprechtice\"; 2,5 km n\u00f6 Liberec (Zentrum); [betr. Biogr. \"Farsk\u00fd, Franz\", geb. 'Ruppersdorf (Rup\u011bchtice, B\u00f6hmen)': diese (tsch.) Schreibw. nicht verifiz.]", "source": 1}}, {"model": "metainfo.text", "pk": 7828, "fields": {"kind": 2, "text": "Sadhora (n\u00f6rdl. des Prut), eingemeindet nach --> \u010cernivci;", "source": 1}}, {"model": "metainfo.text", "pk": 7951, "fields": {"kind": 2, "text": "= ab 1990, okr. Pezinok; ca. 15 km n\u00f6 Pre\u00dfburg; a/SO-Abhang d. Kl. Karpaten;", "source": 1}}, {"model": "metainfo.text", "pk": 7994, "fields": {"kind": 2, "text": "prov. Bolzano/Bozen; ca. 6 km wsw Lana (Ober-), ca. 11 km sw Meran, im Ultental (Val d'Ultimo);", "source": 1}}, {"model": "metainfo.text", "pk": 8138, "fields": {"kind": 2, "text": "Umbenng. ab 1955, okr. \u0160umperk; ca. 16 km w. \u0160umperk; nahe Grenze zu NO-B\u00f6hmen;", "source": 1}}, {"model": "metainfo.text", "pk": 8211, "fields": {"kind": 2, "text": "okr. Liberec, seit 1980 (St.teil/\u010dtvrt) \"Liberec XXXI - Kr\u00e1sn\u00e1 Stud\u00e1nka\"; ca. 7 km n. Liberec (Zentrum);", "source": 1}}, {"model": "metainfo.text", "pk": 8304, "fields": {"kind": 2, "text": "[betr. naw/Biogr. \"Sue\u00df, Friedr. R.v. Heller\"]", "source": 1}}, {"model": "metainfo.text", "pk": 8727, "fields": {"kind": 2, "text": "(lt. Atl.'99 Star\u00e1 Dl. V. nicht mehr ausgewiesen), okr. Klatovy; ca. 4 km ssw Su\u0161ice, ca. 28 km ss\u00f6 Klatovy; [vgl. Biogr. \"Schell Karl\"]", "source": 1}}, {"model": "metainfo.text", "pk": 9008, "fields": {"kind": 2, "text": "ab 1.1.99: pow. Jaworzno, woj. \u015bl\u0105skie; [4 km n. Jaworzno]", "source": 1}}, {"model": "metainfo.text", "pk": 9021, "fields": {"kind": 2, "text": "Kom.H.St.; a/d Thei\u00df, gg.\u00fcber Einm\u00fcndung d. Maros;", "source": 1}}, {"model": "metainfo.text", "pk": 9235, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie;", "source": 1}}, {"model": "metainfo.text", "pk": 9239, "fields": {"kind": 2, "text": "ab 1.1.99: = pow., woj. \u015bl\u0105skie; r/d Olsa/Olza; [i. Druck fr\u00fcher i.d.R. undiff. nur \"Teschen\", k\u00fcnftig (u. in GD-DB) als heut. ON normativ der poln. Teil angef\u00fchrt: f\u00fcr einzelne Bios k\u00f6nnte auch der kleinere, j\u00fcngere (heute tsch.) St.teil -->\u010cesk\u00fd T\u011b\u0161\u00edn zutreffend sein]", "source": 1}}, {"model": "metainfo.text", "pk": 9433, "fields": {"kind": 2, "text": "= prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9434, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9461, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9463, "fields": {"kind": 2, "text": "(lt.wiki) 'trentin.': Tr\u00e8nt, 'ladin.': Tr\u00ebnt, = prov. (H.St. d. gleichn. autonom. Prov. sowie der autonom. Region Trentino - Alto Adige / Trentino - S\u00fcdtirol (bis 1972 dt.: Trentino - Tiroler Etschland); l/d Etsch (Adige);", "source": 1}}, {"model": "metainfo.text", "pk": 9646, "fields": {"kind": 2, "text": "= ab 1948 [= Umbenng.], okr. Nitra; ca. 12 km s. Neutra;", "source": 1}}, {"model": "metainfo.text", "pk": 9705, "fields": {"kind": 2, "text": "com. Caldaro sulla Strada del Vino / Kaltern an der Weinstra\u00dfe (Zusatz (seit ?, nach 1964): nur f\u00fcr den Namen der (Markt) Gem. amtl. (oder auch f\u00fcr den Ort selbst?), prov. Bolzano/Bozen; ca. 13 km ssw Bozen, a/Fu\u00df des Mendel-Passes;", "source": 1}}, {"model": "metainfo.text", "pk": 9735, "fields": {"kind": 2, "text": "Mais (Ober- u. Untermais) 1924 in die Gem. Meran einverleibt, prov. Bolzano/Bozen; ca. 1 km sw Meran-(Altstadt), (gg.\u00fcber) l/d Passer bei Einm\u00fcndg in die Etsch;", "source": 1}}, {"model": "metainfo.text", "pk": 10129, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10131, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10133, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10135, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10138, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. mazowieckie;", "source": 1}}, {"model": "metainfo.text", "pk": 10186, "fields": {"kind": 2, "text": "ab 1992 Ju\u017eni-Banatski okr.; St., ca. 10 km n/d Donau, (s\u00fcdl. Banat) Vojvodina;", "source": 1}}, {"model": "metainfo.text", "pk": 10300, "fields": {"kind": 2, "text": "(lt. wiki) Getrenntschreibung seit 1997;", "source": 1}}, {"model": "metainfo.text", "pk": 10485, "fields": {"kind": 2, "text": "= woj., ab 1.1.99: woj. dolno\u015bl\u0105skie; [betr. da/Biogr. \"Sucharda, Edw. d.J.\", gest. 1947]", "source": 1}}, {"model": "metainfo.text", "pk": 10711, "fields": {"kind": 2, "text": "lt.obiger Enz.. (ukr.) auch: Znesennja; rajon L'viv; (lt. L'viv-St.plan) 2,25 km \u00f6n\u00f6 Lemberg-Zentrum, inmitten eines Landschaftsparkes a/\u00f6stl. Stadtrand", "source": 1}}, {"model": "metainfo.text", "pk": 10788, "fields": {"kind": 2, "text": "= okres; ca. 14 km w. Mor. T\u0159ebov\u00e1, St. i/Sch\u00f6nhenstgau a/d Zwittawa (Svitava);", "source": 1}}, {"model": "metainfo.text", "pk": 11195, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11196, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11197, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11198, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11199, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11200, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11203, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11204, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11205, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11206, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11207, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11210, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11211, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11214, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11215, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11218, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11219, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11220, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11221, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11222, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11223, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11224, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11225, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11226, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11227, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11228, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11229, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11230, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11231, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11234, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11235, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11236, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11237, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11238, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11239, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11240, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11241, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11242, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11243, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11244, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11245, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11246, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11249, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11250, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11251, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11252, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11253, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11254, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11255, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11256, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11257, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11258, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11259, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11260, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11261, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11262, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11263, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11266, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11269, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11270, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11271, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11272, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11275, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11278, "fields": {"kind": 236, "text": "http://www.geonames.org/maps/google_46.547_15.596.html\r\nOthmar Reiser's Geburtsort ist Hrastje, der heute Pekre heisst, und neben Maribor liegt.", "source": null}}, {"model": "metainfo.text", "pk": 11279, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11280, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11281, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11284, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11285, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11286, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11287, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11288, "fields": {"kind": 236, "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, B\u00f6hmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der b\u00f6hmische Lachovice der richtige", "source": null}}, {"model": "metainfo.text", "pk": 11289, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11290, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11291, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11292, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11293, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11294, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11299, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11300, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11301, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11302, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11303, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11304, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11305, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11308, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11311, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11312, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11313, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11314, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11317, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11318, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11319, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11320, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11321, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11322, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11323, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11324, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11325, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11326, "fields": {"kind": 236, "text": "ziemlich viele \u00d6BL labels f\u00fcr Meran!", "source": null}}, {"model": "metainfo.text", "pk": 11327, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11330, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11331, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11334, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11335, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11336, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11337, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11338, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11339, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11342, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11343, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11344, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11345, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11346, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11347, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11348, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11349, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11350, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11351, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 12155, "fields": {"kind": 130, "text": "Sohn von Joseph T. und Fortun\u00e9e Stein (urkundl.; vermutl. jedoch illegitimer Sohn von \u00bfFranz Josef F\u00fcrst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers Fran\u00e7ois Boucher und Tochter des Operns\u00e4ngers Luigi Lablache, verheiratet. \u2013 T. zog 1822 nach Wien, wo er Klavierunterricht beim Ersten Fagottisten der Hofoper, August Mittag, erhielt und das polytechn. Inst. besucht haben soll (nicht nachweisbar). In weiterer Folge stud. er bei \u00bfSimon Sechter (Theorie) und \u00bfJohann Nep. Hummel (Klavier). 1826 trat er erstmals, zun\u00e4chst in Wr. Privatzirkeln, als Pianist auf. 1830 f\u00fchrte ihn die erste Auslandstournee nach Dtld. und England, anschlie\u00dfend in andere europ. L\u00e4nder. Nach weiteren Stud. bei \u00bfIgnaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 gro\u00dfe Erfolge in Paris und triumphierte 1837\u201348 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und S\u00fcdamerika, wo er u.\u00a0a. in New York eine Klavierschule gr\u00fcndete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die n\u00e4chsten Jahre zur\u00fcckgezogen lebte. Nach Wiederaufnahme seiner Tourneen 1862 (London und Paris) ging er 1863 abermals nach Brasilien, danach schied er aus dem Konzertleben aus. Einem Brief Felix Mendelssohn-Bartholdys zufolge galt T. bis zur Jh.mitte neben \u00bfFranz v. Liszt als gr\u00f6\u00dfter Klaviervirtuose seiner Zeit. 1837 kam es zu einem \u00f6ff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle \u00d6ffentlichkeit sah Liszt als Romantiker, w\u00e4hrend der von seinem Auftreten her aristokrat. T. eher f\u00fcr ein klassizist. Musikideal stand. Auch die Qualit\u00e4t der Kompositionen beider wurde kontr\u00e4r beurteilt. Liszt bezeichnete T.s Werke in der \u201eRevue et gazette musicale de Paris\u201c als eine Mischung aus Monotonie und Unverm\u00f6gen. Die so aufgeschaukelte Rivalit\u00e4t kulminierte, als beide Musiker an einem von F\u00fcrstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Fr\u00e9d\u00e9ric Chopin und \u00bfCarl Czerny, an einer Kollektivkomposition f\u00fcr die F\u00fcrstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen \u00fcber Themen bekannter Opern dessen gr\u00f6\u00dften Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zur\u00fcck. T.s Personalstil kennzeichneten v.\u00a0a. das Hervortreten der auf beide H\u00e4nde verteilten Melodie in der Mittellage, w\u00e4hrend diese u.\u00a0a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. \u201eL\u2019Art du chant appliqu\u00e9 au piano\u201c festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosit\u00e4t, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n", "source": 531}}, {"model": "metainfo.text", "pk": 12156, "fields": {"kind": 131, "text": "Thalberg Sigismund (Fortun\u00e9 Fran\u00e7ois), Pianist und Komponist. Geb. P\u00e2quis (Gen\u00e8ve-Bains des P\u00e2quis, CH), 8.\u00a01. 1812; gest. Posillipo (Napoli, I), 27.\u00a04. 1871.", "source": 531}}, {"model": "metainfo.text", "pk": 21722, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckers; lebte ab ca. 1781 bei seinem Gro\u00dfvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurf\u00fcrstlichen Hof in Bonn t\u00e4tig war. 1787 wurde R. Fl\u00f6tist der Hofkapelle und begann zu komponieren. 1794\u201399 lebte er in Hamburg und verdiente seinen Lebensunterhalt mit Musikunterricht, ab 1799 in Paris, wo er vergeblich auf die Urauff. zweier von ihm komponierter Opern hoffte. 1802\u201308 war er in Wien und stud. u. a. bei J. Haydn, Albrechtsberger und Salieri Komposition. Ab 1808 lebte R. in Paris, ab 1818 als Prof. f\u00fcr Komposition. Als Musikp\u00e4dagoge und Theoretiker erlangte er gro\u00dfes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Sch\u00fclern geh\u00f6rten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterlie\u00df auch als Komponist ein wertvolles und umfangreiches \u0152uvre. Mit seinen 24 Bl\u00e4serquintetten schuf er die Grundlage f\u00fcr das Repertoire derartiger Kammerensembles.\n", "source": 5804}}, {"model": "metainfo.text", "pk": 21723, "fields": {"kind": 131, "text": "Reicha\u00a0(Rejcha) Anton (Anton\u00edn) Josef, Komponist und Musikp\u00e4dagoge. * Prag, 26. 2. 1770; \u2020 Paris, 28. 5. 1836.", "source": 5804}}, {"model": "metainfo.text", "pk": 27186, "fields": {"kind": 130, "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808\u201320 lebte er in Wien und stud. bei Streicher, Albrechtsberger und Salieri. M. unterrichtete selbst, auch in der besten Ges. M., dessen Ruhm als Pianist und Komponist (seine Variationen \u00fcber den Alexander-Marsch von 1815 blieben jahrzehntelang ein Pr\u00fcfstein pianist. Virtuosit\u00e4t) st\u00e4ndig wuchs, trat in Prag, Leipzig und Dresden auf. 1820 machte er ausgedehnte Reisen durch Deutschland, Holland, Belgien, Frankreich und England und hielt sich auch wieder l\u00e4nger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 \u00fcbersiedelte M. nach London und geh\u00f6rte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den f\u00fchrenden Pers\u00f6nlichkeiten des Musiklebens. 1846 \u00fcbernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der gro\u00dfen Pianisten seiner Zeit und setzte sich vor allem f\u00fcr Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des \u201eFidelio\u201c hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bem\u00fchte er sich tatkr\u00e4ftig um dessen Unterst\u00fctzung durch die Londoner Philharmonic Society.\n", "source": 8543}}, {"model": "metainfo.text", "pk": 27187, "fields": {"kind": 131, "text": "Moscheles\u00a0Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; \u2020 Leipzig, 10. 3. 1870.", "source": 8543}}, {"model": "metainfo.text", "pk": 30762, "fields": {"kind": 130, "text": "Sohn des Esterh\u00e1zyschen Verwalters Adam L. (1776\u20131827), Neffe des Vorigen, Vetter des Arztes und Schriftstellers Joseph Anton L. (s. d.) und des Folgenden; erhielt den ersten Klavierunterricht vom Vater. Im August oder September 1819 d\u00fcrfte er in Baden bei Wien erstmals \u00f6ff. aufgetreten sein. Weitere Konzerte folgten in \u00d6denburg und Pre\u00dfburg. Auf Grund des letzten (26. 11. 1820) setzten ihm ung. Magnaten ein Studienstipendium aus. Da J. N. Hummels (s. d.) Forderungen zu hoch waren, brachte der Vater den Knaben nach Wien zu C. Czerny (s. d.). Neben dessen Klavierunterricht erhielt er Unterweisung in Musiktheorie durch A. Salieri. 1822 wurde der Elfj\u00e4hrige zur Mitarbeit an A. Diabellis (s. d.) \u201eVaterl\u00e4ndischem K\u00fcnstlerverein\u201c eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er \u00f6ff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum gek\u00fc\u00dft. Der Erl\u00f6s dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die M\u00f6glichkeit zur \u00dcbersiedlung nach Paris; auf der Reise und sp\u00e4ter von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausl\u00e4nder die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., haupts\u00e4chlich nach der Methode Kalkbrenners (s. d.) fort, stud. aber Musiktheorie bei F. Paer und A. Reicha. Er blieb bis 1837 in Paris und unterrichtete in den h\u00f6chsten Kreisen. Berlioz und Paganini regten seine k\u00fcnstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem pers\u00f6nlichen Kontakt stand. 1835\u201339 lebte L. mit Gfn. Marie d\u2019Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die K\u00fcnstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzertt\u00e4tigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa f\u00fchrte. In Kiew begegnete er 1847 der F\u00fcrstin Carolyne Sayn-Wittgenstein, welche ihren Mann verlie\u00df und sich schlie\u00dflich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum gro\u00dfherzoglichen Kapellmeister in au\u00dferordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausge\u00fcbt hatte und nun in vollem Ma\u00dfe aufnahm. Seine Lebensgemeinschaft mit der F\u00fcrstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verh\u00e4ltnissen entfaltete er eine erfolgreiche k\u00fcnstler. T\u00e4tigkeit, welche in dem selbstlosen Eintreten f\u00fcr R. Wagner gipfelte. Wahrscheinlich unter dem Einflu\u00df der F\u00fcrstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither f\u00fchrte er ein unstetes und unbefriedigtes Wanderleben, kehrte f\u00fcr kurze Zeit auch nach Weimar zur\u00fcck, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fu\u00dfend, die Klaviertechnik ungeheuer ausgebaut, in Richtung auf den Orchesterklang hin, auf eine neue Gesanglichkeit vom romant. Lied her und auf die von ihm bedeutend erweiterten M\u00f6glichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilit\u00e4t des Anschlages. Nicht weniger hat L. als Komponist gewirkt, hier vor allem auf harmon. Gebiet, wegweisend aber auch in der Auslotung der techn. und formalen M\u00f6glichkeiten \u00fcberhaupt und in der Programmatik der inhaltlichen Erf\u00fcllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gr\u00fcndete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n", "source": 10332}}, {"model": "metainfo.text", "pk": 30763, "fields": {"kind": 131, "text": "Liszt\u00a0Franz von, Komponist. * Raiding, Kom. \u00d6denburg (Burgenland), 22. 10. 1811; \u2020 Bayreuth (Oberfranken), 31. 7. 1886.", "source": 10332}}, {"model": "metainfo.text", "pk": 44908, "fields": {"kind": 130, "text": "Von ihrer Mutter und t\u00fcchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male \u00f6ffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n", "source": 17415}}, {"model": "metainfo.text", "pk": 44909, "fields": {"kind": 131, "text": "Blahetka\u00a0Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; \u2020 Boulogne sur Mer, 1. 1. 1885.", "source": 17415}}, {"model": "metainfo.text", "pk": 45290, "fields": {"kind": 130, "text": "B. stammt aus einer aus dem Niederl\u00e4ndischen eingewanderten Familie, sein erster Lehrer, Chr. G. Neefe, vermittelte ihm die Kenntnis bedeutender Meisterwerke und machte publizistisch die Fachwelt auf das junge Talent aufmerksam und das Wohlwollen des Kurf\u00fcrsten Maximilian, des j\u00fcngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde f\u00fcr den weiteren \u00e4u\u00dferen Lebensweg B.s entscheidend, zumal der aus \u00d6sterr. an den K\u00f6lner Hof gekommene Graf Franz Adam Waldstein ihm die f\u00fcr die ersehnte Wr. Lehrzeit n\u00f6tige geldliche Unterst\u00fctzung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd f\u00f6rderte, wurde aber nicht sein Sch\u00fcler, da die Todeskrankheit der Mutter B.s R\u00fcckkehr forderte. Als sie am 17. 7. 1787 starb, mu\u00dfte B. nun f\u00fcr den entm\u00fcndigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurf\u00fcrstliche Hilfe nach Wien, wo er den gew\u00fcnschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schlo\u00df. Seine von da an w\u00e4hrende Bindung an Wien ist vor allem Erzh. Rudolf und den F\u00fcrsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosph\u00e4re Wiens, in der B. zunehmend Verst\u00e4ndnis als K\u00fcnstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikst\u00e4dten begehrt wurden, erfolgte oft auch widerrechtlich; B.s Kampf dagegen war nur ein Zug seiner steigenden inneren Auflehnung gegen manche Unvollkommenheiten des polit. und soz. Lebens, mit deren Problematik sich sein Gerechtigkeitssinn oft st\u00fcrmisch auseinandersetzte (s. die annullierte Widmung der\u201cEroica\u201d an Napoleon, als dieser sich zum K. kr\u00f6nen lie\u00df). Um 1800 begann sein Geh\u00f6r zu schwinden. 1815 wurde er taub. Das \u201eHeiligenst\u00e4dter Testament\u201c von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die \u00fcbermenschlichen moralischen Kr\u00e4fte, die ihn dennoch am Werk lie\u00dfen, das sich in jener Katastrophenzeit zur F\u00fclle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der fr\u00fcher als Interpret seiner Werke oder als Improvisator am Klavier und spr\u00fchender Geist gesellschaftlich brilliert hatte, immer mehr abschlo\u00df, l\u00f6sten die Freunde Oliva, Schindler und Holz jene gl\u00e4nzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste gro\u00dfe Musiker, der ein warmes Verh\u00e4ltnis zur Natur bekennt, auch hierin Haydn n\u00e4her als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als K\u00fcnder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 k\u00fcndigt sich sein Leberleiden an, das B.s sonst so robuste Gesundheit untergrub; 1826, auf dem Heimweg von einem Landaufenthalt bei seinem Bruder Johann in Gneixendorf bei Krems, \u00fcberfiel ihn eine Lungenentz\u00fcndung, zu der pl\u00f6tzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n", "source": 17608}}, {"model": "metainfo.text", "pk": 45291, "fields": {"kind": 131, "text": "Beethoven\u00a0Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; \u2020 Wien, 26. 3. 1827.", "source": 17608}}, {"model": "metainfo.text", "pk": 47030, "fields": {"kind": 130, "text": "Tochter von \u2192Adolf B\u00e4uerle und seiner ersten Frau Antonie B\u00e4uerle, geb. Egger. \u2013 B. zeigte schon in fr\u00fchester Kindheit eine Doppelbegabung f\u00fcr Musik und Sprachen, die in ihrer Erziehung sehr gef\u00f6rdert wurde. So erhielt sie Unterricht bei \u2192Carl Czerny. Dennoch beschr\u00e4nkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und \u00e4hnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Gro\u00dfbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische T\u00e4tigkeit f\u00fcr die \u201eWiener Theater-Zeitung\u201c (\u201eWiener allgemeine Theaterzeitung\u201c) ihres Vaters unter ihren Pseudonymen (auch \u201eF\u2026\u201c). B. war au\u00dferdem auch eine \u00fcberaus produktive \u00dcbersetzerin aus dem Englischen und Franz\u00f6sischen, u. a. \u00fcbertrug sie die Novelle \u201eDer Spion der vornehmen Welt\u201c von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), \u201eMi\u00df Mary, oder die Erzieherin\u201c (in: Wiener allgemeine Zeitung f\u00fcr Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und \u201eGilbert und Gilberte\u201c von Eug\u00e8ne Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), \u201eAntonie, die Tochter der Berge\u201c (ebd., 1850, Nr. 157\u2013176, 180\u2013201), \u201eDer letzte Irl\u00e4nder\u201c (ebd., 1851, Nr. 293ff.) und \u201eDie Marquise von Norville\u201c von \u00c9lie Berthet (1856), \u201eConcino Concini oder Die Tochter des Blinden\u201c (1855, 1856 Neuaufl. unter dem Titel \u201eDer Menschenj\u00e4ger oder Der Blinde\u201c) von Emanuele Gonzal\u00e8s sowie \u201eDie letzte der Feen\u201c von George Payne Rainsford James (1849). Einige dieser \u00dcbersetzungen erschienen auch im \u201eBelletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen\u201c des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der \u201eOstdeutschen Post\u201c und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift \u201eDer Salon\u201c erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, f\u00fchrte sie gemeinsam mit dem Redakteur Moritz Morl\u00e4nder (eigentlich Moriz Engl\u00e4nder) die \u201eWiener Theaterzeitung\u201c ab J\u00e4nner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. v\u00f6llig zur\u00fcckgezogen.\n", "source": 17852}}, {"model": "metainfo.text", "pk": 47031, "fields": {"kind": 131, "text": "B\u00e4uerle Friederike, Ps. Friedrich Horn, Schriftstellerin, \u00dcbersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Nieder\u00f6sterreich), 17. 7. 1896.", "source": 17852}}, {"model": "metainfo.text", "pk": 47126, "fields": {"kind": 130, "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, B\u00f6hmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zun\u00e4chst als Oboist beim Milit\u00e4r und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. \u2013 Wenzel Czernys T\u00e4tigkeit als Klavierlehrer f\u00fchrte die Familie 1791\u201395 nach Polen. So erhielt C., der bereits mit drei Jahren Klavier zu spielen begann und mit sieben seine ersten Kompositionen zu Papier brachte, den ersten Klavierunterricht auch von seinem Vater und konnte dank seiner au\u00dfergew\u00f6hnlichen Begabung bereits als Neunj\u00e4hriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung f\u00fcr C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei \u2192Ludwig van Beethoven, der ihn unverz\u00fcglich als Sch\u00fcler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Urauff\u00fchrung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere fr\u00fch, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Sch\u00fclerinnen und Sch\u00fcler waren Theodor D\u00f6hler, Stephen Heller, \u2192Sigismund Thalberg, \u2192Marie Leopoldine Blahetka, Ninette de Belleville sowie \u2192Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine \u201e\u00c9tudes d\u2019ex\u00e9cution transcendante\u201c). Auch Beethovens Neffe Karl wurde ein Sch\u00fcler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, \u2192Ignaz Moscheles\u2019 und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken f\u00fcr Klavier verbunden, die sich an Anf\u00e4nger (etwa \u201eDie Schule der Gel\u00e4ufigkeit\u201c) ebenso richten wie an bereits gereifte Pianisten (\u201eSchule des Virtuosen\u201c). Dazu kommen St\u00fccke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die gr\u00f6\u00dfte Popularit\u00e4t erlangte C.s \u201eVollst\u00e4ndige theoretisch-practische Pianoforte-Schule \u2026\u201c (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen \u0152uvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Ch\u00f6re, Ges\u00e4nge und B\u00fchnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einfl\u00fcsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten St\u00fccke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Dar\u00fcber hinaus war C. als Musiktheoretiker t\u00e4tig. Er verfasste eine \u201eSystematische Anleitung zum Fantasieren auf dem Pianoforte\u201c, z\u00e4hlte zu den ersten Editoren einer Bach-Gesamtausgabe und \u00fcbersetzte vier umfangreiche Kompositions-Traktate von \u2192Anton Reicha. 1842 schrieb C. seine Autobiographie \u201eErinnerungen aus meinem Leben\u201c. Abgesehen von einigen Reisen nach Italien und einem Aufenthalt in Frankreich (1837) sowie England verbrachte er sein gesamtes Leben in seiner Heimatstadt. Er starb als wohlhabender Mann und vermachte sein Verm\u00f6gen k\u00fcnstlerischen und wohlt\u00e4tigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n", "source": 18525}}, {"model": "metainfo.text", "pk": 47127, "fields": {"kind": 131, "text": "Czerny (\u010cern\u00fd) Carl, Pianist, P\u00e4dagoge und Komponist. Geb. Leopoldstadt, Nieder\u00f6sterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); r\u00f6m.-kath.", "source": 18525}}, {"model": "metainfo.text", "pk": 47200, "fields": {"kind": 130, "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und National\u00f6konomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Ru\u00dfland auf, war sp\u00e4ter Mitleiter der \u201eFreien B\u00fchne\u201c in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, B\u00fchnendichter und Theaterkritiker. 1909 heiratete er die gro\u00dfe Wagnerinterpretin, Hofoperns\u00e4ngerin Anna v. Mildenburg (s. u.). 1912 \u00fcbersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni\u2013November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in M\u00fcnchen. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von au\u00dfergew\u00f6hnlicher Menschenkenntnis, ein gl\u00e4nzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., geh\u00f6ren zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen \u00d6sterreich.\n", "source": 102}}, {"model": "metainfo.text", "pk": 47201, "fields": {"kind": 131, "text": "Bahr\u00a0Hermann, Dichter und Schriftsteller. * Linz (O.\u00d6.), 19. 7. 1863; \u2020 M\u00fcnchen, 14. 1. 1934.", "source": 102}}, {"model": "metainfo.text", "pk": 47204, "fields": {"kind": 130, "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt t\u00e4tig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er kl\u00e4rte die Ursachen der hohen S\u00e4uglingssterblichkeit bei k\u00fcnstlicher Ern\u00e4hrung und besch\u00e4ftigte sich eingehend mit der Tuberkulose im Kindesalter. Sp\u00e4ter lehrte er in Berlin, Stra\u00dfburg und D\u00fcsseldorf. Durch Cz., einen der Begr\u00fcnder und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine gro\u00dfe Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine f\u00fchrende Stellung in der Kinderheilkunde inne.\n", "source": 114}}, {"model": "metainfo.text", "pk": 47205, "fields": {"kind": 131, "text": "Czerny\u00a0Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; \u2020 Berlin, 3. 10. 1941.", "source": 114}}, {"model": "metainfo.text", "pk": 47206, "fields": {"kind": 130, "text": "Absolvierte die Theres, Milit. Akad., 1842\u201348 \u00f6sterr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, fl\u00fcchtete 1849 nach Deutschland und lebte von 1850\u201357 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Pr\u00e4s. Mitre machte ihn zum Chef der Sektion des milit. Ingenieurwesens. Als solcher nahm er die Karte des paraguayisch-brasilianischen Grenzgebietes von Argentinien auf. lm Krieg der Tripelallianz gegen Paraguay 1865\u201369 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa F\u00e9 nach Esperanza und plante die Festungen in den Provinzen C\u00f3rdoba, Santa F\u00e9 und Buenos Aires. 1870\u201374 Leiter des Colegio Militar; 1875\u2013 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. f\u00fcr Mathematik in Concepci\u00f3n del Uruguay. 1884 in die Pr\u00fcfungskomm. des Colegio Militar und in die Comisi\u00f3n revisadora y proyectora berufen, 1884\u201395 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n", "source": 116}}, {"model": "metainfo.text", "pk": 47207, "fields": {"kind": 131, "text": "Czetz\u00a0Johann. * Gid\u00f3falva, 8. 6. 1822; \u2020 Buenos Aires, 6. 9. 1904.", "source": 116}}, {"model": "metainfo.text", "pk": 47208, "fields": {"kind": 130, "text": "Stud. in Br\u00fcnn und Olm\u00fctz unter Leitung seines Oheims Caroni, trat 1808 in das m\u00e4hrisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekret\u00e4r bei der Obersten Justizstelle in Wien.\n", "source": 117}}, {"model": "metainfo.text", "pk": 47209, "fields": {"kind": 131, "text": "Czikann\u00a0Johann Jakob Heinrich, Beamter und Schriftsteller. * Br\u00fcnn, 10. 7. 1789; \u2020 Br\u00fcnn, 10. 6. 1855.", "source": 117}}, {"model": "metainfo.text", "pk": 47210, "fields": {"kind": 130, "text": "Sohn des Christian C.-G., trat 1826 in die Armee ein, 1839 Obst. und Rgtskmdt., 1846 GM. und Brigadier in Prag, 1848 in Mailand; k\u00e4mpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenb\u00fcrgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. Gy\u00f6rgy und Kaszon-Ujfalu; Landeskommandierender in B\u00f6hmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, k\u00e4mpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vlie\u00df; 1866 Kmdt. des 1. Armeekorps gegen Preu\u00dfen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n", "source": 108}}, {"model": "metainfo.text", "pk": 47211, "fields": {"kind": 131, "text": "Clam-Gallas\u00a0Eduard Graf, General. * Prag, 11. 3. 1805; \u2020 Wien, 17. 3. 1891.", "source": 108}}, {"model": "metainfo.text", "pk": 47212, "fields": {"kind": 130, "text": "\u00c4ltester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853\u201359 Landespr\u00e4s. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorit\u00e4t; haupts\u00e4chlich nach seinen Vorschl\u00e4gen entstand das Oktoberdiplom; F\u00fchrer der feudal-klerikal-slaw. und f\u00f6deralistischen Partei, seit 1862 nur mehr im Landtag. Er war einer der Urheber der Abstinenzpolitik der Tschechen und konzipierte 1871 die Fundamentalartikel; unter Taaffe kehrten die Tschechen 1879 in den Reichsrat zur\u00fcck und C. war wie vorher als Generalreferent des Budgets t\u00e4tig; 1884 zog er sich krankheitshalber vom \u00f6ffentlichen Leben zur\u00fcck; seit 1859 Geh. Rat, seit 1861 Pr\u00e4s. des B\u00f6hmischen Mus., Ehrenmitgl. der Kgl. B\u00f6hm. Ges. d. Wiss.\n", "source": 109}}, {"model": "metainfo.text", "pk": 47213, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; \u2020 Prag, 5. 6. 1887.", "source": 109}}, {"model": "metainfo.text", "pk": 47214, "fields": {"kind": 130, "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des F\u00fcrsten Thun F\u00fchrer der Rechten im Herrenhaus, stand hier und im b\u00f6hmischen Landtag den Tschechen nahe. Im Weltkrieg k\u00e4mpfte er an der russ. und an der italien. Front und r\u00fcckte von den Tschechen ab, als diese immer mehr auf die Zerst\u00f6rung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpr\u00e4s. Er suchte vergeblich, Vertreter aller \u00f6sterr. Nationalit\u00e4ten ins Kabinett zu berufen, um einen langfristigen Ausgleich mit Ungarn zustandezubringen, aber die Tschechen lehnten ab; er setzte das Parlament erfolglos wieder in seine Rechte ein, verstimmte die Deutschen, deren W\u00fcnsche nicht erf\u00fcllt wurden und vermochte nicht, die Tschechen, S\u00fcdslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917\u201319 Milit\u00e4rgouverneur von Montenegro. Pr\u00e4s. der Vereinigung kathol. Edelleute \u00d6sterr., Ritter des Ordens vom Goldenen Vlie\u00df, Geh. Rat und K\u00e4mmerer.\n", "source": 110}}, {"model": "metainfo.text", "pk": 47215, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; \u2020 Clam b. Grein, 7. 3. 1932.", "source": 110}}, {"model": "metainfo.text", "pk": 47216, "fields": {"kind": 130, "text": "Stud. in Marburg und Gie\u00dfen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. f\u00fcr Zoologie in W\u00fcrzburg, 1870 in G\u00f6ttingen, 1873 f\u00fcr Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gr\u00fcnder er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in G\u00f6ttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n", "source": 111}}, {"model": "metainfo.text", "pk": 47217, "fields": {"kind": 131, "text": "Claus\u00a0Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; \u2020 Wien, 18. 1. 1899.", "source": 111}}, {"model": "metainfo.text", "pk": 47218, "fields": {"kind": 130, "text": "Stud. in G\u00f6ttingen und Berlin, 1855 Dr. phil., 1857\u201360 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. f\u00fcr Arch\u00e4ologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete arch\u00e4ologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Arch\u00e4ologie, Kunstgeschichte und klass. Philologie verbindende Lehrt\u00e4tigkeit. Er begr\u00fcndete die Wr. Vorlegebl\u00e4tter, errichtete 1876 zusammen mit O. Hirschfeld das Arch\u00e4olog.-epigr. Seminar, f\u00fchrte zwei \u00f6sterr. Grabungskampagnen auf der Insel Samothrake durch, rief das gro\u00dfe Werk der Wr. Akad. d. Wiss. \u201eDie attischen Grabreliefs\u201c ins Leben und gab in 3 Heften der Denkschriften \u201eR\u00f6mische Bildwerke einheimischen Fundorts in \u00d6sterreich\u201c heraus. 1877\u201387 \u00fcbernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887\u20131905 leitete er als Gen.-Sekr. das Arch\u00e4olog. Inst. des Dt. Reiches, dem er 1903 in der R\u00f6m.-german. Komm. auch eine Zentralstelle f\u00fcr die arch\u00e4olog. Heimatforschung anschlo\u00df. In seinen beiden letzten Stellungen galten seine Arbeiten vor allem den von ihm angeregten Ausgrabungen in Pergamon und den dort gemachten Funden. C. hat die versch. Gebiete der Arch\u00e4ologie durch bahnbrechende Werke gef\u00f6rdert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n", "source": 112}}, {"model": "metainfo.text", "pk": 47219, "fields": {"kind": 131, "text": "Conze\u00a0Alexander, Arch\u00e4ologe. * Hannover, 10. 12. 1831; \u2020 Berlin, 19. 7. 1914.", "source": 112}}, {"model": "metainfo.text", "pk": 47220, "fields": {"kind": 130, "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. K\u00fcnste, hatte 1860\u201364 ein Atelier in M\u00fcnchen, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg f\u00fcr das Arsenal auszuf\u00fchren, leitete 1883 die Jubil\u00e4umsausstellung zur T\u00fcrkenbelagerung im Rathaus, stellte 1886 die st\u00e4dtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. K\u00fcnste.\n", "source": 113}}, {"model": "metainfo.text", "pk": 47221, "fields": {"kind": 131, "text": "Costenoble\u00a0Karl, Bildhauer. * Wien, 26. 11. 1837; \u2020 Wien, 20. 6. 1907.", "source": 113}}, {"model": "metainfo.text", "pk": 47226, "fields": {"kind": 130, "text": "Stud. in Prag Jus; ao. Prof. f\u00fcr Rechtsgeschichte an der Univ. Prag; Mitgl. der B\u00f6hm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des b\u00f6hm. Stadtrechtes.\n", "source": 103}}, {"model": "metainfo.text", "pk": 47227, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Jarom\u00edr, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; \u2020 Prag, 16. 10. 1914.", "source": 103}}, {"model": "metainfo.text", "pk": 47228, "fields": {"kind": 130, "text": "Sohn des Dichters Franz Ladisl. C., kam mit seinem Vater nach Breslau, wo er die unteren Klassen des kathol. Gymn. besuchte, Deutsch lernte und sein erstes Herbarium anlegte. 1849 kehrte die Familie nach Prag zur\u00fcck. Nach dem Tode des Vaters nahm sich der Physiologe Purkyne seiner an und bei ihm lernte C. auch die exakte Methode der mikroskopischen Untersuchung. Noch vor Beendigung seiner Studien erschienen die ersten botanischen Aufs\u00e4tze. Nach Vollendung der Univ. wurde er Gymnasialsupplent in Komotau, wo er die Flora des Erzgebirges kennenlernte. 1860 Kustos am Botanischen Mus. in Prag, 1863 Dr.phil., 1866 Doz. an der Prager Technik, dann Vorstand der botanischen Sektion des \u201eKomitees f\u00fcr die naturwiss. Durchforschung B\u00f6hmens\u201c und Mitgl. der \u201eB\u00f6hmischen Ges. d. Wiss.\u201c\n", "source": 104}}, {"model": "metainfo.text", "pk": 47229, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Ladislav, Botaniker. * Prag, 29. 11. 1834; \u2020 Prag, 24. 11. 1902.", "source": 104}}, {"model": "metainfo.text", "pk": 47230, "fields": {"kind": 130, "text": "Gr\u00fcndete 1842 eine Fabrik f\u00fcr Blechblasinstrumente und baute eine Anzahl versch. geformter Kontraba\u00dfinstrumente f\u00fcr die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n", "source": 105}}, {"model": "metainfo.text", "pk": 47231, "fields": {"kind": 131, "text": "Cerven\u00fd\u00a0V\u00e1clav Franti\u0161ek, Instrumentenmacher. * Dubec (B\u00f6hmen), 27. 9. 1819; \u2020 K\u00f6niggr\u00e4tz, 19. l. 1896.", "source": 105}}, {"model": "metainfo.text", "pk": 47232, "fields": {"kind": 130, "text": "Sohn des Malers Matthias Ch., befa\u00dfte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. K\u00fcnste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n", "source": 106}}, {"model": "metainfo.text", "pk": 47233, "fields": {"kind": 131, "text": "Charlemont\u00a0Hugo de, Maler. * Jamnitz, 18. 3. 1850; \u2020 Wien, 18. 3. 1939.", "source": 106}}, {"model": "metainfo.text", "pk": 47234, "fields": {"kind": 130, "text": "Stud. in Prag, 1771 Baccal., 1772 Priester, 1777 Pfarrer, 1779 Mitgl. des Prager Domkapitels, 1795 Bischof von Canea in partib., 1802 Bischof von Leitmeritz, hier als \u201eVater der Armen\u201c gepriesen, 1814 F\u00fcrsterzb. von Prag, 1815 inthronisiert. Gr\u00fcndete Schulen und Wohlt\u00e4tigkeitsanstalten.\n", "source": 107}}, {"model": "metainfo.text", "pk": 47235, "fields": {"kind": 131, "text": "Chlumczansk\u00fd\u00a0Wenzel Leopold von, Bischof. * Hostitz (B\u00f6hmen), 15. 11. 1749; \u2020 14. 6. 1830.", "source": 107}}, {"model": "metainfo.text", "pk": 47236, "fields": {"kind": 130, "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881\u201386 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollm\u00e4chtigter Min. in Belgrad, vertrat 1908 \u00d6sterr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913\u201315 a o. und bevollm\u00e4chtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der V\u00f6lkerbunds- und Friedensbewegung t\u00e4tig, Pr\u00e4s. der \u00f6sterr. V\u00f6lkerbundliga; Pazifist; Freund und F\u00f6rderer von Kunst und Wiss.\n", "source": 121}}, {"model": "metainfo.text", "pk": 47237, "fields": {"kind": 131, "text": "Dumba\u00a0Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; \u2020 Bodensdorf/Ossiachersee, 6. 1. 1947.", "source": 121}}, {"model": "metainfo.text", "pk": 47238, "fields": {"kind": 130, "text": "Stud. in Stuttgart und Berlin, arbeitete l\u00e4ngere Zeit im Atelier Siccardsburgs und Van der N\u00fclls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n", "source": 120}}, {"model": "metainfo.text", "pk": 47239, "fields": {"kind": 131, "text": "Doderer\u00a0Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; \u2020 Wien, 13. 5. 1900.", "source": 120}}, {"model": "metainfo.text", "pk": 47240, "fields": {"kind": 130, "text": "Sohn eines Bauern, zeigte fr\u00fch Interesse f\u00fcr Schnitzen und Zeichnen, aber erst nach dem Tode des Vaters gab er den Hof auf und ging 1860 nach Innsbruck, um bei Stolz die Bildschnitzerei zu erlernen. Auf dessen Rat wandte er sich der Malerei zu, ging 1862 an die Akad. in M\u00fcnchen, 1863\u201365 nach Paris, dann nach Tirol zur\u00fcck, 1867 wieder nach M\u00fcnchen, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einflu\u00df auf ihn aus\u00fcbte. 1878 Prof. an der M\u00fcnchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist au\u00dferdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten b\u00e4uerlichen Genremalerei.\n", "source": 118}}, {"model": "metainfo.text", "pk": 47241, "fields": {"kind": 131, "text": "Defregger\u00a0Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; \u2020 M\u00fcnchen, 2. 1. 1921.", "source": 118}}, {"model": "metainfo.text", "pk": 47242, "fields": {"kind": 130, "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899\u20131901 unter der Leitung von Sickel und Pastor am \u00d6sterr. Hist. Inst. in Rom, haupts\u00e4chlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917\u201346 (mit Unterbrechung von 1938\u201345) Ordinarius f\u00fcr Geschichte der Neuzeit. D., ein guter Kenner der Best\u00e4nde des Vat. Geheimarchivs, war 1929\u201338 als Nachfolger Pastors Dir. des \u00d6sterr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das \u00d6sterr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n", "source": 119}}, {"model": "metainfo.text", "pk": 47243, "fields": {"kind": 131, "text": "Dengel\u00a0Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; \u2020 Innsbruck, 9. 9. 1947.", "source": 119}}, {"model": "metainfo.text", "pk": 47276, "fields": {"kind": 130, "text": "Startete 1926 das erstemal bei einem Sch\u00fclerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen f\u00fcr M\u00e4dchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der M\u00e4dchen einen 1. und zwei 2. Pl\u00e4tze. 1929 gewann sie das Verbands-Neulings-Laufen f\u00fcr Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen f\u00fcr Damen in Innsbruck, Grummh\u00fcbel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen f\u00fcr Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Z\u00fcrich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die \u00f6sterr. Meisterschaft im Kunstlaufen f\u00fcr Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen f\u00fcr Damen in Z\u00fcrich und am Semmering. 1933 wurde sie abermals \u00f6sterr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine t\u00fcck. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein j\u00e4hes Ende.\n", "source": 122}}, {"model": "metainfo.text", "pk": 47277, "fields": {"kind": 131, "text": "Holovsky\u00a0Hilde, Kunstl\u00e4uferin. * Wien, 29. 4. 1917; \u2020 Wien, 3. 7. 1933.", "source": 122}}, {"model": "metainfo.text", "pk": 47384, "fields": {"kind": 130, "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887\u201394 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894\u20131903 Primarius an der Internen Abt. des K. Franz-Josef-Spitals und am Allg. Krankenhaus in Wien. 1901 tit. ao. Prof. an der Univ. Wien. 1903 o. Prof. f\u00fcr Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der \u00c4rzte in Wien, Mitgl. der Dt. Ges. f\u00fcr innere Med. und der Dt. Naturforscher und \u00c4rzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n", "source": 134}}, {"model": "metainfo.text", "pk": 47385, "fields": {"kind": 131, "text": "Lorenz\u00a0Heinrich, Internist. * Mies (Str\u00edbro, B\u00f6hmen), 13. 4. 1859; \u2020 Graz, 25. 3. 1945.", "source": 134}}, {"model": "metainfo.text", "pk": 47388, "fields": {"kind": 130, "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der \u201eKorrespondenz Wilhelm\u201c, die Polizei- und Hof\u00e4mter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim \u201eIllustrierten Wiener Extrablatt\u201c; 1876 war L. Kriegsberichterstatter im serb.-t\u00fcrk., 1877 im russ.-t\u00fcrk. und 1885 im bulgar.-serb. Krieg, 1878 in Bosnien. Ebenfalls als Reporter nahm L. am mazedon. Aufstand teil. Im Dienste seiner Redaktion unternahm er in den Folgejahren weite Reisen durch Europa, Nordamerika und weite Gebiete Afrikas. Am 2. 6. 1889 fuhr er mit einem Fiaker nach Paris zur Weltausst., wo ihm am 22. 6. ein triumphaler Empfang bereitet wurde. 1894 wurde er bei dem genannten Bl. stellvertretender Schriftleiter, 1898 (gem. mit J. Bauer, s.d.) Chefredakteur. L. war durch Feuilletons, Wr. Sittenschilderungen, Lokal- und Reiseberichte in weiten Kreisen bekannt geworden. Er war von wirkungsvoller Darstellungsf\u00e4higkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalit\u00e4t. Das \u201eIllustrierte Wiener Extrablatt\u201c war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des \u201eArmenvaters\u201c in seinem Bl. sowie als Viennensia-Sammler.\n", "source": 133}}, {"model": "metainfo.text", "pk": 47389, "fields": {"kind": 131, "text": "L\u00f6wy\u00a0Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (\u00dadlice, B\u00f6hmen), 14. 9. 1851; \u2020 Wien, 27. 12. 1905.", "source": 133}}, {"model": "metainfo.text", "pk": 47394, "fields": {"kind": 130, "text": "Sohn eines F\u00e4rbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und er\u00f6ffnete 1823 im 1. Bez. in der Weihburgg. einen Laden \u201eZur Kaiserin von \u00d6sterreich\u201c, 1824 einen Laden K\u00e4rntnerstr. 940, der 1844 vergr\u00f6\u00dfert wurde. 1824 wurde L. Meister und B\u00fcrger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glash\u00e4ndler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & G\u00f6rner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergr\u00f6\u00dferten Gesch\u00e4ftes vollst\u00e4ndig erneuert. L., nicht nur Glash\u00e4ndler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er h\u00e4ufig Reisen in Begleitung seiner S\u00f6hne Josef oder Ludwig unternahm), versuchte, nach franz\u00f6s. Pre\u00dfglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so da\u00df er viel franz\u00f6s. Pre\u00dfglas einf\u00fchren mu\u00dfte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenst\u00e4nde wurden nach Wien geliefert bzw. wurden auch Gegenst\u00e4nde nach L.s Entw\u00fcrfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten t\u00e4tig war, bezog Glas aus den b\u00f6hm. H\u00fctten und lie\u00df nach eigenen Mustern arbeiten. 1823\u201355 wurden Gl\u00e4ser im Biedermeierstil erzeugt. Die Fa. beteiligte sich an den Gewerbsproduktenausst. 1839 und 1845 in Wien, fertigte Spiegel und Luster an, wurde 1848 Sieger in einem Wettbewerb um die Beleuchtungseinrichtung im Palais des Vizekg. von \u00c4gypten und arbeitete f\u00fcr den Palazzo Reale in Venedig.\n", "source": 132}}, {"model": "metainfo.text", "pk": 47395, "fields": {"kind": 131, "text": "Lobmeyr\u00a0Josef, Fabrikant. * Grieskirchen (O.\u00d6.), 17. 3. 1792; \u2020 Wien, 8. 5. 1855.", "source": 132}}, {"model": "metainfo.text", "pk": 47402, "fields": {"kind": 130, "text": "Absolv. das Realgymn.; arbeitete bis 1868 f\u00fcr die Z. \u201eIllustrierte Welt\u201c, gab dann das demokrat. Bl. \u201eFreie Volksstimme\u201c heraus, war Korrespondent ausl\u00e4nd. Ztg. und begr\u00fcndete gem. mit S. Spitz 1870/71 das \u201e\u00d6sterreichisch-ungarische Volksblatt f\u00fcr Stadt und Land\u201c. Angeregt durch seine Bekanntschaft mit dem National\u00f6konomen L. v. Stein stud. er Volkswirtschaft und Statistik und gr\u00fcndete 1874 das Fachbl. \u201eGambrinus\u201c, welches gro\u00dfes Ansehen geno\u00df. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und N\u00e4hrausst. in Wien, 1904 k. Rat, Pr\u00e4s. des \u00f6sterr. Fachschriftstellerverbandes, Vizepr\u00e4s. des Reichsverbandes \u00f6sterr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n", "source": 130}}, {"model": "metainfo.text", "pk": 47403, "fields": {"kind": 131, "text": "Lichtblau\u00a0Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; \u2020 Abbazia (Opatija, Istrien), 10. 5. 1908.", "source": 130}}, {"model": "metainfo.text", "pk": 47404, "fields": {"kind": 130, "text": "Nach Absolv. der jurid. Stud. in Wien 1898 Konzipient in der k. k. Finanzprokuratur in Wien, dann Rechtspraktikant (Auskultant) beim Landesgericht Innsbruck, 1899 Richteramtspr\u00fcfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht f\u00fcr Zivilrechtssachen in Wien und 1927 Rat des Oberlandesgerichtes Wien. 1931 Vorsitzender Rat des Oberlandesgerichtes, wurde er im gleichen Jahr zum Rat des Verwaltungsgerichtshofes ernannt. L., der schon als Richter am Exekutionsgericht Wien durch seine vorz\u00fcglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich gr\u00f6\u00dfte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das \u00f6sterr. Exekutionsrecht l\u00fcckenlos erfa\u00dft und seinen Zusammenhang mit den \u00fcbrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsvertr\u00e4gen niedergelegt, tw. ber\u00fccksichtigt und dadurch die Exekutionsgrunds\u00e4tze eines gro\u00dfen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n", "source": 131}}, {"model": "metainfo.text", "pk": 47405, "fields": {"kind": 131, "text": "Lichtblau\u00a0Ludwig, Jurist. * Olm\u00fctz (Olomouc, M\u00e4hren), 25. 2. 1875; \u2020 Wien, 19. 12. 1935.", "source": 131}}, {"model": "metainfo.text", "pk": 47410, "fields": {"kind": 130, "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtspr\u00fcfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. f\u00fcr Botanik an der Univ. Graz, 1868 ao., 1869 o. Prof., 1876/77 Dekan, 1884/85 Rektor, 1873 erhielt er auch die Dion. des Botan. Gartens und die Supplierung der Lehrkanzel f\u00fcr Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begr\u00fcnder des Botan. Inst. der Univ., das gegen\u00fcber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatb\u00fccherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und T\u00fcbingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Pr\u00e4s. des Naturwiss. Ver. f\u00fcr Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Ver\u00f6ff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die \u00fcber Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbst\u00e4ndig erschienenen Werke geh\u00f6ren dazu, von denen die umfangreiche Monographie \u201eUntersuchungen \u00fcber die Lebermoose\u201c in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im K\u00e4rntner Landtag (1869\u201372) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n", "source": 128}}, {"model": "metainfo.text", "pk": 47411, "fields": {"kind": 131, "text": "Leitgeb Hubert,\u00a0Botaniker. * Portendorf b. Klagenfurt (K\u00e4rnten), 20. 10. 1835; \u2020 Graz, 5. 4. 1888 (Selbstmord).", "source": 128}}, {"model": "metainfo.text", "pk": 47414, "fields": {"kind": 130, "text": "Vater des Anatomen J\u00f3zsef v. L. (s. d.), Gro\u00dfvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Pre\u00dfburg stud. er Med. an den Univ. Wien und Pest, 1799 Dr. med. und Chirurgus des Kom. Gran. 1808 Prof. der Physiol. und der Anatomie an der Univ. Pest, 1809/10 und 1815\u201317 Dekan, 1818/19 Rektor. 1819 Prof. der Physiol. an der Univ. Wien. 1825 Statthaltereirat und Protomedicus, war er bis zu seinem Tode Dir. der Pester med. Fak. 1808 wurde er in den ung. Adelsstand erhoben. L., einer der ersten, der die Pockenimpfung in Ungarn anwandte (1799), erwarb sich auch 1831 gro\u00dfe Verdienste um die Bek\u00e4mpfung der Cholera. Er ma\u00df den psych. Vorg\u00e4ngen bei Erkrankungen und auch in der Therapie gro\u00dfe Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n", "source": 129}}, {"model": "metainfo.text", "pk": 47415, "fields": {"kind": 131, "text": "Lenhoss\u00e9k\u00a0Mih\u00e1ly Ign\u00e1c von, Physiologe. * Pre\u00dfburg, 11. 5. 1773; \u2020 Ofen (Buda, Ungarn), 11. 2. 1840.", "source": 129}}, {"model": "metainfo.text", "pk": 47418, "fields": {"kind": 130, "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen K\u00fcnste in Wien (bei Griepenkerl, s.d.) und M\u00fcnchen (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gr\u00fcndung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, M\u00e4rchen- und Landschaftsbildern, bet\u00e4tigte sich aber nach Gr\u00fcndung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einflu\u00df, mit au\u00dferordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schlo\u00df Esterhazy bei Pre\u00dfburg, Privatwohnungen der Maler Goltz und Ranzoni), B\u00fchnen- und Kost\u00fcmentw\u00fcrfe, Stickereien, F\u00e4cher, Kassetten, M\u00f6bel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60j\u00e4hrigen Regierungsjubil\u00e4um von K. Franz Joseph I. (s. d.) 1908. 1900\u201303 war er (als Vorg\u00e4nger von A. Roller) Ausstattungschef der Wr. Hofoper.\n", "source": 125}}, {"model": "metainfo.text", "pk": 47419, "fields": {"kind": 131, "text": "Lefler\u00a0Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; \u2020 Wien, 14. 3. 1919.", "source": 125}}, {"model": "metainfo.text", "pk": 47420, "fields": {"kind": 130, "text": "Tochter eines Rechtsanwaltes; stud. an den Univ. Wien und Heidelberg (M. Weber) Staatswiss., 1918 Dr.rer.pol. Nach 1918 redigierte sie in Wien die Frauenbeilage der Gewerkschaftsztg. \u201eDer Metallarbeiter\u201c und arbeitete als Sekret\u00e4rin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 \u00fcbernahm sie das Referat f\u00fcr Frauenarbeit in der Wr. Kammer f\u00fcr Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. \u201eArbeit und Wirtschaft\u201c. L., welche sich der Sozialdemokrat. Partei \u00d6sterr. angeschlossen hatte, heiratete 1921 den Redakteur der \u201eArbeiter-Zeitung\u201c Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den sp\u00e4teren Vorsitzenden der Vereinigung der Zeitungskorrespondenten bei den Vereinten Nationen. Sie bekleidete in der Bezirksorganisation Wien-Innere Stadt die Funktionen der Vorsitzenden des Bezirksbildungsausschusses und des Bezirksfrauenkomitees sowie der Obmannstellvertreterin der Bezirksorganisation. 1933 wurde sie in das Zentralfrauenkomitee der Sozialdemokrat. Partei berufen. 1934 war sie mit Otto L. eines der Gr\u00fcndungsmitgl. der illegalen Partei der \u201eRevolution\u00e4ren Sozialisten\u201c \u00d6sterr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der \u201eRevolution\u00e4ren Sozialisten\u201c. 1938 verhalf sie ihrem Mann zur Flucht ins Ausland, sie selbst wurde knapp vor der beabsichtigten Abreise verhaftet. Von Herbst 1939 bis zu ihrer Ermordung war sie im KZ Ravensbr\u00fcck.\n", "source": 126}}, {"model": "metainfo.text", "pk": 47421, "fields": {"kind": 131, "text": "Leichter\u00a0K\u00e4the, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; \u2020 Ravensbr\u00fcck (Brandenburg), 17. 3. 1942 (KZ).", "source": 126}}, {"model": "metainfo.text", "pk": 47422, "fields": {"kind": 130, "text": "Neffe des Gro\u00dfh\u00e4ndlers und Bankiers Markus Leidesdorfer v. Neuwall (s. d.); sollte Kaufmann werden, wandte sich aber gegen den Willen der Eltern dem Schauspielerberuf zu und debut. 1830 unter dem Namen Wallner in Krems. \u00dcber Bad Ischl, Wr. Neustadt, Laibach, Agram etc. kam L. 1835 nach Wien, wo er zuerst im Theater an der Wien und dann im Theater in der Leopoldstadt vorwiegend in Raimund-Rollen auftrat und besonders nach Raimunds Tod 1836, durch seine Raimunds Schauspielkunst getreu kopierende Darstellungsweise, gro\u00dfe Erfolge errang. 1839 ging er f\u00fcr zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle gr\u00f6\u00dferen St\u00e4dte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei St\u00e4dten f\u00fchrte L. auch die Dion. des Theaters. 1854 pachtete er das K\u00f6nigst\u00e4dt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Gesch\u00e4ftst\u00fcchtigkeit, seinen Flei\u00df und k\u00fcnstler. Sp\u00fcrsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerb\u00fchne erweitert hatte, bald lokale Ber\u00fchmtheit. 1864 lie\u00df er es vergr\u00f6\u00dfern und renovieren und er\u00f6ffnete es am 3. 12. als \u201eWallnertheater\u201c. Hatte er in den ersten Jahren seiner Dions.-T\u00e4tigkeit vor allem das moderne franz\u00f6s. Sittenst\u00fcck gepflegt, verwirklichte er in sp\u00e4teren Jahren mit Hilfe des Dichters D. Kalisch und seines vorz\u00fcglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gr\u00fcnden das Theater an C. Lebrun und unternahm nun einige gr\u00f6\u00dfere Reisen. Seine Reise- und Theatererlebnisse ver\u00f6ff. L., der auch Mitarbeiter der \u201eGartenlaube\u201c war, in viel gelesenen B\u00fcchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n", "source": 127}}, {"model": "metainfo.text", "pk": 47423, "fields": {"kind": 131, "text": "Leidesdorf\u00a0Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; \u2020 Nizza, 19. 1. 1876.", "source": 127}}, {"model": "metainfo.text", "pk": 47428, "fields": {"kind": 130, "text": "Bruder des Folgenden, Onkel des Juristen Stanko L. (s. d.); stud. an der Techn. Hochschule in Graz. Ab 1866 im Dienst an der Milit\u00e4rgrenze, zuerst in Temesv\u00e1r, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent f\u00fcr Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890\u201394 Sekret\u00e4r des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der \u201eVijesti\u201c (Berr.) dieses Ver. L. baute Stra\u00dfen (Ogulin\u2013Novi, Alt-Gradi\u0161ka\u2013Lipik), die Kanalisation des Jelas-Feldes und im s\u00fcd\u00f6stlichen Syrmien, Wasserleitungen f\u00fcr die St\u00e4dte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan f\u00fcr die Kanalisation von Agram etc.\n", "source": 124}}, {"model": "metainfo.text", "pk": 47429, "fields": {"kind": 131, "text": "Lapaine\u00a0Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; \u2020 Agram, 21. 2. 1923.", "source": 124}}, {"model": "metainfo.text", "pk": 47430, "fields": {"kind": 130, "text": "Tochter des Gro\u00dfindustriellen Josef v. Schroll (1821\u201391), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849\u201389), B\u00fcrgermeister der Stadt Braunau 1883\u201389, in zweiter Ehe ab 1892 mit dem Politiker und Gro\u00dfindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, \u00f6ff. Gesellschafterin der Fa. Benedikt Schrolls Sohn. Nach dem Tode Josef v. Schrolls wurden beide Schwestern Inhaberinnen der Firma, Johanna L., nach Vereinbarung, 1908 Alleininhaberin und Seniorchefin. Sie leitete die vielseitigen Industriebetriebe mit gro\u00dfer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (B\u00fcchereien, Krankenkasse, Spital etc.) f\u00fcr die bereits um die Jahrhundertwende ca. 2600 z\u00e4hlenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer L\u00e4ndchens.\n", "source": 123}}, {"model": "metainfo.text", "pk": 47431, "fields": {"kind": 131, "text": "Langer-Schroll\u00a0Johanna, Gro\u00dfindustrielle. * Braunau (Broumov, B\u00f6hmen), 2. 10. 1850; \u2020 ebenda, 9. 11. 1926.", "source": 123}}, {"model": "metainfo.text", "pk": 47432, "fields": {"kind": 130, "text": "Enkel des Freiburger Physikers J. J. M\u00fcller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van\u2019t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. M\u00fcnster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in M\u00fchlhausen, 1906 Priv.Doz. an der Univ. Basel, 1909 tit. Prof. M. wirkte ab 1911 als Leiter des anorgan.-wiss. und analyt. Laboratoriums bei den Farbenfabriken Bayer & Co. (Leverkusen), ab 1926 als Nachfolger J\u00fcptners (s. d.) als o. Prof. f\u00fcr chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich t\u00e4tig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivit\u00e4t und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefels\u00e4ure und Zement aus Gips und Ton gewann gro\u00dfe techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n", "source": 144}}, {"model": "metainfo.text", "pk": 47433, "fields": {"kind": 131, "text": "M\u00fcller\u00a0Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; \u2020 Wien, 9. 12. 1941.", "source": 144}}, {"model": "metainfo.text", "pk": 47446, "fields": {"kind": 130, "text": "Tochter eines Gutsbesitzers; kr\u00e4nkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkr\u00e4mpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so gro\u00dfes Aufsehen, da\u00df an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von G\u00f6rres, Brentano, Steinle, M\u00f6hler, D\u00f6llinger, Reisach und Ketteler besucht. 1841 \u00fcbersiedelte sie in das Tertiarinnenkloster in Kaltern. Als Mitgl. des 3. Ordens des Hl. Franziskus wurde sie seelsorglich von P. K. Soyer OFM betreut. Nach langem Leiden starb sie an Blutzersetzung. Die amtlichen Berichte \u00fcber sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n", "source": 143}}, {"model": "metainfo.text", "pk": 47447, "fields": {"kind": 131, "text": "M\u00f6rl\u00a0Maria Theresia von, Stigmatisierte. * Kaltern (S\u00fcdtirol), 16. 10. 1812; \u2020 ebenda, 11. 1. 1868.", "source": 143}}, {"model": "metainfo.text", "pk": 47448, "fields": {"kind": 130, "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer lie\u00df sich M. im Oktober 1843 als Matrose f\u00fcr die Kriegsmarine anwerben und machte 1844\u201346 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 k\u00e4mpfte er als Kmdt. eines Kanonenbootes in der Lagune, vor Ancona und bei der Blockade von Venedig. Nach verschiedenen Einschiffungen und Verwendungen in den folgenden Jahren war M. 1859 vor Lissa Kmdt. der Korvette \u201eMinerva\u201c, 1861/62 hatte er in Pola die Bauleitung der Fregatte \u201eSchwarzenberg\u201c, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapit\u00e4n mit Auszeichnung kommandierte. 1867 als Insel- und Festungskmdt. von Lissa, 1868 als Kmdt. des Seearsenals in Pola in Verwendung, unternahm M. 1869 eine Mission nach England, im Oktober dieses Jahres kommandierte er die in der Bucht von Cattaro zur Bek\u00e4mpfung des Aufstandes in S\u00fcddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871\u201383 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine gro\u00dfe administrative Begabung hatte, besa\u00df eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauauftr\u00e4gen f\u00fcr Schiffe trat er entschieden f\u00fcr die Besch\u00e4ftigung inl\u00e4nd. Firmen ein. Er war ein begeisterter Sammler klass. Altert\u00fcmer und ein bedeutender Numismatiker. Teile der \u201eSammlung Millosicz\u201c, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n", "source": 142}}, {"model": "metainfo.text", "pk": 47449, "fields": {"kind": 131, "text": "Millosicz\u00a0Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; \u2020 Leoben (Stmk.), 24. 7. 1890.", "source": 142}}, {"model": "metainfo.text", "pk": 47450, "fields": {"kind": 130, "text": "Sohn eines Weinbauern; stud. mit Hilfe seines Onkels, eines Landpfarrers, an den Gymn. in Warasdin und Marburg a. d. Drau, dann Phil. und Jus an den Univ. Graz (1838 Dr. phil.) und Wien (1841 Dr. jur.). 1837/38 suppl. er die philosoph. Lehrkanzel an der Univ. Graz und versuchte erfolglos, sich an der Univ. Innsbruck zu habil. Nach k\u00fcrzerer Praxis in Wr. Anwaltskanzleien bekam er 1844 mit Hilfe Kopitars (s. d.), der auf seine sprachliche Begabung aufmerksam geworden war, eine Amanuensisstelle an der Hofbibl. (1850 Skriptor, 1862 i. R.). 1849 wurde er ao., 1850 o. Prof. der slaw. Philol. und Literatur an der Univ. Wien, 1851/52, 1856/57 Dekan, 1854/55 Rektor, 1885 i. R. Pr\u00e4s. der Pr\u00fcfungskomm. f\u00fcr Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866\u20131869 Sekret\u00e4r der phil.-hist. Kl.), 1862 lebensl\u00e4ngliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Pr\u00e4s. des akadem. Ver. \u201eSlovenija\u201c in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zuk\u00fcnftigen \u00f6sterr. F\u00f6deration verlangte. 1849 war er slowen. Abg. beim Reichstag in Kremsier, wo er durch besonnene Haltung die Sympathie Stadions erweckte, der dann seine Ernennung zum ersten Prof. der Slawistik in \u00d6sterr. bewirkte. M., der schon im Gymn. gro\u00dfe sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einflu\u00df Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begr\u00fcnder der slaw. Philol. In der Kritik der Vergleichenden Grammatik des Sanskrit, Zend, Griech., Latein., Litau., Got. und Dt. von Bopp bewies M. 1844 die Notwendigkeit wiss. Erforschung nicht nur der von Bopp behandelten, sondern auch aller slaw. Sprachen und verfolgte unerm\u00fcdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewu\u00dftes Streben aller V\u00f6lker Europas nach einer gem. Sprache festzustellen (Neueurop\u00e4ismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkm\u00e4ler des Altslowen., wie M. irrt\u00fcmlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, M\u00e4hren und Ru\u00dfland bezeichnete, verfa\u00dfte und publ. er die \u201eVergleichende Grammatik der slavischen Sprachen\u201c. Vom Altslowen. ausgehend, analysierte er in unz\u00e4hligen Beispielen slaw. Spracherscheinungen und lie\u00df scheinbar nur das Wei\u00dfruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem \u201eeigenth\u00fcmlichen Zauber der Sprache\u201c, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdr\u00fcckte. Verh\u00e4ngnisvoll wurde ihm die von Kopitar \u00fcbernommene \u201ePannonische Theorie\u201c, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im \u00f6stlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. \u201eLexicon palaeoslovenico-graeco-latinum\u201c und das \u201eEtymologische W\u00f6rterbuch der slavischen Sprachen\u201c die bedeutendsten. Im Sinne des Neueurop\u00e4ismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begr\u00fcnder der rum\u00e4n. und alban. Philol. wurde. Er verfa\u00dfte umfangreiche Stud. \u00fcber die Mundarten und Wanderungen der Zigeuner Europas und edierte erfolgreich altkirchenslaw. Texte sowie serb. und griech. hist. Quellen. M. war auch in der Lehnwort-, Personen- und Ortsnamenforschung sowie in der Analyse der Volksepik bahnbrechend. Geringere Bedeutung haben dagegen seine mytholog. und polem. Schriften.\n", "source": 141}}, {"model": "metainfo.text", "pk": 47451, "fields": {"kind": 131, "text": "Miklosich\u00a0Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomer\u0161cak pri Ljutomeru, Unterstmk.), 20. 11. 1813; \u2020 Wien, 7. 3. 1891.", "source": 141}}, {"model": "metainfo.text", "pk": 47460, "fields": {"kind": 130, "text": "Stud. an der Exportakad. (Hochschule f\u00fcr Welthandel) in Wien, wo er die Lehramtspr\u00fcfung f\u00fcr h\u00f6here Handelsschulen und die Diplompr\u00fcfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule f\u00fcr Welthandel, 1931 Habil. f\u00fcr Betriebswirtschaftslehre an der Hochschule f\u00fcr Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. f\u00fcr Betriebswirtschaftslehre. 1938 wurde M. durch die Nationalsozialisten von der Hochschule entfernt. Nach Verhaftung (1942) und Verurteilung im selben Jahr zu sechs Jahren Zuchthaus wegen Kenntnis von verr\u00e4ter. Vorhaben und Unterlassung der Anzeige, w\u00e4hrend des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der B\u00f6rsenverkehr. Er verband in seinen Ver\u00f6ff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realit\u00e4t mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einflu\u00df von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbst\u00e4ndige Teildisziplin der Wirtschaftswiss. verstandenen Betriebswirtschaftslehre, von einer privatwirtschaftlich ausgerichteten Unternehmungslehre zu einer alle wirtschaftlichen Einheiten einer Volkswirtschaft untersuchenden Lehre, die somit auch die Haushalte einbeziehen sollte. Betriebs- und Volkswirtschaftslehre zeigen nach M. \u201eandere Seiten des wirtschaftlichen Geschehens\u201c, wobei von ersterer \u201eder Betrieb als eine mit konkreten Tatbest\u00e4nden und Aufgaben erf\u00fcllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens \u00fcberhaupt untrennbar verbunden erscheint\u201c.\n", "source": 140}}, {"model": "metainfo.text", "pk": 47461, "fields": {"kind": 131, "text": "Meithner\u00a0Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; \u2020 Wien, 13. 12. 1942.", "source": 140}}, {"model": "metainfo.text", "pk": 47466, "fields": {"kind": 130, "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der j\u00fcd. Deklassierten. Seine Lieder, die er in Gasth\u00e4usern und Sch\u00e4nken vortrug, sind von sozialen Motiven gepr\u00e4gt. Obwohl er im Zeitalter der gr\u00f6\u00dften K\u00e4mpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des j\u00fcd. Volksgesanges, W\u00f6lwel Zbarazer (Ehrenkranz), durchzog mit einigen Gef\u00e4hrten, die man als \u201eBroder-S\u00e4nger\u201c bezeichnete, Galizien, Rum\u00e4nien sowie Ru\u00dfland, wo sie seine wie auch \u00e4ltere j\u00fcd. Volkslieder vortrugen. Er war der erste der j\u00fcd. fahrenden Volkss\u00e4nger, der Vorl\u00e4ufer des modernen jidd. Theaters.\n", "source": 139}}, {"model": "metainfo.text", "pk": 47467, "fields": {"kind": 131, "text": "Margulies\u00a0Berl, Volkss\u00e4nger. * Brody (Galizien), ca. 1817; \u2020 b. Bukarest, ca. 1880.", "source": 139}}, {"model": "metainfo.text", "pk": 47468, "fields": {"kind": 130, "text": "Tochter des Malers Anton\u00edn M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Sch\u00fclerin ihres Vaters, dessen maler. Verm\u00e4chtnis sie aber nicht so selbst\u00e4ndig entfalten konnte wie ihre Br\u00fcder, welche sie materiell unterst\u00fctzen mu\u00dfte.\n", "source": 137}}, {"model": "metainfo.text", "pk": 47469, "fields": {"kind": 131, "text": "M\u00e1nesov\u00e1\u00a0Amalie, Malerin. * Prag, 21. 1. 1817; \u2020 Prag, Juni 1883.", "source": 137}}, {"model": "metainfo.text", "pk": 47470, "fields": {"kind": 130, "text": "Sohn des Malers Anton\u00edn M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ov\u00e1 (s. d.), Neffe des Folgenden; stud. 1838\u201351 an der Prager Akad. bei Tkadl\u00edk und Ruben, 1870/71 in D\u00fcsseldorf bei Vautier und begann unter dem Einflu\u00df der Akad. mit hist. Motiven in Genreart. Ab der zweiten H\u00e4lfte der 50er Jahre befa\u00dfte er sich mit volkst\u00fcmlichen Motiven, vor allem aus der Gegend von Bischofteinitz, und insbesondere mit Prager Typen. Er wurde zum bedeutendsten Vertreter der tschech. Genremalerei des 19. Jh. Seine Bilder haben intimen Zauber, sie sind durch den Sinn f\u00fcr die Atmosph\u00e4re des Milieus, durch Unmittelbarkeit, lyr. Zartheit, liebevollen Humor, manchmal durch melanchol. Klage gekennzeichnet. M. war auch ein ausgezeichneter Tiermaler, besonders von Pferden. Das zeichner. Werk nahm in seinem Schaffen einen bedeutsamen Platz ein. Auch als Illustrator t\u00e4tig, schuf er 52 Illustrationen zum 1. Tl. des Don Quichotte (1865, Holzschnitt). Mit seinem Bruder Josef M. begann er in den 50er Jahren ein Werk \u00fcber Trachtenstud. bei der l\u00e4ndlichen Bev\u00f6lkerung.\n", "source": 138}}, {"model": "metainfo.text", "pk": 47471, "fields": {"kind": 131, "text": "M\u00e1nes\u00a0Quido, Maler. * Prag, 17. 7. 1828; \u2020 Prag, 5. 8. 1880.", "source": 138}}, {"model": "metainfo.text", "pk": 47482, "fields": {"kind": 130, "text": "Sohn eines Privatiers und Handelsagenten; besuchte das Gymn. in Graz, war dann Schauspieleleve in Berlin, dramaturg. Berater am Stadttheater Innsbruck, Schauspieler, Szenenbildner und Regisseur an verschiedenen Provinzb\u00fchnen, 1917 am Residenztheater M\u00fcnchen, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehb\u00fcchern. Ab 1927 Autor bzw. Mitautor von Hollywood-Filmen; 1932 emigrierte er nach Frankreich und arbeitete in Paris mit dem Regisseur P. Czinner und der Schauspielerin E. Bergner zusammen, ab 1935 lebte er in London. Neben seiner dramaturg. T\u00e4tigkeit im Dokumentarfilmstudio von P. Rotha widmete er sich der Ausbildung von Filmautoren. Ungemein stilbildend, war M. der bedeutendste Drehbuchautor des dt. Stummfilms. Er arbeitete u. a. mit den Regisseuren R. Wiene, F. W. Murnau, L. Pick, L. Jessner und P. Czinner sowie mit den Schauspielern W. Krau\u00df, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Kl\u00f6pfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n", "source": 136}}, {"model": "metainfo.text", "pk": 47483, "fields": {"kind": 131, "text": "Mayer\u00a0Karl, Drehbuchautor. * Graz, 20. 2. 1894; \u2020 London, 1. 7. 1944.", "source": 136}}, {"model": "metainfo.text", "pk": 47484, "fields": {"kind": 130, "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Gesch\u00e4ftsf\u00fchrer gemacht. M.-S. besch\u00e4ftigte sich mit philosoph. und naturwiss. Stud., gr\u00fcndete 1829 das erste \u201eTiroler Mineralien-Comptoir\u201c und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im M\u00e4rz 1848 verfa\u00dfte er einen feurigen Aufruf \u201eA greachts Weartl von an alten Landesverteidiger an seini Mitbr\u00fcder\u201c, der gro\u00dfen Widerhall fand. Auf eigene Kosten r\u00fcstete er die 1. Innsbrucker Sch\u00fctzenkomp. aus, an deren Spitze er im Mai 1848 an die S\u00fcdfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein \u201eRadetzky-Album\u201c an (es enthielt Zeichnungen, Portr\u00e4ts, eine wertvolle Autographensmlg. etc.), welches er sp\u00e4ter dem Tiroler Landesmus. Ferdinandeum \u00fcbergab. M.-S. errichtete 1853 unter gro\u00dfem Kostenaufwand auf seinem Schlo\u00df B\u00fcchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gr\u00fcndete den 1. Arbeiterunterst\u00fctzungsver. und beteiligte sich an vielen humanit\u00e4ren Einrichtungen. 1865 verkaufte er sein Schlo\u00df und f\u00fchrte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. t\u00e4tig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen gro\u00dfe Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der \u201eTiroler Monatsbl\u00e4tter\u201c. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n", "source": 135}}, {"model": "metainfo.text", "pk": 47485, "fields": {"kind": 131, "text": "Mahl-Schedl von Alpenburg\u00a0Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Gr\u00fcnburg (O.\u00d6.), 27. 10. 1806; \u2020 Innsbruck, 1. 4. 1873.", "source": 135}}, {"model": "metainfo.text", "pk": 47486, "fields": {"kind": 130, "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882\u201385 war er Kapellmeister beim IR 74, 1885\u201390 Kapellmeister beim IR 28. N., ein sehr guter Geiger, vor allem aber ein vortrefflicher Dirigent, dem die Rgt.Musik des IR 74 ihren ausgezeichneten Ruf verdankt, war auch im Ausland mit viel Erfolg t\u00e4tig. Neben Rum\u00e4nien und Bulgarien z\u00e4hlen Holland und Belgien zu seinen wichtigsten k\u00fcnstler. Wirkungsst\u00e4tten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n", "source": 145}}, {"model": "metainfo.text", "pk": 47487, "fields": {"kind": 131, "text": "Nov\u00e1cek\u00a0Rudolf, Kapellmeister und Komponist. * Wei\u00dfkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; \u2020 Prag, 12. 8. 1929.", "source": 145}}, {"model": "metainfo.text", "pk": 47502, "fields": {"kind": 130, "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898\u20131903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904\u201319 wirkte er als Dir. am neugegr\u00fcndeten M\u00e4dchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes f\u00fcr Inneres und Unterricht t\u00e4tig, leitete ab 1922 die Abt. f\u00fcr p\u00e4dagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform f\u00fcr alle Mittelschulen folgte. Er unterst\u00fctzte bes. die Ver.-M\u00e4dchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkr\u00e4fte und f\u00f6rderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908\u201310 erster Obmann des Ver. Lyzeum.\n", "source": 147}}, {"model": "metainfo.text", "pk": 47503, "fields": {"kind": 131, "text": "Ortmann\u00a0Rudolf, P\u00e4dagoge. * Reichenberg (Liberec, B\u00f6hmen), 10. 3. 1874; \u2020 Wien, 22. 11. 1939.", "source": 147}}, {"model": "metainfo.text", "pk": 47506, "fields": {"kind": 130, "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegr\u00fcndete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832\u201337 Vorlesungen \u00fcber Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848\u201360 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfa\u00dfte zahlreiche Aufs\u00e4tze aus dem Gebiet der Chemie und hielt in Innsbruck viele popul\u00e4rwiss. Vortr\u00e4ge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur f\u00fcr techn. Chemie scheiterte aus Geldmangel (1838).\n", "source": 146}}, {"model": "metainfo.text", "pk": 47507, "fields": {"kind": 131, "text": "Oellacher\u00a0Josef, Pharmazeut. * Pre\u00dfburg, 16. 2. 1804; \u2020 Innsbruck, 16. 8. 1880.", "source": 146}}, {"model": "metainfo.text", "pk": 47516, "fields": {"kind": 130, "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtspr\u00fcfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg t\u00e4tig. 1918\u20131924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent f\u00fcr das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor f\u00fcr Geol. und Pal\u00e4ontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfa\u00dfte u. a. mehrere Schulb\u00fccher und red. ab 1932 die Z. \u201eIzvestja muzejskega dru\u0161tva za Kranjsko\u201c. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n", "source": 151}}, {"model": "metainfo.text", "pk": 47517, "fields": {"kind": 131, "text": "Poljanec\u00a0Leopold, Biologe und Schulmann. * Rann (Bre\u017eice, Unterstmk.), 23. 9. 1872; \u2020 Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944.", "source": 151}}, {"model": "metainfo.text", "pk": 47522, "fields": {"kind": 130, "text": "Stud. Germanistik und Polonistik bei R. M. Werner und R. Pilat an der Univ. Lemberg, wo er auch zu A. Sauer Verbindung hatte; 1897 Dr. phil. 1889\u201398 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903\u201309 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, t\u00e4tig. 1914 Priv. Doz., 1915\u201321 hielt er an der Univ. Lemberg Vorlesungen aus dt. Philol. und dt. Literaturgeschichte. 1918/19 war er provisor. Doz. der Germanistik an der Univ. Warschau. P. war u. a. ab 1920 w. Mitgl. der Lemberger Wiss. Ges. Als Literaturwissenschafter leistete P. auf dem Gebiet der H\u00f6lderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, h\u00f6chste Anerkennung fand.\n", "source": 150}}, {"model": "metainfo.text", "pk": 47523, "fields": {"kind": 131, "text": "Petzold\u00a0Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; \u2020 Lemberg (L\u2019viv), 15. 7. 1932.", "source": 150}}, {"model": "metainfo.text", "pk": 47530, "fields": {"kind": 130, "text": "Sohn des Philosophen Johann P. v. L. (1793\u20131866), Cousin des Folgenden, Neffe des Juristen und Politikers Thadd\u00e4us Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden K\u00fcnste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in D\u00fcsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden K\u00fcnste in Wien, an der er 1872\u20131901 als Prof. f\u00fcr Landschaftsmalerei wirkte, 1878\u201380 und 1897\u201399 Rektor. Nach seiner Pensionierung lebte er in N\u00fcrnberg und Berlin. \u00dcber pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf \u00d6l-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine \u00d6lbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Sch\u00fcler zu intensiven Naturstud. anhielt. Er beteiligte sich an den Wr. Akad.Ausst., u. a. 1858 und 1859. 1861 stellte er als Mitgl. im Wr. K\u00fcnstlerhaus aus, das ihm 1913 auch eine Ged\u00e4chtnisausst. widmete.\n", "source": 149}}, {"model": "metainfo.text", "pk": 47531, "fields": {"kind": 131, "text": "Peithner von Lichtenfels\u00a0Eduard, Maler und Radierer. * Wien, 18. 11. 1833; \u2020 Berlin, 22. 1. 1913.", "source": 149}}, {"model": "metainfo.text", "pk": 47536, "fields": {"kind": 130, "text": "Stud. 1839\u20131843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-M\u00fcnzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel f\u00fcr H\u00fctten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausr\u00fcstung der Labors betraut wurde. P. setzte die in Wien begonnenen chem. Arbeiten, u. a. Silberextraktion auf nassem Weg und Darstellung der reinen Uranverbindungen, fort; 1852 unternahm er in Joachimsthal im Auftrag der Obersten Montanverwaltung Versuche zur Verbesserung der Arbeitsmethoden und zur Auffindung neuer Verfahren bei der Verwertung einzelner Erze, deren Ergebnis die Silberextraktion unter Anwendung von unterschwefligsaurem Natron, Gewinnung von Nickel, Wismut und Kohlenoxyd, Ausscheidung des Arsens aus seinen Verbindungen in Erzen sowie die Darstellung der Uranfarben aus Pechblende waren. 1856 wurde in der Folge eine Uranaufbereitungsanlage in Joachimsthal gebaut. 1864 richtete P. in Wien das H\u00fcttenm\u00e4nn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum H\u00fcttenchemiker des gesamten \u00f6sterr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (sp\u00e4ter Vorstand des H\u00fcttenm\u00e4nn.-chem. Laboratoriums) ernannt. 1881 Oberbergrat, 1889 i. R., Hofrat. Erst durch P.s Verfahren der Urangewinnung aus Pechblende wurden die Forschungen des Ehepaars Curie erm\u00f6glicht.\n", "source": 148}}, {"model": "metainfo.text", "pk": 47537, "fields": {"kind": 131, "text": "Patera\u00a0Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; \u2020 Teschen (Cieszyn, \u00f6sterr. Schlesien), 26. 6. 1894.", "source": 148}}, {"model": "metainfo.text", "pk": 47540, "fields": {"kind": 130, "text": "Stud. ab 1782 an der Univ. Salzburg Phil. (1788 Mag.phil.), dann Theol. (1794 Dr. theol.); war nach seiner Priesterweihe (1793) als Seelsorger t\u00e4tig. 1801 wurde er Kanonikus des Kollegiatstiftes Maria Schnee, 1803 w. Konsistorialrat, 1810 Pfarrer und Dechant (damit auch Schuldistriktsinsp.) von Altenmarkt, 1832 erster Dechant des wiedererrichteten Kollegiatstiftes Seekirchen. R. ist der erste Historiograph des salzburg.-\u00f6sterr. Bildungswesens, \u00fcber das er grundlegende Beitrr. verfa\u00dfte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten \u00fcber theolog., p\u00e4dagog. und hist. Themen waren weit verbreitet.\n", "source": 158}}, {"model": "metainfo.text", "pk": 47541, "fields": {"kind": 131, "text": "Rumpler\u00a0Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; \u2020 Seekirchen (Salzburg), 17. 3. 1846.", "source": 158}}, {"model": "metainfo.text", "pk": 47542, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckermeisters; ab 1901 selbst\u00e4ndiger B\u00e4kkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912\u201325 im Wr. Gemeinderat, 1924\u201334 im Bundesrat; ab 1917 Vizepr\u00e4s., in der Folge Pr\u00e4s. des Dt.\u00f6sterr. Gewerbebundes. 1928 Kommerzialrat. R. hat mit seinen hist. Stud. wesentlichen Anteil am Aufschwung der Wr. Lokalgeschichtsschreibung in der Zwischenkriegszeit: Seine Geschichte des VII. und die des VIII. Wr. Gemeindebez. sind ebenso Standardwerke geblieben wie die gem. mit A. Schmieger verfa\u00dfte Stud. \u201eDas Ghetto in der Wiener Leopoldstadt\u201c (1926). Auch seine wertvollen Ver\u00f6ff. aus der Geschichte des Wr. B\u00e4ckergewerbes zeugen von R.s Flei\u00df im Erschlie\u00dfen von Quellenmaterial.\n", "source": 157}}, {"model": "metainfo.text", "pk": 47543, "fields": {"kind": 131, "text": "Rotter\u00a0Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; \u2020 Wien, 18. 9. 1945.", "source": 157}}, {"model": "metainfo.text", "pk": 47556, "fields": {"kind": 130, "text": "Aus urspr\u00fcnglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der nieder\u00f6sterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenk\u00fcrassieren die Feldz\u00fcge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in M\u00fcnchen, Berlin, Stuttgart, Stockholm und Paris t\u00e4tig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 K\u00e4mmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-d\u00e4n. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilko\u00e4r. f\u00fcr Schleswig-Holstein. Anschlie\u00dfend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der \u00f6sterr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Aufl\u00f6sung von kath. Kl\u00f6stern in russ. Polen, erzwungener \u00dcbertritt von unierten Christen zur Orthodoxie etc.) befa\u00dft. 1868 trat er wegen Differenzen mit Beust (s. d.) zur\u00fcck. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner ober\u00f6sterr. G\u00fcter Erlach und Tollet und wurde daneben in der \u00f6sterr. Innenpolitik au\u00dferordentlich aktiv. Er wurde 1869 als Vertreter des Gro\u00dfgrundbesitzes ober\u00f6sterr. Landtagsabg. 1885 Mitgl. der \u00f6sterr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des \u00f6sterr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Pr\u00e4lat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschl\u00fcssen des Frankfurter Katholikentages 1882 begr\u00fcndet wurde. 1888 wurde R. im ausw\u00e4rtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen w\u00e4hrend seiner Amtszeit geh\u00f6rten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren H\u00f6hepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein m\u00f6gliches Refugium in \u00d6sterr. zu gew\u00e4hren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) geno\u00df, \u00fcbte auch eine Vermittlert\u00e4tigkeit bei dessen famili\u00e4ren Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mu\u00dfte er auf Dr\u00e4ngen ung. Politiker von seinem Posten zur\u00fccktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssph\u00e4ren von Staat und Kirche in der sp\u00e4tjosefin. Zeit. Daneben war er Experte f\u00fcr die Grenzbereiche der r\u00f6m.-kath., unierten und orthodoxen Kirchen, auch f\u00fcr Ru\u00dfland und den Balkan. Obwohl f\u00fcr soziale Fragen aufgeschlossen, war er kein Sympathisant der Christlichsozialen, deren antisemit. Tendenzen er ablehnte. Vielfach geehrt und ausgezeichnet, u. a. Geh.Rat (1868), Kanzler des Leopold-Ordens und Gro\u00dfkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866\u20131951), folgte 1919 K. Karl (s. d) ins Exil.\n", "source": 156}}, {"model": "metainfo.text", "pk": 47557, "fields": {"kind": 131, "text": "Revertera von Salandra\u00a0Friedrich Graf, Diplomat und Politiker. * Lemberg (L\u2019viv), 21. 1. 1827; \u2020 Brixen (S\u00fcdtirol), 28. 4. 1904.", "source": 156}}, {"model": "metainfo.text", "pk": 47558, "fields": {"kind": 130, "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (N\u00d6) t\u00e4tig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814\u201324 Dir. des Priesterseminars, 1817\u201335 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. T\u00e4tigkeit. In zahlreichen Publ. besch\u00e4ftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine \u201ePastoral-Anweisung nach den Bed\u00fcrfnissen unsers Zeitalters\u201c, die als offizielles Vorlesebuch f\u00fcr alle \u00f6ff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einflu\u00df auf den Klerusnachwuchs. R., ein gro\u00dfer Wohlt\u00e4ter der kirchlichen Inst., z\u00e4hlte zu den ma\u00dfvollen Josefinern.\n", "source": 154}}, {"model": "metainfo.text", "pk": 47559, "fields": {"kind": 131, "text": "Reichenberger\u00a0Andreas, Theologe. * Wien, 24. 11. 1770; \u2020 Linz, 26. 10. 1854.", "source": 154}}, {"model": "metainfo.text", "pk": 47560, "fields": {"kind": 130, "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883\u201386 an der Hochschule f\u00fcr Bodenkultur in Wien, Forsting. Wirkte ab 1887 am bosn.-herzegowin. Landesmus. in Sarajevo (1913 Reg.Rat, 1919 i. R.) und organisierte die von ihm geleitete naturwiss. Abt. Ab 1926 Mitgl. des Ornitholog. Observatoriums in Laibach (Ljubljana). R.s Lebenswerk war der Ornithol. des Balkans gewidmet. Neben seiner T\u00e4tigkeit am Mus. in Sarajevo sammelte er Material f\u00fcr eine Beschreibung der V\u00f6gel der Marburger Umgebung und arbeitete bei der Aufstellung der ornitholog. Smlg. des Mus. in Marburg a. d. Drau (Maribor) mit, dem er eine Smlg. von Vogeleiern aus dem Drautal vermachte. R. wurde vielfach geehrt und ausgezeichnet, u. a. 1932 Dr. h. c. der Univ. Graz.\n", "source": 155}}, {"model": "metainfo.text", "pk": 47561, "fields": {"kind": 131, "text": "Reiser\u00a0Othmar, Ornithologe. * Wien, 21. 12. 1861; \u2020 Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936.", "source": 155}}, {"model": "metainfo.text", "pk": 47564, "fields": {"kind": 130, "text": "Sohn eines Baumwollwarenh\u00e4ndlers; wurde nach Absolv. der Techn. Milit\u00e4rakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898\u20131900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900\u201311 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914\u201316 war R. als Milit\u00e4rattach\u00e9 in Bukarest. 1916 wurde er als Obstlt. des Gen. Stabskorps zum Chef der Gen.Stabsabt. des l. Armeekmdo. und noch im selben Jahr zum Obst. des Gen. Stabskorps ernannt. Ab 1918 war R. Gen. Stabschef des XI. Korps, dann Gen. Stabschef der k. u. k. Besatzungstruppen in Rum\u00e4nien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Fl\u00fcgeladj. Kg. Ferdinands von Rum\u00e4nien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein B\u00fcndnis gegen das revolution\u00e4re Ru\u00dfland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen \u00d6sterr.-Ungarn, dem Dt. Reich, der T\u00fcrkei und Bulgarien einerseits und Rum\u00e4nien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n", "source": 153}}, {"model": "metainfo.text", "pk": 47565, "fields": {"kind": 131, "text": "Randa\u00a0Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, M\u00e4hren), 24. 5. 1874; \u2020 Czernowitz (Cernivci, Bukowina), 13. 8. 1941.", "source": 153}}, {"model": "metainfo.text", "pk": 47566, "fields": {"kind": 130, "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtspr\u00fcfung) u. a. bei Boltzmann (s. d.) und Frischauf (s. d.), dann an der Univ. Berlin Physik bei Helmholtz und Kirchhoff. In Graz war R. lange Mitgl. von A. v. Meinongs (s. d.) Philosoph. Societ\u00e4t. Er interessierte sich f\u00fcr Grenzgebiete der Mathematik und der Physik sowie f\u00fcr die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten ma\u00dfgeblich beeinflu\u00dft wurde. 1894\u201396 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. f\u00fcr theoret. Physik an der Univ. Innsbruck und Ass. K. Exners (s. d.) am Mathemat.-physikal. Inst. 1902 ao. Prof. an der Univ. Innsbruck, 1906 o. Prof. der mathemat. Physik an der Univ. Czernowitz (Cernivci), 1915 o. Prof. der theoret. Physik an der Univ. Graz, 1924/25 Dekan. R.\u2019 bedeutendste und tiefgreifendste Arbeit behandelt \u201eDie Grundlagen der Galilei-Newton\u2019schen Mechanik\u201c. Er ver\u00f6ff. auch einige wichtige experimentelle Arbeiten zur Frage der Gescho\u00dfgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895\u20131938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n", "source": 152}}, {"model": "metainfo.text", "pk": 47567, "fields": {"kind": 131, "text": "Radakovic\u00a0Michael, Physiker. * Graz, 25. 4. 1866; \u2020 Graz, 15. 8. 1934.", "source": 152}}, {"model": "metainfo.text", "pk": 47568, "fields": {"kind": 130, "text": "Nach der Schulausbildung in Gro\u00dfwardein (Oradea) und Temeswar (Timi\u00bfoara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der K\u00f6r\u00f6s. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von G\u00e1bor D\u00f6brentei (\u00bfGabriel D\u00f6brentei) am Burgtheater (Budai V\u00e1rsz\u00ednh\u00e1z) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, T\u00e4nzer und Inspizient t\u00e4tig war sowie seine ersten Theaterst\u00fccke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Sz\u00ednh\u00e1z) in Pest ein Engagement als Schauspieler (1837\u201354) und Bibliothekar (1837\u201340) und widmete sich schlie\u00dfl. der Regie (1854\u201373) sowie der Dramaturgie (1868\u201373). Ab 1865 war er Prof. und 1870\u201373 Dir. der Pester Schauspielschule. 1873 \u00fcbernahm er die Leitung des Nationaltheaters. Er f\u00f6rderte zahlreiche sp\u00e4ter bekannte Schauspieler und initiierte u.\u00a0a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. \u00fcber hundert Theaterst\u00fccke und zahlreiche Libretti, schrieb Schauspielerportr\u00e4ts (\u201eMagyar sz\u00edn\u00e9szek \u00e9letrajzai\u201c, 1878, 2.\u00a0Aufl. 1907) und \u00fcbers. u.\u00a0a. Goethes \u201eEgmont\u201c (1871) und \u201eFaust\u201c sowie Shakespeares \u201eRichard III.\u201c (1867) ins Ung. Sein dramaturg. Lehrbuch \u201eA dr\u00e1ma \u00e9s v\u00e1lfajai\u201c (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der franz\u00f6s. und Wr. B\u00fchnen und adaptierte diese meisterhaft f\u00fcr das ung. Publikum. Sowohl seine Lustspiele (\u201eR\u00f3zsa\u201c, 1840; \u201eLiliomfi\u201c, 1849; \u201eFenn az ernyo, nincsen kas\u201c, 1858, 7.\u00a0Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen (\u201eII. R\u00e1k\u00f3czi Ferenc fogs\u00e1ga\u201c, 1848; \u201eA tr\u00f3nkereso\u201c, 1868, 5.\u00a0Aufl. 1916, dt. \u201eDer Pr\u00e4tendent\u201c, 1881; \u201eStruensee\u201c, 1871) als auch seine unter dem Einfluss des Wr. Volksst\u00fccks und des franz\u00f6s. Melodramas entstandenen Volksst\u00fccke \u201eSz\u00f6k\u00f6tt katona\u201c (1843) und \u201eCig\u00e1ny\u201c (1853), mit denen er die Grundlage f\u00fcr diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgen\u00f6ss. Publikums. Ledigl. seine b\u00fcrgerl. Dramen (\u201eA lelenc\u201c, 1863; \u201eA f\u00e9ny \u00e1rnyai\u201c, 1865) und die St\u00fccke \u201eA strike\u201c (1871) sowie \u201eAz amerikai\u201c (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stie\u00dfen auf Unverst\u00e4ndnis. S. war einer der einflussreichsten Dramatiker des 19.\u00a0Jh. in Ungarn, seine St\u00fccke wurden in zahlreiche Sprachen \u00fcbers. und verfilmt (\u201eSz\u00f6k\u00f6tt katona\u201c, 1914; \u201eLiliomfi\u201c, 1916, 1954; \u201eCig\u00e1ny\u201c, 1925, 1941) und geh\u00f6ren auch heute noch zum Standardrepertoire der ung. B\u00fchnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Gro\u00dfwardein (Nagyv\u00e1radi Szigligeti Sz\u00ednh\u00e1z) sowie das Theater in Szolnok (Szigligeti Sz\u00ednh\u00e1z) sind nach ihm benannt. S. war ab 1840 k.\u00a0M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n", "source": 194}}, {"model": "metainfo.text", "pk": 47569, "fields": {"kind": 131, "text": "Szigligeti Ede (Edv\u00e1rd), bis 1834 J\u00f3zsef Szathm\u00e1ry, Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur. Geb. V\u00e1rad-Olaszi, Ungarn (Oradea-Olosig, RO), 8.\u00a03. 1814; gest. Budapest (H), 19.\u00a01. 1878; r\u00f6m.-kath.", "source": 194}}, {"model": "metainfo.text", "pk": 47570, "fields": {"kind": 130, "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Sch\u00e4fer; ab 1895 verheiratet mit Erna Szen\u00f3ner. \u2013 Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871\u201374 war S. 1882\u201384 Z\u00f6gling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887\u201389 die Kriegsschule in Wien. Seine milit\u00e4r. Laufbahn begann er 1882 als Gemeiner im Honv\u00e9d-Inf.baon.\u00a018. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k.\u00a0u.\u00a0k. Armee sowie bei der Honv\u00e9d und versah Truppendienst, u.\u00a0a. als Baon.kmdt., v.\u00a0a. in den Honv\u00e9d-Inf.rgt.\u00a04 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der F\u00fchrung der kgl. ung. Inf.div.\u00a038 betraut, an deren Spitze er \u2013 ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps \u2013 ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz k\u00e4mpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (U\u017eoc\u2019kyj pereval) in den Karpaten gegen die Russen. 1917 erfolgte seine Ernennung zum kgl. ung. Landesverteidigungsminister in Budapest (ab August Gen. der Inf.). Diesen Posten bekleidete er bis zum Austritt Ungarns aus der Realunion Ende Oktober 1918. Anfang 1919 wurde S. pensioniert, einen Monat sp\u00e4ter auf Gehei\u00df der Berinkey-Regierung in St.\u00a0Gotthard (Szentgotth\u00e1rd) interniert und w\u00e4hrend der R\u00e4terepublik gem. mit \u00bfJ\u00f3zsef Frh. Szter\u00e9nyi v. Brass\u00f3 in Budapest gefangen gehalten. Nach dem Sturz der R\u00e4terepublik war S. Ende 1919 Verbindungsoff. bei der franz\u00f6s. milit\u00e4r. Mission. 1921 wurde er endg\u00fcltig pensioniert, lebte danach in Budapest und wirkte als Milit\u00e4rschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I.\u00a0Kl., 1916 wurde er Kommandeur des Leopold-Ordens I.\u00a0Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Pr\u00e4dikat \u201evon Uzsok\u201c ausgez. S. war Inhaber des Honv\u00e9d-Inf.rgt.\u00a020 (1918), 1929 wurde er in den Vit\u00e9zi Rend (Ritterorden) aufgenommen, 1927\u201344 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n", "source": 195}}, {"model": "metainfo.text", "pk": 47571, "fields": {"kind": 131, "text": "Szurmay von Uzsok S\u00e1ndor (Alexander) Frh., Offizier und Politiker. Geb. Boks\u00e1nb\u00e1nya, Ungarn (Boc\u00bfa, RO), 19.\u00a012. 1860; gest. Budapest (H), 26.\u00a03. 1945.", "source": 195}}, {"model": "metainfo.text", "pk": 47580, "fields": {"kind": 130, "text": "Sohn eines Bauern. \u2013 Nach Besuch der Gymn. in Kempten im Allg\u00e4u, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St.\u00a0Florian ein (1823 Profe\u00df, 1824 Priesterweihe). 1824\u201343 wirkte er als Kaplan in der Stiftspfarre, 1843\u201354 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s.\u00a0d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 au\u00dferdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht \u00fcbertragen. 1859 wurde er Propst von St.\u00a0Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Versch\u00f6nerungen in der Stiftskirche, u.\u00a0a. durch L.\u00a0Kupelwieser (s.\u00a0d.), durchgef\u00fchrt. Daneben widmete sich S., von F.\u00a0Ser. Kurz (s.\u00a0d.) angeleitet, schon bald der Historiographie. Bereits 1834 geh\u00f6rte er zu den Initiatoren des sp\u00e4teren Mus. Francisco-Carolinum, red. 1839\u201344 dessen \u201eMusealblatt\u201c und arbeitete v.\u00a0a. an den ersten sechs Bde. des \u201eUrkundenbuchs des Landes ob der Enns\u201c (1852\u201372) mit; weiters befa\u00dfte er sich mit dem Leben von K.\u00a0Maximilian\u00a0I., ordnete die Archive der Stifte St.\u00a0Florian und Wilhering und verf. die Geschichte beider Kl\u00f6ster. Zudem besch\u00e4ftigte er sich mit dem Gr\u00fcnder von Stift Reichersberg, Propst Gerhoch, sowie mit Bischof Altmann von Passau, ferner landesgeschichtl. mit den Gf. von Schaunberg. S., der in regem Austausch mit Koch v. Sternfeld (s.\u00a0d.) stand, war u.\u00a0a. Mitgl. des Hist. Ver. f\u00fcr Unterfranken und Aschaffenburg (1841), des Hist. Ver. f\u00fcr die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k.\u00a0k. Reichshistoriographen. 1847 z\u00e4hlte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. t\u00e4tig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gew\u00e4hlt, wo er v.\u00a0a. mit dem kath.-reformer. Kreis um Johann Joseph v. G\u00f6rres in Verbindung stand. Auch bei den Bem\u00fchungen um die Errichtung des o\u00f6. Katholikenver. 1848 spielte S. eine f\u00fchrende Rolle. 1861\u201367 geh\u00f6rte er dem o\u00f6. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Pr\u00e4s. der O\u00f6. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n", "source": 193}}, {"model": "metainfo.text", "pk": 47581, "fields": {"kind": 131, "text": "St\u00fclz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23.\u00a02. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28.\u00a06. 1872; r\u00f6m.-kath.", "source": 193}}, {"model": "metainfo.text", "pk": 47584, "fields": {"kind": 130, "text": "Sohn von Josef Maria S. (s.\u00a0d.). \u2013 Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Sch\u00fcler O.\u00a0Redlichs (s.\u00a0d.) Geschichte an der Univ. Wien, 1910 Dr.\u00a0phil., und absolv. 1909\u201311 als ao.\u00a0Mitgl. den Kurs des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung. Noch im Juli 1911 ging er als Mitarb. an der von der Heidelberger Akad. der Wiss. und der Bad. Hist. Komm. vorbereiteten Ausg. der bad. Weist\u00fcmer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am \u00d6sterr. Hist. Inst. in Rom. Daneben war er 1913 nochmals f\u00fcr die Bad. Hist. Komm. t\u00e4tig und ordnete das gr\u00e4fl. Douglassche Archiv auf Schlo\u00df Langenstein im Hegau. 1914 trat er als Konzeptsaspirant in das HHStA ein, wurde 1915 Konzeptspraktikant und 1921 Staatsarchivar. Er ordnete das Konsulatsarchiv in Belgrad (1916), die Archive in Jaidhof bei Gf\u00f6hl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. \u00fcber die Urkundenabt. und leitete schlie\u00dfl. die Hss.abt. im HHStA. 1921\u201322 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. \u201eHistorischen Bl\u00e4tter\u201c, ab 1928 Mitgl. des Gesch\u00e4ftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien f\u00fcr Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao.\u00a0Prof. Als Medi\u00e4vist befa\u00dfte er sich mit Fragen der \u00f6sterr. Diplomatik, einschlie\u00dfl. der Kanzlei- und der Stadtb\u00fccher, sowie bes. mit Verfassungsgeschichte. Ab 1923 fungierte er als Dir. des Archivs der Stadt Wien und machte dieses zu einer anerkannten wiss. Einrichtung: Eine neue Archivordnung, die u.\u00a0a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30\u00a0Jahren umfa\u00dfte, trat 1924 in Kraft. Archivpraktika f\u00fcr Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Gl\u00f6ckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Au\u00dfenwirkung des Archivs ebenso wie die F\u00f6rderung der Geschichtsforschung, etwa durch die Begr\u00fcndung der \u201eStudien aus dem Archiv der Stadt Wien\u201c oder durch die Anregung zur Ver\u00f6ff. der \u201eUrkunden aus Wiener Grundb\u00fcchern zur Geschichte der Wiener Juden im Mittelalter\u201c (1931) durch L.\u00a0Sailer (s.\u00a0d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. f\u00fcr Geschichte der Stadt Wien gew\u00e4hlt worden, 1924\u201325 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gr\u00fcnden zur\u00fcck. 1926 Vizepr\u00e4s., begr\u00fcndete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n", "source": 192}}, {"model": "metainfo.text", "pk": 47585, "fields": {"kind": 131, "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21.\u00a010. 1887; gest. ebd., 19.\u00a02. 1934; evang.\u00a0AB.", "source": 192}}, {"model": "metainfo.text", "pk": 47594, "fields": {"kind": 130, "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24.\u00a04. 1879; gest. ebd., 4.\u00a02. 1952) verehel. Nach Absolv. des M\u00e4dchengymn. des Wr. Ver. f\u00fcr erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr.\u00a0phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtspr\u00fcfung f\u00fcr Mittelschulen ab. I.\u00a0d.\u00a0F. unterrichtete S. an einem Wr. M\u00e4dchengymn., befa\u00dfte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vortr\u00e4ge f\u00fcr die Vereinigung \u00f6sterr. Hochschuldoz. Athen\u00e4um. Ihr Engagement im Bereich der Frauenbildung und \u2013f\u00f6rderung f\u00fchrte 1907 zur Gr\u00fcndung eines M\u00e4dchengymn. in Wien\u00a02. Auf Grund ihres Strebens nach gediegener Berufsausbildung f\u00fcr begabte M\u00e4dchen aus \u00e4rmerem Haus gr\u00fcndete sie 1907 gem. mit Olly Schwarz einen Ver. f\u00fcr h\u00f6here kommerzielle Frauenbildung und die erste Handelsakad. f\u00fcr M\u00e4dchen in der Sch\u00f6nborngasse (Wien\u00a08), deren Leitung sie als erste Schuldir., die in den Staatsdienst \u00fcbernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. f\u00fcr ihre T\u00e4tigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n", "source": 190}}, {"model": "metainfo.text", "pk": 47595, "fields": {"kind": 131, "text": "Steindler Olga, verehel. Ehrenhaft-S., P\u00e4dagogin und Physikerin. Geb. Wien, 28.\u00a010. 1879; gest. ebd., 21.\u00a012. 1933.", "source": 190}}, {"model": "metainfo.text", "pk": 47596, "fields": {"kind": 130, "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s.\u00a0d.). S. besuchte 1902\u201310 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L.\u00a0M. Hartmann, W.\u00a0Kubitschek, Bormann (alle s.\u00a0d.) und Adolf Wilhelm; 1914 Dr.\u00a0phil. Nach Milit\u00e4rdienst 1915\u201317 habil. er sich 1919 an der Univ. Wien. 1927\u201329 war S. an der R\u00f6m.-German. Komm. des Dt. Arch\u00e4olog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der r\u00f6m. Kaiserzeit besch\u00e4ftigt, danach Doz. f\u00fcr Alte Geschichte an der Univ. Berlin, 1931\u201332 ao.\u00a0Prof. f\u00fcr alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G.\u00a0Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, k\u00fcndigte seine Stellung und verlie\u00df Dtld. 1932\u201334 war er, unterst\u00fctzt vom belg. Byzantinisten Henri Gr\u00e9goire, Gastprof. an der Univ. Br\u00fcssel. Nach der \u201eMachtergreifung\u201c Hitlers (s.\u00a0d.) im J\u00e4nner 1933 publ. er nur mehr auf Franz\u00f6s.; 1934\u201335 war er Gastprof. an der Catholic Univ. of America (Washington, D.\u00a0C.), 1937 wurde f\u00fcr ihn ein Lehrstuhl f\u00fcr byzantin. Geschichte an der Univ. L\u00f6wen eingerichtet. 1940 mu\u00dfte S. jedoch Belgien mit seiner Frau Jeanne (Eheschlie\u00dfung 1923) unter falschem Namen (M.\u00a0Sernet) verlassen. Trotz der \u00e4u\u00dferl. bedr\u00e4ngten Situation und dem st\u00e4ndigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd.\u00a0seiner \u201eHistoire de l\u2019\u00c9mpire byzantin\u201c, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verh\u00e4ltnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. t\u00e4tig.\n\n", "source": 191}}, {"model": "metainfo.text", "pk": 47597, "fields": {"kind": 131, "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19.\u00a09. 1891; gest. Freiburg (Fribourg, Schweiz), 25.\u00a02. 1945; aus j\u00fcd. Familie, ab 1932 r\u00f6m.-kath.", "source": 191}}, {"model": "metainfo.text", "pk": 47602, "fields": {"kind": 130, "text": "Sohn eines Kleinbauern. S. besuchte 1858\u201366 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur S\u00fcdarmee eingezogen und erhielt nach der Schlacht bei Custoza die silberne Tapferkeitsmedaille. Da er Priester werden wollte, desertierte er und kam 1867 in die USA. Zun\u00e4chst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des sp\u00e4teren Bischofs der Di\u00f6zese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der franz\u00f6s. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph\u00a0I. (s.\u00a0d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der gro\u00dfteils aus Dt.b\u00f6hmen und -ungarn bestehenden Gmd. und ab 1891 als Di\u00f6zesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Di\u00f6zese Lead, S.\u00a0D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in f\u00fcnf Jahren 23 neue Kirchen und Pfarreien. Durch \u00fcberm\u00e4\u00dfige Arbeit erkrankt, resignierte S. 1909 auf seine Di\u00f6zese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n", "source": 189}}, {"model": "metainfo.text", "pk": 47603, "fields": {"kind": 131, "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12.\u00a05. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15.\u00a012. 1915; r\u00f6m.-kath.", "source": 189}}, {"model": "metainfo.text", "pk": 47614, "fields": {"kind": 130, "text": "\u2013 Sohn eines Grenzers. \u0160. wurde 1870 aus der Rgt.-Milit\u00e4rschule in Otocac als Korporal zum Grenz-IR 1 ausgemustert; 1874 Lt. beim IR 51. 1882 nahm er als Rgt.-Adj. an der Niederschlagung der Unruhen in Bosnien-Herzegowina teil. 1897 Mjr. und Baon.-, 1899\u20131904 Erg\u00e4nzungsbez.kmdt. im bosn.- herzegowin. IR 4, um dessen Personalaufstockung er sich sehr verdient machte; 1903 Obstlt., 1906 Obst. und 1907 Kmdt. des Linien-IR 2. 1909 erhielt \u0160. das Kmdo. des Gendarmeriekorps f\u00fcr Bosnien-Herzegowina, 1911 GM. Ab September 1914 f\u00fchrte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Vi\u0161egrad aus die Verteidigung S\u00fcdostbosniens. Ende M\u00e4rz 1915 \u00fcbernahm er dort das Kmdo. der neu errichteten 59. Inf.-Truppen-Div., die im Juli 1915 an die Isonzofront verlegt wurde. Im September 1915 nach Syrmien r\u00fcckverlegt, wurde \u0160. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 \u00fcbernahm er das Kmdo. der 42. Honv\u00e9d-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zur\u00fcckgedr\u00e4ngt wurde. Im M\u00e4rz 1917 dem Gen.-Insp. der Fu\u00dftruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde \u0160. im Juli 1918 beurlaubt, knapp vor der Ver\u00f6ff. des Oktobermanifests jedoch im Oktober 1918 als Milit\u00e4rkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die s\u00fcdslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte \u0160. seine letzten Lebensjahre auf seinem Gut in Cluj.\n", "source": 188}}, {"model": "metainfo.text", "pk": 47615, "fields": {"kind": 131, "text": "\u0160njaric\u00a0Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rum\u00e4nien), 28. 1. 1930.", "source": 188}}, {"model": "metainfo.text", "pk": 47626, "fields": {"kind": 130, "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden K\u00fcnste, wo er bis 1907/08 (u. a. bei J\u00f3zef v. Mehoffer, s. d., und Leon Wycz\u00f3lkowski) Malerei stud., 1902\u201303 bildete er sich an der Kunstgewerbeschule in Wien weiter, 1904 unternahm er Stud.reisen durch Italien und Frankreich. S., der sich in Zakopane von einer Tuberkuloseerkrankung erholen mu\u00dfte, verbrachte den Winter 1904/5 bei den Huzulen, wo er Landschafts- und Genrebilder aus dem Leben der Goralen malte. In der Folge zeichnete er Karikaturen f\u00fcr die satir. Z. \u201eChochol\u201c (1902) und \u201eLiberum Veto\u201c (1903\u201305), 1904 ver\u00f6ff. er die Mappe \u201e30 Karikaturen\u201c, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. K\u00fcnstler \u201eSztuka\u201c und im selben Jahr Mitarbeiter des ber\u00fchmten Krakauer Kabaretts \u201eZielony Balonik\u201c, f\u00fcr das er die Inneneinrichtung des Caf\u00e9s und Einladungen entwarf. W\u00e4hrend dieser Zeit fertigte er auch Portr\u00e4ts, Karikaturen von bekannten K\u00fcnstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in \u00d6l mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) lie\u00df er sich im selben Jahr in Lemberg nieder. W\u00e4hrend seiner Milit\u00e4rdienstzeit (1914\u201317)zeichnete er Portr\u00e4ts und Karikaturen bedeutender Pers\u00f6nlichkeiten des Milit\u00e4rwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920\u201330 an der dortigen Schule f\u00fcr Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem \u0152uvre der hist. und religi\u00f6sen Thematik zuwandte; 1918\u201319 zeichnete er Karikaturen f\u00fcr die Z. \u201eSzczutek\u201c und 1920 f\u00fcr \u201eRzeczpospolita\u201c; ab 1930 lehrte er an der Akad. der bildenden K\u00fcnste in Krakau (Krak\u00f3w); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein \u0152uvre fand in zahlreichen in- und ausl\u00e4nd. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, M\u00fcnchen und Rom).\n", "source": 187}}, {"model": "metainfo.text", "pk": 47627, "fields": {"kind": 131, "text": "Sichulski\u00a0Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lw\u00f3w, Galizien (L\u2019viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; r\u00f6m.-kath.", "source": 187}}, {"model": "metainfo.text", "pk": 47630, "fields": {"kind": 130, "text": "Sohn eines Arztes und Hptm. der Sch\u00fctzenkompanie Ulten. S., der nach dem Willen seines Vaters urspr\u00fcngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden K\u00fcnste in M\u00fcnchen, wo er auch Privatunterricht nahm; anschlie\u00dfend \u00fcbersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. z\u00e4hlte die sp\u00e4tere dt. Kn. Auguste Viktoria zu seinen Sch\u00fclerinnen). 1889 geh\u00f6rte er zu den Gr\u00fcndungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s \u0152uvre umfa\u00dft vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurg\u00e4sten gro\u00dfen Anklang; seine Bedeutung liegt aber v. a. in der exakten Wiedergabe der damaligen topograph. Gegebenheiten, wodurch es ihm gelang, ein Zeugnis der dortigen Bausubstanz um 1900 f\u00fcr die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachla\u00df bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum pr\u00e4sentiert.\n", "source": 186}}, {"model": "metainfo.text", "pk": 47631, "fields": {"kind": 131, "text": "Settari\u00a0Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905.", "source": 186}}, {"model": "metainfo.text", "pk": 47634, "fields": {"kind": 130, "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869\u201373 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und N\u00d6 ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rath\u00e4user in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repr\u00e4sentationsbed\u00fcrfnis seiner Zeit stark entgegen kamen, pr\u00e4gte v. a. das Stadtbild von St. P\u00f6lten, wo er erstmals 1883 mit dem neobarock gepr\u00e4gten Hauptgeb\u00e4ude der Sparkasse in Erscheinung trat. Es folgten weitere Auftr\u00e4ge f\u00fcr kommunale Bauten und Amtsgeb\u00e4ude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgeb\u00e4udes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Geb\u00e4uden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begr\u00fcntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Sch\u00f6nbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgef\u00fchrt wurde. S. \u2013 auch im privaten Wohnbau t\u00e4tig \u2013 setzte in seinem \u0152uvre \u201edie Formimpulse des strengen Historismus unter dem Einflu\u00df der neueren Entwicklungen in einen dekorativen Repr\u00e4sentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verf\u00fcgung stehenden Formenapparates f\u00fcr zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden lie\u00df\u201c (W. Kitlitschka).\n", "source": 185}}, {"model": "metainfo.text", "pk": 47635, "fields": {"kind": 131, "text": "Sehnal\u00a0Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910.", "source": 185}}, {"model": "metainfo.text", "pk": 47640, "fields": {"kind": 130, "text": "Sohn des Badener Gmd.Sekret\u00e4rs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861\u201365 das Gymn. im Stift Heiligenkreuz, wo er auch S\u00e4ngerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) \u00fcbersiedelte die Familie (S. hatte zw\u00f6lf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verlie\u00df er den Orden auf Anraten seiner Oberen, die w\u00e4hrend des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 w\u00e4hrend einer Erkrankung den zweiten Vornamen \u201eMaria\u201c an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (N\u00d6) \u2013 wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als \u201ePapst von Marchegg\u201c bezeichnet wurde \u2013, 1879\u201386 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Gro\u00dfstadt kennen und antwortete 1882 mit der Gr\u00fcndung des \u201eKatholischen Lehrlings-Vereins\u201c, rief 1886 das \u201eLehrlingsasyl\u201c sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. \u201eDas christliche Handwerk\u201c (Vorl\u00e4ufer der jetzt noch erscheinenden \u201eKalasantiner-Bl\u00e4tter\u201c) heraus, 1889 baute er in F\u00fcnfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gr\u00fcndung der \u201eKongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz\u201c (\u201eKalasantiner\u201c), der ersten \u00f6sterr. M\u00e4nnerkongregation, die sich der Arbeiter und v. a. der Lehrlinge annehmen wollte. Diesem Auftrag versuchte S. durch Erziehung der Kinder und der Lehrlingsjugend in Horten, Heimen und Oratorien sowie durch Erteilung des Religionsunterrichtes in Grund- und Berufsschulen gerecht zu werden. Die Gemeinschaft sollte dar\u00fcber hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken \u2013 sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch \u00dcbernahme von Pfarren in Arbeitervierteln der St\u00e4dte. Weitere begleitende Gr\u00fcndungen waren: Marian. Arbeitersodalit\u00e4t, Herz Jesu-Arbeiter-Oratorium, Frauenwohlt\u00e4tigkeitsver., Mariazellerver. und Muttergottesbund. 1897\u20131926 wurden weitere elf Niederlassungen der Kongregation (u. a. auch 1902 in Budapest) errichtet. Sein soziales Engagement hat S. auch in die Tagespolitik eingreifen lassen: Er forderte z. B. die Arbeiter zur Gr\u00fcndung von Selbstschutzund Bildungsverb\u00e4nden auf und unterst\u00fctzte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder \u00f6ff. Kontroverse zur\u00fcck. Kardinal Piffl (s. d.), der ihn freundschaftl. unterst\u00fctzte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den \u201eArbeiterapostel\u201c. Dem 1949 er\u00f6ffneten Seligsprechungsproze\u00df folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.\u2019 kirchl. Gedenktag ist der 17. September.\n", "source": 181}}, {"model": "metainfo.text", "pk": 47641, "fields": {"kind": 131, "text": "Schwartz\u00a0\u2014 P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (N\u00d6), 28. 2. 1852; gest. Wien, 15. 9. 1929.", "source": 181}}, {"model": "metainfo.text", "pk": 47642, "fields": {"kind": 130, "text": "Sohn eines M\u00fcllers. Nach dem Besuch des Gymn. in Olm\u00fctz (Olomouc) 1854\u201362 stud. S. von 1862\u201367 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtspr\u00fcfung ablegte. Ab 1865 war er Mitgl. des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschlo\u00df. 1867 trat S. als Stud.Pr\u00e4fekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (\u017datec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zur\u00fcck, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Au\u00dfer als Gymn.Lehrer wirkte S. auch als Fachpr\u00fcfer an der Konsularakad. Wiss. besch\u00e4ftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und \u00fcbersichtl. Darstellungsweise auszeichnen.\n", "source": 182}}, {"model": "metainfo.text", "pk": 47643, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, M\u00e4hren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903.", "source": 182}}, {"model": "metainfo.text", "pk": 47644, "fields": {"kind": 130, "text": "Sohn des Zwirnh\u00e4ndlers Franz Sales S.; Bruder von Sebastian S., Onkel des Priesters Josef S., des Caspar und des Franz Sales S. (alle s. d.). S. besuchte das Gymn. in Linz und Kremsm\u00fcnster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und er\u00f6ffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er au\u00dferdem eine F\u00e4rberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige H\u00e4user in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den o\u00f6. Landtag gew\u00e4hlt, dem er dann auch 1861\u201379 angeh\u00f6ren sollte und in dem er als Obmann-Stellv. des Stra\u00dfenausschusses fungierte. 1864\u201373 Bgm. von Freistadt, erwarb er sich Verdienste um das Kommunalwesen, etwa durch die Errichtung der Stadtsparkasse (1866), deren 1. Dion.Vorstand er wurde. Bes. Augenmerk legte er auf die Entwicklung des st\u00e4dt. Schulwesens, zu dessen Entwicklung er ma\u00dfgebl. beitrug. So initiierte S. die Errichtung des 1867 er\u00f6ffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. gef\u00fchrt werden durfte, und richtete ferner, nach dem R\u00fcckzug der Piaristen, 1871 eine Knabenvolksschule ein. Au\u00dferdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freist\u00e4dter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n", "source": 183}}, {"model": "metainfo.text", "pk": 47645, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Kaspar, Politiker und Kaufmann. Geb. Lasberg (O\u00d6), 6. 11. 1811; gest. Freistadt (O\u00d6), 7. 5. 1879.", "source": 183}}, {"model": "metainfo.text", "pk": 47648, "fields": {"kind": 130, "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Nei\u00dfe stud. S. 1834\u201336 in Breslau (Wroclaw) und 1836\u201337 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Nei\u00dfe, 1839 in Breslau und dort im selben Jahr Referendar. S. war befreundet mit den schles. Dichtern Joseph v. Eichendorff und Friedrich v. Sallet und bereits 1836 in Berlin Mitgl. des Literatenver. \u201eDer Tunnel \u00fcber der Spree\u201c und des j\u00fcngeren Berliner Dichterver. Er bet\u00e4tigte sich journalist. vorwiegend als Theaterkritiker (\u201eTheater-Figaro\u201c, \u201eBreslauer Zeitung\u201c 1840ff.), war nach seiner R\u00fcckkehr nach Breslau 1840\u201348 ausschlie\u00dfl. f\u00fcr die Presse t\u00e4tig und wurde Mitarbeiter auch ausw\u00e4rtiger Z. (u. a. \u201eBerliner Figaro\u201c, \u201eBerliner Modenspiegel\u201c, \u201eDer Gesellschafter\u201c, \u201eDer Pilot\u201c). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des \u201eBreslauer Volks-Kalenders\u201c (bzw. \u201eDeutscher Volkskalender\u201c). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. \u201eBestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844\u201c (60 Aufs\u00e4tze, 1844), in der er die M\u00f6glichkeiten journalist. Arbeit nach Ma\u00dfgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als f\u00fcr \u00f6sterr. Verh\u00e4ltnisse bes. geeigneten Ztg.Red. aus, der geschickt zwischen den Anliegen der Autoren und der Forderungen der Zensur im Sinne Sedlnitzkys v. Choltitz (s. d.) zu vermitteln verstand. Nach Wien geholt, \u00fcbernahm S., der von Hebbel (s. d.) und Stifter gesch\u00e4tzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer T\u00e4tigkeit in der Red. der \u201ePresse\u201c, 1849, ab 1850 als verantwortl. Red. die \u201eWiener Zeitung\u201c, die in der Zeit seiner T\u00e4tigkeit um die zus\u00e4tzl. Organe \u201eAbendblatt\u201c (1852\u201357), \u201e\u00d6sterreichische Bl\u00e4tter f\u00fcr Literatur und Kunst\u201c (1852\u201357) und die \u201e\u00d6sterreichische Wochenschrift f\u00fcr Wissenschaft, Kunst und \u00f6ffentliches Leben\u201c (1863\u201365) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausl\u00e4nd. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verl\u00e4\u00dflichkeit gesch\u00e4tzt war. Zuletzt lebte er v\u00f6llig erblindet und zur\u00fcckgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anf\u00e4ngl. Bankbeamter, trat ebenfalls als Journalist hervor, sp\u00e4ter als Autor einiger Lustspiele und Schw\u00e4nke (\u201eDer Heiratsvermittler\u201c, 1886, \u201eSch\u00f6nheitspreis und Liebespreis\u201c, 1893, usw.).\n", "source": 184}}, {"model": "metainfo.text", "pk": 47649, "fields": {"kind": 131, "text": "Schweitzer\u00a0Leopold Albrecht, Journalist und Schriftsteller. Geb. Nei\u00dfe, Preu\u00dfen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (N\u00d6), 9. 7. 1896.", "source": 184}}, {"model": "metainfo.text", "pk": 47650, "fields": {"kind": 130, "text": "Nach absolv. Schulbesuch arbeitete S. zun\u00e4chst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu \u00fcbernehmen. Polit. engagiert, geh\u00f6rte er 1882\u201384 sowie 1894\u201397 dem Badener Gmd.Rat an, wo er sich v. a. f\u00fcr die Anliegen der Hauerschaft einsetzte. Bes. Verdienste um seine Heimatstadt erwarb sich S., der nach dem Tod seiner ersten Frau (1888) im selben Jahr Maria, geb. Gleichweit, ehel., bei der Bek\u00e4mpfung der Reblaus, die 1882 auch in Baden zu w\u00fcten begann. Durch das Aufpfropfen der Edelreben auf gegen den Sch\u00e4dling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weing\u00e4rten mit gro\u00dfem Erfolg angewandt hatte, konnten die Badener Weinkulturen in relativ kurzer Zeit gerettet werden. Auf Stud.Reisen nach Ungarn 1889 und 1896, in die Unterstmk. 1891 und 1898 sowie nach Kroatien 1896 verbesserte S. seine Kenntnisse, die er in Baden erfolgreich u. a. f\u00fcr seine Rebschule, in der er die angef\u00fchrte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner gro\u00dfen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom n\u00f6. Landesausschu\u00df als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Sch\u00e4dling zu unterweisen. F\u00fcr seine erfolgreiche T\u00e4tigkeit erhielt er von der Stadt Baden sowie vom Ackerbaumin. Anerkennungspreise. S., allen Neuerungen auf dem Gebiet des Weinbaus stets aufgeschlossen, entwickelte 1895 den ersten Weingartenpflug und soll 1897 die bis dahin unbekannte Neuburger Rebe eingef\u00fchrt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gr\u00fcndete er 1887 den Badener Rinderzuchtver. und besa\u00df eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte \u2013 er war Mitgl. bei mehreren Ver. \u2013, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinsch\u00e4tzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n", "source": 180}}, {"model": "metainfo.text", "pk": 47651, "fields": {"kind": 131, "text": "Schwabl\u00a0Franz, Landwirt und Weinhauer. Geb. Baden (N\u00d6), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers.", "source": 180}}, {"model": "metainfo.text", "pk": 47660, "fields": {"kind": 130, "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871\u201377 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877\u201382 Park Orchester, Amsterdam, 1882\u201383 Parlow Orchester, Hamburg, 1883\u201384 kgl. Staatskapelle Dresden. 1884\u201391 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegr\u00fcndete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mu\u00dfte er diese Stelle jedoch Oktober 1902 krankheitshalber aufgeben und zog nach Kreuznach, wo er bereits vorher Sommerkurse geleitet hatte, und widmete sich der Komposition. 1903\u201304 spielte S. im Pittsburgh Symphony Orchestra, 1904\u201309 im Philadelphia Orchestra, 1910 im Orchester der New Yorker Metropolitan Opera. S., sowohl als Orchesterspieler wie als Solist ein Virtuose von hohem Rang, gab ein noch heute verwendetes Hilfswerk f\u00fcr die Ausf\u00fchrung von schwierigen Harfenstellen in den Opern Richard Wagners heraus und wirkte auch 1903 und 1906 bei den Wagnerauff. an der Covent Garden Opera London mit. Von seinen durchwegs der Harfe gewidmeten Salonst\u00fccken ist die Mazurka, op. 12, beliebt geblieben. 1890 Kammervirtuose des Hg. Ernst von Sachsen-Altenburg. Sein Bruder Heinrich S. (geb. Wien, 25. 11. 1867; gest. Boston, Mass., USA, 17. 4. 1913) stud. 1878\u201384 ebenfalls bei Anton Zamara am Wr. Konservatorium der Ges. der Musikfreunde, trat nach einer Saison beim Parlow Orchester, Hamburg, 1885 als 1. Harfenist ins Boston Symphony Orchestra ein und lehrte am Bostoner New England Conservatory. Er trat auch als Solist bei den Musikfestivals in Worcester (Mass.) sowie in Paris und London auf. S.s Sohn Joseph E. S. (geb. Leipzig, Sachsen/Deutschland, 19. 5. 1886; gest. Los Angeles, Ca., USA, 9. 12. 1938) stud. bei seinem Vater, 1900\u201301 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904\u201305 bzw. 1908\u201309 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911\u201313 Harfenist einer Opernges. in Boston, lehrte er 1915\u201320 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n", "source": 179}}, {"model": "metainfo.text", "pk": 47661, "fields": {"kind": 131, "text": "Schu\u00ebcker (eigentl. Schu\u00f6cker)\u00a0Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preu\u00dfen (Bad Kreuznach, Deutschland), 9. 11. 1911.", "source": 179}}, {"model": "metainfo.text", "pk": 47662, "fields": {"kind": 130, "text": "Sohn von Norbert Michael, Bruder von Norbert, Neffe von Anton S. (alle s. d.). Bedingt durch die zahlreichen Reisen seines Vaters, lernte S. bereits in fr\u00fcher Jugend zahlreiche St\u00e4dte Europas kennen. Seine ersten k\u00fcnstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der \u00dcbersiedlung seines Vaters nach Paris besuchte S. 1854/55 die Modellierklasse der Pariser Akad. Aber schon kurz darauf verlegte der Vater seinen Wohnsitz nach Frankfurt a. Main, wo S. 1855/56 vorerst Privatunterricht in Bildhauerei von dem mit seinem Vater befreundeten Eduard Schmidt von der Launitz erhielt. 1856\u201358 stud. er am St\u00e4del\u2019schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858\u201361 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 \u00fcbersiedelte er nach Wien, 1863\u201365 hielt er sich, finanziert durch ein Rom-Stipendium, in Italien auf, 1866 in Paris. Ab 1867 wieder in Wien, arbeitete S. als Mitarbeiter bei den Bildhauern Victor Tilgner und Rudolf Weyr mit, 1894\u20131908 war er Ass. an der Akad. der bildenden K\u00fcnste in Wien, wo er zeitweise die Klasse f\u00fcr Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-B\u00fcste f\u00fcr das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisb\u00fcste des Nikolaus Joseph v. Jacquin f\u00fcr die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) f\u00fcr den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschm\u00fcckung des Naturhist. Mus. in Wien mit.\n", "source": 178}}, {"model": "metainfo.text", "pk": 47663, "fields": {"kind": 131, "text": "Schr\u00f6dl\u00a0Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908.", "source": 178}}, {"model": "metainfo.text", "pk": 47672, "fields": {"kind": 130, "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olm\u00fctz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Br\u00fcnn (Brno) Maschinenbau, 1898\u20131903 an der Bauing.Schule (1905 Staatspr\u00fcfung). Zun\u00e4chst an der Br\u00fcnner Hochschule f\u00fcr einige Monate als Ass. t\u00e4tig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen gr\u00f6\u00dferen Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919\u201322), betraut. Als Baurat \u00fcbernahm er 1920 die selbst\u00e4ndige Leitung der Bauabt., die f\u00fcr die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. ma\u00dfgebl. an den von Peter Behrens und Alexander Popp geplanten Neubauten bei der Tabakfabrik in Linz (1929ff.) sowie an der Errichtung zahlreicher, in der Nachkriegszeit geschaffener Wohnhausanlagen beteiligt. Daneben publ. S.\u00fcber die Baut\u00e4tigkeit der \u00d6sterr. Tabakregie. 1930 HR, 1947 i. R.\n", "source": 177}}, {"model": "metainfo.text", "pk": 47673, "fields": {"kind": 131, "text": "Schreyer\u00a0Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravic\u00ed, M\u00e4hren (Bridlicn\u00e1, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950.", "source": 177}}, {"model": "metainfo.text", "pk": 47676, "fields": {"kind": 130, "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840\u201341 dort Med., ab 1841 an der Univ. Wien, wo er 1845 zum Dr. med. prom. wurde. Nach weiterer chirurg. Ausbildung wirkte er am Provinzialstrafhaus in Wien, ab 1856 am Filialspital des Allg. Krankenhauses in Wien II., zuletzt als dessen prov. Vorstand, ab 1858 als Primarius der IV. med. Abt. am Allg. Krankenhaus. S. machte sich um die Verwendung der 1853 in Schottland entwickelten Subkutanspritze zur Einf\u00fchrung von Medikamenten bei der Schmerzbehandlung (Injektion) verdient und stellte diese, erst in den 70er Jahren allg. angewendete Methode sowie seine Erfahrungen damit schon 1861 vor. Auch begann er sich fr\u00fch mit dem Einflu\u00df der Haft auf die Entstehung von Geistesst\u00f6rungen bei Str\u00e4flingen zu besch\u00e4ftigen. An seiner Klinik betrieb der ab 1878 dort t\u00e4tige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882\u201385 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n", "source": 175}}, {"model": "metainfo.text", "pk": 47677, "fields": {"kind": 131, "text": "Scholz\u00a0Franz, Mediziner. Geb. Moldau, B\u00f6hmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902.", "source": 175}}, {"model": "metainfo.text", "pk": 47678, "fields": {"kind": 130, "text": "Sohn des Kaspar Schram(m)el (geb. H\u00f6rmanns b. Litschau/Litschau, N\u00d6, 6. 1. 1811; gest. Langenzersdorf, N\u00d6, 20. 12. 1895) und (Eheschlie\u00dfung 1853) der Volkss\u00e4ngerin Aloisia Ernst (1829\u20131881), Bruder des Joseph S. (geb.Ottakring, N\u00d6/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833\u20131905), der, 1866 als Invalide aus dem Milit\u00e4rdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon fr\u00fch in Dorfkapellen als Klarinettist t\u00e4tig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkst\u00fcml.-musikal. Wirtshausproduktionen. S. wirkte ebenso wie sein Bruder Joseph schon als Kind bei den Auftritten des Vaters als Geiger mit (1861 gilt als Beginn ihrer \u00f6ff. T\u00e4tigkeit), doch erhielten beide \u2013 ein f\u00fcr ihre Verh\u00e4ltnisse ungew\u00f6hnl. Schritt \u2013 auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862\u201363 Violinsch\u00fcler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschlu\u00df (aus ungekl\u00e4rten Ursachen) 1866 Karl Hei\u00dflers, Joseph 1865/66 ebenfalls Sch\u00fcler Hellmesbergers. Nach dem Milit\u00e4rdienst (1866\u201372, 1870 Korporal) spielte S. in einigen \u201eNationalquartetten\u201c und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in gro\u00dfen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gr\u00fcndete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient \u2013 1869\u201371 \u2013 bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett (\u201eNu\u00dfdorfer Terzett\u201c), in dem Joseph die 1., er selbst die 2. Geige und zun\u00e4chst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Br\u00fcder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. \u201epicks\u00fc\u00dfes H\u00f6lzl\u201c) Georg D\u00e4nzer (geb.Hernals, N\u00d6/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett \u201eGebr. Schrammel, D\u00e4nzer und Strohmayer\u201c, das in dieser Besetzung bis zum Ausscheiden D\u00e4nzers Ende 1891 \u2013 Strohmayer verlie\u00df das Quartett Ende 1892 \u2013 verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schlie\u00dfl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die urspr\u00fcngl. Quartettbesetzung zur\u00fcckgegriffen. Im Wr. Musikleben spielten die \u201eSchrammeln\u201c eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu h\u00f6ren, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit \u201eNaturs\u00e4ngern\u201c, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkss\u00e4nger lie\u00dfen diese Vortr\u00e4ge zeitweise verbieten, weswegen die Br\u00fcder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. \u00c4u\u00dferst erfolgreiche Gastspielreisen f\u00fchrten das Quartett 1888 und 1889 durch Deutschland, der letzte H\u00f6hepunkt waren die t\u00e4gl. Produktionen anl\u00e4\u00dfl. der Internationalen Ausst. f\u00fcr Musik- und Theaterwesen in Wien, 1892, doch mu\u00dfte sich S. wegen seiner zunehmenden Herzkrankheit dann zur\u00fcckziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterf\u00fchrte, v\u00f6llig mittellos. Als Komponist schlo\u00df S. an seine Vorl\u00e4ufer an (so gab er 1888 3 He. \u201eAlte oesterreichische Volksmelodien \u2026\u201c heraus), seine (zu etwa 1/3 gedruckten) \u00fcber 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und M\u00e4rsche (u. a. \u201eWien bleibt Wien\u201c, 1886), Josephs bekannteste Komposition ist das Lied \u201eVindobona, du herrliche Stadt\u201c. Die \u201eSchrammeln\u201c und \u201eSchrammelmusik\u201c \u201eblieben als Begriffe f\u00fcr ein volkst\u00fcml. Ensemble und ein entsprechendes Musizieren erhalten\u201c (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorl\u00e4ufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. F\u00e4higkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch h\u00f6chste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strau\u00df.\n", "source": 176}}, {"model": "metainfo.text", "pk": 47679, "fields": {"kind": 131, "text": "Schrammel\u00a0Johann, Musiker und Komponist. Geb. Neulerchenfeld, N\u00d6 (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893.", "source": 176}}, {"model": "metainfo.text", "pk": 47684, "fields": {"kind": 130, "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine fr\u00fche Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826\u201329 an der Univ. Graz Jus, 1829 Dr. jur., und trat 1834 bei der Hof- und Kammerprokuratur als Konzeptspraktikant ein. 1836 wurde er zur Kammerprokuratur nach Lemberg (L\u2019viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) t\u00e4tig war. 1847 erfolgte seine Versetzung als Landrat zum Gef\u00e4llen-Bez.Gericht bzw. Landrecht in Tarn\u00f3w. W\u00e4hrend eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. f\u00fcr den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschu\u00df mit, f\u00fcr den er auch als Referent fungierte. Hier setzte er sich u. a. bes. f\u00fcr die Unabh\u00e4ngigkeit K\u00e4rntens ein. Weiters war S. Mitgl. der Redaktionskomm. f\u00fcr die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem \u201eZentrumklub\u201c bei und geh\u00f6rte im Dezember dieses Jahres der Reichstagsdeputation nach Olm\u00fctz (Olomouc) und Prag an. Nach der Aufl\u00f6sung des Reichstags 1849 zog sich S. aus der Politik zur\u00fcck und wurde dem n\u00f6. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Pr\u00e4s. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenb\u00fcrgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepr\u00e4s. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepr\u00e4s. des Wr. Landesgerichts ernannt. Wegen seiner geschw\u00e4chten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n", "source": 174}}, {"model": "metainfo.text", "pk": 47685, "fields": {"kind": 131, "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884.", "source": 174}}, {"model": "metainfo.text", "pk": 47688, "fields": {"kind": 130, "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbi\u00df, Vater von B\u00e9la Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. B\u00e9la Frh. v. S.). Wuchs nach dem fr\u00fchen Tod seines Vaters im Hause von Karl Gf. Gatterburg, des zweiten Gatten seiner Mutter, auf. Nach Privatunterricht trat er 1820 beim 4. Chevauxlegersrgt. in die k. Armee ein, wurde 1822 Unterlt., 1831 Oblt., 1835 Rtm. 2., 1840 1. Kl., 1846 Mjr., 1848 Obstlt., 1849 Obst., 1851 GM, 1859 FML, 1863 pensioniert, 1865 jedoch als Gendarmeriegen.Insp. reaktiviert und 1868 als Gen. der Kav. ad honores endg\u00fcltig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich w\u00e4hrend des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab \u00fcberstellt und bew\u00e4hrte sich in der Folge an verschiedenen Standorten als Brigadier. Daneben war er 1856 dem Kg. v. Griechenland, 1858 Erzhg. Karl Ferdinand bei dessen Inspektionstour zu den Landeskontingenten des Dt. Bundes zugewiesen. Im italien. Feldzug von 1859 tat er sich als Division\u00e4r beim 3. Inf.Armeekorps durch umsichtige F\u00fchrung sowie pers\u00f6nl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode f\u00fchrte er dann die Administrationsgesch\u00e4fte des Landesgendarmeriekmdo. in Lemberg (L\u2019viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de V\u00e1sonyke\u00f6 (geb. Wien, 30. 10. 1805; gest. Verona, Venetien/Italien, 9. 1. 1851), 1855 Theresia Franziska Juliana Si(e)gel (geb. Wien, 11. 3. 1827; gest. Wien, 1. 5. 1857) und 1859 Anna Scheiger (geb. Wien, 7. 7. 1820; gest. G\u00f6rz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausl\u00e4nd. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes f\u00fcr die von ihm angeregte und nach dem Feldzug von 1848/49 durchgef\u00fchrte Reorganisation der Husarenrgt. verdient.\n", "source": 172}}, {"model": "metainfo.text", "pk": 47689, "fields": {"kind": 131, "text": "Sch\u00f6nberger (Schoenberger) (Carl Friedrich)\u00a0Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorder\u00f6sterr. (Deutschland), 30. 6. 1804; gest. G\u00f6rz, G\u00f6rz-Gradisca (Gorizia, Italien), 19. 12. 1880.", "source": 172}}, {"model": "metainfo.text", "pk": 47690, "fields": {"kind": 130, "text": "Stud. 1872\u201380 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), sp\u00e4ter auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Ru\u00dfland, Deutschland, \u00d6sterr. und Belgien. 1880\u201385 lehrte er in Wien, 1886 reiste er nach Schweden und anschlie\u00dfend nach London, wo er im J\u00e4nner 1887 erstmals als Solist auftrat und sich in der Folge niederlie\u00df. S. geh\u00f6rte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, sp\u00e4ter unternahm er Konzertreisen in Europa und England, auch als Dirigent einer reisenden Opernges. Er war mit der Tochter des engl. Gen. Sir Henry Tuson verheiratet.\n", "source": 173}}, {"model": "metainfo.text", "pk": 47691, "fields": {"kind": 131, "text": "Sch\u00f6nberger\u00a0Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Gro\u00dfbritannien), 9. 3. 1930.", "source": 173}}, {"model": "metainfo.text", "pk": 47694, "fields": {"kind": 130, "text": "Sohn des Vorigen, Bruder von Arthur S., Schwager von M. Hajek (beide s. d.); mos. Stud. nach Absolv. des Akadem. Gymn. in Wien ab 1882 an der dortigen Univ. Med., u. a. bei E. Albert, Billroth, E. W. v. Br\u00fccke sowie Nothnagel (alle s. d.), und wurde 1888 zum Dr. med. prom. Seine weitere Ausbildung erhielt er 1887/88 als Aspirant an der Klinik Nothnagel, ab 1889 bei Albert, wo er 1891\u201395 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien f\u00fcr Chirurgie und wurde 1907 Tit. ao., 1927 unbesoldeter ao. Prof. 1895/96 stand er der Chirurg. Abt. an der Wr. Allg. Poliklinik vor, kam 1896 als Primarius f\u00fcr Chirurgie an das K.-Franz-Josef-Spital, 1902 an das Wiedner Krankenhaus und trat 1934 i. R. S. gestaltete die von ihm geleiteten Abt. gem\u00e4\u00df den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und ver\u00f6ff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentz\u00fcndung bzw. -katarrh, v. a. aber nat\u00fcrl. chirurg. Problemen. Als einer der ersten besch\u00e4ftigte er sich mit der operativen Behandlung der akuten Blinddarmentz\u00fcndung, propagierte umfangreiche Resektionen bei Magen- und Zw\u00f6lffingerdarmgeschw\u00fcren, erarbeitete Vorbeugungsma\u00dfnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und besch\u00e4ftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besa\u00df spr\u00fchenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch \u00f6ff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des \u00d6sterr. Verdienstordens. Durch sein Bem\u00fchen um die Diagnostik der Blinddarmentz\u00fcndung und sein entschiedenes Eintreten in Theorie und Praxis f\u00fcr umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen pers\u00f6nl. Verh\u00e4ltnis zu seinem Bruder Arthur, das in zwei von dessen erz\u00e4hler. Werken (\u201eDer blinde Geronimo und sein Bruder\u201c, \u201eFlucht in die Finsternis\u201c) Niederschlag fand.\n", "source": 169}}, {"model": "metainfo.text", "pk": 47695, "fields": {"kind": 131, "text": "Schnitzler\u00a0Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939.", "source": 169}}, {"model": "metainfo.text", "pk": 47696, "fields": {"kind": 130, "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874\u201378 an der Univ. Wien Jus, 1881 Dr. jur. 1879 trat S. beim Landesgericht Wien in den Justizdienst, wurde 1885 Bez.Gerichtsadjunkt in Wolkersdorf, 1887 in Wien-Hietzing, 1891 Gerichtsadjunkt beim Wr. Landesgericht. 1896 wechselte S. zur Staatsanwaltschaft (Substitut in Korneuburg) und war ab 1897 Staatsanwalt in Steyr, 1902 in Krems, bis er 1903 ins Justizmin. berufen wurde, wo er, 1904 Sektionsrat, 1907 Titel und Charakter eines Min.Rates, 1909 Min.Rat, 1912 zum Sektionschef avancierte. S. war an den legislativen Arbeiten des Justizmin., insbes. auf den Gebieten der Strafrechts- und der Strafproze\u00dfreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees f\u00fcr die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wof\u00fcr er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verst\u00e4ndnis f\u00fcr die Bed\u00fcrfnisse der Milit\u00e4rverwaltung \u20131877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. \u2013 brachte es mit sich, da\u00df sein Rat von den milit\u00e4r. Stellen oft in Anspruch genommen wurde; f\u00fcr seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Milit\u00e4rstrafverfahrens (Milit\u00e4rstrafproze\u00dfordnung von 1912) erhielt er 1912 das Komturkreuz des Franz Joseph-Ordens mit dem Stern. Auch die zahlreichen Kriegsstrafgesetze sind unter seiner Mitwirkung zustande gekommen. In den Aussch\u00fcssen beider H\u00e4user des Reichsrates war er sehr oft als Vertreter des Justizmin. t\u00e4tig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatspr\u00fcfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n", "source": 170}}, {"model": "metainfo.text", "pk": 47697, "fields": {"kind": 131, "text": "Schober\u00a0Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917.", "source": 170}}, {"model": "metainfo.text", "pk": 47700, "fields": {"kind": 130, "text": "Sohn von (Heinrich) Eduard v. S. (s. u.), Neffe von (Wilhelm) Alexander, Cousin von Philipp Wilhelm d. J. und Paul Eduard v. S. (alle s. d.), Schwiegervater von Armand Dumreicher v. \u00d6sterreicher (s. d.); evang. HB. S., der als Mitsch\u00f6pfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Gro\u00dfhandlungshaus \u201eAlexander Schoeller\u201c (sp\u00e4ter \u201eSchoeller & Co.\u201c) nach Wien geholt, ab 1869 \u00f6ff. Gesellschafter. Er konnte seinen Onkel bei der Weiterf\u00fchrung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und M\u00fchlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von \u201eSchoeller & Co.\u201c nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) \u00fcberging, durch die Erzeugung von Blechen und Dr\u00e4hten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene H\u00fclsenfabrik zur Produktion von Kriegsmaterial begr\u00fcndet. Im Ternitzer Werk, der \u201eTernitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.\u201c, f\u00fchrte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gr\u00fcnden nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgel\u00f6st. Wegen eines schweren Nervenleidens mu\u00dfte er die Firmenleitung zuletzt fast g\u00e4nzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard \u00fcberlassen. S. bekleidete auch eine gro\u00dfe Zahl von Verwaltungsratsstellen bei gro\u00dfen \u00f6sterr. Ind.-, Banken- und Eisenbahnunternehmungen, wie etwa bei der Bodencreditanstalt in Wien und der K. Ferdinands-Nordbahn. Am Gmd.Leben der evang. Gmd. HB in Wien aktiv beteiligt, war S. 1865\u201389 Gmd.Vertreter, 1867\u201389 auch Presbyter und betreute \u2013 wie auch schon sein Onkel \u2013 deren Verm\u00f6gensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. D\u00fcren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, N\u00d6, 18. 1. 1879), war wie etl. andere Angeh\u00f6rige der Familie S. in der Zuckerind. t\u00e4tig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterst\u00fctzung seines Bruders Alexander pachtete er 1853 die Herrschaft Edel\u00e9ny bei Miskolcz und richtete die darauf befindl. Zuckerr\u00fcbenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu k\u00e4mpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n", "source": 171}}, {"model": "metainfo.text", "pk": 47701, "fields": {"kind": 131, "text": "Schoeller\u00a0Gustav Adolph von, Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier. Geb. D\u00fcren, Preu\u00dfen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889.", "source": 171}}, {"model": "metainfo.text", "pk": 47706, "fields": {"kind": 130, "text": "Sohn eines Sattlermeisters und Gastwirts. S., der bei seinem mus. und Zeichner. begabten Vater ersten Zeichenunterricht erhielt, sollte die Marinemusikschule in Pola (Pula) besuchen, wurde aber wegen einer Augenschw\u00e4che zur\u00fcckgestellt. Daraufhin ging er nach Wien und stud. hier 1880\u201382 an der Akad. der bildenden K\u00fcnste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender K\u00fcnstler, so z. B. f\u00fcr die Z. \u201e\u00dcber Land und Meer\u201c. Als der k\u00fcnstler. Erfolg etwas nachlie\u00df, kehrte S. nach Mies zur\u00fcck, \u00fcbersiedelte aber 1895 wieder nach M\u00fcnchen, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als \u201eSalome\u201c. Sein \u0152uvre umfa\u00dft neben Portr\u00e4ts von Schauspielerinnen und span. T\u00e4nzerinnen auch Bildnisse von Mitgl. des bayer. K\u00f6nigshauses. S., der Mitgl. der M\u00fcnchner K\u00fcnstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n", "source": 168}}, {"model": "metainfo.text", "pk": 47707, "fields": {"kind": 131, "text": "Schmutzler\u00a0Leopold, Maler. Geb. Mies, B\u00f6hmen (Str\u00edbro, Tschechien), 29. 3. 1864; gest. M\u00fcnchen, Bayern (Deutschland), 20. 6. 1940.", "source": 168}}, {"model": "metainfo.text", "pk": 47712, "fields": {"kind": 130, "text": "Sohn des P\u00e4chterehepaars Wolf und Sara S., mos.; nach \u00dcbersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromer\u00ed\u017e) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922\u201323 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterst\u00fctzt von seinem Onkel und sp\u00e4terem Manager, Leo Engel, 1925\u201326 an der Hochschule f\u00fcr Musik in Berlin (Sch\u00fcler von Hermann Weissenborn) fortsetzte. Nach dem Milit\u00e4rdienst in Rum\u00e4nien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Deb\u00fct als Rundfunks\u00e4nger am 29. 3. 1929 (Vasco da Gama in Meyerbeers \u201eDie Afrikanerin\u201c), weitere Rundfunkproduktionen (Hans in Smetanas \u201eDie verkaufte Braut\u201c, Lionel in Flotows \u201eMartha\u201c), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von au\u00dferordentlicher Popularit\u00e4t \u2013 seiner geringen K\u00f6rpergr\u00f6\u00dfe wegen allerdings nur innerhalb der zu dieser Zeit aufbl\u00fchenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in \u201eDer Liebesexpress\u201c (Urauff. Berlin 1931) folgte der unerh\u00f6rte Siegeszug von \u201eEin Lied geht um die Welt\u201c (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Macht\u00fcbernahme in Deutschland wurde S., schon vorher diffamiert und angefeindet, mit Auftrittsverbot belegt und Wien immer mehr zu seinem Lebenszentrum, ab 1935 sein Wohnort. Hier wurden die n\u00e4chsten Filme \u201eWenn du jung bist, geh\u00f6rt dir die Welt\u201c, 1933, \u201eEin Stern f\u00e4llt vom Himmel\u201c, 1935, auch engl. Version, und \u201eHeut ist der sch\u00f6nste Tag in meinem Leben\u201c, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Pal\u00e4stina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937\u20131938 (mit Auftritten u. a. in der New Yorker Carnegie Hall) hervorzuheben. 1938 wieder in Wien, gab er im Herbst desselben Jahres Konzerte in Belgien und lie\u00df sich 1939 in Br\u00fcssel nieder, wo er als Rudolf in Puccinis \u201eLa Boh\u00e8me\u201c einen seiner seltenen B\u00fchnenauftritte hatte. Infolge des Kriegsverlaufs mu\u00dfte S. 1940 aus Belgien fl\u00fcchten, hielt sich in S\u00fcdfrankreich auf und gelangte 1942 unter gro\u00dfen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf v\u00f6llig mittellos. S. wurde als S\u00e4ngertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine \u2013 allerdings kleine und nicht restlos durchgebildete \u2013 lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und h\u00f6chsten Lage und ein f\u00fcr S. charakterist. \u201ewehm\u00fctiges\u201c Timbre aus.\n", "source": 167}}, {"model": "metainfo.text", "pk": 47713, "fields": {"kind": 131, "text": "Schmidt,\u00a0\u2014 Joseph S\u00e4nger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rum\u00e4nien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Z\u00fcrich (Schweiz), 16. 11. 1942.", "source": 167}}, {"model": "metainfo.text", "pk": 47714, "fields": {"kind": 130, "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Kne\u017ena (Rychnov nad Kne\u017enou) und Olm\u00fctz (Olomouc) begann S. eine kaufm\u00e4nn. Lehre in Br\u00fcnn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Gro\u00dfhandel bet\u00e4tigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gew\u00e4hlt worden war, \u00fcbernahm S. die Leitung des v\u00e4terlichen Gesch\u00e4fts in Schildberg und sp\u00e4ter gem. mit seinem \u00e4lteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papierm\u00fchle (sie galt als die \u00e4lteste der \u00d6sterr.-ung. Monarchie) und Bleiche in Gro\u00dfullersdorf und betrieb dort nach dem Ableben seines Bruders (1871) eine Papier- und Leinenerzeugung im eigenen Namen, jedoch unter der Fa. Ant. J. Schmidt u. S\u00f6hne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere f\u00fchrten zu einer neuen Bl\u00fcte dieser Papierm\u00fchle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Gro\u00dfullersdorf, eine \u2013 1917 aufgel\u00f6ste \u2013 Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige f\u00fcrstlich liechtensteinsche Mahlm\u00fchle in Olleschau (Ol\u0161any) und errichtete dort eine Fabrik f\u00fcr Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG \u00fcbernommen, die ab 1870 auch das sp\u00e4ter verbreitete Zigarettenpapier Marke \u201eOlleschau\u201c herstellte, wobei die Lieferschwierigkeiten der franz\u00f6s. Konkurrenz in den Krisenjahren 1870/71 gen\u00fctzt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olm\u00fctzer Handels- und Gewerbekammer in den m\u00e4hr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Gro\u00dfullersdorf, 1879\u201391 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegr\u00fcndeten Te\u00dfthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, sp\u00e4ter auch anderen Fragen der Landwirtschaft widmete. S. n\u00fctzte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die M\u00f6glichkeiten des erh\u00f6hten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde f\u00fcr seine wirtschaftliche und polit. T\u00e4tigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon w\u00e4hrend seiner Lebenszeit wurde die Unternehmung von seinen S\u00f6hnen Anton S. (geb. Gro\u00dfullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Gro\u00dfullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Gro\u00dfullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgef\u00fchrt. W\u00e4hrend Anton S. bis 1917 die Wr. Gesch\u00e4ftsstelle leitete, danach mit Richard die Ullersdorfer Papierm\u00fchle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einf\u00fchrte. Alle drei Br\u00fcder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizit\u00e4tswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung t\u00e4tig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908\u20131938 Kammerrat der Handels- und Gewerbekammer Olm\u00fctz.\n", "source": 166}}, {"model": "metainfo.text", "pk": 47715, "fields": {"kind": 131, "text": "\u2014 Anton Schmidt,\u00a0Fabrikant und Politiker. Geb. Schildberg, M\u00e4hren (\u0160t\u00edty, Tschechoslowakei), 9. 12. 1826; gest. Gro\u00dfullersdorf, M\u00e4hren (Velk\u00e9 Losiny, Tschechoslowakei), 28. 3. 1892.", "source": 166}}, {"model": "metainfo.text", "pk": 47718, "fields": {"kind": 130, "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete f\u00fcr Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Franz\u00f6s. Krieg teil, wurde danach Red. des \u201eWestph\u00e4lischen Grenzboten\u201c in M\u00fcnster, dann Leiter des Feuilletons und \u201eReimchronist\u201c der \u201eDeutschen Zeitung\u201c in Paris und war schlie\u00dflich ab 1880 Berichterstatter der \u201eBerliner Post\u201c; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen sp\u00e4teren Ver\u00f6ff. zugute kamen. In der Folge \u00fcbersiedelte S. nach Wien, wo er 1886 in die Red. des \u201eNeuen Wiener Tagblatts\u201c eintrat, der er bis zu seinem Tod angeh\u00f6rte. Daneben arbeitete er an mehreren Ztg. (u. a. der \u201eIllustrirten Zeitung\u201c, Leipzig) und Z. (u. a. der \u201eGartenlaube\u201c) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. \u201eMuth\u201c, 1899), Erz., M\u00e4rchen, den historisierenden Wr. Roman aus dem 15. Jh. \u201eB\u00fcrger und Studenten\u201c sowie dramat. Werke.\n", "source": 164}}, {"model": "metainfo.text", "pk": 47719, "fields": {"kind": 131, "text": "Schmal\u00a0Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preu\u00dfen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900.", "source": 164}}, {"model": "metainfo.text", "pk": 47724, "fields": {"kind": 130, "text": "Sohn eines in Frankreich t\u00e4tigen Tschechen und einer Franz\u00f6sin (geb. Beauchez), lebte er ab 1860 in B\u00f6hmen und besuchte das Akadem. Gymn. in Prag. Er wurde als aktiver Teilnehmer an Demonstrationen gegen den Justizminister Herbst (s. d.) verhaftet und wegen Hochverrats angeklagt, floh jedoch vor dem Proze\u00df nach Paris, dann 1869 nach Berlin, wo er die \u201eCorrespondance Tch\u00e8que\u201c red. W\u00e4hrend des dt.-franz\u00f6s. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zur\u00fcck und fand seinen Lebensunterhalt als Lehrer der franz\u00f6s. Sprache in Leitomischl (Litomy\u0161l), von 1873 an in Prag. Polit. geh\u00f6rte er dem radikalen Fl\u00fcgel der demokrat. Jungtschechen an, k\u00e4mpfte f\u00fcr die Einf\u00fchrung des allg. Wahlrechts und trat auch in Prager Arbeiterbll. mit Artikeln hervor. V. a. widmete er sich der Anbahnung der freundschaftl. Beziehungen zu Frankreich, f\u00fchrte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag f\u00fcr franz\u00f6s. Ztg. 1893\u201398 war er Korrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris, dann st\u00e4ndiger Mitarbeiter von \u201eLe Temps\u201c in Prag, ab 1903 Red. der erneuerten \u201eCorrespondance Tch\u00e8que\u201c. Daneben war er als \u00dcbers. franz\u00f6s. Romane und Schauspiele t\u00e4tig und verf. eine Reihe von verbreiteten Sprachlehrb\u00fcchern und Konversationsbehelfen.\n", "source": 165}}, {"model": "metainfo.text", "pk": 47725, "fields": {"kind": 131, "text": "\u2014 -Beauchez\u00a0Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, B\u00f6hmen (Praha, Tschechien), 14. 12. 1912.", "source": 165}}, {"model": "metainfo.text", "pk": 47726, "fields": {"kind": 130, "text": "Bauernsohn; stud. kath. Theol. an der Univ. Prag, 1860 Priesterweihe, 1865 Dr. theol. Ab 1862 Adjunkt an der theolog. Fak. in Prag, lernte er auf einer Stud.Reise durch Deutschland die damals namhaftesten Theologen (Hergenr\u00f6ther, Hettinger, D\u00f6llinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. f\u00fcr Kirchengeschichte an der Univ. Prag und f\u00fchrte 1878 das Fach Patrol. in den Lehrplan ein. S. war Historiograph der Fak., mehrmals Dekan und Rektor. 1882 hatte er als letzter Rektor der ungeteilten Univ. die Trennungsverhh. zu leiten. Mitgl. diverser gel. Ges., Landtagsabg. der Fraktion der verfassungstreuen Gro\u00dfgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte B\u00f6hmens. In seiner Monographie \u00fcber den Hl. Wolfgang bem\u00fchte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n", "source": 163}}, {"model": "metainfo.text", "pk": 47727, "fields": {"kind": 131, "text": "Schindler\u00a0Josef, Kirchenhistoriker. * Lachowitz (Lachovice, B\u00f6hmen), 23. 6. 1835; \u2020 Prag, 22. 2. 1911.", "source": 163}}, {"model": "metainfo.text", "pk": 47728, "fields": {"kind": 130, "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); w\u00e4hrend der Volksschulzeit S\u00e4nger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verh\u00e4ltnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien besch\u00e4ftigt; daneben stud. er am Konservatorium der Ges. der Musikfreunde Klavier bei Fischhof, Pirkhert (beide s. d.) und Franz Ramesch, Komposition bei Simon Sechter sowie Waldhorn bei Richard Lewy und lernte dort den Dirigenten H. Richter (s. d.) kennen, mit dem er zeitlebens freundschaftlich verbunden war. Ab 1865 war S. 1. Hornist am Hofburgtheater und als Musiklehrer u. a. in der Familie des Justizministers Stremayr und in der Familie Kautsky t\u00e4tig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivit\u00e4ten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Br\u00fcdern zur Arbeiterbewegung; 1868 gr\u00fcndete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das \u201eLied der Arbeit\u201c, das zur Hymne der \u00f6sterr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (h\u00e4ufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, R\u00fcckert), wobei die \u00dcbereinstimmung von textlicher und musikal. Deklamation f\u00fcr ihn sehr wesentlich war. 1872 gr\u00fcndete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste \u00f6sterr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur beh\u00f6rdlichen Einstellung 1878 war S. Red. der \u201e\u00d6sterreichischen Musikerzeitung\u201c, 1878 gr\u00fcndete er den Arbeiter-S\u00e4ngerbund Wien, den ersten \u00f6sterr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880\u201382 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem m\u00e4rchenhaften, allegor. Libretto von Albert Dulk) im sp\u00e4tromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegr\u00fcnder und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-S\u00e4ngerbundes Landstra\u00dfe, 1891 Mitbegr\u00fcnder des Verbandes der Arbeiter-Gesangver. Nieder\u00f6sterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gr\u00fcndete S. die \u201eArbeiters\u00e4nger-Zeitung\u201c, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der \u201eArbeiter-Zeitung\u201c, wobei er bem\u00fcht war, das Kunstverst\u00e4ndnis der Arbeiter zu f\u00f6rdern und ihnen die klass. und zeitgen\u00f6ss. Musik n\u00e4herzubringen. S. sah in der von ihm begr\u00fcndeten Arbeiters\u00e4ngerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung \u00fcberhaupt.\n", "source": 161}}, {"model": "metainfo.text", "pk": 47729, "fields": {"kind": 131, "text": "Scheu\u00a0Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; \u2020 Wien, 12. 10. 1904.", "source": 161}}, {"model": "metainfo.text", "pk": 47730, "fields": {"kind": 130, "text": "S. stud. 1870\u201378 an der Akad. der bildenden K\u00fcnste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885\u201390 als Ass. an der Kunstgewerbeschule in Prag bei Franti\u0161ek \u017den\u00ed\u0161ek, 1890\u20131922 war er dort als Prof. (1894 o. Prof.) f\u00fcr dekorative Malerei t\u00e4tig. 1913 Mitgl. der Tschech. Akad. der Wiss. und K\u00fcnste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, n\u00e4mlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten H\u00e4lfte der 80er Jahre wandte er sich, unter dem Einflu\u00df der westeurop. Malerei und bedingt durch die Konfrontation mit den sozialen Problemen des Alltags, Genrethemen zu, in denen Traurigkeit, Tragik und Resignation vorherrschen. In seinen melanchol. gestimmten Gem\u00e4lden der folgenden Periode verwendete er h\u00e4ufig Motive aus dem Milieu des abendlichen und n\u00e4chtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gef\u00fchlstiefe, die durch Lichteffekte bewirkt wird, aus.\n", "source": 162}}, {"model": "metainfo.text", "pk": 47731, "fields": {"kind": 131, "text": "Schikaneder\u00a0Jakub, Maler. * Prag, 27. 2. 1855; \u2020 Prag, 15. 11. 1924.", "source": 162}}, {"model": "metainfo.text", "pk": 47732, "fields": {"kind": 130, "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861\u20131919), der gem. mit seinem Onkel Sebastian S. (1844\u201389) 1885 die Holzdrahtfabrik S. & Neffe gegr\u00fcndet hatte; stud. Elektrotechnik an der H\u00f6heren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im v\u00e4terlichen Unternehmen, das Z\u00fcndholzhersteller belieferte, aber auch u. a. Jalousiest\u00e4be und Zahnstocher herstellte, und brachte es in kurzer Zeit zu gro\u00dfer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Z\u00fcndholzerzeugung nahm 1928 durch S.s Mitgr\u00fcndung des Luma-Verkaufsb\u00fcros der Z\u00fcndwarenfabriken Solo-AG Sch\u00fcttenhofen und S. & Neffe GmbH in Prag gro\u00dfen Aufschwung, Z\u00fcndh\u00f6lzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, besch\u00e4ftigte bis zu 300 Mitarbeiter. 1892\u20131938 f\u00fchrte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Ann\u00edn). Er stellte das Rohglas in einem Fabrikneubau in Langendorf her, der mit einem modernen Glasschmelzofen ausgestattet war. Das von S. erzeugte Bleikristall war nicht mehr blaustichig, sondern rein wei\u00df, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflu\u00dfte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n", "source": 159}}, {"model": "metainfo.text", "pk": 47733, "fields": {"kind": 131, "text": "Schell\u00a0Karl, Industrieller. * Langendorf (Dlouh\u00e1 Ves, B\u00f6hmen), 19. 12. 1892; \u2020 ebenda, 2. 6. 1945", "source": 159}}, {"model": "metainfo.text", "pk": 47734, "fields": {"kind": 130, "text": "Stud. 1860\u201365 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Br\u00fccke (s. d.), 1869 Priv.Doz. f\u00fcr die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. f\u00fcr Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegr\u00fcndeten Inst. f\u00fcr Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. f\u00fcr Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte gro\u00dfes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach \u00fcbers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Soci\u00e9t\u00e9 scientifique m\u00e9dicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n", "source": 160}}, {"model": "metainfo.text", "pk": 47735, "fields": {"kind": 131, "text": "Schenk\u00a0Samuel Leopold, Mediziner. * \u00dcrm\u00e9ny (Mojm\u00edrovce, Slowakei), 23. 8. 1840; \u2020 Schwanberg (Stmk.), 17. 8. 1902.", "source": 160}}, {"model": "metainfo.text", "pk": 47746, "fields": {"kind": 130, "text": "Sohn eines Finanzsekr. \u2013 Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869\u201372 an der Wr. ABK bei \u00bfKarl Mayer fort. 1872 \u00fcbersiedelte er nach M\u00fcnchen und wurde 1873 an der dortigen ABK Sch\u00fcler von S\u00e1ndor Wagner. In den Folgejahren arbeitete er als Maler in M\u00fcnchen und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878\u201381 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, sp\u00e4ter w\u00e4hlte er Themen aus der Gegend um den Balaton. 1899\u20131902 hielt er sich wieder in M\u00fcnchen auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften z\u00e4hlt, gewann 1897 den Esterh\u00e1zy-Preis, 1899 den Preis des Ung. Ver. f\u00fcr Bildende K\u00fcnste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u.\u00a0a. Luftspiegelung \u00fcber der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Gal\u00e9ria in Budapest.\n\n", "source": 201}}, {"model": "metainfo.text", "pk": 47747, "fields": {"kind": 131, "text": "T\u00f6lgyessy Art\u00far, Maler. Geb. Szegedin (Szeged, H), 1.\u00a05. 1853; gest. Budapest (H), 2.\u00a02. 1920; r\u00f6m.-kath.", "source": 201}}, {"model": "metainfo.text", "pk": 47748, "fields": {"kind": 130, "text": "S\u00fcdtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T.\u00a0u.\u00a0H. (1728\u20131788) und Josepha Gfn. v. T.\u00a0u.\u00a0H. (1741\u20131819), Cousin des F\u00fcrstbischofs von Trient Peter Vigil Gf. v. T.\u00a0u.\u00a0H. (1776\u20131780), verwandt mit F\u00fcrstbischof \u00bfLeopold Leonhard Gf. v. T.\u00a0u.\u00a0H. \u2013 T. stud. in Passau, Salzburg und Rom Theol. und empfing dort als Mitgl. des Germanicums die Priesterweihe. 1790 wurde er Kanoniker von Trient, 1794 von Salzburg, 1797 Tit.bischof von Iasus und Weihbischof von Trient (Konsekration durch Leopold Leonhard Gf. v. T.\u00a0u.\u00a0H.). Als letzter vom Trienter Domkapitel gew\u00e4hlter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T.\u00a0u.\u00a0H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k.\u00a0Investitur nicht mehr erhalten, da er Anfang 1801 vor den franz\u00f6s. Truppen zun\u00e4chst nach G\u00f6rz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich f\u00fcr den Fortbestand seines Bistums einsetzte. Er k\u00e4mpfte erfolgreich gegen die Pl\u00e4ne K. \u00bfFranz\u2019\u00a0II. (I.), der f\u00fcr Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endg\u00fcltige S\u00e4kularisierung des F\u00fcrstbistums, Kl\u00f6ster wurden aufgel\u00f6st, das Hochstift mit seinen 150.000 Einwohnern \u00d6sterr. zugeordnet. Nach dem Frieden von Pre\u00dfburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zur\u00fcckkehren, wo er in Trient eine Stadtwohnung bezog, da seine f\u00fcrstbisch\u00f6fl. Residenz, das Castello del Buonconsiglio, s\u00e4kularisiert worden war. Die staatl. \u00dcbergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bisch\u00f6fe: T. von Trient, Karl Franz Gf. v. Lodron von Brixen (Bressanone) und Karl Rudolph v. Buol-Schauenstein von Chur. Bes. Protest riefen neben den Eingriffen in das religi\u00f6se Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von di\u00f6zesanen Priesterseminaren hervor. Die drei Bisch\u00f6fe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius\u00a0VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs best\u00e4rkt. W\u00e4hrend Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bez\u00fcge gesperrt; Buol-Schauenstein wurde nach Graub\u00fcnden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerst\u00e4ndige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar w\u00e4hlen. Dieser, Franz v. Spaur, erhielt von T. die geheime Best\u00e4tigung. Die bayer. Ma\u00dfnahmen auf kirchl. Gebiet (Ver\u00e4u\u00dferung gr\u00f6\u00dferer Tle. der bisch\u00f6fl. und Kapiteldotation, S\u00e4kularisierung mehrerer Kl\u00f6ster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zur\u00fcckkehren, schwor dem neuen Machthaber 1810 in Monza den Treueeid und nahm auch am Nationalkonzil in Paris 1811 teil. Obwohl Napoleon ebenso schroff in kirchl. Belange eingriff, duldete T. dessen Klosteraufhebungen, die Einf\u00fchrung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entlie\u00df 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut \u00fcbertragen. Als das Bistum 1814 wieder an \u00d6sterr. fiel, folgte eine Zeit der Konsolidierung, einige Kl\u00f6ster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bisch\u00f6fl. Mensa, das Domkapitel und die Bischofsnomination durch den \u00f6sterr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tats\u00e4chl. in seinem Bistum residieren.\n\n", "source": 200}}, {"model": "metainfo.text", "pk": 47749, "fields": {"kind": 131, "text": "Thun und Hohenstein Emanuel Maria Gf. von, F\u00fcrstbischof. Geb. Trient, Bistum Trient (Trento, I), 28.\u00a03. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9.\u00a010. 1818 (bestattet: Dom zu Trient); r\u00f6m.-kath.", "source": 200}}, {"model": "metainfo.text", "pk": 47754, "fields": {"kind": 130, "text": "Entstammte einer 1779 in den Adelsstand erhobenen Familie. Sohn des Rtm. Wilhelm Kluger Edler v.\u00a0T. und von Johanna Kluger Edler v.\u00a0T., geb. Toth, Vater von vier Kindern, u.\u00a0a. des Juristen und \u00dcbers. Hermann Frh. v.\u00a0T. (geb.\u00a06.\u00a07. 1866; gest. Neapel/Napoli, I, 6.\u00a011. 1911); in 1.\u00a0Ehe mit Rosa Petz (geb. 1843; gest. Wien, 16.\u00a012. 1866), in 2.\u00a0Ehe ab 1870 mit Bibiana Anna Bianca (Blanche) Lucas verheiratet. \u2013 T. besuchte ab 1847 die Theresian. Akad. in Wien, wo er bis zum Abschluss seiner jurid. Stud. 1859 blieb. Danach hielt er sich zu rechtshist. Stud. ein Jahr lang in Berlin auf und trat im April 1861 als Min.-Konzepts-Adjunkt im Min. f\u00fcr Handel und Volkswirtschaft in den \u00f6sterr. Staatsdienst. Hier gelangte er sehr bald in einflussreiche Positionen: Schon Anfang der 1860er-Jahre wurde er unter \u00bfAnton v. Schmerling in das Staatsmin. berufen und der Presseleitung zugeteilt. T., leitender Mitarb. der \u201e\u00d6sterreichischen Wochenschrift\u201c (1865 eingestellt), fungierte ab 1864 als Leiter des Abendbl., ab 1865 als Chefred. der \u201eWiener Zeitung\u201c, die er bis Mitte J\u00e4nner 1871 gem. mit Georg Seuffert f\u00fchrte, und setzte in dieser Position die von \u00bfLeopold Schweitzer begonnenen Reformen fort. Ab 1867 unterstand die Ztg. infolge der Reorganisation des Presseapparats der Leitung von \u00bfFriedrich Ferdinand Gf. Beust, der der Presse weit gr\u00f6\u00dfere Aufmerksamkeit schenkte als seine Vorg\u00e4nger: Er sch\u00e4tzte sowohl T.s au\u00dferordentl. publizist. Begabung wie auch seine umfassende Bildung und v.\u00a0a. sein polit. Verst\u00e4ndnis, wodurch T. noch im selben Jahr zum Min.sekr. avancierte. Er wechselte in die Pr\u00e4sidialsektion des Gem. Min. des \u00c4u\u00dfern und des k.\u00a0Hauses und \u00fcbernahm in seiner neuen Funktion, neben seiner eigentl. T\u00e4tigkeit als Chefred., auch wichtige polit. Auftr\u00e4ge. Im April 1869 erfolgte seine Ernennung zum Sektionsrat und im Februar 1871 die zum HR bzw. Min.rat. W\u00e4hrend seiner T\u00e4tigkeit im Pressdep. (Literar. B\u00fcro) war er u.\u00a0a. Verbindungsmann zum \u201ePester Lloyd\u201c und mit der Einflussnahme auf ma\u00dfgebl. dt. Bll. beauftragt. I.\u00a0d.\u00a0F. wurde T. def. in den Dienst des Gem. Min. des \u00c4u\u00dfern und des k.\u00a0Hauses aufgenommen und \u00fcbernahm im M\u00e4rz 1872 auf Wunsch von \u00bfJulius Gf. Andr\u00e1ssy d.\u00a0\u00c4. das Referat f\u00fcr dt. Angelegenheiten. Daneben stand er dem Min. auch f\u00fcr andere publizist. Aufgaben zur Verf\u00fcgung. Im November 1876 erfolgte seine Ernennung zum ao.\u00a0Gesandten und bevollm\u00e4chtigten Minister. Nach dem R\u00fccktritt Andr\u00e1ssys (1879) r\u00fcckte T. zwar in den Hintergrund, nahm aber weiterhin regelm\u00e4\u00dfig an den (schriftl.) Delegationsverhh. zwischen beiden Reichsh\u00e4lften teil. Im Juni 1880 \u00fcbernahm er f\u00fcr kurze Zeit sowohl die Leitung des Literar. B\u00fcros als auch jene des Informationsb\u00fcros, das mit staatspolizeil. Agenden betraut war. Au\u00dferdem wurde er mit verschiedenen Inspektionsmissionen beauftragt, die ihn u.\u00a0a. nach Rom und Konstantinopel (Istanbul) f\u00fchrten. Im September 1883 wurde er zum Verbindungsmann zwischen Au\u00dfenmin. und Konsular-Akad. ernannt, die mit der Heranbildung des diplomat. Nachwuchses befasst war. T. war ab 1862 Mitgl. des Journalisten- und Schriftstellerver. \u201eConcordia\u201c (1865\u201366 Vorstandsmitgl.). 1868 Orden der Eisernen Krone III.\u00a0Kl., 1878 Kommandeur des Leopold-Ordens, 1883 Gro\u00dfkreuz des Franz Joseph-Ordens, 1879 Erhebung in den Frh.stand.\n\n", "source": 197}}, {"model": "metainfo.text", "pk": 47755, "fields": {"kind": 131, "text": "Teschenberg Ernst Maximilian Frh. von, eigentl. Kluger Frh. von T. Ernst, Journalist und Politiker. Geb. \u00d6denburg (Sopron, H), 21.\u00a05. 1836; gest. Wien, 25.\u00a02. 1886.", "source": 197}}, {"model": "metainfo.text", "pk": 47756, "fields": {"kind": 130, "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2.\u00a0Ehefrau Julia T., geb. Grabowska, Halbbruder von \u00bfWlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von \u00bfLudwig v.\u00a0T. \u2013 T. besuchte das Gymn. in Krakau (Krak\u00f3w) und stud. 1884\u201386 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889\u201393 arbeitete er als Mithrsg. der Z. \u201eKurier Polski\u201c und als Journalist der Z. \u201eTygodnik Ilustrowany\u201c, \u201eKurier Warszawski\u201c und \u201eCzas\u201c; danach war er Sekr. von Adam Krasinski und stud. mit ihm 1896 in Heidelberg. Nach 1896 lebte er in Zakopane und Krakau, ab 1918 in Warschau. T. deb\u00fct. 1886 mit lyr. Prosa und Gelegenheitsdichtung (\u201eIlla\u201c). 1888 gewann er einen Preis der Jagiellonen-Univ. f\u00fcr ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik (\u201eWiersz na uczczenie pamieci Adama Mickiewicza\u201c), und 1889 einen weiteren f\u00fcr eine Hymne auf den Schriftsteller \u00bfJ\u00f3zef Ignacy Kraszewski (\u201eNa czesc Kraszewskiego\u201c). T. galt neben \u00bfJan Kasprowicz als der popul\u00e4rste Dichter der Bewegung Junges Polen und repr\u00e4sentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtb\u00e4ndigen Ged.smlg. \u201ePoezje\u201c (1891\u20131924) erlangte er Anerkennung als bedeutender Lyriker und Autorit\u00e4t der jungpoln. Literatur. T., der sich f\u00fcr Arthur Schopenhauers und Friedrich Nietzsches Phil. begeisterte, schrieb impressionist. Natur- und Stimmungslyrik mit einer Neigung zu Pessimismus und Dekadenz, erot. Ged. und Liebeslyrik sowie Novellen und Romane mit Motiven aus dem zeitgen\u00f6ss. Leben der Boh\u00e8me. 1898 erschien der Roman \u201eAniol smierci\u201c (dt. \u201eDer Todesengel\u201c, 1899), der in dt. \u00dcbers. zuerst als Vorabdruck in der Z. \u201eAus fremden Zungen\u201c erschien, in der T. i.\u00a0d.\u00a0F. weitere Ged. ver\u00f6ff. In der f\u00fcnfb\u00e4ndigen Novellensmlg. \u201eNa skalnym Podhalu\u201c (1903\u201310, dt.sprachige Auswahl unter dem Titel \u201eAus der Tatra\u201c, 1903) verherrlichte T. Land und Leute der Hohen Tatra im Dialekt der Gegend und unter Einbeziehung tradierter Stoffe und Legenden. Bedeutend sind auch seine zwei hist. Tatra-Romane \u201eMaryna z Hrubego\u201c (1910) und \u201eJanosik Nedza Litmanowski\u201c (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. W\u00e4hrend des 1.\u00a0Weltkriegs war T. Hrsg. der Z. \u201ePraca Narodowa\u201c. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zur\u00fcckgezogen, als Dauergast im Warschauer Hotel Europejski. Von dort wurde er von den Deutschen vertrieben und starb in einem Krankenhaus. T., der 1928 den Literaturpreis der Stadt Warschau erhielt, war ab 1921 Pr\u00e4s. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literat\u00f3w Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n", "source": 198}}, {"model": "metainfo.text", "pk": 47757, "fields": {"kind": 131, "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18.\u00a01. 1940; r\u00f6m.-kath.", "source": 198}}, {"model": "metainfo.text", "pk": 47758, "fields": {"kind": 130, "text": "Sohn von \u00bfOskar Karl T. und \u00bfEmma T., Bruder von Wilhelm (genannt Willy) T.-Weckersdorf (geb. Prag, 23. 9. 1879; gest. Salzburg, Sbg., 3. 3. 1968), der sich ebenfalls um die Entwicklung des \u00f6sterr. Pfadfinderwesens verdient machte und nach dem 2. Weltkrieg als Leiter der Ind.abt. der Sbg. Landesregierung fungierte, und von Obst. Oskar (genannt Ossi) T. (geb. Prag, 21. 3. 1881; gest. Innsbruck, Tirol, 19. 4. 1943), der im Heeresmin. t\u00e4tig war und gem. mit seiner j\u00fcd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923\u20131998), Univ.-Prof. f\u00fcr Politikwiss. in Wien. \u2013 T. diente ab 1896 im 3. Tiroler J\u00e4gerrgt. \u201eKaiserj\u00e4ger\u201c, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Milit\u00e4rsachverst\u00e4ndiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des milit\u00e4r. organisierten Knabenhortverbands in der milit\u00e4r.-patriot. Jugenderziehung und -f\u00fcrsorge ein neues Bet\u00e4tigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, \u00fcbertrug er das System der Boy Scouts des engl. Begr\u00fcnders des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gr\u00fcndete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in \u00d6sterr. und die Keimzelle des von ihm initiierten \u00d6sterr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915\u201319 Reichsfeldmeister des Bundes. Aufgrund des Verm\u00f6gens seiner Frau, einer Amerikanerin, konnte \u201ePapa\u201c T. hohe Geldmittel f\u00fcr die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronl\u00e4nder vom \u00d6sterr. Pfadfinderbund wirkte T. 1918\u201320 hauptberufl. als Insp. des Verbands f\u00fcr freiwillige Jugendf\u00fcrsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendf\u00fcrsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und f\u00fcr das Rote Kreuz t\u00e4tig. Da er sich weltanschaul. mit der aufkommenden \u201eb\u00fcndischen\u201c, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zur\u00fcck, blieb aber bis 1923 Bundesfeldmeister im \u00d6sterr. Pfadfinderbund. Er unterst\u00fctzte nunmehr den religi\u00f6sen Einfluss des kath. Klerus auf die Pfadfinder-Jugendarbeit und akzeptierte den Zusammenschluss der innerhalb des Bundes bereits bestehenden kath. Pfadfinderkolonnen zum Ring der St. Georgspfadfinder; 1926 Gr\u00fcndung der kath. Jugendorganisation des \u00d6sterr. Pfadfinderkorps St. Georg, das sich relativ rasch vergr\u00f6\u00dferte. Durch die Auss\u00f6hnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei gro\u00dfe Landg\u00fcter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zur\u00fcck. 1922\u201329 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals h\u00f6chste Pfadfinderausz., den \u201eSilberwolf\u201c. Als nach dem \u201eAnschluss\u201c \u00d6sterr. alle bestehenden Jugendorganisationen aufgel\u00f6st und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in M\u00fcnchen aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die \u00f6sterr. Pfadfinder posthum 1956 ihre h\u00f6chste Ausz., den \u201eSilbernen Steinbock\u201c. T.s Bruder ", "source": 199}}, {"model": "metainfo.text", "pk": 47759, "fields": {"kind": 131, "text": "Teuber Emmerich (genannt Imre), Pfadfinderf\u00fchrer und Offizier. Geb. Prag, B\u00f6hmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; r\u00f6m.-kath.", "source": 199}}, {"model": "metainfo.text", "pk": 47764, "fields": {"kind": 130, "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn sp\u00e4ter in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. \u2013 T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher S\u00e4nger werden. Er stud. 1908\u201310 Klavier, Komposition und Orchesterdirigieren am Hoch\u2019schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm \u00bfLeopold Demuth eine Stimme \u201ewie ein Zwirnsfaden\u201c. Wegen einer Liebelei musste T. nach Freiburg im Breisgau \u00fcbersiedeln, wo er dem Gesangsp\u00e4dagogen Carl Beines begegnete, der sein gro\u00dfes Talent erkannte und ihn ausbildete. T. gab sein Operndeb\u00fct 1913 in Chemnitz als Tamino in Mozarts \u201eZauberfl\u00f6te\u201c und erhielt im selben Jahr ein Engagement an die Dresdner Hofoper, an der er bis 1918 blieb. Er wurde ein gefragter lyr. Tenor, auch da er innerhalb k\u00fcrzester Zeit Partien einzustud. vermochte (Beiname \u201eSOS-Tenor\u201c), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg \u00bfFranz Leh\u00e1r kennen, in dessen sp\u00e4ten Operetten er dann, beginnend mit \u201ePaganini\u201c (Berliner Erstauff. 1926), die m\u00e4nnl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen \u201eT.-Lieder\u201c, die als Schlager gro\u00dfe Popularit\u00e4t erlangten (\u201eDein ist mein ganzes Herz\u201c etc.). Trotz Warnungen, dass er seine Stimme f\u00fcr die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Ber\u00fchmtheit. Fr\u00fch erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der \u00d6ffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Leh\u00e1rs \u201eDas Land des L\u00e4chelns\u201c, eine Rolle, die er \u00fcber 700-mal verk\u00f6rperte. Im selben Jahr kam sein erster Film, \u201eIch glaub\u2019 nie mehr an eine Frau\u201c, in die Kinos. Die auf Dr\u00e4ngen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um gro\u00dfe Summen gebracht. Er stand weiterhin erfolgreich auf Opernb\u00fchnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im M\u00e4rz 1933 von der B\u00fchne des Berliner Admiralspalastes gebuht und auf dem Kurf\u00fcrstendamm von SA-M\u00e4nnern niedergeschlagen worden war, fl\u00fcchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schlie\u00dfl. nach Wien. Hier wurde seine Operette \u201eDer singende Traum\u201c uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in \u201eBlossom Time\u201c einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. K\u00fcnstler zum Star, der sich \u00f6ff. gegen \u00bfAdolf Hitler \u00e4u\u00dferte. Internationale Tourneen f\u00fchrten ihn nach Nord- und S\u00fcdamerika, nach S\u00fcdafrika, Asien und Australien. Nach dem \u201eAnschluss\u201c \u00d6sterr. an das Dt. Reich 1938 lebte er ausschlie\u00dfl. in England (ab 1940 engl. Staatsb\u00fcrger). Er gab Konzerte, die BBC brachte regelm\u00e4\u00dfige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette \u201eOld Chelsea\u201c. An H\u00f6chstgagen und einen aufwendigen Lebensstil gew\u00f6hnt, geriet T. im Exil jedoch in hohe Schulden. Nach Kriegsende trat er wieder international auf, hatte aber deutl. Stimmprobleme. Seinen letzten Auftritt absolv. der an Lungenkrebs Erkrankte Ende September 1947 am Royal Opera House, Covent Garden, als Don Ottavio in Mozarts \u201eDon Giovanni\u201c, wobei er besser denn je gesungen haben soll. T.s Vater ", "source": 196}}, {"model": "metainfo.text", "pk": 47765, "fields": {"kind": 131, "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, S\u00e4nger, Dirigent und Komponist. Geb. Linz (O\u00d6), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 r\u00f6m.-kath.", "source": 196}}, {"model": "metainfo.uri", "pk": 26, "fields": {"uri": "http://sws.geonames.org/3194099/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 26, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 111, "fields": {"uri": "http://sws.geonames.org/3186886/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 133, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 149, "fields": {"uri": "http://sws.geonames.org/2761369/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 183, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 258, "fields": {"uri": "http://sws.geonames.org/3078610/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 327, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 299, "fields": {"uri": "http://sws.geonames.org/3077117/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 384, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 311, "fields": {"uri": "http://sws.geonames.org/3054643/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 637, "fields": {"uri": "http://sws.geonames.org/683506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 831, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 713, "fields": {"uri": "http://sws.geonames.org/2782067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 926, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1062, "fields": {"uri": "http://sws.geonames.org/2950159/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1390, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1089, "fields": {"uri": "http://sws.geonames.org/3071961/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1424, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1112, "fields": {"uri": "http://sws.geonames.org/2781806/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1291, "fields": {"uri": "http://sws.geonames.org/2781629/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1701, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1304, "fields": {"uri": "http://sws.geonames.org/2907669/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1718, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1511, "fields": {"uri": "http://sws.geonames.org/684039/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2006, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1561, "fields": {"uri": "http://sws.geonames.org/3060972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2072, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1571, "fields": {"uri": "http://sws.geonames.org/3078577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2085, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1625, "fields": {"uri": "http://sws.geonames.org/3081368/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2161, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1631, "fields": {"uri": "http://sws.geonames.org/3181550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2170, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1651, "fields": {"uri": "http://sws.geonames.org/3074967/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2197, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1711, "fields": {"uri": "http://sws.geonames.org/711416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2281, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1856, "fields": {"uri": "http://sws.geonames.org/3435910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2489, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1939, "fields": {"uri": "http://sws.geonames.org/3181215/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2602, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2121, "fields": {"uri": "http://sws.geonames.org/710719/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2854, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2302, "fields": {"uri": "http://sws.geonames.org/3101321/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3105, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2344, "fields": {"uri": "http://sws.geonames.org/681290/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3162, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3021, "fields": {"uri": "http://sws.geonames.org/2934486/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4096, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3151, "fields": {"uri": "http://sws.geonames.org/3063762/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4269, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3518, "fields": {"uri": "http://sws.geonames.org/2778067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4767, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3599, "fields": {"uri": "http://sws.geonames.org/2779275/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4877, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3912, "fields": {"uri": "http://sws.geonames.org/677410/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5294, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3923, "fields": {"uri": "http://sws.geonames.org/2873574/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5308, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4052, "fields": {"uri": "http://sws.geonames.org/3175986/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5478, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4206, "fields": {"uri": "http://sws.geonames.org/3173577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5691, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4249, "fields": {"uri": "http://sws.geonames.org/2777972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5749, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4440, "fields": {"uri": "http://sws.geonames.org/3063197/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6004, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4676, "fields": {"uri": "http://sws.geonames.org/2910831/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6324, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4954, "fields": {"uri": "http://sws.geonames.org/2775220/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6700, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5134, "fields": {"uri": "http://sws.geonames.org/3199302/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6947, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5507, "fields": {"uri": "http://sws.geonames.org/3097333/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5631, "fields": {"uri": "http://sws.geonames.org/2772649/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7622, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5897, "fields": {"uri": "http://sws.geonames.org/2892518/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7986, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6257, "fields": {"uri": "http://sws.geonames.org/2773913/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8482, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6486, "fields": {"uri": "http://sws.geonames.org/2885679/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8798, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6838, "fields": {"uri": "http://sws.geonames.org/2773300/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9287, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6961, "fields": {"uri": "http://sws.geonames.org/3072358/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9455, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6977, "fields": {"uri": "http://sws.geonames.org/3196359/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7169, "fields": {"uri": "http://sws.geonames.org/702550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9735, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7375, "fields": {"uri": "http://sws.geonames.org/2772400/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10015, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7554, "fields": {"uri": "http://sws.geonames.org/2643743/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10265, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7936, "fields": {"uri": "http://sws.geonames.org/3195506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10793, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8262, "fields": {"uri": "http://sws.geonames.org/3064919/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11238, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8489, "fields": {"uri": "http://sws.geonames.org/3070372/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11556, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8668, "fields": {"uri": "http://sws.geonames.org/2867714/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11799, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8966, "fields": {"uri": "http://sws.geonames.org/3090436/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12211, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9363, "fields": {"uri": "http://sws.geonames.org/2990440/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12758, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9718, "fields": {"uri": "http://sws.geonames.org/3045190/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13253, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9810, "fields": {"uri": "http://sws.geonames.org/3069011/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13382, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10050, "fields": {"uri": "http://sws.geonames.org/2988507/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13714, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10247, "fields": {"uri": "http://sws.geonames.org/2854561/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13987, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10697, "fields": {"uri": "http://sws.geonames.org/3067696/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 14608, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11885, "fields": {"uri": "http://sws.geonames.org/3057304/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16242, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11932, "fields": {"uri": "http://sws.geonames.org/3167905/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16310, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12137, "fields": {"uri": "http://sws.geonames.org/3065118/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16594, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12332, "fields": {"uri": "http://sws.geonames.org/2765515/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16864, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13419, "fields": {"uri": "http://sws.geonames.org/3083848/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18374, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13438, "fields": {"uri": "http://sws.geonames.org/715429/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14028, "fields": {"uri": "http://sws.geonames.org/3165243/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19215, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14297, "fields": {"uri": "http://sws.geonames.org/3058653/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19599, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14983, "fields": {"uri": "http://sws.geonames.org/756135/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20549, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15060, "fields": {"uri": "http://sws.geonames.org/792794/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20659, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15214, "fields": {"uri": "http://sws.geonames.org/2782058/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20872, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15297, "fields": {"uri": "http://sws.geonames.org/2633767/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20988, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15896, "fields": {"uri": "http://sws.geonames.org/3064454/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 21818, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16165, "fields": {"uri": "http://sws.geonames.org/3074331/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22216, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16195, "fields": {"uri": "http://sws.geonames.org/2764112/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22259, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16238, "fields": {"uri": "http://sws.geonames.org/2762908/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22322, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16260, "fields": {"uri": "http://sws.geonames.org/2659297/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22354, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16342, "fields": {"uri": "http://sws.geonames.org/2953416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16355, "fields": {"uri": "http://sws.geonames.org/2772910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22494, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16377, "fields": {"uri": "http://sws.geonames.org/2660718/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22526, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16386, "fields": {"uri": "http://sws.geonames.org/684490/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22545, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16392, "fields": {"uri": "http://sws.geonames.org/3092742/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22558, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16398, "fields": {"uri": "http://sws.geonames.org/3164453/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22570, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19098, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24869", "domain": "apis default", "rdf_link": "", "entity": 24869, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19116, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24898", "domain": "apis default", "rdf_link": "", "entity": 24898, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19117, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24899", "domain": "apis default", "rdf_link": "", "entity": 24899, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19118, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24900", "domain": "apis default", "rdf_link": "", "entity": 24900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19123, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24908", "domain": "apis default", "rdf_link": "", "entity": 24908, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19124, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24909", "domain": "apis default", "rdf_link": "", "entity": 24909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19125, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24910", "domain": "apis default", "rdf_link": "", "entity": 24910, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19126, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/24911", "domain": "apis default", "rdf_link": "", "entity": 24911, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19219, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25012", "domain": "apis default", "rdf_link": "", "entity": 25012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19232, "fields": {"uri": "http://d-nb.info/gnd/4023349-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19233, "fields": {"uri": "http://d-nb.info/gnd/4027096-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6700, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19237, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25035", "domain": "apis default", "rdf_link": "", "entity": 25035, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19242, "fields": {"uri": "http://d-nb.info/gnd/4044660-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19246, "fields": {"uri": "http://d-nb.info/gnd/4127793-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 11799, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19250, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25059", "domain": "apis default", "rdf_link": "", "entity": 25059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19251, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25060", "domain": "apis default", "rdf_link": "", "entity": 25060, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19273, "fields": {"uri": "http://d-nb.info/gnd/4008216-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19304, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25143", "domain": "apis default", "rdf_link": "", "entity": 25143, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19323, "fields": {"uri": "http://d-nb.info/gnd/4076310-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 14608, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19350, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25186", "domain": "apis default", "rdf_link": "", "entity": 25186, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19351, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25187", "domain": "apis default", "rdf_link": "", "entity": 25187, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19352, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25188", "domain": "apis default", "rdf_link": "", "entity": 25188, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19353, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25189", "domain": "apis default", "rdf_link": "", "entity": 25189, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19360, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25199", "domain": "apis default", "rdf_link": "", "entity": 25199, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19361, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25200", "domain": "apis default", "rdf_link": "", "entity": 25200, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25212", "domain": "apis default", "rdf_link": "", "entity": 25212, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25213", "domain": "apis default", "rdf_link": "", "entity": 25213, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19406, "fields": {"uri": "http://d-nb.info/gnd/4008684-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19447, "fields": {"uri": "http://d-nb.info/gnd/4038688-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 5691, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19459, "fields": {"uri": "http://d-nb.info/gnd/4265379-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1454, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19480, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25395", "domain": "apis default", "rdf_link": "", "entity": 25395, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19481, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25396", "domain": "apis default", "rdf_link": "", "entity": 25396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19482, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25397", "domain": "apis default", "rdf_link": "", "entity": 25397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19483, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25398", "domain": "apis default", "rdf_link": "", "entity": 25398, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19486, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25401", "domain": "apis default", "rdf_link": "", "entity": 25401, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19487, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25402", "domain": "apis default", "rdf_link": "", "entity": 25402, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19490, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25405", "domain": "apis default", "rdf_link": "", "entity": 25405, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19498, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25412", "domain": "apis default", "rdf_link": "", "entity": 25412, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19499, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25413", "domain": "apis default", "rdf_link": "", "entity": 25413, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19500, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25414", "domain": "apis default", "rdf_link": "", "entity": 25414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19501, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25415", "domain": "apis default", "rdf_link": "", "entity": 25415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19502, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25416", "domain": "apis default", "rdf_link": "", "entity": 25416, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19503, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25417", "domain": "apis default", "rdf_link": "", "entity": 25417, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19504, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25418", "domain": "apis default", "rdf_link": "", "entity": 25418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19505, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25419", "domain": "apis default", "rdf_link": "", "entity": 25419, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19506, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25420", "domain": "apis default", "rdf_link": "", "entity": 25420, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19507, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25421", "domain": "apis default", "rdf_link": "", "entity": 25421, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19583, "fields": {"uri": "http://d-nb.info/gnd/4021912-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25589", "domain": "apis default", "rdf_link": "", "entity": 25589, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19639, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25626", "domain": "apis default", "rdf_link": "", "entity": 25626, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19640, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25627", "domain": "apis default", "rdf_link": "", "entity": 25627, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19641, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25628", "domain": "apis default", "rdf_link": "", "entity": 25628, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19642, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25629", "domain": "apis default", "rdf_link": "", "entity": 25629, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19643, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25630", "domain": "apis default", "rdf_link": "", "entity": 25630, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19644, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25631", "domain": "apis default", "rdf_link": "", "entity": 25631, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19645, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25632", "domain": "apis default", "rdf_link": "", "entity": 25632, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19646, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25633", "domain": "apis default", "rdf_link": "", "entity": 25633, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19647, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25634", "domain": "apis default", "rdf_link": "", "entity": 25634, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19648, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25635", "domain": "apis default", "rdf_link": "", "entity": 25635, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19665, "fields": {"uri": "http://d-nb.info/gnd/4075643-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13382, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19718, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25767", "domain": "apis default", "rdf_link": "", "entity": 25767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19719, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25768", "domain": "apis default", "rdf_link": "", "entity": 25768, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19720, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25769", "domain": "apis default", "rdf_link": "", "entity": 25769, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19721, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25770", "domain": "apis default", "rdf_link": "", "entity": 25770, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19722, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25771", "domain": "apis default", "rdf_link": "", "entity": 25771, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19723, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25772", "domain": "apis default", "rdf_link": "", "entity": 25772, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19724, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/25773", "domain": "apis default", "rdf_link": "", "entity": 25773, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 20488, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/27245", "domain": "apis default", "rdf_link": "", "entity": 27245, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 32623, "fields": {"uri": "http://d-nb.info/gnd/118931482", "domain": "", "rdf_link": "", "entity": 46414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 39250, "fields": {"uri": "http://d-nb.info/gnd/118785028", "domain": "", "rdf_link": "", "entity": 56248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 43650, "fields": {"uri": "http://d-nb.info/gnd/118573527", "domain": "", "rdf_link": "", "entity": 62757, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60547, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/88219", "domain": "apis default", "rdf_link": "", "entity": 88219, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60980, "fields": {"uri": "http://d-nb.info/gnd/118508288", "domain": "", "rdf_link": "", "entity": 88902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 62984, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/92412", "domain": "apis default", "rdf_link": "", "entity": 92412, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63085, "fields": {"uri": "http://d-nb.info/gnd/118677667", "domain": "", "rdf_link": "", "entity": 92603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63174, "fields": {"uri": "http://d-nb.info/gnd/118505955", "domain": "", "rdf_link": "", "entity": 93003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63178, "fields": {"uri": "http://d-nb.info/gnd/119061201", "domain": "", "rdf_link": "", "entity": 93009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63180, "fields": {"uri": "http://d-nb.info/gnd/128578998", "domain": "", "rdf_link": "", "entity": 93012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63182, "fields": {"uri": "http://d-nb.info/gnd/143930567", "domain": "", "rdf_link": "", "entity": 93015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63184, "fields": {"uri": "http://d-nb.info/gnd/136186289", "domain": "", "rdf_link": "", "entity": 93018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63186, "fields": {"uri": "http://d-nb.info/gnd/136186343", "domain": "", "rdf_link": "", "entity": 93021, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63188, "fields": {"uri": "http://d-nb.info/gnd/140067302", "domain": "", "rdf_link": "", "entity": 93024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63189, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93025", "domain": "apis default", "rdf_link": "", "entity": 93025, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63191, "fields": {"uri": "http://d-nb.info/gnd/116539585", "domain": "", "rdf_link": "", "entity": 93028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63193, "fields": {"uri": "http://d-nb.info/gnd/11666827X", "domain": "", "rdf_link": "", "entity": 93031, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63195, "fields": {"uri": "http://d-nb.info/gnd/116689234", "domain": "", "rdf_link": "", "entity": 93034, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63196, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93035", "domain": "apis default", "rdf_link": "", "entity": 93035, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63202, "fields": {"uri": "http://d-nb.info/gnd/130579122", "domain": "", "rdf_link": "", "entity": 93044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63204, "fields": {"uri": "http://d-nb.info/gnd/143681761", "domain": "", "rdf_link": "", "entity": 93047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63206, "fields": {"uri": "http://d-nb.info/gnd/117649953", "domain": "", "rdf_link": "", "entity": 93050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63207, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93051", "domain": "apis default", "rdf_link": "", "entity": 93051, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63210, "fields": {"uri": "http://d-nb.info/gnd/130132098", "domain": "", "rdf_link": "", "entity": 93056, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63212, "fields": {"uri": "http://d-nb.info/gnd/143053272", "domain": "", "rdf_link": "", "entity": 93059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63213, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93060", "domain": "apis default", "rdf_link": "", "entity": 93060, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63216, "fields": {"uri": "http://d-nb.info/gnd/118817418", "domain": "", "rdf_link": "", "entity": 93065, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63218, "fields": {"uri": "http://d-nb.info/gnd/135697719", "domain": "", "rdf_link": "", "entity": 93068, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63220, "fields": {"uri": "http://d-nb.info/gnd/118524283", "domain": "", "rdf_link": "", "entity": 93071, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63222, "fields": {"uri": "http://d-nb.info/gnd/116070935", "domain": "", "rdf_link": "", "entity": 93074, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63223, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93075", "domain": "apis default", "rdf_link": "", "entity": 93075, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63261, "fields": {"uri": "http://d-nb.info/gnd/1012030806", "domain": "", "rdf_link": "", "entity": 93136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63385, "fields": {"uri": "http://d-nb.info/gnd/117736791", "domain": "", "rdf_link": "", "entity": 93328, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63391, "fields": {"uri": "http://d-nb.info/gnd/1019267925", "domain": "", "rdf_link": "", "entity": 93337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63401, "fields": {"uri": "http://d-nb.info/gnd/136782086", "domain": "", "rdf_link": "", "entity": 93352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63411, "fields": {"uri": "http://d-nb.info/gnd/1018979573", "domain": "", "rdf_link": "", "entity": 93366, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63413, "fields": {"uri": "http://d-nb.info/gnd/1019359811", "domain": "", "rdf_link": "", "entity": 93369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63419, "fields": {"uri": "http://d-nb.info/gnd/117634816", "domain": "", "rdf_link": "", "entity": 93378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63420, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93379", "domain": "apis default", "rdf_link": "", "entity": 93379, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63425, "fields": {"uri": "http://d-nb.info/gnd/116907525", "domain": "", "rdf_link": "", "entity": 93387, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63429, "fields": {"uri": "http://d-nb.info/gnd/116856246", "domain": "", "rdf_link": "", "entity": 93393, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63431, "fields": {"uri": "http://d-nb.info/gnd/119334429", "domain": "", "rdf_link": "", "entity": 93396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63432, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93397", "domain": "apis default", "rdf_link": "", "entity": 93397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63434, "fields": {"uri": "http://d-nb.info/gnd/118806025", "domain": "", "rdf_link": "", "entity": 93400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63440, "fields": {"uri": "http://d-nb.info/gnd/1018666664", "domain": "", "rdf_link": "", "entity": 93409, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63441, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93410", "domain": "apis default", "rdf_link": "", "entity": 93410, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63444, "fields": {"uri": "http://d-nb.info/gnd/1014451833", "domain": "", "rdf_link": "", "entity": 93415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63446, "fields": {"uri": "http://d-nb.info/gnd/117612308", "domain": "", "rdf_link": "", "entity": 93418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63462, "fields": {"uri": "http://d-nb.info/gnd/118813919", "domain": "", "rdf_link": "", "entity": 93442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63464, "fields": {"uri": "http://d-nb.info/gnd/1023121581", "domain": "", "rdf_link": "", "entity": 93445, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63466, "fields": {"uri": "http://d-nb.info/gnd/119065932", "domain": "", "rdf_link": "", "entity": 93448, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63467, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93449", "domain": "apis default", "rdf_link": "", "entity": 93449, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63480, "fields": {"uri": "http://d-nb.info/gnd/1021208493", "domain": "", "rdf_link": "", "entity": 93469, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63488, "fields": {"uri": "http://d-nb.info/gnd/137341768", "domain": "", "rdf_link": "", "entity": 93481, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63490, "fields": {"uri": "http://d-nb.info/gnd/1020698381", "domain": "", "rdf_link": "", "entity": 93484, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63492, "fields": {"uri": "http://d-nb.info/gnd/1020698055", "domain": "", "rdf_link": "", "entity": 93487, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63508, "fields": {"uri": "http://d-nb.info/gnd/118732277", "domain": "", "rdf_link": "", "entity": 93510, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63510, "fields": {"uri": "http://d-nb.info/gnd/10788464X", "domain": "", "rdf_link": "", "entity": 93513, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63512, "fields": {"uri": "http://d-nb.info/gnd/134474937", "domain": "", "rdf_link": "", "entity": 93516, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63528, "fields": {"uri": "http://d-nb.info/gnd/13185545X", "domain": "", "rdf_link": "", "entity": 93540, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63532, "fields": {"uri": "http://d-nb.info/gnd/1024716082", "domain": "", "rdf_link": "", "entity": 93546, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63542, "fields": {"uri": "http://d-nb.info/gnd/1026382211", "domain": "", "rdf_link": "", "entity": 93561, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63543, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93562", "domain": "apis default", "rdf_link": "", "entity": 93562, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63550, "fields": {"uri": "http://d-nb.info/gnd/102588485X", "domain": "", "rdf_link": "", "entity": 93573, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63560, "fields": {"uri": "http://d-nb.info/gnd/130027022", "domain": "", "rdf_link": "", "entity": 93588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63568, "fields": {"uri": "http://d-nb.info/gnd/117687030", "domain": "", "rdf_link": "", "entity": 93600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63574, "fields": {"uri": "http://d-nb.info/gnd/122897897", "domain": "", "rdf_link": "", "entity": 93609, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63575, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93610", "domain": "apis default", "rdf_link": "", "entity": 93610, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63578, "fields": {"uri": "http://d-nb.info/gnd/139593128", "domain": "", "rdf_link": "", "entity": 93615, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63594, "fields": {"uri": "http://d-nb.info/gnd/139112200", "domain": "", "rdf_link": "", "entity": 93639, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63596, "fields": {"uri": "http://d-nb.info/gnd/130427012", "domain": "", "rdf_link": "", "entity": 93642, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63598, "fields": {"uri": "http://d-nb.info/gnd/117522139", "domain": "", "rdf_link": "", "entity": 93645, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63602, "fields": {"uri": "http://d-nb.info/gnd/1027427839", "domain": "", "rdf_link": "", "entity": 93651, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63604, "fields": {"uri": "http://d-nb.info/gnd/127691979", "domain": "", "rdf_link": "", "entity": 93654, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63605, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93657", "domain": "apis default", "rdf_link": "", "entity": 93657, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63606, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93658", "domain": "apis default", "rdf_link": "", "entity": 93658, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63608, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93663", "domain": "apis default", "rdf_link": "", "entity": 93663, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63613, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93678", "domain": "apis default", "rdf_link": "", "entity": 93678, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93684", "domain": "apis default", "rdf_link": "", "entity": 93684, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63627, "fields": {"uri": "http://d-nb.info/gnd/123215374", "domain": "", "rdf_link": "", "entity": 93702, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63629, "fields": {"uri": "http://d-nb.info/gnd/12899620X", "domain": "", "rdf_link": "", "entity": 93705, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63635, "fields": {"uri": "http://d-nb.info/gnd/1035683431", "domain": "", "rdf_link": "", "entity": 93714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63636, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93715", "domain": "apis default", "rdf_link": "", "entity": 93715, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63657, "fields": {"uri": "http://d-nb.info/gnd/1034850962", "domain": "", "rdf_link": "", "entity": 93748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63658, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93749", "domain": "apis default", "rdf_link": "", "entity": 93749, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63678, "fields": {"uri": "http://d-nb.info/gnd/135612411", "domain": "", "rdf_link": "", "entity": 93779, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63682, "fields": {"uri": "http://d-nb.info/gnd/1033824674", "domain": "", "rdf_link": "", "entity": 93785, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63686, "fields": {"uri": "http://d-nb.info/gnd/133833348", "domain": "", "rdf_link": "", "entity": 93791, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63692, "fields": {"uri": "http://d-nb.info/gnd/103334690X", "domain": "", "rdf_link": "", "entity": 93800, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63694, "fields": {"uri": "http://d-nb.info/gnd/128900059", "domain": "", "rdf_link": "", "entity": 93803, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63695, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93804", "domain": "apis default", "rdf_link": "", "entity": 93804, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63698, "fields": {"uri": "http://d-nb.info/gnd/1033469084", "domain": "", "rdf_link": "", "entity": 93809, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63702, "fields": {"uri": "http://d-nb.info/gnd/117409669", "domain": "", "rdf_link": "", "entity": 93815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63704, "fields": {"uri": "http://d-nb.info/gnd/1033342483", "domain": "", "rdf_link": "", "entity": 93818, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63716, "fields": {"uri": "http://d-nb.info/gnd/134516001", "domain": "", "rdf_link": "", "entity": 93836, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63718, "fields": {"uri": "http://d-nb.info/gnd/1019536594", "domain": "", "rdf_link": "", "entity": 93839, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63728, "fields": {"uri": "http://d-nb.info/gnd/103283160X", "domain": "", "rdf_link": "", "entity": 93854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63729, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93855", "domain": "apis default", "rdf_link": "", "entity": 93855, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63734, "fields": {"uri": "http://d-nb.info/gnd/103223718X", "domain": "", "rdf_link": "", "entity": 93863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63736, "fields": {"uri": "http://d-nb.info/gnd/118610643", "domain": "", "rdf_link": "", "entity": 93866, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63744, "fields": {"uri": "http://d-nb.info/gnd/1032220473", "domain": "", "rdf_link": "", "entity": 93878, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63745, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93879", "domain": "apis default", "rdf_link": "", "entity": 93879, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63753, "fields": {"uri": "http://d-nb.info/gnd/1031937358", "domain": "", "rdf_link": "", "entity": 93891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63755, "fields": {"uri": "http://d-nb.info/gnd/1031946101", "domain": "", "rdf_link": "", "entity": 93894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63759, "fields": {"uri": "http://d-nb.info/gnd/116848693", "domain": "", "rdf_link": "", "entity": 93900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63761, "fields": {"uri": "http://d-nb.info/gnd/103169420X", "domain": "", "rdf_link": "", "entity": 93903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63765, "fields": {"uri": "http://d-nb.info/gnd/137648588", "domain": "", "rdf_link": "", "entity": 93909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63773, "fields": {"uri": "http://d-nb.info/gnd/116816961", "domain": "", "rdf_link": "", "entity": 93921, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63781, "fields": {"uri": "http://d-nb.info/gnd/118759671", "domain": "", "rdf_link": "", "entity": 93933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63782, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93934", "domain": "apis default", "rdf_link": "", "entity": 93934, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63784, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93937", "domain": "apis default", "rdf_link": "", "entity": 93937, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63786, "fields": {"uri": "http://d-nb.info/gnd/103056423X", "domain": "", "rdf_link": "", "entity": 93940, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63790, "fields": {"uri": "http://d-nb.info/gnd/1030283044", "domain": "", "rdf_link": "", "entity": 93946, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63796, "fields": {"uri": "http://d-nb.info/gnd/1031146539", "domain": "", "rdf_link": "", "entity": 93955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63798, "fields": {"uri": "http://d-nb.info/gnd/139576126", "domain": "", "rdf_link": "", "entity": 93958, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63800, "fields": {"uri": "http://d-nb.info/gnd/129263761", "domain": "", "rdf_link": "", "entity": 93961, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63802, "fields": {"uri": "http://d-nb.info/gnd/121246736", "domain": "", "rdf_link": "", "entity": 93964, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63804, "fields": {"uri": "http://d-nb.info/gnd/1029738556", "domain": "", "rdf_link": "", "entity": 93967, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63806, "fields": {"uri": "http://d-nb.info/gnd/1029748209", "domain": "", "rdf_link": "", "entity": 93970, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63815, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93988", "domain": "apis default", "rdf_link": "", "entity": 93988, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63816, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/93991", "domain": "apis default", "rdf_link": "", "entity": 93991, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63821, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94003", "domain": "apis default", "rdf_link": "", "entity": 94003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63822, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94006", "domain": "apis default", "rdf_link": "", "entity": 94006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63823, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94009", "domain": "apis default", "rdf_link": "", "entity": 94009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63826, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94018", "domain": "apis default", "rdf_link": "", "entity": 94018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63865, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94102", "domain": "apis default", "rdf_link": "", "entity": 94102, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63866, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94103", "domain": "apis default", "rdf_link": "", "entity": 94103, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63867, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94104", "domain": "apis default", "rdf_link": "", "entity": 94104, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63868, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94105", "domain": "apis default", "rdf_link": "", "entity": 94105, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63888, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94120", "domain": "apis default", "rdf_link": "", "entity": 94120, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63889, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94121", "domain": "apis default", "rdf_link": "", "entity": 94121, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63890, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94122", "domain": "apis default", "rdf_link": "", "entity": 94122, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63891, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94123", "domain": "apis default", "rdf_link": "", "entity": 94123, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63892, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94124", "domain": "apis default", "rdf_link": "", "entity": 94124, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63893, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94125", "domain": "apis default", "rdf_link": "", "entity": 94125, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63894, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94126", "domain": "apis default", "rdf_link": "", "entity": 94126, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63895, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94127", "domain": "apis default", "rdf_link": "", "entity": 94127, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63896, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94128", "domain": "apis default", "rdf_link": "", "entity": 94128, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63897, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94129", "domain": "apis default", "rdf_link": "", "entity": 94129, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63900, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94131", "domain": "apis default", "rdf_link": "", "entity": 94131, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63901, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94132", "domain": "apis default", "rdf_link": "", "entity": 94132, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63902, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94133", "domain": "apis default", "rdf_link": "", "entity": 94133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63903, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94134", "domain": "apis default", "rdf_link": "", "entity": 94134, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63904, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94135", "domain": "apis default", "rdf_link": "", "entity": 94135, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63905, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94136", "domain": "apis default", "rdf_link": "", "entity": 94136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63906, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94137", "domain": "apis default", "rdf_link": "", "entity": 94137, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94138", "domain": "apis default", "rdf_link": "", "entity": 94138, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63908, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94139", "domain": "apis default", "rdf_link": "", "entity": 94139, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63909, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94140", "domain": "apis default", "rdf_link": "", "entity": 94140, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63910, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94141", "domain": "apis default", "rdf_link": "", "entity": 94141, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63956, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94247", "domain": "apis default", "rdf_link": "", "entity": 94247, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63957, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94248", "domain": "apis default", "rdf_link": "", "entity": 94248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63958, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94249", "domain": "apis default", "rdf_link": "", "entity": 94249, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63959, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94250", "domain": "apis default", "rdf_link": "", "entity": 94250, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63960, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94251", "domain": "apis default", "rdf_link": "", "entity": 94251, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63999, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94307", "domain": "apis default", "rdf_link": "", "entity": 94307, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64000, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94308", "domain": "apis default", "rdf_link": "", "entity": 94308, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64001, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94309", "domain": "apis default", "rdf_link": "", "entity": 94309, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64002, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94310", "domain": "apis default", "rdf_link": "", "entity": 94310, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64003, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94311", "domain": "apis default", "rdf_link": "", "entity": 94311, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64004, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94312", "domain": "apis default", "rdf_link": "", "entity": 94312, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64005, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94313", "domain": "apis default", "rdf_link": "", "entity": 94313, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64006, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94314", "domain": "apis default", "rdf_link": "", "entity": 94314, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64007, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94315", "domain": "apis default", "rdf_link": "", "entity": 94315, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94323", "domain": "apis default", "rdf_link": "", "entity": 94323, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64013, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94324", "domain": "apis default", "rdf_link": "", "entity": 94324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64030, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94351", "domain": "apis default", "rdf_link": "", "entity": 94351, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64031, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94352", "domain": "apis default", "rdf_link": "", "entity": 94352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64032, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94353", "domain": "apis default", "rdf_link": "", "entity": 94353, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64033, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94354", "domain": "apis default", "rdf_link": "", "entity": 94354, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64034, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94355", "domain": "apis default", "rdf_link": "", "entity": 94355, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64035, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94356", "domain": "apis default", "rdf_link": "", "entity": 94356, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64036, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94357", "domain": "apis default", "rdf_link": "", "entity": 94357, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64037, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94358", "domain": "apis default", "rdf_link": "", "entity": 94358, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64038, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94359", "domain": "apis default", "rdf_link": "", "entity": 94359, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64039, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94360", "domain": "apis default", "rdf_link": "", "entity": 94360, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64040, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94361", "domain": "apis default", "rdf_link": "", "entity": 94361, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64041, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94362", "domain": "apis default", "rdf_link": "", "entity": 94362, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64084, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94433", "domain": "apis default", "rdf_link": "", "entity": 94433, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64085, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94434", "domain": "apis default", "rdf_link": "", "entity": 94434, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64086, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94435", "domain": "apis default", "rdf_link": "", "entity": 94435, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64087, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94436", "domain": "apis default", "rdf_link": "", "entity": 94436, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64088, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94437", "domain": "apis default", "rdf_link": "", "entity": 94437, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64089, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94438", "domain": "apis default", "rdf_link": "", "entity": 94438, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64090, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94439", "domain": "apis default", "rdf_link": "", "entity": 94439, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64091, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94440", "domain": "apis default", "rdf_link": "", "entity": 94440, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64092, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94441", "domain": "apis default", "rdf_link": "", "entity": 94441, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64093, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94442", "domain": "apis default", "rdf_link": "", "entity": 94442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64139, "fields": {"uri": "http://d-nb.info/gnd/4074335-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10265, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64175, "fields": {"uri": "http://d-nb.info/gnd/4035304-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64185, "fields": {"uri": "http://d-nb.info/gnd/4108914-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64201, "fields": {"uri": "http://d-nb.info/gnd/4008858-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64255, "fields": {"uri": "http://d-nb.info/gnd/4010833-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64261, "fields": {"uri": "http://d-nb.info/gnd/4073953-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9475, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64271, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94822", "domain": "apis default", "rdf_link": "", "entity": 94822, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64272, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94823", "domain": "apis default", "rdf_link": "", "entity": 94823, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64273, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94824", "domain": "apis default", "rdf_link": "", "entity": 94824, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64274, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94825", "domain": "apis default", "rdf_link": "", "entity": 94825, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64275, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94826", "domain": "apis default", "rdf_link": "", "entity": 94826, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64276, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94827", "domain": "apis default", "rdf_link": "", "entity": 94827, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64277, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94828", "domain": "apis default", "rdf_link": "", "entity": 94828, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64278, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94829", "domain": "apis default", "rdf_link": "", "entity": 94829, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64279, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94830", "domain": "apis default", "rdf_link": "", "entity": 94830, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64280, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94831", "domain": "apis default", "rdf_link": "", "entity": 94831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64318, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94885", "domain": "apis default", "rdf_link": "", "entity": 94885, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64319, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94886", "domain": "apis default", "rdf_link": "", "entity": 94886, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64320, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94887", "domain": "apis default", "rdf_link": "", "entity": 94887, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64321, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94888", "domain": "apis default", "rdf_link": "", "entity": 94888, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64322, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94889", "domain": "apis default", "rdf_link": "", "entity": 94889, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64323, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94890", "domain": "apis default", "rdf_link": "", "entity": 94890, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64324, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94891", "domain": "apis default", "rdf_link": "", "entity": 94891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64325, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94892", "domain": "apis default", "rdf_link": "", "entity": 94892, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64326, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94893", "domain": "apis default", "rdf_link": "", "entity": 94893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64327, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94894", "domain": "apis default", "rdf_link": "", "entity": 94894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64328, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94895", "domain": "apis default", "rdf_link": "", "entity": 94895, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64329, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94896", "domain": "apis default", "rdf_link": "", "entity": 94896, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64330, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94897", "domain": "apis default", "rdf_link": "", "entity": 94897, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64331, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94898", "domain": "apis default", "rdf_link": "", "entity": 94898, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64332, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94899", "domain": "apis default", "rdf_link": "", "entity": 94899, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64333, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94900", "domain": "apis default", "rdf_link": "", "entity": 94900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64334, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94901", "domain": "apis default", "rdf_link": "", "entity": 94901, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64335, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94902", "domain": "apis default", "rdf_link": "", "entity": 94902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64336, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94903", "domain": "apis default", "rdf_link": "", "entity": 94903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64337, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/94904", "domain": "apis default", "rdf_link": "", "entity": 94904, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64387, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95024", "domain": "apis default", "rdf_link": "", "entity": 95024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64388, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95025", "domain": "apis default", "rdf_link": "", "entity": 95025, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64389, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95026", "domain": "apis default", "rdf_link": "", "entity": 95026, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64390, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95027", "domain": "apis default", "rdf_link": "", "entity": 95027, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64391, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95028", "domain": "apis default", "rdf_link": "", "entity": 95028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64392, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95029", "domain": "apis default", "rdf_link": "", "entity": 95029, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64393, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95030", "domain": "apis default", "rdf_link": "", "entity": 95030, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64401, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95043", "domain": "apis default", "rdf_link": "", "entity": 95043, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64402, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95044", "domain": "apis default", "rdf_link": "", "entity": 95044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64403, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95045", "domain": "apis default", "rdf_link": "", "entity": 95045, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64404, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95046", "domain": "apis default", "rdf_link": "", "entity": 95046, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64405, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95047", "domain": "apis default", "rdf_link": "", "entity": 95047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64406, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95048", "domain": "apis default", "rdf_link": "", "entity": 95048, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64407, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95049", "domain": "apis default", "rdf_link": "", "entity": 95049, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64408, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95050", "domain": "apis default", "rdf_link": "", "entity": 95050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64409, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95051", "domain": "apis default", "rdf_link": "", "entity": 95051, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64410, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95052", "domain": "apis default", "rdf_link": "", "entity": 95052, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64411, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95053", "domain": "apis default", "rdf_link": "", "entity": 95053, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64412, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95054", "domain": "apis default", "rdf_link": "", "entity": 95054, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64443, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95123", "domain": "apis default", "rdf_link": "", "entity": 95123, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64444, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95124", "domain": "apis default", "rdf_link": "", "entity": 95124, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64445, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95125", "domain": "apis default", "rdf_link": "", "entity": 95125, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64446, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95126", "domain": "apis default", "rdf_link": "", "entity": 95126, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64447, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95127", "domain": "apis default", "rdf_link": "", "entity": 95127, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64448, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95128", "domain": "apis default", "rdf_link": "", "entity": 95128, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64449, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95129", "domain": "apis default", "rdf_link": "", "entity": 95129, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64450, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95130", "domain": "apis default", "rdf_link": "", "entity": 95130, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64451, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95131", "domain": "apis default", "rdf_link": "", "entity": 95131, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64463, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95156", "domain": "apis default", "rdf_link": "", "entity": 95156, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64464, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95157", "domain": "apis default", "rdf_link": "", "entity": 95157, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64465, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95158", "domain": "apis default", "rdf_link": "", "entity": 95158, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64466, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95159", "domain": "apis default", "rdf_link": "", "entity": 95159, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64467, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95160", "domain": "apis default", "rdf_link": "", "entity": 95160, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64468, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95161", "domain": "apis default", "rdf_link": "", "entity": 95161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64469, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95162", "domain": "apis default", "rdf_link": "", "entity": 95162, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64470, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95163", "domain": "apis default", "rdf_link": "", "entity": 95163, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64471, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95164", "domain": "apis default", "rdf_link": "", "entity": 95164, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64591, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95397", "domain": "apis default", "rdf_link": "", "entity": 95397, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64592, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95398", "domain": "apis default", "rdf_link": "", "entity": 95398, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64593, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95399", "domain": "apis default", "rdf_link": "", "entity": 95399, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64594, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95400", "domain": "apis default", "rdf_link": "", "entity": 95400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64595, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95401", "domain": "apis default", "rdf_link": "", "entity": 95401, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64596, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95402", "domain": "apis default", "rdf_link": "", "entity": 95402, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64597, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95403", "domain": "apis default", "rdf_link": "", "entity": 95403, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64598, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95404", "domain": "apis default", "rdf_link": "", "entity": 95404, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64599, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95405", "domain": "apis default", "rdf_link": "", "entity": 95405, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64600, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95406", "domain": "apis default", "rdf_link": "", "entity": 95406, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64601, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95407", "domain": "apis default", "rdf_link": "", "entity": 95407, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64625, "fields": {"uri": "http://d-nb.info/gnd/4075578-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13253, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64656, "fields": {"uri": "http://d-nb.info/gnd/4079048-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 20549, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64696, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95582", "domain": "apis default", "rdf_link": "", "entity": 95582, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64697, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95583", "domain": "apis default", "rdf_link": "", "entity": 95583, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64698, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95584", "domain": "apis default", "rdf_link": "", "entity": 95584, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64704, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95596", "domain": "apis default", "rdf_link": "", "entity": 95596, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64705, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95597", "domain": "apis default", "rdf_link": "", "entity": 95597, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64706, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95598", "domain": "apis default", "rdf_link": "", "entity": 95598, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64707, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95599", "domain": "apis default", "rdf_link": "", "entity": 95599, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64708, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95600", "domain": "apis default", "rdf_link": "", "entity": 95600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64709, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95601", "domain": "apis default", "rdf_link": "", "entity": 95601, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64710, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95602", "domain": "apis default", "rdf_link": "", "entity": 95602, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64711, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95603", "domain": "apis default", "rdf_link": "", "entity": 95603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64712, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95604", "domain": "apis default", "rdf_link": "", "entity": 95604, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64762, "fields": {"uri": "http://d-nb.info/gnd/4008456-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 327, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64854, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95847", "domain": "apis default", "rdf_link": "", "entity": 95847, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64855, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95848", "domain": "apis default", "rdf_link": "", "entity": 95848, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64867, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95867", "domain": "apis default", "rdf_link": "", "entity": 95867, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64868, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95868", "domain": "apis default", "rdf_link": "", "entity": 95868, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64869, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95869", "domain": "apis default", "rdf_link": "", "entity": 95869, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64870, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95870", "domain": "apis default", "rdf_link": "", "entity": 95870, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64871, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95871", "domain": "apis default", "rdf_link": "", "entity": 95871, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64872, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95872", "domain": "apis default", "rdf_link": "", "entity": 95872, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64873, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95873", "domain": "apis default", "rdf_link": "", "entity": 95873, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64874, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95874", "domain": "apis default", "rdf_link": "", "entity": 95874, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64875, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95875", "domain": "apis default", "rdf_link": "", "entity": 95875, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64876, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95876", "domain": "apis default", "rdf_link": "", "entity": 95876, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64888, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95893", "domain": "apis default", "rdf_link": "", "entity": 95893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64904, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95929", "domain": "apis default", "rdf_link": "", "entity": 95929, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64905, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95930", "domain": "apis default", "rdf_link": "", "entity": 95930, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64906, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95931", "domain": "apis default", "rdf_link": "", "entity": 95931, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95932", "domain": "apis default", "rdf_link": "", "entity": 95932, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64920, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95949", "domain": "apis default", "rdf_link": "", "entity": 95949, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64921, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95950", "domain": "apis default", "rdf_link": "", "entity": 95950, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64922, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95951", "domain": "apis default", "rdf_link": "", "entity": 95951, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64923, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95952", "domain": "apis default", "rdf_link": "", "entity": 95952, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64924, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95953", "domain": "apis default", "rdf_link": "", "entity": 95953, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64925, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95954", "domain": "apis default", "rdf_link": "", "entity": 95954, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64926, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95955", "domain": "apis default", "rdf_link": "", "entity": 95955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64927, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95956", "domain": "apis default", "rdf_link": "", "entity": 95956, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64928, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/95957", "domain": "apis default", "rdf_link": "", "entity": 95957, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64958, "fields": {"uri": "http://d-nb.info/gnd/4106475-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 18400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64961, "fields": {"uri": "http://d-nb.info/gnd/4074255-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65015, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96143", "domain": "apis default", "rdf_link": "", "entity": 96143, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65016, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96144", "domain": "apis default", "rdf_link": "", "entity": 96144, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65017, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96145", "domain": "apis default", "rdf_link": "", "entity": 96145, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65018, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96146", "domain": "apis default", "rdf_link": "", "entity": 96146, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65047, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96208", "domain": "apis default", "rdf_link": "", "entity": 96208, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65048, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96209", "domain": "apis default", "rdf_link": "", "entity": 96209, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65049, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96210", "domain": "apis default", "rdf_link": "", "entity": 96210, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65050, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96211", "domain": "apis default", "rdf_link": "", "entity": 96211, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65059, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96221", "domain": "apis default", "rdf_link": "", "entity": 96221, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65060, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96222", "domain": "apis default", "rdf_link": "", "entity": 96222, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65061, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96223", "domain": "apis default", "rdf_link": "", "entity": 96223, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65062, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96224", "domain": "apis default", "rdf_link": "", "entity": 96224, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65063, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96225", "domain": "apis default", "rdf_link": "", "entity": 96225, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65064, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96226", "domain": "apis default", "rdf_link": "", "entity": 96226, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65176, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96458", "domain": "apis default", "rdf_link": "", "entity": 96458, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65177, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96459", "domain": "apis default", "rdf_link": "", "entity": 96459, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65178, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96460", "domain": "apis default", "rdf_link": "", "entity": 96460, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65179, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96461", "domain": "apis default", "rdf_link": "", "entity": 96461, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65180, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96462", "domain": "apis default", "rdf_link": "", "entity": 96462, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65181, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96463", "domain": "apis default", "rdf_link": "", "entity": 96463, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65182, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96464", "domain": "apis default", "rdf_link": "", "entity": 96464, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65183, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96465", "domain": "apis default", "rdf_link": "", "entity": 96465, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65184, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96466", "domain": "apis default", "rdf_link": "", "entity": 96466, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65185, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96467", "domain": "apis default", "rdf_link": "", "entity": 96467, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65200, "fields": {"uri": "http://d-nb.info/gnd/4033488-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9287, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65253, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96620", "domain": "apis default", "rdf_link": "", "entity": 96620, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65254, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96621", "domain": "apis default", "rdf_link": "", "entity": 96621, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65255, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96622", "domain": "apis default", "rdf_link": "", "entity": 96622, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65256, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96623", "domain": "apis default", "rdf_link": "", "entity": 96623, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65292, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96728", "domain": "apis default", "rdf_link": "", "entity": 96728, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65293, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96729", "domain": "apis default", "rdf_link": "", "entity": 96729, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65294, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96730", "domain": "apis default", "rdf_link": "", "entity": 96730, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65295, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96731", "domain": "apis default", "rdf_link": "", "entity": 96731, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65296, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96732", "domain": "apis default", "rdf_link": "", "entity": 96732, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65297, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96733", "domain": "apis default", "rdf_link": "", "entity": 96733, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65298, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96734", "domain": "apis default", "rdf_link": "", "entity": 96734, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65299, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96735", "domain": "apis default", "rdf_link": "", "entity": 96735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65300, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96736", "domain": "apis default", "rdf_link": "", "entity": 96736, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65301, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96737", "domain": "apis default", "rdf_link": "", "entity": 96737, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65302, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96738", "domain": "apis default", "rdf_link": "", "entity": 96738, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65305, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96740", "domain": "apis default", "rdf_link": "", "entity": 96740, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65306, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96741", "domain": "apis default", "rdf_link": "", "entity": 96741, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65307, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96742", "domain": "apis default", "rdf_link": "", "entity": 96742, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65308, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96743", "domain": "apis default", "rdf_link": "", "entity": 96743, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65309, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96744", "domain": "apis default", "rdf_link": "", "entity": 96744, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65310, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96745", "domain": "apis default", "rdf_link": "", "entity": 96745, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65311, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96746", "domain": "apis default", "rdf_link": "", "entity": 96746, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65312, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96747", "domain": "apis default", "rdf_link": "", "entity": 96747, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65313, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96748", "domain": "apis default", "rdf_link": "", "entity": 96748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65314, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96749", "domain": "apis default", "rdf_link": "", "entity": 96749, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65315, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96750", "domain": "apis default", "rdf_link": "", "entity": 96750, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65320, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96758", "domain": "apis default", "rdf_link": "", "entity": 96758, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65321, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96759", "domain": "apis default", "rdf_link": "", "entity": 96759, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65351, "fields": {"uri": "http://d-nb.info/gnd/4013237-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65353, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96813", "domain": "apis default", "rdf_link": "", "entity": 96813, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65354, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96814", "domain": "apis default", "rdf_link": "", "entity": 96814, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65355, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96815", "domain": "apis default", "rdf_link": "", "entity": 96815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65356, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96816", "domain": "apis default", "rdf_link": "", "entity": 96816, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65357, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96817", "domain": "apis default", "rdf_link": "", "entity": 96817, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96858", "domain": "apis default", "rdf_link": "", "entity": 96858, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96859", "domain": "apis default", "rdf_link": "", "entity": 96859, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65374, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96860", "domain": "apis default", "rdf_link": "", "entity": 96860, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65375, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96861", "domain": "apis default", "rdf_link": "", "entity": 96861, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65376, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96862", "domain": "apis default", "rdf_link": "", "entity": 96862, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65377, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96863", "domain": "apis default", "rdf_link": "", "entity": 96863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65378, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96864", "domain": "apis default", "rdf_link": "", "entity": 96864, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65379, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96865", "domain": "apis default", "rdf_link": "", "entity": 96865, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65410, "fields": {"uri": "http://d-nb.info/gnd/4071444-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 22526, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65419, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96947", "domain": "apis default", "rdf_link": "", "entity": 96947, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65420, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96948", "domain": "apis default", "rdf_link": "", "entity": 96948, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65421, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96949", "domain": "apis default", "rdf_link": "", "entity": 96949, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65422, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96950", "domain": "apis default", "rdf_link": "", "entity": 96950, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65423, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96951", "domain": "apis default", "rdf_link": "", "entity": 96951, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65424, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96952", "domain": "apis default", "rdf_link": "", "entity": 96952, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65425, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96953", "domain": "apis default", "rdf_link": "", "entity": 96953, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65426, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96954", "domain": "apis default", "rdf_link": "", "entity": 96954, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65427, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96955", "domain": "apis default", "rdf_link": "", "entity": 96955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65428, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/96956", "domain": "apis default", "rdf_link": "", "entity": 96956, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65693, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97430", "domain": "apis default", "rdf_link": "", "entity": 97430, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65873, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97529", "domain": "apis default", "rdf_link": "", "entity": 97529, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65874, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97530", "domain": "apis default", "rdf_link": "", "entity": 97530, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65875, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97531", "domain": "apis default", "rdf_link": "", "entity": 97531, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65876, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97532", "domain": "apis default", "rdf_link": "", "entity": 97532, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65877, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97533", "domain": "apis default", "rdf_link": "", "entity": 97533, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65878, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97534", "domain": "apis default", "rdf_link": "", "entity": 97534, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65942, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97578", "domain": "apis default", "rdf_link": "", "entity": 97578, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65966, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97592", "domain": "apis default", "rdf_link": "", "entity": 97592, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65967, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97593", "domain": "apis default", "rdf_link": "", "entity": 97593, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66003, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97617", "domain": "apis default", "rdf_link": "", "entity": 97617, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97623", "domain": "apis default", "rdf_link": "", "entity": 97623, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66072, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97657", "domain": "apis default", "rdf_link": "", "entity": 97657, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66164, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97707", "domain": "apis default", "rdf_link": "", "entity": 97707, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66189, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97723", "domain": "apis default", "rdf_link": "", "entity": 97723, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66244, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97753", "domain": "apis default", "rdf_link": "", "entity": 97753, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66309, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97790", "domain": "apis default", "rdf_link": "", "entity": 97790, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66387, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97834", "domain": "apis default", "rdf_link": "", "entity": 97834, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66410, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97849", "domain": "apis default", "rdf_link": "", "entity": 97849, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66474, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97884", "domain": "apis default", "rdf_link": "", "entity": 97884, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66479, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97888", "domain": "apis default", "rdf_link": "", "entity": 97888, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66492, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97896", "domain": "apis default", "rdf_link": "", "entity": 97896, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66559, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97933", "domain": "apis default", "rdf_link": "", "entity": 97933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66576, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97943", "domain": "apis default", "rdf_link": "", "entity": 97943, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66577, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97944", "domain": "apis default", "rdf_link": "", "entity": 97944, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66578, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97945", "domain": "apis default", "rdf_link": "", "entity": 97945, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66615, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97976", "domain": "apis default", "rdf_link": "", "entity": 97976, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66616, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97977", "domain": "apis default", "rdf_link": "", "entity": 97977, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66629, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/97986", "domain": "apis default", "rdf_link": "", "entity": 97986, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66662, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98006", "domain": "apis default", "rdf_link": "", "entity": 98006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66690, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98024", "domain": "apis default", "rdf_link": "", "entity": 98024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66856, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98183", "domain": "apis default", "rdf_link": "", "entity": 98183, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66857, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98184", "domain": "apis default", "rdf_link": "", "entity": 98184, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66858, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98185", "domain": "apis default", "rdf_link": "", "entity": 98185, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66886, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98237", "domain": "apis default", "rdf_link": "", "entity": 98237, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66907, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98296", "domain": "apis default", "rdf_link": "", "entity": 98296, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66908, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98297", "domain": "apis default", "rdf_link": "", "entity": 98297, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66909, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98298", "domain": "apis default", "rdf_link": "", "entity": 98298, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66910, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98299", "domain": "apis default", "rdf_link": "", "entity": 98299, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66911, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98300", "domain": "apis default", "rdf_link": "", "entity": 98300, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66912, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98301", "domain": "apis default", "rdf_link": "", "entity": 98301, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66935, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98348", "domain": "apis default", "rdf_link": "", "entity": 98348, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66994, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98551", "domain": "apis default", "rdf_link": "", "entity": 98551, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67004, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98569", "domain": "apis default", "rdf_link": "", "entity": 98569, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67005, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98570", "domain": "apis default", "rdf_link": "", "entity": 98570, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67008, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98579", "domain": "apis default", "rdf_link": "", "entity": 98579, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67009, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98580", "domain": "apis default", "rdf_link": "", "entity": 98580, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67010, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98581", "domain": "apis default", "rdf_link": "", "entity": 98581, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67011, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98582", "domain": "apis default", "rdf_link": "", "entity": 98582, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67012, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98583", "domain": "apis default", "rdf_link": "", "entity": 98583, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67013, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98584", "domain": "apis default", "rdf_link": "", "entity": 98584, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67014, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98585", "domain": "apis default", "rdf_link": "", "entity": 98585, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67015, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98586", "domain": "apis default", "rdf_link": "", "entity": 98586, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67016, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98587", "domain": "apis default", "rdf_link": "", "entity": 98587, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67017, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98588", "domain": "apis default", "rdf_link": "", "entity": 98588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67021, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98604", "domain": "apis default", "rdf_link": "", "entity": 98604, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67022, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98605", "domain": "apis default", "rdf_link": "", "entity": 98605, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67023, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98606", "domain": "apis default", "rdf_link": "", "entity": 98606, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67039, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98696", "domain": "apis default", "rdf_link": "", "entity": 98696, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67040, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98697", "domain": "apis default", "rdf_link": "", "entity": 98697, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67043, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98714", "domain": "apis default", "rdf_link": "", "entity": 98714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67050, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98722", "domain": "apis default", "rdf_link": "", "entity": 98722, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67051, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98723", "domain": "apis default", "rdf_link": "", "entity": 98723, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67052, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98724", "domain": "apis default", "rdf_link": "", "entity": 98724, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67053, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98725", "domain": "apis default", "rdf_link": "", "entity": 98725, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67054, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98726", "domain": "apis default", "rdf_link": "", "entity": 98726, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67055, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98727", "domain": "apis default", "rdf_link": "", "entity": 98727, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67056, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98728", "domain": "apis default", "rdf_link": "", "entity": 98728, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67057, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98729", "domain": "apis default", "rdf_link": "", "entity": 98729, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67058, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98730", "domain": "apis default", "rdf_link": "", "entity": 98730, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67059, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98731", "domain": "apis default", "rdf_link": "", "entity": 98731, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67060, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98732", "domain": "apis default", "rdf_link": "", "entity": 98732, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67061, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98733", "domain": "apis default", "rdf_link": "", "entity": 98733, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67062, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98734", "domain": "apis default", "rdf_link": "", "entity": 98734, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67063, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98735", "domain": "apis default", "rdf_link": "", "entity": 98735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67064, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98736", "domain": "apis default", "rdf_link": "", "entity": 98736, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67065, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98737", "domain": "apis default", "rdf_link": "", "entity": 98737, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67092, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98886", "domain": "apis default", "rdf_link": "", "entity": 98886, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67099, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98891", "domain": "apis default", "rdf_link": "", "entity": 98891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67100, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98892", "domain": "apis default", "rdf_link": "", "entity": 98892, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67101, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98893", "domain": "apis default", "rdf_link": "", "entity": 98893, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67110, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98922", "domain": "apis default", "rdf_link": "", "entity": 98922, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67111, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98923", "domain": "apis default", "rdf_link": "", "entity": 98923, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67112, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98924", "domain": "apis default", "rdf_link": "", "entity": 98924, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67113, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98925", "domain": "apis default", "rdf_link": "", "entity": 98925, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67124, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98980", "domain": "apis default", "rdf_link": "", "entity": 98980, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67128, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98990", "domain": "apis default", "rdf_link": "", "entity": 98990, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67129, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98991", "domain": "apis default", "rdf_link": "", "entity": 98991, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67130, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98992", "domain": "apis default", "rdf_link": "", "entity": 98992, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67131, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98993", "domain": "apis default", "rdf_link": "", "entity": 98993, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67132, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98994", "domain": "apis default", "rdf_link": "", "entity": 98994, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67133, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98995", "domain": "apis default", "rdf_link": "", "entity": 98995, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67134, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98996", "domain": "apis default", "rdf_link": "", "entity": 98996, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67135, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98997", "domain": "apis default", "rdf_link": "", "entity": 98997, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67136, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98998", "domain": "apis default", "rdf_link": "", "entity": 98998, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67137, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/98999", "domain": "apis default", "rdf_link": "", "entity": 98999, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67138, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99000", "domain": "apis default", "rdf_link": "", "entity": 99000, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67139, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99001", "domain": "apis default", "rdf_link": "", "entity": 99001, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67140, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99002", "domain": "apis default", "rdf_link": "", "entity": 99002, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67141, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99003", "domain": "apis default", "rdf_link": "", "entity": 99003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67142, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99004", "domain": "apis default", "rdf_link": "", "entity": 99004, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67143, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99005", "domain": "apis default", "rdf_link": "", "entity": 99005, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67144, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99006", "domain": "apis default", "rdf_link": "", "entity": 99006, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67145, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99007", "domain": "apis default", "rdf_link": "", "entity": 99007, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67146, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99008", "domain": "apis default", "rdf_link": "", "entity": 99008, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67147, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99009", "domain": "apis default", "rdf_link": "", "entity": 99009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67155, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99075", "domain": "apis default", "rdf_link": "", "entity": 99075, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67158, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99092", "domain": "apis default", "rdf_link": "", "entity": 99092, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67159, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99093", "domain": "apis default", "rdf_link": "", "entity": 99093, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67160, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99094", "domain": "apis default", "rdf_link": "", "entity": 99094, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67161, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99095", "domain": "apis default", "rdf_link": "", "entity": 99095, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67162, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99096", "domain": "apis default", "rdf_link": "", "entity": 99096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67163, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99097", "domain": "apis default", "rdf_link": "", "entity": 99097, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67164, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99098", "domain": "apis default", "rdf_link": "", "entity": 99098, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67165, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99099", "domain": "apis default", "rdf_link": "", "entity": 99099, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67166, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99100", "domain": "apis default", "rdf_link": "", "entity": 99100, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67167, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99101", "domain": "apis default", "rdf_link": "", "entity": 99101, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67168, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99102", "domain": "apis default", "rdf_link": "", "entity": 99102, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67169, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99103", "domain": "apis default", "rdf_link": "", "entity": 99103, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67170, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99104", "domain": "apis default", "rdf_link": "", "entity": 99104, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67171, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99105", "domain": "apis default", "rdf_link": "", "entity": 99105, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67172, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99106", "domain": "apis default", "rdf_link": "", "entity": 99106, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67173, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99107", "domain": "apis default", "rdf_link": "", "entity": 99107, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67174, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99108", "domain": "apis default", "rdf_link": "", "entity": 99108, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67175, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99109", "domain": "apis default", "rdf_link": "", "entity": 99109, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67176, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99110", "domain": "apis default", "rdf_link": "", "entity": 99110, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67182, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99156", "domain": "apis default", "rdf_link": "", "entity": 99156, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67217, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99336", "domain": "apis default", "rdf_link": "", "entity": 99336, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67218, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99337", "domain": "apis default", "rdf_link": "", "entity": 99337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67225, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99352", "domain": "apis default", "rdf_link": "", "entity": 99352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67226, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99353", "domain": "apis default", "rdf_link": "", "entity": 99353, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67227, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99354", "domain": "apis default", "rdf_link": "", "entity": 99354, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67228, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99355", "domain": "apis default", "rdf_link": "", "entity": 99355, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67229, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99356", "domain": "apis default", "rdf_link": "", "entity": 99356, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67230, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99357", "domain": "apis default", "rdf_link": "", "entity": 99357, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67231, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99358", "domain": "apis default", "rdf_link": "", "entity": 99358, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67234, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99369", "domain": "apis default", "rdf_link": "", "entity": 99369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67235, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99370", "domain": "apis default", "rdf_link": "", "entity": 99370, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67236, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99371", "domain": "apis default", "rdf_link": "", "entity": 99371, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67237, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99372", "domain": "apis default", "rdf_link": "", "entity": 99372, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67238, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99373", "domain": "apis default", "rdf_link": "", "entity": 99373, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67239, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99374", "domain": "apis default", "rdf_link": "", "entity": 99374, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67240, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99375", "domain": "apis default", "rdf_link": "", "entity": 99375, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67241, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99376", "domain": "apis default", "rdf_link": "", "entity": 99376, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67242, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99377", "domain": "apis default", "rdf_link": "", "entity": 99377, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67243, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99378", "domain": "apis default", "rdf_link": "", "entity": 99378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67248, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99416", "domain": "apis default", "rdf_link": "", "entity": 99416, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67249, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99417", "domain": "apis default", "rdf_link": "", "entity": 99417, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67250, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99418", "domain": "apis default", "rdf_link": "", "entity": 99418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67251, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99419", "domain": "apis default", "rdf_link": "", "entity": 99419, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67252, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99420", "domain": "apis default", "rdf_link": "", "entity": 99420, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67253, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99421", "domain": "apis default", "rdf_link": "", "entity": 99421, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67254, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99422", "domain": "apis default", "rdf_link": "", "entity": 99422, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67255, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99423", "domain": "apis default", "rdf_link": "", "entity": 99423, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67343, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99744", "domain": "apis default", "rdf_link": "", "entity": 99744, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67366, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99841", "domain": "apis default", "rdf_link": "", "entity": 99841, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67367, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99842", "domain": "apis default", "rdf_link": "", "entity": 99842, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67368, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99843", "domain": "apis default", "rdf_link": "", "entity": 99843, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67369, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99844", "domain": "apis default", "rdf_link": "", "entity": 99844, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67370, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99845", "domain": "apis default", "rdf_link": "", "entity": 99845, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67371, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99846", "domain": "apis default", "rdf_link": "", "entity": 99846, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67372, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99847", "domain": "apis default", "rdf_link": "", "entity": 99847, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67373, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99848", "domain": "apis default", "rdf_link": "", "entity": 99848, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67374, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99849", "domain": "apis default", "rdf_link": "", "entity": 99849, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 67375, "fields": {"uri": "https://apis.eos.arz.oeaw.ac.at/entity/99850", "domain": "apis default", "rdf_link": "", "entity": 99850, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uricandidate", "pk": 3373, "fields": {"uri": "http://sws.geonames.org/3075069/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3374, "fields": {"uri": "http://sws.geonames.org/3075073/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3375, "fields": {"uri": "http://sws.geonames.org/3064955/", "confidence": 36.39077, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3376, "fields": {"uri": "http://sws.geonames.org/3064682/", "confidence": 27.023357, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3392, "fields": {"uri": "http://sws.geonames.org/8987526/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3393, "fields": {"uri": "http://sws.geonames.org/8988006/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3394, "fields": {"uri": "http://sws.geonames.org/3187442/", "confidence": 36.04053, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3427, "fields": {"uri": "http://sws.geonames.org/710232/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3428, "fields": {"uri": "http://sws.geonames.org/710234/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3429, "fields": {"uri": "http://sws.geonames.org/710242/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3430, "fields": {"uri": "http://sws.geonames.org/710241/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3431, "fields": {"uri": "http://sws.geonames.org/810113/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3432, "fields": {"uri": "http://sws.geonames.org/8468002/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3433, "fields": {"uri": "http://sws.geonames.org/710235/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3434, "fields": {"uri": "http://sws.geonames.org/710243/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3435, "fields": {"uri": "http://sws.geonames.org/697446/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3436, "fields": {"uri": "http://sws.geonames.org/687982/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "highlighter.texthigh", "pk": 1, "fields": {"title": "\u00d6BL Haupttext", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-haupttext", "project": 1}}, {"model": "highlighter.texthigh", "pk": 2, "fields": {"title": "\u00d6bl Kurzinfo", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-kurzinfo", "project": 1}}, {"model": "highlighter.annotationproject", "pk": 1, "fields": {"name": "Default", "description": "We need an annotation project for every annotation. Thus the default project."}}, {"model": "highlighter.vocabularyapi", "pk": 1, "fields": {"name": "Person Place Form", "api_endpoint": "PersonPlaceHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 2, "fields": {"name": "Person Institution Form", "api_endpoint": "PersonInstitutionHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 3, "fields": {"name": "Person Person Form", "api_endpoint": "PersonPersonHighlighterForm", "method": "l"}}, {"model": "highlighter.menuentry", "pk": 1, "fields": {"kind": "frm", "name": "Person Place Relation", "api": 1, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 2, "fields": {"kind": "frm", "name": "Person Institution Relation", "api": 2, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 3, "fields": {"kind": "frm", "name": "Person Person Relation", "api": 3, "parent": null, "project": 1}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add log entry", "content_type": 1, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change log entry", "content_type": 1, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete log entry", "content_type": 1, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can add permission", "content_type": 2, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can change permission", "content_type": 2, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can delete permission", "content_type": 2, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can add group", "content_type": 3, "codename": "add_group"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can change group", "content_type": 3, "codename": "change_group"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can delete group", "content_type": 3, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add user", "content_type": 4, "codename": "add_user"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change user", "content_type": 4, "codename": "change_user"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete user", "content_type": 4, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add content type", "content_type": 5, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change content type", "content_type": 5, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete content type", "content_type": 5, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can add session", "content_type": 6, "codename": "add_session"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can change session", "content_type": 6, "codename": "change_session"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can delete session", "content_type": 6, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can add label", "content_type": 7, "codename": "add_label"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can change label", "content_type": 7, "codename": "change_label"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can delete label", "content_type": 7, "codename": "delete_label"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add person", "content_type": 8, "codename": "add_person"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change person", "content_type": 8, "codename": "change_person"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete person", "content_type": 8, "codename": "delete_person"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add place", "content_type": 9, "codename": "add_place"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change place", "content_type": 9, "codename": "change_place"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete place", "content_type": 9, "codename": "delete_place"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can add institution", "content_type": 10, "codename": "add_institution"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can change institution", "content_type": 10, "codename": "change_institution"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can delete institution", "content_type": 10, "codename": "delete_institution"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can add event", "content_type": 11, "codename": "add_event"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can change event", "content_type": 11, "codename": "change_event"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can delete event", "content_type": 11, "codename": "delete_event"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add work", "content_type": 12, "codename": "add_work"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change work", "content_type": 12, "codename": "change_work"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete work", "content_type": 12, "codename": "delete_work"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add vocabs base class", "content_type": 13, "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change vocabs base class", "content_type": 13, "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete vocabs base class", "content_type": 13, "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can add relation base class", "content_type": 14, "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can change relation base class", "content_type": 14, "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can delete relation base class", "content_type": 14, "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can add vocabs uri", "content_type": 15, "codename": "add_vocabsuri"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can change vocabs uri", "content_type": 15, "codename": "change_vocabsuri"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can delete vocabs uri", "content_type": 15, "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add work type", "content_type": 16, "codename": "add_worktype"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change work type", "content_type": 16, "codename": "change_worktype"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete work type", "content_type": 16, "codename": "delete_worktype"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add title", "content_type": 17, "codename": "add_title"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change title", "content_type": 17, "codename": "change_title"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete title", "content_type": 17, "codename": "delete_title"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can add profession type", "content_type": 18, "codename": "add_professiontype"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can change profession type", "content_type": 18, "codename": "change_professiontype"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can delete profession type", "content_type": 18, "codename": "delete_professiontype"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can add place type", "content_type": 19, "codename": "add_placetype"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can change place type", "content_type": 19, "codename": "change_placetype"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can delete place type", "content_type": 19, "codename": "delete_placetype"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add institution type", "content_type": 20, "codename": "add_institutiontype"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change institution type", "content_type": 20, "codename": "change_institutiontype"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete institution type", "content_type": 20, "codename": "delete_institutiontype"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add event type", "content_type": 21, "codename": "add_eventtype"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change event type", "content_type": 21, "codename": "change_eventtype"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete event type", "content_type": 21, "codename": "delete_eventtype"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can add label type", "content_type": 22, "codename": "add_labeltype"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can change label type", "content_type": 22, "codename": "change_labeltype"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can delete label type", "content_type": 22, "codename": "delete_labeltype"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can add collection type", "content_type": 23, "codename": "add_collectiontype"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can change collection type", "content_type": 23, "codename": "change_collectiontype"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can delete collection type", "content_type": 23, "codename": "delete_collectiontype"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add text type", "content_type": 24, "codename": "add_texttype"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change text type", "content_type": 24, "codename": "change_texttype"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete text type", "content_type": 24, "codename": "delete_texttype"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add person person relation", "content_type": 25, "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change person person relation", "content_type": 25, "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete person person relation", "content_type": 25, "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can add person place relation", "content_type": 26, "codename": "add_personplacerelation"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can change person place relation", "content_type": 26, "codename": "change_personplacerelation"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can delete person place relation", "content_type": 26, "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can add person institution relation", "content_type": 27, "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can change person institution relation", "content_type": 27, "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can delete person institution relation", "content_type": 27, "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add person event relation", "content_type": 28, "codename": "add_personeventrelation"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change person event relation", "content_type": 28, "codename": "change_personeventrelation"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete person event relation", "content_type": 28, "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add person work relation", "content_type": 29, "codename": "add_personworkrelation"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change person work relation", "content_type": 29, "codename": "change_personworkrelation"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete person work relation", "content_type": 29, "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can add institution event relation", "content_type": 30, "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can change institution event relation", "content_type": 30, "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can delete institution event relation", "content_type": 30, "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can add institution place relation", "content_type": 31, "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can change institution place relation", "content_type": 31, "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can delete institution place relation", "content_type": 31, "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add institution institution relation", "content_type": 32, "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change institution institution relation", "content_type": 32, "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete institution institution relation", "content_type": 32, "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add place place relation", "content_type": 33, "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change place place relation", "content_type": 33, "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete place place relation", "content_type": 33, "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can add place event relation", "content_type": 34, "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can change place event relation", "content_type": 34, "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can delete place event relation", "content_type": 34, "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can add place work relation", "content_type": 35, "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can change place work relation", "content_type": 35, "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can delete place work relation", "content_type": 35, "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add event event relation", "content_type": 36, "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change event event relation", "content_type": 36, "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete event event relation", "content_type": 36, "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add event work relation", "content_type": 37, "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change event work relation", "content_type": 37, "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete event work relation", "content_type": 37, "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can add work work relation", "content_type": 38, "codename": "add_workworkrelation"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can change work work relation", "content_type": 38, "codename": "change_workworkrelation"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can delete work work relation", "content_type": 38, "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can add person person", "content_type": 39, "codename": "add_personperson"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can change person person", "content_type": 39, "codename": "change_personperson"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can delete person person", "content_type": 39, "codename": "delete_personperson"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can add person place", "content_type": 40, "codename": "add_personplace"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can change person place", "content_type": 40, "codename": "change_personplace"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can delete person place", "content_type": 40, "codename": "delete_personplace"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add person institution", "content_type": 41, "codename": "add_personinstitution"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change person institution", "content_type": 41, "codename": "change_personinstitution"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete person institution", "content_type": 41, "codename": "delete_personinstitution"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can add person event", "content_type": 42, "codename": "add_personevent"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can change person event", "content_type": 42, "codename": "change_personevent"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can delete person event", "content_type": 42, "codename": "delete_personevent"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can add person work", "content_type": 43, "codename": "add_personwork"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can change person work", "content_type": 43, "codename": "change_personwork"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can delete person work", "content_type": 43, "codename": "delete_personwork"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can add institution institution", "content_type": 44, "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can change institution institution", "content_type": 44, "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can delete institution institution", "content_type": 44, "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add institution place", "content_type": 45, "codename": "add_institutionplace"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change institution place", "content_type": 45, "codename": "change_institutionplace"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete institution place", "content_type": 45, "codename": "delete_institutionplace"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can add institution event", "content_type": 46, "codename": "add_institutionevent"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can change institution event", "content_type": 46, "codename": "change_institutionevent"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can delete institution event", "content_type": 46, "codename": "delete_institutionevent"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can add institution work", "content_type": 47, "codename": "add_institutionwork"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can change institution work", "content_type": 47, "codename": "change_institutionwork"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can delete institution work", "content_type": 47, "codename": "delete_institutionwork"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can add place place", "content_type": 48, "codename": "add_placeplace"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can change place place", "content_type": 48, "codename": "change_placeplace"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can delete place place", "content_type": 48, "codename": "delete_placeplace"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add place event", "content_type": 49, "codename": "add_placeevent"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change place event", "content_type": 49, "codename": "change_placeevent"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete place event", "content_type": 49, "codename": "delete_placeevent"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can add place work", "content_type": 50, "codename": "add_placework"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can change place work", "content_type": 50, "codename": "change_placework"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can delete place work", "content_type": 50, "codename": "delete_placework"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can add event event", "content_type": 51, "codename": "add_eventevent"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can change event event", "content_type": 51, "codename": "change_eventevent"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can delete event event", "content_type": 51, "codename": "delete_eventevent"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can add event work", "content_type": 52, "codename": "add_eventwork"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can change event work", "content_type": 52, "codename": "change_eventwork"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can delete event work", "content_type": 52, "codename": "delete_eventwork"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can add work work", "content_type": 53, "codename": "add_workwork"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can change work work", "content_type": 53, "codename": "change_workwork"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can delete work work", "content_type": 53, "codename": "delete_workwork"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can add temp entity class", "content_type": 54, "codename": "add_tempentityclass"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can change temp entity class", "content_type": 54, "codename": "change_tempentityclass"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can delete temp entity class", "content_type": 54, "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can add source", "content_type": 55, "codename": "add_source"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can change source", "content_type": 55, "codename": "change_source"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can delete source", "content_type": 55, "codename": "delete_source"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can add collection", "content_type": 56, "codename": "add_collection"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can change collection", "content_type": 56, "codename": "change_collection"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can delete collection", "content_type": 56, "codename": "delete_collection"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can add text", "content_type": 57, "codename": "add_text"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can change text", "content_type": 57, "codename": "change_text"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can delete text", "content_type": 57, "codename": "delete_text"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can add uri", "content_type": 58, "codename": "add_uri"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can change uri", "content_type": 58, "codename": "change_uri"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can delete uri", "content_type": 58, "codename": "delete_uri"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can add project", "content_type": 61, "codename": "add_project"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can change project", "content_type": 61, "codename": "change_project"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can delete project", "content_type": 61, "codename": "delete_project"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can add annotation", "content_type": 63, "codename": "add_annotation"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can change annotation", "content_type": 63, "codename": "change_annotation"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can delete annotation", "content_type": 63, "codename": "delete_annotation"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can add vocabulary api", "content_type": 64, "codename": "add_vocabularyapi"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can change vocabulary api", "content_type": 64, "codename": "change_vocabularyapi"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can delete vocabulary api", "content_type": 64, "codename": "delete_vocabularyapi"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can add menu entry", "content_type": 65, "codename": "add_menuentry"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can change menu entry", "content_type": 65, "codename": "change_menuentry"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can delete menu entry", "content_type": 65, "codename": "delete_menuentry"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can add revision", "content_type": 66, "codename": "add_revision"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can change revision", "content_type": 66, "codename": "change_revision"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can delete revision", "content_type": 66, "codename": "delete_revision"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can add version", "content_type": 67, "codename": "add_version"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can change version", "content_type": 67, "codename": "change_version"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can delete version", "content_type": 67, "codename": "delete_version"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can add uri candidate", "content_type": 68, "codename": "add_uricandidate"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can change uri candidate", "content_type": 68, "codename": "change_uricandidate"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can delete uri candidate", "content_type": 68, "codename": "delete_uricandidate"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can add vocab names", "content_type": 69, "codename": "add_vocabnames"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can change vocab names", "content_type": 69, "codename": "change_vocabnames"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can delete vocab names", "content_type": 69, "codename": "delete_vocabnames"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can add text high", "content_type": 70, "codename": "add_texthigh"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can change text high", "content_type": 70, "codename": "change_texthigh"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can delete text high", "content_type": 70, "codename": "delete_texthigh"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can add annotation project", "content_type": 71, "codename": "add_annotationproject"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can change annotation project", "content_type": 71, "codename": "change_annotationproject"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can delete annotation project", "content_type": 71, "codename": "delete_annotationproject"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can add Token", "content_type": 72, "codename": "add_token"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can change Token", "content_type": 72, "codename": "change_token"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can delete Token", "content_type": 72, "codename": "delete_token"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can add user object permission", "content_type": 73, "codename": "add_userobjectpermission"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can change user object permission", "content_type": 73, "codename": "change_userobjectpermission"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can delete user object permission", "content_type": 73, "codename": "delete_userobjectpermission"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can add group object permission", "content_type": 74, "codename": "add_groupobjectpermission"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can change group object permission", "content_type": 74, "codename": "change_groupobjectpermission"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can delete group object permission", "content_type": 74, "codename": "delete_groupobjectpermission"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "semac", "permissions": [13, 14, 15, 31, 32, 33, 28, 29, 30, 22, 23, 24, 25, 26, 27, 34, 35, 36, 187, 188, 189, 193, 194, 195, 181, 182, 183, 190, 191, 192, 19, 20, 21, 166, 167, 168, 163, 164, 165, 160, 161, 162, 169, 170, 171, 172, 173, 174, 151, 152, 153, 154, 155, 156, 136, 137, 138, 130, 131, 132, 133, 134, 135, 139, 140, 141, 124, 125, 126, 121, 122, 123, 115, 116, 117, 118, 119, 120, 127, 128, 129, 145, 146, 147, 142, 143, 144, 148, 149, 150, 157, 158, 159, 16, 17, 18, 67, 68, 69, 106, 107, 108, 61, 62, 63, 109, 110, 111, 88, 89, 90, 94, 95, 96, 91, 92, 93, 58, 59, 60, 64, 65, 66, 82, 83, 84, 79, 80, 81, 73, 74, 75, 76, 77, 78, 85, 86, 87, 100, 101, 102, 97, 98, 99, 55, 56, 57, 103, 104, 105, 52, 53, 54, 40, 41, 42, 70, 71, 72, 49, 50, 51, 37, 38, 39, 43, 44, 45, 46, 47, 48, 112, 113, 114]}}, {"model": "auth.group", "pk": 2, "fields": {"name": "apis", "permissions": []}}, {"model": "auth.group", "pk": 3, "fields": {"name": "staribacher", "permissions": []}}, {"model": "auth.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$24000$lZLlfjvJkfgl$AaPc0kM0uUiYs1Iaj8jLiZcMGjC/hqQPyt3qX+B0JFk=", "last_login": "2016-12-20T11:30:35Z", "is_superuser": true, "username": "pandorfer", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2016-04-04T11:48:13Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", "last_login": "2016-12-21T09:47:39Z", "is_superuser": true, "username": "sennierer", "first_name": "Matthias", "last_name": "Schl\u00f6gl", "email": "matthias.schloegl@oeaw.ac.at", "is_staff": true, "is_active": true, "date_joined": "2016-04-05T15:11:00Z", "groups": [2], "user_permissions": [1, 2, 3, 7, 8, 9, 4, 5, 6, 10, 11, 12, 13, 14, 15, 31, 32, 33, 28, 29, 30, 22, 23, 24, 25, 26, 27, 34, 35, 36, 187, 188, 189, 193, 194, 195, 181, 182, 183, 190, 191, 192, 19, 20, 21, 166, 167, 168, 163, 164, 165, 160, 161, 162, 169, 170, 171, 172, 173, 174, 202, 203, 204, 151, 152, 153, 154, 155, 156, 136, 137, 138, 130, 131, 132, 133, 134, 135, 139, 140, 141, 124, 125, 126, 121, 122, 123, 115, 116, 117, 118, 119, 120, 127, 128, 129, 145, 146, 147, 142, 143, 144, 148, 149, 150, 157, 158, 159, 196, 197, 198, 199, 200, 201, 16, 17, 18, 67, 68, 69, 106, 107, 108, 61, 62, 63, 109, 110, 111, 88, 89, 90, 94, 95, 96, 91, 92, 93, 58, 59, 60, 64, 65, 66, 82, 83, 84, 79, 80, 81, 73, 74, 75, 76, 77, 78, 85, 86, 87, 100, 101, 102, 97, 98, 99, 55, 56, 57, 103, 104, 105, 52, 53, 54, 40, 41, 42, 70, 71, 72, 49, 50, 51, 37, 38, 39, 43, 44, 45, 46, 47, 48, 112, 113, 114]}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1, "fields": {"name": "old entity of", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Place description \u00d6BL", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "vocabsor similar import", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "\u00d6BL place name", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "seat of a third-order administrative division (PPLA3)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "weitere Namensformen", "description": "wie im Gideon, statt alternative name", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "independent political entity (PCLI)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "populated place (PPL)", "description": "a city, town, village, or other agglomeration of buildings where people live and work", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "seat of a fourth-order administrative division (PPLA4)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "seat of a second-order administrative division (PPLA2)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "capital of a political entity (PPLC)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "seat of a first-order administrative division (PPLA)", "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 125, "fields": {"name": "test data import", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Literatur, Buch- und Zeitungswesen", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "\u00d6BL Haupttext", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "\u00d6BL Kurzinfo", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Rechtswesen und Rechtswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 133, "fields": {"name": "Rechtshistoriker und Abgeordneter", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Politik", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 135, "fields": {"name": "Naturwissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Botaniker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 137, "fields": {"name": "Wirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 138, "fields": {"name": "Instrumentenbauer", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 139, "fields": {"name": "Bildende und angewandte Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Maler", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 141, "fields": {"name": "Religionen und Theologie", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Bischof", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 143, "fields": {"name": "Milit\u00e4r", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "General", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Verwaltungsjurist und Politiker", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 146, "fields": {"name": "Verwaltung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 147, "fields": {"name": "Ministerpr\u00e4sident", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Zoologe", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Geisteswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Arch\u00e4ologe", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Musik und darstellende Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Schauspieler und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Medizin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "P\u00e4diater", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Technik", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Milit\u00e4rtechniker, Offizier und ungarischer Freiheitsk\u00e4mpfer", "description": "", "parent_class": 157, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Beamter und Fachschriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Historiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Architekt", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Diplomat", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Sport", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Eiskunstl\u00e4uferin", "description": "", "parent_class": 163, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 165, "fields": {"name": "Gro\u00dfindustrielle", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 166, "fields": {"name": "Diverse", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Bautechniker", "description": "", "parent_class": 157, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Maler und Graphiker", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Politikerin und Schriftstellerin", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Schauspieler, Theaterdirektor und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Physiologe", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Jurist", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Fabrikant", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Schriftsteller und Journalist", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Internist", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Landesverteidiger und Schriftsteller", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 177, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Malerin", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 179, "fields": {"name": "Volkss\u00e4nger", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Sozial- und Wirtschaftswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Betriebswirtschafter", "description": "", "parent_class": 180, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 182, "fields": {"name": "Slawist und Linguist", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 183, "fields": {"name": "Admiral", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Stigmatisierte", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 187, "fields": {"name": "Pharmazeut", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Unterrichtswesen", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Lehrer", "description": "", "parent_class": 188, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Montanist und Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 191, "fields": {"name": "Maler und Radierer", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Philologe und Literarhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Biologe und Lehrer", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Physiker", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Offizier und Diplomat", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Theologe", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Ornithologe", "description": "", "parent_class": 135, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Diplomat und Politiker", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Lokalhistoriker, Gewerbetreibender und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Schriftsteller und Seelsorger", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Industrieller", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Mediziner", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Komponist, Chorleiter und Musikkritiker", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Kirchenhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Journalist und Lehrer", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Fabrikant und Politiker", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "S\u00e4nger und Schauspieler", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Chirurg", "description": "", "parent_class": 154, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 209, "fields": {"name": "Jurist und Beamter", "description": "", "parent_class": 132, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier", "description": "", "parent_class": 137, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Feldmarschalleutnant und Sicherheitsbeamter", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Pianist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Politiker und Jurist", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 214, "fields": {"name": "Musiker und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Bildhauer", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Harfenist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 217, "fields": {"name": "Land- und Forstwirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 218, "fields": {"name": "Landwirt und Weinhauer", "description": "", "parent_class": 217, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 219, "fields": {"name": "Ordensangeh\u00f6riger und Stifter", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 220, "fields": {"name": "Historiker und Lehrer", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 221, "fields": {"name": "Politiker und Kaufmann", "description": "", "parent_class": 134, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 222, "fields": {"name": "Journalist und Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Maler und Karikaturist", "description": "", "parent_class": 139, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Offizier", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Bischof und Missionar", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 226, "fields": {"name": "P\u00e4dagogin und Physikerin", "description": "", "parent_class": 188, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 227, "fields": {"name": "Historiker und Byzantinist", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Archivar und Historiker", "description": "", "parent_class": 146, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Geistlicher, Historiker und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 230, "fields": {"name": "Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Offizier und Politiker", "description": "", "parent_class": 143, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "S\u00e4nger, Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 233, "fields": {"name": "Journalist und Politiker", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Pfadfinderf\u00fchrer und Offizier", "description": "", "parent_class": 166, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "F\u00fcrstbischof", "description": "", "parent_class": 141, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 236, "fields": {"name": "Place review comments", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 371, "fields": {"name": "first-order administrative division (ADM1)", "description": "a primary administrative division of a country, such as a state in the United States", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "third-order administrative division (ADM3)", "description": "a subdivision of a second-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "fifth-order administrative division (ADM5)", "description": "a subdivision of a fourth-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Krieg", "description": "auch Revolution und B\u00fcrgerkrieg, Unterkategorie ist Schlacht", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Attentat", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 384, "fields": {"name": "Epidemie", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Verleihung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Festzug", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Kongress", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "R\u00fccktritt", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Fertigstellung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 392, "fields": {"name": "Erstauff\u00fchrung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 394, "fields": {"name": "Berufung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Abspaltung", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "nahm Teil an", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "hatte als Teilnehmer", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Schlacht", "description": "", "parent_class": 380, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Friedensverhandlung", "description": "", "parent_class": 380, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "historical first-order administrative division (ADM1H)", "description": "a former first-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "author", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Publikation", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Pseudonym", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "M\u00e4dchenname", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 432, "fields": {"name": "K\u00fcnstlername", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "fourth-order administrative division (ADM4)", "description": "a subdivision of a third-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 452, "fields": {"name": "second-order administrative division (ADM2)", "description": "a subdivision of a first-order administrative division", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Graf", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Herzog", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 462, "fields": {"name": "Freiherr", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Erzherzog", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "K\u00f6nig", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Kaiser", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 466, "fields": {"name": "F\u00fcrst", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Freiin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Freifrau", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "F\u00fcrstin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 470, "fields": {"name": "Erzherz\u00f6gin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "K\u00f6nigin", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 483, "fields": {"name": "Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Pianist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "place of birth", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "place of death", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "alternative Namensform", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 598, "fields": {"name": "Name laut \u00d6BL XML", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 606, "fields": {"name": "Ehename", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Taufname", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 653, "fields": {"name": "not defined", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1750, "fields": {"name": "Pianistin", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "Komponist und Musiklehrer", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5578, "fields": {"name": "Schriftstellerin, \u00dcbersetzerin und Pianistin", "description": "", "parent_class": 128, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5599, "fields": {"name": "Pianist, P\u00e4dagoge und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": 12, "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5608, "fields": {"name": "undefined", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5702, "fields": {"name": "situated in", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 8}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5708, "fields": {"name": "is superior of", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5709, "fields": {"name": "is succeeding", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5711, "fields": {"name": "is preceding", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5729, "fields": {"name": "section of populated place (PPLX)", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5741, "fields": {"name": "family member", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5742, "fields": {"name": "friend", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5743, "fields": {"name": "affiliation", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 4}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5765, "fields": {"name": "administrative division (ADMD)", "description": "an administrative division of a country, undifferentiated as to administrative level", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5772, "fields": {"name": "research dataset", "description": "", "parent_class": null, "status": "can", "userAdded": 12, "vocab_name": 11}}, {"model": "vocabularies.relationbaseclass", "pk": 1, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 8, "fields": {"name_reverse": "includes"}}, {"model": "vocabularies.relationbaseclass", "pk": 398, "fields": {"name_reverse": "hatte als Teilnehmer"}}, {"model": "vocabularies.relationbaseclass", "pk": 399, "fields": {"name_reverse": "nahm Teil an"}}, {"model": "vocabularies.relationbaseclass", "pk": 424, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 595, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 596, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5608, "fields": {"name_reverse": "undefined"}}, {"model": "vocabularies.relationbaseclass", "pk": 5702, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5708, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5709, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5711, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5741, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5742, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5743, "fields": {"name_reverse": ""}}, {"model": "vocabularies.worktype", "pk": 429, "fields": {}}, {"model": "vocabularies.title", "pk": 460, "fields": {"abbreviation": "Gf."}}, {"model": "vocabularies.title", "pk": 461, "fields": {"abbreviation": "Hg."}}, {"model": "vocabularies.title", "pk": 462, "fields": {"abbreviation": "Frh."}}, {"model": "vocabularies.title", "pk": 463, "fields": {"abbreviation": "Erzhg."}}, {"model": "vocabularies.title", "pk": 464, "fields": {"abbreviation": "Kg."}}, {"model": "vocabularies.title", "pk": 465, "fields": {"abbreviation": "K."}}, {"model": "vocabularies.title", "pk": 466, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 467, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 468, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 469, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 470, "fields": {"abbreviation": "Erzhgn."}}, {"model": "vocabularies.title", "pk": 474, "fields": {"abbreviation": "Kngn."}}, {"model": "vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 133, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 135, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 137, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 138, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 139, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 141, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 143, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 146, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 147, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 149, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 165, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 166, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 172, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 177, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 179, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 182, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 183, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 187, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 191, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 209, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 214, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 217, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 218, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 219, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 220, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 221, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 222, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 226, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 227, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 230, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 233, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 483, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 1750, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 2054, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5578, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5599, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "vocabularies.placetype", "pk": 11, "fields": {}}, {"model": "vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "vocabularies.placetype", "pk": 371, "fields": {}}, {"model": "vocabularies.placetype", "pk": 373, "fields": {}}, {"model": "vocabularies.placetype", "pk": 375, "fields": {}}, {"model": "vocabularies.placetype", "pk": 420, "fields": {}}, {"model": "vocabularies.placetype", "pk": 443, "fields": {}}, {"model": "vocabularies.placetype", "pk": 452, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5729, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5765, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 380, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 382, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 384, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 385, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 386, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 388, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 390, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 391, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 392, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 393, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 394, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 396, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 400, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 401, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 4, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 6, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 430, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 431, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 432, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 433, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 597, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 598, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 606, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 612, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 653, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 3, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 125, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 5772, "fields": {}}, {"model": "vocabularies.texttype", "pk": 2, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 130, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 131, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 236, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.personpersonrelation", "pk": 5608, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5741, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5742, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 595, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 596, "fields": {}}, {"model": "vocabularies.personinstitutionrelation", "pk": 5743, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 398, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 399, "fields": {}}, {"model": "vocabularies.personworkrelation", "pk": 424, "fields": {}}, {"model": "vocabularies.institutionplacerelation", "pk": 5702, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5708, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5709, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5711, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 1, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 8, "fields": {}}, {"model": "highlighter.project", "pk": 1, "fields": {"name": "highlight places", "user": 12, "description": "", "base_url": "", "store_text": false}}, {"model": "highlighter.annotation", "pk": 237, "fields": {"start": 239, "end": 250, "orig_string": "Carl Czerny", "text": 47030, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92840]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 331, "fields": {"start": 879, "end": 899, "orig_string": "Ludwig van Beethoven", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92930]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 332, "fields": {"start": 1362, "end": 1380, "orig_string": "Sigismund Thalberg", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92931]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 333, "fields": {"start": 1383, "end": 1408, "orig_string": "Marie Leopoldine Blahetka", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92932]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 334, "fields": {"start": 1439, "end": 1454, "orig_string": "Franz von Liszt", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92933]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 335, "fields": {"start": 1736, "end": 1751, "orig_string": "Ignaz Moscheles", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92934]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 336, "fields": {"start": 3031, "end": 3043, "orig_string": "Anton Reicha", "text": 47126, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92935]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1214, "fields": {"start": 40, "end": 55, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1215, "fields": {"start": 141, "end": 151, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1216, "fields": {"start": 225, "end": 262, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1217, "fields": {"start": 354, "end": 378, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1218, "fields": {"start": 451, "end": 478, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1219, "fields": {"start": 500, "end": 508, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1220, "fields": {"start": 549, "end": 566, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1221, "fields": {"start": 650, "end": 670, "orig_string": null, "text": 47642, "parent": null, "user_added": 12, "annotation_project": 1, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "authtoken.token", "pk": "bb650ee43b63b5e13cbac9320157b08c36099452", "fields": {"user": 12, "created": "2016-08-26T08:01:26Z"}}, {"model": "guardian.groupobjectpermission", "pk": 122, "fields": {"permission": 23, "content_type": 8, "object_pk": "93803", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 623, "fields": {"permission": 24, "content_type": 8, "object_pk": "93803", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1010, "fields": {"permission": 23, "content_type": 8, "object_pk": "93003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1012, "fields": {"permission": 23, "content_type": 8, "object_pk": "93009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1013, "fields": {"permission": 23, "content_type": 8, "object_pk": "93012", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1014, "fields": {"permission": 23, "content_type": 8, "object_pk": "93015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1015, "fields": {"permission": 23, "content_type": 8, "object_pk": "93018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1016, "fields": {"permission": 23, "content_type": 8, "object_pk": "93021", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1017, "fields": {"permission": 23, "content_type": 8, "object_pk": "93024", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1018, "fields": {"permission": 23, "content_type": 8, "object_pk": "93028", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1019, "fields": {"permission": 23, "content_type": 8, "object_pk": "93031", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1020, "fields": {"permission": 23, "content_type": 8, "object_pk": "93034", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1023, "fields": {"permission": 23, "content_type": 8, "object_pk": "93044", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1024, "fields": {"permission": 23, "content_type": 8, "object_pk": "93047", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1025, "fields": {"permission": 23, "content_type": 8, "object_pk": "93050", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1026, "fields": {"permission": 23, "content_type": 8, "object_pk": "93056", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1027, "fields": {"permission": 23, "content_type": 8, "object_pk": "93059", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1028, "fields": {"permission": 23, "content_type": 8, "object_pk": "93065", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1029, "fields": {"permission": 23, "content_type": 8, "object_pk": "93068", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1030, "fields": {"permission": 23, "content_type": 8, "object_pk": "93071", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1031, "fields": {"permission": 23, "content_type": 8, "object_pk": "93074", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1048, "fields": {"permission": 23, "content_type": 8, "object_pk": "93136", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1102, "fields": {"permission": 23, "content_type": 8, "object_pk": "93328", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1104, "fields": {"permission": 23, "content_type": 8, "object_pk": "93337", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1107, "fields": {"permission": 23, "content_type": 8, "object_pk": "93352", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1111, "fields": {"permission": 23, "content_type": 8, "object_pk": "93366", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1112, "fields": {"permission": 23, "content_type": 8, "object_pk": "93369", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1115, "fields": {"permission": 23, "content_type": 8, "object_pk": "93378", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1117, "fields": {"permission": 23, "content_type": 8, "object_pk": "93387", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1119, "fields": {"permission": 23, "content_type": 8, "object_pk": "93393", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1120, "fields": {"permission": 23, "content_type": 8, "object_pk": "93396", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1121, "fields": {"permission": 23, "content_type": 8, "object_pk": "93400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1124, "fields": {"permission": 23, "content_type": 8, "object_pk": "93409", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1125, "fields": {"permission": 23, "content_type": 8, "object_pk": "93415", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1126, "fields": {"permission": 23, "content_type": 8, "object_pk": "93418", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1133, "fields": {"permission": 23, "content_type": 8, "object_pk": "93442", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1134, "fields": {"permission": 23, "content_type": 8, "object_pk": "93445", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1135, "fields": {"permission": 23, "content_type": 8, "object_pk": "93448", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1140, "fields": {"permission": 23, "content_type": 8, "object_pk": "93469", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1143, "fields": {"permission": 23, "content_type": 8, "object_pk": "93481", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1144, "fields": {"permission": 23, "content_type": 8, "object_pk": "93484", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1145, "fields": {"permission": 23, "content_type": 8, "object_pk": "93487", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1151, "fields": {"permission": 23, "content_type": 8, "object_pk": "93510", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1152, "fields": {"permission": 23, "content_type": 8, "object_pk": "93513", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1153, "fields": {"permission": 23, "content_type": 8, "object_pk": "93516", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1161, "fields": {"permission": 23, "content_type": 8, "object_pk": "93540", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1163, "fields": {"permission": 23, "content_type": 8, "object_pk": "93546", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1168, "fields": {"permission": 23, "content_type": 8, "object_pk": "93561", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1171, "fields": {"permission": 23, "content_type": 8, "object_pk": "93573", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1175, "fields": {"permission": 23, "content_type": 8, "object_pk": "93588", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1178, "fields": {"permission": 23, "content_type": 8, "object_pk": "93600", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1180, "fields": {"permission": 23, "content_type": 8, "object_pk": "93609", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1181, "fields": {"permission": 23, "content_type": 8, "object_pk": "93615", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1188, "fields": {"permission": 23, "content_type": 8, "object_pk": "93639", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1189, "fields": {"permission": 23, "content_type": 8, "object_pk": "93642", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1190, "fields": {"permission": 23, "content_type": 8, "object_pk": "93645", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1192, "fields": {"permission": 23, "content_type": 8, "object_pk": "93651", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1193, "fields": {"permission": 23, "content_type": 8, "object_pk": "93654", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1194, "fields": {"permission": 23, "content_type": 8, "object_pk": "93657", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1195, "fields": {"permission": 23, "content_type": 8, "object_pk": "93663", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1200, "fields": {"permission": 23, "content_type": 8, "object_pk": "93678", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1202, "fields": {"permission": 23, "content_type": 8, "object_pk": "93684", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1207, "fields": {"permission": 23, "content_type": 8, "object_pk": "93702", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1208, "fields": {"permission": 23, "content_type": 8, "object_pk": "93705", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1211, "fields": {"permission": 23, "content_type": 8, "object_pk": "93714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1219, "fields": {"permission": 23, "content_type": 8, "object_pk": "93748", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1225, "fields": {"permission": 23, "content_type": 8, "object_pk": "93779", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1227, "fields": {"permission": 23, "content_type": 8, "object_pk": "93785", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1229, "fields": {"permission": 23, "content_type": 8, "object_pk": "93791", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1232, "fields": {"permission": 23, "content_type": 8, "object_pk": "93800", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1233, "fields": {"permission": 23, "content_type": 8, "object_pk": "93809", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1235, "fields": {"permission": 23, "content_type": 8, "object_pk": "93815", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1236, "fields": {"permission": 23, "content_type": 8, "object_pk": "93818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1242, "fields": {"permission": 23, "content_type": 8, "object_pk": "93836", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1243, "fields": {"permission": 23, "content_type": 8, "object_pk": "93839", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1248, "fields": {"permission": 23, "content_type": 8, "object_pk": "93854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1250, "fields": {"permission": 23, "content_type": 8, "object_pk": "93863", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1251, "fields": {"permission": 23, "content_type": 8, "object_pk": "93866", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1255, "fields": {"permission": 23, "content_type": 8, "object_pk": "93878", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1257, "fields": {"permission": 23, "content_type": 8, "object_pk": "93891", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1258, "fields": {"permission": 23, "content_type": 8, "object_pk": "93894", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1260, "fields": {"permission": 23, "content_type": 8, "object_pk": "93900", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1261, "fields": {"permission": 23, "content_type": 8, "object_pk": "93903", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1263, "fields": {"permission": 23, "content_type": 8, "object_pk": "93909", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1266, "fields": {"permission": 23, "content_type": 8, "object_pk": "93921", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1269, "fields": {"permission": 23, "content_type": 8, "object_pk": "93933", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1270, "fields": {"permission": 23, "content_type": 8, "object_pk": "93940", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1272, "fields": {"permission": 23, "content_type": 8, "object_pk": "93946", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1275, "fields": {"permission": 23, "content_type": 8, "object_pk": "93955", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1276, "fields": {"permission": 23, "content_type": 8, "object_pk": "93958", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1277, "fields": {"permission": 23, "content_type": 8, "object_pk": "93961", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1278, "fields": {"permission": 23, "content_type": 8, "object_pk": "93964", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1279, "fields": {"permission": 23, "content_type": 8, "object_pk": "93967", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1280, "fields": {"permission": 23, "content_type": 8, "object_pk": "93970", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1286, "fields": {"permission": 23, "content_type": 8, "object_pk": "93988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1287, "fields": {"permission": 23, "content_type": 8, "object_pk": "93991", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1290, "fields": {"permission": 23, "content_type": 8, "object_pk": "94003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1291, "fields": {"permission": 23, "content_type": 8, "object_pk": "94006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1292, "fields": {"permission": 23, "content_type": 8, "object_pk": "94009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1295, "fields": {"permission": 23, "content_type": 8, "object_pk": "94018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1303, "fields": {"permission": 24, "content_type": 8, "object_pk": "93003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1305, "fields": {"permission": 24, "content_type": 8, "object_pk": "93009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1306, "fields": {"permission": 24, "content_type": 8, "object_pk": "93012", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1307, "fields": {"permission": 24, "content_type": 8, "object_pk": "93015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1308, "fields": {"permission": 24, "content_type": 8, "object_pk": "93018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1309, "fields": {"permission": 24, "content_type": 8, "object_pk": "93021", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1310, "fields": {"permission": 24, "content_type": 8, "object_pk": "93024", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1311, "fields": {"permission": 24, "content_type": 8, "object_pk": "93028", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1312, "fields": {"permission": 24, "content_type": 8, "object_pk": "93031", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1313, "fields": {"permission": 24, "content_type": 8, "object_pk": "93034", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1316, "fields": {"permission": 24, "content_type": 8, "object_pk": "93044", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1317, "fields": {"permission": 24, "content_type": 8, "object_pk": "93047", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1318, "fields": {"permission": 24, "content_type": 8, "object_pk": "93050", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1319, "fields": {"permission": 24, "content_type": 8, "object_pk": "93056", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1320, "fields": {"permission": 24, "content_type": 8, "object_pk": "93059", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1321, "fields": {"permission": 24, "content_type": 8, "object_pk": "93065", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1322, "fields": {"permission": 24, "content_type": 8, "object_pk": "93068", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1323, "fields": {"permission": 24, "content_type": 8, "object_pk": "93071", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1324, "fields": {"permission": 24, "content_type": 8, "object_pk": "93074", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1341, "fields": {"permission": 24, "content_type": 8, "object_pk": "93136", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1395, "fields": {"permission": 24, "content_type": 8, "object_pk": "93328", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1397, "fields": {"permission": 24, "content_type": 8, "object_pk": "93337", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1400, "fields": {"permission": 24, "content_type": 8, "object_pk": "93352", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1404, "fields": {"permission": 24, "content_type": 8, "object_pk": "93366", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1405, "fields": {"permission": 24, "content_type": 8, "object_pk": "93369", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1408, "fields": {"permission": 24, "content_type": 8, "object_pk": "93378", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1410, "fields": {"permission": 24, "content_type": 8, "object_pk": "93387", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1412, "fields": {"permission": 24, "content_type": 8, "object_pk": "93393", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1413, "fields": {"permission": 24, "content_type": 8, "object_pk": "93396", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1414, "fields": {"permission": 24, "content_type": 8, "object_pk": "93400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1417, "fields": {"permission": 24, "content_type": 8, "object_pk": "93409", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1418, "fields": {"permission": 24, "content_type": 8, "object_pk": "93415", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1419, "fields": {"permission": 24, "content_type": 8, "object_pk": "93418", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1426, "fields": {"permission": 24, "content_type": 8, "object_pk": "93442", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1427, "fields": {"permission": 24, "content_type": 8, "object_pk": "93445", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1428, "fields": {"permission": 24, "content_type": 8, "object_pk": "93448", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1433, "fields": {"permission": 24, "content_type": 8, "object_pk": "93469", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1436, "fields": {"permission": 24, "content_type": 8, "object_pk": "93481", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1437, "fields": {"permission": 24, "content_type": 8, "object_pk": "93484", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1438, "fields": {"permission": 24, "content_type": 8, "object_pk": "93487", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1444, "fields": {"permission": 24, "content_type": 8, "object_pk": "93510", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1445, "fields": {"permission": 24, "content_type": 8, "object_pk": "93513", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1446, "fields": {"permission": 24, "content_type": 8, "object_pk": "93516", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1454, "fields": {"permission": 24, "content_type": 8, "object_pk": "93540", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1456, "fields": {"permission": 24, "content_type": 8, "object_pk": "93546", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1461, "fields": {"permission": 24, "content_type": 8, "object_pk": "93561", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1464, "fields": {"permission": 24, "content_type": 8, "object_pk": "93573", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1468, "fields": {"permission": 24, "content_type": 8, "object_pk": "93588", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1471, "fields": {"permission": 24, "content_type": 8, "object_pk": "93600", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1473, "fields": {"permission": 24, "content_type": 8, "object_pk": "93609", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1474, "fields": {"permission": 24, "content_type": 8, "object_pk": "93615", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1481, "fields": {"permission": 24, "content_type": 8, "object_pk": "93639", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1482, "fields": {"permission": 24, "content_type": 8, "object_pk": "93642", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1483, "fields": {"permission": 24, "content_type": 8, "object_pk": "93645", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1485, "fields": {"permission": 24, "content_type": 8, "object_pk": "93651", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1486, "fields": {"permission": 24, "content_type": 8, "object_pk": "93654", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1487, "fields": {"permission": 24, "content_type": 8, "object_pk": "93657", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1488, "fields": {"permission": 24, "content_type": 8, "object_pk": "93663", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1493, "fields": {"permission": 24, "content_type": 8, "object_pk": "93678", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1495, "fields": {"permission": 24, "content_type": 8, "object_pk": "93684", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1500, "fields": {"permission": 24, "content_type": 8, "object_pk": "93702", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1501, "fields": {"permission": 24, "content_type": 8, "object_pk": "93705", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1504, "fields": {"permission": 24, "content_type": 8, "object_pk": "93714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1512, "fields": {"permission": 24, "content_type": 8, "object_pk": "93748", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1518, "fields": {"permission": 24, "content_type": 8, "object_pk": "93779", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1520, "fields": {"permission": 24, "content_type": 8, "object_pk": "93785", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1522, "fields": {"permission": 24, "content_type": 8, "object_pk": "93791", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1525, "fields": {"permission": 24, "content_type": 8, "object_pk": "93800", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1526, "fields": {"permission": 24, "content_type": 8, "object_pk": "93809", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1528, "fields": {"permission": 24, "content_type": 8, "object_pk": "93815", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1529, "fields": {"permission": 24, "content_type": 8, "object_pk": "93818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1535, "fields": {"permission": 24, "content_type": 8, "object_pk": "93836", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1536, "fields": {"permission": 24, "content_type": 8, "object_pk": "93839", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1541, "fields": {"permission": 24, "content_type": 8, "object_pk": "93854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1543, "fields": {"permission": 24, "content_type": 8, "object_pk": "93863", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1544, "fields": {"permission": 24, "content_type": 8, "object_pk": "93866", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1548, "fields": {"permission": 24, "content_type": 8, "object_pk": "93878", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1550, "fields": {"permission": 24, "content_type": 8, "object_pk": "93891", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1551, "fields": {"permission": 24, "content_type": 8, "object_pk": "93894", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1553, "fields": {"permission": 24, "content_type": 8, "object_pk": "93900", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1554, "fields": {"permission": 24, "content_type": 8, "object_pk": "93903", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1556, "fields": {"permission": 24, "content_type": 8, "object_pk": "93909", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1559, "fields": {"permission": 24, "content_type": 8, "object_pk": "93921", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1562, "fields": {"permission": 24, "content_type": 8, "object_pk": "93933", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1563, "fields": {"permission": 24, "content_type": 8, "object_pk": "93940", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1565, "fields": {"permission": 24, "content_type": 8, "object_pk": "93946", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1568, "fields": {"permission": 24, "content_type": 8, "object_pk": "93955", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1569, "fields": {"permission": 24, "content_type": 8, "object_pk": "93958", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1570, "fields": {"permission": 24, "content_type": 8, "object_pk": "93961", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1571, "fields": {"permission": 24, "content_type": 8, "object_pk": "93964", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1572, "fields": {"permission": 24, "content_type": 8, "object_pk": "93967", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1573, "fields": {"permission": 24, "content_type": 8, "object_pk": "93970", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1579, "fields": {"permission": 24, "content_type": 8, "object_pk": "93988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1580, "fields": {"permission": 24, "content_type": 8, "object_pk": "93991", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1583, "fields": {"permission": 24, "content_type": 8, "object_pk": "94003", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1584, "fields": {"permission": 24, "content_type": 8, "object_pk": "94006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1585, "fields": {"permission": 24, "content_type": 8, "object_pk": "94009", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 1588, "fields": {"permission": 24, "content_type": 8, "object_pk": "94018", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 3973, "fields": {"permission": 23, "content_type": 8, "object_pk": "88902", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 4240, "fields": {"permission": 23, "content_type": 8, "object_pk": "92412", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 7515, "fields": {"permission": 24, "content_type": 8, "object_pk": "88902", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 7782, "fields": {"permission": 24, "content_type": 8, "object_pk": "92412", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 9760, "fields": {"permission": 23, "content_type": 8, "object_pk": "27245", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 13575, "fields": {"permission": 23, "content_type": 8, "object_pk": "46414", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 15601, "fields": {"permission": 23, "content_type": 8, "object_pk": "56248", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 16957, "fields": {"permission": 23, "content_type": 8, "object_pk": "62757", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 22688, "fields": {"permission": 23, "content_type": 8, "object_pk": "88219", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 23454, "fields": {"permission": 24, "content_type": 8, "object_pk": "27245", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 27269, "fields": {"permission": 24, "content_type": 8, "object_pk": "46414", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 29295, "fields": {"permission": 24, "content_type": 8, "object_pk": "56248", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 30651, "fields": {"permission": 24, "content_type": 8, "object_pk": "62757", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 36382, "fields": {"permission": 24, "content_type": 8, "object_pk": "88219", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37445, "fields": {"permission": 23, "content_type": 8, "object_pk": "92603", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37550, "fields": {"permission": 24, "content_type": 8, "object_pk": "92603", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37575, "fields": {"permission": 119, "content_type": 40, "object_pk": "98116", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 37576, "fields": {"permission": 120, "content_type": 40, "object_pk": "98116", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39399, "fields": {"permission": 26, "content_type": 9, "object_pk": "26", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39454, "fields": {"permission": 26, "content_type": 9, "object_pk": "133", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39478, "fields": {"permission": 26, "content_type": 9, "object_pk": "183", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39549, "fields": {"permission": 26, "content_type": 9, "object_pk": "327", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39579, "fields": {"permission": 26, "content_type": 9, "object_pk": "384", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39588, "fields": {"permission": 26, "content_type": 9, "object_pk": "400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39822, "fields": {"permission": 26, "content_type": 9, "object_pk": "831", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 39872, "fields": {"permission": 26, "content_type": 9, "object_pk": "926", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40122, "fields": {"permission": 26, "content_type": 9, "object_pk": "1390", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40142, "fields": {"permission": 26, "content_type": 9, "object_pk": "1424", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40157, "fields": {"permission": 26, "content_type": 9, "object_pk": "1454", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40292, "fields": {"permission": 26, "content_type": 9, "object_pk": "1701", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40301, "fields": {"permission": 26, "content_type": 9, "object_pk": "1718", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40454, "fields": {"permission": 26, "content_type": 9, "object_pk": "2006", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40489, "fields": {"permission": 26, "content_type": 9, "object_pk": "2072", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40496, "fields": {"permission": 26, "content_type": 9, "object_pk": "2085", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40538, "fields": {"permission": 26, "content_type": 9, "object_pk": "2161", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40543, "fields": {"permission": 26, "content_type": 9, "object_pk": "2170", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40557, "fields": {"permission": 26, "content_type": 9, "object_pk": "2197", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40602, "fields": {"permission": 26, "content_type": 9, "object_pk": "2281", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40718, "fields": {"permission": 26, "content_type": 9, "object_pk": "2489", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40779, "fields": {"permission": 26, "content_type": 9, "object_pk": "2602", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 40911, "fields": {"permission": 26, "content_type": 9, "object_pk": "2854", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41046, "fields": {"permission": 26, "content_type": 9, "object_pk": "3105", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41076, "fields": {"permission": 26, "content_type": 9, "object_pk": "3162", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41582, "fields": {"permission": 26, "content_type": 9, "object_pk": "4096", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41674, "fields": {"permission": 26, "content_type": 9, "object_pk": "4269", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41937, "fields": {"permission": 26, "content_type": 9, "object_pk": "4767", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 41997, "fields": {"permission": 26, "content_type": 9, "object_pk": "4877", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42221, "fields": {"permission": 26, "content_type": 9, "object_pk": "5294", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42228, "fields": {"permission": 26, "content_type": 9, "object_pk": "5308", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42318, "fields": {"permission": 26, "content_type": 9, "object_pk": "5478", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42436, "fields": {"permission": 26, "content_type": 9, "object_pk": "5691", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42466, "fields": {"permission": 26, "content_type": 9, "object_pk": "5749", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42602, "fields": {"permission": 26, "content_type": 9, "object_pk": "6004", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42775, "fields": {"permission": 26, "content_type": 9, "object_pk": "6324", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 42985, "fields": {"permission": 26, "content_type": 9, "object_pk": "6700", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43120, "fields": {"permission": 26, "content_type": 9, "object_pk": "6947", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43396, "fields": {"permission": 26, "content_type": 9, "object_pk": "7454", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43489, "fields": {"permission": 26, "content_type": 9, "object_pk": "7622", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43690, "fields": {"permission": 26, "content_type": 9, "object_pk": "7986", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 43961, "fields": {"permission": 26, "content_type": 9, "object_pk": "8482", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44131, "fields": {"permission": 26, "content_type": 9, "object_pk": "8798", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44397, "fields": {"permission": 26, "content_type": 9, "object_pk": "9287", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44489, "fields": {"permission": 26, "content_type": 9, "object_pk": "9455", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44499, "fields": {"permission": 26, "content_type": 9, "object_pk": "9475", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44638, "fields": {"permission": 26, "content_type": 9, "object_pk": "9735", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44790, "fields": {"permission": 26, "content_type": 9, "object_pk": "10015", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 44924, "fields": {"permission": 26, "content_type": 9, "object_pk": "10265", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45212, "fields": {"permission": 26, "content_type": 9, "object_pk": "10793", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45448, "fields": {"permission": 26, "content_type": 9, "object_pk": "11238", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45620, "fields": {"permission": 26, "content_type": 9, "object_pk": "11556", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45749, "fields": {"permission": 26, "content_type": 9, "object_pk": "11799", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 45969, "fields": {"permission": 26, "content_type": 9, "object_pk": "12211", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46265, "fields": {"permission": 26, "content_type": 9, "object_pk": "12758", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46538, "fields": {"permission": 26, "content_type": 9, "object_pk": "13253", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46611, "fields": {"permission": 26, "content_type": 9, "object_pk": "13382", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46791, "fields": {"permission": 26, "content_type": 9, "object_pk": "13714", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 46937, "fields": {"permission": 26, "content_type": 9, "object_pk": "13987", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 47277, "fields": {"permission": 26, "content_type": 9, "object_pk": "14608", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48165, "fields": {"permission": 26, "content_type": 9, "object_pk": "16242", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48200, "fields": {"permission": 26, "content_type": 9, "object_pk": "16310", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48351, "fields": {"permission": 26, "content_type": 9, "object_pk": "16594", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 48496, "fields": {"permission": 26, "content_type": 9, "object_pk": "16864", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49327, "fields": {"permission": 26, "content_type": 9, "object_pk": "18374", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49341, "fields": {"permission": 26, "content_type": 9, "object_pk": "18400", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49771, "fields": {"permission": 26, "content_type": 9, "object_pk": "19215", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 49976, "fields": {"permission": 26, "content_type": 9, "object_pk": "19599", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50488, "fields": {"permission": 26, "content_type": 9, "object_pk": "20549", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50550, "fields": {"permission": 26, "content_type": 9, "object_pk": "20659", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50668, "fields": {"permission": 26, "content_type": 9, "object_pk": "20872", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 50731, "fields": {"permission": 26, "content_type": 9, "object_pk": "20988", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51189, "fields": {"permission": 26, "content_type": 9, "object_pk": "21818", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51199, "fields": {"permission": 26, "content_type": 9, "object_pk": "22216", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51204, "fields": {"permission": 26, "content_type": 9, "object_pk": "22259", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51212, "fields": {"permission": 26, "content_type": 9, "object_pk": "22322", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51215, "fields": {"permission": 26, "content_type": 9, "object_pk": "22354", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51226, "fields": {"permission": 26, "content_type": 9, "object_pk": "22475", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51230, "fields": {"permission": 26, "content_type": 9, "object_pk": "22494", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51235, "fields": {"permission": 26, "content_type": 9, "object_pk": "22526", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51239, "fields": {"permission": 26, "content_type": 9, "object_pk": "22545", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51241, "fields": {"permission": 26, "content_type": 9, "object_pk": "22558", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 51244, "fields": {"permission": 26, "content_type": 9, "object_pk": "22570", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59098, "fields": {"permission": 26, "content_type": 9, "object_pk": "93025", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59099, "fields": {"permission": 26, "content_type": 9, "object_pk": "93035", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59100, "fields": {"permission": 26, "content_type": 9, "object_pk": "93051", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59102, "fields": {"permission": 26, "content_type": 9, "object_pk": "93060", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59104, "fields": {"permission": 26, "content_type": 9, "object_pk": "93075", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59141, "fields": {"permission": 26, "content_type": 9, "object_pk": "93379", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59143, "fields": {"permission": 26, "content_type": 9, "object_pk": "93397", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59144, "fields": {"permission": 26, "content_type": 9, "object_pk": "93410", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59148, "fields": {"permission": 26, "content_type": 9, "object_pk": "93449", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59158, "fields": {"permission": 26, "content_type": 9, "object_pk": "93562", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59166, "fields": {"permission": 26, "content_type": 9, "object_pk": "93610", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59170, "fields": {"permission": 26, "content_type": 9, "object_pk": "93658", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59174, "fields": {"permission": 26, "content_type": 9, "object_pk": "93715", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59181, "fields": {"permission": 26, "content_type": 9, "object_pk": "93749", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59190, "fields": {"permission": 26, "content_type": 9, "object_pk": "93804", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59192, "fields": {"permission": 26, "content_type": 9, "object_pk": "93855", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59194, "fields": {"permission": 26, "content_type": 9, "object_pk": "93879", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59203, "fields": {"permission": 26, "content_type": 9, "object_pk": "93934", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59205, "fields": {"permission": 26, "content_type": 9, "object_pk": "93937", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59391, "fields": {"permission": 122, "content_type": 41, "object_pk": "99591", "group": 2}}, {"model": "guardian.groupobjectpermission", "pk": 59392, "fields": {"permission": 123, "content_type": 41, "object_pk": "99591", "group": 2}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2016-04-04T13:17:57Z", "user": 11, "content_type": 10, "object_id": "18", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "15", "object_repr": "Ehrenmitglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "14", "object_repr": "Wirkliches Mitglied (w. M.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "13", "object_repr": "Korrespondierendes Mitglied im Ausland (k. M. A.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2016-04-04T13:20:56Z", "user": 11, "content_type": 27, "object_id": "12", "object_repr": "Korrespondierendes Mitglied im Inland (k. M. I.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2016-04-05T15:41:22Z", "user": 11, "content_type": 32, "object_id": "7", "object_repr": "ist Nachfolger von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2016-04-05T15:41:39Z", "user": 11, "content_type": 32, "object_id": "5", "object_repr": "ist Vorg\u00e4nger von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2016-04-05T15:42:02Z", "user": 11, "content_type": 32, "object_id": "8", "object_repr": "ist Teil von", "action_flag": 2, "change_message": "Changed name."}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2016-04-05T15:43:00Z", "user": 11, "content_type": 32, "object_id": "8", "object_repr": "ist Teil von", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2016-04-07T11:10:33Z", "user": 12, "content_type": 4, "object_id": "13", "object_repr": "oebl", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2016-04-07T11:11:00Z", "user": 12, "content_type": 4, "object_id": "13", "object_repr": "oebl", "action_flag": 2, "change_message": "Changed is_staff and user_permissions."}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2016-04-13T15:46:02Z", "user": 12, "content_type": 24, "object_id": "40", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2016-04-14T11:55:13Z", "user": 12, "content_type": 24, "object_id": "50", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2016-04-14T11:55:29Z", "user": 12, "content_type": 24, "object_id": "53", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2016-04-14T12:41:46Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2016-04-15T07:22:05Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2016-04-15T07:22:26Z", "user": 12, "content_type": 25, "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2016-04-18T08:22:56Z", "user": 11, "content_type": 25, "object_id": "105", "object_repr": "ist Vater", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2016-04-18T08:23:07Z", "user": 11, "content_type": 25, "object_id": "106", "object_repr": "hat Vater", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "38", "object_repr": "hat Wirkliches Mitglied (w. M.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "37", "object_repr": "hat Ehrenmitglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "36", "object_repr": "hat Korrespondierendes Mitglied im Ausland (k. M. A.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "35", "object_repr": "hat Korrespondierendes Mitglied im Inland (k. M. I.)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "34", "object_repr": "hat Kuratorstellvertreter(in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "33", "object_repr": "hat Pr\u00e4sident(in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "32", "object_repr": "hat Miglied", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2016-04-18T09:39:43Z", "user": 11, "content_type": 27, "object_id": "31", "object_repr": "hat Obmann/Obfrau", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2016-04-18T11:07:39Z", "user": 12, "content_type": 56, "object_id": "6", "object_repr": "testcollection 18.4", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2016-04-18T11:16:20Z", "user": 12, "content_type": 24, "object_id": "107", "object_repr": "Editlogs", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2016-04-26T09:31:21Z", "user": 12, "content_type": 26, "object_id": "44", "object_repr": "place of death", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2016-04-26T09:31:47Z", "user": 12, "content_type": 26, "object_id": "43", "object_repr": "place of birth", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2016-04-27T10:26:06Z", "user": 12, "content_type": 31, "object_id": "108", "object_repr": "located in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2016-04-28T09:03:10Z", "user": 12, "content_type": 26, "object_id": "109", "object_repr": "studied in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2016-05-02T10:05:25Z", "user": 11, "content_type": 25, "object_id": "100", "object_repr": "family member", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2016-05-02T10:07:16Z", "user": 11, "content_type": 26, "object_id": "44", "object_repr": "died in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2016-05-02T10:07:33Z", "user": 11, "content_type": 26, "object_id": "43", "object_repr": "born in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2016-05-03T09:51:29Z", "user": 12, "content_type": 24, "object_id": "110", "object_repr": "Place accuracy test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2016-05-03T11:01:33Z", "user": 12, "content_type": 40, "object_id": "23993", "object_repr": "Defregger, Franz von (studied in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2016-05-09T08:58:18Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2016-05-09T08:58:25Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2016-05-09T10:07:01Z", "user": 12, "content_type": 24, "object_id": "236", "object_repr": "Place review comments", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2016-05-09T10:10:38Z", "user": 12, "content_type": 24, "object_id": "2", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2016-05-23T07:03:50Z", "user": 12, "content_type": 27, "object_id": "279", "object_repr": "is Vizepr\u00e4sident von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2016-05-23T09:31:15Z", "user": 12, "content_type": 26, "object_id": "237", "object_repr": "wirkte in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "245", "object_repr": "Kind", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "244", "object_repr": "Eltern", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "243", "object_repr": "Vater", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": 12, "content_type": 25, "object_id": "242", "object_repr": "Mutter", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2016-05-25T11:21:38Z", "user": 12, "content_type": 25, "object_id": "421", "object_repr": "Vater/Mutter", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2016-06-06T07:44:47Z", "user": 12, "content_type": 17, "object_id": "459", "object_repr": "Graf", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2016-06-06T07:45:44Z", "user": 12, "content_type": 17, "object_id": "459", "object_repr": "Graf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2016-06-21T09:34:32Z", "user": 12, "content_type": 3, "object_id": "2", "object_repr": "apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2016-06-21T09:34:54Z", "user": 12, "content_type": 4, "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 475, "fields": {"action_time": "2016-06-23T13:50:16Z", "user": 11, "content_type": 25, "object_id": "422", "object_repr": "family member", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 476, "fields": {"action_time": "2016-06-23T13:50:22Z", "user": 11, "content_type": 25, "object_id": "423", "object_repr": "friend", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2016-08-02T08:41:51Z", "user": 12, "content_type": 61, "object_id": "1", "object_repr": "highlight places", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2016-08-02T08:43:38Z", "user": 12, "content_type": 64, "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2016-08-02T08:44:13Z", "user": 12, "content_type": 65, "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2016-08-02T08:45:35Z", "user": 12, "content_type": 70, "object_id": "1", "object_repr": "\u00d6BL Haupttext", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2016-08-02T08:45:50Z", "user": 12, "content_type": 70, "object_id": "2", "object_repr": "\u00d6bl Kurzinfo", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2016-08-02T08:49:51Z", "user": 12, "content_type": 64, "object_id": "2", "object_repr": "Person Institution Form", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2016-08-02T08:50:13Z", "user": 12, "content_type": 65, "object_id": "2", "object_repr": "Person Institution Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2016-08-05T09:01:30Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "KaiserM", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2016-08-05T09:02:10Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "KaiserM", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2016-08-05T09:02:40Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2016-08-05T12:44:55Z", "user": 12, "content_type": 4, "object_id": "15", "object_repr": "JKerschner", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2016-08-05T12:45:10Z", "user": 12, "content_type": 4, "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2016-08-22T14:47:23Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2016-08-22T14:47:41Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2016-08-26T08:00:33Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2016-08-26T08:00:50Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "is_staff, is_superuser und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2016-08-26T08:01:14Z", "user": 12, "content_type": 72, "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2016-08-26T08:01:26Z", "user": 12, "content_type": 72, "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2016-09-05T08:05:05Z", "user": 12, "content_type": 4, "object_id": "18", "object_repr": "CGruber", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2016-09-05T08:05:29Z", "user": 12, "content_type": 4, "object_id": "18", "object_repr": "CGruber", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2016-09-06T10:50:39Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2016-09-06T10:51:00Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2016-09-06T14:33:23Z", "user": 12, "content_type": 25, "object_id": "5608", "object_repr": "undefined", "action_flag": 2, "change_message": "name_reverse ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2016-09-07T10:05:46Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2016-09-07T10:05:53Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2016-09-07T12:36:40Z", "user": 12, "content_type": 24, "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2016-09-07T12:36:55Z", "user": 12, "content_type": 24, "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2016-09-21T09:15:20Z", "user": 12, "content_type": 4, "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2016-09-21T09:15:41Z", "user": 12, "content_type": 4, "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2016-10-03T14:34:28Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2016-10-03T14:34:40Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "is_staff ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2016-10-03T14:34:56Z", "user": 12, "content_type": 3, "object_id": "3", "object_repr": "staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2016-10-03T14:39:11Z", "user": 12, "content_type": 3, "object_id": "3", "object_repr": "staribacher", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2016-10-03T14:39:40Z", "user": 12, "content_type": 56, "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2016-10-03T14:45:29Z", "user": 12, "content_type": 23, "object_id": "5772", "object_repr": "research dataset", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2016-10-03T14:45:47Z", "user": 12, "content_type": 56, "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "collection_type ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2016-10-03T14:47:21Z", "user": 12, "content_type": 72, "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2016-10-06T06:56:20Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2016-10-06T06:56:40Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2016-10-06T06:58:12Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2016-10-06T06:58:30Z", "user": 12, "content_type": 56, "object_id": "17", "object_repr": "Mittelalter 7.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2016-10-06T07:00:34Z", "user": 12, "content_type": 56, "object_id": "16", "object_repr": "\u00d6BL additional import missing XMLs 7.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2016-10-06T07:00:50Z", "user": 12, "content_type": 56, "object_id": "15", "object_repr": "K\u00fcnstlerhaus 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2016-10-06T07:01:03Z", "user": 12, "content_type": 56, "object_id": "11", "object_repr": "Presse 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2016-10-06T07:01:25Z", "user": 12, "content_type": 56, "object_id": "7", "object_repr": "\u00d6BL complete import test 30.8.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2016-10-06T07:01:46Z", "user": 12, "content_type": 56, "object_id": "8", "object_repr": "\u00d6BL additional import 66lfg 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2016-10-06T07:01:55Z", "user": 12, "content_type": 56, "object_id": "9", "object_repr": "\u00d6BL additional import 4online 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2016-10-06T07:31:41Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2016-10-06T07:32:15Z", "user": 12, "content_type": 4, "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2016-10-07T16:13:36Z", "user": 12, "content_type": 4, "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2016-10-07T16:13:56Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2016-10-07T16:14:12Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2016-10-07T16:14:34Z", "user": 12, "content_type": 4, "object_id": "22", "object_repr": "BKrautgartner", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2016-10-12T12:25:02Z", "user": 12, "content_type": 4, "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2016-10-12T12:25:40Z", "user": 12, "content_type": 4, "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2016-10-12T12:27:20Z", "user": 12, "content_type": 72, "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2016-10-14T11:10:59Z", "user": 12, "content_type": 64, "object_id": "3", "object_repr": "Person Person", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2016-10-14T11:12:53Z", "user": 12, "content_type": 65, "object_id": "3", "object_repr": "Person Person Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2016-10-14T11:13:18Z", "user": 12, "content_type": 64, "object_id": "1", "object_repr": "Person Place Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2016-10-14T11:13:24Z", "user": 12, "content_type": 64, "object_id": "3", "object_repr": "Person Person Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2016-10-24T09:04:11Z", "user": 12, "content_type": 4, "object_id": "24", "object_repr": "PRumpolt", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2016-10-24T09:04:27Z", "user": 12, "content_type": 4, "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2016-10-25T10:05:10Z", "user": 12, "content_type": 71, "object_id": "1", "object_repr": "Default", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2016-12-02T15:27:02Z", "user": 12, "content_type": 4, "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 830, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "4", "object_repr": "ggaenser", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 831, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "2", "object_repr": "ghoffmann", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 832, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "7", "object_repr": "imarkova", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 833, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "10", "object_repr": "jfeichtinger", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 834, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "3", "object_repr": "ngoll", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 835, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "6", "object_repr": "rburgstaller", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 836, "fields": {"action_time": "2016-12-20T11:31:20Z", "user": 11, "content_type": 4, "object_id": "5", "object_repr": "sgoellner", "action_flag": 3, "change_message": ""}}] \ No newline at end of file diff --git a/apis_core/apis_entities/fixtures/db_v5.json b/apis_core/apis_entities/fixtures/db_v5.json index 6197401..4b38876 100644 --- a/apis_core/apis_entities/fixtures/db_v5.json +++ b/apis_core/apis_entities/fixtures/db_v5.json @@ -2890,7 +2890,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Opatija", "label_type": 6, "temp_entity": 26 @@ -2900,7 +2900,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Opatija, sr. Rijeka", "label_type": 4, "temp_entity": 26 @@ -2910,7 +2910,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Opatija, sr. Rijeka", "label_type": 4, "temp_entity": 26 @@ -2920,7 +2920,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Zagreb", "label_type": 6, "temp_entity": 133 @@ -2930,7 +2930,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Zagreb", "label_type": 4, "temp_entity": 133 @@ -2940,7 +2940,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Vienna", "label_type": 6, "temp_entity": 183 @@ -2950,7 +2950,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Wien", "label_type": 4, "temp_entity": 183 @@ -2960,7 +2960,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Brno", "label_type": 6, "temp_entity": 327 @@ -2970,7 +2970,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -2980,7 +2980,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Dlouhá Ves, kr. Plzeňský", "label_type": 4, "temp_entity": 384 @@ -2990,7 +2990,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Budapest", "label_type": 6, "temp_entity": 400 @@ -3000,7 +3000,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Budapest", "label_type": 4, "temp_entity": 400 @@ -3010,7 +3010,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Bucharest", "label_type": 6, "temp_entity": 831 @@ -3020,7 +3020,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bucureşti", "label_type": 4, "temp_entity": 831 @@ -3030,7 +3030,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Baden bei Wien", "label_type": 6, "temp_entity": 926 @@ -3040,7 +3040,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Baden", "label_type": 4, "temp_entity": 926 @@ -3050,7 +3050,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Berlin", "label_type": 6, "temp_entity": 1390 @@ -3060,7 +3060,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Berlin", "label_type": 4, "temp_entity": 1390 @@ -3070,7 +3070,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Liberec", "label_type": 6, "temp_entity": 1424 @@ -3080,7 +3080,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Ostašov, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -3090,7 +3090,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bezau", "label_type": 4, "temp_entity": 1454 @@ -3100,7 +3100,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bodensdorf, Bez. Feldkirchen", "label_type": 4, "temp_entity": 1701 @@ -3110,7 +3110,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Heilbronn", "label_type": 6, "temp_entity": 1718 @@ -3120,7 +3120,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Heilbronn", "label_type": 4, "temp_entity": 1718 @@ -3130,7 +3130,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Botoşani", "label_type": 6, "temp_entity": 2006 @@ -3140,7 +3140,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Botoşani", "label_type": 4, "temp_entity": 2006 @@ -3150,7 +3150,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Bratislava", "label_type": 6, "temp_entity": 2072 @@ -3160,7 +3160,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bratislava", "label_type": 4, "temp_entity": 2072 @@ -3170,7 +3170,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bratislava", "label_type": 4, "temp_entity": 2072 @@ -3180,7 +3180,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Broumov", "label_type": 6, "temp_entity": 2085 @@ -3190,7 +3190,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Broumov, kr. Královéhradecký", "label_type": 4, "temp_entity": 2085 @@ -3200,7 +3200,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Broumov, kr. Královéhradecký", "label_type": 4, "temp_entity": 2085 @@ -3210,7 +3210,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Wrocław", "label_type": 6, "temp_entity": 2161 @@ -3220,7 +3220,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Wrocław", "label_type": 4, "temp_entity": 2161 @@ -3230,7 +3230,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Wrocław", "label_type": 4, "temp_entity": 2161 @@ -3240,7 +3240,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Brixen", "label_type": 6, "temp_entity": 2170 @@ -3250,7 +3250,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 2170 @@ -3260,7 +3260,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Hradec Králové", "label_type": 6, "temp_entity": 2197 @@ -3270,7 +3270,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Hradec Králové - Březhrad, kr. Královéhradecký", "label_type": 4, "temp_entity": 2197 @@ -3280,7 +3280,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 2170 @@ -3290,7 +3290,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 2170 @@ -3300,7 +3300,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -3310,7 +3310,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Brody", "label_type": 6, "temp_entity": 2281 @@ -3320,7 +3320,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brody, obl. L'viv", "label_type": 4, "temp_entity": 2281 @@ -3330,7 +3330,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -3340,7 +3340,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -3350,7 +3350,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -3360,7 +3360,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -3370,7 +3370,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Buenos Aires", "label_type": 6, "temp_entity": 2489 @@ -3380,7 +3380,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Buenos Aires", "label_type": 4, "temp_entity": 2489 @@ -3390,7 +3390,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bucureşti", "label_type": 4, "temp_entity": 831 @@ -3400,7 +3400,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bucureşti", "label_type": 4, "temp_entity": 831 @@ -3410,7 +3410,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 2602 @@ -3420,7 +3420,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Chernivtsi", "label_type": 6, "temp_entity": 2854 @@ -3430,7 +3430,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Černivci", "label_type": 4, "temp_entity": 2854 @@ -3440,7 +3440,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Černivci", "label_type": 4, "temp_entity": 2854 @@ -3450,7 +3450,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Cieszyn", "label_type": 6, "temp_entity": 3105 @@ -3460,7 +3460,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Cieszyn, woj. Bielsko", "label_type": 4, "temp_entity": 3105 @@ -3470,7 +3470,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Cluj-Napoca", "label_type": 6, "temp_entity": 3162 @@ -3480,7 +3480,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Cluj-Napoca, jud. Cluj", "label_type": 4, "temp_entity": 3162 @@ -3490,7 +3490,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Černivci", "label_type": 4, "temp_entity": 2854 @@ -3500,7 +3500,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Düren", "label_type": 6, "temp_entity": 4096 @@ -3510,7 +3510,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Düren", "label_type": 4, "temp_entity": 4096 @@ -3520,7 +3520,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Údlice, kr. Ústecký", "label_type": 4, "temp_entity": 4269 @@ -3530,7 +3530,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Graz", "label_type": 6, "temp_entity": 4767 @@ -3540,7 +3540,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Graz", "label_type": 4, "temp_entity": 4767 @@ -3550,7 +3550,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Freistadt", "label_type": 6, "temp_entity": 4877 @@ -3560,7 +3560,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Freistadt", "label_type": 4, "temp_entity": 4877 @@ -3570,7 +3570,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Ghidfalău, jud. Covasna", "label_type": 4, "temp_entity": 5294 @@ -3580,7 +3580,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Marienheide", "label_type": 4, "temp_entity": 5308 @@ -3590,7 +3590,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Gorizia", "label_type": 6, "temp_entity": 5478 @@ -3600,7 +3600,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Gorizia, reg. Friuli - Venezia Giulia", "label_type": 4, "temp_entity": 5478 @@ -3610,7 +3610,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Gorizia, reg. Friuli - Venezia Giulia", "label_type": 4, "temp_entity": 5478 @@ -3620,7 +3620,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Gorizia, reg. Friuli - Venezia Giulia", "label_type": 4, "temp_entity": 5478 @@ -3630,7 +3630,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Merano", "label_type": 6, "temp_entity": 5691 @@ -3640,7 +3640,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -3650,7 +3650,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Grieskirchen", "label_type": 4, "temp_entity": 5749 @@ -3660,7 +3660,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Velké Losiny, kr. Olomoucký", "label_type": 4, "temp_entity": 6004 @@ -3670,7 +3670,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Velké Losiny, kr. Olomoucký", "label_type": 4, "temp_entity": 6004 @@ -3680,7 +3680,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Hanover", "label_type": 6, "temp_entity": 6324 @@ -3690,7 +3690,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Hannover", "label_type": 4, "temp_entity": 6324 @@ -3700,7 +3700,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Innsbruck", "label_type": 6, "temp_entity": 6700 @@ -3710,7 +3710,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Innsbruck", "label_type": 4, "temp_entity": 6700 @@ -3720,7 +3720,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Hrastje, sr. Maribor", "label_type": 4, "temp_entity": 6947 @@ -3730,7 +3730,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Hrastje, sr. Maribor", "label_type": 4, "temp_entity": 6947 @@ -3740,7 +3740,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno - Brno-sever, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -3750,7 +3750,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Jaworzno, woj. Katowice", "label_type": 4, "temp_entity": 7454 @@ -3760,7 +3760,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Leoben", "label_type": 6, "temp_entity": 7622 @@ -3770,7 +3770,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Leoben", "label_type": 4, "temp_entity": 7622 @@ -3780,7 +3780,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 2602 @@ -3790,7 +3790,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 2602 @@ -3800,7 +3800,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Kassel", "label_type": 6, "temp_entity": 7986 @@ -3810,7 +3810,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Kassel", "label_type": 4, "temp_entity": 7986 @@ -3820,7 +3820,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Cluj-Napoca, jud. Cluj", "label_type": 4, "temp_entity": 3162 @@ -3830,7 +3830,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Cluj-Napoca, jud. Cluj", "label_type": 4, "temp_entity": 3162 @@ -3840,7 +3840,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Klosterneuburg", "label_type": 4, "temp_entity": 8482 @@ -3850,7 +3850,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Hradec Králové", "label_type": 4, "temp_entity": 2197 @@ -3860,7 +3860,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Konstanz", "label_type": 6, "temp_entity": 8798 @@ -3870,7 +3870,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Konstanz", "label_type": 4, "temp_entity": 8798 @@ -3880,7 +3880,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Kufstein", "label_type": 6, "temp_entity": 9287 @@ -3890,7 +3890,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Kufstein", "label_type": 4, "temp_entity": 9287 @@ -3900,7 +3900,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Hradec Králové - Kukleny, kr. Královéhradecký", "label_type": 4, "temp_entity": 2197 @@ -3910,7 +3910,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno - Brno-jih, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -3920,7 +3920,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lachovice, kr. Karlovarský", "label_type": 4, "temp_entity": 9455 @@ -3930,7 +3930,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Ljubljana", "label_type": 6, "temp_entity": 9475 @@ -3940,7 +3940,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Ljubljana", "label_type": 4, "temp_entity": 9475 @@ -3950,7 +3950,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Lviv", "label_type": 6, "temp_entity": 9735 @@ -3960,7 +3960,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "L'viv", "label_type": 4, "temp_entity": 9735 @@ -3970,7 +3970,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "L'viv", "label_type": 4, "temp_entity": 9735 @@ -3980,7 +3980,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Linz", "label_type": 6, "temp_entity": 10015 @@ -3990,7 +3990,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Linz", "label_type": 4, "temp_entity": 10015 @@ -4000,7 +4000,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "City of London", "label_type": 6, "temp_entity": 10265 @@ -4010,7 +4010,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "London City", "label_type": 6, "temp_entity": 10265 @@ -4020,7 +4020,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "The City", "label_type": 6, "temp_entity": 10265 @@ -4030,7 +4030,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "London", "label_type": 6, "temp_entity": 10265 @@ -4040,7 +4040,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "London", "label_type": 4, "temp_entity": 10265 @@ -4050,7 +4050,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "L'viv", "label_type": 4, "temp_entity": 9735 @@ -4060,7 +4060,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "L'viv", "label_type": 4, "temp_entity": 9735 @@ -4070,7 +4070,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "L'viv", "label_type": 4, "temp_entity": 9735 @@ -4080,7 +4080,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Vratislavice nad Nisou, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4090,7 +4090,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Vratislavice nad Nisou, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4100,7 +4100,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano - Maia Bassa / Meran-Untermais", "label_type": 4, "temp_entity": 5691 @@ -4110,7 +4110,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Maribor", "label_type": 6, "temp_entity": 10793 @@ -4120,7 +4120,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Maribor", "label_type": 4, "temp_entity": 10793 @@ -4130,7 +4130,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Maribor", "label_type": 4, "temp_entity": 10793 @@ -4140,7 +4140,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Maribor", "label_type": 4, "temp_entity": 10793 @@ -4150,7 +4150,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Maribor", "label_type": 4, "temp_entity": 10793 @@ -4160,7 +4160,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano/Meran, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -4170,7 +4170,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano/Meran, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -4180,7 +4180,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano (Castello di Trautmannsdorf) / Meran (Schloß Trautmannsdorf), reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -4190,7 +4190,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -4200,7 +4200,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano - Maia Bassa / Meran-Untermais", "label_type": 4, "temp_entity": 5691 @@ -4210,7 +4210,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano/Meran, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -4220,7 +4220,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Stříbro, kr. Plzeňský", "label_type": 4, "temp_entity": 11238 @@ -4230,7 +4230,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Moldava, kr. Ústecký", "label_type": 4, "temp_entity": 11556 @@ -4240,7 +4240,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Munich", "label_type": 6, "temp_entity": 11799 @@ -4250,7 +4250,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "München", "label_type": 4, "temp_entity": 11799 @@ -4260,7 +4260,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Nysa", "label_type": 6, "temp_entity": 12211 @@ -4270,7 +4270,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Nysa, woj. Opole", "label_type": 4, "temp_entity": 12211 @@ -4280,7 +4280,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Hradec Králové - Nový Hradec Králové, kr. Královéhradecký", "label_type": 4, "temp_entity": 2197 @@ -4290,7 +4290,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Dolní Hanychov, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4300,7 +4300,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Nice", "label_type": 6, "temp_entity": 12758 @@ -4310,7 +4310,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Nice", "label_type": 4, "temp_entity": 12758 @@ -4320,7 +4320,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno - Brno-jih, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -4330,7 +4330,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Horní Hanychov, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4340,7 +4340,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -4350,7 +4350,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -4360,7 +4360,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Horní Růžodol, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4370,7 +4370,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Brno - Maloměřice-Obřany, kr. Jihomoravský", "label_type": 4, "temp_entity": 327 @@ -4380,7 +4380,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Sopron", "label_type": 6, "temp_entity": 13253 @@ -4390,7 +4390,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Sopron, m. Győr-Moson-Sopron", "label_type": 4, "temp_entity": 13253 @@ -4400,7 +4400,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Olomouc", "label_type": 6, "temp_entity": 13382 @@ -4410,7 +4410,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Olomouc", "label_type": 4, "temp_entity": 13382 @@ -4420,7 +4420,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Olomouc", "label_type": 4, "temp_entity": 13382 @@ -4430,7 +4430,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Olomouc", "label_type": 4, "temp_entity": 13382 @@ -4440,7 +4440,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Olomouc", "label_type": 4, "temp_entity": 13382 @@ -4450,7 +4450,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Paris", "label_type": 6, "temp_entity": 13714 @@ -4460,7 +4460,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Paris", "label_type": 4, "temp_entity": 13714 @@ -4470,7 +4470,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Petting", "label_type": 4, "temp_entity": 13987 @@ -4480,7 +4480,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Prague", "label_type": 6, "temp_entity": 14608 @@ -4490,7 +4490,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Praha", "label_type": 4, "temp_entity": 14608 @@ -4500,7 +4500,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Praha, kr. Hlavní město Praha", "label_type": 4, "temp_entity": 14608 @@ -4510,7 +4510,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Praha", "label_type": 4, "temp_entity": 14608 @@ -4520,7 +4520,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Praha", "label_type": 4, "temp_entity": 14608 @@ -4530,7 +4530,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Praha", "label_type": 4, "temp_entity": 14608 @@ -4540,7 +4540,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bratislava", "label_type": 4, "temp_entity": 2072 @@ -4550,7 +4550,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bratislava", "label_type": 4, "temp_entity": 2072 @@ -4560,7 +4560,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Růžodol I, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4570,7 +4570,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Horní Růžodol, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4580,7 +4580,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Ruprechtice, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4590,7 +4590,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Černivci", "label_type": 4, "temp_entity": 2854 @@ -4600,7 +4600,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Svätý Jur", "label_type": 6, "temp_entity": 16242 @@ -4610,7 +4610,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Svätý Jur, kr. Bratislava", "label_type": 4, "temp_entity": 16242 @@ -4620,7 +4620,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "St. Pankraz", "label_type": 6, "temp_entity": 16310 @@ -4630,7 +4630,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 16310 @@ -4640,7 +4640,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Štíty, kr. Olomoucký", "label_type": 4, "temp_entity": 16594 @@ -4650,7 +4650,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liberec - Krásná Studánka, kr. Liberecký", "label_type": 4, "temp_entity": 1424 @@ -4660,7 +4660,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schwanberg", "label_type": 4, "temp_entity": 16864 @@ -4670,7 +4670,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Wien - Sechshaus", "label_type": 4, "temp_entity": 183 @@ -4680,7 +4680,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Dlouhá Ves, kr. Plzeňský", "label_type": 4, "temp_entity": 384 @@ -4690,7 +4690,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Szczakowa, woj. Katowice", "label_type": 4, "temp_entity": 18374 @@ -4700,7 +4700,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Szeged, m. Csongrád", "label_type": 4, "temp_entity": 18400 @@ -4710,7 +4710,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Cieszyn, woj. Bielsko", "label_type": 4, "temp_entity": 3105 @@ -4720,7 +4720,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Cieszyn, woj. Bielsko", "label_type": 4, "temp_entity": 3105 @@ -4730,7 +4730,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Trento", "label_type": 6, "temp_entity": 19215 @@ -4740,7 +4740,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Trento, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 19215 @@ -4750,7 +4750,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Trento, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 19215 @@ -4760,7 +4760,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Trento, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 19215 @@ -4770,7 +4770,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Trento, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 19215 @@ -4780,7 +4780,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Mojmírovce, kr. Nitra", "label_type": 4, "temp_entity": 19599 @@ -4790,7 +4790,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 2602 @@ -4800,7 +4800,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -4810,7 +4810,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Warsaw", "label_type": 6, "temp_entity": 20549 @@ -4820,7 +4820,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Warszawa", "label_type": 4, "temp_entity": 20549 @@ -4830,7 +4830,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Warszawa", "label_type": 4, "temp_entity": 20549 @@ -4840,7 +4840,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Warszawa", "label_type": 4, "temp_entity": 20549 @@ -4850,7 +4850,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Warszawa", "label_type": 4, "temp_entity": 20549 @@ -4860,7 +4860,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Warszawa", "label_type": 4, "temp_entity": 20549 @@ -4870,7 +4870,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Warszawa", "label_type": 4, "temp_entity": 20549 @@ -4880,7 +4880,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bela Crkva, sr. Pančevo", "label_type": 4, "temp_entity": 20659 @@ -4890,7 +4890,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bad Gastein", "label_type": 4, "temp_entity": 20872 @@ -4900,7 +4900,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Wisborough Green", "label_type": 4, "temp_entity": 20988 @@ -4910,7 +4910,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Wrocław", "label_type": 4, "temp_entity": 2161 @@ -4920,7 +4920,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "L'viv - Znesinnja, obl. L'viv", "label_type": 4, "temp_entity": 9735 @@ -4930,7 +4930,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Svitavy", "label_type": 6, "temp_entity": 21818 @@ -4940,7 +4940,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Svitavy, kr. Pardubický", "label_type": 4, "temp_entity": 21818 @@ -4950,7 +4950,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Jamnitz", "label_type": 4, "temp_entity": 22216 @@ -4960,7 +4960,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Stronach (Lienz)", "label_type": 4, "temp_entity": 22259 @@ -4970,7 +4970,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Nizza", "label_type": 4, "temp_entity": 12758 @@ -4980,7 +4980,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Grünburg", "label_type": 4, "temp_entity": 22322 @@ -4990,7 +4990,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Olten", "label_type": 6, "temp_entity": 22354 @@ -5000,7 +5000,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Olten, Kt. Solothurn", "label_type": 4, "temp_entity": 22354 @@ -5010,7 +5010,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bad Kreuznach", "label_type": 4, "temp_entity": 22475 @@ -5020,7 +5020,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lasberg", "label_type": 4, "temp_entity": 22494 @@ -5030,7 +5030,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Fribourg", "label_type": 6, "temp_entity": 22526 @@ -5040,7 +5040,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Fribourg", "label_type": 4, "temp_entity": 22526 @@ -5050,7 +5050,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bocșa", "label_type": 4, "temp_entity": 22545 @@ -5060,7 +5060,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Ludźmierz", "label_type": 4, "temp_entity": 22558 @@ -5070,7 +5070,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Warszawa, woj. mazowieckie", "label_type": 4, "temp_entity": 20549 @@ -5080,7 +5080,7 @@ }, { "fields": { - "isoCode_639_3": "eng", + "isocode_639_3": "eng", "label": "Vezzano", "label_type": 6, "temp_entity": 22570 @@ -5090,7 +5090,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Vezzano", "label_type": 4, "temp_entity": 22570 @@ -5100,7 +5100,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Thalberg, Sigismund (Fortuné François)", "label_type": 598, "temp_entity": 27245 @@ -5110,7 +5110,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Fortuné François", "label_type": 597, "temp_entity": 27245 @@ -5120,7 +5120,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bratislava, kr. Bratislavský", "label_type": 4, "temp_entity": 2072 @@ -5130,7 +5130,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bressanone/Brixen", "label_type": 4, "temp_entity": 2170 @@ -5140,7 +5140,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Wien (?)", "label_type": 4, "temp_entity": 183 @@ -5150,7 +5150,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bressanone", "label_type": 4, "temp_entity": 2170 @@ -5160,7 +5160,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano/Meran, reg. Trento - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -5170,7 +5170,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Teschen/Těšín/Cieszyn", "label_type": 4, "temp_entity": 3105 @@ -5180,7 +5180,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "?, kr. ?", "label_type": 4, "temp_entity": 14608 @@ -5190,7 +5190,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "label_type": 4, "temp_entity": 5691 @@ -5200,7 +5200,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Ľviv (?)", "label_type": 4, "temp_entity": 9735 @@ -5210,7 +5210,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bratislava (?)", "label_type": 4, "temp_entity": 2072 @@ -5220,7 +5220,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Linz (?)", "label_type": 4, "temp_entity": 10015 @@ -5230,7 +5230,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Gorizia, reg. Friuli-Venezia Giulia", "label_type": 4, "temp_entity": 5478 @@ -5240,7 +5240,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Reicha (Rejcha), Anton (Antonín) Josef", "label_type": 598, "temp_entity": 46414 @@ -5250,7 +5250,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Rejcha", "label_type": 597, "temp_entity": 46414 @@ -5260,7 +5260,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Antonín Josef", "label_type": 597, "temp_entity": 46414 @@ -5270,7 +5270,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Moscheles, Ignaz (Isaak)", "label_type": 598, "temp_entity": 56248 @@ -5280,7 +5280,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Isaak", "label_type": 597, "temp_entity": 56248 @@ -5290,7 +5290,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Gastein", "label_type": 4, "temp_entity": 20872 @@ -5300,7 +5300,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Liszt, Franz von", "label_type": 598, "temp_entity": 62757 @@ -5310,7 +5310,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bressanone/Brixen, reg. Trento - Alto Adige", "label_type": 4, "temp_entity": 2170 @@ -5320,7 +5320,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Praha - Malá Chuchle, kr. Hlavní město Praha", "label_type": 4, "temp_entity": 14608 @@ -5330,7 +5330,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Praha - Horní Počernice, kr. Hlavní město Praha", "label_type": 4, "temp_entity": 14608 @@ -5340,7 +5340,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Szeged", "label_type": 4, "temp_entity": 18400 @@ -5350,7 +5350,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Prag", "label_type": 4, "temp_entity": 14608 @@ -5360,7 +5360,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Blahetka, Marie Leopoldine", "label_type": 598, "temp_entity": 88219 @@ -5370,7 +5370,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Beethoven, Ludwig van", "label_type": 598, "temp_entity": 88902 @@ -5380,7 +5380,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Freiburg/Fribourg", "label_type": 4, "temp_entity": 22526 @@ -5390,7 +5390,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Merano/Meran", "label_type": 4, "temp_entity": 5691 @@ -5400,7 +5400,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Stříbro", "label_type": 4, "temp_entity": 11238 @@ -5410,7 +5410,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bäuerle, Friederike; Ps. Friedrich Horn", "label_type": 598, "temp_entity": 92412 @@ -5420,7 +5420,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Friedrich Horn", "label_type": 430, "temp_entity": 92412 @@ -5430,7 +5430,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "L’viv", "label_type": 4, "temp_entity": 9735 @@ -5440,7 +5440,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Czerny (Černý), Carl", "label_type": 598, "temp_entity": 92603 @@ -5450,7 +5450,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Černý", "label_type": 597, "temp_entity": 92603 @@ -5460,7 +5460,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Bahr, Hermann", "label_type": 598, "temp_entity": 93003 @@ -5470,7 +5470,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Czerny, Adalbert", "label_type": 598, "temp_entity": 93009 @@ -5480,7 +5480,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Czetz, Johann", "label_type": 598, "temp_entity": 93012 @@ -5490,7 +5490,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Czikann, Johann Jakob Heinrich", "label_type": 598, "temp_entity": 93015 @@ -5500,7 +5500,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Clam-Gallas, Eduard Gf.", "label_type": 598, "temp_entity": 93018 @@ -5510,7 +5510,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Clam-Martinic, Heinrich Jaroslav Gf.", "label_type": 598, "temp_entity": 93021 @@ -5520,7 +5520,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Clam-Martinic, Heinrich Gf.", "label_type": 598, "temp_entity": 93024 @@ -5530,7 +5530,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Claus, Karl Friedrich", "label_type": 598, "temp_entity": 93028 @@ -5540,7 +5540,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Conze, Alexander", "label_type": 598, "temp_entity": 93031 @@ -5550,7 +5550,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Costenoble, Karl Ludwig", "label_type": 598, "temp_entity": 93034 @@ -5560,7 +5560,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Čelakovský, Jaromír", "label_type": 598, "temp_entity": 93044 @@ -5570,7 +5570,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Čelakovský, Ladislav", "label_type": 598, "temp_entity": 93047 @@ -5580,7 +5580,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Červený, Václav František", "label_type": 598, "temp_entity": 93050 @@ -5590,7 +5590,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Charlemont, Hugo de", "label_type": 598, "temp_entity": 93056 @@ -5600,7 +5600,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Chlumczanský, Wenzel Leopold von", "label_type": 598, "temp_entity": 93059 @@ -5610,7 +5610,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Dumba, Konstantin Theodor", "label_type": 598, "temp_entity": 93065 @@ -5620,7 +5620,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Doderer, Wilhelm von", "label_type": 598, "temp_entity": 93068 @@ -5630,7 +5630,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Defregger, Franz von", "label_type": 598, "temp_entity": 93071 @@ -5640,7 +5640,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Dengel, Ignaz Philipp", "label_type": 598, "temp_entity": 93074 @@ -5650,7 +5650,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Holovsky, Hilde", "label_type": 598, "temp_entity": 93136 @@ -5660,7 +5660,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lorenz, Heinrich", "label_type": 598, "temp_entity": 93328 @@ -5670,7 +5670,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Löwy, Julius; Ps. Von der Als", "label_type": 598, "temp_entity": 93337 @@ -5680,7 +5680,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Von der Als", "label_type": 430, "temp_entity": 93337 @@ -5690,7 +5690,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lobmeyr, Josef", "label_type": 598, "temp_entity": 93352 @@ -5700,7 +5700,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lichtblau, Adolf; Ps. A. L. Blau", "label_type": 598, "temp_entity": 93366 @@ -5710,7 +5710,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "A. L. Blau", "label_type": 430, "temp_entity": 93366 @@ -5720,7 +5720,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lichtblau, Ludwig", "label_type": 598, "temp_entity": 93369 @@ -5730,7 +5730,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Leitgeb, Hubert", "label_type": 598, "temp_entity": 93378 @@ -5740,7 +5740,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lenhossék, Mihály Ignác von", "label_type": 598, "temp_entity": 93387 @@ -5750,7 +5750,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lefler, Heinrich", "label_type": 598, "temp_entity": 93393 @@ -5760,7 +5760,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Leichter, Käthe; geb. Pick", "label_type": 598, "temp_entity": 93396 @@ -5770,7 +5770,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Pick", "label_type": 612, "temp_entity": 93396 @@ -5780,7 +5780,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Leidesdorf, Franz; Ps. Wallner", "label_type": 598, "temp_entity": 93400 @@ -5790,7 +5790,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Wallner", "label_type": 430, "temp_entity": 93400 @@ -5800,7 +5800,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Lapaine, Valentin", "label_type": 598, "temp_entity": 93409 @@ -5810,7 +5810,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "label_type": 598, "temp_entity": 93415 @@ -5820,7 +5820,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Suida und Langer", "label_type": 606, "temp_entity": 93415 @@ -5830,7 +5830,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Müller, Wolf Johannes", "label_type": 598, "temp_entity": 93418 @@ -5840,7 +5840,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Mörl, Maria Theresia von", "label_type": 598, "temp_entity": 93442 @@ -5850,7 +5850,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Millosicz, Georg Frh. von", "label_type": 598, "temp_entity": 93445 @@ -5860,7 +5860,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Miklosich, Franz von", "label_type": 598, "temp_entity": 93448 @@ -5870,7 +5870,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Meithner, Karl", "label_type": 598, "temp_entity": 93469 @@ -5880,7 +5880,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Margulies, Berl", "label_type": 598, "temp_entity": 93481 @@ -5890,7 +5890,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Mánesová, Amalie", "label_type": 598, "temp_entity": 93484 @@ -5900,7 +5900,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Mánes, Quido", "label_type": 598, "temp_entity": 93487 @@ -5910,7 +5910,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Mayer, Karl", "label_type": 598, "temp_entity": 93510 @@ -5920,7 +5920,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "label_type": 598, "temp_entity": 93513 @@ -5930,7 +5930,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Ritter von Alpenburg", "label_type": 430, "temp_entity": 93513 @@ -5940,7 +5940,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Nováček, Rudolf", "label_type": 598, "temp_entity": 93516 @@ -5950,7 +5950,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Ortmann, Rudolf", "label_type": 598, "temp_entity": 93540 @@ -5960,7 +5960,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Oellacher, Josef", "label_type": 598, "temp_entity": 93546 @@ -5970,7 +5970,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Poljanec, Leopold", "label_type": 598, "temp_entity": 93561 @@ -5980,7 +5980,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Petzold, Emil", "label_type": 598, "temp_entity": 93573 @@ -5990,7 +5990,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Peithner von Lichtenfels, Eduard", "label_type": 598, "temp_entity": 93588 @@ -6000,7 +6000,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Patera, Adolf", "label_type": 598, "temp_entity": 93600 @@ -6010,7 +6010,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Rumpler, Matthias", "label_type": 598, "temp_entity": 93609 @@ -6020,7 +6020,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Rotter, Johann (Hans)", "label_type": 598, "temp_entity": 93615 @@ -6030,7 +6030,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Hans", "label_type": 597, "temp_entity": 93615 @@ -6040,7 +6040,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Revertera von Salandra, Friedrich Gf.", "label_type": 598, "temp_entity": 93639 @@ -6050,7 +6050,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Reichenberger, Andreas", "label_type": 598, "temp_entity": 93642 @@ -6060,7 +6060,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Reiser, Othmar", "label_type": 598, "temp_entity": 93645 @@ -6070,7 +6070,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Randa, Maximilian von", "label_type": 598, "temp_entity": 93651 @@ -6080,7 +6080,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Radakovič, Michael", "label_type": 598, "temp_entity": 93654 @@ -6090,7 +6090,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Szigligeti, Ede (Edvárd); bis 1834 József Szathmáry", "label_type": 598, "temp_entity": 93657 @@ -6100,7 +6100,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Edvárd", "label_type": 597, "temp_entity": 93657 @@ -6110,7 +6110,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": " bis 1834 József Szathmáry", "label_type": 653, "temp_entity": 93657 @@ -6120,7 +6120,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Szurmay von Uzsok, Sándor (Alexander) Frh.", "label_type": 598, "temp_entity": 93663 @@ -6130,7 +6130,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Alexander Frh.", "label_type": 597, "temp_entity": 93663 @@ -6140,7 +6140,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Stülz, Jodok", "label_type": 598, "temp_entity": 93678 @@ -6150,7 +6150,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Stowasser, Otto Hellmuth", "label_type": 598, "temp_entity": 93684 @@ -6160,7 +6160,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Steindler, Olga; verehel. Ehrenhaft-S.", "label_type": 598, "temp_entity": 93702 @@ -6170,7 +6170,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Ehrenhaft-S.", "label_type": 606, "temp_entity": 93702 @@ -6180,7 +6180,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "label_type": 598, "temp_entity": 93705 @@ -6190,7 +6190,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Ernest Edward Aurel", "label_type": 597, "temp_entity": 93705 @@ -6200,7 +6200,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Gottlieb Hellseher", "label_type": 430, "temp_entity": 93705 @@ -6210,7 +6210,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Stariha, Janez Nep.", "label_type": 598, "temp_entity": 93714 @@ -6220,7 +6220,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Šnjarić, Lukas", "label_type": 598, "temp_entity": 93748 @@ -6230,7 +6230,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Sichulski, Kazimierz", "label_type": 598, "temp_entity": 93779 @@ -6240,7 +6240,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Settari, Wilhelm Anton Maria", "label_type": 598, "temp_entity": 93785 @@ -6250,7 +6250,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Sehnal, Eugen", "label_type": 598, "temp_entity": 93791 @@ -6260,7 +6260,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schwartz, P. Anton Maria", "label_type": 598, "temp_entity": 93800 @@ -6270,7 +6270,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schwarz, Johann", "label_type": 598, "temp_entity": 93803 @@ -6280,7 +6280,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schwarz, Kaspar", "label_type": 598, "temp_entity": 93809 @@ -6290,7 +6290,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schweitzer, Leopold Albrecht", "label_type": 598, "temp_entity": 93815 @@ -6300,7 +6300,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schwabl, Franz", "label_type": 598, "temp_entity": 93818 @@ -6310,7 +6310,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schuëcker, Edmund; eigentl. Schuöcker", "label_type": 598, "temp_entity": 93836 @@ -6320,7 +6320,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schuöcker", "label_type": 597, "temp_entity": 93836 @@ -6330,7 +6330,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schrödl, Leopold", "label_type": 598, "temp_entity": 93839 @@ -6340,7 +6340,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schreyer, Johann", "label_type": 598, "temp_entity": 93854 @@ -6350,7 +6350,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Scholz, Franz", "label_type": 598, "temp_entity": 93863 @@ -6360,7 +6360,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schrammel, Johann", "label_type": 598, "temp_entity": 93866 @@ -6370,7 +6370,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Scholl, Joseph", "label_type": 598, "temp_entity": 93878 @@ -6380,7 +6380,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schönberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "label_type": 598, "temp_entity": 93891 @@ -6390,7 +6390,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schoenberger", "label_type": 597, "temp_entity": 93891 @@ -6400,7 +6400,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Carl Friedrich Frh. von", "label_type": 597, "temp_entity": 93891 @@ -6410,7 +6410,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schönberger, Benno", "label_type": 598, "temp_entity": 93894 @@ -6420,7 +6420,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schnitzler, Julius", "label_type": 598, "temp_entity": 93900 @@ -6430,7 +6430,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schober, Alfred", "label_type": 598, "temp_entity": 93903 @@ -6440,7 +6440,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schoeller, Gustav Adolph von", "label_type": 598, "temp_entity": 93909 @@ -6450,7 +6450,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schmutzler, Leopold", "label_type": 598, "temp_entity": 93921 @@ -6460,7 +6460,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schmidt, Joseph", "label_type": 598, "temp_entity": 93933 @@ -6470,7 +6470,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schmidt, Anton", "label_type": 598, "temp_entity": 93940 @@ -6480,7 +6480,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schmal, Johannes Adolf", "label_type": 598, "temp_entity": 93946 @@ -6490,7 +6490,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schmidt-Beauchez, Louis", "label_type": 598, "temp_entity": 93955 @@ -6500,7 +6500,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schindler, Josef", "label_type": 598, "temp_entity": 93958 @@ -6510,7 +6510,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Scheu, Josef Franz Georg", "label_type": 598, "temp_entity": 93961 @@ -6520,7 +6520,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schikaneder, Jakub", "label_type": 598, "temp_entity": 93964 @@ -6530,7 +6530,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schell, Karl", "label_type": 598, "temp_entity": 93967 @@ -6540,7 +6540,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Schenk, Samuel Leopold", "label_type": 598, "temp_entity": 93970 @@ -6550,7 +6550,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Tölgyessy, Artúr", "label_type": 598, "temp_entity": 93988 @@ -6560,7 +6560,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Thun und Hohenstein, Emanuel Maria Gf. von", "label_type": 598, "temp_entity": 93991 @@ -6570,7 +6570,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "label_type": 598, "temp_entity": 94003 @@ -6580,7 +6580,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Kluger Frh. von Teschenberg Ernst", "label_type": 597, "temp_entity": 94003 @@ -6590,7 +6590,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "label_type": 598, "temp_entity": 94006 @@ -6600,7 +6600,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Przerwa-Tetmajer", "label_type": 597, "temp_entity": 94006 @@ -6610,7 +6610,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Teuber, Emmerich (genannt Imre)", "label_type": 598, "temp_entity": 94009 @@ -6620,7 +6620,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "genannt Imre", "label_type": 597, "temp_entity": 94009 @@ -6630,7 +6630,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "label_type": 598, "temp_entity": 94018 @@ -6640,7 +6640,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Richard Denemy", "label_type": 597, "temp_entity": 94018 @@ -6650,7 +6650,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": " ab 1913 Denemy-Tauber", "label_type": 597, "temp_entity": 94018 @@ -6660,7 +6660,7 @@ }, { "fields": { - "isoCode_639_3": "deu", + "isocode_639_3": "deu", "label": "Laibach", "label_type": 6, "temp_entity": 9475 diff --git a/apis_core/apis_entities/fixtures/fixtures_3_5_17.json b/apis_core/apis_entities/fixtures/fixtures_3_5_17.json index 902c135..4397125 100644 --- a/apis_core/apis_entities/fixtures/fixtures_3_5_17.json +++ b/apis_core/apis_entities/fixtures/fixtures_3_5_17.json @@ -1 +1 @@ -[{"model": "contenttypes.contenttype", "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "labels", "model": "label"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "person"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "place"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "event"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "work"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "project"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "annotation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "vocabularyapi"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "menuentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "reversion", "model": "version"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "uricandidate"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "texthigh"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "annotationproject"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "authtoken", "model": "token"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "guardian", "model": "userobjectpermission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "guardian", "model": "groupobjectpermission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutionworkrelation"}}, {"model": "sessions.session", "pk": "0952nbb3skn1yipximadakv8bg67u2fm", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-21T15:56:15Z"}}, {"model": "sessions.session", "pk": "0ffzd5j8mj2loz7w9o63ti2vg63isgsj", "fields": {"session_data": "YjQzM2RhNWQwMjIyMjcyYWJhYTVhZjUxMWI0MjA3ZjdlYTkxMTIwYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-04-24T09:00:32Z"}}, {"model": "sessions.session", "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-12T09:16:06Z"}}, {"model": "sessions.session", "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-26T10:05:04Z"}}, {"model": "sessions.session", "pk": "0pb9zfbqg68p8dkf9il8yd1nfnet4hou", "fields": {"session_data": "YzMwNGIyNGIyYmFmNTJhZWQwZTY3YjQ2MDRmMTlmZDJmZjE5YTFlNzp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNiJdfQ==", "expire_date": "2017-05-12T11:29:11Z"}}, {"model": "sessions.session", "pk": "0yj2f7pv56w61lazsa2btsyfl3vj5ggj", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-04-18T19:28:03Z"}}, {"model": "sessions.session", "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-28T09:36:22Z"}}, {"model": "sessions.session", "pk": "17188fqkhwwemz91phd0gdgifcpuw531", "fields": {"session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==", "expire_date": "2016-12-23T14:35:05Z"}}, {"model": "sessions.session", "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn", "fields": {"session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9", "expire_date": "2016-11-10T13:45:57Z"}}, {"model": "sessions.session", "pk": "1iccsxivof263x10kvzx24cpvfuisbsi", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T10:09:36Z"}}, {"model": "sessions.session", "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T08:25:02Z"}}, {"model": "sessions.session", "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-03T06:28:05Z"}}, {"model": "sessions.session", "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-29T09:34:16Z"}}, {"model": "sessions.session", "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-17T10:44:53Z"}}, {"model": "sessions.session", "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T13:49:39Z"}}, {"model": "sessions.session", "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:08:50Z"}}, {"model": "sessions.session", "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-10T08:17:25Z"}}, {"model": "sessions.session", "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-26T14:15:06Z"}}, {"model": "sessions.session", "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:51:31Z"}}, {"model": "sessions.session", "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T13:15:39Z"}}, {"model": "sessions.session", "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-13T08:50:52Z"}}, {"model": "sessions.session", "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T15:43:29Z"}}, {"model": "sessions.session", "pk": "3f0z4r7zm0tht811km9py85tymlqp00t", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T16:42:42Z"}}, {"model": "sessions.session", "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T12:37:18Z"}}, {"model": "sessions.session", "pk": "3jko01lpmo2mga91cswnbozalltzmk3y", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-04T09:48:21Z"}}, {"model": "sessions.session", "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T07:40:34Z"}}, {"model": "sessions.session", "pk": "3rxj3sq56irbv3dsa6p238v3yni8or63", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-02-06T12:38:47Z"}}, {"model": "sessions.session", "pk": "418j45avvq5u7hb2a25lbny53jbpvs07", "fields": {"session_data": "ZmMxNjFlMmE4YWYyODI5NTk4MTJkMmQ1N2YwYjRiNjI1NWMwZDE4Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCIsIl9hdXRoX3VzZXJfaWQiOiIxNCJ9", "expire_date": "2017-01-03T15:38:05Z"}}, {"model": "sessions.session", "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-05-12T13:36:05Z"}}, {"model": "sessions.session", "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T09:34:31Z"}}, {"model": "sessions.session", "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:28:30Z"}}, {"model": "sessions.session", "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-08T08:03:34Z"}}, {"model": "sessions.session", "pk": "4n2qt23rcidnpg4kzgkda4kpex4lmfa5", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-24T13:31:41Z"}}, {"model": "sessions.session", "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-16T15:23:26Z"}}, {"model": "sessions.session", "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-26T16:58:24Z"}}, {"model": "sessions.session", "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a", "fields": {"session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=", "expire_date": "2016-03-28T08:35:56Z"}}, {"model": "sessions.session", "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:15:48Z"}}, {"model": "sessions.session", "pk": "530ad4x705b6e19mkq2p46a9hvib918m", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T10:26:56Z"}}, {"model": "sessions.session", "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-20T13:12:52Z"}}, {"model": "sessions.session", "pk": "59gq2d5fuwt2524677c8asdzlx2hnwre", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-03-24T09:19:20Z"}}, {"model": "sessions.session", "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-25T10:51:39Z"}}, {"model": "sessions.session", "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw", "fields": {"session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2016-12-29T15:38:59Z"}}, {"model": "sessions.session", "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-21T14:12:41Z"}}, {"model": "sessions.session", "pk": "5s6tkp2xjydwbep1z8iuavyf6dhbdnq9", "fields": {"session_data": "OTliNDY0YWRlNmUwOTVkOWJjNDExNDViOTBlNjFhOTZiNzkwY2JjZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjExIiwiMTAiLCI4IiwiOSIsIjEyIiwiNTEiLCI1MiIsIjQ2IiwiNDQiLCI0NSIsIjQ3IiwiNDIiLCI0MSIsIjM5IiwiNDAiLCI0MyIsIjQ5IiwiNDgiLCI1MCIsIjUzIl0sIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJhbm5vdGF0aW9uX3Byb2plY3QiOiIzIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCJdfQ==", "expire_date": "2017-04-17T10:46:44Z"}}, {"model": "sessions.session", "pk": "5vhcdmzs9c58duuxf2jky7fpdzqoz1lo", "fields": {"session_data": "ZjVjNjVmZWI5ZjE2YzU2MDViNTEzNmUxZWE0YTlhMmIzYzA5OWRmOTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCIsIl9hdXRoX3VzZXJfaWQiOiIyMyJ9", "expire_date": "2017-01-25T10:00:14Z"}}, {"model": "sessions.session", "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:22:04Z"}}, {"model": "sessions.session", "pk": "62u81vaiix78ydua95lqixfyi1d6jt1p", "fields": {"session_data": "NDJlMDI4MjUxM2I1OTVlMGY1YzZjNzc2MzE3ZjRhNTJhZGU2M2E4Mzp7InVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMTQiXSwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjQwIl0sImFubm90YXRpb25fcHJvamVjdCI6bnVsbH0=", "expire_date": "2017-04-20T08:35:44Z"}}, {"model": "sessions.session", "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-09T08:10:25Z"}}, {"model": "sessions.session", "pk": "6k16reryrvgvlux4peggv2dwnpdw018v", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-08-26T11:22:37Z"}}, {"model": "sessions.session", "pk": "6konr8g4jk3afgamkyg7p5uqq3ripype", "fields": {"session_data": "Njk3OWQwMDIzM2FmOTQyZjMyN2IzNDU2OTk5Y2Y1MDE2MWVjMDdhYTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiYW5ub3RhdGlvbl9wcm9qZWN0IjoiNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiJ9", "expire_date": "2017-02-20T11:14:29Z"}}, {"model": "sessions.session", "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429", "fields": {"session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T12:26:52Z"}}, {"model": "sessions.session", "pk": "74su7asx1chf5ug62fj4hitwaljxgkiz", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T10:59:37Z"}}, {"model": "sessions.session", "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T10:37:41Z"}}, {"model": "sessions.session", "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-08T10:43:50Z"}}, {"model": "sessions.session", "pk": "7c01s688teucprvj9wuoiuebtl8bff2d", "fields": {"session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-21T11:56:57Z"}}, {"model": "sessions.session", "pk": "7d7gd01ktm8aijqa17q84vq301a6ybus", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-17T14:27:57Z"}}, {"model": "sessions.session", "pk": "7r7v7jo8il027rwdvu3dea9lp9vg24bp", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T09:46:56Z"}}, {"model": "sessions.session", "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T11:41:48Z"}}, {"model": "sessions.session", "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-17T10:07:28Z"}}, {"model": "sessions.session", "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-06-21T12:35:35Z"}}, {"model": "sessions.session", "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T11:46:41Z"}}, {"model": "sessions.session", "pk": "8unallqs0trfk7pzslbcijnjx8j9721c", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-15T18:47:12Z"}}, {"model": "sessions.session", "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-12-14T16:16:28Z"}}, {"model": "sessions.session", "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-31T10:09:32Z"}}, {"model": "sessions.session", "pk": "8z8im2wcfj9tfbvvwixxbclbliyp6dwm", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T08:39:53Z"}}, {"model": "sessions.session", "pk": "9bc9ii4wa0d168dmatgrlqysta0wd3x8", "fields": {"session_data": "ZTlhMDFkMWVmYjNiMmYxNjU2ZDI5ODc1MDNhN2FkNjM1YjdmMDQ3NDp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-19T17:06:27Z"}}, {"model": "sessions.session", "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-12T08:26:15Z"}}, {"model": "sessions.session", "pk": "9mf1xzu1346ss0edpll2dwougyoippqv", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-01-02T13:44:56Z"}}, {"model": "sessions.session", "pk": "9nmr133amdnyjvxlc5fdq6vuul0kmm7d", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-22T09:52:23Z"}}, {"model": "sessions.session", "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-07T09:00:09Z"}}, {"model": "sessions.session", "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-11T11:10:15Z"}}, {"model": "sessions.session", "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg", "fields": {"session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2017-01-03T09:23:20Z"}}, {"model": "sessions.session", "pk": "9yu7ogy7fe8ci49tr7ohwnom17f93e8w", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-10T13:19:29Z"}}, {"model": "sessions.session", "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T14:19:29Z"}}, {"model": "sessions.session", "pk": "a3w6oc0o9czm37r9fp1w34sujjamhfko", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-03-25T09:43:24Z"}}, {"model": "sessions.session", "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-04T08:02:47Z"}}, {"model": "sessions.session", "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-20T19:21:08Z"}}, {"model": "sessions.session", "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T11:54:57Z"}}, {"model": "sessions.session", "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T07:44:25Z"}}, {"model": "sessions.session", "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T12:01:50Z"}}, {"model": "sessions.session", "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T09:47:15Z"}}, {"model": "sessions.session", "pk": "c0mebo725euvitftiukwfw6dxip0koqs", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-21T08:38:04Z"}}, {"model": "sessions.session", "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:30:05Z"}}, {"model": "sessions.session", "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-10-19T15:55:59Z"}}, {"model": "sessions.session", "pk": "ccvhxts0xm4i007yj124auwtm1102ylc", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-30T11:48:28Z"}}, {"model": "sessions.session", "pk": "ck8xdgdkdqqgbfraxhpe5w78rluhcqdb", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2017-04-11T21:35:09Z"}}, {"model": "sessions.session", "pk": "co8qi0mvm1x1zwcfmd6lw0xe9n0exs2h", "fields": {"session_data": "Nzc0ZGRlY2UzNDMyNGNhOTVjZmMyMTkwMDA0ZDhjMmE3ZDFkYmVlNDp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMSIsIjExIiwiMTIiLCIxMyIsIjE0IiwiMTUiLCIxNiIsIjE3IiwiMTgiLCIxOSIsIjIwIiwiMjEiLCIyMiIsIjIzIiwiMjQiLCIyNSJdLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-26T10:55:04Z"}}, {"model": "sessions.session", "pk": "cyjaej15ap3vpirmuoxvua3ayv13l51w", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-16T13:01:23Z"}}, {"model": "sessions.session", "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T07:52:18Z"}}, {"model": "sessions.session", "pk": "d1e3bc2mhdeaq4zehswfyi3yrz1pzkle", "fields": {"session_data": "MWU1N2QyOThmZDA0NDI1ZTI1ZWUyNzVmMTkyMmEyNWIzYmRmYjQ4NDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjExIiwiMTAiLCI4IiwiOSIsIjEyIiwiNTEiLCI1MiIsIjQ2IiwiNDQiLCI0NSIsIjQ3IiwiNDIiLCI0MSIsIjM5IiwiNDAiLCI0MyIsIjQ5IiwiNDgiLCI1MCIsIjUzIl0sIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJhbm5vdGF0aW9uX3Byb2plY3QiOiIzIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCJdfQ==", "expire_date": "2017-04-11T15:45:48Z"}}, {"model": "sessions.session", "pk": "d3ui57peh8haq74stm30y2og6mlzls1b", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-05-09T05:33:01Z"}}, {"model": "sessions.session", "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-11-07T12:37:20Z"}}, {"model": "sessions.session", "pk": "d7lbdggp0zfcu6b1lfo027oi4zk2z2si", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-03-28T19:52:26Z"}}, {"model": "sessions.session", "pk": "da9ald43zlct5w8wjy2jer4uuw1me508", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T07:57:42Z"}}, {"model": "sessions.session", "pk": "dcscnejfbv3a961j405abjewr5xb7vhi", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2017-03-23T14:08:27Z"}}, {"model": "sessions.session", "pk": "dfzo1j1p9og5ckpnj773q0bn2eehhovi", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-14T15:13:03Z"}}, {"model": "sessions.session", "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-12T19:05:43Z"}}, {"model": "sessions.session", "pk": "di0u7jcqjsh3ytgb3zllprdujmo1za2f", "fields": {"session_data": "NjUwNDUxOTE3MjM4YjNjZDVjMGJlMTA4Y2YwODViNDlkNmRkNjhhZDp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-03-15T20:40:41Z"}}, {"model": "sessions.session", "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T14:05:09Z"}}, {"model": "sessions.session", "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T08:00:35Z"}}, {"model": "sessions.session", "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-16T13:41:51Z"}}, {"model": "sessions.session", "pk": "dqj5jfcpqu0usn7e65drhcizg79ci63o", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-03T11:00:01Z"}}, {"model": "sessions.session", "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T10:15:28Z"}}, {"model": "sessions.session", "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T08:42:22Z"}}, {"model": "sessions.session", "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y", "fields": {"session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-14T11:11:40Z"}}, {"model": "sessions.session", "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-14T14:53:54Z"}}, {"model": "sessions.session", "pk": "erwufifibov75oo9c5uklkwh5itqskcj", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-27T09:07:15Z"}}, {"model": "sessions.session", "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-21T15:40:51Z"}}, {"model": "sessions.session", "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-10-26T12:38:51Z"}}, {"model": "sessions.session", "pk": "fwapxlyzximbjixj3zubqvnzfklnp5ui", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-05-06T07:40:53Z"}}, {"model": "sessions.session", "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:23Z"}}, {"model": "sessions.session", "pk": "g6nyqamxt80gdy5kh21zw4lix7reinpa", "fields": {"session_data": "YzQ3ZDViYzg3NzYwMjE3YzQwN2RkNDUyNmY2YmIzMWU0MGRjYzBkMTp7ImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-04-25T19:43:56Z"}}, {"model": "sessions.session", "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-06-08T11:35:30Z"}}, {"model": "sessions.session", "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-06-07T13:29:28Z"}}, {"model": "sessions.session", "pk": "gi62wdj66c5j78be7q372m29mv6gdora", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-28T08:16:12Z"}}, {"model": "sessions.session", "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-21T07:03:28Z"}}, {"model": "sessions.session", "pk": "gjuve267k4260hvyils2ls2496ak9z37", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T17:18:28Z"}}, {"model": "sessions.session", "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T07:59:21Z"}}, {"model": "sessions.session", "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-05T14:43:01Z"}}, {"model": "sessions.session", "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-24T08:40:28Z"}}, {"model": "sessions.session", "pk": "hh8sk14s36jb19j341qt4njqf8axfoax", "fields": {"session_data": "NWE4N2QwNWU1NDYyYjg1NDcxZDA3NTJlOGI5MDE3MDA3MjUyYjc5ZDp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2lkIjoiMjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-23T11:30:54Z"}}, {"model": "sessions.session", "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-16T08:59:39Z"}}, {"model": "sessions.session", "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-30T09:46:34Z"}}, {"model": "sessions.session", "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it", "fields": {"session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9", "expire_date": "2016-09-19T08:08:24Z"}}, {"model": "sessions.session", "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-20T06:13:45Z"}}, {"model": "sessions.session", "pk": "i26kpen4zhq9i2bg1leggk8eqgqt9k25", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-31T08:05:35Z"}}, {"model": "sessions.session", "pk": "i2vj2k3r6l6d190imgsx6bmhee8y6qx3", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T10:03:41Z"}}, {"model": "sessions.session", "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-31T14:52:42Z"}}, {"model": "sessions.session", "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T08:07:45Z"}}, {"model": "sessions.session", "pk": "i9or8sunzfkfo0ii06lqjduyf002njo4", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-04-25T11:07:58Z"}}, {"model": "sessions.session", "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-15T11:14:21Z"}}, {"model": "sessions.session", "pk": "imakeqah5lviaceijxe33lnovxbek8nu", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T16:03:56Z"}}, {"model": "sessions.session", "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-06T07:28:47Z"}}, {"model": "sessions.session", "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T13:05:08Z"}}, {"model": "sessions.session", "pk": "jf5t2tpi8u48cb3sjwrkxzy2lgohxd6p", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2017-04-17T15:51:41Z"}}, {"model": "sessions.session", "pk": "jggki1po013fup2njbdxstv7ah1hh6r9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2017-05-09T09:48:53Z"}}, {"model": "sessions.session", "pk": "jghkwi5l48e732l6senbb027s7ww69fb", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T09:49:32Z"}}, {"model": "sessions.session", "pk": "jnairlw3ayhs0yzyma48fx0r64ls41fz", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-22T11:04:12Z"}}, {"model": "sessions.session", "pk": "k9p2trwa60tikg4o4jy36c4dsdqnr95y", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-13T20:23:57Z"}}, {"model": "sessions.session", "pk": "ka3msywv1o7njsbgs3q2631094nuqclo", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-19T15:12:15Z"}}, {"model": "sessions.session", "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-05-31T10:05:18Z"}}, {"model": "sessions.session", "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-23T05:35:47Z"}}, {"model": "sessions.session", "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec", "fields": {"session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-30T19:29:46Z"}}, {"model": "sessions.session", "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-25T15:37:43Z"}}, {"model": "sessions.session", "pk": "knqvpsn88en5yygqemcw6edtg2jt8249", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T09:44:34Z"}}, {"model": "sessions.session", "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T06:27:59Z"}}, {"model": "sessions.session", "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:21:45Z"}}, {"model": "sessions.session", "pk": "le4a8wynksh1utfu4n5kz3o0tky32990", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-14T11:45:48Z"}}, {"model": "sessions.session", "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-01T14:58:57Z"}}, {"model": "sessions.session", "pk": "lvl28l9wwgox84fgmt2kpb4a60ij51vx", "fields": {"session_data": "ZWM2ZTllYjgyOTRjNjBmZTkzOWE3MjAxMzUyZDZkNzM2YjY3MTA3ZTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDhiOTU5YzYwY2ZlZDMyMmJmOTMxZmI4N2NjNDUxYTI5MzcyYmEwYSIsIl9hdXRoX3VzZXJfaWQiOiIyNSJ9", "expire_date": "2017-05-10T10:57:32Z"}}, {"model": "sessions.session", "pk": "m0v3nvlvl72v79ukvd2gfqckcgrysfjj", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-29T08:31:18Z"}}, {"model": "sessions.session", "pk": "m29eu76tn65wjyl62eru1klc0a3q8unp", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2017-04-04T14:34:25Z"}}, {"model": "sessions.session", "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-04T13:24:20Z"}}, {"model": "sessions.session", "pk": "m787xp45lpgoa269n6728z0b37p8iy1q", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:28:33Z"}}, {"model": "sessions.session", "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-19T19:17:17Z"}}, {"model": "sessions.session", "pk": "mhhkuwiygxn5m2io9ve354my9krv1jca", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T09:59:03Z"}}, {"model": "sessions.session", "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-23T16:20:25Z"}}, {"model": "sessions.session", "pk": "mp1bm60zuig6o6nui37vmxq35b9nvvcr", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-19T10:58:38Z"}}, {"model": "sessions.session", "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-23T13:26:40Z"}}, {"model": "sessions.session", "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-16T10:14:08Z"}}, {"model": "sessions.session", "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-09-14T14:54:12Z"}}, {"model": "sessions.session", "pk": "na5u7one7ewv6lwwskjw4fhd1l3nfcmn", "fields": {"session_data": "ZTlhMDFkMWVmYjNiMmYxNjU2ZDI5ODc1MDNhN2FkNjM1YjdmMDQ3NDp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-20T13:29:54Z"}}, {"model": "sessions.session", "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-22T15:22:58Z"}}, {"model": "sessions.session", "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg", "fields": {"session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=", "expire_date": "2016-04-11T20:27:35Z"}}, {"model": "sessions.session", "pk": "nry5t3cx23bpuh15iy7r4tokakqmj29v", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-23T16:10:09Z"}}, {"model": "sessions.session", "pk": "nswul70gr80dq4qwgs4di508w00uud6b", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-08T10:15:12Z"}}, {"model": "sessions.session", "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-08-24T09:07:00Z"}}, {"model": "sessions.session", "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T10:17:31Z"}}, {"model": "sessions.session", "pk": "odorbcaogkfzuupexk2zyze0ewnene46", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-08T10:29:46Z"}}, {"model": "sessions.session", "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T07:40:16Z"}}, {"model": "sessions.session", "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:49:30Z"}}, {"model": "sessions.session", "pk": "orhni0ej87m2aun2d9z9xz4c1l1lmjym", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-10T10:03:12Z"}}, {"model": "sessions.session", "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-16T07:07:44Z"}}, {"model": "sessions.session", "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T11:53:13Z"}}, {"model": "sessions.session", "pk": "ppjcwurra6scll78pl3bs269eab3nz90", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-18T21:10:11Z"}}, {"model": "sessions.session", "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf", "fields": {"session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==", "expire_date": "2016-11-24T11:13:28Z"}}, {"model": "sessions.session", "pk": "pu9debzitlp5h2npgzacuzevp3prl6d2", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T15:59:42Z"}}, {"model": "sessions.session", "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-18T11:48:29Z"}}, {"model": "sessions.session", "pk": "qd6glndlpk5s53d9azcl8m970xzp7qr7", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-04T20:54:03Z"}}, {"model": "sessions.session", "pk": "qi66ci58ybleptvfa4qenkhecsabekut", "fields": {"session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-03-28T14:27:50Z"}}, {"model": "sessions.session", "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf", "fields": {"session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==", "expire_date": "2016-12-09T16:53:29Z"}}, {"model": "sessions.session", "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-17T11:19:13Z"}}, {"model": "sessions.session", "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-20T08:48:24Z"}}, {"model": "sessions.session", "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T08:12:45Z"}}, {"model": "sessions.session", "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o", "fields": {"session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-10T07:54:55Z"}}, {"model": "sessions.session", "pk": "rx6add3n8ac1j45tvfk7g22hfiqg9189", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-26T15:21:10Z"}}, {"model": "sessions.session", "pk": "ryh7badf8sk52fnosn0im30u153w96bx", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-06-01T09:22:04Z"}}, {"model": "sessions.session", "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-17T11:25:00Z"}}, {"model": "sessions.session", "pk": "shgljfmuet4jvw3vvsjpwtbidz2ovolm", "fields": {"session_data": "ODAwZTFiNjlkZTdjNzFjNDk3ZmM5YTllMGRlMGFkNDFjOTc2MTkyMjp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ4Yjk1OWM2MGNmZWQzMjJiZjkzMWZiODdjYzQ1MWEyOTM3MmJhMGEiLCJ1c2Vyc19zaG93X2hpZ2hsaWdodGVyIjpbIjE0Il0sImFubm90YXRpb25fcHJvamVjdCI6bnVsbCwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiNDAiXSwiX2F1dGhfdXNlcl9pZCI6IjI1In0=", "expire_date": "2017-04-20T08:30:18Z"}}, {"model": "sessions.session", "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T07:10:33Z"}}, {"model": "sessions.session", "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-11-02T13:21:25Z"}}, {"model": "sessions.session", "pk": "t28pi3wijtqtgswvxoby46phnlwq97cp", "fields": {"session_data": "YzgwMDFlZjkxYTAxZDE5MDUyYTcxY2E4OTk0MmIwMjgwZTgwZDU5Nzp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdfQ==", "expire_date": "2017-05-16T16:14:45Z"}}, {"model": "sessions.session", "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-22T23:47:44Z"}}, {"model": "sessions.session", "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T09:13:02Z"}}, {"model": "sessions.session", "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T13:16:42Z"}}, {"model": "sessions.session", "pk": "tfogugs17j1nvkir89ixugemdqq25kum", "fields": {"session_data": "N2RjNjVmOTZmMzlmMTE3MzRkODk2MzVkNDkyZTQyMTU5MDA2N2EyZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQifQ==", "expire_date": "2017-04-19T14:30:19Z"}}, {"model": "sessions.session", "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-09-07T09:17:51Z"}}, {"model": "sessions.session", "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:45:55Z"}}, {"model": "sessions.session", "pk": "txw6kfzk32bxeqm21knvrf570by4v27p", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:48:36Z"}}, {"model": "sessions.session", "pk": "u3082c600jynq9qzxlc1pat4hfatkiiw", "fields": {"session_data": "MDMwNWJlZDBmODA1OThmYmQxNjE1MjMxMDEyNmQ4ZTg5MGJhOTI4ODp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJhbm5vdGF0aW9uX3Byb2plY3QiOiI2IiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsInVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMTIiXSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-04-25T13:40:05Z"}}, {"model": "sessions.session", "pk": "uesi563p5dol5hv4gjor3noj55kz8chz", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-13T08:36:52Z"}}, {"model": "sessions.session", "pk": "ulaglp8rwt152gf05ugjxsh0l7nflreg", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-27T15:38:56Z"}}, {"model": "sessions.session", "pk": "uou3pothn76iu9zi34fij69m8inc1v2s", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-05-13T08:32:22Z"}}, {"model": "sessions.session", "pk": "upxpub1wqb40yg07qnc2v9gmr5ivnx6q", "fields": {"session_data": "ZWM0ZGJlNGZiMzNmOWFjZmJiNDMwMTNjY2U0NDZlNzA5MGIzNTZjZjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjIifQ==", "expire_date": "2017-05-02T13:37:28Z"}}, {"model": "sessions.session", "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-07-05T09:34:00Z"}}, {"model": "sessions.session", "pk": "v0tb183q1hidp56w07hiihnkfphthq6x", "fields": {"session_data": "ZTUyMzMwZjQyNGVlM2E2MjEwNGFjMGQ2MmQ4MmVmYWFjZWE4OTI1OTp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCIsIjI1Il19", "expire_date": "2017-05-16T16:24:03Z"}}, {"model": "sessions.session", "pk": "vcefmjdsogtqiiym2n2pvtnn2r3ymxbv", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T11:03:56Z"}}, {"model": "sessions.session", "pk": "vd9uzj95c4gdy21oezpy5gok82tgtlnd", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T10:51:36Z"}}, {"model": "sessions.session", "pk": "vdm5gd9axckuupzwphnyibh4ltwl10in", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-10T12:53:51Z"}}, {"model": "sessions.session", "pk": "vdqbhkx8uozqoksjq28n8ze8p3kyp1mm", "fields": {"session_data": "ZTUyOGE1NDNlNmQwMDkzNDFmNDdjZTQzMzYwOWVkYzI5ODIzYmRiMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjI1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDhiOTU5YzYwY2ZlZDMyMmJmOTMxZmI4N2NjNDUxYTI5MzcyYmEwYSJ9", "expire_date": "2017-04-18T10:24:05Z"}}, {"model": "sessions.session", "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-06T09:17:34Z"}}, {"model": "sessions.session", "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20", "fields": {"session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9", "expire_date": "2016-11-25T22:11:01Z"}}, {"model": "sessions.session", "pk": "vz123od467ja9eqg3sxpjt7p28zbi1tu", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-22T13:16:36Z"}}, {"model": "sessions.session", "pk": "w854s0t1ev9t2jptzy5lgizv3o4iurxi", "fields": {"session_data": "NWJkODI2YzQ3NmRmZmNhNjlmYjFkYjE0ZDRkMDk2MDY2NGEyNzI3NTp7ImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-03-27T12:15:23Z"}}, {"model": "sessions.session", "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2016-10-19T09:11:45Z"}}, {"model": "sessions.session", "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-25T11:21:04Z"}}, {"model": "sessions.session", "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd", "fields": {"session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2016-12-19T13:49:09Z"}}, {"model": "sessions.session", "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:40:30Z"}}, {"model": "sessions.session", "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-31T09:28:51Z"}}, {"model": "sessions.session", "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-24T18:27:59Z"}}, {"model": "sessions.session", "pk": "x5z53fz318oplvc3pf9jl2xghhravlw4", "fields": {"session_data": "OTEwMWNlNTdkOTBhMzFhMzJhMjdmOWEzMGM5ODc3YWRkOGUxYjMzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6bnVsbH0=", "expire_date": "2017-01-31T08:07:16Z"}}, {"model": "sessions.session", "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-08-15T11:56:07Z"}}, {"model": "sessions.session", "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:23:30Z"}}, {"model": "sessions.session", "pk": "xeta229mvebwff8lxrg15tg92yby9l7h", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-01-03T10:42:04Z"}}, {"model": "sessions.session", "pk": "xjameie76erma5u2xcefnxiqkaydbqem", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T15:38:48Z"}}, {"model": "sessions.session", "pk": "xm7czndauhfyen0rqfy7gwasyauycs13", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-07T21:50:11Z"}}, {"model": "sessions.session", "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:41:43Z"}}, {"model": "sessions.session", "pk": "xqn4o938970paagobhs75vdj78qklbpt", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-13T06:21:47Z"}}, {"model": "sessions.session", "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g", "fields": {"session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=", "expire_date": "2016-03-28T11:24:43Z"}}, {"model": "sessions.session", "pk": "xxi2fcd8u2v0bqralv28iy7houir1oig", "fields": {"session_data": "MThiODViY2ZiZDA2MzZiNWJmZGYyZTI4ZmRhMGE5NjU4MmI2ZTQzYTp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-04-17T14:31:44Z"}}, {"model": "sessions.session", "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:59Z"}}, {"model": "sessions.session", "pk": "y0l6wk9otfe1gj48r2t88vsd85a4fgi7", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-15T10:11:05Z"}}, {"model": "sessions.session", "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T15:37:48Z"}}, {"model": "sessions.session", "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-23T09:12:20Z"}}, {"model": "sessions.session", "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-29T08:20:29Z"}}, {"model": "sessions.session", "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-21T14:11:46Z"}}, {"model": "sessions.session", "pk": "ykzz4og15rbp734i6zas54al3618ih6t", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-28T12:47:33Z"}}, {"model": "sessions.session", "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T07:23:58Z"}}, {"model": "sessions.session", "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-06-10T09:57:45Z"}}, {"model": "sessions.session", "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-29T12:27:51Z"}}, {"model": "sessions.session", "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T11:53:02Z"}}, {"model": "sessions.session", "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T13:24:18Z"}}, {"model": "sessions.session", "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:07:32Z"}}, {"model": "sessions.session", "pk": "zd89eekj8db021j20g95g8h3l2qoajg2", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-03T11:30:35Z"}}, {"model": "sessions.session", "pk": "zed35ecfw8w2jomw3tlvtr3joxg8u7qq", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-17T11:40:23Z"}}, {"model": "sessions.session", "pk": "zek5pffgnbfc047jdii8y0fxglrhlhtd", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T08:59:07Z"}}, {"model": "sessions.session", "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-07T12:20:16Z"}}, {"model": "sessions.session", "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T14:32:15Z"}}, {"model": "sessions.session", "pk": "zvmiogv4haarelrbkcxlte9w66vc74ir", "fields": {"session_data": "YmFmZTQ4NGViYzRjOThmZGU0MDRjM2I3NDAzNjYzMDFmMzZiMmY4Njp7Il9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2lkIjoiMTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-06T16:00:40Z"}}, {"model": "labels.label", "pk": 17, "fields": {"label": "Opatija", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 26}}, {"model": "labels.label", "pk": 19, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 20, "fields": {"label": "Opatija, sr. Rijeka", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 50, "fields": {"label": "Zagreb", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 133}}, {"model": "labels.label", "pk": 51, "fields": {"label": "Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 67, "fields": {"label": "Vienna", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 183}}, {"model": "labels.label", "pk": 68, "fields": {"label": "Wien", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 108, "fields": {"label": "Brno", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 327}}, {"model": "labels.label", "pk": 109, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 118, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 121, "fields": {"label": "Budapest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 400}}, {"model": "labels.label", "pk": 122, "fields": {"label": "Budapest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 252, "fields": {"label": "Bucharest", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 831}}, {"model": "labels.label", "pk": 253, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 287, "fields": {"label": "Baden bei Wien", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 926}}, {"model": "labels.label", "pk": 288, "fields": {"label": "Baden", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 926}}, {"model": "labels.label", "pk": 445, "fields": {"label": "Berlin", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1390}}, {"model": "labels.label", "pk": 446, "fields": {"label": "Berlin", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 456, "fields": {"label": "Liberec", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1424}}, {"model": "labels.label", "pk": 457, "fields": {"label": "Liberec - Osta\u0161ov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 466, "fields": {"label": "Bezau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1454}}, {"model": "labels.label", "pk": 531, "fields": {"label": "Bodensdorf, Bez. Feldkirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1701}}, {"model": "labels.label", "pk": 536, "fields": {"label": "Heilbronn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 1718}}, {"model": "labels.label", "pk": 537, "fields": {"label": "Heilbronn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1718}}, {"model": "labels.label", "pk": 613, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2006}}, {"model": "labels.label", "pk": 614, "fields": {"label": "Boto\u015fani", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2006}}, {"model": "labels.label", "pk": 639, "fields": {"label": "Bratislava", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2072}}, {"model": "labels.label", "pk": 640, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 641, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 645, "fields": {"label": "Broumov", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2085}}, {"model": "labels.label", "pk": 646, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 647, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 669, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2161}}, {"model": "labels.label", "pk": 670, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 671, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 672, "fields": {"label": "Brixen", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2170}}, {"model": "labels.label", "pk": 673, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 680, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2197}}, {"model": "labels.label", "pk": 681, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - B\u0159ezhrad, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 693, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 694, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 697, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 704, "fields": {"label": "Brody", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2281}}, {"model": "labels.label", "pk": 705, "fields": {"label": "Brody, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2281}}, {"model": "labels.label", "pk": 713, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 714, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 715, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 716, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 757, "fields": {"label": "Buenos Aires", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2489}}, {"model": "labels.label", "pk": 759, "fields": {"label": "Buenos Aires", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2489}}, {"model": "labels.label", "pk": 760, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 761, "fields": {"label": "Bucure\u015fti", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 789, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 870, "fields": {"label": "Chernivtsi", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 2854}}, {"model": "labels.label", "pk": 871, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 876, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 944, "fields": {"label": "Cieszyn", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3105}}, {"model": "labels.label", "pk": 945, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 962, "fields": {"label": "Cluj-Napoca", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 3162}}, {"model": "labels.label", "pk": 963, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 1050, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 1214, "fields": {"label": "D\u00fcren", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1215, "fields": {"label": "D\u00fcren", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1268, "fields": {"label": "\u00dadlice, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4269}}, {"model": "labels.label", "pk": 1412, "fields": {"label": "Graz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1413, "fields": {"label": "Graz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1446, "fields": {"label": "Freistadt", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1447, "fields": {"label": "Freistadt", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1560, "fields": {"label": "Ghidfal\u0103u, jud. Covasna", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5294}}, {"model": "labels.label", "pk": 1565, "fields": {"label": "Marienheide", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5308}}, {"model": "labels.label", "pk": 1619, "fields": {"label": "Gorizia", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1620, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1635, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1636, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1670, "fields": {"label": "Merano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1671, "fields": {"label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1691, "fields": {"label": "Grieskirchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5749}}, {"model": "labels.label", "pk": 1755, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1756, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1841, "fields": {"label": "Hanover", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1842, "fields": {"label": "Hannover", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1926, "fields": {"label": "Innsbruck", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1927, "fields": {"label": "Innsbruck", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1982, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 1983, "fields": {"label": "Hrastje, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 2002, "fields": {"label": "Brno - Brno-sever, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2108, "fields": {"label": "Jaworzno, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7454}}, {"model": "labels.label", "pk": 2153, "fields": {"label": "Leoben", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2154, "fields": {"label": "Leoben", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2190, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2191, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2249, "fields": {"label": "Kassel", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2250, "fields": {"label": "Kassel", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2340, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2341, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2373, "fields": {"label": "Klosterneuburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8482}}, {"model": "labels.label", "pk": 2394, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2458, "fields": {"label": "Konstanz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2459, "fields": {"label": "Konstanz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2581, "fields": {"label": "Kufstein", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2582, "fields": {"label": "Kufstein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2585, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Kukleny, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2595, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2625, "fields": {"label": "Lachovice, kr. Karlovarsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9455}}, {"model": "labels.label", "pk": 2632, "fields": {"label": "Ljubljana", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2633, "fields": {"label": "Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2711, "fields": {"label": "Lviv", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2712, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2713, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2789, "fields": {"label": "Linz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2790, "fields": {"label": "Linz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2858, "fields": {"label": "City of London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2859, "fields": {"label": "London City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2860, "fields": {"label": "The City", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2861, "fields": {"label": "London", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2862, "fields": {"label": "London", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2927, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2928, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2929, "fields": {"label": "L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2951, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2952, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2963, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3022, "fields": {"label": "Maribor", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3023, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3039, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3040, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3041, "fields": {"label": "Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3116, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3117, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3118, "fields": {"label": "Merano (Castello di Trautmannsdorf) / Meran (Schlo\u00df Trautmannsdorf), reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3119, "fields": {"label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3120, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3121, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3158, "fields": {"label": "St\u0159\u00edbro, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 3239, "fields": {"label": "Moldava, kr. \u00dasteck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11556}}, {"model": "labels.label", "pk": 3324, "fields": {"label": "Munich", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3325, "fields": {"label": "M\u00fcnchen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3441, "fields": {"label": "Nysa", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3442, "fields": {"label": "Nysa, woj. Opole", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3491, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Nov\u00fd Hradec Kr\u00e1lov\u00e9, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 3549, "fields": {"label": "Liberec - Doln\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3580, "fields": {"label": "Nice", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3581, "fields": {"label": "Nice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3657, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3663, "fields": {"label": "Liberec - Horn\u00ed Hanychov, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3671, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3672, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3681, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3697, "fields": {"label": "Brno - Malom\u011b\u0159ice-Ob\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3710, "fields": {"label": "Sopron", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3711, "fields": {"label": "Sopron, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3737, "fields": {"label": "Olomouc", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3738, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3739, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3740, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3741, "fields": {"label": "Olomouc", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3828, "fields": {"label": "Paris", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3829, "fields": {"label": "Paris", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3901, "fields": {"label": "Petting", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13987}}, {"model": "labels.label", "pk": 4050, "fields": {"label": "Prague", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4051, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4052, "fields": {"label": "Praha, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4053, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4054, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4055, "fields": {"label": "Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4077, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4078, "fields": {"label": "Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4333, "fields": {"label": "Liberec - R\u016f\u017eodol I, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4334, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4389, "fields": {"label": "Liberec - Ruprechtice, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4415, "fields": {"label": "\u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 4478, "fields": {"label": "Sv\u00e4t\u00fd Jur", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4479, "fields": {"label": "Sv\u00e4t\u00fd Jur, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4500, "fields": {"label": "St. Pankraz", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4501, "fields": {"label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4581, "fields": {"label": "\u0160t\u00edty, kr. Olomouck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16594}}, {"model": "labels.label", "pk": 4624, "fields": {"label": "Liberec - Kr\u00e1sn\u00e1 Stud\u00e1nka, kr. Libereck\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4652, "fields": {"label": "Schwanberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 16864}}, {"model": "labels.label", "pk": 4676, "fields": {"label": "Wien - Sechshaus", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 4878, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 5025, "fields": {"label": "Szczakowa, woj. Katowice", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18374}}, {"model": "labels.label", "pk": 5031, "fields": {"label": "Szeged, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 5150, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5152, "fields": {"label": "Cieszyn, woj. Bielsko", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5273, "fields": {"label": "Trento", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5274, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5275, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5290, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5291, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5386, "fields": {"label": "Mojm\u00edrovce, kr. Nitra", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 19599}}, {"model": "labels.label", "pk": 5411, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 5422, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 5650, "fields": {"label": "Warsaw", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5651, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5652, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5653, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5654, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5655, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5656, "fields": {"label": "Warszawa", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5677, "fields": {"label": "Bela Crkva, sr. Pan\u010devo", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20659}}, {"model": "labels.label", "pk": 5726, "fields": {"label": "Bad Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 5758, "fields": {"label": "Wisborough Green", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20988}}, {"model": "labels.label", "pk": 5809, "fields": {"label": "Wroc\u0142aw", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 5903, "fields": {"label": "L'viv - Znesinnja, obl. L'viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 5941, "fields": {"label": "Svitavy", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5942, "fields": {"label": "Svitavy, kr. Pardubick\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5959, "fields": {"label": "Jamnitz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22216}}, {"model": "labels.label", "pk": 5960, "fields": {"label": "Stronach (Lienz)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22259}}, {"model": "labels.label", "pk": 5961, "fields": {"label": "Nizza", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 5962, "fields": {"label": "Gr\u00fcnburg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22322}}, {"model": "labels.label", "pk": 5963, "fields": {"label": "Olten", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5964, "fields": {"label": "Olten, Kt. Solothurn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5965, "fields": {"label": "Bad Kreuznach", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "labels.label", "pk": 5966, "fields": {"label": "Lasberg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22494}}, {"model": "labels.label", "pk": 5967, "fields": {"label": "Fribourg", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5968, "fields": {"label": "Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5969, "fields": {"label": "Boc\u0219a", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22545}}, {"model": "labels.label", "pk": 5970, "fields": {"label": "Lud\u017amierz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22558}}, {"model": "labels.label", "pk": 5971, "fields": {"label": "Warszawa, woj. mazowieckie", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5972, "fields": {"label": "Vezzano", "isoCode_639_3": "eng", "label_type": 6, "temp_entity": 22570}}, {"model": "labels.label", "pk": 5973, "fields": {"label": "Vezzano", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22570}}, {"model": "labels.label", "pk": 6951, "fields": {"label": "Thalberg, Sigismund (Fortun\u00e9 Fran\u00e7ois)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 27245}}, {"model": "labels.label", "pk": 6952, "fields": {"label": "Fortun\u00e9 Fran\u00e7ois", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 27245}}, {"model": "labels.label", "pk": 7018, "fields": {"label": "Bratislava, kr. Bratislavsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 7161, "fields": {"label": "Bressanone/Brixen", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 8216, "fields": {"label": "Wien (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 8588, "fields": {"label": "Bressanone", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 9187, "fields": {"label": "Merano/Meran, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 9289, "fields": {"label": "Teschen/T\u011b\u0161\u00edn/Cieszyn", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 10492, "fields": {"label": "?, kr. ?", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 12551, "fields": {"label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 12706, "fields": {"label": "\u013dviv (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 13574, "fields": {"label": "Bratislava (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 13859, "fields": {"label": "Linz (?)", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 14306, "fields": {"label": "Gorizia, reg. Friuli-Venezia Giulia", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 15282, "fields": {"label": "Reicha (Rejcha), Anton (Anton\u00edn) Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15283, "fields": {"label": "Rejcha", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15284, "fields": {"label": "Anton\u00edn Josef", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 18793, "fields": {"label": "Moscheles, Ignaz (Isaak)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 56248}}, {"model": "labels.label", "pk": 18794, "fields": {"label": "Isaak", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 56248}}, {"model": "labels.label", "pk": 20331, "fields": {"label": "Gastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 21059, "fields": {"label": "Liszt, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 62757}}, {"model": "labels.label", "pk": 21545, "fields": {"label": "Bressanone/Brixen, reg. Trento - Alto Adige", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 21609, "fields": {"label": "Praha - Mal\u00e1 Chuchle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 25058, "fields": {"label": "Praha - Horn\u00ed Po\u010dernice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 26197, "fields": {"label": "Szeged", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 27645, "fields": {"label": "Prag", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 29838, "fields": {"label": "Blahetka, Marie Leopoldine", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88219}}, {"model": "labels.label", "pk": 30089, "fields": {"label": "Beethoven, Ludwig van", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 88902}}, {"model": "labels.label", "pk": 30728, "fields": {"label": "Freiburg/Fribourg", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 30935, "fields": {"label": "Merano/Meran", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 31498, "fields": {"label": "St\u0159\u00edbro", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 31596, "fields": {"label": "B\u00e4uerle, Friederike; Ps. Friedrich Horn", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31597, "fields": {"label": "Friedrich Horn", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31632, "fields": {"label": "L\u2019viv", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 31701, "fields": {"label": "Czerny (\u010cern\u00fd), Carl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31702, "fields": {"label": "\u010cern\u00fd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31766, "fields": {"label": "Bahr, Hermann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93003}}, {"model": "labels.label", "pk": 31769, "fields": {"label": "Czerny, Adalbert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93009}}, {"model": "labels.label", "pk": 31770, "fields": {"label": "Czetz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93012}}, {"model": "labels.label", "pk": 31771, "fields": {"label": "Czikann, Johann Jakob Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93015}}, {"model": "labels.label", "pk": 31772, "fields": {"label": "Clam-Gallas, Eduard Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93018}}, {"model": "labels.label", "pk": 31773, "fields": {"label": "Clam-Martinic, Heinrich Jaroslav Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93021}}, {"model": "labels.label", "pk": 31774, "fields": {"label": "Clam-Martinic, Heinrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93024}}, {"model": "labels.label", "pk": 31775, "fields": {"label": "Claus, Karl Friedrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93028}}, {"model": "labels.label", "pk": 31776, "fields": {"label": "Conze, Alexander", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93031}}, {"model": "labels.label", "pk": 31777, "fields": {"label": "Costenoble, Karl Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93034}}, {"model": "labels.label", "pk": 31780, "fields": {"label": "\u010celakovsk\u00fd, Jarom\u00edr", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93044}}, {"model": "labels.label", "pk": 31781, "fields": {"label": "\u010celakovsk\u00fd, Ladislav", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93047}}, {"model": "labels.label", "pk": 31782, "fields": {"label": "\u010cerven\u00fd, V\u00e1clav Franti\u0161ek", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93050}}, {"model": "labels.label", "pk": 31783, "fields": {"label": "Charlemont, Hugo de", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93056}}, {"model": "labels.label", "pk": 31784, "fields": {"label": "Chlumczansk\u00fd, Wenzel Leopold von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93059}}, {"model": "labels.label", "pk": 31785, "fields": {"label": "Dumba, Konstantin Theodor", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93065}}, {"model": "labels.label", "pk": 31786, "fields": {"label": "Doderer, Wilhelm von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93068}}, {"model": "labels.label", "pk": 31787, "fields": {"label": "Defregger, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93071}}, {"model": "labels.label", "pk": 31788, "fields": {"label": "Dengel, Ignaz Philipp", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93074}}, {"model": "labels.label", "pk": 31811, "fields": {"label": "Holovsky, Hilde", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93136}}, {"model": "labels.label", "pk": 31872, "fields": {"label": "Lorenz, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93328}}, {"model": "labels.label", "pk": 31874, "fields": {"label": "L\u00f6wy, Julius; Ps. Von der Als", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31875, "fields": {"label": "Von der Als", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31879, "fields": {"label": "Lobmeyr, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93352}}, {"model": "labels.label", "pk": 31883, "fields": {"label": "Lichtblau, Adolf; Ps. A. L. Blau", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31884, "fields": {"label": "A. L. Blau", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31885, "fields": {"label": "Lichtblau, Ludwig", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93369}}, {"model": "labels.label", "pk": 31888, "fields": {"label": "Leitgeb, Hubert", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93378}}, {"model": "labels.label", "pk": 31890, "fields": {"label": "Lenhoss\u00e9k, Mih\u00e1ly Ign\u00e1c von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93387}}, {"model": "labels.label", "pk": 31892, "fields": {"label": "Lefler, Heinrich", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93393}}, {"model": "labels.label", "pk": 31893, "fields": {"label": "Leichter, K\u00e4the; geb. Pick", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31894, "fields": {"label": "Pick", "isoCode_639_3": "deu", "label_type": 612, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31895, "fields": {"label": "Leidesdorf, Franz; Ps. Wallner", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31896, "fields": {"label": "Wallner", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31899, "fields": {"label": "Lapaine, Valentin", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93409}}, {"model": "labels.label", "pk": 31900, "fields": {"label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31901, "fields": {"label": "Suida und Langer", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31902, "fields": {"label": "M\u00fcller, Wolf Johannes", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93418}}, {"model": "labels.label", "pk": 31910, "fields": {"label": "M\u00f6rl, Maria Theresia von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93442}}, {"model": "labels.label", "pk": 31911, "fields": {"label": "Millosicz, Georg Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93445}}, {"model": "labels.label", "pk": 31912, "fields": {"label": "Miklosich, Franz von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93448}}, {"model": "labels.label", "pk": 31917, "fields": {"label": "Meithner, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93469}}, {"model": "labels.label", "pk": 31920, "fields": {"label": "Margulies, Berl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93481}}, {"model": "labels.label", "pk": 31921, "fields": {"label": "M\u00e1nesov\u00e1, Amalie", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93484}}, {"model": "labels.label", "pk": 31922, "fields": {"label": "M\u00e1nes, Quido", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93487}}, {"model": "labels.label", "pk": 31928, "fields": {"label": "Mayer, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93510}}, {"model": "labels.label", "pk": 31929, "fields": {"label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31930, "fields": {"label": "Ritter von Alpenburg", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31931, "fields": {"label": "Nov\u00e1\u010dek, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93516}}, {"model": "labels.label", "pk": 31940, "fields": {"label": "Ortmann, Rudolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93540}}, {"model": "labels.label", "pk": 31942, "fields": {"label": "Oellacher, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93546}}, {"model": "labels.label", "pk": 31947, "fields": {"label": "Poljanec, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93561}}, {"model": "labels.label", "pk": 31950, "fields": {"label": "Petzold, Emil", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93573}}, {"model": "labels.label", "pk": 31955, "fields": {"label": "Peithner von Lichtenfels, Eduard", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93588}}, {"model": "labels.label", "pk": 31958, "fields": {"label": "Patera, Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93600}}, {"model": "labels.label", "pk": 31960, "fields": {"label": "Rumpler, Matthias", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93609}}, {"model": "labels.label", "pk": 31961, "fields": {"label": "Rotter, Johann (Hans)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31962, "fields": {"label": "Hans", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31969, "fields": {"label": "Revertera von Salandra, Friedrich Gf.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93639}}, {"model": "labels.label", "pk": 31970, "fields": {"label": "Reichenberger, Andreas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93642}}, {"model": "labels.label", "pk": 31971, "fields": {"label": "Reiser, Othmar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93645}}, {"model": "labels.label", "pk": 31973, "fields": {"label": "Randa, Maximilian von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93651}}, {"model": "labels.label", "pk": 31974, "fields": {"label": "Radakovi\u010d, Michael", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93654}}, {"model": "labels.label", "pk": 31975, "fields": {"label": "Szigligeti, Ede (Edv\u00e1rd); bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31976, "fields": {"label": "Edv\u00e1rd", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31977, "fields": {"label": " bis 1834 J\u00f3zsef Szathm\u00e1ry", "isoCode_639_3": "deu", "label_type": 653, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31978, "fields": {"label": "Szurmay von Uzsok, S\u00e1ndor (Alexander) Frh.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31979, "fields": {"label": "Alexander Frh.", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31988, "fields": {"label": "St\u00fclz, Jodok", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93678}}, {"model": "labels.label", "pk": 31990, "fields": {"label": "Stowasser, Otto Hellmuth", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93684}}, {"model": "labels.label", "pk": 32001, "fields": {"label": "Steindler, Olga; verehel. Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32002, "fields": {"label": "Ehrenhaft-S.", "isoCode_639_3": "deu", "label_type": 606, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32003, "fields": {"label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32004, "fields": {"label": "Ernest Edward Aurel", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32005, "fields": {"label": "Gottlieb Hellseher", "isoCode_639_3": "deu", "label_type": 430, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32009, "fields": {"label": "Stariha, Janez Nep.", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93714}}, {"model": "labels.label", "pk": 32018, "fields": {"label": "\u0160njari\u0107, Lukas", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93748}}, {"model": "labels.label", "pk": 32030, "fields": {"label": "Sichulski, Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93779}}, {"model": "labels.label", "pk": 32032, "fields": {"label": "Settari, Wilhelm Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93785}}, {"model": "labels.label", "pk": 32034, "fields": {"label": "Sehnal, Eugen", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93791}}, {"model": "labels.label", "pk": 32037, "fields": {"label": "Schwartz, P. Anton Maria", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93800}}, {"model": "labels.label", "pk": 32038, "fields": {"label": "Schwarz, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93803}}, {"model": "labels.label", "pk": 32039, "fields": {"label": "Schwarz, Kaspar", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93809}}, {"model": "labels.label", "pk": 32041, "fields": {"label": "Schweitzer, Leopold Albrecht", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93815}}, {"model": "labels.label", "pk": 32042, "fields": {"label": "Schwabl, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93818}}, {"model": "labels.label", "pk": 32052, "fields": {"label": "Schu\u00ebcker, Edmund; eigentl. Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32053, "fields": {"label": "Schu\u00f6cker", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32054, "fields": {"label": "Schr\u00f6dl, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93839}}, {"model": "labels.label", "pk": 32059, "fields": {"label": "Schreyer, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93854}}, {"model": "labels.label", "pk": 32062, "fields": {"label": "Scholz, Franz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93863}}, {"model": "labels.label", "pk": 32063, "fields": {"label": "Schrammel, Johann", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93866}}, {"model": "labels.label", "pk": 32067, "fields": {"label": "Scholl, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93878}}, {"model": "labels.label", "pk": 32069, "fields": {"label": "Sch\u00f6nberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32070, "fields": {"label": "Schoenberger", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32071, "fields": {"label": "Carl Friedrich Frh. von", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32072, "fields": {"label": "Sch\u00f6nberger, Benno", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93894}}, {"model": "labels.label", "pk": 32075, "fields": {"label": "Schnitzler, Julius", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93900}}, {"model": "labels.label", "pk": 32076, "fields": {"label": "Schober, Alfred", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93903}}, {"model": "labels.label", "pk": 32079, "fields": {"label": "Schoeller, Gustav Adolph von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93909}}, {"model": "labels.label", "pk": 32084, "fields": {"label": "Schmutzler, Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93921}}, {"model": "labels.label", "pk": 32087, "fields": {"label": "Schmidt, Joseph", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93933}}, {"model": "labels.label", "pk": 32088, "fields": {"label": "Schmidt, Anton", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93940}}, {"model": "labels.label", "pk": 32090, "fields": {"label": "Schmal, Johannes Adolf", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93946}}, {"model": "labels.label", "pk": 32094, "fields": {"label": "Schmidt-Beauchez, Louis", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93955}}, {"model": "labels.label", "pk": 32095, "fields": {"label": "Schindler, Josef", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93958}}, {"model": "labels.label", "pk": 32096, "fields": {"label": "Scheu, Josef Franz Georg", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93961}}, {"model": "labels.label", "pk": 32097, "fields": {"label": "Schikaneder, Jakub", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93964}}, {"model": "labels.label", "pk": 32098, "fields": {"label": "Schell, Karl", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93967}}, {"model": "labels.label", "pk": 32099, "fields": {"label": "Schenk, Samuel Leopold", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93970}}, {"model": "labels.label", "pk": 32107, "fields": {"label": "T\u00f6lgyessy, Art\u00far", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93988}}, {"model": "labels.label", "pk": 32108, "fields": {"label": "Thun und Hohenstein, Emanuel Maria Gf. von", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 93991}}, {"model": "labels.label", "pk": 32111, "fields": {"label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32112, "fields": {"label": "Kluger Frh. von Teschenberg Ernst", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32113, "fields": {"label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32114, "fields": {"label": "Przerwa-Tetmajer", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32115, "fields": {"label": "Teuber, Emmerich (genannt Imre)", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32116, "fields": {"label": "genannt Imre", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32119, "fields": {"label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 598, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32120, "fields": {"label": "Richard Denemy", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32121, "fields": {"label": " ab 1913 Denemy-Tauber", "isoCode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32390, "fields": {"label": "Laibach", "isoCode_639_3": "deu", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 34957, "fields": {"label": "Berlin-Friedenau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 34958, "fields": {"label": "Berlin-Gr\u00fcnau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 34959, "fields": {"label": "Berlin-Schmargendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 35289, "fields": {"label": "Maribor-Studenci, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 35292, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35364, "fields": {"label": "Praha-Dejvice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35397, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 35461, "fields": {"label": "Wien-Gumpendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35476, "fields": {"label": "Hanover, New Hampshire", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 35488, "fields": {"label": "Praha-Hole\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35492, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35543, "fields": {"label": "Bratislava-Rusovce, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 35545, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35548, "fields": {"label": "Praha-Kbely, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35559, "fields": {"label": "Szeged-Kiskundorozsma, m. Csongr\u00e1d", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 35560, "fields": {"label": "Budapest-Budat\u00e9t\u00e9ny, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35569, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35570, "fields": {"label": "Praha-Zbraslav, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35598, "fields": {"label": "London-Lewisham", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 35643, "fields": {"label": "Praha-Mod\u0159any, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35665, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 35679, "fields": {"label": "Praha-Nusle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35686, "fields": {"label": "Wien-Hietzing", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35717, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35764, "fields": {"label": "Praha-Horn\u00ed Kr\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35787, "fields": {"label": "Budapest-Pestszentl\u0151rinc, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35822, "fields": {"label": "Budapest-Budafok, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35833, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35850, "fields": {"label": "\u010cernivci-Rohizna, obl. \u010cernivci", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 35867, "fields": {"label": "Praha-Satalice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35893, "fields": {"label": "Slanovec, sr. Zagreb", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 35897, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35922, "fields": {"label": "Wien-Inzersdorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35967, "fields": {"label": "Praha-Podol\u00ed, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36010, "fields": {"label": "Ljubljana-\u0160entvid, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36068, "fields": {"label": "Ljubljana-\u0160i\u0161ka, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36086, "fields": {"label": "Sopron-B\u00e1nfalva, m. Gy\u0151r-Moson-Sopron", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 36122, "fields": {"label": "Praha-\u017di\u017ekov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36147, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36148, "fields": {"label": "M\u00fcnchen, Ld. Bayern", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 36160, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36163, "fields": {"label": "M\u00fcnchen, Ld. Bayern", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 36173, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36176, "fields": {"label": "Budapest-M\u00e1ty\u00e1sf\u00f6ld, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36182, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36185, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36187, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36188, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36195, "fields": {"label": "Maribor-Studenci, sr. Maribor", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 36226, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36238, "fields": {"label": "Praha-Podol\u00ed, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36243, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36253, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36263, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36267, "fields": {"label": "Ljubljana-\u0160entvid, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36334, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36340, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36341, "fields": {"label": "Praha-Vyso\u010dany, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36369, "fields": {"label": "Budapest-Pestszentl\u0151rinc, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36402, "fields": {"label": "Ljubljana-Toma\u010devo, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36447, "fields": {"label": "Budapest-Soroks\u00e1r, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36478, "fields": {"label": "Wien-Breitenfeld", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 36480, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36547, "fields": {"label": "Berlin-Schmargendorf", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36567, "fields": {"label": "Berlin-Friedenau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36574, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36585, "fields": {"label": "Berlin-Gr\u00fcnau", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36626, "fields": {"label": "Praha-\u017di\u017ekov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36637, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36638, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36655, "fields": {"label": "Praha-Zbraslav, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36699, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36825, "fields": {"label": "Wien-Thury", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 36875, "fields": {"label": "Praha-Satalice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36881, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36913, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 36923, "fields": {"label": "Budapest-Budafok, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36939, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36964, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36965, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36998, "fields": {"label": "Bratislava-Rusovce, kr. Bratislava", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 37007, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37030, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37031, "fields": {"label": "Budapest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37033, "fields": {"label": "M\u00fcnchen-Pasing", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 37079, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 37080, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37120, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37125, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37162, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37164, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37190, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37205, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 37215, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 37255, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37287, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37309, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 37325, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37333, "fields": {"label": "Badgastein", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 37362, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37367, "fields": {"label": "Ljubljana-\u0160i\u0161ka, sr. Ljubljana", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 37389, "fields": {"label": "Budapest-\u00dajpest, m. Pest", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37436, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37456, "fields": {"label": "Bad Kreuznach, Rheinland-Pfalz", "isoCode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "entities.person", "pk": 27245, "fields": {"first_name": "Sigismund", "gender": "male", "text": [12155, 12156], "collection": [29], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 46414, "fields": {"first_name": "Anton Josef", "gender": "male", "text": [21722, 21723], "collection": [29], "profession": [151, 188, 2054], "title": []}}, {"model": "entities.person", "pk": 56248, "fields": {"first_name": "Ignaz", "gender": "male", "text": [27186, 27187], "collection": [29], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 62757, "fields": {"first_name": "Franz von", "gender": "male", "text": [30762, 30763], "collection": [29], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 88219, "fields": {"first_name": "Marie Leopoldine", "gender": "female", "text": [44908, 44909], "collection": [29], "profession": [151, 1750], "title": []}}, {"model": "entities.person", "pk": 88902, "fields": {"first_name": "Ludwig van", "gender": "male", "text": [45290, 45291], "collection": [29], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 92412, "fields": {"first_name": "Friederike", "gender": "female", "text": [47030, 47031], "collection": [29], "profession": [128, 5578], "title": []}}, {"model": "entities.person", "pk": 92603, "fields": {"first_name": "Carl", "gender": "male", "text": [47126, 47127], "collection": [29], "profession": [151, 5599], "title": []}}, {"model": "entities.person", "pk": 93003, "fields": {"first_name": "Hermann", "gender": "male", "text": [47200, 47201], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93009, "fields": {"first_name": "Adalbert", "gender": "male", "text": [47204, 47205], "collection": [29], "profession": [154, 155], "title": []}}, {"model": "entities.person", "pk": 93012, "fields": {"first_name": "Johann", "gender": "male", "text": [47206, 47207], "collection": [29], "profession": [134, 143, 157, 158], "title": []}}, {"model": "entities.person", "pk": 93015, "fields": {"first_name": "Johann Jakob Heinrich", "gender": "male", "text": [47208, 47209], "collection": [29], "profession": [128, 146, 159], "title": []}}, {"model": "entities.person", "pk": 93018, "fields": {"first_name": "Eduard Gf.", "gender": "male", "text": [47210, 47211], "collection": [29], "profession": [143, 144], "title": []}}, {"model": "entities.person", "pk": 93021, "fields": {"first_name": "Heinrich Jaroslav Gf.", "gender": "male", "text": [47212, 47213], "collection": [29], "profession": [132, 134, 145, 146], "title": []}}, {"model": "entities.person", "pk": 93024, "fields": {"first_name": "Heinrich Gf.", "gender": "male", "text": [47214, 47215], "collection": [29], "profession": [134, 147], "title": []}}, {"model": "entities.person", "pk": 93028, "fields": {"first_name": "Karl Friedrich", "gender": "male", "text": [47216, 47217], "collection": [29], "profession": [135, 148], "title": []}}, {"model": "entities.person", "pk": 93031, "fields": {"first_name": "Alexander", "gender": "male", "text": [47218, 47219], "collection": [29], "profession": [149, 150], "title": []}}, {"model": "entities.person", "pk": 93034, "fields": {"first_name": "Karl Ludwig", "gender": "male", "text": [47220, 47221], "collection": [29], "profession": [128, 151, 152], "title": []}}, {"model": "entities.person", "pk": 93044, "fields": {"first_name": "Jarom\u00edr", "gender": "male", "text": [47226, 47227], "collection": [29], "profession": [132, 133, 134], "title": []}}, {"model": "entities.person", "pk": 93047, "fields": {"first_name": "Ladislav", "gender": "male", "text": [47228, 47229], "collection": [29], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93050, "fields": {"first_name": "V\u00e1clav Franti\u0161ek", "gender": "male", "text": [47230, 47231], "collection": [29], "profession": [137, 138], "title": []}}, {"model": "entities.person", "pk": 93056, "fields": {"first_name": "Hugo de", "gender": "male", "text": [47232, 47233], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93059, "fields": {"first_name": "Wenzel Leopold von", "gender": "male", "text": [47234, 47235], "collection": [29], "profession": [141, 142], "title": []}}, {"model": "entities.person", "pk": 93065, "fields": {"first_name": "Konstantin Theodor", "gender": "male", "text": [47236, 47237], "collection": [29], "profession": [146, 162], "title": []}}, {"model": "entities.person", "pk": 93068, "fields": {"first_name": "Wilhelm von", "gender": "male", "text": [47238, 47239], "collection": [29], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93071, "fields": {"first_name": "Franz von", "gender": "male", "text": [47240, 47241], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93074, "fields": {"first_name": "Ignaz Philipp", "gender": "male", "text": [47242, 47243], "collection": [29], "profession": [149, 160], "title": []}}, {"model": "entities.person", "pk": 93136, "fields": {"first_name": "Hilde", "gender": "female", "text": [47276, 47277], "collection": [29], "profession": [163, 164], "title": []}}, {"model": "entities.person", "pk": 93328, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47384, 47385], "collection": [29], "profession": [154, 175], "title": []}}, {"model": "entities.person", "pk": 93337, "fields": {"first_name": "Julius", "gender": "male", "text": [47388, 47389], "collection": [29], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93352, "fields": {"first_name": "Josef", "gender": "male", "text": [47394, 47395], "collection": [29], "profession": [137, 173], "title": []}}, {"model": "entities.person", "pk": 93366, "fields": {"first_name": "Adolf", "gender": "male", "text": [47402, 47403], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93369, "fields": {"first_name": "Ludwig", "gender": "male", "text": [47404, 47405], "collection": [29], "profession": [132, 172], "title": []}}, {"model": "entities.person", "pk": 93378, "fields": {"first_name": "Hubert", "gender": "male", "text": [47410, 47411], "collection": [29], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93387, "fields": {"first_name": "Mih\u00e1ly Ign\u00e1c von", "gender": "male", "text": [47414, 47415], "collection": [29], "profession": [154, 171], "title": []}}, {"model": "entities.person", "pk": 93393, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47418, 47419], "collection": [29], "profession": [139, 168], "title": []}}, {"model": "entities.person", "pk": 93396, "fields": {"first_name": "K\u00e4the", "gender": "female", "text": [47420, 47421], "collection": [29], "profession": [128, 134, 169], "title": []}}, {"model": "entities.person", "pk": 93400, "fields": {"first_name": "Franz", "gender": "male", "text": [47422, 47423], "collection": [29], "profession": [128, 151, 170], "title": []}}, {"model": "entities.person", "pk": 93409, "fields": {"first_name": "Valentin", "gender": "male", "text": [47428, 47429], "collection": [29], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93415, "fields": {"first_name": "Johanna", "gender": "female", "text": [47430, 47431], "collection": [29], "profession": [137, 165, 166], "title": []}}, {"model": "entities.person", "pk": 93418, "fields": {"first_name": "Wolf Johannes", "gender": "male", "text": [47432, 47433], "collection": [29], "profession": [135, 185], "title": []}}, {"model": "entities.person", "pk": 93442, "fields": {"first_name": "Maria Theresia von", "gender": "female", "text": [47446, 47447], "collection": [29], "profession": [141, 184], "title": []}}, {"model": "entities.person", "pk": 93445, "fields": {"first_name": "Georg Frh. von", "gender": "male", "text": [47448, 47449], "collection": [29], "profession": [143, 183], "title": []}}, {"model": "entities.person", "pk": 93448, "fields": {"first_name": "Franz von", "gender": "male", "text": [47450, 47451], "collection": [29], "profession": [134, 149, 182], "title": []}}, {"model": "entities.person", "pk": 93469, "fields": {"first_name": "Karl", "gender": "male", "text": [47460, 47461], "collection": [29], "profession": [134, 180, 181], "title": []}}, {"model": "entities.person", "pk": 93481, "fields": {"first_name": "Berl", "gender": "male", "text": [47466, 47467], "collection": [29], "profession": [151, 179], "title": []}}, {"model": "entities.person", "pk": 93484, "fields": {"first_name": "Amalie", "gender": "female", "text": [47468, 47469], "collection": [29], "profession": [139, 178], "title": []}}, {"model": "entities.person", "pk": 93487, "fields": {"first_name": "Quido", "gender": "male", "text": [47470, 47471], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93510, "fields": {"first_name": "Karl", "gender": "male", "text": [47482, 47483], "collection": [29], "profession": [128, 177], "title": []}}, {"model": "entities.person", "pk": 93513, "fields": {"first_name": "Johann Nep.", "gender": "male", "text": [47484, 47485], "collection": [29], "profession": [128, 134, 176], "title": []}}, {"model": "entities.person", "pk": 93516, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47486, 47487], "collection": [29], "profession": [151, 186], "title": []}}, {"model": "entities.person", "pk": 93540, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47502, 47503], "collection": [29], "profession": [188, 189], "title": []}}, {"model": "entities.person", "pk": 93546, "fields": {"first_name": "Josef", "gender": "male", "text": [47506, 47507], "collection": [29], "profession": [135, 187], "title": []}}, {"model": "entities.person", "pk": 93561, "fields": {"first_name": "Leopold", "gender": "male", "text": [47516, 47517], "collection": [29], "profession": [135, 188, 193], "title": []}}, {"model": "entities.person", "pk": 93573, "fields": {"first_name": "Emil", "gender": "male", "text": [47522, 47523], "collection": [29], "profession": [149, 192], "title": []}}, {"model": "entities.person", "pk": 93588, "fields": {"first_name": "Eduard", "gender": "male", "text": [47530, 47531], "collection": [29], "profession": [139, 191], "title": []}}, {"model": "entities.person", "pk": 93600, "fields": {"first_name": "Adolf", "gender": "male", "text": [47536, 47537], "collection": [29], "profession": [135, 190], "title": []}}, {"model": "entities.person", "pk": 93609, "fields": {"first_name": "Matthias", "gender": "male", "text": [47540, 47541], "collection": [29], "profession": [128, 141, 200], "title": []}}, {"model": "entities.person", "pk": 93615, "fields": {"first_name": "Johann", "gender": "male", "text": [47542, 47543], "collection": [29], "profession": [134, 137, 149, 199], "title": []}}, {"model": "entities.person", "pk": 93639, "fields": {"first_name": "Friedrich Gf.", "gender": "male", "text": [47556, 47557], "collection": [29], "profession": [134, 146, 198], "title": []}}, {"model": "entities.person", "pk": 93642, "fields": {"first_name": "Andreas", "gender": "male", "text": [47558, 47559], "collection": [29], "profession": [141, 196], "title": []}}, {"model": "entities.person", "pk": 93645, "fields": {"first_name": "Othmar", "gender": "male", "text": [47560, 47561], "collection": [29], "profession": [135, 197], "title": []}}, {"model": "entities.person", "pk": 93651, "fields": {"first_name": "Maximilian von", "gender": "male", "text": [47564, 47565], "collection": [29], "profession": [143, 146, 195], "title": []}}, {"model": "entities.person", "pk": 93654, "fields": {"first_name": "Michael", "gender": "male", "text": [47566, 47567], "collection": [29], "profession": [135, 194], "title": []}}, {"model": "entities.person", "pk": 93657, "fields": {"first_name": "Ede", "gender": "male", "text": [47568, 47569], "collection": [29], "profession": [128, 151, 230], "title": []}}, {"model": "entities.person", "pk": 93663, "fields": {"first_name": "S\u00e1ndor Frh.", "gender": "male", "text": [47570, 47571], "collection": [29], "profession": [134, 143, 231], "title": []}}, {"model": "entities.person", "pk": 93678, "fields": {"first_name": "Jodok", "gender": "male", "text": [47580, 47581], "collection": [29], "profession": [141, 149, 229], "title": []}}, {"model": "entities.person", "pk": 93684, "fields": {"first_name": "Otto Hellmuth", "gender": "male", "text": [47584, 47585], "collection": [29], "profession": [146, 149, 228], "title": []}}, {"model": "entities.person", "pk": 93702, "fields": {"first_name": "Olga", "gender": "female", "text": [47594, 47595], "collection": [29], "profession": [135, 188, 226], "title": []}}, {"model": "entities.person", "pk": 93705, "fields": {"first_name": "Ernst Edward Aurel", "gender": "male", "text": [47596, 47597], "collection": [29], "profession": [149, 227], "title": []}}, {"model": "entities.person", "pk": 93714, "fields": {"first_name": "Janez Nep.", "gender": "male", "text": [47602, 47603], "collection": [29], "profession": [141, 225], "title": []}}, {"model": "entities.person", "pk": 93748, "fields": {"first_name": "Lukas", "gender": "male", "text": [47614, 47615], "collection": [29], "profession": [143, 224], "title": []}}, {"model": "entities.person", "pk": 93779, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47626, 47627], "collection": [29], "profession": [139, 223], "title": []}}, {"model": "entities.person", "pk": 93785, "fields": {"first_name": "Wilhelm Anton Maria", "gender": "male", "text": [47630, 47631], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93791, "fields": {"first_name": "Eugen", "gender": "male", "text": [47634, 47635], "collection": [29], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93800, "fields": {"first_name": "P. Anton Maria", "gender": "male", "text": [47640, 47641], "collection": [29], "profession": [141, 219], "title": []}}, {"model": "entities.person", "pk": 93803, "fields": {"first_name": "Johann", "gender": "male", "text": [47642, 47643], "collection": [29], "profession": [149, 188, 220], "title": []}}, {"model": "entities.person", "pk": 93809, "fields": {"first_name": "Kaspar", "gender": "male", "text": [47644, 47645], "collection": [29], "profession": [134, 137, 221], "title": []}}, {"model": "entities.person", "pk": 93815, "fields": {"first_name": "Leopold Albrecht", "gender": "male", "text": [47648, 47649], "collection": [29], "profession": [128, 222], "title": []}}, {"model": "entities.person", "pk": 93818, "fields": {"first_name": "Franz", "gender": "male", "text": [47650, 47651], "collection": [29], "profession": [217, 218], "title": []}}, {"model": "entities.person", "pk": 93836, "fields": {"first_name": "Edmund", "gender": "male", "text": [47660, 47661], "collection": [29], "profession": [151, 216], "title": []}}, {"model": "entities.person", "pk": 93839, "fields": {"first_name": "Leopold", "gender": "male", "text": [47662, 47663], "collection": [29], "profession": [139, 215], "title": []}}, {"model": "entities.person", "pk": 93854, "fields": {"first_name": "Johann", "gender": "male", "text": [47672, 47673], "collection": [29], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93863, "fields": {"first_name": "Franz", "gender": "male", "text": [47676, 47677], "collection": [29], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93866, "fields": {"first_name": "Johann", "gender": "male", "text": [47678, 47679], "collection": [29], "profession": [151, 214], "title": []}}, {"model": "entities.person", "pk": 93878, "fields": {"first_name": "Joseph", "gender": "male", "text": [47684, 47685], "collection": [29], "profession": [132, 134, 213], "title": []}}, {"model": "entities.person", "pk": 93891, "fields": {"first_name": "Adolf Frh. von", "gender": "male", "text": [47688, 47689], "collection": [29], "profession": [143, 146, 211], "title": []}}, {"model": "entities.person", "pk": 93894, "fields": {"first_name": "Benno", "gender": "male", "text": [47690, 47691], "collection": [29], "profession": [151, 212], "title": []}}, {"model": "entities.person", "pk": 93900, "fields": {"first_name": "Julius", "gender": "male", "text": [47694, 47695], "collection": [29], "profession": [154, 208], "title": []}}, {"model": "entities.person", "pk": 93903, "fields": {"first_name": "Alfred", "gender": "male", "text": [47696, 47697], "collection": [29], "profession": [132, 146, 209], "title": []}}, {"model": "entities.person", "pk": 93909, "fields": {"first_name": "Gustav Adolph von", "gender": "male", "text": [47700, 47701], "collection": [29], "profession": [137, 210], "title": []}}, {"model": "entities.person", "pk": 93921, "fields": {"first_name": "Leopold", "gender": "male", "text": [47706, 47707], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93933, "fields": {"first_name": "Joseph", "gender": "male", "text": [47712, 47713], "collection": [29], "profession": [151, 207], "title": []}}, {"model": "entities.person", "pk": 93940, "fields": {"first_name": "Anton", "gender": "male", "text": [47714, 47715], "collection": [29], "profession": [134, 137, 206], "title": []}}, {"model": "entities.person", "pk": 93946, "fields": {"first_name": "Johannes Adolf", "gender": "male", "text": [47718, 47719], "collection": [29], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93955, "fields": {"first_name": "Louis", "gender": "male", "text": [47724, 47725], "collection": [29], "profession": [128, 188, 205], "title": []}}, {"model": "entities.person", "pk": 93958, "fields": {"first_name": "Josef", "gender": "male", "text": [47726, 47727], "collection": [29], "profession": [149, 204], "title": []}}, {"model": "entities.person", "pk": 93961, "fields": {"first_name": "Josef Franz Georg", "gender": "male", "text": [47728, 47729], "collection": [29], "profession": [128, 151, 203], "title": []}}, {"model": "entities.person", "pk": 93964, "fields": {"first_name": "Jakub", "gender": "male", "text": [47730, 47731], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93967, "fields": {"first_name": "Karl", "gender": "male", "text": [47732, 47733], "collection": [29], "profession": [137, 201], "title": []}}, {"model": "entities.person", "pk": 93970, "fields": {"first_name": "Samuel Leopold", "gender": "male", "text": [47734, 47735], "collection": [29], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93988, "fields": {"first_name": "Art\u00far", "gender": "male", "text": [47746, 47747], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93991, "fields": {"first_name": "Emanuel Maria Gf. von", "gender": "male", "text": [47748, 47749], "collection": [29], "profession": [141, 235], "title": []}}, {"model": "entities.person", "pk": 94003, "fields": {"first_name": "Ernst Maximilian Frh. von", "gender": "male", "text": [47754, 47755], "collection": [29], "profession": [128, 146, 233], "title": []}}, {"model": "entities.person", "pk": 94006, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47756, 47757], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 94009, "fields": {"first_name": "Emmerich", "gender": "male", "text": [47758, 47759], "collection": [29], "profession": [166, 234], "title": []}}, {"model": "entities.person", "pk": 94018, "fields": {"first_name": "Richard", "gender": "male", "text": [47764, 47765], "collection": [29], "profession": [151, 232], "title": []}}, {"model": "entities.place", "pk": 26, "fields": {"kind": 9, "lat": 45.33917, "lng": 14.30833, "text": [11225], "collection": []}}, {"model": "entities.place", "pk": 133, "fields": {"kind": 12, "lat": 45.81444, "lng": 15.97798, "text": [11275], "collection": []}}, {"model": "entities.place", "pk": 183, "fields": {"kind": 12, "lat": 48.20849, "lng": 16.37208, "text": [11203], "collection": []}}, {"model": "entities.place", "pk": 327, "fields": {"kind": 13, "lat": 49.19522, "lng": 16.60796, "text": [11259], "collection": []}}, {"model": "entities.place", "pk": 384, "fields": {"kind": 9, "lat": 49.19627, "lng": 13.50926, "text": [11284], "collection": []}}, {"model": "entities.place", "pk": 400, "fields": {"kind": 12, "lat": 47.49801, "lng": 19.03991, "text": [11223], "collection": []}}, {"model": "entities.place", "pk": 831, "fields": {"kind": 12, "lat": 44.43225, "lng": 26.10626, "text": [11242, 11243], "collection": []}}, {"model": "entities.place", "pk": 926, "fields": {"kind": 5, "lat": 48.00543, "lng": 16.23264, "text": [11313, 11314], "collection": []}}, {"model": "entities.place", "pk": 1390, "fields": {"kind": 12, "lat": 52.52437, "lng": 13.41053, "text": [11226, 11227], "collection": []}}, {"model": "entities.place", "pk": 1424, "fields": {"kind": 13, "lat": 50.76711, "lng": 15.05619, "text": [11258], "collection": []}}, {"model": "entities.place", "pk": 1454, "fields": {"kind": 5, "lat": 47.38478, "lng": 9.90139, "text": [11337, 11338], "collection": []}}, {"model": "entities.place", "pk": 1701, "fields": {"kind": 9, "lat": 46.69111, "lng": 13.97111, "text": [11271], "collection": []}}, {"model": "entities.place", "pk": 1718, "fields": {"kind": 5, "lat": 49.13995, "lng": 9.22054, "text": [11269, 11270], "collection": []}}, {"model": "entities.place", "pk": 2006, "fields": {"kind": 13, "lat": 47.75, "lng": 26.66667, "text": [11251], "collection": []}}, {"model": "entities.place", "pk": 2072, "fields": {"kind": 12, "lat": 48.14816, "lng": 17.10674, "text": [11220], "collection": []}}, {"model": "entities.place", "pk": 2085, "fields": {"kind": 9, "lat": 50.58566, "lng": 16.33181, "text": [11272], "collection": []}}, {"model": "entities.place", "pk": 2161, "fields": {"kind": 13, "lat": 51.1, "lng": 17.03333, "text": [11199], "collection": []}}, {"model": "entities.place", "pk": 2170, "fields": {"kind": 5, "lat": 46.71503, "lng": 11.65598, "text": [11279], "collection": []}}, {"model": "entities.place", "pk": 2197, "fields": {"kind": 13, "lat": 50.20923, "lng": 15.83277, "text": [11204], "collection": []}}, {"model": "entities.place", "pk": 2281, "fields": {"kind": 11, "lat": 50.08791, "lng": 25.15027, "text": [11244, 11245], "collection": []}}, {"model": "entities.place", "pk": 2489, "fields": {"kind": 12, "lat": -34.61315, "lng": -58.37723, "text": [11256, 11257], "collection": []}}, {"model": "entities.place", "pk": 2602, "fields": {"kind": 5, "lat": 46.41326, "lng": 11.24616, "text": [11252], "collection": []}}, {"model": "entities.place", "pk": 2854, "fields": {"kind": 13, "lat": 48.29149, "lng": 25.94034, "text": [11224], "collection": []}}, {"model": "entities.place", "pk": 3105, "fields": {"kind": 5, "lat": 49.75133, "lng": 18.63213, "text": [11260], "collection": []}}, {"model": "entities.place", "pk": 3162, "fields": {"kind": 13, "lat": 46.76667, "lng": 23.6, "text": [11330], "collection": []}}, {"model": "entities.place", "pk": 4096, "fields": {"kind": 5, "lat": 50.80434, "lng": 6.49299, "text": [11299, 11300], "collection": []}}, {"model": "entities.place", "pk": 4269, "fields": {"kind": 9, "lat": 50.4406, "lng": 13.45738, "text": [11231], "collection": []}}, {"model": "entities.place", "pk": 4767, "fields": {"kind": 13, "lat": 47.06667, "lng": 15.45, "text": [11210, 11211], "collection": []}}, {"model": "entities.place", "pk": 4877, "fields": {"kind": 9, "lat": 48.51103, "lng": 14.50453, "text": [11319, 11320], "collection": []}}, {"model": "entities.place", "pk": 5294, "fields": {"kind": 11, "lat": 45.9, "lng": 25.85, "text": [11246], "collection": []}}, {"model": "entities.place", "pk": 5308, "fields": {"kind": 10, "lat": 51.08317, "lng": 7.53087, "text": [11289, 11290], "collection": []}}, {"model": "entities.place", "pk": 5478, "fields": {"kind": 11, "lat": 45.94088, "lng": 13.62167, "text": [11303], "collection": []}}, {"model": "entities.place", "pk": 5691, "fields": {"kind": 5, "lat": 46.66817, "lng": 11.15953, "text": [11326], "collection": []}}, {"model": "entities.place", "pk": 5749, "fields": {"kind": 11, "lat": 48.23333, "lng": 13.83333, "text": [11229, 11230], "collection": []}}, {"model": "entities.place", "pk": 6004, "fields": {"kind": 9, "lat": 50.03197, "lng": 17.04058, "text": [11294], "collection": []}}, {"model": "entities.place", "pk": 6324, "fields": {"kind": 13, "lat": 52.37052, "lng": 9.73322, "text": [11221, 11222], "collection": []}}, {"model": "entities.place", "pk": 6700, "fields": {"kind": 13, "lat": 47.26266, "lng": 11.39454, "text": [11235, 11236], "collection": []}}, {"model": "entities.place", "pk": 6947, "fields": {"kind": 9, "lat": 46.61472, "lng": 16.08583, "text": [11278], "collection": []}}, {"model": "entities.place", "pk": 7454, "fields": {"kind": 11, "lat": 50.20528, "lng": 19.27498, "text": [11336], "collection": []}}, {"model": "entities.place", "pk": 7622, "fields": {"kind": 5, "lat": 47.3765, "lng": 15.09144, "text": [11249, 11250], "collection": []}}, {"model": "entities.place", "pk": 7986, "fields": {"kind": 11, "lat": 51.31667, "lng": 9.5, "text": [11218, 11219], "collection": []}}, {"model": "entities.place", "pk": 8482, "fields": {"kind": 5, "lat": 48.30521, "lng": 16.32522, "text": [11322, 11323], "collection": []}}, {"model": "entities.place", "pk": 8798, "fields": {"kind": 5, "lat": 47.66033, "lng": 9.17582, "text": [11301, 11302], "collection": []}}, {"model": "entities.place", "pk": 9287, "fields": {"kind": 5, "lat": 47.58333, "lng": 12.16667, "text": [11324, 11325], "collection": []}}, {"model": "entities.place", "pk": 9455, "fields": {"kind": 9, "lat": 50.08364, "lng": 13.03925, "text": [11288], "collection": []}}, {"model": "entities.place", "pk": 9475, "fields": {"kind": 12, "lat": 46.05108, "lng": 14.50513, "text": [11331], "collection": []}}, {"model": "entities.place", "pk": 9735, "fields": {"kind": 13, "lat": 49.83826, "lng": 24.02324, "text": [11263], "collection": []}}, {"model": "entities.place", "pk": 10015, "fields": {"kind": 13, "lat": 48.30639, "lng": 14.28611, "text": [11195, 11196], "collection": []}}, {"model": "entities.place", "pk": 10265, "fields": {"kind": 12, "lat": 51.50853, "lng": -0.12574, "text": [11239, 11240], "collection": []}}, {"model": "entities.place", "pk": 10793, "fields": {"kind": 13, "lat": 46.55472, "lng": 15.64667, "text": [11266], "collection": []}}, {"model": "entities.place", "pk": 11238, "fields": {"kind": 9, "lat": 49.75565, "lng": 12.997, "text": [11234], "collection": []}}, {"model": "entities.place", "pk": 11556, "fields": {"kind": 9, "lat": 50.72063, "lng": 13.65723, "text": [11308], "collection": []}}, {"model": "entities.place", "pk": 11799, "fields": {"kind": 13, "lat": 48.13743, "lng": 11.57549, "text": [11197, 11198], "collection": []}}, {"model": "entities.place", "pk": 12211, "fields": {"kind": 11, "lat": 50.47379, "lng": 17.33437, "text": [11321], "collection": []}}, {"model": "entities.place", "pk": 12758, "fields": {"kind": 11, "lat": 43.70313, "lng": 7.26608, "text": [11205], "collection": []}}, {"model": "entities.place", "pk": 13253, "fields": {"kind": 9, "lat": 47.68501, "lng": 16.59049, "text": [11344], "collection": []}}, {"model": "entities.place", "pk": 13382, "fields": {"kind": 13, "lat": 49.59552, "lng": 17.25175, "text": [11228], "collection": []}}, {"model": "entities.place", "pk": 13714, "fields": {"kind": 12, "lat": 48.85341, "lng": 2.3488, "text": [11291, 11292], "collection": []}}, {"model": "entities.place", "pk": 13987, "fields": {"kind": 10, "lat": 47.91232, "lng": 12.81512, "text": [11280, 11281], "collection": []}}, {"model": "entities.place", "pk": 14608, "fields": {"kind": 12, "lat": 50.08804, "lng": 14.42076, "text": [11200], "collection": []}}, {"model": "entities.place", "pk": 16242, "fields": {"kind": 9, "lat": 48.25216, "lng": 17.21539, "text": [11214], "collection": []}}, {"model": "entities.place", "pk": 16310, "fields": {"kind": 5, "lat": 46.586, "lng": 11.08571, "text": [11327], "collection": []}}, {"model": "entities.place", "pk": 16594, "fields": {"kind": 9, "lat": 49.96122, "lng": 16.76576, "text": [11293], "collection": []}}, {"model": "entities.place", "pk": 16864, "fields": {"kind": 5, "lat": 46.75833, "lng": 15.20833, "text": [11286, 11287], "collection": []}}, {"model": "entities.place", "pk": 18374, "fields": {"kind": 9, "lat": 50.2421, "lng": 19.30725, "text": [11241], "collection": []}}, {"model": "entities.place", "pk": 18400, "fields": {"kind": 13, "lat": 46.253, "lng": 20.14824, "text": [11351], "collection": []}}, {"model": "entities.place", "pk": 19215, "fields": {"kind": 13, "lat": 46.06787, "lng": 11.12108, "text": [11348], "collection": []}}, {"model": "entities.place", "pk": 19599, "fields": {"kind": 9, "lat": 48.20735, "lng": 18.06581, "text": [11285], "collection": []}}, {"model": "entities.place", "pk": 20549, "fields": {"kind": 12, "lat": 52.22977, "lng": 21.01178, "text": [11345], "collection": []}}, {"model": "entities.place", "pk": 20659, "fields": {"kind": 5, "lat": 44.8975, "lng": 21.41722, "text": [11255], "collection": []}}, {"model": "entities.place", "pk": 20872, "fields": {"kind": 5, "lat": 47.11547, "lng": 13.13467, "text": [11339], "collection": []}}, {"model": "entities.place", "pk": 20988, "fields": {"kind": 9, "lat": 51.02308, "lng": -0.50604, "text": [11304, 11305], "collection": []}}, {"model": "entities.place", "pk": 21818, "fields": {"kind": 9, "lat": 49.75594, "lng": 16.46829, "text": [11215], "collection": []}}, {"model": "entities.place", "pk": 22216, "fields": {"kind": 9, "lat": 49.01898, "lng": 15.56994, "text": [11206, 11207], "collection": []}}, {"model": "entities.place", "pk": 22259, "fields": {"kind": 9, "lat": 46.83333, "lng": 12.85, "text": [11261, 11262], "collection": []}}, {"model": "entities.place", "pk": 22322, "fields": {"kind": 9, "lat": 47.97234, "lng": 14.26472, "text": [11237, 11238], "collection": []}}, {"model": "entities.place", "pk": 22354, "fields": {"kind": 11, "lat": 47.34999, "lng": 7.90329, "text": [11253, 11254], "collection": []}}, {"model": "entities.place", "pk": 22475, "fields": {"kind": 5, "lat": 49.8414, "lng": 7.86713, "text": [11311, 11312], "collection": []}}, {"model": "entities.place", "pk": 22494, "fields": {"kind": 9, "lat": 48.47121, "lng": 14.54023, "text": [11317, 11318], "collection": []}}, {"model": "entities.place", "pk": 22526, "fields": {"kind": 13, "lat": 46.80237, "lng": 7.15128, "text": [11334, 11335], "collection": []}}, {"model": "entities.place", "pk": 22545, "fields": {"kind": 11, "lat": 45.37333, "lng": 21.70917, "text": [11342, 11343], "collection": []}}, {"model": "entities.place", "pk": 22558, "fields": {"kind": 9, "lat": 49.46656, "lng": 19.9825, "text": [11346, 11347], "collection": []}}, {"model": "entities.place", "pk": 22570, "fields": {"kind": 5, "lat": 46.07867, "lng": 10.99735, "text": [11349, 11350], "collection": []}}, {"model": "entities.place", "pk": 93025, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93035, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93051, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93060, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93075, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93379, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93397, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93410, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93449, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93562, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93610, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93658, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93715, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93749, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93804, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93855, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93879, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93934, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93937, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111335, "fields": {"kind": 400, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111348, "fields": {"kind": 400, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111365, "fields": {"kind": 380, "text": [], "collection": []}}, {"model": "vocabularies.vocabnames", "pk": 1, "fields": {"name": "ProfessionType"}}, {"model": "vocabularies.vocabnames", "pk": 2, "fields": {"name": "PersonPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 5, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 6, "fields": {"name": "PersonPersonRelation"}}, {"model": "vocabularies.vocabnames", "pk": 7, "fields": {"name": "TextType"}}, {"model": "vocabularies.vocabnames", "pk": 8, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 9, "fields": {"name": "InstitutionType"}}, {"model": "vocabularies.vocabnames", "pk": 10, "fields": {"name": "PlaceType"}}, {"model": "vocabularies.vocabnames", "pk": 11, "fields": {"name": "CollectionType"}}, {"model": "vocabularies.vocabnames", "pk": 12, "fields": {"name": "PlaceEventRelation"}}, {"model": "relations.personperson", "pk": 92840, "fields": {"relation_type": 5608, "related_persona": 92412, "related_personb": 92603, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92930, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88902, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92931, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 27245, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92932, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88219, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92933, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 62757, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92934, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 56248, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92935, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 46414, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46415, "fields": {"relation_type": 595, "related_person": 46414, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46416, "fields": {"relation_type": 596, "related_person": 46414, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 56249, "fields": {"relation_type": 595, "related_person": 56248, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 88904, "fields": {"relation_type": 596, "related_person": 88902, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92415, "fields": {"relation_type": 595, "related_person": 92412, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92604, "fields": {"relation_type": 595, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92605, "fields": {"relation_type": 596, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93004, "fields": {"relation_type": 595, "related_person": 93003, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93005, "fields": {"relation_type": 596, "related_person": 93003, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93010, "fields": {"relation_type": 595, "related_person": 93009, "related_place": 18374, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93011, "fields": {"relation_type": 596, "related_person": 93009, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93013, "fields": {"relation_type": 595, "related_person": 93012, "related_place": 5294, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93014, "fields": {"relation_type": 596, "related_person": 93012, "related_place": 2489, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93016, "fields": {"relation_type": 595, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93017, "fields": {"relation_type": 596, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93019, "fields": {"relation_type": 595, "related_person": 93018, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93020, "fields": {"relation_type": 596, "related_person": 93018, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93022, "fields": {"relation_type": 595, "related_person": 93021, "related_place": 16242, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93023, "fields": {"relation_type": 596, "related_person": 93021, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93026, "fields": {"relation_type": 595, "related_person": 93024, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93027, "fields": {"relation_type": 596, "related_person": 93024, "related_place": 93025, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93029, "fields": {"relation_type": 595, "related_person": 93028, "related_place": 7986, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93030, "fields": {"relation_type": 596, "related_person": 93028, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93032, "fields": {"relation_type": 595, "related_person": 93031, "related_place": 6324, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93033, "fields": {"relation_type": 596, "related_person": 93031, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93036, "fields": {"relation_type": 595, "related_person": 93034, "related_place": 93035, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93037, "fields": {"relation_type": 596, "related_person": 93034, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93045, "fields": {"relation_type": 595, "related_person": 93044, "related_place": 2161, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93046, "fields": {"relation_type": 596, "related_person": 93044, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93048, "fields": {"relation_type": 595, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93049, "fields": {"relation_type": 596, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93054, "fields": {"relation_type": 595, "related_person": 93050, "related_place": 93051, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93055, "fields": {"relation_type": 596, "related_person": 93050, "related_place": 2197, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93057, "fields": {"relation_type": 595, "related_person": 93056, "related_place": 22216, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93058, "fields": {"relation_type": 596, "related_person": 93056, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93063, "fields": {"relation_type": 595, "related_person": 93059, "related_place": 93060, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93064, "fields": {"relation_type": 596, "related_person": 93059, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93066, "fields": {"relation_type": 595, "related_person": 93065, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93067, "fields": {"relation_type": 596, "related_person": 93065, "related_place": 1701, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93069, "fields": {"relation_type": 595, "related_person": 93068, "related_place": 1718, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93070, "fields": {"relation_type": 596, "related_person": 93068, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93072, "fields": {"relation_type": 595, "related_person": 93071, "related_place": 22259, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93073, "fields": {"relation_type": 596, "related_person": 93071, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93078, "fields": {"relation_type": 595, "related_person": 93074, "related_place": 93075, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93079, "fields": {"relation_type": 596, "related_person": 93074, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93137, "fields": {"relation_type": 595, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93138, "fields": {"relation_type": 596, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93329, "fields": {"relation_type": 595, "related_person": 93328, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93330, "fields": {"relation_type": 596, "related_person": 93328, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93338, "fields": {"relation_type": 595, "related_person": 93337, "related_place": 4269, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93339, "fields": {"relation_type": 596, "related_person": 93337, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93353, "fields": {"relation_type": 595, "related_person": 93352, "related_place": 5749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93354, "fields": {"relation_type": 596, "related_person": 93352, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93367, "fields": {"relation_type": 595, "related_person": 93366, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93368, "fields": {"relation_type": 596, "related_person": 93366, "related_place": 26, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93370, "fields": {"relation_type": 595, "related_person": 93369, "related_place": 13382, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93371, "fields": {"relation_type": 596, "related_person": 93369, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93382, "fields": {"relation_type": 595, "related_person": 93378, "related_place": 93379, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93383, "fields": {"relation_type": 596, "related_person": 93378, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93388, "fields": {"relation_type": 595, "related_person": 93387, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93389, "fields": {"relation_type": 596, "related_person": 93387, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93394, "fields": {"relation_type": 595, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93395, "fields": {"relation_type": 596, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93398, "fields": {"relation_type": 595, "related_person": 93396, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93399, "fields": {"relation_type": 596, "related_person": 93396, "related_place": 93397, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93401, "fields": {"relation_type": 595, "related_person": 93400, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93402, "fields": {"relation_type": 596, "related_person": 93400, "related_place": 12758, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93413, "fields": {"relation_type": 595, "related_person": 93409, "related_place": 93410, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93414, "fields": {"relation_type": 596, "related_person": 93409, "related_place": 133, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93416, "fields": {"relation_type": 595, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93417, "fields": {"relation_type": 596, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93419, "fields": {"relation_type": 595, "related_person": 93418, "related_place": 22354, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93420, "fields": {"relation_type": 596, "related_person": 93418, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93443, "fields": {"relation_type": 595, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93444, "fields": {"relation_type": 596, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93446, "fields": {"relation_type": 595, "related_person": 93445, "related_place": 2006, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93447, "fields": {"relation_type": 596, "related_person": 93445, "related_place": 7622, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93452, "fields": {"relation_type": 595, "related_person": 93448, "related_place": 93449, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93453, "fields": {"relation_type": 596, "related_person": 93448, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93470, "fields": {"relation_type": 595, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93471, "fields": {"relation_type": 596, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93482, "fields": {"relation_type": 595, "related_person": 93481, "related_place": 2281, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93483, "fields": {"relation_type": 596, "related_person": 93481, "related_place": 831, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93485, "fields": {"relation_type": 595, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93486, "fields": {"relation_type": 596, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93488, "fields": {"relation_type": 595, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93489, "fields": {"relation_type": 596, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93511, "fields": {"relation_type": 595, "related_person": 93510, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93512, "fields": {"relation_type": 596, "related_person": 93510, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93514, "fields": {"relation_type": 595, "related_person": 93513, "related_place": 22322, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93515, "fields": {"relation_type": 596, "related_person": 93513, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93517, "fields": {"relation_type": 595, "related_person": 93516, "related_place": 20659, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93518, "fields": {"relation_type": 596, "related_person": 93516, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93541, "fields": {"relation_type": 595, "related_person": 93540, "related_place": 1424, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93542, "fields": {"relation_type": 596, "related_person": 93540, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93547, "fields": {"relation_type": 595, "related_person": 93546, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93548, "fields": {"relation_type": 596, "related_person": 93546, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93565, "fields": {"relation_type": 595, "related_person": 93561, "related_place": 93562, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93566, "fields": {"relation_type": 596, "related_person": 93561, "related_place": 10793, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93574, "fields": {"relation_type": 595, "related_person": 93573, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93575, "fields": {"relation_type": 596, "related_person": 93573, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93589, "fields": {"relation_type": 595, "related_person": 93588, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93590, "fields": {"relation_type": 596, "related_person": 93588, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93601, "fields": {"relation_type": 595, "related_person": 93600, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93602, "fields": {"relation_type": 596, "related_person": 93600, "related_place": 3105, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93613, "fields": {"relation_type": 595, "related_person": 93609, "related_place": 13987, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93614, "fields": {"relation_type": 596, "related_person": 93609, "related_place": 93610, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93616, "fields": {"relation_type": 595, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93617, "fields": {"relation_type": 596, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93640, "fields": {"relation_type": 595, "related_person": 93639, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93641, "fields": {"relation_type": 596, "related_person": 93639, "related_place": 2170, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93643, "fields": {"relation_type": 595, "related_person": 93642, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93644, "fields": {"relation_type": 596, "related_person": 93642, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93646, "fields": {"relation_type": 595, "related_person": 93645, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93647, "fields": {"relation_type": 596, "related_person": 93645, "related_place": 6947, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93652, "fields": {"relation_type": 595, "related_person": 93651, "related_place": 21818, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93653, "fields": {"relation_type": 596, "related_person": 93651, "related_place": 2854, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93655, "fields": {"relation_type": 595, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93656, "fields": {"relation_type": 596, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93661, "fields": {"relation_type": 595, "related_person": 93657, "related_place": 93658, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93662, "fields": {"relation_type": 596, "related_person": 93657, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93664, "fields": {"relation_type": 595, "related_person": 93663, "related_place": 22545, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93665, "fields": {"relation_type": 596, "related_person": 93663, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93679, "fields": {"relation_type": 595, "related_person": 93678, "related_place": 1454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93680, "fields": {"relation_type": 596, "related_person": 93678, "related_place": 20872, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93685, "fields": {"relation_type": 595, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93686, "fields": {"relation_type": 596, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93703, "fields": {"relation_type": 595, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93704, "fields": {"relation_type": 596, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93706, "fields": {"relation_type": 595, "related_person": 93705, "related_place": 7454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93707, "fields": {"relation_type": 596, "related_person": 93705, "related_place": 22526, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93718, "fields": {"relation_type": 595, "related_person": 93714, "related_place": 93715, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93719, "fields": {"relation_type": 596, "related_person": 93714, "related_place": 9475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93752, "fields": {"relation_type": 595, "related_person": 93748, "related_place": 93749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93753, "fields": {"relation_type": 596, "related_person": 93748, "related_place": 3162, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93780, "fields": {"relation_type": 595, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93781, "fields": {"relation_type": 596, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93786, "fields": {"relation_type": 595, "related_person": 93785, "related_place": 16310, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93787, "fields": {"relation_type": 596, "related_person": 93785, "related_place": 5691, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93792, "fields": {"relation_type": 595, "related_person": 93791, "related_place": 9287, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93793, "fields": {"relation_type": 596, "related_person": 93791, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93801, "fields": {"relation_type": 595, "related_person": 93800, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93802, "fields": {"relation_type": 596, "related_person": 93800, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93807, "fields": {"relation_type": 595, "related_person": 93803, "related_place": 93804, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93808, "fields": {"relation_type": 596, "related_person": 93803, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93810, "fields": {"relation_type": 595, "related_person": 93809, "related_place": 22494, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93811, "fields": {"relation_type": 596, "related_person": 93809, "related_place": 4877, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93816, "fields": {"relation_type": 595, "related_person": 93815, "related_place": 12211, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93817, "fields": {"relation_type": 596, "related_person": 93815, "related_place": 8482, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93819, "fields": {"relation_type": 595, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93820, "fields": {"relation_type": 596, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93837, "fields": {"relation_type": 595, "related_person": 93836, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93838, "fields": {"relation_type": 596, "related_person": 93836, "related_place": 22475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93840, "fields": {"relation_type": 595, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93841, "fields": {"relation_type": 596, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93858, "fields": {"relation_type": 595, "related_person": 93854, "related_place": 93855, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93859, "fields": {"relation_type": 596, "related_person": 93854, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93864, "fields": {"relation_type": 595, "related_person": 93863, "related_place": 11556, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93865, "fields": {"relation_type": 596, "related_person": 93863, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93867, "fields": {"relation_type": 595, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93868, "fields": {"relation_type": 596, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93880, "fields": {"relation_type": 595, "related_person": 93878, "related_place": 93879, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93881, "fields": {"relation_type": 596, "related_person": 93878, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93892, "fields": {"relation_type": 595, "related_person": 93891, "related_place": 8798, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93893, "fields": {"relation_type": 596, "related_person": 93891, "related_place": 5478, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93895, "fields": {"relation_type": 595, "related_person": 93894, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93896, "fields": {"relation_type": 596, "related_person": 93894, "related_place": 20988, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93901, "fields": {"relation_type": 595, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93902, "fields": {"relation_type": 596, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93904, "fields": {"relation_type": 595, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93905, "fields": {"relation_type": 596, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93910, "fields": {"relation_type": 595, "related_person": 93909, "related_place": 4096, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93911, "fields": {"relation_type": 596, "related_person": 93909, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93922, "fields": {"relation_type": 595, "related_person": 93921, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93923, "fields": {"relation_type": 596, "related_person": 93921, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93938, "fields": {"relation_type": 595, "related_person": 93933, "related_place": 93934, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93939, "fields": {"relation_type": 596, "related_person": 93933, "related_place": 93937, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93941, "fields": {"relation_type": 595, "related_person": 93940, "related_place": 16594, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93942, "fields": {"relation_type": 596, "related_person": 93940, "related_place": 6004, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93947, "fields": {"relation_type": 595, "related_person": 93946, "related_place": 5308, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93948, "fields": {"relation_type": 596, "related_person": 93946, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93956, "fields": {"relation_type": 595, "related_person": 93955, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93957, "fields": {"relation_type": 596, "related_person": 93955, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93959, "fields": {"relation_type": 595, "related_person": 93958, "related_place": 9455, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93960, "fields": {"relation_type": 596, "related_person": 93958, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93962, "fields": {"relation_type": 595, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93963, "fields": {"relation_type": 596, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93965, "fields": {"relation_type": 595, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93966, "fields": {"relation_type": 596, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93968, "fields": {"relation_type": 595, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93969, "fields": {"relation_type": 596, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93971, "fields": {"relation_type": 595, "related_person": 93970, "related_place": 19599, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93972, "fields": {"relation_type": 596, "related_person": 93970, "related_place": 16864, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93989, "fields": {"relation_type": 595, "related_person": 93988, "related_place": 18400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93990, "fields": {"relation_type": 596, "related_person": 93988, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93992, "fields": {"relation_type": 595, "related_person": 93991, "related_place": 19215, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93993, "fields": {"relation_type": 596, "related_person": 93991, "related_place": 22570, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94004, "fields": {"relation_type": 595, "related_person": 94003, "related_place": 13253, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94005, "fields": {"relation_type": 596, "related_person": 94003, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94007, "fields": {"relation_type": 595, "related_person": 94006, "related_place": 22558, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94008, "fields": {"relation_type": 596, "related_person": 94006, "related_place": 20549, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94010, "fields": {"relation_type": 595, "related_person": 94009, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94011, "fields": {"relation_type": 596, "related_person": 94009, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94019, "fields": {"relation_type": 595, "related_person": 94018, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94020, "fields": {"relation_type": 596, "related_person": 94018, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 98116, "fields": {"relation_type": 595, "related_person": null, "related_place": null, "text": [], "collection": []}}, {"model": "relations.personinstitution", "pk": 99591, "fields": {"relation_type": null, "related_person": null, "related_institution": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 26, "fields": {"name": "Opatija", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11225], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 133, "fields": {"name": "Zagreb", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11275], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 183, "fields": {"name": "Wien", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11203], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 327, "fields": {"name": "Br\u00fcnn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11259], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 384, "fields": {"name": "Dlouh\u00e1 Ves", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11284], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 400, "fields": {"name": "Budapest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11223], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 831, "fields": {"name": "Bukarest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11242, 11243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 926, "fields": {"name": "Baden", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11313, 11314], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1390, "fields": {"name": "Berlin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11226, 11227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1424, "fields": {"name": "Liberec", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11258], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1454, "fields": {"name": "Bezau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11337, 11338], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1701, "fields": {"name": "Bodensdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11271], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1718, "fields": {"name": "Heilbronn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11269, 11270], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2006, "fields": {"name": "Boto\u015fani", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11251], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2072, "fields": {"name": "Pressburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11220], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2085, "fields": {"name": "Braunau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11272], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2161, "fields": {"name": "Breslau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11199], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2170, "fields": {"name": "Brixen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11279], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2197, "fields": {"name": "K\u00f6niggr\u00e4tz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11204], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2281, "fields": {"name": "Brody", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11244, 11245], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2489, "fields": {"name": "Buenos Aires", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11256, 11257], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2602, "fields": {"name": "Kaltern an der Weinstrasse", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11252], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2854, "fields": {"name": "Tschernowitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11224], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3105, "fields": {"name": "Teschen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11260], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3162, "fields": {"name": "Klausenburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11330], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4096, "fields": {"name": "D\u00fcren", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11299, 11300], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4269, "fields": {"name": "\u00dadlice", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4767, "fields": {"name": "Graz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11210, 11211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4877, "fields": {"name": "Freistadt", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11319, 11320], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5294, "fields": {"name": "Ghidfal\u0103u", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11246], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5308, "fields": {"name": "Marienheide", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11289, 11290], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5478, "fields": {"name": "G\u00f6rz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11303], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5691, "fields": {"name": "Meran", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11326], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5749, "fields": {"name": "Grieskirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11229, 11230], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6004, "fields": {"name": "Grossullersdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11294], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6324, "fields": {"name": "Hannover", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11221, 11222], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6700, "fields": {"name": "Innsbruck", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11235, 11236], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6947, "fields": {"name": "Hrastje-Mota", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11278], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7454, "fields": {"name": "Jaworzno", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11336], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7622, "fields": {"name": "Leoben", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11249, 11250], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7986, "fields": {"name": "Cassel", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11218, 11219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8482, "fields": {"name": "Klosterneuburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11322, 11323], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8798, "fields": {"name": "Konstanz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11301, 11302], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9287, "fields": {"name": "Kufstein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11324, 11325], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9455, "fields": {"name": "Lachovice", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11288], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9475, "fields": {"name": "Ljubljana", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11331], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9735, "fields": {"name": "Lemberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11263], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10015, "fields": {"name": "Linz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11195, 11196], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10265, "fields": {"name": "London", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11239, 11240], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10793, "fields": {"name": "Marburg an der Drau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11266], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11238, "fields": {"name": "Mies", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11234], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11556, "fields": {"name": "Moldava", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11308], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11799, "fields": {"name": "M\u00fcnchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11197, 11198], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12211, "fields": {"name": "Nysa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11321], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12758, "fields": {"name": "Nizza", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13253, "fields": {"name": "Sopron", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11344], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13382, "fields": {"name": "Olm\u00fctz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11228], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13714, "fields": {"name": "Paris", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11291, 11292], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13987, "fields": {"name": "Petting", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11280, 11281], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 14608, "fields": {"name": "Prag", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11200], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16242, "fields": {"name": "Sv\u00e4t\u00fd Jur", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11214], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16310, "fields": {"name": "Sankt Pankraz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11327], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16594, "fields": {"name": "\u0160t\u00edty", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11293], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16864, "fields": {"name": "Schwanberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11286, 11287], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18374, "fields": {"name": "Szczakowa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18400, "fields": {"name": "Szegedin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11351], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19215, "fields": {"name": "Trient", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11348], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19599, "fields": {"name": "Mojm\u00edrovce", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11285], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20549, "fields": {"name": "Warschau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11345], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20659, "fields": {"name": "Wei\u00dfkirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11255], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20872, "fields": {"name": "Bad Gastein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11339], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20988, "fields": {"name": "Wisborough Green", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11304, 11305], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 21818, "fields": {"name": "Zwittau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22216, "fields": {"name": "Jamnitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11206, 11207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22259, "fields": {"name": "Stronach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11261, 11262], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22322, "fields": {"name": "Gr\u00fcnburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11237, 11238], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22354, "fields": {"name": "Olten", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11253, 11254], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22475, "fields": {"name": "Bad Kreuznach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11311, 11312], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22494, "fields": {"name": "Lasberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11317, 11318], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22526, "fields": {"name": "Freiburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11334, 11335], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22545, "fields": {"name": "Boc\u015fa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11342, 11343], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22558, "fields": {"name": "Lud\u017amierz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11346, 11347], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22570, "fields": {"name": "Vezzano", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11349, 11350], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24156, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24696, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24697, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24698, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24699, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24835, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24860, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 27245, "fields": {"name": "Thalberg", "review": false, "start_date": "1812-01-08", "end_date": "1871-04-27", "start_date_written": "8.1.1812", "end_date_written": "27.4.1871", "status": "", "source": 531, "references": null, "notes": null, "text": [12155, 12156], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 46414, "fields": {"name": "Reicha", "review": false, "start_date": "1770-02-26", "end_date": "1836-05-28", "start_date_written": "26.2.1770", "end_date_written": "28.5.1836", "status": "", "source": 5804, "references": null, "notes": null, "text": [21722, 21723], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 46415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56248, "fields": {"name": "Moscheles", "review": false, "start_date": "1794-05-23", "end_date": "1870-03-10", "start_date_written": "23.5.1794", "end_date_written": "10.3.1870", "status": "", "source": 8543, "references": null, "notes": null, "text": [27186, 27187], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 56249, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 62757, "fields": {"name": "Liszt", "review": false, "start_date": "1811-10-22", "end_date": "1886-07-31", "start_date_written": "22.10.1811", "end_date_written": "31.7.1886", "status": "", "source": 10332, "references": null, "notes": null, "text": [30762, 30763], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88219, "fields": {"name": "Blahetka", "review": false, "start_date": "1810-11-15", "end_date": "1885-01-01", "start_date_written": "15.11.1810", "end_date_written": "1.1.1885", "status": "", "source": 17415, "references": null, "notes": null, "text": [44908, 44909], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88902, "fields": {"name": "Beethoven", "review": false, "start_date": "1770-12-16", "end_date": "1827-03-26", "start_date_written": "16.12.1770", "end_date_written": "26.3.1827", "status": "", "source": 17608, "references": null, "notes": null, "text": [45290, 45291], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 91062, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92412, "fields": {"name": "B\u00e4uerle", "review": false, "start_date": "1817-12-11", "end_date": "1896-07-17", "start_date_written": "11.12.1817", "end_date_written": "17.7.1896", "status": "", "source": 17852, "references": null, "notes": null, "text": [47030, 47031], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 92415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92603, "fields": {"name": "Czerny", "review": false, "start_date": "1791-02-21", "end_date": "1857-07-15", "start_date_written": "21.2.1791", "end_date_written": "15.7.1857", "status": "", "source": 18525, "references": null, "notes": null, "text": [47126, 47127], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 92604, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92605, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92930, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92931, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92932, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92933, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92934, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92935, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93003, "fields": {"name": "Bahr", "review": false, "start_date": "1863-07-19", "end_date": "1934-01-14", "start_date_written": "19.7.1863", "end_date_written": "14.1.1934", "status": "", "source": 102, "references": null, "notes": null, "text": [47200, 47201], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93009, "fields": {"name": "Czerny", "review": false, "start_date": "1863-03-25", "end_date": "1941-10-03", "start_date_written": "25.3.1863", "end_date_written": "3.10.1941", "status": "", "source": 114, "references": null, "notes": null, "text": [47204, 47205], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93012, "fields": {"name": "Czetz", "review": false, "start_date": "1822-06-08", "end_date": "1904-09-06", "start_date_written": "8.6.1822", "end_date_written": "6.9.1904", "status": "", "source": 116, "references": null, "notes": null, "text": [47206, 47207], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93013, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93014, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93015, "fields": {"name": "Czikann", "review": false, "start_date": "1789-07-10", "end_date": "1855-06-10", "start_date_written": "10.7.1789", "end_date_written": "10.6.1855", "status": "", "source": 117, "references": null, "notes": null, "text": [47208, 47209], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93016, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93017, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93018, "fields": {"name": "Clam-Gallas", "review": false, "start_date": "1805-03-11", "end_date": "1891-03-17", "start_date_written": "11.3.1805", "end_date_written": "17.3.1891", "status": "", "source": 108, "references": null, "notes": null, "text": [47210, 47211], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93021, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1826-06-15", "end_date": "1887-06-05", "start_date_written": "15.6.1826", "end_date_written": "5.6.1887", "status": "", "source": 109, "references": null, "notes": null, "text": [47212, 47213], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93022, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93023, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93024, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1863-01-01", "end_date": "1932-03-07", "start_date_written": "1.1.1863", "end_date_written": "7.3.1932", "status": "", "source": 110, "references": null, "notes": null, "text": [47214, 47215], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93025, "fields": {"name": "Clam (Grein)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93026, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93027, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93028, "fields": {"name": "Claus", "review": false, "start_date": "1835-01-02", "end_date": "1899-01-18", "start_date_written": "2.1.1835", "end_date_written": "18.1.1899", "status": "", "source": 111, "references": null, "notes": null, "text": [47216, 47217], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93029, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93030, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93031, "fields": {"name": "Conze", "review": false, "start_date": "1831-12-10", "end_date": "1914-07-19", "start_date_written": "10.12.1831", "end_date_written": "19.7.1914", "status": "", "source": 112, "references": null, "notes": null, "text": [47218, 47219], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93032, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93033, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93034, "fields": {"name": "Costenoble", "review": false, "start_date": "1769-12-25", "end_date": "1837-08-28", "start_date_written": "25.12.1769", "end_date_written": "28.8.1837", "status": "", "source": 113, "references": null, "notes": null, "text": [47220, 47221], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93035, "fields": {"name": "Herford, Westfalen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93036, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93037, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93044, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1846-03-21", "end_date": "1914-10-16", "start_date_written": "21.3.1846", "end_date_written": "16.10.1914", "status": "", "source": 103, "references": null, "notes": null, "text": [47226, 47227], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93045, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93046, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93047, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1834-11-29", "end_date": "1902-11-24", "start_date_written": "29.11.1834", "end_date_written": "24.11.1902", "status": "", "source": 104, "references": null, "notes": null, "text": [47228, 47229], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93048, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93049, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93050, "fields": {"name": "\u010cerven\u00fd", "review": false, "start_date": "1819-09-27", "end_date": "1896-01-19", "start_date_written": "27.9.1819", "end_date_written": "19.1.1896", "status": "", "source": 105, "references": null, "notes": null, "text": [47230, 47231], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93051, "fields": {"name": "Praha-Dube\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93054, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93055, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93056, "fields": {"name": "Charlemont", "review": false, "start_date": "1850-03-18", "end_date": "1939-03-18", "start_date_written": "18.3.1850", "end_date_written": "18.3.1939", "status": "", "source": 106, "references": null, "notes": null, "text": [47232, 47233], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93057, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93058, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93059, "fields": {"name": "Chlumczansk\u00fd", "review": false, "start_date": "1749-11-15", "end_date": "1830-06-14", "start_date_written": "15.11.1749", "end_date_written": "14.6.1830", "status": "", "source": 107, "references": null, "notes": null, "text": [47234, 47235], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93060, "fields": {"name": "Ho\u0161tice, kr. Jiho\u010desk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93063, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93064, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93065, "fields": {"name": "Dumba", "review": false, "start_date": "1856-06-17", "end_date": "1947-01-06", "start_date_written": "17.6.1856", "end_date_written": "6.1.1947", "status": "", "source": 121, "references": null, "notes": null, "text": [47236, 47237], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93066, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93067, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93068, "fields": {"name": "Doderer", "review": false, "start_date": "1825-01-02", "end_date": "1900-05-13", "start_date_written": "2.1.1825", "end_date_written": "13.5.1900", "status": "", "source": 120, "references": null, "notes": null, "text": [47238, 47239], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93069, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93070, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93071, "fields": {"name": "Defregger", "review": false, "start_date": "1835-04-30", "end_date": "1921-01-02", "start_date_written": "30.4.1835", "end_date_written": "2.1.1921", "status": "", "source": 118, "references": null, "notes": null, "text": [47240, 47241], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93072, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93073, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93074, "fields": {"name": "Dengel", "review": false, "start_date": "1872-06-22", "end_date": "1947-09-09", "start_date_written": "22.6.1872", "end_date_written": "9.9.1947", "status": "", "source": 119, "references": null, "notes": null, "text": [47242, 47243], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93075, "fields": {"name": "Elbigenalp-Untergiblen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93078, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93079, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93136, "fields": {"name": "Holovsky", "review": false, "start_date": "1917-04-29", "end_date": "1933-07-03", "start_date_written": "29.4.1917", "end_date_written": "3.7.1933", "status": "", "source": 122, "references": null, "notes": null, "text": [47276, 47277], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93137, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93138, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93328, "fields": {"name": "Lorenz", "review": false, "start_date": "1859-04-13", "end_date": "1945-03-25", "start_date_written": "13.4.1859", "end_date_written": "25.3.1945", "status": "", "source": 134, "references": null, "notes": null, "text": [47384, 47385], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93329, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93330, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93337, "fields": {"name": "L\u00f6wy", "review": false, "start_date": "1851-09-14", "end_date": "1905-12-27", "start_date_written": "14.9.1851", "end_date_written": "27.12.1905", "status": "", "source": 133, "references": null, "notes": null, "text": [47388, 47389], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93338, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93339, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93352, "fields": {"name": "Lobmeyr", "review": false, "start_date": "1792-03-17", "end_date": "1855-05-08", "start_date_written": "17.3.1792", "end_date_written": "8.5.1855", "status": "", "source": 132, "references": null, "notes": null, "text": [47394, 47395], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93353, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93354, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93366, "fields": {"name": "Lichtblau", "review": false, "start_date": "1844-05-17", "end_date": "1908-05-10", "start_date_written": "17.5.1844", "end_date_written": "10.5.1908", "status": "", "source": 130, "references": null, "notes": null, "text": [47402, 47403], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93367, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93368, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93369, "fields": {"name": "Lichtblau", "review": false, "start_date": "1875-02-25", "end_date": "1935-12-19", "start_date_written": "25.2.1875", "end_date_written": "19.12.1935", "status": "", "source": 131, "references": null, "notes": null, "text": [47404, 47405], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93370, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93371, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93378, "fields": {"name": "Leitgeb", "review": false, "start_date": "1835-10-20", "end_date": "1888-04-05", "start_date_written": "20.10.1835", "end_date_written": "5.4.1888", "status": "", "source": 128, "references": null, "notes": null, "text": [47410, 47411], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93379, "fields": {"name": "Portendorf, Bez. Klagenfurt Land", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93382, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93383, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93387, "fields": {"name": "Lenhoss\u00e9k", "review": false, "start_date": "1773-05-11", "end_date": "1840-02-11", "start_date_written": "11.5.1773", "end_date_written": "11.2.1840", "status": "", "source": 129, "references": null, "notes": null, "text": [47414, 47415], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93388, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93389, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93393, "fields": {"name": "Lefler", "review": false, "start_date": "1863-11-07", "end_date": "1919-03-14", "start_date_written": "7.11.1863", "end_date_written": "14.3.1919", "status": "", "source": 125, "references": null, "notes": null, "text": [47418, 47419], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93394, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93395, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93396, "fields": {"name": "Leichter", "review": false, "start_date": "1895-08-20", "end_date": "1942-03-17", "start_date_written": "20.8.1895", "end_date_written": "17.3.1942", "status": "", "source": 126, "references": null, "notes": null, "text": [47420, 47421], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93397, "fields": {"name": "KZ Ravensbr\u00fcck, Brandenburg", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93398, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93399, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93400, "fields": {"name": "Leidesdorf", "review": false, "start_date": "1810-09-25", "end_date": "1876-01-19", "start_date_written": "25.9.1810", "end_date_written": "19.1.1876", "status": "", "source": 127, "references": null, "notes": null, "text": [47422, 47423], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93401, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93402, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93409, "fields": {"name": "Lapaine", "review": false, "start_date": "1843-02-05", "end_date": "1923-02-21", "start_date_written": "5.2.1843", "end_date_written": "21.2.1923", "status": "", "source": 124, "references": null, "notes": null, "text": [47428, 47429], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93410, "fields": {"name": "Vojsko, sr. Gorica", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93413, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93414, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93415, "fields": {"name": "Langer-Schroll", "review": false, "start_date": "1850-10-02", "end_date": "1926-11-09", "start_date_written": "2.10.1850", "end_date_written": "9.11.1926", "status": "", "source": 123, "references": null, "notes": null, "text": [47430, 47431], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93417, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93418, "fields": {"name": "M\u00fcller", "review": false, "start_date": "1874-07-08", "end_date": "1941-12-09", "start_date_written": "8.7.1874", "end_date_written": "9.12.1941", "status": "", "source": 144, "references": null, "notes": null, "text": [47432, 47433], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93419, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93420, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93442, "fields": {"name": "M\u00f6rl", "review": false, "start_date": "1812-10-16", "end_date": "1868-01-11", "start_date_written": "16.10.1812", "end_date_written": "11.1.1868", "status": "", "source": 143, "references": null, "notes": null, "text": [47446, 47447], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93443, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93444, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93445, "fields": {"name": "Millosicz", "review": false, "start_date": "1819-10-18", "end_date": "1890-07-24", "start_date_written": "18.10.1819", "end_date_written": "24.7.1890", "status": "", "source": 142, "references": null, "notes": null, "text": [47448, 47449], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93446, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93447, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93448, "fields": {"name": "Miklosich", "review": false, "start_date": "1813-11-20", "end_date": "1891-03-07", "start_date_written": "20.11.1813", "end_date_written": "7.3.1891", "status": "", "source": 141, "references": null, "notes": null, "text": [47450, 47451], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93449, "fields": {"name": "Radomer\u0161\u010dak, sr. Murska Sobota", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93452, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93453, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93469, "fields": {"name": "Meithner", "review": false, "start_date": "1892-05-27", "end_date": "1942-12-13", "start_date_written": "27.5.1892", "end_date_written": "13.12.1942", "status": "", "source": 140, "references": null, "notes": null, "text": [47460, 47461], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93470, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93471, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93481, "fields": {"name": "Margulies", "review": false, "start_date": "1817-01-01", "end_date": "1880-01-01", "start_date_written": "1817", "end_date_written": "1880", "status": "", "source": 139, "references": null, "notes": null, "text": [47466, 47467], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93482, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93483, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93484, "fields": {"name": "M\u00e1nesov\u00e1", "review": false, "start_date": "1817-01-21", "end_date": null, "start_date_written": "21.1.1817", "end_date_written": "1883.6", "status": "", "source": 137, "references": null, "notes": null, "text": [47468, 47469], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93485, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93486, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93487, "fields": {"name": "M\u00e1nes", "review": false, "start_date": "1828-07-17", "end_date": "1880-08-05", "start_date_written": "17.7.1828", "end_date_written": "5.8.1880", "status": "", "source": 138, "references": null, "notes": null, "text": [47470, 47471], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93488, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93489, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93510, "fields": {"name": "Mayer", "review": false, "start_date": "1894-02-20", "end_date": "1944-07-01", "start_date_written": "20.2.1894", "end_date_written": "1.7.1944", "status": "", "source": 136, "references": null, "notes": null, "text": [47482, 47483], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93511, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93512, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93513, "fields": {"name": "Mahl-Schedl von Alpenburg", "review": false, "start_date": "1806-10-27", "end_date": "1873-04-01", "start_date_written": "27.10.1806", "end_date_written": "1.4.1873", "status": "", "source": 135, "references": null, "notes": null, "text": [47484, 47485], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93514, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93515, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93516, "fields": {"name": "Nov\u00e1\u010dek", "review": false, "start_date": "1860-04-07", "end_date": "1929-08-12", "start_date_written": "7.4.1860", "end_date_written": "12.8.1929", "status": "", "source": 145, "references": null, "notes": null, "text": [47486, 47487], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93517, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93518, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93540, "fields": {"name": "Ortmann", "review": false, "start_date": "1874-03-10", "end_date": "1939-11-22", "start_date_written": "10.3.1874", "end_date_written": "22.11.1939", "status": "", "source": 147, "references": null, "notes": null, "text": [47502, 47503], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93541, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93542, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93546, "fields": {"name": "Oellacher", "review": false, "start_date": "1804-02-16", "end_date": "1880-08-16", "start_date_written": "16.2.1804", "end_date_written": "16.8.1880", "status": "", "source": 146, "references": null, "notes": null, "text": [47506, 47507], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93547, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93548, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93561, "fields": {"name": "Poljanec", "review": false, "start_date": "1872-09-23", "end_date": "1944-08-08", "start_date_written": "23.9.1872", "end_date_written": "8.8.1944", "status": "", "source": 151, "references": null, "notes": null, "text": [47516, 47517], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93562, "fields": {"name": "Bre\u017eice, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93565, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93566, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93573, "fields": {"name": "Petzold", "review": false, "start_date": "1859-11-26", "end_date": "1932-07-15", "start_date_written": "26.11.1859", "end_date_written": "15.7.1932", "status": "", "source": 150, "references": null, "notes": null, "text": [47522, 47523], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93574, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93575, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93588, "fields": {"name": "Peithner von Lichtenfels", "review": false, "start_date": "1833-11-18", "end_date": "1913-01-22", "start_date_written": "18.11.1833", "end_date_written": "22.1.1913", "status": "", "source": 149, "references": "", "notes": "", "text": [47530, 47531], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93589, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93590, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93600, "fields": {"name": "Patera", "review": false, "start_date": "1819-07-11", "end_date": "1894-06-26", "start_date_written": "11.7.1819", "end_date_written": "26.6.1894", "status": "", "source": 148, "references": null, "notes": null, "text": [47536, 47537], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93601, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93602, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93609, "fields": {"name": "Rumpler", "review": false, "start_date": "1771-02-03", "end_date": "1846-03-17", "start_date_written": "3.2.1771", "end_date_written": "17.3.1846", "status": "", "source": 158, "references": null, "notes": null, "text": [47540, 47541], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93610, "fields": {"name": "Seekirchen a. Wallersee", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93613, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93614, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93615, "fields": {"name": "Rotter", "review": false, "start_date": "1868-11-30", "end_date": "1945-09-18", "start_date_written": "30.11.1868", "end_date_written": "18.9.1945", "status": "", "source": 157, "references": null, "notes": null, "text": [47542, 47543], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93616, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93617, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93639, "fields": {"name": "Revertera von Salandra", "review": false, "start_date": "1827-01-21", "end_date": "1904-04-28", "start_date_written": "21.1.1827", "end_date_written": "28.4.1904", "status": "", "source": 156, "references": null, "notes": null, "text": [47556, 47557], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93640, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93641, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93642, "fields": {"name": "Reichenberger", "review": false, "start_date": "1770-11-24", "end_date": "1854-10-26", "start_date_written": "24.11.1770", "end_date_written": "26.10.1854", "status": "", "source": 154, "references": null, "notes": null, "text": [47558, 47559], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93643, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93644, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93645, "fields": {"name": "Reiser", "review": false, "start_date": "1861-12-21", "end_date": "1936-03-31", "start_date_written": "21.12.1861", "end_date_written": "31.3.1936", "status": "", "source": 155, "references": null, "notes": null, "text": [47560, 47561], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93646, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93647, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93651, "fields": {"name": "Randa", "review": false, "start_date": "1874-05-24", "end_date": "1941-08-13", "start_date_written": "24.5.1874", "end_date_written": "13.8.1941", "status": "", "source": 153, "references": null, "notes": null, "text": [47564, 47565], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93652, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93653, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93654, "fields": {"name": "Radakovi\u010d", "review": false, "start_date": "1866-04-25", "end_date": "1934-08-15", "start_date_written": "25.4.1866", "end_date_written": "15.8.1934", "status": "", "source": 152, "references": null, "notes": null, "text": [47566, 47567], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93655, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93656, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93657, "fields": {"name": "Szigligeti", "review": false, "start_date": "1814-03-08", "end_date": "1878-01-19", "start_date_written": "8.3.1814", "end_date_written": "19.1.1878", "status": "", "source": 194, "references": null, "notes": null, "text": [47568, 47569], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93658, "fields": {"name": "Oradea-Olosig, jud. Bihor", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93661, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93662, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93663, "fields": {"name": "Szurmay von Uzsok", "review": false, "start_date": "1860-12-19", "end_date": "1945-03-26", "start_date_written": "19.12.1860", "end_date_written": "26.3.1945", "status": "", "source": 195, "references": null, "notes": null, "text": [47570, 47571], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93664, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93665, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93678, "fields": {"name": "St\u00fclz", "review": false, "start_date": "1799-02-23", "end_date": "1872-06-28", "start_date_written": "23.2.1799", "end_date_written": "28.6.1872", "status": "", "source": 193, "references": null, "notes": null, "text": [47580, 47581], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93679, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93680, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93684, "fields": {"name": "Stowasser", "review": false, "start_date": "1887-10-21", "end_date": "1934-02-19", "start_date_written": "21.10.1887", "end_date_written": "19.2.1934", "status": "", "source": 192, "references": null, "notes": null, "text": [47584, 47585], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93685, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93686, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93702, "fields": {"name": "Steindler", "review": false, "start_date": "1879-10-28", "end_date": "1933-12-21", "start_date_written": "28.10.1879", "end_date_written": "21.12.1933", "status": "", "source": 190, "references": null, "notes": null, "text": [47594, 47595], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93703, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93704, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93705, "fields": {"name": "Stein", "review": false, "start_date": "1891-09-19", "end_date": "1945-02-25", "start_date_written": "19.9.1891", "end_date_written": "25.2.1945", "status": "", "source": 191, "references": null, "notes": null, "text": [47596, 47597], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93706, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93707, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93714, "fields": {"name": "Stariha", "review": false, "start_date": "1845-05-12", "end_date": "1915-12-15", "start_date_written": "12.5.1845", "end_date_written": "15.12.1915", "status": "", "source": 189, "references": null, "notes": null, "text": [47602, 47603], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93715, "fields": {"name": "Sadinja vas, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93718, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93719, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93748, "fields": {"name": "\u0160njari\u0107", "review": false, "start_date": "1851-06-22", "end_date": "1930-01-28", "start_date_written": "22.6.1851", "end_date_written": "28.1.1930", "status": "", "source": 188, "references": null, "notes": null, "text": [47614, 47615], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93749, "fields": {"name": "\u010canak, sr. Gospi\u0107", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93752, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93753, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93779, "fields": {"name": "Sichulski", "review": false, "start_date": "1879-01-17", "end_date": "1942-11-06", "start_date_written": "17.1.1879", "end_date_written": "6.11.1942", "status": "", "source": 187, "references": null, "notes": null, "text": [47626, 47627], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93780, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93781, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93785, "fields": {"name": "Settari", "review": false, "start_date": "1841-10-04", "end_date": "1905-01-29", "start_date_written": "4.10.1841", "end_date_written": "29.1.1905", "status": "", "source": 186, "references": null, "notes": null, "text": [47630, 47631], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93786, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93787, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93791, "fields": {"name": "Sehnal", "review": false, "start_date": "1851-12-22", "end_date": "1910-09-12", "start_date_written": "22.12.1851", "end_date_written": "12.9.1910", "status": "", "source": 185, "references": null, "notes": null, "text": [47634, 47635], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93792, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93793, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93800, "fields": {"name": "Schwartz", "review": false, "start_date": "1852-02-28", "end_date": "1929-09-15", "start_date_written": "28.2.1852", "end_date_written": "15.9.1929", "status": "", "source": 181, "references": null, "notes": null, "text": [47640, 47641], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93801, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93802, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93803, "fields": {"name": "Schwarz", "review": false, "start_date": "1840-11-16", "end_date": "1903-12-28", "start_date_written": "16.11.1840", "end_date_written": "28.12.1903", "status": "", "source": 182, "references": null, "notes": null, "text": [47642, 47643], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93804, "fields": {"name": "\u0160umperk-Temenice, kr. Olomouck\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93807, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93808, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93809, "fields": {"name": "Schwarz", "review": false, "start_date": "1811-11-06", "end_date": "1879-05-07", "start_date_written": "6.11.1811", "end_date_written": "7.5.1879", "status": "", "source": 183, "references": null, "notes": null, "text": [47644, 47645], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93810, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93811, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93815, "fields": {"name": "Schweitzer", "review": false, "start_date": "1815-02-01", "end_date": "1896-07-09", "start_date_written": "1.2.1815", "end_date_written": "9.7.1896", "status": "", "source": 184, "references": null, "notes": null, "text": [47648, 47649], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93816, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93817, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93818, "fields": {"name": "Schwabl", "review": false, "start_date": "1854-06-29", "end_date": "1923-04-16", "start_date_written": "29.6.1854", "end_date_written": "16.4.1923", "status": "", "source": 180, "references": null, "notes": null, "text": [47650, 47651], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93819, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93820, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93836, "fields": {"name": "Schu\u00ebcker", "review": false, "start_date": "1860-11-16", "end_date": "1911-11-09", "start_date_written": "16.11.1860", "end_date_written": "9.11.1911", "status": "", "source": 179, "references": null, "notes": null, "text": [47660, 47661], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93837, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93838, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93839, "fields": {"name": "Schr\u00f6dl", "review": false, "start_date": "1841-07-07", "end_date": "1908-12-05", "start_date_written": "7.7.1841", "end_date_written": "5.12.1908", "status": "", "source": 178, "references": null, "notes": null, "text": [47662, 47663], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93841, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93854, "fields": {"name": "Schreyer", "review": false, "start_date": "1876-12-09", "end_date": "1950-04-14", "start_date_written": "9.12.1876", "end_date_written": "14.4.1950", "status": "", "source": 177, "references": null, "notes": null, "text": [47672, 47673], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93855, "fields": {"name": "B\u0159idli\u010dn\u00e1, kr. Moravskoslezsk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93858, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93859, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93863, "fields": {"name": "Scholz", "review": false, "start_date": "1819-08-20", "end_date": "1902-05-19", "start_date_written": "20.8.1819", "end_date_written": "19.5.1902", "status": "", "source": 175, "references": null, "notes": null, "text": [47676, 47677], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93864, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93865, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93866, "fields": {"name": "Schrammel", "review": false, "start_date": "1850-05-22", "end_date": "1893-06-17", "start_date_written": "22.5.1850", "end_date_written": "17.6.1893", "status": "", "source": 176, "references": null, "notes": null, "text": [47678, 47679], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93867, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93868, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93878, "fields": {"name": "Scholl", "review": false, "start_date": "1805-01-01", "end_date": "1884-12-12", "start_date_written": "1805", "end_date_written": "12.12.1884", "status": "", "source": 174, "references": null, "notes": null, "text": [47684, 47685], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93879, "fields": {"name": "Regio oder Rea (?)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93880, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93881, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93891, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1804-06-30", "end_date": "1880-12-19", "start_date_written": "30.6.1804", "end_date_written": "19.12.1880", "status": "", "source": 172, "references": null, "notes": null, "text": [47688, 47689], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93892, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93893, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93894, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1863-09-12", "end_date": "1930-03-09", "start_date_written": "12.9.1863", "end_date_written": "9.3.1930", "status": "", "source": 173, "references": null, "notes": null, "text": [47690, 47691], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93895, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93896, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93900, "fields": {"name": "Schnitzler", "review": false, "start_date": "1865-07-13", "end_date": "1939-06-29", "start_date_written": "13.7.1865", "end_date_written": "29.6.1939", "status": "", "source": 169, "references": null, "notes": null, "text": [47694, 47695], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93901, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93902, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93903, "fields": {"name": "Schober", "review": false, "start_date": "1856-12-15", "end_date": "1917-03-07", "start_date_written": "15.12.1856", "end_date_written": "7.3.1917", "status": "", "source": 170, "references": null, "notes": null, "text": [47696, 47697], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93905, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93909, "fields": {"name": "Schoeller", "review": false, "start_date": "1826-10-05", "end_date": "1889-06-25", "start_date_written": "5.10.1826", "end_date_written": "25.6.1889", "status": "", "source": 171, "references": null, "notes": null, "text": [47700, 47701], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93910, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93911, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93921, "fields": {"name": "Schmutzler", "review": false, "start_date": "1864-03-29", "end_date": "1940-06-20", "start_date_written": "29.3.1864", "end_date_written": "20.6.1940", "status": "", "source": 168, "references": null, "notes": null, "text": [47706, 47707], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93922, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93923, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93933, "fields": {"name": "Schmidt", "review": false, "start_date": "1904-03-04", "end_date": "1942-11-16", "start_date_written": "4.3.1904", "end_date_written": "16.11.1942", "status": "", "source": 167, "references": null, "notes": null, "text": [47712, 47713], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93934, "fields": {"name": "Davydivka, obl. \u010cernivci", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93937, "fields": {"name": "Girenbad b. Hinwil, Kanton Z\u00fcrich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93938, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93939, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93940, "fields": {"name": "Schmidt", "review": false, "start_date": "1826-12-09", "end_date": "1892-03-28", "start_date_written": "9.12.1826", "end_date_written": "28.3.1892", "status": "", "source": 166, "references": null, "notes": null, "text": [47714, 47715], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93941, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93942, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93946, "fields": {"name": "Schmal", "review": false, "start_date": "1844-09-23", "end_date": "1900-12-24", "start_date_written": "23.9.1844", "end_date_written": "24.12.1900", "status": "", "source": 164, "references": null, "notes": null, "text": [47718, 47719], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93947, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93948, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93955, "fields": {"name": "Schmidt-Beauchez", "review": false, "start_date": "1848-06-06", "end_date": "1912-12-14", "start_date_written": "6.6.1848", "end_date_written": "14.12.1912", "status": "", "source": 165, "references": null, "notes": null, "text": [47724, 47725], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93956, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93957, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93958, "fields": {"name": "Schindler", "review": false, "start_date": "1835-06-23", "end_date": "1911-02-22", "start_date_written": "23.6.1835", "end_date_written": "22.2.1911", "status": "", "source": 163, "references": null, "notes": null, "text": [47726, 47727], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93959, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93960, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93961, "fields": {"name": "Scheu", "review": false, "start_date": "1841-09-15", "end_date": "1904-10-12", "start_date_written": "15.9.1841", "end_date_written": "12.10.1904", "status": "", "source": 161, "references": null, "notes": null, "text": [47728, 47729], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93962, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93963, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93964, "fields": {"name": "Schikaneder", "review": false, "start_date": "1855-02-27", "end_date": "1924-11-15", "start_date_written": "27.2.1855", "end_date_written": "15.11.1924", "status": "", "source": 162, "references": null, "notes": null, "text": [47730, 47731], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93965, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93966, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93967, "fields": {"name": "Schell", "review": false, "start_date": "1892-12-19", "end_date": "1945-06-02", "start_date_written": "19.12.1892", "end_date_written": "2.6.1945", "status": "", "source": 159, "references": null, "notes": null, "text": [47732, 47733], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93968, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93969, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93970, "fields": {"name": "Schenk", "review": false, "start_date": "1840-08-23", "end_date": "1902-08-17", "start_date_written": "23.8.1840", "end_date_written": "17.8.1902", "status": "", "source": 160, "references": null, "notes": null, "text": [47734, 47735], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93971, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93972, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93988, "fields": {"name": "T\u00f6lgyessy", "review": false, "start_date": "1853-05-01", "end_date": "1920-02-02", "start_date_written": "1.5.1853", "end_date_written": "2.2.1920", "status": "", "source": 201, "references": null, "notes": null, "text": [47746, 47747], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93989, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93990, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93991, "fields": {"name": "Thun und Hohenstein", "review": false, "start_date": "1763-03-28", "end_date": "1818-10-09", "start_date_written": "28.3.1763", "end_date_written": "9.10.1818", "status": "", "source": 200, "references": null, "notes": null, "text": [47748, 47749], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93992, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93993, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94003, "fields": {"name": "Teschenberg", "review": false, "start_date": "1836-05-21", "end_date": "1886-02-25", "start_date_written": "21.5.1836", "end_date_written": "25.2.1886", "status": "", "source": 197, "references": "", "notes": "", "text": [47754, 47755], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94006, "fields": {"name": "Tetmajer", "review": false, "start_date": "1865-02-12", "end_date": "1940-01-18", "start_date_written": "12.2.1865", "end_date_written": "18.1.1940", "status": "", "source": 198, "references": null, "notes": null, "text": [47756, 47757], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94007, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94008, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94009, "fields": {"name": "Teuber", "review": false, "start_date": "1877-05-11", "end_date": "1943-02-03", "start_date_written": "11.5.1877", "end_date_written": "3.2.1943", "status": "", "source": 199, "references": null, "notes": null, "text": [47758, 47759], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94018, "fields": {"name": "Tauber", "review": false, "start_date": "1891-05-16", "end_date": "1948-01-08", "start_date_written": "16.5.1891", "end_date_written": "8.1.1948", "status": "", "source": 196, "references": null, "notes": null, "text": [47764, 47765], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94160, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94161, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94162, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94163, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94164, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94165, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94166, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94167, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94168, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94169, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94170, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94171, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94174, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94175, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98116, "fields": {"name": "wien", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99591, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111335, "fields": {"name": "Schlacht von St. Lucia", "review": false, "start_date": "1848-05-06", "end_date": null, "start_date_written": "6.5.1848", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Schlacht_von_Santa_Lucia", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111348, "fields": {"name": "Schlacht bei K\u00f6niggr\u00e4tz", "review": false, "start_date": "1866-07-03", "end_date": null, "start_date_written": "3.7.1866", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Schlacht_bei_K%C3%B6niggr%C3%A4tz", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111365, "fields": {"name": "Zweiter Unabh\u00e4ngigkeitskrieg Italien", "review": false, "start_date": "1859-01-01", "end_date": null, "start_date_written": "1859", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Italienische_Unabh%C3%A4ngigkeitskriege#Zweiter_Unabh.C3.A4ngigkeitskrieg_.281859.29", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.source", "pk": 102, "fields": {"orig_filename": "Bahr_Hermann_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f.", "author": "", "orig_id": 1405476}}, {"model": "metainfo.source", "pk": 103, "fields": {"orig_filename": "Celakovsky_Jaromir_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416946}}, {"model": "metainfo.source", "pk": 104, "fields": {"orig_filename": "Celakovsky_Ladislav_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416947}}, {"model": "metainfo.source", "pk": 105, "fields": {"orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416953}}, {"model": "metainfo.source", "pk": 106, "fields": {"orig_filename": "Charlemont_Hugo_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417029}}, {"model": "metainfo.source", "pk": 107, "fields": {"orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417140}}, {"model": "metainfo.source", "pk": 108, "fields": {"orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417315}}, {"model": "metainfo.source", "pk": 109, "fields": {"orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417317}}, {"model": "metainfo.source", "pk": 110, "fields": {"orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417316}}, {"model": "metainfo.source", "pk": 111, "fields": {"orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417320}}, {"model": "metainfo.source", "pk": 112, "fields": {"orig_filename": "Conze_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f.", "author": "", "orig_id": 1417417}}, {"model": "metainfo.source", "pk": 113, "fields": {"orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417431}}, {"model": "metainfo.source", "pk": 114, "fields": {"orig_filename": "Czerny_Adalbert_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417613}}, {"model": "metainfo.source", "pk": 116, "fields": {"orig_filename": "Czetz_Johann_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f.", "author": "", "orig_id": 1417689}}, {"model": "metainfo.source", "pk": 117, "fields": {"orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417691}}, {"model": "metainfo.source", "pk": 118, "fields": {"orig_filename": "Defregger_Franz_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417167}}, {"model": "metainfo.source", "pk": 119, "fields": {"orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417262}}, {"model": "metainfo.source", "pk": 120, "fields": {"orig_filename": "Doderer_Wilhelm_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421589}}, {"model": "metainfo.source", "pk": 121, "fields": {"orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422065}}, {"model": "metainfo.source", "pk": 122, "fields": {"orig_filename": "Holovsky_Hilde_1917_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417020}}, {"model": "metainfo.source", "pk": 123, "fields": {"orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412571}}, {"model": "metainfo.source", "pk": 124, "fields": {"orig_filename": "Lapaine_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f.", "author": "", "orig_id": 1412681}}, {"model": "metainfo.source", "pk": 125, "fields": {"orig_filename": "Lefler_Heinrich_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413578}}, {"model": "metainfo.source", "pk": 126, "fields": {"orig_filename": "Leichter_Kaethe_1895_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413749}}, {"model": "metainfo.source", "pk": 127, "fields": {"orig_filename": "Leidesdorf_Franz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f.", "author": "", "orig_id": 1413751}}, {"model": "metainfo.source", "pk": 128, "fields": {"orig_filename": "Leitgeb_Hubert_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f.", "author": "", "orig_id": 1413852}}, {"model": "metainfo.source", "pk": 129, "fields": {"orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412686}}, {"model": "metainfo.source", "pk": 130, "fields": {"orig_filename": "Lichtblau_Adolf_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411908}}, {"model": "metainfo.source", "pk": 131, "fields": {"orig_filename": "Lichtblau_Ludwig_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f.", "author": "", "orig_id": 1411907}}, {"model": "metainfo.source", "pk": 132, "fields": {"orig_filename": "Lobmeyr_Josef_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263", "author": "", "orig_id": 1411542}}, {"model": "metainfo.source", "pk": 133, "fields": {"orig_filename": "Loewy_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297", "author": "", "orig_id": 1411913}}, {"model": "metainfo.source", "pk": 134, "fields": {"orig_filename": "Lorenz_Heinrich_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316", "author": "", "orig_id": 1412111}}, {"model": "metainfo.source", "pk": 135, "fields": {"orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f.", "author": "", "orig_id": 1411846}}, {"model": "metainfo.source", "pk": 136, "fields": {"orig_filename": "Maier_Karl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412133}}, {"model": "metainfo.source", "pk": 137, "fields": {"orig_filename": "Manesova_Amalie_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f.", "author": "", "orig_id": 1409111}}, {"model": "metainfo.source", "pk": 138, "fields": {"orig_filename": "Manes_Quido_1828_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409109}}, {"model": "metainfo.source", "pk": 139, "fields": {"orig_filename": "Margulies_Berl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1409490}}, {"model": "metainfo.source", "pk": 140, "fields": {"orig_filename": "Meithner_Karl_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f.", "author": "", "orig_id": 1413879}}, {"model": "metainfo.source", "pk": 141, "fields": {"orig_filename": "Miklosich_Franz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f.", "author": "", "orig_id": 1413368}}, {"model": "metainfo.source", "pk": 142, "fields": {"orig_filename": "Millosicz_Georg_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f.", "author": "", "orig_id": 1413706}}, {"model": "metainfo.source", "pk": 143, "fields": {"orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412553}}, {"model": "metainfo.source", "pk": 144, "fields": {"orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413568}}, {"model": "metainfo.source", "pk": 145, "fields": {"orig_filename": "Novacek_Rudolf_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f.", "author": "", "orig_id": 1408134}}, {"model": "metainfo.source", "pk": 146, "fields": {"orig_filename": "Oellacher_Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408688}}, {"model": "metainfo.source", "pk": 147, "fields": {"orig_filename": "Ortmann_Rudolf_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409161}}, {"model": "metainfo.source", "pk": 148, "fields": {"orig_filename": "Patera_Adolf_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f.", "author": "", "orig_id": 1408720}}, {"model": "metainfo.source", "pk": 149, "fields": {"orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f.", "author": "", "orig_id": 1409360}}, {"model": "metainfo.source", "pk": 150, "fields": {"orig_filename": "Petzold_Emil_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407914}}, {"model": "metainfo.source", "pk": 151, "fields": {"orig_filename": "Poljanec_Leopold_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410619}}, {"model": "metainfo.source", "pk": 152, "fields": {"orig_filename": "Radakovic_Michael_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f.", "author": "", "orig_id": 1409702}}, {"model": "metainfo.source", "pk": 153, "fields": {"orig_filename": "Randa_Maximilian_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411", "author": "", "orig_id": 1410086}}, {"model": "metainfo.source", "pk": 154, "fields": {"orig_filename": "Reichenberger_Andreas_1770_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f.", "author": "", "orig_id": 1406805}}, {"model": "metainfo.source", "pk": 155, "fields": {"orig_filename": "Reiser_Othmar_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406978}}, {"model": "metainfo.source", "pk": 156, "fields": {"orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f.", "author": "", "orig_id": 1407193}}, {"model": "metainfo.source", "pk": 157, "fields": {"orig_filename": "Rotter_Johann_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f.", "author": "", "orig_id": 1407684}}, {"model": "metainfo.source", "pk": 158, "fields": {"orig_filename": "Rumpler_Matthias_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327", "author": "", "orig_id": 1407832}}, {"model": "metainfo.source", "pk": 159, "fields": {"orig_filename": "Schell_Karl_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f.", "author": "", "orig_id": 1406179}}, {"model": "metainfo.source", "pk": 160, "fields": {"orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f.", "author": "", "orig_id": 1406202}}, {"model": "metainfo.source", "pk": 161, "fields": {"orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f.", "author": "", "orig_id": 1406044}}, {"model": "metainfo.source", "pk": 162, "fields": {"orig_filename": "Schikaneder_Jakub_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f.", "author": "", "orig_id": 1406374}}, {"model": "metainfo.source", "pk": 163, "fields": {"orig_filename": "Schindler_Josef_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153", "author": "", "orig_id": 1406252}}, {"model": "metainfo.source", "pk": 164, "fields": {"orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406496}}, {"model": "metainfo.source", "pk": 165, "fields": {"orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f.", "author": "", "orig_id": 1406721}}, {"model": "metainfo.source", "pk": 166, "fields": {"orig_filename": "Schmid_Anton_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f.", "author": "", "orig_id": 1406531}}, {"model": "metainfo.source", "pk": 167, "fields": {"orig_filename": "Schmid_Joseph_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f.", "author": "", "orig_id": 1406597}}, {"model": "metainfo.source", "pk": 168, "fields": {"orig_filename": "Schmutzler_Leopold_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f.", "author": "", "orig_id": 1406623}}, {"model": "metainfo.source", "pk": 169, "fields": {"orig_filename": "Schnitzler_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f.", "author": "", "orig_id": 1406896}}, {"model": "metainfo.source", "pk": 170, "fields": {"orig_filename": "Schober_Alfred_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f.", "author": "", "orig_id": 1406912}}, {"model": "metainfo.source", "pk": 171, "fields": {"orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405414}}, {"model": "metainfo.source", "pk": 172, "fields": {"orig_filename": "Schoenberger_Adolf_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405629}}, {"model": "metainfo.source", "pk": 173, "fields": {"orig_filename": "Schoenberger_Benno_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405634}}, {"model": "metainfo.source", "pk": 174, "fields": {"orig_filename": "Scholl_Joseph_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f.", "author": "", "orig_id": 1412321}}, {"model": "metainfo.source", "pk": 175, "fields": {"orig_filename": "Scholz_Franz_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412411}}, {"model": "metainfo.source", "pk": 176, "fields": {"orig_filename": "Schrammel_Johann_1850_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff.", "author": "", "orig_id": 1411222}}, {"model": "metainfo.source", "pk": 177, "fields": {"orig_filename": "Schreyer_Johann_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411681}}, {"model": "metainfo.source", "pk": 178, "fields": {"orig_filename": "Schroedl_Leopold_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236", "author": "", "orig_id": 1411777}}, {"model": "metainfo.source", "pk": 179, "fields": {"orig_filename": "Schuecker_Edmund_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f.", "author": "", "orig_id": 1412171}}, {"model": "metainfo.source", "pk": 180, "fields": {"orig_filename": "Schwabl_Franz_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f.", "author": "", "orig_id": 1420210}}, {"model": "metainfo.source", "pk": 181, "fields": {"orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f.", "author": "", "orig_id": 1420456}}, {"model": "metainfo.source", "pk": 182, "fields": {"orig_filename": "Schwarz_Johann_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439", "author": "", "orig_id": 1420439}}, {"model": "metainfo.source", "pk": 183, "fields": {"orig_filename": "Schwarz_Kaspar_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445", "author": "", "orig_id": 1420450}}, {"model": "metainfo.source", "pk": 184, "fields": {"orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f.", "author": "", "orig_id": 1439729}}, {"model": "metainfo.source", "pk": 185, "fields": {"orig_filename": "Sehnal_Eugen_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f.", "author": "", "orig_id": 1439478}}, {"model": "metainfo.source", "pk": 186, "fields": {"orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197", "author": "", "orig_id": 1450886}}, {"model": "metainfo.source", "pk": 187, "fields": {"orig_filename": "Sichulski_Kazimierz_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223", "author": "", "orig_id": 1450008}}, {"model": "metainfo.source", "pk": 188, "fields": {"orig_filename": "Snjaric_Lukas_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384", "author": "", "orig_id": 1457373}}, {"model": "metainfo.source", "pk": 189, "fields": {"orig_filename": "Stariha_Janez-Nep_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105", "author": "", "orig_id": 1428070}}, {"model": "metainfo.source", "pk": 190, "fields": {"orig_filename": "Steindler_Olga_1879_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f.", "author": "", "orig_id": 1430730}}, {"model": "metainfo.source", "pk": 191, "fields": {"orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149", "author": "", "orig_id": 1428363}}, {"model": "metainfo.source", "pk": 192, "fields": {"orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f.", "author": "", "orig_id": 1434284}}, {"model": "metainfo.source", "pk": 193, "fields": {"orig_filename": "Stuelz_Jodok_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443", "author": "", "orig_id": 1433097}}, {"model": "metainfo.source", "pk": 194, "fields": {"orig_filename": "Szigligeti_Ede_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154", "author": "", "orig_id": 1434706}}, {"model": "metainfo.source", "pk": 195, "fields": {"orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178", "author": "", "orig_id": 1435139}}, {"model": "metainfo.source", "pk": 196, "fields": {"orig_filename": "Tauber_Richard_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff.", "author": "", "orig_id": 1422288}}, {"model": "metainfo.source", "pk": 197, "fields": {"orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257", "author": "", "orig_id": 1424387}}, {"model": "metainfo.source", "pk": 198, "fields": {"orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 2047416}}, {"model": "metainfo.source", "pk": 199, "fields": {"orig_filename": "Teuber_Emmerich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f.", "author": "", "orig_id": 1448255}}, {"model": "metainfo.source", "pk": 200, "fields": {"orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f.", "author": "", "orig_id": 1424667}}, {"model": "metainfo.source", "pk": 201, "fields": {"orig_filename": "Toelgyessy_Artur_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1458532}}, {"model": "metainfo.source", "pk": 531, "fields": {"orig_filename": "Thalberg_Sigismund_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277", "author": "", "orig_id": 1424641}}, {"model": "metainfo.source", "pk": 5804, "fields": {"orig_filename": "Reicha_Anton-Josef_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27", "author": "", "orig_id": 1406794}}, {"model": "metainfo.source", "pk": 8543, "fields": {"orig_filename": "Moscheles_Ignaz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f.", "author": "", "orig_id": 1413099}}, {"model": "metainfo.source", "pk": 10332, "fields": {"orig_filename": "Liszt_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f.", "author": "", "orig_id": 1411364}}, {"model": "metainfo.source", "pk": 17415, "fields": {"orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418730}}, {"model": "metainfo.source", "pk": 17608, "fields": {"orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f.", "author": "", "orig_id": 1406636}}, {"model": "metainfo.source", "pk": 17852, "fields": {"orig_filename": "Baeuerle_Friederike_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420833}}, {"model": "metainfo.source", "pk": 18525, "fields": {"orig_filename": "Czerny_Carl_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417615}}, {"model": "metainfo.text", "pk": 11195, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11196, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11197, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11198, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11199, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11200, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11203, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11204, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11205, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11206, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11207, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11210, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11211, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11214, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11215, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11218, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11219, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11220, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11221, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11222, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11223, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11224, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11225, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11226, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11227, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11228, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11229, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11230, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11231, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11234, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11235, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11236, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11237, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11238, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11239, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11240, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11241, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11242, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11243, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11244, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11245, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11246, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11249, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11250, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11251, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11252, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11253, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11254, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11255, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11256, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11257, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11258, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11259, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11260, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11261, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11262, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11263, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11266, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11269, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11270, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11271, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11272, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11275, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11278, "fields": {"kind": 236, "text": "http://www.geonames.org/maps/google_46.547_15.596.html\r\nOthmar Reiser's Geburtsort ist Hrastje, der heute Pekre heisst, und neben Maribor liegt.", "source": null}}, {"model": "metainfo.text", "pk": 11279, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11280, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11281, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11284, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11285, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11286, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11287, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11288, "fields": {"kind": 236, "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, B\u00f6hmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der b\u00f6hmische Lachovice der richtige", "source": null}}, {"model": "metainfo.text", "pk": 11289, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11290, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11291, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11292, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11293, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11294, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11299, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11300, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11301, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11302, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11303, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11304, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11305, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11308, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11311, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11312, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11313, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11314, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11317, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11318, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11319, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11320, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11321, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11322, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11323, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11324, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11325, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11326, "fields": {"kind": 236, "text": "ziemlich viele \u00d6BL labels f\u00fcr Meran!", "source": null}}, {"model": "metainfo.text", "pk": 11327, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11330, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11331, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11334, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11335, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11336, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11337, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11338, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11339, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11342, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11343, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11344, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11345, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11346, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11347, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11348, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11349, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11350, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11351, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 12155, "fields": {"kind": 130, "text": "Sohn von Joseph T. und Fortun\u00e9e Stein (urkundl.; vermutl. jedoch illegitimer Sohn von \u00bfFranz Josef F\u00fcrst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers Fran\u00e7ois Boucher und Tochter des Operns\u00e4ngers Luigi Lablache, verheiratet. \u2013 T. zog 1822 nach Wien, wo er Klavierunterricht beim Ersten Fagottisten der Hofoper, August Mittag, erhielt und das polytechn. Inst. besucht haben soll (nicht nachweisbar). In weiterer Folge stud. er bei \u00bfSimon Sechter (Theorie) und \u00bfJohann Nep. Hummel (Klavier). 1826 trat er erstmals, zun\u00e4chst in Wr. Privatzirkeln, als Pianist auf. 1830 f\u00fchrte ihn die erste Auslandstournee nach Dtld. und England, anschlie\u00dfend in andere europ. L\u00e4nder. Nach weiteren Stud. bei \u00bfIgnaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 gro\u00dfe Erfolge in Paris und triumphierte 1837\u201348 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und S\u00fcdamerika, wo er u.\u00a0a. in New York eine Klavierschule gr\u00fcndete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die n\u00e4chsten Jahre zur\u00fcckgezogen lebte. Nach Wiederaufnahme seiner Tourneen 1862 (London und Paris) ging er 1863 abermals nach Brasilien, danach schied er aus dem Konzertleben aus. Einem Brief Felix Mendelssohn-Bartholdys zufolge galt T. bis zur Jh.mitte neben \u00bfFranz v. Liszt als gr\u00f6\u00dfter Klaviervirtuose seiner Zeit. 1837 kam es zu einem \u00f6ff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle \u00d6ffentlichkeit sah Liszt als Romantiker, w\u00e4hrend der von seinem Auftreten her aristokrat. T. eher f\u00fcr ein klassizist. Musikideal stand. Auch die Qualit\u00e4t der Kompositionen beider wurde kontr\u00e4r beurteilt. Liszt bezeichnete T.s Werke in der \u201eRevue et gazette musicale de Paris\u201c als eine Mischung aus Monotonie und Unverm\u00f6gen. Die so aufgeschaukelte Rivalit\u00e4t kulminierte, als beide Musiker an einem von F\u00fcrstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Fr\u00e9d\u00e9ric Chopin und \u00bfCarl Czerny, an einer Kollektivkomposition f\u00fcr die F\u00fcrstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen \u00fcber Themen bekannter Opern dessen gr\u00f6\u00dften Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zur\u00fcck. T.s Personalstil kennzeichneten v.\u00a0a. das Hervortreten der auf beide H\u00e4nde verteilten Melodie in der Mittellage, w\u00e4hrend diese u.\u00a0a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. \u201eL\u2019Art du chant appliqu\u00e9 au piano\u201c festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosit\u00e4t, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n", "source": 531}}, {"model": "metainfo.text", "pk": 12156, "fields": {"kind": 131, "text": "Thalberg Sigismund (Fortun\u00e9 Fran\u00e7ois), Pianist und Komponist. Geb. P\u00e2quis (Gen\u00e8ve-Bains des P\u00e2quis, CH), 8.\u00a01. 1812; gest. Posillipo (Napoli, I), 27.\u00a04. 1871.", "source": 531}}, {"model": "metainfo.text", "pk": 21722, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckers; lebte ab ca. 1781 bei seinem Gro\u00dfvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurf\u00fcrstlichen Hof in Bonn t\u00e4tig war. 1787 wurde R. Fl\u00f6tist der Hofkapelle und begann zu komponieren. 1794\u201399 lebte er in Hamburg und verdiente seinen Lebensunterhalt mit Musikunterricht, ab 1799 in Paris, wo er vergeblich auf die Urauff. zweier von ihm komponierter Opern hoffte. 1802\u201308 war er in Wien und stud. u. a. bei J. Haydn, Albrechtsberger und Salieri Komposition. Ab 1808 lebte R. in Paris, ab 1818 als Prof. f\u00fcr Komposition. Als Musikp\u00e4dagoge und Theoretiker erlangte er gro\u00dfes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Sch\u00fclern geh\u00f6rten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterlie\u00df auch als Komponist ein wertvolles und umfangreiches \u0152uvre. Mit seinen 24 Bl\u00e4serquintetten schuf er die Grundlage f\u00fcr das Repertoire derartiger Kammerensembles.\n", "source": 5804}}, {"model": "metainfo.text", "pk": 21723, "fields": {"kind": 131, "text": "Reicha\u00a0(Rejcha) Anton (Anton\u00edn) Josef, Komponist und Musikp\u00e4dagoge. * Prag, 26. 2. 1770; \u2020 Paris, 28. 5. 1836.", "source": 5804}}, {"model": "metainfo.text", "pk": 27186, "fields": {"kind": 130, "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808\u201320 lebte er in Wien und stud. bei Streicher, Albrechtsberger und Salieri. M. unterrichtete selbst, auch in der besten Ges. M., dessen Ruhm als Pianist und Komponist (seine Variationen \u00fcber den Alexander-Marsch von 1815 blieben jahrzehntelang ein Pr\u00fcfstein pianist. Virtuosit\u00e4t) st\u00e4ndig wuchs, trat in Prag, Leipzig und Dresden auf. 1820 machte er ausgedehnte Reisen durch Deutschland, Holland, Belgien, Frankreich und England und hielt sich auch wieder l\u00e4nger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 \u00fcbersiedelte M. nach London und geh\u00f6rte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den f\u00fchrenden Pers\u00f6nlichkeiten des Musiklebens. 1846 \u00fcbernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der gro\u00dfen Pianisten seiner Zeit und setzte sich vor allem f\u00fcr Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des \u201eFidelio\u201c hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bem\u00fchte er sich tatkr\u00e4ftig um dessen Unterst\u00fctzung durch die Londoner Philharmonic Society.\n", "source": 8543}}, {"model": "metainfo.text", "pk": 27187, "fields": {"kind": 131, "text": "Moscheles\u00a0Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; \u2020 Leipzig, 10. 3. 1870.", "source": 8543}}, {"model": "metainfo.text", "pk": 30762, "fields": {"kind": 130, "text": "Sohn des Esterh\u00e1zyschen Verwalters Adam L. (1776\u20131827), Neffe des Vorigen, Vetter des Arztes und Schriftstellers Joseph Anton L. (s. d.) und des Folgenden; erhielt den ersten Klavierunterricht vom Vater. Im August oder September 1819 d\u00fcrfte er in Baden bei Wien erstmals \u00f6ff. aufgetreten sein. Weitere Konzerte folgten in \u00d6denburg und Pre\u00dfburg. Auf Grund des letzten (26. 11. 1820) setzten ihm ung. Magnaten ein Studienstipendium aus. Da J. N. Hummels (s. d.) Forderungen zu hoch waren, brachte der Vater den Knaben nach Wien zu C. Czerny (s. d.). Neben dessen Klavierunterricht erhielt er Unterweisung in Musiktheorie durch A. Salieri. 1822 wurde der Elfj\u00e4hrige zur Mitarbeit an A. Diabellis (s. d.) \u201eVaterl\u00e4ndischem K\u00fcnstlerverein\u201c eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er \u00f6ff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum gek\u00fc\u00dft. Der Erl\u00f6s dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die M\u00f6glichkeit zur \u00dcbersiedlung nach Paris; auf der Reise und sp\u00e4ter von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausl\u00e4nder die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., haupts\u00e4chlich nach der Methode Kalkbrenners (s. d.) fort, stud. aber Musiktheorie bei F. Paer und A. Reicha. Er blieb bis 1837 in Paris und unterrichtete in den h\u00f6chsten Kreisen. Berlioz und Paganini regten seine k\u00fcnstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem pers\u00f6nlichen Kontakt stand. 1835\u201339 lebte L. mit Gfn. Marie d\u2019Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die K\u00fcnstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzertt\u00e4tigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa f\u00fchrte. In Kiew begegnete er 1847 der F\u00fcrstin Carolyne Sayn-Wittgenstein, welche ihren Mann verlie\u00df und sich schlie\u00dflich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum gro\u00dfherzoglichen Kapellmeister in au\u00dferordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausge\u00fcbt hatte und nun in vollem Ma\u00dfe aufnahm. Seine Lebensgemeinschaft mit der F\u00fcrstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verh\u00e4ltnissen entfaltete er eine erfolgreiche k\u00fcnstler. T\u00e4tigkeit, welche in dem selbstlosen Eintreten f\u00fcr R. Wagner gipfelte. Wahrscheinlich unter dem Einflu\u00df der F\u00fcrstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither f\u00fchrte er ein unstetes und unbefriedigtes Wanderleben, kehrte f\u00fcr kurze Zeit auch nach Weimar zur\u00fcck, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fu\u00dfend, die Klaviertechnik ungeheuer ausgebaut, in Richtung auf den Orchesterklang hin, auf eine neue Gesanglichkeit vom romant. Lied her und auf die von ihm bedeutend erweiterten M\u00f6glichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilit\u00e4t des Anschlages. Nicht weniger hat L. als Komponist gewirkt, hier vor allem auf harmon. Gebiet, wegweisend aber auch in der Auslotung der techn. und formalen M\u00f6glichkeiten \u00fcberhaupt und in der Programmatik der inhaltlichen Erf\u00fcllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gr\u00fcndete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n", "source": 10332}}, {"model": "metainfo.text", "pk": 30763, "fields": {"kind": 131, "text": "Liszt\u00a0Franz von, Komponist. * Raiding, Kom. \u00d6denburg (Burgenland), 22. 10. 1811; \u2020 Bayreuth (Oberfranken), 31. 7. 1886.", "source": 10332}}, {"model": "metainfo.text", "pk": 44908, "fields": {"kind": 130, "text": "Von ihrer Mutter und t\u00fcchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male \u00f6ffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n", "source": 17415}}, {"model": "metainfo.text", "pk": 44909, "fields": {"kind": 131, "text": "Blahetka\u00a0Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; \u2020 Boulogne sur Mer, 1. 1. 1885.", "source": 17415}}, {"model": "metainfo.text", "pk": 45290, "fields": {"kind": 130, "text": "B. stammt aus einer aus dem Niederl\u00e4ndischen eingewanderten Familie, sein erster Lehrer, Chr. G. Neefe, vermittelte ihm die Kenntnis bedeutender Meisterwerke und machte publizistisch die Fachwelt auf das junge Talent aufmerksam und das Wohlwollen des Kurf\u00fcrsten Maximilian, des j\u00fcngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde f\u00fcr den weiteren \u00e4u\u00dferen Lebensweg B.s entscheidend, zumal der aus \u00d6sterr. an den K\u00f6lner Hof gekommene Graf Franz Adam Waldstein ihm die f\u00fcr die ersehnte Wr. Lehrzeit n\u00f6tige geldliche Unterst\u00fctzung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd f\u00f6rderte, wurde aber nicht sein Sch\u00fcler, da die Todeskrankheit der Mutter B.s R\u00fcckkehr forderte. Als sie am 17. 7. 1787 starb, mu\u00dfte B. nun f\u00fcr den entm\u00fcndigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurf\u00fcrstliche Hilfe nach Wien, wo er den gew\u00fcnschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schlo\u00df. Seine von da an w\u00e4hrende Bindung an Wien ist vor allem Erzh. Rudolf und den F\u00fcrsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosph\u00e4re Wiens, in der B. zunehmend Verst\u00e4ndnis als K\u00fcnstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikst\u00e4dten begehrt wurden, erfolgte oft auch widerrechtlich; B.s Kampf dagegen war nur ein Zug seiner steigenden inneren Auflehnung gegen manche Unvollkommenheiten des polit. und soz. Lebens, mit deren Problematik sich sein Gerechtigkeitssinn oft st\u00fcrmisch auseinandersetzte (s. die annullierte Widmung der\u201cEroica\u201d an Napoleon, als dieser sich zum K. kr\u00f6nen lie\u00df). Um 1800 begann sein Geh\u00f6r zu schwinden. 1815 wurde er taub. Das \u201eHeiligenst\u00e4dter Testament\u201c von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die \u00fcbermenschlichen moralischen Kr\u00e4fte, die ihn dennoch am Werk lie\u00dfen, das sich in jener Katastrophenzeit zur F\u00fclle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der fr\u00fcher als Interpret seiner Werke oder als Improvisator am Klavier und spr\u00fchender Geist gesellschaftlich brilliert hatte, immer mehr abschlo\u00df, l\u00f6sten die Freunde Oliva, Schindler und Holz jene gl\u00e4nzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste gro\u00dfe Musiker, der ein warmes Verh\u00e4ltnis zur Natur bekennt, auch hierin Haydn n\u00e4her als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als K\u00fcnder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 k\u00fcndigt sich sein Leberleiden an, das B.s sonst so robuste Gesundheit untergrub; 1826, auf dem Heimweg von einem Landaufenthalt bei seinem Bruder Johann in Gneixendorf bei Krems, \u00fcberfiel ihn eine Lungenentz\u00fcndung, zu der pl\u00f6tzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n", "source": 17608}}, {"model": "metainfo.text", "pk": 45291, "fields": {"kind": 131, "text": "Beethoven\u00a0Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; \u2020 Wien, 26. 3. 1827.", "source": 17608}}, {"model": "metainfo.text", "pk": 47030, "fields": {"kind": 130, "text": "Tochter von \u2192Adolf B\u00e4uerle und seiner ersten Frau Antonie B\u00e4uerle, geb. Egger. \u2013 B. zeigte schon in fr\u00fchester Kindheit eine Doppelbegabung f\u00fcr Musik und Sprachen, die in ihrer Erziehung sehr gef\u00f6rdert wurde. So erhielt sie Unterricht bei \u2192Carl Czerny. Dennoch beschr\u00e4nkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und \u00e4hnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Gro\u00dfbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische T\u00e4tigkeit f\u00fcr die \u201eWiener Theater-Zeitung\u201c (\u201eWiener allgemeine Theaterzeitung\u201c) ihres Vaters unter ihren Pseudonymen (auch \u201eF\u2026\u201c). B. war au\u00dferdem auch eine \u00fcberaus produktive \u00dcbersetzerin aus dem Englischen und Franz\u00f6sischen, u. a. \u00fcbertrug sie die Novelle \u201eDer Spion der vornehmen Welt\u201c von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), \u201eMi\u00df Mary, oder die Erzieherin\u201c (in: Wiener allgemeine Zeitung f\u00fcr Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und \u201eGilbert und Gilberte\u201c von Eug\u00e8ne Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), \u201eAntonie, die Tochter der Berge\u201c (ebd., 1850, Nr. 157\u2013176, 180\u2013201), \u201eDer letzte Irl\u00e4nder\u201c (ebd., 1851, Nr. 293ff.) und \u201eDie Marquise von Norville\u201c von \u00c9lie Berthet (1856), \u201eConcino Concini oder Die Tochter des Blinden\u201c (1855, 1856 Neuaufl. unter dem Titel \u201eDer Menschenj\u00e4ger oder Der Blinde\u201c) von Emanuele Gonzal\u00e8s sowie \u201eDie letzte der Feen\u201c von George Payne Rainsford James (1849). Einige dieser \u00dcbersetzungen erschienen auch im \u201eBelletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen\u201c des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der \u201eOstdeutschen Post\u201c und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift \u201eDer Salon\u201c erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, f\u00fchrte sie gemeinsam mit dem Redakteur Moritz Morl\u00e4nder (eigentlich Moriz Engl\u00e4nder) die \u201eWiener Theaterzeitung\u201c ab J\u00e4nner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. v\u00f6llig zur\u00fcckgezogen.\n", "source": 17852}}, {"model": "metainfo.text", "pk": 47031, "fields": {"kind": 131, "text": "B\u00e4uerle Friederike, Ps. Friedrich Horn, Schriftstellerin, \u00dcbersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Nieder\u00f6sterreich), 17. 7. 1896.", "source": 17852}}, {"model": "metainfo.text", "pk": 47126, "fields": {"kind": 130, "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, B\u00f6hmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zun\u00e4chst als Oboist beim Milit\u00e4r und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. \u2013 Wenzel Czernys T\u00e4tigkeit als Klavierlehrer f\u00fchrte die Familie 1791\u201395 nach Polen. So erhielt C., der bereits mit drei Jahren Klavier zu spielen begann und mit sieben seine ersten Kompositionen zu Papier brachte, den ersten Klavierunterricht auch von seinem Vater und konnte dank seiner au\u00dfergew\u00f6hnlichen Begabung bereits als Neunj\u00e4hriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung f\u00fcr C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei \u2192Ludwig van Beethoven, der ihn unverz\u00fcglich als Sch\u00fcler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Urauff\u00fchrung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere fr\u00fch, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Sch\u00fclerinnen und Sch\u00fcler waren Theodor D\u00f6hler, Stephen Heller, \u2192Sigismund Thalberg, \u2192Marie Leopoldine Blahetka, Ninette de Belleville sowie \u2192Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine \u201e\u00c9tudes d\u2019ex\u00e9cution transcendante\u201c). Auch Beethovens Neffe Karl wurde ein Sch\u00fcler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, \u2192Ignaz Moscheles\u2019 und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken f\u00fcr Klavier verbunden, die sich an Anf\u00e4nger (etwa \u201eDie Schule der Gel\u00e4ufigkeit\u201c) ebenso richten wie an bereits gereifte Pianisten (\u201eSchule des Virtuosen\u201c). Dazu kommen St\u00fccke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die gr\u00f6\u00dfte Popularit\u00e4t erlangte C.s \u201eVollst\u00e4ndige theoretisch-practische Pianoforte-Schule \u2026\u201c (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen \u0152uvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Ch\u00f6re, Ges\u00e4nge und B\u00fchnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einfl\u00fcsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten St\u00fccke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Dar\u00fcber hinaus war C. als Musiktheoretiker t\u00e4tig. Er verfasste eine \u201eSystematische Anleitung zum Fantasieren auf dem Pianoforte\u201c, z\u00e4hlte zu den ersten Editoren einer Bach-Gesamtausgabe und \u00fcbersetzte vier umfangreiche Kompositions-Traktate von \u2192Anton Reicha. 1842 schrieb C. seine Autobiographie \u201eErinnerungen aus meinem Leben\u201c. Abgesehen von einigen Reisen nach Italien und einem Aufenthalt in Frankreich (1837) sowie England verbrachte er sein gesamtes Leben in seiner Heimatstadt. Er starb als wohlhabender Mann und vermachte sein Verm\u00f6gen k\u00fcnstlerischen und wohlt\u00e4tigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n", "source": 18525}}, {"model": "metainfo.text", "pk": 47127, "fields": {"kind": 131, "text": "Czerny (\u010cern\u00fd) Carl, Pianist, P\u00e4dagoge und Komponist. Geb. Leopoldstadt, Nieder\u00f6sterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); r\u00f6m.-kath.", "source": 18525}}, {"model": "metainfo.text", "pk": 47200, "fields": {"kind": 130, "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und National\u00f6konomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Ru\u00dfland auf, war sp\u00e4ter Mitleiter der \u201eFreien B\u00fchne\u201c in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, B\u00fchnendichter und Theaterkritiker. 1909 heiratete er die gro\u00dfe Wagnerinterpretin, Hofoperns\u00e4ngerin Anna v. Mildenburg (s. u.). 1912 \u00fcbersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni\u2013November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in M\u00fcnchen. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von au\u00dfergew\u00f6hnlicher Menschenkenntnis, ein gl\u00e4nzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., geh\u00f6ren zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen \u00d6sterreich.\n", "source": 102}}, {"model": "metainfo.text", "pk": 47201, "fields": {"kind": 131, "text": "Bahr\u00a0Hermann, Dichter und Schriftsteller. * Linz (O.\u00d6.), 19. 7. 1863; \u2020 M\u00fcnchen, 14. 1. 1934.", "source": 102}}, {"model": "metainfo.text", "pk": 47204, "fields": {"kind": 130, "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt t\u00e4tig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er kl\u00e4rte die Ursachen der hohen S\u00e4uglingssterblichkeit bei k\u00fcnstlicher Ern\u00e4hrung und besch\u00e4ftigte sich eingehend mit der Tuberkulose im Kindesalter. Sp\u00e4ter lehrte er in Berlin, Stra\u00dfburg und D\u00fcsseldorf. Durch Cz., einen der Begr\u00fcnder und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine gro\u00dfe Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine f\u00fchrende Stellung in der Kinderheilkunde inne.\n", "source": 114}}, {"model": "metainfo.text", "pk": 47205, "fields": {"kind": 131, "text": "Czerny\u00a0Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; \u2020 Berlin, 3. 10. 1941.", "source": 114}}, {"model": "metainfo.text", "pk": 47206, "fields": {"kind": 130, "text": "Absolvierte die Theres, Milit. Akad., 1842\u201348 \u00f6sterr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, fl\u00fcchtete 1849 nach Deutschland und lebte von 1850\u201357 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Pr\u00e4s. Mitre machte ihn zum Chef der Sektion des milit. Ingenieurwesens. Als solcher nahm er die Karte des paraguayisch-brasilianischen Grenzgebietes von Argentinien auf. lm Krieg der Tripelallianz gegen Paraguay 1865\u201369 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa F\u00e9 nach Esperanza und plante die Festungen in den Provinzen C\u00f3rdoba, Santa F\u00e9 und Buenos Aires. 1870\u201374 Leiter des Colegio Militar; 1875\u2013 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. f\u00fcr Mathematik in Concepci\u00f3n del Uruguay. 1884 in die Pr\u00fcfungskomm. des Colegio Militar und in die Comisi\u00f3n revisadora y proyectora berufen, 1884\u201395 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n", "source": 116}}, {"model": "metainfo.text", "pk": 47207, "fields": {"kind": 131, "text": "Czetz\u00a0Johann. * Gid\u00f3falva, 8. 6. 1822; \u2020 Buenos Aires, 6. 9. 1904.", "source": 116}}, {"model": "metainfo.text", "pk": 47208, "fields": {"kind": 130, "text": "Stud. in Br\u00fcnn und Olm\u00fctz unter Leitung seines Oheims Caroni, trat 1808 in das m\u00e4hrisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekret\u00e4r bei der Obersten Justizstelle in Wien.\n", "source": 117}}, {"model": "metainfo.text", "pk": 47209, "fields": {"kind": 131, "text": "Czikann\u00a0Johann Jakob Heinrich, Beamter und Schriftsteller. * Br\u00fcnn, 10. 7. 1789; \u2020 Br\u00fcnn, 10. 6. 1855.", "source": 117}}, {"model": "metainfo.text", "pk": 47210, "fields": {"kind": 130, "text": "Sohn des Christian C.-G., trat 1826 in die Armee ein, 1839 Obst. und Rgtskmdt., 1846 GM. und Brigadier in Prag, 1848 in Mailand; k\u00e4mpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenb\u00fcrgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. Gy\u00f6rgy und Kaszon-Ujfalu; Landeskommandierender in B\u00f6hmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, k\u00e4mpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vlie\u00df; 1866 Kmdt. des 1. Armeekorps gegen Preu\u00dfen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n", "source": 108}}, {"model": "metainfo.text", "pk": 47211, "fields": {"kind": 131, "text": "Clam-Gallas\u00a0Eduard Graf, General. * Prag, 11. 3. 1805; \u2020 Wien, 17. 3. 1891.", "source": 108}}, {"model": "metainfo.text", "pk": 47212, "fields": {"kind": 130, "text": "\u00c4ltester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853\u201359 Landespr\u00e4s. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorit\u00e4t; haupts\u00e4chlich nach seinen Vorschl\u00e4gen entstand das Oktoberdiplom; F\u00fchrer der feudal-klerikal-slaw. und f\u00f6deralistischen Partei, seit 1862 nur mehr im Landtag. Er war einer der Urheber der Abstinenzpolitik der Tschechen und konzipierte 1871 die Fundamentalartikel; unter Taaffe kehrten die Tschechen 1879 in den Reichsrat zur\u00fcck und C. war wie vorher als Generalreferent des Budgets t\u00e4tig; 1884 zog er sich krankheitshalber vom \u00f6ffentlichen Leben zur\u00fcck; seit 1859 Geh. Rat, seit 1861 Pr\u00e4s. des B\u00f6hmischen Mus., Ehrenmitgl. der Kgl. B\u00f6hm. Ges. d. Wiss.\n", "source": 109}}, {"model": "metainfo.text", "pk": 47213, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; \u2020 Prag, 5. 6. 1887.", "source": 109}}, {"model": "metainfo.text", "pk": 47214, "fields": {"kind": 130, "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des F\u00fcrsten Thun F\u00fchrer der Rechten im Herrenhaus, stand hier und im b\u00f6hmischen Landtag den Tschechen nahe. Im Weltkrieg k\u00e4mpfte er an der russ. und an der italien. Front und r\u00fcckte von den Tschechen ab, als diese immer mehr auf die Zerst\u00f6rung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpr\u00e4s. Er suchte vergeblich, Vertreter aller \u00f6sterr. Nationalit\u00e4ten ins Kabinett zu berufen, um einen langfristigen Ausgleich mit Ungarn zustandezubringen, aber die Tschechen lehnten ab; er setzte das Parlament erfolglos wieder in seine Rechte ein, verstimmte die Deutschen, deren W\u00fcnsche nicht erf\u00fcllt wurden und vermochte nicht, die Tschechen, S\u00fcdslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917\u201319 Milit\u00e4rgouverneur von Montenegro. Pr\u00e4s. der Vereinigung kathol. Edelleute \u00d6sterr., Ritter des Ordens vom Goldenen Vlie\u00df, Geh. Rat und K\u00e4mmerer.\n", "source": 110}}, {"model": "metainfo.text", "pk": 47215, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; \u2020 Clam b. Grein, 7. 3. 1932.", "source": 110}}, {"model": "metainfo.text", "pk": 47216, "fields": {"kind": 130, "text": "Stud. in Marburg und Gie\u00dfen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. f\u00fcr Zoologie in W\u00fcrzburg, 1870 in G\u00f6ttingen, 1873 f\u00fcr Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gr\u00fcnder er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in G\u00f6ttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n", "source": 111}}, {"model": "metainfo.text", "pk": 47217, "fields": {"kind": 131, "text": "Claus\u00a0Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; \u2020 Wien, 18. 1. 1899.", "source": 111}}, {"model": "metainfo.text", "pk": 47218, "fields": {"kind": 130, "text": "Stud. in G\u00f6ttingen und Berlin, 1855 Dr. phil., 1857\u201360 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. f\u00fcr Arch\u00e4ologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete arch\u00e4ologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Arch\u00e4ologie, Kunstgeschichte und klass. Philologie verbindende Lehrt\u00e4tigkeit. Er begr\u00fcndete die Wr. Vorlegebl\u00e4tter, errichtete 1876 zusammen mit O. Hirschfeld das Arch\u00e4olog.-epigr. Seminar, f\u00fchrte zwei \u00f6sterr. Grabungskampagnen auf der Insel Samothrake durch, rief das gro\u00dfe Werk der Wr. Akad. d. Wiss. \u201eDie attischen Grabreliefs\u201c ins Leben und gab in 3 Heften der Denkschriften \u201eR\u00f6mische Bildwerke einheimischen Fundorts in \u00d6sterreich\u201c heraus. 1877\u201387 \u00fcbernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887\u20131905 leitete er als Gen.-Sekr. das Arch\u00e4olog. Inst. des Dt. Reiches, dem er 1903 in der R\u00f6m.-german. Komm. auch eine Zentralstelle f\u00fcr die arch\u00e4olog. Heimatforschung anschlo\u00df. In seinen beiden letzten Stellungen galten seine Arbeiten vor allem den von ihm angeregten Ausgrabungen in Pergamon und den dort gemachten Funden. C. hat die versch. Gebiete der Arch\u00e4ologie durch bahnbrechende Werke gef\u00f6rdert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n", "source": 112}}, {"model": "metainfo.text", "pk": 47219, "fields": {"kind": 131, "text": "Conze\u00a0Alexander, Arch\u00e4ologe. * Hannover, 10. 12. 1831; \u2020 Berlin, 19. 7. 1914.", "source": 112}}, {"model": "metainfo.text", "pk": 47220, "fields": {"kind": 130, "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. K\u00fcnste, hatte 1860\u201364 ein Atelier in M\u00fcnchen, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg f\u00fcr das Arsenal auszuf\u00fchren, leitete 1883 die Jubil\u00e4umsausstellung zur T\u00fcrkenbelagerung im Rathaus, stellte 1886 die st\u00e4dtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. K\u00fcnste.\n", "source": 113}}, {"model": "metainfo.text", "pk": 47221, "fields": {"kind": 131, "text": "Costenoble\u00a0Karl, Bildhauer. * Wien, 26. 11. 1837; \u2020 Wien, 20. 6. 1907.", "source": 113}}, {"model": "metainfo.text", "pk": 47226, "fields": {"kind": 130, "text": "Stud. in Prag Jus; ao. Prof. f\u00fcr Rechtsgeschichte an der Univ. Prag; Mitgl. der B\u00f6hm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des b\u00f6hm. Stadtrechtes.\n", "source": 103}}, {"model": "metainfo.text", "pk": 47227, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Jarom\u00edr, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; \u2020 Prag, 16. 10. 1914.", "source": 103}}, {"model": "metainfo.text", "pk": 47228, "fields": {"kind": 130, "text": "Sohn des Dichters Franz Ladisl. C., kam mit seinem Vater nach Breslau, wo er die unteren Klassen des kathol. Gymn. besuchte, Deutsch lernte und sein erstes Herbarium anlegte. 1849 kehrte die Familie nach Prag zur\u00fcck. Nach dem Tode des Vaters nahm sich der Physiologe Purkyne seiner an und bei ihm lernte C. auch die exakte Methode der mikroskopischen Untersuchung. Noch vor Beendigung seiner Studien erschienen die ersten botanischen Aufs\u00e4tze. Nach Vollendung der Univ. wurde er Gymnasialsupplent in Komotau, wo er die Flora des Erzgebirges kennenlernte. 1860 Kustos am Botanischen Mus. in Prag, 1863 Dr.phil., 1866 Doz. an der Prager Technik, dann Vorstand der botanischen Sektion des \u201eKomitees f\u00fcr die naturwiss. Durchforschung B\u00f6hmens\u201c und Mitgl. der \u201eB\u00f6hmischen Ges. d. Wiss.\u201c\n", "source": 104}}, {"model": "metainfo.text", "pk": 47229, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Ladislav, Botaniker. * Prag, 29. 11. 1834; \u2020 Prag, 24. 11. 1902.", "source": 104}}, {"model": "metainfo.text", "pk": 47230, "fields": {"kind": 130, "text": "Gr\u00fcndete 1842 eine Fabrik f\u00fcr Blechblasinstrumente und baute eine Anzahl versch. geformter Kontraba\u00dfinstrumente f\u00fcr die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n", "source": 105}}, {"model": "metainfo.text", "pk": 47231, "fields": {"kind": 131, "text": "Cerven\u00fd\u00a0V\u00e1clav Franti\u0161ek, Instrumentenmacher. * Dubec (B\u00f6hmen), 27. 9. 1819; \u2020 K\u00f6niggr\u00e4tz, 19. l. 1896.", "source": 105}}, {"model": "metainfo.text", "pk": 47232, "fields": {"kind": 130, "text": "Sohn des Malers Matthias Ch., befa\u00dfte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. K\u00fcnste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n", "source": 106}}, {"model": "metainfo.text", "pk": 47233, "fields": {"kind": 131, "text": "Charlemont\u00a0Hugo de, Maler. * Jamnitz, 18. 3. 1850; \u2020 Wien, 18. 3. 1939.", "source": 106}}, {"model": "metainfo.text", "pk": 47234, "fields": {"kind": 130, "text": "Stud. in Prag, 1771 Baccal., 1772 Priester, 1777 Pfarrer, 1779 Mitgl. des Prager Domkapitels, 1795 Bischof von Canea in partib., 1802 Bischof von Leitmeritz, hier als \u201eVater der Armen\u201c gepriesen, 1814 F\u00fcrsterzb. von Prag, 1815 inthronisiert. Gr\u00fcndete Schulen und Wohlt\u00e4tigkeitsanstalten.\n", "source": 107}}, {"model": "metainfo.text", "pk": 47235, "fields": {"kind": 131, "text": "Chlumczansk\u00fd\u00a0Wenzel Leopold von, Bischof. * Hostitz (B\u00f6hmen), 15. 11. 1749; \u2020 14. 6. 1830.", "source": 107}}, {"model": "metainfo.text", "pk": 47236, "fields": {"kind": 130, "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881\u201386 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollm\u00e4chtigter Min. in Belgrad, vertrat 1908 \u00d6sterr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913\u201315 a o. und bevollm\u00e4chtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der V\u00f6lkerbunds- und Friedensbewegung t\u00e4tig, Pr\u00e4s. der \u00f6sterr. V\u00f6lkerbundliga; Pazifist; Freund und F\u00f6rderer von Kunst und Wiss.\n", "source": 121}}, {"model": "metainfo.text", "pk": 47237, "fields": {"kind": 131, "text": "Dumba\u00a0Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; \u2020 Bodensdorf/Ossiachersee, 6. 1. 1947.", "source": 121}}, {"model": "metainfo.text", "pk": 47238, "fields": {"kind": 130, "text": "Stud. in Stuttgart und Berlin, arbeitete l\u00e4ngere Zeit im Atelier Siccardsburgs und Van der N\u00fclls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n", "source": 120}}, {"model": "metainfo.text", "pk": 47239, "fields": {"kind": 131, "text": "Doderer\u00a0Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; \u2020 Wien, 13. 5. 1900.", "source": 120}}, {"model": "metainfo.text", "pk": 47240, "fields": {"kind": 130, "text": "Sohn eines Bauern, zeigte fr\u00fch Interesse f\u00fcr Schnitzen und Zeichnen, aber erst nach dem Tode des Vaters gab er den Hof auf und ging 1860 nach Innsbruck, um bei Stolz die Bildschnitzerei zu erlernen. Auf dessen Rat wandte er sich der Malerei zu, ging 1862 an die Akad. in M\u00fcnchen, 1863\u201365 nach Paris, dann nach Tirol zur\u00fcck, 1867 wieder nach M\u00fcnchen, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einflu\u00df auf ihn aus\u00fcbte. 1878 Prof. an der M\u00fcnchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist au\u00dferdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten b\u00e4uerlichen Genremalerei.\n", "source": 118}}, {"model": "metainfo.text", "pk": 47241, "fields": {"kind": 131, "text": "Defregger\u00a0Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; \u2020 M\u00fcnchen, 2. 1. 1921.", "source": 118}}, {"model": "metainfo.text", "pk": 47242, "fields": {"kind": 130, "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899\u20131901 unter der Leitung von Sickel und Pastor am \u00d6sterr. Hist. Inst. in Rom, haupts\u00e4chlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917\u201346 (mit Unterbrechung von 1938\u201345) Ordinarius f\u00fcr Geschichte der Neuzeit. D., ein guter Kenner der Best\u00e4nde des Vat. Geheimarchivs, war 1929\u201338 als Nachfolger Pastors Dir. des \u00d6sterr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das \u00d6sterr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n", "source": 119}}, {"model": "metainfo.text", "pk": 47243, "fields": {"kind": 131, "text": "Dengel\u00a0Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; \u2020 Innsbruck, 9. 9. 1947.", "source": 119}}, {"model": "metainfo.text", "pk": 47276, "fields": {"kind": 130, "text": "Startete 1926 das erstemal bei einem Sch\u00fclerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen f\u00fcr M\u00e4dchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der M\u00e4dchen einen 1. und zwei 2. Pl\u00e4tze. 1929 gewann sie das Verbands-Neulings-Laufen f\u00fcr Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen f\u00fcr Damen in Innsbruck, Grummh\u00fcbel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen f\u00fcr Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Z\u00fcrich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die \u00f6sterr. Meisterschaft im Kunstlaufen f\u00fcr Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen f\u00fcr Damen in Z\u00fcrich und am Semmering. 1933 wurde sie abermals \u00f6sterr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine t\u00fcck. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein j\u00e4hes Ende.\n", "source": 122}}, {"model": "metainfo.text", "pk": 47277, "fields": {"kind": 131, "text": "Holovsky\u00a0Hilde, Kunstl\u00e4uferin. * Wien, 29. 4. 1917; \u2020 Wien, 3. 7. 1933.", "source": 122}}, {"model": "metainfo.text", "pk": 47384, "fields": {"kind": 130, "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887\u201394 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894\u20131903 Primarius an der Internen Abt. des K. Franz-Josef-Spitals und am Allg. Krankenhaus in Wien. 1901 tit. ao. Prof. an der Univ. Wien. 1903 o. Prof. f\u00fcr Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der \u00c4rzte in Wien, Mitgl. der Dt. Ges. f\u00fcr innere Med. und der Dt. Naturforscher und \u00c4rzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n", "source": 134}}, {"model": "metainfo.text", "pk": 47385, "fields": {"kind": 131, "text": "Lorenz\u00a0Heinrich, Internist. * Mies (Str\u00edbro, B\u00f6hmen), 13. 4. 1859; \u2020 Graz, 25. 3. 1945.", "source": 134}}, {"model": "metainfo.text", "pk": 47388, "fields": {"kind": 130, "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der \u201eKorrespondenz Wilhelm\u201c, die Polizei- und Hof\u00e4mter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim \u201eIllustrierten Wiener Extrablatt\u201c; 1876 war L. Kriegsberichterstatter im serb.-t\u00fcrk., 1877 im russ.-t\u00fcrk. und 1885 im bulgar.-serb. Krieg, 1878 in Bosnien. Ebenfalls als Reporter nahm L. am mazedon. Aufstand teil. Im Dienste seiner Redaktion unternahm er in den Folgejahren weite Reisen durch Europa, Nordamerika und weite Gebiete Afrikas. Am 2. 6. 1889 fuhr er mit einem Fiaker nach Paris zur Weltausst., wo ihm am 22. 6. ein triumphaler Empfang bereitet wurde. 1894 wurde er bei dem genannten Bl. stellvertretender Schriftleiter, 1898 (gem. mit J. Bauer, s.d.) Chefredakteur. L. war durch Feuilletons, Wr. Sittenschilderungen, Lokal- und Reiseberichte in weiten Kreisen bekannt geworden. Er war von wirkungsvoller Darstellungsf\u00e4higkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalit\u00e4t. Das \u201eIllustrierte Wiener Extrablatt\u201c war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des \u201eArmenvaters\u201c in seinem Bl. sowie als Viennensia-Sammler.\n", "source": 133}}, {"model": "metainfo.text", "pk": 47389, "fields": {"kind": 131, "text": "L\u00f6wy\u00a0Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (\u00dadlice, B\u00f6hmen), 14. 9. 1851; \u2020 Wien, 27. 12. 1905.", "source": 133}}, {"model": "metainfo.text", "pk": 47394, "fields": {"kind": 130, "text": "Sohn eines F\u00e4rbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und er\u00f6ffnete 1823 im 1. Bez. in der Weihburgg. einen Laden \u201eZur Kaiserin von \u00d6sterreich\u201c, 1824 einen Laden K\u00e4rntnerstr. 940, der 1844 vergr\u00f6\u00dfert wurde. 1824 wurde L. Meister und B\u00fcrger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glash\u00e4ndler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & G\u00f6rner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergr\u00f6\u00dferten Gesch\u00e4ftes vollst\u00e4ndig erneuert. L., nicht nur Glash\u00e4ndler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er h\u00e4ufig Reisen in Begleitung seiner S\u00f6hne Josef oder Ludwig unternahm), versuchte, nach franz\u00f6s. Pre\u00dfglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so da\u00df er viel franz\u00f6s. Pre\u00dfglas einf\u00fchren mu\u00dfte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenst\u00e4nde wurden nach Wien geliefert bzw. wurden auch Gegenst\u00e4nde nach L.s Entw\u00fcrfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten t\u00e4tig war, bezog Glas aus den b\u00f6hm. H\u00fctten und lie\u00df nach eigenen Mustern arbeiten. 1823\u201355 wurden Gl\u00e4ser im Biedermeierstil erzeugt. Die Fa. beteiligte sich an den Gewerbsproduktenausst. 1839 und 1845 in Wien, fertigte Spiegel und Luster an, wurde 1848 Sieger in einem Wettbewerb um die Beleuchtungseinrichtung im Palais des Vizekg. von \u00c4gypten und arbeitete f\u00fcr den Palazzo Reale in Venedig.\n", "source": 132}}, {"model": "metainfo.text", "pk": 47395, "fields": {"kind": 131, "text": "Lobmeyr\u00a0Josef, Fabrikant. * Grieskirchen (O.\u00d6.), 17. 3. 1792; \u2020 Wien, 8. 5. 1855.", "source": 132}}, {"model": "metainfo.text", "pk": 47402, "fields": {"kind": 130, "text": "Absolv. das Realgymn.; arbeitete bis 1868 f\u00fcr die Z. \u201eIllustrierte Welt\u201c, gab dann das demokrat. Bl. \u201eFreie Volksstimme\u201c heraus, war Korrespondent ausl\u00e4nd. Ztg. und begr\u00fcndete gem. mit S. Spitz 1870/71 das \u201e\u00d6sterreichisch-ungarische Volksblatt f\u00fcr Stadt und Land\u201c. Angeregt durch seine Bekanntschaft mit dem National\u00f6konomen L. v. Stein stud. er Volkswirtschaft und Statistik und gr\u00fcndete 1874 das Fachbl. \u201eGambrinus\u201c, welches gro\u00dfes Ansehen geno\u00df. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und N\u00e4hrausst. in Wien, 1904 k. Rat, Pr\u00e4s. des \u00f6sterr. Fachschriftstellerverbandes, Vizepr\u00e4s. des Reichsverbandes \u00f6sterr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n", "source": 130}}, {"model": "metainfo.text", "pk": 47403, "fields": {"kind": 131, "text": "Lichtblau\u00a0Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; \u2020 Abbazia (Opatija, Istrien), 10. 5. 1908.", "source": 130}}, {"model": "metainfo.text", "pk": 47404, "fields": {"kind": 130, "text": "Nach Absolv. der jurid. Stud. in Wien 1898 Konzipient in der k. k. Finanzprokuratur in Wien, dann Rechtspraktikant (Auskultant) beim Landesgericht Innsbruck, 1899 Richteramtspr\u00fcfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht f\u00fcr Zivilrechtssachen in Wien und 1927 Rat des Oberlandesgerichtes Wien. 1931 Vorsitzender Rat des Oberlandesgerichtes, wurde er im gleichen Jahr zum Rat des Verwaltungsgerichtshofes ernannt. L., der schon als Richter am Exekutionsgericht Wien durch seine vorz\u00fcglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich gr\u00f6\u00dfte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das \u00f6sterr. Exekutionsrecht l\u00fcckenlos erfa\u00dft und seinen Zusammenhang mit den \u00fcbrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsvertr\u00e4gen niedergelegt, tw. ber\u00fccksichtigt und dadurch die Exekutionsgrunds\u00e4tze eines gro\u00dfen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n", "source": 131}}, {"model": "metainfo.text", "pk": 47405, "fields": {"kind": 131, "text": "Lichtblau\u00a0Ludwig, Jurist. * Olm\u00fctz (Olomouc, M\u00e4hren), 25. 2. 1875; \u2020 Wien, 19. 12. 1935.", "source": 131}}, {"model": "metainfo.text", "pk": 47410, "fields": {"kind": 130, "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtspr\u00fcfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. f\u00fcr Botanik an der Univ. Graz, 1868 ao., 1869 o. Prof., 1876/77 Dekan, 1884/85 Rektor, 1873 erhielt er auch die Dion. des Botan. Gartens und die Supplierung der Lehrkanzel f\u00fcr Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begr\u00fcnder des Botan. Inst. der Univ., das gegen\u00fcber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatb\u00fccherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und T\u00fcbingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Pr\u00e4s. des Naturwiss. Ver. f\u00fcr Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Ver\u00f6ff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die \u00fcber Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbst\u00e4ndig erschienenen Werke geh\u00f6ren dazu, von denen die umfangreiche Monographie \u201eUntersuchungen \u00fcber die Lebermoose\u201c in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im K\u00e4rntner Landtag (1869\u201372) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n", "source": 128}}, {"model": "metainfo.text", "pk": 47411, "fields": {"kind": 131, "text": "Leitgeb Hubert,\u00a0Botaniker. * Portendorf b. Klagenfurt (K\u00e4rnten), 20. 10. 1835; \u2020 Graz, 5. 4. 1888 (Selbstmord).", "source": 128}}, {"model": "metainfo.text", "pk": 47414, "fields": {"kind": 130, "text": "Vater des Anatomen J\u00f3zsef v. L. (s. d.), Gro\u00dfvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Pre\u00dfburg stud. er Med. an den Univ. Wien und Pest, 1799 Dr. med. und Chirurgus des Kom. Gran. 1808 Prof. der Physiol. und der Anatomie an der Univ. Pest, 1809/10 und 1815\u201317 Dekan, 1818/19 Rektor. 1819 Prof. der Physiol. an der Univ. Wien. 1825 Statthaltereirat und Protomedicus, war er bis zu seinem Tode Dir. der Pester med. Fak. 1808 wurde er in den ung. Adelsstand erhoben. L., einer der ersten, der die Pockenimpfung in Ungarn anwandte (1799), erwarb sich auch 1831 gro\u00dfe Verdienste um die Bek\u00e4mpfung der Cholera. Er ma\u00df den psych. Vorg\u00e4ngen bei Erkrankungen und auch in der Therapie gro\u00dfe Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n", "source": 129}}, {"model": "metainfo.text", "pk": 47415, "fields": {"kind": 131, "text": "Lenhoss\u00e9k\u00a0Mih\u00e1ly Ign\u00e1c von, Physiologe. * Pre\u00dfburg, 11. 5. 1773; \u2020 Ofen (Buda, Ungarn), 11. 2. 1840.", "source": 129}}, {"model": "metainfo.text", "pk": 47418, "fields": {"kind": 130, "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen K\u00fcnste in Wien (bei Griepenkerl, s.d.) und M\u00fcnchen (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gr\u00fcndung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, M\u00e4rchen- und Landschaftsbildern, bet\u00e4tigte sich aber nach Gr\u00fcndung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einflu\u00df, mit au\u00dferordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schlo\u00df Esterhazy bei Pre\u00dfburg, Privatwohnungen der Maler Goltz und Ranzoni), B\u00fchnen- und Kost\u00fcmentw\u00fcrfe, Stickereien, F\u00e4cher, Kassetten, M\u00f6bel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60j\u00e4hrigen Regierungsjubil\u00e4um von K. Franz Joseph I. (s. d.) 1908. 1900\u201303 war er (als Vorg\u00e4nger von A. Roller) Ausstattungschef der Wr. Hofoper.\n", "source": 125}}, {"model": "metainfo.text", "pk": 47419, "fields": {"kind": 131, "text": "Lefler\u00a0Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; \u2020 Wien, 14. 3. 1919.", "source": 125}}, {"model": "metainfo.text", "pk": 47420, "fields": {"kind": 130, "text": "Tochter eines Rechtsanwaltes; stud. an den Univ. Wien und Heidelberg (M. Weber) Staatswiss., 1918 Dr.rer.pol. Nach 1918 redigierte sie in Wien die Frauenbeilage der Gewerkschaftsztg. \u201eDer Metallarbeiter\u201c und arbeitete als Sekret\u00e4rin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 \u00fcbernahm sie das Referat f\u00fcr Frauenarbeit in der Wr. Kammer f\u00fcr Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. \u201eArbeit und Wirtschaft\u201c. L., welche sich der Sozialdemokrat. Partei \u00d6sterr. angeschlossen hatte, heiratete 1921 den Redakteur der \u201eArbeiter-Zeitung\u201c Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den sp\u00e4teren Vorsitzenden der Vereinigung der Zeitungskorrespondenten bei den Vereinten Nationen. Sie bekleidete in der Bezirksorganisation Wien-Innere Stadt die Funktionen der Vorsitzenden des Bezirksbildungsausschusses und des Bezirksfrauenkomitees sowie der Obmannstellvertreterin der Bezirksorganisation. 1933 wurde sie in das Zentralfrauenkomitee der Sozialdemokrat. Partei berufen. 1934 war sie mit Otto L. eines der Gr\u00fcndungsmitgl. der illegalen Partei der \u201eRevolution\u00e4ren Sozialisten\u201c \u00d6sterr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der \u201eRevolution\u00e4ren Sozialisten\u201c. 1938 verhalf sie ihrem Mann zur Flucht ins Ausland, sie selbst wurde knapp vor der beabsichtigten Abreise verhaftet. Von Herbst 1939 bis zu ihrer Ermordung war sie im KZ Ravensbr\u00fcck.\n", "source": 126}}, {"model": "metainfo.text", "pk": 47421, "fields": {"kind": 131, "text": "Leichter\u00a0K\u00e4the, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; \u2020 Ravensbr\u00fcck (Brandenburg), 17. 3. 1942 (KZ).", "source": 126}}, {"model": "metainfo.text", "pk": 47422, "fields": {"kind": 130, "text": "Neffe des Gro\u00dfh\u00e4ndlers und Bankiers Markus Leidesdorfer v. Neuwall (s. d.); sollte Kaufmann werden, wandte sich aber gegen den Willen der Eltern dem Schauspielerberuf zu und debut. 1830 unter dem Namen Wallner in Krems. \u00dcber Bad Ischl, Wr. Neustadt, Laibach, Agram etc. kam L. 1835 nach Wien, wo er zuerst im Theater an der Wien und dann im Theater in der Leopoldstadt vorwiegend in Raimund-Rollen auftrat und besonders nach Raimunds Tod 1836, durch seine Raimunds Schauspielkunst getreu kopierende Darstellungsweise, gro\u00dfe Erfolge errang. 1839 ging er f\u00fcr zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle gr\u00f6\u00dferen St\u00e4dte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei St\u00e4dten f\u00fchrte L. auch die Dion. des Theaters. 1854 pachtete er das K\u00f6nigst\u00e4dt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Gesch\u00e4ftst\u00fcchtigkeit, seinen Flei\u00df und k\u00fcnstler. Sp\u00fcrsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerb\u00fchne erweitert hatte, bald lokale Ber\u00fchmtheit. 1864 lie\u00df er es vergr\u00f6\u00dfern und renovieren und er\u00f6ffnete es am 3. 12. als \u201eWallnertheater\u201c. Hatte er in den ersten Jahren seiner Dions.-T\u00e4tigkeit vor allem das moderne franz\u00f6s. Sittenst\u00fcck gepflegt, verwirklichte er in sp\u00e4teren Jahren mit Hilfe des Dichters D. Kalisch und seines vorz\u00fcglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gr\u00fcnden das Theater an C. Lebrun und unternahm nun einige gr\u00f6\u00dfere Reisen. Seine Reise- und Theatererlebnisse ver\u00f6ff. L., der auch Mitarbeiter der \u201eGartenlaube\u201c war, in viel gelesenen B\u00fcchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n", "source": 127}}, {"model": "metainfo.text", "pk": 47423, "fields": {"kind": 131, "text": "Leidesdorf\u00a0Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; \u2020 Nizza, 19. 1. 1876.", "source": 127}}, {"model": "metainfo.text", "pk": 47428, "fields": {"kind": 130, "text": "Bruder des Folgenden, Onkel des Juristen Stanko L. (s. d.); stud. an der Techn. Hochschule in Graz. Ab 1866 im Dienst an der Milit\u00e4rgrenze, zuerst in Temesv\u00e1r, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent f\u00fcr Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890\u201394 Sekret\u00e4r des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der \u201eVijesti\u201c (Berr.) dieses Ver. L. baute Stra\u00dfen (Ogulin\u2013Novi, Alt-Gradi\u0161ka\u2013Lipik), die Kanalisation des Jelas-Feldes und im s\u00fcd\u00f6stlichen Syrmien, Wasserleitungen f\u00fcr die St\u00e4dte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan f\u00fcr die Kanalisation von Agram etc.\n", "source": 124}}, {"model": "metainfo.text", "pk": 47429, "fields": {"kind": 131, "text": "Lapaine\u00a0Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; \u2020 Agram, 21. 2. 1923.", "source": 124}}, {"model": "metainfo.text", "pk": 47430, "fields": {"kind": 130, "text": "Tochter des Gro\u00dfindustriellen Josef v. Schroll (1821\u201391), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849\u201389), B\u00fcrgermeister der Stadt Braunau 1883\u201389, in zweiter Ehe ab 1892 mit dem Politiker und Gro\u00dfindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, \u00f6ff. Gesellschafterin der Fa. Benedikt Schrolls Sohn. Nach dem Tode Josef v. Schrolls wurden beide Schwestern Inhaberinnen der Firma, Johanna L., nach Vereinbarung, 1908 Alleininhaberin und Seniorchefin. Sie leitete die vielseitigen Industriebetriebe mit gro\u00dfer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (B\u00fcchereien, Krankenkasse, Spital etc.) f\u00fcr die bereits um die Jahrhundertwende ca. 2600 z\u00e4hlenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer L\u00e4ndchens.\n", "source": 123}}, {"model": "metainfo.text", "pk": 47431, "fields": {"kind": 131, "text": "Langer-Schroll\u00a0Johanna, Gro\u00dfindustrielle. * Braunau (Broumov, B\u00f6hmen), 2. 10. 1850; \u2020 ebenda, 9. 11. 1926.", "source": 123}}, {"model": "metainfo.text", "pk": 47432, "fields": {"kind": 130, "text": "Enkel des Freiburger Physikers J. J. M\u00fcller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van\u2019t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. M\u00fcnster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in M\u00fchlhausen, 1906 Priv.Doz. an der Univ. Basel, 1909 tit. Prof. M. wirkte ab 1911 als Leiter des anorgan.-wiss. und analyt. Laboratoriums bei den Farbenfabriken Bayer & Co. (Leverkusen), ab 1926 als Nachfolger J\u00fcptners (s. d.) als o. Prof. f\u00fcr chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich t\u00e4tig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivit\u00e4t und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefels\u00e4ure und Zement aus Gips und Ton gewann gro\u00dfe techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n", "source": 144}}, {"model": "metainfo.text", "pk": 47433, "fields": {"kind": 131, "text": "M\u00fcller\u00a0Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; \u2020 Wien, 9. 12. 1941.", "source": 144}}, {"model": "metainfo.text", "pk": 47446, "fields": {"kind": 130, "text": "Tochter eines Gutsbesitzers; kr\u00e4nkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkr\u00e4mpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so gro\u00dfes Aufsehen, da\u00df an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von G\u00f6rres, Brentano, Steinle, M\u00f6hler, D\u00f6llinger, Reisach und Ketteler besucht. 1841 \u00fcbersiedelte sie in das Tertiarinnenkloster in Kaltern. Als Mitgl. des 3. Ordens des Hl. Franziskus wurde sie seelsorglich von P. K. Soyer OFM betreut. Nach langem Leiden starb sie an Blutzersetzung. Die amtlichen Berichte \u00fcber sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n", "source": 143}}, {"model": "metainfo.text", "pk": 47447, "fields": {"kind": 131, "text": "M\u00f6rl\u00a0Maria Theresia von, Stigmatisierte. * Kaltern (S\u00fcdtirol), 16. 10. 1812; \u2020 ebenda, 11. 1. 1868.", "source": 143}}, {"model": "metainfo.text", "pk": 47448, "fields": {"kind": 130, "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer lie\u00df sich M. im Oktober 1843 als Matrose f\u00fcr die Kriegsmarine anwerben und machte 1844\u201346 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 k\u00e4mpfte er als Kmdt. eines Kanonenbootes in der Lagune, vor Ancona und bei der Blockade von Venedig. Nach verschiedenen Einschiffungen und Verwendungen in den folgenden Jahren war M. 1859 vor Lissa Kmdt. der Korvette \u201eMinerva\u201c, 1861/62 hatte er in Pola die Bauleitung der Fregatte \u201eSchwarzenberg\u201c, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapit\u00e4n mit Auszeichnung kommandierte. 1867 als Insel- und Festungskmdt. von Lissa, 1868 als Kmdt. des Seearsenals in Pola in Verwendung, unternahm M. 1869 eine Mission nach England, im Oktober dieses Jahres kommandierte er die in der Bucht von Cattaro zur Bek\u00e4mpfung des Aufstandes in S\u00fcddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871\u201383 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine gro\u00dfe administrative Begabung hatte, besa\u00df eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauauftr\u00e4gen f\u00fcr Schiffe trat er entschieden f\u00fcr die Besch\u00e4ftigung inl\u00e4nd. Firmen ein. Er war ein begeisterter Sammler klass. Altert\u00fcmer und ein bedeutender Numismatiker. Teile der \u201eSammlung Millosicz\u201c, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n", "source": 142}}, {"model": "metainfo.text", "pk": 47449, "fields": {"kind": 131, "text": "Millosicz\u00a0Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; \u2020 Leoben (Stmk.), 24. 7. 1890.", "source": 142}}, {"model": "metainfo.text", "pk": 47450, "fields": {"kind": 130, "text": "Sohn eines Weinbauern; stud. mit Hilfe seines Onkels, eines Landpfarrers, an den Gymn. in Warasdin und Marburg a. d. Drau, dann Phil. und Jus an den Univ. Graz (1838 Dr. phil.) und Wien (1841 Dr. jur.). 1837/38 suppl. er die philosoph. Lehrkanzel an der Univ. Graz und versuchte erfolglos, sich an der Univ. Innsbruck zu habil. Nach k\u00fcrzerer Praxis in Wr. Anwaltskanzleien bekam er 1844 mit Hilfe Kopitars (s. d.), der auf seine sprachliche Begabung aufmerksam geworden war, eine Amanuensisstelle an der Hofbibl. (1850 Skriptor, 1862 i. R.). 1849 wurde er ao., 1850 o. Prof. der slaw. Philol. und Literatur an der Univ. Wien, 1851/52, 1856/57 Dekan, 1854/55 Rektor, 1885 i. R. Pr\u00e4s. der Pr\u00fcfungskomm. f\u00fcr Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866\u20131869 Sekret\u00e4r der phil.-hist. Kl.), 1862 lebensl\u00e4ngliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Pr\u00e4s. des akadem. Ver. \u201eSlovenija\u201c in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zuk\u00fcnftigen \u00f6sterr. F\u00f6deration verlangte. 1849 war er slowen. Abg. beim Reichstag in Kremsier, wo er durch besonnene Haltung die Sympathie Stadions erweckte, der dann seine Ernennung zum ersten Prof. der Slawistik in \u00d6sterr. bewirkte. M., der schon im Gymn. gro\u00dfe sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einflu\u00df Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begr\u00fcnder der slaw. Philol. In der Kritik der Vergleichenden Grammatik des Sanskrit, Zend, Griech., Latein., Litau., Got. und Dt. von Bopp bewies M. 1844 die Notwendigkeit wiss. Erforschung nicht nur der von Bopp behandelten, sondern auch aller slaw. Sprachen und verfolgte unerm\u00fcdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewu\u00dftes Streben aller V\u00f6lker Europas nach einer gem. Sprache festzustellen (Neueurop\u00e4ismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkm\u00e4ler des Altslowen., wie M. irrt\u00fcmlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, M\u00e4hren und Ru\u00dfland bezeichnete, verfa\u00dfte und publ. er die \u201eVergleichende Grammatik der slavischen Sprachen\u201c. Vom Altslowen. ausgehend, analysierte er in unz\u00e4hligen Beispielen slaw. Spracherscheinungen und lie\u00df scheinbar nur das Wei\u00dfruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem \u201eeigenth\u00fcmlichen Zauber der Sprache\u201c, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdr\u00fcckte. Verh\u00e4ngnisvoll wurde ihm die von Kopitar \u00fcbernommene \u201ePannonische Theorie\u201c, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im \u00f6stlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. \u201eLexicon palaeoslovenico-graeco-latinum\u201c und das \u201eEtymologische W\u00f6rterbuch der slavischen Sprachen\u201c die bedeutendsten. Im Sinne des Neueurop\u00e4ismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begr\u00fcnder der rum\u00e4n. und alban. Philol. wurde. Er verfa\u00dfte umfangreiche Stud. \u00fcber die Mundarten und Wanderungen der Zigeuner Europas und edierte erfolgreich altkirchenslaw. Texte sowie serb. und griech. hist. Quellen. M. war auch in der Lehnwort-, Personen- und Ortsnamenforschung sowie in der Analyse der Volksepik bahnbrechend. Geringere Bedeutung haben dagegen seine mytholog. und polem. Schriften.\n", "source": 141}}, {"model": "metainfo.text", "pk": 47451, "fields": {"kind": 131, "text": "Miklosich\u00a0Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomer\u0161cak pri Ljutomeru, Unterstmk.), 20. 11. 1813; \u2020 Wien, 7. 3. 1891.", "source": 141}}, {"model": "metainfo.text", "pk": 47460, "fields": {"kind": 130, "text": "Stud. an der Exportakad. (Hochschule f\u00fcr Welthandel) in Wien, wo er die Lehramtspr\u00fcfung f\u00fcr h\u00f6here Handelsschulen und die Diplompr\u00fcfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule f\u00fcr Welthandel, 1931 Habil. f\u00fcr Betriebswirtschaftslehre an der Hochschule f\u00fcr Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. f\u00fcr Betriebswirtschaftslehre. 1938 wurde M. durch die Nationalsozialisten von der Hochschule entfernt. Nach Verhaftung (1942) und Verurteilung im selben Jahr zu sechs Jahren Zuchthaus wegen Kenntnis von verr\u00e4ter. Vorhaben und Unterlassung der Anzeige, w\u00e4hrend des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der B\u00f6rsenverkehr. Er verband in seinen Ver\u00f6ff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realit\u00e4t mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einflu\u00df von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbst\u00e4ndige Teildisziplin der Wirtschaftswiss. verstandenen Betriebswirtschaftslehre, von einer privatwirtschaftlich ausgerichteten Unternehmungslehre zu einer alle wirtschaftlichen Einheiten einer Volkswirtschaft untersuchenden Lehre, die somit auch die Haushalte einbeziehen sollte. Betriebs- und Volkswirtschaftslehre zeigen nach M. \u201eandere Seiten des wirtschaftlichen Geschehens\u201c, wobei von ersterer \u201eder Betrieb als eine mit konkreten Tatbest\u00e4nden und Aufgaben erf\u00fcllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens \u00fcberhaupt untrennbar verbunden erscheint\u201c.\n", "source": 140}}, {"model": "metainfo.text", "pk": 47461, "fields": {"kind": 131, "text": "Meithner\u00a0Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; \u2020 Wien, 13. 12. 1942.", "source": 140}}, {"model": "metainfo.text", "pk": 47466, "fields": {"kind": 130, "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der j\u00fcd. Deklassierten. Seine Lieder, die er in Gasth\u00e4usern und Sch\u00e4nken vortrug, sind von sozialen Motiven gepr\u00e4gt. Obwohl er im Zeitalter der gr\u00f6\u00dften K\u00e4mpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des j\u00fcd. Volksgesanges, W\u00f6lwel Zbarazer (Ehrenkranz), durchzog mit einigen Gef\u00e4hrten, die man als \u201eBroder-S\u00e4nger\u201c bezeichnete, Galizien, Rum\u00e4nien sowie Ru\u00dfland, wo sie seine wie auch \u00e4ltere j\u00fcd. Volkslieder vortrugen. Er war der erste der j\u00fcd. fahrenden Volkss\u00e4nger, der Vorl\u00e4ufer des modernen jidd. Theaters.\n", "source": 139}}, {"model": "metainfo.text", "pk": 47467, "fields": {"kind": 131, "text": "Margulies\u00a0Berl, Volkss\u00e4nger. * Brody (Galizien), ca. 1817; \u2020 b. Bukarest, ca. 1880.", "source": 139}}, {"model": "metainfo.text", "pk": 47468, "fields": {"kind": 130, "text": "Tochter des Malers Anton\u00edn M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Sch\u00fclerin ihres Vaters, dessen maler. Verm\u00e4chtnis sie aber nicht so selbst\u00e4ndig entfalten konnte wie ihre Br\u00fcder, welche sie materiell unterst\u00fctzen mu\u00dfte.\n", "source": 137}}, {"model": "metainfo.text", "pk": 47469, "fields": {"kind": 131, "text": "M\u00e1nesov\u00e1\u00a0Amalie, Malerin. * Prag, 21. 1. 1817; \u2020 Prag, Juni 1883.", "source": 137}}, {"model": "metainfo.text", "pk": 47470, "fields": {"kind": 130, "text": "Sohn des Malers Anton\u00edn M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ov\u00e1 (s. d.), Neffe des Folgenden; stud. 1838\u201351 an der Prager Akad. bei Tkadl\u00edk und Ruben, 1870/71 in D\u00fcsseldorf bei Vautier und begann unter dem Einflu\u00df der Akad. mit hist. Motiven in Genreart. Ab der zweiten H\u00e4lfte der 50er Jahre befa\u00dfte er sich mit volkst\u00fcmlichen Motiven, vor allem aus der Gegend von Bischofteinitz, und insbesondere mit Prager Typen. Er wurde zum bedeutendsten Vertreter der tschech. Genremalerei des 19. Jh. Seine Bilder haben intimen Zauber, sie sind durch den Sinn f\u00fcr die Atmosph\u00e4re des Milieus, durch Unmittelbarkeit, lyr. Zartheit, liebevollen Humor, manchmal durch melanchol. Klage gekennzeichnet. M. war auch ein ausgezeichneter Tiermaler, besonders von Pferden. Das zeichner. Werk nahm in seinem Schaffen einen bedeutsamen Platz ein. Auch als Illustrator t\u00e4tig, schuf er 52 Illustrationen zum 1. Tl. des Don Quichotte (1865, Holzschnitt). Mit seinem Bruder Josef M. begann er in den 50er Jahren ein Werk \u00fcber Trachtenstud. bei der l\u00e4ndlichen Bev\u00f6lkerung.\n", "source": 138}}, {"model": "metainfo.text", "pk": 47471, "fields": {"kind": 131, "text": "M\u00e1nes\u00a0Quido, Maler. * Prag, 17. 7. 1828; \u2020 Prag, 5. 8. 1880.", "source": 138}}, {"model": "metainfo.text", "pk": 47482, "fields": {"kind": 130, "text": "Sohn eines Privatiers und Handelsagenten; besuchte das Gymn. in Graz, war dann Schauspieleleve in Berlin, dramaturg. Berater am Stadttheater Innsbruck, Schauspieler, Szenenbildner und Regisseur an verschiedenen Provinzb\u00fchnen, 1917 am Residenztheater M\u00fcnchen, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehb\u00fcchern. Ab 1927 Autor bzw. Mitautor von Hollywood-Filmen; 1932 emigrierte er nach Frankreich und arbeitete in Paris mit dem Regisseur P. Czinner und der Schauspielerin E. Bergner zusammen, ab 1935 lebte er in London. Neben seiner dramaturg. T\u00e4tigkeit im Dokumentarfilmstudio von P. Rotha widmete er sich der Ausbildung von Filmautoren. Ungemein stilbildend, war M. der bedeutendste Drehbuchautor des dt. Stummfilms. Er arbeitete u. a. mit den Regisseuren R. Wiene, F. W. Murnau, L. Pick, L. Jessner und P. Czinner sowie mit den Schauspielern W. Krau\u00df, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Kl\u00f6pfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n", "source": 136}}, {"model": "metainfo.text", "pk": 47483, "fields": {"kind": 131, "text": "Mayer\u00a0Karl, Drehbuchautor. * Graz, 20. 2. 1894; \u2020 London, 1. 7. 1944.", "source": 136}}, {"model": "metainfo.text", "pk": 47484, "fields": {"kind": 130, "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Gesch\u00e4ftsf\u00fchrer gemacht. M.-S. besch\u00e4ftigte sich mit philosoph. und naturwiss. Stud., gr\u00fcndete 1829 das erste \u201eTiroler Mineralien-Comptoir\u201c und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im M\u00e4rz 1848 verfa\u00dfte er einen feurigen Aufruf \u201eA greachts Weartl von an alten Landesverteidiger an seini Mitbr\u00fcder\u201c, der gro\u00dfen Widerhall fand. Auf eigene Kosten r\u00fcstete er die 1. Innsbrucker Sch\u00fctzenkomp. aus, an deren Spitze er im Mai 1848 an die S\u00fcdfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein \u201eRadetzky-Album\u201c an (es enthielt Zeichnungen, Portr\u00e4ts, eine wertvolle Autographensmlg. etc.), welches er sp\u00e4ter dem Tiroler Landesmus. Ferdinandeum \u00fcbergab. M.-S. errichtete 1853 unter gro\u00dfem Kostenaufwand auf seinem Schlo\u00df B\u00fcchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gr\u00fcndete den 1. Arbeiterunterst\u00fctzungsver. und beteiligte sich an vielen humanit\u00e4ren Einrichtungen. 1865 verkaufte er sein Schlo\u00df und f\u00fchrte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. t\u00e4tig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen gro\u00dfe Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der \u201eTiroler Monatsbl\u00e4tter\u201c. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n", "source": 135}}, {"model": "metainfo.text", "pk": 47485, "fields": {"kind": 131, "text": "Mahl-Schedl von Alpenburg\u00a0Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Gr\u00fcnburg (O.\u00d6.), 27. 10. 1806; \u2020 Innsbruck, 1. 4. 1873.", "source": 135}}, {"model": "metainfo.text", "pk": 47486, "fields": {"kind": 130, "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882\u201385 war er Kapellmeister beim IR 74, 1885\u201390 Kapellmeister beim IR 28. N., ein sehr guter Geiger, vor allem aber ein vortrefflicher Dirigent, dem die Rgt.Musik des IR 74 ihren ausgezeichneten Ruf verdankt, war auch im Ausland mit viel Erfolg t\u00e4tig. Neben Rum\u00e4nien und Bulgarien z\u00e4hlen Holland und Belgien zu seinen wichtigsten k\u00fcnstler. Wirkungsst\u00e4tten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n", "source": 145}}, {"model": "metainfo.text", "pk": 47487, "fields": {"kind": 131, "text": "Nov\u00e1cek\u00a0Rudolf, Kapellmeister und Komponist. * Wei\u00dfkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; \u2020 Prag, 12. 8. 1929.", "source": 145}}, {"model": "metainfo.text", "pk": 47502, "fields": {"kind": 130, "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898\u20131903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904\u201319 wirkte er als Dir. am neugegr\u00fcndeten M\u00e4dchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes f\u00fcr Inneres und Unterricht t\u00e4tig, leitete ab 1922 die Abt. f\u00fcr p\u00e4dagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform f\u00fcr alle Mittelschulen folgte. Er unterst\u00fctzte bes. die Ver.-M\u00e4dchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkr\u00e4fte und f\u00f6rderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908\u201310 erster Obmann des Ver. Lyzeum.\n", "source": 147}}, {"model": "metainfo.text", "pk": 47503, "fields": {"kind": 131, "text": "Ortmann\u00a0Rudolf, P\u00e4dagoge. * Reichenberg (Liberec, B\u00f6hmen), 10. 3. 1874; \u2020 Wien, 22. 11. 1939.", "source": 147}}, {"model": "metainfo.text", "pk": 47506, "fields": {"kind": 130, "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegr\u00fcndete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832\u201337 Vorlesungen \u00fcber Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848\u201360 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfa\u00dfte zahlreiche Aufs\u00e4tze aus dem Gebiet der Chemie und hielt in Innsbruck viele popul\u00e4rwiss. Vortr\u00e4ge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur f\u00fcr techn. Chemie scheiterte aus Geldmangel (1838).\n", "source": 146}}, {"model": "metainfo.text", "pk": 47507, "fields": {"kind": 131, "text": "Oellacher\u00a0Josef, Pharmazeut. * Pre\u00dfburg, 16. 2. 1804; \u2020 Innsbruck, 16. 8. 1880.", "source": 146}}, {"model": "metainfo.text", "pk": 47516, "fields": {"kind": 130, "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtspr\u00fcfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg t\u00e4tig. 1918\u20131924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent f\u00fcr das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor f\u00fcr Geol. und Pal\u00e4ontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfa\u00dfte u. a. mehrere Schulb\u00fccher und red. ab 1932 die Z. \u201eIzvestja muzejskega dru\u0161tva za Kranjsko\u201c. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n", "source": 151}}, {"model": "metainfo.text", "pk": 47517, "fields": {"kind": 131, "text": "Poljanec\u00a0Leopold, Biologe und Schulmann. * Rann (Bre\u017eice, Unterstmk.), 23. 9. 1872; \u2020 Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944.", "source": 151}}, {"model": "metainfo.text", "pk": 47522, "fields": {"kind": 130, "text": "Stud. Germanistik und Polonistik bei R. M. Werner und R. Pilat an der Univ. Lemberg, wo er auch zu A. Sauer Verbindung hatte; 1897 Dr. phil. 1889\u201398 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903\u201309 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, t\u00e4tig. 1914 Priv. Doz., 1915\u201321 hielt er an der Univ. Lemberg Vorlesungen aus dt. Philol. und dt. Literaturgeschichte. 1918/19 war er provisor. Doz. der Germanistik an der Univ. Warschau. P. war u. a. ab 1920 w. Mitgl. der Lemberger Wiss. Ges. Als Literaturwissenschafter leistete P. auf dem Gebiet der H\u00f6lderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, h\u00f6chste Anerkennung fand.\n", "source": 150}}, {"model": "metainfo.text", "pk": 47523, "fields": {"kind": 131, "text": "Petzold\u00a0Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; \u2020 Lemberg (L\u2019viv), 15. 7. 1932.", "source": 150}}, {"model": "metainfo.text", "pk": 47530, "fields": {"kind": 130, "text": "Sohn des Philosophen Johann P. v. L. (1793\u20131866), Cousin des Folgenden, Neffe des Juristen und Politikers Thadd\u00e4us Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden K\u00fcnste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in D\u00fcsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden K\u00fcnste in Wien, an der er 1872\u20131901 als Prof. f\u00fcr Landschaftsmalerei wirkte, 1878\u201380 und 1897\u201399 Rektor. Nach seiner Pensionierung lebte er in N\u00fcrnberg und Berlin. \u00dcber pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf \u00d6l-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine \u00d6lbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Sch\u00fcler zu intensiven Naturstud. anhielt. Er beteiligte sich an den Wr. Akad.Ausst., u. a. 1858 und 1859. 1861 stellte er als Mitgl. im Wr. K\u00fcnstlerhaus aus, das ihm 1913 auch eine Ged\u00e4chtnisausst. widmete.", "source": 149}}, {"model": "metainfo.text", "pk": 47531, "fields": {"kind": 131, "text": "Peithner von Lichtenfels\u00a0Eduard, Maler und Radierer. * Wien, 18. 11. 1833; \u2020 Berlin, 22. 1. 1913.", "source": 149}}, {"model": "metainfo.text", "pk": 47536, "fields": {"kind": 130, "text": "Stud. 1839\u20131843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-M\u00fcnzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel f\u00fcr H\u00fctten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausr\u00fcstung der Labors betraut wurde. P. setzte die in Wien begonnenen chem. Arbeiten, u. a. Silberextraktion auf nassem Weg und Darstellung der reinen Uranverbindungen, fort; 1852 unternahm er in Joachimsthal im Auftrag der Obersten Montanverwaltung Versuche zur Verbesserung der Arbeitsmethoden und zur Auffindung neuer Verfahren bei der Verwertung einzelner Erze, deren Ergebnis die Silberextraktion unter Anwendung von unterschwefligsaurem Natron, Gewinnung von Nickel, Wismut und Kohlenoxyd, Ausscheidung des Arsens aus seinen Verbindungen in Erzen sowie die Darstellung der Uranfarben aus Pechblende waren. 1856 wurde in der Folge eine Uranaufbereitungsanlage in Joachimsthal gebaut. 1864 richtete P. in Wien das H\u00fcttenm\u00e4nn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum H\u00fcttenchemiker des gesamten \u00f6sterr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (sp\u00e4ter Vorstand des H\u00fcttenm\u00e4nn.-chem. Laboratoriums) ernannt. 1881 Oberbergrat, 1889 i. R., Hofrat. Erst durch P.s Verfahren der Urangewinnung aus Pechblende wurden die Forschungen des Ehepaars Curie erm\u00f6glicht.\n", "source": 148}}, {"model": "metainfo.text", "pk": 47537, "fields": {"kind": 131, "text": "Patera\u00a0Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; \u2020 Teschen (Cieszyn, \u00f6sterr. Schlesien), 26. 6. 1894.", "source": 148}}, {"model": "metainfo.text", "pk": 47540, "fields": {"kind": 130, "text": "Stud. ab 1782 an der Univ. Salzburg Phil. (1788 Mag.phil.), dann Theol. (1794 Dr. theol.); war nach seiner Priesterweihe (1793) als Seelsorger t\u00e4tig. 1801 wurde er Kanonikus des Kollegiatstiftes Maria Schnee, 1803 w. Konsistorialrat, 1810 Pfarrer und Dechant (damit auch Schuldistriktsinsp.) von Altenmarkt, 1832 erster Dechant des wiedererrichteten Kollegiatstiftes Seekirchen. R. ist der erste Historiograph des salzburg.-\u00f6sterr. Bildungswesens, \u00fcber das er grundlegende Beitrr. verfa\u00dfte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten \u00fcber theolog., p\u00e4dagog. und hist. Themen waren weit verbreitet.\n", "source": 158}}, {"model": "metainfo.text", "pk": 47541, "fields": {"kind": 131, "text": "Rumpler\u00a0Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; \u2020 Seekirchen (Salzburg), 17. 3. 1846.", "source": 158}}, {"model": "metainfo.text", "pk": 47542, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckermeisters; ab 1901 selbst\u00e4ndiger B\u00e4kkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912\u201325 im Wr. Gemeinderat, 1924\u201334 im Bundesrat; ab 1917 Vizepr\u00e4s., in der Folge Pr\u00e4s. des Dt.\u00f6sterr. Gewerbebundes. 1928 Kommerzialrat. R. hat mit seinen hist. Stud. wesentlichen Anteil am Aufschwung der Wr. Lokalgeschichtsschreibung in der Zwischenkriegszeit: Seine Geschichte des VII. und die des VIII. Wr. Gemeindebez. sind ebenso Standardwerke geblieben wie die gem. mit A. Schmieger verfa\u00dfte Stud. \u201eDas Ghetto in der Wiener Leopoldstadt\u201c (1926). Auch seine wertvollen Ver\u00f6ff. aus der Geschichte des Wr. B\u00e4ckergewerbes zeugen von R.s Flei\u00df im Erschlie\u00dfen von Quellenmaterial.\n", "source": 157}}, {"model": "metainfo.text", "pk": 47543, "fields": {"kind": 131, "text": "Rotter\u00a0Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; \u2020 Wien, 18. 9. 1945.", "source": 157}}, {"model": "metainfo.text", "pk": 47556, "fields": {"kind": 130, "text": "Aus urspr\u00fcnglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der nieder\u00f6sterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenk\u00fcrassieren die Feldz\u00fcge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in M\u00fcnchen, Berlin, Stuttgart, Stockholm und Paris t\u00e4tig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 K\u00e4mmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-d\u00e4n. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilko\u00e4r. f\u00fcr Schleswig-Holstein. Anschlie\u00dfend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der \u00f6sterr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Aufl\u00f6sung von kath. Kl\u00f6stern in russ. Polen, erzwungener \u00dcbertritt von unierten Christen zur Orthodoxie etc.) befa\u00dft. 1868 trat er wegen Differenzen mit Beust (s. d.) zur\u00fcck. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner ober\u00f6sterr. G\u00fcter Erlach und Tollet und wurde daneben in der \u00f6sterr. Innenpolitik au\u00dferordentlich aktiv. Er wurde 1869 als Vertreter des Gro\u00dfgrundbesitzes ober\u00f6sterr. Landtagsabg. 1885 Mitgl. der \u00f6sterr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des \u00f6sterr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Pr\u00e4lat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschl\u00fcssen des Frankfurter Katholikentages 1882 begr\u00fcndet wurde. 1888 wurde R. im ausw\u00e4rtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen w\u00e4hrend seiner Amtszeit geh\u00f6rten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren H\u00f6hepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein m\u00f6gliches Refugium in \u00d6sterr. zu gew\u00e4hren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) geno\u00df, \u00fcbte auch eine Vermittlert\u00e4tigkeit bei dessen famili\u00e4ren Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mu\u00dfte er auf Dr\u00e4ngen ung. Politiker von seinem Posten zur\u00fccktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssph\u00e4ren von Staat und Kirche in der sp\u00e4tjosefin. Zeit. Daneben war er Experte f\u00fcr die Grenzbereiche der r\u00f6m.-kath., unierten und orthodoxen Kirchen, auch f\u00fcr Ru\u00dfland und den Balkan. Obwohl f\u00fcr soziale Fragen aufgeschlossen, war er kein Sympathisant der Christlichsozialen, deren antisemit. Tendenzen er ablehnte. Vielfach geehrt und ausgezeichnet, u. a. Geh.Rat (1868), Kanzler des Leopold-Ordens und Gro\u00dfkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866\u20131951), folgte 1919 K. Karl (s. d) ins Exil.\n", "source": 156}}, {"model": "metainfo.text", "pk": 47557, "fields": {"kind": 131, "text": "Revertera von Salandra\u00a0Friedrich Graf, Diplomat und Politiker. * Lemberg (L\u2019viv), 21. 1. 1827; \u2020 Brixen (S\u00fcdtirol), 28. 4. 1904.", "source": 156}}, {"model": "metainfo.text", "pk": 47558, "fields": {"kind": 130, "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (N\u00d6) t\u00e4tig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814\u201324 Dir. des Priesterseminars, 1817\u201335 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. T\u00e4tigkeit. In zahlreichen Publ. besch\u00e4ftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine \u201ePastoral-Anweisung nach den Bed\u00fcrfnissen unsers Zeitalters\u201c, die als offizielles Vorlesebuch f\u00fcr alle \u00f6ff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einflu\u00df auf den Klerusnachwuchs. R., ein gro\u00dfer Wohlt\u00e4ter der kirchlichen Inst., z\u00e4hlte zu den ma\u00dfvollen Josefinern.\n", "source": 154}}, {"model": "metainfo.text", "pk": 47559, "fields": {"kind": 131, "text": "Reichenberger\u00a0Andreas, Theologe. * Wien, 24. 11. 1770; \u2020 Linz, 26. 10. 1854.", "source": 154}}, {"model": "metainfo.text", "pk": 47560, "fields": {"kind": 130, "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883\u201386 an der Hochschule f\u00fcr Bodenkultur in Wien, Forsting. Wirkte ab 1887 am bosn.-herzegowin. Landesmus. in Sarajevo (1913 Reg.Rat, 1919 i. R.) und organisierte die von ihm geleitete naturwiss. Abt. Ab 1926 Mitgl. des Ornitholog. Observatoriums in Laibach (Ljubljana). R.s Lebenswerk war der Ornithol. des Balkans gewidmet. Neben seiner T\u00e4tigkeit am Mus. in Sarajevo sammelte er Material f\u00fcr eine Beschreibung der V\u00f6gel der Marburger Umgebung und arbeitete bei der Aufstellung der ornitholog. Smlg. des Mus. in Marburg a. d. Drau (Maribor) mit, dem er eine Smlg. von Vogeleiern aus dem Drautal vermachte. R. wurde vielfach geehrt und ausgezeichnet, u. a. 1932 Dr. h. c. der Univ. Graz.\n", "source": 155}}, {"model": "metainfo.text", "pk": 47561, "fields": {"kind": 131, "text": "Reiser\u00a0Othmar, Ornithologe. * Wien, 21. 12. 1861; \u2020 Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936.", "source": 155}}, {"model": "metainfo.text", "pk": 47564, "fields": {"kind": 130, "text": "Sohn eines Baumwollwarenh\u00e4ndlers; wurde nach Absolv. der Techn. Milit\u00e4rakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898\u20131900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900\u201311 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914\u201316 war R. als Milit\u00e4rattach\u00e9 in Bukarest. 1916 wurde er als Obstlt. des Gen. Stabskorps zum Chef der Gen.Stabsabt. des l. Armeekmdo. und noch im selben Jahr zum Obst. des Gen. Stabskorps ernannt. Ab 1918 war R. Gen. Stabschef des XI. Korps, dann Gen. Stabschef der k. u. k. Besatzungstruppen in Rum\u00e4nien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Fl\u00fcgeladj. Kg. Ferdinands von Rum\u00e4nien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein B\u00fcndnis gegen das revolution\u00e4re Ru\u00dfland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen \u00d6sterr.-Ungarn, dem Dt. Reich, der T\u00fcrkei und Bulgarien einerseits und Rum\u00e4nien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n", "source": 153}}, {"model": "metainfo.text", "pk": 47565, "fields": {"kind": 131, "text": "Randa\u00a0Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, M\u00e4hren), 24. 5. 1874; \u2020 Czernowitz (Cernivci, Bukowina), 13. 8. 1941.", "source": 153}}, {"model": "metainfo.text", "pk": 47566, "fields": {"kind": 130, "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtspr\u00fcfung) u. a. bei Boltzmann (s. d.) und Frischauf (s. d.), dann an der Univ. Berlin Physik bei Helmholtz und Kirchhoff. In Graz war R. lange Mitgl. von A. v. Meinongs (s. d.) Philosoph. Societ\u00e4t. Er interessierte sich f\u00fcr Grenzgebiete der Mathematik und der Physik sowie f\u00fcr die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten ma\u00dfgeblich beeinflu\u00dft wurde. 1894\u201396 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. f\u00fcr theoret. Physik an der Univ. Innsbruck und Ass. K. Exners (s. d.) am Mathemat.-physikal. Inst. 1902 ao. Prof. an der Univ. Innsbruck, 1906 o. Prof. der mathemat. Physik an der Univ. Czernowitz (Cernivci), 1915 o. Prof. der theoret. Physik an der Univ. Graz, 1924/25 Dekan. R.\u2019 bedeutendste und tiefgreifendste Arbeit behandelt \u201eDie Grundlagen der Galilei-Newton\u2019schen Mechanik\u201c. Er ver\u00f6ff. auch einige wichtige experimentelle Arbeiten zur Frage der Gescho\u00dfgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895\u20131938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n", "source": 152}}, {"model": "metainfo.text", "pk": 47567, "fields": {"kind": 131, "text": "Radakovic\u00a0Michael, Physiker. * Graz, 25. 4. 1866; \u2020 Graz, 15. 8. 1934.", "source": 152}}, {"model": "metainfo.text", "pk": 47568, "fields": {"kind": 130, "text": "Nach der Schulausbildung in Gro\u00dfwardein (Oradea) und Temeswar (Timi\u00bfoara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der K\u00f6r\u00f6s. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von G\u00e1bor D\u00f6brentei (\u00bfGabriel D\u00f6brentei) am Burgtheater (Budai V\u00e1rsz\u00ednh\u00e1z) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, T\u00e4nzer und Inspizient t\u00e4tig war sowie seine ersten Theaterst\u00fccke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Sz\u00ednh\u00e1z) in Pest ein Engagement als Schauspieler (1837\u201354) und Bibliothekar (1837\u201340) und widmete sich schlie\u00dfl. der Regie (1854\u201373) sowie der Dramaturgie (1868\u201373). Ab 1865 war er Prof. und 1870\u201373 Dir. der Pester Schauspielschule. 1873 \u00fcbernahm er die Leitung des Nationaltheaters. Er f\u00f6rderte zahlreiche sp\u00e4ter bekannte Schauspieler und initiierte u.\u00a0a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. \u00fcber hundert Theaterst\u00fccke und zahlreiche Libretti, schrieb Schauspielerportr\u00e4ts (\u201eMagyar sz\u00edn\u00e9szek \u00e9letrajzai\u201c, 1878, 2.\u00a0Aufl. 1907) und \u00fcbers. u.\u00a0a. Goethes \u201eEgmont\u201c (1871) und \u201eFaust\u201c sowie Shakespeares \u201eRichard III.\u201c (1867) ins Ung. Sein dramaturg. Lehrbuch \u201eA dr\u00e1ma \u00e9s v\u00e1lfajai\u201c (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der franz\u00f6s. und Wr. B\u00fchnen und adaptierte diese meisterhaft f\u00fcr das ung. Publikum. Sowohl seine Lustspiele (\u201eR\u00f3zsa\u201c, 1840; \u201eLiliomfi\u201c, 1849; \u201eFenn az ernyo, nincsen kas\u201c, 1858, 7.\u00a0Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen (\u201eII. R\u00e1k\u00f3czi Ferenc fogs\u00e1ga\u201c, 1848; \u201eA tr\u00f3nkereso\u201c, 1868, 5.\u00a0Aufl. 1916, dt. \u201eDer Pr\u00e4tendent\u201c, 1881; \u201eStruensee\u201c, 1871) als auch seine unter dem Einfluss des Wr. Volksst\u00fccks und des franz\u00f6s. Melodramas entstandenen Volksst\u00fccke \u201eSz\u00f6k\u00f6tt katona\u201c (1843) und \u201eCig\u00e1ny\u201c (1853), mit denen er die Grundlage f\u00fcr diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgen\u00f6ss. Publikums. Ledigl. seine b\u00fcrgerl. Dramen (\u201eA lelenc\u201c, 1863; \u201eA f\u00e9ny \u00e1rnyai\u201c, 1865) und die St\u00fccke \u201eA strike\u201c (1871) sowie \u201eAz amerikai\u201c (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stie\u00dfen auf Unverst\u00e4ndnis. S. war einer der einflussreichsten Dramatiker des 19.\u00a0Jh. in Ungarn, seine St\u00fccke wurden in zahlreiche Sprachen \u00fcbers. und verfilmt (\u201eSz\u00f6k\u00f6tt katona\u201c, 1914; \u201eLiliomfi\u201c, 1916, 1954; \u201eCig\u00e1ny\u201c, 1925, 1941) und geh\u00f6ren auch heute noch zum Standardrepertoire der ung. B\u00fchnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Gro\u00dfwardein (Nagyv\u00e1radi Szigligeti Sz\u00ednh\u00e1z) sowie das Theater in Szolnok (Szigligeti Sz\u00ednh\u00e1z) sind nach ihm benannt. S. war ab 1840 k.\u00a0M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n", "source": 194}}, {"model": "metainfo.text", "pk": 47569, "fields": {"kind": 131, "text": "Szigligeti Ede (Edv\u00e1rd), bis 1834 J\u00f3zsef Szathm\u00e1ry, Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur. Geb. V\u00e1rad-Olaszi, Ungarn (Oradea-Olosig, RO), 8.\u00a03. 1814; gest. Budapest (H), 19.\u00a01. 1878; r\u00f6m.-kath.", "source": 194}}, {"model": "metainfo.text", "pk": 47570, "fields": {"kind": 130, "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Sch\u00e4fer; ab 1895 verheiratet mit Erna Szen\u00f3ner. \u2013 Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871\u201374 war S. 1882\u201384 Z\u00f6gling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887\u201389 die Kriegsschule in Wien. Seine milit\u00e4r. Laufbahn begann er 1882 als Gemeiner im Honv\u00e9d-Inf.baon.\u00a018. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k.\u00a0u.\u00a0k. Armee sowie bei der Honv\u00e9d und versah Truppendienst, u.\u00a0a. als Baon.kmdt., v.\u00a0a. in den Honv\u00e9d-Inf.rgt.\u00a04 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der F\u00fchrung der kgl. ung. Inf.div.\u00a038 betraut, an deren Spitze er \u2013 ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps \u2013 ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz k\u00e4mpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (U\u017eoc\u2019kyj pereval) in den Karpaten gegen die Russen. 1917 erfolgte seine Ernennung zum kgl. ung. Landesverteidigungsminister in Budapest (ab August Gen. der Inf.). Diesen Posten bekleidete er bis zum Austritt Ungarns aus der Realunion Ende Oktober 1918. Anfang 1919 wurde S. pensioniert, einen Monat sp\u00e4ter auf Gehei\u00df der Berinkey-Regierung in St.\u00a0Gotthard (Szentgotth\u00e1rd) interniert und w\u00e4hrend der R\u00e4terepublik gem. mit \u00bfJ\u00f3zsef Frh. Szter\u00e9nyi v. Brass\u00f3 in Budapest gefangen gehalten. Nach dem Sturz der R\u00e4terepublik war S. Ende 1919 Verbindungsoff. bei der franz\u00f6s. milit\u00e4r. Mission. 1921 wurde er endg\u00fcltig pensioniert, lebte danach in Budapest und wirkte als Milit\u00e4rschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I.\u00a0Kl., 1916 wurde er Kommandeur des Leopold-Ordens I.\u00a0Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Pr\u00e4dikat \u201evon Uzsok\u201c ausgez. S. war Inhaber des Honv\u00e9d-Inf.rgt.\u00a020 (1918), 1929 wurde er in den Vit\u00e9zi Rend (Ritterorden) aufgenommen, 1927\u201344 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n", "source": 195}}, {"model": "metainfo.text", "pk": 47571, "fields": {"kind": 131, "text": "Szurmay von Uzsok S\u00e1ndor (Alexander) Frh., Offizier und Politiker. Geb. Boks\u00e1nb\u00e1nya, Ungarn (Boc\u00bfa, RO), 19.\u00a012. 1860; gest. Budapest (H), 26.\u00a03. 1945.", "source": 195}}, {"model": "metainfo.text", "pk": 47580, "fields": {"kind": 130, "text": "Sohn eines Bauern. \u2013 Nach Besuch der Gymn. in Kempten im Allg\u00e4u, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St.\u00a0Florian ein (1823 Profe\u00df, 1824 Priesterweihe). 1824\u201343 wirkte er als Kaplan in der Stiftspfarre, 1843\u201354 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s.\u00a0d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 au\u00dferdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht \u00fcbertragen. 1859 wurde er Propst von St.\u00a0Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Versch\u00f6nerungen in der Stiftskirche, u.\u00a0a. durch L.\u00a0Kupelwieser (s.\u00a0d.), durchgef\u00fchrt. Daneben widmete sich S., von F.\u00a0Ser. Kurz (s.\u00a0d.) angeleitet, schon bald der Historiographie. Bereits 1834 geh\u00f6rte er zu den Initiatoren des sp\u00e4teren Mus. Francisco-Carolinum, red. 1839\u201344 dessen \u201eMusealblatt\u201c und arbeitete v.\u00a0a. an den ersten sechs Bde. des \u201eUrkundenbuchs des Landes ob der Enns\u201c (1852\u201372) mit; weiters befa\u00dfte er sich mit dem Leben von K.\u00a0Maximilian\u00a0I., ordnete die Archive der Stifte St.\u00a0Florian und Wilhering und verf. die Geschichte beider Kl\u00f6ster. Zudem besch\u00e4ftigte er sich mit dem Gr\u00fcnder von Stift Reichersberg, Propst Gerhoch, sowie mit Bischof Altmann von Passau, ferner landesgeschichtl. mit den Gf. von Schaunberg. S., der in regem Austausch mit Koch v. Sternfeld (s.\u00a0d.) stand, war u.\u00a0a. Mitgl. des Hist. Ver. f\u00fcr Unterfranken und Aschaffenburg (1841), des Hist. Ver. f\u00fcr die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k.\u00a0k. Reichshistoriographen. 1847 z\u00e4hlte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. t\u00e4tig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gew\u00e4hlt, wo er v.\u00a0a. mit dem kath.-reformer. Kreis um Johann Joseph v. G\u00f6rres in Verbindung stand. Auch bei den Bem\u00fchungen um die Errichtung des o\u00f6. Katholikenver. 1848 spielte S. eine f\u00fchrende Rolle. 1861\u201367 geh\u00f6rte er dem o\u00f6. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Pr\u00e4s. der O\u00f6. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n", "source": 193}}, {"model": "metainfo.text", "pk": 47581, "fields": {"kind": 131, "text": "St\u00fclz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23.\u00a02. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28.\u00a06. 1872; r\u00f6m.-kath.", "source": 193}}, {"model": "metainfo.text", "pk": 47584, "fields": {"kind": 130, "text": "Sohn von Josef Maria S. (s.\u00a0d.). \u2013 Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Sch\u00fcler O.\u00a0Redlichs (s.\u00a0d.) Geschichte an der Univ. Wien, 1910 Dr.\u00a0phil., und absolv. 1909\u201311 als ao.\u00a0Mitgl. den Kurs des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung. Noch im Juli 1911 ging er als Mitarb. an der von der Heidelberger Akad. der Wiss. und der Bad. Hist. Komm. vorbereiteten Ausg. der bad. Weist\u00fcmer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am \u00d6sterr. Hist. Inst. in Rom. Daneben war er 1913 nochmals f\u00fcr die Bad. Hist. Komm. t\u00e4tig und ordnete das gr\u00e4fl. Douglassche Archiv auf Schlo\u00df Langenstein im Hegau. 1914 trat er als Konzeptsaspirant in das HHStA ein, wurde 1915 Konzeptspraktikant und 1921 Staatsarchivar. Er ordnete das Konsulatsarchiv in Belgrad (1916), die Archive in Jaidhof bei Gf\u00f6hl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. \u00fcber die Urkundenabt. und leitete schlie\u00dfl. die Hss.abt. im HHStA. 1921\u201322 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. \u201eHistorischen Bl\u00e4tter\u201c, ab 1928 Mitgl. des Gesch\u00e4ftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien f\u00fcr Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao.\u00a0Prof. Als Medi\u00e4vist befa\u00dfte er sich mit Fragen der \u00f6sterr. Diplomatik, einschlie\u00dfl. der Kanzlei- und der Stadtb\u00fccher, sowie bes. mit Verfassungsgeschichte. Ab 1923 fungierte er als Dir. des Archivs der Stadt Wien und machte dieses zu einer anerkannten wiss. Einrichtung: Eine neue Archivordnung, die u.\u00a0a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30\u00a0Jahren umfa\u00dfte, trat 1924 in Kraft. Archivpraktika f\u00fcr Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Gl\u00f6ckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Au\u00dfenwirkung des Archivs ebenso wie die F\u00f6rderung der Geschichtsforschung, etwa durch die Begr\u00fcndung der \u201eStudien aus dem Archiv der Stadt Wien\u201c oder durch die Anregung zur Ver\u00f6ff. der \u201eUrkunden aus Wiener Grundb\u00fcchern zur Geschichte der Wiener Juden im Mittelalter\u201c (1931) durch L.\u00a0Sailer (s.\u00a0d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. f\u00fcr Geschichte der Stadt Wien gew\u00e4hlt worden, 1924\u201325 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gr\u00fcnden zur\u00fcck. 1926 Vizepr\u00e4s., begr\u00fcndete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n", "source": 192}}, {"model": "metainfo.text", "pk": 47585, "fields": {"kind": 131, "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21.\u00a010. 1887; gest. ebd., 19.\u00a02. 1934; evang.\u00a0AB.", "source": 192}}, {"model": "metainfo.text", "pk": 47594, "fields": {"kind": 130, "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24.\u00a04. 1879; gest. ebd., 4.\u00a02. 1952) verehel. Nach Absolv. des M\u00e4dchengymn. des Wr. Ver. f\u00fcr erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr.\u00a0phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtspr\u00fcfung f\u00fcr Mittelschulen ab. I.\u00a0d.\u00a0F. unterrichtete S. an einem Wr. M\u00e4dchengymn., befa\u00dfte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vortr\u00e4ge f\u00fcr die Vereinigung \u00f6sterr. Hochschuldoz. Athen\u00e4um. Ihr Engagement im Bereich der Frauenbildung und \u2013f\u00f6rderung f\u00fchrte 1907 zur Gr\u00fcndung eines M\u00e4dchengymn. in Wien\u00a02. Auf Grund ihres Strebens nach gediegener Berufsausbildung f\u00fcr begabte M\u00e4dchen aus \u00e4rmerem Haus gr\u00fcndete sie 1907 gem. mit Olly Schwarz einen Ver. f\u00fcr h\u00f6here kommerzielle Frauenbildung und die erste Handelsakad. f\u00fcr M\u00e4dchen in der Sch\u00f6nborngasse (Wien\u00a08), deren Leitung sie als erste Schuldir., die in den Staatsdienst \u00fcbernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. f\u00fcr ihre T\u00e4tigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n", "source": 190}}, {"model": "metainfo.text", "pk": 47595, "fields": {"kind": 131, "text": "Steindler Olga, verehel. Ehrenhaft-S., P\u00e4dagogin und Physikerin. Geb. Wien, 28.\u00a010. 1879; gest. ebd., 21.\u00a012. 1933.", "source": 190}}, {"model": "metainfo.text", "pk": 47596, "fields": {"kind": 130, "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s.\u00a0d.). S. besuchte 1902\u201310 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L.\u00a0M. Hartmann, W.\u00a0Kubitschek, Bormann (alle s.\u00a0d.) und Adolf Wilhelm; 1914 Dr.\u00a0phil. Nach Milit\u00e4rdienst 1915\u201317 habil. er sich 1919 an der Univ. Wien. 1927\u201329 war S. an der R\u00f6m.-German. Komm. des Dt. Arch\u00e4olog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der r\u00f6m. Kaiserzeit besch\u00e4ftigt, danach Doz. f\u00fcr Alte Geschichte an der Univ. Berlin, 1931\u201332 ao.\u00a0Prof. f\u00fcr alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G.\u00a0Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, k\u00fcndigte seine Stellung und verlie\u00df Dtld. 1932\u201334 war er, unterst\u00fctzt vom belg. Byzantinisten Henri Gr\u00e9goire, Gastprof. an der Univ. Br\u00fcssel. Nach der \u201eMachtergreifung\u201c Hitlers (s.\u00a0d.) im J\u00e4nner 1933 publ. er nur mehr auf Franz\u00f6s.; 1934\u201335 war er Gastprof. an der Catholic Univ. of America (Washington, D.\u00a0C.), 1937 wurde f\u00fcr ihn ein Lehrstuhl f\u00fcr byzantin. Geschichte an der Univ. L\u00f6wen eingerichtet. 1940 mu\u00dfte S. jedoch Belgien mit seiner Frau Jeanne (Eheschlie\u00dfung 1923) unter falschem Namen (M.\u00a0Sernet) verlassen. Trotz der \u00e4u\u00dferl. bedr\u00e4ngten Situation und dem st\u00e4ndigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd.\u00a0seiner \u201eHistoire de l\u2019\u00c9mpire byzantin\u201c, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verh\u00e4ltnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. t\u00e4tig.\n\n", "source": 191}}, {"model": "metainfo.text", "pk": 47597, "fields": {"kind": 131, "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19.\u00a09. 1891; gest. Freiburg (Fribourg, Schweiz), 25.\u00a02. 1945; aus j\u00fcd. Familie, ab 1932 r\u00f6m.-kath.", "source": 191}}, {"model": "metainfo.text", "pk": 47602, "fields": {"kind": 130, "text": "Sohn eines Kleinbauern. S. besuchte 1858\u201366 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur S\u00fcdarmee eingezogen und erhielt nach der Schlacht bei Custoza die silberne Tapferkeitsmedaille. Da er Priester werden wollte, desertierte er und kam 1867 in die USA. Zun\u00e4chst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des sp\u00e4teren Bischofs der Di\u00f6zese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der franz\u00f6s. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph\u00a0I. (s.\u00a0d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der gro\u00dfteils aus Dt.b\u00f6hmen und -ungarn bestehenden Gmd. und ab 1891 als Di\u00f6zesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Di\u00f6zese Lead, S.\u00a0D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in f\u00fcnf Jahren 23 neue Kirchen und Pfarreien. Durch \u00fcberm\u00e4\u00dfige Arbeit erkrankt, resignierte S. 1909 auf seine Di\u00f6zese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n", "source": 189}}, {"model": "metainfo.text", "pk": 47603, "fields": {"kind": 131, "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12.\u00a05. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15.\u00a012. 1915; r\u00f6m.-kath.", "source": 189}}, {"model": "metainfo.text", "pk": 47614, "fields": {"kind": 130, "text": "\u2013 Sohn eines Grenzers. \u0160. wurde 1870 aus der Rgt.-Milit\u00e4rschule in Otocac als Korporal zum Grenz-IR 1 ausgemustert; 1874 Lt. beim IR 51. 1882 nahm er als Rgt.-Adj. an der Niederschlagung der Unruhen in Bosnien-Herzegowina teil. 1897 Mjr. und Baon.-, 1899\u20131904 Erg\u00e4nzungsbez.kmdt. im bosn.- herzegowin. IR 4, um dessen Personalaufstockung er sich sehr verdient machte; 1903 Obstlt., 1906 Obst. und 1907 Kmdt. des Linien-IR 2. 1909 erhielt \u0160. das Kmdo. des Gendarmeriekorps f\u00fcr Bosnien-Herzegowina, 1911 GM. Ab September 1914 f\u00fchrte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Vi\u0161egrad aus die Verteidigung S\u00fcdostbosniens. Ende M\u00e4rz 1915 \u00fcbernahm er dort das Kmdo. der neu errichteten 59. Inf.-Truppen-Div., die im Juli 1915 an die Isonzofront verlegt wurde. Im September 1915 nach Syrmien r\u00fcckverlegt, wurde \u0160. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 \u00fcbernahm er das Kmdo. der 42. Honv\u00e9d-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zur\u00fcckgedr\u00e4ngt wurde. Im M\u00e4rz 1917 dem Gen.-Insp. der Fu\u00dftruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde \u0160. im Juli 1918 beurlaubt, knapp vor der Ver\u00f6ff. des Oktobermanifests jedoch im Oktober 1918 als Milit\u00e4rkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die s\u00fcdslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte \u0160. seine letzten Lebensjahre auf seinem Gut in Cluj.\n", "source": 188}}, {"model": "metainfo.text", "pk": 47615, "fields": {"kind": 131, "text": "\u0160njaric\u00a0Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rum\u00e4nien), 28. 1. 1930.", "source": 188}}, {"model": "metainfo.text", "pk": 47626, "fields": {"kind": 130, "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden K\u00fcnste, wo er bis 1907/08 (u. a. bei J\u00f3zef v. Mehoffer, s. d., und Leon Wycz\u00f3lkowski) Malerei stud., 1902\u201303 bildete er sich an der Kunstgewerbeschule in Wien weiter, 1904 unternahm er Stud.reisen durch Italien und Frankreich. S., der sich in Zakopane von einer Tuberkuloseerkrankung erholen mu\u00dfte, verbrachte den Winter 1904/5 bei den Huzulen, wo er Landschafts- und Genrebilder aus dem Leben der Goralen malte. In der Folge zeichnete er Karikaturen f\u00fcr die satir. Z. \u201eChochol\u201c (1902) und \u201eLiberum Veto\u201c (1903\u201305), 1904 ver\u00f6ff. er die Mappe \u201e30 Karikaturen\u201c, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. K\u00fcnstler \u201eSztuka\u201c und im selben Jahr Mitarbeiter des ber\u00fchmten Krakauer Kabaretts \u201eZielony Balonik\u201c, f\u00fcr das er die Inneneinrichtung des Caf\u00e9s und Einladungen entwarf. W\u00e4hrend dieser Zeit fertigte er auch Portr\u00e4ts, Karikaturen von bekannten K\u00fcnstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in \u00d6l mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) lie\u00df er sich im selben Jahr in Lemberg nieder. W\u00e4hrend seiner Milit\u00e4rdienstzeit (1914\u201317)zeichnete er Portr\u00e4ts und Karikaturen bedeutender Pers\u00f6nlichkeiten des Milit\u00e4rwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920\u201330 an der dortigen Schule f\u00fcr Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem \u0152uvre der hist. und religi\u00f6sen Thematik zuwandte; 1918\u201319 zeichnete er Karikaturen f\u00fcr die Z. \u201eSzczutek\u201c und 1920 f\u00fcr \u201eRzeczpospolita\u201c; ab 1930 lehrte er an der Akad. der bildenden K\u00fcnste in Krakau (Krak\u00f3w); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein \u0152uvre fand in zahlreichen in- und ausl\u00e4nd. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, M\u00fcnchen und Rom).\n", "source": 187}}, {"model": "metainfo.text", "pk": 47627, "fields": {"kind": 131, "text": "Sichulski\u00a0Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lw\u00f3w, Galizien (L\u2019viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; r\u00f6m.-kath.", "source": 187}}, {"model": "metainfo.text", "pk": 47630, "fields": {"kind": 130, "text": "Sohn eines Arztes und Hptm. der Sch\u00fctzenkompanie Ulten. S., der nach dem Willen seines Vaters urspr\u00fcngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden K\u00fcnste in M\u00fcnchen, wo er auch Privatunterricht nahm; anschlie\u00dfend \u00fcbersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. z\u00e4hlte die sp\u00e4tere dt. Kn. Auguste Viktoria zu seinen Sch\u00fclerinnen). 1889 geh\u00f6rte er zu den Gr\u00fcndungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s \u0152uvre umfa\u00dft vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurg\u00e4sten gro\u00dfen Anklang; seine Bedeutung liegt aber v. a. in der exakten Wiedergabe der damaligen topograph. Gegebenheiten, wodurch es ihm gelang, ein Zeugnis der dortigen Bausubstanz um 1900 f\u00fcr die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachla\u00df bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum pr\u00e4sentiert.\n", "source": 186}}, {"model": "metainfo.text", "pk": 47631, "fields": {"kind": 131, "text": "Settari\u00a0Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905.", "source": 186}}, {"model": "metainfo.text", "pk": 47634, "fields": {"kind": 130, "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869\u201373 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und N\u00d6 ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rath\u00e4user in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repr\u00e4sentationsbed\u00fcrfnis seiner Zeit stark entgegen kamen, pr\u00e4gte v. a. das Stadtbild von St. P\u00f6lten, wo er erstmals 1883 mit dem neobarock gepr\u00e4gten Hauptgeb\u00e4ude der Sparkasse in Erscheinung trat. Es folgten weitere Auftr\u00e4ge f\u00fcr kommunale Bauten und Amtsgeb\u00e4ude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgeb\u00e4udes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Geb\u00e4uden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begr\u00fcntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Sch\u00f6nbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgef\u00fchrt wurde. S. \u2013 auch im privaten Wohnbau t\u00e4tig \u2013 setzte in seinem \u0152uvre \u201edie Formimpulse des strengen Historismus unter dem Einflu\u00df der neueren Entwicklungen in einen dekorativen Repr\u00e4sentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verf\u00fcgung stehenden Formenapparates f\u00fcr zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden lie\u00df\u201c (W. Kitlitschka).\n", "source": 185}}, {"model": "metainfo.text", "pk": 47635, "fields": {"kind": 131, "text": "Sehnal\u00a0Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910.", "source": 185}}, {"model": "metainfo.text", "pk": 47640, "fields": {"kind": 130, "text": "Sohn des Badener Gmd.Sekret\u00e4rs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861\u201365 das Gymn. im Stift Heiligenkreuz, wo er auch S\u00e4ngerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) \u00fcbersiedelte die Familie (S. hatte zw\u00f6lf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verlie\u00df er den Orden auf Anraten seiner Oberen, die w\u00e4hrend des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 w\u00e4hrend einer Erkrankung den zweiten Vornamen \u201eMaria\u201c an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (N\u00d6) \u2013 wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als \u201ePapst von Marchegg\u201c bezeichnet wurde \u2013, 1879\u201386 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Gro\u00dfstadt kennen und antwortete 1882 mit der Gr\u00fcndung des \u201eKatholischen Lehrlings-Vereins\u201c, rief 1886 das \u201eLehrlingsasyl\u201c sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. \u201eDas christliche Handwerk\u201c (Vorl\u00e4ufer der jetzt noch erscheinenden \u201eKalasantiner-Bl\u00e4tter\u201c) heraus, 1889 baute er in F\u00fcnfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gr\u00fcndung der \u201eKongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz\u201c (\u201eKalasantiner\u201c), der ersten \u00f6sterr. M\u00e4nnerkongregation, die sich der Arbeiter und v. a. der Lehrlinge annehmen wollte. Diesem Auftrag versuchte S. durch Erziehung der Kinder und der Lehrlingsjugend in Horten, Heimen und Oratorien sowie durch Erteilung des Religionsunterrichtes in Grund- und Berufsschulen gerecht zu werden. Die Gemeinschaft sollte dar\u00fcber hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken \u2013 sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch \u00dcbernahme von Pfarren in Arbeitervierteln der St\u00e4dte. Weitere begleitende Gr\u00fcndungen waren: Marian. Arbeitersodalit\u00e4t, Herz Jesu-Arbeiter-Oratorium, Frauenwohlt\u00e4tigkeitsver., Mariazellerver. und Muttergottesbund. 1897\u20131926 wurden weitere elf Niederlassungen der Kongregation (u. a. auch 1902 in Budapest) errichtet. Sein soziales Engagement hat S. auch in die Tagespolitik eingreifen lassen: Er forderte z. B. die Arbeiter zur Gr\u00fcndung von Selbstschutzund Bildungsverb\u00e4nden auf und unterst\u00fctzte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder \u00f6ff. Kontroverse zur\u00fcck. Kardinal Piffl (s. d.), der ihn freundschaftl. unterst\u00fctzte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den \u201eArbeiterapostel\u201c. Dem 1949 er\u00f6ffneten Seligsprechungsproze\u00df folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.\u2019 kirchl. Gedenktag ist der 17. September.\n", "source": 181}}, {"model": "metainfo.text", "pk": 47641, "fields": {"kind": 131, "text": "Schwartz\u00a0\u2014 P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (N\u00d6), 28. 2. 1852; gest. Wien, 15. 9. 1929.", "source": 181}}, {"model": "metainfo.text", "pk": 47642, "fields": {"kind": 130, "text": "Sohn eines M\u00fcllers. Nach dem Besuch des Gymn. in Olm\u00fctz (Olomouc) 1854\u201362 stud. S. von 1862\u201367 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtspr\u00fcfung ablegte. Ab 1865 war er Mitgl. des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschlo\u00df. 1867 trat S. als Stud.Pr\u00e4fekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (\u017datec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zur\u00fcck, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Au\u00dfer als Gymn.Lehrer wirkte S. auch als Fachpr\u00fcfer an der Konsularakad. Wiss. besch\u00e4ftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und \u00fcbersichtl. Darstellungsweise auszeichnen.\n", "source": 182}}, {"model": "metainfo.text", "pk": 47643, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, M\u00e4hren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903.", "source": 182}}, {"model": "metainfo.text", "pk": 47644, "fields": {"kind": 130, "text": "Sohn des Zwirnh\u00e4ndlers Franz Sales S.; Bruder von Sebastian S., Onkel des Priesters Josef S., des Caspar und des Franz Sales S. (alle s. d.). S. besuchte das Gymn. in Linz und Kremsm\u00fcnster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und er\u00f6ffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er au\u00dferdem eine F\u00e4rberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige H\u00e4user in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den o\u00f6. Landtag gew\u00e4hlt, dem er dann auch 1861\u201379 angeh\u00f6ren sollte und in dem er als Obmann-Stellv. des Stra\u00dfenausschusses fungierte. 1864\u201373 Bgm. von Freistadt, erwarb er sich Verdienste um das Kommunalwesen, etwa durch die Errichtung der Stadtsparkasse (1866), deren 1. Dion.Vorstand er wurde. Bes. Augenmerk legte er auf die Entwicklung des st\u00e4dt. Schulwesens, zu dessen Entwicklung er ma\u00dfgebl. beitrug. So initiierte S. die Errichtung des 1867 er\u00f6ffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. gef\u00fchrt werden durfte, und richtete ferner, nach dem R\u00fcckzug der Piaristen, 1871 eine Knabenvolksschule ein. Au\u00dferdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freist\u00e4dter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n", "source": 183}}, {"model": "metainfo.text", "pk": 47645, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Kaspar, Politiker und Kaufmann. Geb. Lasberg (O\u00d6), 6. 11. 1811; gest. Freistadt (O\u00d6), 7. 5. 1879.", "source": 183}}, {"model": "metainfo.text", "pk": 47648, "fields": {"kind": 130, "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Nei\u00dfe stud. S. 1834\u201336 in Breslau (Wroclaw) und 1836\u201337 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Nei\u00dfe, 1839 in Breslau und dort im selben Jahr Referendar. S. war befreundet mit den schles. Dichtern Joseph v. Eichendorff und Friedrich v. Sallet und bereits 1836 in Berlin Mitgl. des Literatenver. \u201eDer Tunnel \u00fcber der Spree\u201c und des j\u00fcngeren Berliner Dichterver. Er bet\u00e4tigte sich journalist. vorwiegend als Theaterkritiker (\u201eTheater-Figaro\u201c, \u201eBreslauer Zeitung\u201c 1840ff.), war nach seiner R\u00fcckkehr nach Breslau 1840\u201348 ausschlie\u00dfl. f\u00fcr die Presse t\u00e4tig und wurde Mitarbeiter auch ausw\u00e4rtiger Z. (u. a. \u201eBerliner Figaro\u201c, \u201eBerliner Modenspiegel\u201c, \u201eDer Gesellschafter\u201c, \u201eDer Pilot\u201c). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des \u201eBreslauer Volks-Kalenders\u201c (bzw. \u201eDeutscher Volkskalender\u201c). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. \u201eBestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844\u201c (60 Aufs\u00e4tze, 1844), in der er die M\u00f6glichkeiten journalist. Arbeit nach Ma\u00dfgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als f\u00fcr \u00f6sterr. Verh\u00e4ltnisse bes. geeigneten Ztg.Red. aus, der geschickt zwischen den Anliegen der Autoren und der Forderungen der Zensur im Sinne Sedlnitzkys v. Choltitz (s. d.) zu vermitteln verstand. Nach Wien geholt, \u00fcbernahm S., der von Hebbel (s. d.) und Stifter gesch\u00e4tzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer T\u00e4tigkeit in der Red. der \u201ePresse\u201c, 1849, ab 1850 als verantwortl. Red. die \u201eWiener Zeitung\u201c, die in der Zeit seiner T\u00e4tigkeit um die zus\u00e4tzl. Organe \u201eAbendblatt\u201c (1852\u201357), \u201e\u00d6sterreichische Bl\u00e4tter f\u00fcr Literatur und Kunst\u201c (1852\u201357) und die \u201e\u00d6sterreichische Wochenschrift f\u00fcr Wissenschaft, Kunst und \u00f6ffentliches Leben\u201c (1863\u201365) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausl\u00e4nd. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verl\u00e4\u00dflichkeit gesch\u00e4tzt war. Zuletzt lebte er v\u00f6llig erblindet und zur\u00fcckgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anf\u00e4ngl. Bankbeamter, trat ebenfalls als Journalist hervor, sp\u00e4ter als Autor einiger Lustspiele und Schw\u00e4nke (\u201eDer Heiratsvermittler\u201c, 1886, \u201eSch\u00f6nheitspreis und Liebespreis\u201c, 1893, usw.).\n", "source": 184}}, {"model": "metainfo.text", "pk": 47649, "fields": {"kind": 131, "text": "Schweitzer\u00a0Leopold Albrecht, Journalist und Schriftsteller. Geb. Nei\u00dfe, Preu\u00dfen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (N\u00d6), 9. 7. 1896.", "source": 184}}, {"model": "metainfo.text", "pk": 47650, "fields": {"kind": 130, "text": "Nach absolv. Schulbesuch arbeitete S. zun\u00e4chst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu \u00fcbernehmen. Polit. engagiert, geh\u00f6rte er 1882\u201384 sowie 1894\u201397 dem Badener Gmd.Rat an, wo er sich v. a. f\u00fcr die Anliegen der Hauerschaft einsetzte. Bes. Verdienste um seine Heimatstadt erwarb sich S., der nach dem Tod seiner ersten Frau (1888) im selben Jahr Maria, geb. Gleichweit, ehel., bei der Bek\u00e4mpfung der Reblaus, die 1882 auch in Baden zu w\u00fcten begann. Durch das Aufpfropfen der Edelreben auf gegen den Sch\u00e4dling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weing\u00e4rten mit gro\u00dfem Erfolg angewandt hatte, konnten die Badener Weinkulturen in relativ kurzer Zeit gerettet werden. Auf Stud.Reisen nach Ungarn 1889 und 1896, in die Unterstmk. 1891 und 1898 sowie nach Kroatien 1896 verbesserte S. seine Kenntnisse, die er in Baden erfolgreich u. a. f\u00fcr seine Rebschule, in der er die angef\u00fchrte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner gro\u00dfen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom n\u00f6. Landesausschu\u00df als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Sch\u00e4dling zu unterweisen. F\u00fcr seine erfolgreiche T\u00e4tigkeit erhielt er von der Stadt Baden sowie vom Ackerbaumin. Anerkennungspreise. S., allen Neuerungen auf dem Gebiet des Weinbaus stets aufgeschlossen, entwickelte 1895 den ersten Weingartenpflug und soll 1897 die bis dahin unbekannte Neuburger Rebe eingef\u00fchrt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gr\u00fcndete er 1887 den Badener Rinderzuchtver. und besa\u00df eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte \u2013 er war Mitgl. bei mehreren Ver. \u2013, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinsch\u00e4tzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n", "source": 180}}, {"model": "metainfo.text", "pk": 47651, "fields": {"kind": 131, "text": "Schwabl\u00a0Franz, Landwirt und Weinhauer. Geb. Baden (N\u00d6), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers.", "source": 180}}, {"model": "metainfo.text", "pk": 47660, "fields": {"kind": 130, "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871\u201377 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877\u201382 Park Orchester, Amsterdam, 1882\u201383 Parlow Orchester, Hamburg, 1883\u201384 kgl. Staatskapelle Dresden. 1884\u201391 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegr\u00fcndete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mu\u00dfte er diese Stelle jedoch Oktober 1902 krankheitshalber aufgeben und zog nach Kreuznach, wo er bereits vorher Sommerkurse geleitet hatte, und widmete sich der Komposition. 1903\u201304 spielte S. im Pittsburgh Symphony Orchestra, 1904\u201309 im Philadelphia Orchestra, 1910 im Orchester der New Yorker Metropolitan Opera. S., sowohl als Orchesterspieler wie als Solist ein Virtuose von hohem Rang, gab ein noch heute verwendetes Hilfswerk f\u00fcr die Ausf\u00fchrung von schwierigen Harfenstellen in den Opern Richard Wagners heraus und wirkte auch 1903 und 1906 bei den Wagnerauff. an der Covent Garden Opera London mit. Von seinen durchwegs der Harfe gewidmeten Salonst\u00fccken ist die Mazurka, op. 12, beliebt geblieben. 1890 Kammervirtuose des Hg. Ernst von Sachsen-Altenburg. Sein Bruder Heinrich S. (geb. Wien, 25. 11. 1867; gest. Boston, Mass., USA, 17. 4. 1913) stud. 1878\u201384 ebenfalls bei Anton Zamara am Wr. Konservatorium der Ges. der Musikfreunde, trat nach einer Saison beim Parlow Orchester, Hamburg, 1885 als 1. Harfenist ins Boston Symphony Orchestra ein und lehrte am Bostoner New England Conservatory. Er trat auch als Solist bei den Musikfestivals in Worcester (Mass.) sowie in Paris und London auf. S.s Sohn Joseph E. S. (geb. Leipzig, Sachsen/Deutschland, 19. 5. 1886; gest. Los Angeles, Ca., USA, 9. 12. 1938) stud. bei seinem Vater, 1900\u201301 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904\u201305 bzw. 1908\u201309 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911\u201313 Harfenist einer Opernges. in Boston, lehrte er 1915\u201320 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n", "source": 179}}, {"model": "metainfo.text", "pk": 47661, "fields": {"kind": 131, "text": "Schu\u00ebcker (eigentl. Schu\u00f6cker)\u00a0Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preu\u00dfen (Bad Kreuznach, Deutschland), 9. 11. 1911.", "source": 179}}, {"model": "metainfo.text", "pk": 47662, "fields": {"kind": 130, "text": "Sohn von Norbert Michael, Bruder von Norbert, Neffe von Anton S. (alle s. d.). Bedingt durch die zahlreichen Reisen seines Vaters, lernte S. bereits in fr\u00fcher Jugend zahlreiche St\u00e4dte Europas kennen. Seine ersten k\u00fcnstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der \u00dcbersiedlung seines Vaters nach Paris besuchte S. 1854/55 die Modellierklasse der Pariser Akad. Aber schon kurz darauf verlegte der Vater seinen Wohnsitz nach Frankfurt a. Main, wo S. 1855/56 vorerst Privatunterricht in Bildhauerei von dem mit seinem Vater befreundeten Eduard Schmidt von der Launitz erhielt. 1856\u201358 stud. er am St\u00e4del\u2019schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858\u201361 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 \u00fcbersiedelte er nach Wien, 1863\u201365 hielt er sich, finanziert durch ein Rom-Stipendium, in Italien auf, 1866 in Paris. Ab 1867 wieder in Wien, arbeitete S. als Mitarbeiter bei den Bildhauern Victor Tilgner und Rudolf Weyr mit, 1894\u20131908 war er Ass. an der Akad. der bildenden K\u00fcnste in Wien, wo er zeitweise die Klasse f\u00fcr Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-B\u00fcste f\u00fcr das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisb\u00fcste des Nikolaus Joseph v. Jacquin f\u00fcr die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) f\u00fcr den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschm\u00fcckung des Naturhist. Mus. in Wien mit.\n", "source": 178}}, {"model": "metainfo.text", "pk": 47663, "fields": {"kind": 131, "text": "Schr\u00f6dl\u00a0Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908.", "source": 178}}, {"model": "metainfo.text", "pk": 47672, "fields": {"kind": 130, "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olm\u00fctz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Br\u00fcnn (Brno) Maschinenbau, 1898\u20131903 an der Bauing.Schule (1905 Staatspr\u00fcfung). Zun\u00e4chst an der Br\u00fcnner Hochschule f\u00fcr einige Monate als Ass. t\u00e4tig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen gr\u00f6\u00dferen Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919\u201322), betraut. Als Baurat \u00fcbernahm er 1920 die selbst\u00e4ndige Leitung der Bauabt., die f\u00fcr die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. ma\u00dfgebl. an den von Peter Behrens und Alexander Popp geplanten Neubauten bei der Tabakfabrik in Linz (1929ff.) sowie an der Errichtung zahlreicher, in der Nachkriegszeit geschaffener Wohnhausanlagen beteiligt. Daneben publ. S.\u00fcber die Baut\u00e4tigkeit der \u00d6sterr. Tabakregie. 1930 HR, 1947 i. R.\n", "source": 177}}, {"model": "metainfo.text", "pk": 47673, "fields": {"kind": 131, "text": "Schreyer\u00a0Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravic\u00ed, M\u00e4hren (Bridlicn\u00e1, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950.", "source": 177}}, {"model": "metainfo.text", "pk": 47676, "fields": {"kind": 130, "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840\u201341 dort Med., ab 1841 an der Univ. Wien, wo er 1845 zum Dr. med. prom. wurde. Nach weiterer chirurg. Ausbildung wirkte er am Provinzialstrafhaus in Wien, ab 1856 am Filialspital des Allg. Krankenhauses in Wien II., zuletzt als dessen prov. Vorstand, ab 1858 als Primarius der IV. med. Abt. am Allg. Krankenhaus. S. machte sich um die Verwendung der 1853 in Schottland entwickelten Subkutanspritze zur Einf\u00fchrung von Medikamenten bei der Schmerzbehandlung (Injektion) verdient und stellte diese, erst in den 70er Jahren allg. angewendete Methode sowie seine Erfahrungen damit schon 1861 vor. Auch begann er sich fr\u00fch mit dem Einflu\u00df der Haft auf die Entstehung von Geistesst\u00f6rungen bei Str\u00e4flingen zu besch\u00e4ftigen. An seiner Klinik betrieb der ab 1878 dort t\u00e4tige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882\u201385 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n", "source": 175}}, {"model": "metainfo.text", "pk": 47677, "fields": {"kind": 131, "text": "Scholz\u00a0Franz, Mediziner. Geb. Moldau, B\u00f6hmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902.", "source": 175}}, {"model": "metainfo.text", "pk": 47678, "fields": {"kind": 130, "text": "Sohn des Kaspar Schram(m)el (geb. H\u00f6rmanns b. Litschau/Litschau, N\u00d6, 6. 1. 1811; gest. Langenzersdorf, N\u00d6, 20. 12. 1895) und (Eheschlie\u00dfung 1853) der Volkss\u00e4ngerin Aloisia Ernst (1829\u20131881), Bruder des Joseph S. (geb.Ottakring, N\u00d6/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833\u20131905), der, 1866 als Invalide aus dem Milit\u00e4rdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon fr\u00fch in Dorfkapellen als Klarinettist t\u00e4tig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkst\u00fcml.-musikal. Wirtshausproduktionen. S. wirkte ebenso wie sein Bruder Joseph schon als Kind bei den Auftritten des Vaters als Geiger mit (1861 gilt als Beginn ihrer \u00f6ff. T\u00e4tigkeit), doch erhielten beide \u2013 ein f\u00fcr ihre Verh\u00e4ltnisse ungew\u00f6hnl. Schritt \u2013 auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862\u201363 Violinsch\u00fcler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschlu\u00df (aus ungekl\u00e4rten Ursachen) 1866 Karl Hei\u00dflers, Joseph 1865/66 ebenfalls Sch\u00fcler Hellmesbergers. Nach dem Milit\u00e4rdienst (1866\u201372, 1870 Korporal) spielte S. in einigen \u201eNationalquartetten\u201c und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in gro\u00dfen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gr\u00fcndete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient \u2013 1869\u201371 \u2013 bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett (\u201eNu\u00dfdorfer Terzett\u201c), in dem Joseph die 1., er selbst die 2. Geige und zun\u00e4chst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Br\u00fcder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. \u201epicks\u00fc\u00dfes H\u00f6lzl\u201c) Georg D\u00e4nzer (geb.Hernals, N\u00d6/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett \u201eGebr. Schrammel, D\u00e4nzer und Strohmayer\u201c, das in dieser Besetzung bis zum Ausscheiden D\u00e4nzers Ende 1891 \u2013 Strohmayer verlie\u00df das Quartett Ende 1892 \u2013 verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schlie\u00dfl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die urspr\u00fcngl. Quartettbesetzung zur\u00fcckgegriffen. Im Wr. Musikleben spielten die \u201eSchrammeln\u201c eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu h\u00f6ren, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit \u201eNaturs\u00e4ngern\u201c, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkss\u00e4nger lie\u00dfen diese Vortr\u00e4ge zeitweise verbieten, weswegen die Br\u00fcder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. \u00c4u\u00dferst erfolgreiche Gastspielreisen f\u00fchrten das Quartett 1888 und 1889 durch Deutschland, der letzte H\u00f6hepunkt waren die t\u00e4gl. Produktionen anl\u00e4\u00dfl. der Internationalen Ausst. f\u00fcr Musik- und Theaterwesen in Wien, 1892, doch mu\u00dfte sich S. wegen seiner zunehmenden Herzkrankheit dann zur\u00fcckziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterf\u00fchrte, v\u00f6llig mittellos. Als Komponist schlo\u00df S. an seine Vorl\u00e4ufer an (so gab er 1888 3 He. \u201eAlte oesterreichische Volksmelodien \u2026\u201c heraus), seine (zu etwa 1/3 gedruckten) \u00fcber 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und M\u00e4rsche (u. a. \u201eWien bleibt Wien\u201c, 1886), Josephs bekannteste Komposition ist das Lied \u201eVindobona, du herrliche Stadt\u201c. Die \u201eSchrammeln\u201c und \u201eSchrammelmusik\u201c \u201eblieben als Begriffe f\u00fcr ein volkst\u00fcml. Ensemble und ein entsprechendes Musizieren erhalten\u201c (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorl\u00e4ufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. F\u00e4higkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch h\u00f6chste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strau\u00df.\n", "source": 176}}, {"model": "metainfo.text", "pk": 47679, "fields": {"kind": 131, "text": "Schrammel\u00a0Johann, Musiker und Komponist. Geb. Neulerchenfeld, N\u00d6 (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893.", "source": 176}}, {"model": "metainfo.text", "pk": 47684, "fields": {"kind": 130, "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine fr\u00fche Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826\u201329 an der Univ. Graz Jus, 1829 Dr. jur., und trat 1834 bei der Hof- und Kammerprokuratur als Konzeptspraktikant ein. 1836 wurde er zur Kammerprokuratur nach Lemberg (L\u2019viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) t\u00e4tig war. 1847 erfolgte seine Versetzung als Landrat zum Gef\u00e4llen-Bez.Gericht bzw. Landrecht in Tarn\u00f3w. W\u00e4hrend eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. f\u00fcr den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschu\u00df mit, f\u00fcr den er auch als Referent fungierte. Hier setzte er sich u. a. bes. f\u00fcr die Unabh\u00e4ngigkeit K\u00e4rntens ein. Weiters war S. Mitgl. der Redaktionskomm. f\u00fcr die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem \u201eZentrumklub\u201c bei und geh\u00f6rte im Dezember dieses Jahres der Reichstagsdeputation nach Olm\u00fctz (Olomouc) und Prag an. Nach der Aufl\u00f6sung des Reichstags 1849 zog sich S. aus der Politik zur\u00fcck und wurde dem n\u00f6. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Pr\u00e4s. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenb\u00fcrgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepr\u00e4s. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepr\u00e4s. des Wr. Landesgerichts ernannt. Wegen seiner geschw\u00e4chten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n", "source": 174}}, {"model": "metainfo.text", "pk": 47685, "fields": {"kind": 131, "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884.", "source": 174}}, {"model": "metainfo.text", "pk": 47688, "fields": {"kind": 130, "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbi\u00df, Vater von B\u00e9la Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. B\u00e9la Frh. v. S.). Wuchs nach dem fr\u00fchen Tod seines Vaters im Hause von Karl Gf. Gatterburg, des zweiten Gatten seiner Mutter, auf. Nach Privatunterricht trat er 1820 beim 4. Chevauxlegersrgt. in die k. Armee ein, wurde 1822 Unterlt., 1831 Oblt., 1835 Rtm. 2., 1840 1. Kl., 1846 Mjr., 1848 Obstlt., 1849 Obst., 1851 GM, 1859 FML, 1863 pensioniert, 1865 jedoch als Gendarmeriegen.Insp. reaktiviert und 1868 als Gen. der Kav. ad honores endg\u00fcltig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich w\u00e4hrend des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab \u00fcberstellt und bew\u00e4hrte sich in der Folge an verschiedenen Standorten als Brigadier. Daneben war er 1856 dem Kg. v. Griechenland, 1858 Erzhg. Karl Ferdinand bei dessen Inspektionstour zu den Landeskontingenten des Dt. Bundes zugewiesen. Im italien. Feldzug von 1859 tat er sich als Division\u00e4r beim 3. Inf.Armeekorps durch umsichtige F\u00fchrung sowie pers\u00f6nl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode f\u00fchrte er dann die Administrationsgesch\u00e4fte des Landesgendarmeriekmdo. in Lemberg (L\u2019viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de V\u00e1sonyke\u00f6 (geb. Wien, 30. 10. 1805; gest. Verona, Venetien/Italien, 9. 1. 1851), 1855 Theresia Franziska Juliana Si(e)gel (geb. Wien, 11. 3. 1827; gest. Wien, 1. 5. 1857) und 1859 Anna Scheiger (geb. Wien, 7. 7. 1820; gest. G\u00f6rz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausl\u00e4nd. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes f\u00fcr die von ihm angeregte und nach dem Feldzug von 1848/49 durchgef\u00fchrte Reorganisation der Husarenrgt. verdient.\n", "source": 172}}, {"model": "metainfo.text", "pk": 47689, "fields": {"kind": 131, "text": "Sch\u00f6nberger (Schoenberger) (Carl Friedrich)\u00a0Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorder\u00f6sterr. (Deutschland), 30. 6. 1804; gest. G\u00f6rz, G\u00f6rz-Gradisca (Gorizia, Italien), 19. 12. 1880.", "source": 172}}, {"model": "metainfo.text", "pk": 47690, "fields": {"kind": 130, "text": "Stud. 1872\u201380 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), sp\u00e4ter auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Ru\u00dfland, Deutschland, \u00d6sterr. und Belgien. 1880\u201385 lehrte er in Wien, 1886 reiste er nach Schweden und anschlie\u00dfend nach London, wo er im J\u00e4nner 1887 erstmals als Solist auftrat und sich in der Folge niederlie\u00df. S. geh\u00f6rte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, sp\u00e4ter unternahm er Konzertreisen in Europa und England, auch als Dirigent einer reisenden Opernges. Er war mit der Tochter des engl. Gen. Sir Henry Tuson verheiratet.\n", "source": 173}}, {"model": "metainfo.text", "pk": 47691, "fields": {"kind": 131, "text": "Sch\u00f6nberger\u00a0Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Gro\u00dfbritannien), 9. 3. 1930.", "source": 173}}, {"model": "metainfo.text", "pk": 47694, "fields": {"kind": 130, "text": "Sohn des Vorigen, Bruder von Arthur S., Schwager von M. Hajek (beide s. d.); mos. Stud. nach Absolv. des Akadem. Gymn. in Wien ab 1882 an der dortigen Univ. Med., u. a. bei E. Albert, Billroth, E. W. v. Br\u00fccke sowie Nothnagel (alle s. d.), und wurde 1888 zum Dr. med. prom. Seine weitere Ausbildung erhielt er 1887/88 als Aspirant an der Klinik Nothnagel, ab 1889 bei Albert, wo er 1891\u201395 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien f\u00fcr Chirurgie und wurde 1907 Tit. ao., 1927 unbesoldeter ao. Prof. 1895/96 stand er der Chirurg. Abt. an der Wr. Allg. Poliklinik vor, kam 1896 als Primarius f\u00fcr Chirurgie an das K.-Franz-Josef-Spital, 1902 an das Wiedner Krankenhaus und trat 1934 i. R. S. gestaltete die von ihm geleiteten Abt. gem\u00e4\u00df den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und ver\u00f6ff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentz\u00fcndung bzw. -katarrh, v. a. aber nat\u00fcrl. chirurg. Problemen. Als einer der ersten besch\u00e4ftigte er sich mit der operativen Behandlung der akuten Blinddarmentz\u00fcndung, propagierte umfangreiche Resektionen bei Magen- und Zw\u00f6lffingerdarmgeschw\u00fcren, erarbeitete Vorbeugungsma\u00dfnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und besch\u00e4ftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besa\u00df spr\u00fchenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch \u00f6ff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des \u00d6sterr. Verdienstordens. Durch sein Bem\u00fchen um die Diagnostik der Blinddarmentz\u00fcndung und sein entschiedenes Eintreten in Theorie und Praxis f\u00fcr umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen pers\u00f6nl. Verh\u00e4ltnis zu seinem Bruder Arthur, das in zwei von dessen erz\u00e4hler. Werken (\u201eDer blinde Geronimo und sein Bruder\u201c, \u201eFlucht in die Finsternis\u201c) Niederschlag fand.\n", "source": 169}}, {"model": "metainfo.text", "pk": 47695, "fields": {"kind": 131, "text": "Schnitzler\u00a0Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939.", "source": 169}}, {"model": "metainfo.text", "pk": 47696, "fields": {"kind": 130, "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874\u201378 an der Univ. Wien Jus, 1881 Dr. jur. 1879 trat S. beim Landesgericht Wien in den Justizdienst, wurde 1885 Bez.Gerichtsadjunkt in Wolkersdorf, 1887 in Wien-Hietzing, 1891 Gerichtsadjunkt beim Wr. Landesgericht. 1896 wechselte S. zur Staatsanwaltschaft (Substitut in Korneuburg) und war ab 1897 Staatsanwalt in Steyr, 1902 in Krems, bis er 1903 ins Justizmin. berufen wurde, wo er, 1904 Sektionsrat, 1907 Titel und Charakter eines Min.Rates, 1909 Min.Rat, 1912 zum Sektionschef avancierte. S. war an den legislativen Arbeiten des Justizmin., insbes. auf den Gebieten der Strafrechts- und der Strafproze\u00dfreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees f\u00fcr die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wof\u00fcr er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verst\u00e4ndnis f\u00fcr die Bed\u00fcrfnisse der Milit\u00e4rverwaltung \u20131877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. \u2013 brachte es mit sich, da\u00df sein Rat von den milit\u00e4r. Stellen oft in Anspruch genommen wurde; f\u00fcr seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Milit\u00e4rstrafverfahrens (Milit\u00e4rstrafproze\u00dfordnung von 1912) erhielt er 1912 das Komturkreuz des Franz Joseph-Ordens mit dem Stern. Auch die zahlreichen Kriegsstrafgesetze sind unter seiner Mitwirkung zustande gekommen. In den Aussch\u00fcssen beider H\u00e4user des Reichsrates war er sehr oft als Vertreter des Justizmin. t\u00e4tig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatspr\u00fcfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n", "source": 170}}, {"model": "metainfo.text", "pk": 47697, "fields": {"kind": 131, "text": "Schober\u00a0Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917.", "source": 170}}, {"model": "metainfo.text", "pk": 47700, "fields": {"kind": 130, "text": "Sohn von (Heinrich) Eduard v. S. (s. u.), Neffe von (Wilhelm) Alexander, Cousin von Philipp Wilhelm d. J. und Paul Eduard v. S. (alle s. d.), Schwiegervater von Armand Dumreicher v. \u00d6sterreicher (s. d.); evang. HB. S., der als Mitsch\u00f6pfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Gro\u00dfhandlungshaus \u201eAlexander Schoeller\u201c (sp\u00e4ter \u201eSchoeller & Co.\u201c) nach Wien geholt, ab 1869 \u00f6ff. Gesellschafter. Er konnte seinen Onkel bei der Weiterf\u00fchrung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und M\u00fchlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von \u201eSchoeller & Co.\u201c nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) \u00fcberging, durch die Erzeugung von Blechen und Dr\u00e4hten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene H\u00fclsenfabrik zur Produktion von Kriegsmaterial begr\u00fcndet. Im Ternitzer Werk, der \u201eTernitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.\u201c, f\u00fchrte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gr\u00fcnden nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgel\u00f6st. Wegen eines schweren Nervenleidens mu\u00dfte er die Firmenleitung zuletzt fast g\u00e4nzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard \u00fcberlassen. S. bekleidete auch eine gro\u00dfe Zahl von Verwaltungsratsstellen bei gro\u00dfen \u00f6sterr. Ind.-, Banken- und Eisenbahnunternehmungen, wie etwa bei der Bodencreditanstalt in Wien und der K. Ferdinands-Nordbahn. Am Gmd.Leben der evang. Gmd. HB in Wien aktiv beteiligt, war S. 1865\u201389 Gmd.Vertreter, 1867\u201389 auch Presbyter und betreute \u2013 wie auch schon sein Onkel \u2013 deren Verm\u00f6gensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. D\u00fcren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, N\u00d6, 18. 1. 1879), war wie etl. andere Angeh\u00f6rige der Familie S. in der Zuckerind. t\u00e4tig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterst\u00fctzung seines Bruders Alexander pachtete er 1853 die Herrschaft Edel\u00e9ny bei Miskolcz und richtete die darauf befindl. Zuckerr\u00fcbenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu k\u00e4mpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n", "source": 171}}, {"model": "metainfo.text", "pk": 47701, "fields": {"kind": 131, "text": "Schoeller\u00a0Gustav Adolph von, Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier. Geb. D\u00fcren, Preu\u00dfen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889.", "source": 171}}, {"model": "metainfo.text", "pk": 47706, "fields": {"kind": 130, "text": "Sohn eines Sattlermeisters und Gastwirts. S., der bei seinem mus. und Zeichner. begabten Vater ersten Zeichenunterricht erhielt, sollte die Marinemusikschule in Pola (Pula) besuchen, wurde aber wegen einer Augenschw\u00e4che zur\u00fcckgestellt. Daraufhin ging er nach Wien und stud. hier 1880\u201382 an der Akad. der bildenden K\u00fcnste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender K\u00fcnstler, so z. B. f\u00fcr die Z. \u201e\u00dcber Land und Meer\u201c. Als der k\u00fcnstler. Erfolg etwas nachlie\u00df, kehrte S. nach Mies zur\u00fcck, \u00fcbersiedelte aber 1895 wieder nach M\u00fcnchen, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als \u201eSalome\u201c. Sein \u0152uvre umfa\u00dft neben Portr\u00e4ts von Schauspielerinnen und span. T\u00e4nzerinnen auch Bildnisse von Mitgl. des bayer. K\u00f6nigshauses. S., der Mitgl. der M\u00fcnchner K\u00fcnstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n", "source": 168}}, {"model": "metainfo.text", "pk": 47707, "fields": {"kind": 131, "text": "Schmutzler\u00a0Leopold, Maler. Geb. Mies, B\u00f6hmen (Str\u00edbro, Tschechien), 29. 3. 1864; gest. M\u00fcnchen, Bayern (Deutschland), 20. 6. 1940.", "source": 168}}, {"model": "metainfo.text", "pk": 47712, "fields": {"kind": 130, "text": "Sohn des P\u00e4chterehepaars Wolf und Sara S., mos.; nach \u00dcbersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromer\u00ed\u017e) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922\u201323 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterst\u00fctzt von seinem Onkel und sp\u00e4terem Manager, Leo Engel, 1925\u201326 an der Hochschule f\u00fcr Musik in Berlin (Sch\u00fcler von Hermann Weissenborn) fortsetzte. Nach dem Milit\u00e4rdienst in Rum\u00e4nien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Deb\u00fct als Rundfunks\u00e4nger am 29. 3. 1929 (Vasco da Gama in Meyerbeers \u201eDie Afrikanerin\u201c), weitere Rundfunkproduktionen (Hans in Smetanas \u201eDie verkaufte Braut\u201c, Lionel in Flotows \u201eMartha\u201c), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von au\u00dferordentlicher Popularit\u00e4t \u2013 seiner geringen K\u00f6rpergr\u00f6\u00dfe wegen allerdings nur innerhalb der zu dieser Zeit aufbl\u00fchenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in \u201eDer Liebesexpress\u201c (Urauff. Berlin 1931) folgte der unerh\u00f6rte Siegeszug von \u201eEin Lied geht um die Welt\u201c (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Macht\u00fcbernahme in Deutschland wurde S., schon vorher diffamiert und angefeindet, mit Auftrittsverbot belegt und Wien immer mehr zu seinem Lebenszentrum, ab 1935 sein Wohnort. Hier wurden die n\u00e4chsten Filme \u201eWenn du jung bist, geh\u00f6rt dir die Welt\u201c, 1933, \u201eEin Stern f\u00e4llt vom Himmel\u201c, 1935, auch engl. Version, und \u201eHeut ist der sch\u00f6nste Tag in meinem Leben\u201c, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Pal\u00e4stina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937\u20131938 (mit Auftritten u. a. in der New Yorker Carnegie Hall) hervorzuheben. 1938 wieder in Wien, gab er im Herbst desselben Jahres Konzerte in Belgien und lie\u00df sich 1939 in Br\u00fcssel nieder, wo er als Rudolf in Puccinis \u201eLa Boh\u00e8me\u201c einen seiner seltenen B\u00fchnenauftritte hatte. Infolge des Kriegsverlaufs mu\u00dfte S. 1940 aus Belgien fl\u00fcchten, hielt sich in S\u00fcdfrankreich auf und gelangte 1942 unter gro\u00dfen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf v\u00f6llig mittellos. S. wurde als S\u00e4ngertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine \u2013 allerdings kleine und nicht restlos durchgebildete \u2013 lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und h\u00f6chsten Lage und ein f\u00fcr S. charakterist. \u201ewehm\u00fctiges\u201c Timbre aus.\n", "source": 167}}, {"model": "metainfo.text", "pk": 47713, "fields": {"kind": 131, "text": "Schmidt,\u00a0\u2014 Joseph S\u00e4nger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rum\u00e4nien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Z\u00fcrich (Schweiz), 16. 11. 1942.", "source": 167}}, {"model": "metainfo.text", "pk": 47714, "fields": {"kind": 130, "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Kne\u017ena (Rychnov nad Kne\u017enou) und Olm\u00fctz (Olomouc) begann S. eine kaufm\u00e4nn. Lehre in Br\u00fcnn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Gro\u00dfhandel bet\u00e4tigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gew\u00e4hlt worden war, \u00fcbernahm S. die Leitung des v\u00e4terlichen Gesch\u00e4fts in Schildberg und sp\u00e4ter gem. mit seinem \u00e4lteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papierm\u00fchle (sie galt als die \u00e4lteste der \u00d6sterr.-ung. Monarchie) und Bleiche in Gro\u00dfullersdorf und betrieb dort nach dem Ableben seines Bruders (1871) eine Papier- und Leinenerzeugung im eigenen Namen, jedoch unter der Fa. Ant. J. Schmidt u. S\u00f6hne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere f\u00fchrten zu einer neuen Bl\u00fcte dieser Papierm\u00fchle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Gro\u00dfullersdorf, eine \u2013 1917 aufgel\u00f6ste \u2013 Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige f\u00fcrstlich liechtensteinsche Mahlm\u00fchle in Olleschau (Ol\u0161any) und errichtete dort eine Fabrik f\u00fcr Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG \u00fcbernommen, die ab 1870 auch das sp\u00e4ter verbreitete Zigarettenpapier Marke \u201eOlleschau\u201c herstellte, wobei die Lieferschwierigkeiten der franz\u00f6s. Konkurrenz in den Krisenjahren 1870/71 gen\u00fctzt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olm\u00fctzer Handels- und Gewerbekammer in den m\u00e4hr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Gro\u00dfullersdorf, 1879\u201391 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegr\u00fcndeten Te\u00dfthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, sp\u00e4ter auch anderen Fragen der Landwirtschaft widmete. S. n\u00fctzte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die M\u00f6glichkeiten des erh\u00f6hten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde f\u00fcr seine wirtschaftliche und polit. T\u00e4tigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon w\u00e4hrend seiner Lebenszeit wurde die Unternehmung von seinen S\u00f6hnen Anton S. (geb. Gro\u00dfullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Gro\u00dfullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Gro\u00dfullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgef\u00fchrt. W\u00e4hrend Anton S. bis 1917 die Wr. Gesch\u00e4ftsstelle leitete, danach mit Richard die Ullersdorfer Papierm\u00fchle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einf\u00fchrte. Alle drei Br\u00fcder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizit\u00e4tswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung t\u00e4tig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908\u20131938 Kammerrat der Handels- und Gewerbekammer Olm\u00fctz.\n", "source": 166}}, {"model": "metainfo.text", "pk": 47715, "fields": {"kind": 131, "text": "\u2014 Anton Schmidt,\u00a0Fabrikant und Politiker. Geb. Schildberg, M\u00e4hren (\u0160t\u00edty, Tschechoslowakei), 9. 12. 1826; gest. Gro\u00dfullersdorf, M\u00e4hren (Velk\u00e9 Losiny, Tschechoslowakei), 28. 3. 1892.", "source": 166}}, {"model": "metainfo.text", "pk": 47718, "fields": {"kind": 130, "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete f\u00fcr Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Franz\u00f6s. Krieg teil, wurde danach Red. des \u201eWestph\u00e4lischen Grenzboten\u201c in M\u00fcnster, dann Leiter des Feuilletons und \u201eReimchronist\u201c der \u201eDeutschen Zeitung\u201c in Paris und war schlie\u00dflich ab 1880 Berichterstatter der \u201eBerliner Post\u201c; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen sp\u00e4teren Ver\u00f6ff. zugute kamen. In der Folge \u00fcbersiedelte S. nach Wien, wo er 1886 in die Red. des \u201eNeuen Wiener Tagblatts\u201c eintrat, der er bis zu seinem Tod angeh\u00f6rte. Daneben arbeitete er an mehreren Ztg. (u. a. der \u201eIllustrirten Zeitung\u201c, Leipzig) und Z. (u. a. der \u201eGartenlaube\u201c) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. \u201eMuth\u201c, 1899), Erz., M\u00e4rchen, den historisierenden Wr. Roman aus dem 15. Jh. \u201eB\u00fcrger und Studenten\u201c sowie dramat. Werke.\n", "source": 164}}, {"model": "metainfo.text", "pk": 47719, "fields": {"kind": 131, "text": "Schmal\u00a0Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preu\u00dfen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900.", "source": 164}}, {"model": "metainfo.text", "pk": 47724, "fields": {"kind": 130, "text": "Sohn eines in Frankreich t\u00e4tigen Tschechen und einer Franz\u00f6sin (geb. Beauchez), lebte er ab 1860 in B\u00f6hmen und besuchte das Akadem. Gymn. in Prag. Er wurde als aktiver Teilnehmer an Demonstrationen gegen den Justizminister Herbst (s. d.) verhaftet und wegen Hochverrats angeklagt, floh jedoch vor dem Proze\u00df nach Paris, dann 1869 nach Berlin, wo er die \u201eCorrespondance Tch\u00e8que\u201c red. W\u00e4hrend des dt.-franz\u00f6s. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zur\u00fcck und fand seinen Lebensunterhalt als Lehrer der franz\u00f6s. Sprache in Leitomischl (Litomy\u0161l), von 1873 an in Prag. Polit. geh\u00f6rte er dem radikalen Fl\u00fcgel der demokrat. Jungtschechen an, k\u00e4mpfte f\u00fcr die Einf\u00fchrung des allg. Wahlrechts und trat auch in Prager Arbeiterbll. mit Artikeln hervor. V. a. widmete er sich der Anbahnung der freundschaftl. Beziehungen zu Frankreich, f\u00fchrte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag f\u00fcr franz\u00f6s. Ztg. 1893\u201398 war er Korrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris, dann st\u00e4ndiger Mitarbeiter von \u201eLe Temps\u201c in Prag, ab 1903 Red. der erneuerten \u201eCorrespondance Tch\u00e8que\u201c. Daneben war er als \u00dcbers. franz\u00f6s. Romane und Schauspiele t\u00e4tig und verf. eine Reihe von verbreiteten Sprachlehrb\u00fcchern und Konversationsbehelfen.\n", "source": 165}}, {"model": "metainfo.text", "pk": 47725, "fields": {"kind": 131, "text": "\u2014 -Beauchez\u00a0Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, B\u00f6hmen (Praha, Tschechien), 14. 12. 1912.", "source": 165}}, {"model": "metainfo.text", "pk": 47726, "fields": {"kind": 130, "text": "Bauernsohn; stud. kath. Theol. an der Univ. Prag, 1860 Priesterweihe, 1865 Dr. theol. Ab 1862 Adjunkt an der theolog. Fak. in Prag, lernte er auf einer Stud.Reise durch Deutschland die damals namhaftesten Theologen (Hergenr\u00f6ther, Hettinger, D\u00f6llinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. f\u00fcr Kirchengeschichte an der Univ. Prag und f\u00fchrte 1878 das Fach Patrol. in den Lehrplan ein. S. war Historiograph der Fak., mehrmals Dekan und Rektor. 1882 hatte er als letzter Rektor der ungeteilten Univ. die Trennungsverhh. zu leiten. Mitgl. diverser gel. Ges., Landtagsabg. der Fraktion der verfassungstreuen Gro\u00dfgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte B\u00f6hmens. In seiner Monographie \u00fcber den Hl. Wolfgang bem\u00fchte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n", "source": 163}}, {"model": "metainfo.text", "pk": 47727, "fields": {"kind": 131, "text": "Schindler\u00a0Josef, Kirchenhistoriker. * Lachowitz (Lachovice, B\u00f6hmen), 23. 6. 1835; \u2020 Prag, 22. 2. 1911.", "source": 163}}, {"model": "metainfo.text", "pk": 47728, "fields": {"kind": 130, "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); w\u00e4hrend der Volksschulzeit S\u00e4nger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verh\u00e4ltnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien besch\u00e4ftigt; daneben stud. er am Konservatorium der Ges. der Musikfreunde Klavier bei Fischhof, Pirkhert (beide s. d.) und Franz Ramesch, Komposition bei Simon Sechter sowie Waldhorn bei Richard Lewy und lernte dort den Dirigenten H. Richter (s. d.) kennen, mit dem er zeitlebens freundschaftlich verbunden war. Ab 1865 war S. 1. Hornist am Hofburgtheater und als Musiklehrer u. a. in der Familie des Justizministers Stremayr und in der Familie Kautsky t\u00e4tig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivit\u00e4ten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Br\u00fcdern zur Arbeiterbewegung; 1868 gr\u00fcndete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das \u201eLied der Arbeit\u201c, das zur Hymne der \u00f6sterr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (h\u00e4ufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, R\u00fcckert), wobei die \u00dcbereinstimmung von textlicher und musikal. Deklamation f\u00fcr ihn sehr wesentlich war. 1872 gr\u00fcndete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste \u00f6sterr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur beh\u00f6rdlichen Einstellung 1878 war S. Red. der \u201e\u00d6sterreichischen Musikerzeitung\u201c, 1878 gr\u00fcndete er den Arbeiter-S\u00e4ngerbund Wien, den ersten \u00f6sterr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880\u201382 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem m\u00e4rchenhaften, allegor. Libretto von Albert Dulk) im sp\u00e4tromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegr\u00fcnder und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-S\u00e4ngerbundes Landstra\u00dfe, 1891 Mitbegr\u00fcnder des Verbandes der Arbeiter-Gesangver. Nieder\u00f6sterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gr\u00fcndete S. die \u201eArbeiters\u00e4nger-Zeitung\u201c, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der \u201eArbeiter-Zeitung\u201c, wobei er bem\u00fcht war, das Kunstverst\u00e4ndnis der Arbeiter zu f\u00f6rdern und ihnen die klass. und zeitgen\u00f6ss. Musik n\u00e4herzubringen. S. sah in der von ihm begr\u00fcndeten Arbeiters\u00e4ngerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung \u00fcberhaupt.\n", "source": 161}}, {"model": "metainfo.text", "pk": 47729, "fields": {"kind": 131, "text": "Scheu\u00a0Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; \u2020 Wien, 12. 10. 1904.", "source": 161}}, {"model": "metainfo.text", "pk": 47730, "fields": {"kind": 130, "text": "S. stud. 1870\u201378 an der Akad. der bildenden K\u00fcnste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885\u201390 als Ass. an der Kunstgewerbeschule in Prag bei Franti\u0161ek \u017den\u00ed\u0161ek, 1890\u20131922 war er dort als Prof. (1894 o. Prof.) f\u00fcr dekorative Malerei t\u00e4tig. 1913 Mitgl. der Tschech. Akad. der Wiss. und K\u00fcnste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, n\u00e4mlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten H\u00e4lfte der 80er Jahre wandte er sich, unter dem Einflu\u00df der westeurop. Malerei und bedingt durch die Konfrontation mit den sozialen Problemen des Alltags, Genrethemen zu, in denen Traurigkeit, Tragik und Resignation vorherrschen. In seinen melanchol. gestimmten Gem\u00e4lden der folgenden Periode verwendete er h\u00e4ufig Motive aus dem Milieu des abendlichen und n\u00e4chtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gef\u00fchlstiefe, die durch Lichteffekte bewirkt wird, aus.\n", "source": 162}}, {"model": "metainfo.text", "pk": 47731, "fields": {"kind": 131, "text": "Schikaneder\u00a0Jakub, Maler. * Prag, 27. 2. 1855; \u2020 Prag, 15. 11. 1924.", "source": 162}}, {"model": "metainfo.text", "pk": 47732, "fields": {"kind": 130, "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861\u20131919), der gem. mit seinem Onkel Sebastian S. (1844\u201389) 1885 die Holzdrahtfabrik S. & Neffe gegr\u00fcndet hatte; stud. Elektrotechnik an der H\u00f6heren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im v\u00e4terlichen Unternehmen, das Z\u00fcndholzhersteller belieferte, aber auch u. a. Jalousiest\u00e4be und Zahnstocher herstellte, und brachte es in kurzer Zeit zu gro\u00dfer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Z\u00fcndholzerzeugung nahm 1928 durch S.s Mitgr\u00fcndung des Luma-Verkaufsb\u00fcros der Z\u00fcndwarenfabriken Solo-AG Sch\u00fcttenhofen und S. & Neffe GmbH in Prag gro\u00dfen Aufschwung, Z\u00fcndh\u00f6lzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, besch\u00e4ftigte bis zu 300 Mitarbeiter. 1892\u20131938 f\u00fchrte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Ann\u00edn). Er stellte das Rohglas in einem Fabrikneubau in Langendorf her, der mit einem modernen Glasschmelzofen ausgestattet war. Das von S. erzeugte Bleikristall war nicht mehr blaustichig, sondern rein wei\u00df, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflu\u00dfte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n", "source": 159}}, {"model": "metainfo.text", "pk": 47733, "fields": {"kind": 131, "text": "Schell\u00a0Karl, Industrieller. * Langendorf (Dlouh\u00e1 Ves, B\u00f6hmen), 19. 12. 1892; \u2020 ebenda, 2. 6. 1945", "source": 159}}, {"model": "metainfo.text", "pk": 47734, "fields": {"kind": 130, "text": "Stud. 1860\u201365 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Br\u00fccke (s. d.), 1869 Priv.Doz. f\u00fcr die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. f\u00fcr Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegr\u00fcndeten Inst. f\u00fcr Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. f\u00fcr Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte gro\u00dfes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach \u00fcbers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Soci\u00e9t\u00e9 scientifique m\u00e9dicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n", "source": 160}}, {"model": "metainfo.text", "pk": 47735, "fields": {"kind": 131, "text": "Schenk\u00a0Samuel Leopold, Mediziner. * \u00dcrm\u00e9ny (Mojm\u00edrovce, Slowakei), 23. 8. 1840; \u2020 Schwanberg (Stmk.), 17. 8. 1902.", "source": 160}}, {"model": "metainfo.text", "pk": 47746, "fields": {"kind": 130, "text": "Sohn eines Finanzsekr. \u2013 Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869\u201372 an der Wr. ABK bei \u00bfKarl Mayer fort. 1872 \u00fcbersiedelte er nach M\u00fcnchen und wurde 1873 an der dortigen ABK Sch\u00fcler von S\u00e1ndor Wagner. In den Folgejahren arbeitete er als Maler in M\u00fcnchen und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878\u201381 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, sp\u00e4ter w\u00e4hlte er Themen aus der Gegend um den Balaton. 1899\u20131902 hielt er sich wieder in M\u00fcnchen auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften z\u00e4hlt, gewann 1897 den Esterh\u00e1zy-Preis, 1899 den Preis des Ung. Ver. f\u00fcr Bildende K\u00fcnste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u.\u00a0a. Luftspiegelung \u00fcber der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Gal\u00e9ria in Budapest.\n\n", "source": 201}}, {"model": "metainfo.text", "pk": 47747, "fields": {"kind": 131, "text": "T\u00f6lgyessy Art\u00far, Maler. Geb. Szegedin (Szeged, H), 1.\u00a05. 1853; gest. Budapest (H), 2.\u00a02. 1920; r\u00f6m.-kath.", "source": 201}}, {"model": "metainfo.text", "pk": 47748, "fields": {"kind": 130, "text": "S\u00fcdtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T.\u00a0u.\u00a0H. (1728\u20131788) und Josepha Gfn. v. T.\u00a0u.\u00a0H. (1741\u20131819), Cousin des F\u00fcrstbischofs von Trient Peter Vigil Gf. v. T.\u00a0u.\u00a0H. (1776\u20131780), verwandt mit F\u00fcrstbischof \u00bfLeopold Leonhard Gf. v. T.\u00a0u.\u00a0H. \u2013 T. stud. in Passau, Salzburg und Rom Theol. und empfing dort als Mitgl. des Germanicums die Priesterweihe. 1790 wurde er Kanoniker von Trient, 1794 von Salzburg, 1797 Tit.bischof von Iasus und Weihbischof von Trient (Konsekration durch Leopold Leonhard Gf. v. T.\u00a0u.\u00a0H.). Als letzter vom Trienter Domkapitel gew\u00e4hlter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T.\u00a0u.\u00a0H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k.\u00a0Investitur nicht mehr erhalten, da er Anfang 1801 vor den franz\u00f6s. Truppen zun\u00e4chst nach G\u00f6rz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich f\u00fcr den Fortbestand seines Bistums einsetzte. Er k\u00e4mpfte erfolgreich gegen die Pl\u00e4ne K. \u00bfFranz\u2019\u00a0II. (I.), der f\u00fcr Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endg\u00fcltige S\u00e4kularisierung des F\u00fcrstbistums, Kl\u00f6ster wurden aufgel\u00f6st, das Hochstift mit seinen 150.000 Einwohnern \u00d6sterr. zugeordnet. Nach dem Frieden von Pre\u00dfburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zur\u00fcckkehren, wo er in Trient eine Stadtwohnung bezog, da seine f\u00fcrstbisch\u00f6fl. Residenz, das Castello del Buonconsiglio, s\u00e4kularisiert worden war. Die staatl. \u00dcbergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bisch\u00f6fe: T. von Trient, Karl Franz Gf. v. Lodron von Brixen (Bressanone) und Karl Rudolph v. Buol-Schauenstein von Chur. Bes. Protest riefen neben den Eingriffen in das religi\u00f6se Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von di\u00f6zesanen Priesterseminaren hervor. Die drei Bisch\u00f6fe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius\u00a0VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs best\u00e4rkt. W\u00e4hrend Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bez\u00fcge gesperrt; Buol-Schauenstein wurde nach Graub\u00fcnden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerst\u00e4ndige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar w\u00e4hlen. Dieser, Franz v. Spaur, erhielt von T. die geheime Best\u00e4tigung. Die bayer. Ma\u00dfnahmen auf kirchl. Gebiet (Ver\u00e4u\u00dferung gr\u00f6\u00dferer Tle. der bisch\u00f6fl. und Kapiteldotation, S\u00e4kularisierung mehrerer Kl\u00f6ster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zur\u00fcckkehren, schwor dem neuen Machthaber 1810 in Monza den Treueeid und nahm auch am Nationalkonzil in Paris 1811 teil. Obwohl Napoleon ebenso schroff in kirchl. Belange eingriff, duldete T. dessen Klosteraufhebungen, die Einf\u00fchrung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entlie\u00df 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut \u00fcbertragen. Als das Bistum 1814 wieder an \u00d6sterr. fiel, folgte eine Zeit der Konsolidierung, einige Kl\u00f6ster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bisch\u00f6fl. Mensa, das Domkapitel und die Bischofsnomination durch den \u00f6sterr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tats\u00e4chl. in seinem Bistum residieren.\n\n", "source": 200}}, {"model": "metainfo.text", "pk": 47749, "fields": {"kind": 131, "text": "Thun und Hohenstein Emanuel Maria Gf. von, F\u00fcrstbischof. Geb. Trient, Bistum Trient (Trento, I), 28.\u00a03. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9.\u00a010. 1818 (bestattet: Dom zu Trient); r\u00f6m.-kath.", "source": 200}}, {"model": "metainfo.text", "pk": 47754, "fields": {"kind": 130, "text": "", "source": 197}}, {"model": "metainfo.text", "pk": 47755, "fields": {"kind": 131, "text": "", "source": 197}}, {"model": "metainfo.text", "pk": 47756, "fields": {"kind": 130, "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2.\u00a0Ehefrau Julia T., geb. Grabowska, Halbbruder von \u00bfWlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von \u00bfLudwig v.\u00a0T. \u2013 T. besuchte das Gymn. in Krakau (Krak\u00f3w) und stud. 1884\u201386 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889\u201393 arbeitete er als Mithrsg. der Z. \u201eKurier Polski\u201c und als Journalist der Z. \u201eTygodnik Ilustrowany\u201c, \u201eKurier Warszawski\u201c und \u201eCzas\u201c; danach war er Sekr. von Adam Krasinski und stud. mit ihm 1896 in Heidelberg. Nach 1896 lebte er in Zakopane und Krakau, ab 1918 in Warschau. T. deb\u00fct. 1886 mit lyr. Prosa und Gelegenheitsdichtung (\u201eIlla\u201c). 1888 gewann er einen Preis der Jagiellonen-Univ. f\u00fcr ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik (\u201eWiersz na uczczenie pamieci Adama Mickiewicza\u201c), und 1889 einen weiteren f\u00fcr eine Hymne auf den Schriftsteller \u00bfJ\u00f3zef Ignacy Kraszewski (\u201eNa czesc Kraszewskiego\u201c). T. galt neben \u00bfJan Kasprowicz als der popul\u00e4rste Dichter der Bewegung Junges Polen und repr\u00e4sentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtb\u00e4ndigen Ged.smlg. \u201ePoezje\u201c (1891\u20131924) erlangte er Anerkennung als bedeutender Lyriker und Autorit\u00e4t der jungpoln. Literatur. T., der sich f\u00fcr Arthur Schopenhauers und Friedrich Nietzsches Phil. begeisterte, schrieb impressionist. Natur- und Stimmungslyrik mit einer Neigung zu Pessimismus und Dekadenz, erot. Ged. und Liebeslyrik sowie Novellen und Romane mit Motiven aus dem zeitgen\u00f6ss. Leben der Boh\u00e8me. 1898 erschien der Roman \u201eAniol smierci\u201c (dt. \u201eDer Todesengel\u201c, 1899), der in dt. \u00dcbers. zuerst als Vorabdruck in der Z. \u201eAus fremden Zungen\u201c erschien, in der T. i.\u00a0d.\u00a0F. weitere Ged. ver\u00f6ff. In der f\u00fcnfb\u00e4ndigen Novellensmlg. \u201eNa skalnym Podhalu\u201c (1903\u201310, dt.sprachige Auswahl unter dem Titel \u201eAus der Tatra\u201c, 1903) verherrlichte T. Land und Leute der Hohen Tatra im Dialekt der Gegend und unter Einbeziehung tradierter Stoffe und Legenden. Bedeutend sind auch seine zwei hist. Tatra-Romane \u201eMaryna z Hrubego\u201c (1910) und \u201eJanosik Nedza Litmanowski\u201c (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. W\u00e4hrend des 1.\u00a0Weltkriegs war T. Hrsg. der Z. \u201ePraca Narodowa\u201c. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zur\u00fcckgezogen, als Dauergast im Warschauer Hotel Europejski. Von dort wurde er von den Deutschen vertrieben und starb in einem Krankenhaus. T., der 1928 den Literaturpreis der Stadt Warschau erhielt, war ab 1921 Pr\u00e4s. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literat\u00f3w Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n", "source": 198}}, {"model": "metainfo.text", "pk": 47757, "fields": {"kind": 131, "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18.\u00a01. 1940; r\u00f6m.-kath.", "source": 198}}, {"model": "metainfo.text", "pk": 47758, "fields": {"kind": 130, "text": "Sohn von \u00bfOskar Karl T. und \u00bfEmma T., Bruder von Wilhelm (genannt Willy) T.-Weckersdorf (geb. Prag, 23. 9. 1879; gest. Salzburg, Sbg., 3. 3. 1968), der sich ebenfalls um die Entwicklung des \u00f6sterr. Pfadfinderwesens verdient machte und nach dem 2. Weltkrieg als Leiter der Ind.abt. der Sbg. Landesregierung fungierte, und von Obst. Oskar (genannt Ossi) T. (geb. Prag, 21. 3. 1881; gest. Innsbruck, Tirol, 19. 4. 1943), der im Heeresmin. t\u00e4tig war und gem. mit seiner j\u00fcd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923\u20131998), Univ.-Prof. f\u00fcr Politikwiss. in Wien. \u2013 T. diente ab 1896 im 3. Tiroler J\u00e4gerrgt. \u201eKaiserj\u00e4ger\u201c, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Milit\u00e4rsachverst\u00e4ndiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des milit\u00e4r. organisierten Knabenhortverbands in der milit\u00e4r.-patriot. Jugenderziehung und -f\u00fcrsorge ein neues Bet\u00e4tigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, \u00fcbertrug er das System der Boy Scouts des engl. Begr\u00fcnders des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gr\u00fcndete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in \u00d6sterr. und die Keimzelle des von ihm initiierten \u00d6sterr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915\u201319 Reichsfeldmeister des Bundes. Aufgrund des Verm\u00f6gens seiner Frau, einer Amerikanerin, konnte \u201ePapa\u201c T. hohe Geldmittel f\u00fcr die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronl\u00e4nder vom \u00d6sterr. Pfadfinderbund wirkte T. 1918\u201320 hauptberufl. als Insp. des Verbands f\u00fcr freiwillige Jugendf\u00fcrsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendf\u00fcrsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und f\u00fcr das Rote Kreuz t\u00e4tig. Da er sich weltanschaul. mit der aufkommenden \u201eb\u00fcndischen\u201c, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zur\u00fcck, blieb aber bis 1923 Bundesfeldmeister im \u00d6sterr. Pfadfinderbund. Er unterst\u00fctzte nunmehr den religi\u00f6sen Einfluss des kath. Klerus auf die Pfadfinder-Jugendarbeit und akzeptierte den Zusammenschluss der innerhalb des Bundes bereits bestehenden kath. Pfadfinderkolonnen zum Ring der St. Georgspfadfinder; 1926 Gr\u00fcndung der kath. Jugendorganisation des \u00d6sterr. Pfadfinderkorps St. Georg, das sich relativ rasch vergr\u00f6\u00dferte. Durch die Auss\u00f6hnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei gro\u00dfe Landg\u00fcter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zur\u00fcck. 1922\u201329 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals h\u00f6chste Pfadfinderausz., den \u201eSilberwolf\u201c. Als nach dem \u201eAnschluss\u201c \u00d6sterr. alle bestehenden Jugendorganisationen aufgel\u00f6st und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in M\u00fcnchen aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die \u00f6sterr. Pfadfinder posthum 1956 ihre h\u00f6chste Ausz., den \u201eSilbernen Steinbock\u201c. T.s Bruder ", "source": 199}}, {"model": "metainfo.text", "pk": 47759, "fields": {"kind": 131, "text": "Teuber Emmerich (genannt Imre), Pfadfinderf\u00fchrer und Offizier. Geb. Prag, B\u00f6hmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; r\u00f6m.-kath.", "source": 199}}, {"model": "metainfo.text", "pk": 47764, "fields": {"kind": 130, "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn sp\u00e4ter in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. \u2013 T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher S\u00e4nger werden. Er stud. 1908\u201310 Klavier, Komposition und Orchesterdirigieren am Hoch\u2019schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm \u00bfLeopold Demuth eine Stimme \u201ewie ein Zwirnsfaden\u201c. Wegen einer Liebelei musste T. nach Freiburg im Breisgau \u00fcbersiedeln, wo er dem Gesangsp\u00e4dagogen Carl Beines begegnete, der sein gro\u00dfes Talent erkannte und ihn ausbildete. T. gab sein Operndeb\u00fct 1913 in Chemnitz als Tamino in Mozarts \u201eZauberfl\u00f6te\u201c und erhielt im selben Jahr ein Engagement an die Dresdner Hofoper, an der er bis 1918 blieb. Er wurde ein gefragter lyr. Tenor, auch da er innerhalb k\u00fcrzester Zeit Partien einzustud. vermochte (Beiname \u201eSOS-Tenor\u201c), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg \u00bfFranz Leh\u00e1r kennen, in dessen sp\u00e4ten Operetten er dann, beginnend mit \u201ePaganini\u201c (Berliner Erstauff. 1926), die m\u00e4nnl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen \u201eT.-Lieder\u201c, die als Schlager gro\u00dfe Popularit\u00e4t erlangten (\u201eDein ist mein ganzes Herz\u201c etc.). Trotz Warnungen, dass er seine Stimme f\u00fcr die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Ber\u00fchmtheit. Fr\u00fch erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der \u00d6ffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Leh\u00e1rs \u201eDas Land des L\u00e4chelns\u201c, eine Rolle, die er \u00fcber 700-mal verk\u00f6rperte. Im selben Jahr kam sein erster Film, \u201eIch glaub\u2019 nie mehr an eine Frau\u201c, in die Kinos. Die auf Dr\u00e4ngen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um gro\u00dfe Summen gebracht. Er stand weiterhin erfolgreich auf Opernb\u00fchnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im M\u00e4rz 1933 von der B\u00fchne des Berliner Admiralspalastes gebuht und auf dem Kurf\u00fcrstendamm von SA-M\u00e4nnern niedergeschlagen worden war, fl\u00fcchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schlie\u00dfl. nach Wien. Hier wurde seine Operette \u201eDer singende Traum\u201c uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in \u201eBlossom Time\u201c einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. K\u00fcnstler zum Star, der sich \u00f6ff. gegen \u00bfAdolf Hitler \u00e4u\u00dferte. Internationale Tourneen f\u00fchrten ihn nach Nord- und S\u00fcdamerika, nach S\u00fcdafrika, Asien und Australien. Nach dem \u201eAnschluss\u201c \u00d6sterr. an das Dt. Reich 1938 lebte er ausschlie\u00dfl. in England (ab 1940 engl. Staatsb\u00fcrger). Er gab Konzerte, die BBC brachte regelm\u00e4\u00dfige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette \u201eOld Chelsea\u201c. An H\u00f6chstgagen und einen aufwendigen Lebensstil gew\u00f6hnt, geriet T. im Exil jedoch in hohe Schulden. Nach Kriegsende trat er wieder international auf, hatte aber deutl. Stimmprobleme. Seinen letzten Auftritt absolv. der an Lungenkrebs Erkrankte Ende September 1947 am Royal Opera House, Covent Garden, als Don Ottavio in Mozarts \u201eDon Giovanni\u201c, wobei er besser denn je gesungen haben soll. T.s Vater ", "source": 196}}, {"model": "metainfo.text", "pk": 47765, "fields": {"kind": 131, "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, S\u00e4nger, Dirigent und Komponist. Geb. Linz (O\u00d6), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 r\u00f6m.-kath.", "source": 196}}, {"model": "metainfo.uri", "pk": 26, "fields": {"uri": "http://sws.geonames.org/3194099/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 26, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 111, "fields": {"uri": "http://sws.geonames.org/3186886/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 133, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 149, "fields": {"uri": "http://sws.geonames.org/2761369/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 183, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 258, "fields": {"uri": "http://sws.geonames.org/3078610/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 327, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 299, "fields": {"uri": "http://sws.geonames.org/3077117/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 384, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 311, "fields": {"uri": "http://sws.geonames.org/3054643/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 637, "fields": {"uri": "http://sws.geonames.org/683506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 831, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 713, "fields": {"uri": "http://sws.geonames.org/2782067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 926, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1062, "fields": {"uri": "http://sws.geonames.org/2950159/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1390, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1089, "fields": {"uri": "http://sws.geonames.org/3071961/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1424, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1112, "fields": {"uri": "http://sws.geonames.org/2781806/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1291, "fields": {"uri": "http://sws.geonames.org/2781629/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1701, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1304, "fields": {"uri": "http://sws.geonames.org/2907669/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1718, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1511, "fields": {"uri": "http://sws.geonames.org/684039/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2006, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1561, "fields": {"uri": "http://sws.geonames.org/3060972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2072, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1571, "fields": {"uri": "http://sws.geonames.org/3078577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2085, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1625, "fields": {"uri": "http://sws.geonames.org/3081368/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2161, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1631, "fields": {"uri": "http://sws.geonames.org/3181550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2170, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1651, "fields": {"uri": "http://sws.geonames.org/3074967/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2197, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1711, "fields": {"uri": "http://sws.geonames.org/711416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2281, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1856, "fields": {"uri": "http://sws.geonames.org/3435910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2489, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1939, "fields": {"uri": "http://sws.geonames.org/3181215/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2602, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2121, "fields": {"uri": "http://sws.geonames.org/710719/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2854, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2302, "fields": {"uri": "http://sws.geonames.org/3101321/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3105, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2344, "fields": {"uri": "http://sws.geonames.org/681290/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3162, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3021, "fields": {"uri": "http://sws.geonames.org/2934486/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4096, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3151, "fields": {"uri": "http://sws.geonames.org/3063762/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4269, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3518, "fields": {"uri": "http://sws.geonames.org/2778067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4767, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3599, "fields": {"uri": "http://sws.geonames.org/2779275/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4877, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3912, "fields": {"uri": "http://sws.geonames.org/677410/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5294, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3923, "fields": {"uri": "http://sws.geonames.org/2873574/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5308, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4052, "fields": {"uri": "http://sws.geonames.org/3175986/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5478, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4206, "fields": {"uri": "http://sws.geonames.org/3173577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5691, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4249, "fields": {"uri": "http://sws.geonames.org/2777972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5749, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4440, "fields": {"uri": "http://sws.geonames.org/3063197/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6004, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4676, "fields": {"uri": "http://sws.geonames.org/2910831/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6324, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4954, "fields": {"uri": "http://sws.geonames.org/2775220/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6700, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5134, "fields": {"uri": "http://sws.geonames.org/3199302/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6947, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5507, "fields": {"uri": "http://sws.geonames.org/3097333/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5631, "fields": {"uri": "http://sws.geonames.org/2772649/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7622, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5897, "fields": {"uri": "http://sws.geonames.org/2892518/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7986, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6257, "fields": {"uri": "http://sws.geonames.org/2773913/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8482, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6486, "fields": {"uri": "http://sws.geonames.org/2885679/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8798, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6838, "fields": {"uri": "http://sws.geonames.org/2773300/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9287, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6961, "fields": {"uri": "http://sws.geonames.org/3072358/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9455, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6977, "fields": {"uri": "http://sws.geonames.org/3196359/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7169, "fields": {"uri": "http://sws.geonames.org/702550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9735, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7375, "fields": {"uri": "http://sws.geonames.org/2772400/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10015, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7554, "fields": {"uri": "http://sws.geonames.org/2643743/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10265, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7936, "fields": {"uri": "http://sws.geonames.org/3195506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10793, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8262, "fields": {"uri": "http://sws.geonames.org/3064919/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11238, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8489, "fields": {"uri": "http://sws.geonames.org/3070372/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11556, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8668, "fields": {"uri": "http://sws.geonames.org/2867714/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11799, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8966, "fields": {"uri": "http://sws.geonames.org/3090436/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12211, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9363, "fields": {"uri": "http://sws.geonames.org/2990440/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12758, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9718, "fields": {"uri": "http://sws.geonames.org/3045190/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13253, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9810, "fields": {"uri": "http://sws.geonames.org/3069011/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13382, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10050, "fields": {"uri": "http://sws.geonames.org/2988507/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13714, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10247, "fields": {"uri": "http://sws.geonames.org/2854561/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13987, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10697, "fields": {"uri": "http://sws.geonames.org/3067696/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 14608, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11885, "fields": {"uri": "http://sws.geonames.org/3057304/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16242, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11932, "fields": {"uri": "http://sws.geonames.org/3167905/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16310, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12137, "fields": {"uri": "http://sws.geonames.org/3065118/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16594, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12332, "fields": {"uri": "http://sws.geonames.org/2765515/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16864, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13419, "fields": {"uri": "http://sws.geonames.org/3083848/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18374, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13438, "fields": {"uri": "http://sws.geonames.org/715429/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14028, "fields": {"uri": "http://sws.geonames.org/3165243/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19215, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14297, "fields": {"uri": "http://sws.geonames.org/3058653/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19599, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14983, "fields": {"uri": "http://sws.geonames.org/756135/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20549, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15060, "fields": {"uri": "http://sws.geonames.org/792794/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20659, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15214, "fields": {"uri": "http://sws.geonames.org/2782058/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20872, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15297, "fields": {"uri": "http://sws.geonames.org/2633767/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20988, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15896, "fields": {"uri": "http://sws.geonames.org/3064454/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 21818, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16165, "fields": {"uri": "http://sws.geonames.org/3074331/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22216, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16195, "fields": {"uri": "http://sws.geonames.org/2764112/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22259, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16238, "fields": {"uri": "http://sws.geonames.org/2762908/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22322, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16260, "fields": {"uri": "http://sws.geonames.org/2659297/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22354, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16342, "fields": {"uri": "http://sws.geonames.org/2953416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16355, "fields": {"uri": "http://sws.geonames.org/2772910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22494, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16377, "fields": {"uri": "http://sws.geonames.org/2660718/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22526, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16386, "fields": {"uri": "http://sws.geonames.org/684490/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22545, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16392, "fields": {"uri": "http://sws.geonames.org/3092742/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22558, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16398, "fields": {"uri": "http://sws.geonames.org/3164453/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22570, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19232, "fields": {"uri": "http://d-nb.info/gnd/4023349-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19233, "fields": {"uri": "http://d-nb.info/gnd/4027096-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6700, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19242, "fields": {"uri": "http://d-nb.info/gnd/4044660-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19246, "fields": {"uri": "http://d-nb.info/gnd/4127793-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 11799, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19273, "fields": {"uri": "http://d-nb.info/gnd/4008216-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19323, "fields": {"uri": "http://d-nb.info/gnd/4076310-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 14608, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19406, "fields": {"uri": "http://d-nb.info/gnd/4008684-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19447, "fields": {"uri": "http://d-nb.info/gnd/4038688-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 5691, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19459, "fields": {"uri": "http://d-nb.info/gnd/4265379-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1454, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19583, "fields": {"uri": "http://d-nb.info/gnd/4021912-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19665, "fields": {"uri": "http://d-nb.info/gnd/4075643-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13382, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 32623, "fields": {"uri": "http://d-nb.info/gnd/118931482", "domain": "", "rdf_link": "", "entity": 46414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 39250, "fields": {"uri": "http://d-nb.info/gnd/118785028", "domain": "", "rdf_link": "", "entity": 56248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 43650, "fields": {"uri": "http://d-nb.info/gnd/118573527", "domain": "", "rdf_link": "", "entity": 62757, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60980, "fields": {"uri": "http://d-nb.info/gnd/118508288", "domain": "", "rdf_link": "", "entity": 88902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63085, "fields": {"uri": "http://d-nb.info/gnd/118677667", "domain": "", "rdf_link": "", "entity": 92603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63174, "fields": {"uri": "http://d-nb.info/gnd/118505955", "domain": "", "rdf_link": "", "entity": 93003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63178, "fields": {"uri": "http://d-nb.info/gnd/119061201", "domain": "", "rdf_link": "", "entity": 93009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63180, "fields": {"uri": "http://d-nb.info/gnd/128578998", "domain": "", "rdf_link": "", "entity": 93012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63182, "fields": {"uri": "http://d-nb.info/gnd/143930567", "domain": "", "rdf_link": "", "entity": 93015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63184, "fields": {"uri": "http://d-nb.info/gnd/136186289", "domain": "", "rdf_link": "", "entity": 93018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63186, "fields": {"uri": "http://d-nb.info/gnd/136186343", "domain": "", "rdf_link": "", "entity": 93021, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63188, "fields": {"uri": "http://d-nb.info/gnd/140067302", "domain": "", "rdf_link": "", "entity": 93024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63191, "fields": {"uri": "http://d-nb.info/gnd/116539585", "domain": "", "rdf_link": "", "entity": 93028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63193, "fields": {"uri": "http://d-nb.info/gnd/11666827X", "domain": "", "rdf_link": "", "entity": 93031, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63195, "fields": {"uri": "http://d-nb.info/gnd/116689234", "domain": "", "rdf_link": "", "entity": 93034, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63202, "fields": {"uri": "http://d-nb.info/gnd/130579122", "domain": "", "rdf_link": "", "entity": 93044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63204, "fields": {"uri": "http://d-nb.info/gnd/143681761", "domain": "", "rdf_link": "", "entity": 93047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63206, "fields": {"uri": "http://d-nb.info/gnd/117649953", "domain": "", "rdf_link": "", "entity": 93050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63210, "fields": {"uri": "http://d-nb.info/gnd/130132098", "domain": "", "rdf_link": "", "entity": 93056, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63212, "fields": {"uri": "http://d-nb.info/gnd/143053272", "domain": "", "rdf_link": "", "entity": 93059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63216, "fields": {"uri": "http://d-nb.info/gnd/118817418", "domain": "", "rdf_link": "", "entity": 93065, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63218, "fields": {"uri": "http://d-nb.info/gnd/135697719", "domain": "", "rdf_link": "", "entity": 93068, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63220, "fields": {"uri": "http://d-nb.info/gnd/118524283", "domain": "", "rdf_link": "", "entity": 93071, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63222, "fields": {"uri": "http://d-nb.info/gnd/116070935", "domain": "", "rdf_link": "", "entity": 93074, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63261, "fields": {"uri": "http://d-nb.info/gnd/1012030806", "domain": "", "rdf_link": "", "entity": 93136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63385, "fields": {"uri": "http://d-nb.info/gnd/117736791", "domain": "", "rdf_link": "", "entity": 93328, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63391, "fields": {"uri": "http://d-nb.info/gnd/1019267925", "domain": "", "rdf_link": "", "entity": 93337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63401, "fields": {"uri": "http://d-nb.info/gnd/136782086", "domain": "", "rdf_link": "", "entity": 93352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63411, "fields": {"uri": "http://d-nb.info/gnd/1018979573", "domain": "", "rdf_link": "", "entity": 93366, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63413, "fields": {"uri": "http://d-nb.info/gnd/1019359811", "domain": "", "rdf_link": "", "entity": 93369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63419, "fields": {"uri": "http://d-nb.info/gnd/117634816", "domain": "", "rdf_link": "", "entity": 93378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63425, "fields": {"uri": "http://d-nb.info/gnd/116907525", "domain": "", "rdf_link": "", "entity": 93387, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63429, "fields": {"uri": "http://d-nb.info/gnd/116856246", "domain": "", "rdf_link": "", "entity": 93393, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63431, "fields": {"uri": "http://d-nb.info/gnd/119334429", "domain": "", "rdf_link": "", "entity": 93396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63434, "fields": {"uri": "http://d-nb.info/gnd/118806025", "domain": "", "rdf_link": "", "entity": 93400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63440, "fields": {"uri": "http://d-nb.info/gnd/1018666664", "domain": "", "rdf_link": "", "entity": 93409, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63444, "fields": {"uri": "http://d-nb.info/gnd/1014451833", "domain": "", "rdf_link": "", "entity": 93415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63446, "fields": {"uri": "http://d-nb.info/gnd/117612308", "domain": "", "rdf_link": "", "entity": 93418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63462, "fields": {"uri": "http://d-nb.info/gnd/118813919", "domain": "", "rdf_link": "", "entity": 93442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63464, "fields": {"uri": "http://d-nb.info/gnd/1023121581", "domain": "", "rdf_link": "", "entity": 93445, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63466, "fields": {"uri": "http://d-nb.info/gnd/119065932", "domain": "", "rdf_link": "", "entity": 93448, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63480, "fields": {"uri": "http://d-nb.info/gnd/1021208493", "domain": "", "rdf_link": "", "entity": 93469, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63488, "fields": {"uri": "http://d-nb.info/gnd/137341768", "domain": "", "rdf_link": "", "entity": 93481, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63490, "fields": {"uri": "http://d-nb.info/gnd/1020698381", "domain": "", "rdf_link": "", "entity": 93484, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63492, "fields": {"uri": "http://d-nb.info/gnd/1020698055", "domain": "", "rdf_link": "", "entity": 93487, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63508, "fields": {"uri": "http://d-nb.info/gnd/118732277", "domain": "", "rdf_link": "", "entity": 93510, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63510, "fields": {"uri": "http://d-nb.info/gnd/10788464X", "domain": "", "rdf_link": "", "entity": 93513, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63512, "fields": {"uri": "http://d-nb.info/gnd/134474937", "domain": "", "rdf_link": "", "entity": 93516, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63528, "fields": {"uri": "http://d-nb.info/gnd/13185545X", "domain": "", "rdf_link": "", "entity": 93540, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63532, "fields": {"uri": "http://d-nb.info/gnd/1024716082", "domain": "", "rdf_link": "", "entity": 93546, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63542, "fields": {"uri": "http://d-nb.info/gnd/1026382211", "domain": "", "rdf_link": "", "entity": 93561, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63550, "fields": {"uri": "http://d-nb.info/gnd/102588485X", "domain": "", "rdf_link": "", "entity": 93573, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63560, "fields": {"uri": "http://d-nb.info/gnd/130027022", "domain": "", "rdf_link": "", "entity": 93588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63568, "fields": {"uri": "http://d-nb.info/gnd/117687030", "domain": "", "rdf_link": "", "entity": 93600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63574, "fields": {"uri": "http://d-nb.info/gnd/122897897", "domain": "", "rdf_link": "", "entity": 93609, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63578, "fields": {"uri": "http://d-nb.info/gnd/139593128", "domain": "", "rdf_link": "", "entity": 93615, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63594, "fields": {"uri": "http://d-nb.info/gnd/139112200", "domain": "", "rdf_link": "", "entity": 93639, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63596, "fields": {"uri": "http://d-nb.info/gnd/130427012", "domain": "", "rdf_link": "", "entity": 93642, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63598, "fields": {"uri": "http://d-nb.info/gnd/117522139", "domain": "", "rdf_link": "", "entity": 93645, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63602, "fields": {"uri": "http://d-nb.info/gnd/1027427839", "domain": "", "rdf_link": "", "entity": 93651, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63604, "fields": {"uri": "http://d-nb.info/gnd/127691979", "domain": "", "rdf_link": "", "entity": 93654, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63627, "fields": {"uri": "http://d-nb.info/gnd/123215374", "domain": "", "rdf_link": "", "entity": 93702, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63629, "fields": {"uri": "http://d-nb.info/gnd/12899620X", "domain": "", "rdf_link": "", "entity": 93705, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63635, "fields": {"uri": "http://d-nb.info/gnd/1035683431", "domain": "", "rdf_link": "", "entity": 93714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63657, "fields": {"uri": "http://d-nb.info/gnd/1034850962", "domain": "", "rdf_link": "", "entity": 93748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63678, "fields": {"uri": "http://d-nb.info/gnd/135612411", "domain": "", "rdf_link": "", "entity": 93779, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63682, "fields": {"uri": "http://d-nb.info/gnd/1033824674", "domain": "", "rdf_link": "", "entity": 93785, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63686, "fields": {"uri": "http://d-nb.info/gnd/133833348", "domain": "", "rdf_link": "", "entity": 93791, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63692, "fields": {"uri": "http://d-nb.info/gnd/103334690X", "domain": "", "rdf_link": "", "entity": 93800, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63694, "fields": {"uri": "http://d-nb.info/gnd/128900059", "domain": "", "rdf_link": "", "entity": 93803, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63698, "fields": {"uri": "http://d-nb.info/gnd/1033469084", "domain": "", "rdf_link": "", "entity": 93809, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63702, "fields": {"uri": "http://d-nb.info/gnd/117409669", "domain": "", "rdf_link": "", "entity": 93815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63704, "fields": {"uri": "http://d-nb.info/gnd/1033342483", "domain": "", "rdf_link": "", "entity": 93818, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63716, "fields": {"uri": "http://d-nb.info/gnd/134516001", "domain": "", "rdf_link": "", "entity": 93836, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63718, "fields": {"uri": "http://d-nb.info/gnd/1019536594", "domain": "", "rdf_link": "", "entity": 93839, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63728, "fields": {"uri": "http://d-nb.info/gnd/103283160X", "domain": "", "rdf_link": "", "entity": 93854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63734, "fields": {"uri": "http://d-nb.info/gnd/103223718X", "domain": "", "rdf_link": "", "entity": 93863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63736, "fields": {"uri": "http://d-nb.info/gnd/118610643", "domain": "", "rdf_link": "", "entity": 93866, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63744, "fields": {"uri": "http://d-nb.info/gnd/1032220473", "domain": "", "rdf_link": "", "entity": 93878, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63753, "fields": {"uri": "http://d-nb.info/gnd/1031937358", "domain": "", "rdf_link": "", "entity": 93891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63755, "fields": {"uri": "http://d-nb.info/gnd/1031946101", "domain": "", "rdf_link": "", "entity": 93894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63759, "fields": {"uri": "http://d-nb.info/gnd/116848693", "domain": "", "rdf_link": "", "entity": 93900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63761, "fields": {"uri": "http://d-nb.info/gnd/103169420X", "domain": "", "rdf_link": "", "entity": 93903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63765, "fields": {"uri": "http://d-nb.info/gnd/137648588", "domain": "", "rdf_link": "", "entity": 93909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63773, "fields": {"uri": "http://d-nb.info/gnd/116816961", "domain": "", "rdf_link": "", "entity": 93921, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63781, "fields": {"uri": "http://d-nb.info/gnd/118759671", "domain": "", "rdf_link": "", "entity": 93933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63786, "fields": {"uri": "http://d-nb.info/gnd/103056423X", "domain": "", "rdf_link": "", "entity": 93940, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63790, "fields": {"uri": "http://d-nb.info/gnd/1030283044", "domain": "", "rdf_link": "", "entity": 93946, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63796, "fields": {"uri": "http://d-nb.info/gnd/1031146539", "domain": "", "rdf_link": "", "entity": 93955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63798, "fields": {"uri": "http://d-nb.info/gnd/139576126", "domain": "", "rdf_link": "", "entity": 93958, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63800, "fields": {"uri": "http://d-nb.info/gnd/129263761", "domain": "", "rdf_link": "", "entity": 93961, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63802, "fields": {"uri": "http://d-nb.info/gnd/121246736", "domain": "", "rdf_link": "", "entity": 93964, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63804, "fields": {"uri": "http://d-nb.info/gnd/1029738556", "domain": "", "rdf_link": "", "entity": 93967, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63806, "fields": {"uri": "http://d-nb.info/gnd/1029748209", "domain": "", "rdf_link": "", "entity": 93970, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64139, "fields": {"uri": "http://d-nb.info/gnd/4074335-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10265, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64175, "fields": {"uri": "http://d-nb.info/gnd/4035304-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64185, "fields": {"uri": "http://d-nb.info/gnd/4108914-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64201, "fields": {"uri": "http://d-nb.info/gnd/4008858-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64255, "fields": {"uri": "http://d-nb.info/gnd/4010833-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64261, "fields": {"uri": "http://d-nb.info/gnd/4073953-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9475, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64625, "fields": {"uri": "http://d-nb.info/gnd/4075578-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13253, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64656, "fields": {"uri": "http://d-nb.info/gnd/4079048-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 20549, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64762, "fields": {"uri": "http://d-nb.info/gnd/4008456-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 327, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64958, "fields": {"uri": "http://d-nb.info/gnd/4106475-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 18400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64961, "fields": {"uri": "http://d-nb.info/gnd/4074255-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65200, "fields": {"uri": "http://d-nb.info/gnd/4033488-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9287, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65351, "fields": {"uri": "http://d-nb.info/gnd/4013237-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65410, "fields": {"uri": "http://d-nb.info/gnd/4071444-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 22526, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65607, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Conrad", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65704, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Fiedler", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65759, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Gasser", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66450, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Rief", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66630, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:StaudingerRudolf", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66778, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Winkler", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66836, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Z\u00f6llner", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 68464, "fields": {"uri": "http://d-nb.info/gnd/4031235-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 8482, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 70264, "fields": {"uri": "http://d-nb.info/gnd/4029869-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 7986, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 71992, "fields": {"uri": "http://d-nb.info/gnd/4035360-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 7622, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 72191, "fields": {"uri": "http://d-nb.info/gnd/4103609-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1424, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uricandidate", "pk": 3373, "fields": {"uri": "http://sws.geonames.org/3075069/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3374, "fields": {"uri": "http://sws.geonames.org/3075073/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3375, "fields": {"uri": "http://sws.geonames.org/3064955/", "confidence": 36.39077, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3376, "fields": {"uri": "http://sws.geonames.org/3064682/", "confidence": 27.023357, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3392, "fields": {"uri": "http://sws.geonames.org/8987526/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3393, "fields": {"uri": "http://sws.geonames.org/8988006/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3394, "fields": {"uri": "http://sws.geonames.org/3187442/", "confidence": 36.04053, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3427, "fields": {"uri": "http://sws.geonames.org/710232/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3428, "fields": {"uri": "http://sws.geonames.org/710234/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3429, "fields": {"uri": "http://sws.geonames.org/710242/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3430, "fields": {"uri": "http://sws.geonames.org/710241/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3431, "fields": {"uri": "http://sws.geonames.org/810113/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3432, "fields": {"uri": "http://sws.geonames.org/8468002/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3433, "fields": {"uri": "http://sws.geonames.org/710235/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3434, "fields": {"uri": "http://sws.geonames.org/710243/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3435, "fields": {"uri": "http://sws.geonames.org/697446/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3436, "fields": {"uri": "http://sws.geonames.org/687982/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "highlighter.texthigh", "pk": 1, "fields": {"title": "\u00d6BL Haupttext", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-haupttext", "project": 1}}, {"model": "highlighter.texthigh", "pk": 2, "fields": {"title": "\u00d6bl Kurzinfo", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-kurzinfo", "project": 1}}, {"model": "highlighter.annotationproject", "pk": 1, "fields": {"name": "Default", "description": "We need an annotation project for every annotation. Thus the default project."}}, {"model": "highlighter.annotationproject", "pk": 2, "fields": {"name": "Klausenburg Agoston", "description": null}}, {"model": "highlighter.annotationproject", "pk": 3, "fields": {"name": "K\u00fcnstlerhaus Maximilian", "description": null}}, {"model": "highlighter.annotationproject", "pk": 4, "fields": {"name": "Mittelalter", "description": null}}, {"model": "highlighter.annotationproject", "pk": 5, "fields": {"name": "300 select names", "description": null}}, {"model": "highlighter.annotationproject", "pk": 6, "fields": {"name": "Gold Standard 28.3.2017", "description": ""}}, {"model": "highlighter.vocabularyapi", "pk": 1, "fields": {"name": "Person Place Form", "api_endpoint": "PersonPlaceHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 2, "fields": {"name": "Person Institution Form", "api_endpoint": "PersonInstitutionHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 3, "fields": {"name": "Person Person Form", "api_endpoint": "PersonPersonHighlighterForm", "method": "l"}}, {"model": "highlighter.menuentry", "pk": 1, "fields": {"kind": "frm", "name": "Person Place Relation", "api": 1, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 2, "fields": {"kind": "frm", "name": "Person Institution Relation", "api": 2, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 3, "fields": {"kind": "frm", "name": "Person Person Relation", "api": 3, "parent": null, "project": 1}}, {"model": "auth.permission", "fields": {"name": "Can add log entry", "content_type": ["admin", "logentry"], "codename": "add_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can change log entry", "content_type": ["admin", "logentry"], "codename": "change_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete log entry", "content_type": ["admin", "logentry"], "codename": "delete_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can add permission", "content_type": ["auth", "permission"], "codename": "add_permission"}}, {"model": "auth.permission", "fields": {"name": "Can change permission", "content_type": ["auth", "permission"], "codename": "change_permission"}}, {"model": "auth.permission", "fields": {"name": "Can delete permission", "content_type": ["auth", "permission"], "codename": "delete_permission"}}, {"model": "auth.permission", "fields": {"name": "Can add group", "content_type": ["auth", "group"], "codename": "add_group"}}, {"model": "auth.permission", "fields": {"name": "Can change group", "content_type": ["auth", "group"], "codename": "change_group"}}, {"model": "auth.permission", "fields": {"name": "Can delete group", "content_type": ["auth", "group"], "codename": "delete_group"}}, {"model": "auth.permission", "fields": {"name": "Can add user", "content_type": ["auth", "user"], "codename": "add_user"}}, {"model": "auth.permission", "fields": {"name": "Can change user", "content_type": ["auth", "user"], "codename": "change_user"}}, {"model": "auth.permission", "fields": {"name": "Can delete user", "content_type": ["auth", "user"], "codename": "delete_user"}}, {"model": "auth.permission", "fields": {"name": "Can add content type", "content_type": ["contenttypes", "contenttype"], "codename": "add_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can change content type", "content_type": ["contenttypes", "contenttype"], "codename": "change_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete content type", "content_type": ["contenttypes", "contenttype"], "codename": "delete_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can add session", "content_type": ["sessions", "session"], "codename": "add_session"}}, {"model": "auth.permission", "fields": {"name": "Can change session", "content_type": ["sessions", "session"], "codename": "change_session"}}, {"model": "auth.permission", "fields": {"name": "Can delete session", "content_type": ["sessions", "session"], "codename": "delete_session"}}, {"model": "auth.permission", "fields": {"name": "Can add label", "content_type": ["labels", "label"], "codename": "add_label"}}, {"model": "auth.permission", "fields": {"name": "Can change label", "content_type": ["labels", "label"], "codename": "change_label"}}, {"model": "auth.permission", "fields": {"name": "Can delete label", "content_type": ["labels", "label"], "codename": "delete_label"}}, {"model": "auth.permission", "fields": {"name": "Can add person", "content_type": ["entities", "person"], "codename": "add_person"}}, {"model": "auth.permission", "fields": {"name": "Can change person", "content_type": ["entities", "person"], "codename": "change_person"}}, {"model": "auth.permission", "fields": {"name": "Can delete person", "content_type": ["entities", "person"], "codename": "delete_person"}}, {"model": "auth.permission", "fields": {"name": "Can add place", "content_type": ["entities", "place"], "codename": "add_place"}}, {"model": "auth.permission", "fields": {"name": "Can change place", "content_type": ["entities", "place"], "codename": "change_place"}}, {"model": "auth.permission", "fields": {"name": "Can delete place", "content_type": ["entities", "place"], "codename": "delete_place"}}, {"model": "auth.permission", "fields": {"name": "Can add institution", "content_type": ["entities", "institution"], "codename": "add_institution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution", "content_type": ["entities", "institution"], "codename": "change_institution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution", "content_type": ["entities", "institution"], "codename": "delete_institution"}}, {"model": "auth.permission", "fields": {"name": "Can add event", "content_type": ["entities", "event"], "codename": "add_event"}}, {"model": "auth.permission", "fields": {"name": "Can change event", "content_type": ["entities", "event"], "codename": "change_event"}}, {"model": "auth.permission", "fields": {"name": "Can delete event", "content_type": ["entities", "event"], "codename": "delete_event"}}, {"model": "auth.permission", "fields": {"name": "Can add work", "content_type": ["entities", "work"], "codename": "add_work"}}, {"model": "auth.permission", "fields": {"name": "Can change work", "content_type": ["entities", "work"], "codename": "change_work"}}, {"model": "auth.permission", "fields": {"name": "Can delete work", "content_type": ["entities", "work"], "codename": "delete_work"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "add_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "change_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can add work type", "content_type": ["vocabularies", "worktype"], "codename": "add_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can change work type", "content_type": ["vocabularies", "worktype"], "codename": "change_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can delete work type", "content_type": ["vocabularies", "worktype"], "codename": "delete_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can add title", "content_type": ["vocabularies", "title"], "codename": "add_title"}}, {"model": "auth.permission", "fields": {"name": "Can change title", "content_type": ["vocabularies", "title"], "codename": "change_title"}}, {"model": "auth.permission", "fields": {"name": "Can delete title", "content_type": ["vocabularies", "title"], "codename": "delete_title"}}, {"model": "auth.permission", "fields": {"name": "Can add profession type", "content_type": ["vocabularies", "professiontype"], "codename": "add_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change profession type", "content_type": ["vocabularies", "professiontype"], "codename": "change_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete profession type", "content_type": ["vocabularies", "professiontype"], "codename": "delete_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add place type", "content_type": ["vocabularies", "placetype"], "codename": "add_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can change place type", "content_type": ["vocabularies", "placetype"], "codename": "change_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can delete place type", "content_type": ["vocabularies", "placetype"], "codename": "delete_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can add institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "add_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "change_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "delete_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add event type", "content_type": ["vocabularies", "eventtype"], "codename": "add_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can change event type", "content_type": ["vocabularies", "eventtype"], "codename": "change_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can delete event type", "content_type": ["vocabularies", "eventtype"], "codename": "delete_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can add label type", "content_type": ["vocabularies", "labeltype"], "codename": "add_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can change label type", "content_type": ["vocabularies", "labeltype"], "codename": "change_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can delete label type", "content_type": ["vocabularies", "labeltype"], "codename": "delete_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can add collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "add_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "change_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "delete_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add text type", "content_type": ["vocabularies", "texttype"], "codename": "add_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can change text type", "content_type": ["vocabularies", "texttype"], "codename": "change_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete text type", "content_type": ["vocabularies", "texttype"], "codename": "delete_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can add person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "add_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "change_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "add_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "change_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "add_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "change_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "add_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "change_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person person", "content_type": ["relations", "personperson"], "codename": "add_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can change person person", "content_type": ["relations", "personperson"], "codename": "change_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person", "content_type": ["relations", "personperson"], "codename": "delete_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can add person place", "content_type": ["relations", "personplace"], "codename": "add_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can change person place", "content_type": ["relations", "personplace"], "codename": "change_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place", "content_type": ["relations", "personplace"], "codename": "delete_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution", "content_type": ["relations", "personinstitution"], "codename": "add_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution", "content_type": ["relations", "personinstitution"], "codename": "change_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution", "content_type": ["relations", "personinstitution"], "codename": "delete_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add person event", "content_type": ["relations", "personevent"], "codename": "add_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can change person event", "content_type": ["relations", "personevent"], "codename": "change_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event", "content_type": ["relations", "personevent"], "codename": "delete_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can add person work", "content_type": ["relations", "personwork"], "codename": "add_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can change person work", "content_type": ["relations", "personwork"], "codename": "change_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work", "content_type": ["relations", "personwork"], "codename": "delete_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place", "content_type": ["relations", "institutionplace"], "codename": "add_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place", "content_type": ["relations", "institutionplace"], "codename": "change_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place", "content_type": ["relations", "institutionplace"], "codename": "delete_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event", "content_type": ["relations", "institutionevent"], "codename": "add_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event", "content_type": ["relations", "institutionevent"], "codename": "change_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event", "content_type": ["relations", "institutionevent"], "codename": "delete_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work", "content_type": ["relations", "institutionwork"], "codename": "add_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work", "content_type": ["relations", "institutionwork"], "codename": "change_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work", "content_type": ["relations", "institutionwork"], "codename": "delete_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can add place place", "content_type": ["relations", "placeplace"], "codename": "add_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can change place place", "content_type": ["relations", "placeplace"], "codename": "change_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place", "content_type": ["relations", "placeplace"], "codename": "delete_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can add place event", "content_type": ["relations", "placeevent"], "codename": "add_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can change place event", "content_type": ["relations", "placeevent"], "codename": "change_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event", "content_type": ["relations", "placeevent"], "codename": "delete_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can add place work", "content_type": ["relations", "placework"], "codename": "add_placework"}}, {"model": "auth.permission", "fields": {"name": "Can change place work", "content_type": ["relations", "placework"], "codename": "change_placework"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work", "content_type": ["relations", "placework"], "codename": "delete_placework"}}, {"model": "auth.permission", "fields": {"name": "Can add event event", "content_type": ["relations", "eventevent"], "codename": "add_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can change event event", "content_type": ["relations", "eventevent"], "codename": "change_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event", "content_type": ["relations", "eventevent"], "codename": "delete_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can add event work", "content_type": ["relations", "eventwork"], "codename": "add_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can change event work", "content_type": ["relations", "eventwork"], "codename": "change_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work", "content_type": ["relations", "eventwork"], "codename": "delete_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can add work work", "content_type": ["relations", "workwork"], "codename": "add_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can change work work", "content_type": ["relations", "workwork"], "codename": "change_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work", "content_type": ["relations", "workwork"], "codename": "delete_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can add temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "add_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can change temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "change_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can add source", "content_type": ["metainfo", "source"], "codename": "add_source"}}, {"model": "auth.permission", "fields": {"name": "Can change source", "content_type": ["metainfo", "source"], "codename": "change_source"}}, {"model": "auth.permission", "fields": {"name": "Can delete source", "content_type": ["metainfo", "source"], "codename": "delete_source"}}, {"model": "auth.permission", "fields": {"name": "Can add collection", "content_type": ["metainfo", "collection"], "codename": "add_collection"}}, {"model": "auth.permission", "fields": {"name": "Can change collection", "content_type": ["metainfo", "collection"], "codename": "change_collection"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection", "content_type": ["metainfo", "collection"], "codename": "delete_collection"}}, {"model": "auth.permission", "fields": {"name": "Can add text", "content_type": ["metainfo", "text"], "codename": "add_text"}}, {"model": "auth.permission", "fields": {"name": "Can change text", "content_type": ["metainfo", "text"], "codename": "change_text"}}, {"model": "auth.permission", "fields": {"name": "Can delete text", "content_type": ["metainfo", "text"], "codename": "delete_text"}}, {"model": "auth.permission", "fields": {"name": "Can add uri", "content_type": ["metainfo", "uri"], "codename": "add_uri"}}, {"model": "auth.permission", "fields": {"name": "Can change uri", "content_type": ["metainfo", "uri"], "codename": "change_uri"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri", "content_type": ["metainfo", "uri"], "codename": "delete_uri"}}, {"model": "auth.permission", "fields": {"name": "Can add project", "content_type": ["highlighter", "project"], "codename": "add_project"}}, {"model": "auth.permission", "fields": {"name": "Can change project", "content_type": ["highlighter", "project"], "codename": "change_project"}}, {"model": "auth.permission", "fields": {"name": "Can delete project", "content_type": ["highlighter", "project"], "codename": "delete_project"}}, {"model": "auth.permission", "fields": {"name": "Can add annotation", "content_type": ["highlighter", "annotation"], "codename": "add_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can change annotation", "content_type": ["highlighter", "annotation"], "codename": "change_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can delete annotation", "content_type": ["highlighter", "annotation"], "codename": "delete_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "add_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "change_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "delete_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can add menu entry", "content_type": ["highlighter", "menuentry"], "codename": "add_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can change menu entry", "content_type": ["highlighter", "menuentry"], "codename": "change_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete menu entry", "content_type": ["highlighter", "menuentry"], "codename": "delete_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can add revision", "content_type": ["reversion", "revision"], "codename": "add_revision"}}, {"model": "auth.permission", "fields": {"name": "Can change revision", "content_type": ["reversion", "revision"], "codename": "change_revision"}}, {"model": "auth.permission", "fields": {"name": "Can delete revision", "content_type": ["reversion", "revision"], "codename": "delete_revision"}}, {"model": "auth.permission", "fields": {"name": "Can add version", "content_type": ["reversion", "version"], "codename": "add_version"}}, {"model": "auth.permission", "fields": {"name": "Can change version", "content_type": ["reversion", "version"], "codename": "change_version"}}, {"model": "auth.permission", "fields": {"name": "Can delete version", "content_type": ["reversion", "version"], "codename": "delete_version"}}, {"model": "auth.permission", "fields": {"name": "Can add uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "add_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can change uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "change_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "delete_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can add vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "add_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can change vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "change_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "delete_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can add text high", "content_type": ["highlighter", "texthigh"], "codename": "add_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can change text high", "content_type": ["highlighter", "texthigh"], "codename": "change_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can delete text high", "content_type": ["highlighter", "texthigh"], "codename": "delete_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can add annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "add_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can change annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "change_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can delete annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "delete_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can add Token", "content_type": ["authtoken", "token"], "codename": "add_token"}}, {"model": "auth.permission", "fields": {"name": "Can change Token", "content_type": ["authtoken", "token"], "codename": "change_token"}}, {"model": "auth.permission", "fields": {"name": "Can delete Token", "content_type": ["authtoken", "token"], "codename": "delete_token"}}, {"model": "auth.permission", "fields": {"name": "Can add user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "add_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can change user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "change_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can delete user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "delete_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can add group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "add_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can change group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "change_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can delete group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "delete_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "add_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "change_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "delete_institutionworkrelation"}}, {"model": "auth.group", "fields": {"name": "semac", "permissions": [["add_contenttype", "contenttypes", "contenttype"], ["change_contenttype", "contenttypes", "contenttype"], ["delete_contenttype", "contenttypes", "contenttype"], ["add_event", "entities", "event"], ["change_event", "entities", "event"], ["delete_event", "entities", "event"], ["add_institution", "entities", "institution"], ["change_institution", "entities", "institution"], ["delete_institution", "entities", "institution"], ["add_person", "entities", "person"], ["change_person", "entities", "person"], ["delete_person", "entities", "person"], ["add_place", "entities", "place"], ["change_place", "entities", "place"], ["delete_place", "entities", "place"], ["add_work", "entities", "work"], ["change_work", "entities", "work"], ["delete_work", "entities", "work"], ["add_annotation", "highlighter", "annotation"], ["change_annotation", "highlighter", "annotation"], ["delete_annotation", "highlighter", "annotation"], ["add_menuentry", "highlighter", "menuentry"], ["change_menuentry", "highlighter", "menuentry"], ["delete_menuentry", "highlighter", "menuentry"], ["add_project", "highlighter", "project"], ["change_project", "highlighter", "project"], ["delete_project", "highlighter", "project"], ["add_vocabularyapi", "highlighter", "vocabularyapi"], ["change_vocabularyapi", "highlighter", "vocabularyapi"], ["delete_vocabularyapi", "highlighter", "vocabularyapi"], ["add_label", "labels", "label"], ["change_label", "labels", "label"], ["delete_label", "labels", "label"], ["add_collection", "metainfo", "collection"], ["change_collection", "metainfo", "collection"], ["delete_collection", "metainfo", "collection"], ["add_source", "metainfo", "source"], ["change_source", "metainfo", "source"], ["delete_source", "metainfo", "source"], ["add_tempentityclass", "metainfo", "tempentityclass"], ["change_tempentityclass", "metainfo", "tempentityclass"], ["delete_tempentityclass", "metainfo", "tempentityclass"], ["add_text", "metainfo", "text"], ["change_text", "metainfo", "text"], ["delete_text", "metainfo", "text"], ["add_uri", "metainfo", "uri"], ["change_uri", "metainfo", "uri"], ["delete_uri", "metainfo", "uri"], ["add_eventevent", "relations", "eventevent"], ["change_eventevent", "relations", "eventevent"], ["delete_eventevent", "relations", "eventevent"], ["add_eventwork", "relations", "eventwork"], ["change_eventwork", "relations", "eventwork"], ["delete_eventwork", "relations", "eventwork"], ["add_institutionevent", "relations", "institutionevent"], ["change_institutionevent", "relations", "institutionevent"], ["delete_institutionevent", "relations", "institutionevent"], ["add_institutioninstitution", "relations", "institutioninstitution"], ["change_institutioninstitution", "relations", "institutioninstitution"], ["delete_institutioninstitution", "relations", "institutioninstitution"], ["add_institutionplace", "relations", "institutionplace"], ["change_institutionplace", "relations", "institutionplace"], ["delete_institutionplace", "relations", "institutionplace"], ["add_institutionwork", "relations", "institutionwork"], ["change_institutionwork", "relations", "institutionwork"], ["delete_institutionwork", "relations", "institutionwork"], ["add_personevent", "relations", "personevent"], ["change_personevent", "relations", "personevent"], ["delete_personevent", "relations", "personevent"], ["add_personinstitution", "relations", "personinstitution"], ["change_personinstitution", "relations", "personinstitution"], ["delete_personinstitution", "relations", "personinstitution"], ["add_personperson", "relations", "personperson"], ["change_personperson", "relations", "personperson"], ["delete_personperson", "relations", "personperson"], ["add_personplace", "relations", "personplace"], ["change_personplace", "relations", "personplace"], ["delete_personplace", "relations", "personplace"], ["add_personwork", "relations", "personwork"], ["change_personwork", "relations", "personwork"], ["delete_personwork", "relations", "personwork"], ["add_placeevent", "relations", "placeevent"], ["change_placeevent", "relations", "placeevent"], ["delete_placeevent", "relations", "placeevent"], ["add_placeplace", "relations", "placeplace"], ["change_placeplace", "relations", "placeplace"], ["delete_placeplace", "relations", "placeplace"], ["add_placework", "relations", "placework"], ["change_placework", "relations", "placework"], ["delete_placework", "relations", "placework"], ["add_workwork", "relations", "workwork"], ["change_workwork", "relations", "workwork"], ["delete_workwork", "relations", "workwork"], ["add_session", "sessions", "session"], ["change_session", "sessions", "session"], ["delete_session", "sessions", "session"], ["add_collectiontype", "vocabularies", "collectiontype"], ["change_collectiontype", "vocabularies", "collectiontype"], ["delete_collectiontype", "vocabularies", "collectiontype"], ["add_eventeventrelation", "vocabularies", "eventeventrelation"], ["change_eventeventrelation", "vocabularies", "eventeventrelation"], ["delete_eventeventrelation", "vocabularies", "eventeventrelation"], ["add_eventtype", "vocabularies", "eventtype"], ["change_eventtype", "vocabularies", "eventtype"], ["delete_eventtype", "vocabularies", "eventtype"], ["add_eventworkrelation", "vocabularies", "eventworkrelation"], ["change_eventworkrelation", "vocabularies", "eventworkrelation"], ["delete_eventworkrelation", "vocabularies", "eventworkrelation"], ["add_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["change_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["delete_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["add_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["change_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["delete_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["add_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["change_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["delete_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["add_institutiontype", "vocabularies", "institutiontype"], ["change_institutiontype", "vocabularies", "institutiontype"], ["delete_institutiontype", "vocabularies", "institutiontype"], ["add_labeltype", "vocabularies", "labeltype"], ["change_labeltype", "vocabularies", "labeltype"], ["delete_labeltype", "vocabularies", "labeltype"], ["add_personeventrelation", "vocabularies", "personeventrelation"], ["change_personeventrelation", "vocabularies", "personeventrelation"], ["delete_personeventrelation", "vocabularies", "personeventrelation"], ["add_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["change_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["delete_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["add_personpersonrelation", "vocabularies", "personpersonrelation"], ["change_personpersonrelation", "vocabularies", "personpersonrelation"], ["delete_personpersonrelation", "vocabularies", "personpersonrelation"], ["add_personplacerelation", "vocabularies", "personplacerelation"], ["change_personplacerelation", "vocabularies", "personplacerelation"], ["delete_personplacerelation", "vocabularies", "personplacerelation"], ["add_personworkrelation", "vocabularies", "personworkrelation"], ["change_personworkrelation", "vocabularies", "personworkrelation"], ["delete_personworkrelation", "vocabularies", "personworkrelation"], ["add_placeeventrelation", "vocabularies", "placeeventrelation"], ["change_placeeventrelation", "vocabularies", "placeeventrelation"], ["delete_placeeventrelation", "vocabularies", "placeeventrelation"], ["add_placeplacerelation", "vocabularies", "placeplacerelation"], ["change_placeplacerelation", "vocabularies", "placeplacerelation"], ["delete_placeplacerelation", "vocabularies", "placeplacerelation"], ["add_placetype", "vocabularies", "placetype"], ["change_placetype", "vocabularies", "placetype"], ["delete_placetype", "vocabularies", "placetype"], ["add_placeworkrelation", "vocabularies", "placeworkrelation"], ["change_placeworkrelation", "vocabularies", "placeworkrelation"], ["delete_placeworkrelation", "vocabularies", "placeworkrelation"], ["add_professiontype", "vocabularies", "professiontype"], ["change_professiontype", "vocabularies", "professiontype"], ["delete_professiontype", "vocabularies", "professiontype"], ["add_relationbaseclass", "vocabularies", "relationbaseclass"], ["change_relationbaseclass", "vocabularies", "relationbaseclass"], ["delete_relationbaseclass", "vocabularies", "relationbaseclass"], ["add_texttype", "vocabularies", "texttype"], ["change_texttype", "vocabularies", "texttype"], ["delete_texttype", "vocabularies", "texttype"], ["add_title", "vocabularies", "title"], ["change_title", "vocabularies", "title"], ["delete_title", "vocabularies", "title"], ["add_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["change_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["delete_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["add_vocabsuri", "vocabularies", "vocabsuri"], ["change_vocabsuri", "vocabularies", "vocabsuri"], ["delete_vocabsuri", "vocabularies", "vocabsuri"], ["add_worktype", "vocabularies", "worktype"], ["change_worktype", "vocabularies", "worktype"], ["delete_worktype", "vocabularies", "worktype"], ["add_workworkrelation", "vocabularies", "workworkrelation"], ["change_workworkrelation", "vocabularies", "workworkrelation"], ["delete_workworkrelation", "vocabularies", "workworkrelation"]]}}, {"model": "auth.group", "fields": {"name": "apis", "permissions": []}}, {"model": "auth.group", "fields": {"name": "staribacher", "permissions": []}}, {"model": "auth.group", "fields": {"name": "Editoren Apis", "permissions": []}}, {"model": "auth.user", "fields": {"password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", "last_login": "2017-04-19T08:59:07Z", "is_superuser": true, "username": "sennierer", "first_name": "Matthias", "last_name": "Schl\u00f6gl", "email": "matthias.schloegl@oeaw.ac.at", "is_staff": true, "is_active": true, "date_joined": "2016-04-05T15:11:00Z", "groups": [["apis"], ["Editoren Apis"]], "user_permissions": [["add_logentry", "admin", "logentry"], ["change_logentry", "admin", "logentry"], ["delete_logentry", "admin", "logentry"], ["add_group", "auth", "group"], ["change_group", "auth", "group"], ["delete_group", "auth", "group"], ["add_permission", "auth", "permission"], ["change_permission", "auth", "permission"], ["delete_permission", "auth", "permission"], ["add_user", "auth", "user"], ["change_user", "auth", "user"], ["delete_user", "auth", "user"], ["add_contenttype", "contenttypes", "contenttype"], ["change_contenttype", "contenttypes", "contenttype"], ["delete_contenttype", "contenttypes", "contenttype"], ["add_event", "entities", "event"], ["change_event", "entities", "event"], ["delete_event", "entities", "event"], ["add_institution", "entities", "institution"], ["change_institution", "entities", "institution"], ["delete_institution", "entities", "institution"], ["add_person", "entities", "person"], ["change_person", "entities", "person"], ["delete_person", "entities", "person"], ["add_place", "entities", "place"], ["change_place", "entities", "place"], ["delete_place", "entities", "place"], ["add_work", "entities", "work"], ["change_work", "entities", "work"], ["delete_work", "entities", "work"], ["add_annotation", "highlighter", "annotation"], ["change_annotation", "highlighter", "annotation"], ["delete_annotation", "highlighter", "annotation"], ["add_menuentry", "highlighter", "menuentry"], ["change_menuentry", "highlighter", "menuentry"], ["delete_menuentry", "highlighter", "menuentry"], ["add_project", "highlighter", "project"], ["change_project", "highlighter", "project"], ["delete_project", "highlighter", "project"], ["add_vocabularyapi", "highlighter", "vocabularyapi"], ["change_vocabularyapi", "highlighter", "vocabularyapi"], ["delete_vocabularyapi", "highlighter", "vocabularyapi"], ["add_label", "labels", "label"], ["change_label", "labels", "label"], ["delete_label", "labels", "label"], ["add_collection", "metainfo", "collection"], ["change_collection", "metainfo", "collection"], ["delete_collection", "metainfo", "collection"], ["add_source", "metainfo", "source"], ["change_source", "metainfo", "source"], ["delete_source", "metainfo", "source"], ["add_tempentityclass", "metainfo", "tempentityclass"], ["change_tempentityclass", "metainfo", "tempentityclass"], ["delete_tempentityclass", "metainfo", "tempentityclass"], ["add_text", "metainfo", "text"], ["change_text", "metainfo", "text"], ["delete_text", "metainfo", "text"], ["add_uri", "metainfo", "uri"], ["change_uri", "metainfo", "uri"], ["delete_uri", "metainfo", "uri"], ["add_uricandidate", "metainfo", "uricandidate"], ["change_uricandidate", "metainfo", "uricandidate"], ["delete_uricandidate", "metainfo", "uricandidate"], ["add_eventevent", "relations", "eventevent"], ["change_eventevent", "relations", "eventevent"], ["delete_eventevent", "relations", "eventevent"], ["add_eventwork", "relations", "eventwork"], ["change_eventwork", "relations", "eventwork"], ["delete_eventwork", "relations", "eventwork"], ["add_institutionevent", "relations", "institutionevent"], ["change_institutionevent", "relations", "institutionevent"], ["delete_institutionevent", "relations", "institutionevent"], ["add_institutioninstitution", "relations", "institutioninstitution"], ["change_institutioninstitution", "relations", "institutioninstitution"], ["delete_institutioninstitution", "relations", "institutioninstitution"], ["add_institutionplace", "relations", "institutionplace"], ["change_institutionplace", "relations", "institutionplace"], ["delete_institutionplace", "relations", "institutionplace"], ["add_institutionwork", "relations", "institutionwork"], ["change_institutionwork", "relations", "institutionwork"], ["delete_institutionwork", "relations", "institutionwork"], ["add_personevent", "relations", "personevent"], ["change_personevent", "relations", "personevent"], ["delete_personevent", "relations", "personevent"], ["add_personinstitution", "relations", "personinstitution"], ["change_personinstitution", "relations", "personinstitution"], ["delete_personinstitution", "relations", "personinstitution"], ["add_personperson", "relations", "personperson"], ["change_personperson", "relations", "personperson"], ["delete_personperson", "relations", "personperson"], ["add_personplace", "relations", "personplace"], ["change_personplace", "relations", "personplace"], ["delete_personplace", "relations", "personplace"], ["add_personwork", "relations", "personwork"], ["change_personwork", "relations", "personwork"], ["delete_personwork", "relations", "personwork"], ["add_placeevent", "relations", "placeevent"], ["change_placeevent", "relations", "placeevent"], ["delete_placeevent", "relations", "placeevent"], ["add_placeplace", "relations", "placeplace"], ["change_placeplace", "relations", "placeplace"], ["delete_placeplace", "relations", "placeplace"], ["add_placework", "relations", "placework"], ["change_placework", "relations", "placework"], ["delete_placework", "relations", "placework"], ["add_workwork", "relations", "workwork"], ["change_workwork", "relations", "workwork"], ["delete_workwork", "relations", "workwork"], ["add_revision", "reversion", "revision"], ["change_revision", "reversion", "revision"], ["delete_revision", "reversion", "revision"], ["add_version", "reversion", "version"], ["change_version", "reversion", "version"], ["delete_version", "reversion", "version"], ["add_session", "sessions", "session"], ["change_session", "sessions", "session"], ["delete_session", "sessions", "session"], ["add_collectiontype", "vocabularies", "collectiontype"], ["change_collectiontype", "vocabularies", "collectiontype"], ["delete_collectiontype", "vocabularies", "collectiontype"], ["add_eventeventrelation", "vocabularies", "eventeventrelation"], ["change_eventeventrelation", "vocabularies", "eventeventrelation"], ["delete_eventeventrelation", "vocabularies", "eventeventrelation"], ["add_eventtype", "vocabularies", "eventtype"], ["change_eventtype", "vocabularies", "eventtype"], ["delete_eventtype", "vocabularies", "eventtype"], ["add_eventworkrelation", "vocabularies", "eventworkrelation"], ["change_eventworkrelation", "vocabularies", "eventworkrelation"], ["delete_eventworkrelation", "vocabularies", "eventworkrelation"], ["add_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["change_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["delete_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["add_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["change_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["delete_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["add_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["change_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["delete_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["add_institutiontype", "vocabularies", "institutiontype"], ["change_institutiontype", "vocabularies", "institutiontype"], ["delete_institutiontype", "vocabularies", "institutiontype"], ["add_labeltype", "vocabularies", "labeltype"], ["change_labeltype", "vocabularies", "labeltype"], ["delete_labeltype", "vocabularies", "labeltype"], ["add_personeventrelation", "vocabularies", "personeventrelation"], ["change_personeventrelation", "vocabularies", "personeventrelation"], ["delete_personeventrelation", "vocabularies", "personeventrelation"], ["add_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["change_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["delete_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["add_personpersonrelation", "vocabularies", "personpersonrelation"], ["change_personpersonrelation", "vocabularies", "personpersonrelation"], ["delete_personpersonrelation", "vocabularies", "personpersonrelation"], ["add_personplacerelation", "vocabularies", "personplacerelation"], ["change_personplacerelation", "vocabularies", "personplacerelation"], ["delete_personplacerelation", "vocabularies", "personplacerelation"], ["add_personworkrelation", "vocabularies", "personworkrelation"], ["change_personworkrelation", "vocabularies", "personworkrelation"], ["delete_personworkrelation", "vocabularies", "personworkrelation"], ["add_placeeventrelation", "vocabularies", "placeeventrelation"], ["change_placeeventrelation", "vocabularies", "placeeventrelation"], ["delete_placeeventrelation", "vocabularies", "placeeventrelation"], ["add_placeplacerelation", "vocabularies", "placeplacerelation"], ["change_placeplacerelation", "vocabularies", "placeplacerelation"], ["delete_placeplacerelation", "vocabularies", "placeplacerelation"], ["add_placetype", "vocabularies", "placetype"], ["change_placetype", "vocabularies", "placetype"], ["delete_placetype", "vocabularies", "placetype"], ["add_placeworkrelation", "vocabularies", "placeworkrelation"], ["change_placeworkrelation", "vocabularies", "placeworkrelation"], ["delete_placeworkrelation", "vocabularies", "placeworkrelation"], ["add_professiontype", "vocabularies", "professiontype"], ["change_professiontype", "vocabularies", "professiontype"], ["delete_professiontype", "vocabularies", "professiontype"], ["add_relationbaseclass", "vocabularies", "relationbaseclass"], ["change_relationbaseclass", "vocabularies", "relationbaseclass"], ["delete_relationbaseclass", "vocabularies", "relationbaseclass"], ["add_texttype", "vocabularies", "texttype"], ["change_texttype", "vocabularies", "texttype"], ["delete_texttype", "vocabularies", "texttype"], ["add_title", "vocabularies", "title"], ["change_title", "vocabularies", "title"], ["delete_title", "vocabularies", "title"], ["add_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["change_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["delete_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["add_vocabsuri", "vocabularies", "vocabsuri"], ["change_vocabsuri", "vocabularies", "vocabsuri"], ["delete_vocabsuri", "vocabularies", "vocabsuri"], ["add_worktype", "vocabularies", "worktype"], ["change_worktype", "vocabularies", "worktype"], ["delete_worktype", "vocabularies", "worktype"], ["add_workworkrelation", "vocabularies", "workworkrelation"], ["change_workworkrelation", "vocabularies", "workworkrelation"], ["delete_workworkrelation", "vocabularies", "workworkrelation"]]}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1, "fields": {"name": "old entity of", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Place description \u00d6BL", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "vocabsor similar import", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "\u00d6BL place name", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "seat of a third-order administrative division (PPLA3)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "weitere Namensformen", "description": "wie im Gideon, statt alternative name", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "independent political entity (PCLI)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "populated place (PPL)", "description": "a city, town, village, or other agglomeration of buildings where people live and work", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "seat of a fourth-order administrative division (PPLA4)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "seat of a second-order administrative division (PPLA2)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "capital of a political entity (PPLC)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "seat of a first-order administrative division (PPLA)", "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 125, "fields": {"name": "test data import", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Literatur, Buch- und Zeitungswesen", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "\u00d6BL Haupttext", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "\u00d6BL Kurzinfo", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Rechtswesen und Rechtswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 133, "fields": {"name": "Rechtshistoriker und Abgeordneter", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Politik", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 135, "fields": {"name": "Naturwissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Botaniker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 137, "fields": {"name": "Wirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 138, "fields": {"name": "Instrumentenbauer", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 139, "fields": {"name": "Bildende und angewandte Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Maler", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 141, "fields": {"name": "Religionen und Theologie", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Bischof", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 143, "fields": {"name": "Milit\u00e4r", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "General", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Verwaltungsjurist und Politiker", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 146, "fields": {"name": "Verwaltung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 147, "fields": {"name": "Ministerpr\u00e4sident", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Zoologe", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Geisteswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Arch\u00e4ologe", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Musik und darstellende Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Schauspieler und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Medizin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "P\u00e4diater", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Technik", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Milit\u00e4rtechniker, Offizier und ungarischer Freiheitsk\u00e4mpfer", "description": "", "parent_class": 157, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Beamter und Fachschriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Historiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Architekt", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Diplomat", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Sport", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Eiskunstl\u00e4uferin", "description": "", "parent_class": 163, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 165, "fields": {"name": "Gro\u00dfindustrielle", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 166, "fields": {"name": "Diverse", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Bautechniker", "description": "", "parent_class": 157, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Maler und Graphiker", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Politikerin und Schriftstellerin", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Schauspieler, Theaterdirektor und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Physiologe", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Jurist", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Fabrikant", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Schriftsteller und Journalist", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Internist", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Landesverteidiger und Schriftsteller", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 177, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Malerin", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 179, "fields": {"name": "Volkss\u00e4nger", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Sozial- und Wirtschaftswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Betriebswirtschafter", "description": "", "parent_class": 180, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 182, "fields": {"name": "Slawist und Linguist", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 183, "fields": {"name": "Admiral", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Stigmatisierte", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 187, "fields": {"name": "Pharmazeut", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Unterrichtswesen", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Lehrer", "description": "", "parent_class": 188, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Montanist und Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 191, "fields": {"name": "Maler und Radierer", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Philologe und Literarhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Biologe und Lehrer", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Physiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Offizier und Diplomat", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Theologe", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Ornithologe", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Diplomat und Politiker", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Lokalhistoriker, Gewerbetreibender und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Schriftsteller und Seelsorger", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Industrieller", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Mediziner", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Komponist, Chorleiter und Musikkritiker", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Kirchenhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Journalist und Lehrer", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Fabrikant und Politiker", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "S\u00e4nger und Schauspieler", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Chirurg", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 209, "fields": {"name": "Jurist und Beamter", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Feldmarschalleutnant und Sicherheitsbeamter", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Pianist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Politiker und Jurist", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 214, "fields": {"name": "Musiker und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Bildhauer", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Harfenist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 217, "fields": {"name": "Land- und Forstwirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 218, "fields": {"name": "Landwirt und Weinhauer", "description": "", "parent_class": 217, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 219, "fields": {"name": "Ordensangeh\u00f6riger und Stifter", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 220, "fields": {"name": "Historiker und Lehrer", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 221, "fields": {"name": "Politiker und Kaufmann", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 222, "fields": {"name": "Journalist und Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Maler und Karikaturist", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Offizier", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Bischof und Missionar", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 226, "fields": {"name": "P\u00e4dagogin und Physikerin", "description": "", "parent_class": 188, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 227, "fields": {"name": "Historiker und Byzantinist", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Archivar und Historiker", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Geistlicher, Historiker und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 230, "fields": {"name": "Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Offizier und Politiker", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "S\u00e4nger, Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 233, "fields": {"name": "Journalist und Politiker", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Pfadfinderf\u00fchrer und Offizier", "description": "", "parent_class": 166, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "F\u00fcrstbischof", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 236, "fields": {"name": "Place review comments", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 371, "fields": {"name": "first-order administrative division (ADM1)", "description": "a primary administrative division of a country, such as a state in the United States", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "third-order administrative division (ADM3)", "description": "a subdivision of a second-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "fifth-order administrative division (ADM5)", "description": "a subdivision of a fourth-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Krieg", "description": "auch Revolution und B\u00fcrgerkrieg, Unterkategorie ist Schlacht", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Attentat", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 384, "fields": {"name": "Epidemie", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Verleihung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Festzug", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Kongress", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "R\u00fccktritt", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Fertigstellung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 392, "fields": {"name": "Erstauff\u00fchrung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 394, "fields": {"name": "Berufung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Abspaltung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "nahm Teil an", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "hatte als Teilnehmer", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Schlacht", "description": "", "parent_class": 380, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Friedensverhandlung", "description": "", "parent_class": 380, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "historical first-order administrative division (ADM1H)", "description": "a former first-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "author", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Publikation", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Pseudonym", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "M\u00e4dchenname", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 432, "fields": {"name": "K\u00fcnstlername", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "fourth-order administrative division (ADM4)", "description": "a subdivision of a third-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 452, "fields": {"name": "second-order administrative division (ADM2)", "description": "a subdivision of a first-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Graf", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Herzog", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 462, "fields": {"name": "Freiherr", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Erzherzog", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "K\u00f6nig", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Kaiser", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 466, "fields": {"name": "F\u00fcrst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Freiin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Freifrau", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "F\u00fcrstin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 470, "fields": {"name": "Erzherz\u00f6gin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "K\u00f6nigin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 483, "fields": {"name": "Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Pianist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "place of birth", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "place of death", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "alternative Namensform", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 598, "fields": {"name": "Name laut \u00d6BL XML", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 606, "fields": {"name": "Ehename", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Taufname", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 653, "fields": {"name": "not defined", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1750, "fields": {"name": "Pianistin", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "Komponist und Musiklehrer", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5578, "fields": {"name": "Schriftstellerin, \u00dcbersetzerin und Pianistin", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5599, "fields": {"name": "Pianist, P\u00e4dagoge und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5608, "fields": {"name": "undefined", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5702, "fields": {"name": "situated in", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 8}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5708, "fields": {"name": "is superior of", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5709, "fields": {"name": "is succeeding", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5711, "fields": {"name": "is preceding", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5729, "fields": {"name": "section of populated place (PPLX)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5741, "fields": {"name": "family member", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5742, "fields": {"name": "friend", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5743, "fields": {"name": "affiliation", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 4}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5765, "fields": {"name": "administrative division (ADMD)", "description": "an administrative division of a country, undifferentiated as to administrative level", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5772, "fields": {"name": "research dataset", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 11}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5789, "fields": {"name": "political entity (PCL)", "description": "", "parent_class": null, "status": "can", "userAdded": null, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5808, "fields": {"name": "dependent political entity (PCLD)", "description": "", "parent_class": null, "status": "can", "userAdded": null, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5811, "fields": {"name": "Commentary Staribacher", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.relationbaseclass", "pk": 1, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 8, "fields": {"name_reverse": "includes"}}, {"model": "vocabularies.relationbaseclass", "pk": 398, "fields": {"name_reverse": "hatte als Teilnehmer"}}, {"model": "vocabularies.relationbaseclass", "pk": 399, "fields": {"name_reverse": "nahm Teil an"}}, {"model": "vocabularies.relationbaseclass", "pk": 424, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 595, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 596, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5608, "fields": {"name_reverse": "undefined"}}, {"model": "vocabularies.relationbaseclass", "pk": 5702, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5708, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5709, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5711, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5741, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5742, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5743, "fields": {"name_reverse": ""}}, {"model": "vocabularies.worktype", "pk": 429, "fields": {}}, {"model": "vocabularies.title", "pk": 460, "fields": {"abbreviation": "Gf."}}, {"model": "vocabularies.title", "pk": 461, "fields": {"abbreviation": "Hg."}}, {"model": "vocabularies.title", "pk": 462, "fields": {"abbreviation": "Frh."}}, {"model": "vocabularies.title", "pk": 463, "fields": {"abbreviation": "Erzhg."}}, {"model": "vocabularies.title", "pk": 464, "fields": {"abbreviation": "Kg."}}, {"model": "vocabularies.title", "pk": 465, "fields": {"abbreviation": "K."}}, {"model": "vocabularies.title", "pk": 466, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 467, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 468, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 469, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 470, "fields": {"abbreviation": "Erzhgn."}}, {"model": "vocabularies.title", "pk": 474, "fields": {"abbreviation": "Kngn."}}, {"model": "vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 133, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 135, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 137, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 138, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 139, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 141, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 143, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 146, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 147, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 149, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 165, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 166, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 172, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 177, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 179, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 182, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 183, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 187, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 191, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 209, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 214, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 217, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 218, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 219, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 220, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 221, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 222, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 226, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 227, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 230, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 233, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 483, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 1750, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 2054, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5578, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5599, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "vocabularies.placetype", "pk": 11, "fields": {}}, {"model": "vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "vocabularies.placetype", "pk": 371, "fields": {}}, {"model": "vocabularies.placetype", "pk": 373, "fields": {}}, {"model": "vocabularies.placetype", "pk": 375, "fields": {}}, {"model": "vocabularies.placetype", "pk": 420, "fields": {}}, {"model": "vocabularies.placetype", "pk": 443, "fields": {}}, {"model": "vocabularies.placetype", "pk": 452, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5729, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5765, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5789, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5808, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 380, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 382, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 384, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 385, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 386, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 388, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 390, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 391, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 392, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 393, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 394, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 396, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 400, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 401, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 4, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 6, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 430, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 431, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 432, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 433, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 597, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 598, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 606, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 612, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 653, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 3, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 125, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 5772, "fields": {}}, {"model": "vocabularies.texttype", "pk": 2, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 130, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 131, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 236, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 5811, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.personpersonrelation", "pk": 5608, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5741, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5742, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 595, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 596, "fields": {}}, {"model": "vocabularies.personinstitutionrelation", "pk": 5743, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 398, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 399, "fields": {}}, {"model": "vocabularies.personworkrelation", "pk": 424, "fields": {}}, {"model": "vocabularies.institutionplacerelation", "pk": 5702, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5708, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5709, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5711, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 1, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 8, "fields": {}}, {"model": "metainfo.collection", "pk": 29, "fields": {"name": "Testdata \u00d6BL", "description": "", "collection_type": null, "groups_allowed": []}}, {"model": "highlighter.project", "pk": 1, "fields": {"name": "highlight places", "user": ["sennierer"], "description": "", "base_url": "", "store_text": false}}, {"model": "highlighter.annotation", "pk": 237, "fields": {"start": 239, "end": 250, "orig_string": "Carl Czerny", "text": 47030, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92840]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 331, "fields": {"start": 879, "end": 899, "orig_string": "Ludwig van Beethoven", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92930]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 332, "fields": {"start": 1362, "end": 1380, "orig_string": "Sigismund Thalberg", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92931]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 333, "fields": {"start": 1383, "end": 1408, "orig_string": "Marie Leopoldine Blahetka", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92932]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 334, "fields": {"start": 1439, "end": 1454, "orig_string": "Franz von Liszt", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92933]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 335, "fields": {"start": 1736, "end": 1751, "orig_string": "Ignaz Moscheles", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92934]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 336, "fields": {"start": 3031, "end": 3043, "orig_string": "Anton Reicha", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92935]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1214, "fields": {"start": 40, "end": 55, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1215, "fields": {"start": 141, "end": 151, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1216, "fields": {"start": 225, "end": 262, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1217, "fields": {"start": 354, "end": 378, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1218, "fields": {"start": 451, "end": 478, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1219, "fields": {"start": 500, "end": 508, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1220, "fields": {"start": 549, "end": 566, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1221, "fields": {"start": 650, "end": 670, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "authtoken.token", "pk": "bb650ee43b63b5e13cbac9320157b08c36099452", "fields": {"user": ["sennierer"], "created": "2016-08-26T08:01:26Z"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2016-04-07T11:10:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "13", "object_repr": "oebl", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2016-04-07T11:11:00Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "13", "object_repr": "oebl", "action_flag": 2, "change_message": "Changed is_staff and user_permissions."}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2016-04-13T15:46:02Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "40", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2016-04-14T11:55:13Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "50", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2016-04-14T11:55:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "53", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2016-04-14T12:41:46Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2016-04-15T07:22:05Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2016-04-15T07:22:26Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2016-04-18T11:07:39Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "6", "object_repr": "testcollection 18.4", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2016-04-18T11:16:20Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "107", "object_repr": "Editlogs", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2016-04-26T09:31:21Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "44", "object_repr": "place of death", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2016-04-26T09:31:47Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "43", "object_repr": "place of birth", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2016-04-27T10:26:06Z", "user": ["sennierer"], "content_type": ["vocabularies", "institutionplacerelation"], "object_id": "108", "object_repr": "located in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2016-04-28T09:03:10Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "109", "object_repr": "studied in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2016-05-03T09:51:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "110", "object_repr": "Place accuracy test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2016-05-03T11:01:33Z", "user": ["sennierer"], "content_type": ["relations", "personplace"], "object_id": "23993", "object_repr": "Defregger, Franz von (studied in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2016-05-09T08:58:18Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2016-05-09T08:58:25Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2016-05-09T10:07:01Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "236", "object_repr": "Place review comments", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2016-05-09T10:10:38Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "2", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2016-05-23T07:03:50Z", "user": ["sennierer"], "content_type": ["vocabularies", "personinstitutionrelation"], "object_id": "279", "object_repr": "is Vizepr\u00e4sident von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2016-05-23T09:31:15Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "237", "object_repr": "wirkte in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "245", "object_repr": "Kind", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "244", "object_repr": "Eltern", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "243", "object_repr": "Vater", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "242", "object_repr": "Mutter", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2016-05-25T11:21:38Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "421", "object_repr": "Vater/Mutter", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2016-06-06T07:44:47Z", "user": ["sennierer"], "content_type": ["vocabularies", "title"], "object_id": "459", "object_repr": "Graf", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2016-06-06T07:45:44Z", "user": ["sennierer"], "content_type": ["vocabularies", "title"], "object_id": "459", "object_repr": "Graf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2016-06-21T09:34:32Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "2", "object_repr": "apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2016-06-21T09:34:54Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2016-08-02T08:41:51Z", "user": ["sennierer"], "content_type": ["highlighter", "project"], "object_id": "1", "object_repr": "highlight places", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2016-08-02T08:43:38Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2016-08-02T08:44:13Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2016-08-02T08:45:35Z", "user": ["sennierer"], "content_type": ["highlighter", "texthigh"], "object_id": "1", "object_repr": "\u00d6BL Haupttext", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2016-08-02T08:45:50Z", "user": ["sennierer"], "content_type": ["highlighter", "texthigh"], "object_id": "2", "object_repr": "\u00d6bl Kurzinfo", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2016-08-02T08:49:51Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "2", "object_repr": "Person Institution Form", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2016-08-02T08:50:13Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "2", "object_repr": "Person Institution Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2016-08-05T09:01:30Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "KaiserM", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2016-08-05T09:02:10Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "KaiserM", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2016-08-05T09:02:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2016-08-05T12:44:55Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2016-08-05T12:45:10Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2016-08-22T14:47:23Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2016-08-22T14:47:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2016-08-26T08:00:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2016-08-26T08:00:50Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "is_staff, is_superuser und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2016-08-26T08:01:14Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2016-08-26T08:01:26Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2016-09-05T08:05:05Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "18", "object_repr": "CGruber", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2016-09-05T08:05:29Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "18", "object_repr": "CGruber", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2016-09-06T10:50:39Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2016-09-06T10:51:00Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2016-09-06T14:33:23Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "5608", "object_repr": "undefined", "action_flag": 2, "change_message": "name_reverse ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2016-09-07T10:05:46Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2016-09-07T10:05:53Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2016-09-07T12:36:40Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2016-09-07T12:36:55Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2016-09-21T09:15:20Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2016-09-21T09:15:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2016-10-03T14:34:28Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2016-10-03T14:34:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "is_staff ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2016-10-03T14:34:56Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "3", "object_repr": "staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2016-10-03T14:39:11Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "3", "object_repr": "staribacher", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2016-10-03T14:39:40Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2016-10-03T14:45:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "collectiontype"], "object_id": "5772", "object_repr": "research dataset", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2016-10-03T14:45:47Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "collection_type ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2016-10-03T14:47:21Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2016-10-06T06:56:20Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2016-10-06T06:56:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2016-10-06T06:58:12Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2016-10-06T06:58:30Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "17", "object_repr": "Mittelalter 7.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2016-10-06T07:00:34Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "16", "object_repr": "\u00d6BL additional import missing XMLs 7.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2016-10-06T07:00:50Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "15", "object_repr": "K\u00fcnstlerhaus 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2016-10-06T07:01:03Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "11", "object_repr": "Presse 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2016-10-06T07:01:25Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "7", "object_repr": "\u00d6BL complete import test 30.8.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2016-10-06T07:01:46Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "8", "object_repr": "\u00d6BL additional import 66lfg 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2016-10-06T07:01:55Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "9", "object_repr": "\u00d6BL additional import 4online 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2016-10-06T07:31:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2016-10-06T07:32:15Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2016-10-07T16:13:36Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2016-10-07T16:13:56Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2016-10-07T16:14:12Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2016-10-07T16:14:34Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "BKrautgartner", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2016-10-12T12:25:02Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2016-10-12T12:25:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2016-10-12T12:27:20Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2016-10-14T11:10:59Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "3", "object_repr": "Person Person", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2016-10-14T11:12:53Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "3", "object_repr": "Person Person Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2016-10-14T11:13:18Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "1", "object_repr": "Person Place Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2016-10-14T11:13:24Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "3", "object_repr": "Person Person Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2016-10-24T09:04:11Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2016-10-24T09:04:27Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2016-10-25T10:05:10Z", "user": ["sennierer"], "content_type": ["highlighter", "annotationproject"], "object_id": "1", "object_repr": "Default", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2016-12-02T15:27:02Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 851, "fields": {"action_time": "2017-01-11T11:53:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 852, "fields": {"action_time": "2017-01-11T11:57:36Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "is_staff und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 853, "fields": {"action_time": "2017-01-11T11:57:58Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 854, "fields": {"action_time": "2017-01-11T12:04:57Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 855, "fields": {"action_time": "2017-01-11T12:37:10Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "23", "object_repr": "300 random select", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 856, "fields": {"action_time": "2017-01-11T12:37:13Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "22", "object_repr": "300 selec names", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 857, "fields": {"action_time": "2017-01-11T12:37:44Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "5", "object_repr": "\u00d6BL places import 6.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 858, "fields": {"action_time": "2017-01-11T12:37:51Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "4", "object_repr": "\u00d6BL test data import 9.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 859, "fields": {"action_time": "2017-01-11T12:38:00Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "1", "object_repr": "\u00d6BL places import 6.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 860, "fields": {"action_time": "2017-01-11T13:47:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 861, "fields": {"action_time": "2017-01-23T12:13:06Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 875, "fields": {"action_time": "2017-02-21T13:34:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 882, "fields": {"action_time": "2017-02-27T11:38:32Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "25", "object_repr": "Presse-Graz", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 884, "fields": {"action_time": "2017-03-07T08:29:18Z", "user": ["sennierer"], "content_type": ["vocabularies", "personinstitutionrelation"], "object_id": "5678", "object_repr": "war Lehrling", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 892, "fields": {"action_time": "2017-03-13T09:14:53Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 893, "fields": {"action_time": "2017-03-13T09:16:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 894, "fields": {"action_time": "2017-03-13T09:17:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 895, "fields": {"action_time": "2017-03-13T09:17:37Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 899, "fields": {"action_time": "2017-03-13T10:04:15Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 900, "fields": {"action_time": "2017-03-13T10:04:24Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 903, "fields": {"action_time": "2017-03-21T14:23:50Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "5811", "object_repr": "Comentary Staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 904, "fields": {"action_time": "2017-03-21T14:24:49Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "5811", "object_repr": "Commentary Staribacher", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 905, "fields": {"action_time": "2017-03-21T14:51:26Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 906, "fields": {"action_time": "2017-03-21T14:52:09Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 913, "fields": {"action_time": "2017-04-03T11:41:06Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "26", "object_repr": "Default import collection", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 916, "fields": {"action_time": "2017-04-04T10:19:05Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 917, "fields": {"action_time": "2017-04-04T10:19:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 922, "fields": {"action_time": "2017-04-11T10:29:05Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "4", "object_repr": "Editoren Apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 923, "fields": {"action_time": "2017-04-11T10:29:28Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 924, "fields": {"action_time": "2017-04-11T10:29:38Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 925, "fields": {"action_time": "2017-04-11T10:29:49Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 926, "fields": {"action_time": "2017-04-11T10:29:57Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 927, "fields": {"action_time": "2017-04-11T10:30:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 928, "fields": {"action_time": "2017-04-11T10:30:15Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 929, "fields": {"action_time": "2017-04-11T10:31:23Z", "user": ["sennierer"], "content_type": ["highlighter", "annotationproject"], "object_id": "6", "object_repr": "Gold Standard 28.3.2017", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 930, "fields": {"action_time": "2017-05-02T10:28:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}] \ No newline at end of file +[{"model": "contenttypes.contenttype", "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "labels", "model": "label"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "person"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "place"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "event"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "entities", "model": "work"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "project"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "annotation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "vocabularyapi"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "menuentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "reversion", "model": "version"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "metainfo", "model": "uricandidate"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "texthigh"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "highlighter", "model": "annotationproject"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "authtoken", "model": "token"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "guardian", "model": "userobjectpermission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "guardian", "model": "groupobjectpermission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "vocabularies", "model": "institutionworkrelation"}}, {"model": "sessions.session", "pk": "0952nbb3skn1yipximadakv8bg67u2fm", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-21T15:56:15Z"}}, {"model": "sessions.session", "pk": "0ffzd5j8mj2loz7w9o63ti2vg63isgsj", "fields": {"session_data": "YjQzM2RhNWQwMjIyMjcyYWJhYTVhZjUxMWI0MjA3ZjdlYTkxMTIwYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-04-24T09:00:32Z"}}, {"model": "sessions.session", "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-12T09:16:06Z"}}, {"model": "sessions.session", "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-26T10:05:04Z"}}, {"model": "sessions.session", "pk": "0pb9zfbqg68p8dkf9il8yd1nfnet4hou", "fields": {"session_data": "YzMwNGIyNGIyYmFmNTJhZWQwZTY3YjQ2MDRmMTlmZDJmZjE5YTFlNzp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNiJdfQ==", "expire_date": "2017-05-12T11:29:11Z"}}, {"model": "sessions.session", "pk": "0yj2f7pv56w61lazsa2btsyfl3vj5ggj", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-04-18T19:28:03Z"}}, {"model": "sessions.session", "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-28T09:36:22Z"}}, {"model": "sessions.session", "pk": "17188fqkhwwemz91phd0gdgifcpuw531", "fields": {"session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==", "expire_date": "2016-12-23T14:35:05Z"}}, {"model": "sessions.session", "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn", "fields": {"session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9", "expire_date": "2016-11-10T13:45:57Z"}}, {"model": "sessions.session", "pk": "1iccsxivof263x10kvzx24cpvfuisbsi", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T10:09:36Z"}}, {"model": "sessions.session", "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T08:25:02Z"}}, {"model": "sessions.session", "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-03T06:28:05Z"}}, {"model": "sessions.session", "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-29T09:34:16Z"}}, {"model": "sessions.session", "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-17T10:44:53Z"}}, {"model": "sessions.session", "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T13:49:39Z"}}, {"model": "sessions.session", "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:08:50Z"}}, {"model": "sessions.session", "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-10T08:17:25Z"}}, {"model": "sessions.session", "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-26T14:15:06Z"}}, {"model": "sessions.session", "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:51:31Z"}}, {"model": "sessions.session", "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T13:15:39Z"}}, {"model": "sessions.session", "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-13T08:50:52Z"}}, {"model": "sessions.session", "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T15:43:29Z"}}, {"model": "sessions.session", "pk": "3f0z4r7zm0tht811km9py85tymlqp00t", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-01T16:42:42Z"}}, {"model": "sessions.session", "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T12:37:18Z"}}, {"model": "sessions.session", "pk": "3jko01lpmo2mga91cswnbozalltzmk3y", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-04T09:48:21Z"}}, {"model": "sessions.session", "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T07:40:34Z"}}, {"model": "sessions.session", "pk": "3rxj3sq56irbv3dsa6p238v3yni8or63", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-02-06T12:38:47Z"}}, {"model": "sessions.session", "pk": "418j45avvq5u7hb2a25lbny53jbpvs07", "fields": {"session_data": "ZmMxNjFlMmE4YWYyODI5NTk4MTJkMmQ1N2YwYjRiNjI1NWMwZDE4Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCIsIl9hdXRoX3VzZXJfaWQiOiIxNCJ9", "expire_date": "2017-01-03T15:38:05Z"}}, {"model": "sessions.session", "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-05-12T13:36:05Z"}}, {"model": "sessions.session", "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T09:34:31Z"}}, {"model": "sessions.session", "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:28:30Z"}}, {"model": "sessions.session", "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-08T08:03:34Z"}}, {"model": "sessions.session", "pk": "4n2qt23rcidnpg4kzgkda4kpex4lmfa5", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-24T13:31:41Z"}}, {"model": "sessions.session", "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-16T15:23:26Z"}}, {"model": "sessions.session", "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-26T16:58:24Z"}}, {"model": "sessions.session", "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a", "fields": {"session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=", "expire_date": "2016-03-28T08:35:56Z"}}, {"model": "sessions.session", "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T12:15:48Z"}}, {"model": "sessions.session", "pk": "530ad4x705b6e19mkq2p46a9hvib918m", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T10:26:56Z"}}, {"model": "sessions.session", "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-20T13:12:52Z"}}, {"model": "sessions.session", "pk": "59gq2d5fuwt2524677c8asdzlx2hnwre", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-03-24T09:19:20Z"}}, {"model": "sessions.session", "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-25T10:51:39Z"}}, {"model": "sessions.session", "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw", "fields": {"session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2016-12-29T15:38:59Z"}}, {"model": "sessions.session", "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-21T14:12:41Z"}}, {"model": "sessions.session", "pk": "5s6tkp2xjydwbep1z8iuavyf6dhbdnq9", "fields": {"session_data": "OTliNDY0YWRlNmUwOTVkOWJjNDExNDViOTBlNjFhOTZiNzkwY2JjZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjExIiwiMTAiLCI4IiwiOSIsIjEyIiwiNTEiLCI1MiIsIjQ2IiwiNDQiLCI0NSIsIjQ3IiwiNDIiLCI0MSIsIjM5IiwiNDAiLCI0MyIsIjQ5IiwiNDgiLCI1MCIsIjUzIl0sIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJhbm5vdGF0aW9uX3Byb2plY3QiOiIzIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCJdfQ==", "expire_date": "2017-04-17T10:46:44Z"}}, {"model": "sessions.session", "pk": "5vhcdmzs9c58duuxf2jky7fpdzqoz1lo", "fields": {"session_data": "ZjVjNjVmZWI5ZjE2YzU2MDViNTEzNmUxZWE0YTlhMmIzYzA5OWRmOTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCIsIl9hdXRoX3VzZXJfaWQiOiIyMyJ9", "expire_date": "2017-01-25T10:00:14Z"}}, {"model": "sessions.session", "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:22:04Z"}}, {"model": "sessions.session", "pk": "62u81vaiix78ydua95lqixfyi1d6jt1p", "fields": {"session_data": "NDJlMDI4MjUxM2I1OTVlMGY1YzZjNzc2MzE3ZjRhNTJhZGU2M2E4Mzp7InVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMTQiXSwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjQwIl0sImFubm90YXRpb25fcHJvamVjdCI6bnVsbH0=", "expire_date": "2017-04-20T08:35:44Z"}}, {"model": "sessions.session", "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-09T08:10:25Z"}}, {"model": "sessions.session", "pk": "6k16reryrvgvlux4peggv2dwnpdw018v", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-08-26T11:22:37Z"}}, {"model": "sessions.session", "pk": "6konr8g4jk3afgamkyg7p5uqq3ripype", "fields": {"session_data": "Njk3OWQwMDIzM2FmOTQyZjMyN2IzNDU2OTk5Y2Y1MDE2MWVjMDdhYTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiYW5ub3RhdGlvbl9wcm9qZWN0IjoiNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiJ9", "expire_date": "2017-02-20T11:14:29Z"}}, {"model": "sessions.session", "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429", "fields": {"session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T12:26:52Z"}}, {"model": "sessions.session", "pk": "74su7asx1chf5ug62fj4hitwaljxgkiz", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T10:59:37Z"}}, {"model": "sessions.session", "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T10:37:41Z"}}, {"model": "sessions.session", "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-08T10:43:50Z"}}, {"model": "sessions.session", "pk": "7c01s688teucprvj9wuoiuebtl8bff2d", "fields": {"session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-21T11:56:57Z"}}, {"model": "sessions.session", "pk": "7d7gd01ktm8aijqa17q84vq301a6ybus", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-17T14:27:57Z"}}, {"model": "sessions.session", "pk": "7r7v7jo8il027rwdvu3dea9lp9vg24bp", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T09:46:56Z"}}, {"model": "sessions.session", "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T11:41:48Z"}}, {"model": "sessions.session", "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-17T10:07:28Z"}}, {"model": "sessions.session", "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-06-21T12:35:35Z"}}, {"model": "sessions.session", "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-16T11:46:41Z"}}, {"model": "sessions.session", "pk": "8unallqs0trfk7pzslbcijnjx8j9721c", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-15T18:47:12Z"}}, {"model": "sessions.session", "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-12-14T16:16:28Z"}}, {"model": "sessions.session", "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-31T10:09:32Z"}}, {"model": "sessions.session", "pk": "8z8im2wcfj9tfbvvwixxbclbliyp6dwm", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T08:39:53Z"}}, {"model": "sessions.session", "pk": "9bc9ii4wa0d168dmatgrlqysta0wd3x8", "fields": {"session_data": "ZTlhMDFkMWVmYjNiMmYxNjU2ZDI5ODc1MDNhN2FkNjM1YjdmMDQ3NDp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-19T17:06:27Z"}}, {"model": "sessions.session", "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-12T08:26:15Z"}}, {"model": "sessions.session", "pk": "9mf1xzu1346ss0edpll2dwougyoippqv", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-01-02T13:44:56Z"}}, {"model": "sessions.session", "pk": "9nmr133amdnyjvxlc5fdq6vuul0kmm7d", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-22T09:52:23Z"}}, {"model": "sessions.session", "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-07T09:00:09Z"}}, {"model": "sessions.session", "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-11T11:10:15Z"}}, {"model": "sessions.session", "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg", "fields": {"session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2017-01-03T09:23:20Z"}}, {"model": "sessions.session", "pk": "9yu7ogy7fe8ci49tr7ohwnom17f93e8w", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-10T13:19:29Z"}}, {"model": "sessions.session", "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T14:19:29Z"}}, {"model": "sessions.session", "pk": "a3w6oc0o9czm37r9fp1w34sujjamhfko", "fields": {"session_data": "ZTk2NGJjYjI3MjY1NGZkNjhhMjUwMGVmMjYyNjBiNDQxMTc0MmM1NDp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYTcyY2ViMjg2NjYyZGUwNDMyY2Q2MDg4ZTk2Y2QzNzk5M2I5MDVhOCJ9", "expire_date": "2017-03-25T09:43:24Z"}}, {"model": "sessions.session", "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-04T08:02:47Z"}}, {"model": "sessions.session", "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-20T19:21:08Z"}}, {"model": "sessions.session", "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-28T11:54:57Z"}}, {"model": "sessions.session", "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T07:44:25Z"}}, {"model": "sessions.session", "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-09T12:01:50Z"}}, {"model": "sessions.session", "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T09:47:15Z"}}, {"model": "sessions.session", "pk": "c0mebo725euvitftiukwfw6dxip0koqs", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-21T08:38:04Z"}}, {"model": "sessions.session", "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:30:05Z"}}, {"model": "sessions.session", "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-10-19T15:55:59Z"}}, {"model": "sessions.session", "pk": "ccvhxts0xm4i007yj124auwtm1102ylc", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-30T11:48:28Z"}}, {"model": "sessions.session", "pk": "ck8xdgdkdqqgbfraxhpe5w78rluhcqdb", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2017-04-11T21:35:09Z"}}, {"model": "sessions.session", "pk": "co8qi0mvm1x1zwcfmd6lw0xe9n0exs2h", "fields": {"session_data": "Nzc0ZGRlY2UzNDMyNGNhOTVjZmMyMTkwMDA0ZDhjMmE3ZDFkYmVlNDp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsInVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMSIsIjExIiwiMTIiLCIxMyIsIjE0IiwiMTUiLCIxNiIsIjE3IiwiMTgiLCIxOSIsIjIwIiwiMjEiLCIyMiIsIjIzIiwiMjQiLCIyNSJdLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-26T10:55:04Z"}}, {"model": "sessions.session", "pk": "cyjaej15ap3vpirmuoxvua3ayv13l51w", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-16T13:01:23Z"}}, {"model": "sessions.session", "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T07:52:18Z"}}, {"model": "sessions.session", "pk": "d1e3bc2mhdeaq4zehswfyi3yrz1pzkle", "fields": {"session_data": "MWU1N2QyOThmZDA0NDI1ZTI1ZWUyNzVmMTkyMmEyNWIzYmRmYjQ4NDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiZW50aXR5X3R5cGVzX2hpZ2hsaWdodGVyIjpbIjExIiwiMTAiLCI4IiwiOSIsIjEyIiwiNTEiLCI1MiIsIjQ2IiwiNDQiLCI0NSIsIjQ3IiwiNDIiLCI0MSIsIjM5IiwiNDAiLCI0MyIsIjQ5IiwiNDgiLCI1MCIsIjUzIl0sIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJhbm5vdGF0aW9uX3Byb2plY3QiOiIzIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCJdfQ==", "expire_date": "2017-04-11T15:45:48Z"}}, {"model": "sessions.session", "pk": "d3ui57peh8haq74stm30y2og6mlzls1b", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-05-09T05:33:01Z"}}, {"model": "sessions.session", "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5", "fields": {"session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-11-07T12:37:20Z"}}, {"model": "sessions.session", "pk": "d7lbdggp0zfcu6b1lfo027oi4zk2z2si", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-03-28T19:52:26Z"}}, {"model": "sessions.session", "pk": "da9ald43zlct5w8wjy2jer4uuw1me508", "fields": {"session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T07:57:42Z"}}, {"model": "sessions.session", "pk": "dcscnejfbv3a961j405abjewr5xb7vhi", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2017-03-23T14:08:27Z"}}, {"model": "sessions.session", "pk": "dfzo1j1p9og5ckpnj773q0bn2eehhovi", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-14T15:13:03Z"}}, {"model": "sessions.session", "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-12T19:05:43Z"}}, {"model": "sessions.session", "pk": "di0u7jcqjsh3ytgb3zllprdujmo1za2f", "fields": {"session_data": "NjUwNDUxOTE3MjM4YjNjZDVjMGJlMTA4Y2YwODViNDlkNmRkNjhhZDp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-03-15T20:40:41Z"}}, {"model": "sessions.session", "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T14:05:09Z"}}, {"model": "sessions.session", "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T08:00:35Z"}}, {"model": "sessions.session", "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-16T13:41:51Z"}}, {"model": "sessions.session", "pk": "dqj5jfcpqu0usn7e65drhcizg79ci63o", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-03T11:00:01Z"}}, {"model": "sessions.session", "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-27T10:15:28Z"}}, {"model": "sessions.session", "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T08:42:22Z"}}, {"model": "sessions.session", "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y", "fields": {"session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-14T11:11:40Z"}}, {"model": "sessions.session", "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-09-14T14:53:54Z"}}, {"model": "sessions.session", "pk": "erwufifibov75oo9c5uklkwh5itqskcj", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-27T09:07:15Z"}}, {"model": "sessions.session", "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-21T15:40:51Z"}}, {"model": "sessions.session", "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-10-26T12:38:51Z"}}, {"model": "sessions.session", "pk": "fwapxlyzximbjixj3zubqvnzfklnp5ui", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-05-06T07:40:53Z"}}, {"model": "sessions.session", "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:23Z"}}, {"model": "sessions.session", "pk": "g6nyqamxt80gdy5kh21zw4lix7reinpa", "fields": {"session_data": "YzQ3ZDViYzg3NzYwMjE3YzQwN2RkNDUyNmY2YmIzMWU0MGRjYzBkMTp7ImFubm90YXRpb25fcHJvamVjdCI6IjYiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-04-25T19:43:56Z"}}, {"model": "sessions.session", "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-06-08T11:35:30Z"}}, {"model": "sessions.session", "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-06-07T13:29:28Z"}}, {"model": "sessions.session", "pk": "gi62wdj66c5j78be7q372m29mv6gdora", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-28T08:16:12Z"}}, {"model": "sessions.session", "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-21T07:03:28Z"}}, {"model": "sessions.session", "pk": "gjuve267k4260hvyils2ls2496ak9z37", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T17:18:28Z"}}, {"model": "sessions.session", "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-05T07:59:21Z"}}, {"model": "sessions.session", "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-05T14:43:01Z"}}, {"model": "sessions.session", "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-24T08:40:28Z"}}, {"model": "sessions.session", "pk": "hh8sk14s36jb19j341qt4njqf8axfoax", "fields": {"session_data": "NWE4N2QwNWU1NDYyYjg1NDcxZDA3NTJlOGI5MDE3MDA3MjUyYjc5ZDp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2lkIjoiMjMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-23T11:30:54Z"}}, {"model": "sessions.session", "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-16T08:59:39Z"}}, {"model": "sessions.session", "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-30T09:46:34Z"}}, {"model": "sessions.session", "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it", "fields": {"session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9", "expire_date": "2016-09-19T08:08:24Z"}}, {"model": "sessions.session", "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-07-20T06:13:45Z"}}, {"model": "sessions.session", "pk": "i26kpen4zhq9i2bg1leggk8eqgqt9k25", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-31T08:05:35Z"}}, {"model": "sessions.session", "pk": "i2vj2k3r6l6d190imgsx6bmhee8y6qx3", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T10:03:41Z"}}, {"model": "sessions.session", "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-31T14:52:42Z"}}, {"model": "sessions.session", "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-08T08:07:45Z"}}, {"model": "sessions.session", "pk": "i9or8sunzfkfo0ii06lqjduyf002njo4", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-04-25T11:07:58Z"}}, {"model": "sessions.session", "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-15T11:14:21Z"}}, {"model": "sessions.session", "pk": "imakeqah5lviaceijxe33lnovxbek8nu", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-03-15T16:03:56Z"}}, {"model": "sessions.session", "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-06T07:28:47Z"}}, {"model": "sessions.session", "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T13:05:08Z"}}, {"model": "sessions.session", "pk": "jf5t2tpi8u48cb3sjwrkxzy2lgohxd6p", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2017-04-17T15:51:41Z"}}, {"model": "sessions.session", "pk": "jggki1po013fup2njbdxstv7ah1hh6r9", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2017-05-09T09:48:53Z"}}, {"model": "sessions.session", "pk": "jghkwi5l48e732l6senbb027s7ww69fb", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-28T09:49:32Z"}}, {"model": "sessions.session", "pk": "jnairlw3ayhs0yzyma48fx0r64ls41fz", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-22T11:04:12Z"}}, {"model": "sessions.session", "pk": "k9p2trwa60tikg4o4jy36c4dsdqnr95y", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-13T20:23:57Z"}}, {"model": "sessions.session", "pk": "ka3msywv1o7njsbgs3q2631094nuqclo", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-04-19T15:12:15Z"}}, {"model": "sessions.session", "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-05-31T10:05:18Z"}}, {"model": "sessions.session", "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-23T05:35:47Z"}}, {"model": "sessions.session", "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec", "fields": {"session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==", "expire_date": "2016-12-30T19:29:46Z"}}, {"model": "sessions.session", "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-25T15:37:43Z"}}, {"model": "sessions.session", "pk": "knqvpsn88en5yygqemcw6edtg2jt8249", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-05-02T09:44:34Z"}}, {"model": "sessions.session", "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-13T06:27:59Z"}}, {"model": "sessions.session", "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-13T11:21:45Z"}}, {"model": "sessions.session", "pk": "le4a8wynksh1utfu4n5kz3o0tky32990", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-14T11:45:48Z"}}, {"model": "sessions.session", "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-01T14:58:57Z"}}, {"model": "sessions.session", "pk": "lvl28l9wwgox84fgmt2kpb4a60ij51vx", "fields": {"session_data": "ZWM2ZTllYjgyOTRjNjBmZTkzOWE3MjAxMzUyZDZkNzM2YjY3MTA3ZTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDhiOTU5YzYwY2ZlZDMyMmJmOTMxZmI4N2NjNDUxYTI5MzcyYmEwYSIsIl9hdXRoX3VzZXJfaWQiOiIyNSJ9", "expire_date": "2017-05-10T10:57:32Z"}}, {"model": "sessions.session", "pk": "m0v3nvlvl72v79ukvd2gfqckcgrysfjj", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-29T08:31:18Z"}}, {"model": "sessions.session", "pk": "m29eu76tn65wjyl62eru1klc0a3q8unp", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2017-04-04T14:34:25Z"}}, {"model": "sessions.session", "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-04T13:24:20Z"}}, {"model": "sessions.session", "pk": "m787xp45lpgoa269n6728z0b37p8iy1q", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:28:33Z"}}, {"model": "sessions.session", "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-19T19:17:17Z"}}, {"model": "sessions.session", "pk": "mhhkuwiygxn5m2io9ve354my9krv1jca", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T09:59:03Z"}}, {"model": "sessions.session", "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-23T16:20:25Z"}}, {"model": "sessions.session", "pk": "mp1bm60zuig6o6nui37vmxq35b9nvvcr", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-19T10:58:38Z"}}, {"model": "sessions.session", "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-05-23T13:26:40Z"}}, {"model": "sessions.session", "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-05-16T10:14:08Z"}}, {"model": "sessions.session", "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-09-14T14:54:12Z"}}, {"model": "sessions.session", "pk": "na5u7one7ewv6lwwskjw4fhd1l3nfcmn", "fields": {"session_data": "ZTlhMDFkMWVmYjNiMmYxNjU2ZDI5ODc1MDNhN2FkNjM1YjdmMDQ3NDp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfaGFzaCI6ImQ1MWU3ODA1YjZjZDhiNTA5MDU3ZTFjOWQ3Mzc3MTIxNDlkYTkxMDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-20T13:29:54Z"}}, {"model": "sessions.session", "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-12-22T15:22:58Z"}}, {"model": "sessions.session", "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg", "fields": {"session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=", "expire_date": "2016-04-11T20:27:35Z"}}, {"model": "sessions.session", "pk": "nry5t3cx23bpuh15iy7r4tokakqmj29v", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-23T16:10:09Z"}}, {"model": "sessions.session", "pk": "nswul70gr80dq4qwgs4di508w00uud6b", "fields": {"session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-08T10:15:12Z"}}, {"model": "sessions.session", "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2016-08-24T09:07:00Z"}}, {"model": "sessions.session", "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-07-05T10:17:31Z"}}, {"model": "sessions.session", "pk": "odorbcaogkfzuupexk2zyze0ewnene46", "fields": {"session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-08-08T10:29:46Z"}}, {"model": "sessions.session", "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T07:40:16Z"}}, {"model": "sessions.session", "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:49:30Z"}}, {"model": "sessions.session", "pk": "orhni0ej87m2aun2d9z9xz4c1l1lmjym", "fields": {"session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-10T10:03:12Z"}}, {"model": "sessions.session", "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-09-16T07:07:44Z"}}, {"model": "sessions.session", "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T11:53:13Z"}}, {"model": "sessions.session", "pk": "ppjcwurra6scll78pl3bs269eab3nz90", "fields": {"session_data": "NWNlMTY0NzUyNzBjNGNiYTY3MDhjMGYxYWQ3ODE1NTg0YWE2YzllNTp7Il9hdXRoX3VzZXJfaWQiOiIxNSIsIl9hdXRoX3VzZXJfaGFzaCI6ImE3MmNlYjI4NjY2MmRlMDQzMmNkNjA4OGU5NmNkMzc5OTNiOTA1YTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-03-18T21:10:11Z"}}, {"model": "sessions.session", "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf", "fields": {"session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==", "expire_date": "2016-11-24T11:13:28Z"}}, {"model": "sessions.session", "pk": "pu9debzitlp5h2npgzacuzevp3prl6d2", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-04-07T15:59:42Z"}}, {"model": "sessions.session", "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc", "fields": {"session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-04-18T11:48:29Z"}}, {"model": "sessions.session", "pk": "qd6glndlpk5s53d9azcl8m970xzp7qr7", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-04T20:54:03Z"}}, {"model": "sessions.session", "pk": "qi66ci58ybleptvfa4qenkhecsabekut", "fields": {"session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-03-28T14:27:50Z"}}, {"model": "sessions.session", "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf", "fields": {"session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==", "expire_date": "2016-12-09T16:53:29Z"}}, {"model": "sessions.session", "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-17T11:19:13Z"}}, {"model": "sessions.session", "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-09-20T08:48:24Z"}}, {"model": "sessions.session", "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k", "fields": {"session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-04-29T08:12:45Z"}}, {"model": "sessions.session", "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o", "fields": {"session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==", "expire_date": "2016-11-10T07:54:55Z"}}, {"model": "sessions.session", "pk": "rx6add3n8ac1j45tvfk7g22hfiqg9189", "fields": {"session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-26T15:21:10Z"}}, {"model": "sessions.session", "pk": "ryh7badf8sk52fnosn0im30u153w96bx", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-06-01T09:22:04Z"}}, {"model": "sessions.session", "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-17T11:25:00Z"}}, {"model": "sessions.session", "pk": "shgljfmuet4jvw3vvsjpwtbidz2ovolm", "fields": {"session_data": "ODAwZTFiNjlkZTdjNzFjNDk3ZmM5YTllMGRlMGFkNDFjOTc2MTkyMjp7Il9hdXRoX3VzZXJfaGFzaCI6ImQ4Yjk1OWM2MGNmZWQzMjJiZjkzMWZiODdjYzQ1MWEyOTM3MmJhMGEiLCJ1c2Vyc19zaG93X2hpZ2hsaWdodGVyIjpbIjE0Il0sImFubm90YXRpb25fcHJvamVjdCI6bnVsbCwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiNDAiXSwiX2F1dGhfdXNlcl9pZCI6IjI1In0=", "expire_date": "2017-04-20T08:30:18Z"}}, {"model": "sessions.session", "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-06-07T07:10:33Z"}}, {"model": "sessions.session", "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-11-02T13:21:25Z"}}, {"model": "sessions.session", "pk": "t28pi3wijtqtgswvxoby46phnlwq97cp", "fields": {"session_data": "YzgwMDFlZjkxYTAxZDE5MDUyYTcxY2E4OTk0MmIwMjgwZTgwZDU5Nzp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdfQ==", "expire_date": "2017-05-16T16:14:45Z"}}, {"model": "sessions.session", "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq", "fields": {"session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2016-12-22T23:47:44Z"}}, {"model": "sessions.session", "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-06T09:13:02Z"}}, {"model": "sessions.session", "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-04-18T13:16:42Z"}}, {"model": "sessions.session", "pk": "tfogugs17j1nvkir89ixugemdqq25kum", "fields": {"session_data": "N2RjNjVmOTZmMzlmMTE3MzRkODk2MzVkNDkyZTQyMTU5MDA2N2EyZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxNCJdLCJlbnRpdHlfdHlwZXNfaGlnaGxpZ2h0ZXIiOlsiMTEiLCIxMCIsIjgiLCI5IiwiMTIiLCI1MSIsIjUyIiwiNDYiLCI0NCIsIjQ1IiwiNDciLCI0MiIsIjQxIiwiMzkiLCI0MCIsIjQzIiwiNDkiLCI0OCIsIjUwIiwiNTMiXSwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQifQ==", "expire_date": "2017-04-19T14:30:19Z"}}, {"model": "sessions.session", "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-09-07T09:17:51Z"}}, {"model": "sessions.session", "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c", "fields": {"session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", "expire_date": "2016-03-29T08:45:55Z"}}, {"model": "sessions.session", "pk": "txw6kfzk32bxeqm21knvrf570by4v27p", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-28T12:48:36Z"}}, {"model": "sessions.session", "pk": "u3082c600jynq9qzxlc1pat4hfatkiiw", "fields": {"session_data": "MDMwNWJlZDBmODA1OThmYmQxNjE1MjMxMDEyNmQ4ZTg5MGJhOTI4ODp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJhbm5vdGF0aW9uX3Byb2plY3QiOiI2IiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsInVzZXJzX3Nob3dfaGlnaGxpZ2h0ZXIiOlsiMTIiXSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-04-25T13:40:05Z"}}, {"model": "sessions.session", "pk": "uesi563p5dol5hv4gjor3noj55kz8chz", "fields": {"session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-06-13T08:36:52Z"}}, {"model": "sessions.session", "pk": "ulaglp8rwt152gf05ugjxsh0l7nflreg", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2017-03-27T15:38:56Z"}}, {"model": "sessions.session", "pk": "uou3pothn76iu9zi34fij69m8inc1v2s", "fields": {"session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-05-13T08:32:22Z"}}, {"model": "sessions.session", "pk": "upxpub1wqb40yg07qnc2v9gmr5ivnx6q", "fields": {"session_data": "ZWM0ZGJlNGZiMzNmOWFjZmJiNDMwMTNjY2U0NDZlNzA5MGIzNTZjZjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjIifQ==", "expire_date": "2017-05-02T13:37:28Z"}}, {"model": "sessions.session", "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-07-05T09:34:00Z"}}, {"model": "sessions.session", "pk": "v0tb183q1hidp56w07hiihnkfphthq6x", "fields": {"session_data": "ZTUyMzMwZjQyNGVlM2E2MjEwNGFjMGQ2MmQ4MmVmYWFjZWE4OTI1OTp7ImVudGl0eV90eXBlc19oaWdobGlnaHRlciI6WyIxMSIsIjEwIiwiOCIsIjkiLCIxMiIsIjUxIiwiNTIiLCI0NiIsIjQ0IiwiNDUiLCI0NyIsIjQyIiwiNDEiLCIzOSIsIjQwIiwiNDMiLCI0OSIsIjQ4IiwiNTAiLCI1MyJdLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwidXNlcnNfc2hvd19oaWdobGlnaHRlciI6WyIxIiwiMTEiLCIxMiIsIjEzIiwiMTQiLCIxNSIsIjE2IiwiMTciLCIxOCIsIjE5IiwiMjAiLCIyMSIsIjIyIiwiMjMiLCIyNCIsIjI1Il19", "expire_date": "2017-05-16T16:24:03Z"}}, {"model": "sessions.session", "pk": "vcefmjdsogtqiiym2n2pvtnn2r3ymxbv", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T11:03:56Z"}}, {"model": "sessions.session", "pk": "vd9uzj95c4gdy21oezpy5gok82tgtlnd", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-18T10:51:36Z"}}, {"model": "sessions.session", "pk": "vdm5gd9axckuupzwphnyibh4ltwl10in", "fields": {"session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-10T12:53:51Z"}}, {"model": "sessions.session", "pk": "vdqbhkx8uozqoksjq28n8ze8p3kyp1mm", "fields": {"session_data": "ZTUyOGE1NDNlNmQwMDkzNDFmNDdjZTQzMzYwOWVkYzI5ODIzYmRiMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjI1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDhiOTU5YzYwY2ZlZDMyMmJmOTMxZmI4N2NjNDUxYTI5MzcyYmEwYSJ9", "expire_date": "2017-04-18T10:24:05Z"}}, {"model": "sessions.session", "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-06T09:17:34Z"}}, {"model": "sessions.session", "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20", "fields": {"session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9", "expire_date": "2016-11-25T22:11:01Z"}}, {"model": "sessions.session", "pk": "vz123od467ja9eqg3sxpjt7p28zbi1tu", "fields": {"session_data": "ZmRmZTY0MzVjMDVhNmM0ZjFjMWFhZjRkYTlmZjU4YTMwNDk2MTA0NTp7Il9hdXRoX3VzZXJfaWQiOiIyNCIsIl9hdXRoX3VzZXJfaGFzaCI6IjUyMWY4MDIzOWM0YWQ4NjIwYTAwYmFkM2Y5ZDM0NzlkMmYxNzg1MDAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-22T13:16:36Z"}}, {"model": "sessions.session", "pk": "w854s0t1ev9t2jptzy5lgizv3o4iurxi", "fields": {"session_data": "NWJkODI2YzQ3NmRmZmNhNjlmYjFkYjE0ZDRkMDk2MDY2NGEyNzI3NTp7ImFubm90YXRpb25fcHJvamVjdCI6IjMiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==", "expire_date": "2017-03-27T12:15:23Z"}}, {"model": "sessions.session", "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505", "fields": {"session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9", "expire_date": "2016-10-19T09:11:45Z"}}, {"model": "sessions.session", "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-03-25T11:21:04Z"}}, {"model": "sessions.session", "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd", "fields": {"session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9", "expire_date": "2016-12-19T13:49:09Z"}}, {"model": "sessions.session", "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:40:30Z"}}, {"model": "sessions.session", "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp", "fields": {"session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-05-31T09:28:51Z"}}, {"model": "sessions.session", "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3", "fields": {"session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9", "expire_date": "2016-10-24T18:27:59Z"}}, {"model": "sessions.session", "pk": "x5z53fz318oplvc3pf9jl2xghhravlw4", "fields": {"session_data": "OTEwMWNlNTdkOTBhMzFhMzJhMjdmOWEzMGM5ODc3YWRkOGUxYjMzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6bnVsbH0=", "expire_date": "2017-01-31T08:07:16Z"}}, {"model": "sessions.session", "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-08-15T11:56:07Z"}}, {"model": "sessions.session", "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx", "fields": {"session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-21T08:23:30Z"}}, {"model": "sessions.session", "pk": "xeta229mvebwff8lxrg15tg92yby9l7h", "fields": {"session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-01-03T10:42:04Z"}}, {"model": "sessions.session", "pk": "xjameie76erma5u2xcefnxiqkaydbqem", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-10-20T15:38:48Z"}}, {"model": "sessions.session", "pk": "xm7czndauhfyen0rqfy7gwasyauycs13", "fields": {"session_data": "NGY2NGRhMTg5M2I2MTdlODAzMWZiMzQ2MTVkMDI2NTQ3ZGVjYzgwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIzIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9", "expire_date": "2017-04-07T21:50:11Z"}}, {"model": "sessions.session", "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-03T12:41:43Z"}}, {"model": "sessions.session", "pk": "xqn4o938970paagobhs75vdj78qklbpt", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-13T06:21:47Z"}}, {"model": "sessions.session", "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g", "fields": {"session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=", "expire_date": "2016-03-28T11:24:43Z"}}, {"model": "sessions.session", "pk": "xxi2fcd8u2v0bqralv28iy7houir1oig", "fields": {"session_data": "MThiODViY2ZiZDA2MzZiNWJmZGYyZTI4ZmRhMGE5NjU4MmI2ZTQzYTp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9", "expire_date": "2017-04-17T14:31:44Z"}}, {"model": "sessions.session", "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-10-17T17:19:59Z"}}, {"model": "sessions.session", "pk": "y0l6wk9otfe1gj48r2t88vsd85a4fgi7", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-02-15T10:11:05Z"}}, {"model": "sessions.session", "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-05T15:37:48Z"}}, {"model": "sessions.session", "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2016-05-23T09:12:20Z"}}, {"model": "sessions.session", "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g", "fields": {"session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-12-29T08:20:29Z"}}, {"model": "sessions.session", "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-11-21T14:11:46Z"}}, {"model": "sessions.session", "pk": "ykzz4og15rbp734i6zas54al3618ih6t", "fields": {"session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9", "expire_date": "2016-04-28T12:47:33Z"}}, {"model": "sessions.session", "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf", "fields": {"session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T07:23:58Z"}}, {"model": "sessions.session", "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs", "fields": {"session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9", "expire_date": "2016-06-10T09:57:45Z"}}, {"model": "sessions.session", "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1", "fields": {"session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-04-29T12:27:51Z"}}, {"model": "sessions.session", "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-18T11:53:02Z"}}, {"model": "sessions.session", "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2016-06-20T13:24:18Z"}}, {"model": "sessions.session", "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l", "fields": {"session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=", "expire_date": "2016-04-21T10:07:32Z"}}, {"model": "sessions.session", "pk": "zd89eekj8db021j20g95g8h3l2qoajg2", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2017-01-03T11:30:35Z"}}, {"model": "sessions.session", "pk": "zed35ecfw8w2jomw3tlvtr3joxg8u7qq", "fields": {"session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9", "expire_date": "2017-04-17T11:40:23Z"}}, {"model": "sessions.session", "pk": "zek5pffgnbfc047jdii8y0fxglrhlhtd", "fields": {"session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-05-03T08:59:07Z"}}, {"model": "sessions.session", "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h", "fields": {"session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9", "expire_date": "2016-07-07T12:20:16Z"}}, {"model": "sessions.session", "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i", "fields": {"session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9", "expire_date": "2016-06-20T14:32:15Z"}}, {"model": "sessions.session", "pk": "zvmiogv4haarelrbkcxlte9w66vc74ir", "fields": {"session_data": "YmFmZTQ4NGViYzRjOThmZGU0MDRjM2I3NDAzNjYzMDFmMzZiMmY4Njp7Il9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2lkIjoiMTkiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9", "expire_date": "2017-01-06T16:00:40Z"}}, {"model": "labels.label", "pk": 17, "fields": {"label": "Opatija", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 26}}, {"model": "labels.label", "pk": 19, "fields": {"label": "Opatija, sr. Rijeka", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 20, "fields": {"label": "Opatija, sr. Rijeka", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 26}}, {"model": "labels.label", "pk": 50, "fields": {"label": "Zagreb", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 133}}, {"model": "labels.label", "pk": 51, "fields": {"label": "Zagreb", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 67, "fields": {"label": "Vienna", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 183}}, {"model": "labels.label", "pk": 68, "fields": {"label": "Wien", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 108, "fields": {"label": "Brno", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 327}}, {"model": "labels.label", "pk": 109, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 118, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 121, "fields": {"label": "Budapest", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 400}}, {"model": "labels.label", "pk": 122, "fields": {"label": "Budapest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 252, "fields": {"label": "Bucharest", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 831}}, {"model": "labels.label", "pk": 253, "fields": {"label": "Bucure\u015fti", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 287, "fields": {"label": "Baden bei Wien", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 926}}, {"model": "labels.label", "pk": 288, "fields": {"label": "Baden", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 926}}, {"model": "labels.label", "pk": 445, "fields": {"label": "Berlin", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 1390}}, {"model": "labels.label", "pk": 446, "fields": {"label": "Berlin", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 456, "fields": {"label": "Liberec", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 1424}}, {"model": "labels.label", "pk": 457, "fields": {"label": "Liberec - Osta\u0161ov, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 466, "fields": {"label": "Bezau", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1454}}, {"model": "labels.label", "pk": 531, "fields": {"label": "Bodensdorf, Bez. Feldkirchen", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1701}}, {"model": "labels.label", "pk": 536, "fields": {"label": "Heilbronn", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 1718}}, {"model": "labels.label", "pk": 537, "fields": {"label": "Heilbronn", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1718}}, {"model": "labels.label", "pk": 613, "fields": {"label": "Boto\u015fani", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2006}}, {"model": "labels.label", "pk": 614, "fields": {"label": "Boto\u015fani", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2006}}, {"model": "labels.label", "pk": 639, "fields": {"label": "Bratislava", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2072}}, {"model": "labels.label", "pk": 640, "fields": {"label": "Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 641, "fields": {"label": "Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 645, "fields": {"label": "Broumov", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2085}}, {"model": "labels.label", "pk": 646, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 647, "fields": {"label": "Broumov, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2085}}, {"model": "labels.label", "pk": 669, "fields": {"label": "Wroc\u0142aw", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2161}}, {"model": "labels.label", "pk": 670, "fields": {"label": "Wroc\u0142aw", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 671, "fields": {"label": "Wroc\u0142aw", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 672, "fields": {"label": "Brixen", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2170}}, {"model": "labels.label", "pk": 673, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 680, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2197}}, {"model": "labels.label", "pk": 681, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - B\u0159ezhrad, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 693, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 694, "fields": {"label": "Bressanone/Brixen, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 697, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 704, "fields": {"label": "Brody", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2281}}, {"model": "labels.label", "pk": 705, "fields": {"label": "Brody, obl. L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2281}}, {"model": "labels.label", "pk": 713, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 714, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 715, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 716, "fields": {"label": "Brno, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 757, "fields": {"label": "Buenos Aires", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2489}}, {"model": "labels.label", "pk": 759, "fields": {"label": "Buenos Aires", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2489}}, {"model": "labels.label", "pk": 760, "fields": {"label": "Bucure\u015fti", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 761, "fields": {"label": "Bucure\u015fti", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 831}}, {"model": "labels.label", "pk": 789, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 870, "fields": {"label": "Chernivtsi", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 2854}}, {"model": "labels.label", "pk": 871, "fields": {"label": "\u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 876, "fields": {"label": "\u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 944, "fields": {"label": "Cieszyn", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 3105}}, {"model": "labels.label", "pk": 945, "fields": {"label": "Cieszyn, woj. Bielsko", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 962, "fields": {"label": "Cluj-Napoca", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 3162}}, {"model": "labels.label", "pk": 963, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 1050, "fields": {"label": "\u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 1214, "fields": {"label": "D\u00fcren", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1215, "fields": {"label": "D\u00fcren", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 4096}}, {"model": "labels.label", "pk": 1268, "fields": {"label": "\u00dadlice, kr. \u00dasteck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 4269}}, {"model": "labels.label", "pk": 1412, "fields": {"label": "Graz", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1413, "fields": {"label": "Graz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 4767}}, {"model": "labels.label", "pk": 1446, "fields": {"label": "Freistadt", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1447, "fields": {"label": "Freistadt", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 4877}}, {"model": "labels.label", "pk": 1560, "fields": {"label": "Ghidfal\u0103u, jud. Covasna", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5294}}, {"model": "labels.label", "pk": 1565, "fields": {"label": "Marienheide", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5308}}, {"model": "labels.label", "pk": 1619, "fields": {"label": "Gorizia", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1620, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1635, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1636, "fields": {"label": "Gorizia, reg. Friuli - Venezia Giulia", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 1670, "fields": {"label": "Merano", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1671, "fields": {"label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 1691, "fields": {"label": "Grieskirchen", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5749}}, {"model": "labels.label", "pk": 1755, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1756, "fields": {"label": "Velk\u00e9 Losiny, kr. Olomouck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6004}}, {"model": "labels.label", "pk": 1841, "fields": {"label": "Hanover", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1842, "fields": {"label": "Hannover", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 1926, "fields": {"label": "Innsbruck", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1927, "fields": {"label": "Innsbruck", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6700}}, {"model": "labels.label", "pk": 1982, "fields": {"label": "Hrastje, sr. Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 1983, "fields": {"label": "Hrastje, sr. Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 2002, "fields": {"label": "Brno - Brno-sever, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2108, "fields": {"label": "Jaworzno, woj. Katowice", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 7454}}, {"model": "labels.label", "pk": 2153, "fields": {"label": "Leoben", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2154, "fields": {"label": "Leoben", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 7622}}, {"model": "labels.label", "pk": 2190, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2191, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 2249, "fields": {"label": "Kassel", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2250, "fields": {"label": "Kassel", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 7986}}, {"model": "labels.label", "pk": 2340, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2341, "fields": {"label": "Cluj-Napoca, jud. Cluj", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3162}}, {"model": "labels.label", "pk": 2373, "fields": {"label": "Klosterneuburg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 8482}}, {"model": "labels.label", "pk": 2394, "fields": {"label": "Hradec Kr\u00e1lov\u00e9", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2458, "fields": {"label": "Konstanz", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2459, "fields": {"label": "Konstanz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 8798}}, {"model": "labels.label", "pk": 2581, "fields": {"label": "Kufstein", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2582, "fields": {"label": "Kufstein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9287}}, {"model": "labels.label", "pk": 2585, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Kukleny, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 2595, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 2625, "fields": {"label": "Lachovice, kr. Karlovarsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9455}}, {"model": "labels.label", "pk": 2632, "fields": {"label": "Ljubljana", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2633, "fields": {"label": "Ljubljana", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 2711, "fields": {"label": "Lviv", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2712, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2713, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2789, "fields": {"label": "Linz", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2790, "fields": {"label": "Linz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 2858, "fields": {"label": "City of London", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2859, "fields": {"label": "London City", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2860, "fields": {"label": "The City", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2861, "fields": {"label": "London", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2862, "fields": {"label": "London", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 2927, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2928, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2929, "fields": {"label": "L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 2951, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2952, "fields": {"label": "Liberec - Vratislavice nad Nisou, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 2963, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3022, "fields": {"label": "Maribor", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3023, "fields": {"label": "Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3039, "fields": {"label": "Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3040, "fields": {"label": "Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3041, "fields": {"label": "Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 3116, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3117, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3118, "fields": {"label": "Merano (Castello di Trautmannsdorf) / Meran (Schlo\u00df Trautmannsdorf), reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3119, "fields": {"label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3120, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3121, "fields": {"label": "Merano/Meran, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3158, "fields": {"label": "St\u0159\u00edbro, kr. Plze\u0148sk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 3239, "fields": {"label": "Moldava, kr. \u00dasteck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11556}}, {"model": "labels.label", "pk": 3324, "fields": {"label": "Munich", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3325, "fields": {"label": "M\u00fcnchen", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 3441, "fields": {"label": "Nysa", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3442, "fields": {"label": "Nysa, woj. Opole", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 12211}}, {"model": "labels.label", "pk": 3491, "fields": {"label": "Hradec Kr\u00e1lov\u00e9 - Nov\u00fd Hradec Kr\u00e1lov\u00e9, kr. Kr\u00e1lov\u00e9hradeck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2197}}, {"model": "labels.label", "pk": 3549, "fields": {"label": "Liberec - Doln\u00ed Hanychov, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3580, "fields": {"label": "Nice", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3581, "fields": {"label": "Nice", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 3657, "fields": {"label": "Brno - Brno-jih, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3663, "fields": {"label": "Liberec - Horn\u00ed Hanychov, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3671, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3672, "fields": {"label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 3681, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 3697, "fields": {"label": "Brno - Malom\u011b\u0159ice-Ob\u0159any, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 3710, "fields": {"label": "Sopron", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3711, "fields": {"label": "Sopron, m. Gy\u0151r-Moson-Sopron", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 3737, "fields": {"label": "Olomouc", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3738, "fields": {"label": "Olomouc", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3739, "fields": {"label": "Olomouc", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3740, "fields": {"label": "Olomouc", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3741, "fields": {"label": "Olomouc", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13382}}, {"model": "labels.label", "pk": 3828, "fields": {"label": "Paris", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3829, "fields": {"label": "Paris", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13714}}, {"model": "labels.label", "pk": 3901, "fields": {"label": "Petting", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13987}}, {"model": "labels.label", "pk": 4050, "fields": {"label": "Prague", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4051, "fields": {"label": "Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4052, "fields": {"label": "Praha, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4053, "fields": {"label": "Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4054, "fields": {"label": "Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4055, "fields": {"label": "Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 4077, "fields": {"label": "Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4078, "fields": {"label": "Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 4333, "fields": {"label": "Liberec - R\u016f\u017eodol I, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4334, "fields": {"label": "Liberec - Horn\u00ed R\u016f\u017eodol, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4389, "fields": {"label": "Liberec - Ruprechtice, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4415, "fields": {"label": "\u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 4478, "fields": {"label": "Sv\u00e4t\u00fd Jur", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4479, "fields": {"label": "Sv\u00e4t\u00fd Jur, kr. Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 16242}}, {"model": "labels.label", "pk": 4500, "fields": {"label": "St. Pankraz", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4501, "fields": {"label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 16310}}, {"model": "labels.label", "pk": 4581, "fields": {"label": "\u0160t\u00edty, kr. Olomouck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 16594}}, {"model": "labels.label", "pk": 4624, "fields": {"label": "Liberec - Kr\u00e1sn\u00e1 Stud\u00e1nka, kr. Libereck\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1424}}, {"model": "labels.label", "pk": 4652, "fields": {"label": "Schwanberg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 16864}}, {"model": "labels.label", "pk": 4676, "fields": {"label": "Wien - Sechshaus", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 4878, "fields": {"label": "Dlouh\u00e1 Ves, kr. Plze\u0148sk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 384}}, {"model": "labels.label", "pk": 5025, "fields": {"label": "Szczakowa, woj. Katowice", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 18374}}, {"model": "labels.label", "pk": 5031, "fields": {"label": "Szeged, m. Csongr\u00e1d", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 5150, "fields": {"label": "Cieszyn, woj. Bielsko", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5152, "fields": {"label": "Cieszyn, woj. Bielsko", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 5273, "fields": {"label": "Trento", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5274, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5275, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5290, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5291, "fields": {"label": "Trento, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19215}}, {"model": "labels.label", "pk": 5386, "fields": {"label": "Mojm\u00edrovce, kr. Nitra", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 19599}}, {"model": "labels.label", "pk": 5411, "fields": {"label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2602}}, {"model": "labels.label", "pk": 5422, "fields": {"label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 5650, "fields": {"label": "Warsaw", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5651, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5652, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5653, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5654, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5655, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5656, "fields": {"label": "Warszawa", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5677, "fields": {"label": "Bela Crkva, sr. Pan\u010devo", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20659}}, {"model": "labels.label", "pk": 5726, "fields": {"label": "Bad Gastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 5758, "fields": {"label": "Wisborough Green", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20988}}, {"model": "labels.label", "pk": 5809, "fields": {"label": "Wroc\u0142aw", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2161}}, {"model": "labels.label", "pk": 5903, "fields": {"label": "L'viv - Znesinnja, obl. L'viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 5941, "fields": {"label": "Svitavy", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5942, "fields": {"label": "Svitavy, kr. Pardubick\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 21818}}, {"model": "labels.label", "pk": 5959, "fields": {"label": "Jamnitz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22216}}, {"model": "labels.label", "pk": 5960, "fields": {"label": "Stronach (Lienz)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22259}}, {"model": "labels.label", "pk": 5961, "fields": {"label": "Nizza", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 12758}}, {"model": "labels.label", "pk": 5962, "fields": {"label": "Gr\u00fcnburg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22322}}, {"model": "labels.label", "pk": 5963, "fields": {"label": "Olten", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5964, "fields": {"label": "Olten, Kt. Solothurn", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22354}}, {"model": "labels.label", "pk": 5965, "fields": {"label": "Bad Kreuznach", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "labels.label", "pk": 5966, "fields": {"label": "Lasberg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22494}}, {"model": "labels.label", "pk": 5967, "fields": {"label": "Fribourg", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5968, "fields": {"label": "Fribourg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 5969, "fields": {"label": "Boc\u0219a", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22545}}, {"model": "labels.label", "pk": 5970, "fields": {"label": "Lud\u017amierz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22558}}, {"model": "labels.label", "pk": 5971, "fields": {"label": "Warszawa, woj. mazowieckie", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20549}}, {"model": "labels.label", "pk": 5972, "fields": {"label": "Vezzano", "isocode_639_3": "eng", "label_type": 6, "temp_entity": 22570}}, {"model": "labels.label", "pk": 5973, "fields": {"label": "Vezzano", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22570}}, {"model": "labels.label", "pk": 6951, "fields": {"label": "Thalberg, Sigismund (Fortun\u00e9 Fran\u00e7ois)", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 27245}}, {"model": "labels.label", "pk": 6952, "fields": {"label": "Fortun\u00e9 Fran\u00e7ois", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 27245}}, {"model": "labels.label", "pk": 7018, "fields": {"label": "Bratislava, kr. Bratislavsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 7161, "fields": {"label": "Bressanone/Brixen", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 8216, "fields": {"label": "Wien (?)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 8588, "fields": {"label": "Bressanone", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 9187, "fields": {"label": "Merano/Meran, reg. Trento - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 9289, "fields": {"label": "Teschen/T\u011b\u0161\u00edn/Cieszyn", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 3105}}, {"model": "labels.label", "pk": 10492, "fields": {"label": "?, kr. ?", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 12551, "fields": {"label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 12706, "fields": {"label": "\u013dviv (?)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 13574, "fields": {"label": "Bratislava (?)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 13859, "fields": {"label": "Linz (?)", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10015}}, {"model": "labels.label", "pk": 14306, "fields": {"label": "Gorizia, reg. Friuli-Venezia Giulia", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5478}}, {"model": "labels.label", "pk": 15282, "fields": {"label": "Reicha (Rejcha), Anton (Anton\u00edn) Josef", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15283, "fields": {"label": "Rejcha", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 15284, "fields": {"label": "Anton\u00edn Josef", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 46414}}, {"model": "labels.label", "pk": 18793, "fields": {"label": "Moscheles, Ignaz (Isaak)", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 56248}}, {"model": "labels.label", "pk": 18794, "fields": {"label": "Isaak", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 56248}}, {"model": "labels.label", "pk": 20331, "fields": {"label": "Gastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 21059, "fields": {"label": "Liszt, Franz von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 62757}}, {"model": "labels.label", "pk": 21545, "fields": {"label": "Bressanone/Brixen, reg. Trento - Alto Adige", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2170}}, {"model": "labels.label", "pk": 21609, "fields": {"label": "Praha - Mal\u00e1 Chuchle, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 25058, "fields": {"label": "Praha - Horn\u00ed Po\u010dernice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 26197, "fields": {"label": "Szeged", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 27645, "fields": {"label": "Prag", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 29838, "fields": {"label": "Blahetka, Marie Leopoldine", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 88219}}, {"model": "labels.label", "pk": 30089, "fields": {"label": "Beethoven, Ludwig van", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 88902}}, {"model": "labels.label", "pk": 30728, "fields": {"label": "Freiburg/Fribourg", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22526}}, {"model": "labels.label", "pk": 30935, "fields": {"label": "Merano/Meran", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 5691}}, {"model": "labels.label", "pk": 31498, "fields": {"label": "St\u0159\u00edbro", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11238}}, {"model": "labels.label", "pk": 31596, "fields": {"label": "B\u00e4uerle, Friederike; Ps. Friedrich Horn", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31597, "fields": {"label": "Friedrich Horn", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 92412}}, {"model": "labels.label", "pk": 31632, "fields": {"label": "L\u2019viv", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9735}}, {"model": "labels.label", "pk": 31701, "fields": {"label": "Czerny (\u010cern\u00fd), Carl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31702, "fields": {"label": "\u010cern\u00fd", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 92603}}, {"model": "labels.label", "pk": 31766, "fields": {"label": "Bahr, Hermann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93003}}, {"model": "labels.label", "pk": 31769, "fields": {"label": "Czerny, Adalbert", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93009}}, {"model": "labels.label", "pk": 31770, "fields": {"label": "Czetz, Johann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93012}}, {"model": "labels.label", "pk": 31771, "fields": {"label": "Czikann, Johann Jakob Heinrich", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93015}}, {"model": "labels.label", "pk": 31772, "fields": {"label": "Clam-Gallas, Eduard Gf.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93018}}, {"model": "labels.label", "pk": 31773, "fields": {"label": "Clam-Martinic, Heinrich Jaroslav Gf.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93021}}, {"model": "labels.label", "pk": 31774, "fields": {"label": "Clam-Martinic, Heinrich Gf.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93024}}, {"model": "labels.label", "pk": 31775, "fields": {"label": "Claus, Karl Friedrich", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93028}}, {"model": "labels.label", "pk": 31776, "fields": {"label": "Conze, Alexander", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93031}}, {"model": "labels.label", "pk": 31777, "fields": {"label": "Costenoble, Karl Ludwig", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93034}}, {"model": "labels.label", "pk": 31780, "fields": {"label": "\u010celakovsk\u00fd, Jarom\u00edr", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93044}}, {"model": "labels.label", "pk": 31781, "fields": {"label": "\u010celakovsk\u00fd, Ladislav", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93047}}, {"model": "labels.label", "pk": 31782, "fields": {"label": "\u010cerven\u00fd, V\u00e1clav Franti\u0161ek", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93050}}, {"model": "labels.label", "pk": 31783, "fields": {"label": "Charlemont, Hugo de", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93056}}, {"model": "labels.label", "pk": 31784, "fields": {"label": "Chlumczansk\u00fd, Wenzel Leopold von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93059}}, {"model": "labels.label", "pk": 31785, "fields": {"label": "Dumba, Konstantin Theodor", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93065}}, {"model": "labels.label", "pk": 31786, "fields": {"label": "Doderer, Wilhelm von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93068}}, {"model": "labels.label", "pk": 31787, "fields": {"label": "Defregger, Franz von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93071}}, {"model": "labels.label", "pk": 31788, "fields": {"label": "Dengel, Ignaz Philipp", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93074}}, {"model": "labels.label", "pk": 31811, "fields": {"label": "Holovsky, Hilde", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93136}}, {"model": "labels.label", "pk": 31872, "fields": {"label": "Lorenz, Heinrich", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93328}}, {"model": "labels.label", "pk": 31874, "fields": {"label": "L\u00f6wy, Julius; Ps. Von der Als", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31875, "fields": {"label": "Von der Als", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93337}}, {"model": "labels.label", "pk": 31879, "fields": {"label": "Lobmeyr, Josef", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93352}}, {"model": "labels.label", "pk": 31883, "fields": {"label": "Lichtblau, Adolf; Ps. A. L. Blau", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31884, "fields": {"label": "A. L. Blau", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93366}}, {"model": "labels.label", "pk": 31885, "fields": {"label": "Lichtblau, Ludwig", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93369}}, {"model": "labels.label", "pk": 31888, "fields": {"label": "Leitgeb, Hubert", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93378}}, {"model": "labels.label", "pk": 31890, "fields": {"label": "Lenhoss\u00e9k, Mih\u00e1ly Ign\u00e1c von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93387}}, {"model": "labels.label", "pk": 31892, "fields": {"label": "Lefler, Heinrich", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93393}}, {"model": "labels.label", "pk": 31893, "fields": {"label": "Leichter, K\u00e4the; geb. Pick", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31894, "fields": {"label": "Pick", "isocode_639_3": "deu", "label_type": 612, "temp_entity": 93396}}, {"model": "labels.label", "pk": 31895, "fields": {"label": "Leidesdorf, Franz; Ps. Wallner", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31896, "fields": {"label": "Wallner", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93400}}, {"model": "labels.label", "pk": 31899, "fields": {"label": "Lapaine, Valentin", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93409}}, {"model": "labels.label", "pk": 31900, "fields": {"label": "Langer-Schroll, Johanna; verehel. Suida und Langer", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31901, "fields": {"label": "Suida und Langer", "isocode_639_3": "deu", "label_type": 606, "temp_entity": 93415}}, {"model": "labels.label", "pk": 31902, "fields": {"label": "M\u00fcller, Wolf Johannes", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93418}}, {"model": "labels.label", "pk": 31910, "fields": {"label": "M\u00f6rl, Maria Theresia von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93442}}, {"model": "labels.label", "pk": 31911, "fields": {"label": "Millosicz, Georg Frh. von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93445}}, {"model": "labels.label", "pk": 31912, "fields": {"label": "Miklosich, Franz von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93448}}, {"model": "labels.label", "pk": 31917, "fields": {"label": "Meithner, Karl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93469}}, {"model": "labels.label", "pk": 31920, "fields": {"label": "Margulies, Berl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93481}}, {"model": "labels.label", "pk": 31921, "fields": {"label": "M\u00e1nesov\u00e1, Amalie", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93484}}, {"model": "labels.label", "pk": 31922, "fields": {"label": "M\u00e1nes, Quido", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93487}}, {"model": "labels.label", "pk": 31928, "fields": {"label": "Mayer, Karl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93510}}, {"model": "labels.label", "pk": 31929, "fields": {"label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31930, "fields": {"label": "Ritter von Alpenburg", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93513}}, {"model": "labels.label", "pk": 31931, "fields": {"label": "Nov\u00e1\u010dek, Rudolf", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93516}}, {"model": "labels.label", "pk": 31940, "fields": {"label": "Ortmann, Rudolf", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93540}}, {"model": "labels.label", "pk": 31942, "fields": {"label": "Oellacher, Josef", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93546}}, {"model": "labels.label", "pk": 31947, "fields": {"label": "Poljanec, Leopold", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93561}}, {"model": "labels.label", "pk": 31950, "fields": {"label": "Petzold, Emil", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93573}}, {"model": "labels.label", "pk": 31955, "fields": {"label": "Peithner von Lichtenfels, Eduard", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93588}}, {"model": "labels.label", "pk": 31958, "fields": {"label": "Patera, Adolf", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93600}}, {"model": "labels.label", "pk": 31960, "fields": {"label": "Rumpler, Matthias", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93609}}, {"model": "labels.label", "pk": 31961, "fields": {"label": "Rotter, Johann (Hans)", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31962, "fields": {"label": "Hans", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93615}}, {"model": "labels.label", "pk": 31969, "fields": {"label": "Revertera von Salandra, Friedrich Gf.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93639}}, {"model": "labels.label", "pk": 31970, "fields": {"label": "Reichenberger, Andreas", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93642}}, {"model": "labels.label", "pk": 31971, "fields": {"label": "Reiser, Othmar", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93645}}, {"model": "labels.label", "pk": 31973, "fields": {"label": "Randa, Maximilian von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93651}}, {"model": "labels.label", "pk": 31974, "fields": {"label": "Radakovi\u010d, Michael", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93654}}, {"model": "labels.label", "pk": 31975, "fields": {"label": "Szigligeti, Ede (Edv\u00e1rd); bis 1834 J\u00f3zsef Szathm\u00e1ry", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31976, "fields": {"label": "Edv\u00e1rd", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31977, "fields": {"label": " bis 1834 J\u00f3zsef Szathm\u00e1ry", "isocode_639_3": "deu", "label_type": 653, "temp_entity": 93657}}, {"model": "labels.label", "pk": 31978, "fields": {"label": "Szurmay von Uzsok, S\u00e1ndor (Alexander) Frh.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31979, "fields": {"label": "Alexander Frh.", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93663}}, {"model": "labels.label", "pk": 31988, "fields": {"label": "St\u00fclz, Jodok", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93678}}, {"model": "labels.label", "pk": 31990, "fields": {"label": "Stowasser, Otto Hellmuth", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93684}}, {"model": "labels.label", "pk": 32001, "fields": {"label": "Steindler, Olga; verehel. Ehrenhaft-S.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32002, "fields": {"label": "Ehrenhaft-S.", "isocode_639_3": "deu", "label_type": 606, "temp_entity": 93702}}, {"model": "labels.label", "pk": 32003, "fields": {"label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32004, "fields": {"label": "Ernest Edward Aurel", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32005, "fields": {"label": "Gottlieb Hellseher", "isocode_639_3": "deu", "label_type": 430, "temp_entity": 93705}}, {"model": "labels.label", "pk": 32009, "fields": {"label": "Stariha, Janez Nep.", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93714}}, {"model": "labels.label", "pk": 32018, "fields": {"label": "\u0160njari\u0107, Lukas", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93748}}, {"model": "labels.label", "pk": 32030, "fields": {"label": "Sichulski, Kazimierz", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93779}}, {"model": "labels.label", "pk": 32032, "fields": {"label": "Settari, Wilhelm Anton Maria", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93785}}, {"model": "labels.label", "pk": 32034, "fields": {"label": "Sehnal, Eugen", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93791}}, {"model": "labels.label", "pk": 32037, "fields": {"label": "Schwartz, P. Anton Maria", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93800}}, {"model": "labels.label", "pk": 32038, "fields": {"label": "Schwarz, Johann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93803}}, {"model": "labels.label", "pk": 32039, "fields": {"label": "Schwarz, Kaspar", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93809}}, {"model": "labels.label", "pk": 32041, "fields": {"label": "Schweitzer, Leopold Albrecht", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93815}}, {"model": "labels.label", "pk": 32042, "fields": {"label": "Schwabl, Franz", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93818}}, {"model": "labels.label", "pk": 32052, "fields": {"label": "Schu\u00ebcker, Edmund; eigentl. Schu\u00f6cker", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32053, "fields": {"label": "Schu\u00f6cker", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93836}}, {"model": "labels.label", "pk": 32054, "fields": {"label": "Schr\u00f6dl, Leopold", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93839}}, {"model": "labels.label", "pk": 32059, "fields": {"label": "Schreyer, Johann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93854}}, {"model": "labels.label", "pk": 32062, "fields": {"label": "Scholz, Franz", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93863}}, {"model": "labels.label", "pk": 32063, "fields": {"label": "Schrammel, Johann", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93866}}, {"model": "labels.label", "pk": 32067, "fields": {"label": "Scholl, Joseph", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93878}}, {"model": "labels.label", "pk": 32069, "fields": {"label": "Sch\u00f6nberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32070, "fields": {"label": "Schoenberger", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32071, "fields": {"label": "Carl Friedrich Frh. von", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 93891}}, {"model": "labels.label", "pk": 32072, "fields": {"label": "Sch\u00f6nberger, Benno", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93894}}, {"model": "labels.label", "pk": 32075, "fields": {"label": "Schnitzler, Julius", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93900}}, {"model": "labels.label", "pk": 32076, "fields": {"label": "Schober, Alfred", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93903}}, {"model": "labels.label", "pk": 32079, "fields": {"label": "Schoeller, Gustav Adolph von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93909}}, {"model": "labels.label", "pk": 32084, "fields": {"label": "Schmutzler, Leopold", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93921}}, {"model": "labels.label", "pk": 32087, "fields": {"label": "Schmidt, Joseph", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93933}}, {"model": "labels.label", "pk": 32088, "fields": {"label": "Schmidt, Anton", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93940}}, {"model": "labels.label", "pk": 32090, "fields": {"label": "Schmal, Johannes Adolf", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93946}}, {"model": "labels.label", "pk": 32094, "fields": {"label": "Schmidt-Beauchez, Louis", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93955}}, {"model": "labels.label", "pk": 32095, "fields": {"label": "Schindler, Josef", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93958}}, {"model": "labels.label", "pk": 32096, "fields": {"label": "Scheu, Josef Franz Georg", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93961}}, {"model": "labels.label", "pk": 32097, "fields": {"label": "Schikaneder, Jakub", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93964}}, {"model": "labels.label", "pk": 32098, "fields": {"label": "Schell, Karl", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93967}}, {"model": "labels.label", "pk": 32099, "fields": {"label": "Schenk, Samuel Leopold", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93970}}, {"model": "labels.label", "pk": 32107, "fields": {"label": "T\u00f6lgyessy, Art\u00far", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93988}}, {"model": "labels.label", "pk": 32108, "fields": {"label": "Thun und Hohenstein, Emanuel Maria Gf. von", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 93991}}, {"model": "labels.label", "pk": 32111, "fields": {"label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32112, "fields": {"label": "Kluger Frh. von Teschenberg Ernst", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94003}}, {"model": "labels.label", "pk": 32113, "fields": {"label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32114, "fields": {"label": "Przerwa-Tetmajer", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94006}}, {"model": "labels.label", "pk": 32115, "fields": {"label": "Teuber, Emmerich (genannt Imre)", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32116, "fields": {"label": "genannt Imre", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94009}}, {"model": "labels.label", "pk": 32119, "fields": {"label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", "isocode_639_3": "deu", "label_type": 598, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32120, "fields": {"label": "Richard Denemy", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32121, "fields": {"label": " ab 1913 Denemy-Tauber", "isocode_639_3": "deu", "label_type": 597, "temp_entity": 94018}}, {"model": "labels.label", "pk": 32390, "fields": {"label": "Laibach", "isocode_639_3": "deu", "label_type": 6, "temp_entity": 9475}}, {"model": "labels.label", "pk": 34957, "fields": {"label": "Berlin-Friedenau", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 34958, "fields": {"label": "Berlin-Gr\u00fcnau", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 34959, "fields": {"label": "Berlin-Schmargendorf", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 35289, "fields": {"label": "Maribor-Studenci, sr. Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 35292, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35364, "fields": {"label": "Praha-Dejvice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35397, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 35461, "fields": {"label": "Wien-Gumpendorf", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35476, "fields": {"label": "Hanover, New Hampshire", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6324}}, {"model": "labels.label", "pk": 35488, "fields": {"label": "Praha-Hole\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35492, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35543, "fields": {"label": "Bratislava-Rusovce, kr. Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 35545, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35548, "fields": {"label": "Praha-Kbely, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35559, "fields": {"label": "Szeged-Kiskundorozsma, m. Csongr\u00e1d", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 18400}}, {"model": "labels.label", "pk": 35560, "fields": {"label": "Budapest-Budat\u00e9t\u00e9ny, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35569, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35570, "fields": {"label": "Praha-Zbraslav, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35598, "fields": {"label": "London-Lewisham", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10265}}, {"model": "labels.label", "pk": 35643, "fields": {"label": "Praha-Mod\u0159any, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35665, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 35679, "fields": {"label": "Praha-Nusle, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35686, "fields": {"label": "Wien-Hietzing", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35717, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35764, "fields": {"label": "Praha-Horn\u00ed Kr\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35787, "fields": {"label": "Budapest-Pestszentl\u0151rinc, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35822, "fields": {"label": "Budapest-Budafok, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35833, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 35850, "fields": {"label": "\u010cernivci-Rohizna, obl. \u010cernivci", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2854}}, {"model": "labels.label", "pk": 35867, "fields": {"label": "Praha-Satalice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35893, "fields": {"label": "Slanovec, sr. Zagreb", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 133}}, {"model": "labels.label", "pk": 35897, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 35922, "fields": {"label": "Wien-Inzersdorf", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 35967, "fields": {"label": "Praha-Podol\u00ed, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36010, "fields": {"label": "Ljubljana-\u0160entvid, sr. Ljubljana", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36068, "fields": {"label": "Ljubljana-\u0160i\u0161ka, sr. Ljubljana", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36086, "fields": {"label": "Sopron-B\u00e1nfalva, m. Gy\u0151r-Moson-Sopron", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 13253}}, {"model": "labels.label", "pk": 36122, "fields": {"label": "Praha-\u017di\u017ekov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36147, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36148, "fields": {"label": "M\u00fcnchen, Ld. Bayern", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 36160, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36163, "fields": {"label": "M\u00fcnchen, Ld. Bayern", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 36173, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36176, "fields": {"label": "Budapest-M\u00e1ty\u00e1sf\u00f6ld, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36182, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36185, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36187, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36188, "fields": {"label": "Praha-Hostiva\u0159, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36195, "fields": {"label": "Maribor-Studenci, sr. Maribor", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 10793}}, {"model": "labels.label", "pk": 36226, "fields": {"label": "Budapest, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36238, "fields": {"label": "Praha-Podol\u00ed, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36243, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36253, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36263, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36267, "fields": {"label": "Ljubljana-\u0160entvid, sr. Ljubljana", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36334, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36340, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36341, "fields": {"label": "Praha-Vyso\u010dany, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36369, "fields": {"label": "Budapest-Pestszentl\u0151rinc, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36402, "fields": {"label": "Ljubljana-Toma\u010devo, sr. Ljubljana", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 36447, "fields": {"label": "Budapest-Soroks\u00e1r, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36478, "fields": {"label": "Wien-Breitenfeld", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 36480, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36547, "fields": {"label": "Berlin-Schmargendorf", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36567, "fields": {"label": "Berlin-Friedenau", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36574, "fields": {"label": "Badgastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36585, "fields": {"label": "Berlin-Gr\u00fcnau", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 1390}}, {"model": "labels.label", "pk": 36626, "fields": {"label": "Praha-\u017di\u017ekov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36637, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36638, "fields": {"label": "Badgastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36655, "fields": {"label": "Praha-Zbraslav, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36699, "fields": {"label": "Badgastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 36825, "fields": {"label": "Wien-Thury", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 183}}, {"model": "labels.label", "pk": 36875, "fields": {"label": "Praha-Satalice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36881, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36913, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 36923, "fields": {"label": "Budapest-Budafok, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 36939, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36964, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36965, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 36998, "fields": {"label": "Bratislava-Rusovce, kr. Bratislava", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 2072}}, {"model": "labels.label", "pk": 37007, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37030, "fields": {"label": "Budapest, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37031, "fields": {"label": "Budapest, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37033, "fields": {"label": "M\u00fcnchen-Pasing", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 11799}}, {"model": "labels.label", "pk": 37079, "fields": {"label": "Badgastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 37080, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37120, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37125, "fields": {"label": "Praha-Bubene\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37162, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37164, "fields": {"label": "Budapest-R\u00e1kospalota, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37190, "fields": {"label": "Praha-Vr\u0161ovice, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37205, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 37215, "fields": {"label": "Brno-Tu\u0159any, kr. Jihomoravsk\u00fd", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 327}}, {"model": "labels.label", "pk": 37255, "fields": {"label": "Praha-Vinohrady, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37287, "fields": {"label": "Praha-Sm\u00edchov, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37309, "fields": {"label": "Hrastje-Mota, sr. Murska Sobota", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 6947}}, {"model": "labels.label", "pk": 37325, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37333, "fields": {"label": "Badgastein", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 20872}}, {"model": "labels.label", "pk": 37362, "fields": {"label": "Praha-Karl\u00edn, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37367, "fields": {"label": "Ljubljana-\u0160i\u0161ka, sr. Ljubljana", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 9475}}, {"model": "labels.label", "pk": 37389, "fields": {"label": "Budapest-\u00dajpest, m. Pest", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 400}}, {"model": "labels.label", "pk": 37436, "fields": {"label": "Praha-Michle, kr. Hlavn\u00ed m\u011bsto Praha", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 14608}}, {"model": "labels.label", "pk": 37456, "fields": {"label": "Bad Kreuznach, Rheinland-Pfalz", "isocode_639_3": "deu", "label_type": 4, "temp_entity": 22475}}, {"model": "entities.person", "pk": 27245, "fields": {"first_name": "Sigismund", "gender": "male", "text": [12155, 12156], "collection": [29], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 46414, "fields": {"first_name": "Anton Josef", "gender": "male", "text": [21722, 21723], "collection": [29], "profession": [151, 188, 2054], "title": []}}, {"model": "entities.person", "pk": 56248, "fields": {"first_name": "Ignaz", "gender": "male", "text": [27186, 27187], "collection": [29], "profession": [151, 544], "title": []}}, {"model": "entities.person", "pk": 62757, "fields": {"first_name": "Franz von", "gender": "male", "text": [30762, 30763], "collection": [29], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 88219, "fields": {"first_name": "Marie Leopoldine", "gender": "female", "text": [44908, 44909], "collection": [29], "profession": [151, 1750], "title": []}}, {"model": "entities.person", "pk": 88902, "fields": {"first_name": "Ludwig van", "gender": "male", "text": [45290, 45291], "collection": [29], "profession": [151, 483], "title": []}}, {"model": "entities.person", "pk": 92412, "fields": {"first_name": "Friederike", "gender": "female", "text": [47030, 47031], "collection": [29], "profession": [128, 5578], "title": []}}, {"model": "entities.person", "pk": 92603, "fields": {"first_name": "Carl", "gender": "male", "text": [47126, 47127], "collection": [29], "profession": [151, 5599], "title": []}}, {"model": "entities.person", "pk": 93003, "fields": {"first_name": "Hermann", "gender": "male", "text": [47200, 47201], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93009, "fields": {"first_name": "Adalbert", "gender": "male", "text": [47204, 47205], "collection": [29], "profession": [154, 155], "title": []}}, {"model": "entities.person", "pk": 93012, "fields": {"first_name": "Johann", "gender": "male", "text": [47206, 47207], "collection": [29], "profession": [134, 143, 157, 158], "title": []}}, {"model": "entities.person", "pk": 93015, "fields": {"first_name": "Johann Jakob Heinrich", "gender": "male", "text": [47208, 47209], "collection": [29], "profession": [128, 146, 159], "title": []}}, {"model": "entities.person", "pk": 93018, "fields": {"first_name": "Eduard Gf.", "gender": "male", "text": [47210, 47211], "collection": [29], "profession": [143, 144], "title": []}}, {"model": "entities.person", "pk": 93021, "fields": {"first_name": "Heinrich Jaroslav Gf.", "gender": "male", "text": [47212, 47213], "collection": [29], "profession": [132, 134, 145, 146], "title": []}}, {"model": "entities.person", "pk": 93024, "fields": {"first_name": "Heinrich Gf.", "gender": "male", "text": [47214, 47215], "collection": [29], "profession": [134, 147], "title": []}}, {"model": "entities.person", "pk": 93028, "fields": {"first_name": "Karl Friedrich", "gender": "male", "text": [47216, 47217], "collection": [29], "profession": [135, 148], "title": []}}, {"model": "entities.person", "pk": 93031, "fields": {"first_name": "Alexander", "gender": "male", "text": [47218, 47219], "collection": [29], "profession": [149, 150], "title": []}}, {"model": "entities.person", "pk": 93034, "fields": {"first_name": "Karl Ludwig", "gender": "male", "text": [47220, 47221], "collection": [29], "profession": [128, 151, 152], "title": []}}, {"model": "entities.person", "pk": 93044, "fields": {"first_name": "Jarom\u00edr", "gender": "male", "text": [47226, 47227], "collection": [29], "profession": [132, 133, 134], "title": []}}, {"model": "entities.person", "pk": 93047, "fields": {"first_name": "Ladislav", "gender": "male", "text": [47228, 47229], "collection": [29], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93050, "fields": {"first_name": "V\u00e1clav Franti\u0161ek", "gender": "male", "text": [47230, 47231], "collection": [29], "profession": [137, 138], "title": []}}, {"model": "entities.person", "pk": 93056, "fields": {"first_name": "Hugo de", "gender": "male", "text": [47232, 47233], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93059, "fields": {"first_name": "Wenzel Leopold von", "gender": "male", "text": [47234, 47235], "collection": [29], "profession": [141, 142], "title": []}}, {"model": "entities.person", "pk": 93065, "fields": {"first_name": "Konstantin Theodor", "gender": "male", "text": [47236, 47237], "collection": [29], "profession": [146, 162], "title": []}}, {"model": "entities.person", "pk": 93068, "fields": {"first_name": "Wilhelm von", "gender": "male", "text": [47238, 47239], "collection": [29], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93071, "fields": {"first_name": "Franz von", "gender": "male", "text": [47240, 47241], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93074, "fields": {"first_name": "Ignaz Philipp", "gender": "male", "text": [47242, 47243], "collection": [29], "profession": [149, 160], "title": []}}, {"model": "entities.person", "pk": 93136, "fields": {"first_name": "Hilde", "gender": "female", "text": [47276, 47277], "collection": [29], "profession": [163, 164], "title": []}}, {"model": "entities.person", "pk": 93328, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47384, 47385], "collection": [29], "profession": [154, 175], "title": []}}, {"model": "entities.person", "pk": 93337, "fields": {"first_name": "Julius", "gender": "male", "text": [47388, 47389], "collection": [29], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93352, "fields": {"first_name": "Josef", "gender": "male", "text": [47394, 47395], "collection": [29], "profession": [137, 173], "title": []}}, {"model": "entities.person", "pk": 93366, "fields": {"first_name": "Adolf", "gender": "male", "text": [47402, 47403], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 93369, "fields": {"first_name": "Ludwig", "gender": "male", "text": [47404, 47405], "collection": [29], "profession": [132, 172], "title": []}}, {"model": "entities.person", "pk": 93378, "fields": {"first_name": "Hubert", "gender": "male", "text": [47410, 47411], "collection": [29], "profession": [135, 136], "title": []}}, {"model": "entities.person", "pk": 93387, "fields": {"first_name": "Mih\u00e1ly Ign\u00e1c von", "gender": "male", "text": [47414, 47415], "collection": [29], "profession": [154, 171], "title": []}}, {"model": "entities.person", "pk": 93393, "fields": {"first_name": "Heinrich", "gender": "male", "text": [47418, 47419], "collection": [29], "profession": [139, 168], "title": []}}, {"model": "entities.person", "pk": 93396, "fields": {"first_name": "K\u00e4the", "gender": "female", "text": [47420, 47421], "collection": [29], "profession": [128, 134, 169], "title": []}}, {"model": "entities.person", "pk": 93400, "fields": {"first_name": "Franz", "gender": "male", "text": [47422, 47423], "collection": [29], "profession": [128, 151, 170], "title": []}}, {"model": "entities.person", "pk": 93409, "fields": {"first_name": "Valentin", "gender": "male", "text": [47428, 47429], "collection": [29], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93415, "fields": {"first_name": "Johanna", "gender": "female", "text": [47430, 47431], "collection": [29], "profession": [137, 165, 166], "title": []}}, {"model": "entities.person", "pk": 93418, "fields": {"first_name": "Wolf Johannes", "gender": "male", "text": [47432, 47433], "collection": [29], "profession": [135, 185], "title": []}}, {"model": "entities.person", "pk": 93442, "fields": {"first_name": "Maria Theresia von", "gender": "female", "text": [47446, 47447], "collection": [29], "profession": [141, 184], "title": []}}, {"model": "entities.person", "pk": 93445, "fields": {"first_name": "Georg Frh. von", "gender": "male", "text": [47448, 47449], "collection": [29], "profession": [143, 183], "title": []}}, {"model": "entities.person", "pk": 93448, "fields": {"first_name": "Franz von", "gender": "male", "text": [47450, 47451], "collection": [29], "profession": [134, 149, 182], "title": []}}, {"model": "entities.person", "pk": 93469, "fields": {"first_name": "Karl", "gender": "male", "text": [47460, 47461], "collection": [29], "profession": [134, 180, 181], "title": []}}, {"model": "entities.person", "pk": 93481, "fields": {"first_name": "Berl", "gender": "male", "text": [47466, 47467], "collection": [29], "profession": [151, 179], "title": []}}, {"model": "entities.person", "pk": 93484, "fields": {"first_name": "Amalie", "gender": "female", "text": [47468, 47469], "collection": [29], "profession": [139, 178], "title": []}}, {"model": "entities.person", "pk": 93487, "fields": {"first_name": "Quido", "gender": "male", "text": [47470, 47471], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93510, "fields": {"first_name": "Karl", "gender": "male", "text": [47482, 47483], "collection": [29], "profession": [128, 177], "title": []}}, {"model": "entities.person", "pk": 93513, "fields": {"first_name": "Johann Nep.", "gender": "male", "text": [47484, 47485], "collection": [29], "profession": [128, 134, 176], "title": []}}, {"model": "entities.person", "pk": 93516, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47486, 47487], "collection": [29], "profession": [151, 186], "title": []}}, {"model": "entities.person", "pk": 93540, "fields": {"first_name": "Rudolf", "gender": "male", "text": [47502, 47503], "collection": [29], "profession": [188, 189], "title": []}}, {"model": "entities.person", "pk": 93546, "fields": {"first_name": "Josef", "gender": "male", "text": [47506, 47507], "collection": [29], "profession": [135, 187], "title": []}}, {"model": "entities.person", "pk": 93561, "fields": {"first_name": "Leopold", "gender": "male", "text": [47516, 47517], "collection": [29], "profession": [135, 188, 193], "title": []}}, {"model": "entities.person", "pk": 93573, "fields": {"first_name": "Emil", "gender": "male", "text": [47522, 47523], "collection": [29], "profession": [149, 192], "title": []}}, {"model": "entities.person", "pk": 93588, "fields": {"first_name": "Eduard", "gender": "male", "text": [47530, 47531], "collection": [29], "profession": [139, 191], "title": []}}, {"model": "entities.person", "pk": 93600, "fields": {"first_name": "Adolf", "gender": "male", "text": [47536, 47537], "collection": [29], "profession": [135, 190], "title": []}}, {"model": "entities.person", "pk": 93609, "fields": {"first_name": "Matthias", "gender": "male", "text": [47540, 47541], "collection": [29], "profession": [128, 141, 200], "title": []}}, {"model": "entities.person", "pk": 93615, "fields": {"first_name": "Johann", "gender": "male", "text": [47542, 47543], "collection": [29], "profession": [134, 137, 149, 199], "title": []}}, {"model": "entities.person", "pk": 93639, "fields": {"first_name": "Friedrich Gf.", "gender": "male", "text": [47556, 47557], "collection": [29], "profession": [134, 146, 198], "title": []}}, {"model": "entities.person", "pk": 93642, "fields": {"first_name": "Andreas", "gender": "male", "text": [47558, 47559], "collection": [29], "profession": [141, 196], "title": []}}, {"model": "entities.person", "pk": 93645, "fields": {"first_name": "Othmar", "gender": "male", "text": [47560, 47561], "collection": [29], "profession": [135, 197], "title": []}}, {"model": "entities.person", "pk": 93651, "fields": {"first_name": "Maximilian von", "gender": "male", "text": [47564, 47565], "collection": [29], "profession": [143, 146, 195], "title": []}}, {"model": "entities.person", "pk": 93654, "fields": {"first_name": "Michael", "gender": "male", "text": [47566, 47567], "collection": [29], "profession": [135, 194], "title": []}}, {"model": "entities.person", "pk": 93657, "fields": {"first_name": "Ede", "gender": "male", "text": [47568, 47569], "collection": [29], "profession": [128, 151, 230], "title": []}}, {"model": "entities.person", "pk": 93663, "fields": {"first_name": "S\u00e1ndor Frh.", "gender": "male", "text": [47570, 47571], "collection": [29], "profession": [134, 143, 231], "title": []}}, {"model": "entities.person", "pk": 93678, "fields": {"first_name": "Jodok", "gender": "male", "text": [47580, 47581], "collection": [29], "profession": [141, 149, 229], "title": []}}, {"model": "entities.person", "pk": 93684, "fields": {"first_name": "Otto Hellmuth", "gender": "male", "text": [47584, 47585], "collection": [29], "profession": [146, 149, 228], "title": []}}, {"model": "entities.person", "pk": 93702, "fields": {"first_name": "Olga", "gender": "female", "text": [47594, 47595], "collection": [29], "profession": [135, 188, 226], "title": []}}, {"model": "entities.person", "pk": 93705, "fields": {"first_name": "Ernst Edward Aurel", "gender": "male", "text": [47596, 47597], "collection": [29], "profession": [149, 227], "title": []}}, {"model": "entities.person", "pk": 93714, "fields": {"first_name": "Janez Nep.", "gender": "male", "text": [47602, 47603], "collection": [29], "profession": [141, 225], "title": []}}, {"model": "entities.person", "pk": 93748, "fields": {"first_name": "Lukas", "gender": "male", "text": [47614, 47615], "collection": [29], "profession": [143, 224], "title": []}}, {"model": "entities.person", "pk": 93779, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47626, 47627], "collection": [29], "profession": [139, 223], "title": []}}, {"model": "entities.person", "pk": 93785, "fields": {"first_name": "Wilhelm Anton Maria", "gender": "male", "text": [47630, 47631], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93791, "fields": {"first_name": "Eugen", "gender": "male", "text": [47634, 47635], "collection": [29], "profession": [139, 161], "title": []}}, {"model": "entities.person", "pk": 93800, "fields": {"first_name": "P. Anton Maria", "gender": "male", "text": [47640, 47641], "collection": [29], "profession": [141, 219], "title": []}}, {"model": "entities.person", "pk": 93803, "fields": {"first_name": "Johann", "gender": "male", "text": [47642, 47643], "collection": [29], "profession": [149, 188, 220], "title": []}}, {"model": "entities.person", "pk": 93809, "fields": {"first_name": "Kaspar", "gender": "male", "text": [47644, 47645], "collection": [29], "profession": [134, 137, 221], "title": []}}, {"model": "entities.person", "pk": 93815, "fields": {"first_name": "Leopold Albrecht", "gender": "male", "text": [47648, 47649], "collection": [29], "profession": [128, 222], "title": []}}, {"model": "entities.person", "pk": 93818, "fields": {"first_name": "Franz", "gender": "male", "text": [47650, 47651], "collection": [29], "profession": [217, 218], "title": []}}, {"model": "entities.person", "pk": 93836, "fields": {"first_name": "Edmund", "gender": "male", "text": [47660, 47661], "collection": [29], "profession": [151, 216], "title": []}}, {"model": "entities.person", "pk": 93839, "fields": {"first_name": "Leopold", "gender": "male", "text": [47662, 47663], "collection": [29], "profession": [139, 215], "title": []}}, {"model": "entities.person", "pk": 93854, "fields": {"first_name": "Johann", "gender": "male", "text": [47672, 47673], "collection": [29], "profession": [157, 167], "title": []}}, {"model": "entities.person", "pk": 93863, "fields": {"first_name": "Franz", "gender": "male", "text": [47676, 47677], "collection": [29], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93866, "fields": {"first_name": "Johann", "gender": "male", "text": [47678, 47679], "collection": [29], "profession": [151, 214], "title": []}}, {"model": "entities.person", "pk": 93878, "fields": {"first_name": "Joseph", "gender": "male", "text": [47684, 47685], "collection": [29], "profession": [132, 134, 213], "title": []}}, {"model": "entities.person", "pk": 93891, "fields": {"first_name": "Adolf Frh. von", "gender": "male", "text": [47688, 47689], "collection": [29], "profession": [143, 146, 211], "title": []}}, {"model": "entities.person", "pk": 93894, "fields": {"first_name": "Benno", "gender": "male", "text": [47690, 47691], "collection": [29], "profession": [151, 212], "title": []}}, {"model": "entities.person", "pk": 93900, "fields": {"first_name": "Julius", "gender": "male", "text": [47694, 47695], "collection": [29], "profession": [154, 208], "title": []}}, {"model": "entities.person", "pk": 93903, "fields": {"first_name": "Alfred", "gender": "male", "text": [47696, 47697], "collection": [29], "profession": [132, 146, 209], "title": []}}, {"model": "entities.person", "pk": 93909, "fields": {"first_name": "Gustav Adolph von", "gender": "male", "text": [47700, 47701], "collection": [29], "profession": [137, 210], "title": []}}, {"model": "entities.person", "pk": 93921, "fields": {"first_name": "Leopold", "gender": "male", "text": [47706, 47707], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93933, "fields": {"first_name": "Joseph", "gender": "male", "text": [47712, 47713], "collection": [29], "profession": [151, 207], "title": []}}, {"model": "entities.person", "pk": 93940, "fields": {"first_name": "Anton", "gender": "male", "text": [47714, 47715], "collection": [29], "profession": [134, 137, 206], "title": []}}, {"model": "entities.person", "pk": 93946, "fields": {"first_name": "Johannes Adolf", "gender": "male", "text": [47718, 47719], "collection": [29], "profession": [128, 174], "title": []}}, {"model": "entities.person", "pk": 93955, "fields": {"first_name": "Louis", "gender": "male", "text": [47724, 47725], "collection": [29], "profession": [128, 188, 205], "title": []}}, {"model": "entities.person", "pk": 93958, "fields": {"first_name": "Josef", "gender": "male", "text": [47726, 47727], "collection": [29], "profession": [149, 204], "title": []}}, {"model": "entities.person", "pk": 93961, "fields": {"first_name": "Josef Franz Georg", "gender": "male", "text": [47728, 47729], "collection": [29], "profession": [128, 151, 203], "title": []}}, {"model": "entities.person", "pk": 93964, "fields": {"first_name": "Jakub", "gender": "male", "text": [47730, 47731], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93967, "fields": {"first_name": "Karl", "gender": "male", "text": [47732, 47733], "collection": [29], "profession": [137, 201], "title": []}}, {"model": "entities.person", "pk": 93970, "fields": {"first_name": "Samuel Leopold", "gender": "male", "text": [47734, 47735], "collection": [29], "profession": [154, 202], "title": []}}, {"model": "entities.person", "pk": 93988, "fields": {"first_name": "Art\u00far", "gender": "male", "text": [47746, 47747], "collection": [29], "profession": [139, 140], "title": []}}, {"model": "entities.person", "pk": 93991, "fields": {"first_name": "Emanuel Maria Gf. von", "gender": "male", "text": [47748, 47749], "collection": [29], "profession": [141, 235], "title": []}}, {"model": "entities.person", "pk": 94003, "fields": {"first_name": "Ernst Maximilian Frh. von", "gender": "male", "text": [47754, 47755], "collection": [29], "profession": [128, 146, 233], "title": []}}, {"model": "entities.person", "pk": 94006, "fields": {"first_name": "Kazimierz", "gender": "male", "text": [47756, 47757], "collection": [29], "profession": [128, 129], "title": []}}, {"model": "entities.person", "pk": 94009, "fields": {"first_name": "Emmerich", "gender": "male", "text": [47758, 47759], "collection": [29], "profession": [166, 234], "title": []}}, {"model": "entities.person", "pk": 94018, "fields": {"first_name": "Richard", "gender": "male", "text": [47764, 47765], "collection": [29], "profession": [151, 232], "title": []}}, {"model": "entities.place", "pk": 26, "fields": {"kind": 9, "lat": 45.33917, "lng": 14.30833, "text": [11225], "collection": []}}, {"model": "entities.place", "pk": 133, "fields": {"kind": 12, "lat": 45.81444, "lng": 15.97798, "text": [11275], "collection": []}}, {"model": "entities.place", "pk": 183, "fields": {"kind": 12, "lat": 48.20849, "lng": 16.37208, "text": [11203], "collection": []}}, {"model": "entities.place", "pk": 327, "fields": {"kind": 13, "lat": 49.19522, "lng": 16.60796, "text": [11259], "collection": []}}, {"model": "entities.place", "pk": 384, "fields": {"kind": 9, "lat": 49.19627, "lng": 13.50926, "text": [11284], "collection": []}}, {"model": "entities.place", "pk": 400, "fields": {"kind": 12, "lat": 47.49801, "lng": 19.03991, "text": [11223], "collection": []}}, {"model": "entities.place", "pk": 831, "fields": {"kind": 12, "lat": 44.43225, "lng": 26.10626, "text": [11242, 11243], "collection": []}}, {"model": "entities.place", "pk": 926, "fields": {"kind": 5, "lat": 48.00543, "lng": 16.23264, "text": [11313, 11314], "collection": []}}, {"model": "entities.place", "pk": 1390, "fields": {"kind": 12, "lat": 52.52437, "lng": 13.41053, "text": [11226, 11227], "collection": []}}, {"model": "entities.place", "pk": 1424, "fields": {"kind": 13, "lat": 50.76711, "lng": 15.05619, "text": [11258], "collection": []}}, {"model": "entities.place", "pk": 1454, "fields": {"kind": 5, "lat": 47.38478, "lng": 9.90139, "text": [11337, 11338], "collection": []}}, {"model": "entities.place", "pk": 1701, "fields": {"kind": 9, "lat": 46.69111, "lng": 13.97111, "text": [11271], "collection": []}}, {"model": "entities.place", "pk": 1718, "fields": {"kind": 5, "lat": 49.13995, "lng": 9.22054, "text": [11269, 11270], "collection": []}}, {"model": "entities.place", "pk": 2006, "fields": {"kind": 13, "lat": 47.75, "lng": 26.66667, "text": [11251], "collection": []}}, {"model": "entities.place", "pk": 2072, "fields": {"kind": 12, "lat": 48.14816, "lng": 17.10674, "text": [11220], "collection": []}}, {"model": "entities.place", "pk": 2085, "fields": {"kind": 9, "lat": 50.58566, "lng": 16.33181, "text": [11272], "collection": []}}, {"model": "entities.place", "pk": 2161, "fields": {"kind": 13, "lat": 51.1, "lng": 17.03333, "text": [11199], "collection": []}}, {"model": "entities.place", "pk": 2170, "fields": {"kind": 5, "lat": 46.71503, "lng": 11.65598, "text": [11279], "collection": []}}, {"model": "entities.place", "pk": 2197, "fields": {"kind": 13, "lat": 50.20923, "lng": 15.83277, "text": [11204], "collection": []}}, {"model": "entities.place", "pk": 2281, "fields": {"kind": 11, "lat": 50.08791, "lng": 25.15027, "text": [11244, 11245], "collection": []}}, {"model": "entities.place", "pk": 2489, "fields": {"kind": 12, "lat": -34.61315, "lng": -58.37723, "text": [11256, 11257], "collection": []}}, {"model": "entities.place", "pk": 2602, "fields": {"kind": 5, "lat": 46.41326, "lng": 11.24616, "text": [11252], "collection": []}}, {"model": "entities.place", "pk": 2854, "fields": {"kind": 13, "lat": 48.29149, "lng": 25.94034, "text": [11224], "collection": []}}, {"model": "entities.place", "pk": 3105, "fields": {"kind": 5, "lat": 49.75133, "lng": 18.63213, "text": [11260], "collection": []}}, {"model": "entities.place", "pk": 3162, "fields": {"kind": 13, "lat": 46.76667, "lng": 23.6, "text": [11330], "collection": []}}, {"model": "entities.place", "pk": 4096, "fields": {"kind": 5, "lat": 50.80434, "lng": 6.49299, "text": [11299, 11300], "collection": []}}, {"model": "entities.place", "pk": 4269, "fields": {"kind": 9, "lat": 50.4406, "lng": 13.45738, "text": [11231], "collection": []}}, {"model": "entities.place", "pk": 4767, "fields": {"kind": 13, "lat": 47.06667, "lng": 15.45, "text": [11210, 11211], "collection": []}}, {"model": "entities.place", "pk": 4877, "fields": {"kind": 9, "lat": 48.51103, "lng": 14.50453, "text": [11319, 11320], "collection": []}}, {"model": "entities.place", "pk": 5294, "fields": {"kind": 11, "lat": 45.9, "lng": 25.85, "text": [11246], "collection": []}}, {"model": "entities.place", "pk": 5308, "fields": {"kind": 10, "lat": 51.08317, "lng": 7.53087, "text": [11289, 11290], "collection": []}}, {"model": "entities.place", "pk": 5478, "fields": {"kind": 11, "lat": 45.94088, "lng": 13.62167, "text": [11303], "collection": []}}, {"model": "entities.place", "pk": 5691, "fields": {"kind": 5, "lat": 46.66817, "lng": 11.15953, "text": [11326], "collection": []}}, {"model": "entities.place", "pk": 5749, "fields": {"kind": 11, "lat": 48.23333, "lng": 13.83333, "text": [11229, 11230], "collection": []}}, {"model": "entities.place", "pk": 6004, "fields": {"kind": 9, "lat": 50.03197, "lng": 17.04058, "text": [11294], "collection": []}}, {"model": "entities.place", "pk": 6324, "fields": {"kind": 13, "lat": 52.37052, "lng": 9.73322, "text": [11221, 11222], "collection": []}}, {"model": "entities.place", "pk": 6700, "fields": {"kind": 13, "lat": 47.26266, "lng": 11.39454, "text": [11235, 11236], "collection": []}}, {"model": "entities.place", "pk": 6947, "fields": {"kind": 9, "lat": 46.61472, "lng": 16.08583, "text": [11278], "collection": []}}, {"model": "entities.place", "pk": 7454, "fields": {"kind": 11, "lat": 50.20528, "lng": 19.27498, "text": [11336], "collection": []}}, {"model": "entities.place", "pk": 7622, "fields": {"kind": 5, "lat": 47.3765, "lng": 15.09144, "text": [11249, 11250], "collection": []}}, {"model": "entities.place", "pk": 7986, "fields": {"kind": 11, "lat": 51.31667, "lng": 9.5, "text": [11218, 11219], "collection": []}}, {"model": "entities.place", "pk": 8482, "fields": {"kind": 5, "lat": 48.30521, "lng": 16.32522, "text": [11322, 11323], "collection": []}}, {"model": "entities.place", "pk": 8798, "fields": {"kind": 5, "lat": 47.66033, "lng": 9.17582, "text": [11301, 11302], "collection": []}}, {"model": "entities.place", "pk": 9287, "fields": {"kind": 5, "lat": 47.58333, "lng": 12.16667, "text": [11324, 11325], "collection": []}}, {"model": "entities.place", "pk": 9455, "fields": {"kind": 9, "lat": 50.08364, "lng": 13.03925, "text": [11288], "collection": []}}, {"model": "entities.place", "pk": 9475, "fields": {"kind": 12, "lat": 46.05108, "lng": 14.50513, "text": [11331], "collection": []}}, {"model": "entities.place", "pk": 9735, "fields": {"kind": 13, "lat": 49.83826, "lng": 24.02324, "text": [11263], "collection": []}}, {"model": "entities.place", "pk": 10015, "fields": {"kind": 13, "lat": 48.30639, "lng": 14.28611, "text": [11195, 11196], "collection": []}}, {"model": "entities.place", "pk": 10265, "fields": {"kind": 12, "lat": 51.50853, "lng": -0.12574, "text": [11239, 11240], "collection": []}}, {"model": "entities.place", "pk": 10793, "fields": {"kind": 13, "lat": 46.55472, "lng": 15.64667, "text": [11266], "collection": []}}, {"model": "entities.place", "pk": 11238, "fields": {"kind": 9, "lat": 49.75565, "lng": 12.997, "text": [11234], "collection": []}}, {"model": "entities.place", "pk": 11556, "fields": {"kind": 9, "lat": 50.72063, "lng": 13.65723, "text": [11308], "collection": []}}, {"model": "entities.place", "pk": 11799, "fields": {"kind": 13, "lat": 48.13743, "lng": 11.57549, "text": [11197, 11198], "collection": []}}, {"model": "entities.place", "pk": 12211, "fields": {"kind": 11, "lat": 50.47379, "lng": 17.33437, "text": [11321], "collection": []}}, {"model": "entities.place", "pk": 12758, "fields": {"kind": 11, "lat": 43.70313, "lng": 7.26608, "text": [11205], "collection": []}}, {"model": "entities.place", "pk": 13253, "fields": {"kind": 9, "lat": 47.68501, "lng": 16.59049, "text": [11344], "collection": []}}, {"model": "entities.place", "pk": 13382, "fields": {"kind": 13, "lat": 49.59552, "lng": 17.25175, "text": [11228], "collection": []}}, {"model": "entities.place", "pk": 13714, "fields": {"kind": 12, "lat": 48.85341, "lng": 2.3488, "text": [11291, 11292], "collection": []}}, {"model": "entities.place", "pk": 13987, "fields": {"kind": 10, "lat": 47.91232, "lng": 12.81512, "text": [11280, 11281], "collection": []}}, {"model": "entities.place", "pk": 14608, "fields": {"kind": 12, "lat": 50.08804, "lng": 14.42076, "text": [11200], "collection": []}}, {"model": "entities.place", "pk": 16242, "fields": {"kind": 9, "lat": 48.25216, "lng": 17.21539, "text": [11214], "collection": []}}, {"model": "entities.place", "pk": 16310, "fields": {"kind": 5, "lat": 46.586, "lng": 11.08571, "text": [11327], "collection": []}}, {"model": "entities.place", "pk": 16594, "fields": {"kind": 9, "lat": 49.96122, "lng": 16.76576, "text": [11293], "collection": []}}, {"model": "entities.place", "pk": 16864, "fields": {"kind": 5, "lat": 46.75833, "lng": 15.20833, "text": [11286, 11287], "collection": []}}, {"model": "entities.place", "pk": 18374, "fields": {"kind": 9, "lat": 50.2421, "lng": 19.30725, "text": [11241], "collection": []}}, {"model": "entities.place", "pk": 18400, "fields": {"kind": 13, "lat": 46.253, "lng": 20.14824, "text": [11351], "collection": []}}, {"model": "entities.place", "pk": 19215, "fields": {"kind": 13, "lat": 46.06787, "lng": 11.12108, "text": [11348], "collection": []}}, {"model": "entities.place", "pk": 19599, "fields": {"kind": 9, "lat": 48.20735, "lng": 18.06581, "text": [11285], "collection": []}}, {"model": "entities.place", "pk": 20549, "fields": {"kind": 12, "lat": 52.22977, "lng": 21.01178, "text": [11345], "collection": []}}, {"model": "entities.place", "pk": 20659, "fields": {"kind": 5, "lat": 44.8975, "lng": 21.41722, "text": [11255], "collection": []}}, {"model": "entities.place", "pk": 20872, "fields": {"kind": 5, "lat": 47.11547, "lng": 13.13467, "text": [11339], "collection": []}}, {"model": "entities.place", "pk": 20988, "fields": {"kind": 9, "lat": 51.02308, "lng": -0.50604, "text": [11304, 11305], "collection": []}}, {"model": "entities.place", "pk": 21818, "fields": {"kind": 9, "lat": 49.75594, "lng": 16.46829, "text": [11215], "collection": []}}, {"model": "entities.place", "pk": 22216, "fields": {"kind": 9, "lat": 49.01898, "lng": 15.56994, "text": [11206, 11207], "collection": []}}, {"model": "entities.place", "pk": 22259, "fields": {"kind": 9, "lat": 46.83333, "lng": 12.85, "text": [11261, 11262], "collection": []}}, {"model": "entities.place", "pk": 22322, "fields": {"kind": 9, "lat": 47.97234, "lng": 14.26472, "text": [11237, 11238], "collection": []}}, {"model": "entities.place", "pk": 22354, "fields": {"kind": 11, "lat": 47.34999, "lng": 7.90329, "text": [11253, 11254], "collection": []}}, {"model": "entities.place", "pk": 22475, "fields": {"kind": 5, "lat": 49.8414, "lng": 7.86713, "text": [11311, 11312], "collection": []}}, {"model": "entities.place", "pk": 22494, "fields": {"kind": 9, "lat": 48.47121, "lng": 14.54023, "text": [11317, 11318], "collection": []}}, {"model": "entities.place", "pk": 22526, "fields": {"kind": 13, "lat": 46.80237, "lng": 7.15128, "text": [11334, 11335], "collection": []}}, {"model": "entities.place", "pk": 22545, "fields": {"kind": 11, "lat": 45.37333, "lng": 21.70917, "text": [11342, 11343], "collection": []}}, {"model": "entities.place", "pk": 22558, "fields": {"kind": 9, "lat": 49.46656, "lng": 19.9825, "text": [11346, 11347], "collection": []}}, {"model": "entities.place", "pk": 22570, "fields": {"kind": 5, "lat": 46.07867, "lng": 10.99735, "text": [11349, 11350], "collection": []}}, {"model": "entities.place", "pk": 93025, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93035, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93051, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93060, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93075, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93379, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93397, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93410, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93449, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93562, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93610, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93658, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93715, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93749, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93804, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93855, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93879, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93934, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.place", "pk": 93937, "fields": {"kind": null, "lat": null, "lng": null, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111335, "fields": {"kind": 400, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111348, "fields": {"kind": 400, "text": [], "collection": []}}, {"model": "entities.event", "pk": 111365, "fields": {"kind": 380, "text": [], "collection": []}}, {"model": "vocabularies.vocabnames", "pk": 1, "fields": {"name": "ProfessionType"}}, {"model": "vocabularies.vocabnames", "pk": 2, "fields": {"name": "PersonPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 5, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "vocabularies.vocabnames", "pk": 6, "fields": {"name": "PersonPersonRelation"}}, {"model": "vocabularies.vocabnames", "pk": 7, "fields": {"name": "TextType"}}, {"model": "vocabularies.vocabnames", "pk": 8, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "vocabularies.vocabnames", "pk": 9, "fields": {"name": "InstitutionType"}}, {"model": "vocabularies.vocabnames", "pk": 10, "fields": {"name": "PlaceType"}}, {"model": "vocabularies.vocabnames", "pk": 11, "fields": {"name": "CollectionType"}}, {"model": "vocabularies.vocabnames", "pk": 12, "fields": {"name": "PlaceEventRelation"}}, {"model": "relations.personperson", "pk": 92840, "fields": {"relation_type": 5608, "related_persona": 92412, "related_personb": 92603, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92930, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88902, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92931, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 27245, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92932, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 88219, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92933, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 62757, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92934, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 56248, "text": [], "collection": []}}, {"model": "relations.personperson", "pk": 92935, "fields": {"relation_type": 5608, "related_persona": 92603, "related_personb": 46414, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46415, "fields": {"relation_type": 595, "related_person": 46414, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 46416, "fields": {"relation_type": 596, "related_person": 46414, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 56249, "fields": {"relation_type": 595, "related_person": 56248, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 88904, "fields": {"relation_type": 596, "related_person": 88902, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92415, "fields": {"relation_type": 595, "related_person": 92412, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92604, "fields": {"relation_type": 595, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 92605, "fields": {"relation_type": 596, "related_person": 92603, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93004, "fields": {"relation_type": 595, "related_person": 93003, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93005, "fields": {"relation_type": 596, "related_person": 93003, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93010, "fields": {"relation_type": 595, "related_person": 93009, "related_place": 18374, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93011, "fields": {"relation_type": 596, "related_person": 93009, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93013, "fields": {"relation_type": 595, "related_person": 93012, "related_place": 5294, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93014, "fields": {"relation_type": 596, "related_person": 93012, "related_place": 2489, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93016, "fields": {"relation_type": 595, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93017, "fields": {"relation_type": 596, "related_person": 93015, "related_place": 327, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93019, "fields": {"relation_type": 595, "related_person": 93018, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93020, "fields": {"relation_type": 596, "related_person": 93018, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93022, "fields": {"relation_type": 595, "related_person": 93021, "related_place": 16242, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93023, "fields": {"relation_type": 596, "related_person": 93021, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93026, "fields": {"relation_type": 595, "related_person": 93024, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93027, "fields": {"relation_type": 596, "related_person": 93024, "related_place": 93025, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93029, "fields": {"relation_type": 595, "related_person": 93028, "related_place": 7986, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93030, "fields": {"relation_type": 596, "related_person": 93028, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93032, "fields": {"relation_type": 595, "related_person": 93031, "related_place": 6324, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93033, "fields": {"relation_type": 596, "related_person": 93031, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93036, "fields": {"relation_type": 595, "related_person": 93034, "related_place": 93035, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93037, "fields": {"relation_type": 596, "related_person": 93034, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93045, "fields": {"relation_type": 595, "related_person": 93044, "related_place": 2161, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93046, "fields": {"relation_type": 596, "related_person": 93044, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93048, "fields": {"relation_type": 595, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93049, "fields": {"relation_type": 596, "related_person": 93047, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93054, "fields": {"relation_type": 595, "related_person": 93050, "related_place": 93051, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93055, "fields": {"relation_type": 596, "related_person": 93050, "related_place": 2197, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93057, "fields": {"relation_type": 595, "related_person": 93056, "related_place": 22216, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93058, "fields": {"relation_type": 596, "related_person": 93056, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93063, "fields": {"relation_type": 595, "related_person": 93059, "related_place": 93060, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93064, "fields": {"relation_type": 596, "related_person": 93059, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93066, "fields": {"relation_type": 595, "related_person": 93065, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93067, "fields": {"relation_type": 596, "related_person": 93065, "related_place": 1701, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93069, "fields": {"relation_type": 595, "related_person": 93068, "related_place": 1718, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93070, "fields": {"relation_type": 596, "related_person": 93068, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93072, "fields": {"relation_type": 595, "related_person": 93071, "related_place": 22259, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93073, "fields": {"relation_type": 596, "related_person": 93071, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93078, "fields": {"relation_type": 595, "related_person": 93074, "related_place": 93075, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93079, "fields": {"relation_type": 596, "related_person": 93074, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93137, "fields": {"relation_type": 595, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93138, "fields": {"relation_type": 596, "related_person": 93136, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93329, "fields": {"relation_type": 595, "related_person": 93328, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93330, "fields": {"relation_type": 596, "related_person": 93328, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93338, "fields": {"relation_type": 595, "related_person": 93337, "related_place": 4269, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93339, "fields": {"relation_type": 596, "related_person": 93337, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93353, "fields": {"relation_type": 595, "related_person": 93352, "related_place": 5749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93354, "fields": {"relation_type": 596, "related_person": 93352, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93367, "fields": {"relation_type": 595, "related_person": 93366, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93368, "fields": {"relation_type": 596, "related_person": 93366, "related_place": 26, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93370, "fields": {"relation_type": 595, "related_person": 93369, "related_place": 13382, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93371, "fields": {"relation_type": 596, "related_person": 93369, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93382, "fields": {"relation_type": 595, "related_person": 93378, "related_place": 93379, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93383, "fields": {"relation_type": 596, "related_person": 93378, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93388, "fields": {"relation_type": 595, "related_person": 93387, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93389, "fields": {"relation_type": 596, "related_person": 93387, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93394, "fields": {"relation_type": 595, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93395, "fields": {"relation_type": 596, "related_person": 93393, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93398, "fields": {"relation_type": 595, "related_person": 93396, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93399, "fields": {"relation_type": 596, "related_person": 93396, "related_place": 93397, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93401, "fields": {"relation_type": 595, "related_person": 93400, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93402, "fields": {"relation_type": 596, "related_person": 93400, "related_place": 12758, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93413, "fields": {"relation_type": 595, "related_person": 93409, "related_place": 93410, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93414, "fields": {"relation_type": 596, "related_person": 93409, "related_place": 133, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93416, "fields": {"relation_type": 595, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93417, "fields": {"relation_type": 596, "related_person": 93415, "related_place": 2085, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93419, "fields": {"relation_type": 595, "related_person": 93418, "related_place": 22354, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93420, "fields": {"relation_type": 596, "related_person": 93418, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93443, "fields": {"relation_type": 595, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93444, "fields": {"relation_type": 596, "related_person": 93442, "related_place": 2602, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93446, "fields": {"relation_type": 595, "related_person": 93445, "related_place": 2006, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93447, "fields": {"relation_type": 596, "related_person": 93445, "related_place": 7622, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93452, "fields": {"relation_type": 595, "related_person": 93448, "related_place": 93449, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93453, "fields": {"relation_type": 596, "related_person": 93448, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93470, "fields": {"relation_type": 595, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93471, "fields": {"relation_type": 596, "related_person": 93469, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93482, "fields": {"relation_type": 595, "related_person": 93481, "related_place": 2281, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93483, "fields": {"relation_type": 596, "related_person": 93481, "related_place": 831, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93485, "fields": {"relation_type": 595, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93486, "fields": {"relation_type": 596, "related_person": 93484, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93488, "fields": {"relation_type": 595, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93489, "fields": {"relation_type": 596, "related_person": 93487, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93511, "fields": {"relation_type": 595, "related_person": 93510, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93512, "fields": {"relation_type": 596, "related_person": 93510, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93514, "fields": {"relation_type": 595, "related_person": 93513, "related_place": 22322, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93515, "fields": {"relation_type": 596, "related_person": 93513, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93517, "fields": {"relation_type": 595, "related_person": 93516, "related_place": 20659, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93518, "fields": {"relation_type": 596, "related_person": 93516, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93541, "fields": {"relation_type": 595, "related_person": 93540, "related_place": 1424, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93542, "fields": {"relation_type": 596, "related_person": 93540, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93547, "fields": {"relation_type": 595, "related_person": 93546, "related_place": 2072, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93548, "fields": {"relation_type": 596, "related_person": 93546, "related_place": 6700, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93565, "fields": {"relation_type": 595, "related_person": 93561, "related_place": 93562, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93566, "fields": {"relation_type": 596, "related_person": 93561, "related_place": 10793, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93574, "fields": {"relation_type": 595, "related_person": 93573, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93575, "fields": {"relation_type": 596, "related_person": 93573, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93589, "fields": {"relation_type": 595, "related_person": 93588, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93590, "fields": {"relation_type": 596, "related_person": 93588, "related_place": 1390, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93601, "fields": {"relation_type": 595, "related_person": 93600, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93602, "fields": {"relation_type": 596, "related_person": 93600, "related_place": 3105, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93613, "fields": {"relation_type": 595, "related_person": 93609, "related_place": 13987, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93614, "fields": {"relation_type": 596, "related_person": 93609, "related_place": 93610, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93616, "fields": {"relation_type": 595, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93617, "fields": {"relation_type": 596, "related_person": 93615, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93640, "fields": {"relation_type": 595, "related_person": 93639, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93641, "fields": {"relation_type": 596, "related_person": 93639, "related_place": 2170, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93643, "fields": {"relation_type": 595, "related_person": 93642, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93644, "fields": {"relation_type": 596, "related_person": 93642, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93646, "fields": {"relation_type": 595, "related_person": 93645, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93647, "fields": {"relation_type": 596, "related_person": 93645, "related_place": 6947, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93652, "fields": {"relation_type": 595, "related_person": 93651, "related_place": 21818, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93653, "fields": {"relation_type": 596, "related_person": 93651, "related_place": 2854, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93655, "fields": {"relation_type": 595, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93656, "fields": {"relation_type": 596, "related_person": 93654, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93661, "fields": {"relation_type": 595, "related_person": 93657, "related_place": 93658, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93662, "fields": {"relation_type": 596, "related_person": 93657, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93664, "fields": {"relation_type": 595, "related_person": 93663, "related_place": 22545, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93665, "fields": {"relation_type": 596, "related_person": 93663, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93679, "fields": {"relation_type": 595, "related_person": 93678, "related_place": 1454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93680, "fields": {"relation_type": 596, "related_person": 93678, "related_place": 20872, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93685, "fields": {"relation_type": 595, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93686, "fields": {"relation_type": 596, "related_person": 93684, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93703, "fields": {"relation_type": 595, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93704, "fields": {"relation_type": 596, "related_person": 93702, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93706, "fields": {"relation_type": 595, "related_person": 93705, "related_place": 7454, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93707, "fields": {"relation_type": 596, "related_person": 93705, "related_place": 22526, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93718, "fields": {"relation_type": 595, "related_person": 93714, "related_place": 93715, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93719, "fields": {"relation_type": 596, "related_person": 93714, "related_place": 9475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93752, "fields": {"relation_type": 595, "related_person": 93748, "related_place": 93749, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93753, "fields": {"relation_type": 596, "related_person": 93748, "related_place": 3162, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93780, "fields": {"relation_type": 595, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93781, "fields": {"relation_type": 596, "related_person": 93779, "related_place": 9735, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93786, "fields": {"relation_type": 595, "related_person": 93785, "related_place": 16310, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93787, "fields": {"relation_type": 596, "related_person": 93785, "related_place": 5691, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93792, "fields": {"relation_type": 595, "related_person": 93791, "related_place": 9287, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93793, "fields": {"relation_type": 596, "related_person": 93791, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93801, "fields": {"relation_type": 595, "related_person": 93800, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93802, "fields": {"relation_type": 596, "related_person": 93800, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93807, "fields": {"relation_type": 595, "related_person": 93803, "related_place": 93804, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93808, "fields": {"relation_type": 596, "related_person": 93803, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93810, "fields": {"relation_type": 595, "related_person": 93809, "related_place": 22494, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93811, "fields": {"relation_type": 596, "related_person": 93809, "related_place": 4877, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93816, "fields": {"relation_type": 595, "related_person": 93815, "related_place": 12211, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93817, "fields": {"relation_type": 596, "related_person": 93815, "related_place": 8482, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93819, "fields": {"relation_type": 595, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93820, "fields": {"relation_type": 596, "related_person": 93818, "related_place": 926, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93837, "fields": {"relation_type": 595, "related_person": 93836, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93838, "fields": {"relation_type": 596, "related_person": 93836, "related_place": 22475, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93840, "fields": {"relation_type": 595, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93841, "fields": {"relation_type": 596, "related_person": 93839, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93858, "fields": {"relation_type": 595, "related_person": 93854, "related_place": 93855, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93859, "fields": {"relation_type": 596, "related_person": 93854, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93864, "fields": {"relation_type": 595, "related_person": 93863, "related_place": 11556, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93865, "fields": {"relation_type": 596, "related_person": 93863, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93867, "fields": {"relation_type": 595, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93868, "fields": {"relation_type": 596, "related_person": 93866, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93880, "fields": {"relation_type": 595, "related_person": 93878, "related_place": 93879, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93881, "fields": {"relation_type": 596, "related_person": 93878, "related_place": 4767, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93892, "fields": {"relation_type": 595, "related_person": 93891, "related_place": 8798, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93893, "fields": {"relation_type": 596, "related_person": 93891, "related_place": 5478, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93895, "fields": {"relation_type": 595, "related_person": 93894, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93896, "fields": {"relation_type": 596, "related_person": 93894, "related_place": 20988, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93901, "fields": {"relation_type": 595, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93902, "fields": {"relation_type": 596, "related_person": 93900, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93904, "fields": {"relation_type": 595, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93905, "fields": {"relation_type": 596, "related_person": 93903, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93910, "fields": {"relation_type": 595, "related_person": 93909, "related_place": 4096, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93911, "fields": {"relation_type": 596, "related_person": 93909, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93922, "fields": {"relation_type": 595, "related_person": 93921, "related_place": 11238, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93923, "fields": {"relation_type": 596, "related_person": 93921, "related_place": 11799, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93938, "fields": {"relation_type": 595, "related_person": 93933, "related_place": 93934, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93939, "fields": {"relation_type": 596, "related_person": 93933, "related_place": 93937, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93941, "fields": {"relation_type": 595, "related_person": 93940, "related_place": 16594, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93942, "fields": {"relation_type": 596, "related_person": 93940, "related_place": 6004, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93947, "fields": {"relation_type": 595, "related_person": 93946, "related_place": 5308, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93948, "fields": {"relation_type": 596, "related_person": 93946, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93956, "fields": {"relation_type": 595, "related_person": 93955, "related_place": 13714, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93957, "fields": {"relation_type": 596, "related_person": 93955, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93959, "fields": {"relation_type": 595, "related_person": 93958, "related_place": 9455, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93960, "fields": {"relation_type": 596, "related_person": 93958, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93962, "fields": {"relation_type": 595, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93963, "fields": {"relation_type": 596, "related_person": 93961, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93965, "fields": {"relation_type": 595, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93966, "fields": {"relation_type": 596, "related_person": 93964, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93968, "fields": {"relation_type": 595, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93969, "fields": {"relation_type": 596, "related_person": 93967, "related_place": 384, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93971, "fields": {"relation_type": 595, "related_person": 93970, "related_place": 19599, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93972, "fields": {"relation_type": 596, "related_person": 93970, "related_place": 16864, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93989, "fields": {"relation_type": 595, "related_person": 93988, "related_place": 18400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93990, "fields": {"relation_type": 596, "related_person": 93988, "related_place": 400, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93992, "fields": {"relation_type": 595, "related_person": 93991, "related_place": 19215, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 93993, "fields": {"relation_type": 596, "related_person": 93991, "related_place": 22570, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94004, "fields": {"relation_type": 595, "related_person": 94003, "related_place": 13253, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94005, "fields": {"relation_type": 596, "related_person": 94003, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94007, "fields": {"relation_type": 595, "related_person": 94006, "related_place": 22558, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94008, "fields": {"relation_type": 596, "related_person": 94006, "related_place": 20549, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94010, "fields": {"relation_type": 595, "related_person": 94009, "related_place": 14608, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94011, "fields": {"relation_type": 596, "related_person": 94009, "related_place": 183, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94019, "fields": {"relation_type": 595, "related_person": 94018, "related_place": 10015, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 94020, "fields": {"relation_type": 596, "related_person": 94018, "related_place": 10265, "text": [], "collection": []}}, {"model": "relations.personplace", "pk": 98116, "fields": {"relation_type": 595, "related_person": null, "related_place": null, "text": [], "collection": []}}, {"model": "relations.personinstitution", "pk": 99591, "fields": {"relation_type": null, "related_person": null, "related_institution": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 26, "fields": {"name": "Opatija", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11225], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 133, "fields": {"name": "Zagreb", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11275], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 183, "fields": {"name": "Wien", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11203], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 327, "fields": {"name": "Br\u00fcnn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11259], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 384, "fields": {"name": "Dlouh\u00e1 Ves", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11284], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 400, "fields": {"name": "Budapest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11223], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 831, "fields": {"name": "Bukarest", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11242, 11243], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 926, "fields": {"name": "Baden", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11313, 11314], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1390, "fields": {"name": "Berlin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11226, 11227], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1424, "fields": {"name": "Liberec", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11258], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1454, "fields": {"name": "Bezau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11337, 11338], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1701, "fields": {"name": "Bodensdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11271], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 1718, "fields": {"name": "Heilbronn", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11269, 11270], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2006, "fields": {"name": "Boto\u015fani", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11251], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2072, "fields": {"name": "Pressburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11220], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2085, "fields": {"name": "Braunau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11272], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2161, "fields": {"name": "Breslau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11199], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2170, "fields": {"name": "Brixen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11279], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2197, "fields": {"name": "K\u00f6niggr\u00e4tz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11204], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2281, "fields": {"name": "Brody", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11244, 11245], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2489, "fields": {"name": "Buenos Aires", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11256, 11257], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2602, "fields": {"name": "Kaltern an der Weinstrasse", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11252], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 2854, "fields": {"name": "Tschernowitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11224], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3105, "fields": {"name": "Teschen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11260], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 3162, "fields": {"name": "Klausenburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11330], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4096, "fields": {"name": "D\u00fcren", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11299, 11300], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4269, "fields": {"name": "\u00dadlice", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11231], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4767, "fields": {"name": "Graz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11210, 11211], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 4877, "fields": {"name": "Freistadt", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11319, 11320], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5294, "fields": {"name": "Ghidfal\u0103u", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11246], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5308, "fields": {"name": "Marienheide", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11289, 11290], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5478, "fields": {"name": "G\u00f6rz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11303], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5691, "fields": {"name": "Meran", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11326], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 5749, "fields": {"name": "Grieskirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11229, 11230], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6004, "fields": {"name": "Grossullersdorf", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11294], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6324, "fields": {"name": "Hannover", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11221, 11222], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6700, "fields": {"name": "Innsbruck", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11235, 11236], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 6947, "fields": {"name": "Hrastje-Mota", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11278], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7454, "fields": {"name": "Jaworzno", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11336], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7622, "fields": {"name": "Leoben", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11249, 11250], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 7986, "fields": {"name": "Cassel", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11218, 11219], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8482, "fields": {"name": "Klosterneuburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11322, 11323], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 8798, "fields": {"name": "Konstanz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11301, 11302], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9287, "fields": {"name": "Kufstein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11324, 11325], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9455, "fields": {"name": "Lachovice", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11288], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9475, "fields": {"name": "Ljubljana", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11331], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 9735, "fields": {"name": "Lemberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11263], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10015, "fields": {"name": "Linz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11195, 11196], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10265, "fields": {"name": "London", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11239, 11240], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 10793, "fields": {"name": "Marburg an der Drau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11266], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11238, "fields": {"name": "Mies", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11234], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11556, "fields": {"name": "Moldava", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11308], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 11799, "fields": {"name": "M\u00fcnchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11197, 11198], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12211, "fields": {"name": "Nysa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11321], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 12758, "fields": {"name": "Nizza", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11205], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13253, "fields": {"name": "Sopron", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11344], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13382, "fields": {"name": "Olm\u00fctz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11228], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13714, "fields": {"name": "Paris", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11291, 11292], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 13987, "fields": {"name": "Petting", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11280, 11281], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 14608, "fields": {"name": "Prag", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11200], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16242, "fields": {"name": "Sv\u00e4t\u00fd Jur", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11214], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16310, "fields": {"name": "Sankt Pankraz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11327], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16594, "fields": {"name": "\u0160t\u00edty", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11293], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 16864, "fields": {"name": "Schwanberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11286, 11287], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18374, "fields": {"name": "Szczakowa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11241], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 18400, "fields": {"name": "Szegedin", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11351], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19215, "fields": {"name": "Trient", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11348], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 19599, "fields": {"name": "Mojm\u00edrovce", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11285], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20549, "fields": {"name": "Warschau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11345], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20659, "fields": {"name": "Wei\u00dfkirchen", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11255], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20872, "fields": {"name": "Bad Gastein", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11339], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 20988, "fields": {"name": "Wisborough Green", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11304, 11305], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 21818, "fields": {"name": "Zwittau", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11215], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22216, "fields": {"name": "Jamnitz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11206, 11207], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22259, "fields": {"name": "Stronach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11261, 11262], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22322, "fields": {"name": "Gr\u00fcnburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11237, 11238], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22354, "fields": {"name": "Olten", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11253, 11254], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22475, "fields": {"name": "Bad Kreuznach", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11311, 11312], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22494, "fields": {"name": "Lasberg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11317, 11318], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22526, "fields": {"name": "Freiburg", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11334, 11335], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22545, "fields": {"name": "Boc\u015fa", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11342, 11343], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22558, "fields": {"name": "Lud\u017amierz", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11346, 11347], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 22570, "fields": {"name": "Vezzano", "review": true, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": null, "notes": null, "text": [11349, 11350], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24156, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24696, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24697, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24698, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24699, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24835, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 24860, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 27245, "fields": {"name": "Thalberg", "review": false, "start_date": "1812-01-08", "end_date": "1871-04-27", "start_date_written": "8.1.1812", "end_date_written": "27.4.1871", "status": "", "source": 531, "references": null, "notes": null, "text": [12155, 12156], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 46414, "fields": {"name": "Reicha", "review": false, "start_date": "1770-02-26", "end_date": "1836-05-28", "start_date_written": "26.2.1770", "end_date_written": "28.5.1836", "status": "", "source": 5804, "references": null, "notes": null, "text": [21722, 21723], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 46415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 46416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 56248, "fields": {"name": "Moscheles", "review": false, "start_date": "1794-05-23", "end_date": "1870-03-10", "start_date_written": "23.5.1794", "end_date_written": "10.3.1870", "status": "", "source": 8543, "references": null, "notes": null, "text": [27186, 27187], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 56249, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 62757, "fields": {"name": "Liszt", "review": false, "start_date": "1811-10-22", "end_date": "1886-07-31", "start_date_written": "22.10.1811", "end_date_written": "31.7.1886", "status": "", "source": 10332, "references": null, "notes": null, "text": [30762, 30763], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88219, "fields": {"name": "Blahetka", "review": false, "start_date": "1810-11-15", "end_date": "1885-01-01", "start_date_written": "15.11.1810", "end_date_written": "1.1.1885", "status": "", "source": 17415, "references": null, "notes": null, "text": [44908, 44909], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88902, "fields": {"name": "Beethoven", "review": false, "start_date": "1770-12-16", "end_date": "1827-03-26", "start_date_written": "16.12.1770", "end_date_written": "26.3.1827", "status": "", "source": 17608, "references": null, "notes": null, "text": [45290, 45291], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 88904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 91062, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92412, "fields": {"name": "B\u00e4uerle", "review": false, "start_date": "1817-12-11", "end_date": "1896-07-17", "start_date_written": "11.12.1817", "end_date_written": "17.7.1896", "status": "", "source": 17852, "references": null, "notes": null, "text": [47030, 47031], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 92415, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92603, "fields": {"name": "Czerny", "review": false, "start_date": "1791-02-21", "end_date": "1857-07-15", "start_date_written": "21.2.1791", "end_date_written": "15.7.1857", "status": "", "source": 18525, "references": null, "notes": null, "text": [47126, 47127], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 92604, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92605, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92930, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92931, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92932, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92933, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92934, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 92935, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93003, "fields": {"name": "Bahr", "review": false, "start_date": "1863-07-19", "end_date": "1934-01-14", "start_date_written": "19.7.1863", "end_date_written": "14.1.1934", "status": "", "source": 102, "references": null, "notes": null, "text": [47200, 47201], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93009, "fields": {"name": "Czerny", "review": false, "start_date": "1863-03-25", "end_date": "1941-10-03", "start_date_written": "25.3.1863", "end_date_written": "3.10.1941", "status": "", "source": 114, "references": null, "notes": null, "text": [47204, 47205], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93012, "fields": {"name": "Czetz", "review": false, "start_date": "1822-06-08", "end_date": "1904-09-06", "start_date_written": "8.6.1822", "end_date_written": "6.9.1904", "status": "", "source": 116, "references": null, "notes": null, "text": [47206, 47207], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93013, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93014, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93015, "fields": {"name": "Czikann", "review": false, "start_date": "1789-07-10", "end_date": "1855-06-10", "start_date_written": "10.7.1789", "end_date_written": "10.6.1855", "status": "", "source": 117, "references": null, "notes": null, "text": [47208, 47209], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93016, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93017, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93018, "fields": {"name": "Clam-Gallas", "review": false, "start_date": "1805-03-11", "end_date": "1891-03-17", "start_date_written": "11.3.1805", "end_date_written": "17.3.1891", "status": "", "source": 108, "references": null, "notes": null, "text": [47210, 47211], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93021, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1826-06-15", "end_date": "1887-06-05", "start_date_written": "15.6.1826", "end_date_written": "5.6.1887", "status": "", "source": 109, "references": null, "notes": null, "text": [47212, 47213], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93022, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93023, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93024, "fields": {"name": "Clam-Martinic", "review": false, "start_date": "1863-01-01", "end_date": "1932-03-07", "start_date_written": "1.1.1863", "end_date_written": "7.3.1932", "status": "", "source": 110, "references": null, "notes": null, "text": [47214, 47215], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93025, "fields": {"name": "Clam (Grein)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93026, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93027, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93028, "fields": {"name": "Claus", "review": false, "start_date": "1835-01-02", "end_date": "1899-01-18", "start_date_written": "2.1.1835", "end_date_written": "18.1.1899", "status": "", "source": 111, "references": null, "notes": null, "text": [47216, 47217], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93029, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93030, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93031, "fields": {"name": "Conze", "review": false, "start_date": "1831-12-10", "end_date": "1914-07-19", "start_date_written": "10.12.1831", "end_date_written": "19.7.1914", "status": "", "source": 112, "references": null, "notes": null, "text": [47218, 47219], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93032, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93033, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93034, "fields": {"name": "Costenoble", "review": false, "start_date": "1769-12-25", "end_date": "1837-08-28", "start_date_written": "25.12.1769", "end_date_written": "28.8.1837", "status": "", "source": 113, "references": null, "notes": null, "text": [47220, 47221], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93035, "fields": {"name": "Herford, Westfalen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93036, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93037, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93044, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1846-03-21", "end_date": "1914-10-16", "start_date_written": "21.3.1846", "end_date_written": "16.10.1914", "status": "", "source": 103, "references": null, "notes": null, "text": [47226, 47227], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93045, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93046, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93047, "fields": {"name": "\u010celakovsk\u00fd", "review": false, "start_date": "1834-11-29", "end_date": "1902-11-24", "start_date_written": "29.11.1834", "end_date_written": "24.11.1902", "status": "", "source": 104, "references": null, "notes": null, "text": [47228, 47229], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93048, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93049, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93050, "fields": {"name": "\u010cerven\u00fd", "review": false, "start_date": "1819-09-27", "end_date": "1896-01-19", "start_date_written": "27.9.1819", "end_date_written": "19.1.1896", "status": "", "source": 105, "references": null, "notes": null, "text": [47230, 47231], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93051, "fields": {"name": "Praha-Dube\u010d, kr. Hlavn\u00ed m\u011bsto Praha", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93054, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93055, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93056, "fields": {"name": "Charlemont", "review": false, "start_date": "1850-03-18", "end_date": "1939-03-18", "start_date_written": "18.3.1850", "end_date_written": "18.3.1939", "status": "", "source": 106, "references": null, "notes": null, "text": [47232, 47233], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93057, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93058, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93059, "fields": {"name": "Chlumczansk\u00fd", "review": false, "start_date": "1749-11-15", "end_date": "1830-06-14", "start_date_written": "15.11.1749", "end_date_written": "14.6.1830", "status": "", "source": 107, "references": null, "notes": null, "text": [47234, 47235], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93060, "fields": {"name": "Ho\u0161tice, kr. Jiho\u010desk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93063, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93064, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93065, "fields": {"name": "Dumba", "review": false, "start_date": "1856-06-17", "end_date": "1947-01-06", "start_date_written": "17.6.1856", "end_date_written": "6.1.1947", "status": "", "source": 121, "references": null, "notes": null, "text": [47236, 47237], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93066, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93067, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93068, "fields": {"name": "Doderer", "review": false, "start_date": "1825-01-02", "end_date": "1900-05-13", "start_date_written": "2.1.1825", "end_date_written": "13.5.1900", "status": "", "source": 120, "references": null, "notes": null, "text": [47238, 47239], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93069, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93070, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93071, "fields": {"name": "Defregger", "review": false, "start_date": "1835-04-30", "end_date": "1921-01-02", "start_date_written": "30.4.1835", "end_date_written": "2.1.1921", "status": "", "source": 118, "references": null, "notes": null, "text": [47240, 47241], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93072, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93073, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93074, "fields": {"name": "Dengel", "review": false, "start_date": "1872-06-22", "end_date": "1947-09-09", "start_date_written": "22.6.1872", "end_date_written": "9.9.1947", "status": "", "source": 119, "references": null, "notes": null, "text": [47242, 47243], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93075, "fields": {"name": "Elbigenalp-Untergiblen", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93078, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93079, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93136, "fields": {"name": "Holovsky", "review": false, "start_date": "1917-04-29", "end_date": "1933-07-03", "start_date_written": "29.4.1917", "end_date_written": "3.7.1933", "status": "", "source": 122, "references": null, "notes": null, "text": [47276, 47277], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93137, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93138, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93328, "fields": {"name": "Lorenz", "review": false, "start_date": "1859-04-13", "end_date": "1945-03-25", "start_date_written": "13.4.1859", "end_date_written": "25.3.1945", "status": "", "source": 134, "references": null, "notes": null, "text": [47384, 47385], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93329, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93330, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93337, "fields": {"name": "L\u00f6wy", "review": false, "start_date": "1851-09-14", "end_date": "1905-12-27", "start_date_written": "14.9.1851", "end_date_written": "27.12.1905", "status": "", "source": 133, "references": null, "notes": null, "text": [47388, 47389], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93338, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93339, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93352, "fields": {"name": "Lobmeyr", "review": false, "start_date": "1792-03-17", "end_date": "1855-05-08", "start_date_written": "17.3.1792", "end_date_written": "8.5.1855", "status": "", "source": 132, "references": null, "notes": null, "text": [47394, 47395], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93353, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93354, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93366, "fields": {"name": "Lichtblau", "review": false, "start_date": "1844-05-17", "end_date": "1908-05-10", "start_date_written": "17.5.1844", "end_date_written": "10.5.1908", "status": "", "source": 130, "references": null, "notes": null, "text": [47402, 47403], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93367, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93368, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93369, "fields": {"name": "Lichtblau", "review": false, "start_date": "1875-02-25", "end_date": "1935-12-19", "start_date_written": "25.2.1875", "end_date_written": "19.12.1935", "status": "", "source": 131, "references": null, "notes": null, "text": [47404, 47405], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93370, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93371, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93378, "fields": {"name": "Leitgeb", "review": false, "start_date": "1835-10-20", "end_date": "1888-04-05", "start_date_written": "20.10.1835", "end_date_written": "5.4.1888", "status": "", "source": 128, "references": null, "notes": null, "text": [47410, 47411], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93379, "fields": {"name": "Portendorf, Bez. Klagenfurt Land", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93382, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93383, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93387, "fields": {"name": "Lenhoss\u00e9k", "review": false, "start_date": "1773-05-11", "end_date": "1840-02-11", "start_date_written": "11.5.1773", "end_date_written": "11.2.1840", "status": "", "source": 129, "references": null, "notes": null, "text": [47414, 47415], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93388, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93389, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93393, "fields": {"name": "Lefler", "review": false, "start_date": "1863-11-07", "end_date": "1919-03-14", "start_date_written": "7.11.1863", "end_date_written": "14.3.1919", "status": "", "source": 125, "references": null, "notes": null, "text": [47418, 47419], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93394, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93395, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93396, "fields": {"name": "Leichter", "review": false, "start_date": "1895-08-20", "end_date": "1942-03-17", "start_date_written": "20.8.1895", "end_date_written": "17.3.1942", "status": "", "source": 126, "references": null, "notes": null, "text": [47420, 47421], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93397, "fields": {"name": "KZ Ravensbr\u00fcck, Brandenburg", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93398, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93399, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93400, "fields": {"name": "Leidesdorf", "review": false, "start_date": "1810-09-25", "end_date": "1876-01-19", "start_date_written": "25.9.1810", "end_date_written": "19.1.1876", "status": "", "source": 127, "references": null, "notes": null, "text": [47422, 47423], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93401, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93402, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93409, "fields": {"name": "Lapaine", "review": false, "start_date": "1843-02-05", "end_date": "1923-02-21", "start_date_written": "5.2.1843", "end_date_written": "21.2.1923", "status": "", "source": 124, "references": null, "notes": null, "text": [47428, 47429], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93410, "fields": {"name": "Vojsko, sr. Gorica", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93413, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93414, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93415, "fields": {"name": "Langer-Schroll", "review": false, "start_date": "1850-10-02", "end_date": "1926-11-09", "start_date_written": "2.10.1850", "end_date_written": "9.11.1926", "status": "", "source": 123, "references": null, "notes": null, "text": [47430, 47431], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93416, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93417, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93418, "fields": {"name": "M\u00fcller", "review": false, "start_date": "1874-07-08", "end_date": "1941-12-09", "start_date_written": "8.7.1874", "end_date_written": "9.12.1941", "status": "", "source": 144, "references": null, "notes": null, "text": [47432, 47433], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93419, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93420, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93442, "fields": {"name": "M\u00f6rl", "review": false, "start_date": "1812-10-16", "end_date": "1868-01-11", "start_date_written": "16.10.1812", "end_date_written": "11.1.1868", "status": "", "source": 143, "references": null, "notes": null, "text": [47446, 47447], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93443, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93444, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93445, "fields": {"name": "Millosicz", "review": false, "start_date": "1819-10-18", "end_date": "1890-07-24", "start_date_written": "18.10.1819", "end_date_written": "24.7.1890", "status": "", "source": 142, "references": null, "notes": null, "text": [47448, 47449], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93446, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93447, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93448, "fields": {"name": "Miklosich", "review": false, "start_date": "1813-11-20", "end_date": "1891-03-07", "start_date_written": "20.11.1813", "end_date_written": "7.3.1891", "status": "", "source": 141, "references": null, "notes": null, "text": [47450, 47451], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93449, "fields": {"name": "Radomer\u0161\u010dak, sr. Murska Sobota", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93452, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93453, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93469, "fields": {"name": "Meithner", "review": false, "start_date": "1892-05-27", "end_date": "1942-12-13", "start_date_written": "27.5.1892", "end_date_written": "13.12.1942", "status": "", "source": 140, "references": null, "notes": null, "text": [47460, 47461], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93470, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93471, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93481, "fields": {"name": "Margulies", "review": false, "start_date": "1817-01-01", "end_date": "1880-01-01", "start_date_written": "1817", "end_date_written": "1880", "status": "", "source": 139, "references": null, "notes": null, "text": [47466, 47467], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93482, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93483, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93484, "fields": {"name": "M\u00e1nesov\u00e1", "review": false, "start_date": "1817-01-21", "end_date": null, "start_date_written": "21.1.1817", "end_date_written": "1883.6", "status": "", "source": 137, "references": null, "notes": null, "text": [47468, 47469], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93485, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93486, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93487, "fields": {"name": "M\u00e1nes", "review": false, "start_date": "1828-07-17", "end_date": "1880-08-05", "start_date_written": "17.7.1828", "end_date_written": "5.8.1880", "status": "", "source": 138, "references": null, "notes": null, "text": [47470, 47471], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93488, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93489, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93510, "fields": {"name": "Mayer", "review": false, "start_date": "1894-02-20", "end_date": "1944-07-01", "start_date_written": "20.2.1894", "end_date_written": "1.7.1944", "status": "", "source": 136, "references": null, "notes": null, "text": [47482, 47483], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93511, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93512, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93513, "fields": {"name": "Mahl-Schedl von Alpenburg", "review": false, "start_date": "1806-10-27", "end_date": "1873-04-01", "start_date_written": "27.10.1806", "end_date_written": "1.4.1873", "status": "", "source": 135, "references": null, "notes": null, "text": [47484, 47485], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93514, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93515, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93516, "fields": {"name": "Nov\u00e1\u010dek", "review": false, "start_date": "1860-04-07", "end_date": "1929-08-12", "start_date_written": "7.4.1860", "end_date_written": "12.8.1929", "status": "", "source": 145, "references": null, "notes": null, "text": [47486, 47487], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93517, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93518, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93540, "fields": {"name": "Ortmann", "review": false, "start_date": "1874-03-10", "end_date": "1939-11-22", "start_date_written": "10.3.1874", "end_date_written": "22.11.1939", "status": "", "source": 147, "references": null, "notes": null, "text": [47502, 47503], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93541, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93542, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93546, "fields": {"name": "Oellacher", "review": false, "start_date": "1804-02-16", "end_date": "1880-08-16", "start_date_written": "16.2.1804", "end_date_written": "16.8.1880", "status": "", "source": 146, "references": null, "notes": null, "text": [47506, 47507], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93547, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93548, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93561, "fields": {"name": "Poljanec", "review": false, "start_date": "1872-09-23", "end_date": "1944-08-08", "start_date_written": "23.9.1872", "end_date_written": "8.8.1944", "status": "", "source": 151, "references": null, "notes": null, "text": [47516, 47517], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93562, "fields": {"name": "Bre\u017eice, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93565, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93566, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93573, "fields": {"name": "Petzold", "review": false, "start_date": "1859-11-26", "end_date": "1932-07-15", "start_date_written": "26.11.1859", "end_date_written": "15.7.1932", "status": "", "source": 150, "references": null, "notes": null, "text": [47522, 47523], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93574, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93575, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93588, "fields": {"name": "Peithner von Lichtenfels", "review": false, "start_date": "1833-11-18", "end_date": "1913-01-22", "start_date_written": "18.11.1833", "end_date_written": "22.1.1913", "status": "", "source": 149, "references": "", "notes": "", "text": [47530, 47531], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93589, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93590, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93600, "fields": {"name": "Patera", "review": false, "start_date": "1819-07-11", "end_date": "1894-06-26", "start_date_written": "11.7.1819", "end_date_written": "26.6.1894", "status": "", "source": 148, "references": null, "notes": null, "text": [47536, 47537], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93601, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93602, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93609, "fields": {"name": "Rumpler", "review": false, "start_date": "1771-02-03", "end_date": "1846-03-17", "start_date_written": "3.2.1771", "end_date_written": "17.3.1846", "status": "", "source": 158, "references": null, "notes": null, "text": [47540, 47541], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93610, "fields": {"name": "Seekirchen a. Wallersee", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93613, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93614, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93615, "fields": {"name": "Rotter", "review": false, "start_date": "1868-11-30", "end_date": "1945-09-18", "start_date_written": "30.11.1868", "end_date_written": "18.9.1945", "status": "", "source": 157, "references": null, "notes": null, "text": [47542, 47543], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93616, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93617, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93639, "fields": {"name": "Revertera von Salandra", "review": false, "start_date": "1827-01-21", "end_date": "1904-04-28", "start_date_written": "21.1.1827", "end_date_written": "28.4.1904", "status": "", "source": 156, "references": null, "notes": null, "text": [47556, 47557], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93640, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93641, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93642, "fields": {"name": "Reichenberger", "review": false, "start_date": "1770-11-24", "end_date": "1854-10-26", "start_date_written": "24.11.1770", "end_date_written": "26.10.1854", "status": "", "source": 154, "references": null, "notes": null, "text": [47558, 47559], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93643, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93644, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93645, "fields": {"name": "Reiser", "review": false, "start_date": "1861-12-21", "end_date": "1936-03-31", "start_date_written": "21.12.1861", "end_date_written": "31.3.1936", "status": "", "source": 155, "references": null, "notes": null, "text": [47560, 47561], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93646, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93647, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93651, "fields": {"name": "Randa", "review": false, "start_date": "1874-05-24", "end_date": "1941-08-13", "start_date_written": "24.5.1874", "end_date_written": "13.8.1941", "status": "", "source": 153, "references": null, "notes": null, "text": [47564, 47565], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93652, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93653, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93654, "fields": {"name": "Radakovi\u010d", "review": false, "start_date": "1866-04-25", "end_date": "1934-08-15", "start_date_written": "25.4.1866", "end_date_written": "15.8.1934", "status": "", "source": 152, "references": null, "notes": null, "text": [47566, 47567], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93655, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93656, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93657, "fields": {"name": "Szigligeti", "review": false, "start_date": "1814-03-08", "end_date": "1878-01-19", "start_date_written": "8.3.1814", "end_date_written": "19.1.1878", "status": "", "source": 194, "references": null, "notes": null, "text": [47568, 47569], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93658, "fields": {"name": "Oradea-Olosig, jud. Bihor", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93661, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93662, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93663, "fields": {"name": "Szurmay von Uzsok", "review": false, "start_date": "1860-12-19", "end_date": "1945-03-26", "start_date_written": "19.12.1860", "end_date_written": "26.3.1945", "status": "", "source": 195, "references": null, "notes": null, "text": [47570, 47571], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93664, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93665, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93678, "fields": {"name": "St\u00fclz", "review": false, "start_date": "1799-02-23", "end_date": "1872-06-28", "start_date_written": "23.2.1799", "end_date_written": "28.6.1872", "status": "", "source": 193, "references": null, "notes": null, "text": [47580, 47581], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93679, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93680, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93684, "fields": {"name": "Stowasser", "review": false, "start_date": "1887-10-21", "end_date": "1934-02-19", "start_date_written": "21.10.1887", "end_date_written": "19.2.1934", "status": "", "source": 192, "references": null, "notes": null, "text": [47584, 47585], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93685, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93686, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93702, "fields": {"name": "Steindler", "review": false, "start_date": "1879-10-28", "end_date": "1933-12-21", "start_date_written": "28.10.1879", "end_date_written": "21.12.1933", "status": "", "source": 190, "references": null, "notes": null, "text": [47594, 47595], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93703, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93704, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93705, "fields": {"name": "Stein", "review": false, "start_date": "1891-09-19", "end_date": "1945-02-25", "start_date_written": "19.9.1891", "end_date_written": "25.2.1945", "status": "", "source": 191, "references": null, "notes": null, "text": [47596, 47597], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93706, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93707, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93714, "fields": {"name": "Stariha", "review": false, "start_date": "1845-05-12", "end_date": "1915-12-15", "start_date_written": "12.5.1845", "end_date_written": "15.12.1915", "status": "", "source": 189, "references": null, "notes": null, "text": [47602, 47603], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93715, "fields": {"name": "Sadinja vas, sr. Novo mesto", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93718, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93719, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93748, "fields": {"name": "\u0160njari\u0107", "review": false, "start_date": "1851-06-22", "end_date": "1930-01-28", "start_date_written": "22.6.1851", "end_date_written": "28.1.1930", "status": "", "source": 188, "references": null, "notes": null, "text": [47614, 47615], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93749, "fields": {"name": "\u010canak, sr. Gospi\u0107", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93752, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93753, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93779, "fields": {"name": "Sichulski", "review": false, "start_date": "1879-01-17", "end_date": "1942-11-06", "start_date_written": "17.1.1879", "end_date_written": "6.11.1942", "status": "", "source": 187, "references": null, "notes": null, "text": [47626, 47627], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93780, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93781, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93785, "fields": {"name": "Settari", "review": false, "start_date": "1841-10-04", "end_date": "1905-01-29", "start_date_written": "4.10.1841", "end_date_written": "29.1.1905", "status": "", "source": 186, "references": null, "notes": null, "text": [47630, 47631], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93786, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93787, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93791, "fields": {"name": "Sehnal", "review": false, "start_date": "1851-12-22", "end_date": "1910-09-12", "start_date_written": "22.12.1851", "end_date_written": "12.9.1910", "status": "", "source": 185, "references": null, "notes": null, "text": [47634, 47635], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93792, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93793, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93800, "fields": {"name": "Schwartz", "review": false, "start_date": "1852-02-28", "end_date": "1929-09-15", "start_date_written": "28.2.1852", "end_date_written": "15.9.1929", "status": "", "source": 181, "references": null, "notes": null, "text": [47640, 47641], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93801, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93802, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93803, "fields": {"name": "Schwarz", "review": false, "start_date": "1840-11-16", "end_date": "1903-12-28", "start_date_written": "16.11.1840", "end_date_written": "28.12.1903", "status": "", "source": 182, "references": null, "notes": null, "text": [47642, 47643], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93804, "fields": {"name": "\u0160umperk-Temenice, kr. Olomouck\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93807, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93808, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93809, "fields": {"name": "Schwarz", "review": false, "start_date": "1811-11-06", "end_date": "1879-05-07", "start_date_written": "6.11.1811", "end_date_written": "7.5.1879", "status": "", "source": 183, "references": null, "notes": null, "text": [47644, 47645], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93810, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93811, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93815, "fields": {"name": "Schweitzer", "review": false, "start_date": "1815-02-01", "end_date": "1896-07-09", "start_date_written": "1.2.1815", "end_date_written": "9.7.1896", "status": "", "source": 184, "references": null, "notes": null, "text": [47648, 47649], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93816, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93817, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93818, "fields": {"name": "Schwabl", "review": false, "start_date": "1854-06-29", "end_date": "1923-04-16", "start_date_written": "29.6.1854", "end_date_written": "16.4.1923", "status": "", "source": 180, "references": null, "notes": null, "text": [47650, 47651], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93819, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93820, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93836, "fields": {"name": "Schu\u00ebcker", "review": false, "start_date": "1860-11-16", "end_date": "1911-11-09", "start_date_written": "16.11.1860", "end_date_written": "9.11.1911", "status": "", "source": 179, "references": null, "notes": null, "text": [47660, 47661], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93837, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93838, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93839, "fields": {"name": "Schr\u00f6dl", "review": false, "start_date": "1841-07-07", "end_date": "1908-12-05", "start_date_written": "7.7.1841", "end_date_written": "5.12.1908", "status": "", "source": 178, "references": null, "notes": null, "text": [47662, 47663], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93840, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93841, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93854, "fields": {"name": "Schreyer", "review": false, "start_date": "1876-12-09", "end_date": "1950-04-14", "start_date_written": "9.12.1876", "end_date_written": "14.4.1950", "status": "", "source": 177, "references": null, "notes": null, "text": [47672, 47673], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93855, "fields": {"name": "B\u0159idli\u010dn\u00e1, kr. Moravskoslezsk\u00fd", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93858, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93859, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93863, "fields": {"name": "Scholz", "review": false, "start_date": "1819-08-20", "end_date": "1902-05-19", "start_date_written": "20.8.1819", "end_date_written": "19.5.1902", "status": "", "source": 175, "references": null, "notes": null, "text": [47676, 47677], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93864, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93865, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93866, "fields": {"name": "Schrammel", "review": false, "start_date": "1850-05-22", "end_date": "1893-06-17", "start_date_written": "22.5.1850", "end_date_written": "17.6.1893", "status": "", "source": 176, "references": null, "notes": null, "text": [47678, 47679], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93867, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93868, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93878, "fields": {"name": "Scholl", "review": false, "start_date": "1805-01-01", "end_date": "1884-12-12", "start_date_written": "1805", "end_date_written": "12.12.1884", "status": "", "source": 174, "references": null, "notes": null, "text": [47684, 47685], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93879, "fields": {"name": "Regio oder Rea (?)", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93880, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93881, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93891, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1804-06-30", "end_date": "1880-12-19", "start_date_written": "30.6.1804", "end_date_written": "19.12.1880", "status": "", "source": 172, "references": null, "notes": null, "text": [47688, 47689], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93892, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93893, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93894, "fields": {"name": "Sch\u00f6nberger", "review": false, "start_date": "1863-09-12", "end_date": "1930-03-09", "start_date_written": "12.9.1863", "end_date_written": "9.3.1930", "status": "", "source": 173, "references": null, "notes": null, "text": [47690, 47691], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93895, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93896, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93900, "fields": {"name": "Schnitzler", "review": false, "start_date": "1865-07-13", "end_date": "1939-06-29", "start_date_written": "13.7.1865", "end_date_written": "29.6.1939", "status": "", "source": 169, "references": null, "notes": null, "text": [47694, 47695], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93901, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93902, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93903, "fields": {"name": "Schober", "review": false, "start_date": "1856-12-15", "end_date": "1917-03-07", "start_date_written": "15.12.1856", "end_date_written": "7.3.1917", "status": "", "source": 170, "references": null, "notes": null, "text": [47696, 47697], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93904, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93905, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93909, "fields": {"name": "Schoeller", "review": false, "start_date": "1826-10-05", "end_date": "1889-06-25", "start_date_written": "5.10.1826", "end_date_written": "25.6.1889", "status": "", "source": 171, "references": null, "notes": null, "text": [47700, 47701], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93910, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93911, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93921, "fields": {"name": "Schmutzler", "review": false, "start_date": "1864-03-29", "end_date": "1940-06-20", "start_date_written": "29.3.1864", "end_date_written": "20.6.1940", "status": "", "source": 168, "references": null, "notes": null, "text": [47706, 47707], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93922, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93923, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93933, "fields": {"name": "Schmidt", "review": false, "start_date": "1904-03-04", "end_date": "1942-11-16", "start_date_written": "4.3.1904", "end_date_written": "16.11.1942", "status": "", "source": 167, "references": null, "notes": null, "text": [47712, 47713], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93934, "fields": {"name": "Davydivka, obl. \u010cernivci", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "ambigue", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93937, "fields": {"name": "Girenbad b. Hinwil, Kanton Z\u00fcrich", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "no match", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93938, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93939, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93940, "fields": {"name": "Schmidt", "review": false, "start_date": "1826-12-09", "end_date": "1892-03-28", "start_date_written": "9.12.1826", "end_date_written": "28.3.1892", "status": "", "source": 166, "references": null, "notes": null, "text": [47714, 47715], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93941, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93942, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93946, "fields": {"name": "Schmal", "review": false, "start_date": "1844-09-23", "end_date": "1900-12-24", "start_date_written": "23.9.1844", "end_date_written": "24.12.1900", "status": "", "source": 164, "references": null, "notes": null, "text": [47718, 47719], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93947, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93948, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93955, "fields": {"name": "Schmidt-Beauchez", "review": false, "start_date": "1848-06-06", "end_date": "1912-12-14", "start_date_written": "6.6.1848", "end_date_written": "14.12.1912", "status": "", "source": 165, "references": null, "notes": null, "text": [47724, 47725], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93956, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93957, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93958, "fields": {"name": "Schindler", "review": false, "start_date": "1835-06-23", "end_date": "1911-02-22", "start_date_written": "23.6.1835", "end_date_written": "22.2.1911", "status": "", "source": 163, "references": null, "notes": null, "text": [47726, 47727], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93959, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93960, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93961, "fields": {"name": "Scheu", "review": false, "start_date": "1841-09-15", "end_date": "1904-10-12", "start_date_written": "15.9.1841", "end_date_written": "12.10.1904", "status": "", "source": 161, "references": null, "notes": null, "text": [47728, 47729], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93962, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93963, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93964, "fields": {"name": "Schikaneder", "review": false, "start_date": "1855-02-27", "end_date": "1924-11-15", "start_date_written": "27.2.1855", "end_date_written": "15.11.1924", "status": "", "source": 162, "references": null, "notes": null, "text": [47730, 47731], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93965, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93966, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93967, "fields": {"name": "Schell", "review": false, "start_date": "1892-12-19", "end_date": "1945-06-02", "start_date_written": "19.12.1892", "end_date_written": "2.6.1945", "status": "", "source": 159, "references": null, "notes": null, "text": [47732, 47733], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93968, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93969, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93970, "fields": {"name": "Schenk", "review": false, "start_date": "1840-08-23", "end_date": "1902-08-17", "start_date_written": "23.8.1840", "end_date_written": "17.8.1902", "status": "", "source": 160, "references": null, "notes": null, "text": [47734, 47735], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93971, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93972, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93988, "fields": {"name": "T\u00f6lgyessy", "review": false, "start_date": "1853-05-01", "end_date": "1920-02-02", "start_date_written": "1.5.1853", "end_date_written": "2.2.1920", "status": "", "source": 201, "references": null, "notes": null, "text": [47746, 47747], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93989, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93990, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93991, "fields": {"name": "Thun und Hohenstein", "review": false, "start_date": "1763-03-28", "end_date": "1818-10-09", "start_date_written": "28.3.1763", "end_date_written": "9.10.1818", "status": "", "source": 200, "references": null, "notes": null, "text": [47748, 47749], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 93992, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 93993, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94003, "fields": {"name": "Teschenberg", "review": false, "start_date": "1836-05-21", "end_date": "1886-02-25", "start_date_written": "21.5.1836", "end_date_written": "25.2.1886", "status": "", "source": 197, "references": "", "notes": "", "text": [47754, 47755], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94004, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94005, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94006, "fields": {"name": "Tetmajer", "review": false, "start_date": "1865-02-12", "end_date": "1940-01-18", "start_date_written": "12.2.1865", "end_date_written": "18.1.1940", "status": "", "source": 198, "references": null, "notes": null, "text": [47756, 47757], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94007, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94008, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94009, "fields": {"name": "Teuber", "review": false, "start_date": "1877-05-11", "end_date": "1943-02-03", "start_date_written": "11.5.1877", "end_date_written": "3.2.1943", "status": "", "source": 199, "references": null, "notes": null, "text": [47758, 47759], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94010, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94011, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94018, "fields": {"name": "Tauber", "review": false, "start_date": "1891-05-16", "end_date": "1948-01-08", "start_date_written": "16.5.1891", "end_date_written": "8.1.1948", "status": "", "source": 196, "references": null, "notes": null, "text": [47764, 47765], "collection": [29]}}, {"model": "metainfo.tempentityclass", "pk": 94019, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94020, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": null, "notes": null, "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94160, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94161, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94162, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94163, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94164, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94165, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94166, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94167, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94168, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94169, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94170, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94171, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94174, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 94175, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 98116, "fields": {"name": "wien", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 99591, "fields": {"name": "", "review": false, "start_date": null, "end_date": null, "start_date_written": "", "end_date_written": "", "status": "distinct", "source": null, "references": "", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111335, "fields": {"name": "Schlacht von St. Lucia", "review": false, "start_date": "1848-05-06", "end_date": null, "start_date_written": "6.5.1848", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Schlacht_von_Santa_Lucia", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111348, "fields": {"name": "Schlacht bei K\u00f6niggr\u00e4tz", "review": false, "start_date": "1866-07-03", "end_date": null, "start_date_written": "3.7.1866", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Schlacht_bei_K%C3%B6niggr%C3%A4tz", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.tempentityclass", "pk": 111365, "fields": {"name": "Zweiter Unabh\u00e4ngigkeitskrieg Italien", "review": false, "start_date": "1859-01-01", "end_date": null, "start_date_written": "1859", "end_date_written": "", "status": "", "source": null, "references": "https://de.wikipedia.org/wiki/Italienische_Unabh%C3%A4ngigkeitskriege#Zweiter_Unabh.C3.A4ngigkeitskrieg_.281859.29", "notes": "", "text": [], "collection": []}}, {"model": "metainfo.source", "pk": 102, "fields": {"orig_filename": "Bahr_Hermann_1863_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f.", "author": "", "orig_id": 1405476}}, {"model": "metainfo.source", "pk": 103, "fields": {"orig_filename": "Celakovsky_Jaromir_1846_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416946}}, {"model": "metainfo.source", "pk": 104, "fields": {"orig_filename": "Celakovsky_Ladislav_1834_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140", "author": "", "orig_id": 1416947}}, {"model": "metainfo.source", "pk": 105, "fields": {"orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1416953}}, {"model": "metainfo.source", "pk": 106, "fields": {"orig_filename": "Charlemont_Hugo_1850_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141", "author": "", "orig_id": 1417029}}, {"model": "metainfo.source", "pk": 107, "fields": {"orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144", "author": "", "orig_id": 1417140}}, {"model": "metainfo.source", "pk": 108, "fields": {"orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148", "author": "", "orig_id": 1417315}}, {"model": "metainfo.source", "pk": 109, "fields": {"orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417317}}, {"model": "metainfo.source", "pk": 110, "fields": {"orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417316}}, {"model": "metainfo.source", "pk": 111, "fields": {"orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149", "author": "", "orig_id": 1417320}}, {"model": "metainfo.source", "pk": 112, "fields": {"orig_filename": "Conze_Alexander_1831_1914.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f.", "author": "", "orig_id": 1417417}}, {"model": "metainfo.source", "pk": 113, "fields": {"orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156", "author": "", "orig_id": 1417431}}, {"model": "metainfo.source", "pk": 114, "fields": {"orig_filename": "Czerny_Adalbert_1863_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162", "author": "", "orig_id": 1417613}}, {"model": "metainfo.source", "pk": 116, "fields": {"orig_filename": "Czetz_Johann_1822_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f.", "author": "", "orig_id": 1417689}}, {"model": "metainfo.source", "pk": 117, "fields": {"orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164", "author": "", "orig_id": 1417691}}, {"model": "metainfo.source", "pk": 118, "fields": {"orig_filename": "Defregger_Franz_1835_1921.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174", "author": "", "orig_id": 1417167}}, {"model": "metainfo.source", "pk": 119, "fields": {"orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178", "author": "", "orig_id": 1417262}}, {"model": "metainfo.source", "pk": 120, "fields": {"orig_filename": "Doderer_Wilhelm_1825_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190", "author": "", "orig_id": 1421589}}, {"model": "metainfo.source", "pk": 121, "fields": {"orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203", "author": "", "orig_id": 1422065}}, {"model": "metainfo.source", "pk": 122, "fields": {"orig_filename": "Holovsky_Hilde_1917_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405", "author": "", "orig_id": 1417020}}, {"model": "metainfo.source", "pk": 123, "fields": {"orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9", "author": "", "orig_id": 1412571}}, {"model": "metainfo.source", "pk": 124, "fields": {"orig_filename": "Lapaine_Valentin_1843_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f.", "author": "", "orig_id": 1412681}}, {"model": "metainfo.source", "pk": 125, "fields": {"orig_filename": "Lefler_Heinrich_1863_1919.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90", "author": "", "orig_id": 1413578}}, {"model": "metainfo.source", "pk": 126, "fields": {"orig_filename": "Leichter_Kaethe_1895_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103", "author": "", "orig_id": 1413749}}, {"model": "metainfo.source", "pk": 127, "fields": {"orig_filename": "Leidesdorf_Franz_1810_1876.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f.", "author": "", "orig_id": 1413751}}, {"model": "metainfo.source", "pk": 128, "fields": {"orig_filename": "Leitgeb_Hubert_1835_1888.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f.", "author": "", "orig_id": 1413852}}, {"model": "metainfo.source", "pk": 129, "fields": {"orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135", "author": "", "orig_id": 1412686}}, {"model": "metainfo.source", "pk": 130, "fields": {"orig_filename": "Lichtblau_Adolf_1844_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184", "author": "", "orig_id": 1411908}}, {"model": "metainfo.source", "pk": 131, "fields": {"orig_filename": "Lichtblau_Ludwig_1875_1935.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f.", "author": "", "orig_id": 1411907}}, {"model": "metainfo.source", "pk": 132, "fields": {"orig_filename": "Lobmeyr_Josef_1792_1855.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263", "author": "", "orig_id": 1411542}}, {"model": "metainfo.source", "pk": 133, "fields": {"orig_filename": "Loewy_Julius_1851_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297", "author": "", "orig_id": 1411913}}, {"model": "metainfo.source", "pk": 134, "fields": {"orig_filename": "Lorenz_Heinrich_1859_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316", "author": "", "orig_id": 1412111}}, {"model": "metainfo.source", "pk": 135, "fields": {"orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f.", "author": "", "orig_id": 1411846}}, {"model": "metainfo.source", "pk": 136, "fields": {"orig_filename": "Maier_Karl_1894_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436", "author": "", "orig_id": 1412133}}, {"model": "metainfo.source", "pk": 137, "fields": {"orig_filename": "Manesova_Amalie_1817_1883.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f.", "author": "", "orig_id": 1409111}}, {"model": "metainfo.source", "pk": 138, "fields": {"orig_filename": "Manes_Quido_1828_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51", "author": "", "orig_id": 1409109}}, {"model": "metainfo.source", "pk": 139, "fields": {"orig_filename": "Margulies_Berl_1817_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85", "author": "", "orig_id": 1409490}}, {"model": "metainfo.source", "pk": 140, "fields": {"orig_filename": "Meithner_Karl_1892_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f.", "author": "", "orig_id": 1413879}}, {"model": "metainfo.source", "pk": 141, "fields": {"orig_filename": "Miklosich_Franz_1813_1891.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f.", "author": "", "orig_id": 1413368}}, {"model": "metainfo.source", "pk": 142, "fields": {"orig_filename": "Millosicz_Georg_1819_1890.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f.", "author": "", "orig_id": 1413706}}, {"model": "metainfo.source", "pk": 143, "fields": {"orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340", "author": "", "orig_id": 1412553}}, {"model": "metainfo.source", "pk": 144, "fields": {"orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429", "author": "", "orig_id": 1413568}}, {"model": "metainfo.source", "pk": 145, "fields": {"orig_filename": "Novacek_Rudolf_1860_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f.", "author": "", "orig_id": 1408134}}, {"model": "metainfo.source", "pk": 146, "fields": {"orig_filename": "Oellacher_Josef_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208", "author": "", "orig_id": 1408688}}, {"model": "metainfo.source", "pk": 147, "fields": {"orig_filename": "Ortmann_Rudolf_1874_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255", "author": "", "orig_id": 1409161}}, {"model": "metainfo.source", "pk": 148, "fields": {"orig_filename": "Patera_Adolf_1819_1894.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f.", "author": "", "orig_id": 1408720}}, {"model": "metainfo.source", "pk": 149, "fields": {"orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f.", "author": "", "orig_id": 1409360}}, {"model": "metainfo.source", "pk": 150, "fields": {"orig_filename": "Petzold_Emil_1859_1932.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17", "author": "", "orig_id": 1407914}}, {"model": "metainfo.source", "pk": 151, "fields": {"orig_filename": "Poljanec_Leopold_1872_1944.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181", "author": "", "orig_id": 1410619}}, {"model": "metainfo.source", "pk": 152, "fields": {"orig_filename": "Radakovic_Michael_1866_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f.", "author": "", "orig_id": 1409702}}, {"model": "metainfo.source", "pk": 153, "fields": {"orig_filename": "Randa_Maximilian_1874_1941.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411", "author": "", "orig_id": 1410086}}, {"model": "metainfo.source", "pk": 154, "fields": {"orig_filename": "Reichenberger_Andreas_1770_1854.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f.", "author": "", "orig_id": 1406805}}, {"model": "metainfo.source", "pk": 155, "fields": {"orig_filename": "Reiser_Othmar_1861_1936.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58", "author": "", "orig_id": 1406978}}, {"model": "metainfo.source", "pk": 156, "fields": {"orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f.", "author": "", "orig_id": 1407193}}, {"model": "metainfo.source", "pk": 157, "fields": {"orig_filename": "Rotter_Johann_1868_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f.", "author": "", "orig_id": 1407684}}, {"model": "metainfo.source", "pk": 158, "fields": {"orig_filename": "Rumpler_Matthias_1771_1846.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327", "author": "", "orig_id": 1407832}}, {"model": "metainfo.source", "pk": 159, "fields": {"orig_filename": "Schell_Karl_1892_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f.", "author": "", "orig_id": 1406179}}, {"model": "metainfo.source", "pk": 160, "fields": {"orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f.", "author": "", "orig_id": 1406202}}, {"model": "metainfo.source", "pk": 161, "fields": {"orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f.", "author": "", "orig_id": 1406044}}, {"model": "metainfo.source", "pk": 162, "fields": {"orig_filename": "Schikaneder_Jakub_1855_1924.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f.", "author": "", "orig_id": 1406374}}, {"model": "metainfo.source", "pk": 163, "fields": {"orig_filename": "Schindler_Josef_1835_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153", "author": "", "orig_id": 1406252}}, {"model": "metainfo.source", "pk": 164, "fields": {"orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226", "author": "", "orig_id": 1406496}}, {"model": "metainfo.source", "pk": 165, "fields": {"orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f.", "author": "", "orig_id": 1406721}}, {"model": "metainfo.source", "pk": 166, "fields": {"orig_filename": "Schmid_Anton_1826_1892.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f.", "author": "", "orig_id": 1406531}}, {"model": "metainfo.source", "pk": 167, "fields": {"orig_filename": "Schmid_Joseph_1904_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f.", "author": "", "orig_id": 1406597}}, {"model": "metainfo.source", "pk": 168, "fields": {"orig_filename": "Schmutzler_Leopold_1864_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f.", "author": "", "orig_id": 1406623}}, {"model": "metainfo.source", "pk": 169, "fields": {"orig_filename": "Schnitzler_Julius_1865_1939.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f.", "author": "", "orig_id": 1406896}}, {"model": "metainfo.source", "pk": 170, "fields": {"orig_filename": "Schober_Alfred_1856_1917.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f.", "author": "", "orig_id": 1406912}}, {"model": "metainfo.source", "pk": 171, "fields": {"orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21", "author": "", "orig_id": 1405414}}, {"model": "metainfo.source", "pk": 172, "fields": {"orig_filename": "Schoenberger_Adolf_1804_1880.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49", "author": "", "orig_id": 1405629}}, {"model": "metainfo.source", "pk": 173, "fields": {"orig_filename": "Schoenberger_Benno_1863_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51", "author": "", "orig_id": 1405634}}, {"model": "metainfo.source", "pk": 174, "fields": {"orig_filename": "Scholl_Joseph_1805_1884.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f.", "author": "", "orig_id": 1412321}}, {"model": "metainfo.source", "pk": 175, "fields": {"orig_filename": "Scholz_Franz_1819_1902.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127", "author": "", "orig_id": 1412411}}, {"model": "metainfo.source", "pk": 176, "fields": {"orig_filename": "Schrammel_Johann_1850_1893.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff.", "author": "", "orig_id": 1411222}}, {"model": "metainfo.source", "pk": 177, "fields": {"orig_filename": "Schreyer_Johann_1876_1950.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223", "author": "", "orig_id": 1411681}}, {"model": "metainfo.source", "pk": 178, "fields": {"orig_filename": "Schroedl_Leopold_1841_1908.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236", "author": "", "orig_id": 1411777}}, {"model": "metainfo.source", "pk": 179, "fields": {"orig_filename": "Schuecker_Edmund_1860_1911.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f.", "author": "", "orig_id": 1412171}}, {"model": "metainfo.source", "pk": 180, "fields": {"orig_filename": "Schwabl_Franz_1854_1923.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f.", "author": "", "orig_id": 1420210}}, {"model": "metainfo.source", "pk": 181, "fields": {"orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f.", "author": "", "orig_id": 1420456}}, {"model": "metainfo.source", "pk": 182, "fields": {"orig_filename": "Schwarz_Johann_1840_1903.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439", "author": "", "orig_id": 1420439}}, {"model": "metainfo.source", "pk": 183, "fields": {"orig_filename": "Schwarz_Kaspar_1811_1879.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445", "author": "", "orig_id": 1420450}}, {"model": "metainfo.source", "pk": 184, "fields": {"orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f.", "author": "", "orig_id": 1439729}}, {"model": "metainfo.source", "pk": 185, "fields": {"orig_filename": "Sehnal_Eugen_1851_1910.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f.", "author": "", "orig_id": 1439478}}, {"model": "metainfo.source", "pk": 186, "fields": {"orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197", "author": "", "orig_id": 1450886}}, {"model": "metainfo.source", "pk": 187, "fields": {"orig_filename": "Sichulski_Kazimierz_1879_1942.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223", "author": "", "orig_id": 1450008}}, {"model": "metainfo.source", "pk": 188, "fields": {"orig_filename": "Snjaric_Lukas_1851_1930.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384", "author": "", "orig_id": 1457373}}, {"model": "metainfo.source", "pk": 189, "fields": {"orig_filename": "Stariha_Janez-Nep_1845_1915.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105", "author": "", "orig_id": 1428070}}, {"model": "metainfo.source", "pk": 190, "fields": {"orig_filename": "Steindler_Olga_1879_1933.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f.", "author": "", "orig_id": 1430730}}, {"model": "metainfo.source", "pk": 191, "fields": {"orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149", "author": "", "orig_id": 1428363}}, {"model": "metainfo.source", "pk": 192, "fields": {"orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f.", "author": "", "orig_id": 1434284}}, {"model": "metainfo.source", "pk": 193, "fields": {"orig_filename": "Stuelz_Jodok_1799_1872.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443", "author": "", "orig_id": 1433097}}, {"model": "metainfo.source", "pk": 194, "fields": {"orig_filename": "Szigligeti_Ede_1814_1878.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154", "author": "", "orig_id": 1434706}}, {"model": "metainfo.source", "pk": 195, "fields": {"orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178", "author": "", "orig_id": 1435139}}, {"model": "metainfo.source", "pk": 196, "fields": {"orig_filename": "Tauber_Richard_1891_1948.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff.", "author": "", "orig_id": 1422288}}, {"model": "metainfo.source", "pk": 197, "fields": {"orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257", "author": "", "orig_id": 1424387}}, {"model": "metainfo.source", "pk": 198, "fields": {"orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263", "author": "", "orig_id": 2047416}}, {"model": "metainfo.source", "pk": 199, "fields": {"orig_filename": "Teuber_Emmerich_1877_1943.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f.", "author": "", "orig_id": 1448255}}, {"model": "metainfo.source", "pk": 200, "fields": {"orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f.", "author": "", "orig_id": 1424667}}, {"model": "metainfo.source", "pk": 201, "fields": {"orig_filename": "Toelgyessy_Artur_1853_1920.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366", "author": "", "orig_id": 1458532}}, {"model": "metainfo.source", "pk": 531, "fields": {"orig_filename": "Thalberg_Sigismund_1812_1871.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277", "author": "", "orig_id": 1424641}}, {"model": "metainfo.source", "pk": 5804, "fields": {"orig_filename": "Reicha_Anton-Josef_1770_1836.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27", "author": "", "orig_id": 1406794}}, {"model": "metainfo.source", "pk": 8543, "fields": {"orig_filename": "Moscheles_Ignaz_1794_1870.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f.", "author": "", "orig_id": 1413099}}, {"model": "metainfo.source", "pk": 10332, "fields": {"orig_filename": "Liszt_Franz_1811_1886.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f.", "author": "", "orig_id": 1411364}}, {"model": "metainfo.source", "pk": 17415, "fields": {"orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91", "author": "", "orig_id": 1418730}}, {"model": "metainfo.source", "pk": 17608, "fields": {"orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", "indexed": true, "pubinfo": "\u00d6BL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f.", "author": "", "orig_id": 1406636}}, {"model": "metainfo.source", "pk": 17852, "fields": {"orig_filename": "Baeuerle_Friederike_1817_1896.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1420833}}, {"model": "metainfo.source", "pk": 18525, "fields": {"orig_filename": "Czerny_Carl_1791_1857.xml", "indexed": true, "pubinfo": "\u00d6BL Online-Edition, Lfg. 4 (30.11.2015)", "author": "", "orig_id": 1417615}}, {"model": "metainfo.text", "pk": 11195, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11196, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11197, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11198, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11199, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11200, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11203, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11204, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11205, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11206, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11207, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11210, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11211, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11214, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11215, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11218, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11219, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11220, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11221, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11222, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11223, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11224, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11225, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11226, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11227, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11228, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11229, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11230, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11231, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11234, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11235, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11236, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11237, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11238, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11239, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11240, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11241, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11242, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11243, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11244, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11245, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11246, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11249, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11250, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11251, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11252, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11253, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11254, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11255, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11256, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11257, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11258, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11259, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11260, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11261, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11262, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11263, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11266, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11269, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11270, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11271, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11272, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11275, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11278, "fields": {"kind": 236, "text": "http://www.geonames.org/maps/google_46.547_15.596.html\r\nOthmar Reiser's Geburtsort ist Hrastje, der heute Pekre heisst, und neben Maribor liegt.", "source": null}}, {"model": "metainfo.text", "pk": 11279, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11280, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11281, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11284, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11285, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11286, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11287, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11288, "fields": {"kind": 236, "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, B\u00f6hmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der b\u00f6hmische Lachovice der richtige", "source": null}}, {"model": "metainfo.text", "pk": 11289, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11290, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11291, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11292, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11293, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11294, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11299, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11300, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11301, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11302, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11303, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11304, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11305, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11308, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11311, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11312, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11313, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11314, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11317, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11318, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11319, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11320, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11321, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11322, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11323, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11324, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11325, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11326, "fields": {"kind": 236, "text": "ziemlich viele \u00d6BL labels f\u00fcr Meran!", "source": null}}, {"model": "metainfo.text", "pk": 11327, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11330, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11331, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11334, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11335, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11336, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11337, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11338, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11339, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11342, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11343, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11344, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11345, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11346, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11347, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11348, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11349, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11350, "fields": {"kind": 2, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 11351, "fields": {"kind": 236, "text": "", "source": null}}, {"model": "metainfo.text", "pk": 12155, "fields": {"kind": 130, "text": "Sohn von Joseph T. und Fortun\u00e9e Stein (urkundl.; vermutl. jedoch illegitimer Sohn von \u00bfFranz Josef F\u00fcrst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers Fran\u00e7ois Boucher und Tochter des Operns\u00e4ngers Luigi Lablache, verheiratet. \u2013 T. zog 1822 nach Wien, wo er Klavierunterricht beim Ersten Fagottisten der Hofoper, August Mittag, erhielt und das polytechn. Inst. besucht haben soll (nicht nachweisbar). In weiterer Folge stud. er bei \u00bfSimon Sechter (Theorie) und \u00bfJohann Nep. Hummel (Klavier). 1826 trat er erstmals, zun\u00e4chst in Wr. Privatzirkeln, als Pianist auf. 1830 f\u00fchrte ihn die erste Auslandstournee nach Dtld. und England, anschlie\u00dfend in andere europ. L\u00e4nder. Nach weiteren Stud. bei \u00bfIgnaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 gro\u00dfe Erfolge in Paris und triumphierte 1837\u201348 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und S\u00fcdamerika, wo er u.\u00a0a. in New York eine Klavierschule gr\u00fcndete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die n\u00e4chsten Jahre zur\u00fcckgezogen lebte. Nach Wiederaufnahme seiner Tourneen 1862 (London und Paris) ging er 1863 abermals nach Brasilien, danach schied er aus dem Konzertleben aus. Einem Brief Felix Mendelssohn-Bartholdys zufolge galt T. bis zur Jh.mitte neben \u00bfFranz v. Liszt als gr\u00f6\u00dfter Klaviervirtuose seiner Zeit. 1837 kam es zu einem \u00f6ff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle \u00d6ffentlichkeit sah Liszt als Romantiker, w\u00e4hrend der von seinem Auftreten her aristokrat. T. eher f\u00fcr ein klassizist. Musikideal stand. Auch die Qualit\u00e4t der Kompositionen beider wurde kontr\u00e4r beurteilt. Liszt bezeichnete T.s Werke in der \u201eRevue et gazette musicale de Paris\u201c als eine Mischung aus Monotonie und Unverm\u00f6gen. Die so aufgeschaukelte Rivalit\u00e4t kulminierte, als beide Musiker an einem von F\u00fcrstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Fr\u00e9d\u00e9ric Chopin und \u00bfCarl Czerny, an einer Kollektivkomposition f\u00fcr die F\u00fcrstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen \u00fcber Themen bekannter Opern dessen gr\u00f6\u00dften Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zur\u00fcck. T.s Personalstil kennzeichneten v.\u00a0a. das Hervortreten der auf beide H\u00e4nde verteilten Melodie in der Mittellage, w\u00e4hrend diese u.\u00a0a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. \u201eL\u2019Art du chant appliqu\u00e9 au piano\u201c festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosit\u00e4t, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n", "source": 531}}, {"model": "metainfo.text", "pk": 12156, "fields": {"kind": 131, "text": "Thalberg Sigismund (Fortun\u00e9 Fran\u00e7ois), Pianist und Komponist. Geb. P\u00e2quis (Gen\u00e8ve-Bains des P\u00e2quis, CH), 8.\u00a01. 1812; gest. Posillipo (Napoli, I), 27.\u00a04. 1871.", "source": 531}}, {"model": "metainfo.text", "pk": 21722, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckers; lebte ab ca. 1781 bei seinem Gro\u00dfvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurf\u00fcrstlichen Hof in Bonn t\u00e4tig war. 1787 wurde R. Fl\u00f6tist der Hofkapelle und begann zu komponieren. 1794\u201399 lebte er in Hamburg und verdiente seinen Lebensunterhalt mit Musikunterricht, ab 1799 in Paris, wo er vergeblich auf die Urauff. zweier von ihm komponierter Opern hoffte. 1802\u201308 war er in Wien und stud. u. a. bei J. Haydn, Albrechtsberger und Salieri Komposition. Ab 1808 lebte R. in Paris, ab 1818 als Prof. f\u00fcr Komposition. Als Musikp\u00e4dagoge und Theoretiker erlangte er gro\u00dfes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Sch\u00fclern geh\u00f6rten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterlie\u00df auch als Komponist ein wertvolles und umfangreiches \u0152uvre. Mit seinen 24 Bl\u00e4serquintetten schuf er die Grundlage f\u00fcr das Repertoire derartiger Kammerensembles.\n", "source": 5804}}, {"model": "metainfo.text", "pk": 21723, "fields": {"kind": 131, "text": "Reicha\u00a0(Rejcha) Anton (Anton\u00edn) Josef, Komponist und Musikp\u00e4dagoge. * Prag, 26. 2. 1770; \u2020 Paris, 28. 5. 1836.", "source": 5804}}, {"model": "metainfo.text", "pk": 27186, "fields": {"kind": 130, "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808\u201320 lebte er in Wien und stud. bei Streicher, Albrechtsberger und Salieri. M. unterrichtete selbst, auch in der besten Ges. M., dessen Ruhm als Pianist und Komponist (seine Variationen \u00fcber den Alexander-Marsch von 1815 blieben jahrzehntelang ein Pr\u00fcfstein pianist. Virtuosit\u00e4t) st\u00e4ndig wuchs, trat in Prag, Leipzig und Dresden auf. 1820 machte er ausgedehnte Reisen durch Deutschland, Holland, Belgien, Frankreich und England und hielt sich auch wieder l\u00e4nger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 \u00fcbersiedelte M. nach London und geh\u00f6rte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den f\u00fchrenden Pers\u00f6nlichkeiten des Musiklebens. 1846 \u00fcbernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der gro\u00dfen Pianisten seiner Zeit und setzte sich vor allem f\u00fcr Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des \u201eFidelio\u201c hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bem\u00fchte er sich tatkr\u00e4ftig um dessen Unterst\u00fctzung durch die Londoner Philharmonic Society.\n", "source": 8543}}, {"model": "metainfo.text", "pk": 27187, "fields": {"kind": 131, "text": "Moscheles\u00a0Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; \u2020 Leipzig, 10. 3. 1870.", "source": 8543}}, {"model": "metainfo.text", "pk": 30762, "fields": {"kind": 130, "text": "Sohn des Esterh\u00e1zyschen Verwalters Adam L. (1776\u20131827), Neffe des Vorigen, Vetter des Arztes und Schriftstellers Joseph Anton L. (s. d.) und des Folgenden; erhielt den ersten Klavierunterricht vom Vater. Im August oder September 1819 d\u00fcrfte er in Baden bei Wien erstmals \u00f6ff. aufgetreten sein. Weitere Konzerte folgten in \u00d6denburg und Pre\u00dfburg. Auf Grund des letzten (26. 11. 1820) setzten ihm ung. Magnaten ein Studienstipendium aus. Da J. N. Hummels (s. d.) Forderungen zu hoch waren, brachte der Vater den Knaben nach Wien zu C. Czerny (s. d.). Neben dessen Klavierunterricht erhielt er Unterweisung in Musiktheorie durch A. Salieri. 1822 wurde der Elfj\u00e4hrige zur Mitarbeit an A. Diabellis (s. d.) \u201eVaterl\u00e4ndischem K\u00fcnstlerverein\u201c eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er \u00f6ff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum gek\u00fc\u00dft. Der Erl\u00f6s dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die M\u00f6glichkeit zur \u00dcbersiedlung nach Paris; auf der Reise und sp\u00e4ter von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausl\u00e4nder die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., haupts\u00e4chlich nach der Methode Kalkbrenners (s. d.) fort, stud. aber Musiktheorie bei F. Paer und A. Reicha. Er blieb bis 1837 in Paris und unterrichtete in den h\u00f6chsten Kreisen. Berlioz und Paganini regten seine k\u00fcnstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem pers\u00f6nlichen Kontakt stand. 1835\u201339 lebte L. mit Gfn. Marie d\u2019Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die K\u00fcnstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzertt\u00e4tigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa f\u00fchrte. In Kiew begegnete er 1847 der F\u00fcrstin Carolyne Sayn-Wittgenstein, welche ihren Mann verlie\u00df und sich schlie\u00dflich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum gro\u00dfherzoglichen Kapellmeister in au\u00dferordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausge\u00fcbt hatte und nun in vollem Ma\u00dfe aufnahm. Seine Lebensgemeinschaft mit der F\u00fcrstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verh\u00e4ltnissen entfaltete er eine erfolgreiche k\u00fcnstler. T\u00e4tigkeit, welche in dem selbstlosen Eintreten f\u00fcr R. Wagner gipfelte. Wahrscheinlich unter dem Einflu\u00df der F\u00fcrstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither f\u00fchrte er ein unstetes und unbefriedigtes Wanderleben, kehrte f\u00fcr kurze Zeit auch nach Weimar zur\u00fcck, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fu\u00dfend, die Klaviertechnik ungeheuer ausgebaut, in Richtung auf den Orchesterklang hin, auf eine neue Gesanglichkeit vom romant. Lied her und auf die von ihm bedeutend erweiterten M\u00f6glichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilit\u00e4t des Anschlages. Nicht weniger hat L. als Komponist gewirkt, hier vor allem auf harmon. Gebiet, wegweisend aber auch in der Auslotung der techn. und formalen M\u00f6glichkeiten \u00fcberhaupt und in der Programmatik der inhaltlichen Erf\u00fcllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gr\u00fcndete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n", "source": 10332}}, {"model": "metainfo.text", "pk": 30763, "fields": {"kind": 131, "text": "Liszt\u00a0Franz von, Komponist. * Raiding, Kom. \u00d6denburg (Burgenland), 22. 10. 1811; \u2020 Bayreuth (Oberfranken), 31. 7. 1886.", "source": 10332}}, {"model": "metainfo.text", "pk": 44908, "fields": {"kind": 130, "text": "Von ihrer Mutter und t\u00fcchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male \u00f6ffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n", "source": 17415}}, {"model": "metainfo.text", "pk": 44909, "fields": {"kind": 131, "text": "Blahetka\u00a0Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; \u2020 Boulogne sur Mer, 1. 1. 1885.", "source": 17415}}, {"model": "metainfo.text", "pk": 45290, "fields": {"kind": 130, "text": "B. stammt aus einer aus dem Niederl\u00e4ndischen eingewanderten Familie, sein erster Lehrer, Chr. G. Neefe, vermittelte ihm die Kenntnis bedeutender Meisterwerke und machte publizistisch die Fachwelt auf das junge Talent aufmerksam und das Wohlwollen des Kurf\u00fcrsten Maximilian, des j\u00fcngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde f\u00fcr den weiteren \u00e4u\u00dferen Lebensweg B.s entscheidend, zumal der aus \u00d6sterr. an den K\u00f6lner Hof gekommene Graf Franz Adam Waldstein ihm die f\u00fcr die ersehnte Wr. Lehrzeit n\u00f6tige geldliche Unterst\u00fctzung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd f\u00f6rderte, wurde aber nicht sein Sch\u00fcler, da die Todeskrankheit der Mutter B.s R\u00fcckkehr forderte. Als sie am 17. 7. 1787 starb, mu\u00dfte B. nun f\u00fcr den entm\u00fcndigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurf\u00fcrstliche Hilfe nach Wien, wo er den gew\u00fcnschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schlo\u00df. Seine von da an w\u00e4hrende Bindung an Wien ist vor allem Erzh. Rudolf und den F\u00fcrsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosph\u00e4re Wiens, in der B. zunehmend Verst\u00e4ndnis als K\u00fcnstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikst\u00e4dten begehrt wurden, erfolgte oft auch widerrechtlich; B.s Kampf dagegen war nur ein Zug seiner steigenden inneren Auflehnung gegen manche Unvollkommenheiten des polit. und soz. Lebens, mit deren Problematik sich sein Gerechtigkeitssinn oft st\u00fcrmisch auseinandersetzte (s. die annullierte Widmung der\u201cEroica\u201d an Napoleon, als dieser sich zum K. kr\u00f6nen lie\u00df). Um 1800 begann sein Geh\u00f6r zu schwinden. 1815 wurde er taub. Das \u201eHeiligenst\u00e4dter Testament\u201c von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die \u00fcbermenschlichen moralischen Kr\u00e4fte, die ihn dennoch am Werk lie\u00dfen, das sich in jener Katastrophenzeit zur F\u00fclle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der fr\u00fcher als Interpret seiner Werke oder als Improvisator am Klavier und spr\u00fchender Geist gesellschaftlich brilliert hatte, immer mehr abschlo\u00df, l\u00f6sten die Freunde Oliva, Schindler und Holz jene gl\u00e4nzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste gro\u00dfe Musiker, der ein warmes Verh\u00e4ltnis zur Natur bekennt, auch hierin Haydn n\u00e4her als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als K\u00fcnder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 k\u00fcndigt sich sein Leberleiden an, das B.s sonst so robuste Gesundheit untergrub; 1826, auf dem Heimweg von einem Landaufenthalt bei seinem Bruder Johann in Gneixendorf bei Krems, \u00fcberfiel ihn eine Lungenentz\u00fcndung, zu der pl\u00f6tzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n", "source": 17608}}, {"model": "metainfo.text", "pk": 45291, "fields": {"kind": 131, "text": "Beethoven\u00a0Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; \u2020 Wien, 26. 3. 1827.", "source": 17608}}, {"model": "metainfo.text", "pk": 47030, "fields": {"kind": 130, "text": "Tochter von \u2192Adolf B\u00e4uerle und seiner ersten Frau Antonie B\u00e4uerle, geb. Egger. \u2013 B. zeigte schon in fr\u00fchester Kindheit eine Doppelbegabung f\u00fcr Musik und Sprachen, die in ihrer Erziehung sehr gef\u00f6rdert wurde. So erhielt sie Unterricht bei \u2192Carl Czerny. Dennoch beschr\u00e4nkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und \u00e4hnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Gro\u00dfbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische T\u00e4tigkeit f\u00fcr die \u201eWiener Theater-Zeitung\u201c (\u201eWiener allgemeine Theaterzeitung\u201c) ihres Vaters unter ihren Pseudonymen (auch \u201eF\u2026\u201c). B. war au\u00dferdem auch eine \u00fcberaus produktive \u00dcbersetzerin aus dem Englischen und Franz\u00f6sischen, u. a. \u00fcbertrug sie die Novelle \u201eDer Spion der vornehmen Welt\u201c von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), \u201eMi\u00df Mary, oder die Erzieherin\u201c (in: Wiener allgemeine Zeitung f\u00fcr Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und \u201eGilbert und Gilberte\u201c von Eug\u00e8ne Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), \u201eAntonie, die Tochter der Berge\u201c (ebd., 1850, Nr. 157\u2013176, 180\u2013201), \u201eDer letzte Irl\u00e4nder\u201c (ebd., 1851, Nr. 293ff.) und \u201eDie Marquise von Norville\u201c von \u00c9lie Berthet (1856), \u201eConcino Concini oder Die Tochter des Blinden\u201c (1855, 1856 Neuaufl. unter dem Titel \u201eDer Menschenj\u00e4ger oder Der Blinde\u201c) von Emanuele Gonzal\u00e8s sowie \u201eDie letzte der Feen\u201c von George Payne Rainsford James (1849). Einige dieser \u00dcbersetzungen erschienen auch im \u201eBelletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen\u201c des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der \u201eOstdeutschen Post\u201c und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift \u201eDer Salon\u201c erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, f\u00fchrte sie gemeinsam mit dem Redakteur Moritz Morl\u00e4nder (eigentlich Moriz Engl\u00e4nder) die \u201eWiener Theaterzeitung\u201c ab J\u00e4nner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. v\u00f6llig zur\u00fcckgezogen.\n", "source": 17852}}, {"model": "metainfo.text", "pk": 47031, "fields": {"kind": 131, "text": "B\u00e4uerle Friederike, Ps. Friedrich Horn, Schriftstellerin, \u00dcbersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Nieder\u00f6sterreich), 17. 7. 1896.", "source": 17852}}, {"model": "metainfo.text", "pk": 47126, "fields": {"kind": 130, "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, B\u00f6hmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zun\u00e4chst als Oboist beim Milit\u00e4r und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. \u2013 Wenzel Czernys T\u00e4tigkeit als Klavierlehrer f\u00fchrte die Familie 1791\u201395 nach Polen. So erhielt C., der bereits mit drei Jahren Klavier zu spielen begann und mit sieben seine ersten Kompositionen zu Papier brachte, den ersten Klavierunterricht auch von seinem Vater und konnte dank seiner au\u00dfergew\u00f6hnlichen Begabung bereits als Neunj\u00e4hriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung f\u00fcr C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei \u2192Ludwig van Beethoven, der ihn unverz\u00fcglich als Sch\u00fcler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Urauff\u00fchrung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere fr\u00fch, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Sch\u00fclerinnen und Sch\u00fcler waren Theodor D\u00f6hler, Stephen Heller, \u2192Sigismund Thalberg, \u2192Marie Leopoldine Blahetka, Ninette de Belleville sowie \u2192Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine \u201e\u00c9tudes d\u2019ex\u00e9cution transcendante\u201c). Auch Beethovens Neffe Karl wurde ein Sch\u00fcler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, \u2192Ignaz Moscheles\u2019 und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken f\u00fcr Klavier verbunden, die sich an Anf\u00e4nger (etwa \u201eDie Schule der Gel\u00e4ufigkeit\u201c) ebenso richten wie an bereits gereifte Pianisten (\u201eSchule des Virtuosen\u201c). Dazu kommen St\u00fccke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die gr\u00f6\u00dfte Popularit\u00e4t erlangte C.s \u201eVollst\u00e4ndige theoretisch-practische Pianoforte-Schule \u2026\u201c (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen \u0152uvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Ch\u00f6re, Ges\u00e4nge und B\u00fchnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einfl\u00fcsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten St\u00fccke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Dar\u00fcber hinaus war C. als Musiktheoretiker t\u00e4tig. Er verfasste eine \u201eSystematische Anleitung zum Fantasieren auf dem Pianoforte\u201c, z\u00e4hlte zu den ersten Editoren einer Bach-Gesamtausgabe und \u00fcbersetzte vier umfangreiche Kompositions-Traktate von \u2192Anton Reicha. 1842 schrieb C. seine Autobiographie \u201eErinnerungen aus meinem Leben\u201c. Abgesehen von einigen Reisen nach Italien und einem Aufenthalt in Frankreich (1837) sowie England verbrachte er sein gesamtes Leben in seiner Heimatstadt. Er starb als wohlhabender Mann und vermachte sein Verm\u00f6gen k\u00fcnstlerischen und wohlt\u00e4tigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n", "source": 18525}}, {"model": "metainfo.text", "pk": 47127, "fields": {"kind": 131, "text": "Czerny (\u010cern\u00fd) Carl, Pianist, P\u00e4dagoge und Komponist. Geb. Leopoldstadt, Nieder\u00f6sterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); r\u00f6m.-kath.", "source": 18525}}, {"model": "metainfo.text", "pk": 47200, "fields": {"kind": 130, "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und National\u00f6konomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Ru\u00dfland auf, war sp\u00e4ter Mitleiter der \u201eFreien B\u00fchne\u201c in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, B\u00fchnendichter und Theaterkritiker. 1909 heiratete er die gro\u00dfe Wagnerinterpretin, Hofoperns\u00e4ngerin Anna v. Mildenburg (s. u.). 1912 \u00fcbersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni\u2013November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in M\u00fcnchen. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von au\u00dfergew\u00f6hnlicher Menschenkenntnis, ein gl\u00e4nzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., geh\u00f6ren zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen \u00d6sterreich.\n", "source": 102}}, {"model": "metainfo.text", "pk": 47201, "fields": {"kind": 131, "text": "Bahr\u00a0Hermann, Dichter und Schriftsteller. * Linz (O.\u00d6.), 19. 7. 1863; \u2020 M\u00fcnchen, 14. 1. 1934.", "source": 102}}, {"model": "metainfo.text", "pk": 47204, "fields": {"kind": 130, "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt t\u00e4tig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er kl\u00e4rte die Ursachen der hohen S\u00e4uglingssterblichkeit bei k\u00fcnstlicher Ern\u00e4hrung und besch\u00e4ftigte sich eingehend mit der Tuberkulose im Kindesalter. Sp\u00e4ter lehrte er in Berlin, Stra\u00dfburg und D\u00fcsseldorf. Durch Cz., einen der Begr\u00fcnder und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine gro\u00dfe Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine f\u00fchrende Stellung in der Kinderheilkunde inne.\n", "source": 114}}, {"model": "metainfo.text", "pk": 47205, "fields": {"kind": 131, "text": "Czerny\u00a0Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; \u2020 Berlin, 3. 10. 1941.", "source": 114}}, {"model": "metainfo.text", "pk": 47206, "fields": {"kind": 130, "text": "Absolvierte die Theres, Milit. Akad., 1842\u201348 \u00f6sterr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, fl\u00fcchtete 1849 nach Deutschland und lebte von 1850\u201357 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Pr\u00e4s. Mitre machte ihn zum Chef der Sektion des milit. Ingenieurwesens. Als solcher nahm er die Karte des paraguayisch-brasilianischen Grenzgebietes von Argentinien auf. lm Krieg der Tripelallianz gegen Paraguay 1865\u201369 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa F\u00e9 nach Esperanza und plante die Festungen in den Provinzen C\u00f3rdoba, Santa F\u00e9 und Buenos Aires. 1870\u201374 Leiter des Colegio Militar; 1875\u2013 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. f\u00fcr Mathematik in Concepci\u00f3n del Uruguay. 1884 in die Pr\u00fcfungskomm. des Colegio Militar und in die Comisi\u00f3n revisadora y proyectora berufen, 1884\u201395 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n", "source": 116}}, {"model": "metainfo.text", "pk": 47207, "fields": {"kind": 131, "text": "Czetz\u00a0Johann. * Gid\u00f3falva, 8. 6. 1822; \u2020 Buenos Aires, 6. 9. 1904.", "source": 116}}, {"model": "metainfo.text", "pk": 47208, "fields": {"kind": 130, "text": "Stud. in Br\u00fcnn und Olm\u00fctz unter Leitung seines Oheims Caroni, trat 1808 in das m\u00e4hrisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekret\u00e4r bei der Obersten Justizstelle in Wien.\n", "source": 117}}, {"model": "metainfo.text", "pk": 47209, "fields": {"kind": 131, "text": "Czikann\u00a0Johann Jakob Heinrich, Beamter und Schriftsteller. * Br\u00fcnn, 10. 7. 1789; \u2020 Br\u00fcnn, 10. 6. 1855.", "source": 117}}, {"model": "metainfo.text", "pk": 47210, "fields": {"kind": 130, "text": "Sohn des Christian C.-G., trat 1826 in die Armee ein, 1839 Obst. und Rgtskmdt., 1846 GM. und Brigadier in Prag, 1848 in Mailand; k\u00e4mpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenb\u00fcrgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. Gy\u00f6rgy und Kaszon-Ujfalu; Landeskommandierender in B\u00f6hmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, k\u00e4mpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vlie\u00df; 1866 Kmdt. des 1. Armeekorps gegen Preu\u00dfen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n", "source": 108}}, {"model": "metainfo.text", "pk": 47211, "fields": {"kind": 131, "text": "Clam-Gallas\u00a0Eduard Graf, General. * Prag, 11. 3. 1805; \u2020 Wien, 17. 3. 1891.", "source": 108}}, {"model": "metainfo.text", "pk": 47212, "fields": {"kind": 130, "text": "\u00c4ltester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853\u201359 Landespr\u00e4s. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorit\u00e4t; haupts\u00e4chlich nach seinen Vorschl\u00e4gen entstand das Oktoberdiplom; F\u00fchrer der feudal-klerikal-slaw. und f\u00f6deralistischen Partei, seit 1862 nur mehr im Landtag. Er war einer der Urheber der Abstinenzpolitik der Tschechen und konzipierte 1871 die Fundamentalartikel; unter Taaffe kehrten die Tschechen 1879 in den Reichsrat zur\u00fcck und C. war wie vorher als Generalreferent des Budgets t\u00e4tig; 1884 zog er sich krankheitshalber vom \u00f6ffentlichen Leben zur\u00fcck; seit 1859 Geh. Rat, seit 1861 Pr\u00e4s. des B\u00f6hmischen Mus., Ehrenmitgl. der Kgl. B\u00f6hm. Ges. d. Wiss.\n", "source": 109}}, {"model": "metainfo.text", "pk": 47213, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; \u2020 Prag, 5. 6. 1887.", "source": 109}}, {"model": "metainfo.text", "pk": 47214, "fields": {"kind": 130, "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des F\u00fcrsten Thun F\u00fchrer der Rechten im Herrenhaus, stand hier und im b\u00f6hmischen Landtag den Tschechen nahe. Im Weltkrieg k\u00e4mpfte er an der russ. und an der italien. Front und r\u00fcckte von den Tschechen ab, als diese immer mehr auf die Zerst\u00f6rung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpr\u00e4s. Er suchte vergeblich, Vertreter aller \u00f6sterr. Nationalit\u00e4ten ins Kabinett zu berufen, um einen langfristigen Ausgleich mit Ungarn zustandezubringen, aber die Tschechen lehnten ab; er setzte das Parlament erfolglos wieder in seine Rechte ein, verstimmte die Deutschen, deren W\u00fcnsche nicht erf\u00fcllt wurden und vermochte nicht, die Tschechen, S\u00fcdslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917\u201319 Milit\u00e4rgouverneur von Montenegro. Pr\u00e4s. der Vereinigung kathol. Edelleute \u00d6sterr., Ritter des Ordens vom Goldenen Vlie\u00df, Geh. Rat und K\u00e4mmerer.\n", "source": 110}}, {"model": "metainfo.text", "pk": 47215, "fields": {"kind": 131, "text": "Clam-Martinic\u00a0Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; \u2020 Clam b. Grein, 7. 3. 1932.", "source": 110}}, {"model": "metainfo.text", "pk": 47216, "fields": {"kind": 130, "text": "Stud. in Marburg und Gie\u00dfen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. f\u00fcr Zoologie in W\u00fcrzburg, 1870 in G\u00f6ttingen, 1873 f\u00fcr Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gr\u00fcnder er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in G\u00f6ttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n", "source": 111}}, {"model": "metainfo.text", "pk": 47217, "fields": {"kind": 131, "text": "Claus\u00a0Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; \u2020 Wien, 18. 1. 1899.", "source": 111}}, {"model": "metainfo.text", "pk": 47218, "fields": {"kind": 130, "text": "Stud. in G\u00f6ttingen und Berlin, 1855 Dr. phil., 1857\u201360 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. f\u00fcr Arch\u00e4ologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete arch\u00e4ologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Arch\u00e4ologie, Kunstgeschichte und klass. Philologie verbindende Lehrt\u00e4tigkeit. Er begr\u00fcndete die Wr. Vorlegebl\u00e4tter, errichtete 1876 zusammen mit O. Hirschfeld das Arch\u00e4olog.-epigr. Seminar, f\u00fchrte zwei \u00f6sterr. Grabungskampagnen auf der Insel Samothrake durch, rief das gro\u00dfe Werk der Wr. Akad. d. Wiss. \u201eDie attischen Grabreliefs\u201c ins Leben und gab in 3 Heften der Denkschriften \u201eR\u00f6mische Bildwerke einheimischen Fundorts in \u00d6sterreich\u201c heraus. 1877\u201387 \u00fcbernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887\u20131905 leitete er als Gen.-Sekr. das Arch\u00e4olog. Inst. des Dt. Reiches, dem er 1903 in der R\u00f6m.-german. Komm. auch eine Zentralstelle f\u00fcr die arch\u00e4olog. Heimatforschung anschlo\u00df. In seinen beiden letzten Stellungen galten seine Arbeiten vor allem den von ihm angeregten Ausgrabungen in Pergamon und den dort gemachten Funden. C. hat die versch. Gebiete der Arch\u00e4ologie durch bahnbrechende Werke gef\u00f6rdert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n", "source": 112}}, {"model": "metainfo.text", "pk": 47219, "fields": {"kind": 131, "text": "Conze\u00a0Alexander, Arch\u00e4ologe. * Hannover, 10. 12. 1831; \u2020 Berlin, 19. 7. 1914.", "source": 112}}, {"model": "metainfo.text", "pk": 47220, "fields": {"kind": 130, "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. K\u00fcnste, hatte 1860\u201364 ein Atelier in M\u00fcnchen, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg f\u00fcr das Arsenal auszuf\u00fchren, leitete 1883 die Jubil\u00e4umsausstellung zur T\u00fcrkenbelagerung im Rathaus, stellte 1886 die st\u00e4dtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. K\u00fcnste.\n", "source": 113}}, {"model": "metainfo.text", "pk": 47221, "fields": {"kind": 131, "text": "Costenoble\u00a0Karl, Bildhauer. * Wien, 26. 11. 1837; \u2020 Wien, 20. 6. 1907.", "source": 113}}, {"model": "metainfo.text", "pk": 47226, "fields": {"kind": 130, "text": "Stud. in Prag Jus; ao. Prof. f\u00fcr Rechtsgeschichte an der Univ. Prag; Mitgl. der B\u00f6hm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des b\u00f6hm. Stadtrechtes.\n", "source": 103}}, {"model": "metainfo.text", "pk": 47227, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Jarom\u00edr, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; \u2020 Prag, 16. 10. 1914.", "source": 103}}, {"model": "metainfo.text", "pk": 47228, "fields": {"kind": 130, "text": "Sohn des Dichters Franz Ladisl. C., kam mit seinem Vater nach Breslau, wo er die unteren Klassen des kathol. Gymn. besuchte, Deutsch lernte und sein erstes Herbarium anlegte. 1849 kehrte die Familie nach Prag zur\u00fcck. Nach dem Tode des Vaters nahm sich der Physiologe Purkyne seiner an und bei ihm lernte C. auch die exakte Methode der mikroskopischen Untersuchung. Noch vor Beendigung seiner Studien erschienen die ersten botanischen Aufs\u00e4tze. Nach Vollendung der Univ. wurde er Gymnasialsupplent in Komotau, wo er die Flora des Erzgebirges kennenlernte. 1860 Kustos am Botanischen Mus. in Prag, 1863 Dr.phil., 1866 Doz. an der Prager Technik, dann Vorstand der botanischen Sektion des \u201eKomitees f\u00fcr die naturwiss. Durchforschung B\u00f6hmens\u201c und Mitgl. der \u201eB\u00f6hmischen Ges. d. Wiss.\u201c\n", "source": 104}}, {"model": "metainfo.text", "pk": 47229, "fields": {"kind": 131, "text": "Celakovsk\u00fd\u00a0Ladislav, Botaniker. * Prag, 29. 11. 1834; \u2020 Prag, 24. 11. 1902.", "source": 104}}, {"model": "metainfo.text", "pk": 47230, "fields": {"kind": 130, "text": "Gr\u00fcndete 1842 eine Fabrik f\u00fcr Blechblasinstrumente und baute eine Anzahl versch. geformter Kontraba\u00dfinstrumente f\u00fcr die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n", "source": 105}}, {"model": "metainfo.text", "pk": 47231, "fields": {"kind": 131, "text": "Cerven\u00fd\u00a0V\u00e1clav Franti\u0161ek, Instrumentenmacher. * Dubec (B\u00f6hmen), 27. 9. 1819; \u2020 K\u00f6niggr\u00e4tz, 19. l. 1896.", "source": 105}}, {"model": "metainfo.text", "pk": 47232, "fields": {"kind": 130, "text": "Sohn des Malers Matthias Ch., befa\u00dfte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. K\u00fcnste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n", "source": 106}}, {"model": "metainfo.text", "pk": 47233, "fields": {"kind": 131, "text": "Charlemont\u00a0Hugo de, Maler. * Jamnitz, 18. 3. 1850; \u2020 Wien, 18. 3. 1939.", "source": 106}}, {"model": "metainfo.text", "pk": 47234, "fields": {"kind": 130, "text": "Stud. in Prag, 1771 Baccal., 1772 Priester, 1777 Pfarrer, 1779 Mitgl. des Prager Domkapitels, 1795 Bischof von Canea in partib., 1802 Bischof von Leitmeritz, hier als \u201eVater der Armen\u201c gepriesen, 1814 F\u00fcrsterzb. von Prag, 1815 inthronisiert. Gr\u00fcndete Schulen und Wohlt\u00e4tigkeitsanstalten.\n", "source": 107}}, {"model": "metainfo.text", "pk": 47235, "fields": {"kind": 131, "text": "Chlumczansk\u00fd\u00a0Wenzel Leopold von, Bischof. * Hostitz (B\u00f6hmen), 15. 11. 1749; \u2020 14. 6. 1830.", "source": 107}}, {"model": "metainfo.text", "pk": 47236, "fields": {"kind": 130, "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881\u201386 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollm\u00e4chtigter Min. in Belgrad, vertrat 1908 \u00d6sterr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913\u201315 a o. und bevollm\u00e4chtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der V\u00f6lkerbunds- und Friedensbewegung t\u00e4tig, Pr\u00e4s. der \u00f6sterr. V\u00f6lkerbundliga; Pazifist; Freund und F\u00f6rderer von Kunst und Wiss.\n", "source": 121}}, {"model": "metainfo.text", "pk": 47237, "fields": {"kind": 131, "text": "Dumba\u00a0Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; \u2020 Bodensdorf/Ossiachersee, 6. 1. 1947.", "source": 121}}, {"model": "metainfo.text", "pk": 47238, "fields": {"kind": 130, "text": "Stud. in Stuttgart und Berlin, arbeitete l\u00e4ngere Zeit im Atelier Siccardsburgs und Van der N\u00fclls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n", "source": 120}}, {"model": "metainfo.text", "pk": 47239, "fields": {"kind": 131, "text": "Doderer\u00a0Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; \u2020 Wien, 13. 5. 1900.", "source": 120}}, {"model": "metainfo.text", "pk": 47240, "fields": {"kind": 130, "text": "Sohn eines Bauern, zeigte fr\u00fch Interesse f\u00fcr Schnitzen und Zeichnen, aber erst nach dem Tode des Vaters gab er den Hof auf und ging 1860 nach Innsbruck, um bei Stolz die Bildschnitzerei zu erlernen. Auf dessen Rat wandte er sich der Malerei zu, ging 1862 an die Akad. in M\u00fcnchen, 1863\u201365 nach Paris, dann nach Tirol zur\u00fcck, 1867 wieder nach M\u00fcnchen, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einflu\u00df auf ihn aus\u00fcbte. 1878 Prof. an der M\u00fcnchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist au\u00dferdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten b\u00e4uerlichen Genremalerei.\n", "source": 118}}, {"model": "metainfo.text", "pk": 47241, "fields": {"kind": 131, "text": "Defregger\u00a0Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; \u2020 M\u00fcnchen, 2. 1. 1921.", "source": 118}}, {"model": "metainfo.text", "pk": 47242, "fields": {"kind": 130, "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899\u20131901 unter der Leitung von Sickel und Pastor am \u00d6sterr. Hist. Inst. in Rom, haupts\u00e4chlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917\u201346 (mit Unterbrechung von 1938\u201345) Ordinarius f\u00fcr Geschichte der Neuzeit. D., ein guter Kenner der Best\u00e4nde des Vat. Geheimarchivs, war 1929\u201338 als Nachfolger Pastors Dir. des \u00d6sterr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das \u00d6sterr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n", "source": 119}}, {"model": "metainfo.text", "pk": 47243, "fields": {"kind": 131, "text": "Dengel\u00a0Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; \u2020 Innsbruck, 9. 9. 1947.", "source": 119}}, {"model": "metainfo.text", "pk": 47276, "fields": {"kind": 130, "text": "Startete 1926 das erstemal bei einem Sch\u00fclerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen f\u00fcr M\u00e4dchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der M\u00e4dchen einen 1. und zwei 2. Pl\u00e4tze. 1929 gewann sie das Verbands-Neulings-Laufen f\u00fcr Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen f\u00fcr Damen in Innsbruck, Grummh\u00fcbel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen f\u00fcr Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Z\u00fcrich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die \u00f6sterr. Meisterschaft im Kunstlaufen f\u00fcr Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen f\u00fcr Damen in Z\u00fcrich und am Semmering. 1933 wurde sie abermals \u00f6sterr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine t\u00fcck. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein j\u00e4hes Ende.\n", "source": 122}}, {"model": "metainfo.text", "pk": 47277, "fields": {"kind": 131, "text": "Holovsky\u00a0Hilde, Kunstl\u00e4uferin. * Wien, 29. 4. 1917; \u2020 Wien, 3. 7. 1933.", "source": 122}}, {"model": "metainfo.text", "pk": 47384, "fields": {"kind": 130, "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887\u201394 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894\u20131903 Primarius an der Internen Abt. des K. Franz-Josef-Spitals und am Allg. Krankenhaus in Wien. 1901 tit. ao. Prof. an der Univ. Wien. 1903 o. Prof. f\u00fcr Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der \u00c4rzte in Wien, Mitgl. der Dt. Ges. f\u00fcr innere Med. und der Dt. Naturforscher und \u00c4rzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n", "source": 134}}, {"model": "metainfo.text", "pk": 47385, "fields": {"kind": 131, "text": "Lorenz\u00a0Heinrich, Internist. * Mies (Str\u00edbro, B\u00f6hmen), 13. 4. 1859; \u2020 Graz, 25. 3. 1945.", "source": 134}}, {"model": "metainfo.text", "pk": 47388, "fields": {"kind": 130, "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der \u201eKorrespondenz Wilhelm\u201c, die Polizei- und Hof\u00e4mter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim \u201eIllustrierten Wiener Extrablatt\u201c; 1876 war L. Kriegsberichterstatter im serb.-t\u00fcrk., 1877 im russ.-t\u00fcrk. und 1885 im bulgar.-serb. Krieg, 1878 in Bosnien. Ebenfalls als Reporter nahm L. am mazedon. Aufstand teil. Im Dienste seiner Redaktion unternahm er in den Folgejahren weite Reisen durch Europa, Nordamerika und weite Gebiete Afrikas. Am 2. 6. 1889 fuhr er mit einem Fiaker nach Paris zur Weltausst., wo ihm am 22. 6. ein triumphaler Empfang bereitet wurde. 1894 wurde er bei dem genannten Bl. stellvertretender Schriftleiter, 1898 (gem. mit J. Bauer, s.d.) Chefredakteur. L. war durch Feuilletons, Wr. Sittenschilderungen, Lokal- und Reiseberichte in weiten Kreisen bekannt geworden. Er war von wirkungsvoller Darstellungsf\u00e4higkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalit\u00e4t. Das \u201eIllustrierte Wiener Extrablatt\u201c war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des \u201eArmenvaters\u201c in seinem Bl. sowie als Viennensia-Sammler.\n", "source": 133}}, {"model": "metainfo.text", "pk": 47389, "fields": {"kind": 131, "text": "L\u00f6wy\u00a0Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (\u00dadlice, B\u00f6hmen), 14. 9. 1851; \u2020 Wien, 27. 12. 1905.", "source": 133}}, {"model": "metainfo.text", "pk": 47394, "fields": {"kind": 130, "text": "Sohn eines F\u00e4rbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und er\u00f6ffnete 1823 im 1. Bez. in der Weihburgg. einen Laden \u201eZur Kaiserin von \u00d6sterreich\u201c, 1824 einen Laden K\u00e4rntnerstr. 940, der 1844 vergr\u00f6\u00dfert wurde. 1824 wurde L. Meister und B\u00fcrger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glash\u00e4ndler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & G\u00f6rner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergr\u00f6\u00dferten Gesch\u00e4ftes vollst\u00e4ndig erneuert. L., nicht nur Glash\u00e4ndler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er h\u00e4ufig Reisen in Begleitung seiner S\u00f6hne Josef oder Ludwig unternahm), versuchte, nach franz\u00f6s. Pre\u00dfglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so da\u00df er viel franz\u00f6s. Pre\u00dfglas einf\u00fchren mu\u00dfte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenst\u00e4nde wurden nach Wien geliefert bzw. wurden auch Gegenst\u00e4nde nach L.s Entw\u00fcrfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten t\u00e4tig war, bezog Glas aus den b\u00f6hm. H\u00fctten und lie\u00df nach eigenen Mustern arbeiten. 1823\u201355 wurden Gl\u00e4ser im Biedermeierstil erzeugt. Die Fa. beteiligte sich an den Gewerbsproduktenausst. 1839 und 1845 in Wien, fertigte Spiegel und Luster an, wurde 1848 Sieger in einem Wettbewerb um die Beleuchtungseinrichtung im Palais des Vizekg. von \u00c4gypten und arbeitete f\u00fcr den Palazzo Reale in Venedig.\n", "source": 132}}, {"model": "metainfo.text", "pk": 47395, "fields": {"kind": 131, "text": "Lobmeyr\u00a0Josef, Fabrikant. * Grieskirchen (O.\u00d6.), 17. 3. 1792; \u2020 Wien, 8. 5. 1855.", "source": 132}}, {"model": "metainfo.text", "pk": 47402, "fields": {"kind": 130, "text": "Absolv. das Realgymn.; arbeitete bis 1868 f\u00fcr die Z. \u201eIllustrierte Welt\u201c, gab dann das demokrat. Bl. \u201eFreie Volksstimme\u201c heraus, war Korrespondent ausl\u00e4nd. Ztg. und begr\u00fcndete gem. mit S. Spitz 1870/71 das \u201e\u00d6sterreichisch-ungarische Volksblatt f\u00fcr Stadt und Land\u201c. Angeregt durch seine Bekanntschaft mit dem National\u00f6konomen L. v. Stein stud. er Volkswirtschaft und Statistik und gr\u00fcndete 1874 das Fachbl. \u201eGambrinus\u201c, welches gro\u00dfes Ansehen geno\u00df. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und N\u00e4hrausst. in Wien, 1904 k. Rat, Pr\u00e4s. des \u00f6sterr. Fachschriftstellerverbandes, Vizepr\u00e4s. des Reichsverbandes \u00f6sterr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n", "source": 130}}, {"model": "metainfo.text", "pk": 47403, "fields": {"kind": 131, "text": "Lichtblau\u00a0Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; \u2020 Abbazia (Opatija, Istrien), 10. 5. 1908.", "source": 130}}, {"model": "metainfo.text", "pk": 47404, "fields": {"kind": 130, "text": "Nach Absolv. der jurid. Stud. in Wien 1898 Konzipient in der k. k. Finanzprokuratur in Wien, dann Rechtspraktikant (Auskultant) beim Landesgericht Innsbruck, 1899 Richteramtspr\u00fcfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht f\u00fcr Zivilrechtssachen in Wien und 1927 Rat des Oberlandesgerichtes Wien. 1931 Vorsitzender Rat des Oberlandesgerichtes, wurde er im gleichen Jahr zum Rat des Verwaltungsgerichtshofes ernannt. L., der schon als Richter am Exekutionsgericht Wien durch seine vorz\u00fcglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich gr\u00f6\u00dfte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das \u00f6sterr. Exekutionsrecht l\u00fcckenlos erfa\u00dft und seinen Zusammenhang mit den \u00fcbrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsvertr\u00e4gen niedergelegt, tw. ber\u00fccksichtigt und dadurch die Exekutionsgrunds\u00e4tze eines gro\u00dfen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n", "source": 131}}, {"model": "metainfo.text", "pk": 47405, "fields": {"kind": 131, "text": "Lichtblau\u00a0Ludwig, Jurist. * Olm\u00fctz (Olomouc, M\u00e4hren), 25. 2. 1875; \u2020 Wien, 19. 12. 1935.", "source": 131}}, {"model": "metainfo.text", "pk": 47410, "fields": {"kind": 130, "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtspr\u00fcfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. f\u00fcr Botanik an der Univ. Graz, 1868 ao., 1869 o. Prof., 1876/77 Dekan, 1884/85 Rektor, 1873 erhielt er auch die Dion. des Botan. Gartens und die Supplierung der Lehrkanzel f\u00fcr Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begr\u00fcnder des Botan. Inst. der Univ., das gegen\u00fcber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatb\u00fccherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und T\u00fcbingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Pr\u00e4s. des Naturwiss. Ver. f\u00fcr Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Ver\u00f6ff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die \u00fcber Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbst\u00e4ndig erschienenen Werke geh\u00f6ren dazu, von denen die umfangreiche Monographie \u201eUntersuchungen \u00fcber die Lebermoose\u201c in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im K\u00e4rntner Landtag (1869\u201372) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n", "source": 128}}, {"model": "metainfo.text", "pk": 47411, "fields": {"kind": 131, "text": "Leitgeb Hubert,\u00a0Botaniker. * Portendorf b. Klagenfurt (K\u00e4rnten), 20. 10. 1835; \u2020 Graz, 5. 4. 1888 (Selbstmord).", "source": 128}}, {"model": "metainfo.text", "pk": 47414, "fields": {"kind": 130, "text": "Vater des Anatomen J\u00f3zsef v. L. (s. d.), Gro\u00dfvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Pre\u00dfburg stud. er Med. an den Univ. Wien und Pest, 1799 Dr. med. und Chirurgus des Kom. Gran. 1808 Prof. der Physiol. und der Anatomie an der Univ. Pest, 1809/10 und 1815\u201317 Dekan, 1818/19 Rektor. 1819 Prof. der Physiol. an der Univ. Wien. 1825 Statthaltereirat und Protomedicus, war er bis zu seinem Tode Dir. der Pester med. Fak. 1808 wurde er in den ung. Adelsstand erhoben. L., einer der ersten, der die Pockenimpfung in Ungarn anwandte (1799), erwarb sich auch 1831 gro\u00dfe Verdienste um die Bek\u00e4mpfung der Cholera. Er ma\u00df den psych. Vorg\u00e4ngen bei Erkrankungen und auch in der Therapie gro\u00dfe Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n", "source": 129}}, {"model": "metainfo.text", "pk": 47415, "fields": {"kind": 131, "text": "Lenhoss\u00e9k\u00a0Mih\u00e1ly Ign\u00e1c von, Physiologe. * Pre\u00dfburg, 11. 5. 1773; \u2020 Ofen (Buda, Ungarn), 11. 2. 1840.", "source": 129}}, {"model": "metainfo.text", "pk": 47418, "fields": {"kind": 130, "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen K\u00fcnste in Wien (bei Griepenkerl, s.d.) und M\u00fcnchen (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gr\u00fcndung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, M\u00e4rchen- und Landschaftsbildern, bet\u00e4tigte sich aber nach Gr\u00fcndung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einflu\u00df, mit au\u00dferordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schlo\u00df Esterhazy bei Pre\u00dfburg, Privatwohnungen der Maler Goltz und Ranzoni), B\u00fchnen- und Kost\u00fcmentw\u00fcrfe, Stickereien, F\u00e4cher, Kassetten, M\u00f6bel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60j\u00e4hrigen Regierungsjubil\u00e4um von K. Franz Joseph I. (s. d.) 1908. 1900\u201303 war er (als Vorg\u00e4nger von A. Roller) Ausstattungschef der Wr. Hofoper.\n", "source": 125}}, {"model": "metainfo.text", "pk": 47419, "fields": {"kind": 131, "text": "Lefler\u00a0Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; \u2020 Wien, 14. 3. 1919.", "source": 125}}, {"model": "metainfo.text", "pk": 47420, "fields": {"kind": 130, "text": "Tochter eines Rechtsanwaltes; stud. an den Univ. Wien und Heidelberg (M. Weber) Staatswiss., 1918 Dr.rer.pol. Nach 1918 redigierte sie in Wien die Frauenbeilage der Gewerkschaftsztg. \u201eDer Metallarbeiter\u201c und arbeitete als Sekret\u00e4rin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 \u00fcbernahm sie das Referat f\u00fcr Frauenarbeit in der Wr. Kammer f\u00fcr Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. \u201eArbeit und Wirtschaft\u201c. L., welche sich der Sozialdemokrat. Partei \u00d6sterr. angeschlossen hatte, heiratete 1921 den Redakteur der \u201eArbeiter-Zeitung\u201c Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den sp\u00e4teren Vorsitzenden der Vereinigung der Zeitungskorrespondenten bei den Vereinten Nationen. Sie bekleidete in der Bezirksorganisation Wien-Innere Stadt die Funktionen der Vorsitzenden des Bezirksbildungsausschusses und des Bezirksfrauenkomitees sowie der Obmannstellvertreterin der Bezirksorganisation. 1933 wurde sie in das Zentralfrauenkomitee der Sozialdemokrat. Partei berufen. 1934 war sie mit Otto L. eines der Gr\u00fcndungsmitgl. der illegalen Partei der \u201eRevolution\u00e4ren Sozialisten\u201c \u00d6sterr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der \u201eRevolution\u00e4ren Sozialisten\u201c. 1938 verhalf sie ihrem Mann zur Flucht ins Ausland, sie selbst wurde knapp vor der beabsichtigten Abreise verhaftet. Von Herbst 1939 bis zu ihrer Ermordung war sie im KZ Ravensbr\u00fcck.\n", "source": 126}}, {"model": "metainfo.text", "pk": 47421, "fields": {"kind": 131, "text": "Leichter\u00a0K\u00e4the, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; \u2020 Ravensbr\u00fcck (Brandenburg), 17. 3. 1942 (KZ).", "source": 126}}, {"model": "metainfo.text", "pk": 47422, "fields": {"kind": 130, "text": "Neffe des Gro\u00dfh\u00e4ndlers und Bankiers Markus Leidesdorfer v. Neuwall (s. d.); sollte Kaufmann werden, wandte sich aber gegen den Willen der Eltern dem Schauspielerberuf zu und debut. 1830 unter dem Namen Wallner in Krems. \u00dcber Bad Ischl, Wr. Neustadt, Laibach, Agram etc. kam L. 1835 nach Wien, wo er zuerst im Theater an der Wien und dann im Theater in der Leopoldstadt vorwiegend in Raimund-Rollen auftrat und besonders nach Raimunds Tod 1836, durch seine Raimunds Schauspielkunst getreu kopierende Darstellungsweise, gro\u00dfe Erfolge errang. 1839 ging er f\u00fcr zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle gr\u00f6\u00dferen St\u00e4dte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei St\u00e4dten f\u00fchrte L. auch die Dion. des Theaters. 1854 pachtete er das K\u00f6nigst\u00e4dt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Gesch\u00e4ftst\u00fcchtigkeit, seinen Flei\u00df und k\u00fcnstler. Sp\u00fcrsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerb\u00fchne erweitert hatte, bald lokale Ber\u00fchmtheit. 1864 lie\u00df er es vergr\u00f6\u00dfern und renovieren und er\u00f6ffnete es am 3. 12. als \u201eWallnertheater\u201c. Hatte er in den ersten Jahren seiner Dions.-T\u00e4tigkeit vor allem das moderne franz\u00f6s. Sittenst\u00fcck gepflegt, verwirklichte er in sp\u00e4teren Jahren mit Hilfe des Dichters D. Kalisch und seines vorz\u00fcglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gr\u00fcnden das Theater an C. Lebrun und unternahm nun einige gr\u00f6\u00dfere Reisen. Seine Reise- und Theatererlebnisse ver\u00f6ff. L., der auch Mitarbeiter der \u201eGartenlaube\u201c war, in viel gelesenen B\u00fcchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n", "source": 127}}, {"model": "metainfo.text", "pk": 47423, "fields": {"kind": 131, "text": "Leidesdorf\u00a0Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; \u2020 Nizza, 19. 1. 1876.", "source": 127}}, {"model": "metainfo.text", "pk": 47428, "fields": {"kind": 130, "text": "Bruder des Folgenden, Onkel des Juristen Stanko L. (s. d.); stud. an der Techn. Hochschule in Graz. Ab 1866 im Dienst an der Milit\u00e4rgrenze, zuerst in Temesv\u00e1r, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent f\u00fcr Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890\u201394 Sekret\u00e4r des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der \u201eVijesti\u201c (Berr.) dieses Ver. L. baute Stra\u00dfen (Ogulin\u2013Novi, Alt-Gradi\u0161ka\u2013Lipik), die Kanalisation des Jelas-Feldes und im s\u00fcd\u00f6stlichen Syrmien, Wasserleitungen f\u00fcr die St\u00e4dte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan f\u00fcr die Kanalisation von Agram etc.\n", "source": 124}}, {"model": "metainfo.text", "pk": 47429, "fields": {"kind": 131, "text": "Lapaine\u00a0Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; \u2020 Agram, 21. 2. 1923.", "source": 124}}, {"model": "metainfo.text", "pk": 47430, "fields": {"kind": 130, "text": "Tochter des Gro\u00dfindustriellen Josef v. Schroll (1821\u201391), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849\u201389), B\u00fcrgermeister der Stadt Braunau 1883\u201389, in zweiter Ehe ab 1892 mit dem Politiker und Gro\u00dfindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, \u00f6ff. Gesellschafterin der Fa. Benedikt Schrolls Sohn. Nach dem Tode Josef v. Schrolls wurden beide Schwestern Inhaberinnen der Firma, Johanna L., nach Vereinbarung, 1908 Alleininhaberin und Seniorchefin. Sie leitete die vielseitigen Industriebetriebe mit gro\u00dfer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (B\u00fcchereien, Krankenkasse, Spital etc.) f\u00fcr die bereits um die Jahrhundertwende ca. 2600 z\u00e4hlenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer L\u00e4ndchens.\n", "source": 123}}, {"model": "metainfo.text", "pk": 47431, "fields": {"kind": 131, "text": "Langer-Schroll\u00a0Johanna, Gro\u00dfindustrielle. * Braunau (Broumov, B\u00f6hmen), 2. 10. 1850; \u2020 ebenda, 9. 11. 1926.", "source": 123}}, {"model": "metainfo.text", "pk": 47432, "fields": {"kind": 130, "text": "Enkel des Freiburger Physikers J. J. M\u00fcller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van\u2019t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. M\u00fcnster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in M\u00fchlhausen, 1906 Priv.Doz. an der Univ. Basel, 1909 tit. Prof. M. wirkte ab 1911 als Leiter des anorgan.-wiss. und analyt. Laboratoriums bei den Farbenfabriken Bayer & Co. (Leverkusen), ab 1926 als Nachfolger J\u00fcptners (s. d.) als o. Prof. f\u00fcr chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich t\u00e4tig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivit\u00e4t und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefels\u00e4ure und Zement aus Gips und Ton gewann gro\u00dfe techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n", "source": 144}}, {"model": "metainfo.text", "pk": 47433, "fields": {"kind": 131, "text": "M\u00fcller\u00a0Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; \u2020 Wien, 9. 12. 1941.", "source": 144}}, {"model": "metainfo.text", "pk": 47446, "fields": {"kind": 130, "text": "Tochter eines Gutsbesitzers; kr\u00e4nkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkr\u00e4mpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so gro\u00dfes Aufsehen, da\u00df an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von G\u00f6rres, Brentano, Steinle, M\u00f6hler, D\u00f6llinger, Reisach und Ketteler besucht. 1841 \u00fcbersiedelte sie in das Tertiarinnenkloster in Kaltern. Als Mitgl. des 3. Ordens des Hl. Franziskus wurde sie seelsorglich von P. K. Soyer OFM betreut. Nach langem Leiden starb sie an Blutzersetzung. Die amtlichen Berichte \u00fcber sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n", "source": 143}}, {"model": "metainfo.text", "pk": 47447, "fields": {"kind": 131, "text": "M\u00f6rl\u00a0Maria Theresia von, Stigmatisierte. * Kaltern (S\u00fcdtirol), 16. 10. 1812; \u2020 ebenda, 11. 1. 1868.", "source": 143}}, {"model": "metainfo.text", "pk": 47448, "fields": {"kind": 130, "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer lie\u00df sich M. im Oktober 1843 als Matrose f\u00fcr die Kriegsmarine anwerben und machte 1844\u201346 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 k\u00e4mpfte er als Kmdt. eines Kanonenbootes in der Lagune, vor Ancona und bei der Blockade von Venedig. Nach verschiedenen Einschiffungen und Verwendungen in den folgenden Jahren war M. 1859 vor Lissa Kmdt. der Korvette \u201eMinerva\u201c, 1861/62 hatte er in Pola die Bauleitung der Fregatte \u201eSchwarzenberg\u201c, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapit\u00e4n mit Auszeichnung kommandierte. 1867 als Insel- und Festungskmdt. von Lissa, 1868 als Kmdt. des Seearsenals in Pola in Verwendung, unternahm M. 1869 eine Mission nach England, im Oktober dieses Jahres kommandierte er die in der Bucht von Cattaro zur Bek\u00e4mpfung des Aufstandes in S\u00fcddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871\u201383 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine gro\u00dfe administrative Begabung hatte, besa\u00df eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauauftr\u00e4gen f\u00fcr Schiffe trat er entschieden f\u00fcr die Besch\u00e4ftigung inl\u00e4nd. Firmen ein. Er war ein begeisterter Sammler klass. Altert\u00fcmer und ein bedeutender Numismatiker. Teile der \u201eSammlung Millosicz\u201c, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n", "source": 142}}, {"model": "metainfo.text", "pk": 47449, "fields": {"kind": 131, "text": "Millosicz\u00a0Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; \u2020 Leoben (Stmk.), 24. 7. 1890.", "source": 142}}, {"model": "metainfo.text", "pk": 47450, "fields": {"kind": 130, "text": "Sohn eines Weinbauern; stud. mit Hilfe seines Onkels, eines Landpfarrers, an den Gymn. in Warasdin und Marburg a. d. Drau, dann Phil. und Jus an den Univ. Graz (1838 Dr. phil.) und Wien (1841 Dr. jur.). 1837/38 suppl. er die philosoph. Lehrkanzel an der Univ. Graz und versuchte erfolglos, sich an der Univ. Innsbruck zu habil. Nach k\u00fcrzerer Praxis in Wr. Anwaltskanzleien bekam er 1844 mit Hilfe Kopitars (s. d.), der auf seine sprachliche Begabung aufmerksam geworden war, eine Amanuensisstelle an der Hofbibl. (1850 Skriptor, 1862 i. R.). 1849 wurde er ao., 1850 o. Prof. der slaw. Philol. und Literatur an der Univ. Wien, 1851/52, 1856/57 Dekan, 1854/55 Rektor, 1885 i. R. Pr\u00e4s. der Pr\u00fcfungskomm. f\u00fcr Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866\u20131869 Sekret\u00e4r der phil.-hist. Kl.), 1862 lebensl\u00e4ngliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Pr\u00e4s. des akadem. Ver. \u201eSlovenija\u201c in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zuk\u00fcnftigen \u00f6sterr. F\u00f6deration verlangte. 1849 war er slowen. Abg. beim Reichstag in Kremsier, wo er durch besonnene Haltung die Sympathie Stadions erweckte, der dann seine Ernennung zum ersten Prof. der Slawistik in \u00d6sterr. bewirkte. M., der schon im Gymn. gro\u00dfe sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einflu\u00df Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begr\u00fcnder der slaw. Philol. In der Kritik der Vergleichenden Grammatik des Sanskrit, Zend, Griech., Latein., Litau., Got. und Dt. von Bopp bewies M. 1844 die Notwendigkeit wiss. Erforschung nicht nur der von Bopp behandelten, sondern auch aller slaw. Sprachen und verfolgte unerm\u00fcdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewu\u00dftes Streben aller V\u00f6lker Europas nach einer gem. Sprache festzustellen (Neueurop\u00e4ismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkm\u00e4ler des Altslowen., wie M. irrt\u00fcmlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, M\u00e4hren und Ru\u00dfland bezeichnete, verfa\u00dfte und publ. er die \u201eVergleichende Grammatik der slavischen Sprachen\u201c. Vom Altslowen. ausgehend, analysierte er in unz\u00e4hligen Beispielen slaw. Spracherscheinungen und lie\u00df scheinbar nur das Wei\u00dfruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem \u201eeigenth\u00fcmlichen Zauber der Sprache\u201c, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdr\u00fcckte. Verh\u00e4ngnisvoll wurde ihm die von Kopitar \u00fcbernommene \u201ePannonische Theorie\u201c, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im \u00f6stlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. \u201eLexicon palaeoslovenico-graeco-latinum\u201c und das \u201eEtymologische W\u00f6rterbuch der slavischen Sprachen\u201c die bedeutendsten. Im Sinne des Neueurop\u00e4ismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begr\u00fcnder der rum\u00e4n. und alban. Philol. wurde. Er verfa\u00dfte umfangreiche Stud. \u00fcber die Mundarten und Wanderungen der Zigeuner Europas und edierte erfolgreich altkirchenslaw. Texte sowie serb. und griech. hist. Quellen. M. war auch in der Lehnwort-, Personen- und Ortsnamenforschung sowie in der Analyse der Volksepik bahnbrechend. Geringere Bedeutung haben dagegen seine mytholog. und polem. Schriften.\n", "source": 141}}, {"model": "metainfo.text", "pk": 47451, "fields": {"kind": 131, "text": "Miklosich\u00a0Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomer\u0161cak pri Ljutomeru, Unterstmk.), 20. 11. 1813; \u2020 Wien, 7. 3. 1891.", "source": 141}}, {"model": "metainfo.text", "pk": 47460, "fields": {"kind": 130, "text": "Stud. an der Exportakad. (Hochschule f\u00fcr Welthandel) in Wien, wo er die Lehramtspr\u00fcfung f\u00fcr h\u00f6here Handelsschulen und die Diplompr\u00fcfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule f\u00fcr Welthandel, 1931 Habil. f\u00fcr Betriebswirtschaftslehre an der Hochschule f\u00fcr Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. f\u00fcr Betriebswirtschaftslehre. 1938 wurde M. durch die Nationalsozialisten von der Hochschule entfernt. Nach Verhaftung (1942) und Verurteilung im selben Jahr zu sechs Jahren Zuchthaus wegen Kenntnis von verr\u00e4ter. Vorhaben und Unterlassung der Anzeige, w\u00e4hrend des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der B\u00f6rsenverkehr. Er verband in seinen Ver\u00f6ff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realit\u00e4t mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einflu\u00df von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbst\u00e4ndige Teildisziplin der Wirtschaftswiss. verstandenen Betriebswirtschaftslehre, von einer privatwirtschaftlich ausgerichteten Unternehmungslehre zu einer alle wirtschaftlichen Einheiten einer Volkswirtschaft untersuchenden Lehre, die somit auch die Haushalte einbeziehen sollte. Betriebs- und Volkswirtschaftslehre zeigen nach M. \u201eandere Seiten des wirtschaftlichen Geschehens\u201c, wobei von ersterer \u201eder Betrieb als eine mit konkreten Tatbest\u00e4nden und Aufgaben erf\u00fcllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens \u00fcberhaupt untrennbar verbunden erscheint\u201c.\n", "source": 140}}, {"model": "metainfo.text", "pk": 47461, "fields": {"kind": 131, "text": "Meithner\u00a0Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; \u2020 Wien, 13. 12. 1942.", "source": 140}}, {"model": "metainfo.text", "pk": 47466, "fields": {"kind": 130, "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der j\u00fcd. Deklassierten. Seine Lieder, die er in Gasth\u00e4usern und Sch\u00e4nken vortrug, sind von sozialen Motiven gepr\u00e4gt. Obwohl er im Zeitalter der gr\u00f6\u00dften K\u00e4mpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des j\u00fcd. Volksgesanges, W\u00f6lwel Zbarazer (Ehrenkranz), durchzog mit einigen Gef\u00e4hrten, die man als \u201eBroder-S\u00e4nger\u201c bezeichnete, Galizien, Rum\u00e4nien sowie Ru\u00dfland, wo sie seine wie auch \u00e4ltere j\u00fcd. Volkslieder vortrugen. Er war der erste der j\u00fcd. fahrenden Volkss\u00e4nger, der Vorl\u00e4ufer des modernen jidd. Theaters.\n", "source": 139}}, {"model": "metainfo.text", "pk": 47467, "fields": {"kind": 131, "text": "Margulies\u00a0Berl, Volkss\u00e4nger. * Brody (Galizien), ca. 1817; \u2020 b. Bukarest, ca. 1880.", "source": 139}}, {"model": "metainfo.text", "pk": 47468, "fields": {"kind": 130, "text": "Tochter des Malers Anton\u00edn M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Sch\u00fclerin ihres Vaters, dessen maler. Verm\u00e4chtnis sie aber nicht so selbst\u00e4ndig entfalten konnte wie ihre Br\u00fcder, welche sie materiell unterst\u00fctzen mu\u00dfte.\n", "source": 137}}, {"model": "metainfo.text", "pk": 47469, "fields": {"kind": 131, "text": "M\u00e1nesov\u00e1\u00a0Amalie, Malerin. * Prag, 21. 1. 1817; \u2020 Prag, Juni 1883.", "source": 137}}, {"model": "metainfo.text", "pk": 47470, "fields": {"kind": 130, "text": "Sohn des Malers Anton\u00edn M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ov\u00e1 (s. d.), Neffe des Folgenden; stud. 1838\u201351 an der Prager Akad. bei Tkadl\u00edk und Ruben, 1870/71 in D\u00fcsseldorf bei Vautier und begann unter dem Einflu\u00df der Akad. mit hist. Motiven in Genreart. Ab der zweiten H\u00e4lfte der 50er Jahre befa\u00dfte er sich mit volkst\u00fcmlichen Motiven, vor allem aus der Gegend von Bischofteinitz, und insbesondere mit Prager Typen. Er wurde zum bedeutendsten Vertreter der tschech. Genremalerei des 19. Jh. Seine Bilder haben intimen Zauber, sie sind durch den Sinn f\u00fcr die Atmosph\u00e4re des Milieus, durch Unmittelbarkeit, lyr. Zartheit, liebevollen Humor, manchmal durch melanchol. Klage gekennzeichnet. M. war auch ein ausgezeichneter Tiermaler, besonders von Pferden. Das zeichner. Werk nahm in seinem Schaffen einen bedeutsamen Platz ein. Auch als Illustrator t\u00e4tig, schuf er 52 Illustrationen zum 1. Tl. des Don Quichotte (1865, Holzschnitt). Mit seinem Bruder Josef M. begann er in den 50er Jahren ein Werk \u00fcber Trachtenstud. bei der l\u00e4ndlichen Bev\u00f6lkerung.\n", "source": 138}}, {"model": "metainfo.text", "pk": 47471, "fields": {"kind": 131, "text": "M\u00e1nes\u00a0Quido, Maler. * Prag, 17. 7. 1828; \u2020 Prag, 5. 8. 1880.", "source": 138}}, {"model": "metainfo.text", "pk": 47482, "fields": {"kind": 130, "text": "Sohn eines Privatiers und Handelsagenten; besuchte das Gymn. in Graz, war dann Schauspieleleve in Berlin, dramaturg. Berater am Stadttheater Innsbruck, Schauspieler, Szenenbildner und Regisseur an verschiedenen Provinzb\u00fchnen, 1917 am Residenztheater M\u00fcnchen, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehb\u00fcchern. Ab 1927 Autor bzw. Mitautor von Hollywood-Filmen; 1932 emigrierte er nach Frankreich und arbeitete in Paris mit dem Regisseur P. Czinner und der Schauspielerin E. Bergner zusammen, ab 1935 lebte er in London. Neben seiner dramaturg. T\u00e4tigkeit im Dokumentarfilmstudio von P. Rotha widmete er sich der Ausbildung von Filmautoren. Ungemein stilbildend, war M. der bedeutendste Drehbuchautor des dt. Stummfilms. Er arbeitete u. a. mit den Regisseuren R. Wiene, F. W. Murnau, L. Pick, L. Jessner und P. Czinner sowie mit den Schauspielern W. Krau\u00df, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Kl\u00f6pfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n", "source": 136}}, {"model": "metainfo.text", "pk": 47483, "fields": {"kind": 131, "text": "Mayer\u00a0Karl, Drehbuchautor. * Graz, 20. 2. 1894; \u2020 London, 1. 7. 1944.", "source": 136}}, {"model": "metainfo.text", "pk": 47484, "fields": {"kind": 130, "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Gesch\u00e4ftsf\u00fchrer gemacht. M.-S. besch\u00e4ftigte sich mit philosoph. und naturwiss. Stud., gr\u00fcndete 1829 das erste \u201eTiroler Mineralien-Comptoir\u201c und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im M\u00e4rz 1848 verfa\u00dfte er einen feurigen Aufruf \u201eA greachts Weartl von an alten Landesverteidiger an seini Mitbr\u00fcder\u201c, der gro\u00dfen Widerhall fand. Auf eigene Kosten r\u00fcstete er die 1. Innsbrucker Sch\u00fctzenkomp. aus, an deren Spitze er im Mai 1848 an die S\u00fcdfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein \u201eRadetzky-Album\u201c an (es enthielt Zeichnungen, Portr\u00e4ts, eine wertvolle Autographensmlg. etc.), welches er sp\u00e4ter dem Tiroler Landesmus. Ferdinandeum \u00fcbergab. M.-S. errichtete 1853 unter gro\u00dfem Kostenaufwand auf seinem Schlo\u00df B\u00fcchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gr\u00fcndete den 1. Arbeiterunterst\u00fctzungsver. und beteiligte sich an vielen humanit\u00e4ren Einrichtungen. 1865 verkaufte er sein Schlo\u00df und f\u00fchrte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. t\u00e4tig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen gro\u00dfe Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der \u201eTiroler Monatsbl\u00e4tter\u201c. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n", "source": 135}}, {"model": "metainfo.text", "pk": 47485, "fields": {"kind": 131, "text": "Mahl-Schedl von Alpenburg\u00a0Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Gr\u00fcnburg (O.\u00d6.), 27. 10. 1806; \u2020 Innsbruck, 1. 4. 1873.", "source": 135}}, {"model": "metainfo.text", "pk": 47486, "fields": {"kind": 130, "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882\u201385 war er Kapellmeister beim IR 74, 1885\u201390 Kapellmeister beim IR 28. N., ein sehr guter Geiger, vor allem aber ein vortrefflicher Dirigent, dem die Rgt.Musik des IR 74 ihren ausgezeichneten Ruf verdankt, war auch im Ausland mit viel Erfolg t\u00e4tig. Neben Rum\u00e4nien und Bulgarien z\u00e4hlen Holland und Belgien zu seinen wichtigsten k\u00fcnstler. Wirkungsst\u00e4tten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n", "source": 145}}, {"model": "metainfo.text", "pk": 47487, "fields": {"kind": 131, "text": "Nov\u00e1cek\u00a0Rudolf, Kapellmeister und Komponist. * Wei\u00dfkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; \u2020 Prag, 12. 8. 1929.", "source": 145}}, {"model": "metainfo.text", "pk": 47502, "fields": {"kind": 130, "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898\u20131903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904\u201319 wirkte er als Dir. am neugegr\u00fcndeten M\u00e4dchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes f\u00fcr Inneres und Unterricht t\u00e4tig, leitete ab 1922 die Abt. f\u00fcr p\u00e4dagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform f\u00fcr alle Mittelschulen folgte. Er unterst\u00fctzte bes. die Ver.-M\u00e4dchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkr\u00e4fte und f\u00f6rderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908\u201310 erster Obmann des Ver. Lyzeum.\n", "source": 147}}, {"model": "metainfo.text", "pk": 47503, "fields": {"kind": 131, "text": "Ortmann\u00a0Rudolf, P\u00e4dagoge. * Reichenberg (Liberec, B\u00f6hmen), 10. 3. 1874; \u2020 Wien, 22. 11. 1939.", "source": 147}}, {"model": "metainfo.text", "pk": 47506, "fields": {"kind": 130, "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegr\u00fcndete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832\u201337 Vorlesungen \u00fcber Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848\u201360 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfa\u00dfte zahlreiche Aufs\u00e4tze aus dem Gebiet der Chemie und hielt in Innsbruck viele popul\u00e4rwiss. Vortr\u00e4ge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur f\u00fcr techn. Chemie scheiterte aus Geldmangel (1838).\n", "source": 146}}, {"model": "metainfo.text", "pk": 47507, "fields": {"kind": 131, "text": "Oellacher\u00a0Josef, Pharmazeut. * Pre\u00dfburg, 16. 2. 1804; \u2020 Innsbruck, 16. 8. 1880.", "source": 146}}, {"model": "metainfo.text", "pk": 47516, "fields": {"kind": 130, "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtspr\u00fcfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg t\u00e4tig. 1918\u20131924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent f\u00fcr das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor f\u00fcr Geol. und Pal\u00e4ontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfa\u00dfte u. a. mehrere Schulb\u00fccher und red. ab 1932 die Z. \u201eIzvestja muzejskega dru\u0161tva za Kranjsko\u201c. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n", "source": 151}}, {"model": "metainfo.text", "pk": 47517, "fields": {"kind": 131, "text": "Poljanec\u00a0Leopold, Biologe und Schulmann. * Rann (Bre\u017eice, Unterstmk.), 23. 9. 1872; \u2020 Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944.", "source": 151}}, {"model": "metainfo.text", "pk": 47522, "fields": {"kind": 130, "text": "Stud. Germanistik und Polonistik bei R. M. Werner und R. Pilat an der Univ. Lemberg, wo er auch zu A. Sauer Verbindung hatte; 1897 Dr. phil. 1889\u201398 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903\u201309 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, t\u00e4tig. 1914 Priv. Doz., 1915\u201321 hielt er an der Univ. Lemberg Vorlesungen aus dt. Philol. und dt. Literaturgeschichte. 1918/19 war er provisor. Doz. der Germanistik an der Univ. Warschau. P. war u. a. ab 1920 w. Mitgl. der Lemberger Wiss. Ges. Als Literaturwissenschafter leistete P. auf dem Gebiet der H\u00f6lderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, h\u00f6chste Anerkennung fand.\n", "source": 150}}, {"model": "metainfo.text", "pk": 47523, "fields": {"kind": 131, "text": "Petzold\u00a0Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; \u2020 Lemberg (L\u2019viv), 15. 7. 1932.", "source": 150}}, {"model": "metainfo.text", "pk": 47530, "fields": {"kind": 130, "text": "Sohn des Philosophen Johann P. v. L. (1793\u20131866), Cousin des Folgenden, Neffe des Juristen und Politikers Thadd\u00e4us Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden K\u00fcnste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in D\u00fcsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden K\u00fcnste in Wien, an der er 1872\u20131901 als Prof. f\u00fcr Landschaftsmalerei wirkte, 1878\u201380 und 1897\u201399 Rektor. Nach seiner Pensionierung lebte er in N\u00fcrnberg und Berlin. \u00dcber pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf \u00d6l-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine \u00d6lbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Sch\u00fcler zu intensiven Naturstud. anhielt. Er beteiligte sich an den Wr. Akad.Ausst., u. a. 1858 und 1859. 1861 stellte er als Mitgl. im Wr. K\u00fcnstlerhaus aus, das ihm 1913 auch eine Ged\u00e4chtnisausst. widmete.", "source": 149}}, {"model": "metainfo.text", "pk": 47531, "fields": {"kind": 131, "text": "Peithner von Lichtenfels\u00a0Eduard, Maler und Radierer. * Wien, 18. 11. 1833; \u2020 Berlin, 22. 1. 1913.", "source": 149}}, {"model": "metainfo.text", "pk": 47536, "fields": {"kind": 130, "text": "Stud. 1839\u20131843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-M\u00fcnzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel f\u00fcr H\u00fctten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausr\u00fcstung der Labors betraut wurde. P. setzte die in Wien begonnenen chem. Arbeiten, u. a. Silberextraktion auf nassem Weg und Darstellung der reinen Uranverbindungen, fort; 1852 unternahm er in Joachimsthal im Auftrag der Obersten Montanverwaltung Versuche zur Verbesserung der Arbeitsmethoden und zur Auffindung neuer Verfahren bei der Verwertung einzelner Erze, deren Ergebnis die Silberextraktion unter Anwendung von unterschwefligsaurem Natron, Gewinnung von Nickel, Wismut und Kohlenoxyd, Ausscheidung des Arsens aus seinen Verbindungen in Erzen sowie die Darstellung der Uranfarben aus Pechblende waren. 1856 wurde in der Folge eine Uranaufbereitungsanlage in Joachimsthal gebaut. 1864 richtete P. in Wien das H\u00fcttenm\u00e4nn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum H\u00fcttenchemiker des gesamten \u00f6sterr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (sp\u00e4ter Vorstand des H\u00fcttenm\u00e4nn.-chem. Laboratoriums) ernannt. 1881 Oberbergrat, 1889 i. R., Hofrat. Erst durch P.s Verfahren der Urangewinnung aus Pechblende wurden die Forschungen des Ehepaars Curie erm\u00f6glicht.\n", "source": 148}}, {"model": "metainfo.text", "pk": 47537, "fields": {"kind": 131, "text": "Patera\u00a0Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; \u2020 Teschen (Cieszyn, \u00f6sterr. Schlesien), 26. 6. 1894.", "source": 148}}, {"model": "metainfo.text", "pk": 47540, "fields": {"kind": 130, "text": "Stud. ab 1782 an der Univ. Salzburg Phil. (1788 Mag.phil.), dann Theol. (1794 Dr. theol.); war nach seiner Priesterweihe (1793) als Seelsorger t\u00e4tig. 1801 wurde er Kanonikus des Kollegiatstiftes Maria Schnee, 1803 w. Konsistorialrat, 1810 Pfarrer und Dechant (damit auch Schuldistriktsinsp.) von Altenmarkt, 1832 erster Dechant des wiedererrichteten Kollegiatstiftes Seekirchen. R. ist der erste Historiograph des salzburg.-\u00f6sterr. Bildungswesens, \u00fcber das er grundlegende Beitrr. verfa\u00dfte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten \u00fcber theolog., p\u00e4dagog. und hist. Themen waren weit verbreitet.\n", "source": 158}}, {"model": "metainfo.text", "pk": 47541, "fields": {"kind": 131, "text": "Rumpler\u00a0Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; \u2020 Seekirchen (Salzburg), 17. 3. 1846.", "source": 158}}, {"model": "metainfo.text", "pk": 47542, "fields": {"kind": 130, "text": "Sohn eines B\u00e4ckermeisters; ab 1901 selbst\u00e4ndiger B\u00e4kkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912\u201325 im Wr. Gemeinderat, 1924\u201334 im Bundesrat; ab 1917 Vizepr\u00e4s., in der Folge Pr\u00e4s. des Dt.\u00f6sterr. Gewerbebundes. 1928 Kommerzialrat. R. hat mit seinen hist. Stud. wesentlichen Anteil am Aufschwung der Wr. Lokalgeschichtsschreibung in der Zwischenkriegszeit: Seine Geschichte des VII. und die des VIII. Wr. Gemeindebez. sind ebenso Standardwerke geblieben wie die gem. mit A. Schmieger verfa\u00dfte Stud. \u201eDas Ghetto in der Wiener Leopoldstadt\u201c (1926). Auch seine wertvollen Ver\u00f6ff. aus der Geschichte des Wr. B\u00e4ckergewerbes zeugen von R.s Flei\u00df im Erschlie\u00dfen von Quellenmaterial.\n", "source": 157}}, {"model": "metainfo.text", "pk": 47543, "fields": {"kind": 131, "text": "Rotter\u00a0Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; \u2020 Wien, 18. 9. 1945.", "source": 157}}, {"model": "metainfo.text", "pk": 47556, "fields": {"kind": 130, "text": "Aus urspr\u00fcnglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der nieder\u00f6sterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenk\u00fcrassieren die Feldz\u00fcge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in M\u00fcnchen, Berlin, Stuttgart, Stockholm und Paris t\u00e4tig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 K\u00e4mmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-d\u00e4n. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilko\u00e4r. f\u00fcr Schleswig-Holstein. Anschlie\u00dfend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der \u00f6sterr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Aufl\u00f6sung von kath. Kl\u00f6stern in russ. Polen, erzwungener \u00dcbertritt von unierten Christen zur Orthodoxie etc.) befa\u00dft. 1868 trat er wegen Differenzen mit Beust (s. d.) zur\u00fcck. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner ober\u00f6sterr. G\u00fcter Erlach und Tollet und wurde daneben in der \u00f6sterr. Innenpolitik au\u00dferordentlich aktiv. Er wurde 1869 als Vertreter des Gro\u00dfgrundbesitzes ober\u00f6sterr. Landtagsabg. 1885 Mitgl. der \u00f6sterr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des \u00f6sterr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Pr\u00e4lat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschl\u00fcssen des Frankfurter Katholikentages 1882 begr\u00fcndet wurde. 1888 wurde R. im ausw\u00e4rtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen w\u00e4hrend seiner Amtszeit geh\u00f6rten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren H\u00f6hepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein m\u00f6gliches Refugium in \u00d6sterr. zu gew\u00e4hren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) geno\u00df, \u00fcbte auch eine Vermittlert\u00e4tigkeit bei dessen famili\u00e4ren Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mu\u00dfte er auf Dr\u00e4ngen ung. Politiker von seinem Posten zur\u00fccktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssph\u00e4ren von Staat und Kirche in der sp\u00e4tjosefin. Zeit. Daneben war er Experte f\u00fcr die Grenzbereiche der r\u00f6m.-kath., unierten und orthodoxen Kirchen, auch f\u00fcr Ru\u00dfland und den Balkan. Obwohl f\u00fcr soziale Fragen aufgeschlossen, war er kein Sympathisant der Christlichsozialen, deren antisemit. Tendenzen er ablehnte. Vielfach geehrt und ausgezeichnet, u. a. Geh.Rat (1868), Kanzler des Leopold-Ordens und Gro\u00dfkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866\u20131951), folgte 1919 K. Karl (s. d) ins Exil.\n", "source": 156}}, {"model": "metainfo.text", "pk": 47557, "fields": {"kind": 131, "text": "Revertera von Salandra\u00a0Friedrich Graf, Diplomat und Politiker. * Lemberg (L\u2019viv), 21. 1. 1827; \u2020 Brixen (S\u00fcdtirol), 28. 4. 1904.", "source": 156}}, {"model": "metainfo.text", "pk": 47558, "fields": {"kind": 130, "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (N\u00d6) t\u00e4tig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814\u201324 Dir. des Priesterseminars, 1817\u201335 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. T\u00e4tigkeit. In zahlreichen Publ. besch\u00e4ftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine \u201ePastoral-Anweisung nach den Bed\u00fcrfnissen unsers Zeitalters\u201c, die als offizielles Vorlesebuch f\u00fcr alle \u00f6ff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einflu\u00df auf den Klerusnachwuchs. R., ein gro\u00dfer Wohlt\u00e4ter der kirchlichen Inst., z\u00e4hlte zu den ma\u00dfvollen Josefinern.\n", "source": 154}}, {"model": "metainfo.text", "pk": 47559, "fields": {"kind": 131, "text": "Reichenberger\u00a0Andreas, Theologe. * Wien, 24. 11. 1770; \u2020 Linz, 26. 10. 1854.", "source": 154}}, {"model": "metainfo.text", "pk": 47560, "fields": {"kind": 130, "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883\u201386 an der Hochschule f\u00fcr Bodenkultur in Wien, Forsting. Wirkte ab 1887 am bosn.-herzegowin. Landesmus. in Sarajevo (1913 Reg.Rat, 1919 i. R.) und organisierte die von ihm geleitete naturwiss. Abt. Ab 1926 Mitgl. des Ornitholog. Observatoriums in Laibach (Ljubljana). R.s Lebenswerk war der Ornithol. des Balkans gewidmet. Neben seiner T\u00e4tigkeit am Mus. in Sarajevo sammelte er Material f\u00fcr eine Beschreibung der V\u00f6gel der Marburger Umgebung und arbeitete bei der Aufstellung der ornitholog. Smlg. des Mus. in Marburg a. d. Drau (Maribor) mit, dem er eine Smlg. von Vogeleiern aus dem Drautal vermachte. R. wurde vielfach geehrt und ausgezeichnet, u. a. 1932 Dr. h. c. der Univ. Graz.\n", "source": 155}}, {"model": "metainfo.text", "pk": 47561, "fields": {"kind": 131, "text": "Reiser\u00a0Othmar, Ornithologe. * Wien, 21. 12. 1861; \u2020 Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936.", "source": 155}}, {"model": "metainfo.text", "pk": 47564, "fields": {"kind": 130, "text": "Sohn eines Baumwollwarenh\u00e4ndlers; wurde nach Absolv. der Techn. Milit\u00e4rakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898\u20131900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900\u201311 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914\u201316 war R. als Milit\u00e4rattach\u00e9 in Bukarest. 1916 wurde er als Obstlt. des Gen. Stabskorps zum Chef der Gen.Stabsabt. des l. Armeekmdo. und noch im selben Jahr zum Obst. des Gen. Stabskorps ernannt. Ab 1918 war R. Gen. Stabschef des XI. Korps, dann Gen. Stabschef der k. u. k. Besatzungstruppen in Rum\u00e4nien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Fl\u00fcgeladj. Kg. Ferdinands von Rum\u00e4nien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein B\u00fcndnis gegen das revolution\u00e4re Ru\u00dfland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen \u00d6sterr.-Ungarn, dem Dt. Reich, der T\u00fcrkei und Bulgarien einerseits und Rum\u00e4nien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n", "source": 153}}, {"model": "metainfo.text", "pk": 47565, "fields": {"kind": 131, "text": "Randa\u00a0Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, M\u00e4hren), 24. 5. 1874; \u2020 Czernowitz (Cernivci, Bukowina), 13. 8. 1941.", "source": 153}}, {"model": "metainfo.text", "pk": 47566, "fields": {"kind": 130, "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtspr\u00fcfung) u. a. bei Boltzmann (s. d.) und Frischauf (s. d.), dann an der Univ. Berlin Physik bei Helmholtz und Kirchhoff. In Graz war R. lange Mitgl. von A. v. Meinongs (s. d.) Philosoph. Societ\u00e4t. Er interessierte sich f\u00fcr Grenzgebiete der Mathematik und der Physik sowie f\u00fcr die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten ma\u00dfgeblich beeinflu\u00dft wurde. 1894\u201396 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. f\u00fcr theoret. Physik an der Univ. Innsbruck und Ass. K. Exners (s. d.) am Mathemat.-physikal. Inst. 1902 ao. Prof. an der Univ. Innsbruck, 1906 o. Prof. der mathemat. Physik an der Univ. Czernowitz (Cernivci), 1915 o. Prof. der theoret. Physik an der Univ. Graz, 1924/25 Dekan. R.\u2019 bedeutendste und tiefgreifendste Arbeit behandelt \u201eDie Grundlagen der Galilei-Newton\u2019schen Mechanik\u201c. Er ver\u00f6ff. auch einige wichtige experimentelle Arbeiten zur Frage der Gescho\u00dfgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895\u20131938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n", "source": 152}}, {"model": "metainfo.text", "pk": 47567, "fields": {"kind": 131, "text": "Radakovic\u00a0Michael, Physiker. * Graz, 25. 4. 1866; \u2020 Graz, 15. 8. 1934.", "source": 152}}, {"model": "metainfo.text", "pk": 47568, "fields": {"kind": 130, "text": "Nach der Schulausbildung in Gro\u00dfwardein (Oradea) und Temeswar (Timi\u00bfoara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der K\u00f6r\u00f6s. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von G\u00e1bor D\u00f6brentei (\u00bfGabriel D\u00f6brentei) am Burgtheater (Budai V\u00e1rsz\u00ednh\u00e1z) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, T\u00e4nzer und Inspizient t\u00e4tig war sowie seine ersten Theaterst\u00fccke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Sz\u00ednh\u00e1z) in Pest ein Engagement als Schauspieler (1837\u201354) und Bibliothekar (1837\u201340) und widmete sich schlie\u00dfl. der Regie (1854\u201373) sowie der Dramaturgie (1868\u201373). Ab 1865 war er Prof. und 1870\u201373 Dir. der Pester Schauspielschule. 1873 \u00fcbernahm er die Leitung des Nationaltheaters. Er f\u00f6rderte zahlreiche sp\u00e4ter bekannte Schauspieler und initiierte u.\u00a0a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. \u00fcber hundert Theaterst\u00fccke und zahlreiche Libretti, schrieb Schauspielerportr\u00e4ts (\u201eMagyar sz\u00edn\u00e9szek \u00e9letrajzai\u201c, 1878, 2.\u00a0Aufl. 1907) und \u00fcbers. u.\u00a0a. Goethes \u201eEgmont\u201c (1871) und \u201eFaust\u201c sowie Shakespeares \u201eRichard III.\u201c (1867) ins Ung. Sein dramaturg. Lehrbuch \u201eA dr\u00e1ma \u00e9s v\u00e1lfajai\u201c (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der franz\u00f6s. und Wr. B\u00fchnen und adaptierte diese meisterhaft f\u00fcr das ung. Publikum. Sowohl seine Lustspiele (\u201eR\u00f3zsa\u201c, 1840; \u201eLiliomfi\u201c, 1849; \u201eFenn az ernyo, nincsen kas\u201c, 1858, 7.\u00a0Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen (\u201eII. R\u00e1k\u00f3czi Ferenc fogs\u00e1ga\u201c, 1848; \u201eA tr\u00f3nkereso\u201c, 1868, 5.\u00a0Aufl. 1916, dt. \u201eDer Pr\u00e4tendent\u201c, 1881; \u201eStruensee\u201c, 1871) als auch seine unter dem Einfluss des Wr. Volksst\u00fccks und des franz\u00f6s. Melodramas entstandenen Volksst\u00fccke \u201eSz\u00f6k\u00f6tt katona\u201c (1843) und \u201eCig\u00e1ny\u201c (1853), mit denen er die Grundlage f\u00fcr diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgen\u00f6ss. Publikums. Ledigl. seine b\u00fcrgerl. Dramen (\u201eA lelenc\u201c, 1863; \u201eA f\u00e9ny \u00e1rnyai\u201c, 1865) und die St\u00fccke \u201eA strike\u201c (1871) sowie \u201eAz amerikai\u201c (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stie\u00dfen auf Unverst\u00e4ndnis. S. war einer der einflussreichsten Dramatiker des 19.\u00a0Jh. in Ungarn, seine St\u00fccke wurden in zahlreiche Sprachen \u00fcbers. und verfilmt (\u201eSz\u00f6k\u00f6tt katona\u201c, 1914; \u201eLiliomfi\u201c, 1916, 1954; \u201eCig\u00e1ny\u201c, 1925, 1941) und geh\u00f6ren auch heute noch zum Standardrepertoire der ung. B\u00fchnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Gro\u00dfwardein (Nagyv\u00e1radi Szigligeti Sz\u00ednh\u00e1z) sowie das Theater in Szolnok (Szigligeti Sz\u00ednh\u00e1z) sind nach ihm benannt. S. war ab 1840 k.\u00a0M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n", "source": 194}}, {"model": "metainfo.text", "pk": 47569, "fields": {"kind": 131, "text": "Szigligeti Ede (Edv\u00e1rd), bis 1834 J\u00f3zsef Szathm\u00e1ry, Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur. Geb. V\u00e1rad-Olaszi, Ungarn (Oradea-Olosig, RO), 8.\u00a03. 1814; gest. Budapest (H), 19.\u00a01. 1878; r\u00f6m.-kath.", "source": 194}}, {"model": "metainfo.text", "pk": 47570, "fields": {"kind": 130, "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Sch\u00e4fer; ab 1895 verheiratet mit Erna Szen\u00f3ner. \u2013 Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871\u201374 war S. 1882\u201384 Z\u00f6gling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887\u201389 die Kriegsschule in Wien. Seine milit\u00e4r. Laufbahn begann er 1882 als Gemeiner im Honv\u00e9d-Inf.baon.\u00a018. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k.\u00a0u.\u00a0k. Armee sowie bei der Honv\u00e9d und versah Truppendienst, u.\u00a0a. als Baon.kmdt., v.\u00a0a. in den Honv\u00e9d-Inf.rgt.\u00a04 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der F\u00fchrung der kgl. ung. Inf.div.\u00a038 betraut, an deren Spitze er \u2013 ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps \u2013 ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz k\u00e4mpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (U\u017eoc\u2019kyj pereval) in den Karpaten gegen die Russen. 1917 erfolgte seine Ernennung zum kgl. ung. Landesverteidigungsminister in Budapest (ab August Gen. der Inf.). Diesen Posten bekleidete er bis zum Austritt Ungarns aus der Realunion Ende Oktober 1918. Anfang 1919 wurde S. pensioniert, einen Monat sp\u00e4ter auf Gehei\u00df der Berinkey-Regierung in St.\u00a0Gotthard (Szentgotth\u00e1rd) interniert und w\u00e4hrend der R\u00e4terepublik gem. mit \u00bfJ\u00f3zsef Frh. Szter\u00e9nyi v. Brass\u00f3 in Budapest gefangen gehalten. Nach dem Sturz der R\u00e4terepublik war S. Ende 1919 Verbindungsoff. bei der franz\u00f6s. milit\u00e4r. Mission. 1921 wurde er endg\u00fcltig pensioniert, lebte danach in Budapest und wirkte als Milit\u00e4rschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I.\u00a0Kl., 1916 wurde er Kommandeur des Leopold-Ordens I.\u00a0Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Pr\u00e4dikat \u201evon Uzsok\u201c ausgez. S. war Inhaber des Honv\u00e9d-Inf.rgt.\u00a020 (1918), 1929 wurde er in den Vit\u00e9zi Rend (Ritterorden) aufgenommen, 1927\u201344 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n", "source": 195}}, {"model": "metainfo.text", "pk": 47571, "fields": {"kind": 131, "text": "Szurmay von Uzsok S\u00e1ndor (Alexander) Frh., Offizier und Politiker. Geb. Boks\u00e1nb\u00e1nya, Ungarn (Boc\u00bfa, RO), 19.\u00a012. 1860; gest. Budapest (H), 26.\u00a03. 1945.", "source": 195}}, {"model": "metainfo.text", "pk": 47580, "fields": {"kind": 130, "text": "Sohn eines Bauern. \u2013 Nach Besuch der Gymn. in Kempten im Allg\u00e4u, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St.\u00a0Florian ein (1823 Profe\u00df, 1824 Priesterweihe). 1824\u201343 wirkte er als Kaplan in der Stiftspfarre, 1843\u201354 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s.\u00a0d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 au\u00dferdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht \u00fcbertragen. 1859 wurde er Propst von St.\u00a0Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Versch\u00f6nerungen in der Stiftskirche, u.\u00a0a. durch L.\u00a0Kupelwieser (s.\u00a0d.), durchgef\u00fchrt. Daneben widmete sich S., von F.\u00a0Ser. Kurz (s.\u00a0d.) angeleitet, schon bald der Historiographie. Bereits 1834 geh\u00f6rte er zu den Initiatoren des sp\u00e4teren Mus. Francisco-Carolinum, red. 1839\u201344 dessen \u201eMusealblatt\u201c und arbeitete v.\u00a0a. an den ersten sechs Bde. des \u201eUrkundenbuchs des Landes ob der Enns\u201c (1852\u201372) mit; weiters befa\u00dfte er sich mit dem Leben von K.\u00a0Maximilian\u00a0I., ordnete die Archive der Stifte St.\u00a0Florian und Wilhering und verf. die Geschichte beider Kl\u00f6ster. Zudem besch\u00e4ftigte er sich mit dem Gr\u00fcnder von Stift Reichersberg, Propst Gerhoch, sowie mit Bischof Altmann von Passau, ferner landesgeschichtl. mit den Gf. von Schaunberg. S., der in regem Austausch mit Koch v. Sternfeld (s.\u00a0d.) stand, war u.\u00a0a. Mitgl. des Hist. Ver. f\u00fcr Unterfranken und Aschaffenburg (1841), des Hist. Ver. f\u00fcr die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k.\u00a0k. Reichshistoriographen. 1847 z\u00e4hlte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. t\u00e4tig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gew\u00e4hlt, wo er v.\u00a0a. mit dem kath.-reformer. Kreis um Johann Joseph v. G\u00f6rres in Verbindung stand. Auch bei den Bem\u00fchungen um die Errichtung des o\u00f6. Katholikenver. 1848 spielte S. eine f\u00fchrende Rolle. 1861\u201367 geh\u00f6rte er dem o\u00f6. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Pr\u00e4s. der O\u00f6. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n", "source": 193}}, {"model": "metainfo.text", "pk": 47581, "fields": {"kind": 131, "text": "St\u00fclz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23.\u00a02. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28.\u00a06. 1872; r\u00f6m.-kath.", "source": 193}}, {"model": "metainfo.text", "pk": 47584, "fields": {"kind": 130, "text": "Sohn von Josef Maria S. (s.\u00a0d.). \u2013 Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Sch\u00fcler O.\u00a0Redlichs (s.\u00a0d.) Geschichte an der Univ. Wien, 1910 Dr.\u00a0phil., und absolv. 1909\u201311 als ao.\u00a0Mitgl. den Kurs des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung. Noch im Juli 1911 ging er als Mitarb. an der von der Heidelberger Akad. der Wiss. und der Bad. Hist. Komm. vorbereiteten Ausg. der bad. Weist\u00fcmer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am \u00d6sterr. Hist. Inst. in Rom. Daneben war er 1913 nochmals f\u00fcr die Bad. Hist. Komm. t\u00e4tig und ordnete das gr\u00e4fl. Douglassche Archiv auf Schlo\u00df Langenstein im Hegau. 1914 trat er als Konzeptsaspirant in das HHStA ein, wurde 1915 Konzeptspraktikant und 1921 Staatsarchivar. Er ordnete das Konsulatsarchiv in Belgrad (1916), die Archive in Jaidhof bei Gf\u00f6hl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. \u00fcber die Urkundenabt. und leitete schlie\u00dfl. die Hss.abt. im HHStA. 1921\u201322 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. \u201eHistorischen Bl\u00e4tter\u201c, ab 1928 Mitgl. des Gesch\u00e4ftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien f\u00fcr Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao.\u00a0Prof. Als Medi\u00e4vist befa\u00dfte er sich mit Fragen der \u00f6sterr. Diplomatik, einschlie\u00dfl. der Kanzlei- und der Stadtb\u00fccher, sowie bes. mit Verfassungsgeschichte. Ab 1923 fungierte er als Dir. des Archivs der Stadt Wien und machte dieses zu einer anerkannten wiss. Einrichtung: Eine neue Archivordnung, die u.\u00a0a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30\u00a0Jahren umfa\u00dfte, trat 1924 in Kraft. Archivpraktika f\u00fcr Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Gl\u00f6ckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Au\u00dfenwirkung des Archivs ebenso wie die F\u00f6rderung der Geschichtsforschung, etwa durch die Begr\u00fcndung der \u201eStudien aus dem Archiv der Stadt Wien\u201c oder durch die Anregung zur Ver\u00f6ff. der \u201eUrkunden aus Wiener Grundb\u00fcchern zur Geschichte der Wiener Juden im Mittelalter\u201c (1931) durch L.\u00a0Sailer (s.\u00a0d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. f\u00fcr Geschichte der Stadt Wien gew\u00e4hlt worden, 1924\u201325 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gr\u00fcnden zur\u00fcck. 1926 Vizepr\u00e4s., begr\u00fcndete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n", "source": 192}}, {"model": "metainfo.text", "pk": 47585, "fields": {"kind": 131, "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21.\u00a010. 1887; gest. ebd., 19.\u00a02. 1934; evang.\u00a0AB.", "source": 192}}, {"model": "metainfo.text", "pk": 47594, "fields": {"kind": 130, "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24.\u00a04. 1879; gest. ebd., 4.\u00a02. 1952) verehel. Nach Absolv. des M\u00e4dchengymn. des Wr. Ver. f\u00fcr erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr.\u00a0phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtspr\u00fcfung f\u00fcr Mittelschulen ab. I.\u00a0d.\u00a0F. unterrichtete S. an einem Wr. M\u00e4dchengymn., befa\u00dfte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vortr\u00e4ge f\u00fcr die Vereinigung \u00f6sterr. Hochschuldoz. Athen\u00e4um. Ihr Engagement im Bereich der Frauenbildung und \u2013f\u00f6rderung f\u00fchrte 1907 zur Gr\u00fcndung eines M\u00e4dchengymn. in Wien\u00a02. Auf Grund ihres Strebens nach gediegener Berufsausbildung f\u00fcr begabte M\u00e4dchen aus \u00e4rmerem Haus gr\u00fcndete sie 1907 gem. mit Olly Schwarz einen Ver. f\u00fcr h\u00f6here kommerzielle Frauenbildung und die erste Handelsakad. f\u00fcr M\u00e4dchen in der Sch\u00f6nborngasse (Wien\u00a08), deren Leitung sie als erste Schuldir., die in den Staatsdienst \u00fcbernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. f\u00fcr ihre T\u00e4tigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n", "source": 190}}, {"model": "metainfo.text", "pk": 47595, "fields": {"kind": 131, "text": "Steindler Olga, verehel. Ehrenhaft-S., P\u00e4dagogin und Physikerin. Geb. Wien, 28.\u00a010. 1879; gest. ebd., 21.\u00a012. 1933.", "source": 190}}, {"model": "metainfo.text", "pk": 47596, "fields": {"kind": 130, "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s.\u00a0d.). S. besuchte 1902\u201310 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L.\u00a0M. Hartmann, W.\u00a0Kubitschek, Bormann (alle s.\u00a0d.) und Adolf Wilhelm; 1914 Dr.\u00a0phil. Nach Milit\u00e4rdienst 1915\u201317 habil. er sich 1919 an der Univ. Wien. 1927\u201329 war S. an der R\u00f6m.-German. Komm. des Dt. Arch\u00e4olog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der r\u00f6m. Kaiserzeit besch\u00e4ftigt, danach Doz. f\u00fcr Alte Geschichte an der Univ. Berlin, 1931\u201332 ao.\u00a0Prof. f\u00fcr alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G.\u00a0Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, k\u00fcndigte seine Stellung und verlie\u00df Dtld. 1932\u201334 war er, unterst\u00fctzt vom belg. Byzantinisten Henri Gr\u00e9goire, Gastprof. an der Univ. Br\u00fcssel. Nach der \u201eMachtergreifung\u201c Hitlers (s.\u00a0d.) im J\u00e4nner 1933 publ. er nur mehr auf Franz\u00f6s.; 1934\u201335 war er Gastprof. an der Catholic Univ. of America (Washington, D.\u00a0C.), 1937 wurde f\u00fcr ihn ein Lehrstuhl f\u00fcr byzantin. Geschichte an der Univ. L\u00f6wen eingerichtet. 1940 mu\u00dfte S. jedoch Belgien mit seiner Frau Jeanne (Eheschlie\u00dfung 1923) unter falschem Namen (M.\u00a0Sernet) verlassen. Trotz der \u00e4u\u00dferl. bedr\u00e4ngten Situation und dem st\u00e4ndigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd.\u00a0seiner \u201eHistoire de l\u2019\u00c9mpire byzantin\u201c, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verh\u00e4ltnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. t\u00e4tig.\n\n", "source": 191}}, {"model": "metainfo.text", "pk": 47597, "fields": {"kind": 131, "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19.\u00a09. 1891; gest. Freiburg (Fribourg, Schweiz), 25.\u00a02. 1945; aus j\u00fcd. Familie, ab 1932 r\u00f6m.-kath.", "source": 191}}, {"model": "metainfo.text", "pk": 47602, "fields": {"kind": 130, "text": "Sohn eines Kleinbauern. S. besuchte 1858\u201366 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur S\u00fcdarmee eingezogen und erhielt nach der Schlacht bei Custoza die silberne Tapferkeitsmedaille. Da er Priester werden wollte, desertierte er und kam 1867 in die USA. Zun\u00e4chst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des sp\u00e4teren Bischofs der Di\u00f6zese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der franz\u00f6s. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph\u00a0I. (s.\u00a0d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der gro\u00dfteils aus Dt.b\u00f6hmen und -ungarn bestehenden Gmd. und ab 1891 als Di\u00f6zesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Di\u00f6zese Lead, S.\u00a0D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in f\u00fcnf Jahren 23 neue Kirchen und Pfarreien. Durch \u00fcberm\u00e4\u00dfige Arbeit erkrankt, resignierte S. 1909 auf seine Di\u00f6zese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n", "source": 189}}, {"model": "metainfo.text", "pk": 47603, "fields": {"kind": 131, "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12.\u00a05. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15.\u00a012. 1915; r\u00f6m.-kath.", "source": 189}}, {"model": "metainfo.text", "pk": 47614, "fields": {"kind": 130, "text": "\u2013 Sohn eines Grenzers. \u0160. wurde 1870 aus der Rgt.-Milit\u00e4rschule in Otocac als Korporal zum Grenz-IR 1 ausgemustert; 1874 Lt. beim IR 51. 1882 nahm er als Rgt.-Adj. an der Niederschlagung der Unruhen in Bosnien-Herzegowina teil. 1897 Mjr. und Baon.-, 1899\u20131904 Erg\u00e4nzungsbez.kmdt. im bosn.- herzegowin. IR 4, um dessen Personalaufstockung er sich sehr verdient machte; 1903 Obstlt., 1906 Obst. und 1907 Kmdt. des Linien-IR 2. 1909 erhielt \u0160. das Kmdo. des Gendarmeriekorps f\u00fcr Bosnien-Herzegowina, 1911 GM. Ab September 1914 f\u00fchrte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Vi\u0161egrad aus die Verteidigung S\u00fcdostbosniens. Ende M\u00e4rz 1915 \u00fcbernahm er dort das Kmdo. der neu errichteten 59. Inf.-Truppen-Div., die im Juli 1915 an die Isonzofront verlegt wurde. Im September 1915 nach Syrmien r\u00fcckverlegt, wurde \u0160. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 \u00fcbernahm er das Kmdo. der 42. Honv\u00e9d-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zur\u00fcckgedr\u00e4ngt wurde. Im M\u00e4rz 1917 dem Gen.-Insp. der Fu\u00dftruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde \u0160. im Juli 1918 beurlaubt, knapp vor der Ver\u00f6ff. des Oktobermanifests jedoch im Oktober 1918 als Milit\u00e4rkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die s\u00fcdslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte \u0160. seine letzten Lebensjahre auf seinem Gut in Cluj.\n", "source": 188}}, {"model": "metainfo.text", "pk": 47615, "fields": {"kind": 131, "text": "\u0160njaric\u00a0Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rum\u00e4nien), 28. 1. 1930.", "source": 188}}, {"model": "metainfo.text", "pk": 47626, "fields": {"kind": 130, "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden K\u00fcnste, wo er bis 1907/08 (u. a. bei J\u00f3zef v. Mehoffer, s. d., und Leon Wycz\u00f3lkowski) Malerei stud., 1902\u201303 bildete er sich an der Kunstgewerbeschule in Wien weiter, 1904 unternahm er Stud.reisen durch Italien und Frankreich. S., der sich in Zakopane von einer Tuberkuloseerkrankung erholen mu\u00dfte, verbrachte den Winter 1904/5 bei den Huzulen, wo er Landschafts- und Genrebilder aus dem Leben der Goralen malte. In der Folge zeichnete er Karikaturen f\u00fcr die satir. Z. \u201eChochol\u201c (1902) und \u201eLiberum Veto\u201c (1903\u201305), 1904 ver\u00f6ff. er die Mappe \u201e30 Karikaturen\u201c, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. K\u00fcnstler \u201eSztuka\u201c und im selben Jahr Mitarbeiter des ber\u00fchmten Krakauer Kabaretts \u201eZielony Balonik\u201c, f\u00fcr das er die Inneneinrichtung des Caf\u00e9s und Einladungen entwarf. W\u00e4hrend dieser Zeit fertigte er auch Portr\u00e4ts, Karikaturen von bekannten K\u00fcnstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in \u00d6l mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) lie\u00df er sich im selben Jahr in Lemberg nieder. W\u00e4hrend seiner Milit\u00e4rdienstzeit (1914\u201317)zeichnete er Portr\u00e4ts und Karikaturen bedeutender Pers\u00f6nlichkeiten des Milit\u00e4rwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920\u201330 an der dortigen Schule f\u00fcr Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem \u0152uvre der hist. und religi\u00f6sen Thematik zuwandte; 1918\u201319 zeichnete er Karikaturen f\u00fcr die Z. \u201eSzczutek\u201c und 1920 f\u00fcr \u201eRzeczpospolita\u201c; ab 1930 lehrte er an der Akad. der bildenden K\u00fcnste in Krakau (Krak\u00f3w); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein \u0152uvre fand in zahlreichen in- und ausl\u00e4nd. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, M\u00fcnchen und Rom).\n", "source": 187}}, {"model": "metainfo.text", "pk": 47627, "fields": {"kind": 131, "text": "Sichulski\u00a0Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lw\u00f3w, Galizien (L\u2019viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; r\u00f6m.-kath.", "source": 187}}, {"model": "metainfo.text", "pk": 47630, "fields": {"kind": 130, "text": "Sohn eines Arztes und Hptm. der Sch\u00fctzenkompanie Ulten. S., der nach dem Willen seines Vaters urspr\u00fcngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden K\u00fcnste in M\u00fcnchen, wo er auch Privatunterricht nahm; anschlie\u00dfend \u00fcbersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. z\u00e4hlte die sp\u00e4tere dt. Kn. Auguste Viktoria zu seinen Sch\u00fclerinnen). 1889 geh\u00f6rte er zu den Gr\u00fcndungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s \u0152uvre umfa\u00dft vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurg\u00e4sten gro\u00dfen Anklang; seine Bedeutung liegt aber v. a. in der exakten Wiedergabe der damaligen topograph. Gegebenheiten, wodurch es ihm gelang, ein Zeugnis der dortigen Bausubstanz um 1900 f\u00fcr die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachla\u00df bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum pr\u00e4sentiert.\n", "source": 186}}, {"model": "metainfo.text", "pk": 47631, "fields": {"kind": 131, "text": "Settari\u00a0Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905.", "source": 186}}, {"model": "metainfo.text", "pk": 47634, "fields": {"kind": 130, "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869\u201373 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und N\u00d6 ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rath\u00e4user in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repr\u00e4sentationsbed\u00fcrfnis seiner Zeit stark entgegen kamen, pr\u00e4gte v. a. das Stadtbild von St. P\u00f6lten, wo er erstmals 1883 mit dem neobarock gepr\u00e4gten Hauptgeb\u00e4ude der Sparkasse in Erscheinung trat. Es folgten weitere Auftr\u00e4ge f\u00fcr kommunale Bauten und Amtsgeb\u00e4ude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgeb\u00e4udes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Geb\u00e4uden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begr\u00fcntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Sch\u00f6nbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgef\u00fchrt wurde. S. \u2013 auch im privaten Wohnbau t\u00e4tig \u2013 setzte in seinem \u0152uvre \u201edie Formimpulse des strengen Historismus unter dem Einflu\u00df der neueren Entwicklungen in einen dekorativen Repr\u00e4sentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verf\u00fcgung stehenden Formenapparates f\u00fcr zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden lie\u00df\u201c (W. Kitlitschka).\n", "source": 185}}, {"model": "metainfo.text", "pk": 47635, "fields": {"kind": 131, "text": "Sehnal\u00a0Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910.", "source": 185}}, {"model": "metainfo.text", "pk": 47640, "fields": {"kind": 130, "text": "Sohn des Badener Gmd.Sekret\u00e4rs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861\u201365 das Gymn. im Stift Heiligenkreuz, wo er auch S\u00e4ngerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) \u00fcbersiedelte die Familie (S. hatte zw\u00f6lf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verlie\u00df er den Orden auf Anraten seiner Oberen, die w\u00e4hrend des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 w\u00e4hrend einer Erkrankung den zweiten Vornamen \u201eMaria\u201c an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (N\u00d6) \u2013 wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als \u201ePapst von Marchegg\u201c bezeichnet wurde \u2013, 1879\u201386 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Gro\u00dfstadt kennen und antwortete 1882 mit der Gr\u00fcndung des \u201eKatholischen Lehrlings-Vereins\u201c, rief 1886 das \u201eLehrlingsasyl\u201c sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. \u201eDas christliche Handwerk\u201c (Vorl\u00e4ufer der jetzt noch erscheinenden \u201eKalasantiner-Bl\u00e4tter\u201c) heraus, 1889 baute er in F\u00fcnfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gr\u00fcndung der \u201eKongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz\u201c (\u201eKalasantiner\u201c), der ersten \u00f6sterr. M\u00e4nnerkongregation, die sich der Arbeiter und v. a. der Lehrlinge annehmen wollte. Diesem Auftrag versuchte S. durch Erziehung der Kinder und der Lehrlingsjugend in Horten, Heimen und Oratorien sowie durch Erteilung des Religionsunterrichtes in Grund- und Berufsschulen gerecht zu werden. Die Gemeinschaft sollte dar\u00fcber hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken \u2013 sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch \u00dcbernahme von Pfarren in Arbeitervierteln der St\u00e4dte. Weitere begleitende Gr\u00fcndungen waren: Marian. Arbeitersodalit\u00e4t, Herz Jesu-Arbeiter-Oratorium, Frauenwohlt\u00e4tigkeitsver., Mariazellerver. und Muttergottesbund. 1897\u20131926 wurden weitere elf Niederlassungen der Kongregation (u. a. auch 1902 in Budapest) errichtet. Sein soziales Engagement hat S. auch in die Tagespolitik eingreifen lassen: Er forderte z. B. die Arbeiter zur Gr\u00fcndung von Selbstschutzund Bildungsverb\u00e4nden auf und unterst\u00fctzte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder \u00f6ff. Kontroverse zur\u00fcck. Kardinal Piffl (s. d.), der ihn freundschaftl. unterst\u00fctzte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den \u201eArbeiterapostel\u201c. Dem 1949 er\u00f6ffneten Seligsprechungsproze\u00df folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.\u2019 kirchl. Gedenktag ist der 17. September.\n", "source": 181}}, {"model": "metainfo.text", "pk": 47641, "fields": {"kind": 131, "text": "Schwartz\u00a0\u2014 P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (N\u00d6), 28. 2. 1852; gest. Wien, 15. 9. 1929.", "source": 181}}, {"model": "metainfo.text", "pk": 47642, "fields": {"kind": 130, "text": "Sohn eines M\u00fcllers. Nach dem Besuch des Gymn. in Olm\u00fctz (Olomouc) 1854\u201362 stud. S. von 1862\u201367 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtspr\u00fcfung ablegte. Ab 1865 war er Mitgl. des Inst. f\u00fcr \u00f6sterr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschlo\u00df. 1867 trat S. als Stud.Pr\u00e4fekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (\u017datec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zur\u00fcck, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Au\u00dfer als Gymn.Lehrer wirkte S. auch als Fachpr\u00fcfer an der Konsularakad. Wiss. besch\u00e4ftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und \u00fcbersichtl. Darstellungsweise auszeichnen.\n", "source": 182}}, {"model": "metainfo.text", "pk": 47643, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, M\u00e4hren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903.", "source": 182}}, {"model": "metainfo.text", "pk": 47644, "fields": {"kind": 130, "text": "Sohn des Zwirnh\u00e4ndlers Franz Sales S.; Bruder von Sebastian S., Onkel des Priesters Josef S., des Caspar und des Franz Sales S. (alle s. d.). S. besuchte das Gymn. in Linz und Kremsm\u00fcnster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und er\u00f6ffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er au\u00dferdem eine F\u00e4rberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige H\u00e4user in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den o\u00f6. Landtag gew\u00e4hlt, dem er dann auch 1861\u201379 angeh\u00f6ren sollte und in dem er als Obmann-Stellv. des Stra\u00dfenausschusses fungierte. 1864\u201373 Bgm. von Freistadt, erwarb er sich Verdienste um das Kommunalwesen, etwa durch die Errichtung der Stadtsparkasse (1866), deren 1. Dion.Vorstand er wurde. Bes. Augenmerk legte er auf die Entwicklung des st\u00e4dt. Schulwesens, zu dessen Entwicklung er ma\u00dfgebl. beitrug. So initiierte S. die Errichtung des 1867 er\u00f6ffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. gef\u00fchrt werden durfte, und richtete ferner, nach dem R\u00fcckzug der Piaristen, 1871 eine Knabenvolksschule ein. Au\u00dferdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freist\u00e4dter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n", "source": 183}}, {"model": "metainfo.text", "pk": 47645, "fields": {"kind": 131, "text": "Schwarz\u00a0\u2014 Kaspar, Politiker und Kaufmann. Geb. Lasberg (O\u00d6), 6. 11. 1811; gest. Freistadt (O\u00d6), 7. 5. 1879.", "source": 183}}, {"model": "metainfo.text", "pk": 47648, "fields": {"kind": 130, "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Nei\u00dfe stud. S. 1834\u201336 in Breslau (Wroclaw) und 1836\u201337 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Nei\u00dfe, 1839 in Breslau und dort im selben Jahr Referendar. S. war befreundet mit den schles. Dichtern Joseph v. Eichendorff und Friedrich v. Sallet und bereits 1836 in Berlin Mitgl. des Literatenver. \u201eDer Tunnel \u00fcber der Spree\u201c und des j\u00fcngeren Berliner Dichterver. Er bet\u00e4tigte sich journalist. vorwiegend als Theaterkritiker (\u201eTheater-Figaro\u201c, \u201eBreslauer Zeitung\u201c 1840ff.), war nach seiner R\u00fcckkehr nach Breslau 1840\u201348 ausschlie\u00dfl. f\u00fcr die Presse t\u00e4tig und wurde Mitarbeiter auch ausw\u00e4rtiger Z. (u. a. \u201eBerliner Figaro\u201c, \u201eBerliner Modenspiegel\u201c, \u201eDer Gesellschafter\u201c, \u201eDer Pilot\u201c). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des \u201eBreslauer Volks-Kalenders\u201c (bzw. \u201eDeutscher Volkskalender\u201c). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. \u201eBestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844\u201c (60 Aufs\u00e4tze, 1844), in der er die M\u00f6glichkeiten journalist. Arbeit nach Ma\u00dfgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als f\u00fcr \u00f6sterr. Verh\u00e4ltnisse bes. geeigneten Ztg.Red. aus, der geschickt zwischen den Anliegen der Autoren und der Forderungen der Zensur im Sinne Sedlnitzkys v. Choltitz (s. d.) zu vermitteln verstand. Nach Wien geholt, \u00fcbernahm S., der von Hebbel (s. d.) und Stifter gesch\u00e4tzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer T\u00e4tigkeit in der Red. der \u201ePresse\u201c, 1849, ab 1850 als verantwortl. Red. die \u201eWiener Zeitung\u201c, die in der Zeit seiner T\u00e4tigkeit um die zus\u00e4tzl. Organe \u201eAbendblatt\u201c (1852\u201357), \u201e\u00d6sterreichische Bl\u00e4tter f\u00fcr Literatur und Kunst\u201c (1852\u201357) und die \u201e\u00d6sterreichische Wochenschrift f\u00fcr Wissenschaft, Kunst und \u00f6ffentliches Leben\u201c (1863\u201365) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausl\u00e4nd. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verl\u00e4\u00dflichkeit gesch\u00e4tzt war. Zuletzt lebte er v\u00f6llig erblindet und zur\u00fcckgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anf\u00e4ngl. Bankbeamter, trat ebenfalls als Journalist hervor, sp\u00e4ter als Autor einiger Lustspiele und Schw\u00e4nke (\u201eDer Heiratsvermittler\u201c, 1886, \u201eSch\u00f6nheitspreis und Liebespreis\u201c, 1893, usw.).\n", "source": 184}}, {"model": "metainfo.text", "pk": 47649, "fields": {"kind": 131, "text": "Schweitzer\u00a0Leopold Albrecht, Journalist und Schriftsteller. Geb. Nei\u00dfe, Preu\u00dfen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (N\u00d6), 9. 7. 1896.", "source": 184}}, {"model": "metainfo.text", "pk": 47650, "fields": {"kind": 130, "text": "Nach absolv. Schulbesuch arbeitete S. zun\u00e4chst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu \u00fcbernehmen. Polit. engagiert, geh\u00f6rte er 1882\u201384 sowie 1894\u201397 dem Badener Gmd.Rat an, wo er sich v. a. f\u00fcr die Anliegen der Hauerschaft einsetzte. Bes. Verdienste um seine Heimatstadt erwarb sich S., der nach dem Tod seiner ersten Frau (1888) im selben Jahr Maria, geb. Gleichweit, ehel., bei der Bek\u00e4mpfung der Reblaus, die 1882 auch in Baden zu w\u00fcten begann. Durch das Aufpfropfen der Edelreben auf gegen den Sch\u00e4dling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weing\u00e4rten mit gro\u00dfem Erfolg angewandt hatte, konnten die Badener Weinkulturen in relativ kurzer Zeit gerettet werden. Auf Stud.Reisen nach Ungarn 1889 und 1896, in die Unterstmk. 1891 und 1898 sowie nach Kroatien 1896 verbesserte S. seine Kenntnisse, die er in Baden erfolgreich u. a. f\u00fcr seine Rebschule, in der er die angef\u00fchrte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner gro\u00dfen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom n\u00f6. Landesausschu\u00df als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Sch\u00e4dling zu unterweisen. F\u00fcr seine erfolgreiche T\u00e4tigkeit erhielt er von der Stadt Baden sowie vom Ackerbaumin. Anerkennungspreise. S., allen Neuerungen auf dem Gebiet des Weinbaus stets aufgeschlossen, entwickelte 1895 den ersten Weingartenpflug und soll 1897 die bis dahin unbekannte Neuburger Rebe eingef\u00fchrt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gr\u00fcndete er 1887 den Badener Rinderzuchtver. und besa\u00df eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte \u2013 er war Mitgl. bei mehreren Ver. \u2013, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinsch\u00e4tzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n", "source": 180}}, {"model": "metainfo.text", "pk": 47651, "fields": {"kind": 131, "text": "Schwabl\u00a0Franz, Landwirt und Weinhauer. Geb. Baden (N\u00d6), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers.", "source": 180}}, {"model": "metainfo.text", "pk": 47660, "fields": {"kind": 130, "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871\u201377 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877\u201382 Park Orchester, Amsterdam, 1882\u201383 Parlow Orchester, Hamburg, 1883\u201384 kgl. Staatskapelle Dresden. 1884\u201391 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegr\u00fcndete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mu\u00dfte er diese Stelle jedoch Oktober 1902 krankheitshalber aufgeben und zog nach Kreuznach, wo er bereits vorher Sommerkurse geleitet hatte, und widmete sich der Komposition. 1903\u201304 spielte S. im Pittsburgh Symphony Orchestra, 1904\u201309 im Philadelphia Orchestra, 1910 im Orchester der New Yorker Metropolitan Opera. S., sowohl als Orchesterspieler wie als Solist ein Virtuose von hohem Rang, gab ein noch heute verwendetes Hilfswerk f\u00fcr die Ausf\u00fchrung von schwierigen Harfenstellen in den Opern Richard Wagners heraus und wirkte auch 1903 und 1906 bei den Wagnerauff. an der Covent Garden Opera London mit. Von seinen durchwegs der Harfe gewidmeten Salonst\u00fccken ist die Mazurka, op. 12, beliebt geblieben. 1890 Kammervirtuose des Hg. Ernst von Sachsen-Altenburg. Sein Bruder Heinrich S. (geb. Wien, 25. 11. 1867; gest. Boston, Mass., USA, 17. 4. 1913) stud. 1878\u201384 ebenfalls bei Anton Zamara am Wr. Konservatorium der Ges. der Musikfreunde, trat nach einer Saison beim Parlow Orchester, Hamburg, 1885 als 1. Harfenist ins Boston Symphony Orchestra ein und lehrte am Bostoner New England Conservatory. Er trat auch als Solist bei den Musikfestivals in Worcester (Mass.) sowie in Paris und London auf. S.s Sohn Joseph E. S. (geb. Leipzig, Sachsen/Deutschland, 19. 5. 1886; gest. Los Angeles, Ca., USA, 9. 12. 1938) stud. bei seinem Vater, 1900\u201301 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904\u201305 bzw. 1908\u201309 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911\u201313 Harfenist einer Opernges. in Boston, lehrte er 1915\u201320 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n", "source": 179}}, {"model": "metainfo.text", "pk": 47661, "fields": {"kind": 131, "text": "Schu\u00ebcker (eigentl. Schu\u00f6cker)\u00a0Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preu\u00dfen (Bad Kreuznach, Deutschland), 9. 11. 1911.", "source": 179}}, {"model": "metainfo.text", "pk": 47662, "fields": {"kind": 130, "text": "Sohn von Norbert Michael, Bruder von Norbert, Neffe von Anton S. (alle s. d.). Bedingt durch die zahlreichen Reisen seines Vaters, lernte S. bereits in fr\u00fcher Jugend zahlreiche St\u00e4dte Europas kennen. Seine ersten k\u00fcnstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der \u00dcbersiedlung seines Vaters nach Paris besuchte S. 1854/55 die Modellierklasse der Pariser Akad. Aber schon kurz darauf verlegte der Vater seinen Wohnsitz nach Frankfurt a. Main, wo S. 1855/56 vorerst Privatunterricht in Bildhauerei von dem mit seinem Vater befreundeten Eduard Schmidt von der Launitz erhielt. 1856\u201358 stud. er am St\u00e4del\u2019schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858\u201361 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 \u00fcbersiedelte er nach Wien, 1863\u201365 hielt er sich, finanziert durch ein Rom-Stipendium, in Italien auf, 1866 in Paris. Ab 1867 wieder in Wien, arbeitete S. als Mitarbeiter bei den Bildhauern Victor Tilgner und Rudolf Weyr mit, 1894\u20131908 war er Ass. an der Akad. der bildenden K\u00fcnste in Wien, wo er zeitweise die Klasse f\u00fcr Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-B\u00fcste f\u00fcr das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisb\u00fcste des Nikolaus Joseph v. Jacquin f\u00fcr die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) f\u00fcr den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschm\u00fcckung des Naturhist. Mus. in Wien mit.\n", "source": 178}}, {"model": "metainfo.text", "pk": 47663, "fields": {"kind": 131, "text": "Schr\u00f6dl\u00a0Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908.", "source": 178}}, {"model": "metainfo.text", "pk": 47672, "fields": {"kind": 130, "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olm\u00fctz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Br\u00fcnn (Brno) Maschinenbau, 1898\u20131903 an der Bauing.Schule (1905 Staatspr\u00fcfung). Zun\u00e4chst an der Br\u00fcnner Hochschule f\u00fcr einige Monate als Ass. t\u00e4tig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen gr\u00f6\u00dferen Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919\u201322), betraut. Als Baurat \u00fcbernahm er 1920 die selbst\u00e4ndige Leitung der Bauabt., die f\u00fcr die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. ma\u00dfgebl. an den von Peter Behrens und Alexander Popp geplanten Neubauten bei der Tabakfabrik in Linz (1929ff.) sowie an der Errichtung zahlreicher, in der Nachkriegszeit geschaffener Wohnhausanlagen beteiligt. Daneben publ. S.\u00fcber die Baut\u00e4tigkeit der \u00d6sterr. Tabakregie. 1930 HR, 1947 i. R.\n", "source": 177}}, {"model": "metainfo.text", "pk": 47673, "fields": {"kind": 131, "text": "Schreyer\u00a0Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravic\u00ed, M\u00e4hren (Bridlicn\u00e1, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950.", "source": 177}}, {"model": "metainfo.text", "pk": 47676, "fields": {"kind": 130, "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840\u201341 dort Med., ab 1841 an der Univ. Wien, wo er 1845 zum Dr. med. prom. wurde. Nach weiterer chirurg. Ausbildung wirkte er am Provinzialstrafhaus in Wien, ab 1856 am Filialspital des Allg. Krankenhauses in Wien II., zuletzt als dessen prov. Vorstand, ab 1858 als Primarius der IV. med. Abt. am Allg. Krankenhaus. S. machte sich um die Verwendung der 1853 in Schottland entwickelten Subkutanspritze zur Einf\u00fchrung von Medikamenten bei der Schmerzbehandlung (Injektion) verdient und stellte diese, erst in den 70er Jahren allg. angewendete Methode sowie seine Erfahrungen damit schon 1861 vor. Auch begann er sich fr\u00fch mit dem Einflu\u00df der Haft auf die Entstehung von Geistesst\u00f6rungen bei Str\u00e4flingen zu besch\u00e4ftigen. An seiner Klinik betrieb der ab 1878 dort t\u00e4tige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882\u201385 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n", "source": 175}}, {"model": "metainfo.text", "pk": 47677, "fields": {"kind": 131, "text": "Scholz\u00a0Franz, Mediziner. Geb. Moldau, B\u00f6hmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902.", "source": 175}}, {"model": "metainfo.text", "pk": 47678, "fields": {"kind": 130, "text": "Sohn des Kaspar Schram(m)el (geb. H\u00f6rmanns b. Litschau/Litschau, N\u00d6, 6. 1. 1811; gest. Langenzersdorf, N\u00d6, 20. 12. 1895) und (Eheschlie\u00dfung 1853) der Volkss\u00e4ngerin Aloisia Ernst (1829\u20131881), Bruder des Joseph S. (geb.Ottakring, N\u00d6/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833\u20131905), der, 1866 als Invalide aus dem Milit\u00e4rdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon fr\u00fch in Dorfkapellen als Klarinettist t\u00e4tig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkst\u00fcml.-musikal. Wirtshausproduktionen. S. wirkte ebenso wie sein Bruder Joseph schon als Kind bei den Auftritten des Vaters als Geiger mit (1861 gilt als Beginn ihrer \u00f6ff. T\u00e4tigkeit), doch erhielten beide \u2013 ein f\u00fcr ihre Verh\u00e4ltnisse ungew\u00f6hnl. Schritt \u2013 auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862\u201363 Violinsch\u00fcler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschlu\u00df (aus ungekl\u00e4rten Ursachen) 1866 Karl Hei\u00dflers, Joseph 1865/66 ebenfalls Sch\u00fcler Hellmesbergers. Nach dem Milit\u00e4rdienst (1866\u201372, 1870 Korporal) spielte S. in einigen \u201eNationalquartetten\u201c und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in gro\u00dfen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gr\u00fcndete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient \u2013 1869\u201371 \u2013 bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett (\u201eNu\u00dfdorfer Terzett\u201c), in dem Joseph die 1., er selbst die 2. Geige und zun\u00e4chst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Br\u00fcder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. \u201epicks\u00fc\u00dfes H\u00f6lzl\u201c) Georg D\u00e4nzer (geb.Hernals, N\u00d6/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett \u201eGebr. Schrammel, D\u00e4nzer und Strohmayer\u201c, das in dieser Besetzung bis zum Ausscheiden D\u00e4nzers Ende 1891 \u2013 Strohmayer verlie\u00df das Quartett Ende 1892 \u2013 verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schlie\u00dfl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die urspr\u00fcngl. Quartettbesetzung zur\u00fcckgegriffen. Im Wr. Musikleben spielten die \u201eSchrammeln\u201c eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu h\u00f6ren, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit \u201eNaturs\u00e4ngern\u201c, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkss\u00e4nger lie\u00dfen diese Vortr\u00e4ge zeitweise verbieten, weswegen die Br\u00fcder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. \u00c4u\u00dferst erfolgreiche Gastspielreisen f\u00fchrten das Quartett 1888 und 1889 durch Deutschland, der letzte H\u00f6hepunkt waren die t\u00e4gl. Produktionen anl\u00e4\u00dfl. der Internationalen Ausst. f\u00fcr Musik- und Theaterwesen in Wien, 1892, doch mu\u00dfte sich S. wegen seiner zunehmenden Herzkrankheit dann zur\u00fcckziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterf\u00fchrte, v\u00f6llig mittellos. Als Komponist schlo\u00df S. an seine Vorl\u00e4ufer an (so gab er 1888 3 He. \u201eAlte oesterreichische Volksmelodien \u2026\u201c heraus), seine (zu etwa 1/3 gedruckten) \u00fcber 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und M\u00e4rsche (u. a. \u201eWien bleibt Wien\u201c, 1886), Josephs bekannteste Komposition ist das Lied \u201eVindobona, du herrliche Stadt\u201c. Die \u201eSchrammeln\u201c und \u201eSchrammelmusik\u201c \u201eblieben als Begriffe f\u00fcr ein volkst\u00fcml. Ensemble und ein entsprechendes Musizieren erhalten\u201c (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorl\u00e4ufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. F\u00e4higkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch h\u00f6chste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strau\u00df.\n", "source": 176}}, {"model": "metainfo.text", "pk": 47679, "fields": {"kind": 131, "text": "Schrammel\u00a0Johann, Musiker und Komponist. Geb. Neulerchenfeld, N\u00d6 (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893.", "source": 176}}, {"model": "metainfo.text", "pk": 47684, "fields": {"kind": 130, "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine fr\u00fche Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826\u201329 an der Univ. Graz Jus, 1829 Dr. jur., und trat 1834 bei der Hof- und Kammerprokuratur als Konzeptspraktikant ein. 1836 wurde er zur Kammerprokuratur nach Lemberg (L\u2019viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) t\u00e4tig war. 1847 erfolgte seine Versetzung als Landrat zum Gef\u00e4llen-Bez.Gericht bzw. Landrecht in Tarn\u00f3w. W\u00e4hrend eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. f\u00fcr den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschu\u00df mit, f\u00fcr den er auch als Referent fungierte. Hier setzte er sich u. a. bes. f\u00fcr die Unabh\u00e4ngigkeit K\u00e4rntens ein. Weiters war S. Mitgl. der Redaktionskomm. f\u00fcr die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem \u201eZentrumklub\u201c bei und geh\u00f6rte im Dezember dieses Jahres der Reichstagsdeputation nach Olm\u00fctz (Olomouc) und Prag an. Nach der Aufl\u00f6sung des Reichstags 1849 zog sich S. aus der Politik zur\u00fcck und wurde dem n\u00f6. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Pr\u00e4s. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenb\u00fcrgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepr\u00e4s. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepr\u00e4s. des Wr. Landesgerichts ernannt. Wegen seiner geschw\u00e4chten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n", "source": 174}}, {"model": "metainfo.text", "pk": 47685, "fields": {"kind": 131, "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884.", "source": 174}}, {"model": "metainfo.text", "pk": 47688, "fields": {"kind": 130, "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbi\u00df, Vater von B\u00e9la Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. B\u00e9la Frh. v. S.). Wuchs nach dem fr\u00fchen Tod seines Vaters im Hause von Karl Gf. Gatterburg, des zweiten Gatten seiner Mutter, auf. Nach Privatunterricht trat er 1820 beim 4. Chevauxlegersrgt. in die k. Armee ein, wurde 1822 Unterlt., 1831 Oblt., 1835 Rtm. 2., 1840 1. Kl., 1846 Mjr., 1848 Obstlt., 1849 Obst., 1851 GM, 1859 FML, 1863 pensioniert, 1865 jedoch als Gendarmeriegen.Insp. reaktiviert und 1868 als Gen. der Kav. ad honores endg\u00fcltig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich w\u00e4hrend des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab \u00fcberstellt und bew\u00e4hrte sich in der Folge an verschiedenen Standorten als Brigadier. Daneben war er 1856 dem Kg. v. Griechenland, 1858 Erzhg. Karl Ferdinand bei dessen Inspektionstour zu den Landeskontingenten des Dt. Bundes zugewiesen. Im italien. Feldzug von 1859 tat er sich als Division\u00e4r beim 3. Inf.Armeekorps durch umsichtige F\u00fchrung sowie pers\u00f6nl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode f\u00fchrte er dann die Administrationsgesch\u00e4fte des Landesgendarmeriekmdo. in Lemberg (L\u2019viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de V\u00e1sonyke\u00f6 (geb. Wien, 30. 10. 1805; gest. Verona, Venetien/Italien, 9. 1. 1851), 1855 Theresia Franziska Juliana Si(e)gel (geb. Wien, 11. 3. 1827; gest. Wien, 1. 5. 1857) und 1859 Anna Scheiger (geb. Wien, 7. 7. 1820; gest. G\u00f6rz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausl\u00e4nd. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes f\u00fcr die von ihm angeregte und nach dem Feldzug von 1848/49 durchgef\u00fchrte Reorganisation der Husarenrgt. verdient.\n", "source": 172}}, {"model": "metainfo.text", "pk": 47689, "fields": {"kind": 131, "text": "Sch\u00f6nberger (Schoenberger) (Carl Friedrich)\u00a0Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorder\u00f6sterr. (Deutschland), 30. 6. 1804; gest. G\u00f6rz, G\u00f6rz-Gradisca (Gorizia, Italien), 19. 12. 1880.", "source": 172}}, {"model": "metainfo.text", "pk": 47690, "fields": {"kind": 130, "text": "Stud. 1872\u201380 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), sp\u00e4ter auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Ru\u00dfland, Deutschland, \u00d6sterr. und Belgien. 1880\u201385 lehrte er in Wien, 1886 reiste er nach Schweden und anschlie\u00dfend nach London, wo er im J\u00e4nner 1887 erstmals als Solist auftrat und sich in der Folge niederlie\u00df. S. geh\u00f6rte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, sp\u00e4ter unternahm er Konzertreisen in Europa und England, auch als Dirigent einer reisenden Opernges. Er war mit der Tochter des engl. Gen. Sir Henry Tuson verheiratet.\n", "source": 173}}, {"model": "metainfo.text", "pk": 47691, "fields": {"kind": 131, "text": "Sch\u00f6nberger\u00a0Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Gro\u00dfbritannien), 9. 3. 1930.", "source": 173}}, {"model": "metainfo.text", "pk": 47694, "fields": {"kind": 130, "text": "Sohn des Vorigen, Bruder von Arthur S., Schwager von M. Hajek (beide s. d.); mos. Stud. nach Absolv. des Akadem. Gymn. in Wien ab 1882 an der dortigen Univ. Med., u. a. bei E. Albert, Billroth, E. W. v. Br\u00fccke sowie Nothnagel (alle s. d.), und wurde 1888 zum Dr. med. prom. Seine weitere Ausbildung erhielt er 1887/88 als Aspirant an der Klinik Nothnagel, ab 1889 bei Albert, wo er 1891\u201395 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien f\u00fcr Chirurgie und wurde 1907 Tit. ao., 1927 unbesoldeter ao. Prof. 1895/96 stand er der Chirurg. Abt. an der Wr. Allg. Poliklinik vor, kam 1896 als Primarius f\u00fcr Chirurgie an das K.-Franz-Josef-Spital, 1902 an das Wiedner Krankenhaus und trat 1934 i. R. S. gestaltete die von ihm geleiteten Abt. gem\u00e4\u00df den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und ver\u00f6ff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentz\u00fcndung bzw. -katarrh, v. a. aber nat\u00fcrl. chirurg. Problemen. Als einer der ersten besch\u00e4ftigte er sich mit der operativen Behandlung der akuten Blinddarmentz\u00fcndung, propagierte umfangreiche Resektionen bei Magen- und Zw\u00f6lffingerdarmgeschw\u00fcren, erarbeitete Vorbeugungsma\u00dfnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und besch\u00e4ftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besa\u00df spr\u00fchenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch \u00f6ff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des \u00d6sterr. Verdienstordens. Durch sein Bem\u00fchen um die Diagnostik der Blinddarmentz\u00fcndung und sein entschiedenes Eintreten in Theorie und Praxis f\u00fcr umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen pers\u00f6nl. Verh\u00e4ltnis zu seinem Bruder Arthur, das in zwei von dessen erz\u00e4hler. Werken (\u201eDer blinde Geronimo und sein Bruder\u201c, \u201eFlucht in die Finsternis\u201c) Niederschlag fand.\n", "source": 169}}, {"model": "metainfo.text", "pk": 47695, "fields": {"kind": 131, "text": "Schnitzler\u00a0Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939.", "source": 169}}, {"model": "metainfo.text", "pk": 47696, "fields": {"kind": 130, "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874\u201378 an der Univ. Wien Jus, 1881 Dr. jur. 1879 trat S. beim Landesgericht Wien in den Justizdienst, wurde 1885 Bez.Gerichtsadjunkt in Wolkersdorf, 1887 in Wien-Hietzing, 1891 Gerichtsadjunkt beim Wr. Landesgericht. 1896 wechselte S. zur Staatsanwaltschaft (Substitut in Korneuburg) und war ab 1897 Staatsanwalt in Steyr, 1902 in Krems, bis er 1903 ins Justizmin. berufen wurde, wo er, 1904 Sektionsrat, 1907 Titel und Charakter eines Min.Rates, 1909 Min.Rat, 1912 zum Sektionschef avancierte. S. war an den legislativen Arbeiten des Justizmin., insbes. auf den Gebieten der Strafrechts- und der Strafproze\u00dfreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees f\u00fcr die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wof\u00fcr er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verst\u00e4ndnis f\u00fcr die Bed\u00fcrfnisse der Milit\u00e4rverwaltung \u20131877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. \u2013 brachte es mit sich, da\u00df sein Rat von den milit\u00e4r. Stellen oft in Anspruch genommen wurde; f\u00fcr seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Milit\u00e4rstrafverfahrens (Milit\u00e4rstrafproze\u00dfordnung von 1912) erhielt er 1912 das Komturkreuz des Franz Joseph-Ordens mit dem Stern. Auch die zahlreichen Kriegsstrafgesetze sind unter seiner Mitwirkung zustande gekommen. In den Aussch\u00fcssen beider H\u00e4user des Reichsrates war er sehr oft als Vertreter des Justizmin. t\u00e4tig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatspr\u00fcfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n", "source": 170}}, {"model": "metainfo.text", "pk": 47697, "fields": {"kind": 131, "text": "Schober\u00a0Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917.", "source": 170}}, {"model": "metainfo.text", "pk": 47700, "fields": {"kind": 130, "text": "Sohn von (Heinrich) Eduard v. S. (s. u.), Neffe von (Wilhelm) Alexander, Cousin von Philipp Wilhelm d. J. und Paul Eduard v. S. (alle s. d.), Schwiegervater von Armand Dumreicher v. \u00d6sterreicher (s. d.); evang. HB. S., der als Mitsch\u00f6pfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Gro\u00dfhandlungshaus \u201eAlexander Schoeller\u201c (sp\u00e4ter \u201eSchoeller & Co.\u201c) nach Wien geholt, ab 1869 \u00f6ff. Gesellschafter. Er konnte seinen Onkel bei der Weiterf\u00fchrung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und M\u00fchlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von \u201eSchoeller & Co.\u201c nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) \u00fcberging, durch die Erzeugung von Blechen und Dr\u00e4hten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene H\u00fclsenfabrik zur Produktion von Kriegsmaterial begr\u00fcndet. Im Ternitzer Werk, der \u201eTernitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.\u201c, f\u00fchrte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gr\u00fcnden nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgel\u00f6st. Wegen eines schweren Nervenleidens mu\u00dfte er die Firmenleitung zuletzt fast g\u00e4nzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard \u00fcberlassen. S. bekleidete auch eine gro\u00dfe Zahl von Verwaltungsratsstellen bei gro\u00dfen \u00f6sterr. Ind.-, Banken- und Eisenbahnunternehmungen, wie etwa bei der Bodencreditanstalt in Wien und der K. Ferdinands-Nordbahn. Am Gmd.Leben der evang. Gmd. HB in Wien aktiv beteiligt, war S. 1865\u201389 Gmd.Vertreter, 1867\u201389 auch Presbyter und betreute \u2013 wie auch schon sein Onkel \u2013 deren Verm\u00f6gensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. D\u00fcren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, N\u00d6, 18. 1. 1879), war wie etl. andere Angeh\u00f6rige der Familie S. in der Zuckerind. t\u00e4tig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterst\u00fctzung seines Bruders Alexander pachtete er 1853 die Herrschaft Edel\u00e9ny bei Miskolcz und richtete die darauf befindl. Zuckerr\u00fcbenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu k\u00e4mpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n", "source": 171}}, {"model": "metainfo.text", "pk": 47701, "fields": {"kind": 131, "text": "Schoeller\u00a0Gustav Adolph von, Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier. Geb. D\u00fcren, Preu\u00dfen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889.", "source": 171}}, {"model": "metainfo.text", "pk": 47706, "fields": {"kind": 130, "text": "Sohn eines Sattlermeisters und Gastwirts. S., der bei seinem mus. und Zeichner. begabten Vater ersten Zeichenunterricht erhielt, sollte die Marinemusikschule in Pola (Pula) besuchen, wurde aber wegen einer Augenschw\u00e4che zur\u00fcckgestellt. Daraufhin ging er nach Wien und stud. hier 1880\u201382 an der Akad. der bildenden K\u00fcnste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender K\u00fcnstler, so z. B. f\u00fcr die Z. \u201e\u00dcber Land und Meer\u201c. Als der k\u00fcnstler. Erfolg etwas nachlie\u00df, kehrte S. nach Mies zur\u00fcck, \u00fcbersiedelte aber 1895 wieder nach M\u00fcnchen, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als \u201eSalome\u201c. Sein \u0152uvre umfa\u00dft neben Portr\u00e4ts von Schauspielerinnen und span. T\u00e4nzerinnen auch Bildnisse von Mitgl. des bayer. K\u00f6nigshauses. S., der Mitgl. der M\u00fcnchner K\u00fcnstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n", "source": 168}}, {"model": "metainfo.text", "pk": 47707, "fields": {"kind": 131, "text": "Schmutzler\u00a0Leopold, Maler. Geb. Mies, B\u00f6hmen (Str\u00edbro, Tschechien), 29. 3. 1864; gest. M\u00fcnchen, Bayern (Deutschland), 20. 6. 1940.", "source": 168}}, {"model": "metainfo.text", "pk": 47712, "fields": {"kind": 130, "text": "Sohn des P\u00e4chterehepaars Wolf und Sara S., mos.; nach \u00dcbersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromer\u00ed\u017e) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922\u201323 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterst\u00fctzt von seinem Onkel und sp\u00e4terem Manager, Leo Engel, 1925\u201326 an der Hochschule f\u00fcr Musik in Berlin (Sch\u00fcler von Hermann Weissenborn) fortsetzte. Nach dem Milit\u00e4rdienst in Rum\u00e4nien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Deb\u00fct als Rundfunks\u00e4nger am 29. 3. 1929 (Vasco da Gama in Meyerbeers \u201eDie Afrikanerin\u201c), weitere Rundfunkproduktionen (Hans in Smetanas \u201eDie verkaufte Braut\u201c, Lionel in Flotows \u201eMartha\u201c), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von au\u00dferordentlicher Popularit\u00e4t \u2013 seiner geringen K\u00f6rpergr\u00f6\u00dfe wegen allerdings nur innerhalb der zu dieser Zeit aufbl\u00fchenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in \u201eDer Liebesexpress\u201c (Urauff. Berlin 1931) folgte der unerh\u00f6rte Siegeszug von \u201eEin Lied geht um die Welt\u201c (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Macht\u00fcbernahme in Deutschland wurde S., schon vorher diffamiert und angefeindet, mit Auftrittsverbot belegt und Wien immer mehr zu seinem Lebenszentrum, ab 1935 sein Wohnort. Hier wurden die n\u00e4chsten Filme \u201eWenn du jung bist, geh\u00f6rt dir die Welt\u201c, 1933, \u201eEin Stern f\u00e4llt vom Himmel\u201c, 1935, auch engl. Version, und \u201eHeut ist der sch\u00f6nste Tag in meinem Leben\u201c, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Pal\u00e4stina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937\u20131938 (mit Auftritten u. a. in der New Yorker Carnegie Hall) hervorzuheben. 1938 wieder in Wien, gab er im Herbst desselben Jahres Konzerte in Belgien und lie\u00df sich 1939 in Br\u00fcssel nieder, wo er als Rudolf in Puccinis \u201eLa Boh\u00e8me\u201c einen seiner seltenen B\u00fchnenauftritte hatte. Infolge des Kriegsverlaufs mu\u00dfte S. 1940 aus Belgien fl\u00fcchten, hielt sich in S\u00fcdfrankreich auf und gelangte 1942 unter gro\u00dfen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf v\u00f6llig mittellos. S. wurde als S\u00e4ngertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine \u2013 allerdings kleine und nicht restlos durchgebildete \u2013 lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und h\u00f6chsten Lage und ein f\u00fcr S. charakterist. \u201ewehm\u00fctiges\u201c Timbre aus.\n", "source": 167}}, {"model": "metainfo.text", "pk": 47713, "fields": {"kind": 131, "text": "Schmidt,\u00a0\u2014 Joseph S\u00e4nger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rum\u00e4nien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Z\u00fcrich (Schweiz), 16. 11. 1942.", "source": 167}}, {"model": "metainfo.text", "pk": 47714, "fields": {"kind": 130, "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Kne\u017ena (Rychnov nad Kne\u017enou) und Olm\u00fctz (Olomouc) begann S. eine kaufm\u00e4nn. Lehre in Br\u00fcnn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Gro\u00dfhandel bet\u00e4tigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gew\u00e4hlt worden war, \u00fcbernahm S. die Leitung des v\u00e4terlichen Gesch\u00e4fts in Schildberg und sp\u00e4ter gem. mit seinem \u00e4lteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papierm\u00fchle (sie galt als die \u00e4lteste der \u00d6sterr.-ung. Monarchie) und Bleiche in Gro\u00dfullersdorf und betrieb dort nach dem Ableben seines Bruders (1871) eine Papier- und Leinenerzeugung im eigenen Namen, jedoch unter der Fa. Ant. J. Schmidt u. S\u00f6hne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere f\u00fchrten zu einer neuen Bl\u00fcte dieser Papierm\u00fchle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Gro\u00dfullersdorf, eine \u2013 1917 aufgel\u00f6ste \u2013 Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige f\u00fcrstlich liechtensteinsche Mahlm\u00fchle in Olleschau (Ol\u0161any) und errichtete dort eine Fabrik f\u00fcr Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG \u00fcbernommen, die ab 1870 auch das sp\u00e4ter verbreitete Zigarettenpapier Marke \u201eOlleschau\u201c herstellte, wobei die Lieferschwierigkeiten der franz\u00f6s. Konkurrenz in den Krisenjahren 1870/71 gen\u00fctzt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olm\u00fctzer Handels- und Gewerbekammer in den m\u00e4hr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Gro\u00dfullersdorf, 1879\u201391 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegr\u00fcndeten Te\u00dfthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, sp\u00e4ter auch anderen Fragen der Landwirtschaft widmete. S. n\u00fctzte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die M\u00f6glichkeiten des erh\u00f6hten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde f\u00fcr seine wirtschaftliche und polit. T\u00e4tigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon w\u00e4hrend seiner Lebenszeit wurde die Unternehmung von seinen S\u00f6hnen Anton S. (geb. Gro\u00dfullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Gro\u00dfullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Gro\u00dfullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgef\u00fchrt. W\u00e4hrend Anton S. bis 1917 die Wr. Gesch\u00e4ftsstelle leitete, danach mit Richard die Ullersdorfer Papierm\u00fchle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einf\u00fchrte. Alle drei Br\u00fcder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizit\u00e4tswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung t\u00e4tig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908\u20131938 Kammerrat der Handels- und Gewerbekammer Olm\u00fctz.\n", "source": 166}}, {"model": "metainfo.text", "pk": 47715, "fields": {"kind": 131, "text": "\u2014 Anton Schmidt,\u00a0Fabrikant und Politiker. Geb. Schildberg, M\u00e4hren (\u0160t\u00edty, Tschechoslowakei), 9. 12. 1826; gest. Gro\u00dfullersdorf, M\u00e4hren (Velk\u00e9 Losiny, Tschechoslowakei), 28. 3. 1892.", "source": 166}}, {"model": "metainfo.text", "pk": 47718, "fields": {"kind": 130, "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete f\u00fcr Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Franz\u00f6s. Krieg teil, wurde danach Red. des \u201eWestph\u00e4lischen Grenzboten\u201c in M\u00fcnster, dann Leiter des Feuilletons und \u201eReimchronist\u201c der \u201eDeutschen Zeitung\u201c in Paris und war schlie\u00dflich ab 1880 Berichterstatter der \u201eBerliner Post\u201c; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen sp\u00e4teren Ver\u00f6ff. zugute kamen. In der Folge \u00fcbersiedelte S. nach Wien, wo er 1886 in die Red. des \u201eNeuen Wiener Tagblatts\u201c eintrat, der er bis zu seinem Tod angeh\u00f6rte. Daneben arbeitete er an mehreren Ztg. (u. a. der \u201eIllustrirten Zeitung\u201c, Leipzig) und Z. (u. a. der \u201eGartenlaube\u201c) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. \u201eMuth\u201c, 1899), Erz., M\u00e4rchen, den historisierenden Wr. Roman aus dem 15. Jh. \u201eB\u00fcrger und Studenten\u201c sowie dramat. Werke.\n", "source": 164}}, {"model": "metainfo.text", "pk": 47719, "fields": {"kind": 131, "text": "Schmal\u00a0Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preu\u00dfen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900.", "source": 164}}, {"model": "metainfo.text", "pk": 47724, "fields": {"kind": 130, "text": "Sohn eines in Frankreich t\u00e4tigen Tschechen und einer Franz\u00f6sin (geb. Beauchez), lebte er ab 1860 in B\u00f6hmen und besuchte das Akadem. Gymn. in Prag. Er wurde als aktiver Teilnehmer an Demonstrationen gegen den Justizminister Herbst (s. d.) verhaftet und wegen Hochverrats angeklagt, floh jedoch vor dem Proze\u00df nach Paris, dann 1869 nach Berlin, wo er die \u201eCorrespondance Tch\u00e8que\u201c red. W\u00e4hrend des dt.-franz\u00f6s. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zur\u00fcck und fand seinen Lebensunterhalt als Lehrer der franz\u00f6s. Sprache in Leitomischl (Litomy\u0161l), von 1873 an in Prag. Polit. geh\u00f6rte er dem radikalen Fl\u00fcgel der demokrat. Jungtschechen an, k\u00e4mpfte f\u00fcr die Einf\u00fchrung des allg. Wahlrechts und trat auch in Prager Arbeiterbll. mit Artikeln hervor. V. a. widmete er sich der Anbahnung der freundschaftl. Beziehungen zu Frankreich, f\u00fchrte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag f\u00fcr franz\u00f6s. Ztg. 1893\u201398 war er Korrespondent der \u201eN\u00e1rodn\u00ed listy\u201c in Paris, dann st\u00e4ndiger Mitarbeiter von \u201eLe Temps\u201c in Prag, ab 1903 Red. der erneuerten \u201eCorrespondance Tch\u00e8que\u201c. Daneben war er als \u00dcbers. franz\u00f6s. Romane und Schauspiele t\u00e4tig und verf. eine Reihe von verbreiteten Sprachlehrb\u00fcchern und Konversationsbehelfen.\n", "source": 165}}, {"model": "metainfo.text", "pk": 47725, "fields": {"kind": 131, "text": "\u2014 -Beauchez\u00a0Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, B\u00f6hmen (Praha, Tschechien), 14. 12. 1912.", "source": 165}}, {"model": "metainfo.text", "pk": 47726, "fields": {"kind": 130, "text": "Bauernsohn; stud. kath. Theol. an der Univ. Prag, 1860 Priesterweihe, 1865 Dr. theol. Ab 1862 Adjunkt an der theolog. Fak. in Prag, lernte er auf einer Stud.Reise durch Deutschland die damals namhaftesten Theologen (Hergenr\u00f6ther, Hettinger, D\u00f6llinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. f\u00fcr Kirchengeschichte an der Univ. Prag und f\u00fchrte 1878 das Fach Patrol. in den Lehrplan ein. S. war Historiograph der Fak., mehrmals Dekan und Rektor. 1882 hatte er als letzter Rektor der ungeteilten Univ. die Trennungsverhh. zu leiten. Mitgl. diverser gel. Ges., Landtagsabg. der Fraktion der verfassungstreuen Gro\u00dfgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte B\u00f6hmens. In seiner Monographie \u00fcber den Hl. Wolfgang bem\u00fchte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n", "source": 163}}, {"model": "metainfo.text", "pk": 47727, "fields": {"kind": 131, "text": "Schindler\u00a0Josef, Kirchenhistoriker. * Lachowitz (Lachovice, B\u00f6hmen), 23. 6. 1835; \u2020 Prag, 22. 2. 1911.", "source": 163}}, {"model": "metainfo.text", "pk": 47728, "fields": {"kind": 130, "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); w\u00e4hrend der Volksschulzeit S\u00e4nger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verh\u00e4ltnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien besch\u00e4ftigt; daneben stud. er am Konservatorium der Ges. der Musikfreunde Klavier bei Fischhof, Pirkhert (beide s. d.) und Franz Ramesch, Komposition bei Simon Sechter sowie Waldhorn bei Richard Lewy und lernte dort den Dirigenten H. Richter (s. d.) kennen, mit dem er zeitlebens freundschaftlich verbunden war. Ab 1865 war S. 1. Hornist am Hofburgtheater und als Musiklehrer u. a. in der Familie des Justizministers Stremayr und in der Familie Kautsky t\u00e4tig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivit\u00e4ten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Br\u00fcdern zur Arbeiterbewegung; 1868 gr\u00fcndete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das \u201eLied der Arbeit\u201c, das zur Hymne der \u00f6sterr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (h\u00e4ufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, R\u00fcckert), wobei die \u00dcbereinstimmung von textlicher und musikal. Deklamation f\u00fcr ihn sehr wesentlich war. 1872 gr\u00fcndete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste \u00f6sterr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur beh\u00f6rdlichen Einstellung 1878 war S. Red. der \u201e\u00d6sterreichischen Musikerzeitung\u201c, 1878 gr\u00fcndete er den Arbeiter-S\u00e4ngerbund Wien, den ersten \u00f6sterr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880\u201382 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem m\u00e4rchenhaften, allegor. Libretto von Albert Dulk) im sp\u00e4tromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegr\u00fcnder und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-S\u00e4ngerbundes Landstra\u00dfe, 1891 Mitbegr\u00fcnder des Verbandes der Arbeiter-Gesangver. Nieder\u00f6sterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gr\u00fcndete S. die \u201eArbeiters\u00e4nger-Zeitung\u201c, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der \u201eArbeiter-Zeitung\u201c, wobei er bem\u00fcht war, das Kunstverst\u00e4ndnis der Arbeiter zu f\u00f6rdern und ihnen die klass. und zeitgen\u00f6ss. Musik n\u00e4herzubringen. S. sah in der von ihm begr\u00fcndeten Arbeiters\u00e4ngerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung \u00fcberhaupt.\n", "source": 161}}, {"model": "metainfo.text", "pk": 47729, "fields": {"kind": 131, "text": "Scheu\u00a0Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; \u2020 Wien, 12. 10. 1904.", "source": 161}}, {"model": "metainfo.text", "pk": 47730, "fields": {"kind": 130, "text": "S. stud. 1870\u201378 an der Akad. der bildenden K\u00fcnste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden K\u00fcnste in M\u00fcnchen bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885\u201390 als Ass. an der Kunstgewerbeschule in Prag bei Franti\u0161ek \u017den\u00ed\u0161ek, 1890\u20131922 war er dort als Prof. (1894 o. Prof.) f\u00fcr dekorative Malerei t\u00e4tig. 1913 Mitgl. der Tschech. Akad. der Wiss. und K\u00fcnste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, n\u00e4mlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten H\u00e4lfte der 80er Jahre wandte er sich, unter dem Einflu\u00df der westeurop. Malerei und bedingt durch die Konfrontation mit den sozialen Problemen des Alltags, Genrethemen zu, in denen Traurigkeit, Tragik und Resignation vorherrschen. In seinen melanchol. gestimmten Gem\u00e4lden der folgenden Periode verwendete er h\u00e4ufig Motive aus dem Milieu des abendlichen und n\u00e4chtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gef\u00fchlstiefe, die durch Lichteffekte bewirkt wird, aus.\n", "source": 162}}, {"model": "metainfo.text", "pk": 47731, "fields": {"kind": 131, "text": "Schikaneder\u00a0Jakub, Maler. * Prag, 27. 2. 1855; \u2020 Prag, 15. 11. 1924.", "source": 162}}, {"model": "metainfo.text", "pk": 47732, "fields": {"kind": 130, "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861\u20131919), der gem. mit seinem Onkel Sebastian S. (1844\u201389) 1885 die Holzdrahtfabrik S. & Neffe gegr\u00fcndet hatte; stud. Elektrotechnik an der H\u00f6heren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im v\u00e4terlichen Unternehmen, das Z\u00fcndholzhersteller belieferte, aber auch u. a. Jalousiest\u00e4be und Zahnstocher herstellte, und brachte es in kurzer Zeit zu gro\u00dfer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Z\u00fcndholzerzeugung nahm 1928 durch S.s Mitgr\u00fcndung des Luma-Verkaufsb\u00fcros der Z\u00fcndwarenfabriken Solo-AG Sch\u00fcttenhofen und S. & Neffe GmbH in Prag gro\u00dfen Aufschwung, Z\u00fcndh\u00f6lzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, besch\u00e4ftigte bis zu 300 Mitarbeiter. 1892\u20131938 f\u00fchrte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Ann\u00edn). Er stellte das Rohglas in einem Fabrikneubau in Langendorf her, der mit einem modernen Glasschmelzofen ausgestattet war. Das von S. erzeugte Bleikristall war nicht mehr blaustichig, sondern rein wei\u00df, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflu\u00dfte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n", "source": 159}}, {"model": "metainfo.text", "pk": 47733, "fields": {"kind": 131, "text": "Schell\u00a0Karl, Industrieller. * Langendorf (Dlouh\u00e1 Ves, B\u00f6hmen), 19. 12. 1892; \u2020 ebenda, 2. 6. 1945", "source": 159}}, {"model": "metainfo.text", "pk": 47734, "fields": {"kind": 130, "text": "Stud. 1860\u201365 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Br\u00fccke (s. d.), 1869 Priv.Doz. f\u00fcr die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. f\u00fcr Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegr\u00fcndeten Inst. f\u00fcr Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. f\u00fcr Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte gro\u00dfes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach \u00fcbers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Soci\u00e9t\u00e9 scientifique m\u00e9dicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n", "source": 160}}, {"model": "metainfo.text", "pk": 47735, "fields": {"kind": 131, "text": "Schenk\u00a0Samuel Leopold, Mediziner. * \u00dcrm\u00e9ny (Mojm\u00edrovce, Slowakei), 23. 8. 1840; \u2020 Schwanberg (Stmk.), 17. 8. 1902.", "source": 160}}, {"model": "metainfo.text", "pk": 47746, "fields": {"kind": 130, "text": "Sohn eines Finanzsekr. \u2013 Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869\u201372 an der Wr. ABK bei \u00bfKarl Mayer fort. 1872 \u00fcbersiedelte er nach M\u00fcnchen und wurde 1873 an der dortigen ABK Sch\u00fcler von S\u00e1ndor Wagner. In den Folgejahren arbeitete er als Maler in M\u00fcnchen und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878\u201381 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, sp\u00e4ter w\u00e4hlte er Themen aus der Gegend um den Balaton. 1899\u20131902 hielt er sich wieder in M\u00fcnchen auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften z\u00e4hlt, gewann 1897 den Esterh\u00e1zy-Preis, 1899 den Preis des Ung. Ver. f\u00fcr Bildende K\u00fcnste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u.\u00a0a. Luftspiegelung \u00fcber der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Gal\u00e9ria in Budapest.\n\n", "source": 201}}, {"model": "metainfo.text", "pk": 47747, "fields": {"kind": 131, "text": "T\u00f6lgyessy Art\u00far, Maler. Geb. Szegedin (Szeged, H), 1.\u00a05. 1853; gest. Budapest (H), 2.\u00a02. 1920; r\u00f6m.-kath.", "source": 201}}, {"model": "metainfo.text", "pk": 47748, "fields": {"kind": 130, "text": "S\u00fcdtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T.\u00a0u.\u00a0H. (1728\u20131788) und Josepha Gfn. v. T.\u00a0u.\u00a0H. (1741\u20131819), Cousin des F\u00fcrstbischofs von Trient Peter Vigil Gf. v. T.\u00a0u.\u00a0H. (1776\u20131780), verwandt mit F\u00fcrstbischof \u00bfLeopold Leonhard Gf. v. T.\u00a0u.\u00a0H. \u2013 T. stud. in Passau, Salzburg und Rom Theol. und empfing dort als Mitgl. des Germanicums die Priesterweihe. 1790 wurde er Kanoniker von Trient, 1794 von Salzburg, 1797 Tit.bischof von Iasus und Weihbischof von Trient (Konsekration durch Leopold Leonhard Gf. v. T.\u00a0u.\u00a0H.). Als letzter vom Trienter Domkapitel gew\u00e4hlter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T.\u00a0u.\u00a0H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k.\u00a0Investitur nicht mehr erhalten, da er Anfang 1801 vor den franz\u00f6s. Truppen zun\u00e4chst nach G\u00f6rz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich f\u00fcr den Fortbestand seines Bistums einsetzte. Er k\u00e4mpfte erfolgreich gegen die Pl\u00e4ne K. \u00bfFranz\u2019\u00a0II. (I.), der f\u00fcr Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endg\u00fcltige S\u00e4kularisierung des F\u00fcrstbistums, Kl\u00f6ster wurden aufgel\u00f6st, das Hochstift mit seinen 150.000 Einwohnern \u00d6sterr. zugeordnet. Nach dem Frieden von Pre\u00dfburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zur\u00fcckkehren, wo er in Trient eine Stadtwohnung bezog, da seine f\u00fcrstbisch\u00f6fl. Residenz, das Castello del Buonconsiglio, s\u00e4kularisiert worden war. Die staatl. \u00dcbergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bisch\u00f6fe: T. von Trient, Karl Franz Gf. v. Lodron von Brixen (Bressanone) und Karl Rudolph v. Buol-Schauenstein von Chur. Bes. Protest riefen neben den Eingriffen in das religi\u00f6se Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von di\u00f6zesanen Priesterseminaren hervor. Die drei Bisch\u00f6fe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius\u00a0VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs best\u00e4rkt. W\u00e4hrend Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bez\u00fcge gesperrt; Buol-Schauenstein wurde nach Graub\u00fcnden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerst\u00e4ndige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar w\u00e4hlen. Dieser, Franz v. Spaur, erhielt von T. die geheime Best\u00e4tigung. Die bayer. Ma\u00dfnahmen auf kirchl. Gebiet (Ver\u00e4u\u00dferung gr\u00f6\u00dferer Tle. der bisch\u00f6fl. und Kapiteldotation, S\u00e4kularisierung mehrerer Kl\u00f6ster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zur\u00fcckkehren, schwor dem neuen Machthaber 1810 in Monza den Treueeid und nahm auch am Nationalkonzil in Paris 1811 teil. Obwohl Napoleon ebenso schroff in kirchl. Belange eingriff, duldete T. dessen Klosteraufhebungen, die Einf\u00fchrung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entlie\u00df 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut \u00fcbertragen. Als das Bistum 1814 wieder an \u00d6sterr. fiel, folgte eine Zeit der Konsolidierung, einige Kl\u00f6ster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bisch\u00f6fl. Mensa, das Domkapitel und die Bischofsnomination durch den \u00f6sterr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tats\u00e4chl. in seinem Bistum residieren.\n\n", "source": 200}}, {"model": "metainfo.text", "pk": 47749, "fields": {"kind": 131, "text": "Thun und Hohenstein Emanuel Maria Gf. von, F\u00fcrstbischof. Geb. Trient, Bistum Trient (Trento, I), 28.\u00a03. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9.\u00a010. 1818 (bestattet: Dom zu Trient); r\u00f6m.-kath.", "source": 200}}, {"model": "metainfo.text", "pk": 47754, "fields": {"kind": 130, "text": "", "source": 197}}, {"model": "metainfo.text", "pk": 47755, "fields": {"kind": 131, "text": "", "source": 197}}, {"model": "metainfo.text", "pk": 47756, "fields": {"kind": 130, "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2.\u00a0Ehefrau Julia T., geb. Grabowska, Halbbruder von \u00bfWlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von \u00bfLudwig v.\u00a0T. \u2013 T. besuchte das Gymn. in Krakau (Krak\u00f3w) und stud. 1884\u201386 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889\u201393 arbeitete er als Mithrsg. der Z. \u201eKurier Polski\u201c und als Journalist der Z. \u201eTygodnik Ilustrowany\u201c, \u201eKurier Warszawski\u201c und \u201eCzas\u201c; danach war er Sekr. von Adam Krasinski und stud. mit ihm 1896 in Heidelberg. Nach 1896 lebte er in Zakopane und Krakau, ab 1918 in Warschau. T. deb\u00fct. 1886 mit lyr. Prosa und Gelegenheitsdichtung (\u201eIlla\u201c). 1888 gewann er einen Preis der Jagiellonen-Univ. f\u00fcr ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik (\u201eWiersz na uczczenie pamieci Adama Mickiewicza\u201c), und 1889 einen weiteren f\u00fcr eine Hymne auf den Schriftsteller \u00bfJ\u00f3zef Ignacy Kraszewski (\u201eNa czesc Kraszewskiego\u201c). T. galt neben \u00bfJan Kasprowicz als der popul\u00e4rste Dichter der Bewegung Junges Polen und repr\u00e4sentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtb\u00e4ndigen Ged.smlg. \u201ePoezje\u201c (1891\u20131924) erlangte er Anerkennung als bedeutender Lyriker und Autorit\u00e4t der jungpoln. Literatur. T., der sich f\u00fcr Arthur Schopenhauers und Friedrich Nietzsches Phil. begeisterte, schrieb impressionist. Natur- und Stimmungslyrik mit einer Neigung zu Pessimismus und Dekadenz, erot. Ged. und Liebeslyrik sowie Novellen und Romane mit Motiven aus dem zeitgen\u00f6ss. Leben der Boh\u00e8me. 1898 erschien der Roman \u201eAniol smierci\u201c (dt. \u201eDer Todesengel\u201c, 1899), der in dt. \u00dcbers. zuerst als Vorabdruck in der Z. \u201eAus fremden Zungen\u201c erschien, in der T. i.\u00a0d.\u00a0F. weitere Ged. ver\u00f6ff. In der f\u00fcnfb\u00e4ndigen Novellensmlg. \u201eNa skalnym Podhalu\u201c (1903\u201310, dt.sprachige Auswahl unter dem Titel \u201eAus der Tatra\u201c, 1903) verherrlichte T. Land und Leute der Hohen Tatra im Dialekt der Gegend und unter Einbeziehung tradierter Stoffe und Legenden. Bedeutend sind auch seine zwei hist. Tatra-Romane \u201eMaryna z Hrubego\u201c (1910) und \u201eJanosik Nedza Litmanowski\u201c (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. W\u00e4hrend des 1.\u00a0Weltkriegs war T. Hrsg. der Z. \u201ePraca Narodowa\u201c. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zur\u00fcckgezogen, als Dauergast im Warschauer Hotel Europejski. Von dort wurde er von den Deutschen vertrieben und starb in einem Krankenhaus. T., der 1928 den Literaturpreis der Stadt Warschau erhielt, war ab 1921 Pr\u00e4s. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literat\u00f3w Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n", "source": 198}}, {"model": "metainfo.text", "pk": 47757, "fields": {"kind": 131, "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18.\u00a01. 1940; r\u00f6m.-kath.", "source": 198}}, {"model": "metainfo.text", "pk": 47758, "fields": {"kind": 130, "text": "Sohn von \u00bfOskar Karl T. und \u00bfEmma T., Bruder von Wilhelm (genannt Willy) T.-Weckersdorf (geb. Prag, 23. 9. 1879; gest. Salzburg, Sbg., 3. 3. 1968), der sich ebenfalls um die Entwicklung des \u00f6sterr. Pfadfinderwesens verdient machte und nach dem 2. Weltkrieg als Leiter der Ind.abt. der Sbg. Landesregierung fungierte, und von Obst. Oskar (genannt Ossi) T. (geb. Prag, 21. 3. 1881; gest. Innsbruck, Tirol, 19. 4. 1943), der im Heeresmin. t\u00e4tig war und gem. mit seiner j\u00fcd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923\u20131998), Univ.-Prof. f\u00fcr Politikwiss. in Wien. \u2013 T. diente ab 1896 im 3. Tiroler J\u00e4gerrgt. \u201eKaiserj\u00e4ger\u201c, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Milit\u00e4rsachverst\u00e4ndiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des milit\u00e4r. organisierten Knabenhortverbands in der milit\u00e4r.-patriot. Jugenderziehung und -f\u00fcrsorge ein neues Bet\u00e4tigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, \u00fcbertrug er das System der Boy Scouts des engl. Begr\u00fcnders des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gr\u00fcndete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in \u00d6sterr. und die Keimzelle des von ihm initiierten \u00d6sterr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915\u201319 Reichsfeldmeister des Bundes. Aufgrund des Verm\u00f6gens seiner Frau, einer Amerikanerin, konnte \u201ePapa\u201c T. hohe Geldmittel f\u00fcr die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronl\u00e4nder vom \u00d6sterr. Pfadfinderbund wirkte T. 1918\u201320 hauptberufl. als Insp. des Verbands f\u00fcr freiwillige Jugendf\u00fcrsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendf\u00fcrsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und f\u00fcr das Rote Kreuz t\u00e4tig. Da er sich weltanschaul. mit der aufkommenden \u201eb\u00fcndischen\u201c, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zur\u00fcck, blieb aber bis 1923 Bundesfeldmeister im \u00d6sterr. Pfadfinderbund. Er unterst\u00fctzte nunmehr den religi\u00f6sen Einfluss des kath. Klerus auf die Pfadfinder-Jugendarbeit und akzeptierte den Zusammenschluss der innerhalb des Bundes bereits bestehenden kath. Pfadfinderkolonnen zum Ring der St. Georgspfadfinder; 1926 Gr\u00fcndung der kath. Jugendorganisation des \u00d6sterr. Pfadfinderkorps St. Georg, das sich relativ rasch vergr\u00f6\u00dferte. Durch die Auss\u00f6hnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei gro\u00dfe Landg\u00fcter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zur\u00fcck. 1922\u201329 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals h\u00f6chste Pfadfinderausz., den \u201eSilberwolf\u201c. Als nach dem \u201eAnschluss\u201c \u00d6sterr. alle bestehenden Jugendorganisationen aufgel\u00f6st und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in M\u00fcnchen aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die \u00f6sterr. Pfadfinder posthum 1956 ihre h\u00f6chste Ausz., den \u201eSilbernen Steinbock\u201c. T.s Bruder ", "source": 199}}, {"model": "metainfo.text", "pk": 47759, "fields": {"kind": 131, "text": "Teuber Emmerich (genannt Imre), Pfadfinderf\u00fchrer und Offizier. Geb. Prag, B\u00f6hmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; r\u00f6m.-kath.", "source": 199}}, {"model": "metainfo.text", "pk": 47764, "fields": {"kind": 130, "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn sp\u00e4ter in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. \u2013 T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher S\u00e4nger werden. Er stud. 1908\u201310 Klavier, Komposition und Orchesterdirigieren am Hoch\u2019schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm \u00bfLeopold Demuth eine Stimme \u201ewie ein Zwirnsfaden\u201c. Wegen einer Liebelei musste T. nach Freiburg im Breisgau \u00fcbersiedeln, wo er dem Gesangsp\u00e4dagogen Carl Beines begegnete, der sein gro\u00dfes Talent erkannte und ihn ausbildete. T. gab sein Operndeb\u00fct 1913 in Chemnitz als Tamino in Mozarts \u201eZauberfl\u00f6te\u201c und erhielt im selben Jahr ein Engagement an die Dresdner Hofoper, an der er bis 1918 blieb. Er wurde ein gefragter lyr. Tenor, auch da er innerhalb k\u00fcrzester Zeit Partien einzustud. vermochte (Beiname \u201eSOS-Tenor\u201c), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg \u00bfFranz Leh\u00e1r kennen, in dessen sp\u00e4ten Operetten er dann, beginnend mit \u201ePaganini\u201c (Berliner Erstauff. 1926), die m\u00e4nnl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen \u201eT.-Lieder\u201c, die als Schlager gro\u00dfe Popularit\u00e4t erlangten (\u201eDein ist mein ganzes Herz\u201c etc.). Trotz Warnungen, dass er seine Stimme f\u00fcr die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Ber\u00fchmtheit. Fr\u00fch erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der \u00d6ffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Leh\u00e1rs \u201eDas Land des L\u00e4chelns\u201c, eine Rolle, die er \u00fcber 700-mal verk\u00f6rperte. Im selben Jahr kam sein erster Film, \u201eIch glaub\u2019 nie mehr an eine Frau\u201c, in die Kinos. Die auf Dr\u00e4ngen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um gro\u00dfe Summen gebracht. Er stand weiterhin erfolgreich auf Opernb\u00fchnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im M\u00e4rz 1933 von der B\u00fchne des Berliner Admiralspalastes gebuht und auf dem Kurf\u00fcrstendamm von SA-M\u00e4nnern niedergeschlagen worden war, fl\u00fcchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schlie\u00dfl. nach Wien. Hier wurde seine Operette \u201eDer singende Traum\u201c uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in \u201eBlossom Time\u201c einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. K\u00fcnstler zum Star, der sich \u00f6ff. gegen \u00bfAdolf Hitler \u00e4u\u00dferte. Internationale Tourneen f\u00fchrten ihn nach Nord- und S\u00fcdamerika, nach S\u00fcdafrika, Asien und Australien. Nach dem \u201eAnschluss\u201c \u00d6sterr. an das Dt. Reich 1938 lebte er ausschlie\u00dfl. in England (ab 1940 engl. Staatsb\u00fcrger). Er gab Konzerte, die BBC brachte regelm\u00e4\u00dfige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette \u201eOld Chelsea\u201c. An H\u00f6chstgagen und einen aufwendigen Lebensstil gew\u00f6hnt, geriet T. im Exil jedoch in hohe Schulden. Nach Kriegsende trat er wieder international auf, hatte aber deutl. Stimmprobleme. Seinen letzten Auftritt absolv. der an Lungenkrebs Erkrankte Ende September 1947 am Royal Opera House, Covent Garden, als Don Ottavio in Mozarts \u201eDon Giovanni\u201c, wobei er besser denn je gesungen haben soll. T.s Vater ", "source": 196}}, {"model": "metainfo.text", "pk": 47765, "fields": {"kind": 131, "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, S\u00e4nger, Dirigent und Komponist. Geb. Linz (O\u00d6), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 r\u00f6m.-kath.", "source": 196}}, {"model": "metainfo.uri", "pk": 26, "fields": {"uri": "http://sws.geonames.org/3194099/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 26, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 111, "fields": {"uri": "http://sws.geonames.org/3186886/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 133, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 149, "fields": {"uri": "http://sws.geonames.org/2761369/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 183, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 258, "fields": {"uri": "http://sws.geonames.org/3078610/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 327, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 299, "fields": {"uri": "http://sws.geonames.org/3077117/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 384, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 311, "fields": {"uri": "http://sws.geonames.org/3054643/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 637, "fields": {"uri": "http://sws.geonames.org/683506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 831, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 713, "fields": {"uri": "http://sws.geonames.org/2782067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 926, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1062, "fields": {"uri": "http://sws.geonames.org/2950159/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1390, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1089, "fields": {"uri": "http://sws.geonames.org/3071961/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1424, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1112, "fields": {"uri": "http://sws.geonames.org/2781806/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1291, "fields": {"uri": "http://sws.geonames.org/2781629/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1701, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1304, "fields": {"uri": "http://sws.geonames.org/2907669/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 1718, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1511, "fields": {"uri": "http://sws.geonames.org/684039/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2006, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1561, "fields": {"uri": "http://sws.geonames.org/3060972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2072, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1571, "fields": {"uri": "http://sws.geonames.org/3078577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2085, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1625, "fields": {"uri": "http://sws.geonames.org/3081368/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2161, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1631, "fields": {"uri": "http://sws.geonames.org/3181550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2170, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1651, "fields": {"uri": "http://sws.geonames.org/3074967/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2197, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1711, "fields": {"uri": "http://sws.geonames.org/711416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2281, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1856, "fields": {"uri": "http://sws.geonames.org/3435910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2489, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 1939, "fields": {"uri": "http://sws.geonames.org/3181215/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2602, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2121, "fields": {"uri": "http://sws.geonames.org/710719/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 2854, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2302, "fields": {"uri": "http://sws.geonames.org/3101321/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3105, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 2344, "fields": {"uri": "http://sws.geonames.org/681290/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 3162, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3021, "fields": {"uri": "http://sws.geonames.org/2934486/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4096, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3151, "fields": {"uri": "http://sws.geonames.org/3063762/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4269, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3518, "fields": {"uri": "http://sws.geonames.org/2778067/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4767, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3599, "fields": {"uri": "http://sws.geonames.org/2779275/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 4877, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3912, "fields": {"uri": "http://sws.geonames.org/677410/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5294, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 3923, "fields": {"uri": "http://sws.geonames.org/2873574/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5308, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4052, "fields": {"uri": "http://sws.geonames.org/3175986/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5478, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4206, "fields": {"uri": "http://sws.geonames.org/3173577/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5691, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4249, "fields": {"uri": "http://sws.geonames.org/2777972/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 5749, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4440, "fields": {"uri": "http://sws.geonames.org/3063197/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6004, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4676, "fields": {"uri": "http://sws.geonames.org/2910831/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6324, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 4954, "fields": {"uri": "http://sws.geonames.org/2775220/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6700, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5134, "fields": {"uri": "http://sws.geonames.org/3199302/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 6947, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5507, "fields": {"uri": "http://sws.geonames.org/3097333/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7454, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5631, "fields": {"uri": "http://sws.geonames.org/2772649/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7622, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 5897, "fields": {"uri": "http://sws.geonames.org/2892518/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 7986, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6257, "fields": {"uri": "http://sws.geonames.org/2773913/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8482, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6486, "fields": {"uri": "http://sws.geonames.org/2885679/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 8798, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6838, "fields": {"uri": "http://sws.geonames.org/2773300/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9287, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6961, "fields": {"uri": "http://sws.geonames.org/3072358/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9455, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 6977, "fields": {"uri": "http://sws.geonames.org/3196359/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7169, "fields": {"uri": "http://sws.geonames.org/702550/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 9735, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7375, "fields": {"uri": "http://sws.geonames.org/2772400/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10015, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7554, "fields": {"uri": "http://sws.geonames.org/2643743/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10265, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 7936, "fields": {"uri": "http://sws.geonames.org/3195506/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 10793, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8262, "fields": {"uri": "http://sws.geonames.org/3064919/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11238, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8489, "fields": {"uri": "http://sws.geonames.org/3070372/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11556, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8668, "fields": {"uri": "http://sws.geonames.org/2867714/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 11799, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 8966, "fields": {"uri": "http://sws.geonames.org/3090436/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12211, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9363, "fields": {"uri": "http://sws.geonames.org/2990440/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 12758, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9718, "fields": {"uri": "http://sws.geonames.org/3045190/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13253, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 9810, "fields": {"uri": "http://sws.geonames.org/3069011/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13382, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10050, "fields": {"uri": "http://sws.geonames.org/2988507/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13714, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10247, "fields": {"uri": "http://sws.geonames.org/2854561/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 13987, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 10697, "fields": {"uri": "http://sws.geonames.org/3067696/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 14608, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11885, "fields": {"uri": "http://sws.geonames.org/3057304/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16242, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 11932, "fields": {"uri": "http://sws.geonames.org/3167905/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16310, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12137, "fields": {"uri": "http://sws.geonames.org/3065118/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16594, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 12332, "fields": {"uri": "http://sws.geonames.org/2765515/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 16864, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13419, "fields": {"uri": "http://sws.geonames.org/3083848/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18374, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 13438, "fields": {"uri": "http://sws.geonames.org/715429/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 18400, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14028, "fields": {"uri": "http://sws.geonames.org/3165243/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19215, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14297, "fields": {"uri": "http://sws.geonames.org/3058653/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 19599, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 14983, "fields": {"uri": "http://sws.geonames.org/756135/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20549, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15060, "fields": {"uri": "http://sws.geonames.org/792794/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20659, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15214, "fields": {"uri": "http://sws.geonames.org/2782058/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20872, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15297, "fields": {"uri": "http://sws.geonames.org/2633767/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 20988, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 15896, "fields": {"uri": "http://sws.geonames.org/3064454/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 21818, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16165, "fields": {"uri": "http://sws.geonames.org/3074331/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22216, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16195, "fields": {"uri": "http://sws.geonames.org/2764112/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22259, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16238, "fields": {"uri": "http://sws.geonames.org/2762908/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22322, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16260, "fields": {"uri": "http://sws.geonames.org/2659297/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22354, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16342, "fields": {"uri": "http://sws.geonames.org/2953416/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22475, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16355, "fields": {"uri": "http://sws.geonames.org/2772910/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22494, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16377, "fields": {"uri": "http://sws.geonames.org/2660718/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22526, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16386, "fields": {"uri": "http://sws.geonames.org/684490/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22545, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16392, "fields": {"uri": "http://sws.geonames.org/3092742/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22558, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 16398, "fields": {"uri": "http://sws.geonames.org/3164453/", "domain": "http://sws.geonames.org/", "rdf_link": "", "entity": 22570, "loaded": true, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19232, "fields": {"uri": "http://d-nb.info/gnd/4023349-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6324, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19233, "fields": {"uri": "http://d-nb.info/gnd/4027096-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 6700, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19242, "fields": {"uri": "http://d-nb.info/gnd/4044660-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19246, "fields": {"uri": "http://d-nb.info/gnd/4127793-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 11799, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19273, "fields": {"uri": "http://d-nb.info/gnd/4008216-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2161, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19323, "fields": {"uri": "http://d-nb.info/gnd/4076310-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 14608, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19406, "fields": {"uri": "http://d-nb.info/gnd/4008684-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19447, "fields": {"uri": "http://d-nb.info/gnd/4038688-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 5691, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19459, "fields": {"uri": "http://d-nb.info/gnd/4265379-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1454, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19583, "fields": {"uri": "http://d-nb.info/gnd/4021912-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4767, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 19665, "fields": {"uri": "http://d-nb.info/gnd/4075643-9", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13382, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 32623, "fields": {"uri": "http://d-nb.info/gnd/118931482", "domain": "", "rdf_link": "", "entity": 46414, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 39250, "fields": {"uri": "http://d-nb.info/gnd/118785028", "domain": "", "rdf_link": "", "entity": 56248, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 43650, "fields": {"uri": "http://d-nb.info/gnd/118573527", "domain": "", "rdf_link": "", "entity": 62757, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 60980, "fields": {"uri": "http://d-nb.info/gnd/118508288", "domain": "", "rdf_link": "", "entity": 88902, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63085, "fields": {"uri": "http://d-nb.info/gnd/118677667", "domain": "", "rdf_link": "", "entity": 92603, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63174, "fields": {"uri": "http://d-nb.info/gnd/118505955", "domain": "", "rdf_link": "", "entity": 93003, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63178, "fields": {"uri": "http://d-nb.info/gnd/119061201", "domain": "", "rdf_link": "", "entity": 93009, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63180, "fields": {"uri": "http://d-nb.info/gnd/128578998", "domain": "", "rdf_link": "", "entity": 93012, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63182, "fields": {"uri": "http://d-nb.info/gnd/143930567", "domain": "", "rdf_link": "", "entity": 93015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63184, "fields": {"uri": "http://d-nb.info/gnd/136186289", "domain": "", "rdf_link": "", "entity": 93018, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63186, "fields": {"uri": "http://d-nb.info/gnd/136186343", "domain": "", "rdf_link": "", "entity": 93021, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63188, "fields": {"uri": "http://d-nb.info/gnd/140067302", "domain": "", "rdf_link": "", "entity": 93024, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63191, "fields": {"uri": "http://d-nb.info/gnd/116539585", "domain": "", "rdf_link": "", "entity": 93028, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63193, "fields": {"uri": "http://d-nb.info/gnd/11666827X", "domain": "", "rdf_link": "", "entity": 93031, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63195, "fields": {"uri": "http://d-nb.info/gnd/116689234", "domain": "", "rdf_link": "", "entity": 93034, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63202, "fields": {"uri": "http://d-nb.info/gnd/130579122", "domain": "", "rdf_link": "", "entity": 93044, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63204, "fields": {"uri": "http://d-nb.info/gnd/143681761", "domain": "", "rdf_link": "", "entity": 93047, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63206, "fields": {"uri": "http://d-nb.info/gnd/117649953", "domain": "", "rdf_link": "", "entity": 93050, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63210, "fields": {"uri": "http://d-nb.info/gnd/130132098", "domain": "", "rdf_link": "", "entity": 93056, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63212, "fields": {"uri": "http://d-nb.info/gnd/143053272", "domain": "", "rdf_link": "", "entity": 93059, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63216, "fields": {"uri": "http://d-nb.info/gnd/118817418", "domain": "", "rdf_link": "", "entity": 93065, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63218, "fields": {"uri": "http://d-nb.info/gnd/135697719", "domain": "", "rdf_link": "", "entity": 93068, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63220, "fields": {"uri": "http://d-nb.info/gnd/118524283", "domain": "", "rdf_link": "", "entity": 93071, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63222, "fields": {"uri": "http://d-nb.info/gnd/116070935", "domain": "", "rdf_link": "", "entity": 93074, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63261, "fields": {"uri": "http://d-nb.info/gnd/1012030806", "domain": "", "rdf_link": "", "entity": 93136, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63385, "fields": {"uri": "http://d-nb.info/gnd/117736791", "domain": "", "rdf_link": "", "entity": 93328, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63391, "fields": {"uri": "http://d-nb.info/gnd/1019267925", "domain": "", "rdf_link": "", "entity": 93337, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63401, "fields": {"uri": "http://d-nb.info/gnd/136782086", "domain": "", "rdf_link": "", "entity": 93352, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63411, "fields": {"uri": "http://d-nb.info/gnd/1018979573", "domain": "", "rdf_link": "", "entity": 93366, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63413, "fields": {"uri": "http://d-nb.info/gnd/1019359811", "domain": "", "rdf_link": "", "entity": 93369, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63419, "fields": {"uri": "http://d-nb.info/gnd/117634816", "domain": "", "rdf_link": "", "entity": 93378, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63425, "fields": {"uri": "http://d-nb.info/gnd/116907525", "domain": "", "rdf_link": "", "entity": 93387, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63429, "fields": {"uri": "http://d-nb.info/gnd/116856246", "domain": "", "rdf_link": "", "entity": 93393, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63431, "fields": {"uri": "http://d-nb.info/gnd/119334429", "domain": "", "rdf_link": "", "entity": 93396, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63434, "fields": {"uri": "http://d-nb.info/gnd/118806025", "domain": "", "rdf_link": "", "entity": 93400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63440, "fields": {"uri": "http://d-nb.info/gnd/1018666664", "domain": "", "rdf_link": "", "entity": 93409, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63444, "fields": {"uri": "http://d-nb.info/gnd/1014451833", "domain": "", "rdf_link": "", "entity": 93415, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63446, "fields": {"uri": "http://d-nb.info/gnd/117612308", "domain": "", "rdf_link": "", "entity": 93418, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63462, "fields": {"uri": "http://d-nb.info/gnd/118813919", "domain": "", "rdf_link": "", "entity": 93442, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63464, "fields": {"uri": "http://d-nb.info/gnd/1023121581", "domain": "", "rdf_link": "", "entity": 93445, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63466, "fields": {"uri": "http://d-nb.info/gnd/119065932", "domain": "", "rdf_link": "", "entity": 93448, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63480, "fields": {"uri": "http://d-nb.info/gnd/1021208493", "domain": "", "rdf_link": "", "entity": 93469, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63488, "fields": {"uri": "http://d-nb.info/gnd/137341768", "domain": "", "rdf_link": "", "entity": 93481, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63490, "fields": {"uri": "http://d-nb.info/gnd/1020698381", "domain": "", "rdf_link": "", "entity": 93484, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63492, "fields": {"uri": "http://d-nb.info/gnd/1020698055", "domain": "", "rdf_link": "", "entity": 93487, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63508, "fields": {"uri": "http://d-nb.info/gnd/118732277", "domain": "", "rdf_link": "", "entity": 93510, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63510, "fields": {"uri": "http://d-nb.info/gnd/10788464X", "domain": "", "rdf_link": "", "entity": 93513, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63512, "fields": {"uri": "http://d-nb.info/gnd/134474937", "domain": "", "rdf_link": "", "entity": 93516, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63528, "fields": {"uri": "http://d-nb.info/gnd/13185545X", "domain": "", "rdf_link": "", "entity": 93540, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63532, "fields": {"uri": "http://d-nb.info/gnd/1024716082", "domain": "", "rdf_link": "", "entity": 93546, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63542, "fields": {"uri": "http://d-nb.info/gnd/1026382211", "domain": "", "rdf_link": "", "entity": 93561, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63550, "fields": {"uri": "http://d-nb.info/gnd/102588485X", "domain": "", "rdf_link": "", "entity": 93573, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63560, "fields": {"uri": "http://d-nb.info/gnd/130027022", "domain": "", "rdf_link": "", "entity": 93588, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63568, "fields": {"uri": "http://d-nb.info/gnd/117687030", "domain": "", "rdf_link": "", "entity": 93600, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63574, "fields": {"uri": "http://d-nb.info/gnd/122897897", "domain": "", "rdf_link": "", "entity": 93609, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63578, "fields": {"uri": "http://d-nb.info/gnd/139593128", "domain": "", "rdf_link": "", "entity": 93615, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63594, "fields": {"uri": "http://d-nb.info/gnd/139112200", "domain": "", "rdf_link": "", "entity": 93639, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63596, "fields": {"uri": "http://d-nb.info/gnd/130427012", "domain": "", "rdf_link": "", "entity": 93642, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63598, "fields": {"uri": "http://d-nb.info/gnd/117522139", "domain": "", "rdf_link": "", "entity": 93645, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63602, "fields": {"uri": "http://d-nb.info/gnd/1027427839", "domain": "", "rdf_link": "", "entity": 93651, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63604, "fields": {"uri": "http://d-nb.info/gnd/127691979", "domain": "", "rdf_link": "", "entity": 93654, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63627, "fields": {"uri": "http://d-nb.info/gnd/123215374", "domain": "", "rdf_link": "", "entity": 93702, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63629, "fields": {"uri": "http://d-nb.info/gnd/12899620X", "domain": "", "rdf_link": "", "entity": 93705, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63635, "fields": {"uri": "http://d-nb.info/gnd/1035683431", "domain": "", "rdf_link": "", "entity": 93714, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63657, "fields": {"uri": "http://d-nb.info/gnd/1034850962", "domain": "", "rdf_link": "", "entity": 93748, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63678, "fields": {"uri": "http://d-nb.info/gnd/135612411", "domain": "", "rdf_link": "", "entity": 93779, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63682, "fields": {"uri": "http://d-nb.info/gnd/1033824674", "domain": "", "rdf_link": "", "entity": 93785, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63686, "fields": {"uri": "http://d-nb.info/gnd/133833348", "domain": "", "rdf_link": "", "entity": 93791, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63692, "fields": {"uri": "http://d-nb.info/gnd/103334690X", "domain": "", "rdf_link": "", "entity": 93800, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63694, "fields": {"uri": "http://d-nb.info/gnd/128900059", "domain": "", "rdf_link": "", "entity": 93803, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63698, "fields": {"uri": "http://d-nb.info/gnd/1033469084", "domain": "", "rdf_link": "", "entity": 93809, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63702, "fields": {"uri": "http://d-nb.info/gnd/117409669", "domain": "", "rdf_link": "", "entity": 93815, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63704, "fields": {"uri": "http://d-nb.info/gnd/1033342483", "domain": "", "rdf_link": "", "entity": 93818, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63716, "fields": {"uri": "http://d-nb.info/gnd/134516001", "domain": "", "rdf_link": "", "entity": 93836, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63718, "fields": {"uri": "http://d-nb.info/gnd/1019536594", "domain": "", "rdf_link": "", "entity": 93839, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63728, "fields": {"uri": "http://d-nb.info/gnd/103283160X", "domain": "", "rdf_link": "", "entity": 93854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63734, "fields": {"uri": "http://d-nb.info/gnd/103223718X", "domain": "", "rdf_link": "", "entity": 93863, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63736, "fields": {"uri": "http://d-nb.info/gnd/118610643", "domain": "", "rdf_link": "", "entity": 93866, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63744, "fields": {"uri": "http://d-nb.info/gnd/1032220473", "domain": "", "rdf_link": "", "entity": 93878, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63753, "fields": {"uri": "http://d-nb.info/gnd/1031937358", "domain": "", "rdf_link": "", "entity": 93891, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63755, "fields": {"uri": "http://d-nb.info/gnd/1031946101", "domain": "", "rdf_link": "", "entity": 93894, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63759, "fields": {"uri": "http://d-nb.info/gnd/116848693", "domain": "", "rdf_link": "", "entity": 93900, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63761, "fields": {"uri": "http://d-nb.info/gnd/103169420X", "domain": "", "rdf_link": "", "entity": 93903, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63765, "fields": {"uri": "http://d-nb.info/gnd/137648588", "domain": "", "rdf_link": "", "entity": 93909, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63773, "fields": {"uri": "http://d-nb.info/gnd/116816961", "domain": "", "rdf_link": "", "entity": 93921, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63781, "fields": {"uri": "http://d-nb.info/gnd/118759671", "domain": "", "rdf_link": "", "entity": 93933, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63786, "fields": {"uri": "http://d-nb.info/gnd/103056423X", "domain": "", "rdf_link": "", "entity": 93940, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63790, "fields": {"uri": "http://d-nb.info/gnd/1030283044", "domain": "", "rdf_link": "", "entity": 93946, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63796, "fields": {"uri": "http://d-nb.info/gnd/1031146539", "domain": "", "rdf_link": "", "entity": 93955, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63798, "fields": {"uri": "http://d-nb.info/gnd/139576126", "domain": "", "rdf_link": "", "entity": 93958, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63800, "fields": {"uri": "http://d-nb.info/gnd/129263761", "domain": "", "rdf_link": "", "entity": 93961, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63802, "fields": {"uri": "http://d-nb.info/gnd/121246736", "domain": "", "rdf_link": "", "entity": 93964, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63804, "fields": {"uri": "http://d-nb.info/gnd/1029738556", "domain": "", "rdf_link": "", "entity": 93967, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 63806, "fields": {"uri": "http://d-nb.info/gnd/1029748209", "domain": "", "rdf_link": "", "entity": 93970, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64139, "fields": {"uri": "http://d-nb.info/gnd/4074335-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10265, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64175, "fields": {"uri": "http://d-nb.info/gnd/4035304-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9735, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64185, "fields": {"uri": "http://d-nb.info/gnd/4108914-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 133, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64201, "fields": {"uri": "http://d-nb.info/gnd/4008858-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 831, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64255, "fields": {"uri": "http://d-nb.info/gnd/4010833-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 2854, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64261, "fields": {"uri": "http://d-nb.info/gnd/4073953-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9475, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64625, "fields": {"uri": "http://d-nb.info/gnd/4075578-2", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 13253, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64656, "fields": {"uri": "http://d-nb.info/gnd/4079048-4", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 20549, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64762, "fields": {"uri": "http://d-nb.info/gnd/4008456-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 327, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64958, "fields": {"uri": "http://d-nb.info/gnd/4106475-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 18400, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 64961, "fields": {"uri": "http://d-nb.info/gnd/4074255-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 10015, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65200, "fields": {"uri": "http://d-nb.info/gnd/4033488-0", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 9287, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65351, "fields": {"uri": "http://d-nb.info/gnd/4013237-7", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 4096, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65410, "fields": {"uri": "http://d-nb.info/gnd/4071444-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 22526, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65607, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Conrad", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65704, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Fiedler", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 65759, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Gasser", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66450, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Rief", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66630, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:StaudingerRudolf", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66778, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Winkler", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 66836, "fields": {"uri": "https://acdh.oeaw.ac.at/staribacher/per:Z\u00f6llner", "domain": "https://acdh.oeaw.ac.at/staribacher", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 68464, "fields": {"uri": "http://d-nb.info/gnd/4031235-5", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 8482, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 70264, "fields": {"uri": "http://d-nb.info/gnd/4029869-3", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 7986, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 71992, "fields": {"uri": "http://d-nb.info/gnd/4035360-6", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 7622, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uri", "pk": 72191, "fields": {"uri": "http://d-nb.info/gnd/4103609-8", "domain": "http://d-nb.info/gnd/", "rdf_link": "", "entity": 1424, "loaded": false, "loaded_time": null}}, {"model": "metainfo.uricandidate", "pk": 3373, "fields": {"uri": "http://sws.geonames.org/3075069/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3374, "fields": {"uri": "http://sws.geonames.org/3075073/", "confidence": 38.330826, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3375, "fields": {"uri": "http://sws.geonames.org/3064955/", "confidence": 36.39077, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3376, "fields": {"uri": "http://sws.geonames.org/3064682/", "confidence": 27.023357, "responsible": "stanbol", "entity": 93060}}, {"model": "metainfo.uricandidate", "pk": 3392, "fields": {"uri": "http://sws.geonames.org/8987526/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3393, "fields": {"uri": "http://sws.geonames.org/8988006/", "confidence": 42.59393, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3394, "fields": {"uri": "http://sws.geonames.org/3187442/", "confidence": 36.04053, "responsible": "stanbol", "entity": 93410}}, {"model": "metainfo.uricandidate", "pk": 3427, "fields": {"uri": "http://sws.geonames.org/710232/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3428, "fields": {"uri": "http://sws.geonames.org/710234/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3429, "fields": {"uri": "http://sws.geonames.org/710242/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3430, "fields": {"uri": "http://sws.geonames.org/710241/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3431, "fields": {"uri": "http://sws.geonames.org/810113/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3432, "fields": {"uri": "http://sws.geonames.org/8468002/", "confidence": 55.56808, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3433, "fields": {"uri": "http://sws.geonames.org/710235/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3434, "fields": {"uri": "http://sws.geonames.org/710243/", "confidence": 39.944958, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3435, "fields": {"uri": "http://sws.geonames.org/697446/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "metainfo.uricandidate", "pk": 3436, "fields": {"uri": "http://sws.geonames.org/687982/", "confidence": 37.787853, "responsible": "stanbol", "entity": 93934}}, {"model": "highlighter.texthigh", "pk": 1, "fields": {"title": "\u00d6BL Haupttext", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-haupttext", "project": 1}}, {"model": "highlighter.texthigh", "pk": 2, "fields": {"title": "\u00d6bl Kurzinfo", "text_type": "cl", "uri": "", "text": "", "text_id": null, "text_class": "obl-kurzinfo", "project": 1}}, {"model": "highlighter.annotationproject", "pk": 1, "fields": {"name": "Default", "description": "We need an annotation project for every annotation. Thus the default project."}}, {"model": "highlighter.annotationproject", "pk": 2, "fields": {"name": "Klausenburg Agoston", "description": null}}, {"model": "highlighter.annotationproject", "pk": 3, "fields": {"name": "K\u00fcnstlerhaus Maximilian", "description": null}}, {"model": "highlighter.annotationproject", "pk": 4, "fields": {"name": "Mittelalter", "description": null}}, {"model": "highlighter.annotationproject", "pk": 5, "fields": {"name": "300 select names", "description": null}}, {"model": "highlighter.annotationproject", "pk": 6, "fields": {"name": "Gold Standard 28.3.2017", "description": ""}}, {"model": "highlighter.vocabularyapi", "pk": 1, "fields": {"name": "Person Place Form", "api_endpoint": "PersonPlaceHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 2, "fields": {"name": "Person Institution Form", "api_endpoint": "PersonInstitutionHighlighterForm", "method": "l"}}, {"model": "highlighter.vocabularyapi", "pk": 3, "fields": {"name": "Person Person Form", "api_endpoint": "PersonPersonHighlighterForm", "method": "l"}}, {"model": "highlighter.menuentry", "pk": 1, "fields": {"kind": "frm", "name": "Person Place Relation", "api": 1, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 2, "fields": {"kind": "frm", "name": "Person Institution Relation", "api": 2, "parent": null, "project": 1}}, {"model": "highlighter.menuentry", "pk": 3, "fields": {"kind": "frm", "name": "Person Person Relation", "api": 3, "parent": null, "project": 1}}, {"model": "auth.permission", "fields": {"name": "Can add log entry", "content_type": ["admin", "logentry"], "codename": "add_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can change log entry", "content_type": ["admin", "logentry"], "codename": "change_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete log entry", "content_type": ["admin", "logentry"], "codename": "delete_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can add permission", "content_type": ["auth", "permission"], "codename": "add_permission"}}, {"model": "auth.permission", "fields": {"name": "Can change permission", "content_type": ["auth", "permission"], "codename": "change_permission"}}, {"model": "auth.permission", "fields": {"name": "Can delete permission", "content_type": ["auth", "permission"], "codename": "delete_permission"}}, {"model": "auth.permission", "fields": {"name": "Can add group", "content_type": ["auth", "group"], "codename": "add_group"}}, {"model": "auth.permission", "fields": {"name": "Can change group", "content_type": ["auth", "group"], "codename": "change_group"}}, {"model": "auth.permission", "fields": {"name": "Can delete group", "content_type": ["auth", "group"], "codename": "delete_group"}}, {"model": "auth.permission", "fields": {"name": "Can add user", "content_type": ["auth", "user"], "codename": "add_user"}}, {"model": "auth.permission", "fields": {"name": "Can change user", "content_type": ["auth", "user"], "codename": "change_user"}}, {"model": "auth.permission", "fields": {"name": "Can delete user", "content_type": ["auth", "user"], "codename": "delete_user"}}, {"model": "auth.permission", "fields": {"name": "Can add content type", "content_type": ["contenttypes", "contenttype"], "codename": "add_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can change content type", "content_type": ["contenttypes", "contenttype"], "codename": "change_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete content type", "content_type": ["contenttypes", "contenttype"], "codename": "delete_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can add session", "content_type": ["sessions", "session"], "codename": "add_session"}}, {"model": "auth.permission", "fields": {"name": "Can change session", "content_type": ["sessions", "session"], "codename": "change_session"}}, {"model": "auth.permission", "fields": {"name": "Can delete session", "content_type": ["sessions", "session"], "codename": "delete_session"}}, {"model": "auth.permission", "fields": {"name": "Can add label", "content_type": ["labels", "label"], "codename": "add_label"}}, {"model": "auth.permission", "fields": {"name": "Can change label", "content_type": ["labels", "label"], "codename": "change_label"}}, {"model": "auth.permission", "fields": {"name": "Can delete label", "content_type": ["labels", "label"], "codename": "delete_label"}}, {"model": "auth.permission", "fields": {"name": "Can add person", "content_type": ["entities", "person"], "codename": "add_person"}}, {"model": "auth.permission", "fields": {"name": "Can change person", "content_type": ["entities", "person"], "codename": "change_person"}}, {"model": "auth.permission", "fields": {"name": "Can delete person", "content_type": ["entities", "person"], "codename": "delete_person"}}, {"model": "auth.permission", "fields": {"name": "Can add place", "content_type": ["entities", "place"], "codename": "add_place"}}, {"model": "auth.permission", "fields": {"name": "Can change place", "content_type": ["entities", "place"], "codename": "change_place"}}, {"model": "auth.permission", "fields": {"name": "Can delete place", "content_type": ["entities", "place"], "codename": "delete_place"}}, {"model": "auth.permission", "fields": {"name": "Can add institution", "content_type": ["entities", "institution"], "codename": "add_institution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution", "content_type": ["entities", "institution"], "codename": "change_institution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution", "content_type": ["entities", "institution"], "codename": "delete_institution"}}, {"model": "auth.permission", "fields": {"name": "Can add event", "content_type": ["entities", "event"], "codename": "add_event"}}, {"model": "auth.permission", "fields": {"name": "Can change event", "content_type": ["entities", "event"], "codename": "change_event"}}, {"model": "auth.permission", "fields": {"name": "Can delete event", "content_type": ["entities", "event"], "codename": "delete_event"}}, {"model": "auth.permission", "fields": {"name": "Can add work", "content_type": ["entities", "work"], "codename": "add_work"}}, {"model": "auth.permission", "fields": {"name": "Can change work", "content_type": ["entities", "work"], "codename": "change_work"}}, {"model": "auth.permission", "fields": {"name": "Can delete work", "content_type": ["entities", "work"], "codename": "delete_work"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs base class", "content_type": ["vocabularies", "vocabsbaseclass"], "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete relation base class", "content_type": ["vocabularies", "relationbaseclass"], "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "add_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "change_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs uri", "content_type": ["vocabularies", "vocabsuri"], "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can add work type", "content_type": ["vocabularies", "worktype"], "codename": "add_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can change work type", "content_type": ["vocabularies", "worktype"], "codename": "change_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can delete work type", "content_type": ["vocabularies", "worktype"], "codename": "delete_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can add title", "content_type": ["vocabularies", "title"], "codename": "add_title"}}, {"model": "auth.permission", "fields": {"name": "Can change title", "content_type": ["vocabularies", "title"], "codename": "change_title"}}, {"model": "auth.permission", "fields": {"name": "Can delete title", "content_type": ["vocabularies", "title"], "codename": "delete_title"}}, {"model": "auth.permission", "fields": {"name": "Can add profession type", "content_type": ["vocabularies", "professiontype"], "codename": "add_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change profession type", "content_type": ["vocabularies", "professiontype"], "codename": "change_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete profession type", "content_type": ["vocabularies", "professiontype"], "codename": "delete_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add place type", "content_type": ["vocabularies", "placetype"], "codename": "add_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can change place type", "content_type": ["vocabularies", "placetype"], "codename": "change_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can delete place type", "content_type": ["vocabularies", "placetype"], "codename": "delete_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can add institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "add_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "change_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution type", "content_type": ["vocabularies", "institutiontype"], "codename": "delete_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add event type", "content_type": ["vocabularies", "eventtype"], "codename": "add_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can change event type", "content_type": ["vocabularies", "eventtype"], "codename": "change_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can delete event type", "content_type": ["vocabularies", "eventtype"], "codename": "delete_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can add label type", "content_type": ["vocabularies", "labeltype"], "codename": "add_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can change label type", "content_type": ["vocabularies", "labeltype"], "codename": "change_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can delete label type", "content_type": ["vocabularies", "labeltype"], "codename": "delete_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can add collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "add_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "change_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection type", "content_type": ["vocabularies", "collectiontype"], "codename": "delete_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add text type", "content_type": ["vocabularies", "texttype"], "codename": "add_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can change text type", "content_type": ["vocabularies", "texttype"], "codename": "change_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete text type", "content_type": ["vocabularies", "texttype"], "codename": "delete_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can add person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person relation", "content_type": ["vocabularies", "personpersonrelation"], "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "add_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "change_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place relation", "content_type": ["vocabularies", "personplacerelation"], "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution relation", "content_type": ["vocabularies", "personinstitutionrelation"], "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "add_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "change_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event relation", "content_type": ["vocabularies", "personeventrelation"], "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "add_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "change_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work relation", "content_type": ["vocabularies", "personworkrelation"], "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event relation", "content_type": ["vocabularies", "institutioneventrelation"], "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place relation", "content_type": ["vocabularies", "institutionplacerelation"], "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution relation", "content_type": ["vocabularies", "institutioninstitutionrelation"], "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place relation", "content_type": ["vocabularies", "placeplacerelation"], "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event relation", "content_type": ["vocabularies", "placeeventrelation"], "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work relation", "content_type": ["vocabularies", "placeworkrelation"], "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event relation", "content_type": ["vocabularies", "eventeventrelation"], "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work relation", "content_type": ["vocabularies", "eventworkrelation"], "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "add_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "change_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work relation", "content_type": ["vocabularies", "workworkrelation"], "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person person", "content_type": ["relations", "personperson"], "codename": "add_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can change person person", "content_type": ["relations", "personperson"], "codename": "change_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person", "content_type": ["relations", "personperson"], "codename": "delete_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can add person place", "content_type": ["relations", "personplace"], "codename": "add_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can change person place", "content_type": ["relations", "personplace"], "codename": "change_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place", "content_type": ["relations", "personplace"], "codename": "delete_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution", "content_type": ["relations", "personinstitution"], "codename": "add_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution", "content_type": ["relations", "personinstitution"], "codename": "change_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution", "content_type": ["relations", "personinstitution"], "codename": "delete_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add person event", "content_type": ["relations", "personevent"], "codename": "add_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can change person event", "content_type": ["relations", "personevent"], "codename": "change_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event", "content_type": ["relations", "personevent"], "codename": "delete_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can add person work", "content_type": ["relations", "personwork"], "codename": "add_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can change person work", "content_type": ["relations", "personwork"], "codename": "change_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work", "content_type": ["relations", "personwork"], "codename": "delete_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution", "content_type": ["relations", "institutioninstitution"], "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place", "content_type": ["relations", "institutionplace"], "codename": "add_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place", "content_type": ["relations", "institutionplace"], "codename": "change_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place", "content_type": ["relations", "institutionplace"], "codename": "delete_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event", "content_type": ["relations", "institutionevent"], "codename": "add_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event", "content_type": ["relations", "institutionevent"], "codename": "change_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event", "content_type": ["relations", "institutionevent"], "codename": "delete_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work", "content_type": ["relations", "institutionwork"], "codename": "add_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work", "content_type": ["relations", "institutionwork"], "codename": "change_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work", "content_type": ["relations", "institutionwork"], "codename": "delete_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can add place place", "content_type": ["relations", "placeplace"], "codename": "add_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can change place place", "content_type": ["relations", "placeplace"], "codename": "change_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place", "content_type": ["relations", "placeplace"], "codename": "delete_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can add place event", "content_type": ["relations", "placeevent"], "codename": "add_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can change place event", "content_type": ["relations", "placeevent"], "codename": "change_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event", "content_type": ["relations", "placeevent"], "codename": "delete_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can add place work", "content_type": ["relations", "placework"], "codename": "add_placework"}}, {"model": "auth.permission", "fields": {"name": "Can change place work", "content_type": ["relations", "placework"], "codename": "change_placework"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work", "content_type": ["relations", "placework"], "codename": "delete_placework"}}, {"model": "auth.permission", "fields": {"name": "Can add event event", "content_type": ["relations", "eventevent"], "codename": "add_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can change event event", "content_type": ["relations", "eventevent"], "codename": "change_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event", "content_type": ["relations", "eventevent"], "codename": "delete_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can add event work", "content_type": ["relations", "eventwork"], "codename": "add_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can change event work", "content_type": ["relations", "eventwork"], "codename": "change_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work", "content_type": ["relations", "eventwork"], "codename": "delete_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can add work work", "content_type": ["relations", "workwork"], "codename": "add_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can change work work", "content_type": ["relations", "workwork"], "codename": "change_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work", "content_type": ["relations", "workwork"], "codename": "delete_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can add temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "add_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can change temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "change_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete temp entity class", "content_type": ["metainfo", "tempentityclass"], "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can add source", "content_type": ["metainfo", "source"], "codename": "add_source"}}, {"model": "auth.permission", "fields": {"name": "Can change source", "content_type": ["metainfo", "source"], "codename": "change_source"}}, {"model": "auth.permission", "fields": {"name": "Can delete source", "content_type": ["metainfo", "source"], "codename": "delete_source"}}, {"model": "auth.permission", "fields": {"name": "Can add collection", "content_type": ["metainfo", "collection"], "codename": "add_collection"}}, {"model": "auth.permission", "fields": {"name": "Can change collection", "content_type": ["metainfo", "collection"], "codename": "change_collection"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection", "content_type": ["metainfo", "collection"], "codename": "delete_collection"}}, {"model": "auth.permission", "fields": {"name": "Can add text", "content_type": ["metainfo", "text"], "codename": "add_text"}}, {"model": "auth.permission", "fields": {"name": "Can change text", "content_type": ["metainfo", "text"], "codename": "change_text"}}, {"model": "auth.permission", "fields": {"name": "Can delete text", "content_type": ["metainfo", "text"], "codename": "delete_text"}}, {"model": "auth.permission", "fields": {"name": "Can add uri", "content_type": ["metainfo", "uri"], "codename": "add_uri"}}, {"model": "auth.permission", "fields": {"name": "Can change uri", "content_type": ["metainfo", "uri"], "codename": "change_uri"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri", "content_type": ["metainfo", "uri"], "codename": "delete_uri"}}, {"model": "auth.permission", "fields": {"name": "Can add project", "content_type": ["highlighter", "project"], "codename": "add_project"}}, {"model": "auth.permission", "fields": {"name": "Can change project", "content_type": ["highlighter", "project"], "codename": "change_project"}}, {"model": "auth.permission", "fields": {"name": "Can delete project", "content_type": ["highlighter", "project"], "codename": "delete_project"}}, {"model": "auth.permission", "fields": {"name": "Can add annotation", "content_type": ["highlighter", "annotation"], "codename": "add_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can change annotation", "content_type": ["highlighter", "annotation"], "codename": "change_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can delete annotation", "content_type": ["highlighter", "annotation"], "codename": "delete_annotation"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "add_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "change_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabulary api", "content_type": ["highlighter", "vocabularyapi"], "codename": "delete_vocabularyapi"}}, {"model": "auth.permission", "fields": {"name": "Can add menu entry", "content_type": ["highlighter", "menuentry"], "codename": "add_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can change menu entry", "content_type": ["highlighter", "menuentry"], "codename": "change_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete menu entry", "content_type": ["highlighter", "menuentry"], "codename": "delete_menuentry"}}, {"model": "auth.permission", "fields": {"name": "Can add revision", "content_type": ["reversion", "revision"], "codename": "add_revision"}}, {"model": "auth.permission", "fields": {"name": "Can change revision", "content_type": ["reversion", "revision"], "codename": "change_revision"}}, {"model": "auth.permission", "fields": {"name": "Can delete revision", "content_type": ["reversion", "revision"], "codename": "delete_revision"}}, {"model": "auth.permission", "fields": {"name": "Can add version", "content_type": ["reversion", "version"], "codename": "add_version"}}, {"model": "auth.permission", "fields": {"name": "Can change version", "content_type": ["reversion", "version"], "codename": "change_version"}}, {"model": "auth.permission", "fields": {"name": "Can delete version", "content_type": ["reversion", "version"], "codename": "delete_version"}}, {"model": "auth.permission", "fields": {"name": "Can add uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "add_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can change uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "change_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri candidate", "content_type": ["metainfo", "uricandidate"], "codename": "delete_uricandidate"}}, {"model": "auth.permission", "fields": {"name": "Can add vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "add_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can change vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "change_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocab names", "content_type": ["vocabularies", "vocabnames"], "codename": "delete_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can add text high", "content_type": ["highlighter", "texthigh"], "codename": "add_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can change text high", "content_type": ["highlighter", "texthigh"], "codename": "change_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can delete text high", "content_type": ["highlighter", "texthigh"], "codename": "delete_texthigh"}}, {"model": "auth.permission", "fields": {"name": "Can add annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "add_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can change annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "change_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can delete annotation project", "content_type": ["highlighter", "annotationproject"], "codename": "delete_annotationproject"}}, {"model": "auth.permission", "fields": {"name": "Can add Token", "content_type": ["authtoken", "token"], "codename": "add_token"}}, {"model": "auth.permission", "fields": {"name": "Can change Token", "content_type": ["authtoken", "token"], "codename": "change_token"}}, {"model": "auth.permission", "fields": {"name": "Can delete Token", "content_type": ["authtoken", "token"], "codename": "delete_token"}}, {"model": "auth.permission", "fields": {"name": "Can add user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "add_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can change user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "change_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can delete user object permission", "content_type": ["guardian", "userobjectpermission"], "codename": "delete_userobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can add group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "add_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can change group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "change_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can delete group object permission", "content_type": ["guardian", "groupobjectpermission"], "codename": "delete_groupobjectpermission"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "add_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "change_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work relation", "content_type": ["vocabularies", "institutionworkrelation"], "codename": "delete_institutionworkrelation"}}, {"model": "auth.group", "fields": {"name": "semac", "permissions": [["add_contenttype", "contenttypes", "contenttype"], ["change_contenttype", "contenttypes", "contenttype"], ["delete_contenttype", "contenttypes", "contenttype"], ["add_event", "entities", "event"], ["change_event", "entities", "event"], ["delete_event", "entities", "event"], ["add_institution", "entities", "institution"], ["change_institution", "entities", "institution"], ["delete_institution", "entities", "institution"], ["add_person", "entities", "person"], ["change_person", "entities", "person"], ["delete_person", "entities", "person"], ["add_place", "entities", "place"], ["change_place", "entities", "place"], ["delete_place", "entities", "place"], ["add_work", "entities", "work"], ["change_work", "entities", "work"], ["delete_work", "entities", "work"], ["add_annotation", "highlighter", "annotation"], ["change_annotation", "highlighter", "annotation"], ["delete_annotation", "highlighter", "annotation"], ["add_menuentry", "highlighter", "menuentry"], ["change_menuentry", "highlighter", "menuentry"], ["delete_menuentry", "highlighter", "menuentry"], ["add_project", "highlighter", "project"], ["change_project", "highlighter", "project"], ["delete_project", "highlighter", "project"], ["add_vocabularyapi", "highlighter", "vocabularyapi"], ["change_vocabularyapi", "highlighter", "vocabularyapi"], ["delete_vocabularyapi", "highlighter", "vocabularyapi"], ["add_label", "labels", "label"], ["change_label", "labels", "label"], ["delete_label", "labels", "label"], ["add_collection", "metainfo", "collection"], ["change_collection", "metainfo", "collection"], ["delete_collection", "metainfo", "collection"], ["add_source", "metainfo", "source"], ["change_source", "metainfo", "source"], ["delete_source", "metainfo", "source"], ["add_tempentityclass", "metainfo", "tempentityclass"], ["change_tempentityclass", "metainfo", "tempentityclass"], ["delete_tempentityclass", "metainfo", "tempentityclass"], ["add_text", "metainfo", "text"], ["change_text", "metainfo", "text"], ["delete_text", "metainfo", "text"], ["add_uri", "metainfo", "uri"], ["change_uri", "metainfo", "uri"], ["delete_uri", "metainfo", "uri"], ["add_eventevent", "relations", "eventevent"], ["change_eventevent", "relations", "eventevent"], ["delete_eventevent", "relations", "eventevent"], ["add_eventwork", "relations", "eventwork"], ["change_eventwork", "relations", "eventwork"], ["delete_eventwork", "relations", "eventwork"], ["add_institutionevent", "relations", "institutionevent"], ["change_institutionevent", "relations", "institutionevent"], ["delete_institutionevent", "relations", "institutionevent"], ["add_institutioninstitution", "relations", "institutioninstitution"], ["change_institutioninstitution", "relations", "institutioninstitution"], ["delete_institutioninstitution", "relations", "institutioninstitution"], ["add_institutionplace", "relations", "institutionplace"], ["change_institutionplace", "relations", "institutionplace"], ["delete_institutionplace", "relations", "institutionplace"], ["add_institutionwork", "relations", "institutionwork"], ["change_institutionwork", "relations", "institutionwork"], ["delete_institutionwork", "relations", "institutionwork"], ["add_personevent", "relations", "personevent"], ["change_personevent", "relations", "personevent"], ["delete_personevent", "relations", "personevent"], ["add_personinstitution", "relations", "personinstitution"], ["change_personinstitution", "relations", "personinstitution"], ["delete_personinstitution", "relations", "personinstitution"], ["add_personperson", "relations", "personperson"], ["change_personperson", "relations", "personperson"], ["delete_personperson", "relations", "personperson"], ["add_personplace", "relations", "personplace"], ["change_personplace", "relations", "personplace"], ["delete_personplace", "relations", "personplace"], ["add_personwork", "relations", "personwork"], ["change_personwork", "relations", "personwork"], ["delete_personwork", "relations", "personwork"], ["add_placeevent", "relations", "placeevent"], ["change_placeevent", "relations", "placeevent"], ["delete_placeevent", "relations", "placeevent"], ["add_placeplace", "relations", "placeplace"], ["change_placeplace", "relations", "placeplace"], ["delete_placeplace", "relations", "placeplace"], ["add_placework", "relations", "placework"], ["change_placework", "relations", "placework"], ["delete_placework", "relations", "placework"], ["add_workwork", "relations", "workwork"], ["change_workwork", "relations", "workwork"], ["delete_workwork", "relations", "workwork"], ["add_session", "sessions", "session"], ["change_session", "sessions", "session"], ["delete_session", "sessions", "session"], ["add_collectiontype", "vocabularies", "collectiontype"], ["change_collectiontype", "vocabularies", "collectiontype"], ["delete_collectiontype", "vocabularies", "collectiontype"], ["add_eventeventrelation", "vocabularies", "eventeventrelation"], ["change_eventeventrelation", "vocabularies", "eventeventrelation"], ["delete_eventeventrelation", "vocabularies", "eventeventrelation"], ["add_eventtype", "vocabularies", "eventtype"], ["change_eventtype", "vocabularies", "eventtype"], ["delete_eventtype", "vocabularies", "eventtype"], ["add_eventworkrelation", "vocabularies", "eventworkrelation"], ["change_eventworkrelation", "vocabularies", "eventworkrelation"], ["delete_eventworkrelation", "vocabularies", "eventworkrelation"], ["add_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["change_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["delete_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["add_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["change_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["delete_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["add_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["change_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["delete_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["add_institutiontype", "vocabularies", "institutiontype"], ["change_institutiontype", "vocabularies", "institutiontype"], ["delete_institutiontype", "vocabularies", "institutiontype"], ["add_labeltype", "vocabularies", "labeltype"], ["change_labeltype", "vocabularies", "labeltype"], ["delete_labeltype", "vocabularies", "labeltype"], ["add_personeventrelation", "vocabularies", "personeventrelation"], ["change_personeventrelation", "vocabularies", "personeventrelation"], ["delete_personeventrelation", "vocabularies", "personeventrelation"], ["add_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["change_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["delete_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["add_personpersonrelation", "vocabularies", "personpersonrelation"], ["change_personpersonrelation", "vocabularies", "personpersonrelation"], ["delete_personpersonrelation", "vocabularies", "personpersonrelation"], ["add_personplacerelation", "vocabularies", "personplacerelation"], ["change_personplacerelation", "vocabularies", "personplacerelation"], ["delete_personplacerelation", "vocabularies", "personplacerelation"], ["add_personworkrelation", "vocabularies", "personworkrelation"], ["change_personworkrelation", "vocabularies", "personworkrelation"], ["delete_personworkrelation", "vocabularies", "personworkrelation"], ["add_placeeventrelation", "vocabularies", "placeeventrelation"], ["change_placeeventrelation", "vocabularies", "placeeventrelation"], ["delete_placeeventrelation", "vocabularies", "placeeventrelation"], ["add_placeplacerelation", "vocabularies", "placeplacerelation"], ["change_placeplacerelation", "vocabularies", "placeplacerelation"], ["delete_placeplacerelation", "vocabularies", "placeplacerelation"], ["add_placetype", "vocabularies", "placetype"], ["change_placetype", "vocabularies", "placetype"], ["delete_placetype", "vocabularies", "placetype"], ["add_placeworkrelation", "vocabularies", "placeworkrelation"], ["change_placeworkrelation", "vocabularies", "placeworkrelation"], ["delete_placeworkrelation", "vocabularies", "placeworkrelation"], ["add_professiontype", "vocabularies", "professiontype"], ["change_professiontype", "vocabularies", "professiontype"], ["delete_professiontype", "vocabularies", "professiontype"], ["add_relationbaseclass", "vocabularies", "relationbaseclass"], ["change_relationbaseclass", "vocabularies", "relationbaseclass"], ["delete_relationbaseclass", "vocabularies", "relationbaseclass"], ["add_texttype", "vocabularies", "texttype"], ["change_texttype", "vocabularies", "texttype"], ["delete_texttype", "vocabularies", "texttype"], ["add_title", "vocabularies", "title"], ["change_title", "vocabularies", "title"], ["delete_title", "vocabularies", "title"], ["add_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["change_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["delete_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["add_vocabsuri", "vocabularies", "vocabsuri"], ["change_vocabsuri", "vocabularies", "vocabsuri"], ["delete_vocabsuri", "vocabularies", "vocabsuri"], ["add_worktype", "vocabularies", "worktype"], ["change_worktype", "vocabularies", "worktype"], ["delete_worktype", "vocabularies", "worktype"], ["add_workworkrelation", "vocabularies", "workworkrelation"], ["change_workworkrelation", "vocabularies", "workworkrelation"], ["delete_workworkrelation", "vocabularies", "workworkrelation"]]}}, {"model": "auth.group", "fields": {"name": "apis", "permissions": []}}, {"model": "auth.group", "fields": {"name": "staribacher", "permissions": []}}, {"model": "auth.group", "fields": {"name": "Editoren Apis", "permissions": []}}, {"model": "auth.user", "fields": {"password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", "last_login": "2017-04-19T08:59:07Z", "is_superuser": true, "username": "sennierer", "first_name": "Matthias", "last_name": "Schl\u00f6gl", "email": "matthias.schloegl@oeaw.ac.at", "is_staff": true, "is_active": true, "date_joined": "2016-04-05T15:11:00Z", "groups": [["apis"], ["Editoren Apis"]], "user_permissions": [["add_logentry", "admin", "logentry"], ["change_logentry", "admin", "logentry"], ["delete_logentry", "admin", "logentry"], ["add_group", "auth", "group"], ["change_group", "auth", "group"], ["delete_group", "auth", "group"], ["add_permission", "auth", "permission"], ["change_permission", "auth", "permission"], ["delete_permission", "auth", "permission"], ["add_user", "auth", "user"], ["change_user", "auth", "user"], ["delete_user", "auth", "user"], ["add_contenttype", "contenttypes", "contenttype"], ["change_contenttype", "contenttypes", "contenttype"], ["delete_contenttype", "contenttypes", "contenttype"], ["add_event", "entities", "event"], ["change_event", "entities", "event"], ["delete_event", "entities", "event"], ["add_institution", "entities", "institution"], ["change_institution", "entities", "institution"], ["delete_institution", "entities", "institution"], ["add_person", "entities", "person"], ["change_person", "entities", "person"], ["delete_person", "entities", "person"], ["add_place", "entities", "place"], ["change_place", "entities", "place"], ["delete_place", "entities", "place"], ["add_work", "entities", "work"], ["change_work", "entities", "work"], ["delete_work", "entities", "work"], ["add_annotation", "highlighter", "annotation"], ["change_annotation", "highlighter", "annotation"], ["delete_annotation", "highlighter", "annotation"], ["add_menuentry", "highlighter", "menuentry"], ["change_menuentry", "highlighter", "menuentry"], ["delete_menuentry", "highlighter", "menuentry"], ["add_project", "highlighter", "project"], ["change_project", "highlighter", "project"], ["delete_project", "highlighter", "project"], ["add_vocabularyapi", "highlighter", "vocabularyapi"], ["change_vocabularyapi", "highlighter", "vocabularyapi"], ["delete_vocabularyapi", "highlighter", "vocabularyapi"], ["add_label", "labels", "label"], ["change_label", "labels", "label"], ["delete_label", "labels", "label"], ["add_collection", "metainfo", "collection"], ["change_collection", "metainfo", "collection"], ["delete_collection", "metainfo", "collection"], ["add_source", "metainfo", "source"], ["change_source", "metainfo", "source"], ["delete_source", "metainfo", "source"], ["add_tempentityclass", "metainfo", "tempentityclass"], ["change_tempentityclass", "metainfo", "tempentityclass"], ["delete_tempentityclass", "metainfo", "tempentityclass"], ["add_text", "metainfo", "text"], ["change_text", "metainfo", "text"], ["delete_text", "metainfo", "text"], ["add_uri", "metainfo", "uri"], ["change_uri", "metainfo", "uri"], ["delete_uri", "metainfo", "uri"], ["add_uricandidate", "metainfo", "uricandidate"], ["change_uricandidate", "metainfo", "uricandidate"], ["delete_uricandidate", "metainfo", "uricandidate"], ["add_eventevent", "relations", "eventevent"], ["change_eventevent", "relations", "eventevent"], ["delete_eventevent", "relations", "eventevent"], ["add_eventwork", "relations", "eventwork"], ["change_eventwork", "relations", "eventwork"], ["delete_eventwork", "relations", "eventwork"], ["add_institutionevent", "relations", "institutionevent"], ["change_institutionevent", "relations", "institutionevent"], ["delete_institutionevent", "relations", "institutionevent"], ["add_institutioninstitution", "relations", "institutioninstitution"], ["change_institutioninstitution", "relations", "institutioninstitution"], ["delete_institutioninstitution", "relations", "institutioninstitution"], ["add_institutionplace", "relations", "institutionplace"], ["change_institutionplace", "relations", "institutionplace"], ["delete_institutionplace", "relations", "institutionplace"], ["add_institutionwork", "relations", "institutionwork"], ["change_institutionwork", "relations", "institutionwork"], ["delete_institutionwork", "relations", "institutionwork"], ["add_personevent", "relations", "personevent"], ["change_personevent", "relations", "personevent"], ["delete_personevent", "relations", "personevent"], ["add_personinstitution", "relations", "personinstitution"], ["change_personinstitution", "relations", "personinstitution"], ["delete_personinstitution", "relations", "personinstitution"], ["add_personperson", "relations", "personperson"], ["change_personperson", "relations", "personperson"], ["delete_personperson", "relations", "personperson"], ["add_personplace", "relations", "personplace"], ["change_personplace", "relations", "personplace"], ["delete_personplace", "relations", "personplace"], ["add_personwork", "relations", "personwork"], ["change_personwork", "relations", "personwork"], ["delete_personwork", "relations", "personwork"], ["add_placeevent", "relations", "placeevent"], ["change_placeevent", "relations", "placeevent"], ["delete_placeevent", "relations", "placeevent"], ["add_placeplace", "relations", "placeplace"], ["change_placeplace", "relations", "placeplace"], ["delete_placeplace", "relations", "placeplace"], ["add_placework", "relations", "placework"], ["change_placework", "relations", "placework"], ["delete_placework", "relations", "placework"], ["add_workwork", "relations", "workwork"], ["change_workwork", "relations", "workwork"], ["delete_workwork", "relations", "workwork"], ["add_revision", "reversion", "revision"], ["change_revision", "reversion", "revision"], ["delete_revision", "reversion", "revision"], ["add_version", "reversion", "version"], ["change_version", "reversion", "version"], ["delete_version", "reversion", "version"], ["add_session", "sessions", "session"], ["change_session", "sessions", "session"], ["delete_session", "sessions", "session"], ["add_collectiontype", "vocabularies", "collectiontype"], ["change_collectiontype", "vocabularies", "collectiontype"], ["delete_collectiontype", "vocabularies", "collectiontype"], ["add_eventeventrelation", "vocabularies", "eventeventrelation"], ["change_eventeventrelation", "vocabularies", "eventeventrelation"], ["delete_eventeventrelation", "vocabularies", "eventeventrelation"], ["add_eventtype", "vocabularies", "eventtype"], ["change_eventtype", "vocabularies", "eventtype"], ["delete_eventtype", "vocabularies", "eventtype"], ["add_eventworkrelation", "vocabularies", "eventworkrelation"], ["change_eventworkrelation", "vocabularies", "eventworkrelation"], ["delete_eventworkrelation", "vocabularies", "eventworkrelation"], ["add_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["change_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["delete_institutioneventrelation", "vocabularies", "institutioneventrelation"], ["add_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["change_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["delete_institutioninstitutionrelation", "vocabularies", "institutioninstitutionrelation"], ["add_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["change_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["delete_institutionplacerelation", "vocabularies", "institutionplacerelation"], ["add_institutiontype", "vocabularies", "institutiontype"], ["change_institutiontype", "vocabularies", "institutiontype"], ["delete_institutiontype", "vocabularies", "institutiontype"], ["add_labeltype", "vocabularies", "labeltype"], ["change_labeltype", "vocabularies", "labeltype"], ["delete_labeltype", "vocabularies", "labeltype"], ["add_personeventrelation", "vocabularies", "personeventrelation"], ["change_personeventrelation", "vocabularies", "personeventrelation"], ["delete_personeventrelation", "vocabularies", "personeventrelation"], ["add_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["change_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["delete_personinstitutionrelation", "vocabularies", "personinstitutionrelation"], ["add_personpersonrelation", "vocabularies", "personpersonrelation"], ["change_personpersonrelation", "vocabularies", "personpersonrelation"], ["delete_personpersonrelation", "vocabularies", "personpersonrelation"], ["add_personplacerelation", "vocabularies", "personplacerelation"], ["change_personplacerelation", "vocabularies", "personplacerelation"], ["delete_personplacerelation", "vocabularies", "personplacerelation"], ["add_personworkrelation", "vocabularies", "personworkrelation"], ["change_personworkrelation", "vocabularies", "personworkrelation"], ["delete_personworkrelation", "vocabularies", "personworkrelation"], ["add_placeeventrelation", "vocabularies", "placeeventrelation"], ["change_placeeventrelation", "vocabularies", "placeeventrelation"], ["delete_placeeventrelation", "vocabularies", "placeeventrelation"], ["add_placeplacerelation", "vocabularies", "placeplacerelation"], ["change_placeplacerelation", "vocabularies", "placeplacerelation"], ["delete_placeplacerelation", "vocabularies", "placeplacerelation"], ["add_placetype", "vocabularies", "placetype"], ["change_placetype", "vocabularies", "placetype"], ["delete_placetype", "vocabularies", "placetype"], ["add_placeworkrelation", "vocabularies", "placeworkrelation"], ["change_placeworkrelation", "vocabularies", "placeworkrelation"], ["delete_placeworkrelation", "vocabularies", "placeworkrelation"], ["add_professiontype", "vocabularies", "professiontype"], ["change_professiontype", "vocabularies", "professiontype"], ["delete_professiontype", "vocabularies", "professiontype"], ["add_relationbaseclass", "vocabularies", "relationbaseclass"], ["change_relationbaseclass", "vocabularies", "relationbaseclass"], ["delete_relationbaseclass", "vocabularies", "relationbaseclass"], ["add_texttype", "vocabularies", "texttype"], ["change_texttype", "vocabularies", "texttype"], ["delete_texttype", "vocabularies", "texttype"], ["add_title", "vocabularies", "title"], ["change_title", "vocabularies", "title"], ["delete_title", "vocabularies", "title"], ["add_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["change_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["delete_vocabsbaseclass", "vocabularies", "vocabsbaseclass"], ["add_vocabsuri", "vocabularies", "vocabsuri"], ["change_vocabsuri", "vocabularies", "vocabsuri"], ["delete_vocabsuri", "vocabularies", "vocabsuri"], ["add_worktype", "vocabularies", "worktype"], ["change_worktype", "vocabularies", "worktype"], ["delete_worktype", "vocabularies", "worktype"], ["add_workworkrelation", "vocabularies", "workworkrelation"], ["change_workworkrelation", "vocabularies", "workworkrelation"], ["delete_workworkrelation", "vocabularies", "workworkrelation"]]}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1, "fields": {"name": "old entity of", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Place description \u00d6BL", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "vocabsor similar import", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "\u00d6BL place name", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "seat of a third-order administrative division (PPLA3)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "weitere Namensformen", "description": "wie im Gideon, statt alternative name", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "independent political entity (PCLI)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "populated place (PPL)", "description": "a city, town, village, or other agglomeration of buildings where people live and work", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "seat of a fourth-order administrative division (PPLA4)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "seat of a second-order administrative division (PPLA2)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "capital of a political entity (PPLC)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "seat of a first-order administrative division (PPLA)", "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 125, "fields": {"name": "test data import", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Literatur, Buch- und Zeitungswesen", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "\u00d6BL Haupttext", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "\u00d6BL Kurzinfo", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Rechtswesen und Rechtswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 133, "fields": {"name": "Rechtshistoriker und Abgeordneter", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Politik", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 135, "fields": {"name": "Naturwissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Botaniker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 137, "fields": {"name": "Wirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 138, "fields": {"name": "Instrumentenbauer", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 139, "fields": {"name": "Bildende und angewandte Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Maler", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 141, "fields": {"name": "Religionen und Theologie", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Bischof", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 143, "fields": {"name": "Milit\u00e4r", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "General", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Verwaltungsjurist und Politiker", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 146, "fields": {"name": "Verwaltung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 147, "fields": {"name": "Ministerpr\u00e4sident", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Zoologe", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Geisteswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Arch\u00e4ologe", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Musik und darstellende Kunst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Schauspieler und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Medizin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "P\u00e4diater", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Technik", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Milit\u00e4rtechniker, Offizier und ungarischer Freiheitsk\u00e4mpfer", "description": "", "parent_class": 157, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Beamter und Fachschriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Historiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Architekt", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Diplomat", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Sport", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Eiskunstl\u00e4uferin", "description": "", "parent_class": 163, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 165, "fields": {"name": "Gro\u00dfindustrielle", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 166, "fields": {"name": "Diverse", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Bautechniker", "description": "", "parent_class": 157, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Maler und Graphiker", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Politikerin und Schriftstellerin", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Schauspieler, Theaterdirektor und Schriftsteller", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Physiologe", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Jurist", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Fabrikant", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Schriftsteller und Journalist", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Internist", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Landesverteidiger und Schriftsteller", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 177, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Malerin", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 179, "fields": {"name": "Volkss\u00e4nger", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Sozial- und Wirtschaftswissenschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Betriebswirtschafter", "description": "", "parent_class": 180, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 182, "fields": {"name": "Slawist und Linguist", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 183, "fields": {"name": "Admiral", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Stigmatisierte", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 187, "fields": {"name": "Pharmazeut", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Unterrichtswesen", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Lehrer", "description": "", "parent_class": 188, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Montanist und Chemiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 191, "fields": {"name": "Maler und Radierer", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Philologe und Literarhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Biologe und Lehrer", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Physiker", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Offizier und Diplomat", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Theologe", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Ornithologe", "description": "", "parent_class": 135, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Diplomat und Politiker", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Lokalhistoriker, Gewerbetreibender und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Schriftsteller und Seelsorger", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Industrieller", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Mediziner", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Komponist, Chorleiter und Musikkritiker", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Kirchenhistoriker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Journalist und Lehrer", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Fabrikant und Politiker", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "S\u00e4nger und Schauspieler", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Chirurg", "description": "", "parent_class": 154, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 209, "fields": {"name": "Jurist und Beamter", "description": "", "parent_class": 132, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gro\u00dfindustrieller, Gro\u00dfunternehmer und Bankier", "description": "", "parent_class": 137, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Feldmarschalleutnant und Sicherheitsbeamter", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Pianist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Politiker und Jurist", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 214, "fields": {"name": "Musiker und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Bildhauer", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Harfenist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 217, "fields": {"name": "Land- und Forstwirtschaft", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 218, "fields": {"name": "Landwirt und Weinhauer", "description": "", "parent_class": 217, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 219, "fields": {"name": "Ordensangeh\u00f6riger und Stifter", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 220, "fields": {"name": "Historiker und Lehrer", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 221, "fields": {"name": "Politiker und Kaufmann", "description": "", "parent_class": 134, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 222, "fields": {"name": "Journalist und Schriftsteller", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Maler und Karikaturist", "description": "", "parent_class": 139, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Offizier", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Bischof und Missionar", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 226, "fields": {"name": "P\u00e4dagogin und Physikerin", "description": "", "parent_class": 188, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 227, "fields": {"name": "Historiker und Byzantinist", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Archivar und Historiker", "description": "", "parent_class": 146, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Geistlicher, Historiker und Politiker", "description": "", "parent_class": 149, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 230, "fields": {"name": "Schriftsteller, \u00dcbersetzer, Schauspieler und Regisseur", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Offizier und Politiker", "description": "", "parent_class": 143, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "S\u00e4nger, Dirigent und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 233, "fields": {"name": "Journalist und Politiker", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Pfadfinderf\u00fchrer und Offizier", "description": "", "parent_class": 166, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "F\u00fcrstbischof", "description": "", "parent_class": 141, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 236, "fields": {"name": "Place review comments", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 371, "fields": {"name": "first-order administrative division (ADM1)", "description": "a primary administrative division of a country, such as a state in the United States", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "third-order administrative division (ADM3)", "description": "a subdivision of a second-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "fifth-order administrative division (ADM5)", "description": "a subdivision of a fourth-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Krieg", "description": "auch Revolution und B\u00fcrgerkrieg, Unterkategorie ist Schlacht", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Attentat", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 384, "fields": {"name": "Epidemie", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Verleihung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Festzug", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Kongress", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "R\u00fccktritt", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Fertigstellung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 392, "fields": {"name": "Erstauff\u00fchrung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 394, "fields": {"name": "Berufung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Abspaltung", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "nahm Teil an", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "hatte als Teilnehmer", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Schlacht", "description": "", "parent_class": 380, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Friedensverhandlung", "description": "", "parent_class": 380, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "historical first-order administrative division (ADM1H)", "description": "a former first-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "author", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Publikation", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Pseudonym", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "M\u00e4dchenname", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 432, "fields": {"name": "K\u00fcnstlername", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "fourth-order administrative division (ADM4)", "description": "a subdivision of a third-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 452, "fields": {"name": "second-order administrative division (ADM2)", "description": "a subdivision of a first-order administrative division", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Graf", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Herzog", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 462, "fields": {"name": "Freiherr", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Erzherzog", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "K\u00f6nig", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Kaiser", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 466, "fields": {"name": "F\u00fcrst", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Freiin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Freifrau", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "F\u00fcrstin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 470, "fields": {"name": "Erzherz\u00f6gin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "K\u00f6nigin", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": null}}, {"model": "vocabularies.vocabsbaseclass", "pk": 483, "fields": {"name": "Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Pianist und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "place of birth", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "place of death", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 2}}, {"model": "vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "alternative Namensform", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 598, "fields": {"name": "Name laut \u00d6BL XML", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 606, "fields": {"name": "Ehename", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Taufname", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 653, "fields": {"name": "not defined", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 3}}, {"model": "vocabularies.vocabsbaseclass", "pk": 1750, "fields": {"name": "Pianistin", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "Komponist und Musiklehrer", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5578, "fields": {"name": "Schriftstellerin, \u00dcbersetzerin und Pianistin", "description": "", "parent_class": 128, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5599, "fields": {"name": "Pianist, P\u00e4dagoge und Komponist", "description": "", "parent_class": 151, "status": "can", "userAdded": ["sennierer"], "vocab_name": 1}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5608, "fields": {"name": "undefined", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5702, "fields": {"name": "situated in", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 8}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5708, "fields": {"name": "is superior of", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5709, "fields": {"name": "is succeeding", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5711, "fields": {"name": "is preceding", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 5}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5729, "fields": {"name": "section of populated place (PPLX)", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5741, "fields": {"name": "family member", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5742, "fields": {"name": "friend", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 6}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5743, "fields": {"name": "affiliation", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 4}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5765, "fields": {"name": "administrative division (ADMD)", "description": "an administrative division of a country, undifferentiated as to administrative level", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5772, "fields": {"name": "research dataset", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 11}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5789, "fields": {"name": "political entity (PCL)", "description": "", "parent_class": null, "status": "can", "userAdded": null, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5808, "fields": {"name": "dependent political entity (PCLD)", "description": "", "parent_class": null, "status": "can", "userAdded": null, "vocab_name": 10}}, {"model": "vocabularies.vocabsbaseclass", "pk": 5811, "fields": {"name": "Commentary Staribacher", "description": "", "parent_class": null, "status": "can", "userAdded": ["sennierer"], "vocab_name": 7}}, {"model": "vocabularies.relationbaseclass", "pk": 1, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 8, "fields": {"name_reverse": "includes"}}, {"model": "vocabularies.relationbaseclass", "pk": 398, "fields": {"name_reverse": "hatte als Teilnehmer"}}, {"model": "vocabularies.relationbaseclass", "pk": 399, "fields": {"name_reverse": "nahm Teil an"}}, {"model": "vocabularies.relationbaseclass", "pk": 424, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 595, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 596, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5608, "fields": {"name_reverse": "undefined"}}, {"model": "vocabularies.relationbaseclass", "pk": 5702, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5708, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5709, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5711, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5741, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5742, "fields": {"name_reverse": ""}}, {"model": "vocabularies.relationbaseclass", "pk": 5743, "fields": {"name_reverse": ""}}, {"model": "vocabularies.worktype", "pk": 429, "fields": {}}, {"model": "vocabularies.title", "pk": 460, "fields": {"abbreviation": "Gf."}}, {"model": "vocabularies.title", "pk": 461, "fields": {"abbreviation": "Hg."}}, {"model": "vocabularies.title", "pk": 462, "fields": {"abbreviation": "Frh."}}, {"model": "vocabularies.title", "pk": 463, "fields": {"abbreviation": "Erzhg."}}, {"model": "vocabularies.title", "pk": 464, "fields": {"abbreviation": "Kg."}}, {"model": "vocabularies.title", "pk": 465, "fields": {"abbreviation": "K."}}, {"model": "vocabularies.title", "pk": 466, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 467, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 468, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 469, "fields": {"abbreviation": ""}}, {"model": "vocabularies.title", "pk": 470, "fields": {"abbreviation": "Erzhgn."}}, {"model": "vocabularies.title", "pk": 474, "fields": {"abbreviation": "Kngn."}}, {"model": "vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 133, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 135, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 137, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 138, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 139, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 141, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 143, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 146, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 147, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 149, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 165, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 166, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 172, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 177, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 179, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 182, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 183, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 187, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 191, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 209, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 214, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 217, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 218, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 219, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 220, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 221, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 222, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 226, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 227, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 230, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 233, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 483, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 1750, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 2054, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5578, "fields": {}}, {"model": "vocabularies.professiontype", "pk": 5599, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "vocabularies.placetype", "pk": 11, "fields": {}}, {"model": "vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "vocabularies.placetype", "pk": 371, "fields": {}}, {"model": "vocabularies.placetype", "pk": 373, "fields": {}}, {"model": "vocabularies.placetype", "pk": 375, "fields": {}}, {"model": "vocabularies.placetype", "pk": 420, "fields": {}}, {"model": "vocabularies.placetype", "pk": 443, "fields": {}}, {"model": "vocabularies.placetype", "pk": 452, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5729, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5765, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5789, "fields": {}}, {"model": "vocabularies.placetype", "pk": 5808, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 380, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 382, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 384, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 385, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 386, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 388, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 390, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 391, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 392, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 393, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 394, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 396, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 400, "fields": {}}, {"model": "vocabularies.eventtype", "pk": 401, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 4, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 6, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 430, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 431, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 432, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 433, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 597, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 598, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 606, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 612, "fields": {}}, {"model": "vocabularies.labeltype", "pk": 653, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 3, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 125, "fields": {}}, {"model": "vocabularies.collectiontype", "pk": 5772, "fields": {}}, {"model": "vocabularies.texttype", "pk": 2, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 130, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 131, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.texttype", "pk": 236, "fields": {"entity": "Place", "collections": []}}, {"model": "vocabularies.texttype", "pk": 5811, "fields": {"entity": "Person", "collections": []}}, {"model": "vocabularies.personpersonrelation", "pk": 5608, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5741, "fields": {}}, {"model": "vocabularies.personpersonrelation", "pk": 5742, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 595, "fields": {}}, {"model": "vocabularies.personplacerelation", "pk": 596, "fields": {}}, {"model": "vocabularies.personinstitutionrelation", "pk": 5743, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 398, "fields": {}}, {"model": "vocabularies.personeventrelation", "pk": 399, "fields": {}}, {"model": "vocabularies.personworkrelation", "pk": 424, "fields": {}}, {"model": "vocabularies.institutionplacerelation", "pk": 5702, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5708, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5709, "fields": {}}, {"model": "vocabularies.institutioninstitutionrelation", "pk": 5711, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 1, "fields": {}}, {"model": "vocabularies.placeplacerelation", "pk": 8, "fields": {}}, {"model": "metainfo.collection", "pk": 29, "fields": {"name": "Testdata \u00d6BL", "description": "", "collection_type": null, "groups_allowed": []}}, {"model": "highlighter.project", "pk": 1, "fields": {"name": "highlight places", "user": ["sennierer"], "description": "", "base_url": "", "store_text": false}}, {"model": "highlighter.annotation", "pk": 237, "fields": {"start": 239, "end": 250, "orig_string": "Carl Czerny", "text": 47030, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92840]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 331, "fields": {"start": 879, "end": 899, "orig_string": "Ludwig van Beethoven", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92930]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 332, "fields": {"start": 1362, "end": 1380, "orig_string": "Sigismund Thalberg", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92931]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 333, "fields": {"start": 1383, "end": 1408, "orig_string": "Marie Leopoldine Blahetka", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92932]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 334, "fields": {"start": 1439, "end": 1454, "orig_string": "Franz von Liszt", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92933]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 335, "fields": {"start": 1736, "end": 1751, "orig_string": "Ignaz Moscheles", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92934]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 336, "fields": {"start": 3031, "end": 3043, "orig_string": "Anton Reicha", "text": 47126, "parent": null, "user_added": ["sennierer"], "annotation_project": 1, "status": null, "entity_link": [[["relations", "personperson"], 92935]], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1214, "fields": {"start": 40, "end": 55, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1215, "fields": {"start": 141, "end": 151, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1216, "fields": {"start": 225, "end": 262, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1217, "fields": {"start": 354, "end": 378, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1218, "fields": {"start": 451, "end": 478, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1219, "fields": {"start": 500, "end": 508, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1220, "fields": {"start": 549, "end": 566, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "highlighter.annotation", "pk": 1221, "fields": {"start": 650, "end": 670, "orig_string": null, "text": 47642, "parent": null, "user_added": ["sennierer"], "annotation_project": 4, "status": null, "entity_link": [], "entity_candidate": []}}, {"model": "authtoken.token", "pk": "bb650ee43b63b5e13cbac9320157b08c36099452", "fields": {"user": ["sennierer"], "created": "2016-08-26T08:01:26Z"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2016-04-07T11:10:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "13", "object_repr": "oebl", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2016-04-07T11:11:00Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "13", "object_repr": "oebl", "action_flag": 2, "change_message": "Changed is_staff and user_permissions."}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2016-04-13T15:46:02Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "40", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2016-04-14T11:55:13Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "50", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2016-04-14T11:55:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "53", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2016-04-14T12:41:46Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2016-04-15T07:22:05Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2016-04-15T07:22:26Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "96", "object_repr": "test", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2016-04-18T11:07:39Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "6", "object_repr": "testcollection 18.4", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2016-04-18T11:16:20Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "107", "object_repr": "Editlogs", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2016-04-26T09:31:21Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "44", "object_repr": "place of death", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2016-04-26T09:31:47Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "43", "object_repr": "place of birth", "action_flag": 2, "change_message": "Changed name_reverse."}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2016-04-27T10:26:06Z", "user": ["sennierer"], "content_type": ["vocabularies", "institutionplacerelation"], "object_id": "108", "object_repr": "located in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2016-04-28T09:03:10Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "109", "object_repr": "studied in", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2016-05-03T09:51:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "110", "object_repr": "Place accuracy test", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2016-05-03T11:01:33Z", "user": ["sennierer"], "content_type": ["relations", "personplace"], "object_id": "23993", "object_repr": "Defregger, Franz von (studied in)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2016-05-09T08:58:18Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2016-05-09T08:58:25Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2016-05-09T10:07:01Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "236", "object_repr": "Place review comments", "action_flag": 1, "change_message": "Added."}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2016-05-09T10:10:38Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "2", "object_repr": "Place description \u00d6BL", "action_flag": 2, "change_message": "Changed entity and collections."}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2016-05-23T07:03:50Z", "user": ["sennierer"], "content_type": ["vocabularies", "personinstitutionrelation"], "object_id": "279", "object_repr": "is Vizepr\u00e4sident von", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2016-05-23T09:31:15Z", "user": ["sennierer"], "content_type": ["vocabularies", "personplacerelation"], "object_id": "237", "object_repr": "wirkte in", "action_flag": 2, "change_message": "Changed name and name_reverse."}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "245", "object_repr": "Kind", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "244", "object_repr": "Eltern", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "243", "object_repr": "Vater", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2016-05-25T11:19:56Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "242", "object_repr": "Mutter", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2016-05-25T11:21:38Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "421", "object_repr": "Vater/Mutter", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2016-06-06T07:44:47Z", "user": ["sennierer"], "content_type": ["vocabularies", "title"], "object_id": "459", "object_repr": "Graf", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2016-06-06T07:45:44Z", "user": ["sennierer"], "content_type": ["vocabularies", "title"], "object_id": "459", "object_repr": "Graf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2016-06-21T09:34:32Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "2", "object_repr": "apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2016-06-21T09:34:54Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2016-08-02T08:41:51Z", "user": ["sennierer"], "content_type": ["highlighter", "project"], "object_id": "1", "object_repr": "highlight places", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2016-08-02T08:43:38Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2016-08-02T08:44:13Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "1", "object_repr": "Person Place Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2016-08-02T08:45:35Z", "user": ["sennierer"], "content_type": ["highlighter", "texthigh"], "object_id": "1", "object_repr": "\u00d6BL Haupttext", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2016-08-02T08:45:50Z", "user": ["sennierer"], "content_type": ["highlighter", "texthigh"], "object_id": "2", "object_repr": "\u00d6bl Kurzinfo", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2016-08-02T08:49:51Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "2", "object_repr": "Person Institution Form", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2016-08-02T08:50:13Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "2", "object_repr": "Person Institution Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2016-08-05T09:01:30Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "KaiserM", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2016-08-05T09:02:10Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "KaiserM", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2016-08-05T09:02:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2016-08-05T12:44:55Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2016-08-05T12:45:10Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2016-08-22T14:47:23Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2016-08-22T14:47:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2016-08-26T08:00:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2016-08-26T08:00:50Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "is_staff, is_superuser und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2016-08-26T08:01:14Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2016-08-26T08:01:26Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2016-09-05T08:05:05Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "18", "object_repr": "CGruber", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2016-09-05T08:05:29Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "18", "object_repr": "CGruber", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2016-09-06T10:50:39Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2016-09-06T10:51:00Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2016-09-06T14:33:23Z", "user": ["sennierer"], "content_type": ["vocabularies", "personpersonrelation"], "object_id": "5608", "object_repr": "undefined", "action_flag": 2, "change_message": "name_reverse ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2016-09-07T10:05:46Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2016-09-07T10:05:53Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2016-09-07T12:36:40Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2016-09-07T12:36:55Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2016-09-21T09:15:20Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2016-09-21T09:15:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2016-10-03T14:34:28Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2016-10-03T14:34:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "is_staff ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2016-10-03T14:34:56Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "3", "object_repr": "staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2016-10-03T14:39:11Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "3", "object_repr": "staribacher", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2016-10-03T14:39:40Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2016-10-03T14:45:29Z", "user": ["sennierer"], "content_type": ["vocabularies", "collectiontype"], "object_id": "5772", "object_repr": "research dataset", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2016-10-03T14:45:47Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "collection_type ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2016-10-03T14:47:21Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2016-10-06T06:56:20Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2016-10-06T06:56:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2016-10-06T06:58:12Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2016-10-06T06:58:30Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "17", "object_repr": "Mittelalter 7.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2016-10-06T07:00:34Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "16", "object_repr": "\u00d6BL additional import missing XMLs 7.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2016-10-06T07:00:50Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "15", "object_repr": "K\u00fcnstlerhaus 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2016-10-06T07:01:03Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "11", "object_repr": "Presse 6.9.2016", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2016-10-06T07:01:25Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "7", "object_repr": "\u00d6BL complete import test 30.8.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2016-10-06T07:01:46Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "8", "object_repr": "\u00d6BL additional import 66lfg 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2016-10-06T07:01:55Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "9", "object_repr": "\u00d6BL additional import 4online 2.9.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2016-10-06T07:31:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2016-10-06T07:32:15Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2016-10-07T16:13:36Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2016-10-07T16:13:56Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2016-10-07T16:14:12Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "KrautgartnerB", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2016-10-07T16:14:34Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "22", "object_repr": "BKrautgartner", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2016-10-12T12:25:02Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2016-10-12T12:25:40Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "23", "object_repr": "staribacher_rest", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2016-10-12T12:27:20Z", "user": ["sennierer"], "content_type": ["authtoken", "token"], "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2016-10-14T11:10:59Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "3", "object_repr": "Person Person", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2016-10-14T11:12:53Z", "user": ["sennierer"], "content_type": ["highlighter", "menuentry"], "object_id": "3", "object_repr": "Person Person Relation", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2016-10-14T11:13:18Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "1", "object_repr": "Person Place Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2016-10-14T11:13:24Z", "user": ["sennierer"], "content_type": ["highlighter", "vocabularyapi"], "object_id": "3", "object_repr": "Person Person Form", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2016-10-24T09:04:11Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2016-10-24T09:04:27Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "is_staff und groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2016-10-25T10:05:10Z", "user": ["sennierer"], "content_type": ["highlighter", "annotationproject"], "object_id": "1", "object_repr": "Default", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2016-12-02T15:27:02Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "17", "object_repr": "MDurco", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 851, "fields": {"action_time": "2017-01-11T11:53:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 852, "fields": {"action_time": "2017-01-11T11:57:36Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "is_staff und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 853, "fields": {"action_time": "2017-01-11T11:57:58Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 854, "fields": {"action_time": "2017-01-11T12:04:57Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 855, "fields": {"action_time": "2017-01-11T12:37:10Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "23", "object_repr": "300 random select", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 856, "fields": {"action_time": "2017-01-11T12:37:13Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "22", "object_repr": "300 selec names", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 857, "fields": {"action_time": "2017-01-11T12:37:44Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "5", "object_repr": "\u00d6BL places import 6.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 858, "fields": {"action_time": "2017-01-11T12:37:51Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "4", "object_repr": "\u00d6BL test data import 9.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 859, "fields": {"action_time": "2017-01-11T12:38:00Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "1", "object_repr": "\u00d6BL places import 6.5.16", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 860, "fields": {"action_time": "2017-01-11T13:47:33Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernard", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 861, "fields": {"action_time": "2017-01-23T12:13:06Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "15", "object_repr": "JKerschner", "action_flag": 2, "change_message": "password ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 875, "fields": {"action_time": "2017-02-21T13:34:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "username ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 882, "fields": {"action_time": "2017-02-27T11:38:32Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "25", "object_repr": "Presse-Graz", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 884, "fields": {"action_time": "2017-03-07T08:29:18Z", "user": ["sennierer"], "content_type": ["vocabularies", "personinstitutionrelation"], "object_id": "5678", "object_repr": "war Lehrling", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 892, "fields": {"action_time": "2017-03-13T09:14:53Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 893, "fields": {"action_time": "2017-03-13T09:16:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 894, "fields": {"action_time": "2017-03-13T09:17:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 895, "fields": {"action_time": "2017-03-13T09:17:37Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 899, "fields": {"action_time": "2017-03-13T10:04:15Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "130", "object_repr": "\u00d6BL Haupttext", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 900, "fields": {"action_time": "2017-03-13T10:04:24Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "131", "object_repr": "\u00d6BL Kurzinfo", "action_flag": 2, "change_message": "collections ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 903, "fields": {"action_time": "2017-03-21T14:23:50Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "5811", "object_repr": "Comentary Staribacher", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 904, "fields": {"action_time": "2017-03-21T14:24:49Z", "user": ["sennierer"], "content_type": ["vocabularies", "texttype"], "object_id": "5811", "object_repr": "Commentary Staribacher", "action_flag": 2, "change_message": "name ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 905, "fields": {"action_time": "2017-03-21T14:51:26Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "20", "object_repr": "Staribacher Personen", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 906, "fields": {"action_time": "2017-03-21T14:52:09Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "19", "object_repr": "DSchopper", "action_flag": 2, "change_message": "Keine Felder ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 913, "fields": {"action_time": "2017-04-03T11:41:06Z", "user": ["sennierer"], "content_type": ["metainfo", "collection"], "object_id": "26", "object_repr": "Default import collection", "action_flag": 2, "change_message": "groups_allowed ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 916, "fields": {"action_time": "2017-04-04T10:19:05Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 917, "fields": {"action_time": "2017-04-04T10:19:25Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 2, "change_message": "is_staff, groups und user_permissions ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 922, "fields": {"action_time": "2017-04-11T10:29:05Z", "user": ["sennierer"], "content_type": ["auth", "group"], "object_id": "4", "object_repr": "Editoren Apis", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 923, "fields": {"action_time": "2017-04-11T10:29:28Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "16", "object_repr": "ABernad", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 924, "fields": {"action_time": "2017-04-11T10:29:38Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "25", "object_repr": "KLejtovicz", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 925, "fields": {"action_time": "2017-04-11T10:29:49Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 926, "fields": {"action_time": "2017-04-11T10:29:57Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "24", "object_repr": "PRumpolt", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 927, "fields": {"action_time": "2017-04-11T10:30:08Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "21", "object_repr": "testuser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 928, "fields": {"action_time": "2017-04-11T10:30:15Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "12", "object_repr": "sennierer", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}, {"model": "admin.logentry", "pk": 929, "fields": {"action_time": "2017-04-11T10:31:23Z", "user": ["sennierer"], "content_type": ["highlighter", "annotationproject"], "object_id": "6", "object_repr": "Gold Standard 28.3.2017", "action_flag": 1, "change_message": "Hinzugef\u00fcgt."}}, {"model": "admin.logentry", "pk": 930, "fields": {"action_time": "2017-05-02T10:28:41Z", "user": ["sennierer"], "content_type": ["auth", "user"], "object_id": "14", "object_repr": "MKaiser", "action_flag": 2, "change_message": "groups ge\u00e4ndert."}}] \ No newline at end of file diff --git a/apis_core/apis_entities/templates/apis_entities/institution_create.html b/apis_core/apis_entities/templates/apis_entities/institution_create.html index 39a7743..b15cedd 100644 --- a/apis_core/apis_entities/templates/apis_entities/institution_create.html +++ b/apis_core/apis_entities/templates/apis_entities/institution_create.html @@ -212,7 +212,7 @@

{{ x.label }} - {{ x.isoCode_639_3 }} + {{ x.isocode_639_3 }} {{ x.label_type }} @@ -356,7 +356,7 @@

unbind_ajax_forms(); captureAutocompleteEvent('autocomplete-ort-uri'); } else { - var tab_html = ""+response.instance.label+""+ response.instance.isoCode_639_3 +""+ response.instance.label_type +"" + var tab_html = ""+response.instance.label+""+ response.instance.isocode_639_3 +""+ response.instance.label_type +"" if ($('#tab_'+response.tab+' table').find('#label_'+response.instance.relation_pk).length) { $('#tab_'+response.tab+' table').find('#label_'+response.instance.relation_pk).replaceWith(tab_html); } else { diff --git a/apis_core/apis_entities/templates/apis_entities/person_create.html b/apis_core/apis_entities/templates/apis_entities/person_create.html index 465fa32..e3b102c 100644 --- a/apis_core/apis_entities/templates/apis_entities/person_create.html +++ b/apis_core/apis_entities/templates/apis_entities/person_create.html @@ -187,7 +187,7 @@

{{ x.label }} - {{ x.isoCode_639_3 }} + {{ x.isocode_639_3 }} {{ x.label_type }} @@ -335,7 +335,7 @@

unbind_ajax_forms(); captureAutocompleteEvent('autocomplete-ort-uri'); } else { - var tab_html = ""+response.instance.label+""+ response.instance.isoCode_639_3 +""+ response.instance.label_type +"" + var tab_html = ""+response.instance.label+""+ response.instance.isocode_639_3 +""+ response.instance.label_type +"" if ($('#tab_'+response.tab+' table').find('#label_'+response.instance.relation_pk).length) { $('#tab_'+response.tab+' table').find('#label_'+response.instance.relation_pk).replaceWith(tab_html); } else { diff --git a/apis_core/apis_entities/templates/apis_entities/person_create_new.html b/apis_core/apis_entities/templates/apis_entities/person_create_new.html index 2c2fd6a..7eafe20 100644 --- a/apis_core/apis_entities/templates/apis_entities/person_create_new.html +++ b/apis_core/apis_entities/templates/apis_entities/person_create_new.html @@ -206,7 +206,7 @@

unbind_ajax_forms(); captureAutocompleteEvent('autocomplete-ort-uri'); } else { - var tab_html = ""+response.instance.label+""+ response.instance.isoCode_639_3 +""+ response.instance.label_type +"" + var tab_html = ""+response.instance.label+""+ response.instance.isocode_639_3 +""+ response.instance.label_type +"" if ($('#tab_'+response.tab+' table').find('#label_'+response.instance.relation_pk).length) { $('#tab_'+response.tab+' table').find('#label_'+response.instance.relation_pk).replaceWith(tab_html); } else { diff --git a/apis_core/apis_labels/admin.py b/apis_core/apis_labels/admin.py index 52264d3..3404896 100644 --- a/apis_core/apis_labels/admin.py +++ b/apis_core/apis_labels/admin.py @@ -10,7 +10,7 @@ class BaseAdmin(admin.ModelAdmin): search_fields = ('label',) list_filter = ( - "isoCode_639_3", + "isocode_639_3", "label_type", ) list_display = ('label', 'temp_entity', ) diff --git a/apis_core/apis_labels/forms.py b/apis_core/apis_labels/forms.py index a3a57f7..be741bb 100644 --- a/apis_core/apis_labels/forms.py +++ b/apis_core/apis_labels/forms.py @@ -18,7 +18,7 @@ class LabelForm(forms.ModelForm): class Meta: model = Label - fields = ['label', 'isoCode_639_3', 'label_type'] + fields = ['label', 'isocode_639_3', 'label_type'] def __init__(self, *args, **kwargs): super(LabelForm, self).__init__(*args, **kwargs) diff --git a/apis_core/apis_labels/migrations/0001_initial.py b/apis_core/apis_labels/migrations/0001_initial.py index ec5538d..781507f 100644 --- a/apis_core/apis_labels/migrations/0001_initial.py +++ b/apis_core/apis_labels/migrations/0001_initial.py @@ -16,7 +16,7 @@ class Migration(migrations.Migration): fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('label', models.CharField(blank=True, help_text='The entities label or name.', max_length=255)), - ('isoCode_639_3', models.CharField(blank=True, default='deu', help_text="The ISO 639-3 (or 2) code for the label's language.", max_length=3, null=True, verbose_name='ISO Code')), + ('isocode_639_3', models.CharField(blank=True, default='deu', help_text="The ISO 639-3 (or 2) code for the label's language.", max_length=3, null=True, verbose_name='ISO Code')), ], ), ] diff --git a/apis_core/apis_labels/models.py b/apis_core/apis_labels/models.py index a11bcef..6b6bbdf 100644 --- a/apis_core/apis_labels/models.py +++ b/apis_core/apis_labels/models.py @@ -11,7 +11,7 @@ class Label(models.Model): label = models.CharField( max_length=255, blank=True, help_text="The entities label or name.") - isoCode_639_3 = models.CharField( + isocode_639_3 = models.CharField( max_length=3, blank=True, null=True, help_text="The ISO 639-3 (or 2) code for the label's language.", verbose_name='ISO Code', default='deu') @@ -44,7 +44,7 @@ def get_web_object(self): result = { 'relation_pk': self.pk, 'label': self.label, - 'isoCode_639_3': self.isoCode_639_3, + 'isocode_639_3': self.isocode_639_3, 'label_type': self.label_type.name} return result diff --git a/apis_core/apis_labels/serializers.py b/apis_core/apis_labels/serializers.py index 86eebde..1c80154 100644 --- a/apis_core/apis_labels/serializers.py +++ b/apis_core/apis_labels/serializers.py @@ -9,4 +9,4 @@ class LabelSerializerLegacy(serializers.ModelSerializer): class Meta: model = Label - fields = ('id', 'label', 'isoCode_639_3', 'label_type') + fields = ('id', 'label', 'isocode_639_3', 'label_type') diff --git a/apis_core/apis_relations/forms.py b/apis_core/apis_relations/forms.py index 62a373e..944a2fa 100644 --- a/apis_core/apis_relations/forms.py +++ b/apis_core/apis_relations/forms.py @@ -18,14 +18,14 @@ class EntityLabelForm(forms.ModelForm): class Meta: model = Label - fields = ['label', 'isoCode_639_3', 'label_type', 'start_date_written', 'end_date_written'] + fields = ['label', 'isocode_639_3', 'label_type', 'start_date_written', 'end_date_written'] def save(self, site_instance, instance=None, commit=True): cd = self.cleaned_data if instance: x = Label.objects.get(pk=instance) x.label = cd['label'] - x.isoCode_639_3 = cd['isoCode_639_3'] + x.isocode_639_3 = cd['isocode_639_3'] x.label_type = cd['label_type'] x.start_date_written = cd['start_date_written'] x.end_date_written = cd['end_date_written'] diff --git a/apis_core/apis_relations/tables.py b/apis_core/apis_relations/tables.py index 791cac6..f721aee 100644 --- a/apis_core/apis_relations/tables.py +++ b/apis_core/apis_relations/tables.py @@ -382,7 +382,7 @@ class Meta: # Note that as the next attribute 'sequence' builds on this list 'fields', the order defined within this list # will be reused for the tuple 'sequence'. So if the order needs to be changed, better do it here in the list 'fields'. - fields = ['start_date_written', 'end_date_written', 'label_type', 'isoCode_639_3'] + fields = ['start_date_written', 'end_date_written', 'label_type', 'isocode_639_3'] sequence = ('label',) + tuple(fields) # add class="paleblue" to tag @@ -395,7 +395,7 @@ class Meta: def __init__(self, **kwargs): self.base_columns["start_date_written"].attrs = {"th": {"class": "d-none d-lg-table-cell"},"td": {"class": "d-none d-lg-table-cell"}} self.base_columns["end_date_written"].attrs = {"th": {"class": "d-none d-lg-table-cell"},"td": {"class": "d-none d-lg-table-cell"}} - self.base_columns["isoCode_639_3"].attrs = {"th": {"class": "d-none d-lg-table-cell"},"td": {"class": "d-none d-lg-table-cell"}} + self.base_columns["isocode_639_3"].attrs = {"th": {"class": "d-none d-lg-table-cell"},"td": {"class": "d-none d-lg-table-cell"}} super().__init__(**kwargs) diff --git a/apis_core/apis_tei/tei.py b/apis_core/apis_tei/tei.py index 5e30628..7af4afb 100644 --- a/apis_core/apis_tei/tei.py +++ b/apis_core/apis_tei/tei.py @@ -168,7 +168,7 @@ def create_org_node(self): try: node.attrib[ "{http://www.w3.org/XML/1998/namespace}lang" - ] = "{}".format(x["isoCode_639_3"]) + ] = "{}".format(x["isocode_639_3"]) except KeyError: pass node.text = x["label"] @@ -210,7 +210,7 @@ def create_place_node(self): try: node.attrib[ "{http://www.w3.org/XML/1998/namespace}lang" - ] = "{}".format(x["isoCode_639_3"]) + ] = "{}".format(x["isocode_639_3"]) except KeyError: pass node.text = x["label"] @@ -256,7 +256,7 @@ def create_person_node(self): try: node.attrib[ "{http://www.w3.org/XML/1998/namespace}lang" - ] = "{}".format(x["isoCode_639_3"]) + ] = "{}".format(x["isocode_639_3"]) except KeyError: pass node.text = x["label"] From df4a475fe59e289edcb7f8f54af7cebc70b05f62 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 17:07:05 +0100 Subject: [PATCH 09/56] more lower case --- apis_core/apis_entities/detail_views.py | 32 ++---------- apis_core/apis_entities/filters.py | 8 +-- apis_core/apis_entities/models.py | 4 +- .../detail_views/entity_detail_generic.html | 2 +- apis_core/apis_entities/views2.py | 4 +- apis_core/apis_relations/models.py | 9 ++-- apis_core/apis_relations/tables.py | 49 +++---------------- .../EntityRelationFieldGenerator.py | 8 +-- 8 files changed, 31 insertions(+), 85 deletions(-) diff --git a/apis_core/apis_entities/detail_views.py b/apis_core/apis_entities/detail_views.py index 9f290d5..e35139f 100644 --- a/apis_core/apis_entities/detail_views.py +++ b/apis_core/apis_entities/detail_views.py @@ -20,9 +20,6 @@ from .models import TempEntityClass, BASE_URI from .views import get_highlighted_texts -if "apis_ampel" in settings.INSTALLED_APPS: - from apis_ampel.helper_functions import is_ampel_active - def get_object_from_pk_or_uri(request, pk): """checks if the given pk exists, if not checks if a matching apis-default uri exists @@ -70,8 +67,8 @@ def get(self, request, *args, **kwargs): side_bar = [] for rel in relations: match = [ - rel.get_related_entity_classA().__name__.lower(), - rel.get_related_entity_classB().__name__.lower(), + rel.get_related_entity_classa().__name__.lower(), + rel.get_related_entity_classb().__name__.lower(), ] prefix = "{}{}-".format(match[0].title()[:2], match[1].title()[:2]) table = get_generic_relations_table( @@ -81,16 +78,9 @@ def get(self, request, *args, **kwargs): title_card = entity.title() dict_1 = {"related_" + entity.lower() + "a": instance} dict_2 = {"related_" + entity.lower() + "b": instance} - if "apis_highlighter" in settings.INSTALLED_APPS: - objects = ( - rel.objects.filter_ann_proj(request=request) - .filter_for_user() - .filter(Q(**dict_1) | Q(**dict_2)) - ) - else: - objects = rel.objects.filter(Q(**dict_1) | Q(**dict_2)) - if callable(getattr(objects, "filter_for_user", None)): - objects = objects.filter_for_user() + objects = rel.objects.filter(Q(**dict_1) | Q(**dict_2)) + if callable(getattr(objects, "filter_for_user", None)): + objects = objects.filter_for_user() else: if match[0].lower() == entity.lower(): title_card = match[1].title() @@ -175,16 +165,4 @@ def get(self, request, *args, **kwargs): "iiif_info_json": iiif_info_json, "iiif_server": iiif_server, } - if "apis_ampel" in settings.INSTALLED_APPS: - context["show_ampel"] = is_ampel_active(entity) return HttpResponse(template.render(request=request, context=context)) - - -# TODO __sresch__ : This seems unused. Remove it once sure -# class WorkDetailView(DetailView): -# model = Work -# template_name = 'apis_entities/detail_views/work_detail.html' -# -# def get_context_data(self, **kwargs): -# context = super(WorkDetailView, self).get_context_data(**kwargs) -# return context diff --git a/apis_core/apis_entities/filters.py b/apis_core/apis_entities/filters.py index feff3f3..dcf1525 100644 --- a/apis_core/apis_entities/filters.py +++ b/apis_core/apis_entities/filters.py @@ -225,8 +225,8 @@ def related_entity_name_filter(self, queryset, name, value): # get the related classes and lookup names of the current relation # (e.g. for PersonWork: class Person, class Work, "related_person", "related_work") - related_entity_classA = relation_class.get_related_entity_classA() - related_entity_classB = relation_class.get_related_entity_classB() + related_entity_classA = relation_class.get_related_entity_classa() + related_entity_classB = relation_class.get_related_entity_classb() related_entity_field_nameA = relation_class.get_related_entity_field_nameA() related_entity_field_nameB = relation_class.get_related_entity_field_nameB() @@ -301,8 +301,8 @@ def related_relationtype_name_filter(self, queryset, name, value): for relation_class in queryset.model.get_related_relation_classes(): - related_entity_classA = relation_class.get_related_entity_classA() - related_entity_classB = relation_class.get_related_entity_classB() + related_entity_classA = relation_class.get_related_entity_classa() + related_entity_classB = relation_class.get_related_entity_classb() related_entity_field_nameA = relation_class.get_related_entity_field_nameA() related_entity_field_nameB = relation_class.get_related_entity_field_nameB() diff --git a/apis_core/apis_entities/models.py b/apis_core/apis_entities/models.py index 5b55c42..285b069 100644 --- a/apis_core/apis_entities/models.py +++ b/apis_core/apis_entities/models.py @@ -366,10 +366,10 @@ def get_related_relation_instances(self): q_args = Q() - if relation_class.get_related_entity_classA() == self.__class__: + if relation_class.get_related_entity_classa() == self.__class__: q_args |= Q(**{relation_class.get_related_entity_field_nameA(): self}) - if relation_class.get_related_entity_classB() == self.__class__: + if relation_class.get_related_entity_classb() == self.__class__: q_args |= Q(**{relation_class.get_related_entity_field_nameB(): self}) queryset = relation_class.objects.filter(q_args) diff --git a/apis_core/apis_entities/templates/apis_entities/detail_views/entity_detail_generic.html b/apis_core/apis_entities/templates/apis_entities/detail_views/entity_detail_generic.html index ac71f5e..7156e49 100644 --- a/apis_core/apis_entities/templates/apis_entities/detail_views/entity_detail_generic.html +++ b/apis_core/apis_entities/templates/apis_entities/detail_views/entity_detail_generic.html @@ -1,4 +1,4 @@ -{% extends "webpage/base.html" %} +{% extends "base.html" %} {% load static %} {% load django_tables2 %} {% block title %} {{ object }} {% endblock %} diff --git a/apis_core/apis_entities/views2.py b/apis_core/apis_entities/views2.py index a59439d..af710b3 100644 --- a/apis_core/apis_entities/views2.py +++ b/apis_core/apis_entities/views2.py @@ -36,8 +36,8 @@ def get(self, request, *args, **kwargs): side_bar = [] for rel in relations: match = [ - rel.get_related_entity_classA().__name__.lower(), - rel.get_related_entity_classB().__name__.lower(), + rel.get_related_entity_classa().__name__.lower(), + rel.get_related_entity_classb().__name__.lower(), ] prefix = "{}{}-".format(match[0].title()[:2], match[1].title()[:2]) table = get_generic_relations_table( diff --git a/apis_core/apis_relations/models.py b/apis_core/apis_relations/models.py index 9797284..7193394 100644 --- a/apis_core/apis_relations/models.py +++ b/apis_core/apis_relations/models.py @@ -54,14 +54,14 @@ def get_web_object(self): namea = self.get_related_entity_instancea().name nameb = self.get_related_entity_instanceb().name - if self.get_related_entity_classA() == Person: + if self.get_related_entity_classa() == Person: namea += ", " if self.get_related_entity_instancea().first_name is None: namea += "-" else: namea += self.get_related_entity_instancea().first_name - if self.get_related_entity_classB() == Person: + if self.get_related_entity_classb() == Person: nameb += ", " if self.get_related_entity_instanceb().first_name is None: nameb += "-" @@ -285,6 +285,7 @@ def get_related_entity_instancea(self): :return: An entity instance related to the current relation instance """ + print(f"{self.get_related_entity_field_namea()}") return getattr( self, self.get_related_entity_field_namea() ) @@ -310,7 +311,7 @@ def get_related_entity_instanceb(self): @classmethod - def get_related_entity_classA(cls): + def get_related_entity_classa(cls): """ :return: the python class of the A side of the current relation class or instance E.g. PersonWork -> Person @@ -318,7 +319,7 @@ def get_related_entity_classA(cls): return None @classmethod - def get_related_entity_classB(cls): + def get_related_entity_classb(cls): """ :return: the python class of the B side of the current relation class or instance E.g. PersonWork -> Work diff --git a/apis_core/apis_relations/tables.py b/apis_core/apis_relations/tables.py index f721aee..4825f81 100644 --- a/apis_core/apis_relations/tables.py +++ b/apis_core/apis_relations/tables.py @@ -28,8 +28,8 @@ def get_generic_relation_listview_table(relation_name): # create all variables which save the foreign key fields which are different for each relation class relation_class = AbstractRelation.get_relation_class_of_name(relation_name) - related_entity_class_name_a = relation_class.get_related_entity_classA().__name__.lower() - related_entity_class_name_b = relation_class.get_related_entity_classB().__name__.lower() + related_entity_class_name_a = relation_class.get_related_entity_classa().__name__.lower() + related_entity_class_name_b = relation_class.get_related_entity_classb().__name__.lower() related_entity_field_name_a = relation_class.get_related_entity_field_nameA() related_entity_field_name_b = relation_class.get_related_entity_field_nameB() @@ -84,12 +84,6 @@ def __init__(self, *args, **kwargs): ] ) - if "apis_ampel" in settings.INSTALLED_APPS: - from apis_ampel.helper_functions import is_ampel_active - if is_ampel_active(relation_name): - self.base_columns['ampel'] = tables.TemplateColumn(template_name = "ampel/ampel_template_column.html", verbose_name="Ampel") - - super().__init__(*args, **kwargs) @@ -109,8 +103,8 @@ def get_generic_relations_table(relation_class, entity_instance, detail=None): # create all variables which save the foreign key fields which are different for each relation class entity_class_name = entity_instance.__class__.__name__.lower() - related_entity_class_name_a = relation_class.get_related_entity_classA().__name__.lower() - related_entity_class_name_b = relation_class.get_related_entity_classB().__name__.lower() + related_entity_class_name_a = relation_class.get_related_entity_classa().__name__.lower() + related_entity_class_name_b = relation_class.get_related_entity_classb().__name__.lower() related_entity_field_name_a = relation_class.get_related_entity_field_nameA() related_entity_field_name_b = relation_class.get_related_entity_field_nameB() @@ -180,11 +174,11 @@ def render_other_related_entity(self, record, value): :return: related instance """ - if value == record.get_related_entity_instanceA().pk : - return record.get_related_entity_instanceA() + if value == record.get_related_entity_instancea().pk : + return record.get_related_entity_instancea() - elif value == record.get_related_entity_instanceB().pk : - return record.get_related_entity_instanceB() + elif value == record.get_related_entity_instanceb().pk : + return record.get_related_entity_instanceb() else: raise Exception( @@ -267,15 +261,6 @@ def __init__(self, data, *args, **kwargs): verbose_name="Related " + other_related_entity_class_name.title() ) - if "apis_ampel" in settings.INSTALLED_APPS: - from apis_ampel.helper_functions import is_ampel_active - - if is_ampel_active(relation_class.__name__): - self.base_columns['ampel'] = tables.TemplateColumn(template_name = "ampel/edit_inline_table_column.html", verbose_name="Ampel") - - - - super().__init__(data=data, *args, **kwargs) @@ -298,9 +283,6 @@ class Meta(RelationTableBase.Meta): # This fields list also defines the order of the elements. fields = ["delete"] + RelationTableBase.Meta.fields + ["edit"] - if 'apis_bibsonomy' in settings.INSTALLED_APPS: - fields = ["ref"] + fields - # again reuse the fields list for ordering sequence = tuple(fields) @@ -326,21 +308,6 @@ def __init__(self, *args, **kwargs): template_name='apis_relations/edit_button_generic_ajax_form.html' ) - # bibsonomy button - if 'apis_bibsonomy' in settings.INSTALLED_APPS: - self.base_columns['ref'] = tables.TemplateColumn( - template_name='apis_relations/references_button_generic_ajax_form.html' - ) - - # __g.pirgie__ deactivated for now as it broke ajax forms - # if "apis_ampel" in settings.INSTALLED_APPS: - # from apis_ampel.helper_functions import is_ampel_active - - # if is_ampel_active(relation_class.__name__): - # self.base_columns['ampel'] = tables.TemplateColumn(template_name = "ampel/ampel_edit_template_column.html", verbose_name="Ampel") - - - super().__init__(*args, **kwargs) diff --git a/apis_core/helper_functions/EntityRelationFieldGenerator.py b/apis_core/helper_functions/EntityRelationFieldGenerator.py index 5f28e56..5274ab9 100644 --- a/apis_core/helper_functions/EntityRelationFieldGenerator.py +++ b/apis_core/helper_functions/EntityRelationFieldGenerator.py @@ -159,10 +159,10 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # Note that these methods are first defined as stumps within AbstractRelation for documentation # purposes. - relation_class.get_related_entity_classA = \ + relation_class.get_related_entity_classa = \ create_function_get_related_entity_class(entity_class_a) - relation_class.get_related_entity_classB = \ + relation_class.get_related_entity_classb = \ create_function_get_related_entity_class(entity_class_b) relation_class.get_related_entity_field_nameA = \ @@ -294,10 +294,10 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # Note that these methods are first defined as stumps within AbstractRelation for documentation # purposes. - relation_class.get_related_entity_classA = \ + relation_class.get_related_entity_classa = \ create_function_get_related_entity_class(entity_class) - relation_class.get_related_entity_classB = \ + relation_class.get_related_entity_classb = \ create_function_get_related_entity_class(entity_class) relation_class.get_related_entity_field_nameA = \ From 66a6ef05b186ea29190934e32e2975fc22e710b8 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 17:28:46 +0100 Subject: [PATCH 10/56] detail views working --- .gitignore | 1 + apis_core/apis_entities/filters.py | 8 ++++---- apis_core/apis_entities/models.py | 4 ++-- apis_core/apis_relations/models.py | 1 + apis_core/apis_relations/tables.py | 8 ++++---- .../helper_functions/EntityRelationFieldGenerator.py | 8 ++++---- 6 files changed, 16 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index ad0846d..398e674 100644 --- a/.gitignore +++ b/.gitignore @@ -166,3 +166,4 @@ tei/ tmp/ pmb_dump.sql .secret +play.ipynb diff --git a/apis_core/apis_entities/filters.py b/apis_core/apis_entities/filters.py index dcf1525..ccddcea 100644 --- a/apis_core/apis_entities/filters.py +++ b/apis_core/apis_entities/filters.py @@ -227,8 +227,8 @@ def related_entity_name_filter(self, queryset, name, value): # (e.g. for PersonWork: class Person, class Work, "related_person", "related_work") related_entity_classA = relation_class.get_related_entity_classa() related_entity_classB = relation_class.get_related_entity_classb() - related_entity_field_nameA = relation_class.get_related_entity_field_nameA() - related_entity_field_nameB = relation_class.get_related_entity_field_nameB() + related_entity_field_nameA = relation_class.get_related_entity_field_namea() + related_entity_field_nameB = relation_class.get_related_entity_field_nameb() # Within a relation class, there is two fields which relate to entities, check now which of the two # is the same as the current one. @@ -303,8 +303,8 @@ def related_relationtype_name_filter(self, queryset, name, value): related_entity_classA = relation_class.get_related_entity_classa() related_entity_classB = relation_class.get_related_entity_classb() - related_entity_field_nameA = relation_class.get_related_entity_field_nameA() - related_entity_field_nameB = relation_class.get_related_entity_field_nameB() + related_entity_field_nameA = relation_class.get_related_entity_field_namea() + related_entity_field_nameB = relation_class.get_related_entity_field_nameb() if queryset.model == related_entity_classA: diff --git a/apis_core/apis_entities/models.py b/apis_core/apis_entities/models.py index 285b069..17623d5 100644 --- a/apis_core/apis_entities/models.py +++ b/apis_core/apis_entities/models.py @@ -367,10 +367,10 @@ def get_related_relation_instances(self): q_args = Q() if relation_class.get_related_entity_classa() == self.__class__: - q_args |= Q(**{relation_class.get_related_entity_field_nameA(): self}) + q_args |= Q(**{relation_class.get_related_entity_field_namea(): self}) if relation_class.get_related_entity_classb() == self.__class__: - q_args |= Q(**{relation_class.get_related_entity_field_nameB(): self}) + q_args |= Q(**{relation_class.get_related_entity_field_nameb(): self}) queryset = relation_class.objects.filter(q_args) queryset_list.extend(list(queryset)) diff --git a/apis_core/apis_relations/models.py b/apis_core/apis_relations/models.py index 7193394..bdbff25 100644 --- a/apis_core/apis_relations/models.py +++ b/apis_core/apis_relations/models.py @@ -332,6 +332,7 @@ def get_related_entity_field_namea(cls): :return: the name of the field of the A side of the current relation class or instance E.g. PersonWork -> "related_person" """ + print(dir(cls)) return None @classmethod diff --git a/apis_core/apis_relations/tables.py b/apis_core/apis_relations/tables.py index 4825f81..789be15 100644 --- a/apis_core/apis_relations/tables.py +++ b/apis_core/apis_relations/tables.py @@ -30,8 +30,8 @@ def get_generic_relation_listview_table(relation_name): relation_class = AbstractRelation.get_relation_class_of_name(relation_name) related_entity_class_name_a = relation_class.get_related_entity_classa().__name__.lower() related_entity_class_name_b = relation_class.get_related_entity_classb().__name__.lower() - related_entity_field_name_a = relation_class.get_related_entity_field_nameA() - related_entity_field_name_b = relation_class.get_related_entity_field_nameB() + related_entity_field_name_a = relation_class.get_related_entity_field_namea() + related_entity_field_name_b = relation_class.get_related_entity_field_nameb() class GenericRelationListViewTable(tables.Table): @@ -105,8 +105,8 @@ def get_generic_relations_table(relation_class, entity_instance, detail=None): entity_class_name = entity_instance.__class__.__name__.lower() related_entity_class_name_a = relation_class.get_related_entity_classa().__name__.lower() related_entity_class_name_b = relation_class.get_related_entity_classb().__name__.lower() - related_entity_field_name_a = relation_class.get_related_entity_field_nameA() - related_entity_field_name_b = relation_class.get_related_entity_field_nameB() + related_entity_field_name_a = relation_class.get_related_entity_field_namea() + related_entity_field_name_b = relation_class.get_related_entity_field_nameb() # find out what other entity class the current entity instance in a given relation class is related to # (needed for linkg towards instances of related entities) diff --git a/apis_core/helper_functions/EntityRelationFieldGenerator.py b/apis_core/helper_functions/EntityRelationFieldGenerator.py index 5274ab9..de74aa8 100644 --- a/apis_core/helper_functions/EntityRelationFieldGenerator.py +++ b/apis_core/helper_functions/EntityRelationFieldGenerator.py @@ -165,10 +165,10 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): relation_class.get_related_entity_classb = \ create_function_get_related_entity_class(entity_class_b) - relation_class.get_related_entity_field_nameA = \ + relation_class.get_related_entity_field_namea = \ create_function_get_related_entity_field_name(relation_field_name_a) - relation_class.get_related_entity_field_nameB = \ + relation_class.get_related_entity_field_nameb = \ create_function_get_related_entity_field_name(relation_field_name_b) relation_class.add_relation_class_of_entity_class(entity_class_a) @@ -300,10 +300,10 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): relation_class.get_related_entity_classb = \ create_function_get_related_entity_class(entity_class) - relation_class.get_related_entity_field_nameA = \ + relation_class.get_related_entity_field_namea = \ create_function_get_related_entity_field_name(relation_field_name_a) - relation_class.get_related_entity_field_nameB = \ + relation_class.get_related_entity_field_nameb = \ create_function_get_related_entity_field_name(relation_field_name_b) relation_class.add_relation_class_of_entity_class(entity_class) From ddf561db6e877ad445b69e7d0b153aaf3f9ba1bf Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 17:30:27 +0100 Subject: [PATCH 11/56] more case things --- .../templates/apis_entities/place_create.html | 2 +- .../apis_relations/migrations/0002_auto_20200121_1227.py | 8 ++++---- apis_core/apis_tei/tei_utils.py | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/apis_core/apis_entities/templates/apis_entities/place_create.html b/apis_core/apis_entities/templates/apis_entities/place_create.html index 058de27..fdeb7a8 100644 --- a/apis_core/apis_entities/templates/apis_entities/place_create.html +++ b/apis_core/apis_entities/templates/apis_entities/place_create.html @@ -92,7 +92,7 @@

- + {% endfor %} diff --git a/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py b/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py index 80292d1..9a952a4 100644 --- a/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py +++ b/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py @@ -37,13 +37,13 @@ class Migration(migrations.Migration): ), migrations.AddField( model_name='placeplace', - name='related_placeA', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_placeB', to='apis_entities.Place'), + name='related_placea', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_placeb', to='apis_entities.Place'), ), migrations.AddField( model_name='placeplace', - name='related_placeB', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_placeA', to='apis_entities.Place'), + name='related_placeb', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='related_placea', to='apis_entities.Place'), ), migrations.AddField( model_name='placeplace', diff --git a/apis_core/apis_tei/tei_utils.py b/apis_core/apis_tei/tei_utils.py index 19094fe..bcf3c50 100644 --- a/apis_core/apis_tei/tei_utils.py +++ b/apis_core/apis_tei/tei_utils.py @@ -38,10 +38,10 @@ def get_part_of_relation(res): items = [] - for x in PlacePlace.objects.filter(related_placeB=res).filter(relation_type__id__in=pl_b_located_in): - items.append(x.related_placeA) - for x in PlacePlace.objects.filter(related_placeA=res).filter(relation_type__id__in=pl_a_part_of): - items.append(x.related_placeB) + for x in PlacePlace.objects.filter(related_placeb=res).filter(relation_type__id__in=pl_b_located_in): + items.append(x.related_placea) + for x in PlacePlace.objects.filter(related_placea=res).filter(relation_type__id__in=pl_a_part_of): + items.append(x.related_placeb) return list(set(items)) def get_context(res): From 914a5ed3a712d34f9681fd3fa35133c48f1ed57f Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 17:54:05 +0100 Subject: [PATCH 12/56] fix link to TEI serialisation --- .../apis_entities/detail_views/entity_detail_generic.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apis_core/apis_entities/templates/apis_entities/detail_views/entity_detail_generic.html b/apis_core/apis_entities/templates/apis_entities/detail_views/entity_detail_generic.html index 7156e49..1a1cdc5 100644 --- a/apis_core/apis_entities/templates/apis_entities/detail_views/entity_detail_generic.html +++ b/apis_core/apis_entities/templates/apis_entities/detail_views/entity_detail_generic.html @@ -91,7 +91,7 @@

- {% if entity_type != 'event' %}| TEI{% endif %} + {% if entity_type != 'event' %}| TEI{% endif %}

From 19b6fb2d4d5bbc8afbe20921e9af58ed44f40a91 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 17:55:44 +0100 Subject: [PATCH 13/56] test wf --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b582853..c4ef78a 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ lightweight APIS-PMB instance to generate TEI/XML dumps +maybe in future also with PMB CRUD included + ## cheat-sheet From cfad8af6555a4a940610b10f844fb30634fe1df3 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 17:56:46 +0100 Subject: [PATCH 14/56] minor --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4ef78a..a87656f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![flake8 Lint](https://github.com/arthur-schnitzler/pmb-service/actions/workflows/lint.yml/badge.svg)](https://github.com/arthur-schnitzler/pmb-service/actions/workflows/lint.yml) -[![Build and publish Docker image](https://github.com/arthur-schnitzler/pmb-service/actions/workflows/build-deploy.yml/badge.svg)](https://github.com/arthur-schnitzler/pmb-service/actions/workflows/build-deploy.yml) + # PMB-SERVICE From d2c85e62a711960c3e0a45463b7703da293535cc Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 20:14:05 +0100 Subject: [PATCH 15/56] styling (wip) --- dumper/templates/dumper/index.html | 120 ++++------ pmb/settings.py | 3 + pmb/urls.py | 4 +- static/css/style.css | 80 +++++++ static/img/project-logo.svg | 354 +++++++++++++++++++++++++++++ static/img/title-img.jpg | Bin 0 -> 705562 bytes templates/base.html | 36 +-- templates/partials/footer.html | 5 + templates/partials/head.html | 17 ++ templates/partials/navbar.html | 48 ++++ 10 files changed, 578 insertions(+), 89 deletions(-) create mode 100644 static/css/style.css create mode 100644 static/img/project-logo.svg create mode 100644 static/img/title-img.jpg create mode 100644 templates/partials/footer.html create mode 100644 templates/partials/head.html create mode 100644 templates/partials/navbar.html diff --git a/dumper/templates/dumper/index.html b/dumper/templates/dumper/index.html index a290018..ababd8e 100644 --- a/dumper/templates/dumper/index.html +++ b/dumper/templates/dumper/index.html @@ -1,82 +1,52 @@ {% extends "base.html" %} {% load static %} {% block content %} -
-
-
-
-
-

PMB Entity Service

-

lightweight APIS-PMB instance to generate TEI/XML dumps

-
- - -
- + +
+
+
+

+ + + +

+

Personen

+

Some representative placeholder content for the three columns of text below the carousel. This is the first column.

+
+ +
+

+ + + +

+

Orte

+

Some representative placeholder content for the three columns of text below the carousel. This is the first column.

+
+ +
+

+ + + +

+

Werke

+

Some representative placeholder content for the three columns of text below the carousel. This is the first column.

+
+ +
+
+ {% endblock %} \ No newline at end of file diff --git a/pmb/settings.py b/pmb/settings.py index 9138850..2def74f 100644 --- a/pmb/settings.py +++ b/pmb/settings.py @@ -124,6 +124,9 @@ MEDIA_ROOT = os.path.join(BASE_DIR, "media/") MEDIA_URL = "media/" +STATICFILES_DIRS = [ + BASE_DIR / "static", +] # Internationalization # https://docs.djangoproject.com/en/3.2/topics/i18n/ diff --git a/pmb/urls.py b/pmb/urls.py index 05ef52f..3417cfa 100644 --- a/pmb/urls.py +++ b/pmb/urls.py @@ -1,5 +1,7 @@ from django.contrib import admin from django.urls import path, include +from django.conf import settings +from django.conf.urls.static import static from apis_core.apis_entities.api_views import GetEntityGeneric @@ -10,4 +12,4 @@ path("admin/", admin.site.urls), path("arche/", include("archemd.urls")), path("", include("dumper.urls")), -] +] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..5f315c3 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,80 @@ +/* GLOBAL STYLES +-------------------------------------------------- */ +/* Padding below the footer and lighter body text */ + +body { + color: #5a5a5a; +} + + +/* CUSTOMIZE THE CAROUSEL + -------------------------------------------------- */ +#myCarousel { + background-image: url('/static/img/title-img.jpg'); +} + +/* Carousel base class */ +.carousel { + margin-bottom: 4rem; +} + +/* Since positioning the image, we need to help out the caption */ +.carousel-caption { + bottom: 3rem; + z-index: 10; +} + +/* Declare heights because of positioning of img element */ +.carousel-item { + height: 32rem; +} + +.carousel-item>img { + position: absolute; + top: 0; + left: 0; + min-width: 100%; + height: 32rem; +} + +.marketing .col-lg-4 { + margin-bottom: 1.5rem; + text-align: center; +} + +.marketing h2 { + font-weight: 400; +} + +/* rtl:begin:ignore */ +.marketing .col-lg-4 p { + margin-right: .75rem; + margin-left: .75rem; +} + + + +.icon-flex, +.icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.icon-wrapper { + border-radius: 50%; + overflow: hidden; + border: 1px solid red; + font-size: 5rem; + width: 8rem; + height: 8rem; +} + +.icon-wrapper .bi { + color: blue; +} + +.bi-people { + font-size: 120px; + color: #ad3f58 +} \ No newline at end of file diff --git a/static/img/project-logo.svg b/static/img/project-logo.svg new file mode 100644 index 0000000..9cc2598 --- /dev/null +++ b/static/img/project-logo.svg @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/title-img.jpg b/static/img/title-img.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f83d4255861e78b379a25735cfc2485164bf762 GIT binary patch literal 705562 zcmeFZWmH?=);=2C-95OwJHcBD1PSgC+@(0h-MvWB7Kf5jph4OOhf*|X0|kmxiWewt zZ+_>0-uK)w?)`AT-?R1@*)v&d&As>BYp?apXU?6!D}TQN$RBGz(gt8)U;uQ{8{qF2 zAX6*M!xaF~*9Qmy004Xd4hAIv3oT)wHvk4B0Owya0Pq-t>3?No48DK2!2|$OJOJ4L zZexYs|5MPK|LOhjJytcwe>7HO{!eRi&T6dxkqP1dbo;wSuKi2D=;G%D z6>;|S5e;+n7Zn!~69p)#hWR@>dqIPNPEa=wUuBLTeeXGd9xlop=F<9N`u-YFcMsi& zK&VNCfvIzZm$SSJhpGxtDNG^E$KMAU>XyQ|9>hNrr}oiiApv_yxL&ip$H(i;78z zN=OK!TL=e*`vyCP3Ht_d{*MMtXpnQDhkvk#pD*wqjgC%!A;HQV=p+B1Q}XfuU$y_Q z*Zw~ZeVovj{U0NF_y$7*L;apYeg9=CAE=9mqmzg4zs&Vd7k>qP^aZ*&20Lmx21AuO zB*esJgvI2A#idQf#T2Av6~yGMIDlxS3c-$U${d{f>f8#E^6DTdNil5+VRewKrm&Q_ zmMmJ55f|15Y0AlKYRXH3BsHQE%09p{Qu7a|G{ifUo=n)MI$o6-*tcnK!}x{mz`ONmy1_IR7hIgPgh-8 zSv}R!73^1&)%5B`R(WaX*x!}T{`2>x*~h; z?J4j1Pu>4#=>vcQpAb&YiG{%dz@)&yqQLk&3}E;NA^!uC|5Gq9v9NK_RjT9w3@j{6 zY-}8COiT=HOaLARfPx)U9AxB(6%bd0O_|rpA@OnROxdGl!z{@r?8Ocowhxack9toBYDl*^r7QO_ zU)eru+BVreVvjmiO=(HVNnB}`vzvuYJ*lnETt;9?B6UtuSBOww<*FYjrR?xt&rdaA zzUL*U)rx*@_;SfZgw49mZ`B3ci$Lb;32&`{RR24OC{i|SmVUpPo*^+Ad=KN?4TBjn zHu}(!edxQbel~5IveJ(2-k5_T`8{uF3ZeEK_(POU4|Z9Aetn8u>J2FqxFqHnob3tm z?G20J+XgdKhzy<5Y9|f_^6^?eacqy*k-}Y;)%7?g+^OLEo|TSoy|7A5tlsy8J!O3r zZ|b~4Rg_{RGikr*`u2iMvKt+p5+dBt$~-eCe2Hb;{Hd1m|>UPJB-K<$qe$ z-#u~Eei=VO?ZXssa@KZAP1;N_>ReSFC)#3yK`wxMS6-WJxSi7QHa3OlvHo%e36ud*H~41Yc6k%1)?jcj}# z7~BNPP+3Q@a&I3j@!WLNuqP9Rf>>Kf9qGL$7%CLIZ9QsY3pl(JMD7h;I6%qDMb3R} zA!-v(W%m*|^y91Jr189_=TGnYxs$rZ;+#85LJUg_cC)y(Ii_ioNEB1M5AZq)f7Sn} zF`17P_z_FaqiBWHGgfXh9N@+^$tsmeGWy$l3IFU#CHm9H6p0btR zC1p9GWN2=XC!#jx+)s^36uAUghkv)CT5KndM~Bt5iZ`nr$*Wh7FUE# zi)^C7m-D08KcIU-NEXJMQ?D$x5Hi~6WvZ20-X8ml%MG*lQ=($M_@$5)3w7S+t2qm= z3#-srj%~WU_1Z&2@;3_73ZcU*UtqCQu~GuY*OE#r3U7F7)x?ZuU9pj-sc!J_vL8%a zhKcwhftE~D;8A&&gsutec z`M&!LC>hvt55SsoPiZ`KUs%N}jcS*&yfog#r$AYFs}qz)=T+EzUbVuuAo&61)LZjT z&!O$7@!oqyoI_Q4@$OuZKh$aA+j?;*nB4fRwO7k+?a5WIZaP>nU^zJmL zIF1g!P5RF2vT}gpy}`?k-H}}`=HZQxfqwx!2wLWv@9UqJxH}&2LtKg~UY=#zb>;t_ zD+1hixM3j*&dt8(wg{am@wewe%pyGp*lsJt^%!k3;a4ei!`Arp?v|j-+d=a8e{zLG z_LLOj{P>AZUUM)(3Wi?QIUK0y+#U%nA{B+7C1j`)qzWE~^M?WqSSRm-GHme@Qoha< zGFF(1FcGN;#(iV;)G&T(ufyB{zX<#4u|?FG$EOl7M_j@F%$m2;6jQ@$y?SF+6IY<~ z4|R8L2_I#9NXQW@`4Yyf8umL;vVl*F~~NJaXLKYhX~F~t&ds?hA$rF9I(nQz2BDB?PCbFT=2USv-$&;<(7D6E04mv$mR5<{ zh{>SnrT#ZwH?|&M%ZpWPco_GG>ORHL{Swt;R^`97{R?>9g`sTG1{Yi1e!a6U* zD4F+_3GJXIc1Z)u_rCKEqRk03glbhLmw?xWo=zG#RB( zHyH7Uv3lH@0(JeZOog1J;e`6uo$^S}M?CEitr9V!lTa(1*HPU3Od8$cke!-Vc> zC!`sZRXGDdg2{PK4Q8@qt55*@mbmODo z5{o}%_fjl>&n8URsu-_@T0%E7@9Ecxa=zM}jOp@FkHH!)sLk!z#$|0WFt@IYrjkrM zWBrI4C09nNLv~+zZC1{u#zm&V@W(Uc;7QLbJP%f)Hf%b7n&xj(C{SlLpdlZv_mk*Z zg9i0jfb1tn_J$%P@q#d}Z!89j3_=R`kWNpL$qtNp{^>E^(4Y0xNz7l$H)=AH9_qt% z+^yl&%q6_`0R?vsw9)Ioza5z+X^Yg))!m2B zsN@w67Odh7m3Yy3tD3C6%x7tnnJ;w@X+R_$1OK2>l+VV=n z$6t#S&?KJsnKp=7RZEDgRV1M8N0|qS{Y;XY(t4d>$dK`w8km9A!%Zs8f=vGCp+@iY zG_#(0)4Oqjp=%Y)ywW2@bFu9(lFzw2C-qFyqVD-%5pXK*-a{A#h{8W@sr=%TWHaQv zn@G{cX{Y-!G3}($Iq+#BW3I)9M0_!c53Pd(ExOglD0vB`4=sYghsd|BD-q*;D`#iy z9Zq{J)}dr1X9h;}Jkj{lxU~l;JiJS35g3Iu7a3vu@5(RS69}2!FeJ|4*y;OVLMB)EXtd(t3b?);d+WJ%W__m*NdvF>k{atH$6|- z)K-s*xv9a|D5UdAq}H<9j}qE%ZQ7jEzaY6m)Wou9iF#urtHDgFwPL*6Vt)9ogh7nL z;o1Qx-;$Ttof+)OQC8#*gqCIN4Y})$<-+lcsTA&TF$z6qIKI*+*{)S@ndH#PlKDv9 zY4DxK7#CrdoyQ=g*g9mCoI z#?=c8ldCstb0KPt%3pkoNkjwqsOO2jV4ipVmR^9Aa{a>2k`1tS;5i!U)SRWTEWzp6 zB&yiTMU->JNnk2Ta6!kC-vR_n(X;lFIccSvP-YTR^3(74g@Jb&7a$vVPB?A1?`d6+ zl2BQ*@GExQ4&QR_YYd(KO=$J-gC^cdeAJWMNolp+k=b!vDHpHtfPq=Y1{6ukUx2CD zB}!~aIoG94E_`}1#}-LK9$JVQbMRzsojW_U@U|)+KysCc=L@c5+cw%>?y7z?ve>kH z8TLqB`j}5?5GWtnJ@t8@BH)arB(r&hLafl(t0}&f!K{qnwXORWAch}0p9_F3W*#%E z&|`%xV%$fl2whiv(`~_*bLEnIxk}?GshW%vHzay8`|W6@fGwsl`{8(aANti z?o&cPiahWxYLwRV*?FGoTfgo3Ai*l~C|v(-@0XrRQw@YzJ@Phd;(}3MKa?fjT%ASVYCKn+7kO zO~@9bOL1dd`11l3yEpoKkybnXhETk{r7+Sy6$|etX9}*=uSP=-)T~+4$d^bUkdAa` zH?h;V{m5mEAAz;?#cqlx__cCw(ttd5rp|tX@HZn{ z7d2%1R*5`Gy#|n7 zm%9Qc*-@;MQEWW*R}jpY;UfOpbod~k%FZad3ckXR;8k_G{>2AONNNahJg7c~bxaR7 zr!q`8cnQ8NqTCBLFu41cJ{23lG8fy4(*wEtKA|C|pbi|_L1As(=z7&@j5YIT{$K!2 zzfHtiC~HeYVUJR~i`e#9hz&)>~(}%4n@A>&mtu&Y#zM7l%%wg2H z<7Ju7z^-l$=(o+TF*i-k>kwgnoDdUv#C0kn)(Z*AE&kR*Ygnsc;~o0~mK&@|{A)4- z5lsoWQS&yKqL~%Mroi!Xn0!8mH+gPDc3vgT-o(QlzF&JkC=h2)+Tb{tv5R)Tc(;s9 z2r*VoJ$)*GG3hFb&B}B3I*0()ob(0;yNRPg!xY|!SlrU0s{_38F_tCwFR&PFM5=%r z3Nu)3^uU2bD&{d+(T?iRW?#qf@{k|rUu0Aq9+p$zxIwieP=<&`bJnBG_fVfXk~^U0 z)34{ATV_`~M2G%ii|5!3@3}8V=63X2yRg>{;@81wi+JA*1ZTB2@P2t*2D_Bpi>D_o+Z$pFm zecOZjTmYM(6tRs$k|7eK7hgmE9Hb7!5T*<8ei}}z7X{wfYy1T)KfLuRMhG@gA?9qQ zjp>Qz`=k6w!_;&|1`CWa%EuG8{SVu#_%O2S1jw?wo4Z8)s6JXxK~C>Gl%oU=xWdDm z*WV#9p`?vnGZF`Dt$HQ1X4j`h~eKB=F0U#a+$30ZvH4L4rJrkltne|o>rr=ZXUgN@k z=Doc_WNuBpO()BP@D#9TXTB`)qxlQyGh1($3{juW>p4qtQ&-1oGmZh;3zDIX<|t0E zO@}v-T6ypB5i_LK9(YrwI^U}rx+ z8 z+yY^))6s$&9BjWp&pJ({3TVv$!=d23N3Ph3j6f=K5q6iH@31ZmMVH5q#7<(s2fXz+ zx}O~q;~A#dg1rlPh%EtmgO|Y~3ib}U*l~6IDf5@X6sbUhd8(Ts8yby-(oKBpXKShU zk4`#@);4KbCz9(&z83-aekMXzI|d=xZ_pq*wR@l_#!7;OO>z$pieFqM28&XZJB9gb zYJ-jHr{A?Og!e;T@a7}A&v}CxGb$ct8~46x$WT)XS&atP zvU`XxE(=cuaRj{3o3gy5vwOk*7qGyI>)l^v-FmeQ?C)sV;-fzEcwc_4e%CKXqE9*4 zfmyRlfhii2T&Wq{g?3N#)-B8sEKo}ayS3H;Ip;Jz%^O=r&U(ItZ|A)W~(mSoYL2qV7ZK7yXU*%!cVq2YQ&>p zgfjII9s%sPnM5>y=awAQubK(eIkh@JttI84_`U{!7vt$j5w#>@8}h2RKSO=H zW%Ni|VJyIu%?RJqU%O9)qdBSg{e%g|LDnzd=2C-55otOBq%9=SI0#99+y)>K5Oiu6 z^%9s8nz*I$et8;KQCq?nU%=Ezv&WK)P4;1cnT$9rVOzy0!s$4R{m6k1xiz<2Tc+2i zPVBEF%`6_T>vU_E?%^Zl0+3OY-D|twpas3HG}fvV&!U=_g<~y#@Zg}hzfu>^gV*J) zf%OJno#jmW(V8Q(3P)WPs_E(d2mP|P!+Vp?!&r91+UkY?9vtP>bkdp{75F)#e1R`g>W6);9}B-H;riXDPmvwLON?D`># zA`Y#ejXL(mDDw6X-KT3~zp%-3h?Z$_qxcsAO!&})j(X#^sjxq6Qi2EqVJd)48B8^P zJts*%g&S?jy_KB*aGLP>GdNj-A=-d0dCN%Xk!z({lp)@XUilt*)TlQwD@XbX>tkBb z!In9(uW||a8}$9-b7Sj}`D}Iyf7-VpN69mVYZ5i$JU^4h9=Zx#>C1uJ^SXUO`nI9i z*}0Aa+2xKw%vQ1+5G7B^JuaT~^Ic-CVSdY(Xyq%s+H-`piz<4FkKboBr}w5zTwK_YJV(@K!(Ii!EgbPy@$5;}w(+{nyTWx2 zv5C~r!~CC3xM7|QRF~--Wn35yLK4{cDU_BHKL9n-O!RuY9L*R{IgX@aDJ^Wq%LRC5 zRF1>~nLUp_k^`bo;^j*|QF9fXORgYndr<1X4vn$mYJ87|x^zOY5=vMn_r={2*ovA{ z2aUiIce!9dzkw#7P-s6C$3KAfeXw)>?Z9mQlc9$>7a(y;X9fq?^!7IzpO%b3%TICi zru4(1T2D0otmqA)sHy$$*-(-=)_mt#xV0(3PZ(alE4KtZ30mYmSIoFigSPBip?zZ7ajc=v^nOCV7>aIaAz^@}pl?JvZ6)5vBtn>LJ+OoPu?x zPR>yRv(w>JF4Dyeo&AE6?T+ld><$><<@376!J(Iu+1A>NY3q@=-jO`8I!E+y z3034D{M>|M?|0K*039cJtnF7&SN%qGVD8U>Exih~OO&3usot_Ea;jWx<1S^I_0i`v zK7T9W&x)n;)1+t)-^_?FbTH!A&&qxY9xCSo3=za@klR%BL~JC)+&RQ0ofv9*dJn<> zzTnN*i0U!W2oUJ?H6sb(^Z{FEexKI+)cF&fS53Cc@EPj{RC^haUgLH#*>m=}F+sG( zIhdRYKSSLNK#VUe+FY}{Av%Gt`f^(nIMhq~hh`A_w2gfz1lDuh4R(3EVsQA5$=2AW z#4r8aB_)3*43sZ&v0Svj?LUnZ!O(G1WTHnw;j`EY4QFCa^KF65j#M=x_SQ{;PJ8rS zqCT${eKJT7(SA8rZ_4=S7w;WEd&M8*K82XkIrE~|`obRem)xh5ikq@Y9~kC-TG#dn z*<4RbD}+#)kI;)lZIcp63bAEJ_T(gsVu0MA8&`y+>AmWG8k6uj%~>bM@9eF>tc=_O zQg2?D`q12_dN^~IO>ku}#K(WN)~j(u-yfSlXkslsG4GRBXEVm&j%cD2eQNm2tYVwj zT~;EE-O_3WZmVK|r}s@v&+zriG3uxpv(~TqUyM?oSP@G$URDYe(#k|cHXSzC{5TI! zfx)m>i`% zH{~yrcf9#u7w6G|oY4`1_Or3zN?907NI%f`7Xw^7ARH7;lF8XQto1t1+d7ITP=cE! zx$W&@@+rB^&`Ak{^J&=wyz%Q-yp!0OmOUDpD%o*nf<)pa1$#cF&yRZhtNY)js(Xsb zFA&nP$RZ{Rl6wmo*>0R;-2Vbj?r9kIFcbIWfy*Oms=1{AB`aE=K0DvHrI{#gOBhMZV!{rhrY`i+Bwc{Vft5{nl7{(Nc9!vZtM(gjQ{afVMcqk8?dG^b+>`^Z5Q+ zv~gLMfFs0aBR#Auk3D?_h&Kr9uee9ZBjE6x@U(7OL|5O?NxxJ3)Z9?h;ZT~nxvkn? zfVr~^>5NI|dug1S2AJYj6=~!0LsgiGQn${G2H#1zohj{7aTh-m3&+vB&1HNg#LO@7 z6DiNQmn*7JS3r1~@t$qgU9-4Rh5Pt)td)FQl);ljV{(JeWP~8LWD2Rofyby{hy^~H zfXWP_2-d^`O0Izw_oA1oQ3-9v8=kgx zUGFWT8y$yb_$*E3LgyygZTyor3=${mC;e(tY_Kz!N|j=-OOMnnlT#|sU806dv$uZ> z*BP(S)3X4|#AJ7l`A)6UsK&+pPUF5a#8&gqxfHdhk1N>qka^q|O%}&z>&|0*x0DQ}v zXGpQ8XK}lQ=?s%rcgXA9hW>PY3N)W*XO-U&Y6>Kfr31xsk}9^)X4&GD>j{jE6|Ib` zMFeirK@~`-M1}mOJp=FQL0D9d6p=0Gm{Ftas7FD2y$OWj*4Og1iA2Mm+yr=PhsiPE zDqC1wsSi?Fh2^w{`vT4HlCQ{jkJEqQLu%a=j&iIwuLLv`Pq{`fWwzO@YFD{?vB7#NI>vlfKGDlzLX{hBFblCUYn3F4i7 z7LbVEsVzX4Bu&1(8e!|X-gJ?ZJXLbC&cbwmWiNouD?2Vyw7>!vD1 z*;kQn^|rm3BrgMekC8+57{!xcf|_Y4YM^NUhY!QrQLB>*DjIgsrL+=VSo~=fJJ6r! ztg6`buIHlsQqT4$NIZ3wzySd0UN-Gz_{C@Yhb{_8FsoFPf5ryWrB%pw|IzxZI@g~U zhKunP2K#LPQ@uTCas|XF&V*uO0a=k{WT;QyInhvevem1)1pMhb$krRk+QRA_JOC8m z*xYWid+(Omr)r*b4*PLeubH;68bm{CJNTbLWCbh(gL5EMZc)Oxyv~E>FVdeUdiD`E zv2SJF7%jgj!`iB}x>Jw2hg`?s)Ueo{fP#LyJqQ{ok&ST1iLdGo8? z*6>DrXUs@0>Eu*4>ioZeck?#P8QK(YUhW;OsV+U)!rJ;6l?u-_knVAzV>Mp|-##6a zVql~A5HpbjZ@oZ2KsB!Wm+Hjp#TsoSA2TNVK5{U;eomW+wf8J-XZ2C?v$bR)kQy7% z1^CVrw8|R8`>XM@KO0PI3-jk?%s0_qRn6qExwqOGsW03q5ongoCaYc!{K5TsC=74Z zhY#n46?k3Wk$KJHSBkjw3dOPj0vX(oIydMtqQ!PNz6>U zaj;d|In}V>%|8DWM8Fou`XnfEBjzY&GuY^AbP^!VgXbj`O? zviG8DQoBaYL7K&68A&FtoVU9ZV#<5IIEJz})byPM@-SZTOf+1Sx>x2#ZqPuUjhQod z$eJi#n5}8m01W5N98a{<$YRES)K@zTUu#DWp5;|n2z=eCK#^w+P%B27b*IqTyHyu(D~>tRxiGpvY37%9S-cZ03ivIO)II;x=9n!z^IDZY zTDiD4(Eb26Mu7~ej^g+wti!kR7BS0~ozPqtb<#Dz0yTdgijGTy?TdCn?R}QIv%;j! zRzaz17sa118ah@@ymdl&JEXNA0Y2cgT81Bsnqgj5Nj`|e#%^n-I#(YT?axRZqC#8Z zSs%7s{NMX;P!EssBEg=N%EH#}(kuGET%)o~;^DFI7q!hw!rrG|)V zCQ-7#fY(j^T_tw&gZ7z?kWpcw#>>VQ@kdtb3{O@8rDm2ml!H|X)kcU**-!l{tZ~EJ z0Pn#z_GDS(md88!lf5@!8;%^pYM}hJK`MtO=BUx#NgXd2HP)17e#v@s2q>Ft9#jIq zeNe;EG&nxVXPnwO-^nnw1n$}5T{X;^S*c6T(-2&ryw&1?$6}yp4$o{ zB|qrUu>Zq@LeDDRgz>WVwh06~eTXK-3YW7sn);}NOY0|MlQ6xvh|q)5`!!b4RX;Dl zNVjpL>0A2uk6Q~vbyJ2@gDpKvN5O8UPc7*h%U>1>i6SMZR$de*r;N@Qb3O^KZz}H@J4jja5nHe*vBX=}cOuXS7Y7vhcH11yS>aj;UdH zGB>SgM$2l-i>BOpHdtX*$`(f2X)D|F1{8?C(hY?ldL`B#{t@!R-iZZ|YKYVmsGKPT z**f&72gPK}j=T$1$7jfKVaCHO^U+sG(xT45Xg)wH?`;WqTW#UxjGXghO@2H&>F04# zKi(Gn3*e=!yRzv6W=5ME&^+5|TRnTX@wok@@%};K;fnBux1+V?;MCAo*j~bJV}XAA zz}HKZnk&7q&s>6r=TXUVwl1scJpu#!^%2jcn_`gZhW`9M#xG!zt6!kDxrngo!jQDa z>R?NoHtS;1<%1#9^x4#(+JtG#z%$qakzGeo$s4E1_-G>(xj5;>Gr;yf;0_ntMg-iEp+I>ca~?5m817i@?+PH$k){iA>J$ z?De<%gr6icvvo0TG*B$9q8>1&-NXg_7~81j%<5zpiy;+AAXdrzO9Jd|KUnSzqXY?N z=t6Cd$pgoHuB^{#of$#I^WiQJ3Hsn?-Yk7M^jm}fl_ou>zip|6%8U#D*- z%PePHsQ>KGza%B~@fOSq2riIhlOU$0bw6!Mc15A=4A5Y*nsO_@rXwlC3ZMjTyH%=2Ll=gEg(!^E|AiWwhrm zBVRxLQl8Di)O9jtl-i62#48Z-7)8x^M4cRw2PTO?Bp)B3$wRQmoy8m5u-gj8-Vipi zF5vE!RvmKD4@N*T?e$p`A4e|-mV5zTnxU*VBjB2ps4ZctJyMSlS-kb-wy#I@`;nPr zW7@muR2tp!ZKMO+Wl>sSTdXgfT%AQ$^1v+mKM>zXw`igjybc$6P_^j7m%WPr)79$xgF+9 zBeiI;inw9T?SCPgv0FW>YKrE`Yo=EXqQQCMG2=`E@!apb3R%$nO4bw1`KhDio{)=v z=@P4Kn!Fk4Bi!%Gg%mrT2BAy>ZcISbPmtu~dY!hk8R!$I zhCvOs!^(?EGc{HxH9Xh?$vV;A?F;$#H+sb|Qaj$vu%b%LuaH2}BVp`1X4i>>)RY$L zeI#)EcOJmIFU)y&XTe$CM*VQ8an7PqiQ0UHMHI$3CgzqU%4M}IdWtSH=_Yn>Z5XvmZrR#etJS@&EII7lrH)q+_~3OdIeBvaVz zyZ8jAzexQ=1Jy!CNftN*i{KVZ#9e%Q;B#^LfspRbo-@>QvJ?@LhXyu&*7G10K)zBc#C% zk0G*y_YWw>$Xn!#LbX))xYz3_Z4We~GyM6^X2>Fl$lxAt6*tE+W0y!tC8ccY-SCZ0 zpaXHBrqNz`?|W{YQvATBOd(ai1X;*Kb*xV~g5NBG>WQuY&eCGu9vjV$VASJ>I*yk3 z;}Kg|*th(nm#xo5*$@$&m(IaV*N|yj_W*%<&?#*HjL&Cs9RB@J#Pb1e=Z7Lw*Se#3 zBbBC7k}6HY{0n7{#k~&UBY7-gQK~mM&2iHaT0Fbsofe^`w|&CHR*@p5 zqis`*28nfVM{2dDb%EN;+Cny^>FJI5b0a;vBAj3d1*LA@1bv@D*Q9{+3mr%u&)^?iUU7_2l%wQ0~b%nOTcY zBIjX(FU_>;;$2GymmkBV)bK_<~pD|x;tAQm}q z2f=2+x=|~MsM6pURgL5Hp>`clWOR+}-6X`r4z~xt?8-huoiKvU8dvweEUxr1je@iA z(ZrC{-~nB~$|N4HMY%8&-ZTD;UA66skNNRTqr&i{gilQB^=~(LZfykHW`?jRGuN{R zBLbgnQ2zx0mn%f*{w!P^jP=wUy3yzkIa(mm-rRm54NYGA_?w=Zkh zbppc#JyLlS+9;v;dpLT&USYBfG%Mv(jvXRmQn&f+M?_uX^IgVzur+jY-DlA8#1TYA zDg(!J`hm_k=(|gSam0~sD>nYhg5*l3avzkzx2mf zQsBj*#qWoceKkL32y7+Q3N_~9WLzTJ_R?*CJZYR}&j?i?&b`Wni0o_j7jlaHruLLBu${UbK_jBuq z3dpK}?=skKtjn<0jk7gyQib#bwQ$$Db94f#>v8JO}R zF6lVXD=!+E{K6b8qo=$*e&1aTBQP1F7EEza^83i)PF_5+q==c;sXjN8(+-uqD zruJennUk^9F`&ORWBF;fZu`a7|Lj3*!)bxJq+aYp_K_@x!sxATB(18@DpO&ouD5|H z*mCP#%YBH~^rD0Qk1*Jv6ECL=#Rp;p_w0n*z^e)Iw>3B-j(fB5$)S#ltJ*=IMY>K6 zF#3hIBM>+#!{^~}fU1GSp{HvEFph*$R*iiHA6N4g?yq{+F}@#5=Pvl6mAl5%z>$3- zQBl%XjCj;6Smi)4!Q`#vsw+mA0ORTrSI<$>hubXNQ3~lp z|CIog#m7MIu)lyA>$P=}!hnxh*pFWgkUL@B7;Qc}d9#l@dckg}tng98idRgm6XKNn zNM_@h<~A2&LN;ly9p0=;$=yKNAoxf!>_CwJUWwmy(TY6^!-eJCU%sb2pd>lq{#auIc#x)U?uG1D~R2 z2<4L2%K%>x-|eOr(j(1{{W`4wYJ#5lK+Wspx`2|wQ&YBEI5N2{9G>|zlipMcVWZdET$&UltZcyi~D837Qz!q9qswt zZcEq8$Y?aCOxU0$&Jz(~i{WuC9LJwD7!V^_limt~dq8N`qRR%YRd7QF_#H2#ZgijS zTkky&D?1(XDYJp&K=EPI_{HGV^xZVrV&h0wG2&EGcCX$pxLK%EE5II(;)VJV9|9`7Q{v$O5Wr)Ry(43mte6X{O(!Ohx_WmSjZ~z z6L&{$)K^sQU_>Gj@kkxPv!WYydYST&T_UTJeKg2ofMz25u;yH!7S0n zm`p9usHQ+hFJZNUokPjz;#Y5E3<}Pz~j$+RH_G z456wa1AcTxI2%$h>sstBl=yu)KDM)|D}5zNp8A)cQ2Pb3njlBQKMb0W81EfLsbKGr zJ%$Fp@evK}hf#nUpF)U}^e=YaV0D}tQ{XYoPjOOvVU=Ennp(w9q=`qghr7awraL|1 zaBo$c3p&_@=McXc4Dla}M5y`{AX}mKX<6F`5XO;aRU!NajUSr#u)aYkEd1 zk?{=ounC|Y*b<$7(uZi>+R+9Vlg&=zKRLpwBa*gal!4Ew*#96ZDJ{URV+l6KwW6~? zlm0k(6MGzO#Z7m<7AJ4%v*wxASev^$;IYH64;r0o=ey8(*e}tbGYZS>%$#lJr=B5=jGFV#I>cc^LK)2o z`Bsy)S#-#=t~)u?glKfcol)uGu?I3bf}c807gl8TK#*vpWuX<`Sk1wm$9(%>cs~22 zBhOZIQP*B?^e%@`=y;Fmpp}7pj)BDk$A~;aiA8@D%R=yID$t%S!M-4s=*Hfv;1T&c zKjfW8j}{h3T#_jSZ`YUFmb3@Z+s4F|XmdaOzkt1$G}j(tih_yN^e6c+0Vuab zHPo=SMn2e-fhr#u9m(fim89WA9<|A$5x{ypIWVYl)uXk|ZoymyjecrrDv(_v5cTD; z8ZtVD-c$SC-k@88XYa@5#g~iCa|OzfKZVXOnk(-cMbI8vMc&kp?8g}z-m%!BCP0-f z8%OocvT8fr=p_LlnYinH+fDQ`8O<=Yf3v*UxJqc+_OpU?PcHX&OeIHcPfjCR;nmu< zhP9C`ezlDNLpTyUJ#Jq8GYw_>{R87)z|;_pVt8lmQOFoF>Icc#t8{(o5W7DtPOk-M z6<0w)=wy_RK@)i$A7^;Hhx-lqWL?<$3xAdri1W5+|J=rqm-racZ5OXrP8?(}I($w> zm1flYt#SJ=Ap1?xBO|P`TI%rJgU0r$^{ofJJNHIwg$^nS6sf?gpP=gxnVKlZ@E=gT zsYh(rNzQ-zVb!h}-t6H)Gi8GX(S0-I%0px7VtClhaX)yV8D%(tS* zh3RbR%^H~#vLEXlMpxJ>6HgUlB??9ND0l$m<5oF&@>Fz4up>Z40od$)Qw$Sdw zyCSmb$PJ-v1pOA41e(dlcMyH;&G(fqb@1R@v>QH92;^YR*u0SCNR;q>0)u37E|~fN z`-^@djp+wGXJunzIff91aS=44qlB((mXW@P(-8afh@!-P6Qgh_KKUe-X#t;KO7~ca zorPBL8$`AL#KCe$&eEykJNd|fe2v*zZlYlLAn#6CyQ-1uJB=T&sGj!Q;s9ua-nM4n zYX%wk!71&xLzx^g5lj6jH37V>J#KO&RaJE{s02jJyNlDtI1^T5q4kt=Ri|Bs^7w z;({o!3?BD-S^a7<5?0Ct3ZvioqM%+6fDan)ETIVw!I*NbMGl9ALI_U_p0iZaP&Qe~ zw2Jv@pVSUyD8~eyk2=O{uYou}N4G=(PN^k1xhUpWavBsYw0>gpE!m)4ds+ zJHLZDjFhCJz&}lvp)u(!66i$5kcC*a?Rk5_vaT=W>AxKAy2?+I%RKY>g^6;Kx3jr{ z@=;mK;RO|qa^_pTt~sKGxTpPJ46!U!3F?!s0%V!^$ymt4_|HN}*+vXUAg`uU{>W1N zF?qSX)Er!drTnh??5v-v>bJUf>wt|24mB=7E{&)W^ZQ%m$50fm0};NRD4PY=IDI)P zqW8<=-YA7;`qijxZtdDVFjNC+JU&BMjg=BC9=Xe4)K}ZaKK^trnh+gyNe9(O$s@!2 zd5Ht$5bB3jt3~R4%PsPcGSoAtDYkBsYnGjTj ziITh6Pk5B)D0C1ZQ1nZx)aRfEPLV;IoWszs0nf%DTUyZpOWw~P;M3BC!xR!*MgoMs zKO$dwQ{Epyin$8l1j(tV$)A*smv0cS9D)`p4gUiGi zx=!EWhZ8qNyJr<3b7GeT*cB)hxuiW{@vDAnkI=2k1#o{FH(ezT6?dGl^J|bMP@Tje zmJhXTuhHci)ok`=yiM9Z|6-+kfh7wX8wpDoRt%dY*a4Ws<}5eAmzXl5$M z0w3^Khhg$pR$=Y0#_|42^4kYEs7N^#$~eOjU7i|Vt<97nYGeL-T1+~SPxdM}fR!!j zPvJqwZ6mQ32WQz)==7Gb*h8*^$$E%ohA`O?byg@LKI*&RUf9~h7h6WUg_cSFf#1vH z=QQEBNJ=JJQ-6Mkw(MS$+S>d2D+I1neXUTiPBbMGUpkVeOfP9OWwa`zwL?Z384k-3 z+%%+`t}1>gZW0Q*v6rJo1vlhC1j(YLH6?hz(pfBLx0}z zpWw2LvNt&YfNY~#g_I0SHVKh|M0DWn#F?llD#Bfrh;}tRD}-Y5GNjN@-`u|Z0QRB$ zP0KabsdQy{Hjy< ze{pmceocPw8z0@>-Q5k+4I(|dL^`A=ARtJ0hk(EcVGJZD3Je(1Fr-Vwp+i7QK9rP* zzvuh=3-;`Fp65R2T=#XoZ^q-M@^J;nhGo|OOzTN_=iUlSN0S`EFkMDNK!8=!yD7$o zQJeb_;|NB5Y`WetdaT5~EAZv1*%x-6&@)smH*h4+K~uBJjxU5Yu>JHhQ3_Sm*}mhY zc!NJHcLKVAJN3x5!3P2k3eu{@>5LpeW9Rt_{urhf1V!}j4?>j8wieu(Nk@WWVn z77zxWw!zh%5$5L*LR1l!*mfcTrj^4I=vQ&Tm&H$Gu-JH2hxYZoo z?*(gNu3R)DfT5atKg1!O*w*Og znsmK%Wb}SHc??hIqQP4aVIy&qeXE^&N8=7E_WV;3iIZe=%lRIa=W!)({(($JQ$E?5 z1(zc?63Dp9VtJ2j@BOl1a<#U8DxpC}D{@qFEN|%JW%zG&FCVG-qIFH?kZtFdUtrqI zK3p;}@U_Q)2fn@&a5EgYl2fH2g;@q|yOLFD!vkACUm*uAwgS@=e^L>O!=xHh=~3ik zXYcc}KCKF~#&$RzzuP~#aulfi^j~p)_-^AuGD{qr)4F8{;Zu>_r({N<5fb7{!s4SW zn>!>DQngmM@uVH@V5X6EQ1nZs(4%An=NN8@5MFW&FN6()lap5I=uY$(B^BY3xK5iG zQE8gb4)jTwt0K2^<>{DaTQow1YKu+%4vHkz3np1I8W}aGjMk!&r2Bvrpu7BZ=!zQQ z**lA_>`Dq1Ih0j_CNJ{810ri=_-%C}Qw%Y%fU~^xvd-<)&M}FT33WS(YRUJOv9G!X zKs8>@NMvSbu$+PWv+p6ITc;op;#U4dg#N|}D-HHKU1y2o6iVdO-8qj=Jh#C{)!yUL zEm;0!9A;5lbH`r4L6J7<#3!ZON1Km%vRm#>FRF1-Z)%qOY^#6?RzP>~b8v$8h|Wr_ zCe}gFE1TEfA};g@5oIh{Z%_8lmp|cMy5^l&yWm#DqWm9MS-R?}MmV*nMtNo?bwg6u ziOd+ZKfiKK(D%MbJL<1ek$f$B;`(&P-=<{m&0ydtoKI(A<}q`x2Z7)3o_Y!gJM!9I_K(T9HEP>KI3!N9I3ihmNq}7=bIR!5Y!@Jaf`c>swXEEimtA^L~+#{w& z_bwL^m{J8Vy+Ph9f3|g>X_eLD+@~0FMwB*0pO6_E-ud}yBi z2F3kZ#*62kOhJevC(kgHUJ6%;z(QRmfrVO|t1CexF(f;w=4E z%%PBD7#T3&?C2yOwki|o*Uj8?z?SU9|JdV_flJVB|9#M2cDUk}Mi?&`i;`R>u5gqGj5uCjQs^j?VcbWFH$+Xyzq`*#2ziKHggh7p*cnSzDQ#GC&2`|QE449 zqQNJ#`Sstu178y4c1EP91sr$X`^0XFHw+3(Ct!cFVGMBB`jDz@PF@@%x+F9ZONU>T z52>AlQ5G*VQ(->FN11LeyN9-Gkb)&Wa>@tLCF*dP0b3`6m|21^BB=pJrTBmatr*dd z!J#~29$L4XQDWmJe4m3^&UtmITzLNIPO7I;L}_Rf9j&mdCi+pP(?K4L_r7i5B?2dE5R%!9|M-J~ zHTrN$d9UVWK!yoei&x&>{^?R$d?wENbB>WhL2@bSNVYF_p@E+`{U3xn60YVRe4OuG zJuvS3c-?A*^r$yvj-agG zOJ4PWaV0hE%TeO(^On4UC5rjs;DRW9b-oC;7?|6VXH?J!3%9oY1GMX}J=l{F&V#!D zRME**SKImVYkC*=7BW;_+?7Oo$%O7Xt4a5-lxU$-J&3;B;W8Dw=uJy-Okm??e$llh zYROao3vBP5$ED-#@tdYM^XhT*IloEDugoej42HJ1^*L8otbFhYRu>R0Wt?=^1Z6}D zKBp7L#c+i%G<>h%?IrkZ^8lxQri55<$b#ql2l@ji(O#nW1@vA>bn?)nDb^kd3*LJ@;b{V-YXTBLsle}sm(!;zPN7VDoWp)(BB0=?`O~m z5^Hb3y}sk*sq1D$-*&C-p6$J1)BIux)?Lwet`ko0(M#6%hF;_c+D-j9nWIYAc5_bI zIepEgPS~0a&wJIb9|(?i)I)HSOc5qaHGOY6KS`KG+&oU%JGl!Vmbf)twp&SdzIJ{X zRXiXTWdZ)g8>a2SG^`^G)xL$-B^Nw4JII>);M{W;I!qPEuodc8mnXBwH2ovge+&Gx zaZ-r!-6(9?Tws><;DMK~Y~GYB5Ru6$b-9xXQV`2^4^A|{5%Ddy``oDKv~E+)LRbT- zLx`qlio#$9f1sJL%(|U_AktKw=Yh4{6!}qVar;mDpK?yOXSUzHc6^;OX3xIx+p+}5 za$`7Od3gYVdN2OjjVslZ0ar%sFrIRlIQiv>T>kGp}EMJj+6ghFmk$EIPz-5|Q13qg|c09HAfr`OlG#Oapx|miGhs zsuXXL4~cyD5rlZc4*q}RmIY9q#hk%xHo9pi6BXxP=cf0EN2elus$AUK7FZTvq>5_hGc({9wq-k&2iZsw39$4zj&x=d*0$!lEN;hAz!+)H+pKO-fPJzm#(5HYMfD+Aa27D0WC0HOpUy{0;s- zXZ8?0bF#G%!Ns2H;G+D_#kz_~v)xNqPqo@FTaX3^vJWNIN^l}e;ZlYiJo)pN@x~h# zW*$BKj@peq|M~m6z2KY|(?*nQG!gel34Y<;iZ&S%s^NM7S`_Dxm^tczJt?qWF?uZD zT9Eriv*mWTjg!ojcB{daHa}CaWr_qKu7AyqJwX6_k-@i?mQwc7bv(RRT`tx_bc$L} z=EMWv5pJWR;X=ko4eI&UeS-&CV!M74Z0?>n70+iD(g(k5*ZBq6X1$>^(RDG#lS(nH zoK)qO2c#wov%YX!vP6foX^oZfdGU}-%Pgk9sz7k8 zY%yB=o>i$m`l@mR_RsVa!sW&EITgbGW)!E8k~7YKhgdubuFwk9kLO8dQTuu?E> z^1<@A&{4v76I{$Zbp#6mS@%xy;S^2yTnzWs<}`l-iO?VCIgT1M{wDqVW)6S;Sd5pJ zJ?6{drvSkn!^-CU*a2wS^k15v*toL1PuiI!|3DJXMGHIoutgjxvS}AHHyhE`6;gK- zh$n+}jg76%{>f{%(^CyTmM5qxg+%VEUa8chkiL_CQ)lTlQn5okj(r{Hr_*B7Bd5h+ zR+!j(HOBx6<8A1k=dsN#0K_>5$K(VPD_>W0-3W8{9)_XpXp6L;@Vmr)V3Q)s!%8zG zfT$zEQ4WeEi1JIY8(eMgKrCGN!HIHHn%gU>mZ7a^*tr{%8^dqc8j14#6r(UNT>DKW+gtgs{!qkvpm^f(DSY8-6AdzfQfw^9#|G=FDQ zKSntqZ@KP2-qFu-PyeKD#UqqRAz10v*G|GjU_;88923O{RlRN3e zcb&Q8bdC7z@3gVYvk3%Po;Y-~1d3_uR83RBn`Qf9eMTT3DuWF+ezp!~Sn|>&ZTBR( zutA~Ys2%d3-zlZb(->ETpi%@YlKMHyCb5gATGnBx9QFre^3kpZbD~uGyF!Q$l%Y&k zM%T!ee;`RXLHE=7Z^z}?4rGpG4g>>8@oBHjZf4Tw=AN8fTqb#POw@L%`em!9;D4Z^ zWL@H8lrhDEr6w+$APV;R!iM&*O|s|D6+BWH(o)~1v_VtPE*{^X{qfwOz(wjuAntMU z6=#@=fqFpvm`KS&uG3Zl@NN6NOS5B?JBD&>=+_(^8b)FatImOCZsWm*OviqfM41|X zGM3zlGp7Ttw?gELmj%ch2rijyy^{3nO>1S7Z=$JOE0Qnqc_sKhX}NifoQ$z^^UA?* zUNGmKTls$gsxoNVQM#_h?Z)rxd7A&BS5&r46+A zd*rXKTsOHA8{zsk;L)!N#qC2j&;1*ZCe^&xAso*GPF_Ex=pPA$sY%ffj(Bp$>uY`W z2g>AD=-~YNYV%2~j-K44_O4I2zRyZb{0ZLO=_~YqKxKX@zXTNT4-e?zg(~fx_oSdq zgOsR#AJS^(rfDOJDln(aU!Hge;$+#{3_VBed_b$UQAM|Qd4y~2_a4NxxSgXKd8|Pb z(^Kjwt&gs`L}_Xc2?}Bx!zaZdQ!rZpk!;D2AP}x3pD1Ol1`%au|8QxHX<2Y9r$6Jg zIkI~xu9#^}rPg~Wa%-zQ6rmhvG@#G|VC2a;WWxW`;Z$rT7E%e!$#fPPf({ny@R`&NqAPvNxp7}TwpW) z9>vzAP+N)VO8&i1x@dG#zj`|Gc~Z0Ic&zJ~NlK7@3{D0>ExKrfJ+9BmpvsQu2>(=M zhOvqqUj=Lu&+n*Bpi4Gcf12&w_Sdc|GXf{)3pqw-wTunx#FWEQ8r%dJvy!yHN9^9k za`gRwTKjYAo}aB$e^%9kPX3M2lom;XQ|?6*9R+;RSaiX*q*H{sx5~3VF!-#!$dgHo=|Hk4)uKkl@7O6hu07hp!2 zG_x*~;rtIYmG}=7(UL_jn{n`f!YKgG70D#o|1-<7?~#LJRLV)Ha5d)hf6VJnAD_vp zw1H1SyQ*({G_DNZ_zom>UTJ$glQ!`(f7^&2>cUGy3yb~(1sP%ud587uN!3)|w{_al zp;?{179_^u++@eRhgHtjyh2_{mNIXOdp*Mjq;5n}onGYMT19cjZREkTqoUcB&d)^x z%=KH`;E9x$IF=Vq?51h(pNEV_o^CdaC;>e`W6YDCPv@eHD?^SAv`%%bHTp|{K2TuF z2mdvEQnF$=INxFG2pCP z&Fb15Q=dSPR}gMC?~DWqPCFd)==@6UNoMc)YJO_*Q?cZ%r=;RgfolbMaeXf!*v>80 zuJA)`g);2@{e#JPk;jdpb-zZoUJlFGh)04$?uZo$M1y6#SD34)W7H_L;SHaU`f>#n zLQ{mWyyQ|uL>YGEJ+AE}|3J-S3Tx_N(BF0=4B5(AQk4@}o8h-@1X(U|e#?8dQLi=6 zaLEdR@?}-(nyZx7p8BM4?M;YBKU`5cnW77_S}n{?t0)KAy?u+*jzA&-av!0&3iwoC zMN(eb)y^Y_ew;^s&A+GT%?4#}p&8;`sy+piD;ITAxTfsRZ#}~<>Apd6k#{|`c#`y? zR0r>~+b-?|oqrE6za=P#?oJz`kA7@TI~a@(?1Lfx4dGytvTLB+NdIS+{Z@zL)7{rq z{S@F%iIW4k%#6xuBy-n#vfK>=p3G;y$q--S4eSj)j4xID93udENk6M6$xx@)Xb~JxI86b=9PsIa&ObVVyCq z5G&sm>1-l8Qyab#`Q4hzx-+X?{i5Um+tFBtYgqR+{B45lG4Si$F8f{I$e@7#B~ zCCxNMzK!U>lb z%itjr8l-?EIT$~fqLSoprlL5d(tBaXLzp!w`6E_%4oVcmH~#kNGS7Fm$!sXzD`wA% zM{>!#0C1D(e_e<&z}wI9AOj&S=L2w$svZx6!=?Odr3L?%#zV%^BRGS^?Kt?zY7mFx zA<;p-@5mTtkya9**+&!T!b*=9{{dsc?^mbT*b_Mdqp=mz()b^7p*2#6|4`zs$ zH8KnjNgmIjC9`M0j=EUg2w}egwmDkCA^gYTafpJ$D1<9W&JV2q>XVzW;1MrNe&7Pe z&hJ%balWh?YEo9*i7P2Ojh^7;K|%TjK0KhySdP=p)4DmhO@c|KkdB)T7(!T17wd)x%Cn`lF80s^p+>QVi!m)5iU!WVUPVSmsyOpSXI z-0+mLI+aJVPUMb+MYG!ent?>TY{*g47Jggp{j1ugt?SwNYNDOi@-6jM_({ z-<56rMJwid9vg3B4d3-7iM_6Je}GTg8Prm##E*I?4=tijS5b1UrckicqOb5ioD;Iy z|6a6n9lIGo&jBOMOOAH@y8I8ch#f5NpGz!R3<&;fUUu2eL|f-CrA|*N@_d?*xui4= zfc{9YTgDX=+SIr#1Bso8Q==pv_p?6?8tLltWmG1^^LY(Ynw0G#u|AM}4!3H?H~zNu ze#QGS4<{cuZZWodmm}b2XMjQxKuVeNhhHz!LTKL;?~xu(W#U$780<{91j5l-g+P~ImWP4@LuF(X}%2960?e8t{si(I?_s;_xO0(+v98$E|7xizSHRDtVa$c2x{Y-GvYnv;^!uu=IplN;vn8hFIG6)^d;R?F-ek zT`WrHCdD6DARnH2fJV0^4W|8A8Rot(xrlOhjC#4RRyGmsqU`M015p=vWVb&2g4sEW zJ^pO*GNA1fm;g+C3=Ol`(1Jg#-?>Il{h$u%Uw1PZyAB_{Zl81FnYO&*3j(HNMpB@MkD zsSs9=QMn;gbavYG%Ar+VpnQdkEB*e-mGyE-02dAZq`e~p{V*-%WR81GEEC%WBOTeW zc(ylGm~=Hm3l-vTi4^>a~{t<;Q-b8~O+0aD7bNupT`Ngxy|< z<|z^1y<3kRP7>`BDG9Aw;cUkD3YrKo+?K63$z zqzDW%UZP}TfA_(tyGc$;w@ro&+d%Q_2yL=H=hjgFYjQJzz=4$an2=MO8)ZH4ob9Ui zd5ffR(4j2fiWOobZ^z;{hNf2tY;f(SoM6{nS)(xV(nLY$ALvcwHAKVN!1jlNh7i!I zc<=87*k2k$)eB8u1$Lz(E60kM@h`!bot3rogU5P0cp4HAga4RHNIX#43F+@B_ry`L z)2c2*|61TyR~<_31qLBy4C|&0>kb3`(G+$i4kcf%FTACxcx_x zH?UHwKF?L)#nC0+;`DR30O_k7r*z)&n8-SK&HF&%2uv7MXwveD8~Nrxt%r*KR>ozeVb zdSYUiD0h!|2Mtl*$n^*RfW3j`6;qE-;wbL;oftJPc8l2evPpa2ubiVUNPE2TUe@i2 z=DMsZPXMUYw~oiq8+;iDM?sG|^t>1NPDEHNN3}&PR+1rBm%croXvBKt$#8v|)`{RC ze;-+xYkQ#hk}0=5`CI4nBLwRw?p!~%TbM*CnkZ zGBb78AOS-v1niiHiRlbEj96I?mL0hPG_=fe1z3^5djy z2RUK1b`~BDyGuHO8D*n~gV~1p&M`QEEtgzlW^ z>Zr<#0pPjXQ4`jYaY$>gCD@bF?693I#f}y#!epHUXcGc2EKp5kslqo}RE^XgDcF7N z@eQBYyu=)WXz_BljjCdO7a^$XV#nvQRAY~Lu7i(yfj;8$Ofbz`F?~8S?;InNlY^C+ zLufe4N3dVd?MOXah<)DXtzY)}hs{4wlXb7Vz}k4*4cNRcvwK}Vr$mbbHK|~jgoL%2 z64otGxmk}~$DdMRZgZ#eUSg%sN7l<@wD63Mp|ulg+?5=|HMy|$Z=|GO-$qv#0c@0=qP4=SEmdf@HJ+4SMzR}dJ6>`{C;OkphW){kl zFK#g`eg9+dnbjraQtRrX9 z0#(?g7O9mlcj=}%aVmOFs%ITCuuI5?ym=uVf5;Mflr($%X5rFw-B*(|10U{8ugCPR zWgl)P-Sk~MoNO?;X=b9)A;fhK2N2PDhp*^SSE5@6DcPgGk} zfRzKTLhp|pKucAtt-KKq#A4xrf&#mD^B2`qzcKg{ckNQSFiNK4!AhExgWg{d>_5<@ z!i@ZGC7KF{=IB+hp5af#BD3p10G#Qjdy_%mImPHo-roG(@IJd}M+hmlD8lBOPw>)r zV1-tFac$d!jE5XEFLNtmvBYRW&izeieDXQKsF1qxlv_g(n-ED#+X2iu>#?@eN0cU* zt?R^U%3YQ}?IkuhqJjr(ExdFmqWpA16@w}ImaJI3pRSGm73H`Kkdc=J(;YWu4JtP- zW4)3EnIyEqhup9I0iATf2XmdtSEmS;B`8lbr|LS4@97O@XW!^`Y(Kx^C9jR zjVDw4q!bYkQkb#7N!aKwR`7i&BtkkzvDPjUHaV-uAvAsec^OWh#?p+mX!b_84h-IZ zoZ;z3pX$_3ljM1N8z^d1p(bJRShm+totnjd4BK&n$1|<}NHj9J_swZrGzHqv`Z6;- zAXB}Dghm#4 zRqL3?bED9K$t8Z8mR>t1C~3(pRh)w86Xm*V9?^)rN^>K*gL15+SZ&5r!mMs$BH)B=jRJFwOVnkL z*dDi0m0yUaaVT0mf#XorVMkAvZU2FY@h2Zh8DDns$LYCPo>L{YUvv^K_SR61672{& z9v(`E`x#JV93}nWWQZt*7k*GvqEC!1(O+AZxAIEOyzwaJn2)_@N^Gk=RaYTvzh@$k zf5#@}qGv@SxCA-B-jsaj6!QIvMRZj0O#qMA=Aq4MREfqzbnV`IQ|~G=aUYBWvFgGY zzWW4Zv2b_G)3hw#aKXapR;;DndeM6h*^r2jll9YP7bufK{?Qq<(Jd`)yX_*^O%BMP zb~IV!UMIb`XFl~P}0uv2auF%icA^jBuA1)S1VGiCzUgx z8TT%mN2W&P%8_8ClXoI4QQeYpo%h?_lYL3!sGB!rgJrN{dT$dBMAPUC(W+K=%8JQK zVZr-7LM&$dGkA!zs~H2GS@D+3ndkmor6>HcEaq2<;|Y+V)ZkiV`K728W&(u8b2b9G z%hj@Lb0RCDAVajvTjGfLZ(&!;W2 z#vYJ~PiK}jp6b*Knz(uEJTzM2B}a`SAkE?f+5WGrYQKL$4p1Ne^XeIM_-iKpzd#%S zvabz*<{WpSvx#Ja9!}p$!5roQZZ08Vw|1QUpL(+100wrt`b(pE-^AOog}O8K;<&25 zhUbx5l;XE3>{X8K5Ur4>bP%44xTBYG5z>VkKFrck_4(K3hY{3+O^CWrI}_+el}Llq z2<@ERxD`qR@4XSfqvk3cz6A!Vir=)-HiXb8KLUltMNzY5gioW9WO-??QmSf-MaKb- zsNC0w6nL8_ja;=^Vg!|nC7gjyJZA|8HBDY#^;Oahz5E-ofa?PT!hP!T!J76KoV2;* z$*LO_E~EHJH&%Vw-FG?YW%ODE4No1ZE2NK16n{GPrWRkFccVd0ZwApd z?(o&AaAuMYrj;b4Dtzpc3?u-*_u+DWT}kbHC0ES(LOJAy%{^p7@^IZEBTf`J#&POk z3G9M5u7A?r$v%%%<9jpCdc)#ZTlai;k$=5km@GGtO^~p|s6JH0i zr*t!xyG1fYg$lX=cZh`YDO~P#tV_Yjxu21lHMO;{5qDPMn49L6zg)6X}cnuCx~{zAN!mfd3bx=YTjOny|KXLeB3GD@%U zbhE~jWy48_Zu2DZ*D}u{uM1SX*x$=H1HuU5Wtc}^Jk^3M z8kNwV9Yoltbxp}+8jqezQT(fQj>}bs((Etb)KAAy!gZ3Y^jY}r9vH^P1eVDI=ip!3 z^rCp2ck&;p@#7`tm1Fq*p=tFlS{tIy~u{ga)e7Ox@l2O*wr8_G<;8NZptJ6frg4srAJbZy%BFOO}Y5; zKC033GtFj(hz4<&#;pyGha9vgFDFK%oL5de53zY!?!ha38Emg!ilKu`P(sY7EFUkN zhbnPlG8d0xbjra1M`KA_@y$1{cAgncuU{u}x-x-M4s}KGUh=WFI!tS7tRzyVa*VFQ zOxS&P85?fG1)?O(b7jxyP!5ieU~B}oG)=0E%+lk1vIhie#%0mLOm2WqUH5BjZ{a9f zd}h+ae%$q7rkLg(sll|xO$kQ>Dh2s2sbFHJw9=cU$E0Z zrbQ`{wo5#DOZtbNiA>%udHA6)`+_3Veu;D&CAA zNZ(UiB5CB7xwD5=4-(JsNX29zWbwp2e1^al*dK!10ddo*zkeIA(~nY2x>rhEaiFF8Oln?wh=CAAmO|hLapa_Y=@uGexc^X}YV_WL2mvm9nfBju)A zqnAGG2CV1e)$Y6TQhG#7!j#M(@9E{dTpN`tVTl#~_%m%|oaW_M7Trw{?Z5|w(GEOY z7EB2$4{^svP}FwWBH;;t^HFCp^#yjLf1v6T8hhWf!YztqHi&nUwkG9cH+n8DJ>fvG zEJ=ap(LN^naEmqb8)vt;cyElj<8sCnLyv`cS2&nRhjy|KsMAXJSGF`VUx4n9f6X=p zWTa5yxw*vJn1X)dxEIcvFnERG%4)I>c5rRM?E=FdR!<@Vis;hOIjvGgAlgf&N|-Of z99#+eQ@D?l-s?WAybh}8IytsGZV_)3p_R@nu{0uR&hNbHNXH1wX&J{U2so}b_uI~i z3eoasge7qz7VWR}68k ziistV@08wC@0Vo3E)H!SHjG4AfFu^2_Mn3=Ez3TD<4{vGR~GEXkD=n63{lpclRVs% zc9Q)sgvRp9QcVupbGIt|=*j&1@ssN6=-Tx;s6QN}12tdCmIjc;+{&_KRoWZ>Yjufz zC@Q~9JbZgcy5F8kZU|vmTUlgV*9xtZ`E4O{)Vw(rKP?0&3`I?zKW@$XZ564dfm!HA zn79=x2b?9-bh~nKShP$VsdG**jc-}%^RL)lqHG}1Sw#>7QV)!5Ho8t!vO!c{KaPrM zh&viiZjK&EAcr{j%bzr}rdLXiz$|3a)Qd>Bb`ZHE7_HwJfh*$U1uv%$SK0)Cpg*-i zn$wE`8l;m3~!*nLYAh)P{na#Ew4vWDA7TBvZ}13fMOzH9T~FQYyH2&^9= zWUE(Nkm*E_3VA*_cvao38k86wxAd)$tx<>#gFm`84di#&vUX`nZ@o2&QnpWRLg3f} zV3os?b_<(Utf=7BUBnI3b$qtF123pDl_At7Qp|Sk{B|3SaQ_>Vy$=$d8)DnnK`M2P zLzp-%*Rs_`ghI69Cy|RweTR1OL|Tjl+0W}^_RN%AyLlz&>weLw;tHdI589_W<@!hM zLw3&{avP^-MzJgU-WADj$)zp*UfsEXgM7)=RcqI2253M78kCJ&FO!b@r`z%Vfu5DF zEiha$T&yL$LF7t-7enim43uy&^9re4WBkvC5N0AuG9NI*wDhwcE2GbU8rbCj^QvjvQwTrx z{(suE<)!MZj;0`m5r?jOiIf4e8;Ojq{mnvz?-g3r$3=`k*6q|NN<5rQn= zqwoW3H>AKb0FhUJRJvEbofz+KNNy}HM`m#ADISU=&vvJS2fe8l%er^vA7?6GdwBok zkSoR4yiOofH-@{F$&85Vt|Zgt`3cG zs~y}N&+Y!!>S`(ZbcUu7jd{L5L8Z|RSsBYO<3NT7iR}5UM#z7ts6~F(1uy(;| zc98g!0B-7_r1ALoOt5PWVM3nIXey#H1tafX?cJbBkBX~2g8R{)4U$nc4GQ@sqG=wY zIh(i0_sgPf@b@Lfc<`Pp>$bsHMcyl~fDEucY@1o6ecFI&PDbcuCkc;Pr^f$Anj1~gFXvK`eS zJvu8}+^;OZga?RCZg}B;cB5?x{{qf4W@~sVEWB!6E!pIQj9>+%*dtVYE;RG2s_ZTK z2tk>K5@p5SlLd_BX;uo~O2iM#dkq2bsN|!c6?KW2pc*|Twl__y7MvS=^~Kda+J;(v z*Dpls8Z(aiuN^sxx%?|$zM1TI2>=Ab(~O8l>^XI$_FR^}!n_}#Z@V!i`oc0jA0G^$#75(@Z~WpF zeaME~80(7^!Qn6&PuW5<@2S^tiYc1=y~K?=*%kWe^v2+IfXI$p;oAV(`d(1XB}(#6 zbM8wP8GCZ-_SOQ7bmQ8W!iHy&lg@suMs*G&dTCWuL#m+w}!V1sQe1s86 zMMX9QHXp;i8oszujwNL$WFqUuc_lB!mDd_u+!3uklD8EUX#ov#5ub%H?@uZ zt+7S!ZWo{y3s)Q@5jUb*mvmKH=Q0FPc})GCgYt|^05gh-t-ACNx2}mfQ`uyW#4Nv+Jtt|aDN=TPjD;_@>p<9W$ZMFzuDJA-0RQybrR_lO=OReDPN&zr6rci{YCuNoFPCs|ufszka(jlVA z)YX=4O;KzPBkSu-hTRB*_`y@N=tHcJ~^9t)XO>S8yPNMn%))ZT-bBV>hBRZMFFPOkGEnqeJV?yWYjU=Q18d734o@ z5cL5W)UdqrEz&ff&?C5566>$x*p+`EUn5nu4Ab8!^!eeOQ-8uk-UHJpl&phO`MF>H zMA>%kO4O1*S9mxW1*Zm5YwC&^-3EUpJC^5h1z8x3lS8?Ot>2xa z2Ue)pf9NnO7vqZa#k7s8E#KOZkz*8xlcwzmq1aIhTjqZtvM&og6;BQcGmUtf%bz)n zzuzW$U90v@teY`m^D!vax2N^l45KdGFW*xe(m}3cZrL>C98*2kkeh5;j=Y-yA$`yeh5z{RUU||3D&xx@4N$u=4TG zy35ZJ&d46N-VzlkI{R&P%lNwBL=j5zFxsMM4LHf0Jwifb>H)BkMfr91J7#^S*r9Rz z7VSilCdmU;qQ_?038kY($&B|~;J(KkEAB}>S;|uN6cBJwx=7H;CqSf49p5qCrT`jocspI z{-Cb!cYH7TCLBFLAav9iQK| zq@V7a9G9pXaOn^Ryjt%^Mc*n5;api%)va0GZ_&4XxXu{B;?|AOL?eIRYvF@{n^Gu+ z-EdLANb6zyYj%9+*oN)83SXwBlUQ?2iq`2}DYwL}O!MN(*5x?dPpHV;R!%;u#evsB z67m-R#jT;++GPZcWLsfbMi?CQ?N?eV${Nud6f>@o#^FK8L}>z}e^)guQ&@+WyVqKz zSev2@eX4)GBGqE~*eq*1^zb~?zu7+5UMr)dfmSv>fob7HUO^+UjT7=u6jnBR@o%rK@RZBn-E<M&$WMSzo^1frr>Gug^)Ty^<@Tn-5g6jJw3WIy<}h=P{CQ)=zwz* zw)UnKpa&r{ip`&e-4MGtCNWz260FUi&?k@tIki`dqneWbf!3Q&i#ZE!kitI{oqN7M zk9u4PJ+ygDlA<}I`)-`+(~s-So>Yeq&i$i}RPFbUT)SM5*o%S?lvH_e+88|XqL|Cm z@oq&<9A&B@m9A;&GI$Puxq}Z^|Lrf?U;O}{!fE%X6`A7e>jk`br+`rnU_lrEObP>AUoOU$B~xB}iq!`1)#ks5 zKz4V0q5xn(!{G48s-r@~ZiNq8yezif%f~qxf#(((uVR3~>#{7D)*CX#se$q{+g5%kDe2WwFWp!I`*#y?5=HM-@wCFX;2D7Fy;Uwu`I$^nv#`^S(ebeC zM%3EY@XhRO{m1Ke^i+Gv>nb-B?JtcH@xX#E2h|%YD=sMV5rpd?c zE@jWZjC*g^lPe$Yjg8&!?axWN{fG)d_;O1grF!WDf~1(B z7BGZS zM+wp(E!`o#(ILnrLPSD{ITg9II%Rj_MbPL8vUp}BDDe_lTtAbXG#6R> zCKJ|4WMAC7)OrHl4L$Y}Lmp$%#p1fnQ^ULM^CC@{pK!AYNA&N3MPk3?gvi5ksQH*_ z7Tn*)JV|DL@y!p*u7)-*YY}^zbzG-KY=kpkqRiT^HVpb&^{UsoM(Mn{h+o9{!i}^< z0{?iAolBeon;MxPwm)wU2;;|T&J)joxkWjPv zSB{XZPzzY&(!RL|r(DRsJ0iRg8iTq$PLfaIxIv7H^UkW3qitby`Z(F{xFN-qv_MEq2WRXz!udyn0Cl^XnEk&byh>8n!P8T7s`mfdP9?G}xJuT&a z-~Qff6nOQ-&g^6nww|9jXQ&jaSC!thOT{N(EAEc5O6D#zXe3zPDm%yu9eo9`dM3)$bhH{bWX{rUO`DI7NtI^4h3$o5DtwD6lRm@n#5 zDnU%dR+plB5=0c;z`|$_ z$Kq*-EsV{s`v+wvkxv5K7KdXvJQdaZND*ik@16DR#91?L-&KIvX}yEGzrk?lUZ(Q} z;m%FSuK}?!k0iR{9utHG9}YLHQX^<<76m%^+V=AlqCc!ksRxi*f_*OTQNXklFz~%j-=T5s|2- zm4vyr{s$s(`F?f8^Y{Sq7YtQ7p@ z{->1otxwMw&9vq8f%T#Ei1-|^&ZC*#NrGAZuIQVgzyaTg3qfa3Ux1DI&?3tuN9OoI zMCB_$U)=6SuVz9KsXVYzhJpNva$)+uyA{U%dOuaO=%Z}Yh9FV&1u)}Uzuo?RhQ`H> zWiwfwZy~_5X^lPOmLc^`(-Oah9?l+z|3IG|tF4dqha#@;3Hq)t@-y=UM@JgmVtOwt zyWiIC8QAYOuYi!lk*H)1SVU(cKv%;wXL!eLf5YB(5-ED`g8Q5E=LsME%k1INM`>4j z-R7%XDu?4_)_j>XNc0V~VLS%(%)Ts)FA8EUmt>x;NDHU;EweSGDX4fXN0H051<*9IuCzyS>(KMJ10%&@}eV^VeSqQzyChZ#O(RF<^RP>HB#H z*WqJmcPGoaI2)L|d(Mw6IR#;gyS;AY((OCkM=VRH`$#OK3#c`v705;(p)hL7b8kmL z4oYTBl$j)JD@jheK&TG`g|~7HQ`%2#Uv%8MFbqO5_V%oQJu2Nkft>{;P0q%)6e)e& z+}~i}`SALGePu*6QUOfZE7u^L3#q3cMmG(R;+Ae=MX&OQ8)_XAy0MKD6U|?dt4kK-nN4?Yh<2*Ec_X+ejAf+lX;MK z16%xKGrJ~hQu0)v;jfdy3{+49LA0O}+FB2dv%|c$Vb0%LV|?M@LNYi`yC*b$>!*#? zFj=GQ%>iu#JZ36(!N3PSdi3r3-@IZQ1wW3paKvx{u+0;sX=J_Yxq5KoWh-QR`ijOb z?kiTj`?F_2Y8|pDxQ8d@7X>Hh3`M$ux?5whrGsF+FnuqV{Te3D^lA>IhO@tlwW>}e z7Nj_Z2T|TIh2Z;SR?|(^1xJnFUR3($WksQ8`k7@j`CK+QV=zBNoyt6R{`# zT;^HA)lWj^6Yz)oFHeD>woJG7?GOE`Yg@hq#E-3E-Ru#i8Krogo>1#v8e@|5lEc-r zrqh?`JxxQ8HT!rS?$adDU2%WdP^(DuvvTIYM3&sIaMc9_IaFpzIL#CszF1K9p%|+j zGX6~44KtD}2awsGD8XQ?>D6P456Zw^1(&(T{?O(DM?1)DykggyZq|{JSILrro)r7~ zTOm~#lPvR0&iGFHbA&z%rt!It42gUxfo=NGEy6zDAF4MB&Gfd(b^*zuL7?D=u%8w^ zW0Zbfo(})AS+a7?BCaeu^8oz9u!1vbt~qzWs>*$)fv{5ZjLXg`GnSZAW#^_qY&NJu z0t38)j0(YR4uK#5+=1+I*$4!=<{LJoHcS@1Cw_MY$@3n&!7-yuu`(HQz}u+)NOyC| z+c0T`$xxdDPjQa7DvC`>Q>UNm{k1d9LK94d(#+lJM{3xDbaBNiX5#tVD)3KHB}Y~VA|p~ zDUGvf$1ZLu`b!DDjOvR+3%fzDsRL@I{1XEUDx*uMwSvb$a-aSUXiA)2Nzr#iW%$KS zfC8?v5Wrb<`*Yt&&(d@XAN)y>g!97*fDbF`65hyJyZKE@;qoop`o!vYIxO^UcR_yKwv zll%0URRGxtRq7cN@M5Eu*qyC9@r2haCMd+@(eo?|n!u-}5l>b3qP;4KpBoq}7s7SD zGnV|7c~TkK;s~pJ#PW>TEW2`+`>^LSGz6oO{H-$B+kP&q&ssH*gfN8ONWUliVJKSZ z_xG^t!Nyo~y-mT;VeyBe#qM;kI>Y?Ky5z1*>r_Zf$M$TYwEsdwJUt1SrimM_6#B=k z7!&5z#@))OL$fvS1;#&h`s`YeS07*_;F~Rc)snLejju4o3OcLij=61AP0{K841qj*amK%pLz*i3FPJ^MK&gzCsq9qn#U~1fE}EvhEaZU`~*8Pp)!FgV!LW|@fr!P zh=T&p3ZR$#g<~%B0pfs|sr;;Z8{I`T_KfmR2dUBm^&)J{xoEcsi=4Kedf%{}^YmhI z)a`Lxf%W|SV*27Neo`<|w&H4Oxy3)W(B;#ZsN~D~iTn7oOIub?5D_Mk#_R2+cV#fb z(WQ{Fu^?CA)_S`}nl~v%;~(26X6UPct%=FjEjQJF_WwEz27@DA6uPdDlT;D2mpGrX z;I~zIW;L7lKaaQ*IgJmI-d=4D=MZI?6%2{Q2DfvAMi|t4!VJWlw5~@~=+mdU(dGYO z)8o>hj@O^)N?=S0JpFhdf80V;#%7``4RbT;u%ohq)6tjST=xB9*T&ble-4J}jSgrr zDrn8=lO!0j(K+>^R9p%#$bf#1S!N}v2bb1#sNvcMp9Li z+Ewog$EMB^DmP z1G>M(m)~owTG-&Eg?HSZpGWw2RGJq&{$I}%2Oodf^BS5GY9k;oV9RJ?GN4ob%cx&B z8$6El{&%g+^c^spAkXzLamJS&-kGHJtN^C}trBTL|#U%IY|h}_>pN|;#VG3FB^pnZfmZj3sSU9!;C$j!V71!RU~;2O0mb{ zM3}?umo)EW4~-cqf2H_17GwAVDQNdi+R`I94}jcV3!te$+|%oH7*C(@EB?p z*o>!CfmYU+0zB6*CC^rX0N7T*b0E z$>JEN_rvy^DcSj&qO1DZXDo&ctm4WjhFObiSAL%Mf}gY|**wVx-b%Ry?0G;lSo8i) z@<}2(zwJPcy{-q#X27B;&3JW#PE1K(X!`N(%Den1lWwj%!ElGWW1X0tbcz+Bwufxci0MgbaY{d4JKew zmH6pG%*aet_Z^9PoF(&nDfr{q)WIaE@bd-4=#c`!LW(oy>8nYB@vI4v*4}X+wb=-^ z%yN%SaxNP`Vbh4QjOq2aL$oVSvmtlE)GO6oT}D^mmY@_BHeqPF^-poX)0!(!ugq~U zET~cQ`M|p~eSBiB(nC?GH|xz-0FD{Kn%>AzMR8`N2Omi{m3?`5slZpYvHyOc8?u7j z3uyV|p-@l0)L)`ML(T}{`Z6x;+_*2-P=iJjE}wM3Q+r;*Bi7JLZyRqJ?pbSSp#h0@ z5RgIJs0vwbK4+|&7MJ2l3iqR)&wxeLBIgrmQ^lj3AIMkX{8>|NnN&p#v~^%aebsc) zZ>>Ly7WA%w(>p};*VCu4hNZP6q}AXFOQ7LzJ!grt{z|Zn>Zs2kNJ1QyT9$c zxQ!S*UF@OUc4+35?|tW9oY^wZ>_c^~4+22j)1s??@l zT&6^B10{mYC@8v)vsknzBWdXhGfg9y@hk63or*#7{EBED;wTEBsWbpL*X_T=!M8gF zCuZ_$ZFag9!0}ck*$`>_o66@>X89NvE| z9@s$9)W~VZmG{-JxS%|vzH7Zfyb^pXZ+#4v03G$^L|E%9vpz^!1QF*X4{@RQVp>A` z9YFue&$%hxLvU!9*oIt;z~fzH2k?YA(r+6$cHFG~xTU&xy?*URDc^UzhTu({T!LEm zElrt%e+Zj@P+`NBk0)Mw{wNP_L<{o!gP)c0$)G1p?s~mzCbKb%c zNfLvxc`G?j!Mf&M^)ZcT%f}X5Wfo~{KZ~_|Cdq zAg{KHLCT0V$^gFO*s{lqd3Vj(yRT+!n<{V%v)b#DOT>Ptam~Hd^GX9 z9ca7&D)$UEImh&EO|gLWDLv}JkcUL)S0~#U&u2LSFRYmkkVq2(6=uC5A@M`9)u;_@vxDA zsg2*r&xUJ4AR(C}=+`EuC2J$zR>?~N&FR`hMKGQD3D~!))a~pIHOOD5u704MrSWC8b+=cc2-F|Gx=+Gq*=2WKiK>fS|1WAEpcvbr%y8i}TiPt`Mr#V?oK! zFcjn)O5et~!wi;5>h>uuY;IQIBX6Vr(;~b5&wd|deo@aOO<+Z<46H9Rreq=gDv_=z zsK#xWxJUQrXFw3meI@AG?iA^2BK=egB-XV;f!z}tidBHfH|)o4cl}U$-*=zK;6Pg9 z#B~IUX}``OYAAZ-d8xp7*=4^bOh;Ih?V)ZIyWpEL9odv@ z@ns?5aFMo=4=;5JbsXm-4*zk^P(S@1dwmPf8nTf?#fynfX1Y7Ra++I$3#2~rc0wqW9cc3=sI>K+r#5CYP{h4CzSY0|cy&SI0(0dXf4I}%_-Xei zK-^-1>gMAKiMRWGcfBJz-l2XCHjf*K^zbVb4e0s?#cy~2xS6$DKdO6YyC*vQ5b9?u zS}+E?rhKLNn=~^#>|UhN+p=IW5}SW6u8yohQ$_8HH68!Zr*}1@?CA7%G^M`1Q|ncX z+rO=+Uf>MJ=q5?<*dJPp?IM)Dw|drMb3?6EsDezHmvENt2L62S5!>^^`#cNKxbQyA z?d{s-=D#65?~6;&(MFY=Q3eMAyJeq+$0&_)X0#t1Z+#}JBes26Ng$mtIwf0{DkBFF zBfOoHBnDOcCe5mz(^?f}(mPWzE?18~I{k6IIcrseuy2KB)<9yfb93nM1UtX)owaDl zP9lUMM>s|~_aKO~0mqF%$s zfr}*rZWJ=2C21f97^S4P74Bhu$%Cz3JvZ`J>c@5OL>mDAdp@3CZnqo*yxjkaIR324 zA5uWpF@!wXFV5WR73Lhu`Scs$w;hBEPbm%DX$}ySdi>t4cPvwL4ILPwb)6;Ady=0TsCGSY*eIxHY z8yI48rD7heXGpi!W5F7Hij@wfet!#6`xx*cBxj6t`MBTk4a}(vYw@)BZ1S8AtoaoG z8eIO8zolkq77m==bo~&VUE+cj(==Ij}NOM`(YLbwPfF4 z9E80O2QDx1t55#UYi%$u`4ku37~4q1!cF46zzo?@KFEv#ugzNK{=}kJGhw@N&J7Ok zleUQMyqrk8FkNuE#~C2kToB+3RIpaZug`a2Ky$R)sn;?%82Jxenv<=KmKt^lLld!L z%X+LlRJv5OoPM5WN7KOLtt|8eiTuq5XMZ*Cu}$fI9=v{n2lO1M7TAIGOo zd1i>Dyiu@|x76%o)0IwZs&oqWRAM1wA*N{;0b6|tQYS?S(Rojb`3bS<3DU825BDZ9 z!ZdPla&gk@tagxx29syz9>3tGDRui_Pwd>y5^KNmd68@KAu(m4zi@$&H^;rO~JBf2Sk4CH~# zY(Ljb-vN}adA;jLcCk4>SEN(0Xe9G zxgLT$o?VC7mjVoHjX8<*{yiHTG8s8b(HfyHm4y1?rPG=OG26bb=leX^>Wh}7_N>Zd zqZtV$yvTa<&`5P3&?Y-o4WrX_Tm{Q)g65K+Rb=!!d3^c^e$NQeL?*VI>lr&ll62pR ziC05LK`FmwGWh%L2Pl%L3=hwrlhe#T;(9+*__D%kFXg2^UEA7Fmyo_YaIGNEliSe| zM$1UEHM4YCpX*vtqvl4h{IKPx)mTAWr6OkDm><;c%F~33Hrvf+;kng1l#Hz1D-AmE zn0|4_XjtZ8*i=^GPA$Zw|);{C(r%JDMB}`S1JTlzsr?fR(C8jf5bUwaPQk9`phnT?@6Mj zisS9BkS67ZGE|xsm9Hg6w56dPau{VJS(2?F^S==~cz_mto&el1$Q>r1gSw?#kkJu# z5-{pnx`rpuu?bwzo04P`S(MOLfpCE>lV%UFqI|Gt&vZFIxfI6Ac7~O%8)(^+QN2y_ zF)MYW8WRi340jq!9MroawVBG`TG9X^&cEsp<;BXbO?O=~#2sa@Kdt!G@L)20vn7{> zoA&V27i86?4!7M8JN1P}M=MS2*db!vN69N#$_pQ#0!d)H4W&O&+oDajc=POEPI$xc zBt?1ewGZ<>HPoO%mEWWG{S9%b1Y-Qv{TcFjtq$_Ut5uL|mUkXrXFhC#(vo$@)?!qi z$R)GZe&PaEwI_^qyxm46y;4=f&j^EeQ3uM;PY^J+q;oyLI|Oz;F!a9O6$*Ck(zbhB zga#YTG;fDNZO*QTocdSA)T=XIu0KW;Cwr=~S3y6krHAM7F`Y#2k`3a+rI}x-PxI}h zM|uPjQrT+=(0^ScSgWc*kKn(TcjL&tMcZ94diOHUS{S#b0k50!(8!A^Jc&#M(OO^C z^*69KZWE|z&LF4884II#G@u1JWLA>@r{!PS){;xmz;b_>|5jeoS`buW{R<^P)%jzC*g>q(4fcvlsb_iQzT`JR6MVsu6*ZeQ)! z`)$GBF(MKQh;K{^&32pYp^S+PY`-YH{p48(qVY_5uSfxeJBr@rX(_2-MQ6T+Q+cB54uc}+N_8fh&{Zfrdpu*Ep6eW1pl zF34eNqTLbE+};#Z=M4!#sTxS5Hr;F<$^|_-eeuI{%*h|RzmIGiPfSca8@UUi?`PPi zRr4v-)VG~Dozh?RW49weKDLtD z%Q=S-Nd&35_s!p=bS|V9y(%_=-TP-S3&i(b$r*N-z3YX1?va4g8^oD3m5)C*3A=QD z$)a#}or?Rb9`c}zm5re*ox(FppbHBCSILK=D`@*8}~@8 zgaod)CkDKZg4`zqQm(DZT1}g|icmF!Uwe7~IR12uua+HM-r8+GHF<^H7Xfx)37D)= zsB#4?>$(&}UMUYLrb{nF+dKO?Wib$e7}aL`ReWfBtHs{7^aiNoXFmRVi4HXM+NzG7 z?z+5ifMfCO)$N8NG@btZc2~lUf#KHwU_G{oQ6M(;U0z4Epn3^h-MTop1T?RD$@4IyF)`|RyS_rfe>q|a@5JKY zw*17wV-W^)^XJahnhuGjM+=~#|3EM?t4JvMXZ@{uMh>{ z+{G)*x05l@xT78cCzdT$Pa14NXTQ9#d*AFtQrAEJY>g+1Mgwf`y7e&(?T|#WStp!2 z>ONFEMe{!X<=_(Eb@7@2rT^)AyAKfuQC)7$O``~n|AFT#TnMQ33U>kNkuZy3Q@e1J z>0KaxTR5L1AIwHSi&bxRlmhVPqs~a~l_Vad_@KJnul0Lyu}08c-W&PAo&y2M%@i>$XhTSo zCW22sGn*0YwFAyglJ4~q*eo}R4-w8pzvFj(6l&7Xy+>_))$`Qr8iDzH0P4K$OU)=_ znLyCJ23ytXLYlJ`)YR2%DJJ_w)qAOe6JB(pdro+p_QfA=*PsdiQRNc5 z^PHvd`yc$)20Q%IE#H}fXR84W$qP^QL5kCPw+fV7UR%8eprfd8|Mv(Gb3!bH6=6~? zf6-8Ev4yV>WoQB2xHma%Cf?S-?BhzMNDWLv&z|VG-ws@kmB=qd_k=B(umHZ~87@;a3Dy2(; zx@7lf3)&4jUffl=Qu;UR?b4bFRV_T4@EVEROq$!}MH*efR;ywE6H2nXDtm%P`+l`n zJ~n%RhI27iV;RAZ9Iro}M%3r%A#C|X{yK~P9LwIwgL%R@cJNO>ja`Y^E*P~FXfwG^ zRn97NC&T{iNl<5h1GA3vt&a-QS~ec6OvyWK24KX7$oT_A)jE}02)6>O_8qiV16y!r zUjldZk-fuu=8JZHdU&0Q2~N#q$V;*QMHN4+_PP-t`Evjy<)_KvsgP(5L~w02u2HWU ziz@Uqj_=%@udZWrPVGO%FFJkW{(ayO7|EA69rqJ#R+7C$?I007(fUsw71j2}>o1Hw zfYLrg!ipR(%-G9C0n?9eOBE2NWgQ4}G94#bb4`PM_)OR=d_pDpuMsJ4ICUeqlg_w|ifK z0z+lI%R*e?%B9tIsM!ar+frKZANaBMj4=~r)={nfH>LKq5!6AYG z;zMv5U6Mia{td5%#IqUxo?3{T;`gr38Pmem4Yk-CNS=F(zFKSg2ul?&(QOi|lC%oJ z2(eka1_k}g9ub?D}nQW=LCz|cJ%AM#Jdr=u#j>NL5 z8^i$K{Z4NN?DYfa&MDFl-Q6;C{4D#@)d$RzCM=onon`+MHab3Rf?cb>l;uX1k7-q| zVSzti?6QBN2lX&=N@DL+)j@`)Nnn0%F)VP&acm#8E&OR@wWGT@q4QR(WlFyp*=};# zv+R=YKqnfNqdITPQeyuggD~H^HMQ&!YW;IP^;g(w?aC5gH(2>Ibo*7T)^t2{@Lc8; zTChq1y~Jl~h1OJU95HU~j!)A)QuF4H?E-@jc^rOd1@G^>h~|OfZpL4)OG~*s^z~k0WxD$Rm_lw-WuG8agtFCSM-M5(^L8uQYP7ysf^b)#| z6D5DWX!y%iSKSsnSZ@92Bip?jIg_8_)$MpMu8E-;JgfeQ2ItcK>MlIf?|L|vfAW%a z#r>WqBc<|uHO4$LAv9_KP(RV0P?=xcazp0@*dDFxWiBVO>~39d^WLMGhQ4QvLW^mz zP_JIyD&oibhgJcfqMqqYy=Ck*DnIKI(}7Gvq1ByYY^>mZ(&Gc&{T8)?D134?UEa-m z7oE56>XaMZXZUiv6T#I*`xpCOO?T4-{qV(TThvYI)N=JZ)VkNJAEdPpWkTX)-DVKn z{H)QO@UX0WOO*iTdKq^B1xR3{e|dYEP)#$(LwHrI5-TJB^YW3w6F_1=J6xHEMOG*G z99wxI44U}CwnfdhzxxOICHkCv3CY72H4bWdkL8nv+Xp zxZgb5#E~6$`-F1jw04_SpiFNF=W|zS9 z$~*Zg{@bXo1$+&GD^E)+!E2r4q5wW#&?jKYEb?pBQ@477|BMrEHne0H(3I1f2s?Un z$#5@xRp?G}a1T72Yu%2V}O1QDm6f4;TdX}YdZg}F@?{hr1e<~zaAkvi2hzqFQ z8KWCMGkr2hoLbPLvolnZDaa%z7T3xMf0OA^68vmVr>oA9YHiHl@&{O!JYk5cV4NJ- z^}7=I&{WOYEPq{=AjF)w`3RZra}2!|ZZD4m5a8zo>E(bv=Fn4wvrEI3Zf$QGeIc_u zDQ}|;{sUoUdoV0q!q;l(V~}>^k2z(wg#=YS=z(s1x^F=?*X{ZbJRGQ^5y7(kDV^GY3w zp?liG`&qKzgxiE-yZOKs z%63er&OO4*=p6w{HrudAZkUuU1EqW4bqSXWOsspmU)TZlS> zFy(Bj>qwK*=2ZnEZOLF%tz^IL{kr=_+;`C+aguWiFw)FfK_$~XGb>`rO> zPkGkKFgLe5Gvt8VHu3Xq6g4lAQyKc`!t3kr9OsD-JCE9El)~ZqJ_OphDL)PsjkL_i ztA5PyRb6;#i)nnfNoyEXI4jANmg$%j;Br=t5VA@p(67?*u91+o3LCVqJMHLshM?*5 zUgpO89h>>@$Lh|#^^8}g8I78grjOGY*}p}MF+Iwy>%v29o~k*xGCjWkNqMT24ovMV zJRy1A^mq5PQTT$ux?tIPr2U>k8VA+FORVrHLHOH@S@>@{%!69|!CsWgynpyU&WIU$ z`%Cq9>WBY81@7q?mT@}9ug%7kox3vI%xOL@5D&GD`jv_qTMzA5Sa#p3)NDZB-*uv_{3PGAIZU&8gY5s-TEcA)x6cMPhPq!hwA32sXIM?85!ux5z;sA z$^3KNXBE78oup4M6}gF#k}F;#PtHNzHNIQZ#6MjuDVNy4nhW>P#F_TSh4mWu2o z86O#hoj569H07O1Gr7f2>oMH@lw38tgL!CY72v4dX=rsJ(l!I?VH3f!jJud>D~rD z;N~i1ftaLg#b=(jnYh0d0@q-0YvaeI4i?5NmY;SQvPrb_i?CnhSts4*PO`UN@18sP z92XVo%B_ea+eXk_61~S4RJQBh%+g6k+F`^eizO(AHVEDfPIDPyblU%JX2G;?SiJR? zi_!MxoEpe}!lZC-ntadTj?{W!Iy~P{qdFkofssuc{ zoiCau<+%-%v!tYeh*tu|QhA%ln~3Nw5F_rz2XekJlLO^FUVFFt3?MT@84osJz}Nkq zAA1KVwuRPN7rZ|P<^%mJMs~sJv41SoWR+XCpnDFyUn33D^ z*LCH5vKW=mU+l5|d*<<3Fd%{)7DTRSz?tt&=sIt9Nn>Wj8>7SG*)5XE&#YdR?nyn^ zKza(#QR&c_bjp^#7Uru=j`T-aRPtca=V2CXThrpaweH>2w3$gk2Vh1IH*IRgTBVG? z+(W$5IvA@`PALvjwnL}yVB||3mM4OL6T^uSsPu(<<@eqsR|u<-0}zSmHAcnE9YS;x zNF6paiJIE&8B>*XQge;`BB!A|Q$}4N?|uYflK9wFw4|TE0n(>_hi;b^liaQ+;WACX z-%A){MlE(1>R+b`ib}hDT?`yLi_~M!zWsQZGE2!Bg|BPv#e+e3zQyQ{=&aJ6m!=hMAg4-?=F7XUuRmXBdQjF!$TM3oj6qMnFh|&UvOjY#v-o0-wT8v5!iSA`tG z?c~)^0{{c^)Z-fK7LR94x$Sj-ETYuvW7mJ6WxWZRf7hnu=I?owU{y`0F6^}xHSWMW zR&|Qq<&NCCM{BE;bFL|^QiX5h12fblLikR)#Ep)S4*SEUDjAz^*$iZ6dQ88#U<-{X z$JndK^RmAzeV&kp$U?6UG{yF5HihqruZrlfAr^~lc}iflOWqFIAB5>2wfn?9KraZm zy-AewoD=qQCk62_oV7=NO=W25j??2b;~2=}66|nV`w17KL3-4z^H+!4_GP%lbFt|Z zTK*i1!>t8)^JiLMok`04gx#oGrnn)j{vBD&o-UUgMtKyYCTU{d`V8f_7#`S z05H7dAZOB=NZJ{}M+PB}?7*|9PI`(c?O3eE6b#@b2i|E8NwV`&Kt7s{ZA@6drf}8n zRf4C(AjAl+G3%7s+*5003{v%IahD95@~0$1X@?r1v)ZA(STrUIa(|UNboA zQW9Qj{9N|s9!r1z?@R*!GRVx?l0x2zGnSpS-Px&3vz zzU!(mgtOzSRZDgA!_@VtD{-$K5*&BByB62LKoxU-j>v~th#ky1vhxVZ{c0A$`kth$ zfKTZs-9@1X-%r2;vNx(&!-MHXF!F< zi?@2ou)(Huan$(}>A^Vl4@Hb&XV@v)bd3lGqshkcx}JnBQFfeX$&BmxPVxQ)Do@~D zYg~}_cde#^RRrMI;tKdU0f!O+#w_f*S?ekPsOMA6fsDetR;$hop%6JS1osiD@Hv4{6 zqt&=p1&&sUgrG8BOtI&xfp2ZH5Vt-v7|0IKeuT%astb-}mGl)*QE>?cRQ?~K6Qsj)8k%4v7wpvQY7DT`=um#fa;GTpV1-wSlPO8DvNn>nUjk+G9+ zQQE-|7yuh)AEz*P-dx-F2NACP;b7)~K2*PhO?wMRUzmE|ho$M&%0M-1rRhq4xg#@K zuOXn#+Em$dY&86A0T;R%nE#3DD2M8S{p~M+VrPu*q-clkgq z-mE-ZAINH8&pbr_12xh-AUsA z<`0_uZd_vB#h<%(Du7?0do)Roy7Z_1(I$6bc)adik5kWmusgRB7>m{Qe2Xgcc@a!_ z(oGc90D$pHpYDr-=h1bZkTYC|^FZU))@k74r{kNLo2)w=KtSo>z3P=jWN|dU`C5dD zU2YN{GX^n^AZxUiNA_KC z38#5>GOp}WXj|(0BaWKbPh7DL-Lv~6wMY}C?fMw$T#U$%^^Dd{R&aqHT~}}y^?xAb z4uGDf>EG;<^$g@tw_0E!nb;XbToQh=W&rT6!1pT7Hh_q+Obt9sp0Vb7t>$s5P8Yh) zE)jX;%Jz+6d8cAN;u258?U#0_f82BVTZDSKHZMK?KAKuZiebb~*?5j^ zRk04cumDms_C*+NdA&`JLZ%yAv+!7EO6x!2>?l|&bJ}pG%j^Iyn zt_LM2^}RRllf^W0uR98@r}jN10$)kI^@c*Po^9aw6kZQBI2$~tj;oQQ$ z3n)C6^1gw^xD2;U(aJ%6+2t0Wnrh0t6k;I8`WK(2#qlRE5&4y z@>OiAU5c{06Xp+K&_gHjzB&$fB8J?hF#i7A4c@S3)+n3v!9w^iJp?@O#HJV^*&4XC zPu-HbmCn;Ht|GMVb@j(L$OLA)%w?;VPj*T8Z0c@ zf8{kOh!opor(2Eg@djcrp=(ZVx?9f$huQiA0CIYX4342o-ljllCJ2giOhe=gv+rEU zX>GLlzP9f!m2$Vg6vgz6y(&uU)tH(7;T_==eqwP)X_7wt49*C$&|!15dv-ZoMfPU@ z9b)P1zR$?(^16w(l;LHc<+%CSrzi84fd#!lD3$b6 z`7z1zDQ>-G`!xfv_w%0sSR+E0bNk#2$(jqMU7}H;qHu_Onf&{?nUj$ zutH==%tv0V!UhM~ueVbNpfD4Zu@gHL*zP7)KKs0ePMs%`-f2=ol0_tER_Kte;<-GRoEl^VV&-h^b3qv0OL z=VMkf+1NZyVE~qeHTM!Sj6T;lTJL#~gvr0oZ+R~IV;bH3(Wz0jZ#Pcnvhot$e2P4wCQYU5;nAyR;-3!Sn$X;^nC-cfDz`lGX$4&8iS7&~O96Xj5xh~tz zKEvHuVxQFArNC(35dCvP{#6Jo*ur6aGcmt1X=$+S%{*C3VHNX_sPlguopo4K@BhXp z-6h>AT_Rl@oibpfLt;ud0+P}VBB6l9Kp3M(PeK6&21tvjh=9~Uq@_Q<^Zot5Yu9zo zcFyxW@B6-Ax0IU5JNO3_Pd=vo+zYQs$Ln5?S|e=sPh8EVwiS1frq<<=l`hx@(UgrV zzWtEe+p&r7B#4{KPXF{>LM&xyuZjfr@N-o%IFqlFM{LEtWg~=b^2IB(zq-Yb3tm}T z%mCfi3B=E8S(z0}sHw)+O}NBOARA4m<9G8?v&fLQJF_Co*i>+BH|6foETUGm8S=5v zfIF?~qjh5ac*I8+Xc#P>P`+nm;~jItjRLPq$ZJw4%Nso32Uq ztaet+M0p1D`gORWJMY6d#ePj2oitTJWW*ibir@Gn9k1e1AiTI|je$&QDD$SYqLUM_sqP${ zY}7&5;zr3isW9iH?H4$&23HHHW3|YLZWdg@M+1MLpv^Et z!LQNuGOjw^w{VZL-g#da=v4glXf;i29my7k{yV_iru*#|H+hm#pUjNCV=fa&RB%tI zY*Zq6xzKE~rq!J}a6kE2SVY7%AQYxByaW#E?%z=g1K(+vTs9Ml%=U^OhGV(kM0yy-Z;m()J>YE93tSK7X&3PP`|B|cj z^#p{sABrX?&8}nP$Ejs10lC50e%Ci2M=PCraB@iazFw$k@_*VBnyPsKiO{>7!cA_;mzQ5+gN?M;A8)dIXs^NB|uF237~ij!}D%foD^x$V!TU>_w0!7 z%oJ6d>)&d=9-3PQ9f(%XauyXuNjcc56?7=b8I4a4F21rhBrYc=y>En|AOkqqq3KGE z=8ql?UWT-=imy#0PMqzZ+cYOrOHVF9i6W9xC*ze=A=+{YbI%fJ*u}A%tN@7!u*OI;#9OQV>l9( zLYyO|r4v?*b4rY*s~%2a;w000tb#r`Ao}a1<^JkVw8)0Cp9n%u>( zYB73ZkvG;|9|Hcu9U6Ln(C}O+#lP_v#~*BS%DlIaL@64aZY0GLiIA6X7@-+|wE0!c z>0`2G7XkqO2$$4w(~}XX8P1lpojw*8Yrfa3Jz}x%De2t=u&mi`9H*age$~Liz%`CV z6xY^Ns<7UuSSI+>I8?u4x;To$NvgMI`@$>$m51uW#E-@w16?`B^Ty1cPVy&F#N2jj z!=%tip?}s3hhq?c0@7{Y3+eZtqp3SxbNiW6C`#gb^Y@6jp zuqgp7u5{+K-|`YLk?f~txTWg8ezH=Wr;(n068N5Y>A-2snlt7FYl##^kAG;WtSKDk zP_}zddOuyF-QYex-d5K>kEWEpw_rA;UAoS&I)zzP`o#{ukCW#v9Auekl(6&3_m#oD zUtYaKpUkbQd>6%feZTU+NxNSU^PzL4_^12L51Hm4R{_V0f>-i9aQ#L3*~v}nfacq2HY;L-Ciz26@lwA>`(^`N!r5tg)D6+^Kc z+8h-7`_!fI)zCGdVx>6avdO42@@-Sj)Pgj&vP9ZH;i!;q9kEVBaT?B|X8Zz~AI;|@ zRslztjaOz_!1zueU?D~Vc0OoaYAWa4jICj0#VaUwpb&}?*a*kkXNKi=132#W)c-&a zq~%ZSXa|vs>uCOcG)O4Df43_Ia2>R;jR;!TzCXZ|PB`!N4Iw`=rfY*Hu|FD;Ef0(| z*M*VkGby*R-m;gru}l|6e7D#IvCX-_*q^8ZZ;KIxJgTliDer&bq!8UthF2ns*6S)D1AHl*vn_gvA?+0@}O?Q{eMJ zhJ@_^(W8JJ?u-g3aRr6|Czgk7#->S!a6w5=a)WPHJ?wx2q7TQr_6(3~BP=&bx ziwnM!ktI791*Mrr2HUI$s^!DY&ve~}19w&lZ@)>G46iNN9>aj9Y&5pC>8U|tMG&fB zC22K>;Xe?q30jGm0tn@-Ua;af4xiV@o z=6HCQMzg&Lr{+HfvQgBHw(^@~7jMw2vfWxj{CG9s&h~WKI`5ZX>dRQ<<7fL#ick`j zjxJrjmEzXxBW=>}p@C!c#4q&!jEp=-Q<2HzV$IRExzbBU!F7nU^Vhx%$`? zg=Jz52jK6caxYeh@mkC+@9p=ZkZL-%v2i5x^1B+q&3Io`F!s77oiw(eabQMSPMj#X zf0T-B^cKed#@@!7EW#d3_MuB@27LeeOX~cwZ7q(<5PV%{%Xyn-{LDV2`_X7>fanf| z%okZ~%{p!0ixbXH$l76)^0D6T_(kXm{_XNIrq{uV7}f*22xhj+Z(=~!>`;27&kghG zz_~QXx$)U@G~PKn)+W#N=^WT*EVO^!SQp|h@FW!dFS(1ZaI3=&thAV9Y$_tL{YCUs zONvD5b1OTQDoIP79%2lZf|##1#4EVLT+ho9abnGyAJVPs5WH8rvGB<6;kLiab}DJ!^{kU;a%W_vVoaTc;cuW0n8--Tw2WSPHIv6v!h)*Ceu@cWG)y0ACL?w*0)EnfLVyeaNz~aGs#3 zOR2aq1AX*)+}`90^{@|`XT+Dcwg}79d<%LqwZQp|*X;=ReZvh|MDa^jZiy&oRcngU z3TTuL3c(Qrqt*^P%CC;#p=cM`gbJ|2_{L-W4b!fO@EjKN)GYPI5-6X(vaV-2pn>jt zGsHKdiPNxXGxI49!A86g6dg+oZB8=GkacX?h`1IE@T8u6MqCIv;o8rVurTB*Pz?cF ze2`POL=s-BN(729O?#q00qwu#rPEOZ^s7@e$XS*$>!tO8q>y5h!3#AbYNp~47=SO) zHA=56fXd+tA$tc7=0nZn(Dce^Iyd;CsD$mM;`3uu{R0Hp@KPD)D~tM0xz17cb6nA7qyG|E^IMS+T!={Y zVp3?jUxn9Liy?4EzxP;6ulEd6oMB--x(@ShLWVk<0ybhT^zdDc-CoXgNZTrA>t3cH~;o{>I9_-5Hj$jgVJgVl=0lM9|d94XzZ z#qNWwIm8J!x&$}QVRVX(1>3Kslz{=+G>1Lnp;!Ny+5!++ro2NHvdrlR2aMa}vXJP) zo)B}0og5}N)F0gq%&a2QFvthKue9#@7ua;1K|i=|!D#ZT+qr{7W27hPGyIc4-M9&$ z=;eh`^${d3y09?@HKkHd5JV>vS(oJO9cGzF`R2mKfYgx*_n3fuJE`3tS;2L?Q-7Ms zsdPdJ38dVdXKikVMy5DP)4%6$j?>VQJhtdf39);;m1;@pG1;G%6jj}nf8d2`i_Q(Y z7U>fhgmLx>1+N9!}fTL$ZxTvih2Bo2^=NZ!z5prM!3P-YAA#1&uF zDv1>1<5wsX(yVBuY%P%gJbP^kilT0&_pgqjbRk5`s&Vnh(KD%Cope5ueGAdFA(VC@ z88zyateHo88BTNV4D3{b4>k|ov&eX0QcKHBmD8@{%ER`d!BQ6%&Z_(($$zjf(9M>2 zR7L#QzLU|AU4Tor%SsY89=ra@FDc2Wkh@#>bEoB>{vQt$-&9BqZ}gYP?Ee_*H?*`} zgOPW_!+d!8{r~9^EkExcol9f}k8eoaw_kE_B}FF=k!;4tL(VxlgKS^*kK2RC>qzfR zcIrU>cET6N?;dL<{FKT zo(ZRBN-{@1hf3`;+80%18qUmxYj6|d_+1CP-qYd^ad9w_s|CBVRCp!dVoLX zGK!mtQ^8AniL@wTm9j4!`)`)@&dH$SX1&SEx43VvGok!bW6mE$Poco|I-8!E9^`Rd z?#Ih41g%41_!yRaNxRZ9pMO9jg6x93Kx#x{?MkKS;0EkpjS zosS+JoL;<+=q|M!mV-C+^l!5s50dz$;w}soLP)jD4w~~bMZQ8*2D8x*)Pi6_V4x}* zPDfZzbwp1=X#zy%85eXxoaC9(*?iAXhoMmR8yJu2$U*(3OL%vT!b>KS<;B{Rk5y@2 zDUJCY0WmE=0Pb&gc446;Q1bM`l%$rfU!S2_Ua!_!d*twc2c9X+Ma{vL*gcpIoVcHh zr0V|tW||!3V4r3v2sHV&u-e$RCP&&BH=l#lWBb?zPyW`}@`X@|=PlQ;=CZbj=NvgH z)lIIs=hG>9F_NS8O(^SAc1QlbKLP*190N<7vi)O6uiu`9s`!U6tqz9F!j7N%PTSlFcJdJ)Yix5YMhYl*)AkjBi?f!qR;i9}pjH0M zmW0F=lhZ`x0}^}#Lm66;S@VJk1M*B|LNUe`xZ zdXWnp1Fo;Z#xlLO(K6qqdE$7;1q(+hmv#q)h&M8{g3in`!c1is zz&+)N`=x&-dA#{^8~55zc!PJzV%s(I@|Koil1RPjhD(tIc}oEG1a=l54!ADZi=8Spc` zZT{=(BojJMmesrh2l<0qOHTdTOF^+9zBa4o}ryS9dE$Sxc&Iq)^EcvkFF-C)^kiw&YnTu71}zxgY}08}ZiDF~MN zxuu>4B{Dv>AgFwQdHPOvZiP>Xj_vh~$%p|)PetHngNb8}dJgfJ1Nmgdz3@8mE>97> z1E0gAOQ|-c!{VTRrY}{VELC+YKS;4Phc#Hi=deODV&;Js#2BKi2*JDD+r%Xtf-!k) zD$xb~sQdPdmit4*>4P_xCp=O(EWJko&EeH ze4Yu75veC2V9aRy7Gym-v*6&U;27Ue`tdL0o=)`iC*Qtl_add=m87FOonh9hRnhUZ ziY!Bf_094Q6g!&IBF=`zE8jAmRE)4WMH__(eHwHF%ghmJmk_l8Pm;5q8ex*Hgs4;t zghTr6Z}y)XZfQd`1G9J30UX{|iO*ZyNuZiMY;Kc?9{Ed~&2C;NMDv@C7*EpERg&<# zVayJ7PuiMJM*fBPzhXrXU04BWo!Vg&Ca{EB8!|i1FAUqg<%xL>ibUAH+9E?gxZKdo z%Ql>SU@;QHl);S;*5Z&pg%Nx!^PrRU!z)KM%0n`OzyT_HQ1I8VOWqF*vJ|~8YSpcg zCF;5Q3(`+{bY7=0>px)#1@B-U+{|CgCQAIANrb)$3@P)NX)3AE@m>Q3CDDAjM1eKy z_v$3C`Qx{+$d4&XP&(6hjVAw=>B~Q-zUN6yK+eTBY*!K%rt;FB*dd5l&o=AxXv$#> zXSaaMe4%e0<`OO)!T{u7&a`~WP4`od%%PB{#4nkz&>O2lDel^4_VvQsnEyZ}^`vSS z6@AKDxh93TaF*EjwS&elFvNVvXIcVnDl>6E>m@mk28j@#>rI08G2dc6CTxHFs%VaT zh?^Bq72RM-TXu4uB`mxX_vU^QCgNC6(6roMptbEe8GT_Wd3*GND@@}FXH^~<_j|Jk z9$vB4ptj36g$+W#nWsl9cx#Qp^A{FMS{i3aWy0%fFpf!c0#U~yK zGeK)EDg2qIhZFW8zn?3MtzB}{W@?UX2ojohIlXtKIFCn?75w=XKFYXAK^tioxnw(l zo|Lx$qc0oj<=6+~@@m|W%Kq-mTE$PbLQH}ol(CeX=RY|Dor$9rzxNeoj95@>Jjv(L z2zlt?Ae25Uz>g`CiR&6_n1Q16#_tqVE9*wbkTM2}kc`*4_TDli=<+a40vsF6y%3!# zadbQx&XH{U%!K4xL@h=$$(*3_M!FQ@?1zO=`4$}aTBoR~WNE94snv!G!C^9Zesbo9_ZE3r%PI!wm$Hs+ycnNr|;HXe+8fX2^6PGCiJmr9diS;Zv$&?5~0oc{*ys!`8tdLapJ4J8PSMZQeZ*}&F~qD6A&@s;1v zn5PA@Z>FU}%tC|JVURlBKcQ5?m-nQ-{i+`@(vFL|?KRX_Y2e5gxIRDCBeN}_ta*ag z_@GWf@#w0K9E4w<0sk9RcKLjly4f9kjei}!%=5(L+6D{S-jNjEZ%Fw&rk8_&pxH2E z)p_bVjdD5eya2Rd$~n2FmerqeAT3lDfc*=6}L}yk&Vw#q222B zAeV{hmvc*)>*%7Uqpsi|W`-@xx8V5&x zAiLgN4cM4EpK5QOKbpc-#!Y|v$TnJX239DEhWS22`zL}_Pq1Vc+b%@39{RkWrLmgo zJ-kXJLXFrak_)I>#4`a;AKrpE{r07Z|3CyMg|6~TKwGCtFnp?8SObl)oSd2bUxCId z*tNqtqv0#&`0Ydp)ZEkr51uie?wusm3O`fCRA3wCHlvEamc z*DRk$v}c*|AWB+2#&x1U7et!H7W^yVBV)vqe_Gp-8xY5?%c`gQY3F?4sox@HBktEC z5{`M#5Xz_j^D*99i4!GDbrDRo!U$#)eh2PU2a>&gKh)%1%X-n>!HV6SLQb=ZN~KDV z-I+oX8S_>~MzN6H-K?(}A0MikfAOII;{wU8P2^oP<|BMn_}{BSUIA5fK&xLq>#d%c5p zdAYm6Tny~vkS?@Bw7Cb=>%y;MvVb^Ks{KH`JZUNTK~dYiOzbkJ5h~Y;O?DFa`}Iqd zr=(6jaYA>`&zQa5kxV))%|X|unb&Mg`{w`=V_~}a9)yrC6hMm3HS z%QyYvwg@}v93uP!DO7_wR)gzPCCv;m_KDd|rkD_%;meXw*5%h7oL%tpBiM@UspXuL z6H*ti$_iz<8`#NGe!cJjH?W~mQd>3NBl$Q(Yh$<>bc*b26SJyqWB~z3rPcnm} zA@>|HEngU?V6UP~AuD$O8=2}7h~~f` z12EH#lwXJb2WrC8aOr@Ee;b{!a@%D1RnV{x;nP-!1HQ()zU(V9@~D2qyx*>8CP0xw zTCh&mmJ0&iDJO+%`>GevP+DBhR+OmTZ8EQFQOw}$k*!R!yCbbgTOjd!jcOT0{=+w* zj*x+9j>RxIHYG}ISWazHm0x*5S89clEtHz^^&=iy#7u*BYnOc97s1wE1eLqFiMrZ` zZ^g<#BObYHhfHw-ZKaU{DnZsTZk#$e<92}z^n`b48 z7v+UeZT`gzJA-3M`A5$3Bmmp2|FtEco`u7P?Q@T38K=(0P%qwof9(#_I z`dhH`>l}R^CI}E_^*TFuPM5+5j-P+HK}9`{>yjsJmz%ONjInZh$dgrFo~j7{R;EsR zN(g09GsU>}EAjCkaAoP2wTcjpbow!C7`2L+ z#*?houDg@yqk>a4Uv58c>v46sj+w4+6JApu3Uf3;&^!GlUjvMl?g1~4p-F~6~cmH4cGiSF0f%I$PzI1tNl`wwKbIle=D)XPVhWpr6}WaWjfLK>x_ z=`U)LAy7GuvF-FLH0u?>SR)0=}c*-0s$Vo-$e*4^hXM>_V*#~^b zj5|OD)8XEI4=GrD4m5)B+?@~#9IR-l0+7zRPJluYwNIOV1QkVF2d*o5 z3(PmKI(V$lIOAyx<|b%zksbNTD|zXwM2~)sg4{)CNQ*w6$0{AumWY3F{$JFdbtAga zLForYctVs|PQi@9=DWai;Y8czKo@{^L8RRR=Tg$`&M)$Gc8ynSE^SVwYOY%a8j4tX zP+=DJGrrTgKXL4@9K(C{GhUi9L!TaUJ`<@*5NrEnpHC2bJ_6_p5fo z&2C{g1C{Z?r&pQb#p?v=aU9WTPX~+4xUB>fX z<@~YO7lO{In9dK(!f76s>x^iOQnMILog{x3*!@ChFk?;YS{WGAQa_PM;Lo|Lbj)(Jny4(6RhsBb=}OVZP3PJZ#* zs1l)NsMi~Sm7#wr-arkLG|DB!X+z~|XNW-53oNOk(VZr~r(n59Lw5|8`%&O~#@-a4 z-q5+P95Fr`x1E0ydM~n~yc$TXWRgx?H8PlK7|UMd6A1tFurAMee|+7=OdYzd_ymtJ z49`a6G+d}2;v$=Rp=uiqK0O1-9r|$hiv-7Kpw3qr%?f_+4mMg(^e(JuLn8%JgsSvS zqh_ZWKTW+TVXFFtz-W8?Zlk^^qiPc4lMvi zz2r~_Ebz<3F>xPf$Glf$+K&z{eV$LD-FL?+h03k=%js3U;`7)CRZ$1;A2uhtrOl9M zkT*1-zDIaeO zgv@BksE5GURD6nPHLS}#7X1N;_~qxT%C3SGd#G=-%(or7@-_lDui}@vo1_oriYu$l58WQf%cEJwqebB zv3;oRNY`NCR5{LPN&M$wBx1i`1YM!M8i_h&EaTaKZ%Nv^p*H0fDNVi(m*asCpU0DX zm*Lj>tGc5EhE}7RuZx#@N7bz9NRCBv(Bx&iL+f}RvQ~$YtOixw>c=(saQ&nO&68sB zfYM5HHm1!A2pD)ruU1XjZ1K4~J!$A$}CmBWN7E ztPJO%n7h{v^R~-fc2h!IhoQwv@~QxJS0grUtxTA%l+3|U3(r+R_lLxFk&Qs{WsJWvsXKGX(nQDqs|BJ z!-^?Pc3M(gnl3PK=9OMnO~w|OtxeC8)pF?}l6Wn$Nq%2d3;t#9wp0$7AE8h2On zE~4yAnO*?f0yl5Xg^2E-++{+kwY)dXJ>3PzC3_W)O8M-@bSt{a1wiu0S=}_oqlRgo z^WD1wYUcnd3`+Wco*k!S8#V-+X$rA&zQ)%e;fy+`7@ZLV;_6hE$RT>AS}g zqF$rHqCu&c3JG(<0<@>_c1G%hq@U@aYTM6F;}4)*LpO_$*`96`a7Aq0m667_kSF}p zulp>YINqr$;1Y2hY6v{m5{qv-tm#In9G+&1k1suTy7`iD#5v7+_bCtTT2*-P=+7yT zES)xS#x|bg6`BE`+~A!sR};j3_Ls0riTAQ9Vyi9j#+t|ha)t=4B32??Mb2qL7M;QE zQ#%p^G?1?4eq?tXYSSZc0PyUyxmGc88Etzw%J0QUB8?xp#>sP7lE|b0X$2TNxb><6 z^3DwLYRU7>M5mQ+*fOYNUH5)0m&GRa2TfCOEMl8?AbpGQnq`% z7!o!Z%7eR;(Z6FkF#I>Sjr+}l1~edSftcnBu%UWiLET9frl*`nNyk(C(TSwzIr0vi z)bvB&W+n-q$jW4!$vhaOs|*1}b1W$? zMhgD@2U{_P8b}#rF`|ozS3;eBKLY_?8$U$9f>JJNToq-j`nza9*| zgDh)~JOp_8Y=;i!J_i$>QWy_(`75zPXa(^+45AYqO9436s;rW}x?zsOrFhZhq6$v$ z_2ib^bz@M&NjAHaAZLyW31^Y8kJG9ZF+}9DOTf(0@b6OKdg1EA6HiCezQvMHupa_p zINI0d1=;nwkH;ZyXyK+Y5!Hk4_G~5?Oj+8LGw{>eoWZ%L6R9L-XRslg7aIM1_Z0GH z`Eil&myan3;>kfLf~+%eG@T}!th%KW{u9(b*2}(FI|x($ocMRoA!WcAEoKFI9NsTd zo9IIhIrhGP*>KA!vbxtURM0h}2d5)b7GCg($l!l>t^!$0xhkXC)E~Hr2`jvI=53q&XEdymh~S+&|o+oLf7uO0%EvFW5R=Hm9gQ zN)+6$XCg88?CE4w0C!)Zo{(Q4OkSTsSd;8xcBuZU6*-YoEkNh;%>VoXDA*(VMW>D{ zl&ITIi*&ofkq(EJXd9F|E5@IB}aAJZKU{BZb+e z5xjS@jZM~^_p{_O8tkg}_Tm+1tWpPNL?bP(c-^RAf-luwJkG?FqxKU7H8qS!J{}ZA zl&1hu&MC?Ls_3^uAC7VeQ&&WnoDTvG1TAd89y^=iXdU-5iCSj7XWfQ|fR7KHa!ZZR z4E>se#5r%j0|ClIwH-wbm=G`#zk?I+euW_%1T$c&Q3 zT@mS)G+F0-JjnSxD~+A6%OO8AePI~Bjpa=XA(IMmD%Nns^j1#*tuDg(cyVC>aAqB?$FHTLnicpW()hCv(5j*1-6Q(#njS&EVz+L}Oc&Hvf|33efuOWp2Oa1aFi0#{vv%h zXud=$%qjr6bvo^Pf&5y{=9k?r;^OzuyzX-k!fLuHCD~@O3tPUfnZz>b#^WCOzF;~4 zFR|2KZ$>4z+n0On5EoqYPHKLZXlTQ$SkKqBozr$w>pI^rIF9P4Q^Q5zV$Gm+4G&$Bbm6*oRYsBhrZ&?_K((H zHm3gc&yLR7crgB8Uy>EVLAOZE*8+g({sRpc4l)=Nl^jFJiF$m+GDJ)7j(Ko78+BQD z-g9@@i=WjHDQtJN04edl6&x7+n{Ai^iu0W$;^l~lk=(1&c*$bdk9@gbI3QL@^q5Aw z9e(JjweBplLS{_QpfFe<_dpl9Eg}(oWqB)o<%(yWZbx0pC{p>vmqcT-|MB}XL)(U_ zNHK11{ZK2S6kheUQ31jk>fc;c6;CG|L2{2e7qz~;?I7p>4A6^pS3h)vlRaoL*?$Ql z#SdY2kH=^={G}o)CL9yKCdD|AvU*oWgiY6eOnDYINdBNTtJLvvrKwIrXsw3 zscF%uQ#tu3HI)+1`6~P~u?i_dRTqUz2{g`l3ifFG`HgTjK#wefvB4!?Tx(GUdLIRh zT{h=@Y`!ii&bFRDJcTKlyIN05_TwwRXt|{5a+DXjLzgH&0c?MzxiqpOX1S^MKGQax-q(8mTLjH2VLw!R0=wlTjM*tENWVDJ zQ#s#q3&1|dS@RKxGR!i$s#t1PKWmhY46~(*{bKdHJ*h*B#?k2cviG<`C*CHe8AB6l zcU>7I-Us>g)CL{rgNHRi)Bl{9kF(%0qj+qZcg2DrP>TI7;956IAPnDo21_>Ku^c)t zKcc2#sf;o*8J4bGRnsqDMQ??ca*z398X8uuT>j}=#UkG*3$4CG&v^fJ=Ty3856`#R z>xYLdm^xYXkI^RmI{YC+R`+_9UoDyjuZ&wLw6l8Q81gI7jHZ^^q3@}l?z8iLDKzRq zdQ?TTsPKiwnqRpwio6^{IsO)hOu3~a77mSuK2sCE{e9{Tw&!RjO(dNvG5SY(XCrV2 zRZ*`RE5fOre_pOCfqISAI82N*;?H^5X-Rff4JK4t4v2)1y;4GNGdKskitZ4U;TG(a%x16jM0d zEbPt@ebE@3w9Wh5v?CCF0%l%(V)+`=@as;LDC>5-QuIOXmb{XaXqC_Dlc>wd_%>J_!r#7GF7nFuZyKNcqz=#Eb`l;y}3TgSbSuOXq3eR~%=MaQ#7$GKXSwQ+_gSh`L5sWwj2?}>0Tul|ta1+VMmW*RC z9G$WB>-%E5g}$TqU2X2}7e>YQI^SEAV#CuGJr3S`u_bTs2cLoc8vDLvbj(XWy5jSD zm01yG6RDNe>!3CL<0d`9F#tI3-=Sc;-Rqdp${XqBZ=lkPs0qWx(@N%j64udsdlAVS z;8rb>gw`&pX!ynKe=1RLG54oHis-{$4l1S-QasS1xYurTvi~~chECAI&At}q*2K>! zF|!xXV91sGfvb{IaG-tZPR%Ocx_Yj&Kl)3*UrRj6jS-IoB&tz0jknN`wedAY22xW1S^*nZ_Ug&BAr(iCSl$QEo#FM~t9!1AIwDzM@^ z=j`BLe?RXofDi}0PK0R(#fImJvn;JEhEV6m7jJ1daR~}gU`FJX)Ma7aG`UO{$h1q00bn%!#1IIS z>pnI-;My*t;@|m0>IYDdYm7h><}Fa+!H`V6vm#|MVHi6lAhgthjP4`{wi>~2OcFv^ktbyvB81$^IRfGS*z z(*A>|ZY7mjRA?=X%W0h1T5YXm!3i%!{xoe*q)MEca~#9LGlXW+1{O>)vRiQH)yE#8 z?8ar*Xc*H3-Ia*XdCU%x1LeTz%w9HWS7BqBz(`I1Lra2E zrUZP|n@3`YayyxD_e6_(seQ@WFz2Ns5t{?~d>igEueG$!EerZ@Pt6EV$A)wt_ z9*O4q{ne|DmiXH=%B4S*?fjXL#e-T3hF@Pb5qxFJ9`V=Gg_mgg(ghhfyHSiFJgG%-V&XvW2M~qQZ*tj`$iUvmO9U%&Hw)3v z25nkhEAG~ZL5%y~$e z|1Ks=@(dZzh-lpm`rn=nq&diM$Mw&w$q6^Lvt55Teq z(e(Iy}Ke&ljpL6YVG(NAh9-IYoot< zSd6S%OMDdM$D8Sw?^fB>yG&%b0HQm0`Zw8eF^A>;)Z>3(sf};`%oaTCVx}9Ty$yNB zI0`Tu{j#>fw}wVK$lWo~cxrWePVd#${T9KN?LOtSSr&?fyDoAVL)2s6w_&U z6lAz+LUXTQ9Qff01`;#3Gu2xQngImcG|*=dRH1!qm~=Nt zO6Le+j-CQCN&#u4!3l_fG$Kfc{J!`52RMLZd!OgM@9R2GUQ?rf&)#SWS07ZI#T^6ySywUzs#3}YwCK&hN2p^t8Zk}CVg zBF{J%x2l9I_A3f+PLq(DAd9}q7cCD}7g_s>$Bgo;mhe;)@$R<6pB;2vk?;~f0sc0E z(Ry{h+j@1~kYV(NSM{uK6ys)t4i(o?6Y7qE|}U7EfB?iu^=2k`rT z@tb;x7JE9rwDGw7DYfF4zr9v!8OVepz|c;ypNjXX4|8@Lt~6;&)9*WqgsHWKJ^KxS zRcwrKW9`QTm<7XC=cdo*c+? z1z}wRBO@ryI-jYdV=&ko071Rgu@A(3;Yx4w_~!y-o|v>X{X8#+Y(MVThj;MhOrTug z5R=vEDAM3u(d?}LG#N4l1OI?R)mgYf1>`e9>nDY>ProI6!tZy_^rT{3^F%#m|9`zy zfHGyvF7+jTNSESDgXOXTd&>tF22y&(b8FVZQ){ho!Zh{rVbA*HJz=TGJ#X>(Yd^5` z=jmNxzT{nH@?b_&YvH-fgh9VDp{9%3#H{2)dle=1h?0z~Iw>Nt+$~CXw91F=IE!u% zQstX|CA-i{$sJ$__i%uq9rJh5u8xiVs?-o~)xW@Uzk`#XKKg7zv_r?%tyX2Ap@RqV zspIi8|4^?4Feej09C=oIspC%7225}pY{i*ba=c0z&<($PYR5!)-Sd3CDzWzC)gFt+ z*181WSRWD6yV9@X#l1nv48-|HYm}s9A*m%P7KI6eL(p?QtLfJWX(FBthWM+-VlR>& zu>X%ekw}aDs%i_Q~qu>$)CRZ_7x=#=HsjkvC~kNO1S_m}`G{%yEHu%?qY` zW!l+g$d<)84m*0+-J7RR{5|?Ydw768txHf*>FYgGIWq_Q!3{sC(eIb=dr@`(`*rp!(-*p6C;OL+Rk)4td6 zVo=As`?Q;96B_USoD56w{IWJo&~lgkmTP}_6}&b16zhcNsm{hN#-P!aBQXl%ZP!cz zyKE(63>-2R^_Ft6VENu%aVaG$Z9-jUsy1Hd&Mi^)x)sjPRoM=D-UmeSq$4RTO>6W= z0NYaH#-u`OtQbU&|8iVAI^wmJd6*K5{^LDI!CuF7Xb3#gp!kn{q({ob3|m7L^D7wh zOMG!3G9;`3yKZs+l%o)yFst>iAP$gs&1HD3c`b)EWQ4zB6>i6d2b`+kuq&k>UlUw6 zm+yZjUm&E_TQE5|)&z{R+WZW&_=mkgz-3{D|4`OmD?@+Mlp0D@92?3F0PTf2OVm4z zA*)cv4Jtvo7riP@%&9k#kNPC=-;Z6p2Ccs25h~>lMI{;w{M3VJHrpp0-$!Ls9yhVF zb6ktyR7>_Y(q6mc#O7J!v?WBmf{X}{k&Mx5;n-`jL7^fA?3rq0bE@@CP|>(eiziU1 z`;3c46oYPcs%5W51?oGG0Jxd=T+>L?;<#=rTSuwUl=ZEQf`iD~r{mZhaJ#i!IL-Mp?VNTj-<7&ha0}@ukZZ9NV96)NS-n^v|Ee6OA+0V$>P7Gt5MI9a5c{3c8k$S<{vNWVeZLR6^R z19|(ffQVT??&aN*aLPS>y(MfMLogeADN@e$vSiELu}2_s+%D@qWCyd5iSF(W_)iAJw*W+44p%}aKfeO0Lts_27&y^pfxwx=KIRLnwekc97u?(6^G^|f zO^M(=^ho2??o@P@vV#^Sm&oMi<4A9smV`a&nkIHZjuV*sLzF5k*9H2n+(7+NAJl6; zHo4(S+dJjTq>KCYG?GQUl%3p0$9cE9pYRH0)$?L=a1a;~vcaf8n6pe`<*$c5w8wk& zwON;@XD@t%H4??9;0qbY>B+Dz@t0D}m2_lfS?MY>88v&tgyL3QM^?;B6a@-UDgLGS zFFQG*M`gwo!|e}WrSX3?UDLw(;HG`=T|FcR#iARgjnqMcmw_LW(= zTU4B8V%S)j1OaD?d+!)!uwW&@-RxM`%K=QhOQ7&KgF!)#yR;zns1m`uP0Zrg7clDa zKgmycJ#!35YS)cYhA!f9?ItgwPb&f=$bS=WOk=l`)r5>n$kS@R^Y4WdNu~xWQdPcY zJjxF)q4jF)nHD=$w$)w86cuq0UpKOsyZ}3-Ho6%lS`N{?3l|h-6u9WeBQ9xVn0>lW zxoYf)9JANMJV;4}l0lLu#I*KnX@lyvM5%a-Sl4a895e6fDx5yX)K342XBxk!om!Y? zkXKUw>VqYW`%xZ4A=59ZK!bf+@ZJG*c266mI_Kn9>4RDt#QAX?r@97{3`3n}YH@!h z<)rDrJ`vl0N8V-Uo&I$->qWz+73S}WQNgVp5HmY{4BRGuZdz>Ddy4sc6k#F*G@Qxv zXRI>nd${7m8hqpa0SxDx>hM7p)v@g;5o`fJ&DTeNDC5JA(~)Mhl27j%?f7&+!x)clWhZ zQ5L10oBE}f;-y0_9chgIPKVF!YnGLs}sAP4CLpjlH6LGrfFcsc_a<^9|Dp>6_E?C@|ktvUHs; zg-aAz=O=o1S+jCjeFO*0cZ=e@cPSee*hqtneU$1MBeJCEci_4xB4|%mO!Gyo+aI*# zQafyG$(favGmmPmz~(>=KK-o%HdbH%@V)J7iE|eJh{0;m`n1knOMSsYRgCWKY9RHb zzEGxf^X$Z@l6Ld>j~AvgTaz!P7o67cpiBjA6GIm4k}uN|7hdrKcDvL+P5Y*u%Ynb* zFt5=gJ6BLa6i+iLKSxhK1nCO(Js975kFiXj?yLCaVOVl)qRm=^ z^LTo=*ty0MJd&kki$jzomTe6#;Tly{o!3?A4Xn@$w3q{*d6^JnGAtXa9lRIHNX;VJ^Y)-%u)-#_z)|yAeBE_)ObY;Xh#o@v!pTQ#lkCnxeOZ-_o;wWvK|-`5%tU+KgnWdnHA6Crg>NLB)jw9w9}f-AyS+l z2lxlrA@03f;>5<3>Lh=LkF}qUlc?sbPP?i82XZcoO1y$~zAUr)EeDSI$1k^)>-Y8& z9n#sJnM+k>30xJKCNHd4GTd%yP{g0IW|7aIhkRI-={oI?E=a=Sle@AmJdYBst9LA3 zT)+big5SXbyOn&arZYkR^j&-k!L4hncyBHZznm~yc)p-A9wxge;X5z;Tl4iYjq8Uj zSaRaN({NM?IhO#&b(rS&xy>sX|409%XfVi-mN{pB;|z%NFx*xXmt2^tNyb5Ll!wd> zb6!qO0$XPbv(gwKI<3>>@XRVLNLxi~>)Bn?)vq|!>{T~hqc9}9lJLY3u&Ko;C*(MC z@(s(Xk&tpA%ci3Z&*RA?foT(YSqBEsXkeB~a#jrZc|m4bzhWyyN&<8Os%)GyG0yuJ z;Ghq1o5uwLix#gae*HN9ctX}|l5sD|(EO?InruCUA?krKD?~ZZKjOKeye=&1_^o(A z&qANwIQO{@!DewG+~&hMI12NI+Uc9EfR!6W#ygp=fM)dR(>PWzIWG%K|8===s#{}p zX*0?S-5ZpK_z(2vD};Lq8bUsAAuI(YSYXgzHLQ{$0oGwn+`-@ z8XB5)Qhvg;oMSwa?fkjisIw`h1mk$4gbBd;S_&uzJ5FV_=++6ACN3g7@~F+G9EQbp zs0gLrmHrj*v=RV_LQJ#;j^B`~g&isY(_|6i`)kO&Cn$j+5_6O!9QN9?6r)c1=ge4@ z!&wb?XK-Uq>(S?F>#GVzgo|g}HoNJ|c1Mxz6Xho`bKU3v3V6OCQ;_ATjC+ZU$1Or% z)5d1JM}X0S!kr-DSUQN%{MpHp9hIz~ke7qtbhx8%y^ zTgqGG?^qChR7#mn{)YBcuVp&|@oH~44Rp|sWf!pOvbTC(S?a?&W8gdkxgf*87sfhU zcXf9AS$Y#;{L<)3a;C4zVq)^JD$hMJ2@Hw&@hg*UX3;mhaW~-C0*@D|p1kh?=5Yi` zE4Hj}j#sQDiwWB=jihxd!H#!AufJl=FVQ2V5xKO?g+1x(8d1UKk8Hm0Q(^xAkE3?l zv``W9OJfc+Mfg)TWiZ5j+&MV76i<5-8=>s%6s?0nZ>XBo^o_+O!7S~Kr#UwEku{_g z-z;V_%atV_zF2OG`+O&+>M7xY0b&1<%^`_zbe8$@LGWzod)W6l?(!|yJi;{lodmuFn^+E)C^a>6$1;Y^iZJAOHEkUvk6$JBw`ZafPaM6n#Py;no$c7we4YGyHv{&F|LCih~v)uKp% z%~*X&)K@+8KhUB?pd)X0_=r97g9Co>4FN{XCl`2IOvRf_}XWX=Q3xmZt z)tn2%pR$jLT@ao)2S^4yh_so-xvI0mkS*W93WvlP)E)gWZ-40dVF>#J6Ld=wl?2%~ z3rmD4Ab*@_W_{=l3~*wZM+^?+w=?V&X&)|V=)kRBOHH>eMhYlVjEyjC33B27A#$$V zl1q1R%1+xoF!fzlB++hduyX$PO`D_{zjJzWwjgMv8=;NpfQz}$JY&77X1H?XHr7?n z7-QQcT1U?%?qK2*hfV_-kx~<$9~Vy559}gV{p592Cp=5gsUO2A^gDalDN}xJOg30d zZ}MyLSO!HWi&693>l}H;2 ze)D?O7pKDB=Gin=idIw@gnojxcj}EDX*>b@3;wtJmg_k8istK1Hh(pf3D$DrblPloISK&EW&MNnW5KF)w)}S_?p_!`6o=^XZ$dho!%}wP^0UniXNhdFSOf) z-LBu=Pq~KsQ{AhN?jnXCju-C@mf>#KXWE;XgbBzLzzV8fN69~H85<@mltwT2oqhP8 z(Zz+fbigI{Lg!g!qTkXnk@(|0W33mv=qJXpexYz`_H_E)T|6Vt$)b@x46VlWqJ9s> zlWuE*W#t<>AnUrao@6z4j<7bsUf9#Zwm37=umdN#sj7m)CVwupw%EmEt-iTfAfRM% ztn=n+ADY$D-hG6rn2vX~EQJ5zu&PfMBK%CfWpaJ^y1<%%=pwZW)N0$UMtaxwe%X11 z9Dv4wOm}Q;wL-tpP7}zS#b$2-e{;h0km z4}sbJIL`QZ6Km=@O!Fk3hWzg*jQ-Y|0vo;u;8J_4mPnt(yM_FTDPH=E$x2EiOy$?g zTR~T=LqyV;_wuPWzJYhf(kryi+e-)!uK$Ob%l-*s1{SdwfOD@(nY>Z>aJdWl^S%6U z@GJ6ohJ~Y=eOI*YznR)ga7mZySXU-GUS;h{{qVF3XJrW5nLpkC{#`uF8_a_Va*~Gr zetAshrAem_n#7S%sn*j*pD;MTegFL)GM9#F!Ej(Q&u7@!zo&LY=>0>>Tf|EGG}vG7 zfoS+}G4WYf79GLxSOip5LV(LclpKst=*if`w?jMWWRZiE0mUeyv1 zpq}D;!2BObmk&)@fO*K&UB$QR^8N|u{8^jIQe66%)BHs9Cv3__43o6C%`z#JX!aDJ zs+D8~7ynoTTHI<^Pw^E=q6zOuk5Hra;FnPb3r%$Nub3YgtR$gsg$4b#6WeCyaXl@= zClZDlbKTwp$wknbq_2cvb=lg3?Z*Ut`cnVIW2VNpu>>`b#SdSN#k9G0i!pK3AE7B~ zVhX|OZ_TDKqvC7>xi~xP8M`t*Wi!n*XRv4ro$;y<*VbBg4w1U}`8bWv_>?~D9vcKJ zaY-}J=dmlCwVL2yta`}rN#pRTzt={Xgyf)FhYt`|)yVzLqBEV4zv<%9_p7fFGc+gg zgo>|euRgY4TFPH(U-sj~1U(K%(xriHu&j~WHwcQCAD*)uy<{6$6X>@=6k;CFfV|x)k20s682T36 zND_SyxPOd;2`{!|r1nWGRZgq4TgL@;R`GlL;DnCFZ5o4HU{d#UFlPtW^|W|ihK{de z5DStNdVyVXD%4KTvevmdOYlA(k*HM3PU$r^u(jYgm^1(oonO+GILUuH18sgt)VL7d zZVW8*mpH4&h3&Y^)3ixwNkn!=y^Z8K2yeFsIxCxr`g`2_e0)w%K!tvjx^mVBtzjcV zUv_Ca(rT_FUhyw|>bS+*L6te=!AH`o9uBR1x$`pL9;MANQi##=XsxmiE< zt|!4t ze=(adm#Qb4IZ%2Os-aW(VcohRia<-BSd&wjN!#|LvV@AcXkdTp`IYG%7xvZeDzqwF z*OTB$9cs(ka>o4jZG3HhnxJ^Z0O$N#4zYZxNXrZDUBTz_^k!7w>qpLwM|Q9#(viAT z0xEgw)Rz&)@(!aA(C?mw9eBAdEvc1_rU0*Sn%@*U1#iFn8XW72illYj8tBXY_5$?G)3@p=~Mdv1lL6G__p zW(~=W2Wckp|8_>9ru$YkLVAs9w39H2fAZ9Ue&_SA=e?_RRWLKJqAp{s!f90!V5%wP#Esj3JaisK4^H z_ct~vA!mpmMFM?TUFXwqEwMp`$$}Z=tWbApPeJBjh{wCVOY2|5*@nWJn4b(In zO9Y@xk9TI#Vbv)qTM1&6CL3;C zi~;Eq5qlnff9FKIftwx@**!Xw~ZF6VT zCtCujCZ>C0zDygX{9AuE>N>$iUZQoBu~gmxVeN`Ol+km*^O|+>!>S6F>*AD^dN^Au zXCV&Il_>>2DB`<1W?@$?*+^8k>tU=WSZo!v#J2FVwa$s%&4GcK%*%_kA(kNJyXOb7 z6UME)9NW!O&L(TGqOls5q6Mb_Z9MhZEW1z?r5ZY>v#rCVgL;*~+vmolVMR*crcuAMlyJTLy4Ozj7aMI&4{vWsl4svRc-+m#&jqdDiuV^aWN zjuSx*7g;sx=lSuSE%d0Tl!MxccB=o#s{>F2HI%CBg^%ULTyCgFucyMhMI3hOh}Zid^C6@dXgk5IgUr9O-9RHC!@3p;J@M ze+8qPCchdI9TF~x$6Oe}!A@*W$iEJpck)7(agk^^=Y%qpcrM!2J3)n==~^5Mdo zAUzj1;5P57_D{J1N&eb?gB%xMFYx7$Q=N{5|8b5|5ZFQ|o-R`HXh|Hp>`!c3n*IF- zF_?vWj0Hq!uCwTQXw4EPfcBI)ONST4LoReZ>;plAKrztz_*z{fV*ZAcJ(ZkWsZrLx zm=oWlgBSEYb4#3=kJ2`~6d38?M{)6(JQ%$+c)3m(Cu2_{{a2`Ex8MLnn$p@W_>=sU z*icPFI1o*;bI}1Bd z-C(MoMQ}m7q_A>lC7c`?u|w9-^fHSyws{p}N(oH$UlUXy+5L1(rc*j8i^vDr`L1tj zPNWBYvc>Q4!;LDfhhzlfwyrXm)=z{%^uv5#GHxa6hJVgIOXhVBeq1UI@jmdcE)?zZ zz50e4PvayF{i;%h5$;ic1r9hM9oq6Pm$n_5Xnb1q_bfurqIkEs9&)uZ?XTbc6`EMbS%FiMQuzCB?692BOj^CG2cU|zJjAdy1YM3 zl?`Hbtj0*Re~*iR%??hr%?>cr^M75nTk)JP6Fi@t1IPwxxtXwcS4XLDS3;r=NXi?N z$6^g7Cl8ZqzI#T0e*L-I*&xC}e!*x!9@61Ar$z8-b|#QQk+(#(%Gj-4EOuNz953)q z4*OWFL^_q;T&eKjg!VV^@4_GZTWEOyYMgDObivz5S3SU0rbCTES$!7k%ww+LfCo#&A zpJV(B;=L;w+N2f(KeKF*!m{4F$eVhvEIjhWjlF_RI#m_9YP-b(>OMWV)B~bo(kF*K zy_5+S6;s9;1_g0d<$SIacmehXNxC)Q7)-7kI1NS1dEi8auD^DQf0|4wtPU6A28RJ>dy1s1M>u!FzglBfy=0^M*#e4?ACCa^ii8o|^>4tYnsZ1MP!9h`TcL$l z)svg|q$iJRx%}Ysf1pFb7a}RKy@?9V44HIM>6f`WUww?zsd5yMA4KMIb%=1Ng3i>< z*pF&(4oiIB&TKM9w!Z5eXC+V9 zQ>;kijwA2##uGe`Fv&fOC01*JfxoIq4rPTIz*m=gYTv6|a3!6a-bz(qxJjk$!?@1& z8=^G=o;uLIxfX^Q76hPX5=sXV>&7q8cT16+gm`lGDR1-riVJ?l7jV%Cb5B+6=`dr+ zpccHuDt*^)i(28on%>(!)w9CTg98~#_-W(?dL`eevE)}!mIvHcBqlORX34pms46a>6D*97B{K+Zp%SxOJNDFMN(8QX4 z;sV-<*FJ`;+`C^A(A~%*uzl-nStdPcw4i!m*_sS?xWT+@io)7Bb->vgPF8UtG5q@!Fag~W2orEX7&YyecfI>l2p$UBj?bpK&HjyJszR{6%Wo<{ zoo?K9Z>5Gy9Adq-2tZF?%B44y&*DZy094>X9!!lKP?M7G z3@0?Oj9rX>_$~aiHSTli@1AvaRShgO5m`*bYa)+blu)|kZlk(nhg|q_(hB+-6Tz(rtV))D3Z0XDcWiAg;G~n1UC`7_VEIZW|ESaNF`aMb z5cjdMKOqyCPKp0fjGiNWx8}NG?x-7UUDLY2yweb>B_VaevQB6;eodOfw^UWHV(Snx!tRwl z)mAfQWf%Rk+_bxi{h*QH?_nELrf#&7zsY}~dH;lB;i!1AHPH~Pn*ktbSEO`y0+9Vx zPF>D~&wv~)X~&lZw`j`2TO=V+w$HekT>M@Y`pUfUI#ipMyFk=llS#%bd^2aX#%5UfQT?;E1N6=i;=#>3(~k)#0|u*Bs68w6T!-F8GN zHvyp*?Zlb=2n+y}|9Dv0b3b-tJi4zuofy*^d&lYBu;PBYu22YdFA4Arq<1?o1w!$_LF^7Op@&34oCZs4^qHMiJpR9 z=oYW?QCROTu*}rCML}534gVfRb7B`-wpQ`F1NH8y1c*?DUq`$;_#UK?kV=k<+oJ*; zQ0>C;tr;&ZjbK`B-upq|yY19b$zu2Thjvs^`nDDs5xLZMeNGX%!3CZuL6YszhP2y8 z$*6Ho6{C^RcV7C9dkG3Jqy4aWeQ4m>ybAJhJSzU^1$%#x$M+U+%Ar2V_GQ&Yc4+Kn z#i}<7O3?RLH?M-dD6#Ck5jpa!R#TQxjRimnTONk;8OQ2IInjN)x6&Qf%qZ0P6G;1> zocgash#7= z!>zV7@$LZJl>#D;qGuV|6fHN8whic}za7-C2DpyRJ0cz_7MhbZG;&vINN91Ac)v;* zPBPj)XmOE>98>g@^5(|rc4nF=4-*{bOI_&rTvF{AWe<(%WSb4hbQ;e{<{V=jYi1vF z^tJ*Iw~qjj#>(&v-`94QoG$k8C=x;_sap@9%!EK$C!ig&*=6U88%VFaMkYJDY3^M67 za&C?>P_U@ZDmm8j#0gv)#!tQoY!rX0MnE5a-)III5E$%XyO}(2~L--zx~rCpZIql zeL6tPoL*W>BNn*tE2mv8SZBvRv7ZLI-28>)JJOsRjW@1sMU=U!j(}jzfuI4G5yld9 z1Jhdhh{BSVw#&aI;de--43BBTy5c-j=FMwu3B}WKL;?!w*|*>_)``vNrVzNgimgZA z*zX`rwogIg3?p|W*Xg-Bk@CsP>QM{6Q5c084Y==v-Hgv98F3v%nHFSmMpX-u!f0mP z({oK+n^R5CDjw4d=jEhND2zR0T9cTGsKIV;WMg)u6g@P=XO!7 zIO`ApN+Pd4zc6Byu@8LNDoqa7nUz)89nBV!ZGyXf0P~Lc$8Otahq3CbI3r=s&IM7V z;O122PYVk~?ZsNocOS4t1)(~*#K6H09`!zed}q5)eUN^=swVz!ZpLu=7J^?MQ7~}= z1DJ8D+z0zK1laVA@n0u>m%=+$6j~}l`mfhP%3q67tF4*|tQF&_R8Ft8&F*X*&_jrR$KxK_ z0R+fvxTi`rDfi4Qm7A)f@DS5EDZe90Ml#2}fM+d5QM_O9ubioKh#DE!muinjUG{zU zrZ~wfu~l;xfu=Dcxri(t;7-ySPhQ}7)Nr~0`b)iv@3yi0?nLDm(4|#F6aT3e2~e?; zSVBi>8(X<{j>T+xXg^#N$_5zVN3n@(PV)zm?rfA!uitNh3cvoJ?PC1>6S}Y~!q^R$ zIf#t@$;F^pxESlA15nLUw`uJVMXG&-cB~se`(f;U9m=1dvB$ID@DW2iM?kbaw$0&Y zYCSWGtMTM8&e4EChp7w(QA?Fa1=LzyE0y;tf$xmd(zbV8kCLoq*_D ztZO|S91#$#yBNYXKW^t;aadX} zt!vso^C%&nt189gjNo3@(iL{{gbQw7iN_A?Q!EO_Nxnep5S+K6f1^lAgZ6Wf^5_8c2ME{7L+D> z{%Q=QX70nJ8}{zA6rjT-4bEg9tD z|Lx*gK-^vy@%7q*P$FOpopHr%JtFi<)zxPnefN37$^!qJe;CrzHsgKZ!xS8aTzfVr0#16XxBnpJfc`LBn61b2v$rQb8OUny}ZaQ1d`TAQcb!P+Z!F%1cM zqcn!A-6ST6PadM)f-OTMKwrwgdRCC%GabgNaKFPZO{jii&Dh76WsR(nw5A{Q34DOB z)j+HhgDb{hwh{InXkp?&?cKr8zhQ0lsC?+n-b}u=+P(zK6v(Ibk0x{Wa=8_4g#Z#P zV!z4hfOB;YbBh_v$23^#5i@8PdYtXjc7!}bZ>z=tS10hr@z0UTrt!X9$~nUz4J}1{ zBMM^C_TT{WJ5k}u!d1Fr(%9aLq|N_8IYrkA>)}}zb__J5#uAg75pnLyZ=Q~`D#qZv z^_qtnX};-zu0p7=4}&15cdj^@tT((%HT)S5y5{CRm zp#B+G-*Oz?J}JOUqaN=v{O`vVjlqU_J*=HPdlOg5b8)qNa~_*A*9CUT)Jj2W zD<>F1ggv=MNrL{h$m-AF%I>^C)6C!?-33UiH9YUB9T4{wjaJOF|3iY?ytM!d5vU5S zlObN9lHPF&0gIuIqi#v!Oj%Xc&rUv``Sv<0N|bCou1m8o(M;YPui{C(!Gwu%f1I3Q z^-OLW)DBV)5gv>ZjA9i$<6)cCSul^_A`=uSYWR^%_8hI6>R?jKKY)21^Z+mplbJib z4G525&@UxJ|AP7N@=>!*&Lr6}ZjmC}@0JvO2(WOF=ZA0GvkmRg-49b-pP)LgkFv{K zaxMfR|BNu87fuNdtyLp20_YdSnqmb9a98#Nu69L{k$AJeyEt-tLVGCbT{e7~;Z+xe zm0g^c|L>>C8Bv>IDa4PVIRiC~EkslWv&O?}CmRJeld^b<&EPG<1G?!Op%<1L&-M8r z&7)emR_aIPrX`%^sQ8aMnSm7hW68702cM90gKrDwYrxZoz4o}7@(;5Vnrrbj+S3ZW zhN@LZub}2Zs}7n^pT=Tg497y`#D83!d;xk4zJQmr4&@(Gt2dMQnFE1?x2tU9nw> zA2@?_Ue|Hco|(XgZFr-o;*12#W-l04p%f{-ycy zKPbLDx&t&cmcrc_>R@N9Aav79Z*hP@5PvzY?um2zz{?7>GJ&w#loPJIPp`?Jp6RmG zzbD-~*?YA{7ywOc1*Af9}dlE z=oM>da5SOI``qr0u93@j+Nlo?oSB&Mz5NR-x@*t)#KGH!5`{@%6s^OSl>a8I{>&$B zLpeGcZ>RWlVWU2rV28iTrRJ;oj!?6fDu12o^PX^3&J9!Hx@^*ItJ|hhajy0Gi=`a9 zClTBN8^M^$967vPuh{n{7zW8GLlArVO+>^Ht&A6h=fV#9g8;`$$m&(5Q}e=BbZ$OCnBu4;6v0_zIXY9&^Rw(Bg=1&Gx$D($M%Fs6B@ zGMsWq_nJ*S@62>AiL^B%cg&@`PA3`VJlM;#D+Sho7n+3IfL1u~so(OC>$1Wem zYa`K{9p(AAtM(QQc42O9PeR89SN3+zwrTG;Tf6pS z{YbljHb8=M%WwLpoDwH+jhSg}#e%W+9!*%G?pfL@W!|@L8-#Mw3w$wRo^f5#n%97h zI1VRzo->aq5l@)J4&3Mb{G;z9S~uUhZ-^R}R>of74gS})G4ZS3{gv_S*R)K?ig`m@ zzei3LTHjl@qU1~9BT8LwPz{Src~#9qgJSc8&i84h9;2*(HfJEGQBC#L$~3wmHjlL# zsXJs>SM+H7vCm)v7wNRUG_ROB|K{A=W)r%}eE-{AFi!R&lqcrKD`LL&+N-DkK>#HZ zHpJ@o_6Nmmh9n7&gzIf(wm|Xo@HM!N%$rL{3Hg5@sL&8HDy1|ep_=4+oJp-S-A!pRi&a8j$ZUkI5pSd>je`nvnsEBXY2@+g=Z?qexEFD{+8 ze@N0QoS4_uwZHnHwN_M(Z7SqpIjbSOhQF0+g=dvMc?N|tyjA3f7QM(ZP^R! z1KxMnusRh@siQ8Y_O9Td0o+>E{epu1*A6&0|6qxKBF7*dS^<>k2kbq0nYM?uPm7?= zH~sjwT}|OHvqfjlG@{Fz5rEQ;W-Y%dT#gc4N@;X_1o*Vq5 z?Z*rVj&=UC5i>JbcQeDo>s4dQHBx?6aLI-gssxwDxvpMsMZKnaQ?FOT%;R zhs+~9G48W8*M{FfPune`nggkSu5%yOtTfWF>;yi1wp+OkL?p^T{z9H=;08kE;LdRY zB=*f1ob*>?BuXs2|ACa}ELf+l@cHZbn^4M;R;HgO{+T--BMiKbK3KBSAJzTLC93!h z@%C9m$0v1Q*&{k@fL^)`=d{`^y=QyKyRvIx?T)Q5xQ)^Q<|q5~$AYa^$2;0r`a*uGFjdmH@OCYKSEyKf zan-4vrI-fq12&*Or52e#0`w}+v`a2+uHZfP)V!|ng?EJZa6Pz&LX?ixRUL*5p#AAe z(A){uyL}CU(obyWNF@S|SD}NwT!vhCIk4V0(b8*7KZs*Ptbuc>-tyEqDN1^H0xJE_ z!5r^x2Lu!Vc$CP!vwh3I3A*l~iRH@Z5$P?^FGauQto^~b-@RiUif^%|Cv~z99{n>D z_bG%}WqxsZr62yO0@%&Y(vVYoP4hmh5shkgERUMC2!RX0Tfr&bdICl$*kK zSo)Cv1ZsdJ1M#*74nIQihP8hD`~ zfEr8-FoFMVxp~>fQ_e%S?gk>Wr-~&87-%rW6aw=d4VK#@ErV(_b$k%?;yFb8v@#r9 z0~+ZfqRtL^;L&(uMPFUuXt38w9I6Y7K=)cIJ^Hn~H9JPhX%Zf+{RcYOePi6mw~mLp`SCCnxo*lq!M`tpjA5hu zK9-tV6{vT5-b4ig|m- zxhmd9gS-;5y;(hWl;hhHudYJg>9lIAau-W_|U`e zbeiPPFoF{=?ppFa|Cx!M8xF$3^h1?WQ;M9F?Wvm{>~4=-4pmd|G?l)h3c$WM=NO9e z4!z-@W*gCpoHD%otFXHVz=wyj>B8tMQuDTcs=)#OJRI?7{K49jISwf8rj7dObReJ> zN4m@`;3HRsD#p2>R=6_T^^q@;gg3V2faNY&IS=Hr24kD7#=5yab;BJ}K=@t92UG+e z{Mf~}4CQ3KFy+8n@>{(}gOVcOc_4mqDCgj7j}RP3y)7V@K-Y~o3!0p<8M|)`Qlh5n zoz1#LyAg($X@WeF$;fY)#`d40pIr0n{B2_lIYf@$VFjMmcKDzQZu&{W0>H9gX6@!i zO*|i?iBQ$Ov^x_bL|~FQzA5O7#hnLxcUAfaqkxX_!Sgws#67Ff&e zcFuBWO;c#>R@YH4{3P=Sxa^Bm#00|v<|PMLp z58B?2s+n1!jd8{~jNPAXaE6|!w4FTIymL2vIx(vWg5 z79nKByQbIA|3}eT#x?o2VR&?RH`3DGH6%q~z($9}KRR0wNO9@qeH9Bj5P2-*aF0eVylVM2NaeQ&Lr#Rvzn-Wl)jZjE?pg?Me0O=W!Gz#-W?``E8&2)&^U;5Nk$^6N9=(Cfo;&o@n;)VTT0oT_$-YZkV;4K)T3Eh_Mv+%xRDfE4hY%QFxwNt}B)6!GL z?bOmVw~$7)Dd}-$8g@F${9!TLlifwKbuJT1D3ib+Pv30@tcmdM`5;5Dc@w5LG3w*p zwBcZ_hQufD{dSTDb90yUJC6%(r}gvFk^1Z{%}Eurw^fA4zg(N?5A8^G4PN%HPzbk9 z=_L|NR9LH)=IS*^G?R(B-W?(bOplA`UxaO9qlsW10{e|L-Y)Qz!!E*)=5(DzK^vA* z;?_Edq_TaV%u`N-vsS1Qn)+eyU}b#6D-P<6C9&ZjAlHF*H0ngdg-!-RIHc1MFUc*I z@@u{5HwC8f3o0iK%4S);J6=0K!aMcETJBN|%xZWFM%XKhr0q26Af?Pw4(s|_-ebiy zdE%^T2l21eHCfjewrV9T%?hFlZ5jFa((m0Q>Lg75RK^8-Av*cpjI+%9z4UXp!Ai8( zNxVgu%mM~yA|P-rF*MY^L5opm>W~$Fihs(x(}$vsilG9m2!gb4RWCWIW!7QL+k^Gg zZyb3OBE+*x&FKJO{L4i|;5nEnv7mtD2C;d>EfO$WRDLZv$e(ei$#ErBXnsO(glVw0 zZN5a=7Ndu=UlkykZJkzGCJ zLA&S&)(`)*Zd1^IIn#AU6ex0LP@WZR4bZqP4aY`pt>+_?!Bsi^rt z^4QnYQqD;~$OlEsr;;SN)RhP(kC-L7r3d&vAH?ESze@`2s$qtu+w1ZdVMzpTFwDdE zqiCJm+y|*szx5b@^J&OYRBI{?(=YcaQbflA9WPzZk8}BhjcPN6Y_)w7pP2G*g@T$+ zAdlo9IujtAgqD-SPm}b0G|j6So}gcM8+7H~*VSXvtJ4rYU-y{D!e!L@A zXXStPTOvC5FPO%D8)~Tlxi^@iKoql_2rx)C9JyQINOn3SANLep!^4?AT1A%qw&q41 zxQP{-I$~LIj~sff2}mhxd7;jAyO#)wd)<|Wf+!H}{7kBJl4`aUgpu!Em4Ua~ zEiFD`nO!dMroNl;bXi9D8tkX?*EMC@&mNj1@k=_|D;1o5jl*Sz_8B5s%4CUGfr>|^FTXpW@NHE;dYW7BVo@AwhmTD4ENKFBvB#3m_v zx;tkU?kcN}Io-5wsT5B7=MKy7Br#S5dY3LiTS>Mpk6UBnyqauXIIsMZqrWZHMpmu% z!NYrlp=~fBS%h7poQ4al+_=EYQ!7un?hb{3G$lW#*_LBH>W+~$(1X3{g#JCreonj^ zoHZ|UzL^*FA80k7;UFn?Y;UkLmCBv28ZQvB-I~8GZQaC&=l7e_l;ftQW$|@*sSLcv zSiG1YUS$5n%F2$(O$tY1KHhBidM#mNhAGl*y5Aj(fJ8;}(7)mhRBi3-K7k)ysJjg} zu6N?1OqoKK4CQm3BSch{KeZH>kEi^2TjG@KRteuc!YR?nCj4T(YQPpU#~Ba3i=$;T zpER^yCh2(p8CM2Jojd(@-1xnDh&ujEgSv`)KijgTS)?Gl9n1=;Pz|!)SRG24Hkn;^ z(YcWPY)Kd?SJ?P??GzGoI_XYp_~ha(Z>A&fw=~0L^XAA#=Hn7fc~|w`upO3^mF+~Q z)rrjaA4F;InO$+Xe>Fj_6qflp>cF)IoehAMpSOh>#v4Y~yeyf%Pjkc_(C|7bHA4XJ zDw@rL*xArjSFeh=?XE+_eZ#N5x{Ku&oV8BC%s^&3=-8V4C9=*FyF=;pdDU6mowi0X zsRyIjy9zccqCroDhDs$hy(jh+lYcwBAK&*>*WYh#m8KytrCy$bmM+gM*=8Gu%IR^1+ZcEPj=O-EdaSN}LB z2%opGD;6|VSHVU@=$dNc0!1eE9>~AZ{Di<%n zWmBYpc=VM3yA8|!fV!I@$%dwrEzoqZ75ar})i)}Xy?hu)>>oIf+t*4yQ%?Gv zT~^~THp&|pI^q(7|B^l=qdETP)E2dm)vFhpmWl?@y}f9B>1?HP2{K$CoKT?0hMoUa zB~(#k-I~}zqqIHt)cDk3uy3=<#TCFhFz1f&&W$~Hv5H-|dxMY(Y`MM{_9Vh2*L^3} zZ%q$LHAPqRIvX=H2i|FTw}y$dd^Rg+xX5}2=4tIfc+6&Fp+NI~-8S?}hf1voFbuQv zu!1X8;O-p`CS$2A<7bVtQ3Y>p+zwLYKKdnS?~8xSrSiIN;Ep(mJy|AxCz&#BHht8} z>{iDxO*~AS@W4zb=_k8S$FJIq8+CNeLYusaV~n7M(;0Ru?bYP3E*S2i%#mrqm{nQL6c)ChNNtvR#qw#!I zfK}2w72oy_N{u|YnCJS#Zjz_rJ45k?RVfo`OaL?_sasAhrvQhm$b`h~=x63sHw_ne zec;aPD))JZAMxn!A?~uacR$`kW4~3STW9<79P;(~5UKGUocIju`nq)P55)_s6Pk)22t;M&D_T$uzhEH`Hcfm{g=c z_II3tCMs36b(6Go=%*1r(g1;eDj2d=@+Eldc!fO0m1f z(7huwQddJb!QM*g_?$uMAEs#^i@xbjoQPc@LxmTwU(sJa%i>6a^0`^-=?g>RmANx}@ z4NLaM*L1J#ezn$@k7FjB4*G(jbb5|Zdx85G^uUkK*?H*Ak2$UlzR}1yVZDDhY&`4# zfsU8;p1ahm!F7Uwy`l4}TiOVxDwVbG0nkIOPv)+k+3)XnX2-j@AE1Ce4h-uGq*!!D zZHJ$OciKij``8AeI?T(PZ$r)T){dv<*JI9!ub0D@qVa02%}U>63!QZx0FN7*>z6I2 zz+1D#T0drmq6FW#yKG(Fb6Fo2e}ADs;Eu9tFefTc0j!sCn#7j4raweV8fA|mN_D}~ z)&($nYUReRB)PN-8v0{&@YKlm+p2T8_fpnE@In_NTD-fytQwI-3QOk3`ByXG|4EWL zvpyWnHM+q)2#>-=8w<=d$Hg>@N}O5pM6^h=9mEg&r(#O8Q|-Ci++{rtEx|(os-Ba_hQ*DblD%5tPsE%7{XnD&YUN)Tb z#4tyK^I>D_ul<3L{cB0*jau4iOf0*`=N7{@I(~B4(m}Qij~3A=smO{>(&CV-mhEa~K5&=B4d9Ib! z&2o&s7|YJiKMJhC5x$+eW$f16iw@R%qIoS4UA*i;Jq4M5ujLL=GwGOd0FXEY%2;IF zW5tYWdM)Xs_aDC%Y|WFt226Qm95aO^4CfYgk^boHZ5!Uj;uG6#*|I??GPA-rHG=OX z<2#FbSIE*sUy$Xv?gD8C_Wm~&=z_QT5OK+5ePU4vxRigHsQ4TFpd-1C33!67V@xo$ z`BT95?H3w1BA0PcOBJg9vu=l-avegvAHhU*Hh>cs68fo2psaRcT$ypV(m;^u*OJZe zoyb)3?J@=3Ie0DZqbebnX_9NBbze2Edh(4Y=ucr_O>^F6FV7IE$7R2*J>`?>WKTAl zko6djKLXYN-6J&BEEV+rZjrU`x~iX`v*{8p6}J;7^K1xzn=IN^KUffB z3%?}UPq2|Z32EF~I~S2SXx!zRvn7!#)H`QRdU^LSXpo$$7(}9Jzd-H)&t8Va29uzx z_qEyg<0lAb4{Wu1C%*64+s@}{XJqgelw8^)s#zbr+qI?Hnw)>J|Gj~g#YYGIe7}}8 zmd0IarA*A_^(B-IPu14Y)lG-XoSnJTk&dSPU&TnP=an7msG`WE?>jAg%NP9|JHa4H zY$Fjjb18yc{23C(1NWHWn~R&q>rDiIOWqZAnh<`mY~$NOp85?t&faid*l%Xzpq#SN z^&-3R=((_yF|WiNUV~p#{%)AI))=eHbD6?yhD%$&HCQ2(A7}8m|BioTVfaFK5&2J< z*>cvnqpfu0sBo!LN^oKcHe(TLO?QSz4ukP;pE--Z(f|taEwGKSLNNH1O0x9z6xIp@87Z%VsSS4~3c25tQ+X zDqm#tR3>ZF4;oS07Jn6=+6s%?`Uz#FVoLpyWNQHf11E>-RW<$t(OACpjF!U-#1ScD z%6x=!G%3C)sx=dNw4eto0#&f|3$MX9AbNguDh*8+7FG@-UiJ2V z4QqmV?~M%D&w&;rqvbF!8=oNE#*qVn@1(oZD<(aCbYk+A3Dompom(*4e7{{VikpP| z6_?uTs%fjZf6{PWx*o6cCPofeFs#zJ?|Qe|HGG?Ynl4teeYKxb>HhD*qGa~)J_AnN ze@0c5YzGYteSi1kE)nCYo(Gs-A4yoOsJGE&x##XO@$e`9!E zwn6n2@*T!Bc>D^bJ%>^iAt?nD(}+Am5xfV#2*VKb**aegP8ho= zJK$jA`od3RtGHO1o!pB%7$kMAEc50_bPTIkmCH)=M`x{ZmamyJt=CpuUWA4Xk~_VM zOCAv~i)9Vryr^5lZnqdrhnTyh6FEViiF`DtemNKaI-T!r*mJGP5yt7ZM#H*v5VNz= zP|ROT@xjvE{WqURh_J}%hCCKQ7{z}e@+!_bvnf%P1_Bf(udyKh*Gju zoVN2r%Z#3ci!zq_N)Ni+6@S_w?=J)y1|0nU1r>hvyPnMEY)JGc&6IAQV2G|uoBTgJ zkY>|spdywbhZhQ-u1Kgpv;5(lA>%eyYrBK#0#7q8%EFA0hOZij5~aAbWHjOa8#|ypUw7@>^0e9$b26hTs?$9`}gf z3vian0%Eg-ADycLqrCCHqLI9N#X<`rG_!Cr^~*%h_JP+r8z1Gj69j9O3pb90@~wxr z9Q)0fQVJOQrP#zGM>H6pY+<-8=bzZ|Rc!|Xzg($37HZaudelFA$4mZ5siBd}L>q;< zqMXFIRm(K3Zbm{c3g3_ri8MvY+LBtuylm1T&@a4muze+}rRf0qA1GA{-@I&N4vxP> zEQ$UPl-c-LfCX#gfFVfUT6Oq9hso*7P?i2%0JCijTW;)N=AHQjY%Yh(81o zo(wf>rD~7-(0J{E+GXW#C~EYL=CTcJ?t3TSmU4xm`UN$p5ygbB{3d6apBV-`~yM`NeVQxLJMQizWiQ zaM2P~@7^QI<0AGF=lR4kdxRjLie1B=1^&j*e>ynzVIZ%Tl!UrRakjN2}6& zi*#8>#4q-tW@1L)>s5oNGB%229K1Vrll&SupWnVOU}ISD1l&L1g9;MwS@$#ZgyKEG zfQ{)^yGCYeuaP+yNYe+vs2_zqtU&5tfGNi0Z8Zj)^riSknOE{ij}jRauSD@MrBXQj z^MD#}oHu>;5XmZ`LSx;Z{+28eq;bxNUZ<~cyUQUL$^J7 zbsBmy${%nx%T0Nf%{W=TYL82~YIs~M^?9%T?b(pF7UeFf;J8@R(X)MIh2pAJi954v z_&owA^FmI!Xd<+J#aytwg@@*Et)Fao*grJ9J)6z1E)zL#VkvyAOsL*U&fQ-t92#*U zksHE4xZ3Z784;^W>1q$AK4l^>dVD!=%)ssZet?@L<4(1tsP;PxJ}X)ktNFee$~AT^ zRrymneo&0qg(7xi=@EJM9uyG@F(}YxaT%_e+D6r-62J^Nsx>|V%SaF^eT%5>_g(-E z(9cTflqw-?t6Gma`&m71%$?Ff;g67A{(=niODmkwrtpXm=#IqP-!C5*pt;oCOL(Wi zOIBn6efsfxYN$K)`4cn8Ttjc=p}7EOWl*D8Yi>MXU?b~~mFzZ_g#%eKV$1Iu&_uf+ zG_G3vrIrxEqA3oWoVHB<#b3gcA zC0cO+PPA?MTj*R;qo`_YlIye06Ss&45`RT3txdQyyy-pRQ&AQn&Zna3T<9^?8t?6# zQi8u*BA*=3%aJlf^)NCiZqK3G_T#C&-x8J?$dikj|3LLcsHqRoe8iul0^0jcBn{PE)1;T$ZU-55>y&fqI)AvqzCVfqgNy@Mt%6_Rz>|dadWvD2VR4HL${J~AMQu?xg z1(}njIJA&E?Yd6zZV%vXX-#qp-a#`(;V@%=Y|Ns-qa@Btb2X$%B;PgHv#TYM zcVw(EXQN!_nfGht#c|rIzxg4ykQSWoi59##dH1vCPPK0=o$Y;+gMnr_;AP>+10ANl zUa0;vbcj281X5|UCixJnsp{}*LNkIcDlEH+u{OX;*GAjyn&*+2veuEFot_Xk^|Gy3Fob=yDCZAKQl)|I zPBim7Egtb7jXcWUty5Ek+;>J|o@wq?T24)V3&F|^LoxO-2^5b65O^Kc%cXplBxs`TGVAzlvP5H(MZ`M-Fd`9~_ zg~$)pO?Hd{Gut4?WxT0zJ#D2M1m}zA(PE>8BjFz8DdtC8SIJ4{#9oM`_I0I9GejZf) zka2;i`gKQ6OKL6UwH*!*3Ss%~gyd`o6!EF(m>rRd+-#P~ z-Qn0ZmrbKwC)oVQEd{Sm9$gRR?ugHZS#K;buv)O69c1w+trFm?==5<_=@65GBYNhE z&Wv|7)0J29YR8tf$A6)?Be(Ye9&aTYPY%0h2;_vFzcL%E+u{e#oBPA1n>hdkU+tBE z*2s08=Q1HHbs(vfbTszeGQ3W>x_9LZ^3B@_A@kwo(?>{8%a1!;e<$U*=#{jSZ;~Ya zu=(73!F%x@>yW>PakH>{xTiFhl)QN zXgt4_rmXgOK-TxTS!whBN(%t>(}F+Ge#m5Sj-enuT(hr6bD&9&&LMXX=RZHQm1|qY zU-gNPkxjWy+*TPPHDrle%E{SC6)H1>y<-_YUfA-_C}Novvg%9if*QRGsa4^6trr#} zyR7*(nc&qK_)>(-Et9F)Na~+~ySS9<%p%Kmi*b&W=|f5b0jqke)kPB1ycZX;2~q^o zz~#rmBLMCJA6IaACy{GTVxfdFr9o&*aZ&K=j}mqREKX>zD=$Z+738fZ*+EJ1?OZ%V zsFd81I6-@IOS z*O~*OA&x|HOo+m~_nr@5J6{@3i@#Cs{-TYKd^Ew8Z#q{)rQ+8d)3!{QWjfbPSF>Ns z;GyGSh9TS4$UojCahy9{B@_tWtDX-sZp=YbxKyqx>0FNO+{@M{9a5wH@O3_fgPzeIzNVyq{MD$?Sdto*p38z4@-adT%=>WE?%)%vt* zc7y%Uf2v)N^9jiYxJk#I3JPUCNLG%ZUww?N>9`+ z{8hY}9o2Z3%QpY$`rfLw(!1fXbUnT@)J2cetg=7mBDN)4;;~Xm^N+KzN)~P>wwJ|D zd?tERjRKABP`Z=7E)(LW_nTdJig!ir=e>HLo(7)Z`B#8=YdbVEZLCrPj7zrQUPh_Gq)YkfR=_K_Z=y@aJUvJ@p9$`Mk z<`K=S4yz_}R@r)}wP>{%IUExI#wq9j{mFYl`{KQa7crX+mZm;~^~vioIm!1enxFwY z$VgtIc?NRwYVkZ`bLe{~Kdtoo6nry<@sTj}c3G5T*rY(;BZFw+wAPMio7ViJ&EqA_ z4GlZWU7uK?&<$&t&q?(V0&ICWH7wssz{4r|M)n_-uDI zz*<(qINid|ZRimPsW{h(gkLImj(s$$`YmNE ztXRzbPIVGtvzz^>M0ZG~XIO&0b^Z%IjraBLc~SJVc}z z;d^b0;Y9PXYmo@9LXL#aEu+;!`mcYNj6FnAX>Sb`(X?!HNYLy?0?yocfwrpQ zW@|&qKHIE^JA^LIt{q%f1AXEtiuzj1s*$@^VM-XfFp;~7v14$%lvWFykXcUhYS=Uo_~ptuXg%Yn~u}v;C^!?-HlKH0#>jUSBFt0c;}K zd&ant29^cbZ!dk{E*!|>yScZ_P|HUNOgvufY>+L-QG1i3X=@^vDT>rjz2zFJrZ{C8 z|13%HazCDnHEM2to1y%~>e)Xm_^tm8N%2USi}R?V7rI{opNw6q{lTaS=J4Vp(eKx> ztmHY|%ongrQKsk3a`*jGH7gVrAeWWZyJiL>Qluwm(een|}lOTjdUee2L7s%zLc z^wbpx7v0ufskzS6dF3f-O zY^YWI!>qe!x38jpDf4l!-^1^kw6}#mHzuc$cY9HDa=bC*$@l<3(0JCy*uR!HnJCWp zpv327NaZmoFx8TZRQ#@Z*&2Y5fcA&Z3WRT+-D%~1!W<_r9=w`V>o%XFwVhcfiszXM z)AsT?D1`n8lCE>5C8kwd1(kSeKCTLO1?(@+O2FH|zLZDW14UG2;lt_0_>#T*L9%db zgUXSZ0K2OPi?GIBG;<@Se5sDXc1)VG5#XZbczxvIynVoF%SbU$89V zV}Y1_JLuQMM;jFXhX0`nI%2V97q$pZB3o6Iw8yaG2&3(ZAI$BPnF&a=2{0%ZhEsfn zY6wdD5FpX|wq#TSe`nY=_gL9{kjG)^n`!K0EJfX*O6i#De}QY$j^|E({7N(G?b+|f z?+I3g*5&fL`t{Cjw>nMr;xE2ofvJ#v8KftRx2H|&Jg9RyGtlnnIK$RV-3%ok??>UH z_Ew22i}vz>S1>Y=!(Ud5YUgc<)FC{)gDb(<4!5$nxb#XrCry6h`2x`6w8A7j`gcvbK@ZH1#(EF;_{)Veu+z})04PN#<{{7%wbBpYWRvd{Yf9J=K zy+&dK9()_~NyDOjXYyOmUZ+e6Q)CGi2Y_h_&+IbC8bc{nB(u0eu)iLa-WAQXeS|^Q z*5D2@aZ1ZZrI|CI6A~GiEm-y5w&2@G20>K(CelDrj(9@zpRrRm9lM3BeJA$Pu}9}R z4{TD-At1ujB$r&stY1L4zt1BV57i96F6Ev0kfMF`vmJyzs6510sLlsCBA=XD9!fv~ z-DzT|vtegy(jIuxiU8l@7grkrShtxJLy^i zhHCQL9<$WQ0YUJBJ1=M4KkeWkAgL`2`N`!|nS?jiKc``!Sz;+V!J_3(+wtL9r=wMg zZ$W#CJz?_kD@cL@odyhxTIm*LwvvW&D95hLD-i#D>?e^>4Lr~R+1 z==*Wr)HVB^#(6t1YY{Vl$67)Bk0ICi7;ns<;TF6mTvhu5dFCaelg5JVn=W^ zcm18ATtoy{$zodceTRbbxiBQY$M>`0mz2(?ogqM*0-nlP-`OBAuRe-ws~GzM8Ud_O>P1E##~*WB{#N7?Nj@M|TlUgcav_G+ z%NTQGW4XTQN-Kdic~78@&S@z#09b_$xp7=|LR$PQkvvU+-0=;mkotUpy{H0YRuMLP z;QuMs*+xrVLg|3opV^kUzOVemZhCR{M2Gl~5i>+Vc#G&Q%CL`LhuH;*zdA<|(|SM- zGD`R7Gf!}3ZmeTVJV?l4NI87#j2MkSW!E#q4|V7*Ab)Ua&jOomb@&6wn&QFONsG`` zo8h6z8Tq5-fZ>2=4$<6VKM$J`usvtY<^3Ks4DV$d8uZ|>gfh( zE31et3M_lGZv9OKQ&2>+E%=wsOh!pK%og9&%$=xNzsUSlcpeg>(H`rP=+n%=?P$Jz z17xRt62>=rwKfTF_$3F!8N>(YU4L{i9rqjhDVTn0Sbr<<6duLmM*}({Xut5=-pl4< z!na5L3%tL6xFg?zL!E?xAAe(kQs#zOmSA>2Adi&eUp!3cN&Z2eQ`T<6$I_jyHEve) z0>XDwP-|(hE6$7J^gjI7`m6!3J*tZGt|_v;h4$D^%P5*bc@P2*Ti5nGR1 z>ZcDKZl4Dc{QD{yccf9jQwqG%P?e1BeUjF*Tg4lkYw&j4t2>srIup#n#I7O8mz3s) zrUz!1A%fZDlj73$n0bk-`kgnnypam_?mS9a=549bf}{Sa?3h8p!q2kl@#U9oA*cUf zZUclbJk?t<9HfB&OTnMoE2et+W&q3VoJ&pK=UUPAabXeaa@ru>hnZ8CmaBvv&m}<-*tQytN31 z*^kk!Yzfb#4pENRA)wq9(D0P6bmy9-+Ii7W&g|5e4;X7xE|GrgJjK{cuwDd29L|+PUO=gs&E0h zJRnWVH@hNY=y{rnT;z=PfwV8|w<~vc;*LC+`$s5dGF|92Ic5Cz=n0j#cf7o5fe9{8 zuLAg(GPRS%3e3pCRVc1&V#Yl4vMHGBT!BR zXuDl0O&0(Ud^aI%ef1i6>47p&t#ihebn<3%f3Oe&^ete%@4inH6Rt96(6K6M`!8P1 z5HJXxC$)QS2zZkUfBFf1JU*4-*H#`=?8Cof{Ec^l=eMd(7x^0?1@YKsd9g3x!w)15 zntSIqo%E4=_`>eq8xD@k!Gt-BX%!Oi$FBU>a7pN(N-15|VhQiZ_e3o(lq5Qt&|THee?KL~Up zV_|d==PfG6nf#f4sdxDS%SrU+8~?N+0u78`ueC7?^X33+j=VTdPuLbMx42aCjtwYU zinYPI_3Q{ln zn*4FgPjx!(q(kgxHtiT1|LF#_=G@0ju7+;Bp*KD3)%>j>_5c^@Y6kWNR1*4Y(B%9iA0O7{16#1nT!}Z36uE`RQngPmz1k(x+h|tFnTmw zK5?&gYQ@&e=+v1f%ep+xeAOniSjqT490uaN5yK51*5+g=7A_43JY`G>@)_XO`Ssi( zJm!di=e|}C{8!uXXTetMPf4U4ey@soqz_TVPt{r$)|<4XJ)F+iN$v0k({{!+Sx5tR zUFKSmdVdFA3^3h@@rn6Y+gE!odWpIbB2mWw^RoA9* z^g0m{Ia^~82YHW ziA{T_NMzx@8;G~Xl1J_U?OFofOIis5vd%+oQ*eT;XRvH8V!gu_96>d8gYYjwuA=N$ zDDI$!*=o5>36;3lRXVgmtz%PZ@ZEdUrw)LH!J@-9+GtKNU&&UxfV#R{J1xmmRG`0F ztkx?v9&>u3I$VZuQrJC=`@QVhmSxb-(hGYDe`qzp!bEvL%G}A2EJ{Bu5Cb}=Y{-$` ziRpT-NJ|U>*m~H9lq(3A!s4zeK-IW@0Q!d4*MkZLc&p$m1g){1hc} zzQPgxyB0qptyPaI>eCzzkMyT&VBDN)0S{+wa8}-PNqV2(dTyK0okkUHT$@(&dRBqq z5S4m$3X}7DBH8dS%!%h!&wn7uFT}qxfmv}Wmbh9TnP+@c-w0BII~&B*QkO$#!)@-< z`b~?@=rZ%fiQa9Mo7rEitqD3jXYJA zrTixYD2M(7{S*g2Ov}SI28e84LRy0m9{D_)W%t5Q7`qxoim$bvDw?>pMd$Q6;JqDUmSTL4dlsIM;)sWxIV zWvkvgy@0W!DWO?>c{M};TaaxV)%3ibBz75Na^+N(sKSu(-dInIy{^WxunC+%^$nH5 zdD9>H#-ZLa3)F?$)ER!shV~?zkarDm1y~*&1M0 zZT}p8SH&I|6VJVsiIED0yrHFDaQ8TAQ%INW`a~J4^Q+LId8`)!aQI-Sz3PD@_0w!4 zQrTvx-yeR$hIl_!YrdCJUM0P=u8i9-pnr+a686MbC+;=wS;tIKH0s|wcM=@8RKyVX z+xpfWabL`gr3dVb(XUC5K|y&7uM^S_;LRg`EWCQ(uU~;h#j)Rj=caxgga`kC%d*@3 z5UT0?{;k@mkPJl*DO6NE;LzGiB6nwvhgAA!nLM!RrrKVEk*1_!6y;aETS#%ETW(=? zl%NZD{}84X8(7+m-!mDU%gfR1GyCF_4+Z!!%NxHHWG>S( z#PX?ERz2E81`gxQS)(dAISIo&HglJNVB<}Ei&XqGlNxBP%60;L=51zkzo}oR!*mi? zEzrN(SF$YEF})tbU;9k!Ma=7uU?u5?KYCpAWJ1O^xwzLMxNs@0Ce$IP9_D~C5Nlyd z_8)f`Qg33*(Gx_=i)jN?4Wk^y_w3fME>CN_U#vdOh-}41YK=(Hzo$uY*YyW96DCR5 zqKjV?Q60O6A1C;s1nJLYt0;}9{8|#}s?1}BMuCAKgs%lB#9OE(+3BjfN|>P~V)y

vpg^I*x{{Z;ahiq1ojrj_7`xLaTT}{ z$UsT^aBv-;FWq}V8n{9GTNeZJgdgJhJbHdoY=)jG9U=nJUd@}qwo!>XUx@nr;^z4G z@GBYqS%of}=XQR&t#GFoR}*89ONDq#hYJi$SaA5%*X_kVcze*w&E;8ulyz6q{bvn0 zhY1aD$b1FugQrm&twjwNL@kawYFo%bi8=5>ne1~2`Iw8HiO}Yxof8TwC4+I=^`>nEAsS}Sk|HPIhjH>lb{Xtzg!R?zle@;5vskl@W$ z%^kX{K=+jFmq5g9;KeU@#t?tkj&K!BP1Dwc2o|on2lEmhS}=P905HYtPP**yl3*E( zOUJxDh*i~u3PZTO%LhX(9EpvGLz1?S92j7lF7Um3qd%8jF<`>7a!A4^EuJOC{KgJ` z{Sthb1CD_6=cRwc+I?!+9qKP)b4-YS(i@Ng^So;PG3;XC7p;JA9E78ge#{?H^`fFr zc$8{>zV`0m#g((Wkmj;E+Sr>J9Az-qVA_UJR`ml=6-ae68w0<{_UtjO&YMte!gx(? za|F#PnXvk62#>@+uyp*hy`~7%IDZ*lv>i5^=Q~Uicz`GrysZLJ08#Zw$LO@I_M|Rt z(7NZnqOwo;A9c^sRO+~*~Jd5_o#LJYH&*j$Fl94_nYWy0`<3f@i zQ@9^tu9zE~v0s1n;b2?xdU_aiDnZeJ<+1#(=-8h$bnN&taecFhWbhtvA(R8u0Im>Q zIKDA8Hj9>emGK7M!z>$JWZ(WT1U;uvx6>)?UgT(*uNCE9-{12 zOFgJj@ucmPIDEUV-?c*8xWgss8?~PZolRK~eIpd}hm_kg1~nga7!y=UT3o>swsMK2J^QN3UAKhnWLFIPl3Dz zie2t1AdAnU2Rr&g;)1HFO!*O0){JMe)RDIJ<1nYF5&%6T)TIayKLo|(zO{0Yn-%B1 zICZ9w5LcC|897`G*K{S?b=IsS>}qe2vW}y%jZ<3=57wMo`0=~0EVVHfbB2uNRpyJCMWu2>v zpQNV9(JiyrTSPs^`gG&FvJzykSLF@|C-{f;8{UsRL`bB9ef!{`?)ZrN?3T3HyzS>h zDQ+vIpjfASJXB^wrTxdI-JOo$XI_Yq$0mtqmh-$tvFA`45otm5M{0Vlwe(x{Xe7m0 zsu=N`!0-onC0FaFuB-Ev__PF1V!YIBSN1aH2VR>NcQ(-7E%oyc`iG&P-_B1@u0qy? zC`Es8>SO6m-?mT#5M}`zI_8WTlFP>HI)B!rXj<7dC;+ff&<@eoM-Hr;`eTs$py?&c|;<*O6>CeCxuHKUJG~ zt^MFeekPsv7iB1#yzahR0RbNB#IH&fKtmLai&KYZ%_%}5Gi`>~V(&h^9o zoQe^YJ8KyQNl`zC5_e?xX>$NWB53x+?-^`#sse7jhbW-#@|~2a$d|tBwOh_$qmPvj z-crm&*?zgqCP(Vxk4Ff(b5SBExotH4ztt4yD3$MYK41%4Dr8Mr^bcWs{z`qVOZZ%q zIaQ)cR#UKOj_WmX&3Skzj&m<22rrhx?$Xq6h!PoFewkCE*WP6)%Q^k2Lr!q?+@9Op zXhP(^q@>+zn!;CAR;dJO#1R0Kn+QMu?6cr_z)PH* z$etaiYqeoRBJj2*e~E|waZSLhG4IF+;XZ8_Kev^K_VgIjj#w0(YJYpt_J)U5azB?A z{P>20@?It}P;<*9!m7HJo;p%ONDAi$FS_?c`Sk z%PQbWQ(sTgW1={Vt*dUdY7wi9DR(VXIO!~nq)VDUvpchY&>@~lNVC*X*Gj>clYnGS z<~Wn$G{-V5am=UvHxx4QD@;}L+%J4JD!)Uy-eZTHe5OMt#l@Ulf>I`Xat$eh6X})K zHRDIW0fGRirc^45!6`Yil56;jIuQcYY=7IG*& z4XuvL`>E5qFGmRlvoVOXD8ZE+@MHc1=I?HQ9Zhc|2DjX`Tj| zB;=xB82KWyZuMt((0t1ax!0EE((v}VmyS<&$6?wR(j#D%l5@ll<_${$-?9WHkd#;Z z4qQ5l@*VC)@Z%(j0v;Ent3f)IU^*Dt^`l%mOP519r(l6ZZ*y#ClMDv=$0wHj{@;ty zOU<52wldnx`{rg+Q)tlT>XjkvE%@TG9u4}PfD+3c(+wB|3q#gtSfF2aPur@Ysponv zh1;qp9Gh#)livYFnPmavs97qe7qAqpV{xQ)Q-1jlgIrLy&mA2>fD#qrgsK8ZnkV-Y zt3CCgo+ey_Fp*<}E^COo);HsGEU5Sr)*RMi&GVPCLg7r?*wA%PxB^1^X6LK^M|xi~ zysS1Lv~94xk*v=lA(iSi?i`xg7wK?rvBIaw&FXt#1BTDPd#R+EPF*(4$>=qYW)HTN ztFUrJ33s{^Zn4vmEMyL~WjPe@T5%4YM>~+yI6qWlDjXRH&WjxXgUxhS$a2xh84Pi> zgZqXeEDYvY4^r2SZ=9_wFty*1EDvoTYFxJn(3qe&+@<%QS76AmNOv1cy0%a`luD>D z%ehbd3MgP z2H^AB@0+bi3EtNt55oEzdnF7)U0Gm+QP6iz$WOP6(la~BW^$^QVya8CG$pCD6UOdP zitb%}CW4>(+A8MEN^#HEeDdKx3@uNgY(;k$({dO7Cx!+2EDSgncz{TB)~q@=^4-m8 z=y=A!j$33W+z&=y#I9zM$n52r9rq4}jZke^A+HqFBRXL{c0{-6jt9>prfs-g51M$| z1;{WevIi-on*u~ZyC>o5vq~V{v#0o$w2ba(ah)8F)TfzOm8s&)0vg?KOMyJm8*OHJ zF8Vt}xcQ}y?m29IBN*BAd_Bl2^rBD@4b*P$@hC~NZm?}Q&v%E84ualVx&Z%*zBtvh zx3zzB?vP9G|H>ZUn|r8X*Ux;APdokK@ZL@%*${+|?T-1Zdw9Vf&kC=v7FRb+Q=lj>V(UE&+H zCo8ELAzPp=+K~XFoq$f>Rr+#@6WVONw2=_R$+ajx_`B5|{V)y>NfF5G2VbASfUz#t zrx1$SRWEIh{G$E8Fvz#*HxP2-?hLf55(T=8!K~~WA#g7NN_B^4{PZ1(Jo@8>{Tw?~ zJ^&q}uWRnV6-)C(D9mXvh4@t?n?CZ!_9aT?=*Sr!A>mi?lJ|z%U#VHIex}jJ#rt@@ z8f{N(NZSMZG2$BIx=Qa7g|3-Ie_C6rnx^f9#CtL7s55Cv^sBh2I%x?UJN17-sfUwY z3-9I%Bi5*&MfFz+#(aGAF70r7F=9Qc0($a`GOdEMM18ro(O2loft_@Pk>-%*TX`5^ zB^L12(eqv;V88z42{101tK%3+p9 z0#A6T+;dOHKC#aV=$P{W+T80=b4Ii8# z7l%!4X~@Z=-$a!L{~4< zh1PY=8SfdxkbB5CC(1CGIjyap&STl!`M+2uuE@hvg0ZHhfKF*N{8f~&+VIzmIbY@v z0&$Y+M1^;zoKIVvSz-eO%t`Cxp~4ca{2g|=!k(pNxgcwV=28;`6`}9n&rN#QuZUbkZy(W%1MHvNlt>$ zp&*`{L`9K{Q(|$UQJi4LlVot6#5)6rV;A!x9x+A+`kz7A-I#|mDx>}b^oU}Vn*O3` zg|ZHZv$(!?(cZ&zNN*r$Nz_$ozeKzXlZv6rYsKku9q|ih zr<{_XYGk{4uYzfRdU;dyFuhW5@rT2{;c0#blDp~j_gE|-x26)Q+rr{}8F98l~G^NBZgjFb+$s)~}ge1CqZ~~NAWy!(+eE!cgMU2ObSuOuC zyY>Zxi>8iyue%gn%$P=x@$^xo{UKS$~~Qe2;!&MCG-1U0UXGh07=;MVnfQ#jm=-$Qi+v-|%>tj>oN4Z4AeC}&mskQ31``tQpce!wY zzDE=IVG_PHtUE@c za0g%QhmjU7qY4)c9EgP0gz0^0v6`PjBs#f+yZTS#;qvL4cDu_pFYbzZSn(^vpX3kb zW7Z!dhf53eR~$>|q@j?C;;*Rp6&R^hZ67a#Sz@BM0~;6>41>x%=XOv*6okU<=mrr; z&9>x?#wHK4Ja9HwDbAg@ae8-b58eU@ajx5{x9MX8t0ruUG~n3)Kb7dquk(3IAfet@`UV9V zj{~<`5m1rW?(}^T0?x;O*95+?0XNa(9lZ40Hs05rc+ZMzQE6uHU#;<@n{}HHwf*d%bTYfA+hY_lAGmK;&XX??<`( zaJy4Vt?H{CItsZ+Ef9M8@dMSn=sLyqg|O}IL1*jgY)J*HSihsZ?;0Q6I$eJumbT;H zNjNEiH>?(MhP4cojdP<%);6pf%3X>IFfO5LzCIuB9mHT~x*v(7 zO(~`G|DXT_)pFsS_$kBVC&+F*$2*S{KY|*^alS1GE{HvbP~buL&t3dBBVp8o6NLW( z!fVwgIYjVUnBH#WPc`ouIS#33gsC4CaXdA@N_10|n*wL7b>6t@&?sw?2E}1*6C!Is zc+~7|xg@gWI0ivCb86{yYGO^9ec`um!}H+A^lo>cGkI2asBktE zbC1miI+4nnS zrNXu(iA6WJfRAEbB-#Kn;pvg3_qd^}%xH+hpR&UF>wvbItvQ>`(yf}&3dhRB4(%uC zl;O2VNWG@p(sL+*Q}j4-yc};@I1BQN@MrhyN+p7kZuYWR%+kq=E~XqLDP7?)q+{cKy7l5Va|oaw!#+VXJt3&oH@xVWsy&B zkiT#bDy=yEv8w!@L_s@G&b9TZvwA=hQqNQDAERk4Mg|y0^*(*23vi z=0ZBNVL0zGCE-H(PYwU7d4N3YmiIVcj5O@s(etpVmi-4{R4y>c&SSw5fVRjj!L+s+ zM@;5WCTrkt$`l$U$qYQlA!O?eCzdOo$i$??Cj&aU7-Xr-LSJT-@Ht8L zXkOOIq?j>~EM=Y8#evG?A=ADQKk#i>JJB7>4PU<7GW7tCYZt;l*nJ)!Y+3ge|;LJ?H(depui$>*efZ&{r)?;#c21~2jycu5e%Kdzb`B% zxQjhGWK^!f_h(S#2SKbju0iDcdV{`%SyR&sqYuHIYP-(FA(i3QV=0V0@=0Y#V>sOr z*DQK}-;^rMzP&=Gb>Iuw9o@P-E@0Hm6ilyUPuk~xmy6hWI}6m7D0}OWuLtobo-R^0 zWL0kH+L{CG&2bomDIIs(l&I;rrHV`z7KtMW(tN8loo;l`ElJQr^%vHkS`!oZjOAhU zYFQAR9Xk`ZB43Lo%DLCJflks5QHROLWQA)~!Yb5<=Bs6>D)W4sf?nG&hk0_{y#Eg{ zV^doROQ2DGR7l&n9)G;$o+IUtkvA|r!dHSYdXuvly*p~O+@DeR~alwoSb#L4oMOKk3DEQ=)7e_ zkv*7Jt8sU_&&2S>OQt8>@(@(74ALQmwUn?e>!_+=ZCb9F^a@9Vk&;lFWn6R?vP1`x z5K5~e!TE%Syn9iA#i3mKIsN}BZYoO_=dKzKvD1|k zKWv0IQgufY{J^Bo=OZ93QZo&xZL?vVrYG}V$@q#Dv%}dz z-P9?MsQom{m65zwL6Zg&Yw~F*v;)HeUcCWX{ z^JhJe#k#He;P^r7x0Fe(NwVDRkFr&vwuFL}bH|_eCdV769QV-Q5bMBjn~@|@dC498 z%bOFOBOac9@i=SQ*Qw8&oyYp^X-{L%t#7r4pHbdu+51n!4XN1U69<9H6SbYzFmZ6k zs;Mv6^tnO&A65vEaL&>50P^iwaQ!nORKq&#kD^9??mj{x zLuDTxiSPV(kxYi2Xc7n{pKX_5ar%$>cDq$lMZWJaTyN8_n$&9;eUzM`5cuUu_wpeq z%G8AN)vd%=gF8jIw$2~$Fzb6y->@%?cpw4*#Gt=TKjo7!FU##oD9sGfS19>DC16E9 zi0QU}jm~p2q;YZxOY=&>Ms`-V{Ph~;jLkYfc&cq(yy(!Jst<&(r$}5q)NN7PCXh$Z zHZ;t7Pazn0?g#V`)spQux^O26deUY}p|m(8Ev;5){KXYY|? zXPL1pi5sPC27@PFAKyy!vjjQMMTdvd&}v72^bBjonn@Fz3G2C;=JfeXDPuL3)iCdJ z!_qZKX%d!3GWQ|?00S~8CiM%SSW3q6#6d@z{10?t28Xcme(G~kW!E?n0p^r45J#Qw z+!Pit;vql9wn`uSqOkWf2H6Q)*wfRzqq-Uc^A>;Seh!N_X z#Gj~u@zTmz)6Z!V8cU**clGpR-4B)?H9inAFJ}tf%@$@c^cCkbDK~bZ6Ij8Qe+BDJ zxu_9Uj@x%nt?hl(ezUtqM1;k`-A`d!RYv%Eys8?8nK`h?hS+CG6F-vz54(Bkl4;x) zsfiC`1-s873r1M`8)4q4x|eNab^RrfNq@u$TR5XOsrpa`k?xenYqVI&6An%CIW9)G z2%t_@9}lJ$OU$pd{sp|ACjQEqB7sNvgKr|@VNxCy*F2KQOyAj#XbKIhTke7Xypz5% z6HGGz&VM_zoie!WpFXu1880uLa~Q`DZcr0NJC?#7sk&23ACIgFMTC$?`v`V1Y~$X7 zvm6<-+8(5Px%wy?ywU(p%8irsy`8Cd+8;|@Ywb1DPWJlzvL32?6W8pxiwKO-Wsvs- zfNvE>TE!(%E__g$9SM1SJ@3tU1k_Lqmw`CH&=O&TwY0T}foWW~Xk=~NGX;tI9`Vp+ zHcwDz?Cy-Q4gdAbFY}qe0cay-T2nCBtr+*Wuwrbud!Z8rr5Ap02jVkk9Kik zy>xPnSeq(DmOYUEO<6HXNijQJp1>327k&>*I-AcgbnzC+?wtnp@|Np$(lfL}))5hN9&%UIqMDOAVz3I$yq~D_xN^V27 z3Dp}O268}OYpj#|8SGd@%=TT%cr#o?;PRCymrkMW5bZREIa3$s^*br^(^rRtDQ{-0 zsQZ9uQS&!96)v79uy)rgNXds?+(JvZGF`a-u=a@t?cn5M=I1Q&41FcCK@5SS2fAWh z5j{YZi`WlFbdGi#HmTdAYqYXC@EkU}9T_})`cY+7In6$N8Y;CO|CiqK2pH~a*cmDg z+zuIx?eCl^AGCP8pT8CnT+h*&m1|{CPBu_+;bE(@9T?H1)mJKNe=F%3`QBQid8}D6 zPk3Ke#rHEJ*W%GJN<)!7-1vrX#fwqZdX{Wagb2rB8UUPE*3QT5SbQXf&BGTF<+t&S&gXFouf#u29mE9jh)D8H( z=>Lh}GqlOu%RN}{nnzx~WHcWOy#TkJjh?9%62sd0WCGMxFRh>IPDPp4;7B}T!aV81 zCUxWS=34|+{4|Q-S(H}IUy8>bEKseRRrs&*0w&XtW|j$M=LA}w5kD2wFKqnJr6uOv zYt4V8{-Yyap+DwNl$qv`xIx6;hrqvV8m`-J=jr#=Z4azUCH&S(GJ zk_6DgRv3>MXkwdHbkWSqE#pK^;f)3DF2Dt=AD=s ztx2Iy{GEN{d8_)?$R*Up>e=n=UN7xNYJO7lmWL4eb_VmH3LKTk%(sn_dO&l(=H|w9 z$84g6>VX=i;>KDs1o^JYjY}6&=>SQyVSG&l4-djnnwS{`L7P?UT{PltYIteHVw9M+ z+uw?c^+Necj=T3*tcQwvHBQg%SSp==-@~UH{OA}f-V1tI!}-Bukn0ZF4}r|NYGiXn zJ5kX7wFr7(5_s5&m)LIy;E!K7A9ho^iZ9R7Y`hN#(! zGehQx<*!BP>v|o0zpYqtyF-sJ-}@1hleHmExb9=V;&pZhG2iKc1fS>g^rg~|=O>~( zIivsioB}%`qsy_w*n*l)(mgrwf;p3#?R?{?#Y446i6B{5Nl~*yRMzj&jXFWIowv-| zF({ycN1`8oA#U|~a*58!t^wcbBI)ds{4IiK!sGzETGl^u(it5LM$x1>Yb3BNv}_Un z3H+jD_pN_&(k6+NnV*X(GXv{x6aI2ejg#A;T+28NOYGJZI5=V23P_kW-g%0CiwPz3 zycei|?(T|US1nPOgV>E6m(y<6AO8msVLwR+mOVXaoWUwNdXZ+|KgSpizn}Ah&O~Zd zvS97=rCRJ%%c*bnQ`!oGGp}I=TQ~LZzwhRCdx5l*z^F>;IpSO)$q3z<8l{rbw?uDr{!4$)7&d}@WXg=Y5xy`pHA-<-RG7^t_R)}wP;FI#jZ?+>Q^ z#o5pwQSA5si_Y<%3dig`?0K5#|FE;`VE~-yHpT9Q8j;D;drT zP8_E&z_m=?dg(e`IB2*hqml%PPDHuRTa;6Y&crtq36Yw| zKdZeppt{V7!5uPAr!f8nG~xIGVxjOOEGFEZXMS0jdxBR&if|+V%@KI&bQ=YYiMM5$ zGOMUPbKwgE_T~s2<#rM?Emy&0Y@^w^PMt1H_Yl}K>xC>FAG^HfilEBpRVE?fRmrJ@ z@}x22nhG?9;^`3eL;SuL&iTIFs~eT}6idS3KsWgz5o56QT&X^3@f!Yc^};rE^d)|3 z4Chq-Swc<38WK1=rJ&7RVp=0Orf~(IbbIlS7E9~ABr%7_gt6t53A(xQAR9lOOW=ys zc!Kn4#sK0t{RpkTa=a(1X#5Q9bz5M9Z z_)!M^>YntMbP4k+GcV>tL?+^$4w89jXFQqRt`>yJOfW@}Y*>LdlIeOYU z$GK^nh0k>-FJjg&OeUWjlOjDA`;eRC<~dWMyTL0xg<7b73UF@tu>1>W5z&p&svb?X zu)9G3J{I37g@*?5|62Odwixuv6}Cb4YSVU6&F6Q+M`Bjada}tbm^BF!NNjlZU1Oef z7O%)=v>|sl+A50Q@WAS<<*p+eDx;RYJ{06+>HXy6qdxq!9!YgkK9n547O}Rr)7S+* zaeGlf+39R*hLV3Xac4P40)JLq8<1iGniNwlrQI!(i|-&XC+Sp%17Z=7{QXYAxxK=3 zZJ|X=k}4S+Ay>mD}k-!>yaGE^3sKpL*tl+NlV$wq=LN zzm*NOUO*YwzE~T_fu6$v+q+(D#31_pzGZ#(&c836`YKT6qSZ@+x$WzOQm_3b5r{B29COL75o)uKd?uVs$?%N^)ggr-<{xBc8 zCXy)zPLCA6L%v#qCSQIr&*jjn%F?cfXu`0d^x!(6v27 zySj2fe;r4GC}DM87qs%PJj8vVl=*Ift!`5607KA&^2cdLiG04>p?)7P_*#S~4JbjH z|4&1(g$R9g@t#g)(9r1M)%ed+b4H#_;3qGrDEO&1edLcrT82QwWulZ{peoX-6=GjS zv6as7=va+QNL=}>1u5TbkL#tmhtB=xJX))l=)6mU_NsL2Pf_~$5=?2`jng><&q}}j z_2j$r;=hD=m8o1J|H93QgAB81*+rh(xZsL(SC+NjHPdBigdU6@QK}sGfPYRi+08H4-du&@%(ll)HqGi*mY+G>2+h5 zI`!93Bet?$6-`pI^@>G)jkE8&lUF8X`2+Xnp_aZ0FQhB3TJy}j9O$$LpD^p+2T)e) zUt!|4oM+93MeRWSE><%uJ1X!WDL8;`*FOg_aV5=U`x-~&$n(r5_$0wsD-NrBO=m{V zAFdkTJB}7fd`;NT=ZOG46>k?=1TCgiu#`!v`P|t!mbv>T%Zep)en1-lRNS3Aiot*% zitjxMMV{24@{L@p+d05}{yg8(NC_fw!3ar{4WlT_DU%RorT-U;{Bo#`S}szgXT_xm z#nZh*0n&=Q$ej+ zgS#5t0f^1C=NBKB4&MNH#LInlVdvyk`N+19?wFh$*0Wu5L^#a6#xwpNN$N1yy?o6q7ayf{34VF2 z)y2h^v#woqGI z3q1cic1BEiKasmA@2Kq2v@&RFutu{;whmK(@AIc-%$j-WuPEYm&o&KlzG;=LUQH0E z(04}-d3q5ax4gT}tjz7b=wMK1a~#voVKN?}FoV3}9o_16F{3ci+6eIBjZH2L!mqEF zUj7+a94N+CQJ48FSeKhQ7k@WGA?1Ba0F|K?+&drQXV9j*IhSsY$JW_1|5{Kfex6Yd z+)sv3`(l(GQ&ueEO6jNO@BVr@9v~nbp=Ozvuqb|X0TF4a0-D(4khd50h)lra0_tV^ zZ!?F*;|3ww(jeb{X=WW#c?DJsc^F>ISK7Sy>!?rtCnD3;v@K3TC6P%kBXXXp5^qTC zO`{!SbwX0v4gFas5z15fgqFGLxp`Yohkv#_VICOQ!NhXE5E9Tm5@pMFYI&&1LEWAr z8Cv)|-T3_yARtDw1>=olL=V1$r~e1&4tg7sS)EGcsI%CID+3kNq-|KSUW;Wp_iF^n zxj=`3c}QAOtHp6mR9h|l>>`Qo$QFH?HWP77qO;sP98w1^dG%<#GYaSHz+;{KhOHgd zI(eq2KEg}9e~o3AfvY!=-j8kc9Q>V!FNV)-l~(HL^9$Ae^zjb$kIYTdC)$df_d z;tF7`nz;MKTb^)C;R#=h+DB&*NX#ZA9T#;*$}iw9&4jDdTM!cBNacTCo3HmuPs- zg$r7${y|9DE`>M0l|v+HQOUGI%+^0C)v*>v38-Yd-wIf+W-i);Jxcc8Iy;C{fFpWR z4A>L&!aB#B7azT*-!So9Fq=9+Y;8nm4Dvo?c1jLM)982JNG+~_zfU>#IPCGQHOGmv z?>hvF=y%KV;L>wrvs@n<-Xb zvryB=bhz;<+WGX1Pk+itg&1eN>^~(-N2qT)+G$|<=SUxx11>@)B=JV~-B~v)?$gOLPh%!{7}K8oyY| zv;{Vwt#f9d@aQx|5Z7Wdz9@sXtUbw*Utk}eEt?8dB~;2)ml+GSiSD7Z3KMtHVd2_r zFSLdBvnWrd7b$-Ii-l|}bYA=X*3SRzZ&00fD^Mb~Z0+dbn#QS@8vg;>-s~()g(swoaA=Yy?q;6$ zwD$P5g@$1X*}s)Wil17@-ox5{^@YEEg>&*cZlWS%sX>g-2c=oaVR^p|&Nkw~aBq^Q z%jx&=Z&|4%`)K(#Ue4jXS&1S43s0Pqqa!G$e4CU#_OicDG*`{RFSxy0<;J1^^eK?6 zTJ0I5GaCav&jI3%m6c8*&J>||4D}81<7u@VMb_VEX84`v^61Hu=ewpYApChs_>UQe zI)CoA_ydQifb$-kcP(M*GPF())l6OT+;Lv-qjMWk%7wBL!u1tOeM4wfI;I9qWpiwPj2#nBk zwPL4j321A}#w71YIeIVNTC+;eluR8vfJ)|*VA(>aYIM;m&>-G@+bV3Fiq`{^GZ!Uv zXEFPFmGk3&Kp07ZZPfE6bZ0G^6!g`v0bVHK>j6KCIlvwQLjnW+YOKr)gk2D3~|xV@tdCfla! zd|`?U%3z;+hyyi(iI7cPJeme&5ZoeaX^h&nEA^N06e!igmt=Y4I#(lUAoV~S~g(fZKEch0<%gW+BGe*m#QsD`3*TJP=?WI-*0C*N~v zIDv`O=(2Y^1NmYS$3+Oa6-T;W=^>JOu{7TU--2SQvhXAsf`x{XkNs<}&08ad72-~T zB+o-|cyeb%$r!&Ug{|6L1j&Q6D&Z%zJ@B67asKjI0LdcBpKW8anu9d$0uQWrmy}G? zq{nqpZjvw`?QiXW5Qos$MApSq=-%g|Z+5|h1Mak&A_Q=B*Q)?SMC_H|Q?zFKK+1}h z(yJif4xS0~*QPMVR5Lk%`Uxew-|&8y(5WTHbeIA8&<5DE->?UrSqk$|z}Zsf_LA@R zwV7yhz)$Ov!l{9bl~N#5v~bt2VenNqX2Yn~N<`-URd^f)NY+)ln-C${GF zyEixMdHEu2Ls_ET#r)DOahFmK2VRUAu>(c~N7Ut?5CPKmZ5MX!+m`6ma znYL$V@Ck6tT5tOQnbG?>KkH==qw_2{5bz&=g+Az2rtuFIDny>=^TkM zAn!9seZfq+*xg*&)psiyYk=F%?NU^z22QXp+$<;Z0Flp9`{~rL>9b_3Gb}uDf zmoEOZFwbUNtwdnMpAE;G=hT%9w)z-pTQ8~Fak=_ewiTaQ8etpAmTelAr)L`Qt9~_A zxhzl;>NmB3`dqx5K4#C19qsWc?f1L*j=l7ds64~V^5~q2Co(gae*D`qX*;$XzD+#Y z(HDb!odR|eEZW2oHDx#8oDLd4AaB&+h~+5lLyN))5CEi_D^C6#na5${0AR&z&aO^; z-whOw359r)zGynu;@xjOPVrfye({X>QwPU8ib0I1FYgr3>|b^T;mLRS6-Oz@M<3mdBBm1nV>(De&dw zli%~`U>=EbX3HS|6;Z&^;|jFUX`~O2__Zuy0qRh$ zUNq4-`pv*4ziZ&aS~W2>FbdBmjUf1idT*pj^m%)9Zj8q>bwdc%1RPl>CQc+te00dg zEv9jW96n_rg?jE`=hy5t^j!3RxG}Hnu&Mdr%I5K-$&lYTe$ySg{{R%qnzQbBuqUg1 zNIk8Wma)r%C$rf!wxv9@CIpNID0Ypdks;S!hn z>e`Loc!G#BaYv6|9!=RH``9pvVpIewSm5?$+83b-OjQnXgW*_@4XDjCwK*Gij@ z?I)!wNc-O_Tf!%SrRyJ*;pxYrsrM70gF;rJMim;Qtzpyr;y2<13U6RW{%DFkP1#T! z(TPfV^p+0`gmwK(GE!OWr6LD-gkE*lcBV-p;uY&Z$No?4#k6ACE{}2+SX>e|eFFksZzi~8o4>fI)iFF3()&?M-UO;Two**-fvV>5jVFzheYa1%- z7MqoOl+;%k)cnzYGLUfkMOjMyLWEua!-t#C>AYi5RAY_S4ul^2P4ds^gd#_<76->g zKPn_c8aUR8VxNcq2dMmEMSCqwCEEu9op56wV1t@JD2tUQ|9D)lq2`K~r?}?Ne0AN1 zzm3XDOep7t|3ur>9o8#n;fXOqms;BbPPL)d>kUHHvKa`|odOjB%CFwvwK)eZ+>FM^$K}Be=yhui1BSAr0|8+A;*4mLl^Pq+IyX=pl&T^qi+Pr zO{8;1m4)N+j`Q34UpRtQlf^*$1qJJ`cbg1fBftNi!kPE#NRbph?mftJYkxV#AF9Fa zuCAT&{tQ99q6DWp2ucty(XY8jI1*u>OZL{u%^7ivG-Dz3qWMnT>x` z=6Y#ZV;4!zZ;b8N^~HZ_%;mkC{e$;%f35dcU8era971$p6f}wpikj5uY!{j*mrGm? z_N!i>Yvh;6*X$Qclw9J7=A0fWBX|zo9cg_b9LDxq>MPA!G(|65%)_u`m?J!f-KCAp ziN%cG_Ia*({LWjjD8kzLVLZP*RT^Q*9(Mggju2ej@LMmlIfI9S&pDC^J&NqlCGiK&q1nZ_RLt@>_Ka~ zJ&qjvDLLC z+nK8a(xYlAy6=t$qq3MfHWj}ZV~^VX{yAMp*HO2%eO}ARKC=0xuEd#32&$(#CD>#! zDE!~cm&bdP`T~R>xb{(^A=1dzz30_p1tq&y)B`zoH)ijI!?Q5$A_`=?IRMl5o{!|P zs;cJI5j|KU7UlbrB+_cTL9?kDU(VCt;Xlf;>sHVdid;XAq@JIyStcnRpTSC|%nSbB zN;hf~R{1E#Wm1Y*4aTh9K!!*fh3Es_0ry96KaS%e>BVKHK^_JqaKU0k=!f;>-}Pv8 zplw^17gJ2;u*X2cdqxW+D1bRE;F@xY>-*+M$et1`(vZS zl`CBz9_=Z#-nBiiTJ(hf89QP+qMm3W2#&!Eg-K`yb?{nc%0}{6JGG~Jl6Vvs>4BM? zLqNnJV`Q3kIK=lin|WaccR9+MBz(OP}`0Nd1%t(|? zR8m99(Hy-Sx$i-G5AgLzd`*~tSj!np0$6cnNX}p7T=bp~mxpYH#=n{-;p0vUw?h~( zJgFM$WlkZr7>P;A#QO9MhNv)=tK zSV+mVuQJvqmrJrtaB5McX20eB9MP1e(Mz<(`TMP$Ix#O#K^P3)v);f&bm2Ze%93 zX!_njMQz5pSIMd38-&W~w4v@iI>h(U)|%8?rs^`W;E7hr2rg~n`<90SAZL3o$p&|N zn{-#?2P?k87UFou*A}Ez&SYg@3s-^D>(O;Vtj!SM?ERTHQ{~p5@69P#k=MOM)h~8q zofw9Tpnnq$pG{nYxx~@Zs^Y>xyJHwf2#RcL-myA;gE4B}iZQ}^!!@Ejz*C86u&b;r z+S_ChK|J_Qm|7Xdusz*`FG}wSJlRPmstbOeVSag#`gZmSKL3@MHr;wH(69Ebh)V8F z`lhyF$+9y4UmhzO6V>wH;ey9A5nyCB(b87ACmH`Wbo|rajB8Fq>0zPFNr;M$^;YWQ zmfYG%bSeR3$@bQAUS&DWacxDDMg&$8Num(}KgB`8s`&HOx?g)tp8UDXXO;{&fSiX4 zoi=O++bB}w$V4yS2{9@RpV%kx>Jtt{*>K z!y$g1#ilw{66-1N_TSo+O+OX7DEr9$vT7&=PggMK`GYPZ8W(U6RIu_ji22Txpro0~ z=UT0z@xYVli7#}O@(LBOHHah^&)#n%jZR>^k?MLcsDlsaJl&#Jx#B=`1{m{C+DsXaB2Z550d!L>Qr;)tV3&ZoPXxR;r&;b zjUFJ=i|wDw+HM1XBiLOcoe*6i$Q{`!zD2zKi433;s^M{CxGc?9Uhz%*26R_~n{}jd#F>eZJf{(q z^v)I5lUxT7ZY-eLL-83D7f+Kjdxf!`mbNgA<96gNUP_Kv{f_^u(Dn_u3v{J?q8w`7 z%8rNorYOT3@IsP8OuKIAKw5A5>q=Ldle(m7ba}GrEZS68Y_{oQX}reCDu6 z_bHU{GaTq{SSVs+uf?*9*cxjJ5k|y34hyWDLP+zmEO$&};|CuGi5sWYd}i?jW?pp) z96P{Y4arSMhCC7PQqWb0X++X>@P4LWf`jD~UU=h$Y9D8XIoxiGbrWsS3sPzsHfFcs z4ph{w;yBXeLa*u`W(T)5ioAes%fEQk9(32~#OhLu0;hDQ!}|xPnqc*rSN!h9y9U|E z{QCVkuk?6ihCd9*Jp7&B9(+aoxuBedJl9~Q1hc`;$g>FMsnoXMD9LEKc7S(7Al1Mqe?sQM?m77%-f5Q^rEc1ISeQ<)+y^P;uw=ReNAw(!)$*)(F zQ!5t1sc@VOz%6B-rRUFG;?0jDr2DVgB6#V?(CqGEE{$yaFQdbkD&`qS#(Bc==Wgb5 zVorX9CDkMI?JaO4CI|GZS}_Jvww)R)m;=(bxe2$}MFCv?0v+eJg8RjE+pMfNCH7QJ z{L~Prg?kUT`)_FE<*nc~y%1k9Y4M z?#5~Yf8Vq;q*Y;Up%hCmc#ewHc6btscoHXy+xQwc7+eFP=lV|{l|7Z=+4zkFhbbe4aUA9eUA7defNLWma199h2 zmkZcm@*gk}1;ruZga?AEjEri|3i6m#g3Qs`!t{G?shA2YLTq}awr7PEYX%J14_0qt zVJ%l>`YN2%V<~TDw#A9o8rQd?4G^m{(zZBH7bH!f%batn|8@c?;rkf2L7p^(P92h* zG&ieyP&p!E(f>Y0$B)Whr^5CS-rusW&DAd*BnbiR$FYt>=!9}A6%CGvI7vDcAr1-I@H^xbL&jlG9=iU<9> zC~OtY;3gk_-JXrDMKM>rSDE&oM&{`9jTA|56bg4&x(QzGZ@R(VT4{&p>HT4|4`-r> zd8#*BUmgP_#{U!;P`%3LpHIQB<^B6%a)MCYsKRX%C71R4R*V9k=m7|J)zioyXw4fr zt!^m#b{Xik*BcIc?w|EIXx#yQKxj5_dq1VBq?>kGV<$t4?3xq$S##dY(5RJVC&Q$9 zsMRvYW1-9sX9R=r*EtrbEICjiTg|@@AoqeIBMOhMnbRvJVjXcm_n_#hh~g_}4RmDYb$e2tfI)xS6STieN5#C5;Bj(z@^yrt}juA0YM0V zHM!(^(o-!IK@^bCC}yOWbVRq@v?2MuV%Cv~(RV0wVJo)%NoO5#`oJ5ad|(3pp|{ml zq~{1NHy_?<*_)wnk6c)5oj53vD#{Zfi?bb7(2Pk3dnMvTJ-)BE|7-gwicHqIjw)lYY5&w4juKH7!mNEiplnbFQKwy+z&*d+W z4SGL3rpQKnXgS7uwjg%#Y`Wa%?;VpWwSmbaC;ZQ-ex=r%-abjc{Fm!bn8Fn(&l62=` zu(+4TKV&p^x84fCmMmheB^)Ztjc<`?rG2u#BgD4oDH9F7%mQIq^vcW=s~7oZKK*XJ zFj%gCd}MLhiF1v%zGNBy>r2!N4YNYRaw4pq!2qop6g)&jDP-c-aT>ij=>|wsLeu8O zBYJ}9V-TUGZ(SADU(C1{!^t6vmfwghSYr{zyMKKp>e0_XH58vu(@NwZv&$kJs?w#;CHo=1JL*Cvjj>LR zwlje-qiU^8N>OQlX=-O?xP1`^JRYX3oF_Po<&`3uEfX7x*;tnH>2Do|)L9U%rTwHHdsbxP=nxO^VD~ zs8z}c+3u2DZ{?#C3m&hk1c(O(Wq9;|pgYdKKkv8!IWCi_K1QXf;ai;X;mT4hlv3+} znWR75#s@5B4`M1C8F+U#S%<3`3aohhu*UkTrJEh>k1QY=gC%`?_lZAWEziDY7eRgI zqpLFfD8c}HwV2q^4fbNX{^b^umS8z^eT=)lDTpFuy+9{(z)~%eCx@{zoRkxfMfSw)hV_6kgRdQ!rkcF40c@Kk@4>1$$y>$gB7Liss_m50 z|3F{3U$v&Scyl645+gyDF(|3Gz;D^2NiiLqJI2G%fc)E8LP4)C>FRDbAHU$fm?x4oqEL7JD^ z(D~gr=Xptqdu%;vez9V6)E!fgUA65%G&j}_4$^j*Kj1cA2c}8je-+yHh$VB)oJe!# z*(s7NvrKM_@ghSgSaj*{Aa6U&XLR{XJ~lp93A~U8K>qNEAf$o!KZ1h6+3ozt!9LgX z8*^etzJ4lt-(-*dO-=uOvsr7>OQlY%AG9fXzokI($ElzfkVr z_DzivC(b`v9J#)ZDml%W&nv~RgM?o>jTs_|tS3vDSdV4bBgw4*&&?Ng-6~qJ8!GTX zT=xC1idK`+EQ(22eSzld!^y9VPdusisGY3C_aIbbt>P07>>~Rgg20+jDvIbg)h>4O zdQ_Gr0Xv69vs2FXcpoJrp^sc1QFieyoc%u!^n{$}#*O@N@h=vpnn|EADI!&7G=@Xb zyEp-?PL-==qS}PdRFC5dqK)WxsDV7nZpsa;ux#!t{d$CdFPLp-&$N|Mw|u%Q=yyk?3oT}RV$hi5Wa%x!g zTvbuGW|h+Uthx20%#lkSHVe}_3LcoD&CLRA)K@HGf6T9RtG3zD8a-V|st$pO0I!VGUx!he;To&{I41!N4T7VKR36>`24Rxmghm&7!yPbRaAA?IG(_^IOd z@1*D)Q>ghP+)o9MDk4)6)vYBtXb22&3}uHKP4Us|dGh-mjz5H<7HdK4U9ZwQOc&O= z=6p`kcMIaI6f(u9GrW9AQ^~L*D7!5i{pcW{N|5eCkdCwte=5r2D$ity9@&Ln=4t2s zBdBWk&Fo*h-o}QUyL%)1NDs-^?37n~jMs^_2gf}uNyr?QF@h}-*tl#CXubF(Ks{g* zcm(eWAJTr>r8afE@+kfMfls$yom8Iz{tup7OZmW(O^*zcqrKO&{tJ1j`JhsE2mRbe zccp)+CpJ4ba>0gck^6;+DrWkWHBd`h?f(}bYm#bgA#zv=VuV=mi&>kaRZ5Yb9-eP%L z_0%FbRHEYYuih(x$1zy?YCRx`k;SFgL1^N&S#VaOO3K<>m^|YZPmxjbo$7lUonsgI zgwH$Sv;}kO%YG-qnucYqWFs+&4fY&1cP2OSjgb~eDuoz@e&UTJG{>nbfWWD?IeHw~ zbbCmcb=U)7^4{VP{EDWPV|v6y*)%BH6ao?gHA<@`MKpE0_PX`bqqFns@bm~Ze+}e z(8BX?!6`Y`-mZJeZGo!YhgJd!*oV2(_2R5PZxtO@G8NE523{%_#Z7IZ+_b%kdIwgn z_Z8?q<_p^u@deC*Mkf4~GITuOdXsOWYtEz^p7T`^i=)oKnl+LZ?Z5E3HbFxEMdRUh z+pRa!e*QBpI;Lb!%rFglP{ChprU z#=c|ih*Gx>00nC?7Ga ze+s$>Mw`m~n`ELuU_mg(UxjGQzIXyzp7`AUsMfH=0bFlGq-C zd#;3s$_yze>_t)T;eiXu>na{ZRMnu0OUhJ+8Dneq&bYO-{w-wmoQDMd%*N1iuw7^L!`$xV&1p;ZRuGZ7CI&T4k zk?2aNhI0k79o%JAo+UX7p~uKKoW_Kd@~1S4t>CQ|VJ8iaxU@CkXvNVnf`vo0QzmYG zuy~hdygynT-beRa@t!S7K$a86b&{Rb?wIR^H9CS^608X|3mxQcr}jfc(oNehxiwX- zdw%Q1mD}`_>7rGb({iTP896{pZUr7DV0szT2R$uQluWV2*5Us^=1RLt4-37EOKlt6l8&XF1>;v=8rQF zHl&jrk5`KC?Z+xp-qTNbnqub@F!AD=oTF*^6ZCuw zOSSShi~8fm`eCL3S)wbVooe}Y%sEAvG#ud{&DPSP z%XG4oTkE#&m7X^9*^5ns1U8VtNr2e%Z|+TA(Cr{MXsrf75=UZ?4{V^ibMuJ#&-OJr1A~Y@aF{A%a)b%6ky_~f(4A?({gXG1+vFeKD zoF4)5B227G{o6a_h?bYd3$S~oU(i#rhLut&#hr2Lce7dO=c_pN|G@&T-?{{i9nq4b zHD4QxK1V40dw)T+WpUWIzwM?;vU(y_4`vBLG5IHsG)AdR$mZ!`BEl!J`~YCU98$bl z(_1fl!g8jNPy~apl0T_OI(Kyoe?`ITX0_y1gf!(VMJYqX-!BK8guLnIyD}XhVZvm0 zE6cm*%xe6uFIk#7dM0d3+0uikBL;R&T4S6v1PsQ7@PZ#d|Jb|Z$LAVVIq!@0(#fsX;E9hgQYPY+-zYkH+H@y2kfTl(t zJ2`Z!u;Q<8xfEQd7D58mHrgO#CS}cwtgghZB!Y=q@AMz=$J(qlgY|*XS8(T3$`TtW_ay zw6YS<9TQLS5PU#eh0OLW$~-jVg>LZ;p2?ZfnC<%PZfwFo)JC>?z48doPz!SV=#fZ|*M7XBuO<@@VLbMYf5^*5e< zHC^>}9$K=nrJE6HxeJ$&M{F+L8KZsy{{d(CytFIVZKy?q`FvHi$ch_hD87(a1WbL@Pn+Lk=Tcc2pbNSq0Snn zK+OaA`|x60gTCvZAa6gz9G}W3^K>lGsYIFDNq%*7*`s6^4zFKec3MEFO_Z-7%_OzR zf~xLo+3pS<5jlp(GMc+6w~i|hNl$UokzE38Gs<~~E}IJwsoHzzIFGi+(7Ob-(9hd= zlbAn*7wKlV2rUyo!;hoes?&<*AHQ{RaYpn#L-Y}1DrIOc^I$%*t8MnOmeW>^EE9I# zCvUZQC!^xTH+{oYIqrCHD(k@~CjJogrHweu_lwtmQTeIwr5Bpg3nmcWzdfvs6y$xU zzm*Ar3q;u7JHb`YA}3#2czwt59Az8Tkv;awT&%zFgO9CE=7VlOnV}s{lrJb*3a@)i za*QR)$19ck_9~)m=IbxVnS+K=*Y5s3^t=f;2y2qSHhO2$fAG39;N`OgK9lIG*9evy zURBO?Z|9vx&xle@oF>DY6+Pz=hs!s~QNdO!7Z_aH)fxvmh46@l z(+C&zbh~KExmG?zS+0$cGJ>pm+eIzmNE)`}7RH~) zS*Kr|ipA)Z{jIbv%@~$0njE;?|HY`f5yI^ner%Ey*$G)+IG_Mwi=QZ`#=KFtkNoY@TWGfK1q+9C=Dzb`< zPt49ooPSY~j(u%}M{0q^JymNwqTgF_X~3QltP0`UY8FOjy?)npj^YN$A8cyRStTqc z3ReFHqLl1Jzi~;bVkQ&-c`o#-61yEzUE8^9x7+h18btyS`HEt;#S3+LMMk>B<>Kn7khIEXwNRPQB(eR;$;+$G&J|(xLYq za6AY&jDXg~OuRJ4Z^k+8ym-!k*+=ZT#N-Bvr=EbX$} z1R#&UZ7!np89$sRWuxtx+ke~p7!b4EsoNT))i1VVZf?>iPSb6>LPT`8`#(!ZqOf79v&SB2q5B2!<8#aLCJsN|~=Gmg@)C0QoEZm03pR(a{aO z2il_4C%xV@lP%H%av2N~Q@L^hm)_%0uN3@+ll!vbw3=S8 zCE*PH3!t*7u!<$>AXYxZzg#kO7CGSWY&T1agGW9Rt}sV>X71 zt}jb}{&g2w3MVQa5T;JvD=8K&@I)?+{iNBtuQ_3axJ$Ak*7v&A4RT-QX0?iMMy@6G)!B5Sb`1C zkj2~Ex0JH#fDg~T^42)p*W;uGND-K8pK9o3NpCxQ>4SR-)%Mb>kdl|Z+K@%ukMM_Z zk3x0$TcW{ehjW@pPoqN3bk z8NA6-&02j6^Cu$r$g>DSg_#B-h{=3xRTq44p8d*76ux?f?)4eQvgdyc9b;-sqOmmS z7}bpk=BqOCemG1)0FnM|%_9?EBVs~=vLA~!iB4dIpK+stYe^M18@7d)atu{})2{JE z^%`fAHp_?c;73keGM07tnKN*+nz<5Rv9}bid5d9z+2$jsFCV*~-)keG)Aw9{wD{Jrpg{ z9$;HJ?u2J^c6CSXym>NLE>``C-(TQOdwXCR;=sUIyio?EL_#U*dUgg+RED`2lxd*5 zGhmi5uli0(H6??W{l+3DgBi;W#M2sa_YPr>4tVzb%tNO+Y6hIvi;AKE>jfGG>})pF z8@$LI0R2s%-Hf+-xxwP;i?B+he&ZxAY_w^b@@($iD(QY=FdrAj3nlm>vcUbwv1Kds za*>KMVeJm@a>Kl@KPr${{xTH?TU{_#K7B+fhU|dS?v5|_en~EJA;nTDO=U8 zfPd%{loM1NQHAa8@MEt1F`M|;TX83Ag+b$SyMh1J-y=)41&>E7zmzZDrg$kdx)qNIX=pB<+L8l4qi14qj5Vj{Vm6)2l=y|ap)Rs z%Xs9^&cm&Q{mYUVK&2eeFQ*xvHRa>}NLqoDV{}H9T}YDy&mMhXqJGywvhrNPSek}} zZ+zOkm9fq*vz>biuVpzYk6WM}Xl37&=GpGIHvxu>8^9XEQ4p(6`@H&I!K*8i;1joJ zx#5n79#?eL6BSjY*3_Zj+`39$2CQMqN7pJ>!4HU1l)L&}$9xcepEm=FQ%|Gr*K!Sq zcgQYC)E1v!Lo|0Kh_>JiN^f80KGoa8UXJ|UY4!Z;H%^b)@Mh}rH%C_EH-RWMr5ELx?!>)Dr!W!>Sb!>6Q>CewA3=d%$NyhduR5VL<$4@^1_T*x`71|r zdo_zI?Xv}4vnw{;U=WIQ74|4PG!Lu!ePDW|`a-MfeJFgeOn^X}D|9QL-wrk7muL7N zs8TBK6ddyoIZ1X+OeIN9h(j}qw8(Z%*=vikg8^3c_AwBZg{)CJ#+f`FIDjx54(&!!F_=5PkSdd|&_0Al_MdjDn(FvT+W_hSUX#fDBvO1>IsSPHL(WQ*{O9#H@nOD8je>18 z$*!-ijZV@h_Q2cjQL;3WjIn=LfT<3VuD4*jHS*XjdcnQ#V21XbImQ)sU=lxqa1JD^ zPJ)bR+f!u83~E)E-%-;1r&O6vf@Z@bGq=-3dL(&Yz&)nY$W9zb%qe_bzFveHV2%Qh z^a97ZLIqQq)spBe?$vE$%NR(aKgm~b+twfkvcyw){K|7D?{5z$yHzf}-Zl7YwyHu` z&H7-hA{4TTjG7Et@>$=h_{RTysAln6)NBw8uH3e{vtGU!VvYual^3ifIf<&ZZu31& zTGD|BrYGK>Y+9wRC$?|OPPVg!ZZi1DpI8ogFXWSHw_Cgk>40|v;_wPlSGYAWwr3S| z>mAJ5ljr_#MEPy@v^RsErJ97vR(#CcBMax1iS2vGYWFq>3^KU{2483|hW)8xviliE z`ljJMH0%u-NS?-He%&#tUf@{4*(6&pGHvjih)e#1o@D9|^R9FT2lG_8X68IwFx4!< zHC5yF>;K4QJlf0Kd(LcHe73z!X|Eofwwn-o7s(m*~8}Ve; zu5z7b7hm5ngb;eRc_ocT^XlyVG-4T4f@j!e*|^4{tlZ1A>VkBA=6ANmL;eCxi;hv) z2ki=_8Q{S9_Fn*<|A(u7avxV`XN)+bQn28AyG9!U6@~ra>);SM`M*F3#~jP9bBE`UA5QK^uXF5T@Pu=0jj;RA7OjJhICxWA-lC>Z;cd ztYx%bplW*{dljhas#n~e`^M=EXv|h=0ZyI67N^N0JexOv@`;??yAJ7c!9+9!?EhuD zd5~Csdb;YJCIe$wcH4m z<37|xz8LQAR^h?!m;%jf>;NRth%$6F-#u~UvzD<-c6nMEJ_W|)}%U%Gg&GdJCYj*`!0e_!zXm5Vk$K_ z>VCRMC#b3jbi9@Lcm3IFBb-*ivU2@Ll)>t5(OiGrPVa>=YF#YW1CvHW*EjSj{h#6| zBb;Uvq5Jg~I)!)Ntqw;DaH)I)UUNMEbnQIdQc#j^a~%3Pc4UG^MHcV<8I(62taFAv9j17n zH@i<;A!)uVl!L_GlH`TiN=uQAW7KwzM9Q^GVnLceQ9i{+V^<_X#k&Ohl{rV3)K6V) zq6g#A@A%Sq5_^m`QRm-z@vp4JhtcqVyaKRO1!69@K=0_CrdbbPeJQNb%g#4n{U130 zf)0nUyoQhFCdBy;3*2qV^K4laolcOb5B1w!R3dDNCFVS zrit_1%Xx>lqL(-mhlPWq{{PD}Tmy;EE1mh24+Md9~L= zV3QdMsd7TqPL=-5;}A$DZVteq^rXdjuAOz~t!2C=DpUJy_DP)kVr+4<5L-~{EGco|7?Rx3Z;T%$;yz8%r zLeCBCDaH|MG6S>2;2LoWidkm&a3?AlteAf13F_KDh8Ag6DBrNxxt(DwZA0Qrsy&7~ z@3IJ0ZePiesje;>-4pc9mG_>vReTle{a44n<(7k#Z&$>V84oEk3e`^XAVXpqGcsWP zznJ8rk<M&%~688N6ZvGM7&MO+}L^MAZi=T?&cQnCn`4I zmHrObl=IK^>M9~}R*~0LQG&@c%$o$yabe_Sr)aeP1@bP6>zP4NOOyvSpD9tl5Hl%x z*U5AEDGoCmnU}N9{f3$)i|TO3ULoThE}K-cYJY}P6xo-T{8~<)ZSu9mj644IdD0V46?gH<@XMh46a`mt2W%E@h`gjk`ar)a~ z_-<9q(C9z@WbKtq`%kH>X2CJ-4P|sWVGEE2gUZ4@{mu#wO*Y?+_pLuz{@xb_h`Q z^|aqXv)3OF}k zy#s)ph^^rQvnP2p@X>-1Kz_B~rC`8{nc>E)-=z?u-Uq3Kcd(Dm8~gaIteq*ak6Ne$ z#>!4(rDEJ0U`864Jkz|)M@6`Wgde9jAxe|lWgY;@$&)4NGGL%;nUw8SacC9ux(X1@ z{$d2z`z1=_OyvPBQ8Q-o3dSQubT+=lfS*2 zx2D|5?gcM!*{=nJ_aK7^Z*Pl=%A4T-KySG$UrP2gaSg^n*+w+$Z{%Iu zNG^LJqA+NA6Q5Q`q)GnB+Bd`WN){#V~_j|He=Gc95YL8F1!2E@8RY zi`nn%O&Of-tgHvFN~+m3-kLGi{WsQmx6UNNHEbPM?!GcC{pOhnp7i_jz?fHb#JwKR zKd?Z1jt_uh2V)@v4;x@Q@ZSbiH=bN*WaOsiT&Xm>bpp{#MZ3TkbHzliOQw<=*g^#%R@DR(}EU{L_Ea`eL`oX@j{-NAz*4JvOKE>Y~k5 z9hGaFmB`u$GpLd!MEy9`zv=iqDW8hdUX!K#Wzim5&JcKxJ@GV!yEgT;h}5#5CgJGV zNS9^;rh}3@h+(hDNq*X;JFKVlO#aD9zds@{ z3b`6*jj+CtHM5r8>bjLOhW+VAT{|9idFR>JYpiCai`o0`izEb&odb@r8pD;dVkg$4 z&yDMiJO#3*O%Ov?sca)L3Xyh;_NqFWDh9&^pFou#+6oG{npF@ZeGK|rxv@}=!$QAh zO05-HIOxbE;Lo`AJ98RB-`C%GOia*e7o|i)5AFR!<`*7t!MYj72Y}AvTrkZKKk|qk z5~-MC%(Ody*O;CRL(Py}&Ec1mD-RYR?;bi$)FeX>F8J7uyl_(X2i6Nh&~-@(4wcQx zM{eJK|{R%&z)1*}ITcMUA_s4}H2l-XtR0le2!H9C11>Sf+uA#nc( zQuQ#Wk0Xfu+3u=!yx3HB$w@9{P(Q~dVdx6*+}vPmw@^ek7V2gi6?BC5|gCS|tdyLEmWs#~AbY;p;)KhZM`lv`Xp7}US%=<=4+H}s)cdn?RdlTBYsP0w z5i2AULn=lezO}>#FxdbCjJP$)GJ5JvA*pxQnC#7;`ZYbm1p|2fj3iI8Vi@&8v$$S} zIrUvsNb{r+e==Uy)OM{NnRqii;dGk>B60ss3FqTBVbIBbW;$K~5FG1YAwrdWJpZuw z@kJ+uJ-A=1L|_^tMYTSs30LWlbdT{0>yvD$!pE8cX;95=e0yTC`o zrVV+!_V3>EEd<@_kxAIpegA&i8%FthgVlANw1LpH{UKg`apISkTW#Mbtc7umjJd`L zwQat;f5E{MtF%#w3~?XQ^MB>DB9Up6y*PBaaDX*UlC-$BM7q!-kph4=GVP4o$K>wp zJ?rXviU^T>PEuiI@r8PY3wU5jntAYom~X&pdr9DV8w2%rTWMx8v|FPKW+V0qpx4Af zlWiGBcXedFs4s0cv8Ha69Qr`cRN&3`OWAnjj{2aoB)+Yfwo-ApY9qF-c%8jSea4s? zV-GINmTYr1MVT1#<&4~wW8OoEm>)vq&eY@}5+ASqWn}W-U?X^$X6z%8k95q})3x{I zH}Tcy_=j!NK|S6H2K&{Nr^tbMBWV|xFkD~Kh>XPz6_}4lLXxb&_-m?U1-o>_uF0i| zbpXS7L);m`(7Ur$O)%;`yJuVlb-#1%Wl76c&HDu!5wQHsRj@$vY~@GTLMd=qf3!+F zw~N9&OVKP?ZJ8*~eDk(<^0n5j%IwI2(T+)%E8@hW9bLZ_-1PH(D(hqK&<^$zWo40` z%<^A1$_QQ$mV^ySfrNY-^{ukUd-rpZ#vhrl%FzHMmxE$ku-BPeGudor+T>N_x>9JI ztFpn|(TIU2xR>)xsq66%D4HLL^mi`e3Nwwf3eS*djYrPNgNb94&f>9~0HP3;^it11 z8Yy_-dE9>1S;YFppys+nAr0G1R|G?Nm zt>|g@hh1Q>!L}@E2NX)ZpBWJazHg`PK9-Jd>}ws2gV!|?6f%$JnQGQEJaxFSlE0I; z(xYe}oyxtb*--eq@~Gg;SYBvr9#1Cj-SGxB;!NdX&Mln92Y1Wp_s$^oNwZPfhZ%&B zYE-%3dTzDmC>ulhhl)a#Klaa!zl>LH-@OwZ>)IHOg02Aq)V&sg`iN+Sj#Zh^JH=qt zwaT~lbi!QKfy;NY&L{47*H!W&8O&oa7_z5{f{R@brc{Zjb-AKMJ{L7~2MN-a#cNz0 zWBkN@gk)tQ8|AfY5*U&IkQkXxx(19gNs+u*jB(*Slk+|O5|N&T>5*BaWRGBIUI)U} z^i3rLjlVFcN#P)5t5;dh4g_Vji0({$#~xIM=@-E^fnH8Bf(URRLnz7yAKkfYsudjEic(o$%=@QMd@`59AzyY6Se^9~T zaS7qJR%IduN$-a{G|&-EH4#?NXoYoh5A1yAWXmnb=qz0J)@6Tq>$VP0JfsXotAab7 z``Soy__68cEOW?J99{gS8sG06Z&^v=oA0v4sv>3%UPWp2Z?5f}TfheHCq7BC4QCh7 zpVI2-v-RMuEHmY*eg_kdP$%2canx$Hl#!(U_ zld<|vb<{Vv(cu0yBvGmhXxzlMMJ=7r%p?FVVUYrLWZL}^qy_bGz6Z-60<9GBGL-Ww zj%u7X)*9}x0ygby?K+0C$g_80_tNKZuxt++aUvg#OyvPg^Wuf#@pYV@c-yuu4iUJajrk z4;NLu9(U0!!0rBFW?ay*^J03Rr9rOb%^AN7`NM3vs4(h&if-~9`*#TQYM5I)Ll>(! zi;&$ar0`7KKRlh9J($e^2EWXbhwxVK<)j#=i!oN;v+hYkcFTf8?tVrD8!7jk(EJ>R zr1l{{hAN=se*HD)%)~NDw6T8ObF^kV$7ryXI^Gx!aIcPOO_c+ZJi~VhX_G0~i)R)1 zYjBIp>SA*ZP6g~^)HEUp8A17Ry0^pxhiUy}J`$*AM0bWIeYM;!HhoSc+C1-fTrMe`kHz=WbQmRxO_Ui-4Xx zIa7hnvsKO+v1^SK<2NlMZ~Bi3)e71Id8uJ8VG+A;lyg6={_Cahf4X_Z={AmCIX}l9 zH_Q!6x?KA7jLb)+A-Y|3Ysstd4YBb>kVO=&T}0QH$*4zp$yK9PK|)G)rbGOdf!aEs zJJ(j#plTOh7Nk3m2G%IYvtaWS62b6HA#s67M5q6ECILd`Dm=`Ssnq zi#*S|qE)D=HV8E3G{6;-l4(2wMga{R%Linp-+05c>-pVgsR~aQzVBmaatXe#nvkrI zDwJ%E+&>W5e)@)Tem#>R2^;=lwD_83UbMVn=#+U~ANS@+e5|7;$EdXBt#-C`Cjddb zf##&$Ge_*aM7q^65OOe)c8Fjc;D>$dqX1uOpS z+VG@3xA)7pkv`5g2Gbc+-b#a1^qnTa*#Z2@T%K~MO0nel)kPR)NrMODF+!bbPIRo^C|Y#UIM!H`3GH7_jAkJ zz%K>s@T%#b8WWxPml0AWc9B`Y#^Ppd7JXb9u3OO4)$hb}^hpJXN)vQwTQ4A5wmRW3 zCly4G031CkI{(lq-OUhi$S{=P#Y;mJAlmj7kV*c%e!p=u1}@g4^Qt0-T)ac_GPB7{h0( z0z2{HZ*ZvfrCs^n)ycM`zJRLEW#Jo%dy*tD}=_o5v{ zAn*I)Q1{SdQGORQ{q9kYKl!@ zxG&WG7K(3_N=lw}WL?-RNFdbY(@nhk2>tU}K}!|i6C38cL2iyj<1d`Tz)=0PU3<0S z=E+}3MFX*lc@HY9OJKJEhk6m{%=@xnn$qtOv|~Y$XA6E)olONehEcUxm%ljl!xKwN z0=TRZ+x6zb^N-$OMqOh#u=SXy4J00J ztj5-Fvg**O)W!_e%g|I@KrSw9RkYb#{joI9-*O+-18WY$QYDm~m`k;}U}R}V!Zk!- z^$e3HS#)EPTHHfu%gf@jiZk0+8Uk%9=L1a)lk3-EteEP}D%;kl&nK6dkb+p&9??{e z3)3IWj&7}`J9YliL3$J=m zQPqqI_{ln9#-*t5Np_g#q~%brSq{NKZ*s}x<`B+IY_E8)Ink>i`2j5_zdx~XU)*&!{uajIqE@;_km}%AD%75tZ zYO!lrRs7+|Xc#N0DV4mP_c)z`~N5)$e#-!EfXSR6An}+96_6a$?zw`yE}$P}5r>3OSK+&P-F3T$;Tx zb`g%CZ$GUFDfRzK)xf#Ydm}U@Bliz0?)^h3A%G6t1?O#jg&*&)Avhd3?TPbhI&270 znsYv@`+FxV8QfHT3dqMO&yL&$nHCJ)>qIoieg$c6k;GfHNWuP_>cG(R(9x;9`F_VE z^m`TGoBt8Y!MoAx4?Tp7;D6cPmOu2Mb^k{Sp4YFus>oREu(LfeaM@htif*PzOu={j$*}kfnZfl9H%uCFS~ZuN zx3Ry*?L%vz-iZpURd8ytcQ_VJvc2T{7IbcFocpq~LdOK_U>ii+!)fnH1%Q~dsPB1} z`j1$BiKW^nP>$f_f$3En8R_|ME@79sY{i*mffFGon0&w-r&VtJIL2X5+AA4m;{Xz5 zirt6N-7C8s@82o*b#u`}{W_3ih%%`5dT*VsNs9oK#J$+#?Wkp-lQ5LMvV2S|$cHBA ze!J8tzM8Zx%Q^2>(+!8i1!OEN>qidnIEukO-q3sEYfDqA<>!)ZRh4G&>K&>P_onX` z$`9^gOg+-P4iBF0P`P^&#Im(9BM}Nr_RaZ*DFf%9o&N(l%nHi!JpIRsTCfOe0Om+d zBYM{liRH%qfjH*Xk~2H8F$tpOQuyiZm6miEj?jQ*dC~=Y0T63>z|qh`aQU5s`M9OB&YHvBENK= zHNE#1#?O@~{uCo#*Jf27?Bil=n*YH`j8tT5c4ez{flM`^l-aVzx3;oMQ!|DAKZ?%7 z5$eZ{c)oOzY@6b`%~?r1|XW0VPPyTkD-3@%T|8N?nESZ_(7$M_Mj}21yWZK zrS%_)*-=>@;r?&lel`^Gu8rPl2Wz;97PXc&i#{?k(MQw!NH!83AKtPijl@%ftHr}U zA)PWX9j~M2p=}0h38zf6DEorDk5xN=0)}D?M<IUCR;h89DQ40|ckl!>& zWp*+aF}5+H10W$_75!1fi$yp|KRN@o!eu#%te0qYnG@5HXhc~yvCAMReTdg128j=1 z!KF+r`eg0+;tE69Lkxuo<4f64@l7Mc`%r*XBN8E>>8z=!XGDUgc?~gcif9$B+a^JM zpSXWlrNZ@wWq5zvVn%kxvRRDF#a0cZjI9K5*vdPl|3~sAbDJK2rpcf6`_4pQXGSdM zV{Xh;JxhUIDd{!xWxiCZka0XBrHS(goQjq6AIONiRPVEdqz%;GlO>FudBN(v5!uIQ zlbrfm(K^e^>oKmKa5H78%sdd$Q^OuxBvbfCqf2aq!WZ;w;v^R+uV^Cn zuwLQdxLSk=MT8r2AEbJ!uhED9Q7t(~<1z0hFi{Tnj@u*$6qlA{Jl%HWl@M2nKeD}m zlVEkH0x?-NR zgr%3=&-~(H!bnL^iX+|8lx%zX0c!bTFJ(_rW5KtZ3xe_s>y*#=u5#x^nXmTvl+3S0 zCIOW}q#OOS@=LiJp4=t5C!e<`HkaSFbahQHdoj;4bm~C)pkOhg3sp95#g1>)OJV8W z&zpP6t$7lw$lo`n{F?JE`}boolT!X65C6rz{IlRN`B=J+32w#fA^4l-OWRE}$oxH$ z2{T{!S*m;Qq|A7fz@=nXi_K4fvAK_+dU$AK=fv{)$#BbkczMa6nRm2Azim>gfQ-6{ zTP^9VZk(O9zJ|i}lDNG&mNv>q;YTcZ@`y2_xdEo_id!m*DtVJFW~^0EMDk>mo!>`s z4wd%h63}_@drEGf$V#xh+l?G2V;r+*nD}mNa)?!%kod;06$^AvjR;axo)TXmQaX%H zxj)Xgc!K~$cMz6X(HU!Rnw(SDTI1m_R$JpMkL4!@p+%``R)rl0vbUsFakt`OC${WY zcfi_Z5K?K_R-9pcN8G6mTxQ_+jsB_@Qa$xNY?v@;e1Zex$|1*)qE?k+*^k755rYGG zEwF4Z>P|143h7ix8P-jAyveF=??EMXr2eSL$5sqU@26PXU)v5*$6iR03lP^>wZjJ~ zw1x8xhxxLJHqj{ew=+cnn{tr!6VS6@a_uEWPF*~e1gcIyKu! zKzO~CE2oqt?Q5t`mDSt57C%^w2vDbpYQN{|)a9n5hr)HWlvgc!Iq2V|P?ufNmTJHL+3 zF?#sTL0*sn7pDzQP8OPXiC2FC#B6r?T36)3w|!q48y%za8br~7IJJ90?RK2B*o!af zByYGf4<*@@Mw^)=nr*pt%QbtNW|Fb=Z^K%*cyK;e>z8(~hprcON-#zM-R9?Gw1RgJ zF@4I6xkikYp?H zm7*aFRa=cAlY0y0{EsBOw2v0_&z7qj&^`w$^4Xb$W?by2eGY^GhSumkI?+#G>C4u( z?0k|61HAuGA6xf2^@V^MaKY2&(w1%Amqp|@!He;q)8_qY#OGt6d$lR3{4r7?F{mL3 zn?L^^djGviSiv)%D*aG;T|9A*8!XsD+#D$FvoH{M>i-G}`U(pW$Ve&sGoi3!M`6n- z?6bjTTc1o<`Q9b+sN!=t-7@_s!J_TmK5ogEj#l(FopQkRV=hg(7@pxMAW>ydCkdb? z4E{&54GwT07(buH`TlCmS>>v?J0h7KMBbb1Np--1uuQ`me6^M^)|^+%(VKB&RxuvN znJ0D|b=h!MY=TI1*bzAY%JhYBBOp7D@KoH>V#qrlkXhATW?Hp*gEfK6qE&BM(94sT zq~gj`M8D~txRmdX6j@jImMRXNxQ0}|!ATtj#R4lnN&6|SRC(2#dv_XHtK|B-y;{|+VRHY3;Ce~!KT#ke16xp=*4dMU){OOH*C(r2>4T#6Ba zyv_IF#`9icisGlnrQTG3USh~qQ{&M5#^>rJPilCI_U8BJ60!xLVG>+eZ`Scn zef4pMK~k(MpdUS{d}3on&Jth$AU5&Pf#(KXhe>(xS?nE4#Js3mh-R#Y%6 zu8pt2*#2KHNVRra&ccOtcBv2FDHcRgiO<=fFCmB)E<%cUl071d2dek_`3th2h`f^9 z1$kF#NC;`kO!cD|e^2qK^#D>$sJ#;aSDEm@tpXnkfU25x2J+4?YM`zPg>)=m&G^0*!hs?23Ln%Uo zE_{%zRv9;~cEzacSR)FZyv=vxH2Xt}k27(;NJhgoi6e{;kttW{451c-VF7IE&;jY6 z2OHR1gI;>+7-To<0zg92^vNCV+#Z4ba;3wO8HGY(Eyb24MCp$WHH8JRRCzZPKblw+ zo>ZQi*5#7si)PaBA>UGx86tLLd^Y9MbnKuNCSeU0^h(#ZF*x4BF%S=yOyLdK%%3&w zCBr8LBi>x+Ek}~5X)xFFYQ^|pp;Sj^SqMSQpSS>na61|q(PeSkad2MsNqhZh8TBK) zqI+*7Ao+dOEU&C}+|g)h;KQjA$C5R+#ulXxvRh-v@gUUR5T}`DrBT>n@j)f#JW=TH zBJ!eC+3ZpV`U-(#J*J8H+Ddmv_SERC=SOOWZzhisQo3fHHbLgs*|dHD2i3}&spdnQ z=9s`v6(h47wlmXDu!pvl=-^@339<>K8KJ1UwN2H&>^k|TI4f_H{A=8W#9lcSl7 zpmy1wN?Y0<>*zh85FNqW;vQXdCWCBiSYe!K`7^IQko-z%0I)Ut-4krJX)o`R>!VQ zOk)^^^nM((oW5BZAMIK;i*$Dr0923sPfjERZGOA( z_1STBU$&*I|3f#*5ta%4=<2{0m9?7EoMv2v7+s#-|@aEt(v(K!L-#mJYD zV@a7cCQUSx=1Y_%w)-%&eh5sX-uAP2+fgs5sV1J`J95k5Uk$eu-k0!dRc2l+CIF%i zE$V%2X_^Owq z2!=~|`hAGu_XEIn$JIgoDj~YI*Ip( z1557cpA%hsgHqc#GGS$2aB4_SSrM9^()V4bz{;67XPu+lX3E!J);)S+pa4nYm!dwA z6O<2-Fp`$=pz?7~T3SSPt=`U&fXZ__s2gYi#J7tMO~dE4zl^Y+&`Gff8T6z;D8?lg zPhIb$pXia%6S~1n;>dYY{t}S_cU9Dn5nYeV4$eh2mli)3r0|o}C8-ACv|kn^7XKm> zbxb;Q3}%pjHYJ3!J)17uQeMl34T4$OK%|7iDS!Q>vQdsJsjqv8G!`VBig+AlM{1@J zlYm4b8{!N;nd9`3U7}4BLhWiLm(u0w?cDLNf~8kF3T+R@zILNQazx!=Gv$wg77~-D zqMWAYl;nR<6oT*!#k5W38DnFtWK;_tCNx}+;?Ll4jZ8HyYlEeVfXYvR{$!Y`^C|O8 zD?o+B5yW3$(FC8ytIsLZh-6d)+hCs7@6rjgtJ)p5p)>LfF96#Us-#gdp@@~F(wK77 z1(^yPs3EOCMi}AcgsIrHAODYpew*^wL86`c;jYD12~KOPpo^NKMZDCa}Wj2(1p ziv-WXVMYlSRg4SvRGJcpJW)GoH&M2qz0NGF0@QXYPxXh_+^mo7PtmCPa2&;*KyH)D zk>vo*2DaqeL859X9cl>p!zxNH{Z2~M~8J?L%n2t#IXIn8EDa*eA6i$gt6v?E7 z({Z5t^amHLkU;7!!pnKFkwxE1BkC}ygH$cSf<9%&fH2OYhNki_8mXrICB?!15Q=(tdk9xDE@?7T0df^A-smJh?B0u=% zjp0n_RkM+e-8`4vNq0sPS5O-}b;!ngWjBU zrje`$e0`LB98G-U=N1t<`3Bpj`XJ2rci+f7D-EEBJ{r>CJ0%k)CdCnXnMh~wHW6G> zp2Y36eCp{c?I*ox^l!g!(V;X&Mcp!@q2NSclPT|A1L*Z$M-IcbZlAU7&M@Z z7gF{vY%Ti#YY#QBI+`CBvh}5uBplV4#*fv2F-tyt05_H2HjNAT(K;w6m!{3TOQ+Re zy-sia`LZqky2$=>4yrRple0#=#7fPGb*BC{q!|@pF|;c|@sYl`cWG1uTLzv)sO0RY zm6)!U%xL?Vp8-W(9uS`xq}jN}`hM?rLy}?J3)Kul+9;;3d0*FJ#e88vm=b_DnObr(ozI{{!R-Nqirt&$2(b}Je48s{Y zvyEGVKI-x(O>CVyapCTdY5NI>e=#0}NG0g08$^Bdq0v4rWk0~Mwx9br$$TaPiVz}9 zl^I-4&$3Z@>A24hRs1a?g!cF7G(9myFq!OtE%`aTQ?s|;_T~+d$NJdHpo8{ojE?dH zRnn5`Y~FYN7HT8f;79-W%;jfayd3Lc7pd@{RW*^5M+GqWkTz{T`}E9|8REV z;waSRCeNskI8l|hUG;8~fm_N?8A5E&=YBW>73`MiD_y>v^&neGs#lCgX}o=fszpdv z$zjd#*(Hiyfix0}M$^ek#&9ueG(80|sTrUy$-h@LABQ0otr0}M`QcdjTgr2jdiL*K z75@}{%}!la&y8EUjtm-|#8@$}sZvIXdt*jPk8nFaMZ^12-rAGL!3+WVUc%(g=Z=Fu z>iziKP&wrkq`)(e`14_Mgz1-&@9&Y7@Dy;sPqdVZO&v;O!~bxJ$P^TpxFgR4Qu}7$ z>Ffqo%^E%*LozSdyADJln%}03eOkceAXO%cKsF(Qm@eM=avvI2^NDxA7Pqw+<4wtw+ z1}&e(-}l`BG0jOZK2|QUg^YBSFpo>&Y|YLSH~gss6ni8NW>pAvtVC3M!RxuZ91)92 zrQz>hJPUk+As_pfma4wsD10WZrfxM&Bnj|weI>+)>}OVG0yA>#QuUO`HK@cBgbKQ* zmTL*l?mBrA+k+7Z=2+R73K4^8{l3g>Bw&&G#IWDEB1y&ZY^2EDu#b&)?4+irw1AG5 zVk&U2=xo8B=gI~x5Is#JlHJ`86;3{LT%tm56>quh(s^ z52fA}XE-u%E?D_G&Yq~5Fpk>YQtweXG8LPO4;7?cEjdc2d|v8U5ktZpV~}&H ze&~_p5;rUcsuiqQh2Wz;xrY)_UetFS_=$e^Dbys3;Cjgu1*GqnGIo|$h6aNsI(QPu zRZTvzfeFd5#(6~t;0kMH@GHs4y2`*%XeM*ub0{+}>a9d5XddC8Wz6Qx^@A84wt@*& z=0Hz)7ze+FiYx5Mhgw&ZdY_0nJA*<2OpSw}m&8?n~fNL5*qOUr6KMV?`j` zV+ETpbmVuihfWw|+J{~#4P?O#2`J{^+id{X?P-GjdGqu07v$R=(?3%kyJ!4f=2>0~ zS*z}sthXwxU@$dok#5MwXM$EO%!+MNVwnrX*~;gcu)q+4O9SVWfVe7>5=>QuTVLNH z{#(LQi4}i%fA>SWZb@=RR((tC>b#ryO~BaxaoKVy_P2Swr!Y6?Y8s8*C_fd^?hQ8m z*Xq_IrA>@j0!w4=)$0R)t+|d37(RYvOs|?7`W^iw?jL5+tp`BGe~f;5V)i(DE#yCv zyVRAhjQm|*?PUcvh;JI+y2)vR=**LCHa0*P$UyIPu{XN--FuNa?t?xV6<=b_19yQ^^Q~SnyMkG*~3AWXqC#jg|eNmEyAH{xpm$L2sGw?t+J~ zLep4D8jEU~LQibcLPwhRnwODCEmkXu#l)nMn5iD8+iNX-Lg+E&Px;?58?A#9l)4IVjc8lfQV$Mh(%qdks#Pc1RZ~e3=VmL7MwD( z0!*_d|8it&Y(-Mp>9CTTUipK_&VhBt#$9c%VvVSNwAZq-$X~x)dW?z(zzk}MAELwk z6yk)Cf*zfCuvHaoC;eQQvK&OMA-($M;Pn+4>X}TEEUPeDBV7mftNdomU@sKI(Ulop z%H@7+1p#4vNZlpcU^%%oGDsAXdYM@+gco!Qy65$|MFGc7NA6G#wE=+=8(t$^^4@H& z)_d+SqcZF0hYCmID7XwpZiVPM$mhOAlPIzq& z^Ndml7C=(;33SWMC2kfkY`~FhQ9xFgX)4DqMJi4kVB4C42;j6k&-AJW7*NfD^gjCl zIjfU7HA+t~^<^&Sk^-Dh5C9ZMm%$`;$rO4)31zKACS(_e*&Oeji6D+dAD}$WR0l6D zK~qE{6VBX@BG@>om^DrKRV{*~)jXJ+j>0&Ji8`+do!Bdw55`kPjOyphz0lQx2BIgn zAxXlM{E*H6NTv}za>Mc*%rj+Ar8|j|ysI_`@STr62Pi3tZIFW|N~9MpL4Y@RV7<&u z1T)Fyk)iNpP7XdA&<>JLtCh&)mXu(4Z*0u7*Xd}gfMZ!dB&6R2)q_7dM?6(phgH|s zi!xd4J_!G~24!27N3-456!kUXl-VePQLX!riR`CN?XKOqW+66;=aAl~W>XK*u;Q^p z;!?Bt3ZOehB07fBP1Pqi$}Y?!ZjwI(*^uogTM<&R^tZL11ePnQ;ws=YwvKq1G4I73EJ^ zl38t2hV0(KcI;k2vrnv|P-MGNh<;RC_Y;{_Vl|--^;J(Uv%4C0er1u^tCaGg((wi;4 z<>)A@2JSv2VjD7#)+ofjf{D6>kdWE zYZivek?_ZY=isXB>u4_0PISh2tz}uvTXLH6EhmSv(ir_jiJ4`zni(ltYRc(=~LA1+)B#-&)+aa3mbGQGp>OM^*853+jionPX*jCIAE;Ii4e`xDW@-9B}DZXLUmrI9P^MTL+`~BtBfFg zcLhYax&-7&M$RQkCR2yB*j=hw&)H?!KP8)aFT?u z*1j(Z!f`Sj*)l4%j7==F7%o4fp;_Q#k&m8X{M#TMZkK;4A;egJfn0phzIY(wpoGZY zNRZYpeb9rmr6vgJ$GyTS*DR{r?MzB)Z_;YE6q@Hisk@=3Z%}HAaP_ZA^Y-IkPwjaZ zH{+7#v! z6+%*HxaR2nSLazm2nUp0Q{-_=Z&4Zp&T_j46y&0uYx?1OiMy09sdJ><{3$fqf-P<9 zYSTP{sb%Lrk}v-YnyAxhyv-{klz2E=k=r@_R{o(6{Z3__@u)q#(vepvoW%K3{xNgz z%{__%et9a#Gj|)I>p@a3Ez;Kg65XyoMoxR0U(#Y3?+(i&O+LjU=x0 zv9>VhKnN}W&2oIKNp$Gvu#`job*TV9aG25t_|`MgQ9DP~`4(=sMxBjEnAC|>an=l@ z)W%q|9wRjOjgTH0IXTSi{-jB=CwAy}8z8$W*Sl&!rd*9B^{}cI@t%gd`1cP%VNqLZfn6zp{B-5!o{Sx-~~1>`@H=`6!E1xECHKPPL-1s<}aAH1Hg30T4CzLR^hAeX9}#`?)umS!TI9rf~)avzJID#Ont z(RLf5X~|Gy!ZY$)QiVvd^k&VzUCi$P`Jj@y>V3mT(QE7F5c}DE-20 z@iC(>Zt2Ru&=I?kFXi?mR(g5k&7Fq{*o&tpR;Z)MMAH}NN!*Pr8x_vooNYd+LKdEN zDVsys3hSV0jJUrJi|i19EiJJBtZi4EO#$QG{rLqs3H7gcG-qXlyx@vs*lGSJ*WoX@{v@0uFN>0;jkwE!Pn+2^JCQCw=WNQSOJ z-MlzcmClU7Eh~2e28D&t_d{cYqsS(tG zX9GQIzmrfO7-A+HgjVQ6gype#GO2)QKAqUAys&_E=TyT6ZU23>M@|jtv}ejh#`};& z>Gm74F5hyq6cu3Qa=!2Hw;dh0D)FX+2WN2GoR7nv`ISwMNUEa1LKaOJfO+u+F1V(P z8Il4$K`j&CGD`sK>6!G}Ra`jYtCD2jCl}HjzeyPE-lv_G0P*F3fXjB9m#0A4&NZ_Q zh|4<_I`tk4`tz9ZK~!dLl>QrAg*fUn{fS1g9s_5p@SK*mD-!AI3}N0!79n%f27w(X@i8x7h^speWiTy$q>W!AYCEZ>}gOuS7h zyaK~8Cb4E?6g}i)7aV72V`G$LR#Qsln#3tCw_AeXYrdUdEEkF9Lv92)GqeTNlXfmg zdq{U~2D)D~)X)KNc9guN)tbL7=9s;V=Pi~(B-prZRZd+(l+q4%hnfJGWM6$!Z3BVTF` z%?rTAb|TV}dm-WMmY4c)N7BSogS!%(SM=2uXQdb)MVd5#HjySEB20Hsf3u8ZAxAhY zC}v^llh6&Snda8nMqI4-a?)oQUYgipK?eV{|ES&WmxWB`#EhyD^98@yX)`P(I);__ zW{2$gFWnyj-=p?E^elm{Xy`O0_p;&qh<#gD4Wyos9Y4q~L%gI4Xh{5dyrIZ8eN;vv z#Hm_Ayvv28CoQ=BvxW8P6XR6mC$_wFqxoWmpOK`_IRA3>A1Sj4Ii+S~zRC)TH(U+u zTm1~R2@ZgxAY2Z%*oI4e^ud`4I>p~G9ivTLEpU5|if1)OCid8S(f8A5+Ayd{zkDps z_QqO}BMVxX5AH5U&4PhEXi6gHfca2R@!S;ZBqvDKA&%wt6we@HfwsI1v)?wQEPb3d zlEI&it4>Q39wf@DOj{g+H`P-rV@#_A?&rR3&2oL2N=Y5TeY@k9Pr`sZ&;yV*>eg{1 znEL}^#aRo-UI>-BP_VQ>rd+Xk(S%gHK*_NM<3?V9C{xI`|noaX-YR z8D9UV=GjIq%hv}qq1+h4r{NufpbV&{m5^e z(bG-Jhje~xtmGwGgwZ@MU?8n*|1#hG8Q={0ZG6^OybX>*+@G(06#r*|42Ux&fIn-r zOtHQnr?X*d3Fz^7#1}d8Rk&&M2=&+GS7I55A=C}Bw@GTlBv7z2_uLD)i)q0>TBtD5 zL~ATh*ZGs^{D!zj6jbXJd4HrOVn;Wr&Rq6~-tr@?R9R!b3Dp;Ao;*8jJG?_MR=^8oRdy`?`j7(9T)H{lx{??!0l9&LN8gCxiau^{mr629IDS?sVDfvzZ&_461Uc%vU=k%pkG8=Unz{jv0MUTt1*D zK|22soDU`QZ|!;jFF0|f+W!!d7HyY9H*n*?O(R4h<(tIP#~}`(kcGdAB&?2e94^F3 zZ#^$elF!AD-I&IpaLs*S-Bq zl=~}Q#h0wUdgll1Aw(ppPv6^kS+(w`jTgH4^d3SeTFe$>BP#bF30vAptuyf6*?zZg z=Qo?zsRef(p6wM`VH)Rt03Hg0Z-vgX5Ir7)u+#$mTI4a!OzXD$u0LyK?A`#-IT7*h60VJ(%x6GH1~(yJBi}&3FIX<#C{9H-zVaBb8Amv9LvN4KzV?<@ zbo%LWHq5798W*Mz>mkVkV2E-Z$y^c?DR|wQ74W%39DS*MkEe~*NqF=zKgP-06w9bj z3*6r6wGJrxhY0qQ0vs=H<(y}9^qe6XaR;Nxtby2HgoW{@R>9w4EUP1{Q}Ax{w9yK3 z;_HK8wPj|tLd?56_?d=Q+5M_3R9=e5orj}%IlI9y7>b`A=b3oEymE3pb*+B-emuVv=Y=F<6P+Kmze6i8W@D7D0Gh2+}HiJj$Le>_}tI~Kf0&6 zoEFGdoQjnFe@uP6E+b*^5St!?$k~toPMR10NQmES@68yO5G~)U%C=SmRS2tsOq5Qs z=7y}z&~XI&D(%6pPN~dHM&t$yHQ4w9h7(jknX$R55vM*M|MG!S}$I?|3`B8 z`pueq!^e|Uf#u*;HBaTOX)5|M&pQn;Cv0fvldUxEo=#pph~*2!bd(Tn=Ep)-gf2I{ zmXd-w3xRIw6u>5Q96t(q(~_PtP(ckTc2#=@c;BDQRbWJ*!mk{OL$aYw)uv@I{?N|8JBi;pB5J#=> z&K|sU|MN({fP)yKE!b}j)8Wh}qj!dm@+#9?i@Ir;beD`Dc%Zaj$O$ynRxi#w2FCK=`+SQehSYJ5S% zUQRi7G(4$P*bB^O3q5jII2)3<@#FZYkUb;6!n$E&1kNfBQfd<0Iz&x-x>Fh1ZoE7( zJz`BNB|X4_*-Ww%0Q`_qq^@J`ja>6cktyQZ$7|Y$4|bZ5ZMW6v_Xqv(Xs6SYaJ0c* zN)kR9i3CU_Hth+b*cAPcWn}UzEK%PlAClHTICa}934x?Ix2=TGfG9chHPihz<+#T% ze-jT3&RdtiwMK|2R5}x6l4!XnmS2qi(z{1Uxev#*s*I7b5Hk;~o6Y_l-EW)t-YS++ zwb|Ve=-v!&Kv>WBpDH0AP97IIAv*waY9=(m6nZr8VS3M8gy5|48Hzq~agvQ9nv%5uEo?@GIFz zQJ+2S;1e^YIxIoo0R1UuCd_4W zP!Jb}{(jY|sn6JgK&KS9?d^!4lZPh$)TZkYgKvY|bfo8S_SQW_>vPIC)i_J~SwFfd ziVB?gV-z#_ngezl#Ai#iJpQbeUQ-*CxyVZhfSR-Q@95JY4gJ> zLeKD*c){o)@yapGz3ICvd;*6ZJ_0Yj@_0|I65qQ)%*E1EGyM#8@eKuW7)Gz>i5f}E z$&evfp~pra3s;?S$eoGfTSd1M01n&HvW*aZtIa>W;0?;B=hNdbDmmUY< z*(jpvPpI+2B#R$wnP_E_K|7PjD1v18qCR$(!2H{uXv9wK?QJ zX_!9$nX)2Q=j=Hqid1XLd=DZh93*k}e$Em*D?M)~+3GSm?Dn zz#u}Dsn&V`%F_Pcv~EbLKV5fkk^>ul;h#mYybuXjRSXgs7t<-zElYRLRIJT~!xVcd zYkwOe`7(?u##JCI*7C9WFLVPkXRc||NLp(z(~iHS^YmUs;g@;Y2815MG16g~LMeG# zZAg|oIBDTnr${lAK}!6>(yTUzr?)g4r6*wpMqsxC^NfQy#X`MBkB}PH+n3WRByr z8;MM5UgnD|?!zrGx}6|Dn)AULM7^?Z>(JA3_2w<-=uGQm-(OPw>~x6!w@e0k zzcBwi;$#*V+&6>!#^^i=Qfc6%rGJLd*@yafV!)f_UW+BL^rDp18a8=4cvlQV!|n>` z;Sd7(R4Bl@EFm=0n8vDYs39B8NDXD5g1kd&AvCoEW6}aZk*h4IN2Td4Mk~2BE7r+& z^ffWhAk{4`?YD)*{0Grca9s>5CuzL8Ctru?RegebGFKkotwLhci5dg;@M7`i9?O2) zoNdPakt+q#rj#x-aQ3`9!(4h$do}z016dm+Giw>OsD($+{Y=x^SJu+MA_t%g`b}k9 z2iki1A4bz=NF!UjPmSipIQdvIj7+QF+1U_D#+dW`pO1)t8Lzvoq^>>?JE^BF7(J2) znG1fI2Md-{kcD$Ol?Ejkstac8^*Wo4otA*8OBF0xpt@*-RT{ezaYbO#kQ$ejaC&Hs zT-tEdev>kiJcwU1wH`H(wh^85f07viO~%sj!+pQZhf3zk5Lbjsfl|fI-yAl-^num& zXVKDKI}JY<+@6qFNpSHeh}Mo2xotdWQC_watriVLD&BxTz;yJm3LsWN#-U~;x#~}x zIT1+3TG%3a#&!wtB_v2c>Ot}q9$ph_i~cnc16h3qy5g+szSs!>udMVJrF%d`lbb zT^{TSK_ZVp+bizvlQ{*a2Ki<`F`d&6n*Tm-G#+}2t!GXInS{ls&=spQ!Q@CWgYwI~ zLJDV~L9vUMS$L|Cmn~rVBci>~2T_RkyCilJB1t$|;;7KyM$^gX=x5$-lK!>dE3o)R zOU2!pIw4AOC^P&7PcQuGLQXTuu6c_v7#VtG%M>-FIxtFjW!ongQQwVOH8{6@y@7`V zQoY^Kw+zNO)Qswg`bVn=`74vt;KKK!a-5+0L2x>FYAbYda8Dqj`VtqDF zKy*9vyF39%-vM^f((o~RJpJo(m^$v}IOfE`!>+1=_I`|WGH*Sq^ESgtTM z6(1w<;op8P=}jtOhBLW6{giv0gr@0NHv3a2HibcMteWtWc?CMBkc#Z?9f%-UfRY|W z7UJUgY+Ekx#D4Gna**3vcc$)_n+OG}0qY}zkM(C}FD1v2^mgmdGk1q2 zu7_Iv&LxC2FQsI2j6Ic6qzuj$w3;G=d_GpNrVGtPt?Pv^&m1Ua&VkG)4I!=L-_hz^ zrQ}}{B=%%f9g$`L-AxTBkn$f7s3yI7uUX{*(>X9bOfJ#>&1h@AqF`zqLFp#X9wnf> zS7FuGRUfZ?>#rf^D0BVoR%<1cC^>S9e=W>YK9k4y6L4qi zQHb=lax4+6?{F~uN&W#U&i$Ka!}jB?)tlBb=(4fNb985y>A~pZLKu?_Lp_9MD`zO(z@~2KMoqN4ViA zi;o@j%0XU^=E?XwI?wLEH!VzhwoG0fL4-KokAciVS-)(O$HzKt&DN9#@Nbec;)_5& z3nIsWmvf%jmNN&Xv{zv@w(B0C=rj9u1TA**sp5hy={vSf%8_UPj`fLlB3ki^Wv})V z+plD)XW$AwjQ$2P(E$bL_Y40>LSn)4ID;uHm1cbd#ed^rPc^*6e(R$vIP&WOYEqIA zV$9rD<3goGv^U z9dYD;jN^;d|CcZRP5;(JSBt=W0PjJ4!Lh6MU}hE9%{(nY7gsU+{V$=T={4&3Q3F_8 z{nSgltiu;1R$6M@Ln_IXH?UwQ*Z;O*7Ru}FF~Iriu$muH_Op@HI=xaFG*QO%xz^dy zuV2g^zgm4iX10S;Wgu8-Ge)*BPx&)BvSc{sEIxZ$I+yJo_d+1mGk@5R-vhBTgN+iwjmyWFqJ&693VCdanD;#Im z1UjuyE9c*FXqMQ-wlvjDcXFQnyoH@a;-^202gB!9v;V}B)o-MTsuQb}TJSB(>}vV8 z*t&#}S|5R^QmP$7zE7H$c|aRP!L?tmN2?_wa01j&3N-dIb*YYrEngRTc^d2eh=a+* z;8V;#;y%XLi)B{2a`<=~(0}|%D3UYU@c*~KlKdDN1r$eCVeWDp2j@?Z61m(Fs2MaI zV?bVhVmBuiIbUD0O@YXo-i|~JdZ_o3@OJ&bOJD?X@)V?5dG{6+9cAMA=5=#Y`Ph3) zGw&xCk6zyT=Q;QHqs{pAt$XBknZ<$kB}Ip7gZKN#H~HwjO5SpK7>EC}1JT!T$CHp& z68B%Ro_SJ7)MCAkD*TK$4aQx+r_pbh9;`v@hf(VWi$+KOK_Au}RU3&=>QaNc&zFFQ zyZeY|q;&}*eJlpMzh*R!ZE|afHe7UyqOQXf1MZd|oPxNTHH*EHLc|gik_5{NsNb@q zpD33x$+7820fi5|%d32FrK3@>0PByCmu>0xhkqYR-NPIDb6Eu6`LdsuFLsl2TfAg2 zXYn~h^&BYKA;xn1bmxg@JWQSJji7g1caj21gSgsY94P!{eMS(J8?JXwfE8%!l<=*B zie}hefuXrFX>5{APMT+3iH(1xYhs?~O}Q-fM3-V!2@+}jWt;>0o=@p)&P@-7_eMsU zvmMUM<3(0fC(5ixI7vdMqJ!CFj8`&?h`u)p|A2|2GRU5Qolubpi*OnXkrfXe<^7F{ zz^2+iE@iQ6C`rx6D&BB<&p)xWpzt{{Gf5C8icqxLqi-#RjIc1Hh{_E=l=hVn#iIay zt;X5hr!o3Zjjp6x{_Vqtr=X2&4HhfB6z?7ai3Wu$Of(H$Ipq^nA^4%XtUn8-{=I}Do>3qoDcWY652I_3pnyABjwTph+Jwl?M<=zPirz_r}}z>{ic3twL!CZK^ig5 z3n`e$8R+u?teWED1Q=v_ZENYXe5-T{{DF~0aT*OX3@X1657&TYXgkZR<$ilyVo2^g zVx<&^AkN&TQ(KV)qM?-GZOO$>#lYuJp1NvTq%-10^wEuvR$AIJX;kfkRzpH5!}q^K zb}94z7<>AR`qBKHb6pG*K{sj}((<>BeV0!C%-X#OF--O`qx_FVKyYMUV5$d4v(1ka zo9U7G{0}G#t|=2ar=fVmBvW*Cy*H{&+I#Q4Vyn@ry+@Uh*t=4DR%-7}%?gSV zu_6>r2U4p>5wtZ@Rn^*!P_>Jy-<$V;!FA<&&U4QBem?gN zz6gjYGy<6_wlW@4SQ!GN_!_z%u%QxUJext($!Nxp!E%R5Eh{(cFhJhy*Ko=rI6c4a zdAhK)`{493Z4?^~&c)v(!l8~md;sC;+rI@5@bxHa)g!z{==~ zWn-VqLJ3}`CpJ-7026kOH^Q|Uo9du0luy-EGi?|MS z8>+Nl=;mW<50|?Poxm5YX`kS=4(_)^&r?rbgsq0>WY_GuvA+mSDwb_xnK$=PCY;L8 zAhw9(n6JVamybM^J3H51uOQK$BJUi;w0dkC6qxJRkH^z)6K6+`REh25Sc+MPa2 zXfKRQ?N?|nRt7V7rNgFSX8Y9GbGZ2BHt%qHj$|I=8kdO?u8{O3J-59?@zXG1(;G`Z zEX&yak-v$#`O^ngx>EeMg4oL6IA9g6UqfqJXmMw+NN9rm-SbR~ZYW>#jk#<}S0YNI zZVuzIwh*g;S5HFI>zS}K*C7!*`9M|Eo`Id3M7Y#!C^23nL4PE;2F`R>$kNl78Z0<4 z1w1CEQhwcuReoABV^uA}b#1pDUVeogG$!2$U(uEea-15_$D!?9C}nvKJmo7ck$x3X zRJ4wC5P@0B>4xD+5ixj#cGI|-N0M}ISXS|FUC#Oi+M6u)=(X6L zc(8IwZ-}Sjj*>a^B9LKp!}q?2Ru7EqFANIbKU(nr*StG5x{5cdp>%f4e1G)rfk&0O z=sWu1?%{R(h@vFD(5IuHRsD{-!YmGAyP=O?GcsdtoscY<9`39x+vJZoYSmoIwV+mS zw+Y%cN!(?zUH=xjJoV=-sJ=F>uYdBtBOcj#qf;^(dv;@cARK!d9y3hVgW=MlSjI|9 z{|DG{aQ#*0<#VY`VhBh+qkOVLjs!&h&0O0MR`-*e9bc!j86NEv)0{Si?ybi5rN8Xt zf&N;ZGZ71W09vfj7YHc~QV$>Vx_B9bTMnZl$+H`5xY<*Tb3e=Xl%Ow-Z`HOHv8Qhf z_rwEdirCuS1F^uShSGQZ=!w@qQ8)RWeFM;9cR=G}8*->ajwcUbTNXI!%0G0O219Ib zXs#VUa^fusw@&TrO%wXdlXgAJJ@l?h8Pj&ma=9exw+Io4!ktz0JLIS3{|_k9X+@Lu4>rC88(KK?&IfjqMWi6q{aHW3#a zng1z4<=ya>BNIaM%*gEkEvANeT_1PL&5Xf27S08O>_3z!41D0I%NZ)MjNK&*u#Ic# zaDR&y5T24B*+nuw&=Tjl4n_od{YB}=Y8tf4f3~kie;qD~nWaiTOI%R=PRwEQBR1Zr z0n|i6wxvyIPPb9Xnj`bRy!Y~6yZ*p7eT_rbKlzAxV>`;f&8}U-y+C}TaL&QNU=?j^ zNntujY}VL(rN;aQXTe7vf~5h36hT9+x-KRBqYam@H(6?3(H|I6M({SUsoYWd;V-uL zByHbC^g8?jK}%FS*X&qnW8H5_*pD{u_dd7P7byUFhNfvFvVucj!^cxc{{u)fJxi?c zjv-)Vm@(yWQ;((Xr#hc}Th<(_stjrEOFhvC=Z9)LnZK3qVh_(RX&WI51;q*L+zrEE z{L7W_Q-{1NM6^RuJ42G8PK6>jU)4^}L)hHaqErYRXLTYH9P%N7EPa}wGreclaGZeQjQFoJ^sjjx`Y8FUnvXQ?cnny*9HP)qi>JIC( zwf@ppZ9%8@2Mw<)5zXo=7Q&Txf9yYtNBC$-c&kK_kz{nF5U&xh%`i$&O>u%jaKD^J zY0HxPhW*Zp@uc7Uq5c&tUu-f`T={b*sP5sb`{`_+wQz24g9i` zps3KC#4{uBBIMHy&dwDE?T57DO@A!J6A(V2tU;J-Rms2vlbZE&(qC)+u=E&l>l9lF zgC(Jz5G~es8Yr^_%g!zlH=j{sxR#?nVsBsDI_f0laVw-=Ldv%82s2M=4ZE({9XE5|lcu&hHa=M+6dJZ07SMEtQRD%eUd}{6 zIq_62HO}$)K+WNx{hEbN<^JHR>Eo1t^E|aUVmuJ1%}s2m+j6_dp_FawSaP5KMxOOf zNYg1JY~H@`nnIAeqB21O6t=j;!$}u-h0F zy!Pe~^ooEXzc>CY;`|CE&A_(<|nA0qx zKHpw>fTXx62d-;$!lz3urQJE%EOGS*Pp*KQNbipRg&XA6N}A-^D7IgPL5r{5K_Ag? z8`bk3GsU9Y$btuUo@sfDgid?_+0I(1Xc?}J9<0`7HG4dLL@Lyvf__3Q8Zo%Dh;!dG z>&0SHIz`J0^;{wi`2wwW0@_Bg(Ynj31B8*s2RT%ArF%R}q3VLh#UIoRqx(1HnCG9v zxkwvBTFGB=)c1)sU4!RO?t4eRp|G`TiAy*skiSO=6iW zzwxJ@8q`@>P2yPiuGWmObo1S652DLgNFsOu7uAVDtN$NRrK%tY)rCm6*k17K``vi& z?csP}=r0VFnMd2y*z+mHQ!b_tiyrop3r!{-I>nfLd0q=#*V#RPrb5V3`3ooyvhB>% zY&dJJ2y$HUayY^$R=9NBN@y1MuasBcjo*6qH@O36JJfK4h`=O0v<)JZ?rF)qb5KN) z;_0_dF_?6{BVz7HG$s`;9s-XfCQ)+nrm+q#sa!-oKDE`+w41WO#I{DF#7#cAT$So& zlD#HWsL%?bK13PZ=z-+>!8F0HrO4Z~=bZNmkN*Xy@(>Vs*CqEYK=vSn4eRXFopw8K?2R1ju^bkp~ znxg%VyJOYp61|<>xo^w+$B1YMoVb~A1gc$On@z|_BnQ0jF@0EvEo4%{KA@nqd+!;g z>)lr5+r1c-JeMMvdFImo_RfWaL1AJkO-yix;e4V)j?WT*`#=HRSc6XrMfIB;qaPg; zI-JpUV1~7SbLyKZH@v0kJl%^mhkfE2mY1l{(zsVV!5<|y^GyGW`epxZ){tfXV{8yh zY%^Y=^h8_W0r9}Es%cA(yd-zK@r}|tJ^Ah($$c8-W zGk@T?4ykuu6*4mfNt`Iwu;V_EJTJ?ji^(BHhTmt(i?RG`zPYG>@UC(hPA;jvZR#G8 zaj)H<#dMpP!)vEuLP587cS%n%WjgG(#qd+yAPX;8-dm}RMHLr^AhmbVy8RFXvRj1o z%M6jRGm;XF3GHd&NP5VqUftcmyIE{E=o-=o{cY()-&oS&pj|1JHsOQt#neGn_Mg!` zpP^*QI=2dJODs0ymz+PEh?BW}NKfj*{gkfSd4Dr=#&Slvg1>nZC^jd6IXe#}YwUNl zp&b_TR2dMAOQA5CLStm;GRX(p=nTch$W3<$IXnhrS|le`$0QNwR~5CL8iMyd$smn( zA2X2yPqqn&^Hwe zy4CgMR^Km$URsKS=cg|+{sT}&A2q+5qEj46bslp34EXtD zctZWkqWV7SR_4!*gBf|lcBj=+P7`Mn{difp!TBqLlLWo2=3?N7-ML#)Z@UsYJcM)P z5Y~u}U6G-OCf*!0mTwGv^^J|~qMX+2{;4kdyE4@mPv|N{E1_|JVm<(4ltHy(pRNwrWh$@9U{6S~l2Y*V;1MAVbMRI$3Pj2VEj#AlC;JRM zgm@{b%56(w@#F2)?Q}#gIr;Dcy4BxiIqhU5M=Tp{AVP_Y*Uat+d%5r#i1{M7H9OXk zuM|d~C&yjW5nbaRcV7o&NxwGnhFCPkM zmL_7f5lNQ4!o_Kmq=}N?9h6?9Flh-)z3>ggM0Vrd;`dNRQ@&>oKdm2GL|*5J+x^+D znU7={!c)bTU}`?~5*kIU+U}p;bLTLy9!|+VGjt=6YJ`%PZTSx^;2}}Gir)$5JTRv1 zl?60H>PC(tB$8%wcxc_uSQXhqOm_!wlG-KSEYi@b=a|O!!@#4taP&Yj+tvpMZ(!ew z;hTv#G3cYU@Km9|&JvDcU*H{E`j7QOKXlO6QC=Yg?&ib zRPrBc!Nzpo2zW~?y(r^6|vs7XH& zK2@y*1JB!rnS1C;3Ryl~2z2OykkT&wq~BKC?Svs(oJkeM151p*w6z}k;C>8gyEoEdqXMj*(3b)5sD)C+VY>KQ+uw!e6 z={QVK{GPxc8?|Lxkus*g8>IyR+GT7;atCMD8L8x6B0xlz^3}%&_e9*{7#u!^620mH zb?~f5;PEtcV2i+K{{4Yegg|iL)jbO4441zR8n;x1eMLL+FwgLSMwuLab3%oTd$FVA zboVlf;mp&=dZ_ga3haZZR`jOT^YHVq*c^Liz5?*y3q) zpuRGCFjeQ7F+j1N|2-$UZ)<`l%-HLTvsk&J;OEL$OO^;5u#kr)GfsOU%MBWjW^N`G z!kW+`+)(~)jHZb)T4Ryn!d$Um?U}U6W+riUMii@HQjm>Ft?U|vhKBuXX7JpG7(BP^ zR}y&!PIQf$wxqL`+P?>Gymw(94oF7#1n;7$vR}!zKqC&eY&v~usE=5$@a$y2F;TLC zMNj_&L{c}+9}!McD?Un!c1}`>-9v8emokARyuL1@2CYHTc$F@m4buxt@wc3$4JFb|> z)`iveFCwQBm>Ghq5WbwhoAdlBaFj-Y>01#!W|_`Sk)*|kC<5-2qzYk{(63x#B_0fj zU-`~M(0c=L^^5d;&O`Fk7*FR&cLKI}!;5dBv}+I)9+VfTRzcZm z!#oCN9>d47T2arojDFgVm%cU;-V;sO0+SXUj`KX)^vOpJxz>hj2^I3Y;0Q*^cQ#T3 zZ_^*Gn7JkBaYV>g=XY!zmk!r#wO1({2pel8_^^=1gfI1cH6ycrV#!Ha0P3HTo< zz>oAw{NAox#jgK18qEIaI5Yb~NaK%3Yl1dbJckjg8o3v!B8SVRGJ=#Fm`zX;3wSVV&EBs1ErMurKt*+k-x4SL`za7f6%X3#MS z#-NFzdJz;_dFEh28ar+7r4ou>|CRi84w{JArJ)^Ai}KUlE+!GND7xQ^UTDI}MtlXqC8hw#gSvPF{Vl1uC4A$*~| z5efRps=g*7uIF~l2N@B2_&OF3g+D@-YOKu$wQ}DBO~-zXmafVj04ai?xmPi@6_iZasgoED);)K7b-c?chTwWiJBsKRC4)*qFZHmva{ zyyx2gHg^AbQ1WO;f(LtcaOyJZ_cn=e?U^Mq%~B}r6ZxbnjUE-OCQNSaKXNNd- zz~2&1v@bgP;uxv-dsPcD$Q5>8=ST*{0fB{EuP(we0&lap12T8k4+=b4aK{ULETh=G zVdbD>WBHuIv^*lOtAGt=`yglFSvCuE*^$xM+pP$k*k2cPGCC)f_Z597b6OCe|Lft^ zI}k|TX--#$&&grLEz^8+x2h;l)5~srI4Qj`gcsSOouBe5lB-_>i{m_jOq>s>B>6tG zhFw9%M<%K18oaVz;G@;#H2ysU1CZ@M_9(4NcthWyeu;v3ktW}))sDDM zM^B_%lBLR(497RtIa1WP=jeT&%{EH$3~xrZ=AJNKRq)5er?Wf)dw`GZ?=#wBZmN&5 zUI;4A*hC^fn-2AZ69x|YdS~MZRmP?c4WQ z*1{Ya9}&5M{<4_Y|K|8fmm($I>hejlPFc=qE$l$Faq# z-ij4UzTr2oTE!hNr6tHI{Xqi+=ZiJll(0i8fQznQZR^d>*&7z#uOGJ(?>TH`eF>J) z@AChEy19!n8WQmaGu)#%(+4EA{B0IKoD*6WqjCRM={>~d>0QFUo8!NU5dFJ8$l@Kp=|F1258e(Zqc*zMv{dtmBsJ|?pWSL&MdB|}|B1+yjIJ|sbBvP2Z0OKlI4wYkkY)eG2ywK1_9=U{V^I|*AmkZUKGP3Lxn z&U{gr9bH7%keKOgKsH6psJMMgvbuzuA!3ek)D`wqk#!+#xfey2Uffb!s!Zl4fkwwi z-*|GFu@aE&i9Du2;x6J!I-gQ*i(xW!mT5 zYVX+-;VAMSIH7=--sZvp!>`L%*4{Ru>R?3O7)z1Xh_3 zPsJe!w=(}#xBy|>4plkI9k1o)KQ2-J2e9IB+@?=h325%dbpx5!0&;M)VMuDI%k8gr zt}-NK_Om~xK!6`cbE9z(!%o9eg3w=z#0^d7W-3fwrrL1)5!1F z6LDfp0-jZlny|&k8vDI*q_nUWUUXWfh)$dsP7%KI1UfJGaZQdo>xN?kKK!{FwFC%4 zreljF*NQ_#0UkMUgkhf3uKY40vRWogg;>J?XhtbHOjoOl-w1^Ku|vP90qo zh~x9`G7Z^Vlb&iFeMzG04uNh>fntWwX{PXNS4uUpq!TOi%>bDIEzVQ_Rgk&2`H2f@ zvaLttm_6cw^Cr6V>2TheBdu0(nK2FO z?2>6TtJv?m79W|nl`1)uDyo@9H(>E#yfKfQBp%@OeAXH9&WQxUuuT-A=AI4!;7+Lh zPCUg(d9U52kwdSs2=rLq8F!G;AEQ`e4`jS)d=!&l0(d!y_XGATk#2a*g7psiUdLdm zaa%9Z>F*iwI32HLoH$+j&DmJO#=JWby1)&X_i1MQc5Rpx>CCO`kN0O$B3-X=KD+k| zlZo*obdr=3erTxLhupd9@F^n6e z9_w5I4>d>_r*9I7L*XmrWjdG>g{0DB-1R2pnD+*JpU0wkfw97-=rPgB%#Dr1B9^^g zz5>Tqs008!+?wrTc8^gE-NM$d^~l46mAn;mGPvTP<^S?4JJ9X9G7S#!(=a9Ql^!N- z`5((&QA%Fz&y~u14b-{%SA;g@E#CmsWF!d_Y;*ZM!Nc}*(yj#f=L{YsZZcIg!bv^h z-t6{JU%xVu*WkF_+16YU87sM5zj1TXbFm~G?gf=Iw}W{Xr(ytQ*Ok@s0-AIUTLdM~(OT*BDjGy_m} z)bUN1483WOR=f?c{58CG`}`T^Eoiv8<~HsN>lC)Y+>Ro0nLYsRQ|gP6i^b!I++Ej4)G_2e>Jjca(Ue?j77RQ$aa)~c~(EbZ?Ta|){GSSo0C zNO44GmK=jDcjnKwG=t3ja&I4R-;}U(huogriez3z(T%VFF6$4wXWgCh#&DEQ@tIJbw8 zXdLeM`1(Zv$J{t<8&~j@^~fA2u5%lS-qLjaio(3x*Q`IyNTkW*E0Nif4?DTUm)r5DW$Lj> zDA~^(FYrDcGUQv=`Fh)Zk@jYeO<7BLlF=&Bk>b7lP^7cAWnMtXHr9i78CrK_k6o*c zHiD_EFJCq2c>8oHK;q@;r<>WW1)fUTYUJE$k!0nhd)09z%!$ ztQq}O)pHF`jV&i0)BKh-J5Cd@Y^KS-5|2UZQB(w#+E${7kCu{f+G+|F#HiCXO47i) zzYP4hwTp;Ap0Ai+;rb3?HwRb@`@Sn=Q|@N&$bX+2+vrKn*~?xab$eHiO_I8Ehk^-fVj-9P}(t?>1YZS+Ar=%{+Ey zCDY-6p+9C!dumocIta$3c$3#FuKf<4``9GPD;g>Bdi|^7Wn-_PMfQpfIZq2A$6X%&YfkQby^&3O?u z`sV$4nh+5T<7K_Px+%|kcs7eusp2D#drIVJ=3!=dd@p~rb6eKI@9GA-frp93O3)+$ zRY*ipI75=@5{ceH= zX-LoDUOOrGOu*72FT-*qX>9pbN>;#HzU_Fs* zq8DX$w3U~VuOLJ6o-o13wfRY`K7>9fVvyB6MQ(b+3aKeY zt7-gTh11mX#E!>quWyyDUoDGKDHF92oD`Z;z}cw(1k)@09s+(s%53un*cLDr8?9)ZKz{k#R!F`3q!c7kc8R2#>22zWU%5HSzn7YLBU8BaIb(Wg zpt`}ByRBKp2U~IOO&x~`<;zC~0*uSpmkRrjh1U}60nw2orPO0slC8FY$B?>AFkU31 z;>pJlkRcV)e!biX4~}#t#=tqzRG4n&yro7f4$$7$OqnKLf`319Pf5Z z@SC=5_U+nM%W>mitW^Vpyei_h=lxW(ifn7S?U?W@1FNIV(^eiJqsJ@~4lu=yJjA*i ztRCvJX)lnI^z<=kB*H06G!b(r+O4OSFK?f01$4w~^1JgLH3_D@y?zk5M%~&xhgwHr z9~UAng}C##&u!4B52k*e8zxU_Szc01|AK$)M0b6Ai<<6S1ucMqCqQ<#&NTxahxAKN zm{2fj=$86;aMpR;q}K8cF&i&MSP>$8`d7w5nz3$)B)Rjxk`ZOn9Dc6HKq%Oq@vu$1 zA7aPH7cbo=brW0vrgfzgTQV;*zn8W|v1Ap15$Rr1&Mb0mAR>yoSL}JIiJ4P+#u0@% z;@0?d%q=rg7PPGRQ;{Pwdxm|I>XFK@I1*xngI zi%-kZ<=s1m^8GO&e@H|L{4rD~B64^*{e)Ac&%p|_J_C~4S`VhI&ph?U96{~*fc7e_ z#f^ZN7A#&!wKNInN|kW*$HAemd7$`ETa($=Y5g2)qF}{#r?YlTpyi4Ct-ipvwxvi1 zXBQcDe!&)Xc!>NIQNGyyUx&l0Q2$A?oU)?{AZ!&{L)KB$~B} zYJt`P`k&NPy-M~A`e}Mz_Z<{#1@~q{i+b00=ddlY@0ot&zcOR*cnflVQ7OUU>Z;;U z+Z$-V^-@hNAUgXm@CNJ+F5X*kn+MVP$M6?Sq4=2}%?%o#3tFa-KX>0Jexkpq+fTdG zMySh>*jgtrJ6`k7LCEk&+?aL=AlbEJs4&$&@7kk=RBMS} zv8G`*>Hd>Igh#Q$RlQJN=|BX76YA|D!Dsa${GFMzL+MzYLFQKJ z+k?sAHon3%ZwJ064Q|KVF8;%+ar-H7idoLnB|Ul6bQ{`luK{7wiKn>cxWXhk1MW&m ziXQ;^4@3Z!-BHpuP|RzSE3r5;ELdxy?f-KX@4Lh0t&Kc zOC{E<2zHxQiDj|1|RJL=Z z1EL;GHNWT2<97ZHWTNO0^DSaz zyHCJ!21=BB_{3%X(1xvBt`r)SZByIq&c5pg)L!B4$a7LHvwQcne61|>F2J@eleL~s zJLTB|XFX0z&`b|zORQ(7o4kvtb##+keS2YeQp)E*6PNgDJR?i~dHMOmMUWe=12UiO zjO?CG4CTC^Ykt(3M|XBEB!9v9xJlT6gK888hQsM3ag4>RT8$VQ!*MQu<=uLE0i%Oj zb6uU#t-gR|J7UY<4{F zE+u^A975;Kcs8PoG{GUCGGO%`JaI#wp4sNjDFEnE4?svkb#CCbhI4}@u9Ve;i6{&4 zN!hB%FIZngof_<+yBMC@9tQje@EUM;vuslggr_?%wB=m>*lJow`%I-C0w4v32eF0p zG8O@{c_-(!lIpfR)RK$UQIh+QU2sS?)Mh3HT1E#9LwgEx8TfFJM?-!P>P=1Py!~w- z;%P)gb4aOj!s>Y*N&)n^Q`y3v`ZGy}igwhG+reJclISQM2LqX$bd__l^3LfASgj&# zhbwt}dr!sgjEU>g19WSnj;ZQPPZnCqEND#6RoLw%XLbJd^9qH#p*@by5*KJ#MO1-c z7}<22HOyWFH}wR{Y4$dCU3(VtZxPj_RfoI)bkD}$5(w9C{6Wtpx1@MSmPxyx%l$a< zbBB-m67*iUF4{41MlM3<FTMh@IOsAPCf)x^rlr@HrL1PT~xQ>(0+y7>3LaReE_zY79 z-TYrsvW1))@CZ-I6}y(IS!1&9b{XHihp-HN3@7PV_}< zJ<-rom02EL5?(%~Ez4_w`|%IC??!V5+#ZUOx|VtBI9rz%k4qX9IZf@<&&=I}O+Ke} zf+Mt9-V;4>wfQ`25De8Xg2~@+Bq1^HA{hkh%6BK%2fX@SKTJ)o2i_QPG;PSEbST~u z6vvxzTo^Pa2fbE%IiUE`Kw&ntQVT_Rl~?n68N(_xp%z8r-vVEm8H<>0BA7ASFAXU? z!eHL7HO#4hL{Zxev-)c( z($>W>GOLatFMin9A}Wyhj4g9w#jMw|H~@CrHnzuut&097e5bj@2Jf7d_iAi`?ZIF4 z%!#dLQ_0^mgK*_-E;)3S(Gy-5jpU($knMTvri!m)4PWKOFM@2V|pR?Bke~)~Wp{XLbRvipx*D9pdaeu^Pp?NXv)qdv<^j zix)8xH!Z9* zuPgIhum8BUZOo5omb~HCyF%;bV0&~ZPj@rJPL?9p4pEXj;?C~cLp!R7?-fg)4wvmD z1aJ87B`W2Ai}~X$3%SY2)5?{%oy?Eh*`@_OKwDR|ryvJ+7QL_4Xo_PyTs?5!pdC?% z+#N!Z8*uMsk_KM@VU{OLQ5>m-)z5p;ts!fGhfufYep8+QDws5BiUWln_k&ZE6juC) zG?S66M|i4&y?*T^fH0@xrP586Gtm6*%Daucor+`nnMK!}f!j(?t&Lfx7KhgJh7etC z;0NRN2u-Ik6CUw4rWo2HP2%=-mS4D;5|$CDOd%{LQU?g%mfxk zBqJx-pvzc|Y;1uVUiaKtOh43|GIzg?#q?~6TI<{g;khg~HM+JSb=et;W@QtG*o}V_ z$*|rKK;V?0iT%_UW+>WMSP6YNJ1$xuB_vh;z>6qdby5=+fXOeq z*g;M9uLaghN+paK--VIKMuQ&j_0}qIxTSq|`VTPK=n`cz{y@HSfV=uXfK&}>+<+S# zmc|HqRF?~90`pHvP@6!F%(|mRJmK5J|`Fx`G zxw(5xAH~SToy-a947<{)*V>jLA&UZH=+lcD@;`g8ElRFBm6+b7LkST~e&t+M!8HpO zU^b7xq=XgRBYU!}|*>O4|HjQq(!1|BVax6_$=x-E8E<)-?>x=5~QaF|JYlyB&ON z*JeX1jxLKGNAZeH-W3q!R0WeZ>nz0+)auX%4}$3ZM@%p6<5mKZ5AhGz@ms>Zl&BQN z+gis@wCW`g&I`y#_skpqj|oN?c;3&ppQB$%upOvKU8ficT2SObpI&odX!wd?KC|ew zBucT0!d#*Ll5b1JhC19&#_j(DH1Bc0xaic&N1}VwL!yLbn{8L@>7f2`SDZ?q*71>* z_#L*7_{H>h5OdVywRj`vwa6Wxf1rBa-*^+agomj^&Yk_H;+NxRs00K3+k2!C!b~TW zd`&#@qCsa>i~Y@ntmL)amcGZ2REPUL`%P)cq8;;blL*?S1)4`1rpyvloFB)u5GB#f z$fSo3-xip!MCujqBa4FMn4@T~IZjO<7T|d^=sjR}_gM^!y!kme_G4u>$euA*&_;Tq z>1TCwwti`saS6gX>uU__YT&vKeUav*MeA0Gor;7+x(=l2+e<7}md46mf91?C)OSR> zNB@f4=WnkbKra)sj$vd&E0Tkf!oFO7nep&c?eH z#6I2IwNL7heNC|(D%ciiOjIoKs4%}xzG=}znlfd5s;s_w7e7RSTYc!^k?25ZpYvwx zCpnz=Ur`9{X44l~gG&6|zp36{_o4cQNrc3BSMOy-#d9z`!q%Di)=0UMjFO&UXmjNo zx-4U0q545<``6t9521SKUf{#vdcYPR{McF{9wDLR$DTzxipckUyT^<8mDcdExwV~T zs-Z}(>waQIS=%;BX7^6?Lj=oHZ!JYbY~8jZrR=q#>Lb(sx3^;D)6lT(9=e)=ZZlt- z(BE>N^lE#3!_CUwHf-w%Nv z|1w>}eTS9xszI|^W;M^G&LgNTD4}Tp{RdJ&-*e3ZIM2|;G4D`$odaK1XY!kfAA|V{ zo+y86EJ8bN82}aa-?PsG<9B@rP;$|>DPLR^Dpq_;Sz@njrgA*oI=&@IS9T3=L`7}7 z$0RFq%Xch%g%phIJ7DE)ojziAl+IlI!=JI-VfvK1M0L5}qE5nwWa_g-mLlXoalYpy z`P{rPOW_^Lsnfux!#5U0G&L=P_lkYkdGyP1R`*bPk}S6|&nNHxZL2}J$|OsY1w~nr z+QGc%AU*lVj9)}@cd^KG0}P#@;qPCx@K`-`8k0Nx#I%(ML!%}CS*S*_oc%KwP-Rd; z$S5k-;mt!Ryqwa+*0x`W|8YQT?s<6M2bBEF2Spw9IW8Vy^rOeKhgv5Ei&B|j6EZwp z63jeQxm_}Ae(enc2`WpM((;RmrHLBj=#W%`R3_ZI3Q78O4Goy1!z;5=*-}#K#{l(O zGVQo@D>Sma74_K{hpRV*y$Y#-96#`2DOmh{PW-S|F5t4@JrqTv?Ijqvu|<*Ei$ zkva6;@gDQ_mNX1>MuCx^Kgz6!WrE9%w^P_@G6BOI>vBiolhX99u#LlSrsQR2DU)`b zxORu^d(;evaxHf|+pKkMhZJ?WQ?IosR-*0l%Wx7=pu6&pChA$D!OqNz{<@y|s~5ls z3+PY$@Lz#Yo{mzw3vCxh^(qhCsP8Ssf$kfFnoOmkQ=3*Rakqp-4o19PbXy=Fb4Qy~ zwz()a;ZVRl6qBg+>5FNhyia)FnmbFo^TYI$0 zic|@iO}KSI!zHU-|HzM}D}agRU^^xArT%8EvEPgzIxP$zb!1g%us<7`kaM)UUjgpOnhaVnRUVy0^3MnTkz2*A?)10@r1UOIcyRDnTZRYRTIOZboM zadgTT+*(=kj6F|$>!Hyp+l6!IXsMXxVIK{cQw4@S&qAJZJ4H2vqiwYj;Z zG3~OSmnKJ>BM@$T)2SOdIPP*tEXX<5IId4maDcD9KMHT{{Q8fljNyua3rdeRkt}<;~k8Ib4jorKssvVusX}1*@6?b^9i~GiFGTdiG)*?Ed zSYX;cA~-o&z-6X_gpFb-tRW95H<8k<>tA^(oj97u<+~IfBa=n z;^!W!FUpyd8jJ9cUt)RB4<4A5XG|Zm2r#C$*ejOCJhx?jj2>n0oaHQ+ckA&;(qkyT z!0qe%6Plvtj3{Vctin44ALOOlp%WT2OGq#Z6R(`@S6dCpgV|BFN_VrIe3)qjaVW^! z>Ytn75dKZn&mGrSNZ6x1)S5JJD3d@s46;I(u5GmrN zg{4|{^e21WR)Zt6-j$i3s3+*u$X@pMHZw;t2*>YbeQT(ay-lop#&V;&I|@f9IHEDZ ze3bewJ;&_tLu0dWr^MpvWkN6w3p%$8=8tX(_ypso~5X; z{?v4xn{^dMrhzg2OT{PIy`7SBuz9Ax3=8agcV=JJ^b!xSm^D@OaM^3Ejdf88<0>0ZXNy(|T8^L6yL_AY{^Y5=X2Px1pN~`P5OFD_F)!cKAo?3Z}B9pBByuuJ$ zlzl@eyvakrtn67u6Z}5^nUN5%hm!SBzE;p6K8G0tG2eyT3+qip$po}Me&{i8RZTB{ z!6U5x#C~cFIDlK^tPQk6_*#1vinSjl+-7xj5MKzTpk?MuiBSbWt`mK zF8KonK@6t|$s6|f$btkNvgxY4k^@LOApxz)JP$EW0pOI8|1N<}tq7T6oNT50IL3x7 z{i42t>i2rrT17WL#$js?=|pVJ>|i7zeeNhwX=~+#a}AEz4xibHJaPm8^x)h=bUiRT z3BhtFr9^Q0qx(ydBu>xxTA(}q6z*+!%xU?dUW~Lm>bL&ReCztx zLzv8S#(J@LTD=SL0K)WCuv9D2*5J2q`7$s?Ck#_F^8(Ef(KnK5+kD|E)=fzqn0=YV zxp^qW1KzGg@1riz8pPtUQb~|9ie2Nb_`g}sL}tLXWv=qw%;Tehq7?C|p8dSj6sYG= zdR63gx&9iKlK~h`cyvW7QN%Q48%PObF1{tRJF>~Exod~0Ulf=wd8qz_FoI=>Kskj2 zg8BlL4wotS+(C`7q!{v}Z3KpCKsYPLO~oo5OH>e;dj=nCAYw%S?7bXCL{LEPXSOU? zv8zt#dgdIQhEHm?RIP5_%O^&h_i4#Ub;{nN-(pwf6!bsjoKv)tUmWjfTX58tv8Rg5 z(^(i6!Mr`V)tuM(Zcy^4avR1;cSs~#_%tK@Y_l(kyXZ1dyD6T^eXrNKKyB;AZP5E1 ziU=PME7E^-^Cq@E;| zXGIPSC9a;{p)#xD`{JobigmRaxhWi6dH#)WX7-odKz8(olX5)F!>$A@;~-tyyZLh? z>Ghd~@;~>&uv8{peM!#udV>yBbx$%1G0b z{zZtjLgr7bme*yCu7bK9{g3}qbRPax|6d%xw#-ZRyjJ!m*?Z5+z4ngGjJP42jBK(q zu4`SFs4K<&8by*TnU_?mYjureWQKm9-ygu^aj)xh-|ur?ujg~a?Jz$;G2_74>eZF& z#nX+H?sdc;=~agjfqjJt(&aG^k*Q&_pni$6jFyQrN!ii-j4Aqe*U zZ`Px~!-S>A>$Krc#S9I7&x`xx@P=k1aZ&$u%ONheP@7N0!K`F}PlvW?;0tb9 z1;lBU=JS-(WX49MVZ5xubz49g6?_)TJ zD`zn_qfY-@Sh~U;71Lim3n@E|fXf0JbC@D8&m_vZ&Fg(p)-C3;!k< z(8Df$9K+?w`Ww;_+wCK>`Z0&AC5MZ{D(_#?b$oL_$2R)nm4wL@Hm5MfrN)Sa4@wQz zV8PDpDh~-_+-n_gG8|Lz75kS9MHx=$>n56j5fPon_xJ*SqfcFd#93bAS^U!i;~8zO z=m;sHUz5?TBXjMkcNd$I&61lP2>1AS^ixzlxPszCAJPmRw;wz~K`7*L^F`r*OF6qs z$K*(2S?k5sQNWlc!&ZHm2>~@{OysP{A33OaNb`UZBbkQ8uZSCR6 zcm$oMAE0{YMB@=FmS1mt8~UvneEtXKw&YDC2i%=w7u{tg{(+vf7e;@0G5iwfgm$674c6Qm$GusF!R9*6yZwZPb*V#*yyOg7OCuN!MBXc7@8c0nB(jWUP2`Tr3Jq+~IiU?%@>&=Lfc8Gphl+gQgUPP7I?tz<(j6Gu19= zq$7W5*}ZNL)qR1#=GzU2%tjr#)t;f<_`wNDy3FHmh3-jj#dgx1N#qg}@S7_2KqLh< zBpFFhibyb4%~G35_&$slWtW*by7(S_e{p9pVqf*ylNg{KCiS#Dp>r@*{*Ni;g*GQ3 z9>BLPM++!^nEjex3gn3QwlABn+VlAyNN+glSxP+R$dal^c;I8L3NIL#R_13>=6?BJ z14++E#m5pBlqJE(9L+8hy2Y7*YgpdoD+TkZ!Q<|Hk=!Xt=?KReX!QrCR&6~d05w~< zDN%29f@pc*NHmDr0$<~ziQX38;=JMGNItu;OtEs`iEpP{aJb>=R@z8tA=VZ+dB9{V z!br*zy5UCLVw4XNp4#)T2>QM^&0ba!cuf7g_d_8ao|g-z@CQw5I`~X*@dc{hhylZG zbx9~ASD3jw4Ga^n$<`JrC)nUqvCO}8>9AY0i4KCWyy%CbDsFUH>odgCwZg<*qJHDK)sbiqHV8n*g z9%^xpJ+3X1AP^^CZwj6c8&EmTv4(Ik`rR3ei-oD5%TQQm%JoD=02wz$AF)DzuJt9w zd;*MD2ct+0*Jf!R0E2EwZg6U#56O>pw&QxsRFlwJ?lx2~@(8&;_CHchFtNB>U*&~z zdD(e4`gAb<&JM~1UMd33P6}HngxrO`yHN;BQD*GtZyAmf-u7CCD~GJPJ75=l&pg>T(`W$ zb-Ra;{52sy<Op|6?xk4`J@^DXl9mcit5*SEDE2v{60j-l%_?nPZl)b*&xbFW{3F01YHqUW*ugY$XzGHsRyKf7Pi z$53~OiS%1`=wPzQ_P5hgcdyeRWe9exKnf@p=SD31 zxdL1p`N)3Db;7Z+&PQ z`Gr6^NS7DIJ665U&uHx>M~)!KdsnE@yZ3v~Jq)TnF-10NtabdNWe2_ehHugHPG0O| z|3G5a)>()RskfS){d8WB%-*!nG7h|9=Tqx~AKJ&}rDY9I-{&t60#(Vpbm^L;oG8e? z1pl{*QHRNeectK3fv2hc55o|gIPLdNy;+az)^4@M9J4}Lw$_pTJBo~=Rnmaa)6;Do z3mf_9sQz25r~X0@bVn_) zO6B%sR4i6wbFIxaHojq__v@D97*lJd2Z%|lu^65SZNo#&D3v*0ZW{(V3W$)Jv>HQX zcN!Ir;f>1%hu{6E>C6=cjSZIp6B)J7K_@f9{~t&u{d}2HiQ+p6_@-J9eWhACYZuX3 zF9{UVRKKPeK9CbtlvtmCbE$yBNWDiV7!-7=nA!-k%{q6%ReL}EDkFNtYS~KO2A+Ue z?(tgI+Gg)w&WLDNN?(mesq@=7iQffoQrxv5#TQ{)tSXvP?sG3;a%7Q@^jB7scj3!X zt{nqL9gQepFM(pkO8N2Acakv_jBc=E ztf5=Axq8BZ-p4lOWs0F!qHF0=$WQ(bmk?!+Avfd~)Ex~`Eu>ISql89SCN)3!Ta4Mb z;TeuxUNJ)G5Hy!ZjL$9?>{54ieyC{S7n$-JID{pkmxdRJ= zElPt;vNiq+9kr{a@Mr$cu}vK zd7{6ze`7@Y!>ds=!9}`yTNu1ON9+x=w)rf_MgiBa=+3ZK$t*v|U^N^pQ?++GdggoU zFo#=>LBGn(hJfL=?oEC#+jW}y{1MfUdOQ6cOI`*m+KZ3#4b8xC-?u*^lSkjOQys;+ z>%Rr%bSi`nN*%@8$X8^ORh*c3LBD>!EIyWoR3%~3QK^N|yYLHu_DMa0oiwOm1ll9V z26x`;1mqLXV(adP)8nnWT2}*U9s)`w_#uNdf*Bm;|E+1mx;-$t)Zig)x8}l&*wLG{x0#Ihf*XYI_an}IN6+efC^FE z12YwqosW%;_&n}REWi74_STEHi`@|K!Y{VyDJX!ko{%@@b2U#}V(QnxFpx5JD&=lU zVh$oM44EZgI<-_^{CSfI&E*-k8ehIf&=$c#-ZY=M_kNXENYt+IcH`J>pni>Om;MW#jX$HcdF3AtFf^U3UXj%otC2fKmi!(SuK6p4f{?ZbCds-)&TC3lP0W&Z#Ovn^M(i^ zH9Z?7QC#Cj3TZ7`f8$acO!KGV59}5h78?&~iMD&>S{}E|{b7)#{4}R>XgN69qPR?Ur2eCYD&&(1zPYgOb3w3AJcc;? zT|%~Jk*=4UrbKytq(pEt`X7j!dlfUr^WiPN-L3BY-azlm(u=i5zAH8z958+Q z7-LsuIs=sb)7-l+i#T|R0cZjlwQvlU@kf%yc(;`MOSVLPKk}apC-xxq;m(i0aiefL z{m^*G!D$L1$zm<62axu9oXK=AnFj57+>+lY$bBq#!NLjLtfBL+7B2<1>|a~-pK-f7 zFmJVkeJw?v<#|GXZjsn}0p`f<0GK+2{If;j-bdSL))SewmrKxZTirIY(KNc%5H5aJ z>R-#Y3YwHWcbWoYu!XEhp_ll&2YN#)JQYtKx(~f48xngw3LK^!tYiLxatGCAJ_VtE z#P%rDI;%de+iV%Qfiont1F8$I){FJmGE`MR?PpTR!5z&@W0X+U)d<)iYBwAu&Mxk>(myg-i%3lel9F8uU$w1X&lCWlz;q?!aRc}>n)H0 zc^l_$K8I>Tqm!tN(CAVFr`F+pDb#bzH~n%60_^S<1B99f2%~bBs{BaQ|KMnF6rp9#AXT;&vXifX!m>){3M z)B4?Zkz9hG6}i`H-Hh0uW0dRSm&~3Wn?z~baRu7Djz#Aeqav5}E~M%=O+o}VTm3jR zeAza9T(tVyG%-{?*Aar=Pb!vO_@*H@-xC9@BQjF;I-mE*_13eDP;XDI^lsp?lS1&@ z4yB8;0>U{%4sxXnQcS-wXL3(f=Vko8ZVdLtDEV%)M+UX5C;UEK)MecW7MB9BiTeT~ zQ+u;l@Qt{F9F30cdyufEKG?%RIR7c1fez~ctdemiVapOu6@Q9w@F1(=dOmv_JL%08 zc-}~R;qRu1>gXj9H4$xeH1H#QC{Dw;D2n{0rgPT z!ypjPyt@4Sd_*6g*sbqJ3x0mN{2xYXqFx{{^tS)3;!M=)vxcwM@3KvETUC{+jQNd? zb;1CKr(os!vjM@?)`=n+SeR*z9nXVicZKQS8Ki@o*TS}SOrEXfuf^rFQ){3((bFeW z{_pq34)VUa-+S8EIkY0zbsDWztkqi<)HLrC!zXV%bOWO6=Q2^I0t$UWJ>Ud2`MQwB zj8!{b_1W!w;>sB=s)wC~v3W$woXRfyBALi{gCM5HC3J$G_FRo}@6zFy6&h%f4O6*B znbL71Fx-Ea7%?<9BAbBLU&I|2$R@d9IBeNoeaLg^vg`wyJoY%&wrm;a#HR#fM%n~xnw|b6%sJ}p0cIce!{eTgaHDh{P;-{c z)D&caO4B^@@Is$=eA+_N_Nq$&J_$9rNtv_m zaM*t{!!6|=EOyEpKMKtAMG6>q$|$8Ox-evZ|V98eJnOuz<-79)&`* z+^RFLwra%Xo*+w3tj3PpU93oHFE2_RRs2XPhxeiONd3oVa)(ErVdBgaA@Z)7sdmA| zGO_H-;g3v9nloC}06R1g5jBYzXh?81ZyH@B0F(EFh!dB_w)?oVEBOLzPyLKP3WG7Z zKdPDQ|CFZVlbhu-lwR;HdR{x&CtJQpZ$N98SZzhs41gio_ukNB@EBpsB{JUK+IcZb z%*4j&pm=@u2>miZ5|z-dz+<{pjcVFivP~Ik=3Uv8KZx|1Z*;2ZV>tEcYuT=Xaj8<8 zk^9N&n8gbOHU8Omzd#U9^(mIxI!O=hZYCBRILN{1Nowl$iC1$rH#<+O{>oVFSz7epc4hem(shCNJQ^w1 zt@QeD7{HUx&3}clBUB=XbZHb9$~!GL@np{epNL{jx5N%ISZL*JF+V-zA9)A?BLd2w zII%)?C<2q>r!(L2ZQ$pV6Y#8HX$Qr#s~-BM{$WXO2_!l z-<<%+b5(Ucx;5V>`9%OflD<pI;`d{5zs#fwZ_!X=(+`{N*obd$W8kJZ_ZLn1KaUJ}FS0vaz{$FF7wA0Sb@p`G6_4e}_h zrv7&8>G*z5-aoLNffbtdijR9W8J|8(nipGm1iF`1Wi1tk5 zQ`>wi!$W2g&g2At0Z5L(gz$^#o>qyvkX%?q&y_}c8ZVrXVtPT~sZj{@QFDLq`(O2) z-%mQK1+-bhq!Ev0A3d0m@8N#!z=6=~0tLCuZL%goR;LJbI1ii~@1*o#2MLy9t**uSNbWNyWqoSS`;3ovnm>a3$H+$Fj+`cFa65DP9Ja5bZCTz0-Gts(Nn=uR-)^oB z%kzwsl+pLxWrxl4pLJ0@ko(FcUiuu|UJu=+I(zEucJ6)}fOcJ<;am6{ggrQ|6WngP z**>?^(EOpCz~MCM+p5z}c(=Dw3~d@r_g@bzjka?I0!N(h@4I(nnnoT#jvYpus&r>} z=r7gfE9tpB0#^w(q^XL538wK=&bs>RHWp>4#i_?e2aCBXK(M7oeW%|Vv&f2Tmvg)m zP_0HUZ0=#qGRWdy!ZF2!J}9u@k)l}dGvvOY<>=3{iI<&ujd`{Q9#fPC=s>}`Y-F(> zy`F;jB;DMS-)0BjT>qly^X5!TRjAtiuP~2=@OLyMW?lh;Fr?y6(U(NKYpPtSsi<@x zLD=1}u!pPxMB{5R@kmM&c%TLvME&C-m>Qfh5|mGfm8A_;d$9xpUE!Y*Oe7_>;i+ic_CAJ_dHP^UJceJofo{__>|o3sJ>ybNrlDWJ6k0holUR})JDoY->VZLxm!8}_3bx1!X8UZ90 z)%6;&c~FXUBXZ><}JccW_iE3;N2j+Z!2+LerO6$QKv0OMF(5 zb#Q6XcC@a2aemU+N zl&G>8HQFRoCo79vDf-e<{p-p(^_H}FF7!Hm%?sh`5U;hi&KT%C2~AnvBz(gM+-N}! z7Dlpy>2e1I1Rud~bjfz&_AdDS3RV1Rikk!NtkcfyIw{!Nj$X? zvwBnepf`!BNC)z>wxX?}XGqn}6Rl`XUVe~06HMMW{P4v{2B^HLR&LPt(JFj&<+_Z_ zf2TuW06%$?eiUJ7EDAA(#z@2LgWG!SbFATUPP2Pg0(E>vN5MJUuZc{8Ori(F+l>4| zvc4W(9_2=OcR)5#Xg0ECXg1!DXBnUIN!jpk?VP{9a2(y6PFfH+^Vw*XWgjsE$Zs*oW#Wl&iTx+z!Jcvc`HGgKXN zmLxs$50p2cY;lPF%jaqw4Y%~1SX0a^JRT{P_F+!BB1XEti@jr+jPNi^D9J>7>XH666x5ByY(s}6d zaY-f&%KTt_`cbR)Y{fyEO zJLxVJ!a%iyOKqOR)4ry`cKnK!Zp7bHar*&C1oCr^0DtteP@UWnyMuCQ-}yOcjylFw z?a3u)#mK&O&Yw?(^Y15fCt5{YW@hBQdL>*FfaSfGEWkMP>FMg)y(qOM?7l( zxJ#ihN!}BrpN`+Q;3Mqr6#p;ihrYtf+g=~(6EJvv?D=3*Wq#D8hYT{jtmWF~PQXhO zM)sAZ8&+n&tBDa!9|lY;Iq|7*2*Nj3_N@b!eMyq49Aq5#Y*hyVM^MB>f)15Y7LYE{ z;bKmmkkT-#kpdwzhx~j0f$X^Lc5YYO+BJH!Qb9st!m{*w*O{guZ9CyuhH8De2OVc3 z%hA++ni4YKo*?TCn21{S{*5Ub5}%P|x<)G71UtU3I$Q733DkytyD5CKbXFBFPxR>D z$j2j9pP zoL&oEG{$$zN|WyLbi((7I(og^Z)z2xw!P>YWGACkiX+-@Wf`;k&2Zl&L$szs$&HTP zQ~gPeIlL>!MjcFy9_;O@b_%2S`CNmQ;yUNY8N-}S?)RIfJID5{(@h7~fHoi^+Y+$cH`9G=Uk{2JJ{x&99{#=NiP5gPkIcYa89;R_bIBaFYX zD7a@YNc<{0V@8gz8#kA^ixYl{0Shh%8FoVs_DMlgs&6V<3qv{?m~x#rCj>BQ0v>d= zj;>)@JlIb$?r0e&SCa#dM(Au>D97uJYMBYU_YFoDIB?t%Oyj=YlE)zCwhkIHv;=EC zaHxk}n{sx+FACc|`is;|q?h`ADS3wQ6q^=d$lJJ_o+215ZKbt|S3~X=K?9?8XKA@? zlLEOPrk#se4jFOl!pK6y>B>VTWNW97^n9=aiL>908P-c_E)e)m5lxM<1sU!|G1)uQ z6-w(YTH?&aaX!08|~Dw@DAgcvXdE)l>$Im?!5pkkJ|KpT^BK%w#L%_@9EF|-3Q zVLw<^kLfKN%X-)HJZ=Lwq&n&NSsbNqiI&m0?Pn!Lz69430>d1LlQT4<*xbdpLNcHkX0D ziy}&*CdZ%?1!3*U9R3)9c?siTQ@hAOc}u>(oVMD{f@K+9Gn{m{E{)Z9L#T@e*3OvU z)|&giEcA37;=?lXHg%0#8b6RE@(*;kL#aRKodz`4bBfHtF=%08w2ZXZ-1`TobYAJQ zGA+$uF#Qs3Tq-E?HUdM8M*+MOHKsY?qZ&u2(1RRwf0DMl z;eDpw7Pvr8-nbg@D7BFCfP$9Gnpo|~oh$;IxS?$yd#pu4$>iP3y6Ww=Wk;qir!@Cg ztEc6z!k%GAP91BrMD5>AVJxc7r5SRTR==8orHt&Cr7h0~ zXJ&1+zh6Ux1p;88n`dk7W{~93dBzK2hU70LW_PqoR?t2>W#I%63oE+sb+R!fuN2u~ zy<*gEnqlQ%>Bu|tBJd6LwL&;WDvs=E5rJYd12w3B>PF1Gi6G+f^7y|=dYx&PIU%(btComrzs0m*-QQsT~0A+zGY2FEP3(JNfvb>KDYE_^g zUuhs;e?c{#!~CaIZYq92i5A_ia=}z8PKK}oTLgwk6)>9$`?oG>vRV&4aU#4>PQX#A zg|n&fp<$lfjcf#W|8og$U3KA(E+Z>hs5!cpYWkf&*JJ5tP5#j>)sZv9@)az@ZC7F> zRLTO(Uf_85r96T|k2ZN2eTWDfr!+On%)WvJ2GZPOs8-3aeoBye&)2;~{eAY<1>OSC zCteYJ8zQlE^5T{HXXAd{1-S+bFO19N3pIlS?Zju9`SVHTJW=n8x;mH`YYRy`hfZJ=AjQ3^xhm?XC1 z?pwzaM5qdA$ z8*%dT*(;WG|1B|EobIet(PzM`v8|%4vg3{_pfZ=8SEfvuJpcGxI$-jnWD8ei;w?%+ zMXicwwBMKX%~}**$nN%i!SrY{P`+(2523uSOb~M4TArt(;6&)IB$0?ni`&-ZWXgzi zXUZqxD90d*a6mj#r--gL#&%Ta?Vk>J5tur*b*nH3}+<=Rzqf(mg5$bx(R-XI7LG@PlbqAKM zzQ_?fpDD4Kbgz=hDBB90^v^3wdUuP29x(RB#(5o($nbNGmp4m2qhCJ-a=)~3$(HzY zEgi^8#Kn9C!6n9NMpP4p+SKcC}Ef`FO9P8x+_V+Qd*7UtXqW@1)x~T4=zg9!@-J>yt$f1#9y+lH? zRJLwOPbI0R6^QXGIg1$SOz6d*Sh@5C=hQbp&&F>UewE9+j6|vYnq-JlArGZEwu=}k zoBuj=S;X}1ecf#x3uk88E;T1Scg9t=7e70b-W)hn=_BLH6R^~_R z0WYCX1Pzli=*b1#;=8o99#}8@15KHs;{puwRuPt6G+bmrlo+UEQmixe6W~8Zw{nFg zC+!rnr}wg1Dv>6eh0#Wo#&cOCszVjLsQ3MHEN9iri;eHO)c$lal{YaY)t3LrRXb>G z$~zPF<_+yC?G1hEdDbstbp*A89%>KS&#CZv1nMiCi{2c988sz$)T7jvBtNsKV`-hi zvrj*Q$4|W_F%;kAm-zgmfhB%JwdyrYHvM?;u@?nYr$?&F4w*9J9*>(8%PH* zvDkp`)t+l2{$m)rFwe6LHQ{K#=Ssf@rZqocLBlNlx1-6`%w-dcX(_hy03ceXmDHQ@ zwl6YiDoF;krs>~UM-JXM46eqbBNNL2WW>HH`7G0tUf}&9zs$ewhw9p}nAo4RRM|x? z`V_Kdp?n3|Ov7LY&fX!>sH_Bu*KpQ_WvLkozAHF=Qc)7=&BJehZ$yAyQ(5dbu!a@d zz7s}A63J@%<-r|-B|n{*9-kY6Z=5%(1mevT8Aeq(kjaK!qs(Q za1$t1kn+s1=OQEa8=AzBe;}UBvv5D4gAtfZs%JJm|2BR_M_cVXP8$2DJZ?NFCR``< zo`w)WA87H*SjSVa>PqB}bUjnOs-Ap6Nr~71i(jlO3g&w-aHXdpsL<_1U7filUy%nC z{l&DD_w9+Ur_|Nvl%|ML*w_Mb(KtHY(qN1H^iQNz(}h^Y^xii}qz+G42FqqpHjIk@ z3UkFy)+6zuh?)czWgi)Z!?i@#W8QciUPnzv=d?k(*#x=zoIMM#4+G~QH~x-ZS7M;; za0fbD+w)o$tBulNL0z#Ljr{_Nlxd) z>fUmIz;s{atv}N@+VmGti_#mXT`X6w)x~?cGW!?iD;z8qKkmR;Es#Z*3vg`XGO^!W zkkOG4pBkYlpKHB1zc(1Z&#bzC%P!`Ew#2&X7Z%_)F({qY$!Dys#5ELf&dbda?yW{_ zb{0z8pmp?QjN}`Lrz;qv_q+WyVeAP~DUX=?$PHXD=PO7P>fOf7p{0bG6=|}5JW$d~ zYOcRA@YP0}E$c=!^~9uCE;_SCqf1fM{m33(Q~e8&$GP>P>oJ?Qx#;8&yc{~52y95Z zX!3u8Epz3N=kmqFE7c70&BGl|wog1KIJ~!L9XyI9P1u3XVi@#q~PiaEcm z3tZtD>XwoamE3P9xO)XbIc7V0`|d9Kb^_$(Co8X=%5p&?iY|=nZ`?Sk{4BtF8j3Ag zUAoux)|ojOPyYb8$qr+N6Klj7}+i-0c~e(O&$y9J|-e;IjeL5}Gr3Hdmh zgLlayUlzGu=1uPf%=z$NvKooAdaJPwmZ{>>9}+zLzRIyaR8yV3R}DmT%G|Cjeh=?^ zr%3T5Jh}DUB-a)f*~vwo;0D9~c0GBsTFo@kyI(pq`eb-?ZL#w~l&2TB3)`8O(sM6h zcj&<#*WUHfz2cT@k>79@f3ck75_CfbKfQv)j@p6agC6g@Nu!^~d;{*$i|NvfnIQpi z_YMjS;npJE-7?ptFw%|u8IW9s2F1YRIRfa@SzVIXJ(dRLC3BR-X zIg>cE6>S?FMk79VDc}z`NZ%J{*eNQK5rA{}YW)zs0@qI)fJJVi!>f#*fBt&V8SYP( z4KSi~G?pEmWG$~g*)Nb%$20juQw!HiS()8B7Dte~W|eLi5`UwXX{J^pCfRRtYF7*u znpUSN+aNqSXgB3hFS2AYxiiGm$e*%}BKK5oQ5>nOd@tD?X`FzW?!BZi)H%mUGDm!Z z_KOjL!*B0}A2H6zWyjuFJTz%d+hmJR^!0sApL$FzO^E?)bsbg zor(BHt{gn}eq2%|06@4U8`4>$qY86AF$4-iAif6g8M`;|dU-fs3@4;>9=1x1^HL8k z5Q8}nE5;>qC44~Gw^Dl?0F{>F^EM9}*2j?aBa_JKxH zCVJmfO>3U&q^Tp*#`C0POW)a9-6qIiHdg$VEaiX;gi7vh<5`H*8CbmFd((pWR^4du zb6tOZpRlodYlB%j!d{e9Wq zRcU{1d?xJ`7u0SEgqW>n^sm4cQdv?!qsnMf`!H`gq`!>qMQ${t`@~)}d5}#i9lX>s zzI`NT_W1^L!|Q$WXH-^9oJf`zT_ucqj6jfoC75PKG~?p|?j(ur#H9u0zZ~T6#AzA< zgt7HXjqKt8-5L}9k%w{y-5;&rjQY6-_+KlO_!Z~^s8}dI7ID@_^|NGO-Zo2@!b;L@ zoy1)lJ+?$~m+mJ0jl`0hwBHNTT~Zw5kcmH|?+B2ID_# zI=g%Xu9!hDGw6ek9SkA-vt4St%M_CLYQ`N_)ME7;!^iDS?2R8S@pt3F!3Y=58NQIj z;*kr}8i)`5PK*4KML$w7w-iEL2`RS3{dkH{*X+Rjgvpzx16+obJb8_iQ|g1NjqGE3 zsgx8se!&P-w_8P?eDP>g&ZMY+V%k)a<u zF_r3Ua;KU9&wjb?y+v!px-#-9FfNAp|FH}#yj4c?hA+KNeZSJ%60#ur|~&qdkN z#jEd(^E+7tX_uE@;?4NKnw$5Ka@mgT)@A7lg+ACFw@os_%G| z!TAR9?_)A(R81>hNaPLTCql5)izS^rTd8!s-F+vnGFy7dz=zNf`I$Xp5x)DgTGFZP z;N}dM2Xn^*BxPM~nL+y$Tzxs{Q5fFuzTTjF(~t9YnypOpgG!(?B0yn5f1!gDR~T3N zH4aiRMYRmT_dwZd^&IDmCZQlN1%kyoTdENpfhPzooz+!0ck!D6S9%jIRw$w-T4!m%rd>I7(?l zqLv|yNod($SVh^?oz!xHHfFLv&=$uI+r%P$Qj^-V83$a$r;}xBx5H@NC$ft2gWr@9r0m(wiYvhMNK;09-3l0VWIkuQLL-&pq(c zJ*U&dcKR7_XFtd7PEH68>Of(0Vpq`1fF8`1)A;G%YHF(I{@Q<<>$k03|86`}+lTG^MvWQJw!s|bvxu?n~RL>y2$0mv`Y#b&$hx$=x2%mMs z%T^=f3n}0$bMQ-hwzi$MrVvi>x1XA^Z}+|L{=|*}%kOS|zj6DKZ7K`!JAFTJn{SX# z&g{<1QNu^48hmGUp9s>-UQ9WGsfvr$99ZgjP>)6X7pr( z;erQt=ZWn3>|k}pO9}SzLxh9VR*Khz@K4;Naodf~c0NxD;`EU~?#SpW!THOw3rpAa z72WsFdh}Cej7RWrN{?Gwx{B9Eh}HR35BiIR>UpHFDima=6N!VlLXB4K0^zxs{HiK~ zyV*txXG-OsmE&Sk5hRgFc`YxJWCx$l}>EPv-g-DB%|JDrdi30ea>Fcot%%{B>EhYUEJCUb`xg!VX zp@TrcT1utN#A_#Q^AuJw1O1Y!73}Si_#pIl-Nfo1ePmFg(uG+jFT8a$8JW zV|&QVgQt0tm3*ZVcSZRjyrd90e&5Oo zf9u=T^XY|HiLoQ!zisRC$(#0*Np6iar^$386|CtO?4uRUS+>4?PWtx}`e&v(-On2F z9Y+5L-}JR;7ilg(-V+}_An`+yVZ{|ts-FbbPevfVEnITukn{`b*X`qP5l0fBxxG(I z`UhHNVLew;9dG&MF@Z?tKu_0C3&~~jizGY z*!68n_o?Gr7}Pae=Jc+;%ByHO;_l2iMXwK@g|k9ck)O?xRvyryP`sM)OwI_v^v{qd z$>(A;qt*(@x-T7Qkv+>D89i%AZ{c%NyUx_zBE9nyr&3Cmvr?u2EUl4Fo8|LEO@G(U zghf0xb1AJ);xxeRVbvsC7mQw$T_$_6IZpivd-HN8lko%#8WCUkD`HG|K@c(3XKFd4 zWlG^Mx|m)28BN|Q`;dY0Ka37^ieT=&INasH^aYYJ5HHf-E#WahIIRnlOFfHkd%&IR z7R{WD0{i|0^*Dvn0#KvBBSbeJAw< zo`>y%f>eAIf6;anttQBeXA@tIS`W4_5c@hJB@d||?O>euo;pCA26Dz3B3j^4iQ)8P zd=>#4_&>UiKrJ_GrHeX;av4^(j_Q(3=t`!^{n?~gj6FM+ZlxX)^D*g&{~ea|s^P@`v9%ufwZMdN zopQ8Kc?D*82kjG+dtkNo$zg~<_7AkU2VCG4UQ_BNA@Ne)-DdN|6scB zjL8Y6dM!&k-&H?_QKumC0KKFfJ*Li+9ygZ{4UK{IDvGw|R z#_ULmjGYCdjf_m{Kjtz8)tWo;GNEK2IQWJJ?y3|{$3~lcCE7Cto*gOs2iB(>fP>M} zNgN*^ao!8}w)L-Za21R2RHsN|!!B_URL}N1bCa%{g6LALEqLAM12?CA{={d>_wHx! z6+B>d$n{BjPPvzagHo=#jt8{_#_LG1etCZgpl|TBJw_G%15)IEPBVC9d%(JlK3_m7 z)(LR_`|HL)acQ>J>yJ{$68K=|c}&q6LjlR+1GfU~Rh0#!6zpXvVu#dZ_s)q zf9+93<3vax$o2T&j{EOR?>TG zP79VA+l2;F6!P#+*zsomyVD9vgq`xzarW4q|hl*t*&M|Hi4D6U#r;}zB#wd`EwkmE$yR@#?bH2 z4$3>xS`6+nK#>Yj{!5uB9XC2(42G;>;TD&J_w|WIZB)B!56sNZEXd_X#ID{yY_3?d zLV7kH)c2l*?#VDw+ z&>)-J4-j*GqK6^yXJk0z4J7WTxBO%yy~D4{SI80`(PhTtFW0Myfo__$_@~FQD2@*)wa9D(*)8 znQ`*)O@ES;j-5zH&>2F7A6+wtF-FK9Irj=~a_%RqG}cJe-_0Wi`o;b#CnYxrJ3hX0 zP{1hq5R6w<1E7;;&Y-OV#~!LZt#dL9%(%Na0wq9&nsRt4Kov;Yy1~cI$ zW0~UW{mP}j<^15TkCKPRF%}C4==UKdewb0g(z^H5u+t1*MPjcT!%f9=qkl&gK(7o$ zA6;m!$`6x16>eip62oT`6Zz&j`R$k0^dX0npwyL<+E@>8kCdNEa77JI} zZ3vfIZcHK8mva>7)Q*82bX7+J{i46(m(`OQDOc@KBBea5s@{O~aQy+PmW+Fn=jXUYcDN5R`IyPdd`c&y?K$N0g7|@+x z)ldtcQajAM;w=rLr&s8n!CFOXnnzQ4Nn<_+wpS=F#0B~adq8p3IIPu+kGlO}r+TKO!;}c8uAByf!U*eK|6jNSPV&zuN zf(VKk8@EYaAO7_kYl$%5e|*#MNk=zV-0M*rnslK0%`K!e(EO|3g>Av5L)Jr&=e_l} z$Yw>(K%entcWv-?9x4VD?f~bvwS$v@yzi$oR;2x6yTr~cu8=X6B-gd?x?=9Z3|!Hv z5Qe8z>~jp_r&>A^)NUp6XuKV^|MJvv4JBC~5)+iZf>=O9IFRl9rj?myd#@@UILW7# zHyb}iB_s}S(EPcn(D-_59Gg@&Wc%dj4dTI8;Z?A~ohSpA0JmJn#e!%#&|kI?Prz?Z zc?qAO*d6pLkVU9JJAexPIm!P#p1M*=K(A*O1Gm4G4nd84>a*Qp?@kehl*zPiYHtyS zm9sK!#Se6;E=1urvXJ6Oxe$x|Jgaai05EN_s_djp>GFq7z!8kd)zeuNti#_HYrW_C13E84-Ha9y1m; z#x|A`__16;mF3UJQp!=OVycSgw$KV+q#ro7M$*-7r9Ru_|jGGUa;QAFFaj}CUD#ssfMK)!cE%spKCyr}7yO0Oy# zt|X@1sm|Xura##M9^}OUVC3cnlw^j0a@mEi31f%X2$Rz>j?_XNd0bdXrFiW{(!0@p z%`o7LhS6T-$`ShlkMrBvfOkFBY2|U(FlmqU3!o{-aGB6W6F|eHiRJn`foFvQ<$I12 zZbg5N+!2(h(TTuB%=|BtFMTD{fzdBfOI|(cIgS>+B1sY*;o!ZSfAv%cFYXdL(hV*) zUDA&9Kt%exZyZr@w9 z$y-e7eQ=-JL=`=>mVfYN&UoN#i9v^s#S^kD^vUlz0*|(`9sEOJHeA2>FraGvIPO;xTg@3OxDp(9M5Q|m)6@=9j`5@tJLKmx=WeL$;GJTyW z10$XbglNB=98Q~`klNAUzl%)O;oK1LbBshZsyH&1zCj*k4O-3QtNk7t!iQZW2QoAx z#EAxw-K?y0?k5kF#h?BIHK|`GZt#fL5ENGmmQY$0#WE9IHxXs5Mq>g+7^nZ9*@x@m zc9Rf(7f{pem&X_*^^l?z#A4k;I8&r=Ljt;muGPp=|AA^Z)JDzz41TvNgG+XsX%r}6 z-13RgGyZZt@V@>dQ>p~m2#Sg*Wi9kF2_mkz)oK>r&^!HxG};hEX)x&$T$?!P>X2P0 zI}WvV7QR=QvqtSPZ$x_4bBZmQ&5b(;MEgs2o!fbm+a2#^@hDY+v=iX@1_9X_>fmz;8gMLf?_F8BvRH6d(1-sUoB)Y~6J6_k%{GsVd4g0k@L zB9mqIiQEfAO6X$)jXo2hNM87(o)9fr7B2^8{ap-XW)9ek@s$=fg?VQfiMZNBKE|l) zTIcW-@G|X}#s%WA?xJJALA4{bGBj@Ebw=Bi$bCL+V+>AAVSth7{n*#(Ubz=lBFDNm z-mWMM@~^sWT3;nT*BRVRoN9~;zd(IxKhrE-(G9JGFz&SitbK}Z>ItXhf(N?uS%C(G zWV^(86I-HDm7g|&84?;bl8Dr6+fSBJU$1y8!jQCaVZ(p2mr{Mqsf$Ai$Z+#aW?!IV zhrtBcFZE0+DbX>0sXB4j224x%LyNkvA{gx3(B&g1YCDNnqv;ec58f=oJs0hK;`oyc zUn--w?*X!7>kq!^Uq5Gx$D7nI_X=BQOPOD}1OvUcci0x4!|i)1km!ip^tZ)uhwfB* zT#Y{{zSW^zem)ZiW8~JC)mNRIOw=3ljzqRKpL8{nxri1Ux*o9ZboQJ4T<|#3LmMDQ zX@-IdOl%>_7^Q~cmwOHOS-*L%u`C{htm`=oLnv8dzfc!Bo#H>ei7H>nOL z@7|D7iQNF$F&b8XWM1Sp)+4UgN5Du1?@TvDp>M2Tn5-$8qTfFM-40g-CqaKCXMylG zUc%lXT%NWlkJCiTe@R_Y(3HF7M2IA3*X2qmt?m*`Q80D1<|#hreo9gK-AVZ$=sVbp zWs@km8d*8rXcbAsdFxd3Xt4ww5lNNI29<<1F9qL{tpV!FcJy^5V@gQNxJbr7Py#{r zw|h)4Ny78|_<~y$ImSS~w9QF*;7}#6OHO$Ao?!ck&ccbb_GKS|{%GD@pDD|`hg$%O z2dRd6AU7o&dS)M@qS;>#r^-Sn5&>e1D(^c6FEz7SMIj@ClTIhj39I~~a>!8f5&bi& zTwU(5$sG$hm_FJKIT~%i2Oo@>I}{CtagiHU@n~@q(}PAOeJX3DRm|&$w7|f2f_g5UCe~gPNp$2w%An!mJQHOKN@liW(IBd)6ZG=!^ELW!c z#`1(gH%aAUbK z&E%)fX*9hzf>#(QPAB<(g=o!=Ak8C_D=3~a$p%8ihs3PBfYmQ)C_4ne#Mc$U`g0K(52L{dBT4#syhbe<^cyu5x zK6Zg}pC}FRITJ%4Wkvb`#xRo54HuBtQ|Qi+4J(%I4I`@y{!k^3?^BurD^DLiSjYB3 ztftuFK2p`>Rr&2k^z_S4EIIKlu|u(umgf>71y{wnqnL!(J^1TE*BS0Y!p0GuRWjzu_x(D*1cH+ililsQ{4k+m z@zRPsQ@TQHcn5b=Y17xzu%g?AfY+5p8A!Xp#|hw|2R0oSc7P2D-{ zl&2aoim`NpFJw^AG1dU*@bHh{8k*?}`o%ici5y&}`X(a8MHS!`k2oAT<0`Yx7!@6h z1ZuJmqvdS3l5wbQ=5mArO_72L;Ql76^!2uHhVL4?d4Rz?bCpx-s+9(yX2U$p-EFmd zr_Vyvs7jk;HNQIPfN(cg+aG5z;S~4)e0Jd20R?CfQVrY{PcEGJ2MX5d&r+@&CFGel zVWG#b_cAGVT2vj${()YQt#r3JN%t;pu8}wgI~g!ing)&4RH6(eXB@4}+?Z#miBcN* zWcse@`%(uUOt$Ct9&B?F$50yv?XM1i!n9U<%i-o{ASY#k-Ek+Kpa_fOQJJy=tJ)wo zH5yLhdRMW+Q3jR=YCCZl_H3rrJM&;o$j;mTda5#Ak}q33H9ie(opnn1zBYJ@SW8#l zs)+^^Sw8M^rHq*WPQ}y9Fs*V&dGuqPVu-f%xxvCkeBu;VHCSUoThRNJ&~^8Y%1U)X zFUd|-A7NgDHo`amx)P;b_PXYG63c6#8+-c1DNw$^r_!bgXCq&#E8LcZ@IcPdFvxy? zD2i$j$Z@?Auhk7)z^RTUy=?62CQ8PHKJm%pI0^UbELE6Q2su$Ydo;4usismU%QbJ6 zso-SM8*tkx!SN>Vgllo(Kb(6d+wTD%^qq9&4Qv|A@dkej&HW+EWK4fVkUj|5g;Z?# z5Ye5jmd0;{s+w5SLh_ztpDE!pCTgepATW^F75Hqv2jhNw%#lMdL$tiU3H@2btl>wI zn9oWTJRrS2CD6%@@Pnx~zWizbAPq!*jdYNX9I$10bkDfdTjb~~^jdO@1=6_vC-;Te zaxdQ0L92+vsmeSPA9gte{yn^9DaZY~R~h%$Xj(Hr3Fg#NK8V+@GNt_Kj7ER6ethtE z$WKOR>mNRKZ^SQb0!&BwQ44J8c{=GA77mRWI3H6dX4WM`HEr5v!QZ8QiPisnv}_C_ zx`Jwar4okuA>KqwE80{SJPX%@bJ7+S;zEfWHa%dAM7n~W0rCd8UyB1Z?PFZo=QJFK zP;baZ($rt0NmZsO%jnpB8T5Ga`si5@?I(|>IajwH(@8b;2fbmN?n<3PlfP*$F3$?M z%P*Dpv- z?m8otZWdL|GRITa3w_^gCq%=!$>KoSzSo-hh`Y7G#R)fbj*WcI53-G!gU^n|fMxQFsN+qqsx=!PR~-aC?MvjNX+3NNu#Sgjh zBoM7v4{$IbQ9q9lwk3GgtY^g93LPUDgCTtl(I%NB6YX4{k2mgwMLacokAXqx@4Lxi zW5cOcO^U?s(Ny3j8sE=!VFZkjfCMeZSK%8`q*eLGflCGV3&P$YQrBA^*tGwBrI^o0~7st3NoSsgS(k>c*} zL;>92{X;w~h@UdhVfR1QPO+bA>@o$_pZ~gfbNF!*=Rf%M8>3HdKBr*!b+A}CRbT-^ zu1#rV$;z*WBrAMZ?(kEd?@>3;gt7OnV5aZ1$Ic!x@|Qo7?Nz<_iTn(Hp7=xZd#R?w z5naN?-lt1a+sK;D>qg&wrxf- z3Kg5G-u&u|$PGMgz6oJ!o1! zE+!eV8j0T51YegYQeiwC)i^6NW}WfTD5Bm_f&Z4T1v8OCnUXSBVG#W0Q;XH8*BJ5( zU#NEAQ^swS^%7=iqkLq3Mfcg2fR28Y8~>``HFw$h?aY&BccM-d7~`9AYtBJvPEe&s z5Kq0Rqr+X|pd7)_=qwdaq`2T0OCv?YGSRr#YHXH)nocS87`X>e89^Q>i_-e4Azl}L z28RaUAdTjoj>XF9y8mE36P62MDqmBc2E-Bc$m)|%Mgu@! zmd{iRa7=~k9{d5sss?^!-wBo_OlBci5i=sn zg3l!A2g`K&lQi0I<8L=gxJ07(aM}85Xq;-@%f7~$n;@K5a-vnyqJc?s0uW$soR&YV zlZ0}iZQNMP0nUYw#BOFyUGn`j!M#1N>IbZJkj=R!UhDntB`F^GMo8m$C+5Y=Yr(>p z$R zzRhpvnj60vi1Z`T`p3INYoUVYRPJj{ui-Xv@uGv5oldGwTaj03B?l69s? zxiDwa$OA$wPLnBQJcQ`j-6gKoNBroHxer-lAMHZD`c~Y#>t%a#cT1+jZU4(gk4@Iw z8#FX5c?2KcLk=_QcLFX?kBE8$E>Ks@=P;PY7vN^a(?3g;AIFb6%sH;A&~!RzAu75= z=f;_RmT^dsNj0(yvfD0k1K~UEAUNGW9^ZDvo$Ae9o6Rxf){t|p7tN`ULw-r6-xNFK zT(fs0TshaNR9&0^k~o=J+i^_sF?4t+C%@|hdNDuyI2-lBu$s;kQ1>$jy$nM!J0Dgo=ek%a_r-n!?si8S`=1p8qe17RNl9FNb%}{% z<#f9fmK<$cAH*gJ8q+7ArCbKQJm`QMlFiPHPFFE8-3b(wgmwT_9D+ThwoC*JmqgV} zMS+xr7xjG=ART2&uaMMw>b@(l!u@WE)J0CL4d1CHZ`~sn6iaE#Lab$AWTE!Q=z|TK zZ6F-exgrNaONWH&@|&WuDpF6FUvfB)n~ia;jt3lls2S5dtn&$iIaT+{KA`yrqDOrg z?>g*h# z!w_q;?j<1{42U(BPM4>QOV?K*NR16YkCl~X zJwWuH9EEJe3V!S`b2Fvxmn{=Ot@BohM=F=@{-~6bf1veDIrB1dqVbz1jpJ>k9(YioY8Ybj z@H>mzh={UZnvx6X^NlbSFDjX6 z=Xr8uYK6Y<>0W3&KS#X*1&Y+o=$)!&u`1ov$9fH1KtYpX?@hi3#Ee=kY(-f?ujS8PcD>2w!Cr64$jhO15f- zcM$#6LJ-s;2Jg*pDc4?FMst)RXN_(IA7H`8o|V=8+poByM7~5o)0N8AG`0oAw!-Qm zE2VpFZp?!`Xcet;+fc6jd`=kn(+juK>qk z@Ho~&lJviqS{vb}7rI*KeAi0>>mMs88X6A=&-41yOmp{e`9g->2viT_NIL+20L6ps z9`~x%m}XzgOA!x7Y#1oE!?E7_sEjn~yMB;<0TY3-}RmjAVt01DDtnFCCXH5rE=8zB}sDivlNzH%E0VE{1xjH#^!(_G7_2HY_F5W&ON z4b=2uHgA&)-l4!ZQ`k^W8L_&VG7784QS{)<6Lo46+NsZGuF_JL3d^5CPOvGte@<;8 zuz(lRd;oB>#qW70pk&pB8J!%gxB5%L)e)-#?|WK%COvj(D{(l+jIYe-bJUpw)&qvd zPYNANz1g6vZ)rODxV)M@>oOR8k#kvxt(uR?L=rS5z!4clw70pqK-?{SieycFFuXPV zeFTdaKJFn(c5;Mx75Y*mA~yS0C=^(L((k2c#ik1QG{~bzt2Qp9J=ZW>Wa$UpZOQ*p z@~I1)5FGDunCqpaB@)4x`z*HCVluqb3;ZdZE-zc=zm{Lmf6_Ow%870dXeoa!l=J4c zH#&X@&C}eP2W~1@2bjN$lI~~h;XN#UX;0Cb+cD8qJ+P;lx~xGJ6*OJ9lnMx0GpLh# z1U-HnnViQBPI@M9f<)?_R(9bAvBPKK{))jJinlOQIka_Y1gmJdKmky^T)5VG8gsYIXub^X;>(yaroeG*rCYYA@E$ zLMoY6nbL4t$3dN(OT*s`ou+@Db+bmpOh@ZHg+{ppA~mv2Jh_9ni%8;Yt>@>O#G=5% zTvW~Wrpd(3tPi9B5AJ%$aqQ#YJ*hyLAd&FlRV$;A zrfK1L15*6LV#&j*EMdkZt#vaBDJCkv^b&YflgU^ZP;I^&UHa@A#2#8WwVB5)J_-(o z7jC<==rOr7AJZ$e8_ZWGRTA=*^ACJ+x1xCPf;iE=1zzazy>&rf*{7ZyeA|qmFv^lQ z#8Ye6o5@I#&U9l`)W#KoZQ$B_(9yDC21h{%@C9&Fddsga!zC8^0PCf1bWjodZCzO? zsSxit*@A)E7gI2nsz?8P>8?4JOq#+0@+IS3W5dVftz}g(u0OLT-fG`D40p<+HQBVN z&KVKw)KDIs^%pqZ@N#|z6MhrznzdVv2rYN7;}#v!tEITHENoF2Ued$A6_;BAMPJmq z9jB7Uu@-1eKDiM*ENg(c(pI2KyOChfTZ~=!xKjD&tFjzUY-+DE`?FV7LB0nut#A`p zQfbyNuSAJQM9M*5`Q7NWH8KkT#_rl8X;Q#q@4HVPqafE9)%@gtpeIx><)BQ`QAPB1 zMFt8;um&(`jVqxxKBkV6Cf8GrhYC68^DOL09uajq<)ne4q885l%eR3=A|LaEU{4|h$Dz_6anAr#$BRN9iW!ogN zSXBBr@^NrHU8w$bK9st&0m_-;#bRKIbH|s(%Y33fcYxv7l-8ZDPVO zTZ#B+mt=;3G&}KA4HHfeO`g%2`YQj3{c6?qe6u=FuJm)wI{DBGEtA^7)8hTNlDJ~g zZd2A8kJjf%bI2r+;^+?+#a~`(szP3BSxe+&nOm0z>0H80dFj)OB2$iu+{tLef^K-& zp3KH3Mi73fnq9mRNm9z(RC_SyPWYNatw^M^`cpx8ud2@9%p~HpXF@)mVNK!;=v2T0 zVcQ~JElw@w_Zq`~TzDHF704t@&F?M_j%;d6 zD`zHMUQblRufo*;k8<*N6AOEE^HYyLkY1&_vGMV87AF35XI`Y_$1RFJPMit#u0)D4 z&WM@t1Gv_d9+O40r=~?EjPc@wq+}VNGt{19ciejhUPnnKGph?TFlg7~Ab5em*RF zH)HHz&9sfq>gDtJ8E*esL%#C{L2z63rposmdKG2mrl*kCMwM4ECA_r8dHaM%cyMpf z10CQk^Gs0Aeh%Hxy~zu7fY*<$l6pfj1&$YiS%|R(cKYQmm!+ShJ}ISX~deg?JZOcaUSACwOL(MM;XN6*vu5c;7MT|XvaWP z9(-M){rU!=WeKdBd#NfS*c>6Nab~^+BWsJ>i1{Ygl#uwMOx=mKpBU=3F_5l^6bL4Yog+qg-x#^Maq z@uC||-cR z`a(~76l!$uPFaiWxJ5|@^yTj~!~`<8iCV@JWWRCK-3VoeVkx^?3<9CbHv->||Chk9 zy)HKwJpPi6q@BTucfN?=6nLFGg|6AzT&2q*zgq}UR+@gYLdy9E*VS0Ta@`mDz4`c{D zhY1Py7;E-j=!tLkTYM|#+zHj$&28e;cBIQj49f(gkmZWEr?6w!{p9fri?$ihR-va( zNTD}vx-yr~F5$OZG2eQ&l9OfU(9<|AEW4=aUut8}6;mX6vB8Zf(PcM>7uZ$^&<0#+ z@OIxeqck|{PHofd_C7tc>YH*S_IG#oxZa89oUh>e!{QbD1%OoN5h1QJWi|3Zu6Q|= zLDSZ^K+=+Hqf2rZ>z0gR>Qta3I)S4Rd5Plt^(BRhavC-8UM}N#&`x&(sQKBsBL@>l z!0#39BCYi2(;au}I)sO1^-f4ULKnT%%n?KH6JvcHxw)MbQ~T$Sl=*cvnW=O2B59u2 zYtFFc*yA7zZ*$=krHFk0A%pEo;)_rX>&S=g$tyd#U-VC7{>D|Z5>0&8axKcFihxSv z<#6-_X?HxEFbBKYz6g5MHX5w$jHLw9lj>ZR>0C*o^LvecD>{UoRkysPI>kHnuQR-i z9H=RePHoe1pZFkDv z36isTtsUkl9#0l)B94C74|p={DX6tXmQZgql7rc%zZBpF67S|>u95gZV1H|NxSr%R z1tw;~m`Zzeh=D8ile@WGPZZ%j7-z0#l-2jlnDH}ALKZ{4btD_BD}7T?@;-3wALxLA ztjrYM0A)t~?p68lZ}KYX3zJq3l4{L<6w6&EqYMatcG7Vie2jb8d9v3(CS}V{@T%>c8Jbgchs<| zAbI`1$ZM-J6qXh2pa2W4r%ISLHf`*rWF?wH|8-uRt}~b=WH`Da-qF@?Oz9ims?sY; zc)@s~N%FR5hT`oN-7P5-L#7+GH){m+FNT=nAoj&?Vz*&;pOuWnV+W$te)FGNQKV}t zMNPr9iQWOn(^eTs3X03okFI1htHiabM)N@Bd!V^j`y{weOYVtHibsy3f*&oFx#5BH=8A50=bM zI|VtOOyEZ?r+U?h@t~&(+C1_K$R~hq+(ZbV=!2kQ2pBICUeGMt3%W+3)pmF+ngnb; zl3Wi^vi>NUSMe+eufNw7lDs`4A{&uPUqIIo5Zj77OF^vl5~ojvR3rn20HJ3mna3pa z7JhCCy3J+Aa~W~`-$rlg{x>Y0jO|gDGmmV_$LS?C_WK)D&HNTmKu_?IY<4qkm8%hsnp0kJ9 zwzXcxy5Si4aSf=s!3mk5K%w%zjUuvty$Gwqt*I2OJ0u5a>?F-j7(|_)x9Q_VM-~0< zk^yV$6$9KLoH%Re4?jKbay@$VVLy)YSS6=k3HRik5l@_H2)&SF&(a(_sMpjmerb9M z&?|bl&$WK&D+|YLe%gkUZ6mok3@N7#4jN5H9^Erd@1#hl>1G*-F}>mv!Tu(*!1VhC9s+=W!cpVA8>vK15|o#<79ORegg!z7K4W|sY|o!P&>2Mwu^oS`Gk zVC~MQOL`A-MaZ13qR5sK@0*(4;=3&CcLIG6DAtA#HakAB`e!4_TVC}_DKiZPj^atK z5UanBL_S_|W0AY-Y%rHnM40~Z)v5pzRQHJFfeVh&ObIdkRec7c9DCn-NX+m#{57k3 z5Fy-o@oD!kmuUDe+QVL%u5*k~UA&WYATw`QbLYFT%>)yI0zYxuvFkGAG0k62ck>0y zr1KgP^r66sC7ZG%BBm09*lA$1TrFHr^zB zUa0@r9nh8XnjOAYs__WPP*_c@`P~QCLv0E_sNBR~4SGW@ruxM8KrFV^1#8DnEr9vcg+Er7Cpw7XhH;t;8g{ zuPJY}eLKk_GVgS!0mddEpNA(@2qjfYYx)o7wiI4QZB+(9QkBGk!8Jv}m*a7_UB_0I z$v1UU7fXIJEdr~mq*b7fPF=O>S4LnKC3(sW4aH3e^FGX*6)`CniCRBWpZ=Q5=D=7U zq9#dg%uShhSXWP$?#TAh@jWr&UdO{j7UJFl;bkbk*71>mOqrXX!{gC8GXm{Ez0z*_ z#}yY2nvP-=k+!ktB$TLKu@>>Xr$M>86s5Zlb`!!XD^bG*I{fxrf$7S;kg)x-e7!Tn z2s#)N-aEp!@&Hm&+1t7M2kSDMaU` zUmk`Ffx%kZ)=m5@O|s9(X8P;uL=>C2q*dW*LFN`xuk);>_mSy4$s$cvtL?d^#GMY| zn@De&WQkV@c_6VL$(8f%xtKX8DLzY0tbXrj1sAVqCTU7!qP|HesGSEjXHF;|&r$cA zeWnwqWS-yK8f6411^g;Mz5i^>tM!)hRnxy%jJfO!WLbh$#3&(eZ8CyRJh>DO)&dek#36N{O&ma!>i2l|TF<%|rx#SdI z%xV0-X#xCbFJfjlGd@wvAow>i3BIx&il`1FeMH;ItDk>~H3-T7ydxk@TMcoB;8mKd zN(x5hO%wJ?fE|ehO=WJy9uTJ74ssnXY1T}C`!y!r2^`$J9Q5{p&C|ICmpl%SZE{_6n9H<*(dGmYm$s}i-KTD$*7nTJKx#ICcMoB4S&x`qV zSe0Go`STCsJDxKiRpNUu;nDbT+(7($-*{pPxYYy)=0OF|t;1&%34w_4orrSzbkAN? zrSgl-cxOsQbj(O*Aa&)s8=ju!^+aynQqA481>Y|DP5n#S=J59`<2HZEB#yt`Ko~+# zsLtb`z57M0Qn~lZ;g576IBTWWNPs-N{PP7oIradX`*ok0KnBL9eWE8OyA^NYF9A&- zLIb}}T00Ta2_5Nsj1F@YTK?=u&iU~q z4r+(kv(|evbQe+l^Op!ZrE1NW&WIH_2CV*!W27wgR;bnCRUb3$!-97lJTxXN+^F%! zxE&Un7W`rYj%BuTR;ag`wd9K0P|8N^q@+G~Lh%nIuF|+f8~2RAw4ZAVzD`d>uEyyg zjihN?MAqBmX@C7Twa64sYN_q>z+9NU`%m2s{K@EJn+%8bn@+CBoACp)Vnf;jGWa*` zy&Pq3%}H3ZE#}YPHJ}-sR<(BJn?sV6gR`A)9e_I(QiK(`%_6joQ8kCb(Wr*D-lj3T9If*?IPa~j zLce$^E|wl+7-q{(0R)VX1jXLIr{feq|4Sbd6D{()No0;JU6eU zt*S9jk#l&evTk{K?bcme%A(51 z4c>0V>5fpicD)(x&$)IIQhxhHU_Sbf;lNFK#SesJP)_iEv~;&T8V=^ffZkrkczmW_ z)~-zZ@n^&)BqEDQDaf?(97-g9I*N|<577{(@@2QYs}Vzm(fECyxz^S_i2aCvRWfj4 z_Wf%cN{(9|JyKmFOA}YdP$mmLIc_4scVwK#>HF=88lp{ja zV<=_&J1<-bp$_J<6fvUz0rX<&TKTRT<+gHu4QJ#X{a$0PC(9NOoQ&a6oyNU(#Lc{u zGDvb#%ieAv&N~l*g?fUy#meV2GrZQIxcFxZApT zPvG(xO*gZ@Si|`AP~KzBnrKydttnb`Ji`Sn?iE{fvdr$Of$QaPUt>`fFsH%5Umhm3 zY_%91XAUiK_$z3#ji12Oh)!#?gY_33cOXxsM<|C?e%W?&c<2!6N?(!bUHDfH(>7r| zeiBBUX?(lgE8vvJibbi?WY0ay(i-nu+=(mpXnb=HNIjFw-sPtn_}$G%)+*QYo@z2D ziFhFtPw(lv&_4BFXZB<84g4$Fy42kU=G3L{palEXalzNM)=>94=Qv{kgb?`nqHI`y zaZV@9QBxCi!_{H=$Z88V5)b}9v?NMMf5*SJi%fjJ(~z|h`EawJ+)2^lz-{cMeS71Y zB2SsgL&S&JMw53un+WYYtIwHp>P6zEWMJP@z%gKg1Agyapb;tDthw3ModP0xafSX6 zoZr1Cr(&yCC$fKyoUSRHAyBK$iM_e0kJ)60&4ZIQ_)_ZW`TIWpoEMe{8H2`KAVj53<3}bR&$6+|iCn2QT}(c`U*R^J@Y%Bj8WMy-|TU1b@SzDqXhf@i zu6fmN7|@r)UFSbHqrQlW*DE?PNZX4o&J>6sjZ&TdG~%ma`063|RBrn=YHAg}ehiIf z2BfmX>N#&;UsnvRKQQ_SGN_J1Rr{ZtZS*z;Qzn;`q0~k@y&HG7VKBl-er%qH>NL$! zwZP%8o7Sfi%fcr8c)F{xOw=_l&Vj6x zc#PAVWRk4z0`hizMg`$AXhuxM&kA4lYW!wjcp*pxi6f~byqNPAGWbP^3-I0He*-?^ zAUMa*$=6)*H<~aq+4$XWG?P>(aF!2M<6tgL|8MXq9jNcy>jeOxP8cDPA-*ngXKJN>zS^s|IMcy0lsZ=-cv(Vsr^W&PHTg{ zoxiDrf4~s@Ju{|?u(0;8Y%klzm(pJspc(+}*CDm>5d~^~2q};`l0XB{iy4(A+QRxz zvDE8phb#r}M~0UIoU}d~zW{)>kApy^lRMuGXZ4EgxK#=tLdYk@*G~8PAZ>1 z;9f*s-(+0$6qI-)sH_c>B6t(-bt;FQN2vsI;c_omfG*2Cjp7r}O&HQ9IM@tBS$7qrA6KaI93?MypJwriONu&caoh*B^S$` zfe(*j>B!G)omotmSl^{XMXg}qqa{nK!}&iRXd`y&Pk1f7iK0yKxQIY=762@ZcQrv+ zdkz1_DbTiRQWglV)rhPE{XVne=r13a#=%hh#q!19y;1Z>3dM5ZMbMAm({Vfz_o?&Y z7T-yYd{5De(dOAjF7A>q>rQJY-I8Wejot`8Puyb72b(6Dj~s>i^a%||#oNNtenJ}i z9L&af+m9zxV%o$!_yuO5Y))wHf{2+hrma{>?@YV*Jz`b;YNIa~&M|TZ<{_)!NNR^3juPQqh(QxJR$&&mYrG}p)TSyXVwp9=HYxG#; zUvy_CF9R#*s07f@ZZo@%0DBl-cjY>}=}nfaCGJYyL7jRNkN@Ub6OLT}5APRk`xm(l zhZOF77T-_XiXwgBJ!M7F?U?$Y5Ow;l-4~kjVqQuzBotK>u~==s1>*HhP#=1)QUN6-^ZmWAgw@s(dVvKSJIb*XR&&ppu1^|Er&@W&?T zf?4m8?c5OIsm9@1iCYX*Fe-Tv`c|Cfy?pfcPGxQH64ox#1^*MJS>P*uUiuHqIodEIc#R8 zdDv;zmvBU!B?V(`S~VE76>oS_m)#N!WS3vY;N2V!npd@_g}5CYjAFH`d_Tf_ zW~1hOGU*qSiu^x{&N8g2hmFIdJEc3NOG-l6XrxArPGNKl0@5Yj4FV&CF_4sSq=b}o z35W<%0wUe;f6x1EpLXrK&e@6I^Ly^wtG>k_Cw7c>DU)4a!L31>Hq|O}t7&*MTE8lb zsk!52-AesSG4^>cG$78n`L_8doPu{_!K`J!yGxk%x)1aABO%BZkGpBvx7~#Pm4@?- zUnO;ZKy956F4WaPUl9{mzh@+#xV!-sgXoQYg^nPS*X2b7dv-B-zJL|yWT{(=FlDMr zS=;l=+5kiUBwx(G>Lf{kP4l?JLz2L%uSu43mZ|Gg4UcdhsUynLEmrhGt%= zT2_0aWRVFmhq33d{3#={{uZb>-HfS!;s|K`0UEe(r%!80SinQ{+}zjMDioO1m&WS8 zUm9ge+Ph|bsNETtcsnD`TOL1>7(-Uh0VlWYQh%HU<)IV&G(=UcUdZ}Y zw7fO9rFqwI}Wnn&j@DCwGq9` z8ht(Bbc<>1^}}W4*bK43XDlb>&DD1qlxt9Ag2-5*_PXv}e@HLTJb$YHEHzQMyX)Dx z>|$n8{!H57N8{P8rN$3)vo3=6HyQBl^K<8)g+Bp8H9tw7iLX9J{( zO#-Tx2072p>m(9dyd3*dHA7hrxG|p6o@EZX^-I}yC9P-pS4QFw^I!PfIl8HGDUmEm z#dvkjZGvNRr)$#JhMdh2B&L{EkI^ukGaQ32_hcT zZ+U?=5V)$)t&zv$=!7d3Sa)=)ew67Vo23_~j3+1i7A2J<;hByoeniE2p)icpdCi7r zsI94S*UI2!&f>v{syp8?qEbL-=v2zhoZ1W1*UZA0|94?*{cu#vWJ4K^+0RKhKm81e zt4MEn+6kH5qrX;mX^!x_<^_J|j-uGl|^A-Nw>l&_hMdqnu= z)*RX@v#GHB6x`QEkx2yo8TX!1=70B)#4K!YQU8Hb)5=20wZ0ZrQKOrLCLd$amUBNHvQD< z`%m&r*3d?T?N$a|aCOcXFF#DH9txURd=l?4RI4u5xC)8|u%O1DF=#0Im2LzepNlMf zH6|lDoJ(XV&r)X;>jSs)S}vJDl7<9;00Ac;E~>og+TN3N98OzE)dn z<%%&cel?9=+}k@MQ3YT!wey=YN)r@QrEmlRN03f7++C0~wm!RQ?kN8nQsf>nF!Bf` zV3fHjAGx#3_^tSvs8@GHq*o64b;{$Ym5g@K&S}nL8V7M&#E#v1so_ZSB9WrzNfkK( zF(}LvS)KzMX1N11s0VS!4x zvZ}L!_zRf2x+A~wviZM!o;Zw5YJKV<#VgP;TxD!Z88RWg?A$5elv+#8Drls898dZE zAH2UulC8z)61cLb@)XvdSrWj60LSl$Oy~mB8{xIau3yO&dwYfF;alH99OI==5?!Ce z$HHUAp4L`6N5L@54_S?2*+IF4t9#u{iliEE*R7Mvj?ZbSZhGA+6iRrPg}ZI8e|%qg z)-?EQL2K7kbqNRkymjW4g#Z_YH&DuaGD>~G!Z$VSUjGTEW7I8)HxqJ>ot*8&syl4m zuDpXCb%H)N971Jo*6TjGzt~UMKG;8N%k zKVBi?sa>#h#TWxHfnerx%^(Hi{>c5R13B>r%}?67eBU^%u&0oAb^`OCIZF4x!%7oW z>M>*$E{Ebvz4Db|YjfIGvrqA?P$4S{W{XkZUo8apnvOLtuIwv+Z;a*@QjICPpQQ4Y zS@~{UJwCJ;#u0A#K#nn!WZ}>Dhw>A1y;ewLlyc^Z67e|;lBK*~B70)E9CQl`W?K*u z)lUksc6@mG6+}jBgxm2Z>g(P!4J^6-xfZ4*HS(cIpU}CFdZ`*@8Y5}B!YziZ^SH2U z^9#MP3c1gm8h~mD`ZQ14Oe(PW@Y70(PYymUm(B(@sJ);~+&@(jdy!yd&Ck|dIi>NF zDhJ;w5a;Eb#XAeIPoPDd7~hdlOJ~EE(gd^tcKtINqvEHdcF05MoMVy#S5c1H<~Nt-vQJMK(QGd5_<|j3ATfKAJYEZI5i)) zbE~{U&kRiHF7iWJEa2Y>Bbw}R_2){AFh#g5DPpZ6+=!GkgoNc#zwUcHGCoD7TWqfx z&SY#wXy2poxDRFERCchktLCuMT+&O}7jF#~x1nrFQO7FJ2vf!YlSgZ>9|(>|eMb#u z5orihkEKT}1j)EEN%0~2>osI2=`gWXTokFAWTkCYBPU>#{?ic<$E@50!Eq507i5Vi z@F*t+GgsC1E2Z%Tmk@+BS7aejBo1T4c-_vmrS~^R1r+wZsP;pIR1tTfJ$5qUboJZQ zlUGrsN&)Izm+1K*n~m4llG$fliGJ+Z^+dX7{?SIAb)>_WbGmUShJN zOa;jUP0^TlNavcGeX(bJgX2*7o`#pR(o-hJ1YM)C!U;Uj1@zVqNANVLx%~1m*Ai3Ed=~C|32zwM3J?r5Y&7UHpIK;!Nusn)-G?FPle5E1h59y)D1WsRU zRVQE+0&x`4e5)RuI^f0DVkv`gNBZl&Gq+lVkYS4WG2{|cPn?98r|x{aEaLad(7b|h zFqRWqO&9E*J#UtK?;N>Jazl`xLTUPqXkuPigp-%@#0xcKOKu!jXnRyjj^Z0sqY(I( zWC_XN8^#sSw)$ugARb&fyj`Ciu#;pa{0e_9NhF9P(toh36`_Df8Y z9;iWIB~(owv$v>Qo{@p0Gy@d<_G|Cgi9)FcA3Y--OPdR&tCCbd1ztci$ba4o|pm>xLx}et(*?wuh$GuPe$wxAQ1H{V|<}#s{jsWPgqA zd#Ea1W~l92p-D@4j7|U8aSb7cT z-_C6%>i>F{8gWH`Ki9?#(WzzS?H0C*+hropRP&=}@6Rt(@Vro?O{uQELoT<1S;u#5 zb>?uV1e4sjdwv!niJ7z40K<-IDVM>y#;sU&KNy)%gxZmBu!;TMcnUjhc#3>s)S|vb zJ*&D7>j*s^-}dfUI9?rx|Jk_i8<^0^Qxs^hjc!tl3C3z$dvHyOVsPU46?_VX`C7{ir2~sz zC##w5ee78XE%}U1-q^2(O0t0)0rps(hAVxtoe}v* zp48{cTsdcf?_YMruDuNj3S;Yo|2D$8uyQFId^htFTgFPYb%9xCJ2yh?!lJ4){wB$d zM(H0Mob9J1Ra%~J{-RZl#fTjL`Ym^_Za8KakWv82AhrTu*qAb{Io76#oa+bZDLJeD z4N4h=o!mVO?g1!GYjUrRilLg5f9B~3YX(o1j^x-zF#RD9{1UJv*4QY53bpuWCw2V(?Bb_g zY-IBqyM*GU&83mh2=yJ*C-8gEDr%wey(kd7Tqt$W4OA*MI*u})%L2fNEg@U9A52OU zl%@RmKl_g>>=UnMtZaR!YP}hL*}xdD%1$a(=;;2}76@^i zo_GYsS?Em9$jJ>MqZNf;sqhMqLe09>e9+Qw>TshG5r8!@=3Yhio9zRdX)m@l zR7pIo+!S}uA7a`;4}MCQY2NgRwXAWk~88yk?Ax~J)Y}L%ENOOrx^@KN< z&`jOOJ>hyfN5O(CNI^KN&9Rsi$&Qn?;Z~d-c#8sTV*~`)qaGGS#?NSc6=-h}By)J1 z0QpKctr_&yP+@GGm>AoEHcyok|25Mk)Dd@2fJT_Xh<*Rl*0XLa?e&ZWoTk0nyw*5W zH03Sl(Fn1{GL$)AxduB-Nm=tfq7^=TpU%)Vn9ipCv@{igv8hYW-kmM@b9AP9h9LU* zD-=5gbN4HoL2!LWfk0kDID04u1q)+=b`|U!p80D~vB~r=?+JNX`wSa}w0yfzbH)*- zxXE#5LF-buY2wETMVV?F^iGY4laU<0+0-}WPPD4V7@amksj;j(Pgokjwy)tCxL_WP z51+7@RxfyOUMJQPvr!Lb8t?LbgxTcZs~r&L;$!7vxPt=y*W>y}y|$l+h~gf!igMoS z*Nnf)qC^f4U4oTLZq#zOC3Rglu!wkotbC0|>(la#QvAA~@M-+({RUM=J$NX&+L|m6 zKeQMMvb^pU(!aD~@iRbZ2nQpMd0SyZ`h-FH840s!DCo zJVk$Dsp-3|RgrD^g!khwj@AJ(gG(ruaELG+CWilVH;ok+-HVwVjYoYms*mIedlAgj zYuX!zH@xHt`&Iht4E)5a=)7Ch_Us*eJ+@GwyU^j+~H3eyu4_t&ut-`S5gV4B9fR%3g#AhXviCaC&pH{?Gn|m}R;f z^(cvN<9yyih7c>)^{p9)L`2QqLGg)295BY^*zzeB#}ITewN-cAfattGZsPL-L>M5r z)q7Tc=O|u`#JWQhi=#oiA#8L1_~q|KngK$;Ly#y>6AWYfsjPb|y`T)-k*Na<_WBgj zV^~sit%UhI_ll5l`vgsh9}3k{d5xCg*}!&=e!oes7u(_=q!xcXLAJ&m=`9U`{HYq% zzb0C~tE2CQrSduZIsQoX&(!ppaLPC8LE-h+D>q{fS-Z;gbAFK5!m?ZQuZ%uz5WO-o zQc9UD`N;i=IO5NLAQMYGig$$5o3maF6=4-frvMKbq=r4yOHO;$ zSWkeaAWj!TTDNQ^R4y3Dlg-Y8KwD%8A{} z@aknK)}2zFI>P-B#$EkDxFS+ z-$-;DYjLv_Rc2!2P#8S2+IH|A(7E}fZgUwASu?(@y1!`@Pd1WR`Eh~ChN(H)VdYm5 zr%cn1nz1G0r*$}Dna#f$D{i<77AQp)n%*Wue-yiO5<0E%Xj&igGFBvT&F^ExLL2(* z1a%sBnxq_~o?DxFS{{ZYl2b*c{KjC9nF4#SH1=8i!N3O0GNRj30l&gm8ofPmLUM-T z*hc%-wY-d)q|8{jb(^hKys~yXtaI6zV*3xhF~i&bXBI%ZoW8Y4y5BejW1j@fuz+yj zEDWc=mqd$INcH$P(Oi-*#F?`EV8|p6mHsQbd2_a>h|X=pX;eoa%CO4YQa!0t9Q?co z;I>K%cL4i;##8lsiycK~EXJrRl%>(8@oV0XP}2_UNwO!CJV^h|@lsW^>uDY_fHq>t zIma61`iGWT5A5F^__#;o<6=Rx-97JtDv=!Ks{Z$~s!wMAW$Mo0i#9O#DZ}O1RKHfP zy}y=%`e_ySDsLGZ5y4^Vc3;)Ek=xG;;=*KtY~+j--SaMACKg(4NCh_>g+tSUO*fOG zm#r2T?o`B9`Ea$6IJsra054Qo>85lS9HbcQiraYx!6?8|CIF3)BhO^csRB0y^0{ce>Eg!GdKCX$;(yO1fT2(xd-CwSI%AXb>)Q zI~sKD8}g$u{Uk(*(6Y^w+Zvp54oNH;*H7bH71*73*f(iU83fS=eLWbo>_pf3mBw;6 z#xP&$cICj=`>`IO^PScv3zZTQKM%G8Z65Z`&f^OkWAVZRBzufEN zTT^soN=)%#hV817W&V?821D(8krQ)w!)IraD3z6fX4NxCKg=!p$E~LbuCI1b^U{Q? zBBZLt&@@YR;G2A~(|PX7UP#}M)n=?RVIewja*)3~xd5PDXyY5>8n+b)4@#Lri$3u-Z;)Kw6P8i40 z+K}rMz1wscjB8z)&TzBx-sBrfRaZH4z>=-xmHF_v?GluZT*@3Y_xRImjz~n`(}x~{ zDcXKXrr|3T+x9(l|wq5$xV0ONr0@)+NgqZkPq zA>lpHLPWT$jN4aEUL2Ks4w4V@t)SB%)50Q?)KZxQ-^}z9KCJR;5#>#B;W4WC88fny zv_sx;pU}a!2z^fb`Ax+QDfbm3-2BzI-~=QIT^y7S%105D1ROZq27_dPrpk5&i_PpG zZ4vSt7f>RgULd&(V>ys?!Kq}6uqFB8-^g>`^m82JBZy_}U6&WWNKOqG1+9J&8=z@q zzh8gwr08Av59H1^`K8TB>pQ8L5%Fh$dnIXP{nvg1^=`LwMX)V=V#{z&-NSyE zro?X=@opvAertX-A~Vm&_N7ReORt|O)Fe<=_tLD+(CEg3cyHM9AOQdtntvgLn}}NZ zRVTro(w&)R)FPS8rh@}R-nx=tvDKIR6_eym1}^(m$GfcEA_I$Ta6HmFZ(lv2nsHh6#3RVO4C!*i-t7>cI(Sk`Y52NImDCH2J zGZ@$OjlN_!_m6l4DUnQBtP{MkU2$(FRiM@cH1U@Zm3-RfRHiTPX9lP9Qw~#qWvM%966gIu%M}?rax0J%Evh37$-&bH1_J)ikGf;Bx8n;#ba;zsi z?q|x>FLXCIu;Y@$Wao*}->xZXb@k4e2#eg=kw=gXl3COgMHrGQ9uO5f7OE@+wI<>{ ziRZ;s{`DfSu>OU=dikzZnA4j~;Kf1;{U0c|%}KCn7a1+TX#Xm@3~s2TjrO}k+~;WD zxAi}pRQfyc>t^SRH7#}lM^*p%oTmHG27R~ua74J?`R4^yqmVCo-TSVwr8}`Cq8H+O z-(fs@CG^j_nRGF#w~A>?zK%)rM-9m@xK@bumup)hfq9jkf5pJOBa)1Lsj7rTf;DGl zuj5R=57i(X2iw~?{!>Y@?*ILZ@Lj*$W{@4jSFmkxtqkQNuq^&vX#%?q#XG!VH}2=E z=7fJfSiC{d`ECKzyZX=EUhTmm70*eA(kOH2+-AHS*IwT;4z3r=h~821VU=a--o}>3 z&pn)#{q@iQ{hvSg^Vn>F#@-z;hp+9k4e2%7k!^$G)fXX8PAgK?#T-5XtuCs2nMc}~ zwcx24K#o-NtV|4!3>9=*oR18 z-(4haurL8&l3Q6@6ZDL4=cpLr@xK~h-jJ7me}ii5uLvWGyxrgH?q9s))8WV?{xlPg z9w`nR)fe)UB6+A=G=0$yISX+KlQcN^hW0r)^KnHAhr*bjze%{QFZ<0PY$@%LXR>?& z>^n%zUN8B-QJfupoF+xiDJ_I3dd#zZx@E)Z&YEYd!#ldI#J%??#t=WO>v(+${zh}( zJSY}mu_Nn-ez$G~H9T#hXkSpbcUo{651C?(bjYIo#twQSo@NyFEV7F1xKe6`4PXGM zk~y7gJiwVAi9*Q zgM$T1b9#lN*>qO-smX&dp>R#EO zQp*>}hR*D0mD9J>f&=gQ6*78~EX5Vm%ZFRuX;d1Jah_YLcDGr-wV*&+MM~ZC%i7!G zwS-aVl-CUsF={XibRP)bUxNHC;Nq=>;am0{wA4bL_6%| zeD~KOM+Vkw@bfF97QOSbH&^(YeRqiZ;gFaN=%K#`n@ddG4%SZJAc5GVc**4l<2S9uTbEL@de;U#` zR~pNjd?HbNx;bE1wY&|QCCCpPpnDMwOnc0ao{r%_~ZebXjleU)OFco5)TkL}-Xz(X# z|GJ-KAxhqxJN+1+{Ab&AbNcugO*;j{7bzzzf+-k4h^yhNX!K(DF=3SGd%8(CpyyxiA zI)XRW{P!@JIp%MeKg<{QzN$OKi)NkOTDDeFh8u3Y-~Ne^C5uOipU;9#;6EoieBMyy0*en6JyyL?GWvgO=GqU;CK=Eb*Y6Gy+ zz9^&!ervrXgnFAWz~nt5=KVaN1STy2f16r(0UOixhm0rnQ>Pqv4aY(IFVCQ}zlJ5W zB!6+h+9iMXJh}fgVo9u2XO`ym?!=d`VIeqHS9l{t$+tV~Nvf(+Au76_N`2Y{6@i9R z2l1L(5nvvC*$mMa(cz6tI^pW3S{3+e#66w9pEwj8{t(J_lhkNUeXjW6eeEik9gMk1 zMYsW>{xeEX80oN8j;u4$KxLAejQ%#<+Jxycheq{yrIHLX<;0)Ki3DJMHQc6J3iY?f zdJyb#N8W~U4$i465@dPgO`$3*GG*#Y_Fv+fyySa**o@T<{~6iB8FE@;?x$L%$}F~9 zpNI@FwSMGQuvI#t*cJ@_C_j6^m#qS$>^u%M+!0V<$rCm~;xO*;;#2Dv%=;Os@y2s- zV&hOdKwmtOQn}87;y%t=TZu*%Q&h?9H20;!5$pZqkIs<}s$^S8frkz5-DOSK`_naj z_Ft$0>(OAPR}|Xps3Yt((dwc5a?%*okPHB%w0!gP*u1gbrLZhj)2kIeT_bcF=z#%@R=?ELg@Y|R*ax1N` zIEBrCW&L2s*v#2);6HM)1;{-2nT92;zQs`LCvA(zg!ZF4wKlYO9njUh?6{8!6Vv~W z(%Sv8N}C(K7MNTnVXZ$-VPq;o?_&Bh&{5zuM(=TOE1FkNf;y97>F3y!6j6wGqr9T7F=5f@$jtDyL+teHV3gezVFJ=ln_U%>lh81|e)#}xJz3rIHgdS7)6?8(WA(70oT8VW!-NnNS zpu3_a@eVBZ2ftSSwn73=MhPnzhvQ4S;h)FGO4lfRE1ewT%YWIFTYapmYyddUhAQhn z5WFy{Gu1odn%OuhDeXou`ni#KmzpG4xF6GzXTR>n9Rk_m^w7x`!~7PV3|b?iC@xdf zDLaRlGlefw*&goc_JxwCUvjGP;?x13S~tD-E@y8M8VUjaw+WwwZ>>80Il!K-cBgylq2;cMaE-CQl4O zT=?(!`l8JD1234G!*dayy8<~y&AND8_HJ|POk4i$LaCA@XBv&x3XK)zx4{A@R1x!W zYeBV}4C9$Cu{aA_Fjb2%S3ecgtyVqac_r_Vs^0kL)?;*JG2t2$9a|yKPsQ;V*Ss6z zU^vMQVR#Owv)W{q{NMhZ6&lBe86IbL=Ul(#Pd^KDo3g<~TedW(xV4iFMwvIOTL_;o z?2>Xf2<(!p{>wo<&oKz2)E7G^v)Kl_26B6E04RMUF0(hdg}u;HKPQI3OX3d$s&|O* zRTLyWH79<`tNgn^smT+3lL<;tI~1*t(>|NWLy&RjuJz>c2ZUo)yNVM4y zN(zk2qMFwo&ehe!FgP0E2bEEZ_jZBLoi>TqG)M}5j>)P$vVO@9Uh%9b-PR8Zoi~b% z@c#HutKHwS$77i(n(UJuZjgO&1uejhh1e~twY_CS1SP9wIbgkCfo9wzWpysW&yMcS z^dq8lkKfIX>uHCG0{#x-jJ=4Y{^vWsQJKepRSxvF-TzH>@jPqmrSWgbI4`!@s6ARy zM(M}JGJ~Te1fOkG4k5`Lkj$M*6rgR>J#FyU=}#kb7n>V6wt5IwTYK zsPXLEOooG3Oe!Kb$%x)UL-hs-i$mPQ4y zh1TA7nJ}G@2E?XL zh2{+NqGfS4!x~%c;Z^LT!+sx*frJ%A^h&NQEqB8}dYjImYFGmTTKD1aaJ+8Ip?kY* zCeew@GlMOtf{D?*sAw2!EbIWfTDG=FlaPP434{*I56yZD1)<;9OGBiX+41Sb;*G>2 zekTF!9LI?7=IVvQrk3Sv(QSOtYk;G%GDqzZAgi~D`x`5d$p;*w#Hq!nlbx-QU zs((X5$s03j);Y>ea_6Q20HUfO_&oS!p0BwV4eZObq666ii_4YLDX^VoC?4i|&~^nD zCL3B5ZFw&g0@>LG6FBXAo~j`8Kkx6a&i@?+%{cPfEzu8=&?N9woU$RV=oHfbViC$!|+2lypb3;r=pi||Ot`rMXYs8N(n6ER|t{+3Z( zJ@$k_ru$1pwa%qdPWYS=)3TL+Nbyz*zg0jG&wnjlyepYE>d-7PI}Vo?~wVR5c5~Ub99ig#^0p0 z;#y49Kcd5>+0>|9I#wu(COhbOH$H|gna4;Eptf9+Ig7WPgB;oybXLpT2rEKlCnRM; zmwFPaSSQAbb`7|LufsVp3|lYtk>5`v9zCHk-!Y|P`MiMNVU|$SSfS#O;+`jbJ_VP_ z>Vk`8lI_Rf(mS>ume>r#2CUY1lDK0Beo2wjN8|Z)&u&B?gm3~oa6a~^Z%h%0^?Wbnp0yLlhiu5u(Af>oBiGuyhiyR_XlmPV2LsvO2c$NcNI%BZ>!Y z`(2SDi2VI~fq2Q}0UB(4%}BVqX#4%r_4n@t`k4Pu^Un425{OX_G}#ZX(jyvC(~ zc%j>*UhC}aE8hF53-eVPn&hq`Oecl-lU_Fk^Dc%9moZU>L4oF_Op#7r>7Wt5qIjr@ z`S`o*FyZky`mWUZy||NIxt;@sPSk#wmCL9LcD_~31};#8OSZCq7be&MZ6DZqKn~UD z5vGIQn*VB^-Z0Sn!{Rv(`7Yir_%ZTvsCPxMmSMm&o(_-|FD@1RAAlLFEcquM%SiRQ z>QIDNRrw)dm}~e?>YpvPFAPz8bs73D?y;oIh+01ekVtMR;XG+kY!R1 z@k+JfIW&s%d(l+Z}E%7>xf>uU=;st3uB@^wB55230h!oD? zT02ayGqz#!paFwBrDI^SwqXBBqkC7bo{g2e)QRTtB>#1AXl70K7}IA{?6f$EVSx2sIES+qj=V-j+|@Os8F zr*^Q;c>l>z7;(eMNzqc|INB^ksz(*4DMuBJ0o#P#g-fi2ggVB|M3)A?zsuGO?GVFP z1*nal&ILl+uip%AD>?p{msHNsO&-Idsba@1L13hl(erPTI)HRH5W>HErJh!g%CqCjIDOZjX86vh zk`0U*{6_CiYQiD>CUk+LT(frKE?u29lE9AAhZg+rwp2c2Qht?<6!D7U>)){k(!{6+2&LJO-1PL;LKQ#QqW4tofHrIckI<^;F;=1*%K6)OxkZTL3 z+|<9)F}S3RYm)alA|krSbyk07($(01yf)qdgMx5AN*jY*!67fP=uT5DP~5$;yj*)S z%dCK`@Nx{hr&P5l%*@SHENCn%Jpg<#<5ux#<#^jW<7#n%m8!vPvtQ9NW#qk73m3Ls zxPrJuvd;RSra4@vh{#e2D%cw)AyRk#B8@D^AB_4aH;iYqq_T;gi1gIrMjD3sSzyZt zMK7B?f1|LMzY}QG(hk7zI!>_YNSegqggg^MexZ_=oi;+};uW2p8Z6+FMb= z$?8=@T~lQ^o`pTD!jO9A)bUmdFYz$s*mz5;e9_08Kn0g&@b>-SKO*IC7*sdiqRGud z|Il@J2WZ89dLTdN-=X^t^pzaH#ShvmQl6#Yv(9 zj&OIjnZb(%k{u*a5P7Y6^Tu$4_RKTt)4z0tudU+3v)TJ;JRuKmOw%{ZmU>1hSd4Ma z#me!Hkh1BFHG&U=9sRa=j7l+kwtus!C~C2}k8FPmMvLsM7s6=I!nVlUbI;PpUfs7V z{Z(+f<;)zIFnr9W9ylmlpnFvrg14-mNq{6iQxOZhG#Mwuf@9wgwI&JCKZAH=KqH7R z49bM|Gq5q3=UbuJ&Ylq}KVhVTHagQ}VqThHCPxomUQzb>CpYl29rl5=ZLlWK&KeHw z^CkGRFzTxB0ERO$Qaa^0iqYZ-i5+B~H|OU(IUB=J@cu>B2q#U8&P?(E@nNlYeEYZL zNnK%P5GJc^8L6~>S+vTU67EX5g!f|q7pDd2;HHO^84p{)7@2f}Q;S>kS^jY75<5@s2o+68}ikIKibxeoP$Ey_^6tL+>2M_NqJPg z#!Ujmy*L{$v%+T$SF3v($I`iO52_pl6(v%ki*6o~WBW)bzF|UwP^aIIA_rM}N`lfv zNl@qSYhVpmN)v%l>UwS=LrfY$m5(wCaZ$g6;?jQvSbv!aDJ3zjPSHd*E{D2murI2Y zeqDgci^MeKt9-F>N&weqX-+JSZ65D$EDqB2H~RAX!^GiAJL7xdw^yeyLFSN)^#LC; zviN6&*`fOIw|ts!?Ogq#G%u&+cu&iVVX6dRq1dyoP@CHbvrtUihOA9Dz@14|OdY>@ zT5QDoiBAscUfgPaFoRn|ik_uapnC&4wF2GG{6AJ6Dd(MQKD$n2l0BERDBlI>8>_;f zPSg|V2{|j;F{^5d-$wTzL(LH;J-KXRX8t?%6h^$&+ta!uktJ^tbOaL=;2;(4H7JlJ zjp0NoByNC_D4hp=a+&JwEXt9{GzZ)GJ-Yt<{ubeQ4us1LPNp=Jt!BaGTpPtxP8&p+ z!_=d%S%h!x`MimQXy)lbTD*`Jms54_aYVV&T*0?$BLjMz_U&17>Pp#tOi7tV-i`WC zk=IbXE`e7Sb-UC|y=cww4VmV|nEAs?lTFd)fs(|?KQWk3nbpRs%TtH(Yk9XG?9{gE zgOWe6SUbgG1SwZS@Gu+O2W;DH$z{)lIV8dqPnlaNb zQM~ev?s2!J2>xJr`k6Hvf+g!`j?tTyI6QNePxwWt^67 zyU{Icg#d>W*>qk+Z#9TlQF}EmI;h6JR76|%`$Go5*fien5!p4?m$rg|&K-rS+H=PETjmCWjL^=f&g zs5D-pXEG~)bQpSzi0pp3oDMDWZQ?qI8vkkAnN4|}6n)P-g&ldWQ@ud)$m3q&`CeW; zoT!nlD8Mq%ljW{{cKcuYn7FyHy1ld(eJ*;Er}C+JNqTZ?1*G4)Y#R?w@F6DU2Dxzz zusMEm?QrtrN~gRU7iN5KJ=Wtnt-Pl1euNuKZ0vNo*HZh0W6 z{o7KIl-oRf$Y;|>Ot0Cl&WHbu6`qfyp}kj2RN_*skVrKdpaLz(A>E5AwNB*!Ljz&I zFp>%CFM!3)fHn#OHhhvWjGQ}^t<;r_z*@i3X%I6;+*4lVG>_9_3Z6^%4HAkaBSf2-6k6D|8M|`qu=VDf7it5S>dBzaI0*vL0<)<+WHmp*x0zj-NtH*Q?2VF!fd(t!kssRG*~x5pZNr8%g@h#F`Y0{QbYfq zjU``y?ds>q{WgwN61T1eGweD=c>0Xc=<3k-OZIj}M|L zbgTZEm$z%w@YOkgQ;EI@(JG5sSk}nKVf^^FMnBtYhN1L?lIDWz_XoVB&tg`v1GE8I z7S^mBqIY7=#1}`TIl|z^3x%Z+yll3;VCoXO;m|S~YKI$FknlPvyHxB<;Xrgh{`m{w zsi@U@OqydcrtNnj0ypw`Hhr?xSPSE6j@f1KQ#gP&6FKf1L<%4>$%;IkwPcWIvHj=- zWF|fR{_pAE4|BCS`puzwj=$pu&H5ReKwC0qTy|z*WnyFR~f0 z{zq;p)#`bN8E&o}9+Bm^q67WsJ2;e;4X-#c%*td5h4G3zQuNh08%Wgq(^hoA-aDt2-9ZBX#a+>4C*LxsfT&i4J7FE~KGg1{vj`V~dv7~kYp z6~_2LlN{--_>%a`%;M*rlWZy4i!n)^FyDw1!2V6|m@oa9!yXyrHZjivRbYm?;=~I% z(HTg&rOdSf;8ss(c0BqPM&2KnI|XjqL+Mg;%UBG4W18V&e{(bz#r#g^ai>rOuiq-K zJJ>#DQs$%;zN=u?I_<}zZ*rTMUCEjvRJO_H2YvrT3%)MD19%2)BW8tkm$1(Om6sKi z3mBwdCij|Jar|vvV&UUz3f-nZ_)QA*}0?EM9W zpzVp;%pi$3XdTznVtsd6#EW$*w``!@_e3m*HG54hyDe^spX^QnI@&lp)+YtjC79ax ze^P92pU|n#F|LUygT7ut*pfksZQd zyqzQw9>#dr=d(TiWfn;1ZmepMl823fpMV@p3olLmj%GVs zY?17nQVu!Oy&^4qr3aeiW|3hGg$lTLO6NDWzzyaJUph|luXoWdon z6o6@u_--bD2mt#9i@`qP17A{bGODZBOr+_Ro&SkfPwEyCK1(|Gwp|{9OB>n`n7fkd z2EG@=4TO$Y4S_?rYk^V)6E%HWehChrW$~=Vv%Y&IdW|{m|uMO8mK%!j8mL0cC3JyOx?Qo}z z!=0X)0p!S2gUR!~$tD|OdRJXq4Mn6E5l{X(jK!KK4k<%C;6M283Vj90M(ElOMu#^N zUAf4=>K8HPuJx> zy3_sL=+*EZ97#v;gAL0GIc+SER!5o)MOD!ose5L>$B|%Ak-}^#m2{zd3!diBaqUY? z+Yn>$Q>Sms9>$v8leMbF_nqVi&lO1;c!ks&e%v=^-z0(V)W{R-n2*8)c^9yXKj8M> zgnc)VtoaOwlHwS;7>?% z;+|3l!m9rd^sM94kC(}c-(6#i&ObxSw@jPFfW2Y1*5qxqx0auV4r?4qaq}RS&X(4m z6*NIVjl*FvuAlh2=9s5n=*DC_$zpY9OSAxds0stKeNwMxlKb9$ZzuFSk&e*<0^&qcN~9a! z@A-c2*ukG?JaymabzY;s`k5MY`K+}&1uW0x$_ER(=1on@vPQ8!i}u}a#Jsa`F{~w( z7*lyuf|I!zvu#RjiWo7)wf2E3e`)_;q28Vo^C9!g`nCN;-Eqw}w}ZFFc(P_EJpQxB zFSo&dpoMaHw&R9xWAXD!Yfb&=PjLJmf@vH-Hd~rrLfx7yi6j38iTjB&ZSJ4x=*OM? zHO=amRWK6dJm*N7!O9rvvfi)V)bFutD6OcUHQPd7t?6iZM0P1Hip>m>94t^;&YheM zB8udlz5g<=P^S6wQT9K)8N!lMsYKzP;nGg@XhqsGX~JNGcRM$gh_x?iHd)_CI(Agj zN|y&d$ea0}hi^1tv4+7HLtqqsI^9Q}t1h6*HnBh{^q`5eaat#dvE3nfEv1ow<=;9* z4l=&|pgH&r2fr1QF~^IW7Ht7%+tr1v#k*ohE+&k2I}m!U{NX&Fmx}(S+}_=?<>)K& z_MhQ%2Lj0Qgn`4Hl|SK$QQa8-#OpRWQ&uCMuJ_S}VmDrq+;olq9v=6GYH#g&oesmC zJ@da~LEy<6$P0s8`SvAK?bO2b2;DAo&Lel+@xSc*c`0I8lGGQD13(!7>-uJ95>0$+ z9sgXGk6Rr>)-rYC^OZ8t!hfIwZZTK=e(#2`p!EMh=H@cn4g_9bOJW-ga(kvch-1so zY)wLyRh$N?OTy)(42rtMPJkTI9h}T zNPLZ+Pns6XFrd6#_QwGlH_zI=ona)fq0nU$vVP=4(BOrdaOAJTY(}IDw4`5Hlw17# zYyczcZFkA481e!&VQY`q%i#HU64V=BoUk6I_ostDiV*>)Y%9jdLR9u~Zh5 z=@iehAk|a%%XH0Qt|i`p5yXZKOYz!&`yc4-Q%B)TouWt%Ce_SsYU0Y)uAhN4lv<~K zS;iGa;=2ips7VVInvZ8d?u+=sAyKx)$5D;SYGC?{OLnF>YR`e0V|E8!ek;7J2WDw) z`iCNu;SDVy6m%#Ej6_boL3rsM#BIJuE9j^t^F{O1Zyc1gEthpAojeUysv$xujViCI zi8pLG332lt3cG2Hh!yH|=O!x084SE=yyVd${D*$I`*R&e1L>)Pl7CmiWHCb|83_vT zwtmrb$B|FuX4@tU$6ufjCn5LYu+gAQpuB1amRzscUL>*~?29<;<+h1(KIm>qLe}=a zX)xO!OgIT|Cb|-m;(6hzmaIb0MT^uE1*TbK^XuUOPGv=x#f7G^LlBN0n=^=T&b!s{ zf`vXR*+}uD+-^0z%zNR=>z0Q8wWkgbst-`jUz3@AGajV9wE*!QJE}3P`OuenBTfAV zj|TC^^j~CL4UTRleR}@%5Sgfv(cp@xFNX(>KjdI+pnQZ8%`N~PM>K!&e{blp@>9&o zs!z!zZQXICT6u=yXNwx=*W~2+wU9Wb(5`tpvqDD&YAnyAv>z=&q~5evX}C`=%s`?G z#&+QsPaj)o`8c`jNAbc9JgDKODmFYc^F$jNn0z2PUQwr#ziH~JljC9S`$k@d)@juW z`c=lAP@cC!fF^yS6S4xKRXkR&<~?lGzlA;}VbQp*K6yZ!uDGg?B24D_U5}iA%^DO5 zQR!ihkM>T!R~SD;PU3C~TDUQ$qIoM34DM#;GP*p3mthVdHgTxM)5v!Tp};nQEksU; zNBt7wpM{9x+$j|=HP%I?O=S8lImsX#_J@V@hp9&Kiw$chX@)S!`u@}<-IQw)gr}(~ z*LJ3Yi92h!A?Gfk#c~)HVt^Mg*Eg$WAY^E;4^LZOasxjG z9y@M{V=!i#DhL;IdMCf+ugv+i%YcDk3howZ-3?)GTX;mHD{2hFl@U;2eE_=CV8AU` zlXVi?hHn7kX^xtE`l$Ox9&#IQ9hkdm{;)94=1-&n@%9^>!&9(Fs`DG)hA=v;IuuH) zMhYJaThh2t9Sybz#W&F_^^6M|d*esI<5ST@8%gBn)K$e07!-&76V|Z(?iEYWEHN3N z#VSq->wo$1_!W02G}u^HJ!+mx0-y}Tz+dD`ClB2%17m=h-3_=KOENOFnI%*>{i(tKIa_|4S# zWubf==hF{H-^L5ojCHv$3`g1zHg-fxkBCmYzjbY(b9bd$z(<68PFGYhjbi}}7P33a z8ir>tf%m}tYR?;Sah=He3RGkB$_6(XP1bjZQ~TR%Mb`E(O$T2DPWrF0ba6u`s5D>0 zqgAbTeT*;>M5E09t_Y}fl9~xyot|r@i+mSvi4&IGT`40))y_GZ%mwG z+(d8d-3QtxgKLEl7dD#2JA4?!VHx7b2ExyEXNltzI&~S5RDG7xSp{w2f4`3gbv2V0 znWz#wtj35$W_ph(7?xPt_N8K4v;Ty2F#0sn&@N-W3E6hH`=ps)^WbqX;4gYfc*u(< zzP1($qUq= zz@R-*%oA+wcULGxq1Uy>n&25X~u zmxm0&C~&Jad+t_A$rtU{|4s(oYmn*9z7dI&O6KUd+kV-*{%Q%-ZWt*NUBG&09yO~5 zl=#SRHLGlGYunoXEW{M^4rEqGF36+ z9NeGPAMA^(y&6I6F99EHg<^rKEOO8(aw41P+I(p8wRy0GizCDk%M5RN!bFADMtVne zl-G=q`br#5@uS1F`?Ftm2;nOCS2p@PZ2_THwhB18B%qy;T!1{LcK_iY|HGkef`c%W zAH4*O2*gvQ{sZy3zMznd(|-}aM>75_6FH%p7o4!T48{9YRRdWR$9`kEBdb3BW@H#vS?fe_7!ZpM1XHu2})8dRi3(r(7Gg&H7 zKyZ%n&P_G`Qqv<_QWm;wywl1OZ-n|qEi67p`k`_JSGO7^6MyX*tbCba4W88#!+P{k z5@D^x2#8Ad|IE;*V1W_1s`ze>%*Q{BT0Bz)92MNTE&$4_8u(U}JP}1;bqU`RMcI5$ z-(AMKzlTqFz^Ck*@yClD9v7PQ{Y{=K)(Y9(CbQi>BMi(CnXrUdnPL{#!2eKN5kmA% z7Kn}*6>OR-Nh-&+>!h%og^K@! z&ZnKltJ1@(d2js}U;mPEONKg`w*Lh<9`9|hze&;Ja(&i0e^5EKlwWeq9;^=5?7Ho~ z<8ynnL?XKJhe#2wX<*_Z6?Yh0z}Gg3oEm(De?W~#<8pYRj;DmXjK$&qa3^FR_dPb5 z(0P#O?Z7+8giAL@zF*F^SHf>%+TC^?7S;YAsM9Z*8|St*L3Ebjh8r~lJdi!{74xL3 zgX~4_mz5zgIM1UEhs+N2sP?n{kEYP|;}qt9qo;MLRZu>IT~tu9Y?#%dW=15t1Op>v0vw7$&*%vt`Ze)svIo`hRF zA9)fh&U|Q<^O6R=XJLuM&ujD)BQ8!rUPnt;>;}kfxdGQ&`F{5hshL^!PV~d$oN$Yg zZ{u#Hko|uFbLC}iNJ{(AIpF8s8$3mwh3pCx4e>{W{6)28r)<0=1=^5NggXT>`n@-Bl@aYqOyNRd~s7ZR^k-U?<|YW(-(CBB{l^o8R3FBgP#Y@ zwX->2EV0Wb1*RPzedOutynhD$px4#byVmSk_whhR9ZSV)PUFQ7^>$~Y9gLeD?YW9P@nch_uRo8!63#2Ul zZDjMhjJYw)gtH#3+3oKoGaMg`h2+a8m+A9PH19cnM*ILj(mJ=yGa7xnp9BcXpxkk> zNv7!o+6RSCH&cm_Y>^tWVkeM6B#Ql0b@Kl)8L;cZN{9$P z!>c=U+=q9gLe+Jzb1a-wretVp)jotA(P@u4E;+QML>d)yQOD4+IndsQPo2MxsDqr@ zJ_~$xIkp!b{8L!B&syWko|}p`Pu|HbMY%nWWNEI}q;;O1DVSzFmc?THtF5Ng;rrWZEJDf_kc6y^f#KEiE1jpwyQ zJ?dP%-$%BCj--428)HjKud11)^C+h+KtHbWc9pe3F07f5w)LDwZyQr+D@Eb6q*p!0G*cAU(&<3*8uEzI8* z!7N8@^;qD?s)pDXfCG^84MNWF zj$N0ZiKcv0K-z%;WYG3kz?H}*qH6AUm`z6>`fc3Mw>ZK|pDQz@vu3AqZE9;JMv|8e zE~`CZ()CU%?}+2v=D1bDg1@#5t{J6>CULv2BGwNc*l(D%p-m;fc|!hY>kkX0O6syi zWtHcr>h1iq>nbSi(wlM{^I+xrF)U}bSJd%SrcGwBGuJm;^CMR5!{fyLRdXCB&a_8U z+|sKvDDbx{u;G}AJEJ%d?9S*c^kGoG>K+sH%-+qg`sW{g^RIUM ze2|c6lv8A|^=Tt$>uTJMjx5XR=LCxy-Yq9(_v#x!={olE-5 zcy#sXc2t2>?lo}KA6WILvgIYhq`lkBCV{Mz$tsw*! zbU$@%Y2AH0?~?!H30cH(X?sIC$L6DbK@{HT-89R~pMi~pcVbX6khLv6c^Eq?p~(5K z{1U}RTxfaQ&qr|DmnV3U1CISv-9Np1}7y3Tns z1tDi4-)`U^YRkARf9q@WRh{>i^i;Ixnkzass!(-(5gJ)f z?`E>OJXjw_MRH4w<%4WDiFqBSea;>Pk@0={n5kiGB2)ZTNSh>plx$W1{kcUapetXM z&zh}5*_9E!5uB0c95K-1paE^E@cV3W`PjthSD3hyL^V{P-pO+!G^wC?QQf9WW7k5n z5?zfFRS>f^MGf4LZ`2X3K$Dpql*QR?yfE;;5pcy_I55~DIcq|oCLn**r9INNZ&>& ztE!@i-#jLQtx6-WIaO0@CpIa&Lu?bCK_{OZte4fier=IkjENxO97EKp2bzD_e3MD? z3nTwHv@UHlW(@u|6%E&s5izPtQK}7f#tU4o#Y46E+8)+UEzxJuILS5L=7HDIk5J}g zCXzLs4nnK>TD<0dQIu>|QjQf(-s7U>JakNFKa%(!Z1OTyg8A3WeezaySSK1g7CV!}UxQ^>lt{!zje zaa)+H`2;Jp-^_N9F7yj2%p`wdmW{A019ASX0ewY1(X7FZa>BG?U=VWw6ImSIYX}Mu z4N<#VumSaxwu3iIG(1%^nsKBbFAKKeIV2PwO-$ydX32W0ujfE1$+cox3>hOtvuHUY z$;KW(7sDE}r-fuiA5~C%ozYX& zMT*D9q0zl6>PyV+93vZ6;VjAfYb1OZ9(qeUG+EiOdkNEHaNB%i8Fmy0APlF3C2&*Qk$e)B1I~BuM@MqMe#UzbSijh z)$xtqf=Xl2Ab-M`QF&Vlakjf6y|Z!d7*214qPUAp9#-m?llmVnz@ovydGPG*gU}8z zr$ca}+&5{UeD3>KV>>cYPE(4Xo{ALGyxCZjkK8bU|JO(T9+5ac|fBVMTMnj3#^ z^ZfcjPN$6PJlaF*T%CnlV%|x7*rS_+)Ae%(ehS{Z!odhumAur$FFIu&$rq?~2NpxA zQAM#bUuGNMN{G5-A^)Z&Uk}98D9^?r-2Ty8i=JI=0)7z>3Je~Eb@ z^vVwj9tnWFX^WI_P<0d&4=OMS*@$A+_`I-+EUIiQjFQ%#o?kr@Uad-gacLi7hug2c z>ZPuy0nj9&EI1oo_Tmb)TcJ#isRJiDa>Y8L(2o^?4Pic+2y$M+uVORQ7uOFhWJ}$jOnrE-oV1pIFjWnh6Q2+(0E3KTEGbM2>X)k5+yOhN zDYL`5k&sB?wvqsnLMffHY*{uq5pK*-QT$O%$7i(}omV?pvaB$pTK5DSke#5`kRAIR z&%46l{V6mF+qDP#D-{=er2rVmhp35Z{m|USOoD*BRfDB-a0mr0P2H{|-hR6dr-BE5 z;P&m}4}bUyavEEA!;NeG`QHS^)>RV7rJ5zvJ1*$sGBGnF2V-fb=Y>I4^42ogBdopjFhWXT_C>btMQwn~+pOE>o zx%b_UoIP08dF+eqWAX7YOm>Bga;NKJp*78Qx$>Ogt4+KBw4!Wcos0U?f1p{p8iaVoMw zUWZwEnnW7t0HFoN&gYJ3dL2}UP+{?CS1>j5c#74*y`!`4MY!sBLV~|ttBO&T@6Ig$ zSv7IjEqm`i{~nk<95qBwEkD3b$m`&_n|NM`H(U^!wDX!8s8<4DjHXtiG8IE-C~#vs{p=LXzM}LI&q8+<0jM<%$M{N`yH1=v)C?xl%uQtLpk&RDp+Ag@yxolCK{xLh%U?snGK_t)Kbhtle!RC3H<&vw=^Gm- z+DYUKWiR2}5YQ)02En`hQ*xLPT% z8UJl%hj@qz&bk}ODZkyc+wUBBgU4v?gKm~{sWkXXiL$#wuNESOd3R8m6T|OQ9rzsD z3m5b^n4 zHJ))anZBU=QYdkYfqQL%RMs$(tYWkVSLuoe^({+;YQy?3kghMFzw|F`3)dnd!#f+o!?d-A^~g zGk?q%pbaL$iXDm5({zXpl*f+YhAaAobRcnyo?*}h!XU-s3 zi61Na$P?ym{0=8(kTGR^RRy6hxhwAGJyT;E9`BGEkhmm~-|Zt@JxW&GIqg5OXhhuq zohI04kkyM@n}Je2ia@`o4O8Tv_{+*`o)X$$rlvA29?W?oqL!@s$ly#^`Q8TCx?4g- zwdK@yTQ0L94aD94xmO9O`uO_Spn^a=m#iV6>C#%tkvCWdgV_Nhr$j~K zAL59T_)|y^Ilv^D+d3V@DN609;1zvIMN`SFKn3bY@2NE$kNfT3tON2C3Jm?TTMeS$ zg`A}cGKGkpF%kS<3VmcDoigOGGt8Ue0f}&PS5_JIHi=A32jNX|-%Bon4m4xGZyZk8 z>rY~`V$W_YZMF03rm1Qu@SbXRidOSaUR?TT>wS&cRgjSD!V-MPTg(wIn&7wMwfd7Z z+;_uGNC*G|O{m3JSePROt16JN&%S#T2d@uFusoY)Ig zU2%F*Bt+`Pk;dN*?~a=dG969TbrNSt0>}bj;Iut?5`6Dq2mB(C9W~v-(tCaVOi zVvfP>XBKdc{n!6MLSRsv(hz+_Yt}*hJJu8REd6hi2;9@pu8-a`gQ6J{B}r1Cc#lI$ zFm$cJVOw;_h_X5>UNbXPvW!eWpJwMCwOGVsC<``_^Cyq)w z)ZGZ5en762C67c)pvm(->aeCAGoF$y;USt z=@-pd#i`-u48h=)26^mRGP_(@xquE=C z2;adM`!E?s_TpTuPliI@UeDXTXB6I;jY)Ly$8J4u9g$@dqcu#C{O%{SK_dB&4o#lM z&vkj3!8ac7i2nimUTd22C$$2$3Cx_G)rf-omAf?E{wNzxBfD^Jg*&~-}!zD6h7 zGEIOoeq8g>bp)kAyJearb!GyE`X%8sDLDQntWj#_yoC-xb%@iXu+qgCny)e#JkB%*=LJ$7YU$Ux32CN+4=*if zIsOQZ$87Vr%#$klrZxh4o-0$R)vNu+XMuVMwFZmVI`ftbND}fp@lPR$lczo$3to6t z{P_wGlpobeqfU<=t1reEZuy{^!`z}2lVuYhSbbleH-ai%x8#&dSfw7tfH#{SKgp?O zwkYymGjrfh#d-_zN>r`y@TQR$JLxi!4X@unadzOoy6;Zc=9>fMzuN6iO;~01IiZOl z&93B%dkn?d#K$gFcL)>MfTJNr%lUi<8JmD#Z8oSbqy!TO*F+q*tZFRRbZQ&2 z#5?%727U@2BX-bqn8YYOJJO^J{*Wg8D3S}tszac$;2wIvXAIC3gt~m$UDKm|+ST;K zSSx(H{E|Lg0S5XyT9#4Dz-smaof5$G=Z6qWJ7{|50bY!5&B099Z_fXKnX=NqvD2=r z*rgTcG<~{_`o|To@g$BZOsS?Ldaj~!Thn6_5_;L`Ve0qw{JjI;Zfvp+TaAIPmVs<< z!7W+a>c<|~$cA(@L+E<~>e>Pit^H<8@OR8dLh8s{9Ki{>p+>AhOY!eL`XiPWkJFt$ zToweKrwGvEL(+Q|Q(}rMm`dSm2OagV^SCB8QpC(?rdy0$RXm$l_RvS4Gf-S9s@jR7`(l ziJhyWk%CgM6keE3{+l9gqy1U4hrgzPOxB7MUwQjX@WjGE?hk6L0;(g%24gQ68ijgJ zpBvgx+fWA$8D}^0LbiG9WdMy%oc`oU{J=Xi{bo2WmR*nvsN48!1fmMXtgX#%PXBGQ za~=2(bZoXUr~WJjMfgMMo$%;M?76i}x8Qbrk8;8?mf%s(KPdCD&n%3JGOyafW*iuX zkozuf!G{YI<;8M|q+Wj?PY)aSF!-GET@+y*<6s}z_sj+80VoCz2hJBXpEqfXQYI$K zK8=MJotRTfm`Yca@diy3`Jk!1Bmk$L-{a*b8=g#XV>wuuH~VZSZs#eHWOa8ZNN zq+%RA6x{KC1ERsZA&g2(u%f(ki-|w$hrAOereoti$OK@Y2Rltyd~V;k`qbgz(S=#V zY_IqSUFw;?D`e$5}F} zJ!sQqEz55CQgl1{4E-p^ajcj*hbOD~gB7(oS<>rrA6-)#{>d?=&-&J8OST0nw-a?nPNfB*TiJZ`#fHb_M zw{^v`7s~9XOQvarYHh_~6`SWQsLt#o&TQcr*@@wZv2Ke{DzVmrY^}_|s$#PxunQfl zi<#&|$1ZUvy4e}m_H;i^T_Kr!ZQIy)7s2;)@a2Oh>B$txK=+Pc@lsydzU^`i^#b3f z^hX1b@)wwm05;buFgzI)Eoa5~EerR?KS8pWw2O&pzez?Z6q7u$5)PJrpn%jHl33QiZs?KB@f2^ph3VW>i4qiH9O{k3$n>cwyXk*+9Tu3T5?qyiWe#N1Uw99430I_7V*# z*?t1?PJK4n=a49Erp|#&Cn4Ey6Zefn8nsc<3Cqn>G)7X`h;3E#y)Odri4(W{>@Krj z=Iq@MzyK;|m8XSxyShwbax|DfzBQ8j%C=v!=(>;F&?~}f{zTryL@Tw|FE9fo8(R~l zMYiAI%t{%9Vf0I{)Jxu`3JeprkHpaA&k}i%;Y4f#q|2w*p1Ycn0$GY0)ngO^EMWX? zRe;ESz>f6>ywH;|51xaajEB)uZdgj$&14m|0!HxrN^7(0I}2QE*T7oM?EJXZMEo?d z6*Bd?xtx2+6d6J4gwW_u!UXSYD)UV#pMJ^Jus)j=F6|CtG!dx`iP<*L{y|>Tm|7HR zY6l)_z ze&ar_gGA@(BLY5`p|Pwy%y?i~N%HU#&w0z%B#)`UoKEp8&mTTs31_#w&om5R(190#^DLFVSJzqdlgIg5Nz>#NKTiMPOLYr!&+;58J^$qN5D7VSY(x&+FROW9b z#ZC(2A06)V#*MLjN zT5v-XkkxDOdzV0U-k2rvrO;z_Ef`rFz3@ohNh=O^)6DLOH}N2}HngkxbMP&g#-doU z0hs{aeLul)>b*wVKMHuh-fxLshdDheL)HzpJA90JzzW}<$Z^AUtIb4mRFUDL^?IVV z+XZ>&EiKM*qv-|BrrawkFCe&_4lVMg;KwOdo5J*oEq1m4?s)i0c1F#9ug`8YfUV=`~kVNQ!>gWF5!lsT5{YY9_dGWfL=t?ioeLBm0o}b_qYc^wJC`&wcF7K zDeN`7vC9Rufoe&n>T3B7YLvrU$#_hWo3@!%*n@aAj8tTp9^?I-^92rpq%{+BCPE{0 zN6sQsRTaTMxcn|J9oL%9y%&H>YHFQD5PWzZAjMykL-NcF}6Pr-^MwuWf7 zK*(Q}^K*^V@D-5U@;#J@1*8PSkY`Kb1|lpCqEE|mOXn>ex@0x7g#?ycT8!e~W|z05 zkoR3&2GN7)=j@)N3L+~leUaoEl_B`dN-gpkM*?v^1d|X>Cx$_WBNCjp(THCReEIsj zH8lz7V12^dt-XTgTh?b{+1?9k4!Wi5dO*AKEhMM6(D|3_5{HhcloX5Ufs#l%prUa* zHq#K$^kW2ntwB$Gy?J=Wk1PA3Q_tI_dR}iDSg#J{O$kYJl~}4o@?Lx7jjG-u zoAUuFt+_1N%W4lAQPxK1(b%4=_GC(Mr3~*=+Bg5auUMz_sj?;glC5|#c+758~CN^aJIjNG^dN*|$A^J=DlWAhi=7})}xhkx@<|V6QUyD_Vc1nq<1+G}3ZHzmkz2qkGk9&Hx z#Tk>ngfEVowV0>!=cc#lia`4M!d!}>Wfyj3DGi-?2^57(gFTET$w4+)RL51Ih^aK zLSOYphfH4zC7`%*k7>Tk)%6d}L`;M>{XQHjF6sEf760Etfd zCrPDMbBz$EuY6?WLhLk~+b~ToZS^ovryX}3RZrO~*1^KbVQ9lIj~00_&)ay6&3;JW zHurePg#q)0ItMRWi_oM@MPOuz0=XcA{n`LiyL3d3uujIS3vk44V+m7B!r#Uq z*dMr3fcHm-UcAk)JIUIpVK^@TP>lth|6cM~3Ruzv3-c|Vx-0Mwi52?kjYuS4N1Hgo zga?kbtTLbjLf;&LVqse7waDuj1TDu(^sKt#lUf!(jTEowM`?L(ulF0rGCb-a62R4J zzn!ChXP3q%_JTdT)Ibywb;R_?e^h` zpvMOv{sRSWljSMr8nI-j5znXc#h%4IM?E9P|E38DG3Y2?^g%me`N4v_X)5YB8ga#! zK}nHB2lbZh`@n0eY;1PTI8*NEg~P3OU{rUY-((}b@T#!^^l$=fDO>L0AL5G>4+-{N z{yut7y0l8?ra8cflduPfh79z)95wX`pP~g+oUUX(cWV6y!q6Q47#p!5cAJjUQn$}x zZAAYerU}uHEUydB5z64ERDX)v>kX2r8Lm$Py^+KT*y`cyM5}0FzdN{gE#cr)*rDM} zU-|8OIcRJMMN4krp@*+{KJ}69=7#uHZ%(MI&Op^$=f77hD!J%_(xPcbqoS#KbZ1C1 zA4Uivw<3`cD;_PpN0RgO8wjo)r&KZ2oBa3g6zi83y(SLRR6}N#>j$r|;X$jQ5Ihv3 za(j4Q7F7}sCQin5GnIULj@gH(B9x<^2-noCqx$!m8Z$M&c`mmIosbFt@l@et%DGo8 zS!`(l2cIrQ$;Wl4#;;v99M5TH3grZ<6i*$U(K*OuN<_5B8f;zmnb0ds&J$5`sK#*9 z0C9~SXHfEqGT%`@`Z^I>gLz-ssL=OSn_kWa5y#2%Y(1o5^{IeWYStQZjgXo_r^|`m z>d<_gDM!R9Ubj#iUYuFDKxri$6o*dF2kSbrF~(rpii@z|fSJ~VT9?^xkQ7h4FZo2` z29}(=DIT3hHA?WDGGHGB0P$W}D%VF=VT_&43X`q-jqmp#{A@2O+2d$awAWQM+q zytYC!dL~lg!)l>KA~Z~0bIA&(Nj#a>i<9v{5=@6|sv+F1?JEUqDx{e7HO|$k70sThIA zN~rC#xAVtE!8|ORFSOOJ{jL3*rTsAOOAO7z+@fcuGz>Txk$TeHz#j4VxZ7lq^Dwen zH^x(^xmrlH0jsV5ceklxNvA%#fIBeGo~@3-CIal9wwq4^F_9&UB}IN-B^*uW0oUcY z;~D1`cSSQWibvGoR>V`)Sxlg+Z|^N)Vi1HBMUF=kzKtZe^RBQPc(*;=IpVpx`R!o_ zU41iRxk0>Hb;*M0KagW~Ge~gtx?!pb@Dr(feYLi~Ech560-O2kQEt(2q4nM|%ssl; zcHm?3s1=(eX{ovgDQ`XQS3znByTm(f4J3id;p^fdt{>N`RB2RHn9adC&Q1yyv$NgW zvm6T@th{(RhRCp%dvB1OF47dq%ct&BMWVlrFZ9y_`{ zf4`Hwl43x~)Mczj?cqM+eJ7OV@2M?w>r89>zEkv^ zRO3AYtVi+ss?GoycZt>x`|*Md6R^|jM89o$tshgscn=YQlPdo4TtnMhSl#Tfa$(r@ zCZQqh*I1t5VRKQ zI54-%ScS{m(MM~(oS07Fxb8!TCF2V;zf;a7y5^-?RacXNm@e)RpT3WN^iE-TM(>8Z z`Cn@Hi03|s8adXS80lqW>dD!gulXt3b4P+J9@zcb%$T}f{|5pT3jcvV5K4~=!ed4# z{?$~*`_wOcu$@4uZ2`ybZ)#p$Oc6lb?^paA#eKH|^-Y(UAABXHW?`KWBRHQm?RmnU zJD?Q=v;S0j&3ji(XcE;NWp?Osh&~?dv_|H-44i{E&z20)Sg6#JGuEXzhKYIhxqpj= z@>BbHGsTwIS>F+ebi$E|oHrZqm4LF-?&+>uPKgRR80=U67Oy_4IUwQ4H^Rd`6(52R zIO9V1mld;2pTCB1s!HHtC^Tmxt|jWNN>&afB-r9WvgXFUd7m7;JX($+k35`H`tW_C z2Czzq{dQvizZ3ZT@r;)c*4^7AUlmT)l=^X9{%!BCi%r45?fjbaim@K=E1_~GL*~-+ zj?XufAVL?hJxMvMV%=$JzoU7i{*v4x|3zWxSzqXw{s)ShdCihF?fyD$UUIWg66WDA zrido^Dqa`(w;KI+EKG-$BbVZSn`BrkCC9(M|J^?n=!E7wuW(glU&8p#Ji%XN(+|2j z49LDX?ALCN^aVIq79pt@z9ZcKSkQfFU}%IOn+-Wy!FX=Ve;?F`it4dopN{CVP?vnY zQ2L@vJ>D{8G$Iza2`ZQ7@TDL+7di6UjAEMVyhL05FJUDvn*(q&|1LT)D1>~ZT#|9jvB$jQpe4qo~$T!`q(i}9V z0SAcX8r7_J-hmi;aJpYADv25fvlWzI@{&JDD1P97HJmR`qJ$j0%R~gSE+%DHjxhi6(cStveO%G^EYL7R2dr3MCXI&2e>G?r?NBeq=y18G z^tA?1Em7m_+i2h<+!R@PQ=zTx&{QhWwj0qRL7W#Nl&k>sH)+q6J|D8{5-b14Z#V|Nm6cZCSRe~t%nZ!Jrcs|Je%NSm`PR{?=Z`?|gO%bw-ndWFDk_Uj?)4k976&V7TpMEfePT=s73QUOP-Z}(Ry2#?M9 z+%zrvxh2J@e*@Pzcj;t`MO#q%;FW0k*LA@+b}-yVkNeDc_Hzee$+5C#hq=CXjf`aL zXiA!sZ)ehxVngvEtKW6W#0u3$t?Cw^a&RCek8TkGW0B3eX$HQ8C8kH*Qa>MC5m^<* zm?viHv6MeKTCl71t12^-Jy5m{HXai|X)W(|1u2Tn*g4S6P8%A%XEFQpi;-*g_4jwP zFk3&RYXV;9xdwSc$+>qAdpFw1sOZ6r zJtW@V+;4bZfD0?q05SgB#W_!ki@#)elj~NKjhJ{#vv+vw#cBJM^pw^bF#RQ;5NI*% z{XPORztWT2gE`=w)gt}5(3fJ7S>KGik*KY3=o}DlYLRD(8{FYe{@YKqWNgwYW8)-~ zk{M0!crQp=$@3!pZm_uWD}^b|ey#0>2*SO2?y{^QBXRdrY!+_ms-_@ifV=~Mdg7r_|{M+27hyF9LZa(dBjyf(&{}h9aaUdBn!D`!gqT3S; z6?A(39PcglRKv?f55q-qrgoASK|pV9pw8QSno&?AhPQy%Xkf+N3kQjFAY)ct`?sKB z@r&}>$VAnp>S_(@veP+=;wRP0pd_$$vh0yWQ zXx^1}r#eC6qq?3KOsJ7|JL+aNpC2RmJH!XhjMs1N&XV!qvn;VU4@>t*{L>C{DXHdh z&SNs{)!DRXJM#1UsoaSnBpZ;37`1gQQF*63 zVdD$lC-XQ2Q%Xr4E$K$AD{uQA2YtvO_V{d+H^y;<22654=oh-UoAvq5EWwxPV;ftF zM8CiU>JYIGnwRo=XhvWqO};?2pWrApY8dst(4Hy29;=DFN+4+f;63aEGTzzCcjjtT z?x22&Z@bGpdILUk>LKsyMsTcsRQ5}j&M>H7+jz&3aB_oXq2P^W)R+mN-)^7|`pO6T ztsDjp@M4X(rR;{8IoXoUF~eYscCKTn$J9gLx^ zuPkQtB^4)62riH~BG&WM*N?)mL^es=eLtO~Cmsk;`)aggb6=omudE}RQs3m8t#$vp zN;Ad=OqY92J_uV4RdAbTKQ?LcX$j?KKTmM3qbKw@*I7>54H^-)d-r{^?;By`S!OVl z5C8!U8}8pNg?#*gsbr&+9U`TQ2)0fXkE(u6Hz9dmz5}Aspe;7Ni&&tZDH+WMoqVMs zm$Ok>Dr1ltzJ?6}3BWkm7ae8hZWKe61@_+z!EirYIfH$Vd=zxqvZ1-Vt+90B%` z5-ioZ$@`w-`!z*Q-z8|9OYiakNZ{8Cq^fGU8{umf@=rzA%2EpDydSpHKSUa}SJWVoKIXby#hW6k@jwl0uyKfk8Ev#QCnL%61lc|(w| zLOriSAs4GUyQfQ{o-FOeU?yc-58OZ(CozWriO%O5ppX z?f!#I+*`Crqz+nk8lZxTi({E=rG*(#1ttvN%jKFr60(rw9;w4H3KPp zm)$`)Jak5bGAhC}1oi0qne}8Q(Q9GxwtDXPT;FrU2pUcXs_*<=*UDy!~c#q~iGsanNt^ za6nb3=4I^42nti)Xeo38!xtwQdfW`XFv<3eF=-MA1}z2$P9>6Zf0_DFl>McqmE<`M z&-?yKe_Te>-x;Y39YsvXtuQ6iW=@l!z#vR(V`g4oo8|CS@`R>$oCw7IsQTxm;`loz z_)sgERDioSMpzgtXhs@{d=RLaG6PzDGFh*vK_gm*2%vN&uZhTq^Ml?P3I-r}{+;0Q zA~`C6jq#RBj#FXlHb0A1UrK z)IHPUl559`KmbvEs!}x;REt3`Y-s}|!ZkGizTkIRi;AbiFY?&47f!i*laKRTU@M7g z9Ftpm`QKy68CH_#Xs^JZISk$3P1iJxBMm3xX+c;X5r$U>ZU}u3`B<7 zM7}Hh1eTMNVkj&Ou{nGv_xj9=YTSSj76B}{;LFPVd=bkJ*H4;_=2v zZMqHVpC8YPm0rSZ2QBQW=?}+&l%-d8Mt&ZbL&7NgV=b0*JB{5_2d<mIVX=j_suynE+RmuOf9)_>!o)#5x{PW`Xh2AtGy=7 zef%*Cm5})^-*R`xY}|UB?@bun&_e*V!*dvka=U~&LEgGR`>^gsNddVaf^2Be%6@dT zeMwfH?AK7Rn)_vBGG7jbBD$IQ>3&TiCX!_mZz*NmOAKMp?A~Q$cI1!sce)sJHSI8? zBoDTHb8nu`ao91>-Y5>aG;x3}CP5WmyXXkl%%D$Abn{D83yNT)3foP_n1yJqPOdy9 zXYq2+zSmoH@ADI*guUb%_@dsQFzOSNxN4j+Ndyq$H2x%Lr(J8RZbpgP_r8Q%4c{;0 z#ouZn9sHCU@xOeFK*SYIgGFQKK+2Wre-QtV#xhC#nJmL;WETuq_Zhczx51bh6!8k~ zh~*MJl1wO9^2vCsTC}P!h82Jc3q6iZ_N~B3RY)gds-&{27qdzGn;!k1S$^;X_Cce? z=gQ>I-}o3B8>NOPZ2j~MpJSC9R}SKy1{q|uvmp4Nz~ydu2mn~?k)vw%vyHIN433QD zleTvZV;JJsQ?9RDQS~>73VTb9)R;Tdm+cl5w1wA@s-9B%cuwnv6uJ>6T~TW|ls)u~qhQHV{&O)*%j~=lOiQ-=cH@ z00y>$5w8?ZS;0x(5Q&6Sg+2+jilIXUb3TUv%x+Q!(nrNr^wFG2r~0s4r}8YkX&%N2 z|GMmx4WjjReafc3?7CnG8rT$%TC##Rm6@2VMWN^@Bd`LAMY_y8(ML}I5)o{iYyJU| zlzRjp#2iT*-Jq5Y&deT`=^jUqMO^WP9uG0!Vv;FdEC6e;iIx2pyr6ryZeskS=aJ+3 z(zskM3>izWoi0nn;_)}AK{A?va$P0gx6@I#gBqg%ZI7E|c4F3C!pBWhZkyaKq|6d9 zDL*za)t6HRYYz{y9l5 z_dz_rat%ndDSdfiy?G2a>^*39=fjXc?Yhv(FEX|q%B8GlYZ5Q_jlWEJdL565d-+|I zy+4(Fs!OqnYV=||nUR<0Lf@xBAL6<9ptf2pm2IjF!5#AN3O^Le~)!|Od8DJfQxoD zUvLWLbNaaQaS2gJse)_NEFkG%YMamYvUvV$GF)t{({ymFRbHQ<-i3tr@FYKE?NQP+ zX$n3cncDC?gPYyOCi=&hG(=bB9pW3OnTs|xg`y_oExDod6t#!xr8Lvz1GXr##MS+G zr3R6;?9&`q+&S5QfwNExs78{pIf*lA6i>NXNRP;IFf>2GKq7KxTTmZihP-k}f5|32 z6L-+@PD^Fm%5x+~+m%%)3?uACdALSy7(a)kjd?i-_mr$0H|_1jqYYur9~pXg9ZVDRxiC;ww#xEDaK{z{X;Ax}^- zSo6DYfJWS{DvvSBcC`$28-V19c$5ef(g$#c0JW<SH^^delOBqJxWL7Z2$ zOYcRQ{)Ajb#2D zXr|5{r}WPmJ}=aR*`n7HO=||YcypmlB}O@>lHVI0fvug4vOm1*{*8tK?Q9s2gm}9i zv5Onso4@g-{UuoD_9=V6EXUd^s;}Mgq=U+jbGqj(C4YtSxV@rYC44b})rd+%F|KL* zUB)y0a*nv-{{SdMTqWnA2hjweN<)2Cegf*W=!z<#O<)TU9GL|EbN^D zhqN&NguJro4$ygU`g|Zi#FQ93L`Xr9PiYBKBS)QqKCO{Uq;q7uyDJ%`Ca&JpBo3F1 z=4B=jJzWh)jrd=S9Da=P*^$GLf2jVzX?52N&^J8UoWi&bub5__(}UvvxbI#&&4JZYkhN38xuld=3| z>^J2MVbM63jNez4jAiauMy+T0)pjcRWJhvoj+6Mjc9Fhocq+rRA3y!MLHxb<7ZaRw z6c!VGyf8lh;x^tqt7PU#QQ5uD|0YC~29J;&HaFhpTv5%xaJXJUS{__FoVUsrKH+$!DreFk8eHFg zVW-i1W~)JLK*7-7s~gA`M6I;N6={lQ&QvHYhfv4Z%Iv3w<4))_3XtxD(>Na#7c3w ztgN@O>-XZA+QVR&cl%YA0$S@6TVqzhS$JjJ_1Tlmm6Eqvdt@9K?iQP4Q|Hb))q*Io zI2G&fx$|{XK=isJLuLs`MKz5yaqw)G(d52|F<8Ls%2Uy?u`YZx6!P<7?i(?B57!YY zk`6Q8HJs&~?o*2vNtXtSJTF?4?3iF*VLEY#EvK(y@S9yjmNfe_*dKdd`9Ck%>|k8* z?st`CH3SY>uH>i7d~&Lfb79v9Jpjh?mt(-@=sV0Keei@-iBYb4Y`roYN-%QI_NxZf zdoohr3oT*jJp%{L%U^I&#?3yYUE!Rnz^lvuKsQA?JuSv4G+8{Q2?u8;(X0I3IxCC> z7l>Mp2^IUh!nIKUXfc=W!ip6&UbR^@^3r_m4Dq|OG8;JZvWr$Nwy)rZB3Cn3lZD%H z4y6n0-<72U5^^1`5mus>mLvs}1N=b!_d>^?-)M=Sf{@y7nOr0uY0gTYHPld|lboKl zYk}2C4u}k^PK<1b$JktJOeO2Roj$SG^n_UW(!gSD*#ey_5U*_K|gZv9FSD(LOT$rP!Q{lzA^;;03 zc(jbJ{!~ikJG0@gw0Hl3#3~A5rQ8IC^Bz=p$n2|?0PiRyfTG90*nH~?49NjiVU=$j`RQ`4sPqSzDg_vy06j+u=eSY^Em0M-$|yn8k=O>qvjB0F{O`J#l`1li zl^?hasi0C7`NlA>3v^kzyU}7zq+(HInjgu^8-#`RjMJ`kmrmjtYP1U>c2BBErkBu^ zRGu;q@3CTJC!W^y3q z(iS(}&#ZGw5D(C7;AJXDO@Xb0P9UV)_Q&;)-K&um>&S3|FAYg|IU$*7vwt^s`}e1!X`9GC&)~m?3$Y`Oswm+plnIVV;oLVZCnim z!x~;j@wop;$o}{BE%=MG9Kt+yAFb`#L>VG5to)dl0CW|?H<$^N@+&05R1%0*Fbqgy zVtQM`-D?2?f@=7Sl2trh235U)t%VXwa1UJBp3u+q5Csl3V3=OR;!{Uae-7tD1kH0sys$P z44RcI|Bn7%9`Q4TXk*A7ax-b*>qEMSrL(J?3UhwUbN5MY)pYuERqNj_cI%&ehm zevVU`WginxhC|awUYat$Pskq*)({z{z8qbCuIp9X6*<1|23Hq%1tr~*WwkVnru26N z;Lps!4A9DyM-xO$>NMgXm-g;N4>!iHPfScCd{Ui{aV6|tjPNq3hCY8G`-V%-wv*Nt zxY?AWthZIZD-J1dPULlQ6i4r}mG z?)7Z4!tj7JLCo2dc|yAR#+9lC58|-Iui~R^%T`M6?JS;1wb}OAxz$<)t`9BqlMrwC zxxNaNeJt&u$CAbsF!JLklfdwzemhlj#NvS&>{|N%>HN=|=3|rTWi6?e6_ArNp4?|NUkNPWyNd7TS zsi4ME>-SHFy2pNcbo2IED}SU3mX)VQB7j)omh6KM4&5Io3DBjUcol}fOdzyfJi&)R+xw8)4E+@Rwj|GE^N1@4I2P(P_v2( z_sC79mi;%AV_4*EHp&=`qRHo>8l@MFsZ^e*b}JBFY$en*XetprUtxRM-<5F^QkJ1uAuXnP;wSi@D?w zWwEInu+7zWJ%V2O`GjVOv8%n}xhBtgkv8|#gZ&1_Xuoyj8y^dEhvV_exGQjn&uZYC zS3520zWg*Z7^9pxWrx6aXCkzXD1UFR;(jdj5qX4prQHQw_cYonZYS9*Vs4Nr{G}$_ zE+)}Wfc}{}wXQV<@eecr3%M5htwc#DFjz8LAPS)X-Q|bPDq?1QL{K5XJVa`zKzaYz z!OlV!Wq=?>emYM)xU#11-SGS81yO*R>o^Qw7*JKn`Sn3-Es77}eJxFUmaXhfx~k1a!CD))tuk3u-vRGVx-(lBcV-YVa-ms_FwOof3iQbJGNz< ze2ESrpa@?KSp8tE*J&q(&TO~56|?$_E+jB^ksCRG^3-UE_}Y%s?H)G`1@5Fq<9DnW zq9FB_=NA48kCG+>onKAz@h>bauEL)`r~PiY_uz;)_;d(70GE*0Y2XT)cZo6y^k$_3 zM!B79%{Khz&y=6LOxgJKp&nd}klhs;^v20(K*#=3L@`%qN&3&uv7#_N6K5%C23lRwyA`Y7k$yg=u;z5(mF^vm}4ZUJ^_@WKgT^6=s*F(&GVjS^IR{E2%GeVo3Ob<6q?EpaYhK2PVBmab5xz z&sN-W|29mGiYF=ArZKV`pWGU$WVzGa>+J0~9ZLT!!Zk_FLt%;aO)x_;4V6Ma6FRyT zL@-*lpSl-ossFVCgu?+{y{^u&wsO6z!4D&|Tv{AN{~Rd2URl)EFiDb+vO zCgcA>R_}$xO_kyAC;DH8!z$DNms6?|!XGvS+cHyOzlt`-U6r7yC6Xx}R$n|Dw`plr zbqEAxG0wK?r4m&Jz?>zzvERq8*dW)m?&+d<2d}9Y$7j~|*Du7Osapl=2_Q9EYVl69M_ZVDxpIm7Y&!*v-p)hftFY_OcC`m1t|(H`*T;11e1-tSx4ew+!AcbO1l@81(j(PQ23UU4Y>*rg+3 zbfgfU-rcw1?_pv&)DnaPgXTTUIgmvhg>#4ZtmPckW~}K*TCGZNAgbpZo_p1V0j z>L1QyR&D{Z$pYJ3Va~skkD8@*4-2VQundMjejYhhb;;|ltb=KI14N8HI zPDj7iL=ScHGM->T#{tPI&{k)j+f0b7*#D+}!mH@xk1K-CekPOCp~7lU|J=`YT`PLM zv{i7;96&A)($47G`;1u|bSOvWwPJ<4AKK?XUeW*m|QZrhv1U#0$@QtvH30gnR1TW&)>>eYJ!!Y(FZmm$HAoi99i zjrO}lBR@DOejS*APYFuY_og^x-|CiPLtgcnSv~DxO_2{2=o;bioVe!JGuhg20xKQ7 zH>Qa@XiIK=Mm<6rgzGh(KH^yULKsKB{OOmfSfr!RV_DI~k^!Vd%czU|E~LSGRi{|N zeF4#P)8I*&(r4wb@>qLGXGi*%=TogO7CEWw4_jrQv>i@835tGb6{euV1EpG&N1q%< zU68o`Wn7cW^WXJ-Tgho5fEv<=_~t|BY*x)#x^|JE#JK#*CrV(g=r5ngRen4nk~J!1 z?Ph=znWz?aXU!}%;6G~?UTQ7QWa{b%wNivYWG_P-qlAMx`K*8Qi3Yqt)inq_jRmdh z!9vH9sgD%wU;)dJ>(=tvYQ-8g2iP5KInry`n6s+NPB*z;+gL(>09_RVR9r=bVCu65 zyw2|fB~@3FQXGn_4Vo@4r;a;3A!7h4JGEU}@38R(wFS5HY&_A$*E zjrYc%NX6dgA@Cz7T}=Zb@;I!Bq$QJ9weC=r1$qyt5Bn#^HPF?KxQYTj=ovCiNsG^G z8B`wDSP_t<_g%R>LpMpZ|z?PpDYBIVQCq(nV|ZbZ{r!PwVU6~v*$cpF?p)i^u)$B$K(0(DONYI zU`=>Y07>dTPsE8DoD~qFYEr2r7;r6ID_)e`Mqh;65tmk=^!_B2MA})ZYcrJo$aqK> zrj#i|D(3PSEPjj;Rw8Gsq(<{fzH&Y1U0&FrK=+XP3vH#BjppcIR|MwR(a4fs%z?sn`w0P0n) zB+^W|gquw~N%oC*VFl6U_RbG`8>loNHabxk`eE9`taP6^%Uo%MZ@9}*I6ii(32s7v z-OQGnVbh`*JAtVQe~w|N37@$zzLEymc{$Zoelg{9PJ2d>ubJ+RtP%MU#qhPC457`I zr$dBtH7d)~nV!j1gYQ3(IaUJS!4i%$cuC)#c~@Q8zX`byXvpvLXdc?zfe+pqEkBKP zTEdM}9)(Mv=|IJggeTAv(!_xg_RES2YQ+_YHgp@&AFW ztH=_wgV&WBY>nsI88B;0o^jhg|1w;p9Sh4T2}AAP6y=f zs{z@DcE|H;6wys%dFsL!bq>6=LcsV#=~LVU(Jg5~J?Yqw4laZDcbn<#Bz*8ik>6@k zVniOqt-CPPtnzeCxJt>J6LWw{2CZC;u4)`KkuYCZ%{$^T z7!nxa`=2zZ%(8mKhfz4u_(SE`Yyt)yd*90Tk3YMd*C_qT_%TQ~-!)4yLC2Dfc{95p z7(a{$jfe6knb%VPK0qU_R4H@=h5QGizeDiEi|g}Xggn^tU6g;E`(m*O4pu=vxVI*RQPwCUN$NEh!Q>?HJJW;{r<7fhJWjb={n^~ zwz3_~@p9m@-4pcd+d97t3Z~X!Q$ zGB?8CndP>#+Dx$KT@9dThc%SXpD#mxg$NaAdq>5ysN0zpo;LDbX;9t4b>r2)GqVDB zd_Cf;G#*h%=_!D-q8|W{{oTp`xhOt(P5|~FD4v93{zB(9z~E+(mr$zAqzKU-ox_bb zKNHoGczbNpRggSHB9Ao@JU=(oh4GQHTt3s&aC2;T`Fm>UP?yZ}B!E zaREJ@SE+WoNBL^-=7j6ppB)0zY?4FMDFn z$%_|@2uj~s45QLoeo!%U(e7gUUL5{-)Lndhy&vb2n1&Lsp2WcI*&&@pZDsp?gHtW1 zg+0$OnSEG~^FN|cB!B;&Os4i79TP2<&HbwA2d;ufy{B^skLEchp2l|)uBjuQjEMBN zU@7rV7`)g{od(UT=7;B;>jIebDbAyKK=s3+C#xrgCFqVh*DWE{Pz~N}jvEjYxe5Sv z+F!sF1N3gmCOT%awP&$}ArjQ9eEW$94gsZD{M8#2a52%i_kmyD(VM$xATWe+!90@b znX+cPGwWv)x>gaie9h`yhjvsaA93F{t#t#Vg!+DZ=$6~qhQyiqU-zz^6z&#V>zeOO zk5SGUArh*tGxy_TNCrbe4zP72(k(ouws6bxrV~#TH11wHb`z;a*SR$v3k;g8w z?PzcDDdB}b_n)%K{Ui1}=EM!kZ}TAkL)d8-B;K3N^VAX38E-M@o;D>v^Y+(J>I$iQ zCZER3w~nbJys_db1qd5!=6zVgq^^mnb@0?W-Gq++m5W&gqF{n=l_l00^T3OrJRq&% zq`HOcNf$JZd6}|ZHRrg)&hWvRcCCv{ww!H7n7>s+?v^gN`)7(U7lPnPT7cgKmy3>V zBEk%5RL7(-6jVO-PR0}n9BpK3<|@8KL>nuQ7CK1$uB=o!%dabq`n>&PSw%%28_FDQ zeYIITAep>zFIC(7j*9CT^9PWO*y4#NPg0oS6S5f<43FiXm)4ONgpKCJ*;SwkJ9{I{ zI1dxojZvZWB>n)`kN>W%lV#fmLqavbOzdE24QcoQ3kAlh zBVMoJk}lMC@ayDQMbq)6P`P+OZUN_a@OzcW@fqt~UaTKy2tWI09`p1rXJKyXl>OKz z1Y-hfBL9;00IxlB7i8t2>Y3Y133@r+zkX-!%2HNn8VCb1f~*sr}T^0e)T zEWXHW*8lw$n*|zdV&P$WZu_%e%(3FK@{M!V{_xDRh@4Cz|vy zwSgZ&y6mdc0n|B<7heO*Tp&s+!0mADpf-LIZ!F;&?#Cas9MWCtpr}Az8~`g#ZqT1a zc=VHo?j{_#Q5t>-93J-jrp$#t9q-8CBadHu^;ig8H@(>-mwNSr5gLXu{>L2T4sgilEBrpV#?!|-auAv-T`t&6OIBja!RL00L9^C=vi9Mt*QV^5zT$0DM z$K1$56#PLoTkZzDoep%gVGak?gw<|zhuq+;#IGicDAD%>8zjV2@6>J}0eU0nc7)Ru z!hh)})SiAH%^Q$>S3VztiFH28G5^kZ@U9bBT9;6j=7S23`^WkFaxe1=)0|9)0gRS| z-n135t!kQ(Jl4$Vmp_>e2aWpxZm?W$#NTIJuAmDi8RbIY81=ngXs!4|)?m$O|M~*tTB6B3HmMreWY5YIYZIOsU~`EhKtp)4&&P) z5H-I;NcC5N*yRIO`s&ohTBI1Ugk|>=Ca8i21;Bb#=a}gwYkIW(Y(K@;nC3PA-B(KO zyk;pET{hjDx<|WM8L}$h>J^F*9DPj0QuS*S5P56u#;yA0*vL=kSLnD%rnq~sn$QoW zeZ2A=;_IyUYJ+FA7RWh;d!r>E}dOz7-+ z{PR_k5!7p#HoMs5#pO@BELq+)31TE;YF}-r2!yaq^Z4DonTEQHZ+UraNS8CXZ=l)A zh1Ebe64%QZ{MBUM{zYwpu_pFwzess_p0Djo7^@}iyEzgC!h?6wPBvr@FJ^uViyZGp z>}Or%%bx*uLT7+sJ8LSSVyb*0VqA zWzMN&17($lwevO;)+*v?LeDMvDj2@=8$lmZ3Rvq>mG=f@iP}|xA2cZfVj6w_?Jd(5 zt@TL#xrfRJHJ|x_tN%zxfdt^q6(%Q+^_|fW-1wMn=H0#~JRGF#O8)RrZeI64P-daF zC|+B%ty%+F%FI~hvV?ek_%cBi#|pLb ziN%*6qdAL9p+vfOy^R+1W?CN)&+Vg*wY<<%AFpees!@F-ODP8xG3Fo&{&x7f3lY(9 zLonu%n~*k}Z$Zy&lN^9Igx zp|!VT23PL7up?Z|(AoQQc=;Z#TgYhN!o*n4-OJ7=Uud(RfL>gM0=GT|QwL3a{HkS@ zGs|4xGaU-P!3m}>G)bADL!+nhj;NZla3wDa2iM5~YUAC&-S2BVb{+{!ria0{ zn+&J5`%Kb9Z&UEv$z)qe{y~O<4?q1t4DNR?52H#J(we7k>P+gf9Le6iO;Tos+9Asj zT7A1$D$+=3He$msd`0YI9!L^DL$7;X^7T%$u*S16;Z>fJYCh)jT?tYED^+`l&!is$ zW8lY+FS5P;*UWS$WBozaxUQIt?oFjD!lS}fsq!6*&X?rp{KET{9XmCT)%kD9Qj5&U zro5};kMku<-e`H?qIWxLXan5O6Ew08b4}Xg9U;jluTl*NP#cQ&{j&HdzrOS)4sBCh zB{B!te(J4N6Anq@VaYUwadFDRS;FnBR|lQczagMPyN2>qrIWy__1wy?99Qw#ViLKX z8Y4+bR)m~;ewb49z7_ly9I840;>>jHc$|VIeka;^Rd>fte zc{elyb#UA*N+K0#?%334Yz?h}%++{r5Ow0=qL3XS?F<&Ps6b{6X){H{oKhsA1*Z@x zg7?ziy3uKBM+Oo&N6M2^!pRo`e}|ytkF8!T2J;v&X!6Z#_{nZ#$Xmj>!&{UfRmT`9 z>%_p=EmP}9RohJ>>$tw#$11g<4*ONk)icFQ-N*EHxQ#gUmK`C3n5X$;k|&vI;#5=b z7?gf>k~07>`QCn0B@unfc^iP2LT!hX>ubCUkW77?R3Q)rNkxg0ZBIV^1n2Oo9uKrl z1GAWnMsLFHtad6@1jeugTQqu8C^wUh{#1W$j_l~@nYN@V82s;*i{HaV2v>&H9WBr<$F5@Kh&fsxKV>sh}`f95Pp(ClvN|fj>8fm2d7K)bI z_>&L&Sm?mLu=kY8IMA4i5<#OVl!q;;K9%22K5;@gP%9GJij+tI4dnTZc>X90A>GAenb@|(O{1Um-JAaGuB}ONpmc1f;N)6-+^{#aaVvM3 zQK$uC)$m=wnc~$Avi5@4_gEjJ+AcC5$4KDah&UF6Y&Y<~-WEGCi^pH7!;|EkWF|4J zYM|Rzvyhyw^8IeDSov0WbeYuI7n!Z7{RUHAj8Z3c4%;w+I^&(b2yj>24aDOgEAbd2 z@r_5`ARc})H5QN}yqmi!y6RgyK|ILGs-{DHG1phzBQLYnk#wl0w6FqQ*isi23L6v# zlE~(D`l3@ic2#row9RwBignJ_c*cF8PH}uLX9u(1{4zDBXkFbU9~c<8Hw)wvn8*~O z@9lhwKgn~Vnq0;<-)5nR-Dh6wbkR6$i2MF^dFNQ7mdq$0Sn8YLe>xA20$0;Ii6>Zs zzn_^YRkr7TZ*2Crkn=w%ij4*Rc0h$_T=`~vO=vwgYNmE!MnyxrrZU1I#rq#AFW}KD zHe_5>!YUGP0>903k?>@@e!^mo*)>{-SW$u&W8PLKzAiRXNZeT zxs*p<9Mq}vfFggU-oG>}6<5dN>wAX@FW8<~sNFOiC+A1GYy3gg7xH^KYn!Az{SUN| z{xjM-;RDS*$8+Wsf?$5~pWznxvP^k z?z1?Dwbl}k#xt7@l4kJmqFx4ZvDgt%9GwlETlnmo-ScAh6K`Z%VDfR<{Jgp4bD-+; z_jLJXyWK0Z(>&j-mZ3F&=!}oP(S0(f220Uo<_H@BI-Gm!!?H!n^K&z~?bz)f3yObH zf&T_jJzs!pctw1TOJnlE5gh(;t&}BX_m0)`xSiM9CRsHdd~ZA;OIrKSn?B3RT<9WM zTllprftTVcw*mDuK<;sR=9+IHN7dW7f*}sR&`?Rp-F@N`0hSFTL1>Qr;8#V0_N4@gMa$Es=Xu|ZH~-y$?$Ax%kWi=~}cWly2) zZM`u@F|aYf&0*;TS+efy(LXp%{`Q!fIqa^={+2z?}XS& zSrpN-LM|xxSahH8=KiKzC2p5&JYhNsjORa_cH|&WV(#A=p)2^gtLEmxm=>QsCpeld zIb0R^8qgKIPhwdUjslVcc~*q#^wF~z%YWZsn!`soTFI5DwUN9&?7~o*U*7NWM?UPD zdX5r9d_^Z@11#GdeD4P7G!D(e2-?eLzhgwlPnUppCyf6ID=CH6Or zVXY7vwmYFJP@rZn;ZH+(4H@J%0S_YXQ~QoP`N^dw3+4J!G;C%6x?^NKv%dmjy|o^lEk)AYTR7# z@0mWpy*NjN)Nce0@U!DUiQNAJph=22)aiRe-g7H2$;~2_c-k3t{L>X9L6R;DDgjQj z$S|>AmVUV7C8n+dnUg6AVkf57IJ5Z)c1-5<_TN(-i7Qh1J8mfhJVlS#bkn4C0tjGrb3Xwy&p za`*gs@G*9N(KR)?;mVp!AgjFcb~UuSoby3_tL&ea|E&(#kac1@S(t+RxqcIxQu=~( zZKyLx{#zo@?R-FWa_PBFPw@`{m%; z*gTwr%eCH_^QpSAY#|{tAiq5>*-u6r_R?Y5+fPF3w@n7rP?kUFSp}ZM!M1Q zz8B`a@CX0zA{Q6rGDHPEJueZ7smsb^`1j+6=F8Bb_8hG49*XR?{HtaANU$}}@!$Qo zz2qAp5V0(RQX&PNleEg-u7S4y)HoR4xW&XP9^RN4oCZGLS9FidVl4N~pGe0sRkx82 zXYS1|TR`e@l=)OOV2}WFSU5FdMf$fv`$OiL(G_Ykwj_hkP2Eo;3Us0~Z5rt61zwP&N1{bg^6Tc5L z*fo_B&Y7jWBuD^BNo7a^)E@U~W9SiAAOi=HPF&fF^{Zls0;V^AkajxtmZuBfgxt+# zaozJaQC@8jyaIKw(o~(|IW)w*DZTG@0@(PN+hKyOi4}wOM?Zhlr^NB@R5|fpU~++2 zkEn5tmn%72M_F^Sl(_u5h*S82obZoC3M-Z`@{}$V9IfD9a_i%m&v?%PfDvO_<(p^2 z>#TgS2BxzfXu!vj;%5V*;FdLKBaZb>Mo-h1V}2&r&Lt zo83OazXQ^cGn2F-DKS+Byr08hXSzJ7jm!J%n#4AZaPCC1hcdW#Z!mo9met(Z1=RU& zw*ET84FL<2J70|l)03rVQ4utZSQ363_tJbO3NAf_=@Vv-Y!?z7#%#DpA?=;tF8*DR zol8ZYx$7r_cKq za0&l{gIUYHzRW~63BN(yh=_oBO5SeJk~~(Z%O)5)HM4A>ys(!SZ$~_QG(P&r9@D^J zs|=C#%MhZ)0?C_C;t0o3ku@$cM?^(d5t69zL&{)X^~Sfg;uDMErbOx@E^vldI7G1y zob3bb7KzM^PVK3unsomcfPGqRc`Y%iTseJV`${EBTG5H=sn#bT9Qp+>=aVGMUpeam zJ9Jg<=7T;f1eXF@)?vD_a6erZ%3J@akaM!_4ej%#F4XpnXj`4vDWsjL9IdM04xEOo%2=;g*s>S|Lp7?=TnTmGJuiQFNAJO}=d$rn@_3 zlynP72pe6>fQ=4G=^lu5BMs6ZF_0J~69k7Cgp_oNI1wbqKt#I#@AH1y_vbivJook7 z*Y9_pv?FJf2-TaS_G7aJ>Sw1`b6PcqMAr*6^@7N@XUQsh`Ejy~!cas9rg9ivyC$t& zQO%ge;*y1LjxHc0KVe9Z5@rZ@=Xin=6r|=u$d~B*QBf8;xs$9}s_4q*kE~{9RvV!k zV0|^v*ZMkcU;uB;n(teivj!t*j1r|V6w#q+WF+(p2Y=Qp70;TF{X;-M0c}9t=>>(E zh#Iw@f!QqbjZ({ikQG4?sLjR!*fF~U#Pr5Sj1h@D?pIFAZoTv_kKAUx!{RS*jJ_&$ zKb!v6xDcjsVKQB{1`Wedw5#Y)s9zgJHLNA4IA)8UTfN*2Y0G1UqFB6^QejH*p)w1B z$n)hed~G-T0lQW-6SKIID1OBhhJOH+ny{KFP`^Sk0H&^Tu|7;=Tr>;5lbW6Xwpm84 z`ZZmRRRPAh`hCHRn>zpGk3^Kx$^6tHsnD&Cs!_YTjs<9Dv8HawL9vg29XIuquLkSO8b!fbh!ICL4e$lMwjwABlh8Ntc+|j}}7FPJQEl*Zn&B8=oFax$Y;JNYU zZ4Kx9_rFX|9Mi=J0HPlO#bK(zN^5q*;mD&Pg4JSSG)aUt4o#u@9|5)A`fps8prRQJ zC^P;Ihh0QXR=qT{kvrBB3rJlN&!^sfnO=2x20olMR*My%ReyH{qOniq)B?_P>XWx4 zoSlpEIZyRh_7i^aDZ>OGUqC#ANzcqOKHpUXjZVTfWh5pR=+NUqq?(O?R+9JAFbsw?j@=l@DBag3^!FmU-Wo)r&#b3oTHL|b-#j$eR z6V@({rF*sUss4DzGf3IHi9dtI|`FQ=6p;P1v=1A>6A+@a2LFWypU7cTG~F--$l{wZje; z>McL)R|$H_55Bv05=s|ix9;0W#-%s*IgJxR@Ze-@j#E+XNg2&smvFQKg;(dYk5%-d zL7*u>O+wTB?wUt^l!O^BT8Zygp||i}tyY6VKQ3GH!phm6;n1*}Xgcf1vd=o*#(p(Vjiqb5KxgyT>bi0=_gbuMrg#1U?n_Oi4N>FV zg4hu=uP_B+oNI38X0<9UG0f2q{X&}ds%DcMO+B(q%A|m)&*#&y%d+&6^ra5By$GZP zuJ2{}S9uBqNVmpvmF9)9ajwhc3dX&?u4QXO1cc#Z$2w&xOOF1ETed8(LiSoU;1n#YVkdVOn98jikD+IOcWw_2fH3v`$G^oq;6?hiXJ4**VJPw7K$Bw3Ek znxz8QUYxXIf67fHfTulL)|zx56X5oeuNP?>3Al@$%ez8$Ez>ZAZeY$#*M+G7yLv0Q zuG0GuSNC=bOW>;_+C=W?{e&*T}4xto^TVA~>EU*EW%pijUw z@L?$2C04#;Fjflk4yh4Il57BaW0YxGF)m#}ex#RC!nlVy;GU9&KX)u)%S%K}gkChc zcNEjMjlEepLUb!n@jvfp-B~|)PO{;I*pj9i%FfSdpyT~hIO+IpuM2XRt8)YMDZkw3 z)5mqvZ#4_(FpNDn!#=ECg6-bFW%x$_DJg52;MO-`E&w&28@<4jYZ~Fs-X@xEAG~xPK=Qo_JopCg+m{N{%d6 zjer!phq-Q)TBKF^^DizCBIEv%pxlA6Kgll)luzws&LxWmkgj=aiB^~Rck^6G&Swf2 z;#~H!Cky|7XALd24?L~aA254nRfaM^SH<)E{k=OgRNo8RL~v`2ug?skp4YWok$;i( z9(G{l1E!(R!!v+gx>AI2UOp4u{k*V(si&X~GVa;ZT3d~391lX=iRW|a6PvSU!93>BD3>~t) z3T}9AX`H2K@$lKp%t&YGX+xc~Kw~%_6EQ$}CEj{VVWV*clDTkuJ|^J$abUemzPtxJznW;_|aO|2uGISUB>`Qby9r|QIkR1RI(>#60E}pMVAy)U{1>h3ubpm zaA$$3pABCYYsD(tti7&_RkFL>udQ~ucrWCA&-B9BLAiJ=os9$tFgIlzY<>OX36p&* zML}a{F-7ghP2Js(CYbky3xI=EW(YL?B#r)^Fx7idIQ}Iqp4BweyFn_(h_NRd*FPzU zp{2V%coV`{KQsymQ^Q4qAS1anT55bJ(gieqR0!59B=EsI%rv zrArw270u!q?I&IuE*rpURtww{futV5D?aX zuzsXzRcBBTcjSeZ6Oft`Wq%)Pp36rJZ@*Bvh4IN9sby3bI#ExoKYbi!#=BJiW%Fp% z^|?Xgy|=7J2fX(zs2f>=p7%)$5w3ij&G1 zBh5+**Ef6`-tYYCbppB4j_BmTtZ(ZVo2ynZAnL+MCW@F2TPXZT;EbxPxN_zpRtCNU z*<8b?ge$FV!{$6OBYt)Uklwh#_{)f<%Nk&P4Z;FRvvb7v5i!ojq8r1+wg}N*?9StG zz5>up47SL+3i+CbZ-QYcvvP#rhuBAV{?yis_T^rU!ZCO+x^UoQXx02xb%VtX=@!Sg7Em? zIkV%{fT`;ON)f4FpHXfks7KG-geZfp{l7bFi2g^gi=hTVDxVtO3PYYQiRa%$Pa9@E zD9q(q;h$Eox;6S*(Rm2r&Bp8}diou_;I_*rljS?Db^&Ult^fyV*>e2enf`~f3>L<$ zpJ((1xf_${#`mAUI%^rqW#}=e54U-&JrXH^!Wtsl$LG1q&l$SG;_X3W^FfS=ILI9mzUqMmF9ZF;W zS_AR-U{ngOKR@j}C=|Gxi=Z;s1+z)|zl|tn@W8)&|HF|wC%MA8?R_1WNe<>xN7K}O z3K&{SchFfz2dc*hPuCYhC90Sc;e`K^zp5&p9Pfa>^M#hbphx`+JYO(lm3hcxWIzks zC+rRqy&zHRFC`Lk+mpZdpJ&Nakvl|yE} zu@u@BnM&c-H#8@7d+MQc%zrHX1OQf8>R z>49!8fqZr%513Z?rZ_qB=?RtRw)?uJ+;k#PrUtXa^TxQRV9DCd`w0~HA-!5V8x~~<>8Y81qwWdcKV=!P1j?UxD2kjl^mg@3+8p(!* z!l~Su)j&6}>mQ=AS&g4KEUF1-p_!h>RlA^QtG8G%ro<>lZ-cx;lO1K|Y@vhLOv+-SU?L30jH-Sx}vD*#Xspx`G9@otEw1-v^a4h-2^a%El#Mv zvK&bl6+Az7v>En$ImkVIXCzzeiH?mIO1f7M7*~cLGHv_Vu>+P5o%+yYBp+E+mTsX@2Ny>vB{^^^i0oWJeB%D@X1-zG+vFpfe( z3O1^7&67lwA%$(LV`J?~p{&2oV7I@NZSJ^e3VR1{+^~Y#?l;PNkf1x?Qj3(i0-lj! z=DOy`^2ynDxEjLtsWQUFFj(+Mcd3|WbGOn+Ig z=aL9=c!HMp8oFo?#I`eCWv2L8_smKVsE$}%mzKr+;;@Chta}1N? z$dK$1GNyNj&}+`pMwyaRDeCs#jg_vJ;lh%o%pj9YHy3DKRK{QfFwP~emR63B4)ev` z8U_m7`<;_?rDoqhuM1LjYU_uRNulqP5qBeGm2E%uL;}vGZ4CJ^=2`cGHcnxJG#{HV zHM@c$F25;I6Oc0tUc3}L+3Nxo?_#Qwy?A!{X1_|G5Uu>qUu$sZx#V1^?s~)m=INec z+(mkw26hS*WjVN}9^PuL6kTIxn=dQJ)O&aeiv`+H+<+&8CiJqIw)UrFJX)3CBfy+? zfpJ0d&M>}~@gfN*qv}x5zukEfvFP8(=V`$WU^{|QscbJ?b`t@1`)gvx*0qrJ=_A6w zZ03V)cUtmOPW7=pU2&4#?Nw4(0!L-kFObR=8sJL)hMCZfNxuc%~ZLaZWfYG zJ=jYG?(dVLt-TxVjwD9cClD5J4adOVe@`pTl7BbO8=hCSF60IMRtA6eNmK8_x-$aY zfzn(ViCIeQ(P+fAM(db#AHx#QVy&5hw2YD=iEK2_-OE#}uYuf#FcVnrKzaGk(9B#Kr%t+z1Rd}O!ROR7Zr=XP8@1|e zlNT!#CblK}Rm`Keg)-!xkfLu|EdxGS!v6^DTo^9Gd_%xo1Wu%s+*57?+IL3x{o|za zu3PQZhvrK5;~2L7^iAt;WAt8KI9nf=V@>P|s#6Xkgnw}ix^sLv)lwzjPZ%^f9^?Fv z!0JI^*szAD!}v)OXSmXLeBY0df@qryQ4{sx1){Iw=mGgiz+-!#L!| zj}uD%X5y9kqd&lDu=8Hxxqv_8N%Zswhr>&dreJmkt6uI~!{N8=s^d=z#B-F>>K%&; zhr)kb8i3^LHj68|7DAfiFoDMKCx~(Cb~1@Kdo4yMarS*fXH+Fpnr<}2vQp~v6TNNO zUP1I%R&+8n%4Nm=HV(g!dm@cST_NGF>|;fePrp5we)QbhyX=+h&*t*lk5r8=PV5dm zsbmO8e@^d?y0%}zQdoU|pWyF!V6)dNa@QG?WEvzoBQnmItj~XaSN*FUQ{9{5=_6gz z?MqvsTqh^pJc89TalVU80fJ?VBLhE}RO0tecsY0f#RWXLLPIJNY zVNH=vXYjJ89qt06s=S%2lyz*igpjoRmrMI0JtoA~<&W_P70FKOEJiEM{P>^Ox#XP7 zwgwT=7f2qAAfM!}n@H7ul1Csaq$rSa#k6y7L6@z2nZxV&_JT|!8iwPM6}&D;}-6ad1qd*4}jABjhWAr_hT)-(!3^wVf%?f6NO=YZur%*$56pl_iTp4zjvBj1!T_b zJcXfQv8eQp=Nk#7+Y?U??poN>888hHQvez@moF-NS?zAj3ho9U5v4~lM(==}(mSi> zMk#cqv#26{0?<2NHz(x9y5(K_zWYbVBJompjGCXyxzEzZ6E-8^(uQd>X>5#ZX_lCK z=oGzJmuBy&w1=UL9kuns`0aHabOIK=PqLA%?~5Bsbe`Nf=n^TRR=&o}`vA=8l+caJ zbah#&V@MOtM5m}f)86)8ee46Mxriw;xh zc^^XFxx$NsBE!u$`6^dLli^)bFNz&CB)G=@4zAA<5=M-M3v+J)(G<}m*llyUisK|L zQ7)IMaIp=q7crnF&e=*Mbbcv-dsyJ7!|?eyqw(|KQTJP=_+#6hQ;019U@HOuWO42b zHyXIQZbv*rY=P)x;v>kJNz1^M#5p4k8Lk2&k)hP#wlI8;Z7v5@_7Q$3dJQmWfhc0G zYP<3Hn-``sx`JVs)fm%dlipBMhlQ8!gsF(SF>RqL1LarNU@5u`E#oxF7kvf4H zo&i&mM^c@}^G@3_`pw2ZH+HUE0cF)bdvzMU*W$%#66FBp zQS9ARIVrEJh&Ad}>Pcd@`+HwocIW`g9A9D*v+71KGr)P_?lBO6YSAn~1E5Q4nr^&t zY4nANDMlNQoz@5S#3~C7qh+7G#Set+B`|@^4QIYUzeY1A4Mej}d{l%GGYeP#bC*Bp z`cug9QHXuBht(I)MoYioqe*;Xr7Pxhww*6CV)@QCA1_76! z>6Pc$iP7abiM# zsL^ad@tI7{VB?YnNFYs_*4yR zh&}alZtNqIvk#2r(aIKji~NKY8BvzyVrE2T@8_R)E?Y5gv5#A~1W9-XTxcmQ1d(Q@ zLVC6ec~gEI3j*?eX4ZEbzE2Lo-KAM=`|h z?nQJV7YSerTbOv<`>p4qDCx0ht=wSjDTK?K&itj!y@{d`wk#*yYu)vmT!I@Dg06Yt zj|SPh=7%D(`7=>^3{Ti8PxhKfQ-Nr|^6&!j`q#((^I5LTv|Eona3gn|lv*#LxvOHl z(CZedy(FHL1(F0mtg2lk3bI?UJr_zQz@>L)_5)0~g^wYv@rp}S+4e%unWS|T%DS9o zh&x~#bf_Hw&S%a$gzI?E{+pM%!fiKsiXUED9W{hlCEmxJ;7q4o2PH$(K=rhlOA(z2Cl{yAqh?t8y1j}z7g zS+Rg=z|oY}{;J*n)3Ltzy#e1$p01)K+KHk^lVeEPMh2TKZ1DO)vdasD`U*COeU486 zhGEA2sdvMOfuxNapY#MavUx3ifXDZJg+J%o!drg5SBtoRti-~XZL1dmG>O@LJ>}Gl z{m$R(bUG~jKLQZbrxQndxfwGDt&vK{zxQ0r+YtW-*q%6A3^t}%P(;|Gf;TBS7;2=O zy|aiB;PcV~#~k{BJhS~;bG5+FEDENI(?p+q-1CT+ExA_F+3EKRA0~d-m1H8RcDLr* zt5%bk%O?m}(+>^#Fgl^DDVf&^Qly2u>BP^D?8&As@S}%FX%4iUuFNREpt6+CupYb* zm>4vrTQFIp3Q6#nb4%_N8`-P6q?Ktl^USDcC^0?+C&%WQ{*P*RKD64Ce2wc|*$y+7 zj92j7_lQLwl#znJ@|X3CacXJnP{Uixk~+^cD3Usq*314=;bQ*EiFwyRb-lD8=J8Z0 z9Z4uWF;Ytnw1WKh+C7)>oqzgori7n6=TILiy^jc@A^S+N*gs}d7;)}D$uTIV?ErUf zM^r7CJA7+E0j5M)~1$k!aCK=bgj7Fd&}u0A-87|j_aQHrm_5P0aF7~(QDlVAcG zyHi8!#onffl{DM@_j*Qp&uWBr@!5JdESR~H${n{*h_H7hXY-{)<1dS6C@W^`wS(s_ zy=YmF6Bym2Zb7ALa%wFZarzyiM&)JQ2tZQD5DTo44Q?4YP(S9g3O~8=^bD*8zTeti z0!j%W88Mnb8y8G)k$h%7ynp;rC)l?&mG(QEXp#FIU2V4}Q^2vU;9oYgi-tkRtFe2` z<1^qewiz3)S{92rw~chp1yTavSBJ!?Pl;Iau6YK9-#W_Ig<;w^;*4l_ouC;~`f-#o zrTFW}Q|K}DfgL{I@zD-0aS0zEA{JXGp5Vu)!`v?HODxY(E|{RZ0*7WBMyG^n_iUv; zT_D;T8!!fDu6I%zncpBK*JBGuqfZK7>@Jh$tQo%~Zq>^=wh)yxQF=dEtM*UxJhM*j`;S2< zTOTy(J_>_p`>th}4GGFKQZZ>KF~P>tib0$0Ep4$EBH{fmzh}LP4|iGrS-<(X5ZImt z*W!sqZT;G~bhn{#6h^?Ji!^v2ja5lFxXp7^iT;qfw>Ee&)?fEdSU2TPHgTEVf%Mm? zUe&cvVGovkHA3AR=k#N*_+vLs=!api#}8qoe`d^&&hgie4$sYy*SR+A!t>z(mx_`@ zNk61vhLnxB#%U5|f7N`Du=T8wo>lXvpy|*r^yB8DcfguiC4VD1uZj$R74kU9*sNhD z0&uLF6(k80n6c%aI#%*gkHql%w4B>QiVE?Mf37snCxa4a;d1bI{L>fWkpkkLnEm$AjWrRdlCm#*0n7MeamAA$_;#HW?GVNg-$1^DgBUaUHF*Z6Q8>A^IIXND*TZbZuZi7$W9 zane%{qG-nB+dLbBH{~v@vU2SLt%;{mExjo(FRCeffvryjEo<{;aa1E=q^1r52RGaP zn;FlPOWkQZe}g*?T*0SiwUwu^)t{2dmCyPKeuUcw%6ZD8S5O=jMV$_ekRaECvxkY7 zYxg?s5XEdMkS1qEKMCo_Q4h1d$PVI$XQqARAN?!j9V{X{XtnBUSC+W{VA|`#6A-En zuumJWfbM@8x%*Wk4SRsQ zZ^^NZ(4_h^R8z4NVZXDMAKaX^eO$-4#cm`@P|mAthb*Gu+iN<~S!eMNj*m;=Flrav zTmT!(zFzhONJMf4zN-#np82sUu;4V7K4Golh1~b63dc6c(~o6A5@x zo1WZ_aOR>U`S5aqR?^QE#bhtHNv*6bP@xC4_Kl@ta~23fG9UarOIB{|y&gdwWgGP@ z>UKYRGfrvt<91%_&fnV(MEPJ1oqpj8&jNoEfYnK0SiR?+@MKZ4CNM@s>PX`8D)SAa zErEKW!TW@P1rJB{;YY?gp8)C8VZQ*gWjk+?*G(Ub@{N2W=r&KuSD@{iNz60xU+=s- znG5r&HHS7Yky1n3Of_;1GrR*ZSJ@62?GZ)c7v!d{Ljn9trYh3iR_v*cnem%YEaE=` zzJgs0o&8$}C;3%)6W379cfjda>-4Ew?jJKCNX-q;6qoFp9=fc#_m|t5m@(2;I(`N+ z8HAbl)|9RDQ<))d$7)TWk}_irI6vS3Mh+#(U^I(Bgd?;kd^Q{$NQwA@`L;UqMw+&sL4GCL2QAG2*2Lc-m^xi}iWVJlt2IV2Uu_6f9@-%9RzR^E@v zzG>jU5q#(KytEUhT4R%hW^Td!k6>9f>~jh~Br7lua`#yipi@w25bp5!(k#Se7=Wf% z`9)t}SxDJB=_S=xOaM_B~zo(B!_z<5`n$oKne>}}4q}k

5Re7wmWN|4`sa4w@rajIAMh@Jjx)R%7=?bb9>r(lk#mV5B36FW@SNcCW> zA!XuNxSpBzF6xbZE&bdK2Z(5Rjjos&T}Nx@P>^z+L_-?z)ZE6$CK_t6yN4>$%y0jV z6s`wme#7ZQticn$*}9=}T%6oDeC5y4WKET7M&aLZ?O!T>vZ>{NQDh4#jWmCj^*GSI zmqYpXy9JDL55g=p<*PRUa0s0@x6^*f^|97)08*^{X4>gdV^~(FL9s>}ki3Qh;!NWOriBY&-ZMaU?4#3Rd{orSnkE*~hqccow7g);D2%m}8 z5v=M~GTgE9SU@lY8vV$&d>7<(?k#odh`_f&t`VEc?h;VMQmREB^Zq+hFG)Q%2bFg4 zr~O9m?ir7KitFT#P37qMutd$x!q??u3Rq$sPG${uUu2@ZKU+JN{h=C&{Rlt+r|=+g zb4MZpNGgIS(3}a@)HlATTFZHPD2i$7?U^U4sNbfT>Rjtk(O0jj!);>W9%=&ob%%uz zGSUw8SM?Jsq4MgwFW)sRb^8{cRem#TSSHIDFJ20r0KnA>yew*<#TdrXCkIl5(x!^} zj?MD4$~WQeMY)Ey4Af&I51`$q^7Hfxq1#0&+PqKF(L4NtgZzG2+N3( zxW~@!q&@I7-KUQDh;DaFBYn>7RY{}9H)*8>E7}X{?Lc)qdMP*bY2bOM<(>S?vBXA& z$L59%Xd0}Krt&iBFuG(}Q-xnGdRo$*c4j^TLl&L8uu0FeBn=>E@1ok?$4CqU66Cdd zG4Q{r*h4<4yX<+C`l?bSOnvtVG~dK0db?+t)HVIh5(JN)hm8*1-n zINZiXKClA3oR@&kB(xqm&=Dzp%+B|4iA>0^a3z&E76{mEz9}?N0AQ|~Z3Z*3=R-3r z;EWqKhw``MW}95mmd0OW$0QRz*6spTa6_J>QIYeF_>8p4ri|K@>~t_QF3v9iZTuY; zgV|3pq9uQg%a)sSBT||iBM#@8wn}g+(FQImFsjUkuVpTwD%{~_c>^Va4~r@ul(#{j zbkA7MzgqR#Pnf_?({Js#hGTj3dh|IM_u|ynEwxpDw)-C0EXttCRGZDD_R%v!;=sNw zl$`76VQ`)5bUX!+D$swd#+vJ-UO4wJ*L(M+`)A>g$+O)4KCIt%UrtBx>pq<2j<)1P z8~`*6DAh9=KgsJ;M?O083lj91_6kzv7z0G&EaXKb9(^kmdVaEC2}>atekiz~KMe=) zkxbRu6KvM&<`N_fyRBco+5EY#J_vdmV?&ryCT)!SCx$|KhfE>X*3GQwnkMqzS@$Ef z(xyvH`@8jN<})%;gu-zMT*E--I|t9TbYE^=#dc{PX_h|7Gu=+AjwE;P+%IEaw37TL zY&Z(o8x-Y>E=3u94kQ~l32_OP235%{X4YmT0AfzKUt|qVYcHgp+~g`-gP~ZXMmB;@ z^a?GOSvfhKCXLiZX-eU=n`UZ_U1Pv)a2N&cgyD^FAv6mb(Q^XhA6ujD=6ye&-WDyO zs)a(Qmu!`ok>Xp0vuoTy1=jl7=otNQ&0TsG~Llh<+-i=8wzuM371k?-b*F|m{tzs>*r!d1G-Yxquuly=q z)*662;jp5{AaED5pflYOMVQ9hU6oRQVFaNx(lp; zqYKRlAX@2wds;l6cdSk~*HBB3hz_99kI|HpKHYtVl2}oDCT;JnKK~)@rG9~GdXf3~ zBj>_4j*z#OmOVk{9TKyWoowVttR%a>;u9((wStt+P11ov?y|QOvI*=wH}i!CUSCjH z5>InFs+zbnqgtkf2=Lf6cHZ;Ul9Q3b{%NO2;kQQXES6UN%%6;*>w(t|?i0>k^+-AD z>PFTH9`9Q7-;Jn1%U^$xzqf4b`^?_WMG6`bRpM2}?lj?=D^W`M>2{P{5<)`9;1mn- zk(eDJUKsNXXRc};_)B^<_E{q;8`&60?#^XF!N|t_Q~nK4m+j<7II$`+m-7gj{WWZ;$D&9-7l?<}eG5R43y`B3&Uj|F>_UmVb&E(= zui%?duyh=O@VI|h6+*2W;XeGkx?Amru|zw%Fnr-3x&i~rCNE6v%6-WSDmu(4SvGq8 zA3-un)HBiP+q9|b*ig?a*8H7T0O7R6zP=qai%JpmX!%~1ulBjb2(o>eS{X>Q{Ap;dxB8MBD zb*B^o*P8q9N6oM@lPYB_F(}$1h#rV@0a~7WUq64f1{LM*(IaS9Tg3g+;y>UyHcKHA zqlZ~bTxq_lf1OJ3f0hH=$egG;<|v;gy*#zdUm(g3fU|reOxBliw~a1{RR#{g-dvtm z@r@iuFHe>CHar>wk+r4antw#a6hNkKfix71k^89=mu=Cx-vDn2#oT`c8#%kG?@RqfEtLKHji6lBXz-Rm2>V#iP*^d@QbEOlrrzT6@1Hsi~jK~ ze8L@o&E}=8d9Pfo9JD>g;Q3c|zX6mhIpgjhovTNWY2|O3yrKJF?4#V!X?S6=}~Pu3{}A#^l#x^%c_`+%crqYIN!PLMoY;pxm>KMvu#u zt7a95ap&^CB+dMMK=m2VE`m$Ar{4VhE$nM(=+jNVX-SQ5P{?Ugf9V`9zC;EY6Koq; zBOh6vH-D-X)n-=`dS2DwEZrDeg)+AF_n5P11W9reW;~#NEHDO<6HD_WBPOOAWUooVDY*1?3VE+I=fH)Lq@2 zg^)J#4XMqR4y#csF~~+^KCEAROxi!A3h}+zYnM7(Cwl1_2z!fCJ;0h?*2~J~D6wVr z69h&!It+ec3AMfjbW(SOzLW!CN3O@(-+1@p{v+rVYd(Q}NhVmZV8-t%t9lpRSwYR6 zLDVV@yuay(dYwN5g`Mh}{9px3f9mv3(2K!)MCWR%h#S9DLMZGvg=2}Pe)=cfd4i>O zt#dHZMA9n8VQPLy0u>mkR4nncRX0eslRNF73A+acleak1m34f}s-`X%DA|u#KYTBa z^QK0RKIkpZk*>E9YSsbPws}6jOb*m9sc)M%iDi@Ue+mPp@{53!zc`tSRDsv~P4WV2 ziv7fZP?orJDZg1IpPHw8#VS`wX=}SO$3?Z}N6!GQMI7is5KX`Sr?88PQ*}27e2Wa)2Hbg<=E zkmPl@;|$e*OesaU1pRbfy%s_~`K5L$f4Ahcf8{Yt#<-(@C$-ORau&#s9bym`7@W4k zOn7SW`p9(bTtYo{S#gyv?$LIPx7z!kxIg4A)ig08857f#i9h7)Yd7-+NF0cZuah)9 z6}p8O2y_Rscc5g1uaasqtG>Sr5_jYA=}T%%F|I^y>!#>_;G@G#4HzwvCvP`p7+uprH#?cP=C&MO8Xb)@bTc>@3K}+#-L&R1`8)o|43@UN7+1)Z9Fk}a561vM_Ro2 zWY-H_IJ5Ptjwo?G#B4KCT|fEWH7sG7I$50xA1o$^(DV8YHxRVz$K9V2+1gAVe?HKh zYE{(SGGb-rm}f0GM)90t?Sr%Y`=74K7+tu1(HI7EOsHJ%ZWg?E=SmEGFLS^7S{Mj3 zh$v0h(F&-bwjICemne0D=HhGI38(#8!#o03DE=LE0dd8kxT|Ho?4U>xQIilk5bh{n z_ew<5RLNFm;vY7gJzS8~T;%6Od1^S~$iL3+%Z!?)Ic$VIbi#7n1SE0F0Nc3k{NG<_ zCiZ%ZC6_zfqAUqM`$w4PsHs;rH&CbE8nqFOZEZ&{#nPBoq+-VOgZh#A$Fl-#pHfc1 z&ewC!957$K8oh;#DU4o4-cW@%UgL9mdW-1{ZH4#>x!STe$9|l>6UunmRIH+F(~OCS z4+$uGP~-xup=1r`QFCrZ@0JOoUbl;IiQRE358*Vv9(=eyLRhup-jFlil3m_Prb5R^ z4mfqBSGExxil65Y5lSO6LoF@wzT)0wJh7zOFvqhbvzrHbr&|qWh7aIJJZkH*38{lO zmbwc^O#S&`(9-c}sGJ8D8h$0N{?j5@zTV$SHvZBd8=S;8iNEi&CrEXltPAv9b z>6pjrZ1#lbnBn~b_B%6((gE?S==@6>2l6{=WfcD7U;IC0X;F{sE+u9e)}yIfLO<&| zG1S}^y5rZP5{B__m6EgBZ@)cR_QSJ>jqUL4D$aizUXCzC;Mb|j8r9mRVLL9)l%Y@c zgSn9d{_hn4knqN*P3lyduD;^H)xD|cg0SuN<=T8gE-^A5uTcxa=dq}JN&r?Mbq-fM zwbAT)Axc;|HokkJr{OV4MLw_>M_n~8uA7#{!fSI?laq9^Oj0uQ+g<4ky!;aNvnQi^ zN*ODC_rg+Jc9UJN^9#dW#Q-?>`tupOn=n{+>nWt@r=l@6zobbhOocB$q4%~Zau4lr z4F66#jG%sSS-k+zm@8vY(Fc|P+hb_mkD;6H+|YxpoHxnrHr$KL-6;zf4xQ7b4iQBDYN+t>&ow<6!b=CGV~G3NW?;D*uA-&oks?H93H_?v_XySj zal%cl=vF^Dwl2d)$?oj7dNQi7Ii}1n0MlY$~yK& z)32shs6o;{xI%WWg{&9u<-w&?{W0c3A#>u4T&BqBz6*eK?{{y~(4$JXJdw}c_UO!l zFF&nb?~?!NH6l=?eZ~Vo)hfk0=yZ`?x@gYJOkQWXhCpU8Otx+`8)l zySQOEl~;RU-d@hZiG5?!jvVK509Cp}-*o=fCcVm;*}!T(b#VZu^&=K+t|=S$IHe#V z`UQc13*iGOiRfVJXE34sBiv__r`?JT^C2d|`_=Ls!QcoRk-e^vy_(xo$VQ8t1-FbT zQ;tH#W&{8{Y}WNiSc|-GZ|g%8!;gKcds7te$~T*7(~hJJ3st&K-dGFzls@XPvu>{A zB;Mhn>Z)s6d|~z*Uj6UjFat?jhkqSz>q4+sFIhdx^6StsfKi7k;kXF!*9;FbZp^t^ z|Eo7+oOZ|m%88RvkkKa^(z|#@Hdfv^mT_y81w3!)z!*uO=y&tufroLq{n*I#R~A%4KXPGtx~w5AxN2#KURluM#b5^dRGc)E#V^qcrOM^ngKruCz3Yog`LS}&v zMq~0Qox-^mmHx8eD~cl146-VYO#39A40YFv7d3L%MyIzc>A2Kt(HcOr%u-Mu_;ey! z9UZ1cxDLs(E>w6-i!8EsFMj5Z1q$TAC4@>1Wgw^_>|21o;dhh6sW%Vgb&v*nA znC;S^Wb?%Y#y6+2K6gx6FuM>XlFojNX`+09Ku%?W5xnH?dQ|Ea4gD+Nf_1p&yFXl!9 zL}~oH2G=fxY+M;${|H@M$kCmyAl+t1e9vFgca$)@NCLk=snTNV2#d{}QnhYJ>TTvI z>FGwGq%R$K0hP9+bhVtweyR53#BN~-F@V@*Lkp1YvszFf+cg@kiK=v>KpNHJr-vz* zO>&}}Da4oJ$)(M#D2^DjBv<9 zNZ&<0^$9dZy|+3{RN@`e_a{0Ozxjh60cD^>*!n(&;JN? zAAaDAtY__c;~Br}Ue0@)p&i?w{jaHanG8IKY?Y0WFxlSAlo2H@59uq?BpbK=QPH1N z8g%y{QU2dKtZDor^`7!atl9hQaPY^k1VF%Fvw(gIg|@u{5z5-6bi?rxB38>9Ox!bi z#Kj9F;VR4g)oGm$kh{`=;lUchIevd}w~FDx{f|hTH3W~gPsDPzk}8qpPWQ zb7P0SD%jhMVM7=8AUjmYw8OydH#p!H^Fx&RtQ0JJ`ecT{EV)wqu7oWFG#7pAI>?sP zXV<}%BV>xc!r0$;8FxfBcTQlLUJ)3YQU&tDTx=rn&~V#!<-t=J({gz*%x(1$CU;Wa z>Ny#^$m$=dJI{GoEUmAMVYDDq?p(8Y3UGsdyhWu=pZ8BOM3G{XFIsiS{X2&E2=jR7 z@5J_(7K9R6+Aw+s;#+b=`-*L!s&9=o$Jw&X8_Pfm2)M{Gl{PX9_Hw|@8m})k1YP+M z;#fa=Y?^#)M>23n8%R%Bb)-}*(i3RJj5+7X%J)Snm{pesEGXNXQnk;`AlArg*S~P# z`&Eg80Xe0^u)zjeiWc9@^nKkI6-Qf(nKmTwN~*YJVR-i@O9|4dbcynHs5ph-;tWBb zury96dfBM%P{Bz51d8o_){t@CA}mREbgs6hjP7uT@$7B~!)EYr7^!59W3UEJy7dy2 zT%@~ma02_PI(CRTei}s1%i>d9$7Gz*8bewZYDb^BtT*jHqR4x9tYZ?xuOJW{x39@h z<2cs)o_40QfN^;WrSJz;og1#D7>lNuOukWTXdBTXd&%If=N3*ysWHa4WBF47O?sQ& z^U-hd@m}ew4i|~?(B2!^WN;%;Q>3|JWP)_N5vDXyM6LGEf#09%y50UvFJh)rx$k^p zYB@%3{MSukfkNN`>=-Olj8!>-aNocL{HfhZWtNIq^0Lhk*7+g@4TCY|Alo~N(ATRt zU?77Djeo$Y{}lH*lBGxf+UuXLBjDw_W4yphUyzs3vo(@= z6NuEgU+1Y^rZz3)eSdY%x7)yxR#jC)+8RKrD`Qnj(zdHLC$HwNmziUyn8)Unc60yK zv%oXeU^)lbsXud8bM?&b$o+njIo+S7;sE$1Et|G;zT&LWxIBqceiBAQkqduTa_BS^ zkQI0}Ym`YrA9Umd%HOH_SaeN9i@Z>8)q>>SK7G{*45&v+mSD`<8DsRHip5=PQG6e@ z@|c+>*iSwYw8i-H3}3o_Nh==OMUjPFN%TD!0X;ajUGOO|*=>4!lzB@`7+lsL$p&Wh zkv+tbXGYX?Z4@x9QB+^fS}phM=It!|uiSGlo)q0pNR<_G#zW_?TN4U0e%@b z^mwv#6Y?{Lh+fgGO~7q?n)3X%yw+T``-vdmUk=FAR5Ch+kYDOw7vySe&Z@NGn8)y}6H6N_!?}!vIC@Y_v&ZisFZPU>}?9H&1 zCBc+p2yVxby4NIsF(68YuEKB`#^r@9%xib@%)o@NkyBsHDNAsB71k-#P|#_}>1u=Q zITksL2ug_=6MQva3@^FW2uRaQmlO&;weR0;1V8LCOqFJyc#IeN5*vRnAh?#HsgfkKX^2<*P|TF!H|;nu~M z9c#*N8F7mRZ$su_+elAHh`~@jL`Bt+LixZCT~0p9U@&`U}8{)KKQl5i%(G8!(E}sKlMvFOz8; zSSeE>Wleh2plx1%>Ev7X?Hs!Xn*QAwqiB-1YU;+Sa!V*{RtcDC;DP-~y=$WOvC*2S zhvw&dmR_89*aiAqS~9;%bG>;)plC|@Gq}(w&#}N>KFSiDG<}mKz8^63ZJ>))+^XHo z{pnP9JgKKP+-&CzKBFx})pg&(C*HC_uc{@BO&)%>T>)^$0nf121sRDKR-Mvk3@Q}+ z4F$D#UNzs5r=CZ0*CrF|zWY2>cJp{x62bK5pM=tA!}IY|OM-igVOhZW;IP|2c7K6k80CDTGhl`s(b@CqJ>gTMT*QR^Z#cMW$14cBJpe55A{PQrCfT zxz5|K8R#v0pGPh5qG8Rs(ZO=GT7&+EG?w=LU+LBneP?T}LZEJ-94dPb@K|XrMD=X0 z3guWfRy3D+e^t~_GcWcaJ=#T>6gaF8q>rEv+cuxA^DabnWH#;r!9^FP28u7L0}%19 zGK=D;<))B(RC~QJ*JU#cnlN#e2@gc^X=sOAoL-n41iRN9@;=qz{>NC8GSoxbq=Y~* ze+lj##z_lxIt7jyCF+mp`)`!DnBDCr1j&%vcD>ncHLp@FUGr{(Iqx}R=MzCBc^I1D zxmrQtLJmgAxy0yI(oaOmp-NV()B0oT+aTWt!aX2b@p|Fh!|TUd2Q}BQ^rCt%5?9RK zZTIya4x{m1K*o@$`5$N{2)%e}9K~sJterqqjJIU}9bX&!`A+*xia5ZC&l1JIbib@q! zYmiTQ2=y0R`|L!RgAEm+LTw}vJJqY0q7V`y_A3i)(Q)kysq z$~TL*Za%g?+NP$Ndp5;oB*m8xj7Vt7#_dZ?;;)ixSYhHjL$Vh8eKRqd% zU|&jHrjn5zb9`F2*q`;o=vH9zLMs~oOVS<^u|7$NIOoT=>#%^b*{u>YTm?dk}T(c z$jYlMUtmsuiSD2ZRg0(@A-{Et$&hVA@75g()3h{G9#bAsHX9{tS3zb0FZ&g1=DcR{ zCIrN%wqaSHf_5PW!EE|OH^*N6wD5Ccq-dC%=SNlE;@BCR`w@}6vDAA50E~n?-SIz= zdhg4ZxyrP^Kdj`+7KQ=^!UZ=wb?kk&tO>dX17l81%dNj}YK}bdk3a>3NSoVrLp@Ge z-@47KHKj2<#*h+-^rbjR?LtsC*)W-6)PsaRq^c{{hmF+HXr%sUUM)K9Tw=F?zImKn z*)lZzR))m+Z7uePR$hZwEW_U>@?}t8CFC6XX<8FuZrhQ5<}!bE({L?)07 zb$Axj$X9c2tAG<6#L-n;<-I8?1`tbTx;Gp2N&XOA^0#2wJdkFSppiI(m6#0vz}G3E zS zLc~1$7sJN8ebZ$r^h>|VdLLWJHt~ReYY;MSOH*Xsu64I@h2=_0d6Qa;?O!6uh=2?+ z*bqbfetPWsG_(U@5g}0ayP!=lxs}uL4U5{GkD6eqR{cb?=pTZN;<<#w&2ERfwhL4R z7H@xHQ5caqxc~Z}fQ4M+xOdcJ`0K6Y?}oSJN{=%e1<3^nhc3N8rL-rz6heXJtmR9` zp)}3I&lVQOMZ}s!W3f*Ucgxi&SfAmM=c1xwh1z7tFb+!ckyfCK6>-H5i(T?D*)D39 zKO`7-d|;*cYacT!P(woT-)@k2N>{0YR!Qb&9 zWBqccY4QjU%65*d9m1m2)TPfHe?a=#i!bqdJr=Y6_K#bDV`Wxj8vmA79*^Ew6C>Bi z0!y)0u?aW7u>f5`L`#A2Iht?hyfNIA`u9fLvy+gp%n<;#x{?q6Sj@h0L_-_KG!5KjQ&3wDldFRT*X5?fH zl2U>&#+_Kd$s=XjM(PH{sc5p*YDYFr{uo2A^VAA@_k2ZhZ(weaq~r1oFVIXs5qv|K z77WSHb`b%8L9M&&A_PjwxijIei#v4ZcLl-sQfN?|_7qNLTQ6dR&xLQ@-HT}uCQ}FIk z-;gO(@RM@CG|xvk*;&ILcnbP9balmcwK22ZlQ)K9Cf%si=qk*yqsh%N6lE;I{62rp zW9~;rdPlV2!$0+Oi14PS^vq+|B?Zde*IycRzHLotUoc#((uV>JcrkkvY_Hij@8 zs@$el;CyshbM5zxY);_DPZ&uj`MdQCa7PTfV|{ToJ}U&atJV#hS)yHtbVk}C&P^$A z*xW?z#zmBwf`3sL?XKJb3`NqipsbuOf_ttiC> zh+nlY*vQB#EUk1( znup%@r4O)Pc-&Sg-{BU~qzHqK9BKYNbU9t#s$gl^- z?Nx7ohqpg*-BiDuxn^r$m?AZ($*9U4TPI~6X)svC;X+)Ytz~Z*j{ag@BkEyzKX*ag z%#=}Eyoa`_GIZZhlKAx7$2^-8%-Ndte1b^W&dPuCN?{HpG|kW#Xv|87s2lnhzfhXJwhBw>BNxlDj1$7=o# zeBKTbQ)lz&VV2q}a#XOYuFAC{Q@iqYNIY%+yAs##a+Bh2uKJoc@2pW!+p1pjeLB*BcO#Gqs!5Sj~m2oshIF~xmdc$ zH*1BL5@Al9mxcP5-7Gck%PxejB2ZN4UoYlK6@3o+CKjE~*;^U@Q^M|zI4}A1O2+@~3EH!2jbH#yaARtv8c)eSo!jQXUdAt3Mcq^Yw z_R;jw{WurSoet01R%>$R3+V)8JZ6QC?yAHJc}Riy`C_wq^^>EF%d5zpIu#k$c1a7{ zi$*-ivpO*-RNw#DSZp~u&(5!5MJV>U5lN|~ro@gOGAaDcOCnfjd)`Zwk_rRcm?C>Z zJylH;IkZ*sa$EJ7U_-eCP7RB#uJOiOR0(ETYJeNKJv2Y?f5%ik58TRgwvrWR4s_rd z$@|HKVX4se#X4NglE`{%kVgX1EZe6Hx1S5_nDP*wp4z%!u@p_ zX1rJ@8w{8j3j#**KID8VB=nw_PW=A5xuWN--w14I7R{QHV<(E|SlzMVRcVu`P{Tsd zBKMNIR0P#dm)ivMV)QJcfxkKYsbgaE6-SF_O%kW&M;JbCO@flMTSx+C8O^MBCNcEU zcY^2AVnF=j3FKLO8=OflHssU8%hq#_-Gp5E8y8Jk!*k{?F&4@YYFp?PLX4qKC?Hv>+NMxVO)+S2p?ohHWUVaQPvJVhzi-x!I2e-Qxq03L5UpTxX~)42c+WkL06imj~-;CMi3mUc_;^Y^|gcsC1o; zcYEQE==X)qX?}Qww+&8KycWIGnELLb@!?K$U=5g@0DGX0+B68F-0pq4NE`_4-)j!O zE%#btVs{sm!jZIf6R{v#l1i|95yk~oo<6qX3W6I9F0(jXv)!Lhx@Wmoc#nZVaTK-N ze7u|DVEEpi-wqT@Ef{@V^lb49upgb@O}HV)gH{!QH-w*im>qVxlGlAVBG{Ob@CXII z5y?7&(w(>K+(;=47&O1z4{!iuZk*T@Z3OS%;OAq@lER=7ZoxIx^c%PD=j2)2nFFMh zbD45&R-7P*VXq>Kbfl~S7+BPia6Bwd1XxHyw%EHtg+7J>C`YQpv;>7KcAtO{bBVo- zII3q;#<7^Wqg;4?RJC{oOAR&sg`gMx{YY_kg(H2N&%_c43nfgRcc@9P2c9DD+Eha2w*-}NkbZt4-KX1S5=S>&d9joM#BuI@T|EzS zV!g+)(Q3!L7LfTZ`4!dFwa4S(*`F~M`ZdyO-!g&locz;OV3bQ84!LH}a+(L-Y^`!p zU1^@!btczc`;fywX!rL6BKRIYO6-?W62-K=is30T;Q^<87L{XdvF8_#8fk3K_fPiY z4K+1-nA}nrQY!mqhduC_8r@{OPy<*1QWaf==$n{ZwKAWqADm4YiF*t+j0gO}Uf!e8 z%p$82;UfA4YlUPBj-=K+C!jQq5laIYCX2Qa?!_WsEtv!>G@h)&lX9DSFo}?hOFUp< zH?S5ma3s;!aMi!L0$X5TL06lEZvT!-E_o*LLEZco@b$h)8LMEiw!$MJX{OZ{6+p%I z&g9(aa)$0gy1%A6#jT$=h+H(W%iRB_xD=)3&};@);(X@K)RLSQY`JU31~z|mK5GGQ zKc9g{9++Wj8LjVbg`-?X#>aKm>M(scEvlsqRpkq*fY~V7V&+ycXa-#HZ)@#){b_oN z*Sb^LrvDUCu9C}LnKJ&;T@v@Ow7>T`!Oo$mEhQOs)j508vJ}`><9$nZsXZM)mvm3GA z29@w-75>o7r&^p$BK4yl=FRKke=(6@FBN?cxz?05zDgaqp~sM0Bg4f`Ql9LI2`STh znq(i&$Nd0zPug7NFy8h7rJbi%xJ01F?e&!XHBxG+*jmm60fN!fSHmKnmKa+8kv8L- zZM9tX9JxsDPe${Ipq{yV!&`u4LjEO!T>%V=GvDNW6$#lqdq|0MIprTKgZyG)W+1qU6&N1-vzBEyOh;8JXfEmi-E zR7a>MmE|}x@1(3a6BC7l7U78RB{a6(-^51n1d`ESV&YbI*E+jOo`61eY?^XEJ40o6 z+Eq-Wnac^5_N;rliut}0!Fx)l*!njyZI~gwyvA38Ea0WTlHJWF{T|>C8!L5(^(Usv zUNW@slWwi@mYR5iCxLrzoR$i*Sqfoc-$V_P{wZ2uvVA(THq!7P$Xo!5Ci1uq8`QZ{ zb9A{Hb5Yo94rQ>`fnv2-$+rQpj{hHtxq$IsCM_L!Bb1OUx;b!k5oI` z%_u39O!Ua91)?6Ru`#f(n2Mick^fZ=QXMVzna196T51b;=KAq&<(9mwsJoP!gr zJ`7K28W}^(oZHeQ@mNtRFXhTjuDrhlau4sIHHzG)`ixVjR)A=>FNr&$?aLhHU7l31mnM*f zwtvnd)m-`)^QvLl{1)xJ^o=-yw)#CvReVv2*K!Y5+>_gEV&1V%euR?@u!IjNlOK3Mthk{_Myr^o z=*x?pZn{iFIF6l#v8MLVcekI2mUlYX-`6I^guoZ0ziJ-0A~lX|71U9(52UoL-|1Js z-X4(3Q@So<&Dm0YO0gIBCXfm_Dox6FE&5R@A2-y@%5-}!p(7G|JS3r0p<*#gE#OU9rBM#T5 z_c{p7fLZKyhh+Z&R?d!0vuz>V_{1rlmaN?7s>B)r z@>H2X=}UL@o|HAGFkWw_5u09tC?gxw_}0FpO9@<~87oIpW?1p$^ZRhzpUKeJRou^wCZ4U1perlGcJ@bIXFukppc5Hf@pdgl^6x{-OPg(tO}j`5YWy)VL79 zyg%uXQnrKnHnf$iyeDFH^9S*QBo`ZX7kEG9B^BKH4^%Ig;9Ve3J_%so7{{C`wHuYd zZ&zI*tJk`fG%8s;@CTpPCs^Wg2HJmPA)hhFbK_$r(3E>jhqkN#Jp(GXFWYdT8 zGAN9=RD$G6#)Z1Y*HY~a#WHqUKqC{MpNoI@-`~8&1Y7%)M6Y69M_dCnE*Y=pl1*-5 z$VNMlp&oxEI+v;$Qjy^uN05i=J1Mco0{X?%TbD+*m*DKPBSXP8nHWxPVXZT;NtmH9 zTGs!zslj-6*RxtzfClj{3`*B^ zq-%zpQ)akq`Da;N66Np3AER?4s^-Eivf29alzFS#Hz7%X)H84K3F$qe5)Oe?Rf1a| z$Xu#xCN5J<71x^Cyl?^%5#Oe!iLQw{g^s#^D!zQRF;T;N%c)5`{7X}!ugg?yF7@a^ zuGB6zN`3l8%Ok$QDoN|LM&`l-4m4=ZldcGPdT8yc`o3Hy@%SquoG&MHeni%6Gx)@M z@#X8L4*KZAKZmdczRA~XE`HG?${ZrU0)Vj-`m^xR4IN_*Z~=eG1&YdTb0`0DggVm0 znAjBcIxj|-Mxovc5P>&QY4%w6K%0UPpeO#nk-@iv-X!P)*A$*}$w#%s{OT-x50X7~ zzp7mF=T?Iok)bGJ39IUnEjppy4b|Hw80Pw7Ug5cG+|))$d-KhQw`4)y%cokzh_TX)f4_G3@>~C^tsL%nm^xZE()w(Hb6AaHOg2{d5 zP?z7qy$F=xtCKnMXpvT0KF33Xm5!q6un46`Ey+-(!^24Njh9XTbk_2$oc7^rm00T6 zd$#=VP{q%*VCCLX5<62nd6w_FM`*S&UHQ4n-{;+zL1oB5qEyg{<(c-TKNFVvK_!~X zc71x;KE91M?>q=w{ekO&R02&r6W;J z62qmiEB-=I{li3NZ<37b`AE!T$L$kH*sueve|rwhMT4$9HLQLdH zt6>OA;eW2sDm$s+tC(f0uf#<2TN^NM&NXb_H(_v==b6oCzCOG|EYi;-3sqW)RAIPk zwxwgmytoHml#Oh2iS$2ob#XXa?|o#hI0WNmVcWt?bhXaEZA>0!GF$jF!C9Z@^wzL8 zJT=rRg;zJK*HzBF|okU(M>8Xw>DgKXr5h-J)L8ZC9k?X_~?* zRA(^@z#us{;|!#$6RR7?ZaRuRfj3CbtVkA97yl0Z2a(p|(3w`0oHh~P`psXF%R5Oi zfkrn@B%7m)iOP^hMvu^jq*$BY=?22z7Pko|7Y-d!a7>fo{{fDcXJ_Wl%TdfQEdrR9>Ulnt0RU zfbIwhZvoypz);cB;*r2uzyO?5vWGRDQukMzeBcZ8dx!{*6>|s226r}sqkDx_3j5mz z)SXj!H1L66cYCtF{Zi#FcD=o9Lxug}O|Zt^_miVAVnQj$w588e~MsFqdY zOZU;;EdaU?lxlFdj^t<3^5g8NQs@Bk?qDHVsQR6{xLAc}!F7i)JK5c8hqn~6d8l#n zbYkx#RecL(w}e|;JRVZG5`J@Hm0QNCZdI^$b5WFn;WpQg4iS5C((t=k3Au1oLxBv{ z9AY=yD0tGLUj_z%KC#+&RUDrbx$V(<7|FB=INz$bno;EUo`@6|uLU4Bg>r}!Bbmmb z34|>@L6H9w8+~L_Hmk|QL#GGy5vVD#KiFBVnC4r1Hv_^GuR~$HTEmL4fp9&oZd1%b z+ZN}{aiS=ba2#)FsIztkNrOH&Q~nH+(s5U;ApRw7JIBTpCAz==A?9sIS(uaR#FY7- zx=(`nx|U63L=$ZiJ34ndO<1A33_MUe(KR`vZOqVc*KeNc(Qc!xPb@Kr_Ve#WFQ&j%_3DQMWL`ruNV&jpx$!Y!fbUdnOj$~-5IYFa|p?%I? zAcZK(c=e32aV8v_W2s2#(YW6H1RHn0Z1c5S(E7oL|3Lcj+8F^aQoMIiL0OVFiA{n) zi(i`T07eq6jyL)1<(~_8{tr|#XRUT*TB$u=TEV8l1E6P(#rAC>2Q!%2QB6EKN!PU% z>Ca+AU9!jnD@KAKSwxu8<{=dPE>eP1dqSn2qgGW5HkB$&nN8KYf1u+#JH*IzDy6%|o z!~>F>s(u_!{=`;FY%9%d34`XU? zNYBZ{MpOIescR>8c}3eU<^(P|F(y-CcZz(`OyWE4yL^Tjb+se@A`9tPbm+nP(8k)v z7dw4Wn$Dpn=L^GZW>aCZ6r!5bhh8Mt&TZR0s>8Jhu#O8g`iVPi_uN#_p@c6BZC4HvU*B>2)lrik| zd^b7lw0OC5=mb7@x#UkhT4rs>hkn3YFO_vvyI543H<~-0;QbG`zB-;JZn(}>eg8@? zm@TB6;}%QG(4bErG`&?uLUiTVDpYtvLNWcs7B_^>8c=_Z15JGyUj18Cw&o|rb3g8O zK*HfzHMH+_Ze#ZFigEhHY6G`Pu!}K-In6ztjO6Kq!d4gk7n4Za#M_WzV z4tNT|wo&GUG5Xb)KD^W-d)a30AI5ZG`IK%yZc7(EQ=omWN=zswHIl;w4Qtc{ z(tIE~CPtt@zjw3moe;}8GoJK4ReDA#G^}8 zOD$G3P#YhrtJj+|+l04q5!8vYU$$o){GRh(q{sNXs9)B`=nKcIqA+Qa3-Ha)m$UtqO8W_EwcjG84&f{Ap)OtK`rwx~?{a}4r*hln zUL_qhmQJx!mEU&q#XPex$2q#G41N2@1s+s#1kZ^; zjpOKD_&$%m{0i&;?6{odO3wM>A;8tePIf+#=|KIs4t!I85*reTEc#~sf4y3?N!cc6#{G?)*%ttIz zDEE`(Jv?AM@upVP#Bxmfb@J@yzRC=&>q=q+(Hg3Q)kWS9joom@#Dp5Ann$9voBpYV z5yX6U<3i`i)MBdzh*f0n7{BA`F`?-+_nmF`{b4C7ob3VNya71;Sf#T@okkd74-wN4 z#2>>~-(25N1E(y7IQ(Xc8$6(kH5bYjXq^*Kdv4w~;1~7U&`aK>xO|Hcwmi4yxk*<- zuLY64tGrRv_#XXscOvCM`c6uP>#$A4ZudB6j;T>YXba*xQx14|8ByOBjPo6jtQ&r< zxP)*)H28z_0vIQi5)2bxEDe6uI(BTa(HkIsH60khvAk>+yKrhsUHc;V7-=uM-9Vie zU82z`vtY9@dH2}5&6x+8TpyKuJN^Xr7iV-Y{)QMv#|T>*{2!>#J+oa3+@?8iyt*yT z+g~+wYQG7v?6+}pDqRgYZeYqnRe}c(u*tlgpFe{>s{CG;5;NXq7;4BsAD<>-HR@WZ zSw_q=NrAd_>D1de01>c0DCM$ktqzu!vVB0RZ$L-HFxP)-mW<)CFO+1B4>!CvhwiEF zyBf$d@c`Cg=~ML+KU-HOc>G(y<;6o_YUMGj(m-Q9JfxJ-bGtrXoRw(6(Ez&pTm z59{EB{rDIPZ2$xG@mCLMvV6K?)owp@rWOqkgYQvA)=hs+ru(>;@Jdi*6k2HM+#rJy=r{0@f31nirb<%GgZKC zTZZ~^jDr(djCIn@4T;RlnJ-&BDVkLdQRfb*486{tIiG}8957-lU)>(3py!o~efW9g z*S6OD3dK61FsRFwN=EIa>*7r{SJgM+)l?$WI&#gq?j|>(DtG5fd(dNwF0IZ z`vF%nW|;q_=?6^1FX&{p9%n+IteJL8uf1hqhfN(6vAs7y=Ex3X+8;>R-aK`eJ#9i1 zM%*T6LZJTOpgM3*^q9k~DD^7kz%&_{?;uXL5}~l0fONCue4{kKUK^#my{JITYz+NJ z?J1%Acjf8*91+4=ux4>`QZ_97?%jkO|6#_I`+i=_dt(Khb^y1h%FiG}%5x`C3s>$s zs9QLG47XePdt|OrV`Hv8q3BBThgMaj^$?DZ4RvbJnl&4sV0d-CeK+9LMzeF?i*?Un zu`&x0K`qty=$+bD9WO^OEViKjl1{E?WCcFj1e^@EtMm0i-D=pi(UtHIr>Tbe?)+es5j1d_zdpI-FO3wgkzq35;FsAY?x2yR(|dQDd}v*Ax{OTNHJiq#Fo z4P^s5bgf?wN>(h5!Re^wQR6|fW5@DHW*w4S_Ns-wK~djVpXXPBSNTH$|BXV1Ehw4D>_bGceR`*Ii-5|crVFwFi^7mqAtJ^TeG`H8use*5n@ z@3NBRNCLlWzTXplqnM}GXKcir8MIv9m-YO@bFhDjm#t6eOcu>!{^nZxmi%=tt8K`GwQM7)muQGG{3nGBHoq_0Ay-!r6HX3Dv_ii+jDR05*HlGns3={ z)+N5R`|t*}A5R%B(yGPrRh|6vr~IeTIqOFr5_E=v%^?K7Lo3}s+02Y?jW_pfbbMes zGIgJfU|E=mTeo9JN}lc3kX3tAiwERvlF@#c?c`?2hnZlMvazUD=2YQgaxfC6s$K|6 zya($zbtD<)6S*c%2RHH15J>u}LPD~8Le-KfYoVdf1JFNnP?v>lDYyly(mA_KHg86% zQ2o?Cn5qJfhM{CaNuO0dlpM`4F3#YfmDh_SyDq`Ql_HcxNCr#O#lv8_lkHlbgDYG=5gt1nzD@5p z$O#l1^X8?4szTV=JH1dlvy!Vlr&R(zA!* z*c!;pJ2M1@g)dK|Y?0v%hMGo;Wa(~ZKQ3_DnKe7G>qB4LqI2*4gltm^N94M5I)N0cG*b-1u z@59jRhyrRl{CsHqy1aBU*6%@Jj+B+n8#!WOg5giN7AS^z$0B*w&p~YvmjD)6_S|bF zHO`w(=##qna_P48g*&!ZfBiyg?0QxTc`nTix$)B=RqZKu(f*5E;ysSC-)H8|1vAex z_53kySJ8QvBc0Y4oS44p5-g9|ZX)>Os`THrtOG}im-9~@(68?BvAUX><(`S(-Ra|( zA2kZC+^-zTI!7v7DIE?FJTG$-PVGM#^W{HLr@Q`JZT^G+UF%k$g}VyLT;+$Fc*K|` z8%#FCAJkM&)|A*AprK81Ox4MYH6y|4?Vmh~5Sx34u{kNeiw5|0qY~G`yn~wr$H-wE zG(uOmCle@! z-e})Y;-iY;3)F1bYpYrF_d~kLQ;hsIVrJ3#_N5IQ-avfmAuB1njRxRY^#h}KABO^# zvS0pWnt6``(sus|#9KeYhwwr?ko-15Q^|Q`+FuP>*SDN+n}r@5rB$NoGL;+jo7&qH zt-rcnqn~M@1RKdt^8O1-~kV8Ua0ZRA*zqzGjpj9Eu!4g%lFQO zUt>-U2J1#!+H)eJcozW zo{Mv&0!2L#mEE|X{|fsG=`8CfbJLiQ@nLdIz*}zpxBWWcd${dV!9GHFA%)pq-u2!c zEHqHr?R^?SRW#YLGYHb_a%jO?CMgY#jh?~N!+@Tf3ZzW zbl;_DxlPQYu8Y4y-XGHBB5WL{5u_JPUd6f+kDI|~P+&9c{%?N8sK>{8J-WrpN+Pkf zP{+X-_Zok$JS*7mO10ALt*H>NsWPBE;}Q^0^lc z!&=1+2=59z*mcRedYYDIn(~QFy$YhEyj#h3QX0vB7Yu3%bv-@IBl*C|K8-bO6kr?1 zKZyem<3g&h?ClbP1<8|TtO>=HpdtCC*aE^z$l}n3ANG(=!)UKWJ(_iIH-+gvF3)*$ zo1iPYyF_qz?Ymu?&FpX~@jzVyUx`ir4%k6m9Du}7+<{j}5RN-mDoyDJO#br)`cGg^ zXVnPFGqjS`+YjuYVojOKEUQ6XUjtI!xy+30}hofJ|`Xx=xqh3L+6SDM6M;;Bc6=gfyUA?CoobVxeQWzvm5X5(~A@kO*7g2z zW3|_(kR2^8CEzR$WjsK4|EzY*J|s{CT{~Juz31m5nNm2x-1aUxM~4X?IRCS)mS{DeLuc?T4@;my&}Qqz3t) zp4>H7+7OcIvACBWT_OySjjG^jJvb!2(K}E1qSg8V9$6#CwqbZ(kh8_g1U#IqfYjC2 zCv1eiM|O?NqDD5<;Z^Af2VtmDNMA89PBkrhr%iO6{F6Vm*a)yg9|4U9RIO#Rlam0| zEygG(w-V6DPrbAzxRRz{keqFPr{Hf*DQf?LQqW$B-OB+G9w&~=w)yCtK*tA4_W-#j%^EoEez4mblY3`s7M;_OZ9r z3c^zS)`({To>fK%4~ZeFWmvE;hxI;Tp}+bPBQrPdL&jG_eX}cP^YkxLXa^QDb?&ZD z<}+1i-;}&`I8iCTf!7tuWU8jdDfA6j*#){IbDE0#!yt>;cB{*g(j{6=aP8)2P8mUd zH-EStdFeJ{H2vKHyR;+)tHk*(W`f#nnD*MXK67F%VnEU6IxjoqFmt<5g5+EeW$sqx-$R=P%3mQ!F(7^BKV7H9u^jq=x^lrcCxqL3dOzXpiIL-Yj704yF z?f{4Q52R$g5Rg!*Py-|qifw9)Q@OE)B`U1G02lllhhLnt>zx+O(Z7g~>F;Y*&(X!b z|F(()gL^B!poL2$SV>LP;Gb$c+}Nm8z)d{l^D6b0SG zOYr``AjYo_N3NiiEarV6%N&-Gwh z6rxZ`9v97Nyz_Z6X&Zcklo4r$UFo`w-Ol15&pl~*^8OG@9jy}@HIZ*36iSqFyw0I~ z__8y{0*~3mBr3eF3$Y6)ABoVFc+&Kfn4n1rbPn{_cG+M-QY)HxF`+-bnx}&>Nsew- z(`98VTmSfbqH7YyJKsPc;r@%`I}fv*M9D<~u`n>`lQY%{-#s2K8$)DS52Kxz0m?Cu zet-x6KaS4BpRNDx!?8Ef+I!a?wQ7s4lo+u`wbb6!-kTa#t0*x_#7@l=Evoj23RP7_ z#jM(!?{j|7KM;9I&dK@Q_xpWa%6&IE8ZSBDTB~$7mNjQR#`jm$z{|K^CQ#{~#0++A zGaJ3!coyFo@t9byQ%R8MdSIS1kSdYcZy&SQNu{bqbE2 z)$@Hir%Xaf-n}d84&4m0Ut{Ap>UTJd{^#f-$l$AoQ41pU+sMNAAFiDIjtV`6H|Cth zfAZ2sduB8qO!n_IyiiKuy+r+N!JOJHEfg@SuflEE?8Ib@k81lubU5Fd%g+UB@$0K; zylZFSPm#H2VV$2)nOZNTlE!Mnp zn*&p+W}mU_0y5YAim?4Qq$;nUYO0!?`oBYwcL%YgMR~(~;bn?Kig1877Uc6-XQw0r z&al`EoNaN5$NVOe;_(C*p8`Expb%H^_03Kkh5o9?U_f)qxPE_)x_bWC*v;CBqmGWFyH(NyQVl zcuC_MtHP_QxSsD9UDtg>Ed((`I~;@1KprnHA4)77zltweMg6#XgLVoDpdz(`8e154C!c;`B=TC; zETPve1eygC4fiSLr}&7{FSt_w*OQ8NV?eIXF);YQm(TtS{k@AdawnG+!RY(%HLxnK zLh^qyZ~~rZG;018@>k`K{=K`p(ksO52VN!7@=-%!k=ZlR#15pcV~{J1gP1M5-jd^Q+*9lqDOeZS}{MMw_H-d~9E(+npV9s2!K<>gfuUJsK z^F{z{fb`gA^nR_V3qP&jN}3m6npE zLvk&Ilth5F{?Eyzvee+0#%J~xi&x0c#Bxf=adF9OVX^X6jUXaNm`-_l<>;|*kI3Yl zs;2^!ZBY^V*EML+ScaK}V9|7jy*-iERku9t+?+!8av%drHTUP5D`&w%mRxnaLo&6A zO%}qYm~ccNcCJmN6O(wEF*kzpc6x}XzJ50o7m|Ndhb^}B0#%Ml96aJh@C=} z2i_8P-057sS@~&)K|XEFYw$=;M{ipy}YTC9^_~$Lvt0 zE)VM1jaw~tdG>X~nI*2)xg>fz)HE7(&=QjRaUwn?7>}|yCqEMh>};F|4e;|Bm>}me~dcY?? zu7izIJ?fCkv-*=|ixnD-Gr>nPbG1PMs3tLupfw@>i}{SkxxhmzIgz*0hb-+o@t5WL zKgNU7?Z@RT1PQw(&?^I!Se}D~Cph`)C`RG9`Rk^{8@2mVJ>oFAiWx{GYKu%(ZL>V&X)NyA$$s2NPTk62qPpa`18mly8YWu6 z!T|fsxKcU#yiD&NiP(M{8Q%NnzKN)9J-_}_G&!%-IC+}59!&>0tfxEQE%2?96Ky=< zVp6BcO_NsphF8JNf1vuLu}YBtM%I?X0!)2l3AI_eS0OQ7+`!`Cm1PfOZzX?ZK{++r zxsDu{e*_`k(to`J_kL}23=8vdFWrZ;75Xp|H*pEPKKccnC)zyVqK;<#!C0TNDtsKX z^N2BNt7_11o9i2n-cFHse6>gUa;GJS6n*whuUe8ScRa*B?x@S`n<>2iXqPFeWn%7A zjfI`lnGN3FdK1*)X-8NE(Z+d3BA8E=G)U?`>oTGIMQ=-w!^4hhQ_`j2T|}|NS;T5& zlh_ON%{LTfxJGQZO`p-shhXg$jIJfnSv}K>(3Jr{baaUdG5C3$NI&jC7hs48PV9KS zjHj=a5~|KBhOw@0u%~sHVl|hP7xL=F1pJ0s=4V{`p$o=8?btwVc(wgeQodcBLIfD(7FUn+5S$Y7mENeuDf}X?Jxpv}mso31` z(``3AQiA3~ZC=3q!)$31$t>a&&S1jX=n>u=Klax z%KF>`dFYbKemqAM{o5ZqtoyGx7wP0xJvWTCoo!4<@FlpJqFsPP{u(!Nzr@kmKp`zg z@%D}7Cnc_gXUz^f&qki_#HWO^z2pA%5|{f2JBNzZmV8! z4E0{yhL)Co=N01pxG)_Fmq+g>(u&Ns$R;~gcJp}aQ+qu{1)p(KDR;3BD1ii)1rG?F z{b=Os{|_VzY_^~>YTCl$6sFUQAdpQss=7s7VJ~ateaBUuBEU+l{{K&I@TU3HFr{wY zVcbx697C8~8e+YHaa(%VA@WFS5-hrSTW9v@=%bSvPSxkoxp8HK0VTp`SQa^ByW*Vk z;TFmS3(EF@K)apxsizdNu~~Th6Vhb#NP$LcVj{Nsyfpt}&MV zQ@73c@El*^*0MZ%uw4FsgyD6Q+$F`qM+FosdsTlju=&K-bG^9T zoUDAHs_AQKOP2nNR_m8ndo7-%UcvEUXF8r)5#rBN@ydf|V1?10nig_*=0HS0G8JR& z^HSS8xsJ*QEy!E}#l1Ovp+WdUaZ%Iz6ThYR>9Vfc072)*-1N|GJ(bU6iWYvNPvZ~R zUN<&@DSAArT!=i~Pl3mOPt~1Vyqi2cB~O&H2vw(2m3-9+qU*`7D(4luR4#OK^o)! z1wB_|P%*!^{AQK&EyNwKc?HE9b!XlmjfmI`!Z$uDH~8QBDdyX#`U^!3a!$1$?`-u^ zeZNM5_T`@h<(YVkkNcT@+{899{Nh$8mIq$-v+HBmnP7<1znZb1(#A@>^z0(3vHqq)Dk{K3 z8bV-o2YdCkp38XI_Y)Ro=`VSnAsFpO4T}rg4R$^0?}toC7Ld5;9MQ8olAHb+UWKsT z(fdgz9b+x1_G9OvnOQq0%?@XzL3=Q_?@KOH9WOQ1Kl;S8+_a5e z=%QC0=|_L<_Q)}1&wu&a7hvoD}?<|gmb zWykg13dgJnwphuxmg&6SuN;lUAas_2;Re}%Ao{R}g*^f0<--uZu9h?P2mh9>16P6q z?B6Y+h+UV-uB-n8kx9m1eZpvV>S@04LENeW&ky+?F-sk$e7DdrNX{1c*G>k4dL?KY zh4*PA*B`?!(X#1GoKj%HV&8|9VFpAj*BYc&Y<-=%zRv7S90=P;zxC7C#DwO9+tyL56ckkZ%PP)^pXR<+fc_9UtUO2tNl ztXBCqs-JQq$s*qKLnX2Q9=~s{c9Jt7<@Zi4T(#xWyo6GL%-;^}XDxG&2<*leM|a zX*>)63QG$GKv+6_k2+=jo);&J^V_~sLzDTwokG3G6n)t$b|Si{{Fexf4FA+_^7-en zaM%rN^D6WRdi$JP418-s5YBC!VDy!NHEAtwKbA2y;xYLbc{k`WCHw(NZ|=Hl9*dvu z7@kVrcpPT0e(kEdJ8gms#?=13x;4T@`chCVktWqc|I9e;gPc0vx3bjFX-{u+bZ}!i zgJP$q-^f3f;Ezx)M9pmkbz%&?_Y&0q12v+&l8!_qZs2oXZ)jG}z z5fvGew3kD;E$$Gx6H5#WJir(Osy{h_Xi`XB!O43eMYPo}`eldD;y(>cu$@8mzx;D9 zPx}w_m)!bvBawmZ1FOBo^M^zm20md<4{56HiDP{VOAx1=|Hz3WlK+%bEPu))2ACWc z+gOdICuf@F>!dK&MTGDFM1lsK+ZHOxs-Z=bj9z(u$ zuvxtrHe`6gY#&Q}xz{e@XiI3H;p7e^?MxT#eyYm2w1nvfYv_Eei-J8}FiCjI^Pq$N z+4L)+#U~B1H{b4E*91GCK-@`Sn&IDj^EfO3xXA!XO(7I$+ZuQ(=lsQxl%&xQKA`@f zt-fWJcI@)PLPVne^LiH7IYqB{6yw*`1xp~2BC>U$tgWmrU z$)JxUeI^Q6_%%O>MP{<`-w4!ZEiRn+p>QI>v!MWIzy}l8|i}tm8+MT{IWnhba@WFtRt5sju4pMALtZ z=jbyiB7klEHf6@9+2^y;TI(>sGgGfb9eKX}}igYZog)MF!!zAQ8&fC=~vwN=V1V1+b#HC5R zR+}#PPWkyPyvy_q;dM&&qfFAn2k`JpH9qrTTvbDQvaw84%a<-;$zjH{KiGxR1(>C< zg+pa!)64q&*)pM8({4mvGju&(Tm!Q@6^_gWijj0GoOo z4aw&ZH6uk@#M$Zvnq9J(lk-2NGk;&ybq~t85?;#wjrdnDOxnGZK9k)vZq+#%W_L4L z`gqgcMe(xL-$b!g=f0z?*TgvaWOHi2_hiB*Yz0RY5g*R)VULaM{2p*(5 zwGw#!@_DqI+}=OKk_POTlD9w|pHVKLdsJ{}d*+agk`tyjV(r4h&U|WqNa-FS{!?*C z{4VCDwl7E#eGrT32!P@WnP;jl1V|88UaV(o_4NHrG1pb zyZHub^z;KrbjITE-P#TJ&EP))Q%@Q?pG2EdYUe~fm73puf*XS1cC*RR9v}jJ0iTbY z>Ay*O79nDHOH}jva+#JI+&{dDoX=Qx;JDT7L4hUl!g3L(z=$sD2=QzL0TiM1>>Zd= zcaWQ4HN!@-E3|l$O)aU!0x~#sm@;bcWFvIq_g@hmgRc28hVLST?6$>k`nDOJ9zA(a zsQe9XLx&aJysa=OqmAZIwEQm*WF14tmZUw;|56?xdICI&ic9Z8vA0Z{p z^s+Ktf6!(_&ksS?_Od%3aXhvD0T7P7#A?9Y+m5Arp zZtumu*ayQQYvr@_-JevN=Ur7;J7;1yvFbYMzX6IE?cKJ2BAM-P46YH~}}?my^Tw!N&BeS1h-f!V@X}^-Z~o0vZiW3N7h-H739qj z%@_|@dwokHc-lN#+&1#rM?)8!3&H9pI{|<0{xIbF*=|+mI85cdsK?P0^{Y|8if_MJ zb~4f}ZUA9B(K(ZXV*C~5E|7$BWL|GCnK_=Htrpo02K0L49UbK)j?{00?AHi0R(J3y zKa1b%lyq^Sph;Hy=Rlq3yhwR6TyfEJl0AxX>X?<$UT_U-aMx%e`}ZXpAGl$k*@Z@$ zIM`(tnm}8;)6?ft{#3kV&yik1jRPV}vplz+GVV{KFC36a&bs9K!7p5MdUek0t8pQsZ=@Msm2q+2ct2zH`(1M3T36*g)y&;Quk;pD#JH9>eaB>fYlcIk5^|^cXbD zBaI2};G7U`%`zEvGs@u&A_#m_Wc}<=YNyUCNbmu)p;sViuIzRzed>ER+;3AMdLT|t_8r7 z^H<__nl5u6Ij)=7boXAJeBG)KN7Sb_YY{YK!@E?O4uwLz!C_8n3eCQER9e|WpIm0M z2@E2&_7XOe+$)i(bZK&qy1@4=`3)2sw0a=8n(;URx3IcfSuSgi`lBh)JPhYxx8QH+ zgE?jP?Yug{mCh(O@5ECyYvUzd?sp#y&MArirZzBnHe)b!&~CVNhm>3>71_AnL$=w! zt+=k6TFel3Rj+s&d<9RLc|l*J-&sSaR#Kr+c1d`q7;O*>m|{uTGG;kn{$!crkviiFd7H5oZg8uH8bHL9XR!1o`P$8Z?y)?C z_n4e>6phq9h+EkIFvMl{?5eTlj!{*LH#sPJOL@`6!AO1|bfHI~kH zBaI1n`)w)?vDe1?X(|-8SL9hplPpwHD&8~`yg_JG^43?Qht1s95Du(R~1-zmPqeD*RRehMCcfqs_4YuZui`}Zmze7OW z^a-E%;YyvI!G008krB%D0!8paKayL*bx{LzG4{4cbzYstAVSzatsY^fbY#?A0bvEO z+2=buu~&Ny6dzrPpJqiYa$KM3mu+nvZQ&cZF1!Dc*6uXTXqRX;U-OO1VPj`qG?;E0 z;kq7s2bE2;q1s*+7|WJ+-b#S4X=?cfPvm;<=QE8v0q;hGYu(^X-N%c;x%)J!KI5^V zJV{WY^exxxrV=>yh={aDE(XIQshVncXAKPO$GQ{<3g{`FPsvr)$Vrb6A2!R!Ad|0< z1f9-|@iglSywtEs= z=!78wyycUG4?=bq)ra1@ZKw3_lR+g?*e>#-RtEpEd&n66D;H2vMDz~0uPXncxfs#vET=` z8#+1lPmNO5Zw5$i!bQ7-D<7=5aIs%!|uxzUYgCvg<2d9?_2oCcEMAee?1^ln_ z5X{(KXjuJaf%d8yzflHdJyQ7DrL~J!!neW0e2jrTaQRG$p$`SX5h90LcTJ|<{*U(M za9wz%=6Et354vA<{dDV|54kksRi{Ng-$ z-9$k=ITMa-YTh#YaLMk2EuOc#6gB)VvqCFK1ysB@2G}|CRNeDk#&00I$nY35{awCF z^a-oQ&q8Z%&$m>msEY#=tV+gZjf8VOx*;7gOf^=IC$g3%g$u%RRWMK;8o$glJ!e7z ziRjT+b&cl`SciFj3_ed_UWAAjz(6QJ6lUdCx!3#`Z-go-!3x`+G@dbZR6yCqk|u5X z%%QB`N|CF9Bqn&B{+;hRiq4!0i{*kiuuZUzKzna>IhnC$#67<_q$x;eSi@!C;--Z94H@JLEt=CH*>cB-k z)de1+rOg+9i2rx6aqXp@2E5&s9fkjj=RZFK7NWfM^ z?T=IbsPIlkgqbzZ&SSfF?gzov*po$<)q=FhBa33H7h}!~I;x0L6V2zQdICbnwm2>bvP=*@qy|q=MgP*j6tKCPJ$TNqS|3FUq#N~x! zgc5;Ak;DT>p$E#b=?MhnG{v@%8-&0h`h7dO<1LJF!KKa%H7+OdLd0~wt`DK;*Hx3= z%$#)6rEC)#HwpBeE~$U)fAsT2ruTd&fPR3JLHC+OS(?6Z-MwUcd5&)~v@oOyrqJ02aAwABUd*(^gtZ*-IC zzTsALb)Jii_#R4b^-ZmS7m5!;`zY>1`O2}R%DPq<#c(=#ldm&~-N7|rv7KIb(I?U{ zO9TVyQwK=4o-BJ5M#8U3rJm4%l&eWu8)-MB6~~6jn{Opwrck&fM)HwCDSC(nW?uzK zyKAt0aPUcf*X)iW8(kvTYZVtGk1LlD(h*l~+EO^IJ3g3{Wnk>EoJ8i5akTWczAW@b zt`7eW8!nEsED=A1T;vKwpj|^3{Oh#!cH9JaPzv5Z!C!zB7Lxf;v$) zofK;t@+Y2P)KSGT$=F2&Y-W~GI1o#Ten_moXu)^g2yDiS2%BqHFX%9uOb>90oPtwe zqTRz%8h!`QzVT5Ee!z7_$M(bI33kF83iXDpk0LZEnh^3%yvaK^hXgY+3FNV#-Vwg? zC^N zZZiXZ9Gc+DJvne3E@7NX&EY87GuAr8WT#lQXso02#iL&2i54R@HGg=QvI+Frzod1W z7Qb)3dDafcjyHX~uh)KGCf85jJubescb?Nbw_rf~KT7Nh2)64rlS+E7fqd}W{z69W zivhK@)vDj5)+1?`t?ICt@05XnjaXesz=I>hk}01MdkCAzY4i4%PpUDgijZ!UoBy?| zq6rUi%HW!ldk#=;To{ z_lIgS*7R=xqUt=lqpSTKS|n}o{RlYZr5!B=k-d{1)#sCxNF4ynR^w<~2nwi1)5)2C zz09cK3c%(~kay%EzJ!&q&9EthRntgZ_p17-V}iIPqAeiSnx#ASnWehgWWJ|j09INQ z1_D~>J3An;gPr|G9-XriuAEuyd$%H;G^Tiql?g-hDqsB!uPekJPcFR3a1i zHrqT6_1k0Man9vK>)%8_RSPjU^wae_T3@Syp-9%t$0sFtMDOQG3zAChL-$O|MLHQ$ zF5s%{{??5{HRLCK6Fv19eLo(ZUGW|ZR0o?`4EpQquzQ_xVI3n|nJlM!70;Gy#`=c$ zKWu&~iWw!S4TfD54SVq}-F7>HdU}C9&$#)#Irt6}ta{I9goNdmo{@GuSfY}Er~jJk zr}t%IrtMbEE$dE}O*p)Z38N9Eig1YGHjb&Jc!S#|7y4GPla|QPzqpPi>|C!Z;A9j+ z;Wbct#Yxc1rHNgVaUvd#b6rNw=wmAu>w=| zG0oaMejGYmyiC8w{sXDZ{EL};6?B(laPL-wk@_~oyhoQ8S(+RH&#u+>nf>8aAs>nj zM7B_ljtQ(+yOZH)-ksaUjM#fw`V8Hl^F1ym8AzD;oK+(7^b|;oqcaIu#OWOl&{%s_ z#}PXR*mE=hawF&b3sv31ZTDAA+spJWU@POa@pDwcJ<&9Y`m(G<|L`Xx1t~e6!?cCS z?-b*u|DBq|qGoU_+L8%ukb{DR_&yb%jVNUQQMoLtPo61e2R3OkNlSvPG6z$Rotp0b zRy@oQ?@{H|eVd>Ed}cLKDa1Vb$%3LMA@Me<&u#j^A|ItmEPlPHJUhVg%_Uos7wDe6 zKo9Z1Dur(yt=PSn#S2*}UJD)iOSNe7g@!k`SW)dd*yf(B-H?%PLC~@r6Yqg=BQeS9 z>lAb8FWczshA4VU9N*b8ZE0OXcIBMfCbCEcw*_9wsa+S-i~Lf@7kiUK$}$zA)3a_{ zk9*;J)ld>`Pjr!M_0o*l>lg}Puc$!s-nqDN1d+~Q&Df2^UV;|Z_p1q#<6Rz0J;0HO z^^zUX_ZhqQP<8YIYG>3tyT6+J67n?gQfOr-Hl}?#O;3io)TblbM7dB^h{G6IA-V;1 zljYUy0_1OTc0LNDAp5#%JlYfM-%n`7t~%|d{-N_{snp8qh^v;VHY}cf_4kb|Q15p=|8pTCY|LDLVP>643_N_|(3&mS#*Cvwkt;IC3{lzq8Nd6j; zY5XDH4j#^P zA@tlmF?|j*h+5QB2VDkZjK^J|)3q2*r4O`KXD1V9SzDyl z8rOzpOHaU3CAwSzqRqM5FT5F`(ABf7qP9>kq#|JDov>x)H&bm%>VK_}NLzD*eSWBB z&M7%;$ZM)*_R1&r->nmA%y_jE+55&v63(;r~YK%Dx{b$GXhX#|O{MZ!+isV=#Urjo5WGSA8;+Hy|#UW1R1#t>MO$|Bp6Y2cvXLN-~BNTgnsE914xd&zn;ta+z`#&YbzUhndn?S{b*z&3TKroAZ(=-5<2({o(JM z<*gsWHUMD5G5(^n7T(cxZ=PHM?34k`Ii)8c&Wj#q{o}NQW^mg^O{&Wza(HBPAj}Nt5K6{7F}u%3LfG?eewe(d?aZF(#R@DcCZMayHO1)LA`PXRf_T}-D#rVY zXllo`>SWIl=z)OnpO3RLnF1qP3Lkc#)i52y299E5@Np1Eitn1)VWvn@|AM!MhGAqZ ze6rn5SidYqac8jDBIH*IiS&t0_BTx6D(!}wy`TJEJH0vv$~}Bi$ctzFyjBLpz9+lL zqJkNXkt*GDyr0sFr~2-_ypPHs`{j>{0hzk7x5?W=Gz$y z4IUYZITJH(2IIm^XXlX(Z=wwp&a?qq@wgD_Rt&#KI+b2SThk3S6Yqra6U)bsC^g^O zTTup>)G_4DP?QImlcnnCvltC7(x~nfa>^dniohwl%R0@Fl?D{6hHz?+4pSMW+E09B zL9gIwiqG06F4RNc$e7f9B1HV`?{@j31}f#%UtA4DRE_bFdS#Q^Ri+#}Z)3n+o0Iso zeWS^Sj(f56-9;Ru7v@oyl|(r;0nNW5%t_Y>dlZ7x@d+_7z5aipFjMOjAV9EJ&$dc3{)R=;&%~k3&FKjPGL!`6^7WP6V^9dwUv5w7#;9|qLztM?MrtXPzvIy+?vh%ki?R8 za#SAN9Xl}73W*N2^}b%z4UOM*ywCJ%C@+`-Q7>wY)R)usk3riCCq(5tjnb)Svfszh zacFDhGgb|lY_2H`e49E6b)+VM!Ok68h)4BY5WzX#?Aq3J7FM)LZw9IhW#T)Kyg9$2 zq^c$?VwW#P^wP%z9V8f6$1m#wc7Kk6*M+Ora)$C8npvO79C8#}@Aq_L-3h%aQ3>A$ ziZx?9SdDhsBVIeDEl=O{`XI1mypbQx@y+&aq;1tu(bvGZzy^j~FB2ziD{0^Zyf z?ImyQ0GR2HUR#{~W5b715mp|?SP8VIjY{tNy&R&1N;rwO?Q_OFQXK*f9=pMsy_XiG z1n5yJ!AFO>LzTGkPjmzZox%N|*aMqhBR!6CG|}f5F$|mICf*BEWAIYZwrh>bz){Zw ziMOj4r{C;(C#<8m?CcQ8%rUd#XeOxU6F#Y$+|@#AiKNPw)jEV*uMkxqz3#Lsam{7? z@!^Hq8W(f$=~C|HuSc_QGV-tlq#@aow>!r)q@{F^mGuuC%j;R0r1+2hGW-wwu%N}LyusI^G(xx6YD*Kl;vLZ_Z2PZQVG({UTp^r+*FM`OC zBx@*~{!U-^tM?a1!xIq_?@rZ;@Fd9HMbry%30tB5fTj`RM1T!}$J)SylcwWW)@mkZ z&`|zVA{wUFXJKZ@rQVF(rC(JNc>bVlU@C94BhC7_ud(cWWto3-M4T28Hj?^&ItdxOsssTC)PvUdl1|r^?)n4 zbpye0Z{b-79=`Rf6hTUAlA+$bm9c>t=xDiM^w=?hP7qxHQoPlQ5Uj7Z*CFAlJs+Ay zq3@Z;$@@yV^l@S)08Ny4SYaNJ*n9@qx7SY1rIK{Tchm$8wvjZotH=lOlzogQ6Abz5 z2e4LT&c3(Ecjiw}CLG+Z?Ju1t;Kvs6{61o1=-_05o&d)v-cxE!;rJFonBZfu^*XtIeAy*?J47yzQ{*N%fezay zTI@p^Dx}j+i^!Pr#j$O(f|7wTVab2Z$!MIWf>55Q9Uo%_{a!1B~cn zrAp9+Je=&9EcojuiZ4VxHC}z$l$WtbqaWkj+&@=$?^X6eDl4u$e5}nzO&G++MRvn< z@Ro}EEU4zbLL-YqVdjx=W7J>Wgod0w4)MMO;x9Kd?ImWC3FRb%-v-;|;vwk2t)T{* z_?U?It===wGY4fcFupdoKJDkD*42!j677dzgCa+zuLqg3m$9lg9guZz$yeoZ)USop zc2V%UQ}Y1G?!i2u=EWiG&fNuje|V~}k-f1qM(Tl}eJ~-5(VZ^RF12U6{1G|w%mt_nIWsk<3RZv0 zYddzZxyXmT*=gpeX^bNZr0ed2Wtaox?7enlhKk(&!0r#cW$87&cH;6yH^F3!;dmj( zc<9S1t*Kospc1O{NR7Csk@@%ppS`4nURWk$_Sta|z1BAaJmmsAGgW91;KNWhIe5+0 z>9X4D(4-QSuG~QOF}?@cI@=wSQki9K@rc+99))%8&XfOA@qlmt?KwmROs!|V-^icM zr)zvLP98V5LKC~m(s(d}h|^~k`?y@k3F~n+Nx52y5Cc(mELi&)Z8cftdxh_qv|(!oB>K0-D_@(EACw5p@6*6+d-6E^JpQ zza;q3A3uVZT@2k^Z%9w{&wx~&2mTKLfLWywG}J?B{A|&Q$uDZ8kyLnQGIw(qj;sFD zuo7b5Vy#6t5;-q>;(qsw;vqbi@@4XS1MZ5<=*B4tG@is&O{pB+OL5`$%AK~2F9;vf zW3O1{M!x`F5dk9si$2DSC$^8qMjtxV|LlNro@Hl5aDRwvKgu3^iMk&!H^DVA`fkG` zWF>cG!+XEumtzDx`gI7ale+7wT${*$pph3BCRuDTNOICP*+0VS4^M6^7oUQ!*$d(# zJFhj!_h`lc^yN_1>KS5>8pk0+gx2f88iR* zjuZL*Z6}FZJE$6H)L=Z*^oX`Q7(mN`!}|6yBXZC~x%-QOVMZZivODcKJ~acx=C_Cn z9NkIc6E91P-US=|*e_f5VaG}CbwwJois76ONw(F$L^q>HRKq|<9OD{(jig$DRs}hB_0jVs$>WNps`RN+Njx?nCIkyCLZwphW*pOg zv%j}hkT^Ga-^Zwu@7Wa>rXJ7tZq=6fL8&0q(}JGreVdyc6NYEn<=iGtt^>Is*EwNH zA{}Q9%FjHIF-e{^*FD6;wJIeS{+cHLJg~xxlwV`3lMPc9@-K^|T<}u--{*MRH_L0j zEJrE1Gc5B&+eeRZQxdJPGfmoET~yArYd`_klBza^{g3FNi{o35p+pyg$*ixqAtMUQ(g8){bW z^hm==6*|&?^6)B)|Ky;z(;(vhmej9o^O?2|6D2{jI!v9TJ(Wbn}60m=#yvgeOI6f&)6 z_U?82(YwhOb)pURBG{VnWiw)fT@e`=4g`wv_?4*ob3R}C(nV+G)J$Qe7>{V>Tmw(e zcc7wYNjMJiH}Qk!Hkur-%(Qx(@}&jGO{cY3GcJ|-nW9I*(GBmVS@WWqlh}#+&Wg5` zT086v!Ue4M*V3va|Lg?A901JPcUf}+U7!v=1jo*a#pG4R^YRW$|VA?FXuGSh@I71#*J ziz~jE`_6d2^)py>Oh?Eu>2{`c{&#^^%RR$ z)Fw%PR!I-cJEBYDJ89}Ny=;wLN8zc2 zBlJ?(_j3<1*2#TfbvtW-gySBVfQs7#K9z-NH=$g>BQ^B+mDlY|yzvkqP&diAvnDu= zw1;_q+0ZAH^iM^rRdT5*aAz2mATYHU8XypWWd9n@Hxal9@_Z13#N!M_F@34S-XVY9 ze8+;0uPX%X`aT2`vsTtbr?M3=|HTB|?6d@|wnH}7I*Zu_dls*2X>W!GKHJqdgvSB- zm9wPUKt=bY&C1qBfV=|vcI?9be!kQvW}YtP!eEd<(Q1@8_#{{iU zqQ|s`7pZW;u#wGoGa8UCr+mMd>jz(K^K`&+J(XL64<^qBLYOiT;!Uk*5YS4&PO=vX zprR4U&cN&^JSbdrNE0L3ukO8uH}0mQLA)q3Mve|c+p-Z6YI{+0i4Cd$K!RF4B;GR` zw=im3Pto--1Oh~;1jG7qbYAfjr+a{rlv z+HLOF8=jhzwZ!;UQF||gvU>!hY`sKkqCX1Sa+Yw#GiALFZZKoZ5M5DMSfuKZXW@F^ zoMj>O(6(5)J5v{Hk&(SYsQNToD0hPi zTCHc!%1bR;(Vl(HxY@DGBR}ucL805Q>}@%|@E%hnGlN{o5Mb-T-H>3CDPZlS_s zC@Li9SyU~aT{%EsTv4?_SB@;k$IAkP-+f4fur`%cJ@WcLiq0~wslScGLpn!yjFK)X z1q4Q?Y%sb7B&A1#NQZ<-gD^rEBc0?ZB?Rdd5m5nYL>P_8|2fZlUYrj*+d04czP{Ht zaI9sP%O^>vBpRkk(CbWH`CF7{a?v^d6Uehv6fg)JXhuCqhlD=7PzUW$;52ti?ySPr zU0!DswsmRHF=yBc%eruvVAjfL$gWWtY*7O|ia!yASGgYN>hGO?d%z}@A2X*1!d`~# zR#Lqi`Dv}9cKPYFfxrW`Kx5>q|>#O8t2M! zF6XDf+ce;#4ZeGH_peA^zDep_V1`&fX%bMo`cX2SwI&}^E?D+Nr@cTP))6P7un-TKPMjBXVQ|9Q+9}dQ^Kl5tzMT;Jd?t`TU#0hoWbeq`+*}(*EjbQR51etqa73h7xf|(eHd=R0n;Z;Lg5aBaXhha5x9s9X zPx_j{LvUCp@@o#oWs_wLIHf+xcSGY{{N9*zz|Z5|_4x|>gcR5vKE9Mx%$@C_22&P& z2S3`M-vE6BPg=u*QS^)@|$tdFMq{oo`JQPHS{U@)i!Hxpv2VE!~NXwi_^ zr%+v-eX9Ac+0x@CT8$72g?g#J# znk&f{Du{xgcDqE=B*B0F3cLH%ZqLzF)AnomyYu;qgp8ACRBrh}p7-YW>tdkD8$C-|k{5GmPXkeX`O@YXiIQmxY6Ezd83 zCsi*bXs2(O!LT{Q=-%}W{i&(%JM$%q2YT+O+Dw{j=NeZ+uEx$JUaB_wV!w{-Pd=Mq zu7BN^{%1LH%t_JtWTrv4XvW74(e~Oy=LIiU&ac+Hv_wp2DqPQgt;O<8u#CS=b@)SI z6$JGxn1!CUY;I#GwO)a-@AiW+E3XewztltNKL;R5X-cAG`0lm)veH$OgydhN%=G-k z<*%z$ z_Qfk0O=j_}L-A7J*-)!1E@l=76$(Us$v!%FhYGD4m=u1Y=u72*EC<9ZIR`a#My)fS zOda^Vvlb@{sHB4Hg`7}Zs(<`R+RY&j-;6vTn{|qj5{s#(kpNPp<}7E}D^ATVf#<6c zD(*bf){Gswu2O6}aj(@?>jm+9J_b#k;T{l(s)d}SO-i~&*xOZSEN36@MbWkJSE{M6Ceto^x$ZXP78 zpDkGLyvOYtQN~iwX#7B@_E-ZoF;Z@h|1$oNkw@YK5=g!hLGAX_3crNfn}|Lh&(JU~ zglw#r9=%XL?DGU>JZaP)6fQfkS3^%%iIDy?Srhz+=tX&X^|`6OEXs5f`a+y%M|}Ek*fJ z#efXri{Sb=m}8tOQRX4={;*yFLs+81F%aHm;9PqFxk+Hu$u4ZAo?*Drc>9isDTP|P zr%b6_k@{AmpaHzKUjSqyztpeEdSa_KUWwhcz_^c1u`SZUP+OU!%15I7DJqSWOQf6l z=5l?PqcX$gfpvR&~F5#bs9owk%xpqaR&5Iar6NrZOvq%TOGBpnE>E zF`pjf`6?)tpthI+Rt%gVHDj0FBFh9diuE6FZ@Rd0`^r1AJ+|^Vn!YDBk~5_`avi z>Va)I8X!E;)+8w0+oL_NPHx2v{(Jnhn&C`?RKpC5N<9LT@5GgZI!*G$(Q zNXjA1Qd}kgPzQ%KV*f{cv%$}##zsU)!fe$g>abnY;p+JF!H`ZY0tnn3D-};u^HyNG6xk@5>IE$;9Jwdtn0C!LhB_` z5AI8je^!^%R{TExQIkVF_#4xY2WCh0R3E;HW0Jf9((lTvllU!#qWtM4BSq((Z16BI z6Mk}@a_2G&V2ELVYWBAmjS;08u;4c@I?Kju%OoD9Pl+xx#dWaIVS%Rhota~fRdydf z->Q)bRi1oCmEA>-;OcQucyIOt>9qqa<+FOWUkLeL3tw#pCkNN(X9(7DuVt&|6!I%Q zPJCQDt(P~qM?}V_d*Q=*QE_|}qf*8FflVL(HPP90T$f8B0X?LJgd+S4luCld26X=p z#?XL}!AW!SAm=^E9os>Dlzh+v6nz609`?!1g0Y0>q?7&f#QT{hV*%=J0E7qS?g8|OoK zZt(uI@i&N4>~aFr`}YzoRwtkUj#c;6p}P|{;$7Xl9Q?0$cR3B9eo{r)IE>v3r{01> zAdJI7Y_>964Nli|4ZnI+Ft(}f?>Mfs=3{C2wJ?!O$Yuw!yf+%z6lMCM3NEHo=MUoh zR=_Q2;wNU$w)d7~qCkqis!P{=bcbHSKYz?dHZHEWp-M%gW$B>WC+9Q2+iv7G}NSNbW&fJB_jo91&j6X)-p{Onmb zB1w{)#j_YMkUYf?eRXj1a?pAJF{n6|Pz=dj0|~-j*~Q2-VQ-qyef&dZBJP*rQnDB+ zDO_w2f}n&6iU2zcV;|kMVslYpGISKk`78a*fI}2pRvg zGuFz!XeRuf6i#mmxdZg9tY;|>sB#^){RfI4eo4!{qf&->Zn;b9;cy6!e@yLE+9K9* zDcmMk)IO?eXi(8g+02uCt15^XWwm?ZdKf=zNav+_ZcmKZ)eGCitqrU*;}@*|P@)CL zU%qMSVE1VM>affE<21FTj>Mrb$w%0$`bl}x3Tpo9@gu*)obaxzC*yf`9{4$tZrm@g zpsI5-%mW$Rj}Jn}PBM83sr);PgY%;fi@oc0Y|lhBqrSV3O+$~q`!;rX;xJ1? zfCj(l_>)r+%d&;|pu%OtTWi8~{BXi1-E^v1&VISPo$|XgQ{usfd#aeOTW2G6Z08u6 z9}qln&uNQW!-@Al%;qJ_a&o}Hnt zcJPf2%`DVmIJQ~AOc18E_0eXi%;Qlnc($UMWN04jpfX~1{^TqtP(>ePHSl-u`H?5b z1^YnymRBt#k)GBhKSX?YNmN-2ph1276bha%GZuYFN_$_HP08gl@Vvq*bAj7OCA`{8 z(aWk&{@Kmg-+i#m7u|<}PHZs&a9DvjgwnQb?;RBrLH%WdvN^{K)HHpTG-KYz2K*OB z?agn=ITxA7oniTW+hG>64!XJtT|h900@J-b@cF@h-idIp<9d}rpO|PE)$rob z(#vd8hw@`M;W*z3axRmJ|8!cphP{-VCnslP-EF=;E4a7ZQ=JklRdm!o_V@3b7mnnq zA)9&JzSAe#FB!?sq0wr2b}|d!8A&bftMlDDPwZ55;8;V@x=2p#^iZh%#1EC6EhX&* ze~C>1XC%15QY++0+w5|-DGBS{<5xe2e<@+^S-n%g+CB^QzBp`9@1i$cWlIMvk5Ecd zKzu^@Ocq(?L3&;%m%IovlhcL0%2`&2jnK!Y?WmiQlRh5<=*7-+- z0OikgV7k1TD9vd(B+)xZa#ocJvbyo4C082q%K+YNHvA8*mX2jfo}=nkx}H_ypxN4B zAq;8i5QH!~Tc0D(@n3MFIyH&Rq)w>C;t*94SSO%ZG?)69E<$QjLnXs%1+Sg7#pU!2du9 zHjkH+Y_msy&J3ez%}7^}x&;D0vEF{J)Rh$Sbf3rQ&jF(0X?td28T#G{w&xl}wCL&k zsgN@pUK71oZ8A7(Xj}R4xM@_9<47cyBUkj0GILa@jDiF>#Av~ip~e|CZ11eS-l^e0=^)Zy{gsg445v!5M`yFA-bo}Yq3OX!;2ZS zfK^moAUw!5f1iVq9hlEG%t5IljPu0hdB$EnoUwYWwYWOI^Q~*aEj%^w z1=2>oe4@4tomU!tkTlk{@3>hPZ$9ou?YfzyU^3qhuZci=OYWwh+7P^mA;#QC28c1v z&mw}xT6rX(k(a7Gqr}=j2$AC-{efe$yX+)Ub$7TDG4#nc=hDkj$=3S`(H3pUePZC* z)s?L-`L_uX@RV?F-i4yaC`q7K$cnk% zN~!RoGU(bjj)57_r0%sk*xCsbB<&=v05g`ta!$X?$;urN(Eb;O+PbKA#++~ZWp<6EmKYfD~{8Lvw z2hQJ6l_rP%87sD+dbjY-iQ6&Lu29vz7-DDY&(?rBF!FwItg6M5+t$yn<{0lUoOh^R z99F>tDmffWS8b!_Zv=cVe^q&wTxi?QbIzY&KnfnLT7cT0W!efV`w(7>A8Y;VTU!r_ zAwMf2BT(9-WfG%_sd`)#8p3q8zi+v$O0>w#Lujh;P^&Cx$b9J9^&g12k*o zS5i#5m}cruSk$4vG=v(m!s`NdnY1?vlp0|AgxGI>xXih|A8yuwXRZ=^B8*vdW-MjZ z;?`1sQ9ogT?u}s?yt);AX*uAJk*D}=aB(dx0`YhTLBVjjbEJ(Ewq|nlfR0ul)VJS>GhC)}&qEwf5xyQ^S=EhfF_Gst zo-y4`ahD`ry|H?Gy5y2($>-bhjGLi5$9>sXAjmLX+0Zp~b)z;rSDE z*hxg%ptO?2ovIOe-N|E4@Nv0xcBGU{L6W2Em7c0|n4?&hURAoeti+Hcr(Cn(Quli}Nkt^}tfLnBW-waz!rFPyXk8AYO()z4%FdeJ|cV(U=K+6ly)0L-$_@-smy+@l5 z)Q(N9=8wKkx^VC#wY!S3%-chEd&Z7Y!wx=PiZ1-QE9F)kq4*Z@{05~W`w>xJ-RN+9 zQwQrt4aRa6lHpFm%ITlP8dAPCKSnNy&~oG)ZQIk5!}@a8rU0`iWp=Jug zfPEV*A03U@x=rD~hMuVaYvH8$yQM+)A0!?+heff_-gIvDzR!QxegX4p&ci$%mkbIi zy|>)1w~Z`4St1}|x03kE9eC%Hi$}FYP-ovBL8SSXkeGGXSLwGYF5Qi$L%W~H5_MSz z6GxxBQzJijZ-!rfgAZ1J`r->j9>#`DMQdD}x&1qa8kXRg+LDGC;I}J1=#g((>J?Js z>L9Dda?!?9o|$`8it44=e2n+*+*bDCmEC;@?&7;O=)@hOXJ{C_8*qv(5FRvdE^Pfi zg~5455L~}K49gSG0pUyBhFgwPGDCF!n|GVsdmQ@81K@%YdG@TLxb>67v->wv_*ua$ zaj6o=0fWk5Y>6T=npYvioZf#g&VT2tC}}Xq8Z0a?&F-zDqeJ&jDNnLSlQ=4B~i$B*T7+P-7n zbDM20F1<>%ZfX#;GpJ8{As%5M>lIO-{{J}50dZn}37ol>xYbB+S_`vT z0%sWq5>#KVk`AF|tbg@7C_LAt+gQ(^4UYwTHisC2~J?=pTZy$X~f~up$hdG9TEp{>MH-+Y`0l92cd}NEBAJxmo%r*&n z-p7Xlg_XW>0F|(hWf|Xr=@j!T02TD{#MSK=WOoNDD&^j@ufm_;ziXjB^-$DqB2xYt zMbDjm`7PS2%)FgTE1#-{V>;nkG<%seFna&>=V~^Amw@K1&_$7aODZGh{MlEO|5P}n zdhnsRJLZ#%8hAK5?=Hs#>+d{ZBNj}>lfY@O|K<~2_Fk7~&1>eTceAZ&!`^;34`tXo ziDuSR9Dlm#;u+&n?F8H>nk&M?D04MYm61ZvNs=;2%J28;`{E}Q2QDr?D;9sJUw@{WRsi0TSA}Uj+0Z9*>L0Mh)tp#- z9>^U2rd_$in{pY$y+C%!%Av#<|;MTM?JpPbmt)Rvaw z6FJI8hqN%=P`ILWLSO1qaUz38+>hWXIn7zXPSfUmVsLn-^}0(+824NI(LEYL-A7_o zr9f?gl?}*ta_nB$Ro3o_Py5f+5qxGmMdB`dLx7mynGO26Vb7ONhd}**CbO*j4b)mi z&>^1^vcQ!xuRmWjJ7$F8!yh`rJZt;4>--p-DFGw)ntSpli;9s-hu>xv?ip$i{ zTR3gz^SH(E{=lTF%}}Yr0qa3l+@x!o`{cPs=PQ}{9M!B=k@CdFQl%zpvI(wy7jw;b zq&4V;VZ`#avaO#H2EpE_S9Uagz;oHFr&$YvP{^Xu+jKE=t&(s)0b`1nIy zBq?Ag4z%@QVpY`po$9&yx9NP-`kxHJ+-hten9ObsJe?q8N3_EQUm+|4W>r$<>rpbO zMRN$d&W=iKwu7ZX*kbrC-=q2xmPJE0M1L=C$C4c$x z#_~2Y6weiiq5q_w#sB0fqsgv(0RM@RQ%)Xq^KVY_P&Fl$KWCMrV+JaON=3a;2$hQ7 z1s=KB51NAS-7V@jkmQka7~b?+xwi_U|7iUZnc~g<70eKi>^+<7dqxG8&KPQr=Dq&v z^TsbP{L<0alR0py-Ar=mndtqwW?Y6uJi^urQ6Q-o$qJv|laKlJEDb292DKHD>NJIi(<{QiLsAGWQ@hY#|$BKl}u{Ylcwn~84zy(rqRKmtu z*_b7)nm($EY_nqJOap&eoPMJd?o9s;%-KV**P+WvPpnyl+ejY2 zj*c!r<`7^{(}tbvCccj@G?gx9NG@mz_Odm_@F}P_hP9GjP4hTz5 z37P%e`OQ(q$qzX$O(gN)tLgjYh+P^!?zx^UvBg2J_g9+R+I@D{PuuQq{TSMtToj34k0Mm+R2b2o>F5~I~FuA>&?j4M|5s^EBAJ&F7l;fx)`%p za4@6wsKm6WzCgKb%o|P6!6om4-wOV_Z+zH4c#NUYg!rRx`H6*b7r1ej*pOVhPdwDR z=L4pXe^>KAYc2%O1K>`xU;ixhwn%zTop z$#59TcZ}y=(Q_jpiI9;Jsz}BGg=C%J#m; z-jTzrK4|I_tlncq5895%Ukgi`X}L)JM`1-g?9BQgsL-hdQ&w*)~q$qdMLc# z2eRf!P>mq7Yvj=emL9&=usO2n!^Cn4@6mYRCE;jS5tyW-))bnnoK5cboHNs{>ip`} z$)3&1m+ZMwC)Nrtue4gIyWFG1b$YmgweuqCRJ|O>*q3bl&s*7Wn}hWeLgQ}=)NTJ6 zYGmT~-p(zRRMb?Mxff43%`@xJ{Ge${n>lH50^;`|eZP4M*-^svcN~JFJ%{lY;wJYk zDz~gB*W9x9m~DJiVbapiQ?vNT5?}gJGRs6Ci#D@7#TJ> z#%kKN^9vuczN&kH8htEz_t;GfjEsRC>ZxIvs+q_C(Q@wb%_7MPh0X_-i9nurW6XV&$9zWHy=qF2D}w^i3G9})ML!Vq4( zoDDkz;%~$7s8g_lZ7gTz4nK<|c<@AQ@`sqf^ca6+Bgs3x@l~RWA!jSnHAq{jJ=^qv zXb^r(HAbQf^?|1oNCke3^&*FC?)NO zlVC0zE9G_Rw=VyIHYn}7x*KwS4gXe9zxy?&aBL!ms@|DqB$BCMdq3Bh|0-SLzULmB zEA$eOxS8LZiQyO%zU^s2L%<&9DF9uS?MNwpP7-6S<(`TkymC;mlX2T^2(J@t4pndn zWG&HXie{bKpMQUJ8W85x>)?D6=N0``MUP5TyfdIv=vzB`<SEYM;uQ|8$BVi+ zY=5v42^`SD0=MV^)PlHIRzCAr&x;OZHtWsA!#pNGMAX|{0mpR!O6A?E;U43N9Jn7^ zKe24Q9j-2EqwEZ#`EZ{2YU{@$JQCW9`hM?+dF5}#3oDioj!1nHt4pSEKs>JC-@eEx2|AvBijn)0Mp>pU1b0bAY{3;E)I7<>7Leon2g|(VCkevbaa5v>J@I6D zA#C*JH>-wg+^>v7MoHt$jsf!HnDXm^lYkg+9;0Uc8noQt%DRJtgo9Vf-W#!U)%r&U zQ@^xdG?J8Pj7yf1o{ao-Xc2XPbN)g~Eg2;vG>&%2{+J`e80YqVOi4SRB-@rQkLHDK zzUl8xA`dRX!L-6Zd5rgh{#K5~GTfumHq99xhR5hp8v=cH>M}~cjV+El1+k+4&@AKB z!PY`2+J>!HC3`4&%=yR>|jbt3;RSi)fcZskxrGq<3gH&VOy zp`{W^7Rm69Pwtlr+Dl;dvo^kgLv;+bdHBMC?qx2hO`F@rwK5()8-WICQbQW`^4}1S zaV&bKfub1}pFX!i2n?U=f^*p=FRV2@qpB)Jk#6L_V*Ah2nkYC#zhmggNGGUXcw}_y z{K$dC1evdalDhfN zEr6@tnd(T}Y(h6A=9=k7+%NNPn)}+!y7J!~{rZjLiT_Q> ziKQ7AX9pG_n9TAc%q%o88E$*lj}D5gJ%W)TP{Y@B0Rp)SZvDqE{jr*i zc2$jLLzt}Gh9Dd|v;Rs(hhU*O%bMrjFLH`X-jXw|zIu&UmRc6ti;Sude7nsC@yn|o z;AFKnooyO!P3$Nlbb;%|mdwwkX9=>2+gKW;sYGNB_VkiwS~cQr8u zfNno?F5Wd`aSc@!t>L$8esFIKj=@ejTZmTb2(lsk5(n#3ZAl;O^wml+2XR9<3Y8R#gbp%M1J^NecWoRfGZ!JF4O39(b?5&XUAV63? zOGK&?f7~Nd^U{)f^xUDH{cIM-sn2j?0DgIDJ+d4b<$kAFRn&@7+CfE>-{Ag?XjQ=& znZzkFIvQRY{qlTgRB^BgLk1~u)Ezi}Hp+I(>)|K`fSR8@rHlfFRfnYU?_7!}KY4sM zP3t+OD2%s|Gi@~P_yl`W@hV!uhU9&)7?UFs^(*FwE4u*4eI9dX01ke#M1XIVpt>wU zZLEj29{mxF`mRWOEE+hzv=N33?^&W8h(IN_pPAwJ3U707u&DBUoo@m_!pc!|@JQ_= zu_OAAQ_n3;Y*?m)IEUD`AILk>e+9EvMEYySF7|*w);iN-)bAFRN?m;vZP5$3P&S@& zxtH!M>Hq}+?W{g=hKAQ`VK?r?u?=>ArEEzCrs>nX-=v$k>3+)1U$z-UXiN#M!uC1_ zYA3B|IU6X)n|k;b=eIsU&pf!{E$NNdEx6(PzNPtV$ILLUe(A!@>>>pt)pi)E-rzjZY1A?h=)2Z`JR>Fc-Vf8_dJ4C-=0L*p z5Fjx!aZVn@R;HW|v?&o;I~XAPX8688(sB@f`$&Q}!K)7iG8OSsXV#7~)8r9>rH=h& z@)vHPgVnD0%WwY&8m!R=e;xzBmXgGo4PyH9rdoP8KFqMbb@soo?~D@ls2w-V2#1_p znt(UCy)j#9+Agi%yd%p5)buIZR!9$&za=J^}}2e-lmK?(e?;?iF>FLmhW`aKlRyB zQL3XfpPvFkV%KOM4_zQ9^;H85bf321dj(`m5`PLt^tdxj5Akbn2_3c(vf5uVjugh~ zE&8(r?eyB+A$yj%+v44*<6WCK4&w7g*K*sAvUT?JGAuDjI1G95W_oP8 zH#;T#D@+990qwCiwff;g0sgDFhbRgc5*AhhcK22KPb3cNTW+wK1eYcP^xUkJ3B(_` zZQQZS?|I*{X*k?k_dqi88CbC8XX*B4_0$U5@ak26f%MA;Z^DRI{Do8_Qa4_N}ja2xM|fcQyM8x?97v^kUp5`vv12= z<@l4B9mG70)Q}Ap#~B3=hf*W&U%!yxxiZ@v5-*p2@T`*F1~|Czg3^!-t|uMe~Me7wCT=vmG~8Q{Uyh5)$6gRTyjU zN-%p+9Pr}67NwE%ABaqJB5F`uD}<%3f;6{9K9(xyQ`W+lEfl^d=i@P;*YShRd}I{j zLm4+F+Nl(G{HlrJk-7gXKAF};Ok?|?``BbKqA;qZQ}w9p^ZE*JWdFbLoP!}LrU{Pb z+Mky(2Hch0^-0*YKPA*mPSZ4C49A8R$cs}vWnf6JP>ktFc>T^P-d^P$HGP@o@&zK? z>!?)LOE1!=D=drBST4M-I*DtkGj>L~SuL%3d_b_7Wei*Za3kg{nnBTXl{WTpp5xpp z=F)b1J?3D-S(xo#Yox9g$4U9R#Rz@LOS30|o$q$)W1r-DFM450#~Y@0XCJ6x_#&!G zMSo<*(#NnY)7?Q8%p$pYQq<9AX38|)OlI~1Y0m?KxwL)A{kONQ<&y(FX9I(947iNH zUYNvqjZc`WXGrNOUbfan3qKo_XYiTXoVmLe+%NIewl>-P2?08>8TMbx(kw?ZP4K>%A z+({EKV+yf>fam0J9w+`$@{HiL0<Kaq&yG5|#HifxEldtAM=kI4 z0s9xU+{>uuSHs+cLUjmqqe+=*D`{=*Zmyh5Qwj$*Yp^ zoOO4nZ*$IAWRcWaa#$W z_34tG>V4K=Zb_-QVoVL@v2|EIYTgWS=dXb2Az7+bbF#L2{ALk=UY_ELBBdNtjt0`S z5ib?lrNjdBv<4bg@r48G9(2(&q5nsVfPS#S)j&B~tGNB$uxI}s(fZBfb}dQL2H8c5 zU{UG&*o?_&8mR=Pg0=ZgQVRIb#64g=uA5$Rm^*8(9V>u$)CyB&b+0a$np6bH6n0NF zVga7Y`0@8gS;v-JJo}VC)bUBx`OJv{G+)$32iqA*g`V<@T6|3F8UE1YX1Wbi#e6La z!B(vY5HQi&aSm*`ivdr`m`753MPlRdPl8v@@DeJq1?}7kCS6rnd=wj+^p1Trg>^sh z%Mf)-emPRCUFl2z`dzUAG=2?9Llm zCl!6`t%1GQ?SG@4Xk;CpY#tP&SA6Yz8mm%m2dUNhyg$8m+5hGOd#d}F+Q?03aP050 zhVFG?ylB3=m(>rqY;~H2d~Md&@WQCMo-(0r;MnZ8&+mM+nz57xuu+H6i|)0&`GPz# zu+rx-9>~{uPW-{dt?;RXdhILJ(v=sWkSdoE{8AO&j9*v9b+=yCnKCi2JD)CI!@; zKjcQ!6#AlSPCqSn7GE#jW;;fAFszi(ghtKt%v#(QV4FG{JHY7=b%G2)r#0%-ATR3gILO}yhI)LdPb03`tSm# zmbu0yr?sW_)F=>II{F9sY|mv&Di}R+<$?o=6AO(C^v)Q(KG{!{J&ISz!zDyDmNXFR z|Ksy<7?m0fsq5O*9n7C_GbNssc|z>|1|H0QLVxIbGgDhuRThxwZwK%wbtdT-exE?E z((#rPk97wM|ASqC{sDOK8polyfAV9fs7HcsP(NK(g%F>^>puTqg1^aP69M&;&9rv#lUY^yh_8zIo+TYQw~a-`nT+}O z4CS~Mj4jH)EK7-uureji%0B`AMbO z?n7}H=L!y)PP1rkdUzgGKnhghakQHM&$}u}0t}PYZO-a~bEC{E$xS2C{2taC2!F?n z8|$&WNlWPL;VEp()_a!!dZ0R^Lf5@$Ld>7t)(0}*!Xs`Q> z(sFQHE4a9&8(lZjuO;UPRgSBIqGzOknQv~zW*c60z>-EPp!!nGJ*cJOt;-&uvuU9# zQg{eKz|oDFa*|dkfh_W=Ay$f8-mCe%dC;?(mZ$7~7*A3qwOKNpD`ZOWt98qV8RYgXnx zxz?$J8<`lG=}Q2~4GE79u+{jv_Obmm&XzSa!t1h|a{q;}{^N5R(^MPeS`@mKDztvc zHxtMFn7yzdvibD}<#E7M%kETrIsZLOB}B_Us!1@$Yf>w<1X7T+DXJJfCqYhq?T)RC z9ax3cVr|maCIG0{m9p=x< zEx8O;1MiUtPW6DNOZb_jge&DkH@j&GG1e4^bvbsvLv%X}XfNN!Vt+$TKqnKHMiuQ#Gxw~Xx*XfR(RGyEmn7$r zOp)VsoRBwPKk;@}SBTIa6*&f&Pb&{T16o7oE~0r!VRr98 zC&>CCP$(7;Fkdx8wO3wz8)0U~kzBV5zt(Z*=~ z6<&@R?C#{vbEKI} za9ZDEf=ySovqCIsHMFGOJJvR`q38Bxx&+XpWx6^;6Zf)lk#Hi0-TJqJb#zj_dYmf! zVYWdR^A@Tt6W?auAZNvyjG>lcm6W<~E$#f}upxtQ^RO!L0aO7r`AYh>%RI68yhMy> z8Hgd`x6NIjz1z--)sJ|JtJH4936uYuJ;>^{AW8#jzXDRq{WIYaM@TYBB+J5$|9@pRy3GD7nL~wSPH#&!^a)DQ$RH2m{p$hEwh7Q>gDEw#Y zyB2ook~a=q#ZC^G#Tm)ir*M9OEsT}M8fzq?4}0^WGFY(jj> zygb{-w%1(Q1gDh^s>1h@A`VcuGiH9hvzf5W6``M6vU&QY2Ppbvr!;Q6T)~8H-rfH< z@kw65UCNoO;MOg0U_?CG`YTzB;nbE>@eB9pXK(ULOSn3Zc}=zA0A(mV%94;BBXQ6k z=I5JU!en|9XJAi9Y>~z8_GIf(==9rDC9u|1%tj<=we#0;kepBzb0f}rn&Nk!T zDdVhLi~TI-GqP+=!Ua1&)v112){~b($UPQ&9;yICYFkjJ9#nvgJdu@lUD0bACNl$6 zC4oJwPP0VYua}?!?OzbF;*MH|^4l(tP<45$&r`gYA7cnwl^%Sz+c153)0ig24yjVI zQ@U%RCf+V0(Z^!o;py#%tYjzrExfQc;h!YN0VD;9q_iO_%0-j{4>coo;8C4&KINqa zE`vnjy_#-8Xc@0~Z?f$t(&R+6`#YBoils7v&rGjs_WKjo!|%t<6VLKEF)S(96MWcv z_vr5Dl163ckBZP&vv{m;hqxc^LyzMQs$$z4Gg;?W>{7hLYFkPE;?_Cp&wn5%#|$aY z#8Xb$jcCi!V6SG_{{bK-WSx{#Y+woUf6@~A#? zo7d^9I4-ETO?_+o64CXfoy)b9SnJ@yGKn|iK``LX8vXT#r z>bMC$JF{Isnx?^mu^(X?a0?E8u7Bp-Kkl#>uqZgxJ^p9;>it!pA?RoOg@xQ9Y9ZKCtpFNwxG%-5EEai|NK5qM--5*B-?{gs^VC0F zV^sap-gGWX3I=a1+-Ob%LQz5=v{?>XwLEeC>M}U_CGK>4IjR{94Bu)-u-6ELC=Gk0 zu)%ms|RQ+egxm_)S6eU6jKGo_?4Qs)=~xiZ5L*RWY3QR=BuIKEuY%}1CP?Z_Jt38v{%?8l2{p4d0& zP%5K?-tO(lKn%huS?+P`X`=Xr1It;Cv&7>|zb&f1VaOa&|Dv|Tb3>MHv1n6g zobcV4U7!tu!^CYcV_jtJ;oYkQuJjVkua*VF$2Ymf1i(_+kh&P$AVfgchp$yooSmS`Py*uJGUFlkh-O*NhC ziPS^iKQnx0kl14L(Kr7?LZpp2`_6f6To-%CtcHlQBGxW?;jS7l(Fv8+K@#uPNAu)} zI(|&z=%+=(Xg^AUotgHig}vV@`BngIu0@~CaeDLc^B0@^BHSnupi#0?pO~H!hk1Pc zcCLQH5|^nb^_h`i^5c$(K!Hn7gTA;OcAoq(|FQ^`bGmIXkfq#GuntOoHdp_!Yt?ln z$P-JZA9Fr7-sMiHVBx41EZ|GJNDLg^9n-Pl$=4ao#+D`DX<0`qMNf&FaaDQEiZCl$ zPl;876n18qSGnxw5ny=M@nYO~jP=IPXp+BFu=7GME+HkXxxmc(Lh11E-ZdBce7040 z8^;HqFA~X%%qA;zVU7>(><0%B7X^ACs41#ujS4gCtLRt0TILjgWpTE`Og_wSD@96v zmPj3oodXoib?+vf7XAZOQ`y7RA&Z7>n}}fV{*r@t3f!I@0wD^AT}!Z9mR3}$LA>HH zc2l_`=lU@2+^TV;bAx{as3mzn{9eo#8%&DBDT+tUY9Tx?BIIo0qMU()& zd%?hSuz!*cAzC6BQ&Zh<1!YH1UOk@{5le9q6kq#XpUy+aPV zaJ<_0QfI)KxSHOI5W93)PvccvDiIbVba@%O7Hva@e)t3MgLC$cek=Ig9B)EHV^ah}doxsXEEXKZ8YX?lj$TeNX5~rvrDNh|?XQ*nmUc-0lnUUQM=) z(HKf~DlS|{<$bi}tB*%y-2PNi<6j9kyc>=?U1y+RbTAKV-_bkX;B}ZMdM*I>;TQTf zyh}g@SYn{q{zuYT_%->yUwm|T_bBOZ$jc{3dkXi6fAEb9q~N7bZDHPF>vZs6`>ugH`M!PD6<)b(*x1l6%N;+d z97tY!+#fYNj4sVK?rB7f-ufratRH{DG<{zz#XTlrD zuQJ~IQgxd@`+#JXY5%BC z26I1-kS~exm~G#7U^4N-Nyw9Ztx3gX+Bz)auR<_Y+3DhQTYcv41bmzf9>q~W@c_smsgxAyM0H@O z4CO%~hD^0rMMUDsVv=3&?Ogx25vIs6jnvT702lth(eu81+2`!BlL`hjEOwmi)#|qC zQbmDDKeL9_jMH@10`g7FF3%D*2 z=(G#6&zIezx=%4yjxn!o`p>qJFQ?|aIcmnEVX=O|q!Ooyp-8444)Z45SE=$73ghrS zjJ10W;9`R|xFpe^U)TD+qt%ntIfvkm*9ciyBzwc0oT7Pn7-!Tf$*+b+Q+cBEqq$6q zwqLi9XCz2zh8^PO&m1Sm*$_w9%;>YD&gAl>F%SK&W|;2c>&>J>@cOjcVjb{H)Fs4S zycGVP%vRkIDxi#)O5e~iW;^C(u^LAeKLXDANx}IsJML6^Dn)DZUV)MoYEYiNtPtRI zr1FnXoE&zpOTG&ufW?pbwE})d?TI&eJ%r~=biG_*mKMAV=(L?i&9c8Qn<;2zM`x`$ zlbCI%6qJ9TY7^uAC_BSF;fwLVfsUm>|s?A&;yAe{N$I8iF0(upI zf;NaEDZ;T!tb(FhVn_&&&DfwpLzY*Ey(t`D5)8f=5*K}3$OV`aiH4|LQsrwD5A~%! zDZ$eJe#)vPQcjF*U>-Tv4cmeu{?=v-Nj$er)psX@UTGC^sj_W`ZpYS^K>V%1#pUhc zJKh(OfV)N(sRnwQ2c~;`Z>E9#dJ4od^AJPo z3c3nZvWU#OiOxq+fG8e#03lijvkpj25Rr!GM^Og8n~(p!JaU*q^37eDm@7Db zJUHn~Zjeb&g#chh4W~$PWzAh4UkQ4)Qkh&f%iF;T?HDgKo{End8jZ&AEiyyq~676QCUp2GJO1DdrdW$sc&}pkn};8^Ci@)3Gv`r7tze{;+r)#1VUXk?JiFjPg?AK>;swe@dOT>E zlsilM$kTfxUGV-#d=3?p{AR@A!W3`!V?IePm^sPk)9%0b$R37P@Z#g}gb1|qzlrPD zkokZ_r5(VN1RQQ{=4THHTQ#PWviX5$?C)f84VBO1cw%@}GbXSHgWF~=Ih@4)l!JXN zpxS_b2eWY=0{oQ!Kx>I}+&(m?qM~4Uqzke6KNC@Y#-W-$f%6$AVj19DZpGc!@_NZA zzD4b$f4N86iguQ{#r{ove9k{78t+ipVplg5KV^&ea3hdH=S3Ym@BL72?=Iibmmro? zpG*C$g6|ylh9v=l>|XeKBT*8-t8*XdguKfYp6Je5;j^?>J+VFnD1P!p-;J{rMiZ^@B0|pWee#v=x;u zv9LVn&+#j#Tg_w?CSlgL;C7)Z0jCET*{pJW7^0eCAf>`ltP+1n@!9rh8&L#UR`Os;G_NB4k>6U5iR+t+MGX^SJ*0up^COW*+=CVsPK-S*Jo|{YmQ!`YOln zbalQO#Zr_B1$21T9brSYHCItS6Pl3EVfFlbRgdtmulE8;T}4j=a&I~y@PN>Erto$N za>dHpYq4X3qpS9f*o#;6oMMDV)dcM}j)!aCnBVlX$L{3O7SQSx@jl`jO4r?vtlQ_g zuLzVaMHtdibR0d^h|&IG=l*L;CPOf zL#i7nx7Pk3lk!Q?HPObB}#0`gM|2Mk_xxBl?iIK~u1EP)CJB+lbY*p0|jh)kE7v zrarDmg0J9Hzx2qDN1K(BAG(ts=7noLR+Nb}PvyKu?(7z*AI2vbPM9Y~pvDOf$ns)c$L$dt9Bh{R#==EV-OR(fe{$2|4*L&!~ zbB~Brn#0T`r-)Lu7uXP2O3aWFvcA!JLb}RpKdx*uP3$>Yj%SW|=PIrC%a4xFX)L4+ z1tU{kTO_k=Q`X~vkmT5ssY|H`B4;o3*q7>9#C2~kGJXPK>_u(pEFY0JWFxi)vw!v? z?-f^%E#NEVJ()demS2^voC?u>Se5LfD*6(=V?c?0@8pdmk9>!od-**tOE{T)l~(g>+kT1XUzs&}+t`+-d1*B3--9D59Zl!ao!0P8OFJ7We;J z8O@?9QfBCdCJyr0Rw)vdgytF4+Mz3hZXThE}gX)3L41X}6RUTcz6T&*XTIo!=Jw9KJ9vZDda%ftRbe`j21u4oJS!rc%b2-8 zEEYSO?sPT3(9ue;N**u$nZ-mrqu|XgL5h}cRy8bGRsCdy*ewVd%Pcigy~E4z&PvBM z<(-)$!D^YTGE4q_v9+qiR|!qbes5)p?DrD4pWSzx`nmX_TP!=l{E#gTt@ujQM-D72 zibYcTnaK*AF0;(c7n(ypk%pwvb1e6ab1qLYlDvK2t+_6x6d(M#QonU#p{9@G+`@C# zf8O-hd04Zp{bZ{!{)k2) zKH#t;3Hx3|HzVG4G-mxMRIDmq!zSv~!iv*CYm6n zMs}|UFc)#e8MG-olYgRM#+#rt(^LqdpEL;Zz{Oe9+9M42Do~@D$uLosO zx7X21I_omXyOnWBvGg^(W zWE7fwgVITcUW;`_&yAm3=lYxV+Ov#;)QA&DU*Q4m*44xPvhgRPi=zQM@=+JRy8G?NW83h{E+mnf39H~H};RI zhL^mUHMWUL%wAhIt;yEk&G}@R9>!VLAMpE$=X|C}swckfu-sJzkE_pmeYYIi1uv79 z;PyY5MUCo*oN8-LwRJ#{h9B}Gyo2-k&(5sPM#QtffOw03EQ>6LSQOs(6_(KDD43Uh zZ#WiEuSA00bb3T(25ocqolw@+EqZzXmv3FZ8diLF{lnLo4`E0*jfRxc57A6a{aU7u z&$tQbfqj5$FL-Xh^XjHPBypB;&iK`BB}D+bIs}UE7oX!V)+SHfgX1XO%SM(6UG9dh z$VD-avOgxhqid#-3$dC{`Z-Eg*1$9^@WF?!WURO;$%J1ba&&QR8AsIJWSy@A5T&Y~ zZ=@5&!?zuGb81pyt420XOu8P=5Spo|v{)hBR?p8kA{^vGSmP0giWASbl`D$C@OAN`csN@4DoW6`E$ z<+0`m*N12ltw;giWnp!u_BwEeQj!!htZE^w01L`=%#OvAHq?G8Gee7LW-;V+oj{#7 z8>EAeGw*vu&c_m-Kd89P1C))0*(0J$zac4BXK5+V*ms>}_9ZQlbK=+&@zNJ=?$i_f zdJhfC#`pzxp_C6welYR%_Im}>{qnM?7<#PqE0TGlrH-z zP9eiX$K}5W?>5&?I-{BDx`5~{SJyitv<0xQuVT@~KfAn70w70C#U@k3c8{2>l;7C| zk~X6VpT<|2Sw|>q;i*;bf!&;D7eX8IJD}(3$dPpC0w$pc4h+)U8%5FCBr>fcmeHK3 z-|!{J%N2;;y~@ZwYPekLiY)&GRIa%o0CSlsvo?P&yV)bkSE0XOxA_%Hm~V=^u#}^w zgEAc)Y1c|IZm|HJ(Et(a7%IxRw9uP|$h*=*BX^$9-8(8MBwT{rWGUMy93^@}wgFy02gKm!vxKhj zRY)!HHy;OAny3h#)NbaHOasy_yY>?yFUz;-;Gf8-dcwQ>XeIl-Z?ps+tq#2PK+p{R z+ipcX`0~?Q)%aN_;FsgcY}C`F=~r7w?Arm-?AAFfq8JH6PFb4EpJ7ty-qbWHj|Z-! z0n0+weBDQ#jSe0BZb?5f`6uqx4h#O`;@;Dm6VOCu7+=#o2BJv|MR*~boB6ofjEBiW z9=^v+bAo-6-3tTN@aE#9o|OQp(l0UTQk7uj-qdvOFgjQFBg3W>R{Rc8>4(Ist{t}O} zGmC7{WwZMBA@X!xl@C}Hr4I&C38)vM%8ATOZOXjVN~uY%P=QK$?&xbrNmks{gps1d zucIB@^yZL@U*X7^g*)Z@M_rehtZPBHz4jbU)6WypwCsJV$jcsM8p12?oBv;#(6@sI_MQ)vIBl@0F(c3mW3ShW+qrHL| zEULy2G$gX6IR+RuM@38^>Lplz8_drIs4H2*vYs= zhb@#u!@)#{_wkiKhBD)J`NU!4;LN_dB{qEH-54k=Cr--elMjQG`RkSm!tw&-MLtEL z;4*!jB_X8#0~>&$IgQ!q{AZevsCI;X5@1u{GCAp^Ld>^13H{Yj0Y~LL_XA^-1{@?m z5b!?~6$2|36IE^+JjZ@S$NnK16EXbpI`N5XvZ`( z{KV8%V!R{V*4CO~mHq!>C*_$EjA{aztx&PlYQ4VP#wlH>|3Gp{Ic8)+bcvjo=dVl< zl8Tsy)RMrSyE&XjT7TH_*Km+4jDxOr%ZVJ^J@?Kt>g+@a-vUPP=lx&qJ~D z2C%)Sci&8IcFZ*_lM!lnOsQ+y(Y>Q$T01(p@pf4zi&zC$Nae!SF=jDQ%T z_`bKCw}IYEtMDf;e^xUeW@!pfjbd$h#O;aYG6Gr&78P^Q_C=9lc561`Y9C}0O@f#D z9jGr1Uekk{w8B&#q=0*D1wn9n6xvi0-@v(B7C8LS{VU9kU zp~7~nHQVfvX`4DpSA|#2o}Ov9~2mNW=45 z%<|vc!A*UBVx>MjCgMQFmAsZ9VpB0;2qe^6U!fl+wpVL`mPyPJ_JZmYuEHB91 zNG}~i*q3Yd>^NWOZ=}A~_i_@!b%x^=eEK}RMIwr862Bl{bl7XYe2nu7svl!{U>d|& z+{jXu(syz@H?rzS4tXw|>Ja?4phe;#Wj(+*emB@*Jysp&0C;?C#z-c*nH*IW{u=pJ z@_!Ba#uTJC01h&eywVESNF|Dkr{Lv$b;dufPN$E6&lKHMKg5-dOdSj3HR)t}s{%EW zQ2Zrbni9#E#8G0$0o9y^q_uns(Bu!?bta^0r6Sw$KcQXt+7M~U*BznsVXA%1FZMI_ zyBnwqwN4$T(Ht>FXtP?cKGnzbiFhVE@20G`#EJe|mh;;AnY)8Xsi!As_%diXQVgHx z;{kOVJI5Lp#F}F5+ae9Sf*@Kmoh9R18;9h_y`h%q=?P-Plp;)Wn)4drJ8qj*woiuV zkg;3vqM~m79j(a-QP`uWoHO$DHIgkGNP}FAM7IkA)w2o79>*90mTG4B)>nJ^-t;j^ zRSj#i?T!z@vhU!~r zxt=0x-%elisC|e#dPW^+r%GyvKU2=fzsFKjo*H7~_;`T)^&OT^7HxRv;{U1*=7F;% z2n7(KF{7PJ1W$J3JxHrdYFyM|czyv{U#0Krg}Ly>!00T>``T0-@h8vUGCtFb_RGm-+cH`GAVC~00f7@)lg zID}*}3Pq(ZoSGC>#k+&qe;<~cAUk@5c})DODt`;#4yBGyOv?bGCH_kO54)emFEC&eiAGq^Leh;$J=|o21jE`%q=)DC21oGg`>5UU zMd>S=G5(%M`*pupP0sZs1DCix8wJ$6QSmAQC#!w zycksKIz(wnj&E7?YTKf?^b@}@D7jN&m4J$@PYa~bU7fBmLc=u$z0tU^GKq{#s(l$7 zJ;%rug2|fH!Qe}VL})qV4Nlp(xjLM*;#Id6bO^p8^xyAzz>`#bc3784K@v6d0e1CW zHrZvULhjqFJ05sDz}}CtlNd|I?8Ul(co)~OV?};_BHOj#AC^B=^v{4PpbOB^bR!=y z&xUecHI*96N~JokCWO&u+PE#?l!3f?ym=wT&pS9950#czucDinS?cu~(tn!gW*YI0 zC$%ZzG#s9$=A=s!M5Y^sw@A{uWJLrmmrfw|>#}rG=os+yYifSt`LBWmFak&&+bj+= zt2Vz|>jWy%v+tn-DK=q5Suh@O55llSe_VNWGxvpF!u{Xs0N}-vy5Crg zN6voi6~!ZeQksjI&Yw-fggaX8t%H_Y?TO3$zSnuI;+00vG-xP}QUg1ilB{7)+w`JQPuWsw6JLJzH=bbQh z#w(|cLW_MzKbJ@~7W!NrE#GE4O`4zNcIw#ozz!7o^(lJMEgX?-r<8;wcHcvh zJ95E__CK(yz5)uEU(CEP>1SR%yE#Kj)DTBVUbjpCX~stTI4E}oQjqh;(z#h zsKd-0-TMh?L)=8a?||ULVixq9CJOc=ooRwUHqjk(lH#0m=l8$ z3wU^Z;lY8qRul)3L*7oeUB-attcIN!j-2T=gp3c%)*>o>hb;hLs1R_an(}1 z{}2he|8aifG4?5YsXqO$r%8p+6N!r)-X5HzXC)94fPWOW2JuT7RV#=xCJTN6TQA#F z`ebLY8>f2M@Wv#mASH5Wn?@o#piuF`e(*{g*-sP3ea*F>ijWB6X|ccm4kkN+njCzg zXV616{U3-+LsKRyZb|E3FsaD>%)iEg`*G{7_soyoIRt1wJ6;1$OnVPxE>`;~sc_K7 zIXT1M^eW>HML|?2>UMe(1Q(pJAw;pC~gI18+89MLvSH#|OzQQFBr}t3;EP{)5$- z52{PXwkH`ft0Fg@2)M`I6jo9y9EcUtCj-Zotz;KapPbVq+hIx#uU%!!wL9rt^$HqO z&2(t$E6|_5u>3?#lDtF?WtGwes#d8O%bP~v++hzZw<9b9u96ZUEaWYb74^NA6Xr5l zqlmmw@;elF-DoQ-gtpgG^<3A&K^-c(T?N*JK{uyuA8L9%Jefsc=UPZwaeyIrDC2g*u*KK#9?5P8xs_l$)cH%R?sXMSmANwK@$Lvmm}q zT0cTO^Fdlnz*JYC{S3IUr#9VwsX(@@2N1_@{Kms-5FoqDbLds*!>Lq zGk4)JoYBu|Oe%q{+F%*0b7Wdb?`uf55AlX-F((f~u-QHdS_vk43uYt~xA|ADw&1OQ zwjEz)SaY!?s5G_K&n`%Z{0DJ?=*R5h$j---Mc$#r;)*&mP~t)wG=~n_@t5F43W}J6 zEs1!aY{@q8z-SDq(XUsW@Y1W}ST7jPObCw-K6h$qF*uZTaKG*^)sFmAa8 z4>AWnF3&K?*XzoV&_XP2pNEY=f5qLa2k%`m+(g>1pfV0ebL^dY@5QgBYJ>?*0?BDI zmxcB1qkV4GnF{Mbf72xmzF7Q}-%j|gq)-77tR4UOALtUQIexGjj=Ov&3?kQCfhG)o zKFZHEh2i6&|I!NMI(C>}HpP134ip{LoMO!AWaoP=5I+A%d(ga+f;24 zfrd9_-hH`r zwg>tVRB~Z*2a1sTe-oKL#6J&Tn#K{(Cp3hNlKUtE{VrPxugi-W1235Lev3UIxzVuT zyrUF0ZS0#4efHv``I+Un8*M5CA9qnc--KD6;g?K%%daWyOT@7u*D(_Nty+SMBngW4 zUH|we+6u}LKPifYRpuY}@$E*E%5pV}!T#6DGKD61ULUX<$But{lvF0dyP*P&-3QI@ z!qqC>O|vzFs^h9q>wgvX_wE&5#=7{v)5?8d|Ar1R!->7gov_d(YuHC`u=o_g0}^xW zG)ANtCL9?oC64-zp{%XV-lq@OmLf0bbjH8ihzHn;%N3YA&0@2AZyM!A)kY0%*H)+D zllVWLAo_8%YkS+oaYws7aN?XF-rrd|9scFf&WL@KFPA+Hz6GzDGNw7OGyx)x>2$d% zBadh^*&sfu=hXu?cnD-VdbExT{A@Ku?LH__LTI$^a(q#n`%Br_c0?JK=DLQ1cdcY^ zh{|WExrei_fM1FYsqiAHldvYs&b%$}w2%1uL%z{{gQC0a-DHBz>K;j*7gUzD(|%CO zTiL3{ollwvwc4#lH4{AI;snZP#+PM=)d|&ndkXVJ5=VO;gDY!RsGcF?5Ch4kLaE)j zpX3Rj6fnxL1(4_%BP~TXtCUuU!~#C)3{%Y~VSqC-uM|Rubx?sRig7;*eUjV~Xr%v7 zC*ArLQCFi@Hzx5aeYcgs(GWJe%0US|w;grPIlBy`_Ps=rj0)2A-zr=|KobR~0?g>^ zvzb0lnpp~_OCRO@D-`P8GK^%*-&_IiJ}C$|f%~d?O7AwGAH~X93PgdAzH09gSfr_3LEvuNP_v;_lAFG`9;YHe2|UMSMt0U%!waiAUxP5@jq-&(ZzkVz z9ks;KK$1l9W0+v$vOY9Ijx9+)KodyYKE{aD#bl+a1Yn*oZ(UW6DTJ^;1pX`kKWgAA zjsWu;^s6K6@VH0$^eUyFaskfbx9p+o-S>{wtP1Kmg2iihx|R74gsmZP*h{H?XJwZ_ zs`0r-;^a?gE01J{qnakeZC;A}NA(4lSs4D2omxf5PT6R(5?BorqK4Bto3`V<{c_;J znR@{>vmk03rUg#f{&=-B^3v6)cESS+1?w$(DNNNGU5ETql$vvjJa(%ldp>Dhx{j4u zzh7j#iCvHu%t5^eUHWcAb@c9je2uQCFv!z)fa`SLXxPH5 zv2?a7zi(%06U(V~DJTk0lo*fg-Dzi6K+O5CO-&2Nqd2ZtVObCUJ zHM)wXrNT18Y)7f5DhMH=jLcudcB|5Vzs-P*v!YKvAiiB``4De1J4Wd!>`dG8w04Az zr3`{Jiz2%ude;;&V^zUMp4F|GPtt+09*=lL(&8raCGO^S6CMDDY;~IwUf-)g%DoJP zk2lZTNsqDrK;Vz@_dfc~=(Lk7Nd&a$xuTpBGWYa(lj|Bb>VE+Sam&(WjJ#66?0fTD z4`P(K;&@Y7aD8pGU6WdXSOG{nX>5k+@!8pbpyJn81>21rsnhJ*b3w$gP^l>X zJ@RV6@ksY|+S)S3t5sNbIs?k*C+M|Q%GsFBP3oa#bfx=SPjnfL{6Sd1Qwa((>E3+! z98EkuvP#I}nyPA7u6s+iho<=Lj_+))r`Mun`6WeSOf+FElr(TALp+NWX!b}Gy)xk# z+LM^@9etWH-P$|C`fY^r%bUKkZqWl2>0!_t{N{#d{NHFjGW}mW#ELtyZnFl41_w%H zI|GiD_E9y*12XaPr+Gt9AruNX{6m6vEBw1oe@Izar}04FiwyiS#EV&j;>z<3LK#oy zjPVz1#N*nRh&+=q-?$Rred#tHdy)2dn^!GA?(VHNfs1W&GNj~}7>BVkf=EdSP3}|5 zm-!qYe1X$yqKjCadZEo(1B2um@`CX9+Y%uKRwzfNrlyy)i2p!zpVef~mLeBs*N+B6 zX{CFEsVHg{#Kb-kx43FK(s>tl(mt+n?CddyTzW*_4qH{SF0IYc2K!GmX5+z)pK|Prb^_uA9zyY9GG2-|Byq zy7BgcEs+jrbTxAlJm9A+yG+8Lb}eLE(j>g6vX9DCDi0G936G`y5tzpu;2g$Y(HI5J zVDuFhS(+k|*dhPE%19UraVY6}ll$fa>96us;!#H&8b#C;nElo5LZ3r9eU)8Pkf>e4 zgGR%6i=utou4wDt2tQQ<(zEoZ`^OKMrt7w}_~%CaML+g*-;XUKseCiu*CFYY{O23l z{$fU2eAD&m&bD~zI5qo#_s9>KOO1_c;8O5wyuIfdh!#UKw*KBqm%#t2#P`7{SnVb1 zz(9B__JONF1RBpJ4pUlM|V+w}moB$i_I%5A^RRM%&h z|3IT)U=`7%OptDENb<1hj%V;a<1tU!*yQlq^W2w)?fj%Fzioc(btE^B4btmu+j83u zfL~xO&rKNi^JXs83d{SBi9!{0@1M`$v1?pd_`EWK`n4hcpou+(US;7*P^Q)O(rsvf8QK9s@-ukg4zEM-Q$q(6tk?6nHXF$q~zqmY^ ziEb(~Z_>=s3C|87|PJbP6R69~jH>K9)NcP$ea#aMRO)#koB#|sA zfcP$xQZ|4#kh5SB&yzRbY#-g8K?+{Wb|^pXE8vlWf;BiVAa44hEoGz7Foq(Xbj@k} zN~5y(@9VcZk1s#1BggBMBYK53iG+$zO8#LR=S&LiTW&YmC#qHdih1q~zTT=l!{OJjEeGQ`ptl{oQxLB-k zv96RzQhgYaIc@epLEl(F271caBNP{eTH|atzBuZ{&-k`Zq14EIKZ0qF?4)3;#g-i9 zw4>U0jRg5In}U*44?pY#pETC&Ee{;ko`ul&B(hBVK#8ZZ(KL7i0+B4=@@JFmar2_& zS#4%NMu0aV?^xv7gAMgU$c2TqpWqqi`w9tEV%wxVJ?1kL%+}tSKg+rN1csg$Qy3mY)_2G{>Ca*~$hp1BBzZc|s2WGgN&RpY>YaXO z!a>!c&oAU{o*td8^{^7j{2Z0puPWfXgg3oiLD8-CB*(hZQj z!}&pn;V)|LcRilOyfpG_az!3R3Wm+dGR+Mee$nugts7n5gyzM8D==Wk>0Ifa_#@S3?=zf+_VoX@lp2)&+y3@*5%sUIC*xn2a1W`Ws(Nww?a+vqExCi`VD$eFWKc1sZ zxVN*!Kb!3}b`2}!4LECp`2$1c72{v*5cXe#ABZw}MgT$>})}*oOqkBE{jl!KDruWsp(BVkezCt)qG08oFhFGSfmbIC5Qw;TZ z>1N~c)~v`L{dImE3;J}{D=3(DeaGA~fHZoU&$J>f?MePVI@E$Y#6O=4ia-8g$t$5S zy?$bC``&Jr)KOXe9-6ejG7(>KwC1q3Xtyu1pzzzdIQFn z@SMTKYwNHd4nXXIoK!ugzU<*D!LUc@0Vz%LAzEj5(LudSghkyV=$KQ~7grcvCAJAO zVLS7<*loQ5iYg*v9BzNuu$7?Hyc!CvoS>GG&N^SR{wW3QedY%0;A4SttZb^Xd%#IZ z2dyUB?>`6He%|_5muwPkq>8-FYq>!_zOQUO?f7r*T+5S1pM6y(@PO(Ah8oWMX%OmY z4^ZQsb9xKY8>jp47fJWJ$kv(J)TJfcyJ0Gscpk@}&4%;#Eh1ELk!nH=69#$c^UU1n z0=-+ZEHw3tZz`59XZE4Doo|aANbjL4T|uozF(Nr zOJh?t>9t^1czQG=V<47a8%S`qCut+QGSlAgj0uBo6-{sMQx-6GpC+B$+R`rA)8Iv0 zdk-$83`V$`7sr~R6Fw(dfmAHLOk`(w4r}O0rj8KL75LIJ8b2n)G^|Zqvp8G#2S5MX zPqdQiY4Hps9@Q5z^fmM0suplfjoW^R(Qy&{fOb2`V>#JnxG3S3hA$EO-vh;Inwkf+!Xkbn^yH?s6*wlEXa#P888dJ5UaS(?h9IuS5D-t!>Q2x>J_>U9YX zG5A+0*=ES?EYFoqj%hE{8Q-td>8Hai^xtTy7jWJcg35NvQwv9_@TueeqBHvo{!L{B z7FnDgBrEk*1WZbR(>SzOj+;|$20AKTz z`YsPoW&##%J>H+C$hq#)+d=dPXS%W~MBn0*o*`DW^ON&ce&0VhcE7`5sCo$V3w>s;3 zx`9}CxM#8Q^LECz-|w*A-p?yZ1A{4;q+4plF)+L=Lr3KvW8vz;jXK;~XWnd|{H<(n zu)prR9*7*~o$T|U_$AbbHo~ZR2^EU3%$b+S!KjK+L!i0r{m!e*z(_I}I#q zHvKxn(WGJXMT-gB>>(8W>aC65oPKn;lQ0fuAN#SChHSHb?_^FsjIO``GGqXy2e&+x zdfSi7WM!N=_VB7K*0DCE`Zyme#SB?HcEqz#m_4N+##{}^Oh?a}4D>2GD-8vym2-jr zOpv@h%g3MIt;Hqj5m+(DZnp1%jaQ|%xU!=VLP^!PFm@jnyk~=qsWq?6VagiT{lrDA zN$vR{%9avQ!o@@6j(S0Y|Jyly*2j{Wx+(%55-vY>eGnup z0MQSP6|zRw@vlX zQEWojYKXp%?epAds7MtKQw=qYiZW0qWSqQ-5>hgU=^Qm&c?exWBg=*FA4Sxr*nzwK zdh}P>Kfp+44Ocw?JGeM z&AOV|^$dkp-w*3D|9U(d1^hX?m%7fMdkYh)#`;e=N0M;Arhl)IKM8ksNVAj9$bZ9<+~7ssw(+q>(x<8M14EnTX8Pf*ZOOef_HBY{_RVahOo$bK9&wq*Zk>;4j= zoMG@kkPtlzBdT163KW8h;6Xu)?}EP6wei*3QG7~r8>%5X*Nf^@lM=+wKJ`x zkA*Lcp2?kTz2h^@q^#4h3o&Rz>J6CD^Vemg;vKY;;mP( zC`dss&&T!y&Kvc{mRg8b=9P@cz=Gwy2lXlsq)g@jAQ&Uo5Z%?STR|40)x*SNUv9O-abqT1N9YE!3s*xr|G4c8wzmp@Bp4HHC(cq zcv8W80d;@#Fifu;H%`e)wvB_Yh_Da~i@)0aZ+jVY^HoRRy4pGBKm+TXVCj!Us~{ z=*AER=&VB3K9bj`qPcW4jJvQ?F0&DEZp=tvj5m9^9$=LAwBAnL@JUsVNvnI^cibI2 zjzVIZH1jC=cw=MP^rEdS*di}`@CIHHg`4Y6pY9$3)sFAxY4AUtt2Wp4W2KUsjk1a& zn8;2}9Y;=Z(NC%V0xq#HK|a+i6xLPT41PYff`;aw+Y@6Lwc}^qL1AHzZKJW#Sa)3k z%&M9;#j49I`C(KhxVenEpQYp=f331cY*z2lOS8QvAKU_d+8N|a&78bNIC#CSFHUxn zco52%5l*3HT^xT58$dPBK|>n3=EEAFq1KLeNXEpH9G_+MGL50`r$HTWD)~f331S=W zugZ78N9KyBs`0`q{#7MsdsyyaJ?7$)z|rJQiQ#Awo+8VHmFMKu>Y3Xt7dmWoA7_3- zecNgIk5KHZ0m!8b8^hlodi~uR7xv-de_?-nM=990;*Qm@{xjmyPN0=eofw>++PKPh zzlspw5L*teyspa^KbY{kwo!)SXfhszkXX9j9NyI$BW08T7tG6#E6=4& z4{E~)tb1ClPewZe0lkKDMh=~62vW1>Z3`@5n#Hjv(g(AV$s)4*Q3MY;a2#f?79@((zE2sJ9w<^}rdvIvSwu;jeCLT`BxVKT zOH*B^k)QS((@&)1PdBYz-?)f}|ApcO`TI|?N7^YeJ}&w{iq68V$+r!|LsDuW-7RCZ zr1a>J-slizl2S71W`MLv2?8U8F?x~{Pzgb%NFypJDGWqfN`Bw_{RNEU*xvVf?)$pV z({Gwk(9QMFHS4Djmjs zW#$y*1a8eCt3%7VyL1~IQEpE+TScPXHVakF#e?y$y_mWXBAiRx<)3F~LtfF*l(FnV zEpj6k7^*d&-dNQSyJJdS1e;DBQnZ6o6V9V$q;LVSre1&e1a+fbL3=zKwj zubRm=dLNPp1ID;+ES|nBz%#f9%1$5w7FfNPV_q0MIF3{+k-x<2MJr-=NG)@ zgRy8Bb~UWph(K@e^IkK-6}sv2&|^OkDvIoHTf~kfu}4dsAw9U>w1W+%lZ?(J107us z`cu)>M7Zep+VZsMukdLQ#g!3RG)V_xIl zyMBYL|C_ijfaVwbrjFfHH)Itne&-jE7%Xk8-WlqC6YFl4!wXZ*2`?W*zu();oLc5#B}jcl(6rei4Sr zQbY)w8`6xwZF|z;CK%!(u}X!XKiew4koHskO|8SO=PQo?b>(C^XBDjXD|DJqX18OS zFf8^y%<1t}E1+!nL+IqXkb>*EElx1SqN(1g##BBMJLF($IEvZno_CIWY~@SX;+9bg zW^j_q`)g3=nKn1)|e*C%f#_G7JhzU`HuNW@O*7f(U=y9jZQNt5!;=(n0q-bwdu)Uo%(V`iCDM#O~n+aL=27K_s? z|Ij|y;?A*L$5Eyf8Um*S@E-|uELSak`G71p^v1f(w(ckC{QFv7p>`1om(>h!3Tg!( z_}2`dz=Q=Q3&VkjCr9ADmroA0HX+|zRSK??2jG7G2tAH<&^P+%Qv)nla4C8L!ZS0rMzC86wEQ@3>ABzTZc$?77s+lf(ZyvBo=v50EP8C;nkY;*e$#IT}0s?n)-D`{$Se5yMFFO=3T9{lREks+a z*7WNyzU_>IsF8#r4JVCh!Y=PXB7dpWX1l(jtw0g1*dDV8+;qoYDL{l2q)05SPBQpS zAtq`3nU?r}pvQId2FI!$5#FLH?srIHRpEAkFeQmqE9Z%1M%vJhazjk0E9h|;tV zzjC}n|Eyk>{tyY-n*mR0`X>!9e}V^7!Y^cNr72ClYaA3#?71At&Xk>ifD1Vo*L#j} zenzV9nh(wHecC5yMc1_u5sebus}P>(vtu&C?Vpmqr2@Qx`%SsgtN$Pro6XifAYhpd zUCNRCi$B|bg9eyt)t~N%+RwlTM&*O?m6d(@>|voHgZM;5)*Ccs^to>NSl&6ritpnw znrtmcJE~4x=g8{33l+T6Hr!|p!`+)m8eH|GdIOP>Sd5^ZMSc)NdTYxRTQi~l??5P` zE;;X&5id`$Et?;$xebzScvt;s#W&a0SppH^I^Frxc`eT0J8nI>U z^@I|4q&_d^{8I3{nt}2|dssWYO!O@j?TN;} zX|q7bav}XWNz43vT0Vz76Fr`a=4hTaYQt}OF(dqJdb);)vx>LWDmP&nji)UiF$zU0no zP$uj&QZTuYua345q`2|#DUqsE$g+7sCuMx>hVkbj1B0Amx$$A$hyW%%?%mCOm5)++ z*NvjT5f~Jrm&Rz?;6U4v{@Cie>ca`U`d`L2%jjGusjxdSOk5jdELi^ZXI$Ua&_J%z z(m(?IlxOk!uP(8qp_&+GSH70r9QuFr0*4)mpU*lSr}?wq14VE5ulDi|jUNbG6#ojQ zugxF7s6qbKi|d#PlA{Yl@W>x(*K!nPIV!~zIca>Df=c6M_=_Xw<@xo#!j}(5unZ>TRtQmmnO`DVlltDnmP)g^ zbHLXUk^cEDYNH8}P@Tax_{90W5>nccOCot7meb{1VAA^GrJcJwdi}0J(fgR!vPR@X z<$O9^FAZYsqmFe3&j)@Pgw6;i%1cJZLFp<|+2OgTRvfMB{*?sUhaR7H`U7*sFB^5} zHlOitkF0J+Mh{;OE?6HD`B)!J;4D{xn~Zf{GneL5CV{U<;Q>Nbol@_&wnpFHVXe~mIuW)PGIu5eL-WOKTc>Dcd zD@#FvDaX|1_=Pf( zSbGJSxG<1BW=;siCb|m<~1U5~suQaKhK>{2zivH5zMHyhYo|3M%eQ zzy3Sv=BnUc11f>Ps?{Mbt|jd1e*3vTF~-D!PJs@F3XO#Z2ua ze2>y2{3BbX6v|G~!sIg!Y@hh@G+Q4TBPdXEc18IgXw>PGm(_P6N7bB~;o@MzdrGaFm<40^1E zVGyT*39LGnkFd&e2eguxYL+Bq&ZXofEb3bc?E}79e(qitD|0bmkJg-I;AR_4xVZUk z1sHxLRvfYe)&P1Z)Rult>BE1ZRG1Wlv&?sGumOnbnC?}q zciL_HcU1&qDFNi6>ZQm)eRKaC)ZlQ?n-7BzwEP9n>{P9eoUjNJKemDzdGvJB;ZGTV zyHj^%SDQY!^wy~4_lRp{C+IHuq;`?Or4PS9*!=h?_<4OMXQ1BN+Ov|BIVV`pBMh32 ze{6p+M%RtTi0lH775yTlmu^jJ|7K(Bl+9`9U&N?35*DrIw{gR>7nk9RQk zw1RiP+7gMg;;4uVhzR`P0(T!iUSF&^Vd+|_G3&gEebZjEn@Ik_c?-h#jDHW?DtCi_ z32pQuQl#TKEaKW~sBnYXp^c)zSgb4gyytO&QZ|tL0plufqj>x8k$Nx2fXl(7Fn~&K zo$`eH7KJywwWDB;HNaSe)kNQ@jRmsT8>pM%VUfo7l0RkwuF1@>OmT$J%^kgl@E`yo zP)z;p6DwD%_(-W-8gHk2Rp8PURX5$e;b7#^DPVZE8Z36>?q(xDs4$p z5-jYWJsHqY>#aGqL)G3MYc`r=y(4{V{tSBLSY#$lX1r+?XBxjTiUrNT5PS2o5_azD zA5?sYlx5*p7~$Vx4xUEN*l5#EP(0$n&MfDM$YoV+Bb)f22>!@3c{QeT6HNKG6qCR} zGyLM2itZ|cHG)YWe-AF81@;hBU1&U*|v50HIjdO9U7Zsiy zI*|rjETJid>S`U_#r*-*Gg23r;`iUMpD|9S#gA>73$Fe4SsMNM*)Y`S#YIhDryMTv zq?5#CbkZSGBjFLjBP>!HW7iabp7|20JM_qkzLRWe^kG2Ai=6;q{AyUG#F78>KalHg z{beQuj2#5pbYMY3?e{B3{Bs7sG~MxWC45ycGOKpj*nc-u`F_kZMyI=&+rZTE2E9fU z#1Z{Mkgto7SeCuQMjksR_aN55$*ZY$RB_z(iY0t3b&T=^$K=4vt7W@<&#WW8%2VCj zI(}3-3xTUzP_1{2OXeWIBlseDTIR143zrv*>F(}t8ICql6>rgM>`{qi?Xy|^_%yylj)cc_Qvy!YrR4b^$d@B~A_)|UllTvGZlfl7CpF~+rhVtF z*7kaEQn2siFn1e5N%|9w!Ir0vkslYSOi&E7P(xhWV<7vv=$0ncSJW~PKho)Z z*07M)xaC%NUcaKcn#>vfrBt>85qs}H5W=Xoh0A`6ETmy57|O8W;zAIdlnt>n+#PFQ za2Ipmp3L=f+q|H3%+E_?^F%VaFOX%lgrRHFDFJUFryK9sIY0373V8ku2qb#F%*If8 zIo?TpiM3RKP6G;0W-SP4pR0Q&LH5qU^Pu1Q;3ki z*S>D#|HyuN2g4C-zX*2o^@^5EsAc22_krJ44M}(F-aDO}Qa3L|MI_HAt+klo(w7bQ z4-SIS(($oaK{7iAiZ}?pGvQ@6k3N5ZN($T5Q3ULb(#lE@3DZWmtvej8<`+ihXnhcm zye%6Od*d1AwqxBpQbbdv{OU#%D>u&1w{LL3=4M^}{3OS@!KwY-{0#G==~nY=q;mVE4f)l(ESu@>u@j=C0;EcT782M z+#TyCwb@Q<1M89%z zU_i`_m^So?juXcb&2>;1K0OQyrAixKFt9c&#FHQ(#YdACoHgbagtS{1`0U>I}GvP$WRPJd?77Pd{Nk`xnBiER{OvOj{o9|OQG}} zq;w9C&jkFt%6 zSk3!@;iS%&CX=O&XVjsN5_aVGO&Gnq^_=j>mCEJNh31;#ShMRLJ;`Y3WkGto1KK~c z{|)t%D+__rIeRzT+2|jXj%;Uc+gs!&4`M1|*xfq2yk%<~0fc*TfA^BZZ=8OPj+OVr(FZdw zoyh?G`^mn!cK*CtYUCZ7&7_HFrMXfNQ_4kDz#?l*`n;2d}Q zL@+LC$3qdh{__+U9#6;iW1MD?e~ck*{-kl%0lXn~tM^49yTr{By?-1|6>iX`#^LQ!VO>Rpp@;L3ihY^tfR& zpMBk=SB7I>>Hb`gVLJZ@=WyGrjh%=4C;a&1$>r^?@P2QrI*mcQJ_e{Yp8dEQz?ci7 z?7-YYS2JUnfCk7^gE|=mEi~RRJ+Levy<(d>Sfe;j=ZNwy=I*ouYI&Dy&5E&O$}xyQ zmjfry)P!+FN}^^!@@!)QGl0Z8)nS;v@s!w<>qX{36^Y6HK2z?BP&m%O4#m1sp4JqJ z+`>nX6rbpPGw8BJx6D$Rh-_w$>eZ9eC@S$|EmtMR)#}zK1ZrFB`vsshJ-e0Ds`=!v z*re~JOvXO8uwZ&XD0zkUKHyTwSD4D!q%ORwLBKq|XnwPjagh8Uh#h^D?5^~Y9QPPLp%3S& zO3UtL)O3MX&@EbKRAJV-3=RhRfW%=7k6v+XhWLohzUdyP6dgd}63_`Jg@^{CHum{N zF5l1y(9AR|&m-kXX(^*cI!2^4S(T3m$b2`J1hkV^Zg&Rw@p z4&UHWI6$p}W>^vv*;}Oi3}Dgh*RYuf`95zXU4;oja@*`O5L9rnq(D`EE=(Hb#J@bA{_aPG}UWLHmB%KvG82-D67u z)Yyw`uty$z698vTJ|-XAu}J-Sf8&`ISy5*5)y=B#4jD>s5xKINk2ufoJ81w;sx+NK zww5NPVBbg7mt%6TH_{x$T{{G6u~L~|FmUNPM4`zcy#Jm-{sUzvUL7Q&87j+6d%vL8 zSA!*&EAkVb0Lv!riw+sdXw%+V?hZ*hV-Iaw6A4eIUF=4!l`Gq~gdw01b2lTz-6p*r zSH!L^n<*3nCLb1G##t&+zuFt%Tb8OQva;CZL0XKnZdzIDCt*zNLM|{V#EsLhXcuQ^ z)bD*>+W|~}5OICp8dnEL(pP!FsVaaDuwstL+HNnWYdCLYx5X60vS~}RTEnOC&Hem5 zjfp<^yh(|}CT7BZ4}zolaE7$j`P?hM{!~=ZK~E|edN7Ud88|$xiUuM?Gc6S>ocq^< zCA00_q%C6RwGjmUzpmk|eU?l;86yT;Khx0)Ud9De%m9iG@!7&;-)G@r!U+N&vs+2M z2i@hFV!9&{gHZ0a0e0gra2IS~gBU6-S-CsPXiWrkwq^wkxo>*p)_DA5WjWY7W&5#N zo}RE_6|fl@P&Pn!3MYRiEN=z8?(Z*HV`#1y@7}nOs32e%?;&bK*!5%V+R7$m>u`Oy z#|i~J%W@rU!gSJUUC0*9F!>E}D4j9#Rtuj@On=UYJ1R92GBrmq|J%6rzGb6JluOql z*{CDj?ca>PNT@Yal=ZQZ9^LyRs02eOHwJ4vdn-{yw^l1128)2;1d9n&W|Enh)GBeD zAX1~AxZoaOtgudJ{z->w45M49e&7_*NmMwsa=a1>S+O>UW&0DZT<=xm!4)Gvfv<)> zdV~iV!>?V4i*?@ZM_DP|dV(>U?tvc2pR zvT}K(hBVB|T$BJ`z?McK0hVkA`AVJ%mC1}Q<%S5~_@b#ACaOZpHe8eK>u*tY1uM}5 zm$|C)IfYDgU(YCa8g9fgJ@_U8?ihlOhf=rcD93v((i>P%lQz(ek7Du@YL_R-MASLq zAx}G5Pu;1BeRK7xMQZ`^_l*F=<4?|eQ#ZF^@5aZtM2O@0TsPN33kpStJWXeRHEA=< zurSRthjNS>)BlD~_3Vq1O9wPmGRpDq-|Gpc|3c5|)sk(nFqs|svVEh$o9Y|Q)1F@vPIH*n|~GE~ZwV)daU$qV^w_4KKZaN(gNm4+8v z{eg{J%S^AnC82{u^~y%T4SUP;U_o~tzEiV{O>c`MD3TvpQwP!uWZdaQ$H++lu~5IY zy`1-Q{T(+&*~bzucrYQdOQTzHxa)h}{d@KQ25t+M0K~Iui#|BTC^@_RypN5^Mnc+O zM<)?UrbOnKMXAGkU%R*#qAs+NgTqsos#HLB>O#=)7eQqedIQk=+`E(>IGdB4T<-4I zTNhteDWL8WwgVes1rX2G$ zbptC@Q&Cm!^=cEOK~%fV_#f!2de3Jmv8yz) zV@m`TPt~0G9wzA!8K_mQKi@0f{dH4lt%ev&i8|r10*bF;=%7rtnQ2oLAk^`>GR0XY(Zl7_TbPmVz3@}qrX`{#8J`4XxLcL ziLHqFfHR4PdLf3kSDGy^)_$i+i#whh^XF03e6_&s0>yvxGyj3uv`JL7ANIcA@^sb% z?&TYTbkiey8;Rz(ILgZWtjVhiy9^Ne*HiCo78@8oftwc5PK~x0Fw%p}yqk6=7foH- zSH%2QQlx9Jzq!a#v%LiWUDwxA ziBoFAjSSyVpaQ**+RK7A6M4JI;VHR_kO1Uo^_pJG zy|mfXNd_R3S0JY}Bsk)&1HR?F=$RrI2^C#zx0(CwN&jvgpLpj2X#=|niXC0G*u<*y zPFW_pLRk~P zbr#WS7Y?-H^!`my_C&V<>qPf=$|i!m_e-v`j}s(0{5C`Cnn}dbopjARE`?(gLa%%r zYCcuGoTVJ@5vFMUQ2<1MZ)kK5$$TX9*linPYgo$T`L#K4)5^hpfs?puDT7U`;zT5X#&>;2gX+w;p!OGTQJIQ z0%Qnjgp~VH3u@#W)Vd+Z^L)Yh^RoTq0VZUNR!*4oRsbdRlHzi${%T#inN+lW1iOC! zuWj|Viam3*j7F^NX}9OOE`4~pDi9m=)grFXxcWVDY;KWv7{KHf8^;l_MbJ)c8d*T1 zkLACf$c~`oOgb&w*?`~*Xia?H=rRGJ$dBz)IR{z$Mmrr7YPM+iDXyH z#w6Txog;|Ow=)ZiVvYssilHFt8-*a+4tHf7jg+croT+6N{r>vtwiCZ>IP|nW5=7hJ@zBZlZS9M4{H1OOl6S+`}3@hN0>bE%E^>W_Uw)!%1@AbNvGEm|u*y;_* zkkgkPXU-p^8_I9I+r=q~USQRB;%^TeO)fu?wPt9;7q0ZqpF@b7w#(Ri(OoG~lJ@B3 z*R*$B)5|lXze^%F|39=05vBa~*Qo$(aMa7eUeXm0fG=Cx3Et?{VciExfOLR@wZG4Mz=9q?MCu>BelMLZ@ zN4w!)E3WLkO8MV3Ob$^w&f;b7g2e6+cN=EcH769honCp7Frr*y`yaeHwCQ%zE8+<` zT_{hw5&S!B7lDqN0)q0W; zzfhYMOcauMc>-YRI~G2By4{D%mFq&KfF={&hrjpzNFeD6nIGh^>AmW}F# zJ|-0;A3$P~0t9i>3)Kb+_qX#oaj9t!?G*-9MNVCdKZkZ#sO%aBsvXKZ@v1#}w~hL4 z+q?P2Zb+$(_SN!uIm?X=!@tgfZ72u7F;*#AKrMa~^sja-Wg;6#O}-=*&wHF~LvUR} z6%62@d@8Phr!+L{Bq(zUwIN)IqDE~UWS%+OSqiE$Mu}+g$4PWkdmBn093!^`HGBK) zZ~~;?_fk{yta4mhEKlEwf83Sp35Gnh*!=X1w?w9X0`kN2A)BYh%-BmK7@~mfk^r_$ zUXIJF6E#S1+XKCI179DmjW;l;kepMU=`9bbTJ7~bv~#=*XZ%$*SM1Ab*rv%Mzf}1=u1uhj3dUcE{Qy!x_8@!9(&I<)=;%;VOkDa9p#sjS4l6cL3JZQB#v^x?a8@pmb0yN|b|rA5h{~$3{Os@P%PPk4&+*Zgwuk|3NFtXhhs*O7A^-IYz$@jn~hbB9p*M?4%h6qXjy+Djr#y}2>N71o#JV! zWHl9Ynu?*^Q-UyRw?Xbr=%rk8%rZHF|8;d_&2aj4QiGZyE8Ln!I>&&bjE#DKg8XI> z^Rl=MoWWXTPc)8(f)#wq!f6_T6Z^ct_USd|(_bs{n<*|Zmsyl4ttTn?5cdg@!XOyx+ME^d>vA*b$InXiz6m}_RlkOs zxssb^9HKQjDxM5Afbn=GksS8dU+rI1q!XJ^H(dI+v)w`^Yb-LCQ8f%5bk9slly}I> zbn6)0am`JF&nf^rz3pZ;4xImm1!?lHN*%iv<#>A)3HqroUKJZ^q5qpUiQ%Q%bwY0B z?}Fg*O^(T_uew@YJR(oEaxto{9C()-J}d+cBYaFCZNjV8Ns7CMBrP>gxUv(Ig7AmY zFucZ~L8UA?l=7GB)L{AMyFUy3f(-OfiqyxQe8@Hb_O<8T3woI0%4@%N8@)dh467&U z*UXo7xZC`=Y^b+7Nr{8pY<$J~P|ANQy8fDCy5x89VCiMH7GMc|_}r1>ZG_X@^a4}q z5j3@iSV;I>yKGHO*`?E-YW-bt2a%~LL{>UMi06FqDertN8i0qCHs)=Rt5qYIix%}} zhbIr$cawEkGu#3aj!x|59v%#UzIK~LlUP}c1ohk&>~86wNZvB;UGP>w<`6Kx-i_ zQ-R&tXj%Lu=XsXQIq+#Me$ER~to1Yska6 zpM+NPYC@#xH$UY_?pn#uu{Fmt(gmVk#LR{?(Pa}!L7%8{eL8t%3%~t!J>~U{Kgcc> z5-^tcqb{2C`8vQbxDe4D9jLU}gA8MUcL&Z?-q(4$lPo6#WJB5g1G1gh7nr^rOW_}; z{z5j;-Jp;n3Yb<>XAJM-;viXJZfZ}0`YQyIEV*CMqAR0!#i$a8oW5Z`96Fj3jp zN8c9rgn7X~N`MvxfG;K;q(vv>Mt zt@dA$ArT9j-B`zi1eUjGKE`@+7VvtHN{@d@p8J?H@yNykEAhe=c>*n9y{1I!+3$Di z@$U4v|KtD>1teik!_hy1D5I8vU~wYCrKmNuoVadvb$7hK47^^B zV*s6z{WY2hDbS{uJiRwYCNJ{?v9h1KdO*w=JKhg(-@_j2EtG6;1WO*y_(C(g6vrRy zCv#)Cao3)!x*Mf{t^s52!&4NuA62nx!BM#93|XPpwx*PyYWY|K$3odn*O3dc|3GrB zxQVDSjvs$TRlZ&KPuopo`t=*lAXw~;Uy4i2-MB4CWGLCT%~@@Z5=B-=^ zRutKB3qHcDe7)6T;Vt$@z`)J*2M#FtR9JeF#r&J*{~)-&SKRj-pQyJ;z&`9ue+IDk zM+nsFP-no1cfa5kwiUC4uu^{;!=!1uCpoPK2~9ZCnYt}G3c0D(;F{~zHR(f$xe;=^ zn*LZvJHa9bkyUnQ0MxUaTD=-noN>>VDN%=9dQlzfUYJ*#6Nm%F*sLC~>^1x;hB3TU z?BB}iWHH=KfPDJQR09>inBB5g(d-xh^~#wtAPo!vfq6(sI-q^ zV-L)m2qr3>e_?Hz{^>A!9z=Dppw@{kHy9bYv`i7kp5wX3;|TALC6Q_8G2Mi9hS|oj zXoK}f@O0AQLy!ZWs%ib_>IEhFBIa?bR(KN<(?UjCEEM z?sa7KI{uCF(9?tpI5V^#)P6CumW~J;2fY=IsTMGaBi4yOs2)EVhv)QmiXQ zV7t^D8AGP-WXChiTGDDT_FxW%`V`~N@|M>+M{c(t2|x1{T(*90OIsiU#SEU>$yMmOO#@|pcnJSQBnV&jzGpEFG^BQY7vhrA!A}*!y=GO%` zasF~X#u$$A<^ApDl=qph+;8AM4`Kei-&YEjCJQ>eU64;Bp@lP}oK783dfVABYnfDI z!+^ME{yyD%Uqy+d`_wcjVzlHQAM1=8!8@>FJ=(UDV=IQ5J4HfJaN)&MZXDH-Q zbUs}jN2)#JD|4$J!e*AOE8JLmHqv{)W1216>_d*XKL4M~!>ew$SaE*B_!qkLSl4Tt z@4Rh{FPdxzusQj)*+_Z(Z+EJ;p!*vx#xjXA-^pWQ=6U}WVx?RRb31PICH%aun%}yO z`!%>?WANply^YDE7?03-4bG2-55^pDLk}JizzTnkVEq33B+N$FKKp+lQY(2C2w3bZ zMoFu0@)?$L63|Ns>Sv4cf8h~N&@|FJRn;B8aEHOFDb~DxR18G_1LMj@C*HIowO1SF-B5aX6`)yKu`=`qD#;N^<&^3!O^_w!8 zz~Gf#SYWs5XaADIL0`omgFRU=R!k>;KpS&hus7q6DdcE+A)sRCf?MXbhy)NxL?~2$opGXp=5(Oj zD%Ny5i-~O3JD5h!71?e}(_#d`abR3@v+wrdh(q18FGfh_6K^b>S8KaIILuvS@HA-< zt1(@59<8?3sHt=fLz2ypQPa(7MMnAI8C`%V9dk3#bTO%U3TF;?_pL=O??-b`bym!{ zk#fqd>4hr`F!=SAFHSU?SJz%o>>Q&0^gA~dz5ltd@j@rYey%3vktQp*g!*pfEae{N z`?1O01^kP2!`_LT>LRJ72W?haXE>^7vsA{6Z4QZ=9-%6;cZ)A@T3#8;CEve8n% z$XSMcmEB^uVScB)(PBU$U0#3c0p8dmCCSg{0m?u|F$zy74rG~CG?0IpSy*fBTT(#t z2hZ83zipx!)k89m36jnwAZnO~I`9+3O*)y7*QWs-XV6kQY)cpw&`0FPls5NfY|$yk zlYdgg?(ddceA~L%HZXFpO$smSrmof6uQT|A!l8$$cp;~ zYl;zrXOx`I^XxG=rLKeIzUDp-4OD4dwDD$Yv4+w9&$AHc#;7=7IG`lczm0%?utJ7d9GR3Rn@;gvT0BuUzD1G4a#_za+$?oE3IKlCJ4?Ne z^JCkO?ulWYYn!6dt4_JQlrbLO!3R`mptFE{%){?W4}SnOKAY^eRy71dXGZSFM2dLZ z!Kjuv zpgJUEK7>B+p=C^`6DF@26y;4ZVl=sn%i$_Js9-TD<3lH+DNhqlD?T!vRfrgjGn!dq!TE~{**91OYXgv%5VRKG2U{J=@6Csi|V1W zvmn#e(}L@R*Pj8R3n{HYi7q9q@NaYb%*LUwVR*x*)eDrVA?KVrVn0?mG9`o~nf^NQ z-!=NZv`JOmdI&C*>$V>Z1{xi+ktTBE=Z&R$Jx}op_dk&7I4p-X7by$P(D@f!vT5ItFsv*ir+YR~rPVMw&?xZaZG*la>Zok%ncqN8gTa|p&^A@BXS+0giJ3*CfiW*^d{85<@{pdkYaN3PO{KT9zV6vK7^2T(BEb6QNBF#-QtxniJDRFqt zK8|DXVD9%iTR=A$rJq`klY~Cfm$7k+d^v_>Lm>w5vD>{dWxV1^S49{Dr3EZA1&L!6 zd?_23d>EJg5KWDV0MNw!Lhffqcj`^@X1bh3H>_kl50gO}1$s-)P>W3ohS5OOGaCOw zHLO_A@_f&@#*s9dbvx zFr!f-^Iw6VJ5nBvA4acb+3Lf_+r;mefs0o&8jnbobpQkQx#?sgQf-?xq)2#LXD=4c2Be?<7DA^nS zu{TTb=ks#UPUSE<4-Nm?+x@i_q+YO|dq^7(CN3xeI&FNE$kN5|#P#POeDNEUS%yzl z?$Shj@B#qDQifB@MJZjXZiJqv#>V^i&l)v65FeV34WhX%OGdO zL!ST=UjaZqH_$Vyc?QPUPF#!ETqdhx{M6Yjok)f6TTI*8vws2nS5sZ)2-+qCwkKsJ`d@D z!M#>sC(}dehqFA9ghWxjul|WEJV=jS)|7U>gQSKSE3(>q7YjcBlrweCXy6rcYPsjk*ljJ^35Z2&a{` zg+HJa>RZbZ0IKKXt^nWNR?lzKh$pX~hD6>z{av<9`Da17F?=ghg_i1V9x)6XPZ?s& zn#3^t>jorW7n0Yol3VgH5n(|}Sub@^#sRzU`_jT`;jXlB$tDfx;X~CYeYG>9kzc&S zeK-WU|ic)aRFCZ#3%RXjzLidn%hrKQ~kB>retsfRx;MBhEE=xb`Idr zz4dpNWYj_fMAv=78qudWZ5JM0NKm6<7nsLCoJca^YfRpG7;vOB(SP;U0%{`?<_63x zQgGMHZEQ6agUjdRR6VCC$?LjDMwb|^!DHAejgSWIed=F0yjj|{x(DRvEw@cNMeoe2 z`ciAUc8+^9WcT4p*zZ@-&i^|$ooroxo*!BiQ1;5MglWy`;`X0*fu!(IsGhdC}ii(t>gH7jo3Qm`^)_3OcQC2oI4Deumnz)h8$rJ@bT9 zYoCcBum^U1wTYiT6!q}@>0fg&Z`JA}O5M6vxVRcXdtQ^sv*+x{#PO2_AANGgSIANX z3MTcWG>@y%oHmWR*zJx$uqBK=@e1iCrY+9cJ=;B;WlB??oPoz8&+Fc->egRFC${@< zHRUCn%MKg{YpZv;fLWMQ3TF3;6L+K7{?_|dmpOG^!;@Gk;l5#pOzAIck=HekT<3?J z1<<$RwmbH#Qqwh7?eOc?R?mTsy^H$_kVoLC3BUn0;@`OzjdT6_eKW6Lm!w!$D{@4< z=v*=oC3LFrdW;mQCI`t8t32H~JXn})uaC8Dv^I&1%~VFzfB-LMC;m?Rz2$peL-s!q zl^d@dBnf5PdDLlLwYr_sE|tJ*Oj_r1;X}_%WC+FrXcO?1yRjp^%H!b5|M=>R`9hAO zV(+HCOPI&f@`*tBN2bs+KT66RD~fxr5fm4g;z#5je;?tQGvN_9a$>9dyq7G)9a`;M z2^0^QKz%>A(@-}KVS(r3hv%qgU3aA7dLK_WA{n2>&F~2hOBk5OEilRcJAkoZ8E!w& zBYa%>fu#;X-k1LYXT`|rymsJyE60OXi;)$P*9e(Co;0=Q~g^)+4To5-X-zWuZ>$@uXt4Hx~woYPyOFIvNAX&7FO zqqGdPmw5u!XIT_E(x0%@!d2&4KA$MSi@L zE%DAZ=DaR=f~xyWY`nOh>!cQEa*v*Tz5>VOKbeWJ4*EQz6-K{?Yn*Tb+%x&t@2tjd zE&o4JVNn{Kvb9I(knId@sKuE$Yh=rJHD;f{b2Uj7Ns174FdtY`X{LcG=|KASDy8D> z8d+XpB<9UwapCeY&@pcBXFM+R(rNL}ZKjeLEQY!`n8Zj+QKi2cZ=pzhSgYvgBrPR| zJ&R=)J|S?419~FXewy*@$;FQfg}F8?VnPTiDtE6!Aeb6oC$7%=`4W2At`-8zUAgx9N&$I zosTu(uZ=qoBX%|?nqNbC9oX{OWI$N3}Bx{WW!f|`J1i53W-XV&D2#6@^{ zbO0{Aj{=q!A(@cVz=-YI)^`J_S-YCX4q`_tD^4F1W-my^opx{`E*2VvNA8;}E&Lp& zf91Mr5=EQOd-Gh9?faHwKCRNwI(ipTQ$PCcysr{%AO_i*L4KPc4ZOt6o(po zNh{7D0p&Cv#xcz~a8tI}vJAnm)q8476ImMif6aLjix-^+YpWQ6zR#7Ia5{Dct=r-t zxf|d@3BC&6(y@_52`iCO{Ku3#7Y3`Ii7Bw~4zSb`pm-SjNNbk&efv8VVOb%eF~7J18;eoxHS|jk@yuD7MR zqsFMPXx@|sbCB8s7u56vLf$^YRMX(l=ALG;7lxs3C*3k{`&pVvs$P9->LJXgXGV)f zZmg}UGQ-|&Rq-`8xxcRJxhP7TtolO|O8yDf5Py#;OG_pK?#ST_#oWWB&EJ2+kd;NeJ%3}C(@e}WU~<;OR-rXR zu)q>~Br`$CI72*@A|z(MLSIK1OA4|*a45e<|EQkW^3#}&7et5aMN3rGyd<~$z(zOA z26dQ7u%z7?uV8Dl<_~vz>{XIthuztISc{EteQIr^0A7p`SYkuE6@eo?z&$f`t{egf z9w72^N|!Nv(VoR$+wFwr9lM1(7L^5tNC*7P>kaD627Ng5lJvC{r)%euZc%zfF9X7^ zH?9&eT-_x;($Wrq!FXDu%(dz%2O^kK;tuFJYoA*irvZ*ZUBoY4P$Yv}EtHQ+>SogwR=rZ7q>nLEl97 z)*k%9Mx6vSu2T~E4M=pkANBzYuW;S9dllG1d1A&4rv5g2jWmCdv3OOKL#46%F!nZM z(y^h9R|GpPMS^8UIqB7H<@hm~>nCzZ@7C(eVs>@vu@t?EzUm*?5p7^N0t_)ZOenQA zBCFQ-mdYD5sJh;AWiwd0%7a07=3-^kpPj;m+#@1tG(S>DOG}2MslP3VorX>8EV|%7 zZuveuNm;*~aa7s(57Z(3y)#GhZ$=QQg7vLNAN{t;3s-s8Ut>HuT=pJyzB3~{1}S8< z2-#o*39QCNFR@IRV{4M^Tf0{br_p1DV+Vckf1n}}vc^QFZ{cZl;^Vf&)KFQeT%@xPu&!xhW#K_r%6Vr0?l*Lm%d$PF^x+G zB413F3>kW$llsbhd01*wR@vw}T?DEijJQi7jLb;S3&1A`{|}A~hn}R<_L2B>dNjNw zQU)+tNv|IPUP`uU=_^OJ804*!F$2}p@CdV}`b&u-DTiD88{J-~ zkpa`uPXB?FtKtz+#9W)vC`aQ;Z&x44M7J6V%_Kh^i_cgN@#@q z_+c-E4b5dp5h2cuh|(-eSuwzkM42cLx+&68ID6!eo+W$V{0??M!Y3e zX-2YCLnf6ieq5mnM9<{i(Y?y@yE0cD);g0a5Ni@|!`oGExub)Bbm0x6cjuPxzK^AR z8wIDw$dXC#08trn!-6^7ap(zrZg1|*-s|@|x6|zI<3*i4Xwor9gr2~uUsqNRr3qEj zufx_t>(>aDf6e(#kD=#}44bLi0$dO^nzv$_K(2z*<1*xaT+NDyQ3hQ8vb&S^&g$>d zDAZc+SP!;K%9L}J_mvNeJ5N75cKA^Oc6buCYQeXH4cp|l3V;bs#+q_|@tLXlVp@oP zxYs+viUuH!+fDtptNM(P=Cx%U-qzz3bC!gQaiNfFTCOhFyW&hu(CVWLK( z8xmo0uu75C-2D{z@gA>-Big3MSQK{bDNx*(y4=jV2BDZ&Rt==-<>(8$|3II$8)&A* zfdErsvOqkxfep?vLv21Os_oq$ z+FZp(zehJdRu8iO8VnYg1h9Z}CE;2oedFUET^NRynq}&j!~Hg%WiCB`8$@5(_7tB~ zZ71`)WVG3R(z@Fb``H?cozpmjJP0B+Q!lOBGZ??AX3$cJpGQ3PUnz7WR2hYDXJY$r z8kU|`{^K(6I>+i>e5NKSsLyO;|5nX?`buQDust&2e-~-`?Ng-GhyMRSPV|47M!_e! zO{ovL&#P|?962geXZVscXf7F3Tan?w{lNhO1E};r6Y7$a`;p8|p0}*VJ@}@@f>PPg zN^<|>L#IhU3@%7(+fL57u4S1vK@%9590t;y6%Cq^-g<9_X8ea^80Refn)?pgq_$D` z*J`^Ovu+HEf%piYz}kS?=mq8x6O62Y8O_3WUa1CuFd<4k5E7xp@|_^>W<`xl^q&pT zvHoqDcNEu?98J42^@376krfPu>7a^dnm zkh{r_P+>_tX1@iR#Qc{kI{zRqt_xTY zjgvFCEPjz_k(mELmr44}FR`n{`Ce&~FxVmMY}`{LcVT{3v~9x%W$Up;7bfC@fhaZLYf2CFgbj zMp5gE|JBOfk$ZWn6%kxRE2#D=tMpCUl~kP-Lh|iE!$%_jwo}fb_ouP^cMi+~bRU>4 zVW=aC4c1pgonhnrb+BW@iHq=O+yoGsI)}XDi!hx0hxL}2!_l1>O5hjR^USZy0{KjX zxU+^`#e3eS8(`DTsxUb4f_w%wi0MslFxm^Ok=u4}9ea{VI6|ek?*lDJ&q?CtVh_*GzR6!9mP^d< zaic!ia=9SqLD`PvY~*%BAAIIEAb)$I0==7z%_0A`RFx;1yLajt2hn2a`+R$mH1%T) zKh&sEQarLN?JXVd#0zuT9|%j<$&9N5jJC%;XQdjr$hX&QP;OR!2e z70Vmx6Z^+y7_v&19e6qK{R%zSe!K9R5`{cE{qcZA4W37L7M89E0MD-i3jj(K>rae7 zg^jr}uf-Kii%E~5(6ZnVw|fJ6A5TdBL&8RF-mpFh#X`Yq%Jd64>BpDGxlZ13{odaWe@<-qw6EFh+HOC(eiT+O*2=qO>rd-!#iu`kOlt&WN$A7g!UmT+ z(?UE(t5W8stx1V1V+!DO4%wY>ZV3jAl@QSseVOG4OvTjger6U@)e$fi6%58eZ#3SV ziuXvM@$n?37DE_plh{Du=wl?lf7p7#&OZ8xTNrGy1|QM$w$~?rZGsv*II-0EW@XT= zaKrOI5RH-D#whGjeKyGQrsTE3yF{|#olFNw;WS;C7j5ztRamXuq+Q&M?riVOlitzO z2%!+pwZYqy)_tc7_6w|Vg^r*!{H`b8^Zw5?Wq`l+8$P+etCk3;o?UDJ4LMtN(+x}+_DGNJ|VnGzt#D@R49B+a@D7W zmgm$9x#fMD8uY0CjhB2cC!8hIa3ip{vxYnAqJ>2`>9^k9ptR1=xj67l1IP7?vv8y!R}uz}W#= z`1->!13ec>Z6GjCBVIcGYgd1CK>WswyIToLgidKHhVCi@1Qk>rYFl3T&y1|5APWAb znF&O5CZE>)x|)dj7LLv%tQGY(Vg&6RnRAi^3gLxlD(dvluiIA*V5c4&7r1InhF4Xt zWR?f5&r7?;gkd zRS#D^>IJB3w9$`%0}S520Cqr7XPIx`eT|E_wkg91HEvUq?lIl;$>qC7WsJO=X?!zA zRGQmTO30;fBrtw~@mEqQ20VYoe54&z6xwxk3uKY6_!74>~=_#K$& zp23qUR~Lz(S!|M)C@V%8oJ7nA6TZ!>_|pPCsZ6&~nGuh6+}67Ov2?uElgOot$2WgB z7uko>Azukz|BIX_r=Tfz`&0N}Il#s$%!TES)4G4jSv4y1<-)`1XKE_AiJr0Kr#(&d zwbmqgze3JPw`XUw!PFi~g)TRE&JMVB6 zbQ;prMbm0z2Lbkc7nM*@8{&X~HtG<&OYWvv2S=<95#P@n7L`yNugdvkq6lL*9wJSL zvEw5j20blZ7!eLCxQ zhO+LK9VM5lMR5bGI^R0%7}smz1_5cZ@&ay=UaVYj3UvuAGkhunW5!X2&d#4WG|#myvIr&imJja3cAN*GDs5Uv@V z`E-)@&h^B56TtLQYjJS!B_K@x z1Hq62WcxJuw7__Y{AU)LQ7g2v`u(tM!&sGFYBo;Fd_crG#AW5t?*k50(Rlvsl_hnj z>V-!Uqfsn`H*TKyzU?55FL1k6$Y;@fR*^25R3)GpAr#4jlxX-Lh-WbR`VV#uUsYA5 zlMoFTKmCU7`A8gDT$wVpE$Y{}_>=fg3zr6;+er*P_^3 zFhn{^Fpn70@ufW_zTt^fIDpExh^y00fjQ}AQU$v;Sf&SB16yhYvEAR9v(hMkuJ#=q z-9xjDO%u0hXRZo!yWSqdKsDTy?1_~~)KqNqiQTR?Br(is%$({UlILch3ckQ7Z8#SY zH;)BNX{LQ4A63~X5|()kU7Non!+rHX9pNxr$s705DNKdjP4r}zc!wE0V&~AojO!^Z zw6|Ef*ZlG8rP-as)A!zM&@a8`fi=Kr){WA79zg8Uln&(=Wq6tpcHLbcrqUaL6tt>8 zr2Pl__U9q?=u;O{>D14K-;JCH<@G%~ZJ!6)V&1B``pv=bCS_k04Y)B#Q{&4qnqfEF zZdMFIJ(Z;ZfO^kAxgl27NuW!}q5?QX=ZC;X&8~IP7asgna1-8E;c>*`!^TvX_hRVuI3mYrt+X4S58} zCfBO0`Q+@MW%KK6RPiyAHi=`8Y<(X-T%}lwtpC>7)A$QFf4d44Hw88L(^T+lY(Ua= zhGqdY#aPLyzI>BExbn@J77fmyHlzZp?N%qoK}{q2Jol=(?BOzq)1|;R^GRIE<9EBo zpajxbn=du~7*XM~FYV_Q>0S0iG3hbCj9lSN^`2-6cwN7Sg8ETI$QFGZ=TIb+=AbfA z#lzi*$e|qmPK~njqd^qaxkyKspK{`vA1CdcuTJOKvm#v)D%Q(dJ}+9(ye z(o|dS386~jv*T5J7Va0`;(LbB|nh2xS4PzOOatf(8m}&_~osd5m(U!?|?V3 zX&r!Io3?J|y3ocnDcj@7{r`CqGht3KyG94NCtjKBK1PpdK z_iu&_ybs1SFJ{f>xk$~Q%3MG$NqE{{o+Em0URq+zU8w5utvAJ?5qyn>Lf`P$V^E8N z$!yd)+Gr}Xsygmvkf$yw^2&bM$~gSMJ`|1cfp-?qS?G*t4+Sok!_1l=46!mpQ<&Xp3-1(HEz=T zdD_#YRVVq(5#zAEN}S>kmdpS&IIyRGaPCTfVWaPKIWG%!RKfO3+q#4$>&E>SH9R#- zgvq1fY_#`T)9f#bH@1^YX{^GYdAgimBg*AF%1+|8dwDP@ch0YX`=thaF)tXKz&0I!$ez9;NB`N0xPBa*7`|;H`Y|B!NsL>bTmS9b+464I6^JZ!{E;?%xQwD#% z|M0r2g|Yd&MD~@9hz2>0_@@AIPfIaK)w1UYhM_$ZTl`szm>i5l*ynk@=meu5*Fb*c zaDVa*qv_nGTff7gf*nSm<#2l073{gz`fAoyDG1J=yPr)Ae(=e^u;me~XPHot;C}1` z?y<}Z%xu3QvVt_nYAH=FmOn*R1zb`4U_xo+(kop6$4 ztvH|X>jlCCD1&BbBIpbQjR28=XNDXS6f~dy0pZ-*y)2;aLN0PvSJm594-68o1t!+M z)9>@qCnuAQ+=?{QBQi$8-~Ak;?DrcH$VN~3sbxd_`tejEZk~}2D1C%G)3p^;+TV`) zuqPuBfgRfw1HXit6(- ztvGIVk%%?VN9Z5&Nq2pVYP|M1MIV^KuPFo*A|wOlPfTC7CcRvk?U`x)6u57%g{NFt zxMgF59^lvCNhN4PnqJDI9>|@r(<2M)LVT$*I*^LDY<*=-^_3H?wvV%AHoGMe`BsxN zRz(*Z9Wm>nHT@9=!>dkyOV6oQ&n2Txn~LZpz6PQtXiCP^^npWg?D<|FnV-U9SYjey z10HmL>{B!9i(Wx;Icc>hIGy7Nwb=Zi$Qh@k{XhWP-HZhDPueSQvPYwZ6eJi);p2Y>g2+wD}k+dlrnzB*2 zrR!u#z+}}#J1O&M&BRyW#?XZ1nI&RXHBM&p1UM(Fvy}_RWydIJqyP%+qV>T?iRWm+ zVu7pC0Guh2IvA5lvkYX<)vOqbtS(`Or?Qn%#kGr$R(F#*#|PMMAbJaNS5yF$Ozm0$ zLWqr2$SzfEie{myIz9nhGc{j@O@3BY%5yh-Ed1>a{mUNT+RPz@`DH?No8EdB4DO4k z{GAlrkPdK1QE$&0X>f-VyP(+{6 z;1hD$K~w3(9F%2F18cDy(ujUs6hfe(%tUX;q%0qH7e9n+9IZ3XHjJ4 zVcLA~>|{i;?of6@P6iI3H0>4gsfc6zNKm*W^T}8lqX4;`8idNT$aH{U{BVx-5#8iG1iEt zKK5TB?`GoXOL5m;G)J~`zLV`-bS-q2a?RJXC**YEOgC$t+?g=~{h}z*4 zBIFV9_BB3dky|tL-|cD%W&2B3oZOW!fMdeE7i>A60->*$LU!ZTo{pNE#HIQ!;!puUST>sEyH{KUB@_~9?SNa!VV24#%M_hLkj`}CX62OTU?xhBBo!GO z7~h15ksgnd+k;k3;8Y?AmTQT{Oo&JZyxsl{fMsD{>+aMr2-BGojL!7%ABe0PhraqL zyR)494e1nY=W^%R08e}PJIgW`Xg1Sdh@q&p0fnIQ8kkQ$cg2L=m@gr-8x<8Pm6EEQ zh}WvRh08J}woA=O^Pd>oSmt4P`?RXwseY|nwR&9ui{ISBCjK22q#A;2OP^C4os38{ z6Wdtg=CwN>z`he2_$$e9P+v@6j(Ynz!ZE{l_ZBJHVLPMqmvLCCm9)IXpD%6-?Wl{gC zk&FrotgqKZP1jUwmfZXk5jR%b7$o?a!a#1-Onb0ExIlcOPXlcqE+ zNbj1s0;;mI&K#8dmCy9PVXP+WGhA8up9szkH!E*9{n9a4R?M@jr|ZJ9cSb31BvCBD z)K`CC8=VslLle1L&r!*zEPG=W7bzEAQj|aAz&Y<n;^8@Jgo5TuG4=gz{Cv2PLxEIMTAm2V{qH1O=VI)_?W$p` zN`*^FgaC&Rp(Ev3?)fEe+hZ5$)dKJ7=EY2e4w+qg?bD+4eRV4busYBmP497Lqf+Xg>4gKze(S^xaQ>aFbvpGRy#30 z)@Q*Uy!Q*Ir}g_&*hqF_F6Z0Yv)z!iSNa)j;12#MYNj``fieOy&7q1Zd12aCq~G=#i2p9a7~ zKcSKNWFVG4SvtFxl?Jk62zS}MZT$l~t8nIqWH~}7Eb#3)Bft_rq_%MW^ls*)50f>Y=#66?UnSk!Ip znzo1`QJl}wTY~KSdmS=4+wGf}`2dL+h^i?(x^z{g7MmZV9R-blxoBHlb>jF@T~3U#n^CD*${5Ky1lValTA1p{f~vp zQ8#a)SMt}WWS5tH$JIKKch{G;U&91xL*-XmwD;XM z#C@y6T=xnm7?%SF{5&Kp@h!NHnaMiY=JcpV+3MK6Fv^j^hb zn(_~0>T}CRAHaPJz79E(RKBHq1hpOWSkYNDAJthbYXvxXMzYhw&*^lG6 zHMOpdS>$sKPQI`mF-onmKW53asz~iHMh88qqW=|S_q~Bi{JR^mWdMJM8ijPtO^~-t z_$eag84h8&_fz>WjMF9Ojc1on>cC0Q`{8t12b@}ZBUL^A&&*lFFw z-=ZH@V=8w9XF!J*vD>*yM1pbp)R6)AiC2JG0JSF4%~|DZAWGolMxy&@uD8z4uSV$^ zk98u=x4X%wzlG)G)p5yRTu-_`z1(RJsRFTvsyZ@&jEF?)$zIHQcnK65avtKVkl&yQsp z@|%Q~*SwfXdXWCf^j^kdaB6o+j2pe{q~OfWDQ%2`yqS)8#}_n+X5xT2BBcWaCrexP zBjtl)0-Jq3<+EyS2Lp!??O$*8r3$R?C34H(^eVi@MFR|kteCSdQ7L)8l@G6q8OLpR{Va!I5n~JOZEGkF2LYdv@O--)}v*e z=8h@%FHLi?Aq)=}Z@_60rKnkp&No#+VK~~h&&%AUO(`34JN_|N4+B|-Nk6(KqDkx# zVt(qyfh?sBwwn7%b5-v%lXVu+ZU9tOquOGn-Ri^(e&;+|BlFJ3AKh?q|yC8 zvPqgzB2{+(D148P#${Nc@_9UM`3Lt{VZ9;TnfK81;me--T$nAf;>jywa{B&d4PbRa*a;T+c({0&k+-K{SA}?h zWC(SvF6FM2|3Vx+1lbAz5PY%%ub<2J7rc;lt@UqFyFYafaoB&J)!a|RWpGoGb=BfR zI^(gyg!;(00*fQ7u;`6M;3R9l#EJKEOlj-DfI^9X)qbjB85dX?=1qBE?)vI-{{BlO zm5O@YHVXek(xSB2+be>#`5%sg7aA+50bQYG&wKGS^jvcG{)JeOZh_rG!KY(e8w)-+ z935I0XuE%~CKY}rCEepb!%Wr=!})K_itPP>Gkn!rR{E=M_#bFOv|vXgmC=gyI^9i5 z=c=9%j~0H(CZv%1cfqdirvX*#nIW`YCazPe#{(t`vGt997ZDXpe7aOfFCQ~@^GBrI zLF(@n$OFTb?WETF3et#J0=UNI+=W^G+XDAH-5K+chqkAYX}1y{IDCL}9Ub)*?3{~c z$H7<2AWf{dgR=Hd0Fl6Jhu*CoGjH6lq3X&0YnwC^8n%%)g^?mlj@HQws)gdqzBF3$ z^N&kRI}>Y5R-}b^{53{A$S4k0V$i!y?xegj{FTPorUAt!?n9}gyGl~3;(;0U1bO4| z9?{QT)RII`|}lpZ91tLmTn*Qt$E1#eU;CN94C8p0g}k3 z%D&tEDtqB)u4v{UaF7&&rm0m&_;Qzh6W!)AE%&T10va}&F(^~klz*uy>BN=>e*kmb z=AeOF%^H0tPtduNNxQP7yR{bE&&>T*Q8^)PKh~cGP?3siTJi;|7=f+>4$b-i3rb_OqY{vxQ?a{LF>t@WDt+H#^&w{0-B7;2 z@E5{(6mBFw@3ix}5v>id4|FUO1-TN)k54>#YBMyyj;sHi6ymA?HdR($C-VZrYmZ!6 z9y*Qk?>R5NlD?1(Njq!i+__hEaO7p3vaVfO!@f(iXdjVZV7%;lN9>}x_wmlb)4dAp z50(sTCOpkiaf|7V6HnHftZ_YInfcsjfikz{+Yn@Ic^d}w-Q%R32T)!chpHytWtwX! zvcLe?+X|#n$H*VwsS6VN`TGqNc78vIggSs(Ukk0Fa&Gl~f;1MSCTOm@BxEf+EKpQg z1-{vpy`lx4RXm3ysE@pC`A)z0f!(R33QYab{b4WvBz(2iDIVQF!G}T!sr)<;->JJ2 zw5Guxf&Z8oI4vlx{|D+9)h!lcvG2*r`D6K!w3V9hZ#?jDE3FK(#-D{vUze4d4!|o5c_Q2 zj}87NW^oDG?y<4Er;i3wFJvZ7{F1vI5Z4D?T-x3uaP@qb#i8V%1u7l04PVAIsd`nT zrhO^wQ)xa#aOY)ar?IW^S4n=gESq&F)Tv9Rix`eOF^H3e{o?T_;ku~)tk2WAG?@xu zx&S4B5b8sPYaWZ2qj~YaJxv(VlaP%b|ob* zuuDuVAUut|mN$`?8}`hY^=Y9E*w|5-kadh9z}?+Bw)3$VNDDUaX_3L0^ca%Lj+G2t zMPuwBji%>DXko4yL>i&3Txd!M^DkA9YvPY$J&+d-6CRO&)}3s4bL4u*bH$Ro?01)) zJY5~Q>C+Ue%^L$=YBq>6!^l}L8Ql9qaLLUI>y(?2iMN5@nWJr_s*G{-fZ0imhoD(g1$T}^zYx~E>&ewaimy;XL!a7Pg^mzxb4&M%h1x2rFB*B ze`yMstzvLi0&3|Gr#=;(Sff0bohJ8Lev_j2EUN9+M4V52<>tuk5=)Z zoFfTF=Wx|8)g-kXyuVKYcO6%g;e|o6r3I*1SNZ`Q1GMT4@-byHwiJkvuncj|NNGSf zeb#R_D6VqFv+oUI+V1xr!NlI9$uPIsBmH6r3OIaBW(=IW$jk6?p9?(YR}1@#3wV-> z!uYYE(|-{@39_iE(2^nI3juE=O~#P@H(NzvwbBYrj|&%x94B(L`cCTLxl|5TnuU%~ z=2&2Xq`dRVL-OZ>JN*OCSKPGrV&tE@9Ly!~KJAa(!+wV9BoS+^OHqL=t2U)rRG{PC z63tcE_C^(fUjg?4NJbzju2v!(6*k^HUD~eB;dccG(28t&%h&Rd?ONX85{35`Ci)+I zADwx(ppYJ8+1r@(EN(s*={{W^Y36hWnZ&u=c}Mly?E7M9{s@+SQ7||sbZxtC!Wkq4 zqe)b_1NG+`R=ps;ZUl&$roTzay(nwoV*K7W8&652y8dfHAdR|FPlzz^K4^jFZ-70^ zXU+i%b$iCPBJPzE$BZNFeNN@~Qv}{}yo=D2QNunST%a&4ku+H@8R*W?5NCw87$+qq zU?NFR8u0?UeGJOX@|6nyH%0^t&O`OQp9WRG^*(=5OZ`{f%+(tx2lh zA7g@Nb=p!ynEQHgMViDZbovY`m&X5g%bw!Q@Y8Y;rCa>654a1VC@=Vv`F#a`&c>0E;L$DWId}8I%iF zj7hz%kWETWsuc0n-h&1m{H_^By8N9qRm%82BFN6fu29wJ@`sf6{qku_ z%Oi;XokD2byQg73c$KZDGTEA3>Z3}k8x#3K%TH5iKrt?#_*;dykDc*RU|Go(xI*>C z4`1+R^H{K3XvfTNgY3pa>gMDXbF=?Iu1x_jK`pshxq|a$%Cqez@hV;REnM9;%r*Pj zoo*NZM?K&YIfs{sc;8E~AK$um14*_S2n6084LX9Nf`|7KihptMf3PLrj7npwey*wwprrL*%*Y#1Qg%jJt$rM% ziLvpfuF@0CS(Rm4-;dNig=mv6u2Q}Ev0bqn_tN)_;Mh_CkhR$r&n4u4Ni*z!9~+hM z3=mQL`du~;PxQxPmoG;qjGtaW-lyOHCc9$(>YmrG_zu?16PCoo9#h$&_c@2EkmqX* z9JIzXE9@HP_csID0kYlkFnY9@dKVDfwKE>dVc%H76+#qPC6C)+gX{O=H z^EhgZKxJEj#eeE;>`F?Wl|OdNg+3?QZu)v>l*@4WNB@436hG1|U?UJ+pMd-Q_s|oU z7|oR2{moLRmZR5(KRto-;bJ;~(-JP}L= zyuxfO1zIizd>!?&mYEuP|97?oRl9Z0r~c5=7bfpqn!g~s{~&>@+l$uI7pg`em&6ZF zzVp2jQDcLSE3g27B*uAZVEFN4*6_SaT9}O?mz8QJE*?}9x=H>;OdiElDo;j}W~Hra zUFw1?$Ti)XUfO%sz`-Dj(KA$ze;`;6R$|EY$F23T5T>3MW1+*5hu@&MQjwYl%fA6Qh{o6A~NTjVo zPO1m?Dg2u~pN;*WKTFp#R9~a6A=4>3O!!>N&Au!ucL7PCv}fEbbDUZmOH_HO0dr%? zV)nl2&46D3{liu;u8TU%M zm9IEQNZGh=HV_e+Hkb81%*b=RaEsS&-|`^zyyZqO_anYff;R$Luo>QE2EUDUYe)0d z>fjL)qS#KQnC-$jQpSYZD&?5oU7yBY4~tI*>E9k8S}%$Yml;qhz$ur|kBg!o`o=Uq ze~%qMVNtqG4AAEnmE@uS4qU?c+YDz@r+-6K@6@SzK1K7|4J>OWCYJ*?)FSC0gRR)L z!yr=A->J(2GteFh9hCjRt|kQO4fJmVQE&Y~f3_<_`hCMd{vRSlD@f4W&@EqC>$K%p z=hbI_3Jv~b8r)Wpi^fs=1)tcST)1-KC>#{Q{{m4JbaJ8=@WYkoX`?48_qdFJO6K^+ z<;-dJ>4$ADlbtvJfo}c6QRc>vtqTWR#$H=8yAKwmq7VVzLOy{0#D6@F!;hPaI&ok7 zeaJHkhR&tJl!810%NYtT0f+>Y7Lt{Gn!OqsMeM6 zHnZE!^o93%;onrWjXfw211D$5PY?T4&ka@Z84I9~<>lPiQIV!q`^kS?7SZh0-jol@ z;EL*0UFiEaGT&SA#1$x9Rm(d(O`v;mIkyzSwL}qGsZjI4mAW>&vCaD{%#_*x30%D@ z$~>q|iu;}?EI>W{Ay%6Lv_2vf`=xu;NtXA=E3i?vBB^plC8uX020&>jD$$A^ZeRy8 zC*QiNpCb)SSE`&|B-1g(N_W3WA-)b|=DNk{e(!H6@x-{$@soVFCrgfW^@z)0))CV) zBwyUAp?iP|{q0vrPF#N^Wr!<%32dnak+5F0toK_NU4B{tqTXXfZ&v32QFIm#O}1|v z9*pkp7}DJ!z0nHd2BS-mRzQ%6NOyOG$Owrc;Y4B*isTR}Cjw4h5RjH``F+p#KRow# z-S>5#$MKo2J7|M_e~V5Wy9E@_a*_Q=K>_q&V&Y;JZ>sg2jMOcN4L?X(iNMZdmY!HZ zrCSUhqWNKa?@=2mIEge^B+}TC?xC)3(+upD(S} znGDX-F#JY&X8ilc!EOkEyfl(zQtE)P;8(*Y(0)sGy zSof>y$0@8wej6%Wy^^4z0p97ACujqEBv0V3$ZLtIE$?|m%bG!;M}`FYMJ*#n_iHH= zqqV*|k^CFy6-Lf2$L@wjp-xZ88Z1eJeSu?CPx+4l^2DH(J%oo=a5vIAt;@ZtQ?&6( zM3Hs7EA-sKc?ZY94pJm}N9&R=C^JyvYLfo3?rlt%Jb6giBY*Z{D=s5*d!t&LLL=h} z2;gu|r0Hm_6X%ml)P>P#;cTqc?cWQ6yW;pY!+im7hD8;Q~>%ZW0r;VnGCQsCP zth$4t&r;bebHBCk1NDK##PnlB17FlDVCA|h)IgGGoY*J6z#-Md$X9fqiKNwf^g!^+ zo-o|?(j<1Ln=LQHhF4Sij^$lTQJ!p5K0=0onaUz9{IOQUF5O5-(tyie3p13oB45v= zw}Abn=QnRtFqLS30b2)6PHugO7LLM-=I8ic{U23mO#su$ybYyu0X$^AM)gYS4~kl= z&)NV>#)#|sil-eNkT~8zApYjyrP9;WPAqxntu-NUF}G6Wfc$!l4qFnk0LEf3(>!Ht zO)C+bU__r|IbMN^p_ZDnt1EWZ%N|z!HlUC7`7_uwfskuUO(Ya@(zYF6%BfJ^vVEX= zVq(FQy(X8Jv)Hf!O2Xd+>k9$6n}_=tji8RKo5mc6uQ%1-FF{+KHFp|biv``^_X&r%9Xl?M{p+{*@-O#j*@2^zVfS zq9Yo^>sLbekm^&vTwL6YupxMs#(QO}8BZe_dOK{r0gOj|k$fCN5TKYRke*qW*&kbe zZ@jF+xND+gDCe5L$I71d;f;?DcbbPM{ik3+`=&H`(bF)`5m+gQ59Po;vn~910gpQj zJ6R~D1g7tVsm`59_%3yDG=6?*yg?f)SO%F$IUKk5>IFY_lry6e7*}--bjRGbIiK{* z<#v7_?it(=VHHtRn8H7zy1^dZX}yl$y$4?i)z^wUY(HRbaN1nL{2-l_){n3}!dOHW z#ap=paV7>bjL4%$!pU^9L>rN$RDX39u^TbPnbi|Mf4;I`4f*Yg-ne=*xS^VG47YB|<7a5<S^JekT^bqJT{?j(T7CXwu? zkA)3;guk*4Q^CyI^Kq4c{HLt1ANVO{CW6FR_l2FIUfkuK(+RkMe-=~M$3&-01~$c7$h(^kizHEA zdjBcYfKHe^hE$#Bsqr7FPm1f6A1YEztizX!;=;XrP z^u46s=Ll6d*}K;Xll%WvK1?i&(V$^09?`ojgywZ$wVI^U+bcwjf7NPv%l}bUxcc43 z+j|I^AQYORh-e$|D3~q}K&n|xV#g!yNsa9NYpCCxdRXQ*X{Qf%X~iW!wb@`~1;(5B z2M6~_Y4SZ)Bk&UK>$`}lFL?>PL!NvC$u-Ol$^+=WilkWF7}@xa!AW}ZjlDUpOr^ump*7Ob3Q%AFDFK&C?7RaoLqplXLe1}S0nQ_MFXB+TAvxtVPU zVrkS_IgP;Miwf-rvg>aXK|;SAj!0G8&$IkJkZ2HQl@9oj18mg1B5cje4b6+tT!uw@|4+JZ`jUf&P2(6Y-gFlYkd$ zoIKkzKO9^7llX)4vLZtW?CQ607qK7i%~b@XmFd9$)CarXH{x$ckzCLFe*K#e;`M{l z2=k0&KlWp7x|=|?ngqqqE8$E?ozC}{<5pjpV4|Zz6L%PYSxv|bq?(y$CN-#xgr4c| z77vVDx_v|{(k~fOMeI_yuA&2-cV6yJfR_U!3)UN$OK|!9^W;g-^^mnpN5bJ~^6K+M zkl-L>DtZO3ednQP4&@c~PMih!uLs8^V1W}{&vd*0S?UA#w#5GkGd&gO`fG@PoCVwW128+DpFJVRkP(zrO3#nNB|_zH0Qa zE~zPRO=b-n5&hXlcsmiaO!ddt`Ju%&qJaQ#_8##La6S#iQ_r`m+rS8&xEj%=!|`IC z%H+Zt+GeBX@DFd0FnSw*3GE@H4Q+@)>~p*Sf#_jhiwj?x2b&byO`_P0YI6&>_iyC- z__%3@NgH%0X)|sY^y|phIiQiW5!ZGtc`j-`f;IlI zC?O}VRxT#X&5&a(_S-Nlc$!L@DPYz4zAHA@CtcWrNjw@`1+=o?Jdh;YJcb2&KMe45 zzpv{%CESrBzV!+-UdX50+)Ds1q%srfMzh8v8l!Ei)6C6UqPS>L;1zWrO8)S{$T?o@=u75TU!pZL&48s^gggV zrIEAcdo>%nTZ_OFw`d^o?QBSX%cy@v2aMK%IcauY2X65JtuRJ?;gNA-;>HjYLYLbr zfqPl$8K!*-lY0NV$W~4iYIzTV*)aFS_CzVCl4h*p+QOveY^-l5%Hfo%UI`ohN}78q z2c_qX;uosOTArRuK-~$G?U6Dm7?m%0YSFsK+`g)>0Cd+e?t&h~uT!zS!i=+fl|`m{ zNUBG!A=;-BUI4z+Csw{GFl0P5#Jls}42YDfH-}tR%YIkt+Crh0FNV=${^Ohn=Z(dv zOdu{n;fe_M4cL&?=%2T7t0*9&(+!9-`!b(KwKh`pBk|3omM7gcI#XOyUj7V59lTbz z{HC#SEX`mIN**Y;ZY z>6vlEqFTA=-gmrErZVJr4@M*Zl?0*NC(i@%`mYO(W9!R3avQ z%&8DPNwc4^(_9{(dhAKcbC)ERfAk#{s78;N*_(iF@)Ib8egZ$^wACx>TS2Vj}-S&(7h+T!DOcsXz5}zyI0|eBA!j{(3{K49rt7+Rc4! zBW);GrJ61N7som36*s#TnM8K`KMObNY#$dn#*F%tF73U-^Y60v+Tsb;P)f?YHQSW> zBl72u4%ol_{sNU2T-D6Sy#4=%X_;vW!7odP;>=aW7XCB5nL*f|h&X{!8qunLdL&;t z@cY6%uU9x5#vXC6I_2QJ^4~%;>Qi94JqDLrEY0`-$S)E97u9zpq=+g!qio0awJf$% z`!5CM>1^RZFK?1|00et;{J7PQE%UuCP0^@4CQh>th-==EllwD@GI|sl{7Ya_yW#Ky z{nTwTiNa`5>3XLwM`tys9Sx^%ou`pUXeK#uj?2;1Na0d2%+*zfM!q4-2U6&ZM(Mno zGRFFk0M6<2W$~lzQCIauBV)8L<#Sh4t-um{w#ILw-(;sL8Mz!225i5opSdjY!XJR~ z2LfBkDkK-p`{&j+ZZCZItNMha@DAF((~;oi#>V$w#BWsP1@JGNo^$VTx(Ft>bb4jZ zbv=B6PtWpM*FKRf2`)khMNM_zw7 z^rez1Ke1AjdIvnr@P)x5ATLZpIOnz+gN;rTg#bwja6)z1gPoV2TWLTa7<8?cK3KxP z?u-x$6|kKrQ`m{xq}!zW4cUtunsm-ty-YG$N9q49hI&%f3ML%det%q(90M0Vw#rI@x0^OAY1=L-|ZTN~ut-6I;`boa+y zbHl;kx}16jXMWg+d>c9jorY%OI3A;U*+4WzP}4oe6K66iPu@R; z^@r?3IV4z4!3E8j9agTukcv}7E5#_km?vAFLWZ<^ae+IH-e;C0M3NC5H@nA@o>lMA zW%l!#X&~mqsG4p}EzQ8g};Dt#jhlfm zDr}k8h|ITN!~*{o$s3XxHAcF{5g5Wy$WCo+j^X87%K9-<}2WMSrXQYfr{ zfh6hMB3Zn$nzos(F29sYvkR!@#?~!D#?ktBYq8@;a3`Vx%0NXkBdx+3(Xrk-L|}f= z2q}$f`1G$p*C`xQ$h>yyMC~lC(2ZFmB1!O_|KE83c$lrDZ$YClnYqYy+~ZoE8&5z7yLKrKR&foff58cFcI}qpzZnJ zx9RSMq>OU8C^ck|F42*C9NC>YF6T%w?O-Nbjz1~=DPkW6YC!>qdI@T?M*QPH4&n66 zz8^V+FDwOx;j#2V*HVMYCpSp)R83cuXTMAw1*Ofet=@8eV0#f_mP2_Q_f7Ja4vx@@Kfs1%_gS)IcvO2UFDvv{CmsUfB* zasRUWe;_31{WZDBI=qHkoklaj(Y-Q;LnBqDfl0Ou-2pggner4Ms%`PA+~?VHt`2_N4d@-u?o)KNAG%P|*rRNvMuh>3ZV>Lp=g-X9&Zache)d z*YU0%tO03soSv2Y@!!XrtS+sN@@it2Ngj@Q>|-7?^$KC-=anY^HKrW=Xtum3x*7Mu z_Oq&nj@y$49y4p&+d6%M+3Nxh%P*jr*gjLS{7_f3*daa(u7%~jYE7+|B5x~k)ROf4 zOnmKc2zJ$#s^*_@HokSqdwtQI>9$N`tNgG&@wCRtg0?f4;5)&0oy{YQ5)ifsP?ez& z34+`Z9?3u-^@5Lx@=aXbFH}@%efTxK!kV-q%xJ2Jy3&Im33pJQw@nvwC1|2sh9?QG zY2l6aK2Y#d(T2XYUWxV4y@-x)T1JLnx>97oTmVBc7^t^t8w|(Z;&t zH_-{h9EFc^*$A4~2!S~@E*WkW&y!ET^|=2Ds}VSkro9rTz|qzrscsN@8g+6Fu4S&; zg(E~^BM_IHCu7k~Tl3elgg<{#hQqj8qYiU@J)In*;8N;J6iL*GDvXdWw{4?zuNteB?&liAQz$vhbb2vh*Pf8q%aR}(tyf`St(uB1Y0My z1mUP&{L9VKyydP}OXr%GGjW>-&b`1 z<%Sv4;=)n-gc|uhU7y$GJa=xZWX?`MtqPpEORj5m#6n5%$<6=DM)9(&ya+J{bSWsj zqaMlqVQSxb_(n4P%9$eBbPs!qeWMrnnaHKLNgyAL7>0$*EV;^wORgPpyj3d~rp@KR z(Qt7`PWR6*ok(f7(7Slyb3qrC+Bq=265C}8(LP(wdp$!3TsGCb%ZMGhSF@^#M1w zm1TpzDQbKTtcV0oU9#9oUU?JkGSk3!dRNAut3{cDz$-^;Nb&pXCE>DCUIDT+A1H#_ zCH{NRJ5ZY(E&0%c>75C-kSmAwmrOfXImf%bs-|%Wzf=gNrlM~mSnXyjto&c)MpJC? zv(P@-LQd24qV&9uLMB_}OYB;5(lc#d)o zG8FX7g0vK8ejnPQxwv7>fC1i;Ujkebs)R*c+Q0|;Y6{Q9r) zKi}?%;xlzOGm&KT))=3LcUEH($LB(}rJv`+lgB%R!mjmbN98vYH!9!FKW!GQusUAu zYwW4{+^GsGR^zR&j<~m%KerM4FpfBD-x(6)ex8sSrca@695lhBJ8$8y4yESZ%TXcP zGP+%(OWvkerQ}!NUeK!YCp(3%?k2Xn;>J5Sd89XD$IjMsi;3nn3TwSn_7Q)_l=<1Y z76OVD`Qe^FKCaPpZTy=W`|?9Nv@emu`BMaudaVy%%!m?~$I*U>3qkz&uQS9gc`;An z`9@s4ptXa1CUVe`xj@(E#}(SSOkgJdOe+#8x;Gn{d-&Oq`k6eA>8xKyEG*QzelIrL zQ!%Au3)s@Cf0mKE6i=Y1@@~%SD!+Eg*tqR$K|Np zSfOv=2J69pan3F0Moy|Z&Z~?w*z23Eve@UW^H70@hEz)^JCdk~oKI^+g#QJRtm87E zhFWd{05ON$zVpasR7p05N$u00yoVMIpK7^qH2;lLCrz9G@Oe|*cU|bEre)0JS(5vD zeY5o0p9K0=2^-a&7+%os?K^7G3)zB?MEGLYcVhfYhc|{Fv|SYNGw5zREoh-L)?HCN zk%iCF*SF%C%kSlIJvfYL%eI26iy*bYD<)0k(7L_XcPR(`F%zORII~(Q-;0Z(A7zZp0~Jm8H7tK>JOi2; zZj<|QowpX&Wa}|15potxq#D4RigA}*gO?(5u`FBB!rQ&6Tkf-S4xh51I*~`D@+VvD zO+8K9MXdu{FD6)QtN_xGZYGN}f-$C45|%w_7x+()YO{=anm-Bo?%n6?!rN z++%o*r{eGN?Mji3UiwtVzJCqROJD>IFS0>9Pg2KcRdNm{-G|ZZ$EU z!jmJJldfunAR94QCAA7BFllQox|WzO#14Yd#c68BTE=OSvm-$IRYnNjWvlf!RIYYb zYqeTBr2y`kYH3a2!DZ{~zhg#-QPK8!lB-)W&6icVr!Z2-5Dw&9a}h`;Cch7VL(Zcx zs_eMe=bBP8HmJ~7#k2PO8U>k=N=7~}ur@M~s?luE+5qWPdhY!9+zt8tw`VKk@+R9w zQ!PulytS|tIU5aF(Jhj20?knM1bg)sh`zR*2tRewzR!d(*}Dx}Jy5+kPnzlm^o!re z$?&JoH66S?Fn>RzEkT{;EzM0g>-O$zm(7m#s0kbX`m&zNfV;5A(owxRcVsi!fp7=X zr}qqtHoQWAU*(^1Ee_H2?foW8CEqeGUyp5VE9j0HBGa|)ow?HUGzDlf@&(k9-8IQF zjF<#^{SM&$fo7<75k(ca3sxO;kjqe|lJI(eSmR9@E+!j3l(#_q=uy!-bh)q(rUR>LxRlmuxsl-M4OPKjo$vt7R zC$?oPF>JjMH}T*Iw%E*>L!`}FSjM4NYjwUC#D)^dMtUIO|Jc=hiT6`M$58dv3JZL; z+-s;C)?iThFJB&$5pbEUv0&1p>BES*n)h^_*Enicfls@(n^=^i+lPj`#oaYwK%*p`=e7hIT|V$ z+qS%DUY0E!*?=yzJ(Laar+#=(@!PEEVA8uTQ zLa(t>8iL58VwesK>s&}wvAR_&Z*GBeZmgft^NN?W z1CqpzxL%$F#IRvCqrU<-l7wbur2zwpWuAdEYt+F3MJcOP9inek6q`~E9XL3jil}bh z>CNf6Q3&e_Xw@_M3dbPvTcb0$8I_H<20Gnx0}GMNvne(FdDMmBku2xySqae+_MNLm z%92UG1n4YQB3cZ;47N2BsnIxv31a#l3R1;ZD|+e*zuIb`g?MApoH!MU_%2~QSEV80 zvbKJ(K^uSj<7(!qMFM2f6RjG!Y;x-_4$H=9c;DJlD#fr}lIDZNMiaslw*?VWp{6*#qPVt4l3qps$?CC^|&=H7|6{?8zGXTjF z!nEm`|2&!xxABoqRNhOI*xbv=y_VuwPrfuRfDQ-~7ei2#x)8dEPs6rjE9xcKD|Y$9 z6^X+j({TJ-K7(fX9&h!ewZVsZ--pw8_!)8U9bO#S*KUsm7+*H*vS)AkPepvMtkzxq zABg%u@2!yq)E`G{qKku+-{yj?za{T$;J!|X7$hG93xEfz@)OlXJ(v}GLQ@7 z%33VF3WrwTIJ=7UetU>nD*Z9^2~bDLK5?L%*yOek6<;Q~lH!W^*-9h>>GciSEd*k3 zFNK-$a`kPHkqQ#v$iVToUHDFBmIH7%pzPZ_VMdREH%$^OVEvrXxHTG^hjxImWNH%;zz znlly0M9}RDwkHSE@P*F920=w3+~e9j&_;&#r>)+Lnro{?Dt_{RG=@EXW4AM{)pEIE zlww=i^sCSU4*Dnq zd-7cBMo;cuap8XhOEmqW?yrkn5%U69r$=@aUH@_s0-zt{h1C0DLyomE$!dxYC`H z-U7A-I3p104@?vT1QiTga@tW`Epe-Ked#@G?&$w+?!pfJ?D5+p6lGhHo=?4Lo22i! z_mZq%wW_QBiU%J|&n6{AxoKGBRAez%-85_whGT!1C6Sl`l) zg>} zOz6_`L(g17SWj1rg>b@TX%JGCEfnHS+{Z4Ep71RCC(*oLEU+l?uqws%zLSi&NhVQ(yqD!nndY{Q@n*>E; zl>=1&)a46LeBa_3)|r$4m@uI6Yun{T->uW3lFKQP2L(IY+P8ME!Y;cex5OXzrEhl>S&dWa z%Iaet%n;dJT{Az{r>k1_Xh+lENV1Smg}FTr;`vVo%WmsT9h30sa!->++Xor=9Ux2RPbKjau`crN<4$YI=RQ1%P&x{p9_S0J ze&C~PXYW7ot$lq_rWDFCcnbZpqvCA^J%i?>Dnyif(4LgXNjYg5L0qv`TsqOHKRJqkP+BK%fUFjlFH`WOs8ff`V z3629o0oEU-<6Y~m8#VX=6nyKr;|1_-npVfKv{uO939tUb*8u2Y{?;9^Q9h3e%D#op zSr)UzQuOE%YJ#r`d56Cklh4hiJ(uIx8^R2K_D33?N%i68zYJGBkAS&yjBim?3+5f; zVJUXH6m${Q@NGthvE0C;A>NJ0Cr+UG1m4B{Z!EZp+1GzBj)Xh9x+Qcm4-E|nh4=5r zX|+-4nG0J5D)0;=AJ6Q(oKzttMEr71#~vL(*}K8Uv{Sce6?^0&qVvC)hAX?>wSAfM zq`APvv&i{2DomQfiT&iPeO>6~n}Siv7w|L}A1&F!7NYhuv?+xGIiN*ui<6KW@YblkkS48^Rnt=~0zguW6Sz1(DQo#K$uHu;G=> zdZd=Z^{XYQ(2nWm!G-xfM2SgqGD3eYs2a+Z@W4XFRB+3I$tFET0OR^=WB-egb}Mre z8XZc6s`VBe?uOr;1-OMg%2h8L-#*9XM$1-j0c&agmbkIGofsydle(tK|3YN>6c*WU zE=FhU2EF|D!}{mXy_geLVOHvkX_Lmkwsq`n7uoY9e-;$-v(ms~X20`v$(?eXjJiE( zJ=*XrrwyG1{=KjPD*OFE*zV8&*q$nhIyiagO_O!(`cKy!BF2Yo+NG{iu+$yBh27J; z*sMFf%JTx%9##^nO5vK>ELV-CU?W%HyA~pzA#ZCP4mcby99D(KIL(tJ^;FpfjyEt2 zKhEZUd<560AQR?Gr^T&Lk0LN|#_COVDpJp{Zff$k3EYG($;iJs_PnDPsL3dt%)Jkq9f5Z z_PViiR`TKzL`U9daNd?j(5a?7nCzEK`EUx0aj3!L{w*^fM_kcn7>?eQQ+}LQR(*{Y z$_lRd=KFI2?#M(Ow)_hScbQLRCnfm1BW6RuSMQ$NA0H$0f@2U?>#%9Ksuh&JooDuAplY3IKDNwJqT9n}E3 zFbw4~el|;90O8eIv2>IPg$7h8y`Jn5(*6-xATU<|4t#Esu~V#v0?NI`5a+fAuSue* zl0&$7T?zmgjQ*LRa(~{GQjjs^trrivr_vV+T!+m7ra2|{RT&$&qE*`DFaR5vvam5x zYfljac{_{bND03i_k%#7P}Ip$tmwuVdPn)*VZ2q`Nz{){VCwTPfdj#O2etqIffewd za&njDv>cWlb4|(EDN}xT2BRGO%QNteS-iwU*Ut%gfD(?pxTSr4*RJqYKWg*M?c@k~ zMHx3+xjNd{9EbDx)$IuNP&NEp;a;J{oS8!dERmh{bvsZGaIggr%ol4mG&sK~QyUmU zlClks6m7}9ycWdk!mtK1!eRu$7>OBq$Q^YYE+?r6; zI&&1CD`KM%i6pq!7_%r&!%VRixjIbL)8EbZT8;S0^cIeue*$n%wzaK#>5KzPs>q0$ zjpS-KI4xoM_5;G7+b$18BL!(bCz`+Tg#9Fcx>IyR=>CI?Q!+5CQracD<2KPc_jrk9 zEpJVO!&)ncS6<0lydU|^v-MbBhrk{lAwCwBK1h0eZe?4Ml&%wDcSiD|64eHF&6@zJ z=Bn$0zTcD82h9W3Gbq?Duq>8*R-s! z{}jVNH-RYp{bk&}*Pz@l3|o47$fwEkOt)06F;9qWG9L|IZe->eo=J3u}BN2w%VgJCTYPA>O0M`aBcu5FhyyICX!> zR~@!7@i+G5JJ_bJ#fHBzaa~Ix>cuG8+R%G4ahJ6ZtGP8rS1G1R6|Cozt|0z2|DVog z8XNGY+-iu>G)vk*g4{<kHA0kOZXr1AEuZzeMN)2Bg<;7bMP5-CQo3fv$Q_10XSIhMj>?N@`5wN@DSu zK6$)^#5|EH+H{Z(BeW3{Z0+hi<&kslz|m%Dtb-Ke1+qcMM5*lR#AKOUwAr}aDw9ZX zO-G8V{F$ZUKOmd=+moDBcN0iF=3>F)A=H2&!tgv7@z;nw8n?1C8<1Diu%S9(fjKIG zu_KVo%q|W5xvWYtcxkD-q$5mWjh@qQf*B|gxtA>2VHm!O}P%_r3v`a)Cyym3?Bs8+t?=| zeG~u|PBn&%t{WEZ0p4k%fN6+2o&fZH{wPewp+mSNa0``S9Lrxen5RQOV(*hnd7Yx6Cqt)**;lX9>_>{Lnbu`@YIRNsB~R6 z$sU(b3*E+PymD}R(4h%IKJq6sW>bK1{L^ZnMw#V_CW(!bZID6M1SEc{ORu}BP@9WdiPb29@S2TJ?`tA!yY`x z`#$k~{r)BTkSVPwV(;ZZ^(`rI5ed{=divvkdPB(AOj{R95JE&y5xeuL=B7yvGs7hv zfsMm=bl6!3FIRdLf_|OZazdGOrb-Hf#&JbNa9(p))@Gp|DZR=y-d#T7{7I!F`r*9Y zMir3`U40qJ?*IL%)Cc-0N4?0IaEbqcJVsX00-Ip%P7@A~KJJ~kbsCA%R}FHM9@ks- z+Do2r%tF1X@fToKLZaA42N&MAy-6~LQ7vd^F*%AH349YombBGOw;1XEYZ zZ#<8hL`rerQthRYHokIl?;eF1wMQ~g^4WY$b;%V!1E_tqsB z%gRct^6f9tr^4RTA`(s{xh7chj9{o3W*VZuphE^ISix8dt!ODtTEPLI((8m150VRP z+nd;q*&Yq8YJxQ7Jm+#Hj-9aXuA<83}s4By7@6!LV zk$fCZH~vC|d;M9CECk=atmB#8Kx;iUQV6ek#8agh2w+lhLcBgT=GsWtr<1RlStfEc!bCXQL z(H@-B;O!9et0o<|{yS@x3Wjt~11+EU_2+$*ITsCrjM&4%)2@QB4V7~C!{^t+pI4Y3 zZ)KU@H7h8DeRQamtk}ox56PYycb5Ur?-f7~M@qXn8q0D{^6eQ^@|g(M#r4(LG$CM= zQ)#gt3r>w_8e5`LUfRmmqw{Hz9rLUYFqI#qdN>9b`V#;&U!<1bh-0agf3cB9Ne~bW zJ5iY1VMRs;qM%aGrx%`ev(p?6{q9{u$YpQ`HY5qpx-YF&>q%RkWi zlQ+?xwe@2wj=y%gR*F_hr!~0u zys^Ni=Npah|JyAr^UCe*us&hV>6n&rd?PaX+&YB^g}d+a916NA)ov?U^I(t(Z}_bv zHp_b>J96-;G~wR;V|yMTPm`%7!QGpu zXh}BW;}Xq2$hQBbIjE~9*({$J@k^bfMK-{iFRd6^NGC$-5H69N8IfVpY~dp=fPnQ-Ks1C zIZYRz)Yl&ZRIp0ytH$!Z7Ma-XPEpyzd~EYYb!@*vyalfws#uu_#5FWRVSL@CU!VBmto11D^Q9l76BDK6d)J|dIYU&B4aIfdO}EX5|xKR&WjOAJhbMmitHT3EfhCljr$jPd3E9X3)G1b%`uMQjT33jcrCQb!dQD_g|$B^+48B$ zR7I6IgUTIEbbdb2d+1krnUAxm4`CkbbuI{&36s@b^Ul?R0COz@t!lW@LnhxexO}nU zE%Ug~n0a{q&wIf{0UNy>W?yDdXfem9F;X6`KtDnpmt zUV}ZNv}n}2St|xp65tkB=e|S@M`7BcyVay+xkwEb})JI@i89$&8#h!i&uAl4C%{KL0Dg)pbRtZE0gA?iF|@5 zrK>Stp9o@SwIh^iZY#5r>$~1bU}F}f?Qxc>ciaCP61^Y_^bt)$=-QYQU)oK)_PNtm zx{Brc;Tl3Y&U{_d_0P52R&e|M;TzB|D?t@>!pjeT^0I3#-F!19?jIx4;}4X`9xP0w zw7+~A8TWB$pSi!ANTM)O;7Ll=#Tfh@UcL}6Ew=XRz*E49Sv`S+mq*Ic;USI{K6(sK z5>(ZruilWhqyo*{`|bqbvf5&d8>objubp!qO@%e9*$2J-tT~$$oxGA|R)Hcph)|?U z?Xn$Y8!2X$nu+*aQ0np`W7&bRpogR2;oSCY?A})FdK<|Z_Tw$|7ru$_3F##3JDE+a zyD0mL;b9xlttftu%F|g+BHKpjYSG+I){keuwwyj{rb4|gDo-0r92(!P&wD%t2KNU^ zGP-G9-m+cxYQ=#3m%-v7fjc(lnF*r0DpnW%st<6yUvIgQNmhss>LPNlXZgDecbNrCaUqZ(nizC zE&26|w;e*c7d^k0`QP%+0|LpiI~~oboU(P>qOp@i9>uCc>O~K}^Kai^4c!_p5v_>2 zH)e9G`zf~xW-Q&G#pTjl&)?%Ke~ZmqF~>%7I@~58j!c~<>0+g&7*TvL-0wHfVbUhd zR!MtZ1hXdY_+q6u(p{dkdZwA{HaT{p3atJ$WWUe-0BNDt`$J(+{0ZfA1KCar}>eJ^^<2>G;lxqc zzL+ck(VXo+cLBmZeqLcR3va(Eb1;R=>VAT{uLLxG^VTy;zhG3l)>j266P>1Nb#k9PW#`cNMu~#1WC=SEi>t` zL_kddlnq|=S)z?)!+?(=AdWKfLe?xoZD2GXwA0w(SVp~tf7M*57g{76^03DR?q}9- z&Ho-nn^j(;;MIesl#MLxt@O`7{&C+^*Vpa!lxV(VU#I~WQ`Q&lYNZ%;vNwI%*s0Kt zGejlb7S-uawp7Pld&43J9v%2~zxYEyaYH1yWgT9!#Y3LHiryDO(Q{dX#-~ga+cg^b(D1xe*^Qc$(<<)TK64Ul$w8A+6OF zVbUeZ?G2+$uhNDSvGpw*9Mgozsb-3|r3)`7(u@S8E{&)?AEe)j+ zm}rT$2bUe3Z|z#xHl^BC=ecXOmJT+|A>?pJEN$!fsXZ-;VfNQQLG31fFJwK`aTAJ| zZ+Z)(JKh!;-bg~1+Ak)m;f;m`T-!X65BvZzoIe45TDnm>U@zbXpd<;lK*Xd3X{#7n zpyYyxLqTqsoWr6>W=Bf!t)D!sQGd~Pg;XMJXW_Qn3{rV;{VMc z!1in(`|!)A3*llimkkoB4{y4Be3tq7XTyB(3SzxBMGCL$mWh0Z zB_QaqIPB&fy@3r8InYX=+i1c5xiQFvLiDAaho@0Q$Z3dp^|#Au$Fe`Uc# zux!{)3scTZeP(J&y+m>*wJ&zH-k9Vs6!Uim(G}rRl$Xc$4&+}`Kn!=ew^3COiKawo zP{CH#5L^JCTJOP^`!XFn_2i5QEA|N(b@+pMeTI0C3~OT5VQO>Ut}es6(x#$o3fGEk ztGVu{S-Z(KAQ1l`mr;zV>&t0Q`X})SYu=F|eho*-2G1yVKf} z*Tf%>I1ul*V#Ahj%D*lW?*S(aI4Lk~^i#a!)69Vm%@dqwW28P^|2Wv6p!NiTaeJmV zFD)F6qq`n_5H5W&rayV0yUDoMBoh=^F(*HOJ1{(SipOcp)x;l$C;s5N&gp)VJpeY{ z!x78$2!8Zr?mLE^9-&^)%R{*sE}xM5=SRS6kNmvfAtVy+F;R5|VQ^QOr(!%nC4f{; z<`G=IEs->@OZr{>ympe?h_DiX`7?r}V31Rt=e2lQ$hpGNXE8b`P*E_8)q*5M<|KLL zW)dzJ9@q3xf_WiFL6X6KBz@^+r_2cUu;wC{7w0A%oc4n)Pd~^`BhX!_xLCtT22QRZ zNv&2T3Rh=4}g>-VYHJLzAr5ugwLr z@usZ|kH7=PA-UUT2z71bY_(MH2gzj9S)i<(B4)ig>4DW-3ZeYhCF(|j5F9N6(xV$T8C@bEp@cHJ zyHiSX^cV;_kr)UHNJIy>k4JfF{f%V-H}sYsY#4kmSB z$vdipbHrl6#;7H{d-m#`+Ibt{u=^Fd&JV&RZ^?3|TL&Be?%CLSz^SKa5R2Njq^W!8 z$_(dQ$C4#rtX6jJ+uwu9K|)r-%9;b@1K(Ewy3DJ0s^?Ws2t{h9x0&s&`)ZQu=eARP z5hJz^>P}I*b6yiWcz!0+Qqvjfr8be~Au@zihYncX|bCzfI05`l4k7SGXp)BHqfvRK;O zFUn>CdoBJ_iItCTIbwc&d4F4fk>ob>Ojqy6z|!!~TkjF};a6Ow3Ae9H8o3SSa?x@V z95+x>f$it+Ws-%gO`=yctBg2sovHFfnx1{RF7bT z+avVDLcXs%q}kqsRd*@!diIBlaGC7$(4h(pcYc+0(z=`CYVpAmR6?{3`ZTW65_3}os$ zHKpGpCFVjdguHgMsQbh+{4;(K75{!S29GLfTZ?uc0i5FJ8Q|Pv{ zqWl66@7yfrlp%Lzl-$F_0n3+pJzZ=-5%=K)Q=F`pp3(;LwE`cy=B{x`-yN21X$t%- zRG`dF``W*ati}BAqz7}?k2~vbkxQQbu#bBQOm_Tc5_&PtR<|PR7?A46`zZ2nowf>Q zV`}a0zG(2241QsFG%saBjeV;nh3d@kRyWp|Tn}v9GI*AOyj2jx(wC8dxO~*qF!HqL zS@%)k@PPDUURb*<8I9qmqV=}7(4b&S3uUfwi32)EWe_XH8}Xb% zJ_{M{w{ME^d4Csg+q$>>hcUQd33SneHJ6E7>J2q7dWgfBT?!Fv!7IcM@hT%oE`xMJ z&fTS!S&k8;2<)T+anoh956qfkVh5>2o+UrbA`44{^csT+-*@9v{?D{~J4d!vffxIe zGyZHhjv8;Z=s}OwJx7y%jufH9IBm5-On0-8*LWCkO)YP)=Q_6H7+1hon3AO}Bw!>+ z6eT_P{QWOVS>Pe1*zPSa)D*mc7xeMp1&Wr_`ThbA=&_JnP){z4Bf<5g&a4BE?G7-8rtpj9hG_@xF6(o>y_lE_k;R%8 zvT2w6^sg%^fxYzge1&=WagJOzHMTYd7*T2^yDaN5SfW#wJRfL(pcOs1fzWPGS#9`5 zh*jx1!iU+I)Rm1a8)_i@Z;oJymr74R6;R8Oo;WP5f#{au+|oC71$z4Jn7Kn>B&R3v zxM5(2>bCu6*^5NHU01!Q0ndqc4XI3wy*c;N(IMEal(AOV{S188fFF3EVPU^4pL8T0 zy-*p6Cyzi_%q3SDP)^dkS;XWm@tWt+K3Td$udJLYeDF)zsYXg1B@Ctbqns(Ls6YA9 zv8^d<-Q6RIKyWnDra9QkKzA&Rvh>b7CO$mPlvS%S zWghO$^?V&D=n-7lnViS;l%mVJb+o{^3{zXu?+41)YJP>a971<%j!~X!ZW)sRV;?IX zw7kmCEs>c)i;2{*=$_`-KhVGL^LR966`~)kY4uo_oLphqRP`jAsm73yqa4Cr+DOT5bOMi! zQI2n(z)EMIofY7v_K5she?cu{ zsNitCWpU!|^|0|syyuBS7;zy<;j*Vs(`UF#j$q2Oe@uet;?=%k74)CMUu8qXp)UP` zBxPdp&iZV>zR$k($=W}If4NiB{7eR;R8P5^wfv=RBcc`6e`!zJ>B^TEY@M#`Cq{PW zswPc^?ME?lm?7*Y_g-Keb?{ihf&^pie&gL1?*JTc9U|X{lu#LtGF)punnb9;`Gv*) zBa(W-pT}G10(2$cFQg1c#8MHdJd}N(pZ;kDvP8LC<6cWXU|zd5lj&bPd;LHOM>;V| ziF!ph7%4GCj{Uf)CX~fMb^^-WrYiD@I6_mc0`c9_nTn%S~51Oo^s)XNj1?Sj_BRSy9s@fs6CB^7sob^E3wLR zWD4aDY`^_H?Fb>(nYsu-jCAugixK|*0zo`(Q=y|H2T`Rmvu8+;X5yZDi6w3*cALw4 z@c74E=bbqX$nB3OIt`F5xH#(VbAyC@5w#u>Ss;!3Rw5GuXob1&u` z^d=HYBpYr)``yDrLh!_@{0n}qokXPT`FKNXqW(t&t`aQ|WuIe6-b0dmFyhi}n)BRW z;Gyd{L)9W8i!_g|W*M2=ga9hp;>Mu86tZ6Ad>Sn8YaX(6f>iw#^%z?`D();-uOAH7 z9S8OOJk{on*-{+67h__#0CKH}^Xvz)gPSALLr9cn0Q1kbCsiCM>{k=Q zL<(^T2Tz-DNaNV{5d4qoZ6&J$3Qv9x8kKppE>5!;6i@aak%=z4VKuV38Dh7HF0~%a z$n@`e(2_$yTHYfenyjwvez+tWOPxf?klMI)`1E!#gyLx`7|;o-B(!B+g6_(-ysuFx zzNiV$@#eb2)6m}>9RlGE%%ZpuM?FVN%5dd^UVEmBd0x+ER0l&7jZ|f;%5P=&`?M%$^1!bf1w*FJeA`RZWQM=A zMFpI(XUWUERrZPh5wVdPNRZLKoG*y4QUy_wVknT?N8r$hyk1n(fqbX1t9GCp%qWYY z7Mvc3Ru}rWjGW^=UYyr9+rQ~5H~-p$6kPGoX`vht=eB04*`PQ2Aww1+Yr4gI?sUIe zvD}Z%y$fvY9RD7q<`yS&W}P~01{H2e)2o(({{;g0PmOnK39==NJHwa zct9;)#x!moud^F9E8q@F+Kw4l_P%I7gC*V`2gfs1#s~B%W&!Rr;4TqBRua6qVMr1(jOn&nU{dXm-%0fg z!OyI?H^0%7gp@R?r%9=9XEyh(GqxL%LD9v_V8p@M1YdY-5PH9Q+|_b;;H(9>PG#47 zh|G4%v@p+o|DKq;B#GN|&WfpI(%{K!+nHbg%-Lmw*=d?1o<4o^s4MxAB4(Oh3f&_6 z2i+D}^J1?=LaGy|yDYI>R!=_*>?HIoU*%CTvJ1%%p!4?Gi&Z^|m!Y+dOVP0Ch*}zj zMr%(pVAcPV@+3iW8a9f?DC@DRTuPoXpJ=OTc`)Myqzg$gw4C4`dO`ib^(6veoJ1-J zPE@%8aHG-H49b5+tL?+K(1g}9jVKEZwjX07EtA9l6a`Bzov0O!p}x<{`n@($Zs2H+ z#8<-AwL3%m$2J0!O)2}w&uABDBirlD1t5T%m$EFER$quwwydVowjT0<)(7|?`sVdc zNQHIAPL<~0^}hnR9VdX9fVu|zz#y^Yu(Rv4A@}Lz_G=L8ZN6RsDWj zb#gpM^5K)F2_s1z6$f@6upLdhgvL+cP#mCyKF)bEwc_nBSneF`QYu;G6H7v`#cywE_p0g6? z5dA6~Geyz-IRvIcq9TI6z8gP~e;a;CJHS9ahNgMcF4E?zo}e zBbD_h`fCphTwmwud<|AN#DQaM-cumxR9odkl$)JM<(G?2NWrz*tvgz@N04HHOVp89!nBmSSz7r)D&44Qkd!|3S% zddw?C8}ZC*7Y#6y5V9MDdi7&{?MK(v!tJVvnSG?xXF(&32E_r;w1B?4wrs&^%K1W2c z-jRved;+2ywK~#WKlm0G13NLv5|jflGDL6P2`%z3rVO#KK(sd|^y*v{$YJW6g`HDd z`mF@54digC8Vbv7QEH|26yeRN&wDS&)a3^n{kK}CS18KGQ5T1PYb_9ZXz<3fdFny@ z+kerJu$}r@Bap12KnY`h31%hxE4SXG7HI))w(#;573~zW!PXkE0iKzdq&tZrATAtiCJ@+xmv#QbaOq$#OJJU}sLn)@Jo~}~eH?RYwaikwM8ohS&uQ2@ zyE0Pb^KsHyERgtIIyRg^@d|q}(T0MLmkYdB#655AF|Q7}*HZJ#wRF1^8*&DqyU~;i z)2wrLOr%}GToD0q7D4M)cfSQ@xBEEodWu}a>a~@z*DOw6>7rq{e~UR}F9Bf0JH1f$ zlgqic8-Mpdq7yUE!*SC9Aa6^=TSj^1dV(2$Jn1GNCx{+zCGs0*bxe79Ihb-tDc2KQ z=>67~rS=fda`eZRxsCGnAV9v(v9Vf>?AeH8flePIC$hOC&RiH!af)Cim$E29I#UkL zjjVpJ!tL$ks3OIZMLv)ZS$O!XaLSD|%{#Rp#=30lh@lvs)Zx`y*Z zt9=~<{vJ>A3V2aPjL!Uh*{8cO?8P9_!T{a{DC%+ZX#!uD`lXwtdfB*hLxp<&g+e@<5t)-nxP6sY9lgCu50=w`h!SZkLK}8ym!RAjUA!r0<9$4rCJt^NFg3JZ@EzI(d>gB%<6mgUhcue)&*35YC`kYz2Bzo zRVoKA%jBAV9MHWFf0V38GTbY_uyMD>Q9rVesuD9mRYnKhp4>QVqi$@MD>JE^@&FaF zlU)H&82tw-bqFtJ)us7!i2dw z@26|##gWpF9Rko9^3nNC&j4FXoroDciTMFVSO3IC7qF-`+DMpjYWnrN+{6FnCE|qu zbb`6b-{j})B~JTXLXu($q#KE{+(6k0c}3kON*NZLBx&(-G)agE(*BEcwYg~K%dw_< zS{H;jr4`z~Lh^mYJFRP0E*!zQN*T^9ojZ*p-=0`hoPZw}UP;(jZt7Eae$7Ov6DE3Y zZ`V1J=e^a>GgebI$8LUQ!joCCv~*mv($h)B=?0lGjB^F*y)8ACcN>?L`wl4(FL)EMP!3BEbT&~RXefqVSNEC`Xr0!MY%RU ze`zO^_VH%`sX1s5gCLeS`G&|mw#m?KO9d#{+bZsp%`j?*RQeo3+`nxJ++@87?S&_r2kQ}ivaFM~#dWlw$7t_7?)&?iN|@yE%tf{;-a_X{ zXVcw47?OqtncOKyksCNbNha`O;xIC(l@IX7*OIJ)Fj-lp=2NXGT4w6|DHXdtg8Fzk zg|2Z>FT@6W)T_*eayXHyw|y8?4g40qSJ6PeUzMTCGK5yHjg)}c-M|WM54HpdN^qN4 z8oy(hphY_5%lC%=h&p6F$+l_w9Lo|9tYca;oT=t($&HoKw-gw>$2Mhx4JrmOG(3N% zEOx+5Z^uu-Ecp!!Qxk7}z=KKnF%x{KHRXEAo(R3|Ebr3Jz8X8uwp4b2NrmsB$W};SpcFO>w#|uX z53D`DA`!=)o$pQ{-UQ^I+hm^Tq~*^lyD287@8@770a$zXD8$j=bEThzcpFe=5|blN zlVcRG9gw~W=rRqK;fzToA&X@Qv-tioN0LQ6gzC2Y522*-HxQp_b_PvXYi(qdof3}1 zX!aCl{|YN0YKR4iPl{ZEL%;DpZHd$9Y5jKPY=dHu()^ByKl%(bDK-cn&Blqz_#H8{ z?J-6|W6{b~v`2fnRPrEX=!~F(^8h@kkoETf%c})*_pPDAv*JuCAZ62r7#82r3H0&KM;0&3*JD* z6~E5(Zy|P{JbM6aYI-HjH)1Al&Ukp?rOYC0B|@OTmZci?jc%i3f$- z4|e+_C&+sajcM49VAg;3-)Ygmw@s3@O%fw;O-$LHyqvRje+b*yYab53=9Js^C%oat z8{Y^s+j7T#$pK!I47&QqOn2i#EeC6ZyWpJn4U)_PlE@6wwsNGYq{sX-deXA)R7Jly zETCQ5s=qj~ac~W$TSn1fl_orMVfax|&eu0E4#kc7TOcxEqHP^*_2OnhdvrMP>S#~X z`p}n*pL5ac3Wx^xGnIYt(^*uM9D!m7OC7aK>V^UbChe}@FB0RUT`7kS0-G1cw3kxB zjd^z-b2to3W~Gj#i)tYuxS^f>qihYuO! zq;#f?pQvQ+$OvKs;Mn$AzI9=LVKOR)e9nnrEf3dL)zMH1iVCc`^hH*dO zl%Wbc+UU(Aa$hXVxw`UP)vABL9B$im-;9d+$F0`sMcobjO&WLmBz#Cql#6t?le<&^ z2T_{G@$Y}HZTO3IEDtjJ9M`&Wub1pYOuuiwG75jXQFm&ZrR$me8&t9uhIM6A4s zX*ELTlWa|Gp)J?&3a8IQpa{uC`jDb-ogkVCVY<{yn`Sxz;{X(IsDhJ-gGMYFRjOPO{UL zx_U0jvarq_9c&}fR<_MfaxwTlVFd!TWOD&)$GhJNZ_+VY*OB6b%^k-$AbZl#k7CLN zRFosO)t{ajGN#yF>FF#AW*gGHL~3mlNA=6Hw24_*bKP~*VP@y=wmIv!-NQUQud_q1 zXcs%jONZ_R^Y@%#U(O5$jTsL$x!qS0Sf z{8pZ$WtV(0oaYh;8!J&|AKCBHnWCsU^ih;m2t^Yjo)VM$?4<{li(RQ7Yx6hmr8MtkX^8ey{Vr34?x>zy%U0=C5(i)%Qo6!$xZ(L?B}@h3 zl+`6vCs**ZDhu`}PjZZeG`cWaI2(DKZfO=m?Z)2T{?VptOMtmt0)Y?{WLTwZCN7gE zMW_clJ1cL}CX{30tan&UoYta?q7&jdHK6@lmsET8wDR-8;6JgoQ~LeMKA%d;KRt^= zWNO|sx_{QDRld^rypj@_52+fQBUg-y9JO z)r0_2KrS@~DJzrVn__mX8%;y$2ThEu3Dgo}(o$*21#B0dk9ix%Zpry+rmMeT#R7#i zN#z+#Y8j(!jB;v(G=^bL$cD)i=V7H7RM)W6byRfaw8}Kr(z`0lu)s z6HJyGUzta|*`-L^g;^Mr2e|WX5Y5|K*F_O2e|8%_o%^>5lTjc^YqK7yNK;?zHfbUy z)z+K~Q@Rwj8BB7Pc9gXR6k&FTcyI?b9Y7xAi0vPXh^SE?Ne_B?s%LbgWP^%h;G+vN zF5RS6H+1KkW9eRW)<2pUp5WT3ZBt60tOb$PO0$)v)x%wN<5zs@Ng);eZ2M6h6sWk$ z!1r-PT4LZ%cE2XQ=>b@*i!ZessykC$bdYMyps8#inf~|!@d-wgD9|!GvLB}bbLVM~ zRg~vviqfG{Yc2ZouR>7xFpWHHVzxTo7WKC<08^s>WXdYC?TE#veEr$Ve9@0^F#RlY zdt#DdyqI6uEJkOs{={H*dU>K<@Wxd6qQ#BQ5kscry47-sGozzpy8<@YYVKtux;>)a z=g{=KD!VPp@|{djp+3b^D}gUavRrQrF%Kh(RMYWQpKgIeF~t#QXT}yqOdZ+ zJ^2fo$h#Xa0dp zQ?GuCc&S6#?&%P{2EtG2meI-iDHi#i2OI6yjC$~O&uWxZhOVjnj$R}$E3)kxWY%Xm z9sEbFfQ{%56xNH}ZXUtB+O%G4?0g(uViJ}jQt)W4-@O+2f|}hQA(4D7?ZM0|{{+~+ zs4q}`Zs*UGeG4Iru@CFBOz}eHf|=uDxIZpgUxVgCX?UoE>yhX4+y*vq<$E$PI`e;{c9Ypq2mzG5mEj%mW_d4XO>TR&1k zGD9rqo;>`UObT~6D&+RG^KBOTcIOP>PPtwhY_wUk?$=>balFCA8mtFfgp5lG!eR6R zbB;ISst6{Sha^3Nk~F&6@D+lK5JJ_~6*JZ*wH8)#dE_7G?u;-gROVl^_ZIsBL|*ba zel`J*D@ojcMCk*lkNZV^Oyzv?lgajo_PU`~Thru?ra|CL%j{Cc$an=ue;QPM1ZDQr zcZXwyBr*^gL$xt%Bv2kGDOF%2E0y%3jI?G1y^1qaCWbNJ4td|+S_hH0}&LR(3|lzJsqve!fch6oEI4018wHo?V!pcsi9y)n(Y#MX97cywW&yn z(;LBw+LOSPuP_q7+SW!$tSM~PxJZ@pjf5XALlW86kSQz?qZmlqu z&rOTO1c?=5!NfHXC-=OX);k!?`7z9IZFXZ%es0f8?M@xZCT;+w7?s?urkeSNkf9cT zRNb;(tf$G*rRb&k4FVQqbbi3Yct;z4aAZV2YT@hcx|`G^7bp7JGFbOXY^gWG>nwl7 zMGeu;rB!0=2LVf2lbZgBr4k9gX!&QhVjD7lG?=O#fTA*}uSjwWj9txAykvX$xFK$q^O=7qI8Kv^`6!|F zMP3Yw4+ynV3&rRpSi}&PMS_J`+^{4E(bl({pG~u@9R1w#pV`=fbH_0fTBxLBP92&~ zDDLAtVo$CmM2{~dEOOE9X#uFLjb9ok+UqSFpa^Ljo?5gGcSN5!>(PbmLm5{_V5#Jb zgq=7WX0*~GmDfPU*Y-TJcl!WKy@su_J^0uYdIE*oz8(CsQ1)Kg#h;%7Qz{$FP%Q?~ ziQd>KCkMfY9jUn2Z+1vFaW<(2jC=W5wvYYWFV*MHB@#B6;D9aIIyz6}@xZ-q`Ixaa zqE6;XWfY~sjz{6f(qI6Uj29|~?G5%`U~C}+!7rx8JbucnM4z1H`PT9MgCp~zlHOo+ z?QP+F$84=aRx>TnXVn-}f&G&E5OWuteJcrV`e*5zAV{MBB}mhfrCQoUig6pz`wBQ* zeaD5D7)>@&R4cRO4espD^5k>w_FE?BNGlHn9}jhgCVMxoU(`J}j-E^7{EYy2G%BD| zd2tM-;F6s5#Y<@7Wi7GnvHmlOQ4NSOO}tIhxxU?#aY`8t0e|i$)OnP``YLJ7#08e> zE^pbnBGdh(v_e6X;%ljnU%PJxk=90Tkpx$A8U4;C1>n_X z6cq)y8IupD78h1|Vn?(eW24@NIj)253jcm}?}g-J)&0sWtvUE`GZ;y?*QQYzvbj2G zpn%E&)0E$j&+%2>*s9A0pdC&8G_)Lo2T7t%o%=xGk-FED?|b`Gu{R*5FH|yd`n@`- zOiH%K10L&DV+!I0v&_<%q>+SSRYV>`51!o^;C*90UjziVXP5hr{a8M#rC2VuS2%JQ ziZFnA;{bIs4HJpnZV;KiV=oFszEX`o8_IT8LZXkLYrbsNib6=u%y)yDRi`e@Ya2dj zLB8LL(zT2}QXendwFHNAxE{tx$@0hC#-tZh>W`qZZD9^OiY(?|Y0S0@m0?Dvb-Oun zy%6};%CoJmq4SOliABYq#r`2?%JBLWvEG&(+rkjDrLr2=^a~TevoYa>pkrGRkNW`^ zg9&!_6s1FOXqHc!QEo8x3M$!Nvx$FX^6rx zwb>Ii?eNyS*IlAa$Jf0QUWXtju3XQyr+gEnc~mIeMjb;>vZD;GyS4C=`Cc09KRXV4 zB|6H3&QEKlGBuIYOQ50=1XVodoucgE*0PPsqhn)xsv@e%PQE%s!+YaQ6vQi{ z((9vSdgE!7Zwq72)WW(dP)9F({7XYgF^JQy5;MH=0_IZ(lkK(~)d_$L_n>v5?S?na zd-Z{Rw1Zt{XXfgxxhRuov@GN5omHZB)J5w;gi+98sH?(A;8lfTS9$Q!%79E?jAnxF zZ)eIG=PNOxe*z6dO3qi(k8&ht2MeQxHiL@n64azpytgrRWgGLZ@npG^%|Ug4J@vE> z;`C+r8Z}NVd{YCWXW59J{3Mjh2g|m&5xMT=GViriNUWDLHbNZpqdP4FQ29I2`4qJQ znCUlD&_g?R4Xr|2`g6B?-)GZjF2D~h(MnsQ-*2{5uV+O{=ICmKb}-5s5HhY?YBj>7 zyqXgwb7b0`k&@C~Sb2YM`s!B&5kWe>Rr^hwdZaP7c+y_R4~ZAa;4k06WaV(Hyx+}_ zyO+xj|6S>;D>G0lKb1_|9&QaBEo%xuoma#NuiE&6{)N2*f(*7&ug23v25-$~q!?Iw zQgla|AZ3jMfG4uLZCShYGi;dSUWT1!H#~hwdCODQ&rnf5M@D^?k}!^#wi? zP(19K$#3((x}->fpGAO%cCyx|QCQ?f^Z7WrtpZky4tdxPBjqF@p;%)~~-#0#Ngu&6gLz}~s@k3_rD`mA~-R9m{lZ!bF`oD=4#_0EvKc#!4;oyCbx zhzILG`Rg(5f@g3d_hmTGcJ!c;|G4Ofbx!SD_E-|6f7(+pGb)ZA95coO{t%Yc^6Uii z4REyDjK6z1YalC9>gkuHxmez)c?Ra5!RqcDgW8F{0mG{JT|8&WQLbR+&rs7$vaYs(EvB!Y@5spNfhNNR@p6=WYNY zPQi!O6|*)~M$0>MM)2usJvNfBziXHx>qdWz8){GH4zUN0Y1odnRZHvn_v7An;iGcd z)cbsE?Cx(6zK9vf?)L5@A0BooI&AoUAtHVn_aQB4tMRtD*(+{={W_Fprzut=)aJLZ z+&73mR8>b3Oz|Ti5OHg$W{%e)InQ&J`$OrxzG}8C9`eESAWIoI$M1?@QV-8yRgt1D zj(oGibr%-Vus{mOJIv(d3YnqWluK~Y_va>RmGAQuiQXc4o*h|#I$j2;X_ceMJO!TS zwxZh~hmHaRuB-Wdwtx;%#Wg}4HRZ}y@>o#eCeNoraPGR#(jlz|S*X=56`=~9g~;bF z!At3o0MJ?``?DRw8gM~I*ESP}_|O%(Za{Hsm;cRhgCj@H{}u7dhcVF;)1`Wxk3Atd zE|I5YolLX$TeJ0zOVq56K~N(*XR%g^Rg+@PpYTD_7~h&sz^Q6C^GjFD!bs%4+nkQ# z3HmFk;hgR@Vw~t|@w1FqqQ%=u+E+QR@VqDn*nVFlWx0_v5zgtO-|g`@i%>LebU$EN zj4qA{GV~Fzz*A~lan40_du}scw=;xdnjI+KsaqEqa;RgE$)~jwtCLiFVSB)A8JRh9^)RY)d4nMjs>jJMigT`p%=sXnxlwi!n zn)_b)1)^jIXYf+e>7un1-1!G@W~kSFQsiz5c+D@P*{|-T6H0-HAIYQGjv{dv6Z+uG z#uq<&uqBEj zjd6ya-+2uV*E>t+aifGW-%PB~zn|TUzkB__nOk8uu3&7aHbh$mmAWrEPWJg$upTRp zna#$RsZT)mKcY~({+2D4{@6^Rf5HKU?WzPJ>fo`rqxu-GthUS{L_WWg!_cpl$N9XT z-ai9Mp$nT>SjoFi2uhK0VuEQGXkBW|b_C$S4^M6Wrta4DSVUVBlRpvIk(P9brJ)*j zx~1SL^Y8#>^Ifj#SCP{Wbw3->sTnHq3_qN2{Qfm=yt^?H# zzWzsZ|7oLBj_)nJ*=Is?)bRuIB9vO ztt4wh?ZAn<{x7v3jKZu6sPtq7Gk>KVKH%)4)oDu~K=#!q5?O>^n9uS?{;`wu(=O+m*bnJZYwek1C>%F4+Xt{@R*Y_;b(qQMV zs{ouGB|c0YgSughTi?Wcd{-5EWxHSfS%N7267(mS=%q#I?|QrwVT=Lz?9?72VS^Nd zHDa#?Sk`u5UL}KrP9eqxI$C1B;f#1)(qJ9C=SlNaq_lWl2?>@n^JqGe%J4e9OQgb_ z3fy7vIVdX}sFD*^SpAmDiSSfHDI%G+>Pt@TBn)rveG?9*YY?iJeTS_ zrVz&*%YRjA3!eRz7qc~L<>a!@&Z$EcYN8#O6ZXfb^yX{g```YElwBm&Fzm6$tmB=t zaMYR~mI>H9mq#LlCDf1&;^@WUU6o`~Ie*`-y_|4sw(ztlRvJN>?Dl&c8YkA@qL5AS`9zTYblWM24`} zRY=lHoP2aYp$jh^8Q;ic`iiSQF>?=16(zVrtEq%1Ub3AL%Xsshqo(ttJ>z-uBgrTc zGaWg=!m-?nv&{{*4_xC!St=&?i%{fZJ}m?xTr%!k{iC+u|E2ch*WIHOwzm}Bpbugn z)^YUxtdqfJ#Du>%n-IDgKcHXut1qHO(|ZfnWvX+p`|T-&^mSxRVHP;dA#pL1&Fdqt ze}dX~LA2Rl9Mww#%k(u+yu>urwl%|c9kE0{{TYdJvS(}|L)Q?d?=@jnM#SYM@JUOY zu{2+P!^{deiXkJu@o6JGXe*bpe~eSqdVhyj{+3EhKv_idZoH}5OTt?l=Tm1cUSYYN^~s6Y(7HQUez^WbLQDn-*1assa7N!z(>jTS0}F0bU*a4_YwH4|2jX@7f~K-oQ+0w zsXjp$gIG^>;dGa%gT^$#9}q&Zgjcyk-z~mDQ0#Oe(RU*L>(E6~aqxcMV7t6wm(-#JEi!($N(xe`;ZI&sgg#MD$uo*NY}^ z2>+<|LxBnqBF22rM1bOr5niVo%D~)XieAb6w7?wF4_bQ6wbIF;gK|rKz1%UK z;h}8E^R_sJ$lW)dTP>mZptiJBcu-%@3K8b6ZX{^qIcNm7TW}H$;cHljH>JKvegke? zexr)9XJkP6 ztF-OY$3ttU@pI~NUFw6KGO9ZL&<_8aazmIOZETkq;+wFC@_wi6Ih^%NC_28}(_DNN zkS>u7{bUj#Uy{7_H=;Q6^}9kcqAAlXgnX>`pd6|5ErQDN&xy=P^Lz*;`P)Zvq{SD~ z+F`ekdi0lz*iuRGL&w8`H8T_Y6rUYH&374;nYI|Rr7 zDUrXmq_liDt^HZ*yd+tI#tE!^RPOb~WeZDlN7a*}N493ZKPRi1dQx$G7mq)|e-*dj zf=ZGBUPgx_E6)DLMnVhdO5oreKO&{?RnE8LU85u%qw`4K?BMP&9pG$E>Bw;uzRD>d zZ=n60hm>4cYMDr+9pMZ{4B$!EA#|=M^_jq^q0SySEJx(78_SsaHV1`J-6La(7#wE} zpFq4DcqbCJm%xl^s&{*Elc7{HNS8N4TmSwNwW~B3rE)Ssw-EKQ$@90I?VGl>s>xK2 zmtrPG6M)~Z3`FiZWUpTsokJ;5HZ;_ctZpt4!(DH@Xnh#w+CCJX;tjSkv|01v+5a-PcTINWyrahj6?WiX7R0f;39uE%c$w-1|;#6d zYO4ziu1ls-wZ=h_t%uH{hE3_KJFVUT;TwN!&%|1y4>3cL90f+nuL@?aG}%lru+2lI zjiNbCqLi89q8c(T)EOBq87jijaA!yVG|j+$C*4Ev#NrLJS8S%i;Dz)e>V3p+;@ZC` z4JXy|jk%KBo+nrBZsX5a!y+UbN;_2$=ahK;-G7>Ffm;-*TDyHo%2=`x2R@UsbD%4awp|I|Yd4#)3o1yU2MyVr#&h169$Lu*su zI9tr%%Jt&(zwFHcv2eqe`>({Z*sDz166cL0WcMqi)trJ{A|ww6!kptfLJVE}J7hL2 zLX9ajpx-HtAaJTL@z5?kA>R8p&=guNPx=iK+FNTCpx-Jp1iH7?3j$7 z3ReGgh<+Dt8t&@B!r+Kc8=5gjk z-kn=R9&AJOns%5;uP^Kh*Ep5O^BzoGua97P#vzRV5n;i*e~YwPH=f@eQ+Z|?AGmIRgf}4n73MgifH7p zH%OL=Z5-DWRb?3Bu+k+@k#v_MOaKI6CVzPwg zhS1PzV=SqBH(4s@9#ikW9!2QjukW&kR8c}|-mN0L zXBpSj+sEP2-Q7b#I+T(SHac~{=#r99Kw+c16$z0Nq-%_Hk`qAzi2>3e;zW9cNH_kU z^StB@j1Qc1-@o`?S5}yiA5E|x`*W0-WD#&jja%pvBK9NB44MUft50i!i~BBODKwwT z@cI;2cd#dZUv#P)a~=&BH`@79$1ogzPOj-M)s$!Gc0of33HwR@zOTMweoJ|QZWDcv zdoPFQV=gx3qWEr^H4hW-eEwCiW5?#$SJZmIhafoXaWO9b6fkN2VxyIr$el-)%6m(KDW)UxuWAV@xIMf z-Jcg2Vg<G-9tr>pTm5{$i<;)7ThQf(`#!4mj9nQ9Y-~ z-CD2!Q*ld-5ADk<-T0>XMYr=*`MpQV zi8Z5!w+Hc>)RafxmK_x*vz!6U^J4-tU4s`k_6Nxp^)TI*1QCbluOVTjpO`Y`sP`U* z8QA5)rr|zR$Ma7UK>|O8+Ag&&erf02{Jm(yaquwrw5F9*@3vL4aY9;--~_DRx>RzVN% zZ1O9SX-&iq0z@*bpMZ746D^q3shA8fGC4W2(i7+vOaz0(-6_C(^;v4-=hPk~;&ruw z!{={S`{ZH`~l9{GK{b<2M-u~UTYV_*2~rwS5@ z4;cEdN|`vQ>HKit^^|o5sIx%k&{OLb=>;8+xh8h9$2UQiC&ZSP*J7hoC(sBXOT|8l5pNH6(a|BU zOJicx4F#K#WwGi8#6_`MijeBU?`N`z6=2C(m8^MCI^kdd8fxI$^%i>;GPzGHOC!^D zZ6wnr#vG=)HZ9pspQVECiu4Ps?2?Y6g#B9-!a!3+(R`P^j|mKP64?BQ%EBZRh>X#S zF7gH1-%n$XNV44g-3g?q2M;aDD2lf_i(r1ZX09M;$rtJjQ$ZT#wcF8xW(*$Aunh4h zIBEc%5`US%k@1IYUDw8gQ+YuyF`bFwX)ou$>>?N%E!!jFvdW&QDHD%}$lwuX|F-ji z%n4dDa@mU{HcjqBg`;Y_C1c=(9eV}tU*?Ar>~tLc+d_%E>YwhGBnmtQ3uGY4d$^i0 z?pM;DQ9d@2mRv5^TCX$}?Rw;~JbBu*_QgZ08s@-FxC@_6JWh^|i%JCQ1hV^86a9&HVv8Bqi5E=H$CLb1P2naxaF7J_gcOrooc?&x}=rK{`u7 zEztZhY_}0GR+IS!hTw`FU7D!lh(adyPrl58zQ{>DIfR_E?=eE+6hF-}#NlD&qvv>2 z`FV_@iEi4{6t~ zSw0p+{~u@@Rd`F~fXIb6?-p<4PxDRvUn4If11i`E`(L}6$oD?+1mQ!@Md}zloq&DU zMM*Pam-o1@)-KY@mZkZs$$K$+zX)ZwgmxSG`vkQk^+Lt^49_SPXqNtc%@(rN)FpZv zIZJWlX}B9lsr=e^c3gU|+JW9)Qlzj_;%;=6e&KQVa7mQ+{z%^`l;mT|Rt_g`+efz2 z2PU<3A3c%e{;#hEMfdAmilzaAemT>4D3%Epse7gcS<=;Zt0sUcj$ib~CKRs7wD?wk zl*&?ASAsg-8GCH_>c>;m_L3#d&`AQhTwk8z%f6q^9v=v0d~p7-j<9HBPN(YH5#VYZ zxMIH2H)+hmOD(we63kK83qiXHhH7`obn`dKGDg!VM1uBEG5<0#pxe9b`3eG<-a3d2 zeG(hJojsa)5e3|aFC}N?_fiBBMVwv+5MpJy!9tCUH4ibM#|sWNs{X!jcsz)&BAI4o zre{s|;x<>dQN+K{b`7DWYT)-T^taz6QWWr%(`?87Qhl1fT%aOE7rGm#zmHmbF$>E7 zAmIMST~@|Te2jGV66MC+7*$YT961rH?johh7cw8sWIyxGb*e+=-T$9889+wN*=Pen zYmC#R+{?ab#csU<*gq`&(dpHw-b)3zMAeqesRZ5q!t$unhQ*Tdgch)eT!#ECqsoc4 zE1iOPYSxO{nv8X*kD^zTZiBu-kr=l7L z)4O_Fw!H)=H=&#L?|>3oY6fy`o(|>wI{nAj> zWt&l-gke_tBlzf{uqP1~+;)e{I6pE=;7|75bFNfYR?ZPO*AH|>6Ayk=wMgShj<@Bh z-)J(rM15Dv8{sKuSjDe)cA%V`}>IY`0<*e-9E;JA%|7 z6)!AR3G2ecNi4ldnb#K)LGHvVzSv==wA>~>EjiDk&eC;DZl-IQu-@YjJ3Wf=eYN8u z`f4L@SVR!zxsx|@Tgx$u>dh!_M1n0YX7a>}(qAioGh1mfOX-`d>H-a)z5_aVhuYa8({2cMFXMwmc_sl|0s*<5nn71uO;RM3bJG%EBz7oEm{GxAxv}f*a?05l> z4Q95Iud(87Ky(nH;y=)b`!DTC*!R-Rdl)amZrug3J!(hlpGeRQ8o=J_TKzPw9`f`r zPau!~CiQN_C*GNf0~kOV2uC04{nSU)mQD{`=Y4Y%OF)=q4~bF!2fx^iR{*lD7i%mEpVKznaWew6L7+AQ93;T_^BVYjYSS%Niw0~_ixV%NpWWjkJNF8s}!S}RgeO3zeW@A*0>wC!- z8U287DE1DQru!qZKVH~+Qes8uGogQSRT>U`5zTQA@9#F$kWagFdB;`gE_fG@D{Z_k zTPmQ9ZA2(Rcz7Ib^CK;T7;>Mukb8`s+143~5?Y=wA`AN!C!WBxII^i467?BFh^Q1Z_Q};rYDqBUyWnG3o9RX4s_+Lm0m{iq;6JH zMacY4%3BEOVoQse*Zl)hNS^ojcH_koe2lAF`o(C!m*BVNk0i@GTf=beBMigO;7a_y z7>e8C32Rs4FJe!iI)!Hz0-3L$2H>1`D7gYuCAqfa=;9B1R-Nic7{xIHSlB~XR`t%kx<`C_s3^LL??EQQC6%SYR&?EK2JS)+?H`KNAd(uqLiKGN(Sch9Yt@83712g}Ec}3gM5E z{py0$ccxi}^80)}C_ghZs3yUf^Xzciab$ds84JdXN@Q#qJQWkj?bX*6IGAhSC5S?= zMJs_m@X$uG>@2wi=qGX4yJ%{ODgp?u*5tmrFU0(r-#~*8o@uN5_u!{Q)brgg>g3;! z9jq5S+%l32zX_jok}=ug;v_=vqz5gfz}+9~E|6oD<7*YpD~R<7iJ5u@11Ax z%^yR(e5y6Jm(KsiR+3xhK0F=P!NKRV!GizZ_9Z zXh*`qiIdrR!1lOqOw`V|U#Std_|k*)I-3k~Cw@FlEaqiEQ>I0EX$Lk52T?J&VY8Ga z3et*+^k>j0(IDQHJr>k0-SVI_%%npMlk#OZf*Ge zkEJS~cMFK5UE^JU7~Sz?2Sgsk4DNT=Vkj_fzbrLex=|uyZz+rHfn8+(bX@$cs{p7- zYlfx$16TO^Q}OQsQ1=U4prql5xS4EC3(~snMu?RUx`8Dy(sayfPpQ@M{zC~E=rlSQRh2b&qK%7#0DG7JB=Yy{+6r}1o`^GC|HtwSCF#T2r{Vs{ z<$ZOVL(Q*=d(2}~tmG1_3;Nej(W@6Qxr`?GM%KYisR6)=X%*RPjLc4kWXgsMUEjSD zR=nsPvjkB|0qYCW@M$O-RTc4a2#tAA*OPi6u%=-bWrhzew&Y&E-f5#)ZFCUVM1H3r z!WyX_w!{WAHCm?WoI-@uo~FrerzIKmof>Ev$j{pNo-B~MBnbywsdo<&Dl$j+o|^qM z?JOPk>{$>JEyiV0U4-IF=t~d`QAXdLvmK#A+QEqHwYUKqZ%Xwh8FE`Hy2F7C_sC3# z%_u`z&UWF?f3TVRaU-7YA^z3ywB$(xPca1s>n>Y!lM*rR`XtW1R*fg)3XE;B?zZLf zXuQ)SWcrB0o9-b|nXEcH|4&&4J9wj1h8JfE%oY5H9aiomCsy6JQ@Jch&>aBQ0s=_+ z@T^_=+3w2|K0@KLx(enbGX!!sBsRc?FE^W5l=E7_}05ar=bIlmjt=mlZUdvYzoPMEh%Yewd8Xqqs$vfYk$ihUC-;wFd5(Z~QlT zV+Xu${S9Ax3}6B18VP4KPn4D+Tvh3#1nv$;k%!qVNNExen>#jl!AkEF6lZuupwoT( zT_+~AxtL3^T*yQcK&V-(!dfb;Hm0e*{xq+OCeLGEEAUPj)yqn{{;OnWaeMb@%ywHQ z-suN`E`xl%s!jWpbKM5-yF7yW->DEu%W`@iWvF(Osn(82aVK^?hue#hVflxBdBh%k z(xUx?pj}a`S>0|D{_K|-7wr>3s7K6V%8E!%A@^I|Uu|MMi{cj;PGjo>Q^gKWd%F%o zvGIp6(!hSvHbK}oyuXJmP-Ozbp4V!4^}ZXul-+&JyK!)PXFN^c>b)fNb$Rc|?7#{= zpDfwOrninxVZ(D)oheadMB+uP_WDh+gD&f+FSrv6nBYOavzXT3zLijetGHEqB zR65DPT;B1{UO97L7JY;tc$pyucksMR*WqCT#AfwC{p1ay(*yBZ!2}@tO!}YLgXm_e z5=wMC*v+Q%X9bg`d|F9BC@IB_rvCkk@+8^hHk>kIqxHph9Etp1df-rnCl@T3Qf!ZT z$v_XJc8E7s1J}!0u2Yi&9?4I$uH$i)VWnKq$ioZ_`LPyF00dy%^)@i>CwnfKm3)4A zW445j`?!S8fCcSPO&6rFo%B_jB?qLcJvqPz1$lP!$rP(UpN+Kn?YW#)2 z$IL4vbLVsI_h0nF&esS4N(P{LW^2hD&?|tc+G70F@}ev(EWj!L{z@3Ocyu+r504qg9IfYkKsD(fZ!TRXix`7vZ32x*JFM zteeA#ZP~?4M;X0X(6xQoTgFiAB|vwLP8AfH*=8HW#Hbuv&?kIpIfduT35eZ_V&$D2 z+()O-Jx~*^0JjeAm(pAb8ZV)3+;p_}8;Hl>z*tT%AO*0 z$v$9~`njETGd`pI$6)sBCGV}4$IVVGmZMYuP1G?ZZzY=P{k^V(-PeDXeZ`PyRN7A{ zeJFnnjE0dH@WJ&7rG`daEa=Z2E%9bpzKN$A; zt=}@IQqbB5`=lo>aJ}=+U^^LF)lufYN)IjVVc$^nkf>uD{BxlIa{M~x9-oz|d)BtR z58SEg1!Oei7K@HYqrkY)X>xR9S!f3a{#MY z`j&i6s_5XYVU;`oSSjdaq7y~+Q+|R$#G|ppE>?dJ$tW$cY{ z>zld{r+p+adN5|&&KNtl+ zU?C;?llrt^!JaiRd*A`(H#F!$c%{p!*7vsh`0;-7EM-jZJj(_a*C)ZqE>qD9zEqcy zW}A{x2_RA|G=LdurPqXH4I-j(JXbp#)4}) zqNoR*2ltL)8XiYaR_ARBa_MyNa$ynrFVzj0jEIETL} zy>wV1bv17>RX`Dr2F)6L*L2?~I?*xbhd;s2YSk2}Ni}ojra(^cq!B31O5VNLI}4!v zEh;{xUSmSc-F^8n?Il5bhoW93l8$dfwe#4v_d(pKFCQ>vg+G{B?GJHs9FaL*i`!+v zEmyZH);q^pG5BbF$y*urM61uM_QED7>wEmT20`!N&yaZ=8v(<%$FG5T|8 zv99bqX3{kZtk+!n;j&cO6owbwchMwuA-(Irx0D_iT5EZXhPGX4cLnWwOtyq=-X0A1hdq2yB(tp`_s4!1iMnvZbcdc z-s)qQBb0-8!YVch_eNAbH?>20NbIvfVJ?A7p!e01>8uoIlB_ZYy7>Y_&T0F*!jHnz zkDlba;LSLe_G8|MzaB;7*f~!$qsMMZ(=oKowB6Q9fHUmO4*V+G z2y`KI0~4AKFLg=OckHZH^)xAMq)h(tH1k;`)6XnzAJi}yoP35%6n)_H8Muz1iE_`N zx7L%&bPWWrzg?`=y+c5grhd-yu$&s)aY?i*`I61_i^4S96-lz)2*^7UjNhn&-87K} z<9!yfg0Cc>NA0LXVH7JtzXO2m4J^TfzGzQpT9m>qLboelNfK;DK7K6aNdBlJ zPLU^K(^qWau93ohmM~g~7wL5Jdo{lu!vjOLe)-2zmf@b83;{oR;#cNrDvRkHiG;b9 z(xeoRY&_pOJdmKJ5IK5~kNXew6dml3jS=8uTy+05wwJ+~O}y*0V90wRq*v-!r{^XUr+d;*z$V>rj-S$}unR{$zu){8&ZYZtwq72kosGmWWyX*n_%MeXdaD24*b>cEG3Un4E z>a3j_Y%yRN=G6-my2ta^!?ve&%%URl|BHjSLvd}-oDnPn2+bdrsORSdvM+FA6NI^D zLRzNzpQ7v&%COt_mqCRc8<_sCkN(Iyf!5y9CpgB4zZ|{)fdts%P4Lg0wFhGV$?2Bp z9{tFf&NiK`mVn{?6HP5GIpOKQQ<8o68pda*faLTX%OYd?+NTRa;WQ%C)*oLfXWOCL zDKcT}T6+=W*jF3U*)b*`gCV3Nj^1eQn_OsL3Qq6S1ifOvw1N{|uI*yvZUztEg!g|S z9&z5*L|$(^)O+9zS|eH_SwYLyTS)I>mvT?=3`4cw#g7|o!X`h0A@O9-<%m>W49DT& zarE2c@*|W&HyhilvTr*qOdB}N2B8?bu%0bA33=X4o!nC9YZSu*seGMV!RlA}^%KX! z=lAm@2r@pG755_oW`!&b#PrnA>nRzJDTmCs%bP?Xi6A*E{2D&ZXT+~;H6-ey*FI^zzck*WrkTBLaIC@h0d~POm^I;kHu(V_IR1NA2Ue&1 zDu*JuDD2L&r;TU1aTnb}{j>e#1&;!;g9825{mN-v&$dx&8#swUDQ(>Typ>9&f5vOD*!Mo;zZJdOw< zFYR;!&;@LUoZioV21J`a#)D|d1Spy z`YDu#^HM5lt;Oz9yFz~#6;!a2PGe`h|L$Y_e6`M6xQx1;$W|yuemWiJ@#NNSwF7!> ziBx40={;>Zo(!w(0gk>2?iZ)8q;=C`8P(t&-<^ z3jg7snKDu|c!+U)QHQSFuGqT-b3`L4H3x;$%7^0*w_}KwJf0V2lPV~j8YugoLLdCa zh83Azu$v|uKnf#aYDrt-CJ!g+MwW76lx?R#A9TCAk?SwJ)s#JgbEPM9ToGW3ZLNU3 z)a;QPYah%r7lAB1p=!6+f)lUfHE)(I!SD?bctAKO8Sg&6&`TOxq|{)k^GAq`d^*!L z=xuwvMXha*-TAUyEO@wDlwCnwa>v)Yr*~hMXuDH@)%HnpZ+X_nYo@53=2YNOdGCXA zxp9z~0&P*>^V*U~nxa3owEz&hd4YJ-K0YmZL>u8HMbqTNFG>adb0HAYjK{==z4BdAzqsw7G-XqUQ*0s+L%>pHF22Rm!>owt#w*B492XjH(I*6tv6{;*i*MWR2c%-mguR zL;eT4A6B|LM>j97Z=yJJfYw9}Y@7Ah?gizw6#Ng#3HTd+L&bFuIu(rT zRLq=oiB=a_Es3}9mPsR+tP`lDN^hIn2xCg8Ql_y+aWec;1tDgUj=?#D{V>VpOy^R& z_zl)IV6E3|-U@If`%F=pA(y9=01wY=BlcnAxA;Y*Hb5BwBi6Eh?lx))dKy}CcMthXRSF+Lg8@-d0)m@z z$wM#)W*V2NDV23*NS!8@rH=(Ryk#|N-{r8B!knve?%8@d8PZ6wiSq=IiIpf)U77f zK~TR$rf)C++e=nprdTjss@h#Is$%Y8TyWcJe|8`WVj31OGHDvLrB&s#~;C0Ot*)5{ET z_6stu0dod3k0Qut0NB@qQxi+|4c4CDEzrkPk@q5z5JQ(qv!{PB@sn4=eB>ye%wW5> z-8&kYX>{~zC~@BF%34iDry@~jI({zZSdG*R zZ*h2<7!!Bp!$!<~<2oX9R{&Obq&haO5?u~@?T?)hSaf*|%w41243j>R@?=VQ6&c&jnBe5S;pk6YXOcg zWGyf90&J64+-^I#)?hbXBVwa)?>~?Yl=I&koRzl!#*LWGFU40iHTM}k4r0BGUon(- zZYE-O5N2Qf}I#4ej|3A9|i}QDtOhlEb8!lWS(l zwicHN%^Z)dc)swR?awuK(-Il=-knhWI1F#e+8b^25J<&Yi!0np9#4iiyZyPW4~k^&Pdsmm*Nv9j z#4h*mzhcP7oql+XpEE6U)W_8&I)YdXxwXE~>{$1)k=NbND@j|9Eg&ClRlV~Y=i-M| z&k6PEwxW>+ui>>`qKQBd0m&wsgpj1K*^?pa+#NZJ8aw#Ufb3zFxa^33#6g2kfxO+M zF*ZGVt@B6iI^$QYBv*obh^4Nn@3rIwlKXG!9xCYmgh-WW$*kkw$p@wwYEo@%@wwP_ z_Q0N_%W|GkW2n|`4SpMlbLt^;kQ#*b$9X$FflF<3n90p*e+ zewel2h3f|{#(Ey)>~*_jLYOn&}9qn-7q&Bf~;x#)>jvNgjVs`Vd1NMY&R?3lOR&g<3KoOaj( zQD4oh`D8R!5r4K37ZqUajQ*s#PHm#6&@0B*IxEoyoHn1^^{sAwWqKX*CNcWKck67G zW39WP@})zMg}PIG$1yV(59Un_-j(JH;36J8L<J9HnubVf6XF?$lSW8ZUH zNgG5Y=mC*u*!MK%Qu-y`aC$Gg3oHxig}q}AXy*dW1UsULMpJHrnP2s)`Ze8punqn2 z2SYUI{%mXu<0j_%7fVU8@v=lG3JbU{G<&JQJ0}Kd?O1Kk)85MO%3=^w?|TyJT3jN7 z_b?FVIOdhf-P+U>3r_g4CY*Mtzt?8STF9kgMi}6qvf$Lv!g|Ws(Z3k*%yv*tzQ}rW zVvOe|b;pE;77bm|Mg8xtC)B-#_oP2fs9Z^mBBv4G`OPb{jtAj1&R0-XkpY8&p^4{h zgxU;mjPs*L&Fk0IMx<@_>XR=5x68yn%bsk%o1_f+8i-t5CW=xygQWjo8y*9gctp=r}nM=Ik3$%1X@b_RU>{sgaMT*8jD z$FqTR30DDk5Yf<#pwI~Tp?lit_bPja3-IeK@{fXr`~(O`u-@C#UTVQ>{A0oiOVfUA zO!PmwQeT+w3s+UG5#2?|@LQ>yY~VXurN+s{rsVPv-qmC1@ZV69aeKh+dnVXybScVE zOg#B7Hc5sCWkB-Wcb@vZW}TWo$Jzk5>gZ4W-8Pt7+cjLg*6VX&g VMc+OJvkwK1 zIOS+znQU%{&CINNA=EH&*^nW@o_rGQc$c(BOwOwxP$`f`1Vlte;?b_~!)jrg&?57uJ@H ztmh}l2N+TpEdgAm@6*&2>{)T&J$K6l+?Be-Y)SHTA;;_4{3W^$;QTYKzf#wk{PTtA z#mh(mhpvynA3CB(pQ?ul`lZ}ILb-552%NyJUch32SyZ%v148qAgNR&52?zmzYX=sdQHU}3T@~3EKP-cscHjZVC zXX3AWTGlw8qU7uQWuA7$qnBsrxW(l4F?*K~_6s9k9}Xu*k`l!sb?+3X0&rlLhj*jv zPr_-o>wNMD^tYR3{h|vY)Yo^1cgvpFrPd`+KSBLKK=QkPz5$zGiI$qUhJ%$gu~A3^ zPs<|!46ej1lULUzQ81p4w~R@%iBc1 zO)fa__}0ji9D~h!W3iW}$ufu$S>F(Bt||*d7dg`uMcmS!Hhe0?ktgbx+QiUrshfHv znQO6+?weCb+R0fp@f*GjZ{pKgXXP&zebrbxw}aeNga_QfuNmXAv?Pp(Xxx%6+eP%L z@2}wA0%S>pP{)VV0%NM8=lQ>H%p&IHJc3IqDeWF3ltMNhI9_AXf zI8wz36@qg;xlJ>ReX|iXzJM5~?K(4#c7<@+slFd)pTC#$h{lyI+5g|&vbLYQaZJWP z+l60cE$A~SoN0|8{y0KV_4PU#sfvK>n$c`Ylyyu;19130A+p7cM>uE*m+6 zg|=_hRN5nWAP_L{074Uul|(TKNv}_#Q2!mVy-oYx+(D$x==UcGN>BB-Z|+I^&c61H zE+6`S2>JYYmXgA7_mz!f36=>cqB<#LL~b1n2fTL-N&5c=#IQAg?wi(+jmPrgMn@T2 zVfXZZKh=0^#WZ7>vfUCq?oo(uPpmK=6K2V5sZbnOtU2uO*kd<%Vk}NbVbr6!VNFVo zV11qlCJ11No@pa&3ymW!z58w(fg-wh9%v8aA3S}vxEB{Y_Jj50hk0Yxt3&%|bCBpk z%ZqLg-n@UT950}TwIiMXfjms!0`?O|8t1;;#YD&L< zIV6NMIy1DsyGZ70!;f9nru_U)RqsTAP^Gx>8$R}g-Kzx`i@Y|=w;Ih^(|d1bfTVj` z;}4hHYG4LFotk-!Ah4xJf8I?vN-X(;l{6ih+fkk_m}tGwgU|iRrg@v(jeB+Wz#l6g z_52j8UG@U6~cKY!&rmsA(El4YHn|Tl*nwrkEX>5=6aOqE1g85f=WSrKWKUc$? z9kZ_)0WEx-IYmUxWE6N-F52P5q z8)@~Bu`s80xXGELKV~Iam2DOM!3>r+slQgA(lvJ;A<>bsPCuVhAg&1itO@QeNnWNF zXMgTH%O52Wr&;$-R#$^L=2qd@eA#>Miu!Gc`!v4qCtiz?slRb5KxdQQ!&hS&-yV^Z^IyEry`TQ%z+C+FBXdwo z{b9))P+o&p2uA~+EWz{GK##>fij^euj4DV5wi70=RhJ5tcmXRV#E#w129mQgxC(a= zZUC+2LaeCs*m@uQ%@T^(h{0J3;bAEn&M6hc{el6``u+P|#~QiL>Pd0fBlA+^VscVs z9%b(meRZOBVfu!49*O!)@ZGE04f0)-OV2D{yeQtxt4I(`$%3Y8@y5iuB&5AA`-jf7 zH-$k7C7H3s7E4*B>zdR;cR^CI)wWQin=FPz=(YmodK=7aepb-7&Q<+@rZz_d*bUrNm&w8}OQ9iOH`0KKZ<#I7e!VaRw*=uOC;u5;PgSqV&Z-}5wx^{=`IgKP|%>4 z2yV{!aDDMSK&5K&&-=MK#CNt;lQz;#O4wQQWiglk;Mb0N;JB zLw<+3^*Q|)+gLNWV<10@#uD8S=oGVves6dsUC}(vfC<#+de|G=wU<9UD|94gqQ^?I z(RyqcbDixg)zC{hjj4IJ!DxHqp%PvisRXeZ#HcA_10W^KEb{*DdQvPrYDKdC5V^ggy{*y&iLp8}r{Q?y!b~R1xbpPhYf*F65=n^t2PyZ=( zrnYu#rnPJyb1?OTKhNH@l|cj=Pa(mvKw)ToF)gMd|JS|v-EM6BBZjdtJr2==$BvjP zm@uc#<62F&KggGD*VM!EQ8q^1uQ}}=ciu>2v)*M0bN8nE@D7$AKkJZ_sQtO<+PUv_ zWD*2?OPQ}6YbzNeiOLelX1iI9wqc)`f)C?wv_d#DZw!uTHhwe2~kkpG+` zq9FDkvx^d{__`Z=@w7~Evq`aj@yVH4)yO+m#y0SG4Hw&P4ppC^oJSKGjw`e|l0>nxHuJCQM6~N%f=P@1 zrQBu+#oF5Vd%^xplI7A(_7;$KJ^_W&GL#V?zlHS#* z)F~8~EOsmTDyL#YqbS>(FZ0;}uaKkK@9l0Ru-h0JsMN+0|8@UIk5c=qhCuT!3>)dX zTz-fn)2}Q_7L~-Z_TLU2k9F*^+joAzgEn?;=H~FEk!(!2&KG!#?7vqSjrQ}TJuN$L zn+vG=@*kjKiqW*Za3KT7IDBNko47d^v>QVU*hMk6dzV^t91%TRYZ!o72;?5%26CDS zTpbI?xHjIu?A9!4SGCD}j|p`5U^Io8nXc6ZnZR~orc@{V3~7vLb_4OuXf%3k^I%fT zH#V{6KahQ-RcQLNTJGLk*E%Y^GmJ=-OD6f~Rif_d>=ig4Qz$f)!dGmgzDC()dO zkGGTo1>mjoxw|ndwx7e{m^#8IL=hj?4)u(WTfRNHHFCz}g*I9u8X9|1_ec?<+>>f!Al> zK?ZOff};#*+T7ct_j9HrcPqH|(t7SepGK~eJ7{2HMyYrl06!g>lC@rN@2Fas#OKU4 zhH|2gKh&wkp-nVx!Qmfg35cM!M9mY5P>%kg+Y zKRhpDcUfMfj+g3vkPFKTA#u#4qOe-e21m=~fAHZW;?}e;&6S_IivflmxxcorZSKue z*1njY)!>!91g6Y>IAysMxHkQ?yRi4KuT(Bdqf+?cZWp4y&F5I`1rSj)&pZ$gwip#> zCu_jgzyGSyqx)_9ZEwE5#Lj21l_=&o_u1Dk3!x#>o7ah3q%2-T079>M0r(#U{euh3 z(H;K$G&TBb`=#BU5cU;cvd-=MS@aFNaj{+DVqcEu-9xo5c9davANeKw6_!2Eo;X`_VSex;M@Je*FHq+0qbyu-cgIH78fs!P~|4`sXs!mhIo%=HavI8*jRrXr^GZG}> zpw&F&>wB7SjDVk2S15sQDO_eJFA==|h=ap%O&;IUyJ^S$7>Tz^BvK~;|tLZ!TiiVR;c z$UB99xay^RTBK6;NO`R!mb}`@D$+TZnV*J`A}PmLrpKEsRek4LL!$}E$QIORfIqPM4Z0Ic9RVlmWy3&r<0_>AOJ%>7Iru zD8-aaK~RE#+Sj}l#YN->@MD`bhyDYZG~M0OxRv_C>7`p#-8b;x9AJQ@tZTpA_C~1- z4;j2bob@{@evZ7G{(>&Azam05-aX{?sf60E3)>6sZRLb21q%^UfW0KZ zT)p!K)%SQ_mli15=zc4{=Yqvf-*IPA+I~Cp7$(2RWm4xGu^{`b_&l4jOQE%VYYF+7 zv$=mkc>9M247%>^zih7f=xo8T_^`!oL-^exwC{yZ$D>YJGv0qAi4jV2yH5$5^HNBw z0#hBM@=U#;#2+sqHIA-BqnkF>X-x}HiRAEB`J+nBE%Hsmh<6{j1>o%84(l>UiKdw2 zM*H3*c**csYPYDl@Jq3Y%25H5RskC;&W{wGPi{MZC?og$G-2<=f8as)@5Qk;?cbJC z@{cKP1Qog*(r9X8r1S}-K9$_h%2u_w%qg(G0)$kb;I3&?uzI8{lBN0V1VcIWkI{=5 zI2t0%ms??;67fSPSfV2(L*=#Xi+4nmT8R6OykPQ(KNuQ5roOyNKZS<~7P2K|Ezi3{ z+uL{efa9L83?lS{G4M)S!%n5VFxX;w?QFrpxLxs%KlYZA{|H`7FXqNFQuf%qJfb}G z=?jODe(YMd6lhS_8|wPNj5`o{TJnI4v;9~3(bobWvV z*4_p$WsMxBZx4JW_gOYy05p>O@fimn-8_ErOA)m5eV`qaa)Ymuq$-;9*<%dBlupRp zhrK8bw7M88Ux-H?X}D~SHskF(H0vZD$02Ml&s}R4N>u9+@9`BSt}Wcq9UAcJoK<|+ z@Fp@*Q##R(!plMcsgu^ZK*B7PYvCA3`DeGLViiHI)-!o01ZcZlpITD@5)`obt7wUs z@F0u%(^5&ggy=yWjliZDi2-QI12t}`Nx$V9SD32V0h7Pd5(qbavxBAd4}mdQEWl@% z5G>sFcXH@Nld-B%y>zz++@aL=hgUm@B0#dR?mQr@sbArd9zkuNRot%Dg zrhue*#aD(Lm6~#2GGAIDRw6s?OkxJlxaAp!qM>kEE8ewtU3#>@)$V9icyF?D(5O^P5q!ody>87eJ_ zh3hbBQg@o5ncf2}Reuj67OF84@v*z{ekt@RER=%$slzKFL}~CBxRd%>Rn?h_wU(<= z%+?@ru^`DpV2Gow-^-NNeXO~OPuHoV7n+Yxr7`1`WPp>ZRF}{=HvQ$%qgsObyANf} zyD?+R+cB(>tT<|x1#+`|7faE7v0zG}E4xgjj>oBSLxgFLFsPIQFYUQNp&(zgkBYL@ zluGkesq9%pG0=I)=0r~YD9y!_V1Yz8rw*=nw`$1e#f<(-5kUDXaNt0QXy z?Ya$TqM#~x^DBelvtZ}D@7GaD&JKx3*B<Oh5YlXcG~1SurY1!czV+Ah_2!{FdwW1eDOYiSppOl(^-%0BgU~I`!uVFx9?+ zQA)Q9)5b2)IzqskDEH6p<=xB1eWg*9#yx`@)BkE_!7lXN=f2$)^p0Ic~4=^D|Bd5`8VIB68{4g<-{mH z8Jj#(8|$UyG+{ZmLG^iiyaz02Yn^j{_q%aboUgk5$|~PP?!{leYLH8MzbJwE4P9eO z+MZR+3ah0kNcRWc=9B?LL`mv^VO-Z7!~U-E<> zX+3`QqYA>T4Zj+&48MrEnW)h)hA8j(?!`v(<5^?DlzZ%@KC26cJ1M>K$1_MrtVb&0xk z2i&zkZf0brr9-jIx;M?0ee$URP^YFT;CB+XiLiMk%tvDM=6@8OgL%M`XNT+m%(w)KxVKj_%l!6G1mK-<`l$1sq{Jr1z57@3<*S6<-o^w9u zzOSGU)>KCD9iUg`w=Z6WB-fI=)~!do4S@l%lZXee&VF=Opp%RlC)AB_%#o>YCv-A& zaAVw@D0^D%r}{!zpiMar<)DVun{_cBNrGZsUoKWfT1P|jCeH+5M2bk)QCQ51w`kUj zzJZeJi3pO>Irv4JS7<}kzZ3~Yby0=o+#JDjEQ>qmrNR+|dC)d1vWYp+XOI5}N$Fi8 z%B}81kt7s}heftP)62~V?Af|(q=k_Ja*xyZ5ZUu&fb&|K2XJga5_LljSbSHYeXKgv zKpkaI8MU6kZ$vx*XNXxHpXPcJmJ9tBs#oGVK<-p%BXZl$FI zk&_-QzRQ4Rz+s)Z=Qne5y=&kSN3K{ShCxz`?`6#Li`LraLfY?*XK?a;`t}&-O3N!e z-Z8qT%POK-_G_M3BXeZ=xjmNa)3+=$XJVcmCX8=lPh+;rY(FzKDY}CjJL{pJH(9W5KZ9n{C+nJ3Hm5H6Yl1N zGuj^0bptvXRmX?j<9i?bTH+)r*yhRQ0+m}*)2n})Y^}lAF2bh8y^^B|A$<@kkqaA7 z2Ce53`Z6||M>69gp{}8GthqCs*St(dKM^S8?jU{!CIHvTEV=Qy?8L1|MgARH-uI+a z81m+Bx_Vtxslb#OFb-#e29sS=*Mv4D^9D%T49b+Bts&D-j&hokdd?uL4)4WqX z2);94X2{Nx^78VGAFj?Dw(QsQKnZJYO2JViFe!&2@KQ{#=-)eQj2H(Z*)X4Jxac_3zG4g=WGD*PG*|J6)*%LwvJw^`ZGCH*}%_{!)oWwSLUCsn%^R$zY$fCJdi+K}ahAgG!kTC;u0Bbw#Q0vRB z>h)N816|Hi+LFDrk%3h9pY5F%_VITEgoOQ7BCS_+fVBjHQ?*H`MRP)B$@%vWtSTWF zohzRNkDKV7-N?&DRW7-7Jj97#N-A$Zp&I8ue{M;_sPNK^H8N2rerFx>72t*YdMUnp z<$%JAZ!XG3R>AQj5bo^Fc z$6Wt}+kPQtVw%_;_`1YtL8}sFN~v|tR7ZXfswsae+N-eOIQM>7aKgV&2cQMSU4R{J zXc3UT=;T<*i2da77kcq?lE!&jbAptnQ!4vSf^8<;bgufHx?fPwQob$slWMADXM8KR zIofx|i-tEsG5pqa?4=}M9e(>C&D4h1{l*;{jNAYDHhtA%t#JF*aOa=ijGz6zxh@Er zx8uTu|LkGfdC=?j_DkbDHBMJ)u%oY0miTv}l-*i#py3h40yLXDg(@HO`1uig`m2=B z+O=jA74ZTDZjn@-0Of)AMPbN_Kl{;JT+Gx3ip~oU=W!|k-L0bSPPEvgmFiyz<^b@$ ziUPJjPVOC)lb$0l&1Nh_HpLe z?BIzVNO0kgtjS*vtr_lso5qJ%g-?XEiW>d{r85QlnXrtX>nOdo+S@QxA4xgv@_r8E zq|wQ$EALedcFCh=NEmus`s~yYHkP#UW`nTPC;<6n`C^gpOm7=j!GMl75PC$1*v~9-DwR@A_L5zL(@wJA$+wo z<9kup{&pOGz~m4{@Y5%j2pH~7r$7VZKzzHzY~dr0JF*y~|3K(iqP$S}@!RQnVwR@I z{3 zW-MEqy}F0#ctAd-<}QbBmL8qES{~DYczh1wZ95 zN0qoNYAd@vOY*3(e=WaPsH0GY&IB^C+AUzoRM#Nz_Yh%m_mUulHnr^~=cwm7j_cBG z8QrrpB5vZ)p>EDBiF=PWd@J=_4~rZ)<$jECnoNi=NSM7tckJILw}?Mjr){MWV2+B1 z!5oji)3F<#j?gE;wIt6%;ID&1`N`dD%Zg}w)5TcKlFC@Z(nlEoz{viL%aLm1ue^mg zZfDjXZmxvXt^m5469&V05=Y@We`J31@2KOxK$GFad-U_PSWUkXJF-A9oFww-uf{Vz z7*1d_RFXx10ZbBAJ&zv-xg2q%s&-`9;0ryB-j{ok%zl?7`28OOS4Z9jIVzs6So5+E zaTCSD*|F&FSirgtUJ3*gp4Gvtj^%lpTkUy|uo^;-0UOuOEO6r*_LhnJUR{;xnlTYn zD*|KOtDrC<+!;J>Fk<~|GSSFLP>x+J&wWkv*Q%!LTT;8U4A%7t1b}n}K>8J6=9KsL zc>S$Oamw`ACKBayXFfT zp6^P#b9=RMXAMjJI$q`aTwcYjmsd~i)Y=&Ebh`6DP&RL=)j;GPj>lfV@cZa3R#t&( z_pE%1{rIa;IB}Q+Eo(P?+Lp#EYQ>H7gK>WHev`~vA+E;FVU+Kzx^l6SkigXuhG$t0 z-f^S;U5U{6^g<2K=^J#aM=-1#fmezm3@cw}B=6F_)yoq5Fz2>e<#m!a+J&8=sXI zTtQSrYdNk|0pBk23HW5jF|p_gYbi1x9F2pzUKLH)+)$)s3X|OHQIy|gKGRC07Xgr$ zC~l1a3-*4ZulGtO2Ly|w>vPTsY0{fexgo!3N&hiK%lE4|=wJ05GV}`$sIm*#-?u!G zJxaMoms7C(A^AYXjJgL5U%)QPk`o=EQ^s*HPc(J%s_7JUws+dADDi}B;t(~JJU4)4 z78+=?e);KUU-&|ISdIK;YkBI({&5>%0`JRbCAOP0P%Fa zz_q_Wn5aD5n#y{{(2l$=q;HQhaS%#u*oRKZQu4>497VpsO}m8lc~q_{h#*)x@}R!P zc*vGo%23nOZP+){;HoUx*LY2ljYsx$cIa9Hi2w0dN?{pWn*#Pf>)*{#x2&Y4aoR%r zt(xX)SBC1o{1y9+FkcfvL8!9sx)pzPMLo)9KSuXO`un~SZr$2~c@dweD_UX>%HnAy zk&6Agv`sc#BPW4t7~$%OK)~;O$O=X*`UbI={VKBY;T?5_CKBggUeUMj5yRSV{dZDz z5|ZF114&7BifJX2P#KE=!pYY1y|Isk5~w7=c$V`$*Bb}$EY9xEJZ8Eu+CHTd@&m0o zy6|*&KfyDujg0g%w{o~vb|W!}>n$V7Ssf)JCR|9>n*4npM{?VMb9D*PaVX~8s;B%g zmyqVKDkP_3d7~;F8HkkhfFr@FXqHJ)(x?@`D7$-)=x_onGQT)Hw;$8j+5vb@NPNW~ z=~P{gQ&=2IDHbfg5W?x=cjR~FD<@OboSh65GSUBsOo=Q~iL_cg98K7*iG0*uoB|#0 z5#$V;+4y{KLRVWVV`g-4XD{sL>E|^foa|?wKTF-lVzbAw?;LHrC4*sBShtLDm38-r zNT$r=ok86k15J`B(aH1G>o4^4zLsTBAwzu7q&P8v4Q>D6Lk`P%oPmfvSUBADWzm)> zYV4mx`IjO{jPkRo)2Aj;Vp<{mM1$~Qsi37FJ0{c_{l_NwtKolmM!jTAuEWwHx`n92 zOc{@L4R;cH=2#&i)mMfT&pW@`OMoc7)|J7tmKC4uL|u@i?(J*-BdfoztZj=}J-QZ- zFlO0aaz`-j1RPZToQ{I&xX_}t+MV7`opfd9*2^6_=E?_)X8lsTKc_!agP&o!DWeL{ z>g?a(jZNmHFO8pD42HSA%mH|oO<`285^gDhdNc?0^goca1$_&awdKtAoPW6$@R>(FxsI9j9~TlKe1d(M#SHtU(Gk@Bz0GEp-hj946x$To7n*b zyIYmu{T+N&Ae#oJKdcFuI?NI0>~kPZ&JFD_TG}Sf5>aR@jrWMg=~5A-dcJ8GF~+Y- z^fw94FxEfg%YBkNk`%va5(BA}i%Fx2(`9OPuQRjO z>J$^rl6tT;$2<1jO#_V`ZrL=y;hx8@sd(tht&s`0M$+K>Lx4ySsJr>^{ilCi1e6Fm zwY-5y%{IZg;xGG=%imHf6$TtiE=)>^4x_0l)sA4n?*0V#>%80boZ=p)+H4}#GcONN zWG4#0-Q$2|2S!VOv-7QrywudFkw9hnWw)Xm70{M11{|g=*v)!a<`7U+6(UG!%iDzN zrhbnN(-ac+*^ax~A8m&!!q^!~Z-WPvYj z<@p14iJz$Hc(e>|7+OXWa}E&6Q53vcr=FX*09S8c>J&}d>wlPMnA{Ok1ai@_#T&Pk zsiEn-?QiOyMIZ;AapBfLU>HA5D;Z$0aHWJnBx&S13Eu#rQ{Qq09OJ zduK;G=nt`In#>G-YtK1~J;3m;!(m3+8vzc|cqfkG$iC2AGH|3yJPmv3BI?%QnZl-Q zv9VYLmv_E^#6ROdXxzK$pTP(GI;~%+z_>VV4dKM*8>K+{wMhtmEp^B1#AI1-8!|A6 zld~YP3%H}KzmoUQ1no2=CV2d5=5|g`?O7Nb?EaSznP@p3P+IEEDE4i`uz9*2>l4}jT`)vEvqz?Qc^ z5Nx-pMiGiBzGGes;SZe%gtDbVCAiFe*WhDj+9 z_ESR9%AY|eryLQ!9_Gpnk;^aOXSek~ZijLx_<=^LV1D4lx|SOiu$m^`J1vtqP=KqH z})1};1yVV3nav;@zdDYgpq+P49MlkC79OkFKr;w4^ zj4MUk8%?CTs-E?sV`Qga)2HPH-a{%$KlbOia@uM76FOYSa(yfGpc`qK^(TukgHjA< z`@}l^L+04x+;V0GgiY%J>PIV&1Osyv6_kM?pa-!S+_!gX9_diYS-&m5U-zshNhSXx z4ksQs0dTI|6QQ1LG(VhgF)!0l6))O@DIx@Ix=!{=S;u*x+jn4f&t${*b~=nu{*7Tkt%s1BTj&PAFrhcxN& zogDUg#z|2M3k8XOG#Kk(5UF@E$iB<$Q^e!2BG|ie8HfLfnzXnd`Zz);k|M|>^28%F zqo`Dfhdid7B~(ZT>?o<9UX_0HWU)7!>I%a3_n%>@XL<8~pwKex3O`@DjEPy=xFE;h zzhJh`KYqmXn$E^6xe)VrzoSm=ZxMqw-i|Fr@YYZBS|Mi|xok3~S}ZC=2D^l4gWNC8 zkwXOp-w$G?mu@TFWiXPl)Cm!)WKqZ2OnFnhJK@-A3#t(K>3^V&?}Ysj#PJ;7!QDH_P9er=fd2yvm_p7D;QIVdoPvfpU$k z9z?}XKsF`+?HSI)Kbh^4+ZykgNp!ZmCUXW_3=fxS!|6 z-oPo@*>GVu1C2)@*D57mg0U$}_*1U?2DW*sgotu+VGRBh_RSv`WHR>^G|G2@TEBPR zYvIT-{t`To|HzvKtHo04U#>XDRU+xg^oUvd$(M~Tchf>XJhELD_j9YOY|^O8gn4ss z4o)Dy()-+#!h~quCcrX>_KDx3qLmP*32YcHWscX7L%whXn~Jxhw)V$uU~3{i5P`=u z0w`rb7=;M6%^Wmnd(_E&YySI1*GgvIKV#unfLa%mNL+uu4DvZZGPKs7Z|o( zOKoKhbUy80)0edoJj;GqbRGB48Oa3T4O@7zjqH2U zB|8*KFqYhv2BLqw?2@;yNAO)BOZ9U>1~9~wk{)0vs|%|*vu?8! z-iAE{u29nF25%uzebX`dDTnd!AD2j?0bP1VubR`$FF*|wC=FsCA?C^dzC-u)ZX(~v z0`{`_fqaeK#3+Fei|zNyc*zbly+>I3ssm(%a||e&d2c3WLr)D8PEb$OOn{EuD6=x1 zraV8$6Up)9cHq&sjLDIM@K(Q1t;GWs6aRY32w9zhR~)}+9RKn+j&%o1WASn6sml{S zkbD?KTB~R%qm}qQ{+&S&zksiTJttdm?W3#J9bWq#;gsf{Z>!VY3*n5rCnAIq?N+xM zf32M}4nK8#^h_|OfBRCL%{_8!JptA&uubm{Yp+?_L9G$Q0uF{c4-Qr*XEsNfZQGcO!sHNZ0UQz z4~eZRS)lLEwf$k5LNpOYE%!Odpw|bR-(n8fo0K8kGatW4s~2h5A&C1 zyE!tG@9(1jO`NKLl=bSkebUPF{8hPIO?%)`$c+fL^>a3 z*dtG|ew$gIwMXl&rzdKyjr10kErccBs!#EmMDIk2QX512 z)ept1kNcdG5bOd-@E18joLaQGGqAwq9a@dn^|c8UO#1S>^>tcd_ zK;K6l`X7ki_PyqO(2DwE+ScvZ~11o(Ri!p}T*f)BHjC76+zJc5URnXVeceWg79$ieZBpKHHPHHXROed0%G|BNf>Lgig5U%Wa> zh*^t1ZnqB&WxqEp8XT_$Hk!p+uIPMQL1Y7$Z`nn6`7)0ij7_t

HwtNnZ?79;N@3 z<8N|&r&EsWwf{-5MzCvitGb-D906YQqoFe-NG?w!1+oQ@kx5TtY9-SA`Ij2P#B4OY zRDYwgza{3EI^ub_#7bYrDr;-p3Q&&VtlrNLi2Z}!@eAy=e5KN1`1kUD?wd3;v`VU^@&W+NiX%r_KfXCEvD2C4&d$v*R9Uz^ zUNlQ3w?jAl;|S;y83SGlNUmGCh7kA5BD*4L$)UQJ%C0`w*D*qQZ!PiAx}SjYp7%jq z_+yTNvE8_`>Y{8o?QWv^tASe$qw;OFH=!zlU^8jW=^Fb!ldaL6UnqD4H>uuPqDI7l zaZB#P$m1F0b9|ihfAn#!<>Z-Hcso&Tkn4{(4R_GIDItDN7RwNX{@H|~r^gEx%M3@* z#b59dhFbRqzS1?7eW4@S?a0}B^Ns$)NaW7|sM7}i=$come*cJSymQANx?Gy+a-&A> zXZXEeX1r@VMYgXD2NJ?-KiT9>eEN$H+M8%46Ge7ks4cIRG;KYU5)jTmtSqbcGnB`evNS4P{_IQ^optB z#(?3JL!DjVwxpCy>zW;Sk<uXQPPYKMv=8wZR zhKLMG7!x{%>{bCLc$LSOBc!F~$PIi!t0o3(7tgRo|IR7M{SfK8wQ&m{>%fV#MjBXF z%$+ERm4Q|&IomRa(FPdJ$R*$co8h%*u#PO3R;A8Q4b7p)m$y@dO!gH(Uf%~Ik%X8W z7D!;MqMf6TGlE0uw7PCfES9h^ex=T9*$Mi9U|9@0EWD7Y5VY=u*TxyD(XfJ)PZz-N z90OpPZ*}tRZZSAODbj*-iR^QzSNvqvm9u{2gC_8A{^TY?XR@UPBgr--uXHYr6Dy~= zGRYAsh-DMlc**oGZfE_fTu;#+_B+D0cd=-rXcUskB z-v419-A8chve$`D`Il|oD=wKESNnN*`{DN;RMA$nm+vr+ty>Z9TtkS^t&HE@fPT~B zVu*lvSkBbuwCKnMRQk52si?LIp)7x{Zzu5guy}1h%4PpjyWp_k*8XKR#Ntb1G%-sR zqo0=aPJF-(r|PQM&ZMo)=)r{5==KDzzdZl%O>P@koO!}`4hr^G2@=u+@x*R{V7|lX zPXUZ=+=SgOq-1NoInhT{7+k9JY~PaR)Gdu6#=V2yX;t8vNkaWd809CPE#`|Pq3=7) zQzA>@m9^X}OAqWZC!m(N+DZ*=b$F}$LVU3T@nmmhfN=Vm#s^DO<6C#UccSK2X6gb&%;Q;{nN!zFG9unV~zyTH<`JzfflyIAy8 z)vjWJabHmlb4t3YFcs2fLE7l&vavL=XcJbFub596qv5m?0%zPFBMoYBMppMfrAoly zv&Nd6?tIT;%VIdlrYUW_FsiBCvHxH;r?)O8{xLmtjaKvO&uihsF2Ev7H+XiuUQ(pK zIDwGZolv9N0z{*zH*e~ts`vAezyt~}@$WD?06iQ3bycY6bGpQjh219JOT$mItx-ZG zt(+iTIszM)EXajL{^<&JO2QbmR3K`E3aYy7)_%qPM24@&oKDr_$G!>um?Qt^0{4wk zkd>Mr*p(c1`8#%wI51S>VG7v&u+DN}2b3l`E9{Ia0aAJ+r(56a9tJe1@Z6~xTv4HG1&>Kw1~48>+Dk zp4!kL>-t-a?o;XjG{s%LC$SU}gz|b`S($H~BwiA$nYl0a5{_&3Kp|a6t#qAfi6|sh z>(>~_^MX~ z+C-G)>K@dU$GH9-l2jM;Il-G)i}N#OWplSLTKv^v6p`|MCi~}&`+0`|alhcWcL9L0 zWi8FWE_7*DJ$H2>Hh>(YK<#|KlIe`4C-ItT;`P2`;cRy3=J#-u!aR*K`mbe%T6}U&<_x#_qg?vk(#f29)fi37JHCSfgG1yU9POr_JUXKa%lM`Y z7R>0de}zRoq5^)aNd>~%o{U&@|CTMWgb(6YU(qUn~fInd%^Pn$PmTV(gFWlA#p z8$C_kom&h<^;3oe|GfAa-fcR`RYesYj_+3bDGsXq`YenZwEuILf!Ho}2p{l~sk@E; z(#vXHgOT`hwa2pHx9~2N?9s|b%%jrse{k>MC3!?zf6iliX+{z;D;O;G#V{Vu&+yv2 zYRE{3o^=ycdH0p556v{QKaOBH;}8!(Ic*TVRT;xI`a*Q_*R! zhT=xJvPazthK_%q0(ROXB>(+pa^eUPB$uSWsT_|$(-p0mfyt%{ua#Mq+kr+J)x0B9 zGdS2{#w#k(*^N%bAwQ?e-d7==@m1Mg0wYmG4y$zd9+VQ8NKQbb9}kC!3OkHhhMCqE z75yQb8WK_VfP8$hDFAz!K(Tvf=ZZ{rz({12S3sHJ699LVCKyMyZ)|g#H8r@YZjjvq zB*TDp_?VhHNc#HhuqNyu8fW6TxguO)TIK{YQvW(zEMaix43~53oxZ>EM#&Dl zo%p0j#dt{FiADpd4mr^*KY!^a@2}O-w6}U817z3!e1h%g<3f>uf07YgeS28*hixEv ze4=BA$eNn>S2<<3ub$IB6u2yVJpE_bYHDV5>DU3Bj$A+1#N!y1HgnSIdS{Of9Eq9P z9{u4VjH_FIiqS}3m4$B(tV=wO%+kMtapLZ#4nKNAi}6yq2&fCr5M5F9!l+5l%&Sa^R;%BHB0h-Bs1B)9 z@I`6Kuj8i>oz_2SN(8A((Rig5rQTSWF5#H;HL4{E8<4EC`{XZm$QG{ zV@r&;g?pLYJ5i|L);x7|HpI%-v->c$y&zAf_-yj!bjJ4@=c zOl=NQQp=@f#E7l7ys9`|rM69ssWK|7Y@c)fVIfxe+>ieWqfdR0U+h%`p^w|^;s+?G;RP0xKFr4St{MFMR_N`09o~kvLrciRiSXQaS zEko&>afv4}=O!bD-51q-#ys%+2)%=!-2LxkNrK0VQ_wC0#D`dbhUylY@BWH9UsS7P z%(NT$ZXe$x%US?zV@j_vp?mMNcqgw;ynTuYP0E)5EKkM>Th)jp(eoUa=&1g8$o@R# zZ7_>!NM5}&R|<8r25JoQlG_yarweQwjYfvRt3UIn)o!V)2uxj?-Y&8j9AD6kk#RE zd}^tYfG)q}D2Af4VP{mOmgfyTdiz=z=rSwmo8!I4fUSb8yAfyhfBYSNH{%%l0>Jhs z^qRfZ$fyS4IR9@5Zbi$6Y^PrH0#hX#dBj9h74;hmK%=ZfuYo&TkyP_~GCf8ah!Tp9 zI^wQQH~ef@QjcDqG-0X}k%#%z(|At=3=K^94Sn(0`}B9)PU?39hnPpw6X@FML;E@R z8Nagj-i@(>f=F46|9X7Mlz+!cyJTp*rW@6!_?REgIfe<(%@TzpHWAxvOO`?__A?9u zju_F*{F}CJS?aHaknbV+!8y23H-3wC4k}^CW={ryr6_NEXF7|zYp0wrT*%cS{BOfZ z7RIgisoDwUzR{GFPce@?)8$OA0na5p>0OeiKtzWdpwiXT*`&0;~h+)mB}LS zM+kq-B_oa7>x+EEbof;&uAp>q7%u5}~Z++0=Y+2QsU=g|9S81~iIk|V)qIp<+ncKQ6 zm=4>&#AUxEI8D&ur#Z7gg8j}kXRA=K2Zh?}lkAx7liITr667|XdQB)IqJ2JFQ(IS} zVrKmc=#JKuuG_vSta(K2kaH4+6Y`ud@!_3Re-8LB4r|}LFnX7IDBI|~GaU$SpQpKf zp$W_~C?jLXxz7v+qPv$mvS5O8Wo_qi?`wa5tR1HB=NFw1?c+Lo`Qq=}Mx~1~C2z22 z&}?Y`a0I{(W0cD#NBB6D6KziCUleh>#@xo@%#-Ey{xvkt0VVC`>#Yl4`;h|M(rmNG zDx9)!wXxZMb&5HW#->2#IBx9_&eh2yooDzrEZvf(1hHFWO*VBLdE%%k=W7tIMPbab zwJQJ**V^ApE?^&v>KmIijQ&Z~V;-c3mc5W`TxY$|fLVRjB#znlMSW_0M7`ecK!5~GoQBH%H*JnJr6n*Jt2hXo<|wp;0)+MpEY5Z9-4aIKRY=GQ zNuJBS5oDu8J5YJ2%y6%>v`>Z_asyNh{MXuho!>y-#PntaDIffk^Aj{{hAxaQpz_jm zRN`|Dq|5g&BS;hb>R$DKvnKFsWBMv07^6gnO3^Qgba|dq_J(1b>;sX*6F3%~nw%-& z`4&0$!66fCkRE78SdFgT8ONX6js4^#oQO8&9+Qhk6!omUihiZ@hRI0Ouz!NyQt@@r zjN|5)dqC)EvE4x{M8&Tn*j6gC!mxTw%9FA8OL#ca$@~7y&?g2BM z9b*?j8}}#=zxUc+(;EO&5nGXWkY;f6HUHWV2pfC34y*H9 zsKwHVP_a-&&(HAO>4uf3U$Kt#?br6kx0VpZs}-zZxJtv^nTE&(+R8rVLha>0k&2e| zoi8mY;?JpjPZ0Qq9MvJUPpKM?ke{i|60ZX-UCpTCnr#J>Gj)v^3us|u@3x*MUB67C zjl9M9Y#3Z5`!QUe=0$nb*-I zEwh81!or7?+`tsl=l1F$&rB5Pw23 z$Fw@8qMk^&@{rV>0JUkzr(PAswb~nh}d^kjgew&ic z(XdN|zA7$aKu-0~dvegFE(qeOGK8|tZF`uTQrtk5GGoL%KHmyIc*-m^mbaHMzQA_{ zR-l?U4p{*zM%(Yy=I>VXp(-n%+Ax~Q&B%7P*n{lEHh{+!!Ne*lR)SttFD2r)PU_p? zQ9#M*c6Zo|_HE`qx!oe3MvPm1Wi_^o#qE18>D>?)LF7xG2{)-6nBWjOcwrc5%P(~qm?^EcsmK| zn7Nbak5d~7W0Zu->=%&>R_7RyQxD9@jB%Uv`Tac40p2_fFZWd}PQ9&~cbXrx+vUcd z>n{-!8GHoG^4;2tRFJEpI`f;?b&Vd=O|CnRFEGZPalEn%eu4k|)g*ldWXW7f`h#1I zi$vtl=r2*LBexGD50DaiX+(e zw*braVv`Tqo`r`Ik4J_^Yc|LcqT(@((1IWCv3@po!xN(vt)09$uP2LYc?QGnAI_oy zoR*XH9>#)qB9c$kk&hF6kDV4Z{W@rdj3ny9>P?xb*IR{-;Q!Hz+KblU4yoHj=w3I? zh<`{Irs{eX$@=V>NE*v4iFA#~QkBTTg%wUQkA+&=btk9)Kz3>WCh+F*jDiQ8)?Wqj zHl!Rz9UBytP;0i~V&_2{!3d6s<@U6=&x6VE5zm3VHar(y<%4Xy@K;!g=mfWxOAS8b z=oH53eFQD}e;~DoxOl+GOy#z#&0hGnujW4xd*TCg_;Z!GNy#e1BwZj<`mE2B{{dAG z7XrY#I;$%dVF{XxP6uL@i-?oz+_kn^iTGTQWaOXmin#UpkVu^*U-WBRKT->zGD>h{ z;EEbVY0bH&E?f-Ybgu3(Md6baKh|`DzK=*mktekE@v_$$-EvVo${<1FAEtScKadT& zXQFRgjNqpetre4j*$+>d>8P|0>(X^T$wK<79cc>ogKG`4Z3DwcKsaAE$r5O{)b@VC z8%CY?ViNH_$)8zqKsA*-=Di7T(NovjAs}kmH7Fhm4N+brq_+vnd ziiskVf=spU)U4^;v=8f{vJ|yiB*{Rk$^DPkSG7G$=+ZewRj@n69wt00T;KR zCLsfV*VDp^am-fShb13BuS4Z&coTxR4^|jo)g*RdK`lf^WsUZf$ zShkSg2eC+nvIA*l$^a^{*n)tf0R{)@7y-|MOK?er7vl6&o2S2-!sK0gbCmFDZkICk z=BJ5y=Y;S;GAgt%gN2v+?mJ>y5HJKDot(*5P!vHYvi_9@yD)FNmE{GjKF}TWg=C4G z_~Aib$0P~${Lu7&(lo*YaGKS>^>N9{3plUQ_X`<0K}?B6!*_JH79c{%c?mn8BGHJ1 zk9V@ox6YtPrtK@!-z&V0O}>PD{W56o2GXZ-)g5n;qc2H^Vgz2 zSIWD`o%4UJVJq`KzT+OG2Hx017Zp9Mk0PqW>K`~;NaN|KfC8s#i9+`)&6xc)HWkt>F~3**#YHg56$#D%XqII0 zvfzxpXT-M0_L|Fp-B+~KiZgYY9x671VJwo%55nNY3|U(X$zn|_M*_yV9s7N=pLE=Nd=zruyU+Q3tD?YL_yZZ0K7CQdL)ndSY(48Ss|9pMU~L8k znDRkKpo)+3GIeMtjr%l2>rMZRBEQFbGF4aL5LfnP%i;OwTE^{up*n>kIJ7j=3A3kY zcb|b@7Qsv6m_08|H=4TxjCBqsh>Fqx00tj=u<-1->v8Q(Q~77?ig*r)wSSpz?ggIl z^PJ{OQ;uB2zs`riUJBkUGWsOkOoKU=BQxqTsJ)DvbX*3d|La;gKL3WF61$Mp_Gw<* zCraV`<>DVQu8x<|N>I9FpcA4euM$c2%p_qQ%+xSr445H(Atmk;c+9Rf_k+cJ>i|!o z+ap@1A0YR5KvHB#!`zW%UaRRJKb@k>{iu4gQ&Oo(iuCPOs60kyz1gNama#glW;v+bv;Pvy(jFhqRZ3 zJeyNMN&QZkCKiv#rc=i$!!P1LP!%2hBg=oXV9?{Cwj!al#ya)V4PckqT!VtAUx;(Y zi$v)nhpZ>lUn5aMY?1iF?nZr@$n-{lg6h_Y{a5LXmRkg|6evyjn(Ka8l3suaq<8^Y zW9FRu1eBMLNo9d9A|vF-NL|BhlPS0+btbN;)i0?QFD;*_4a4fjfh2*@iAh3QkRb zv+ZM^U*)9hkrYhxPBIn|vDUpAgG+}|b>Aw~##IYuvpmc;GL&;+pAt3J% zy>u!uV&n+95|?r4%_c}vJbecz6?7wLCr>ee$2WfavE93mn&;=U<(=>H^iX|El^v~6 zaiD%sJ>AR(;e@OT#ZGkB5+|@7MoW_XA?75c^kyJkQPH@3k(MXnE{!3uM+iR>sZi7y z;%b#H;$$7Rg0BzbM6m@}MUb9*3rHCOlV^)E<8Zpd90Py37k#x(08E-uvsH8E>Fi#e ztj{g{uUG%@khisD9mcz+IMN5&0Ipi@y3+v)&`Ct?4LeILKQ4}pSBR)+9DMOB z!#nD}$XATdsAzKDH#kpIRE=nbfCn+4cPaMfRPC2!q$$smT^lW=1#!fFt{YAH%46`! z?{1&OtUhEYLDsYv1Eq)7_Fp|__U}>kC$ZZ_L+KIG~hs;%~zs-A^a3;iDhh^T z;l1b1y?g`nZ_mx@qO4^;O0jr$%FBTl<(=V_yA5I02zx zC8JP}4R_>}iO{lW*Y-{Te!l*w)%M0J^7v#_57jXLP7N0}7wROV|Q%uW4)*-JoXVA$%a?(D- zeGDOzqzMiR^R#fSSyb%{BE?#zi@LBfbppGLI~Bqi%^nHT6H-RfBxmZr7lbegpX4D~ zKjpoQS|8#so0rPTk6}W>6Q&ML>Kac1ZX1bEe>1Mea{L_4S#ML_QO^We4&%|E>Q2>p zsl#$8HmwGnp2TRU%;a3EMAvXc(az%nmKGyfI168GFrWA&#K^ct?G8nf{d_)$oE%=u z5>huY_d$P$N&>yXG9yyW}IUwGf6f!dSiQdNf& zCed@}%2-%bC?)5V0A12s^kPVV5G-;h_rrb|nfhbl4=4Q_8;=&9Zsdb+1M&#@3XihH z*L{1lZ)|Qw94hFhEjd0t6bT+$aC0LAQ?@C~aI3VKH0kFmbC1!``pX)Jyf809TTCO| zRU+{j$wQtn6UWFv()Ax7N4C&=#n`F$Ss#7`e>mw~h~2p|UN`cz z^XxakdV#oyw%l{9sUphIM0ZjdY|fNi-})cOg#%sh?oSuv%VbTk?0^aSZD#ITm?)-S zDeBa;@%2*5v`$CBrIZ@BOw3iC{5Q}rXY{L9DI>0;Dmt55*A7cLTkoP5`eG5(SBaNRh zxISa+8I@pGRRDU_-HZ(xNi0*TYb{78)(z8)!BeTDIROvKk**zVyn^bc)ttr3<%Mb625r=yR?Gn1MId3#B~XYU)NHRE~SIC?p(Uo|1| zpctn`L0WG~e?94IKUAb19PHpn>wtd%BO{MFx2QRF4gHX7-{-O!`%wNv zvan2W`Z?*0)CZw{#}r{!D3Ls`wJ(uMxl6YLwq|J-6l82}(s zz&$tm1~auRdG{h5^jvZ96DH3)v&Pyf3@$GGob`awmy>(@Ip08P53F~`@%WR252bHz zW{-Xxqx&zmzmWOx5u#m`%*ESbqthe|9biDmE2#%Ioz(q@F`WodKS6-j(@FF2Z-k)a zUtGxhOD$MB%-9TPgZN2TXOV9_nQ1-0MG}q|h%Qx@Ftx8MJoxp+FLafDiVl(xkJMVl zqssl;bfO)8jSCDXOMU9*7Uw9QYrqa|1S0tmIRwe6S4%(2}QID3pSG_oKg^ZG?hF&}xf$I8(M%NvmS`+Ygq|IYB=b~n7|N8*Kq zpe*cc%U`_*jDIj(Pt}+@`EJQhJk|Rjrxc&ug7S1x} zr5y^7@Kl1rv_{NxDYosdczO#n3quVW)GeV`K7O1TpSFc%SN}e2aYZIWKv0tPH3llh zT(Na`{<>9_%=#%~4EV9gMq$S1ZBhjASO3Pd#*p�|DD*+^~BaRrJ|*E-f*$8W!LU z(ffKLc6i^F%d_$%GJ|OuZO_=cN;+zs^#$Evk&6Ee|30 z!>wGf!^Y^xO)`X%owst=9(%x0ti^W$=R8KsEOeC89Z>%$;mTMZ38$NtDSiFYsp=el zuy`6HYU(x3n?FI=)1$aM!e3|MH`>zssJN$>hT2~y_1!w{J#R>D3Rr$;Sr97v8``>c z=!s;nEle1KcaSfV_ycc42~}Vh_w5lsaqK6E+qLvtNUBpO zK{;@*Fw*QCX5SXwB|MhD32>a~Pm}uGKKFh$m)v%%IZ&j4!zalCSn8f2p;_#U$ zu*(M^a@p=DDky^@L~Wd25EXX}W>$A1rI_M<6*QRh^O(5yLTld*E|En({$VZrSoopICm1C>roV@g?Pj*m7y$db_ z@})d5SaQi}w4hr8f|BJ*R08fEb*YyTI*miNEK#gM9#$2n|jqU;&UcBc@x z*eTidIaoKV6UMbs;nV!)%@iavg4;U5Fy6+0^YBbMX+DeY2bh<^qweFZ@1nMeT3_Gm zXwoW~nz4rf1RdjPhR32WT9+gZG;sxRjQuC>m01VqXU=4`6+yqZ*sp7c>Q;0GsY&`W zjON$qmxR2-UVq;I1H*9si3I&@|Yym7m=RF}U zWEH}#MI2I=`oiQNjka5pEW2A7QNSixlaLYKy0=zNbpBwYN_!ql?g+~G&pzCJ8tr-?4=7c${zGc+A4lR*9#R`*?&9Acv1$HkFKa>lAZG|j zsrQ-nlkW$JEU17fmX=wRsyncOz<5v~&iYxcw0hFqx;f!{60>*PqDI~`y^8$+>@Byl zq|Z(_jp7|)3lK=N3eTK7Y~O;T&eT80bPotWZ;W=B&<|g$d3{|wYTx?5iDFtJ2C(~= z`efbCkg`N_q*uEgHvi^Jux}i#DN6|aeZX!U2(0534YoRfsC$^z>|M8UKfsMch?9=IBb?2&>>+d^N~1Je9L4ftV;Q{+_P9zGhx3<00)b0YB9~(x zyk@_<=edx!9Xg#qfopmug%S}Em?;CwiroBSQ#R;m8Gko0!YRtsKPY|ar)!LHJ3KA> z?2yXF_AOVqkQwwidf`^5`N{gh1gqPh`DTI)lj>=L_@kfP?KfZA+k~lyL2ZU_2q9`) z)x#neHVip}=cTNL@FU>gqW_9Yxt>Sl`*_t6QBraST!;$s^ag`vo~KO+;+z&&<+{q|7)Xcx6sFH z*bcbo7+%8Sf6&!ZAo9wX!7XmAVlcyRhasYeWM-61Zs|W{<^x&Zb(vS*jE5#Uh z---5vId@S5zUj6yp`OteguIwgzA5`wW@}EyZ>*6yTx;IPYQ4-^LwGYU8c%29q>HovcAOknOXUr&y8go1#4*2ZT8k2MsT79 zj=T_oo;7Fvp%YM4kS7kE9T1_mkGx4{+20c1gEuC41*r0uYC#CCqc;{8m%$(@{e5-h zT(TKyPC^Lwt3{YK`r8=*m3`#!y3YG)3wCj33Tn$uJ&ANbk?t}fP5W+o-jkv1=|_D; zD0P>CNyzZ>NWedUsR|($@@7${4C;&kc`iK+ifCJ`hfcis;p6~-Nv~qjUE1iJV~K~_ zdD>eX@xR0*ZI1Dza}o=^$uZQKy2+ogg2-O0yQ+LTkB-5*xKPP#-V{i^DTFhXn#F<_ zcL&tFj2q(KDoQMv_;xdq?dZVd6VpX%#-zWTrb2`-Cw7$hgZynTzBfTndv|w_gX)vg zc`s?JyVL%JzTqnSV#KiGf62`uC5&F@(WRGk&nBZA^2osQ==s94;xg$q_5(kE4Ewl2 z)-3lD8fF(;^SJi_v?;RF*QR5ws-4Ucf9p%f1l|k|B0}|r=lf~4J5OI-*(}jPb?^gg z-_3x1s`9lwX7F!c#?L|e1iy_nu=x|a6x<(?u>QV}%dNQVCW15yo|HhSrPPm~?Is0o zZq;Z57JS-J``fpiM+n$+OL`Q!_PcVh|NAS-N!Q6!eWJ9-6E*#O#I&(OA=Or&swPa> z8-Z(PpO?2G13+%1)NMBw!9P%P+y7$wN>5^VrGZWKFPZI0eVw0NbS3A}Gy#8b=f&6X ze{TZHP!e;em`_^^>ehdq27epHm1UVHw8MhSO12Got8akDT;cF9Bc+yC#R2A;yEj(G zQ5nR1z3ZNYxUWii0!*{NC7e&3ce1(EPR_%eF*;T3PC2%~#@zG&{pzMLoC@Lb5?4j+ zFmc@r>ki3vJ1jd+aDvc4!EmWvx32vJY7?pl9xj9(N-&mwFglq#TXnXvjA6}>LM%_2 zte~F7A|qT8TOXf8Ypn&8RGd#cYh6Y#v z&A|~nXrJQ4m&#k#We-)1>fitlwz~W!Z^FIb(Ulw~`A?MJjsq#+-VyJT$v5ggJ(VU^KnoNZ45| zlBJWBbx11tl6-yU-`nUI>8_Pbbh0`rNW6Xt2{TycOXVPuvkxk@x8FP9uRs$=so42q z({TW6m8`=1GPur`jk&yYON13mxh0`kogo-bH2o;k+fy{X}l$E1lsP zXN-wg*z8F-lwc*3=RrljV4Sb&7NV0MI=lBq#j5&=5-o)4s8c<()6j-`cc&@TR3|&h zt*OR?j>@MhNZk}rX^v>#R?)q4~^pD=HLykF}q47f# z=zpL_KOMpTo{ErQwEi3DQ9vG*dHpuJW!VF7f?dbKq2#Kr%lq%gZF4cN>ao z_y7DT(i2VA2&!Mcw%V|@Qfo(fL@}Lj0?-FiKtl|7E?$B2oM2}GAIm$^!uQP*xv$7C zmS4Q1kmTAuLK3qn@52@fdRM(9U_t+}S|OJyv`2t{Kr?sJfs$3OJWe4jw1Tj_ZOYQn z&Gu)mZkub(A;i4vT2Z~T@ER_$VpH%5v46<5WWEo>+%RHn${)0w8Wc!<-q4qkp2vlF*!v>i?d$H^ySOS-hrdtY`%_%-$Z<}%M(bp0$MuP#YWK$3{=rdNc6 zp}B=;!{5t__K(_72|Ox>6lCoNGVbxHk#6SN$z;vwvUDhW?ss|RpwL=%d9IIwK^k)0 zDT}x~;JMfMWiRGt1>SkEjxop5+I6Vp7h=#WRgCYQx$yuuff`@3PVi%v2!NdVBP^~W#`MOJPN(YJbso(#`t2bJG0+q(UJ z38nf3#FHiyy4?nIds;W%@%#@&l{vvRvokhlAIlHb+SvBQ&quQf|R`*5Znul zOGRf_+>-|MmxUUTEd~0nA9HEgaXs~C7^nT^^jl+rUUeFBgx;bid|Rckn$XlY8oAuqs2EiwkGjLU$O=c)mB+$vt|CLE(@V$)5!K^WWefqkl9#%F3{6 z1~(eZh-0hWe^$GuMDwB(&FTE_LX=!DrY#kUsfBl3eg8N6HLO#iA#GL1xc`7)(x3tx zTLrLhH0KWz%0I9-qp<$Dw?t6`Esx3N`BRBSTmn>Kt}Z+H8YNq&w4T&I;Y%E#V0!Ps zquVi|S$M*r*K-m@bfZ99tb0RkKP+tKOCCd|+L5mpSLCK^1>_8jbN$tlA=5SZvR~2V zKdt)u11NWFl4Ui@R7Lzfp^8bVU*4wZHnky~LHA{m9vJ^%l4>G;;q?+nkyiey^-uHd zGMNJ+@-vS)gzJrf728kk?{tTJd|IM;rr72G2Z|6AbP&QUs}vW4S|?nJvAUR&KGrS0u!JC|jQGnCJnvlvs|exf}WxlSJ1F8a$z> z-d8|LK+9Gt&V#lnw9WU$PtIN3Ytp*d<8)2xkG9wH@eeQzi(i|sYwBc&A*~;0z)!+m zibKFbGcahlOrCNVDbVf)#q_w%!AtZa7L&iVBzoY~-gRlG6A<`|xle1f0 z)_HIow&RpLrH#1E$ucX*lOb7nYj#K%a_&o94vdiL!(HsN6x*7|AtZi41ltvY!?V5C zEc5#9mjT#fI#d_qd3kbnmyn@}gmZT+umX=P90~KPmd^v6dGv$R%wbH z3R@yTH+xpdx$V915+0lp29AXMSeH2pNAaD9ahYw$SrI%LK$nk$cWPim5qI^5%P)0s z+@lhSnQE0wahtFDl6;iH?%w4jlI5*3b4NM~CqHs#mVQ~*mJPLEfF-aPB8bS+4k&8S z1p#_?L-s+&;UC}S176%Sy0R`Y+>flZS|div5&#<0ZRPEtTwS|`WV+=-jL@JYv}3Gk((FQX!xYR+OZVBHLz#C|w8hN(QQE}!lm1W7h$$uS4_$|VXb+!-=y zRBm~D^#>$x-yNMVSiAKVy;+NPsoMSrJBQbgZ(wV_>Z#KXk>rx0Cjkel{&(C5{L)d( z1643ZqjA>W&p3g|>6kwsqW(`G+4ilWIR^kT5-ezLg-FXKUOb9ef!l2VEV<7t+6O!{ zs4-1(mwvd5%Q0~_TD{?{N6HS}$xmISu=QtT@bY|2%ZesBqHr~7dQm#Av{sx!z<_bB zHAdG!B4e2MIzT@4h1p5Nr)Pm0nR2Y#(!ESEeQHlJ3e54)eI@?P@1Oa6I2lGXjGzD zjP_&s6Hsb#H0NwsxrEQ3wA}nBf+KM6tba%X`2&IMNZ*aurcF17Ar@%mTiAnu=?}Pf z8Yqe8(M3*Tg(Dpn;sGO?MCWOw^x9wic(Fe;`gBZ#og@nf%&)8(Iqt06%^g;A*lzA2 z!4Vuo9!?r*6Wa_ei7BFbL+VU}%cJ2(np#I6v=;;QCC>)|RZnC6ze@!zkCiw^mMZQ^ zQ53e|GA7R%FbfA9QPbTM@c;={`VHep$KALK@%A7tHv+}`|KzT_-gmu38q2P6bICfg z$`$g}#u&6zH9}PklL*QT%si0zUu}bgns@>8NWNq5b`<816AK&(^=D$_anv$em*x?L49BXk z?%?$mCzY@V;|R`!Ff)w`J)C_Y!6s-~m#NqCPI(xDIl1Y9rj*{mqHHKGqi`MBd6_&fj$$l^0Ammb&GZ^+&ih<3-fY}g{{=OUNUAhvx7cB>i)5y( z0ph%bJYI^o3+6ptKk@9M*DNr=%5Hx0E?WbC#5H*SOJ&1)x#{BP_y1jdre)zk_hxcx zg%j|HdYK_HN|$s_Vgtv;iQ;&B!v9ptO`d!}2C00eQp*iT>1RTf@ii@~b(#)7>_mHo zJ3*)SZxr(Zie*PJznDTeFW%Z@TqK4#+ZmM^q{q3Rd>;8WL)|r10cLVpGN!(f+99u` zQ&>~SYTo`^MddU7{Ce-eQJjYB_%y;JD=X*zR0P=9?OQifDNg#{E+1sCvGe{1_O@s5teJ&I=0i`ahkie}ETzIn>%G%N!+7hjq;9;Vm;ANYsag4Zc z`ySV#N#!4r$dec39iB-1`!Y8kmXCwg^I1eW6f!VxTOm)V^H;ga-1IAt%&JsAeKl84 zMU!ZpOn@q39rF-^MX}f-pfW)Ny!8yt)O5&N5VMf4GPrjzw{fn{1+w0TW>?-DcvX}7 zScS@7*Z5IOcLUz(xD#7uT}-XQ=0LVrVl`x2PH>fS4Jz-oE!h{Qc}s85+}$0i^nPFdVb&Lg zhnwh?4AyrFY ze!GI;zMRs?q=-d=QMZ5eh&KI7O~w8wc{>OLqJ1x9F!As|;Eg4%Hk!w1e#=OMnEFen z6|4AjOP?%Vic``LN*?2T(7}(N2-Rp$M0SQeypRFWko(Gv8^39hmb?S7W(0Sgyl|I- z#N6BDgaLEZtIaWO_3r?iZRCz?cIFo{e<`|mNx z7M8PUf7hjsPga>TsMX_AI&l|OZwLH3Y_;|zR?wjSI7KCCEoyzxaDajaixpxzMMtH< zZ1aF&>)UCJfbcUk6?imT6>gzP{l$H4JWRL&Nd`UTczXbEl(H-V8))_8$CU=Rz|K5_ zKfCznK{TCcZgLq2_Yi-4`Al5rHd;6v-3GbFvF9t6%)Wb`ev?gN@tZ&zsY(%;uxa>h z1BaL&^iGzHWjDE*>P3u(OVp*6UTUmN&14=`ta$Wd(!^5TT?*2x?qc~L9u&JE|0?I` zG#iY^k6f;-B}mw*y)5Dz#AZRFy#va)HSSiVanmM`$Z$-ETsvnGq$|PxQ81hF0WQX{ zL>xX&8y6O!w2bL5&h;0cOyJ=a!u88AjO8)n<6#3T=X%FIn7}?Q)B~OD}+_zl$DmE48S1XumN1QVPqkmcKORar>&~qw2eFTN1Sx z7GNmpqv@j`40BGc$~=yCCq;^u9A^3tRpyaSfN>DvxN19jl)IwxDIuJVXqQIIcjbls z2e=VzG64oG?HpXe$7P2I!ZmwJ6G7Kv^81t0JVWE4qo@{Lnq4G>E`$ZnxcR|3NZxBj zGfX%C=AD^T9b5anwh?|F{X#^XJlcnD7A#F`@PVl(5;xK6w1T9390Lgx@*5eB*JAF_ zZG+&Uuyz-S=Ewh6>JI43GVc`EZ^OTW zIK8YK%xSutE0p5%%o|QGSDuYRS-iWvZfg<)2v!03o^h9LuZXTQkBuq!`3ofkrR%1( zCPjW1^QHO0@1SqPCsgu3t49;R?$R+(5%c4X!*d^+bseVG?A_AsEkY;i2Pfa$ychS) zh=}|4=!ahQ`&g25R+c{Nx+b|}O+<4E!2gF7igC+Nkh~cobF;{fm zbY$;O59dEf&Vx=3>p9a&T*-b?*tZ%11)L50<;1;i{DPV9z84?;7-W#>B4lB?y-RIf zfL_b!7QA$x6zrO0-eknp`g+8QgP3hT*|#^CV-d^sloPWM9!Xw=2=>VFGblWX@m*0E ztZCBZB@t*_(F+sXXHlvs0jPL#)#VuBn4+c7wS+;hD=BK^Zw-?8ojzYCu@PEwJNWD^ z=cbsk^b72*;22S6`=qa~EOeGuXND7tUmHNv9hNnOo5^qK7{~fcY_^Vg17wdPViKJ% z@U`PYIBTv8kJ~MdUlNeZ$VS|{5?|&c=YG9cxYHsM=u2%$>{}V3zzY!m;gNiJ@juYl zVJ|FpJ-lc9_P)G1;e626S3ef7Yb7hWN0GKW8=W&lqq%@POG8-$CNkKlp2!wG7rc2A z?c~@^bG{`Fp69oexPDhnWt>c)7pRW3 zVezX&^bUjDZmE3|m`hW+n$PlJ33yXv`U{UoW$E&8q}|r7(|lgE~686Hox- z{o5#Nsn61(#sh3nlFS^Y{bK9=#>Oamx*fb5e}{QCEX4loa|4}H+$j> zU2BZ=J_}c8&mdXiLVM?kHstA78f$z#NT=zJ#Q#;eL^5yRB}dG&#iIFk!AgpYNaq2g z5YT5-kulm-sA^nJMAB5@9mkU7pF0|!1M74S>)Gl2K|F5^s;LH}d>Xdr54ZyBOUy}B zZb)3bs+dCp`L0r)w@tMp{pENm9TXTEY%#9BjE>lOsO)%80ap~CP0Y3Y^3O#s@ZK*u zd$O4J-8YFrUP9B@t|0w0Ns9d`-ZO3yx@+@`xPlxXexx6VNi6&BlCoHI(+e>p2^1#S zt3fuab1*`h--={N{~uJo_e$aS*6FmLi11Ip^;^ji%tPcgzA9%G8Kr5fKMrBpow+uJ zxn%DbJmV`Xqol!_)-!#QypU#+q+dV-t1soN!cbOOhoS8u-Eqv?*6r-+M@{;JKI?8m z%mbszikgSGOL4YCY*y__O74#Hm7|(v*@GENcKqahe{Qa-kKrxpFVS2TN#AK~n9%;E zmcRFCAZ-Gsxp#)XOK(6p29Ef)3~4B660Pjv7|rGwvtvnXj$l$RSMWhlJ@da_h^Wo+ z7@Do-$gbKaA!qy^LS-NMjMqoq9$SN=E1QS;VHxVL9?LOgh9BUbxuWt)-=F5tKDuui zK_;DSbk#p4*PprQVj8C-N(p{ubIscN9TbkuV_WB9z7cRt5U4xv>GjqX?VaP9;l=j& z_&7o7rsl`ch-Oc@av>?*Qun;%IMS)RtF1F-Kd~8K9ohENDx<6Xt#xNv-QuM6%t(VZnCEzQsR2BQBK1jKups| zoW%`5H%?nZMO1p5Ee>OQBnFtr8Y=BD0-QYXW-D&Y1ocL6{%#4qRl zW*-|Z{u_hEjMlAf&|I<9L!29`&%YJ?em3nhlvd(DN~pU;({q?P82yoJt_C&?fBB;+ zjX0=cvMEKKb)Aw~mXmG!52e_1ZcOIHT1Dg5ZxrYPv?|JzF-`lFd3atL7d4YeVJ5c7 z%^yZG4anbBsrI>Xk_@bnLWk?c?*j)JA6t5V?$p8VKNE8jCLJDNgDzuvqe4`Tn1`#< z`*I)WsJ|gZxRs~c3P*B7S9!$L)=vN-hyjv=xQucc4Fg^3Gn(0O?s50BfqTWvCF2k( zbME?C#FtXx-zxEH-1FkdCOR3B2?Ubdk5#|hk3ZpOmV(j zUPs%8LmNI5SEs$7&%lhQDMl`w=Zm&0+}?Z-O;&pqnZf1(CXBBNv;Hp{5$CE-o|=WUPyNpep+xO27hS$C~>9o&4ZtutP`>A z>YbiL;pC@R=^O8; zW7>TVhXBeKSpED)DVj&geNlRk==u-y9-`?8V{WHMqyiQ~lPY&COss@n-WSJZXpOcP ze!l(dK+PG{aie9oOyA}B1Sb%`miNAUVD>i6V>-(C{)5uYj6op!FYlERNsRZToW;{7&qca_p*veL|b@?i>*<KGTjKGpXH+c2eL6x?eXA3{44t>p`-?@1Sis$=`$ca|Nx|gfDw}sC?`5(HGG^O3 zXTG_?XMpV4t79;TX^KnbXCp*_1!)H06EOW9NanSG?8#EE4-##9Izzj1Sv4KGB2&4UI`*Wfd zI1H0`!pjj4^~EA_KIuD=r`+^QPXPDhrKN3HZG%K-0`mi_?|#Lj-q7lt+Dp<7+$u(d~5T zlZ{XeEyU#?vMEe-a5|o3S?9j@LV9-`bA1_0 zIb2Ly$wZV|GiJHBejYsv^e}}V1~C(Sre!&MEm%GQE)81W4UCD#p}H5RVi?tTs6>M{hSrK^s7J9H-=P-!#I(UsAf_rKzL7Aiy9dFmm_fChQ$8^ zb<6TTk71@?Wd*-6j4uCv!xqhnxA@&x zh@<;pBpHZOR3S@sk|G0OdLVrwkiSRkvPN!V9pSq^HyRV9%?LC>uCC^VgGDTMWt%!> zk2GcwiONAmXDyFMuWK!F&CBT=zk17#Pe;wegwc;JWsWY!9e#$Q(=&hG#4f4-#b^3q zZXPP3ZSiW1-LV~o4h;Hk6$s5eaRiTXQE5Q2qkLO8=PuAxW$uNhv4&OT&dzzQa^ra=I;vnYgDL>pK) z!wG>w-}O$1qsj5RpsQ>Uw#`3E(|z@heBB-Z>)aG!ko)v~9&<{cfQat}?y&JuDHu+m z{HFZJs5{WiN^^OX0?1HN2C$@)g1h3lIrWI78vG72b>0n#i*|sa+JZnNE_G(#++oq% zr8a?`E&C-5Yz63VnC&PM!TEEaCjlDMhYg3`iIPmjH z%pyF7q1@u)6XnIvf|-Nc)6{1~9^pNW!I=6#q-p zv@l&+EeAl(-p@2^luz2_@u!(MN(G|e@ux<6KpCTC;-J_a$mKL>(Mc(mtY?$1f78&~ zHGde%cGQ(4WD)r{{w}?5ZeUA3e$W?Jvf&K-I69b%P4j#=N9FSjInEkV6DAaEh<%c~ zjDyHH;5_=S$8v#RMi){$a!YoIgoNYjTDr$Y@MR(~Mg9dEyk2XF6`MI=X&tJqXtZF> zKZuddYOZK|WhnQ9a7q3}e?U_0q($BWi*6Sn!YfH+0;60DldL3PSW+;jqg3V@y25Q~ z{mu4%g&E~jE*QDEMEnKf)r({+GpUz~1P4S$9B$j&=!vbtW4f2$MNqwV;a|WbfoOG1&hRO<&RtlF2 zo|R=_+Q%(T=YuAhr4S1W1-nG~=~Ttw zs4FJLnAiSLIgCjmN~6c*q@ZAvJvt#f@oa&4qm~h;V@P$%QuRL&-kGm_S9ba?5n@bd z1LNgPI>6A=+VyToSC?bhkpwYI7WWqRqy9#@SQ-MPTd-S=hmxDcUVJ!U z`|4Idv<+1l5a$1LV4?aKnVnZ9QKG3OvWq(?px)_c^%q|tt zhD*Qs;MF2jBq2DARFGRBB4>=RNQt^Xx%kyRIRl2!e{L?(MfN5bemfnQ?QSUuCs$!J zzi&zEa2|fY15uvYd!y1+ie)5=Uuc8#xX<>7IXHOGntGM3zP9@z}b8_=no3H8pLo*Tmo2ZAT%d<_F2_fLZ z<1Jn(THa8l@I~xZB_AtQi(I_lAngjfvvCsun?L89V5MokS&TXF9aG5qrh#ZqEcMG$ zSpLwS>yq$3Tk(AACWleu{354WEdNCiweE`J)T|vYC?y8$aMb!V#g80HpiJhqHsuvl zD3k)yrYe(ZxMfzb)yYa1cEl`ghVuu_&8OT-y=~_K4wH!k)>0*UyLs9$nR`L-L5Cy3%~Ta>}YL#(Wi!!-z>h_d*#7`-}@+zh&3j*^+-8q zG6V^LByfi=i%&jJyhidh(3R*8^*Y;4If^EGXXP{) zhqP3ry0EzLV-k9RVpFpegt>D;q3o;#V-sJu^o5=_WeefN$sC-3xX^l)M?H8yC_g$;28Bp{D*ho|iZP{(O? zIb{ZEe%$#paOii-7Bt{<_sbL|T6XgOaYVqf$0|3Cs{vf!cR-G40|w_0M8=4KIlbq< ztj?U#TgliHVEsAs3kvi;35QX8Uk)YY{&*AB8g+LYeNHtb=Hhw+n~d3~iM^-If@ z@_Fq^sg6M#w!i?7SpPy4v~FXg>IT#~OlxO42Q%Z7z26D^Kw@1jaZgrp`phiC96&(` zOt;me>QRhqbzs~SPOYF?=4PpK=a|F<-1gH|iaxwpsu@fy!a%`ED4P40{PhY}Y4tYu^1cnlcpXjH} zi3~#3awW;P*9v%5Qwa1SsVWITTIA?jCb5c;pd2X|BDq%MKkeDV6pF%+x1-vekgd(; zk_JX4--sC}BDK|@4IyOjWwMCrz`E=P57{2dpFt*jWZN5qcs;lZ<3BF^2x7!`iVAq5 zTOT>BK*yD68TCs(FYV^5dvSE>kq!|#Uz39aIcjgeUOJaB;(b` zGjFw)_~BQUSqg()vwvg3INiAH=mu2%<3i3r&QM928R_YJIal360I42rDZ3yFAOFA4 zwK&Wpx<{QI_AParqh>`47S#3Vqvv8y>^i#_-r&u$ID7^zRN*dtej5?xUA)Gn*^qb{ zu?r<0$#wa?&3yW(=^e;T4)sa#5H7yu~3_r=-tlQ1xJ`>WQ3 zlt&~HKeJ208Z-~ZliaLA5e+IutQOf^TRPg|?)%YQU(t@@xv6~EwIZ9&pW>76Z$lzx zuT(uXmQ_s2mX~3#>l8ZllHH>3@7X`~!)5DFJ{*V_Ja9kD-+bvbFDwvZf>ABItytn- z8Q1kEo%S109mCC3!Ajoqim~V6>M*c9?k{T!CVTRqD0;xY2XsJP?zrNy-4bV&S3qX; zTqh&NZl_$tzq*jLJEVZ}&c8OwB-wZH@PDAxU6MVY$W`2e^Ph%0eJn#H*L1w;gfvCk z0ZMkG*lDTLAsnYmuv)~jG`>!;+>8+dH)Y?%ifH!bjreF;J(@Bt|%j4Gd^C*|2 z*@>SW{#jS*A#NzflKurxPkdXd;-Wln^IucKYbnK{==U=ukTzX`&_L24s7$fI9{} z#JbCBGs}ht`h5p&;UY!iRSKK(6_~thGymaMN){bSa~XD=*LGjiqy0|t&1hSG;zLTC6!J-Xif`vxD9&cjY_d}k3TXe?=!^=~_nwNwO@ zVFb{%@2s@bc|!%T5?97#4Z^Y~u5O!2c5dqliG?lA%lwyRz#ktgn6m@bwAGt78Pny! zIPJ)LYkJj>uwSPEEXW&5=YAvEToIyDsHM$~0ogKMAy$q_shD9&cM2ykR5G;s=Swja zL9N@;vWpAsg|p1sQ6SKb?q$iOWq&uY)rmA|WJlor7h;7>zfqs<029Puts!yV^H#y_ z1pt6&N9!a9AhFG~L@)$FeD}@@rS4CJP%ZDTqXKJ> z@$%s;YxWHNgoTO8{|}UBtWf_4*Df6HBf5Ej1}r8tF54lCN5$=hkOJWh&R{Ij`W#bf{e!!!Cx7r=o>tBNb1e_Z!mu0D=z!DbJEgi}uhd!*hT zdcyI~cYM_52eNM_8Y5z{ZNhJWKNyGmplFk@B_Ei8(qsAYx=Iw|TA!F7g~i&Q_C9;6 zeM6rv45s0|x4MBLKCeJad6F*i!2Ab+T~dyh!7^{|;8uPVtum zThiN7>3p2B_cxQ1SRkm(P1aIlwvqXx!_g;+kvSs(>EJ;2H%{qGm8Y-g-T|Q?ulv%% zqulpaG`v2 z&=AE)Pbp3wdp3xo^y!nhMf~&5S1w=*%ohS4|m_(+f=h zd@)^FcH{DFMcW~(9c;j8L*EQvD#_g)SUdEOeU5j#aHSxAdlgFoBA64C|ABiFi55Oe zCdaX`F`vkDy&=mtFRs8_zUZf9Q*xLXbmuUBCh9N$3jKxLa#TBt=%N=!Qeatnr--d^ zRa6;iZ+hWNe9oQ=?y~)!9)G|@*|mz_D*9@kOX#^tH&Xvx*IXc|9i{PV|0G_cg+^cC z2ZX*S)s8C$I_C2~5QU6fwm+};Yoa+JXLr83F6RZlGH;I`Z<^$^fW8{rK7CFXWKGZ( zadzoT@;E`X?2LACiqc>j1S`loyH3w1rzAh<##Lr1mKcBHJp@@HSbKx@>bFbq@DZiM|Yg{IUcBasdVt@0EsyaprU{iHH#j`5VD0GepsL)iQqWn+XUHnON&s#2`uw#Y0JM`dIe+QdW* zpB==5rXk;OUQl8HH2W^aNYwI5V5l53_NV#5>DhOnF;Db9G#wjw+u&Pbnv1I2xz(IRjr_O z>s%(-@rixqCT#!Z`n0;}W?CD1wN)sLMJHYAmX8M=7-{~66d+M{ z9vJ%8B#>|c-w2I6kL~At#Ifv>kFsV`Mdr5PR4>~;{6c=bS3qIaoQ^aeEn&1hvh&*3 zT!`*9H`vSSs>L|>n#ddXm_b$c{0bW*_a3XU0)fEW7wzeG&bNtFqS@VxpEIbX+yB}Y z{P3hS`ms6@NtL&O5jY3`8>vpYY-PkaA)-2StDr!->)5rS1~SVGh0|wxU7L4Z(WNOFqs@2--$F=(?G!_~N+CO_HJ1!R;V|DsF8&J>l8^O@~8nXp5I+ro3P7N)Gr=@tH%r%U_2YxzD zE}tnL`xYet?x)jCW$P!PRo#54@l6@yPE5C*ThE$i4R_!FzAVEV<60Gm<<@95-03&p zokBk9o%8#H=B*-j{!oY?sS`54*V{1g6NZO+Z=mf@Zpniy&;y006Y}dOc>= zJS_+iY+>4To_`uFpPhJM?eN^dd|&qbf+*kZ=+W$?WB>`)84}Y)-$xEa3zSjW-RPR* z?NaM@beQh6`P3wGV|PKn)Nzm}%p7nlcB!T#G{Z93sO#1$i8Az-<&}o2ARl9Kgf{f= z4CaMy6bw$;cNfpE6)?CDk)?U>yrT|kpo#=#C5c(3aUjuhW-B9ug9y(a}g5A*c{2DiO&bg1LWzy--TX!#{z8wI= z#S?rjHL*s8Wc>Q-i0d|F${svu?!wKT+2O1}|47~I}O^Xjq2}&ym69gDa zD@WcphJGlSQf2V(_R0(UR`!D$M|j2kNzuP?k{qDLUYe(3^0(qsoaLZ@c9s&P=7T|~sJQj#pNxv5N3$5u- zc!tvG4^YW7_pL_#-e8a}xIB~A6IAao%3pfY-IV0`5{-yH0-R;x2m>Cd$ds#8vNG0U} z)#{)wdR1A|qJuu2q}7V^_qUdBdY4dszo2_Hrr@U4$Oq0pT7iJ`c^r$-YWR zJEU_;G2I$HAk@NH;^$|IwgQfeFRnp!v~e@_iFPPTqnK@M{+xw0Hbd+{i@;tvu@QC9 z0xQ2@tmmJF!1fIKym`;~VOU;l@k-q`X|^VlB4_loO}M7~a2Bl^+b`Ld%_<}>Dt?mN zkWDU+{x(qOaU>WSZkX~x#Et9C*MpuY+hh#STe{4)qV`9$Qoq&4{6CJ)GAydLYr{h~ z1Jd1s)X*RuQUcOl5<_<*A>G}AbPqiuF%n8UNSA;kf;5OU3?R?9-|yf2p5wUpzV}+! zb)M(Yp+kvK_$aFZh-7Mc7{~~ldx)l1`%BjeBciF=*np|yzRHWCuG!|Y64r{>YA+hJ zfUKKFC#(B|Xhat1A+RM$1{pnQ=wcjQg+(6AA~M0r2s7_sS|k?pa=|rwzUtqWsH4wz zjG*>%1N{qD+TA);ERHCAg5PsI00d#21B-j?8yn=wOPEO`41S;?=BF3s3HQx!e=nY1 z8@~_z4}@7&p7KxttLliAP^6WIC0UG&FA1GVnj=?+M1o&9z8hMiS|p~UHec1lPmp1k zqx3zjtvsi(eJIvIo8Q<-O6^yVO_bSeT+Eq#2CP0X=$5i8)KR)nfH zGI0s4u5a_%4HW*O8$K(F>%|BW!22r57FeCeZ)?VT_(@8be!e+EUHqG`tK?Hp_~3R; z$xmccNY8CIoW4=eto7}7)pqirn5>2Ss3^YJ?UxnfPkrgU@v$b~h{>x4>{n+`V)b!i zzfY4rJXMMAANtyO;%Fn(?tXqiy&YT0&+ib<1KhQ5tzcX8pOp!}M1Olp+KGPe?PAc9 z#xQ1r6Oi%gdp#OMlHX@vOwdu+5$6~(U@Co^hdFI2oS!>Z?}{K@3SF%aHE(U>p4ts> zZQHlRA%T5ZIuzw=ZoU=nlo6A1gY4KVe# zq1DsmWWwAV|7EC3N-xtE&^x#qDr@a%@QkjLM^-x-4fU?74(AQON^vq>s48}?ZAAOi z*?{pkw!d)0?`R{ZE81|^hbsEU;r?-dP=~|esq~8n^6Qf4kRICA+~W_AhWLMmBNyf762X@-aK~|O;@A3d!*8O z?9=yy=I&-8qLp_O-VHQ_OZa*Q=#fH=S zZNhXpV%awD+9FuuBu1eU@qzPP=mX@WbHsYavI5`rPuzc?Wa%W6*>#l4{__f%v944e z?fWrf&x*fLqQSn3xWwDGqE|Xh^ISg;W1Xd03+5$_lhF?BMwwewul+!Z**HH|&72Fi zYdazRSw_1kCY$pw>L3NJiiJf+1t{bASv+l8xzTOHAXH^4YR(059?~iV zR^<=2$>64V2nc=uxOBnSu%a*B#BRiOS1I4C;e4eed593%04Ev;b(vO`;jlim?fg9W zQrSrQ(=KG_513dHZ3iu}dONC_`E2p!@6pXrt$88_hyz~2(z07sapQUW`~8GIaEDDB z*o+OvFG`e1li>1{-UzU@%R6|q2>gq{{B}ZOB2-Cv$iCjFYLBqVvE}nk4Cfs#r%2Rs zKr+}*4%-sXo6Z;D7J4sCy^hwizgy?!Z+lM^c>L+K=bJj<9tFlZl_US-GWry%4Gd&8 zO-Z^>Ejgv3{`dIF*Ndb&-1I$Y5Uwjhh&r^_RkzMJgk_37z--L$iY#ir;a-@hXBW7k zCQ(lrbaDpVzLl6lB#{A zAWVfxm#<yt;7gn0K4EHD zsma^3v~Z&ts39Xmu@*EKnD;k)({z9zsVCOGV>_L$`i*pL*s4d4Bkq_@_%{S^tfczD zSHb`EP`2nQZa{bnE->Xi(1}I&}-x}PYK2g|<4(yMUsL+r| zuFMe(n+z7};@Bt-aDdbJOQo8g3-7N68pYuo-8n^L-KJ#sFIk1IN1%XtJPfMnaWXcs zQ$Ka1$SKwyHuPl6GQ@NWz(VHJrymO@WtQ_~90>^0OCmN#o1?SiE-dEGhpI`g^Vp6r zT;a1$F75+|Wat_NM@Fe3MywmFzZWvlpe-BMdbPlB*^gbRD3jmm0il5?yWYXMHxo7U zV>uSbUVU{0geHZFwt1hfZ7P&lNc6*?AtSUl19UzRiQQ&5iPP_rX|U~_hcuoG2%;wI z*WihhGlC;<0?t5hC8u2&pgwp(p?#T@kKW$Q@|YHm_S`Ayl9DZ9NQzV^a8p3)lKrnO@v?ESl_m zpFc(qF!hu5V!|8jg)3}X7hB=GswHwKW{L!{AEK=Zw+&$}V9TNGRWK~~|3gc3nL&37*;L8>>)2p-m%Z4pO zYe8WI`nk1KxJA#~XG9Wi10Tqqd&L>=KETgU`*fIXlivqhH^Pb^O`aph_^O{gU)2L; z-76=|l^(~;v|j5e2;}ReUZrv@RC>8toNU1Ux0;QXR6O?jy=s~SBxGW~XB-w#yOhJF z+)FDRk3-e;Ob=>SN&0up{u$exmU-+h4`F1K&i^kpL_3kH?9NW+5<}X8ASPmbIrXlX zlb3YBJdgSwYt^KW=fvabJ`hSJ-6u6e*Bjj??mk(gK1pLB=fMFcTbe}?dA(lUCbtx> zaD15vL*|3XjsUK+X+7eNW^=9A(tTf2r)Fc&;pd9oJByRfrrJBF@7Brlh`p2H*_HQA z#6N4ZO8r9=A7p2L3>u|Z$}{w2?33JnS2{F2L+Rb#D7stl$G@xa%EY|z%-$OPFolz8 z^EJJ9N1AEDRFPet)$&>L5&juWhGab8iTGpIpH#0V4qX|YEP*;?0L7}_ttKFdyu$Q` zdmlEYPJe26+dD+yeW3JDd9Y9~(j#WDp1=C&IJ)cVq`Kpal0T0E8}mj+bUAYa-;02F zoG#O&{=714zo@?n1SOf9=B`1=1X62k&mon_m%6)2fWgNNl!-uxD=sa{o7-BlfK|_d zFX*0+^sPtXwSEpQH%c?ru<3~9!BM@DmJiMA_e%P7@(rp=?}OAAR%t9Q+7qu-Mx?ks z3kalxOlfvgTNXx|j2BJtLucDWs_K9`m$x28_>k`K$7&)*5i{ZY7F#cvG_vkY8UVjl z_Oj+yuX#jSf4xHTO0f@W|4o2|LY}UiG4*L^UIEe)_4tvdY?H)b!pwiYv)j;lISvjra~=dwa5vuogSQXJOBzQq)B4qqyZ%H zImh(h<&7d}1GSDxnJ37!@1f@Q|ADSkxra!qi~UPgP?!%Fgz2_jl;Z*?*{K&w8knR1 zftCdeL2s00J_EzrEcq@TY^`C2(VYL$Y2YlPrJ_8lhPxr?EGSy-MjdnW4&}0-ci^S5 z4N|xT%6~~m0Z)QQRxz@!x8r)H!bY>WgGP2(On>?%F6b@mD8vzP8$cwL?FJgoaU`iz zYiHI*flutxb#xA;2dhsnV5TRIXvRgdxnoO>=rw@1)>^G zgl~zHegtefR?&R&(duSLU(mIWNApZc5X8C9fCtq<-FE?$nQV* z)P&m8zY=**=#q(Vpdb<-7Wb#j;RtyHhOLNMww-PxckowX*70vmWDb=|T*Fotf^d#I z4Gc+@z9iUX9 zNW1t9msL7?>*C}i@l|O2(}!8v%JJe#Ne@AJw!SW~{U-^n_f%zE*z@ydwvNp5o>c`u zT8wD-j;nPw%%E5n63X0AGkHsbBLv3dqCkaF_XPovw9vd%`u7sZ=&d+na1(88x=m2{zi%JP zE~~tUg$`OaP<;AF_W5g=M~!F0BiS0iHyoQO!mr`O9a472Y$)sb`4Ic$`Op1t!TpPo z`Yt9Mx5#G@y5rb$4+HQr`CqIM#dOm11l-{5ivHO2)`Gc&8^s{kE~MJ%r^J9YmV1Y>`v`J?Z-ya^J1Bh(C$Mv-DPRRJfbvKb% zKN+mE$6_y@H4W_BzJNI9t7f}3 zlsG#5ix2-lm3hE#`G8^oRk0LkzzZLjd@GgMIAFcVHx;E6g@~%vRids5?v*f3w#Q8c zV%DTlmyJj*e)@f>vs;@t3{tkTF+`TCS0t@8v7@s;)P2u%meGw?BGC$h8Ky6SD*F2N zyE73x!yIy^rs<>AgfcU+LXU*auLhxVauf~vx?c!9Db5cL8@k)EU@HG+Kk35T+RT)4 z%g$q)E{txrKkUa$17;0j#!3#o><<@kLfPJ_0$o+>sg%UlLmrXg;=%Weg>p-z{P(PH zBq&Lm1eiWR*_GZR8gQj`9VI2^0FWgL>!LVt2VrSC&J`-Z&co);=5e)Z?mgK+JXvZC z7LCl(m*)km4Ds>>D@5{N#CoKAIc4%;yad7A`PXWjm|#AKx_235DNbWF_M^)j~z z=_s3g;t5VvdeN`C!B$8riSq?k7`U9{osH|&rAQmWMRmcqS*%57V)`jnu`#+HaqbJG zs+hF(djm^llw0awxUN5mQ5Q3kFfey(6ej(sP6&&=t2X=0>=1bHYxc|Na>K6_?H_`j z^Sd0X;*Dfrcy)M-WFS3MEhEBEp+M!+kZu(TMs52M=f8Y=(m->`I2_gT>^IO1wv?0_gBx}D|_=CHRk)NGT(0v}b}H=P$t$sAeu z-n^nH7~Yu}3x6u_Lq%r~^c%;`NnM2lj~RK@KoWd5wmc946mf_Sm0lz(d~`GHaC6@E zLwDfst<%HJ#h+=(4&eUgG8gX`SDJQJ&CSQ1HccfzO+ezR8_>bCrQ%no72_IO5hm$R z3ol50sy$ND#%w4>yrGubY#{1+WKYJ789_wzGuX#h0y+vkUzu=`H%r<7_l1Bp4MiI6v-j@0}G5v;ZE z7S1$XH=2bJv)cAl*=5kvnrJyTJ)9pxCo#~^S95Hq!-#>0(-=})e9`8=ffs!`kzSnk z^Zk91Tw;38dC>5+)SN&?-^@VDKr3G9+c$lEN|Jq$IxJN5$HK2w_|jBYQi15kU`S5I zh7w^E138K-{tXX04copgT)9vW(XOIDQN2#AG+{X1EO zGoKAyn}k>0^N;oCdl`POaIy`iGrscN6!}Aq2sezF)m2r*QmLZBwH}9)Iy+L@mFN}a z(B8x5fc%Vn>nNs#M{}taU*EpoRRDPr1NBLidRT2-KwQFSB*E8RL0^e!g`gv|A&r=lDT}1{c<~PBjThS!t z!(ns;)?dfeBjSC{e|k518{j>(xYZC>B>LmB8|OQVY-U)Wx!*8+S5`;aVa`Vr#~rV=oDu}) zZ?WMIjU<;{$)Nj3_BC!Kpe@zdUfbX53sC>;8G+GSODP?Z9<#Q36V+o!n>_^TpHP0w z`Mv5w(EG1FPYmPR%T_s033cJ`LJ9;x6G@ZUn@)dp@1#LU=hf;9|JGiE-)7joP$vf3NgVP6v_`acO1RCSk?3E2tUzMF%s5>M|q`Erkm!bX#`@^@tqdA|A9XCo417f&UGe+cHCVtr)o$ue~(8$u0%esvPl7>&uc&ofVuXv@}oxUuNT4)4!? zFLfD68CF~#$RY2E=6&v;$B+m_vCT|p|`2H`d1JGRN{E&^Vf)rrOiWo6*Bhy(VY=nlvgnf zSXRGm5Tj;a(a&Hq8h;tGMBLgL66Jcn`1!C8>CaPiGdEh3WdEB^G{_8U~!N-&kpjzE&V{3Ve{2+vR!M#oT$*?Y9N zq_X0z`8iR;&gOdy!KOtlrCQWFZyclOnn!hFM~Sey@3gkLis4tv8Ap11S7Af&JK;ha zwOi{E2V?odl8RMv`9F2kSQx%=3fp(d@;yo(f4(ZdK2>t}YQh3*Oz1JmZhR!56OLIm zlK-@7_H-n)MFLn$fSA5SPI9Me<{(Kw3h}GHh-@^2RmeM-9A*FZ;GZmi_m{u8_+Vs< z;vBKZdC%TrQrOvC1v)ZX*yaBvy+WGO#9r*z{~k<8cN>+tgLC==3>h`epBA&J+o_!^ z0;X}R#}zY_Xr6}uKrOq#*oQMmZl!7T?2G(M3sKlv?(GC;lQ7^6eVO9vYUB=}r4jLB zpYs3If0+aC{zKlr!pjSVf%>~_dc6A=S!7aw9oD(}tyuAGt|;QdG;pT}K2gm1o-qoA zyrt2EgA1M)4sC#wO-U<_`Q8l<&zTP&$L{-ttIBFLHgdgT6a}_tg%ddG$eR!^sRj&v zha$5>{x=AcC%711hq7OfGlhL!%#C-F5f!o$HwOIp-zzZZU^vJ4^G5IGk;9?{#}zvf zvnG-dM6(B=Q~f3Y%)~%B8%8u+#53^MwvG+}rYTBY<|PsM^fKP6Ox>d~$eI3SAF2gN zISrbriHc4VTKuI!nNNg->JHEvZIR4gLOCERL2GqYCk*Pq@fxxRS z(y}tFYGc?Hss_+LIIqP7P-+qdqL_rw0`axtn5FD& zaqUJxUv~g&CLjYUTG?-twGga+6=6IUq=-lUB)V&fu~Q~OPfObmNhr^%h5LMt<)!_K z@%N67KAt_rm=A@3qasoBo?G!ZLd;^lLW3^cPg~Wble0v=k?Y;H64T|S(Yu1O2~D6? zxcC>Jqc^0;xa6M$!vBcSvYemQ;+uxDB|E3G^JYY)&_yR}+=wVs9`2+4Oo&P2^ZVuw z;4)%5A?iSDJl(ZUq(I>uXwmXG0e4H3 zwb6X4S4_o|n9cpRy)H%BYe-%ILG^;fHdiVM?NZDy|#2lyNwk8z`y8axtiBV&p-v%iu!BJw{*X&{uA23EG5P%m;^Ep% z-5mwC7e0%!+tJeuVq9EXOgp zPXNx2Mz=m;`5N!P23$q{U?d?9=Yt*z5Us+PP(MH7mM! zLJC^a%J&QoA8O%ef#x|2XB?Cu;D2P;I3g;s0Vv!>ml3wts!<>cx4~N|YVu&t&C^A? zt$>lH9DWmG^GpoweBFH6_KJPHL;X|2q6pUGfNKwmw&Ox3b!tV}aVyjgh+^f|{Jb@e zmMYQ7)*Svfn>%Ta$Y5Uln6p|ZQ_;22GWR`WzPfwTJ<0fHhfc|1dBKq><65tfh9U%B zF-<>4#vHMO0St)oCF|t!7)LAvXtu%!xYQ$p4AAtw7Jaz>{aMa6ZeL5{t@bU;j2u1z z{|gg$7@O0bLcsFD!02}}Y3BTMN<*%SIPPag7x0=-9NDG4%9-VFv@9**haA@yI{(-7XR z@z5cHeM^K;2piVs#*=iRd)Bl)3=Y?y$h&U-y6&H3>WKw=`GU@?hJ8$Qj*%}(jBIyF znx8QU_?JRe-U5QSazx9Z5mS%`sy%A`MvZ`>%MPF6FaFcRne+Oc9O;T$r4{IFb4Qw0 z+;VlpGW}}={^P6yF?Y|ZVl%6nTs8zwqeLBlTJ=H38dD;ksgq~#)<_!rb+Wz{k7dNH zf*{b2<3mHSuObW&v!>E`LV0nzZER_VYZi7FJlafEXHw6NX_w68Z72!f1E-rQ5W0}C zt{%8Zn|NilA9Nkx@lRRC|ID^*!s0w(9<*P3TCIg`Bkou?hIg9SEnXoWgd{jPtPG1V z?iPF*iLaPlc1Ze(@0LxyBqHDVO6xz6W-0)_JB;#9Urc|`YYRbWJbyv!#(@y8ks$x> z?3hrP2cFhoaP+MgD-gV|5Yo1j(?=gyym3ooniM{6rTr9P> zC5fmM`jERO=NX0Rz~j>3+aZ^R7vzV158hO}zFP3T{LzKh6b0w9Kfq<#YxnAI*7|Pq6N!uO81mn9>A>}~jZMbnS@Nn}i{PZGDi|HpT?p<>Z z?ZY6|wW1~|;n%Fc)8tu}Q}kpXC&2Itam<~s|MWUnN-P8DTJh1QB_p_4JL#?c3gnBW zrsbpb#f3rtcvc`XIzx0N(gyOgU3f*iK}cx`VbqJxYnyCE%055CL=DOhUG3dFwe`E^ z0a+c?0#L8(RefAM9z9J2k9t7p5JfX08bHP16=Aq2jv>PpTS%}5*ldKd z16~lBH*xgXKmQ=Y(oZTp-_}~E2?GdEmt8K}=&-+z{42z8RcRpO41v#fk1pBon!Dj~ zQbTHQ%t9@=U2n{pI1sS`pVW)wx&V^j=I~KW@0>e9=W5_v@nN}LWHtRe_dvar)Ldk( z*7PY@-}rNHg4UdM^~zfeKhFvu;_#Jn?v0GhNdOx%|w&9?0Md;`v z4Gp;?M!5h=o#9`OP^dCq+p3wji-reZSb$P?&5O#{1c!g2zQ-S|FI77}hB&2Qx^2Y~ z*u}nshGbU#8T-97l1l0xf38PGkQvY|uCfx~cV3;&|1lk1adRu(cusd4A8YqU#f?<$ zX!uw11sRL+(FNWh*Gye?ji+cBkG6m3s^f~*MwgN7OS82w9tWRUUaZ4Lwweo{-v2;3 z#nFu=Ero@dTdCr*twnMPjX>~Pni^=Bx1FDX4`o{B#+zB***g@!Qt zn!ETy53tFjzzF2Wbe1r-4_%`gGd3<4>9eLK8s;BVx&xa}B!<2=X%Q)7tQW1SaImrj zyta}eq+kTPbLk%los1%^;hhB1CoxeM;HtFGz-ztZE^`Dz#IF#?fZ4y8EeZ$G;{(xI zYH0@L_=M04UGttfdswSgR7}jy&wsg7WrfI#Gg(!!F@K`yGjWP|N9O-PV&$Tx#<@+Y zZKb-&VmW^dE`53~O|ZT&poHEy{BLDR0?1s=48IXOog7k--ShA*czO~(Vc1eQkDnf3 z#TK1`&LoeW_g^-e(=f^cO)SedLl*;I_5F00F zx{lOY*EoUI@x`TsMuK^vmOB(gwV1X#C)Ly)rUYY`JMDc}U@i}7NXTY^s4L>)wv{m@ zDz-mg6SxrTic>Be5Vb?1#?I{ftO%#X#T%R8*RzkN1s%Kb@!IED-)rkC2Ug zXMgjIH&+}ceU74i%ymUj|Kqxhr~5`mk0kb$a!#7&xST2^lnR_1qb$lla@TN(DB!DO z8s4GLZxbVP{+IPBTz8P`mv}KRr!mmDJHrWh-h-~&ckr*-934{e^rcbe4J#a}8Qt4? zL4Qv58hE7ZN&LC8_>lZ>Lh4M)Xqho;m!>fJb5p`DK0{lue0ybX(mFnTz@33l$Jjur zCVMGNs*li})j*M!)jG82J$(b}p2OluJ-ON7+1Qi8C%>V4UW#Q%YvN#8zaYHb_>o1U zpwZSiN-K3$vy+dy#7nHy61%BsDOPRHc<~w(T1FoA;Ao8;+uD>r-$+x$Idn9hd&9Ie z1@f6A^@YFMPBzRty&0Ni_22Py&jpVg_5H$hy`;m+;$VIWZ7> zrID)aa7Gx2{4LV}b(K4&;tDvx-u%lia{kxAfjjnfsvf|jc$fsgLlA1rx?~WbEp2xc zcET&gWq*6H7kQ)uDT^IM7gpy}UpN7zw96;BoXUex!p365}xK$)uxY&EXOZ;g91 z57+;U`XHVchb?c`~PWa75S zG%pRoio?eyH+FFUNUo}AIJ*V#e%QI#>0jVme*KzRh;6|0vF>d3()#k2T_geXsp2`>&2^IBRHZy7moFMyipOE~@eOG)wcgpm ztn&G=b0AZ;@cKh^%d}UEtfKk`(afdkoVCgA$Izx*72=m;q}RHdI!2~8_`RhxK5q8A zZ9n>6XY;8f>q(j#AHRtPoLuC)1gXlKk1rGM5u`jQYwI_RwAddH(rU=AoX+y6%LH&v zSm5=UukNVC0=#b`i21({7hGEnB5|H-vO@x6N0V-J#8ERRZ|AEQRr$3XiZ99p)b~H^ z!Q=%G>iUh1iFYri9GCsPLu?%MR}cxXk9*G=+g?Avz@sLKFF(gH!6*90+hmXcOTIQW zwTad9XKU|x)FTdS6^z=^(FthE*xST*y0;JH#vS^kkGUiKdTUWeUsK8{N>leaQ#kAajU5wtu6;| z!dHrjoHd}zu@Y*dOE&_G-l_dE!*wLbfjGUrvz){#22;I4uR@ImsOW2C@h*`!w{J-_ zFkxwrFb(*{?JJhDL1CPPM81RQ#~B(uPz|v+Vc!;iY_m1^-32^G%mKQ6HaorALu*1&AazQV4~i3(xjIH_=r=t^E14_Dfh$+9G<%&Y=nl;{WDDvF6pGUK&~r% zd;W*mF+Ac8)E&^hWX>!pj*Xo*LI44MZXwDXh^!c6hN=guh`!L^S@OEoH5nHp-b^X8 z@OyD>8j5;e<`a$k3*eS?9}4tndZ)thmi=iJFH^m;L`ah*nAl86{@{yJ!v~y+zum72 zb0zXufBG8&Cz#ye8F_w{FS4EfL?Vq<8)cgs7NjQznnTfhi7P^g@1M$L;jP13$~BdQ z?_Ygo?$$Li>RCFE<*rIwW|wK9{d)hD?e|U`8HUS}zSc0oWaCO0R3d?gPc~{;-NJtL zzPX!Q2tdp2^G9h$%)dDwvW)CD?vz1c`~9|3_G9Pd6T}`MYIu`QCQse-PDw_t?kl$E zp5K?)C0x48X(+jCfb1T%l*ZkDgpJa zGaTppB|@PPOSyKMViry~HyKt<({rVV@i-)aAhpBgYu48)0QVOrCU22I8`G=<&fcph z+I!K3g2j8Ebh^X-q5?K=Q}#n6o8t3{%rdRz1?y*2b<-r=x=J84#zyDv^WjiOl~$@1 zW5?oTJ|3(rX+Cz$K% z71bl1UYIk$WW*el=Vt94KPslG_8ej@zF<3YgD!%U9vvb8j%aL-C{Kahie%S!6K3#( z{Sl))m-xczV99>h>utGwr|QiSjrf^V4Oousm$cP@;1x%htEcaH`BFx;E7mzgZD(x_Oi#4 zN+|SwmucZvYK!3ry8@F*y|>QSoUyZfW-qKS@!5un{yipE=)U!a?-%L(3ExN*NV;{! zm1hp({OHmL%oHzh9d?p!BDo^%JunYO+b+wYqgO&rOaYlF)9rd=B{k~e2L#nx@qx6| z&!c34ylz$Mz)W)pND6wT+KFu4n`5PAhbT2t0{80ujwZ%ahd$U zd!feH4Nl#D?aFO#rI_EAsKt5-rV!QiDMxcq7Vh?~DbJGnkiXB^K#RY&4a^;fz0Hpv zZs_y3tRG$+n}`%PrLS_Ts%(X|zC4x{wMyzb3b=I(T7JpEthi_7<&M%#tQpUHo@K2t zti=7R&zdB}XC5hX$FjBgAL#Kz?Rn+trTUOf$<*xSX%is1@(q8Ew;7>)QAiV!-Duro zrDSheb+lVkC~kAw_qw%D`ajU>a&i8?xZMBX(HUcl1?ISQ<&r0+Tf+k!gpF^nNMx6j z64I?Poc!!(GZSw^p|}>pas{7#*|Ydn8fYKJNVX>RI2Uh)6e&hL2-xzZ@{|!8*xO&;J|&uMpHiJKeJi za}{gT8OO60H>T3*fxLHUd5!4*F#qo&qjvdNs^d4Z3{B5#)C*fP zwhM|yq<>A3AM%1n?MxdLuE1)hsW9zQ%|W`?-KtJ8mt}{iw}Ga16DM8a;=$?bgkT+J z_LTK+I8R5U|7hYCG8>>)W}0Hn(9tCKJ{4Q08g6bf%2O$K7NB)1D^JPQkY{IsA8d6} zSg1zc$uw?H)-?OdXhrT&Gh7s~qM=V|3OV2qTc zuP7{<%dQ!(L|XlPwQRt02`7~P%R8O8LIi0~KWXV)-lwu%^Qr$;!pU+)n&rn0C*;Po zKUBY404QXN5!pBN=GX~Aq>>1K7lYN~7H%Mmi4pxzx(0xzRI8_{8AXN-5o&}H99O4z z8c$na;6L1?v6}Usj|YT|1gn><%_f@e;DfNpMFXGXhP|W~-X#fCiCk4oC-O%E&Eu!v zY7`EN)V{r7opS8UK?nGESLNGSyF5qY6ERY&kMM%;Hpntrpg7d+%SY_j1Bagu_KVl_ z3@6%J%OkmcwLU7axdrtYpf0=x`KRe?d$s(~2dKAf= zoHN;j%b3qHmda6HUK+zB0~`kSxvT1Hf(@UWo+{(7$9rcnsXB0B(ate@)KNvmVBMuJ zWx@YO6Q;jYdSbutZ6}voA7CtqMmZFU~q z0(WH5f*njDFFaxUCjpErghX$(+9ATc2!Bh~(#S*Yiz0pW8<_3^L(_{K1LraD%(VRX^B4a>jtcX;hT-|3*@^oWXaAP`Zz{r z^_`yj1zdA!pyA{mL^~Qm6KKUG+Pwa21 z)l2UgW0T&P+r;3m^E1;rC5r5KCqm*E<7ZEI@bC+aWmn|gx>DP2SO3!F0hd}QP(x^| z)U{SiF)csuRMEk3ORwPN*)tDf2#@KM{Qf)UHL0jHUOoVSVj0#()|{R@?UTF%s1d{= z$+{PY@H2EuRrM{|`Bj-5|F*x)%L#ER*}E%s)e&ncD-~6(a^ts{;A$nRL|oEq3nn?! z%;B@}K?1-^OKb%!8e)Z)@;z@5enT1J_^JF6UTIsRj-x|`WD|^=H&(L7V8td4#EH}K z2eVsd=82Ar@3CP5^KQ5gwSYVk9%?C@J$Lx)O!jm;&^j60c`1aE0Po)VU@JzR9fM~y zf#FiWxzR6bs$ZEv!(Wce6eMG9n<&5sY5z&)a>4*J^O8gq%WyT%MrYg@ zcg~&E58X=h{KbeNR6?ca+##b>q(Fb6D$x1>0_pu~vXiqw*S_@DCgGj_SuNmO4FZM( zWQVpuPRk-CE%9&PIbyHkT>b;)*J2+@DuRgmP;>^btm1`5VZ^zIdCAv-jIHm5v~~aJ zxrFKz2O;Mig1`Z|s>AE{acQ}g@%mBcX5uL^B4S1b!B6Eq7qPwjfJb!|k!7HHod1(r z8T)A}_JUiD<*XPZMs=ayGv4z|Q9wIo!xa#nu6*trG7u)pw4~0P%vowc*=tcj53?&$ zV;;nY=zoO8p9BTld)WE@(sQW+KO>=%Ftz8U<7z|fxy89n%N5vt7c=*o)930k0R0C# zi>JhTWp84(WI9ZwfA>bsM2mu}9A#v}&$PSFIxvQhQd}4QIjMXNao}N-3ywowDueWM(PW5Jdy4<2s$ zCdOB+74$_GlQmP9e0#S8T*kg63P%CVZw}wQZ|+$&xNqo`izNKCuza*)9I3R+m3Xik zj*!aNQ>wM$rf%h$$j28GUY4_A^;T4h|_#;v4;C`lZ1m6@07Sy`~joBzHjMqUx=>U zO&|YvtxUVE-o*PxTe{fis4>&L4d3~)k0Q`D3=+Q<)F|wrp+3NPap*iOsX~(U} z9?zky>TBzjS1id5#%CHf?rtf+?tVxgz_Rhmnu0LOJO+ZXG9N{N9xY9eu_l@8yZBV9 zh0Vp|dYe@}GM}0L{E$f=j&oF~tSL1sM*QKH$(OI4w6>z@w#D!x15&>?Ty0Bol>9$F zwZPk|D+Dg}ZAxd~NXfI#du+bp-I`a4;fA9hl0EqLr1SaBZ89LVOizE=`M}zQw&6Oa z|69kHQqOMWKsnzH(7d9;elYCh&2bky{n|l~Qc=QFnR;X9j^|EAUtGF6b*(=LhQJ0s zwdT)4v|J`j+ncBz2Ej>Zre@X$S^Qgb@ta^x#FbA-Imt|sWln3596uat@;WNL0RAuJg&!<`noO9k8b)$VPd*cT|OLFF6>!@G33IAoZq$fp;|5QwTi_>AY<=Sv^Ee35Lv)2Or2VobRV44sBI4KU*sT% zk%&X?iXLF}D$WbMdpohNa60fj+So>cYPbe0y12I+zx%+qG0yBo=VO2Lg~JSyKC^fy z*eA$R&d%kql`+|!0P5k&An)0iGI~vL{K-%o%r6(as>nDNgk1N-zSi$-cfGHCyOeK5 z;mD3-1H<6DHzvT+g%48D0W;h9#;~4i#jf}kgp{xbeO%T`38(0TrN2`9$b~pz%rc6hQr!_H;UhQ$cT`TH~ zOgp&h+iZPe9-WMC=H!bIZ$jG6E&{$bmoi*ZZ;)I>fXe`gT5LCXd{=K}CZDB!J77`e#ZR z-OXR+@O}{a^tmA88&?*ZJYu?&en0Ri%O7eRZz{cT1ulc};xEO48XL!%MD-x7ks4|? z6fGVu{HKLm34byE7kWse2DVTQo}h%m0Eu|`V(jkmhXdaW&BUX73RgUj_aI*h-K zshcWhhbkhG3affb+$U*NELqV^gu=s>y*}$A3GdgIh?oy6j> z{tPhLQNgn2hQ}oqmCy5d;3@1P=<$KqQDQu98Et}qAdRc<8YT7jlfuWjb&XCQT#h-# z5mH0w@3YHT9dYqCzVDvtDFqS3F@%)ix2g;8eRjo5p9Nnocp z=Mn1je-xc%T$BIXhDRecKpLcx?(U5a>2B$6MwfJVD2R;i8Uiv(=@gI>aVQ|okM8jv3NQEu8hYYUd+aNlg;Z&O4@n(O%NYftIubpPmU#u& z(7+kg+>10I8Hh$C8XyFGirypgAO^dq?mdPw6x1U@nTKvU@o~^!wzcrvx{>|BDoFUZ z1cF3;Tw5Ce1tdYxsf6kF;=oo%iSN(PCrNR$7&zz$0zUR1NQ|%QkuLY5(58w{@E8sR z>Vl@d%E;vcp>#t5ajQVL&Ep86Bag(pzltYp2a;p_$TxpNblF?xF^++OM{t%+QOujL zdLA$NCEAY#Posr05Bx97H@cui6bSUL}fo`>Mj8VILqujyArAKk8badz3!;dD&H-fZqfs^;wMvEV^~ABTU8< zA$^6?pZ>4yV~aRO26+0rZ75nIZ@IvXA#kSXf$ai>4F=qXnM>y&?{1`dA!y5*czzV`8E)}fyMnvNvn7kuZ+J@5v8)-95U`4Y+ZVv%= z9Vu{OHwnV>uN3dTdQgy=$vl`bt)}@9LNU#O zxJvX@aaBMtHs&rYt1KSJ5S5hqv?eGLybp$VB{-K!p2TU`DHk%?WoSKhG~Bnk))85p zL8;Au{t940_VMYYW{KK#*+$AjUAGMMY%#)FM8|zZd4G(!1cx#f{d=54cGp_A&x%%i zfA}BBukk;>igysZ;~@Ni)4Iw&Mp9mUKis!AdmS}})ACC%P2E8lmI`p`SkO8-KY^PE zV@QxkEr*bLzbz+^eWk6?_U|Al`$j~SA#N#f_EQ-CO_W?A_ai|ia*q*QLd=wW?<-Pc!*Cb>!0 zmfm<>Qy)A@bGhWVxZm(}Ue4X|trRymTB3z(Y!7wpr+Rh1eo-lNZsA%j@I4?u=Rcx9 zMryz;`k$@V8?lU-ajeI+`e%JQ!@CGF3^Vtc+EiN^Gam^p6^rx`1)$Z-tF zOXg2kk%arwjfS_an7<=a%^wcYp4=9Z(8LF?EKux26>Dejar6nsw6-Lx2wu&$UgwLWgT(fRx!}6QWfwSpId%6u|Mlf;lIX*x_6kEJAuTG_jvhM zpIU49f!&I=%P?Ux8x`@99LHUwF8%SpSB<*j2lD4}gxM5AX)6VQBXW}OjkN&6t$2J5 zuaAYCV(vE|%tVXnW8WaY8G0eZRs44BisM4^@Wt9RTI;-jhl@Xz+e3Gn_0k#7m^(*0bzd&jEMMmmy6NDBSY@;8IC1#D@4DyLT$Fc!u@$^_k;u!9pT${B57x zgp`u+hx4eq{dWR;8E=!d@d+)RUMUuBZ1eo1y@^H;G%p|xlxh6FQe(- z!@ByUzL$&C90Jhe3jN6u`r|m26_C!P`-j)Qd(m^JX*S0dgbIy9D&wF?sQ{!(8S|Mq zWaqhdn6A z58$ERF9_qVP{g!33B}`vo%JLWdb8<6Z)6ffZjFX>1nY)6(fHi!{0U}3~PwL#`?qM*TrV~p6)o!UYVT1{V0x z1vZX#^v??$!b&Vs_E6NRz#-;@=qXGvRsk%Wvp~oN8 z+4<-oFEu;1S;UgaT`I^D7(HQT%6TLBBDimp_pC;-Kn|c;dr@TnG>^9LUWz3%xV!!+HwtS${avx?@){B z!)O;`h6v>Ri{cwWRN$%+XY9_*&g9G5pOf?KvbJw?+m=Y)W3B!=m;(KfuEnQ}Z$Mi` zOP4yJloKb`6}qVkU=;W1m1C~iv?Xn~iuzZt!(r;J6l1p=fSL2FehLDxjSo+MQxp}w zt=qVjGp?_}9tr)YtW*+Y_Sr=RBMHLd+c$?Tp4~|fa-%aBXyp!3w5nQceKL>tST|ne zB&6T~bti&73pC}2-!uuwf@HUy10$Tqx$hl~!#WdlGFGq}bvrWnak&Mgy%6@;(q*>U z*OrHy217YY7BH21=Ik$@Qpd*5=xw(vTPfl*0QNmgiq7B{+9owl|4Tiy#UnVVxCwM) z6)eLqctLDFF|>jAe$g9tKn9xoiR6jCc(G?BetXtQ(Hoy`ZYfpJz#8WgC?P*sO8EL~ zDvDLU@RaejOxZnS=@}+1N`e0Pr*X9atr63Qe$S)WOojw5IXA128FCz-AnTL3_mruP zS%jl2N^KjHsjDW~S-kGY0CFfz;@ zm*hB4@Nj$S+284k8etM1_oqdck1h{RfYK;FTj`x8saR){57s0O-@0AMtcFa&4?@dy z8J8Oj_3vE}bmxeFD(h3JJe@Ldk#8Eu1Zb|&`aql3&Y78&Oaw)2arzMXLeWGsrYYYyO z*s9Q1jQ~P|($nI-w|56VDkY%}IfN~`YGz&)bK!?G6&s0uuJE%W zP1l8N5+e9yfL}^XUp^0;!zfEF3uKzAAM+N1BRbHjGE!NGZ0Sl8>Ds|@{)k-@;+%Vw zlZKN5CY`?_g>+ou=Xe^~tkBzVyJ>5lK2QR^$x~~;CtKQ5iuPuTCY@pBK!!n(EaY20H@HDp%Z-+DX9Me@=#CceMs1`oACdKK`{c5IX#H;01 zyP(E8>dC_WKA&IowP7dPn_4;Zqgoi>IztL4uR*7y{}y)R7q3)stIBhKR^9PKNqzxv z*OVDM>Qr6L(-$2svAj2v4*oIAz{BMAKCLcm?oF~`Vck9^hHIOW77*R%H2zOOH-}67 zM-{z#-R5c1?r7Z?KkU?zFcH3W_7pefLLW--*Nl(fGJ2~5{yu(nIPPxsEVxzN1m{Y# z_?}c;$H?c`us!~{j{p8)h%fW`XDo6GuD;-Is{$sdyTH#KU}NS3&l8`oD+L)-_fr)v zse*nF?8o~?3^Pu7v4`=3Zu_qdHeTQKI+{-5^fGE*3&n}Gp-jfr|cL_m9g)i?$ziP7++ivaTHS^ z&qJUgG1Mtp1xT&eKxY#e8&BG+J9YfCf^oKf%%cYTNAKJ0jP>>zc}UjN8v#4BMCsbc=HINg#ADN@KLuQo6ibYuvRW z7l4GG31#4@;e3{|2E>GmrPtS!-=wbM^}u=fo;Rk=NRB?SUX(Uzq+qUEAc9m=DDg_H0fc-xw>e|5X3(0>6dN zWL|`VAE;-frb5e`Bgacrg!(h1&x?3uhLCr^3xAxVeeuV>EKsp-^SUuaS6g3jEFMbO z&acK`iO2&Rb9l=dp%PLUasI$G2e$KWXi>N<4-m0eWsbjHK3kPtTS`3o4pmL{7sF?h zHZxwas=mLr;VG2J?`J0k7;5zsmb-U`0=4nv3_mIkZq1W741$(UdoqQ09XC&n2EbDc zVA#>i%EolfT}Qgyy!&hDI3wlM@t0e;4t7INpjFcLt7VBrdAzzI6wVkAPrLjuui-2P zGWX?#3xrU)4m@uF#fku94Z6wfT!lBZ(4@G-e^_D!PsVQJ@Ac?yHdG2DeZN?%+UYzf zZ0pwNicIoJmr@SP#BAA6)HiFNx8g~^f&i!o6N{R3E8gweqc6Ryy6$X6n4K9 znwipQRZI#W`(6A*tW-&-kHTKlTP5?J;7Jx9bl;`VBIj89HZNc=$qEZ^6R07eLad%z z?^2;TVZafgBurqge@6F1XCD9ZzMg9M8Y(yb>%%mc>bgJ-2!ztsS zl^UhOBQn@Xb2i1nBQLGd(w1LpAB>RM)U}l9Ocr`FzLFj}tKvSNIik?u-iJziySJ9ZBI6+0v6e;63c!$N^*y@U$^ket6_UCU(ycJFzI@pC?q~|1?RO!{puo2 zH*$0P3c5B7e`d$4$H)qAp8CK5yKJbWjrQpc*G3~!6gaNX|I*`*ygYq`k{EVQ&CHYd zUe<|Z{Z0C8#o}2Qlfi44HI{SbbNd|Jb>1K*^+)}vChukPQQSl>5?cLcha}G>GI@In zP|2ly!64$LgyQ58Z?0`P4aBdG=EnI30|6;{^7X9gR64h!eo7C{gHpqpn2h@21DK*Z zrB5F{&AST$X*cA`Q1!qMQ9RL1!VVp)LbqG3w^Y}r=L}a5%=Rz**}TUCbj}JpTDabi z8dXhnInMb^wAz2L;@BXzeVl0~ad?Ye^=Uc28jQUhKfojMA7UkYCJ6_nYIeIb8~&eN zCnx4bFJDZ;UBake$M!_jZ!*!LWX0?qv=y!|tY)b})}!|PJNInWAKVohO;3%6L_S=Z zIgfE#Uspb?+OV+#WO0B{O9E|-7Iw8xk&$2!kRtBsVC>P~Idg;(J?oWIZ9U^r$%?8@ zx7j3m=aEh=w4<+~j4NIIQZuo_h1H1o?OOYD^+&#*e;V=I^r@@uQ;9NQk+YW4QWzY*r^p|y+eewG<=h#U3NjyZ*ARWcIjGRSR18u7 zMUnO!C~-RA(*jOr^VUSSX(jWr#Pk=Ha#w&io`th4@^9Auipz~zTA15D-%Wc9$*EFC`uet zxNRChzPZvitETG8;~yR78@*i8(sFC&3?^tj_6@7w?yXqmlbhn8<|mDl6hrY|segbt z%?DJ1Y-ZG5KQ`+hJmW$SP7PCT<3>Je+!OtMWW)$ToCVW(8z~5EasQH;RtJEi96Z8< zpNhR&`kUfShfDHEeuAj8W@nbk{S)oVLj1IAS#wXQY~)8ze+>u()=%w$Josn)ff@&C z!g-#E+l7mY!Uq()+17DNxY0YD$aU;C@ZTvmN!&DU30F}R{7+J2r^XLPAN@&{|a zyYuywz)fs0qD`#$sJlMq)tWt5(l?aj*M&QypGiR1vFy)AL>^_xDnGGQ)vUAz+GBj- zN2z(4wF7wX7YKc3U*4#Q(N5@KGwi=O>hxTA#=*lT$+V3F`I=(>3&M1d+O?T3QT&qu z5t6@2C5?^lVS|-Mg(#I>B#v1}D;xwaT25`4`LkDPdkw9|v=)4^c<-nRw)?%Xvckd0 zzkJ$(Bi_p)-(k7&JkBJXq=G(efoxQt+7JYPX3Tb?Tl9Kpk|d0%;1-sm9m!Hvi# z`7~)G)S?IgPmnBP3hjj`^$-|Vxl-O0TU3AHt>m@I9h^&P-qLMb@PUx!3n_VYGZ^}bCeZXzsnVRTw6FVi|5RhIHvTH z%BTysJmx7#^S>p*xJyGS0A=p9v>ZWxscU1z5|Mqaia}CdE{!QqIlVU6gP1W2aTPT@ zgT1|5=gZb1TZ3E5Qd-MKhRzstu}z)wwdK%^*XGapyr5(ltZRM~v?^;dLP!8w) zG}T0>W#;GQ`mq+#$CS=bMC?c3KxVl0i=r)4DKNj~Yjnw?OiWuj$1YLj%uRfVs-Xv+ zwXSy1zozz8L05$}xb^I3j{kD^^ZmW{);Pez%cOryRV1-V>e)FkE^@@q;%PtqsO?Dg zN5CzjHiS!lgdB3(-ymbH{diJ&v{GS8q~b<*-gx?fc%_aCql3g=m6`iC${4wIw@i9G zX|-sScmgmjL>4^MC5AylXE3_+=-s#)ijSJVqEhI^TfPzFv@%d}rJT4Se%AYG=Cq+z ztb#PAcFRrDVy1RmOxuu$N|}N3NGq#*#yE<}i!4{6KB{fx)^N2g-9s9&*%OISjFCSk zxnx#$nyk z21e^oC!WwzrZ>b#vx#+m9ScxUw2m@Wi+t#}*aUgkvm zt-7w6zHxQ{M8}GjIu4kh9R;r;=kKM_ty>->FxGE;^QzyVLQe#aNJ7@io9H9draIcpIZ!eW?85 z-TEF=XyUhG6_f9qkK0$r{n@wikH7^?e-up&*DkVgh21w98Wq5|#sx+h+o--9u0~?L zp&ynyW?WqhYbo83_+1QoX z$oghR@+W;$nM7Tbd~4H}tG1i%wDtT$d^bi5>l-+@9{%0zxKD;2e+H5mU4xORR#fw; zVc|{oj%!RRGajg@$*$4qF5Z)8b41F5A4a2qT`?`2=Oj2O>0nB`zj9$K>R zTb@qiimUif5+Z!L6X&vk2yiwJ*FTDwa}W$8G~5$0u@OG5$nLKdQu5PB`W$)^pCk>& zVGppjZ^#p%n+%%yW+`<*ACs(yvqIfqE%1OX>^N~+R zu(bR?HNd!}x03HVTfF!Af~v^wP;$V;90b4`*W`+jjYOD$u~zU*5Rotw8$1beKXjc$ zDC!g*v|~<5i?h|k+DGQ_Q%pkTVpo^9XD zTv0>fFxu=j6kt$R6XPUB7};&KyCMj->^t?dXw+_75X-{ba(kH0H!8aRA}OCZ=bDXl z$FO=@w5yw2tL?TtSj0<0bokWU`3=y#0)X=T%A4x;jcw0D4cFz8LVJGT8bsmzuQ#5n zq=PQd$4W$!NJf<}3J7c=r_G6u)Bi%Go|k5mAz1rXrX4M=Dj`)nlU3V0jBe3#sU4P5 z>b^S<%}y!t_k)t_?h**GK1cT{U9qFujdP{R@!aTEm{+4IGetk z)l6xczT?W;*>nWhb2eg=6pLLv753e&;J)mgaq8}MA-GdPaeW1pC&~|qIy%p?x$@9O z+jiI4PC&J(|D($b6F#b=It+OG2LHrS!TeQ!oiD$546 z4)hc9b!y~B!C&XYNH=39RjOC@cTvUJXRd;gHeAUi#iW@kU&i|uok6d0p#DHM?WZa| zl};y>6k5`VOd(|beb5P_adE_7(>hL-bgZX)PAxHf8?_YV`A6Y^#3Q5$Q5O=TW`Av7 z-Ux}DvQ%-lqhwm+*gZS>TL?GzMjY5o{#^sZ#@-pdes>l%0lPIV{A8*s<>AbC@cU0* z9jG<-Pkl=Z>}rslABmb<;F(l zaSTsM%4NmmJZ%eQ1bL%! zV;#v(FZ1~x`S;)N$&W|{o_~x;8S!!}tPeCSf%Bmp4M^V4k(p<=zpN|L7Aj&+{B@`tiL=GR*OC2QuVQ$ zC$KHGu9aD$kk%&;IRph%ngkTEpL{Niz%mq8jD^!VL2a z4PmUpSpiV`lVy_B@BCCI&)T~E*5VMt)J-xs=v}u$XY?aVg%B(Txm6?{GWr0N}o10U6c^gS6 zqi{u0bI^C068QdKZzK^iQXkB_(rT9ayggNwj%WV%Gb{N1BtU$?v$>?Q=4oSzcbhsg0IH&_PZeyz!lb=KC6(z8%Ae`@i^Z6EBdc*F;EJDr@VSa zmzOY({d-wG_~7;A7gu!qoZ5+}*>Zr}LqwGWEYrcg8ZM+Z*e0`^CcCT+jJ?)O&0Td* zKCRHM^2sJZlZduH)rBATX7O)?LHuB#s0hGY2N8k(?IFk#_`L7SymrGZaAy{F^8HH@ z>8%iItR|rGnj%N(i@!L3I`E%$6lv7uPuV4nbF&D3G(8!4;7a0E;f&Q6I)kAGAVC!o zMEmsP1~wHxTHgA`5Y0eIg=qPiCDzDL4SkEo)Uc z-CWPw6o_3H961#+wk8<4O-!B&!?!bZ_TDlur`%Fyq6ogK5^17Ua3^ z85eTt5dHGl18jC>FPjRN%gb~xL|!e@VxQOtt4dxQoK~hzdBL;R=i0_ZGRXC*KU>HK zT6@zDdodIg-e!ewIwNCI;P-BY)DKPIs*UlAp#|n3#O~VPw3J8?obwN%r!Q(9KU+3)ef)Rz{=A-OkT)X;;ECqc0!I~9M z^Dn|QP*_NFzP2-YlzC`Bnc3A(U>R!u%V>2X21k0`XUlfT9k^q)(01>j(@?!1gKg9!ZrHUond?98Itr%R=9=_3I9g7xNcL zbYS=|h2B~-7mXF52_1?TST~!kkMnnlPMc`MWv_KaStV;-ChfKwae)v`?!c-a`416Z z&n0pkYQD=`T;)AEgi(LQ3mAh_eEdl^e#8>LF#DJPVi{ z?;n}$?$@{?_#@q>y z>fm(yk_*G|#`L1wg_Y};k~*xM`}<>SenB;^hr&by^*7j9>M-wp@r%?~gb+wAh2<>C zkb7StO#>#BF~T_ftZj|kbY0qLxRCmDqmh|NZ%1>t^at_&@xL-Llbc&A2yk!BoeqKH zU2|l7Pctmv_ftQ>kyoCa;Mmh>R;y3uN&%)HDqY$5A7xj%;s%S9c>>~`7UGA<7HlQw zB|c*e-KvK1eLggfbW!!Tqc#@3NZJ3^GGVYK3=6)b;R>ha^W4s-y}t+1O2XhfWf7g0 z5~6r@Xv2Kv+Emv@3C|?4hxvRoD!q#U#}yY6Noh+mL-L6oe^&h>KXc z=*g?w_tp-nPDzUbR7;$%WA3bv$s@g}N^cVYcrg>~?^$>vpiJr;T=Sdkw;QHqD5Aj9 z7W%!6>UZW1K{m4XKencgg{zQDy2zYX7~b$FLwC1M(QfPbEBTqKQq3a7SQU@DeS-~G zcx(d$PoL(8zvAw7VZyeg(@hHEgEsFx-)c{!PTV@8>N6Zna+2v&ajk6)%*Ub z8A6yW+si4KFINk<_)?yd%kGj_ksDjh5#oDaI1wQv#zHrId@e@C;V zz8d^x$S-1jv1f9i2aX5l#d0j#Lf+iDGKV+%mWOb97v#((Z(khAE`=s&TrO?IWht4u zbsKFQV7;Ig8XT`FD-t2-k5hc%uftoEUuRLJbnT=op-s19pE;I){rlNp zH92DW6BOLO*IZALsu~b{-oXMxY*#-2G?=2~ZE&=r=KXx)sI-T66o=gnzEIAeT3RM1 zu*7I=qzG4qbuudhm~2^K9Kpjl?fS+W#_8{LrShOq>4kc!Oln8J;NWae;B#$8c%KCB z$Rl6ap$BkuhA!9=ydj1ii3QSiT87|)mel;gkiS4p%oIvxDm0hnRAlYwR3F{Odu7^? z@+5RXP@3{3MW}jcsqTC=C;F7J#3v)NL?5vD*CILM^WX*R5XVl<*YqdqCHm) z&-xR_N|DDpO}GJ-gyq+WUzv5AP(j1;{z+;StBjyyNP9ar6(hfLYyW$n$DsNR{KU?u zIF7%#WHqq@+dKtt*CqYyOI!V@5z{6X;PtQyqU34x6xUTLx!{JX#4vi1z-Pr_Mj)O z5V(3~0cCOGrYlo2i@L@CK(ZhJ@8OK&!nd8sMr*)s1RNaOPPnT&{^X=2n*OV$|Bx>@ zz{B{~7ndh72&K>U=LjLv;|u|*z2E5`F>-7<3LA?TF*J1m=wU%Yd&QW9%_;P3`N0MLf zVDG=nI4uD2P!=89>@gAn)=?fyh18l7uF{mqT#|wjhi?vVEU8i6bDkfERH)HS+}f!AzFL~fTJKl{)QBT(z`yE6+QAT3Aj+sSy_o_0cHGeZV|v3lBSh5$BHa>5u8)&H9O8o8)^%Y4k!n<~xO}pCW1_ylIRfIa zG5@`m-Jthq(cWWI3Hq0LAf{?RAR?s^LmytIKkPZ7$oxD1Dqkt;?_e!j4~w|gag4yS zVSSboy>16l=7N$=i(u72<@A+x0Xaq1A@;kSHWb|n(d);&NBpkaUu=W(8-LMvl*&U| zq->NIPgC({9j6m|>I-b?Ys(R1NM@HN7+JA^O@h@6!9twl- zF&Xo}B8Fg3j*AOkI;vdX!>1&_-g9B#_|$esJ#gSl zM*74k|0b>Ih;RHHmg)GKwjBSKBII+Ete(%cCTi^&u_6|*Px*5m_i=tYgAY7Issc^t zvwa1iLK=DGgh;L=GT)fGl269_r7}}oHkRcpxB4Q*C0$g=mroq%GEKz29cNsP-K>oY zi?LPVih6~z#`sUVg=x0h4QgFoO1JLklSG> z>MXuAzKes3a#c+{Xggmg51SWYs(S4)5k~fKL~R6y!K1&($4}7 z>xd9~Y^b`DwLc08m>=|t8#!cg20n4~Sg^_m7`>Mow|8{>WN}b|kuAQe=bW4X;rq{E zW<%e)4s?ho+2fxV8aq)8Hv*Wn`lF6r$VzPhI{Z)MoeNZ*g*JH*UO;cM>MVd=pD4g0 z4z(JR+azPS`k=b|V1zdE_dw`fRB|kxY}QwH3ZeLn*$ahyv2p(QotjqE({Cm6vk6^} z({9ZsPX+%V0HOpp)bh za=u%XeP0Sw3bVp>&MY7RxFezF0%abw7BDy$&A>cdtma$!g!Yc?%)b*C`M5HA24EMzssiq-^b8;CsGN`) zMASDx8~P}T-Z(p7wK}w(xusgJd#=$89VJB3sQ&VKEvY&)CqmczyeF$ z(cecWRTYnuwnoJ1b?+=o3cUnbJ1o=q_@F2gzJB1Y6qreMi5_m8an|Cn1I-7Ji8lEg zCG>?Es&*R)>DJVa_m7I6p0*pyy_WCx(yIY4*#%*iN9_C$`8*hj;iG^q)3HTdV>+^i z5(S<9`kMJWUoZIw>+iBgc=9IySu_84lffT>9CH^0=4%yE0!^_$w7*l>V=8A^nxBj5-hF(* z^5Qej(I@>=Q~L4RE2;waH}#(UNRSS*`9Y5SGQj#4E=_G=vrwEAh^AcX8dPiVXUFAW z`e`>Q{+jCtzGHe;ceY(pBjI@QQ3aZh2-nhfSZ)l$_8QXm&0$)Q1^KaLxeln0RAHuK zyT_z4yj;a_7?o^-irc=2=DuD*;S4%RTO0W}RqJ|;WE(zf#N5T}6nssfK!GZ$7`HLS z6KOoEfbuX*lfM4N$PHA*YE7VO`YPTt(nQDjNsYe90uTL{Dok@~V3iZFlj>6MD4|qY z(*TKy$1GJmi=KEK&47ir;cE{Iu3{M=OvpHzgn1EuuDIj*oMfIGyS;wU0a2BPUz`Oq zm+b^LptbgP{BXTjxEDn?g^~9D4vnNN=`<>)w=^SFQwP&6*{%&Ob8g}Snh2g9pv8E8 zi{nE)i*kmyJJQ??~+RD**qvpD1pCJc9wSN|!}7AJOWmIhnT8BWDf- z8{<3vhcd6t42jyb>3QFGyu z{6x*KJWZ6Rd-!WMZxxeu201Y`TZ-(+U*^nV@U5DmZF?sMy4OqHdcD|O5!BY?uY2=W zF0I=~B5JEFn&qj`J9+!h9)jWr6K}cSBQBbEVkP4Y49_*#(`53D&gR1R#apbxfl2BRo@j73d{<3®fmS z(X1a@tCsSZAKGjY{G*`M3t!=@?|I8hLu<7t(r$UFIK>-pkyl4^9uG}N)PpWztx!{O zWeN-0KyX@PQP}`q!K{Oi9rL(#6Aw?*f5jS~#v#ALm@#tZcw12RFXnM-eHnJxZ+P+6 zo=W$67Yn${Vpd-*!V0b8oxu-AHOYqJPbMVBA5e6gXrEV=$0~gZ(*h=!=pfqS@mm*$ zwzJK;XKtYOai7w{*kO{{TtPt0#>t{rCFL)DL^S zS?IvMGBdxFD6W(*$a0;B*a-3d_x^y@{N2F3^R&DW!i~^%X}(3TU5{d~&45;FW^UC) zIzZhs7k3iD&0^H1BqB8dPm8k=&EGqH)CcEJulfX1AoZPbXELi4bI&A~jpW?4x3nnf z!Nf)oUd@cdmLg1CMDv@o+KV}*zQNN)Twd-yQd*i8FnyT`aTfJ_vq`K?)`j&qi*s=s z$Zzo*wPA(5TA{sT5^?Z=+4&ZyU@C8 zYfVM}_{*ySREWf*5Ir1xtXF69Zq$CemZ)J7%)E>WA9M?W?QI07z>SO=Q|(u`Qxm@F zcH(}T#84;NPLE!qlf4^kypFtd6%+Qe7i#lKj7Y=uwMh*Rh9Z23@?a$OApDUEgm z7g4;%FL#xcZ^HPUU&e9Q50;9(w>IAs$syqQjhyVduPf#?P%Kb((3q=SGI+7qM|SH& zuz3-`oWYRS0R&K0{@KS4R+lD!W1ffo#Dm!eV5qLT;Q8-7)c#QP?=_=7o^lZVbHmdm zajmTKl9{Y6Ey$dQ$c8S5UeE=JEq5S%be(Sx!1E&fgAoM9Ysfi9ONsID+Kca}weCZ! zA3(c+NY;+#_01Q3Pz=5~U$)CCF=-_2rg7`Y(Dh4z;& z{#e1!xQ{(fLKX5X0HB|Pclrw7hM4-Z3Wej(t+0l7kMKm0b{4`F6NTjM=nyOBDJHe* z2L9{!u>Id#8(rcOSgl?06TZbu$~QgWC%`ZboNMuZ=EV$WFE|`hXWSmV|A^Q7o5o?L z%&9Vj>ogyI5I)A8`7+js65Kp>Q1H2nr?HiN^M4@3r?l{bx7SkaALB0pN@H;RK@hDi zz;g#wg9gU)@eyD)8GWwo9V_`sA^`WbZxYK;UGZSaXLRc}Ds5)Q~E--)et5Q*moxUjd;;t@*);wVlWv<>e^(G;0= z({IpedbdyEd1zvgAjAum+IYW*otw8m+^G3l! z^#=M7s(>5n)<)nlhFJX(c__XTz#u$gu)SGwZK=*Wi@3Ty{SDp8`PITYfO0WGUB==3 z_hPEDX<@K_AdeLO)zcf%^2eQDS&p<^j-93|lA`UrPwRs5B4wQKunT{933}VlG~?eA zZ^ae9V-Ox7BqAraFm)3ww2YCRC(fdC?<&8a<~gNqKsodw5K@>U>;!-NCC{?c!D z%4^$toQQ3tD=5TMCu1&9SfG<@bwN$Q9lE5s8Vg5wJg}bJ=!*%$2irT74=6G|(~Mg9y= z=db!7hmtvb8TRtfiVGBQ_z>S}n663-V{<3GSZ#L+d}MbjqIc9vvcA*VbG!j z76P*LEWLoMRatbEaT26hb9Q;`xvr(7Jo@{Gn(aBFiM*1fk{c*++j8;f=xtMgi;o&< z7=OXq!=FFgxMDE*N05uXoWcdhSlpb{XmMQbacHRP#*;J+AkU$c*7d<6tfp z>WDZmi~_S#4vZ(+g@b0Fp zXs<7&OGAuyk9(i(L|`&kW?-)q`2e5!A10W7iCtB{O}j*C&sMmCi}^BezsMW9!J6#X z4ZQ2Kewu8o((q4}`4z5uAB*Iqs+VLg!>eI8pjyIkwC&3lD}dP6sec|LgcSLwYn4_Lg#g)+g`$9nq5?EHd!D!8Mf zhezYuJoqw3Rn*dT=0(TaL78yBAy_GJ!BMY9nhQMTFsK!KltUX8fbL`_%Y+|&CAT-K z>qOntB-SLU3wrw!QR$`3!747wRY}6Av7m3(k~JO`gm^78ENFl~K>BGVevD&laWXpL zUmqPa?n5)d=_uW{G~rBW9N<6vyXh?UXNqEz86Yyt-4JCmAylmyFME_zkN*k>G>8uWBruf zaga~^cpN>wv-eut%*6Z0f5^D+2jf)ls)?Q5ps5;5-vjfry&WN#8(1ZaLEr4^FdQ*I z;vn(WLKqSAQvDB&Jwzi0M=_LGj&rG#LMd=kMc!O`%U1|^B^21n8W_`J83I=xjVw#4 z@2bi9*ig;%hoaEFCM2`rlP?}@8+T;&2I+w2)`h^Y5cw}ZO8r8Z;e&!TD@F<4NVuCT z1If=g%ITjtSRuVSWF*^_pgE@lUm0bC?T(DYcdRI5Po46XJ+izhF^>99lb97;aiHMG|Sv&5;*9jm^`HW z8)SInJT78UHv!cgJIxz-)F22byN*jKUc?dqA4O*!2>1WT@zc%euIX;39aA$LPIsI( zW^%fjHqEp-r{?qxGc`Feos%;)H8JM<`~3d*2j@QVe!ZU0$0M*`O;d8hmQX&$8VB)A zVOdKATNxhlLMA(Zzg*;!c57g{OIyXfmj3hFi#r>)J8SwkwK#7nox`$+84fSH+D8-~ z#q%n}q-`*J8~pCJoyYgj`7RdRa&d4e`5&qHlP3MP-s#%KP1qVApLOHi9%95xK|?TV zqn=o>JEmItB=^y*zx3?9&HN8k;c%VJ`gD_!A24(y-*ya?@0B7a*}s|E1E=cOU_-uC z5gAMOGQ8ESlwrUQV$rUNOzX_wb46>;&-cWg@Nx6JbS>+~P|S_1VD(#Y6w4|4B^sdO zbLT-_;V6>duhv!NsyfCUB>Wvt$Rt*bwl;{VeCz>W${Zq0@}%Ko-JbM1v}tTKmTvsPa1;CQAc84Jv&@2_O~1-O4` zj0UBeRAq4e2YOD+(9Q}|-5T^q5jlHJDp3MEE%9^&}F$Xecsa~qk_{q zjW|yR(Wyi1-+ypa)0*-dOn;xUEzbd%lyQ1DS%NE zo?$e7eup0}f_3hMDWk;kA1u^AP!sQJsjo zp|dQf?YJutG}L+A<&3$H+rcLuAYW(9?RfE0h%l1AGz1O`)zoZVW^ceH3{~n_s*JYz zkT1_R1XFln{aS%PW_@VU`68dKm4m)CFQgI(R(0nX)m`*Q<}sST;Rg@x_>U)PW)Do} zyzbr_Xh=Qnft{;c$VPXI1+Tlm!__+&D!d7f6gF!W|2eobi;c(eqKUn+CJQ>x;qfHc zJ84+TXzy>M-eK+QSR=yJ<1!Za!tov^HqH#6k-5TOTL%ct)6Lqv50T%MUYc3C+J8qM zJZzd8v^laEuzsLM7@h^T8Uk-0g8$7w9toZ3>Ee0X+; z?rE(;r6+G6v1imspfxQN!LWK$CUuybc zwXRc>T_Gs(vLuQEVc;`-+*P&-x{iy6-*kMO4|=hg)D)Yw*cb6!U;3j@`$cao-uNr! z8;r0w3eiCr{sWD*o_sshJZlu4= zOLx)uI?~b8^-_0S-z*6;@ZG#;W2jxXUhNobmG!;(Bs^a#v^hR5Ff_a!JSw`DStS@kA{8&aU_xmnumGTrYketnj5YrEXHJdg*brQDuZ5?@5$E4=Em0S*6s(^Gy8*S# z%H-jiczkTx67`_YVm0f@dqHCZ?$fFW0bim7SxD$p!{_Ug#s=;Xo&&_VY%&0vixV;O z@NDq8eI_>9f0QS3qfv$3jj`Wt?wX}Tt~He1Id!_<>W-iw6R_8aU!yst;s$vH8s8NA zs(OklnW_9;ftr0Odakw&XPwx`x>gA!1$6fUIK3j$4>N0@a9iZ)C>7q4DN{!Czy8}o zG&xu{9WKyRvC6y`+^vPJaMwI)A{eZyl;jnl^N$*Sd}akD%UG#nrk%n0d)mvz_4e-? z!^0I}#WRGwZ`k~8ER$eNE@6xMDmprEV?EnfC{z`uoI@a=3U*BFPmtd2)u*XJoch`7 z44x}=i|aJoa(?PXMqk|mAX&+`T}=`%dXMIRXfvq}ON<&^McM;|CkY-jmWO(|68M5N z`APK&Sx<(a&U#E)PP&vh+ko7i5=Y!43p?)G;(|mC*WUS@(W6Xy0=jblkt)MCVOb+b zJ%D8l$9y6LF)Ral_I1YZL*`KsDm&G>w+`V0%&fBgerAZ$%|QD?E9C1qjz*0Pf`=;c zR|^=my4MvxPS~3EFGR&!2xmBeeUWeV$4CK`6kBk9yXl)mRTo$+sO?6!Qg z0L#GbY}G$BQold6XQq_wX+=%kXD;)=e*$Gyu1_?MG!jNY*XkF$yn@2RYtvACAoZ~@ zBvKYWG9lBf(cE7S#d}e|9N3uk)njszFow$a&_Oob#G0?RkHLb5hYS^}LOP<8R^HY- z#t_AzxTq|q29%AB7_Mj78&NuW2AeR>J^GGk*{;{?#QgCz2&H5~gihLLFsJdnp?h%W zvhStzajU@oq1@lJ5{Ld7S9JQdnN)`2yNTa zA0nmJ-5KS1Hx+7T$7J@8bZfMY%g6ujG5R9kJ@oele;4S&Ng9Ux)`JbE8jTVLk#Bpc z4_MfCeQiuEhJG)bDg-nQ2G=@&OOAUsXSG&NsDBYp7G#n&$V{b*|CjA%1}d3E4*w`C zB9hQ_^=*8P)2d_MRPMXdh@3uLd2fLx-vc-$JkvGtsGQO!XIyv9x(qjaVY3j+s+7wVKbEUtYofsM# zUsntt&)C-Np8*brG{AnrgqcWEev3#nYbm8Z_)EHgVp_84(DpSXK1=&2y_JGGcbU7} zga{;I98%O6`pRr;4gjxm4C>TrU*sj8R#h!)x}e|2!IEiC(GoOCMNK>j4e7ZNo+73L z6TV|sIpFNqHIFIz5Ik;0O^j8nw z-&Fu9CHHT+lyrozn%N7Us=#OZ$z*Q3QD?ueU>6u2=oqc}b!tDrq9F3RLoz<)H(cd+ zPbQ{zV8E25G5{Eg1n-VC=jfYtuVY`dzLS%t_QBS%0H*<5mVQ~RPk61Bh>m|aWfk=WVr{BQ|#r+Pimq=I7a1xUjvH@Nvz=>Jh_q;k?Pu@>|(&;!fuWxtB1*^J&@`X}O z<7*MiZ-R;qw3G~YEogJrP2{TC(0^^HB7WiDbpT97IUM82<7m#^dFj?%@?%bxa^7+#U zz}#Z^r>`>{DM8PCTA0rI$R#VK6wI$c_qFJy&MeTrUlbN$eDLd$>GOxP=#zh`i5-47 z8r;80nPf^)!=*6-4zvb?O3ZCa&mtA7j9JB}@ZvXVa~DZJwfb%x%E$&CZ58ST>^7Ii zUE4GYJwYnevus!Id65^1tqz>kZp#dJA+Z|BfGo2OpBt-K6Ev&|38WU6X7Q| z7{qVkj#PqcMwb!4E74iN@EY3xwWk)^;P(K;tmhku# zY1<%T(V)(-qS8uEdDN^*^fJI!GY)`EJhS?evwsGYm11cW?3u<}#s7c&0bwTu2#=$# zVuz*UaNW1kxRgwKs)IsJu^zmPB{OxKa<148l#)y72oFSbxdwdK4K98fjxTQsysZs? z1>Zr4Nn1bgDet;D1{+nU`@EMl?i=Elr3LB+kUG-a-7e&SgFHeO7?3nZxW6MlNplsx zUZCP^1wtfF%zJVc7tykhjs)Xp{DXGAE`;IMI1GPPW8OCqe7MdDr|IB>*rV1^C7%%Z z6jLoV09u`DG$FL|QJM> zT(GUbi5lh&25xfVq9-3iy1Hd)BNcN1)NEO(qAOwf8F(^Z84d;V2(KY9@2~3CDdLfn z|7w0f{WP$D@bewM_0xnZ8utQ?F9VJ%GUEEqAYLT$ z1xxZ`|MuH>jl{{cSYNBUEh7`G;>N~|jkA<)1w9g&9<6lFl@_)H0Z_U6fpzh*Uq)ag zA<&xt2aIV@5InMw8mDM%fHR0rvnIqgmSTo7!~|%0@X}?Qx(kG6pp`81ZCu8tn~WLX z%gb`e*U8rt##c~X&Ms;6Xlxb=N9-~@VX3Se)P#AXUK{aC_K^Rk<=rC?I*rtN>cmr+ z&ONq{rF53UxPRR6xsBeyPM!r?iIoj!JFKXE`BuJIfL1sSiS<4MkLzQMlYJ8x*4cA% zg=ze5-Y;7?F3KUi5V8m4cb-D>!$>+Zv=TT1TC$cyJSdlEA-D-=u==CY+)}1v@rF~T zl^3H2Hn8(PCybuR=5IWV#nX@P7S43Q%8ToF4JjNnZa<2&e%gH}tb%%a^GByhUbvWE z2)P%Qi)ct~L~4GdbMtJ>UKL2Cj%Jl5YT(Ho7fwAnFx+OnH6NyHAawhbgvM^W7T}pT zoQebGt6;&y0I+$=+>dm9G6Iea<9L-!=XIB~H%Irme1x}+hJLc2| z_=Zq_A134lR>qtcA(?UB^8>Xy&z7kVNC#Ku`l?wVU`!)l3|3B6dJoHRcP7UP>BN9! zqs8p0Vy?UJ%K%6s52N6#&emz&ToehZs5N0JzBJ?2+$}Ke}X2T-!j1ZbDw$|^DFjr6hq`?DCZ`O{7TEov?hAP zK<36Ka#a^t#<>fVI}IO9#7F7k8?3~TX^ZI`nkPFpys&E z!8I^h9@FCcd57MFgdHPm7K>zZ_`&Ck@jaiT3)s;w1KW~FwdR{=9{Y6|_ad|@tl+va zT-vS=4_m>ZcDU(ccO?@sgVQOte0T80fwTWWqn3l(>v-N|TWf^r`Hb!3OKhn)<-FAu z`G*a?iQEq3rSzY_8dtp$?xS-l5)M_JGv1FXaaA%l?ayd16%eOperhLN7Vg<~Hr`e- zUZq=MYs?&cTYh%W-@mDoO|>o+>TDk`uBmO)v>YqnWoLbNK}uL8zcn$on0aT65gFatZY6Jk7`s^Y}B9|*oH zxHGiSb_hZ6Xsi9k=lboLJ4P(+jauMZSsb&q=8q*z&X^W-{t06kohNux94Y4XG3eDg z4mY<}tG!d?%&c&ogp7QxL0*-_3iOGfFHPLFOfogDLZi*-xw|(z4ySCm2G!usvf!DH zt-rSO%36jNCK;D7C{mcP{(2%c=MU9RA@RP%vIH~Sv=`7UVa*Gbt2kKytux@*51is; z^Rz_Aip_UG=rFhS*lpTX_W9C~Q661)PzDPgl%8OqDr>GIzw}At2%l^3!+gf$OC+f! zS0j@%6r=Xu68|z0W#$rWx{aso1jcQ7+I}d3|I@$1on-Gn5CTqATE&+4h0M(YS1`0@ z-Dwi&o={e;xkl%@&pWT&|2Izksn6?>N(Fp{<7l_) zL4FtQcQgV*a{j26Phn8NuXLQ*p7bAx=idn1&!B!H$HzWzf4a}>ZZ~a}L|h+dobcBt ztC=L_S%z%mx<4+4&5}*-m5k6GLq!YU1JPG52(F_#UcdGG4m8N?g;yM1#6vA>0%2#L zJlm+tpxI&9xyE*ga2N5;KT}~o;%{b~g%XQjDZr|)A=-&bZ@bt{85;=6&Iy4F`bLve zVNupA(*j|4V}OGlbJ{~?^5cyq(ImW=`5EJ74sGEdL$j}1*6M`}r`=bDNg(;H!15*Q z&(G6x%H{Bm0l?TYmSpc)-Iq(}vqS|;52Uxa`u-uM1YVXBoqESJx_5c~D6;;0UaVXa z@xu+le;L|JJqziB;oM|lxjID}G!2*XW+>vjK+=r8fgBx$tUD-8&~fCC?M40vl~XG5 z1-p2BjEdEY6zd)ey%)=L?y}Y2u&yD`=DsYg zZ1Kt<{)58%^+%Pc{nIi?qzv^WOZm|iTF`yb4@?lzN~pJ3j~%<2i{Pry{X6Pv(zf{E zv)Qy$Ix-n2z;JwD-a7m-@;}hAG@2P``;&K$6|I$Zw)Nziy|;Fkel&;!t^_t>wmj(< zHnMQ+#JFdFj-xTvCK&r&2o%Me27i9$#4XnJFHFQKSe2_Y%3A&_9Qynr`{b{~fuuWC z@^AmQ-RdBg+3w=!lkf!sf3rm!9=ZkTr~adNC{Ak=f4d{Jj4~=0MzbF?vxT^Q=xYIh zBgYs6DpST^qvxiD2{PJDld2eV_j0~H*0sC>eLu~e! zqwSzVw>uT?@hMXVWQiAg=k&cvGxg}`AH#ppcET`Y{26K&>HQumAFaa3`zIqmHA#`F zrQ?9*^=wEK19#h`(+>o)+g@!DU3!^1l49px>-}ftPAhl{&U`hUL(Owg2ZoQ^_@w-G zn^Y)sqB)JuoHBT7jO2ur=D^SAO^aoZBj5a{*ZGtiQAicomLp2ndqDHk!yZ515m;X* zU+Dh)j?X^JuE#^nKqBgUTKl<`&wwf#OKR|m(yQoEnR$2ApDffHeRz!&Ly<`B7J&je z@uICDJuvH-)g;XDkwV9G79qbggWW_+&~c!sxU5xvT@hbN8*j?5H3>TMS@LCDJDrhj z95X?=$hvQ#^Nj1xQv0p+1vcrpT01!V*4<(k=We1gM|$_ZCM?V!%fx_gK{9bP@=yjXJR-ZH2A>=As@!9HueDPlT20re&D?{%mTMKLwEe{09Tg3F`u)H_{8>_I4gsFYlq6VcLm9?Vu)EM-^*R|bulqP6Va#4S!DJ@2 zD51qw2}QrKy)L5+hXO)WH@5nY@bS61uGe9?T2%!=j$M+2#fn2ELnLl-gy$CK)8~7- zK;mySo>+u44gI=}^O)?Av6Obex8`1Hl>4f5rM!$$Ubw^z00Lz=;qRw9Mpea#pp`B@ zF*w7UfU?SpIC=8;I}$_XICY#Yg&IE>ez+Ce2XjxK(aw~9x@^3^jaQMlfjNBDEqXaZ zWV~y!e)|rQ7&ytv7iys=bOyt@-w-FRBiS%EFG`)bck0q4b*Q!XRu4$C82Q&~O#gxU zu|gqfeo&t;q`*DygZ+;U@%&Fr@y{;y`LJ|p3gS7?(}8QA=~V~GDUo%pqRUVn5;1x; zW0S9f73HKav96&cU(Z@yc>Dn-GR_m`fwUv3sJ%6Fw=Q6e=!)qd@f|;BSMuthK{Cs7 zu1STy;Iq^RmrvnUjsxFctA43UA8)cG4-CCf?SqK9_E&H1sIMjskm`!G3iA%- z&r?TQN8ij?OJP9Co&7JPtRIwVN6hxgzkO}ZC7!A;OLe#?tJCLudDyukgs!Jxaw!4( z|3d~x_;?^0-Hv0VK#=Gq8x|qlEN#?H7Aba<3>|Jj+YQj!vZ*RTb_l^xsem-FZF&;E znJ`3+%giA#GE}+FCnT-mEfUh@UKr49u|Jh>6VA$9fwB~6uzKTdtQpo{f9K9hl#qnL z*z*ZTnr<_d3S8Rw+Sq0#vyI;Qvmpmyeip0~jO!r>8T_OxN~X~n1Qc8$oi1BAG0PfV zehwJn$dN8(c;*=Dd4F3ZiiH+jC`Jm%cI4V(q{;u#b(Z#Uw z#bQyJtangbrB|7=4aC^og-!Y}GZnKIsQfV{|EsZdWOa35WeE)?bwRHY1GwRyc*+$nVa~G_a8Dgx1IplnRg+9rXOx#1NbXo zvz-bMXdJRJ_7Mm@GUW-%#JL4@rhbg3!32JjpxZS=ZK@sNo*Xc-n1}je%v;bl_+O6m z$K6u2A;J8|nu@C+8@k3CHW|tK9u~@IJ{I>Vn{uo_O0ep}8IOk6h_4}y0Z1n6$0YA6 zPPh5l>*m&Fh+=PTX%Ni(e3GxHYYeM+Q!F+_>KxySJ_1E6v=^p|Cox9V>77uhchA-M zXp6*3#coh4bFBm@?_Jnd9VqNpF?eZpxx3H3h%)1#(EzPToRfxvCQAvOyIIbU#wJ-Q z3Z^<^XOuR#30r}GmndjYpaV03^CO$}>xy(SH_xU(vV`55n{b4&6DZMj7mQb zP4LSmQ|>Dk=l;}ksyjwJz)u1Wh3}Zz9Ht5>Ie!P9K%a~6iVy1)Wm}s9u@bl6vDgzY z+VF+;n%4BwJ1co|IV+{&ZTSq;X%I@A%8rq!v_DvswDP* zrHC@-1QU4fy~GXS8?WM5(r1i&b7^>S;VV;sMNAnrSX(CUR z5Yd)gEg248NB?=>t$^5Z&v_tY+&M<6|5YegxZU6gI%Z)9x;^7hx-iHucU->QAC=n0 zo@y)FD89f?Cn1C;;4%FxQo0iqd#-@$A3v~B_9~WPWV4{f_ z!Z3GR6*us9d7fPQAMGCP2Zi%)%}4hpO6I!9Sn&$HUN(;p=pQYJB!feUPg)eSNkXUY zvupcq(HA<}xf@4Q+nv47L%Za+40g6V?)WA12YEp07kI9xUDq=hZaH`hpzpZ4>$AG( z=VxaRMz}(gfM0%E?J3dICMbJDh;DYcVT-O`<{Rh3gb37IAS=$g$K0BBKoGJro!in* zMW$=8!3HOYFBK82?54dhdxO_)&Lq}S%x|R#%u+)wdxP0z-CSF_>Q_}!%b`Fwh=_D* zS?3@#*c;iB=R{udLm5tg1v~wn54pqV@J;*WICfDBqC42qT7~20zYj1EZ-86>pDZfH zOpPha23uA3XByu>D?@~ETx4IV{CNQvi;bm})qW%&PK-LNkKmWi&RwJ-22? zD2_Y!r2e=y7WP_1Pjf(fwdzxHB1TQ`X^p-#)$W6=-ZWb2ldIDR2RC6fR{l*g_jlp$ zVTzy#%DxM)`(`_@T1R5iO#UW_>B)uz=}{hGx|F4eE6EE-f3w4^a#Gua)~{y`GLrVY zJ3hj0SMZ5SMP8sEt%KYyeU5Hy#yqI;qT^D%7All1Pl3|vLuIpVw*L`lNhM}{9=PfpEOJC0NqmR zhn(<<@3ztdmr)R1S-t&pK0>8-++Colr|ykPQL(IuF&b)26&=g7RvxlR+O2;O3@~^# z#WE^j^BhGO%i4NtxP9*S*SmUfgS-hVS3>)}K)@PMuisv~nnIY-d?zl^49cTeL+a z2btyQBG-!R&L|>MD_%<`CLm&3NY#p1jko$)cg9T6M_QRPy-EC*#97Hd z?l%u@TdYhN;%e)^*n;lxO9?BsE@&+sx8qMiyIW086pzuf{=UJ8%|*{$6hRAuA1eSR zwv6-sS|H_$iz+EBIO zI-C6JASyFyd7e0;l}s`W;A>oxx_Ud$KW_+xL^tp(5>ha?o+2QsYvchl4#dl*^t8Z3 zn|_mDTco?%&`v<79Y$4RSsk;>?Lw>i_%;#vh+Wf?NJLQ6MSdz(zMuvgnJ3;TJgQz| zaZ$Ih8GL04#kVvh4x0YNFPG;f7nw2$hH>7;Mx66^-C8Wg5%jF;P6v1X>={n}=5)}* z@?>z=N<>D1|Es3|W?WyuCCP99QZj9+&fNJo2UU(V#^2_*0MM~$RZ5zU4OGdD&g3gY zWls!6%8}>~BTpeI?){tnmeB;(c}oosFTBfjY-u6bj_Baf&VY@> z4sUo7Yy7Q&Ir|@aqEglbU6?%V*18dN^*kmTKPGsL{8BI9;Myil89#J^p6FXzR%x8y zkHy_4)KJD#-tPzBkLKMqj=Ow3ZgDrp%fOFsrOAFlwb|rvRHzcPc9`>D+?E~ybZ@D02~q7!--f+alr#C zp3$P|Tjn?w-h>14Uj8gLHJ)X;B4icHaP6P_V_A>WQ4U%912Zb-^$ioED*1_nf+bV_ zAH-x@YtN-E4`W8RndZ|hgatYh$t))}Xa%=Scu5wUzMLzG@I5h2_5Oc^)7IbM4~t{Y zA{mwPm6ms+75YRSdUjH=x2=4wmDqkrhC6$75M)D}7f(D9_hYN$jxT{s;BeM1*iq#g z;>g8*R?ZQY>)u$X_W3$S?{keh}sqoRLwZDl~7o^1fIX@P%v72uG z%v6Qt+h+B16>+~^Ce_HUI?seR)-@91S$=e*0`gMK*^o56JRo4& zpmxiv3uuV9|En|LyA;KELfGjXz6>pxIg!?APY5mZrwq%syCKZNaJWYV296P7k*=x1qENnwzo_;UKgNs(uGdJc6ur!z`9@_fB)8`RD!X&8;d1R);PoE-b)!@?cB%>HOjw zowg|Cclh2GZFO_pM!K;6L&ccfR9atr0E0D@_?=L&InGc*MVVT(tb2vv>77Z2mq;AG z!XhCTW0kzG4mbnS$+vJB{v|N>YKxX5b~qZFL*c`5Ia}L z8c-UkR9fLkmb&K}*J1bh?OBFFdNNNGr3hzmK?2-7%$bU~4OS=GBqz*}SOyyA>{J~G z@dUFR5uvc-NX{2nr-;c9gp;v#Nnz7Qfv@Q1L5wt~m5Q4a2z&3pWs}gy#-q_~0mR%a zU!VW6^mR%T9#g2ZZ^{Cf>T%4rxH+T$2kdP2a#j?(UAk!MwTXe6wPu#TQDG-Uyk4An zdWq~A@nISZGX#!wlgf4Wqd1or&h|O1!znQhX9Z!LOI};oRyl%U?i##XcNn9z)@omO z*=raAVYqo6{tWtmF8%|}6Lp*@9j+aad>BhrNl696tH)1s!w&~~RtfQYzWTvLFl+Al zao8R>PY4GfVb4&g9*01>_XL+qi7cf+QIoGN; zvN!yz@}>8Xh{T8GUYN;7QIeQ~-80h?Hrj5wkTZPt^CN5)!_sdQN zfVX6LmkX|7Shi(5lBAxT4)M&)y%GxfDVU8=WrWoEX~LK1PQ= zp<@-=KLmfN;6BW^uNku>3}v%@6pbcGDZn|dmjaYu-;dEmW(a`h%th8sh9x7rx~(AKq%iek?A^6~JP&9|lfD29!5IP*8j7mTO1 zB!Qu2%Gp0U{E1{+pMO3Nd$$$xz8u@-={y~+k_n!_{k3LhrEE=}9Td!qCLf>3-5l3bylX{XLlpJzY;F3YxpJM(5w0aQvV%sRDNV;uOw zTDH8T<0|?j6+2;q1!Fs4@HQ6~Ex{PQKJAKW_nIP>g3(ep*OGkF6!V0aEr!EUz(=i> zXl#;4^xD~YRdv-GlhLGmjeSl7;1%zA$8)|!xq#r9Wfm;q<~9~l0qbx0BhTfRgO|r- z17yh$(=>D{#XalDG>Ov8@RZ?)*rLKfl%?>m@R~4Rb(~SvGF|hDk5vp^N@ct!7&?!G1m#OjqHbemM1n<%y-Az?G@H}NwbC2%w{5+$bE^wS#mb9NY z;C#T&oK1CSIfg}_0&|bE}B++5Y{P zy>MfOQOVWLbI^;Pz7~$c5vbP#@?jLBT5CZk!(t?2YA1g zU3X3q1(HeMB{A_k1uI>0w)>XQv3flIVJ*#CG7|Za!V&g|O7$PxG{|r3i!(|NGK}^? zLD|NTW=|S){ngK3L`|4YB4CR^)ZQ&St3KQ;3`t)mvEteK`_+1of=rVAUPBG)#>g@u z$(-?*$Cx9(ufzKM04{{l>-2*-%h(Pfg+hDJHRQ+naZm+*l8poqQ>^qa?}fsYceYqW61mf|NM(>*g2JXE5`X+IS`!cDjBAEx{V64)c0sA)3hz@ zOv%_MvLGn9#eVLR(A)p#&TZuX?bL)L35nZ;SeQgj1n()(sp_LT34g3P2VZQNc^R~s zME*gJ@CqJRO7;JV204?vLZ?YF3kxrtslC-V8bMsY>~75z2-{6ft$GY)tjP$={sWQZ ziPtvSVx%f}1xD%Ksh;1yNo>eNG0JmL#dktxsFhd5EeUOzXN_j?lz0dWhpk_2F(8`8 zOp%g+@K_AWoiT4ktG=lD;B;jZPD@i3+Qw2hjqi~yNG?}X@nlPtNi1xBm=NRkKq1ry zFW1d~XoLfPr7OGz+@oo3Yl+Fb^jH&J>*n9^ZW~!A+F(ao{c}47L?pSYw?67W5KBh- zb?ojB&TNpo^ZIeK@sr9s|1Q^HNPq}$?o$S(Bf-@s?G(D`nmj$%p{;#y6bAapmZYsn z*o#NqtOYL*Fyb(K1JKXzDF7<}L6BK}|FH))2LbuTO`H3a{mXMFwm6hCDLT(d$+(OC z1KkwKRzIY`%}B#V0##Awj2Czws!Bx9X_K2#tP)W+MC~(-R(#5#oND4?H|-fUzXJo*uHy`G43oJw$(-y(h*Wg2 z0PKa)8zU@Z?{%PQHK1#3_Er5}S` zU-1`$WR=rW(#i=XIKf4fV~agZkRj9auu?x~xD1UsxrcR)aQB%|XbMna`}^C8`ww;2 zx8IXanI*_HCAL0#=EeLkIo|<~cHPQ&0lMC_W&rcqnj1ASmsbPgep*i zwD#iDkw3=H`|m6V)+dwVyKEKTllwF8Dw>*8Pb(t@p{kOuD6&p{)BfruHu;w%*)C$9 zT&?VL5-nxf-*p=v8fY+*0pbLzB~Pv__F}i;ZQRYet=OxeYe;E@*kV>UnlBsUA17{B0^WsZt>!uNF|*Zus>A(uHeNP_uKyo}$`;dL?D zpcnA^dIbz*YK<75=sMV)H0rX#_m?bW&u3qP-t=j{m=icl%B95hl&PROmfI858d5HA zae%$gGE9Er%7S1{1+q6FP3bf(n$3p!0lg+vYW}L!%L(e}JBO=kuZ^AJI`A~XL_E?Uazdqan#dEWJT@h>4#5>kp zydfUB^Mo)@WEx3Y=}3sV-w$>h3GF}?SJy`mlAWkrf4Ef%ldZk9j-CP2F?ZGf2bw5F z6Jk36&{~mXdQ~^9t**O@k&9#IR>%wM8z{x|sa>0JgGNSik?<7Z&`#=(3uATBt>39wng&@m;8s0&4y3DUYH`Vj~UJiUdq|U>q zb)w!+yHr{IgllhacryTquHO@Bu=3h{$o zpzHnY0iX93Swb&)@jy@ifDytXCQ~uPaIjC}rH7!-y9M!ji67T$;=ycY%n>jFko<#% zXXTsZJTz@kU_VYG7R@>lw>W@kA!%1Sp!0fNAsd0F&?TK(rSf+0j;!EN957dHEZPe>#C+!bJ9qFpE9l(9JI^JyvqJs63lhP| zc?plxav$^mKvh&=qIjWoR>+NtGxIr}p;84ojWNxwEnLu|U@Us!G*XQ<-j9nQ{^M?* zGFiW9IzlMh;KQ5$Ls@tR33@O6#l5c~YMmFrY%5LLBoija@y}pyKWth}+)Noxw$$*6 zfXDycey?xju_wz2NdwKge(J@^vfCk$@1nqnmnF0XDZ@3bGhWPl_G3hSyXP2hY1@+k z{5$x|2`nR^mZ8R6dcP<;I!iw`j9#KL!)x09vcaqUN=Lpw8zZ>-d(+L+id#CXNGsWh zwJ0pL*wo}e*zjk#to%+E$dR5tq|Ud0?YPQ(2ON3f*-v;H4pv(&ytpld;C?6ubSctg z%dd7!aJYUkJTXn@4M8fJT0F(AO*JVlHU=x^eJCZ=3xoxE$L)v1bc3n8X5RbLyMmX_d4@w-3%GGl*o=g~Jv5n|Q;!nV#pj|QB59iZ&A}h3Ns@Dms!cOh_nbrcy4u1^J z=i_SA+o&~uEjEex(`Z?4VLZ6vS>2S-oUqpf8_iG&JKML8WZoZZ z#JVfFMa+F#(*`YLkrg1lP809G#;Y_Ngkkc1M{f=PXnvzcv`N_FIML^l)tW_21C4z@ z5C46(!O0q5u|jLpXXQ?Mv>hYf(@Q%D4sG*=Iu7~pS0IsCTN6#}fws@j6 zO9XgBZO^s$X#bq}i>*-_K?U(vXd}3I9IElzJk6Bm)PXvSMkGYz$vw#c^}B zB5Iwf|3Gfqp1n}`($Y(sC{N3fvP(=rVI%OO@AI!%@)M@yDp)vpswZpb`aKFU4s3W` zRf;dfYg30(5RC-Ct}iF=pt?&BVF^2eEXv+`w4MtOAk{fc_q0Lso&OzT5P`LyA#&MKs!x@ zV5=5;{dEyXa%S7K^S=I56znyYQ-OH@FW9^Nz%hLKdgbgDU=pYH)wN&pLD(;rGQ(8b zWu3Sb)#Ap z&LcM!^1v1G+S>KWYlAN|dwf&tIG;+5iT3Xx;ifqieV|$K8%V}~phAA@uQ{vWN`Wxo z4x@4bZyWQ zBIe%^MM(I$TR{ArCxdl4Bc4l$Xjd7tWObcC^^%Mp>)LqrjdDh|LVTU+c`cFSAlM1B z^YSoSI4P~|6_Vq^l*czSEshJ&{E9o4pPX$oCyE*$Unk48)$PFCq-99Y^~3Z zk=nwWe`(Ywbgpy`pk}}yUU&8%59j~MF?)2a*dbog^lKg@G=V9|175?W3dpTg( zE~NWym7|yVzKnjvF{s(bmRbw&8z$OR^ob=xPdTyu~q-$wWyRU-KXQ_PjcchIny_D5!XiUH3$1YyyM|{CSsWb z8rA7@z06g;DxNpOsy>zUb?fZWfnY}TrHp5zf`5-xdT?=8hpcYE z_W98^&Fj5BD>Op3&bKw`umgxX9?LcsE72BOi1$dI4LxDpI!)Eu8`xqXAh!J@yfZO< z?`w|vB5}MS%8l{~%*!x7FWHz4B#}I_(<2JYrbI=>Sf8hR{0Jw%li6 zbgr-!Gc|_B&=IxIDLP<9aSQ?J0HRs`i>*cRlT75z9FD3RB}v8kIpV^^bF9TNpKJI1 z;`CWB=R*$tSFX!Xs9yt3BM{7y@e@p7rf^*MuiSUb_-7e;(etA?5c9p@yb4-9u6u z>E37rBxH2Mq)S@5yJHH9qoix}2$g1lfG`jdkrV-u4ne-p=lA>poU_Ar&VAqS_jSEq zH*mnm_SFWh@ZC1w2rH6~s+soPCkhLKaDe(lpyBE?(AA`IX_go<^{e@j0K`B29TkKx z7t>VDX}k0ILcio$6a)D>Rq0I9&yAD1+HhM{WHWN0vi`#tQ8(|vr_(Vntz^)kUyT9r}MZm0Hp#??Eo zm~3)W{zs&A`-;6NZ*k8W7* z5bJ$CkbT-;Y^0?;3gm`4(K8daf0{8G6+Hyq7PPl@tPg6H;h`J2yh_b@u)PgL+)?%8 z{m(3y){Lw96Jjp1rJ`=C4I-tSt#OI}s1=rjkqWiKI$Z}TsWm@h@!*Jx&=r?VA!UUa zp}naOWa55=ZFYFD4Y8fz9|1;`6_;|_jmw>zm`}Hj3803(%!g;vihwPiv|>Go?sSsy z0nGR;h!)GxV`Y#v5Q+^`bnRWoTqy!bETJHwb=xV-W+Q5d4uigwzI z%eDKwMqouCNXx0%3e3SL1ST=fr!@B8I(FEsdUO^ZWw9_E#l$I2Sn}%wH*3*m2-cv% zj#FJdGpk`7g@8L!xALrN8?b%z2>jLyEV^{4fXv;xPY^gPwZsC>P{^ zsZ`mP+wj}f)at%oX=N-eAc*{nD?`^&+U|Bbl{DxThHC<{Dk>`tF_Pl#TGlQ_YO^Q^ zGC-o;xBTguhN2l5>bRMA44!Kldn8QC{^gsFXqcJPe>;VAq$*Dg5xl$7B6;P-^NHJv zt!|RqsdmNfvw3Xl-aBJsOP8Q%J)Zq669tjjAzmJ$ekV2D*4d^)YEA=_VIy9CmH8Xw zs}a7&$%#`7gq9|`GegV_y&0XKrIwLq;o&TXdjL&I!sHaHb(!yl#=sD65t$F! z@9VP`j(NDzwi4O3WHu|}VFdUt2WT3uU`v*0PaQLQ_1I`d<>#=?xp)Vs8B>Iq*|!U* z|2-<6$$&ZIWWUGR@^wR4;!^jK6}P#W@kKju#42Sp+funtU@fzF|{!<4^Ke zNZLC0^Oj=Lc*f|dC1PkibME+^IKR+))cwu(@o`h)u+B*V?KO3DcZrm zThg@OsltZ_MI?ep7jdxquuT|!!D+@y(1!o(cujFQyO5+_6~|%b_p*o8zS%O6Hp!yB z6Lvfk22)vk>+4|SXmF^;!GcjL@>Ocl98Ik}`sQ+AsG@>mUh=%kdP^gim--Lc$9wD8 z^lBnbWVG8n-PGEy`T}q0_~sxkAIH1TL$WgwJBP%(NK$w~4%~&=uV= zrTUXM>3A!N86smD7MvKnwhCfGnXZZPaCN1ccYCyMEE)m>Yb7#R|=_{9^Ug+kf zqyBoPPjlDcM0IOgan}nc_~kp0GoHfzCtRHgU|#L-Sdq zYcGfj`m1wRNhQP|h@vSXZQjrGi=&7owCmW6TyaM%KkeC)R2`-GvndH3`OM~%fZc*9 z<Z4A;i+K7MQ=42AEz4vPxijVt+~%)s3! zeOt?*g!rGH(yHae{R^xH5j0a%QjuY+RmeeU(zjyb9)l+T*a}dFn`nn&u6RVz9-`uC zVr$WgDoJyhkHz5 z&nhWrU;W>Ha8iP`D7ty0(zx7zF2un0F#b+;ph&>$qp6DD43{LD=p2r>vjGOmRp1|) zzVXyhgxU~fDcbCr1azkekF%>3yr47sHW>U$c|)NW0?9uK!YL@Vf+#R{?VmmmUeOj= zK;byD$`JT(zG}T^3Ty4+2-wU#2y$!5cAxlpqXQfD;N=Sbnr|b1ZcB?G+?ScPywLd- z^R;76x_+)_-l9Y#K-LbPoV?%)uto*N?%i23o8wxjipKH@*26Ie&;aq}a3Rcb{AZpXl0}Y1`Il z%<6tsdd{m)wL3?)p^)p4?0s(*@rJE@eTk5Ng7mRhJE-~o?0sVo{F?z($F81~3vuRo zbgfS9_x;{|*`eeYRv=S{;$Lbbm8Qo&K3Grt4F)n9;MR-c z8+6#Kq|nIp%p}a?1}WS)xZaUOsK1FjjPFp82*GH5zcPIxq03F+kg)kI}yEp7{*g=M3&2h}6x_Tpol<#~&jRg=f@BTzd?kL#>U^gGB zLzzoqFuJ3?6aJp`X-v=%kDq_TG{I{h{|@pvHioHTM2&d1{(zMC3LN_`AXz0n@R{5S zdtR>8jFp=>8mv$KgU)4=xHYTWC|&IDVa>>c5U6BU0R{QXDVGwpm>@I0BhWG&8i!|u zrZek%W32rAFy0c#Lg<6$8_*iVzbDo10*FB#f16}so68+Lu4i;n#r-2W#cveAx?I5C zpR=zaJc~se@Q=HDrbV6_6B2bed1S*|grvxSPvS>}LjdhkA|6fs9N&-JC8J3e=*|f{ z_n9duB8#bHG)gFw7M@R{|IDCuU|5K*RLpTzuOTEb;wydO0%Tl&30?xnM5o+_h0cNX2ZW*gW zu`=X-jDiA%vC{IvP;frL0aqW*#B-+SqD<;TzGuAefgFkZPUsGEP`6(Z1L^ZguKh#r zhCvWzV)BQx5D44AZMlrD_-$_IYDqFBStukw#(&s}y<=-91G(_PZoa91K^DqA=w&U| zC|3lueljWI0M_vPAjh^bJLO#uE@?$@X0SFy7m zC~2Pt0eL_{C4h`-FdCkIOeB`}YcJmw zm^G@ry5HlHlm)HB!LQwG#o((K+%6Xo|5Lz=B>fzX`-E^V&ppF8zHRNe=0~E>SRMZO zKrTFCP?F^0uwyIq(kko<3UTrca0R9LV(uVp_rHwNTGojlk)L)50~PKin$&JRSX!*( zS7Z2;_rImqm|OJ;2I<$GORok!aLJb%;774et9npKO0n#2=J~xH4#g~G zO0+Jon_Py_&f)Ja+T{bZGsn#ap@YXxu%I)el6v94SD!2Mh%cm~V(98R#6FrPIe1Zb{#NinRfTd(bn4;p`~N_NR?pwH+$$fV zE!E%}%w@dD{SlHp|i|BCN$yYX_Q#bTkznTBr={Hyo{8fHX+p|ZPtdZH<7PrZ_rth5)~ztfnHuD%TRiPi1efD#2n z4ZS}pNYvK$K{d0HBm3#D%vQb6v~)s4xHRR)GV9K0-Yj}K940)VByD0YvbIKeGd`vB zwSpuMb7EK%Y~9;NHWwgM_sIWsII9dpwgN!Z-#YEpZI9~e>yf2aMjsj&k#s>^pCy9& z4hnS|K7PJXh!Mv|f&K%1I+*;icRIgYOO^g(d-# zIa>6a5f2l53Ht(p%jpY2@}0Ap@UTJNB}*J5zMnD*MRgdZ|A}jSwHwlE^N)5Qmiq{K zn-PI)?Q^YqL77}4bbS_^*c~VRfG?HdI8S;OQHGXK*R`);KpWa2*V&3CCxVb#Z0b)Opc z0+he26HU)qj5l)0hCpA25V%fWSzov!{+BcL3-;Jf3_-UT6U#wx+nfhGaf>|-oFcPX zu9Geu?Bgl$G>(vS&q{&F4W(J<--ZJgEaX|{k2=hkL{+aBj}dn$ob~!~#uh$R&oXf| z)|f;E{=cfr_*tHz$gm>v=cfF4hIs;QkFro@H`X{ISrhcyDu`VQ3oEd_t8v#B?%6OU z1LkW&8w+lO6NC1_5WASss|?YYO!AcNjGbv?_zC*A5jkkuK`OCIG8s6P)I`lZpEvJH zx|<|y%A&EK@K(}awXLwaW)Z_WJPwPoy}|*-(+@R8Ww|t4Z-qwInRJK$6=>UZmOCE* zk`-{bv&_RQtfO%0sDJs>h_bZTnm&VhuY*F73+5&}T`l<*d~s9$46QsQCOha!h>* zQ&7cp8h|U1D@-QC&u3>w3nrus9b_huqU}vEC{ghNACSs2FgAR2pxs_S(r`jQB2oEH zCC?a5gL>oyVM3TKm?!zh<&OrPo@OmrzwSS@V+tG&i_?DjrMMgIrNI9U=#E-Zac`pF`ignS{g!CpVrDbrT;wd7ZAi$Lj7eAi^~YmtaL zCtxhTkQvbe+T;L=6V2&uE~_=C)sS3ir55fJ0{4L7J1w)*oza@95$|B(`M9+|QcMAF%Jh7}rjn5%{xZ65 z7@44Y@I+Qnk-JHM$MwQ|!pG|<_4GQIWi7mI=0(4Lc;J5jN@38pd%zN7ZRMwMkyE=n z<^6p*o=8<@E|I;BV9+C^Cfq|u+h*QjO89r-1ym{(c0X5;o!$oabEWy_Gs*RbG_T=k zVtgS8XLlSWI8Klv4c!%+6#SN}DC=V8n78v@i+j$7zA&qr#e~hi{@{*VNy#^7MvEN2 zaLk`IucTNjA?R}yM`CPL(X$m_q;(r+oZPNKfMSh zPKkb;iXzFdBVi5INhCb^L{G6$6Lhtm1Ja%#-^Eki`}RRIfv?+)%`E%%9O1-6&<5V7 z_g^IW->kV9W|!_%o}-v zlNOS~_Z#RAI&caykZRfQNXQXh>QjC5(4_94sIxg6?hsl|nv%J|`ko?jqy}+= zXPna8+85xtE(c=pNj4k!c0Va?apa4UvdL4l8N`K zh$9<7h+26h5hj)vz1x*8L=u{#q%#j|r)Gyqm3LebLJ2~odVaxt_hR+$VZ5BWc<8;+ zQX7V8mP(ucP`9Xq!_`P zwLTNE#au;n>j3%irr)>zXs+ySQbg;%ZRZv2(`eh+9YV2=avN_a+spN>5&YE|MH49{ z%-@5%ze1{h!y#Gh+$w@q979hLOB4J<8HkJj&omV!wIlx?p59}&2uRJSqVl3tBN!tE zHtZKRe#x&qZx~v{@n-YRXpyQ{YOWbxA}4}R&l`W-O;6I%7Uam)($9a_+PI(4LYdx? zVqb4J3D#OJNU<~H3I_Zw@=V$LavUH$!yPN!0N=-^GdJ9lq4V0sHoSnW&;f=gH$2a> zu|XifncW^TZ!Un3w_>GYOp=hYK&t1JQ_&-~S{u3_ufPI;xWP7zP*t$=wOR0Li4SE2IPCl9IH#~_ zIQ}n{d>_#Zoksv*6-3l$AZi(61(1@gB{?U!m`WU?br&#ml}rQO=((=DIf9Lf)w-z) z1;(hnwNe2zS=e#}&-(|}(_JS;+Kuc(IP+6cW@*b3DZhg{*RQ~RB_T2xtV zU06RGyV4?O?rGmEuLl8B$X#AnLCKJDX|295YOd15JsjTI@K0_fws%Ii<+!@9omjHI zQ5ICdvR-svc-D?EUmIa{VIM#1 z1SBj(MI0H6Ec@l7@hMvPmYO-Uq$Z#L3UZ#dNLo%Y79pXFLNIuMS)vy0y%vR7@sgI} zhY`U;2_`>_z9#J8uBt04rrh&cv@5y5W5+Zkt@%X+P^oINs(XHaX4u_p)%^GP45FVA zl7J zbo9!!l#Z<)Oa{-G_emhl9|AkEq{xiYY==6x_e(Uj{WjxaiM3L#W;Yfm6JXptnSSz0{SWnJDVTxg`K(YP-HAlRC_+p@ zRRdINL)K&*Eg%{^JhE(Dl_C~ZXn7*cnXcbZp*Wz*{C=1M_gPidZG5Tkg9;cVJP9;Vhv}knz1e z>M!FjZupaQ2$s%cTnp>j%zH{22P@e*0c-xPAIAPLRNKyr2z1cc5O}jZxq;nogozAR zGmzFX5UoMa`fX1#TK9T_>~q+5+5OU%K?!R=+&v@LlOn<+nmJj1JQXI!l+`|q}2rdA1_wS zejXrWPuHtGuK@o@@#pYu`7MS&ulPFG@X7h&eD@R?k6K0-ZSq}g zQz0sU04)p^x31S8SAt`_byr4`Hoy8g>eKaF5v5Xs8junZ^#l*oRK_VZCh_gp%F}xo zF88}|aJL#cxzO>5{U{3cABaj7qmVV{t~AJHP^$+FSKA4=|Ls^eVRnwl^QfW~{9Qe58~81tierb%T&U^igoPSC{C}?htk-q6=)cL2&N73 zZ-TieFifAh`0G9$ivXbLK8pL*Axg-d<`h4r{HC>&+?Me#@=dmr#nL6J01& zNB&8v@)W|JBmDlC`YjM`a(}&7{d1#wBbho{8}?{>T_Qp3t9#~}96IoFC}tcWXabug zbsRTJ%{5OPMx9hVn+J~snW`jZ3;m4hE3_X*PsoTQgFw+>-RZ_{nf;+S&_`x{)t;bNv|u3{-;WQo*bn*q`5- ztUbFb=7Y!n_HZ`TkiS;N$l2k5VwpRVRH%(Gw?cNPmEFvDCn`l@YUCWJi3fpU22<{F zfpC5YrqU`wkXLHgo;1z_>BE=PE6fml&n)J$34F##UZB?TjKNXvFY?Ks!f>wK0w1NC zqQOznOY(VFPrdxtuif*?Z;`QnB&^?$8$RExm%KQNi#Z^1iC==%GsU3j?ptn6@M7B$ z?Zs)Hp2)bP_yT2U_39sE==VE57WQ{=GZv1?X|mfk9oyU`e7d)7RNjCj{Nj{hmpqHK zB1=0-W@Aj+mayLY(YVok5pd8VLV*x!sLlUpHV7`~Xl}+Y5Jx{IDx}X(Pw-7oH?&1q z%WIZ}l!|MyD?)N3(W++H*F7d5+RFmqd+%a-!|lfyUn<{pTW{ZcSDI4bep0H(kJDFW z0CfO?LYe+%X)SFcksRuUsG=O;vKutmSMlgmfJ&}5Vd@W-m~YKems%=3=tg{bQJ4C+ z#O?QA)JN{bz9iy~JDUE;|M&-0{nc);_A2z>1Ya`esJ_QtJ(k1yu4rd>HJ?X>3t*`W zI}?i#tZRK<0M z1^a&qht{Cak{k}RcL=JZ)F?(77I3ZD ztYT>F1ROEYZT)R4)nDGd1x7ju0Rms7LjYByt3BTKJBMTD1xgJD* z4RHTBpGR|MfXj|+DWe&w1`5ZO9t%JD4CAEVeXeVjd_FnZ>4CS-fx>lC8z#& zCiBjY3H{$ttG0Q`y~9p28Cyive}}4RS%XuzF%4`^$(Zbl>3fk?#_}@$GmZbWbW=?` z{`&ZfW|=;@`h{c|(5ExF6Gx$E5k-AG;`$md)MZDrR}7Wq=QVy9!RL&nkGe((mrh(& zq`C9l)F3gb! z1BIeUOlk}YJ-Ra~hK@<+nr3`Iu21$Lyct3pwQTKoF;ln9YyW(x{~w676-&6r z$HlXzoq9(S*1FvU(0}^-;0y#uUCd-D@8*MxUj~hZXo`1hl_bfKQ&lXR(yN4;jlWD5 zjA*{_Uz`4icp$W9AxxV~r6rZ5X>b_J!Jzpl2x6XuzrNyI0(vwt=!MwO^=?i{DMyV4 z-RR2;7MsH|6$K4eXw0u+z%S;)cFlH&=G?uJCZ1t@yM>7?-Ca)Aw#5#g)o+ryt$F{R zfN(Mh{-SQiozR4ci$>%4J5%b=Uswte`sNOz<;oL@Li=AA83&V}6_Q0Z+}t7M7CgS+J*<-3JX=q>58xOaGfQ6xI%wuau8;^4tPB`e zb)#*}a8NIkG(RMXXYY}j^}k2WKJkJQD6I<<9%zkttOW`_e2+q^@v#BxcVlld&)yRu zzxrP$jw(zAIV0X^ZVPHWK9kX^juy6j^F%vaw}r1>FX8MqT00f!x+}7nU8Y>K(ercC zO42euFqcgGOnA)nmJn)J&F7W4+g4=RVnkT{?rk!H#e9%L zCX*bE#l>&V1TyP-uvvRf0nj`G`~0+X`Ln0qr-L_CUy3bc)_bFn?mKWLo<;= zwX&HE84m{TR0TH)C%zv%zbO?jA=6bxL^E*=vJRM(a&`k1JW|RAwe5E`K;DF6=)q<< zgUlHt*3^d0PW}9C+6IABY2_&}dr;nPBGVX2WTCdsm9>)o?3gvQawh+P6QjnzQ>3HV zV`lafGy8^g{9c9EviYY3P&&%}zAx4fI~J;*z|U;f1e6=NWWdrxjtpa~ON{FOXW>g> zXm=wf44FkK>dY|?Zg|=}>hTw1Ae3XYLnakZa3Agu@Z=quyjHOgD${ntnH=^^4Ejj< zmO4~3L$~Rp(lZbq7q<5HL zLVTp(zlM9=Z>P>YX%zMWS_Xb1G5^ai!h+_qT4csGK6$F~9uKv>OY)Eto^?WVW5oO+b@ z7sI13SOV_O_57}%=T;-qMlz5HZR3aUJA_VloEnha8<)HJ+BU_;uD7eM17$G2Va@N< zciKa5jLp^R&IK$s3Ft41^sKFgq=H5C3h=kX&R0> zE7m~;!6TdhK$+akf03b=kVSc4J%iUqu2Zo#`!D7GO(1jN?{K$D8FDS7@-7MTSP^n- zVt&f4RWJO46@!CV2|6;g=7$|)+fSTUDQo#+sk)^ZlC-kSV&V9wN-M;a+aIqqcol#R z8#qN_bdjys3$rjYRy_1N7D%8{Qx4FirLC|_%Y5T52oMwpKl`@i7BMSR`3F5U2@O!Y zH2SZ|GDXSWsQ>< zZtG&EaK?25zV?xEmWbQQh@BFZv%c1Kd##?y-j;0z#Rpm+wqGPL94lwU-;znmPNaJQ z20&L|!_Mh8<59T}HS=JMrvzwb&=M_~Jo9b>ASnIsak4YIJsZ4A{rlYkg1(d~W-&AP zWD=iE4J(pU(d>IicYLJOyx99!T%7c3d%z5&fh&N@F4*d6Z#V4L`)7_RJW{G3w`8lO zQr#ntREIk_poqbd&1+c3oq?eiV=BWE9y0KUXBqf}yth0m?LK*NVxDvliS!01_#a`; zq87*GV3#y&1eG(qw41l}_R3XD^=`HE`T#?2^75LG8(3B!p_7{uTM*^3Um6i}({Od!xIO${SS5C|&AqT8=9R z|1Ec|-S7$`^|~Yn`>a_7#&)JLwE}R)^_=Ht!orGfCg%jbYPX9~69tD^x|U7Hzho94 zvRL6-RK^V>>SY34eRXP5AUIz|gUcH@uJk9J(({K{#{E%Wr=IIkg!Y(Jvhkck`Vmy{ z%C93L3H)EL&w^D&N+Y;a?ZWr+HIpiF%=uPI}&vQ2x5Ee{^wsG#{u}OO0(lg*Lh*lw&v3e2gkM(W|E8+{qkGO&1dLfed}mCXqF^yf%XoieT{BJ6 zPqLkzN@i5ZnC($!vu66^PYUx>(M(1tr1s0kQT$4&H}c)v%PcEaHE!I)*(>YoQlKR3 z)vlW8Z3HQX;4(!&JQ@wC57#GbQcRsvP{qOq0NNS5b;XX;EbVb&wP z|ABlKRo%o+f@p@PRMNYcXii6$9BhRQY{xP2R*71?`O?zAsOt ztsON!3=6Wq0^V1Dlv`t`{{YzunsDGj2~uWZOd|H;G>#oN|7@PPd08sb^{{xiAi~ zUIL=ZQz_z*))R9JiY!ph#WS7z9U=#d{g^ScNNr!-P|+-#;TsF>D2T7z`<>`5?}9){ zqzzs|!KLFO4ao}qR%CW)MaJ-`Ig&uI;aIwS1c9zn&rL3CTuQVh6jZvisG889*$hd&7g z@GAaWYoceWr^(^(SRYJC&#?SV!YerLkuTx`I)1}apqqJuaK~FPKXdW8j8HLmiU^qM zIiUg=iBNUi5*&%?y35u0av=0c5?HLC;Pq+jr2yYd*P}A)G`Af=Z}3bte&Zdl=@}D)zZ4^1d(}N8k6IOSRj`Vt3`~I409bE&@of> zY-(Em+gh1xxGdkF(=%NM9Htm#4q%zCHNWri$V@viJ0iPf0QQcEl;)+`s~Ev~9bQ9J z_KRJK*v;SW5a%JK%CeqJ-kblOvS7X`=|ZkWxYe6K#KJ}@hgG(xLO(YTNR_vqq{f1O z^z=s5TeUM;ea5#5cKpS-#-PfsI^oT-x}T%>4=jY2mjWe{pN0!aHu5->vX~Lxw1q<@ z--`%~fTAi%UjB>}jwzNdB=i$jL$H7LwVk3)w#?u-ES47~pkAIPOJXi~^FnyfdbMtE zJvUyP)4SO_dY_gO6pi_|rD-Oi-|Jo%)(?@!&aOm|u;~PEop3rx;Znk$^-PCo8zL%G zJ}`hhANV)C={XzMvIMeVU**jJS2F4Pb&m_^CZbaHtr`Z9a{MJq(v2l-D2isMK5s8I z%v~;khc}fGn3Q)kQbWbD+L?6w^!v%ALe1Y4x&JXe_HeU2B*#4pr|Ou~lBe*nuliUBMgwbUe-${oWp(9WW%p@auS z0b%??+4>76fs*%g0DYjmZYPmTb?j5IeaW3tWOEGmw1@iZZ!!aywT*t=({#^-_=B%x zvBBS`HVIkm{}7D5<$KJt9`jqm@S+GOitaN#XAH~G8PKN+esnbGL~b)5RR$(}D?*cW zD!+IWR)p7_o*DGswZ7QhG1NRCCvb@oK!fuQFt9JjPu4;Db!yR|kqKhw9!Ps_+t_EUVJ(T0n~JI4@ffx}VhkTD@BL9(aZit* z9a-2dxn|CxeWgYA=hp0Ugl|^K`|ayo^^p{TFl(0X>O#WYXz*VQ9t+e^17ayBgSf@a zo#A~}c*ykmW3EG5^?DgSUKxhag&QXmjP!V0>|Hhj57GfSP-w!(4|=t^?~yd>Tm47(>Z?-@QN3c?K`aV=;-u2z8D zk}aqx4y!*!(PY3;@v8O3IXlW&hrRs!`5?kfkrLb6#|u)_5xjH)s7kf18tn+fqSIkw z()Ovd6)5X-&CzE)l0n?9b~-yGrHLlJhwYXD&R>!`3sy^bK23+1d}Vq9o(r^{s^8Kw zH8q;2#tHdxqFntZAd$FOHDfr*;ix~7Q&>yuMO`h+xO8A!|AU+viU@?Jx>HzByA^zI zGoTKaFPtPWP5VZlpQZ?BCa+EF{mJ4;duC(qgfoxOC^ML55)|Z3u#`>r>JpXl;JC-N z?GY2wVQ05m8l}hzB=>qBh}W-dGPW9>G9+qV z*vMe(%bekGzZ4xatImaFGVgAeB9>UZ3a&|$B?FVl!-h$d^2ObXrpyb&`IiUSr(vXN za?z8^`I1-_WAKVWeQY-t^zsVYtH)TlXJ)#zSJTbs0O!kNdOn>h>N-?GS(g5L5BQfh z%nofpRcNMrEHSIE7B1mcJcJ7?O_jdd;{VsD-!ibFCc3p{7uM4{#>Q)(&WxwH#8Sd z%y0I_rlJmC6(f6i`q3gRwg)>-|GLhI85ZQU_GVhv?A!|9?xsmzOESr+yvyVZuHwU8 zXmAK?Bg{_vZbalne$c}HaeaNo4(+!WF|$vm%uYN$5+KrHKotZ#7Ns(Vw%&rjRT0kU zS+NWc4ydVu=`94;0MV|qr%##s>>N(1183n9A+^cqQIUgs|NTz~40&{xp%Ll&k#9VCAoC%F)#vLu&_=)`uKug@}DJlWaLn;C%uX zvCv-td3TFHzqV?4wJ6v^LT;r})Ocrv&c5}`&RZRRn=$ohAbV?bzdxGOvy`pH?bl&t zmF475Qke2-Z8nrDAZpQcJYdbe09RimRZ@{>*sd{Nf6XRxfPTA^FX1Rb;QP1F)MdX| z&!8L@gg*7zRLV7)jLZ8qd@4@vs(S(^UHf_DBGnfwlF_=tglW+jI*D_nB>ChSS6Xr{ z&;Hva?RB_iP9qX34~>ehZ|BOWf2&CvNATvtxjOYO(eW6t8-5Dfk2iz7baKO-oyhla z){SqfIFQ|FA&82sI(6@Yi=yax*-2n|`DU;=DFB5dLHgmjg)awT9+j+iZ&t?hqgok zXMBnY@^QJ0nhI6^s)BD$&z(z?Fb9C5GHC#G|3Es|dc#!4{dnn2#qz(_`z#7MuT*ZF z2>4p9M|EoZ%G|f0q+g}`*9b$SO_I8C8m%#s0s9OgYGn7zP_@3g6A)EJ}SUB8I#kT>+H`FRCTzyfl15W7F zC?HhOz2cDgO7bPf`3}%2wi)-VH8&aa0~44$r2A3aiPPnF+?NpTxhn_|r4W5uwxYX| z<0??Le+wtHo2fRQc6q%*FRG&quN;Oo{`f7YN z2EfjnkCNJ#9>uS69F|oDLiiQFQ&Y1KujF+K1aU-9JUWU0f>ouS<`SAc&z=&Z4b;7-G9{e2(Jv0c9mZbq-0WR-_N#{TxU6v6M_~ zyH8Rzz3**`?9=4{GzIi+vgToBpEWlQ6YnoGVHVj{V!jU1f%yvY_;21MyF258VnhvMapa;H?z!)3>x0;+yUZwd)zJD>#W_qO_x#MI+1v_mgZ_H@-FIZPZE>Dn)>`ovLUMsMfwJK!#l~JWg7NMyd>04!x^zKy{I^Q2a={dUVcJ235 zG-d`w@)H$ZYUw@z{8Y8mpsN*bz$jS9n4jXrOIu?(a7%bgLbEpxX2!@_VB@rW4xH`-X6k%}}S{fSBNSz|Q4{U?FsGp6!{ zOIs@3R*v%d;E8t!u;YDX8@|k<*r`HA1t@?29-kJIle)JryI;|F++!@Xq#$m{J&=BS z+yIKTdJ(3{L1OY*k%`c5^op2cwN`gwr)zKaUAdN*{$Wj<3f9qvYM|IE{lTuAnWBCY zqyQ)pQO~ok;djsD(NO{z8xfO_F-d9PC(558yw4z@nASSw)ijG{s711H7 zV2o=t3>2<#$tyq5MC>Ir-qwt)07N2uy1Xe(&_)NEM(Ms*9a<2@Ml3Axpl-?B)r%9e z%5#_~;i;QOOe=Ex+&J|z(QUz|!C$Upg-A?*nAINP(q(~28>&YH%tTDqrp6wAYJ{m4(N4O`kWcK~cukK#Wmy4wdU|RzTs2r7_-sguTAxHEwwN3Q+ua{9$L<$`%uH8?p ztb0d(yW&*+!@lafug;%MWR&vV6Kh${*KVI8m5T8)OX0bJvg1)OCOLKW)kbg?S$W*( z9VJNoX}YxDou{ZTbCLTu1z9}S&vB)dnD_Re#e zmrXoWzS=E&->WO?LyLp$MpMwLJ$=7#_1>_xA=Xv3J(zuCeJ_?wipWa~>pz2Y`%q#Q zMdZiTQkFWz)i zUzzkixr9`;iMn(dr-UAm_@!oN=d^t{29aOMa)a3!kKWSloK14pP*iDCyWWPvGCy5e z_}xoX5=pJ#N)J@4SWyjJs>}H5ialC+;)j-S18~X2tnn*YoPGSs9M?SBYq2Wggd$zX zS%aUN)bSs-=-?2!;m)Nf{#&7&tT~IXspAk_b zTNu_IgiHMBww$SNSE7Nbuj{}73I^m<2``DxKTUVBOG$dEQ+@rh=^r;c4+6>&5?GQ~ zI9Zz$Tfo@OHl^>rioIvSpwub+ueb$mNvZ5%|480BY^sB4=-}g{xn8PYR@!b`*vWSb zaA>JdWQ+W!OEge2(UZ)~SDt9^9=q=()U9pb?;a3ElY!j3)#IZY?CK zT*%viu_6|q!&a8eY zU&u>A`-mZhSxX2&z0qe}2--Q!C6rAhi9x%(c{kaf44Fv-I#1t+2VsF_sB*Vr)+XS@ z*u~$#Q^>&NQ;EaLfCs)TkFl}GK{8)!rEkb?r2_f?Xq<#8K~(AEjY58W*-qNE8vXkn zj(1OPppTBEU7hrLMB%}-!0F9J-{*uMN%zG3pF!F^iJzrV zC+3mZ0+ANFbT84&$Gb;B({QMIcI4h-=<>5n)G`&-|FLw|VNJhp8>YLv86DEy-60{} zT~gwZMjDjvmeFG%F+v#WK)Mxi;6TtJErQbWeLuhBc>m--4;;^)=f1D&JWZ69{$fqx zzeBXE3d$-Qzw-v1cE>d6iZijqNQjfDLddNI~Cyo zri?v=A`39)j1993w#^w~s)MsJbgey4J!wxg2cE=?1@G`iV6&^F-^6W6-VOQv=49ZIb>Cg+)8i7+Cm@C?VcS0DG)i=C&?4duQc*94lK$-RZC}o z6aI(g&@Jz(pJ_+;$*eT4bha(YOor+|tf#R`Ip2L1QQ$+o~Gn zP6X;IT(EzMkO}$^YmzQgoiEO3n#W!vN_mU=Th#+(rob0mKC&-R-bv~p2IcBpYSZG+Pv0qTRurO1zM{FzA15eB0#2Y`lJKKz(hT~a?JEn z5NoOj#stWoMNk^!X1Y$So$=F**br9JqTZjdhLOU^CklTwpFMR6uFY7I>53E$S}B9H z*}n-7$9m^)A~(oYwRM)TbHbuj+mkh`I7vBNTlgZf+N_lVBe?GXw zOB`23fSkf#TU9hIruEH2rYMfTnH@ew?Ii?6K_oGmwHLTg{yq-O!j>Y9Fc*ls5!@4J zu#r4Xpo!-M)0XP$c9trl#H65k*1?*0JSPj1Vkix=4;$2wB``TGwYN9#NuA3qd+|s? z;tg2+YyBd10>Gq_B8Z~;>=GIS zbk4Jj{=;Gy&kpRvMX~Cm^u8{UR0};)-vtgs+)L+j)7SipBv@i|`t3(Pmk8<-qDJwN z!*oKiM2ml*#|K&O*0h!u?EJlmhfWJy!g-EcG$>HkbEL=hWK?eoQTUgZFN;;-tznu1 zTCZ=plYf#zgWpX6_>qP-(E%=mH?1HMEo_@2>y~?_RhNe35KoHYHCo?a!erL-H2E2t zPBI>**J`3^DX)>9l(1il1Zg`70@Oj_K{{%+66?coMNm8*_|g!K-3^rCwD*+ZgcE{| zg|Y5z0MeASuu}L{O`Xrzk7&!^C_3H?3q`PI#|l+q6q<|nd=_sc2ZHB|7=VV#n5X=T- z9B4+)9xRJ1gxX9|)m!$(+_mhvr&jdmFc|VZae(%x*^6EpSwim5>p{|PKz!$oHvGpt zjAz}{?dT9e(fVOr)O^eZ0UXD6T`hne!+D-hfXRY!_74B&_p`+7bnAU9$=3;3D+$WL-V+9P4vkH91 z>PP1R1RJg2d;ihQI;r*eR$j&HuJ9(Q$I4Kdj|d8t$5@~ngJ;J>;g)`n_S10KJzwdn zXlTUcx45dZi48p_uI+Kk?``TfOws~o6xKS47KrnqSz?{3)#eNeS8L7qQdgyl3^9^F z7Q0Nja`Zk^(Ef~P$K8D8eRgco1~)l#0=WhvB(I8>WrrEX)ajGGE}ag4Q+>+BJmZ@y z$Tlc2F6sws@Ucd#$SBH9dml}7Jup&Ij^m_zd`BEJSN6U(;Dr7~{zW zx?{zq%c}aq@#MCxvMQUX6U1$;aA&2c(3HI&(ReSd=Hc$eL{#__j^Uigsg)?Ru_VC8 zc`;nHq>Sw1m)BsK<9m4OZ5eL=6qAR`8$^VM!3{^^XUzpCu&K>Nl9g~01C2-}5t}g; z(SqIe!bw4hW%CVxbnq^APQanBQvF5 z85ioO`Zax2u1!~#PBVABYNQTS(weQrHn@hRY{fbTM>c#PNw?Gkf9$q(nW(#8-@o!A-nXU6eL&_SFw*~ zRw)wiKyF^-Bt$#M)*fGr2%Id*?9B{-1g_IIDK{?|Sg!DaVuXe14S*;?B}=GYZl87J zmHh<)kOhZ)(u>d~W+A8AF5WxXYq|ALC4TPDkizg}n@CBh^C8dTF0P1Q?iL!EMRAmE z{mG*8v-0c2mnAVg{dXP8h4HN&WaE3EwZhwTWRzz=>gF7AzfBB2+?e3ejBq>5Ox$lS zwZJwHD*mBTJ)GP%(yC>36Vf4Gg#S_NN8^Z_sJCN5b}zsGpvPN}C=-dpsk`dl6vWQ8|xM#8Fo% z@PMT+)DAE|5qQo?z6Bv~41T*4DgO2oor@J?&dFRc#~)KEr8SPXXS;nRXyj={GVo5< z_8GJD0d$LpRb0Bl@O03^A_$pNwI0vR6r^>`>*jN`U|1Gc8$mNsb_-n#Ku5qyRl45E zkeO6&du5$_X>{FGUo7wdTxkF7*Lu$I1oCfkmP(nrtG>TiH~wecefc*N_Wsv!UV+0& zcK##~=Vd53{f1?7oLYltFLV*BS3fTmt6k`yqANcUVb9Kx$kmISs{*Is%KZ!v)_hkP zBlztnoQ60$S3#F}L$UF1<}6JJi!|^5+CJ?ZnwixWWk5D`+Q;up?Nb6E#EtTOW!}6y zd05CWax}NAkXARpG0WHXTVahQlWAV$WkGFmL4L8_y4i)bX@=Fa=?oyMFypdBZu=hNKj9uZlKBod!yifs%bw~s1%h+UXkWdkzB%poYAdka zVhFrMVHxIvS%kV_mh~us$h-X)X?F+zu#a%+ypyK=jF%xhW|Csxt3bUA7&U&eW3ksV zYI<_^FT~@xk4#LAQ`vGaV?kln)Tt14Z|%MpPi$YzgN6w*re;q`wUzp4mOPp4-JzPk z?cPLd+bRVjNNHH$`@d^ANZ{Pe81kTJ$dE@YO3Upf-OEJ|_SqO_nXc`f{55l4Hby5} z3^1JbMF7cO?_}3oO`@Z}E{|13odAeQ4u~SPv}Pis-@4)=9-p(qsae;~0+D0!B-ntr z`I})1_ADvsJ2LEApyNXY+y+x48cIshdN+QRHKNjNc~7Z2KFDv;btS#X;(?9J=pZ1g zCz#V*@+_?!@NrVE5Pq^hFa$hJ`6@vf2~Tf6OLlPix7s0HBRyi}7r9ccR*A+h-B!tm z-`5k#e2nGY*;`F2A>4s7e;91fLDB zaYlf}kjvau)V^CNjS+D~S7MB5J{p}|p4C8`aPNnQ4V`5}#GlD&a)>ZFh~MPe$PXi)|=z??=ip_h#)g8lwVUwP|vB7T5%}e7>-I4Se7yoLFI@X@+-Xa`7yeL?&O#(ypIG!hA6)yIum985dMNdrFO2o>W849L$h z+(9t}jP(l`t?3%FKCGKFhZt%DVGl26{02v=o^L=AUhfy8J8vOMBWhcsG0W47uQzt# zBcR2_lAe^aRVV9xXI`NXG(~>gw{JJ%P$Y^&;%8$`#iOhW@J3HHiEE1d-nK2uBUH6* zF)7%at{)jS3;3BZ0O0UHEOY^i{+00-`PmpygwGbZ zZrK{j$9=MXCRe5maw86PMCbvPQc=n~b6nXIG@Bov-P4*)X0thOyre(@cmsLQ9rV;t z)tw{$i^hkyQ3yurmpjZOd08yqgO+W?^PBm^0K^aTU`s6J4wf2l?3T#?nfZssG~#ENYA$Ng(_bi!uQf6J_TNj)Ij&NylM^ILmUl$tF{xPU&6`Am zB05B;r9*glCAbf;rNeau7r_tm7j`1p<@4@-dE$Hj<`#Azo#zVjJ!D8ue)lK@#Jo7p zTD~Yg|4jYU-f_t1xJ$c7A9r+EPqP58q_L$at9vlvoRU@ob;0$Ix0|yU-cDJsSV4s% zC=^rSyEXsmmqtZYGZSqJ1YnYGW}s%s-K8IfbmFR znZNqdo-4<~iP6{6;C575qd>(%;|A-4c@X5Xn(fy=YUt#3<>C*kFNX7h5c}V|mNsX- zHSAZ+|K?n&n70c`m~sxg{=;&|b%dzPV^Z)+us8o8^W9Gq)Om*U9VkmfU~}kg@c3=I zCGgsVe6%h_<0j+%EAmU?LFE6{431~~2kY}5ff38O#RwhLE0GceyqHa&2fkAWob<#I z)Kn|O%UZ(dP59aGr2VXwi(>CIpd$LN`?U6gQsOOekd6|&jj@%QuTD&h zqVZp*pwA((f;;8OIr~ieQb}{94{P|tjil@Xa0cHT1H806M}Q!y>FYjYFiT<>Q6pzf z@%V*BYJG(_?wP>Bs8=L#))#x|qw&T)3y4=k;BP4tqx5sZGz0*T4~)RQ{85JSLlAbL z)Hqjv>g%zxwGv`zg5)$=Idz${Q2~>j!2x=AkepNQCw{grhn~lfCQ4qGe4O*-b2@>d zK&bN_ube9hRxj&IBCf;Pjb8{FIlUhVn1$u<@PxAhkPY~t{Xu37tM(>Z}wjOr(i#SHr{_7yF|DM2f}l4lEQ45n}B zUy#4u!IMeioI`7mH$OfKMr!;q(=o}4!k;_sevm*pza)|WUKf?CY9+B*F#FfZyR-k9 zzsK&^{LDqE(@;8ORvW$@mUCpRN-6p|B)!uGffqAdJmT3%hM!)yoK4p}kEb+L1S#U8Q23l3;SSGV~>%{R5q(0rlHrtb^-ArQEmKD>8gnw}Ng)^u)N&Q=b@R;ED~n%<0wX z)_SwO#j&T^PjZ5YBw{n9a(KLZpn2F=R2F@WF={!#u)il7WuKyveN-K*PoA2BWO14C z)vv@ufJ70bZP-XZrghp_Jj1#`7K!Hp^cQdUgfy7)C`?c-@n#a-?wC&}?yZC_m? z7YIjC-Omqo>>`rmf+mg?^y$Ua5L=_jlrSfoYU=I#)pz#3Me)Y_S1zTuuLBC(Y?b1Ti~9-mK)cwcguBwkDrRVtgF|~+02mNu#?32oT&)exkU?0 zW6RAmZ-`rzJ|DAv5KcB_Yb}p<-^_wzQVjkj>H>nx378YN0yEQxV3xRxURNN@G7rHDgKmH^-r zZdPEJ!+*hE2ZU*ereZo${Kpeo{BbRvBzXYFkh!8{ERUlJsBEuC?GeFhV7)#-k_Dh@ z_UMsTy;ai(zN{Umu#x>oqYHRjbX&yQgCiE-pUe>nx-GK5L$qNoVjvRV5wbd&;MG`9tj~5hT4PRIg9G-#-(mkaHoSz$UAXc zJF6s=MQ+n!g@I^f3?#WS4Up}krWwi}h{>}R6~VED5h zh17AhLOQ~ZTp|=>#jtSBVd99B2MrL@FnnOmUVLOuC>Jbllm5cOvR+HduDyzfwf$+V z^elCI{9v-VI_ZYuBaw?95n|NmFWpD}@SJhW|FC3SQ2G%GlXrp_o-;rS@ZkrRkUQ7B z+$ Iwsd=kWtSB-yybCYtLG?W8R|!OtQ~m8>f657#?yE$IyWP{eD71R;+ z7(Ln(oM-n(XSZ^OBX zrx#hnJ9y&T%v#o0Wk{l>R<5#^&A(a-{PX`xYWx@}!TKcoZh!vTUAdHOR<)}bsiclF zv)y7+N7zs2NLHbsX&pTYFHi}AHig7+_;3eJA_ z)+YAdv}WnMht~nJvEM`qER_zywLkcyK)$2AgZma11F_D<(5xr$yo=BD3@@9gER0pA zxArGCl%Oi@+8ZB=$-d~|%hJXly85Ddcug-Yi6-|&f24@9St~*1vGGj;Nx5qn&3o8W z|HBFtk&#+v*p30YryH36)Q+?wI~p#MHO<+f7FGuW)frNFqug!vy*d>(G#| z*tc1vy(kn0)yV!Vbdz*-HicyQlInCaRRgF73lokSRY+p{M!mm~{gdhy2_(L$W&SL< z^U>s^>9-bJf*R>hWU+Hi&*~a1F&R1gS&8QS#<||U>{P_QEQ2t@C>j`x^a-=ougVXv ziRHLXK|AuUUcVGLX?zp zT0gNtKrA?ML=8$59FdaS_>t`$g6Q$c7bg{6x*Il+mGJGgXWt9_(@`wBH0_ggRy_4< zV{hL#2`Gu1wr@}k#j`(%inzz{f;UOU@|MI7@<6@CRGtljm~n85P2#vKyqMY|l2B0U zQa%gnRXSpUqy5FNgh>=_%sD4ac)LyYnwG+ivc2C32PGUx3@He42(q|A%FX z+jGy0GRDR_K#YufyNs#CLZytcgDh_ek4u?1E0(*SpY2H{i~QVKJYb2K^{n2VzD=wn z#rZb1Ag@<7s=||Ttr>h69gx&DrrwKx@lIAd`ln82@0CV!B;a6@pU~M7sn5&9+Cftm6UgWcVQnn z(PSPxv3;eLwegEdoA5yyZ7YHTB0VMOw@e0P6LMT4Wb6fhzTAW+oCfm;mf}rpiPWMW z{{J(IZRo;s2n#%K8AkTB5qGXmIG?az!HmQ<@6^C;%O90KmfrfPIHy zZJYqFchL|Gkzck=YWJNxCxAg_wKMaM_e{7$vCaFqYnK8d0eptu4xymUm_|4;pbuFI zTGskCsv?Y?2E6!1+HUN=3ad2CNdo+29bf-hnHuR|f*R_F60{Tg55}(grgliAyqVyWSWpu4^>a9`Rbx*%6u~M4;SRwIGRJCAlOl==#tX=Ze+fd!k z>O9j~AmZN>F!A$N|5VCp^5Ht3<0eR;BmGTc?4H@34jLEstDt1!trAFdOjNKs`ToL~UpVxjmw zoU3{=3!1H7M2tq(hr|luOz5O!`>)}T9}VZ}l*MpvlG{Mpx&U&l*v#T?2K zgaB5&-|r*dZwfbtP71(Nf~iKLTT|`KbYYKV?AqqeHUDv|%3No75Xydew%_(p;T&ns z9u3@CKU(vNQBSGqgxomoU2E zb9l^WPqin-wts-jJ7cw=GXF7XxIc9Y=$Se_5=)Gj`(DsL!`Vbv`qSS5I~7nwCo=cF zEhbg}@R?prW6&RA5D~XRyIT;A)VQg>ai^>>-i+nzRW%2=vfqhR`c-PpY~+CU2yPFC zZd4#5uzs8JLJN)xyf9{a_`&R>+`4Um>{~l~p*O#fXQHQOXPy^*QtUj1{Km>JwQWUJ zI)oc(a5Q5%c5lY`WbGm2QEx{E(vQ#pLFzQ3$iqPM0)>|*=GbIg`hn`ZQyTnFfz-)g z7gt(mSq4f@NnphKKnE@&>C~g-GZy*_rz0%>t0HQ(hNP8yv`20`I+mN(A{kEDwKvuv z1J;a`&N13T({ajA$=^grxLAguV`Af^4Lxi3hJ47|dc-Nt2XP-dq!_VG`CdR?r`Y}S z0`K+xrkLt7EYK8CZjk=NC4&6n7|zO#MG+3}?7f0_USUX7%z9r7D+plj_~XqlwXN-O zBdzDsM@2yM$*mE#rNe97c_F~U#Zn!Ign%H>WqRo!${5k0-T!7n; zSGamRrG5N^B#r^`v(`P4HN-75tMG^ceddUhs^uL_i}_H58hk4qyXAM&NZ`CEqw)UR zBk>w|&ZIyS6^q)H@yh_Fl`fKTQf>eyE$Dm!kA6wAZFpQK0JYuqP<7WD+Y$Y1ZG|93 z8`=UWDEkEw#s=V!)?sA`!RuU8LCtd(Bh^4(^p{TGXB8~7R(gBp})>XClDLnayS+1uU z<(AAPU6k+=qDMaJsTJdsimg##r72$hH;{>&qSPtgkP4d0{ z{K^X*#!2&l9f!F+`ak#1@h*(0SY%rm1C-L-&N))s+qV36AIIJ{?T_Y+_t$%p?S&JL3LUVOQ|ERy$cxij0v89>x#nRMXr?zL{xzLa#Fa+eDSk89>cNwFZ z2tCUtY?~nAj>2yb$F{KG#_7;MR+ zbY=Yj8&dsDw8O78J>oPznJD*wO^6M((_!N_e8-leR%BRIG{w!Bqa{rxg`Tl(Rh%SB zXj$l0u0kEG4RLnu()v~=u}*u}`osHVZOCx`?n<%KaB7|w$02raagR4()h5Eyhfia@ zc^X0MO?a8C+4v3PGlFs;pag>!>-JUdjTps$cbMAPH7J@->f_(GKJa}ZdK_g15L!ye z@x%=qy|VcERc@U7o%BR4QfE7{y&3Gg{wkPa!bqjoyb7ZhkLGszJI-#EPM#m<1o#%yA5MlG{W^H*+7yzIOwZRfQq`>-4(aV*s++vPT>AiLn4^@klo0 z%A_7OB>TtkFv#A-w0NE^tue{ofU5Huc;Gpg4}}*nuR(Hirjjx(p&0!&)wQVZBDVf2 zrGUZUp(+=8Cn-&re@q6aT@&>SXKR9=I%+%-CC>d{r8T?B#9Xa{Z~$huzX!34`EV@F zpRPlzU^(34WlEDqRe1*=X?1HB-sC20G3`ozHNeZ9&{kR*1ojJ!5+wMYLT74PCGbs8 zoLMh<3 ztO|tiTT2JRH(po8mEyb`=UZui+K2100(QF}Y{I{^We$99@ri(|S&0uY=I$MzHx8WZ zJ|%K)sQw(S3^itkTz){}+$=mL2=ykY_ z1}PeO<|g?T7L!e<|2l`c1B3sf9%&W)&3k>N>9vqLIr)r#GA4C7k}xT^;yHtz8cFA| zX7JI$;$1!GE>$cbqInY9InTH$lbqO{iuoRC^t8h6rJ&k#nOo2cQ~)sgr<(6d)erR# z8fgtZ*J+nwV{{gBk3j3k2lwru(^9o#BFr*MXj=mLbVeU(3398oYAxRxO-p76R!%}i zN(NPgKeYLxy|+%}QLJL}nh?^`xaFIwqoP9|M8Q?xm1ewPjzvmLl)j)|%NGtyNF>7w zUeL;b5z43ZuI;_#XQ|g6-MGW~+s+v6yl5mTw@C6FLJ`mTEP-6dF`VnyG^AbP>e|Np zGES;zd|lgH)ls^L{(+^6cu4T3HQ$N}1NI>Mj>03Hb;F%^H<2MHnr)s3a#ANV`YkO? zNK%!=<9aV-ceT~%!WxbaC%Es2Yd9q=>6?TonjmrIQoknk5~csl=MY+569aPo@$XYC zXJEaVtXc1}etFQ2En~)MmgeFCKsZd&Kgl^#(NO7M`#f`}^}(k`Y`xDy>H2#lbbURYSKw)EO&Gqrz|glIt3|Dc1WZP^#`al%^c)6{!f_Lup|_1(Wc-M za-W3xqrDptbY`y&KwCbViUD?u-8Mw;Z{ha6Io@bdy&$1}SM78|nW&cZ@s2mj-qH7> z8mmhSY)8u=<5vD(h_Vs|2d>)pfx|0B9>BFjr%HKOqTs$5R8uNf$t{HyG~n&mg#*0Y zZ1i0bA2lz4XbC|9KgIMnHmj8d#lpM72YH4pkOXVr5q+U4Z(-2q`s>uCS7sH3Cfxm$ zH2N#SHB|D1q;t;nmVxkWuQ=+d&@Dgty^g8^!~d}0H;{ZWgvAsrt029!-}KiU5fKaE z%$-%SHc6hS5lp()Isap8j`JM|ay<*cNY5Bu_uBSl7N2I%q^~)(T-&rz#I3m0ka2Ck zIa=MQH2o|{Z;6|TBkzc%TZ!+zN_Kf5#ABmcK&C*6;@T3}L(u_IQbbUGsV2P!u=E=A zBq9s?yibs;jAA0oE+F!wjLXB$)I5f}-Z)SZUq{&QlaRbRt6;|p;tP0Bj9+{ zpJ~(y%r~nZF~uoC=4W0d!`}^(zt9qXE{8~70KgN|lu#mUU!ZtEIx;L#9i>J1G2HkU zJn73OSXBT{L^l3!`S0CZP44%*m-cceV5)SnmnWoCy8-b6n}8k7dS&l9ZcGQCR{_T6 z5%+;-64W@3-kWzno9&LLT>lQ@w2AO7z*R72Dx$9j@2DmpGOCE4C0F4+t!ZE0ZoPb~ zj{I;xYF)}geBA0I<7i72X$&&{R@lPsqt#N(! zPdz#j4rEHPU8(tzHGflB(tNi5l|*T81h!7u_L-l)2M`OAa(f+Gs48es4De6;qd{)MspYJ@RRNd6rcY?9AXKK{9e|*;w-&FnGv@#^5pbID zZj~+|d<3QGULg?kh?Q~j6~)gsk)b;ziFkk~;-el%^=VUXrWOzvn}Cyi!86&Kjf;T0 zoL!{^t_6O`GbiTo`>K?+fN;(BY2{w zYBgxNIQezed;3Zx^oNs~cc+-aiy^d*-%W+#%TL|EX=~tX9iqb@=Vg9nQ`2JBFOiCh zTPXeKp6VhfrtQY_*SUm1hoTfGxUDy5UsnV8=F{>SYY1Xr<3<16Z&Izr(wwX%4G@6i zGG^&n<4SGAs6bhib#>Pnducw+u}Iv~{61=`glkc>In#6xnv8mbO0!=HQz1_|QcrfNI~e6q!CDmWag zy&+}l|KJ&tl@FM_YrZvpN1hl+K874xMD;pnFmUK=bUdTS*YjciFf4ggRR7-u=817( z+oJx6!vvc2vefnQgi{CluwFtOc+_d99|#qbDsv*$i)ko4TU9~l=bBZSyF_=?`8WUb z=hgZVE6evKVS40^Lb%3H_+Lt*zY@^Eqw07TNHFQ8?mB54o%16|(u7zLR9BtkQPycb zf|wK8n9j>HT)?W5uc0z&+mWbWQogi6nvRF-I&nM<`6PCC4!pD;J5q=;5)u3kt)Yt@ z|L5$|I0BQ)p7pkT0ThxJHYJPjmxe%%36WvY?CI0m`z-!Xl@8R@X;VT>K8VK7$IA%^ z!S+#u$ZW!R(W5%bZ&|P~MyC_2bLZeUX0$RZ36IUAPK+o{xFFEvqms#mHYynjwEqAA3|#hl!Aelu7{EqVKH3R zib@anrw(wJ(0{+MgXKtzG9dV_qh>P@3&}PoRVENcbNwcs*(N?aP0-*P8jGW<%&2Zl zpG9p~6prlU{37($-BJ{oAX9D_MJ9M^p+7MgK5*dz41M;0jkc=fjY_Y8MAn;W!9$es zVC5F=`96p9l}5Y+S2lp4ZE8u~EMW+YXMU=?EL~#-%2bNx+r=S1{9@v*eIvYmr|B&5 z&=Oo~e1u3c6hjxT(qE?y@>dtr;3-&97)b=e-!6sI6Y3gZ*q4=m&4|Sn6J&AuOr2G| zG8{OpqmaSfue_~|C@SrKW0bwhjZ|(c=?)KvjJZBYbiVM>nCfZGN=)VIQY{WJj86DL zWiZ!gv3Q5j%S(BI#)~Qrp`7t?jely6+OW|2Ohm|=r8d2fo9D$#?RDL~#@-1mkT)xu z7Y2mE)ab|h2#Q$4K3S*F*Kd69+RV;cb6qu}#Pvxu9&D>a(w(|y)8#ofqTecEbip?+ zB>P0&L>9gC_00%eMNMrvk{o)!bd;t)7;9<41?c#OyIyOMH_H(E-a?6EAJv03IlbA~ zqz0zyfV>&)Ve4^9|8_z7HX2_qbg^udkH=24iMsZvCFST7=xMtnnrfuIZ7W)HacX zfOMDHA&|W`Sd4Pw*Pq8mnQpm$md3*RbxBTWbrS76q%Ru(9#Q@yaTKTP9`vea+Li)9 z)>?$x1Sl{Nz2wrEW|apIjEWW(XzJR=g5c~^vZ{1CFm#EMuukg%w!d&3gD|Ls*ggY3 zB@=e|Rw-au#$1TwD3_p=ck*Zy(V3ZJID?-;UO+LYu@no#MvRzm9ZCy|0p2O8&Iaz* zpjm5!aM=_cv~AF1SO{^^lU=<#UdI(1mO9X3oA;G*AvTXkk}>UJfmDb1iNSh-ur$5z znk2(x0J8|iKThy9h8_E!ag)6_>a$@{5)3&`#@C>iHxfThw!6|x9emZ_cPIi%UHaMl>QVlR_^~J3%su~?;{0S z958t4^#$LKC{$TooHJ!jRnDb3*B>s++xz%~Zt(>$3W;pWy?%S0Lu>VC^?ekE_4Za~ z-4t9P)f+17s-F5mMJh~cI97~LHgi_mvuBi##mAnFl*5pcow|UFSe%`UL$o-g`%;ig zE;z%nc}+PWg@)Z?E>pjZHF(IHKx8D<%cbKa_I7E)VOD-t+$@b3XM5wqJK}5}kXIS} zwd7z(FTFMjiqr^3UZM2n@N7A)BE{FR4n6mCS$R3jbD#<1F8;LbPn7;y#@|8|eZAhx z-!|kQXZ!3Y$z)qz*&tP|;@T7JNc)jEB6R65RElMpb3zmDr&f5h67qhTDd^zb9A-xx zmdJw$8BWwc8ph;L?aTc2cZ3#;Y(mEm#ZuX*^&xO*@~-|$-IcelC>6{px6X5Rz=MkQY82TW<2RUI z+7M(galYF8%QKK}fzn6^dl>0;XJ{-%{&+3v{=dSIiSR#8I2L6j5#IOf$MLVKPLnc~ zui&^3XiL`ENjfS{IQjh7!@~KVNd}FiN%YzTTR@U>Z{6&NJgmUGM;@$a5J%gI`s}IO z77LD%L#Iv-+vB9cnm+THF)QMiFw-R~(kdK}OM~T8U>_M^Z}88=5kaEi9`VooP40|A zkYl*r*dIaOAO^I)2eUabSB*FM*e&QC+Z9~f9sxUxMZ0^IibW%dtu?EgK7{Qu-4`!^ za(%H93N5h6f%cBq!KRxki}M&)&SHi2DHjMAP;AwaY+U0z2~($oi5zE;gdU#8PgH}m z-lQYugP5~~!09i92)X-0B63`?+&v^eg?mypWl=4iOsXq~DQ? zgk@0&c%Q^)EH1vWi4{E)!p=AyDAmXmQ>DAm1_Mj{#EAf=BXW}cJ zwfy4Y2I*9214(V}nii{8hOzd){JC*pr75`d&JpwxJrUMruw>1i@+Py|x^J+~VRPo0 z&|Z)zDon))ZpCJlh>$+no}c7vYsGDt8!oL`G+QxK;X3&`0YoyUs3xOC{=>>!X!`A) zUT!U}zhkBJI;foN{;6XT?1C`=33+-FdDq zFAK0K1G=K4mpBSot(r3prGSQN_NA2-w$6Ibx&{7i+LJ|n$>V;D4=q#WOV%q{F9qQU zk{Rskvu?;j3-6-gCf?KWGSZbvgnY~z9(SVM1J10#$b5ew3eUd@!{#zFg$T?{U*feKI zoraX8^qDg~XBv=uwsTcjv3}&Fv_P+rViL!|l3h&Zmd6P{r=+(ad)fH)8B}q2MY1ba z_4Np#H6Ow}WNK|KXOxivls<^!wI++;t&Ag>EO;EOE%7UbV)^d5K@VkJLEt#-k?g8) zW9A~FL!5RzkC@#SKCWEbleD{Ubko41b0_kTaWH$lsZ)H9WA1~qEJ=CJ^jAbiL8&fY z-E&7emh3?ui#*~->&P7vjSI_Iq#55EPBP0-ho$0u4o6D@2=r4nr-Z+HA5D{p{|ihp zQvmQ5B0G79)+^naJFVY~AQ`%EfA9Sz;p1uYV_zq&#Hk5PXTrGb$Hw1vcuwkQFGZji zP=5ABSdv{{<6fm0FPZU{i_FpVv_4*moY1e2P4H7?8K$U#At>G+u022qrmeAVtt5cw z=nd9?x_ReCoxFu!`;b09{OMVTpp_#&z)PKQ3Qp|Yd9dc{f)gka9%nQ-Jf00#MmDG= zo?Y56q3NIh4o`i<)jS(7W|2C`95zS4Os*L3m&-}>PBLg+qwe$B3{VSR$d}6@a;nDX?S5To z(Q<^W)w}aGx1pI%Pf+aG))3vggT0WChO@C27xAB>YjzG62sB^*Ew_4{cp_(2%1Pf5 z2$dpJ-N9{OUmMD2E&?$>t0gNb0fr%1+Jg_6I#N5p?-N8CVfOLrIDx$Kp{2%ewj#tI z{;s_GJTZoKOA2_fa4^K$z6wra>7zW&rAxpw(1#V`jVSVo8Tf8csf=redn|Lz z8V{SrNwu68z5t*r48ak5DS$6Sb!6Wz^CE?^P^B}m+7aRJw{^IoC(88XyiAjf5-@T` zmG$xI$I1Rk%$}x1;WOkpzOfRIt_gP|B~BG_>Iw`er}&j!N5+aW(B4VLMf@<{Ml%h|n$dK~6e9klM}?S(Gr3gY z>u8th?DeKG^*CFsc&TxELl$EvZoSzlOyw#?zD>o55-5`)=Q-Oz{Q{q@`Uc-di)^fZ zMiab|y4HirUKY76u(S|@;-~;OF!JN8Xk))ad9FX!mqct6qzkLQLCfR1l4yge5>W)n z{bjLXnkPoCQUE!x(k)&$cV3xI^+f(i__pMx>CjONl7)j_HkV*KO)*iMVaV3hC!1G< zJZA5#FCX+)6^Id*4V#$TQdxy&U!OWj#ZtC9qF|h86b!&Smy9D>nY?FZA zL(VgsR`!#DG*z$dyM-$qgTPo@6jxVW>|;ZKYjJp4h9q97M>xLN+W$cgPFcwn)M1+P z*L(hSBQRxGRVusH6yV6H3}F1f^VlPj{+A&6v@jbO+%hk4X*I9SszXN(&6? za>1T}N?W}^QPR{g6_~HrznXN@7_qH@y}GIX^t_nf*ov_CY&e#Lr97@S3Rmee^r)%5 zKZd6|oWpiB@U5>haxOV1toP3l+J+FynU0bP&Z}pSfqlQO1dWn@=wh~R5vW-p!7UM8 zu){;2C(~OPN)e8|Hp`z6nX&yFxR*olXKQ=9e^u!+j5 zyN&&|Xc#uk7Ek@$YV^?MB{&LQ315~CF<>COQnk{jJ6NQ#tzv@iw&jvk>B z3PU=l4g{n|h#;lF_c_1o`2)ta>s*|3_IbbW`}GP}vZ&NPq5reyWmuX0Q4n9p&02(z z7<`fE=4<;hcNi3zOfA>Ea*C1bTGOY}WcFgQ*s?>Vt67dB9BMjUc{8o7EySO9DZ`k} zyn0OgXXKC2LBHJWJ@W3i1EftFc{9Dhk{NQl!xl_m4wR$5TalYGIn;V3q{G>3@F=(G z;Q0dACwi@--)E2353iAiA8xA&&hYv7W&0&2PSEp;lh2S81V$YC)xK%_P`0ixh#l{O zkd=ff*{nHMIL?o83pd^m_MT~sop3fet##)204zntG05xN@qj3FWwCaa=6G76u^Z^7 zC{~b!Js2nRnYB<3;qEPwl*d_wXC!~_7;f0vl@ju>Jp|(3EHn@0J4oq!SvCZ0*}RCh zSh*JehMPxqVcI@!krR5166GG6J+-%x`9XvtVvJ+`>R%fdkRV*2E)vrRHCRSAf83B( ze%QUV%anLY5BV5?&y^n@6f~6F`ovB8>N5`7uugW4na>p`ibPHR0iNJ_)!@GBylTF~ zDRX0X8wHBV3$t{;gwyn+rjwM{=P84IVC7B3iuTuY+p>U!NS!!#-7&$;G=1UYx_EN7 z(LCL+R(jd$$iExAv>!FJ3L%HB3a>xq=O|f!9D|s&cTLEdV5)QU&duc~z;!QLk1VxV z?QD-R)t_3_tAPKcqRbPkvl!9C6arqIrXCq#R2r~sLbZI%JbErOBc6nV8mdBK?$X*_ z7)lmvvz4(Nm1vj4%vZ!^R`;?{$;FK2Lq7+EAn;E}wSCIovk6vXi1jN~Of%DhesOK; zXQ^3EX&J0}wfJ}Ox;-kLx1hq!^(DjED3KOTjGA#vO)%v~>{84TRZ|vteye~^*?e_~ zc`z?&DheDP^iO039y4$O5h!mM*+DBzThkm-QaZ8Q1pSjhsi#3a!>ortfPGPHYk#d? z)Kv}8?kihw%rOmD$%*J;#rMS+2@A3V!3&Ec{Kl~p68`Z3C%3YXE>kh z{1sgOD8UDxyI6Rcd0|<&Xo=Hr{ZNxEwLQ}@@)W5Wk9t6PW8;*edjp)Nkwi9P3^I|D zDo;-A-I}DViyQSCE6fyzRBhwPvyzX{*_F_VrmRLWL(UdimN@Uyv6)kIf5?h=u zTyOYp{YU0c7~SX^c1#`bmR!Asd4{d>&-&QBE(<0#?uA?{5s?^l2s*hGfGG)-o#>*X zL}y9Trje>UNX~yl_RNOe@c2#;;l&VWn}LNIZ}a4OyScLfF^v|dvU2{EDTJT9P0z`$ z_pfR@M8PFu7X#1lEz;wTW0!g4pBtSyXZRekswMCPz-b;!ocS=7wdIzU^{cxq_5>W# zKL69iJ+zMmNpOl=S^0uH_?0w<9@3%SGhZC_&W@atKYOp(y^L(}1*}oP0EfBzylN5h zBQaoN`1AVJlT1$OnBk3yV#Y)}zE&(p;SX|gk3U15^IHO(&9wo4BAzFB3~*^`FqZ>Q zRMXwNyCr|6cI|hNzb!r?Um_1w{uIIO`v*wAky*KKy&p|PI6Y%2=P|x#Dnck$NbREG zQCai55V?=6`PRe)C` z8&=lDA(y4J7^p+tR$LkH()#$6z)y_iv zBeUh|YZ#$_IE`-hehM$FC*prPV|)im?(w1SmRT^F$B3Cl#+f@sO)cf*l?X`%?|F}T z5nJj@I}#ikm~NLpa>+9mD=K&4|3vxo7GY)mg2|d5I-kZS0oq;Ul&(O-z48v%d8av(0vNsrO%s3y8JC+}%6jy#oLUCR@ zTfH|9C`losqmJUIeQa{lF>~NZ&X=&f4Xiju5A+gZO)U^WCKfmFQ!Fl z-$^Xy8e;mUcx63T@NQ9?$DnO$;OV0iV1o$aR(@2IJy1x~ybkfrK~%vh3eK!|R_P5x zy*`E8xWf3-v)BrZHf=a z7BV5lB|c&8MY(mF#1SnoBNky~;kT^iQsw*-wK0G23fz%1(%+v!yM~L*1KK z2A(IDqR4i$;y;)| z)|VWkg-V5(cDdc6H*lKQ?lV)3aHpqC*2Fb}i;hgHbQ}jA5hmWE&wq}K!-LAC+D7U1 z29y|Lwz^CNC6c3vW_h9wL^JbOEJ zWRle`;Tf^B53eSS2T%&qCzeK>}3X^E}vB&xTJpUxDjrzz??zy62m_=gB5)H0Z>(KGdJnf|lO@Obe-)w`Ij;muMz_NU9OsUxR7)oYCX%;t|r#D@{{ z;Dj{I^p42NKehOOr%n-0?jxBzPudc;a>(KK6ipiLRJTprjF4AcGgl@3XG7_U2_J`^ z8XLe3-1cPF&QjPArmVDD6rW2#ywTET%3tN$trf~%C}-aNJOz#HgSrSxTG;P0%<4jy z+mqc^eLf3r*3-VX-aDQ%Vt65@Jn_B=D3~^B%Vc`U)yj}LA9O(bTgdJqzOtwetZTB+ z#hh5ZsKyawPMLw}(ojDcRD3c>alPYFBv|-^?^3tAHM}_d5VC zCQEwst#)pCi+o|=Q}qlPj&vH8+g1pneyWj2<=}{~O{-{28PuQ;!%!~#1mfX*zjqtG zCwB75BI8lScCv&Mf@M5S?(47LQ98MHnFEFG##Wz>R&E#v1+jFb2NakjP2>(U(2$Xs%_G0pFOcih(&*V=l3MF@L_7H;* z33OEH+UbFDwb8Zvhbe4N;!3oAf;lqo2kF642Ja?Bz!N4j7J=znF1vwGvl2;hY1x#ZD zr)Y_ocg}1|@pSbTxu!qb!b#dL9LTyZoJioL%k&N9pN}*5_U;hLQDMCnjoK&cCvvaE z_{wFm&^0}?fW=@gg_~uyeZ(5_6Z0O3|joP;s?w6#xN> ztp7kvWCt%Utx1h5f@+Jq5f<3kaC1#pc*p@j--3*UL!P#Lf9V&+_ksZ3+#NgfL|OBd z(R5kd;~0L0y-0{)?yC!He01eQ5xL8L$aA)K9Hm zM#e8v#yPX6ZJfebH-^8VoJixpQL-@{A&3)3VrXszX{f~IWoa#VfqQ@o~ruNhK=0s3vCYFmmAS5O0EQJ_!e4S_LukK>5<>EI` zLb!y}{xYKsnaCKHrc){$Ewjdh0YL?_)adGQ$eG^)0%ZrFxbviv%EqBAsbWaJuFR@teenKc^OCVy&o3aidF%sZTE-ye z$KHL~t#A0oQiD^Uc&ZMUFWa=+?OHeF`K_rN7 z7i{kTtZwfiK6mh#JGfbTqR1FCb(O;7A`_qS0lQ46zq`pw`*0=ACFm>ivu;4CTu)9W zEa=4bs7Zp-bsx2|{^?CveG>d;rq5zn;oCOPSkdNK1WDx_s}S^0sxTdDXXJ;a)0bM! z3L>%R>8L-;>tnoBN4-3(j7f2KSoK%>fvCgiqXDL11j325eJkS4Nkt!DZr#0xGg7ol z4B6nsM>7^=h;75O4G902({O{}-KcD@wvM5yY|*Ib<^jF$-%wR0K3|!=Bx+@H;i24o zL<$vHbA#Y_s~FQhXWoHzZJ~AZW(cs8-PjDeF5E9`jl4qxSbnc{RT!FToqCGq&InSxMynQp^#X7F)AvSg~BXNcD88~5}KJo^* zZH;@L2aur`A|K!{(cwqh?nnL|{(f(7|cKcz511W%NIdDA!1hu)Z zfNaKWj()4Mwub9&-RQaX;5^KC=PC_>fKe%a7s_(Mv(%ObCu7>VCc>K6T|HmG8jl3zCRNdv%v&;tD;q^Qn}! z%3vLK`Q~Ox{LP-iYc5v3m=oi)-RgXN+3SBI4{w&rhZ@!$M{QbK~AK8^=|8Z-UFzR%Km=GY3)^DnAxa8Wu={d!-UnXQh{t?|l`B%rw`_lQG`d zyo%_mx~}O{orzny-n{Svt^A~CEa5}4Ao+tTUaz!~b8Qc-*Nc|D-69;Zv~*^ZSgd+O z4Jdv-&UXuSX*@z#15qItQR@@vaukz)D0c^=tmlnf0XXbcSv(V|P`s$VzeTQ@$*VVS zSuGYwu;ua1O)^kU3t=KyaZo}LxX-85;9*&cbwKo~?sj};v)KAO@;MjB=&Ed9C`B3J zH)kj4)%yMT)N=@@EM@m5;#ZTq>t`<-<<+sxR)s$WVKjG8Ao_~FYJ^I{BTfb!p`++N ziXnZw;yKZ&jrJ5?x53;IO*V=SiG9&a9I=D7;4Q7L6oY(*M=2p{GpBah*w2mTaC7-Q zqgOS`)Wkq&P>~_k(Gcs?2+?2$YCR>r_bZO83=(LVv2P>I_bcx2Q6h_1=^dr=6hvtP zjFKM$@|S|~dHtY(sxl(j-jt=>zeeeEE9dwE!z`v}BO)?!;5ndzQQ8x$dgyyBNy6*( z)N;y|zNEai6w@};tpU`~a9$Bn?=_KX_*;6fc2@vJ3s$f{D~^*`lyW zo2p9T{oUKK+cFX)^IXf<-iLWBFbk6~@`Z>CV0C(YR{~!o%C`FoLX}k0 zYZ#Pki_FtRwm*}-ZWT9TEm>lu7W~qeFSP~#q4A-f!2Y%mi zGZ?b`vHr2XFwhR1;-nYpl|tGr&K!=~Ex2{4B|(Zm+e;j1@XwcrHrYhE7PkeQi8;+? zt#oc*FL*@R`*ATdbp>JG3f3D>}ze5DvL$&acO`@iDRLeg<# zCmZza#>`T20%S)(Zd)_5saXU#h7;|!k2a0ppO@>jwRH)k*G*u4uxV}3{+qGAAkCcJ zIxhiGXsYq}KvfD7`J8;579TO_2jspAi_lo6Bqs@DQ42+@1uY39wWPP$@P9G=ua9f1 zGl3VCZfVtp{ZyEhb4Ci2sutb-N2bjZ#d05Ke_%;Ctchd`o&t2BDCAn?5NRJjM3BAr zhT)mU-CgMs>Zw{U;$)7n2X^*sWx7X+Z@O@HGXe?ZlU*Vw&H%=kt0Y@!TxRLBLfTGj zo+YFG3|EP&8lTid0we)fR&|ikjOi{d)d%u>lU7AH4;W@{7-|`w&iJO6Z8P0n%VA{i z(4jUHMUl^atVO4E+&tRBK1c-r2V&RhS#~X*U37c9Xrf)rweBght~V58%1=IffK-q0 zAY&;}c6G_vhyE7PbV!_OZT-+3EOPn;3t8qAAUI0+)R;=7Vg$?AD~u;3zGW7+M1>n? z5mQHt(oI@T=4mkSR^T7dN#_tq>!5}zI+-Q&of`CG_YiRG}1F@#-j0~?Srh0tyVQ2f$m zVQ`HCyaZzqRmH&m?@hAVQ5NFi3Yb=wdxjhLcSu+CD!Qs0Mb^dO_d_=2Yzs{x-7squ zj?k=r^h+7@Dq$y|l7^q9A7`(5!vguAGTqpn*{LW0(*9o6H?L&ggofA`gnqy7El6?k zv~?IhJ!*@5Z^bUeU4AkIaF1*x*>NFK_})JyD1j||K`xB1B8&6h`ttxG%<dgF)DCQ5_E($y}GnvfyPjBV6+h1 zx#wyqsG|1FDC!%b-(||v8B%=HY^l9pY`Kxa zt9WMqRndd}EfV|0YKIk=1LPF9i)e>~@&d;ANCVM|j_4ZcElHe-V>OJSd3i+Yo+*!h z8+&;A!VxN75Hg% zV}E{%qIr0v`VX|>ahYC?>N2o}cYAl?;v!6lgh<#qM;q-SWdg?y-oz{`ln>fAC2mMi zX|8)_e>fSidI#MBr99c+OZ(>av8(Cx@NZ%n4c7YSqpp(r?C+Z0EhU`DRwtz2pEov6 zl&>-rDuw#X+6xd#VXe0|b*Wy%6Sz9U^&=xrM6@YYPDeC*HGgdlh*eTw5%$a-Lj9vO&T6D-&3~ z$8#WW)lfk~pzpS7Eb}R^$)nF?x=1RM(OQcCK%5@*svsE7NR|jzqA>VDktl)C3=JKpVG;>v9X>|0JT*HUBB*gRqd@~*w|C$Nz9*Y6*&$X#!WaISEgyvX1T zeMA8OsDiWU#oPr~VkSzOt>_9~UrD7QzuoxM`<@vGIqBq)u}g`7J{)MMHcH~mW1&`A->S+wtGuo@vM=3m8h_^Jc^7VCt|e{*$ltj-(zJgN&S7 zUH(b+^k1$Uxi6?kXHj!$A0};(>8-_*P2rwNP}1xz0Js zpDeM3@}d!_(a$EsGUpS7I?W)Gdc1p-;#Fr>or9B$xzAseef8H_c&O+3{TpcngdpLr zfR1`!8_AOmAAlhH3Y>p%I!UYu={R?acv-V=&WGFB&!w-FlbxsEOMQC7FPn7GRKkm- z?GqD?>Dq@qqG+qYNXZaGQTeO;dqF)+*1sb~+vS#Tg=q#I17U^}z6SrK5iz_}n1wlK z+%m0jQq$zI9d?#S$RbMo_-uv;`C!BIR4fYzTd&M`yXgKsKd_)K?d^G z`PxCxterng*FJ)-9;vQ<)qR7se78k;<)x?-jw(oc7+uqJ_)WxU!enE-H|%dUpj6xi z6{FO-SibJwTZu<`xq2~joOd{zgF3adbRbvyjskRr-++F8 zwFFm`MF5EFA!GuZ`OQ0LaSQCvtkZy+gAK*RQzW65ZP|q!_1yF`Oq;|kIrrq+ZWGzW z4ZZscQ2BBD5V&qBye|0u0bH^KLqX%NQ4s&x;XlyJUlfwR$UzKJ8WtaVfV?~#!TVVr z_e=+=#9$({soH}U_F4-{_HehGJl?XO`Jwn&&P8hl4tBF^`I@qeHWF-N9%fKT|haX;W%;CkR>s^k*F zcG9)Kpl=cWS#UUAh`X(+GB|aRX_1-&Gqgf+e#Bx)$em)!Ri6bEC2}f0FKaO5<7h z{D)ZiJJj;4;cJtEk1I>tfhA@ty?h6{?!l+@ad$npaiJT*Vj)~NMM29AlV<-Ot()sz z>j(t&^TbX~=w{ZEV(+;8cq~{Ga<1cmeHSe)$>kPE)qMr&1u%c&)u)kxbjVR?#%cW5 z0MwKEyj%D2ppD;7!!k!{?W0Hs*V3H{k>74ryG<mulWRYTRBz(byce-0V@R@&^B<4=2TMK443SpY=#ALx+9P<5Zpf?Yn5 z6X$h|`)P3DnCS07&k$&271ES=|4m7ZeYCVRYl1Hw$+679?Dc5g*iM8+qpNbwWbylq z;nT01(Cv+5WOchK75}4hO+_mP>BVT37>M1a$@aOc+Nj_2bgA7U&6lTTCIusXD=onK zN_fX@zo{o^7H1>D-HEg1s8mvwcyF_cXXNcE;80|Jw$duh@y^;r^2~7~Sif>&Tt5>_H^5q$^@;ILmy2> zDrbrizf_;H1X#JdqN5$&LoB(XoxOagj8Z_8Izre>Ux@R6VhyEpOe^6(|0?1yH!}vI zvMrd`D;{Hf-(N3IkCs<8_J@M94#E3h&5;UTL~ld z2#qjjQ6j5(v;FU=D(22Pgo*&bt8n5Q_y0X|)O1Bs@P4tkwEjWXGs}e!-)@ADW zm^iQl!#a^uC+K$r(f27lJ#9j?P@6L3p~IlQFxwQ zZC|{IqOHobLOAsgjRooJx~)%bNv?VcUL=jAfhG2Ws2h3;j~Pd_$~Ui~^OP@YAkaZB zF$-OULnxryojd}vGlZvqObrV}@d)fWMB_K*hg+Z;^FSp!97Fyq=Ae0}S%{b2>N$Gb z96AazcgX)4Sh>U~bUo`n?b4W<|Q+7WvZxPc%{23omAWhO5!SkdJT2 ziBFB&?_i}|t*LgJ#iy__z~y~-kyqkw%h9Vw&n5?k8gi_;hr|QcTfTb@z@M1T@fBjcx`Va!uU@DKN*Xo+ z1IKAQzfANWm2a~_8_FdewUz#4RxErF9EY_#{!J;xSJnrVTgH)Kse*e>5`Ajh$E8P& ze5dFrv|JJ`bF{J^-L)7c^(XVLwV^?zX;f7`45xRYeHoia6fC-TO8LbCm> z8Z`HlwYr<~EWw^WX2IESJ;(S}U8>VBCH@D$AjDFHwl3^L(pt`zA~zP?g_X`r_Ey)F zWIwD{B~$*`4=i%zQ5#s2+(*lwa?fy)xE9!(x|6TvQ)D(7`<0+b&1J0E7VTLJ!Z3s& z9$~$3@(W)Goxo_4aLX)I$W%Fmh+nz z?&=oAy~SAqcR!^m1J^z+*=DokZwjz0bh=da>FCOQ0pgh3c)-Ni`IhlrVm{Y-DIg3@W?uOGNG^8m@U!HfIFhDsRnvM4d1uJBF9dJa{m$f zv!o>@QM|&9bvd)Xx&-fDfV*mkP|XQk=x=*|07l9UrG`LxO28uoPC_|N9! z7q%tah>{9qzW(q&6@Q-Cf`h2^8RU85$tPk>ofF=@sGh~h$9E(d``?V)HyV9#j?tQg zkA@u|Zs*mqZmtM~4$VLDZ|=(&v?&brb@_hrh&R})&II5Vg;1L;Fw|e?CFmNSbW%Go z$)6g|l4Xtrr3zS^gP`j-cRwd)RQ!~w;Ej5YSdl<9yrO|Qu{?G0>nNvCOOC~#C=Lop24?(a4sRu)2 z@EQSHN0Z&>nQbZM-rZmL+Gh0YN>p`X^uez4&zDH!A%)rtV;8H72X0U5oMls3bi-^^ zJ8STuGg8T=3CF)Cd0zJeksi|7FWUD36y(+57?_MMZeRbKPsQWtw&g2}Z?Uh5dy6=l z?&PT>F5f#gjh}1N?8PqjMrH8tCavAdlmJsy-Eq3YF=oZm zqFbooM4Kuk-Y7jHxIp=`*3LlSUO;tn6R>D|CGfZTJ+yZFRO#!w_KwXEd7%866S7Jf z7fu+*KF8$4c>7AP-Q^MW0|g57p&fht_g;>;-JM9o!e7Vtym_3}TM3sb+x2y-Q{2xJ zg?Dr4W+Qxm^8_vozb=ka`O{Gxhf&Pc(-`szgyw2UzeKiP=sh0tRB!I@vi>8It(I@B zqnR$HRX|@aO}Q0$ZOeKcBd?qW`T4uw()JGKSlPvS5s_S2IfOtx_@ysE#Czg&>EXia z{>2am-;hWi^rXxKEgPXVrBtgueeu~Pmrs+bzl+^}`dqzp#<+}bU0b(u%g-gMVT8^^ zCW$fL7H#(vcpj`gxkb8xR@0?Nj{gHedDLQLY6mf&=CQ;<_Gkl(G~*|fJ%V5VRfS#P z2nP3dt*-}WdR4KchLg!>I+qu=d}xut`nDvhSeFT}g9$0NbeveI05QnhVAP@i!>>P< zMl9J2CrQ7|Il%Q*Gnx`QAKYTAwWPf=QtiFkqgx^`oT;4*Y~{!o+4eM8F2Ru%hd4KC zX+vU`a~pYXLjj+*Epctg?2bqEQ6P(hIT?GPN3(NA;44Y16ES+(oLz}m!sYyv$tOcH z?7v_j?7ynJs|tG@x}o(Tx9OvF%7l9X(^F9ETWih z1_Kr+$t*P=mu@S^3o89NfJfLxPj)8ef}=0Xt%r1CVXIA-F_=zcS^$HAz z8>k$2u%q19Tqsp%+UxUsXK=^I4Gcd zzq#(%mR83v^m{$5jd#JTB+PL=g};|)4$+wJc67eK1~5j z=K2t^GB;Ge59O4_Hw-tfGJp6*uCU2p-sso7^Li1`QRlM*zCH%+G&~hzT8Tp=U)c14 zcVLOW>X4ru_iMKPe_#$*`lNQ6E1Y3jxV9VJt;~!0B6C^#b1Y4>qgdE7)bs)(ERSq~ zjhxtby}&t_8(e79T!DL9-8Qd;@ik z9`cN{)3Jm^lI(?ia19>7qsZG6`7_yAjmD%ydaFN{^C|27)Ns2?LL=**SW+tzp zI~V)}UgETcY)b0y&@teIV8)?<@<@d7fjh}(jb#S{V42Q4)OY;$d`NksIpJtU9#%Zj zabm9w2yC40Dfn1(+inEMe@z^YjM5?f-_$`V(2D5GU#Q`dVit03^rY6TzpAdcr))HD zVS8Age6ZJcL!d7om#1Tpq>doX#v_R7A9GckyDmQjmPl~jJfhcK0A=SilbIthHqU%x z`oc8u-^=xYF|z=G{Nf{>j3NUu0BshF!MUaivw=LWwY@@!#7eAOEt_;GvW?&mnw(rZ zcT3{vE1R(stJSbmH;O3HI~b(65KYQ}qsG$=RWdy3qSw}4H{Rt%p?7a)jIS~{hA4G$ zX;UcA4T+#e_1-V;p@`0bJTcky)%_P0&tE?K*`D^7zu3wLRZ~!2g=>7lj&TZT{_-MM>t5uww80Z{e6(Qv(7C)D>W6!CNQ_7kyIr~0jrQR*+a7xhWnNssgAmzb8HAn!B1D93>4e~t}18}I`1 zZMjSH75Uo*7Gf1u+p3Cj{K|GgFCZK?3I(|r3cFX6JFyRXQdmd=^tnlkYJYss;;G(S zTYGn--L~x&d+*uNR~j$tLJadaOXbpzFjtvAFyZ`k5dnOCNb;;)qR`UM{4u2jB&8U# zw0?itFr&T-h_`-ok61~TvjQ5WdvlM&0S>C)4F84lV$4^S6wV9OSx~>e(80OLWUgMo zmCgo06XfK@w1wOq8w(4rp*46aVs~pVD(?=I`RtAotO)v@)yR+j-!%|c3?)|tQFSr< z_H5VbH=t;_0_pBcYs;r@A(Qn@ERzfWIK(cgl&d|d*N%!tEVPoebQ^LYC9F4&@$0W` zC113*tX(l{gY=7@Y+9T9a;5_u4(t2uer9U*gy4t6X1{KFk&NlISIr|Y)|lX5+c6=y`OY_ zjn&}T(tMHi&Jw+>yX?4`i6;JK+;NTzY@R#=C^R`F)_0>PVr%vtl#TR_R=ghc{0AzA z3jEzGtdffweZkHz{K6_>C3s-wUC8OU!4p_!3ZYszEWiQx$m6_2^tj|2Mp`*gFjc13 z3``CRKu)i|0Lk@Q_K=@}u*nhsO7e-$YG&=24vmGhoq-pPs)vQ8xdn<9#~F4THlUGV zjpE{rkqFytJ46SKofP1lu=4SG{0VvQvwkQ{hg&KQ6AD>+#*c&7$-e_|%%`)!0d(${ zv0=dxpP|bW6REKey?}E|EOX~!wUF^RTIt2I*xV+#GmmteUjN=fg1Wn+ESk`6@9aK* zFb%p)aPa@Lpv;xvdgOXos3&ZB!%7{(>vnkafs$b zV?mKVUmWWnQM|^L<~_kcx>5aqYjW9iHn+*8;#0c*f|;a%m1X^}KRQG> zQ19f0_Th!jWQLJEIdO3@&K~zrfyKJx0-|A%k^PS1*Q9+QI{996)5O9&T$r|#Z}m!F z$5}qrOSC{g;9H{*PLSX0j}=eVr!d1fqbU!yDuvrBd+j8tD$WcmrPRB>CN0QQfa5~5 z`$Gb95iZYe$CbEy6 zDW(m~LuBo&vXprKvk%*gG&^`e;2Q`no_!Sgx4HfGag$<`Jgu?vUrDP2X(c;kJ;Uo+ z$J7KTOT2k1xJ0+JFo4T1)tM`eHOyI0NGG5v2- zH6>>#+f2K)wdP18Q+Yyij*bA{M@SB*7@MlTQjjI5Xi02AOWTKjF5mRJkCW6 zFON$W`K^Doex#FN+&JowF=bzWRWyT?69a#A;L_zT;=I!1j-Oz=WqsgxO6H9XTA#UK zfbIfcS&_M1Z~}}apUtzVSu)_+FI`bRgFNIuDU6Z%HHI_v?14mVGc!@Xu7s%oPb_PW z;^#Hzm`I3R;J|ZQu3-KXTj0bVox2q>S!6HIU;1l3C4XqiNfW%^K#4|3Z5cfI1|ogE zy6;M!b?T%avOzL5KRC=#=!7F++e6I=4rZ1#<&ol(c#POYlpaP8jSEhf23dvCk$5A& z>88*M>Z!LU)*Rmv@8(T+#n2R!Sx5N94{sRCwsuqBo^lDWd0awtd21M_k1N+*Glru? zVn)Z8+zH0^y^^(Z>iz?XWq($n=dSyXMt{bFvR@t_B^HZHxw7I&4gf~a(N}OC3s;|L z+updP|0(RUiX8HKfZo~i3YB!Oy|tU=fHlD7m{Y%eZO&Qi;#O`A7RNsQdJ*+g&i3jc_!7KEH_We!u9Yxobw|S!(_-evg)bL!6DL z%26`^tZPQr*HhTdBj9*!2l_EZbT><{Sa|mp1BSi~L^ytpWiX~v!f1gt3WbfZ3)5&C z(z`#jyof=wvKQtZNs&Xb8hK_Cz`hA!y@ecgzi6TFcl9!?K*zi}ek!iwy#MB7?mH)P zk41yFoY;pBe$WNm;_V)+M23_GEEr$+$Dtv|L_41!eG-}e_>UuVD3%lJf{Zw$ycMf0 zJpx7w*3tfhL3~H{JQ@pfnuT1hGWj2uA=X-$tGg({Wyl7yj*8_dYvtm1#KQ3i>MABc z(&<5l;C#mDy$9LWJp1JV_)mo9X%a_?4I8_)Ng$>la@YhQt0g zpYBtca{u6zQ`wu^MQpnwD}cn3(ag6;2%i2K5S^mKx5i86u#9g|Uik}cQugFiR2UrC z16O`uO(&kHmq#0XW-$U1wvU`HvV_>LbQC&ok?ssN9+DFxAAh!;i*U{T2eJbH;GSWh z`0!cq<>`|%2TdQ%Cp-CHk`zb4#&HkoSo#pNapp~yx5GzCofa~2)>AF-;fQy@yfYN} zkO19idpzWApkR84qdB^<)@%Fd)P#k9MvXp%KWd-nl)B~lwA$tL6h5DP+9lWQzDIif zQ)6-WFcMvGT5iDT=&!$2ShI0@MrrFtb-VD6TGtP?S$&Wk{Onul7p<>jS8i&x*QVdt zA@OE|7`GnIw@-nUplIYtQhW+K%ktaB&}ZFV#KYPjpxVJoTLnxUDzx^hRMe7L8=#su-?^L@J4Cg6Z5`j=R?#hszt*%lS*{`>>Lv{7Hd&` z(p?=bo;y%Lv|i>V$9poc>d-V6<_TdCYR;3$N|m_(0e-WwByzlsAOb3=_k-66kMI49(}GzhfR#&stM)?-5OEHQPHpePkfKQHcAvcTP`PXF~7G@VRv%r`qC2;a0`s zpENJ$7xf&vxi&CH!1~8bMj0&|aqkUjtXARA-}hwo&5Y>>mJ@!Z?)>Jv4508i%6{-$ z*hRabMQ(3+-NwFAU1uMFcleW2%^JD0&tMf>rC>pi z>v4Q=!Ve#&#;?YG1O6duX$<~>U%J=45*Xa&!`+S{<{xw7d`US^4P+cT&=s*Bqe?;dES&_oaEMjyPoF7Uj@ z+`YqykeH!cyw}NT<|HnmemDDDbba^;;{2ep2m_vb*rjB2*Yzj`_hFSuK)!&!>%RZc z>1F9K=(OU&@5`E`g?Hi@zfid*rFwH`zD343`X;`1kto^e0n)QAl|wn~BiQ_0IoL44AgC;7JWf$^_oC*cr%NI4bbW>KCAfFk0@S z_bS4*bWUFU%=H*{OGuaj5t08Wm6jiZrf3a}62RH4cm)&Omv`Q8@ERUnKY z;~;5!4Wp70*)2f8zBSIKI0TX{*o!RX~5Mmnj)Jjf0^=wrOk=^(|>3#ZyP_1-1O z-QHc>SJMG;s2Nxo6w#j-xC0>lldRE~Wc^?Q(qYyIRd|Do`$DmKR}RiVx9~}o=TW<0 z--9LoZ{lh_JLC#?9nriB)2fEjkG}{Iz}PR7_Y14UZiOiwaLQH*Fzvzjo$`hGOS$X5 z6to{nq7u}2;V%WQGAc`%B`EWx06Rs}w^&aK!LmBhXrA4}KV@Kb?Ol7fMNLa0nY8Mx zqh70ry}S7K0O{8i25Brb7FS|-RUK&Zk8||VV#3=n$X5b0n zEepwg>z--T*|s`F-yaU9e^1r)J){V3|02R`6N)Uf(q0pL+vMyobd@RPlVS5wXZyan zvw>pFPfo0Fuq;P&9I+=%aW#Ma(Z~wfLC?IkWzF7Buxh{LlSdsVY|7RU4Hu}Fs`@rF z^~DzXTPyOWN6Pky5B^^*J~XX^cWu@1F@^%hc53*V*;O7qh33A*9VCNgv2)`OqWePi zDm3tS!*#kzbF|2f&B-kxfm$o}*3^BbN0M8wV(DkZ=71#H@8U=Um*gShz$btfhlV-Q z3{3*M^P9!F|E)KF{yO-m+l(nOZy`T0*N~^MD>kX zZiVv>(#T~{I#nX3n-dp_teR&QdEx{t`nh$^jxQIM3C>+W3|Pj`b3uB2Q2V-y{o&!w zMg5-vK*3;yc?F2^d$u-h=98|S4<+3kb!@m-M)QlZ3-&_o#sN$9Z6E#3LbvhcBFm0+ z$X$BxmuSWc8_CHt6S{G|D!LuJ} zO2ms}himfKK+7Z%y2*5?^W$u5bMET~+=Df#52QeulKKZ(j*&#*zr5Qcqyo>2Y>S!= zWn+g+04drkqVGH)$es+qdlD-Tnm!5r_JV9mgx?3aiw!khYAB*RPXNk*2k}&3DwQ8E zxl%Qd77`O825?5joE*m|?jKX6@!n|IF@*YhRCTHwU6p!`*;doZa(+?( zrdQmdH0bUZFK)ch_HsT+B3$xJ`2ZpZx~liM1WIUEAo)#c-J(W7D^rYp&Ky+ii89-6 zjAh94y#lB~sEIqXk3j#!gS*)i#%CCB7GR~l1iz#$5)aW?N1djsf?Ei-1{Nj^kwvm| z31n&xm(AoNI`*nht=Wi{Bk?jOrd4#sD&wd~!x5px!`?b>QleZ;cK?7i7 zp1^B0g(hh0wJFm_Y?Nccxdj9Oa*V7OVp@q$O^m;1(Z^H>KWlmR%s+K3iGMM+{h=LC z=J@C1g#5?<$I)3hH1)o1d~|pBC`B6S9-T_a=#&OU8tD!tMLI_aV}QT_kx3}+=om0@ zA}9z05kWe>@A6~)FP$^_a^pQRoZhdUIK zf#C`X4k(q6gru?N0J`>7iXLB?zDuZ?bbJA`70`05w@a5J`a4fJ%Q^!7$6b)?AQoyV zyjE6R4Q+fH@n|KC{vWxH2OolJi?e7@h~~B_Pzu>1ep4`zLD#4oKV~>5$jl^*u_>(= z6vZF}vzcA-i`%#S6lrcdu!^=+lVMf2Im3@QPU17Gkj=II_kC>^4Roa|l<&jH26lce zJ>Ck1O=^#z)DR=@|HaS|= zC-~0aQ579FuhX<*<1m^$04i@*k(fLK@Rl9tK9Iuq7T+P8?rSxPZb5dYL8K7kXz-78 zBhG_YoIBMIFi&!P{S`hNdBmT@7SN~a)H_{hmsuU=dr$sSgqa zUjmY};^tDz4x7`ausV0e;aT$J0dF5|qRDDJXcSVZh3^QQLtKLi^@pt#28G5^Nogwg z6FL+`euQ}f?Y#(O_GiC{M;xBS#5BS@6`h4T&rmU12bRY~B8RFvJvc-` z3ib%j78VNE@Xi44XX`P$8N|@7os|%gsw*sbZPBcIJTUrF#m;B(ItMDI( zqU5u-P!pfL)tsH%numRbZ17A$%QMEB?Zg5i74Z3kL~HLpVX0gXtABQIV_QW7ZHK^YD$prrIKA7E$&3ZHllXL_WN5^Oz-Oi%!a7 zGf$DrEpRi)acH=-YLC<+$SAnM;sb&~zYza@?ql4+WHDvBWGu4Zl}(cLur64E-H4?p72rRp`&ghEenL?RvXj@H>eU^KL*xM=q7(>John8K2k2 zS`nI|pr?>CbkdpC=mGON1P5wQI*>(>npc_T0z?h6e1pR`CzJziK(UvVQ1M~U9F}5| z)$(|cTxujfRW$NA3=lBt2iN?Mo5D^KsOU6{jxT>J?t%@FS+LzZu`6uI*a42sp4R4> z;f~KUyPY&shci6$9`Ena>WqC?KQx!IyG8{4qZ;*#AuMhr5tXa(E{(xo)REIBw#{e#y*^yzm+%TLl6MAR< zFpr@#ch0Z`^TQDLnF&7f(cIuf;hr;X;66&fu4t<>p@|~+Q)1U)!uQ!UXM(O>0!Q>4 zi5%|25)};*tF_1MG^{FOZAvSlAASQmU0g9OSfCm8&+PF1Ut+xu@>v(|;o9VRP4vLg4$Oo14J8E#=M6)O~WsHk5IJcJSoS&9d+0*iVNF*|ABwhr>Xd04o zOm8-%nCh4j7ZO$)N*!m6DQ#?BqRV-i4i0c5o~g8$3fDOfo2R)s)rwSod>^_0XPI@7 z7R|tUW6m?)$3HqS>1@p~jnf}DcLF(I_ZTNL2rf^MhttY!*KsV0fVbCm?YWY#YN$Er z7Rm1$5^CW*C|~%wO#icokBgC_wgF{`RjX>qP(?qoMx6}#xy9wUOxDMg?bH_DE1b4t zQkR$I&{ViGoO|;i91~2Jx^wt(vvjC~CoLJLNsL$l`l_FvFN=3IAF~t3i}J}nEi~Hl zl16%#4i<2oBZ0KFa{N1HuWQsC51Aa}n2O%~my+eH=1EnowS;CWsg&||*QR-I)*5)Xgo}LN_h|dvB+ULt5K*M> zF4c_DPN&6sx=R%m33gbO52ls)1~G`^ebAccKDX}vMDr(RIL+(&=wT7*veO2h-ONw<%vpPG}N!!`=( zkAG3Qed_8On$lH$7UuZ}bC4|Wto;j0GQ$p8zZ1r}0?Y=~YywHT27Zz)9k>y74=qc_e83Uecu#>9 zIxbr#Iu78^f$=RpJG}%dInUZC{mGM(HGG0$=NVGQR{|ayRP&AT>oL2Q`@`UxBzYdp zRA`ov(%ct%d)-(d#U5Vm2@7=fP_U9b`jelLJ_lE%Z6XthyeIR8o=R3H`=Fw2S|Z21 zCh`wCf-L$$KK1|X>>Gn$SVCUSw$1`ce3XVW58ZSyObFW^IEYQFS``_^90yW z%#8Na^d}T!=kEXJ-fs**CX+X8;U9Ml9hLs|)6XkF#m4+X z2AB!#-{?c9&}}{P9M=A@lEe$zl0I1cEJu*(5DG79D9L1g^uKJt>ksZ_G>#ADw8vKF3DUj?qaAl! z?7&nJ2W9=8BE%nxn6Lz(X?~-a0Vwa|vmOtQM0v8O2StR6D2(*uhx~UUcMGUWa!<1bL{-!E!?m#&eOtV;gCjsPG@`i!V#QDRxhH%SNcz~_0MGw zlJbx!94!w-hHGNHB7(W2`{#v{H(6tR^zi#)Pp2KPQ5FU z-?O7*5!>BHnp5JMKXB%@3XyeYW|W=Jqd}|AGc2xYfuXpVFH~Gdg}WO;Py(!R577 z2pUv~r`s{=p%cMaB8kx2m6Okg*$CC9G^(9?Ze3jD>sA#X-DK$#mif$(F04LH)zd-~ zRi^0CmnueCU9tPkI{#3N2WL~@+&%J|Ma6>F82NlW3K22c|bT> z+j0MxocjjD5V>s5+s|r}mSYhLyey+ojO0B6c%Al(NC~Sj0;K&YvAP43N3u8sT^wxx zjMZ|*gPD2;pC2am&yplV0;f+GnEYs)?Mm>~(SINe5mI)CchQq*15EJ`4ZRs6ss_%m zo!hIuCE>92Oe0l4N{F!C_Oseh6~4w%CiSRpx1! zLp?OT$McQr9EG$XUD(v2Zl}KUUdJG^nBxlzul@V5NAY3RAN!w>ujOxzZEW?XA!qI= zC26lzA0Vd#v)14~e#hPwcLH|jNhDpt3fF~=X}=!uhjJ@*l|Lvp_KDG27u}rraVvfH zi`D$_jHGfYhlYbx%+C?4Hd(b5dGcOuM&nwehw z%*eXFc>9%?dq&YZhfCg|cAs6Erb{dvQci)@r{36JlhFBbZr<_ysddVScCd%2PVYG0 zQU`mpT$yEfrd6fA=B6{(U1Ot^10O%v+S;_(>hAVT-RIw#WZ7;@^F__vVYdDvgZg*a zToEP3;q+d9B0^*|TK9$-5IlbX)>FQMlmD|H`0#wda({a$l@0)7Qil+JuvbvEjac!C z;NHK_t(K*KNQH409#5jWmVCeqo?&f?Pz7-6Xv4$`z-}39Xgn?wYlkcLNtNvb_tSHX zWf=Focyyw`%2vvAo|?xmuZQTuw4y`HMTau4wBMw;e!CANx%lJZdse`bOwoU830o;N zvq7i)2WqaQkBl)Hj>7k0opb4pz$R{y7b3f8)W7E;(ZTbPKz8r<#;0S}4qL-D**F-2jKI`juKowf&UcG?MpRMpLh7jpGYezKY^T=c*vRU1ZpTXP)!C;b4+~Rdzpx?3wgx9U0&ZtfA#U-R_GMNIrh1w$iyVY37+D zA*E+6`X=T|wMht}!*aj5#7$;DBXPf9O&T(@mnwMB&pe6}*&XrCd+LtWk0tE*pJ*AW z!as;=aVQRxjF`c1Ugz2Jr|Xqm551q`9o4>`qm%SKd^L!w&zq@EBpzF}_?OUS%5&JL z3tTJB4UX!jd+RgMl&)~P)mFBvCVY~M`0hY|q3?NxUrp{Vi9}J^(M|K5lsa4+ZS zGf@((BLoJEwa9e8;3qWDVB-|cd8ivMMuFru-Vgy6f9FR6e`!#Y4`2*}~;ZCY{k4$EV=yG0yXd@*(0vdbCO z$`t)GiPaNI#%cctLSxifO)CsS>B3B~TJtm)2T8`YWLUBQA4D-J>CQ7S_&8p40;6k? zDbfNwhK|vq2#I}*u@@Rnm0W))1;$c)oAyw`S;UV@_g^7+zs@OKiKeK<`(3-#pFLWm z?7nj%4IykC4At;qVzo%7xDpIV)>V4Vky>(1;r2)5yBwPq>=-HOd{8Gp@cx&WM z3JIDg${&;@ZBz0Uv9&bX(D1V#G<2+njo2tALKQxL+kSxytqBfd00LGE4p$baoy~7A z%7N=ty-t%E>uYa)`S~%E&_`36g)@kCeBHQkU^oknhhTTEh@;w+d+l7SbeKVQG3WbM zAp`mG7vn+=to@C*OYAjh=)@<89A3iDt#C&S?acer^r(1_+Ron;CWC-H-aEo23ZO6Csd!XUhg}|O`ZfpRLSnXt^xOrhGeuy4R zgjy4CR7GyRbLw(n%rlq?J%`D!}yefG9^tMTtoWeyLPr!{>Y`&1uP zQ?&?;4&P6gZfmS%v@rj+&ty z#DIP3dYmznMP=6z*^u<_{w43b7@QCNJ!*mldRe!&C$LZTa>@7EsgM;b#cTw+SUaBe3vRALi^<)Wl)a#Px!Z8R(#S& zLYhaX&$ZnqXEQ{DuB8k_#KWswltQX+%msADoH$>RwYdcU3<+R6Jp^VQpPk zii_Nnw0S7uzD0xY6}gWJOgJ_S%i}BiGsJ7>z1qz01j!)VFL9eE$UxSbk}g=ULb%^4 z^MBBuBdH)3_s`5S;~l}Q)KhWI5FdvKb4K>`7%`IMF@XtA zIrU_$kxW*Isk1D(R5m>aZsU;1y(bx9 z(9{D7kyq%=mktx9YZjRax)(@h@mjp8P(TUVetgq7uVtuwC7GCeT6W27t=93E`G`ij zwWLw1&~vP>{Y8$v`4F#U`-qelk->r_(szq|dh63n(id?1br@ntZgO24iSNA*Zx}X} z_nqsYk;`tQAIeP}x(M{lS?HzFE&j@?3Zpew9;Kt17 zprT6{1D}oK*U(dY_-LJUht!~OgRh-ioPWiZ{U2Vmfjsvmga=5IpF6z|wKOP$sXxi; zT^zpS+3ktnShz>C{R;{3?dIob;=5b?Im4CaP0fG^qo7RynmquWHUymZXvykZ86AwB z1x59vM)T}4_wz2cP}yf%^6Yd4%xgGp?128~9S4+KVx{vHm~faYpp;;KbLv6Eq`dXm zf1oeP+J2dCq_E1~w_!oPWHx=CA!@_@tM=5Emgb7h z5&4uE6G90kg+dP zwUhGy%Y^SzM%@&`rP;7Uw05b_a*;2kT?w+346j-5@xfyYpPv_nrY_A-PS5(=o;hc9n>xvxHAAOVNXDtfO4*tW z4d4ZUu5KKqzYB+~1l7=FTeO4Xzi4z?Y-plZqIw>PI({X;_S@goYGB_Jg`g?t!jU|^ax_G{?3z>;v)mwgZaR*9wTHD_i>gDUMeZSY zA3PG|lyoIf2}o+Vor^kmbh#H1wqM&0nRRF@e(=Em*y&u&IGH|Du-dWz7O`eC^h+;* z41fjW>j{mr#;iizbIrL`vfi;xwArnf{X1`Cx;0D78y1@|NwwfEM;xD8EQ-FQ0D|!I zv<{w1p%{yqg%2PIVfc1k%qU6gji|@Y6_%_tqZ#4l^4!3D{189pZHH1OIf!(Fm?V&i zKs5R-#}8nG!~1VFuv*+q1XT;^M^9R2OBC80N4Cb5AnVIeLOzq}CAOs_>*@bM%aRF1 z4mcel0G?C-{#SPa*GVRrY7k?2thQzT{q{E(rF7MNU=qQjqdtTdld8x(sSKt2Zw~?h zCT1_BiNAvXZ{I3vYD-L+ZE!cv=jZ$8+X={W?2>R68;~KGxNYy$9FZ`%im-zx1*%{f zd;dOBL&|$jTuOd5D_pC?1}Z`)VbN_iwD&^dY@A&W`a>Cg8C@8=$-4mClU6w;O`V=? zXK|r^I8br4rv9ZAE#WtNReGK+FgIeqomE_qv^b?^e@3L3p!oa}{KpZC_}4Qe z`GJ>;@YGn7uPjDZ2}QoqftqE^_x&XP4#bI)*B{wW9$Dztq0Dc`+zZ|l@Bb=V;ZQZ% z9!u0UbbLqwJ}ZBF>>6EHNYoc<&mNG6`~r>LFNyf$$>2vA(dQZXBT#K?UvDEqb2Uum z4An3Y77EpRbw;I`7=2#B?;OeI{O~UMoPtH~qx6v@uAzT967n6<-^BZj7cEG4?Ale-&L4N^~;M?Qwjj7(Dj(C z4>3AB`gGy=l@CgKS%y6M6%kJ3T|v5cj^TIe2b&XO*>pJ5-q^+IEB%+WImvpf-J@GZ zzuz)Fl|b2RWH9gld114R2a(?)TKA0Q61lf`W(h>F_tEs1U=S0yCzK5Q>f8d6xnEU& zFC>t`{(VPvu_t@N_AJie12Rg0WODsXbR(ho@}9dJ&-_?&nP|89z1UZEn%xg!vGkE4 zRTKA~uAYi~*~FKt(i#J(So&wDvCIA!k}>OgwZl49{_-H*B~mA{*|u$oc@OjoL$)sV zu>IkrsW`H0;XxwKbH$lSKDqW-9;HPnbTl+qQdxktPzk7OcD$@}`WuNVU1?zHsn?q~ zDdM4mf9gHenz<3Cxr+h>n;swkH_F7rw|X>ytX@$6(gcVLq@DH#u(9S*OKq)$&IRY zC@ZyQadmpmd~u#2=|8{09;9=U!l$1`NGw6jos3Wse@TKV@g(zrT$4B3M>kCqUJ4AR z8ilekUe(Wr9%Nnggfbfc*i?Evz`?+Zizunu6XM$-8{y9s;fVNa75RMZ=sjCu4a-j6 z8tiAX6>W4Igj)CvsHuvxexydL9J6gI#P;4P#)5)9hzE#IE!v%3!rG+#TP`JZ9;?EL zWahn`rBbybhN>&_7?Njg4ZSbxeWyY3fkl_vBmqO0#?*Y!H=5S_PBL?<^-V+eQ<84>ff_keR)x#+c90!y~NnPf3V&8WD9~mU6T& z+s@HM{-Oz1bNuu_(OifK^KxK2O8l1PJ-iiT`OETctd%4x5a0^yvo=YjJhm}6JFIvp z2(gv#PWmkA#Mw_gh=D*Q(adhkFDoSa477U#ufMqx;-T4}hU;#Y$jaEDwwqSxjyKB) z$p|XpW!riLzn-=rTqe}9LO`-#&*WtPEgzKZ0FOLqrF64Z-iGa%OM0?g-Ye9*!(8b3 znje`+UR`8EatS9~*DHmZMuS_>@uQ3RqO_)Wgy+*HrX(pzWl^aZ31mjIDgNAAPF09s zQ8*1DpwkB%h$!Grs>t)fy&=-@Mpk8-FD%9ulDWFVw{X2RyYDS7o+R064ao{FU;=Q*A`c}2=>&}a{x~IJRldrSq1$tiSllDNFL@+e2JAb{`VRPRNJx0> zekX}v+Kn}uhLLj`k+aH&_JuSZ1tUtCp2M9lVbYu0#71k#t@klt~H2^4Yqb19; z3kUfrV!cynSSksLZSVBIoJFysQXS&0BO%$>6ACb9wxyM&;jx;8y$M52sa^m&Cd?~#{ZRG4c z1@U@qZ%-|`i`4QIcy}B#Z(djC{lSnF7lPLj5hlz8#oS9BMb@4m!JUM^>|HhC=r|It zP*VQfS|aN;{=uJMl02RHqgVK*1^u@bmoP(~d`K9b4DZC(!2L`fGF>m)Og8apdqY-)^S08_xCLv&}7`?{>D~{^RpK7e!;tU2f1Pw>fz~R?|aOp zvTHzIj@omTU`_QfacrvT5NieJ7M?-`DH9ngmrIE*p0TIu4le+H!i`4HI8iMY4Scep zIPHYaEb!oX z?Is^Y4@`PSpChMPtbBbvYizEVt_s47t;xqS9!q872qeCsUv`qzywZoWO0iXlo{+xJ z_}Te9qss3m0Cm|OhFm<}lkvg$P*!h5URc|6e~2}gR{Vzk^r>>$`y^}?@$)rNY@Q?6 z_!N9{T_%+~9xlO+@evgG$qi08kV9sXrhaG!ck&@2GXH_hCs?!alwG|NCesC33_I{A za;Ffft^YuOsq2PGQLPr>0bh%zu>kM>@TVh zxhI@XhSBN*$DtiU?!t zTJx&)jH1V{V#My;9wwXRU)A^i?DXqk4GR67m#F%Bl1hhqO?%Qu7ctuON)<~YQ#;#u z*v%2|*z_N0GR{ZD{WPai&b#n z&uptq8tKUfN;p#b&{MuE9HSM}xbvIOKcfb$5BX8?Be8HH2K1h#TWJcIZN_Uwccq! zX!MhIU#5W_Aj4`!5#?ZO2j1S>4LUdXTR0Be+6?>@NvnujmQ>rkD>g{?5=`G~rPkhA z!288ekjW!(jHqgI@vN2{J@TVQvwYdE0SmwxSh?P) zIjxWqD>4-+If0G}kxJBV*)WXRsMbJ}XxUEz$`10Oxw^=KQGMiR8TEqR|@i{bSK0 zh5y6y1_Kn)0|}rt|ER^ykI!Jg##`60G;2QvzgCwGNCaYyc;*dg!K?>4d<;)9PX&!E zdXjySl$so$F^Y;ABJyS=4JjMe>j388aV* zk|64HU{{0COj70eT1#q~Es^>1y#mmk-xx{V_W!pb9wZ$v(-YAC2Xd@i!nmA?Rlj4L zWACor;XhWJ$>45pw6#N`XQ1aM*I#q~k5TigA z5jVj^Qy;+G%Twdfb!O3m9mW#(_N>-3)vbFd$9mrR-_V0V@^s!CrU~r?u#iR?=29u# zeuPu)I`RJfp<}C#cm}>ycD%Bi1(NOY52X5c(d{|l3T>}C0ofAED?E1a3%SSO40$x(XSr*yc(PvHv3{zY?CycdxfmvdM775?e~5@ z8q%Zt97@As9o#5Cz)rj>(y^Q;v4>m>HYZiT6VOHRb?m)?kE&15G|feX#n_eT$2A2# zWfz+VLS)}Qr8 z6jDvDOSh&qGNdqTRXFjw-A-`S)jMhOHDnl;t|1*ebd8e^;I9M}8W`BjoQ$@ISRKdNy({KhpZ)Y*J;WtePIBd5hn?uUA~ zJ&W}4mI+5Cly-_&acJR9jv#R4;za<%uO1wqPW+*w z{fhtel1$FI7KGq>gbz{q6ld=t_d3ToYCn;B=n|DMsdx|B+VSN+{5Ucz9xa}%;pauy zTGaNSH{E>6NXih<2>5w3gpx|#U&F~(I|?S)SLMAqWlv#Sc?@F!;9={}k*W)E3@D1M z+n8rn^u|s(8GaZ5=aXw-rP!!%v@+zo`jBYCa8S>PE zeVeh0FHdpwDrxnYC@=1%q5u{47V+sC)i;Q*p`F@)%3;o1sr(?H7ssPR^kk^z>oK{I zhJ%O)jUMK@d;Z-P8^kYb@gM$U>**3}wLiQ-O zI5X3wtd79izx1`pw8sJ?i<=P33UJvDaV)GyN-3V~vYuC?Zj#quP0!&Y=N*8u5f)dD<38bXBf7A4piew!&Ycn^!fO^h<~fi|JhxQ&k>9$H z_wY&3^n2zhFB%PN_<8`}k=N(H9>o%A#1}9r84P`Jov>&W5pttQ$!grt(xDDD{S{ig zQ)di9Y5ouZ>+^YhT*T*ny%LN9%XK?hdZP%xFsBU)aRYcz@t7}f@8q*Jv;IWt43@V5 z>cdjDhr%@cXSU!IfWL2$x;|92nL1A8sM1$RD4lV|{Q22^WM74bY()n)s!5X7hHK1@ z1ZdK}$o;IVd}0RRt}_U#k1R-zk$y>&(f3kve|c!RABx1ZUXa(^&c&?r{0Bl&9<`Ze z!!ct&`=+OT^bkZPcF&!Zv{+-q>gjbt?N99Z$|XQ`sE5#esE~U45lo`-2sW5RpTre? zk1Go6(AB=EOAuV685)Us7z}TSug`N0hqzJoU%~F)shW`2xO7E3UZxH)5ciY47F!WGn7YNBlffaVpS`?I-!gnUV z?z`rXc2LR6x#9F9<~f%3P&bX|su4UL|Q zkk7zj7+?D%=tFuBRxvo-idWGw7D}8cFqtzlBi=ds7DV0KZy@5KA^~R*tQ8bnsRfwx z2+=Agti>qnGz*b{h1S=^>v|HStDz*CL{Hw-Y)t*`eqAOq*^XQ+JD(5BzN7y#j)VkK zFLrLubBjPvz2kR@0oP6!(mCZBTIBIQ@$^4zDbUI$~%o^BBg& zfelfdlT6LRdcn@pp<-;xb}f8cp+UE8sbx*#(8uF~ID!-7^a7+l!xWd44NZw}iF1@r z5hkiBakW+N1z)1|wTJso)c~T4Kx3}!`+p$g;CQQTSR6C(u^4i(?StVHX->_5FR*qE zpsn1!eqlqu_EyqSpQ*O_VYgoDH=cp$+X1GhYroEyNVA&(O@u>uIGN zJ4a|__$h@hI^o~uY54wpkFgNI3;DoGp_1^8r3jHM6hM@LgjHV1G&GDF z!hfm{NOs)}x%%^7ArYmvATD~I@6S}pxzG$bpa=A9E~v4*9BHX$fH z{c+1hykuf|<@P8?qZO0l@4}Xn|3LYr9ncwP$s|U{ad{UvUbKwRRsrqbyX10z11yo@ z&`jkHWK{+ib@T5@QQ1m)&t{`g`ahWakAsVptuCsbO_EdFeOnE?KeL}F7hkJ+*_jD` z$mpoElU;MrO#f->AQ`Om!3R#nq6pP7>4X3K4+zv~D!-E@AFZw5LSV-|p~#&E5*xv=$*=M+Aux%3&kV zQ^%TZr{8)tN;WXO(e<=(CLy>UEhh-BXQNutN#MY4`04vq>$>ygO&^7t|ErobZLWIh z^ckOM!?YcXVVa-y0B08Co5%Y^h)hm(ee#IR%J1h&1D$#*S?Mf1EQNXSu&)Aw;oFFs zPP@W}Y+7tH#28O!8y_|Av;t6dE@)a&{sL;zTmUfNIF@4w^c!vek#l?t?2@28|M~vW z2q(Fd-WM_`kLPk3@fbf%nSA(u&Hdl#C-4$l>~=OtDcNk)7pcT9QMYBuE_>~Q5J!Gj zPVc-=V-nYJ~3q(Qm3EFdM(QUyaC)R)Dj{lt1aT zO3In<@n+111Gd(mz>h@p-HWwcfFMKUo}|;4vEXFsqs1^tc(ncQR5gwwJ;yW&b68Zl zwe-a?T13GIV9VJ$kRu`i0zV^9Vt5xny!S*Aw^mOTU)GcJUyk3qnfYQDG}%hD z1gp|Py+<}>j@K7E(t53sX0AHM2VY(CC&bt91>oOpDx!!2;-82t;U>AXL;D*(lMWYP z37V91?ChyO%_<>NOMk80^XgUBa-k+g=+#&r$6ko=od>0`ew^-7G>`1A@;&VSeKaI5 zk$eqP>>u* zSIi4AAY@eUXqvNcCs#s4tle?#34mAePv$ee4;20Yh?pm6w&RYb0JUNcu!-7 zNO@|Vna6IjDJE<@bm6;qzd*GG!(K09e)EQBZ{x18+bE~C4K1|fcg=*+Oknl6} zbM4De5ZN&21HiPo5I-C|a^~FO{*9G>^ksvjW>-;rLGUe}QorBLvpxkI&Nt|D_|BY>$IPh}C*9kqBzralL(+znqTSgdTfbk=-y!@}V{i?7Iq!u-;X4bYvjcK^_n+%3P3Se`JgiKfRtha?4mxkva1W#1BY zFN^gc;cwevZ;+VJ3@ffdz@`jUQF(RGcqYQa;^0;I0TS)W_K*c!N|L%2&dnLqVH960 zo_imr?2LNOoUpO}ZwM!630f?&!W&>g6GGDjZ zC#@wU%EWpi9crmqq&Nlebh!*euwT zLar}TQ(?RHq1rd#P9tJP)F3xRemQvX$Pu`?L+q9HmWTojU;Nc?Wk`L@ahfXFfa3ou z`_(6Dv_;udpHB0Xy36p+dRfZ{c3Oi_^2k#w$QpfvxKw)HXDmB)>0DxE7-2HgnR2(^eO!)Qyqr zl$2~%$icHyBwyD^H{Su*zmD5Q5=bZYijrDM9G-jh`k>*%I%txwX{@}N8iw=&Yps#q z#zt_BCvJ~xern92K2ozPCGNYl7Iq#MpG+PK-Jxeyk$fs5Tl+7GM#G0Qo2@L&X-AV< zwX3dCVhmt{X>Opp@_$%(lw1D3bTcsjc(nnNo&j(I=HXj~WI4Ua7Sw)69d&memVMTK?o1#}U(#&YYq_)Nzb16hYD& zO%c!O)D~6n2|5(Oia7T_P^rYVUoyP}K3U*D&=XOIIbA2)Yf%QJ@&|d^Q)&Yf5$Rth zo;Etx+-`xgA(bt?7}Jd~@YDbj88J9dR@Q>H-@>$sYQL2uX^Fhs0ZHY!-%P)uLbpZg zH38ohPs}b6d!arDd70f(1F`0eT~gH58%OO9ksa$zKAfB%V#t2=Hm+NsCbq^r0LRZ6 zpqUC`3%m>EdCki9L2OFl1AlmMWV(UcjJavO+C!i%N>&^7TSS(Cg*fYhVp-;Ul6`6QaHxjB1#gc%$*^~29>uwfM>q}GlTa{rKS{Ie==Zex1^8iasd3-%l+^7) zmVAZY5@J46Zw}(;6S3l1dWX-$XV4?-BvTY^Woz4m36gZIYK9ggI3DvISPIZ93I_1;6D8Y}4AdMH zEu9RJBm@QExp0>_(Quw#euA2{e?wFgXO9kzTNwiE%x%xGM0B!G^COr zL5%YwuI+%NKiv5bpZ3qG{`qI{=J?8-uKcD-9wiG*e#!+OwL0iSy=e)EMCeU_Aw$jp z$ZFa{qpcM3_(&Attoi{HL`6HnpbJdVIlv;p#)q$$apTAoje$J`{KgMn!Ok*;q~BFw z5q@j!YC+HAJ=0Y)4XuSz0m zRFmgkTe{Kxk?e!_Hp6n=jiQg;4CogiWceo+E+rtI_CB#j%1$Hq@;U|e{dL*f9W$q8 zUn!t>y*T@`u2hPLzN`=CPM`EsTSY*533sVE5`I_DtI(8dgc|fd2`KkPO4+`!h)+M>4^McZbg=+k6enUkkii?_F^dS^_|U}1mjTJsW1G;w zk7UBOQ71sJ17idR6e~aYZB(M~cPoH-krq%uMa4HrV}T(HIxjUL3Qa!>d-vfgZ&-WpTA1r{DbZKe_mnc&cQQkYj@@?|P_9E)D=53rY;;EpAamO8zP zsz}!_9%i5IBv4pNFEkHU)l&80Shsr^<{!J5Pm1Zn5d}k@yUi2Hf2bvM=bqz~!jZeT zS+$#9tJ8a=JML{1C$ag)ds4;u0Uc%8`;vXe1ia6npKZisR??j(*FJ4#VQ?|OB=_2A zKk(INo2_8#^I22-i^~&7qS*gA4P~t^Iv}G397H$_P&Gi%-#b)m!73gpjbZ-TX^~?M zT`3;@dtGp$H*>1{{5dA_eId`veW)<{vpv<@uQIf;EBs;KN(jHbR2(pkqTSW zq=eDQB54W)kM*L6$=AcoPU{q^(Mk}$1%;hWSCMBPoF_Q)H#bZFbkMjZvTIM1I4U>@ zUtO#f$u_TD)zoioWw6s+bk&F;W(tFt1O!n!f@`rc{KDfNM71uWAkD0_Ct4!uZ z_!500wg2Bcoh5F3(*7UF73ou-Nj%K^L{vmLDyE=%p{;_sA|Yvt5Z*#xB`GEGf9~hiUh!gl?%mgQ zeXsL84nwW|_bGmRsM!hv@MFQPR^OJ1+e~xy5I+6D1nU$VID<8a;;IyZ`}{q&+%$jr7%%(gBjn(X#xcK$vIym0`9y^Vz#B~f6w&g%nIg2t*i_|G@GLeq|M!u_v` zti&nrf=0d;l$Ho~o*lliq%wVh;&AfIq?`auVZ?$hBytUDna;5W-)RyBraiOF0yoXf z=p>OUIq@r=+ZdFDE+s@6ssH^c(CtD|Fy)w_tufGNZL0!j2e>5AXda=)YZY6|lX^EG z6=hQU7Xc=JJ#fSns4jKeUagyV>$T^41uVHBqfs5 zwh3%@LH9;pR#fB2Z!^ar<#!SMilyuP9GCd2WPn!r*?;Z-Dru9=5~S2Y>jXeT4ZTuPx>E-)~rPZ4zb_i=V8e~k}Kb}o*cTb7-%R*IuO!GW~Q8Nyp53Jq{3*q z&X6Lx(oa5Vbofs0CKg<~NM1EXvPGgk9P?`ht9~>H$ku zfi$MdOR%1o2iOt`qeiX)KO2pVI7D9C;i$Lo0l>5mnHDZVUd2x;(%!w+f;n}I?3vJA z50%ZTPa_<-!)3==PamsRa6CS}+ld1%K;m418aP3`IbW-QE|3krH8yttr?dqip<*4YtR=>%eer3w*?&VZts~Zg zb=1y3kAyHL_hxc3YDxEjENeBRd-?`n73smQ)d+$dAJ!Ns0t~Oo!?G zvZslKlLoyTB+i&^L~90C2geBRTz`Jqbw0+A^)~oL>1aNw-NTe%F7xIMdt!QFxageY z98-w#`kj;b#r9lEm0fkWwy(W%a4vW}%`amDlm3bK&W0dhcxuxW$ZRSU4CfQi;Em#k z&O$gGyiXc*M1m-W{RC(&>-1?=X{e)?@;KYOm#}McZq3uga`04PIN6^B8f$%xA`#}aRJ_&-_nE0o zFMXH;2#IPmK_a21@*9F58CB*%P>&*LSiMX{pcQuwgS<+WixkdcT{+Jux)ogMWFSIX z#MmNC>eoHmxNI?U)=KAIGX3IT6gJse+?`wSQ8vl;(eGOpFxF&w#f=LE8pd#2idMHu zya&P%9Ns+QWCDfS>0x~TOC z;HvqQ4#7>zPEO=k2I)Yeyt5{O&}6-$C?ax4oRL>{w`4oA@|VV(!HgZ7Fk7WbZ6dBO zVJ+E{j*G;eH8cfG#F*%X1vACM1d7Q*L-SW>t(X2V2HDQJP_1074M^qTOuSW*&x{#x zW^D*H6c)nC*3T3`5?Q>vxZP<#7sdeg^Hn;eUZFa;kAS*;T6J3a*?L=F=QqtMnW3vr zy>i>erD3jz&!dYkE+YL2keigrI}m%p)*b5n;Gc^ag_%bystneJxIdA1r=Ea-4=ovd1djT<>rw%7t1n_1gu^6i*GBLn{ETNz57Ym8>LNbRmfmp0MH#Ly zxvgiMqz;lxeT88N6+Lo^qSfjm|41s=a*wp%7(Sf}%NWZzmD$iBfCV;-KDwgaGa?WQ z8m+l8`jY0!BlNBq@3FcdB>c`nxAAX$e-0cNMu?v&N27^^@?N&-(2g!CIs#%eoBb^ly)|2^$pNuV}kp<#Usyjph_P z%T>rfahmPUp4c0o^gp~%u6h_Gy|HIF@Oo$N#emPZQEFdEJxMcj5aSM zreD|UV69+1bNFYRS6dnk4+iFgM?5xXH>SdUnIW3}n}rnPe)B<|EP6Kuwe`QxcpjT* z_0=SfW7t)n79D3;Jy6m@RLRHL-$`8x_sLhi@p1c|C!e?WHObjB?_x?mpn`CE;ap7_ z0d;TOAM0@5wG{p17z41I|6yX?SSV3G?NDCqOKh47&z%0%iumV*@q4>0n}+4?Z$((@?zP$0z&qnB-RKT0?5n|G(o^JoyZ{SIF@^@fm735M4^2?k z)0mQcy~y#~=alCredYRB;~?!ud9Qg_*UJB`j;RA0hA6Q0U({{RKT9JC=;CQtTwk=B z%&wk{G`o=hC%9p)Mz>tzyuQV7w!4!adu1}wVrggN>dPQkahD#Q-m_a_HmnqP1pkfp z`hAjIe9;cmm=DvUrX(hbZe z1|1T9Ok@)jgbze9=0IKShhtyvePRcN<0v@vtVsTbj~0lbmQRwTIKtsmJppLyuo{^$ zD#g05+ zEDGVguM5BV#Fq82`PO=K?EI7UKazstiAc}O0Ymd zLBboy=@ivBQpfOze0=Zgwq~NwtZI)+;dMJ|PX|aMLeQ*aAKGa7I6pQy`db{xc1Ge8 z^qO{L#qef~gP(J>*9u$FR`FXCrz@+F{D%Ot;TdxE&rz1p2BpW`nV$opyk<~WAZzcn z{dEXWe12|OPbgP_DA86WDh-UxV9jo?Z(e8kqG+9EwodOxx$5_=AMWOM*S@&!1GaH{_a@gtC?8M;cOAqph8Jf8Rz8lwN@E55KZebNcF#l zzPasZIZSeQ_n!W44H`&;wvt4sfL6x-D@bvFM996phPr-L$Yzon`spm1g?o9)F^iHS z&`OgFfpYf61@AOtyz1sEi`g;bF7B?tmRI^?RfkDdva;7Sacg7QW&?11@y}W6Bauxm{)k*5S$HS2re<3vSSsr9 zcbk&d3s}R+j|l({QSr@(tqZ#7e88x zKartj3wx&DFUMc|xXuUo`3hd#oTS2k+34j5G*=BA>YV;nvxs;_76e{dzeJKr%5taQ ztKe%q6!gTP4X^%w)Gn83#}_e)DqcD6lQ+Z(R=F|#$#S0f>lZ`cqZ~hdv&Lp_fztzru?Kg6oqikZ0fP|BINcm;5KZ7S**!{DZ@9k7vsbk+fueb~ zlYN0ESzgGW6-!AB*~n~n92=sIgY`@OeL>UNjs2bMrp^^?2&A&mY2IS&kY@QmE0AB| zAQBisY!M}3KkPM$%o4nIU%`H38pc+pc~Ot20K?UBXp{c|WSGGt7s`2HkO0sWu1?zu z(}Lg&`|_7lMJNTi)NRMKC0dzH0}DHde^W1-fj43xnrt)% z#1>LJa(4I#<;l`|`oMPbY2hn;5z6s>QuD1=k1I2cHu0x(d37p){#Tmui?3mqWS-*i z*LgCrwu9K)k%koQ`tRP2i?&6Ee1v>wh_RNWW~jCW(6)&OieQC7%-96VT9|vKVX_g z`l9i6;Nnp)Kof#_4{)WuR3~#Kl;bYOFS#0p1xy*06rtUG-=&1F8{-_9e)YevO;!{_ zlvQg-aB@f8Drr^Pts1spPQT<2&O;0}E11Fc8y0i~ZNchA0gd2`>N`G_uAy(0ugv}n zuT>-KzJP;OzF?P;izVpDMp1!g`RdR{=RqpK?$c2;Gx^?>fg-7I{%PM3Y;CmuRgLvq zPXRSYkcJw);$vPb?-^QF(C>qr)~ez4UIiijH`BJcgl8(g`z`h_2u!&KP+4dg-9W6s z1J83L%=1@n;>LZV+EkG0e8CiVx1r{`h}kbRgnY0_4xS~=#rCVBeMxuEkl;U`BC|?J z3>BrtfD=UXtZ_mVy*NH=rd%V-%S;{8;n_wh2ro~fjy7ZUdlgJrk!^^@T;L2G81h=U zu)*Fa8iGu3KSnvh2$j{gMd!u3!6g{eM=@jyFk#T7AZk>&2ilHVZO8a%FG$cpdYx>e zf&&VkZyuAD0-eUe>b&ERG}QZ$t%2zRX%@YM(ipyf(FdDPX(NtFmn`tFn>Ti2jq*re zUqe=j6zFVC@l)iyUG|xNk!FH2G%~ znXn9(I`B1nG$UQBo~Sh9yW$H?pF8z&cC1_(_PWWz5zI)wXfF2(o=#|#4j9*t*X<3^ zYUaVk-eUNGFslM&$Xx${lu>LXWNp*Vx$znZ4Z+#9Th`mSKzfK@ zbiL4uIZR$6eGPfp{KUM0y`|9;cEAs%^f>&eGq}d@v*%)o%E*iSwhIs`S$+lk22fBA zAPPesTo+Kl%~3L00u_DQws5oX4^y!bg=$5iEnKU2nKu?k{iz_EcYpb47ybhyzlQT7 z+7%W%hXKb^5X7DzP?u0kEz6aJwWw!cku>=YbJIX ztV0(3lJfgLy(&Pk9ATS-!%pzr!$zdmf`+o5}xH?)( zT8y1bBB55{8VZK^X+6djtD3>~Vu$S`5ImT(1zz!f-V;!wb`wY}E*J4j^YdlWF8G>a z`#Y!^zHuZp@q(j9O3M__@b%f8!O&SR?{E#mG4TP_;h00@oYnLhBcU_{06!za)EMx&Fv;1aGpP-733G6zI?%=@ zAb+2?!h6(K7CL5RT?--F_Q_S<`fIWm;&_t~lABWfw$zPkMx5_cbRo{Jc6iyG%COeS z|A(+yHCLalbbi2n_hg@&?OS$SMVDxIGHgm7|H=i~7~1(=tJX-$TG7rkfq+yYM1{{O zGT#k?{{zAM@)A!h9Grpi)0xU~Yf@o*QY{W*Qlb_rRU)&)+=C zC-|7*WJ%^ZFmX=4`@>FSX?q`w^P`FjIdE0u4Zz3Sev_v*>JnX!rHm$tm-0g9*4rxm zxbNAe!WGx&M{7^2rxUIXv#%MzUJvPDU9z9)dgVtK&RiTN=-T++UGqU76`PDVh7i5wowZtyWH9-gm{k44Q2V zT&gB3szn@;*##vCk|NYwZ!S=}ij3yl{Y?FJtbdNM5O&RrPiMYLylece?!DeL)*0#n zYPdA+hIhIj{X#V(S%tHj*bGzd1_N7!PbUd`#R0ex?lXR7j15>7K z!)tedWH|t5x%{m|iK=8;3*+=|=*4d6-IZ0nm6W-->LZ(E8c*hbENok*eC2KbA{4>R zMR?f`%ppJD#1F^7|IO++G0Fe6_lnSyz=$mKcv&AAl_(s>q)V_d$@QusO$@kDu|4|L zel%fgk}={D&^LC2qiSZhL<-pLJIg(+M}w=3Rp~-;fCbf37%#Z_IsN{{uR;sVs6*>~ z`z*4HcU`n)TR}e;M?bK!l)s(P>T62%_K*&5b{1b0_|k8h-oz(z)h7P?qgX% z>3Y1tr+oI^5lspG(>{)jP!-Z(V+gdq8+mD}$lebti&w8WnjXOd)=mk2q6pCuJD0YO zI>ne&ph6lr7ybFunL%kH0L~E$UR4$Ab$}HvM$M7NHn;m%00=i*kGjF3ds!a3&Q6t) z?Qk}s7Bm6&gU0_r;$YZ#nzBWpK&Xiltaf&oCappYBtjiokk`DP-5w)f-Hs^!-Jfl% zI`u8iPxnuOB}I%^#|oH$kpM+p&OgEN_(2|SJEO|?w=bSHKaTG1KU;WGtt6xR5LAhP z!b2NN=wB#jRFMyRVmT$Be36^firw#%?30Mi9vp1#Tl*=LJ5Cd=X)tFv&p)}Se2@#H z`V#RUk_l~yYHXrTY`I`4T>jbO^tFlTDqqBydoZVM(QbmuFivmdF-@uJ1f4fij-fvN zJzuEu#zcT!QtOA?^wuCMlHOhV@~QJn-d(aVXYwzS0<=gh=9`^{a)Cb=jXk(C%lUvS z{#!gXZ8C+2y}dMxheAAx4Og)L5pBH8o*7Dv4O@x^v>h0ICNRm0h1xAcq35>s*zbtLsnrL#(b$3#Sn^Aux8;$GuNTy!9LR!*83*Szg=gCm8*%qX z+8I}U;?ivY(5u*fd>xt&cl(Vjhz^Vce1n9xlcXuip`*K=op?4|xFq0smnu7Db@9p6 zQro8F*VUU$`N_cTy{@jf$Z=gR1S74|>re4VZM+Q%tx!fg`iehA2Aa%6L}Da%&9Ui^ z**aoR%SPquP(0d>6`bVBZP9FnppVL@fU`iB9))#>kPN45OE&&W1H~VF_jP*0gD}2T zu~->}#F7x8U$Uq3|Ks~pO3Pwlfu|Vn%er1c?G&^(>YbtO4{sWku_*GhRrcoR(}NPO z#{R6L(+TZsCoK^FAS{r=os(|st12hH(SAd{82V>%w9$#P>QKg+6)T^V$R(P!vTWne zvzDlu8eHJ?3TuCT(x7-Ofdp|~b~q6X1GYNst}Yx_;4@_$10fD-3>fPTS(bcgCaC1Cqmq+ z*8{^F7xqGmrks2S7cUa4UE_#ZT7t3Ku|kne!0}hU@-g9$Gok?sfc#ZGA_FVqFD1`i zDL$x)Iy4C2g+~4h`mC~TE6eO1Hx0^gTeh9>~c#2>S=F|H3~14e>M#8#?y>;xF6 zZObjq7I`UNm*rv`rp#H-fI9n=a-Dq$r2JV)$;q3JOW%{WH%pYbYt5E3Wi3)elIqguT8dmfWkCC*%UtsM}J{(2-+i#Y~&s;ZZ`(A?NZ;{Cw>s>aMC_VQMRt| zVIadFl{w11tR5%Y1-@9|N zc*#w=qCA;`0gOB)?Oh^iYtyacL#Biz40;ayM3(&s(qpucJd6(3jhrz0ow)$LVoAZvB=BCbP8N|C`4@$(wOb=rt zjDog;^boJtBe1XoV!Ab9fWs|-Q}dkfK{oZ zZYuv2Y%L&D3a6ER|H66!xH^itoOYePj%yWu$fb`x&Z!N$4f=uNbMZN@FTFDRA!dCU ztZ;{>2uvUQ`DirAY{ZSR=1TWK_|?D_W@|G!;}=JHA9`FHm8NG}ZiN*2s;v$yetJO~ zUBWqXk)QDx7Km`cAYz|D%Oigl??h=ZZKA3?Uwkwx~j z(|7pGN_O#bKO)WF|5ifKFag2-4$=(f#bB$^r!+C= zq!Gi%H8uw@EX6^yX8V0Mii!+|NAq!r{Sim=I8&jz9$_n z_sY5K#^3Wbv47wJ$_X~A|AFK-XYFQ4fh1YY;Bx*X;HWk${Rkor+wZ?EZ|1B#bZK%c1D`4DO z40*JQ!=Rm#2i1^-E6(LWeURp=(`DWahmm5BA`^aPdQ;Jz22nj?I4Y zT8XXBNp^})%c#h-?hp`~c8s$jc%5kT@-WK}#fOiYU?2O}ROD{??&Y+Xn5}oNp-Lxf z$`DF=vqha)ZR{ASsf5`5(ssBippm5MT6~7c%9jSmak1&COD3e zN(iEps*_qy8bb%O(E1>JlBRY75Rnp>Z4_e-?gwoDHlj`iYO9`&0g%~m@`UtT4IXeyaiTJdv_m#bUN4>>(2oN$bx zsoxe6AtDgmR{$lw35I`mf&HeYL3_L;3K#IU{%f-9!*>h$6rCH|ytv$eBD^@3(oB!$ zVSb!byk~Fuz{|+*!At|YAbOH`!9L)yXx$lp?*0hb>@t8zKG2dUbjq}I!0{p;@Br+ zXBm}@{%_GF*%rOoUwr@p*FODmNWn`0L-baDm#OapiOJv)RFo&*8pHAYPJ5&cL*zL@ z+67e6gKR<*0RNL+-*XGj_GjxIKJdL?(cQgB5Gg`~Hcw(0J<&F={_zN8WaB@qi2J3w z>NPf9hbq&14Z}(|`HjCj{)1sprzQoPp*Im3EvBTAWCC-txS?~fWngF8se)#y(Nkg-21 z1byd0aR=u*xp&IGK?#^sLigDl3i;uhX!A|7Abcm^54x3?+Gu4Z89w3>PhNo&;B;YO zX)1#ZJ1N7^EX4*9bY4#2FI03r*&piQN^OkGuUlK!*)BID>7mi_{UB5CB} z=Co~sZ*EVsaxM21@p=(t>C^_6%R40c6fVmd?+7#fX_ku+tXaUVKURh z#*pQnXX_X^v9%Y$D!e)kkkbikCGebua5!xwFwIZQt1)j~J#~F1;-jK!f0M?6=>t{B z{`@iP9rl~CEf2}j-nu1YF(e>A0E;C7e-tgIb9m@NlA_xoS;y(LMwt6IW_JLgEd1rB zjpD4=H^@AudVpgF(x&@s-V36WE4m!ugorTm48-4~X)=hh&Rxq!urYF6OkX;5g!Z z@jDFD47ysS__In5D)-b#nXWu-ND$m% za(9jV51#bH4(LPNQ*Gc5?t?4z;_2lPhN1wXUi)=9HaKD1tj3%aGokj;nn!Pnb2X!Ni=kBePUqndVyThbD^B(%0E z9)8}uZ}-^zN@ipm_3iT2!sKtldZy>ckCsqqzpvOg!g_!cG?3A!M6zXnqD z)Z^{K1cgNjx3&`P4VQ;bc4H*1f?~R!x4~r=5D`#j(Ra6%mg@8g7f9$Qk=IgC$Bw^- z8=$oy24`(&hyA?XU%4^HBy-16<5&z%BB#?rg-5P$qRXvu#22@bIFNjw@c&~lOqlW;wS}qdE;MuC>rjF@P1E+V z(SDr6bDkj5G(b6N8Ky1dNSZ=wqtv51HF%f+>fCHvki9|@k-h5RvB7>OKx=YwZS8*d z%9WxX=>6nQzdi1@C}_VAZKU-Cm>L|^A(zG396{zer>xdNCBrM_#~X>=*IlKb|W}EwX!4 zfs4C(nP4dPTgv`y^Ww-Jc!td(9OJxt2{QB9sT_&Vpl5*Wq#}I>@I7$*G+*dWO@sW&61l8ftqLV*$r24y~ys zyxDh`(uQUAG3z&m822tn!iaf1KWzx()bK8VE_fbnHTFClTtp(Zzz-D`oN@frX8C#` zSd$G62)^O**=U2M44PyhEMp>mVfbZcK7k@8rM(yJnMrbEwQfV+Nmu9X`Yb@^MQ_o4 z{eeQRp(Ch&5ne1;myFf)M6p8;;28z)c$%uc3wK|viGJKOD`TIDS?Yyb2UZ|?5 zGh46xB*Bz(;9*YZs?UnmNWS289MP^KZ*P_>aYlmrP$0Vit+v3b(b-s(DOuvrr2f1q zx^e-r$ZWm;yr;=Zpfq>c29iTqRwAD|>>N_m*4m1_?9Sqn!jpR280sT*FZjZ`mrNQ@ zr?I9^J^QR+W0R^=ECwe=GqpgRj?TjdIp^z1kDO8(3YE5g>8|)rIT!1f*--11qwHUi z0mX(anxfp$A(6#E^As^Y?AP)IufnDMe9rG%kqQD-MM}KkLQ=#@pE8e{Brq8i1t;~S zLd$LIqrZjhC15^BvCt?}V(B0($t`H8D)~54f2oApn&nbbO38+oh|Fg{NBZPc?=f1T|+i{W`adExCMsg;oA zu~dQ`s$n|hr$?I$)4!RAL4;T|$ty4Ffo=bHn$rAJm>{}lT)xkrNZrp>am7LIt-7hH zGVv>-KRJvZM_+$Qvv@@;ruGf*6==?oystZ5fLX>D0OKaiF*2@$EmM4FmqLruJOB@w zqbIg^-#{ZpE=Gth_S9{gQwH!?8y8?hZmb@|qOz9WmL02*VQ{*q{Vh&JsH z&(N&4XQXM*BO6F0I_bKUP3&ScB`DCI_qK(`a@%5utQ5RER-aWUgWOwqd00UH$~UKe zId_ad z6rcJ|e6i8WhV@0_RACO%zU7zb{bnvlk&=v0<70Q-y9?bi=h zBk1oCj?EY+XL z3tdB_)O#DeUecfq-VQ5Hm}c`n_fP{Www8#7UIUnS%jD%VTo?Z7(O)I+?-ABt8B+)# ztAawU7NQ5-Kg?2#wV-i#8rEA2dS)0#AlJ^q+x*t&G8T#YI$h?U-aGS=I=;5aJ1+~} z@F|Z~6u8zFZk_85i1EHm9JBDF&aAk|xY*|ilpKQhm%}g^7)Po^1R{?s+x11s(3

omYxCjSeslT#11T7i0#yjd$cvQAmt-S$PC?rQ z;f<*TL(S&k(+N=GT)=ek0Cg3)SX-J*Acm2$0Bn(jb%9^6(Hnm`S!5Wp&+{9(zdo2) zDG3tSFud4(67(;&YDhNYo}CYI%W9_Fmi;q9CL|`wtO`5$PjT*}olvx^+u7E<<#1Cp zU^5hfkqA^Y?&`t{Z{2Yx-;PMSQl1xTa1sej z4UPX5ME}viZVAsotfC4lQCrbgH23U4w(wsC-KSl^eoykjVY~IN2~Ay+hSo?+)GqFp5X8AQOBMusbz0eZ zSCLylD$9+Q#VoQg9t~uYL6 z5s$qjcwaluu;w3BN}cSOOqcM0q`kzkM(0yx%5p8_@uBCQ^Ufl~^?GU`b(q61+noBT z%eFK|>gb1(b_(-J^$J37%djK-+}%Nio+}{oORQYwyA+0@tXWve5oph^!rPf^Y%712eX{(H-r#}) zQ{1d{AvhaL+EyF;1Lr!L=vhMRt@N{_!of1L521An!5F-Arxbz?nVE&GGgD)3w z7=ilZBFzx(}h_YifaD5<;&GYq(8F3Hi z!CR#S+{klELzuWnWG!ZJgPI@EznUHRC&kx^x*#+KdC_N8(`j}y?wYKjghkh0nBf>J z8}^Gv)u}9);&W8&qI%BQR37aLS@B_)#gBNERN|fi z>Cd!_p^UNOzl>;y6h*5SI&{wC-%i*y4*6n@V(yEL7-kk_)7mB=iu+tP2b_PzY?| zn=a5=S$UdKi_9CC8{5&^9W)Iapo40Po&h^7+LGLF{o>?bJ`40O2JIc0$&DXZ2KyaO zZvMArt_0k!<#fEJ?GCzqe_~_H_q1#kq*}(>Y@gi z_T5YRzS6D&ldd#6fb%_{L$|{RF2W7)r^2mp+5y6Q&TQ`7YvOyz@I83$%M2IZpUAjC zrY)9pK=@4F1#Iwp^S)E<%Ls^Jiua*$ZKsHI!S9k6%xVy;WTq~?Kj9_N-w4=Ke*x$} z)-^&_-U*<_A5jH$?^t1wS@p@D|1O$PC@hr*PMo+=Vc-j)HOC%K_ks@)g+QYnDij=u zf)WI>OhJXtt9seyW#_bpen6{5MDCTgY*#3Jq8A!9X>(@-SoyeS@1KvZ>4JMY0o+FD zpgiYjmthW7>^R)EH8Ot~h(3ErzDKEjUT04jvk?@nbHAO$dZV-TA+=jn+q*){5VOu@ zfe1IJF3qoN0XLxCa_`3;!kmw(({`Z0$SY>zxQ8Jitg>8t-aq-$@}#wMSiodROtD`) zv@HJLmRHD1VD(!XGQlpPsB7zt?=k6JG7Sucy9ItMv$R^@WGZ?7e&tmSNvx@I{0fj8 z{cLS=D=FtEhby9p7q zc?ipQBZ=QXw0?9TI9Rs{?iMOCw-kF?!pr{ldAjwZck_c6ufMR^L_pglzx0i@ zd)8v~K#CZr04cL(HGn-37UvAHKz(;cfB*P0c4&UW=6@h^_NAz$zEBtE(nz1wFI&cQ zM3II8pTBID>_Z;QGzKq{Kw{{Nt}CDx0cpoQxiKr92ZSO39RwWxId)Pkxnsq={<8Wa z&hC#?8XLo=TDA^=y6xe5N+G|U#~%^ys8KE}@R)SMe$>0t@CGiWGX{qz`N$av3Bo z{80I-;t-1{gYmFk%W-V8-os|=)3s5j8!b-jjaB!wf*GUs2oL*IYRBE+3$g4OmWf2- z|L~6E)%4O_N;1N`5BCx#x>6**ZJorCi@NjrDiuVI-Y74-Vx*~en~KcASir2S@c>Hg zf@Ax*jgIfz=uIMb@Dw|q$PJYH8qMlCV#`ZLGs50@gfi6e@Rd}Vky_&;XWevV@Cflk zh|w4Jp+SsF^UTG{m}_wHz>R%wJe337F%be>wjOXf71=^YeqCtnr8J{gOC{rRL-L#X zY_}pRos*6wEGb=Q0VG2J-{C&_oWUQ%TuajI7$v*o1l9CYSK|92GgCU?e`fndT&cLY zuh~{#LGAr-Qysf$$8`e0DQ`?19JHj+D}9o&ps6+8OLZzMt;Rq>kEDu z-f_pQ`w^lLa3FPnC!b_{|0N>}SU7wBHo_q(5@Yxc}a0!7^FZYL$jt(1^`<+{#aUsKTvH%nQ5Hf z7_Evw*X~#moMtwCMzVILUJ&Sy`k~HBE$3chb&544TqEEA8CCS%FYbO%xH32DhnD{UHMT3OEjV+PDM)1sW=R8aEn&ben=P zHk1DYnGq|uALP>zv@6t%TP9;5cL`q2oV$j$hFf7{ve?KkayJefyamArIFN*6g16~> zYZvM8+Lton9PW7G;B@v75$AMK*9}Mm*@t|#G}?#@Ws)6}>fXBP4}M4bFO`PkexdGF z2xT>n#QeIgiBJE1#Aogb?=pmL_Ihf4Ej_7wW($hU&%h*#ez$q00wU9EtrG6A_iJ<} zlLyPud34yZU}MUF@#xzWpacR56y;FC1H2ZPPIge}9vml~dCtT=L-7c5NzwnkR7qWo zuEQ1#?WH+sYFtI*E>v-gb-=I(V(&RUo`-Y(o#NXI=>tp8c?Qc@^-?gRjsAEHy*Cs? z3C22Q_*E*#-t(Pz1FLwxHw_e%)$TZPAjz-c0KiVmbbG_eRsVz{^?ToHZ06g6YK`_| zW};YfJ4-2-`N8s^StgBelJ^Yp8&DUYry7@B_M+G8G0KMbTeaqBPEvl^DcZ=UhphN@ zajd*LZYVNB=%^O#Z)LBzT&i4b0gP{#F4YDC`wHw{fd0|Y0^t_DD@{;zf9CtFqe&H4 zvU@lv14^sYO4cSNsb-FKg-HgZzjz)b@J~J;^ilk=^u?jpn%Ukq{nxWlCJ)SDB*ECJTM+T?uR#I(sV|TGoF=LD zrN;?(DXmfC{G~;kB}qU@Z74JZkJhZXg9dmdwPK*}oLre@RXUZO3FH@X|HJB70Ts{8 z7kuyp_$kSI>&Ir!Loz551@)w-e+w*(G+g#`u76k*S2k9V3 z*~$Uz#po_%F-aw-k3bZ4b z=LtZAj~`$=mRX|3tZ$slC|cq{|4*u<<6b z-R8Q3x~~$XFWwu*Eax=M;eSO$;hUF_tAQf%O2hen5>OST)ngBIr}61n4iGzGOLrsO z%{LB!Y^Cth>U*o!1V%*X9--#4h0FMX$C1Rx(6-uN5) z4rlOw;QEI2e;kFhYq_t= z&|05&;(7u`jz4fO+!$_%Hf4Snjf**P55i9N-v6QDGN~GDIVf-zCpA34LCD-+;6hUR zLTr*=U1UhP@`MlQvK z#H%A%YUXk#B|mVj3ff zCWTS|TJ!Vk-TVjP3=%Rd1h7JJzrvRd15?}{5YN{M7GEdaT0iC}e+yAX6!9MHr{Ln@ zAuxTfv~YiBTA0O-FS2KK^XlkU&tP4f{l)Z4>137cZ7dD1bOS1NSBG(U(OuLmhK>W7 zR99D8Zz6NdsScmF^=-N)^`JreDeTvs3k^ZgVbysGU9()=MCCp1T?2LKPRwOlzEXC5 zw2g?$Z*%4GO~Qd8!?!5-$M>xbZ2t*zec}HXIJ%n`4BH6H5)A)$wL%L{wQmS&qql3)2(G$nk}F>Cy@K^j@w+Cee!s6-?B1p{h)gs zE(Vd^IqvQX)*iSi#xc$d?y_$KO3vygQ|vusR*g z3zZ2|;9_g!8=wm4xsjk!68d1&*e-k=Tf^v-2o!X&;nd71Z*-JIgf=2jJN> ztxbZByR=S zSLc@-pwEuNzF zsoZLIVYr6Ay7;M@`*p*dAo+kIe=j0@gQV>B34IIJFU8^GJd-u#s=Pz?g^N}+>g}9k zWxjl_>A$TQDvkRDf?5_|vrN>a=fYn?o8&(=_YIsq zn~iVHZ0{tTiQoeaWM*h={J4t#IoI%)A8$~yd@H3xpx}4DC3K2v(x+=V#F1?-x|a(QprULk1o(o~`@}UBg3*n#GWz2L5)r;aHNtfhvKxrn9<;PqPZZBY zKl`Qie;{RB`xp8m#s8+he<(|pwO7UHOVUYXCiNtzV}l1?56RMCB#f#j=lZ6!y=h4l zBSbI|8d(GUQ?vd;%CizNfA}-v-d&f$Sk#a7C3>orAUfl2L8+2$|6K#PAV`7q!YdTQ zR`{ta#6;~{h!@&LNPV=^JnLP6tkk^L2!aG0WcmYdHrn6KrNf7rTZU%0=4169E~MPj z2bl>=lj%gYX5>V*GeI0*^|J`}%Kk>dsTm(GDowAe21yg1B+$z*nb>vRP6Jc56qbl9 zIt|$JGJ9;3KPaN>ne$AZHqjUZw(C#6Ap(ew-XUY1dj-(lu$D1k(HujqCO`{|rIL>F zVm$i#r_i3)Fz+jXTB?!g4xS#$wO3dNN-i2-p4ly@iB9Pjni~VOd+GE44(`)#ix){$n&@$Jd)X-V>pl8(-(q-=I!Z>(Y_7WXi!rq_HpbGUk zk$HZTWl7`2IT^Qi#`fX6?-O8<0~-Nl&4S(<4b)cQ!jU9XL`lw^4>O|WtxVgLHazjZ zdW}u$M{4o`RtK$^sB<7htWNsI-E!468uWS3AA6+H0P5qrN4i2LHF0g?!GJY%>P;aIrfE0h0U((z z0ZWn7c&xzBf-Q6ARZg%c>K}Hw#~C?e3GZ*R_yyZ2S8I$F+)5Q*!-!_W4d1GGN1991 zL}s;Nd}%f8CZHsR3@lRw1ka-2-V+>?CclGH`hn(0P7BTE=dE+J1V0ALG5EgtiB%Eq zbs@_;Wwe5J$Leuk(CLcpyA?F}7r&bcmMa?;97 zSQbL%?1}tlP|bN;A6iR(Kb)C0#w3ovWl*;GUOa*GfM7sVKC?c0&~$mNirf}Ix@#_@sjlFudW@Ccmos5e{??tH zR2dE?3Ay?hRl@xPK4hRNty~=@T8lBI?5Q2g9%p_O1Me-sX?#Aq2snKV3-&`zKJ&i6 zT;clc$0R|!BS%h-W*ERvrDU{T8rXt!OB=j-{_d*Z>Xza7T-{3Urnx+}F$=B?nTuD> zvXk*4o&68gyg8D56YP2XJ(p=hmQWfP{nKSB94x}x&aJ_IXAsu+iycAk?vLSe0sin$ zzxMM8z>&~1IU1Op+(vFj8Bdn&GvH{myGpd40Ig@{&uo^<|IV*f1;1T@&1C4EXi8|q zvZD1JET2)J(1)wrH5*GqOok5JAo(GaaM~UjGvQh)KUD4{iBe-6p4V|d=B2caE$TVv z+!ugrTGjK21_4+~`t8ajwb;~Fv?$f3q+-YJwqKK+Yv(fM*=2^6l;cm!6zaBBP6ZYG z&Iyj5j`eylSw#?WW}$~SQ9!QM=ip9#(R*gpzW})`{QQSZLUtp8ful)YNAcVCF#dd6 ztpJv`c?9Th>iw9oB#7i(^r;jAD%&orTF0+zv`7=glV0HPm+~Z{n7u_<3*{Pj6!>n$ z;(oxCZFdT0wEm@R#&N-pTd9m`e9_!Oaal9$`cSpqD_>KjFw)|&bor8BU%+YRM4 zGbJCSuM)s%rQz`90(_Gf>&;bp9S#pIn+Ca)RolY&*DG66ooF4lps+{c=GxGR^7?_Q zQU4wpb3H&J_0;hRsEt=;h|j}SsTArSXFp%Yxj%UmT*ul*5KY_Q(<(CmbL8kZXD1?s z!UI7b`x5V3{M7+Q5^|nED3e3k5_4XnMmQr0>t+?iy3|LAP1l7@ z^D&A>wzpI5k44lL)stZwth{(7y@Wc>Y~At-oW69APg-{Xry_ngvU_d9=1c9H!BWKF zlH45$ak?4Gvhs46d7cnFZ;CnT7M^`X{;c%4$^nqCBkxZIy>wUXZ~^_(Y*DBSG1}0=^kUO4+y(9abz+MntnUNwc zi2(gP--|WSSGau;6#AJBYr?%T5_4w!`s`0GZKfI*TFNWYGmPlmwDWL;NILeWoRSUf z6|7rmaM|h&{)479OnzLYMkgIEq89R93@%)Bh6Fi3`?BO+(feZ#-&Hn^XRgbMupQ7l zKL2olv?QfzG~Z1Hfn=1@Dvq@qeI@pe5& znT`ipL7a54@_jCN;c_{}D^VWIuRl*cA|$SxC_yX?Qu|N2W^_g-(6rkgxQpfiE3$Yw1pqM z&yR1n74>ZPoxzGpnUC5yo`VJ1JQC=>3A=XVIF@(n;Ge_OG_qLVxG)%@vz_(taJjv) z=B_d40758FO8&Y@IN*u0rO|^|-7OTQOrDU@Q`_>ZW2-9>O86T$;wr<8kIW7SoX;!# zna9gNGXo{D`?|C<^?~TQ4CToHfoncbW;TV{?ElNx!Hn@uSZ7uT@Aq1vx>IMmu}k;J z!p9rqLzhh6`-~V%Ei$}BQgaFY2ik(Tp+nJ^Ze~3WlBo)1q&t{lYxh?QQO>%eV+$rC ztj!Kl1lGT;U$MxK$|7e>t%m+=m^@%D9U^KUN9TxqVS%uf;jXhf0p-A@eG2EE1dbRB zkypu2XmfZ`?=!jOWp}-yUFUCYtwTqe<hhed(}lt3nlf_+MB!Lg|iu1Qdhi8EA&k_&QFl{ zwW~^a6`P&0c6*^Fm+{-V7Uj=`2|!3i`A~K5eNy_RQ&hap+XDTx;{?GOskjaS`4aFm zyBNsCXIRtgOVV_(3b-Sf6rb=^-zF%5yJK01U*3t0SqF@7c#do!Q}J@8ZDG!SsRkOE zK2C=L5OOow_63clj4Z)MewO?k8J(JOTI_3v$Sg-kl#*MNXAqe;p>|-wEjrn&uzS@d zfDXq&>^ghDbx;o|P`v5$%#_m$C)d9#Jdh_^`t3^Y6?hg@d>rYrb8P=%Kse z0h8EvQi4%^l3Vzxr|nMCM$APMvgBI|!>jkm?ovMJAE3Rc;6oNMMW};{Vt%IQw^xB~ z=1x=EP8RHd=WnjL%Y2|_FLblziyJuhM&fKnyOX6&t!@m+5<=EDT{EAO$`f@Vz8=Wh zxVW({Hqhx8Fb2)}mV<8juf@I)6JSZ+q$st~mNP#6_ac56p9FEzzRTEYYJzN&#=&YX zf?JA$f4&W)>siS5OSb0L)4AN<^5D#wVD80my)rV!dDDM8SfS4>?kG$MSoac{!8})=m#P91+_oj<#1YyZ(7I0< z8o94qmds1`#|V=K&n!z+WdZ-Mw$5R<6T$J$r@+msY>zMLyq~0*)OCxH>sX@F5OcWM z70F(VBy}C7^tlOLd+N3iE$f@12y{gsHIrt~yETb77sEt-uPxY(>N4=K)LXo1*(*Yu zfG}OIzszuibphx)nYQJA{V{aD*}+ZeX`26m8ckfe2t4ErPH=n-72UiB-QQ2SSiSidWTDvzyOY*(?Ji`-h=uB4{l{gcNw+Lt#MR-LfPKwh zSe3YYrn|Ia~ z0@hjEcpM)>MhS41#Z5TdbW=jr2B>kjqN|2I{gh;lQLmt6Z!Jp=zI7%)_t%9n|l;TG`BAYMe0!2yUm4;*~LAU6;h2 zAH#pE9>ueE0J`csWS%2MQ4?Mjs=+pG5dKNR6HbuNNjHuI1$=!4rio2lBbS8gkxvFF>>d`?d%E`1vk(e%d$mnfxYxsK{(bo zIE(Ng^+H_s7gpTUln;vMc3ur-`&!eeF}G(e5{-->=+!uxtYMDO?W(T}=Ja0|G=Cw! zLuFn@n!egOl1)uvB-YjmsQ)(1w_QmQnfr>OfK_v=e5*0+pj>lgFKdDXvK46-DFIg% z()06~b~v@G$)#eu!Wn7_DE(GL5>If$y#m>jz0pc89Q0oZ2{YWr_#M=U49?-3ieOH&XMc@B7T1 zVqIvxKaMt=T0q7fg=rF=-3^mnFig=ta7F=Z`ai7p%J=>y>L$NlEsOy7$!@IsBg(M_ zi(mlaP{5FAOrJv`huFHY6V?-cToRDYd(wbD_x6yS~23xPH~zFLB|W zD5!(FOBwC_v{~7?0LO=FYYj7zg1^bqc+fN_!q}{?1jbu4*BNk|MzV z0;;f5yn0-CW|5;#HN~WCwDEC%`0&#~C$*UBl;g3PX3kRo^lrt2ztp=0^zBro9+qtO zv74WZOKfPKP5NQ&$2wftiHfqqi&y@!?^gGVvHl0Jmh(GO76CagxkN&c&J z^R?jBwt)0MlZc1+Vw_$n8517u#C#df`_hLX6L?B(H+QObeE@gTHd9RitxZ}+;lbOa zk*jkBMr2&xMnR^H4p&NJd@Cqsk6l*la)m#rg^gLCC_%}2hH1I}PY;3XOU~a5I;KGz zu_}@Qdy~J>OBt-*foe>Hi@;qA@P*N ztE8!Y7e7E6D_0Xy(hN-Bd)d61pknPt%Uk6a9vmO{Nd}7HXDjcq`A#Gp1g*Kxxv-jtZb1xdkA5 zB3EvyQ*)hj3ziHYa!u(oHU3eR5%w#XE*3)D@o`4WH~b^yQaS5cyej&mc>pRM3;D@@ zsdkZOm!J8x3&fLv)sZ~9LiIK!kVY80#Jh(ZW_kUC{yYLw1DLY@rh1r$9p;q?g+4)& zS_S|RV7Lj=CF*5&@Qu$Q%d|*jp-ili8o$sO%X%V(Eq8X^Y?C$REh$4OAx@6(ymycREs3$DIzp+jVC zl#YppU7=gIHPuf=k)c1#B^8We9arGO=JcJIwzN}J?FRF0y(;PDlYeMYtxli@j`Yw2 znb0@SC~#I*ES3U*s`bY%E2QjKPQ@~yAzw1L#FH-5`I^~m=uqujn`|<+<5EYY`R8tEznPvQ(prq&HZhuK}m}2rM>==cPRCf%otaH@P z*Gf}4!aM4aJ%X2+)bwZ)=#0E5S7gg|2WI~A1E=kVTyCkxyC9Uh3|;fkk`R+EHP%oW?!&K zH-eae$ae7ViJ5NE;0ml^O{%+fcKXLcWoj(`ol`qwUht>!Wt=UO8}6VAKZ+S^G64wV z06tb*y)K6B8=5_EF9D!Q;9?&{LD^ z3nrD|uB^qxFYPdq*vqMhDPdvxMI%7LjSeT2nbrH`NkR0Fgn&Df<`nS?6aKZQ6{xj) zs);0l9>~ho<|`m)vPpTK@OcKy{5i+{n2pC;v$fnTM} z`i1@-jBWGz7SJHKbTYqVTWbD55a>AUlJ5N!Z1pzGt(VC-*Xmd-9@FGqjyzh|Vt^B# zo3sdq@722?Nge$90JyPTC%SM@S7wI?gikI71Sy`@a`nN;81TcvRqFE(D?(MgHW`WS zV|b%>Sfn5KOxn^!J=IUz9#L!LeSZz6AD#Ii=zuj@cJ9fFB2jlBJ530@t60|JPZmF@ z9n@FOQYZRKVmJ#=Z?>*a5oUAmzA;jS%WsQRH~g(Xfil^}Y6eTyzqc*n>qDvH=r}Jx zWwOhnlk(dmVHZ@=D!V=LS{T%i=M4jTgWydPt?IF!y+(>YoCocASwH?b(EJHJ-Dp~Y z2UudI0d*I;Fd#>*w8&B6#_j|nd337r-9(C(NebzbV*})Q`4etuFhsaMGwH3;Y#f~k zqaQGbNj!G4h;z^lmXO4m=KM!9Av(DdIj_+A zRm@K8--7H{MuYy}TdiLgtnG=kn64VF&eUMgyq)S{=I9wY8$n}fn&5$CD_6z6wmbFq z0@LZB-3j^hiU8wc*~GHPZ^BTGniGns4F1FYL`}K-%T;Z-yVPWG^r<#GDAQA}fg6yS z+r!}hy1VWg^>_{YE8>Tz?CzS7k9XF+!KB6UNUN{yj-+I@8=-?DU)~f;@Cxw|9r~}C zkWTH(8H+1Qg|w*g0+(Z^hs%z_V;BcBVgdx%8rUM!Saq+mo?^xPqq=xA2+!1?5USPn zJ*9w^@&b|=-Yvt+DIoph8K7<20OQ!?qO{^|k$hBdxUpPH>!SXZ*Xtw2549lRjd?fg zk-S_?=qV7!|Bt!|Z~{Cz@tk2%kIwIfT)gYb@2(m>&Q6Gt0MMNHhh@lDeN()qO<0LN zTD-~pLH_T{LKONz5j78GH)Dt!xV8f`$Q27B0oyX}y8)O2!*r0v6FYX01K`Bd1(Yj@ zj^Fx*>KuBQ;JJ~1i;v7wOldoA+&F(%H|bubJs7H1pyDPTrm=Q#bCj5%EGr)*H9rdu zp!Jc1kYd=4ES|8F^rG?q(8oUyUMWr-0FJg<2FA#JESqyu6A#m?$WLjUuijrX#-NlB z3Vgj6ALwz7a3=bsXg%;PwNN2NjaqTT#M8T1Q4G_bno7-XTRx138^^dLf#`uy!yDnD zb7alg(xtjXC3R6^YU9S{QTx#F%i-X+#4o~7)WL;)u#xYw3n{!RpY6g_(14G;Tf|kL zXjCFMzw6+&K-cu>fgo}*9e;7|d1^V}ek1EDU`iJkm6B0~zQRLQtYfC{g-R3Tz*!!b z7`~O%14o*)RRK{?W6>?CVWN$n#|;H1Dm%^i17RpyLPrcBKz!?EF3jQl%VKB9NC3K$ ze8%n;0EKllts)nW{)Q-m#FrutGk|WgppYJ?(R(iD9(&7Ltsw=`=yihANDITv~ za`U!cz{PQ%rQ&Lzk|?s^5b0|(wXnRJ(q3+^g3E+M*itFD0iWs|dD$psv~!7|y;(Id z2;W%;;KMeT0A?qpF5~O17AyeKE}<9v4S7i(p>?9tSoO`GZVk-~fz07^xc3Cj83JyX zsQRI)5P*$*oF%}R#uZ!Au><{i*ewJiO#T26deKAW?TH?yz%I6)YMSxF#f)#syIRd% z^X8Ka>s37iNO=wYn_+XMn7tqrP5C>YBa65zS~TkU!-y3vS};Ifd9cCm4ZW9=Rj<SKJQ_H3B79%XN`s-EVZ!G{!kxOw$M1cCAb!}b)COcjSOcPrb)PTc0=INh|d=sh* z=K6tDoAYk#Fz3jHPXm_`v9T{s4CgHiqGE?Spug18G~!2tZxKJoWlWKjUr4-o9#gG8 z@%}Un9gkQBu!28CouApFNO0egHC0rb0H?RL*1;2>O_*S-bt7?^`e8ZdTXV|DJL!X> z^E|_v%LGbN52Y+N``>=S4$9Rm)&Rsjh6+f<>4xh<2C(PIlMyv>?fdN5lE>UVlpwB@XkhelvJo@#s?`C3|WwoHxtf#PiW@ z?vk>Jkp?-Hrr=rCbntRwi*5K9%tIrr+_gWnZW zV{@vKE)>~(9%F*hsD${;Gd1ALPb5Lscc9@J(Kn^R@~-{d9GJa|M?OSIBLDvN^dGm9 zv=4EAzt?T2K^8;IRK@tNIyDjEv@-Bx%B-WJMj;1+avcZF)UZyXHS_NLv(hnfT zfSzxOb?8&#u6QcE{#IA1+zT-N1D7HpaWN@%<+$ppA6bd$pG>%>+?Hw{QYYl0+Xgf z19RmpVkE)2NseZLcRl6bD%D^DJTcoKVuT$t^Y3~NRV?g3kgOh-I2JC=fGqg5KPFkl zg;u~4JtzEJx~;e?GVnMhF?;gXgrKwcxL*G8YjeOZ{9fx!Ek9)%dXa)Rc8V^T^kUK} zx$}%`b2`B0wp^5jnc;mF&wzqFY32w!#SZ^js1e(ezw+Epe@a2rh(f(8`5HA;t=?E8hJ}8fgddR|Y zP})^B*SnKKN?yo*f>QFskkcM*DgJdT5E}US*Sdeuo$&`9euZgRBaouB;-2GU}rLsk>ZMuLK3#FDP2emo~$dtxYi~(nlg=wa4)Y zdF3os!Wwpnd%}HAZI!O7v`Zh9Yh?ED)L-%{$?Ss$pwPy7ua3%ypLO2Q>5Wf;wC%fu z##%X8jve}eXLn~Xm&v^=5scbpaPaKQQgHI`&p{eXK7b!ihFp? z&lEgftlv#=n9@(jWC#oKIz;%wbQnz%%=PU4eF2l8VTWFtq{`U8W+H;n zA0Yf%!;G7iVW9Fqw{LO>%hUe^v%#h>?#Z7Y~&MzFP37{qg$fIdP{#&Q; zmt1^dF-_Q~%4gd>lNp!7hQ`Nb7yYxoizb0<{_r*8y23LDF4Y7X8YxLQi=)>$gP=~EB&_0?R9Osc>&fD2=9yYq0Dgatb^2_vhSY&n@6;(AytMYX@ zYdCOE@;e1WW8$Wd8=!+9C{EO8m2$kRMo}BaOv#@GDVhr9WJx89P&QKKx9x*sY%$Ee zJE`w9_u@lSih?-|9K*%JZpp_Yo<d`=k-c5?$7y$LQ5<*Eq%GE z7PIz~`Zv`0c6uP6T@`Gy(`+ck#a)QOM*M`##D+PmJxoO|DK=fs+AOa=h8fNDAM!1x48Drt(ysh>AlIa1d$9HAA{VcPPRL{6b?K9%_K?j4^EzK^HRX^JfQ-ZbMg|wmrnTbYrkoWf z%4ntsmup7)0Uc{eR2v-IVF{gJf@r3xKwZ8bgP{`e+}ltD_) z1t&<(6TjK+^3LF;oK=j%K~=5n)Q=5-Y8PwJRw3;40XDg^8d=SGubrZ;!o+_v1U(^$ zbyv8Xq<-c{?nd)GVNM=LV~Hj+_2ET5zn!l2bGeA#v0t{$!-w!g1M3779A4NSYeLybnwVHZjO$5r^4ILhB3+Wl?FLS z;kM8QP~+Fo91;?&FFm-fMOJzR&-R%3bmLNjyXj$;e-ne_#$D&$Z9?POwx4zb0%Oi2-4kyb4R>d!XO--i?CM%o#&- zTxZNcNrq|zc?_OuhA1A?=p&>(o@$l^LPtRb2Z^DT`9n?ePd^*cX8&pV}t=3NwJ1bK{~LFoT-dUxN5ERMZF9Z+lZL7C+&*gy_rRZ-_q(Nene#wXA4PW9%kxY;Vr}&9jX;%Qm zT%o)`((%DK3&^*=j>yk;;h z@VcG#R4Pyk=h@6eqW@q+j(&0R`-Tm`2LtXVV!nCNxCRuJ{m2bs z1ti4jKUk{xptPD{np!PTYmf%FTDj{@!oA1AGeUpXPIQ{#?Sg-2C8$w=54X3t-;EB( zS0s04@W+L?q&FGDDfkHdC}=aW4{oE5&6DfEbi3kOl87;+(?k>Jt+l{>GT5E6dx2BqlE0Oh~%; zScqn&p>}EovaEw;LPMKdmgU)@i~Xgq9FFfVI;b8)i1u;MX69 z#nx!a0EJ4=Mkf~VQ+XoBU_0`t(P-haGz1p{3Dei;M%@SFfAk$mLx`pFVM7VJ2CJxu4L68025V=D>ua3DCxWph3BsEFpcvMMlQudH)rYa1Lbv6@s@G3Zvg&P!$3!-pCSq9 z#ZqTk|FCMhc@a^g`m`X}*@O!yD#m+_e;sIw@je-IFS{5Gz&)RMAFBQ&=kPjLI{dg_ zeiLwkZ(d9h+uj?`g0n9z@4??5eak6H?haHFZw}u}=)6?B@-3qyEO5)cUt0iB$tWpi zIXh63pF+bEvksZR^EG=vr&R{d8-Q>j`kSZ80qhRqtWps-Tj@RK2j9<--*GYQM7717ytZfRyr)q=-Iw}mOxUdCW?Viedy}-79=#gM3m-Zp zrIcSOMyj|)9Gf1iiM;X}BMOkc7Ls5+(|E!5!Q)IV?84F4;|28!RI)sBFS}#Y6!N72 zCrEwyJ0V>^R1f&3(&7`HrSpjY2Rh2Prn>NMOHO)>#i#B%F_u@n%xYJgoCwa}V3{M1 zb^Cv6;=~tF@AGLg?5}zHkmRdPEEZX$4|Q7dvL0%2?zQrAY;H-%bF5(;^ZRAZfBH7% zeiwQN9&t;n!Y1-}Rity~JyrmGUK|RELoxqPP5O#nx;gB=E<-4sp6WiarP{_lQ&6;J zPFuC;3@X2Sv_t)#-@p31VS%T0>-@turuxsr(-!eRu&3yxnR!~`0*-cQ{3&3lw|noH z&tzkeasX$^jMier5Pt^JEcB}_?hwUGJvPG}P1-;PmwR(8|I{CmbXz|Oz1nbR6{zJs z1t)#`dWcNG=YP#PH`05P#ghEuxcubBO9KwtPQ01m{Vve81cxto))(=DIoIkJBn!p8 zfpw=Q-RGuSUN<>qzu~_Dos>;cL(1zI!f~*@i}Z$nc+0w19*2dg2%OvNg0c=IVNFM@ z*+5Qeuv1O%LGa3dAkIFMbYOWZ91?SUkh(zL?BRBiSP?`CW@brmFxS2p7lHJVv#oBN znh*h2cwY~hAT2X5k>x)rBbKWmmn;78;p0791B4n0Q3tA=#qX+IYH<)8m(+7WQAha2 zx7~(~LZwK9@-p6wRLcAIy(JsL9Os?WIPK@-<_%_29{<&^J_nr(j$bp<>h0CY5JVMW zyY-{4Xd9c6x36^)ZiJQ47*Ru2+Gl`s;9zxH7$mj0^Z6o*(-hLT?NBZrnd__RUW#79 z4;S)Nwy4IOntl+YXco_a{1NY&VexzLWf=jyOK!RT4|iAv}X zF_~W-!FtYw_vjrsk8;LTgBZ#qdh&3|g6bTY&#Vbieua?HtFh^Eyq$A(zT10pltvg! zuAx~swqW&w?;pfL2Tz>pg)k-nV9`~=SOHR;0o1O_d9Mcw&Q}O7CEqRixU)p$DtS)Zx&}(D8D!E2?PVlJ z#F8Wb9Tl4Kf5|@D@EfIw`@-HI+i{9km^>8y;G{0NOUmJ~oxuEFR>yCj_M9nEh5pd; z#>qlVz7=i=X5l|ak{z}GKvoDE`PV0n?=aJqx~Gq-UkgbdbxwJ|`EHsdjWvzqVE;6X z3q+*EJil&i;HC>RpVDVrC`zl`wFjpp4*v)8@5E-HtwUDlWwLQEh%L6nEiOzOy(URr z{;KZs6TAy1Lovf5Hf0rBanEB4{UBYrXn3@NT1$4niPTXjR*5hHV#t9ZN{mjLOc zJ#+i^HS`Y66ans_rAAB5-cAPH(Mok)l{1Z~E&CxI^by}f(WJ`>cx^w;3v|g`7(4rv zgifgQhZRj%NQD$=ki@u7n0h|doMK#DjPyKxG``+Yf=Zr+c)l}nI|65buomX zZ_3&o+)#JZK);;HTW3L^&K=N13_#c50tJhCkG&itv*=t(MIY9wj9;h5LEo`NW&Jgf zNZLC)stR*2r z@vl08Xo2i<3WqIfU8FPU(V@0lnuKbiXX+R~>l-zq)QWlF4Xua!D2*HJk=9DR$h_1X1XNW0VIVEz;n}aD2ML{%?Zg<^JBgsN?qOsP)p{7>` z`}#E3p^0dK(Q;Fc0`1)kbOtu5QmM~-DpwTQ3FVZxYw6*%d0outNJd?8EUm!${WbL? z1se{b{+Y&3vtJ))2Kd%t^O=m`mGH(0Bh{Q%*ZIC7J!Xm$Gww?}ufL3t=lFl_p7!M$ z8|$mE1ll6rELrBh@MIvV+%`@H3hnMW8nqt%c+6trzr!ED*D`h|_O#r&fWEWPg?WB>dApcOP^AjM0 zH!JVg&|M2VB|vEkL~*}FRh;!UyYKJL{OUW8@#j%L<+_LX-VN3-I=42F;)XSZYos7Z zFqv76bl=o9AhdwuaOt8zH8;!O=z|i;aW>GvG^w%=%^0JBM4&>c2x4q85X!ATN`_ik zP5k?vsW$pSl-I&)x4J4-FvF<<*ZhskJ(@LI5rPbr6kg&En9;2{chKSd4zW4V_7{F) z5IF~3D!}SIs6d894Np|Yj?FAYPRj{zGeKM{Mw_y~6Wkx^S-v!qr6e9Z{Sp3$Z%r%@Y9lNWEa`GeBc{VN9Q4ykqj} z75MBRW;;TM@q4S#!h>NM0lyYP_Ldd0fJszR-xSby|Bz5l zbQxQy8a3=`uJR(honw9E;EOzr%1#UiF4*dNAc~$Vo_x0mv3M4&x!Vn?xPyI|*teEb zO(_2lK>2{$%Ouw=>!Qg$sl-w1gX>$Ej0kg!k9i|=uJb!6m_f3casZ&-~2D7EFbOiJE0#D)N?{8fEfJ--3*Xr8|MkR zw;fcIHKp&~O5m{6n4Kz39r>2E6y1lTTra*KzG3BcVpU)dqWr@-2}`QrrAHqMtzQId z^Vi+Gbd=cTgBV_loQA1Y7s29xfGdqcOqSQq&}M@z$>waQ>a}T9vk&E`_^X&9fw^>P zh*x437R>{lTIcgZUb8t1mg1A;KGorij@YTDW3`} z-vt!GXzXKwJ-U?ep{a?@6!CbEfOCin*HXibw|70kRUG+}>b{Bg3XEF(hW8vt1Y{{4 z!J>RVRaNToDAG{3DN?7;-8gIS%ih!n{x}|x+~Gfy{VB^&vF!F5e)!?{L2VyjuxdCy z!Me-}2V(ciepi3$lbQQASOijqMbW8PeR?!e5<2HKy7EC)4BS4~XC|*IFD5o?M|xd* z9z@KtwW=n->PZ@lHe=&g&dDv4g8^>Zc_Qi?dBRF2gV}z~=?^-<6r=4@6_s!t52?So=4e8&hY9 znCxEpQ$Ha6wZ%l_3(!XDdscPreFmO~^S=hHOR7I=i;$t(^BI<(uIoWI^SHp16D$qW zsJ;_}JqzvB$60}#ji#P_?Pp2Efa_)6I?ZsES-19S$-~y)fR<4Q+jpZK3wD|q)n~=>I@z;A{ZB%^30uBf70}x`G^6_X}TX@(={a0HxmDfno}__(p1iLqb=X z{!@Pi$dvIwtZHYF3_T6s)X5+*6}`OLfL^Iro85gClMpNSvGwBl`ef#$O%_$ym)8#c z-}p0D{nw^8B;WPt^Ji-8PJR8j?eQYGUv}%GAm)*6Fx{@i<+W&P^i}_cF2g8@1?RK= zz6N6`dpV~Y@Qh^dLwjUE>|z(N*t7&Z!@cza+`znR%G~Qrk<5^?j;Typq5ot+Fcw&q z60yQ6O4Mv`&`|Y*I`cyFQ#&&kmETbg-fUy~{{3)qksHG@(d|4vamjA6j`fey4r)N! zo?s!Lk-OuAu!5MsJ)Xi?HPJiUoUtGIfE&N{@uP&n-Yp)Id+3j_bxJiaV9cyqQ$E&Wd#q&x+_+f~BQB zVjbeWn+<;tF#^C!L^ zKt@%<@wvF1Roj^7$abPX0 zTja6CHe$9MGZ;R=R-f+%nA67m5_E&;5YBX0d9-{1=|Wn73Hd?PR$2z2U1<8bLq7ss zhsS9^q$Zws>JZriFCCVT#-W(Jd!Y>Dd^ds=MWBL*%Q)YPvAfg$>jSwbY1t%uaA%BfnxgoLf5v}#OKmJ(n^iX|n6cngnun=twPm=Sx@lF$t2awG{xK)N5uH^OtC7Vc8rhU+W#C zaS;-DEvq+%@oKK@#Kl^wJr*u&r=|HJzKf*zjv~-mO!ROaJTu*h1x^{2v7lJoI^KHz zmdm2YxlaA4-3j#akVXBWBXbFyqj%w*sOvttj8l`#Jq54*5#t8};#Z~}c!Z;VNW9&1 zr5jzhMF0HFrMdFEG9xZtK~}m*MefD;aKuy<3V4x&v|DXOEif z?g}1Y{Tt&*WfrjC54>V`E3Sm=TWjhd*s$DHX z%u)7!3Zh?P)a2wv#hq=4#8=&6)vXMxP_e}TXjkfVbOsst{!czQ0}>`;M`EbmQ0y2d6!p_Pkd6Tkb1Su2TmDzx(A4HC1{L~?-F z^z-LGx};IHeuy0pNqKa2(z~priEu>q|6jG=^dnk=YR2YpV8D21BF<%IOZ~8o&|R9< zZ0~ufQ6!A8?#JhzHH@YdUQ6Z<9i$UD#W%(gUJ3LeX}%v9fmI069euQC%@^k7Vp9FK z_%ledqycq^Cbv8!!1DstPb%?5ZUC`q*X7__-iKwsb<;zU@hVT2=zGZNXLQ2Y1RKDA z7tCjkeV8;>?$HfO2FER<2KX~6Bz|x)7p8fBPP>-$!_U5Za1s^<)9K92jdiENdcFLe zz7UNg|6{RCF84-`1}L?1yf(8>)`L7&1(ND|Ni^7p^H(B1`L}kn0rpq@gvxQmy#*!Z z^lUfH2~=U)fcAYeR}vSZwh}8@eg&q&wX|qZ42xgocFsUrzU~H59_9tU&!u-sX$R8Y z#x6AW?IxcFZf8T6A>#S!VO>$x{K%W;!VMe&$GN&w$DmNeN5Xark=2i9rh`LATVm4A z4_xlc54%vsdZAfXK2Ex+!aRC==xPt(%OA=M=`ca~`F%nVD}aBcTYGEVXiEFVbv$2_ zw zP0c!)lRncN0rB<21^Fum5c0_XQFPwnY`$$6j=fjyP3=wXEw-X!#HvvvwY5fS*WO#L z(h@sjr&@%fXzkh*O%=6AjoRb)z2Cna9C1kA<9Y7;y3TV)4VEdBCBV!PCT7tEC3A*-4u08Uzvm_ z^a;!N=Z9FdE2{Tp$$R-`$9~RoOv+l))aOnVAQL^{ilCnuQ}vE1J{WfUR9knZcN>Oy z&14z!&oE#st|K#$+AhRR-{AGr=BQDk?ZP3$_wAky^vYuAJO-)FVfebZ)Iq=>2SA9)| z;Yj}#WS0MW#RK6r_SD9Q=bGTHZj_y-BD2YF> zK8fOrJ2gz+BVpxBpf)T;H(qPzD4uEnIHIqKGEPWl3)_uc(Un^Kbj=p@XXeJrzi5I4 zln-f!$Fmbe;S{~N?+pT~>wRHTz5R3Y=@OlW$$3dr-17E&+_K%_af-=iQy{TY^QMA5 z48@~5MXj5Sl`+yJ(3C0h1QU{e5LXubV+Ww_msek+9aW*-S#fShNNH$Q!2_no{YcVH z-HeY+yNcxx73Fn|{5xYSnglU_`*=o^EM?g}_b@{dVPZl&Qyx&jSi{{&=dYI1xf|0r z^ED2*9jpsVsEzQLaKejF0T+gmhP>l>cp~GF%Oo@)?J4?jOfO^_dQ0%kQnzlXfu0)7 zXal>zF)2TJsiJ|(x*+Sh5}JK9f^o8%6?gnoNftlSLp_iX_+=;1!SObw#noy!Num5{ z1zl50{|RH_ckexcWYZ3vh1UYiyJGW(p8e=Y zDFmhRTuON*;Iy3Y$gDkUkaEMt{AE-|&vb&L@1>YdR_ezn>wI9<=b zxQLljOwe^Xelc4)y*GoRnhgpu{$bQPW#27hK(^{Am>K9L+NUTnm}3Z4(h= zv?J9fBf8?vy(h->8?cs!Cfo?7oV~m?%&)6#tVn$#{HKdq@1}fjJ2F2phJ#5txyUDjtPdtg{?hlA(PYV+>Ao4k^fX-ilxjTaN zde5}PqT?7AX>_slyjhZxHGRgtuZMy(+@$e#%WNqMyvwN0z}cHGD$4dS^%uat6?bJx zI7g%Sq^~HFcqyz32)Tjdf9eI^VtOcn1)lybvkoM1JWJZ}ZkD3;T#p5xTpqQsVG7G0 zA-pgs*~TA_3G&@72*(tjYeb$ICHPg=B}t76(>|Js$YN^mEDnIQ2kniUhj?T>mcd>F zOCZ4e%`N*@K0e2?y<*gc@JStI2S#4!wN{WrirtW^eF$Ss-<(0H=XQPlk8K@T6FTIT zvgW_3{tp3vFp=p$KOQwz4rbC)p;gu|9X|9WM_koMMmNpVPHpruwc74}K3ue?BLAFN zKD_!KKgh~R1E;7oxbH7uMjlsDD2QK5VUpQz@f^4B501O0bH@Ry_MN^X*|u#-Orl# zuD?vP;XnL%mAgr|e;2;G6B#)G##BE}TNia}o*YCd@(|_#+jb!dnAYnWEPEjN^spC^ z@AketbSWFz>V*3;48`PWfS#zHf~V{`AKyN-#X{vrcqkdwRe9v?c9CyhU5oy#c)zo9 zTRsjqp@T-TzswygJJ_jgzgBXy?81h`YctqyuQ62P+lr?@`Pk$rFB^Cg@(Gf)&uVc> z_#Eek$M%If@TUe(E$ zYr&4kN4ImcoI0B#`^U)tKmz2`2H{P`j)`k#ug%f1v5aCsMwFpqdJ=uKgc5D{O>t4K zqlzl*Bjz2Mqk%{)x)Ne-ePa(^{+Q%_y809(p&l#IM}8xrA2vR(Ys?kf1M5%zLIE;? z?NCX~Y3_$(p>x5^nWNt=6-t?S&O9$1cH5u8N@?Q1b>k#+eqv|^{;Md{iKEYUCY1Kq ziy=w*=p?*zdm{R1dSbhus@)?GG%5Qt2qhEKnKJg$DnhFpKSEto>+@lNtSpK`T+&hJ2<=>u;QVBA4AWB6&6 zF!-HbE2Y;v=`!K;>w2`Hqlkv$hlUagBdXj_+(Z&^4ar&xd;;lYu%eARX?HA)8nTDg z`lwDEHSa)e^&xQ}n(scvvf~x?q#TxcRAJ6^lgsfO@$BLTxv2lTbJ2`PY(g0KBJrxs zj2}p*`q(FqMOgslWmi?QAk((Pm}RR$KIVgInznu{{*N{b2BIlYB{ufli1>bL)A6-? zoIC%G;J?l*AM(1xNdLEhh&+WD+lHwb6McTsm;bSa7&OaO0kXUO0E1O6?>0Z_3n*tP z)ak&2Ni)mQ!p63!gbyJsf<|0T6p~Ure+NZz!P88>m9EiHu40rcI4W#9CiEkDy@TjB`VVZ1%Ys9+$+L55VjG*(4{3IT0(cM00Ahr=v1?KI*D<@&1S|scMuGAg=ju%4P z55E3x3nXFb4&mcRyky=OR?wsnMR@T>xV-xzBv*Ty7Q)!KyoQ@K`un~6mW=VrTStj4+I zi#H898*4Anc?Ob%%!I<(R=^w9|F@PG=3fFMs8t&4zXq8(v)+|wLpP*7NwN8;xj9OK ztfR(EJte$+Ej}7E$JYV$dUkl3orXPy66tZUe$^P1L}~fnraGBQcym=?p3^bOivyMK z-+dlFV3NwPF-52;F`^ZE@+CRGYHd8PskbiU?MRd-PigVzDKQKBjj8HQv>$?8!&<3y9r{(K|18C&PM2+8u>&gl0ZA>%uH zks?}^xJ<0{SDxfjkxSZ@69oe$mM)K*@k*Dx1rzXnJI^z28u2!b{UyyHNTxy(%b<}k z#Jm~xq4V%v?;nIyneVp5z|kQ#OMyz6C*~>e-kkP96Ax0M$qa$QW!4cV+D?V5^dw^X z`9W^f%cq#KjBJ%jyd0t$KH(3M$MFQ~<&x7ki+G#`R;3p1`JMJ^<}uhw_mFoV?^7Pw zy#j}mV_okblNl7h?acLS9YC0A}S2-z0?s zyeE$-76;+4g}Q-6h>Y~|s>X|-JQ$jXdJUf-S8!!vjbtEe=C?k10J+cm{qpPgAbX#l z8$$HxgqM>Mh#*7!+n(`8*T*d~?yDU}=nrDXc-_qkP-nPGzH$8WKV(SeD*lf0B0=?( zn?)jr$KA3Z!I=Aqy4U!m??TX+lkW2cns{4r*&wrX)ma9L7I%#7k}jDL6M%l>Nfcl^ zL2Bu~KsU1Jh(6n|$ho0Pg&REld(**{bt#4=!(G50Rs-pWk6tDspV+vfocX6qkAVaP z1~AC8yg*J7%( z&>3xhgpCD8<$XcjR-IA8bY$I%LRJM1QU8H%AE%<#GFGY}@JLMhhqL`g4(hkO$#>u^ z#fT6mf^D)Oa~6dEFRMjqs#zE{C!op#u+4h4)f18#)(Jr7&W7I3gYBf0mKlIy1+A3h zjrvSF1YLj=B62SyXHkDJ{Tkj$3=nBZn`A3lNr!m)?qWz8N;ah*gPa#~dhnXXic z4#W5*NAH!ZE9M~@13QhQ4kalJOcICDLp_1G6NK}rm0ly_@o7mwi+e941k6eJ_1VW^ zA1B}McbZ#Ir9$R?>67gg&J?a6oi2^m&`qq6z3ZDPByYTBVN?8oEx>{A{Jt$Y$reH2 z`OHaVsnRotJD55Cjc@;o{Q8?}!xRavbTP0{_L&f_;IYE7BK%_llRvY1#A)$>lXMIi zF=Y^`m-o<78#+Vu|Fzn~yb26#!Z3tlDU5y^{~=fr4qk;*OD0;`vHuoK=dc_W5Ew{= znshOa!e7xD2K|LiI{Kun8M(nx!V*_7QP03bYwF8UEbuWBJF>?S zS1B9ZiFaVytG2YKsdWLw-_~;Y@R35*wc#-;Z7A1^n;fGawZ|$>gK!+YoBdebjlW5K zSw9;{0uJOf$2qon0sm|X>Q-IadjcyaPGy0|x4WMaDWjY3M=JBvGs@@vn>YIzti-NA z@bSX$W**&C5+&*{QL8KQ%9$+z2%39p%gWT!rRvv<`aev{b%!{m)Lh16Kr7P|rn{{; zw+b2pPTQ3}x2VCRRT;NMypx?vKIwd|aN|`1d=;ShGhtsJbAsDau_wqQnVnz>DZ(qCi`}o0R7>`4v6-ai_&@5?so(|&6O+86-j+W?gZ8`#qAw}5CDHf zMFZjI=*#VXM|9JJgEQ0qA!QU*Gs$+&l`gXRAB33p7&l*c6G0RRxj|8_mjzv7s-aqu zP&agGzR9Q{N0qhrKH}k&;A%ZGyVNy41VHOKTF_r^5%qO*Y-Xnv_t|+4!dqrSc}N}55z5EJKuSBm^!hg{LlkAX6inv zfexX>7e$ZMuahBv`wtI zx?km8KH;LoGLr7dz z_<<8E1F8rMPERRsUKRR@_yINz3f>lbHrjlM)M3)u3r3?2JWkhvKog5#NeJh0zQUX= zJ+!rN0kytP%*OI@E09wdz2P=z#;L>XPKaWJs!q|ERq!g2{%O*S#XnBWzl`6q?~(!r z+%;5~lee~4WlsOeY$TJX0)Z&dYkp1g1}Vpt>ZUelmLWCBZt6$ zpyzc<^m;?`aXtTPcSjVx4_n!$6f1J|p0K+@4Q60xmvCG>X{T^gibdeIGH`0Xfh?|t z?)Nc_WJKnL<>f(n8tFkfwDaCEz~rUvI8fphSm4TfZQi{ag&r;Qn}JWH0*nwo!jeOj zn#qGES?%ItQK?65UssESW%4GbAUs9feG&8;%i`q?NpmI!8WuwM4V00AR+ImM&VZjY z+xOmE`X0F3^%_?pxXbr*ff!4D3XZaB^@xfdV5mXC9;<-H%{{KXj~R4=O$NmdnosvKceIuM)^3=lCHw79kgk7nm&t~~hnMjhi( z1$C>nZ5Y3B<8Up$H_>at6-nw4tm)wBBRUrk_&I@$1yR3|Egc7E+=`eI;);vY;^YnN zOb;)?@psMIKJw^RK2pRb$NefcdVq^l$i>~h-GO}eHP6PpXm?U|mfBOz203NK@yzdS zP)H4QyE@ufw3lECz_;mUx%hZCXPSi>hL`H>>!e&5Uw6yJ-TUSirP(s*=%Q| zQ|>0C95tF&O=*1iUc_*;P4AV$7oxP5bDA6XTPN?MHJ+pz>Fs{2t0-hHa~wq;^3(To zph%SfC;j9u`*o!p^%KwD9;h;E;2nxP^87Wbh50p##!zd2&%rh_kr7NroC7yaz2Vcl z(-v?<6QAGHd=b?rZI@s)w|b?a+!VZb{h^xV9oVOZ+hr^~fcqipDaSC82Hd;5O7$*Sb~hn=&TvY z5Cz%dGJk6WzXfsXTgXlM%p4hKNq$+xb0ZSM|E+eewWzm%BKS6em6pIT$m7UR_->27 zP#a-zY2*R=+H;!Vgm=bSA(ykGsp62)sc%INPjN!V3zUB9tVG#%HHtJ5Z3gG2T)&et zgnbx?b1rT4@r#*>J1x4@_5r;f(i6B6N!!S;)U50KWGlf(c7q~GLzUT?SI~;BzoF0Fc z8Nd2Kzp~@XQurub+6`|vc2l}Az6>m~or$M`q&39`)gb~4<@t8n8ha_mOZKq7X z?W}&E!=c2LvuC!rsH^X_f~FwdrNux8P))_CeoT01P?PKuu7;Ogs&qsrr{F(F_cTi=%(Ui(xk-K&p5&)JhsHYH zR}lYoKO)M+nXpEgWA}AJPI=i<4$l)aqR}Kr6)03z!Qw@-p@mbc-ROtw1}mF2TBxxI zKa@ls2qq5xsi3_p7x-=Qh-6tukJoDMD0k+b#isg3{GwCb0ce|kH9ipeAbVXOAAj(9 z2H;#eHSxAh;h+TI#9Qbd644#1^mA~jggWN*SVdMv)3a{8Q^Gu54)XLc_Rq13{DWAC zOliViG{M48R1En02YB!0W7ZKoS}v5DxqwD@@=>6);&RcKqukh20FJ5`M|8j7z=@06 zEHYH4KU{qo{Mu5@F=g+w%(NPWkd8yROa5|6_{H4#a}@7Y1@s^Bdn+Yi{9S_h6J!NF z*{hs!+{h=7VC+m?1-`G1T|pl&=vd@yKVQ+AFOdl`46w^6N#XjJp(?&FKpL4}5PW85 z{VB+FZf+s+WP1FSwTc-S7k6v4yujSp%-*QXm2>G~R4r!)!v0c)rA}tBzm99~_pPEV zX$J4(i)Jr|KGXh+1eI3mQJqgEBUJC#6-2}PH?Erm8u#{(-RaFmzbQ(*`C4gigVW8l znHA9a1}+MRvYNm(e5OJbcxdXHR1QCfXHDJ*uKOueA{#wcvcCU6{P(}O z{NOL2uaBs5^1)k!see#V> z)2Th{6kpL;$!@J5d*Zz7SSGW3{FQr63U%TqBAaLPF~>l7#*`xqZEDF96t7MSus8zg z=q^mvaq(*5W)SKC3&*ujP>)1yO~#7;>HcvVSP3U7>gbiol#ZB@LJiw|*EmcJM?HK9oCFg{-bS7ZOm)Ff#`Yg5)#e~y zV9*`%5q`6XW{&@oarPG_JoK>l+cB={r=#!GETSW&-HIIkD0bOsO%a+{jc_XP{VRF= zc3QcfCWHoS!ItVsjdqncB~3Ai3c^sINBIag%1+K?7_t|HRvNd4H^L{sIl@y}^2Rs6 zSj90G!>l|;`VHn@j9CMC$E|qNh8MSq3t?hY1Ng1uH6j_Tb5=n*?^PWWpaDwv73lRZ z^*K{>a0d5O-->z+`pR#=>1*O0N|NB68r2kmxEe5D5Ym77Y`g;)lmfv)JN(r?o4kDTduEvRKy9!?xqVWHTj%mN+ zE}3zqw^;MR6wX+qUo(O26oXda#(LrhD*4>UOkSv;J-MtLKI4u$rI-J7AI?#F0_mHw zAB;P>{##*vgq=EXXT5hqG~N)(#v5jYqzN8$I#~EC`Nnuel)1}Qi;=2G8-EGo+5m2R zO6Mb)zm8!wtm$sTif?wKIb%sr0P%_xQFS}CW_3qS<9rTXp!{6a^iC#>KFiFn>v$jy}uq%m#&)UC!ZeOHKN;-Mcff-4U7nTW!?2rS=7i|Ks*B{%>{HQy{;* zW)BR#gmpEhGy`#!>$voO+Y}xU*B^^ccw^SdnjRo}@w_xQ0u&e7La&|fYt={U%j+{T zlF6es7HVQmRn)~5B_!?J@hLyOt7A}=T=={;a&6pi^Ngva&VM=cEmW5!ox$3NeLi;e zfGx{k{UZdV#?w8th)?uuxc(#!De5fEpz#uX`QmdP%ZCj2jkL%SdU5MEuQ+CxSqI-b z#+La@$O>R;BFYiuU@Be82)gT<4^xMgDVexxzYTIL@lcGIm6g4+x4{RZU&E zt|bt+;%Eg9Y_f}U7eSv$ymie8L%vz$5Z-K%ku5)phPvkH1F!Symobm7YnFcLPo%7x z<94k4gDDr(jQsVt3)3+vv3Ry-+8Y-^@;|mgXsKY)n?=3Z;Vv73d%^8kV^jaze$=<{ z1x5*Y+Aq`CwnBza+ajsbI|`61Up(MY%ixu~-!ia<119Has7I`S<(gyoxFCn&5k25OZS%W+%T9B7I4^*ovtq#?_6w$DqX0l^ zmn#)2BhvivO?HbRGw9O=IH>BUy_w+_tRVki?sveFtuEJJ)3#-%s*LYJW z4oGSa7=CT5mv7_GsNXs7PzbF4so9tnD0by)WVz@PHsnm5%C~PBH=oU=2X@tLku-4W zQj61oB~wOLXPTXdcew<;IUe7>dT~-q1yV*hkFXYWJCUI5FLEU|i%+6YtNu4OrKu*EB;-!Esm5!0@#abAGn z)O(KlKY2>3B|osZ`KeD*5$8sjxvI^)_^@tPb|r`S)M+P>=*>D@gU3Fv@TBJeoHg&X zUGMr~#TE3n_~LPs1cqd%%jUU97)NS={7TLcJ?&8km^FXsKM)z2TJj$Hb?ID>40x2| zC?kA@E>II5fGROFdgmGIVjw`qQx{>u;#Gid;~hXG%mW>Gy`miH_!*{*T^Sken3UtJ z5AO>q(zR}Fv3}esTQ1e*2(&W(AUdVnO=v4?RIoAQpXC{d`@){k_!?OJ@0iezmc_Gf z)s*YEsm`o9g=zLSd>zooLdIWKRC?jw(48$kDsz@nUL^V*2z7Ss5_Eu%2?qpsA;EV~ zZjYk=u$qW+EmsQEtwE%usN4iaBI~j6}{pUatA`5Q#cEChn;{L|@WwL9+^e37hs zomlBi3$ZvgdzTy#^Za!DNyY;S;sI4I?co6bYvMc$)TP*Z)Gp!~knWt>+qfS=FbGzU-<5p^g zBmW>Im62rMJ0}6Uf~6FzNpD&!j@JcxMr;4U6%Je6W{hl49@U=)!9Po(TmUYFG|-9x z>|)e6Zea%XcTlXma@A8mo~aa#jO*|g-?^mg=Xh~kZ10-jfV?Hv;rod{F!+WTGuIbV z6~MItqoJ81T2@gq?)^pgABbN3HH}C`**2Q1ET-LXq#ev%<&s9SIxFM`YgHChOHt7O&np?hphst+-c^C- z)-L<8Yt%P_KJdTmm-_q}Wx*)Kv^Azew8BV4y)Pv-E?iUT0Sw=k(18J(%lWi_USu_v zrp$hs?9ZjI#N{3>+0G1AGFtQa0ZhKlo#g2jskkvwu1O7`&IR`+UL$YqhFkuvZ(5^0I^fMGHG zFWKP9NBo4oYq}!+c8Evkxp~!O%XQ^;d4Zf36Af1PMufAE_-9ts4@(-N(t(#kjWJ`w zBAZqwxmn#)l=2Q#?EQ6H*CI4)|IFx>15IFMs(ErRpty~uprHL&-;~h(k59_z&s2ab z$W*nVv#3=~skOrk{K$X)^ROLp@tgYi@f%^^Lw12kw7O~*z6XQh4k~8ZrKtTPj_kJy zjCevj;whY>`4zbTtDgz!yX&R``{(5w!(&Y*>1*n=BZs&r4)jDK8ZDuYuzaJwioHu; zf#O81-T`r}i)0rEUdrIGdGl1*m!F4dYT)gJGzB)^%qf)<#H1i& z?yP)4qLl1@_U+VaDFaPf%mL#dmPC0L-gIkwV84OJNXj|6>%_NVCO&aHUak#^jXq|0 zK9bIK2C@BFg;V>g5~YzKtjli22o|QmH&GU2iOzQ#e~gMOUgUfhld~?CmxI@O2xRZD zX1&DO1>j=!ql#(yW$2Tf>a_nCMw%xDiV87K<^CxYs0ENjYy`4 z8TSfYXEe--UI1>Cyo+9Q)q_|6)V%=Xea?})w=8Tw>HLJ;WIhLHk%->S$xQT9d02dU zZO35K(X&VZ>Q|0{lAq}B|?ly)Or4}R3Be$sc*+fh-Bu-X?+37jW6W5US zA2S#c)H?m1-FyN%2S+7bDP4I?;J+MqSxI_dBBu5JAu0o~mfa)Pl*@?wEY>-ea%^t8 zIduqP;z6b=(0Q`rjJ2Xf3ll^HTr!GF;AU`z7PbX)vc+?U2H$fuGB3ln9zv<3D3NbX z`jC&D@L+ZWcM#op-3x7vf2NjGo+%Vi9K-z>QVMMfEA!R%m{MtpAiVw=4Z@np*|o2s z!d2K_7dTPBb9B8U{9o`rIdl`Sbn2`(#X>n{RocMARR(=CkEo5yObe!P^`E@ba3vY1 zVU&aK9KBOg$m5h_EQ*ZZJEGV+H+8t@BrU=-V_tad&|f|@gJQ_%~Qr=nI!W!>< zV*$n{Q>4ffutCNUk1idL(O+2Y$-R9*BgUh0&h$S}4wXbE&#=L;l$@g~{8;71$+61d zq8}e*?jSd#-DvFrGekMiln4W+gfP!1SVodgo^oB^bN&bNeIH-4*ZdurR&Y?49-Cdb z+b3WdG-ztzb$fC)VS}=PKNTG9(A-?=^ea(6;p!B-!a48n z{j3u2*MsjvyIOPlZYRCc*S7ux8Hb?O{X}?+K4CWa7!tuim-Cc;0hP%KQK#;w{|yD7 zE7;ivN3ldSV~8aObxykE8E?bElHCnNV`{7%Ln69A(e20WbjLW1X zxc!|HlGlQ@d{gs=?Fr-6Lxl5fL2>db*A?e@hQ3;8^9uA=BN4T!NuO=SQKKxLkp;79 zuEi${u+twUDfS1$EQr0;OQ_WV-B~x|?C+zmGSP<7iG5dg973yERx_)9LTl!m%-tiV z%X4H~D4ECXGKYvnKn2+4Ls)b>eze9oqc%Fce(5$Oe7#6CCTE&}%2TzBe_#{V?$oPJ z-Y-EMD}lLqxl30JPU8B5_S zvG^ZW21Cr4tJPHuPqjqN)TzH`8+s;Pq54_VwF zMV7|am+?g7hWB&bzCSiU^2jygNk$v&w-T;7wHhC1HPzi$RcrWb{jOAY&waoTPf$>hAQd>mPtzjP@P1*551aK=1u%!4Ii5{0Vd&w^WGsLTN@U1{S1I~-T^`8%QVbxm%8;GCh z1B=gNyz-7q$Mf-=Q1w7U!lS!4ZBth6wadb;Jr+bEPQ&IN0EmS`YsQG1XXFu3F~Kqa z72{M|pB{ViU}esxu!& z74dDGllI2nhS_b=T~7ZU0+eRrN~wJn0;9MWZ*lc|??&sgjn4jJ+GYOzw*jwf4wV1S6p952Kr?^K@vGaMhTl`Y-ME?Pa_yf(<<2QG#!N< zg-R34H5)_SbZkuQ=gw}p5UrS=Kl7G6q#b_5UWi5std1!oX3_*8y%ni%`La9fp?}-0>G1A?>a)$`bl* zyLWZQy3u1Ir))&~Xq>-TkH4EOR~5pExzg=93uvhvKYZ0mpay!LD#)eg#|WQeXcPjWs(sGn{^PRlP0L*2TqZXmmYf>RyXXpv)H>R)aNIkt~Oz0R+ z9i`!u+4ZLm0(lPR#$mknD?~5?i^NVB*v4r-j9q5I^Rlsh&h*Y4mC5$TWDvrDtQoU@ zK4PxV7wzz!k+O(rN6n|cjK@x#sZuw{9vpKAbCpt{3by<~(1~1%2~8cJHlhktc)s`$ zI|Ybq`A61Eb|u4&&kX^}`3Hl{B8z?_kd9uvI`u%p2Vm$VjXjF8WN)EztEokH^-z2yhc%51_ z8@8Y;Fco@y7eqUT7U{Wx6XE)TrPqFgO5 ztJS7warSS7WLCJh~tzV}vIyqr>BE9=3d|hIoxm zoZ*1~KupWI4`zEP?`T6I9TeoqhTm~^lxm{`=Yq<9H< z$=F|6JQyiwe;811-!Mgi&aC@OO7hkakWpK$8-;re_h5h=A=@&-I5jI1R8`9v2$10gEQ1!lZcPQ{W*U)WZpM3YmI5 z-=7n+k&>LGG|w;4UAz%6&b+5sRLebZJT&_m`0}K`yfVFjO7T`0I1o4Wrd?+wv=}eG zMAb+gmbl&L+gK{?Sz0}zDTNI~(mp?VAiLS3^LfKd#JIKZuwrdH>Rn(Q^y?f$(k|NP z^$-~6p){% zZ_1Z1iVsz6JZLP&s-5tNFGpVEgP-nyeoYnUiG(Uk2vRdUicgiA$|2cMGvoa~lR#`xz;}k9|!XL*nn}&wF zkqtjh+wWS$l)*rjbZBH1Q@eAy1H{Uqhic83TsYwINdQ?Ou0HPLlpC(AD5VCc_RA|ZAuaJJ8b)JN@~U7 z5PbZ1sg8jg)6}+-(IWgSWU=v~ce#%wIc~TvZ=XeunqwDu$a+$6OJt2j5}-KpyKhbD z*}K$ffs2W`()DcC({0~wF225NHQLP0N{BBV$0UdJxFO>C3;Qf72w4L6+-na(mm9F` z>*n@g)Hs`PnqvHR0YF38Es8cA2A`r7Z7eHoX-VRr+w0|mbEV*rIGVuU`6x!&ZqDzl z<;_jc+Wyo?HXHI$SxoKyH;cCOoER*&&E~-|+|~X9I$CfJ=DN@KA#MG* zOAs@f-jnx?+&jt;*oToQ-e(uzXl&vGYn_kfBQ&^pp0$y)>L1yb+0Zc|Ay4*JMsG=3hPE zj2-`WHL@|(WWrJ^$?v@PeFgr#4a8U%<8f)ftg?_7bo57ep}10H*Hk{;$vdE%G>A%3IJWwphAb>c&Kep(~y@Tvxx;n(lPZ9QgK+kH3CD>4KTkNS5lD zTGrO4ZaB>mH?^#`m%OIu1*8gf8zCwbk=Ndvr)JI+i z7}*d=|FiLYx@dj2pYityOK8lM%t;9ZcaD%JEGQ6L-@j}|^zr4%Y&4eWdu`WbRi389 zeBWeBV#0R08?m562^C?6SaJ`*A zr}H^qL%s%XJ$9O#n30u6EuB{?D8Jo04aiTpHmnF!29h@N2Ge^h5_^$UH=1XL?u?m( zek!dYFY2+TrzvW+c}yq*`ojHcYRB(}Q@{64{IneuCDd1KD_e*J)v&U(jk{x4n8tA7 z@jx?co4`Xf$L=>J&5~=3K|dYwBEX7A3p8#&dKQ2MC=FjxVk| zXYn#bHG&A}Q}VG{Zmzed0OR!HBh zS{K2F-H4`yk9>E7vPcYDGvpGfzD|kF)M1L4sk-6nY8Vw}SB2Ur9>%h{96{Y)=p65< z)4z}KRekNiu6HJL*lqm8xI=`{UK5qi0L8fzK3d7B_(e~QQUsE0BJ@WC&D2(-@&8mn z9Oh8%?i4Do6F8O0hSer;U;A?-$PFS(I;>D^xA+joV_t%MS`o66% zTVyK>r#WNKnj+E_D5Ia$5t-gLHo7x6Z=stu^J&wmnSd`E6m*9O^AP!KyFiJ=FZ3gh zNjvaKeG-XN_SHDyV1N16MLjkQjAZWJFVU15vyJC&MkqyGOUK+GunQ1S()J(BFEni< zU_GAHTpDWSRihroDfUhayq^LMj7E|+E32LBBFR66l<|fy+(A+rv0UTxc9GKX8ZlMw z=i|=vaiBk~gJ_)^*YsTeBLVcoTjjes5NDHY!J-#uApP%D)m2S{DJ{l5d96*q5k)S9 zTvi3Rd3Eygst4u)( zzollfZUkrS)$;zI!aJI#m*sd~YpJpUDOhwHZAZLe9{kRYxre>1;fXw+Idwf>M3^&BB9+OQr7s? z-+UaC9u`!Wr0#zD%H}^1&ogoDvF_~++T|)cH+8{#^IJ^fb)(MID(zgTg4>urVMv30 zV&!5;Xk)IGI{oMD+L?Cmo&xQjv77poFZuY}bqBuN+mrb0`s{fe&&k!-$!MK+Tjvx` zW|tn5k5X{ZlaE=el@CpF42E%IFEntz<8A3!tKkib&9+=7W3%!jrM8Aa3_)Kvcl8su z6zq0U?|ppcjh$!F(!0taea6UXWVqVscZI^I)yP7 z{EZ7YC8HCHMUHV{XT|Y6p#5mPhkOBz&C>ATJfcfrjr)>sL~7yjVY#}DGHR>5Nghs0 z=-o}dVCw}E3yHNhfeq3CQ3ssEih#CA$w~JQ&}VFV@X>KASKiWcMs)cu>u%F;9qW(c zok!uac8|lC(cP?3!5#M7*;UP@98sPto9l2?UKIRz@q6@b8c>v z5l2)30}w%P&Ed745fDjT<7P9V^=(}NZ8G)Esa^V$kaI|$tV}@n?vy#>$Vdd89xCP6 zLf`VTk><(K?n#rexDMa%!eTMm2F{53hA*FPc+x2oi_*eZXb+Jw97_UazI!I*_$Pg# z_p{6jI3EM)60d5Rp$D(}7{Wh=AmTcjOGepjcPRVI=d=|C>LuiXysaKg$T~=fVifKg z!4PNz3lWi^L^nM}@Scq@n`q-luydC&Z{kwvC7yIV`V1~sZsNqPt}WVIG#Dl3Kq={D z2Vo)mUsj0Eqd)E7KT|m|)s^CFE@?Q^C3qKgm%VIEO>qJcORVZnb>978IBaB{L?EDm zF)H+Ks?g2^#ysiyWj9hh1bOOzE~u^IZ}VKKEs%jjpql>D4c#CqP?TMDAg4i8og8p1 z8MdEh_)JNP&@Yg9`DF|cQzF}#{>JHw+bdrVXewzd&>0j!X-n@EJuBT88-%s??xxY? z|9fT{`^+60!FgUkX93G*Az#3`5m$K}Ma5AEx17z|x{%=HO!BNPp%-(;yu*x7jlloZ z6{(hw{2G?CR|x!rN(&(q$ld%5-#^S&QlVgxxsxhA>MrbpsBqJ@-vR~vHt>8bZ&7VTfvEUq^Zt>J}$Ipsp5 z>WXTJ$=*0k|EwbklE7};peT7d$i$(&hR6)?hJhvjOHg1l85u#Yv$3VTGNlRply7rq zFRS!@CAC=+!Z=uCOHWGfFVRQ_TJd{<3*f00a}N8BCHpgqVc;fS(Q(*0uCpFN&qv#+ z#M`xLv}b@_FVIQ7_!7R(E2?0!e@>>(*X8G;2=RL?xQJvad#;Y17A&s3J*8A4YHJ6q zlq2p;nTPlC-|w1>aC5g+)-1ywNB+Bi-A4lL@aF(X|NYK#yFZBveP=oSYf<<(9MS3V zQ5Rc(<48O&>67oVW8v%q-8r^GD04%=N}VIbG4Be8b|sZ8@ekvlI1|$1pR1J;ua8Y+ zb0eN(S?G{|s`2+@xIScP;h5gk}C8F;vG{V!oiy!DZYAeL$-7M|>{bd5j2 zQ=9c-U6V9?Kf8{+ND#mMR?)FQ=o=%u2ub)oRGW4=yiqm-KnbZ#B#xB1*QENi?%IDl zlv49;oi>pLoO0@&yTO7+-=EjqTJzgb7pH))@-+K`>Xg(uuzr(2p$z9S5)XqU$}-iz zaO#~k{r<7B_j7^j%#?~X`6-Q#;nt&X73Jp$?G*H9qSf4yOSLuFx^>M_%SfJ*V9QDG zf?r!wKojD@vabkw57*P2=~1+#qW zw-@ZI8tG^tP@PHgsbXEKQr<6^*`XO5(8a+hI60Q6-}|66SS*8O;@CfA$&E7i~`3C~h6VC+n2irsxi<+KHSwI~vK!^T1A36TI-xw%geB}pJ zas_I+1Y6}o>tr~HLLr6^z%izIB6vHbv^fmqmvo?bdJ!j{Aq^*<x#)0m*q3eOO<&We11S9=oignb)qV`)3k`^EzADf>)cbsdo_9_o6cC zSCP0ErdTe1Gb8*!L5vczMazREcW5c2kpY#cJxNi|3SH)w01%`tgnPT9#(NMeI5Y{a z(qT64#K0Wm#U6>%(Ud{^y)Or?t70WB5|ZSZJLMv*hV19(_=Wr;8LX8dEelkm~ygE2^s7w?zZP_n!R#tvlVmgV4aRTT)7hUEO?14TrM{7gzL7pUSP>qtG)O+N zbkxN%jx;Yi*+gouo7}8uevu4O3W&w)%J$y%X8O~HCjA4cWN1ec1Sjj}1Skp0DOKhi z?vOkJ6aO~iz{2$Bu;eZG7pT}6Q+7RDgy!c(x4>Okc8!9TN+Nn{?W9mqbv&^{LQ6+& z1*@z*3K{k%x91;3mEP@Ol+-aR4oi=T8dSPw~z=6)GaMX21)@!X<0+S|2R*ydbMN-`gB;+ZM`Sn)DOPNE) zo=v&ObZ5#t57qEyk(KCAF){~9_rb3 zGqbZ!sqbaZjn_(BzJagim*$qdUH?n`7EIhpa=g4ZH>CWXrOp=aM)fHX2zy_COu{x6+qk$}s13rc=B{qAimwq!7TYcij8q%G~3AR(Rk+@hB zF5bIv+$DrMa!tU2{Umgq>Ll%R^v+K8}eNO22aJ+F!Ho>qC9)}6N@o7#s(-{ZXbvEgO%DYX3Xfu z6^ZYlM6x6RLM+fiB--oOBA8q~zLVsyn&J^wJxeP@^&DB^br)_Y^8IH}6)E2JW%3-? zFQ%Iqf-?(gr|QuHy=PosBoz=@QY35otvz~xpD^L{M|0$XAsGL{oeQ(I79G~ULa@|N zbhb!L$axm+ptMw$Ls<8jDVkpJN6Z@Es~gc&3O{3#PzgxMVhQH|hR`t&il#!j;S&=c$Okphj7I3ST2H+{TIP z7EnN?y^fa5KIr4zn^svHiPO~-my4OX8hjWBJpnx{7ss@|f#T?jVzocktFg*?N0 z=I6?LH4KZ%TzB_bNEF+o@7^Z3(+rx>{x6o;wk>UEU(X9|aMh15KE2p#LYS&NYHG!zm*%F`)-WPnmuh4%;xr92g)|cGz^Gd%5!Ew-p)cBPO z47KF?57`;)`3MoX)UmQ%+j&ZA$fi^9!8z}a#asB#0Yu=&5=N-6hUfBZHq zb0WnvY(I50oVvf3`wgeKYb{f!ymnb?q|v6KP#8g5PEyESTBN&{4gS@GFBDWgv@q3? z7))<|KHUv1NkmAsDBE+Wt1#BBx6FihY1kzRe zQiw652PL!;WZhWzu`G$GKPr5j{KA3&PzJ~cc4pc;8f*N3owhE%L7W)Lq{X>*J$S!x zPiAWXNN3pxqCsn$;~#e%z>R6T(@w-sig4UIIwLeVO$(}b=uq&LY|GHHSFO~gnp}lK zBF%yZS!LBe4($p)w7Cr*of*bu(2tt5Ci8NJlZ&T4>0 zYZ~vV+$-_zUeu~g>ktm?=KGz)dj?Mjxbs#g!;Aj&cg!WWBE8SNF=@IbVG?_gq{=G4 zPW7D5S_HR%`mWmwQ9W%`PnxXDSI$e=fT!+Kiud@exM1_SLk6}Zn%ILV13vTfNIM_( z+Z@@BtVxo8D|v=?a@q5#Mvi^Ejv>_Vams)}%cR20l(Y;SmwcY0^Zr?n4CXlmAT3!b zidYV~OM9CWd#SD$=QSl!l;y@_q{@La7bnCFgCTD2N407JTJH%}x4+AKfu+3qFy)yg zZ{)T0>QiN4&25i_qL>#)2$KuffjrZ)fs7&4BQTy#R=w9e`T74lqZDZz0lKZ2Y>nTf ze1_yX-D&W>wxL}`+7pL$-KNgWOmB%CRG;UabH0-SS1ZK}r$S7y5hFk$kbBd45NAtA zUE50g^AqBvC^gIP4;Rtcm6hs4;c)29E7&IG7`J)s7_JIT<||m!Q|*nv@oh2geJe3W zG%UAT(sS@jXTM}!@u1Z>k92r%$z`3QY^4=yy=R?opb2-8^$DRAG-zux+s7;a*k=s& z#Kpy{^M%v5+F@M91wOly)iz9*J9C<#Gvl$p zdLeLkli-~3;*7>SaFt1hqvd17dg+^nC(o<9sl)%Ax|a^+%l%$Vc$buRMcWx?nWiHA zpR>mA`Vf`|T;OEe_mLtHT*y>QZ7*M>=3;uQTKoP*7e%V{r% zUc~_D52>11kwBW^)DPUGEW@Wpm;U<`q^%tlq^}3>8N~PPtJJvuI5Ux>R-t|prOhc{28tDEha6nfME%KOXwSSX`Yx$If^5> z%;)ZB#e=@~Q`H2^c`!@=8G^Pd$sFbFXR~vPV7qiz+w3pCydFJSwZO%(x+v`ZNj27s zG{b|ZidA`lS62J#7}Pb`PW5@)uI}wLmq=x-SHSy@F`&o+X|dnwWHw%_d6q>0-bF|4BvPZY#*cZ^;?~!}gxTafYXOj(GS-+pDX}Srad)jf#nT{S# zGrsP1$~-}3v7tqhG_jT?h*vPxGS@V=p9jr>M{5~iV2{|>TR--@@-iTbwbCBArj4pD zDn3aW6#d0bjFJzVj@)N0gg%c5qiKP*yWCfLCTD+i-OEx6Qli1$ ze|>kyG=7xu1bm-<^lFhdFwphTL{&Ob)+pBcB9QK8rx*F$ndusS^6g-|@qbnT1c&Zd ziVa0d=q{|2-_H`g@aSbMvv6XpJa-Y6x_umCkVzkCMi4M}=u zttUZZoX&u8Na(}&S=OZpyqOKp0-sMLx$4&=Tn_6``1G4tCziTXG}UlOlXk(W61zkD zql#G52UMcQcw;#Amm}BF#U8uV&`Uqo<(s{DKV9}pKsexq=C?EDkvc0KB6r~rKVxP1 zzEIt%!+)$RLIu>d=egn!y|f-a#AbcOmhxM;m|=UJra7rRUL^4GiK9S#U+NjS-#CZA zp+vI&_PuVItGs9rqNl;t8tEa?cGl}nE9?KeDa{V^*Qq}lS#lk^Y7;b#Uq7Ssc6WrC zTbnZ~=&N<#GmPrRp|Jf9tm8^7f8B+Zq67k2>^UZ;KkpQYxileiKMkJAR9&ZCPruiR z`UuqHomi@6ykH&R;UxR&OXlpyxKDHXQ+vHguAUy;i4&%&ZMfxk6!7|sz_i?DWI7pL zhDPV&PExMsg)OhC43r9YS%}|QL7#}4t+iL?jpDP#okD5lcq%|VVw{&;Pks3g&gE1G zxfwMc__YN5@VhgyG`^EFpS>aMjFowpwlUV@z5^f>skG8^jL_$R4X|1bZ^u6Ff{|l; z0u~SSA7VU{*}rh|#Ow)tT+umEy6gUBnIBOB?3oN*oZMs#DkBO|-32OTRY^#;9jnLr z)^qCvBfRO?`S#8MKunsySJm@-NVv&Zq0(+8 z6s-bkNR9l9h$nF+LIwNxS$?i;+_R~I5g(3)Nt;^95@t2fOm_NAr>ag`wC?ju&J662 zJ!1|$h_5PD@uNP(D`*5SM>d}^bzetDQL+o6%=*IJNGrubNEu@n>!&Vm2bzXCEwxuT z9D5Evor^T>rXD4~P;g>JYuj9Gb!CE%yYOGTu2ks zoP^PC;y8*u@2_pDedXKO6=m*)U6WAk##~{bcu^yj7#67tWFk6u@{qQte(VM7$VQ0N zw$QzuBu2hDMM;ma{w3{1R9ikS!AN?YFM0sa&>ZW5PWR#Df7;`C0t4^&x#vWd=3Y-! z7h?HcW{swr(>O7bE|ur*xWZg=WnhC!JiIx^l~!pFvPe&X#*-_ggA-bx>0Dcgr?9Ps zmAd(rO%xM>=H}bRFq7tnyfUNKDM^qJ|91BniRLgm`>mB{#(Xx$eK?T%zgIC`=arW} z(R$Jyf-6i2J19x}sanszS6eml7o4_z7zrhiShi`Rl20`|y=i)bYK=+wRT%cs1vk=v z+3P)hM6)!OKtTC&<-k?wiQ+oG4xON^oFw+MYDt(uim%4s3I_Wr*}~|o(93)wb1e8$Cq1yJ z5!X%*g6(&R4|zFFgaaA2(li*FTrKnASyLLSvx3J(j03*yc{A_Awy92uk#6Bj+;9P- zb9;O(7pK}?+)i9>u6yk!IZF5KDmyEdLWC{th7sr3v=lI16h4sF;NFgbt5%gMC`TPjX|@(%dqVi_UeX6Qn)dr=YQr7v~YF6e>3&M+l)SFqMq{FX(0D}~SG zntnT;$#M~--n2ydac>p%b^Mp=&ZefD5+`2yw~Gw(X~gR&-KKo2#{}4Ygh8Jyo0ul_ z>PK^KV`l&0v|c1jH|a{GM&^`i4bXcI+DZdHoFqqBJJ94cvb1<<+cHmvVMvDU zsf=1woy9uG{8+y_OgvfN8!ul-syC!Ak%P|s&h-!Yrgm3(jY3X6q%*Bbg;|xo zvf#M3=wV@Q7ve;C(8I;8hn8JO;=VdrZ0x{K;*h`ZU<@@Y26D4^ez;uNrWJ)Dj@U8q z+o@R4`!|RruoBIu7_0X^D0yG_VPHy#)S8aJ&Id^9XxN>_?CP1r#pspUH6-HKC(9b} zZXgTwOOKnl2@gRpZgQFpJ})gIk1s8AVW~I59_BUvgLdQ4&yo69j^`5oaO1&XCb;JU z@^y#n0FeA-FIZ8mgDbVV*NlTUCwb+zBjZfo>k9fS4+DaT%UXTg;<9e#w1w3tI*-L9 ztPc*!$2T!pJq2Gl}l1NLMwte(gtyS;EiUn!cPc~{v=dl%d=wn%!@R~re z*CrZkZ!zb^#qG>R{e_Y9A1G`_4)~K2j9{!U^obYk)bd_(4kgZLELQ2RKIaBjfqJL# zUqat-uLRB{>59LRvl1?z5+>>w!%G{`Hxioa-#1W5=hdDO%V*nPx7x)-kFU}ZWC>$4C=p47zMW5s&W^C zuH8K}IsNLoy3$eB9seQ@o2B&!NvAfsi=3t_h2^S;S~c9A=B54zs&b|}a#-lVZ9}%xR@+F_ShQVljZfPyZ^J*( z2Wf#P-e_3^wLW$+1KYlVNHupOJ0A@KOFsAyk)m(V0ih)*H)z8829$?rzt&yLw zVJrw4}Fv1 z)YwsH(0L1g#neNuR7W(WDIap#Ga=4Tb9O&hbSjyr`X2~O9NC%MwVSgerbZk$l;?vp`F(uNLU%<-SGBmtRIi zQf#knzLHHnOfJ)hnYm3IIE_(z7#{mj>im^Y&}*X|^B&E@HQFV8Nq+J*xO=*Ax9gp^ zQVP1lBsr?U3$er~i-1~Sdx#~Tj0tqd>D$XJqa+9{@DyR(b?O-XEb&-)LPu%|B0vl- zDs8^tV;`*zbr^rXG&AV1^U9t#Px?%mWT@*hq;<3Qj}>!meDS=khnIJ_lJG8nc91=r zbeX85X8zuXiW0jZ7Jg^8m8VsYoLM77o#*MCKdJ!V@zrWPOWPrPg~WtvJnk`*5qYmi ziaO%_DQ!)$+;vU%0;a2CobEM~N3Q6Gf~(5X$0CE5h054{^|Gw&p>W=a+%nVzhx|u+MdPi zn^w=rdJLpW`aqfbjnQM5>5$8;OYGL!lcl&vae=vR$D7QWf5vzVHx{+C4!?3fFv-M< zti;(!R-83wR-`{kX?-qQD0x4*yciG&GSvwoSGa$}g&HP+I@9Kymlz#$w}upJ(9pv? zhyLw)%46w9vER%bYR?~Zd1)s_W8YCbwj+LhAkMlP1ttydFC_d>iS;nJ>|i@lY`d?I zbSUibQ9n$s;$TOJBTPI$yv*Wj{K&KCVW=7|F4>CU3^=yJ4HM#rH-QwTq z*z;D>cX%wz=~Zr6KIFlwQcx(;6KLC86j2-=`fge*FU=dbd}rEe7%C zB9Y6wrLn%DXt`sHsoWPF$lyy6T2@8KHqb3kMV@0DS}O%xyW5G9hVIQz%7_g?Z%Jhn z@9IZYx3_X`e^F^lPjfohRAAS%>So;T_#e|Z6^vlfKDYX z0a%CYTkny|jcJ0&VI^OK&A{lpa!EyvKREU`dtg>k33SJ$+gGzFbyv3Thvev<3evsXLk!6e1$Fw>G$YQ~pf&Fbl3w?(c$OL4dWS7Fn` zS=US861!!LBh9e5P`Ju}n3m}5+VyA8hiQrP_A$M3cTaH2A4hg#$_}1KY^Lw{*ms~$ zo@I~j_0zsPc{bb1nkhNPmaGGZd3}uii z5v9H#%B2_jf)aUXy|_t(cpCfp^s!6)XjE+-z90|zN&$VzHKs@(6k`#))6A}=HZy=y zQyEZ|&Dh+GOHr>c`(zjLRLm^>PONJs|B$R$C6&^FQ>(jzy!m?TMJ2ufEdh&aT;w9{ z4mRxaIGOXXv;p09;%!sZCn+oi z3d>ibj@AZhuB1d^HHY?@l}lreAeN36_Z!lAyIBIGmm$iCSqLl6SleX>Y2==_a~L)L z_&#=@l-wyNo?xvZfZr9B8R{H)-Y$x5@4*Y{F%v_m1yW(&`>vtQa~3+&^u0d%z3}+Z zih%~2%nN;*Ys4=}>Y%7~@vsz`)B5q*B>zMO$sYW2!n3Vrs_``bqq#NNw6qPzGr>BlPK za$az)d*n=j6%F;L7N|alUwf;C(>mpuUzDe#@VgT{VEDDH#T@dlo1Z`1Eo; zS$T{O=mMQL?`(4NyfMY~5-J9%__2;qGP!_a`=?ECQ4~Vd_>8-oa-`U5iC6pV~Taxe5peL4p) zg+y_A))y55pVU}1NltL@?WbjYPEdUNqiMeRp_so#+@BpIH7)y|$I9SVe#{d!mXWR#&WNDAk1Amzk|9og4TJHeT z2$*m+O4su;0h;FiJ%5WsMNW0>$qyQ!I=Tvb>cIF@iB^U^kGRzy5(|-W!dZ5f=vWUS zp6Q{yWVRd9uV5KodvrEv$-M~1*dJM|hk|$GDo>O&Kk=0Ye;ZEIB~WSf@*&J^OkymY zcpU`Z3{q}{J;OEK<=yF{7Z1xgc1cQ5K&!M350I5arorloElcJxG{)wS#L@T?zhB8y zW{sQJ-MBO7{^2?dFobL=$&cFsFQan6RU6Vl%`zBBE&cix8o})u#01=qhxT`GQ%(E5 zWqHpFVI%8jZyXd#avBTysN`H89rA7=T7QPJJ}q5s4%84qGXDd?9$xZw8DsZ91@9-t zvX}eUR)@9sRgC{!Id7(cFUgyrvH>P_s_S(oxDo$2Iv3fFmq8rF`N>y3dq0GEcIi5+ zda=z77W`?QxSZC`h!x7oFLzw1yQPf#l13in#5ZHv5 zNJ&?O_DZm-j+1QDLoS79F1y0u^QDdt^C8i6(Xpo;49$p)N0pqAWPc`)whTe9eb_pP z^w+)cA85Xugq~zRDyeNRp!0~S5_qg=os4TCO-cBNqm=0VFCZPAq@Z+b6~?he24kKN zd(QUmG8TJb?G>A^3YH1O%R(x>30tV5lk1vFjLg0e>)Y94?&e|uX!SXWg$lMa`=J@Y z`yIx`yp#k${VNUM5(Ti^#79|+@o|K6i&j>Q;_M@}Ao{~8M3*K-JSWmHf>U*;nAjoHEkDvyiv94debMr3ie7S;5 zwYWnG7x|WMcd$DTsk!*lxZG%U;C6=D`H;6H?`r-4KFv6G+f*@X^+r{n#v0li{5FL+xyEny&8R zF}^59{WGJ?*agpo0XM{X;PsVk(*#(f4weq&%nkqynvoN@+T8^(qxXzNEj(24jNdd?WI=>-yWJ zLk{|YP=`=hy59v|_`Pmv!^T+}AC=ipss=X_RW!|lpEqPnsBp%Vtn;V?wmZ$Y%>7z_g+>y#E#@XPSMZ&X&D}gX6B7_1yFpvj93_h-DKUN3Y2zZYDMLt8u79&cuVj5~t zM!llPP@R32(%fZnc}B5ooktgQTy-ncH#)`S288WAN9Ijd|IXb$m0Y=Cm#D^zxCe(4 zXRU8>zcJxAhOx5kWvb|@s~5M8J65}H>ik?ENG)kw<}Fe(uq1zjU1fA-G#^ai6)$D< zFTJjg7DE78q*4|qQ7`u|>?S>Uwm|O-Pm_rgm`y2+ramg;^w0{Zjv%MM{JIZg8(2T} zW`>GC?4JV6=^xR!z9!N;zuW33F!HXrFq$P_s8C&sIelNT?a%>z486{8o7$XnJ;jt6 zNb8s7(G76%eqka6-M6ZA|4Qs?7Iu_-QkH2~0N zJJ90F`Fk4l=GPXW%amRi=Tt`rZz!+D;eQrGIf#<`b3UzEQ6H!aP4NN@51jN7oj0*a z+)HJHQb=Z?9W z4O*bucy+6+<$s`uxg_~z!aQQ;pof{GApBWy!ntFPrlA>WI$i`S)|+(G?icdU`?gP_ zN&jUpf0pY6bSRD?#yL!~s$o@ql?u!KEtUZ0@N{2AJ-{om8*1E!pxd2bm zy#rDM0^SB*c_-K|@4jk4p0`BTO1JCShRQxSk0C~V=6)_Pi!2D0P#dq#SxPOaMkQGi zZw~{#ZIqCZ1@OAotO==qUQI_Jmvqv?Jpcoi^A&Es1Yl+uWjgXz+)>CMsF+nvZ#qRWELd`6Uk3PLE^OiU<%JSDu8i?%_Jgqz z>kKxFpsILx%Se)SQnblkv7Jl|x-q{BbOfoAHYYfEkCkLEXI<(A-{grx#y&@4xTJzV`}S z_Fw&|x_of_0NEcD{^SCMJ{}+&I!0r2TlUJ)Qe#K%+-E4p8i_&77|09Yz{(2|<{}^& z-|kyT3>-QCazLM7_lVA7KkLcMn~#nl=X8f{j3Zfs%dOV4dXJf_+5h0OCVfE`&C8tp zH?D+0-n`$=SXkf+;Hoe5I>|Kp;u+udGf1}Y^%o~MiA5{QlXQKpsr>WG>epW(_m}S_ zy=A1Gq<>pWk%ga9w?H+WB3WSOM)qQ(~4Mt@YO0UvlsG zUfjX#Zll?wryQs}MzHH}9nzfC^7IIeO8WsdDZtJ{nmCAhk_AnC%q(zpm<%k-0=~{i zt>w+yH&=D4hQvj0H8pR1S-TnvK2fG_iS8g8EOK>3OdjELIuqLo!?(KbcD@!qHt)ao zM&KZ8{~A5l%lW!5F!#@pQ1hb$muV*(*?4PV`)aD;wH~GB7mt6a6zbna|3PD%Qm^&| zTJJR!KrVBCyzBJz*PKRzMOjrBnJnb@!#y>#g>Su#CcU!%JffbX|JREte7o z>)suhu%4W?iflg`EX8KJ69@@4Iu><*U31~)ldf_X=-V-Y?FftuoJm!!@iG8tfSVb| z-1=_Yn=@B4tQPe8x`Lh(DGbL9Fsv}L_Az{=bK@xiG#LU+KZBewt}~sogYWM{9bwLk zd{lE0cGJXOdR*Udk~CRnfvB(-)okOrJ9kcvDy~M?dZ^r6*P04FfFw1j4_-ITqGxp@ zYcVvAtJ&kGK#gu=Mbe^EyjGyd2|n^pU8qn5(i>OLiOKOQ+r(uv zjG(J@JtF~;vQAwtB`n;%yegfC@f;3*$oK>TAts#5=K)a9umRVVY*XdmGf7|MgArm$ z0|I%S1>O_l)#}YVoauu`X3^!$%y^90UgQ^3w%Eg&h7Ka z-)bbvc+}wCx#{~P^7`JRBRAHN8uuMkcc#9ejuVt61Zb|%$PLQPC_w1t`IRz_wB`E# z$G0|!JO&?apr8itI->or4epLGj6*R9RyKZ%LmT~K-t~^{0$X`p8Ce?tk-O2J-A)xF zUo3GN_!4fFS?FH-!maHw9} z21>J+N(7VkoJ(Ebsv+!@Kch1wCg5p}KTh1f&$&!nf))wqj2YUSx%otPdDd?fzmhxh z15OfxIkJ2zfDLqg7aAXzwX_hwyVb3nT%F2dt+kk|f-!z=3H7xjPxZ%g7UPW@03nv{;G9!p zS@`kbNqVvbjsMW<=V^vl92BUb4DKU0u9XJQX1);i*Z?~^M-za0*tFerp>Zo=q|CIG zS^qOnp2Aad$abcYY;7Ej`?m5bHz{^kG@&;uEk*p!Bq|R>;4}9|He7M5WvbA_Sn!_E zw^Z>r+nF%31@I3QMMIu{XJ4n%dj;#^)susmX4KY2Dw~MLm~aNXCHUuGgnDvsn$Qo@ zN+3CnZBp`xr9(%MYLlE-zO&jlvg#k1=#$f~d;KkYFly($Hho(`eIU^C{&0@hsRCzE z8q*C9!j)s(mxBSk*vg5CWYw0h4Lx5Zu=r)$dU|v!b>Qw!&glIR(Wu8+0)(V*AwgQY zg=|n!N}uy;0{q=0X!Uf^o=1#E!M45vnGsk(#VqoH2_g5CggkD1i18>Fw z<;Q$-Au|iiGTO3;%f*jr>+>>tvl>W($Ytd&a=puh0V>emTmXM6&NFzU>TCZS5ls0<`g&E<8C}H{9vWEwPp^B1#!(xpKd^G%ok7ht!)@ag=jl68$*LcUfhi zUxG6;9#j?hd-a&t9l=~}Eda%1R-#WY_YTS*>|7NcBvod=6 zwi|8=GUJX_->Xh~HYFscuS>76A@OR(uNMc9bjJ)>NClM+XCVdKFSkd0s3Dg5VN zZ9$`xiq@xJECamL0`43X-cpjwH0Y#7AC)w6)wRpJPm_%-~TUyG9ypGb_;v=e#9wIHs@@9sqM zmH17T<(;N{N3Ej}=iaesqF6S_i;Dyv=-n+b%Y}(h~r(q5p!AGTYh=;zPe*(+qe^IBS`#|O#SeOKxJ*Q z)gE6b7UqP`Uw!rI#@xPjw-=9M^*M9T6Ss2S+^Wauq#xBlA(Z4+3M5b>P;AE1ON!>l z1F)Hq@H(Sz=7LTAhH69zdM6;HXy}d*wDwI%%gpCW&gUgdi;(wqV!xPUiY{GF+dIH< z6TkQH4*WDvkKs4|)&ns&{KL4S`OGU8?6>-29bfR6%Ea5ZGNDE^5CmZFETi7BN1%9L zo|qPWaMU#k6xq)D2SQ0kTieJp7H;BF_mWzFc1(}ci%q))p8pJ%ai+Nb1Bu;QTb!oe zS>&ua&Nk73%Z=lxWa$5aG?lzoj|R2;LSh9VukUQ7EeT4#Y*a<24)a5q;?EH2kA=}g zY=-5#n@ow%69+-uTY`Ury3ShbLQs;f0p2(O4#N|QU+(w0wWm{Qj@xT@BT@t~gS#rC zZ#S}6y^wEJO>&u)e>;U5e|?)BwR7$?{A^840C7!o`+1|RZ%?*hm^A*};svtnE#R8O zl0L8vqC?pY1)M!}W&t0rMNCXffgrj-_htc2aWhZk2a@ATLG#rBC)6MPdN*N%2!G;@a9grCeM z{{uC%User1( z%0PK+Xnp?|l@oOkq*RZR`^5zcbYV&Uid)Em9v;zGxDl;_tSi&umq)Xye~vf(UKGDP zBDTZnJz9dka^pzA^@klzFz_$Q1c~|-3(!0Gh<&*eCPuCYzqh-F5%&}|Urr^t5ZI0e zH$M`^#cnlNjA6TFWj^A(8TGtlOx{B4VoV|7=?dJjHWv`s(){W&bpi%6)b47HW*=Wp zGQs#~t<;9`R(LZjZ@^x`+`tS5jUEe_U^@0_ybI0lLjfKb>jsi(I3ZL^gauRjq3!dq zme8fm&3lTJu&z?qT}tM-lMr*!806!$Z=C{4+Mp39MR9WFf>HygM9V+W^{P)1eZ17x zG}`{|LsKEdbVC^A!R_#5zSHf-sR8oq%^C>Zll@?hm&a~ZpcnczM_J;L!0h(&%l1Iv zLr&n(d4A5E_VPD;k8O=FLqwWa2db5VdRow5CPk#SEJAa*XSDqTIpqgLvTT5i;d|$z z_p%R^$&7E>)2W^%_{PT#u-6VK$siB+);m6w0_tnqlDm1C=TfIV`V3wWmYSpKqrCH7 zKX+WpY452l=H8CQ1-J0t>wh5PJ+VxOBQWWlS>69aELQqa;e!9U{)g;FhO*Zwx-L=Do->we(%c5KyuHv7;1$AV4$T*YedUZ&=;x*QN%hMz+)=j|XS}=* z*nd!xJJU931obf`m01@SkG=`{vH6N6-HJK%VecSW=x^DrUXgCw6H!z9p#FKnF589D ziNp9RKb{qZ=7Ze8u$>b-pYb8AtH7I8VsOY+AF0JA9C__q(ZKm!$T-Q0#&nUeuS=Cd zJK(=wCG;0X6Qqq(@K~3?vW&S4^W(>RtESyQ8RaPq#6rYFL@+qXE0-jKKn?ICOWNfI zWEz_(y#_wb186m^(p8Z5;h$H~1UJ95lSXGTEU1@b>+=eLMrd}lc>a3E>+0m0Km74X@?Qn%Jz*>S|ZYi0|HeWitWvF`5cZC2F(cR8_7z~zr7S#eNo99`e zi#_pueu}upFTi|ly=`&bLp^>&f?d86d*I_dJJWX`f9(XxtPiP-xw+&4aw za~;ST0d|3A1Wu!47jg3AuNG@$oApdbmw~aSm~4(m!%yHT0Yu(QAXccxEu(xLcx}D! zF_?rVS&=&+Q1~QH(2H0lbK(gFLlQQ&+-f`A;=;||>UsxQ%v%bfYrbi`CcL{R;F}hD zDrdsN#}@x~m;9jA_2FQf#b)Wdm*#{&%pTaj%D4pbUlm*_gVSrO#0}1yb<#tTOgk0> z0k3!aw0sPegtGxh9Q6eFM3OS0$g;3Z;SS?Ct1cQar42#nk2ztkFvpV#mS@sx?by6W zgOUXY*Aa!#IV#Q&$lauFJ7PTTXJU+j8D^X+dl zyI9=|_lC&?RrX7x15eIBI%Ci0jScA70ufRPF>*QItCi6`&b(O{i19%gd|?@(AytZBn2f*8&ADgxbC$7o3O&e7Akw zY4<8G5@3^bDqHK@7WAyAADRbqLH$`4my|RN<>JEKU%Y!;ckEn>6vMW+7b=UWpj(z4 z@-ozo^LADWm;!B9`fdUJTm zeW=+Ll8IaOMk1=OBdL*^me)G_)aZOng)6=y))ch_@yBtgEOyN3i6ON2{PF79=0DYuY>$jIJ%WrVD2U6-ia z;>Im|rHGquB_XoXHAC|Go$v4e9{%ZZ&OPt<`}KN0-EWP_QWRAv9cdl!`&eS?!uJf> zjZHb8OFb?xW+Sn6=xV>fv~cd?ew#JM*~}tQ{X_ zQ7n}WPXY1sgUa39@cEiovK*`l&;EZdoJOi+-*zx1=)=vZ1ka^QZP{a=tZx;qPL0CV zi;X;W?0xy8PO#|`@BpSouj)izOMo-CsxyP=D>W>e+V5PlArV#X;tHE_7k+|qzS=S_ZpVj zWJKX79Cq}UKen~!?Mee0d%?sHv3!yGr+lv~vO6Th(42gxe=R-&XWWHhKK(1<=$NJy zxAyx8D8V@;4(A7!X(y@mNC_2s3vxk$&sT79REBK*t+K}~ATYdzJVKri3mUuEq>=RO z$5xrEYPQ_Y9MXTDLusWZO!xA6#P!fRsqRS;)8ORZr5H*GH*v?Z1Gl#Q+(a-RvmB2h zBpQ~4mox`|%SwNk2HL^Ai*Ct8?av`%hA@!A5`aB3SS#GeGZR^{mgE`TX?(WgbCFy7 z&6QJT7Vu}t2U=xd!sm@2JgRU}iw8)grI=puHRC;Uf`svS$q3z+~5e>-izJ`(-WSwR0pN&NWf?BXZ5%)}G+qcDba zcW5oHUlqA@h)USm4jW!Bz&4J5h;`HstX0_Lif)Di_-regrJ}Zw2@92D8p<#K*JYbt zy<38Zo~#K_rfW%0jiO*_Xa86~Mwx!sbv|y(SqQ2_FSnBpm6N;f`j)>V3ZrK27{5O+ z2=JaW1*=|AgKR&s>0O*bz9+tGH`0vY_aU-^amx}m)qq5-fjUf}f`a~dM1F;PfIZ#| z)Q4BL1dLpGA!u7yQX+_RO=3Tm%?YgDh%sP+7u}i*bh@O?zL|U3YG44-8hXFB71yZVw=Ewayk zJ)Ycb3Xt&fGOgsl{iU&ixn~vMgm=rRAq&i`LCMtXL|qEj;)gpq%7fWbdb3lXs}SRRwc=Nhktk ze#dT7^f!Uq`19Z&QUSb=IVi2~7Y_R~t)4DNMD+%(bNoss`>n2y@YXH^!i(qTKUE!^5f-n82q_~RIFcDw6L5*_En`>}of*`4U9C9MYK_y*<7FhzPIzv*$@nGD#% z^NNiX&*&J1>v@U-Lw^Y!gmdQCPsmAQoxMM5A07U&XxVB|?nkrF07lu1XU_;IumX{~ zj1$?7{M zn@!gCBd^;W-pQBeW^3ahg`rKiM?F}K3ZM?-NDrF#5w%ks0#T2|UABtU*llq2Eb+&F3vS)t- zsnIoM?ec~@EGMQ4E==3$WLaVe>xmT%mfY9QqvSqJHg<)gy=g`+&`NiVGGm=iE>*p3 zjsfwrqd$1PMlsk3TiwBmL?M{S#|F|?sOOXnV|76W2as0ZpTlolQE$W_dkMMmH8f6t z;M3}%fTT6Gx?R05y|Lt?W$vM(hvpz$(_*I8KL3HFS|jG)Z-ej(QTVc;}jI% zZzIPGt0|7(MvQOdE*$CS&6b5Pt5Irl>L>bg?8@G1vNM!17AXavdk_Oa@D z<$^XR!1R=S0nujiC@qFQXO-Ee>o!(@p66Kq_lqGy%gBtjT+!rTP=mr4pnA5^an zkf!6Gor!d)6Et!+oa~+tchMe*a1>j-SewQa-8UZoL9Mkv7G*#F+n3LsALm{i;rzyc z@;XfP3tdh>;x`VjOsGkJ2)#aE%6GZ6yZ-X!7N^I*gl){Tp`GLZ1Y6%O94ov0VBysP zOD8f6T~NBiPj$a3Tx_|7tbCqu5a)11@ouza?<9@bw&@yav|=a?)q;$FY+O z@oGNTLC4ClpX-TmJ4H$;PLsZ2E}RN*GrxLoZ!`2A7Z;+wV79R@ z`$E>FS#B&ic+usm4*+4#+0q#z_ajo$)1Z<0@Cz`p6p7Am<;WUc`9kv1sa!v`-#8%7 z3AZm2*oby=xvF&dO4(QjH5c8DO$VyI1FHDluyC{4FeTqH9*THYqzA(B_!-s?oz-H( zBNO8QNV_8|Izx_Qi=|O7zmG-R%^K(z&)T9dx7MD{uoyDy0^*!rh&1^@^i0ayJ5&>G zx{pE6bJCWLvm8a!8(>`DvN)Nr@74{w>sf*VnGWDX@d2Z1=iSz(%zQ;nJ|9s4Y}!~T zrCRvi_FmyYM5i;aJi((?Sw~rdd`>3~?!XK{E>k2AJ)%2rENJwcNb_6rrA2B>Ui*~ zqhlDLkI8?(8NQ=@l&PGv6NZ#8L5B9W<^8eM!87QQn3a=&6ci9Af%Rw@VW*oW#5%yh zUPiFTKHK1!2|vOvrg=st`0476nbXFTWu@S;KLE z=E&OFHon8P!8tv|w<%n8=g|Nn3R5SD?dXrWHeND6{)848X=tx-g>)Qa(6R`=`57}a zEN}=p&zG5q^2%2{&wsPI*q=nXFBJ-G3xENL^eCCgSn&m&Yr|fZ9z$jcTYy^1Fdz zuj3Qxherh2GOzfPAh|D!`VjBx4NUMla}uOE6@yYj`-qgRN%3YZtclG5%?^PA2KAMd z+M~s+Y+d;^&PGFy^?XI0EmJ~>r{Xpkpkc%;gaV4{(?k+93DZ+Ve0vmyDOPoIwznSW&tE3CYW-V;`i z##1szO~%sJNm^_fW3@g=dj)MW$LOJ8@zoI(#d32CfNb2+ybxKRY5vtS=1FAueE)Vn z&&$3NZYxE#&s{(A1=I_Nc7TW&pnf<=;}QcnsySIde zD`CnuA9zV?Z+0rym<`)Q35v#z#?oo?s@kyUI@4AOtmEU~58vAtmwS!6f~vDlS;Pb# z`3+=wvn21C{EI(b;OV})LH%xjO8j7)t&Hz+M%&6D&EXy7WOA}@5dxT!y{qfU$6qZ3 zCDaRDLoX8tt{*u07U0B*A9#p~C2WePWv_baDcFc->TKj=ia_at)8QEG8H*QP58WbX z63!rIQ~(ha5;Y<{c&YPlRfSMclgiw8RIQ$-xVYe^Cfm7zue5e#R-msbl zjWTophb)`)hYZ+Z)LkzdC4R%%kKaGcI8NNgKqgtxxfqm~QE_Ut!sA-|os5FS!!tCG zIMdQnq#0TGYDV(lQsiaBnb+l!V%X2^1^xkT6idFSn*=vZ#z03zVnacItZ%^j7k$WlnnmBW=538n-|eMoeeAw!hYO>{`bD zJ%=-sE@(ym&J|pn@N=}DgA3j#?+3@|5?k^T!{}c@O1p9OC2Kz8t4{;EcpyxBxmnHW z*19pW_tesh&-VOrp+@O{6G3yMH7+zpZq$$bPThY%IbQERi33-cHLv`GIoAIqCpqV; zIJ@2wym?W^LXGUuOQ<}X2e%|o;_H3h2|rC=fFCsixD$Fyt*&vaahbHu|6aJQ-`o&_(J0HmoRDLmhAsVQnhEB(vTnHwTm?{|3Fp z;m6Kn;HEy^CC_Wx9m+_RuxWugHs)Vhr>&GQ9h2JyLl9c8IFhgYb1ny7pd!LapQsFf zp?8?@gvaq}?cklJv){%F1ceu+oUDHo$lt@+_Fmge=-oA7sA5bZdaw`9{6R=L&SEc; z%7VsnuZ-sq`i1P0wBMvMLm9wDIsNO;oqVR5P5K`o#xou8m7~vSQ2}b6w{zmOx}sIw zzGiRMIrp04OW7j;L-cqNyVAA^5)S9Y*O}wsh$6Cs<-<2Af<{aD^)Jjpp$$4%Qm(90yfYUnlx4-X#y7?dmWCI26jYslPk@I}q>aG^YCj<>>Blo3 zpzO1nk#)+fLeD4h#wRVt7&}I(-;$RY2G}wIaz=o$c(Jv4MNJSpt#C>>sk)vAZ7*ve zPn#Gj@;?b$O*$QWy|OANLX7@cAL90&|Ka0c;5?qOU~t0ppbOtI7v zHg(ulAs8qvx0E95(^nFX0A5!CH*don$A4}s67Mf-P^S1_{Ew^;7RXhWq)IE1@N;2N z)~p-K8A7WKR20KJC&OL(8!25i*U4C8h-|e;v*2f8i^kJ4oH`kQADQY#2mhnqiG#e=8Gyc;+P-@c`RZJppDc0D#DX3DF;y7g||!{7UW)^ueC z;3Olq+7mq?Q4e!E3J17d1;%Orfhz4wKXmJ2R@BLOADJm_9Lg&XoM{L}@Nmyo8BIoa zep73Q?tB1w-3ZPcopCC{wPkAk!|+SMu(!h_cqoR)e27AXYd6RrFz2TQuHd{z~fR#M+X8A~6uKY2$0 z`3k*Q?{~t;*`osflKEfHv+&{zoGF3Nxl9QS>XD$%9~SKNE+7+(vh55=A{9W5_dLL zAW^RIPmOf)59Lm&!N_Uc;rO;VJ7@c|f)k{j)TRxbfEpNhNw4io`LzGoB|H=i36#-G zJb`LLJzv|>9i92QCn|pDku5lMpgK<)nUiI+Am#yWuW3ab5X5} zGq!M--G@a_*E-bQKg_aO8TORje;2x*wJy3+ov-fwz$hs-!=p3C`@qxde)T1{k@>s_ z%X&7ss`uQ4#SZH#ia%IHc3WzESM!h9N@$N>OS0Ul&T>V#iac#e#R>Wlg@pDUA%0^_ zeat7yPoXZg7fuxIX$Wa^$-_9gOeE2huwBAneBh<`apXtsakq(Z|D(iUY%oI9n+rYu zns*S35LiI$`|Oe_M;?(9Zjr@FV!{r}TpCn-Y-u))VhO z!DA_F0dikP!L6-qtb&__tF zdEFN6+ogZyv@2_6nQ0S}J+3|UJ&$UC7_792*4U_+%-GD!$POVfq*>Ct@WEaA1{tW!en(_Je~y%MHg5f;4)ivO z{pz!+xD6FokvL|)^wZffAj_uT9KIiLn@R<+t^;^7MO1bfx?PIsDbaJHt1^?6-xps= zWFAINr&F__EURG0N#UZ*Kb_Mcw2_a1!BYo`%(BEN(4fp$c5Fl{fXV#X8z|N z8>(cYPJ9IEc3)}W5U+)sJo7TVPo zQ8%A>RHO5G#Ezjo*VF((&Dkqo0<_rcb={3mxuA+)>NUeMV9nDtD*M2^LIY$x1^Q`H z!c$GAW6uEDsLdJ8DUaA`MG!YS^;(!=S8cT7FU^zs(y`shb|an1new3#{m3mvc_-^& z;an<#oadZk-ZEFn#~7TnT094CDj%sHzx80M6i$%NCVpKGzr#(>8L~3L@aka~SULCL zooU>2%zgQ7VV1l`KK%C9-$q#Dh`hgU?|ed9>{OxOnUvK1jW!*JX6D6~s7(bnjIYoW z@6`VEP4H#>LfDKOOKvt7n4g=*`;>ctZjJJ@^t?czYSLCO{qq4o5WfpIyiaeQ(*DI( zmqA&*%au;@7`K~Zkc;!1kGjO>JG9Do5H^^yEag-1bGrn%te2w8A3KTfV8sbc*MsYo z#bfV>IbKjWS~k6Lk(j}!`-9}VOPWr587{i~sH`VH_rtwvI0toRm(RoAZlH@eV4I99y?%SA zST&aG6iKb+GDM^+B&|gpmeUlP#Eaw%crLz$=dD^&lzn}kV+XQ-_|;@5_@t}v2s7y~ zFM_jB#SsA`ksdl$ntc#5y-Y~xfpVK3?qM(ry`D*JB&~=_~r~`gd6i9<{GA0a5 zLzHH-M8onU&0eGVxC@etFni{r{$|TmzXDCz;9@rt?L3plW)O0y<1EIL8uLv7oQ^GS zZyv;U;D*Q(xOL?mR@TCY)94(A80wU0gn>qwfy_G{DT& zCeRd|Fg~#aJ}q%hT{9A{8H)cUx`&Q=)t?GcW@+FT6Bx6r2+d-}b^z z0pw#NDaT1thnMl{nEsdWSbofB{>$cCipGjk*{g?_rArGP1hDs$`&u(yIM*HQ3!E;G zV}$k4zr&dfUgwe6N6&C12jL$-bpjg`48Q4RFE1P+iYPbBJ-hACoIErQR_Sa7z1qqv zoI;{F$l0bJi-j`ffQqw$TY`>M>(Zo4()b2F0039YesXMWJk6Bkm)f3yTbrM-sU$Ri zSK=z`A>oPT7_)d^^FDg~Uq-0{lg8ijq$4l2daPLUfU@DwDaOl~J2XF242xwdvQYec z`Xa0M)kHc_d*fW9zaP?sZA@MHhbDgYt0s;wApR+;)ML(!%DFg-&%yhG9v(OOFerGx zX@Kg{_((OWg2eIV$T9a^H2K)W3%W49a<1seBYJHygxmC!vs?kJgDLaWVDM5AKoLFw zi`};@UxNKStiG^_Wd(;1zjuoA66_%>C7{DcfJAMRz!6^je2 z)t_M3J%c22dVdZw8bOZgY_7YUr{Sp(Tc%}VmK zqZ*gZHbcetAUr{#zCrO)THa0g<66t}%9(}T<77FYFRKV0~S zxiasK2M^HIHyiVx!754M2;OJ4`Sceo_oq<5BEe*xGaGCw{;`{BfFA%=gt%+*3|c#5 zIQwrTBI3P*C?1$}+{E?b@$5%a42;m1;kc*gQHb1Y6&z<(ix2Cb`VxeoLr+S?)R^Xd z1>L@OwUlp6phSQ1m1-qKT(L>pg2;cJUu}5(h3(9wr*m(_u{YvR^Qj z;Orv7QqdDfDxZY|mmha+tAi4Y@2ue;31e!NaBD~pj7akNqyn{f#Hd!j(1 zUqC^ChD1l*Lbt9C0|uS!_&)hNpHkb&(ATo(4|bj@f^?uXt-vyr)4y}1GPjopNy1MY zp5M@OQ(tW+vrPu3`&-@IF}v~+kPiL_dR*7tz)p=6p59(KG`prj35uoiLn7o!9Ob9N zsVLz}g;56&C~}8zUs4eGU3_C`^YC>EWR;G7T-1|G-`#wQlr20ju6k|Gm*s=m*bNQ~ zQI?`m^y?`U*c?!8u)-R!m#)xa+D&**Fa?8UpJav02B)kSjw<}O2uJCE9h^$e5o?nx zm~-$PgbW?mWEP^b4kpTD_OdV+0F2>R?0D3x-p{%ZncDN{)H#a0T6%3FT%z2U!8bOV zIH6Qp%r!BY0GNe%1EJ|+JnQ_zIWQI(@cjWg%N44XaiDq?3fl3qjh%e-O*?hD^*vWG zVF#r3D$-m1sAbo6IRw^`ZtSJ1szo?{_IwG~{3%}9(er_1$%D9Ts7a%nnjkada+lwO zKk&`i;=Aaru8_|9bVS=TwiJmNY=(q}f8zJWK3j&*~#~-(g_e}hVVUo4-MIZe`<}L9m1!&zAj1w z^nLobfk5mBM(HUttLwuGH5SHp@T7)PZ_Dh3miGTZJdI`9nSD9}&kZE98*Y=&7CcMc zw_*#-;K;^nanpeu!pKhPI*>#hTbc;EIZ}m+H5Sgr*Kg~uznUJzKcQFOTQ^exuI-~tB~B@ zC$eXI!}kos(8EcD9EV}lwTkHit$EDDzqN)UxA7f^>jKtQI`$gfehKyi)8vMSui83y z&4jk9P)_r!O{bZ;6OE1&g(R+RtELB<kNZ386)ta;I7p2e_%<&_R*a-)K$c`x z=}DevLfpvHva>mx_$_}i&=V{VdoKTNrT#@~zf9J#2ao=uQ~Z(Xk-4TPkW=c!4Ik92 zw+BSTeAA$KXWiaKk5l`%(Nx=+!N^W()?o?XW?;t8d>kVb9ZghEZq}YUy^4VUl9aKHErwK92=9~51}C0#Hv6bnL8X~BFCZ2GXEo2> zD_UgZY{ziTKZHItaujWfCw$9Fsx#xrTQwd|V>;2Pa4&!nq$@h46Bn5*OHO63gn2zS zoAbT(#Swi6hiMg0~ z($67+LqDPH3V`EU-wk2UZuk8q>P%Xm+WJkNeCMRRV_^<%&z}1pd3)Qh8?LhutIq13 z#1IT7!#;pkiHT2Q9x-Wb$cFRduA%p77ApzzI?TB1F>^i&FE9EqpO8g{=WKynNWMK! zDf5{Wk!_C<N$KsvM2!q` z9>0Rie63@}&*vmBqJ?gy{@V7E%m-pVxTUMlw5c-X&Qx>8a?_lQh7_j;S%AtIS;7Ma z;@(!SG5K8X*_TQyS1Hfc-if>nFMKgev|Vqk+@4~L*RgyG?<+h?wf+Q^Gr2_g>rU3< z`1TsfmG7&7H%VpZvgQ5XB=qIo1$Eiq|AVy1r9n-1A29@HIPkC2tYQ&8)Ndh zv1QrT3bAgswr#EPsS=(VWpEC(i!0V;Q9zOK)i1e!(a>6c+7{fmO?4`FYhONYBg$q~ z_OW7E#acM<>@YODsKe*+4iGph1_r)+rNe6-ClRkfzR;%kLkUDf`54O%>}BKS=KA-o zK19tiCDR+zX&~k8UnK36$G2S&h{>l1mSx6SruhbI!bsPeVaKthPoz9exgwdEM)HBF zzUI#f$@^-eu#j9j#RSlw#{$c7xZ zR|#`TdB?H>IrbH|dZwp%%iLW^ijv&T7ir*<-x39-QuL%wlO`d1jnnm>OZsE7Im&SO zRlZj@!uX0lZe|@*INNIDSS%~a`6N)d6fw)on<%hx;etE(N^N2v4%=+Op`9MaIPimI zIQ!B_)2wIpElyqVz5hVUn0%P5FpI*SFh=|_bh8}si>`}kyl37~^WA>PqtxGP`)OON zRWIw(fJVz09#`AHTVB;)CS&dVaic!JS*un)(Up`u81&|5zBzmpD z@-r5s6jY0)p~Y^%?moPv)^rsQeH9r8)Zi1AU|F?eu+1qHfg|xXuG=;0L^O^~RM;!$ zo=R%59>xNxKxG>d6kSB=1L+ufU-kQg^`oxM$OHBq_3|a9Aa&iVhO-VBp;QNcK4dgO zEh&{Esg7cT$rS;0xP&+8!5M6QvVB<^gQwnc?L6^XxZu9!N@fWY@W?5(ml}^-=hPm> z$^CE1exlH~TL}AwW^qXUzU?JGzU}z;QGlV}&{&BY;nDkWPI9<8Tv^Z@`vDjYO}Mj7 z_tS1hc+2%~+d(pOI$G_n*ODITPae05L0Ie(9DZ?du9uHhLDHwFeES}Ts5ow{=h(2I z5wmt5Zw}gxplhzvM*hHYRun5H%lSHOF+Q*BuAT?viGz1QRwAeCftLyUFvRJHLY_i2 zy_P~K#4EPP@UYbek^6=@0G_0#`xt>qnOts5AllkvWY=F12-n|rduit`OWD|V+!&xl zMSmV+;$+y%TB3aB<1*zuC)>IGbK%Y;`Q= z>P8L66HjR0SNADjSEt>gI;&HZhpWuXKbN>?-i9Ih_D=ctJt9wh`Wt5c@t+w8vE)ed zUi4PR|F{opK9h|VXl{8=@2n)UejDX@+ERi_wZvBwfNq_5UFzjcs0 zshwLpS5)G))k7Wrp^^{#S8}4v$-U>aTXAp4HfRzUY*Da7AC{9JO)ZD0Kjx-bDHEw` zzSn~Z5+GBMTag0tS0Qx1_|13DYm6T0rnf~(gvLjmWAR_6iQiYnt0&h-x^ zGfx7Yw{QccfFw?B4kEq4CB&!!H7TilJw9IKUW?ET+BM=6!@8Bh0M$nyuK%qEIBONP z4DabrF>1k9w6K+WlTO6X)GaKFOQW}g~jKbZ-*$S zt7UwQpo#F;ADF$~t4)7_`W9XHk;Am^+TSkufzXukXc%DSVIE3ki+_;VKAH)HSpOKW zD&%og0XnFyqaU^ZUiLA({I*6_k^Uec9%QB1ABLh7Jlg90P0ATuV5ogPUb4I`!MkJR z-MX*t9OYr4=iEJ~6O*+ndpdr8F4pEya5ndM>d2v+vW9Y{>alI45TSO)Mct1+^EIk+ zul=hrL?>-nrEzsw4a|m;q{#V`_7Zsn8Gl!9KHF9$4H3Lz`nVSW;VAZ1goPT@0@(N* zPqo4t|6I(e3FissX%eO3^+ok_IkjRQCUaf^hF+omOqbLi3Rv@xhI&RqbOT+OV$1v{ zqGdlFKQa@2jVpT3wAISLUo!Rf8bYz24_wALKXtDaPtY%{Vkx+KSAo{aT)d;;PS`!m3JUN(5s`Y$7?9 z;o8z4X4M|flp0NBhWB@m0tmC$$U)0 zql|SevDa7G=5`u9!Z5#t5DyILt+ruy*ES!mj0m$0o&DQ%j>uG7_dchx`ex;ej{mtgQ9hbk?@DUCYS&UvKY6yCf?WCH)2?} zUM96xa#sZ2r!iY(pg*~p$T-TV*3mI%`L{Oz`CkQRn#BHFm046%nM(5L(qRIFCGlu^ z_OfnVoDA&#KH8OS<)SQ$gQ&CEF7iuiAF*3V7QQa^d)-si=1 zbByaFcG&OW#~Lll*PpSAnunRLXAhfa8=T)vO5HP*X016_(YDzgCsh%!_yI`bc*aI6 z3iiXltt+Yq1rrRPp}EerkFl?@``*+;#;YXg%#uW%qgMpwPnnrU3!6TYNuMlVe4Jx- zc?GP!2A%8=1Hh-PuP#je@#tLo4|KWRt@eny5j^hHf|)6gYc*R9j`2KO+R{BnT~cC| zzvHbhki{Eu>VIZA6yS@Ld(IZpiM-yY;jTPgA>DQ!4$F@{1QAa3W<1`8*D~#UR`LwT zfm1)%X<@29LkmNh-?f%!v^&q6O}3|<^#1uob$$~ni?-ey1GwP11vzEeE%iTU`=KY7 zbzS_t-6)c}tOSACxu^hoKDKY;PQ!3+DWSHK$Grn%EQ}3Qx8zN=V_IO2SBlmgPJFYY zYtFJ!d&%{$oak?kUTx}C!Yq}$!EN=sQ6~KAn>BI*V&^^P9ht=kNQVcBb7+^MW8Uep z(bp4VIz8Gb&BCdt@VD=2k%!enk5?AQLmQ*!zT;{5TGuS9v2-RT5$iDO(Shad6L|Mm zZT@hNE$CItTFCAf-Z zzOUH*9Wr-~ufl=dEj;tY7sDCRIO5}L+ic%9v=%^xv!xK`SHJk4hSy%g@q38hgH60n z5qh_Z7*#LEsC=p(*WX+-ic>OC4d`dv*?vwFW`DOa6BQqTpYTq3$slSRZ%Y<9xA61KjF*OQ~ ztrwi6R>|>MwIPyJ2~Bar(~9?8{HnRaK%;1@QLb{~Rvy$xQhp%N6r{V=8W&X0)0N`a zHBCJKVv2f2?Ka8HLsAcM-}c0b`2Mh$8YHO}oSAdPEOar{jUhv4sNm5aFU`W}^Xe5B z^A}MKN6l@@Z^Lg+%v@bMLP}jLd0hJ$b0hIS`%UAK3s|$CML#!tSYFZq=Y(ireT_%g z)jyY`O!;dn+WjzW0v{1y5(f>%4#xh_PcV?Url}ZwYt1s4CINr<5BLo$*-j1T>agb> zED#}dG+v0E1fI7Tgo~6Tr&@lk17s-%!j*e}gNBv{-q;RpH87T?mRK?Y@&Sn$ityq+ zvtY-v#siU(N2kg-FxH;s=bud-(81avVlNBxVXa!JF~P6s`ae@W?37^}OuRXbZ!>}0 ztSXm03)gvqn{y3x&`W;T7%fpND`DpQNGTG+)j(!Ogh=wSBZ+DW40izqT3N~h6{+xLv0o+fHaE&RPCoDEC#IZ##as*6 zY__eYYxq|-Nq)UIuY%&n1l$bjLSg{WCd+WKX6oYNp>n3KqyH@{4tF&oYe7d@R33ppX!(?UD)k&GKPr{3J3 z1oRN=cf@=oj@7(Zn(B5EwnOBE&3dN69=*4Y|; zdfiY@??DewqIr2UOjpL&5A)a-9o=a$LsaS8Y^{cMg>N9 z(O;DHCzby~?M5%Q+)-P*_e^o(1h2y`6zVjK+AHTOY zwgym%hN37zbmed50m>Dn|}pwIj}kZ;E$6XbFlr z4`W8Q{Q%1_oBoL$BhY<*W1MJa0Ny0&7Xv$T)V301z)G?dG_kK0vy(g9JQy;3W}&G! z3d3xUj_zjv4@6~n1ME&_$LR?`5{gn=C4{s`lT74=sZ;>VBT*81i%simF@g0b?PkS9 zNSO4w0g(Q4jj`pU@Gpb*LXCrd3Yz4MjP^vNgV#Kx=UU#)Z>mR}{ofHgGq|$OGwPLn zBb|3$ZGB`QmIuj1DBRm*`1M2eS|A57%(^)DLGG=cBff2AT@{+ejJRZwK|o9=A{L#Q z)H{$+M`ly{A%pxEQ%VA9!byo6CqvzHu!V7$`S9_JwCW>-Zh}6%<(Qe{i|K&$0f>rV z5pi{6;hF6i6BC}sU5*d(2J!|G02#pQjiMrX@9;KXBrY@W=Gb$qP&|doJj2j11S$3C z6pV@t%gS1xV!>f_PtO?Co)q(Qv^D+jZ(82ZiYR$Q$({o^r``*P*n~$iTKDl_YbshJ zGlk6U|aoM!mObf*9p zOKxGl$ls5 z{RHya0s*j?5Y!@OC3XBFQT8FJeF>k2Lvv3Zu&sC#p|b60eS{ec8McFF`{Ux1Jj(Cw zoj4?6^SRBULV!%FKe)nh2?^w$q2I2)Q)%qH;II(T z8kp(+AE-a%J?Q|%Qi&lLfXTy+!zqW_nLs!{8O!ygbc<3`-&P={>1Tf_zsUdUXH^b% zAkJ2HNVvyc=Z69vMtxB}wvCFE68Ydy#ETqwy)j-7I#~$#v;H)QFrm?y_Xu}G81wdS zD#KAg1Fob?;c^fS9y7F{K6Q?0t&)^|4d?Ut(@Jyu*fU&KE#13KDU*U3NEWvBeenlT z3O&*5qkKv^{zSgGF7+W1&|i#R7$W?*a)f$QHpeK=d$ob-M$r1c`ktklVUG;6Nm1jH z=Vr@Kk(3B6fQ)B$=NXMTlcn&JxV`T`tr4N4ny`uSe~|0li9Iv^e`{Y{Tu`mM8I)|H zo|O0)AXP9!Zvl}A6P%m&A7|jqdy`FJJR^29K~MgM*1Ovr2@Jgm(W?2dH*r~C0M8-( z`g(04u6r*E&iOK^{ zhqdq9+*cfTt=^gbT3Hqf3IE>kJ(h6H|j_D+H|Fv$D zyPEqr&#gLCRP#h&UrG_36~fr06}n)CH4`eYoy6dy)lMajEM27(yoBlk)wF5fHX~We~O8IR>%IG)speQNz>0P zoEP#*AC3N4$j@&jSA{W3N!~Hkww+(^Vb&#|HKtkIHrU~-!vUr{WY-Xym@u!h!k^Ep z6O(ZMkQe5svwWj#VnEQ^YAsj_Wvy$aSxZ{K!;45F+ww~~8ec(*HZ-@Mr9 zNNq3OnPKAD$c>3^t#wN6;Idle=Fvm!D_!T7#JpZEZW!2i>-ys=ECyUOwH{XeumSbGqu#uu;sjzO4nl^2%Dk6WZ;KA4Hfj(-_3&B7mE zS~I$@Fdug9gdkJJ*kqzsRG62c^5s=ML?nJj=8O@FsZwT-t=~Cpn9MHrcx-tX8oaJ~ zQ!RaVz57(FX+eCVAZD!nDb*>ABiS#A&`<>8?D#*5&cd(BuMfkcySqmTjFymQqmhP< z4iOLp0a3c7yQL&Y2xF8E1RW*aNQj6y6_gqw-ST^%_YZ*2_Sv(YbH3-kuM2?PYdMqN zKbsq1UO38JHPVm232L{r2IQ}3FH)|O;Yf)0$8<5^G|B}RUvNnj7?R+lbM$M;QY-Q! zp|hRyuB3t60-@1fK57dI2VF^7Y{>MPLz4Pu!e|kkW0M$l>--5DK6h`8}fe*aj5L zy{GTFsPz}j!?pc`Sb!`h_?y40_hPUojx@R?1{)l_m=qYO8C( z;45QIZW3CSC2A0UKU|o;>J;>>P)(d%qTl%}tR%(+L*`Lp;a}Y;+kMOyN%7|bH zi9SL_+|CW3Z{Q0nQf3_Rar7?=pmZ;=@-A3{A7f(7@dt~9!z~z)kTStF#DSI&x_A@^ zyo_4E`&U3L;^QOVapFhsIYo6Isy1p4fn#oS;xpk2uO85*&l)T4yNS;1D-Xzqg}pkM zDI7S-jZp5ExFmA(T{NR*)z}t)!yFG{R#P#B>Kyz&)y2N|t;B3-Kgn2j0|>@8)IE15 zfhm*u8fio9#HA55SE^d$Yhxk)?^d@4*RZOUMH!DxJKK_PKDE3Uf;ne~J+V0g6@ri7 z44nbhtbssJWx6v_E^e9s@2uWkjV$S}YxU5R-A~O&&;`MipuoA9B>>VUP)4~^SGB$v zW$$h>y(Gn#T%Yu0x68=G9cU)70M%i3Tqjnxb5SCJ=-D^q!NsAKrBf*7Rj+swWR=He zlHXQtnt=tz!N5FF^#wt$-pe<%2=h*T(i)`@Rvb^Y23r2pqro>+qQP{8(r77KHgLR% z^bU>f=gMS*x|lGN<0PZeyId9r~OTFMM5U$ zm}GQfg^~Ab$NRct?66jA^JJ2%7SHSfvducdlK5=x&SGAa+O6E+jYc>u^2kN4wG{zh z0#vBJHshMIa9wT2FO(4S2#7{y0!=^HxN|bGt+YtonmVr);50}d;#N^xP_&~3?q1k| zs{j#R^i)BG2>lW~??WC7^JkOKfgwG)vo5k0Gu`>d5ZY}DiC0i7bi?>8wP*vzmGr`G z+MM&u#UYMFK6aguBl0il&p#JgYzr)m{gez{;f(||8IM7-hE7YmCTJ7v2- zxTpYxJ2sW~!B-kTawM4~9Jt0z?-n0`qBIcBF_sZb7Z?jA^ar+oRVr#IY+Zkjo9RFj%`r zMuP>=ao0i`5dg#VKM=05Yqm6P zf#|-Z6#9+?28jW8ARbCxBVQSqAzl#DY6vFZnsRUqTq?}N1a;323sw&!$u73>P5QB& zdfy@1S~=}BbR>ih@IY+{sXKgXBq<5}QIBQ>Je4)d?GwQ6;$o!Iyt; zkWEi3s+8}(van{nTiuGG2--Nz4|{L^C!V@Tocn?12!fCOKhXUkdz8_tXURMbmxndY zxMG2=3>Hk(ew4WL>%v9pm=QW8dErm{(Z*c*X%F(=oF^iSjkJRO!T~k$bukIwo5KAG zO#s*~c|y$K49N#cdfy8&*YCkL4kPK*Ns)BL(#3ibTGt5j@BTqY-8OXN!>SXs?3PCv z8SSi}@h`Uu^>j3Zp%$+#LZO~AJFmG_8YK-xF71CEWOH^<^I@(WrD)_qpF8+MR|BXv2qu2dU` zYWj>Av*N7A(wDSRR%8qRfu>gDG{lC)hknm0J*u*bQ*F(o2r{%G#C8v#V)K6Bo$Sc( zL7z$O;4Occf4y{#oMCuKWq^xP5hCyDu-$(66S5Zm`pobIJ5WV7CrgK^m4A#?sJ=#q z@8)7*JIm5Z&=A@YaAU?mxkOAbEZ7a7`Do_MA~E*^8J1E=AB&WE#*^=*NL$FBKvb6o z_~c0{^H|$ZQd~~E*|bYZ(CO6P@vTd^1n(Y>lat*}vce)kVrum*Wh`ijY&V9c9;2Jt z#$j}`GzIpY8q^CMZVtn$b*mK4zUze9#*(ho7J4olrTAKud0j7)%k=jn26qnK|1z-ICv^pfLYd6De|3`?7r z@Z239Sd*eJJYS)zgnI5A@+S@NHXpiSSs@ePv6=ha<8Ev1XuHfa2uUY)6JZ?n`e|LC z^qkL(V*We#Vbn<02d6)Y-crspug~nfE?y|;U)SJKbVqS(TZuD_B`(GLoww>vx9QCS zE0J#ly`Nd==XgKA=kRQ`HIXw%gH=*6&{J@-e7B}4;U18%5F{PNSv&%N=#*yyvU?C( zK(>6%P{Un?UTeM9N)Du`lfTpWm3?bDUjGwmVv_52-+;J#BqO#$J2nhk`&l+q1_|&pZXRxdLnQv5K-nV%lM5FK zLSj{yNs_uBLG>`?y}uYL?+04hae~W^!3l2L zfeeGomE^mE=y!xiRGWE;LL;-=nor7+Sn)_jq%J$ ze6G!+_>O1u6sj}FmyI-`yH$Wk{LHlAiFoQO(^f!{Csy+|C4qr2!IJa_7& zOreTmTEUm#8!;5q)|EjN{*(2;@v)^*OO->R;i37fBSFro5e?byd~B(M^6+6-z>7*+ zAwpden;mq7f1OH(t`U9m%EH1Lg_?KK&830^)IhRD;BMsT>2_za)GXWdLBWEFr9(5& zdV=$oN@QwPmgT+3m%c$hw5Z3?^yE$9=;g3Rqq?+ADn3AhlddS);tkdB00_WHaIqSu z`$yS(X9aPTg@_lu-&C8Z#bRMO7I$KyD-eq?^L^HRk}T2bq+qVrvel}ev{oX1wCEOe z5-a@9SEiR8dlk)=CXTc`!`)YhyOE54^sF2ca$ZE{)j;$jZHA);&TF2GH+6 z$Am%D%V^oFlTvB&5dv(fADp1nllO5c1LC#x`g+9YktW3K&1vp;Cxi528H z=PC4#bfQ+XfZa7XP6oBx620Ys>c$c8wTv0}ykz=UJ3v*cQXY+uuh-=VXma#%v(e*? zr^cUbp_#M5!wCM$97aucgp}WJ3HehOte@SI7PC?-sF#-RzgrCB=#$7$w=%tMl!{YB z+v65~Qe=Jr=h06ZE?YguCtoiUpIxDcQxqq%FVP>Cnm^NJ6G**iL`D2M^ytbj8$LCG=iZ9o-0A7C z_0Cf@%gLfJilN$GCo8Z%B5zRb3^tf$=+nW*?(`m~nK;U7+uZ-z-picA?lJoD^TgSw zAB%6TQMIvb4usXD#TN6=K2}$r(pUbjEmcf!EfiUSgaz$j6mmb^1mao&3r{SVWv=e~ zX9Bh<*o)M2_}`_x`18!Yk5CVk<+Ju1n%5KLd3h5jS@?*(^g>WuA3{g%yAGtXhl zF?<-!;Rg-JG9lM@_8!Coe+ZZBV%=yc0su~o8zk+}aQB>W zZ_H-YVpQ@`m1LF!a+YL_)@+VkvSG*-RQQxow!f!tjC63~fjz71<55#@GEYA*Huj$$ zke83_`$^8N*6ut~1^1Bd2vM5g3N*YT+Wlfn-O1G>M9eVSH%_kny<==UJ^5|%`%OM8 zEV6cI&BKWYM`l!2uVlimVe17T!i{q1FlC&#cy6g>JtDxfwkHBAFyw)sX z7JQFBNv+^iPaXRv4QkLw%WP7?jf0!DH^oH`{5_Yh>!yGy=u}bvJ;MNrym3t)+aRk*~ z3X+8Ea*+C9E_+215el3!7tU-8=vlVXVT;YxJbtpN=jbd%L%DG?mF7g^5A!4lGfR#r ziabpX`KfwEe6Z$|c`aRP#CvDf686RQhJ0%^Y1%is&X&MYcW~-*8499qUBbjFZ544n z)1Q-&Jck*(EE{c=FC2iAqSFW0E@%$tCw~?vmTVsr%EYgIeQ#dGO4XWDGd_ean9!O{ zEr83O=#b~@Y{bK_fVOVvJ_#w?44d;`nn6%n>sw0k9~|rF*7t&P`d^vD$p?3HZv=6P z*CMBZoj0Bmin_=2Z?tJ1yPc=s#^eBl>*)0D)7-dS* zW*t>H3e898J}PNJ<+oP-!q-Jx2D+$BF8}ftObv7A(;Z2>b#muXfdGp?^1a?n*RpAp z)eAUd-NV}*ji+K|G=62yA~|Ya{E@xtK?uO1KxTR`4fQ$l9jkMABf9bP{c(OHv^<@9 zK8aL@77@PseLnvOWX>y{iJH!2ATrsRW$F$o|!SF_WhFgdt72P)1Ei^xXY#ru$%BvT`_J+N*xL+n#?sncPO-Ph%v;S3FO+$QtQrbwT ziI@Ew%k%CJqF7#zSV~@w^!sufZ<+>{a<<-?QOmuYW1Ds@rxCeyYN(|qjG?L0>sFEt z1mU|l36i;&1lZBj#p!^{eIA3-10)evnOa+Xm(J1@qxF;Ps4?e{PVSE4bi5O4VE#QE z$%Kbs(A_wE|0Co{j&DJ|1=+;!18?M4%rDm{K&XqgjR|WdOFbBQxlv21G-t7{*Wy9wI0Szu9mLnUZgd~V_L zdd}FdP-heqo3ArKMKd$uN+lW>AP^T&3?wt0u|*4q3Y4KDKsL8N2$f=ScS{k@kgJT` z?&tLr77RMw27y2>B5^<0U+?bhkh*%5$Pe?J7~Vi8(lmvrw_~Ch2FT5XjOYR<2orRY z?X8M*_{4_~M(I*H3N|rU&T`2ctC#IAO3eaJgx+b$`^bh1me(vhs|O8gDu$l!&RM{* zcj5K6)Hi{NUO&HP$&ENnr?w_$UZay#l;aPUEmP+0AjlHr(bSYFS|#%yh_-RdEQz*i zAK}atT_g8J(p#$S34h;uuWX2=T;001OGQ2des=C&_FZzrybCl$Qq7OLpBZy|zpSZJ zLAm##l{ean5I&}aR%p608{r(JJE2Q#qK6d?w)GK{o9wP3S zM_Vk(NpSw=ATHT)ho9&y*+^s#wOniE?=giKiQZI|Ko{|m0L}5?dkNgUwC8p~VW;NT zl4OAsvVk340vyFvVyTa@YPQoaONVD|{#@Geu+~R?{{N|$phFPbL9L9_pIuo`NQ#R+ zZC}32u}l%sex^5N=1$|Z0yz$uC_S;^ZW-Ak&VBJjl$|dz-Okd~C6M;u`WdYBF)Pk` z9j!d78$K$;;jj3qr=YuI$>@*C!rgD+=b_zb0^H~Jp%A@7jV+EdD~5R%aBm5?U2U0+ zSA?_z{105Z+a2jbgCJ)2ZdY{CZdEb^Ys$&?PE2SR)@JCzTw2xy>~kAdhygj_)2_L}*~re)rl(iouEEqCrK=rVOS1NjMn9{Op9jqL5|ST` zh9FXW&oNmIG-S83`L4}>S>Z+W8}=1KdrRwY~M8m(QF zosJMYvE_g7jGr1Mx)c<<)3gs*H6Mpwg`EI>QYd&XK&#f0GYk}5}-n6TJSZaSh zPVJ#!$*f>$h}}c7c1gkk;ik1Mw)0-bhsQ_LIq%B6GbbXzkDPiN1;MB3cUoUnLnW_<1rw8qrlhWZ?JGgG&9{gPlo1?x#CT=H`A4hk~kSNrLkG*+$o=;W(1A zcx+-ngJd1c2$jix70GDxtiakuLg zJf94~P;MQ){vOWf$N7LvlGK-kWL6(!0nx_fnx!qr6Po!d8U2GgzP4pDDgN**6%SJ$ z1m&yc{Wiq9Jry^4)x{>(Rz8*2m3t|=e81P_7FPXcsIXIb_g83IXcHJN!J!jQim-fs-$5;CO7IoH%l-M!3{l?ub1(P7MA3Mvd-3G`QlfP7hX1Z7{x_7$JX}RiW&M(L| z)Rd=RhZC1IrDug$-7md29vVqvYM_KUi#5BZTXh%iDYzk51}Y?2itMO-*#h6b#Q*^CPFXZT z#+7YGu8aHd+-lVA8#*Mgw z^90n|4n|@v8EsTjqHwzC_+tg7+mxkG>NH9qanU?4 zgI*{%mL9=KpP!lnRdL<&5239*lOh0ejTS8rwANT~-xb91_~nM~Z)Xsp>% z!u_%@s|CMDcGMwtciU3hTG>(QtavOy-j{2>Kb>vt{^Oc|>9dqz8Wka*<+&4e@`<>8 z@vJzp~oezH1;f zd?DF6RwKtgU+t^&VS3DAuLzF=1D3XGFfT8*4$rYl|D-XF zGz?mg@Psa_QF*++r*JYA?>LZyr}ez$(3@w-8yv}H?Wq>mF-6RfUUbU8a~Nk-Zu?g4 zEtjOcGrfV&znri35s-`WMYkofbYFI)fH?)- zrW0Gt&Mis1kmb=6x#apSaQ}9&ct)QZ#P)^3($f_Ti1&Q~|1DeTlLpt*Wp_iFZ%E{= zUvtZ*v)4jPZV<_+@2uVQQBCsMA9T)BvN=N8IWW0ejTom3Mq}_;^v=kghhwgLqW(g> zo$$T=c$O4J;jraS=N6-az@l)s66I6wXDuo7X&>I*-tX>pk@fRdhS*u(gE26y5*6uc zdsmZ^YZS%sU3uyk?DE{%8T=2lv!h8L`hgZWshaNamkMX~SiVSLg%%l#s0xzhCj{OD&Lmz5CuEtLnnJb?HMySfN&vUTn3F~v3gu&23 zElnNpQ^QCif^*nquZRO zn%=nGZPFQ;XrFNP&RK6U_eq4I-&PbmFRX6eA=;)qPzs!bK3L?&?uPGv_))~`wkig0 zS16+FR)8{c#9hhWyRIr?x_-In7@4*W9C+s48A6cn8*r<2r^vNQ^fY{eO$F zmR{Qh^O;GaMuo0?bTy0utlc7xuV9zrxsq0hX4dSt5&kgmHllSG*t}+2EnBRjMb;{c~?Hjo^N;vaY&mcVh>OsoUuyLro4{dr6u{~Po4LLK+>Fz98F)NUTV@A zn6vnM(qd&26#nJ@rf}#!g$mOLV5%=5^iE_a@#ahAaOz_BH@Z@Akfe+zLOqI}n)}Yv zydM+McBC0RmcN%hSMpGVW5%w^b?2hA-&peWVxlZg#4FiS`nxcQ%7&rlq@C2JQk2mv zEd|Fte=>{30%m3wdI3U!8JMnB;DvnYH;JOgRdJT>faGkOOL^1_Ym=`aPU%@*+sZ>p zIm%#FA`b11iJB=ptY}l3c6T^Lrw`pc-8Rkf{i-U3MQD}jB?gi%-$5S+EwUnB<;w@N zcfvz)CI!n0NUCdy{T@y~onp6Qiz9d=ZhQNt_64~JR{mOaK0%ABlvzr8k%v2TR+0?O ziqGVyB#a@m$%8^gRX3P;@wZM4RJSDjo%T=Omw$d5ox=J^2S&Wk;uf_;3odJ!`Pvx- zq28k*9)<9eXj7^gxX-Uo|R&EldOHhgiR zh{BREDXQH=SWBh&2;2CYxfd!9H6W0d{UR3imd;1oOUXsG-&(A7!ePxthb8wpMDme` zdp?89BnpK|tFtK@zIdUo;rg`4u7I2qot=)549e??1|S~I+i#sM+XYa}s@0UM`arj} zXzrlQU*_l~f8=5>&!e8{tO=z^)9>E=$6JeF_?O!uyBrmOmR z_}~qi@&qwlm%9<*aX7G4hKKiWtzBU85>%GmL)g-K1(+j;g_q^;C*Y}-IihAxDv6vC zbMsw%w^r;yH6_n#lo^FtQM}tFb2a=uvDc7`}z`2zX6hmG8#o*Nc$KYDp) zS`heqxCP0ipbyJGBeVjx(6Yk~?>#v}TzE0Z=(Es$@k-%4a?_z%z36`BI>xa(I2L** zDZ~dO6)@Z9gTPL59#gg{+9S55gTsN>C&iYHjrVkB@KH>MST|PLI-%r@c=`6Hd-_uL~DYdy!;?6f;5Zq}Riya% z3b}7b7&05hv~1HxlLu|X=N$$zj<{1z&zh74*_f_0L?DZ(c@A3ce%(Nx@3tbZz&uyS zz&(uiCHBoZz~Ll_?}c~d;_muwN4!`hoX%54D~A{+ZBx9MLI%%2sX2DvScuB4)M1u0 zRBf2qcGdjWf$M~V<-Y%tcoT7C&%YP_c>D~;F{6MeOG^GRA#d_Qe7f!$Jjqsp?x@|5 zuP(hp*7r#WQYA@x*gvOG+CpYX5>w+dxxU}04M;)6YkQ-La#r`IpRdiCz~5Ql%V^1* zyB2i>oP;fsq$Meh%g>$v12GMT^FG|^w?20g)(QSePUY7kOKCr4ox753qT>3s<_}i3=Rt$(Dm?@K`3bk9MSyk^If44yLYExZ3fhR4Csr@MUnaU({L?&eCGF1^*u6wX*D_S9r1 z3dI!8u6p%flw&HH){og?fIqgOwoN|0Xn->VnyxiHsN)bwfjblrP3FVD%^tINbB;ZS z#<}ppnbPQhHulN$zgRUCdD6kuNhipQBY-yPUid- zcqxBSbI&}9m{I+1wsNUSzBHiuq!_E1_?tkI@EynfB;X0y-lzj1&=8V-WDz4xOp9L$ z?&3mnZF&u4e3ANsvkMIwTGa|s1SqIQv_-XE zVK*`{S#5-cHFaL9%J+99_&B;!@q3On4NbeCLCzS!4ej_oTN0!hNa!dp+dC|lEJ4v; zd-Bh`;q9yS1o}AAW*lerl*c>h-m(2ebPkbs+}j6_p5!h2qe+EG39j!v4G5%6Q4Id1 zAS<#qB`F{FhKe5VCS75mc5~nM$?0P)qe4<&;04XMc&_D=Rhy!%PE0h;~YQ?8<1CSc$d*i zmIB-Z6{T)mf&U~20w`6I#f#)Qb$UW5jvjw*DJm}}vw*$xp=*Kp{ z>UL#{ZgH;r80y|_uPaf(AV2)KA1%n0TF4qPSbm^lJc;Y_q|KG&~mmM^(Q$igSub!`wvgR z|9*@S{E+j_j}kP=XEYjl(_)07JS@Db3OJ_q3V$K0_Y0_@NQEHw2qm#{+UKTrKgQ^b z=k9rJ<`2bV$<0hVv@dTOB_fWr&SwP4<#>y5p6Lcn454}F_G5l2cGcf80H^4}`94xc z(a~n9B^IGzWlkOKg*gZaWwC;jZFNH2K27Vk>B4g&dkPJ%B?a#4AGAyaBG_c!nK7cZ zUEL_#w&J&D$ry`jGrvHps~qG`93%gK8SplDzc-fm!NapsaTOz8acbR8=V+i=)1x7b zs;}Uk9JLaEEFkWBVqr%mDe&+~Ba+XZ0T;YF3k`VgXT&^vO>5Mp9Zej#LGWE>opS1< zXEEmC`Arb->MdSHA)c*wY%ftbW8n3-3+Ts-XuRisB@@LTRB!Ya;o*MVAV!%utvR32 zH!4S=OGMQ}MR`4eL_57=e-ed<+?_k<~8ds5QD5Qhk?;74rfTZ)Yr;tXxc#Tg@kU^4L zG?y0TS$k`}GG-!0Q*E0b&9gEo{h{0szksc?zqWrM-p*pq$a zQ|q3$(~tO6kqbQf&A`B4=WnqNQG=ytFaGuAL|PY9{Kiqhp>ZYkgeZXM14y)(=I@u%hER6?W4l6<7Q!da_2= zO>?)YZ#`G7do&roTf^#H_x$mY1VUGco=nJS@RP8zwrKD&z<_? zh?e&&RHMJ%Cmc-QDI!vlcI?1Y@i1x@!#sC0`SOr_d+L|`K#@hrXWZ6Hj5Ea8j;M3) z5$0oo;o?&1NI+!!yL+N)+}_>a?`Q3lqVH$e{bNlC)EUK6rpX3r(Y=VR*(fvJ!DZUS zf9x-P$o4*5BJ=UG!9+G?_cEbofhJ{({55JzVyi?b7f{wfO;JZl$BV?Q&i*C@voRvZgFrD!?kiH;WFcgv-{N2?3V{T85P$ zGkGUyy?-Auv*i`qlw`|%+K-t&wV1&pam0TzDZ74`u)_*V`FnRPt9E04y1Ug8c4trYRNN2zxcn)BQFudOA_4TiQSAP_eEzF*L_XCkkz#xYfLr z-G7mE;oVEs>Xs*hj?oYLefVAJcspoM5wKbSd4PFQjmL(fe(72Ot+%(6{1R2$n#0!D zA3#w*afXRsrVFxzPL!eqs02t@nyTZrHg$Mku<2JO*-97s^?qVnZ_K+m9X7H6=4?i2 z@qCK{9R}70TBxqQ;s1-JH!(}TY#LuOr_Po#L~} zjU_|k#IuQ`&}^Dp!`jIEcn$AY4(OML4~0GRW>e4t0uV{y2YQv$mdSZ z4wf?A(`dM36@q~o0oNq-U}Ugan`1(QcU-7%y*?=JeEG}xfm5t-tLF9ku&^a3J_51< zA-E$9`zLh+f%5w6P%3HeVq>@@V!h}`h;fgb+!sCtrES#?Vev33uorz8P#b!N!Ldcl zusc#tD%b#~kjR2d6ST8=r~VXW{2rBfd7-GZ!NZ-0c(DuSq-BR_J4e+(bJ@a)JIwE1 z!yOZ|_yyA17%=nP=di=~S>75x>(9k^0=m`Jplh_>r0KW@mj=H-K&y?Zv%WGLK&AG~ z;)EHn(jwJYH|(qPQr|ox!;M%@x<%M-%4CgV9xvZ-wJb06M(6NR^^YDVRqM*4R@~R(0hkBp35*xM?KV=M(3tCWO%?E~b>GqTHK%%R~yBqJpfG9xf@W zr)CEG6^UKQnHLgGnjQEGe3UPS_yrjp6zyvFN2X4AMQv79cje_7%oW1g4k12iG6~ zPNs#kZ|3;l9(?bG1*G&LLtzzLdvi0 z#>n2KD~f15By_$^BzSlUyh~!9eNW1xs2tlaonuRa{xB@)QQwWLZS2W}>&iy^G8OEi zcMIIzeufydeH>Ia-Z#~5$f@3(K*|x?{W^W-CZAX#Aq3tA?F?itr+z5Y_>tfpLlDPT z>M^Zdj+?&MB$8f>?j{u>7-io|K}aeo=!%(fb+U6&`yX0J<8@2UB@WbQU3}j#g;tUc zfqov!G){n)Zg(XPC7KWjLkSI%{g~AGSo}|>hA2lNf${InvP~_U+d1^hQ{Jt$J=2Vs z_4O70*#-Cy^_)U!2JX2|P8^7`Wb+K=TX@yDE<`&0n&$QG78|v#4=aphv`EkWc>|6w zyn8tV%qaDF=&l-QK={;R<4AF!y>Koe1q-SzrL}BB(4iJezEo|$(u?lN<@R3Px<0m* z&t<}%bODnh$SlPaj-$K#vS91rR`5ojgTgf_D}!T=+mz)<^x=>&s*oZboO36(Z5xR z0M-P$UVL)oE;8wBx?inp!Smh;R-eKv7rH0Dj@N8ewcQ7#iNez^$NaDGI~;{mkT{m^|Ohe<22Ej zdcUHzK<8~};8PiLp2Zm#`s~{d)PEVtGD)Q@~OQ^+;npztJnp(mmGGcpFG4{j;R_=c!hQ@Mw_i#Bm^LHs+pW zCjuZJ*J$*;1I0)T%X*!eIzPH<^mUMlp(>>?j#?BtQqGWA(4z_xCG*JCXUvS#8 zoXD!fQfAsGreh*{>iLX(PP2Ay!Jp(ezpyC2>ojuxb{xo1S}A;2k`-r8(bhMotQwt9 zz5-_*Izzm!->=c>J&28z`|IJ`i%F7>U?0d$0*Aot(!;0cvRrm+l>oiebX}i2Swl}j zz*V?b(avK`TTKv*%Dw;FFgtf@@5G5@eppfD5%lSP|15jI-}a%##h;fz*G>LG`%erH z)+DERr4S(r$cJ(~Qq}ep;k|qA$%W5}`2pPqZAKg$DDHat3#9hr&Rn3Ymn6;%tl~3H z26^xN^dnE&pGZmCTgwsB;qY$cyZAHhyMuYy?DC<50n3@@|W^1__Nh{kIsT|uCu27~hI7(VT?*(5W^DQ~L`FWn1? zdl%fjW*Ve#!ZxoV{0_5aq!u9o9tNH@*1$0-`7 zFHsvWSO%uJ!Gt#oeGQk`@n0uRX%sBU)MRk)NF_SP5G%Sc1W78v%LpoU(yx-Cq}0!s zElnSfq)JXkAdh`A&3T(;J$UCdwhtLWN~!R$R8Sy{fV3rH$E&T~-|KHWxM=^ZA|)gXXVuJUe7SG# z=sT|P7xQ~{=lCGe3>R{%ZVjz2kyQQ4Hb7AxjS{)EsTU$z5EbNpv?8s^6>COs@TZ5Z z&(;EokN*?!Ug7CD3(0U));+45d|M65%SdOA>OOG?5ByrP35p( z-kU;tVWlxyRj! z>gOQRa-f*1D1rFtPde_UTFv1)8!7bbgck<0?MqR@vc1X@jY3K{1!-QW015?1yP%}3 zbP2VIw4w5`MdJubz3x>LI7^K`T4u^S?hBAbfir1rp|B=zcjFv__g{6PYadS&0(=fc zi5-vz6_aMW0>=Oqr)hH-%^XSH7&{h7ibS)xT|%wogl$EZjYoA@M-e=?skFcX5UjIN z8B26rLSaEj%4p|g#g$XcN-Z)Xt5tI727POE|dTh6>w)c+_t%c!W@E({MnbaxFU zT_RmWgP_#V-60(!-Q8W%NDQST5+i~V3Ij;Th$Di6ba%bq`Tnw8@WXY^d7gXU`??$n zHt7K?LPNLEh)+<-^<;v(ZT=cOU?K`0{b!Mk^~FrKgka)!;~-3b*lG*OPN;)cRAZyD zh4=B83uZ>sxX}z5vX;p>tmWjuYHG- zbLPZG4cTbxxdoXF%5xU7s}q(U2IoQP&0ErN@rI8H|Gs|_AWGFOZO)@%YC`{%j&VYy zAf6;s6Vb*I2MQBTc4~n6mc-`^6JvNb7*ScV^jB>dU1p@%1Ffgu7AJ)mqfK}{1~-!; zz-&FLviVqSFOJyad6kP=3ZHFw^^2n#?y51f_3&oyRBs9)!$JT!3XMkcRZtL1BdU`l z9<@_*0`q06Q#kPRqhCupcY~m=yZInFxHSg<*@Ez0%M}g#EU3_>t`>_K;^-=g#)rab z5&fp9BDbs)tx#Z_69Pg10wZ4Kf+RjWrgA6zh zb8E4`ey(;f=EA64BYU6#-+qYa;s!DyH&CRZYY!PGaAMaOPknCYx)_XcPR3*0QMfRX z2o`Bc2b4)SeMEP697fk1;R@swy^TbMhuH$BSHQ-K(ZTUSpRIKI4R-u6OfAS#CG3un zD<#BMV|9p1rW28NQWKDYxA8mJjy+Q=@BQ<1Lk2z6V}UsE4JT(>A~uGm3{I0#z5Tfs z-aZrRr4Kg4Ye)} z6FBHQ$8UkRM~+~H^*F?&*m|lJ?qDk})=@eI-Pp(pvZZyhi@&HdVMd!q)afgYW+{Z5 z-!GK_5y{fXn{8QJBZk)bWk*CR z?UlaP9huM6%@Mm=DeH!wRb}=!JxtXrwI_ZGHj=qI@$hqOa+|&CMOf8D;~LD)-d78zoiQ&y+uTkaj^8ZeZ*c2lMSp zPbVidNjT82$O|8|x*6=<2t_&_CcwT*sl6i_clAaj{cw-L+zOuWl>nGfk&T;b);&>a z3w#M=@B2b_hpsI_>Zz^v%;?#=!Jgp@6~I^08wG!Vu0O=byc?Of%u;Z^8XU#jcTXWC zdD9T=Jzug!6vrl~F|9cWk}l_mzkM0L7mMqRn{l3y^ct@Cv5BXWa)s`o_1!`Jr(OY^ z6Q9<#RYF~9gl0DioBcXM8K#Ju@EybZ{^(Zlny}IgBY6;WElQ73mgAjWsV5m&P{CWj zGK}97>fi%JcRh11TI`f&#mRd%5i5Y0hI&MDVdI_)6Pjfclq-lkC~w z4~5`{!Q~7%!>@1eRMi;zpJ-?@3P~DNW~1FpUJ5(D0n8@7xWmOPbFcpcApozDF2!d+ z1F~`RQkU6sCdm5|SvN@yC@m2rF)S;#?u(ViE-l)?^eFu68$=9aWwfs(Aqne>DXLy^ z`2`{&Uidu(``>zUp9RMcE~I%^ad~xsmCWB5HRkL7W=P~wTgsD^dy$-JhhJzF@)CxR zTHJH`vo)hJNmrGlY(Ek0Gt%jN1g{2yikh}xs)+j{7m|p5gN6r6!ui%}9!3RyUrbJW z9p1b&B5h02q5|O<*AfepZ@k)kFEm-X`}_vr1$swqNv2{=UKlZs{@9UqJbgfw#mg#F z>p9?2w(s2O-&Ae&uyM`f3E#C(Ltwt$S6kpE#vd7FgzZIY#0k?et0g2b1iQ`Xj z>@QTm{s&65<0F;6?ouHro4eFcN7>>`xERX0mx%hfbN$WCu#j+IT`0{T;CZq?hL!$> z2}4j4?atpQ34Xr;qV_gmIYh{(o=Ptm;V9_4(ZP<`|;g*A-gB9qEAUnkSDDo4qz>X+yS8FnAeQ zP}m%gDJ&5AMD!TwCb3{dsXNhFn7{8<1kyifUZ(ROeM*lsx{RDQTV@F|mdV;lE(*Ef zduI5dhJa02*jgO3By|^zocyFNB(c?!d9(YO>U!`@e&XHN-E6XQa3DIELI>jhy;Icq zwh%9Id{eBtFB$tZxPghGH$s5@FT{SE!B$BUJI}o5i)|N|>5YiOiwKd`20AZYwg{)P zv<+43DHBT5D`%oFoGYz1xGbvVEkmtIlKsGPDSd6;v9ikv|9TGd8o-M2yqm`&n+oPT zjIQS*bt;1O0}BPcqjP0(U#(uLeN-%v@89z6Hy~Cb=07t7wijH5Q&c3Tg0qBepEGvM znrWjm*Iq>g`){No$!T529$D|ao1#~(oo)>YR(z=vjO0J9;!DufC?{?tD~9~xX?_2< zd0BYonZw}*9^Bb%VGVXh;P(FU3c5_b-InDOJ$H&iu?=&*P}x2R4k0d}$D&d` zFoX4{uy%*8)9ZswWRVW@UhHK2grZ*djpJYvtS_im;OkOH zLb+Wa@$wgi+5JZwko4@@LH1iCb|%Q1OaD-$8eL@WJIX??aSy2inm#+{&2Sf<-h;~i zCPq=O!5m)#u?}gk`k$+Of+xZ*IX~inE`)nz!E7j`Vd4wxe;{4O29(xw3lq$~G#dLW zW|~!_Ls~l&M?E&i3W?=+8F6Cj_k2|7WpQ{NwR`weoKxR9BE{uzLhx^NQiY6rKw`TSNNuID1Qa~Xf55zM9R(U)8d=oQ$ie4lnad8*7UE_omTy*nYCh>j##DEHFZ7pYG*7wQ?MhR(kcn9 z-TmwV`Jj*77T^(g?9V4ZVwZ%Ch$D~uu3V92#nH7lw1)qIYE|GG$|M5WuY>&FMPe^l zDg+q*K70k!EnG?Z3_c7VR{2(YW&owBO6U%HQM8$lIt|t-jke}z?~-pU&`T*~g~{KE zB4n}IeLO)-Od*JN^6frCl%Po9eqnRK^>vN&$?~ZsdGY-yHz^y2`VG%V_`hgGC>$i2 zJPzj8sPzrX#65Jeek(KV!eTT0Q!+>I2QarTA<*4WbuKB)HxD4EwYo4o4(mB}j@Ra<%FoAMttNh{*cB=>unrTx9CYNyC-DX`#wp!Xv)-)&B^ z_(ym?R(n^Kfe6UExg*&xPV~ekevL(dZqcCk5s$?F@Lh@EJMrn4Z;+;MFuDBMbd2-S z(u57s;eD(*CAHgXnKzfcZ{i(X&e|FJvxLC++Mm=L^LFCnrgk4j6B6JCqe#$`>!V;- z&meXGb^N9{)(*kS5X-jMFF45YH8UmvrXvIUbo2>yU;O>3pW8s;gVIQNPlTa4e*RHY zRu(g1*QbI2G{(I@tm%(ABOaJOB;3qK`apOW#(|d*DMz$&svK;77wJi zUANP*wPV6slTU_4EXLopPV6Ha%K%H%fLOJe?NN-c6pYOfBR!x2&30yMCrEpe`^*UY zhK5}%J_32oBIkKZ&c~~5rys9X6!Y&jpS;crycFMx@KsDvi2>;;G7Qu*ta3m38W0k6+&0QvXTzZ;|74yt&SlfsEqOX{OHc_sy#p@Ib) zGY04&yxpU|XpWO2Cv>PXQ7xsNYubp)?{lm7F2$2aKRuf|OwRb4U<3sxiMbu)btv`& z%D+9-kvU?g0ByX_^Oe&&&k4<+<7Bcphdu1;!edgGu^_fA-i-E$nqsCtEsC6T+HXxl zNjq5!ugboMi||y4y;%T#&{Y_WBdR^AzEL3Be)2)aHs-rCP~}i2(CsZAJn#JK)oWUy zGw4+1qRn+Gp!e}07UUExWG^?LLiQg>1FLDC5$dpw0qJF-KnI&jO?*t6DZxyGVlRH( z^2Pm)dirMLW)P52Nt9nAvF`rn4RR5!Z1YC}9BlQ36{G{%J&d4)qUcpnF~;DZO(Ek! zyJA{c-B&bJzzv!lB3DNRBSFs*WsBR(ad!@2aP=%i+qWemr!~Bz*S-R z=o#+(Dp_cUV)6VjP3VjkHrYbt{+sCh}RkVE$!M zNd?R1h{Sl{^6 zfo~OR(p(xzt(+741}mPU|60YE8RuLp7mW3jJDP}!EcTW|B7vrU_t(~cpt5=eD=@NyN5*&<{*{pnZHoWddlkyw;U)W&am#K&_QP%yUYyet1 zfdxq)a%05ow2>tj355LGFLNlYe011R#M;sOOrk9F1nXCyie4*y5{YA_TG}az)^KDP zP-hgq6CAHi{53g?x`8;-Imc(dv~quCU}W8!9i&zEv9-O=Qd_RwuO&0qMnReSE&^)C ztsW`Dn_8PoD?4~(X7)Po?M`)CK%7+h+0XEpQ@{_e^p2`Oz-?$h# zK!tY52a_&foGGC|uEG~gP&IO_p`a}C^g1!**joR@4Dq`&rJY7YL*0hT@L8?!h0;B*0+AU;)WZaGL4Zh{bYkP2hODid>Bf7$heLWGl1t5zx{U5>iC z36@E$6IVu0*AU)f1m< zKN!Es(aac_@mu#xRVF&4Sllu-w>XF&_JGuhTGZx|;N=fB>@_@6m{{6r?d#CL+Qy9# z!7Kn^Zsi?nl2F|j0zaR0(R*%H8=rh{DGXxreeGV$mGdczc{nYKjXUwrAU2A;TL-VG zG{be|)g3*J3AFLarELvbr6C8JbSNS+E$aGG9IrEf+P#SV@%&%;KWmTVKN8p zE)S!u_r07v2q_FlRu#-!!aMg^C>9df$2%azaUhE9n(S6l9I4UM(nj`WbC%5MAP5Gcq?imodl0-i{IH;!8@-7@Q7kUdMFTmLM=#k=e)3Jjz z+HeMs(+w`BKaSy!a=^)<^q%ST39J7P#FDeOpFpvyzB1<$3ADQ@m&&+A@8UhNZ(Gh=uTXmoJa@{b~lWUg;=GQeCezLBFZshh*qfn^V2Yu4gl5OO+UPMirw5*{$ z!M%flLrr@}Zx;&7!h0_>i!g~CZ7$>XYs8t<$<}jTw@Qq;wiQbRy_vtExF#I)Top9* zAdkUeh)B$Dr8{V`Jy0xACRd&VL%M~JK5%FAi6(Nf40B;e*<<75mt?>dx=!(><%E)E zZ_x%*1=w~fS=!HMUbG15ME`t~`OyIc5G@~`;uy$xmB7w~y%%4Oj#u}lr)w;LzB97nR%a7KYUFj@aH(`Ugsnc(7=Qn!;H4Ckg?68&q)P39?dEYJ zM!#fJjNg+?8#sxM}+z&6X8%!^U}Y{ILt=_j5SwS{PrBDB@J4kEwCo z?R!dKw9W8?3+cah)K@P0?@hC|!CJ6TMBhe-v@Yw&HLsAx$cz!`YSdF|i7UEzi&(O| zc{!ggW_&rHOyywc%U`IRE8%gz$5v{HnljdYIK3nIAD!-N5*mW|Uo`T-m4T--Ya8b! zlzpDdcRbiKJQar3_roh*IEiI}6yVcR03~-;CW+e|g)jYv6jQ-@>)$>tK>i)^X~-zl z0EF(XY@g}+$3USL(m|R$CqRB6RQ`<@CY2ltbqF9Z!8IpBVockup83U3fKFDy)NM)K z7Hwa{+mwIMD{&hi((x6J=IAM*j&8aa?7NMF``I_g4ZqzS>hRp5d%fC>%-8lDppH|E zw{1q@gyn7gWP5BAEm-xwL3ke`UqYkHVE8GQd%cSUxgUOw*K}_zYGacDW28Uh{GA6M z{a-~>-(=DYwIad}T5=1S;ZGpdE1jaz#KT8hYjb*<L*;2~Ll~GrMMGE{Ay1w`j(xdQ*3jmXV@a@Vx+{!*nwrymu@+i{@t%^WH{ z>~K(o>DFaECd8hwT&ZrIW;f(hEAg+*5L2^(yp6e@!SlB1Z(3Rs0BXm&2XPNpL{fJ( zR)o>kz({T97LtKi`nJi@In|6}KVkFvaRKEiux}F~B~n)!@r&};evN@`lBl#vx~pPA zX02>9_JkF(c1-Lr5iI`>(U#S|rM7ob4)GN(LA{=mF-iO(9OR1kOOy}7)4y!8|DlE< zGk7b*@h}Tu^deM*N#RJFw~Z|UC>$JdX*8EN70?jc2P<=dN$?XtHbHq&vKaFH>%`jK z3Z5OOll8|b+g{}9;SknKM1}7w1X+GCtu)t*c9Sa~_R>j_rSkTf5CXcvcC0I?u!|Ox z%#-OTCT;0{dLxA|@sn?GC}Rr+TR|HoQ#{RvCszg6FT|kM_aRp6^8)R4&DLX1QPrXC?d|@ww1l4iC5nKjWG{I<*4U{`4l(~4nDO^i z73&Hp475z%=IP!r3<}_fWHK7pYXU;YYX?mnPHt6V?6dqOus3M(jaG(dF+;^(+&F&t zrDmRae`upmm(~MGb=8dZkEmrEZk8U+(rCoHa!Gy=@ybSG)BFpU*F$?Bl&s$=&Kne` zfG)HGJzZ&wuBw9B+*&znSZYOD#9n0{)RC&4sC*cy-4c9R-aHLd%HH~x@RO$Q#r;w0 z)l{;3f>5xmpm@QOqY8d}+j1-w^0$T|?gy=TdLR;%F27F0@_jmXRn%Xg7-Dx(osh1^ z*kxG7>5F)Kyt!JYRDTfXI;39O83JQ!xcy4w{S6JWqii?H$BG{EcOC00UBj(QyR>np$A#_imsTE0Vp1xPN;Pp^&iaGWDfKOiT5!!zd@VOAw5CbAF3v z>t5YET5#*CpD`e5hlJRN0dn9ZZvCyK*jucAcx5BKTCGzNv*7lb+yjx=wuxEcgFezG zkIa$47Md!^HyhcMtBwQ86)9i>N_r#~Em-9GZ_GT}D*#HI%k;7Nm{{S5LBKk`uV9%! zaqdi*wm+N4wTmA-59ghWH8KN`$R_=Y#e_QcS*-eUrs9I{?_K#XU*I_S#;U6^N z_AeF63CL*$;mcgwT(J=KB#^pZSZ_5>nH7iypWR8)%nUYEB~H$hv16Ap%;_*a-N!z> z&7ae7nmrB1+q`X-8Q^xkLB)=xS5w1YCVc%_SkgZx57ZgTn$&(KMn(tZi!J~NC4)O< z38Qt6h(Ey>J)NOV5S@+06PfsNLnaHu6g2KI7cPzobfwH1(syq8q(T;w!5ketn?-8! z+1uwW0pM&V9>mTCBrs@|so3AUex8#h9WFFPYT6H`G5C9Iw}SM|1vpFxHK)Evwp@(F zI1(@z->v>7+neqyCre-bbJwr(Fg)B*)enzzkmK$$p;p@Yi8j=U=r`SNsB??1jfVuJ z`ydU6PARp0Jm__ZGBnw|K!+) zlJO0leYDnHu-)+jLD!;w!oLCm^NhWkol#1-mUV*bQjq^Zxd2{#ov-&ne(M^8eSbNe zlw+Yk_Lk3_j(0ETAZ#!;B+Dbhg8evm%36~`zcC1<@ri>t3YWg^mTx*Yf6^#qKLLb4 zgHgo?Z?-GeXg1ao5s(_ZQx$5_-A0+e2OSQ*WS-98DkxM<9 zIEqE!@Do#O_D9t!1&>`K*`$;F_5uGW_0W>0v<eS*f-*iYv$;{Ha)9 zQRsl4P=^RrvJl)mEYt{36A;Gr4r`lJnI2h4&op9j@I{fSN`MZ4)WqTgTFch)EnXt@ zLz-94(SM-eR^7u%O?2;P;1ZH^fk2$xzDbH$Ri}9WQ!5z6lv(KUeH65M5Od{61^N;s z?09>sRquHX#g8)FN?JZs*^Ewn7?aPWz)5mI(f;$X(2_ZgoX-!zVE?T$ak){qfs!4x z7VYzKe{(nZC`FfEE))K&;NKWX^J5)->^%o*J*!Xg46dVjn84D5LCh3M&>#sKSNyz? zU~^Z$n)1W^#UQ?4JzH}?b_a|JSK{pqyS){%V``3wA{uboI$c}VD?rCv)3vl=mNxGh zRj@wdItEr4>4-AH!_+NspX59bc8vW&<0T{1Ov1nvd<&7vy3+sr<~z=XN$*o!95QsF zWK@%A3XJfJ&lc5V!#OhOG3I?#u`O!7p+fIZ;f)%*-lVffbypKzAnM}T(5=8(W9K5spQT{6AjC`4_Ra;-!WgBOR zK3Kx!$vpRcab@-REOZ<|+R(yexmW``G~xdEjo$0eZ24z*i+mdgXpKli4=Ake~$Y!>y7p9ImnybB;H5CsX+m5pJndV^Ytf!R@M;sRINFh!xptg2OESSTH`pw8r!!BXDHLjM!_lZk_5P-xg%_rJH)$H z`w>%gb{SS^^DJgzzxB6Izd$>cCTSx$N^>KAL_CAd@`rQA*X4{9;M3LL)A^wk35q8e zluiCg+cuuedN%C!eIVIsDYh5-WG#1xG0UTCZcdwbRm{4;>u<5TX@^m$Zo%6Fk%)VF zeuUIrj)>G?ZvU>{+MWbL27B~zh(Th*PW}SE1=0fVzQ*HIXua-SmpqFpj}{+Zg2qf}EkIzqBuU7c?<0#lED&Py9VN=@)Ssi|i=Wkrzi1E>C9h0!?jH z4!0WUU%%>S(dYS5$%AVxZfM#6z4v(NXvgnZur8z3Kl)|7!gOUXhHizBlsI4QS?ONf!}ei8 zF-E1ia$A7(9mY;WjdbhHxr;-789t9P5fGH!W;-i)| za5$#?pSsA8oqTGUzbRH~4O{XK+$CEvkch|ENb0v3auE;r&`TA92mw9(E~;UDepQ?Q zK;@9)jY3Tw`1z2o{Cw-nJiXF%^}jKRYeE!zu!aNNi5iXLGuG0- z#kG$y+JA*AUFDBT;SUXX-W)MC!||zG&6)h_%r9pwqIb|ErvhrLK;6CP7ckem+}9DNs5)t8+Nlwk$6D3H zNHDi|kF7GRv7|KH&X@J3JlzIy!t0>SB~AVBF9yisa9r2?>Z#0wY|9kdf_zI5gTL3T zx|d)MCZptN?o6!dy4s(2dXn-rpkhD5o*9nUx0j}j?qP!l35+b>u@@HTg<#3UM>NwnF?g9%AE1MGs8{5yN=qw zzKSMy0*&ycYm!ThnpJAZ4ga+>s03?X(I~|DNTe>&;_VJHn_!r;gq^lwG+R*c;A0i> z2+iG_RG*f@2)QP1nCxI315EiOgPP&NAk4kvJ5Ma7OAA4kWrr{?%IBuTp!u^~M1bK^ z84yw-2V%8Ieniw1d|lqm>|%|_xm6v@0WER~g!byY)Ic02p59|oIbK>a2JI(bv2kiX0DydaAran|oVnKtKbjE5GngDedGtK%1ko*M0;%b@q!J1^rWK z(`4Z{(*f(oo791b-?n*Xt=Yd(|Gw6Y^h4h0vM7vqlQlj`3LyGD-hto26XmOI$gUMX zBB}VO2m%{E^U!@I${!F{CGd&wwlB_myD^>?*{S>(S5XbH^m%Xk}oxIW6 zp~#coXGy(bcFE9#yp)~o7cv!)Lk7q>YVHSh}_}BD_cgp&HnkKl?1OH zj*%2x7(AMvR(iyJVVgt>=?ZO`f`8ALdw#zNBvl?q=M&t)8;OOAb}$?uIAlC%1;n)X zIdV2&_6ZAvNb2aeX{^5&VsG9uvfOaNrkjX|>nNgpb{HHIl7S}pyYSUueJ8Yb(A#cF zY-x=CUAN{En#qgo?Y9OX=F) zZfV{{C}pAIw-|2)YeX=wvMM{5qz3DG+63Va0e-K4@lQfm99lEH; ziLxLP?$>O7T!nLagC$B87Gitp(&3m6r1;D46wU#}ux=rYp?hQ=v;KyPs8r-$Rk0@i zzI3|ab{{0e$1aFGFGTO;{|N)KdgUZTun`#7kuX%k$2vXuQr4$F0jpMzZXfY1FZ*Oq z1sM)~G_HjLBh&i+>kO{9SvfJ2H6BQp51q{nU9_2>C|HlCJP_6&y@S~cR-NxBq?sU} zNNjy7`+E$R9p#(7!0I;5c*kRULtU~hxW8SVIo{{${ksHm4r9^AVAkxv)pNjBvI{$n z(sWJicyRJ|eKoqdWA<_1gJ9ZE3F$teW0_Wmi*iw3=9Cw*=T3#X1mellt5d(~Or2Q#U|=X3UO4qb%D^GuABv(t`UShd)9-6ew6?dT0mZauQL zIPJTG49=r#T{o3XB*s_>@XLV=@OiZEu2<`yiuG|jYDJMcx=^QiGo`p^oB(s1UI2f`Or_tBli3U#cEFWXAh!6Xk96M4kbtxPc z1xT&mnUvdrd@pVv&G)15v0^Y7(^sjTO?CLu=?8W9Yi3C=4r=l%W?<2N$!1lx;%CUx zDKxg2x+N`VF3mhAEJNvMp>SNZ7sUH$r_NKf2ElxfNElxJB^1{q^JB+;2hv!65t}ZE zqkRy2Oh6X$nj`b&-#YQZC*4-n?RIO?KeGO<^Sqyw#X7e1s`>~R?GXTLRdF5c}v0=Etkj<~WGU zf3zQ}Mq*zK7NDfGoS+dBbvkL`Uv55Ewjrj2%7oH{lJn}yd?N6umd%@1ft1ga` zN;os=ZAwvF59gl}7*L!K{k|pKsscUS%TG2fj@XM|T9Z*75O4mPTX?WG%U^9IeyV!< zN;H2RFLg<9QP_#TyorAREnII&dEIYPoE*W&MXI7nm*svFl)%~xk#Y>@Jr9oRPUjnf zfoGS>;Xh}kfR!I&aTM4-LS*;P@#TS4wjS4*%qlT!O6W@@t33RlhAhkaVgs` z3%yNG^xR$={^wTK*ze;n+YObKq=e?AZF??a0P5&S0 zlgVX9hpcGeq#*%EEry0^+z9a(s1L2Ky|R6ZrygNWnkf85CW?Z*?3qM(`|yOh}2|>13}1K22U7zL&+gtY`(dc-QuEd1LG_c3 zqg)`Rb!b>OA_HD8)w**Pi@G?+va+UMMz?k%IBUpIIDxBq=0g=6c6;9`lvs}iQb=qU z(`!C_!x#ib_BKkNp}+^<=Nf3m#cP3j(>~be=O3>JM5*>f^l zMa^^}@aM?ARu%xSK`o16%;?{V7uT0H`fA>FX#nheCTT`2^S=jX3_;|kH}wi}Xe~zi zgwQlE3T7X76#`{v|2H2SCM039@-!K!K@s_Wh|Sh?cm*>=W`s4HU2BqK^xY8c=kN;s3~UHDz7_Q+$ROg zehOGUkv&z~;>v${ra5;DyMBK~A)gdkKs5}O)f)C}{SQQ_C<_@Q7fWtP`#IrR^zb$= z)b|*C(3nGwF=bGw;dnr+pxQ}s2Z~DfdY0Bac!nK{TZb+a*_Q;ij?C5sKshss|2W?E ze@bHC>N)O#EvbiEThjg0zRnbQx8R9X_&{-Q8kX3p{x}Uutg&h4ujkcc^gHh3j0cyq zZ&5!T4vOt}HD?ri*_<=U@&cisy}k=8NJUvd-r)yHV`;+^6}OawG&LXj>i3c-@%2_g zQI^%2zvf)5<#SmUef$OWtCH0T#w|}`I}vVp`IDYdO2@dEjRbca&FFnIl4(>_QEDH= z&dbKyQ55+a&Fz7}pP}Q&{f&dhD{o5Z&HGWUGA$?JZXsT=ro<_60nK2xqa6S}~>9mKF+d;7(R$169806?VUF`OZ#QT~tlD4Iu76BcF} z?*J==HzM}&z2P?#4ca>`T~uaLP7I6Zf1o!wzfVlEM7#wERCHutN@p~MR;&^CqhB`w zqD<_sJ~1CYNLt{b@QeZ@=X>T%j@&)C0#g_YT4URT?%toK>yOO%u88mzWl z3iXY>9wgER;Zp{}GfB@4hA}yMnoYQhNTEs=Y}RZf=ByG(B_7GLF@|Qs{sXZKU)W4a z>h{^F-u4?Re5-_8X)s&Z0&(^~JF-2)^zjOj-R)Plk|x>w(PFH{6RtL|04foFK87LE z&k1dobR!ZWcXx&jXf~#6>D2>gI|l@6 zLO!<9B8jfng#HUr1U?xLY#;m2bd|-!zf9wd5W_~uCjTDRA9c@>jWe!VZ9v{ z!%a)Z1V37ObEhK3F_>TE+VP7N%~eb*S?B^K9I@{Vf3PieQ|xE->{cAHv! z)wrFvXGfm?kC$v>Z$+iCA67cFaaW{S+3OLB@fN$ z`2V2oA3_sHIT%Ray6|KKKF@|b0r~PfZ4m5$BG24-MiuIQ>fY`Wzv|59qlg>vj6l8} zulQrC+MKXraUN2kVVvJdED_>>V+BsznX^$HajSxfP=xhFJ%$77@9>t9(&i-3RZ-j^BRzeY9(f-}C{67!4=n{Gu;{25eUp52sw04x?MEk+O z&etW+`J1G}M4*uk-bU7zn?hPK$Vx*uXroa52Eby}|9$QN61{f8_Re$m_loNd`FVL>=7;^g%1W`D9FyY661Ka1yX;=MZX10OfT6<5~ty&;A_Sv`O zF8)-DfBW6YGflW7Y?fMLztP@t3JkxAp95*M*E}f^z+qR9OkIF-pUKSFeGLZpjb7&g zx>A})O#1E&E_iPV%5Ea z^T}S^$u>gATa4=W51;a#*cVxzqslJ4I0r?dQBC~H-g7<1zt#=2`f|)>$iyztdS1

gU&xRIWUj(BnAANA?#8oNNjMom#)b`WX)q zb+$j7mT3mIswxL)>N zq*mchl)zA#UcSSQcxY}&$6aRG!MEK#9pu$c_H-N4q|ypZqdwFj}s?v2Bk*^xUv86 zoQ|>7#Ak0v0{=gF$(>wVk1t?J^q)%5Dw|v@Wnf*v^VhQf3K;>V-$^{&iLFWrF^4ZA zmOsUx3{INHfT^U_JH&~i@TQYz?2`m~&9{eS&TO`w$fP&>I-`wUcGlj@(^)3CgOGhLl;8?WKGYiPt%1-BM&*O|6eP@d7#Er_( z`q+V;#Ak0C3t#tS9>j`Btq`-Ao|JANw~KazzYW7c|D4$zKVznO_O@B+EW#qd>>Hr+ zjs}9Gezydt;bKhOjpM90q5$lZI$n#jr0!S!B%Jf@%gDWy$3L2WoLik6{IUyTm;PqB z(Mq=qKT(hnt@#hMXSX)6Z%YW%*4A1eK{n}HFd0(9WCd5(WW3cr{Z&2o+m?iZ?DUhN zG%;LlMRG074%vh4{>b9L&D_d0)(bkt$umk7(?k`B7MSo1F3H3qDuKZ_xMnjYgHOM4 z0jpXbp=lSyEw#BVhl?+&Xt+5#;dAekDSZ&zuxJby1o)R^RR0d0Lt{QjP?o5$cwodu zciKB529s-v7R1Z>G@cXGin%LvYm!ZYskU2?ZdmeghRcM@zo}I%O>9@%ez;r3oot?C z3i}A0-r=UTvnbS^CEPN+x`=!QHs`bTQ0MYoUbT9{ss*VdKIh!CLXp|y7=!Ebwq^J{ z5weYpvcbEY;0n8^1_Vl%%os|)A67x`H}!pNPZeZd-ZY6?9Xj{EK4>g?0>BMBs26F; z_9JI9E)Bm=KY>Eo$%K*o%4K{%g0yfVnj=C~8j|P+#qPD;9KMgpR{gf)qiQd?Af6ll+|nXG$Rwa0GT%r0#+Ai8IpJ5LS-9TB=ef|exMKH zlO9Pn2rGdY>t6unPEIE^1MosPA!n#;CDZxz2k*|K*_If!=DIAjYJU>Rj!lKB^*M(=o07unr^2~S*@33CLoGzuj0rH#&`_CFX83#DC z*M+-+JxFSb7llP4^oYbl^L2n_(N&{`F-oT|7L6^HwW9_U*^*Dy_Qwcae|aQ;zlkNL z4^ev{vKE18mFjmMmv{kFB#SbV(%7Xnv`G|bSlqZr7tq3`Ph|#p7?XD*G^u9r5SMD* zNX`JMP8)^a_(MGzttM9HCxxR+hO%x6x^o{Q43$MkA`7eI*rbUkr2zmYy+=fyM8}fh ztbEHhT+hzMM?y+VrHTvIk6lyR=;Imi?h-2Z`4O{*N(8A$;wtdYLsS(F5~&6K+94jg zS$o8wlv5Q8!l4d-me0r(_)J~rO#6o~f)KYiazTuARY0D^y@I`M+UCteDpS=8gNpJG z%`o5%k?X0uP4p%C)4XsBgUM&s6llmtcL#{OrEH_DZz*wpAl=`X!S7srYHSBvY)ngF z=u!cM5|S}m&i8qlLO22r9nyD^jS(}jONp35vP*27G>9`d4FgcqE&h1muUN#hB^IrC z^oYFG1;6|{S~&Rec5wUiTH3B>3XTZ91h0ID83;?Q*eTfBk~_5Rd0NaeJ9!X(t##>y zund8J7hM6(ZYq+=QN%gIT#LbRmUHX#(ClOK8G`am=yh{_jJIICs5i{mpo;JGrLE`I z$<_|6-7829cR$$5ujZqQcY7^K+}$nj?}Vt!1hzxMVe$Rj(s^0UBISu~aE{t<-`(>}+mpa>wBG1!$EW8{py)M|$F03veXq~Z3 zuV>A32J?*NSdG%%Iht($t;KV)ZLevCyor!{62oj3oK+i~S-j}wQ5 zi6U;TT$}9T33S~3Th=zf(-yZ(OxJ0nEzazd6#i!6}y;k6NcBn)9gk&8D;tJ6s>m67QHaqs1d00*;$}%}bcY{63NF{bO;$xp26O!^TUg0xF3`N+6{~$=g?$R9vdC^l`mg zXrnhtA43F0=0HP!a!dZ+i+y_=Xu39j9R&v;XA;Too&kFvhVUIsj#dwT^&w6 zc4-!2x!w0{zVB-SB&?^eh9ID5R=%Dj(|~bU0nIFNsd?(52-I3|A$b;;y7v8{TrYp^ zbOvB>A(>IAfPPtlpq=-I44)2~j;~Ox@HgmJ%boI~W+^R`bOga0Hk`&s^?By59bl`2#>)7QJ!_VZo1VK*QNZeo6R(b7C zda6nLub)#8RV(gGsmOk057u!gx_`=Mb5c_70_1NGDKiyXJc@(W0gGEC=8R4*cz46B z(__>G;Q~zeA~753eKw{_<{_VsGC;g*O6K0MOwA^qYnm8Wzh*9ba_5&KLuz1-PYIB1 zgzo3AQF#Z@g!+X+&~!_d$FY784YYsJu(YewhWFKl>Hj)94@av0|Bqi=w(P81D6W+< zBI}Zok&A2ZaU}`iW?dt)GqXa-ye^Sz->mGJc}ZNdXZBv7-}(Oj1J}K0ykD>9^YO6% z4^*E_es30=@q~P@JcF)#c2YAEkPFc$sovTVy(Myk2^p@G2gkjD1TroZSO`Ba+GHMc zngO~~eF-?4pCepfC0x8UM66dK;g;`z=Os#t66i#^M}NHeP+R4UBY%ql?tjGMT*;Ip zF1-)%#;8~<);+5|k>gi4gM7KB6ft33pV9G5E$$neI={38rP!VOej=?x#vIwetGBoU z>~Tmr4e{uZm}Q#$_Zs`*)s+t%>5SZl74n$P(PK{uRP`AE?KA?v))HRz886eW!+|*c1IZ zh$l(EW5$`{qkNVR_f)h_{O~xE>!+Eb?Y&d7QQnWg9n6xAYMTjp#tmCNd-!1! zbxeHRzIdJpjYxhHS3M5o5m{(P6!F1el@}3chFG22uDDL5+r{;;hFRTD7pn_Qxo5E% zwzMzg67?nRZV@mAWv4jTCKCQt6O}=b6LvLUr!z+9O$0Gq2&=J}7=l&;#p&Dr1F@4@ zPD6Xb{$?v6$$yCJazO;oU-6U`_@l zG06`MZp<>s%{liJ)Pw_Kwxe=ozbzUR!eJy_lV-s1sj3 z#uXPAC+z9C>`sf6*#9&{YA=K^zs)eG5-D`V4<{g`l3FpG)c?ym^?xxVVYn>aN8sIi zU=fktTxYX-`+GwMXEqO_%_=G-`cHi~XCj2~sAF^_HXDz4wm^!o;E5e?-z$8tPgIFq z=iv!a)Q4E7^U6l7x1^svaYDUkK5-Zx9Y6Z6!dP&y`Qzh2Bm)s#?BdZ;j!_A(UsqNkZIR5C4ZqS0bZ+l z_JQ6;*ctw$3QQk<55rpbwCL}nbcs6PWT01Ul`XW+ZeLOyL-79h+|ay5@UIIHResxa)B7dGqI@$JgL`dOQ}d%NLkLB^k2rEWzYQ;UVo|J=Wa zE=QROk39KIJAgRg4xKuOFs>?=$)pBqZ50wZ|0;`Q>Kvo!cv{JgGA|<;;^P!i+*qDG z%QiIg3>x?{ZoOU`)iOKUvPqky|J}6m>w=4vNB0Xp>NNv_Kzd4wv!%y<4n+yd_1L11 zKBF4!t=QHt#w?GAvBgtiIL=G7<7GQ75!t_A8xy;@jOwFyR=XK*&}vy-V#JP|N-p)c zcNc>Ek8M|M!fU1wyrY%?(1OMyKTWP4`CRsjlDorxB=pLruv9|KX9AUQlo82C}3m7t0AdAtT<$zo>h>9!5+Uj zwPvC&L=Pj^7vQL3t9snwwD$sPpJ24IPLliCO^?AZh@0Ds#&(AK8OqR*_Io_W^(HBm z{c-DW^tD`>uf0+Vi~_72xLryM3@lW~Gh_xlVm@ z5UMokTF~%nK9iL5VSsMx4A()js*yYX*8Xj;JEmay6|9UII+3nqRR;iL?Nbt;>_l4% ze+uf;eZ2Q8u|SXDFE2pfMQY!>WZg>N&TJrZ`e418c~1P-0AE?4aT_i0s8J(UC=nbL z#{pG{OywIm(_Yyqm>qD^YZCx4QIM5QlnjEbuAQn=20?j65Hp(zWc;z~$YaCSb~w7q zHYlE{dYkGJNx5y(w+}ymf+y2p)A3X(O1;AZm$Kk8&t+hfB95)-h%M7Vj>R;c#FvFj zGKFDx)xaDAjRM}lWc1qvEvUEq3=d$k0 zf6ZKEq1&e%k(8b$b$R|n;aAjbD!;Rj>W|$%(s%R5GS36g^UlL8&Dy^yb|tD7ZikQ@ zw2Y?Oa_KpS+EUpBfRo14^ncPb1*S?TaWeM^?}YIKDhe0$`+u|t|7 z?+E^9wpERh0hnTt4WEd>5}N_m2ZkU;HeOqnmtv_>h$gTlz93Ee#rH5day%fa3twIOjMy9mYQ0=< zFET|@d57Z%kdOmibge3Y#3|yKmt{e2Q8pi2k?f-=3lMe9UOt)K57ha(()%#d3 zJy4`5*%3kJ*O1M7SBWXkLiqDh06L*cgTYw7?a-qBDZ9<%_g%#?rDEh%00X}Zx*m$u?LJ1uZJTTyWi)OP8ri9WIK`J=iRB;(DF`KKy6wPHmWn z`>36ML{lpB&_v|$Kl7kqzv2ng*Usg)1)xg4zeQ30HUPw46-Vcfq44L0C2jJqfGWZ!hI@0=$APV z9kQ(*(eS2IMB_=4JwjDAWQ+lOhPuD$^difMLmEuaTFvl` z%H!>I$V?wU<9~AndDQ)vP1-nE3jSia`BNeHi277HA9?p)`Nr#^abmjlXwc$QOq+XQ zvFDlb`9~FqX@G9>MPcy6NQDLBtE5${gU=iJrd!49JXPBtE$N?qpL%Ayy-@p%Q#%lT z^)N!``^AHNBEQ{RV$wAbj<{?eGZCh=$rx;3Q;`aW4u+zx16KipnP8Ky03i&dY zwMFCSV(z|{eUWiA!Y0e*HylzhlqFcB55v1q(r=kG2Y^J9|V&KQ>B1@_AYdPEaRTI{cqih12MN$o{()C*)h_Np{j4-1$$d!)Vw zXHd-b&NpUnhPt^YPO3o1Ratcd`qlmbwgi9m-!O_uPPfv>!5dB`g~TGRQ4HOSznFWo zfb7<<=RS}-eUa*ca!uVn8ghW9?@-|aBb;vQVaGP{j&5aM71BuhZ@a@I`!kGUNB-twndTj%J)(MD_Zy5uyN(PwP=#UKjMiWIXv3{(Y_Mw` zr5i-OHzsDU{92{B?EpnYfp-tVAk*6KNv8}WEDJMA4 zQ8z^n7(SoC<9_X@itPg75T(!A1?gu5Z1y=jjJ29|C-i+l!wjW-UT4xlyK=P#@{XxL z!1U$+7l3%XIB_AdjeAe*-ki=ObU)vpk6X5;5-EA^T(ZExFU~ExdN%*gy8lV-TcJP_ z_Vx*{kgzgqx0;)JpLWVOEvD@_KeNi`2qTWqIZmIk{#ECG82)rHiRUDQ^}eaX2~_9P zYT$W=rMdji-{;{|`T?}`2PN%*m4hNGl#2n{Kfo3rJKec3W-9>%F8wyYwx;Pz45ug* zX|rG-{Ev~Oyt8;7&PY)YJeumc2wno`v0#4FcFgHs!z#%s_IL~misckfR|}3y-TJ#9 zUfX0Q!qYe~jH|qVS>ZiN7ppgeYnK8VVGij7l>cz)!9f1*ET$>@-YfY6;gw0t#zq^9 zXw8bWDSE`g*%hCfjuF=v&8<}U$9R`$U~a`YaYY#iol#ReKQS{Jwb5w9?>#=GYj$h5 zI+U>yZ{J5{LszRpTM{y*U|vi6tvzZtBH~$A>bSzxsV-xB=BoFIHBk(?{=AWtG7B3A zL11h?U3rt%VE+%WU%lK5b`K)F0@WH9zeq^;kCaI6I%%$Dky~R=Q!19od z5ww^D=F78_=g#W@RSl+%`W~0Yh|}#`EkEYz<&*g2DDv-49{8yZnR?hvCKZk9ixVL3 zH7G~Tx^;_VGcWLIQQ~3UZ{5gejm2kn+oKW<3nbKd#fPW@W3*S{XG_v`r`E3!ZvBuDKf zU)MK+;+F~LTfh2ew*x0^-}Sp!Y{mrFDjWhaVE&io1frvc8t_b^;J4{)K?XN>-xqI+ zk{{6%xCf8ncMBt_p4?Hv0tu%NH?Ea{>0 z-sKs-qE*4EjpbL;YH1!{MU%ws3zpj4+DgHaYi$iF9deqQRi343LsA<@q*IbEAaY{Q z8iyo4+P1@2BfP-Qb`|OXG#x>5DwS+WEw}0Z zXx)Nm?+z&nwXBO>b12*;OCLyZTn7Jvvz?f;{yu^7Nk7FQ(zE0tL`<1doDcsmW0j6%dXMt;Qj$W;B;OP^kzl3Q36YE=E z1-p*q`B#@19k$5x{NBeRYi8z{>Dc}Z)=`5FPYDdAC2KBLI-#Eb6+Y!RSo`IGM=kL0 zQvayu$XIv+)yoQ`3eSEbrs(*%IGopR?-a_1d=dIPm6LJkE?KwfPTuuwOkv}@mq2L~ zOnvpj{GhVSV@DifL2|ASYyem-C6>#~vK3O8fwcW2ja3Hf7N6%1fg>E>|F^m^0jD>_ z+Ue#@!aD|PSJyiO1xP9VZf%#6WjwWe?(kLFwca~PvGmNoZ^RR-;A1@5RdDN7)ZDrV zfLpKy02ND}Vx}yA(8atbl@en5!dDz19sGOhIngguu|Mn2=H|N;fn3LwK?o-1d-C6N;o2W$-PlWATh@XH2uf?!t?*}P^ zNB0Jnc?9%4OBao9dJrDo`zSpn_SByv>9RUNFD|7>iE5+0Fh}5CAVUC39Av1MQ6)S{ zxrMZ0*_bE;m7*Znyad8+mz`IY&(?}_~6 z13`OT7M0d)Sv^EI4=oi{s(2;QrMU1{q{f=z42&GG7}sx-jUihoMUL`1I(s zz6~wXi|MnKQYe=#F&Ckzixz*)^A8U)Y{U0~ftYcTOODL#gtYvy(WNMUkV(R$S|cay z@$D^07qOyU_AGo09X!3FUp{d->@*5Xq z{E<(eqcaQ-OzdVHVA{mtB2~5$7~ThAas*eajI8Z9tEO~B4TfJrWPp?A80o-*v4pR; zpV|)svRXzhsbtjEZLnr+>43_5XIf{;7rvb@5MQ1?;2f5IFYzE`W#I&Np6^*{9DwdH zfg4YJ8O6An5Hy4Pj6&Exx`j!}C`^WROJ)fe^XPM7(F`bp9ckSUFHJi4(8vG;dB+8m z9m%HKOkEHK@{BEb15`32D-pBoJyq#8X|GbnQbjuTd9N_|DAe5d_n?+Np`_T=udSv`d!1<_UQZ5itk zUXdaY6}#cXhVe{Vb8YOP^vD;Hs6{KhAT*3SxWHXLV>Iy;8jKvJ( z{WqQlvcZrX%X7?Q(ws}Mmn}Yl)jS&S08!qh9TudnU zpDokXPF~}s9kgbH5}l=j0Wfp@0fB}GCpyEe-l`^Bl(t)peGg3BHoPcsWU=F8%;P#L zRT=UlUb~Le$-sNxm)#7V;pT~;Ryc=v*g*3699ZTy7maukEnzCGTPE9xDUM~?uXtk% z*BET1a4r^=4E6EA_E4*LVB>IKUAvjz4(B&K&wvW#;vbf&XoYG$denr2fGMM2?u14H zP10KyBY63M%A95%w&>+WidW&8iitG<6n#9sZnC{iKEdK!)l^x9%kbDtX~qpccY%HB z23>aU-MW&>-H1?`RImeCkCd^A`4#?aP@cU(KTyg_W?Rb#t^8;nSC>&9#RJ0aIdg6d$4;fn!zRZaT$ zcgdgN$JO|gdyXnI94oS|?=Bi!Rv7wN@jtW3`xSe8cCyq1VW6P={ax6!P2`aM3ph~H zb&W7ajlNLOpSD;KC>Nmaz(zvdy?aFWV(OfDkzSSQ0UvlgHBy0_mAD+1n8G(C#U?vaNR?H4&Y7iuMb6gV@4Ny(k4^_q1Nd0??VTVf~12VOUc8z{k(cyLIk@Q8b4iFyH zBP9Oa;$&vEWE|xZ@;ayL&Q26hVO?uZ=HXWGQSR>J*v!dJQ6!9-Ey0C~2&iB3xzb;z z$`VY`)qmU?-U{){z~a`H`jgWWo)JxEfCMtnteh8CD`Me$8_eTiKq{=MM2Lwy?DtcR zrD*BzXyl%F%7hzbk&wDIXvfWf1YoD4vjKu&Qw{IsnP5u#lmAr^3Y|+|Mg{05!nm%n zxsi^n!5G_re#-7ABx+#Rm@M4ryGBvJ_D~vcZ)*JB&(#`ny6$mARB)Yf%k7}ob0T?f zM2~fNWlUA!KW=r$*lPsjJw0l06$a6MW7Cg)C_O-cK|H$OLOymCnBXnz3#VU2fd-hk zMv~pO14lHkq=i|o8ecjLx&Eot${$EzKR9|;&yFdk6;BQ0x{0wsR%|xReDfe&yb9k~ z=mJNx$5wd5+CCBh&00e-S8&CERyju)5PVbvZ(jn0-n6F(!{=VB|ADGp^MC}YjS$1H z^Q^B-q7AS4{ar&*2D@x}v4M>cMGgR8$f-U7&Shor_iR2-(Xh5NU)^`T^7^$dyv_Z3Ci zOI`A@@|gNDA&R|nb;_^ZSp|ur{IeI&EgNQK{4*MGn|J>z+T8+~GHKSK9r{+mGE3q% z@5_}^ZyrQiD}ss3Lcg*2X`)rx%n&E;M+5+0!FGkZch4Y~rQ_gfqFE=96qt4BD&2gy znzyW-4*Oy>2rLu1{UP@aR+LB~Q53w-{JbGa-(k%7Gpd$D8ZE@G8*zAabx-LW%x#G8 zBbQ4(-wY(vWXPqywLdee()`FGo;T$PqV^iSvpdNkUB3;ysnEHeJp4+u!(#u){t!u% z4WQ;rscl}YOFy?I+$G^nESU-re(U@caW@vg@R7^3zrHV)lgR>p#Y!Nf4GHRtTD?nB zCq+3kj|JWF{t)Nx+i&T7IsMpeog*!)D=BQD$9or3{o~_yR9ZD_-8wrvA42*5Ft!H> zD@tkd!tWeXbnYVDU3U?Okx}>ZUHF@)N+NsmA~9uGzgT{*ukMHoiHqZwpG;&;@C?|0 z2Ub+jlDj1rCh8m1ccahDOk(H89hvr2g3R=Hn^OXEVe7mREN*HV@fHN~kX>)13wNZ( zGMYQgTgR*Bp4eQBR?hT?D=hUeMlztCuj7W9=$z8*->FXENQ06$DO1{WyJ-n=oY1+q zKRB(l~6D^qk%cV_}0$rv20s6U-2xRA|vfHw&>g5)`|LxLL%R(M5`1@ zP>E|AJky)R(f6&66O2DMc7_W6_m5isg3I*ohk@J6?jJa$yGM}&AMKTj{^a*8tll4p zylon3|M7T#us(HR7(w)zauud@P!{cgP*3>f7Lp!V%tCa2paxP3*VonCi`T|4_%gR< zmcF7BYjy}%HUFGSF~mi8mr+;e9c)kd_Ny{q8=HPflJ&S6GsgYb`53*<2M@olOb5oC z!6&RSs3AY=An`CB!e`{CU4tV zuY=n>!pS@^^UTJHF=wfpuMmvB_UiNiQkc`a9%}wI;y2Kip zW$adDAWC9ZckP5PMl2&iU=>5PXKhc#zuHh`R&*7)WC|7kOgVB$kNkVCjE z==WcSkNV}jd~viWKJjA>o-Y&R+vqU5GdPilDu}s9u|GkAYbZr*20_B>?RoX1lw&jA zCOJ$m9_X$W>D1@vb&z;d1U08VxIjKQSM}QrJ-sNlkVDh7S92$dWoj#K+L>N!WD>=V z)IVarS}$*~>m!vpfzMG0P+4YCz%93vyDNEzvPbFgzoWPYPT-MKvSs!)Z z@I%=!4RqLL2{SG)nXI7~-Wp@F^Auw-pvdhXBXcI5;Ml9v_xB6 zhj9t?o1qaTcSKGvzWMp}V70HrmZm{%2R{eOuLDFaUz)>dv~@1?p57#VHRNhe_2eDA zEIo(-{#bUBF|qQOikp%lS4GBNLnPLl6oEb1k)q`!vMji*WHbew{ORCWVN#XCNTRB0 z06%BXDA~jNZ{Y;!tXn}%$DiI?b;)5{D&FUMB*B6J^uoFa6>e##lI_2pIEhaMHAI< z0`JjHp`9=n3ynNP3Dl^Iac02YE8Uj#fmVjco|h0*R$rcq{P+m8tY6xFr38~YHsHR& zBzW70$8nRb4Dsua_lYQyCE~U}K7`ecPZQfL))~@o0gBMNe^{~@R=#PDk8BrTC06Ww zyjgFZsX|st6t~1qBXtJ!99eA^H_>)J2?)^giQ$U$yPc3f_PrxOuNpXtJk`48`SAJ^ z{j`gPqTx=p-?1{sPWaDR{>Ok-k}#rS!Z?l;G2g5Tk^I2Em`Gms9_e2#~8EMGdoc{s($+TjZ{3 zf-Ekk#OQ0PmepNGv&m9mI7_@GBj;^BOxEtTs`S4dS`fp+UfXBfws=r4DBSL5lX7T? zy9P2y7_(SdkLkJnT}bTb)ZjjsLuaM(kFz=91Tbh}#!k^v1{z5Ca7GdD7*-gI%+(~6=`g%WvD zD$1B&+>seEe*#xto=KUuyk@#i9e&0z)H{QuywhEpZ{&uS-Pb%|qI1U{@c#4nofQ66 zZII9EC{0CkPw+!Ty?_^<&M)uZ!tZ_d_X_D_T>$HO{<3U?#?$iBl)`rV>-AS9J%ift zA(#za0EEbI6WvdJr0lt^U^JLMs&}j<#+syRcK)Ch+aN#D2c=z6MPh zGNW3)eQ3$MPcJ3h2seKEc_(?zvNW8whyPB}!SG(eGx=$!gwK$wRfbzp0P&<_2|^m% zfIG=euFziD4?d-uy7!!`QpS*{S4oRH{r?DJeYla+NZ$Fd)NzBY-$(is@WJSU zv*h?{VM7zaEtgvJ!QhBUGx5ZMRjpm{4#BPA43luyOMH?g_8+Lw%i5g<2-Vq0hOMs17GrqxH~Y>^ z+}LR5s8-Z2#Ep1Ml4S;s6Ef9L%|V|YyoF@#P01G&c>dzv`w(>y)!a5tBgzDF^|RiZvr9k0BQvifZ7kf`0H;khL(u>RVEpfqwTO#kl7n#-3#EI0dvTHj!Q1S7wlx! zQkol!DVJ>j1+yFwO6XHPGOir&Bek#YtnB4|V$NFRxvzA0HCC~ymMvG)RMA+>G|(8+ zzGl;BAlLM79=qGIaIVqiHSM`@H89@UxLhXR8O!F1#onTg4u3qVA@1$%3R;CHySA00aHYPlZ6Qa+J?-xJAuLe=56I% zlvoJ83>B*ekZ-UL0|Pi1^)tjS*95PqC0<&PM#l9}KeMqJ^I=#m7q3Ozv?JXPL=0O@ zaRpR{{xAbRAQu1GmpK9PTvTU8xE1!^&yEj3*{nFx1% zcV~s6iu6v*SXa%q4fDo#YJwd4bp8Y3No!+)_BMa@F;ZiFxn!O9K>6hWy`yNd1;oTZ z(Iy`f@tWaLLS-GpOn&H3GFy(ysP>$sH~3L!>lAkSajNd|X);`yQNmTCcKoYhG!oNl zBJfD|9tjJB+5R0;?7dBDd^j~U{eeDO;tX&Rx(XZ=AfT5^)Nb&U0# zZn;~1FOTA#MI>2oOn&WK+DIH+R0akMSWXQrqK-wOvFj`pwJYYWH!MowHN16O-uuGE zWE%RyU!*C;@eh4UI`_$x&tr}~77`!l4NSbA(o_T;V_!(L{#gEab;SCb2OaXap_L!(_ss6)88k>-lH%TIxW$VkPpnvt zlAa_jC_x#f65}K^^&ap91(Sz<2Z?s8iSm&>+R22aqHvh@~!nbLWEA z8x12$Vka!@jso)$}`bu3+v&!`n)LrPIx$&%(A|mOQR~w9_ol!%Bb} zhLCt${{r!7*`oTT4rJO31~i$l>unUDPt7=1ORu#a6}w#)yqsi~Ua!#OhaMLH)(^8u zvC=AvKM0;+UMfk&k0P&x2-naJpB*kQlv2eaYDG1p@U+=rTnyxMy>8= zG-MI{05!XOT7yYRW}KIGqI%nBCdWYy3lW+_EBZbYNu>6?St>UUO3=^I3d++AcCFyV1(R_mR-~4^5EOzaDB|m-r7vHgK)97#i8J{q3IJ{84#s zIwpVq1X>(u`sY!e=TZ^uYt?EshFTx}M#2C0+RuJ{~6}NY()7FSsoHrb3f*!{byxlZ&gObqo0U#fZq}Evxa*(IYZ@ zs|s~QZ!nFei?5763^%TEEccuo~CTnK>q)gFK(Wy`Z>*|n53xwv4zR_!j!HG zFgE!Xdb%~_+W-(d%f*nHb6z-2Il-Xl#60*k&_TZtBLAeh-4bCE+jEoiiXx;AV`X>@ zdzm@HR}?H^c$d-KtwN@=d>ws}U$0qP6i83q!R+y#KiQ4j_erqag(Yvwf$4_BJGM0$ zz5Fn)MDx@k_3`|A9pp1mgw+Lx;Wvg~^0Ubgp({vU5NW-2Uq~?n%Y#=YED*0ga^Q6P zL%;;M#0^3r3KMw46ejK%3oATkEjiOu*#}R=+ist71JnErw@`M=A5m7C>m|{ot8g(+ z$iEeG)&8)$n|ai!GF3m1#9AxW%w{BYu0re9sOWe=nX%Gh3Th%R;RODoPY<}NvbFI; zMER$Lr}f^_rOr0_G=Kl$Bmxdnh9K0(P>lMwTwo}=xY{ErAEHMBW!oJARVaf+uqhD8OSA)ML-yX<2mQJI z4T564a(s1(sew!{G#|ZNZL*d`*)9aQd|zz}dc0in**t0=r?#MLXf#Sw(IhA#O7I+3 z8xK1SH(%Qtt^T9pv=Dy+bx~T5Sj&trBe#{8j%JIaIn^;nUkC52IsWXjw%$~&j)Pfx zYPo9xEyNQIp61ly>rYZ%&|CC(NkBW)4n|`?@O_RpH|WPCnyH%fZ!y3F)ik(|==~G= zX&$v2;F;9;Efz@XGIO9_rQ;a==wF;#jNb^e1jTEDK_6X1f#;DS@I#g@*(fC%xZRe7 zlmxjWFu)fk3m$yUMs+2&Gwcg9dnrIZKRMZMS1j7+7|29K%qj9_$aJLcC4@TXb&;|H zOcBmCw0bmW?4oFLV_dB#(BGPl5zy}>7fr&Be?<88;NKPe2Xd=$9;~Pb#sddkKT7pB zm+Lh)mgByTJf3BKC>7LCP3IhB-k3N3!!KOg9hWnmT5i-w$rBKi!m+v|(++})2E=R8 zXWf*>qe*MVF2b$a*rivi{sSFCJVO(MA~RcAHUlIKxtYu46Ps1{w~M@tSHik667|BLyWlhE7!?*FzhJ z#Q>Q#k9B`g$|&eRkXFxM*j%daMV?cjqz2oYD5T4^=vPmUwLa|# zA2DbJ>QS!_^Da)5G=D`T1-DKu{`v06Y%$=(iURLdDflF@_|$w+kku5ekRD8{UlKzZ zUzYaDeBtWo5PG~JMt;CLpT&!8kL7ut-(MSWY&5e)Wk;K6Q03Brk$^%%5jf5($^Eu6W9rLz(;Y7vOUI@(^*Yh--al_^~|uf1okitjcuEMGiF( zXAl|P@H^GGLXcg6)ht1?>55X;)*NC3w&}N<=4Ac@xnua&O!U#sgqM&7OE`LpF04~T zuF{>lV^o>PZWV3WJf%e8-zfe@y2t@j9{kZ_l#GNif09Cqs=G|eW23a`C&8H>S9~le uJ}L=YxWtTZS8Gjelw^_&dQUsE$!3*r4LM)o!G5J|QgV - - - - - Bootstrap demo - - - - {% block content %}{% endblock content %} - - - + + + + +{% include "partials/head.html" %} + + + + {% include "partials/navbar.html" %} +

+ {% block content %}{% endblock %} +
+ {% include "partials/footer.html" %} + + + + {% block scripts2 %} + {% endblock scripts2 %} + + + \ No newline at end of file diff --git a/templates/partials/footer.html b/templates/partials/footer.html new file mode 100644 index 0000000..4879253 --- /dev/null +++ b/templates/partials/footer.html @@ -0,0 +1,5 @@ +
\ No newline at end of file diff --git a/templates/partials/head.html b/templates/partials/head.html new file mode 100644 index 0000000..99b1b2a --- /dev/null +++ b/templates/partials/head.html @@ -0,0 +1,17 @@ +{% load static %} + +{% block title %}PMB{% endblock %} + +{% block metaDescription %} +{% endblock %} + + + + + +{% block scriptHeader %} +{% endblock scriptHeader %} \ No newline at end of file diff --git a/templates/partials/navbar.html b/templates/partials/navbar.html new file mode 100644 index 0000000..200435d --- /dev/null +++ b/templates/partials/navbar.html @@ -0,0 +1,48 @@ +{% load static %} +
+ +
\ No newline at end of file From ae9f0fa2147d52afb12def10f94966ff52a7a65c Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 17 Nov 2023 20:48:16 +0100 Subject: [PATCH 16/56] more styling --- dumper/templates/dumper/index.html | 14 +++---- static/css/style.css | 62 ++++++++++++++++-------------- templates/partials/navbar.html | 4 +- 3 files changed, 43 insertions(+), 37 deletions(-) diff --git a/dumper/templates/dumper/index.html b/dumper/templates/dumper/index.html index ababd8e..b002e60 100644 --- a/dumper/templates/dumper/index.html +++ b/dumper/templates/dumper/index.html @@ -5,10 +5,10 @@ @@ -74,7 +74,7 @@

Institutionen

-

Uris

+

{{ uri_count }} Uris

Some representative placeholder content for the three columns of text below the carousel. This is the first column.

diff --git a/dumper/urls.py b/dumper/urls.py index 2948a80..2ac2dc0 100644 --- a/dumper/urls.py +++ b/dumper/urls.py @@ -3,6 +3,8 @@ from dumper.views import HomePageView +app_name = "dumper" + urlpatterns = [ path('', HomePageView.as_view(), name='home'), ] diff --git a/dumper/views.py b/dumper/views.py index e9c6367..fd3adc4 100644 --- a/dumper/views.py +++ b/dumper/views.py @@ -1,6 +1,23 @@ from django.views.generic.base import TemplateView - +from apis_core.apis_entities.models import ( + Person, + Place, + Event, + Work, + Institution +) +from apis_core.apis_metainfo.models import Uri class HomePageView(TemplateView): template_name = "dumper/index.html" + + def get_context_data(self,*args, **kwargs): + context = super(HomePageView, self).get_context_data(*args,**kwargs) + context['person_count'] = Person.objects.all().count() + context['place_count'] = Place.objects.all().count() + context['event_count'] = Event.objects.all().count() + context['work_count'] = Work.objects.all().count() + context['institution_count'] = Institution.objects.all().count() + context['uri_count'] = Uri.objects.all().count() + return context diff --git a/pmb/settings.py b/pmb/settings.py index 2def74f..acd9069 100644 --- a/pmb/settings.py +++ b/pmb/settings.py @@ -130,7 +130,7 @@ # Internationalization # https://docs.djangoproject.com/en/3.2/topics/i18n/ -LANGUAGE_CODE = "en-us" +LANGUAGE_CODE = "de" TIME_ZONE = "Europe/Vienna" @@ -139,6 +139,7 @@ USE_L10N = True USE_TZ = True +USE_THOUSAND_SEPARATOR = True # Static files (CSS, JavaScript, Images) diff --git a/pmb/urls.py b/pmb/urls.py index 3417cfa..6f75ee9 100644 --- a/pmb/urls.py +++ b/pmb/urls.py @@ -11,5 +11,5 @@ path("entity//", GetEntityGeneric.as_view(), name="GetEntityGenericRoot"), path("admin/", admin.site.urls), path("arche/", include("archemd.urls")), - path("", include("dumper.urls")), + path("", include("dumper.urls", namespace="dumper")), ] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) diff --git a/templates/partials/navbar.html b/templates/partials/navbar.html index a048f3e..0eab1c6 100644 --- a/templates/partials/navbar.html +++ b/templates/partials/navbar.html @@ -2,7 +2,7 @@
{{ x.start_date_written }} {{ x.relation_type }}{% if x.related_placeA.pk == instance.pk %}{{x.related_placeB}}{% else %}{{x.related_placeA}}{% endif %}{% if x.related_placea.pk == instance.pk %}{{x.related_placeb}}{% else %}{{x.related_placea}}{% endif %}
tag - attrs = {"class": "table table-hover table-striped table-condensed", - "id": "PURI_conn"} - + attrs = { + "class": "table table-hover table-striped table-condensed", + "id": "PURI_conn", + } class LabelTableBase(tables.Table): @@ -349,31 +354,45 @@ class Meta: # Note that as the next attribute 'sequence' builds on this list 'fields', the order defined within this list # will be reused for the tuple 'sequence'. So if the order needs to be changed, better do it here in the list 'fields'. - fields = ['start_date_written', 'end_date_written', 'label_type', 'isocode_639_3'] - sequence = ('label',) + tuple(fields) + fields = [ + "start_date_written", + "end_date_written", + "label_type", + "isocode_639_3", + ] + sequence = ("label",) + tuple(fields) # add class="paleblue" to
tag attrs = { "class": "table table-hover table-striped table-condensed", "id": "PL_conn", - "style": "table-layout: fixed;" + "style": "table-layout: fixed;", } - + def __init__(self, **kwargs): - self.base_columns["start_date_written"].attrs = {"th": {"class": "d-none d-lg-table-cell"},"td": {"class": "d-none d-lg-table-cell"}} - self.base_columns["end_date_written"].attrs = {"th": {"class": "d-none d-lg-table-cell"},"td": {"class": "d-none d-lg-table-cell"}} - self.base_columns["isocode_639_3"].attrs = {"th": {"class": "d-none d-lg-table-cell"},"td": {"class": "d-none d-lg-table-cell"}} + self.base_columns["start_date_written"].attrs = { + "th": {"class": "d-none d-lg-table-cell"}, + "td": {"class": "d-none d-lg-table-cell"}, + } + self.base_columns["end_date_written"].attrs = { + "th": {"class": "d-none d-lg-table-cell"}, + "td": {"class": "d-none d-lg-table-cell"}, + } + self.base_columns["isocode_639_3"].attrs = { + "th": {"class": "d-none d-lg-table-cell"}, + "td": {"class": "d-none d-lg-table-cell"}, + } super().__init__(**kwargs) - class LabelTableEdit(LabelTableBase): """ Reuse most of the base table class for labels. Only addition is editing functionality. """ - edit = tables.TemplateColumn(template_name='apis_relations/edit_button_persLabel_ajax_form.html') + edit = tables.TemplateColumn( + template_name="apis_relations/edit_button_persLabel_ajax_form.html" + ) class Meta(LabelTableBase.Meta): sequence = LabelTableBase.Meta.sequence + ("edit",) - diff --git a/apis_core/apis_relations/templatetags/apis_helpers.py b/apis_core/apis_relations/templatetags/apis_helpers.py index 0400226..27e7a4b 100644 --- a/apis_core/apis_relations/templatetags/apis_helpers.py +++ b/apis_core/apis_relations/templatetags/apis_helpers.py @@ -3,14 +3,15 @@ register = template.Library() + @register.filter def content_type(obj): if not obj: return False if type(obj) == dict: for x in obj.keys(): - if x.startswith('related_'): - nl = [x.split('_')[1], x.split('_')[1]] + if x.startswith("related_"): + nl = [x.split("_")[1], x.split("_")[1]] else: nl = ContentType.objects.get_for_model(obj).name.split() - return ''.join([x.title() for x in nl]) + return "".join([x.title() for x in nl]) diff --git a/apis_core/apis_relations/urls.py b/apis_core/apis_relations/urls.py index b887770..c1b8a8c 100644 --- a/apis_core/apis_relations/urls.py +++ b/apis_core/apis_relations/urls.py @@ -7,15 +7,18 @@ urlpatterns = [ path("ajax/get/", views.get_form_ajax, name="get_form_ajax"), - path("ajax/save/////", + path( + "ajax/save/////", views.save_ajax_form, name="save_ajax_form", ), - path("/list/", + path( + "/list/", rel_views.GenericRelationView.as_view(), name="generic_relations_list", ), - path("//detail", + path( + "//detail", rel_views.GenericRelationDetailView.as_view(), name="generic_relations_detail_view", ), diff --git a/apis_core/apis_relations/views.py b/apis_core/apis_relations/views.py index 92c34b3..8e7bba0 100644 --- a/apis_core/apis_relations/views.py +++ b/apis_core/apis_relations/views.py @@ -9,23 +9,43 @@ from django.template.loader import render_to_string from apis_core.apis_relations import forms as relation_form_module -from apis_core.apis_entities.models import Person, Institution, Place, Event, Work, AbstractEntity +from apis_core.apis_entities.models import ( + Person, + Institution, + Place, + Event, + Work, + AbstractEntity, +) from apis_core.apis_labels.models import Label from apis_core.apis_metainfo.models import Uri from .forms2 import GenericRelationForm from .models import ( - PersonPlace, PersonPerson, PersonInstitution, InstitutionPlace, - InstitutionInstitution, PlacePlace, PersonEvent, InstitutionEvent, PlaceEvent, PersonWork, - InstitutionWork, PlaceWork, EventWork, WorkWork + PersonPlace, + PersonPerson, + PersonInstitution, + InstitutionPlace, + InstitutionInstitution, + PlacePlace, + PersonEvent, + InstitutionEvent, + PlaceEvent, + PersonWork, + InstitutionWork, + PlaceWork, + EventWork, + WorkWork, ) -#from .forms import PersonLabelForm, InstitutionLabelForm, PlaceLabelForm, EventLabelForm + +# from .forms import PersonLabelForm, InstitutionLabelForm, PlaceLabelForm, EventLabelForm from .tables import LabelTableEdit form_module_list = [relation_form_module] -if 'apis_highlighter' in settings.INSTALLED_APPS: +if "apis_highlighter" in settings.INSTALLED_APPS: from apis_highlighter.highlighter import highlight_text_new from apis_highlighter import forms as highlighter_form_module + form_module_list.append(highlighter_form_module) @@ -43,6 +63,7 @@ def turn_form_modules_into_dict(form_module_list): return form_class_dict + form_class_dict = turn_form_modules_into_dict(form_module_list) @@ -60,142 +81,150 @@ def turn_form_modules_into_dict(form_module_list): # Model-classes must be registered together with their ModelForm-classes -registered_forms = {'WorkWorkForm': [WorkWork, Work, Work], - 'PersonPlaceForm': [PersonPlace, Person, Place], - 'PersonPlaceHighlighterForm': [PersonPlace, Person, Place], - 'PersonPersonForm': [PersonPerson, Person, Person], - 'PersonPersonHighlighterForm': [PersonPerson, Person, Person], - 'PersonInstitutionForm': [PersonInstitution, Person, Institution], - 'PersonEventForm': [PersonEvent, Person, Event], - 'PersonWorkForm': [PersonWork, Person, Work], - 'PersonInstitutionHighlighterForm': [PersonInstitution, Person, Institution], - 'PersonWorkHighlighterForm': [PersonWork, Person, Work], - 'PlaceWorkHighlighterForm': [PlaceWork, Place, Work], - 'InstitutionWorkHighlighterForm': [InstitutionWork, Institution, Work], - 'InstitutionPlaceForm': [InstitutionPlace, Institution, Place], - 'InstitutionInstitutionForm': [ - InstitutionInstitution, - Institution, - Institution], - 'InstitutionPersonForm': [PersonInstitution, Institution, Person], - 'InstitutionEventForm': [InstitutionEvent, Institution, Event], - 'InstitutionWorkForm': [InstitutionWork, Institution, Work], - 'PlaceEventForm': [PlaceEvent, Place, Event], - 'PlaceWorkForm': [PlaceWork, Place, Work], - 'PlacePlaceForm': [PlacePlace, Place, Place], - 'EventWorkForm': [EventWork, Event, Work], - 'InstitutionLabelForm': [Label, Institution, Label], - 'PersonLabelForm': [Label, Person, Label], - 'EventLabelForm': [Label, Event, Label], - 'PersonResolveUriForm': [Uri, Person, Uri], - 'SundayHighlighterForm': [ ], - 'AddRelationHighlighterPersonForm': [], - #'PlaceHighlighterForm': [Annotation, ], - #'PersonHighlighterForm': [Annotation, ] - } +registered_forms = { + "WorkWorkForm": [WorkWork, Work, Work], + "PersonPlaceForm": [PersonPlace, Person, Place], + "PersonPlaceHighlighterForm": [PersonPlace, Person, Place], + "PersonPersonForm": [PersonPerson, Person, Person], + "PersonPersonHighlighterForm": [PersonPerson, Person, Person], + "PersonInstitutionForm": [PersonInstitution, Person, Institution], + "PersonEventForm": [PersonEvent, Person, Event], + "PersonWorkForm": [PersonWork, Person, Work], + "PersonInstitutionHighlighterForm": [PersonInstitution, Person, Institution], + "PersonWorkHighlighterForm": [PersonWork, Person, Work], + "PlaceWorkHighlighterForm": [PlaceWork, Place, Work], + "InstitutionWorkHighlighterForm": [InstitutionWork, Institution, Work], + "InstitutionPlaceForm": [InstitutionPlace, Institution, Place], + "InstitutionInstitutionForm": [InstitutionInstitution, Institution, Institution], + "InstitutionPersonForm": [PersonInstitution, Institution, Person], + "InstitutionEventForm": [InstitutionEvent, Institution, Event], + "InstitutionWorkForm": [InstitutionWork, Institution, Work], + "PlaceEventForm": [PlaceEvent, Place, Event], + "PlaceWorkForm": [PlaceWork, Place, Work], + "PlacePlaceForm": [PlacePlace, Place, Place], + "EventWorkForm": [EventWork, Event, Work], + "InstitutionLabelForm": [Label, Institution, Label], + "PersonLabelForm": [Label, Person, Label], + "EventLabelForm": [Label, Event, Label], + "PersonResolveUriForm": [Uri, Person, Uri], + "SundayHighlighterForm": [], + "AddRelationHighlighterPersonForm": [], + #'PlaceHighlighterForm': [Annotation, ], + #'PersonHighlighterForm': [Annotation, ] +} @login_required def get_form_ajax(request): - '''Returns forms rendered in html''' + """Returns forms rendered in html""" - FormName = request.POST.get('FormName') - SiteID = request.POST.get('SiteID') - ButtonText = request.POST.get('ButtonText') - ObjectID = request.POST.get('ObjectID') - entity_type_str = request.POST.get('entity_type') - form_match = re.match(r'([A-Z][a-z]+)([A-Z][a-z]+)(Highlighter)?Form', FormName) - form_match2 = re.match(r'([A-Z][a-z]+)(Highlighter)?Form', FormName) + FormName = request.POST.get("FormName") + SiteID = request.POST.get("SiteID") + ButtonText = request.POST.get("ButtonText") + ObjectID = request.POST.get("ObjectID") + entity_type_str = request.POST.get("entity_type") + form_match = re.match(r"([A-Z][a-z]+)([A-Z][a-z]+)(Highlighter)?Form", FormName) + form_match2 = re.match(r"([A-Z][a-z]+)(Highlighter)?Form", FormName) if FormName and form_match: entity_type_v1 = ContentType.objects.filter( - model='{}{}'.format(form_match.group(1).lower(), form_match.group(2)).lower(), - app_label='apis_relations') + model="{}{}".format( + form_match.group(1).lower(), form_match.group(2) + ).lower(), + app_label="apis_relations", + ) entity_type_v2 = ContentType.objects.none() elif FormName and form_match2: entity_type_v2 = ContentType.objects.filter( - model='{}'.format( - form_match.group(1).lower(), - app_label='apis_entities')) + model="{}".format(form_match.group(1).lower(), app_label="apis_entities") + ) entity_type_v1 = ContentType.objects.none() else: entity_type_v1 = ContentType.objects.none() entity_type_v2 = ContentType.objects.none() - if ObjectID == 'false' or ObjectID is None or ObjectID == 'None': + if ObjectID == "false" or ObjectID is None or ObjectID == "None": ObjectID = False - form_dict = {'entity_type': entity_type_str} + form_dict = {"entity_type": entity_type_str} elif entity_type_v1.count() > 0: d = entity_type_v1[0].model_class().objects.get(pk=ObjectID) - form_dict = {'instance': d, 'siteID': SiteID, 'entity_type': entity_type_str} + form_dict = {"instance": d, "siteID": SiteID, "entity_type": entity_type_str} elif entity_type_v2.count() > 0: d = entity_type_v2[0].model_class().objects.get(pk=ObjectID) - form_dict = {'instance': d, 'siteID': SiteID, 'entity_type': entity_type_str} + form_dict = {"instance": d, "siteID": SiteID, "entity_type": entity_type_str} else: if FormName not in registered_forms.keys(): raise Http404 d = registered_forms[FormName][0].objects.get(pk=ObjectID) - form_dict = {'instance': d, 'siteID': SiteID, 'entity_type': entity_type_str} + form_dict = {"instance": d, "siteID": SiteID, "entity_type": entity_type_str} if entity_type_v1.count() > 0: - form_dict['relation_form'] = '{}{}'.format(form_match.group(1), form_match.group(2)) - if form_match.group(3) == 'Highlighter': - form_dict['highlighter'] = True + form_dict["relation_form"] = "{}{}".format( + form_match.group(1), form_match.group(2) + ) + if form_match.group(3) == "Highlighter": + form_dict["highlighter"] = True form = GenericRelationForm(**form_dict) else: form_class = form_class_dict[FormName] form = form_class(**form_dict) tab = FormName[:-4] - data = {'tab': tab, 'form': render_to_string("apis_relations/_ajax_form.html", { + data = { + "tab": tab, + "form": render_to_string( + "apis_relations/_ajax_form.html", + { "entity_type": entity_type_str, "form": form, - 'type1': FormName, - 'url2': 'save_ajax_'+FormName, - 'button_text': ButtonText, - 'ObjectID': ObjectID, - 'SiteID': SiteID})} + "type1": FormName, + "url2": "save_ajax_" + FormName, + "button_text": ButtonText, + "ObjectID": ObjectID, + "SiteID": SiteID, + }, + ), + } - return HttpResponse(json.dumps(data), content_type='application/json') + return HttpResponse(json.dumps(data), content_type="application/json") @login_required def save_ajax_form(request, entity_type, kind_form, SiteID, ObjectID=False): - '''Tests validity and saves AjaxForms, returns them when validity test fails''' + """Tests validity and saves AjaxForms, returns them when validity test fails""" if kind_form not in registered_forms.keys(): raise Http404 button_text = "create/modify" if not ObjectID: - instance_id = '' + instance_id = "" else: instance_id = ObjectID entity_type_str = entity_type entity_type = AbstractEntity.get_entity_class_of_name(entity_type) - form_match = re.match(r'([A-Z][a-z]+)([A-Z][a-z]+)?(Highlighter)?Form', kind_form) - form_dict = {'data': request.POST, - 'entity_type': entity_type, - 'request': request} + form_match = re.match(r"([A-Z][a-z]+)([A-Z][a-z]+)?(Highlighter)?Form", kind_form) + form_dict = {"data": request.POST, "entity_type": entity_type, "request": request} test_form_relations = ContentType.objects.filter( - model='{}{}'.format(form_match.group(1).lower(), form_match.group(2)).lower(), - app_label='apis_relations') - tab = re.match(r'(.*)Form', kind_form).group(1) - call_function = 'EntityRelationForm_response' + model="{}{}".format(form_match.group(1).lower(), form_match.group(2)).lower(), + app_label="apis_relations", + ) + tab = re.match(r"(.*)Form", kind_form).group(1) + call_function = "EntityRelationForm_response" if test_form_relations.count() > 0: relation_form = test_form_relations[0].model_class() - form_dict['relation_form'] = relation_form - if form_match.group(3) == 'Highlighter': - form_dict['highlighter'] = True - tab = form_match.group(1)+form_match.group(2) - call_function = 'HighlForm_response' + form_dict["relation_form"] = relation_form + if form_match.group(3) == "Highlighter": + form_dict["highlighter"] = True + tab = form_match.group(1) + form_match.group(2) + call_function = "HighlForm_response" form = GenericRelationForm(**form_dict) else: form_class = form_class_dict[kind_form] form = form_class(**form_dict) if form.is_valid(): site_instance = entity_type.objects.get(pk=SiteID) - set_ann_proj = request.session.get('annotation_project', 1) - entity_types_highlighter = request.session.get('entity_types_highlighter') - users_show = request.session.get('users_show_highlighter', None) + set_ann_proj = request.session.get("annotation_project", 1) + entity_types_highlighter = request.session.get("entity_types_highlighter") + users_show = request.session.get("users_show_highlighter", None) hl_text = None if ObjectID: instance = form.save(instance=ObjectID, site_instance=site_instance) @@ -203,32 +232,41 @@ def save_ajax_form(request, entity_type, kind_form, SiteID, ObjectID=False): instance = form.save(site_instance=site_instance) right_card = True if test_form_relations.count() > 0: - table_html = form.get_html_table(entity_type_str, request, site_instance, form_match) - if 'Highlighter' in tab or form_match.group(3) == 'Highlighter': + table_html = form.get_html_table( + entity_type_str, request, site_instance, form_match + ) + if "Highlighter" in tab or form_match.group(3) == "Highlighter": hl_text = { - 'text': highlight_text_new(form.get_text_id(), - users_show=users_show, - set_ann_proj=set_ann_proj, - types=entity_types_highlighter)[0].strip(), - 'id': form.get_text_id()} - if tab == 'PersonLabel': + "text": highlight_text_new( + form.get_text_id(), + users_show=users_show, + set_ann_proj=set_ann_proj, + types=entity_types_highlighter, + )[0].strip(), + "id": form.get_text_id(), + } + if tab == "PersonLabel": table_html = LabelTableEdit( - data=site_instance.label_set.all(), - prefix='PL-') - elif tab == 'InstitutionLabel': + data=site_instance.label_set.all(), prefix="PL-" + ) + elif tab == "InstitutionLabel": table_html = LabelTableEdit( - data=site_instance.label_set.all(), - prefix='IL-') - elif tab == 'PersonResolveUri': + data=site_instance.label_set.all(), prefix="IL-" + ) + elif tab == "PersonResolveUri": table_html = EntityUriTable( - Uri.objects.filter(entity=site_instance), - prefix='PURI-' + Uri.objects.filter(entity=site_instance), prefix="PURI-" ) - elif tab == 'AddRelationHighlighterPerson' or tab == 'PlaceHighlighter' or tab == 'PersonHighlighter' or tab == 'SundayHighlighter': + elif ( + tab == "AddRelationHighlighterPerson" + or tab == "PlaceHighlighter" + or tab == "PersonHighlighter" + or tab == "SundayHighlighter" + ): table_html = None right_card = False - call_function = 'PAddRelation_response' + call_function = "PAddRelation_response" instance = None if instance: instance2 = instance.get_web_object() @@ -238,24 +276,39 @@ def save_ajax_form(request, entity_type, kind_form, SiteID, ObjectID=False): table_html2 = table_html.as_html(request) else: table_html2 = None - data = {'test': True, 'tab': tab, 'call_function': call_function, - 'instance': instance2, - 'table_html': table_html2, - 'text': hl_text, - 'right_card': right_card} + data = { + "test": True, + "tab": tab, + "call_function": call_function, + "instance": instance2, + "table_html": table_html2, + "text": hl_text, + "right_card": right_card, + } else: - if 'Highlighter' in tab: - call_function = 'HighlForm_response' - data = {'test': False, 'call_function': call_function, - 'DivID': 'div_'+kind_form+instance_id, - 'form': render_to_string("apis_relations/_ajax_form.html", context={ + if "Highlighter" in tab: + call_function = "HighlForm_response" + data = { + "test": False, + "call_function": call_function, + "DivID": "div_" + kind_form + instance_id, + "form": render_to_string( + "apis_relations/_ajax_form.html", + context={ "entity_type": entity_type_str, - "form": form, 'type1': kind_form, 'url2': 'save_ajax_'+kind_form, - 'button_text': button_text, 'ObjectID': ObjectID, 'SiteID': SiteID}, - request=request)} + "form": form, + "type1": kind_form, + "url2": "save_ajax_" + kind_form, + "button_text": button_text, + "ObjectID": ObjectID, + "SiteID": SiteID, + }, + request=request, + ), + } # except Exception as e: # print('Error in save method') # print(e) # data = {'test': False, 'error': json.dumps(str(e))} - return HttpResponse(json.dumps(data), content_type='application/json') + return HttpResponse(json.dumps(data), content_type="application/json") diff --git a/apis_core/apis_tei/apps.py b/apis_core/apis_tei/apps.py index b0fe9a9..c6974de 100644 --- a/apis_core/apis_tei/apps.py +++ b/apis_core/apis_tei/apps.py @@ -2,4 +2,4 @@ class TeiConfig(AppConfig): - name = 'apis_core.apis_tei' + name = "apis_core.apis_tei" diff --git a/apis_core/apis_tei/management/commands/orgs_to_tei.py b/apis_core/apis_tei/management/commands/orgs_to_tei.py index 4beaf76..6361653 100644 --- a/apis_core/apis_tei/management/commands/orgs_to_tei.py +++ b/apis_core/apis_tei/management/commands/orgs_to_tei.py @@ -5,58 +5,59 @@ from apis_core.apis_entities.models import Institution from apis_core.apis_tei.tei_utils import get_node_from_template, tei_header + class Command(BaseCommand): - help = 'Command to serialize APIS Institutions to XML/TEI places.xml' + help = "Command to serialize APIS Institutions to XML/TEI places.xml" def add_arguments(self, parser): parser.add_argument( - '-l', - '--limit', - action='store_true', - help='number of entities should be limited', + "-l", + "--limit", + action="store_true", + help="number of entities should be limited", ) parser.add_argument( - '-f', - '--full', - action='store_true', - help='should related entities e.g. birth-places be fully serialized', + "-f", + "--full", + action="store_true", + help="should related entities e.g. birth-places be fully serialized", ) parser.add_argument( - '--collection', - help='which collection?', + "--collection", + help="which collection?", ) - + def handle(self, *args, **kwargs): tei_doc = tei_header(title="ListOrg", ent_type="") - entity_list = tei_doc.xpath("//*[local-name() = 'listOrg']")[0] + entity_list = tei_doc.xpath("//*[local-name() = 'listOrg']")[0] - if kwargs['full']: + if kwargs["full"]: print("full is set") full = True else: print("simple") full = False - - if kwargs['collection']: + + if kwargs["collection"]: try: - col_id = int(kwargs['collection']) + col_id = int(kwargs["collection"]) except ValueError: - print(f"collection needs to be an integer and not: {kwargs['collection']}") + print( + f"collection needs to be an integer and not: {kwargs['collection']}" + ) return False - + items = Institution.objects.filter(collection=col_id) else: items = Institution.objects.all() - if kwargs['limit']: + if kwargs["limit"]: items = items[:25] print(f"serialize {items.count()} Orgs") for res in tqdm(items, total=len(items)): - item_node = get_node_from_template( - 'apis_tei/org.xml', res, full=full - ) + item_node = get_node_from_template("apis_tei/org.xml", res, full=full) entity_list.append(item_node) - - with open('listorg.xml', 'w') as f: - print(ET.tostring(tei_doc).decode('utf-8'), file=f) + + with open("listorg.xml", "w") as f: + print(ET.tostring(tei_doc).decode("utf-8"), file=f) print("done") diff --git a/apis_core/apis_tei/management/commands/persons_to_tei.py b/apis_core/apis_tei/management/commands/persons_to_tei.py index 092fbf2..1a9a893 100644 --- a/apis_core/apis_tei/management/commands/persons_to_tei.py +++ b/apis_core/apis_tei/management/commands/persons_to_tei.py @@ -5,58 +5,59 @@ from apis_core.apis_entities.models import Person from apis_core.apis_tei.tei_utils import get_node_from_template, tei_header + class Command(BaseCommand): - help = 'Command to serialize APIS Persons to XML/TEI persons.xml' + help = "Command to serialize APIS Persons to XML/TEI persons.xml" def add_arguments(self, parser): parser.add_argument( - '-l', - '--limit', - action='store_true', - help='number of entities should be limited', + "-l", + "--limit", + action="store_true", + help="number of entities should be limited", ) parser.add_argument( - '-f', - '--full', - action='store_true', - help='should related entities e.g. birth-places be fully serialized', + "-f", + "--full", + action="store_true", + help="should related entities e.g. birth-places be fully serialized", ) parser.add_argument( - '--collection', - help='which collection?', + "--collection", + help="which collection?", ) - + def handle(self, *args, **kwargs): tei_doc = tei_header() - listperson = tei_doc.xpath("//*[local-name() = 'listPerson']")[0] + listperson = tei_doc.xpath("//*[local-name() = 'listPerson']")[0] - if kwargs['full']: + if kwargs["full"]: print("full is set") full = True else: print("simple") full = False - - if kwargs['collection']: + + if kwargs["collection"]: try: - col_id = int(kwargs['collection']) + col_id = int(kwargs["collection"]) except ValueError: - print(f"collection needs to be an integer and not: {kwargs['collection']}") + print( + f"collection needs to be an integer and not: {kwargs['collection']}" + ) return False - + items = Person.objects.filter(collection=col_id) else: items = Person.objects.all() - if kwargs['limit']: + if kwargs["limit"]: items = items[:25] print(f"serialize {items.count()} Persons") for res in tqdm(items, total=len(items)): - item_node = get_node_from_template( - 'apis_tei/person.xml', res, full=full - ) + item_node = get_node_from_template("apis_tei/person.xml", res, full=full) listperson.append(item_node) - - with open('listperson.xml', 'w') as f: - print(ET.tostring(tei_doc).decode('utf-8'), file=f) + + with open("listperson.xml", "w") as f: + print(ET.tostring(tei_doc).decode("utf-8"), file=f) print("done") diff --git a/apis_core/apis_tei/management/commands/places_to_tei.py b/apis_core/apis_tei/management/commands/places_to_tei.py index 34a3f9a..74a601e 100644 --- a/apis_core/apis_tei/management/commands/places_to_tei.py +++ b/apis_core/apis_tei/management/commands/places_to_tei.py @@ -5,58 +5,59 @@ from apis_core.apis_entities.models import Place from apis_core.apis_tei.tei_utils import get_node_from_template, tei_header + class Command(BaseCommand): - help = 'Command to serialize APIS Places to XML/TEI places.xml' + help = "Command to serialize APIS Places to XML/TEI places.xml" def add_arguments(self, parser): parser.add_argument( - '-l', - '--limit', - action='store_true', - help='number of entities should be limited', + "-l", + "--limit", + action="store_true", + help="number of entities should be limited", ) parser.add_argument( - '-f', - '--full', - action='store_true', - help='should related entities e.g. birth-places be fully serialized', + "-f", + "--full", + action="store_true", + help="should related entities e.g. birth-places be fully serialized", ) parser.add_argument( - '--collection', - help='which collection?', + "--collection", + help="which collection?", ) - + def handle(self, *args, **kwargs): tei_doc = tei_header(title="ListPlace", ent_type="") - listplace = tei_doc.xpath("//*[local-name() = 'listPlace']")[0] + listplace = tei_doc.xpath("//*[local-name() = 'listPlace']")[0] - if kwargs['full']: + if kwargs["full"]: print("full is set") full = True else: print("simple") full = False - - if kwargs['collection']: + + if kwargs["collection"]: try: - col_id = int(kwargs['collection']) + col_id = int(kwargs["collection"]) except ValueError: - print(f"collection needs to be an integer and not: {kwargs['collection']}") + print( + f"collection needs to be an integer and not: {kwargs['collection']}" + ) return False - + items = Place.objects.filter(collection=col_id) else: items = Place.objects.all() - if kwargs['limit']: + if kwargs["limit"]: items = items[:25] print(f"serialize {items.count()} Places") for res in tqdm(items, total=len(items)): - item_node = get_node_from_template( - 'apis_tei/place.xml', res, full=full - ) + item_node = get_node_from_template("apis_tei/place.xml", res, full=full) listplace.append(item_node) - - with open('listplace.xml', 'w') as f: - print(ET.tostring(tei_doc).decode('utf-8'), file=f) + + with open("listplace.xml", "w") as f: + print(ET.tostring(tei_doc).decode("utf-8"), file=f) print("done") diff --git a/apis_core/apis_tei/management/commands/works_to_tei.py b/apis_core/apis_tei/management/commands/works_to_tei.py index 7890fe2..55ebf31 100644 --- a/apis_core/apis_tei/management/commands/works_to_tei.py +++ b/apis_core/apis_tei/management/commands/works_to_tei.py @@ -5,58 +5,59 @@ from apis_core.apis_entities.models import Work from apis_core.apis_tei.tei_utils import get_node_from_template, tei_header + class Command(BaseCommand): - help = 'Command to serialize APIS Works to XML/TEI places.xml' + help = "Command to serialize APIS Works to XML/TEI places.xml" def add_arguments(self, parser): parser.add_argument( - '-l', - '--limit', - action='store_true', - help='number of entities should be limited', + "-l", + "--limit", + action="store_true", + help="number of entities should be limited", ) parser.add_argument( - '-f', - '--full', - action='store_true', - help='should related entities e.g. birth-places be fully serialized', + "-f", + "--full", + action="store_true", + help="should related entities e.g. birth-places be fully serialized", ) parser.add_argument( - '--collection', - help='which collection?', + "--collection", + help="which collection?", ) - + def handle(self, *args, **kwargs): tei_doc = tei_header(title="ListBibl", ent_type="") - entity_list = tei_doc.xpath("//*[local-name() = 'listBibl']")[0] + entity_list = tei_doc.xpath("//*[local-name() = 'listBibl']")[0] - if kwargs['full']: + if kwargs["full"]: print("full is set") full = True else: print("simple") full = False - - if kwargs['collection']: + + if kwargs["collection"]: try: - col_id = int(kwargs['collection']) + col_id = int(kwargs["collection"]) except ValueError: - print(f"collection needs to be an integer and not: {kwargs['collection']}") + print( + f"collection needs to be an integer and not: {kwargs['collection']}" + ) return False - + items = Work.objects.filter(collection=col_id) else: items = Work.objects.all() - if kwargs['limit']: + if kwargs["limit"]: items = items[:25] print(f"serialize {items.count()} Works") for res in tqdm(items, total=len(items)): - item_node = get_node_from_template( - 'apis_tei/work.xml', res, full=full - ) + item_node = get_node_from_template("apis_tei/work.xml", res, full=full) entity_list.append(item_node) - - with open('listwork.xml', 'w') as f: - print(ET.tostring(tei_doc).decode('utf-8'), file=f) + + with open("listwork.xml", "w") as f: + print(ET.tostring(tei_doc).decode("utf-8"), file=f) print("done") diff --git a/apis_core/apis_tei/partials.py b/apis_core/apis_tei/partials.py index cf41ff8..1414d34 100644 --- a/apis_core/apis_tei/partials.py +++ b/apis_core/apis_tei/partials.py @@ -1,14 +1,14 @@ TEI_NSMAP = { - 'tei': "http://www.tei-c.org/ns/1.0", - 'xml': "http://www.w3.org/XML/1998/namespace", + "tei": "http://www.tei-c.org/ns/1.0", + "xml": "http://www.w3.org/XML/1998/namespace", } PERS_TO_TEI_DICT = { - 'name': "{http://www.tei-c.org/ns/1.0}surname", - 'first_name': "{http://www.tei-c.org/ns/1.0}forename", - 'start_date': "{http://www.tei-c.org/ns/1.0}birth", - 'end_date': "{http://www.tei-c.org/ns/1.0}death", + "name": "{http://www.tei-c.org/ns/1.0}surname", + "first_name": "{http://www.tei-c.org/ns/1.0}forename", + "start_date": "{http://www.tei-c.org/ns/1.0}birth", + "end_date": "{http://www.tei-c.org/ns/1.0}death", } diff --git a/apis_core/apis_tei/tei.py b/apis_core/apis_tei/tei.py index 7af4afb..9ac1c3a 100644 --- a/apis_core/apis_tei/tei.py +++ b/apis_core/apis_tei/tei.py @@ -44,12 +44,10 @@ def custom_escape(somestring): class TeiEntCreator: - def __init__( - self, ent_dict, base_url="entity/", include_entity_tagged_texts=False - ): + def __init__(self, ent_dict, base_url="entity/", include_entity_tagged_texts=False): """ Entry point: called from apis_core/apis_entities/api_renderers.py - + ent_dict is dict representing the entity This class is initialised, then has the serialize_full_doc method called @@ -507,4 +505,3 @@ def stand_off_to_inline(text, annot): i = j return "".join(parts) - diff --git a/apis_core/apis_tei/tei_ac.py b/apis_core/apis_tei/tei_ac.py index 724823c..f78dfd1 100644 --- a/apis_core/apis_tei/tei_ac.py +++ b/apis_core/apis_tei/tei_ac.py @@ -7,61 +7,61 @@ class TeiEntAc(autocomplete.Select2ListView): - def get(self, request, *args, **kwargs): page_size = 200 - offset = (int(self.request.GET.get('page', 1))-1)*page_size - ac_type = self.kwargs['entity'] + offset = (int(self.request.GET.get("page", 1)) - 1) * page_size + ac_type = self.kwargs["entity"] if ac_type == "org": ac_type = "institution" choices = [] - headers = {'Content-Type': 'application/json'} + headers = {"Content-Type": "application/json"} ent_model = AbstractEntity.get_entity_class_of_name(ac_type) q = self.q.strip() res = ent_model.objects.filter(name__startswith=q) - for r in res[offset:offset+page_size]: + for r in res[offset : offset + page_size]: dates = "time: {} - {}".format(r.start_date, r.end_date) f = dict() - f['id'] = f"{request.build_absolute_uri('/entity/')}{r.pk}" - if ac_type == 'institution': - f['type'] = "org" + f["id"] = f"{request.build_absolute_uri('/entity/')}{r.pk}" + if ac_type == "institution": + f["type"] = "org" else: - f['type'] = "{}".format(ac_type) - f['name'] = "{}".format(str(r)) - f['description'] = "{}".format(dates) + f["type"] = "{}".format(ac_type) + f["name"] = "{}".format(str(r)) + f["description"] = "{}".format(dates) choices.append(f) - return http.HttpResponse(json.dumps({ - 'item': choices + [], - 'pagination': {'more': True} - }), content_type='application/json') + return http.HttpResponse( + json.dumps({"item": choices + [], "pagination": {"more": True}}), + content_type="application/json", + ) class TeiCompleterAc(autocomplete.Select2ListView): - def get(self, request, *args, **kwargs): page_size = 200 - offset = (int(self.request.GET.get('page', 1))-1)*page_size - ac_type = self.kwargs['entity'] + offset = (int(self.request.GET.get("page", 1)) - 1) * page_size + ac_type = self.kwargs["entity"] if ac_type == "org": ac_type = "institution" choices = [] - headers = {'Content-Type': 'application/json'} + headers = {"Content-Type": "application/json"} ent_model = AbstractEntity.get_entity_class_of_name(ac_type) q = self.q.strip() res = ent_model.objects.filter(name__startswith=q) - for r in res[offset:offset+page_size]: + for r in res[offset : offset + page_size]: dates = "time: {} - {}".format(r.start_date, r.end_date) f = dict() - f['tc:value'] = "{}".format(r.uri_set.all()[0]) - if ac_type == 'institution': + f["tc:value"] = "{}".format(r.uri_set.all()[0]) + if ac_type == "institution": ent_type = "org" else: ent_type = "{}".format(ac_type) - f['tc:description'] = f"name: {str(r)}, type: {ent_type}, dates: {dates}".format(dates) + f[ + "tc:description" + ] = f"name: {str(r)}, type: {ent_type}, dates: {dates}".format(dates) choices.append(f) - return http.HttpResponse(json.dumps({ - 'tc:suggestion': choices + [], - 'pagination': {'more': True} - }), content_type='application/json') + return http.HttpResponse( + json.dumps({"tc:suggestion": choices + [], "pagination": {"more": True}}), + content_type="application/json", + ) diff --git a/apis_core/apis_tei/tei_utils.py b/apis_core/apis_tei/tei_utils.py index bcf3c50..7833618 100644 --- a/apis_core/apis_tei/tei_utils.py +++ b/apis_core/apis_tei/tei_utils.py @@ -4,7 +4,7 @@ from apis_core.apis_entities.models import Work, Place, Person, Institution from apis_core.apis_relations.models import PlacePlace, PersonWork from apis_core.apis_vocabularies.models import PersonWorkRelation -from apis_core.helper_functions.utils import get_child_classes +from apis_core.helper_functions.utils import get_child_classes try: birth_rel = settings.BIRTH_REL @@ -36,49 +36,63 @@ else: author_rels = False + def get_part_of_relation(res): items = [] - for x in PlacePlace.objects.filter(related_placeb=res).filter(relation_type__id__in=pl_b_located_in): + for x in PlacePlace.objects.filter(related_placeb=res).filter( + relation_type__id__in=pl_b_located_in + ): items.append(x.related_placea) - for x in PlacePlace.objects.filter(related_placea=res).filter(relation_type__id__in=pl_a_part_of): + for x in PlacePlace.objects.filter(related_placea=res).filter( + relation_type__id__in=pl_a_part_of + ): items.append(x.related_placeb) return list(set(items)) + def get_context(res): - + context = {} - context['object'] = res - context['org_located_in'] = [] - context['birth_rel'] = [] - context['death_rel'] = [] - context['pl_located_in'] = [] - context['author_rels'] = [] + context["object"] = res + context["org_located_in"] = [] + context["birth_rel"] = [] + context["death_rel"] = [] + context["pl_located_in"] = [] + context["author_rels"] = [] if isinstance(res, Work): person_work_ids = author_rels try: - context['author_rels'] = PersonWork.objects.filter(relation_type__in=person_work_ids, related_work=res) + context["author_rels"] = PersonWork.objects.filter( + relation_type__in=person_work_ids, related_work=res + ) except ValueError: - context['author_rels'] = [] + context["author_rels"] = [] if org_located_in and isinstance(res, Institution): try: - context['org_located_in'] = res.institutionplace_set.filter(relation_type__in=org_located_in) + context["org_located_in"] = res.institutionplace_set.filter( + relation_type__in=org_located_in + ) except AttributeError: pass if isinstance(res, Person): if birth_rel: try: - context['birth_rel'] = res.personplace_set.filter(relation_type__in=birth_rel) + context["birth_rel"] = res.personplace_set.filter( + relation_type__in=birth_rel + ) except AttributeError: pass if death_rel: try: - context['death_rel'] = res.personplace_set.filter(relation_type__in=death_rel) + context["death_rel"] = res.personplace_set.filter( + relation_type__in=death_rel + ) except AttributeError: pass if isinstance(res, Place): if pl_a_part_of and pl_b_located_in: try: - context['pl_located_in'] = get_part_of_relation(res) + context["pl_located_in"] = get_part_of_relation(res) except ValueError: pass return context @@ -87,22 +101,17 @@ def get_context(res): def get_node_from_template(template_path, res, full=True): template = get_template(template_path) context = get_context(res) - context['FULL'] = full + context["FULL"] = full temp_str = f"{template.render(context=context)}" node = ET.fromstring(temp_str) return node def tei_header( - title="ListPerson", - ent_type="", - template_path='apis_tei/tei.xml' + title="ListPerson", ent_type="", template_path="apis_tei/tei.xml" ): template = get_template(template_path) - context = { - "title": title, - "ent_type": ent_type - } + context = {"title": title, "ent_type": ent_type} temp_str = f"{template.render(context=context)}" node = ET.fromstring(temp_str) return node diff --git a/apis_core/apis_tei/views.py b/apis_core/apis_tei/views.py index fdfad63..eea869e 100644 --- a/apis_core/apis_tei/views.py +++ b/apis_core/apis_tei/views.py @@ -11,57 +11,72 @@ def person_as_tei(request, pk): - full = request.GET.get('full') + full = request.GET.get("full") model = Person res = get_object_from_pk_or_uri(request, pk) if not isinstance(res, model): - return HttpResponse(f"Requested object is not an instance of {model.__name__}", content_type="text/plain") - doc = get_node_from_template('apis_tei/person.xml', res, full=full) - tei = ET.tostring(doc, pretty_print=True, encoding='UTF-8') + return HttpResponse( + f"Requested object is not an instance of {model.__name__}", + content_type="text/plain", + ) + doc = get_node_from_template("apis_tei/person.xml", res, full=full) + tei = ET.tostring(doc, pretty_print=True, encoding="UTF-8") return HttpResponse(tei, content_type="application/xml") def place_as_tei(request, pk): - full = request.GET.get('full') + full = request.GET.get("full") model = Place res = get_object_from_pk_or_uri(request, pk) if not isinstance(res, model): - return HttpResponse(f"Requested object is not an instance of {model.__name__}", content_type="text/plain") - doc = get_node_from_template('apis_tei/place.xml', res, full=full) - tei = ET.tostring(doc, pretty_print=True, encoding='UTF-8') + return HttpResponse( + f"Requested object is not an instance of {model.__name__}", + content_type="text/plain", + ) + doc = get_node_from_template("apis_tei/place.xml", res, full=full) + tei = ET.tostring(doc, pretty_print=True, encoding="UTF-8") return HttpResponse(tei, content_type="application/xml") def work_as_tei(request, pk): - full = request.GET.get('full') + full = request.GET.get("full") model = Work res = get_object_from_pk_or_uri(request, pk) if not isinstance(res, model): - return HttpResponse(f"Requested object is not an instance of {model.__name__}", content_type="text/plain") - doc = get_node_from_template('apis_tei/work.xml', res, full=full) - tei = ET.tostring(doc, pretty_print=True, encoding='UTF-8') + return HttpResponse( + f"Requested object is not an instance of {model.__name__}", + content_type="text/plain", + ) + doc = get_node_from_template("apis_tei/work.xml", res, full=full) + tei = ET.tostring(doc, pretty_print=True, encoding="UTF-8") return HttpResponse(tei, content_type="application/xml") def org_as_tei(request, pk): - full = request.GET.get('full') + full = request.GET.get("full") model = Institution res = get_object_from_pk_or_uri(request, pk) if not isinstance(res, model): - return HttpResponse(f"Requested object is not an instance of {model.__name__}", content_type="text/plain") - doc = get_node_from_template('apis_tei/org.xml', res, full=full) - tei = ET.tostring(doc, pretty_print=True, encoding='UTF-8') + return HttpResponse( + f"Requested object is not an instance of {model.__name__}", + content_type="text/plain", + ) + doc = get_node_from_template("apis_tei/org.xml", res, full=full) + tei = ET.tostring(doc, pretty_print=True, encoding="UTF-8") return HttpResponse(tei, content_type="application/xml") def uri_to_tei(request): - requested_uri = request.GET.get('uri', None) + requested_uri = request.GET.get("uri", None) if requested_uri is not None: uri = get_object_or_404(Uri, uri=requested_uri) uri_entity_id = uri.entity.id uri_entity_class = uri.entity.get_child_entity() uri_entity_class_name = uri_entity_class.__class__.__name__.lower() - redirect_url = f'/apis/entities/tei/{uri_entity_class_name}/{uri_entity_id}' + redirect_url = f"/apis/entities/tei/{uri_entity_class_name}/{uri_entity_id}" return redirect(redirect_url) else: - return HttpResponse(f"no URI provided, please try e.g. uri-to-tei?uri=https://whatever.you/want", content_type="text/plain") + return HttpResponse( + f"no URI provided, please try e.g. uri-to-tei?uri=https://whatever.you/want", + content_type="text/plain", + ) diff --git a/apis_core/apis_vis/api_views.py b/apis_core/apis_vis/api_views.py index 0e890b1..f313e22 100644 --- a/apis_core/apis_vis/api_views.py +++ b/apis_core/apis_vis/api_views.py @@ -14,16 +14,16 @@ class GetVisJson(ListAPIView): # TODO: add a generic filter thing def get_serializer(self, instance=None, data=None, many=False, partial=False): - vis = self.request.query_params.get('vis', None) - if vis == 'av-age': + vis = self.request.query_params.get("vis", None) + if vis == "av-age": return VisAgeSerializer(self.get_queryset(), many=False) - elif vis == 'avg-relations': + elif vis == "avg-relations": return AvRelations(self.get_queryset(), many=False) else: return None def get_queryset(self, **kwargs): - relation = self.kwargs['relation'].lower() + relation = self.kwargs["relation"].lower() relation_model = AbstractRelation.get_relation_class_of_name(relation) print("from get_queryset {}".format(relation)) queryset = relation_model.objects.all() diff --git a/apis_core/apis_vis/apps.py b/apis_core/apis_vis/apps.py index ab0c457..2b5c1a1 100644 --- a/apis_core/apis_vis/apps.py +++ b/apis_core/apis_vis/apps.py @@ -2,4 +2,4 @@ class EntitiesConfig(AppConfig): - name = 'apis_core.apis_vis' + name = "apis_core.apis_vis" diff --git a/apis_core/apis_vis/serializers.py b/apis_core/apis_vis/serializers.py index 74cc0a4..d7e9546 100644 --- a/apis_core/apis_vis/serializers.py +++ b/apis_core/apis_vis/serializers.py @@ -6,96 +6,99 @@ class GenericBaseSerializer(serializers.BaseSerializer): - def to_representation(self, obj): data = { "items": "some", - "title": "{}".format('Members by Year'), - "subtitle": "Person Institution relation type {}".format('some type'), + "title": "{}".format("Members by Year"), + "subtitle": "Person Institution relation type {}".format("some type"), "legendy": "legendy", "legendx": "legendx", "categories": "sorted(dates)", "measuredObject": "{} relations".format("find some variable"), "ymin": 0, "x_axis": "something", - "payload": "something" + "payload": "something", } return data class AvRelations(GenericBaseSerializer): - def to_representation(self, obj): print(obj[0].__class__.__name__) qs = obj.filter(start_date__isnull=False).filter(end_date__isnull=False) - start_year = int(str(qs.order_by('start_date')[0].start_date)[:4]) - end_year = int(str(qs.order_by('-start_date')[0].start_date)[:4]) + start_year = int(str(qs.order_by("start_date")[0].start_date)[:4]) + end_year = int(str(qs.order_by("-start_date")[0].start_date)[:4]) qs = [ { - 'year': x, - 'members_new': qs.filter(start_date__year=x).count(), - 'members_all': qs.filter( + "year": x, + "members_new": qs.filter(start_date__year=x).count(), + "members_all": qs.filter( start_date__year__lte=x, end_date__year__gte=x ).count(), - } for x in range(start_year, end_year) + } + for x in range(start_year, end_year) ] df = pd.DataFrame(qs) payload = [ { - 'name': 'all members', - 'data': [x for x in df[['members_all']].values.tolist()] + "name": "all members", + "data": [x for x in df[["members_all"]].values.tolist()], }, { - 'name': 'new members', - 'data': [x for x in df[['members_new']].values.tolist()] - } + "name": "new members", + "data": [x for x in df[["members_new"]].values.tolist()], + }, ] data = { "items": "some", - "title": "{}".format('Members by Year'), - "subtitle": "Person Institution relation type {}".format('some type'), + "title": "{}".format("Members by Year"), + "subtitle": "Person Institution relation type {}".format("some type"), "legendy": "legendy", "legendx": "legendx", "categories": "sorted(dates)", "measuredObject": "{} relations".format("find some variable"), "ymin": 0, - "x_axis": df['year'].values.tolist(), - "payload": payload + "x_axis": df["year"].values.tolist(), + "payload": payload, } return data class VisAgeSerializer(serializers.BaseSerializer): - def to_representation(self, obj): qs = [ { - 'year': x, - 'members_new': obj.filter(start_date__year=x).count(), - 'avg_birth_new': obj.filter(start_date__year=x) - .aggregate( - Avg('related_person__start_date__year') - )['related_person__start_date__year__avg'], - 'members_all': obj.filter( + "year": x, + "members_new": obj.filter(start_date__year=x).count(), + "avg_birth_new": obj.filter(start_date__year=x).aggregate( + Avg("related_person__start_date__year") + )["related_person__start_date__year__avg"], + "members_all": obj.filter( start_date__year__lte=x, end_date__year__gte=x ).count(), - 'avg_birth': obj.filter(start_date__year__lte=x, end_date__year__gte=x) - .aggregate( - Avg('related_person__start_date__year') - )['related_person__start_date__year__avg'] - } for x in range(1847, 2015) + "avg_birth": obj.filter( + start_date__year__lte=x, end_date__year__gte=x + ).aggregate(Avg("related_person__start_date__year"))[ + "related_person__start_date__year__avg" + ], + } + for x in range(1847, 2015) ] df = pd.DataFrame(qs) - df['avg_age_new'] = df.apply(lambda row: calculate_age(row, 'avg_birth_new'), axis=1) - df['avg_age_all'] = df.apply(lambda row: calculate_age(row, 'avg_birth'), axis=1) + df["avg_age_new"] = df.apply( + lambda row: calculate_age(row, "avg_birth_new"), axis=1 + ) + df["avg_age_all"] = df.apply( + lambda row: calculate_age(row, "avg_birth"), axis=1 + ) payload = [ { - 'name': 'average age all', - 'data': [x for x in df[['avg_age_all']].values.tolist()] + "name": "average age all", + "data": [x for x in df[["avg_age_all"]].values.tolist()], }, { - 'name': 'average age new', - 'data': [x for x in df[['avg_age_new']].values.tolist()] - } + "name": "average age new", + "data": [x for x in df[["avg_age_new"]].values.tolist()], + }, ] return payload diff --git a/apis_core/apis_vis/urls.py b/apis_core/apis_vis/urls.py index 53b146c..c0c411b 100644 --- a/apis_core/apis_vis/urls.py +++ b/apis_core/apis_vis/urls.py @@ -2,20 +2,26 @@ from . import views, api_views -app_name = 'apis_vis' +app_name = "apis_vis" urlpatterns = [ - url(r'^heatmap/', views.HeatMapView.as_view(), name='heatmap_view'), - url(r'^heatmap-data/', views.get_heatmap_data, name='get_heatmap_data'), - url(r'^avg-age-data/', views.get_average_age_data, name='get_avg_age_data'), - url(r'^avg-age/', views.AvgAge.as_view(), name='avgage_view'), - url(r'^avg-members-data/', views.get_average_members_data, name='get_avg_members_data'), - url(r'^avg-members/', views.MembersAmountPerYear.as_view(), name='avg_members_view'), + url(r"^heatmap/", views.HeatMapView.as_view(), name="heatmap_view"), + url(r"^heatmap-data/", views.get_heatmap_data, name="get_heatmap_data"), + url(r"^avg-age-data/", views.get_average_age_data, name="get_avg_age_data"), + url(r"^avg-age/", views.AvgAge.as_view(), name="avgage_view"), url( - r'^(?P[a-z]+)/data/', + r"^avg-members-data/", + views.get_average_members_data, + name="get_avg_members_data", + ), + url( + r"^avg-members/", views.MembersAmountPerYear.as_view(), name="avg_members_view" + ), + url( + r"^(?P[a-z]+)/data/", api_views.GetVisJson.as_view(), - name='person-institution-data' + name="person-institution-data", ), - url(r'^inst-range-data/', views.get_inst_range_data, name='get_inst_range_data'), - url(r'^inst-range/', views.InstRange.as_view(), name='inst_range_view'), + url(r"^inst-range-data/", views.get_inst_range_data, name="get_inst_range_data"), + url(r"^inst-range/", views.InstRange.as_view(), name="inst_range_view"), ] diff --git a/apis_core/apis_vis/utils.py b/apis_core/apis_vis/utils.py index 28d6686..72255c9 100644 --- a/apis_core/apis_vis/utils.py +++ b/apis_core/apis_vis/utils.py @@ -1,6 +1,6 @@ def calculate_age(row, age_field): try: - year = row['year'] + year = row["year"] except ValueError: year = None try: @@ -8,6 +8,6 @@ def calculate_age(row, age_field): except ValueError: age = None if year and age: - return year-age + return year - age else: return 0 diff --git a/apis_core/apis_vis/views.py b/apis_core/apis_vis/views.py index 44db0dc..c2f5602 100644 --- a/apis_core/apis_vis/views.py +++ b/apis_core/apis_vis/views.py @@ -8,149 +8,161 @@ def get_inst_range_data(request): - df = pd.DataFrame(list(InstitutionInstitution.objects.filter( - relation_type__name="ist Teil von").distinct().values_list( - 'related_institutionA__name', - 'related_institutionA__start_date__year', - 'related_institutionA__end_date__year', - 'related_institutionB__name' - ) - ), columns=['name', 'start_year', 'end_year', 'teil von']).fillna(2018) - df.sort_values('start_year') + df = pd.DataFrame( + list( + InstitutionInstitution.objects.filter(relation_type__name="ist Teil von") + .distinct() + .values_list( + "related_institutionA__name", + "related_institutionA__start_date__year", + "related_institutionA__end_date__year", + "related_institutionB__name", + ) + ), + columns=["name", "start_year", "end_year", "teil von"], + ).fillna(2018) + df.sort_values("start_year") data = { "items": "some", - "title": "{}".format('Kommissionen'), - "subtitle": "Person Institution relation type {}".format('some type'), + "title": "{}".format("Kommissionen"), + "subtitle": "Person Institution relation type {}".format("some type"), "legendy": "legendy", "legendx": "legendx", "categories": "sorted(dates)", "measuredObject": "{}".format("Persons average Age"), "ymin": 0, - "x_axis": df['name'].values.tolist(), + "x_axis": df["name"].values.tolist(), "payload": [ { - 'name': 'Kommissionen', - 'data': df[['start_year', 'end_year']].values.tolist() + "name": "Kommissionen", + "data": df[["start_year", "end_year"]].values.tolist(), } - ] + ], } return JsonResponse(data, safe=False) def get_average_members_data(request): - rel_type = request.GET.get('rel-type') - rel_inst = request.GET.get('rel-inst') - start_year = request.GET.get('start-year') - end_year = request.GET.get('start-year') + rel_type = request.GET.get("rel-type") + rel_inst = request.GET.get("rel-inst") + start_year = request.GET.get("start-year") + end_year = request.GET.get("start-year") per_inst = PersonInstitution.objects.filter(related_institution_id__in=[3, 2]) if rel_type: data = [] else: - start_year = int(str(per_inst.order_by('start_date')[0].start_date)[:4]) - end_year = int(str(per_inst.order_by('-start_date')[0].start_date)[:4]) + start_year = int(str(per_inst.order_by("start_date")[0].start_date)[:4]) + end_year = int(str(per_inst.order_by("-start_date")[0].start_date)[:4]) qs = [ { - 'year': x, - 'members_new': per_inst.filter(start_date__year=x).count(), - 'members_all': per_inst.filter( + "year": x, + "members_new": per_inst.filter(start_date__year=x).count(), + "members_all": per_inst.filter( start_date__year__lte=x, end_date__year__gte=x ).count(), - } for x in range(1847, 2015) + } + for x in range(1847, 2015) ] df = pd.DataFrame(qs) payload = [ { - 'name': 'all members', - 'data': [x for x in df[['members_all']].values.tolist()] + "name": "all members", + "data": [x for x in df[["members_all"]].values.tolist()], }, { - 'name': 'new members', - 'data': [x for x in df[['members_new']].values.tolist()] - } + "name": "new members", + "data": [x for x in df[["members_new"]].values.tolist()], + }, ] data = { "items": "some", - "title": "{}".format('Members by Year'), - "subtitle": "Person Institution relation type {}".format('some type'), + "title": "{}".format("Members by Year"), + "subtitle": "Person Institution relation type {}".format("some type"), "legendy": "legendy", "legendx": "legendx", "categories": "sorted(dates)", "measuredObject": "{}".format("Persons average Age"), "ymin": 0, - "x_axis": df['year'].values.tolist(), - "payload": payload + "x_axis": df["year"].values.tolist(), + "payload": payload, } return JsonResponse(data, safe=False) def get_average_age_data(request): - rel_type = request.GET.get('rel-type') - rel_inst = request.GET.get('rel-inst') - start_year = request.GET.get('start-year') - end_year = request.GET.get('start-year') + rel_type = request.GET.get("rel-type") + rel_inst = request.GET.get("rel-inst") + start_year = request.GET.get("start-year") + end_year = request.GET.get("start-year") per_inst = PersonInstitution.objects.filter(related_institution_id__in=[3, 2]) if rel_type: data = [] else: - start_year = int(str(per_inst.order_by('start_date')[0].start_date)[:4]) - end_year = int(str(per_inst.order_by('-start_date')[0].start_date)[:4]) + start_year = int(str(per_inst.order_by("start_date")[0].start_date)[:4]) + end_year = int(str(per_inst.order_by("-start_date")[0].start_date)[:4]) qs = [ { - 'year': x, - 'members_new': per_inst.filter(start_date__year=x).count(), - 'avg_birth_new': per_inst.filter(start_date__year=x) - .aggregate( - Avg('related_person__start_date__year') - )['related_person__start_date__year__avg'], - 'members_all': per_inst.filter( + "year": x, + "members_new": per_inst.filter(start_date__year=x).count(), + "avg_birth_new": per_inst.filter(start_date__year=x).aggregate( + Avg("related_person__start_date__year") + )["related_person__start_date__year__avg"], + "members_all": per_inst.filter( start_date__year__lte=x, end_date__year__gte=x ).count(), - 'avg_birth': per_inst.filter(start_date__year__lte=x, end_date__year__gte=x) - .aggregate( - Avg('related_person__start_date__year') - )['related_person__start_date__year__avg'] - } for x in range(1847, 2015) + "avg_birth": per_inst.filter( + start_date__year__lte=x, end_date__year__gte=x + ).aggregate(Avg("related_person__start_date__year"))[ + "related_person__start_date__year__avg" + ], + } + for x in range(1847, 2015) ] df = pd.DataFrame(qs) - df['avg_age_new'] = df.apply(lambda row: calculate_age(row, 'avg_birth_new'), axis=1) - df['avg_age_all'] = df.apply(lambda row: calculate_age(row, 'avg_birth'), axis=1) + df["avg_age_new"] = df.apply( + lambda row: calculate_age(row, "avg_birth_new"), axis=1 + ) + df["avg_age_all"] = df.apply( + lambda row: calculate_age(row, "avg_birth"), axis=1 + ) payload = [ { - 'name': 'average age all', - 'data': [x for x in df[['avg_age_all']].values.tolist()] + "name": "average age all", + "data": [x for x in df[["avg_age_all"]].values.tolist()], }, { - 'name': 'average age new', - 'data': [x for x in df[['avg_age_new']].values.tolist()] - } + "name": "average age new", + "data": [x for x in df[["avg_age_new"]].values.tolist()], + }, ] data = { "items": "some", - "title": "{}".format('Average Age by Year'), - "subtitle": "Person Institution relation type {}".format('some type'), + "title": "{}".format("Average Age by Year"), + "subtitle": "Person Institution relation type {}".format("some type"), "legendy": "legendy", "legendx": "legendx", "categories": "sorted(dates)", "measuredObject": "{}".format("Persons average Age"), "ymin": 0, - "x_axis": df['year'].values.tolist(), - "payload": payload + "x_axis": df["year"].values.tolist(), + "payload": payload, } return JsonResponse(data, safe=False) def get_heatmap_data(request): - rel_type = request.GET.get('rel-type') + rel_type = request.GET.get("rel-type") places = [ ( x.related_place.lat, x.related_place.lng, - ) for x in PersonPlace.objects.filter( - relation_type__name=rel_type - ).exclude(related_place__lat__isnull=True) + ) + for x in PersonPlace.objects.filter(relation_type__name=rel_type).exclude( + related_place__lat__isnull=True + ) ] return JsonResponse(places, safe=False) diff --git a/apis_core/apis_vocabularies/admin.py b/apis_core/apis_vocabularies/admin.py index 82d3ace..9842c17 100644 --- a/apis_core/apis_vocabularies/admin.py +++ b/apis_core/apis_vocabularies/admin.py @@ -7,16 +7,16 @@ class BaseAdminVocabularies(admin.ModelAdmin): - '''Base class used to store the User foreign key in the background when someone adds a vocab.''' + """Base class used to store the User foreign key in the background when someone adds a vocab.""" - search_fields = ('name', 'parent_class__name') - exclude = ('userAdded',) + search_fields = ("name", "parent_class__name") + exclude = ("userAdded",) actions = [csvexport] def get_fields(self, request, obj=None): lst = super(BaseAdminVocabularies, self).get_fields(request, obj=None) if not request.user.is_superuser: - lst.remove('status') + lst.remove("status") return lst def get_queryset(self, request): @@ -31,25 +31,28 @@ def save_model(self, request, obj, form, change): obj.save() def formfield_for_foreignkey(self, db_field, request, **kwargs): - attrs = {'data-placeholder': 'Type to get suggestions', - 'data-minimum-input-length': getattr(settings, "APIS_MIN_CHAR", 3), - 'data-html': True} + attrs = { + "data-placeholder": "Type to get suggestions", + "data-minimum-input-length": getattr(settings, "APIS_MIN_CHAR", 3), + "data-html": True, + } c_name = db_field.model.__name__ qs = super(BaseAdminVocabularies, self).get_queryset(request) - if c_name.endswith('Relation') and db_field.name == 'parent_class': + if c_name.endswith("Relation") and db_field.name == "parent_class": qs = db_field.model if db_field.name == "parent_class" and request.user.is_superuser: kwargs["queryset"] = qs.all() elif db_field.name == "parent_class": - kwargs["queryset"] = qs.filter(userAdded__groups__in=request.user.groups.all()) - kwargs['widget'] = autocomplete.Select2( + kwargs["queryset"] = qs.filter( + userAdded__groups__in=request.user.groups.all() + ) + kwargs["widget"] = autocomplete.Select2( url=reverse( - 'apis:apis_vocabularies:generic_vocabularies_autocomplete', - kwargs={ - 'vocab': self.model.__name__.lower(), - 'direct': 'normal' - } - ), attrs=attrs) + "apis:apis_vocabularies:generic_vocabularies_autocomplete", + kwargs={"vocab": self.model.__name__.lower(), "direct": "normal"}, + ), + attrs=attrs, + ) return super(BaseAdminVocabularies, self).formfield_for_foreignkey( db_field, request, **kwargs @@ -57,17 +60,16 @@ def formfield_for_foreignkey(self, db_field, request, **kwargs): class VocabsRelationAdmin(BaseAdminVocabularies): - list_display = ('name', 'label') - search_fields = ('name', 'parent_class__name') - + list_display = ("name", "label") + search_fields = ("name", "parent_class__name") -app = apps.get_app_config('apis_vocabularies') +app = apps.get_app_config("apis_vocabularies") for model_name, model in app.models.items(): - if model_name.endswith('relation'): + if model_name.endswith("relation"): admin.site.register(model, VocabsRelationAdmin) else: admin.site.register(model, BaseAdminVocabularies) diff --git a/apis_core/apis_vocabularies/api_renderers.py b/apis_core/apis_vocabularies/api_renderers.py index 18a8527..36df595 100644 --- a/apis_core/apis_vocabularies/api_renderers.py +++ b/apis_core/apis_vocabularies/api_renderers.py @@ -10,24 +10,33 @@ from webpage.utils import PROJECT_METADATA -base_uri_web = getattr(settings, 'APIS_BASE_URI', 'http://apis.info') -if base_uri_web.endswith('/'): +base_uri_web = getattr(settings, "APIS_BASE_URI", "http://apis.info") +if base_uri_web.endswith("/"): base_uri_web = base_uri_web[:-1] -lang = getattr(settings, 'LANGUAGE_CODE', 'de') +lang = getattr(settings, "LANGUAGE_CODE", "de") class VocabToSkos(renderers.BaseRenderer): media_type = "text/rdf" - def render(self, data1, media_type=None, g=None, renderer_context=None, format1=None, binary=True, store=None): + def render( + self, + data1, + media_type=None, + g=None, + renderer_context=None, + format1=None, + binary=True, + store=None, + ): if g is None: g = Graph() set_skos = getattr(settings, "APIS_SKOSMOS") - base_uri = set_skos.get('url') - if base_uri.endswith('/'): + base_uri = set_skos.get("url") + if base_uri.endswith("/"): base_uri = base_uri[:-1] - title = PROJECT_METADATA.get('title', 'TITLE') + title = PROJECT_METADATA.get("title", "TITLE") v_title = set_skos.get("vocabs-name", False) if not v_title: v_title = f"{title.lower()}thesaurus/" @@ -36,34 +45,52 @@ def render(self, data1, media_type=None, g=None, renderer_context=None, format1= g.add((uri, RDFS.label, Literal(f"{title}Schema", lang=lang))) g.add((RDF.Description, RDF.about, uri)) g.add((uri, RDF.type, SKOS.ConceptScheme)) - g.add((uri, DC.description, Literal(f"{set_skos.get('description', 'DESCRIPTION')}", lang=lang))) - g.add((uri, DC.license, URIRef(set_skos.get("license", "https://opensource.org/licenses/MIT")))) + g.add( + ( + uri, + DC.description, + Literal(f"{set_skos.get('description', 'DESCRIPTION')}", lang=lang), + ) + ) + g.add( + ( + uri, + DC.license, + URIRef(set_skos.get("license", "https://opensource.org/licenses/MIT")), + ) + ) g.add((uri, DC.relation, URIRef(base_uri_web))) - + cols = {} for d in data1: if not cols.get(d["vocab_name"], False): vc = URIRef(f"{uri_1}/{d['vocab_name']}") g.add((vc, RDF.type, SKOS.Collection)) - g.add((vc, SKOS.prefLabel, Literal(d['vocab_name'], lang=lang))) + g.add((vc, SKOS.prefLabel, Literal(d["vocab_name"], lang=lang))) cols[d["vocab_name"]] = vc else: vc = cols.get(d["vocab_name"]) conc = URIRef(f"{uri_1}/{d['id']}") g.add((vc, SKOS.member, conc)) g.add((conc, RDF.type, SKOS.Concept)) - g.add((conc, SKOS.prefLabel, Literal(d['name'], lang=lang))) - if d['name'] != d['label']: - g.add((conc, SKOS.altLabel, Literal(d['label'], lang=lang))) - rev = d.get('name_reverse', False) + g.add((conc, SKOS.prefLabel, Literal(d["name"], lang=lang))) + if d["name"] != d["label"]: + g.add((conc, SKOS.altLabel, Literal(d["label"], lang=lang))) + rev = d.get("name_reverse", False) if rev: g.add((conc, SKOS.altLabel, Literal(f"reverse name: {rev}", lang=lang))) - if d['name_reverse'] != d['label_reverse']: - g.add((conc, SKOS.altLabel, Literal(f"reverse label: {d['label_reverse']}", lang=lang))) - if d.get('userAdded', False): - if (uri, DC.creator, Literal(d['userAdded'], lang=lang)) not in g: - g.add((uri, DC.creator, Literal(d['userAdded'], lang=lang))) - broader = d.get('parent_class', False) + if d["name_reverse"] != d["label_reverse"]: + g.add( + ( + conc, + SKOS.altLabel, + Literal(f"reverse label: {d['label_reverse']}", lang=lang), + ) + ) + if d.get("userAdded", False): + if (uri, DC.creator, Literal(d["userAdded"], lang=lang)) not in g: + g.add((uri, DC.creator, Literal(d["userAdded"], lang=lang))) + broader = d.get("parent_class", False) if broader: g.add((conc, SKOS.broader, URIRef(f"{uri_1}/{broader}"))) else: diff --git a/apis_core/apis_vocabularies/api_views.py b/apis_core/apis_vocabularies/api_views.py index dda5f5c..57539c8 100644 --- a/apis_core/apis_vocabularies/api_views.py +++ b/apis_core/apis_vocabularies/api_views.py @@ -2,21 +2,58 @@ from rest_framework import viewsets from .models import ( - InstitutionInstitutionRelation, TextType, CollectionType, VocabsBaseClass, - InstitutionType, ProfessionType, PlaceType, PersonInstitutionRelation, PersonPlaceRelation, PersonPersonRelation, - VocabNames, InstitutionPlaceRelation, PersonEventRelation, - PersonWorkRelation, InstitutionEventRelation, InstitutionWorkRelation, PlaceWorkRelation, PlaceEventRelation, - PlacePlaceRelation, EventWorkRelation, EventEventRelation, WorkWorkRelation, EventType, WorkType) + InstitutionInstitutionRelation, + TextType, + CollectionType, + VocabsBaseClass, + InstitutionType, + ProfessionType, + PlaceType, + PersonInstitutionRelation, + PersonPlaceRelation, + PersonPersonRelation, + VocabNames, + InstitutionPlaceRelation, + PersonEventRelation, + PersonWorkRelation, + InstitutionEventRelation, + InstitutionWorkRelation, + PlaceWorkRelation, + PlaceEventRelation, + PlacePlaceRelation, + EventWorkRelation, + EventEventRelation, + WorkWorkRelation, + EventType, + WorkType, +) from .serializers import ( - InstitutionInstitutionRelationSerializer, TextTypeSerializer, - CollectionTypeSerializer, VocabsBaseClassSerializer, - InstitutionTypeSerializer, ProfessionTypeSerializer, InstitutionPlaceRelationSerializer, - PlaceTypeSerializer, PersonInstitutionRelationSerializer, - PersonPlaceRelationSerializer, UserAccSerializer, VocabNamesSerializer, - PersonPersonRelationSerializer, PersonEventRelationSerializer, PersonWorkRelationSerializer, - InstitutionEventRelationSerializer, InstitutionWorkRelationSerializer, PlaceEventRelationSerializer, - PlaceWorkRelationSerializer, PlacePlaceRelationSerializer, EventWorkRelationSerializer, - EventEventRelationSerializer, WorkWorkRelationSerializer, EventTypeSerializer, WorkTypeSerializer) + InstitutionInstitutionRelationSerializer, + TextTypeSerializer, + CollectionTypeSerializer, + VocabsBaseClassSerializer, + InstitutionTypeSerializer, + ProfessionTypeSerializer, + InstitutionPlaceRelationSerializer, + PlaceTypeSerializer, + PersonInstitutionRelationSerializer, + PersonPlaceRelationSerializer, + UserAccSerializer, + VocabNamesSerializer, + PersonPersonRelationSerializer, + PersonEventRelationSerializer, + PersonWorkRelationSerializer, + InstitutionEventRelationSerializer, + InstitutionWorkRelationSerializer, + PlaceEventRelationSerializer, + PlaceWorkRelationSerializer, + PlacePlaceRelationSerializer, + EventWorkRelationSerializer, + EventEventRelationSerializer, + WorkWorkRelationSerializer, + EventTypeSerializer, + WorkTypeSerializer, +) ########################################################### @@ -163,6 +200,3 @@ class EventEventRelationViewSet(viewsets.ModelViewSet): class WorkWorkRelationViewSet(viewsets.ModelViewSet): queryset = WorkWorkRelation.objects.all() serializer_class = WorkWorkRelationSerializer - - - diff --git a/apis_core/apis_vocabularies/management/commands/basic_rel_vocabs.py b/apis_core/apis_vocabularies/management/commands/basic_rel_vocabs.py index 5ca42bf..6c080b7 100644 --- a/apis_core/apis_vocabularies/management/commands/basic_rel_vocabs.py +++ b/apis_core/apis_vocabularies/management/commands/basic_rel_vocabs.py @@ -7,9 +7,6 @@ class Command(BaseCommand): help = "creates 'related' vocabs entries for all Relation classes" def handle(self, *args, **kwargs): - for x in apps.get_app_config('apis_vocabularies').get_models(): - if x.__name__.endswith('Relation'): - x.objects.get_or_create( - name="related", - name_reverse="related" - ) + for x in apps.get_app_config("apis_vocabularies").get_models(): + if x.__name__.endswith("Relation"): + x.objects.get_or_create(name="related", name_reverse="related") diff --git a/apis_core/apis_vocabularies/management/commands/import_rel_vocabs.py b/apis_core/apis_vocabularies/management/commands/import_rel_vocabs.py index 4dd8649..22b98e1 100644 --- a/apis_core/apis_vocabularies/management/commands/import_rel_vocabs.py +++ b/apis_core/apis_vocabularies/management/commands/import_rel_vocabs.py @@ -24,11 +24,11 @@ class Command(BaseCommand): help = "creates vocab entries (for relations) stored in the passed in Excel-Sheet" def add_arguments(self, parser): - parser.add_argument('data', type=str, help='Location of your Excel-Sheet') + parser.add_argument("data", type=str, help="Location of your Excel-Sheet") # A command must define handle() def handle(self, *args, **kwargs): - file = kwargs['data'] + file = kwargs["data"] excel_book = pd.read_excel(file, None) for x in excel_book.keys(): df = pd.read_excel(file, x) @@ -41,7 +41,7 @@ def handle(self, *args, **kwargs): if isinstance(row[row_key], str): temp_item = create_vocab_item(vocab_class, row, row_key) if c > 1: - parent_key = "ebene_{}".format(c-1) + parent_key = "ebene_{}".format(c - 1) parent = create_vocab_item(vocab_class, row, parent_key) temp_item.parent_class = parent temp_item.save() diff --git a/apis_core/apis_vocabularies/management/commands/import_wd_professions.py b/apis_core/apis_vocabularies/management/commands/import_wd_professions.py index c9f331b..6cab346 100644 --- a/apis_core/apis_vocabularies/management/commands/import_wd_professions.py +++ b/apis_core/apis_vocabularies/management/commands/import_wd_professions.py @@ -10,13 +10,13 @@ class Command(BaseCommand): def add_arguments(self, parser): parser.add_argument( - '--lang', + "--lang", default="en", - help='A two digit language code. Defaults to en', + help="A two digit language code. Defaults to en", ) def handle(self, *args, **options): - url = 'https://query.wikidata.org/sparql' + url = "https://query.wikidata.org/sparql" query = """ SELECT ?item ?itemLabel ?description WHERE @@ -26,23 +26,18 @@ def handle(self, *args, **options): SERVICE wikibase:label { bd:serviceParam wikibase:language "%s". } } """ - lang = options['lang'] - r = requests.get(url, params={'format': 'json', 'query': query % (lang, lang)}) + lang = options["lang"] + r = requests.get(url, params={"format": "json", "query": query % (lang, lang)}) data = r.json() data = [ - [ - x['item']['value'], - x['itemLabel']['value'], - x['description']['value'] - ] for x in data['results']['bindings'] + [x["item"]["value"], x["itemLabel"]["value"], x["description"]["value"]] + for x in data["results"]["bindings"] ] for x in data: - if x[1].startswith('Q') or x[1].startswith('L'): + if x[1].startswith("Q") or x[1].startswith("L"): pass else: label = f"{x[1]} ({x[0].split('/')[-1]})" - item, _ = ProfessionType.objects.get_or_create( - name=label - ) + item, _ = ProfessionType.objects.get_or_create(name=label) item.description = x[2] print(item) diff --git a/apis_core/apis_vocabularies/migrations/0001_initial.py b/apis_core/apis_vocabularies/migrations/0001_initial.py index 3bc684e..0746394 100644 --- a/apis_core/apis_vocabularies/migrations/0001_initial.py +++ b/apis_core/apis_vocabularies/migrations/0001_initial.py @@ -10,287 +10,649 @@ class Migration(migrations.Migration): initial = True dependencies = [ - ('apis_entities', '0001_initial'), - ('apis_relations', '0001_initial'), - ('apis_metainfo', '0001_initial'), + ("apis_entities", "0001_initial"), + ("apis_relations", "0001_initial"), + ("apis_metainfo", "0001_initial"), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( - name='VocabNames', + name="VocabNames", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=255)), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("name", models.CharField(max_length=255)), ], ), migrations.CreateModel( - name='VocabsBaseClass', + name="VocabsBaseClass", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=255, verbose_name='Name')), - ('description', models.TextField(blank=True, help_text='Brief description of the used term.')), - ('status', models.CharField(choices=[('rej', 'rejected'), ('ac', 'accepted'), ('can', 'candidate'), ('del', 'deleted')], default='can', max_length=4)), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("name", models.CharField(max_length=255, verbose_name="Name")), + ( + "description", + models.TextField( + blank=True, help_text="Brief description of the used term." + ), + ), + ( + "status", + models.CharField( + choices=[ + ("rej", "rejected"), + ("ac", "accepted"), + ("can", "candidate"), + ("del", "deleted"), + ], + default="can", + max_length=4, + ), + ), ], ), migrations.CreateModel( - name='VocabsUri', + name="VocabsUri", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('uri', models.URLField()), - ('domain', models.CharField(blank=True, max_length=255)), - ('rdf_link', models.URLField(blank=True)), - ('loaded', models.BooleanField(default=False)), - ('loaded_time', models.DateTimeField(blank=True, null=True)), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("uri", models.URLField()), + ("domain", models.CharField(blank=True, max_length=255)), + ("rdf_link", models.URLField(blank=True)), + ("loaded", models.BooleanField(default=False)), + ("loaded_time", models.DateTimeField(blank=True, null=True)), ], ), migrations.CreateModel( - name='CollectionType', + name="CollectionType", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='EventType', + name="EventType", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='InstitutionType', + name="InstitutionType", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='LabelType', + name="LabelType", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='PlaceType', + name="PlaceType", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='ProfessionType', + name="ProfessionType", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='RelationBaseClass', + name="RelationBaseClass", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), - ('name_reverse', models.CharField(blank=True, help_text='Inverse relation like: "is sub-class of" vs. "is super-class of".', max_length=255, verbose_name='Name reverse')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), + ( + "name_reverse", + models.CharField( + blank=True, + help_text='Inverse relation like: "is sub-class of" vs. "is super-class of".', + max_length=255, + verbose_name="Name reverse", + ), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='TextType', + name="TextType", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), - ('entity', models.CharField(max_length=255)), - ('collections', models.ManyToManyField(blank=True, to='apis_metainfo.Collection')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), + ("entity", models.CharField(max_length=255)), + ( + "collections", + models.ManyToManyField(blank=True, to="apis_metainfo.Collection"), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='Title', + name="Title", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), - ('abbreviation', models.CharField(blank=True, max_length=10)), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), + ("abbreviation", models.CharField(blank=True, max_length=10)), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.CreateModel( - name='WorkType', + name="WorkType", fields=[ - ('vocabsbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.VocabsBaseClass')), + ( + "vocabsbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.VocabsBaseClass", + ), + ), ], - bases=('apis_vocabularies.vocabsbaseclass',), + bases=("apis_vocabularies.vocabsbaseclass",), ), migrations.AddField( - model_name='vocabsuri', - name='vocab', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='apis_vocabularies.VocabsBaseClass'), + model_name="vocabsuri", + name="vocab", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="apis_vocabularies.VocabsBaseClass", + ), ), migrations.AddField( - model_name='vocabsbaseclass', - name='parent_class', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='apis_vocabularies.VocabsBaseClass'), + model_name="vocabsbaseclass", + name="parent_class", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="apis_vocabularies.VocabsBaseClass", + ), ), migrations.AddField( - model_name='vocabsbaseclass', - name='userAdded', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL), + model_name="vocabsbaseclass", + name="userAdded", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to=settings.AUTH_USER_MODEL, + ), ), migrations.AddField( - model_name='vocabsbaseclass', - name='vocab_name', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='apis_vocabularies.VocabNames'), + model_name="vocabsbaseclass", + name="vocab_name", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="apis_vocabularies.VocabNames", + ), ), migrations.CreateModel( - name='EventEventRelation', + name="EventEventRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), - ('eventb_set', models.ManyToManyField(blank=True, related_name='eventa_relationtype_set', through='apis_relations.EventEvent', to='apis_entities.Event')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), + ( + "eventb_set", + models.ManyToManyField( + blank=True, + related_name="eventa_relationtype_set", + through="apis_relations.EventEvent", + to="apis_entities.Event", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='EventWorkRelation', + name="EventWorkRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='InstitutionEventRelation', + name="InstitutionEventRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='InstitutionInstitutionRelation', + name="InstitutionInstitutionRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), - ('institutionB_set', models.ManyToManyField(blank=True, related_name='institutionA_relationtype_set', through='apis_relations.InstitutionInstitution', to='apis_entities.Institution')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), + ( + "institutionB_set", + models.ManyToManyField( + blank=True, + related_name="institutionA_relationtype_set", + through="apis_relations.InstitutionInstitution", + to="apis_entities.Institution", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='InstitutionPlaceRelation', + name="InstitutionPlaceRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='InstitutionWorkRelation', + name="InstitutionWorkRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='PersonEventRelation', + name="PersonEventRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='PersonInstitutionRelation', + name="PersonInstitutionRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='PersonPersonRelation', + name="PersonPersonRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), - ('personB_set', models.ManyToManyField(blank=True, related_name='personA_relationtype_set', through='apis_relations.PersonPerson', to='apis_entities.Person')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), + ( + "personB_set", + models.ManyToManyField( + blank=True, + related_name="personA_relationtype_set", + through="apis_relations.PersonPerson", + to="apis_entities.Person", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='PersonPlaceRelation', + name="PersonPlaceRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='PersonWorkRelation', + name="PersonWorkRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='PlaceEventRelation', + name="PlaceEventRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='PlacePlaceRelation', + name="PlacePlaceRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), - ('placeB_set', models.ManyToManyField(blank=True, related_name='placeA_relationtype_set', through='apis_relations.PlacePlace', to='apis_entities.Place')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), + ( + "placeB_set", + models.ManyToManyField( + blank=True, + related_name="placeA_relationtype_set", + through="apis_relations.PlacePlace", + to="apis_entities.Place", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='PlaceWorkRelation', + name="PlaceWorkRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name='WorkWorkRelation', + name="WorkWorkRelation", fields=[ - ('relationbaseclass_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='apis_vocabularies.RelationBaseClass')), - ('workB_set', models.ManyToManyField(blank=True, related_name='workA_relationtype_set', through='apis_relations.WorkWork', to='apis_entities.Work')), + ( + "relationbaseclass_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="apis_vocabularies.RelationBaseClass", + ), + ), + ( + "workB_set", + models.ManyToManyField( + blank=True, + related_name="workA_relationtype_set", + through="apis_relations.WorkWork", + to="apis_entities.Work", + ), + ), ], options={ - 'abstract': False, + "abstract": False, }, - bases=('apis_vocabularies.relationbaseclass',), + bases=("apis_vocabularies.relationbaseclass",), ), ] diff --git a/apis_core/apis_vocabularies/migrations/0002_texttype_lang.py b/apis_core/apis_vocabularies/migrations/0002_texttype_lang.py index b5774d7..f0af51b 100644 --- a/apis_core/apis_vocabularies/migrations/0002_texttype_lang.py +++ b/apis_core/apis_vocabularies/migrations/0002_texttype_lang.py @@ -6,13 +6,20 @@ class Migration(migrations.Migration): dependencies = [ - ('apis_vocabularies', '0001_initial'), + ("apis_vocabularies", "0001_initial"), ] operations = [ migrations.AddField( - model_name='texttype', - name='lang', - field=models.CharField(blank=True, default='deu', help_text="The ISO 639-3 (or 2) code for the label's language.", max_length=3, null=True, verbose_name='ISO Code'), + model_name="texttype", + name="lang", + field=models.CharField( + blank=True, + default="deu", + help_text="The ISO 639-3 (or 2) code for the label's language.", + max_length=3, + null=True, + verbose_name="ISO Code", + ), ), ] diff --git a/apis_core/apis_vocabularies/models.py b/apis_core/apis_vocabularies/models.py index 776469a..994fd4c 100644 --- a/apis_core/apis_vocabularies/models.py +++ b/apis_core/apis_vocabularies/models.py @@ -10,6 +10,7 @@ class VocabNames(models.Model): """List of Vocabulary names to allow the easy retrieval\ of Vovcabulary names and classes from the VocabsBaseClass""" + name = models.CharField(max_length=255) def get_vocab_label(self): @@ -17,27 +18,26 @@ def get_vocab_label(self): class VocabsBaseClass(models.Model): - """ An abstract base class for other classes which contain so called + """An abstract base class for other classes which contain so called 'controlled vocabulary' to describe subtypes of main temporalized entites""" + choices_status = ( - ('rej', 'rejected'), - ('ac', 'accepted'), - ('can', 'candidate'), - ('del', 'deleted') + ("rej", "rejected"), + ("ac", "accepted"), + ("can", "candidate"), + ("del", "deleted"), ) - name = models.CharField(max_length=255, verbose_name='Name') + name = models.CharField(max_length=255, verbose_name="Name") description = models.TextField( - blank=True, - help_text="Brief description of the used term.") + blank=True, help_text="Brief description of the used term." + ) parent_class = models.ForeignKey( - 'self', blank=True, null=True, - on_delete=models.CASCADE + "self", blank=True, null=True, on_delete=models.CASCADE ) - status = models.CharField(max_length=4, choices=choices_status, default='can') + status = models.CharField(max_length=4, choices=choices_status, default="can") vocab_name = models.ForeignKey( - VocabNames, blank=True, null=True, - on_delete=models.SET_NULL + VocabNames, blank=True, null=True, on_delete=models.SET_NULL ) def __str__(self): @@ -46,8 +46,10 @@ def __str__(self): def save(self, *args, **kwargs): d, created = VocabNames.objects.get_or_create(name=type(self).__name__) self.vocab_name = d - if self.name != unicodedata.normalize('NFC', self.name): # secure correct unicode encoding - self.name = unicodedata.normalize('NFC', self.name) + if self.name != unicodedata.normalize( + "NFC", self.name + ): # secure correct unicode encoding + self.name = unicodedata.normalize("NFC", self.name) super(VocabsBaseClass, self).save(*args, **kwargs) return self @@ -56,21 +58,22 @@ def label(self): d = self res = self.name while d.parent_class: - res = d.parent_class.name + ' >> ' + res + res = d.parent_class.name + " >> " + res d = d.parent_class return res class RelationBaseClass(VocabsBaseClass): - """ An abstract base class for other classes which contain so called + """An abstract base class for other classes which contain so called 'controlled vocabulary' to describe the relations between main temporalized entities ('db_')""" name_reverse = models.CharField( max_length=255, - verbose_name='Name reverse', + verbose_name="Name reverse", help_text='Inverse relation like: "is sub-class of" vs. "is super-class of".', - blank=True) + blank=True, + ) def __str__(self): return self.name @@ -79,23 +82,23 @@ def __str__(self): def label_reverse(self): d = self if len(self.name_reverse) < 1: - res = '(' + self.name + ')' + res = "(" + self.name + ")" else: res = self.name_reverse while d.parent_class: try: t = RelationBaseClass.objects.get(pk=d.parent_class.pk).name_reverse if len(t) < 1: - t = '(' + d.parent_class.name + ')' + t = "(" + d.parent_class.name + ")" except Exception as e: - t = '(' + d.parent_class.name + ')' - res = t + ' >> ' + res + t = "(" + d.parent_class.name + ")" + res = t + " >> " + res d = d.parent_class return res def save(self, *args, **kwargs): - if self.name_reverse != unicodedata.normalize('NFC', self.name_reverse): - self.name_reverse = unicodedata.normalize('NFC', self.name_reverse) + if self.name_reverse != unicodedata.normalize("NFC", self.name_reverse): + self.name_reverse = unicodedata.normalize("NFC", self.name_reverse) if self.name_reverse == "" or self.name_reverse == None: self.name_reverse = self.name + " [REVERSE]" @@ -108,11 +111,13 @@ class VocabsUri(models.Model): """Class to store URIs for imported types. URI class from metainfo is not used in order to keep the vocabularies module/app seperated from the rest of the application. """ + uri = models.URLField() domain = models.CharField(max_length=255, blank=True) rdf_link = models.URLField(blank=True) - vocab = models.ForeignKey(VocabsBaseClass, blank=True, null=True, - on_delete=models.CASCADE) + vocab = models.ForeignKey( + VocabsBaseClass, blank=True, null=True, on_delete=models.CASCADE + ) # loaded: set to True when RDF was loaded and parsed into the data model loaded = models.BooleanField(default=False) # loaded_time: Timestamp when file was loaded and parsed @@ -121,6 +126,7 @@ class VocabsUri(models.Model): def __str__(self): return self.uri + ####################################################################### # # entity types @@ -130,52 +136,65 @@ def __str__(self): class WorkType(VocabsBaseClass): """Holds controlled vocabularies about work-types""" + pass class Title(VocabsBaseClass): """A person´s (academic) title""" + abbreviation = models.CharField(max_length=10, blank=True) class ProfessionType(VocabsBaseClass): """Holds controlled vocabularies about profession-types""" + pass class PlaceType(VocabsBaseClass): """Holds controlled vocabularies about place-types""" + pass class InstitutionType(VocabsBaseClass): """Holds controlled vocabularies about institution-types""" + pass class EventType(VocabsBaseClass): """Holds controlled vocabularies about event-types""" + pass class LabelType(VocabsBaseClass): """Holds controlled vocabularies about label-types""" + pass class CollectionType(VocabsBaseClass): - """e.g. reseachCollection, importCollection """ + """e.g. reseachCollection, importCollection""" + pass + class TextType(VocabsBaseClass): """used to store the Text types for the forms""" + entity = models.CharField(max_length=255) - collections = models.ManyToManyField('apis_metainfo.Collection', blank=True) + collections = models.ManyToManyField("apis_metainfo.Collection", blank=True) lang = models.CharField( - max_length=3, blank=True, null=True, + max_length=3, + blank=True, + null=True, help_text="The ISO 639-3 (or 2) code for the label's language.", - verbose_name='ISO Code', default='deu') - + verbose_name="ISO Code", + default="deu", + ) ####################################################################### @@ -185,7 +204,6 @@ class TextType(VocabsBaseClass): ####################################################################### - class AbstractRelationType(RelationBaseClass): """ Abstract super class which encapsulates common logic between the different relationtypes and provides various methods @@ -199,14 +217,13 @@ class Meta: _all_relationtype_names = None _related_entity_field_names = None - # Methods dealing with all relationtypes #################################################################################################################### - + @classmethod def get_all_relationtype_classes(cls): """ - :return: list of all python classes of the relationtypes defined within this models' module + :return: list of all python classes of the relationtypes defined within this models' module """ if cls._all_relationtype_classes == None: @@ -215,11 +232,15 @@ def get_all_relationtype_classes(cls): relationtype_names = [] for relationtype_name, relationtype_class in inspect.getmembers( - sys.modules[__name__], inspect.isclass): + sys.modules[__name__], inspect.isclass + ): - if relationtype_class.__module__ == "apis_core.apis_vocabularies.models" and \ - relationtype_name != "ent_class" and \ - relationtype_name.endswith("Relation"): + if ( + relationtype_class.__module__ + == "apis_core.apis_vocabularies.models" + and relationtype_name != "ent_class" + and relationtype_name.endswith("Relation") + ): relationtype_classes.append(relationtype_class) relationtype_names.append(relationtype_name.lower()) @@ -229,7 +250,6 @@ def get_all_relationtype_classes(cls): return cls._all_relationtype_classes - @classmethod def get_relationtype_class_of_name(cls, relationtype_name): """ @@ -243,7 +263,6 @@ def get_relationtype_class_of_name(cls, relationtype_name): raise Exception("Could not find relationtype class of name:", relationtype_name) - @classmethod def get_all_relationtype_names(cls): """ @@ -256,10 +275,9 @@ def get_all_relationtype_names(cls): return cls._all_relationtype_names - # Methods dealing with related entities #################################################################################################################### - + @classmethod def get_related_entity_field_names(cls): """ @@ -277,7 +295,6 @@ def get_related_entity_field_names(cls): else: return cls._related_entity_field_names - @classmethod def add_related_entity_field_name(cls, entity_field_name): """ @@ -301,26 +318,31 @@ def add_related_entity_field_name(cls, entity_field_name): class PersonPersonRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Persons and Persons""" + pass class PersonPlaceRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Persons and Places""" + pass class PersonInstitutionRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Persons and Persons""" + pass class PersonEventRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Persons and Events""" + pass class PersonWorkRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Persons and Works""" + pass @@ -331,23 +353,28 @@ class PersonWorkRelation(AbstractRelationType): class InstitutionEventRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Institutions and Events.""" + pass class InstitutionPlaceRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Institutions and Places.""" + pass class InstitutionInstitutionRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Institutions and Institutions.""" + pass class InstitutionWorkRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Institutions and Works.""" + pass + ####################################################################### # Place-Relation-Types ####################################################################### @@ -355,16 +382,19 @@ class InstitutionWorkRelation(AbstractRelationType): class PlacePlaceRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Places and Places""" + pass class PlaceEventRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Places and Events""" + pass class PlaceWorkRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Places and Works""" + pass @@ -375,11 +405,13 @@ class PlaceWorkRelation(AbstractRelationType): class EventEventRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Events and Events""" + pass class EventWorkRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Events and Works""" + pass @@ -390,6 +422,5 @@ class EventWorkRelation(AbstractRelationType): class WorkWorkRelation(AbstractRelationType): """Holds controlled vocabularies relation types of Works and Works""" - pass - + pass diff --git a/apis_core/apis_vocabularies/serializers.py b/apis_core/apis_vocabularies/serializers.py index 1fc4d34..a794066 100644 --- a/apis_core/apis_vocabularies/serializers.py +++ b/apis_core/apis_vocabularies/serializers.py @@ -3,11 +3,32 @@ from rest_framework import serializers from .models import ( - InstitutionInstitutionRelation, TextType, CollectionType, VocabsBaseClass, - InstitutionType, ProfessionType, PlaceType, PersonInstitutionRelation, InstitutionPlaceRelation, - PersonPlaceRelation, VocabNames, PersonPersonRelation, PersonEventRelation, PersonWorkRelation, - InstitutionEventRelation, InstitutionWorkRelation, PlaceEventRelation, PlaceWorkRelation, PlacePlaceRelation, - EventWorkRelation, EventEventRelation, WorkWorkRelation, EventType, WorkType, LabelType) + InstitutionInstitutionRelation, + TextType, + CollectionType, + VocabsBaseClass, + InstitutionType, + ProfessionType, + PlaceType, + PersonInstitutionRelation, + InstitutionPlaceRelation, + PersonPlaceRelation, + VocabNames, + PersonPersonRelation, + PersonEventRelation, + PersonWorkRelation, + InstitutionEventRelation, + InstitutionWorkRelation, + PlaceEventRelation, + PlaceWorkRelation, + PlacePlaceRelation, + EventWorkRelation, + EventEventRelation, + WorkWorkRelation, + EventType, + WorkType, + LabelType, +) ########################################################### @@ -46,8 +67,9 @@ def __init__(self, *args, **kwargs): else: rt = self.instance if "Relation" in rt.__class__.__name__: - self.fields['name_reverse'] = serializers.CharField() - self.fields['label_reverse'] = serializers.CharField() + self.fields["name_reverse"] = serializers.CharField() + self.fields["label_reverse"] = serializers.CharField() + ########################################################### # @@ -57,56 +79,48 @@ def __init__(self, *args, **kwargs): class UserAccSerializer(serializers.ModelSerializer): - class Meta: model = User - fields = ['username', 'email'] + fields = ["username", "email"] class VocabsBaseSerializer(serializers.HyperlinkedModelSerializer): userAdded = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:user-detail", - lookup_field="pk", - read_only=True + view_name="apis:apis_api:user-detail", lookup_field="pk", read_only=True ) parent_class = serializers.HyperlinkedRelatedField( view_name="apis:apis_api:vocabsbaseclass-detail", lookup_field="pk", - read_only=True + read_only=True, ) vocab_name = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:vocabnames-detail", - lookup_field="pk", - read_only=True + view_name="apis:apis_api:vocabnames-detail", lookup_field="pk", read_only=True ) class CollectionTypeSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:collectiontype-detail", - lookup_field="pk" + view_name="apis:apis_api:collectiontype-detail", lookup_field="pk" ) class Meta: - fields = '__all__' + fields = "__all__" model = CollectionType class VocabsBaseClassSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:vocabsbaseclass-detail", - lookup_field="pk" + view_name="apis:apis_api:vocabsbaseclass-detail", lookup_field="pk" ) class Meta: - fields = '__all__' + fields = "__all__" model = VocabsBaseClass class VocabNamesSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = VocabNames @@ -119,82 +133,76 @@ class Meta: class TextTypeSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:texttype-detail", - lookup_field="pk" + view_name="apis:apis_api:texttype-detail", lookup_field="pk" ) collections = serializers.HyperlinkedRelatedField( view_name="apis:apis_api:collection-detail", lookup_field="pk", many=True, - read_only=True + read_only=True, ) class Meta: - fields = '__all__' + fields = "__all__" model = TextType class InstitutionTypeSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:institutiontype-detail", - lookup_field="pk" + view_name="apis:apis_api:institutiontype-detail", lookup_field="pk" ) class Meta: - fields = '__all__' + fields = "__all__" model = InstitutionType class ProfessionTypeSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:profession-detail", - lookup_field="pk" + view_name="apis:apis_api:profession-detail", lookup_field="pk" ) class Meta: - fields = '__all__' + fields = "__all__" model = ProfessionType class PlaceTypeSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:placetype-detail", - lookup_field="pk" + view_name="apis:apis_api:placetype-detail", lookup_field="pk" ) class Meta: - fields = '__all__' + fields = "__all__" model = PlaceType class EventTypeSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:eventtype-detail", - lookup_field="pk" + view_name="apis:apis_api:eventtype-detail", lookup_field="pk" ) class Meta: - fields = '__all__' + fields = "__all__" model = EventType class WorkTypeSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:worktype-detail", - lookup_field="pk" + view_name="apis:apis_api:worktype-detail", lookup_field="pk" ) class Meta: - fields = '__all__' + fields = "__all__" model = WorkType class LabelTypeMinimalSerializer(serializers.ModelSerializer): - class Meta: - fields = ('id', 'name') + fields = ("id", "name") model = LabelType + ##################################################################### # # Relations @@ -203,110 +211,95 @@ class Meta: class InstitutionInstitutionRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = InstitutionInstitutionRelation class PersonPersonRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = PersonPersonRelation class PersonInstitutionRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = PersonInstitutionRelation class PersonPlaceRelationSerializer(VocabsBaseSerializer): url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:personplacerelation-detail", - lookup_field="pk" + view_name="apis:apis_api:personplacerelation-detail", lookup_field="pk" ) class Meta: - fields = '__all__' + fields = "__all__" model = PersonPlaceRelation class PersonEventRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = PersonEventRelation class PersonWorkRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = PersonWorkRelation class InstitutionPlaceRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = InstitutionPlaceRelation class InstitutionEventRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = InstitutionEventRelation class InstitutionWorkRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = InstitutionWorkRelation class PlaceEventRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = PlaceEventRelation class PlaceWorkRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = PlaceWorkRelation class PlacePlaceRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = PlacePlaceRelation class EventWorkRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = EventWorkRelation class EventEventRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = EventEventRelation class WorkWorkRelationSerializer(VocabsBaseSerializer): - class Meta: - fields = '__all__' + fields = "__all__" model = WorkWorkRelation diff --git a/apis_core/apis_vocabularies/urls.py b/apis_core/apis_vocabularies/urls.py index a5c07ac..e840527 100644 --- a/apis_core/apis_vocabularies/urls.py +++ b/apis_core/apis_vocabularies/urls.py @@ -7,7 +7,8 @@ urlpatterns = [ path("download//", views.dl_vocabs_as_csv, name="dl-vocabs"), - path("autocomplete///", + path( + "autocomplete///", GenericVocabulariesAutocomplete.as_view(), name="generic_vocabularies_autocomplete", ), diff --git a/apis_core/apis_vocabularies/views.py b/apis_core/apis_vocabularies/views.py index 7e1bd38..ad1dc9c 100644 --- a/apis_core/apis_vocabularies/views.py +++ b/apis_core/apis_vocabularies/views.py @@ -6,22 +6,20 @@ @login_required def dl_vocabs_as_csv(request, model_name): - kwargs = { - "app_label": "apis_vocabularies", - "entity": model_name - } + kwargs = {"app_label": "apis_vocabularies", "entity": model_name} model = ContentType.objects.get( app_label=kwargs.get("app_label"), model=kwargs.get("entity").lower() ).model_class() data = [[x.id, x.name, x.parent_class] for x in model.objects.all()] - columns = ['id', 'name', 'parent_class'] + columns = ["id", "name", "parent_class"] df = pd.DataFrame(data, columns=columns) filename = f"{kwargs.get('entity').lower()}.csv" # Create the HttpResponse object with the appropriate CSV header. - response = HttpResponse(content_type='text/csv') - response['Content-Disposition'] = f"attachment; filename='{filename}'" + response = HttpResponse(content_type="text/csv") + response["Content-Disposition"] = f"attachment; filename='{filename}'" df.to_csv(response, index=False) return response + # Create your views here. diff --git a/apis_core/context_processors/custom_context_processors.py b/apis_core/context_processors/custom_context_processors.py index c814439..21a9799 100644 --- a/apis_core/context_processors/custom_context_processors.py +++ b/apis_core/context_processors/custom_context_processors.py @@ -7,43 +7,47 @@ def add_entities(request): ent_list = [] for name, obj in inspect.getmembers( - sys.modules['apis_core.apis_entities.models'], inspect.isclass + sys.modules["apis_core.apis_entities.models"], inspect.isclass ): - if obj.__module__ == 'apis_core.apis_entities.models' and name != "AbstractEntity" and name != "ent_class": + if ( + obj.__module__ == "apis_core.apis_entities.models" + and name != "AbstractEntity" + and name != "ent_class" + ): ent_list.append(str(name).lower()) - res = { - 'entities_list': ent_list, - 'request': request - } + res = {"entities_list": ent_list, "request": request} return res def add_relations(request): relations_list = [] for name, obj in inspect.getmembers( - sys.modules['apis_core.apis_relations.models'], inspect.isclass + sys.modules["apis_core.apis_relations.models"], inspect.isclass ): - if obj.__module__ == 'apis_core.apis_relations.models' and name not in ["AbstractRelation", "AnnotationRelationLinkManager", "ent_class", "BaseRelationManager", "RelationPublishedQueryset"]: + if obj.__module__ == "apis_core.apis_relations.models" and name not in [ + "AbstractRelation", + "AnnotationRelationLinkManager", + "ent_class", + "BaseRelationManager", + "RelationPublishedQueryset", + ]: relations_list.append(str(name).lower()) - res = { - 'relations_list': relations_list, - 'request': request - } + res = {"relations_list": relations_list, "request": request} return res def add_apis_settings(request): """adds the custom settings to the templates""" res = { - 'additional_functions': getattr(settings, "APIS_COMPONENTS", []), - 'request': request + "additional_functions": getattr(settings, "APIS_COMPONENTS", []), + "request": request, } - if 'apis_highlighter' in settings.INSTALLED_APPS: - res['highlighter_active'] = True + if "apis_highlighter" in settings.INSTALLED_APPS: + res["highlighter_active"] = True else: - res['highlighter_active'] = False - if 'apis_bibsonomy' in settings.INSTALLED_APPS: - res['bibsonomy_active'] = True + res["highlighter_active"] = False + if "apis_bibsonomy" in settings.INSTALLED_APPS: + res["bibsonomy_active"] = True else: - res['bibsonomy_active'] = False + res["bibsonomy_active"] = False return res diff --git a/apis_core/default_settings/NER_settings.py b/apis_core/default_settings/NER_settings.py index 5d93760..678d815 100644 --- a/apis_core/default_settings/NER_settings.py +++ b/apis_core/default_settings/NER_settings.py @@ -2,172 +2,305 @@ # -*- coding: utf-8 -*- gn = "http://www.geonames.org/ontology#" -stb_base = 'https://enrich.acdh.oeaw.ac.at/entityhub/site/' +stb_base = "https://enrich.acdh.oeaw.ac.at/entityhub/site/" URL_geonames = stb_base + "geoNames_%s/query" wgs84_pos = "http://www.w3.org/2003/01/geo/wgs84_pos#" gnd_geo = "http://www.opengis.net/ont/geosparql#" -stb_find = stb_base + u'{}/find' -GenderMappingGND = {'male': 'http://d-nb.info/standards/vocab/gnd/Gender#male', - 'männlich': 'http://d-nb.info/standards/vocab/gnd/Gender#male', - 'Mann': 'http://d-nb.info/standards/vocab/gnd/Gender#male', - 'female': 'http://d-nb.info/standards/vocab/gnd/Gender#female', - 'weiblich': 'http://d-nb.info/standards/vocab/gnd/Gender#female', - 'Frau': 'http://d-nb.info/standards/vocab/gnd/Gender#female'} +stb_find = stb_base + "{}/find" +GenderMappingGND = { + "male": "http://d-nb.info/standards/vocab/gnd/Gender#male", + "männlich": "http://d-nb.info/standards/vocab/gnd/Gender#male", + "Mann": "http://d-nb.info/standards/vocab/gnd/Gender#male", + "female": "http://d-nb.info/standards/vocab/gnd/Gender#female", + "weiblich": "http://d-nb.info/standards/vocab/gnd/Gender#female", + "Frau": "http://d-nb.info/standards/vocab/gnd/Gender#female", +} + def date_conversion(date): return "{}T00:00:00.000Z".format(date) + autocomp_settings = { - 'score': u'http://stanbol.apache.org/ontology/entityhub/query#score', - 'uri': 'id', - 'label': u'http://www.w3.org/2000/01/rdf-schema#label', - 'Place': [ - {'source': 'Geonames', - 'type': False, - 'url': stb_find.format('geoNames_S_P_A'), - 'fields': { - 'descr': (gn + 'featureCode', 'String'), - 'name': (gn + 'name','String'), - 'long': (wgs84_pos + 'long', 'String'), - 'lat': (wgs84_pos + 'lat', 'String') - }}, - {'source': 'GeonamesRGN', - 'type': False, - 'url': stb_find.format('geoNames_RGN'), - 'fields': { - 'descr': (gn + 'featureCode','String'), - 'name': (gn + 'name','String'), - 'long': (wgs84_pos + 'long','String'), - 'lat': (wgs84_pos + 'lat','String') - }}, - {'source': 'GeonamesVAL', - 'type': False, - 'url': stb_find.format('geoNames_VAL'), - 'fields': { - 'descr': (gn + 'featureCode','String'), - 'name': (gn + 'name','String'), - 'long': (wgs84_pos + 'long','String'), - 'lat': (wgs84_pos + 'lat','String') - }}, - {'source': 'GND', - 'type': u'http://d-nb.info/standards/elementset/gnd#TerritorialCorporateBodyOrAdministrativeUnit', - 'url': stb_find.format('gndTerritorialCorporateBodyOrAdministrativeUnits'), - 'fields': { - 'name': (u'http://d-nb.info/standards/elementset/gnd#preferredNameForThePlaceOrGeographicName','String'), - 'descr': (u'http://d-nb.info/standards/elementset/gnd#definition','String'), - 'long': (gnd_geo + 'asWKT', 'gndLong'), - 'lat': (wgs84_pos + 'lat','String') - }}, - ], - 'Institution': [{ - 'source': 'GND', - 'type': u'http://d-nb.info/standards/elementset/gnd#CorporateBody', - 'url': stb_find.format('gndCorporateBodyAndOrganOfCorporateBody'), - 'fields': { - 'descr': (u'http://d-nb.info/standards/elementset/gnd#definition','String'), - 'name': (u'http://d-nb.info/standards/elementset/gnd#preferredNameForTheCorporateBody','String')}}, - { - 'source': 'GND', - 'type': u'http://d-nb.info/standards/elementset/gnd#OrganOfCorporateBody', - 'url': stb_find.format('gndCorporateBodyAndOrganOfCorporateBody'), - 'fields': { - 'descr': (u'http://d-nb.info/standards/elementset/gnd#definition','String'), - 'name': (u'http://d-nb.info/standards/elementset/gnd#preferredNameForTheCorporateBody','String')}}], - 'Person': [{ - 'source': 'GND', - 'type': u'http://d-nb.info/standards/elementset/gnd#DifferentiatedPerson', - 'url': stb_find.format('gndPersons'), - 'search fields': {'gender': ('http://d-nb.info/standards/elementset/gnd#gender', - GenderMappingGND, 'reference'), - 'start_date': ('http://d-nb.info/standards/elementset/gnd#dateOfBirth', - date_conversion, 'date_exact'), - 'end_date': ('http://d-nb.info/standards/elementset/gnd#dateOfDeath', - date_conversion, 'date_exact'), - 'start_date__gt': ('http://d-nb.info/standards/elementset/gnd#dateOfBirth', - date_conversion, 'date_gt'), - 'start_date__lt': ('http://d-nb.info/standards/elementset/gnd#dateOfBirth', - date_conversion, 'date_lt'), - 'end_date__gt': ('http://d-nb.info/standards/elementset/gnd#dateOfBirth', - date_conversion, 'date_gt'), - 'end_date__lt': ('http://d-nb.info/standards/elementset/gnd#dateOfDeath', - date_conversion, 'date_lt')}, - 'fields': { - 'descr': (u'http://d-nb.info/standards/elementset/gnd#biographicalOrHistoricalInformation','String'), - 'name': (u'http://d-nb.info/standards/elementset/gnd#preferredNameForThePerson','String'), - 'dateOfBirth': (u'http://d-nb.info/standards/elementset/gnd#dateOfBirth', 'GNDDate'), - 'dateOfDeath': (u'http://d-nb.info/standards/elementset/gnd#dateOfDeath', 'GNDDate')}}, -{ - 'source': 'GND', - 'type': u'http://enrich.acdh.oeaw.ac.at/stanbol/entityhub/site/gndRoyalOrMemberOfARoyalHouse/', - 'url': stb_find.format('gndRoyalOrMemberOfARoyalHouse'), - 'search fields': {'gender': ('http://d-nb.info/standards/elementset/gnd#gender', - GenderMappingGND, 'reference'), - 'start_date': ('http://d-nb.info/standards/elementset/gnd#dateOfBirth', - date_conversion, 'date_exact'), - 'end_date': ('http://d-nb.info/standards/elementset/gnd#dateOfDeath', - date_conversion, 'date_exact'), - 'start_date__gt': ('http://d-nb.info/standards/elementset/gnd#dateOfBirth', - date_conversion, 'date_gt'), - 'start_date__lt': ('http://d-nb.info/standards/elementset/gnd#dateOfBirth', - date_conversion, 'date_lt'), - 'end_date__gt': ('http://d-nb.info/standards/elementset/gnd#dateOfBirth', - date_conversion, 'date_gt'), - 'end_date__lt': ('http://d-nb.info/standards/elementset/gnd#dateOfDeath', - date_conversion, 'date_lt')}, - 'fields': { - 'descr': (u'http://d-nb.info/standards/elementset/gnd#biographicalOrHistoricalInformation','String'), - 'name': (u'http://d-nb.info/standards/elementset/gnd#preferredNameForThePerson','String'), - 'dateOfBirth': (u'http://d-nb.info/standards/elementset/gnd#dateOfBirth', 'GNDDate'), - 'dateOfDeath': (u'http://d-nb.info/standards/elementset/gnd#dateOfDeath', 'GNDDate')}} + "score": "http://stanbol.apache.org/ontology/entityhub/query#score", + "uri": "id", + "label": "http://www.w3.org/2000/01/rdf-schema#label", + "Place": [ + { + "source": "Geonames", + "type": False, + "url": stb_find.format("geoNames_S_P_A"), + "fields": { + "descr": (gn + "featureCode", "String"), + "name": (gn + "name", "String"), + "long": (wgs84_pos + "long", "String"), + "lat": (wgs84_pos + "lat", "String"), + }, + }, + { + "source": "GeonamesRGN", + "type": False, + "url": stb_find.format("geoNames_RGN"), + "fields": { + "descr": (gn + "featureCode", "String"), + "name": (gn + "name", "String"), + "long": (wgs84_pos + "long", "String"), + "lat": (wgs84_pos + "lat", "String"), + }, + }, + { + "source": "GeonamesVAL", + "type": False, + "url": stb_find.format("geoNames_VAL"), + "fields": { + "descr": (gn + "featureCode", "String"), + "name": (gn + "name", "String"), + "long": (wgs84_pos + "long", "String"), + "lat": (wgs84_pos + "lat", "String"), + }, + }, + { + "source": "GND", + "type": "http://d-nb.info/standards/elementset/gnd#TerritorialCorporateBodyOrAdministrativeUnit", + "url": stb_find.format("gndTerritorialCorporateBodyOrAdministrativeUnits"), + "fields": { + "name": ( + "http://d-nb.info/standards/elementset/gnd#preferredNameForThePlaceOrGeographicName", + "String", + ), + "descr": ( + "http://d-nb.info/standards/elementset/gnd#definition", + "String", + ), + "long": (gnd_geo + "asWKT", "gndLong"), + "lat": (wgs84_pos + "lat", "String"), + }, + }, + ], + "Institution": [ + { + "source": "GND", + "type": "http://d-nb.info/standards/elementset/gnd#CorporateBody", + "url": stb_find.format("gndCorporateBodyAndOrganOfCorporateBody"), + "fields": { + "descr": ( + "http://d-nb.info/standards/elementset/gnd#definition", + "String", + ), + "name": ( + "http://d-nb.info/standards/elementset/gnd#preferredNameForTheCorporateBody", + "String", + ), + }, + }, + { + "source": "GND", + "type": "http://d-nb.info/standards/elementset/gnd#OrganOfCorporateBody", + "url": stb_find.format("gndCorporateBodyAndOrganOfCorporateBody"), + "fields": { + "descr": ( + "http://d-nb.info/standards/elementset/gnd#definition", + "String", + ), + "name": ( + "http://d-nb.info/standards/elementset/gnd#preferredNameForTheCorporateBody", + "String", + ), + }, + }, + ], + "Person": [ + { + "source": "GND", + "type": "http://d-nb.info/standards/elementset/gnd#DifferentiatedPerson", + "url": stb_find.format("gndPersons"), + "search fields": { + "gender": ( + "http://d-nb.info/standards/elementset/gnd#gender", + GenderMappingGND, + "reference", + ), + "start_date": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + date_conversion, + "date_exact", + ), + "end_date": ( + "http://d-nb.info/standards/elementset/gnd#dateOfDeath", + date_conversion, + "date_exact", + ), + "start_date__gt": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + date_conversion, + "date_gt", + ), + "start_date__lt": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + date_conversion, + "date_lt", + ), + "end_date__gt": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + date_conversion, + "date_gt", + ), + "end_date__lt": ( + "http://d-nb.info/standards/elementset/gnd#dateOfDeath", + date_conversion, + "date_lt", + ), + }, + "fields": { + "descr": ( + "http://d-nb.info/standards/elementset/gnd#biographicalOrHistoricalInformation", + "String", + ), + "name": ( + "http://d-nb.info/standards/elementset/gnd#preferredNameForThePerson", + "String", + ), + "dateOfBirth": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + "GNDDate", + ), + "dateOfDeath": ( + "http://d-nb.info/standards/elementset/gnd#dateOfDeath", + "GNDDate", + ), + }, + }, + { + "source": "GND", + "type": "http://enrich.acdh.oeaw.ac.at/stanbol/entityhub/site/gndRoyalOrMemberOfARoyalHouse/", + "url": stb_find.format("gndRoyalOrMemberOfARoyalHouse"), + "search fields": { + "gender": ( + "http://d-nb.info/standards/elementset/gnd#gender", + GenderMappingGND, + "reference", + ), + "start_date": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + date_conversion, + "date_exact", + ), + "end_date": ( + "http://d-nb.info/standards/elementset/gnd#dateOfDeath", + date_conversion, + "date_exact", + ), + "start_date__gt": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + date_conversion, + "date_gt", + ), + "start_date__lt": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + date_conversion, + "date_lt", + ), + "end_date__gt": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + date_conversion, + "date_gt", + ), + "end_date__lt": ( + "http://d-nb.info/standards/elementset/gnd#dateOfDeath", + date_conversion, + "date_lt", + ), + }, + "fields": { + "descr": ( + "http://d-nb.info/standards/elementset/gnd#biographicalOrHistoricalInformation", + "String", + ), + "name": ( + "http://d-nb.info/standards/elementset/gnd#preferredNameForThePerson", + "String", + ), + "dateOfBirth": ( + "http://d-nb.info/standards/elementset/gnd#dateOfBirth", + "GNDDate", + ), + "dateOfDeath": ( + "http://d-nb.info/standards/elementset/gnd#dateOfDeath", + "GNDDate", + ), + }, + }, + ], + "Event": [ + { + "source": "GND", + "type": "http://d-nb.info/standards/elementset/gnd#HistoricSingleEventOrEra", + "url": stb_find.format("gndHistoricEvent"), + "fields": { + "descr": ( + "http://d-nb.info/standards/elementset/gnd#definition", + "String", + ), + "name": ( + "http://d-nb.info/standards/elementset/gnd#preferredNameForTheSubjectHeading", + "String", + ), + }, + } ], - 'Event': [{ - 'source': 'GND', - 'type': u'http://d-nb.info/standards/elementset/gnd#HistoricSingleEventOrEra', - 'url': stb_find.format('gndHistoricEvent'), - 'fields': { - 'descr': (u'http://d-nb.info/standards/elementset/gnd#definition','String'), - 'name': (u'http://d-nb.info/standards/elementset/gnd#preferredNameForTheSubjectHeading','String')}}], - 'Work': [] + "Work": [], } geonames_feature_codes = { "ADM1": ( "first-order administrative division", - "a primary administrative division of a country, such as a state in the United States"), + "a primary administrative division of a country, such as a state in the United States", + ), "ADM1H": ( "historical first-order administrative division", - "a former first-order administrative division"), + "a former first-order administrative division", + ), "ADM2": ( "second-order administrative division", - "a subdivision of a first-order administrative division"), + "a subdivision of a first-order administrative division", + ), "ADM2H": ( "historical second-order administrative division", - "a former second-order administrative division"), + "a former second-order administrative division", + ), "ADM3": ( "third-order administrative division", - "a subdivision of a second-order administrative division"), + "a subdivision of a second-order administrative division", + ), "ADM3H": ( "historical third-order administrative division", - "a former third-order administrative division"), + "a former third-order administrative division", + ), "ADM4": ( "fourth-order administrative division", - "a subdivision of a third-order administrative division"), + "a subdivision of a third-order administrative division", + ), "ADM4H": ( "historical fourth-order administrative division", - "a former fourth-order administrative division"), + "a former fourth-order administrative division", + ), "ADM5": ( "fifth-order administrative division", - "a subdivision of a fourth-order administrative division"), + "a subdivision of a fourth-order administrative division", + ), "ADMD": ( "administrative division", - "an administrative division of a country, undifferentiated as to administrative level"), + "an administrative division of a country, undifferentiated as to administrative level", + ), "ADMDH": ( "historical administrative division", "a former administrative division of a political entity, \ - undifferentiated as to administrative level"), + undifferentiated as to administrative level", + ), "LTER": ( "leased area", - "a tract of land leased to another country, usually for military installations"), + "a tract of land leased to another country, usually for military installations", + ), "PCL": ("political entity", ""), "PCLD": ("dependent political entity", ""), "PCLF": ("freely associated state", ""), @@ -181,147 +314,143 @@ def date_conversion(date): "ZNB": ( "buffer zone", "a zone recognized as a buffer between two nations in which \ - military presence is minimal or absent"), + military presence is minimal or absent", + ), "PPL": ( "populated place", - "a city, town, village, or other agglomeration of buildings where people live and work"), + "a city, town, village, or other agglomeration of buildings where people live and work", + ), "PPLA": ( "seat of a first-order administrative division", - "seat of a first-order administrative division (PPLC takes precedence over PPLA),"), + "seat of a first-order administrative division (PPLC takes precedence over PPLA),", + ), "PPLA2": ("seat of a second-order administrative division", ""), "PPLA3": ("seat of a third-order administrative division", ""), "PPLA4": ("seat of a fourth-order administrative division", ""), "PPLC": ("capital of a political entity", ""), "PPLCH": ( "historical capital of a political entity", - "a former capital of a political entity"), + "a former capital of a political entity", + ), "PPLF": ( "farm village", - "a populated place where the population is largely engaged in agricultural activities"), + "a populated place where the population is largely engaged in agricultural activities", + ), "PPLG": ("seat of government of a political entity", ""), - "PPLH": ( - "historical populated place", - "a populated place that no longer exists"), + "PPLH": ("historical populated place", "a populated place that no longer exists"), "PPLL": ( "populated locality", - "an area similar to a locality but with a small group of dwellings or other buildings"), + "an area similar to a locality but with a small group of dwellings or other buildings", + ), "PPLQ": ("abandoned populated place", ""), "PPLR": ( "religious populated place", - "a populated place whose population is largely engaged in religious occupations"), + "a populated place whose population is largely engaged in religious occupations", + ), "PPLS": ( "populated places", - "cities, towns, villages, or other agglomerations of buildings where people live and work"), + "cities, towns, villages, or other agglomerations of buildings where people live and work", + ), "PPLW": ( "destroyed populated place", - "a village, town or city destroyed by a natural disaster, or by war"), + "a village, town or city destroyed by a natural disaster, or by war", + ), "PPLX": ("section of populated place", ""), "STLMT": ("israeli settlement", ""), - "RGN": ("region", "an area distinguished by one or more observable physical or cultural characteristics")} + "RGN": ( + "region", + "an area distinguished by one or more observable physical or cultural characteristics", + ), +} class StbGeoQuerySettings: - - def __init__(self, kind='place'): + def __init__(self, kind="place"): self.kind = kind - self.score = u'http://stanbol.apache.org/ontology/entityhub/query#score' - self.uri = 'id' - self.label = u'http://www.w3.org/2000/01/rdf-schema#label' + self.score = "http://stanbol.apache.org/ontology/entityhub/query#score" + self.uri = "id" + self.label = "http://www.w3.org/2000/01/rdf-schema#label" self.kind = kind self.last_selected = 0 - if kind == 'place': - self.selected = [gn+'name', gn+'parentPCLI', gn+'parentCountry', - gn+'parentADM1', gn+'parentADM2', gn+'parentADM3', - gn+'population', gn+'featureCode', wgs84_pos+'lat', - wgs84_pos+'long', gn+'alternateName', gn+'officialName', - gn+'shortName', gn+'countryCode', gn+'parentFeature'] - self.stored_feature = { - 'feature': gn+'PPLC', - 'URL': URL_geonames % 'PPLC' - } - self.features = [{ - 'feature': gn+'PPLC', - 'URL': URL_geonames % 'PPLC' - }, - { - 'feature': gn+'PPLA', - 'URL': URL_geonames % 'PPLA' - }, - { - 'feature': gn+'PPLA2', - 'URL': URL_geonames % 'PPLA2' - }, - { - 'feature': gn+'PPLA3', - 'URL': URL_geonames % 'PPLA3' - }, - { - 'feature': gn+'PPLA4', - 'URL': URL_geonames % 'PPLA4' - }, - { - 'feature': gn+'PPL', - 'URL': URL_geonames % 'PPL' - }] - elif kind == 'admin': - self.selected = [gn+'featureCode'] - self.stored_feature = { - 'feature': gn+'PCLI', - 'URL': URL_geonames % 'PCLI' - } - self.features = [{ - 'feature': gn+'PCLI', - 'URL': URL_geonames % 'PCLI' - }, - { - 'feature': gn+'ADM1', - 'URL': URL_geonames % 'ADM1' - }, - { - 'feature': gn+'ADM2', - 'URL': URL_geonames % 'ADM2' - }, - { - 'feature': gn+'ADM3', - 'URL': URL_geonames % 'ADM3' - } + if kind == "place": + self.selected = [ + gn + "name", + gn + "parentPCLI", + gn + "parentCountry", + gn + "parentADM1", + gn + "parentADM2", + gn + "parentADM3", + gn + "population", + gn + "featureCode", + wgs84_pos + "lat", + wgs84_pos + "long", + gn + "alternateName", + gn + "officialName", + gn + "shortName", + gn + "countryCode", + gn + "parentFeature", + ] + self.stored_feature = {"feature": gn + "PPLC", "URL": URL_geonames % "PPLC"} + self.features = [ + {"feature": gn + "PPLC", "URL": URL_geonames % "PPLC"}, + {"feature": gn + "PPLA", "URL": URL_geonames % "PPLA"}, + {"feature": gn + "PPLA2", "URL": URL_geonames % "PPLA2"}, + {"feature": gn + "PPLA3", "URL": URL_geonames % "PPLA3"}, + {"feature": gn + "PPLA4", "URL": URL_geonames % "PPLA4"}, + {"feature": gn + "PPL", "URL": URL_geonames % "PPL"}, + ] + elif kind == "admin": + self.selected = [gn + "featureCode"] + self.stored_feature = {"feature": gn + "PCLI", "URL": URL_geonames % "PCLI"} + self.features = [ + {"feature": gn + "PCLI", "URL": URL_geonames % "PCLI"}, + {"feature": gn + "ADM1", "URL": URL_geonames % "ADM1"}, + {"feature": gn + "ADM2", "URL": URL_geonames % "ADM2"}, + {"feature": gn + "ADM3", "URL": URL_geonames % "ADM3"}, ] def get_next_feature(self, ft=False): - if self.last_selected > len(self.features)-1: + if self.last_selected > len(self.features) - 1: self.stored_feature = False return False if not ft: - ft = self.features[self.last_selected]['feature'] + ft = self.features[self.last_selected]["feature"] for idnx, x in enumerate(self.features): - if x['feature'] == ft: + if x["feature"] == ft: try: - self.last_selected = idnx+1 - self.stored_feature = self.features[idnx+1] - return self.features[idnx+1] + self.last_selected = idnx + 1 + self.stored_feature = self.features[idnx + 1] + return self.features[idnx + 1] except: return None return self.features[0] def get_data(self, query, adm=False): - if self.kind == 'place' and adm: + if self.kind == "place" and adm: data = { - 'limit': 20, 'constraints': [{ - 'type': 'text', - 'field': 'http://www.w3.org/2000/01/rdf-schema#label', - 'text': query}, - {'type': 'reference', 'field': adm[1], 'value': adm[0]} - ], - 'selected': self.selected + "limit": 20, + "constraints": [ + { + "type": "text", + "field": "http://www.w3.org/2000/01/rdf-schema#label", + "text": query, + }, + {"type": "reference", "field": adm[1], "value": adm[0]}, + ], + "selected": self.selected, } else: data = { - 'limit': 20, 'constraints': [{ - 'type': 'text', - 'field': 'http://www.w3.org/2000/01/rdf-schema#label', - 'text': query}, - ], - 'selected': self.selected} + "limit": 20, + "constraints": [ + { + "type": "text", + "field": "http://www.w3.org/2000/01/rdf-schema#label", + "text": query, + }, + ], + "selected": self.selected, + } return data diff --git a/apis_core/default_settings/RDF_settings.py b/apis_core/default_settings/RDF_settings.py index 70599b4..10e0360 100644 --- a/apis_core/default_settings/RDF_settings.py +++ b/apis_core/default_settings/RDF_settings.py @@ -1,417 +1,542 @@ -gno = 'http://www.geonames.org/ontology#' +gno = "http://www.geonames.org/ontology#" wgs84 = "http://www.w3.org/2003/01/geo/wgs84_pos#" -gndo = 'http://d-nb.info/standards/elementset/gnd#' +gndo = "http://d-nb.info/standards/elementset/gnd#" owl = "http://www.w3.org/2002/07/owl#" geo = "http://www.opengis.net/ont/geosparql#" sett_RDF_generic = { - 'Place': { - 'data': [ + "Place": { + "data": [ { - 'base_url': 'http://sws.geonames.org/', - 'url_appendix': 'about.rdf', - 'kind': ( - (gno + 'featureCode', None), - ), - 'attributes': [ + "base_url": "http://sws.geonames.org/", + "url_appendix": "about.rdf", + "kind": ((gno + "featureCode", None),), + "attributes": [ { - 'name': 'name', - 'identifiers': ( - (('objects', 'prefName', gno + 'officialName', ('language', 'de')),), - (('objects', 'prefName', gno + 'officialName', ('language', 'en')),), - (('objects', 'prefName', gno + 'name', None),), - (('objects', 'prefName', gno + 'alternateName', ('language', 'de')),), - (('objects', 'prefName', gno + 'alternateName', ('language', 'en')),) - ) + "name": "name", + "identifiers": ( + ( + ( + "objects", + "prefName", + gno + "officialName", + ("language", "de"), + ), + ), + ( + ( + "objects", + "prefName", + gno + "officialName", + ("language", "en"), + ), + ), + (("objects", "prefName", gno + "name", None),), + ( + ( + "objects", + "prefName", + gno + "alternateName", + ("language", "de"), + ), + ), + ( + ( + "objects", + "prefName", + gno + "alternateName", + ("language", "en"), + ), + ), + ), }, { - 'name': 'label', - 'identifiers': ( - (('objects', 'label', gno + 'alternateName', ('language', 'de')),), - (('objects', 'label', gno + 'alternateName', ('language', 'en')),) - ) + "name": "label", + "identifiers": ( + ( + ( + "objects", + "label", + gno + "alternateName", + ("language", "de"), + ), + ), + ( + ( + "objects", + "label", + gno + "alternateName", + ("language", "en"), + ), + ), + ), }, { - 'name': 'lat', - 'identifiers': ( - (('objects', 'lat', wgs84 + 'lat', None),), - ) + "name": "lat", + "identifiers": ((("objects", "lat", wgs84 + "lat", None),),), }, { - 'name': 'long', - 'identifiers': ( - (('objects', 'lng', wgs84 + 'long', None),), - ) + "name": "long", + "identifiers": ((("objects", "lng", wgs84 + "long", None),),), }, { - 'name': 'parentFeature', - 'identifiers': ( - (('objects', 'parentFeature', gno + 'parentFeature', None),), - ) + "name": "parentFeature", + "identifiers": ( + ( + ( + "objects", + "parentFeature", + gno + "parentFeature", + None, + ), + ), + ), }, { - 'name': 'parentCountry', - 'identifiers': ( - (('objects', 'parentCountry', gno + 'parentCountry', None),), - ) + "name": "parentCountry", + "identifiers": ( + ( + ( + "objects", + "parentCountry", + gno + "parentCountry", + None, + ), + ), + ), }, - ] + ], }, { - 'base_url': 'http://d-nb.info/gnd/', - 'url_appendix': 'about/rdf', - 'attributes': [ + "base_url": "http://d-nb.info/gnd/", + "url_appendix": "about/rdf", + "attributes": [ { - 'name': 'name', - 'identifiers': ( - (('objects', 'prefName', gndo + 'preferredNameForThePlaceOrGeographicName', None),), - ) + "name": "name", + "identifiers": ( + ( + ( + "objects", + "prefName", + gndo + "preferredNameForThePlaceOrGeographicName", + None, + ), + ), + ), }, { - 'name': 'label', - 'identifiers': ( + "name": "label", + "identifiers": ( ( - ('objects', 'label', gndo + 'variantNameForThePlaceOrGeographicName', None), + ( + "objects", + "label", + gndo + "variantNameForThePlaceOrGeographicName", + None, + ), ), ), }, { - 'name': 'latlong', - 'identifiers': ( - (('objects', 'latlong_base', geo + 'hasGeometry', None), '>', - ('objects', 'latlong_geonode', geo + 'asWKT', None) - ), - ) + "name": "latlong", + "identifiers": ( + ( + ("objects", "latlong_base", geo + "hasGeometry", None), + ">", + ("objects", "latlong_geonode", geo + "asWKT", None), + ), + ), }, - ] - } + ], + }, ], - 'matching': { - 'attributes': { - 'name': ( - (('prefName', None),), - ), - 'lat': ( - (('lat', None),), - (('latlong_geonode', ('Point \( [+-]([0-9\.]+) [+-]([0-9\.]+)', 2)),) - ), - 'lng': ( - (('lng', None),), - (('latlong_geonode', ('Point \( [+-]([0-9\.]+) [+-]([0-9\.]+)', 1)),) + "matching": { + "attributes": { + "name": ((("prefName", None),),), + "lat": ( + (("lat", None),), + ( + ( + "latlong_geonode", + ("Point \( [+-]([0-9\.]+) [+-]([0-9\.]+)", 2), + ), + ), ), - }, - 'labels': { - 'alternative name': ( - ('label', None), + "lng": ( + (("lng", None),), + ( + ( + "latlong_geonode", + ("Point \( [+-]([0-9\.]+) [+-]([0-9\.]+)", 1), + ), + ), ), - }, - 'linked objects': - [ - { - 'type': 'Place', - 'kind': 'located in', - 'object': ( - ('parentFeature', None), - ) }, - { - 'type': 'Place', - 'kind': 'located in', - 'object': ( - ('parentCountry', None), - ) + "labels": { + "alternative name": (("label", None),), }, + "linked objects": [ + { + "type": "Place", + "kind": "located in", + "object": (("parentFeature", None),), + }, + { + "type": "Place", + "kind": "located in", + "object": (("parentCountry", None),), + }, ], - } + }, }, - 'Person': { - 'data': [ + "Person": { + "data": [ { - 'base_url': 'http://d-nb.info/gnd/', - 'url_appendix': 'about/rdf', - 'attributes': [ + "base_url": "http://d-nb.info/gnd/", + "url_appendix": "about/rdf", + "attributes": [ { - 'name': 'name', - 'identifiers': ( + "name": "name", + "identifiers": ( ( - ('objects', 'prefNameNode', gndo + 'preferredNameEntityForThePerson', None),'>', - ('objects', 'forename', gndo + 'forename', None), '=', - ('objects', 'surname', gndo + 'surname', None) - ), + ( + "objects", + "prefNameNode", + gndo + "preferredNameEntityForThePerson", + None, + ), + ">", + ("objects", "forename", gndo + "forename", None), + "=", + ("objects", "surname", gndo + "surname", None), + ), ( - ('objects', 'prefNameNode', gndo + 'preferredNameEntityForThePerson', None), '>', - ('objects', 'descriptionNode', gndo + 'Description', None), '>', - ('objects', 'personalNameAddition', gndo + 'nameAddition', None), '=', - ('objects', 'personalNameCounting', gndo + 'counting', None), '=', - ('objects', 'personalName', gndo + 'personalName', None), + ( + "objects", + "prefNameNode", + gndo + "preferredNameEntityForThePerson", + None, + ), + ">", + ( + "objects", + "descriptionNode", + gndo + "Description", + None, + ), + ">", + ( + "objects", + "personalNameAddition", + gndo + "nameAddition", + None, + ), + "=", + ( + "objects", + "personalNameCounting", + gndo + "counting", + None, + ), + "=", + ( + "objects", + "personalName", + gndo + "personalName", + None, + ), ), - - ) + ), }, { - 'name': 'label', - 'identifiers': ( + "name": "label", + "identifiers": ( ( - - ('objects', 'label', gndo + 'variantNameForThePerson', None), - + ( + "objects", + "label", + gndo + "variantNameForThePerson", + None, + ), ), ), }, { - 'name': 'place of birth', - 'identifiers': ( - ( - ('objects', 'place of birth', gndo + 'placeOfBirth', None), + "name": "place of birth", + "identifiers": ( + ( + ( + "objects", + "place of birth", + gndo + "placeOfBirth", + None, + ), + ), ), - ), }, { - 'name': 'place of death', - 'identifiers': ( - ( - ('objects', 'place of death', gndo + 'placeOfDeath', None), + "name": "place of death", + "identifiers": ( + ( + ( + "objects", + "place of death", + gndo + "placeOfDeath", + None, + ), + ), ), - ), }, { - 'name': 'date of birth', - 'identifiers': ( - ( - ('objects', 'date of birth', gndo + 'dateOfBirth', None), + "name": "date of birth", + "identifiers": ( + (("objects", "date of birth", gndo + "dateOfBirth", None),), ), - ), }, { - 'name': 'date of death', - 'identifiers': ( - ( - ('objects', 'date of death', gndo + 'dateOfDeath', None), + "name": "date of death", + "identifiers": ( + (("objects", "date of death", gndo + "dateOfDeath", None),), ), - ), }, - ] + ], }, { - 'base_url': 'https://www.wikidata.org/wiki/Special:EntityData/', - 'url_appendix': '.rdf', - 'attributes': [ - { - 'name': 'name', - 'identifiers': ( - ( - ('objects', '') - ) - ) - }, - ] - } - ], - 'matching': { - 'attributes': { - 'name': ( - (('surname', None), - ), - (('personalNameAddition', None), - ) - ), - 'first_name': ( - (('forename', None),), - (('personalName', None), - ' ', - ('personalNameCounting', None) - ), - ), - 'start_date_written': ( - (('date of birth', None),), - ), - 'end_date_written': ( - (('date of death', None),), - ), + "base_url": "https://www.wikidata.org/wiki/Special:EntityData/", + "url_appendix": ".rdf", + "attributes": [ + {"name": "name", "identifiers": ((("objects", "")))}, + ], }, - 'labels': { - 'alternative name': ( - ('label', None), + ], + "matching": { + "attributes": { + "name": ((("surname", None),), (("personalNameAddition", None),)), + "first_name": ( + (("forename", None),), + (("personalName", None), " ", ("personalNameCounting", None)), ), + "start_date_written": ((("date of birth", None),),), + "end_date_written": ((("date of death", None),),), }, - 'linked objects': - [ - { - 'type': 'Place', - 'kind': 'born in', - 'object': ( - ('place of birth', None), - ) - }, - { - 'type': 'Place', - 'kind': 'died in', - 'object': ( - ('place of death', None), - ) + "labels": { + "alternative name": (("label", None),), }, - ] - } + "linked objects": [ + { + "type": "Place", + "kind": "born in", + "object": (("place of birth", None),), + }, + { + "type": "Place", + "kind": "died in", + "object": (("place of death", None),), + }, + ], + }, }, - 'Event': { - 'data': [ + "Event": { + "data": [ { - 'base_url': 'http://d-nb.info/gnd/', - 'url_appendix': 'about/rdf', - 'attributes': [ + "base_url": "http://d-nb.info/gnd/", + "url_appendix": "about/rdf", + "attributes": [ { - 'name': 'name', - 'identifiers': ( - (('objects', 'prefName', gndo + 'preferredNameForTheSubjectHeading', None),), - ) + "name": "name", + "identifiers": ( + ( + ( + "objects", + "prefName", + gndo + "preferredNameForTheSubjectHeading", + None, + ), + ), + ), }, { - 'name': 'start', - 'identifiers': ( - (('objects', 'start_date', gndo + 'dateOfEstablishment', None),), - ) + "name": "start", + "identifiers": ( + ( + ( + "objects", + "start_date", + gndo + "dateOfEstablishment", + None, + ), + ), + ), }, { - 'name': 'end', - 'identifiers': ( - (('objects', 'end_date', gndo + 'dateOfTermination', None),), - ) + "name": "end", + "identifiers": ( + ( + ( + "objects", + "end_date", + gndo + "dateOfTermination", + None, + ), + ), + ), }, { - 'name': 'label', - 'identifiers': ( - (('objects', 'label', gndo + 'variantNameForTheSubjectHeading', None),), - ) + "name": "label", + "identifiers": ( + ( + ( + "objects", + "label", + gndo + "variantNameForTheSubjectHeading", + None, + ), + ), + ), }, { - 'name': 'place of event', - 'identifiers': ( - (('objects', 'place of event', gndo + 'place', None),), - ) - } + "name": "place of event", + "identifiers": ( + (("objects", "place of event", gndo + "place", None),), + ), + }, ], } ], - 'matching': { - 'attributes': { - 'name': ( - (('prefName', None),), - ), - 'start_date_written': ( - (('start_date', None),), - ), - 'end_date_written': ( - (('end_date', None),), - ) - }, - 'labels': { - 'alternative name': ( - ('label', None), - ) - }, - 'linked objects': [ - { - 'type': 'Place', - 'kind': 'place of event', - 'object': ( - ('place of event', None), - ) + "matching": { + "attributes": { + "name": ((("prefName", None),),), + "start_date_written": ((("start_date", None),),), + "end_date_written": ((("end_date", None),),), }, + "labels": {"alternative name": (("label", None),)}, + "linked objects": [ + { + "type": "Place", + "kind": "place of event", + "object": (("place of event", None),), + }, ], - } + }, }, - 'Institution': { - 'data': [ + "Institution": { + "data": [ { - 'base_url': 'http://d-nb.info/gnd/', - 'url_appendix': 'about/rdf', - 'attributes': [ + "base_url": "http://d-nb.info/gnd/", + "url_appendix": "about/rdf", + "attributes": [ { - 'name': 'name', - 'identifiers': ( - (('objects', 'prefName', gndo + 'preferredNameForTheCorporateBody', None),), - (('objects', 'prefName', gndo + 'variantNameForTheCorporateBody', None),), - ) + "name": "name", + "identifiers": ( + ( + ( + "objects", + "prefName", + gndo + "preferredNameForTheCorporateBody", + None, + ), + ), + ( + ( + "objects", + "prefName", + gndo + "variantNameForTheCorporateBody", + None, + ), + ), + ), }, { - 'name': 'alternativeName', - 'identifiers': ( - (('objects', 'alternativeName', gndo + 'variantNameForTheCorporateBody', None),), - ) + "name": "alternativeName", + "identifiers": ( + ( + ( + "objects", + "alternativeName", + gndo + "variantNameForTheCorporateBody", + None, + ), + ), + ), }, { - 'name': 'start', - 'identifiers': ( - (('objects', 'start', gndo + 'dateOfEstablishment', None),), - ) + "name": "start", + "identifiers": ( + (("objects", "start", gndo + "dateOfEstablishment", None),), + ), }, { - 'name': 'end', - 'identifiers': ( - (('objects', 'end', gndo + 'dateOfTermination', None),), - ) + "name": "end", + "identifiers": ( + (("objects", "end", gndo + "dateOfTermination", None),), + ), }, { - 'name': 'placeOfBusiness', - 'identifiers': ( - (('objects', 'placeOfBusiness', gndo + 'placeOfBusiness', None),), - ) + "name": "placeOfBusiness", + "identifiers": ( + ( + ( + "objects", + "placeOfBusiness", + gndo + "placeOfBusiness", + None, + ), + ), + ), }, { - 'name': 'succeeding', - 'identifiers': ( - (('objects', 'succeeding', gndo + 'succeedingCorporateBody', None),), - ) + "name": "succeeding", + "identifiers": ( + ( + ( + "objects", + "succeeding", + gndo + "succeedingCorporateBody", + None, + ), + ), + ), }, { - 'name': 'preceding', - 'identifiers': ( - (('objects', 'preceding', gndo + 'precedingCorporateBody', None),), - ) - } - ] + "name": "preceding", + "identifiers": ( + ( + ( + "objects", + "preceding", + gndo + "precedingCorporateBody", + None, + ), + ), + ), + }, + ], } ], - 'matching': { - 'attributes': { - 'name': ( - (('prefName', None),), - ), - 'start_date_written': ( - (('start', None),), - ), - 'end_date_written': ( - (('end', None),), - ) + "matching": { + "attributes": { + "name": ((("prefName", None),),), + "start_date_written": ((("start", None),),), + "end_date_written": ((("end", None),),), }, - 'labels': { - 'alternative name': ( - ('alternativeName', None), - ) - }, - 'linked objects': [ - { - 'type': 'Place', - 'kind': 'located in', - 'object': ( - ('placeOfBusiness', None), - ) - }, - { - 'type': 'Institution', - 'kind': 'preceding', - 'object': ( - ('preceding', None), - ) - }, - { - 'type': 'Institution', - 'kind': 'succeeding', - 'object': ( - ('succeeding', None), - ) - }, - ] - } - } + "labels": {"alternative name": (("alternativeName", None),)}, + "linked objects": [ + { + "type": "Place", + "kind": "located in", + "object": (("placeOfBusiness", None),), + }, + { + "type": "Institution", + "kind": "preceding", + "object": (("preceding", None),), + }, + { + "type": "Institution", + "kind": "succeeding", + "object": (("succeeding", None),), + }, + ], + }, + }, } diff --git a/apis_core/default_settings/RDF_settings_new.py b/apis_core/default_settings/RDF_settings_new.py index fa0334d..8652752 100644 --- a/apis_core/default_settings/RDF_settings_new.py +++ b/apis_core/default_settings/RDF_settings_new.py @@ -1,23 +1,20 @@ -gno = 'http://www.geonames.org/ontology#' +gno = "http://www.geonames.org/ontology#" wgs84 = "http://www.w3.org/2003/01/geo/wgs84_pos#" -gndo = 'http://d-nb.info/standards/elementset/gnd#' +gndo = "http://d-nb.info/standards/elementset/gnd#" owl = "http://www.w3.org/2002/07/owl#" geo = "http://www.opengis.net/ont/geosparql#" -sameAs = [ - "http://schema.org/sameAs", - "http://www.w3.org/2002/07/owl#sameAs" -] +sameAs = ["http://schema.org/sameAs", "http://www.w3.org/2002/07/owl#sameAs"] sett_RDF_generic = { - 'Place': { - 'data': [ + "Place": { + "data": [ { - 'base_url': 'http://sws.geonames.org/', - 'attributes': [ + "base_url": "http://sws.geonames.org/", + "attributes": [ { - 'name': 'name', - 'sparql': """ + "name": "name", + "sparql": """ PREFIX gn: SELECT ?prefName (LANG(?prefName) AS ?lang) WHERE {{ @@ -27,8 +24,8 @@ """, }, { - 'name': 'altName', - 'sparql': """ + "name": "altName", + "sparql": """ PREFIX gn: SELECT ?altName (LANG(?altName) AS ?lang) WHERE {{ @@ -38,8 +35,8 @@ """, }, { - 'name': 'kind', - 'sparql': """ + "name": "kind", + "sparql": """ PREFIX gn: SELECT ?kind WHERE {{ @@ -47,8 +44,9 @@ }} """, }, - {'name': 'lat-long', - 'sparql': """ + { + "name": "lat-long", + "sparql": """ PREFIX gn: PREFIX wgs84_pos: SELECT ?lat ?long @@ -57,365 +55,427 @@ wgs84_pos:long ?long }} """, - }, - {'name': 'parent', - 'sparql': """ + { + "name": "parent", + "sparql": """ PREFIX gn: SELECT ?parent WHERE {{ <{subject}> gn:parentCountry ?parent }} """, - - }, - ] + }, + ], }, { - 'base_url': 'http://d-nb.info/gnd/', - 'url_appendix': 'about/rdf', - 'attributes': [ + "base_url": "http://d-nb.info/gnd/", + "url_appendix": "about/rdf", + "attributes": [ { - 'name': 'name', - 'identifiers': ( - (('objects', 'prefName', gndo + 'preferredNameForThePlaceOrGeographicName', None),), - ) + "name": "name", + "identifiers": ( + ( + ( + "objects", + "prefName", + gndo + "preferredNameForThePlaceOrGeographicName", + None, + ), + ), + ), }, { - 'name': 'label', - 'identifiers': ( + "name": "label", + "identifiers": ( ( - ('objects', 'label', gndo + 'variantNameForThePlaceOrGeographicName', None), + ( + "objects", + "label", + gndo + "variantNameForThePlaceOrGeographicName", + None, + ), ), ), }, { - 'name': 'latlong', - 'identifiers': ( - (('objects', 'latlong_base', geo + 'hasGeometry', None), '>', - ('objects', 'latlong_geonode', geo + 'asWKT', None) - ), - ) + "name": "latlong", + "identifiers": ( + ( + ("objects", "latlong_base", geo + "hasGeometry", None), + ">", + ("objects", "latlong_geonode", geo + "asWKT", None), + ), + ), }, - ] - } + ], + }, ], - 'matching': { - 'attributes': { - 'name': { - 'string': '{prefName}', - 'regex': None - }, - 'kind': [{ - 'string': '{kind}', - 'accessor': 'name', - 'regex': None - },], - 'lat': { - 'identifier': 'lat-long', - 'string': '{lat}' - }, - 'lng': { - 'identifier': 'lat-long', - 'string': '{long}' - } + "matching": { + "attributes": { + "name": {"string": "{prefName}", "regex": None}, + "kind": [ + {"string": "{kind}", "accessor": "name", "regex": None}, + ], + "lat": {"identifier": "lat-long", "string": "{lat}"}, + "lng": {"identifier": "lat-long", "string": "{long}"}, }, - 'labels': { - 'alternative name': ( - ('label', None), - ), - }, - 'linked objects': - [ - { - 'type': 'Place', - 'kind': 'located in', - 'object': 'parent' + "labels": { + "alternative name": (("label", None),), }, + "linked objects": [ + {"type": "Place", "kind": "located in", "object": "parent"}, ], - } + }, }, - 'Person': { - 'data': [ + "Person": { + "data": [ { - 'base_url': 'http://d-nb.info/gnd/', - 'url_appendix': 'about/rdf', - 'attributes': [ + "base_url": "http://d-nb.info/gnd/", + "url_appendix": "about/rdf", + "attributes": [ { - 'name': 'name', - 'identifiers': ( + "name": "name", + "identifiers": ( ( - ('objects', 'prefNameNode', gndo + 'preferredNameEntityForThePerson', None),'>', - ('objects', 'forename', gndo + 'forename', None), '=', - ('objects', 'surname', gndo + 'surname', None) - ), + ( + "objects", + "prefNameNode", + gndo + "preferredNameEntityForThePerson", + None, + ), + ">", + ("objects", "forename", gndo + "forename", None), + "=", + ("objects", "surname", gndo + "surname", None), + ), ( - ('objects', 'prefNameNode', gndo + 'preferredNameEntityForThePerson', None), '>', - ('objects', 'descriptionNode', gndo + 'Description', None), '>', - ('objects', 'personalNameAddition', gndo + 'nameAddition', None), '=', - ('objects', 'personalNameCounting', gndo + 'counting', None), '=', - ('objects', 'personalName', gndo + 'personalName', None), + ( + "objects", + "prefNameNode", + gndo + "preferredNameEntityForThePerson", + None, + ), + ">", + ( + "objects", + "descriptionNode", + gndo + "Description", + None, + ), + ">", + ( + "objects", + "personalNameAddition", + gndo + "nameAddition", + None, + ), + "=", + ( + "objects", + "personalNameCounting", + gndo + "counting", + None, + ), + "=", + ( + "objects", + "personalName", + gndo + "personalName", + None, + ), ), - - ) + ), }, { - 'name': 'label', - 'identifiers': ( + "name": "label", + "identifiers": ( ( - - ('objects', 'label', gndo + 'variantNameForThePerson', None), - + ( + "objects", + "label", + gndo + "variantNameForThePerson", + None, + ), ), ), }, { - 'name': 'place of birth', - 'identifiers': ( - ( - ('objects', 'place of birth', gndo + 'placeOfBirth', None), + "name": "place of birth", + "identifiers": ( + ( + ( + "objects", + "place of birth", + gndo + "placeOfBirth", + None, + ), + ), ), - ), }, { - 'name': 'place of death', - 'identifiers': ( - ( - ('objects', 'place of death', gndo + 'placeOfDeath', None), + "name": "place of death", + "identifiers": ( + ( + ( + "objects", + "place of death", + gndo + "placeOfDeath", + None, + ), + ), ), - ), }, { - 'name': 'date of birth', - 'identifiers': ( - ( - ('objects', 'date of birth', gndo + 'dateOfBirth', None), + "name": "date of birth", + "identifiers": ( + (("objects", "date of birth", gndo + "dateOfBirth", None),), ), - ), }, { - 'name': 'date of death', - 'identifiers': ( - ( - ('objects', 'date of death', gndo + 'dateOfDeath', None), + "name": "date of death", + "identifiers": ( + (("objects", "date of death", gndo + "dateOfDeath", None),), ), - ), }, - ] + ], }, { - 'base_url': 'https://www.wikidata.org/wiki/Special:EntityData/', - 'url_appendix': '.rdf', - 'attributes': [ - { - 'name': 'name', - 'identifiers': ( - ( - ('objects', '') - ) - ) - }, - ] - } - ], - 'matching': { - 'attributes': { - 'name': "{self}", - 'first_name': ( - (('forename', None),), - (('personalName', None), - ' ', - ('personalNameCounting', None) - ), - ), - 'start_date_written': ( - (('date of birth', None),), - ), - 'end_date_written': ( - (('date of death', None),), - ), + "base_url": "https://www.wikidata.org/wiki/Special:EntityData/", + "url_appendix": ".rdf", + "attributes": [ + {"name": "name", "identifiers": ((("objects", "")))}, + ], }, - 'labels': { - 'alternative name': ( - ('label', None), + ], + "matching": { + "attributes": { + "name": "{self}", + "first_name": ( + (("forename", None),), + (("personalName", None), " ", ("personalNameCounting", None)), ), + "start_date_written": ((("date of birth", None),),), + "end_date_written": ((("date of death", None),),), }, - 'linked objects': - [ - { - 'type': 'Place', - 'kind': 'born in', - 'object': ( - ('place of birth', None), - ) - }, - { - 'type': 'Place', - 'kind': 'died in', - 'object': ( - ('place of death', None), - ) + "labels": { + "alternative name": (("label", None),), }, - ] - } + "linked objects": [ + { + "type": "Place", + "kind": "born in", + "object": (("place of birth", None),), + }, + { + "type": "Place", + "kind": "died in", + "object": (("place of death", None),), + }, + ], + }, }, - 'Event': { - 'data': [ + "Event": { + "data": [ { - 'base_url': 'http://d-nb.info/gnd/', - 'url_appendix': 'about/rdf', - 'attributes': [ + "base_url": "http://d-nb.info/gnd/", + "url_appendix": "about/rdf", + "attributes": [ { - 'name': 'name', - 'identifiers': ( - (('objects', 'prefName', gndo + 'preferredNameForTheSubjectHeading', None),), - ) + "name": "name", + "identifiers": ( + ( + ( + "objects", + "prefName", + gndo + "preferredNameForTheSubjectHeading", + None, + ), + ), + ), }, { - 'name': 'start', - 'identifiers': ( - (('objects', 'start_date', gndo + 'dateOfEstablishment', None),), - ) + "name": "start", + "identifiers": ( + ( + ( + "objects", + "start_date", + gndo + "dateOfEstablishment", + None, + ), + ), + ), }, { - 'name': 'end', - 'identifiers': ( - (('objects', 'end_date', gndo + 'dateOfTermination', None),), - ) + "name": "end", + "identifiers": ( + ( + ( + "objects", + "end_date", + gndo + "dateOfTermination", + None, + ), + ), + ), }, { - 'name': 'label', - 'identifiers': ( - (('objects', 'label', gndo + 'variantNameForTheSubjectHeading', None),), - ) + "name": "label", + "identifiers": ( + ( + ( + "objects", + "label", + gndo + "variantNameForTheSubjectHeading", + None, + ), + ), + ), }, { - 'name': 'place of event', - 'identifiers': ( - (('objects', 'place of event', gndo + 'place', None),), - ) - } + "name": "place of event", + "identifiers": ( + (("objects", "place of event", gndo + "place", None),), + ), + }, ], } ], - 'matching': { - 'attributes': { - 'name': ( - (('prefName', None),), - ), - 'start_date_written': ( - (('start_date', None),), - ), - 'end_date_written': ( - (('end_date', None),), - ) - }, - 'labels': { - 'alternative name': ( - ('label', None), - ) - }, - 'linked objects': [ - { - 'type': 'Place', - 'kind': 'place of event', - 'object': ( - ('place of event', None), - ) + "matching": { + "attributes": { + "name": ((("prefName", None),),), + "start_date_written": ((("start_date", None),),), + "end_date_written": ((("end_date", None),),), }, + "labels": {"alternative name": (("label", None),)}, + "linked objects": [ + { + "type": "Place", + "kind": "place of event", + "object": (("place of event", None),), + }, ], - } + }, }, - 'Institution': { - 'data': [ + "Institution": { + "data": [ { - 'base_url': 'http://d-nb.info/gnd/', - 'url_appendix': 'about/rdf', - 'attributes': [ + "base_url": "http://d-nb.info/gnd/", + "url_appendix": "about/rdf", + "attributes": [ { - 'name': 'name', - 'identifiers': ( - (('objects', 'prefName', gndo + 'preferredNameForTheCorporateBody', None),), - (('objects', 'prefName', gndo + 'variantNameForTheCorporateBody', None),), - ) + "name": "name", + "identifiers": ( + ( + ( + "objects", + "prefName", + gndo + "preferredNameForTheCorporateBody", + None, + ), + ), + ( + ( + "objects", + "prefName", + gndo + "variantNameForTheCorporateBody", + None, + ), + ), + ), }, { - 'name': 'alternativeName', - 'identifiers': ( - (('objects', 'alternativeName', gndo + 'variantNameForTheCorporateBody', None),), - ) + "name": "alternativeName", + "identifiers": ( + ( + ( + "objects", + "alternativeName", + gndo + "variantNameForTheCorporateBody", + None, + ), + ), + ), }, { - 'name': 'start', - 'identifiers': ( - (('objects', 'start', gndo + 'dateOfEstablishment', None),), - ) + "name": "start", + "identifiers": ( + (("objects", "start", gndo + "dateOfEstablishment", None),), + ), }, { - 'name': 'end', - 'identifiers': ( - (('objects', 'end', gndo + 'dateOfTermination', None),), - ) + "name": "end", + "identifiers": ( + (("objects", "end", gndo + "dateOfTermination", None),), + ), }, { - 'name': 'placeOfBusiness', - 'identifiers': ( - (('objects', 'placeOfBusiness', gndo + 'placeOfBusiness', None),), - ) + "name": "placeOfBusiness", + "identifiers": ( + ( + ( + "objects", + "placeOfBusiness", + gndo + "placeOfBusiness", + None, + ), + ), + ), }, { - 'name': 'succeeding', - 'identifiers': ( - (('objects', 'succeeding', gndo + 'succeedingCorporateBody', None),), - ) + "name": "succeeding", + "identifiers": ( + ( + ( + "objects", + "succeeding", + gndo + "succeedingCorporateBody", + None, + ), + ), + ), }, { - 'name': 'preceding', - 'identifiers': ( - (('objects', 'preceding', gndo + 'precedingCorporateBody', None),), - ) - } - ] + "name": "preceding", + "identifiers": ( + ( + ( + "objects", + "preceding", + gndo + "precedingCorporateBody", + None, + ), + ), + ), + }, + ], } ], - 'matching': { - 'attributes': { - 'name': "{prefName}", - 'start_date_written': ( - (('start', None),), - ), - 'end_date_written': ( - (('end', None),), - ) + "matching": { + "attributes": { + "name": "{prefName}", + "start_date_written": ((("start", None),),), + "end_date_written": ((("end", None),),), }, - 'labels': { - 'alternative name': ( - ('alternativeName', None), - ) - }, - 'linked objects': [ - { - 'type': 'Place', - 'kind': 'located in', - 'object': ( - ('placeOfBusiness', None), - ) - }, - { - 'type': 'Institution', - 'kind': 'preceding', - 'object': ( - ('preceding', None), - ) - }, - { - 'type': 'Institution', - 'kind': 'succeeding', - 'object': ( - ('succeeding', None), - ) - }, - ] - } - } -} \ No newline at end of file + "labels": {"alternative name": (("alternativeName", None),)}, + "linked objects": [ + { + "type": "Place", + "kind": "located in", + "object": (("placeOfBusiness", None),), + }, + { + "type": "Institution", + "kind": "preceding", + "object": (("preceding", None),), + }, + { + "type": "Institution", + "kind": "succeeding", + "object": (("succeeding", None),), + }, + ], + }, + }, +} diff --git a/apis_core/helper_functions/ContentType.py b/apis_core/helper_functions/ContentType.py index d885568..a65fdde 100644 --- a/apis_core/helper_functions/ContentType.py +++ b/apis_core/helper_functions/ContentType.py @@ -6,20 +6,18 @@ class GetContentTypes: - # class memeber dictionary, used for caching ContentType objects in method get_content_type_of_class_or_instance class_content_type_dict = {} - def get_names(self): """Function to create Module/Class name tuples Returns: [list]: [list of Modile/Class tuples] - """ + """ res = [] for cls in self._lst_cont: - res.append((cls.__module__.split('.')[-2], cls.__name__)) + res.append((cls.__module__.split(".")[-2], cls.__name__)) return res def get_model_classes(self): @@ -27,10 +25,9 @@ def get_model_classes(self): Returns: [list]: [django model classes] - """ + """ return self._lst_cont - @classmethod def get_content_type_of_class_or_instance(cls, model_class_or_instance): """ @@ -55,18 +52,29 @@ def get_content_type_of_class_or_instance(cls, model_class_or_instance): ) if model_class not in cls.class_content_type_dict: - cls.class_content_type_dict[model_class] = ContentType.objects.get(model=model_class.__name__) + cls.class_content_type_dict[model_class] = ContentType.objects.get( + model=model_class.__name__ + ) return cls.class_content_type_dict[model_class] - def __init__(self, lst_conts=None): """ Args: lst_conts ([list], optional): [list of entity names]. Defaults to list of apis_core entities. - """ - models_exclude = ["texttype_collections", "relationbaseclass", "baserelationmanager", "relationpublishedqueryset"] - apis_modules = ['apis_core.apis_metainfo.models', 'apis_core.apis_vocabularies.models', 'apis_core.apis_entities.models', 'apis_core.apis_relations.models'] + """ + models_exclude = [ + "texttype_collections", + "relationbaseclass", + "baserelationmanager", + "relationpublishedqueryset", + ] + apis_modules = [ + "apis_core.apis_metainfo.models", + "apis_core.apis_vocabularies.models", + "apis_core.apis_entities.models", + "apis_core.apis_relations.models", + ] if lst_conts is not None: r2 = [] for c in lst_conts: @@ -78,7 +86,14 @@ def __init__(self, lst_conts=None): lst_cont = [] for m in lst_cont_pre: for cls_n in dir(m): - if not cls_n.startswith('__') and "__module__" in list(dir(getattr(m, cls_n))): - if getattr(m, cls_n).__module__ in apis_modules and cls_n.lower() not in models_exclude and not "abstract" in cls_n.lower() and inspect.isclass(getattr(m, cls_n)): + if not cls_n.startswith("__") and "__module__" in list( + dir(getattr(m, cls_n)) + ): + if ( + getattr(m, cls_n).__module__ in apis_modules + and cls_n.lower() not in models_exclude + and not "abstract" in cls_n.lower() + and inspect.isclass(getattr(m, cls_n)) + ): lst_cont.append(getattr(m, cls_n)) - self._lst_cont = lst_cont \ No newline at end of file + self._lst_cont = lst_cont diff --git a/apis_core/helper_functions/DateParser.py b/apis_core/helper_functions/DateParser.py index dfc46ba..fb59c9d 100644 --- a/apis_core/helper_functions/DateParser.py +++ b/apis_core/helper_functions/DateParser.py @@ -3,7 +3,7 @@ from datetime import datetime, timedelta -def parse_date( date_string: str ) -> (datetime, datetime, datetime): +def parse_date(date_string: str) -> (datetime, datetime, datetime): """ function to parse a string date field of an entity @@ -20,7 +20,6 @@ def parse_date( date_string: str ) -> (datetime, datetime, datetime): ending date of a range if user passed a range value either implicit or explicit. """ - def parse_date_range_individual(date, ab=False, bis=False): """ As a sub function to parse_date, this function parse_date_individual handles a very single date since @@ -47,7 +46,6 @@ def parse_date_range_individual(date, ab=False, bis=False): if a single date was given. """ - def get_last_day_of_month(month, year): """ Helper function to return the last day of a given month and year (respecting leap years) @@ -88,10 +86,10 @@ def get_last_day_of_month(month, year): # no valid month raise ValueError("Month " + str(month) + " does not exist.") - - # replace all kinds of delimiters - date = date.replace(" ", "").replace("-", ".").replace("/", ".").replace("\\", ".") + date = ( + date.replace(" ", "").replace("-", ".").replace("/", ".").replace("\\", ".") + ) # parse into variables for use later year = None @@ -132,7 +130,6 @@ def get_last_day_of_month(month, year): # No sensical interpretation found raise ValueError("Could not interpret date.") - if (ab and bis) or year is None: # both ab and bis in one single date are not valid, neither is the absence of a year. raise ValueError("Could not interpret date.") @@ -157,11 +154,10 @@ def get_last_day_of_month(month, year): day_ab = day day_bis = day - # return a tuple from a single date (which the calling function has to further process) return ( datetime(year=year, month=month_ab, day=day_ab), - datetime(year=year, month=month_bis, day=day_bis) + datetime(year=year, month=month_bis, day=day_bis), ) else: @@ -188,7 +184,6 @@ def get_last_day_of_month(month, year): return datetime(year=year, month=month, day=day) - try: # return variables @@ -199,14 +194,17 @@ def get_last_day_of_month(month, year): # split for angle brackets, check if explicit iso date is contained within them date_split_angle = re.split(r"(<.*?>)", date_string) - if len(date_split_angle) > 1: # date string contains angle brackets. Parse them, ignore the rest def parse_iso_date(date_string): date_string_split = date_string.split("-") try: - return datetime(year=int(date_string_split[0]), month=int(date_string_split[1]), day=int(date_string_split[2]) ) + return datetime( + year=int(date_string_split[0]), + month=int(date_string_split[1]), + day=int(date_string_split[2]), + ) except: raise ValueError("Invalid iso date: ", date_string) @@ -226,7 +224,8 @@ def parse_iso_date(date_string): if len(dates_iso) != 1 and len(dates_iso) != 3: # only either one iso date or three are allowed raise ValueError( - "Incorrect number of dates given. Within angle brackets only one or three (separated by commas) are allowed.") + "Incorrect number of dates given. Within angle brackets only one or three (separated by commas) are allowed." + ) elif len(dates_iso) == 3: # three iso dates indicate further start and end dates @@ -246,7 +245,6 @@ def parse_iso_date(date_string): if date_single_string != "": date_single = parse_iso_date(date_single_string) - else: # date string contains no angle brackets. Interpret the possible date formats date_string = date_string.lower() @@ -270,7 +268,9 @@ def parse_iso_date(date_string): found_ab = True # parse the next value which must be a parsable date string - date_ab = parse_date_range_individual(date_split_ab_bis[i + 1], ab=True) + date_ab = parse_date_range_individual( + date_split_ab_bis[i + 1], ab=True + ) elif v == "bis": # indicates that the next value must be an end date @@ -281,7 +281,9 @@ def parse_iso_date(date_string): found_bis = True # parse the next value which must be a parsable date string - date_bis = parse_date_range_individual(date_split_ab_bis[i + 1], bis=True) + date_bis = parse_date_range_individual( + date_split_ab_bis[i + 1], bis=True + ) elif v != "" and not found_ab and not found_bis and not found_single: # indicates that this value must be a date @@ -305,7 +307,9 @@ def parse_iso_date(date_string): # calculate difference between start and end date of range, # and use it to calculate a single date for usage as median. - days_delta_half = math.floor((date_bis - date_ab).days / 2, ) + days_delta_half = math.floor( + (date_bis - date_ab).days / 2, + ) date_single = date_ab + timedelta(days=days_delta_half) elif date_ab is not None and date_bis is None: @@ -324,8 +328,9 @@ def parse_iso_date(date_string): return date_single, date_ab, date_bis - -def get_date_help_text_from_dates(single_date, single_start_date, single_end_date, single_date_written): +def get_date_help_text_from_dates( + single_date, single_start_date, single_end_date, single_date_written +): """ function for creating string help text from parsed dates, to provide feedback to the user about the parsing status of a given date field. @@ -346,7 +351,6 @@ def get_date_help_text_from_dates(single_date, single_start_date, single_end_dat The text to be displayed underneath a date field, informing the user about the parsing result """ - # check which of the dates could be parsed to construct the relevant feedback text help_text = "" @@ -361,10 +365,14 @@ def get_date_help_text_from_dates(single_date, single_start_date, single_end_dat if single_start_date: # date has start range - help_text += \ - str(single_start_date.year) + "-" + \ - str(single_start_date.month) + "-" + \ - str(single_start_date.day) + " until " + help_text += ( + str(single_start_date.year) + + "-" + + str(single_start_date.month) + + "-" + + str(single_start_date.day) + + " until " + ) else: # date has no start range, then write "undefined" @@ -374,10 +382,13 @@ def get_date_help_text_from_dates(single_date, single_start_date, single_end_dat if single_end_date: # date has end range - help_text += \ - str(single_end_date.year) + "-" + \ - str(single_end_date.month) + "-" + \ - str(single_end_date.day) + help_text += ( + str(single_end_date.year) + + "-" + + str(single_end_date.month) + + "-" + + str(single_end_date.day) + ) else: # date has no start range, then write "undefined" @@ -387,15 +398,20 @@ def get_date_help_text_from_dates(single_date, single_start_date, single_end_dat else: # date has no start nor end range. Use single date then. - help_text += \ - str(single_date.year) + "-" + \ - str(single_date.month) + "-" + \ - str(single_date.day) + help_text += ( + str(single_date.year) + + "-" + + str(single_date.month) + + "-" + + str(single_date.day) + ) elif single_date_written is not None: # date input field is not empty but it could not be parsed either. Show parsing info and help text - help_text = "Date could not be interpreted
" + get_date_help_text_default() + help_text = ( + "Date could not be interpreted
" + get_date_help_text_default() + ) else: # date field is completely empty. Show help text only @@ -405,7 +421,6 @@ def get_date_help_text_from_dates(single_date, single_start_date, single_end_dat return help_text - def get_date_help_text_default(): return "Dates are interpreted by defined rules. If this fails, an iso-date can be explicitly set with '<YYYY-MM-DD>'." diff --git a/apis_core/helper_functions/EntityRelationFieldGenerator.py b/apis_core/helper_functions/EntityRelationFieldGenerator.py index de74aa8..03ec92f 100644 --- a/apis_core/helper_functions/EntityRelationFieldGenerator.py +++ b/apis_core/helper_functions/EntityRelationFieldGenerator.py @@ -1,5 +1,6 @@ from django.db import models + def generate_all_fields(): """ This function goes through every entity, relation, and relationtype model and automatically wires them together @@ -27,8 +28,6 @@ def generate_all_fields(): from apis_core.apis_relations.models import AbstractRelation from apis_core.apis_vocabularies.models import AbstractRelationType - - def create_function_get_related_entity_class(related_entity_class): """ :param related_entity_class: the class which the generated class method shall return @@ -43,9 +42,6 @@ def create_function_get_related_entity_field_name(related_entity_field_name): """ return classmethod(lambda cls: related_entity_field_name) - - - def pair_up_relations_relationtypes(relation_classes, relationtype_classes): """ helper function to pair up the relation and relationtype classes so that potential mismatches between them are @@ -80,22 +76,24 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): message = "" for cls in no_pairing_found: - message += "Found no corresponding Relation or RelationType class to: \n" + str(cls) + "!" + message += ( + "Found no corresponding Relation or RelationType class to: \n" + + str(cls) + + "!" + ) raise Exception(message) return rc_rtc_pairs - # all relation, relationtype classes to be iterated over: relation_relationtype_pairs = pair_up_relations_relationtypes( relation_classes=AbstractRelation.get_all_relation_classes(), - relationtype_classes=AbstractRelationType.get_all_relationtype_classes() + relationtype_classes=AbstractRelationType.get_all_relationtype_classes(), ) # all entity classes to be iterated over: entity_classes = AbstractEntity.get_all_entity_classes() - # Iterate over all entity classes, twice, so that all relations between all entity classes are covered. for entity_class_a in entity_classes: for entity_class_b in entity_classes: @@ -106,16 +104,16 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # inner loop iterating over each of the relation_class and relationtype at the same time for relation_class, relationtype_class in relation_relationtype_pairs: - # Check if current relation related to both entities # Note that this way two entites are checked twice, such as person-place and place-person # but however in the relation model only one of these two exists. Thus the right one will be picked. - if entity_class_name_a + entity_class_name_b == relation_class.__name__.lower(): + if ( + entity_class_name_a + entity_class_name_b + == relation_class.__name__.lower() + ): if entity_class_a != entity_class_b: - - # On relation models: generate fields from relation to entity and from relation to relationtype ################################################################################################ @@ -125,7 +123,9 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # To stick to common Django ORM Syntax, set the field name in the related entity class to # the current relation name and add '_set' to it (since going from the entity one would have # multiple relation instances possibly.) - relation_field_name_in_other_class = entity_class_name_a + entity_class_name_b + "_set" + relation_field_name_in_other_class = ( + entity_class_name_a + entity_class_name_b + "_set" + ) # Create the related entity field A. models.ForeignKey( @@ -133,7 +133,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): blank=True, null=True, on_delete=models.CASCADE, - related_name=relation_field_name_in_other_class + related_name=relation_field_name_in_other_class, ).contribute_to_class(relation_class, relation_field_name_a) # Create the related entity field B. @@ -142,7 +142,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): blank=True, null=True, on_delete=models.CASCADE, - related_name=relation_field_name_in_other_class + related_name=relation_field_name_in_other_class, ).contribute_to_class(relation_class, relation_field_name_b) # Create the related relationtype field @@ -151,7 +151,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): blank=True, null=True, on_delete=models.CASCADE, - related_name=relation_field_name_in_other_class + related_name=relation_field_name_in_other_class, ).contribute_to_class(relation_class, "relation_type") # Implemented the following methods programmatically by setting the respective relations, @@ -159,42 +159,72 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # Note that these methods are first defined as stumps within AbstractRelation for documentation # purposes. - relation_class.get_related_entity_classa = \ + relation_class.get_related_entity_classa = ( create_function_get_related_entity_class(entity_class_a) + ) - relation_class.get_related_entity_classb = \ + relation_class.get_related_entity_classb = ( create_function_get_related_entity_class(entity_class_b) - - relation_class.get_related_entity_field_namea = \ - create_function_get_related_entity_field_name(relation_field_name_a) - - relation_class.get_related_entity_field_nameb = \ - create_function_get_related_entity_field_name(relation_field_name_b) - - relation_class.add_relation_class_of_entity_class(entity_class_a) - relation_class.add_relation_class_of_entity_class(entity_class_b) + ) + + relation_class.get_related_entity_field_namea = ( + create_function_get_related_entity_field_name( + relation_field_name_a + ) + ) + + relation_class.get_related_entity_field_nameb = ( + create_function_get_related_entity_field_name( + relation_field_name_b + ) + ) + + relation_class.add_relation_class_of_entity_class( + entity_class_a + ) + relation_class.add_relation_class_of_entity_class( + entity_class_b + ) relation_class.add_relation_field_name_of_entity_class( - relation_name=relation_field_name_in_other_class, entity_class=entity_class_a) + relation_name=relation_field_name_in_other_class, + entity_class=entity_class_a, + ) relation_class.add_relation_field_name_of_entity_class( - relation_name=relation_field_name_in_other_class, entity_class=entity_class_b) - - + relation_name=relation_field_name_in_other_class, + entity_class=entity_class_b, + ) # On entity models: generate fields from entity to entity and from entity to relationtype ################################################################################################ field_name_to_entity_a = entity_class_name_a + "_set" field_name_to_entity_b = entity_class_name_b + "_set" - field_name_to_entity_b_relationtype = entity_class_name_b + "_relationtype_set" - field_name_to_entity_a_relationtype = entity_class_name_a + "_relationtype_set" + field_name_to_entity_b_relationtype = ( + entity_class_name_b + "_relationtype_set" + ) + field_name_to_entity_a_relationtype = ( + entity_class_name_a + "_relationtype_set" + ) # Add those names already into the respective class's list of field names - entity_class_a.add_related_entity_field_name(field_name_to_entity_b) - entity_class_b.add_related_entity_field_name(field_name_to_entity_a) - entity_class_a.add_related_relationtype_field_name(field_name_to_entity_b_relationtype) - entity_class_b.add_related_relationtype_field_name(field_name_to_entity_a_relationtype) - relationtype_class.add_related_entity_field_name(field_name_to_entity_b) - relationtype_class.add_related_entity_field_name(field_name_to_entity_a) + entity_class_a.add_related_entity_field_name( + field_name_to_entity_b + ) + entity_class_b.add_related_entity_field_name( + field_name_to_entity_a + ) + entity_class_a.add_related_relationtype_field_name( + field_name_to_entity_b_relationtype + ) + entity_class_b.add_related_relationtype_field_name( + field_name_to_entity_a_relationtype + ) + relationtype_class.add_related_entity_field_name( + field_name_to_entity_b + ) + relationtype_class.add_related_entity_field_name( + field_name_to_entity_a + ) # entity A to entity B, and B back to A models.ManyToManyField( @@ -210,7 +240,9 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): through=relation_class, related_name=field_name_to_entity_a, blank=True, - ).contribute_to_class(entity_class_a, field_name_to_entity_b_relationtype) + ).contribute_to_class( + entity_class_a, field_name_to_entity_b_relationtype + ) # entity B to RelationType via entity A, and RelationType back to B models.ManyToManyField( @@ -218,14 +250,12 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): through=relation_class, related_name=field_name_to_entity_b, blank=True, - ).contribute_to_class(entity_class_b, field_name_to_entity_a_relationtype) - - + ).contribute_to_class( + entity_class_b, field_name_to_entity_a_relationtype + ) else: - - # On relation models: generate fields from relation to entity and from relation to relationtype ################################################################################################ @@ -233,7 +263,6 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): entity_class_name = entity_class_name_a entity_class = entity_class_a - relation_field_name_a = "related_" + entity_class_name + "a" relation_field_name_b = "related_" + entity_class_name + "b" @@ -249,7 +278,9 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # generated as before. relation_field_name_in_other_class_a = relation_field_name_b relation_field_name_in_other_class_b = relation_field_name_a - relation_field_name_in_other_class = entity_class_name_a + entity_class_name_b + "_set" + relation_field_name_in_other_class = ( + entity_class_name_a + entity_class_name_b + "_set" + ) # TODO __sresch__ : use the following related name for consistency reasons once most code breaking parts due to this change are identified. # @@ -268,7 +299,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): blank=True, null=True, on_delete=models.CASCADE, - related_name=relation_field_name_in_other_class_a + related_name=relation_field_name_in_other_class_a, ).contribute_to_class(relation_class, relation_field_name_a) # Create the related entity field B. @@ -277,7 +308,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): blank=True, null=True, on_delete=models.CASCADE, - related_name=relation_field_name_in_other_class_b + related_name=relation_field_name_in_other_class_b, ).contribute_to_class(relation_class, relation_field_name_b) # Create the related relaiontype field @@ -286,7 +317,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): blank=True, null=True, on_delete=models.CASCADE, - related_name=relation_field_name_in_other_class + related_name=relation_field_name_in_other_class, ).contribute_to_class(relation_class, "relation_type") # Implemented the following methods programmatically by setting the respective relations, @@ -294,25 +325,35 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # Note that these methods are first defined as stumps within AbstractRelation for documentation # purposes. - relation_class.get_related_entity_classa = \ + relation_class.get_related_entity_classa = ( create_function_get_related_entity_class(entity_class) + ) - relation_class.get_related_entity_classb = \ + relation_class.get_related_entity_classb = ( create_function_get_related_entity_class(entity_class) + ) - relation_class.get_related_entity_field_namea = \ - create_function_get_related_entity_field_name(relation_field_name_a) + relation_class.get_related_entity_field_namea = ( + create_function_get_related_entity_field_name( + relation_field_name_a + ) + ) - relation_class.get_related_entity_field_nameb = \ - create_function_get_related_entity_field_name(relation_field_name_b) + relation_class.get_related_entity_field_nameb = ( + create_function_get_related_entity_field_name( + relation_field_name_b + ) + ) relation_class.add_relation_class_of_entity_class(entity_class) relation_class.add_relation_field_name_of_entity_class( - relation_name=relation_field_name_in_other_class_a, entity_class=entity_class) + relation_name=relation_field_name_in_other_class_a, + entity_class=entity_class, + ) relation_class.add_relation_field_name_of_entity_class( - relation_name=relation_field_name_in_other_class_b, entity_class=entity_class) - - + relation_name=relation_field_name_in_other_class_b, + entity_class=entity_class, + ) # On entity models: generate fields from entity to entity and from entity to relationtype ################################################################################################ @@ -320,16 +361,32 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # Define all the names for the ManyToMany fields generated below field_name_to_entity_a = entity_class_name_a + "a_set" field_name_to_entity_b = entity_class_name_b + "b_set" - field_name_to_entity_b_relationtype = entity_class_name_b + "b_relationtype_set" - field_name_to_entity_a_relationtype = entity_class_name_a + "a_relationtype_set" + field_name_to_entity_b_relationtype = ( + entity_class_name_b + "b_relationtype_set" + ) + field_name_to_entity_a_relationtype = ( + entity_class_name_a + "a_relationtype_set" + ) # Add those names already into the respective class's list of field names - entity_class_a.add_related_entity_field_name(field_name_to_entity_b) - entity_class_b.add_related_entity_field_name(field_name_to_entity_a) - entity_class_a.add_related_relationtype_field_name(field_name_to_entity_b_relationtype) - entity_class_b.add_related_relationtype_field_name(field_name_to_entity_a_relationtype) - relationtype_class.add_related_entity_field_name(field_name_to_entity_b) - relationtype_class.add_related_entity_field_name(field_name_to_entity_a) + entity_class_a.add_related_entity_field_name( + field_name_to_entity_b + ) + entity_class_b.add_related_entity_field_name( + field_name_to_entity_a + ) + entity_class_a.add_related_relationtype_field_name( + field_name_to_entity_b_relationtype + ) + entity_class_b.add_related_relationtype_field_name( + field_name_to_entity_a_relationtype + ) + relationtype_class.add_related_entity_field_name( + field_name_to_entity_b + ) + relationtype_class.add_related_entity_field_name( + field_name_to_entity_a + ) # entity A to same entity B, and B back to A models.ManyToManyField( @@ -338,7 +395,10 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): related_name=field_name_to_entity_a, blank=True, symmetrical=False, - through_fields=("related_" + entity_class_name_a + "a", "related_" + entity_class_name_b + "b") + through_fields=( + "related_" + entity_class_name_a + "a", + "related_" + entity_class_name_b + "b", + ), ).contribute_to_class(entity_class_a, field_name_to_entity_b) # entity A to RelationType via entity B, and RelationType back to A @@ -348,8 +408,13 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): related_name=field_name_to_entity_a, blank=True, symmetrical=False, - through_fields=("related_" + entity_class_name_a + "a", "relation_type") - ).contribute_to_class(entity_class_a, field_name_to_entity_b_relationtype) + through_fields=( + "related_" + entity_class_name_a + "a", + "relation_type", + ), + ).contribute_to_class( + entity_class_a, field_name_to_entity_b_relationtype + ) # entity B to RelationType via entity A, and RelationType back to B models.ManyToManyField( @@ -358,10 +423,13 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): related_name=field_name_to_entity_a_relationtype, blank=True, symmetrical=False, - through_fields=("relation_type", "related_" + entity_class_name_b + "b") - ).contribute_to_class(relationtype_class, field_name_to_entity_b) - - + through_fields=( + "relation_type", + "related_" + entity_class_name_b + "b", + ), + ).contribute_to_class( + relationtype_class, field_name_to_entity_b + ) # if entity_class_a_name + entity_class_b_name == relation_class.__name__.lower() # equals to True, then for entity_class_a and entity_class_b, their respective relation class diff --git a/apis_core/helper_functions/RDFParser.py b/apis_core/helper_functions/RDFParser.py index 1b55bd7..7ffef60 100644 --- a/apis_core/helper_functions/RDFParser.py +++ b/apis_core/helper_functions/RDFParser.py @@ -24,30 +24,33 @@ from apis_core.default_settings.RDF_settings_new import sameAs APIS_RDF_YAML_SETTINGS = getattr( - settings, - 'APIS_RDF_YAML_SETTINGS', - os.path.join(os.path.dirname(__file__), '../default_settings', 'RDF_default_settings.yml') - ) + settings, + "APIS_RDF_YAML_SETTINGS", + os.path.join( + os.path.dirname(__file__), "../default_settings", "RDF_default_settings.yml" + ), +) APIS_RDF_URI_SETTINGS = getattr( - settings, - 'APIS_RDF_URI_SETTINGS', - os.path.join(os.path.dirname(__file__), '../default_settings', "URI_replace_settings.yml") - ) + settings, + "APIS_RDF_URI_SETTINGS", + os.path.join( + os.path.dirname(__file__), "../default_settings", "URI_replace_settings.yml" + ), +) def clean_uri(sett, uri): - for dom in sett['mappings']: - if dom['domain'] in uri: - m = re.match(dom['regex'], uri) + for dom in sett["mappings"]: + if dom["domain"] in uri: + m = re.match(dom["regex"], uri) if m: - uri = dom['replace'].format(m.group(1)) + uri = dom["replace"].format(m.group(1)) return uri class PartialFormatter(string.Formatter): - - def __init__(self, missing='-', bad_fmt='!!'): + def __init__(self, missing="-", bad_fmt="!!"): self.missing, self.bad_fmt = missing, bad_fmt def get_field(self, field_name, args, kwargs): @@ -78,7 +81,7 @@ class RDFParser(object): @property def _settings_complete(self): - sett = yaml.load(open(self._rdf_settings_file, 'r'), Loader=yaml.FullLoader) + sett = yaml.load(open(self._rdf_settings_file, "r"), Loader=yaml.FullLoader) return sett @property @@ -87,13 +90,13 @@ def _settings(self): Reads settings file and saves it :return: (dict) dict of settings file """ - sett = yaml.load(open(self._rdf_settings_file, 'r'), Loader=yaml.FullLoader) - res = {'data': []} - for v in sett[self.kind]['data']: - if v['base_url'] in self.uri: - res['data'] = v - res['matching'] = sett[self.kind]['matching'] - res['sameAs'] = sameAs + sett = yaml.load(open(self._rdf_settings_file, "r"), Loader=yaml.FullLoader) + res = {"data": []} + for v in sett[self.kind]["data"]: + if v["base_url"] in self.uri: + res["data"] = v + res["matching"] = sett[self.kind]["matching"] + res["sameAs"] = sameAs return res @staticmethod @@ -111,7 +114,9 @@ def _exist(self, uri, uri_check=True): return True, self.objct.objects.get(uri__uri=uri) else: if uri in RDFParser._reserved_uris.keys() and uri_check: - if (time.time() - RDFParser._reserved_uris[uri]) < (self._preserve_uri_minutes * 60): + if (time.time() - RDFParser._reserved_uris[uri]) < ( + self._preserve_uri_minutes * 60 + ): raise ValueError("URI used by other instance") else: RDFParser._reserved_uris[uri] = time.time() @@ -134,12 +139,12 @@ def _parse(self): pref_fin = [] u = None count = 0 - u = self._settings_complete[self.kind]['data'][count]['base_url'] + u = self._settings_complete[self.kind]["data"][count]["base_url"] while u: if u not in self.uri: lst_pref.append(u) count += 1 - u = self._settings_complete[self.kind]['data'][count]['base_url'] + u = self._settings_complete[self.kind]["data"][count]["base_url"] else: u = False for o in g.objects(URIRef(self.uri), OWL.sameAs): @@ -152,11 +157,13 @@ def _parse(self): self.uri = pref_fin[0][1] self._graph = g res = dict() - for s in self._settings['data']['attributes']: - sp = s.get('sparql', False) + for s in self._settings["data"]["attributes"]: + sp = s.get("sparql", False) if sp: - sp2 = self._sparql_to_pandas(g.query(sp, initBindings={'subject': URIRef(self.uri)})) - res[s.get('name', 'no identifier provided')] = pd.DataFrame(sp2) + sp2 = self._sparql_to_pandas( + g.query(sp, initBindings={"subject": URIRef(self.uri)}) + ) + res[s.get("name", "no identifier provided")] = pd.DataFrame(sp2) self._attributes = res return res @@ -164,7 +171,7 @@ def _add_same_as(self): """ adds the same as links as defined in the settings to the entity """ - for sa in self._settings['sameAs']: + for sa in self._settings["sameAs"]: for su in self._graph.objects((self._subject, URIRef(sa))): Uri.objects.create(uri=su, entity=self.objct) @@ -197,7 +204,7 @@ def save(self): if exist.count() > 0: if exist[0].entity is not None: return exist[0].entity - self.objct.status = 'distinct' + self.objct.status = "distinct" for obj in self._foreign_keys: try: attr2, created = obj[1].objects.get_or_create(**obj[2]) @@ -205,7 +212,9 @@ def save(self): except MultipleObjectsReturned: pass self.objct.save() - def_coll, created = Collection.objects.get_or_create(name='Default import collection') + def_coll, created = Collection.objects.get_or_create( + name="Default import collection" + ) self.objct.collection.add(def_coll) self.saved = True self._objct_uri.entity = self.objct @@ -214,7 +223,9 @@ def save(self): lab_new = [] for lab in self.labels: lt, created = LabelType.objects.get_or_create(name=lab[2]) - l1 = Label.objects.create(label=lab[0], label_type=lt, temp_entity=self.objct) + l1 = Label.objects.create( + label=lab[0], label_type=lt, temp_entity=self.objct + ) lab_new.append(l1) self.labels = lab_new rel_obj_new = [] @@ -226,19 +237,32 @@ def save(self): pass for obj in self.related_objcts: for u3 in obj[1]: - ent1 = RDFParser(u3, obj[2], uri_check=self._uri_check, preserve_uri_minutes=self._preserve_uri_minutes).get_or_create(depth=0) + ent1 = RDFParser( + u3, + obj[2], + uri_check=self._uri_check, + preserve_uri_minutes=self._preserve_uri_minutes, + ).get_or_create(depth=0) if obj[2].lower() == self.kind.lower(): - mod = ContentType.objects.get(model=f"{self.kind.lower()*2}", app_label=self._app_label_relations).model_class()() - setattr(mod, 'related_' + self.kind.lower() + 'A_id', self.objct.pk) - setattr(mod, 'related_' + self.kind.lower() + 'B_id', ent1.pk) + mod = ContentType.objects.get( + model=f"{self.kind.lower()*2}", + app_label=self._app_label_relations, + ).model_class()() + setattr(mod, "related_" + self.kind.lower() + "A_id", self.objct.pk) + setattr(mod, "related_" + self.kind.lower() + "B_id", ent1.pk) else: - mod = ContentType.objects.filter(model__icontains=obj[2], app_label=self._app_label_relations).get( - model__icontains=self.kind).model_class()() - setattr(mod, 'related_' + self.kind.lower() + '_id', self.objct.pk) - setattr(mod, 'related_' + obj[2].lower() + '_id', ent1.pk) - voc = mod._meta.get_field('relation_type').related_model + mod = ( + ContentType.objects.filter( + model__icontains=obj[2], app_label=self._app_label_relations + ) + .get(model__icontains=self.kind) + .model_class()() + ) + setattr(mod, "related_" + self.kind.lower() + "_id", self.objct.pk) + setattr(mod, "related_" + obj[2].lower() + "_id", ent1.pk) + voc = mod._meta.get_field("relation_type").related_model voc1, created = voc.objects.get_or_create(name=obj[0]) - setattr(mod, 'relation_type_id', voc1.pk) + setattr(mod, "relation_type_id", voc1.pk) mod.save() rel_obj_new.append(mod) self.related_objcts = rel_obj_new @@ -264,11 +288,11 @@ def _prep_string(self, string, regex, linked=False, data_type=False): :return: (str) converted string """ conv_mapping = { - 'str': str, - 'string': str, - 'float': float, - 'int': int, - 'integer': int + "str": str, + "string": str, + "float": float, + "int": int, + "integer": int, } if string is None: return None @@ -280,12 +304,14 @@ def _prep_string(self, string, regex, linked=False, data_type=False): else: return None if len(string) > 255: - string = string[:250] + '...' + string = string[:250] + "..." if linked: g1 = rdflib.Graph() g1.parse(string) pref1 = (SKOS.prefLabel, RDFS.label) - pref1 += tuple([URIRef(x) for x in self._settings['matching']['prefLabels']]) + pref1 += tuple( + [URIRef(x) for x in self._settings["matching"]["prefLabels"]] + ) string = g1.preferredLabel(URIRef(string), labelProperties=pref1) if len(string) > 0: string = str(string[0][1]) @@ -303,30 +329,38 @@ def _normalize_uri(self, uri): :param uri: (url) URI to normalize :return: (url) converted URI """ - sett = yaml.load(open(self._uri_settings_file, 'r'), Loader=yaml.FullLoader) + sett = yaml.load(open(self._uri_settings_file, "r"), Loader=yaml.FullLoader) return clean_uri(sett, uri) - def merge(self, m_obj, app_label_relations='apis_relations'): + def merge(self, m_obj, app_label_relations="apis_relations"): """ :param m_obj: the object to merge into (must be an django model object instance) :param app_label_relations: (string) the label of the Django app that contains the relations :return: django object saved to db or False if nothing was saved """ - for rel in ContentType.objects.filter(app_label=app_label_relations, model__icontains=self.kind.lower()): - rel_q = {'related_' + self.kind.lower(): m_obj} + for rel in ContentType.objects.filter( + app_label=app_label_relations, model__icontains=self.kind.lower() + ): + rel_q = {"related_" + self.kind.lower(): m_obj} rel2 = rel.model_class() try: for rel_exst in rel2.objects.filter(**rel_q): - setattr(rel_exst, 'related_'+self.kind.lower()+'_id', self.objct.pk) + setattr( + rel_exst, "related_" + self.kind.lower() + "_id", self.objct.pk + ) rel_exst.save() except FieldError: # e.g. PlacePlace relations have different related_ fields - rel_q = {'related_' + self.kind.lower()+'A': m_obj} + rel_q = {"related_" + self.kind.lower() + "A": m_obj} for rel_exst in rel2.objects.filter(**rel_q): - setattr(rel_exst, 'related_'+self.kind.lower()+'A_id', self.objct.pk) + setattr( + rel_exst, "related_" + self.kind.lower() + "A_id", self.objct.pk + ) rel_exst.save() - rel_q = {'related_' + self.kind.lower() + 'B': m_obj} + rel_q = {"related_" + self.kind.lower() + "B": m_obj} for rel_exst in rel2.objects.filter(**rel_q): - setattr(rel_exst, 'related_'+self.kind.lower()+'B_id', self.objct.pk) + setattr( + rel_exst, "related_" + self.kind.lower() + "B_id", self.objct.pk + ) rel_exst.save() for z in genUri.objects.filter(entity=m_obj): z.entity_id = self.objct.pk @@ -334,16 +368,22 @@ def merge(self, m_obj, app_label_relations='apis_relations'): for z in Label.objects.filter(temp_entity=m_obj): z.temp_entity_id = self.objct.pk z.save() - if hasattr(m_obj, 'first_name'): - legacy_name = '{}, {}'.format(m_obj.name, m_obj.first_name) + if hasattr(m_obj, "first_name"): + legacy_name = "{}, {}".format(m_obj.name, m_obj.first_name) else: legacy_name = m_obj.name - lt, created = LabelType.objects.get_or_create(name='legacy name') - Label.objects.create(temp_entity_id=self.objct.pk, label=legacy_name, label_type=lt) + lt, created = LabelType.objects.get_or_create(name="legacy name") + Label.objects.create( + temp_entity_id=self.objct.pk, label=legacy_name, label_type=lt + ) for col in m_obj.collection.all(): self.objct.collection.add(col) - if 'apis_highlighter' in settings.INSTALLED_APPS: - for ann in m_obj.annotation_set.all(): # Todo: check if this works now with highlighter + if "apis_highlighter" in settings.INSTALLED_APPS: + for ( + ann + ) in ( + m_obj.annotation_set.all() + ): # Todo: check if this works now with highlighter ann.entity_link = self.objct ann.save() for txt in m_obj.text.all(): @@ -354,7 +394,6 @@ def merge(self, m_obj, app_label_relations='apis_relations'): m_obj.delete() return self.objct - def create_objct(self, depth=2): """ Uses parsed attributes to create an object that is not yet persisted to the db. @@ -362,82 +401,140 @@ def create_objct(self, depth=2): :param depth: (int) depth to follow """ c_dict = dict() - for s in self._settings['matching']['attributes'].keys(): - if 'domain' in self._settings['matching']['attributes'][s].keys(): - if self._settings['matching']['attributes'][s]['domain'] not in self.uri: + for s in self._settings["matching"]["attributes"].keys(): + if "domain" in self._settings["matching"]["attributes"][s].keys(): + if ( + self._settings["matching"]["attributes"][s]["domain"] + not in self.uri + ): if self.print_info: - print(f"continue: {s} / {self.uri} / {self._settings['matching']['attributes'][s]['domain']}") + print( + f"continue: {s} / {self.uri} / {self._settings['matching']['attributes'][s]['domain']}" + ) continue - access = self._settings['matching']['attributes'][s].get('accessor', None) - field_name = self._settings['matching']['attributes'][s].get('field name', s) + access = self._settings["matching"]["attributes"][s].get("accessor", None) + field_name = self._settings["matching"]["attributes"][s].get( + "field name", s + ) fields_1 = self.objct._meta.get_field(field_name) - local_regex = self._settings['matching']['attributes'][s].get('regex', None) - local_linked = self._settings['matching']['attributes'][s].get('linked', None) - local_data_type = self._settings['matching']['attributes'][s].get('data type', False) - id_1 = self._settings['matching']['attributes'][s].get('identifier', s).split('.')[0] + local_regex = self._settings["matching"]["attributes"][s].get("regex", None) + local_linked = self._settings["matching"]["attributes"][s].get( + "linked", None + ) + local_data_type = self._settings["matching"]["attributes"][s].get( + "data type", False + ) + id_1 = ( + self._settings["matching"]["attributes"][s] + .get("identifier", s) + .split(".")[0] + ) if isinstance(fields_1, TCharField) or isinstance(fields_1, TFloatField): data = dict() if id_1 in self._attributes.keys(): df = self._attributes[id_1] - cols = [x for x in df.columns if x != 'lang'] + cols = [x for x in df.columns if x != "lang"] for c in cols: data[c] = df.at[0, c] if self.print_info: print(f"data: {data}") - if 'string' in self._settings['matching']['attributes'][s].keys(): - local_string = fmt.format(self._settings['matching']['attributes'][s]['string'], **data) + if "string" in self._settings["matching"]["attributes"][s].keys(): + local_string = fmt.format( + self._settings["matching"]["attributes"][s]["string"], + **data, + ) else: - local_string = fmt.format("{"+self._settings['matching']['attributes'][s]['identifier'].split('.')[-1]+"}", **data) - c_dict[field_name] = self._prep_string(local_string, local_regex, local_linked, local_data_type) + local_string = fmt.format( + "{" + + self._settings["matching"]["attributes"][s][ + "identifier" + ].split(".")[-1] + + "}", + **data, + ) + c_dict[field_name] = self._prep_string( + local_string, local_regex, local_linked, local_data_type + ) elif isinstance(fields_1, TForeignKey): data = dict() c_dict_f = dict() if id_1 in self._attributes.keys(): df = self._attributes[id_1] - cols = [x for x in df.columns if x != 'lang'] + cols = [x for x in df.columns if x != "lang"] for c in cols: data[c] = df.at[0, c] - local_string = fmt.format(self._settings['matching']['attributes'][s]['string'], **data) - c_dict_f[access] = self._prep_string(local_string, local_regex, local_linked, local_data_type) - self._foreign_keys.append((field_name, self.objct._meta.get_field(s).related_model, c_dict_f)) + local_string = fmt.format( + self._settings["matching"]["attributes"][s]["string"], **data + ) + c_dict_f[access] = self._prep_string( + local_string, local_regex, local_linked, local_data_type + ) + self._foreign_keys.append( + (field_name, self.objct._meta.get_field(s).related_model, c_dict_f) + ) elif isinstance(fields_1, TManyToMany): df = self._attributes[id_1] for idx, row in df.iterrows(): data = dict() if id_1 in self._attributes.keys(): - cols = [x for x in df.columns if x != 'lang'] + cols = [x for x in df.columns if x != "lang"] for c in cols: data[c] = row[c] c_dict_f = dict() - local_string = fmt.format(self._settings['matching']['attributes'][s]['string'], **data) - c_dict_f[access] = self._prep_string(local_string, local_regex, local_linked, local_data_type) - self._m2m.append((field_name, self.objct._meta.get_field(s).related_model, c_dict_f)) - if 'labels' in self._settings['matching'].keys(): - for lab in self._settings['matching']['labels']: - at1 = lab['identifier'].split('.') + local_string = fmt.format( + self._settings["matching"]["attributes"][s]["string"], + **data, + ) + c_dict_f[access] = self._prep_string( + local_string, local_regex, local_linked, local_data_type + ) + self._m2m.append( + ( + field_name, + self.objct._meta.get_field(s).related_model, + c_dict_f, + ) + ) + if "labels" in self._settings["matching"].keys(): + for lab in self._settings["matching"]["labels"]: + at1 = lab["identifier"].split(".") if at1[0] in self._attributes.keys(): if at1[-1] not in self._attributes[at1[0]].columns: if self.print_info: - print('label_missing') + print("label_missing") continue - if 'lang' not in self._attributes[at1[0]]: - self._attributes[at1[0]]['lang'] = 'deu' - u2 = self._attributes[at1[0]][[at1[-1], 'lang']] + if "lang" not in self._attributes[at1[0]]: + self._attributes[at1[0]]["lang"] = "deu" + u2 = self._attributes[at1[0]][[at1[-1], "lang"]] for idx, row in u2.iterrows(): - self.labels.append((row[at1[-1]], row['lang'], lab['label type'])) + self.labels.append( + (row[at1[-1]], row["lang"], lab["label type"]) + ) - if depth > 0 and 'linked objects' in self._settings['matching'].keys(): - for v in self._settings['matching']['linked objects']: - at1 = v['identifier'].split('.') + if depth > 0 and "linked objects" in self._settings["matching"].keys(): + for v in self._settings["matching"]["linked objects"]: + at1 = v["identifier"].split(".") if at1[0] in self._attributes.keys(): if at1[-1] in self._attributes[at1[0]].columns: u2 = self._attributes[at1[0]][at1[-1]].tolist() - self.related_objcts.append((v['kind'], u2, v['type'])) + self.related_objcts.append((v["kind"], u2, v["type"])) self.objct = self.objct(**c_dict) - def __init__(self, uri, kind, app_label_entities="apis_entities", app_label_relations="apis_relations", - app_label_vocabularies="apis_vocabularies", rdf_settings=APIS_RDF_YAML_SETTINGS, - uri_settings=APIS_RDF_URI_SETTINGS, preserve_uri_minutes=5, use_preferred=False, uri_check=True, print_info=False, **kwargs): + def __init__( + self, + uri, + kind, + app_label_entities="apis_entities", + app_label_relations="apis_relations", + app_label_vocabularies="apis_vocabularies", + rdf_settings=APIS_RDF_YAML_SETTINGS, + uri_settings=APIS_RDF_URI_SETTINGS, + preserve_uri_minutes=5, + use_preferred=False, + uri_check=True, + print_info=False, + **kwargs, + ): """ :param uri: (url) Uri to parse the object from (http://test.at). The uri must start with a base url mentioned in the RDF parser settings file. :param kind: (string) Kind of entity (Person, Place, Institution, Work, Event) @@ -453,7 +550,9 @@ def __init__(self, uri, kind, app_label_entities="apis_entities", app_label_rela self._preserve_uri_minutes = preserve_uri_minutes self._uri_check = uri_check self._use_preferred = use_preferred - self.objct = ContentType.objects.get(app_label=app_label_entities, model__iexact=kind).model_class() + self.objct = ContentType.objects.get( + app_label=app_label_entities, model__iexact=kind + ).model_class() self._app_label_relations = app_label_relations self.kind = kind self._foreign_keys = [] @@ -462,7 +561,7 @@ def __init__(self, uri, kind, app_label_entities="apis_entities", app_label_rela self._objct_uri = Uri(uri=self.uri) self._subject = URIRef(self.uri) self.related_objcts = [] - force = kwargs.get('force', None) + force = kwargs.get("force", None) self.labels = [] self.print_info = print_info self.related_objcts = [] @@ -473,8 +572,7 @@ def __init__(self, uri, kind, app_label_entities="apis_entities", app_label_rela self.objct = test[1] self.created = False if print_info: - print('not created') + print("not created") else: self.created = True o = self._parse() - diff --git a/apis_core/helper_functions/dl_models.py b/apis_core/helper_functions/dl_models.py index 8388341..6e5c213 100644 --- a/apis_core/helper_functions/dl_models.py +++ b/apis_core/helper_functions/dl_models.py @@ -19,7 +19,12 @@ def extract_verbs_from_entity( - ent, lst_orth, lst_orth_dict, accept_pos=['VERB', 'AUX', 'NOUN', 'ADP', 'PART'], add=True): + ent, + lst_orth, + lst_orth_dict, + accept_pos=["VERB", "AUX", "NOUN", "ADP", "PART"], + add=True, +): res = [] for y in ent: head = y @@ -48,28 +53,37 @@ def extract_verbs_from_entity( def test_model(model, sent): K.clear_session() - script_dir = os.path.dirname(os.path.realpath('__file__')) - fileh = open(os.path.join(script_dir, - 'data/nlp_models/{}_vocab.obj'.format(model)), 'rb') - lst_orth, lst_orth_dict, lst_labels, lst_labels_dict, lst_zero_label, lst_labels_dhae2 = pickle.load(fileh) - model = load_model(os.path.join(script_dir, - 'data/nlp_models/{}.h5'.format(model))) + script_dir = os.path.dirname(os.path.realpath("__file__")) + fileh = open( + os.path.join(script_dir, "data/nlp_models/{}_vocab.obj".format(model)), "rb" + ) + ( + lst_orth, + lst_orth_dict, + lst_labels, + lst_labels_dict, + lst_zero_label, + lst_labels_dhae2, + ) = pickle.load(fileh) + model = load_model(os.path.join(script_dir, "data/nlp_models/{}.h5".format(model))) result = [] txt = nlp(sent) tokens_lst = [] for ent in txt.ents: print(ent) - tokens, lemmas, pos_tags, shapes = extract_verbs_from_entity(ent, lst_orth, lst_orth_dict, add=False) + tokens, lemmas, pos_tags, shapes = extract_verbs_from_entity( + ent, lst_orth, lst_orth_dict, add=False + ) if len(tokens) > 0: tokens_lst.append(tokens) x_matrix2 = np.array(tokens_lst) print(x_matrix2) tokenizer = Tokenizer(num_words=len(lst_orth)) - x_matrix3 = tokenizer.sequences_to_matrix(tokens_lst, mode='binary') + x_matrix3 = tokenizer.sequences_to_matrix(tokens_lst, mode="binary") zz = model.predict(x_matrix3, batch_size=32, verbose=1) for idx1, z in enumerate(zz): for idx, x in enumerate(zz[idx1]): - v_id = '-' + v_id = "-" for k in lst_labels_dict.keys(): if lst_labels_dict[k] == idx: v_id = VocabsBaseClass.objects.get(id=k).name diff --git a/apis_core/helper_functions/inter_annotator_agreement.py b/apis_core/helper_functions/inter_annotator_agreement.py index 13d1560..5b53c11 100644 --- a/apis_core/helper_functions/inter_annotator_agreement.py +++ b/apis_core/helper_functions/inter_annotator_agreement.py @@ -6,7 +6,7 @@ from apis_core.apis_metainfo.models import Text, TempEntityClass from apis_highlighter.models import Annotation -if 'annotator agreement' in getattr(settings, "APIS_COMPONENTS", []): +if "annotator agreement" in getattr(settings, "APIS_COMPONENTS", []): from nltk.metrics import AnnotationTask import pandas as pd from sklearn.metrics import precision_recall_fscore_support @@ -15,19 +15,21 @@ class InternalDataAgreement(object): @staticmethod - def internal_data_agreement_calc(texts, ann1, ann2, anno_proj=None, format_string='start_end_text'): + def internal_data_agreement_calc( + texts, ann1, ann2, anno_proj=None, format_string="start_end_text" + ): if type(texts) == QuerySet: - q = {'text__in': texts} + q = {"text__in": texts} else: - q = {'text': texts} + q = {"text": texts} lst_user_ann = [] if anno_proj: - q['annotation_project_id'] = anno_proj + q["annotation_project_id"] = anno_proj lst_ann_fin = dict() for v in [ann1, ann2]: lst_ann = [] - q['user_added_id'] = v - for an in Annotation.objects.filter(**q).order_by('start'): + q["user_added_id"] = v + for an in Annotation.objects.filter(**q).order_by("start"): lst_ann.append(an.annotation_hash(format_string=format_string)) if an.user_added_id not in lst_user_ann: lst_user_ann.append(an.user_added_id) @@ -49,24 +51,34 @@ def internal_data_agreement_calc(texts, ann1, ann2, anno_proj=None, format_strin else: return AnnotationTask(data=ann_task) - def precision_recall_calc(self, texts, gold_standard, user_group, anno_proj=None, format_string='start_end_text'): + def precision_recall_calc( + self, + texts, + gold_standard, + user_group, + anno_proj=None, + format_string="start_end_text", + ): if type(texts) == QuerySet: - q = {'text__in': texts} + q = {"text__in": texts} else: - q = {'text': texts} + q = {"text": texts} if anno_proj: - q['annotation_project_id'] = anno_proj + q["annotation_project_id"] = anno_proj lst_ann_fin = dict() if not format_string: - format_string = 'start_end_text' + format_string = "start_end_text" user_list = [gold_standard] - user_list.extend(User.objects.filter(groups__pk=user_group).exclude(pk=gold_standard) - .values_list('pk', flat=True)) + user_list.extend( + User.objects.filter(groups__pk=user_group) + .exclude(pk=gold_standard) + .values_list("pk", flat=True) + ) df = pd.DataFrame() for v in user_list: lst_ann = [] - q['user_added_id'] = v - for an in Annotation.objects.filter(**q).order_by('start'): + q["user_added_id"] = v + for an in Annotation.objects.filter(**q).order_by("start"): lst_ann.append(an.annotation_hash(format_string=format_string)) lst_ann_fin[v] = lst_ann gold_username = User.objects.get(pk=gold_standard).username @@ -87,14 +99,15 @@ def precision_recall_calc(self, texts, gold_standard, user_group, anno_proj=None if ann not in lst_ann_fin[u]: gold_list.append(1) ann_list.append(0) - prec_res = precision_recall_fscore_support(np.array(gold_list), np.array(ann_list), average='binary', - pos_label=1) - for idx, k in enumerate(['precission', 'recall', 'fbeta_score', 'support']): + prec_res = precision_recall_fscore_support( + np.array(gold_list), np.array(ann_list), average="binary", pos_label=1 + ) + for idx, k in enumerate(["precission", "recall", "fbeta_score", "support"]): df.loc[ann_username, k] = prec_res[idx] return df def get_html_table(self): - css_class = 'table table-bordered table-hover' + css_class = "table table-bordered table-hover" self.html_tables = dict() self.html_tables_gold = None if isinstance(self.texts, dict): @@ -103,20 +116,36 @@ def get_html_table(self): if self.texts_gold is not None: self.html_tables_gold = dict() for txt_id in self.texts_gold.keys(): - self.html_tables_gold[txt_id] = self.texts_gold[txt_id].to_html(classes=css_class) + self.html_tables_gold[txt_id] = self.texts_gold[txt_id].to_html( + classes=css_class + ) elif isinstance(self.texts, pd.DataFrame): self.html_tables = self.texts.to_html(classes=css_class) if self.texts_gold is not None: self.html_tables_gold = self.texts_gold.to_html(classes=css_class) return self.html_tables, self.html_tables_gold - def __init__(self, texts, anno_proj, user_group, metrics='Do_alpha', - format_string='start_end_text', combine=False, gold_standard=False): + def __init__( + self, + texts, + anno_proj, + user_group, + metrics="Do_alpha", + format_string="start_end_text", + combine=False, + gold_standard=False, + ): if not type(texts) == QuerySet: m_name = ContentType.objects.get_for_model(texts).name - if m_name == 'person' or m_name == 'place' or m_name == 'institution' or m_name == 'event' or m_name == 'work': + if ( + m_name == "person" + or m_name == "place" + or m_name == "institution" + or m_name == "event" + or m_name == "work" + ): texts = Text.objects.filter(tempentityclass=texts).distinct() - elif m_name == 'collection': + elif m_name == "collection": t = TempEntityClass.objects.filter(collection=texts) texts = Text.objects.filter(tempentityclass__in=t).distinct() self.texts_gold = None @@ -132,7 +161,7 @@ def __init__(self, texts, anno_proj, user_group, metrics='Do_alpha', if not user_group: user_qs = dict() else: - user_qs = {'groups__pk': user_group} + user_qs = {"groups__pk": user_group} for txt in texts: df = pd.DataFrame() test = False @@ -148,7 +177,10 @@ def __init__(self, texts, anno_proj, user_group, metrics='Do_alpha', ann1.pk, ann2.pk, anno_proj=anno_proj, - format_string=format_string),metrics)() + format_string=format_string, + ), + metrics, + )() if pd.notnull(t): test = True except AttributeError as ex: @@ -166,7 +198,9 @@ def __init__(self, texts, anno_proj, user_group, metrics='Do_alpha', if gold_standard: if combine: self.texts_gold = self.precision_recall_calc( - txt, gold_standard, user_group, anno_proj=anno_proj) + txt, gold_standard, user_group, anno_proj=anno_proj + ) else: self.texts_gold[txt.pk] = self.precision_recall_calc( - txt, gold_standard, user_group, anno_proj=anno_proj) + txt, gold_standard, user_group, anno_proj=anno_proj + ) diff --git a/apis_core/helper_functions/pylobid.py b/apis_core/helper_functions/pylobid.py index 0f98636..07c6823 100644 --- a/apis_core/helper_functions/pylobid.py +++ b/apis_core/helper_functions/pylobid.py @@ -13,9 +13,11 @@ def create_qs(row, cell, q_field="dateOfBirth", char_limit=0): return qs -def lobid_qs(row, q_field='name', add_fields=[], base_url="https://lobid.org/gnd/search?q="): - """ creates a lobid query string from the passed in fields""" - search_url = base_url+row[q_field]+"&filter=type:Person" +def lobid_qs( + row, q_field="name", add_fields=[], base_url="https://lobid.org/gnd/search?q=" +): + """creates a lobid query string from the passed in fields""" + search_url = base_url + row[q_field] + "&filter=type:Person" if add_fields: filters = [] for x in add_fields: @@ -25,37 +27,31 @@ def lobid_qs(row, q_field='name', add_fields=[], base_url="https://lobid.org/gnd return search_url -def search_lobid(row, qs_field='query'): - """ sends the value of the passed in field to lobid and returns the results in a dict """ +def search_lobid(row, qs_field="query"): + """sends the value of the passed in field to lobid and returns the results in a dict""" query = row[qs_field] - result = { - 'query': query, - 'status': 0, - 'error': "", - 'hits': 0, - 'gnd': [] - } + result = {"query": query, "status": 0, "error": "", "hits": 0, "gnd": []} r = requests.get(query) try: r = requests.get(query) except requests.ConnectionError: - result['error'] = "Connection Error" + result["error"] = "Connection Error" return result if r: if r.status_code == 200: - result['status'] = r.status_code - result['hits'] = r.json()['totalItems'] - if result['hits'] == 0: + result["status"] = r.status_code + result["hits"] = r.json()["totalItems"] + if result["hits"] == 0: gnd = [] - print('zero hits') - elif result['hits'] == 1: + print("zero hits") + elif result["hits"] == 1: print("one hit") - result['gnd'] = [r.json()['member'][0]['gndIdentifier']] + result["gnd"] = [r.json()["member"][0]["gndIdentifier"]] else: - print("{} hits".format(result['hits'])) - result['gnd'] = [x['gndIdentifier'] for x in r.json()['member']] + print("{} hits".format(result["hits"])) + result["gnd"] = [x["gndIdentifier"] for x in r.json()["member"]] else: - result['status'] = r.status_code + result["status"] = r.status_code return result diff --git a/apis_core/helper_functions/stanbolQueries.py b/apis_core/helper_functions/stanbolQueries.py index f03d45e..d77f2f5 100644 --- a/apis_core/helper_functions/stanbolQueries.py +++ b/apis_core/helper_functions/stanbolQueries.py @@ -2,7 +2,10 @@ import requests -from apis_core.default_settings.NER_settings import StbGeoQuerySettings, autocomp_settings +from apis_core.default_settings.NER_settings import ( + StbGeoQuerySettings, + autocomp_settings, +) def decide_score_stanbol(results, dec_diff): @@ -10,7 +13,10 @@ def decide_score_stanbol(results, dec_diff): return results if len(results) == 1: return results[0] - res2 = [(r['http://stanbol.apache.org/ontology/entityhub/query#score'][0]['value'], r) for r in results] + res2 = [ + (r["http://stanbol.apache.org/ontology/entityhub/query#score"][0]["value"], r) + for r in results + ] res2.sort(key=lambda tup: tup[0], reverse=True) if res2[0][0] > res2[1][0] + dec_diff: return res2[0][1] @@ -19,7 +25,7 @@ def decide_score_stanbol(results, dec_diff): def find_geonames2(ca, name, adm=None, **kwargs): - headers = {'Content-Type': 'application/json'} + headers = {"Content-Type": "application/json"} ca_feature = ca.stored_feature if not ca_feature: return False @@ -28,17 +34,17 @@ def find_geonames2(ca, name, adm=None, **kwargs): else: ca_data = ca.get_data(name) ca.get_next_feature() - r = requests.post(ca_feature['URL'], data=json.dumps(ca_data), headers=headers) + r = requests.post(ca_feature["URL"], data=json.dumps(ca_data), headers=headers) if r.status_code == 200: res = r.json() - if len(res['results']) == 1: - return True, res['results'][0] - elif len(res['results']) > 0: - dec = decide_score_stanbol(res['results'], kwargs['dec_diff']) + if len(res["results"]) == 1: + return True, res["results"][0] + elif len(res["results"]) > 0: + dec = decide_score_stanbol(res["results"], kwargs["dec_diff"]) if dec: return True, dec else: - return False, res['results'] + return False, res["results"] else: return False, False else: @@ -50,26 +56,22 @@ def find_loc(lst, geonames_chains=False, dec_diff=5): t = False if not geonames_chains: geonames_chains = [] - for c in autocomp_settings['Place']: - geonames_chains.append(c['url']) + for c in autocomp_settings["Place"]: + geonames_chains.append(c["url"]) if len(lst) == 1: - pl_selected_fields = StbGeoQuerySettings('place').selected - headers = {'Content-Type': 'application/json'} + pl_selected_fields = StbGeoQuerySettings("place").selected + headers = {"Content-Type": "application/json"} results = [] for s in geonames_chains: ldpath = "" for d in pl_selected_fields: - ldpath += "{} = <{}>;\n".format(d.split('#')[-1], d) - data = { - 'limit': 20, - 'name': lst[0], - 'ldpath': ldpath - } + ldpath += "{} = <{}>;\n".format(d.split("#")[-1], d) + data = {"limit": 20, "name": lst[0], "ldpath": ldpath} r = requests.get(s, params=data, headers=headers) if r.status_code == 200: res = r.json() - if len(res['results']) > 0: - results.extend(res['results']) + if len(res["results"]) > 0: + results.extend(res["results"]) if len(results) > 1: test = decide_score_stanbol(results, dec_diff=dec_diff) if test: @@ -82,9 +84,9 @@ def find_loc(lst, geonames_chains=False, dec_diff=5): return False, False elif len(lst) > 1: for ind, c in enumerate(lst): - if ind < len(lst)-1: + if ind < len(lst) - 1: if not t: - t = StbGeoQuerySettings('admin') + t = StbGeoQuerySettings("admin") if prev_elem: countr = find_geonames2(t, c, prev_elem, dec_diff=dec_diff) else: @@ -93,20 +95,31 @@ def find_loc(lst, geonames_chains=False, dec_diff=5): while check: if countr: if countr[0]: - if countr[1]['http://www.geonames.org/ontology#featureCode'][0]['value'] == 'http://www.geonames.org/ontology#A.PCLI': + if ( + countr[1][ + "http://www.geonames.org/ontology#featureCode" + ][0]["value"] + == "http://www.geonames.org/ontology#A.PCLI" + ): prev_elem = ( - countr[1]['id'], - 'http://www.geonames.org/ontology#parentCountry' + countr[1]["id"], + "http://www.geonames.org/ontology#parentCountry", ) else: - prev_elem = (countr[1]['id'], 'http://www.geonames.org/ontology#parent'+countr[1]['http://www.geonames.org/ontology#featureCode'][0]['value'].split('.')[-1]) + prev_elem = ( + countr[1]["id"], + "http://www.geonames.org/ontology#parent" + + countr[1][ + "http://www.geonames.org/ontology#featureCode" + ][0]["value"].split(".")[-1], + ) check = False if not countr[0]: check = False else: check = False else: - o = StbGeoQuerySettings('place') + o = StbGeoQuerySettings("place") if prev_elem: place = find_geonames2(o, c, prev_elem, dec_diff=dec_diff) else: @@ -123,10 +136,11 @@ def find_loc(lst, geonames_chains=False, dec_diff=5): def retrieve_obj(uri): - headers = {'Content-Type': 'application/json'} + headers = {"Content-Type": "application/json"} r = requests.get( - 'http://enrich.acdh.oeaw.ac.at/entityhub/site/geoNames_S_P_A/entity', - params={'id': uri}, headers=headers + "http://enrich.acdh.oeaw.ac.at/entityhub/site/geoNames_S_P_A/entity", + params={"id": uri}, + headers=headers, ) if r.status_code == 200: return r.json() @@ -134,22 +148,32 @@ def retrieve_obj(uri): return False -def query_geonames_chains(q, chains=['http://enrich.acdh.oeaw.ac.at/entityhub/site/geoNames_S_P_A/find'], - rest_feature=['A', 'P'], dec_diff=5): +def query_geonames_chains( + q, + chains=["http://enrich.acdh.oeaw.ac.at/entityhub/site/geoNames_S_P_A/find"], + rest_feature=["A", "P"], + dec_diff=5, +): results = [] ids = [] - headers = {'Content-Type': 'application/json'} + headers = {"Content-Type": "application/json"} for chain in chains: - data = {'limit': 100, 'name': q, - 'ldpath': """name = ; + data = { + "limit": 100, + "name": q, + "ldpath": """name = ; \nfeatureClass = ;\n - featureCode = ;\n"""} + featureCode = ;\n""", + } r = requests.get(chain, params=data, headers=headers) res = r.json() - for t in res['results']: - if t['id'] not in ids and t['featureClass'][0]['value'].split('#')[1] in rest_feature: + for t in res["results"]: + if ( + t["id"] not in ids + and t["featureClass"][0]["value"].split("#")[1] in rest_feature + ): results.append(t) - ids.append(t['id']) + ids.append(t["id"]) if len(results) > 0: dec_st = decide_score_stanbol(results, dec_diff) if dec_st: diff --git a/apis_core/helper_functions/utils.py b/apis_core/helper_functions/utils.py index 7467367..bb132fe 100644 --- a/apis_core/helper_functions/utils.py +++ b/apis_core/helper_functions/utils.py @@ -22,25 +22,26 @@ def access_for_all(self, viewtype="list"): def access_for_all_function(user): if user.is_anonymous: - print(getattr(settings, 'APIS_DETAIL_VIEWS_ALLOWED', False)) - return getattr(settings, 'APIS_DETAIL_VIEWS_ALLOWED', False) + print(getattr(settings, "APIS_DETAIL_VIEWS_ALLOWED", False)) + return getattr(settings, "APIS_DETAIL_VIEWS_ALLOWED", False) else: return True ENTITIES_DEFAULT_COLS = [ - 'start_date', - 'start_date_written', - 'end_date', - 'end_date_written', - 'text', - 'collection', - 'status', - 'source', - 'references', - 'notes', + "start_date", + "start_date_written", + "end_date", + "end_date_written", + "text", + "collection", + "status", + "source", + "references", + "notes", ] + def get_child_classes(objids, obclass, labels=False): """used to retrieve a list of primary keys of sub classes""" if labels: diff --git a/apis_core/openrefine/apps.py b/apis_core/openrefine/apps.py index fcb9887..5eb19fa 100644 --- a/apis_core/openrefine/apps.py +++ b/apis_core/openrefine/apps.py @@ -2,4 +2,4 @@ class OpenrefineConfig(AppConfig): - name = 'apis_core.openrefine' + name = "apis_core.openrefine" diff --git a/apis_core/openrefine/utils.py b/apis_core/openrefine/utils.py index e8da1b8..80eb298 100644 --- a/apis_core/openrefine/utils.py +++ b/apis_core/openrefine/utils.py @@ -37,15 +37,20 @@ def get_service_mainfest(request, base_uri=APIS_BASE_URI, project_name=PROJECT_N "height": 400, }, "batchSize": 50, - "suggest": {"type": {"service_url": f"{openrefine_uri}suggest", "service_path": "/type"}}, + "suggest": { + "type": {"service_url": f"{openrefine_uri}suggest", "service_path": "/type"} + }, "extend": { - "propose_properties": {"service_url": f"{openrefine_uri}properties", "service_path": ""}, + "propose_properties": { + "service_url": f"{openrefine_uri}properties", + "service_path": "", + }, "property_settings": [ { "name": "entid", "label": "entity id", "type": "text", - "help_text": "entity id" + "help_text": "entity id", } ], }, diff --git a/apis_core/openrefine/views.py b/apis_core/openrefine/views.py index 1d381a2..d1421c8 100644 --- a/apis_core/openrefine/views.py +++ b/apis_core/openrefine/views.py @@ -4,7 +4,14 @@ from django.views.decorators.csrf import csrf_exempt -from apis_core.apis_entities.models import Person, Place, Institution, Work, Event, TempEntityClass +from apis_core.apis_entities.models import ( + Person, + Place, + Institution, + Work, + Event, + TempEntityClass, +) from .utils import get_service_mainfest, get_properties @@ -15,7 +22,7 @@ def reconcile(request): "place": Place, "work": Work, "institution": Institution, - "event": Event + "event": Event, } if request.method == "POST": response = {} @@ -30,7 +37,7 @@ def reconcile(request): query_type = value["type"] except: query_type = "/person" - model_name = query_type.split('/')[-1] + model_name = query_type.split("/")[-1] cur_model = model_dict[model_name] items = cur_model.objects.filter(name=query_string) properties = value.get("properties") @@ -48,7 +55,10 @@ def reconcile(request): if match_count > 1: score = 1 / match_count match = False - matches = [{"id": x.id, "name": f"{x}", "score": score, "match": match} for x in items] + matches = [ + {"id": x.id, "name": f"{x}", "score": score, "match": match} + for x in items + ] item = {"result": matches} response[key] = item elif "extend" in data.keys(): @@ -82,7 +92,7 @@ def suggest_types(request): print(suggestions) filtered_results = [] for x in suggestions: - if x['name'].startswith(prefix): + if x["name"].startswith(prefix): filtered_results.append(x) data["result"] = filtered_results print(data) diff --git a/apis_core/testrunners.py b/apis_core/testrunners.py index fc3c004..3163476 100644 --- a/apis_core/testrunners.py +++ b/apis_core/testrunners.py @@ -145,4 +145,4 @@ def setup_databases(self, **kwargs): else: dict_ents[ent.__name__].append(c_1_obj) print(f"created {c_1_obj}") - return old_names \ No newline at end of file + return old_names diff --git a/archemd/apps.py b/archemd/apps.py index 07446d3..db1f216 100644 --- a/archemd/apps.py +++ b/archemd/apps.py @@ -2,4 +2,4 @@ class ArchemdConfig(AppConfig): - name = 'archemd' + name = "archemd" diff --git a/archemd/arche_md_utils.py b/archemd/arche_md_utils.py index 11244a3..659133c 100644 --- a/archemd/arche_md_utils.py +++ b/archemd/arche_md_utils.py @@ -21,7 +21,13 @@ def return_graph(self): ), ) ) - g.add((subj, self.ARCHE["hasUrl"], Literal(self.detail_view_url, datatype=XSD.anyURI))) + g.add( + ( + subj, + self.ARCHE["hasUrl"], + Literal(self.detail_view_url, datatype=XSD.anyURI), + ) + ) else: g.add( ( diff --git a/archemd/urls.py b/archemd/urls.py index 5dc55ae..732495e 100644 --- a/archemd/urls.py +++ b/archemd/urls.py @@ -3,5 +3,5 @@ from .views import entity_as_arche urlpatterns = [ - path('', entity_as_arche), + path("", entity_as_arche), ] diff --git a/archemd/views.py b/archemd/views.py index 5035042..0b8f8b1 100644 --- a/archemd/views.py +++ b/archemd/views.py @@ -38,6 +38,4 @@ def entity_as_arche(request, pk): res = ArcheMd(res.id) except ObjectDoesNotExist: return HttpResponseNotFound() - return HttpResponse( - res.return_graph().serialize(), content_type="text/turtle" - ) + return HttpResponse(res.return_graph().serialize(), content_type="text/turtle") diff --git a/dumper/apps.py b/dumper/apps.py index 92f507e..9f7bbd5 100644 --- a/dumper/apps.py +++ b/dumper/apps.py @@ -2,4 +2,4 @@ class DumperConfig(AppConfig): - name = 'dumper' + name = "dumper" diff --git a/dumper/management/commands/dump_entities.py b/dumper/management/commands/dump_entities.py index 4268043..38e3338 100644 --- a/dumper/management/commands/dump_entities.py +++ b/dumper/management/commands/dump_entities.py @@ -6,85 +6,72 @@ from django.core.management.base import BaseCommand from tqdm import tqdm -from apis_core.apis_entities.models import ( - Person, - Place, - Institution, - Work -) +from apis_core.apis_entities.models import Person, Place, Institution, Work from apis_core.apis_tei.tei_utils import get_node_from_template, tei_header from dumper.utils import upload_files_to_owncloud, write_report ENTITY_MAP = { - "person": { - "model": Person, - "template": "person" - }, - "place": { - "model": Place, - "template": "place" - }, - "bibl": { - "model": Work, - "template": "work" - }, - "org": { - "model": Institution, - "template": "org" - } + "person": {"model": Person, "template": "person"}, + "place": {"model": Place, "template": "place"}, + "bibl": {"model": Work, "template": "work"}, + "org": {"model": Institution, "template": "org"}, } class Command(BaseCommand): - help = 'Command to serialize APIS Entities to XML/TEI Entities' + help = "Command to serialize APIS Entities to XML/TEI Entities" def add_arguments(self, parser): parser.add_argument( - '-l', - '--limit', - action='store_true', - help='number of entities should be limited', + "-l", + "--limit", + action="store_true", + help="number of entities should be limited", ) parser.add_argument( - '-f', - '--full', - action='store_true', - help='should related entities e.g. birth-places be fully serialized', + "-f", + "--full", + action="store_true", + help="should related entities e.g. birth-places be fully serialized", ) parser.add_argument( - '--collection', - help='which collection?', + "--collection", + help="which collection?", ) def handle(self, *args, **kwargs): for key, value in ENTITY_MAP.items(): start_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) - save_path = os.path.join(settings.MEDIA_ROOT, f'list{key}.xml') + save_path = os.path.join(settings.MEDIA_ROOT, f"list{key}.xml") tei_doc = tei_header( title=f"List{key.capitalize()}", ent_type=f"", ) - item_list = tei_doc.xpath(f"//*[local-name() = 'list{key.capitalize()}']")[0] + item_list = tei_doc.xpath(f"//*[local-name() = 'list{key.capitalize()}']")[ + 0 + ] - if kwargs['full']: + if kwargs["full"]: print("full is set") full = True else: print("simple") full = False - if kwargs['collection']: + if kwargs["collection"]: try: - col_id = int(kwargs['collection']) + col_id = int(kwargs["collection"]) except ValueError: - print(f"collection needs to be an integer and not: {kwargs['collection']}") + print( + f"collection needs to be an integer and not: {kwargs['collection']}" + ) return False - items = value['model'].objects.filter(collection=col_id) + items = value["model"].objects.filter(collection=col_id) else: - items = value['model'].objects.all() - if kwargs['limit']: + items = value["model"].objects.all() + if kwargs["limit"]: items = items[:20] print(f"serialize {items.count()} {key.capitalize()}s") for res in tqdm(items, total=len(items)): @@ -93,21 +80,19 @@ def handle(self, *args, **kwargs): ) item_list.append(item_node) - with open(save_path, 'w') as f: - mystr = ET.tostring(tei_doc).decode('utf-8') + with open(save_path, "w") as f: + mystr = ET.tostring(tei_doc).decode("utf-8") data = "".join([s for s in mystr.splitlines(True) if s.strip()]) print(data, file=f) - print(f"done serializing {items.count()} {key.capitalize()}s to {save_path}") + print( + f"done serializing {items.count()} {key.capitalize()}s to {save_path}" + ) files = list() files.append(save_path) - if not kwargs['limit']: + if not kwargs["limit"]: upload_files_to_owncloud(files) end_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) - report = [ - f"{os.path.basename(__file__)}: {key}", - start_time, - end_time - ] + report = [f"{os.path.basename(__file__)}: {key}", start_time, end_time] write_report(report) print("finally done") diff --git a/dumper/management/commands/dump_professions.py b/dumper/management/commands/dump_professions.py index b3006cd..7e94781 100644 --- a/dumper/management/commands/dump_professions.py +++ b/dumper/management/commands/dump_professions.py @@ -7,11 +7,11 @@ from apis_core.apis_vocabularies.models import ProfessionType from dumper.utils import write_report -SAVE_PATH = os.path.join(settings.MEDIA_ROOT, 'professions.csv') +SAVE_PATH = os.path.join(settings.MEDIA_ROOT, "professions.csv") class Command(BaseCommand): - help = 'Dump Profession Types as csv' + help = "Dump Profession Types as csv" def handle(self, *args, **kwargs): start_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) @@ -22,18 +22,14 @@ def handle(self, *args, **kwargs): "id": f"{x.id}", "name": x.name, "parent_id": None, - "parent_name": None + "parent_name": None, } if x.parent_class: - item['parent_id'] = f"{x.parent_class.id}" - item['parent_name'] = x.parent_class.name + item["parent_id"] = f"{x.parent_class.id}" + item["parent_name"] = x.parent_class.name data.append(item) df = pd.DataFrame(data) df.to_csv(SAVE_PATH, index=False) end_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) - report = [ - os.path.basename(__file__), - start_time, - end_time - ] + report = [os.path.basename(__file__), start_time, end_time] write_report(report) diff --git a/dumper/management/commands/fix_domains.py b/dumper/management/commands/fix_domains.py index 82bd9df..28cb00a 100644 --- a/dumper/management/commands/fix_domains.py +++ b/dumper/management/commands/fix_domains.py @@ -9,7 +9,7 @@ class Command(BaseCommand): - help = 'Command to harmonize URL-Domains' + help = "Command to harmonize URL-Domains" def handle(self, *args, **kwargs): start_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) @@ -29,9 +29,5 @@ def handle(self, *args, **kwargs): wrong_domain = Uri.objects.exclude(domain__in=domains) print(f"now I found {wrong_domain.count()} with wrong or without domains") end_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) - report = [ - os.path.basename(__file__), - start_time, - end_time - ] + report = [os.path.basename(__file__), start_time, end_time] write_report(report) diff --git a/dumper/management/commands/fix_wikidata.py b/dumper/management/commands/fix_wikidata.py index 30773eb..01a19b9 100644 --- a/dumper/management/commands/fix_wikidata.py +++ b/dumper/management/commands/fix_wikidata.py @@ -10,12 +10,12 @@ class Command(BaseCommand): - help = 'http for wikidata uris' + help = "http for wikidata uris" def handle(self, *args, **kwargs): start_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) print("start fixing http for wikidata") - to_fix = Uri.objects.filter(uri__startswith='https://www.wikidata') + to_fix = Uri.objects.filter(uri__startswith="https://www.wikidata") print(f"found {to_fix.count()} Uris with https") print("start fixing uris") failed = [] @@ -31,9 +31,5 @@ def handle(self, *args, **kwargs): print(x) print(f"found {len(failed)} potential http/https duplicates") end_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) - report = [ - os.path.basename(__file__), - start_time, - end_time - ] + report = [os.path.basename(__file__), start_time, end_time] write_report(report) diff --git a/dumper/management/commands/remove_duplicated_labels.py b/dumper/management/commands/remove_duplicated_labels.py index 14200eb..dac47b6 100644 --- a/dumper/management/commands/remove_duplicated_labels.py +++ b/dumper/management/commands/remove_duplicated_labels.py @@ -8,32 +8,35 @@ class Command(BaseCommand): - help = 'Removes duplicated labels' + help = "Removes duplicated labels" def handle(self, *args, **kwargs): start_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) print("start removing duplicated labels") - cols = ['temp_entity_id', 'label', 'label_type__name', 'id', 'start_date', 'end_date'] + cols = [ + "temp_entity_id", + "label", + "label_type__name", + "id", + "start_date", + "end_date", + ] items = Label.objects.values_list(*cols) start_count = Label.objects.all().count() df = pd.DataFrame(items, columns=cols) print(f"{start_count} labels found") - for _, gdf in df.groupby(['temp_entity_id', 'label', 'label_type__name']): + for _, gdf in df.groupby(["temp_entity_id", "label", "label_type__name"]): if len(gdf) > 1: for _, row in gdf.iloc[1:].iterrows(): - if row['start_date'] or row['end_date']: + if row["start_date"] or row["end_date"]: continue else: - lab = Label.objects.get(id=row['id']) + lab = Label.objects.get(id=row["id"]) print(f"deleting {lab}") lab.delete() end_count = Label.objects.all().count() print(f"{end_count} labels left") print(f"{start_count - end_count} labels deleted") end_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) - report = [ - os.path.basename(__file__), - start_time, - end_time - ] + report = [os.path.basename(__file__), start_time, end_time] write_report(report) diff --git a/dumper/management/commands/wikidata_minter.py b/dumper/management/commands/wikidata_minter.py index 34f63ed..182c59f 100644 --- a/dumper/management/commands/wikidata_minter.py +++ b/dumper/management/commands/wikidata_minter.py @@ -13,22 +13,25 @@ class Command(BaseCommand): - help = 'mint WikiData IDs for GND-URIs' + help = "mint WikiData IDs for GND-URIs" def handle(self, *args, **kwargs): start_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) LIMIT = 100 USER_AGENT_PMB = "pmb (https://pmb.acdh.oeaw.ac.at)" - col, _ = Collection.objects.get_or_create( - name="No WikiData-ID found" - ) + col, _ = Collection.objects.get_or_create(name="No WikiData-ID found") - ents = TempEntityClass.objects.filter(uri__uri__icontains="d-nb.info").\ - exclude(uri__uri__icontains="wikidata").exclude(collection=col) - uris_to_process = Uri.objects.filter(entity__in=ents).filter(uri__icontains="d-nb.info") + ents = ( + TempEntityClass.objects.filter(uri__uri__icontains="d-nb.info") + .exclude(uri__uri__icontains="wikidata") + .exclude(collection=col) + ) + uris_to_process = Uri.objects.filter(entity__in=ents).filter( + uri__icontains="d-nb.info" + ) print(f"All in all {uris_to_process.count()} GND-Entities without Wikidata") - for x in tqdm(uris_to_process.order_by('id')[:LIMIT], total=LIMIT): + for x in tqdm(uris_to_process.order_by("id")[:LIMIT], total=LIMIT): time.sleep(1) ent = x.entity try: @@ -37,19 +40,19 @@ def handle(self, *args, **kwargs): print(x, ent.id, e) ent.collection.add(col) continue - wd_url = get_normalized_uri(results['wikidata']) + wd_url = get_normalized_uri(results["wikidata"]) wd_uri, _ = Uri.objects.get_or_create(uri=wd_url) wd_uri.entity = ent - wd_uri.domain = 'wikidata' + wd_uri.domain = "wikidata" wd_uri.save() - ents = TempEntityClass.objects.filter(uri__uri__icontains="d-nb.info").exclude(uri__uri__icontains="wikidata") - uris_to_process = Uri.objects.filter(entity__in=ents).filter(uri__icontains="d-nb.info") + ents = TempEntityClass.objects.filter(uri__uri__icontains="d-nb.info").exclude( + uri__uri__icontains="wikidata" + ) + uris_to_process = Uri.objects.filter(entity__in=ents).filter( + uri__icontains="d-nb.info" + ) mgs = f"{uris_to_process.count()} left" print(mgs) end_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) - report = [ - os.path.basename(__file__), - start_time, - end_time - ] + report = [os.path.basename(__file__), start_time, end_time] write_report(report) diff --git a/dumper/management/commands/wikipedia_minter.py b/dumper/management/commands/wikipedia_minter.py index 67da2e8..ada3999 100644 --- a/dumper/management/commands/wikipedia_minter.py +++ b/dumper/management/commands/wikipedia_minter.py @@ -12,22 +12,25 @@ class Command(BaseCommand): - help = 'mint WikiData IDs for GND-URIs' + help = "mint WikiData IDs for GND-URIs" def handle(self, *args, **kwargs): start_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) LIMIT = 250 USER_AGENT_PMB = "pmb (https://pmb.acdh.oeaw.ac.at)" - col, _ = Collection.objects.get_or_create( - name="No german Wikipedia-Site found" - ) + col, _ = Collection.objects.get_or_create(name="No german Wikipedia-Site found") - ents = TempEntityClass.objects.filter(uri__domain="wikidata").\ - exclude(uri__uri__icontains="wikipedia").exclude(collection=col) + ents = ( + TempEntityClass.objects.filter(uri__domain="wikidata") + .exclude(uri__uri__icontains="wikipedia") + .exclude(collection=col) + ) uris_to_process = Uri.objects.filter(entity__in=ents).filter(domain="wikidata") - print(f"All in all {uris_to_process.count()} WIKIDATA-Entities without Wikipedia") - for x in tqdm(uris_to_process.order_by('id')[:LIMIT], total=LIMIT): + print( + f"All in all {uris_to_process.count()} WIKIDATA-Entities without Wikipedia" + ) + for x in tqdm(uris_to_process.order_by("id")[:LIMIT], total=LIMIT): time.sleep(1) ent = x.entity try: @@ -37,17 +40,16 @@ def handle(self, *args, **kwargs): continue wd_uri, _ = Uri.objects.get_or_create(uri=wikipedia_uri) wd_uri.entity = ent - wd_uri.domain = 'wikipedia' + wd_uri.domain = "wikipedia" wd_uri.save() - ents = TempEntityClass.objects.filter(uri__domain="wikidata").\ - exclude(uri__uri__icontains="wikipedia").exclude(collection=col) + ents = ( + TempEntityClass.objects.filter(uri__domain="wikidata") + .exclude(uri__uri__icontains="wikipedia") + .exclude(collection=col) + ) uris_to_process = Uri.objects.filter(entity__in=ents).filter(domain="wikidata") mgs = f"{uris_to_process.count()} left" print(mgs) end_time = datetime.now().strftime(settings.PMB_TIME_PATTERN) - report = [ - os.path.basename(__file__), - start_time, - end_time - ] + report = [os.path.basename(__file__), start_time, end_time] write_report(report) diff --git a/dumper/urls.py b/dumper/urls.py index 2ac2dc0..c4acacf 100644 --- a/dumper/urls.py +++ b/dumper/urls.py @@ -6,9 +6,10 @@ app_name = "dumper" urlpatterns = [ - path('', HomePageView.as_view(), name='home'), + path("", HomePageView.as_view(), name="home"), ] if settings.DEBUG: from django.conf.urls.static import static + urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/dumper/views.py b/dumper/views.py index fd3adc4..e1896a3 100644 --- a/dumper/views.py +++ b/dumper/views.py @@ -1,23 +1,18 @@ from django.views.generic.base import TemplateView -from apis_core.apis_entities.models import ( - Person, - Place, - Event, - Work, - Institution -) +from apis_core.apis_entities.models import Person, Place, Event, Work, Institution from apis_core.apis_metainfo.models import Uri + class HomePageView(TemplateView): template_name = "dumper/index.html" - def get_context_data(self,*args, **kwargs): - context = super(HomePageView, self).get_context_data(*args,**kwargs) - context['person_count'] = Person.objects.all().count() - context['place_count'] = Place.objects.all().count() - context['event_count'] = Event.objects.all().count() - context['work_count'] = Work.objects.all().count() - context['institution_count'] = Institution.objects.all().count() - context['uri_count'] = Uri.objects.all().count() + def get_context_data(self, *args, **kwargs): + context = super(HomePageView, self).get_context_data(*args, **kwargs) + context["person_count"] = Person.objects.all().count() + context["place_count"] = Place.objects.all().count() + context["event_count"] = Event.objects.all().count() + context["work_count"] = Work.objects.all().count() + context["institution_count"] = Institution.objects.all().count() + context["uri_count"] = Uri.objects.all().count() return context diff --git a/manage.py b/manage.py index a178e40..82ecd72 100755 --- a/manage.py +++ b/manage.py @@ -6,7 +6,7 @@ def main(): """Run administrative tasks.""" - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pmb.settings') + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pmb.settings") try: from django.core.management import execute_from_command_line except ImportError as exc: @@ -18,5 +18,5 @@ def main(): execute_from_command_line(sys.argv) -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/pmb/asgi.py b/pmb/asgi.py index 3695e1f..8af2821 100644 --- a/pmb/asgi.py +++ b/pmb/asgi.py @@ -11,6 +11,6 @@ from django.core.asgi import get_asgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pmb.settings') +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pmb.settings") application = get_asgi_application() diff --git a/pmb/wsgi.py b/pmb/wsgi.py index 39e97e4..1079c0b 100644 --- a/pmb/wsgi.py +++ b/pmb/wsgi.py @@ -11,6 +11,6 @@ from django.core.wsgi import get_wsgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pmb.settings') +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pmb.settings") application = get_wsgi_application() From 890031ef2763a876e82b63d06a6220073aaa9c96 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 18 Nov 2023 09:52:33 +0100 Subject: [PATCH 21/56] fixed nav bar --- static/css/style.css | 21 ++++----------------- templates/partials/navbar.html | 2 +- 2 files changed, 5 insertions(+), 18 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 97b54ec..f95474d 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -7,6 +7,10 @@ --institution: #c57f7f; --uri: #e7e1bf; } + +main { + padding-top: 5.50em; +} /* COLORS FOR ENTITIES */ .apis-person { @@ -81,20 +85,3 @@ margin-left: .75rem; } - - -.icon-flex, -.icon-wrapper { - display: flex; - justify-content: center; - align-items: center; -} - -.icon-wrapper { - border-radius: 50%; - overflow: hidden; - border: 1px solid red; - font-size: 5rem; - width: 8rem; - height: 8rem; -} diff --git a/templates/partials/navbar.html b/templates/partials/navbar.html index 0eab1c6..ec7faa9 100644 --- a/templates/partials/navbar.html +++ b/templates/partials/navbar.html @@ -1,6 +1,6 @@ {% load static %}
-
- - - - - - - {% for object in object_list %} - - - - - - {% endfor %} - -
Namefounded/closedplaces
{{ object }}{{ object.start_date_written }} - {{ object.end_date_written }}{{ object.isoCode }}
- {% endif %} -

- -{% endblock %} diff --git a/apis_core/apis_entities/templates/apis_entities/institution_list_generic.html b/apis_core/apis_entities/templates/apis_entities/institution_list_generic.html deleted file mode 100644 index a6b469d..0000000 --- a/apis_core/apis_entities/templates/apis_entities/institution_list_generic.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "apis_entities/generic_list.html" %} -{% block Titel %}See all Institutions{% endblock %} -{% block list_title %}All Institutions{% endblock %} -{% block create_button %} - -{% endblock %} \ No newline at end of file diff --git a/apis_core/apis_entities/templates/apis_entities/map_list.html b/apis_core/apis_entities/templates/apis_entities/map_list.html deleted file mode 100644 index ebcedf9..0000000 --- a/apis_core/apis_entities/templates/apis_entities/map_list.html +++ /dev/null @@ -1,103 +0,0 @@ -{% extends "webpage/base.html" %} -{% block scriptHeader %} - -{% endblock %} -{% block content %} -
-

Map

-
-
-
-
-
-
-
-
-{% endblock %} -{% block scripts %} -{{block.super}} - -{% endblock %} diff --git a/apis_core/apis_entities/templates/apis_entities/network.html b/apis_core/apis_entities/templates/apis_entities/network.html deleted file mode 100644 index 8473f09..0000000 --- a/apis_core/apis_entities/templates/apis_entities/network.html +++ /dev/null @@ -1,217 +0,0 @@ -{% extends "webpage/base.html" %} -{% load static %} -{% block scriptHeader %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -{% endblock %} -{% block content %} -
-
-
- -{% endblock %} -{% block scripts %} -{{block.super}} - -{% endblock %} \ No newline at end of file diff --git a/apis_core/apis_entities/templates/apis_entities/network_institution.html b/apis_core/apis_entities/templates/apis_entities/network_institution.html deleted file mode 100644 index e364ece..0000000 --- a/apis_core/apis_entities/templates/apis_entities/network_institution.html +++ /dev/null @@ -1,227 +0,0 @@ -{% extends "webpage/base.html" %} -{% load static %} -{% block scriptHeader %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -{% endblock %} -{% block content %} -
-
-
- -{% endblock %} -{% block scripts %} -{{block.super}} - -{% endblock %} \ No newline at end of file diff --git a/apis_core/apis_entities/templates/apis_entities/person_list.html b/apis_core/apis_entities/templates/apis_entities/person_list.html deleted file mode 100644 index f2dd202..0000000 --- a/apis_core/apis_entities/templates/apis_entities/person_list.html +++ /dev/null @@ -1,33 +0,0 @@ -{% extends "base.html" %} -{% block Titel %} See all Persons {% endblock %} -{% block content %} - -
-
-

All Persons

- -
-
- {% if object_list %} - - - - - - - - {% for object in object_list %} - - - - - - {% endfor %} - -
Namelives/livedplaces
{{ object }}{{ object.start_date_written }} {% if object.end_date_written %} - {{ object.end_date_written }} {% endif %}{{ object.isoCode }}
- {% endif %} -
-
-{% endblock %} diff --git a/apis_core/apis_entities/templates/apis_entities/person_list_generic.html b/apis_core/apis_entities/templates/apis_entities/person_list_generic.html deleted file mode 100644 index d3b0a9a..0000000 --- a/apis_core/apis_entities/templates/apis_entities/person_list_generic.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "apis_entities/generic_list.html" %} -{% block Titel %}See all Persons{% endblock %} -{% block list_title %}All Persons{% endblock %} -{% block create_button %} - -{% endblock %} \ No newline at end of file diff --git a/apis_core/apis_entities/templates/apis_entities/place_list.html b/apis_core/apis_entities/templates/apis_entities/place_list.html deleted file mode 100644 index f6c16a0..0000000 --- a/apis_core/apis_entities/templates/apis_entities/place_list.html +++ /dev/null @@ -1,61 +0,0 @@ -{% extends "webpage/base.html" %} -{% block Titel %} See all Places {% endblock %} -{% block content %} - -
-
-

All Places

- -
-
-
- {% load crispy_forms_tags %} - {% crispy SearchForm SearchForm.helper %} -
- {% if object_list %} -

{{ page_obj.paginator.count }} Hit(s)

- - - - - - - {% for object in object_list %} - - - - - {% endfor %} - -
NameStatus
{{ object }}{{ object.status }}
- {% endif %} - {% if is_paginated %} - - {% endif %} -
-
-{% endblock %} diff --git a/apis_core/apis_entities/templates/apis_entities/place_list_generic.html b/apis_core/apis_entities/templates/apis_entities/place_list_generic.html deleted file mode 100644 index f4d1b8e..0000000 --- a/apis_core/apis_entities/templates/apis_entities/place_list_generic.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "apis_entities/generic_list.html" %} -{% block Titel %}See all Places{% endblock %} -{% block list_title %}All Places{% endblock %} -{% block create_button %} - -{% endblock %} \ No newline at end of file From 549a14c2b6d2f718d9ada623eff8f6d6c92d7661 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 18 Nov 2023 10:08:59 +0100 Subject: [PATCH 23/56] move browsing app into code base --- browsing/__init__.py | 0 browsing/apps.py | 5 + browsing/browsing_utils.py | 233 ++++++++++++++++++ browsing/migrations/0001_initial.py | 51 ++++ browsing/migrations/0002_delete_browsconf.py | 16 ++ browsing/migrations/__init__.py | 0 browsing/models.py | 1 + .../browsing/js/filter-for-blank-fields.js | 15 ++ .../static/browsing/js/set-form-attributes.js | 10 + .../browsing/create_base_template.html | 15 ++ .../templates/browsing/generic_create.html | 14 ++ .../templates/browsing/generic_detail.html | 72 ++++++ browsing/templates/browsing/generic_list.html | 73 ++++++ .../browsing/partials/chart_form.html | 37 +++ .../browsing/partials/column_selector.html | 18 ++ .../browsing/partials/download_menu.html | 11 + .../browsing/partials/pagination.html | 49 ++++ .../templates/browsing/partials/table.html | 59 +++++ .../browsing/tags/class_definition.html | 1 + .../browsing/tags/column_selector.html | 23 ++ browsing/templatetags/__init__.py | 0 browsing/templatetags/browsing_extras.py | 51 ++++ browsing/tests.py | 3 + browsing/urls.py | 8 + browsing/views.py | 40 +++ pmb/urls.py | 1 + 26 files changed, 806 insertions(+) create mode 100644 browsing/__init__.py create mode 100644 browsing/apps.py create mode 100644 browsing/browsing_utils.py create mode 100644 browsing/migrations/0001_initial.py create mode 100644 browsing/migrations/0002_delete_browsconf.py create mode 100644 browsing/migrations/__init__.py create mode 100644 browsing/models.py create mode 100644 browsing/static/browsing/js/filter-for-blank-fields.js create mode 100644 browsing/static/browsing/js/set-form-attributes.js create mode 100644 browsing/templates/browsing/create_base_template.html create mode 100644 browsing/templates/browsing/generic_create.html create mode 100644 browsing/templates/browsing/generic_detail.html create mode 100644 browsing/templates/browsing/generic_list.html create mode 100644 browsing/templates/browsing/partials/chart_form.html create mode 100644 browsing/templates/browsing/partials/column_selector.html create mode 100644 browsing/templates/browsing/partials/download_menu.html create mode 100644 browsing/templates/browsing/partials/pagination.html create mode 100644 browsing/templates/browsing/partials/table.html create mode 100644 browsing/templates/browsing/tags/class_definition.html create mode 100644 browsing/templates/browsing/tags/column_selector.html create mode 100644 browsing/templatetags/__init__.py create mode 100644 browsing/templatetags/browsing_extras.py create mode 100644 browsing/tests.py create mode 100644 browsing/urls.py create mode 100644 browsing/views.py diff --git a/browsing/__init__.py b/browsing/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/browsing/apps.py b/browsing/apps.py new file mode 100644 index 0000000..0d9edc1 --- /dev/null +++ b/browsing/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class BrowsingConfig(AppConfig): + name = "browsing" diff --git a/browsing/browsing_utils.py b/browsing/browsing_utils.py new file mode 100644 index 0000000..f710208 --- /dev/null +++ b/browsing/browsing_utils.py @@ -0,0 +1,233 @@ +import django_tables2 + +from django.conf import settings +from django.utils.safestring import mark_safe +from django.views.generic.detail import DetailView +from django.views.generic.edit import CreateView, UpdateView +from crispy_forms.helper import FormHelper +from crispy_forms.layout import Submit + +from django_tables2.export.views import ExportMixin + + +if "charts" in settings.INSTALLED_APPS: + from charts.models import ChartConfig + from charts.views import create_payload + + +input_form = """ + | + +""" + + +class MergeColumn(django_tables2.Column): + """renders a column with to checkbox - used to select objects for merging""" + + def __init__(self, *args, **kwargs): + super(MergeColumn, self).__init__(*args, **kwargs) + + def render(self, value): + return mark_safe(input_form.format(value, value)) + + +def get_entities_table(model_class): + class GenericEntitiesTable(django_tables2.Table): + id = django_tables2.LinkColumn() + + class Meta: + model = model_class + attrs = {"class": "table table-hover table-striped table-condensed"} + + return GenericEntitiesTable + + +class GenericFilterFormHelper(FormHelper): + def __init__(self, *args, **kwargs): + super(GenericFilterFormHelper, self).__init__(*args, **kwargs) + self.helper = FormHelper() + self.form_class = "genericFilterForm" + self.form_method = "GET" + self.helper.form_tag = False + self.add_input(Submit("Filter", "Search")) + + +class GenericListView(ExportMixin, django_tables2.SingleTableView): + filter_class = None + formhelper_class = None + context_filter_name = "filter" + paginate_by = 50 + template_name = "browsing/generic_list.html" + init_columns = [] + enable_merge = False + excluded_cols = [] + + def get_table_class(self): + if self.table_class: + return self.table_class + else: + return get_entities_table(self.model) + + def get_all_cols(self): + all_cols = { + key: value.header for key, value in self.get_table().base_columns.items() + } + return all_cols + + def get_queryset(self, **kwargs): + qs = super(GenericListView, self).get_queryset() + self.filter = self.filter_class(self.request.GET, queryset=qs) + self.filter.form.helper = self.formhelper_class() + return self.filter.qs.distinct() + + def get_table(self, **kwargs): + table = super(GenericListView, self).get_table() + default_cols = self.init_columns + all_cols = table.base_columns.keys() + selected_cols = self.request.GET.getlist("columns") + default_cols + exclude_vals = [x for x in all_cols if x not in selected_cols] + table.exclude = exclude_vals + return table + + def get_context_data(self, **kwargs): + context = super(GenericListView, self).get_context_data() + context["enable_merge"] = self.enable_merge + togglable_colums = { + key: value + for key, value in self.get_all_cols().items() + if key not in self.init_columns and key not in self.exclude_columns + } + context["togglable_colums"] = togglable_colums + context[self.context_filter_name] = self.filter + context["docstring"] = "{}".format(self.model.__doc__) + if self.model._meta.verbose_name_plural: + context["class_name"] = "{}".format(self.model._meta.verbose_name.title()) + else: + if self.model.__name__.endswith("s"): + context["class_name"] = "{}".format(self.model.__name__) + else: + context["class_name"] = "{}s".format(self.model.__name__) + try: + context["create_view_link"] = self.model.get_createview_url() + except AttributeError: + context["create_view_link"] = None + model_name = self.model.__name__.lower() + context["entity"] = model_name + context["app_name"] = self.model._meta.app_label + if "charts" in settings.INSTALLED_APPS: + model = self.model + app_label = model._meta.app_label + filtered_objs = ChartConfig.objects.filter( + model_name=model.__name__.lower(), app_name=app_label + ) + context["vis_list"] = filtered_objs + context["property_name"] = self.request.GET.get("property") + context["charttype"] = self.request.GET.get("charttype") + if context["charttype"] and context["property_name"]: + qs = self.get_queryset() + chartdata = create_payload( + context["entity"], + context["property_name"], + context["charttype"], + qs, + app_label=app_label, + ) + context = dict(context, **chartdata) + return context + + +class BaseDetailView(DetailView): + model = None + template_name = "browsing/generic_detail.html" + + def get_context_data(self, **kwargs): + context = super().get_context_data() + context["docstring"] = "{}".format(self.model.__doc__) + context["class_name"] = "{}".format(self.model.__name__) + context["app_name"] = "{}".format(self.model._meta.app_label) + return context + + +class BaseCreateView(CreateView): + model = None + form_class = None + template_name = "browsing/generic_create.html" + + def get_context_data(self, **kwargs): + context = super(BaseCreateView, self).get_context_data() + context["docstring"] = "{}".format(self.model.__doc__) + context["class_name"] = "{}".format(self.model.__name__) + return context + + +class BaseUpdateView(UpdateView): + model = None + form_class = None + template_name = "browsing/generic_create.html" + + def get_context_data(self, **kwargs): + context = super(BaseUpdateView, self).get_context_data() + context["docstring"] = "{}".format(self.model.__doc__) + context["class_name"] = "{}".format(self.model.__name__) + # if self.model.__name__.endswith('s'): + # context['class_name'] = "{}".format(self.model.__name__) + # else: + # context['class_name'] = "{}s".format(self.model.__name__) + return context + + +def model_to_dict(instance): + """ + serializes a model.object to dict, including non editable fields as well as + ManyToManyField fields + """ + field_dicts = [] + for x in instance._meta.get_fields(): + f_type = "{}".format(type(x)) + field_dict = { + "name": x.name, + "help_text": getattr(x, "help_text", ""), + } + try: + field_dict["extra_fields"] = x.extra + except AttributeError: + field_dict["extra_fields"] = None + if "reverse_related" in f_type: + values = getattr(instance, x.name, None) + if values is not None: + field_dict["value"] = values.all() + else: + field_dict["value"] = [] + if getattr(x, "related_name", None) is not None: + field_dict["verbose_name"] = getattr(x, "related_name", x.name) + else: + field_dict["verbose_name"] = getattr(x, "verbose_name", x.name) + field_dict["f_type"] = "REVRESE_RELATION" + elif "related.ForeignKey" in f_type: + field_dict["verbose_name"] = getattr(x, "verbose_name", x.name) + field_dict["value"] = getattr(instance, x.name, "") + field_dict["f_type"] = "FK" + elif "TreeForeignKey" in f_type: + field_dict["verbose_name"] = getattr(x, "verbose_name", x.name) + field_dict["value"] = getattr(instance, x.name, "") + field_dict["f_type"] = "FK" + elif "related.ManyToManyField" in f_type: + values = getattr(instance, x.name, None) + if values is not None: + field_dict["value"] = values.all() + else: + field_dict["value"] = [] + field_dict["verbose_name"] = getattr(x, "verbose_name", x.name) + field_dict["f_type"] = "M2M" + elif "fields.DateTimeField" in f_type: + field_value = getattr(instance, x.name, "") + field_dict["verbose_name"] = getattr(x, "verbose_name", x.name) + field_dict["f_type"] = "DateTime" + if field_value: + field_dict["value"] = field_value.strftime("%Y-%m-%d %H:%M:%S") + else: + field_dict["verbose_name"] = getattr(x, "verbose_name", x.name) + field_dict["value"] = f"{getattr(instance, x.name, '')}" + field_dict["f_type"] = "SIMPLE" + field_dicts.append(field_dict) + return field_dicts diff --git a/browsing/migrations/0001_initial.py b/browsing/migrations/0001_initial.py new file mode 100644 index 0000000..d652f48 --- /dev/null +++ b/browsing/migrations/0001_initial.py @@ -0,0 +1,51 @@ +# Generated by Django 2.2.6 on 2019-12-11 13:34 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [] + + operations = [ + migrations.CreateModel( + name="BrowsConf", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ( + "model_name", + models.CharField( + blank=True, + help_text="The name of the model class you like to analyse.", + max_length=255, + ), + ), + ( + "label", + models.CharField( + blank=True, + help_text="The label of the value of interest.", + max_length=255, + ), + ), + ( + "field_path", + models.CharField( + blank=True, + help_text="The constructor of to the value of interest.", + max_length=255, + ), + ), + ], + ), + ] diff --git a/browsing/migrations/0002_delete_browsconf.py b/browsing/migrations/0002_delete_browsconf.py new file mode 100644 index 0000000..da66a33 --- /dev/null +++ b/browsing/migrations/0002_delete_browsconf.py @@ -0,0 +1,16 @@ +# Generated by Django 3.2 on 2021-07-21 09:48 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("browsing", "0001_initial"), + ] + + operations = [ + migrations.DeleteModel( + name="BrowsConf", + ), + ] diff --git a/browsing/migrations/__init__.py b/browsing/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/browsing/models.py b/browsing/models.py new file mode 100644 index 0000000..24e1689 --- /dev/null +++ b/browsing/models.py @@ -0,0 +1 @@ +# from django.db import models diff --git a/browsing/static/browsing/js/filter-for-blank-fields.js b/browsing/static/browsing/js/filter-for-blank-fields.js new file mode 100644 index 0000000..95fc606 --- /dev/null +++ b/browsing/static/browsing/js/filter-for-blank-fields.js @@ -0,0 +1,15 @@ +$(function() +{ + var form = $( 'form' )[0]; + $( form ).submit(function() + { + $('input, select').each(function() + { + if ($(this).val().length === 0) + { + $(this).prop('disabled', true); + $(this).next().prop('disabled', true); + } + }); + }); +}); \ No newline at end of file diff --git a/browsing/static/browsing/js/set-form-attributes.js b/browsing/static/browsing/js/set-form-attributes.js new file mode 100644 index 0000000..fd15c6d --- /dev/null +++ b/browsing/static/browsing/js/set-form-attributes.js @@ -0,0 +1,10 @@ +(function set_form_attributes() { + var textinput = document.getElementsByClassName('textinput'); + for (var i = 0; i < textinput.length; i++) { + textinput[i].classList.add('form-control'); + } + var select = document.getElementsByClassName('select'); + for (var i = 0; i < select.length; i++) { + select[i].classList.add('custom-select'); + } +})(); \ No newline at end of file diff --git a/browsing/templates/browsing/create_base_template.html b/browsing/templates/browsing/create_base_template.html new file mode 100644 index 0000000..1bbf25f --- /dev/null +++ b/browsing/templates/browsing/create_base_template.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} +{% block title %}{% endblock %} +{% load crispy_forms_tags %} +{% block content %} +
+
+
+ {% block objectType %} {% endblock %} +
+
+ {% crispy form %} +
+
+
+{% endblock content %} diff --git a/browsing/templates/browsing/generic_create.html b/browsing/templates/browsing/generic_create.html new file mode 100644 index 0000000..fad3844 --- /dev/null +++ b/browsing/templates/browsing/generic_create.html @@ -0,0 +1,14 @@ +{% extends "browsing/create_base_template.html" %} +{% block title %} + Create/Edit {{ class_name }} +{% endblock %} + +{% block objectType %} +

Create/Edit + {% if docstring %} + {{ class_name }} + {% else %} + {{ class_name }} + {% endif %} +

+{% endblock %} diff --git a/browsing/templates/browsing/generic_detail.html b/browsing/templates/browsing/generic_detail.html new file mode 100644 index 0000000..63908d0 --- /dev/null +++ b/browsing/templates/browsing/generic_detail.html @@ -0,0 +1,72 @@ +{% extends "base.html" %} +{% load static %} +{% load webpage_extras %} +{% block title %}{{ object.name }}{% endblock %} +{% block content %} + +
+
+
+
+ {% if object.get_prev %} +

+ + + +

+ {% endif %} +
+
+

+ + {{ object }} + {% if user.is_authenticated %} + + + + + + {% endif %} +

+
+
+

+ {% if object.get_next %} + + + +

+ {% endif %} +
+
+
+
+ {% block custom %} + Basic Information + + {% for x in object.field_dict %} + + + + + + {% endfor %} +
+ {{ x.verbose_name }} + + {{ x.value }} +
+
+ {% if user.is_authenticated %} + + {% endif %} +
+{% endblock custom %} +{% endblock %} \ No newline at end of file diff --git a/browsing/templates/browsing/generic_list.html b/browsing/templates/browsing/generic_list.html new file mode 100644 index 0000000..cdfba6d --- /dev/null +++ b/browsing/templates/browsing/generic_list.html @@ -0,0 +1,73 @@ +{% extends "base.html" %} +{% load static %} +{% load django_tables2 %} +{% load browsing_extras %} +{% load crispy_forms_field %} +{% load crispy_forms_tags %} +{% block title %} Browse {{ class_name }} {% endblock %} +{% block scriptHeader %} + +{% endblock %} +{% block content %} + +
+
+

+ Browse {% class_definition %} {% block list_title %}{% endblock %} +

+ {% if user.is_authenticated %} + {% if create_view_link %} + + {% endif %} + {% endif %} +
+
+
+
+
+
+

Search

+ {% block customView %}{% endblock %} + {% block create_button %}{% endblock %} + + {% load django_tables2 crispy_forms_tags %} +
+ {% crispy filter.form filter.form.helper %} + {% include 'browsing/partials/column_selector.html' %} + Reset + +
+ {% include 'browsing/partials/chart_form.html' %} +
+
+
+
+
+ {% with table.paginator.count as total %} +

{{ total }} Result(s)

+ {% endwith %} +
+ {% block table %} + {% include 'browsing/partials/table.html' %} + {% endblock table %} + {% block pagination.allpages %} + {% include 'browsing/partials/pagination.html' %} + {% endblock pagination.allpages %} +
+ {% include "browsing/partials/download_menu.html" %} +
+
+
+
+
+
+
+ + +{% endblock %} +{% block scripts2 %} + + +{% endblock scripts2 %} \ No newline at end of file diff --git a/browsing/templates/browsing/partials/chart_form.html b/browsing/templates/browsing/partials/chart_form.html new file mode 100644 index 0000000..34edffb --- /dev/null +++ b/browsing/templates/browsing/partials/chart_form.html @@ -0,0 +1,37 @@ +{% if vis_list %} +
+ + +
+{% endif %} +{% if vis_list %} + {% if data %} +
+
+

{{ data.title }}

+ {{ data.items }} + +
+

{{data}}

+
+
+
+
+
+ {% if error %} +

{{ error_msg|safe }}

+ {% endif %} +
+ {% endif %} +{% endif %} \ No newline at end of file diff --git a/browsing/templates/browsing/partials/column_selector.html b/browsing/templates/browsing/partials/column_selector.html new file mode 100644 index 0000000..1187d0a --- /dev/null +++ b/browsing/templates/browsing/partials/column_selector.html @@ -0,0 +1,18 @@ +{% if togglable_colums %} + + +{% else %} +{% endif %} \ No newline at end of file diff --git a/browsing/templates/browsing/partials/download_menu.html b/browsing/templates/browsing/partials/download_menu.html new file mode 100644 index 0000000..43a01e2 --- /dev/null +++ b/browsing/templates/browsing/partials/download_menu.html @@ -0,0 +1,11 @@ +{% load django_tables2 %} + \ No newline at end of file diff --git a/browsing/templates/browsing/partials/pagination.html b/browsing/templates/browsing/partials/pagination.html new file mode 100644 index 0000000..5c7b4b9 --- /dev/null +++ b/browsing/templates/browsing/partials/pagination.html @@ -0,0 +1,49 @@ +{% load django_tables2 %} +{% load i18n %} + +
+ {% with table.page.object_list|length as count %} +

Page total: {{ count }}

+ {% endwith %} +
+{% if table.paginator.page_range|length > 25 %} +
+ + +
+{% else %} + +{% endif %} diff --git a/browsing/templates/browsing/partials/table.html b/browsing/templates/browsing/partials/table.html new file mode 100644 index 0000000..91c68ec --- /dev/null +++ b/browsing/templates/browsing/partials/table.html @@ -0,0 +1,59 @@ +{% load django_tables2 %} +{% if enable_merge and user.is_authenticated %} +
+ {% csrf_token %} + + +{% endif %} + + {% block table.thead %} + {% if table.show_header %} + + + {% for column in table.columns %} + {% if column.orderable %} + + {% else %} + + {% endif %} + {% endfor %} + + + {% endif %} + {% endblock table.thead %} + {% block table.tbody %} + + {% for row in table.page.object_list|default:table.rows %} {# support pagination #} + {% block table.tbody.row %} + + {% for column, cell in row.items %} + + + {% endfor %} + + {% endblock table.tbody.row %} + {% empty %} + {% if table.empty_text %} + {% block table.tbody.empty_text %} + + {% endblock table.tbody.empty_text %} + {% endif %} + {% endfor %} + + {% endblock table.tbody %} + {% block table.tfoot %} + {% if table.has_footer %} + + + {% for column in table.columns %} + + {% endfor %} + + + {% endif %} + {% endblock table.tfoot %} +
{{ column.header }}{{ column.header }}
{% if column.localize == None %}{{ cell }}{% else %}{% if column.localize %}{{ cell|localize }}{% else %}{{ cell|unlocalize }}{% endif %}{% endif %}
{{ table.empty_text }}
{{ column.footer }}
+{% if enable_merge and user.is_authenticated %} + + {% endif %} +
\ No newline at end of file diff --git a/browsing/templates/browsing/tags/class_definition.html b/browsing/templates/browsing/tags/class_definition.html new file mode 100644 index 0000000..1307b7a --- /dev/null +++ b/browsing/templates/browsing/tags/class_definition.html @@ -0,0 +1 @@ +{{ class_name }} diff --git a/browsing/templates/browsing/tags/column_selector.html b/browsing/templates/browsing/tags/column_selector.html new file mode 100644 index 0000000..ca62ae5 --- /dev/null +++ b/browsing/templates/browsing/tags/column_selector.html @@ -0,0 +1,23 @@ +{% if togglable_colums %} + + + + +{% else %} + +{% endif %} diff --git a/browsing/templatetags/__init__.py b/browsing/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/browsing/templatetags/browsing_extras.py b/browsing/templatetags/browsing_extras.py new file mode 100644 index 0000000..e7c60e4 --- /dev/null +++ b/browsing/templatetags/browsing_extras.py @@ -0,0 +1,51 @@ +from django import template +from django.contrib.contenttypes.models import ContentType + +register = template.Library() + + +@register.simple_tag +def nav_menu(app=None): + + """creates links to all class of the passed in application + for which get_listview_url() methods have been registered""" + + if app: + models = ContentType.objects.filter(app_label=app) + result = [] + for x in models: + modelname = x.name + modelname = modelname.replace(" ", "").lower() + try: + fetched_model = ContentType.objects.get( + app_label=app, model=modelname + ).model_class() + item = { + "name": modelname.title(), + } + except Exception as e: + print(e) + item = {"name": None} + try: + item["link"] = fetched_model.get_listview_url() + result.append(item) + except AttributeError: + item["link"] = None + return result + + +@register.inclusion_tag("browsing/tags/class_definition.html", takes_context=True) +def class_definition(context): + values = {} + try: + values["class_name"] = context["class_name"] + values["docstring"] = context["docstring"] + except Exception as e: + print(e) + pass + return values + + +@register.inclusion_tag("browsing/tags/column_selector.html", takes_context=True) +def column_selector(context): + return context diff --git a/browsing/tests.py b/browsing/tests.py new file mode 100644 index 0000000..a79ca8b --- /dev/null +++ b/browsing/tests.py @@ -0,0 +1,3 @@ +# from django.test import TestCase + +# Create your tests here. diff --git a/browsing/urls.py b/browsing/urls.py new file mode 100644 index 0000000..b472c39 --- /dev/null +++ b/browsing/urls.py @@ -0,0 +1,8 @@ +from django.urls import path +from . import views + +app_name = "browsing" + +urlpatterns = [ + path("merge-objects/", views.merge_objects, name="merge_objects"), +] diff --git a/browsing/views.py b/browsing/views.py new file mode 100644 index 0000000..5d1d129 --- /dev/null +++ b/browsing/views.py @@ -0,0 +1,40 @@ +from django.contrib.auth.decorators import login_required +from django.contrib.contenttypes.models import ContentType +from django.core.exceptions import ObjectDoesNotExist +from django.http import HttpResponseRedirect +from django_super_deduper.merge import MergedModelInstance + + +@login_required +def merge_objects(request): + go_back = request.META.get("HTTP_REFERER") + if request.method == "POST": + keep = request.POST.get("keep", None) + remove = request.POST.getlist("remove", None) + model_name = request.POST.get("model_name", None) + app_name = request.POST.get("app_name", None) + print("##############################") + print(keep, remove, model_name, app_name) + if keep and remove and model_name and app_name: + print("all good") + try: + ct = ContentType.objects.get( + app_label=app_name, model=model_name + ).model_class() + except ObjectDoesNotExist: + ct = None + if ct: + try: + keep_obj = ct.objects.filter(pk=keep)[0] + except IndexError: + print("No matching object to keep found") + return HttpResponseRedirect(go_back) + remove_objs = ct.objects.filter(pk__in=remove) + if len(remove_objs) > 0: + for x in remove_objs: + MergedModelInstance(keep_obj, x).merge(x) + x.delete() + print("merged {} into {}".format(x, keep_obj)) + return HttpResponseRedirect(go_back) + else: + return HttpResponseRedirect(go_back) diff --git a/pmb/urls.py b/pmb/urls.py index 6f75ee9..034aa48 100644 --- a/pmb/urls.py +++ b/pmb/urls.py @@ -12,4 +12,5 @@ path("admin/", admin.site.urls), path("arche/", include("archemd.urls")), path("", include("dumper.urls", namespace="dumper")), + path("browsing", include("browsing.urls", namespace="browsing")), ] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) From 78661fb131ef692b125c44b7518d319346ff56ef Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 18 Nov 2023 10:16:13 +0100 Subject: [PATCH 24/56] fixed uri list view --- apis_core/apis_metainfo/forms.py | 18 ++++++------------ apis_core/apis_metainfo/views.py | 2 +- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/apis_core/apis_metainfo/forms.py b/apis_core/apis_metainfo/forms.py index d0868bb..5351d0c 100644 --- a/apis_core/apis_metainfo/forms.py +++ b/apis_core/apis_metainfo/forms.py @@ -1,4 +1,5 @@ -from crispy_forms.bootstrap import Accordion, AccordionGroup +from crispy_forms.bootstrap import AccordionGroup +from crispy_bootstrap5.bootstrap5 import BS5Accordion from crispy_forms.helper import FormHelper from crispy_forms.layout import Submit, Layout from dal import autocomplete @@ -35,16 +36,9 @@ def __init__(self, *args, **kwargs): self.helper = FormHelper() self.form_class = "genericFilterForm" self.form_method = "GET" - self.helper.form_tag = False - self.add_input(Submit("Filter", "Search")) + self.form_tag = False self.layout = Layout( - Accordion( - AccordionGroup( - "Filter", - "uri", - "domain", - "entity__name", - css_id="basic_search_fields", - ), - ) + "uri", + "domain", + "entity__name", ) diff --git a/apis_core/apis_metainfo/views.py b/apis_core/apis_metainfo/views.py index e821621..68ff352 100644 --- a/apis_core/apis_metainfo/views.py +++ b/apis_core/apis_metainfo/views.py @@ -38,7 +38,7 @@ class UriListView(GenericListView): "uri", "entity", ] - enable_merge = True + enable_merge = False class UriDetailView(DetailView): From ecf1996ec16c224278d960b229d6d4888f745b37 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 18 Nov 2023 10:22:05 +0100 Subject: [PATCH 25/56] dont show useless columns in uri list view --- apis_core/apis_metainfo/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apis_core/apis_metainfo/views.py b/apis_core/apis_metainfo/views.py index 68ff352..3cf9bbc 100644 --- a/apis_core/apis_metainfo/views.py +++ b/apis_core/apis_metainfo/views.py @@ -38,6 +38,7 @@ class UriListView(GenericListView): "uri", "entity", ] + exclude_columns = ["loaded", "loaded_time", "rdf_link"] enable_merge = False From 4c81b5812a861ee4d827d53179adf7d1dfbddabd Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 18 Nov 2023 10:26:43 +0100 Subject: [PATCH 26/56] some helptext, verbose names for class Uri --- apis_core/apis_metainfo/models.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apis_core/apis_metainfo/models.py b/apis_core/apis_metainfo/models.py index 0ad0d7a..216e803 100644 --- a/apis_core/apis_metainfo/models.py +++ b/apis_core/apis_metainfo/models.py @@ -373,11 +373,13 @@ def __str__(self): class Uri(models.Model): - uri = models.URLField(blank=True, null=True, unique=True, max_length=255) - domain = models.CharField(max_length=255, blank=True) + uri = models.URLField(blank=True, null=True, unique=True, max_length=255, verbose_name="URI", help_text="Eindeutiger Identifier") + domain = models.CharField(max_length=255, blank=True, verbose_name="Domain", help_text="Domain der Normdatenquelle, z.B. gnd, wikidata, geonames, ...") rdf_link = models.URLField(blank=True) entity = models.ForeignKey( - TempEntityClass, blank=True, null=True, on_delete=models.CASCADE + TempEntityClass, blank=True, null=True, on_delete=models.CASCADE, + verbose_name="Entität", + help_text="Entität die mit dieser URI verbunden ist" ) # loaded set to True when RDF was loaded and parsed into the data model loaded = models.BooleanField(default=False) From 111d023affca69696d1e106699833cefb2e17193 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 18 Nov 2023 14:18:27 +0100 Subject: [PATCH 27/56] custom listview for person, better table/filters --- apis_core/apis_entities/forms.py | 2 +- apis_core/apis_entities/list_views.py | 21 +++++++++++ apis_core/apis_entities/tables.py | 11 ++++++ apis_core/apis_entities/urls.py | 6 +++ apis_core/apis_entities/views.py | 53 +++++---------------------- apis_core/apis_metainfo/models.py | 23 ++++++++++-- 6 files changed, 67 insertions(+), 49 deletions(-) create mode 100644 apis_core/apis_entities/list_views.py diff --git a/apis_core/apis_entities/forms.py b/apis_core/apis_entities/forms.py index ebf8142..24146e0 100644 --- a/apis_core/apis_entities/forms.py +++ b/apis_core/apis_entities/forms.py @@ -483,4 +483,4 @@ def __init__(self, *args, **kwargs): self.helper = FormHelper() self.form_class = "genericFilterForm" self.form_method = "GET" - self.add_input(Submit("Filter", "Filter")) + self.form_tag = False diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py new file mode 100644 index 0000000..f288b9a --- /dev/null +++ b/apis_core/apis_entities/list_views.py @@ -0,0 +1,21 @@ +from browsing.browsing_utils import GenericListView + +from apis_core.apis_entities.models import Person +from apis_core.apis_entities.tables import PersonTable +from apis_core.apis_entities.forms import GenericFilterFormHelper +from apis_core.apis_entities.filters import PersonListFilter + + +class PersonListView(GenericListView): + model = Person + filter_class = PersonListFilter + formhelper_class = GenericFilterFormHelper + table_class = PersonTable + init_columns = [ + "id", + "name", + "start_date", + "end_date", + ] + exclude_columns = [] + enable_merge = False diff --git a/apis_core/apis_entities/tables.py b/apis_core/apis_entities/tables.py index da55eb9..b81de18 100644 --- a/apis_core/apis_entities/tables.py +++ b/apis_core/apis_entities/tables.py @@ -4,6 +4,7 @@ from django.conf import settings from apis_core.apis_entities.models import AbstractEntity +from apis_core.apis_entities.models import Person from apis_core.apis_metainfo.tables import ( generic_order_start_date_written, generic_order_end_date_written, @@ -11,12 +12,22 @@ generic_render_end_date_written, ) + input_form = """ | """ +class PersonTable(tables.Table): + id = tables.LinkColumn() + + class Meta: + model = Person + sequence = ("id",) + attrs = {"class": "table table-responsive table-hover"} + + class MergeColumn(tables.Column): """renders a column with to checkbox - used to select objects for merging""" diff --git a/apis_core/apis_entities/urls.py b/apis_core/apis_entities/urls.py index 30b2455..c78071f 100644 --- a/apis_core/apis_entities/urls.py +++ b/apis_core/apis_entities/urls.py @@ -7,6 +7,7 @@ ) from .views2 import GenericEntitiesCreateStanbolView +from .list_views import PersonListView app_name = "apis_entities" @@ -31,6 +32,11 @@ views2.GenericEntitiesDeleteView.as_view(), name="generic_entities_delete_view", ), + path( + "entity/person/list/", + PersonListView.as_view(), + name="generic_entities_list", + ), path( "entity//list/", views.GenericListViewNew.as_view(), diff --git a/apis_core/apis_entities/views.py b/apis_core/apis_entities/views.py index 57a8460..059ef6b 100644 --- a/apis_core/apis_entities/views.py +++ b/apis_core/apis_entities/views.py @@ -22,6 +22,8 @@ access_for_all_function, ENTITIES_DEFAULT_COLS, ) + +from browsing.browsing_utils import GenericListView from .filters import get_list_filter_of_entity from .forms import ( GenericFilterFormHelper, @@ -32,14 +34,6 @@ from .models import Place from .tables import get_entities_table -if "apis_highlighter" in settings.INSTALLED_APPS: - from apis_highlighter.forms import SelectAnnotationProject - from apis_highlighter.highlighter import highlight_text_new - -if "charts" in settings.INSTALLED_APPS: - from charts.models import ChartConfig - from charts.views import create_payload - ########################################################################### ############################################################################ # @@ -113,7 +107,7 @@ class GenericListViewNew(UserPassesTestMixin, ExportMixin, SingleTableView): formhelper_class = GenericFilterFormHelper context_filter_name = "filter" paginate_by = 25 - template_name = "apis_entities/generic_list.html" + template_name = "browsing/generic_list.html" def get_model(self): model = ContentType.objects.get( @@ -153,7 +147,7 @@ def get_table(self, **kwargs): if "table_fields" in settings.APIS_ENTITIES[entity.title()]: default_cols = settings.APIS_ENTITIES[entity.title()]["table_fields"] else: - default_cols = ["name"] + default_cols = ["id", "name"] default_cols = default_cols + selected_cols self.table_class = get_entities_table( self.entity.title(), edit_v, default_cols=default_cols @@ -181,44 +175,15 @@ def get_context_data(self, **kwargs): context["class_name"] = "{}".format(model.__name__) else: context["class_name"] = "{}s".format(model.__name__) - try: - context["get_arche_dump"] = model.get_arche_dump() - except AttributeError: - context["get_arche_dump"] = None - try: - context["create_view_link"] = model.get_createview_url() - except AttributeError: - context["create_view_link"] = None - if "charts" in settings.INSTALLED_APPS: - app_label = model._meta.app_label - filtered_objs = ChartConfig.objects.filter( - model_name=model.__name__.lower(), app_name=app_label - ) - context["vis_list"] = filtered_objs - context["property_name"] = self.request.GET.get("property") - context["charttype"] = self.request.GET.get("charttype") - if context["charttype"] and context["property_name"]: - qs = self.get_queryset() - chartdata = create_payload( - context["entity"], - context["property_name"], - context["charttype"], - qs, - app_label=app_label, - ) - context = dict(context, **chartdata) - try: - context["enable_merge"] = settings.APIS_ENTITIES[entity.title()]["merge"] - except KeyError: - context["enable_merge"] = False + context["create_view_link"] = None + context["enable_merge"] = False try: togg_cols = settings.APIS_ENTITIES[entity.title()]["additional_cols"] except KeyError: togg_cols = [] - if context["enable_merge"] and self.request.user.is_authenticated: - togg_cols = togg_cols + ["merge"] - context["togglable_colums"] = togg_cols + ENTITIES_DEFAULT_COLS - + context["togglable_colums"] = { + x: x for x in [togg_cols + ENTITIES_DEFAULT_COLS][0] + } return context def render_to_response(self, context, **kwargs): diff --git a/apis_core/apis_metainfo/models.py b/apis_core/apis_metainfo/models.py index 216e803..9950e2b 100644 --- a/apis_core/apis_metainfo/models.py +++ b/apis_core/apis_metainfo/models.py @@ -373,13 +373,28 @@ def __str__(self): class Uri(models.Model): - uri = models.URLField(blank=True, null=True, unique=True, max_length=255, verbose_name="URI", help_text="Eindeutiger Identifier") - domain = models.CharField(max_length=255, blank=True, verbose_name="Domain", help_text="Domain der Normdatenquelle, z.B. gnd, wikidata, geonames, ...") + uri = models.URLField( + blank=True, + null=True, + unique=True, + max_length=255, + verbose_name="URI", + help_text="Eindeutiger Identifier", + ) + domain = models.CharField( + max_length=255, + blank=True, + verbose_name="Domain", + help_text="Domain der Normdatenquelle, z.B. gnd, wikidata, geonames, ...", + ) rdf_link = models.URLField(blank=True) entity = models.ForeignKey( - TempEntityClass, blank=True, null=True, on_delete=models.CASCADE, + TempEntityClass, + blank=True, + null=True, + on_delete=models.CASCADE, verbose_name="Entität", - help_text="Entität die mit dieser URI verbunden ist" + help_text="Entität die mit dieser URI verbunden ist", ) # loaded set to True when RDF was loaded and parsed into the data model loaded = models.BooleanField(default=False) From a48639c832a23ef72113fc6a2361c1ec1ec4b9dc Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 18 Nov 2023 15:42:41 +0100 Subject: [PATCH 28/56] started with custom person filter --- apis_core/apis_entities/list_views.py | 37 ++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index f288b9a..0464123 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -1,9 +1,44 @@ +import django_filters +from dal import autocomplete + from browsing.browsing_utils import GenericListView from apis_core.apis_entities.models import Person +from apis_core.apis_vocabularies.models import ProfessionType +from apis_core.apis_relations.models import PersonPlace from apis_core.apis_entities.tables import PersonTable from apis_core.apis_entities.forms import GenericFilterFormHelper -from apis_core.apis_entities.filters import PersonListFilter + + + +class PersonListFilter(django_filters.FilterSet): + gender = django_filters.ChoiceFilter( + choices=(("", "egal"), ("male", "männlich"), ("female", "weiblich")) + ) + birth_year = django_filters.NumberFilter( + field_name="start_date__year", label="Geburtsjahr", help_text="z.B. 1880" + ) + death_year = django_filters.NumberFilter( + field_name="start_date__year", label="Todesjahr", help_text="z.B. 1955" + ) + first_name = django_filters.CharFilter( + lookup_expr="icontains", label="Vorname", help_text="eingegebene Zeichenkette muss im Vornamen enthalten sein" + ) + profession = django_filters.ModelMultipleChoiceFilter( + queryset=ProfessionType.objects.all(), + help_text=Person._meta.get_field("profession").help_text, + label=Person._meta.get_field("profession").verbose_name, + widget=autocomplete.Select2Multiple( + url="/apis/vocabularies/autocomplete/professiontype/normal/", + ), + ) + + class Meta: + model = Person + fields = [ + "name", + "first_name", + ] class PersonListView(GenericListView): From ba3323e0d62e900a434c04f2cff052f2f1efb146 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 18 Nov 2023 20:55:15 +0100 Subject: [PATCH 29/56] added birth, death place filter to person view --- apis_core/apis_entities/list_views.py | 39 ++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 4 deletions(-) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index 0464123..d3ae3e5 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -1,14 +1,35 @@ import django_filters +from django.conf import settings + from dal import autocomplete from browsing.browsing_utils import GenericListView from apis_core.apis_entities.models import Person -from apis_core.apis_vocabularies.models import ProfessionType -from apis_core.apis_relations.models import PersonPlace +from apis_core.apis_vocabularies.models import ProfessionType, PersonPlaceRelation from apis_core.apis_entities.tables import PersonTable from apis_core.apis_entities.forms import GenericFilterFormHelper +birth_rel = PersonPlaceRelation.objects.filter(name="geboren in") +death_rel = PersonPlaceRelation.objects.filter(name="gestorben in") + + +def birth_place_filter(qs, name, value): + rels = birth_rel + qs = qs.filter( + personplace_set__related_place__name__icontains=value, + personplace_set__relation_type__in=rels, + ) + return qs + + +def death_place_filter(qs, name, value): + rels = death_rel + qs = qs.filter( + personplace_set__related_place__name__icontains=value, + personplace_set__relation_type__in=rels, + ) + return qs class PersonListFilter(django_filters.FilterSet): @@ -18,11 +39,21 @@ class PersonListFilter(django_filters.FilterSet): birth_year = django_filters.NumberFilter( field_name="start_date__year", label="Geburtsjahr", help_text="z.B. 1880" ) + birth_place = django_filters.CharFilter( + label="Geburtsort", + method=birth_place_filter, + ) death_year = django_filters.NumberFilter( - field_name="start_date__year", label="Todesjahr", help_text="z.B. 1955" + field_name="end_date__year", label="Todesjahr", help_text="z.B. 1955" + ) + death_place = django_filters.CharFilter( + label="Sterbeort", + method=death_place_filter, ) first_name = django_filters.CharFilter( - lookup_expr="icontains", label="Vorname", help_text="eingegebene Zeichenkette muss im Vornamen enthalten sein" + lookup_expr="icontains", + label="Vorname", + help_text="eingegebene Zeichenkette muss im Vornamen enthalten sein", ) profession = django_filters.ModelMultipleChoiceFilter( queryset=ProfessionType.objects.all(), From bc91262f1fd0ea0b8e824c5366d33dc8f9967553 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 19 Nov 2023 09:51:56 +0100 Subject: [PATCH 30/56] vielleicht wirds ja doch was? --- apis_core/apis_entities/list_views.py | 74 +++++++++++++++++---------- apis_core/helper_functions/utils.py | 11 ++++ 2 files changed, 57 insertions(+), 28 deletions(-) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index d3ae3e5..d391582 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -6,30 +6,19 @@ from browsing.browsing_utils import GenericListView from apis_core.apis_entities.models import Person -from apis_core.apis_vocabularies.models import ProfessionType, PersonPlaceRelation +from apis_core.apis_vocabularies.models import ProfessionType from apis_core.apis_entities.tables import PersonTable from apis_core.apis_entities.forms import GenericFilterFormHelper +from apis_core.apis_vocabularies.models import PersonPersonRelation, PersonPlaceRelation +from apis_core.helper_functions.utils import birth_rel, death_rel, get_child_classes -birth_rel = PersonPlaceRelation.objects.filter(name="geboren in") -death_rel = PersonPlaceRelation.objects.filter(name="gestorben in") +PERSON_PERSON_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonPersonRelation.objects.all() +] - -def birth_place_filter(qs, name, value): - rels = birth_rel - qs = qs.filter( - personplace_set__related_place__name__icontains=value, - personplace_set__relation_type__in=rels, - ) - return qs - - -def death_place_filter(qs, name, value): - rels = death_rel - qs = qs.filter( - personplace_set__related_place__name__icontains=value, - personplace_set__relation_type__in=rels, - ) - return qs +PERSON_PLACE_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonPlaceRelation.objects.all() +] class PersonListFilter(django_filters.FilterSet): @@ -39,17 +28,9 @@ class PersonListFilter(django_filters.FilterSet): birth_year = django_filters.NumberFilter( field_name="start_date__year", label="Geburtsjahr", help_text="z.B. 1880" ) - birth_place = django_filters.CharFilter( - label="Geburtsort", - method=birth_place_filter, - ) death_year = django_filters.NumberFilter( field_name="end_date__year", label="Todesjahr", help_text="z.B. 1955" ) - death_place = django_filters.CharFilter( - label="Sterbeort", - method=death_place_filter, - ) first_name = django_filters.CharFilter( lookup_expr="icontains", label="Vorname", @@ -63,6 +44,43 @@ class PersonListFilter(django_filters.FilterSet): url="/apis/vocabularies/autocomplete/professiontype/normal/", ), ) + related_with_person = django_filters.LookupChoiceFilter( + lookup_choices=PERSON_PERSON_RELATION_CHOICES, + label="Bezugsperson", + help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'Schnitzler' und 'arbeitet für'", + method="related_person_filter", + ) + related_with_place = django_filters.LookupChoiceFilter( + lookup_choices=PERSON_PLACE_RELATION_CHOICES, + label="Bezugsort", + help_text="Name eines Ortes und die Art des Beziehung, z.B. 'Linz' und 'beerdigt in'", + method="related_place_filter", + ) + + def related_place_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PersonPlaceRelation, + ) + qs = qs.filter( + personplace_set__related_place__name__icontains=value.value, + personplace_set__relation_type__in=rels, + ) + return qs + + def related_person_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PersonPersonRelation, + ) + qs = qs.filter( + personb_set__name__icontains=value.value, personb_relationtype_set__in=rels + ) + return qs class Meta: model = Person diff --git a/apis_core/helper_functions/utils.py b/apis_core/helper_functions/utils.py index bb132fe..601641e 100644 --- a/apis_core/helper_functions/utils.py +++ b/apis_core/helper_functions/utils.py @@ -1,4 +1,5 @@ from django.conf import settings +from apis_core.apis_vocabularies.models import PersonPlaceRelation, PersonPersonRelation def access_for_all(self, viewtype="list"): @@ -61,3 +62,13 @@ def get_child_classes(objids, obclass, labels=False): return (objids, labels_lst) else: return objids + + +birth_rel = PersonPlaceRelation.objects.filter(name="geboren in") +death_rel = PersonPlaceRelation.objects.filter(name="gestorben in") +person_rel = get_child_classes( + [ + 1176, + ], + PersonPersonRelation, +) From ce53a85865cbe825821b56c3f6a943fcbbea624e Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 19 Nov 2023 10:00:53 +0100 Subject: [PATCH 31/56] removed not any more needed things --- apis_core/apis_entities/list_views.py | 2 +- apis_core/helper_functions/utils.py | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index d391582..5dfdd01 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -10,7 +10,7 @@ from apis_core.apis_entities.tables import PersonTable from apis_core.apis_entities.forms import GenericFilterFormHelper from apis_core.apis_vocabularies.models import PersonPersonRelation, PersonPlaceRelation -from apis_core.helper_functions.utils import birth_rel, death_rel, get_child_classes +from apis_core.helper_functions.utils import get_child_classes PERSON_PERSON_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonPersonRelation.objects.all() diff --git a/apis_core/helper_functions/utils.py b/apis_core/helper_functions/utils.py index 601641e..d7d11d5 100644 --- a/apis_core/helper_functions/utils.py +++ b/apis_core/helper_functions/utils.py @@ -62,13 +62,3 @@ def get_child_classes(objids, obclass, labels=False): return (objids, labels_lst) else: return objids - - -birth_rel = PersonPlaceRelation.objects.filter(name="geboren in") -death_rel = PersonPlaceRelation.objects.filter(name="gestorben in") -person_rel = get_child_classes( - [ - 1176, - ], - PersonPersonRelation, -) From 34988577ecd3ff192b25069118768eb14fc9ea19 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 19 Nov 2023 14:02:57 +0100 Subject: [PATCH 32/56] color for the links --- static/css/style.css | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index f95474d..ffda65d 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,16 +1,27 @@ :root { --pmb: #9B5F98; + --pmb-hover: #9b5f98c2; --person: #ad3f58; --place: #f5db9e; --work: #668cb9; --event: #5c8c7c; --institution: #c57f7f; --uri: #e7e1bf; - } +} + + +a { + color: var(--pmb) +} + +a:hover { + color: var(--pmb-hover) +} main { padding-top: 5.50em; } + /* COLORS FOR ENTITIES */ .apis-person { @@ -43,12 +54,13 @@ main { .navbar { border-bottom: 5px solid var(--pmb); - } +} + .navbar .navbar-brand img { max-height: none; height: 4rem; max-width: 100%; - } +} /* CUSTOMIZE THE CAROUSEL -------------------------------------------------- */ @@ -83,5 +95,4 @@ main { .marketing .col-lg-4 p { margin-right: .75rem; margin-left: .75rem; -} - +} \ No newline at end of file From 2820640eb9530681def9c6212a2dc7f90b39ac4c Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 19 Nov 2023 14:28:32 +0100 Subject: [PATCH 33/56] some styling --- apis_core/apis_entities/list_views.py | 1 + .../apis_entities/list_views/person_list.html | 81 +++++++++++++++++++ browsing/browsing_utils.py | 2 +- 3 files changed, 83 insertions(+), 1 deletion(-) create mode 100644 apis_core/apis_entities/templates/apis_entities/list_views/person_list.html diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index 5dfdd01..8f75b90 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -103,3 +103,4 @@ class PersonListView(GenericListView): ] exclude_columns = [] enable_merge = False + template_name = "apis_entities/list_views/person_list.html" diff --git a/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html b/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html new file mode 100644 index 0000000..b997389 --- /dev/null +++ b/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html @@ -0,0 +1,81 @@ +{% extends "base.html" %} +{% load static %} +{% load django_tables2 %} +{% load browsing_extras %} +{% load crispy_forms_field %} +{% load crispy_forms_tags %} + +{% block content %} + +
+

+ + Personen +

+
+
+

Suchen & Filtern

+ {% block customView %}{% endblock %} + {% block create_button %}{% endblock %} + + {% load django_tables2 crispy_forms_tags %} +
+ {% crispy filter.form filter.form.helper %} + {% include 'browsing/partials/column_selector.html' %} + Zurücksetzen + +
+ {% include 'browsing/partials/chart_form.html' %} + +
+
+ + {% with table.paginator.count as total %} +

{{ total }} Result(s)

+ {% endwith %} +
+ {% block table %} + {% include 'browsing/partials/table.html' %} + {% endblock table %} + {% block pagination.allpages %} + {% include 'browsing/partials/pagination.html' %} + {% endblock pagination.allpages %} +
+ {% include "browsing/partials/download_menu.html" %} +
+
+
+
+ {% if user.is_authenticated %} + {% if create_view_link %} + + {% endif %} + {% endif %} + +
+ + + + + + + + + +{% endblock %} +{% block scripts2 %} + + +{% endblock scripts2 %} \ No newline at end of file diff --git a/browsing/browsing_utils.py b/browsing/browsing_utils.py index f710208..be6ebbb 100644 --- a/browsing/browsing_utils.py +++ b/browsing/browsing_utils.py @@ -56,7 +56,7 @@ class GenericListView(ExportMixin, django_tables2.SingleTableView): filter_class = None formhelper_class = None context_filter_name = "filter" - paginate_by = 50 + paginate_by = 25 template_name = "browsing/generic_list.html" init_columns = [] enable_merge = False From bb0955fad584842da6d1baa83727d35e1b0eaa44 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 19 Nov 2023 14:35:41 +0100 Subject: [PATCH 34/56] towards a wee bit more generic styling --- apis_core/apis_entities/list_views.py | 12 +++++++----- .../apis_entities/list_views/person_list.html | 14 +++++++++----- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index 8f75b90..3743bab 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -1,6 +1,4 @@ import django_filters -from django.conf import settings - from dal import autocomplete from browsing.browsing_utils import GenericListView @@ -15,13 +13,17 @@ PERSON_PERSON_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonPersonRelation.objects.all() ] - PERSON_PLACE_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonPlaceRelation.objects.all() ] class PersonListFilter(django_filters.FilterSet): + name = django_filters.CharFilter( + lookup_expr="icontains", + label="Nachname", + help_text="eingegebene Zeichenkette muss im Nachnamen enthalten sein", + ) gender = django_filters.ChoiceFilter( choices=(("", "egal"), ("male", "männlich"), ("female", "weiblich")) ) @@ -38,8 +40,8 @@ class PersonListFilter(django_filters.FilterSet): ) profession = django_filters.ModelMultipleChoiceFilter( queryset=ProfessionType.objects.all(), - help_text=Person._meta.get_field("profession").help_text, - label=Person._meta.get_field("profession").verbose_name, + help_text="Beruf/Profession der Person, z.B. 'Kritiker'", + label="Beruf/Profession", widget=autocomplete.Select2Multiple( url="/apis/vocabularies/autocomplete/professiontype/normal/", ), diff --git a/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html b/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html index b997389..dceaeff 100644 --- a/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html +++ b/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html @@ -8,18 +8,22 @@ {% block content %}
-

- +

+ Personen

From d3f9e084f4c7fff7b08124d53bc768c49c8f17b2 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 19 Nov 2023 20:38:09 +0100 Subject: [PATCH 35/56] custom person table --- apis_core/apis_entities/list_views.py | 33 +++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index 3743bab..866f8e0 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -1,15 +1,33 @@ import django_filters +import django_tables2 as tables + from dal import autocomplete from browsing.browsing_utils import GenericListView from apis_core.apis_entities.models import Person from apis_core.apis_vocabularies.models import ProfessionType -from apis_core.apis_entities.tables import PersonTable +# from apis_core.apis_entities.tables import PersonTable from apis_core.apis_entities.forms import GenericFilterFormHelper from apis_core.apis_vocabularies.models import PersonPersonRelation, PersonPlaceRelation from apis_core.helper_functions.utils import get_child_classes +excluded_cols = [ + "start_start_date", + "start_end_date", + "end_start_date", + "end_end_date", + "status", + "source", + "references", + "published", + "tempentityclass_ptr", + "review", +] + + +### Personen ### + PERSON_PERSON_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonPersonRelation.objects.all() ] @@ -92,6 +110,15 @@ class Meta: ] +class PersonTable(tables.Table): + id = tables.LinkColumn(verbose_name="ID") + + class Meta: + model = Person + sequence = ("id", "name", "first_name") + attrs = {"class": "table table-responsive table-hover"} + + class PersonListView(GenericListView): model = Person filter_class = PersonListFilter @@ -100,9 +127,11 @@ class PersonListView(GenericListView): init_columns = [ "id", "name", + "first_name", + "uris", "start_date", "end_date", ] - exclude_columns = [] + exclude_columns = excluded_cols enable_merge = False template_name = "apis_entities/list_views/person_list.html" From 32b63ed7aa5a18e81ad3fa5bc8dc5bfcf652b0fd Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 25 Nov 2023 10:00:20 +0100 Subject: [PATCH 36/56] accordion for person filter fields ToDo - style it --- apis_core/apis_entities/list_views.py | 85 ++++++++++++++++++++++++++- 1 file changed, 82 insertions(+), 3 deletions(-) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index 866f8e0..5d04700 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -1,5 +1,10 @@ import django_filters import django_tables2 as tables +from django import forms +from crispy_forms.helper import FormHelper +from crispy_forms.layout import Submit, Layout +from crispy_forms.bootstrap import AccordionGroup +from crispy_bootstrap5.bootstrap5 import BS5Accordion from dal import autocomplete @@ -7,9 +12,15 @@ from apis_core.apis_entities.models import Person from apis_core.apis_vocabularies.models import ProfessionType + # from apis_core.apis_entities.tables import PersonTable from apis_core.apis_entities.forms import GenericFilterFormHelper -from apis_core.apis_vocabularies.models import PersonPersonRelation, PersonPlaceRelation +from apis_core.apis_vocabularies.models import ( + PersonPersonRelation, + PersonPlaceRelation, + PersonWorkRelation, + PersonInstitutionRelation, +) from apis_core.helper_functions.utils import get_child_classes excluded_cols = [ @@ -34,6 +45,12 @@ PERSON_PLACE_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonPlaceRelation.objects.all() ] +PERSON_WORK_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonWorkRelation.objects.all() +] +PERSON_INSTITUTION_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonInstitutionRelation.objects.all() +] class PersonListFilter(django_filters.FilterSet): @@ -76,6 +93,44 @@ class PersonListFilter(django_filters.FilterSet): help_text="Name eines Ortes und die Art des Beziehung, z.B. 'Linz' und 'beerdigt in'", method="related_place_filter", ) + related_with_work = django_filters.LookupChoiceFilter( + lookup_choices=PERSON_WORK_RELATION_CHOICES, + label="Werk", + help_text="Name eines Werkes und die Art des Beziehung, z.B. 'Reigen' und 'hat geschaffen'", + method="related_work_filter", + ) + related_with_institution = django_filters.LookupChoiceFilter( + lookup_choices=PERSON_INSTITUTION_RELATION_CHOICES, + label="Institution", + help_text="Name einer Institution und die Art des Beziehung, z.B. 'Znanie' und 'besitzt'", + method="related_institution_filter", + ) + + def related_institution_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PersonInstitutionRelation, + ) + qs = qs.filter( + personinstitution_set__related_institution__name__icontains=value.value, + personinstitution_set__relation_type__in=rels, + ) + return qs + + def related_work_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PersonWorkRelation, + ) + qs = qs.filter( + personwork_set__related_work__name__icontains=value.value, + personwork_set__relation_type__in=rels, + ) + return qs def related_place_filter(self, qs, name, value): rels = get_child_classes( @@ -110,9 +165,33 @@ class Meta: ] +class PersonFilterFormHelper(FormHelper): + def __init__(self, *args, **kwargs): + super(PersonFilterFormHelper, self).__init__(*args, **kwargs) + self.helper = FormHelper() + self.form_class = "genericFilterForm" + self.form_method = "GET" + self.form_tag = False + self.layout = Layout( + BS5Accordion( + AccordionGroup( + "Eigenschaften", + "name", + "first_name", + "profession", + "gender", + "birth_year", + "death_year", + css_id="more", + ), + AccordionGroup("Beziehungen","related_with_person", "related_with_place", "related_with_work", "related_with_institution", css_id="admin_search"), + ) + ) + + class PersonTable(tables.Table): id = tables.LinkColumn(verbose_name="ID") - + class Meta: model = Person sequence = ("id", "name", "first_name") @@ -122,7 +201,7 @@ class Meta: class PersonListView(GenericListView): model = Person filter_class = PersonListFilter - formhelper_class = GenericFilterFormHelper + formhelper_class = PersonFilterFormHelper table_class = PersonTable init_columns = [ "id", From 5fce4a88520388d713a1ecd0cb0f12a64ab2a6d9 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 25 Nov 2023 10:00:54 +0100 Subject: [PATCH 37/56] linting --- apis_core/apis_entities/list_views.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/list_views.py index 5d04700..8d64793 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/list_views.py @@ -184,7 +184,14 @@ def __init__(self, *args, **kwargs): "death_year", css_id="more", ), - AccordionGroup("Beziehungen","related_with_person", "related_with_place", "related_with_work", "related_with_institution", css_id="admin_search"), + AccordionGroup( + "Beziehungen", + "related_with_person", + "related_with_place", + "related_with_work", + "related_with_institution", + css_id="admin_search", + ), ) ) From 7debb9da47885cd10c634e4636d1996347782066 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 25 Nov 2023 10:03:48 +0100 Subject: [PATCH 38/56] little refactoring each entity gets its one listview file --- .../apis_entities/{list_views.py => person_list_views.py} | 5 +---- apis_core/apis_entities/urls.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) rename apis_core/apis_entities/{list_views.py => person_list_views.py} (97%) diff --git a/apis_core/apis_entities/list_views.py b/apis_core/apis_entities/person_list_views.py similarity index 97% rename from apis_core/apis_entities/list_views.py rename to apis_core/apis_entities/person_list_views.py index 8d64793..2d41e8c 100644 --- a/apis_core/apis_entities/list_views.py +++ b/apis_core/apis_entities/person_list_views.py @@ -1,8 +1,7 @@ import django_filters import django_tables2 as tables -from django import forms from crispy_forms.helper import FormHelper -from crispy_forms.layout import Submit, Layout +from crispy_forms.layout import Layout from crispy_forms.bootstrap import AccordionGroup from crispy_bootstrap5.bootstrap5 import BS5Accordion @@ -13,8 +12,6 @@ from apis_core.apis_entities.models import Person from apis_core.apis_vocabularies.models import ProfessionType -# from apis_core.apis_entities.tables import PersonTable -from apis_core.apis_entities.forms import GenericFilterFormHelper from apis_core.apis_vocabularies.models import ( PersonPersonRelation, PersonPlaceRelation, diff --git a/apis_core/apis_entities/urls.py b/apis_core/apis_entities/urls.py index c78071f..f8f0acf 100644 --- a/apis_core/apis_entities/urls.py +++ b/apis_core/apis_entities/urls.py @@ -7,7 +7,7 @@ ) from .views2 import GenericEntitiesCreateStanbolView -from .list_views import PersonListView +from .person_list_views import PersonListView app_name = "apis_entities" From ad0530ba81ea04dfabbc2fa6ba7c9a434b7fc396 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 25 Nov 2023 13:02:46 +0100 Subject: [PATCH 39/56] das hat einfach so beim ersten versuch funktioniert?!?! --- apis_core/apis_entities/person_list_views.py | 3 - .../apis_entities/list_views/person_list.html | 7 +- apis_core/apis_entities/urls.py | 6 + apis_core/apis_entities/work_list_views.py | 124 ++++++++++++++++++ 4 files changed, 136 insertions(+), 4 deletions(-) create mode 100644 apis_core/apis_entities/work_list_views.py diff --git a/apis_core/apis_entities/person_list_views.py b/apis_core/apis_entities/person_list_views.py index 2d41e8c..ddc375a 100644 --- a/apis_core/apis_entities/person_list_views.py +++ b/apis_core/apis_entities/person_list_views.py @@ -33,9 +33,6 @@ "review", ] - -### Personen ### - PERSON_PERSON_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in PersonPersonRelation.objects.all() ] diff --git a/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html b/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html index dceaeff..e263758 100644 --- a/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html +++ b/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html @@ -24,7 +24,12 @@

- Personen + {% if entity == person %} + Personen + {% else %} + Werke + {% endif %} +

diff --git a/apis_core/apis_entities/urls.py b/apis_core/apis_entities/urls.py index f8f0acf..653f845 100644 --- a/apis_core/apis_entities/urls.py +++ b/apis_core/apis_entities/urls.py @@ -8,6 +8,7 @@ from .views2 import GenericEntitiesCreateStanbolView from .person_list_views import PersonListView +from .work_list_views import WorkListView app_name = "apis_entities" @@ -37,6 +38,11 @@ PersonListView.as_view(), name="generic_entities_list", ), + path( + "entity/work/list/", + WorkListView.as_view(), + name="generic_entities_list", + ), path( "entity//list/", views.GenericListViewNew.as_view(), diff --git a/apis_core/apis_entities/work_list_views.py b/apis_core/apis_entities/work_list_views.py new file mode 100644 index 0000000..c9687aa --- /dev/null +++ b/apis_core/apis_entities/work_list_views.py @@ -0,0 +1,124 @@ +import django_filters +import django_tables2 as tables +from crispy_forms.helper import FormHelper +from crispy_forms.layout import Layout +from crispy_forms.bootstrap import AccordionGroup +from crispy_bootstrap5.bootstrap5 import BS5Accordion + +from dal import autocomplete + +from browsing.browsing_utils import GenericListView + +from apis_core.apis_entities.models import Work + +from apis_core.apis_vocabularies.models import ( + PlaceWorkRelation, + InstitutionWorkRelation, + PersonWorkRelation, + WorkWorkRelation, +) +from apis_core.helper_functions.utils import get_child_classes + +excluded_cols = [ + "start_start_date", + "start_end_date", + "end_start_date", + "end_end_date", + "status", + "source", + "references", + "published", + "tempentityclass_ptr", + "review", +] + + +WORK_PERSON_RELATION_CHOICES = [ + (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") for x in PersonWorkRelation.objects.all() +] +WORK_PLACE_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in PlaceWorkRelation.objects.all() +] +WORK_WORK_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in WorkWorkRelation.objects.all() +] +WORK_INSTITUTION_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in InstitutionWorkRelation.objects.all() +] + + +class WorkListFilter(django_filters.FilterSet): + name = django_filters.CharFilter( + lookup_expr="icontains", + label="Werktitel", + help_text="eingegebene Zeichenkette muss im Titel enthalten sein", + ) + related_with_person = django_filters.LookupChoiceFilter( + lookup_choices=WORK_PERSON_RELATION_CHOICES, + label="Bezugsperson", + help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + method="related_person_filter", + ) + + def related_person_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PersonWorkRelation, + ) + qs = qs.filter( + personwork_set__related_person__name__icontains=value.value, + personwork_set__relation_type__in=rels + ) + return qs + + +class WorkFilterFormHelper(FormHelper): + def __init__(self, *args, **kwargs): + super(WorkFilterFormHelper, self).__init__(*args, **kwargs) + self.helper = FormHelper() + self.form_class = "genericFilterForm" + self.form_method = "GET" + self.form_tag = False + self.layout = Layout( + BS5Accordion( + AccordionGroup( + "Eigenschaften", + "name", + css_id="more", + ), + AccordionGroup( + "Beziehungen", + "related_with_person", + css_id="admin_search", + ), + ) + ) + + +class WorkTable(tables.Table): + id = tables.LinkColumn(verbose_name="ID") + + class Meta: + model = Work + sequence = ("id", "name", "start_date") + attrs = {"class": "table table-responsive table-hover"} + + +class WorkListView(GenericListView): + model = Work + filter_class = WorkListFilter + formhelper_class = WorkFilterFormHelper + table_class = WorkTable + init_columns = [ + "id", + "name", + "first_name", + "uris", + "start_date", + "end_date", + ] + exclude_columns = excluded_cols + enable_merge = False + template_name = "apis_entities/list_views/person_list.html" From b4839317cbf8ad5ebdc665111a50a2013f75e7cc Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 25 Nov 2023 13:11:27 +0100 Subject: [PATCH 40/56] wip werke --- apis_core/apis_entities/person_list_views.py | 2 +- .../{person_list.html => list.html} | 8 +----- apis_core/apis_entities/work_list_views.py | 9 ++++++- browsing/browsing_utils.py | 25 +++++-------------- 4 files changed, 16 insertions(+), 28 deletions(-) rename apis_core/apis_entities/templates/apis_entities/list_views/{person_list.html => list.html} (93%) diff --git a/apis_core/apis_entities/person_list_views.py b/apis_core/apis_entities/person_list_views.py index ddc375a..edac831 100644 --- a/apis_core/apis_entities/person_list_views.py +++ b/apis_core/apis_entities/person_list_views.py @@ -214,4 +214,4 @@ class PersonListView(GenericListView): ] exclude_columns = excluded_cols enable_merge = False - template_name = "apis_entities/list_views/person_list.html" + template_name = "apis_entities/list_views/list.html" diff --git a/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html b/apis_core/apis_entities/templates/apis_entities/list_views/list.html similarity index 93% rename from apis_core/apis_entities/templates/apis_entities/list_views/person_list.html rename to apis_core/apis_entities/templates/apis_entities/list_views/list.html index e263758..3fbf878 100644 --- a/apis_core/apis_entities/templates/apis_entities/list_views/person_list.html +++ b/apis_core/apis_entities/templates/apis_entities/list_views/list.html @@ -23,13 +23,7 @@

- - {% if entity == person %} - Personen - {% else %} - Werke - {% endif %} - + {{ verbose_name }}

diff --git a/apis_core/apis_entities/work_list_views.py b/apis_core/apis_entities/work_list_views.py index c9687aa..5a00c01 100644 --- a/apis_core/apis_entities/work_list_views.py +++ b/apis_core/apis_entities/work_list_views.py @@ -53,6 +53,9 @@ class WorkListFilter(django_filters.FilterSet): label="Werktitel", help_text="eingegebene Zeichenkette muss im Titel enthalten sein", ) + year_of_creation = django_filters.NumberFilter( + field_name="start_date__year", label="Schöpfungsdatum", help_text="z.B. 1880" + ) related_with_person = django_filters.LookupChoiceFilter( lookup_choices=WORK_PERSON_RELATION_CHOICES, label="Bezugsperson", @@ -86,6 +89,7 @@ def __init__(self, *args, **kwargs): AccordionGroup( "Eigenschaften", "name", + "year_of_creation", css_id="more", ), AccordionGroup( @@ -121,4 +125,7 @@ class WorkListView(GenericListView): ] exclude_columns = excluded_cols enable_merge = False - template_name = "apis_entities/list_views/person_list.html" + template_name = "apis_entities/list_views/list.html" + verbose_name = "Werke" + help_text = "Werke help text" + icon = "bi bi-book apis-work big-icons" diff --git a/browsing/browsing_utils.py b/browsing/browsing_utils.py index be6ebbb..81e9905 100644 --- a/browsing/browsing_utils.py +++ b/browsing/browsing_utils.py @@ -61,6 +61,9 @@ class GenericListView(ExportMixin, django_tables2.SingleTableView): init_columns = [] enable_merge = False excluded_cols = [] + verbose_name = "Personen" + help_text = "Personen help text" + icon = "bi bi-people apis-person big-icons" def get_table_class(self): if self.table_class: @@ -114,25 +117,9 @@ def get_context_data(self, **kwargs): model_name = self.model.__name__.lower() context["entity"] = model_name context["app_name"] = self.model._meta.app_label - if "charts" in settings.INSTALLED_APPS: - model = self.model - app_label = model._meta.app_label - filtered_objs = ChartConfig.objects.filter( - model_name=model.__name__.lower(), app_name=app_label - ) - context["vis_list"] = filtered_objs - context["property_name"] = self.request.GET.get("property") - context["charttype"] = self.request.GET.get("charttype") - if context["charttype"] and context["property_name"]: - qs = self.get_queryset() - chartdata = create_payload( - context["entity"], - context["property_name"], - context["charttype"], - qs, - app_label=app_label, - ) - context = dict(context, **chartdata) + context["verbose_name"] = self.verbose_name + context["help_text"] = self.help_text + context["icon"] = self.icon return context From af74dd60dcdbcd89b99cd0763cab8628440fb16d Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 25 Nov 2023 13:57:56 +0100 Subject: [PATCH 41/56] wip werke --- apis_core/apis_entities/person_list_views.py | 2 +- apis_core/apis_entities/work_list_views.py | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/apis_core/apis_entities/person_list_views.py b/apis_core/apis_entities/person_list_views.py index edac831..10f6287 100644 --- a/apis_core/apis_entities/person_list_views.py +++ b/apis_core/apis_entities/person_list_views.py @@ -10,9 +10,9 @@ from browsing.browsing_utils import GenericListView from apis_core.apis_entities.models import Person -from apis_core.apis_vocabularies.models import ProfessionType from apis_core.apis_vocabularies.models import ( + ProfessionType, PersonPersonRelation, PersonPlaceRelation, PersonWorkRelation, diff --git a/apis_core/apis_entities/work_list_views.py b/apis_core/apis_entities/work_list_views.py index 5a00c01..85b4750 100644 --- a/apis_core/apis_entities/work_list_views.py +++ b/apis_core/apis_entities/work_list_views.py @@ -16,6 +16,7 @@ InstitutionWorkRelation, PersonWorkRelation, WorkWorkRelation, + WorkType ) from apis_core.helper_functions.utils import get_child_classes @@ -62,6 +63,14 @@ class WorkListFilter(django_filters.FilterSet): help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", method="related_person_filter", ) + kind = django_filters.ModelMultipleChoiceFilter( + queryset=WorkType.objects.all(), + help_text="Art/Typ des Werkes, z.B. 'Roman'", + label="Werktype", + widget=autocomplete.Select2Multiple( + url="/apis/vocabularies/autocomplete/worktype/normal/", + ), + ) def related_person_filter(self, qs, name, value): rels = get_child_classes( @@ -89,6 +98,7 @@ def __init__(self, *args, **kwargs): AccordionGroup( "Eigenschaften", "name", + "kind", "year_of_creation", css_id="more", ), From 33049cd21a6d815ab91a447162bebb6bf20f07b5 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 25 Nov 2023 14:09:30 +0100 Subject: [PATCH 42/56] wip --- apis_core/apis_entities/work_list_views.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/apis_core/apis_entities/work_list_views.py b/apis_core/apis_entities/work_list_views.py index 85b4750..b00004b 100644 --- a/apis_core/apis_entities/work_list_views.py +++ b/apis_core/apis_entities/work_list_views.py @@ -63,6 +63,12 @@ class WorkListFilter(django_filters.FilterSet): help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", method="related_person_filter", ) + related_with_work = django_filters.LookupChoiceFilter( + lookup_choices=WORK_WORK_RELATION_CHOICES, + label="Werk", + help_text="Name einer Werkes und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + method="related_work_filter", + ) kind = django_filters.ModelMultipleChoiceFilter( queryset=WorkType.objects.all(), help_text="Art/Typ des Werkes, z.B. 'Roman'", @@ -72,6 +78,18 @@ class WorkListFilter(django_filters.FilterSet): ), ) + def related_work_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + WorkWorkRelation, + ) + qs = qs.filter( + workb_set__name__icontains=value.value, workb_relationtype_set__in=rels + ) + return qs + def related_person_filter(self, qs, name, value): rels = get_child_classes( [ @@ -105,6 +123,7 @@ def __init__(self, *args, **kwargs): AccordionGroup( "Beziehungen", "related_with_person", + "related_with_work", css_id="admin_search", ), ) From 59e124a14b3427479488e1f27a9e1e3c000ec5b5 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sat, 25 Nov 2023 15:57:40 +0100 Subject: [PATCH 43/56] AutorInnenspalte!!! --- apis_core/apis_entities/work_list_views.py | 26 ++++++++++++++++------ 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/apis_core/apis_entities/work_list_views.py b/apis_core/apis_entities/work_list_views.py index b00004b..cc697ae 100644 --- a/apis_core/apis_entities/work_list_views.py +++ b/apis_core/apis_entities/work_list_views.py @@ -16,7 +16,7 @@ InstitutionWorkRelation, PersonWorkRelation, WorkWorkRelation, - WorkType + WorkType, ) from apis_core.helper_functions.utils import get_child_classes @@ -35,7 +35,8 @@ WORK_PERSON_RELATION_CHOICES = [ - (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") for x in PersonWorkRelation.objects.all() + (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") + for x in PersonWorkRelation.objects.all() ] WORK_PLACE_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in PlaceWorkRelation.objects.all() @@ -99,7 +100,7 @@ def related_person_filter(self, qs, name, value): ) qs = qs.filter( personwork_set__related_person__name__icontains=value.value, - personwork_set__relation_type__in=rels + personwork_set__relation_type__in=rels, ) return qs @@ -132,10 +133,22 @@ def __init__(self, *args, **kwargs): class WorkTable(tables.Table): id = tables.LinkColumn(verbose_name="ID") + personwork_set = tables.ManyToManyColumn( + verbose_name="AutorIn", + transform=lambda x: x.related_person, + filter=lambda qs: qs.filter( + relation_type__in=get_child_classes( + [ + 1049, + ], + PersonWorkRelation, + ) + ), # ToDo: don't hardcode the realtion type id here + ) class Meta: model = Work - sequence = ("id", "name", "start_date") + sequence = ("id", "name", "personwork_set", "start_date") attrs = {"class": "table table-responsive table-hover"} @@ -147,10 +160,9 @@ class WorkListView(GenericListView): init_columns = [ "id", "name", - "first_name", - "uris", "start_date", - "end_date", + "personwork_set", + "kind", ] exclude_columns = excluded_cols enable_merge = False From 270be9f80694a20cc34c07097536305d9584f7e9 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 26 Nov 2023 08:27:01 +0100 Subject: [PATCH 44/56] labels as column --- apis_core/apis_entities/person_list_views.py | 15 ++++++++++++++- apis_core/apis_entities/work_list_views.py | 2 ++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/apis_core/apis_entities/person_list_views.py b/apis_core/apis_entities/person_list_views.py index 10f6287..b40cf07 100644 --- a/apis_core/apis_entities/person_list_views.py +++ b/apis_core/apis_entities/person_list_views.py @@ -192,10 +192,22 @@ def __init__(self, *args, **kwargs): class PersonTable(tables.Table): id = tables.LinkColumn(verbose_name="ID") + personplace_set = tables.ManyToManyColumn( + verbose_name="Geburtsort", + transform=lambda x: x.related_place, + filter=lambda qs: qs.filter( + relation_type__in=get_child_classes( + [ + 88, 1510, 1398 + ], + PersonPlaceRelation, + ) + ), # ToDo: don't hardcode the realtion type id here + ) class Meta: model = Person - sequence = ("id", "name", "first_name") + sequence = ("id", "name", "first_name", "personplace_set") attrs = {"class": "table table-responsive table-hover"} @@ -211,6 +223,7 @@ class PersonListView(GenericListView): "uris", "start_date", "end_date", + "personplace_set" ] exclude_columns = excluded_cols enable_merge = False diff --git a/apis_core/apis_entities/work_list_views.py b/apis_core/apis_entities/work_list_views.py index cc697ae..6c3dd18 100644 --- a/apis_core/apis_entities/work_list_views.py +++ b/apis_core/apis_entities/work_list_views.py @@ -133,6 +133,8 @@ def __init__(self, *args, **kwargs): class WorkTable(tables.Table): id = tables.LinkColumn(verbose_name="ID") + name = tables.columns.Column(verbose_name="Titel") + label_set = tables.ManyToManyColumn(verbose_name="Labels") personwork_set = tables.ManyToManyColumn( verbose_name="AutorIn", transform=lambda x: x.related_person, From a303a172195020c21073f61db3de6065655cece6 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 26 Nov 2023 08:27:23 +0100 Subject: [PATCH 45/56] linting --- apis_core/apis_entities/person_list_views.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apis_core/apis_entities/person_list_views.py b/apis_core/apis_entities/person_list_views.py index b40cf07..30c299a 100644 --- a/apis_core/apis_entities/person_list_views.py +++ b/apis_core/apis_entities/person_list_views.py @@ -197,9 +197,7 @@ class PersonTable(tables.Table): transform=lambda x: x.related_place, filter=lambda qs: qs.filter( relation_type__in=get_child_classes( - [ - 88, 1510, 1398 - ], + [88, 1510, 1398], PersonPlaceRelation, ) ), # ToDo: don't hardcode the realtion type id here @@ -223,7 +221,7 @@ class PersonListView(GenericListView): "uris", "start_date", "end_date", - "personplace_set" + "personplace_set", ] exclude_columns = excluded_cols enable_merge = False From c1375ccdcfc9308aa243da21cadc5236e8018526 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Sun, 26 Nov 2023 09:04:27 +0100 Subject: [PATCH 46/56] wip place list view --- ...rson_list_views.py => list_view_person.py} | 0 apis_core/apis_entities/list_view_place.py | 155 ++++++++++++++++++ .../{work_list_views.py => list_view_work.py} | 0 apis_core/apis_entities/urls.py | 14 +- 4 files changed, 165 insertions(+), 4 deletions(-) rename apis_core/apis_entities/{person_list_views.py => list_view_person.py} (100%) create mode 100644 apis_core/apis_entities/list_view_place.py rename apis_core/apis_entities/{work_list_views.py => list_view_work.py} (100%) diff --git a/apis_core/apis_entities/person_list_views.py b/apis_core/apis_entities/list_view_person.py similarity index 100% rename from apis_core/apis_entities/person_list_views.py rename to apis_core/apis_entities/list_view_person.py diff --git a/apis_core/apis_entities/list_view_place.py b/apis_core/apis_entities/list_view_place.py new file mode 100644 index 0000000..e0af0b2 --- /dev/null +++ b/apis_core/apis_entities/list_view_place.py @@ -0,0 +1,155 @@ +import django_filters +import django_tables2 as tables +from crispy_forms.helper import FormHelper +from crispy_forms.layout import Layout +from crispy_forms.bootstrap import AccordionGroup +from crispy_bootstrap5.bootstrap5 import BS5Accordion + +from dal import autocomplete + +from browsing.browsing_utils import GenericListView + +from apis_core.apis_entities.models import Place + +from apis_core.apis_vocabularies.models import ( + PlaceType, + PlaceWorkRelation, + PersonPlaceRelation, +) +from apis_core.helper_functions.utils import get_child_classes + +excluded_cols = [ + "start_start_date", + "start_end_date", + "end_start_date", + "end_end_date", + "status", + "source", + "references", + "published", + "tempentityclass_ptr", + "review", +] + + +PLACE_PERSON_RELATION_CHOICES = [ + (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") + for x in PersonPlaceRelation.objects.all() +] +PLACE_WORK_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in PlaceWorkRelation.objects.all() +] +# WORK_WORK_RELATION_CHOICES = [ +# (f"{x.id}", f"{x} (ID: {x.id})") for x in WorkWorkRelation.objects.all() +# ] +# WORK_INSTITUTION_RELATION_CHOICES = [ +# (f"{x.id}", f"{x} (ID: {x.id})") for x in InstitutionWorkRelation.objects.all() +# ] + + +class PlaceListFilter(django_filters.FilterSet): + name = django_filters.CharFilter( + lookup_expr="icontains", + label="Ortsname", + help_text="eingegebene Zeichenkette muss im Titel enthalten sein", + ) + related_with_person = django_filters.LookupChoiceFilter( + lookup_choices=PLACE_PERSON_RELATION_CHOICES, + label="Bezugsperson", + help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geboren in'", + method="related_person_filter", + ) + related_with_work = django_filters.LookupChoiceFilter( + lookup_choices=PLACE_WORK_RELATION_CHOICES, + label="Werk", + help_text="Name einer Werkes und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + method="related_work_filter", + ) + kind = django_filters.ModelMultipleChoiceFilter( + queryset=PlaceType.objects.all(), + help_text="Art/Typ des Ortes, z.B. 'Roman'", + label="Ortstyp", + widget=autocomplete.Select2Multiple( + url="/apis/vocabularies/autocomplete/placetype/normal/", + ), + ) + + def related_work_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PlaceWorkRelation, + ) + qs = qs.filter( + placework_set__related_work__name__icontains=value.value, + placework_set__relation_type__in=rels, + ) + return qs + + def related_person_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PersonPlaceRelation, + ) + qs = qs.filter( + personplace_set__related_person__name__icontains=value.value, + personplace_set__relation_type__in=rels, + ) + return qs + + +class PlaceFilterFormHelper(FormHelper): + def __init__(self, *args, **kwargs): + super(PlaceFilterFormHelper, self).__init__(*args, **kwargs) + self.helper = FormHelper() + self.form_class = "genericFilterForm" + self.form_method = "GET" + self.form_tag = False + self.layout = Layout( + BS5Accordion( + AccordionGroup( + "Eigenschaften", + "name", + "kind", + css_id="more", + ), + AccordionGroup( + "Beziehungen", + "related_with_person", + "related_with_work", + css_id="admin_search", + ), + ) + ) + + +class PlaceTable(tables.Table): + id = tables.LinkColumn(verbose_name="ID") + name = tables.columns.Column(verbose_name="Titel") + label_set = tables.ManyToManyColumn(verbose_name="Labels") + + class Meta: + model = Place + sequence = ("id", "name", "start_date") + attrs = {"class": "table table-responsive table-hover"} + + +class PlaceListView(GenericListView): + model = Place + filter_class = PlaceListFilter + formhelper_class = PlaceFilterFormHelper + table_class = PlaceTable + init_columns = [ + "id", + "name", + "kind", + ] + exclude_columns = excluded_cols + enable_merge = False + template_name = "apis_entities/list_views/list.html" + verbose_name = "Orte" + help_text = "Orte help text" + icon = "bi bi-map apis-place big-icons" diff --git a/apis_core/apis_entities/work_list_views.py b/apis_core/apis_entities/list_view_work.py similarity index 100% rename from apis_core/apis_entities/work_list_views.py rename to apis_core/apis_entities/list_view_work.py diff --git a/apis_core/apis_entities/urls.py b/apis_core/apis_entities/urls.py index 653f845..d29671a 100644 --- a/apis_core/apis_entities/urls.py +++ b/apis_core/apis_entities/urls.py @@ -7,8 +7,9 @@ ) from .views2 import GenericEntitiesCreateStanbolView -from .person_list_views import PersonListView -from .work_list_views import WorkListView +from .list_view_person import PersonListView +from .list_view_work import WorkListView +from .list_view_place import PlaceListView app_name = "apis_entities" @@ -36,12 +37,17 @@ path( "entity/person/list/", PersonListView.as_view(), - name="generic_entities_list", + name="person_list_view", + ), + path( + "entity/place/list/", + PlaceListView.as_view(), + name="place_list_view", ), path( "entity/work/list/", WorkListView.as_view(), - name="generic_entities_list", + name="work_list_view", ), path( "entity//list/", From 8f42538c834371fea2b71b6059d73e109ba20201 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Wed, 6 Dec 2023 11:38:39 +0100 Subject: [PATCH 47/56] minor: removed some print stmt --- apis_core/apis_metainfo/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/apis_core/apis_metainfo/models.py b/apis_core/apis_metainfo/models.py index 9950e2b..46e6691 100644 --- a/apis_core/apis_metainfo/models.py +++ b/apis_core/apis_metainfo/models.py @@ -257,7 +257,6 @@ def merge_with(self, entities): rels = ContentType.objects.filter( app_label="apis_relations", model__icontains=e_a ) - print(entities) for ent in entities: e_b = type(ent).__name__ e_b_pk = ent.pk From 267c9d7334ae468b49dcc2f696ed7de08895127d Mon Sep 17 00:00:00 2001 From: csae8092 Date: Wed, 6 Dec 2023 11:45:21 +0100 Subject: [PATCH 48/56] added ordering by id to all entity classes --- apis_core/apis_entities/models.py | 24 ++++++++++++++++++++++++ apis_core/apis_metainfo/models.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/apis_core/apis_entities/models.py b/apis_core/apis_entities/models.py index 9ec17db..dd4c9d1 100644 --- a/apis_core/apis_entities/models.py +++ b/apis_core/apis_entities/models.py @@ -526,6 +526,11 @@ def save(self, *args, **kwargs): self.first_name = unicodedata.normalize("NFC", self.first_name) super(Person, self).save(*args, **kwargs) return self + + class Meta: + ordering = [ + "id", + ] class Place(AbstractEntity): @@ -542,6 +547,10 @@ def save(self, *args, **kwargs): super(Place, self).save(*args, **kwargs) return self + class Meta: + ordering = [ + "id", + ] class Institution(AbstractEntity): @@ -549,6 +558,11 @@ class Institution(AbstractEntity): InstitutionType, blank=True, null=True, on_delete=models.SET_NULL ) + class Meta: + ordering = [ + "id", + ] + class Event(AbstractEntity): @@ -556,11 +570,21 @@ class Event(AbstractEntity): EventType, blank=True, null=True, on_delete=models.SET_NULL ) + class Meta: + ordering = [ + "id", + ] + class Work(AbstractEntity): kind = models.ForeignKey(WorkType, blank=True, null=True, on_delete=models.SET_NULL) + class Meta: + ordering = [ + "id", + ] + a_ents = getattr(settings, "APIS_ADDITIONAL_ENTITIES", False) diff --git a/apis_core/apis_metainfo/models.py b/apis_core/apis_metainfo/models.py index 46e6691..efa5510 100644 --- a/apis_core/apis_metainfo/models.py +++ b/apis_core/apis_metainfo/models.py @@ -85,7 +85,6 @@ def save(self, parse_dates=True, *args, **kwargs): """Adaption of the save() method of the class to automatically parse string-dates into date objects""" if parse_dates: - # overwrite every field with None as default start_date = None start_start_date = None @@ -308,6 +307,7 @@ def get_serialization(self): return EntitySerializer(self).data + class Source(models.Model): """Holds information about entities and their relations""" From ee95555f52dd488c4f09c08f24a7d8fe57914d3b Mon Sep 17 00:00:00 2001 From: csae8092 Date: Wed, 6 Dec 2023 12:04:40 +0100 Subject: [PATCH 49/56] wip listview org --- .../apis_entities/list_view_institution.py | 174 ++++++++++++++++++ apis_core/apis_entities/models.py | 3 +- apis_core/apis_entities/urls.py | 6 + apis_core/apis_metainfo/models.py | 1 - browsing/browsing_utils.py | 6 - 5 files changed, 182 insertions(+), 8 deletions(-) create mode 100644 apis_core/apis_entities/list_view_institution.py diff --git a/apis_core/apis_entities/list_view_institution.py b/apis_core/apis_entities/list_view_institution.py new file mode 100644 index 0000000..5f265bd --- /dev/null +++ b/apis_core/apis_entities/list_view_institution.py @@ -0,0 +1,174 @@ +import django_filters +import django_tables2 as tables +from crispy_forms.helper import FormHelper +from crispy_forms.layout import Layout +from crispy_forms.bootstrap import AccordionGroup +from crispy_bootstrap5.bootstrap5 import BS5Accordion + +from dal import autocomplete + +from browsing.browsing_utils import GenericListView + +from apis_core.apis_entities.models import Institution + +from apis_core.apis_vocabularies.models import ( + PersonInstitutionRelation, + InstitutionWorkRelation, + InstitutionPlaceRelation, + InstitutionInstitutionRelation, + InstitutionType, +) +from apis_core.helper_functions.utils import get_child_classes + +excluded_cols = [ + "start_start_date", + "start_end_date", + "end_start_date", + "end_end_date", + "status", + "source", + "references", + "published", + "tempentityclass_ptr", + "review", +] + + +INSTITUTION_PERSON_RELATION_CHOICES = [ + (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") + for x in PersonInstitutionRelation.objects.all() +] +INSTITUTION_PLACE_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in InstitutionPlaceRelation.objects.all() +] +INSTITUTION_WORK_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in InstitutionWorkRelation.objects.all() +] +INSTITUTION_INSTITUTION_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") + for x in InstitutionInstitutionRelation.objects.all() +] + + +class InstitutionListFilter(django_filters.FilterSet): + name = django_filters.CharFilter( + lookup_expr="icontains", + label="Name der Institution", + help_text="eingegebene Zeichenkette muss im Titel enthalten sein", + ) + year_of_creation = django_filters.NumberFilter( + field_name="start_date__year", label="Gründungsdatum", help_text="z.B. 1880" + ) + related_with_person = django_filters.LookupChoiceFilter( + lookup_choices=INSTITUTION_PERSON_RELATION_CHOICES, + label="Bezugsperson", + help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + method="related_person_filter", + ) + related_with_work = django_filters.LookupChoiceFilter( + lookup_choices=INSTITUTION_WORK_RELATION_CHOICES, + label="Werk", + help_text="Name einer Werkes und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + method="related_work_filter", + ) + kind = django_filters.ModelMultipleChoiceFilter( + queryset=InstitutionType.objects.all(), + help_text="Art/Typ der Institution, z.B. 'Roman'", + label="Institutionstyp", + widget=autocomplete.Select2Multiple( + url="/apis/vocabularies/autocomplete/institutiontype/normal/", + ), + ) + + def related_work_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + InstitutionWorkRelation, + ) + qs = qs.filter( + workb_set__name__icontains=value.value, workb_relationtype_set__in=rels + ) + return qs + + def related_person_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PersonInstitutionRelation, + ) + qs = qs.filter( + personwork_set__related_person__name__icontains=value.value, + personwork_set__relation_type__in=rels, + ) + return qs + + +class InstitutionFilterFormHelper(FormHelper): + def __init__(self, *args, **kwargs): + super(InstitutionFilterFormHelper, self).__init__(*args, **kwargs) + self.helper = FormHelper() + self.form_class = "genericFilterForm" + self.form_method = "GET" + self.form_tag = False + self.layout = Layout( + BS5Accordion( + AccordionGroup( + "Eigenschaften", + "name", + "kind", + "year_of_creation", + css_id="more", + ), + AccordionGroup( + "Beziehungen", + "related_with_person", + "related_with_work", + css_id="admin_search", + ), + ) + ) + + +class InstitutionTable(tables.Table): + id = tables.LinkColumn(verbose_name="ID") + name = tables.columns.Column(verbose_name="Titel") + label_set = tables.ManyToManyColumn(verbose_name="Labels") + # personwork_set = tables.ManyToManyColumn( + # verbose_name="AutorIn", + # transform=lambda x: x.related_person, + # filter=lambda qs: qs.filter( + # relation_type__in=get_child_classes( + # [ + # 1049, + # ], + # PersonWorkRelation, + # ) + # ), # ToDo: don't hardcode the realtion type id here + # ) + + class Meta: + model = Institution + sequence = ("id", "name", "start_date") + attrs = {"class": "table table-responsive table-hover"} + + +class InstitutionListView(GenericListView): + model = Institution + filter_class = InstitutionListFilter + formhelper_class = InstitutionFilterFormHelper + table_class = InstitutionTable + init_columns = [ + "id", + "name", + "start_date", + "kind", + ] + exclude_columns = excluded_cols + enable_merge = False + template_name = "apis_entities/list_views/list.html" + verbose_name = "Institution" + help_text = "Institution help text" + icon = "bi bi-building-gear apis-institution big-icons" diff --git a/apis_core/apis_entities/models.py b/apis_core/apis_entities/models.py index dd4c9d1..d3f286d 100644 --- a/apis_core/apis_entities/models.py +++ b/apis_core/apis_entities/models.py @@ -526,7 +526,7 @@ def save(self, *args, **kwargs): self.first_name = unicodedata.normalize("NFC", self.first_name) super(Person, self).save(*args, **kwargs) return self - + class Meta: ordering = [ "id", @@ -552,6 +552,7 @@ class Meta: "id", ] + class Institution(AbstractEntity): kind = models.ForeignKey( diff --git a/apis_core/apis_entities/urls.py b/apis_core/apis_entities/urls.py index d29671a..806646a 100644 --- a/apis_core/apis_entities/urls.py +++ b/apis_core/apis_entities/urls.py @@ -10,6 +10,7 @@ from .list_view_person import PersonListView from .list_view_work import WorkListView from .list_view_place import PlaceListView +from .list_view_institution import InstitutionListView app_name = "apis_entities" @@ -49,6 +50,11 @@ WorkListView.as_view(), name="work_list_view", ), + path( + "entity/institution/list/", + InstitutionListView.as_view(), + name="institution_list_view", + ), path( "entity//list/", views.GenericListViewNew.as_view(), diff --git a/apis_core/apis_metainfo/models.py b/apis_core/apis_metainfo/models.py index efa5510..7c82ef6 100644 --- a/apis_core/apis_metainfo/models.py +++ b/apis_core/apis_metainfo/models.py @@ -307,7 +307,6 @@ def get_serialization(self): return EntitySerializer(self).data - class Source(models.Model): """Holds information about entities and their relations""" diff --git a/browsing/browsing_utils.py b/browsing/browsing_utils.py index 81e9905..d0afdfd 100644 --- a/browsing/browsing_utils.py +++ b/browsing/browsing_utils.py @@ -1,6 +1,5 @@ import django_tables2 -from django.conf import settings from django.utils.safestring import mark_safe from django.views.generic.detail import DetailView from django.views.generic.edit import CreateView, UpdateView @@ -10,11 +9,6 @@ from django_tables2.export.views import ExportMixin -if "charts" in settings.INSTALLED_APPS: - from charts.models import ChartConfig - from charts.views import create_payload - - input_form = """ | From 66739165229075dc007979a6ea511ae2532196e4 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Wed, 6 Dec 2023 13:45:39 +0100 Subject: [PATCH 50/56] listview for institution --- .../apis_entities/list_view_institution.py | 53 +++++++++++++++++-- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/apis_core/apis_entities/list_view_institution.py b/apis_core/apis_entities/list_view_institution.py index 5f265bd..1b9e282 100644 --- a/apis_core/apis_entities/list_view_institution.py +++ b/apis_core/apis_entities/list_view_institution.py @@ -16,6 +16,7 @@ InstitutionWorkRelation, InstitutionPlaceRelation, InstitutionInstitutionRelation, + InstitutionEventRelation, InstitutionType, ) from apis_core.helper_functions.utils import get_child_classes @@ -48,6 +49,9 @@ (f"{x.id}", f"{x} (ID: {x.id})") for x in InstitutionInstitutionRelation.objects.all() ] +INSTITUTION_EVENT_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in InstitutionEventRelation.objects.all() +] class InstitutionListFilter(django_filters.FilterSet): @@ -68,9 +72,21 @@ class InstitutionListFilter(django_filters.FilterSet): related_with_work = django_filters.LookupChoiceFilter( lookup_choices=INSTITUTION_WORK_RELATION_CHOICES, label="Werk", - help_text="Name einer Werkes und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + help_text="Name eines Werkes und die Art des Beziehung, z.B. 'enthält' und 'Armand Carrel'", method="related_work_filter", ) + related_with_place = django_filters.LookupChoiceFilter( + lookup_choices=INSTITUTION_PLACE_RELATION_CHOICES, + label="Ort", + help_text="Name eines Ortes und die Art des Beziehung, z.B. 'angesiedelt in' und 'Linz'", + method="related_place_filter", + ) + related_with_event = django_filters.LookupChoiceFilter( + lookup_choices=INSTITUTION_EVENT_RELATION_CHOICES, + label="Ereignis", + help_text="Name eines Ereignisses und die Art des Beziehung, z.B. 'veranstaltet' und 'Aufführung'", + method="related_event_filter", + ) kind = django_filters.ModelMultipleChoiceFilter( queryset=InstitutionType.objects.all(), help_text="Art/Typ der Institution, z.B. 'Roman'", @@ -80,6 +96,32 @@ class InstitutionListFilter(django_filters.FilterSet): ), ) + def related_event_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + InstitutionEventRelation, + ) + qs = qs.filter( + institutionevent_set__related_event__name__icontains=value.value, + institutionevent_set__relation_type__in=rels, + ) + return qs + + def related_place_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + InstitutionPlaceRelation, + ) + qs = qs.filter( + institutionplace_set__related_place__name__icontains=value.value, + institutionplace_set__relation_type__in=rels, + ) + return qs + def related_work_filter(self, qs, name, value): rels = get_child_classes( [ @@ -88,7 +130,8 @@ def related_work_filter(self, qs, name, value): InstitutionWorkRelation, ) qs = qs.filter( - workb_set__name__icontains=value.value, workb_relationtype_set__in=rels + institutionwork_set__related_work__name__icontains=value.value, + institutionwork_set__relation_type__in=rels, ) return qs @@ -100,8 +143,8 @@ def related_person_filter(self, qs, name, value): PersonInstitutionRelation, ) qs = qs.filter( - personwork_set__related_person__name__icontains=value.value, - personwork_set__relation_type__in=rels, + personinstitution_set__related_person__name__icontains=value.value, + personinstitution_set__relation_type__in=rels, ) return qs @@ -125,6 +168,8 @@ def __init__(self, *args, **kwargs): AccordionGroup( "Beziehungen", "related_with_person", + "related_with_place", + "related_with_event", "related_with_work", css_id="admin_search", ), From 8fcc9dcc01e8ad8a2a049bdbface0b1f289cbcc1 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 8 Dec 2023 09:25:33 +0100 Subject: [PATCH 51/56] added angesiedelt in column --- .../apis_entities/list_view_institution.py | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/apis_core/apis_entities/list_view_institution.py b/apis_core/apis_entities/list_view_institution.py index 1b9e282..e5befb2 100644 --- a/apis_core/apis_entities/list_view_institution.py +++ b/apis_core/apis_entities/list_view_institution.py @@ -181,22 +181,22 @@ class InstitutionTable(tables.Table): id = tables.LinkColumn(verbose_name="ID") name = tables.columns.Column(verbose_name="Titel") label_set = tables.ManyToManyColumn(verbose_name="Labels") - # personwork_set = tables.ManyToManyColumn( - # verbose_name="AutorIn", - # transform=lambda x: x.related_person, - # filter=lambda qs: qs.filter( - # relation_type__in=get_child_classes( - # [ - # 1049, - # ], - # PersonWorkRelation, - # ) - # ), # ToDo: don't hardcode the realtion type id here - # ) + institutionplace_set = tables.ManyToManyColumn( + verbose_name="angesiedelt in", + transform=lambda x: x.related_place, + filter=lambda qs: qs.filter( + relation_type__in=get_child_classes( + [ + 970, 1141, 1160 + ], + InstitutionPlaceRelation, + ) + ), # ToDo: don't hardcode the realtion type id here + ) class Meta: model = Institution - sequence = ("id", "name", "start_date") + sequence = ("id", "name", "institutionplace_set", "start_date") attrs = {"class": "table table-responsive table-hover"} @@ -208,6 +208,7 @@ class InstitutionListView(GenericListView): init_columns = [ "id", "name", + "institutionplace_set", "start_date", "kind", ] From 692368ff20a92e0832f3800fe03af7629d50812e Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 8 Dec 2023 13:16:10 +0100 Subject: [PATCH 52/56] wip event list view --- apis_core/apis_entities/list_view_event.py | 174 ++++++++++++++++++ .../apis_entities/list_view_institution.py | 4 +- apis_core/apis_entities/urls.py | 6 + 3 files changed, 181 insertions(+), 3 deletions(-) create mode 100644 apis_core/apis_entities/list_view_event.py diff --git a/apis_core/apis_entities/list_view_event.py b/apis_core/apis_entities/list_view_event.py new file mode 100644 index 0000000..c604bd8 --- /dev/null +++ b/apis_core/apis_entities/list_view_event.py @@ -0,0 +1,174 @@ +import django_filters +import django_tables2 as tables +from crispy_forms.helper import FormHelper +from crispy_forms.layout import Layout +from crispy_forms.bootstrap import AccordionGroup +from crispy_bootstrap5.bootstrap5 import BS5Accordion + +from dal import autocomplete + +from browsing.browsing_utils import GenericListView + +from apis_core.apis_entities.models import Event + +from apis_core.apis_vocabularies.models import ( + PlaceEventRelation, + InstitutionEventRelation, + PersonEventRelation, + EventEventRelation, + EventType, +) +from apis_core.helper_functions.utils import get_child_classes + +excluded_cols = [ + "start_start_date", + "start_end_date", + "end_start_date", + "end_end_date", + "status", + "source", + "references", + "published", + "tempentityclass_ptr", + "review", +] + + +EVENT_PERSON_RELATION_CHOICES = [ + (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") + for x in PersonEventRelation.objects.all() +] +EVENT_PLACE_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in PlaceEventRelation.objects.all() +] +EVENT_EVENT_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in EventEventRelation.objects.all() +] +EVENT_INSTITUTION_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in InstitutionEventRelation.objects.all() +] + + +class EventListFilter(django_filters.FilterSet): + name = django_filters.CharFilter( + lookup_expr="icontains", + label="Name des Ereignisses", + help_text="eingegebene Zeichenkette muss im Titel enthalten sein", + ) + year_of_creation = django_filters.NumberFilter( + field_name="start_date__year", label="Schöpfungsdatum", help_text="z.B. 1880" + ) + related_with_person = django_filters.LookupChoiceFilter( + lookup_choices=EVENT_PERSON_RELATION_CHOICES, + label="Bezugsperson", + help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + method="related_person_filter", + ) + related_with_work = django_filters.LookupChoiceFilter( + lookup_choices=EVENT_EVENT_RELATION_CHOICES, + label="Werk", + help_text="Name einer Werkes und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + method="related_work_filter", + ) + kind = django_filters.ModelMultipleChoiceFilter( + queryset=EventType.objects.all(), + help_text="Art/Typ des Werkes, z.B. 'Roman'", + label="Werktype", + widget=autocomplete.Select2Multiple( + url="/apis/vocabularies/autocomplete/worktype/normal/", + ), + ) + + def related_work_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + EventEventRelation, + ) + qs = qs.filter( + workb_set__name__icontains=value.value, workb_relationtype_set__in=rels + ) + return qs + + def related_person_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PersonEventRelation, + ) + qs = qs.filter( + personwork_set__related_person__name__icontains=value.value, + personwork_set__relation_type__in=rels, + ) + return qs + + +class EventFilterFormHelper(FormHelper): + def __init__(self, *args, **kwargs): + super(EventFilterFormHelper, self).__init__(*args, **kwargs) + self.helper = FormHelper() + self.form_class = "genericFilterForm" + self.form_method = "GET" + self.form_tag = False + self.layout = Layout( + BS5Accordion( + AccordionGroup( + "Eigenschaften", + "name", + "kind", + "year_of_creation", + css_id="more", + ), + AccordionGroup( + "Beziehungen", + "related_with_person", + "related_with_work", + css_id="admin_search", + ), + ) + ) + + +class EventTable(tables.Table): + id = tables.LinkColumn(verbose_name="ID") + name = tables.columns.Column(verbose_name="Titel") + label_set = tables.ManyToManyColumn(verbose_name="Labels") + personwork_set = tables.ManyToManyColumn( + verbose_name="AutorIn", + transform=lambda x: x.related_person, + filter=lambda qs: qs.filter( + relation_type__in=get_child_classes( + [ + 1049, + ], + PersonEventRelation, + ) + ), # ToDo: don't hardcode the realtion type id here + ) + + class Meta: + model = Event + sequence = ("id", "name", "personwork_set", "start_date") + attrs = {"class": "table table-responsive table-hover"} + + +class EventListView(GenericListView): + model = Event + filter_class = EventListFilter + formhelper_class = EventFilterFormHelper + table_class = EventTable + init_columns = [ + "id", + "name", + "start_date", + "personwork_set", + "kind", + ] + exclude_columns = excluded_cols + enable_merge = False + template_name = "apis_entities/list_views/list.html" + verbose_name = "Werke" + help_text = "Werke help text" + icon = "bi bi-book apis-work big-icons" diff --git a/apis_core/apis_entities/list_view_institution.py b/apis_core/apis_entities/list_view_institution.py index e5befb2..1e71d04 100644 --- a/apis_core/apis_entities/list_view_institution.py +++ b/apis_core/apis_entities/list_view_institution.py @@ -186,9 +186,7 @@ class InstitutionTable(tables.Table): transform=lambda x: x.related_place, filter=lambda qs: qs.filter( relation_type__in=get_child_classes( - [ - 970, 1141, 1160 - ], + [970, 1141, 1160], InstitutionPlaceRelation, ) ), # ToDo: don't hardcode the realtion type id here diff --git a/apis_core/apis_entities/urls.py b/apis_core/apis_entities/urls.py index 806646a..776a5a5 100644 --- a/apis_core/apis_entities/urls.py +++ b/apis_core/apis_entities/urls.py @@ -11,6 +11,7 @@ from .list_view_work import WorkListView from .list_view_place import PlaceListView from .list_view_institution import InstitutionListView +from .list_view_event import EventListView app_name = "apis_entities" @@ -55,6 +56,11 @@ InstitutionListView.as_view(), name="institution_list_view", ), + path( + "entity/event/list/", + EventListView.as_view(), + name="event_list_view", + ), path( "entity//list/", views.GenericListViewNew.as_view(), From cdfdba93de27f4a82c8ed96f333589b6f43481e6 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 8 Dec 2023 13:31:39 +0100 Subject: [PATCH 53/56] event wip --- apis_core/apis_entities/list_view_event.py | 68 ++++++++++++++-------- 1 file changed, 43 insertions(+), 25 deletions(-) diff --git a/apis_core/apis_entities/list_view_event.py b/apis_core/apis_entities/list_view_event.py index c604bd8..338f0c4 100644 --- a/apis_core/apis_entities/list_view_event.py +++ b/apis_core/apis_entities/list_view_event.py @@ -61,21 +61,27 @@ class EventListFilter(django_filters.FilterSet): related_with_person = django_filters.LookupChoiceFilter( lookup_choices=EVENT_PERSON_RELATION_CHOICES, label="Bezugsperson", - help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + help_text="Name einer Bezugsperson und die Art des Beziehung, z.B. 'hat als Arbeitskraft' und 'Haindl'", method="related_person_filter", ) + related_with_place = django_filters.LookupChoiceFilter( + lookup_choices=EVENT_PLACE_RELATION_CHOICES, + label="Bezugsort", + help_text="Names eines Bezugsort und die Art des Beziehung, z.B. 'Veranstaltungsort von' und 'Volkstheater'", + method="related_place_filter", + ) related_with_work = django_filters.LookupChoiceFilter( lookup_choices=EVENT_EVENT_RELATION_CHOICES, label="Werk", - help_text="Name einer Werkes und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + help_text="Name einer Ereignisses und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", method="related_work_filter", ) kind = django_filters.ModelMultipleChoiceFilter( queryset=EventType.objects.all(), - help_text="Art/Typ des Werkes, z.B. 'Roman'", - label="Werktype", + help_text="Art/Typ des Ereignisses, z.B. 'Premiere'", + label="Art des Ereignisses", widget=autocomplete.Select2Multiple( - url="/apis/vocabularies/autocomplete/worktype/normal/", + url="/apis/vocabularies/autocomplete/eventtype/normal/", ), ) @@ -99,8 +105,21 @@ def related_person_filter(self, qs, name, value): PersonEventRelation, ) qs = qs.filter( - personwork_set__related_person__name__icontains=value.value, - personwork_set__relation_type__in=rels, + personevent_set__related_person__name__icontains=value.value, + personevent_set__relation_type__in=rels, + ) + return qs + + def related_place_filter(self, qs, name, value): + rels = get_child_classes( + [ + value.lookup_expr, + ], + PlaceEventRelation, + ) + qs = qs.filter( + placeevent_set__related_place__name__icontains=value.value, + placeevent_set__relation_type__in=rels, ) return qs @@ -124,7 +143,7 @@ def __init__(self, *args, **kwargs): AccordionGroup( "Beziehungen", "related_with_person", - "related_with_work", + "related_with_place", css_id="admin_search", ), ) @@ -135,22 +154,22 @@ class EventTable(tables.Table): id = tables.LinkColumn(verbose_name="ID") name = tables.columns.Column(verbose_name="Titel") label_set = tables.ManyToManyColumn(verbose_name="Labels") - personwork_set = tables.ManyToManyColumn( - verbose_name="AutorIn", - transform=lambda x: x.related_person, - filter=lambda qs: qs.filter( - relation_type__in=get_child_classes( - [ - 1049, - ], - PersonEventRelation, - ) - ), # ToDo: don't hardcode the realtion type id here - ) + # personevent_set = tables.ManyToManyColumn( + # verbose_name="AutorIn", + # transform=lambda x: x.related_person, + # filter=lambda qs: qs.filter( + # relation_type__in=get_child_classes( + # [ + # 1049, + # ], + # PersonEventRelation, + # ) + # ), # ToDo: don't hardcode the realtion type id here + # ) class Meta: model = Event - sequence = ("id", "name", "personwork_set", "start_date") + sequence = ("id", "name", "start_date") attrs = {"class": "table table-responsive table-hover"} @@ -163,12 +182,11 @@ class EventListView(GenericListView): "id", "name", "start_date", - "personwork_set", "kind", ] exclude_columns = excluded_cols enable_merge = False template_name = "apis_entities/list_views/list.html" - verbose_name = "Werke" - help_text = "Werke help text" - icon = "bi bi-book apis-work big-icons" + verbose_name = "Ereignisse" + help_text = "Ereignisse help text" + icon = "bi bi-calendar3 apis-event big-icons" From 028610b66a15b51df0bb0726718ea28d4515c690 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 8 Dec 2023 14:14:59 +0100 Subject: [PATCH 54/56] event list view in railjetti madness --- apis_core/apis_entities/list_view_event.py | 48 +++++++++++++--------- 1 file changed, 28 insertions(+), 20 deletions(-) diff --git a/apis_core/apis_entities/list_view_event.py b/apis_core/apis_entities/list_view_event.py index 338f0c4..605e9a1 100644 --- a/apis_core/apis_entities/list_view_event.py +++ b/apis_core/apis_entities/list_view_event.py @@ -17,6 +17,7 @@ PersonEventRelation, EventEventRelation, EventType, + EventWorkRelation ) from apis_core.helper_functions.utils import get_child_classes @@ -39,7 +40,7 @@ for x in PersonEventRelation.objects.all() ] EVENT_PLACE_RELATION_CHOICES = [ - (f"{x.id}", f"{x} (ID: {x.id})") for x in PlaceEventRelation.objects.all() + (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") for x in PlaceEventRelation.objects.all() ] EVENT_EVENT_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in EventEventRelation.objects.all() @@ -47,6 +48,9 @@ EVENT_INSTITUTION_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in InstitutionEventRelation.objects.all() ] +EVENT_WORK_RELATION_CHOICES = [ + (f"{x.id}", f"{x} (ID: {x.id})") for x in EventWorkRelation.objects.all() +] class EventListFilter(django_filters.FilterSet): @@ -67,13 +71,13 @@ class EventListFilter(django_filters.FilterSet): related_with_place = django_filters.LookupChoiceFilter( lookup_choices=EVENT_PLACE_RELATION_CHOICES, label="Bezugsort", - help_text="Names eines Bezugsort und die Art des Beziehung, z.B. 'Veranstaltungsort von' und 'Volkstheater'", + help_text="Names eines Bezugsort und die Art des Beziehung, z.B. 'veranstaltet in' und 'Volkstheater'", method="related_place_filter", ) related_with_work = django_filters.LookupChoiceFilter( - lookup_choices=EVENT_EVENT_RELATION_CHOICES, + lookup_choices=EVENT_WORK_RELATION_CHOICES, label="Werk", - help_text="Name einer Ereignisses und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", + help_text="Name einer Werkes und die Art des Beziehung, z.B. 'Schnitzler' und 'wurde geschaffen von'", method="related_work_filter", ) kind = django_filters.ModelMultipleChoiceFilter( @@ -90,10 +94,11 @@ def related_work_filter(self, qs, name, value): [ value.lookup_expr, ], - EventEventRelation, + EventWorkRelation, ) qs = qs.filter( - workb_set__name__icontains=value.value, workb_relationtype_set__in=rels + eventwork_set__related_work__name__icontains=value.value, + eventwork_set__relation_type__in=rels, ) return qs @@ -102,7 +107,7 @@ def related_person_filter(self, qs, name, value): [ value.lookup_expr, ], - PersonEventRelation, + EventWorkRelation, ) qs = qs.filter( personevent_set__related_person__name__icontains=value.value, @@ -144,6 +149,7 @@ def __init__(self, *args, **kwargs): "Beziehungen", "related_with_person", "related_with_place", + "related_with_work", css_id="admin_search", ), ) @@ -154,22 +160,23 @@ class EventTable(tables.Table): id = tables.LinkColumn(verbose_name="ID") name = tables.columns.Column(verbose_name="Titel") label_set = tables.ManyToManyColumn(verbose_name="Labels") - # personevent_set = tables.ManyToManyColumn( - # verbose_name="AutorIn", - # transform=lambda x: x.related_person, - # filter=lambda qs: qs.filter( - # relation_type__in=get_child_classes( - # [ - # 1049, - # ], - # PersonEventRelation, - # ) - # ), # ToDo: don't hardcode the realtion type id here - # ) + placeevent_set = tables.ManyToManyColumn( + verbose_name="veranstaltet in", + transform=lambda x: x.related_place, + filter=lambda qs: qs.filter( + relation_type__in=get_child_classes( + [ + 1202, + 1369 + ], + PlaceEventRelation, + ) + ), # ToDo: don't hardcode the realtion type id here + ) class Meta: model = Event - sequence = ("id", "name", "start_date") + sequence = ("id", "name", "start_date", "placeevent_set") attrs = {"class": "table table-responsive table-hover"} @@ -183,6 +190,7 @@ class EventListView(GenericListView): "name", "start_date", "kind", + "placeevent_set" ] exclude_columns = excluded_cols enable_merge = False From 145f13722b24d13dfd8a9f75b431bf652d2641c2 Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 8 Dec 2023 14:31:26 +0100 Subject: [PATCH 55/56] uri list view --- apis_core/apis_entities/list_view_uris.py | 69 +++++++++++++++++++++++ apis_core/apis_metainfo/urls.py | 3 +- 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 apis_core/apis_entities/list_view_uris.py diff --git a/apis_core/apis_entities/list_view_uris.py b/apis_core/apis_entities/list_view_uris.py new file mode 100644 index 0000000..d231a40 --- /dev/null +++ b/apis_core/apis_entities/list_view_uris.py @@ -0,0 +1,69 @@ +import django_filters +import django_tables2 as tables +from crispy_forms.helper import FormHelper +from crispy_forms.layout import Layout +from crispy_forms.bootstrap import AccordionGroup +from crispy_bootstrap5.bootstrap5 import BS5Accordion + +from browsing.browsing_utils import GenericListView + +from apis_core.apis_metainfo.models import Uri + + +class UriTable(tables.Table): + id = tables.LinkColumn(verbose_name="ID") + uri = tables.columns.Column(verbose_name="URI") + + class Meta: + model = Uri + sequence = ("id", "uri", "domain") + attrs = {"class": "table table-responsive table-hover"} + + +class UriFilterFormHelper(FormHelper): + def __init__(self, *args, **kwargs): + super(UriFilterFormHelper, self).__init__(*args, **kwargs) + self.helper = FormHelper() + self.form_class = "genericFilterForm" + self.form_method = "GET" + self.form_tag = False + self.layout = Layout( + BS5Accordion( + AccordionGroup( + "Eigenschaften", + "uri", + "domain", + css_id="more", + ) + ) + ) + + +class UriListFilter(django_filters.FilterSet): + uri = django_filters.CharFilter( + lookup_expr="icontains", + label="Uri", + help_text="eingegebene Zeichenkette muss in der URI enthalten sein", + ) + domain = django_filters.CharFilter( + lookup_expr="icontains", + label="Domain", + help_text="eingegebene Zeichenkette muss in der Domain enthalten sein", + ) + +class UriListView(GenericListView): + model = Uri + filter_class = UriListFilter + formhelper_class = UriFilterFormHelper + table_class = UriTable + init_columns = [ + "id", + "uri", + "domain", + ] + exclude_columns = [] + enable_merge = False + template_name = "apis_entities/list_views/list.html" + verbose_name = "Uris" + help_text = "Uris help text" + icon = "bi bi-link-45deg apis-uri big-icons" diff --git a/apis_core/apis_metainfo/urls.py b/apis_core/apis_metainfo/urls.py index d91c1f0..da2e366 100644 --- a/apis_core/apis_metainfo/urls.py +++ b/apis_core/apis_metainfo/urls.py @@ -1,11 +1,12 @@ from django.urls import path from . import views +from apis_core.apis_entities.list_view_uris import UriListView app_name = "apis_metainfo" urlpatterns = [ - path("apis/metainfo/uri/", views.UriListView.as_view(), name="uri_browse"), + path("apis/metainfo/uri/", UriListView.as_view(), name="uri_browse"), path("uri/detail/", views.UriDetailView.as_view(), name="uri_detail"), path("uri/create/", views.UriCreate.as_view(), name="uri_create"), path("uri/edit/", views.UriUpdate.as_view(), name="uri_edit"), From c1720b89e20380d392537b9eeb59a4df58a8b2ce Mon Sep 17 00:00:00 2001 From: csae8092 Date: Fri, 8 Dec 2023 15:46:11 +0100 Subject: [PATCH 56/56] done with uri list view --- apis_core/apis_entities/list_view_event.py | 18 ++++--------- apis_core/apis_entities/list_view_uris.py | 30 +++++++++++++++------- apis_core/apis_metainfo/filters.py | 26 ------------------- apis_core/apis_metainfo/forms.py | 18 +------------ apis_core/apis_metainfo/tables.py | 22 ---------------- apis_core/apis_metainfo/views.py | 20 ++------------- static/css/style.css | 2 +- 7 files changed, 30 insertions(+), 106 deletions(-) delete mode 100644 apis_core/apis_metainfo/filters.py diff --git a/apis_core/apis_entities/list_view_event.py b/apis_core/apis_entities/list_view_event.py index 605e9a1..37c2b9e 100644 --- a/apis_core/apis_entities/list_view_event.py +++ b/apis_core/apis_entities/list_view_event.py @@ -17,7 +17,7 @@ PersonEventRelation, EventEventRelation, EventType, - EventWorkRelation + EventWorkRelation, ) from apis_core.helper_functions.utils import get_child_classes @@ -40,7 +40,8 @@ for x in PersonEventRelation.objects.all() ] EVENT_PLACE_RELATION_CHOICES = [ - (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") for x in PlaceEventRelation.objects.all() + (f"{x.id}", f"{x.label_reverse} (ID: {x.id})") + for x in PlaceEventRelation.objects.all() ] EVENT_EVENT_RELATION_CHOICES = [ (f"{x.id}", f"{x} (ID: {x.id})") for x in EventEventRelation.objects.all() @@ -165,10 +166,7 @@ class EventTable(tables.Table): transform=lambda x: x.related_place, filter=lambda qs: qs.filter( relation_type__in=get_child_classes( - [ - 1202, - 1369 - ], + [1202, 1369], PlaceEventRelation, ) ), # ToDo: don't hardcode the realtion type id here @@ -185,13 +183,7 @@ class EventListView(GenericListView): filter_class = EventListFilter formhelper_class = EventFilterFormHelper table_class = EventTable - init_columns = [ - "id", - "name", - "start_date", - "kind", - "placeevent_set" - ] + init_columns = ["id", "name", "start_date", "kind", "placeevent_set"] exclude_columns = excluded_cols enable_merge = False template_name = "apis_entities/list_views/list.html" diff --git a/apis_core/apis_entities/list_view_uris.py b/apis_core/apis_entities/list_view_uris.py index d231a40..96287c7 100644 --- a/apis_core/apis_entities/list_view_uris.py +++ b/apis_core/apis_entities/list_view_uris.py @@ -11,12 +11,21 @@ class UriTable(tables.Table): - id = tables.LinkColumn(verbose_name="ID") - uri = tables.columns.Column(verbose_name="URI") + id = tables.LinkColumn() + entity = tables.TemplateColumn( + "{{ record.entity }}", + orderable=True, + verbose_name="related Entity", + ) + ent_type = tables.TemplateColumn( + "{{ record.entity.get_child_class }}", + orderable=False, + verbose_name="Entity Type", + ) class Meta: model = Uri - sequence = ("id", "uri", "domain") + sequence = ("id", "uri") attrs = {"class": "table table-responsive table-hover"} @@ -33,6 +42,7 @@ def __init__(self, *args, **kwargs): "Eigenschaften", "uri", "domain", + "entity__name", css_id="more", ) ) @@ -50,18 +60,20 @@ class UriListFilter(django_filters.FilterSet): label="Domain", help_text="eingegebene Zeichenkette muss in der Domain enthalten sein", ) + entity__name = django_filters.CharFilter( + lookup_expr="icontains", + help_text=Uri._meta.get_field("entity").help_text, + label=Uri._meta.get_field("entity").verbose_name, + ) + class UriListView(GenericListView): model = Uri filter_class = UriListFilter formhelper_class = UriFilterFormHelper table_class = UriTable - init_columns = [ - "id", - "uri", - "domain", - ] - exclude_columns = [] + init_columns = ["id", "uri", "domain", "entity"] + exclude_columns = ["loaded", "loaded_time", "rdf_link"] enable_merge = False template_name = "apis_entities/list_views/list.html" verbose_name = "Uris" diff --git a/apis_core/apis_metainfo/filters.py b/apis_core/apis_metainfo/filters.py deleted file mode 100644 index bb328bf..0000000 --- a/apis_core/apis_metainfo/filters.py +++ /dev/null @@ -1,26 +0,0 @@ -import django_filters - -from .models import * - - -class UriListFilter(django_filters.FilterSet): - - uri = django_filters.CharFilter( - lookup_expr="icontains", - help_text=Uri._meta.get_field("uri").help_text, - label=Uri._meta.get_field("uri").verbose_name, - ) - domain = django_filters.CharFilter( - lookup_expr="icontains", - help_text=Uri._meta.get_field("domain").help_text, - label=Uri._meta.get_field("domain").verbose_name, - ) - entity__name = django_filters.CharFilter( - lookup_expr="icontains", - help_text=Uri._meta.get_field("entity").help_text, - label=Uri._meta.get_field("entity").verbose_name, - ) - - class Meta: - model = Uri - fields = "__all__" diff --git a/apis_core/apis_metainfo/forms.py b/apis_core/apis_metainfo/forms.py index 5351d0c..1211d49 100644 --- a/apis_core/apis_metainfo/forms.py +++ b/apis_core/apis_metainfo/forms.py @@ -1,7 +1,5 @@ -from crispy_forms.bootstrap import AccordionGroup -from crispy_bootstrap5.bootstrap5 import BS5Accordion from crispy_forms.helper import FormHelper -from crispy_forms.layout import Submit, Layout +from crispy_forms.layout import Submit from dal import autocomplete from django import forms @@ -28,17 +26,3 @@ def __init__(self, *args, **kwargs): self.helper.add_input( Submit("submit", "save"), ) - - -class UriFilterFormHelper(FormHelper): - def __init__(self, *args, **kwargs): - super(UriFilterFormHelper, self).__init__(*args, **kwargs) - self.helper = FormHelper() - self.form_class = "genericFilterForm" - self.form_method = "GET" - self.form_tag = False - self.layout = Layout( - "uri", - "domain", - "entity__name", - ) diff --git a/apis_core/apis_metainfo/tables.py b/apis_core/apis_metainfo/tables.py index 66c9025..2c1befe 100644 --- a/apis_core/apis_metainfo/tables.py +++ b/apis_core/apis_metainfo/tables.py @@ -1,9 +1,6 @@ -import django_tables2 as tables from django.db.models import F from django.utils.html import format_html -from .models import Uri - # generic order_FOO methods for start_date_written and end_date_written to be used in all kinds of tables where a queryset is loaded # whose model has start_date_written and end_date_written. These methods order the *_date_written by their corresponding @@ -98,22 +95,3 @@ def generic_render_end_date_written(self, record, value): var_start_date=record.end_start_date, var_end_date=record.end_end_date, ) - - -class UriTable(tables.Table): - id = tables.LinkColumn() - entity = tables.TemplateColumn( - "{{ record.entity }}", - orderable=True, - verbose_name="related Entity", - ) - ent_type = tables.TemplateColumn( - "{{ record.entity.get_child_class }}", - orderable=False, - verbose_name="Entity Type", - ) - - class Meta: - model = Uri - sequence = ("id", "uri") - attrs = {"class": "table table-responsive table-hover"} diff --git a/apis_core/apis_metainfo/views.py b/apis_core/apis_metainfo/views.py index 3cf9bbc..5cb5d3b 100644 --- a/apis_core/apis_metainfo/views.py +++ b/apis_core/apis_metainfo/views.py @@ -6,11 +6,9 @@ from django.views.generic.detail import DetailView from django.views.generic.edit import DeleteView -from browsing.browsing_utils import GenericListView, BaseCreateView, BaseUpdateView -from .filters import UriListFilter -from .forms import UriFilterFormHelper, UriForm +from browsing.browsing_utils import BaseCreateView, BaseUpdateView +from .forms import UriForm from .models import Uri -from .tables import UriTable PROJECT_NAME = settings.PROJECT_NAME @@ -28,20 +26,6 @@ def beacon(request): return HttpResponse(result, content_type="text/plain") -class UriListView(GenericListView): - model = Uri - filter_class = UriListFilter - formhelper_class = UriFilterFormHelper - table_class = UriTable - init_columns = [ - "id", - "uri", - "entity", - ] - exclude_columns = ["loaded", "loaded_time", "rdf_link"] - enable_merge = False - - class UriDetailView(DetailView): model = Uri template_name = "apis_metainfo/uri_detail.html" diff --git a/static/css/style.css b/static/css/style.css index ffda65d..dd839e3 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -6,7 +6,7 @@ --work: #668cb9; --event: #5c8c7c; --institution: #c57f7f; - --uri: #e7e1bf; + --uri: #e80d0d; }